From 5b91e2643f32d1974ebb74ae1a116cd624591fad Mon Sep 17 00:00:00 2001 From: orlandonico Date: Tue, 14 Dec 2021 15:02:52 +0100 Subject: [PATCH 01/86] test: add test async for spim driver --- tests/spim_flash_async/Makefile | 18 ++ tests/spim_flash_async/test_spi_async.c | 242 ++++++++++++++++++++++++ 2 files changed, 260 insertions(+) create mode 100644 tests/spim_flash_async/Makefile create mode 100644 tests/spim_flash_async/test_spi_async.c diff --git a/tests/spim_flash_async/Makefile b/tests/spim_flash_async/Makefile new file mode 100644 index 00000000..8250ac15 --- /dev/null +++ b/tests/spim_flash_async/Makefile @@ -0,0 +1,18 @@ +APP = test_spi_async +APP_SRCS += test_spi_async.c + +ifdef USE_CLUSTER +APP_CFLAGS += -DCLUSTER -DNUM_CLUSTER=$(USE_CLUSTER) +ifdef NUM_CORES +APP_CFLAGS += -DNUM_CORES=$(NUM_CORES) +else +APP_CFLAGS += -DNUM_CORES=1 +endif +endif + +APP_CFLAGS += -Os -g +APP_LDFLAGS += -Os -g + +CONFIG_SPIM = 1 + +include $(RULES_DIR)/pmsis_rules.mk diff --git a/tests/spim_flash_async/test_spi_async.c b/tests/spim_flash_async/test_spi_async.c new file mode 100644 index 00000000..e41c9e5f --- /dev/null +++ b/tests/spim_flash_async/test_spi_async.c @@ -0,0 +1,242 @@ +/* + * Copyright 2020 Greenwaves Technologies + * Copyright 2020 ETH Zurich + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + * Author: Germain Hagou + * Robert Balas (balasr@iis.ee.ethz.ch) + */ + +/* + * Test if we can write to spi using pmsis + */ + +#include "pmsis.h" +#include + +#if !defined(SYNC_CS_AUTO) && !defined(ASYNC_CS_AUTO) && \ + !defined(SYNC_CS_KEEP) && !defined(ASYNC_CS_KEEP) +#define ASYNC_CS_AUTO 1 +#endif + +//#define DEBUG 1 +/** + #ifdef DEBUG + #define DEBUG_PRINTF printf + #define DBG_PRINTF printf + #else + #define DEBUG_PRINTF(...) ((void)0) + #define DBG_PRINTF(...) ((void)0) + #endif +*/ +#define DEBUG_PRINTF(...) ((void)0) +#define DBG_PRINTF(...) ((void)0) + +#define TOTAL_SIZE (256) +//#define TOTAL_SIZE (8192*8 + 256) +#define TOTAL_SIZE_RTL (256) + +#define NB_BUFFERS 1 + +// S25FL256S Instruction Set +#define CMD_WRR 0x01 // Write REG 1 +#define CMD_RDID 0x9F // Read ID (JEDEC Manufacturer & JEDEC CFI +#define CMD_RDSR1 0x05 // Read status register-1 +#define CMD_WREN 0x06 // Write enable +#define CMD_4P4E 0x21 // 4KB Erase +#define CMD_4PP 0x12 // Page program (4 bytes address) +#define CMD_4QPP 0x34 // Page program QSPI (4 bytes address) +#define CMD_4READ 0x13 // Read (4 bytes address) +#define CMD_4QOREAD 0x6C // Read QSPI(4 bytes address) + +#define ID_CFI_SIZE 10 + +static inline void get_info(int *buffer_size) +{ +#if !defined(PI_PLATFORM_RTL) + *buffer_size = TOTAL_SIZE; +#else + if (pi_platform() == PI_PLATFORM_RTL) + { + *buffer_size = TOTAL_SIZE_RTL; + } + else + { + *buffer_size = TOTAL_SIZE; + } +#endif +} +#undef PI_L2 +#define PI_L2 + +PI_L2 int32_t cmd_buffer[4][2]; +PI_L2 int32_t rx_cmd_buffer[4][2]; + +PI_L2 uint8_t *tx_buffer; +PI_L2 uint8_t *rx_buffer_1; +PI_L2 uint8_t *rx_buffer_2; + +static pi_task_t buf_event[NB_BUFFERS]; +static pi_task_t rx_buf_event[NB_BUFFERS]; +static pi_task_t cmd_event[NB_BUFFERS]; +static pi_task_t rx_cmd_event[NB_BUFFERS]; + +static void set_spim_verif_command(struct pi_device *spim, int cmd, int addr, + int size, int32_t *cmd_buffer, + pi_task_t *task) +{ + /* + ** The command moves it to the first 8 bits, and to the last 8 it puts + ** the size. + ** Size is the size in bytes of the command. + */ + cmd_buffer[0] = (cmd << 24) | (size * 8); + cmd_buffer[1] = addr; + + DBG_PRINTF("%s:%s:%d cmd_buffer[0] = 0x%x)\n", __FILE__, __func__, + __LINE__, cmd_buffer[0]); + DBG_PRINTF("%s:%s:%d cmd_buffer[1] = 0x%x)\n", __FILE__, __func__, + __LINE__, cmd_buffer[1]); + + if (task) + pi_spi_send_async(spim, cmd_buffer, 8 * 8, PI_SPI_CS_AUTO, + task); + else + pi_spi_send(spim, cmd_buffer, 8 * 8, PI_SPI_CS_AUTO); +} + +static int test_entry() +{ + struct pi_spi_conf conf; + struct pi_device spim0; + + PI_L2 uint8_t add_buffer[] = {0x00, 0x00, 0x00, 0x00, 0x00}; + + int total_size; + get_info(&total_size); + int buffer_size = total_size / NB_BUFFERS; + + pi_spi_conf_init(&conf); + + conf.wordsize = PI_SPI_WORDSIZE_8; + conf.big_endian = 1; + conf.max_baudrate = 10000000; + conf.polarity = 0; + conf.phase = 0; + conf.itf = 0; + conf.cs = 0; + + pi_open_from_conf(&spim0, &conf); + if (pi_spi_open(&spim0)) + return -1; + + printf("malloc tx buffer\n"); + tx_buffer = pmsis_l2_malloc(total_size); + if (tx_buffer == NULL) + return -1; + + printf("malloc rx buffer 1\n"); + rx_buffer_1 = pmsis_l2_malloc(total_size); + if (rx_buffer_1 == NULL) + return -1; + + printf("tx buffer init\n"); + for (int i = 0; i < total_size; i++) + { + tx_buffer[i] = i; + } + + uint8_t cmd = CMD_WREN; + + pi_task_t event_wren_1; + pi_task_t event_4pp_1; + pi_task_t event_tx_1; + pi_task_t event_wip_write_1; + pi_task_t event_wip_read_1; + pi_task_t event_4read_1; + pi_task_t event_rx_1; + + printf("async cs auto\n"); + for (int i = 0; i < NB_BUFFERS; i++) + { + // Set write enabled + cmd = CMD_WREN; + pi_spi_send_async(&spim0, &cmd, (1 * 8), PI_SPI_CS_AUTO, pi_task_block(&event_wren_1)); + // send page address + add_buffer[0] = CMD_4PP; + pi_spi_send_async(&spim0, add_buffer, (sizeof(add_buffer) * 8), PI_SPI_CS_KEEP, pi_task_block(&event_4pp_1)); + // send data + pi_spi_send_async(&spim0, tx_buffer + buffer_size * i, (buffer_size * 8), PI_SPI_CS_AUTO, pi_task_block(&event_tx_1)); + // wait until program operation is in progress + DBG_PRINTF("%s:%s:%d ...start -> wip read...\n", __FILE__, __func__, __LINE__); + cmd = CMD_RDSR1; // command to read status register 1 + volatile uint8_t status = 0xFF; + do + { + pi_spi_send_async(&spim0, &cmd, (1 * 8), PI_SPI_CS_KEEP, pi_task_block(&event_wip_write_1)); + pi_task_wait_on(&event_wip_write_1); + pi_spi_receive_async(&spim0, &status, (1 * 8), PI_SPI_CS_AUTO, pi_task_block(&event_wip_read_1)); + pi_task_wait_on(&event_wip_read_1); + status &= (1); + printf("WIP Register: %d\n", status); + } while (status != 0); + // send page address + add_buffer[0] = CMD_4READ; + + pi_spi_send_async(&spim0, add_buffer, (sizeof(add_buffer) * 8), PI_SPI_CS_KEEP, pi_task_block(&event_4read_1)); + pi_spi_receive_async(&spim0, rx_buffer_1 + buffer_size * i, (buffer_size * 8), PI_SPI_CS_AUTO, pi_task_block(&event_rx_1)); + } + pi_task_wait_on(&event_4read_1); + pi_task_wait_on(&event_rx_1); + + printf("starting error check\n"); + int error = 0; + for (int i = 0; i < total_size; i++) + { + if (rx_buffer_1[i] != tx_buffer[i] && rx_buffer_2[i] != tx_buffer[i]) + { + if (error == 0) + printf("First error at index %d, expected 0x%x, got 0x%x at %p\n", + i, tx_buffer[i], rx_buffer_1[i], + &rx_buffer_1[i]); + error++; + return -1; + } + } + + if (error) + { + printf("Got %d errors\n", error); + } + else + { + printf("Test success\n"); + } + pi_spi_close(&spim0); + return error; +} + +static void test_kickoff(void *arg) +{ + int ret = test_entry(); + pmsis_exit(ret); +} + +/* Program Entry. */ +int main(void) +{ + printf("\n\n\t *** Pulp-SDK Hello World *** \n\n"); + return pmsis_kickoff((void *)test_kickoff); +} From 780d926efe4878f18dc2ef4cff35b7138e84efdd Mon Sep 17 00:00:00 2001 From: orlandonico Date: Tue, 14 Dec 2021 15:03:04 +0100 Subject: [PATCH 02/86] test: add test sync for spim driver --- tests/spim_flash_sync/Makefile | 18 ++ tests/spim_flash_sync/test_spi_sync.c | 237 ++++++++++++++++++++++++++ 2 files changed, 255 insertions(+) create mode 100644 tests/spim_flash_sync/Makefile create mode 100644 tests/spim_flash_sync/test_spi_sync.c diff --git a/tests/spim_flash_sync/Makefile b/tests/spim_flash_sync/Makefile new file mode 100644 index 00000000..17869f3d --- /dev/null +++ b/tests/spim_flash_sync/Makefile @@ -0,0 +1,18 @@ +APP = test_spi_sync +APP_SRCS += test_spi_sync.c + +ifdef USE_CLUSTER +APP_CFLAGS += -DCLUSTER -DNUM_CLUSTER=$(USE_CLUSTER) +ifdef NUM_CORES +APP_CFLAGS += -DNUM_CORES=$(NUM_CORES) +else +APP_CFLAGS += -DNUM_CORES=1 +endif +endif + +APP_CFLAGS += -Os -g +APP_LDFLAGS += -Os -g + +CONFIG_SPIM = 1 + +include $(RULES_DIR)/pmsis_rules.mk diff --git a/tests/spim_flash_sync/test_spi_sync.c b/tests/spim_flash_sync/test_spi_sync.c new file mode 100644 index 00000000..57eecbdc --- /dev/null +++ b/tests/spim_flash_sync/test_spi_sync.c @@ -0,0 +1,237 @@ +/* + * Copyright 2020 Greenwaves Technologies + * Copyright 2020 ETH Zurich + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + * Author: Germain Hagou + * Robert Balas (balasr@iis.ee.ethz.ch) + */ + +/* + * Test if we can write to spi using pmsis + */ + +#include "pmsis.h" +#include + +#if !defined(SYNC_CS_AUTO) && !defined(ASYNC_CS_AUTO) && \ + !defined(SYNC_CS_KEEP) && !defined(ASYNC_CS_KEEP) +#define ASYNC_CS_AUTO 1 +#endif + +//#define DEBUG 1 +/** + #ifdef DEBUG + #define DEBUG_PRINTF printf + #define DBG_PRINTF printf + #else + #define DEBUG_PRINTF(...) ((void)0) + #define DBG_PRINTF(...) ((void)0) + #endif /* DEBUG */ + + #define DEBUG_PRINTF(...) ((void)0) + #define DBG_PRINTF(...) ((void)0) + +#define TOTAL_SIZE (256) +//#define TOTAL_SIZE (8192*8 + 256) +#define TOTAL_SIZE_RTL (256) + +#define NB_BUFFERS 1 + +// S25FL256S Instruction Set +#define CMD_WRR 0x01 // Write REG 1 +#define CMD_RDID 0x9F // Read ID (JEDEC Manufacturer & JEDEC CFI +#define CMD_RDSR1 0x05 // Read status register-1 +#define CMD_WREN 0x06 // Write enable +#define CMD_4P4E 0x21 // 4KB Erase +#define CMD_4PP 0x12 // Page program (4 bytes address) +#define CMD_4QPP 0x34 // Page program QSPI (4 bytes address) +#define CMD_4READ 0x13 // Read (4 bytes address) +#define CMD_4QOREAD 0x6C // Read QSPI(4 bytes address) + +#define ID_CFI_SIZE 10 + +static inline void get_info(int *buffer_size) +{ +#if !defined(PI_PLATFORM_RTL) + *buffer_size = TOTAL_SIZE; +#else + if (pi_platform() == PI_PLATFORM_RTL) { + *buffer_size = TOTAL_SIZE_RTL; + } else { + *buffer_size = TOTAL_SIZE; + } +#endif +} +#undef PI_L2 +#define PI_L2 + +PI_L2 int32_t cmd_buffer[4][2]; +PI_L2 int32_t rx_cmd_buffer[4][2]; + +PI_L2 uint8_t *tx_buffer; +PI_L2 uint8_t *rx_buffer; + +static pi_task_t buf_event[NB_BUFFERS]; +static pi_task_t rx_buf_event[NB_BUFFERS]; +static pi_task_t cmd_event[NB_BUFFERS]; +static pi_task_t rx_cmd_event[NB_BUFFERS]; + +static void set_spim_verif_command(struct pi_device *spim, int cmd, int addr, + int size, int32_t *cmd_buffer, + pi_task_t *task) +{ + /* + ** The command moves it to the first 8 bits, and to the last 8 it puts + ** the size. + ** Size is the size in bytes of the command. + */ + cmd_buffer[0] = (cmd << 24) | (size * 8); + cmd_buffer[1] = addr; + + DBG_PRINTF("%s:%s:%d cmd_buffer[0] = 0x%x)\n", __FILE__, __func__, + __LINE__, cmd_buffer[0]); + DBG_PRINTF("%s:%s:%d cmd_buffer[1] = 0x%x)\n", __FILE__, __func__, + __LINE__, cmd_buffer[1]); + + if (task) + pi_spi_send_async(spim, cmd_buffer, 8 * 8, PI_SPI_CS_AUTO, + task); + else + pi_spi_send(spim, cmd_buffer, 8 * 8, PI_SPI_CS_AUTO); +} + +static int test_entry() +{ + struct pi_spi_conf conf; + struct pi_device spim; + + PI_L2 uint8_t add_buffer[] = {0x00, 0x00, 0x00, 0x00, 0x00}; + + int total_size; + get_info(&total_size); + int buffer_size = total_size / NB_BUFFERS; + + pi_spi_conf_init(&conf); + + conf.wordsize = PI_SPI_WORDSIZE_8; + conf.big_endian = 1; + conf.max_baudrate = 10000000; + conf.polarity = 0; + conf.phase = 0; + conf.itf = 0; + conf.cs = 0; + + pi_open_from_conf(&spim, &conf); + + if (pi_spi_open(&spim)) + return -1; + + printf("malloc tx buffer\n"); + tx_buffer = pmsis_l2_malloc(total_size); + if (tx_buffer == NULL) + return -1; + + printf("malloc rx buffer\n"); + rx_buffer = pmsis_l2_malloc(total_size); + if (rx_buffer == NULL) + return -1; + + printf("tx buffer init\n"); + for (int i = 0; i < total_size; i++) { + tx_buffer[i] = i; + } + + uint8_t cmd = CMD_WREN; + + + printf("async cs auto\n"); + + for (int i = 0; i < NB_BUFFERS; i++) { + // Set write enabled + cmd = CMD_WREN; + DBG_PRINTF("%s:%s:%d ...pi_spi_send_async(&spim, cmd, 8, PI_SPI_CS_AUTO, pi_task_block(&event_wren))...\n", __FILE__, __func__, __LINE__); + pi_spi_send(&spim, &cmd, (1*8), PI_SPI_CS_AUTO); + + // send page address + add_buffer[0] = CMD_4PP; + DBG_PRINTF("%s:%s:%d ...pi_spi_send_async(&spim, add_buffer, (sizeof(add_buffer)*8), PI_SPI_CS_KEEP, NULL)...\n", __FILE__, __func__, __LINE__); + pi_spi_send(&spim, add_buffer, (sizeof(add_buffer)*8), PI_SPI_CS_KEEP); + + // send data + DBG_PRINTF("%s:%s:%d ...pi_spi_send_async(&spim, tx_buffer, BUFFER_SIZE * 8, PI_SPI_CS_AUTO, pi_task_block(&event_tx))...\n", __FILE__, __func__, __LINE__); + pi_spi_send(&spim, tx_buffer + buffer_size * i, (buffer_size*8), PI_SPI_CS_AUTO); + + // wait until program operation is in progress + DBG_PRINTF("%s:%s:%d ...start -> wip read...\n", __FILE__, __func__, __LINE__); + cmd = CMD_RDSR1; // command to read status register 1 + volatile uint8_t status = 0xFF; + do + { + //DBG_PRINTF("%s:%s:%d ...pi_spi_send_async(&spim, cmd, 1, PI_SPI_CS_AUTO, pi_task_block(&event_wip_write))...\n", __FILE__, __func__, __LINE__); + pi_spi_send(&spim, &cmd, (1*8), PI_SPI_CS_KEEP); + pi_task_t event_wip_read; + //DBG_PRINTF("%s:%s:%d ...pi_spi_receive_async(&spim, &status, 1, PI_SPI_CS_AUTO, pi_task_block(&event_wip_read))...\n", __FILE__, __func__, __LINE__); + pi_spi_receive(&spim, &status, (1*8), PI_SPI_CS_AUTO); + //DBG_PRINTF("%s:%s:%d ...pi_task_wait_on(&event_wip_read)...\n", __FILE__, __func__, __LINE__); + printf("WIP Register: %d\n", status); + }while (status & 0x01 != 0); // flash is buzy if status != 0 + DBG_PRINTF("%s:%s:%d ...end -> wip read...\n", __FILE__, __func__, __LINE__); + + // send page address + add_buffer[0] = CMD_4READ; + DBG_PRINTF( "%s:%s:%d ...pi_spi_send_async(&spim, add_buffer, (sizeof(add_buffer)*8), PI_SPI_CS_KEEP, NULL)...\n", __FILE__, __func__, __LINE__); + pi_spi_send(&spim, add_buffer, (sizeof(add_buffer)*8), PI_SPI_CS_KEEP); + // read data + DBG_PRINTF( "%s:%s:%d ...pi_spi_receive_async(&spim, rx_buffer, BUFFER_SIZE * 8, PI_SPI_CS_AUTO, pi_task_block(&event_rx))...\n", __FILE__, __func__, __LINE__); + pi_spi_receive(&spim, rx_buffer + buffer_size * i, (buffer_size*8), PI_SPI_CS_AUTO); + DBG_PRINTF("%s:%s:%d ...pi_task_wait_on(&event_rx)...\n", __FILE__, __func__, __LINE__); + } + + printf("starting error check\n"); + int error = 0; + for (int i = 0; i < total_size; i++) { + if (rx_buffer[i] != tx_buffer[i]) { + if (error == 0) + printf("First error at index %d, expected 0x%x, got 0x%x at %p\n", + i, tx_buffer[i], rx_buffer[i], + &rx_buffer[i]); + error++; + return -1; + } + } + + if (error) { + printf("Got %d errors\n", error); + } else { + printf("Test success\n"); + } + pi_spi_close(&spim); + return error; +} + +static void test_kickoff(void *arg) +{ + int ret = test_entry(); + pmsis_exit(ret); +} + +/* Program Entry. */ +int main(void) +{ + printf("\n\n\t *** Pulp-SDK Hello World *** \n\n"); + return pmsis_kickoff((void *)test_kickoff); +} + From d9cf9b8d437253dc556283b49c57b2db4526f1c1 Mon Sep 17 00:00:00 2001 From: orlandonico Date: Tue, 14 Dec 2021 15:06:55 +0100 Subject: [PATCH 03/86] rtos/pulpos: add driver spim --- rtos/pulpos/pulp/drivers/spim/spim-v3.c | 1075 +++++++++++++++++++++++ 1 file changed, 1075 insertions(+) create mode 100644 rtos/pulpos/pulp/drivers/spim/spim-v3.c diff --git a/rtos/pulpos/pulp/drivers/spim/spim-v3.c b/rtos/pulpos/pulp/drivers/spim/spim-v3.c new file mode 100644 index 00000000..66bed386 --- /dev/null +++ b/rtos/pulpos/pulp/drivers/spim/spim-v3.c @@ -0,0 +1,1075 @@ +/* + * Copyright 2020 GreenWaves Technologies + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +/**----------------------------------------------------------------------------------------------------------------------- + * ? ABOUT + * @author : Orlando Nico + * @email : nico.orlando@studio.unibo.it + * @repo : pulp-sdk/rtos/pulpos/pulp/drivers/spi + * @createdOn : 11/11/2021 + * @description : The driver was tested on a VIP flash memory in RTL, where it was done one + * transfer at a time. + * Multiple concurrent transfers have not been tested. I mean using multiple + * SPI interfaces that do transfers at the same time. + *-----------------------------------------------------------------------------------------------------------------------**/ + +/**================================================================================================ + * * INFO + * Important definitions: + * pulp-sdk/rtos/pulpos/pulp_archi/include/archi/chips/pulp/properties.h + * pulp-sdk/rtos/pulpos/pulp_archi/include/archi/chips/pulp/memory_map.h + *================================================================================================**/ + +/**================================================================================================ + ** INCLUDE + *================================================================================================**/ + +#include "pmsis.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include + +/**================================================================================================ + ** DEFINE + *================================================================================================**/ +/** +#define DEBUG 0 + #ifdef DEBUG + #define DEBUG_PRINTF //////printf + #define DBG_PRINTF //////printf + #else + #define DEBUG_PRINTF(...) ((void)0) + #define DBG_PRINTF(...) ((void)0) + #endif +*/ +#define DEBUG_PRINTF(...) ((void)0) +#define DBG_PRINTF(...) ((void)0) + +/* TODO: remove this glue */ + +#define SPIM_CS_DATA_GET_DRV_DATA(cs_data) (cs_data->drv_data) + +#define NB_SOC_EVENTS (ARCHI_SOC_EVENT_NB_TOTAL) + +typedef void (*pi_fc_event_handler_t)(void *arg); + +// va bene per Control-Pulp +/* +** #define pi_default_malloc(x) malloc(x) +** #define pi_default_free(x,y) free(x) +** #define pi_data_malloc(x) malloc(x) +** #define pi_data_free(x,y) free(x) +*/ + +// Pulp-Open +#define pi_default_malloc(x) pi_l2_malloc(x) +#define pi_default_free(x, y) pi_l2_free(x, y) +#define pi_data_malloc(x) pi_l2_malloc(x) +#define pi_data_free(x, y) pi_l2_free(x, y) + +#define UDMA_EVENT_OFFSET_SPI_EOT 3 +#define SOC_EVENT_UDMA_SPIM_EOT(id) \ + ((ARCHI_UDMA_SPIM_ID(id) << ARCHI_SOC_EVENT_UDMA_NB_CHANNEL_EVT_LOG2) + \ + UDMA_EVENT_OFFSET_SPI_EOT) +/**================================================================================================ + ** STRUCT + *================================================================================================**/ +struct spim_drv_fifo +{ + pi_task_t *fifo_head; + pi_task_t *fifo_tail; +}; + +/* Structure holding infos for each chip selects (itf, cs, polarity etc...) */ +struct spim_cs_data +{ + struct spim_cs_data *next; + struct spim_driver_data *drv_data; + uint32_t cfg; + uint32_t udma_cmd[8]; + uint32_t max_baudrate; + uint32_t polarity; + uint32_t phase; + uint8_t cs; + uint8_t wordsize; + uint8_t big_endian; +}; + +/* Structure holding info for each interfaces + * most notably the fifo of enqueued transfers and meta to know whether + * interface is free or not */ +struct spim_driver_data +{ + struct spim_drv_fifo *drv_fifo; // does the same task as Dolphine with true and false + struct spim_cs_data *cs_list; // list of devices connected to the spi interface + pi_task_t *repeat_transfer; + pi_task_t *end_of_transfer; // gli associo un task per sapere se un trasferimento ha finito? + uint32_t nb_open; + uint8_t device_id; + pos_udma_channel_t *rx_channel; + pos_udma_channel_t *tx_channel; +}; + +struct spim_transfer +{ + pi_spi_flags_e flags; + void *data; + uint32_t len; + uint32_t cfg_cmd; + uint32_t byte_align; + uint32_t is_send; +}; + +/**================================================================================================ + ** PROTOTYPE FUNCTION + *================================================================================================**/ +void __spim_execute_callback(void *arg); +int __pi_spi_open(struct spim_cs_data **cs_data, struct pi_spi_conf *conf); +int __pi_spi_close(struct spim_cs_data *cs_data); +static int32_t __pi_spim_drv_fifo_enqueue(struct spim_cs_data *data, struct spim_transfer *transfer, pi_task_t *end_task); +static inline pi_task_t *__pi_spim_drv_fifo_pop(struct spim_driver_data *data); +/* static inline void __pi_spim_exec_transfer(pi_task_t *task); */ +void __pi_spi_send_async(struct spim_cs_data *cs_data, void *data, size_t len, pi_spi_flags_e flags, pi_task_t *task); +void __pi_spi_receive_async(struct spim_cs_data *cs_data, void *data, size_t len, pi_spi_flags_e flags, pi_task_t *task); +void __pi_spi_receive_async_with_ucode(struct spim_cs_data *cs_data, void *data, size_t len, pi_spi_flags_e flags, int ucode_size, void *ucode, pi_task_t *task); +void __pi_spi_send_async_with_ucode(struct spim_cs_data *cs_data, void *data, size_t len, pi_spi_flags_e flags, int ucode_size, void *ucode, pi_task_t *task); +void __pi_spi_xfer_async(struct spim_cs_data *cs_data, void *tx_data, void *rx_data, size_t len, pi_spi_flags_e flags, pi_task_t *task); +void system_core_clock_update(void); +uint32_t system_core_clock_get(void); +void pos_spi_handle_copy(int event, void *arg); +void pos_spi_create_channel(pos_udma_channel_t *channel, int channel_id, int soc_event); +/**================================================================================================ + ** GLOBAL VARIABLE + *================================================================================================**/ +volatile uint32_t system_core_clock; +static PI_L2 int spi_open_count = 0; +static PI_L2 int spi_channel; +struct spim_driver_data *__g_spim_drv_data[ARCHI_UDMA_NB_SPIM] = {0}; +/**================================================================================================ + ** FUNCTION + *================================================================================================**/ + +void system_core_clock_update(void) +{ + // system_core_clock = pi_fll_get_frequency(FLL_SOC, 0); + system_core_clock = pi_freq_get(FLL_SOC); +} + +uint32_t system_core_clock_get(void) +{ + system_core_clock_update(); + return system_core_clock; +} + +static inline uint32_t __pi_spi_get_config(struct spim_cs_data *cs_data) +{ + return cs_data->cfg; +} + +// It is used to put an item in the list. The new item is put at the top of the list. +static inline int32_t __pi_spim_drv_fifo_enqueue(struct spim_cs_data *cs_data, + struct spim_transfer *transfer, + pi_task_t *end_task) +{ + DBG_PRINTF("%s:%s:%d: ...start -> __pi_spim_drv_fifo_enqueue...\n", __FILE__, __func__, __LINE__); + DBG_PRINTF("%s:%s:%d\n", __FILE__, __func__, __LINE__); + uint32_t irq = hal_irq_disable(); + struct spim_driver_data *drv_data = cs_data->drv_data; + /* Callback args. */ + end_task->data[0] = (uintptr_t)cs_data; + end_task->data[1] = (uintptr_t)transfer->data; + end_task->data[2] = (uintptr_t)transfer->len; + end_task->data[3] = (uintptr_t)transfer->flags; + end_task->data[4] = (uintptr_t)end_task; + end_task->data[5] = (uintptr_t)transfer->is_send; + end_task->next = NULL; + /* Enqueue transfer in drv fifo. */ + if (drv_data->drv_fifo->fifo_head == NULL) + { + /* Empty fifo. */ + drv_data->drv_fifo->fifo_head = end_task; + drv_data->drv_fifo->fifo_tail = drv_data->drv_fifo->fifo_head; + } + else + { + /* Enqueue to tail. */ + drv_data->drv_fifo->fifo_tail->next = end_task; + drv_data->drv_fifo->fifo_tail = + drv_data->drv_fifo->fifo_tail->next; + } + hal_irq_restore(irq); + DBG_PRINTF("%s:%s:%d: ...end -> __pi_spim_drv_fifo_enqueue...\n", __FILE__, __func__, __LINE__); + return 0; +} + +// I put the next item on the list at the top of the list. +static inline pi_task_t *__pi_spim_drv_fifo_pop(struct spim_driver_data *data) +{ + // DBG_PRINTF("%s:%s:%d: \n", __FILE__, __func__, __LINE__); + DBG_PRINTF("%s:%s:%d: ...start -> __pi_spim_drv_fifo_pop...\n", __FILE__, __func__, __LINE__); + DBG_PRINTF("%s:%s:%d\n", __FILE__, __func__, __LINE__); + pi_task_t *task_return = NULL; + // clean the value in the position 7 of regiter 0x300 + // irq = 1100010000000 + int check_300 = 0; + asm volatile("csrr %0, 0x300" + : "=r"(check_300)); + DBG_PRINTF("%s:%s:%d Value of register 0x300: 0x%x\n", __FILE__, __func__, __LINE__, check_300); + uint32_t irq = hal_irq_disable(); + DBG_PRINTF("%s:%s:%d: ...irq = %u...\n", __FILE__, __func__, __LINE__, irq); + if (data->drv_fifo->fifo_head != NULL) + { + task_return = data->drv_fifo->fifo_head; + data->drv_fifo->fifo_head = data->drv_fifo->fifo_head->next; + if (data->drv_fifo->fifo_head == NULL) + { + data->drv_fifo->fifo_tail = NULL; + } + } + // write in the 0x300 register + hal_irq_restore(irq); + DBG_PRINTF("%s:%s:%d: ...end -> __pi_spim_drv_fifo_pop...\n", __FILE__, __func__, __LINE__); + return task_return; +} + +// It goes to find a certain structure in the list through the information on the chip select +static inline struct spim_cs_data *__pi_spim_get_cs_data(struct spim_driver_data *drv_data, int cs) +{ + DBG_PRINTF("...start -> __pi_spim_get_cs_data...\n"); + DBG_PRINTF("%s:%s:%d\n", __FILE__, __func__, __LINE__); + struct spim_cs_data *cs_cur = drv_data->cs_list; + while (cs_cur != NULL && cs_cur->cs != cs) + { + cs_cur = cs_cur->next; + } + DBG_PRINTF("...end -> __pi_spim_get_cs_data...\n"); + return cs_cur; +} + +static inline void __pi_spim_cs_data_del(struct spim_driver_data *drv_data, + int cs) +{ + DBG_PRINTF("...start -> __pi_spim_cs_data_del...\n"); + DBG_PRINTF("%s:%s:%d\n", __FILE__, __func__, __LINE__); + struct spim_cs_data *cs_cur = drv_data->cs_list; + struct spim_cs_data *cs_prev = cs_cur; + while (cs_cur != NULL && cs_cur->cs != cs) + { + cs_prev = cs_cur; + cs_cur = cs_cur->next; + } + if (cs_cur) + { + cs_prev->next = cs_cur->next; + cs_cur->next = NULL; + } + DBG_PRINTF("...end -> __pi_spim_cs_data_del...\n"); +} + +static inline void __pi_spim_cs_data_add(struct spim_driver_data *drv_data, struct spim_cs_data *cs_data) +{ + DBG_PRINTF("...start -> __pi_spim_cs_data_add...\n"); + DBG_PRINTF("%s:%s:%d\n", __FILE__, __func__, __LINE__); + // head insert, most recently allocated should be most recently used + cs_data->drv_data = drv_data; + cs_data->next = drv_data->cs_list; + DBG_PRINTF("...end -> __pi_spim_cs_data_add...\n"); +} + +static uint32_t __pi_spi_clk_div_get(uint32_t spi_freq) +{ + DBG_PRINTF("...start -> __pi_spi_clk_div_get...\n"); + DBG_PRINTF("%s:%s:%d\n", __FILE__, __func__, __LINE__); + uint32_t periph_freq = pi_freq_get(PI_FREQ_DOMAIN_PERIPH); + DBG_PRINTF("%s:%s:%d periph_freq=%u\n", __FILE__, __func__, __LINE__, periph_freq); + if (spi_freq < periph_freq) + { + uint32_t clk_div = 0; + clk_div = (periph_freq + spi_freq - 1) / spi_freq; + if (clk_div & 1) + { + clk_div += 1; + } + /* The SPIM always divide by 2 once we activate the divider, + thus increase by 1 in case it is even to not go above the max + frequency. */ + clk_div = clk_div >> 1; + DBG_PRINTF("...end -> __pi_spi_clk_div_get...\n"); + return clk_div; + } + DBG_PRINTF("...end -> __pi_spi_clk_div_get...\n"); + return 0; +} + +void pi_spi_conf_init(struct pi_spi_conf *conf) +{ + DBG_PRINTF("...start -> pi_spi_conf_init...\n"); + DBG_PRINTF("%s:%s:%d\n", __FILE__, __func__, __LINE__); + conf->wordsize = PI_SPI_WORDSIZE_8; + conf->big_endian = 0; + conf->max_baudrate = 10000000; + conf->cs = -1; + conf->itf = 0; + conf->polarity = 0; + conf->phase = 0; + DBG_PRINTF("...end -> pi_spi_conf_init...\n"); +} + +// TODO: prepare pseudo exec for delegate +void __pi_spim_execute_callback(void *arg) +{ + return; +} + +void __pi_spim_exec_next_transfer(pi_task_t *task) +{ + DBG_PRINTF("...start -> __pi_spim_exec_next_transfer...\n"); + DBG_PRINTF("%s:%s:%d\n", __FILE__, __func__, __LINE__); + if (task->data[5] == 1) + { // if is send + // printf("__pi_spim_exec_next_transfer tx %p\n", &task); + // cs data | data buffer | len | flags | end of transfer task + __pi_spi_send_async((struct spim_cs_data *)task->data[0], + (void *)task->data[1], task->data[2], + task->data[3], (pi_task_t *)task->data[4]); + } + else if (task->data[5] == 0) + { + // printf("__pi_spim_exec_next_transfer rx %p\n", &task); + // cs data | data buffer | len | flags | end of transfer task + __pi_spi_receive_async((struct spim_cs_data *)task->data[0], + (void *)task->data[1], task->data[2], + task->data[3], + (pi_task_t *)task->data[4]); + } + else + { // task->data[5] contains rx data addr + // cs data | tx buffer | rx buffer| len | flags | end of + // transfer task + __pi_spi_xfer_async((struct spim_cs_data *)task->data[0], + (void *)task->data[5], + (void *)task->data[1], task->data[2], + task->data[3], (pi_task_t *)task->data[4]); + } + DBG_PRINTF("...end -> __pi_spim_exec_next_transfer...\n"); +} + +extern struct pmsis_event_kernel_wrap *default_sched; + +void __pi_spi_receive_async(struct spim_cs_data *cs_data, void *data, + size_t len, pi_spi_flags_e flags, pi_task_t *task) +{ + DBG_PRINTF("...start -> __pi_spi_receive_async...\n"); + // SPIM_CS_DATA_GET_DRV_DATA(cs_data) = (cs_data->drv_data) + struct spim_driver_data *drv_data = SPIM_CS_DATA_GET_DRV_DATA(cs_data); + int qspi = (flags & (0x3 << 2)) == PI_SPI_LINES_QUAD; + // Choose the type of cs mode, see enum "pi_spi_flags_e" to understand better. + int cs_mode = (flags >> 0) & 0x3; + + int device_id = drv_data->device_id; + task->id = device_id; //i need it for pos_spi_handle_copy + uint32_t cfg = cs_data->cfg; + DBG_PRINTF( + "%s:%s:%d: core clock:%" PRIu32 ", baudrate:%" PRIu32 ", div=%" PRIu32 ", udma_cmd cfg =%lx, qpi=%d\n", + __FILE__, __func__, __LINE__, system_core_clock_get(), + cs_data->max_baudrate, + system_core_clock_get() / cs_data->max_baudrate, cfg, qspi); + uint32_t byte_align = (cs_data->wordsize == PI_SPI_WORDSIZE_32) && + cs_data->big_endian; + + int buffer_size = (len + 7) >> 3; + + if (len > 8192 * 8) + { + DBG_PRINTF( + "%s:%s:%d: Transaction splitting unimplemented, too large", + __FILE__, __func__, __LINE__); + abort(); /* TODO: unimplemented transaction splitting */ + } + + DBG_PRINTF("%s:%s:%d: udma_cmd = %p\n", __FILE__, __func__, __LINE__, + &(cs_data->udma_cmd[0])); + uint32_t irq = hal_irq_disable(); + + uint8_t bitsword = 0; + uint8_t UDMA_CORE_CFG = 0; + + if (cs_data->wordsize == PI_SPI_WORDSIZE_8) + { + bitsword = 8; + UDMA_CORE_CFG = UDMA_CHANNEL_CFG_SIZE_8; + } + else if (cs_data->wordsize == PI_SPI_WORDSIZE_16) + { + bitsword = 16; + UDMA_CORE_CFG = UDMA_CHANNEL_CFG_SIZE_16; + } + else + { + bitsword = 32; + UDMA_CORE_CFG = UDMA_CHANNEL_CFG_SIZE_32; + } + + DBG_PRINTF("%s:%s:%d: bitsword = %u\n", __FILE__, __func__, __LINE__, bitsword); + DBG_PRINTF("%s:%s:%d: UDMA_CORE_CFG = %u\n", __FILE__, __func__, __LINE__, UDMA_CORE_CFG); + + /* + ** If I have no transfer in progress, then I go to set the command buffer + ** and then first I send the buffer where to receive the data and then the write command. + ** However, if I have some transfer in progress, then I put the new transfer + ** in the queue in the fifo and send it as soon as possible. + */ + + cs_data->udma_cmd[0] = cfg; + cs_data->udma_cmd[1] = SPI_CMD_SOT(cs_data->cs); + cs_data->udma_cmd[2] = SPI_CMD_RX_DATA(len / bitsword, SPI_CMD_1_WORD_PER_TRANSF, bitsword, qspi, SPI_CMD_MSB_FIRST); + cs_data->udma_cmd[3] = SPI_CMD_EOT(1, cs_mode == PI_SPI_CS_KEEP); + + uint32_t cfg_cmd = UDMA_CHANNEL_CFG_SIZE_32; + uint32_t rx_conf = UDMA_CORE_CFG; + if (drv_data->rx_channel->pendings[0] == NULL) + { + drv_data->rx_channel->pendings[0] = task; + plp_udma_enqueue(UDMA_SPIM_CMD_ADDR(device_id), (uint32_t)cs_data->udma_cmd, 4 * sizeof(uint32_t), UDMA_CHANNEL_CFG_EN | cfg_cmd); + plp_udma_enqueue(UDMA_SPIM_RX_ADDR(device_id), (uint32_t)data, buffer_size, UDMA_CHANNEL_CFG_EN | rx_conf); + } + else + { + if (drv_data->rx_channel->pendings[1] == NULL) + { + drv_data->rx_channel->pendings[1] = task; + plp_udma_enqueue(UDMA_SPIM_CMD_ADDR(device_id), (uint32_t)cs_data->udma_cmd, 4 * sizeof(uint32_t), UDMA_CHANNEL_CFG_EN | cfg_cmd); + plp_udma_enqueue(UDMA_SPIM_RX_ADDR(device_id), (uint32_t)data, buffer_size, UDMA_CHANNEL_CFG_EN | rx_conf); + } + else + { + // printf("else rx\n"); + struct spim_transfer transfer; + transfer.data = data; + transfer.flags = flags; + transfer.len = len; + transfer.cfg_cmd = cfg; + transfer.byte_align = byte_align; + transfer.is_send = 0; + drv_data->rx_channel->waitings_first=task; //i need it for pos_spi_handle_copy + __pi_spim_drv_fifo_enqueue(cs_data, &transfer, task); + } + } + hal_irq_restore(irq); + DBG_PRINTF("...end -> __pi_spi_receive_async...\n"); +} + +void __pi_spi_receive_async_with_ucode(struct spim_cs_data *cs_data, void *data, + size_t len, pi_spi_flags_e flags, + int ucode_size, void *ucode, + pi_task_t *task) +{ + /* TODO: port spi_async with ucode */ + abort(); +#if 0 + struct spim_driver_data *drv_data = SPIM_CS_DATA_GET_DRV_DATA(cs_data); + int qspi = ((flags >> 2) & 0x3) == ((PI_SPI_LINES_QUAD>>2) & 0x03); + int cs_mode = (flags >> 0) & 0x3; + + int device_id = drv_data->device_id; + uint32_t byte_align = (cs_data->wordsize == PI_SPI_WORDSIZE_32) + && cs_data->big_endian; + uint32_t cfg = cs_data->cfg; + DBG_PRINTF("%s:%d: core clock:%d, baudrate:%d, div=%d, byte_align =%lx, cfg= %lx, qspi=%lx\n", + __func__,__LINE__,system_core_clock_get(),cs_data->max_baudrate, + system_core_clock_get() / cs_data->max_baudrate,byte_align,cfg,qspi); + int size = (len + 7) >> 3; + + int cmd_id = 0; + + uint32_t irq = hal_irq_disable(); + if(!drv_data->end_of_transfer) + { + if(cs_mode != PI_SPI_CS_AUTO) + { + hal_soc_eu_set_fc_mask(SOC_EVENT_UDMA_SPIM_RX(device_id)); + } + drv_data->end_of_transfer = task; + drv_data->repeat_transfer = NULL; + if(((0xFFF00000 & (uint32_t)ucode)!= 0x1c000000)) + { + memcpy(&(cs_data->udma_cmd[0]), ucode, ucode_size); + spim_enqueue_channel(SPIM(device_id), (uint32_t)data, size, + UDMA_CORE_RX_CFG_EN(1) | (2<<1), RX_CHANNEL); + spim_enqueue_channel(SPIM(device_id), (uint32_t)cs_data->udma_cmd, + ucode_size, UDMA_CORE_TX_CFG_EN(1), TX_CHANNEL); + } + else + { + spim_enqueue_channel(SPIM(device_id), (uint32_t)data, size, + UDMA_CORE_RX_CFG_EN(1) | (2<<1), RX_CHANNEL); + spim_enqueue_channel(SPIM(device_id), (uint32_t)ucode, + ucode_size, UDMA_CORE_TX_CFG_EN(1), TX_CHANNEL); + } + } + else + { +#if 0 + struct spim_transfer transfer; + transfer.data = data; + transfer.flags = flags; + transfer.len = len; + transfer.cfg_cmd = cfg; + transfer.byte_align = byte_align; + transfer.is_send = 0; + __pi_spim_drv_fifo_enqueue(cs_data, &transfer, task); +#endif + } + hal_irq_restore(irq); +#endif +} + +void __pi_spi_send_async_with_ucode(struct spim_cs_data *cs_data, void *data, + size_t len, pi_spi_flags_e flags, + int ucode_size, void *ucode, + pi_task_t *task) +{ + /* TODO: port spi_async with ucode */ + abort(); +#if 0 + struct spim_driver_data *drv_data = SPIM_CS_DATA_GET_DRV_DATA(cs_data); + int qspi = ((flags >> 2) & 0x3) == ((PI_SPI_LINES_QUAD>>2) & 0x03); + int cs_mode = (flags >> 0) & 0x3; + + int device_id = drv_data->device_id; + uint32_t byte_align = (cs_data->wordsize == PI_SPI_WORDSIZE_32) + && cs_data->big_endian; + uint32_t cfg = cs_data->cfg; + DBG_PRINTF("%s:%d: core clock:%d, baudrate:%d, div=%d, byte_align =%lx, cfg= %lx, qspi=%lx\n", + __func__,__LINE__,system_core_clock_get(),cs_data->max_baudrate, + system_core_clock_get() / cs_data->max_baudrate,byte_align,cfg,qspi); + int size = (len + 7) >> 3; + + int cmd_id = 0; + + uint32_t irq = hal_irq_disable(); + if(!drv_data->end_of_transfer) + { + if(cs_mode != PI_SPI_CS_AUTO) + { + hal_soc_eu_set_fc_mask(SOC_EVENT_UDMA_SPIM_TX(device_id)); + } + drv_data->end_of_transfer = task; + drv_data->repeat_transfer = NULL; + + spim_enqueue_channel(SPIM(device_id), (uint32_t)ucode, + ucode_size, UDMA_CORE_TX_CFG_EN(1), TX_CHANNEL); + pi_time_wait_us(1000); + spim_enqueue_channel(SPIM(device_id), (uint32_t)data, + size, UDMA_CORE_TX_CFG_EN(1), TX_CHANNEL); + if(cs_mode == PI_SPI_CS_AUTO) + { + // wait until channel is free + while((hal_read32((void*)&(SPIM(device_id)->udma.tx_cfg)) + & (1<<5))>>5) + { + DBG_PRINTF("%s:%d\n",__func__,__LINE__); + } + + // enqueue EOT + cs_data->udma_cmd[0] = SPI_CMD_EOT(1); + spim_enqueue_channel(SPIM(device_id), + (uint32_t)&cs_data->udma_cmd[0], 1*(sizeof(uint32_t)), + UDMA_CORE_TX_CFG_EN(1), TX_CHANNEL); + } + } + else + { +#if 0 + struct spim_transfer transfer; + transfer.data = data; + transfer.flags = flags; + transfer.len = len; + transfer.cfg_cmd = cfg; + transfer.byte_align = byte_align; + transfer.is_send = 0; + __pi_spim_drv_fifo_enqueue(cs_data, &transfer, task); +#endif + } + hal_irq_restore(irq); +#endif +} + +void __pi_spi_send_async(struct spim_cs_data *cs_data, void *data, size_t len, + pi_spi_flags_e flags, pi_task_t *task) +{ + DBG_PRINTF("...start -> __pi_spi_send_async...\n"); + struct spim_driver_data *drv_data = SPIM_CS_DATA_GET_DRV_DATA(cs_data); + int qspi = (flags & (0x3 << 2)) == PI_SPI_LINES_QUAD; + int cs_mode = (flags >> 0) & 0x3; + DBG_PRINTF("%s:%s:%d...task %d, %p...\n", __FILE__, __func__, __LINE__, task == NULL ? 0 : 1, &task); + int device_id = drv_data->device_id; + task->id = device_id; //i need it for pos_spi_handle_copy + uint32_t cfg = cs_data->cfg; // SPI_CMD_CFG(...) + DBG_PRINTF( + "%s:%s:%d: core clock:%" PRIu32 ", baudrate:%" PRIu32 ", div=%" PRIu32 ", udma_cmd cfg =%lx, qpi=%d\n", + __FILE__, __func__, __LINE__, system_core_clock_get(), + cs_data->max_baudrate, + system_core_clock_get() / cs_data->max_baudrate, cfg, qspi); + uint32_t byte_align = (cs_data->wordsize == PI_SPI_WORDSIZE_32) && + cs_data->big_endian; + + /* buffer size */ + int buffer_size = (len + 7) >> 3; + + if (len > 8192 * 8) + { + DBG_PRINTF( + "%s:%s:%d: Transaction splitting unimplemented, too large", + __FILE__, __func__, __LINE__); + abort(); /* TODO: unimplemented transaction splitting */ + } + + // Address of the command buffer to be sent to the uDMA + DBG_PRINTF("%s:%s:%d: udma_cmd = %p\n", __FILE__, __func__, __LINE__, + &(cs_data->udma_cmd[0])); + uint32_t irq = hal_irq_disable(); + + uint8_t bitsword = 0; + uint8_t UDMA_CORE_CFG = 0; + + if (cs_data->wordsize == PI_SPI_WORDSIZE_8) + { + bitsword = 8; + UDMA_CORE_CFG = UDMA_CHANNEL_CFG_SIZE_8; // 0x0 + } + else if (cs_data->wordsize == PI_SPI_WORDSIZE_16) + { + bitsword = 16; + UDMA_CORE_CFG = UDMA_CHANNEL_CFG_SIZE_16; // 0x1 + } + else + { + bitsword = 32; + UDMA_CORE_CFG = UDMA_CHANNEL_CFG_SIZE_32; // 0x2 + } + + DBG_PRINTF("%s:%s:%d: bitsword = %u\n", __FILE__, __func__, __LINE__, bitsword); + DBG_PRINTF("%s:%s:%d: UDMA_CORE_CFG = %u\n", __FILE__, __func__, __LINE__, UDMA_CORE_CFG); + + /* + ** If I have no transfer in progress, then I go to set the command buffer + ** and then I first send the command and then the data. + ** However, if I have some transfer in progress, then I put the new transfer + ** in the queue in the fifo and send when I receive an EOT interrupt, + ** in this case the interrupt handler will manage the new transfer. + */ + cs_data->udma_cmd[0] = cfg; + cs_data->udma_cmd[1] = SPI_CMD_SOT(cs_data->cs); + cs_data->udma_cmd[2] = SPI_CMD_TX_DATA((len / bitsword), SPI_CMD_1_WORD_PER_TRANSF, bitsword, qspi, SPI_CMD_MSB_FIRST); + cs_data->udma_cmd[3] = SPI_CMD_EOT(1, cs_mode == PI_SPI_CS_KEEP); + + uint32_t cfg_cmd = UDMA_CHANNEL_CFG_SIZE_32; + uint32_t tx_conf = UDMA_CORE_CFG; + + if (drv_data->tx_channel->pendings[0] == NULL) + { + drv_data->tx_channel->pendings[0] = task; + plp_udma_enqueue(UDMA_SPIM_CMD_ADDR(device_id), (uint32_t)cs_data->udma_cmd, 4 * sizeof(uint32_t), UDMA_CHANNEL_CFG_EN | cfg_cmd); + plp_udma_enqueue(UDMA_SPIM_TX_ADDR(device_id), (uint32_t)data, buffer_size, UDMA_CHANNEL_CFG_EN | tx_conf); + } + else + { + if (drv_data->tx_channel->pendings[1] == NULL) + { + drv_data->tx_channel->pendings[1] = task; + plp_udma_enqueue(UDMA_SPIM_CMD_ADDR(device_id), (uint32_t)cs_data->udma_cmd, 4 * sizeof(uint32_t), UDMA_CHANNEL_CFG_EN | cfg_cmd); + plp_udma_enqueue(UDMA_SPIM_TX_ADDR(device_id), (uint32_t)data, buffer_size, UDMA_CHANNEL_CFG_EN | tx_conf); + } + else + { + /* a transfer is running, append to pendings transfers queue */ + struct spim_transfer transfer; + transfer.data = data; + transfer.flags = flags; + transfer.len = len; + transfer.cfg_cmd = cfg; + transfer.byte_align = byte_align; + transfer.is_send = 1; + drv_data->tx_channel->waitings_first=task; //i need it for pos_spi_handle_copy + __pi_spim_drv_fifo_enqueue(cs_data, &transfer, task); + } + } + hal_irq_restore(irq); + + DBG_PRINTF("...end -> __pi_spi_send_async...\n"); +} + +void __pi_spi_xfer_async(struct spim_cs_data *cs_data, void *tx_data, + void *rx_data, size_t len, pi_spi_flags_e flags, + pi_task_t *task) +{ + /* TODO: port spi_xfer async */ + abort(); +#if 0 + struct spim_driver_data *drv_data = SPIM_CS_DATA_GET_DRV_DATA(cs_data); + int qspi = (flags & (0x3 << 2)) == PI_SPI_LINES_QUAD; + int cs_mode = (flags >> 0) & 0x3; + + int device_id = drv_data->device_id; + uint32_t cfg = cs_data->cfg; + DBG_PRINTF("%s:%d: core clock:%"PRIu32", baudrate:%"PRIu32", div=%"PRIu32", udma_cmd cfg =%d\n", + __func__,__LINE__,system_core_clock_get(),cs_data->max_baudrate, + system_core_clock_get() / cs_data->max_baudrate,cfg); + uint32_t byte_align = (cs_data->wordsize == PI_SPI_WORDSIZE_32) + && cs_data->big_endian; + int size = (len + 7) >> 3; + + int cmd_id = 0; + + uint32_t irq = hal_irq_disable(); + if(!drv_data->end_of_transfer) + { + cs_data->udma_cmd[0] = cfg; + cs_data->udma_cmd[1] = SPI_CMD_SOT(cs_data->cs); + cs_data->udma_cmd[2] = SPI_CMD_FULL_DUPL(len, byte_align); + drv_data->end_of_transfer = task; + drv_data->repeat_transfer = NULL; + if(cs_mode == PI_SPI_CS_AUTO) + { + spim_enqueue_channel(SPIM(device_id), (uint32_t)cs_data->udma_cmd, + 3*(sizeof(uint32_t)), UDMA_CORE_TX_CFG_EN(1), + TX_CHANNEL); + spim_enqueue_channel(SPIM(device_id), (uint32_t)rx_data, size, + UDMA_CORE_RX_CFG_EN(1) | (2<<1), RX_CHANNEL); + spim_enqueue_channel(SPIM(device_id), (uint32_t)tx_data, + size, UDMA_CORE_TX_CFG_EN(1), + TX_CHANNEL); + // wait until TX channel is free + while((hal_read32((void*)&(SPIM(device_id)->udma.tx_cfg)) + & (1<<5))>>5) + { + DBG_PRINTF("%s:%d\n",__func__,__LINE__); + } + // send EOT + cs_data->udma_cmd[3] = SPI_CMD_EOT(1); + spim_enqueue_channel(SPIM(device_id), + (uint32_t)&cs_data->udma_cmd[3], sizeof(uint32_t), + UDMA_CORE_TX_CFG_EN(1), TX_CHANNEL); + } + else + { + spim_enqueue_channel(SPIM(device_id), (uint32_t)cs_data->udma_cmd, + 3*(sizeof(uint32_t)), UDMA_CORE_TX_CFG_EN(1), + TX_CHANNEL); + // wait until TX channel is free + while((hal_read32((void*)&(SPIM(device_id)->udma.tx_cfg)) + & (1<<5))>>5) + { + DBG_PRINTF("%s:%d\n",__func__,__LINE__); + } + // activate rx event + hal_soc_eu_set_fc_mask(SOC_EVENT_UDMA_SPIM_RX(device_id)); + // NOTE: both transfers have the same size + // does not matter which one we wait + spim_enqueue_channel(SPIM(device_id), (uint32_t)rx_data, size, + UDMA_CORE_RX_CFG_EN(1) | (2<<1), RX_CHANNEL); + spim_enqueue_channel(SPIM(device_id), (uint32_t)tx_data, + size, UDMA_CORE_TX_CFG_EN(1), + TX_CHANNEL); + } + + } + else + { + struct spim_transfer transfer; + transfer.data = rx_data; + transfer.flags = flags; + transfer.len = len; + transfer.cfg_cmd = cfg; + transfer.byte_align = byte_align; + transfer.is_send = (uint32_t) tx_data; // sending a pointer means xfer + __pi_spim_drv_fifo_enqueue(cs_data, &transfer, task); + } + hal_irq_restore(irq); +#endif +} + +void pos_spi_handle_copy(int event, void *arg) +{ + pos_udma_channel_t *channel = arg; + pi_task_t *pending_1 = channel->pendings[1]; + pi_task_t *pending_0 = channel->pendings[0]; + uint32_t spi_id = channel->base; + struct spim_driver_data *drv_data = __g_spim_drv_data[spi_id]; + pi_task_t *pending_first = __pi_spim_drv_fifo_pop(drv_data); + channel->pendings[0] = pending_1; + channel->pendings[1] = NULL; + + if (pending_first) + { + __pi_spim_exec_next_transfer(pending_first); + pending_first = NULL; + } + + pos_task_push_locked(pending_0); +} + +void pos_spi_create_channel(pos_udma_channel_t *channel, int channel_id, int soc_event) +{ + pos_soc_event_register_callback(soc_event, pos_spi_handle_copy, (void *)channel); + channel->pendings[0] = NULL; + channel->pendings[1] = NULL; + channel->waitings_first = NULL; + channel->base = 0; +} + +int pi_spi_open(struct pi_device *device) +{ + int irq = hal_irq_disable(); + for (int i = 0; i < ARCHI_NB_FLL; i++) + { + pos_fll_init(i); + } + + struct pi_spi_conf *conf = (struct pi_spi_conf *)device->config; + + unsigned char spi_id = conf->itf; + int periph_id = ARCHI_UDMA_SPIM_ID(spi_id); + spi_channel = UDMA_EVENT_ID(periph_id); + int cs = conf->cs; + int status = 0; + struct spim_cs_data **cs_data = (struct spim_cs_data **)(&device->data); + plp_udma_cg_set(plp_udma_cg_get() | (1 << periph_id)); + + struct spim_driver_data *drv_data; + if (__g_spim_drv_data[conf->itf]) + { + drv_data = __g_spim_drv_data[conf->itf]; + } + else + { + __g_spim_drv_data[conf->itf] = pi_default_malloc(sizeof(struct spim_driver_data)); + memset(__g_spim_drv_data[conf->itf], 0, sizeof(struct spim_driver_data)); + drv_data = __g_spim_drv_data[conf->itf]; + // Do this to define a node in a list. The list is a dynamic object. + drv_data->drv_fifo = pi_default_malloc(sizeof(struct spim_drv_fifo)); + memset(drv_data->drv_fifo, 0, sizeof(struct spim_drv_fifo)); + // controllo che il puntatore sia = 0 + if (!drv_data->drv_fifo) + { + hal_irq_restore(irq); + return -1; + } + drv_data->device_id = conf->itf; + } + + if (drv_data->nb_open == 0) + { + pos_spi_create_channel(drv_data->rx_channel, UDMA_CHANNEL_ID(periph_id), SOC_EVENT_UDMA_SPIM_EOT(drv_data->device_id)); + pos_spi_create_channel(drv_data->tx_channel, UDMA_CHANNEL_ID(periph_id) + 1, SOC_EVENT_UDMA_SPIM_EOT(drv_data->device_id)); + drv_data->rx_channel->base=spi_id; //way to save me the spi interface which is associated with the channel + drv_data->tx_channel->base=spi_id; //way to save me the spi interface which is associated with the channel + } + + soc_eu_fcEventMask_setEvent(SOC_EVENT_UDMA_SPIM_EOT(drv_data->device_id)); + + drv_data->nb_open++; + + *cs_data = __pi_spim_get_cs_data(drv_data, conf->cs); + + if (!*cs_data) + { // if (*cs_data == 0) + uint32_t clk_div = __pi_spi_clk_div_get(conf->max_baudrate); + // alloc a cs data, need to be in udma reachable ram + struct spim_cs_data *_cs_data = pi_data_malloc(sizeof(struct spim_cs_data)); + if (_cs_data == NULL) + { + DBG_PRINTF("[%s] _cs_data alloc failed\n", __func__); + hal_irq_restore(irq); + return -2; + } + if (clk_div > 0xFF) + { + DBG_PRINTF( + "[%s] clk_div, %" PRIu32 ", does not fit into 8 bits. SoC frequency too high.\n", + __func__, clk_div); + hal_irq_restore(irq); + return -3; + } + + memset(_cs_data, 0, sizeof(struct spim_cs_data)); + _cs_data->max_baudrate = conf->max_baudrate; + _cs_data->polarity = conf->polarity; + _cs_data->phase = conf->phase; + _cs_data->big_endian = conf->big_endian; + _cs_data->wordsize = conf->wordsize; + _cs_data->cs = conf->cs; + _cs_data->cfg = SPI_CMD_CFG(clk_div, _cs_data->phase, _cs_data->polarity); + // _cs_data->cfg = SPI_CMD_CFG(1,0,0); + *cs_data = _cs_data; + // I insert a new element in the cs_data list + __pi_spim_cs_data_add(drv_data, _cs_data); + } + + hal_irq_restore(irq); + + return status; +} + +void pi_spi_close(struct pi_device *device) +{ + DBG_PRINTF("...start -> pi_spi_close...\n"); + + struct pi_spi_conf *conf = (struct pi_spi_conf *)device->config; + uint32_t irq = hal_irq_disable(); + unsigned char spi_id = conf->itf; + int periph_id = ARCHI_UDMA_SPIM_ID(spi_id); + int spi_channel = UDMA_EVENT_ID(periph_id); + /* TODO: paste beg */ + struct spim_cs_data *cs_data = device->data; + struct spim_driver_data *drv_data = cs_data->drv_data; + __pi_spim_cs_data_del(drv_data, cs_data->cs); + /* + ** Number of open SPI interfaces + */ + drv_data->nb_open--; + + /* + ** If you no longer have any SPI interface open, + ** then go clear the memory, with free, and clear the interrupt line. + */ + if (drv_data->nb_open == 0) + { + /* reactivate clock gating for said device */ + plp_udma_cg_set(plp_udma_cg_get() & ~(1 << periph_id)); + soc_eu_fcEventMask_clearEvent(SOC_EVENT_UDMA_SPIM_EOT(drv_data->device_id)); + // hal_soc_eu_clear_fc_mask( SOC_EVENT_UDMA_SPIM_EOT(drv_data->device_id)); + __g_spim_drv_data[drv_data->device_id] = NULL; + pi_default_free(drv_data->drv_fifo, sizeof(drv_data->drv_fifo)); + pi_default_free(drv_data, sizeof(drv_data)); + + hal_irq_restore(irq); + return; + } + pi_data_free(cs_data, sizeof(cs_data)); + /* TODO: moved to end return drv_data->nb_open; */ + /* TODO: paste end */ + + hal_irq_restore(irq); + DBG_PRINTF("...end -> pi_spi_close...\n"); + return; +} + +void pi_spi_ioctl(struct pi_device *device, uint32_t cmd, void *arg) +{ + /* TODO */ +} + +void pi_spi_send(struct pi_device *device, void *data, size_t len, pi_spi_flags_e flag) +{ + pi_task_t task_block; + pi_task_block(&task_block); + pi_spi_send_async(device, data, len, flag, &task_block); + pi_task_wait_on(&task_block); + pi_task_destroy(&task_block); +} + +void pi_spi_send_async(struct pi_device *device, void *data, size_t len, pi_spi_flags_e flag, pi_task_t *task) +{ + DEBUG_PRINTF("...start -> pi_spi_send_async...\n"); + __pi_spi_send_async(device->data, data, len, flag, task); + DEBUG_PRINTF("...end -> pi_spi_send_async...\n"); +} + +void pi_spi_receive(struct pi_device *device, void *data, size_t len, pi_spi_flags_e flag) +{ + DEBUG_PRINTF("...start -> pi_spi_receive...\n"); + pi_task_t task_block; + pi_task_block(&task_block); + DEBUG_PRINTF("%s:%s:%d pi_task_block(%p)\n", __FILE__, __func__, __LINE__, &task_block); + pi_spi_receive_async(device, data, len, flag, &task_block); + DEBUG_PRINTF("%s:%s:%d pi_spi_receive_async(device, data, len, flag, &task_block)\n", __FILE__, __func__, __LINE__); + // This function allows to wait on an event task until the event occurs. + pi_task_wait_on(&task_block); + DEBUG_PRINTF("%s:%s:%d pi_task_wait_on(%p)\n", __FILE__, __func__, __LINE__, &task_block); + pi_task_destroy(&task_block); + DEBUG_PRINTF("%s:%s:%d pi_task_destroy(%p)\n", __FILE__, __func__, __LINE__, &task_block); + DEBUG_PRINTF("...end -> pi_spi_receive...\n"); +} + +void pi_spi_receive_async(struct pi_device *device, void *data, size_t len, + pi_spi_flags_e flag, pi_task_t *task) +{ + DEBUG_PRINTF("...start -> pi_spi_receive_async...\n"); + __pi_spi_receive_async(device->data, data, len, flag, task); + DEBUG_PRINTF("...end -> pi_spi_receive_async...\n"); +} + +void pi_spi_receive_with_ucode(struct pi_device *device, void *data, size_t len, + pi_spi_flags_e flags, int ucode_size, + void *ucode) +{ + pi_task_t task_block; + pi_task_block(&task_block); + __pi_spi_receive_async_with_ucode(device->data, data, len, flags, + ucode_size, ucode, &task_block); + pi_task_wait_on(&task_block); + pi_task_destroy(&task_block); +} + +void pi_spi_send_with_ucode(struct pi_device *device, void *data, size_t len, + pi_spi_flags_e flags, int ucode_size, void *ucode) +{ + pi_task_t task_block; + pi_task_block(&task_block); + __pi_spi_send_async_with_ucode(device->data, data, len, flags, + ucode_size, ucode, &task_block); + pi_task_wait_on(&task_block); + pi_task_destroy(&task_block); +} + +uint32_t pi_spi_get_config(struct pi_device *device) +{ + return __pi_spi_get_config(device->data); +} + +void pi_spi_transfer(struct pi_device *device, void *tx_data, void *rx_data, + size_t len, pi_spi_flags_e flag) +{ + + /* TODO */ + pi_task_t task_block; + pi_task_block(&task_block); + DEBUG_PRINTF("%s:%s:%d\n", __FILE__, __func__, __LINE__); + pi_spi_transfer_async(device, tx_data, rx_data, len, flag, &task_block); + DEBUG_PRINTF("%s:%s:%d\n", __FILE__, __func__, __LINE__); + pi_task_wait_on(&task_block); + DEBUG_PRINTF("%s:%s:%d\n", __FILE__, __func__, __LINE__); + pi_task_destroy(&task_block); + DEBUG_PRINTF("%s:%s:%d\n", __FILE__, __func__, __LINE__); +} + +void pi_spi_transfer_async(struct pi_device *device, void *tx_data, + void *rx_data, size_t len, pi_spi_flags_e flag, + pi_task_t *task) +{ + /* TODO */ + __pi_spi_xfer_async(device->data, tx_data, rx_data, len, flag, task); +} \ No newline at end of file From ea8f4dd5fc05b7a238c530e8d6fca58fb52e57f6 Mon Sep 17 00:00:00 2001 From: orlandonico Date: Tue, 14 Dec 2021 15:28:47 +0100 Subject: [PATCH 04/86] rtos/pmsis: update src.mk for spim --- rtos/pmsis/pmsis_bsp/rules/pulpos/src.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/rtos/pmsis/pmsis_bsp/rules/pulpos/src.mk b/rtos/pmsis/pmsis_bsp/rules/pulpos/src.mk index a44bae5e..bb30f79a 100644 --- a/rtos/pmsis/pmsis_bsp/rules/pulpos/src.mk +++ b/rtos/pmsis/pmsis_bsp/rules/pulpos/src.mk @@ -83,6 +83,7 @@ endif ifeq '$(CONFIG_SPIFLASH)' '1' PULP_SRCS += $(BSP_SPIFLASH_SRC) CONFIG_FLASH = 1 +CONFIG_SPIM = 1 endif ifeq '$(CONFIG_ATXP032)' '1' From b293855d8881023a1d1e6b4567ffde52dbc82c10 Mon Sep 17 00:00:00 2001 From: orlandonico Date: Tue, 14 Dec 2021 15:49:54 +0100 Subject: [PATCH 05/86] tests: add test sync for i2c eeprom --- tests/i2c_eeprom_sync/Makefile | 18 ++++ tests/i2c_eeprom_sync/i2c_eeprom_sync.c | 137 ++++++++++++++++++++++++ 2 files changed, 155 insertions(+) create mode 100644 tests/i2c_eeprom_sync/Makefile create mode 100644 tests/i2c_eeprom_sync/i2c_eeprom_sync.c diff --git a/tests/i2c_eeprom_sync/Makefile b/tests/i2c_eeprom_sync/Makefile new file mode 100644 index 00000000..bb304692 --- /dev/null +++ b/tests/i2c_eeprom_sync/Makefile @@ -0,0 +1,18 @@ +APP = test_i2c_eeprom_sync +APP_SRCS += test_i2c_eeprom_sync.c + +ifdef USE_CLUSTER +APP_CFLAGS += -DCLUSTER -DNUM_CLUSTER=$(USE_CLUSTER) +ifdef NUM_CORES +APP_CFLAGS += -DNUM_CORES=$(NUM_CORES) +else +APP_CFLAGS += -DNUM_CORES=1 +endif +endif + +APP_CFLAGS += -Os -g +APP_LDFLAGS += -Os -g + +CONFIG_I2C = 1 + +include $(RULES_DIR)/pmsis_rules.mk diff --git a/tests/i2c_eeprom_sync/i2c_eeprom_sync.c b/tests/i2c_eeprom_sync/i2c_eeprom_sync.c new file mode 100644 index 00000000..df0b0352 --- /dev/null +++ b/tests/i2c_eeprom_sync/i2c_eeprom_sync.c @@ -0,0 +1,137 @@ +/* + * Copyright 2021 Greenwaves Technologies + * Copyright 2021 ETH Zurich + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + * nico.orlando@studio.unibo.it + */ + +/* + * Test 24FC1025 eeprom (located at i2c address 0x50 in bus 0) + */ + +#include "pmsis.h" +#include + +/* I2C device/peripheral id */ +#define I2C_DEV_ID 0 +/* I2C address of the eeprom */ +#define I2C_EEPROM_ADDR 0x50 + +static struct pi_device i2c; + +void eeprom(void) +{ + /* initalize i2c */ + struct pi_i2c_conf i2c_conf; + + printf("opening eeprom on i2c bus %d\n", I2C_DEV_ID); + + pi_i2c_conf_init(&i2c_conf); + i2c_conf.itf = I2C_DEV_ID; + i2c_conf.max_baudrate = 100000; + pi_i2c_conf_set_slave_addr(&i2c_conf, I2C_EEPROM_ADDR << 1, 0); + /* pi_i2c_conf_set_wait_cycles(conf, 2048); */ + + pi_open_from_conf(&i2c, &i2c_conf); + + if (pi_i2c_open(&i2c)) { + printf("i2c open failed\n"); + exit(1); + } + + uint8_t expected_rx[] = { + 0xca, + 0x00, + 0xde, + 0xca, + 0xc0, + 0xfe + }; + uint8_t rx[sizeof(expected_rx)] = {0}; + + uint8_t tx[] = { + 0x00, /* addr msb */ + 0x00, /* addr lsb */ + expected_rx[0], + expected_rx[1], + expected_rx[2], + expected_rx[3], + expected_rx[4], + expected_rx[5] + }; + + /* the address of our i2c eeprom is normally 0x50 if you want to + * specifically test that */ + printf("writing eeprom\n"); + int res = 0; + res = pi_i2c_write(&i2c, tx, sizeof(tx), + PI_I2C_XFER_START | PI_I2C_XFER_STOP); + if (res != PI_OK) { + printf("pi_i2c_write failed\n"); + exit(1); + } + + /* Wait for write to finish. It takes 5 million ns = 5 ms to finish. */ + for (volatile int i = 0; i < 100000; ++i) + i++; + + printf("reading eeprom\n"); + uint8_t eeprom_addr[] = { + 0x00, /* addr msb */ + 0x00, /* addr lsb */ + }; + + res = pi_i2c_write(&i2c, eeprom_addr, sizeof(eeprom_addr), + PI_I2C_XFER_START | PI_I2C_XFER_STOP); + if (res != PI_OK) { + printf("pi_i2c_write for eeprom addr failed\n"); + exit(1); + } + res = pi_i2c_read(&i2c, rx, sizeof(rx), + PI_I2C_XFER_START | PI_I2C_XFER_STOP); + if (res != PI_OK) { + printf("pi_i2c_read failed\n"); + exit(1); + } + + printf("comparing\n"); + int error = 0; + for (int i = 0; i < sizeof(rx); i++) { + if (rx[i] != expected_rx[i]) { + printf("rx[%d]=0x%0x differs from expected rx[%d]=0x%0x\n", + i, rx[i], i, expected_rx[i]); + error++; + } else { + printf("rx[%d]=0x%0x ok\n", i, rx[i]); + } + } + if (error != 0) + exit(1); + exit(0); +} + +static void test_kickoff(void *arg) +{ + int ret = eeprom(); + pmsis_exit(ret); +} + +/* Program Entry. */ +int main(void) +{ + printf("\n\n\t *** Pulp-SDK Hello World *** \n\n"); + return pmsis_kickoff((void *)test_kickoff); +} \ No newline at end of file From 43bb17107aa663a2b6222893dca5011ab757ef69 Mon Sep 17 00:00:00 2001 From: orlandonico Date: Tue, 14 Dec 2021 16:27:39 +0100 Subject: [PATCH 06/86] rm file --- tests/i2c_eeprom_sync/i2c_eeprom_sync.c | 137 ------------------------ 1 file changed, 137 deletions(-) delete mode 100644 tests/i2c_eeprom_sync/i2c_eeprom_sync.c diff --git a/tests/i2c_eeprom_sync/i2c_eeprom_sync.c b/tests/i2c_eeprom_sync/i2c_eeprom_sync.c deleted file mode 100644 index df0b0352..00000000 --- a/tests/i2c_eeprom_sync/i2c_eeprom_sync.c +++ /dev/null @@ -1,137 +0,0 @@ -/* - * Copyright 2021 Greenwaves Technologies - * Copyright 2021 ETH Zurich - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * SPDX-License-Identifier: Apache-2.0 - * nico.orlando@studio.unibo.it - */ - -/* - * Test 24FC1025 eeprom (located at i2c address 0x50 in bus 0) - */ - -#include "pmsis.h" -#include - -/* I2C device/peripheral id */ -#define I2C_DEV_ID 0 -/* I2C address of the eeprom */ -#define I2C_EEPROM_ADDR 0x50 - -static struct pi_device i2c; - -void eeprom(void) -{ - /* initalize i2c */ - struct pi_i2c_conf i2c_conf; - - printf("opening eeprom on i2c bus %d\n", I2C_DEV_ID); - - pi_i2c_conf_init(&i2c_conf); - i2c_conf.itf = I2C_DEV_ID; - i2c_conf.max_baudrate = 100000; - pi_i2c_conf_set_slave_addr(&i2c_conf, I2C_EEPROM_ADDR << 1, 0); - /* pi_i2c_conf_set_wait_cycles(conf, 2048); */ - - pi_open_from_conf(&i2c, &i2c_conf); - - if (pi_i2c_open(&i2c)) { - printf("i2c open failed\n"); - exit(1); - } - - uint8_t expected_rx[] = { - 0xca, - 0x00, - 0xde, - 0xca, - 0xc0, - 0xfe - }; - uint8_t rx[sizeof(expected_rx)] = {0}; - - uint8_t tx[] = { - 0x00, /* addr msb */ - 0x00, /* addr lsb */ - expected_rx[0], - expected_rx[1], - expected_rx[2], - expected_rx[3], - expected_rx[4], - expected_rx[5] - }; - - /* the address of our i2c eeprom is normally 0x50 if you want to - * specifically test that */ - printf("writing eeprom\n"); - int res = 0; - res = pi_i2c_write(&i2c, tx, sizeof(tx), - PI_I2C_XFER_START | PI_I2C_XFER_STOP); - if (res != PI_OK) { - printf("pi_i2c_write failed\n"); - exit(1); - } - - /* Wait for write to finish. It takes 5 million ns = 5 ms to finish. */ - for (volatile int i = 0; i < 100000; ++i) - i++; - - printf("reading eeprom\n"); - uint8_t eeprom_addr[] = { - 0x00, /* addr msb */ - 0x00, /* addr lsb */ - }; - - res = pi_i2c_write(&i2c, eeprom_addr, sizeof(eeprom_addr), - PI_I2C_XFER_START | PI_I2C_XFER_STOP); - if (res != PI_OK) { - printf("pi_i2c_write for eeprom addr failed\n"); - exit(1); - } - res = pi_i2c_read(&i2c, rx, sizeof(rx), - PI_I2C_XFER_START | PI_I2C_XFER_STOP); - if (res != PI_OK) { - printf("pi_i2c_read failed\n"); - exit(1); - } - - printf("comparing\n"); - int error = 0; - for (int i = 0; i < sizeof(rx); i++) { - if (rx[i] != expected_rx[i]) { - printf("rx[%d]=0x%0x differs from expected rx[%d]=0x%0x\n", - i, rx[i], i, expected_rx[i]); - error++; - } else { - printf("rx[%d]=0x%0x ok\n", i, rx[i]); - } - } - if (error != 0) - exit(1); - exit(0); -} - -static void test_kickoff(void *arg) -{ - int ret = eeprom(); - pmsis_exit(ret); -} - -/* Program Entry. */ -int main(void) -{ - printf("\n\n\t *** Pulp-SDK Hello World *** \n\n"); - return pmsis_kickoff((void *)test_kickoff); -} \ No newline at end of file From 1d14ddbcb26dbfb44b9b8c1a3cf8bd3cf2956bb3 Mon Sep 17 00:00:00 2001 From: orlandonico Date: Tue, 14 Dec 2021 16:39:53 +0100 Subject: [PATCH 07/86] rtos/pmsis: modified the structure pi_i2c_conf_t --- rtos/pmsis/pmsis_api/include/pmsis/drivers/i2c.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rtos/pmsis/pmsis_api/include/pmsis/drivers/i2c.h b/rtos/pmsis/pmsis_api/include/pmsis/drivers/i2c.h index 174eeaf2..0f71a3cd 100644 --- a/rtos/pmsis/pmsis_api/include/pmsis/drivers/i2c.h +++ b/rtos/pmsis/pmsis_api/include/pmsis/drivers/i2c.h @@ -45,7 +45,8 @@ /// @endcond -/** \struct pi_i2c_conf_t +/** + * \struct pi_i2c_conf * \brief I2C master configuration structure. * * This structure is used to pass the desired I2C configuration to the runtime @@ -62,6 +63,8 @@ typedef struct pi_i2c_conf uint16_t wait_cycles; uint32_t max_baudrate; /*!< Maximum baudrate for the I2C bitstream which can be used with the opened device . */ + uint8_t ts_ch; /*!< Enable the timestamp on TX (0) or RX (1) */ + uint8_t ts_evt_id; /*!< UDMA Config Event ID for generating the timestamp */ } pi_i2c_conf_t; From 0947ddb392de0156f2cdf02cb7dae6897a938f57 Mon Sep 17 00:00:00 2001 From: orlandonico Date: Tue, 14 Dec 2021 16:40:50 +0100 Subject: [PATCH 08/86] rtos/pulpos: Add driver i2c for pulp-sdk * Changed the variables so that we are compatible with pulp-sdk; --- rtos/pulpos/pulp/drivers/i2c/i2c-v2.c | 887 ++++++++++++++++++++++++++ 1 file changed, 887 insertions(+) create mode 100644 rtos/pulpos/pulp/drivers/i2c/i2c-v2.c diff --git a/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c b/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c new file mode 100644 index 00000000..7a8a5e37 --- /dev/null +++ b/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c @@ -0,0 +1,887 @@ +/* + * Copyright 2021 GreenWaves Technologies + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include "pmsis.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include + +/* + * pi_task: + * data[0] = l2_buf + * data[1] = size + * data[2] = flags + * data[3] = channel + * data[4] = p_cs_data + * data[5] = repeat_size + */ + +/* Length of i2c cmd buffer. */ +#define __PI_I2C_CMD_BUFF_SIZE (16) +/* Lenght of i2c stop command sequence. */ +#define __PI_I2C_STOP_CMD_SIZE (4) +/* Lenght of i2c eot subset of stop command sequence. */ +#define __PI_I2C_ONLY_EOT_CMD_SIZE (3) + +typedef enum { + RX_CHANNEL = 0, + TX_CHANNEL = 1, + COMMAND_CHANNEL = 2 +} udma_channel_e; + +struct i2c_pending_transfer_s { + uint32_t pending_buffer; + uint32_t pending_size; + uint32_t pending_repeat; + uint32_t pending_repeat_size; + pi_i2c_xfer_flags_e flags; + int8_t device_id; + udma_channel_e channel; +}; + +struct i2c_cs_data_s { + uint8_t device_id; /*!< I2C interface ID. */ + uint8_t cs; /*!< Chip select i2c device. */ + uint16_t clk_div; /*!< Clock divider for the selected i2c chip. */ + uint32_t max_baudrate; /*!< Max baudrate for the selected i2c chip. */ + struct i2c_cs_data_s *next; /*!< Pointer to next i2c cs data struct. */ +}; + +struct i2c_itf_data_s { + /* Best to use only one queue since both RX & TX can be used at the same time. */ + struct pi_task *buf[2]; /*!< RX + TX */ + struct pi_task *fifo_head; /*!< Head of SW fifo waiting transfers. */ + struct pi_task *fifo_tail; /*!< Tail of SW fifo waiting transfers. */ + struct i2c_pending_transfer_s *pending; /*!< RX + TX. */ + uint32_t nb_open; /*!< Number of devices opened. */ + uint32_t i2c_cmd_index; /*!< Number of commands in i2c_cmd_seq. */ + /* pi_freq_cb_t i2c_freq_cb; /\*!< Callback associated to frequency changes. *\/ + */ + struct i2c_cs_data_s *cs_list; /*!< List of i2c associated to this itf. */ + uint8_t i2c_cmd_seq[__PI_I2C_CMD_BUFF_SIZE]; /*!< Command sequence. */ + uint8_t i2c_stop_send; /*!< Set if a stop cmd seq should be sent. */ + uint8_t i2c_stop_seq[__PI_I2C_STOP_CMD_SIZE]; /*!< Command STOP sequence. */ + uint8_t i2c_eot_send; /*!< Set if a eot cmd seq should be sent. */ + uint8_t* i2c_only_eot_seq; /*!< Only EOT sequence part of of STOP sequence */ + uint8_t device_id; /*!< I2C interface ID. */ + /* This variable is used to count number of events received to handle EoT sequence. */ + uint8_t nb_events; /*!< Number of events received. */ +}; + +/* Defines for read & write adress access. */ +#define ADDRESS_WRITE 0x0 +#define ADDRESS_READ 0x1 + +/* Max length of a i2c request/data buffer. */ +#define MAX_SIZE (0xFF) + +static struct i2c_itf_data_s *g_i2c_itf_data[ARCHI_UDMA_NB_I2C] = {NULL}; + +/* IRQ handler. */ +static void __pi_i2c_handler(void *arg); + +/* Clock divider. */ +static uint32_t __pi_i2c_clk_div_get(uint32_t baudrate); + +/* Add a cs_data to list of opened devices. */ +static void __pi_i2c_cs_data_add(struct i2c_itf_data_s *driver_data, struct i2c_cs_data_s *cs_data); + +/* Remove a cs_data from list of opened devices. */ +static void __pi_i2c_cs_data_remove(struct i2c_itf_data_s *driver_data, + struct i2c_cs_data_s *cs_data); + +/* Handle a pending transfer after end of previous part of transfer. */ +static void __pi_i2c_handle_pending_transfer(struct i2c_itf_data_s *driver_data); + +/* Send a stop command sequence. */ +static void __pi_i2c_send_stop_cmd(struct i2c_itf_data_s *driver_data); + +/* Send a only eot command sequence. */ +static void __pi_i2c_send_only_eot_cmd(struct i2c_itf_data_s *driver_data); + +/* Check if a HW UDMA slot is free. */ +static int32_t __pi_i2c_cb_buf_empty(struct i2c_itf_data_s *driver_data); + +/* Enqueue a new task for callback. Currently, there is only a single slot */ +static void __pi_i2c_cb_buf_enqueue(struct i2c_itf_data_s *driver_data, struct pi_task *task); + +/* Pop a task from callback buffer . */ +static struct pi_task *__pi_i2c_cb_buf_pop(struct i2c_itf_data_s *driver_data); + +/* Create a new callabck struct with transfer info then enqueue it in SW fifo. */ +static void __pi_i2c_task_fifo_enqueue(struct i2c_itf_data_s *driver_data, struct pi_task *task); + +/* Pop a callback struct containing a new transfer from SW fifo. */ +static struct pi_task *__pi_i2c_task_fifo_pop(struct i2c_itf_data_s *driver_data); + +/* Initiate and enqueue a read command sequence. */ +static void __pi_i2c_copy_exec_read(struct i2c_itf_data_s *driver_data, struct pi_task *task); + +/* Initiate and enqueue a write command sequence. */ +static void __pi_i2c_copy_exec_write(struct i2c_itf_data_s *driver_data, struct pi_task *task); + +/* Callback to execute when frequency changes. */ +static void __pi_i2c_freq_cb(void *args); + +/* Init i2c conf struct. */ +void __pi_i2c_conf_init(pi_i2c_conf_t *conf); + +/* Open i2c device. */ +int32_t __pi_i2c_open(struct pi_i2c_conf *conf, struct i2c_cs_data_s **device_data); + +/* Close i2c device. */ +void __pi_i2c_close(struct i2c_cs_data_s *device_data); + +/* Ioctl function. */ +void __pi_i2c_ioctl(struct i2c_cs_data_s *device_data, uint32_t cmd, void *arg); + +/* Copy in UDMA. */ +void __pi_i2c_copy(struct i2c_cs_data_s *cs_data, uint32_t l2_buff, uint32_t length, + pi_i2c_xfer_flags_e flags, udma_channel_e channel, struct pi_task *task); + +/* Scan i2c bus to detect connected devices. */ +int32_t __pi_i2c_detect(struct i2c_cs_data_s *cs_data, struct pi_i2c_conf *conf, uint8_t *rx_data, + struct pi_task *task); + +void pi_i2c_conf_init(pi_i2c_conf_t *conf) +{ + __pi_i2c_conf_init(conf); +} + +void pi_i2c_conf_set_slave_addr(struct pi_i2c_conf *conf, uint16_t slave_addr, + int8_t is_10_bits) +{ + conf->cs = slave_addr; + conf->is_10_bits = is_10_bits; +} + +int pi_i2c_open(struct pi_device *device) +{ + int32_t status = -1; + struct pi_i2c_conf *conf = (struct pi_i2c_conf *)device->config; + I2C_TRACE("Open device id=%d\n", conf->itf); + status = __pi_i2c_open(conf, (struct i2c_cs_data_s **)&(device->data)); + I2C_TRACE("Open status : %ld, driver data: %lx\n", status, + (struct i2c_cs_data_s *)device->data); + return status; +} + +void pi_i2c_close(struct pi_device *device) +{ + struct i2c_cs_data_s *device_data = (struct i2c_cs_data_s *)device->data; + if (device_data != NULL) { + I2C_TRACE("Close device id=%d\n", device_data->device_id); + __pi_i2c_close(device_data); + device->data = NULL; + } +} + +void pi_i2c_ioctl(struct pi_device *device, uint32_t cmd, void *arg) +{ + struct i2c_cs_data_s *device_data = (struct i2c_cs_data_s *)device->data; + if (device_data != NULL) { + I2C_TRACE("Ioctl command : %lx, arg %lx\n", cmd, arg); + __pi_i2c_ioctl(device_data, cmd, arg); + } +} + +#define MUTEX 1 +int pi_i2c_read(struct pi_device *device, uint8_t *rx_buff, int length, pi_i2c_xfer_flags_e flags) +{ + int status = PI_OK; + pi_task_t task_block; +#if MUTEX + pi_task_block(&task_block); + pi_i2c_read_async(device, rx_buff, length, flags, &task_block); + pi_task_wait_on(&task_block); + pi_task_destroy(&task_block); +#else + pi_task_block_no_mutex(&task_block); + pi_i2c_read_async(device, rx_buff, length, flags, &task_block); + pi_task_wait_on_no_mutex(&task_block); +#endif + /* only some udma i2c peripherals support ack detection */ +#ifdef CONFIG_UDMA_I2C_ACK + struct i2c_cs_data_s *device_data = (struct i2c_cs_data_s *)device->data; + if (REG_GET(I2C_ACK_NACK, i2c_ack_get(device_data->device_id))) + status = PI_ERR_I2C_NACK; +#endif + + return status; +} + +void pi_i2c_read_async(struct pi_device *device, uint8_t *rx_buff, int length, + pi_i2c_xfer_flags_e flags, pi_task_t *task) +{ + struct i2c_cs_data_s *device_data = (struct i2c_cs_data_s *)device->data; + udma_channel_e channel = RX_CHANNEL; + I2C_TRACE("I2C(%d) : transfer %d %lx %ld %lx, task %lx\n", device_data->device_id, channel, + (uint32_t)rx_buff, length, flags, task); + __pi_i2c_copy(device_data, (uint32_t)rx_buff, length, flags, channel, task); +} + +int pi_i2c_write(struct pi_device *device, uint8_t *tx_data, int length, pi_i2c_xfer_flags_e flags) +{ + int status = PI_OK; + pi_task_t task_block; +#if MUTEX + pi_task_block(&task_block); + pi_i2c_write_async(device, tx_data, length, flags, &task_block); + pi_task_wait_on(&task_block); + pi_task_destroy(&task_block); +#else + pi_task_block_no_mutex(&task_block); + pi_i2c_write_async(device, tx_data, length, flags, &task_block); + pi_task_wait_on_no_mutex(&task_block); +#endif + /* only some udma i2c peripherals support ack detection */ +#ifdef CONFIG_UDMA_I2C_ACK + struct i2c_cs_data_s *device_data = (struct i2c_cs_data_s *)device->data; + if (REG_GET(I2C_ACK_NACK, i2c_ack_get(device_data->device_id))) + status = PI_ERR_I2C_NACK; +#endif + return status; +} + +void pi_i2c_write_async(struct pi_device *device, uint8_t *tx_data, int length, + pi_i2c_xfer_flags_e flags, pi_task_t *task) +{ + struct i2c_cs_data_s *device_data = (struct i2c_cs_data_s *)device->data; + udma_channel_e channel = TX_CHANNEL; + I2C_TRACE("I2C(%d) : transfer %d %lx %ld %lx, task %lx\n", device_data->device_id, channel, + (uint32_t)tx_data, length, flags, task); + __pi_i2c_copy(device_data, (uint32_t)tx_data, length, flags, channel, task); +} + +int pi_i2c_get_request_status(pi_task_t *task) +{ + (void)task; + return PI_OK; +} + +int pi_i2c_detect(struct pi_device *device, struct pi_i2c_conf *conf, uint8_t *rx_data) +{ + int32_t status = -1; + struct i2c_cs_data_s *cs_data = (struct i2c_cs_data_s *)device->data; + pi_task_t task_block; + pi_task_block(&task_block); + I2C_TRACE("Search device at cs=%x\n", conf->cs); + __pi_i2c_detect(cs_data, conf, rx_data, &task_block); + pi_task_wait_on(&task_block); + pi_task_destroy(&task_block); + status = (*rx_data == 0x00) ? 0 : -1; + I2C_TRACE("Search device at cs=%x result=%x\n", conf->cs, status); + return status; +} + +static void __pi_i2c_handle_pending_transfer(struct i2c_itf_data_s *driver_data) +{ + struct i2c_pending_transfer_s *pending = driver_data->pending; + pending->pending_buffer += pending->pending_repeat; + pending->pending_repeat_size -= pending->pending_repeat; + pending->pending_size = pending->pending_repeat; + + if (pending->pending_repeat_size <= pending->pending_repeat) { + pending->pending_repeat = 0; + pending->pending_size = pending->pending_repeat_size; + /* Stop bit at the end? */ + driver_data->i2c_stop_send = (pending->flags & PI_I2C_XFER_NO_STOP) ? 0 : 1; + } + /* Initiate next part of command sequence. */ + { + /* Data. */ + uint32_t index = 0; + driver_data->i2c_cmd_seq[index++] = I2C_CMD_RPT; + driver_data->i2c_cmd_seq[index++] = pending->pending_size; + driver_data->i2c_cmd_seq[index++] = I2C_CMD_WR; + } + // hal_i2c_enqueue(device_id, driver_data->channel); + /* TODO: Renqueue next cmd! */ +} + +static void __pi_i2c_send_stop_cmd(struct i2c_itf_data_s *driver_data) +{ + driver_data->i2c_stop_send = 0; + driver_data->i2c_eot_send = 0; + hal_i2c_enqueue(driver_data->device_id, TX_CHANNEL, (uint32_t)driver_data->i2c_stop_seq, + (uint32_t)__PI_I2C_STOP_CMD_SIZE, UDMA_CORE_TX_CFG_EN(1)); +} + +static void __pi_i2c_send_only_eot_cmd(struct i2c_itf_data_s *driver_data) +{ + driver_data->i2c_eot_send = 0; + hal_i2c_enqueue(driver_data->device_id, TX_CHANNEL, (uint32_t)driver_data->i2c_only_eot_seq, + (uint32_t)__PI_I2C_ONLY_EOT_CMD_SIZE, UDMA_CORE_TX_CFG_EN(1)); +} + +static inline void __pi_irq_handle_end_of_task(pi_task_t *task) +{ + switch (task->id) { + case PI_TASK_NONE_ID: + pi_task_release(task); + break; + + case PI_TASK_CALLBACK_ID: + pi_task_push(task); + break; + + default: + return; + } +} + +static void __pi_i2c_rx_handler(void *arg) +{ +} + +static void __pi_i2c_tx_handler(void *arg) +{ + uint32_t event = (uint32_t)arg; + uint32_t periph_id = (event >> ARCHI_SOC_EVENT_UDMA_NB_CHANNEL_EVT_LOG2) - UDMA_I2C_ID(0); + + struct i2c_itf_data_s *driver_data = g_i2c_itf_data[periph_id]; + /* + * In case of a read command sequence, TX ends first then wait on RX. + * Until then, no other transaction should occur. + */ + /* Pending transfer. */ + if (driver_data->pending->pending_repeat) { + /* FIXME: not implemented */ + __pi_i2c_handle_pending_transfer(driver_data); + } else if (driver_data->i2c_stop_send) { + __pi_i2c_send_stop_cmd(driver_data); +#ifdef CONFIG_UDMA_I2C_EOT + } else if (driver_data->i2c_eot_send){ + __pi_i2c_send_only_eot_cmd(driver_data); +#else + } else { + struct pi_task *task = __pi_i2c_cb_buf_pop(driver_data); + if (task) + __pi_irq_handle_end_of_task(task); + + task = __pi_i2c_task_fifo_pop(driver_data); + if (task) { + /* Enqueue transfer in HW fifo. */ + if (task->data[3] == RX_CHANNEL) { + __pi_i2c_copy_exec_read(driver_data, task); + } else { + __pi_i2c_copy_exec_write(driver_data, task); + } + } +#endif + } +} + +#ifdef CONFIG_UDMA_I2C_EOT +/* Some UDMA v2 peripherals support end of transfer signalling. In that case we + * signal the callback that we are done when we get this EOT information. The + * regular UDMA v2 says its done when its udma fifos are empty but this might + * not coincide with when the i2c signalling has finished. This is important + * when you try to detect slave ACK/NACKs. */ +static void __pi_i2c_eot_handler(void *arg) +{ + uint32_t event = (uint32_t)arg; + uint32_t periph_id = (event >> UDMA_CHANNEL_NB_EVENTS_LOG2) - UDMA_I2C_ID(0); + struct i2c_itf_data_s *driver_data = g_i2c_itf_data[periph_id]; + + struct pi_task *task = __pi_i2c_cb_buf_pop(driver_data); + if (task) + __pi_irq_handle_end_of_task(task); + + task = __pi_i2c_task_fifo_pop(driver_data); + if (task) { + /* Enqueue transfer in HW fifo. */ + if (task->data[3] == RX_CHANNEL) { + __pi_i2c_copy_exec_read(driver_data, task); + } else { + __pi_i2c_copy_exec_write(driver_data, task); + } + } +} +#endif + +static int32_t __pi_i2c_cb_buf_empty(struct i2c_itf_data_s *driver_data) +{ + return driver_data->buf[0] == NULL; +} + +static void __pi_i2c_cb_buf_enqueue(struct i2c_itf_data_s *driver_data, struct pi_task *task) +{ + uint32_t irq = hal_irq_disable(); + driver_data->buf[0] = task; + hal_irq_restore(irq); +} + +static struct pi_task *__pi_i2c_cb_buf_pop(struct i2c_itf_data_s *driver_data) +{ + uint32_t irq = hal_irq_disable(); + struct pi_task *task_to_return = NULL; + task_to_return = driver_data->buf[0]; + /* Free the slot for another transfer. */ + driver_data->buf[0] = NULL; + hal_irq_restore(irq); + return task_to_return; +} + +static void __pi_i2c_task_fifo_enqueue(struct i2c_itf_data_s *driver_data, struct pi_task *task) +{ + uint32_t irq = hal_irq_disable(); + /* Enqueue transfer in SW fifo. */ + if (driver_data->fifo_head == NULL) { + driver_data->fifo_head = task; + } else { + driver_data->fifo_tail->next = task; + } + driver_data->fifo_tail = task; + hal_irq_restore(irq); +} + +static struct pi_task *__pi_i2c_task_fifo_pop(struct i2c_itf_data_s *driver_data) +{ + struct pi_task *task_to_return = NULL; + uint32_t irq = hal_irq_disable(); + if (driver_data->fifo_head != NULL) { + task_to_return = driver_data->fifo_head; + driver_data->fifo_head = driver_data->fifo_head->next; + } + hal_irq_restore(irq); + return task_to_return; +} + +static uint32_t __pi_i2c_clk_div_get(uint32_t i2c_freq) +{ + /* Clock divided by 4 in HW. */ + uint32_t freq = i2c_freq << 2; + uint32_t periph_freq = pi_freq_get(PI_FREQ_DOMAIN_PERIPH); + uint32_t div = (periph_freq + freq - 1) / freq; + /* Clock divider counts from 0 to clk_div value included. */ + if (div <= 1) { + div = 0; + } else { + div -= 1; + } + if (div > 0xFFFF) { + I2C_TRACE_ERR("Error computing clock divier : Fsoc=%ld, Fi2c=%ld\n", periph_freq, + i2c_freq); + return 0xFFFFFFFF; + } + return div; +} + +static void __pi_i2c_copy_exec_read(struct i2c_itf_data_s *driver_data, struct pi_task *task) +{ + uint32_t index = 0, start_bit = 0, stop_bit = 0; + uint32_t buffer = task->data[0]; + uint32_t size = task->data[1]; + uint32_t flags = task->data[2]; + uint32_t channel = task->data[3]; + struct i2c_cs_data_s *cs_data = (struct i2c_cs_data_s *)task->data[4]; + + if (size == 0) + return; + + /* Header. */ + driver_data->i2c_cmd_seq[index++] = I2C_CMD_CFG; + driver_data->i2c_cmd_seq[index++] = ((cs_data->clk_div >> 8) & 0xFF); + driver_data->i2c_cmd_seq[index++] = (cs_data->clk_div & 0xFF); + driver_data->i2c_cmd_seq[index++] = I2C_CMD_START; + driver_data->i2c_cmd_seq[index++] = I2C_CMD_WR; + driver_data->i2c_cmd_seq[index++] = (cs_data->cs | ADDRESS_READ); + + struct i2c_pending_transfer_s *pending = driver_data->pending; + if (size > (uint32_t)MAX_SIZE) { + pending->pending_buffer = buffer; + pending->pending_repeat = (uint32_t)MAX_SIZE; + pending->pending_repeat_size = size; + // pending->device_id = driver_data->device_id; + pending->flags = flags; + pending->channel = channel; + size = (uint32_t)MAX_SIZE; + } else { + pending->pending_repeat = 0; + /* Stop bit at then end? */ + driver_data->i2c_stop_send = (flags & PI_I2C_XFER_NO_STOP) ? 0 : 1; + driver_data->i2c_eot_send = 1; + } + /* Data. */ + if (size > 1) { + driver_data->i2c_cmd_seq[index++] = I2C_CMD_RPT; + driver_data->i2c_cmd_seq[index++] = size - 1; + driver_data->i2c_cmd_seq[index++] = I2C_CMD_RD_ACK; + } + driver_data->i2c_cmd_seq[index++] = I2C_CMD_RD_NACK; + + /* Enqueue in HW fifo. */ + __pi_i2c_cb_buf_enqueue(driver_data, task); + + /* Open RX channel to receive data. */ + hal_i2c_enqueue(driver_data->device_id, RX_CHANNEL, buffer, size, + UDMA_CORE_RX_CFG_EN(1)); + /* Transfer command. */ + hal_i2c_enqueue(driver_data->device_id, TX_CHANNEL, + (uint32_t)driver_data->i2c_cmd_seq, index, UDMA_CORE_TX_CFG_EN(1)); +} + +static void __pi_i2c_copy_exec_write(struct i2c_itf_data_s *driver_data, struct pi_task *task) +{ + uint32_t index = 0, start_bit = 0, stop_bit = 0; + uint32_t buffer = task->data[0]; + uint32_t size = task->data[1]; + uint32_t flags = task->data[2]; + uint32_t channel = task->data[3]; + struct i2c_cs_data_s *cs_data = (struct i2c_cs_data_s *)task->data[4]; + start_bit = flags & PI_I2C_XFER_NO_START; + + /* Header. */ + driver_data->i2c_cmd_seq[index++] = I2C_CMD_CFG; + driver_data->i2c_cmd_seq[index++] = ((cs_data->clk_div >> 8) & 0xFF); + driver_data->i2c_cmd_seq[index++] = (cs_data->clk_div & 0xFF); + if (!start_bit) { + driver_data->i2c_cmd_seq[index++] = I2C_CMD_START; + driver_data->i2c_cmd_seq[index++] = I2C_CMD_WR; + driver_data->i2c_cmd_seq[index++] = (cs_data->cs | ADDRESS_WRITE); + } + struct i2c_pending_transfer_s *pending = driver_data->pending; + if (size > (uint32_t)MAX_SIZE) { + pending->pending_buffer = buffer; + pending->pending_repeat = (uint32_t)MAX_SIZE; + pending->pending_repeat_size = size; + // pending->device_id = driver_data->device_id; + pending->flags = flags; + pending->channel = channel; + size = (uint32_t)MAX_SIZE; + } else { + pending->pending_repeat = 0; + /* Stop bit at the end? */ + driver_data->i2c_stop_send = (flags & PI_I2C_XFER_NO_STOP) ? 0 : 1; + driver_data->i2c_eot_send = 1; + } + /* Data. */ + if (size > 0) { + driver_data->i2c_cmd_seq[index++] = I2C_CMD_RPT; + driver_data->i2c_cmd_seq[index++] = size; + driver_data->i2c_cmd_seq[index++] = I2C_CMD_WR; + } + + /* Enqueue in HW fifo. */ + __pi_i2c_cb_buf_enqueue(driver_data, task); + + /* Transfer header. */ + hal_i2c_enqueue(driver_data->device_id, TX_CHANNEL, + (uint32_t)driver_data->i2c_cmd_seq, index, UDMA_CORE_TX_CFG_EN(1)); + /* Transfer data. */ + if (size > 0) + hal_i2c_enqueue(driver_data->device_id, TX_CHANNEL, buffer, size, + UDMA_CORE_TX_CFG_EN(1)); +} + +static void __pi_i2c_cs_data_add(struct i2c_itf_data_s *driver_data, struct i2c_cs_data_s *cs_data) +{ + struct i2c_cs_data_s *head = driver_data->cs_list; + while (head != NULL) { + head = head->next; + } + head->next = cs_data; +} + +static void __pi_i2c_cs_data_remove(struct i2c_itf_data_s *driver_data, + struct i2c_cs_data_s *cs_data) +{ + struct i2c_cs_data_s *head = driver_data->cs_list; + struct i2c_cs_data_s *prev = driver_data->cs_list; + while ((head != NULL) && (head != cs_data)) { + prev = head; + hal_compiler_barrier(); + head = head->next; + } + if (head != NULL) { + prev->next = head->next; + } +} + +static void __pi_i2c_freq_cb(void *args) +{ + uint32_t irq = hal_irq_disable(); + struct i2c_itf_data_s *driver_data = (struct i2c_itf_data_s *)args; + uint32_t device_id = driver_data->device_id; + struct i2c_cs_data_s *cs_data = driver_data->cs_list; + + /* Wait until current transfer is done. */ + while (hal_i2c_busy_get(device_id)) + ; + + /* Update all clock div. */ + while (cs_data != NULL) { + cs_data->clk_div = __pi_i2c_clk_div_get(cs_data->max_baudrate); + cs_data = cs_data->next; + } + hal_irq_restore(irq); +} + +static int32_t __pi_i2c_baudrate_set(struct i2c_cs_data_s *cs_data, uint32_t new_baudrate) +{ + cs_data->max_baudrate = new_baudrate; + uint32_t clk_div = __pi_i2c_clk_div_get(cs_data->max_baudrate); + if (clk_div == 0xFFFFFFFF) { + I2C_TRACE_ERR("I2C(%d) : error computing clock divider !\n", cs_data->device_id); + return -14; + } + cs_data->clk_div = clk_div; + return 0; +} + +void __pi_i2c_conf_init(pi_i2c_conf_t *conf) +{ + conf->device = PI_DEVICE_I2C_TYPE; + conf->cs = 0; + conf->max_baudrate = 200000; + conf->itf = 0; + conf->wait_cycles = 1; + conf->ts_ch = 0; + conf->ts_evt_id = 0; +} + +int32_t __pi_i2c_open(struct pi_i2c_conf *conf, struct i2c_cs_data_s **device_data) +{ + if ((uint8_t)ARCHI_UDMA_NB_I2C < conf->itf) { + I2C_TRACE_ERR("Error : wrong interface ID, itf=%d !\n", conf->itf); + return -11; + } + + struct i2c_itf_data_s *driver_data = g_i2c_itf_data[conf->itf]; + if (driver_data == NULL) { + /* Allocate driver data. */ + driver_data = (struct i2c_itf_data_s *)pi_l2_malloc(sizeof(struct i2c_itf_data_s)); + if (driver_data == NULL) { + I2C_TRACE_ERR("Driver data alloc failed !\n"); + return -12; + } + driver_data->buf[0] = NULL; + driver_data->fifo_head = NULL; + driver_data->fifo_tail = NULL; + driver_data->pending = NULL; + driver_data->nb_open = 0; + driver_data->i2c_cmd_index = 0; + driver_data->cs_list = NULL; + for (uint32_t i = 0; i < (uint32_t)__PI_I2C_CMD_BUFF_SIZE; i++) { + driver_data->i2c_cmd_seq[i] = 0; + } + driver_data->i2c_stop_send = 0; + driver_data->i2c_eot_send = 0; + /* Set up i2c cmd stop sequence. */ + driver_data->i2c_stop_seq[0] = I2C_CMD_STOP; + driver_data->i2c_stop_seq[1] = I2C_CMD_WAIT; + driver_data->i2c_stop_seq[2] = conf->wait_cycles > 0xff ? 0xff : conf->wait_cycles; +#ifdef CONFIG_UDMA_I2C_EOT + driver_data->i2c_stop_seq[3] = I2C_CMD_EOT; + driver_data->i2c_only_eot_seq = &driver_data->i2c_stop_seq[1]; +#endif + driver_data->nb_events = 0; + driver_data->device_id = conf->itf; + /* TODO: Attach freq callback. */ + /* pi_freq_callback_init(&(driver_data->i2c_freq_cb), __pi_i2c_freq_cb, + * driver_data); */ + /* pi_freq_callback_add(&(driver_data->i2c_freq_cb)); */ + g_i2c_itf_data[conf->itf] = driver_data; + + /* Set handlers. */ + /* Enable SOC events propagation to FC. */ +#ifdef CONFIG_UDMA_I2C_EOT + pi_fc_event_handler_set(SOC_EVENT_UDMA_I2C_EOT(conf->itf), __pi_i2c_eot_handler); + hal_soc_eu_set_fc_mask(SOC_EVENT_UDMA_I2C_EOT(conf->itf)); +#endif + pi_fc_event_handler_set(SOC_EVENT_UDMA_I2C_RX(conf->itf), __pi_i2c_rx_handler); + pi_fc_event_handler_set(SOC_EVENT_UDMA_I2C_TX(conf->itf), __pi_i2c_tx_handler); + hal_soc_eu_set_fc_mask(SOC_EVENT_UDMA_I2C_RX(conf->itf)); + hal_soc_eu_set_fc_mask(SOC_EVENT_UDMA_I2C_TX(conf->itf)); + + /* Disable UDMA CG. */ + udma_init_device(UDMA_I2C_ID(conf->itf)); + + + I2C_TRACE("I2C(%d) : driver data init done.\n", driver_data->device_id); + } + + struct i2c_cs_data_s *cs_data = + (struct i2c_cs_data_s *)pi_l2_malloc(sizeof(struct i2c_cs_data_s)); + if (cs_data == NULL) { + I2C_TRACE_ERR("I2C(%ld) : cs=%d, cs_data alloc failed !\n", driver_data->device_id, + conf->cs); + return -13; + } + cs_data->device_id = conf->itf; + cs_data->cs = conf->cs; + cs_data->max_baudrate = conf->max_baudrate; + uint32_t clk_div = __pi_i2c_clk_div_get(cs_data->max_baudrate); + if (clk_div == 0xFFFFFFFF) { + pi_l2_free(cs_data, sizeof(struct i2c_cs_data_s)); + I2C_TRACE_ERR("I2C(%d) : error computing clock divider !\n", conf->itf); + return -14; + } + cs_data->clk_div = clk_div; + cs_data->next = NULL; + __pi_i2c_cs_data_add(driver_data, cs_data); + driver_data->nb_open++; + I2C_TRACE("I2C(%d) : opened %ld time(s).\n", driver_data->device_id, driver_data->nb_open); + *device_data = cs_data; + return 0; +} + +void __pi_i2c_close(struct i2c_cs_data_s *device_data) +{ + struct i2c_itf_data_s *driver_data = g_i2c_itf_data[device_data->device_id]; + __pi_i2c_cs_data_remove(driver_data, device_data); + driver_data->nb_open--; + I2C_TRACE("I2C(%d) : number of opened devices %ld.\n", driver_data->device_id, + driver_data->nb_open); + if (driver_data->nb_open == 0) { + I2C_TRACE("I2C(%d) : closing interface.\n", driver_data->device_id); + + /* TODO: Remove freq callback. */ + /* pi_freq_callback_remove(&(driver_data->i2c_freq_cb)); */ + + /* Clear allocated fifo. */ + pi_l2_free(driver_data->pending, sizeof(struct i2c_pending_transfer_s)); + pi_l2_free(driver_data, sizeof(struct i2c_itf_data_s)); + + /* Clear handlers. */ + /* Disable SOC events propagation to FC. */ +#ifdef CONFIG_UDMA_I2C_EOT + pi_fc_event_handler_clear(SOC_EVENT_UDMA_I2C_EOT(driver_data->device_id)); + hal_soc_eu_clear_fc_mask(SOC_EVENT_UDMA_I2C_EOT(driver_data->device_id)); +#endif + pi_fc_event_handler_clear(SOC_EVENT_UDMA_I2C_RX(driver_data->device_id)); + pi_fc_event_handler_clear(SOC_EVENT_UDMA_I2C_TX(driver_data->device_id)); + + hal_soc_eu_clear_fc_mask(SOC_EVENT_UDMA_I2C_RX(driver_data->device_id)); + hal_soc_eu_clear_fc_mask(SOC_EVENT_UDMA_I2C_TX(driver_data->device_id)); + + /* Enable UDMA CG. */ + udma_deinit_device(UDMA_I2C_ID(driver_data->device_id)); + + /* Free allocated struct. */ + pi_l2_free(driver_data, sizeof(struct i2c_itf_data_s)); + g_i2c_itf_data[device_data->device_id] = NULL; + } + pi_l2_free(device_data, sizeof(struct i2c_cs_data_s)); +} + +void __pi_i2c_ioctl(struct i2c_cs_data_s *device_data, uint32_t cmd, void *arg) +{ + switch (cmd) { + case PI_I2C_CTRL_SET_MAX_BAUDRATE: + __pi_i2c_baudrate_set(device_data, (uint32_t)arg); + break; + + default: + break; + } + return; +} + +void __pi_i2c_copy(struct i2c_cs_data_s *cs_data, uint32_t l2_buff, uint32_t length, + pi_i2c_xfer_flags_e flags, udma_channel_e channel, struct pi_task *task) +{ + uint32_t irq = hal_irq_disable(); + task->data[0] = l2_buff; + task->data[1] = length; + task->data[2] = flags; + task->data[3] = channel; + task->data[4] = (uint32_t)cs_data; + task->next = NULL; + struct i2c_itf_data_s *driver_data = g_i2c_itf_data[cs_data->device_id]; + int32_t slot_rxtx = __pi_i2c_cb_buf_empty(driver_data); + /* Both slots should be empty to start a new read transfer. When enqueueing + * a new read transfer, RX should be opened first then TX. So if RX is already + * in use, then wait for it to finish. */ + if (slot_rxtx == 0) { + /* Enqueue transfer in SW fifo. */ + I2C_TRACE("I2C(%d) : enqueue transfer in SW fifo : channel %d task %lx.\n", + driver_data->device_id, task->data[3], task); + __pi_i2c_task_fifo_enqueue(driver_data, task); + } else { + /* Enqueue transfer in HW fifo. */ + I2C_TRACE("I2C(%d) : enqueue transfer in HW fifo : channel %d task %lx.\n", + driver_data->device_id, task->data[3], task); + if (task->data[3] == RX_CHANNEL) { + __pi_i2c_copy_exec_read(driver_data, task); + } else { + __pi_i2c_copy_exec_write(driver_data, task); + } + } + hal_irq_restore(irq); +} + +int32_t __pi_i2c_detect(struct i2c_cs_data_s *cs_data, struct pi_i2c_conf *conf, uint8_t *rx_data, + struct pi_task *task) +{ + uint32_t irq = hal_irq_disable(); + if (cs_data->device_id != conf->itf) { + I2C_TRACE_ERR("I2C(%d) : error wrong interfaces %d - %d !\n", cs_data->device_id, + conf->itf); + hal_irq_restore(irq); + return -11; + } + struct i2c_itf_data_s *driver_data = g_i2c_itf_data[cs_data->device_id]; + uint32_t clk_div = __pi_i2c_clk_div_get(conf->max_baudrate); + if (clk_div == 0xFFFFFFFF) { + I2C_TRACE_ERR("I2C(%d) : error computing clock divider !\n", conf->itf); + hal_irq_restore(irq); + return -12; + } + uint16_t clkdiv = clk_div; + + task->next = NULL; + + uint32_t index = 0; + uint32_t buffer = (uint32_t)rx_data; + uint32_t size = 1; + + /* Header. */ + driver_data->i2c_cmd_seq[index++] = I2C_CMD_CFG; + driver_data->i2c_cmd_seq[index++] = ((clkdiv >> 8) & 0xFF); + driver_data->i2c_cmd_seq[index++] = (clkdiv & 0xFF); + driver_data->i2c_cmd_seq[index++] = I2C_CMD_START; + driver_data->i2c_cmd_seq[index++] = I2C_CMD_WR; + driver_data->i2c_cmd_seq[index++] = (conf->cs | ADDRESS_READ); + + struct i2c_pending_transfer_s *pending = driver_data->pending; + pending->pending_repeat = 0; + /* Stop bit at then end? */ + driver_data->i2c_stop_send = 1; + driver_data->i2c_eot_send = 1; + + driver_data->i2c_cmd_seq[index++] = I2C_CMD_RD_NACK; + + /* Enqueue in HW fifo. */ + __pi_i2c_cb_buf_enqueue(driver_data, task); + + /* Open RX channel to receive data. */ + hal_i2c_enqueue(driver_data->device_id, RX_CHANNEL, buffer, size, UDMA_CORE_RX_CFG_EN(1)); + /* Transfer command. */ + hal_i2c_enqueue(driver_data->device_id, TX_CHANNEL, (uint32_t)driver_data->i2c_cmd_seq, + index, UDMA_CORE_TX_CFG_EN(1)); + hal_irq_restore(irq); + return 0; +} From 5ff29c716c5888a3800fcf6b6d27335f8c8dcdd7 Mon Sep 17 00:00:00 2001 From: orlandonico Date: Tue, 14 Dec 2021 16:44:18 +0100 Subject: [PATCH 09/86] test: test async for i2c eeprom --- tests/i2c_eeprom_async/Makefile | 18 +++ .../i2c_eeprom_async/test_i2c_eeprom_async.c | 135 ++++++++++++++++++ 2 files changed, 153 insertions(+) create mode 100644 tests/i2c_eeprom_async/Makefile create mode 100644 tests/i2c_eeprom_async/test_i2c_eeprom_async.c diff --git a/tests/i2c_eeprom_async/Makefile b/tests/i2c_eeprom_async/Makefile new file mode 100644 index 00000000..ed6ac75c --- /dev/null +++ b/tests/i2c_eeprom_async/Makefile @@ -0,0 +1,18 @@ +APP = test_i2c_eeprom_async +APP_SRCS += test_i2c_eeprom_async.c + +ifdef USE_CLUSTER +APP_CFLAGS += -DCLUSTER -DNUM_CLUSTER=$(USE_CLUSTER) +ifdef NUM_CORES +APP_CFLAGS += -DNUM_CORES=$(NUM_CORES) +else +APP_CFLAGS += -DNUM_CORES=1 +endif +endif + +APP_CFLAGS += -Os -g +APP_LDFLAGS += -Os -g + +CONFIG_I2C = 1 + +include $(RULES_DIR)/pmsis_rules.mk diff --git a/tests/i2c_eeprom_async/test_i2c_eeprom_async.c b/tests/i2c_eeprom_async/test_i2c_eeprom_async.c new file mode 100644 index 00000000..35553720 --- /dev/null +++ b/tests/i2c_eeprom_async/test_i2c_eeprom_async.c @@ -0,0 +1,135 @@ +/* + * Copyright 2021 Greenwaves Technologies + * Copyright 2021 ETH Zurich + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + * nico.orlando@studio.unibo.it + */ + +/* + * Test 24FC1025 eeprom (located at i2c address 0x50 in bus 0) + */ + +#include "pmsis.h" +#include + +/* I2C device/peripheral id */ +#define I2C_DEV_ID 0 +/* I2C address of the eeprom */ +#define I2C_EEPROM_ADDR 0x50 + +static struct pi_device i2c; + +void eeprom(void) +{ + /* initalize i2c */ + struct pi_i2c_conf i2c_conf; + + printf("opening eeprom on i2c bus %d\n", I2C_DEV_ID); + + pi_i2c_conf_init(&i2c_conf); + i2c_conf.itf = I2C_DEV_ID; + i2c_conf.max_baudrate = 100000; + pi_i2c_conf_set_slave_addr(&i2c_conf, I2C_EEPROM_ADDR << 1, 0); + /* pi_i2c_conf_set_wait_cycles(conf, 2048); */ + + pi_open_from_conf(&i2c, &i2c_conf); + + if (pi_i2c_open(&i2c)) { + printf("i2c open failed\n"); + exit(1); + } + + uint8_t expected_rx[] = { + 0xca, + 0x00, + 0xde, + 0xca, + 0xc0, + 0xfe + }; + uint8_t rx[sizeof(expected_rx)] = {0}; + + uint8_t tx[] = { + 0x00, /* addr msb */ + 0x00, /* addr lsb */ + expected_rx[0], + expected_rx[1], + expected_rx[2], + expected_rx[3], + expected_rx[4], + expected_rx[5] + }; + + /* the address of our i2c eeprom is normally 0x50 if you want to + * specifically test that */ + printf("writing eeprom\n"); + + pi_task_t task_write_buffer; + printf(" task_write_buffer\n"); + pi_i2c_write_async(&i2c, tx, sizeof(tx), PI_I2C_XFER_START | PI_I2C_XFER_STOP, pi_task_block(&task_write_buffer)); + pi_task_wait_on(&task_write_buffer); + /* Wait for write to finish. It takes 5 million ns = 5 ms to finish. */ + for (volatile int i = 0; i < 100000; ++i) + i++; + + printf("reading eeprom\n"); + uint8_t eeprom_addr[] = { + 0x00, /* addr msb */ + 0x00, /* addr lsb */ + }; + + pi_task_t task_write_addr; + printf(" task_write_addr\n"); + pi_i2c_write_async(&i2c, eeprom_addr, sizeof(eeprom_addr), PI_I2C_XFER_START | PI_I2C_XFER_NO_STOP, pi_task_block(&task_write_addr)); + //pi_i2c_write(&i2c, eeprom_addr, sizeof(eeprom_addr), PI_I2C_XFER_START | PI_I2C_XFER_NO_STOP); + pi_task_t task_read_buffer; + printf(" task_read_buffer\n"); + pi_i2c_read_async(&i2c, rx, sizeof(rx), PI_I2C_XFER_START | PI_I2C_XFER_STOP, pi_task_block(&task_read_buffer)); + pi_task_wait_on(&task_write_addr); + pi_task_wait_on(&task_read_buffer); + + pi_task_destroy(&task_write_buffer); + pi_task_destroy(&task_write_addr); + pi_task_destroy(&task_read_buffer); + + printf("comparing\n"); + int error = 0; + for (int i = 0; i < sizeof(rx); i++) { + if (rx[i] != expected_rx[i]) { + printf("rx[%d]=0x%0x differs from expected rx[%d]=0x%0x\n", + i, rx[i], i, expected_rx[i]); + error++; + } else { + printf("rx[%d]=0x%0x ok\n", i, rx[i]); + } + } + if (error != 0) + exit(1); + exit(0); +} + +static void test_kickoff(void *arg) +{ + int ret = eeprom(); + pmsis_exit(ret); +} + +/* Program Entry. */ +int main(void) +{ + printf("\n\n\t *** Pulp-SDK Hello World *** \n\n"); + return pmsis_kickoff((void *)test_kickoff); +} \ No newline at end of file From f3769ee77a618ec7d5514e5f551ecb2b5477e528 Mon Sep 17 00:00:00 2001 From: orlandonico Date: Tue, 14 Dec 2021 16:47:47 +0100 Subject: [PATCH 10/86] test: Modified main of the test --- tests/i2c_eeprom_sync/test_i2c_eeprom_sync.c | 131 +++++++++++++++++++ 1 file changed, 131 insertions(+) create mode 100644 tests/i2c_eeprom_sync/test_i2c_eeprom_sync.c diff --git a/tests/i2c_eeprom_sync/test_i2c_eeprom_sync.c b/tests/i2c_eeprom_sync/test_i2c_eeprom_sync.c new file mode 100644 index 00000000..51346bcf --- /dev/null +++ b/tests/i2c_eeprom_sync/test_i2c_eeprom_sync.c @@ -0,0 +1,131 @@ +/* + * Copyright 2021 Greenwaves Technologies + * Copyright 2021 ETH Zurich + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + * nico.orlando@studio.unibo.it + */ + +/* + * Test 24FC1025 eeprom (located at i2c address 0x50 in bus 0) + */ + +#include "pmsis.h" +#include + +/* I2C device/peripheral id */ +#define I2C_DEV_ID 0 +/* I2C address of the eeprom */ +#define I2C_EEPROM_ADDR 0x50 + +static struct pi_device i2c; + +void eeprom(void) +{ + /* initalize i2c */ + struct pi_i2c_conf i2c_conf; + + printf("opening eeprom on i2c bus %d\n", I2C_DEV_ID); + + pi_i2c_conf_init(&i2c_conf); + i2c_conf.itf = I2C_DEV_ID; + i2c_conf.max_baudrate = 100000; + pi_i2c_conf_set_slave_addr(&i2c_conf, I2C_EEPROM_ADDR << 1, 0); + /* pi_i2c_conf_set_wait_cycles(conf, 2048); */ + + pi_open_from_conf(&i2c, &i2c_conf); + + if (pi_i2c_open(&i2c)) { + printf("i2c open failed\n"); + exit(1); + } + + uint8_t expected_rx[] = { + 0xca, + 0x00, + 0xde, + 0xca, + 0xc0, + 0xfe + }; + uint8_t rx[sizeof(expected_rx)] = {0}; + + uint8_t tx[] = { + 0x00, /* addr msb */ + 0x00, /* addr lsb */ + expected_rx[0], + expected_rx[1], + expected_rx[2], + expected_rx[3], + expected_rx[4], + expected_rx[5] + }; + + /* the address of our i2c eeprom is normally 0x50 if you want to + * specifically test that */ + printf("writing eeprom\n"); + int res = 0; + res = pi_i2c_write(&i2c, tx, sizeof(tx), + PI_I2C_XFER_START | PI_I2C_XFER_STOP); + if (res != PI_OK) { + printf("pi_i2c_write failed\n"); + exit(1); + } + + /* Wait for write to finish. It takes 5 million ns = 5 ms to finish. */ + for (volatile int i = 0; i < 100000; ++i) + i++; + + printf("reading eeprom\n"); + uint8_t eeprom_addr[] = { + 0x00, /* addr msb */ + 0x00, /* addr lsb */ + }; + + res = pi_i2c_write(&i2c, eeprom_addr, sizeof(eeprom_addr), + PI_I2C_XFER_START | PI_I2C_XFER_STOP); + if (res != PI_OK) { + printf("pi_i2c_write for eeprom addr failed\n"); + exit(1); + } + res = pi_i2c_read(&i2c, rx, sizeof(rx), + PI_I2C_XFER_START | PI_I2C_XFER_STOP); + if (res != PI_OK) { + printf("pi_i2c_read failed\n"); + exit(1); + } + + printf("comparing\n"); + int error = 0; + for (int i = 0; i < sizeof(rx); i++) { + if (rx[i] != expected_rx[i]) { + printf("rx[%d]=0x%0x differs from expected rx[%d]=0x%0x\n", + i, rx[i], i, expected_rx[i]); + error++; + } else { + printf("rx[%d]=0x%0x ok\n", i, rx[i]); + } + } + if (error != 0) + exit(1); + exit(0); +} + +/* Program Entry. */ +int main(void) +{ + printf("\n\n\t *** Pulp-SDK Hello World *** \n\n"); + return pmsis_kickoff((void *)eeprom); +} \ No newline at end of file From 1eecd194e98b939686450f578d57b7bfa5f4667a Mon Sep 17 00:00:00 2001 From: orlandonico Date: Tue, 14 Dec 2021 16:48:25 +0100 Subject: [PATCH 11/86] test: Modified main of the test --- tests/i2c_eeprom_async/test_i2c_eeprom_async.c | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/tests/i2c_eeprom_async/test_i2c_eeprom_async.c b/tests/i2c_eeprom_async/test_i2c_eeprom_async.c index 35553720..e7c1a385 100644 --- a/tests/i2c_eeprom_async/test_i2c_eeprom_async.c +++ b/tests/i2c_eeprom_async/test_i2c_eeprom_async.c @@ -121,15 +121,9 @@ void eeprom(void) exit(0); } -static void test_kickoff(void *arg) -{ - int ret = eeprom(); - pmsis_exit(ret); -} - /* Program Entry. */ int main(void) { printf("\n\n\t *** Pulp-SDK Hello World *** \n\n"); - return pmsis_kickoff((void *)test_kickoff); + return pmsis_kickoff((void *)eeprom); } \ No newline at end of file From 3ea2a4311a34cc182b951cf86e06eb547ea459ef Mon Sep 17 00:00:00 2001 From: orlandonico Date: Tue, 14 Dec 2021 17:02:51 +0100 Subject: [PATCH 12/86] rtos/pulpos: clock enable / disable for the peripheral --- rtos/pulpos/pulp/drivers/i2c/i2c-v2.c | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c b/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c index 7a8a5e37..5c5aa9d4 100644 --- a/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c +++ b/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c @@ -670,6 +670,8 @@ int32_t __pi_i2c_open(struct pi_i2c_conf *conf, struct i2c_cs_data_s **device_da } struct i2c_itf_data_s *driver_data = g_i2c_itf_data[conf->itf]; + unsigned char i2c_id = conf->itf; + int periph_id = ARCHI_UDMA_I2C_ID(i2c_id); if (driver_data == NULL) { /* Allocate driver data. */ driver_data = (struct i2c_itf_data_s *)pi_l2_malloc(sizeof(struct i2c_itf_data_s)); @@ -716,9 +718,7 @@ int32_t __pi_i2c_open(struct pi_i2c_conf *conf, struct i2c_cs_data_s **device_da hal_soc_eu_set_fc_mask(SOC_EVENT_UDMA_I2C_RX(conf->itf)); hal_soc_eu_set_fc_mask(SOC_EVENT_UDMA_I2C_TX(conf->itf)); - /* Disable UDMA CG. */ - udma_init_device(UDMA_I2C_ID(conf->itf)); - + plp_udma_cg_set(plp_udma_cg_get() | (1 << periph_id)); I2C_TRACE("I2C(%d) : driver data init done.\n", driver_data->device_id); } @@ -752,6 +752,8 @@ void __pi_i2c_close(struct i2c_cs_data_s *device_data) { struct i2c_itf_data_s *driver_data = g_i2c_itf_data[device_data->device_id]; __pi_i2c_cs_data_remove(driver_data, device_data); + unsigned char i2c_id = conf->itf; + int periph_id = ARCHI_UDMA_I2C_ID(i2c_id); driver_data->nb_open--; I2C_TRACE("I2C(%d) : number of opened devices %ld.\n", driver_data->device_id, driver_data->nb_open); @@ -778,7 +780,7 @@ void __pi_i2c_close(struct i2c_cs_data_s *device_data) hal_soc_eu_clear_fc_mask(SOC_EVENT_UDMA_I2C_TX(driver_data->device_id)); /* Enable UDMA CG. */ - udma_deinit_device(UDMA_I2C_ID(driver_data->device_id)); + plp_udma_cg_set(plp_udma_cg_get() & ~(1 << periph_id)); /* Free allocated struct. */ pi_l2_free(driver_data, sizeof(struct i2c_itf_data_s)); @@ -884,4 +886,4 @@ int32_t __pi_i2c_detect(struct i2c_cs_data_s *cs_data, struct pi_i2c_conf *conf, index, UDMA_CORE_TX_CFG_EN(1)); hal_irq_restore(irq); return 0; -} +} \ No newline at end of file From f4820b131221cc32f665cb9e70f1cd63946d6b91 Mon Sep 17 00:00:00 2001 From: orlandonico Date: Wed, 15 Dec 2021 11:03:41 +0100 Subject: [PATCH 13/86] rtos/pulpos: Add driver i2c.c * Use as handler of the pos_i2c_handle_copy interrupt; * Replaced hal_i2c_enqueue with plp_udma_enqueue; * I don't use pending for channels to manage transfers; --- rtos/pulpos/pulp/drivers/i2c/i2c-v2.c | 422 ++++++++++++++------------ 1 file changed, 223 insertions(+), 199 deletions(-) diff --git a/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c b/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c index 5c5aa9d4..92bd1477 100644 --- a/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c +++ b/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c @@ -44,13 +44,23 @@ /* Lenght of i2c eot subset of stop command sequence. */ #define __PI_I2C_ONLY_EOT_CMD_SIZE (3) -typedef enum { +#if defined(TRACE_I2C) +#define I2C_TRACE(...) printf +#define I2C_TRACE_ERR(...) printf +#else +#define I2C_TRACE(...) ((void)0) +#define I2C_TRACE_ERR(...) ((void)0) +#endif /* TRACE_I2C */ + +typedef enum +{ RX_CHANNEL = 0, TX_CHANNEL = 1, COMMAND_CHANNEL = 2 } udma_channel_e; -struct i2c_pending_transfer_s { +struct i2c_pending_transfer_s +{ uint32_t pending_buffer; uint32_t pending_size; uint32_t pending_repeat; @@ -60,42 +70,56 @@ struct i2c_pending_transfer_s { udma_channel_e channel; }; -struct i2c_cs_data_s { - uint8_t device_id; /*!< I2C interface ID. */ - uint8_t cs; /*!< Chip select i2c device. */ - uint16_t clk_div; /*!< Clock divider for the selected i2c chip. */ - uint32_t max_baudrate; /*!< Max baudrate for the selected i2c chip. */ +struct i2c_cs_data_s +{ + uint8_t device_id; /*!< I2C interface ID. */ + uint8_t cs; /*!< Chip select i2c device. */ + uint16_t clk_div; /*!< Clock divider for the selected i2c chip. */ + uint32_t max_baudrate; /*!< Max baudrate for the selected i2c chip. */ struct i2c_cs_data_s *next; /*!< Pointer to next i2c cs data struct. */ }; -struct i2c_itf_data_s { +struct i2c_itf_data_s +{ /* Best to use only one queue since both RX & TX can be used at the same time. */ - struct pi_task *buf[2]; /*!< RX + TX */ - struct pi_task *fifo_head; /*!< Head of SW fifo waiting transfers. */ - struct pi_task *fifo_tail; /*!< Tail of SW fifo waiting transfers. */ + struct pi_task *buf[2]; /*!< RX + TX */ + struct pi_task *fifo_head; /*!< Head of SW fifo waiting transfers. */ + struct pi_task *fifo_tail; /*!< Tail of SW fifo waiting transfers. */ struct i2c_pending_transfer_s *pending; /*!< RX + TX. */ - uint32_t nb_open; /*!< Number of devices opened. */ - uint32_t i2c_cmd_index; /*!< Number of commands in i2c_cmd_seq. */ + uint32_t nb_open; /*!< Number of devices opened. */ + uint32_t i2c_cmd_index; /*!< Number of commands in i2c_cmd_seq. */ /* pi_freq_cb_t i2c_freq_cb; /\*!< Callback associated to frequency changes. *\/ */ - struct i2c_cs_data_s *cs_list; /*!< List of i2c associated to this itf. */ + struct i2c_cs_data_s *cs_list; /*!< List of i2c associated to this itf. */ uint8_t i2c_cmd_seq[__PI_I2C_CMD_BUFF_SIZE]; /*!< Command sequence. */ - uint8_t i2c_stop_send; /*!< Set if a stop cmd seq should be sent. */ + uint8_t i2c_stop_send; /*!< Set if a stop cmd seq should be sent. */ uint8_t i2c_stop_seq[__PI_I2C_STOP_CMD_SIZE]; /*!< Command STOP sequence. */ - uint8_t i2c_eot_send; /*!< Set if a eot cmd seq should be sent. */ - uint8_t* i2c_only_eot_seq; /*!< Only EOT sequence part of of STOP sequence */ - uint8_t device_id; /*!< I2C interface ID. */ + uint8_t i2c_eot_send; /*!< Set if a eot cmd seq should be sent. */ + uint8_t *i2c_only_eot_seq; /*!< Only EOT sequence part of of STOP sequence */ + uint8_t device_id; /*!< I2C interface ID. */ /* This variable is used to count number of events received to handle EoT sequence. */ uint8_t nb_events; /*!< Number of events received. */ + pos_udma_channel_t *rx_channel; + pos_udma_channel_t *tx_channel; }; /* Defines for read & write adress access. */ #define ADDRESS_WRITE 0x0 -#define ADDRESS_READ 0x1 +#define ADDRESS_READ 0x1 /* Max length of a i2c request/data buffer. */ #define MAX_SIZE (0xFF) +#define UDMA_EVENT_OFFSET_RX (0) +#define UDMA_EVENT_OFFSET_TX (1) + +#define SOC_EVENT_UDMA_I2C_RX(id) \ + ((ARCHI_UDMA_I2C_ID(id) << ARCHI_SOC_EVENT_UDMA_NB_CHANNEL_EVT_LOG2) + \ + UDMA_EVENT_OFFSET_RX) +#define SOC_EVENT_UDMA_I2C_TX(id) \ + ((ARCHI_UDMA_I2C_ID(id) << ARCHI_SOC_EVENT_UDMA_NB_CHANNEL_EVT_LOG2) + \ + UDMA_EVENT_OFFSET_TX) + static struct i2c_itf_data_s *g_i2c_itf_data[ARCHI_UDMA_NB_I2C] = {NULL}; /* IRQ handler. */ @@ -109,7 +133,7 @@ static void __pi_i2c_cs_data_add(struct i2c_itf_data_s *driver_data, struct i2c_ /* Remove a cs_data from list of opened devices. */ static void __pi_i2c_cs_data_remove(struct i2c_itf_data_s *driver_data, - struct i2c_cs_data_s *cs_data); + struct i2c_cs_data_s *cs_data); /* Handle a pending transfer after end of previous part of transfer. */ static void __pi_i2c_handle_pending_transfer(struct i2c_itf_data_s *driver_data); @@ -158,11 +182,11 @@ void __pi_i2c_ioctl(struct i2c_cs_data_s *device_data, uint32_t cmd, void *arg); /* Copy in UDMA. */ void __pi_i2c_copy(struct i2c_cs_data_s *cs_data, uint32_t l2_buff, uint32_t length, - pi_i2c_xfer_flags_e flags, udma_channel_e channel, struct pi_task *task); + pi_i2c_xfer_flags_e flags, udma_channel_e channel, struct pi_task *task); /* Scan i2c bus to detect connected devices. */ int32_t __pi_i2c_detect(struct i2c_cs_data_s *cs_data, struct pi_i2c_conf *conf, uint8_t *rx_data, - struct pi_task *task); + struct pi_task *task); void pi_i2c_conf_init(pi_i2c_conf_t *conf) { @@ -170,7 +194,7 @@ void pi_i2c_conf_init(pi_i2c_conf_t *conf) } void pi_i2c_conf_set_slave_addr(struct pi_i2c_conf *conf, uint16_t slave_addr, - int8_t is_10_bits) + int8_t is_10_bits) { conf->cs = slave_addr; conf->is_10_bits = is_10_bits; @@ -183,14 +207,15 @@ int pi_i2c_open(struct pi_device *device) I2C_TRACE("Open device id=%d\n", conf->itf); status = __pi_i2c_open(conf, (struct i2c_cs_data_s **)&(device->data)); I2C_TRACE("Open status : %ld, driver data: %lx\n", status, - (struct i2c_cs_data_s *)device->data); + (struct i2c_cs_data_s *)device->data); return status; } void pi_i2c_close(struct pi_device *device) { struct i2c_cs_data_s *device_data = (struct i2c_cs_data_s *)device->data; - if (device_data != NULL) { + if (device_data != NULL) + { I2C_TRACE("Close device id=%d\n", device_data->device_id); __pi_i2c_close(device_data); device->data = NULL; @@ -200,44 +225,31 @@ void pi_i2c_close(struct pi_device *device) void pi_i2c_ioctl(struct pi_device *device, uint32_t cmd, void *arg) { struct i2c_cs_data_s *device_data = (struct i2c_cs_data_s *)device->data; - if (device_data != NULL) { + if (device_data != NULL) + { I2C_TRACE("Ioctl command : %lx, arg %lx\n", cmd, arg); __pi_i2c_ioctl(device_data, cmd, arg); } } -#define MUTEX 1 int pi_i2c_read(struct pi_device *device, uint8_t *rx_buff, int length, pi_i2c_xfer_flags_e flags) { int status = PI_OK; pi_task_t task_block; -#if MUTEX pi_task_block(&task_block); pi_i2c_read_async(device, rx_buff, length, flags, &task_block); pi_task_wait_on(&task_block); pi_task_destroy(&task_block); -#else - pi_task_block_no_mutex(&task_block); - pi_i2c_read_async(device, rx_buff, length, flags, &task_block); - pi_task_wait_on_no_mutex(&task_block); -#endif - /* only some udma i2c peripherals support ack detection */ -#ifdef CONFIG_UDMA_I2C_ACK - struct i2c_cs_data_s *device_data = (struct i2c_cs_data_s *)device->data; - if (REG_GET(I2C_ACK_NACK, i2c_ack_get(device_data->device_id))) - status = PI_ERR_I2C_NACK; -#endif - return status; } void pi_i2c_read_async(struct pi_device *device, uint8_t *rx_buff, int length, - pi_i2c_xfer_flags_e flags, pi_task_t *task) + pi_i2c_xfer_flags_e flags, pi_task_t *task) { struct i2c_cs_data_s *device_data = (struct i2c_cs_data_s *)device->data; udma_channel_e channel = RX_CHANNEL; I2C_TRACE("I2C(%d) : transfer %d %lx %ld %lx, task %lx\n", device_data->device_id, channel, - (uint32_t)rx_buff, length, flags, task); + (uint32_t)rx_buff, length, flags, task); __pi_i2c_copy(device_data, (uint32_t)rx_buff, length, flags, channel, task); } @@ -245,32 +257,20 @@ int pi_i2c_write(struct pi_device *device, uint8_t *tx_data, int length, pi_i2c_ { int status = PI_OK; pi_task_t task_block; -#if MUTEX pi_task_block(&task_block); pi_i2c_write_async(device, tx_data, length, flags, &task_block); pi_task_wait_on(&task_block); pi_task_destroy(&task_block); -#else - pi_task_block_no_mutex(&task_block); - pi_i2c_write_async(device, tx_data, length, flags, &task_block); - pi_task_wait_on_no_mutex(&task_block); -#endif - /* only some udma i2c peripherals support ack detection */ -#ifdef CONFIG_UDMA_I2C_ACK - struct i2c_cs_data_s *device_data = (struct i2c_cs_data_s *)device->data; - if (REG_GET(I2C_ACK_NACK, i2c_ack_get(device_data->device_id))) - status = PI_ERR_I2C_NACK; -#endif return status; } void pi_i2c_write_async(struct pi_device *device, uint8_t *tx_data, int length, - pi_i2c_xfer_flags_e flags, pi_task_t *task) + pi_i2c_xfer_flags_e flags, pi_task_t *task) { struct i2c_cs_data_s *device_data = (struct i2c_cs_data_s *)device->data; udma_channel_e channel = TX_CHANNEL; I2C_TRACE("I2C(%d) : transfer %d %lx %ld %lx, task %lx\n", device_data->device_id, channel, - (uint32_t)tx_data, length, flags, task); + (uint32_t)tx_data, length, flags, task); __pi_i2c_copy(device_data, (uint32_t)tx_data, length, flags, channel, task); } @@ -302,7 +302,8 @@ static void __pi_i2c_handle_pending_transfer(struct i2c_itf_data_s *driver_data) pending->pending_repeat_size -= pending->pending_repeat; pending->pending_size = pending->pending_repeat; - if (pending->pending_repeat_size <= pending->pending_repeat) { + if (pending->pending_repeat_size <= pending->pending_repeat) + { pending->pending_repeat = 0; pending->pending_size = pending->pending_repeat_size; /* Stop bit at the end? */ @@ -324,20 +325,14 @@ static void __pi_i2c_send_stop_cmd(struct i2c_itf_data_s *driver_data) { driver_data->i2c_stop_send = 0; driver_data->i2c_eot_send = 0; - hal_i2c_enqueue(driver_data->device_id, TX_CHANNEL, (uint32_t)driver_data->i2c_stop_seq, - (uint32_t)__PI_I2C_STOP_CMD_SIZE, UDMA_CORE_TX_CFG_EN(1)); -} - -static void __pi_i2c_send_only_eot_cmd(struct i2c_itf_data_s *driver_data) -{ - driver_data->i2c_eot_send = 0; - hal_i2c_enqueue(driver_data->device_id, TX_CHANNEL, (uint32_t)driver_data->i2c_only_eot_seq, - (uint32_t)__PI_I2C_ONLY_EOT_CMD_SIZE, UDMA_CORE_TX_CFG_EN(1)); + plp_udma_enqueue(UDMA_I2C_CMD_ADDR(driver_data->device_id), (uint32_t)driver_data->i2c_stop_seq, + (uint32_t)__PI_I2C_STOP_CMD_SIZE, (UDMA_CHANNEL_CFG_EN | UDMA_CHANNEL_CFG_SIZE_8)); } static inline void __pi_irq_handle_end_of_task(pi_task_t *task) { - switch (task->id) { + switch (task->id) + { case PI_TASK_NONE_ID: pi_task_release(task); break; @@ -351,79 +346,48 @@ static inline void __pi_irq_handle_end_of_task(pi_task_t *task) } } -static void __pi_i2c_rx_handler(void *arg) +void __pi_i2c_rx_handler(int event, void *arg) { + printf("__pi_i2c_rx_handler\n"); } -static void __pi_i2c_tx_handler(void *arg) +void __pi_i2c_tx_handler(int event, void *arg) { - uint32_t event = (uint32_t)arg; - uint32_t periph_id = (event >> ARCHI_SOC_EVENT_UDMA_NB_CHANNEL_EVT_LOG2) - UDMA_I2C_ID(0); + printf("__pi_i2c_tx_handler\n"); + uint32_t evt = (uint32_t)event; + uint32_t periph_id = (0); struct i2c_itf_data_s *driver_data = g_i2c_itf_data[periph_id]; - /* - * In case of a read command sequence, TX ends first then wait on RX. - * Until then, no other transaction should occur. - */ - /* Pending transfer. */ - if (driver_data->pending->pending_repeat) { - /* FIXME: not implemented */ - __pi_i2c_handle_pending_transfer(driver_data); - } else if (driver_data->i2c_stop_send) { + + if (driver_data->i2c_stop_send) + { __pi_i2c_send_stop_cmd(driver_data); -#ifdef CONFIG_UDMA_I2C_EOT - } else if (driver_data->i2c_eot_send){ - __pi_i2c_send_only_eot_cmd(driver_data); -#else - } else { + } + else + { struct pi_task *task = __pi_i2c_cb_buf_pop(driver_data); if (task) - __pi_irq_handle_end_of_task(task); + pos_task_push_locked(task); task = __pi_i2c_task_fifo_pop(driver_data); - if (task) { + if (task) + { /* Enqueue transfer in HW fifo. */ - if (task->data[3] == RX_CHANNEL) { + if (task->data[3] == RX_CHANNEL) + { __pi_i2c_copy_exec_read(driver_data, task); - } else { + } + else + { __pi_i2c_copy_exec_write(driver_data, task); } } -#endif - } -} - -#ifdef CONFIG_UDMA_I2C_EOT -/* Some UDMA v2 peripherals support end of transfer signalling. In that case we - * signal the callback that we are done when we get this EOT information. The - * regular UDMA v2 says its done when its udma fifos are empty but this might - * not coincide with when the i2c signalling has finished. This is important - * when you try to detect slave ACK/NACKs. */ -static void __pi_i2c_eot_handler(void *arg) -{ - uint32_t event = (uint32_t)arg; - uint32_t periph_id = (event >> UDMA_CHANNEL_NB_EVENTS_LOG2) - UDMA_I2C_ID(0); - struct i2c_itf_data_s *driver_data = g_i2c_itf_data[periph_id]; - - struct pi_task *task = __pi_i2c_cb_buf_pop(driver_data); - if (task) - __pi_irq_handle_end_of_task(task); - - task = __pi_i2c_task_fifo_pop(driver_data); - if (task) { - /* Enqueue transfer in HW fifo. */ - if (task->data[3] == RX_CHANNEL) { - __pi_i2c_copy_exec_read(driver_data, task); - } else { - __pi_i2c_copy_exec_write(driver_data, task); - } } } -#endif static int32_t __pi_i2c_cb_buf_empty(struct i2c_itf_data_s *driver_data) { - return driver_data->buf[0] == NULL; + return driver_data->buf[0] == NULL; } static void __pi_i2c_cb_buf_enqueue(struct i2c_itf_data_s *driver_data, struct pi_task *task) @@ -448,9 +412,12 @@ static void __pi_i2c_task_fifo_enqueue(struct i2c_itf_data_s *driver_data, struc { uint32_t irq = hal_irq_disable(); /* Enqueue transfer in SW fifo. */ - if (driver_data->fifo_head == NULL) { + if (driver_data->fifo_head == NULL) + { driver_data->fifo_head = task; - } else { + } + else + { driver_data->fifo_tail->next = task; } driver_data->fifo_tail = task; @@ -461,7 +428,8 @@ static struct pi_task *__pi_i2c_task_fifo_pop(struct i2c_itf_data_s *driver_data { struct pi_task *task_to_return = NULL; uint32_t irq = hal_irq_disable(); - if (driver_data->fifo_head != NULL) { + if (driver_data->fifo_head != NULL) + { task_to_return = driver_data->fifo_head; driver_data->fifo_head = driver_data->fifo_head->next; } @@ -476,14 +444,18 @@ static uint32_t __pi_i2c_clk_div_get(uint32_t i2c_freq) uint32_t periph_freq = pi_freq_get(PI_FREQ_DOMAIN_PERIPH); uint32_t div = (periph_freq + freq - 1) / freq; /* Clock divider counts from 0 to clk_div value included. */ - if (div <= 1) { + if (div <= 1) + { div = 0; - } else { + } + else + { div -= 1; } - if (div > 0xFFFF) { + if (div > 0xFFFF) + { I2C_TRACE_ERR("Error computing clock divier : Fsoc=%ld, Fi2c=%ld\n", periph_freq, - i2c_freq); + i2c_freq); return 0xFFFFFFFF; } return div; @@ -510,7 +482,8 @@ static void __pi_i2c_copy_exec_read(struct i2c_itf_data_s *driver_data, struct p driver_data->i2c_cmd_seq[index++] = (cs_data->cs | ADDRESS_READ); struct i2c_pending_transfer_s *pending = driver_data->pending; - if (size > (uint32_t)MAX_SIZE) { + if (size > (uint32_t)MAX_SIZE) + { pending->pending_buffer = buffer; pending->pending_repeat = (uint32_t)MAX_SIZE; pending->pending_repeat_size = size; @@ -518,14 +491,17 @@ static void __pi_i2c_copy_exec_read(struct i2c_itf_data_s *driver_data, struct p pending->flags = flags; pending->channel = channel; size = (uint32_t)MAX_SIZE; - } else { + } + else + { pending->pending_repeat = 0; /* Stop bit at then end? */ driver_data->i2c_stop_send = (flags & PI_I2C_XFER_NO_STOP) ? 0 : 1; driver_data->i2c_eot_send = 1; } /* Data. */ - if (size > 1) { + if (size > 1) + { driver_data->i2c_cmd_seq[index++] = I2C_CMD_RPT; driver_data->i2c_cmd_seq[index++] = size - 1; driver_data->i2c_cmd_seq[index++] = I2C_CMD_RD_ACK; @@ -536,11 +512,9 @@ static void __pi_i2c_copy_exec_read(struct i2c_itf_data_s *driver_data, struct p __pi_i2c_cb_buf_enqueue(driver_data, task); /* Open RX channel to receive data. */ - hal_i2c_enqueue(driver_data->device_id, RX_CHANNEL, buffer, size, - UDMA_CORE_RX_CFG_EN(1)); + plp_udma_enqueue(UDMA_I2C_DATA_ADDR(driver_data->device_id), (uint32_t)buffer, size, (UDMA_CHANNEL_CFG_EN | UDMA_CHANNEL_CFG_SIZE_8)); /* Transfer command. */ - hal_i2c_enqueue(driver_data->device_id, TX_CHANNEL, - (uint32_t)driver_data->i2c_cmd_seq, index, UDMA_CORE_TX_CFG_EN(1)); + plp_udma_enqueue(UDMA_I2C_CMD_ADDR(driver_data->device_id), (uint32_t)driver_data->i2c_cmd_seq, index, (UDMA_CHANNEL_CFG_EN | UDMA_CHANNEL_CFG_SIZE_8)); } static void __pi_i2c_copy_exec_write(struct i2c_itf_data_s *driver_data, struct pi_task *task) @@ -557,13 +531,15 @@ static void __pi_i2c_copy_exec_write(struct i2c_itf_data_s *driver_data, struct driver_data->i2c_cmd_seq[index++] = I2C_CMD_CFG; driver_data->i2c_cmd_seq[index++] = ((cs_data->clk_div >> 8) & 0xFF); driver_data->i2c_cmd_seq[index++] = (cs_data->clk_div & 0xFF); - if (!start_bit) { + if (!start_bit) + { driver_data->i2c_cmd_seq[index++] = I2C_CMD_START; driver_data->i2c_cmd_seq[index++] = I2C_CMD_WR; driver_data->i2c_cmd_seq[index++] = (cs_data->cs | ADDRESS_WRITE); } struct i2c_pending_transfer_s *pending = driver_data->pending; - if (size > (uint32_t)MAX_SIZE) { + if (size > (uint32_t)MAX_SIZE) + { pending->pending_buffer = buffer; pending->pending_repeat = (uint32_t)MAX_SIZE; pending->pending_repeat_size = size; @@ -571,14 +547,17 @@ static void __pi_i2c_copy_exec_write(struct i2c_itf_data_s *driver_data, struct pending->flags = flags; pending->channel = channel; size = (uint32_t)MAX_SIZE; - } else { + } + else + { pending->pending_repeat = 0; /* Stop bit at the end? */ driver_data->i2c_stop_send = (flags & PI_I2C_XFER_NO_STOP) ? 0 : 1; driver_data->i2c_eot_send = 1; } /* Data. */ - if (size > 0) { + if (size > 0) + { driver_data->i2c_cmd_seq[index++] = I2C_CMD_RPT; driver_data->i2c_cmd_seq[index++] = size; driver_data->i2c_cmd_seq[index++] = I2C_CMD_WR; @@ -588,34 +567,35 @@ static void __pi_i2c_copy_exec_write(struct i2c_itf_data_s *driver_data, struct __pi_i2c_cb_buf_enqueue(driver_data, task); /* Transfer header. */ - hal_i2c_enqueue(driver_data->device_id, TX_CHANNEL, - (uint32_t)driver_data->i2c_cmd_seq, index, UDMA_CORE_TX_CFG_EN(1)); + plp_udma_enqueue(UDMA_I2C_CMD_ADDR(driver_data->device_id), (uint32_t)driver_data->i2c_cmd_seq, index, (UDMA_CHANNEL_CFG_EN | UDMA_CHANNEL_CFG_SIZE_8)); /* Transfer data. */ if (size > 0) - hal_i2c_enqueue(driver_data->device_id, TX_CHANNEL, buffer, size, - UDMA_CORE_TX_CFG_EN(1)); + plp_udma_enqueue(UDMA_I2C_CMD_ADDR(driver_data->device_id), (uint32_t)buffer, size, (UDMA_CHANNEL_CFG_EN | UDMA_CHANNEL_CFG_SIZE_8)); } static void __pi_i2c_cs_data_add(struct i2c_itf_data_s *driver_data, struct i2c_cs_data_s *cs_data) { struct i2c_cs_data_s *head = driver_data->cs_list; - while (head != NULL) { + while (head != NULL) + { head = head->next; } head->next = cs_data; } static void __pi_i2c_cs_data_remove(struct i2c_itf_data_s *driver_data, - struct i2c_cs_data_s *cs_data) + struct i2c_cs_data_s *cs_data) { struct i2c_cs_data_s *head = driver_data->cs_list; struct i2c_cs_data_s *prev = driver_data->cs_list; - while ((head != NULL) && (head != cs_data)) { + while ((head != NULL) && (head != cs_data)) + { prev = head; hal_compiler_barrier(); head = head->next; } - if (head != NULL) { + if (head != NULL) + { prev->next = head->next; } } @@ -628,11 +608,12 @@ static void __pi_i2c_freq_cb(void *args) struct i2c_cs_data_s *cs_data = driver_data->cs_list; /* Wait until current transfer is done. */ - while (hal_i2c_busy_get(device_id)) - ; + while (plp_udma_busy(UDMA_I2C_DATA_ADDR(driver_data->device_id))); + while (plp_udma_busy(UDMA_I2C_CMD_ADDR(driver_data->device_id))); /* Update all clock div. */ - while (cs_data != NULL) { + while (cs_data != NULL) + { cs_data->clk_div = __pi_i2c_clk_div_get(cs_data->max_baudrate); cs_data = cs_data->next; } @@ -643,7 +624,8 @@ static int32_t __pi_i2c_baudrate_set(struct i2c_cs_data_s *cs_data, uint32_t new { cs_data->max_baudrate = new_baudrate; uint32_t clk_div = __pi_i2c_clk_div_get(cs_data->max_baudrate); - if (clk_div == 0xFFFFFFFF) { + if (clk_div == 0xFFFFFFFF) + { I2C_TRACE_ERR("I2C(%d) : error computing clock divider !\n", cs_data->device_id); return -14; } @@ -662,20 +644,53 @@ void __pi_i2c_conf_init(pi_i2c_conf_t *conf) conf->ts_evt_id = 0; } +void pos_i2c_handle_copy(int event, void *arg) +{ + printf("pos_i2c_handle_copy"); + pos_udma_channel_t *channel = arg; + pi_task_t *pending_0 = channel->pendings[0]; + uint8_t type_channel = pending_0->data[3]; + if (type_channel == RX_CHANNEL) + { + __pi_i2c_rx_handler(event, &arg); + } + else if (type_channel == TX_CHANNEL) + { + __pi_i2c_tx_handler(event, &arg); + } + else + { + printf("error pos_spi_handle_copy"); + exit(0); + } +} + +void pos_i2c_create_channel(pos_udma_channel_t *channel, int channel_id, int soc_event) +{ + pos_soc_event_register_callback(soc_event, pos_i2c_handle_copy, (void *)channel); + channel->pendings[0] = NULL; + channel->pendings[1] = NULL; + channel->waitings_first = NULL; + channel->base = 0; +} + int32_t __pi_i2c_open(struct pi_i2c_conf *conf, struct i2c_cs_data_s **device_data) { - if ((uint8_t)ARCHI_UDMA_NB_I2C < conf->itf) { + if ((uint8_t)ARCHI_UDMA_NB_I2C < conf->itf) + { I2C_TRACE_ERR("Error : wrong interface ID, itf=%d !\n", conf->itf); return -11; } struct i2c_itf_data_s *driver_data = g_i2c_itf_data[conf->itf]; - unsigned char i2c_id = conf->itf; + unsigned char i2c_id = conf->itf; int periph_id = ARCHI_UDMA_I2C_ID(i2c_id); - if (driver_data == NULL) { + if (driver_data == NULL) + { /* Allocate driver data. */ driver_data = (struct i2c_itf_data_s *)pi_l2_malloc(sizeof(struct i2c_itf_data_s)); - if (driver_data == NULL) { + if (driver_data == NULL) + { I2C_TRACE_ERR("Driver data alloc failed !\n"); return -12; } @@ -686,7 +701,8 @@ int32_t __pi_i2c_open(struct pi_i2c_conf *conf, struct i2c_cs_data_s **device_da driver_data->nb_open = 0; driver_data->i2c_cmd_index = 0; driver_data->cs_list = NULL; - for (uint32_t i = 0; i < (uint32_t)__PI_I2C_CMD_BUFF_SIZE; i++) { + for (uint32_t i = 0; i < (uint32_t)__PI_I2C_CMD_BUFF_SIZE; i++) + { driver_data->i2c_cmd_seq[i] = 0; } driver_data->i2c_stop_send = 0; @@ -695,10 +711,7 @@ int32_t __pi_i2c_open(struct pi_i2c_conf *conf, struct i2c_cs_data_s **device_da driver_data->i2c_stop_seq[0] = I2C_CMD_STOP; driver_data->i2c_stop_seq[1] = I2C_CMD_WAIT; driver_data->i2c_stop_seq[2] = conf->wait_cycles > 0xff ? 0xff : conf->wait_cycles; -#ifdef CONFIG_UDMA_I2C_EOT - driver_data->i2c_stop_seq[3] = I2C_CMD_EOT; - driver_data->i2c_only_eot_seq = &driver_data->i2c_stop_seq[1]; -#endif + driver_data->nb_events = 0; driver_data->device_id = conf->itf; /* TODO: Attach freq callback. */ @@ -709,32 +722,36 @@ int32_t __pi_i2c_open(struct pi_i2c_conf *conf, struct i2c_cs_data_s **device_da /* Set handlers. */ /* Enable SOC events propagation to FC. */ -#ifdef CONFIG_UDMA_I2C_EOT - pi_fc_event_handler_set(SOC_EVENT_UDMA_I2C_EOT(conf->itf), __pi_i2c_eot_handler); - hal_soc_eu_set_fc_mask(SOC_EVENT_UDMA_I2C_EOT(conf->itf)); -#endif - pi_fc_event_handler_set(SOC_EVENT_UDMA_I2C_RX(conf->itf), __pi_i2c_rx_handler); - pi_fc_event_handler_set(SOC_EVENT_UDMA_I2C_TX(conf->itf), __pi_i2c_tx_handler); - hal_soc_eu_set_fc_mask(SOC_EVENT_UDMA_I2C_RX(conf->itf)); - hal_soc_eu_set_fc_mask(SOC_EVENT_UDMA_I2C_TX(conf->itf)); + if (driver_data->nb_open == 0) + { + pos_i2c_create_channel(driver_data->rx_channel, UDMA_CHANNEL_ID(periph_id), SOC_EVENT_UDMA_I2C_RX(driver_data->device_id)); + pos_i2c_create_channel(driver_data->tx_channel, UDMA_CHANNEL_ID(periph_id) + 1, SOC_EVENT_UDMA_I2C_TX(driver_data->device_id)); + driver_data->rx_channel->base = i2c_id; // way to save me the spi interface which is associated with the channel + driver_data->tx_channel->base = i2c_id; // way to save me the spi interface which is associated with the channel + } - plp_udma_cg_set(plp_udma_cg_get() | (1 << periph_id)); + soc_eu_fcEventMask_setEvent(SOC_EVENT_UDMA_I2C_RX(driver_data->device_id)); + soc_eu_fcEventMask_setEvent(SOC_EVENT_UDMA_I2C_TX(driver_data->device_id)); - I2C_TRACE("I2C(%d) : driver data init done.\n", driver_data->device_id); + plp_udma_cg_set(plp_udma_cg_get() | (1 << periph_id)); } + I2C_TRACE("I2C(%d) : driver data init done.\n", driver_data->device_id); + struct i2c_cs_data_s *cs_data = (struct i2c_cs_data_s *)pi_l2_malloc(sizeof(struct i2c_cs_data_s)); - if (cs_data == NULL) { + if (cs_data == NULL) + { I2C_TRACE_ERR("I2C(%ld) : cs=%d, cs_data alloc failed !\n", driver_data->device_id, - conf->cs); + conf->cs); return -13; } cs_data->device_id = conf->itf; cs_data->cs = conf->cs; cs_data->max_baudrate = conf->max_baudrate; uint32_t clk_div = __pi_i2c_clk_div_get(cs_data->max_baudrate); - if (clk_div == 0xFFFFFFFF) { + if (clk_div == 0xFFFFFFFF) + { pi_l2_free(cs_data, sizeof(struct i2c_cs_data_s)); I2C_TRACE_ERR("I2C(%d) : error computing clock divider !\n", conf->itf); return -14; @@ -751,13 +768,14 @@ int32_t __pi_i2c_open(struct pi_i2c_conf *conf, struct i2c_cs_data_s **device_da void __pi_i2c_close(struct i2c_cs_data_s *device_data) { struct i2c_itf_data_s *driver_data = g_i2c_itf_data[device_data->device_id]; - __pi_i2c_cs_data_remove(driver_data, device_data); - unsigned char i2c_id = conf->itf; + unsigned char i2c_id = device_data->device_id; int periph_id = ARCHI_UDMA_I2C_ID(i2c_id); + __pi_i2c_cs_data_remove(driver_data, device_data); driver_data->nb_open--; I2C_TRACE("I2C(%d) : number of opened devices %ld.\n", driver_data->device_id, - driver_data->nb_open); - if (driver_data->nb_open == 0) { + driver_data->nb_open); + if (driver_data->nb_open == 0) + { I2C_TRACE("I2C(%d) : closing interface.\n", driver_data->device_id); /* TODO: Remove freq callback. */ @@ -769,15 +787,8 @@ void __pi_i2c_close(struct i2c_cs_data_s *device_data) /* Clear handlers. */ /* Disable SOC events propagation to FC. */ -#ifdef CONFIG_UDMA_I2C_EOT - pi_fc_event_handler_clear(SOC_EVENT_UDMA_I2C_EOT(driver_data->device_id)); - hal_soc_eu_clear_fc_mask(SOC_EVENT_UDMA_I2C_EOT(driver_data->device_id)); -#endif - pi_fc_event_handler_clear(SOC_EVENT_UDMA_I2C_RX(driver_data->device_id)); - pi_fc_event_handler_clear(SOC_EVENT_UDMA_I2C_TX(driver_data->device_id)); - - hal_soc_eu_clear_fc_mask(SOC_EVENT_UDMA_I2C_RX(driver_data->device_id)); - hal_soc_eu_clear_fc_mask(SOC_EVENT_UDMA_I2C_TX(driver_data->device_id)); + soc_eu_fcEventMask_clearEvent(SOC_EVENT_UDMA_I2C_RX(driver_data->device_id)); + soc_eu_fcEventMask_clearEvent(SOC_EVENT_UDMA_I2C_TX(driver_data->device_id)); /* Enable UDMA CG. */ plp_udma_cg_set(plp_udma_cg_get() & ~(1 << periph_id)); @@ -791,7 +802,8 @@ void __pi_i2c_close(struct i2c_cs_data_s *device_data) void __pi_i2c_ioctl(struct i2c_cs_data_s *device_data, uint32_t cmd, void *arg) { - switch (cmd) { + switch (cmd) + { case PI_I2C_CTRL_SET_MAX_BAUDRATE: __pi_i2c_baudrate_set(device_data, (uint32_t)arg); break; @@ -803,7 +815,7 @@ void __pi_i2c_ioctl(struct i2c_cs_data_s *device_data, uint32_t cmd, void *arg) } void __pi_i2c_copy(struct i2c_cs_data_s *cs_data, uint32_t l2_buff, uint32_t length, - pi_i2c_xfer_flags_e flags, udma_channel_e channel, struct pi_task *task) + pi_i2c_xfer_flags_e flags, udma_channel_e channel, struct pi_task *task) { uint32_t irq = hal_irq_disable(); task->data[0] = l2_buff; @@ -817,18 +829,26 @@ void __pi_i2c_copy(struct i2c_cs_data_s *cs_data, uint32_t l2_buff, uint32_t len /* Both slots should be empty to start a new read transfer. When enqueueing * a new read transfer, RX should be opened first then TX. So if RX is already * in use, then wait for it to finish. */ - if (slot_rxtx == 0) { + if (slot_rxtx == 0) + { /* Enqueue transfer in SW fifo. */ I2C_TRACE("I2C(%d) : enqueue transfer in SW fifo : channel %d task %lx.\n", - driver_data->device_id, task->data[3], task); + driver_data->device_id, task->data[3], task); __pi_i2c_task_fifo_enqueue(driver_data, task); - } else { + } + else + { /* Enqueue transfer in HW fifo. */ I2C_TRACE("I2C(%d) : enqueue transfer in HW fifo : channel %d task %lx.\n", - driver_data->device_id, task->data[3], task); - if (task->data[3] == RX_CHANNEL) { + driver_data->device_id, task->data[3], task); + if (task->data[3] == RX_CHANNEL) + { + driver_data->rx_channel->pendings[0] = task; __pi_i2c_copy_exec_read(driver_data, task); - } else { + } + else + { + driver_data->tx_channel->pendings[0] = task; __pi_i2c_copy_exec_write(driver_data, task); } } @@ -836,18 +856,20 @@ void __pi_i2c_copy(struct i2c_cs_data_s *cs_data, uint32_t l2_buff, uint32_t len } int32_t __pi_i2c_detect(struct i2c_cs_data_s *cs_data, struct pi_i2c_conf *conf, uint8_t *rx_data, - struct pi_task *task) + struct pi_task *task) { uint32_t irq = hal_irq_disable(); - if (cs_data->device_id != conf->itf) { + if (cs_data->device_id != conf->itf) + { I2C_TRACE_ERR("I2C(%d) : error wrong interfaces %d - %d !\n", cs_data->device_id, - conf->itf); + conf->itf); hal_irq_restore(irq); return -11; } struct i2c_itf_data_s *driver_data = g_i2c_itf_data[cs_data->device_id]; uint32_t clk_div = __pi_i2c_clk_div_get(conf->max_baudrate); - if (clk_div == 0xFFFFFFFF) { + if (clk_div == 0xFFFFFFFF) + { I2C_TRACE_ERR("I2C(%d) : error computing clock divider !\n", conf->itf); hal_irq_restore(irq); return -12; @@ -880,10 +902,12 @@ int32_t __pi_i2c_detect(struct i2c_cs_data_s *cs_data, struct pi_i2c_conf *conf, __pi_i2c_cb_buf_enqueue(driver_data, task); /* Open RX channel to receive data. */ - hal_i2c_enqueue(driver_data->device_id, RX_CHANNEL, buffer, size, UDMA_CORE_RX_CFG_EN(1)); + plp_udma_enqueue(UDMA_I2C_DATA_ADDR(driver_data->device_id), (uint32_t)buffer, size, + (UDMA_CHANNEL_CFG_EN | UDMA_CHANNEL_CFG_SIZE_8)); /* Transfer command. */ - hal_i2c_enqueue(driver_data->device_id, TX_CHANNEL, (uint32_t)driver_data->i2c_cmd_seq, - index, UDMA_CORE_TX_CFG_EN(1)); + plp_udma_enqueue(UDMA_I2C_CMD_ADDR(driver_data->device_id), (uint32_t)driver_data->i2c_cmd_seq, + index, (UDMA_CHANNEL_CFG_EN | UDMA_CHANNEL_CFG_SIZE_8)); + hal_irq_restore(irq); return 0; } \ No newline at end of file From 2ab4787adac6bc977313a280defb14a03d2cfcc2 Mon Sep 17 00:00:00 2001 From: orlandonico Date: Wed, 15 Dec 2021 13:14:04 +0100 Subject: [PATCH 14/86] set onl te interrupt --- rtos/pulpos/pulp/drivers/i2c/i2c-v2.c | 60 ++++++++++++++++++++------- 1 file changed, 46 insertions(+), 14 deletions(-) diff --git a/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c b/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c index 92bd1477..21678160 100644 --- a/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c +++ b/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c @@ -72,11 +72,12 @@ struct i2c_pending_transfer_s struct i2c_cs_data_s { + struct i2c_cs_data_s *next; /*!< Pointer to next i2c cs data struct. */ uint8_t device_id; /*!< I2C interface ID. */ uint8_t cs; /*!< Chip select i2c device. */ uint16_t clk_div; /*!< Clock divider for the selected i2c chip. */ uint32_t max_baudrate; /*!< Max baudrate for the selected i2c chip. */ - struct i2c_cs_data_s *next; /*!< Pointer to next i2c cs data struct. */ + struct i2c_itf_data_s *driver_data; }; struct i2c_itf_data_s @@ -463,6 +464,7 @@ static uint32_t __pi_i2c_clk_div_get(uint32_t i2c_freq) static void __pi_i2c_copy_exec_read(struct i2c_itf_data_s *driver_data, struct pi_task *task) { + printf("start -> __pi_i2c_copy_exec_read\n"); uint32_t index = 0, start_bit = 0, stop_bit = 0; uint32_t buffer = task->data[0]; uint32_t size = task->data[1]; @@ -515,10 +517,12 @@ static void __pi_i2c_copy_exec_read(struct i2c_itf_data_s *driver_data, struct p plp_udma_enqueue(UDMA_I2C_DATA_ADDR(driver_data->device_id), (uint32_t)buffer, size, (UDMA_CHANNEL_CFG_EN | UDMA_CHANNEL_CFG_SIZE_8)); /* Transfer command. */ plp_udma_enqueue(UDMA_I2C_CMD_ADDR(driver_data->device_id), (uint32_t)driver_data->i2c_cmd_seq, index, (UDMA_CHANNEL_CFG_EN | UDMA_CHANNEL_CFG_SIZE_8)); + printf("end -> __pi_i2c_copy_exec_read\n"); } static void __pi_i2c_copy_exec_write(struct i2c_itf_data_s *driver_data, struct pi_task *task) { + printf("start -> __pi_i2c_copy_exec_write\n"); uint32_t index = 0, start_bit = 0, stop_bit = 0; uint32_t buffer = task->data[0]; uint32_t size = task->data[1]; @@ -571,16 +575,24 @@ static void __pi_i2c_copy_exec_write(struct i2c_itf_data_s *driver_data, struct /* Transfer data. */ if (size > 0) plp_udma_enqueue(UDMA_I2C_CMD_ADDR(driver_data->device_id), (uint32_t)buffer, size, (UDMA_CHANNEL_CFG_EN | UDMA_CHANNEL_CFG_SIZE_8)); + printf("end -> __pi_i2c_copy_exec_write\n"); } static void __pi_i2c_cs_data_add(struct i2c_itf_data_s *driver_data, struct i2c_cs_data_s *cs_data) { - struct i2c_cs_data_s *head = driver_data->cs_list; - while (head != NULL) - { - head = head->next; - } - head->next = cs_data; + printf("__pi_i2c_cs_data_add\n"); +/** + struct i2c_cs_data_s *head = driver_data->cs_list; + while (head != NULL) + { + printf("head != NULL\n"); + head = head->next; + } + head->next = cs_data; +*/ + cs_data->driver_data = driver_data; + cs_data->next = driver_data->cs_list; + printf("fine __pi_i2c_cs_data_add\n"); } static void __pi_i2c_cs_data_remove(struct i2c_itf_data_s *driver_data, @@ -646,10 +658,12 @@ void __pi_i2c_conf_init(pi_i2c_conf_t *conf) void pos_i2c_handle_copy(int event, void *arg) { - printf("pos_i2c_handle_copy"); + printf("pos_i2c_handle_copy\n"); + printf("event %d", event); pos_udma_channel_t *channel = arg; pi_task_t *pending_0 = channel->pendings[0]; uint8_t type_channel = pending_0->data[3]; + printf("type_channel = %d\n", type_channel); if (type_channel == RX_CHANNEL) { __pi_i2c_rx_handler(event, &arg); @@ -676,21 +690,30 @@ void pos_i2c_create_channel(pos_udma_channel_t *channel, int channel_id, int soc int32_t __pi_i2c_open(struct pi_i2c_conf *conf, struct i2c_cs_data_s **device_data) { + printf("start -> __pi_i2c_open\n"); if ((uint8_t)ARCHI_UDMA_NB_I2C < conf->itf) { I2C_TRACE_ERR("Error : wrong interface ID, itf=%d !\n", conf->itf); return -11; } + for (int i = 0; i < ARCHI_NB_FLL; i++) + { + pos_fll_init(i); + } + + printf("__pi_i2c_open - 1\n"); struct i2c_itf_data_s *driver_data = g_i2c_itf_data[conf->itf]; unsigned char i2c_id = conf->itf; int periph_id = ARCHI_UDMA_I2C_ID(i2c_id); + plp_udma_cg_set(plp_udma_cg_get() | (1 << periph_id)); if (driver_data == NULL) { /* Allocate driver data. */ driver_data = (struct i2c_itf_data_s *)pi_l2_malloc(sizeof(struct i2c_itf_data_s)); if (driver_data == NULL) { + printf("__pi_i2c_open - 2\n"); I2C_TRACE_ERR("Driver data alloc failed !\n"); return -12; } @@ -724,24 +747,25 @@ int32_t __pi_i2c_open(struct pi_i2c_conf *conf, struct i2c_cs_data_s **device_da /* Enable SOC events propagation to FC. */ if (driver_data->nb_open == 0) { - pos_i2c_create_channel(driver_data->rx_channel, UDMA_CHANNEL_ID(periph_id), SOC_EVENT_UDMA_I2C_RX(driver_data->device_id)); - pos_i2c_create_channel(driver_data->tx_channel, UDMA_CHANNEL_ID(periph_id) + 1, SOC_EVENT_UDMA_I2C_TX(driver_data->device_id)); + printf("__pi_i2c_open - 3\n"); + //pos_i2c_create_channel(driver_data->rx_channel, UDMA_CHANNEL_ID(periph_id), SOC_EVENT_UDMA_I2C_RX(i2c_id)); + pos_i2c_create_channel(driver_data->tx_channel, UDMA_CHANNEL_ID(periph_id), SOC_EVENT_UDMA_I2C_TX(i2c_id)); driver_data->rx_channel->base = i2c_id; // way to save me the spi interface which is associated with the channel driver_data->tx_channel->base = i2c_id; // way to save me the spi interface which is associated with the channel } - soc_eu_fcEventMask_setEvent(SOC_EVENT_UDMA_I2C_RX(driver_data->device_id)); soc_eu_fcEventMask_setEvent(SOC_EVENT_UDMA_I2C_TX(driver_data->device_id)); - - plp_udma_cg_set(plp_udma_cg_get() | (1 << periph_id)); } I2C_TRACE("I2C(%d) : driver data init done.\n", driver_data->device_id); - + printf("__pi_i2c_open - 4\n"); struct i2c_cs_data_s *cs_data = (struct i2c_cs_data_s *)pi_l2_malloc(sizeof(struct i2c_cs_data_s)); + + printf("__pi_i2c_open - 4b\n"); if (cs_data == NULL) { + printf("__pi_i2c_open - 4a\n"); I2C_TRACE_ERR("I2C(%ld) : cs=%d, cs_data alloc failed !\n", driver_data->device_id, conf->cs); return -13; @@ -750,8 +774,10 @@ int32_t __pi_i2c_open(struct pi_i2c_conf *conf, struct i2c_cs_data_s **device_da cs_data->cs = conf->cs; cs_data->max_baudrate = conf->max_baudrate; uint32_t clk_div = __pi_i2c_clk_div_get(cs_data->max_baudrate); + printf("__pi_i2c_open - 4d\n"); if (clk_div == 0xFFFFFFFF) { + printf("__pi_i2c_open - 5\n"); pi_l2_free(cs_data, sizeof(struct i2c_cs_data_s)); I2C_TRACE_ERR("I2C(%d) : error computing clock divider !\n", conf->itf); return -14; @@ -759,9 +785,13 @@ int32_t __pi_i2c_open(struct pi_i2c_conf *conf, struct i2c_cs_data_s **device_da cs_data->clk_div = clk_div; cs_data->next = NULL; __pi_i2c_cs_data_add(driver_data, cs_data); + printf("__pi_i2c_open - 4e\n"); driver_data->nb_open++; I2C_TRACE("I2C(%d) : opened %ld time(s).\n", driver_data->device_id, driver_data->nb_open); *device_data = cs_data; + printf("__pi_i2c_open - 4f\n"); + printf("end -> __pi_i2c_open\n"); + printf("__pi_i2c_open - 6\n"); return 0; } @@ -817,6 +847,7 @@ void __pi_i2c_ioctl(struct i2c_cs_data_s *device_data, uint32_t cmd, void *arg) void __pi_i2c_copy(struct i2c_cs_data_s *cs_data, uint32_t l2_buff, uint32_t length, pi_i2c_xfer_flags_e flags, udma_channel_e channel, struct pi_task *task) { + printf("start -> __pi_i2c_copy\n"); uint32_t irq = hal_irq_disable(); task->data[0] = l2_buff; task->data[1] = length; @@ -852,6 +883,7 @@ void __pi_i2c_copy(struct i2c_cs_data_s *cs_data, uint32_t l2_buff, uint32_t len __pi_i2c_copy_exec_write(driver_data, task); } } + printf("end -> __pi_i2c_copy\n"); hal_irq_restore(irq); } From afbefc9f6536b1d7640420ef2a5b9505712477e1 Mon Sep 17 00:00:00 2001 From: orlandonico Date: Wed, 15 Dec 2021 14:19:35 +0100 Subject: [PATCH 15/86] rtos/pulpos: bug fix --- rtos/pulpos/pulp/drivers/i2c/i2c-v2.c | 35 ++++----------------------- 1 file changed, 5 insertions(+), 30 deletions(-) diff --git a/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c b/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c index 21678160..7f7d32da 100644 --- a/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c +++ b/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c @@ -464,7 +464,6 @@ static uint32_t __pi_i2c_clk_div_get(uint32_t i2c_freq) static void __pi_i2c_copy_exec_read(struct i2c_itf_data_s *driver_data, struct pi_task *task) { - printf("start -> __pi_i2c_copy_exec_read\n"); uint32_t index = 0, start_bit = 0, stop_bit = 0; uint32_t buffer = task->data[0]; uint32_t size = task->data[1]; @@ -517,12 +516,10 @@ static void __pi_i2c_copy_exec_read(struct i2c_itf_data_s *driver_data, struct p plp_udma_enqueue(UDMA_I2C_DATA_ADDR(driver_data->device_id), (uint32_t)buffer, size, (UDMA_CHANNEL_CFG_EN | UDMA_CHANNEL_CFG_SIZE_8)); /* Transfer command. */ plp_udma_enqueue(UDMA_I2C_CMD_ADDR(driver_data->device_id), (uint32_t)driver_data->i2c_cmd_seq, index, (UDMA_CHANNEL_CFG_EN | UDMA_CHANNEL_CFG_SIZE_8)); - printf("end -> __pi_i2c_copy_exec_read\n"); } static void __pi_i2c_copy_exec_write(struct i2c_itf_data_s *driver_data, struct pi_task *task) { - printf("start -> __pi_i2c_copy_exec_write\n"); uint32_t index = 0, start_bit = 0, stop_bit = 0; uint32_t buffer = task->data[0]; uint32_t size = task->data[1]; @@ -575,12 +572,10 @@ static void __pi_i2c_copy_exec_write(struct i2c_itf_data_s *driver_data, struct /* Transfer data. */ if (size > 0) plp_udma_enqueue(UDMA_I2C_CMD_ADDR(driver_data->device_id), (uint32_t)buffer, size, (UDMA_CHANNEL_CFG_EN | UDMA_CHANNEL_CFG_SIZE_8)); - printf("end -> __pi_i2c_copy_exec_write\n"); } static void __pi_i2c_cs_data_add(struct i2c_itf_data_s *driver_data, struct i2c_cs_data_s *cs_data) { - printf("__pi_i2c_cs_data_add\n"); /** struct i2c_cs_data_s *head = driver_data->cs_list; while (head != NULL) @@ -592,7 +587,6 @@ static void __pi_i2c_cs_data_add(struct i2c_itf_data_s *driver_data, struct i2c_ */ cs_data->driver_data = driver_data; cs_data->next = driver_data->cs_list; - printf("fine __pi_i2c_cs_data_add\n"); } static void __pi_i2c_cs_data_remove(struct i2c_itf_data_s *driver_data, @@ -658,23 +652,20 @@ void __pi_i2c_conf_init(pi_i2c_conf_t *conf) void pos_i2c_handle_copy(int event, void *arg) { - printf("pos_i2c_handle_copy\n"); - printf("event %d", event); pos_udma_channel_t *channel = arg; pi_task_t *pending_0 = channel->pendings[0]; uint8_t type_channel = pending_0->data[3]; - printf("type_channel = %d\n", type_channel); - if (type_channel == RX_CHANNEL) + if (event==8) { __pi_i2c_rx_handler(event, &arg); } - else if (type_channel == TX_CHANNEL) + else if (event == 9) { __pi_i2c_tx_handler(event, &arg); } else { - printf("error pos_spi_handle_copy"); + printf("error pos_spi_handle_copy\n"); exit(0); } } @@ -690,7 +681,6 @@ void pos_i2c_create_channel(pos_udma_channel_t *channel, int channel_id, int soc int32_t __pi_i2c_open(struct pi_i2c_conf *conf, struct i2c_cs_data_s **device_data) { - printf("start -> __pi_i2c_open\n"); if ((uint8_t)ARCHI_UDMA_NB_I2C < conf->itf) { I2C_TRACE_ERR("Error : wrong interface ID, itf=%d !\n", conf->itf); @@ -702,7 +692,6 @@ int32_t __pi_i2c_open(struct pi_i2c_conf *conf, struct i2c_cs_data_s **device_da pos_fll_init(i); } - printf("__pi_i2c_open - 1\n"); struct i2c_itf_data_s *driver_data = g_i2c_itf_data[conf->itf]; unsigned char i2c_id = conf->itf; int periph_id = ARCHI_UDMA_I2C_ID(i2c_id); @@ -713,7 +702,6 @@ int32_t __pi_i2c_open(struct pi_i2c_conf *conf, struct i2c_cs_data_s **device_da driver_data = (struct i2c_itf_data_s *)pi_l2_malloc(sizeof(struct i2c_itf_data_s)); if (driver_data == NULL) { - printf("__pi_i2c_open - 2\n"); I2C_TRACE_ERR("Driver data alloc failed !\n"); return -12; } @@ -747,9 +735,8 @@ int32_t __pi_i2c_open(struct pi_i2c_conf *conf, struct i2c_cs_data_s **device_da /* Enable SOC events propagation to FC. */ if (driver_data->nb_open == 0) { - printf("__pi_i2c_open - 3\n"); - //pos_i2c_create_channel(driver_data->rx_channel, UDMA_CHANNEL_ID(periph_id), SOC_EVENT_UDMA_I2C_RX(i2c_id)); - pos_i2c_create_channel(driver_data->tx_channel, UDMA_CHANNEL_ID(periph_id), SOC_EVENT_UDMA_I2C_TX(i2c_id)); + pos_i2c_create_channel(driver_data->rx_channel, UDMA_CHANNEL_ID(periph_id), SOC_EVENT_UDMA_I2C_RX(i2c_id)); + pos_i2c_create_channel(driver_data->tx_channel, UDMA_CHANNEL_ID(periph_id)+1, SOC_EVENT_UDMA_I2C_TX(i2c_id)); driver_data->rx_channel->base = i2c_id; // way to save me the spi interface which is associated with the channel driver_data->tx_channel->base = i2c_id; // way to save me the spi interface which is associated with the channel } @@ -758,14 +745,10 @@ int32_t __pi_i2c_open(struct pi_i2c_conf *conf, struct i2c_cs_data_s **device_da } I2C_TRACE("I2C(%d) : driver data init done.\n", driver_data->device_id); - printf("__pi_i2c_open - 4\n"); struct i2c_cs_data_s *cs_data = (struct i2c_cs_data_s *)pi_l2_malloc(sizeof(struct i2c_cs_data_s)); - - printf("__pi_i2c_open - 4b\n"); if (cs_data == NULL) { - printf("__pi_i2c_open - 4a\n"); I2C_TRACE_ERR("I2C(%ld) : cs=%d, cs_data alloc failed !\n", driver_data->device_id, conf->cs); return -13; @@ -774,10 +757,8 @@ int32_t __pi_i2c_open(struct pi_i2c_conf *conf, struct i2c_cs_data_s **device_da cs_data->cs = conf->cs; cs_data->max_baudrate = conf->max_baudrate; uint32_t clk_div = __pi_i2c_clk_div_get(cs_data->max_baudrate); - printf("__pi_i2c_open - 4d\n"); if (clk_div == 0xFFFFFFFF) { - printf("__pi_i2c_open - 5\n"); pi_l2_free(cs_data, sizeof(struct i2c_cs_data_s)); I2C_TRACE_ERR("I2C(%d) : error computing clock divider !\n", conf->itf); return -14; @@ -785,13 +766,9 @@ int32_t __pi_i2c_open(struct pi_i2c_conf *conf, struct i2c_cs_data_s **device_da cs_data->clk_div = clk_div; cs_data->next = NULL; __pi_i2c_cs_data_add(driver_data, cs_data); - printf("__pi_i2c_open - 4e\n"); driver_data->nb_open++; I2C_TRACE("I2C(%d) : opened %ld time(s).\n", driver_data->device_id, driver_data->nb_open); *device_data = cs_data; - printf("__pi_i2c_open - 4f\n"); - printf("end -> __pi_i2c_open\n"); - printf("__pi_i2c_open - 6\n"); return 0; } @@ -847,7 +824,6 @@ void __pi_i2c_ioctl(struct i2c_cs_data_s *device_data, uint32_t cmd, void *arg) void __pi_i2c_copy(struct i2c_cs_data_s *cs_data, uint32_t l2_buff, uint32_t length, pi_i2c_xfer_flags_e flags, udma_channel_e channel, struct pi_task *task) { - printf("start -> __pi_i2c_copy\n"); uint32_t irq = hal_irq_disable(); task->data[0] = l2_buff; task->data[1] = length; @@ -883,7 +859,6 @@ void __pi_i2c_copy(struct i2c_cs_data_s *cs_data, uint32_t l2_buff, uint32_t len __pi_i2c_copy_exec_write(driver_data, task); } } - printf("end -> __pi_i2c_copy\n"); hal_irq_restore(irq); } From 342c7bde838e9e20f3314d712febc38d3fe1cbc8 Mon Sep 17 00:00:00 2001 From: orlandonico Date: Wed, 15 Dec 2021 14:45:36 +0100 Subject: [PATCH 16/86] Add address --- tests/i2c_eeprom_sync/test_i2c_eeprom_sync.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/i2c_eeprom_sync/test_i2c_eeprom_sync.c b/tests/i2c_eeprom_sync/test_i2c_eeprom_sync.c index 51346bcf..565e2adc 100644 --- a/tests/i2c_eeprom_sync/test_i2c_eeprom_sync.c +++ b/tests/i2c_eeprom_sync/test_i2c_eeprom_sync.c @@ -28,7 +28,7 @@ /* I2C device/peripheral id */ #define I2C_DEV_ID 0 /* I2C address of the eeprom */ -#define I2C_EEPROM_ADDR 0x50 +#define I2C_EEPROM_ADDR 0xa0 static struct pi_device i2c; From 1fcfeafd31351b9ffdc4d1b8854113a6f86386ab Mon Sep 17 00:00:00 2001 From: orlandonico Date: Wed, 15 Dec 2021 15:02:32 +0100 Subject: [PATCH 17/86] rtos/pulpos: bug fix --- rtos/pulpos/pulp/drivers/i2c/i2c-v2.c | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c b/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c index 7f7d32da..160831f2 100644 --- a/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c +++ b/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c @@ -16,6 +16,14 @@ * SPDX-License-Identifier: Apache-2.0 */ +/**================================================================================================ + * * INFO + * pulp-sdk/rtos/pulpos/common/rules/pulpos/src.mk + * pulp-sdk/rtos/pmsis/pmsis_bsp/rules/pulpos/src.mk + * + * + *================================================================================================**/ + #include "pmsis.h" #include #include @@ -658,10 +666,12 @@ void pos_i2c_handle_copy(int event, void *arg) if (event==8) { __pi_i2c_rx_handler(event, &arg); + pos_task_push_locked(pending_0); } else if (event == 9) { __pi_i2c_tx_handler(event, &arg); + pos_task_push_locked(pending_0); } else { From d345222c942a58c3f29edcd001ff3fb6d408adda Mon Sep 17 00:00:00 2001 From: orlandonico Date: Wed, 15 Dec 2021 15:17:45 +0100 Subject: [PATCH 18/86] fix address --- tests/i2c_eeprom_sync/test_i2c_eeprom_sync.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/i2c_eeprom_sync/test_i2c_eeprom_sync.c b/tests/i2c_eeprom_sync/test_i2c_eeprom_sync.c index 565e2adc..51346bcf 100644 --- a/tests/i2c_eeprom_sync/test_i2c_eeprom_sync.c +++ b/tests/i2c_eeprom_sync/test_i2c_eeprom_sync.c @@ -28,7 +28,7 @@ /* I2C device/peripheral id */ #define I2C_DEV_ID 0 /* I2C address of the eeprom */ -#define I2C_EEPROM_ADDR 0xa0 +#define I2C_EEPROM_ADDR 0x50 static struct pi_device i2c; From c7a1f8ef2c09ac616776e4e0d7ff7e7503c8dea5 Mon Sep 17 00:00:00 2001 From: orlandonico Date: Wed, 15 Dec 2021 15:42:28 +0100 Subject: [PATCH 19/86] test that prints all the addresses of the peripherals connected to the i2c --- tests/i2c_scan/Makefile | 19 +++++ tests/i2c_scan/test_i2c_scan.c | 131 +++++++++++++++++++++++++++++++++ 2 files changed, 150 insertions(+) create mode 100644 tests/i2c_scan/Makefile create mode 100644 tests/i2c_scan/test_i2c_scan.c diff --git a/tests/i2c_scan/Makefile b/tests/i2c_scan/Makefile new file mode 100644 index 00000000..679c0dc6 --- /dev/null +++ b/tests/i2c_scan/Makefile @@ -0,0 +1,19 @@ +APP = test_i2c_scan +APP_SRCS += test_i2c_scan.c + +ifdef USE_CLUSTER +APP_CFLAGS += -DCLUSTER -DNUM_CLUSTER=$(USE_CLUSTER) +ifdef NUM_CORES +APP_CFLAGS += -DNUM_CORES=$(NUM_CORES) +else +APP_CFLAGS += -DNUM_CORES=1 +endif +endif + +APP_CFLAGS += -DCHECK_EEPROM_PRESENT +APP_CFLAGS += -Os -g +APP_LDFLAGS += -Os -g + +CONFIG_I2C = 1 + +include $(RULES_DIR)/pmsis_rules.mk diff --git a/tests/i2c_scan/test_i2c_scan.c b/tests/i2c_scan/test_i2c_scan.c new file mode 100644 index 00000000..daf499e9 --- /dev/null +++ b/tests/i2c_scan/test_i2c_scan.c @@ -0,0 +1,131 @@ +/* + * Copyright 2021 Greenwaves Technologies + * Copyright 2021 ETH Zurich + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +/* + * + */ + +#include "pmsis.h" +#include + +/* I2C device/peripheral id */ +#define I2C_DEV_ID 0 + +static struct pi_device i2c; + +static void i2c_init(uint8_t itf, uint8_t addr) +{ + struct pi_i2c_conf i2c_conf; + + pi_i2c_conf_init(&i2c_conf); + i2c_conf.itf = itf; + i2c_conf.max_baudrate = 100000; + pi_i2c_conf_set_slave_addr(&i2c_conf, addr << 1, 0); + /* pi_i2c_conf_set_wait_cycles(conf, 2048); */ + + pi_open_from_conf(&i2c, &i2c_conf); + + if (pi_i2c_open(&i2c)) { + printf("i2c open failed\n"); + exit(1); + } +} + +static void i2c_close(void) +{ + pi_i2c_close(&i2c); +} + +static uint8_t i2c_write(uint8_t *buf, uint16_t size) +{ + int res = pi_i2c_write(&i2c, buf, size, + PI_I2C_XFER_START | PI_I2C_XFER_STOP); +#ifndef CONFIG_UDMA_I2C_ACK + #error "This test requires the I2C ACK feature support in the udma" +#endif + if (res == PI_OK) { + /* we received an ACK */ + return 1; + } + /* we received a NACK */ + return 0; +} + +int scan(uint8_t itf) +{ + printf("scanning i2c bus %d\n", itf); + uint8_t buf[1] = {0}; + uint8_t peripherals[128] = {0}; + + /* the address of our i2c eeprom is normally 0x50 if you want to + * specifically test that */ + int found = 0; + for (int i = 0; i < 128; i++) { + i2c_init(itf, i); + peripherals[i] = i2c_write(buf, 0); + if (peripherals[i] != 0) { + found = 1; + printf("interface %d: *found* peripheral at addr %d\n", itf, i); + } else { + printf("interface %d: nothing at addr %d\n", itf, i); + } + i2c_close(); + } + + if (found) { + int count = 0; + printf("Found peripherals: "); + for (int i = 0; i < 128; i++) { + if (peripherals[i] != 0) { + count++; + printf("0x%02X, ", i); + } + } + printf("\n"); + printf("interface %d: %d peripherals found\n", itf, count); + } else { + printf("interface %d: No peripheral found\n", itf); + } + +#ifdef CHECK_EEPROM_PRESENT + /* note that the eeprom appears on two addresses */ + printf("checking whether eeprom is present\n"); + if (peripherals[0x50] && peripherals[0x54]) { + printf("ok\n"); + return 0; + } else { + printf("eeprom not found at addr 0x80 and 0x84\n"); + return 1; + } +#else + return 0; +#endif +} + +int main(void) +{ + /* Init board hardware. */ + system_init(); + + printf("i2c scan test\n"); + return pmsis_kickoff((void *)scan(I2C_DEV_ID)); +} + + + From ff0ef2664ecb637401dd5b47abbc7399fc81dfaf Mon Sep 17 00:00:00 2001 From: orlandonico Date: Wed, 15 Dec 2021 15:58:16 +0100 Subject: [PATCH 20/86] hidden bug --- tests/i2c_scan/test_i2c_scan.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/tests/i2c_scan/test_i2c_scan.c b/tests/i2c_scan/test_i2c_scan.c index daf499e9..653d3181 100644 --- a/tests/i2c_scan/test_i2c_scan.c +++ b/tests/i2c_scan/test_i2c_scan.c @@ -120,9 +120,6 @@ int scan(uint8_t itf) int main(void) { - /* Init board hardware. */ - system_init(); - printf("i2c scan test\n"); return pmsis_kickoff((void *)scan(I2C_DEV_ID)); } From 7725a8f0f6fe989ca56140962a909a0b1bc18cbd Mon Sep 17 00:00:00 2001 From: orlandonico Date: Wed, 15 Dec 2021 16:00:05 +0100 Subject: [PATCH 21/86] hidden bug --- tests/i2c_scan/test_i2c_scan.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/i2c_scan/test_i2c_scan.c b/tests/i2c_scan/test_i2c_scan.c index 653d3181..b0838ee3 100644 --- a/tests/i2c_scan/test_i2c_scan.c +++ b/tests/i2c_scan/test_i2c_scan.c @@ -56,9 +56,11 @@ static uint8_t i2c_write(uint8_t *buf, uint16_t size) { int res = pi_i2c_write(&i2c, buf, size, PI_I2C_XFER_START | PI_I2C_XFER_STOP); + /** #ifndef CONFIG_UDMA_I2C_ACK #error "This test requires the I2C ACK feature support in the udma" #endif +*/ if (res == PI_OK) { /* we received an ACK */ return 1; From 05bd32d5efd654d02286e46340c315ba4373fdc9 Mon Sep 17 00:00:00 2001 From: orlandonico Date: Wed, 15 Dec 2021 16:20:41 +0100 Subject: [PATCH 22/86] no irq --- rtos/pulpos/pulp/drivers/i2c/i2c-v2.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c b/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c index 160831f2..fde35532 100644 --- a/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c +++ b/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c @@ -660,6 +660,7 @@ void __pi_i2c_conf_init(pi_i2c_conf_t *conf) void pos_i2c_handle_copy(int event, void *arg) { + printf("pos_i2c_handle_copy"); pos_udma_channel_t *channel = arg; pi_task_t *pending_0 = channel->pendings[0]; uint8_t type_channel = pending_0->data[3]; @@ -682,7 +683,7 @@ void pos_i2c_handle_copy(int event, void *arg) void pos_i2c_create_channel(pos_udma_channel_t *channel, int channel_id, int soc_event) { - pos_soc_event_register_callback(soc_event, pos_i2c_handle_copy, (void *)channel); + //pos_soc_event_register_callback(soc_event, pos_i2c_handle_copy, (void *)channel); channel->pendings[0] = NULL; channel->pendings[1] = NULL; channel->waitings_first = NULL; From edbc0f7231e119688d69ee8b5fdff84cea269445 Mon Sep 17 00:00:00 2001 From: orlandonico Date: Wed, 15 Dec 2021 17:09:25 +0100 Subject: [PATCH 23/86] rtos/pulpos: irq --- rtos/pulpos/pulp/drivers/i2c/i2c-v2.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c b/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c index fde35532..0bf24eef 100644 --- a/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c +++ b/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c @@ -211,7 +211,7 @@ void pi_i2c_conf_set_slave_addr(struct pi_i2c_conf *conf, uint16_t slave_addr, int pi_i2c_open(struct pi_device *device) { - int32_t status = -1; + int32_t status = -100; struct pi_i2c_conf *conf = (struct pi_i2c_conf *)device->config; I2C_TRACE("Open device id=%d\n", conf->itf); status = __pi_i2c_open(conf, (struct i2c_cs_data_s **)&(device->data)); @@ -683,7 +683,7 @@ void pos_i2c_handle_copy(int event, void *arg) void pos_i2c_create_channel(pos_udma_channel_t *channel, int channel_id, int soc_event) { - //pos_soc_event_register_callback(soc_event, pos_i2c_handle_copy, (void *)channel); + pos_soc_event_register_callback(soc_event, pos_i2c_handle_copy, (void *)channel); channel->pendings[0] = NULL; channel->pendings[1] = NULL; channel->waitings_first = NULL; From f57a301ce38ba2e26e286e6263e143b01cd2d21f Mon Sep 17 00:00:00 2001 From: orlandonico Date: Wed, 15 Dec 2021 17:40:46 +0100 Subject: [PATCH 24/86] tests: test only write --- tests/i2c_eeprom_sync/test_i2c_eeprom_sync.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/i2c_eeprom_sync/test_i2c_eeprom_sync.c b/tests/i2c_eeprom_sync/test_i2c_eeprom_sync.c index 51346bcf..08030be6 100644 --- a/tests/i2c_eeprom_sync/test_i2c_eeprom_sync.c +++ b/tests/i2c_eeprom_sync/test_i2c_eeprom_sync.c @@ -93,7 +93,7 @@ void eeprom(void) 0x00, /* addr msb */ 0x00, /* addr lsb */ }; - +/** res = pi_i2c_write(&i2c, eeprom_addr, sizeof(eeprom_addr), PI_I2C_XFER_START | PI_I2C_XFER_STOP); if (res != PI_OK) { @@ -106,7 +106,7 @@ void eeprom(void) printf("pi_i2c_read failed\n"); exit(1); } - +*/ printf("comparing\n"); int error = 0; for (int i = 0; i < sizeof(rx); i++) { From 6605b2de6451081acd1edaed15627a0ee431a9ca Mon Sep 17 00:00:00 2001 From: orlandonico Date: Wed, 15 Dec 2021 18:11:19 +0100 Subject: [PATCH 25/86] rtos/pulpos: fix --- rtos/pulpos/pulp/drivers/i2c/i2c-v2.c | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c b/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c index 0bf24eef..30055004 100644 --- a/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c +++ b/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c @@ -20,7 +20,8 @@ * * INFO * pulp-sdk/rtos/pulpos/common/rules/pulpos/src.mk * pulp-sdk/rtos/pmsis/pmsis_bsp/rules/pulpos/src.mk - * + * pulp-sdk/rtos/pulpos/pulp_archi/include/archi/chips/pulp/properties.h + * pulp-sdk/rtos/pulpos/pulp_archi/include/archi/chips/pulp/memory_map.h * *================================================================================================**/ @@ -697,16 +698,18 @@ int32_t __pi_i2c_open(struct pi_i2c_conf *conf, struct i2c_cs_data_s **device_da I2C_TRACE_ERR("Error : wrong interface ID, itf=%d !\n", conf->itf); return -11; } - + printf("__pi_i2c_open 1"); for (int i = 0; i < ARCHI_NB_FLL; i++) { pos_fll_init(i); } + printf("__pi_i2c_open 2"); struct i2c_itf_data_s *driver_data = g_i2c_itf_data[conf->itf]; unsigned char i2c_id = conf->itf; int periph_id = ARCHI_UDMA_I2C_ID(i2c_id); - plp_udma_cg_set(plp_udma_cg_get() | (1 << periph_id)); + plp_udma_cg_set(plp_udma_cg_get() | (0xffffffff)); + printf("__pi_i2c_open 3"); if (driver_data == NULL) { /* Allocate driver data. */ @@ -746,14 +749,15 @@ int32_t __pi_i2c_open(struct pi_i2c_conf *conf, struct i2c_cs_data_s **device_da /* Enable SOC events propagation to FC. */ if (driver_data->nb_open == 0) { - pos_i2c_create_channel(driver_data->rx_channel, UDMA_CHANNEL_ID(periph_id), SOC_EVENT_UDMA_I2C_RX(i2c_id)); - pos_i2c_create_channel(driver_data->tx_channel, UDMA_CHANNEL_ID(periph_id)+1, SOC_EVENT_UDMA_I2C_TX(i2c_id)); + pos_i2c_create_channel(driver_data->rx_channel, UDMA_CHANNEL_ID(periph_id), ARCHI_SOC_EVENT_I2C0_RX); + pos_i2c_create_channel(driver_data->tx_channel, UDMA_CHANNEL_ID(periph_id)+1, ARCHI_SOC_EVENT_I2C0_TX); driver_data->rx_channel->base = i2c_id; // way to save me the spi interface which is associated with the channel driver_data->tx_channel->base = i2c_id; // way to save me the spi interface which is associated with the channel } - soc_eu_fcEventMask_setEvent(SOC_EVENT_UDMA_I2C_RX(driver_data->device_id)); - soc_eu_fcEventMask_setEvent(SOC_EVENT_UDMA_I2C_TX(driver_data->device_id)); + soc_eu_fcEventMask_setEvent(ARCHI_SOC_EVENT_I2C0_RX); + soc_eu_fcEventMask_setEvent(ARCHI_SOC_EVENT_I2C0_TX); } + printf("__pi_i2c_open 4"); I2C_TRACE("I2C(%d) : driver data init done.\n", driver_data->device_id); struct i2c_cs_data_s *cs_data = @@ -805,8 +809,8 @@ void __pi_i2c_close(struct i2c_cs_data_s *device_data) /* Clear handlers. */ /* Disable SOC events propagation to FC. */ - soc_eu_fcEventMask_clearEvent(SOC_EVENT_UDMA_I2C_RX(driver_data->device_id)); - soc_eu_fcEventMask_clearEvent(SOC_EVENT_UDMA_I2C_TX(driver_data->device_id)); + soc_eu_fcEventMask_clearEvent(ARCHI_SOC_EVENT_I2C0_RX); + soc_eu_fcEventMask_clearEvent(ARCHI_SOC_EVENT_I2C0_TX); /* Enable UDMA CG. */ plp_udma_cg_set(plp_udma_cg_get() & ~(1 << periph_id)); From 6a8774893929c1aab3d23735cb5cd9fb2cdb107e Mon Sep 17 00:00:00 2001 From: orlandonico Date: Wed, 15 Dec 2021 18:40:43 +0100 Subject: [PATCH 26/86] rtos/pulpos: fix --- rtos/pulpos/pulp/drivers/i2c/i2c-v2.c | 4 ++-- tests/i2c_eeprom_sync/test_i2c_eeprom_sync.c | 4 +++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c b/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c index 30055004..a531015a 100644 --- a/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c +++ b/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c @@ -749,8 +749,8 @@ int32_t __pi_i2c_open(struct pi_i2c_conf *conf, struct i2c_cs_data_s **device_da /* Enable SOC events propagation to FC. */ if (driver_data->nb_open == 0) { - pos_i2c_create_channel(driver_data->rx_channel, UDMA_CHANNEL_ID(periph_id), ARCHI_SOC_EVENT_I2C0_RX); - pos_i2c_create_channel(driver_data->tx_channel, UDMA_CHANNEL_ID(periph_id)+1, ARCHI_SOC_EVENT_I2C0_TX); + pos_i2c_create_channel(driver_data->rx_channel, UDMA_CHANNEL_ID(ARCHI_UDMA_I2C_ID(i2c_id)), ARCHI_SOC_EVENT_I2C0_RX); + pos_i2c_create_channel(driver_data->tx_channel, UDMA_CHANNEL_ID(ARCHI_UDMA_I2C_ID(i2c_id))+1, ARCHI_SOC_EVENT_I2C0_TX); driver_data->rx_channel->base = i2c_id; // way to save me the spi interface which is associated with the channel driver_data->tx_channel->base = i2c_id; // way to save me the spi interface which is associated with the channel } diff --git a/tests/i2c_eeprom_sync/test_i2c_eeprom_sync.c b/tests/i2c_eeprom_sync/test_i2c_eeprom_sync.c index 08030be6..61e10eab 100644 --- a/tests/i2c_eeprom_sync/test_i2c_eeprom_sync.c +++ b/tests/i2c_eeprom_sync/test_i2c_eeprom_sync.c @@ -40,13 +40,15 @@ void eeprom(void) printf("opening eeprom on i2c bus %d\n", I2C_DEV_ID); pi_i2c_conf_init(&i2c_conf); + printf("pi_i2c_conf_init\n"); i2c_conf.itf = I2C_DEV_ID; i2c_conf.max_baudrate = 100000; pi_i2c_conf_set_slave_addr(&i2c_conf, I2C_EEPROM_ADDR << 1, 0); + printf("pi_i2c_conf_set_slave_addr\n"); /* pi_i2c_conf_set_wait_cycles(conf, 2048); */ pi_open_from_conf(&i2c, &i2c_conf); - + printf("pi_open_from_conf\n"); if (pi_i2c_open(&i2c)) { printf("i2c open failed\n"); exit(1); From 87f95ff9df0d8b4f2504962dd64277b0190a7ddc Mon Sep 17 00:00:00 2001 From: orlandonico Date: Wed, 15 Dec 2021 18:52:00 +0100 Subject: [PATCH 27/86] rtos/pulpos: fix --- rtos/pulpos/pulp/drivers/i2c/i2c-v2.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c b/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c index a531015a..8dadb489 100644 --- a/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c +++ b/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c @@ -699,10 +699,12 @@ int32_t __pi_i2c_open(struct pi_i2c_conf *conf, struct i2c_cs_data_s **device_da return -11; } printf("__pi_i2c_open 1"); + /** for (int i = 0; i < ARCHI_NB_FLL; i++) { pos_fll_init(i); } + */ printf("__pi_i2c_open 2"); struct i2c_itf_data_s *driver_data = g_i2c_itf_data[conf->itf]; From 92ffb26f8684cb47c5678309f099617ebcebc0c9 Mon Sep 17 00:00:00 2001 From: orlandonico Date: Wed, 15 Dec 2021 19:28:54 +0100 Subject: [PATCH 28/86] rtos/pulpos: fix --- rtos/pulpos/pulp/drivers/i2c/i2c-v2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c b/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c index 8dadb489..789cbbf6 100644 --- a/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c +++ b/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c @@ -215,7 +215,7 @@ int pi_i2c_open(struct pi_device *device) int32_t status = -100; struct pi_i2c_conf *conf = (struct pi_i2c_conf *)device->config; I2C_TRACE("Open device id=%d\n", conf->itf); - status = __pi_i2c_open(conf, (struct i2c_cs_data_s **)&(device->data)); + status = __pi_i2c_open(conf, (struct i2c_cs_data_s **)(&device->data)); I2C_TRACE("Open status : %ld, driver data: %lx\n", status, (struct i2c_cs_data_s *)device->data); return status; From 4ba66455634d3e51befb88f6bad4b3f129c48343 Mon Sep 17 00:00:00 2001 From: orlandonico Date: Wed, 15 Dec 2021 19:45:42 +0100 Subject: [PATCH 29/86] rtos/pulpos: fix --- rtos/pulpos/pulp/drivers/i2c/i2c-v2.c | 209 ++++++++++++++------------ 1 file changed, 111 insertions(+), 98 deletions(-) diff --git a/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c b/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c index 789cbbf6..10e17c78 100644 --- a/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c +++ b/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c @@ -210,14 +210,120 @@ void pi_i2c_conf_set_slave_addr(struct pi_i2c_conf *conf, uint16_t slave_addr, conf->is_10_bits = is_10_bits; } +static inline struct i2c_cs_data_s *__pi_i2c_get_cs_data(struct i2c_itf_data_s *drv_data, int cs) +{ + DBG_PRINTF("...start -> __pi_spim_get_cs_data...\n"); + DBG_PRINTF("%s:%s:%d\n", __FILE__, __func__, __LINE__); + struct spim_cs_data *cs_cur = drv_data->cs_list; + while (cs_cur != NULL && cs_cur->cs != cs) + { + cs_cur = cs_cur->next; + } + DBG_PRINTF("...end -> __pi_spim_get_cs_data...\n"); + return cs_cur; +} + int pi_i2c_open(struct pi_device *device) { - int32_t status = -100; + int32_t status = 0; struct pi_i2c_conf *conf = (struct pi_i2c_conf *)device->config; + struct i2c_cs_data_s **cs_data_ = (struct i2c_cs_data_s **)(&device->data); I2C_TRACE("Open device id=%d\n", conf->itf); - status = __pi_i2c_open(conf, (struct i2c_cs_data_s **)(&device->data)); - I2C_TRACE("Open status : %ld, driver data: %lx\n", status, - (struct i2c_cs_data_s *)device->data); + if ((uint8_t)ARCHI_UDMA_NB_I2C < conf->itf) + { + I2C_TRACE_ERR("Error : wrong interface ID, itf=%d !\n", conf->itf); + return -11; + } + printf("__pi_i2c_open 1"); + /** + for (int i = 0; i < ARCHI_NB_FLL; i++) + { + pos_fll_init(i); + } + */ + + printf("__pi_i2c_open 2"); + struct i2c_itf_data_s *driver_data = g_i2c_itf_data[conf->itf]; + unsigned char i2c_id = conf->itf; + int periph_id = ARCHI_UDMA_I2C_ID(i2c_id); + plp_udma_cg_set(plp_udma_cg_get() | (0xffffffff)); + printf("__pi_i2c_open 3"); + if (driver_data == NULL) + { + /* Allocate driver data. */ + driver_data = (struct i2c_itf_data_s *)pi_l2_malloc(sizeof(struct i2c_itf_data_s)); + if (driver_data == NULL) + { + I2C_TRACE_ERR("Driver data alloc failed !\n"); + return -12; + } + driver_data->buf[0] = NULL; + driver_data->fifo_head = NULL; + driver_data->fifo_tail = NULL; + driver_data->pending = NULL; + driver_data->nb_open = 0; + driver_data->i2c_cmd_index = 0; + driver_data->cs_list = NULL; + for (uint32_t i = 0; i < (uint32_t)__PI_I2C_CMD_BUFF_SIZE; i++) + { + driver_data->i2c_cmd_seq[i] = 0; + } + driver_data->i2c_stop_send = 0; + driver_data->i2c_eot_send = 0; + /* Set up i2c cmd stop sequence. */ + driver_data->i2c_stop_seq[0] = I2C_CMD_STOP; + driver_data->i2c_stop_seq[1] = I2C_CMD_WAIT; + driver_data->i2c_stop_seq[2] = conf->wait_cycles > 0xff ? 0xff : conf->wait_cycles; + + driver_data->nb_events = 0; + driver_data->device_id = conf->itf; + /* TODO: Attach freq callback. */ + /* pi_freq_callback_init(&(driver_data->i2c_freq_cb), __pi_i2c_freq_cb, + * driver_data); */ + /* pi_freq_callback_add(&(driver_data->i2c_freq_cb)); */ + g_i2c_itf_data[conf->itf] = driver_data; + + /* Set handlers. */ + /* Enable SOC events propagation to FC. */ + if (driver_data->nb_open == 0) + { + pos_i2c_create_channel(driver_data->rx_channel, UDMA_CHANNEL_ID(ARCHI_UDMA_I2C_ID(i2c_id)), ARCHI_SOC_EVENT_I2C0_RX); + pos_i2c_create_channel(driver_data->tx_channel, UDMA_CHANNEL_ID(ARCHI_UDMA_I2C_ID(i2c_id))+1, ARCHI_SOC_EVENT_I2C0_TX); + driver_data->rx_channel->base = i2c_id; // way to save me the spi interface which is associated with the channel + driver_data->tx_channel->base = i2c_id; // way to save me the spi interface which is associated with the channel + } + soc_eu_fcEventMask_setEvent(ARCHI_SOC_EVENT_I2C0_RX); + soc_eu_fcEventMask_setEvent(ARCHI_SOC_EVENT_I2C0_TX); + } + printf("__pi_i2c_open 4"); + + + I2C_TRACE("I2C(%d) : driver data init done.\n", driver_data->device_id); + struct i2c_cs_data_s *cs_data = + (struct i2c_cs_data_s *)pi_l2_malloc(sizeof(struct i2c_cs_data_s)); + //*cs_data = __pi_i2c_get_cs_data(driver_data, conf->cs); + if (cs_data == NULL) + { + I2C_TRACE_ERR("I2C(%ld) : cs=%d, cs_data alloc failed !\n", driver_data->device_id, + conf->cs); + return -13; + } + cs_data->device_id = conf->itf; + cs_data->cs = conf->cs; + cs_data->max_baudrate = conf->max_baudrate; + uint32_t clk_div = __pi_i2c_clk_div_get(cs_data->max_baudrate); + if (clk_div == 0xFFFFFFFF) + { + pi_l2_free(cs_data, sizeof(struct i2c_cs_data_s)); + I2C_TRACE_ERR("I2C(%d) : error computing clock divider !\n", conf->itf); + return -14; + } + cs_data->clk_div = clk_div; + cs_data->next = NULL; + __pi_i2c_cs_data_add(driver_data, cs_data); + driver_data->nb_open++; + I2C_TRACE("I2C(%d) : opened %ld time(s).\n", driver_data->device_id, driver_data->nb_open); + *cs_data_ = cs_data; return status; } @@ -693,100 +799,7 @@ void pos_i2c_create_channel(pos_udma_channel_t *channel, int channel_id, int soc int32_t __pi_i2c_open(struct pi_i2c_conf *conf, struct i2c_cs_data_s **device_data) { - if ((uint8_t)ARCHI_UDMA_NB_I2C < conf->itf) - { - I2C_TRACE_ERR("Error : wrong interface ID, itf=%d !\n", conf->itf); - return -11; - } - printf("__pi_i2c_open 1"); - /** - for (int i = 0; i < ARCHI_NB_FLL; i++) - { - pos_fll_init(i); - } - */ - - printf("__pi_i2c_open 2"); - struct i2c_itf_data_s *driver_data = g_i2c_itf_data[conf->itf]; - unsigned char i2c_id = conf->itf; - int periph_id = ARCHI_UDMA_I2C_ID(i2c_id); - plp_udma_cg_set(plp_udma_cg_get() | (0xffffffff)); - printf("__pi_i2c_open 3"); - if (driver_data == NULL) - { - /* Allocate driver data. */ - driver_data = (struct i2c_itf_data_s *)pi_l2_malloc(sizeof(struct i2c_itf_data_s)); - if (driver_data == NULL) - { - I2C_TRACE_ERR("Driver data alloc failed !\n"); - return -12; - } - driver_data->buf[0] = NULL; - driver_data->fifo_head = NULL; - driver_data->fifo_tail = NULL; - driver_data->pending = NULL; - driver_data->nb_open = 0; - driver_data->i2c_cmd_index = 0; - driver_data->cs_list = NULL; - for (uint32_t i = 0; i < (uint32_t)__PI_I2C_CMD_BUFF_SIZE; i++) - { - driver_data->i2c_cmd_seq[i] = 0; - } - driver_data->i2c_stop_send = 0; - driver_data->i2c_eot_send = 0; - /* Set up i2c cmd stop sequence. */ - driver_data->i2c_stop_seq[0] = I2C_CMD_STOP; - driver_data->i2c_stop_seq[1] = I2C_CMD_WAIT; - driver_data->i2c_stop_seq[2] = conf->wait_cycles > 0xff ? 0xff : conf->wait_cycles; - - driver_data->nb_events = 0; - driver_data->device_id = conf->itf; - /* TODO: Attach freq callback. */ - /* pi_freq_callback_init(&(driver_data->i2c_freq_cb), __pi_i2c_freq_cb, - * driver_data); */ - /* pi_freq_callback_add(&(driver_data->i2c_freq_cb)); */ - g_i2c_itf_data[conf->itf] = driver_data; - - /* Set handlers. */ - /* Enable SOC events propagation to FC. */ - if (driver_data->nb_open == 0) - { - pos_i2c_create_channel(driver_data->rx_channel, UDMA_CHANNEL_ID(ARCHI_UDMA_I2C_ID(i2c_id)), ARCHI_SOC_EVENT_I2C0_RX); - pos_i2c_create_channel(driver_data->tx_channel, UDMA_CHANNEL_ID(ARCHI_UDMA_I2C_ID(i2c_id))+1, ARCHI_SOC_EVENT_I2C0_TX); - driver_data->rx_channel->base = i2c_id; // way to save me the spi interface which is associated with the channel - driver_data->tx_channel->base = i2c_id; // way to save me the spi interface which is associated with the channel - } - soc_eu_fcEventMask_setEvent(ARCHI_SOC_EVENT_I2C0_RX); - soc_eu_fcEventMask_setEvent(ARCHI_SOC_EVENT_I2C0_TX); - } - printf("__pi_i2c_open 4"); - - I2C_TRACE("I2C(%d) : driver data init done.\n", driver_data->device_id); - struct i2c_cs_data_s *cs_data = - (struct i2c_cs_data_s *)pi_l2_malloc(sizeof(struct i2c_cs_data_s)); - if (cs_data == NULL) - { - I2C_TRACE_ERR("I2C(%ld) : cs=%d, cs_data alloc failed !\n", driver_data->device_id, - conf->cs); - return -13; - } - cs_data->device_id = conf->itf; - cs_data->cs = conf->cs; - cs_data->max_baudrate = conf->max_baudrate; - uint32_t clk_div = __pi_i2c_clk_div_get(cs_data->max_baudrate); - if (clk_div == 0xFFFFFFFF) - { - pi_l2_free(cs_data, sizeof(struct i2c_cs_data_s)); - I2C_TRACE_ERR("I2C(%d) : error computing clock divider !\n", conf->itf); - return -14; - } - cs_data->clk_div = clk_div; - cs_data->next = NULL; - __pi_i2c_cs_data_add(driver_data, cs_data); - driver_data->nb_open++; - I2C_TRACE("I2C(%d) : opened %ld time(s).\n", driver_data->device_id, driver_data->nb_open); - *device_data = cs_data; - return 0; + } void __pi_i2c_close(struct i2c_cs_data_s *device_data) From 02601d4eb201cfb9a33a6d5326c4b85ea74255b9 Mon Sep 17 00:00:00 2001 From: orlandonico Date: Thu, 16 Dec 2021 11:00:04 +0100 Subject: [PATCH 30/86] rtos/pulpos: fix --- rtos/pulpos/pulp/drivers/i2c/i2c-v2.c | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c b/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c index 10e17c78..0d554294 100644 --- a/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c +++ b/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c @@ -197,6 +197,7 @@ void __pi_i2c_copy(struct i2c_cs_data_s *cs_data, uint32_t l2_buff, uint32_t len /* Scan i2c bus to detect connected devices. */ int32_t __pi_i2c_detect(struct i2c_cs_data_s *cs_data, struct pi_i2c_conf *conf, uint8_t *rx_data, struct pi_task *task); +void pos_i2c_create_channel(pos_udma_channel_t *channel, int channel_id, int soc_event); void pi_i2c_conf_init(pi_i2c_conf_t *conf) { @@ -210,19 +211,6 @@ void pi_i2c_conf_set_slave_addr(struct pi_i2c_conf *conf, uint16_t slave_addr, conf->is_10_bits = is_10_bits; } -static inline struct i2c_cs_data_s *__pi_i2c_get_cs_data(struct i2c_itf_data_s *drv_data, int cs) -{ - DBG_PRINTF("...start -> __pi_spim_get_cs_data...\n"); - DBG_PRINTF("%s:%s:%d\n", __FILE__, __func__, __LINE__); - struct spim_cs_data *cs_cur = drv_data->cs_list; - while (cs_cur != NULL && cs_cur->cs != cs) - { - cs_cur = cs_cur->next; - } - DBG_PRINTF("...end -> __pi_spim_get_cs_data...\n"); - return cs_cur; -} - int pi_i2c_open(struct pi_device *device) { int32_t status = 0; From f25a9f9dab475ecfd4f021508144156774edc916 Mon Sep 17 00:00:00 2001 From: orlandonico Date: Thu, 16 Dec 2021 11:21:45 +0100 Subject: [PATCH 31/86] test: search error --- tests/i2c_eeprom_sync/test_i2c_eeprom_sync.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/i2c_eeprom_sync/test_i2c_eeprom_sync.c b/tests/i2c_eeprom_sync/test_i2c_eeprom_sync.c index 61e10eab..ea7c0ce9 100644 --- a/tests/i2c_eeprom_sync/test_i2c_eeprom_sync.c +++ b/tests/i2c_eeprom_sync/test_i2c_eeprom_sync.c @@ -77,7 +77,7 @@ void eeprom(void) /* the address of our i2c eeprom is normally 0x50 if you want to * specifically test that */ - printf("writing eeprom\n"); + printf("writing eeprom\n"); /** int res = 0; res = pi_i2c_write(&i2c, tx, sizeof(tx), PI_I2C_XFER_START | PI_I2C_XFER_STOP); @@ -85,7 +85,7 @@ void eeprom(void) printf("pi_i2c_write failed\n"); exit(1); } - +*/ /* Wait for write to finish. It takes 5 million ns = 5 ms to finish. */ for (volatile int i = 0; i < 100000; ++i) i++; From 06a3e452dd38c344fc48fa0b37bbd18cdaca1032 Mon Sep 17 00:00:00 2001 From: orlandonico Date: Thu, 16 Dec 2021 13:56:07 +0100 Subject: [PATCH 32/86] rtos/pulpos: changed initialization channel in function __pi_i2c_open --- rtos/pulpos/pulp/drivers/i2c/i2c-v2.c | 228 ++++++++++++++------------ 1 file changed, 122 insertions(+), 106 deletions(-) diff --git a/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c b/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c index 0d554294..def01e1c 100644 --- a/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c +++ b/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c @@ -131,6 +131,9 @@ struct i2c_itf_data_s UDMA_EVENT_OFFSET_TX) static struct i2c_itf_data_s *g_i2c_itf_data[ARCHI_UDMA_NB_I2C] = {NULL}; +static PI_L2 int i2c_channel; +static PI_L2 pos_udma_channel_t i2c_tx_channel; +static PI_L2 pos_udma_channel_t i2c_rx_channel; /* IRQ handler. */ static void __pi_i2c_handler(void *arg); @@ -197,8 +200,10 @@ void __pi_i2c_copy(struct i2c_cs_data_s *cs_data, uint32_t l2_buff, uint32_t len /* Scan i2c bus to detect connected devices. */ int32_t __pi_i2c_detect(struct i2c_cs_data_s *cs_data, struct pi_i2c_conf *conf, uint8_t *rx_data, struct pi_task *task); +void pos_i2c_handle_copy(int event, void *arg); void pos_i2c_create_channel(pos_udma_channel_t *channel, int channel_id, int soc_event); + void pi_i2c_conf_init(pi_i2c_conf_t *conf) { __pi_i2c_conf_init(conf); @@ -211,110 +216,6 @@ void pi_i2c_conf_set_slave_addr(struct pi_i2c_conf *conf, uint16_t slave_addr, conf->is_10_bits = is_10_bits; } -int pi_i2c_open(struct pi_device *device) -{ - int32_t status = 0; - struct pi_i2c_conf *conf = (struct pi_i2c_conf *)device->config; - struct i2c_cs_data_s **cs_data_ = (struct i2c_cs_data_s **)(&device->data); - I2C_TRACE("Open device id=%d\n", conf->itf); - if ((uint8_t)ARCHI_UDMA_NB_I2C < conf->itf) - { - I2C_TRACE_ERR("Error : wrong interface ID, itf=%d !\n", conf->itf); - return -11; - } - printf("__pi_i2c_open 1"); - /** - for (int i = 0; i < ARCHI_NB_FLL; i++) - { - pos_fll_init(i); - } - */ - - printf("__pi_i2c_open 2"); - struct i2c_itf_data_s *driver_data = g_i2c_itf_data[conf->itf]; - unsigned char i2c_id = conf->itf; - int periph_id = ARCHI_UDMA_I2C_ID(i2c_id); - plp_udma_cg_set(plp_udma_cg_get() | (0xffffffff)); - printf("__pi_i2c_open 3"); - if (driver_data == NULL) - { - /* Allocate driver data. */ - driver_data = (struct i2c_itf_data_s *)pi_l2_malloc(sizeof(struct i2c_itf_data_s)); - if (driver_data == NULL) - { - I2C_TRACE_ERR("Driver data alloc failed !\n"); - return -12; - } - driver_data->buf[0] = NULL; - driver_data->fifo_head = NULL; - driver_data->fifo_tail = NULL; - driver_data->pending = NULL; - driver_data->nb_open = 0; - driver_data->i2c_cmd_index = 0; - driver_data->cs_list = NULL; - for (uint32_t i = 0; i < (uint32_t)__PI_I2C_CMD_BUFF_SIZE; i++) - { - driver_data->i2c_cmd_seq[i] = 0; - } - driver_data->i2c_stop_send = 0; - driver_data->i2c_eot_send = 0; - /* Set up i2c cmd stop sequence. */ - driver_data->i2c_stop_seq[0] = I2C_CMD_STOP; - driver_data->i2c_stop_seq[1] = I2C_CMD_WAIT; - driver_data->i2c_stop_seq[2] = conf->wait_cycles > 0xff ? 0xff : conf->wait_cycles; - - driver_data->nb_events = 0; - driver_data->device_id = conf->itf; - /* TODO: Attach freq callback. */ - /* pi_freq_callback_init(&(driver_data->i2c_freq_cb), __pi_i2c_freq_cb, - * driver_data); */ - /* pi_freq_callback_add(&(driver_data->i2c_freq_cb)); */ - g_i2c_itf_data[conf->itf] = driver_data; - - /* Set handlers. */ - /* Enable SOC events propagation to FC. */ - if (driver_data->nb_open == 0) - { - pos_i2c_create_channel(driver_data->rx_channel, UDMA_CHANNEL_ID(ARCHI_UDMA_I2C_ID(i2c_id)), ARCHI_SOC_EVENT_I2C0_RX); - pos_i2c_create_channel(driver_data->tx_channel, UDMA_CHANNEL_ID(ARCHI_UDMA_I2C_ID(i2c_id))+1, ARCHI_SOC_EVENT_I2C0_TX); - driver_data->rx_channel->base = i2c_id; // way to save me the spi interface which is associated with the channel - driver_data->tx_channel->base = i2c_id; // way to save me the spi interface which is associated with the channel - } - soc_eu_fcEventMask_setEvent(ARCHI_SOC_EVENT_I2C0_RX); - soc_eu_fcEventMask_setEvent(ARCHI_SOC_EVENT_I2C0_TX); - } - printf("__pi_i2c_open 4"); - - - I2C_TRACE("I2C(%d) : driver data init done.\n", driver_data->device_id); - struct i2c_cs_data_s *cs_data = - (struct i2c_cs_data_s *)pi_l2_malloc(sizeof(struct i2c_cs_data_s)); - //*cs_data = __pi_i2c_get_cs_data(driver_data, conf->cs); - if (cs_data == NULL) - { - I2C_TRACE_ERR("I2C(%ld) : cs=%d, cs_data alloc failed !\n", driver_data->device_id, - conf->cs); - return -13; - } - cs_data->device_id = conf->itf; - cs_data->cs = conf->cs; - cs_data->max_baudrate = conf->max_baudrate; - uint32_t clk_div = __pi_i2c_clk_div_get(cs_data->max_baudrate); - if (clk_div == 0xFFFFFFFF) - { - pi_l2_free(cs_data, sizeof(struct i2c_cs_data_s)); - I2C_TRACE_ERR("I2C(%d) : error computing clock divider !\n", conf->itf); - return -14; - } - cs_data->clk_div = clk_div; - cs_data->next = NULL; - __pi_i2c_cs_data_add(driver_data, cs_data); - driver_data->nb_open++; - I2C_TRACE("I2C(%d) : opened %ld time(s).\n", driver_data->device_id, driver_data->nb_open); - *cs_data_ = cs_data; - return status; -} - void pi_i2c_close(struct pi_device *device) { struct i2c_cs_data_s *device_data = (struct i2c_cs_data_s *)device->data; @@ -611,6 +512,7 @@ static void __pi_i2c_copy_exec_read(struct i2c_itf_data_s *driver_data, struct p driver_data->i2c_cmd_seq[index++] = I2C_CMD_RD_ACK; } driver_data->i2c_cmd_seq[index++] = I2C_CMD_RD_NACK; + driver_data->rx_channel->pendings[0] = task; /* Enqueue in HW fifo. */ __pi_i2c_cb_buf_enqueue(driver_data, task); @@ -667,6 +569,8 @@ static void __pi_i2c_copy_exec_write(struct i2c_itf_data_s *driver_data, struct driver_data->i2c_cmd_seq[index++] = I2C_CMD_WR; } + driver_data->tx_channel->pendings[0] = task; + /* Enqueue in HW fifo. */ __pi_i2c_cb_buf_enqueue(driver_data, task); @@ -752,7 +656,7 @@ void __pi_i2c_conf_init(pi_i2c_conf_t *conf) conf->ts_ch = 0; conf->ts_evt_id = 0; } - +/** void pos_i2c_handle_copy(int event, void *arg) { printf("pos_i2c_handle_copy"); @@ -775,6 +679,10 @@ void pos_i2c_handle_copy(int event, void *arg) exit(0); } } +*/ +void pos_i2c_handle_copy(int event, void *arg) +{ +} void pos_i2c_create_channel(pos_udma_channel_t *channel, int channel_id, int soc_event) { @@ -785,6 +693,115 @@ void pos_i2c_create_channel(pos_udma_channel_t *channel, int channel_id, int soc channel->base = 0; } +int pi_i2c_open(struct pi_device *device) +{ + int32_t status = 0; + struct pi_i2c_conf *conf = (struct pi_i2c_conf *)device->config; + struct i2c_cs_data_s **cs_data_ = (struct i2c_cs_data_s **)(&device->data); + I2C_TRACE("Open device id=%d\n", conf->itf); + if ((uint8_t)ARCHI_UDMA_NB_I2C < conf->itf) + { + I2C_TRACE_ERR("Error : wrong interface ID, itf=%d !\n", conf->itf); + return -11; + } + printf("__pi_i2c_open 1"); + /** + for (int i = 0; i < ARCHI_NB_FLL; i++) + { + pos_fll_init(i); + } + */ + + printf("__pi_i2c_open 2"); + struct i2c_itf_data_s *driver_data = g_i2c_itf_data[conf->itf]; + unsigned char i2c_id = conf->itf; + int periph_id = ARCHI_UDMA_I2C_ID(i2c_id); + plp_udma_cg_set(plp_udma_cg_get() | (0xffffffff)); + printf("__pi_i2c_open 3"); + if (driver_data == NULL) + { + /* Allocate driver data. */ + driver_data = (struct i2c_itf_data_s *)pi_l2_malloc(sizeof(struct i2c_itf_data_s)); + if (driver_data == NULL) + { + I2C_TRACE_ERR("Driver data alloc failed !\n"); + return -12; + } + driver_data->buf[0] = NULL; + driver_data->fifo_head = NULL; + driver_data->fifo_tail = NULL; + driver_data->pending = NULL; + driver_data->nb_open = 0; + driver_data->i2c_cmd_index = 0; + driver_data->cs_list = NULL; + for (uint32_t i = 0; i < (uint32_t)__PI_I2C_CMD_BUFF_SIZE; i++) + { + driver_data->i2c_cmd_seq[i] = 0; + } + driver_data->i2c_stop_send = 0; + driver_data->i2c_eot_send = 0; + /* Set up i2c cmd stop sequence. */ + driver_data->i2c_stop_seq[0] = I2C_CMD_STOP; + driver_data->i2c_stop_seq[1] = I2C_CMD_WAIT; + driver_data->i2c_stop_seq[2] = conf->wait_cycles > 0xff ? 0xff : conf->wait_cycles; + + driver_data->nb_events = 0; + driver_data->device_id = conf->itf; + /* TODO: Attach freq callback. */ + /* pi_freq_callback_init(&(driver_data->i2c_freq_cb), __pi_i2c_freq_cb, + * driver_data); */ + /* pi_freq_callback_add(&(driver_data->i2c_freq_cb)); */ + g_i2c_itf_data[conf->itf] = driver_data; + + /* Set handlers. */ + /* Enable SOC events propagation to FC. */ + + } + printf("__pi_i2c_open 4"); + + driver_data->rx_channel = &i2c_rx_channel; + driver_data->tx_channel = &i2c_tx_channel; + + if (driver_data->nb_open == 0) + { + pos_i2c_create_channel(driver_data->rx_channel, UDMA_CHANNEL_ID(ARCHI_UDMA_I2C_ID(i2c_id)), ARCHI_SOC_EVENT_I2C0_RX); + pos_i2c_create_channel(driver_data->tx_channel, UDMA_CHANNEL_ID(ARCHI_UDMA_I2C_ID(i2c_id))+1, ARCHI_SOC_EVENT_I2C0_TX); + driver_data->rx_channel->base = i2c_id; // way to save me the spi interface which is associated with the channel + driver_data->tx_channel->base = i2c_id; // way to save me the spi interface which is associated with the channel + } + soc_eu_fcEventMask_setEvent(ARCHI_SOC_EVENT_I2C0_RX); + soc_eu_fcEventMask_setEvent(ARCHI_SOC_EVENT_I2C0_TX); + + + I2C_TRACE("I2C(%d) : driver data init done.\n", driver_data->device_id); + struct i2c_cs_data_s *cs_data = + (struct i2c_cs_data_s *)pi_l2_malloc(sizeof(struct i2c_cs_data_s)); + //*cs_data = __pi_i2c_get_cs_data(driver_data, conf->cs); + if (cs_data == NULL) + { + I2C_TRACE_ERR("I2C(%ld) : cs=%d, cs_data alloc failed !\n", driver_data->device_id, + conf->cs); + return -13; + } + cs_data->device_id = conf->itf; + cs_data->cs = conf->cs; + cs_data->max_baudrate = conf->max_baudrate; + uint32_t clk_div = __pi_i2c_clk_div_get(cs_data->max_baudrate); + if (clk_div == 0xFFFFFFFF) + { + pi_l2_free(cs_data, sizeof(struct i2c_cs_data_s)); + I2C_TRACE_ERR("I2C(%d) : error computing clock divider !\n", conf->itf); + return -14; + } + cs_data->clk_div = clk_div; + cs_data->next = NULL; + __pi_i2c_cs_data_add(driver_data, cs_data); + driver_data->nb_open++; + I2C_TRACE("I2C(%d) : opened %ld time(s).\n", driver_data->device_id, driver_data->nb_open); + *cs_data_ = cs_data; + return status; +} + int32_t __pi_i2c_open(struct pi_i2c_conf *conf, struct i2c_cs_data_s **device_data) { @@ -868,7 +885,6 @@ void __pi_i2c_copy(struct i2c_cs_data_s *cs_data, uint32_t l2_buff, uint32_t len driver_data->device_id, task->data[3], task); if (task->data[3] == RX_CHANNEL) { - driver_data->rx_channel->pendings[0] = task; __pi_i2c_copy_exec_read(driver_data, task); } else From 0ba377082cbc7cde4a1a4bd07e1a04460a1e83c9 Mon Sep 17 00:00:00 2001 From: orlandonico Date: Thu, 16 Dec 2021 14:21:59 +0100 Subject: [PATCH 33/86] rtos/pulpos e test/ update --- rtos/pulpos/pulp/drivers/i2c/i2c-v2.c | 164 +++++++++---------- tests/i2c_eeprom_sync/test_i2c_eeprom_sync.c | 8 +- 2 files changed, 83 insertions(+), 89 deletions(-) diff --git a/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c b/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c index def01e1c..34d21b26 100644 --- a/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c +++ b/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c @@ -46,6 +46,10 @@ * data[5] = repeat_size */ +/**================================================================================================ + ** Define + *================================================================================================**/ + /* Length of i2c cmd buffer. */ #define __PI_I2C_CMD_BUFF_SIZE (16) /* Lenght of i2c stop command sequence. */ @@ -61,6 +65,27 @@ #define I2C_TRACE_ERR(...) ((void)0) #endif /* TRACE_I2C */ +/* Defines for read & write adress access. */ +#define ADDRESS_WRITE 0x0 +#define ADDRESS_READ 0x1 + +/* Max length of a i2c request/data buffer. */ +#define MAX_SIZE (0xFF) + +#define UDMA_EVENT_OFFSET_RX (0) +#define UDMA_EVENT_OFFSET_TX (1) + +#define SOC_EVENT_UDMA_I2C_RX(id) \ + ((ARCHI_UDMA_I2C_ID(id) << ARCHI_SOC_EVENT_UDMA_NB_CHANNEL_EVT_LOG2) + \ + UDMA_EVENT_OFFSET_RX) +#define SOC_EVENT_UDMA_I2C_TX(id) \ + ((ARCHI_UDMA_I2C_ID(id) << ARCHI_SOC_EVENT_UDMA_NB_CHANNEL_EVT_LOG2) + \ + UDMA_EVENT_OFFSET_TX) + +/**================================================================================================ + ** struct + *================================================================================================**/ + typedef enum { RX_CHANNEL = 0, @@ -113,31 +138,9 @@ struct i2c_itf_data_s pos_udma_channel_t *tx_channel; }; -/* Defines for read & write adress access. */ -#define ADDRESS_WRITE 0x0 -#define ADDRESS_READ 0x1 - -/* Max length of a i2c request/data buffer. */ -#define MAX_SIZE (0xFF) - -#define UDMA_EVENT_OFFSET_RX (0) -#define UDMA_EVENT_OFFSET_TX (1) - -#define SOC_EVENT_UDMA_I2C_RX(id) \ - ((ARCHI_UDMA_I2C_ID(id) << ARCHI_SOC_EVENT_UDMA_NB_CHANNEL_EVT_LOG2) + \ - UDMA_EVENT_OFFSET_RX) -#define SOC_EVENT_UDMA_I2C_TX(id) \ - ((ARCHI_UDMA_I2C_ID(id) << ARCHI_SOC_EVENT_UDMA_NB_CHANNEL_EVT_LOG2) + \ - UDMA_EVENT_OFFSET_TX) - -static struct i2c_itf_data_s *g_i2c_itf_data[ARCHI_UDMA_NB_I2C] = {NULL}; -static PI_L2 int i2c_channel; -static PI_L2 pos_udma_channel_t i2c_tx_channel; -static PI_L2 pos_udma_channel_t i2c_rx_channel; - -/* IRQ handler. */ -static void __pi_i2c_handler(void *arg); - +/**================================================================================================ + ** PROTOTYPE FUNCTION + *================================================================================================**/ /* Clock divider. */ static uint32_t __pi_i2c_clk_div_get(uint32_t baudrate); @@ -203,7 +206,17 @@ int32_t __pi_i2c_detect(struct i2c_cs_data_s *cs_data, struct pi_i2c_conf *conf, void pos_i2c_handle_copy(int event, void *arg); void pos_i2c_create_channel(pos_udma_channel_t *channel, int channel_id, int soc_event); +/**================================================================================================ + ** GLOBAL VARIABLE + *================================================================================================**/ +static struct i2c_itf_data_s *g_i2c_itf_data[ARCHI_UDMA_NB_I2C] = {NULL}; +static PI_L2 int i2c_channel; +static PI_L2 pos_udma_channel_t i2c_tx_channel; +static PI_L2 pos_udma_channel_t i2c_rx_channel; +/**================================================================================================ + ** FUNCTION + *================================================================================================**/ void pi_i2c_conf_init(pi_i2c_conf_t *conf) { __pi_i2c_conf_init(conf); @@ -656,14 +669,14 @@ void __pi_i2c_conf_init(pi_i2c_conf_t *conf) conf->ts_ch = 0; conf->ts_evt_id = 0; } -/** + void pos_i2c_handle_copy(int event, void *arg) { printf("pos_i2c_handle_copy"); pos_udma_channel_t *channel = arg; pi_task_t *pending_0 = channel->pendings[0]; uint8_t type_channel = pending_0->data[3]; - if (event==8) + if (event == 8) { __pi_i2c_rx_handler(event, &arg); pos_task_push_locked(pending_0); @@ -679,10 +692,6 @@ void pos_i2c_handle_copy(int event, void *arg) exit(0); } } -*/ -void pos_i2c_handle_copy(int event, void *arg) -{ -} void pos_i2c_create_channel(pos_udma_channel_t *channel, int channel_id, int soc_event) { @@ -695,35 +704,31 @@ void pos_i2c_create_channel(pos_udma_channel_t *channel, int channel_id, int soc int pi_i2c_open(struct pi_device *device) { - int32_t status = 0; + int32_t status = -1; struct pi_i2c_conf *conf = (struct pi_i2c_conf *)device->config; - struct i2c_cs_data_s **cs_data_ = (struct i2c_cs_data_s **)(&device->data); I2C_TRACE("Open device id=%d\n", conf->itf); - if ((uint8_t)ARCHI_UDMA_NB_I2C < conf->itf) - { + status = __pi_i2c_open(conf, (struct i2c_cs_data_s **)&(device->data)); + I2C_TRACE("Open status : %ld, driver data: %lx\n", status, + (struct i2c_cs_data_s *)device->data); + return status; +} + +int32_t __pi_i2c_open(struct pi_i2c_conf *conf, struct i2c_cs_data_s **device_data) +{ + if ((uint8_t)ARCHI_UDMA_NB_I2C < conf->itf) { I2C_TRACE_ERR("Error : wrong interface ID, itf=%d !\n", conf->itf); return -11; } - printf("__pi_i2c_open 1"); - /** - for (int i = 0; i < ARCHI_NB_FLL; i++) - { - pos_fll_init(i); - } - */ - printf("__pi_i2c_open 2"); + unsigned char i2c_id = conf->itf; + int periph_id = ARCHI_UDMA_I2C_ID(i2c_id); + i2c_channel = UDMA_EVENT_ID(periph_id); + plp_udma_cg_set(plp_udma_cg_get() | (1 << periph_id)); struct i2c_itf_data_s *driver_data = g_i2c_itf_data[conf->itf]; - unsigned char i2c_id = conf->itf; - int periph_id = ARCHI_UDMA_I2C_ID(i2c_id); - plp_udma_cg_set(plp_udma_cg_get() | (0xffffffff)); - printf("__pi_i2c_open 3"); - if (driver_data == NULL) - { + if (driver_data == NULL) { /* Allocate driver data. */ driver_data = (struct i2c_itf_data_s *)pi_l2_malloc(sizeof(struct i2c_itf_data_s)); - if (driver_data == NULL) - { + if (driver_data == NULL) { I2C_TRACE_ERR("Driver data alloc failed !\n"); return -12; } @@ -734,8 +739,7 @@ int pi_i2c_open(struct pi_device *device) driver_data->nb_open = 0; driver_data->i2c_cmd_index = 0; driver_data->cs_list = NULL; - for (uint32_t i = 0; i < (uint32_t)__PI_I2C_CMD_BUFF_SIZE; i++) - { + for (uint32_t i = 0; i < (uint32_t)__PI_I2C_CMD_BUFF_SIZE; i++) { driver_data->i2c_cmd_seq[i] = 0; } driver_data->i2c_stop_send = 0; @@ -744,7 +748,6 @@ int pi_i2c_open(struct pi_device *device) driver_data->i2c_stop_seq[0] = I2C_CMD_STOP; driver_data->i2c_stop_seq[1] = I2C_CMD_WAIT; driver_data->i2c_stop_seq[2] = conf->wait_cycles > 0xff ? 0xff : conf->wait_cycles; - driver_data->nb_events = 0; driver_data->device_id = conf->itf; /* TODO: Attach freq callback. */ @@ -753,58 +756,49 @@ int pi_i2c_open(struct pi_device *device) /* pi_freq_callback_add(&(driver_data->i2c_freq_cb)); */ g_i2c_itf_data[conf->itf] = driver_data; - /* Set handlers. */ - /* Enable SOC events propagation to FC. */ - + I2C_TRACE("I2C(%d) : driver data init done.\n", driver_data->device_id); } - printf("__pi_i2c_open 4"); - driver_data->rx_channel = &i2c_rx_channel; + driver_data->rx_channel = &i2c_rx_channel; driver_data->tx_channel = &i2c_tx_channel; - if (driver_data->nb_open == 0) - { - pos_i2c_create_channel(driver_data->rx_channel, UDMA_CHANNEL_ID(ARCHI_UDMA_I2C_ID(i2c_id)), ARCHI_SOC_EVENT_I2C0_RX); - pos_i2c_create_channel(driver_data->tx_channel, UDMA_CHANNEL_ID(ARCHI_UDMA_I2C_ID(i2c_id))+1, ARCHI_SOC_EVENT_I2C0_TX); - driver_data->rx_channel->base = i2c_id; // way to save me the spi interface which is associated with the channel - driver_data->tx_channel->base = i2c_id; // way to save me the spi interface which is associated with the channel - } - soc_eu_fcEventMask_setEvent(ARCHI_SOC_EVENT_I2C0_RX); - soc_eu_fcEventMask_setEvent(ARCHI_SOC_EVENT_I2C0_TX); - - - I2C_TRACE("I2C(%d) : driver data init done.\n", driver_data->device_id); + /* Set handlers. */ + /* Enable SOC events propagation to FC. */ + if (driver_data->nb_open == 0) + { + pos_udma_create_channel(driver_data->rx_channel, UDMA_CHANNEL_ID(periph_id), ARCHI_SOC_EVENT_I2C0_RX); + pos_udma_create_channel(driver_data->tx_channel, UDMA_CHANNEL_ID(periph_id) + 1, ARCHI_SOC_EVENT_I2C0_TX); + driver_data->rx_channel->base=i2c_id; //way to save me the spi interface which is associated with the channel + driver_data->tx_channel->base=i2c_id; //way to save me the spi interface which is associated with the channel + } + + soc_eu_fcEventMask_setEvent(ARCHI_SOC_EVENT_I2C0_RX); + soc_eu_fcEventMask_setEvent(ARCHI_SOC_EVENT_I2C0_TX); + + driver_data->nb_open++; struct i2c_cs_data_s *cs_data = (struct i2c_cs_data_s *)pi_l2_malloc(sizeof(struct i2c_cs_data_s)); - //*cs_data = __pi_i2c_get_cs_data(driver_data, conf->cs); - if (cs_data == NULL) - { + if (cs_data == NULL) { I2C_TRACE_ERR("I2C(%ld) : cs=%d, cs_data alloc failed !\n", driver_data->device_id, - conf->cs); + conf->cs); return -13; } cs_data->device_id = conf->itf; cs_data->cs = conf->cs; cs_data->max_baudrate = conf->max_baudrate; uint32_t clk_div = __pi_i2c_clk_div_get(cs_data->max_baudrate); - if (clk_div == 0xFFFFFFFF) - { + if (clk_div == 0xFFFFFFFF) { pi_l2_free(cs_data, sizeof(struct i2c_cs_data_s)); I2C_TRACE_ERR("I2C(%d) : error computing clock divider !\n", conf->itf); return -14; } cs_data->clk_div = clk_div; cs_data->next = NULL; + driver_data->cs_list = cs_data; __pi_i2c_cs_data_add(driver_data, cs_data); - driver_data->nb_open++; I2C_TRACE("I2C(%d) : opened %ld time(s).\n", driver_data->device_id, driver_data->nb_open); - *cs_data_ = cs_data; - return status; -} - -int32_t __pi_i2c_open(struct pi_i2c_conf *conf, struct i2c_cs_data_s **device_data) -{ - + *device_data = cs_data; + return 0; } void __pi_i2c_close(struct i2c_cs_data_s *device_data) diff --git a/tests/i2c_eeprom_sync/test_i2c_eeprom_sync.c b/tests/i2c_eeprom_sync/test_i2c_eeprom_sync.c index ea7c0ce9..19bad08d 100644 --- a/tests/i2c_eeprom_sync/test_i2c_eeprom_sync.c +++ b/tests/i2c_eeprom_sync/test_i2c_eeprom_sync.c @@ -77,7 +77,7 @@ void eeprom(void) /* the address of our i2c eeprom is normally 0x50 if you want to * specifically test that */ - printf("writing eeprom\n"); /** + printf("writing eeprom\n"); int res = 0; res = pi_i2c_write(&i2c, tx, sizeof(tx), PI_I2C_XFER_START | PI_I2C_XFER_STOP); @@ -85,7 +85,7 @@ void eeprom(void) printf("pi_i2c_write failed\n"); exit(1); } -*/ + /* Wait for write to finish. It takes 5 million ns = 5 ms to finish. */ for (volatile int i = 0; i < 100000; ++i) i++; @@ -95,7 +95,7 @@ void eeprom(void) 0x00, /* addr msb */ 0x00, /* addr lsb */ }; -/** + res = pi_i2c_write(&i2c, eeprom_addr, sizeof(eeprom_addr), PI_I2C_XFER_START | PI_I2C_XFER_STOP); if (res != PI_OK) { @@ -108,7 +108,7 @@ void eeprom(void) printf("pi_i2c_read failed\n"); exit(1); } -*/ + printf("comparing\n"); int error = 0; for (int i = 0; i < sizeof(rx); i++) { From ce656491fa689f786e8774c95421016e4a32dd97 Mon Sep 17 00:00:00 2001 From: orlandonico Date: Thu, 16 Dec 2021 15:11:46 +0100 Subject: [PATCH 34/86] rtos/pulpos update --- rtos/pulpos/pulp/drivers/i2c/i2c-v2.c | 54 ++++++++++++++++++--------- 1 file changed, 36 insertions(+), 18 deletions(-) diff --git a/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c b/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c index 34d21b26..e4ab28d2 100644 --- a/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c +++ b/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c @@ -341,6 +341,7 @@ static void __pi_i2c_handle_pending_transfer(struct i2c_itf_data_s *driver_data) static void __pi_i2c_send_stop_cmd(struct i2c_itf_data_s *driver_data) { + printf("__pi_i2c_send_stop_cmd\n"); driver_data->i2c_stop_send = 0; driver_data->i2c_eot_send = 0; plp_udma_enqueue(UDMA_I2C_CMD_ADDR(driver_data->device_id), (uint32_t)driver_data->i2c_stop_seq, @@ -349,6 +350,7 @@ static void __pi_i2c_send_stop_cmd(struct i2c_itf_data_s *driver_data) static inline void __pi_irq_handle_end_of_task(pi_task_t *task) { + printf("__pi_irq_handle_end_of_task\n"); switch (task->id) { case PI_TASK_NONE_ID: @@ -366,7 +368,23 @@ static inline void __pi_irq_handle_end_of_task(pi_task_t *task) void __pi_i2c_rx_handler(int event, void *arg) { - printf("__pi_i2c_rx_handler\n"); + struct pi_task *task = __pi_i2c_cb_buf_pop(driver_data); + if (task) + pos_task_push_locked(task); + + task = __pi_i2c_task_fifo_pop(driver_data); + if (task) + { + /* Enqueue transfer in HW fifo. */ + if (task->data[3] == RX_CHANNEL) + { + __pi_i2c_copy_exec_read(driver_data, task); + } + else + { + __pi_i2c_copy_exec_write(driver_data, task); + } + } } void __pi_i2c_tx_handler(int event, void *arg) @@ -524,7 +542,7 @@ static void __pi_i2c_copy_exec_read(struct i2c_itf_data_s *driver_data, struct p driver_data->i2c_cmd_seq[index++] = size - 1; driver_data->i2c_cmd_seq[index++] = I2C_CMD_RD_ACK; } - driver_data->i2c_cmd_seq[index++] = I2C_CMD_RD_NACK; + driver_data->i2c_cmd_seq[index++] = I2C_CMD_RD_NACK; driver_data->rx_channel->pendings[0] = task; /* Enqueue in HW fifo. */ @@ -756,24 +774,24 @@ int32_t __pi_i2c_open(struct pi_i2c_conf *conf, struct i2c_cs_data_s **device_da /* pi_freq_callback_add(&(driver_data->i2c_freq_cb)); */ g_i2c_itf_data[conf->itf] = driver_data; - I2C_TRACE("I2C(%d) : driver data init done.\n", driver_data->device_id); - } - - driver_data->rx_channel = &i2c_rx_channel; - driver_data->tx_channel = &i2c_tx_channel; + driver_data->rx_channel = &i2c_rx_channel; + driver_data->tx_channel = &i2c_tx_channel; - /* Set handlers. */ + /* Set handlers. */ /* Enable SOC events propagation to FC. */ - if (driver_data->nb_open == 0) - { - pos_udma_create_channel(driver_data->rx_channel, UDMA_CHANNEL_ID(periph_id), ARCHI_SOC_EVENT_I2C0_RX); - pos_udma_create_channel(driver_data->tx_channel, UDMA_CHANNEL_ID(periph_id) + 1, ARCHI_SOC_EVENT_I2C0_TX); - driver_data->rx_channel->base=i2c_id; //way to save me the spi interface which is associated with the channel - driver_data->tx_channel->base=i2c_id; //way to save me the spi interface which is associated with the channel - } - - soc_eu_fcEventMask_setEvent(ARCHI_SOC_EVENT_I2C0_RX); - soc_eu_fcEventMask_setEvent(ARCHI_SOC_EVENT_I2C0_TX); + if (driver_data->nb_open == 0) + { + pos_udma_create_channel(driver_data->rx_channel, UDMA_CHANNEL_ID(periph_id), ARCHI_SOC_EVENT_I2C0_RX); + pos_udma_create_channel(driver_data->tx_channel, UDMA_CHANNEL_ID(periph_id) + 1, ARCHI_SOC_EVENT_I2C0_TX); + driver_data->rx_channel->base=i2c_id; //way to save me the spi interface which is associated with the channel + driver_data->tx_channel->base=i2c_id; //way to save me the spi interface which is associated with the channel + } + + soc_eu_fcEventMask_setEvent(ARCHI_SOC_EVENT_I2C0_RX); + soc_eu_fcEventMask_setEvent(ARCHI_SOC_EVENT_I2C0_TX); + + I2C_TRACE("I2C(%d) : driver data init done.\n", driver_data->device_id); + } driver_data->nb_open++; struct i2c_cs_data_s *cs_data = From 3f158129ca7a7f067d7099025ac68ed2eca3e831 Mon Sep 17 00:00:00 2001 From: orlandonico Date: Thu, 16 Dec 2021 15:14:24 +0100 Subject: [PATCH 35/86] rtos/pulpos update --- rtos/pulpos/pulp/drivers/i2c/i2c-v2.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c b/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c index e4ab28d2..2c0e9623 100644 --- a/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c +++ b/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c @@ -368,6 +368,10 @@ static inline void __pi_irq_handle_end_of_task(pi_task_t *task) void __pi_i2c_rx_handler(int event, void *arg) { + uint32_t evt = (uint32_t)event; + uint32_t periph_id = (0); + + struct i2c_itf_data_s *driver_data = g_i2c_itf_data[periph_id]; struct pi_task *task = __pi_i2c_cb_buf_pop(driver_data); if (task) pos_task_push_locked(task); From e082403315f1c13955545bba4bb71ce2e2d47795 Mon Sep 17 00:00:00 2001 From: orlandonico Date: Thu, 16 Dec 2021 18:22:36 +0100 Subject: [PATCH 36/86] rtos/pulpos update --- rtos/pulpos/pulp/drivers/i2c/i2c-v2.c | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c b/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c index 2c0e9623..eb4d181d 100644 --- a/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c +++ b/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c @@ -737,10 +737,16 @@ int pi_i2c_open(struct pi_device *device) int32_t __pi_i2c_open(struct pi_i2c_conf *conf, struct i2c_cs_data_s **device_data) { + int irq = hal_irq_disable(); if ((uint8_t)ARCHI_UDMA_NB_I2C < conf->itf) { I2C_TRACE_ERR("Error : wrong interface ID, itf=%d !\n", conf->itf); return -11; } + for (int i = 0; i < ARCHI_NB_FLL; i++) + { + pos_fll_init(i); + } + unsigned char i2c_id = conf->itf; int periph_id = ARCHI_UDMA_I2C_ID(i2c_id); @@ -785,14 +791,14 @@ int32_t __pi_i2c_open(struct pi_i2c_conf *conf, struct i2c_cs_data_s **device_da /* Enable SOC events propagation to FC. */ if (driver_data->nb_open == 0) { - pos_udma_create_channel(driver_data->rx_channel, UDMA_CHANNEL_ID(periph_id), ARCHI_SOC_EVENT_I2C0_RX); - pos_udma_create_channel(driver_data->tx_channel, UDMA_CHANNEL_ID(periph_id) + 1, ARCHI_SOC_EVENT_I2C0_TX); + pos_udma_create_channel(driver_data->rx_channel, UDMA_CHANNEL_ID(periph_id), SOC_EVENT_UDMA_I2C_RX(i2c_id)); + pos_udma_create_channel(driver_data->tx_channel, UDMA_CHANNEL_ID(periph_id) + 1, SOC_EVENT_UDMA_I2C_TX(i2c_id)); driver_data->rx_channel->base=i2c_id; //way to save me the spi interface which is associated with the channel driver_data->tx_channel->base=i2c_id; //way to save me the spi interface which is associated with the channel } - soc_eu_fcEventMask_setEvent(ARCHI_SOC_EVENT_I2C0_RX); - soc_eu_fcEventMask_setEvent(ARCHI_SOC_EVENT_I2C0_TX); + soc_eu_fcEventMask_setEvent(SOC_EVENT_UDMA_I2C_RX(i2c_id)); + soc_eu_fcEventMask_setEvent(SOC_EVENT_UDMA_I2C_TX(i2c_id)); I2C_TRACE("I2C(%d) : driver data init done.\n", driver_data->device_id); } @@ -820,11 +826,13 @@ int32_t __pi_i2c_open(struct pi_i2c_conf *conf, struct i2c_cs_data_s **device_da __pi_i2c_cs_data_add(driver_data, cs_data); I2C_TRACE("I2C(%d) : opened %ld time(s).\n", driver_data->device_id, driver_data->nb_open); *device_data = cs_data; + hal_irq_restore(irq); return 0; } void __pi_i2c_close(struct i2c_cs_data_s *device_data) { + int irq = hal_irq_disable(); struct i2c_itf_data_s *driver_data = g_i2c_itf_data[device_data->device_id]; unsigned char i2c_id = device_data->device_id; int periph_id = ARCHI_UDMA_I2C_ID(i2c_id); @@ -845,8 +853,8 @@ void __pi_i2c_close(struct i2c_cs_data_s *device_data) /* Clear handlers. */ /* Disable SOC events propagation to FC. */ - soc_eu_fcEventMask_clearEvent(ARCHI_SOC_EVENT_I2C0_RX); - soc_eu_fcEventMask_clearEvent(ARCHI_SOC_EVENT_I2C0_TX); + soc_eu_fcEventMask_clearEvent(SOC_EVENT_UDMA_I2C_RX(i2c_id)); + soc_eu_fcEventMask_clearEvent(SOC_EVENT_UDMA_I2C_TX(i2c_id)); /* Enable UDMA CG. */ plp_udma_cg_set(plp_udma_cg_get() & ~(1 << periph_id)); @@ -856,6 +864,7 @@ void __pi_i2c_close(struct i2c_cs_data_s *device_data) g_i2c_itf_data[device_data->device_id] = NULL; } pi_l2_free(device_data, sizeof(struct i2c_cs_data_s)); + hal_irq_restore(irq); } void __pi_i2c_ioctl(struct i2c_cs_data_s *device_data, uint32_t cmd, void *arg) From 35ccfed9fb80944676573eac789026e6b899cefe Mon Sep 17 00:00:00 2001 From: orlandonico Date: Thu, 16 Dec 2021 18:39:17 +0100 Subject: [PATCH 37/86] rtos/pulpos update --- rtos/pulpos/pulp/drivers/i2c/i2c-v2.c | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c b/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c index eb4d181d..352de807 100644 --- a/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c +++ b/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c @@ -82,6 +82,8 @@ ((ARCHI_UDMA_I2C_ID(id) << ARCHI_SOC_EVENT_UDMA_NB_CHANNEL_EVT_LOG2) + \ UDMA_EVENT_OFFSET_TX) +#define SOC_EVENT_TX 3 + /**================================================================================================ ** struct *================================================================================================**/ @@ -698,12 +700,12 @@ void pos_i2c_handle_copy(int event, void *arg) pos_udma_channel_t *channel = arg; pi_task_t *pending_0 = channel->pendings[0]; uint8_t type_channel = pending_0->data[3]; - if (event == 8) + if (event == 2) { __pi_i2c_rx_handler(event, &arg); pos_task_push_locked(pending_0); } - else if (event == 9) + else if (event == 3) { __pi_i2c_tx_handler(event, &arg); pos_task_push_locked(pending_0); @@ -792,13 +794,13 @@ int32_t __pi_i2c_open(struct pi_i2c_conf *conf, struct i2c_cs_data_s **device_da if (driver_data->nb_open == 0) { pos_udma_create_channel(driver_data->rx_channel, UDMA_CHANNEL_ID(periph_id), SOC_EVENT_UDMA_I2C_RX(i2c_id)); - pos_udma_create_channel(driver_data->tx_channel, UDMA_CHANNEL_ID(periph_id) + 1, SOC_EVENT_UDMA_I2C_TX(i2c_id)); + pos_udma_create_channel(driver_data->tx_channel, UDMA_CHANNEL_ID(periph_id) + 1, SOC_EVENT_TX(i2c_id)); driver_data->rx_channel->base=i2c_id; //way to save me the spi interface which is associated with the channel driver_data->tx_channel->base=i2c_id; //way to save me the spi interface which is associated with the channel } soc_eu_fcEventMask_setEvent(SOC_EVENT_UDMA_I2C_RX(i2c_id)); - soc_eu_fcEventMask_setEvent(SOC_EVENT_UDMA_I2C_TX(i2c_id)); + soc_eu_fcEventMask_setEvent(SOC_EVENT_TX(i2c_id)); I2C_TRACE("I2C(%d) : driver data init done.\n", driver_data->device_id); } @@ -854,7 +856,7 @@ void __pi_i2c_close(struct i2c_cs_data_s *device_data) /* Clear handlers. */ /* Disable SOC events propagation to FC. */ soc_eu_fcEventMask_clearEvent(SOC_EVENT_UDMA_I2C_RX(i2c_id)); - soc_eu_fcEventMask_clearEvent(SOC_EVENT_UDMA_I2C_TX(i2c_id)); + soc_eu_fcEventMask_clearEvent(SOC_EVENT_TX(i2c_id)); /* Enable UDMA CG. */ plp_udma_cg_set(plp_udma_cg_get() & ~(1 << periph_id)); From e164b94b99e373ae456f06ca7c54936357029236 Mon Sep 17 00:00:00 2001 From: orlandonico Date: Thu, 16 Dec 2021 18:40:24 +0100 Subject: [PATCH 38/86] rtos/pulpos update --- rtos/pulpos/pulp/drivers/i2c/i2c-v2.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c b/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c index 352de807..5620ca7e 100644 --- a/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c +++ b/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c @@ -794,13 +794,13 @@ int32_t __pi_i2c_open(struct pi_i2c_conf *conf, struct i2c_cs_data_s **device_da if (driver_data->nb_open == 0) { pos_udma_create_channel(driver_data->rx_channel, UDMA_CHANNEL_ID(periph_id), SOC_EVENT_UDMA_I2C_RX(i2c_id)); - pos_udma_create_channel(driver_data->tx_channel, UDMA_CHANNEL_ID(periph_id) + 1, SOC_EVENT_TX(i2c_id)); + pos_udma_create_channel(driver_data->tx_channel, UDMA_CHANNEL_ID(periph_id) + 1, SOC_EVENT_TX); driver_data->rx_channel->base=i2c_id; //way to save me the spi interface which is associated with the channel driver_data->tx_channel->base=i2c_id; //way to save me the spi interface which is associated with the channel } soc_eu_fcEventMask_setEvent(SOC_EVENT_UDMA_I2C_RX(i2c_id)); - soc_eu_fcEventMask_setEvent(SOC_EVENT_TX(i2c_id)); + soc_eu_fcEventMask_setEvent(SOC_EVENT_TX); I2C_TRACE("I2C(%d) : driver data init done.\n", driver_data->device_id); } @@ -856,7 +856,7 @@ void __pi_i2c_close(struct i2c_cs_data_s *device_data) /* Clear handlers. */ /* Disable SOC events propagation to FC. */ soc_eu_fcEventMask_clearEvent(SOC_EVENT_UDMA_I2C_RX(i2c_id)); - soc_eu_fcEventMask_clearEvent(SOC_EVENT_TX(i2c_id)); + soc_eu_fcEventMask_clearEvent(SOC_EVENT_TX); /* Enable UDMA CG. */ plp_udma_cg_set(plp_udma_cg_get() & ~(1 << periph_id)); From bd6a4fcced49a2d007a5ef6c8e01cb1e7bddaa88 Mon Sep 17 00:00:00 2001 From: orlandonico Date: Tue, 28 Dec 2021 11:32:20 +0100 Subject: [PATCH 39/86] Add __pi_spi_open and __pi_spi_close --- rtos/pulpos/pulp/drivers/spim/spim-v3.c | 92 ++++++++++++++++--------- 1 file changed, 59 insertions(+), 33 deletions(-) diff --git a/rtos/pulpos/pulp/drivers/spim/spim-v3.c b/rtos/pulpos/pulp/drivers/spim/spim-v3.c index 66bed386..22dfbc93 100644 --- a/rtos/pulpos/pulp/drivers/spim/spim-v3.c +++ b/rtos/pulpos/pulp/drivers/spim/spim-v3.c @@ -50,6 +50,7 @@ #include #include + /**================================================================================================ ** DEFINE *================================================================================================**/ @@ -95,11 +96,6 @@ typedef void (*pi_fc_event_handler_t)(void *arg); /**================================================================================================ ** STRUCT *================================================================================================**/ -struct spim_drv_fifo -{ - pi_task_t *fifo_head; - pi_task_t *fifo_tail; -}; /* Structure holding infos for each chip selects (itf, cs, polarity etc...) */ struct spim_cs_data @@ -116,6 +112,13 @@ struct spim_cs_data uint8_t big_endian; }; +struct spim_drv_fifo +{ + pi_task_t *fifo_head; + pi_task_t *fifo_tail; +}; + + /* Structure holding info for each interfaces * most notably the fifo of enqueued transfers and meta to know whether * interface is free or not */ @@ -131,6 +134,8 @@ struct spim_driver_data pos_udma_channel_t *tx_channel; }; + + struct spim_transfer { pi_spi_flags_e flags; @@ -146,7 +151,7 @@ struct spim_transfer *================================================================================================**/ void __spim_execute_callback(void *arg); int __pi_spi_open(struct spim_cs_data **cs_data, struct pi_spi_conf *conf); -int __pi_spi_close(struct spim_cs_data *cs_data); +void __pi_spi_close(struct spim_cs_data *cs_data, struct pi_spi_conf *conf); static int32_t __pi_spim_drv_fifo_enqueue(struct spim_cs_data *data, struct spim_transfer *transfer, pi_task_t *end_task); static inline pi_task_t *__pi_spim_drv_fifo_pop(struct spim_driver_data *data); /* static inline void __pi_spim_exec_transfer(pi_task_t *task); */ @@ -159,6 +164,7 @@ void system_core_clock_update(void); uint32_t system_core_clock_get(void); void pos_spi_handle_copy(int event, void *arg); void pos_spi_create_channel(pos_udma_channel_t *channel, int channel_id, int soc_event); + /**================================================================================================ ** GLOBAL VARIABLE *================================================================================================**/ @@ -182,6 +188,14 @@ uint32_t system_core_clock_get(void) return system_core_clock; } +uint32_t deactive_irq(void){ + return hal_irq_disable(); +} + +void active_irq(uint32_t irq){ + hal_irq_restore(irq); +} + static inline uint32_t __pi_spi_get_config(struct spim_cs_data *cs_data) { return cs_data->cfg; @@ -194,7 +208,7 @@ static inline int32_t __pi_spim_drv_fifo_enqueue(struct spim_cs_data *cs_data, { DBG_PRINTF("%s:%s:%d: ...start -> __pi_spim_drv_fifo_enqueue...\n", __FILE__, __func__, __LINE__); DBG_PRINTF("%s:%s:%d\n", __FILE__, __func__, __LINE__); - uint32_t irq = hal_irq_disable(); + uint32_t irq = deactive_irq(); struct spim_driver_data *drv_data = cs_data->drv_data; /* Callback args. */ end_task->data[0] = (uintptr_t)cs_data; @@ -218,7 +232,7 @@ static inline int32_t __pi_spim_drv_fifo_enqueue(struct spim_cs_data *cs_data, drv_data->drv_fifo->fifo_tail = drv_data->drv_fifo->fifo_tail->next; } - hal_irq_restore(irq); + active_irq(irq); DBG_PRINTF("%s:%s:%d: ...end -> __pi_spim_drv_fifo_enqueue...\n", __FILE__, __func__, __LINE__); return 0; } @@ -236,7 +250,7 @@ static inline pi_task_t *__pi_spim_drv_fifo_pop(struct spim_driver_data *data) asm volatile("csrr %0, 0x300" : "=r"(check_300)); DBG_PRINTF("%s:%s:%d Value of register 0x300: 0x%x\n", __FILE__, __func__, __LINE__, check_300); - uint32_t irq = hal_irq_disable(); + uint32_t irq = deactive_irq(); DBG_PRINTF("%s:%s:%d: ...irq = %u...\n", __FILE__, __func__, __LINE__, irq); if (data->drv_fifo->fifo_head != NULL) { @@ -248,7 +262,7 @@ static inline pi_task_t *__pi_spim_drv_fifo_pop(struct spim_driver_data *data) } } // write in the 0x300 register - hal_irq_restore(irq); + active_irq(irq); DBG_PRINTF("%s:%s:%d: ...end -> __pi_spim_drv_fifo_pop...\n", __FILE__, __func__, __LINE__); return task_return; } @@ -410,7 +424,7 @@ void __pi_spi_receive_async(struct spim_cs_data *cs_data, void *data, DBG_PRINTF("%s:%s:%d: udma_cmd = %p\n", __FILE__, __func__, __LINE__, &(cs_data->udma_cmd[0])); - uint32_t irq = hal_irq_disable(); + uint32_t irq = deactive_irq(); uint8_t bitsword = 0; uint8_t UDMA_CORE_CFG = 0; @@ -476,7 +490,7 @@ void __pi_spi_receive_async(struct spim_cs_data *cs_data, void *data, __pi_spim_drv_fifo_enqueue(cs_data, &transfer, task); } } - hal_irq_restore(irq); + active_irq(irq); DBG_PRINTF("...end -> __pi_spi_receive_async...\n"); } @@ -503,7 +517,7 @@ void __pi_spi_receive_async_with_ucode(struct spim_cs_data *cs_data, void *data, int cmd_id = 0; - uint32_t irq = hal_irq_disable(); + uint32_t irq = deactive_irq(); if(!drv_data->end_of_transfer) { if(cs_mode != PI_SPI_CS_AUTO) @@ -541,7 +555,7 @@ void __pi_spi_receive_async_with_ucode(struct spim_cs_data *cs_data, void *data, __pi_spim_drv_fifo_enqueue(cs_data, &transfer, task); #endif } - hal_irq_restore(irq); + active_irq(irq); #endif } @@ -568,7 +582,7 @@ void __pi_spi_send_async_with_ucode(struct spim_cs_data *cs_data, void *data, int cmd_id = 0; - uint32_t irq = hal_irq_disable(); + uint32_t irq = deactive_irq(); if(!drv_data->end_of_transfer) { if(cs_mode != PI_SPI_CS_AUTO) @@ -612,7 +626,7 @@ void __pi_spi_send_async_with_ucode(struct spim_cs_data *cs_data, void *data, __pi_spim_drv_fifo_enqueue(cs_data, &transfer, task); #endif } - hal_irq_restore(irq); + active_irq(irq); #endif } @@ -649,7 +663,7 @@ void __pi_spi_send_async(struct spim_cs_data *cs_data, void *data, size_t len, // Address of the command buffer to be sent to the uDMA DBG_PRINTF("%s:%s:%d: udma_cmd = %p\n", __FILE__, __func__, __LINE__, &(cs_data->udma_cmd[0])); - uint32_t irq = hal_irq_disable(); + uint32_t irq = deactive_irq(); uint8_t bitsword = 0; uint8_t UDMA_CORE_CFG = 0; @@ -716,7 +730,7 @@ void __pi_spi_send_async(struct spim_cs_data *cs_data, void *data, size_t len, __pi_spim_drv_fifo_enqueue(cs_data, &transfer, task); } } - hal_irq_restore(irq); + active_irq(irq); DBG_PRINTF("...end -> __pi_spi_send_async...\n"); } @@ -743,7 +757,7 @@ void __pi_spi_xfer_async(struct spim_cs_data *cs_data, void *tx_data, int cmd_id = 0; - uint32_t irq = hal_irq_disable(); + uint32_t irq = deactive_irq(); if(!drv_data->end_of_transfer) { cs_data->udma_cmd[0] = cfg; @@ -807,7 +821,7 @@ void __pi_spi_xfer_async(struct spim_cs_data *cs_data, void *tx_data, transfer.is_send = (uint32_t) tx_data; // sending a pointer means xfer __pi_spim_drv_fifo_enqueue(cs_data, &transfer, task); } - hal_irq_restore(irq); + active_irq(irq); #endif } @@ -842,20 +856,27 @@ void pos_spi_create_channel(pos_udma_channel_t *channel, int channel_id, int soc int pi_spi_open(struct pi_device *device) { - int irq = hal_irq_disable(); + int status = -1; + status = __pi_spi_open((struct spim_cs_data **)(&device->data), (struct pi_spi_conf *)device->config); + return status; +} + +int __pi_spi_open(struct spim_cs_data **cs_data, struct pi_spi_conf *conf) +{ + int irq = deactive_irq(); for (int i = 0; i < ARCHI_NB_FLL; i++) { pos_fll_init(i); } - struct pi_spi_conf *conf = (struct pi_spi_conf *)device->config; + //struct pi_spi_conf *conf = (struct pi_spi_conf *)device->config; unsigned char spi_id = conf->itf; int periph_id = ARCHI_UDMA_SPIM_ID(spi_id); spi_channel = UDMA_EVENT_ID(periph_id); int cs = conf->cs; int status = 0; - struct spim_cs_data **cs_data = (struct spim_cs_data **)(&device->data); + //struct spim_cs_data **cs_data = (struct spim_cs_data **)(&device->data); plp_udma_cg_set(plp_udma_cg_get() | (1 << periph_id)); struct spim_driver_data *drv_data; @@ -874,7 +895,7 @@ int pi_spi_open(struct pi_device *device) // controllo che il puntatore sia = 0 if (!drv_data->drv_fifo) { - hal_irq_restore(irq); + active_irq(irq); return -1; } drv_data->device_id = conf->itf; @@ -902,7 +923,7 @@ int pi_spi_open(struct pi_device *device) if (_cs_data == NULL) { DBG_PRINTF("[%s] _cs_data alloc failed\n", __func__); - hal_irq_restore(irq); + active_irq(irq); return -2; } if (clk_div > 0xFF) @@ -910,7 +931,7 @@ int pi_spi_open(struct pi_device *device) DBG_PRINTF( "[%s] clk_div, %" PRIu32 ", does not fit into 8 bits. SoC frequency too high.\n", __func__, clk_div); - hal_irq_restore(irq); + active_irq(irq); return -3; } @@ -928,22 +949,27 @@ int pi_spi_open(struct pi_device *device) __pi_spim_cs_data_add(drv_data, _cs_data); } - hal_irq_restore(irq); + active_irq(irq); return status; } void pi_spi_close(struct pi_device *device) +{ + __pi_spi_close((struct spim_cs_data *)(device->data), (struct pi_spi_conf *)device->config); +} + +void __pi_spi_close(struct spim_cs_data *cs_data, struct pi_spi_conf *conf) { DBG_PRINTF("...start -> pi_spi_close...\n"); - struct pi_spi_conf *conf = (struct pi_spi_conf *)device->config; - uint32_t irq = hal_irq_disable(); + //struct pi_spi_conf *conf = (struct pi_spi_conf *)device->config; + uint32_t irq = deactive_irq(); unsigned char spi_id = conf->itf; int periph_id = ARCHI_UDMA_SPIM_ID(spi_id); int spi_channel = UDMA_EVENT_ID(periph_id); /* TODO: paste beg */ - struct spim_cs_data *cs_data = device->data; + //struct spim_cs_data *cs_data = device->data; struct spim_driver_data *drv_data = cs_data->drv_data; __pi_spim_cs_data_del(drv_data, cs_data->cs); /* @@ -965,14 +991,14 @@ void pi_spi_close(struct pi_device *device) pi_default_free(drv_data->drv_fifo, sizeof(drv_data->drv_fifo)); pi_default_free(drv_data, sizeof(drv_data)); - hal_irq_restore(irq); + active_irq(irq); return; } pi_data_free(cs_data, sizeof(cs_data)); /* TODO: moved to end return drv_data->nb_open; */ /* TODO: paste end */ - hal_irq_restore(irq); + active_irq(irq); DBG_PRINTF("...end -> pi_spi_close...\n"); return; } @@ -1072,4 +1098,4 @@ void pi_spi_transfer_async(struct pi_device *device, void *tx_data, { /* TODO */ __pi_spi_xfer_async(device->data, tx_data, rx_data, len, flag, task); -} \ No newline at end of file +} From fb02591b3a047548fea8631405252aafef3627c7 Mon Sep 17 00:00:00 2001 From: orlandonico Date: Tue, 28 Dec 2021 15:11:38 +0100 Subject: [PATCH 40/86] rtos/pulpos: modify default_rules.mk for abstraction layer pulpos --- rtos/pulpos/common/rules/pulpos/default_rules.mk | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/rtos/pulpos/common/rules/pulpos/default_rules.mk b/rtos/pulpos/common/rules/pulpos/default_rules.mk index 66d9f11a..eef41fe1 100644 --- a/rtos/pulpos/common/rules/pulpos/default_rules.mk +++ b/rtos/pulpos/common/rules/pulpos/default_rules.mk @@ -50,6 +50,12 @@ ifdef PULPOS_PLATFORM platform=$(PULPOS_PLATFORM) endif +PULP_APP_CFLAGS += -I$(PULP_SDK_HOME)/rtos/pulpos/pulp/drivers/spim/abstraction_layer_spi_pulpos/include/ +PULP_APP_SRCS += $(PULP_SDK_HOME)/rtos/pulpos/pulp/drivers/spim/abstraction_layer_spi_pulpos/src/abstraction_layer_spi.c + +PULP_APP_CFLAGS += -I$(PULP_SDK_HOME)/rtos/pulpos/pulp/drivers/spim/common/include/ +PULP_APP_SRCS += $(PULP_SDK_HOME)/rtos/pulpos/pulp/drivers/spim/common/src/common_spi.c +# ifndef platform platform=gvsoc From dab052f50b38ea619d26b7b75681eac200145657 Mon Sep 17 00:00:00 2001 From: orlandonico Date: Tue, 28 Dec 2021 15:17:16 +0100 Subject: [PATCH 41/86] rtos/pulpos: modify spim-v3 for abstraction layer spi --- rtos/pulpos/pulp/drivers/spim/spim-v3.c | 1059 ++--------------------- 1 file changed, 75 insertions(+), 984 deletions(-) diff --git a/rtos/pulpos/pulp/drivers/spim/spim-v3.c b/rtos/pulpos/pulp/drivers/spim/spim-v3.c index 22dfbc93..6bdc5731 100644 --- a/rtos/pulpos/pulp/drivers/spim/spim-v3.c +++ b/rtos/pulpos/pulp/drivers/spim/spim-v3.c @@ -31,25 +31,14 @@ /**================================================================================================ * * INFO * Important definitions: - * pulp-sdk/rtos/pulpos/pulp_archi/include/archi/chips/pulp/properties.h - * pulp-sdk/rtos/pulpos/pulp_archi/include/archi/chips/pulp/memory_map.h + * pulp-sdk/rtos/pulpos/pulp_archi/include/archi/chips/pulp/properties.h + * pulp-sdk/rtos/pulpos/pulp_archi/include/archi/chips/pulp/memory_map.h *================================================================================================**/ /**================================================================================================ ** INCLUDE *================================================================================================**/ - -#include "pmsis.h" -#include -#include -#include -#include -#include -#include -#include -#include -#include - +#include "abstraction_layer_spi.h" /**================================================================================================ ** DEFINE @@ -61,1041 +50,143 @@ #define DBG_PRINTF //////printf #else #define DEBUG_PRINTF(...) ((void)0) - #define DBG_PRINTF(...) ((void)0) + #define DBG_PRINTF(...) ((void)0) #endif */ -#define DEBUG_PRINTF(...) ((void)0) -#define DBG_PRINTF(...) ((void)0) - -/* TODO: remove this glue */ - -#define SPIM_CS_DATA_GET_DRV_DATA(cs_data) (cs_data->drv_data) - -#define NB_SOC_EVENTS (ARCHI_SOC_EVENT_NB_TOTAL) - -typedef void (*pi_fc_event_handler_t)(void *arg); - -// va bene per Control-Pulp -/* -** #define pi_default_malloc(x) malloc(x) -** #define pi_default_free(x,y) free(x) -** #define pi_data_malloc(x) malloc(x) -** #define pi_data_free(x,y) free(x) -*/ -// Pulp-Open -#define pi_default_malloc(x) pi_l2_malloc(x) -#define pi_default_free(x, y) pi_l2_free(x, y) -#define pi_data_malloc(x) pi_l2_malloc(x) -#define pi_data_free(x, y) pi_l2_free(x, y) - -#define UDMA_EVENT_OFFSET_SPI_EOT 3 -#define SOC_EVENT_UDMA_SPIM_EOT(id) \ - ((ARCHI_UDMA_SPIM_ID(id) << ARCHI_SOC_EVENT_UDMA_NB_CHANNEL_EVT_LOG2) + \ - UDMA_EVENT_OFFSET_SPI_EOT) /**================================================================================================ ** STRUCT *================================================================================================**/ -/* Structure holding infos for each chip selects (itf, cs, polarity etc...) */ -struct spim_cs_data -{ - struct spim_cs_data *next; - struct spim_driver_data *drv_data; - uint32_t cfg; - uint32_t udma_cmd[8]; - uint32_t max_baudrate; - uint32_t polarity; - uint32_t phase; - uint8_t cs; - uint8_t wordsize; - uint8_t big_endian; -}; - -struct spim_drv_fifo -{ - pi_task_t *fifo_head; - pi_task_t *fifo_tail; -}; - - -/* Structure holding info for each interfaces - * most notably the fifo of enqueued transfers and meta to know whether - * interface is free or not */ -struct spim_driver_data -{ - struct spim_drv_fifo *drv_fifo; // does the same task as Dolphine with true and false - struct spim_cs_data *cs_list; // list of devices connected to the spi interface - pi_task_t *repeat_transfer; - pi_task_t *end_of_transfer; // gli associo un task per sapere se un trasferimento ha finito? - uint32_t nb_open; - uint8_t device_id; - pos_udma_channel_t *rx_channel; - pos_udma_channel_t *tx_channel; -}; - - - -struct spim_transfer -{ - pi_spi_flags_e flags; - void *data; - uint32_t len; - uint32_t cfg_cmd; - uint32_t byte_align; - uint32_t is_send; -}; /**================================================================================================ ** PROTOTYPE FUNCTION *================================================================================================**/ -void __spim_execute_callback(void *arg); -int __pi_spi_open(struct spim_cs_data **cs_data, struct pi_spi_conf *conf); -void __pi_spi_close(struct spim_cs_data *cs_data, struct pi_spi_conf *conf); -static int32_t __pi_spim_drv_fifo_enqueue(struct spim_cs_data *data, struct spim_transfer *transfer, pi_task_t *end_task); -static inline pi_task_t *__pi_spim_drv_fifo_pop(struct spim_driver_data *data); -/* static inline void __pi_spim_exec_transfer(pi_task_t *task); */ -void __pi_spi_send_async(struct spim_cs_data *cs_data, void *data, size_t len, pi_spi_flags_e flags, pi_task_t *task); -void __pi_spi_receive_async(struct spim_cs_data *cs_data, void *data, size_t len, pi_spi_flags_e flags, pi_task_t *task); -void __pi_spi_receive_async_with_ucode(struct spim_cs_data *cs_data, void *data, size_t len, pi_spi_flags_e flags, int ucode_size, void *ucode, pi_task_t *task); -void __pi_spi_send_async_with_ucode(struct spim_cs_data *cs_data, void *data, size_t len, pi_spi_flags_e flags, int ucode_size, void *ucode, pi_task_t *task); -void __pi_spi_xfer_async(struct spim_cs_data *cs_data, void *tx_data, void *rx_data, size_t len, pi_spi_flags_e flags, pi_task_t *task); -void system_core_clock_update(void); -uint32_t system_core_clock_get(void); -void pos_spi_handle_copy(int event, void *arg); -void pos_spi_create_channel(pos_udma_channel_t *channel, int channel_id, int soc_event); + /**================================================================================================ ** GLOBAL VARIABLE *================================================================================================**/ -volatile uint32_t system_core_clock; -static PI_L2 int spi_open_count = 0; -static PI_L2 int spi_channel; -struct spim_driver_data *__g_spim_drv_data[ARCHI_UDMA_NB_SPIM] = {0}; + /**================================================================================================ ** FUNCTION *================================================================================================**/ - -void system_core_clock_update(void) -{ - // system_core_clock = pi_fll_get_frequency(FLL_SOC, 0); - system_core_clock = pi_freq_get(FLL_SOC); -} - -uint32_t system_core_clock_get(void) -{ - system_core_clock_update(); - return system_core_clock; -} - -uint32_t deactive_irq(void){ - return hal_irq_disable(); -} - -void active_irq(uint32_t irq){ - hal_irq_restore(irq); -} - -static inline uint32_t __pi_spi_get_config(struct spim_cs_data *cs_data) -{ - return cs_data->cfg; -} - -// It is used to put an item in the list. The new item is put at the top of the list. -static inline int32_t __pi_spim_drv_fifo_enqueue(struct spim_cs_data *cs_data, - struct spim_transfer *transfer, - pi_task_t *end_task) -{ - DBG_PRINTF("%s:%s:%d: ...start -> __pi_spim_drv_fifo_enqueue...\n", __FILE__, __func__, __LINE__); - DBG_PRINTF("%s:%s:%d\n", __FILE__, __func__, __LINE__); - uint32_t irq = deactive_irq(); - struct spim_driver_data *drv_data = cs_data->drv_data; - /* Callback args. */ - end_task->data[0] = (uintptr_t)cs_data; - end_task->data[1] = (uintptr_t)transfer->data; - end_task->data[2] = (uintptr_t)transfer->len; - end_task->data[3] = (uintptr_t)transfer->flags; - end_task->data[4] = (uintptr_t)end_task; - end_task->data[5] = (uintptr_t)transfer->is_send; - end_task->next = NULL; - /* Enqueue transfer in drv fifo. */ - if (drv_data->drv_fifo->fifo_head == NULL) - { - /* Empty fifo. */ - drv_data->drv_fifo->fifo_head = end_task; - drv_data->drv_fifo->fifo_tail = drv_data->drv_fifo->fifo_head; - } - else - { - /* Enqueue to tail. */ - drv_data->drv_fifo->fifo_tail->next = end_task; - drv_data->drv_fifo->fifo_tail = - drv_data->drv_fifo->fifo_tail->next; - } - active_irq(irq); - DBG_PRINTF("%s:%s:%d: ...end -> __pi_spim_drv_fifo_enqueue...\n", __FILE__, __func__, __LINE__); - return 0; -} - -// I put the next item on the list at the top of the list. -static inline pi_task_t *__pi_spim_drv_fifo_pop(struct spim_driver_data *data) -{ - // DBG_PRINTF("%s:%s:%d: \n", __FILE__, __func__, __LINE__); - DBG_PRINTF("%s:%s:%d: ...start -> __pi_spim_drv_fifo_pop...\n", __FILE__, __func__, __LINE__); - DBG_PRINTF("%s:%s:%d\n", __FILE__, __func__, __LINE__); - pi_task_t *task_return = NULL; - // clean the value in the position 7 of regiter 0x300 - // irq = 1100010000000 - int check_300 = 0; - asm volatile("csrr %0, 0x300" - : "=r"(check_300)); - DBG_PRINTF("%s:%s:%d Value of register 0x300: 0x%x\n", __FILE__, __func__, __LINE__, check_300); - uint32_t irq = deactive_irq(); - DBG_PRINTF("%s:%s:%d: ...irq = %u...\n", __FILE__, __func__, __LINE__, irq); - if (data->drv_fifo->fifo_head != NULL) - { - task_return = data->drv_fifo->fifo_head; - data->drv_fifo->fifo_head = data->drv_fifo->fifo_head->next; - if (data->drv_fifo->fifo_head == NULL) - { - data->drv_fifo->fifo_tail = NULL; - } - } - // write in the 0x300 register - active_irq(irq); - DBG_PRINTF("%s:%s:%d: ...end -> __pi_spim_drv_fifo_pop...\n", __FILE__, __func__, __LINE__); - return task_return; -} - -// It goes to find a certain structure in the list through the information on the chip select -static inline struct spim_cs_data *__pi_spim_get_cs_data(struct spim_driver_data *drv_data, int cs) -{ - DBG_PRINTF("...start -> __pi_spim_get_cs_data...\n"); - DBG_PRINTF("%s:%s:%d\n", __FILE__, __func__, __LINE__); - struct spim_cs_data *cs_cur = drv_data->cs_list; - while (cs_cur != NULL && cs_cur->cs != cs) - { - cs_cur = cs_cur->next; - } - DBG_PRINTF("...end -> __pi_spim_get_cs_data...\n"); - return cs_cur; -} - -static inline void __pi_spim_cs_data_del(struct spim_driver_data *drv_data, - int cs) -{ - DBG_PRINTF("...start -> __pi_spim_cs_data_del...\n"); - DBG_PRINTF("%s:%s:%d\n", __FILE__, __func__, __LINE__); - struct spim_cs_data *cs_cur = drv_data->cs_list; - struct spim_cs_data *cs_prev = cs_cur; - while (cs_cur != NULL && cs_cur->cs != cs) - { - cs_prev = cs_cur; - cs_cur = cs_cur->next; - } - if (cs_cur) - { - cs_prev->next = cs_cur->next; - cs_cur->next = NULL; - } - DBG_PRINTF("...end -> __pi_spim_cs_data_del...\n"); -} - -static inline void __pi_spim_cs_data_add(struct spim_driver_data *drv_data, struct spim_cs_data *cs_data) -{ - DBG_PRINTF("...start -> __pi_spim_cs_data_add...\n"); - DBG_PRINTF("%s:%s:%d\n", __FILE__, __func__, __LINE__); - // head insert, most recently allocated should be most recently used - cs_data->drv_data = drv_data; - cs_data->next = drv_data->cs_list; - DBG_PRINTF("...end -> __pi_spim_cs_data_add...\n"); -} - -static uint32_t __pi_spi_clk_div_get(uint32_t spi_freq) +uint32_t pi_spi_get_config(struct pi_device *device) { - DBG_PRINTF("...start -> __pi_spi_clk_div_get...\n"); - DBG_PRINTF("%s:%s:%d\n", __FILE__, __func__, __LINE__); - uint32_t periph_freq = pi_freq_get(PI_FREQ_DOMAIN_PERIPH); - DBG_PRINTF("%s:%s:%d periph_freq=%u\n", __FILE__, __func__, __LINE__, periph_freq); - if (spi_freq < periph_freq) - { - uint32_t clk_div = 0; - clk_div = (periph_freq + spi_freq - 1) / spi_freq; - if (clk_div & 1) - { - clk_div += 1; - } - /* The SPIM always divide by 2 once we activate the divider, - thus increase by 1 in case it is even to not go above the max - frequency. */ - clk_div = clk_div >> 1; - DBG_PRINTF("...end -> __pi_spi_clk_div_get...\n"); - return clk_div; - } - DBG_PRINTF("...end -> __pi_spi_clk_div_get...\n"); - return 0; + return __pi_spi_get_config(device->data); } void pi_spi_conf_init(struct pi_spi_conf *conf) { - DBG_PRINTF("...start -> pi_spi_conf_init...\n"); - DBG_PRINTF("%s:%s:%d\n", __FILE__, __func__, __LINE__); - conf->wordsize = PI_SPI_WORDSIZE_8; - conf->big_endian = 0; - conf->max_baudrate = 10000000; - conf->cs = -1; - conf->itf = 0; - conf->polarity = 0; - conf->phase = 0; - DBG_PRINTF("...end -> pi_spi_conf_init...\n"); -} - -// TODO: prepare pseudo exec for delegate -void __pi_spim_execute_callback(void *arg) -{ - return; -} - -void __pi_spim_exec_next_transfer(pi_task_t *task) -{ - DBG_PRINTF("...start -> __pi_spim_exec_next_transfer...\n"); - DBG_PRINTF("%s:%s:%d\n", __FILE__, __func__, __LINE__); - if (task->data[5] == 1) - { // if is send - // printf("__pi_spim_exec_next_transfer tx %p\n", &task); - // cs data | data buffer | len | flags | end of transfer task - __pi_spi_send_async((struct spim_cs_data *)task->data[0], - (void *)task->data[1], task->data[2], - task->data[3], (pi_task_t *)task->data[4]); - } - else if (task->data[5] == 0) - { - // printf("__pi_spim_exec_next_transfer rx %p\n", &task); - // cs data | data buffer | len | flags | end of transfer task - __pi_spi_receive_async((struct spim_cs_data *)task->data[0], - (void *)task->data[1], task->data[2], - task->data[3], - (pi_task_t *)task->data[4]); - } - else - { // task->data[5] contains rx data addr - // cs data | tx buffer | rx buffer| len | flags | end of - // transfer task - __pi_spi_xfer_async((struct spim_cs_data *)task->data[0], - (void *)task->data[5], - (void *)task->data[1], task->data[2], - task->data[3], (pi_task_t *)task->data[4]); - } - DBG_PRINTF("...end -> __pi_spim_exec_next_transfer...\n"); -} - -extern struct pmsis_event_kernel_wrap *default_sched; - -void __pi_spi_receive_async(struct spim_cs_data *cs_data, void *data, - size_t len, pi_spi_flags_e flags, pi_task_t *task) -{ - DBG_PRINTF("...start -> __pi_spi_receive_async...\n"); - // SPIM_CS_DATA_GET_DRV_DATA(cs_data) = (cs_data->drv_data) - struct spim_driver_data *drv_data = SPIM_CS_DATA_GET_DRV_DATA(cs_data); - int qspi = (flags & (0x3 << 2)) == PI_SPI_LINES_QUAD; - // Choose the type of cs mode, see enum "pi_spi_flags_e" to understand better. - int cs_mode = (flags >> 0) & 0x3; - - int device_id = drv_data->device_id; - task->id = device_id; //i need it for pos_spi_handle_copy - uint32_t cfg = cs_data->cfg; - DBG_PRINTF( - "%s:%s:%d: core clock:%" PRIu32 ", baudrate:%" PRIu32 ", div=%" PRIu32 ", udma_cmd cfg =%lx, qpi=%d\n", - __FILE__, __func__, __LINE__, system_core_clock_get(), - cs_data->max_baudrate, - system_core_clock_get() / cs_data->max_baudrate, cfg, qspi); - uint32_t byte_align = (cs_data->wordsize == PI_SPI_WORDSIZE_32) && - cs_data->big_endian; - - int buffer_size = (len + 7) >> 3; - - if (len > 8192 * 8) - { - DBG_PRINTF( - "%s:%s:%d: Transaction splitting unimplemented, too large", - __FILE__, __func__, __LINE__); - abort(); /* TODO: unimplemented transaction splitting */ - } - - DBG_PRINTF("%s:%s:%d: udma_cmd = %p\n", __FILE__, __func__, __LINE__, - &(cs_data->udma_cmd[0])); - uint32_t irq = deactive_irq(); - - uint8_t bitsword = 0; - uint8_t UDMA_CORE_CFG = 0; - - if (cs_data->wordsize == PI_SPI_WORDSIZE_8) - { - bitsword = 8; - UDMA_CORE_CFG = UDMA_CHANNEL_CFG_SIZE_8; - } - else if (cs_data->wordsize == PI_SPI_WORDSIZE_16) - { - bitsword = 16; - UDMA_CORE_CFG = UDMA_CHANNEL_CFG_SIZE_16; - } - else - { - bitsword = 32; - UDMA_CORE_CFG = UDMA_CHANNEL_CFG_SIZE_32; - } - - DBG_PRINTF("%s:%s:%d: bitsword = %u\n", __FILE__, __func__, __LINE__, bitsword); - DBG_PRINTF("%s:%s:%d: UDMA_CORE_CFG = %u\n", __FILE__, __func__, __LINE__, UDMA_CORE_CFG); - - /* - ** If I have no transfer in progress, then I go to set the command buffer - ** and then first I send the buffer where to receive the data and then the write command. - ** However, if I have some transfer in progress, then I put the new transfer - ** in the queue in the fifo and send it as soon as possible. - */ - - cs_data->udma_cmd[0] = cfg; - cs_data->udma_cmd[1] = SPI_CMD_SOT(cs_data->cs); - cs_data->udma_cmd[2] = SPI_CMD_RX_DATA(len / bitsword, SPI_CMD_1_WORD_PER_TRANSF, bitsword, qspi, SPI_CMD_MSB_FIRST); - cs_data->udma_cmd[3] = SPI_CMD_EOT(1, cs_mode == PI_SPI_CS_KEEP); - - uint32_t cfg_cmd = UDMA_CHANNEL_CFG_SIZE_32; - uint32_t rx_conf = UDMA_CORE_CFG; - if (drv_data->rx_channel->pendings[0] == NULL) - { - drv_data->rx_channel->pendings[0] = task; - plp_udma_enqueue(UDMA_SPIM_CMD_ADDR(device_id), (uint32_t)cs_data->udma_cmd, 4 * sizeof(uint32_t), UDMA_CHANNEL_CFG_EN | cfg_cmd); - plp_udma_enqueue(UDMA_SPIM_RX_ADDR(device_id), (uint32_t)data, buffer_size, UDMA_CHANNEL_CFG_EN | rx_conf); - } - else - { - if (drv_data->rx_channel->pendings[1] == NULL) - { - drv_data->rx_channel->pendings[1] = task; - plp_udma_enqueue(UDMA_SPIM_CMD_ADDR(device_id), (uint32_t)cs_data->udma_cmd, 4 * sizeof(uint32_t), UDMA_CHANNEL_CFG_EN | cfg_cmd); - plp_udma_enqueue(UDMA_SPIM_RX_ADDR(device_id), (uint32_t)data, buffer_size, UDMA_CHANNEL_CFG_EN | rx_conf); - } - else - { - // printf("else rx\n"); - struct spim_transfer transfer; - transfer.data = data; - transfer.flags = flags; - transfer.len = len; - transfer.cfg_cmd = cfg; - transfer.byte_align = byte_align; - transfer.is_send = 0; - drv_data->rx_channel->waitings_first=task; //i need it for pos_spi_handle_copy - __pi_spim_drv_fifo_enqueue(cs_data, &transfer, task); - } - } - active_irq(irq); - DBG_PRINTF("...end -> __pi_spi_receive_async...\n"); -} - -void __pi_spi_receive_async_with_ucode(struct spim_cs_data *cs_data, void *data, - size_t len, pi_spi_flags_e flags, - int ucode_size, void *ucode, - pi_task_t *task) -{ - /* TODO: port spi_async with ucode */ - abort(); -#if 0 - struct spim_driver_data *drv_data = SPIM_CS_DATA_GET_DRV_DATA(cs_data); - int qspi = ((flags >> 2) & 0x3) == ((PI_SPI_LINES_QUAD>>2) & 0x03); - int cs_mode = (flags >> 0) & 0x3; - - int device_id = drv_data->device_id; - uint32_t byte_align = (cs_data->wordsize == PI_SPI_WORDSIZE_32) - && cs_data->big_endian; - uint32_t cfg = cs_data->cfg; - DBG_PRINTF("%s:%d: core clock:%d, baudrate:%d, div=%d, byte_align =%lx, cfg= %lx, qspi=%lx\n", - __func__,__LINE__,system_core_clock_get(),cs_data->max_baudrate, - system_core_clock_get() / cs_data->max_baudrate,byte_align,cfg,qspi); - int size = (len + 7) >> 3; - - int cmd_id = 0; - - uint32_t irq = deactive_irq(); - if(!drv_data->end_of_transfer) - { - if(cs_mode != PI_SPI_CS_AUTO) - { - hal_soc_eu_set_fc_mask(SOC_EVENT_UDMA_SPIM_RX(device_id)); - } - drv_data->end_of_transfer = task; - drv_data->repeat_transfer = NULL; - if(((0xFFF00000 & (uint32_t)ucode)!= 0x1c000000)) - { - memcpy(&(cs_data->udma_cmd[0]), ucode, ucode_size); - spim_enqueue_channel(SPIM(device_id), (uint32_t)data, size, - UDMA_CORE_RX_CFG_EN(1) | (2<<1), RX_CHANNEL); - spim_enqueue_channel(SPIM(device_id), (uint32_t)cs_data->udma_cmd, - ucode_size, UDMA_CORE_TX_CFG_EN(1), TX_CHANNEL); - } - else - { - spim_enqueue_channel(SPIM(device_id), (uint32_t)data, size, - UDMA_CORE_RX_CFG_EN(1) | (2<<1), RX_CHANNEL); - spim_enqueue_channel(SPIM(device_id), (uint32_t)ucode, - ucode_size, UDMA_CORE_TX_CFG_EN(1), TX_CHANNEL); - } - } - else - { -#if 0 - struct spim_transfer transfer; - transfer.data = data; - transfer.flags = flags; - transfer.len = len; - transfer.cfg_cmd = cfg; - transfer.byte_align = byte_align; - transfer.is_send = 0; - __pi_spim_drv_fifo_enqueue(cs_data, &transfer, task); -#endif - } - active_irq(irq); -#endif -} - -void __pi_spi_send_async_with_ucode(struct spim_cs_data *cs_data, void *data, - size_t len, pi_spi_flags_e flags, - int ucode_size, void *ucode, - pi_task_t *task) -{ - /* TODO: port spi_async with ucode */ - abort(); -#if 0 - struct spim_driver_data *drv_data = SPIM_CS_DATA_GET_DRV_DATA(cs_data); - int qspi = ((flags >> 2) & 0x3) == ((PI_SPI_LINES_QUAD>>2) & 0x03); - int cs_mode = (flags >> 0) & 0x3; - - int device_id = drv_data->device_id; - uint32_t byte_align = (cs_data->wordsize == PI_SPI_WORDSIZE_32) - && cs_data->big_endian; - uint32_t cfg = cs_data->cfg; - DBG_PRINTF("%s:%d: core clock:%d, baudrate:%d, div=%d, byte_align =%lx, cfg= %lx, qspi=%lx\n", - __func__,__LINE__,system_core_clock_get(),cs_data->max_baudrate, - system_core_clock_get() / cs_data->max_baudrate,byte_align,cfg,qspi); - int size = (len + 7) >> 3; - - int cmd_id = 0; - - uint32_t irq = deactive_irq(); - if(!drv_data->end_of_transfer) - { - if(cs_mode != PI_SPI_CS_AUTO) - { - hal_soc_eu_set_fc_mask(SOC_EVENT_UDMA_SPIM_TX(device_id)); - } - drv_data->end_of_transfer = task; - drv_data->repeat_transfer = NULL; - - spim_enqueue_channel(SPIM(device_id), (uint32_t)ucode, - ucode_size, UDMA_CORE_TX_CFG_EN(1), TX_CHANNEL); - pi_time_wait_us(1000); - spim_enqueue_channel(SPIM(device_id), (uint32_t)data, - size, UDMA_CORE_TX_CFG_EN(1), TX_CHANNEL); - if(cs_mode == PI_SPI_CS_AUTO) - { - // wait until channel is free - while((hal_read32((void*)&(SPIM(device_id)->udma.tx_cfg)) - & (1<<5))>>5) - { - DBG_PRINTF("%s:%d\n",__func__,__LINE__); - } - - // enqueue EOT - cs_data->udma_cmd[0] = SPI_CMD_EOT(1); - spim_enqueue_channel(SPIM(device_id), - (uint32_t)&cs_data->udma_cmd[0], 1*(sizeof(uint32_t)), - UDMA_CORE_TX_CFG_EN(1), TX_CHANNEL); - } - } - else - { -#if 0 - struct spim_transfer transfer; - transfer.data = data; - transfer.flags = flags; - transfer.len = len; - transfer.cfg_cmd = cfg; - transfer.byte_align = byte_align; - transfer.is_send = 0; - __pi_spim_drv_fifo_enqueue(cs_data, &transfer, task); -#endif - } - active_irq(irq); -#endif -} - -void __pi_spi_send_async(struct spim_cs_data *cs_data, void *data, size_t len, - pi_spi_flags_e flags, pi_task_t *task) -{ - DBG_PRINTF("...start -> __pi_spi_send_async...\n"); - struct spim_driver_data *drv_data = SPIM_CS_DATA_GET_DRV_DATA(cs_data); - int qspi = (flags & (0x3 << 2)) == PI_SPI_LINES_QUAD; - int cs_mode = (flags >> 0) & 0x3; - DBG_PRINTF("%s:%s:%d...task %d, %p...\n", __FILE__, __func__, __LINE__, task == NULL ? 0 : 1, &task); - int device_id = drv_data->device_id; - task->id = device_id; //i need it for pos_spi_handle_copy - uint32_t cfg = cs_data->cfg; // SPI_CMD_CFG(...) - DBG_PRINTF( - "%s:%s:%d: core clock:%" PRIu32 ", baudrate:%" PRIu32 ", div=%" PRIu32 ", udma_cmd cfg =%lx, qpi=%d\n", - __FILE__, __func__, __LINE__, system_core_clock_get(), - cs_data->max_baudrate, - system_core_clock_get() / cs_data->max_baudrate, cfg, qspi); - uint32_t byte_align = (cs_data->wordsize == PI_SPI_WORDSIZE_32) && - cs_data->big_endian; - - /* buffer size */ - int buffer_size = (len + 7) >> 3; - - if (len > 8192 * 8) - { - DBG_PRINTF( - "%s:%s:%d: Transaction splitting unimplemented, too large", - __FILE__, __func__, __LINE__); - abort(); /* TODO: unimplemented transaction splitting */ - } - - // Address of the command buffer to be sent to the uDMA - DBG_PRINTF("%s:%s:%d: udma_cmd = %p\n", __FILE__, __func__, __LINE__, - &(cs_data->udma_cmd[0])); - uint32_t irq = deactive_irq(); - - uint8_t bitsword = 0; - uint8_t UDMA_CORE_CFG = 0; - - if (cs_data->wordsize == PI_SPI_WORDSIZE_8) - { - bitsword = 8; - UDMA_CORE_CFG = UDMA_CHANNEL_CFG_SIZE_8; // 0x0 - } - else if (cs_data->wordsize == PI_SPI_WORDSIZE_16) - { - bitsword = 16; - UDMA_CORE_CFG = UDMA_CHANNEL_CFG_SIZE_16; // 0x1 - } - else - { - bitsword = 32; - UDMA_CORE_CFG = UDMA_CHANNEL_CFG_SIZE_32; // 0x2 - } - - DBG_PRINTF("%s:%s:%d: bitsword = %u\n", __FILE__, __func__, __LINE__, bitsword); - DBG_PRINTF("%s:%s:%d: UDMA_CORE_CFG = %u\n", __FILE__, __func__, __LINE__, UDMA_CORE_CFG); - - /* - ** If I have no transfer in progress, then I go to set the command buffer - ** and then I first send the command and then the data. - ** However, if I have some transfer in progress, then I put the new transfer - ** in the queue in the fifo and send when I receive an EOT interrupt, - ** in this case the interrupt handler will manage the new transfer. - */ - cs_data->udma_cmd[0] = cfg; - cs_data->udma_cmd[1] = SPI_CMD_SOT(cs_data->cs); - cs_data->udma_cmd[2] = SPI_CMD_TX_DATA((len / bitsword), SPI_CMD_1_WORD_PER_TRANSF, bitsword, qspi, SPI_CMD_MSB_FIRST); - cs_data->udma_cmd[3] = SPI_CMD_EOT(1, cs_mode == PI_SPI_CS_KEEP); - - uint32_t cfg_cmd = UDMA_CHANNEL_CFG_SIZE_32; - uint32_t tx_conf = UDMA_CORE_CFG; - - if (drv_data->tx_channel->pendings[0] == NULL) - { - drv_data->tx_channel->pendings[0] = task; - plp_udma_enqueue(UDMA_SPIM_CMD_ADDR(device_id), (uint32_t)cs_data->udma_cmd, 4 * sizeof(uint32_t), UDMA_CHANNEL_CFG_EN | cfg_cmd); - plp_udma_enqueue(UDMA_SPIM_TX_ADDR(device_id), (uint32_t)data, buffer_size, UDMA_CHANNEL_CFG_EN | tx_conf); - } - else - { - if (drv_data->tx_channel->pendings[1] == NULL) - { - drv_data->tx_channel->pendings[1] = task; - plp_udma_enqueue(UDMA_SPIM_CMD_ADDR(device_id), (uint32_t)cs_data->udma_cmd, 4 * sizeof(uint32_t), UDMA_CHANNEL_CFG_EN | cfg_cmd); - plp_udma_enqueue(UDMA_SPIM_TX_ADDR(device_id), (uint32_t)data, buffer_size, UDMA_CHANNEL_CFG_EN | tx_conf); - } - else - { - /* a transfer is running, append to pendings transfers queue */ - struct spim_transfer transfer; - transfer.data = data; - transfer.flags = flags; - transfer.len = len; - transfer.cfg_cmd = cfg; - transfer.byte_align = byte_align; - transfer.is_send = 1; - drv_data->tx_channel->waitings_first=task; //i need it for pos_spi_handle_copy - __pi_spim_drv_fifo_enqueue(cs_data, &transfer, task); - } - } - active_irq(irq); - - DBG_PRINTF("...end -> __pi_spi_send_async...\n"); -} - -void __pi_spi_xfer_async(struct spim_cs_data *cs_data, void *tx_data, - void *rx_data, size_t len, pi_spi_flags_e flags, - pi_task_t *task) -{ - /* TODO: port spi_xfer async */ - abort(); -#if 0 - struct spim_driver_data *drv_data = SPIM_CS_DATA_GET_DRV_DATA(cs_data); - int qspi = (flags & (0x3 << 2)) == PI_SPI_LINES_QUAD; - int cs_mode = (flags >> 0) & 0x3; - - int device_id = drv_data->device_id; - uint32_t cfg = cs_data->cfg; - DBG_PRINTF("%s:%d: core clock:%"PRIu32", baudrate:%"PRIu32", div=%"PRIu32", udma_cmd cfg =%d\n", - __func__,__LINE__,system_core_clock_get(),cs_data->max_baudrate, - system_core_clock_get() / cs_data->max_baudrate,cfg); - uint32_t byte_align = (cs_data->wordsize == PI_SPI_WORDSIZE_32) - && cs_data->big_endian; - int size = (len + 7) >> 3; - - int cmd_id = 0; - - uint32_t irq = deactive_irq(); - if(!drv_data->end_of_transfer) - { - cs_data->udma_cmd[0] = cfg; - cs_data->udma_cmd[1] = SPI_CMD_SOT(cs_data->cs); - cs_data->udma_cmd[2] = SPI_CMD_FULL_DUPL(len, byte_align); - drv_data->end_of_transfer = task; - drv_data->repeat_transfer = NULL; - if(cs_mode == PI_SPI_CS_AUTO) - { - spim_enqueue_channel(SPIM(device_id), (uint32_t)cs_data->udma_cmd, - 3*(sizeof(uint32_t)), UDMA_CORE_TX_CFG_EN(1), - TX_CHANNEL); - spim_enqueue_channel(SPIM(device_id), (uint32_t)rx_data, size, - UDMA_CORE_RX_CFG_EN(1) | (2<<1), RX_CHANNEL); - spim_enqueue_channel(SPIM(device_id), (uint32_t)tx_data, - size, UDMA_CORE_TX_CFG_EN(1), - TX_CHANNEL); - // wait until TX channel is free - while((hal_read32((void*)&(SPIM(device_id)->udma.tx_cfg)) - & (1<<5))>>5) - { - DBG_PRINTF("%s:%d\n",__func__,__LINE__); - } - // send EOT - cs_data->udma_cmd[3] = SPI_CMD_EOT(1); - spim_enqueue_channel(SPIM(device_id), - (uint32_t)&cs_data->udma_cmd[3], sizeof(uint32_t), - UDMA_CORE_TX_CFG_EN(1), TX_CHANNEL); - } - else - { - spim_enqueue_channel(SPIM(device_id), (uint32_t)cs_data->udma_cmd, - 3*(sizeof(uint32_t)), UDMA_CORE_TX_CFG_EN(1), - TX_CHANNEL); - // wait until TX channel is free - while((hal_read32((void*)&(SPIM(device_id)->udma.tx_cfg)) - & (1<<5))>>5) - { - DBG_PRINTF("%s:%d\n",__func__,__LINE__); - } - // activate rx event - hal_soc_eu_set_fc_mask(SOC_EVENT_UDMA_SPIM_RX(device_id)); - // NOTE: both transfers have the same size - // does not matter which one we wait - spim_enqueue_channel(SPIM(device_id), (uint32_t)rx_data, size, - UDMA_CORE_RX_CFG_EN(1) | (2<<1), RX_CHANNEL); - spim_enqueue_channel(SPIM(device_id), (uint32_t)tx_data, - size, UDMA_CORE_TX_CFG_EN(1), - TX_CHANNEL); - } - - } - else - { - struct spim_transfer transfer; - transfer.data = rx_data; - transfer.flags = flags; - transfer.len = len; - transfer.cfg_cmd = cfg; - transfer.byte_align = byte_align; - transfer.is_send = (uint32_t) tx_data; // sending a pointer means xfer - __pi_spim_drv_fifo_enqueue(cs_data, &transfer, task); - } - active_irq(irq); -#endif -} - -void pos_spi_handle_copy(int event, void *arg) -{ - pos_udma_channel_t *channel = arg; - pi_task_t *pending_1 = channel->pendings[1]; - pi_task_t *pending_0 = channel->pendings[0]; - uint32_t spi_id = channel->base; - struct spim_driver_data *drv_data = __g_spim_drv_data[spi_id]; - pi_task_t *pending_first = __pi_spim_drv_fifo_pop(drv_data); - channel->pendings[0] = pending_1; - channel->pendings[1] = NULL; - - if (pending_first) - { - __pi_spim_exec_next_transfer(pending_first); - pending_first = NULL; - } - - pos_task_push_locked(pending_0); -} - -void pos_spi_create_channel(pos_udma_channel_t *channel, int channel_id, int soc_event) -{ - pos_soc_event_register_callback(soc_event, pos_spi_handle_copy, (void *)channel); - channel->pendings[0] = NULL; - channel->pendings[1] = NULL; - channel->waitings_first = NULL; - channel->base = 0; + conf->wordsize = PI_SPI_WORDSIZE_8; + conf->big_endian = 0; + conf->max_baudrate = 10000000; + conf->cs = -1; + conf->itf = 0; + conf->polarity = 0; + conf->phase = 0; } int pi_spi_open(struct pi_device *device) { - int status = -1; - status = __pi_spi_open((struct spim_cs_data **)(&device->data), (struct pi_spi_conf *)device->config); - return status; -} - -int __pi_spi_open(struct spim_cs_data **cs_data, struct pi_spi_conf *conf) -{ - int irq = deactive_irq(); - for (int i = 0; i < ARCHI_NB_FLL; i++) - { - pos_fll_init(i); - } - - //struct pi_spi_conf *conf = (struct pi_spi_conf *)device->config; - - unsigned char spi_id = conf->itf; - int periph_id = ARCHI_UDMA_SPIM_ID(spi_id); - spi_channel = UDMA_EVENT_ID(periph_id); - int cs = conf->cs; - int status = 0; - //struct spim_cs_data **cs_data = (struct spim_cs_data **)(&device->data); - plp_udma_cg_set(plp_udma_cg_get() | (1 << periph_id)); - - struct spim_driver_data *drv_data; - if (__g_spim_drv_data[conf->itf]) - { - drv_data = __g_spim_drv_data[conf->itf]; - } - else - { - __g_spim_drv_data[conf->itf] = pi_default_malloc(sizeof(struct spim_driver_data)); - memset(__g_spim_drv_data[conf->itf], 0, sizeof(struct spim_driver_data)); - drv_data = __g_spim_drv_data[conf->itf]; - // Do this to define a node in a list. The list is a dynamic object. - drv_data->drv_fifo = pi_default_malloc(sizeof(struct spim_drv_fifo)); - memset(drv_data->drv_fifo, 0, sizeof(struct spim_drv_fifo)); - // controllo che il puntatore sia = 0 - if (!drv_data->drv_fifo) - { - active_irq(irq); - return -1; - } - drv_data->device_id = conf->itf; - } - - if (drv_data->nb_open == 0) - { - pos_spi_create_channel(drv_data->rx_channel, UDMA_CHANNEL_ID(periph_id), SOC_EVENT_UDMA_SPIM_EOT(drv_data->device_id)); - pos_spi_create_channel(drv_data->tx_channel, UDMA_CHANNEL_ID(periph_id) + 1, SOC_EVENT_UDMA_SPIM_EOT(drv_data->device_id)); - drv_data->rx_channel->base=spi_id; //way to save me the spi interface which is associated with the channel - drv_data->tx_channel->base=spi_id; //way to save me the spi interface which is associated with the channel - } - - soc_eu_fcEventMask_setEvent(SOC_EVENT_UDMA_SPIM_EOT(drv_data->device_id)); - - drv_data->nb_open++; - - *cs_data = __pi_spim_get_cs_data(drv_data, conf->cs); - - if (!*cs_data) - { // if (*cs_data == 0) - uint32_t clk_div = __pi_spi_clk_div_get(conf->max_baudrate); - // alloc a cs data, need to be in udma reachable ram - struct spim_cs_data *_cs_data = pi_data_malloc(sizeof(struct spim_cs_data)); - if (_cs_data == NULL) - { - DBG_PRINTF("[%s] _cs_data alloc failed\n", __func__); - active_irq(irq); - return -2; - } - if (clk_div > 0xFF) - { - DBG_PRINTF( - "[%s] clk_div, %" PRIu32 ", does not fit into 8 bits. SoC frequency too high.\n", - __func__, clk_div); - active_irq(irq); - return -3; - } - - memset(_cs_data, 0, sizeof(struct spim_cs_data)); - _cs_data->max_baudrate = conf->max_baudrate; - _cs_data->polarity = conf->polarity; - _cs_data->phase = conf->phase; - _cs_data->big_endian = conf->big_endian; - _cs_data->wordsize = conf->wordsize; - _cs_data->cs = conf->cs; - _cs_data->cfg = SPI_CMD_CFG(clk_div, _cs_data->phase, _cs_data->polarity); - // _cs_data->cfg = SPI_CMD_CFG(1,0,0); - *cs_data = _cs_data; - // I insert a new element in the cs_data list - __pi_spim_cs_data_add(drv_data, _cs_data); - } - - active_irq(irq); - - return status; + int status = -1; + status = __pi_spi_open((struct spim_cs_data **)(&device->data), (struct pi_spi_conf *)device->config); + return status; } void pi_spi_close(struct pi_device *device) { - __pi_spi_close((struct spim_cs_data *)(device->data), (struct pi_spi_conf *)device->config); -} - -void __pi_spi_close(struct spim_cs_data *cs_data, struct pi_spi_conf *conf) -{ - DBG_PRINTF("...start -> pi_spi_close...\n"); - - //struct pi_spi_conf *conf = (struct pi_spi_conf *)device->config; - uint32_t irq = deactive_irq(); - unsigned char spi_id = conf->itf; - int periph_id = ARCHI_UDMA_SPIM_ID(spi_id); - int spi_channel = UDMA_EVENT_ID(periph_id); - /* TODO: paste beg */ - //struct spim_cs_data *cs_data = device->data; - struct spim_driver_data *drv_data = cs_data->drv_data; - __pi_spim_cs_data_del(drv_data, cs_data->cs); - /* - ** Number of open SPI interfaces - */ - drv_data->nb_open--; - - /* - ** If you no longer have any SPI interface open, - ** then go clear the memory, with free, and clear the interrupt line. - */ - if (drv_data->nb_open == 0) - { - /* reactivate clock gating for said device */ - plp_udma_cg_set(plp_udma_cg_get() & ~(1 << periph_id)); - soc_eu_fcEventMask_clearEvent(SOC_EVENT_UDMA_SPIM_EOT(drv_data->device_id)); - // hal_soc_eu_clear_fc_mask( SOC_EVENT_UDMA_SPIM_EOT(drv_data->device_id)); - __g_spim_drv_data[drv_data->device_id] = NULL; - pi_default_free(drv_data->drv_fifo, sizeof(drv_data->drv_fifo)); - pi_default_free(drv_data, sizeof(drv_data)); - - active_irq(irq); - return; - } - pi_data_free(cs_data, sizeof(cs_data)); - /* TODO: moved to end return drv_data->nb_open; */ - /* TODO: paste end */ - - active_irq(irq); - DBG_PRINTF("...end -> pi_spi_close...\n"); - return; + __pi_spi_close((struct spim_cs_data *)(device->data), (struct pi_spi_conf *)device->config); } void pi_spi_ioctl(struct pi_device *device, uint32_t cmd, void *arg) { - /* TODO */ + /* TODO */ } void pi_spi_send(struct pi_device *device, void *data, size_t len, pi_spi_flags_e flag) { - pi_task_t task_block; - pi_task_block(&task_block); - pi_spi_send_async(device, data, len, flag, &task_block); - pi_task_wait_on(&task_block); - pi_task_destroy(&task_block); + pi_task_t task_block; + pi_task_block(&task_block); + pi_spi_send_async(device, data, len, flag, &task_block); + pi_task_wait_on(&task_block); + pi_task_destroy(&task_block); } void pi_spi_send_async(struct pi_device *device, void *data, size_t len, pi_spi_flags_e flag, pi_task_t *task) { - DEBUG_PRINTF("...start -> pi_spi_send_async...\n"); - __pi_spi_send_async(device->data, data, len, flag, task); - DEBUG_PRINTF("...end -> pi_spi_send_async...\n"); + DEBUG_PRINTF("...start -> pi_spi_send_async...\n"); + __pi_spi_send_async(device->data, data, len, flag, task); + DEBUG_PRINTF("...end -> pi_spi_send_async...\n"); } void pi_spi_receive(struct pi_device *device, void *data, size_t len, pi_spi_flags_e flag) { - DEBUG_PRINTF("...start -> pi_spi_receive...\n"); - pi_task_t task_block; - pi_task_block(&task_block); - DEBUG_PRINTF("%s:%s:%d pi_task_block(%p)\n", __FILE__, __func__, __LINE__, &task_block); - pi_spi_receive_async(device, data, len, flag, &task_block); - DEBUG_PRINTF("%s:%s:%d pi_spi_receive_async(device, data, len, flag, &task_block)\n", __FILE__, __func__, __LINE__); - // This function allows to wait on an event task until the event occurs. - pi_task_wait_on(&task_block); - DEBUG_PRINTF("%s:%s:%d pi_task_wait_on(%p)\n", __FILE__, __func__, __LINE__, &task_block); - pi_task_destroy(&task_block); - DEBUG_PRINTF("%s:%s:%d pi_task_destroy(%p)\n", __FILE__, __func__, __LINE__, &task_block); - DEBUG_PRINTF("...end -> pi_spi_receive...\n"); + DEBUG_PRINTF("...start -> pi_spi_receive...\n"); + pi_task_t task_block; + pi_task_block(&task_block); + DEBUG_PRINTF("%s:%s:%d pi_task_block(%p)\n", __FILE__, __func__, __LINE__, &task_block); + pi_spi_receive_async(device, data, len, flag, &task_block); + DEBUG_PRINTF("%s:%s:%d pi_spi_receive_async(device, data, len, flag, &task_block)\n", __FILE__, __func__, __LINE__); + // This function allows to wait on an event task until the event occurs. + pi_task_wait_on(&task_block); + DEBUG_PRINTF("%s:%s:%d pi_task_wait_on(%p)\n", __FILE__, __func__, __LINE__, &task_block); + pi_task_destroy(&task_block); + DEBUG_PRINTF("%s:%s:%d pi_task_destroy(%p)\n", __FILE__, __func__, __LINE__, &task_block); + DEBUG_PRINTF("...end -> pi_spi_receive...\n"); } void pi_spi_receive_async(struct pi_device *device, void *data, size_t len, - pi_spi_flags_e flag, pi_task_t *task) + pi_spi_flags_e flag, pi_task_t *task) { - DEBUG_PRINTF("...start -> pi_spi_receive_async...\n"); - __pi_spi_receive_async(device->data, data, len, flag, task); - DEBUG_PRINTF("...end -> pi_spi_receive_async...\n"); + DEBUG_PRINTF("...start -> pi_spi_receive_async...\n"); + __pi_spi_receive_async(device->data, data, len, flag, task); + DEBUG_PRINTF("...end -> pi_spi_receive_async...\n"); } void pi_spi_receive_with_ucode(struct pi_device *device, void *data, size_t len, - pi_spi_flags_e flags, int ucode_size, - void *ucode) + pi_spi_flags_e flags, int ucode_size, + void *ucode) { - pi_task_t task_block; - pi_task_block(&task_block); - __pi_spi_receive_async_with_ucode(device->data, data, len, flags, - ucode_size, ucode, &task_block); - pi_task_wait_on(&task_block); - pi_task_destroy(&task_block); + pi_task_t task_block; + pi_task_block(&task_block); + __pi_spi_receive_async_with_ucode(device->data, data, len, flags, + ucode_size, ucode, &task_block); + pi_task_wait_on(&task_block); + pi_task_destroy(&task_block); } void pi_spi_send_with_ucode(struct pi_device *device, void *data, size_t len, - pi_spi_flags_e flags, int ucode_size, void *ucode) -{ - pi_task_t task_block; - pi_task_block(&task_block); - __pi_spi_send_async_with_ucode(device->data, data, len, flags, - ucode_size, ucode, &task_block); - pi_task_wait_on(&task_block); - pi_task_destroy(&task_block); -} - -uint32_t pi_spi_get_config(struct pi_device *device) + pi_spi_flags_e flags, int ucode_size, void *ucode) { - return __pi_spi_get_config(device->data); + pi_task_t task_block; + pi_task_block(&task_block); + __pi_spi_send_async_with_ucode(device->data, data, len, flags, + ucode_size, ucode, &task_block); + pi_task_wait_on(&task_block); + pi_task_destroy(&task_block); } void pi_spi_transfer(struct pi_device *device, void *tx_data, void *rx_data, - size_t len, pi_spi_flags_e flag) + size_t len, pi_spi_flags_e flag) { - /* TODO */ - pi_task_t task_block; - pi_task_block(&task_block); - DEBUG_PRINTF("%s:%s:%d\n", __FILE__, __func__, __LINE__); - pi_spi_transfer_async(device, tx_data, rx_data, len, flag, &task_block); - DEBUG_PRINTF("%s:%s:%d\n", __FILE__, __func__, __LINE__); - pi_task_wait_on(&task_block); - DEBUG_PRINTF("%s:%s:%d\n", __FILE__, __func__, __LINE__); - pi_task_destroy(&task_block); - DEBUG_PRINTF("%s:%s:%d\n", __FILE__, __func__, __LINE__); + /* TODO */ + pi_task_t task_block; + pi_task_block(&task_block); + DEBUG_PRINTF("%s:%s:%d\n", __FILE__, __func__, __LINE__); + pi_spi_transfer_async(device, tx_data, rx_data, len, flag, &task_block); + DEBUG_PRINTF("%s:%s:%d\n", __FILE__, __func__, __LINE__); + pi_task_wait_on(&task_block); + DEBUG_PRINTF("%s:%s:%d\n", __FILE__, __func__, __LINE__); + pi_task_destroy(&task_block); + DEBUG_PRINTF("%s:%s:%d\n", __FILE__, __func__, __LINE__); } void pi_spi_transfer_async(struct pi_device *device, void *tx_data, - void *rx_data, size_t len, pi_spi_flags_e flag, - pi_task_t *task) + void *rx_data, size_t len, pi_spi_flags_e flag, + pi_task_t *task) { - /* TODO */ - __pi_spi_xfer_async(device->data, tx_data, rx_data, len, flag, task); -} + /* TODO */ + __pi_spi_xfer_async(device->data, tx_data, rx_data, len, flag, task); +} \ No newline at end of file From f4642cd8bfd5ad2f27fd0d10355eb05856ffb8ae Mon Sep 17 00:00:00 2001 From: orlandonico Date: Tue, 28 Dec 2021 15:18:07 +0100 Subject: [PATCH 42/86] rtos/pulpos: add dir abstraction layer spi pulpos --- .../include/abstraction_layer_spi.h | 87 +++ .../src/abstraction_layer_spi.c | 693 ++++++++++++++++++ 2 files changed, 780 insertions(+) create mode 100644 rtos/pulpos/pulp/drivers/spim/abstraction_layer_spi_pulpos/include/abstraction_layer_spi.h create mode 100644 rtos/pulpos/pulp/drivers/spim/abstraction_layer_spi_pulpos/src/abstraction_layer_spi.c diff --git a/rtos/pulpos/pulp/drivers/spim/abstraction_layer_spi_pulpos/include/abstraction_layer_spi.h b/rtos/pulpos/pulp/drivers/spim/abstraction_layer_spi_pulpos/include/abstraction_layer_spi.h new file mode 100644 index 00000000..cba02e97 --- /dev/null +++ b/rtos/pulpos/pulp/drivers/spim/abstraction_layer_spi_pulpos/include/abstraction_layer_spi.h @@ -0,0 +1,87 @@ +/* + * Copyright 2020 GreenWaves Technologies + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +/**----------------------------------------------------------------------------------------------------------------------- + * ? ABOUT + * @author : Orlando Nico + * @email : nico.orlando@studio.unibo.it + * @repo : pulp-sdk/rtos/pulpos/pulp/drivers/spim/abstraction_layer_spi + * @createdOn : 11/11/2021 + * @description : + *-----------------------------------------------------------------------------------------------------------------------**/ + +/**================================================================================================ + ** INCLUDE + *================================================================================================**/ +#include "common_spi.h" + +/**================================================================================================ + ** DEFINE + *================================================================================================**/ +#define DEBUG_PRINTF(...) ((void)0) +#define DBG_PRINTF(...) ((void)0) + +/* TODO: remove this glue */ + +#define SPIM_CS_DATA_GET_DRV_DATA(cs_data) (cs_data->drv_data) + +#define NB_SOC_EVENTS (ARCHI_SOC_EVENT_NB_TOTAL) + +typedef void (*pi_fc_event_handler_t)(void *arg); + +// va bene per Control-Pulp +/* +** #define pi_default_malloc(x) malloc(x) +** #define pi_default_free(x,y) free(x) +** #define pi_data_malloc(x) malloc(x) +** #define pi_data_free(x,y) free(x) +*/ + +// Pulp-Open +#define pi_default_malloc(x) pi_l2_malloc(x) +#define pi_default_free(x, y) pi_l2_free(x, y) +#define pi_data_malloc(x) pi_l2_malloc(x) +#define pi_data_free(x, y) pi_l2_free(x, y) + +#define UDMA_EVENT_OFFSET_SPI_EOT 3 +#define SOC_EVENT_UDMA_SPIM_EOT(id) \ + ((ARCHI_UDMA_SPIM_ID(id) << ARCHI_SOC_EVENT_UDMA_NB_CHANNEL_EVT_LOG2) + \ + UDMA_EVENT_OFFSET_SPI_EOT) + +/**================================================================================================ + ** STRUCT + *================================================================================================**/ + + + +/**================================================================================================ + ** PROTOTYPE FUNCTION + *================================================================================================**/ +void pos_spi_handle_copy(int event, void *arg); +void pos_spi_create_channel(pos_udma_channel_t *channel, int channel_id, int soc_event); +int __pi_spi_open(struct spim_cs_data **cs_data, struct pi_spi_conf *conf); +void __pi_spi_close(struct spim_cs_data *cs_data, struct pi_spi_conf *conf); +void __pi_spim_exec_next_transfer(pi_task_t *task); +void __pi_spi_send_async(struct spim_cs_data *cs_data, void *data, size_t len, pi_spi_flags_e flags, pi_task_t *task); +void __pi_spi_receive_async(struct spim_cs_data *cs_data, void *data, size_t len, pi_spi_flags_e flags, pi_task_t *task); +void __pi_spi_xfer_async(struct spim_cs_data *cs_data, void *tx_data, void *rx_data, size_t len, pi_spi_flags_e flags, pi_task_t *task); +void __pi_spi_receive_async_with_ucode(struct spim_cs_data *cs_data, void *data, size_t len, pi_spi_flags_e flags, int ucode_size, void *ucode, pi_task_t *task); +void __pi_spi_send_async_with_ucode(struct spim_cs_data *cs_data, void *data, size_t len, pi_spi_flags_e flags, int ucode_size, void *ucode, pi_task_t *task); +void __spim_execute_callback(void *arg); +void system_core_clock_update(void); +uint32_t system_core_clock_get(void); diff --git a/rtos/pulpos/pulp/drivers/spim/abstraction_layer_spi_pulpos/src/abstraction_layer_spi.c b/rtos/pulpos/pulp/drivers/spim/abstraction_layer_spi_pulpos/src/abstraction_layer_spi.c new file mode 100644 index 00000000..2525c00d --- /dev/null +++ b/rtos/pulpos/pulp/drivers/spim/abstraction_layer_spi_pulpos/src/abstraction_layer_spi.c @@ -0,0 +1,693 @@ +/* + * Copyright 2020 GreenWaves Technologies + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +/**----------------------------------------------------------------------------------------------------------------------- + * ? ABOUT + * @author : Orlando Nico + * @email : nico.orlando@studio.unibo.it + * @repo : pulp-sdk/rtos/pulpos/pulp/drivers/spim/abstraction_layer_spi + * @createdOn : 11/11/2021 + * @description : + *-----------------------------------------------------------------------------------------------------------------------**/ + +/**================================================================================================ + ** INCLUDE + *================================================================================================**/ +#include "abstraction_layer_spi.h" + +/**================================================================================================ + ** GLOBAL VARIABLE + *================================================================================================**/ +volatile uint32_t system_core_clock; +PI_L2 int spi_open_count = 0; +PI_L2 int spi_channel; +struct spim_driver_data *__g_spim_drv_data[ARCHI_UDMA_NB_SPIM] = {0}; +extern struct pmsis_event_kernel_wrap *default_sched; + +/**================================================================================================ + ** FUNCTION + *================================================================================================**/ +void system_core_clock_update(void) +{ + // system_core_clock = pi_fll_get_frequency(FLL_SOC, 0); + system_core_clock = pi_freq_get(FLL_SOC); +} + +uint32_t system_core_clock_get(void) +{ + system_core_clock_update(); + return system_core_clock; +} + + +// TODO: prepare pseudo exec for delegate +void __pi_spim_execute_callback(void *arg) +{ + return; +} + +void __pi_spi_receive_async_with_ucode(struct spim_cs_data *cs_data, void *data, + size_t len, pi_spi_flags_e flags, + int ucode_size, void *ucode, + pi_task_t *task) +{ + /* TODO: port spi_async with ucode */ + abort(); +#if 0 + struct spim_driver_data *drv_data = SPIM_CS_DATA_GET_DRV_DATA(cs_data); + int qspi = ((flags >> 2) & 0x3) == ((PI_SPI_LINES_QUAD>>2) & 0x03); + int cs_mode = (flags >> 0) & 0x3; + + int device_id = drv_data->device_id; + uint32_t byte_align = (cs_data->wordsize == PI_SPI_WORDSIZE_32) + && cs_data->big_endian; + uint32_t cfg = cs_data->cfg; + DBG_PRINTF("%s:%d: core clock:%d, baudrate:%d, div=%d, byte_align =%lx, cfg= %lx, qspi=%lx\n", + __func__,__LINE__,system_core_clock_get(),cs_data->max_baudrate, + system_core_clock_get() / cs_data->max_baudrate,byte_align,cfg,qspi); + int size = (len + 7) >> 3; + + int cmd_id = 0; + + uint32_t irq = deactive_irq(); + if(!drv_data->end_of_transfer) + { + if(cs_mode != PI_SPI_CS_AUTO) + { + hal_soc_eu_set_fc_mask(SOC_EVENT_UDMA_SPIM_RX(device_id)); + } + drv_data->end_of_transfer = task; + drv_data->repeat_transfer = NULL; + if(((0xFFF00000 & (uint32_t)ucode)!= 0x1c000000)) + { + memcpy(&(cs_data->udma_cmd[0]), ucode, ucode_size); + spim_enqueue_channel(SPIM(device_id), (uint32_t)data, size, + UDMA_CORE_RX_CFG_EN(1) | (2<<1), RX_CHANNEL); + spim_enqueue_channel(SPIM(device_id), (uint32_t)cs_data->udma_cmd, + ucode_size, UDMA_CORE_TX_CFG_EN(1), TX_CHANNEL); + } + else + { + spim_enqueue_channel(SPIM(device_id), (uint32_t)data, size, + UDMA_CORE_RX_CFG_EN(1) | (2<<1), RX_CHANNEL); + spim_enqueue_channel(SPIM(device_id), (uint32_t)ucode, + ucode_size, UDMA_CORE_TX_CFG_EN(1), TX_CHANNEL); + } + } + else + { +#if 0 + struct spim_transfer transfer; + transfer.data = data; + transfer.flags = flags; + transfer.len = len; + transfer.cfg_cmd = cfg; + transfer.byte_align = byte_align; + transfer.is_send = 0; + __pi_spim_drv_fifo_enqueue(cs_data, &transfer, task); +#endif + } + active_irq(irq); +#endif +} + +void __pi_spi_send_async_with_ucode(struct spim_cs_data *cs_data, void *data, + size_t len, pi_spi_flags_e flags, + int ucode_size, void *ucode, + pi_task_t *task) +{ + /* TODO: port spi_async with ucode */ + abort(); +#if 0 + struct spim_driver_data *drv_data = SPIM_CS_DATA_GET_DRV_DATA(cs_data); + int qspi = ((flags >> 2) & 0x3) == ((PI_SPI_LINES_QUAD>>2) & 0x03); + int cs_mode = (flags >> 0) & 0x3; + + int device_id = drv_data->device_id; + uint32_t byte_align = (cs_data->wordsize == PI_SPI_WORDSIZE_32) + && cs_data->big_endian; + uint32_t cfg = cs_data->cfg; + DBG_PRINTF("%s:%d: core clock:%d, baudrate:%d, div=%d, byte_align =%lx, cfg= %lx, qspi=%lx\n", + __func__,__LINE__,system_core_clock_get(),cs_data->max_baudrate, + system_core_clock_get() / cs_data->max_baudrate,byte_align,cfg,qspi); + int size = (len + 7) >> 3; + + int cmd_id = 0; + + uint32_t irq = deactive_irq(); + if(!drv_data->end_of_transfer) + { + if(cs_mode != PI_SPI_CS_AUTO) + { + hal_soc_eu_set_fc_mask(SOC_EVENT_UDMA_SPIM_TX(device_id)); + } + drv_data->end_of_transfer = task; + drv_data->repeat_transfer = NULL; + + spim_enqueue_channel(SPIM(device_id), (uint32_t)ucode, + ucode_size, UDMA_CORE_TX_CFG_EN(1), TX_CHANNEL); + pi_time_wait_us(1000); + spim_enqueue_channel(SPIM(device_id), (uint32_t)data, + size, UDMA_CORE_TX_CFG_EN(1), TX_CHANNEL); + if(cs_mode == PI_SPI_CS_AUTO) + { + // wait until channel is free + while((hal_read32((void*)&(SPIM(device_id)->udma.tx_cfg)) + & (1<<5))>>5) + { + DBG_PRINTF("%s:%d\n",__func__,__LINE__); + } + + // enqueue EOT + cs_data->udma_cmd[0] = SPI_CMD_EOT(1); + spim_enqueue_channel(SPIM(device_id), + (uint32_t)&cs_data->udma_cmd[0], 1*(sizeof(uint32_t)), + UDMA_CORE_TX_CFG_EN(1), TX_CHANNEL); + } + } + else + { +#if 0 + struct spim_transfer transfer; + transfer.data = data; + transfer.flags = flags; + transfer.len = len; + transfer.cfg_cmd = cfg; + transfer.byte_align = byte_align; + transfer.is_send = 0; + __pi_spim_drv_fifo_enqueue(cs_data, &transfer, task); +#endif + } + active_irq(irq); +#endif +} + +void __pi_spi_xfer_async(struct spim_cs_data *cs_data, void *tx_data, void *rx_data, size_t len, pi_spi_flags_e flags, pi_task_t *task) +{ + /* TODO: port spi_xfer async */ + abort(); +#if 0 + struct spim_driver_data *drv_data = SPIM_CS_DATA_GET_DRV_DATA(cs_data); + int qspi = (flags & (0x3 << 2)) == PI_SPI_LINES_QUAD; + int cs_mode = (flags >> 0) & 0x3; + + int device_id = drv_data->device_id; + uint32_t cfg = cs_data->cfg; + DBG_PRINTF("%s:%d: core clock:%"PRIu32", baudrate:%"PRIu32", div=%"PRIu32", udma_cmd cfg =%d\n", + __func__,__LINE__,system_core_clock_get(),cs_data->max_baudrate, + system_core_clock_get() / cs_data->max_baudrate,cfg); + uint32_t byte_align = (cs_data->wordsize == PI_SPI_WORDSIZE_32) + && cs_data->big_endian; + int size = (len + 7) >> 3; + + int cmd_id = 0; + + uint32_t irq = deactive_irq(); + if(!drv_data->end_of_transfer) + { + cs_data->udma_cmd[0] = cfg; + cs_data->udma_cmd[1] = SPI_CMD_SOT(cs_data->cs); + cs_data->udma_cmd[2] = SPI_CMD_FULL_DUPL(len, byte_align); + drv_data->end_of_transfer = task; + drv_data->repeat_transfer = NULL; + if(cs_mode == PI_SPI_CS_AUTO) + { + spim_enqueue_channel(SPIM(device_id), (uint32_t)cs_data->udma_cmd, + 3*(sizeof(uint32_t)), UDMA_CORE_TX_CFG_EN(1), + TX_CHANNEL); + spim_enqueue_channel(SPIM(device_id), (uint32_t)rx_data, size, + UDMA_CORE_RX_CFG_EN(1) | (2<<1), RX_CHANNEL); + spim_enqueue_channel(SPIM(device_id), (uint32_t)tx_data, + size, UDMA_CORE_TX_CFG_EN(1), + TX_CHANNEL); + // wait until TX channel is free + while((hal_read32((void*)&(SPIM(device_id)->udma.tx_cfg)) + & (1<<5))>>5) + { + DBG_PRINTF("%s:%d\n",__func__,__LINE__); + } + // send EOT + cs_data->udma_cmd[3] = SPI_CMD_EOT(1); + spim_enqueue_channel(SPIM(device_id), + (uint32_t)&cs_data->udma_cmd[3], sizeof(uint32_t), + UDMA_CORE_TX_CFG_EN(1), TX_CHANNEL); + } + else + { + spim_enqueue_channel(SPIM(device_id), (uint32_t)cs_data->udma_cmd, + 3*(sizeof(uint32_t)), UDMA_CORE_TX_CFG_EN(1), + TX_CHANNEL); + // wait until TX channel is free + while((hal_read32((void*)&(SPIM(device_id)->udma.tx_cfg)) + & (1<<5))>>5) + { + DBG_PRINTF("%s:%d\n",__func__,__LINE__); + } + // activate rx event + hal_soc_eu_set_fc_mask(SOC_EVENT_UDMA_SPIM_RX(device_id)); + // NOTE: both transfers have the same size + // does not matter which one we wait + spim_enqueue_channel(SPIM(device_id), (uint32_t)rx_data, size, + UDMA_CORE_RX_CFG_EN(1) | (2<<1), RX_CHANNEL); + spim_enqueue_channel(SPIM(device_id), (uint32_t)tx_data, + size, UDMA_CORE_TX_CFG_EN(1), + TX_CHANNEL); + } + + } + else + { + struct spim_transfer transfer; + transfer.data = rx_data; + transfer.flags = flags; + transfer.len = len; + transfer.cfg_cmd = cfg; + transfer.byte_align = byte_align; + transfer.is_send = (uint32_t) tx_data; // sending a pointer means xfer + __pi_spim_drv_fifo_enqueue(cs_data, &transfer, task); + } + active_irq(irq); +#endif +} + +void __pi_spi_receive_async(struct spim_cs_data *cs_data, void *data, + size_t len, pi_spi_flags_e flags, pi_task_t *task) +{ + DBG_PRINTF("...start -> __pi_spi_receive_async...\n"); + // SPIM_CS_DATA_GET_DRV_DATA(cs_data) = (cs_data->drv_data) + struct spim_driver_data *drv_data = SPIM_CS_DATA_GET_DRV_DATA(cs_data); + int qspi = (flags & (0x3 << 2)) == PI_SPI_LINES_QUAD; + // Choose the type of cs mode, see enum "pi_spi_flags_e" to understand better. + int cs_mode = (flags >> 0) & 0x3; + + int device_id = drv_data->device_id; + task->id = device_id; //i need it for pos_spi_handle_copy + uint32_t cfg = cs_data->cfg; + DBG_PRINTF( + "%s:%s:%d: core clock:%" PRIu32 ", baudrate:%" PRIu32 ", div=%" PRIu32 ", udma_cmd cfg =%lx, qpi=%d\n", + __FILE__, __func__, __LINE__, system_core_clock_get(), + cs_data->max_baudrate, + system_core_clock_get() / cs_data->max_baudrate, cfg, qspi); + uint32_t byte_align = (cs_data->wordsize == PI_SPI_WORDSIZE_32) && + cs_data->big_endian; + + int buffer_size = (len + 7) >> 3; + + if (len > 8192 * 8) + { + DBG_PRINTF( + "%s:%s:%d: Transaction splitting unimplemented, too large", + __FILE__, __func__, __LINE__); + abort(); /* TODO: unimplemented transaction splitting */ + } + + DBG_PRINTF("%s:%s:%d: udma_cmd = %p\n", __FILE__, __func__, __LINE__, + &(cs_data->udma_cmd[0])); + uint32_t irq = deactive_irq(); + + uint8_t bitsword = 0; + uint8_t UDMA_CORE_CFG = 0; + + if (cs_data->wordsize == PI_SPI_WORDSIZE_8) + { + bitsword = 8; + UDMA_CORE_CFG = UDMA_CHANNEL_CFG_SIZE_8; + } + else if (cs_data->wordsize == PI_SPI_WORDSIZE_16) + { + bitsword = 16; + UDMA_CORE_CFG = UDMA_CHANNEL_CFG_SIZE_16; + } + else + { + bitsword = 32; + UDMA_CORE_CFG = UDMA_CHANNEL_CFG_SIZE_32; + } + + DBG_PRINTF("%s:%s:%d: bitsword = %u\n", __FILE__, __func__, __LINE__, bitsword); + DBG_PRINTF("%s:%s:%d: UDMA_CORE_CFG = %u\n", __FILE__, __func__, __LINE__, UDMA_CORE_CFG); + + /* + ** If I have no transfer in progress, then I go to set the command buffer + ** and then first I send the buffer where to receive the data and then the write command. + ** However, if I have some transfer in progress, then I put the new transfer + ** in the queue in the fifo and send it as soon as possible. + */ + + cs_data->udma_cmd[0] = cfg; + cs_data->udma_cmd[1] = SPI_CMD_SOT(cs_data->cs); + cs_data->udma_cmd[2] = SPI_CMD_RX_DATA(len / bitsword, SPI_CMD_1_WORD_PER_TRANSF, bitsword, qspi, SPI_CMD_MSB_FIRST); + cs_data->udma_cmd[3] = SPI_CMD_EOT(1, cs_mode == PI_SPI_CS_KEEP); + + uint32_t cfg_cmd = UDMA_CHANNEL_CFG_SIZE_32; + uint32_t rx_conf = UDMA_CORE_CFG; + if (drv_data->rx_channel->pendings[0] == NULL) + { + drv_data->rx_channel->pendings[0] = task; + plp_udma_enqueue(UDMA_SPIM_CMD_ADDR(device_id), (uint32_t)cs_data->udma_cmd, 4 * sizeof(uint32_t), UDMA_CHANNEL_CFG_EN | cfg_cmd); + plp_udma_enqueue(UDMA_SPIM_RX_ADDR(device_id), (uint32_t)data, buffer_size, UDMA_CHANNEL_CFG_EN | rx_conf); + } + else + { + if (drv_data->rx_channel->pendings[1] == NULL) + { + drv_data->rx_channel->pendings[1] = task; + plp_udma_enqueue(UDMA_SPIM_CMD_ADDR(device_id), (uint32_t)cs_data->udma_cmd, 4 * sizeof(uint32_t), UDMA_CHANNEL_CFG_EN | cfg_cmd); + plp_udma_enqueue(UDMA_SPIM_RX_ADDR(device_id), (uint32_t)data, buffer_size, UDMA_CHANNEL_CFG_EN | rx_conf); + } + else + { + // printf("else rx\n"); + struct spim_transfer transfer; + transfer.data = data; + transfer.flags = flags; + transfer.len = len; + transfer.cfg_cmd = cfg; + transfer.byte_align = byte_align; + transfer.is_send = 0; + drv_data->rx_channel->waitings_first=task; //i need it for pos_spi_handle_copy + __pi_spim_drv_fifo_enqueue(cs_data, &transfer, task); + } + } + active_irq(irq); + DBG_PRINTF("...end -> __pi_spi_receive_async...\n"); +} + +void __pi_spi_send_async(struct spim_cs_data *cs_data, void *data, size_t len, pi_spi_flags_e flags, pi_task_t *task) +{ + DBG_PRINTF("...start -> __pi_spi_send_async...\n"); + struct spim_driver_data *drv_data = SPIM_CS_DATA_GET_DRV_DATA(cs_data); + int qspi = (flags & (0x3 << 2)) == PI_SPI_LINES_QUAD; + int cs_mode = (flags >> 0) & 0x3; + DBG_PRINTF("%s:%s:%d...task %d, %p...\n", __FILE__, __func__, __LINE__, task == NULL ? 0 : 1, &task); + int device_id = drv_data->device_id; + task->id = device_id; //i need it for pos_spi_handle_copy + uint32_t cfg = cs_data->cfg; // SPI_CMD_CFG(...) + DBG_PRINTF( + "%s:%s:%d: core clock:%" PRIu32 ", baudrate:%" PRIu32 ", div=%" PRIu32 ", udma_cmd cfg =%lx, qpi=%d\n", + __FILE__, __func__, __LINE__, system_core_clock_get(), + cs_data->max_baudrate, + system_core_clock_get() / cs_data->max_baudrate, cfg, qspi); + uint32_t byte_align = (cs_data->wordsize == PI_SPI_WORDSIZE_32) && + cs_data->big_endian; + + /* buffer size */ + int buffer_size = (len + 7) >> 3; + + if (len > 8192 * 8) + { + DBG_PRINTF( + "%s:%s:%d: Transaction splitting unimplemented, too large", + __FILE__, __func__, __LINE__); + abort(); /* TODO: unimplemented transaction splitting */ + } + + // Address of the command buffer to be sent to the uDMA + DBG_PRINTF("%s:%s:%d: udma_cmd = %p\n", __FILE__, __func__, __LINE__, + &(cs_data->udma_cmd[0])); + uint32_t irq = deactive_irq(); + + uint8_t bitsword = 0; + uint8_t UDMA_CORE_CFG = 0; + + if (cs_data->wordsize == PI_SPI_WORDSIZE_8) + { + bitsword = 8; + UDMA_CORE_CFG = UDMA_CHANNEL_CFG_SIZE_8; // 0x0 + } + else if (cs_data->wordsize == PI_SPI_WORDSIZE_16) + { + bitsword = 16; + UDMA_CORE_CFG = UDMA_CHANNEL_CFG_SIZE_16; // 0x1 + } + else + { + bitsword = 32; + UDMA_CORE_CFG = UDMA_CHANNEL_CFG_SIZE_32; // 0x2 + } + + DBG_PRINTF("%s:%s:%d: bitsword = %u\n", __FILE__, __func__, __LINE__, bitsword); + DBG_PRINTF("%s:%s:%d: UDMA_CORE_CFG = %u\n", __FILE__, __func__, __LINE__, UDMA_CORE_CFG); + + /* + ** If I have no transfer in progress, then I go to set the command buffer + ** and then I first send the command and then the data. + ** However, if I have some transfer in progress, then I put the new transfer + ** in the queue in the fifo and send when I receive an EOT interrupt, + ** in this case the interrupt handler will manage the new transfer. + */ + cs_data->udma_cmd[0] = cfg; + cs_data->udma_cmd[1] = SPI_CMD_SOT(cs_data->cs); + cs_data->udma_cmd[2] = SPI_CMD_TX_DATA((len / bitsword), SPI_CMD_1_WORD_PER_TRANSF, bitsword, qspi, SPI_CMD_MSB_FIRST); + cs_data->udma_cmd[3] = SPI_CMD_EOT(1, cs_mode == PI_SPI_CS_KEEP); + + uint32_t cfg_cmd = UDMA_CHANNEL_CFG_SIZE_32; + uint32_t tx_conf = UDMA_CORE_CFG; + + if (drv_data->tx_channel->pendings[0] == NULL) + { + drv_data->tx_channel->pendings[0] = task; + plp_udma_enqueue(UDMA_SPIM_CMD_ADDR(device_id), (uint32_t)cs_data->udma_cmd, 4 * sizeof(uint32_t), UDMA_CHANNEL_CFG_EN | cfg_cmd); + plp_udma_enqueue(UDMA_SPIM_TX_ADDR(device_id), (uint32_t)data, buffer_size, UDMA_CHANNEL_CFG_EN | tx_conf); + } + else + { + if (drv_data->tx_channel->pendings[1] == NULL) + { + drv_data->tx_channel->pendings[1] = task; + plp_udma_enqueue(UDMA_SPIM_CMD_ADDR(device_id), (uint32_t)cs_data->udma_cmd, 4 * sizeof(uint32_t), UDMA_CHANNEL_CFG_EN | cfg_cmd); + plp_udma_enqueue(UDMA_SPIM_TX_ADDR(device_id), (uint32_t)data, buffer_size, UDMA_CHANNEL_CFG_EN | tx_conf); + } + else + { + /* a transfer is running, append to pendings transfers queue */ + struct spim_transfer transfer; + transfer.data = data; + transfer.flags = flags; + transfer.len = len; + transfer.cfg_cmd = cfg; + transfer.byte_align = byte_align; + transfer.is_send = 1; + drv_data->tx_channel->waitings_first=task; //i need it for pos_spi_handle_copy + __pi_spim_drv_fifo_enqueue(cs_data, &transfer, task); + } + } + active_irq(irq); + + DBG_PRINTF("...end -> __pi_spi_send_async...\n"); +} + +void __pi_spim_exec_next_transfer(pi_task_t *task) +{ + DBG_PRINTF("...start -> __pi_spim_exec_next_transfer...\n"); + DBG_PRINTF("%s:%s:%d\n", __FILE__, __func__, __LINE__); + if (task->data[5] == 1) + { // if is send + // printf("__pi_spim_exec_next_transfer tx %p\n", &task); + // cs data | data buffer | len | flags | end of transfer task + __pi_spi_send_async((struct spim_cs_data *)task->data[0], + (void *)task->data[1], task->data[2], + task->data[3], (pi_task_t *)task->data[4]); + } + else if (task->data[5] == 0) + { + // printf("__pi_spim_exec_next_transfer rx %p\n", &task); + // cs data | data buffer | len | flags | end of transfer task + __pi_spi_receive_async((struct spim_cs_data *)task->data[0], + (void *)task->data[1], task->data[2], + task->data[3], + (pi_task_t *)task->data[4]); + } + else + { // task->data[5] contains rx data addr + // cs data | tx buffer | rx buffer| len | flags | end of + // transfer task + __pi_spi_xfer_async((struct spim_cs_data *)task->data[0], + (void *)task->data[5], + (void *)task->data[1], task->data[2], + task->data[3], (pi_task_t *)task->data[4]); + } + DBG_PRINTF("...end -> __pi_spim_exec_next_transfer...\n"); +} + +void pos_spi_handle_copy(int event, void *arg) +{ + pos_udma_channel_t *channel = arg; + pi_task_t *pending_1 = channel->pendings[1]; + pi_task_t *pending_0 = channel->pendings[0]; + uint32_t spi_id = channel->base; + struct spim_driver_data *drv_data = __g_spim_drv_data[spi_id]; + pi_task_t *pending_first = __pi_spim_drv_fifo_pop(drv_data); + channel->pendings[0] = pending_1; + channel->pendings[1] = NULL; + + if (pending_first) + { + __pi_spim_exec_next_transfer(pending_first); + pending_first = NULL; + } + + pos_task_push_locked(pending_0); +} + +void pos_spi_create_channel(pos_udma_channel_t *channel, int channel_id, int soc_event) +{ + pos_soc_event_register_callback(soc_event, pos_spi_handle_copy, (void *)channel); + channel->pendings[0] = NULL; + channel->pendings[1] = NULL; + channel->waitings_first = NULL; + channel->base = 0; +} + + +int __pi_spi_open(struct spim_cs_data **cs_data, struct pi_spi_conf *conf) +{ + int irq = deactive_irq(); + for (int i = 0; i < ARCHI_NB_FLL; i++) + { + pos_fll_init(i); + } + + //struct pi_spi_conf *conf = (struct pi_spi_conf *)device->config; + + unsigned char spi_id = conf->itf; + int periph_id = ARCHI_UDMA_SPIM_ID(spi_id); + spi_channel = UDMA_EVENT_ID(periph_id); + int cs = conf->cs; + int status = 0; + //struct spim_cs_data **cs_data = (struct spim_cs_data **)(&device->data); + plp_udma_cg_set(plp_udma_cg_get() | (1 << periph_id)); + + struct spim_driver_data *drv_data; + if (__g_spim_drv_data[conf->itf]) + { + drv_data = __g_spim_drv_data[conf->itf]; + } + else + { + __g_spim_drv_data[conf->itf] = pi_default_malloc(sizeof(struct spim_driver_data)); + memset(__g_spim_drv_data[conf->itf], 0, sizeof(struct spim_driver_data)); + drv_data = __g_spim_drv_data[conf->itf]; + // Do this to define a node in a list. The list is a dynamic object. + drv_data->drv_fifo = pi_default_malloc(sizeof(struct spim_drv_fifo)); + memset(drv_data->drv_fifo, 0, sizeof(struct spim_drv_fifo)); + // controllo che il puntatore sia = 0 + if (!drv_data->drv_fifo) + { + active_irq(irq); + return -1; + } + drv_data->device_id = conf->itf; + } + + if (drv_data->nb_open == 0) + { + pos_spi_create_channel(drv_data->rx_channel, UDMA_CHANNEL_ID(periph_id), SOC_EVENT_UDMA_SPIM_EOT(drv_data->device_id)); + pos_spi_create_channel(drv_data->tx_channel, UDMA_CHANNEL_ID(periph_id) + 1, SOC_EVENT_UDMA_SPIM_EOT(drv_data->device_id)); + drv_data->rx_channel->base=spi_id; //way to save me the spi interface which is associated with the channel + drv_data->tx_channel->base=spi_id; //way to save me the spi interface which is associated with the channel + } + + soc_eu_fcEventMask_setEvent(SOC_EVENT_UDMA_SPIM_EOT(drv_data->device_id)); + + drv_data->nb_open++; + + *cs_data = __pi_spim_get_cs_data(drv_data, conf->cs); + + if (!*cs_data) + { // if (*cs_data == 0) + uint32_t clk_div = __pi_spi_clk_div_get(conf->max_baudrate); + // alloc a cs data, need to be in udma reachable ram + struct spim_cs_data *_cs_data = pi_data_malloc(sizeof(struct spim_cs_data)); + if (_cs_data == NULL) + { + DBG_PRINTF("[%s] _cs_data alloc failed\n", __func__); + active_irq(irq); + return -2; + } + if (clk_div > 0xFF) + { + DBG_PRINTF( + "[%s] clk_div, %" PRIu32 ", does not fit into 8 bits. SoC frequency too high.\n", + __func__, clk_div); + active_irq(irq); + return -3; + } + + memset(_cs_data, 0, sizeof(struct spim_cs_data)); + _cs_data->max_baudrate = conf->max_baudrate; + _cs_data->polarity = conf->polarity; + _cs_data->phase = conf->phase; + _cs_data->big_endian = conf->big_endian; + _cs_data->wordsize = conf->wordsize; + _cs_data->cs = conf->cs; + _cs_data->cfg = SPI_CMD_CFG(clk_div, _cs_data->phase, _cs_data->polarity); + // _cs_data->cfg = SPI_CMD_CFG(1,0,0); + *cs_data = _cs_data; + // I insert a new element in the cs_data list + __pi_spim_cs_data_add(drv_data, _cs_data); + } + + active_irq(irq); + + return status; +} + +void __pi_spi_close(struct spim_cs_data *cs_data, struct pi_spi_conf *conf) +{ + DBG_PRINTF("...start -> pi_spi_close...\n"); + + //struct pi_spi_conf *conf = (struct pi_spi_conf *)device->config; + uint32_t irq = deactive_irq(); + unsigned char spi_id = conf->itf; + int periph_id = ARCHI_UDMA_SPIM_ID(spi_id); + int spi_channel = UDMA_EVENT_ID(periph_id); + /* TODO: paste beg */ + //struct spim_cs_data *cs_data = device->data; + struct spim_driver_data *drv_data = cs_data->drv_data; + __pi_spim_cs_data_del(drv_data, cs_data->cs); + /* + ** Number of open SPI interfaces + */ + drv_data->nb_open--; + + /* + ** If you no longer have any SPI interface open, + ** then go clear the memory, with free, and clear the interrupt line. + */ + if (drv_data->nb_open == 0) + { + /* reactivate clock gating for said device */ + plp_udma_cg_set(plp_udma_cg_get() & ~(1 << periph_id)); + soc_eu_fcEventMask_clearEvent(SOC_EVENT_UDMA_SPIM_EOT(drv_data->device_id)); + // hal_soc_eu_clear_fc_mask( SOC_EVENT_UDMA_SPIM_EOT(drv_data->device_id)); + __g_spim_drv_data[drv_data->device_id] = NULL; + pi_default_free(drv_data->drv_fifo, sizeof(drv_data->drv_fifo)); + pi_default_free(drv_data, sizeof(drv_data)); + + active_irq(irq); + return; + } + pi_data_free(cs_data, sizeof(cs_data)); + /* TODO: moved to end return drv_data->nb_open; */ + /* TODO: paste end */ + + active_irq(irq); + DBG_PRINTF("...end -> pi_spi_close...\n"); + return; +} From 53235211f381c7bc7dbfff7e8f770b6933655d6b Mon Sep 17 00:00:00 2001 From: orlandonico Date: Tue, 28 Dec 2021 15:18:52 +0100 Subject: [PATCH 43/86] rtos/pulpos: add dir common for abstraction layer spi pulpos --- .../drivers/spim/common/include/common_spi.h | 103 ++++++++++++ .../pulp/drivers/spim/common/src/common_spi.c | 158 ++++++++++++++++++ 2 files changed, 261 insertions(+) create mode 100644 rtos/pulpos/pulp/drivers/spim/common/include/common_spi.h create mode 100644 rtos/pulpos/pulp/drivers/spim/common/src/common_spi.c diff --git a/rtos/pulpos/pulp/drivers/spim/common/include/common_spi.h b/rtos/pulpos/pulp/drivers/spim/common/include/common_spi.h new file mode 100644 index 00000000..b2fa9a64 --- /dev/null +++ b/rtos/pulpos/pulp/drivers/spim/common/include/common_spi.h @@ -0,0 +1,103 @@ +/* + * Copyright 2020 GreenWaves Technologies + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +/**----------------------------------------------------------------------------------------------------------------------- + * ? ABOUT + * @author : Orlando Nico + * @email : nico.orlando@studio.unibo.it + * @repo : pulp-sdk/rtos/pulpos/pulp/drivers/spim/common + * @createdOn : 11/11/2021 + * @description : + *-----------------------------------------------------------------------------------------------------------------------**/ + +/**================================================================================================ + ** INCLUDE + *================================================================================================**/ +#include "pmsis.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include + +/**================================================================================================ + ** STRUCT + *================================================================================================**/ +struct spim_drv_fifo +{ + pi_task_t *fifo_head; + pi_task_t *fifo_tail; +}; + +/* Structure holding infos for each chip selects (itf, cs, polarity etc...) */ +struct spim_cs_data +{ + struct spim_cs_data *next; + struct spim_driver_data *drv_data; + uint32_t cfg; + uint32_t udma_cmd[8]; + uint32_t max_baudrate; + uint32_t polarity; + uint32_t phase; + uint8_t cs; + uint8_t wordsize; + uint8_t big_endian; +}; + +/* Structure holding info for each interfaces + * most notably the fifo of enqueued transfers and meta to know whether + * interface is free or not */ +struct spim_driver_data +{ + struct spim_drv_fifo *drv_fifo; // does the same task as Dolphine with true and false + struct spim_cs_data *cs_list; // list of devices connected to the spi interface + pi_task_t *repeat_transfer; + pi_task_t *end_of_transfer; // gli associo un task per sapere se un trasferimento ha finito? + uint32_t nb_open; + uint8_t device_id; + pos_udma_channel_t *rx_channel; + pos_udma_channel_t *tx_channel; +}; + + +struct spim_transfer +{ + pi_spi_flags_e flags; + void *data; + uint32_t len; + uint32_t cfg_cmd; + uint32_t byte_align; + uint32_t is_send; +}; + +/**================================================================================================ + ** PROTOTYPE FUNCTION + *================================================================================================**/ +uint32_t __pi_spi_get_config(struct spim_cs_data *cs_data); +int32_t __pi_spim_drv_fifo_enqueue(struct spim_cs_data *cs_data, struct spim_transfer *transfer, pi_task_t *end_task); +pi_task_t *__pi_spim_drv_fifo_pop(struct spim_driver_data *data); +struct spim_cs_data *__pi_spim_get_cs_data(struct spim_driver_data *drv_data, int cs); +void __pi_spim_cs_data_del(struct spim_driver_data *drv_data, int cs); +void __pi_spim_cs_data_add(struct spim_driver_data *drv_data, struct spim_cs_data *cs_data); +uint32_t __pi_spi_clk_div_get(uint32_t spi_freq); +uint32_t deactive_irq(void); +void active_irq(uint32_t irq); \ No newline at end of file diff --git a/rtos/pulpos/pulp/drivers/spim/common/src/common_spi.c b/rtos/pulpos/pulp/drivers/spim/common/src/common_spi.c new file mode 100644 index 00000000..bb993364 --- /dev/null +++ b/rtos/pulpos/pulp/drivers/spim/common/src/common_spi.c @@ -0,0 +1,158 @@ +/* + * Copyright 2020 GreenWaves Technologies + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +/**----------------------------------------------------------------------------------------------------------------------- + * ? ABOUT + * @author : Orlando Nico + * @email : nico.orlando@studio.unibo.it + * @repo : pulp-sdk/rtos/pulpos/pulp/drivers/spim/common + * @createdOn : 11/11/2021 + * @description : + *-----------------------------------------------------------------------------------------------------------------------**/ + +/**================================================================================================ + ** INCLUDE + *================================================================================================**/ +#include "common_spi.h" + +/**================================================================================================ + ** FUNCTION + *================================================================================================**/ +uint32_t deactive_irq(void){ + return hal_irq_disable(); +} + +void active_irq(uint32_t irq){ + hal_irq_restore(irq); +} + +uint32_t __pi_spi_get_config(struct spim_cs_data *cs_data) +{ + return cs_data->cfg; +} + +// It is used to put an item in the list. The new item is put at the top of the list. +int32_t __pi_spim_drv_fifo_enqueue(struct spim_cs_data *cs_data, + struct spim_transfer *transfer, + pi_task_t *end_task) +{ + uint32_t irq = deactive_irq(); + struct spim_driver_data *drv_data = cs_data->drv_data; + /* Callback args. */ + end_task->data[0] = (uintptr_t)cs_data; + end_task->data[1] = (uintptr_t)transfer->data; + end_task->data[2] = (uintptr_t)transfer->len; + end_task->data[3] = (uintptr_t)transfer->flags; + end_task->data[4] = (uintptr_t)end_task; + end_task->data[5] = (uintptr_t)transfer->is_send; + end_task->next = NULL; + /* Enqueue transfer in drv fifo. */ + if (drv_data->drv_fifo->fifo_head == NULL) + { + /* Empty fifo. */ + drv_data->drv_fifo->fifo_head = end_task; + drv_data->drv_fifo->fifo_tail = drv_data->drv_fifo->fifo_head; + } + else + { + /* Enqueue to tail. */ + drv_data->drv_fifo->fifo_tail->next = end_task; + drv_data->drv_fifo->fifo_tail = + drv_data->drv_fifo->fifo_tail->next; + } + active_irq(irq); + return 0; +} + +pi_task_t *__pi_spim_drv_fifo_pop(struct spim_driver_data *data) +{ + // DBG_PRINTF("%s:%s:%d: \n", __FILE__, __func__, __LINE__); + pi_task_t *task_return = NULL; + // clean the value in the position 7 of regiter 0x300 + // irq = 1100010000000 + int check_300 = 0; + asm volatile("csrr %0, 0x300" + : "=r"(check_300)); + uint32_t irq = deactive_irq(); + if (data->drv_fifo->fifo_head != NULL) + { + task_return = data->drv_fifo->fifo_head; + data->drv_fifo->fifo_head = data->drv_fifo->fifo_head->next; + if (data->drv_fifo->fifo_head == NULL) + { + data->drv_fifo->fifo_tail = NULL; + } + } + // write in the 0x300 register + active_irq(irq); + return task_return; +} + +struct spim_cs_data *__pi_spim_get_cs_data(struct spim_driver_data *drv_data, int cs) +{ + struct spim_cs_data *cs_cur = drv_data->cs_list; + while (cs_cur != NULL && cs_cur->cs != cs) + { + cs_cur = cs_cur->next; + } + return cs_cur; +} + +void __pi_spim_cs_data_del(struct spim_driver_data *drv_data, + int cs) +{ + struct spim_cs_data *cs_cur = drv_data->cs_list; + struct spim_cs_data *cs_prev = cs_cur; + while (cs_cur != NULL && cs_cur->cs != cs) + { + cs_prev = cs_cur; + cs_cur = cs_cur->next; + } + if (cs_cur) + { + cs_prev->next = cs_cur->next; + cs_cur->next = NULL; + } +} + +void __pi_spim_cs_data_add(struct spim_driver_data *drv_data, struct spim_cs_data *cs_data) +{ + // head insert, most recently allocated should be most recently used + cs_data->drv_data = drv_data; + cs_data->next = drv_data->cs_list; +} + +uint32_t __pi_spi_clk_div_get(uint32_t spi_freq) +{ + uint32_t periph_freq = pi_freq_get(PI_FREQ_DOMAIN_PERIPH); + if (spi_freq < periph_freq) + { + uint32_t clk_div = 0; + clk_div = (periph_freq + spi_freq - 1) / spi_freq; + if (clk_div & 1) + { + clk_div += 1; + } + /* The SPIM always divide by 2 once we activate the divider, + thus increase by 1 in case it is even to not go above the max + frequency. */ + clk_div = clk_div >> 1; + return clk_div; + } + return 0; +} \ No newline at end of file From ca9af1c9c53cbdb936a16ce30c146b0e3a8baa11 Mon Sep 17 00:00:00 2001 From: orlandonico Date: Tue, 28 Dec 2021 16:59:40 +0100 Subject: [PATCH 44/86] rtos/pulpos: added swith between pulpos and freertos for spim_driver_data --- .../drivers/spim/common/include/common_spi.h | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/rtos/pulpos/pulp/drivers/spim/common/include/common_spi.h b/rtos/pulpos/pulp/drivers/spim/common/include/common_spi.h index b2fa9a64..650c19a0 100644 --- a/rtos/pulpos/pulp/drivers/spim/common/include/common_spi.h +++ b/rtos/pulpos/pulp/drivers/spim/common/include/common_spi.h @@ -63,6 +63,7 @@ struct spim_cs_data uint8_t big_endian; }; +#ifdef USE_PULPOS /* Structure holding info for each interfaces * most notably the fifo of enqueued transfers and meta to know whether * interface is free or not */ @@ -77,7 +78,20 @@ struct spim_driver_data pos_udma_channel_t *rx_channel; pos_udma_channel_t *tx_channel; }; - +#ifdef USE_FREERTOS +/* Structure holding info for each interfaces + * most notably the fifo of enqueued transfers and meta to know whether + * interface is free or not */ +struct spim_driver_data { + struct spim_drv_fifo *drv_fifo; // does the same task as Dolphine with true and false + struct spim_cs_data *cs_list; // list of devices connected to the spi interface + pi_task_t *repeat_transfer; + pi_task_t *end_of_transfer; // gli associo un task per sapere se un trasferimento ha finito? + uint32_t nb_open; + uint8_t device_id; +}; +#endif +#endif struct spim_transfer { From 257e78cabbdab50004d0879857b86d2ec1d74863 Mon Sep 17 00:00:00 2001 From: orlandonico Date: Tue, 28 Dec 2021 17:00:21 +0100 Subject: [PATCH 45/86] rtos/pulpos: added swith between pulpos and freertos for function active and deactive --- .../pulpos/pulp/drivers/spim/common/src/common_spi.c | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/rtos/pulpos/pulp/drivers/spim/common/src/common_spi.c b/rtos/pulpos/pulp/drivers/spim/common/src/common_spi.c index bb993364..e796f57a 100644 --- a/rtos/pulpos/pulp/drivers/spim/common/src/common_spi.c +++ b/rtos/pulpos/pulp/drivers/spim/common/src/common_spi.c @@ -34,11 +34,21 @@ ** FUNCTION *================================================================================================**/ uint32_t deactive_irq(void){ +#ifdef USE_PULPOS return hal_irq_disable(); +#ifdef USE_FREERTOS + return __disable_irq(); +#endif +#endif } void active_irq(uint32_t irq){ - hal_irq_restore(irq); +#ifdef USE_PULPOS + hal_irq_restore(irq); +#ifdef USE_FREERTOS + __restore_irq(irq); +#endif +#endif } uint32_t __pi_spi_get_config(struct spim_cs_data *cs_data) From 495a5f49ff76a1bc3108a72054fa0011cafc3b5d Mon Sep 17 00:00:00 2001 From: orlandonico Date: Tue, 28 Dec 2021 17:01:33 +0100 Subject: [PATCH 46/86] rtos/pulpos: added label for pulpos --- tests/spim_flash_async/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/spim_flash_async/Makefile b/tests/spim_flash_async/Makefile index 8250ac15..f9b79053 100644 --- a/tests/spim_flash_async/Makefile +++ b/tests/spim_flash_async/Makefile @@ -13,6 +13,9 @@ endif APP_CFLAGS += -Os -g APP_LDFLAGS += -Os -g +APP_CFLAGS += -DUSE_PULPOS +# + CONFIG_SPIM = 1 include $(RULES_DIR)/pmsis_rules.mk From 6579e7af5f846aaaf7563e6e42d536f1c74aebf8 Mon Sep 17 00:00:00 2001 From: orlandonico Date: Tue, 28 Dec 2021 17:01:47 +0100 Subject: [PATCH 47/86] rtos/pulpos: added label for pulpos --- tests/spim_flash_sync/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/spim_flash_sync/Makefile b/tests/spim_flash_sync/Makefile index 17869f3d..1463665f 100644 --- a/tests/spim_flash_sync/Makefile +++ b/tests/spim_flash_sync/Makefile @@ -13,6 +13,9 @@ endif APP_CFLAGS += -Os -g APP_LDFLAGS += -Os -g +APP_CFLAGS += -DUSE_PULPOS +# + CONFIG_SPIM = 1 include $(RULES_DIR)/pmsis_rules.mk From 8d884aa573295e905a830497f48d55f3c86861ae Mon Sep 17 00:00:00 2001 From: orlandonico Date: Wed, 29 Dec 2021 11:30:08 +0100 Subject: [PATCH 48/86] Add information about author --- .../include/abstraction_layer_spi.h | 29 ++++--------------- 1 file changed, 5 insertions(+), 24 deletions(-) diff --git a/rtos/pulpos/pulp/drivers/spim/abstraction_layer_spi_pulpos/include/abstraction_layer_spi.h b/rtos/pulpos/pulp/drivers/spim/abstraction_layer_spi_pulpos/include/abstraction_layer_spi.h index cba02e97..d18cf2cf 100644 --- a/rtos/pulpos/pulp/drivers/spim/abstraction_layer_spi_pulpos/include/abstraction_layer_spi.h +++ b/rtos/pulpos/pulp/drivers/spim/abstraction_layer_spi_pulpos/include/abstraction_layer_spi.h @@ -18,11 +18,11 @@ /**----------------------------------------------------------------------------------------------------------------------- * ? ABOUT - * @author : Orlando Nico - * @email : nico.orlando@studio.unibo.it + * @author : Orlando Nico, GreenWaves Technologies, Robert Balas + * @email : nico.orlando@studio.unibo.it, balasr@iis.ee.ethz.ch * @repo : pulp-sdk/rtos/pulpos/pulp/drivers/spim/abstraction_layer_spi - * @createdOn : 11/11/2021 - * @description : + * @createdOn : 28/12/2021 + * @description : Abstraction Layer SPI for PulpOS *-----------------------------------------------------------------------------------------------------------------------**/ /**================================================================================================ @@ -35,40 +35,21 @@ *================================================================================================**/ #define DEBUG_PRINTF(...) ((void)0) #define DBG_PRINTF(...) ((void)0) - -/* TODO: remove this glue */ - #define SPIM_CS_DATA_GET_DRV_DATA(cs_data) (cs_data->drv_data) - #define NB_SOC_EVENTS (ARCHI_SOC_EVENT_NB_TOTAL) - -typedef void (*pi_fc_event_handler_t)(void *arg); - -// va bene per Control-Pulp -/* -** #define pi_default_malloc(x) malloc(x) -** #define pi_default_free(x,y) free(x) -** #define pi_data_malloc(x) malloc(x) -** #define pi_data_free(x,y) free(x) -*/ - -// Pulp-Open #define pi_default_malloc(x) pi_l2_malloc(x) #define pi_default_free(x, y) pi_l2_free(x, y) #define pi_data_malloc(x) pi_l2_malloc(x) #define pi_data_free(x, y) pi_l2_free(x, y) - #define UDMA_EVENT_OFFSET_SPI_EOT 3 #define SOC_EVENT_UDMA_SPIM_EOT(id) \ ((ARCHI_UDMA_SPIM_ID(id) << ARCHI_SOC_EVENT_UDMA_NB_CHANNEL_EVT_LOG2) + \ UDMA_EVENT_OFFSET_SPI_EOT) - +typedef void (*pi_fc_event_handler_t)(void *arg); /**================================================================================================ ** STRUCT *================================================================================================**/ - - /**================================================================================================ ** PROTOTYPE FUNCTION *================================================================================================**/ From 6cc7dc8caefbdb5eb9a719dc771604beafd61b63 Mon Sep 17 00:00:00 2001 From: orlandonico Date: Wed, 29 Dec 2021 11:31:03 +0100 Subject: [PATCH 49/86] Add information about author --- .../src/abstraction_layer_spi.c | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/rtos/pulpos/pulp/drivers/spim/abstraction_layer_spi_pulpos/src/abstraction_layer_spi.c b/rtos/pulpos/pulp/drivers/spim/abstraction_layer_spi_pulpos/src/abstraction_layer_spi.c index 2525c00d..69c11e28 100644 --- a/rtos/pulpos/pulp/drivers/spim/abstraction_layer_spi_pulpos/src/abstraction_layer_spi.c +++ b/rtos/pulpos/pulp/drivers/spim/abstraction_layer_spi_pulpos/src/abstraction_layer_spi.c @@ -18,11 +18,11 @@ /**----------------------------------------------------------------------------------------------------------------------- * ? ABOUT - * @author : Orlando Nico - * @email : nico.orlando@studio.unibo.it + * @author : Orlando Nico, GreenWaves Technologies, Robert Balas + * @email : nico.orlando@studio.unibo.it, balasr@iis.ee.ethz.ch * @repo : pulp-sdk/rtos/pulpos/pulp/drivers/spim/abstraction_layer_spi - * @createdOn : 11/11/2021 - * @description : + * @createdOn : 28/12/2021 + * @description : Abstraction Layer SPI for PulpOS *-----------------------------------------------------------------------------------------------------------------------**/ /**================================================================================================ @@ -54,7 +54,6 @@ uint32_t system_core_clock_get(void) return system_core_clock; } - // TODO: prepare pseudo exec for delegate void __pi_spim_execute_callback(void *arg) { @@ -554,7 +553,6 @@ void pos_spi_create_channel(pos_udma_channel_t *channel, int channel_id, int soc channel->base = 0; } - int __pi_spi_open(struct spim_cs_data **cs_data, struct pi_spi_conf *conf) { int irq = deactive_irq(); @@ -690,4 +688,4 @@ void __pi_spi_close(struct spim_cs_data *cs_data, struct pi_spi_conf *conf) active_irq(irq); DBG_PRINTF("...end -> pi_spi_close...\n"); return; -} +} \ No newline at end of file From 290f18b84218eac87aa2a0d537627bd5b2554604 Mon Sep 17 00:00:00 2001 From: orlandonico Date: Wed, 29 Dec 2021 11:34:09 +0100 Subject: [PATCH 50/86] rtos/pulpos: Added ifdef to choose the correct spim_driver_data structure for pulpos or freertos and for the deactive_irq and active_irq functions and for the includes --- .../drivers/spim/common/include/common_spi.h | 40 ++++++++++++++++--- 1 file changed, 35 insertions(+), 5 deletions(-) diff --git a/rtos/pulpos/pulp/drivers/spim/common/include/common_spi.h b/rtos/pulpos/pulp/drivers/spim/common/include/common_spi.h index 650c19a0..fa1aa710 100644 --- a/rtos/pulpos/pulp/drivers/spim/common/include/common_spi.h +++ b/rtos/pulpos/pulp/drivers/spim/common/include/common_spi.h @@ -18,16 +18,17 @@ /**----------------------------------------------------------------------------------------------------------------------- * ? ABOUT - * @author : Orlando Nico - * @email : nico.orlando@studio.unibo.it + * @author : Orlando Nico, GreenWaves Technologies, Robert Balas + * @email : nico.orlando@studio.unibo.it, balasr@iis.ee.ethz.ch * @repo : pulp-sdk/rtos/pulpos/pulp/drivers/spim/common - * @createdOn : 11/11/2021 - * @description : + * @createdOn : 28/12/2021 + * @description : Common File for Abstraction Layer SPI for PulpOS and FreeRTOS *-----------------------------------------------------------------------------------------------------------------------**/ /**================================================================================================ ** INCLUDE *================================================================================================**/ +#ifdef USE_PULPOS #include "pmsis.h" #include #include @@ -38,6 +39,34 @@ #include #include #include +#endif + +#ifdef USE_FREERTOS +#include "pmsis_types.h" +#include "pmsis_task.h" +#include "implementation_specific_defines.h" +#include "system.h" +#include "fc_event.h" +#include "udma.h" +#include "fll.h" +#include "events.h" +#include "properties.h" +#include "spi_periph.h" +#include "spi.h" +#include "udma_spim.h" +#include "udma_ctrl.h" +#endif + +/**================================================================================================ + ** DEFINE + *================================================================================================**/ +#ifdef DEBUG +#define DEBUG_PRINTF printf +#define DBG_PRINTF printf +#else +#define DEBUG_PRINTF(...) ((void)0) +#define DBG_PRINTF(...) ((void)0) +#endif /* DEBUG */ /**================================================================================================ ** STRUCT @@ -78,6 +107,7 @@ struct spim_driver_data pos_udma_channel_t *rx_channel; pos_udma_channel_t *tx_channel; }; +#endif #ifdef USE_FREERTOS /* Structure holding info for each interfaces * most notably the fifo of enqueued transfers and meta to know whether @@ -91,7 +121,7 @@ struct spim_driver_data { uint8_t device_id; }; #endif -#endif + struct spim_transfer { From bb9f37d3a5e148c1710239362a5be03696d7eaf4 Mon Sep 17 00:00:00 2001 From: orlandonico Date: Wed, 29 Dec 2021 11:35:51 +0100 Subject: [PATCH 51/86] rtos/pulpos: Added ifdef to choose deactive_irq and active_irq functions for pulpos and freertos --- .../pulp/drivers/spim/common/src/common_spi.c | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/rtos/pulpos/pulp/drivers/spim/common/src/common_spi.c b/rtos/pulpos/pulp/drivers/spim/common/src/common_spi.c index e796f57a..bfb5fe4e 100644 --- a/rtos/pulpos/pulp/drivers/spim/common/src/common_spi.c +++ b/rtos/pulpos/pulp/drivers/spim/common/src/common_spi.c @@ -18,11 +18,11 @@ /**----------------------------------------------------------------------------------------------------------------------- * ? ABOUT - * @author : Orlando Nico - * @email : nico.orlando@studio.unibo.it + * @author : Orlando Nico, GreenWaves Technologies, Robert Balas + * @email : nico.orlando@studio.unibo.it, balasr@iis.ee.ethz.ch * @repo : pulp-sdk/rtos/pulpos/pulp/drivers/spim/common - * @createdOn : 11/11/2021 - * @description : + * @createdOn : 28/12/2021 + * @description : Common File for Abstraction Layer SPI for PulpOS and FreeRTOS *-----------------------------------------------------------------------------------------------------------------------**/ /**================================================================================================ @@ -36,19 +36,20 @@ uint32_t deactive_irq(void){ #ifdef USE_PULPOS return hal_irq_disable(); +#endif #ifdef USE_FREERTOS return __disable_irq(); #endif -#endif } void active_irq(uint32_t irq){ #ifdef USE_PULPOS hal_irq_restore(irq); +#endif #ifdef USE_FREERTOS __restore_irq(irq); #endif -#endif + } uint32_t __pi_spi_get_config(struct spim_cs_data *cs_data) From d96ef9b4e7a6d48c11ccbbd9fceec4e95c0b328b Mon Sep 17 00:00:00 2001 From: orlandonico Date: Wed, 29 Dec 2021 11:40:16 +0100 Subject: [PATCH 52/86] rtos/pulpos: Added ifdef to choose whether to compile abstraction layer of freertos or pulpos --- rtos/pulpos/common/rules/pulpos/default_rules.mk | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/rtos/pulpos/common/rules/pulpos/default_rules.mk b/rtos/pulpos/common/rules/pulpos/default_rules.mk index eef41fe1..8cc916bc 100644 --- a/rtos/pulpos/common/rules/pulpos/default_rules.mk +++ b/rtos/pulpos/common/rules/pulpos/default_rules.mk @@ -50,11 +50,15 @@ ifdef PULPOS_PLATFORM platform=$(PULPOS_PLATFORM) endif +ifdef USE_PULPOS PULP_APP_CFLAGS += -I$(PULP_SDK_HOME)/rtos/pulpos/pulp/drivers/spim/abstraction_layer_spi_pulpos/include/ PULP_APP_SRCS += $(PULP_SDK_HOME)/rtos/pulpos/pulp/drivers/spim/abstraction_layer_spi_pulpos/src/abstraction_layer_spi.c - PULP_APP_CFLAGS += -I$(PULP_SDK_HOME)/rtos/pulpos/pulp/drivers/spim/common/include/ PULP_APP_SRCS += $(PULP_SDK_HOME)/rtos/pulpos/pulp/drivers/spim/common/src/common_spi.c +endif + +ifdef USE_FREERTOS +endif # ifndef platform From a6440b539afc68109c9106e1ed999e5542a0dd8e Mon Sep 17 00:00:00 2001 From: orlandonico Date: Thu, 30 Dec 2021 13:25:40 +0100 Subject: [PATCH 53/86] rtos/pulpos: add rules for freertos --- rtos/pulpos/common/rules/pulpos/default_rules.mk | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/rtos/pulpos/common/rules/pulpos/default_rules.mk b/rtos/pulpos/common/rules/pulpos/default_rules.mk index 8cc916bc..1f3f81ff 100644 --- a/rtos/pulpos/common/rules/pulpos/default_rules.mk +++ b/rtos/pulpos/common/rules/pulpos/default_rules.mk @@ -58,6 +58,22 @@ PULP_APP_SRCS += $(PULP_SDK_HOME)/rtos/pulpos/pulp/drivers/spim/common/src/commo endif ifdef USE_FREERTOS +PULP_APP_CFLAGS += -I$(PULP_SDK_HOME)/tests/spim_flash_async/FreeRTOSConfig.h +PULP_APP_CFLAGS += -I$(PULP_SDK_HOME)/rtos/freertos/abstraction_layer_freertos/include +PULP_APP_SRCS += $(PULP_SDK_HOME)/rtos/freertos/abstraction_layer_freertos/src/croutine.c +PULP_APP_SRCS += $(PULP_SDK_HOME)/rtos/freertos/abstraction_layer_freertos/src/event_groups.c +PULP_APP_SRCS += $(PULP_SDK_HOME)/rtos/freertos/abstraction_layer_freertos/src/list.c +PULP_APP_SRCS += $(PULP_SDK_HOME)/rtos/freertos/abstraction_layer_freertos/src/os.c +PULP_APP_SRCS += $(PULP_SDK_HOME)/rtos/freertos/abstraction_layer_freertos/src/pmsis_task.c +PULP_APP_SRCS += $(PULP_SDK_HOME)/rtos/freertos/abstraction_layer_freertos/src/queue.c +PULP_APP_SRCS += $(PULP_SDK_HOME)/rtos/freertos/abstraction_layer_freertos/src/stream_buffer.c +PULP_APP_SRCS += $(PULP_SDK_HOME)/rtos/freertos/abstraction_layer_freertos/src/tasks.c +PULP_APP_SRCS += $(PULP_SDK_HOME)/rtos/freertos/abstraction_layer_freertos/src/timers.c + +PULP_APP_CFLAGS += -I$(PULP_SDK_HOME)/rtos/pulpos/pulp/drivers/spim/abstraction_layer_spi_pulpos/include/ +PULP_APP_SRCS += $(PULP_SDK_HOME)/rtos/pulpos/pulp/drivers/spim/abstraction_layer_spi_pulpos/src/abstraction_layer_spi.c +PULP_APP_CFLAGS += -I$(PULP_SDK_HOME)/rtos/pulpos/pulp/drivers/spim/common/include/ +PULP_APP_SRCS += $(PULP_SDK_HOME)/rtos/pulpos/pulp/drivers/spim/common/src/common_spi.c endif # From a07b0f498b1bca71e1e4b2a342c2d8380b6a1777 Mon Sep 17 00:00:00 2001 From: orlandonico Date: Thu, 30 Dec 2021 13:26:34 +0100 Subject: [PATCH 54/86] rtos/pulpos: add rules for freertos --- rtos/pulpos/common/rules/pulpos/src.mk | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/rtos/pulpos/common/rules/pulpos/src.mk b/rtos/pulpos/common/rules/pulpos/src.mk index 5b33daea..f0cd0c6a 100644 --- a/rtos/pulpos/common/rules/pulpos/src.mk +++ b/rtos/pulpos/common/rules/pulpos/src.mk @@ -18,12 +18,21 @@ ifeq '$(CONFIG_LIBC_MINIMAL)' '1' PULP_SRCS += lib/libc/minimal/io.c lib/libc/minimal/fprintf.c lib/libc/minimal/prf.c lib/libc/minimal/sprintf.c lib/libc/minimal/semihost.c endif +ifdef USE_PULPOS ifdef CONFIG_KERNEL PULP_SRCS += kernel/init.c kernel/kernel.c kernel/device.c kernel/task.c kernel/alloc.c \ kernel/alloc_pool.c kernel/irq.c kernel/soc_event.c kernel/log.c kernel/time.c PULP_ASM_SRCS += kernel/irq_asm.S kernel/task_asm.S kernel/time_asm.S +endif +endif +ifdef USE_FREERTOS +ifdef CONFIG_KERNEL +PULP_SRCS += kernel/init.c kernel/kernel.c kernel/device.c kernel/alloc.c \ + kernel/alloc_pool.c kernel/irq.c kernel/soc_event.c kernel/log.c kernel/time.c +PULP_ASM_SRCS += kernel/irq_asm.S kernel/task_asm.S kernel/time_asm.S +endif endif # SOC EVENT From 6920cc7b70ac7f8039270537097d046f12a3e00e Mon Sep 17 00:00:00 2001 From: orlandonico Date: Thu, 30 Dec 2021 13:29:01 +0100 Subject: [PATCH 55/86] rtos: add freertos --- .../include/FreeRTOS.h | 1295 ++++ .../include/StackMacros.h | 133 + .../include/atomic.h | 414 ++ .../include/croutine.h | 720 +++ .../include/deprecated_definitions.h | 279 + .../include/event_groups.h | 757 +++ .../abstraction_layer_freertos/include/list.h | 412 ++ .../include/message_buffer.h | 803 +++ .../include/mpu_prototypes.h | 160 + .../include/mpu_wrappers.h | 189 + .../include/portable.h | 199 + .../include/projdefs.h | 124 + .../include/queue.h | 1655 +++++ .../include/semphr.h | 1140 ++++ .../include/stack_macros.h | 129 + .../include/stdint.readme | 27 + .../include/stream_buffer.h | 859 +++ .../abstraction_layer_freertos/include/task.h | 2543 ++++++++ .../include/timers.h | 1309 ++++ .../scr/History.txt | 2745 +++++++++ .../scr/Quick_Start_Guide.url | 5 + .../abstraction_layer_freertos/scr/croutine.c | 353 ++ .../scr/event_groups.c | 753 +++ .../abstraction_layer_freertos/scr/list.c | 198 + .../abstraction_layer_freertos/scr/os.c | 256 + .../scr/pmsis_task.c | 146 + .../abstraction_layer_freertos/scr/queue.c | 2945 +++++++++ .../abstraction_layer_freertos/scr/readme.txt | 17 + .../scr/stream_buffer.c | 1263 ++++ .../abstraction_layer_freertos/scr/tasks.c | 5310 +++++++++++++++++ .../abstraction_layer_freertos/scr/timers.c | 1127 ++++ 31 files changed, 28265 insertions(+) create mode 100644 rtos/freertos/abstraction_layer_freertos/include/FreeRTOS.h create mode 100644 rtos/freertos/abstraction_layer_freertos/include/StackMacros.h create mode 100644 rtos/freertos/abstraction_layer_freertos/include/atomic.h create mode 100644 rtos/freertos/abstraction_layer_freertos/include/croutine.h create mode 100644 rtos/freertos/abstraction_layer_freertos/include/deprecated_definitions.h create mode 100644 rtos/freertos/abstraction_layer_freertos/include/event_groups.h create mode 100644 rtos/freertos/abstraction_layer_freertos/include/list.h create mode 100644 rtos/freertos/abstraction_layer_freertos/include/message_buffer.h create mode 100644 rtos/freertos/abstraction_layer_freertos/include/mpu_prototypes.h create mode 100644 rtos/freertos/abstraction_layer_freertos/include/mpu_wrappers.h create mode 100644 rtos/freertos/abstraction_layer_freertos/include/portable.h create mode 100644 rtos/freertos/abstraction_layer_freertos/include/projdefs.h create mode 100644 rtos/freertos/abstraction_layer_freertos/include/queue.h create mode 100644 rtos/freertos/abstraction_layer_freertos/include/semphr.h create mode 100644 rtos/freertos/abstraction_layer_freertos/include/stack_macros.h create mode 100644 rtos/freertos/abstraction_layer_freertos/include/stdint.readme create mode 100644 rtos/freertos/abstraction_layer_freertos/include/stream_buffer.h create mode 100644 rtos/freertos/abstraction_layer_freertos/include/task.h create mode 100644 rtos/freertos/abstraction_layer_freertos/include/timers.h create mode 100644 rtos/freertos/abstraction_layer_freertos/scr/History.txt create mode 100644 rtos/freertos/abstraction_layer_freertos/scr/Quick_Start_Guide.url create mode 100644 rtos/freertos/abstraction_layer_freertos/scr/croutine.c create mode 100644 rtos/freertos/abstraction_layer_freertos/scr/event_groups.c create mode 100644 rtos/freertos/abstraction_layer_freertos/scr/list.c create mode 100644 rtos/freertos/abstraction_layer_freertos/scr/os.c create mode 100644 rtos/freertos/abstraction_layer_freertos/scr/pmsis_task.c create mode 100644 rtos/freertos/abstraction_layer_freertos/scr/queue.c create mode 100644 rtos/freertos/abstraction_layer_freertos/scr/readme.txt create mode 100644 rtos/freertos/abstraction_layer_freertos/scr/stream_buffer.c create mode 100644 rtos/freertos/abstraction_layer_freertos/scr/tasks.c create mode 100644 rtos/freertos/abstraction_layer_freertos/scr/timers.c diff --git a/rtos/freertos/abstraction_layer_freertos/include/FreeRTOS.h b/rtos/freertos/abstraction_layer_freertos/include/FreeRTOS.h new file mode 100644 index 00000000..a621f8a3 --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/include/FreeRTOS.h @@ -0,0 +1,1295 @@ +/* + * FreeRTOS Kernel V10.3.0 + * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * + * http://www.FreeRTOS.org + * http://aws.amazon.com/freertos + * + * 1 tab == 4 spaces! + */ + +#ifndef INC_FREERTOS_H +#define INC_FREERTOS_H + +/* + * Include the generic headers required for the FreeRTOS port being used. + */ +#include + +/* + * If stdint.h cannot be located then: + * + If using GCC ensure the -nostdint options is *not* being used. + * + Ensure the project's include path includes the directory in which your + * compiler stores stdint.h. + * + Set any compiler options necessary for it to support C99, as technically + * stdint.h is only mandatory with C99 (FreeRTOS does not require C99 in any + * other way). + * + The FreeRTOS download includes a simple stdint.h definition that can be + * used in cases where none is provided by the compiler. The files only + * contains the typedefs required to build FreeRTOS. Read the instructions + * in FreeRTOS/source/stdint.readme for more information. + */ +#include /* READ COMMENT ABOVE. */ + +#ifdef __cplusplus +extern "C" { +#endif + +/* Application specific configuration options. */ +#include "FreeRTOSConfig.h" + +/* Basic FreeRTOS definitions. */ +#include "projdefs.h" + +/* Definitions specific to the port being used. */ +#include "portable.h" + +/* Must be defaulted before configUSE_NEWLIB_REENTRANT is used below. */ +#ifndef configUSE_NEWLIB_REENTRANT + #define configUSE_NEWLIB_REENTRANT 0 +#endif + +/* Required if struct _reent is used. */ +#if ( configUSE_NEWLIB_REENTRANT == 1 ) + #include +#endif +/* + * Check all the required application specific macros have been defined. + * These macros are application specific and (as downloaded) are defined + * within FreeRTOSConfig.h. + */ + +#ifndef configMINIMAL_STACK_SIZE + #error Missing definition: configMINIMAL_STACK_SIZE must be defined in FreeRTOSConfig.h. configMINIMAL_STACK_SIZE defines the size (in words) of the stack allocated to the idle task. Refer to the demo project provided for your port for a suitable value. +#endif + +#ifndef configMAX_PRIORITIES + #error Missing definition: configMAX_PRIORITIES must be defined in FreeRTOSConfig.h. See the Configuration section of the FreeRTOS API documentation for details. +#endif + +#if configMAX_PRIORITIES < 1 + #error configMAX_PRIORITIES must be defined to be greater than or equal to 1. +#endif + +#ifndef configUSE_PREEMPTION + #error Missing definition: configUSE_PREEMPTION must be defined in FreeRTOSConfig.h as either 1 or 0. See the Configuration section of the FreeRTOS API documentation for details. +#endif + +#ifndef configUSE_IDLE_HOOK + #error Missing definition: configUSE_IDLE_HOOK must be defined in FreeRTOSConfig.h as either 1 or 0. See the Configuration section of the FreeRTOS API documentation for details. +#endif + +#ifndef configUSE_TICK_HOOK + #error Missing definition: configUSE_TICK_HOOK must be defined in FreeRTOSConfig.h as either 1 or 0. See the Configuration section of the FreeRTOS API documentation for details. +#endif + +#ifndef configUSE_16_BIT_TICKS + #error Missing definition: configUSE_16_BIT_TICKS must be defined in FreeRTOSConfig.h as either 1 or 0. See the Configuration section of the FreeRTOS API documentation for details. +#endif + +#ifndef configUSE_CO_ROUTINES + #define configUSE_CO_ROUTINES 0 +#endif + +#ifndef INCLUDE_vTaskPrioritySet + #define INCLUDE_vTaskPrioritySet 0 +#endif + +#ifndef INCLUDE_uxTaskPriorityGet + #define INCLUDE_uxTaskPriorityGet 0 +#endif + +#ifndef INCLUDE_vTaskDelete + #define INCLUDE_vTaskDelete 0 +#endif + +#ifndef INCLUDE_vTaskSuspend + #define INCLUDE_vTaskSuspend 0 +#endif + +#ifndef INCLUDE_vTaskDelayUntil + #define INCLUDE_vTaskDelayUntil 0 +#endif + +#ifndef INCLUDE_vTaskDelay + #define INCLUDE_vTaskDelay 0 +#endif + +#ifndef INCLUDE_xTaskGetIdleTaskHandle + #define INCLUDE_xTaskGetIdleTaskHandle 0 +#endif + +#ifndef INCLUDE_xTaskAbortDelay + #define INCLUDE_xTaskAbortDelay 0 +#endif + +#ifndef INCLUDE_xQueueGetMutexHolder + #define INCLUDE_xQueueGetMutexHolder 0 +#endif + +#ifndef INCLUDE_xSemaphoreGetMutexHolder + #define INCLUDE_xSemaphoreGetMutexHolder INCLUDE_xQueueGetMutexHolder +#endif + +#ifndef INCLUDE_xTaskGetHandle + #define INCLUDE_xTaskGetHandle 0 +#endif + +#ifndef INCLUDE_uxTaskGetStackHighWaterMark + #define INCLUDE_uxTaskGetStackHighWaterMark 0 +#endif + +#ifndef INCLUDE_uxTaskGetStackHighWaterMark2 + #define INCLUDE_uxTaskGetStackHighWaterMark2 0 +#endif + +#ifndef INCLUDE_eTaskGetState + #define INCLUDE_eTaskGetState 0 +#endif + +#ifndef INCLUDE_xTaskResumeFromISR + #define INCLUDE_xTaskResumeFromISR 1 +#endif + +#ifndef INCLUDE_xTimerPendFunctionCall + #define INCLUDE_xTimerPendFunctionCall 0 +#endif + +#ifndef INCLUDE_xTaskGetSchedulerState + #define INCLUDE_xTaskGetSchedulerState 0 +#endif + +#ifndef INCLUDE_xTaskGetCurrentTaskHandle + #define INCLUDE_xTaskGetCurrentTaskHandle 0 +#endif + +#if configUSE_CO_ROUTINES != 0 + #ifndef configMAX_CO_ROUTINE_PRIORITIES + #error configMAX_CO_ROUTINE_PRIORITIES must be greater than or equal to 1. + #endif +#endif + +#ifndef configUSE_DAEMON_TASK_STARTUP_HOOK + #define configUSE_DAEMON_TASK_STARTUP_HOOK 0 +#endif + +#ifndef configUSE_APPLICATION_TASK_TAG + #define configUSE_APPLICATION_TASK_TAG 0 +#endif + +#ifndef configNUM_THREAD_LOCAL_STORAGE_POINTERS + #define configNUM_THREAD_LOCAL_STORAGE_POINTERS 0 +#endif + +#ifndef configUSE_RECURSIVE_MUTEXES + #define configUSE_RECURSIVE_MUTEXES 0 +#endif + +#ifndef configUSE_MUTEXES + #define configUSE_MUTEXES 0 +#endif + +#ifndef configUSE_TIMERS + #define configUSE_TIMERS 0 +#endif + +#ifndef configUSE_COUNTING_SEMAPHORES + #define configUSE_COUNTING_SEMAPHORES 0 +#endif + +#ifndef configUSE_ALTERNATIVE_API + #define configUSE_ALTERNATIVE_API 0 +#endif + +#ifndef portCRITICAL_NESTING_IN_TCB + #define portCRITICAL_NESTING_IN_TCB 0 +#endif + +#ifndef configMAX_TASK_NAME_LEN + #define configMAX_TASK_NAME_LEN 16 +#endif + +#ifndef configIDLE_SHOULD_YIELD + #define configIDLE_SHOULD_YIELD 1 +#endif + +#if configMAX_TASK_NAME_LEN < 1 + #error configMAX_TASK_NAME_LEN must be set to a minimum of 1 in FreeRTOSConfig.h +#endif + +#ifndef configASSERT + #define configASSERT( x ) + #define configASSERT_DEFINED 0 +#else + #define configASSERT_DEFINED 1 +#endif + +/* configPRECONDITION should be defined as configASSERT. +The CBMC proofs need a way to track assumptions and assertions. +A configPRECONDITION statement should express an implicit invariant or +assumption made. A configASSERT statement should express an invariant that must +hold explicit before calling the code. */ +#ifndef configPRECONDITION + #define configPRECONDITION( X ) configASSERT(X) + #define configPRECONDITION_DEFINED 0 +#else + #define configPRECONDITION_DEFINED 1 +#endif + +#ifndef portMEMORY_BARRIER + #define portMEMORY_BARRIER() +#endif + +#ifndef portSOFTWARE_BARRIER + #define portSOFTWARE_BARRIER() +#endif + +/* The timers module relies on xTaskGetSchedulerState(). */ +#if configUSE_TIMERS == 1 + + #ifndef configTIMER_TASK_PRIORITY + #error If configUSE_TIMERS is set to 1 then configTIMER_TASK_PRIORITY must also be defined. + #endif /* configTIMER_TASK_PRIORITY */ + + #ifndef configTIMER_QUEUE_LENGTH + #error If configUSE_TIMERS is set to 1 then configTIMER_QUEUE_LENGTH must also be defined. + #endif /* configTIMER_QUEUE_LENGTH */ + + #ifndef configTIMER_TASK_STACK_DEPTH + #error If configUSE_TIMERS is set to 1 then configTIMER_TASK_STACK_DEPTH must also be defined. + #endif /* configTIMER_TASK_STACK_DEPTH */ + +#endif /* configUSE_TIMERS */ + +#ifndef portSET_INTERRUPT_MASK_FROM_ISR + #define portSET_INTERRUPT_MASK_FROM_ISR() 0 +#endif + +#ifndef portCLEAR_INTERRUPT_MASK_FROM_ISR + #define portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedStatusValue ) ( void ) uxSavedStatusValue +#endif + +#ifndef portCLEAN_UP_TCB + #define portCLEAN_UP_TCB( pxTCB ) ( void ) pxTCB +#endif + +#ifndef portPRE_TASK_DELETE_HOOK + #define portPRE_TASK_DELETE_HOOK( pvTaskToDelete, pxYieldPending ) +#endif + +#ifndef portSETUP_TCB + #define portSETUP_TCB( pxTCB ) ( void ) pxTCB +#endif + +#ifndef configQUEUE_REGISTRY_SIZE + #define configQUEUE_REGISTRY_SIZE 0U +#endif + +#if ( configQUEUE_REGISTRY_SIZE < 1 ) + #define vQueueAddToRegistry( xQueue, pcName ) + #define vQueueUnregisterQueue( xQueue ) + #define pcQueueGetName( xQueue ) +#endif + +#ifndef portPOINTER_SIZE_TYPE + #define portPOINTER_SIZE_TYPE uint32_t +#endif + +/* Remove any unused trace macros. */ +#ifndef traceSTART + /* Used to perform any necessary initialisation - for example, open a file + into which trace is to be written. */ + #define traceSTART() +#endif + +#ifndef traceEND + /* Use to close a trace, for example close a file into which trace has been + written. */ + #define traceEND() +#endif + +#ifndef traceTASK_SWITCHED_IN + /* Called after a task has been selected to run. pxCurrentTCB holds a pointer + to the task control block of the selected task. */ + #define traceTASK_SWITCHED_IN() +#endif + +#ifndef traceINCREASE_TICK_COUNT + /* Called before stepping the tick count after waking from tickless idle + sleep. */ + #define traceINCREASE_TICK_COUNT( x ) +#endif + +#ifndef traceLOW_POWER_IDLE_BEGIN + /* Called immediately before entering tickless idle. */ + #define traceLOW_POWER_IDLE_BEGIN() +#endif + +#ifndef traceLOW_POWER_IDLE_END + /* Called when returning to the Idle task after a tickless idle. */ + #define traceLOW_POWER_IDLE_END() +#endif + +#ifndef traceTASK_SWITCHED_OUT + /* Called before a task has been selected to run. pxCurrentTCB holds a pointer + to the task control block of the task being switched out. */ + #define traceTASK_SWITCHED_OUT() +#endif + +#ifndef traceTASK_PRIORITY_INHERIT + /* Called when a task attempts to take a mutex that is already held by a + lower priority task. pxTCBOfMutexHolder is a pointer to the TCB of the task + that holds the mutex. uxInheritedPriority is the priority the mutex holder + will inherit (the priority of the task that is attempting to obtain the + muted. */ + #define traceTASK_PRIORITY_INHERIT( pxTCBOfMutexHolder, uxInheritedPriority ) +#endif + +#ifndef traceTASK_PRIORITY_DISINHERIT + /* Called when a task releases a mutex, the holding of which had resulted in + the task inheriting the priority of a higher priority task. + pxTCBOfMutexHolder is a pointer to the TCB of the task that is releasing the + mutex. uxOriginalPriority is the task's configured (base) priority. */ + #define traceTASK_PRIORITY_DISINHERIT( pxTCBOfMutexHolder, uxOriginalPriority ) +#endif + +#ifndef traceBLOCKING_ON_QUEUE_RECEIVE + /* Task is about to block because it cannot read from a + queue/mutex/semaphore. pxQueue is a pointer to the queue/mutex/semaphore + upon which the read was attempted. pxCurrentTCB points to the TCB of the + task that attempted the read. */ + #define traceBLOCKING_ON_QUEUE_RECEIVE( pxQueue ) +#endif + +#ifndef traceBLOCKING_ON_QUEUE_PEEK + /* Task is about to block because it cannot read from a + queue/mutex/semaphore. pxQueue is a pointer to the queue/mutex/semaphore + upon which the read was attempted. pxCurrentTCB points to the TCB of the + task that attempted the read. */ + #define traceBLOCKING_ON_QUEUE_PEEK( pxQueue ) +#endif + +#ifndef traceBLOCKING_ON_QUEUE_SEND + /* Task is about to block because it cannot write to a + queue/mutex/semaphore. pxQueue is a pointer to the queue/mutex/semaphore + upon which the write was attempted. pxCurrentTCB points to the TCB of the + task that attempted the write. */ + #define traceBLOCKING_ON_QUEUE_SEND( pxQueue ) +#endif + +#ifndef configCHECK_FOR_STACK_OVERFLOW + #define configCHECK_FOR_STACK_OVERFLOW 0 +#endif + +#ifndef configRECORD_STACK_HIGH_ADDRESS + #define configRECORD_STACK_HIGH_ADDRESS 0 +#endif + +#ifndef configINCLUDE_FREERTOS_TASK_C_ADDITIONS_H + #define configINCLUDE_FREERTOS_TASK_C_ADDITIONS_H 0 +#endif + +/* The following event macros are embedded in the kernel API calls. */ + +#ifndef traceMOVED_TASK_TO_READY_STATE + #define traceMOVED_TASK_TO_READY_STATE( pxTCB ) +#endif + +#ifndef tracePOST_MOVED_TASK_TO_READY_STATE + #define tracePOST_MOVED_TASK_TO_READY_STATE( pxTCB ) +#endif + +#ifndef traceQUEUE_CREATE + #define traceQUEUE_CREATE( pxNewQueue ) +#endif + +#ifndef traceQUEUE_CREATE_FAILED + #define traceQUEUE_CREATE_FAILED( ucQueueType ) +#endif + +#ifndef traceCREATE_MUTEX + #define traceCREATE_MUTEX( pxNewQueue ) +#endif + +#ifndef traceCREATE_MUTEX_FAILED + #define traceCREATE_MUTEX_FAILED() +#endif + +#ifndef traceGIVE_MUTEX_RECURSIVE + #define traceGIVE_MUTEX_RECURSIVE( pxMutex ) +#endif + +#ifndef traceGIVE_MUTEX_RECURSIVE_FAILED + #define traceGIVE_MUTEX_RECURSIVE_FAILED( pxMutex ) +#endif + +#ifndef traceTAKE_MUTEX_RECURSIVE + #define traceTAKE_MUTEX_RECURSIVE( pxMutex ) +#endif + +#ifndef traceTAKE_MUTEX_RECURSIVE_FAILED + #define traceTAKE_MUTEX_RECURSIVE_FAILED( pxMutex ) +#endif + +#ifndef traceCREATE_COUNTING_SEMAPHORE + #define traceCREATE_COUNTING_SEMAPHORE() +#endif + +#ifndef traceCREATE_COUNTING_SEMAPHORE_FAILED + #define traceCREATE_COUNTING_SEMAPHORE_FAILED() +#endif + +#ifndef traceQUEUE_SEND + #define traceQUEUE_SEND( pxQueue ) +#endif + +#ifndef traceQUEUE_SEND_FAILED + #define traceQUEUE_SEND_FAILED( pxQueue ) +#endif + +#ifndef traceQUEUE_RECEIVE + #define traceQUEUE_RECEIVE( pxQueue ) +#endif + +#ifndef traceQUEUE_PEEK + #define traceQUEUE_PEEK( pxQueue ) +#endif + +#ifndef traceQUEUE_PEEK_FAILED + #define traceQUEUE_PEEK_FAILED( pxQueue ) +#endif + +#ifndef traceQUEUE_PEEK_FROM_ISR + #define traceQUEUE_PEEK_FROM_ISR( pxQueue ) +#endif + +#ifndef traceQUEUE_RECEIVE_FAILED + #define traceQUEUE_RECEIVE_FAILED( pxQueue ) +#endif + +#ifndef traceQUEUE_SEND_FROM_ISR + #define traceQUEUE_SEND_FROM_ISR( pxQueue ) +#endif + +#ifndef traceQUEUE_SEND_FROM_ISR_FAILED + #define traceQUEUE_SEND_FROM_ISR_FAILED( pxQueue ) +#endif + +#ifndef traceQUEUE_RECEIVE_FROM_ISR + #define traceQUEUE_RECEIVE_FROM_ISR( pxQueue ) +#endif + +#ifndef traceQUEUE_RECEIVE_FROM_ISR_FAILED + #define traceQUEUE_RECEIVE_FROM_ISR_FAILED( pxQueue ) +#endif + +#ifndef traceQUEUE_PEEK_FROM_ISR_FAILED + #define traceQUEUE_PEEK_FROM_ISR_FAILED( pxQueue ) +#endif + +#ifndef traceQUEUE_DELETE + #define traceQUEUE_DELETE( pxQueue ) +#endif + +#ifndef traceTASK_CREATE + #define traceTASK_CREATE( pxNewTCB ) +#endif + +#ifndef traceTASK_CREATE_FAILED + #define traceTASK_CREATE_FAILED() +#endif + +#ifndef traceTASK_DELETE + #define traceTASK_DELETE( pxTaskToDelete ) +#endif + +#ifndef traceTASK_DELAY_UNTIL + #define traceTASK_DELAY_UNTIL( x ) +#endif + +#ifndef traceTASK_DELAY + #define traceTASK_DELAY() +#endif + +#ifndef traceTASK_PRIORITY_SET + #define traceTASK_PRIORITY_SET( pxTask, uxNewPriority ) +#endif + +#ifndef traceTASK_SUSPEND + #define traceTASK_SUSPEND( pxTaskToSuspend ) +#endif + +#ifndef traceTASK_RESUME + #define traceTASK_RESUME( pxTaskToResume ) +#endif + +#ifndef traceTASK_RESUME_FROM_ISR + #define traceTASK_RESUME_FROM_ISR( pxTaskToResume ) +#endif + +#ifndef traceTASK_INCREMENT_TICK + #define traceTASK_INCREMENT_TICK( xTickCount ) +#endif + +#ifndef traceTIMER_CREATE + #define traceTIMER_CREATE( pxNewTimer ) +#endif + +#ifndef traceTIMER_CREATE_FAILED + #define traceTIMER_CREATE_FAILED() +#endif + +#ifndef traceTIMER_COMMAND_SEND + #define traceTIMER_COMMAND_SEND( xTimer, xMessageID, xMessageValueValue, xReturn ) +#endif + +#ifndef traceTIMER_EXPIRED + #define traceTIMER_EXPIRED( pxTimer ) +#endif + +#ifndef traceTIMER_COMMAND_RECEIVED + #define traceTIMER_COMMAND_RECEIVED( pxTimer, xMessageID, xMessageValue ) +#endif + +#ifndef traceMALLOC + #define traceMALLOC( pvAddress, uiSize ) +#endif + +#ifndef traceFREE + #define traceFREE( pvAddress, uiSize ) +#endif + +#ifndef traceEVENT_GROUP_CREATE + #define traceEVENT_GROUP_CREATE( xEventGroup ) +#endif + +#ifndef traceEVENT_GROUP_CREATE_FAILED + #define traceEVENT_GROUP_CREATE_FAILED() +#endif + +#ifndef traceEVENT_GROUP_SYNC_BLOCK + #define traceEVENT_GROUP_SYNC_BLOCK( xEventGroup, uxBitsToSet, uxBitsToWaitFor ) +#endif + +#ifndef traceEVENT_GROUP_SYNC_END + #define traceEVENT_GROUP_SYNC_END( xEventGroup, uxBitsToSet, uxBitsToWaitFor, xTimeoutOccurred ) ( void ) xTimeoutOccurred +#endif + +#ifndef traceEVENT_GROUP_WAIT_BITS_BLOCK + #define traceEVENT_GROUP_WAIT_BITS_BLOCK( xEventGroup, uxBitsToWaitFor ) +#endif + +#ifndef traceEVENT_GROUP_WAIT_BITS_END + #define traceEVENT_GROUP_WAIT_BITS_END( xEventGroup, uxBitsToWaitFor, xTimeoutOccurred ) ( void ) xTimeoutOccurred +#endif + +#ifndef traceEVENT_GROUP_CLEAR_BITS + #define traceEVENT_GROUP_CLEAR_BITS( xEventGroup, uxBitsToClear ) +#endif + +#ifndef traceEVENT_GROUP_CLEAR_BITS_FROM_ISR + #define traceEVENT_GROUP_CLEAR_BITS_FROM_ISR( xEventGroup, uxBitsToClear ) +#endif + +#ifndef traceEVENT_GROUP_SET_BITS + #define traceEVENT_GROUP_SET_BITS( xEventGroup, uxBitsToSet ) +#endif + +#ifndef traceEVENT_GROUP_SET_BITS_FROM_ISR + #define traceEVENT_GROUP_SET_BITS_FROM_ISR( xEventGroup, uxBitsToSet ) +#endif + +#ifndef traceEVENT_GROUP_DELETE + #define traceEVENT_GROUP_DELETE( xEventGroup ) +#endif + +#ifndef tracePEND_FUNC_CALL + #define tracePEND_FUNC_CALL(xFunctionToPend, pvParameter1, ulParameter2, ret) +#endif + +#ifndef tracePEND_FUNC_CALL_FROM_ISR + #define tracePEND_FUNC_CALL_FROM_ISR(xFunctionToPend, pvParameter1, ulParameter2, ret) +#endif + +#ifndef traceQUEUE_REGISTRY_ADD + #define traceQUEUE_REGISTRY_ADD(xQueue, pcQueueName) +#endif + +#ifndef traceTASK_NOTIFY_TAKE_BLOCK + #define traceTASK_NOTIFY_TAKE_BLOCK() +#endif + +#ifndef traceTASK_NOTIFY_TAKE + #define traceTASK_NOTIFY_TAKE() +#endif + +#ifndef traceTASK_NOTIFY_WAIT_BLOCK + #define traceTASK_NOTIFY_WAIT_BLOCK() +#endif + +#ifndef traceTASK_NOTIFY_WAIT + #define traceTASK_NOTIFY_WAIT() +#endif + +#ifndef traceTASK_NOTIFY + #define traceTASK_NOTIFY() +#endif + +#ifndef traceTASK_NOTIFY_FROM_ISR + #define traceTASK_NOTIFY_FROM_ISR() +#endif + +#ifndef traceTASK_NOTIFY_GIVE_FROM_ISR + #define traceTASK_NOTIFY_GIVE_FROM_ISR() +#endif + +#ifndef traceSTREAM_BUFFER_CREATE_FAILED + #define traceSTREAM_BUFFER_CREATE_FAILED( xIsMessageBuffer ) +#endif + +#ifndef traceSTREAM_BUFFER_CREATE_STATIC_FAILED + #define traceSTREAM_BUFFER_CREATE_STATIC_FAILED( xReturn, xIsMessageBuffer ) +#endif + +#ifndef traceSTREAM_BUFFER_CREATE + #define traceSTREAM_BUFFER_CREATE( pxStreamBuffer, xIsMessageBuffer ) +#endif + +#ifndef traceSTREAM_BUFFER_DELETE + #define traceSTREAM_BUFFER_DELETE( xStreamBuffer ) +#endif + +#ifndef traceSTREAM_BUFFER_RESET + #define traceSTREAM_BUFFER_RESET( xStreamBuffer ) +#endif + +#ifndef traceBLOCKING_ON_STREAM_BUFFER_SEND + #define traceBLOCKING_ON_STREAM_BUFFER_SEND( xStreamBuffer ) +#endif + +#ifndef traceSTREAM_BUFFER_SEND + #define traceSTREAM_BUFFER_SEND( xStreamBuffer, xBytesSent ) +#endif + +#ifndef traceSTREAM_BUFFER_SEND_FAILED + #define traceSTREAM_BUFFER_SEND_FAILED( xStreamBuffer ) +#endif + +#ifndef traceSTREAM_BUFFER_SEND_FROM_ISR + #define traceSTREAM_BUFFER_SEND_FROM_ISR( xStreamBuffer, xBytesSent ) +#endif + +#ifndef traceBLOCKING_ON_STREAM_BUFFER_RECEIVE + #define traceBLOCKING_ON_STREAM_BUFFER_RECEIVE( xStreamBuffer ) +#endif + +#ifndef traceSTREAM_BUFFER_RECEIVE + #define traceSTREAM_BUFFER_RECEIVE( xStreamBuffer, xReceivedLength ) +#endif + +#ifndef traceSTREAM_BUFFER_RECEIVE_FAILED + #define traceSTREAM_BUFFER_RECEIVE_FAILED( xStreamBuffer ) +#endif + +#ifndef traceSTREAM_BUFFER_RECEIVE_FROM_ISR + #define traceSTREAM_BUFFER_RECEIVE_FROM_ISR( xStreamBuffer, xReceivedLength ) +#endif + +#ifndef configGENERATE_RUN_TIME_STATS + #define configGENERATE_RUN_TIME_STATS 0 +#endif + +#if ( configGENERATE_RUN_TIME_STATS == 1 ) + + #ifndef portCONFIGURE_TIMER_FOR_RUN_TIME_STATS + #error If configGENERATE_RUN_TIME_STATS is defined then portCONFIGURE_TIMER_FOR_RUN_TIME_STATS must also be defined. portCONFIGURE_TIMER_FOR_RUN_TIME_STATS should call a port layer function to setup a peripheral timer/counter that can then be used as the run time counter time base. + #endif /* portCONFIGURE_TIMER_FOR_RUN_TIME_STATS */ + + #ifndef portGET_RUN_TIME_COUNTER_VALUE + #ifndef portALT_GET_RUN_TIME_COUNTER_VALUE + #error If configGENERATE_RUN_TIME_STATS is defined then either portGET_RUN_TIME_COUNTER_VALUE or portALT_GET_RUN_TIME_COUNTER_VALUE must also be defined. See the examples provided and the FreeRTOS web site for more information. + #endif /* portALT_GET_RUN_TIME_COUNTER_VALUE */ + #endif /* portGET_RUN_TIME_COUNTER_VALUE */ + +#endif /* configGENERATE_RUN_TIME_STATS */ + +#ifndef portCONFIGURE_TIMER_FOR_RUN_TIME_STATS + #define portCONFIGURE_TIMER_FOR_RUN_TIME_STATS() +#endif + +#ifndef configUSE_MALLOC_FAILED_HOOK + #define configUSE_MALLOC_FAILED_HOOK 0 +#endif + +#ifndef portPRIVILEGE_BIT + #define portPRIVILEGE_BIT ( ( UBaseType_t ) 0x00 ) +#endif + +#ifndef portYIELD_WITHIN_API + #define portYIELD_WITHIN_API portYIELD +#endif + +#ifndef portSUPPRESS_TICKS_AND_SLEEP + #define portSUPPRESS_TICKS_AND_SLEEP( xExpectedIdleTime ) +#endif + +#ifndef configEXPECTED_IDLE_TIME_BEFORE_SLEEP + #define configEXPECTED_IDLE_TIME_BEFORE_SLEEP 2 +#endif + +#if configEXPECTED_IDLE_TIME_BEFORE_SLEEP < 2 + #error configEXPECTED_IDLE_TIME_BEFORE_SLEEP must not be less than 2 +#endif + +#ifndef configUSE_TICKLESS_IDLE + #define configUSE_TICKLESS_IDLE 0 +#endif + +#ifndef configPRE_SUPPRESS_TICKS_AND_SLEEP_PROCESSING + #define configPRE_SUPPRESS_TICKS_AND_SLEEP_PROCESSING( x ) +#endif + +#ifndef configPRE_SLEEP_PROCESSING + #define configPRE_SLEEP_PROCESSING( x ) +#endif + +#ifndef configPOST_SLEEP_PROCESSING + #define configPOST_SLEEP_PROCESSING( x ) +#endif + +#ifndef configUSE_QUEUE_SETS + #define configUSE_QUEUE_SETS 0 +#endif + +#ifndef portTASK_USES_FLOATING_POINT + #define portTASK_USES_FLOATING_POINT() +#endif + +#ifndef portALLOCATE_SECURE_CONTEXT + #define portALLOCATE_SECURE_CONTEXT( ulSecureStackSize ) +#endif + +#ifndef portDONT_DISCARD + #define portDONT_DISCARD +#endif + +#ifndef configUSE_TIME_SLICING + #define configUSE_TIME_SLICING 1 +#endif + +#ifndef configINCLUDE_APPLICATION_DEFINED_PRIVILEGED_FUNCTIONS + #define configINCLUDE_APPLICATION_DEFINED_PRIVILEGED_FUNCTIONS 0 +#endif + +#ifndef configUSE_STATS_FORMATTING_FUNCTIONS + #define configUSE_STATS_FORMATTING_FUNCTIONS 0 +#endif + +#ifndef portASSERT_IF_INTERRUPT_PRIORITY_INVALID + #define portASSERT_IF_INTERRUPT_PRIORITY_INVALID() +#endif + +#ifndef configUSE_TRACE_FACILITY + #define configUSE_TRACE_FACILITY 0 +#endif + +#ifndef mtCOVERAGE_TEST_MARKER + #define mtCOVERAGE_TEST_MARKER() +#endif + +#ifndef mtCOVERAGE_TEST_DELAY + #define mtCOVERAGE_TEST_DELAY() +#endif + +#ifndef portASSERT_IF_IN_ISR + #define portASSERT_IF_IN_ISR() +#endif + +#ifndef configUSE_PORT_OPTIMISED_TASK_SELECTION + #define configUSE_PORT_OPTIMISED_TASK_SELECTION 0 +#endif + +#ifndef configAPPLICATION_ALLOCATED_HEAP + #define configAPPLICATION_ALLOCATED_HEAP 0 +#endif + +#ifndef configUSE_TASK_NOTIFICATIONS + #define configUSE_TASK_NOTIFICATIONS 1 +#endif + +#ifndef configUSE_POSIX_ERRNO + #define configUSE_POSIX_ERRNO 0 +#endif + +#ifndef portTICK_TYPE_IS_ATOMIC + #define portTICK_TYPE_IS_ATOMIC 0 +#endif + +#ifndef configSUPPORT_STATIC_ALLOCATION + /* Defaults to 0 for backward compatibility. */ + #define configSUPPORT_STATIC_ALLOCATION 0 +#endif + +#ifndef configSUPPORT_DYNAMIC_ALLOCATION + /* Defaults to 1 for backward compatibility. */ + #define configSUPPORT_DYNAMIC_ALLOCATION 1 +#endif + +#ifndef configSTACK_DEPTH_TYPE + /* Defaults to uint16_t for backward compatibility, but can be overridden + in FreeRTOSConfig.h if uint16_t is too restrictive. */ + #define configSTACK_DEPTH_TYPE uint16_t +#endif + +#ifndef configMESSAGE_BUFFER_LENGTH_TYPE + /* Defaults to size_t for backward compatibility, but can be overridden + in FreeRTOSConfig.h if lengths will always be less than the number of bytes + in a size_t. */ + #define configMESSAGE_BUFFER_LENGTH_TYPE size_t +#endif + +/* Sanity check the configuration. */ +#if( configUSE_TICKLESS_IDLE != 0 ) + #if( INCLUDE_vTaskSuspend != 1 ) + #error INCLUDE_vTaskSuspend must be set to 1 if configUSE_TICKLESS_IDLE is not set to 0 + #endif /* INCLUDE_vTaskSuspend */ +#endif /* configUSE_TICKLESS_IDLE */ + +#if( ( configSUPPORT_STATIC_ALLOCATION == 0 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 0 ) ) + #error configSUPPORT_STATIC_ALLOCATION and configSUPPORT_DYNAMIC_ALLOCATION cannot both be 0, but can both be 1. +#endif + +#if( ( configUSE_RECURSIVE_MUTEXES == 1 ) && ( configUSE_MUTEXES != 1 ) ) + #error configUSE_MUTEXES must be set to 1 to use recursive mutexes +#endif + +#ifndef configINITIAL_TICK_COUNT + #define configINITIAL_TICK_COUNT 0 +#endif + +#if( portTICK_TYPE_IS_ATOMIC == 0 ) + /* Either variables of tick type cannot be read atomically, or + portTICK_TYPE_IS_ATOMIC was not set - map the critical sections used when + the tick count is returned to the standard critical section macros. */ + #define portTICK_TYPE_ENTER_CRITICAL() portENTER_CRITICAL() + #define portTICK_TYPE_EXIT_CRITICAL() portEXIT_CRITICAL() + #define portTICK_TYPE_SET_INTERRUPT_MASK_FROM_ISR() portSET_INTERRUPT_MASK_FROM_ISR() + #define portTICK_TYPE_CLEAR_INTERRUPT_MASK_FROM_ISR( x ) portCLEAR_INTERRUPT_MASK_FROM_ISR( ( x ) ) +#else + /* The tick type can be read atomically, so critical sections used when the + tick count is returned can be defined away. */ + #define portTICK_TYPE_ENTER_CRITICAL() + #define portTICK_TYPE_EXIT_CRITICAL() + #define portTICK_TYPE_SET_INTERRUPT_MASK_FROM_ISR() 0 + #define portTICK_TYPE_CLEAR_INTERRUPT_MASK_FROM_ISR( x ) ( void ) x +#endif + +/* Definitions to allow backward compatibility with FreeRTOS versions prior to +V8 if desired. */ +#ifndef configENABLE_BACKWARD_COMPATIBILITY + #define configENABLE_BACKWARD_COMPATIBILITY 1 +#endif + +#ifndef configPRINTF + /* configPRINTF() was not defined, so define it away to nothing. To use + configPRINTF() then define it as follows (where MyPrintFunction() is + provided by the application writer): + + void MyPrintFunction(const char *pcFormat, ... ); + #define configPRINTF( X ) MyPrintFunction X + + Then call like a standard printf() function, but placing brackets around + all parameters so they are passed as a single parameter. For example: + configPRINTF( ("Value = %d", MyVariable) ); */ + #define configPRINTF( X ) +#endif + +#ifndef configMAX + /* The application writer has not provided their own MAX macro, so define + the following generic implementation. */ + #define configMAX( a, b ) ( ( ( a ) > ( b ) ) ? ( a ) : ( b ) ) +#endif + +#ifndef configMIN + /* The application writer has not provided their own MAX macro, so define + the following generic implementation. */ + #define configMIN( a, b ) ( ( ( a ) < ( b ) ) ? ( a ) : ( b ) ) +#endif + +#if configENABLE_BACKWARD_COMPATIBILITY == 1 + #define eTaskStateGet eTaskGetState + #define portTickType TickType_t + #define xTaskHandle TaskHandle_t + #define xQueueHandle QueueHandle_t + #define xSemaphoreHandle SemaphoreHandle_t + #define xQueueSetHandle QueueSetHandle_t + #define xQueueSetMemberHandle QueueSetMemberHandle_t + #define xTimeOutType TimeOut_t + #define xMemoryRegion MemoryRegion_t + #define xTaskParameters TaskParameters_t + #define xTaskStatusType TaskStatus_t + #define xTimerHandle TimerHandle_t + #define xCoRoutineHandle CoRoutineHandle_t + #define pdTASK_HOOK_CODE TaskHookFunction_t + #define portTICK_RATE_MS portTICK_PERIOD_MS + #define pcTaskGetTaskName pcTaskGetName + #define pcTimerGetTimerName pcTimerGetName + #define pcQueueGetQueueName pcQueueGetName + #define vTaskGetTaskInfo vTaskGetInfo + #define xTaskGetIdleRunTimeCounter ulTaskGetIdleRunTimeCounter + + /* Backward compatibility within the scheduler code only - these definitions + are not really required but are included for completeness. */ + #define tmrTIMER_CALLBACK TimerCallbackFunction_t + #define pdTASK_CODE TaskFunction_t + #define xListItem ListItem_t + #define xList List_t + + /* For libraries that break the list data hiding, and access list structure + members directly (which is not supposed to be done). */ + #define pxContainer pvContainer +#endif /* configENABLE_BACKWARD_COMPATIBILITY */ + +#if( configUSE_ALTERNATIVE_API != 0 ) + #error The alternative API was deprecated some time ago, and was removed in FreeRTOS V9.0 0 +#endif + +/* Set configUSE_TASK_FPU_SUPPORT to 0 to omit floating point support even +if floating point hardware is otherwise supported by the FreeRTOS port in use. +This constant is not supported by all FreeRTOS ports that include floating +point support. */ +#ifndef configUSE_TASK_FPU_SUPPORT + #define configUSE_TASK_FPU_SUPPORT 1 +#endif + +/* Set configENABLE_MPU to 1 to enable MPU support and 0 to disable it. This is +currently used in ARMv8M ports. */ +#ifndef configENABLE_MPU + #define configENABLE_MPU 0 +#endif + +/* Set configENABLE_FPU to 1 to enable FPU support and 0 to disable it. This is +currently used in ARMv8M ports. */ +#ifndef configENABLE_FPU + #define configENABLE_FPU 1 +#endif + +/* Set configENABLE_TRUSTZONE to 1 enable TrustZone support and 0 to disable it. +This is currently used in ARMv8M ports. */ +#ifndef configENABLE_TRUSTZONE + #define configENABLE_TRUSTZONE 1 +#endif + +/* Set configRUN_FREERTOS_SECURE_ONLY to 1 to run the FreeRTOS ARMv8M port on +the Secure Side only. */ +#ifndef configRUN_FREERTOS_SECURE_ONLY + #define configRUN_FREERTOS_SECURE_ONLY 0 +#endif + +/* Sometimes the FreeRTOSConfig.h settings only allow a task to be created using + * dynamically allocated RAM, in which case when any task is deleted it is known + * that both the task's stack and TCB need to be freed. Sometimes the + * FreeRTOSConfig.h settings only allow a task to be created using statically + * allocated RAM, in which case when any task is deleted it is known that neither + * the task's stack or TCB should be freed. Sometimes the FreeRTOSConfig.h + * settings allow a task to be created using either statically or dynamically + * allocated RAM, in which case a member of the TCB is used to record whether the + * stack and/or TCB were allocated statically or dynamically, so when a task is + * deleted the RAM that was allocated dynamically is freed again and no attempt is + * made to free the RAM that was allocated statically. + * tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE is only true if it is possible for a + * task to be created using either statically or dynamically allocated RAM. Note + * that if portUSING_MPU_WRAPPERS is 1 then a protected task can be created with + * a statically allocated stack and a dynamically allocated TCB. + * + * The following table lists various combinations of portUSING_MPU_WRAPPERS, + * configSUPPORT_DYNAMIC_ALLOCATION and configSUPPORT_STATIC_ALLOCATION and + * when it is possible to have both static and dynamic allocation: + * +-----+---------+--------+-----------------------------+-----------------------------------+------------------+-----------+ + * | MPU | Dynamic | Static | Available Functions | Possible Allocations | Both Dynamic and | Need Free | + * | | | | | | Static Possible | | + * +-----+---------+--------+-----------------------------+-----------------------------------+------------------+-----------+ + * | 0 | 0 | 1 | xTaskCreateStatic | TCB - Static, Stack - Static | No | No | + * +-----|---------|--------|-----------------------------|-----------------------------------|------------------|-----------| + * | 0 | 1 | 0 | xTaskCreate | TCB - Dynamic, Stack - Dynamic | No | Yes | + * +-----|---------|--------|-----------------------------|-----------------------------------|------------------|-----------| + * | 0 | 1 | 1 | xTaskCreate, | 1. TCB - Dynamic, Stack - Dynamic | Yes | Yes | + * | | | | xTaskCreateStatic | 2. TCB - Static, Stack - Static | | | + * +-----|---------|--------|-----------------------------|-----------------------------------|------------------|-----------| + * | 1 | 0 | 1 | xTaskCreateStatic, | TCB - Static, Stack - Static | No | No | + * | | | | xTaskCreateRestrictedStatic | | | | + * +-----|---------|--------|-----------------------------|-----------------------------------|------------------|-----------| + * | 1 | 1 | 0 | xTaskCreate, | 1. TCB - Dynamic, Stack - Dynamic | Yes | Yes | + * | | | | xTaskCreateRestricted | 2. TCB - Dynamic, Stack - Static | | | + * +-----|---------|--------|-----------------------------|-----------------------------------|------------------|-----------| + * | 1 | 1 | 1 | xTaskCreate, | 1. TCB - Dynamic, Stack - Dynamic | Yes | Yes | + * | | | | xTaskCreateStatic, | 2. TCB - Dynamic, Stack - Static | | | + * | | | | xTaskCreateRestricted, | 3. TCB - Static, Stack - Static | | | + * | | | | xTaskCreateRestrictedStatic | | | | + * +-----+---------+--------+-----------------------------+-----------------------------------+------------------+-----------+ + */ +#define tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE ( ( ( portUSING_MPU_WRAPPERS == 0 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) && ( configSUPPORT_STATIC_ALLOCATION == 1 ) ) || \ + ( ( portUSING_MPU_WRAPPERS == 1 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) ) ) + +/* + * In line with software engineering best practice, FreeRTOS implements a strict + * data hiding policy, so the real structures used by FreeRTOS to maintain the + * state of tasks, queues, semaphores, etc. are not accessible to the application + * code. However, if the application writer wants to statically allocate such + * an object then the size of the object needs to be know. Dummy structures + * that are guaranteed to have the same size and alignment requirements of the + * real objects are used for this purpose. The dummy list and list item + * structures below are used for inclusion in such a dummy structure. + */ +struct xSTATIC_LIST_ITEM +{ + #if( configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES == 1 ) + TickType_t xDummy1; + #endif + TickType_t xDummy2; + void *pvDummy3[ 4 ]; + #if( configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES == 1 ) + TickType_t xDummy4; + #endif +}; +typedef struct xSTATIC_LIST_ITEM StaticListItem_t; + +/* See the comments above the struct xSTATIC_LIST_ITEM definition. */ +struct xSTATIC_MINI_LIST_ITEM +{ + #if( configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES == 1 ) + TickType_t xDummy1; + #endif + TickType_t xDummy2; + void *pvDummy3[ 2 ]; +}; +typedef struct xSTATIC_MINI_LIST_ITEM StaticMiniListItem_t; + +/* See the comments above the struct xSTATIC_LIST_ITEM definition. */ +typedef struct xSTATIC_LIST +{ + #if( configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES == 1 ) + TickType_t xDummy1; + #endif + UBaseType_t uxDummy2; + void *pvDummy3; + StaticMiniListItem_t xDummy4; + #if( configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES == 1 ) + TickType_t xDummy5; + #endif +} StaticList_t; + +/* + * In line with software engineering best practice, especially when supplying a + * library that is likely to change in future versions, FreeRTOS implements a + * strict data hiding policy. This means the Task structure used internally by + * FreeRTOS is not accessible to application code. However, if the application + * writer wants to statically allocate the memory required to create a task then + * the size of the task object needs to be know. The StaticTask_t structure + * below is provided for this purpose. Its sizes and alignment requirements are + * guaranteed to match those of the genuine structure, no matter which + * architecture is being used, and no matter how the values in FreeRTOSConfig.h + * are set. Its contents are somewhat obfuscated in the hope users will + * recognise that it would be unwise to make direct use of the structure members. + */ +typedef struct xSTATIC_TCB +{ + void *pxDummy1; + #if ( portUSING_MPU_WRAPPERS == 1 ) + xMPU_SETTINGS xDummy2; + #endif + StaticListItem_t xDummy3[ 2 ]; + UBaseType_t uxDummy5; + void *pxDummy6; + uint8_t ucDummy7[ configMAX_TASK_NAME_LEN ]; + #if ( ( portSTACK_GROWTH > 0 ) || ( configRECORD_STACK_HIGH_ADDRESS == 1 ) ) + void *pxDummy8; + #endif + #if ( portCRITICAL_NESTING_IN_TCB == 1 ) + UBaseType_t uxDummy9; + #endif + #if ( configUSE_TRACE_FACILITY == 1 ) + UBaseType_t uxDummy10[ 2 ]; + #endif + #if ( configUSE_MUTEXES == 1 ) + UBaseType_t uxDummy12[ 2 ]; + #endif + #if ( configUSE_APPLICATION_TASK_TAG == 1 ) + void *pxDummy14; + #endif + #if( configNUM_THREAD_LOCAL_STORAGE_POINTERS > 0 ) + void *pvDummy15[ configNUM_THREAD_LOCAL_STORAGE_POINTERS ]; + #endif + #if ( configGENERATE_RUN_TIME_STATS == 1 ) + uint32_t ulDummy16; + #endif + #if ( configUSE_NEWLIB_REENTRANT == 1 ) + struct _reent xDummy17; + #endif + #if ( configUSE_TASK_NOTIFICATIONS == 1 ) + uint32_t ulDummy18; + uint8_t ucDummy19; + #endif + #if ( tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE != 0 ) + uint8_t uxDummy20; + #endif + + #if( INCLUDE_xTaskAbortDelay == 1 ) + uint8_t ucDummy21; + #endif + #if ( configUSE_POSIX_ERRNO == 1 ) + int iDummy22; + #endif +} StaticTask_t; + +/* + * In line with software engineering best practice, especially when supplying a + * library that is likely to change in future versions, FreeRTOS implements a + * strict data hiding policy. This means the Queue structure used internally by + * FreeRTOS is not accessible to application code. However, if the application + * writer wants to statically allocate the memory required to create a queue + * then the size of the queue object needs to be know. The StaticQueue_t + * structure below is provided for this purpose. Its sizes and alignment + * requirements are guaranteed to match those of the genuine structure, no + * matter which architecture is being used, and no matter how the values in + * FreeRTOSConfig.h are set. Its contents are somewhat obfuscated in the hope + * users will recognise that it would be unwise to make direct use of the + * structure members. + */ +typedef struct xSTATIC_QUEUE +{ + void *pvDummy1[ 3 ]; + + union + { + void *pvDummy2; + UBaseType_t uxDummy2; + } u; + + StaticList_t xDummy3[ 2 ]; + UBaseType_t uxDummy4[ 3 ]; + uint8_t ucDummy5[ 2 ]; + + #if( ( configSUPPORT_STATIC_ALLOCATION == 1 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) ) + uint8_t ucDummy6; + #endif + + #if ( configUSE_QUEUE_SETS == 1 ) + void *pvDummy7; + #endif + + #if ( configUSE_TRACE_FACILITY == 1 ) + UBaseType_t uxDummy8; + uint8_t ucDummy9; + #endif + +} StaticQueue_t; +typedef StaticQueue_t StaticSemaphore_t; + +/* + * In line with software engineering best practice, especially when supplying a + * library that is likely to change in future versions, FreeRTOS implements a + * strict data hiding policy. This means the event group structure used + * internally by FreeRTOS is not accessible to application code. However, if + * the application writer wants to statically allocate the memory required to + * create an event group then the size of the event group object needs to be + * know. The StaticEventGroup_t structure below is provided for this purpose. + * Its sizes and alignment requirements are guaranteed to match those of the + * genuine structure, no matter which architecture is being used, and no matter + * how the values in FreeRTOSConfig.h are set. Its contents are somewhat + * obfuscated in the hope users will recognise that it would be unwise to make + * direct use of the structure members. + */ +typedef struct xSTATIC_EVENT_GROUP +{ + TickType_t xDummy1; + StaticList_t xDummy2; + + #if( configUSE_TRACE_FACILITY == 1 ) + UBaseType_t uxDummy3; + #endif + + #if( ( configSUPPORT_STATIC_ALLOCATION == 1 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) ) + uint8_t ucDummy4; + #endif + +} StaticEventGroup_t; + +/* + * In line with software engineering best practice, especially when supplying a + * library that is likely to change in future versions, FreeRTOS implements a + * strict data hiding policy. This means the software timer structure used + * internally by FreeRTOS is not accessible to application code. However, if + * the application writer wants to statically allocate the memory required to + * create a software timer then the size of the queue object needs to be know. + * The StaticTimer_t structure below is provided for this purpose. Its sizes + * and alignment requirements are guaranteed to match those of the genuine + * structure, no matter which architecture is being used, and no matter how the + * values in FreeRTOSConfig.h are set. Its contents are somewhat obfuscated in + * the hope users will recognise that it would be unwise to make direct use of + * the structure members. + */ +typedef struct xSTATIC_TIMER +{ + void *pvDummy1; + StaticListItem_t xDummy2; + TickType_t xDummy3; + void *pvDummy5; + TaskFunction_t pvDummy6; + #if( configUSE_TRACE_FACILITY == 1 ) + UBaseType_t uxDummy7; + #endif + uint8_t ucDummy8; + +} StaticTimer_t; + +/* +* In line with software engineering best practice, especially when supplying a +* library that is likely to change in future versions, FreeRTOS implements a +* strict data hiding policy. This means the stream buffer structure used +* internally by FreeRTOS is not accessible to application code. However, if +* the application writer wants to statically allocate the memory required to +* create a stream buffer then the size of the stream buffer object needs to be +* know. The StaticStreamBuffer_t structure below is provided for this purpose. +* Its size and alignment requirements are guaranteed to match those of the +* genuine structure, no matter which architecture is being used, and no matter +* how the values in FreeRTOSConfig.h are set. Its contents are somewhat +* obfuscated in the hope users will recognise that it would be unwise to make +* direct use of the structure members. +*/ +typedef struct xSTATIC_STREAM_BUFFER +{ + size_t uxDummy1[ 4 ]; + void * pvDummy2[ 3 ]; + uint8_t ucDummy3; + #if ( configUSE_TRACE_FACILITY == 1 ) + UBaseType_t uxDummy4; + #endif +} StaticStreamBuffer_t; + +/* Message buffers are built on stream buffers. */ +typedef StaticStreamBuffer_t StaticMessageBuffer_t; + +#ifdef __cplusplus +} +#endif + +#endif /* INC_FREERTOS_H */ + diff --git a/rtos/freertos/abstraction_layer_freertos/include/StackMacros.h b/rtos/freertos/abstraction_layer_freertos/include/StackMacros.h new file mode 100644 index 00000000..63efd4d4 --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/include/StackMacros.h @@ -0,0 +1,133 @@ +/* + * FreeRTOS Kernel V10.3.0 + * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * + * http://www.FreeRTOS.org + * http://aws.amazon.com/freertos + * + * 1 tab == 4 spaces! + */ + +#ifndef STACK_MACROS_H +#define STACK_MACROS_H + +#ifndef _MSC_VER /* Visual Studio doesn't support #warning. */ + #warning The name of this file has changed to stack_macros.h. Please update your code accordingly. This source file (which has the original name) will be removed in future released. +#endif + +/* + * Call the stack overflow hook function if the stack of the task being swapped + * out is currently overflowed, or looks like it might have overflowed in the + * past. + * + * Setting configCHECK_FOR_STACK_OVERFLOW to 1 will cause the macro to check + * the current stack state only - comparing the current top of stack value to + * the stack limit. Setting configCHECK_FOR_STACK_OVERFLOW to greater than 1 + * will also cause the last few stack bytes to be checked to ensure the value + * to which the bytes were set when the task was created have not been + * overwritten. Note this second test does not guarantee that an overflowed + * stack will always be recognised. + */ + +/*-----------------------------------------------------------*/ + +#if( ( configCHECK_FOR_STACK_OVERFLOW == 1 ) && ( portSTACK_GROWTH < 0 ) ) + + /* Only the current stack state is to be checked. */ + #define taskCHECK_FOR_STACK_OVERFLOW() \ + { \ + /* Is the currently saved stack pointer within the stack limit? */ \ + if( pxCurrentTCB->pxTopOfStack <= pxCurrentTCB->pxStack ) \ + { \ + vApplicationStackOverflowHook( ( TaskHandle_t ) pxCurrentTCB, pxCurrentTCB->pcTaskName ); \ + } \ + } + +#endif /* configCHECK_FOR_STACK_OVERFLOW == 1 */ +/*-----------------------------------------------------------*/ + +#if( ( configCHECK_FOR_STACK_OVERFLOW == 1 ) && ( portSTACK_GROWTH > 0 ) ) + + /* Only the current stack state is to be checked. */ + #define taskCHECK_FOR_STACK_OVERFLOW() \ + { \ + \ + /* Is the currently saved stack pointer within the stack limit? */ \ + if( pxCurrentTCB->pxTopOfStack >= pxCurrentTCB->pxEndOfStack ) \ + { \ + vApplicationStackOverflowHook( ( TaskHandle_t ) pxCurrentTCB, pxCurrentTCB->pcTaskName ); \ + } \ + } + +#endif /* configCHECK_FOR_STACK_OVERFLOW == 1 */ +/*-----------------------------------------------------------*/ + +#if( ( configCHECK_FOR_STACK_OVERFLOW > 1 ) && ( portSTACK_GROWTH < 0 ) ) + + #define taskCHECK_FOR_STACK_OVERFLOW() \ + { \ + const uint32_t * const pulStack = ( uint32_t * ) pxCurrentTCB->pxStack; \ + const uint32_t ulCheckValue = ( uint32_t ) 0xa5a5a5a5; \ + \ + if( ( pulStack[ 0 ] != ulCheckValue ) || \ + ( pulStack[ 1 ] != ulCheckValue ) || \ + ( pulStack[ 2 ] != ulCheckValue ) || \ + ( pulStack[ 3 ] != ulCheckValue ) ) \ + { \ + vApplicationStackOverflowHook( ( TaskHandle_t ) pxCurrentTCB, pxCurrentTCB->pcTaskName ); \ + } \ + } + +#endif /* #if( configCHECK_FOR_STACK_OVERFLOW > 1 ) */ +/*-----------------------------------------------------------*/ + +#if( ( configCHECK_FOR_STACK_OVERFLOW > 1 ) && ( portSTACK_GROWTH > 0 ) ) + + #define taskCHECK_FOR_STACK_OVERFLOW() \ + { \ + int8_t *pcEndOfStack = ( int8_t * ) pxCurrentTCB->pxEndOfStack; \ + static const uint8_t ucExpectedStackBytes[] = { tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, \ + tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, \ + tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, \ + tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, \ + tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE }; \ + \ + \ + pcEndOfStack -= sizeof( ucExpectedStackBytes ); \ + \ + /* Has the extremity of the task stack ever been written over? */ \ + if( memcmp( ( void * ) pcEndOfStack, ( void * ) ucExpectedStackBytes, sizeof( ucExpectedStackBytes ) ) != 0 ) \ + { \ + vApplicationStackOverflowHook( ( TaskHandle_t ) pxCurrentTCB, pxCurrentTCB->pcTaskName ); \ + } \ + } + +#endif /* #if( configCHECK_FOR_STACK_OVERFLOW > 1 ) */ +/*-----------------------------------------------------------*/ + +/* Remove stack overflow macro if not being used. */ +#ifndef taskCHECK_FOR_STACK_OVERFLOW + #define taskCHECK_FOR_STACK_OVERFLOW() +#endif + + + +#endif /* STACK_MACROS_H */ + diff --git a/rtos/freertos/abstraction_layer_freertos/include/atomic.h b/rtos/freertos/abstraction_layer_freertos/include/atomic.h new file mode 100644 index 00000000..d6009f67 --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/include/atomic.h @@ -0,0 +1,414 @@ +/* + * FreeRTOS Kernel V10.3.0 + * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * + * http://www.FreeRTOS.org + * http://aws.amazon.com/freertos + * + * 1 tab == 4 spaces! + */ + +/** + * @file atomic.h + * @brief FreeRTOS atomic operation support. + * + * This file implements atomic functions by disabling interrupts globally. + * Implementations with architecture specific atomic instructions can be + * provided under each compiler directory. + */ + +#ifndef ATOMIC_H +#define ATOMIC_H + +#ifndef INC_FREERTOS_H + #error "include FreeRTOS.h must appear in source files before include atomic.h" +#endif + +/* Standard includes. */ +#include + +#ifdef __cplusplus +extern "C" { +#endif + +/* + * Port specific definitions -- entering/exiting critical section. + * Refer template -- ./lib/FreeRTOS/portable/Compiler/Arch/portmacro.h + * + * Every call to ATOMIC_EXIT_CRITICAL() must be closely paired with + * ATOMIC_ENTER_CRITICAL(). + * + */ +#if defined( portSET_INTERRUPT_MASK_FROM_ISR ) + + /* Nested interrupt scheme is supported in this port. */ + #define ATOMIC_ENTER_CRITICAL() \ + UBaseType_t uxCriticalSectionType = portSET_INTERRUPT_MASK_FROM_ISR() + + #define ATOMIC_EXIT_CRITICAL() \ + portCLEAR_INTERRUPT_MASK_FROM_ISR( uxCriticalSectionType ) + +#else + + /* Nested interrupt scheme is NOT supported in this port. */ + #define ATOMIC_ENTER_CRITICAL() portENTER_CRITICAL() + #define ATOMIC_EXIT_CRITICAL() portEXIT_CRITICAL() + +#endif /* portSET_INTERRUPT_MASK_FROM_ISR() */ + +/* + * Port specific definition -- "always inline". + * Inline is compiler specific, and may not always get inlined depending on your + * optimization level. Also, inline is considered as performance optimization + * for atomic. Thus, if portFORCE_INLINE is not provided by portmacro.h, + * instead of resulting error, simply define it away. + */ +#ifndef portFORCE_INLINE + #define portFORCE_INLINE +#endif + +#define ATOMIC_COMPARE_AND_SWAP_SUCCESS 0x1U /**< Compare and swap succeeded, swapped. */ +#define ATOMIC_COMPARE_AND_SWAP_FAILURE 0x0U /**< Compare and swap failed, did not swap. */ + +/*----------------------------- Swap && CAS ------------------------------*/ + +/** + * Atomic compare-and-swap + * + * @brief Performs an atomic compare-and-swap operation on the specified values. + * + * @param[in, out] pulDestination Pointer to memory location from where value is + * to be loaded and checked. + * @param[in] ulExchange If condition meets, write this value to memory. + * @param[in] ulComparand Swap condition. + * + * @return Unsigned integer of value 1 or 0. 1 for swapped, 0 for not swapped. + * + * @note This function only swaps *pulDestination with ulExchange, if previous + * *pulDestination value equals ulComparand. + */ +static portFORCE_INLINE uint32_t Atomic_CompareAndSwap_u32( uint32_t volatile * pulDestination, + uint32_t ulExchange, + uint32_t ulComparand ) +{ +uint32_t ulReturnValue; + + ATOMIC_ENTER_CRITICAL(); + { + if( *pulDestination == ulComparand ) + { + *pulDestination = ulExchange; + ulReturnValue = ATOMIC_COMPARE_AND_SWAP_SUCCESS; + } + else + { + ulReturnValue = ATOMIC_COMPARE_AND_SWAP_FAILURE; + } + } + ATOMIC_EXIT_CRITICAL(); + + return ulReturnValue; +} +/*-----------------------------------------------------------*/ + +/** + * Atomic swap (pointers) + * + * @brief Atomically sets the address pointed to by *ppvDestination to the value + * of *pvExchange. + * + * @param[in, out] ppvDestination Pointer to memory location from where a pointer + * value is to be loaded and written back to. + * @param[in] pvExchange Pointer value to be written to *ppvDestination. + * + * @return The initial value of *ppvDestination. + */ +static portFORCE_INLINE void * Atomic_SwapPointers_p32( void * volatile * ppvDestination, + void * pvExchange ) +{ +void * pReturnValue; + + ATOMIC_ENTER_CRITICAL(); + { + pReturnValue = *ppvDestination; + *ppvDestination = pvExchange; + } + ATOMIC_EXIT_CRITICAL(); + + return pReturnValue; +} +/*-----------------------------------------------------------*/ + +/** + * Atomic compare-and-swap (pointers) + * + * @brief Performs an atomic compare-and-swap operation on the specified pointer + * values. + * + * @param[in, out] ppvDestination Pointer to memory location from where a pointer + * value is to be loaded and checked. + * @param[in] pvExchange If condition meets, write this value to memory. + * @param[in] pvComparand Swap condition. + * + * @return Unsigned integer of value 1 or 0. 1 for swapped, 0 for not swapped. + * + * @note This function only swaps *ppvDestination with pvExchange, if previous + * *ppvDestination value equals pvComparand. + */ +static portFORCE_INLINE uint32_t Atomic_CompareAndSwapPointers_p32( void * volatile * ppvDestination, + void * pvExchange, + void * pvComparand ) +{ +uint32_t ulReturnValue = ATOMIC_COMPARE_AND_SWAP_FAILURE; + + ATOMIC_ENTER_CRITICAL(); + { + if( *ppvDestination == pvComparand ) + { + *ppvDestination = pvExchange; + ulReturnValue = ATOMIC_COMPARE_AND_SWAP_SUCCESS; + } + } + ATOMIC_EXIT_CRITICAL(); + + return ulReturnValue; +} + + +/*----------------------------- Arithmetic ------------------------------*/ + +/** + * Atomic add + * + * @brief Atomically adds count to the value of the specified pointer points to. + * + * @param[in,out] pulAddend Pointer to memory location from where value is to be + * loaded and written back to. + * @param[in] ulCount Value to be added to *pulAddend. + * + * @return previous *pulAddend value. + */ +static portFORCE_INLINE uint32_t Atomic_Add_u32( uint32_t volatile * pulAddend, + uint32_t ulCount ) +{ + uint32_t ulCurrent; + + ATOMIC_ENTER_CRITICAL(); + { + ulCurrent = *pulAddend; + *pulAddend += ulCount; + } + ATOMIC_EXIT_CRITICAL(); + + return ulCurrent; +} +/*-----------------------------------------------------------*/ + +/** + * Atomic subtract + * + * @brief Atomically subtracts count from the value of the specified pointer + * pointers to. + * + * @param[in,out] pulAddend Pointer to memory location from where value is to be + * loaded and written back to. + * @param[in] ulCount Value to be subtract from *pulAddend. + * + * @return previous *pulAddend value. + */ +static portFORCE_INLINE uint32_t Atomic_Subtract_u32( uint32_t volatile * pulAddend, + uint32_t ulCount ) +{ + uint32_t ulCurrent; + + ATOMIC_ENTER_CRITICAL(); + { + ulCurrent = *pulAddend; + *pulAddend -= ulCount; + } + ATOMIC_EXIT_CRITICAL(); + + return ulCurrent; +} +/*-----------------------------------------------------------*/ + +/** + * Atomic increment + * + * @brief Atomically increments the value of the specified pointer points to. + * + * @param[in,out] pulAddend Pointer to memory location from where value is to be + * loaded and written back to. + * + * @return *pulAddend value before increment. + */ +static portFORCE_INLINE uint32_t Atomic_Increment_u32( uint32_t volatile * pulAddend ) +{ +uint32_t ulCurrent; + + ATOMIC_ENTER_CRITICAL(); + { + ulCurrent = *pulAddend; + *pulAddend += 1; + } + ATOMIC_EXIT_CRITICAL(); + + return ulCurrent; +} +/*-----------------------------------------------------------*/ + +/** + * Atomic decrement + * + * @brief Atomically decrements the value of the specified pointer points to + * + * @param[in,out] pulAddend Pointer to memory location from where value is to be + * loaded and written back to. + * + * @return *pulAddend value before decrement. + */ +static portFORCE_INLINE uint32_t Atomic_Decrement_u32( uint32_t volatile * pulAddend ) +{ +uint32_t ulCurrent; + + ATOMIC_ENTER_CRITICAL(); + { + ulCurrent = *pulAddend; + *pulAddend -= 1; + } + ATOMIC_EXIT_CRITICAL(); + + return ulCurrent; +} + +/*----------------------------- Bitwise Logical ------------------------------*/ + +/** + * Atomic OR + * + * @brief Performs an atomic OR operation on the specified values. + * + * @param [in, out] pulDestination Pointer to memory location from where value is + * to be loaded and written back to. + * @param [in] ulValue Value to be ORed with *pulDestination. + * + * @return The original value of *pulDestination. + */ +static portFORCE_INLINE uint32_t Atomic_OR_u32( uint32_t volatile * pulDestination, + uint32_t ulValue ) +{ +uint32_t ulCurrent; + + ATOMIC_ENTER_CRITICAL(); + { + ulCurrent = *pulDestination; + *pulDestination |= ulValue; + } + ATOMIC_EXIT_CRITICAL(); + + return ulCurrent; +} +/*-----------------------------------------------------------*/ + +/** + * Atomic AND + * + * @brief Performs an atomic AND operation on the specified values. + * + * @param [in, out] pulDestination Pointer to memory location from where value is + * to be loaded and written back to. + * @param [in] ulValue Value to be ANDed with *pulDestination. + * + * @return The original value of *pulDestination. + */ +static portFORCE_INLINE uint32_t Atomic_AND_u32( uint32_t volatile * pulDestination, + uint32_t ulValue ) +{ +uint32_t ulCurrent; + + ATOMIC_ENTER_CRITICAL(); + { + ulCurrent = *pulDestination; + *pulDestination &= ulValue; + } + ATOMIC_EXIT_CRITICAL(); + + return ulCurrent; +} +/*-----------------------------------------------------------*/ + +/** + * Atomic NAND + * + * @brief Performs an atomic NAND operation on the specified values. + * + * @param [in, out] pulDestination Pointer to memory location from where value is + * to be loaded and written back to. + * @param [in] ulValue Value to be NANDed with *pulDestination. + * + * @return The original value of *pulDestination. + */ +static portFORCE_INLINE uint32_t Atomic_NAND_u32( uint32_t volatile * pulDestination, + uint32_t ulValue ) +{ +uint32_t ulCurrent; + + ATOMIC_ENTER_CRITICAL(); + { + ulCurrent = *pulDestination; + *pulDestination = ~( ulCurrent & ulValue ); + } + ATOMIC_EXIT_CRITICAL(); + + return ulCurrent; +} +/*-----------------------------------------------------------*/ + +/** + * Atomic XOR + * + * @brief Performs an atomic XOR operation on the specified values. + * + * @param [in, out] pulDestination Pointer to memory location from where value is + * to be loaded and written back to. + * @param [in] ulValue Value to be XORed with *pulDestination. + * + * @return The original value of *pulDestination. + */ +static portFORCE_INLINE uint32_t Atomic_XOR_u32( uint32_t volatile * pulDestination, + uint32_t ulValue ) +{ +uint32_t ulCurrent; + + ATOMIC_ENTER_CRITICAL(); + { + ulCurrent = *pulDestination; + *pulDestination ^= ulValue; + } + ATOMIC_EXIT_CRITICAL(); + + return ulCurrent; +} + +#ifdef __cplusplus +} +#endif + +#endif /* ATOMIC_H */ diff --git a/rtos/freertos/abstraction_layer_freertos/include/croutine.h b/rtos/freertos/abstraction_layer_freertos/include/croutine.h new file mode 100644 index 00000000..9bdf8a08 --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/include/croutine.h @@ -0,0 +1,720 @@ +/* + * FreeRTOS Kernel V10.3.0 + * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * + * http://www.FreeRTOS.org + * http://aws.amazon.com/freertos + * + * 1 tab == 4 spaces! + */ + +#ifndef CO_ROUTINE_H +#define CO_ROUTINE_H + +#ifndef INC_FREERTOS_H + #error "include FreeRTOS.h must appear in source files before include croutine.h" +#endif + +#include "list.h" + +#ifdef __cplusplus +extern "C" { +#endif + +/* Used to hide the implementation of the co-routine control block. The +control block structure however has to be included in the header due to +the macro implementation of the co-routine functionality. */ +typedef void * CoRoutineHandle_t; + +/* Defines the prototype to which co-routine functions must conform. */ +typedef void (*crCOROUTINE_CODE)( CoRoutineHandle_t, UBaseType_t ); + +typedef struct corCoRoutineControlBlock +{ + crCOROUTINE_CODE pxCoRoutineFunction; + ListItem_t xGenericListItem; /*< List item used to place the CRCB in ready and blocked queues. */ + ListItem_t xEventListItem; /*< List item used to place the CRCB in event lists. */ + UBaseType_t uxPriority; /*< The priority of the co-routine in relation to other co-routines. */ + UBaseType_t uxIndex; /*< Used to distinguish between co-routines when multiple co-routines use the same co-routine function. */ + uint16_t uxState; /*< Used internally by the co-routine implementation. */ +} CRCB_t; /* Co-routine control block. Note must be identical in size down to uxPriority with TCB_t. */ + +/** + * croutine. h + *
+ BaseType_t xCoRoutineCreate(
+                                 crCOROUTINE_CODE pxCoRoutineCode,
+                                 UBaseType_t uxPriority,
+                                 UBaseType_t uxIndex
+                               );
+ * + * Create a new co-routine and add it to the list of co-routines that are + * ready to run. + * + * @param pxCoRoutineCode Pointer to the co-routine function. Co-routine + * functions require special syntax - see the co-routine section of the WEB + * documentation for more information. + * + * @param uxPriority The priority with respect to other co-routines at which + * the co-routine will run. + * + * @param uxIndex Used to distinguish between different co-routines that + * execute the same function. See the example below and the co-routine section + * of the WEB documentation for further information. + * + * @return pdPASS if the co-routine was successfully created and added to a ready + * list, otherwise an error code defined with ProjDefs.h. + * + * Example usage: +
+ // Co-routine to be created.
+ void vFlashCoRoutine( CoRoutineHandle_t xHandle, UBaseType_t uxIndex )
+ {
+ // Variables in co-routines must be declared static if they must maintain value across a blocking call.
+ // This may not be necessary for const variables.
+ static const char cLedToFlash[ 2 ] = { 5, 6 };
+ static const TickType_t uxFlashRates[ 2 ] = { 200, 400 };
+
+     // Must start every co-routine with a call to crSTART();
+     crSTART( xHandle );
+
+     for( ;; )
+     {
+         // This co-routine just delays for a fixed period, then toggles
+         // an LED.  Two co-routines are created using this function, so
+         // the uxIndex parameter is used to tell the co-routine which
+         // LED to flash and how int32_t to delay.  This assumes xQueue has
+         // already been created.
+         vParTestToggleLED( cLedToFlash[ uxIndex ] );
+         crDELAY( xHandle, uxFlashRates[ uxIndex ] );
+     }
+
+     // Must end every co-routine with a call to crEND();
+     crEND();
+ }
+
+ // Function that creates two co-routines.
+ void vOtherFunction( void )
+ {
+ uint8_t ucParameterToPass;
+ TaskHandle_t xHandle;
+
+     // Create two co-routines at priority 0.  The first is given index 0
+     // so (from the code above) toggles LED 5 every 200 ticks.  The second
+     // is given index 1 so toggles LED 6 every 400 ticks.
+     for( uxIndex = 0; uxIndex < 2; uxIndex++ )
+     {
+         xCoRoutineCreate( vFlashCoRoutine, 0, uxIndex );
+     }
+ }
+   
+ * \defgroup xCoRoutineCreate xCoRoutineCreate + * \ingroup Tasks + */ +BaseType_t xCoRoutineCreate( crCOROUTINE_CODE pxCoRoutineCode, UBaseType_t uxPriority, UBaseType_t uxIndex ); + + +/** + * croutine. h + *
+ void vCoRoutineSchedule( void );
+ * + * Run a co-routine. + * + * vCoRoutineSchedule() executes the highest priority co-routine that is able + * to run. The co-routine will execute until it either blocks, yields or is + * preempted by a task. Co-routines execute cooperatively so one + * co-routine cannot be preempted by another, but can be preempted by a task. + * + * If an application comprises of both tasks and co-routines then + * vCoRoutineSchedule should be called from the idle task (in an idle task + * hook). + * + * Example usage: +
+ // This idle task hook will schedule a co-routine each time it is called.
+ // The rest of the idle task will execute between co-routine calls.
+ void vApplicationIdleHook( void )
+ {
+	vCoRoutineSchedule();
+ }
+
+ // Alternatively, if you do not require any other part of the idle task to
+ // execute, the idle task hook can call vCoRoutineSchedule() within an
+ // infinite loop.
+ void vApplicationIdleHook( void )
+ {
+    for( ;; )
+    {
+        vCoRoutineSchedule();
+    }
+ }
+ 
+ * \defgroup vCoRoutineSchedule vCoRoutineSchedule + * \ingroup Tasks + */ +void vCoRoutineSchedule( void ); + +/** + * croutine. h + *
+ crSTART( CoRoutineHandle_t xHandle );
+ * + * This macro MUST always be called at the start of a co-routine function. + * + * Example usage: +
+ // Co-routine to be created.
+ void vACoRoutine( CoRoutineHandle_t xHandle, UBaseType_t uxIndex )
+ {
+ // Variables in co-routines must be declared static if they must maintain value across a blocking call.
+ static int32_t ulAVariable;
+
+     // Must start every co-routine with a call to crSTART();
+     crSTART( xHandle );
+
+     for( ;; )
+     {
+          // Co-routine functionality goes here.
+     }
+
+     // Must end every co-routine with a call to crEND();
+     crEND();
+ }
+ * \defgroup crSTART crSTART + * \ingroup Tasks + */ +#define crSTART( pxCRCB ) switch( ( ( CRCB_t * )( pxCRCB ) )->uxState ) { case 0: + +/** + * croutine. h + *
+ crEND();
+ * + * This macro MUST always be called at the end of a co-routine function. + * + * Example usage: +
+ // Co-routine to be created.
+ void vACoRoutine( CoRoutineHandle_t xHandle, UBaseType_t uxIndex )
+ {
+ // Variables in co-routines must be declared static if they must maintain value across a blocking call.
+ static int32_t ulAVariable;
+
+     // Must start every co-routine with a call to crSTART();
+     crSTART( xHandle );
+
+     for( ;; )
+     {
+          // Co-routine functionality goes here.
+     }
+
+     // Must end every co-routine with a call to crEND();
+     crEND();
+ }
+ * \defgroup crSTART crSTART + * \ingroup Tasks + */ +#define crEND() } + +/* + * These macros are intended for internal use by the co-routine implementation + * only. The macros should not be used directly by application writers. + */ +#define crSET_STATE0( xHandle ) ( ( CRCB_t * )( xHandle ) )->uxState = (__LINE__ * 2); return; case (__LINE__ * 2): +#define crSET_STATE1( xHandle ) ( ( CRCB_t * )( xHandle ) )->uxState = ((__LINE__ * 2)+1); return; case ((__LINE__ * 2)+1): + +/** + * croutine. h + *
+ crDELAY( CoRoutineHandle_t xHandle, TickType_t xTicksToDelay );
+ * + * Delay a co-routine for a fixed period of time. + * + * crDELAY can only be called from the co-routine function itself - not + * from within a function called by the co-routine function. This is because + * co-routines do not maintain their own stack. + * + * @param xHandle The handle of the co-routine to delay. This is the xHandle + * parameter of the co-routine function. + * + * @param xTickToDelay The number of ticks that the co-routine should delay + * for. The actual amount of time this equates to is defined by + * configTICK_RATE_HZ (set in FreeRTOSConfig.h). The constant portTICK_PERIOD_MS + * can be used to convert ticks to milliseconds. + * + * Example usage: +
+ // Co-routine to be created.
+ void vACoRoutine( CoRoutineHandle_t xHandle, UBaseType_t uxIndex )
+ {
+ // Variables in co-routines must be declared static if they must maintain value across a blocking call.
+ // This may not be necessary for const variables.
+ // We are to delay for 200ms.
+ static const xTickType xDelayTime = 200 / portTICK_PERIOD_MS;
+
+     // Must start every co-routine with a call to crSTART();
+     crSTART( xHandle );
+
+     for( ;; )
+     {
+        // Delay for 200ms.
+        crDELAY( xHandle, xDelayTime );
+
+        // Do something here.
+     }
+
+     // Must end every co-routine with a call to crEND();
+     crEND();
+ }
+ * \defgroup crDELAY crDELAY + * \ingroup Tasks + */ +#define crDELAY( xHandle, xTicksToDelay ) \ + if( ( xTicksToDelay ) > 0 ) \ + { \ + vCoRoutineAddToDelayedList( ( xTicksToDelay ), NULL ); \ + } \ + crSET_STATE0( ( xHandle ) ); + +/** + *
+ crQUEUE_SEND(
+                  CoRoutineHandle_t xHandle,
+                  QueueHandle_t pxQueue,
+                  void *pvItemToQueue,
+                  TickType_t xTicksToWait,
+                  BaseType_t *pxResult
+             )
+ * + * The macro's crQUEUE_SEND() and crQUEUE_RECEIVE() are the co-routine + * equivalent to the xQueueSend() and xQueueReceive() functions used by tasks. + * + * crQUEUE_SEND and crQUEUE_RECEIVE can only be used from a co-routine whereas + * xQueueSend() and xQueueReceive() can only be used from tasks. + * + * crQUEUE_SEND can only be called from the co-routine function itself - not + * from within a function called by the co-routine function. This is because + * co-routines do not maintain their own stack. + * + * See the co-routine section of the WEB documentation for information on + * passing data between tasks and co-routines and between ISR's and + * co-routines. + * + * @param xHandle The handle of the calling co-routine. This is the xHandle + * parameter of the co-routine function. + * + * @param pxQueue The handle of the queue on which the data will be posted. + * The handle is obtained as the return value when the queue is created using + * the xQueueCreate() API function. + * + * @param pvItemToQueue A pointer to the data being posted onto the queue. + * The number of bytes of each queued item is specified when the queue is + * created. This number of bytes is copied from pvItemToQueue into the queue + * itself. + * + * @param xTickToDelay The number of ticks that the co-routine should block + * to wait for space to become available on the queue, should space not be + * available immediately. The actual amount of time this equates to is defined + * by configTICK_RATE_HZ (set in FreeRTOSConfig.h). The constant + * portTICK_PERIOD_MS can be used to convert ticks to milliseconds (see example + * below). + * + * @param pxResult The variable pointed to by pxResult will be set to pdPASS if + * data was successfully posted onto the queue, otherwise it will be set to an + * error defined within ProjDefs.h. + * + * Example usage: +
+ // Co-routine function that blocks for a fixed period then posts a number onto
+ // a queue.
+ static void prvCoRoutineFlashTask( CoRoutineHandle_t xHandle, UBaseType_t uxIndex )
+ {
+ // Variables in co-routines must be declared static if they must maintain value across a blocking call.
+ static BaseType_t xNumberToPost = 0;
+ static BaseType_t xResult;
+
+    // Co-routines must begin with a call to crSTART().
+    crSTART( xHandle );
+
+    for( ;; )
+    {
+        // This assumes the queue has already been created.
+        crQUEUE_SEND( xHandle, xCoRoutineQueue, &xNumberToPost, NO_DELAY, &xResult );
+
+        if( xResult != pdPASS )
+        {
+            // The message was not posted!
+        }
+
+        // Increment the number to be posted onto the queue.
+        xNumberToPost++;
+
+        // Delay for 100 ticks.
+        crDELAY( xHandle, 100 );
+    }
+
+    // Co-routines must end with a call to crEND().
+    crEND();
+ }
+ * \defgroup crQUEUE_SEND crQUEUE_SEND + * \ingroup Tasks + */ +#define crQUEUE_SEND( xHandle, pxQueue, pvItemToQueue, xTicksToWait, pxResult ) \ +{ \ + *( pxResult ) = xQueueCRSend( ( pxQueue) , ( pvItemToQueue) , ( xTicksToWait ) ); \ + if( *( pxResult ) == errQUEUE_BLOCKED ) \ + { \ + crSET_STATE0( ( xHandle ) ); \ + *pxResult = xQueueCRSend( ( pxQueue ), ( pvItemToQueue ), 0 ); \ + } \ + if( *pxResult == errQUEUE_YIELD ) \ + { \ + crSET_STATE1( ( xHandle ) ); \ + *pxResult = pdPASS; \ + } \ +} + +/** + * croutine. h + *
+  crQUEUE_RECEIVE(
+                     CoRoutineHandle_t xHandle,
+                     QueueHandle_t pxQueue,
+                     void *pvBuffer,
+                     TickType_t xTicksToWait,
+                     BaseType_t *pxResult
+                 )
+ * + * The macro's crQUEUE_SEND() and crQUEUE_RECEIVE() are the co-routine + * equivalent to the xQueueSend() and xQueueReceive() functions used by tasks. + * + * crQUEUE_SEND and crQUEUE_RECEIVE can only be used from a co-routine whereas + * xQueueSend() and xQueueReceive() can only be used from tasks. + * + * crQUEUE_RECEIVE can only be called from the co-routine function itself - not + * from within a function called by the co-routine function. This is because + * co-routines do not maintain their own stack. + * + * See the co-routine section of the WEB documentation for information on + * passing data between tasks and co-routines and between ISR's and + * co-routines. + * + * @param xHandle The handle of the calling co-routine. This is the xHandle + * parameter of the co-routine function. + * + * @param pxQueue The handle of the queue from which the data will be received. + * The handle is obtained as the return value when the queue is created using + * the xQueueCreate() API function. + * + * @param pvBuffer The buffer into which the received item is to be copied. + * The number of bytes of each queued item is specified when the queue is + * created. This number of bytes is copied into pvBuffer. + * + * @param xTickToDelay The number of ticks that the co-routine should block + * to wait for data to become available from the queue, should data not be + * available immediately. The actual amount of time this equates to is defined + * by configTICK_RATE_HZ (set in FreeRTOSConfig.h). The constant + * portTICK_PERIOD_MS can be used to convert ticks to milliseconds (see the + * crQUEUE_SEND example). + * + * @param pxResult The variable pointed to by pxResult will be set to pdPASS if + * data was successfully retrieved from the queue, otherwise it will be set to + * an error code as defined within ProjDefs.h. + * + * Example usage: +
+ // A co-routine receives the number of an LED to flash from a queue.  It
+ // blocks on the queue until the number is received.
+ static void prvCoRoutineFlashWorkTask( CoRoutineHandle_t xHandle, UBaseType_t uxIndex )
+ {
+ // Variables in co-routines must be declared static if they must maintain value across a blocking call.
+ static BaseType_t xResult;
+ static UBaseType_t uxLEDToFlash;
+
+    // All co-routines must start with a call to crSTART().
+    crSTART( xHandle );
+
+    for( ;; )
+    {
+        // Wait for data to become available on the queue.
+        crQUEUE_RECEIVE( xHandle, xCoRoutineQueue, &uxLEDToFlash, portMAX_DELAY, &xResult );
+
+        if( xResult == pdPASS )
+        {
+            // We received the LED to flash - flash it!
+            vParTestToggleLED( uxLEDToFlash );
+        }
+    }
+
+    crEND();
+ }
+ * \defgroup crQUEUE_RECEIVE crQUEUE_RECEIVE + * \ingroup Tasks + */ +#define crQUEUE_RECEIVE( xHandle, pxQueue, pvBuffer, xTicksToWait, pxResult ) \ +{ \ + *( pxResult ) = xQueueCRReceive( ( pxQueue) , ( pvBuffer ), ( xTicksToWait ) ); \ + if( *( pxResult ) == errQUEUE_BLOCKED ) \ + { \ + crSET_STATE0( ( xHandle ) ); \ + *( pxResult ) = xQueueCRReceive( ( pxQueue) , ( pvBuffer ), 0 ); \ + } \ + if( *( pxResult ) == errQUEUE_YIELD ) \ + { \ + crSET_STATE1( ( xHandle ) ); \ + *( pxResult ) = pdPASS; \ + } \ +} + +/** + * croutine. h + *
+  crQUEUE_SEND_FROM_ISR(
+                            QueueHandle_t pxQueue,
+                            void *pvItemToQueue,
+                            BaseType_t xCoRoutinePreviouslyWoken
+                       )
+ * + * The macro's crQUEUE_SEND_FROM_ISR() and crQUEUE_RECEIVE_FROM_ISR() are the + * co-routine equivalent to the xQueueSendFromISR() and xQueueReceiveFromISR() + * functions used by tasks. + * + * crQUEUE_SEND_FROM_ISR() and crQUEUE_RECEIVE_FROM_ISR() can only be used to + * pass data between a co-routine and and ISR, whereas xQueueSendFromISR() and + * xQueueReceiveFromISR() can only be used to pass data between a task and and + * ISR. + * + * crQUEUE_SEND_FROM_ISR can only be called from an ISR to send data to a queue + * that is being used from within a co-routine. + * + * See the co-routine section of the WEB documentation for information on + * passing data between tasks and co-routines and between ISR's and + * co-routines. + * + * @param xQueue The handle to the queue on which the item is to be posted. + * + * @param pvItemToQueue A pointer to the item that is to be placed on the + * queue. The size of the items the queue will hold was defined when the + * queue was created, so this many bytes will be copied from pvItemToQueue + * into the queue storage area. + * + * @param xCoRoutinePreviouslyWoken This is included so an ISR can post onto + * the same queue multiple times from a single interrupt. The first call + * should always pass in pdFALSE. Subsequent calls should pass in + * the value returned from the previous call. + * + * @return pdTRUE if a co-routine was woken by posting onto the queue. This is + * used by the ISR to determine if a context switch may be required following + * the ISR. + * + * Example usage: +
+ // A co-routine that blocks on a queue waiting for characters to be received.
+ static void vReceivingCoRoutine( CoRoutineHandle_t xHandle, UBaseType_t uxIndex )
+ {
+ char cRxedChar;
+ BaseType_t xResult;
+
+     // All co-routines must start with a call to crSTART().
+     crSTART( xHandle );
+
+     for( ;; )
+     {
+         // Wait for data to become available on the queue.  This assumes the
+         // queue xCommsRxQueue has already been created!
+         crQUEUE_RECEIVE( xHandle, xCommsRxQueue, &uxLEDToFlash, portMAX_DELAY, &xResult );
+
+         // Was a character received?
+         if( xResult == pdPASS )
+         {
+             // Process the character here.
+         }
+     }
+
+     // All co-routines must end with a call to crEND().
+     crEND();
+ }
+
+ // An ISR that uses a queue to send characters received on a serial port to
+ // a co-routine.
+ void vUART_ISR( void )
+ {
+ char cRxedChar;
+ BaseType_t xCRWokenByPost = pdFALSE;
+
+     // We loop around reading characters until there are none left in the UART.
+     while( UART_RX_REG_NOT_EMPTY() )
+     {
+         // Obtain the character from the UART.
+         cRxedChar = UART_RX_REG;
+
+         // Post the character onto a queue.  xCRWokenByPost will be pdFALSE
+         // the first time around the loop.  If the post causes a co-routine
+         // to be woken (unblocked) then xCRWokenByPost will be set to pdTRUE.
+         // In this manner we can ensure that if more than one co-routine is
+         // blocked on the queue only one is woken by this ISR no matter how
+         // many characters are posted to the queue.
+         xCRWokenByPost = crQUEUE_SEND_FROM_ISR( xCommsRxQueue, &cRxedChar, xCRWokenByPost );
+     }
+ }
+ * \defgroup crQUEUE_SEND_FROM_ISR crQUEUE_SEND_FROM_ISR + * \ingroup Tasks + */ +#define crQUEUE_SEND_FROM_ISR( pxQueue, pvItemToQueue, xCoRoutinePreviouslyWoken ) xQueueCRSendFromISR( ( pxQueue ), ( pvItemToQueue ), ( xCoRoutinePreviouslyWoken ) ) + + +/** + * croutine. h + *
+  crQUEUE_SEND_FROM_ISR(
+                            QueueHandle_t pxQueue,
+                            void *pvBuffer,
+                            BaseType_t * pxCoRoutineWoken
+                       )
+ * + * The macro's crQUEUE_SEND_FROM_ISR() and crQUEUE_RECEIVE_FROM_ISR() are the + * co-routine equivalent to the xQueueSendFromISR() and xQueueReceiveFromISR() + * functions used by tasks. + * + * crQUEUE_SEND_FROM_ISR() and crQUEUE_RECEIVE_FROM_ISR() can only be used to + * pass data between a co-routine and and ISR, whereas xQueueSendFromISR() and + * xQueueReceiveFromISR() can only be used to pass data between a task and and + * ISR. + * + * crQUEUE_RECEIVE_FROM_ISR can only be called from an ISR to receive data + * from a queue that is being used from within a co-routine (a co-routine + * posted to the queue). + * + * See the co-routine section of the WEB documentation for information on + * passing data between tasks and co-routines and between ISR's and + * co-routines. + * + * @param xQueue The handle to the queue on which the item is to be posted. + * + * @param pvBuffer A pointer to a buffer into which the received item will be + * placed. The size of the items the queue will hold was defined when the + * queue was created, so this many bytes will be copied from the queue into + * pvBuffer. + * + * @param pxCoRoutineWoken A co-routine may be blocked waiting for space to become + * available on the queue. If crQUEUE_RECEIVE_FROM_ISR causes such a + * co-routine to unblock *pxCoRoutineWoken will get set to pdTRUE, otherwise + * *pxCoRoutineWoken will remain unchanged. + * + * @return pdTRUE an item was successfully received from the queue, otherwise + * pdFALSE. + * + * Example usage: +
+ // A co-routine that posts a character to a queue then blocks for a fixed
+ // period.  The character is incremented each time.
+ static void vSendingCoRoutine( CoRoutineHandle_t xHandle, UBaseType_t uxIndex )
+ {
+ // cChar holds its value while this co-routine is blocked and must therefore
+ // be declared static.
+ static char cCharToTx = 'a';
+ BaseType_t xResult;
+
+     // All co-routines must start with a call to crSTART().
+     crSTART( xHandle );
+
+     for( ;; )
+     {
+         // Send the next character to the queue.
+         crQUEUE_SEND( xHandle, xCoRoutineQueue, &cCharToTx, NO_DELAY, &xResult );
+
+         if( xResult == pdPASS )
+         {
+             // The character was successfully posted to the queue.
+         }
+		 else
+		 {
+			// Could not post the character to the queue.
+		 }
+
+         // Enable the UART Tx interrupt to cause an interrupt in this
+		 // hypothetical UART.  The interrupt will obtain the character
+		 // from the queue and send it.
+		 ENABLE_RX_INTERRUPT();
+
+		 // Increment to the next character then block for a fixed period.
+		 // cCharToTx will maintain its value across the delay as it is
+		 // declared static.
+		 cCharToTx++;
+		 if( cCharToTx > 'x' )
+		 {
+			cCharToTx = 'a';
+		 }
+		 crDELAY( 100 );
+     }
+
+     // All co-routines must end with a call to crEND().
+     crEND();
+ }
+
+ // An ISR that uses a queue to receive characters to send on a UART.
+ void vUART_ISR( void )
+ {
+ char cCharToTx;
+ BaseType_t xCRWokenByPost = pdFALSE;
+
+     while( UART_TX_REG_EMPTY() )
+     {
+         // Are there any characters in the queue waiting to be sent?
+		 // xCRWokenByPost will automatically be set to pdTRUE if a co-routine
+		 // is woken by the post - ensuring that only a single co-routine is
+		 // woken no matter how many times we go around this loop.
+         if( crQUEUE_RECEIVE_FROM_ISR( pxQueue, &cCharToTx, &xCRWokenByPost ) )
+		 {
+			 SEND_CHARACTER( cCharToTx );
+		 }
+     }
+ }
+ * \defgroup crQUEUE_RECEIVE_FROM_ISR crQUEUE_RECEIVE_FROM_ISR + * \ingroup Tasks + */ +#define crQUEUE_RECEIVE_FROM_ISR( pxQueue, pvBuffer, pxCoRoutineWoken ) xQueueCRReceiveFromISR( ( pxQueue ), ( pvBuffer ), ( pxCoRoutineWoken ) ) + +/* + * This function is intended for internal use by the co-routine macros only. + * The macro nature of the co-routine implementation requires that the + * prototype appears here. The function should not be used by application + * writers. + * + * Removes the current co-routine from its ready list and places it in the + * appropriate delayed list. + */ +void vCoRoutineAddToDelayedList( TickType_t xTicksToDelay, List_t *pxEventList ); + +/* + * This function is intended for internal use by the queue implementation only. + * The function should not be used by application writers. + * + * Removes the highest priority co-routine from the event list and places it in + * the pending ready list. + */ +BaseType_t xCoRoutineRemoveFromEventList( const List_t *pxEventList ); + +#ifdef __cplusplus +} +#endif + +#endif /* CO_ROUTINE_H */ diff --git a/rtos/freertos/abstraction_layer_freertos/include/deprecated_definitions.h b/rtos/freertos/abstraction_layer_freertos/include/deprecated_definitions.h new file mode 100644 index 00000000..e5cb4847 --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/include/deprecated_definitions.h @@ -0,0 +1,279 @@ +/* + * FreeRTOS Kernel V10.3.0 + * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * + * http://www.FreeRTOS.org + * http://aws.amazon.com/freertos + * + * 1 tab == 4 spaces! + */ + +#ifndef DEPRECATED_DEFINITIONS_H +#define DEPRECATED_DEFINITIONS_H + + +/* Each FreeRTOS port has a unique portmacro.h header file. Originally a +pre-processor definition was used to ensure the pre-processor found the correct +portmacro.h file for the port being used. That scheme was deprecated in favour +of setting the compiler's include path such that it found the correct +portmacro.h file - removing the need for the constant and allowing the +portmacro.h file to be located anywhere in relation to the port being used. The +definitions below remain in the code for backward compatibility only. New +projects should not use them. */ + +#ifdef OPEN_WATCOM_INDUSTRIAL_PC_PORT + #include "..\..\Source\portable\owatcom\16bitdos\pc\portmacro.h" + typedef void ( __interrupt __far *pxISR )(); +#endif + +#ifdef OPEN_WATCOM_FLASH_LITE_186_PORT + #include "..\..\Source\portable\owatcom\16bitdos\flsh186\portmacro.h" + typedef void ( __interrupt __far *pxISR )(); +#endif + +#ifdef GCC_MEGA_AVR + #include "../portable/GCC/ATMega323/portmacro.h" +#endif + +#ifdef IAR_MEGA_AVR + #include "../portable/IAR/ATMega323/portmacro.h" +#endif + +#ifdef MPLAB_PIC24_PORT + #include "../../Source/portable/MPLAB/PIC24_dsPIC/portmacro.h" +#endif + +#ifdef MPLAB_DSPIC_PORT + #include "../../Source/portable/MPLAB/PIC24_dsPIC/portmacro.h" +#endif + +#ifdef MPLAB_PIC18F_PORT + #include "../../Source/portable/MPLAB/PIC18F/portmacro.h" +#endif + +#ifdef MPLAB_PIC32MX_PORT + #include "../../Source/portable/MPLAB/PIC32MX/portmacro.h" +#endif + +#ifdef _FEDPICC + #include "libFreeRTOS/Include/portmacro.h" +#endif + +#ifdef SDCC_CYGNAL + #include "../../Source/portable/SDCC/Cygnal/portmacro.h" +#endif + +#ifdef GCC_ARM7 + #include "../../Source/portable/GCC/ARM7_LPC2000/portmacro.h" +#endif + +#ifdef GCC_ARM7_ECLIPSE + #include "portmacro.h" +#endif + +#ifdef ROWLEY_LPC23xx + #include "../../Source/portable/GCC/ARM7_LPC23xx/portmacro.h" +#endif + +#ifdef IAR_MSP430 + #include "..\..\Source\portable\IAR\MSP430\portmacro.h" +#endif + +#ifdef GCC_MSP430 + #include "../../Source/portable/GCC/MSP430F449/portmacro.h" +#endif + +#ifdef ROWLEY_MSP430 + #include "../../Source/portable/Rowley/MSP430F449/portmacro.h" +#endif + +#ifdef ARM7_LPC21xx_KEIL_RVDS + #include "..\..\Source\portable\RVDS\ARM7_LPC21xx\portmacro.h" +#endif + +#ifdef SAM7_GCC + #include "../../Source/portable/GCC/ARM7_AT91SAM7S/portmacro.h" +#endif + +#ifdef SAM7_IAR + #include "..\..\Source\portable\IAR\AtmelSAM7S64\portmacro.h" +#endif + +#ifdef SAM9XE_IAR + #include "..\..\Source\portable\IAR\AtmelSAM9XE\portmacro.h" +#endif + +#ifdef LPC2000_IAR + #include "..\..\Source\portable\IAR\LPC2000\portmacro.h" +#endif + +#ifdef STR71X_IAR + #include "..\..\Source\portable\IAR\STR71x\portmacro.h" +#endif + +#ifdef STR75X_IAR + #include "..\..\Source\portable\IAR\STR75x\portmacro.h" +#endif + +#ifdef STR75X_GCC + #include "..\..\Source\portable\GCC\STR75x\portmacro.h" +#endif + +#ifdef STR91X_IAR + #include "..\..\Source\portable\IAR\STR91x\portmacro.h" +#endif + +#ifdef GCC_H8S + #include "../../Source/portable/GCC/H8S2329/portmacro.h" +#endif + +#ifdef GCC_AT91FR40008 + #include "../../Source/portable/GCC/ARM7_AT91FR40008/portmacro.h" +#endif + +#ifdef RVDS_ARMCM3_LM3S102 + #include "../../Source/portable/RVDS/ARM_CM3/portmacro.h" +#endif + +#ifdef GCC_ARMCM3_LM3S102 + #include "../../Source/portable/GCC/ARM_CM3/portmacro.h" +#endif + +#ifdef GCC_ARMCM3 + #include "../../Source/portable/GCC/ARM_CM3/portmacro.h" +#endif + +#ifdef IAR_ARM_CM3 + #include "../../Source/portable/IAR/ARM_CM3/portmacro.h" +#endif + +#ifdef IAR_ARMCM3_LM + #include "../../Source/portable/IAR/ARM_CM3/portmacro.h" +#endif + +#ifdef HCS12_CODE_WARRIOR + #include "../../Source/portable/CodeWarrior/HCS12/portmacro.h" +#endif + +#ifdef MICROBLAZE_GCC + #include "../../Source/portable/GCC/MicroBlaze/portmacro.h" +#endif + +#ifdef TERN_EE + #include "..\..\Source\portable\Paradigm\Tern_EE\small\portmacro.h" +#endif + +#ifdef GCC_HCS12 + #include "../../Source/portable/GCC/HCS12/portmacro.h" +#endif + +#ifdef GCC_MCF5235 + #include "../../Source/portable/GCC/MCF5235/portmacro.h" +#endif + +#ifdef COLDFIRE_V2_GCC + #include "../../../Source/portable/GCC/ColdFire_V2/portmacro.h" +#endif + +#ifdef COLDFIRE_V2_CODEWARRIOR + #include "../../Source/portable/CodeWarrior/ColdFire_V2/portmacro.h" +#endif + +#ifdef GCC_PPC405 + #include "../../Source/portable/GCC/PPC405_Xilinx/portmacro.h" +#endif + +#ifdef GCC_PPC440 + #include "../../Source/portable/GCC/PPC440_Xilinx/portmacro.h" +#endif + +#ifdef _16FX_SOFTUNE + #include "..\..\Source\portable\Softune\MB96340\portmacro.h" +#endif + +#ifdef BCC_INDUSTRIAL_PC_PORT + /* A short file name has to be used in place of the normal + FreeRTOSConfig.h when using the Borland compiler. */ + #include "frconfig.h" + #include "..\portable\BCC\16BitDOS\PC\prtmacro.h" + typedef void ( __interrupt __far *pxISR )(); +#endif + +#ifdef BCC_FLASH_LITE_186_PORT + /* A short file name has to be used in place of the normal + FreeRTOSConfig.h when using the Borland compiler. */ + #include "frconfig.h" + #include "..\portable\BCC\16BitDOS\flsh186\prtmacro.h" + typedef void ( __interrupt __far *pxISR )(); +#endif + +#ifdef __GNUC__ + #ifdef __AVR32_AVR32A__ + #include "portmacro.h" + #endif +#endif + +#ifdef __ICCAVR32__ + #ifdef __CORE__ + #if __CORE__ == __AVR32A__ + #include "portmacro.h" + #endif + #endif +#endif + +#ifdef __91467D + #include "portmacro.h" +#endif + +#ifdef __96340 + #include "portmacro.h" +#endif + + +#ifdef __IAR_V850ES_Fx3__ + #include "../../Source/portable/IAR/V850ES/portmacro.h" +#endif + +#ifdef __IAR_V850ES_Jx3__ + #include "../../Source/portable/IAR/V850ES/portmacro.h" +#endif + +#ifdef __IAR_V850ES_Jx3_L__ + #include "../../Source/portable/IAR/V850ES/portmacro.h" +#endif + +#ifdef __IAR_V850ES_Jx2__ + #include "../../Source/portable/IAR/V850ES/portmacro.h" +#endif + +#ifdef __IAR_V850ES_Hx2__ + #include "../../Source/portable/IAR/V850ES/portmacro.h" +#endif + +#ifdef __IAR_78K0R_Kx3__ + #include "../../Source/portable/IAR/78K0R/portmacro.h" +#endif + +#ifdef __IAR_78K0R_Kx3L__ + #include "../../Source/portable/IAR/78K0R/portmacro.h" +#endif + +#endif /* DEPRECATED_DEFINITIONS_H */ + diff --git a/rtos/freertos/abstraction_layer_freertos/include/event_groups.h b/rtos/freertos/abstraction_layer_freertos/include/event_groups.h new file mode 100644 index 00000000..70989b0e --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/include/event_groups.h @@ -0,0 +1,757 @@ +/* + * FreeRTOS Kernel V10.3.0 + * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * + * http://www.FreeRTOS.org + * http://aws.amazon.com/freertos + * + * 1 tab == 4 spaces! + */ + +#ifndef EVENT_GROUPS_H +#define EVENT_GROUPS_H + +#ifndef INC_FREERTOS_H + #error "include FreeRTOS.h" must appear in source files before "include event_groups.h" +#endif + +/* FreeRTOS includes. */ +#include "timers.h" + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * An event group is a collection of bits to which an application can assign a + * meaning. For example, an application may create an event group to convey + * the status of various CAN bus related events in which bit 0 might mean "A CAN + * message has been received and is ready for processing", bit 1 might mean "The + * application has queued a message that is ready for sending onto the CAN + * network", and bit 2 might mean "It is time to send a SYNC message onto the + * CAN network" etc. A task can then test the bit values to see which events + * are active, and optionally enter the Blocked state to wait for a specified + * bit or a group of specified bits to be active. To continue the CAN bus + * example, a CAN controlling task can enter the Blocked state (and therefore + * not consume any processing time) until either bit 0, bit 1 or bit 2 are + * active, at which time the bit that was actually active would inform the task + * which action it had to take (process a received message, send a message, or + * send a SYNC). + * + * The event groups implementation contains intelligence to avoid race + * conditions that would otherwise occur were an application to use a simple + * variable for the same purpose. This is particularly important with respect + * to when a bit within an event group is to be cleared, and when bits have to + * be set and then tested atomically - as is the case where event groups are + * used to create a synchronisation point between multiple tasks (a + * 'rendezvous'). + * + * \defgroup EventGroup + */ + + + +/** + * event_groups.h + * + * Type by which event groups are referenced. For example, a call to + * xEventGroupCreate() returns an EventGroupHandle_t variable that can then + * be used as a parameter to other event group functions. + * + * \defgroup EventGroupHandle_t EventGroupHandle_t + * \ingroup EventGroup + */ +struct EventGroupDef_t; +typedef struct EventGroupDef_t * EventGroupHandle_t; + +/* + * The type that holds event bits always matches TickType_t - therefore the + * number of bits it holds is set by configUSE_16_BIT_TICKS (16 bits if set to 1, + * 32 bits if set to 0. + * + * \defgroup EventBits_t EventBits_t + * \ingroup EventGroup + */ +typedef TickType_t EventBits_t; + +/** + * event_groups.h + *
+ EventGroupHandle_t xEventGroupCreate( void );
+ 
+ * + * Create a new event group. + * + * Internally, within the FreeRTOS implementation, event groups use a [small] + * block of memory, in which the event group's structure is stored. If an event + * groups is created using xEventGropuCreate() then the required memory is + * automatically dynamically allocated inside the xEventGroupCreate() function. + * (see http://www.freertos.org/a00111.html). If an event group is created + * using xEventGropuCreateStatic() then the application writer must instead + * provide the memory that will get used by the event group. + * xEventGroupCreateStatic() therefore allows an event group to be created + * without using any dynamic memory allocation. + * + * Although event groups are not related to ticks, for internal implementation + * reasons the number of bits available for use in an event group is dependent + * on the configUSE_16_BIT_TICKS setting in FreeRTOSConfig.h. If + * configUSE_16_BIT_TICKS is 1 then each event group contains 8 usable bits (bit + * 0 to bit 7). If configUSE_16_BIT_TICKS is set to 0 then each event group has + * 24 usable bits (bit 0 to bit 23). The EventBits_t type is used to store + * event bits within an event group. + * + * @return If the event group was created then a handle to the event group is + * returned. If there was insufficient FreeRTOS heap available to create the + * event group then NULL is returned. See http://www.freertos.org/a00111.html + * + * Example usage: +
+	// Declare a variable to hold the created event group.
+	EventGroupHandle_t xCreatedEventGroup;
+
+	// Attempt to create the event group.
+	xCreatedEventGroup = xEventGroupCreate();
+
+	// Was the event group created successfully?
+	if( xCreatedEventGroup == NULL )
+	{
+		// The event group was not created because there was insufficient
+		// FreeRTOS heap available.
+	}
+	else
+	{
+		// The event group was created.
+	}
+   
+ * \defgroup xEventGroupCreate xEventGroupCreate + * \ingroup EventGroup + */ +#if( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) + EventGroupHandle_t xEventGroupCreate( void ) PRIVILEGED_FUNCTION; +#endif + +/** + * event_groups.h + *
+ EventGroupHandle_t xEventGroupCreateStatic( EventGroupHandle_t * pxEventGroupBuffer );
+ 
+ * + * Create a new event group. + * + * Internally, within the FreeRTOS implementation, event groups use a [small] + * block of memory, in which the event group's structure is stored. If an event + * groups is created using xEventGropuCreate() then the required memory is + * automatically dynamically allocated inside the xEventGroupCreate() function. + * (see http://www.freertos.org/a00111.html). If an event group is created + * using xEventGropuCreateStatic() then the application writer must instead + * provide the memory that will get used by the event group. + * xEventGroupCreateStatic() therefore allows an event group to be created + * without using any dynamic memory allocation. + * + * Although event groups are not related to ticks, for internal implementation + * reasons the number of bits available for use in an event group is dependent + * on the configUSE_16_BIT_TICKS setting in FreeRTOSConfig.h. If + * configUSE_16_BIT_TICKS is 1 then each event group contains 8 usable bits (bit + * 0 to bit 7). If configUSE_16_BIT_TICKS is set to 0 then each event group has + * 24 usable bits (bit 0 to bit 23). The EventBits_t type is used to store + * event bits within an event group. + * + * @param pxEventGroupBuffer pxEventGroupBuffer must point to a variable of type + * StaticEventGroup_t, which will be then be used to hold the event group's data + * structures, removing the need for the memory to be allocated dynamically. + * + * @return If the event group was created then a handle to the event group is + * returned. If pxEventGroupBuffer was NULL then NULL is returned. + * + * Example usage: +
+	// StaticEventGroup_t is a publicly accessible structure that has the same
+	// size and alignment requirements as the real event group structure.  It is
+	// provided as a mechanism for applications to know the size of the event
+	// group (which is dependent on the architecture and configuration file
+	// settings) without breaking the strict data hiding policy by exposing the
+	// real event group internals.  This StaticEventGroup_t variable is passed
+	// into the xSemaphoreCreateEventGroupStatic() function and is used to store
+	// the event group's data structures
+	StaticEventGroup_t xEventGroupBuffer;
+
+	// Create the event group without dynamically allocating any memory.
+	xEventGroup = xEventGroupCreateStatic( &xEventGroupBuffer );
+   
+ */ +#if( configSUPPORT_STATIC_ALLOCATION == 1 ) + EventGroupHandle_t xEventGroupCreateStatic( StaticEventGroup_t *pxEventGroupBuffer ) PRIVILEGED_FUNCTION; +#endif + +/** + * event_groups.h + *
+	EventBits_t xEventGroupWaitBits( 	EventGroupHandle_t xEventGroup,
+										const EventBits_t uxBitsToWaitFor,
+										const BaseType_t xClearOnExit,
+										const BaseType_t xWaitForAllBits,
+										const TickType_t xTicksToWait );
+ 
+ * + * [Potentially] block to wait for one or more bits to be set within a + * previously created event group. + * + * This function cannot be called from an interrupt. + * + * @param xEventGroup The event group in which the bits are being tested. The + * event group must have previously been created using a call to + * xEventGroupCreate(). + * + * @param uxBitsToWaitFor A bitwise value that indicates the bit or bits to test + * inside the event group. For example, to wait for bit 0 and/or bit 2 set + * uxBitsToWaitFor to 0x05. To wait for bits 0 and/or bit 1 and/or bit 2 set + * uxBitsToWaitFor to 0x07. Etc. + * + * @param xClearOnExit If xClearOnExit is set to pdTRUE then any bits within + * uxBitsToWaitFor that are set within the event group will be cleared before + * xEventGroupWaitBits() returns if the wait condition was met (if the function + * returns for a reason other than a timeout). If xClearOnExit is set to + * pdFALSE then the bits set in the event group are not altered when the call to + * xEventGroupWaitBits() returns. + * + * @param xWaitForAllBits If xWaitForAllBits is set to pdTRUE then + * xEventGroupWaitBits() will return when either all the bits in uxBitsToWaitFor + * are set or the specified block time expires. If xWaitForAllBits is set to + * pdFALSE then xEventGroupWaitBits() will return when any one of the bits set + * in uxBitsToWaitFor is set or the specified block time expires. The block + * time is specified by the xTicksToWait parameter. + * + * @param xTicksToWait The maximum amount of time (specified in 'ticks') to wait + * for one/all (depending on the xWaitForAllBits value) of the bits specified by + * uxBitsToWaitFor to become set. + * + * @return The value of the event group at the time either the bits being waited + * for became set, or the block time expired. Test the return value to know + * which bits were set. If xEventGroupWaitBits() returned because its timeout + * expired then not all the bits being waited for will be set. If + * xEventGroupWaitBits() returned because the bits it was waiting for were set + * then the returned value is the event group value before any bits were + * automatically cleared in the case that xClearOnExit parameter was set to + * pdTRUE. + * + * Example usage: +
+   #define BIT_0	( 1 << 0 )
+   #define BIT_4	( 1 << 4 )
+
+   void aFunction( EventGroupHandle_t xEventGroup )
+   {
+   EventBits_t uxBits;
+   const TickType_t xTicksToWait = 100 / portTICK_PERIOD_MS;
+
+		// Wait a maximum of 100ms for either bit 0 or bit 4 to be set within
+		// the event group.  Clear the bits before exiting.
+		uxBits = xEventGroupWaitBits(
+					xEventGroup,	// The event group being tested.
+					BIT_0 | BIT_4,	// The bits within the event group to wait for.
+					pdTRUE,			// BIT_0 and BIT_4 should be cleared before returning.
+					pdFALSE,		// Don't wait for both bits, either bit will do.
+					xTicksToWait );	// Wait a maximum of 100ms for either bit to be set.
+
+		if( ( uxBits & ( BIT_0 | BIT_4 ) ) == ( BIT_0 | BIT_4 ) )
+		{
+			// xEventGroupWaitBits() returned because both bits were set.
+		}
+		else if( ( uxBits & BIT_0 ) != 0 )
+		{
+			// xEventGroupWaitBits() returned because just BIT_0 was set.
+		}
+		else if( ( uxBits & BIT_4 ) != 0 )
+		{
+			// xEventGroupWaitBits() returned because just BIT_4 was set.
+		}
+		else
+		{
+			// xEventGroupWaitBits() returned because xTicksToWait ticks passed
+			// without either BIT_0 or BIT_4 becoming set.
+		}
+   }
+   
+ * \defgroup xEventGroupWaitBits xEventGroupWaitBits + * \ingroup EventGroup + */ +EventBits_t xEventGroupWaitBits( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToWaitFor, const BaseType_t xClearOnExit, const BaseType_t xWaitForAllBits, TickType_t xTicksToWait ) PRIVILEGED_FUNCTION; + +/** + * event_groups.h + *
+	EventBits_t xEventGroupClearBits( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToClear );
+ 
+ * + * Clear bits within an event group. This function cannot be called from an + * interrupt. + * + * @param xEventGroup The event group in which the bits are to be cleared. + * + * @param uxBitsToClear A bitwise value that indicates the bit or bits to clear + * in the event group. For example, to clear bit 3 only, set uxBitsToClear to + * 0x08. To clear bit 3 and bit 0 set uxBitsToClear to 0x09. + * + * @return The value of the event group before the specified bits were cleared. + * + * Example usage: +
+   #define BIT_0	( 1 << 0 )
+   #define BIT_4	( 1 << 4 )
+
+   void aFunction( EventGroupHandle_t xEventGroup )
+   {
+   EventBits_t uxBits;
+
+		// Clear bit 0 and bit 4 in xEventGroup.
+		uxBits = xEventGroupClearBits(
+								xEventGroup,	// The event group being updated.
+								BIT_0 | BIT_4 );// The bits being cleared.
+
+		if( ( uxBits & ( BIT_0 | BIT_4 ) ) == ( BIT_0 | BIT_4 ) )
+		{
+			// Both bit 0 and bit 4 were set before xEventGroupClearBits() was
+			// called.  Both will now be clear (not set).
+		}
+		else if( ( uxBits & BIT_0 ) != 0 )
+		{
+			// Bit 0 was set before xEventGroupClearBits() was called.  It will
+			// now be clear.
+		}
+		else if( ( uxBits & BIT_4 ) != 0 )
+		{
+			// Bit 4 was set before xEventGroupClearBits() was called.  It will
+			// now be clear.
+		}
+		else
+		{
+			// Neither bit 0 nor bit 4 were set in the first place.
+		}
+   }
+   
+ * \defgroup xEventGroupClearBits xEventGroupClearBits + * \ingroup EventGroup + */ +EventBits_t xEventGroupClearBits( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToClear ) PRIVILEGED_FUNCTION; + +/** + * event_groups.h + *
+	BaseType_t xEventGroupClearBitsFromISR( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToSet );
+ 
+ * + * A version of xEventGroupClearBits() that can be called from an interrupt. + * + * Setting bits in an event group is not a deterministic operation because there + * are an unknown number of tasks that may be waiting for the bit or bits being + * set. FreeRTOS does not allow nondeterministic operations to be performed + * while interrupts are disabled, so protects event groups that are accessed + * from tasks by suspending the scheduler rather than disabling interrupts. As + * a result event groups cannot be accessed directly from an interrupt service + * routine. Therefore xEventGroupClearBitsFromISR() sends a message to the + * timer task to have the clear operation performed in the context of the timer + * task. + * + * @param xEventGroup The event group in which the bits are to be cleared. + * + * @param uxBitsToClear A bitwise value that indicates the bit or bits to clear. + * For example, to clear bit 3 only, set uxBitsToClear to 0x08. To clear bit 3 + * and bit 0 set uxBitsToClear to 0x09. + * + * @return If the request to execute the function was posted successfully then + * pdPASS is returned, otherwise pdFALSE is returned. pdFALSE will be returned + * if the timer service queue was full. + * + * Example usage: +
+   #define BIT_0	( 1 << 0 )
+   #define BIT_4	( 1 << 4 )
+
+   // An event group which it is assumed has already been created by a call to
+   // xEventGroupCreate().
+   EventGroupHandle_t xEventGroup;
+
+   void anInterruptHandler( void )
+   {
+		// Clear bit 0 and bit 4 in xEventGroup.
+		xResult = xEventGroupClearBitsFromISR(
+							xEventGroup,	 // The event group being updated.
+							BIT_0 | BIT_4 ); // The bits being set.
+
+		if( xResult == pdPASS )
+		{
+			// The message was posted successfully.
+		}
+  }
+   
+ * \defgroup xEventGroupClearBitsFromISR xEventGroupClearBitsFromISR + * \ingroup EventGroup + */ +#if( configUSE_TRACE_FACILITY == 1 ) + BaseType_t xEventGroupClearBitsFromISR( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToClear ) PRIVILEGED_FUNCTION; +#else + #define xEventGroupClearBitsFromISR( xEventGroup, uxBitsToClear ) xTimerPendFunctionCallFromISR( vEventGroupClearBitsCallback, ( void * ) xEventGroup, ( uint32_t ) uxBitsToClear, NULL ) +#endif + +/** + * event_groups.h + *
+	EventBits_t xEventGroupSetBits( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToSet );
+ 
+ * + * Set bits within an event group. + * This function cannot be called from an interrupt. xEventGroupSetBitsFromISR() + * is a version that can be called from an interrupt. + * + * Setting bits in an event group will automatically unblock tasks that are + * blocked waiting for the bits. + * + * @param xEventGroup The event group in which the bits are to be set. + * + * @param uxBitsToSet A bitwise value that indicates the bit or bits to set. + * For example, to set bit 3 only, set uxBitsToSet to 0x08. To set bit 3 + * and bit 0 set uxBitsToSet to 0x09. + * + * @return The value of the event group at the time the call to + * xEventGroupSetBits() returns. There are two reasons why the returned value + * might have the bits specified by the uxBitsToSet parameter cleared. First, + * if setting a bit results in a task that was waiting for the bit leaving the + * blocked state then it is possible the bit will be cleared automatically + * (see the xClearBitOnExit parameter of xEventGroupWaitBits()). Second, any + * unblocked (or otherwise Ready state) task that has a priority above that of + * the task that called xEventGroupSetBits() will execute and may change the + * event group value before the call to xEventGroupSetBits() returns. + * + * Example usage: +
+   #define BIT_0	( 1 << 0 )
+   #define BIT_4	( 1 << 4 )
+
+   void aFunction( EventGroupHandle_t xEventGroup )
+   {
+   EventBits_t uxBits;
+
+		// Set bit 0 and bit 4 in xEventGroup.
+		uxBits = xEventGroupSetBits(
+							xEventGroup,	// The event group being updated.
+							BIT_0 | BIT_4 );// The bits being set.
+
+		if( ( uxBits & ( BIT_0 | BIT_4 ) ) == ( BIT_0 | BIT_4 ) )
+		{
+			// Both bit 0 and bit 4 remained set when the function returned.
+		}
+		else if( ( uxBits & BIT_0 ) != 0 )
+		{
+			// Bit 0 remained set when the function returned, but bit 4 was
+			// cleared.  It might be that bit 4 was cleared automatically as a
+			// task that was waiting for bit 4 was removed from the Blocked
+			// state.
+		}
+		else if( ( uxBits & BIT_4 ) != 0 )
+		{
+			// Bit 4 remained set when the function returned, but bit 0 was
+			// cleared.  It might be that bit 0 was cleared automatically as a
+			// task that was waiting for bit 0 was removed from the Blocked
+			// state.
+		}
+		else
+		{
+			// Neither bit 0 nor bit 4 remained set.  It might be that a task
+			// was waiting for both of the bits to be set, and the bits were
+			// cleared as the task left the Blocked state.
+		}
+   }
+   
+ * \defgroup xEventGroupSetBits xEventGroupSetBits + * \ingroup EventGroup + */ +EventBits_t xEventGroupSetBits( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToSet ) PRIVILEGED_FUNCTION; + +/** + * event_groups.h + *
+	BaseType_t xEventGroupSetBitsFromISR( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToSet, BaseType_t *pxHigherPriorityTaskWoken );
+ 
+ * + * A version of xEventGroupSetBits() that can be called from an interrupt. + * + * Setting bits in an event group is not a deterministic operation because there + * are an unknown number of tasks that may be waiting for the bit or bits being + * set. FreeRTOS does not allow nondeterministic operations to be performed in + * interrupts or from critical sections. Therefore xEventGroupSetBitsFromISR() + * sends a message to the timer task to have the set operation performed in the + * context of the timer task - where a scheduler lock is used in place of a + * critical section. + * + * @param xEventGroup The event group in which the bits are to be set. + * + * @param uxBitsToSet A bitwise value that indicates the bit or bits to set. + * For example, to set bit 3 only, set uxBitsToSet to 0x08. To set bit 3 + * and bit 0 set uxBitsToSet to 0x09. + * + * @param pxHigherPriorityTaskWoken As mentioned above, calling this function + * will result in a message being sent to the timer daemon task. If the + * priority of the timer daemon task is higher than the priority of the + * currently running task (the task the interrupt interrupted) then + * *pxHigherPriorityTaskWoken will be set to pdTRUE by + * xEventGroupSetBitsFromISR(), indicating that a context switch should be + * requested before the interrupt exits. For that reason + * *pxHigherPriorityTaskWoken must be initialised to pdFALSE. See the + * example code below. + * + * @return If the request to execute the function was posted successfully then + * pdPASS is returned, otherwise pdFALSE is returned. pdFALSE will be returned + * if the timer service queue was full. + * + * Example usage: +
+   #define BIT_0	( 1 << 0 )
+   #define BIT_4	( 1 << 4 )
+
+   // An event group which it is assumed has already been created by a call to
+   // xEventGroupCreate().
+   EventGroupHandle_t xEventGroup;
+
+   void anInterruptHandler( void )
+   {
+   BaseType_t xHigherPriorityTaskWoken, xResult;
+
+		// xHigherPriorityTaskWoken must be initialised to pdFALSE.
+		xHigherPriorityTaskWoken = pdFALSE;
+
+		// Set bit 0 and bit 4 in xEventGroup.
+		xResult = xEventGroupSetBitsFromISR(
+							xEventGroup,	// The event group being updated.
+							BIT_0 | BIT_4   // The bits being set.
+							&xHigherPriorityTaskWoken );
+
+		// Was the message posted successfully?
+		if( xResult == pdPASS )
+		{
+			// If xHigherPriorityTaskWoken is now set to pdTRUE then a context
+			// switch should be requested.  The macro used is port specific and
+			// will be either portYIELD_FROM_ISR() or portEND_SWITCHING_ISR() -
+			// refer to the documentation page for the port being used.
+			portYIELD_FROM_ISR( xHigherPriorityTaskWoken );
+		}
+  }
+   
+ * \defgroup xEventGroupSetBitsFromISR xEventGroupSetBitsFromISR + * \ingroup EventGroup + */ +#if( configUSE_TRACE_FACILITY == 1 ) + BaseType_t xEventGroupSetBitsFromISR( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToSet, BaseType_t *pxHigherPriorityTaskWoken ) PRIVILEGED_FUNCTION; +#else + #define xEventGroupSetBitsFromISR( xEventGroup, uxBitsToSet, pxHigherPriorityTaskWoken ) xTimerPendFunctionCallFromISR( vEventGroupSetBitsCallback, ( void * ) xEventGroup, ( uint32_t ) uxBitsToSet, pxHigherPriorityTaskWoken ) +#endif + +/** + * event_groups.h + *
+	EventBits_t xEventGroupSync(	EventGroupHandle_t xEventGroup,
+									const EventBits_t uxBitsToSet,
+									const EventBits_t uxBitsToWaitFor,
+									TickType_t xTicksToWait );
+ 
+ * + * Atomically set bits within an event group, then wait for a combination of + * bits to be set within the same event group. This functionality is typically + * used to synchronise multiple tasks, where each task has to wait for the other + * tasks to reach a synchronisation point before proceeding. + * + * This function cannot be used from an interrupt. + * + * The function will return before its block time expires if the bits specified + * by the uxBitsToWait parameter are set, or become set within that time. In + * this case all the bits specified by uxBitsToWait will be automatically + * cleared before the function returns. + * + * @param xEventGroup The event group in which the bits are being tested. The + * event group must have previously been created using a call to + * xEventGroupCreate(). + * + * @param uxBitsToSet The bits to set in the event group before determining + * if, and possibly waiting for, all the bits specified by the uxBitsToWait + * parameter are set. + * + * @param uxBitsToWaitFor A bitwise value that indicates the bit or bits to test + * inside the event group. For example, to wait for bit 0 and bit 2 set + * uxBitsToWaitFor to 0x05. To wait for bits 0 and bit 1 and bit 2 set + * uxBitsToWaitFor to 0x07. Etc. + * + * @param xTicksToWait The maximum amount of time (specified in 'ticks') to wait + * for all of the bits specified by uxBitsToWaitFor to become set. + * + * @return The value of the event group at the time either the bits being waited + * for became set, or the block time expired. Test the return value to know + * which bits were set. If xEventGroupSync() returned because its timeout + * expired then not all the bits being waited for will be set. If + * xEventGroupSync() returned because all the bits it was waiting for were + * set then the returned value is the event group value before any bits were + * automatically cleared. + * + * Example usage: +
+ // Bits used by the three tasks.
+ #define TASK_0_BIT		( 1 << 0 )
+ #define TASK_1_BIT		( 1 << 1 )
+ #define TASK_2_BIT		( 1 << 2 )
+
+ #define ALL_SYNC_BITS ( TASK_0_BIT | TASK_1_BIT | TASK_2_BIT )
+
+ // Use an event group to synchronise three tasks.  It is assumed this event
+ // group has already been created elsewhere.
+ EventGroupHandle_t xEventBits;
+
+ void vTask0( void *pvParameters )
+ {
+ EventBits_t uxReturn;
+ TickType_t xTicksToWait = 100 / portTICK_PERIOD_MS;
+
+	 for( ;; )
+	 {
+		// Perform task functionality here.
+
+		// Set bit 0 in the event flag to note this task has reached the
+		// sync point.  The other two tasks will set the other two bits defined
+		// by ALL_SYNC_BITS.  All three tasks have reached the synchronisation
+		// point when all the ALL_SYNC_BITS are set.  Wait a maximum of 100ms
+		// for this to happen.
+		uxReturn = xEventGroupSync( xEventBits, TASK_0_BIT, ALL_SYNC_BITS, xTicksToWait );
+
+		if( ( uxReturn & ALL_SYNC_BITS ) == ALL_SYNC_BITS )
+		{
+			// All three tasks reached the synchronisation point before the call
+			// to xEventGroupSync() timed out.
+		}
+	}
+ }
+
+ void vTask1( void *pvParameters )
+ {
+	 for( ;; )
+	 {
+		// Perform task functionality here.
+
+		// Set bit 1 in the event flag to note this task has reached the
+		// synchronisation point.  The other two tasks will set the other two
+		// bits defined by ALL_SYNC_BITS.  All three tasks have reached the
+		// synchronisation point when all the ALL_SYNC_BITS are set.  Wait
+		// indefinitely for this to happen.
+		xEventGroupSync( xEventBits, TASK_1_BIT, ALL_SYNC_BITS, portMAX_DELAY );
+
+		// xEventGroupSync() was called with an indefinite block time, so
+		// this task will only reach here if the syncrhonisation was made by all
+		// three tasks, so there is no need to test the return value.
+	 }
+ }
+
+ void vTask2( void *pvParameters )
+ {
+	 for( ;; )
+	 {
+		// Perform task functionality here.
+
+		// Set bit 2 in the event flag to note this task has reached the
+		// synchronisation point.  The other two tasks will set the other two
+		// bits defined by ALL_SYNC_BITS.  All three tasks have reached the
+		// synchronisation point when all the ALL_SYNC_BITS are set.  Wait
+		// indefinitely for this to happen.
+		xEventGroupSync( xEventBits, TASK_2_BIT, ALL_SYNC_BITS, portMAX_DELAY );
+
+		// xEventGroupSync() was called with an indefinite block time, so
+		// this task will only reach here if the syncrhonisation was made by all
+		// three tasks, so there is no need to test the return value.
+	}
+ }
+
+ 
+ * \defgroup xEventGroupSync xEventGroupSync + * \ingroup EventGroup + */ +EventBits_t xEventGroupSync( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToSet, const EventBits_t uxBitsToWaitFor, TickType_t xTicksToWait ) PRIVILEGED_FUNCTION; + + +/** + * event_groups.h + *
+	EventBits_t xEventGroupGetBits( EventGroupHandle_t xEventGroup );
+ 
+ * + * Returns the current value of the bits in an event group. This function + * cannot be used from an interrupt. + * + * @param xEventGroup The event group being queried. + * + * @return The event group bits at the time xEventGroupGetBits() was called. + * + * \defgroup xEventGroupGetBits xEventGroupGetBits + * \ingroup EventGroup + */ +#define xEventGroupGetBits( xEventGroup ) xEventGroupClearBits( xEventGroup, 0 ) + +/** + * event_groups.h + *
+	EventBits_t xEventGroupGetBitsFromISR( EventGroupHandle_t xEventGroup );
+ 
+ * + * A version of xEventGroupGetBits() that can be called from an ISR. + * + * @param xEventGroup The event group being queried. + * + * @return The event group bits at the time xEventGroupGetBitsFromISR() was called. + * + * \defgroup xEventGroupGetBitsFromISR xEventGroupGetBitsFromISR + * \ingroup EventGroup + */ +EventBits_t xEventGroupGetBitsFromISR( EventGroupHandle_t xEventGroup ) PRIVILEGED_FUNCTION; + +/** + * event_groups.h + *
+	void xEventGroupDelete( EventGroupHandle_t xEventGroup );
+ 
+ * + * Delete an event group that was previously created by a call to + * xEventGroupCreate(). Tasks that are blocked on the event group will be + * unblocked and obtain 0 as the event group's value. + * + * @param xEventGroup The event group being deleted. + */ +void vEventGroupDelete( EventGroupHandle_t xEventGroup ) PRIVILEGED_FUNCTION; + +/* For internal use only. */ +void vEventGroupSetBitsCallback( void *pvEventGroup, const uint32_t ulBitsToSet ) PRIVILEGED_FUNCTION; +void vEventGroupClearBitsCallback( void *pvEventGroup, const uint32_t ulBitsToClear ) PRIVILEGED_FUNCTION; + + +#if (configUSE_TRACE_FACILITY == 1) + UBaseType_t uxEventGroupGetNumber( void* xEventGroup ) PRIVILEGED_FUNCTION; + void vEventGroupSetNumber( void* xEventGroup, UBaseType_t uxEventGroupNumber ) PRIVILEGED_FUNCTION; +#endif + +#ifdef __cplusplus +} +#endif + +#endif /* EVENT_GROUPS_H */ + + diff --git a/rtos/freertos/abstraction_layer_freertos/include/list.h b/rtos/freertos/abstraction_layer_freertos/include/list.h new file mode 100644 index 00000000..51322f21 --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/include/list.h @@ -0,0 +1,412 @@ +/* + * FreeRTOS Kernel V10.3.0 + * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * + * http://www.FreeRTOS.org + * http://aws.amazon.com/freertos + * + * 1 tab == 4 spaces! + */ + +/* + * This is the list implementation used by the scheduler. While it is tailored + * heavily for the schedulers needs, it is also available for use by + * application code. + * + * list_ts can only store pointers to list_item_ts. Each ListItem_t contains a + * numeric value (xItemValue). Most of the time the lists are sorted in + * descending item value order. + * + * Lists are created already containing one list item. The value of this + * item is the maximum possible that can be stored, it is therefore always at + * the end of the list and acts as a marker. The list member pxHead always + * points to this marker - even though it is at the tail of the list. This + * is because the tail contains a wrap back pointer to the true head of + * the list. + * + * In addition to it's value, each list item contains a pointer to the next + * item in the list (pxNext), a pointer to the list it is in (pxContainer) + * and a pointer to back to the object that contains it. These later two + * pointers are included for efficiency of list manipulation. There is + * effectively a two way link between the object containing the list item and + * the list item itself. + * + * + * \page ListIntroduction List Implementation + * \ingroup FreeRTOSIntro + */ + +#ifndef INC_FREERTOS_H + #error FreeRTOS.h must be included before list.h +#endif + +#ifndef LIST_H +#define LIST_H + +/* + * The list structure members are modified from within interrupts, and therefore + * by rights should be declared volatile. However, they are only modified in a + * functionally atomic way (within critical sections of with the scheduler + * suspended) and are either passed by reference into a function or indexed via + * a volatile variable. Therefore, in all use cases tested so far, the volatile + * qualifier can be omitted in order to provide a moderate performance + * improvement without adversely affecting functional behaviour. The assembly + * instructions generated by the IAR, ARM and GCC compilers when the respective + * compiler's options were set for maximum optimisation has been inspected and + * deemed to be as intended. That said, as compiler technology advances, and + * especially if aggressive cross module optimisation is used (a use case that + * has not been exercised to any great extend) then it is feasible that the + * volatile qualifier will be needed for correct optimisation. It is expected + * that a compiler removing essential code because, without the volatile + * qualifier on the list structure members and with aggressive cross module + * optimisation, the compiler deemed the code unnecessary will result in + * complete and obvious failure of the scheduler. If this is ever experienced + * then the volatile qualifier can be inserted in the relevant places within the + * list structures by simply defining configLIST_VOLATILE to volatile in + * FreeRTOSConfig.h (as per the example at the bottom of this comment block). + * If configLIST_VOLATILE is not defined then the preprocessor directives below + * will simply #define configLIST_VOLATILE away completely. + * + * To use volatile list structure members then add the following line to + * FreeRTOSConfig.h (without the quotes): + * "#define configLIST_VOLATILE volatile" + */ +#ifndef configLIST_VOLATILE + #define configLIST_VOLATILE +#endif /* configSUPPORT_CROSS_MODULE_OPTIMISATION */ + +#ifdef __cplusplus +extern "C" { +#endif + +/* Macros that can be used to place known values within the list structures, +then check that the known values do not get corrupted during the execution of +the application. These may catch the list data structures being overwritten in +memory. They will not catch data errors caused by incorrect configuration or +use of FreeRTOS.*/ +#if( configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES == 0 ) + /* Define the macros to do nothing. */ + #define listFIRST_LIST_ITEM_INTEGRITY_CHECK_VALUE + #define listSECOND_LIST_ITEM_INTEGRITY_CHECK_VALUE + #define listFIRST_LIST_INTEGRITY_CHECK_VALUE + #define listSECOND_LIST_INTEGRITY_CHECK_VALUE + #define listSET_FIRST_LIST_ITEM_INTEGRITY_CHECK_VALUE( pxItem ) + #define listSET_SECOND_LIST_ITEM_INTEGRITY_CHECK_VALUE( pxItem ) + #define listSET_LIST_INTEGRITY_CHECK_1_VALUE( pxList ) + #define listSET_LIST_INTEGRITY_CHECK_2_VALUE( pxList ) + #define listTEST_LIST_ITEM_INTEGRITY( pxItem ) + #define listTEST_LIST_INTEGRITY( pxList ) +#else + /* Define macros that add new members into the list structures. */ + #define listFIRST_LIST_ITEM_INTEGRITY_CHECK_VALUE TickType_t xListItemIntegrityValue1; + #define listSECOND_LIST_ITEM_INTEGRITY_CHECK_VALUE TickType_t xListItemIntegrityValue2; + #define listFIRST_LIST_INTEGRITY_CHECK_VALUE TickType_t xListIntegrityValue1; + #define listSECOND_LIST_INTEGRITY_CHECK_VALUE TickType_t xListIntegrityValue2; + + /* Define macros that set the new structure members to known values. */ + #define listSET_FIRST_LIST_ITEM_INTEGRITY_CHECK_VALUE( pxItem ) ( pxItem )->xListItemIntegrityValue1 = pdINTEGRITY_CHECK_VALUE + #define listSET_SECOND_LIST_ITEM_INTEGRITY_CHECK_VALUE( pxItem ) ( pxItem )->xListItemIntegrityValue2 = pdINTEGRITY_CHECK_VALUE + #define listSET_LIST_INTEGRITY_CHECK_1_VALUE( pxList ) ( pxList )->xListIntegrityValue1 = pdINTEGRITY_CHECK_VALUE + #define listSET_LIST_INTEGRITY_CHECK_2_VALUE( pxList ) ( pxList )->xListIntegrityValue2 = pdINTEGRITY_CHECK_VALUE + + /* Define macros that will assert if one of the structure members does not + contain its expected value. */ + #define listTEST_LIST_ITEM_INTEGRITY( pxItem ) configASSERT( ( ( pxItem )->xListItemIntegrityValue1 == pdINTEGRITY_CHECK_VALUE ) && ( ( pxItem )->xListItemIntegrityValue2 == pdINTEGRITY_CHECK_VALUE ) ) + #define listTEST_LIST_INTEGRITY( pxList ) configASSERT( ( ( pxList )->xListIntegrityValue1 == pdINTEGRITY_CHECK_VALUE ) && ( ( pxList )->xListIntegrityValue2 == pdINTEGRITY_CHECK_VALUE ) ) +#endif /* configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES */ + + +/* + * Definition of the only type of object that a list can contain. + */ +struct xLIST; +struct xLIST_ITEM +{ + listFIRST_LIST_ITEM_INTEGRITY_CHECK_VALUE /*< Set to a known value if configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES is set to 1. */ + configLIST_VOLATILE TickType_t xItemValue; /*< The value being listed. In most cases this is used to sort the list in descending order. */ + struct xLIST_ITEM * configLIST_VOLATILE pxNext; /*< Pointer to the next ListItem_t in the list. */ + struct xLIST_ITEM * configLIST_VOLATILE pxPrevious; /*< Pointer to the previous ListItem_t in the list. */ + void * pvOwner; /*< Pointer to the object (normally a TCB) that contains the list item. There is therefore a two way link between the object containing the list item and the list item itself. */ + struct xLIST * configLIST_VOLATILE pxContainer; /*< Pointer to the list in which this list item is placed (if any). */ + listSECOND_LIST_ITEM_INTEGRITY_CHECK_VALUE /*< Set to a known value if configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES is set to 1. */ +}; +typedef struct xLIST_ITEM ListItem_t; /* For some reason lint wants this as two separate definitions. */ + +struct xMINI_LIST_ITEM +{ + listFIRST_LIST_ITEM_INTEGRITY_CHECK_VALUE /*< Set to a known value if configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES is set to 1. */ + configLIST_VOLATILE TickType_t xItemValue; + struct xLIST_ITEM * configLIST_VOLATILE pxNext; + struct xLIST_ITEM * configLIST_VOLATILE pxPrevious; +}; +typedef struct xMINI_LIST_ITEM MiniListItem_t; + +/* + * Definition of the type of queue used by the scheduler. + */ +typedef struct xLIST +{ + listFIRST_LIST_INTEGRITY_CHECK_VALUE /*< Set to a known value if configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES is set to 1. */ + volatile UBaseType_t uxNumberOfItems; + ListItem_t * configLIST_VOLATILE pxIndex; /*< Used to walk through the list. Points to the last item returned by a call to listGET_OWNER_OF_NEXT_ENTRY (). */ + MiniListItem_t xListEnd; /*< List item that contains the maximum possible item value meaning it is always at the end of the list and is therefore used as a marker. */ + listSECOND_LIST_INTEGRITY_CHECK_VALUE /*< Set to a known value if configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES is set to 1. */ +} List_t; + +/* + * Access macro to set the owner of a list item. The owner of a list item + * is the object (usually a TCB) that contains the list item. + * + * \page listSET_LIST_ITEM_OWNER listSET_LIST_ITEM_OWNER + * \ingroup LinkedList + */ +#define listSET_LIST_ITEM_OWNER( pxListItem, pxOwner ) ( ( pxListItem )->pvOwner = ( void * ) ( pxOwner ) ) + +/* + * Access macro to get the owner of a list item. The owner of a list item + * is the object (usually a TCB) that contains the list item. + * + * \page listGET_LIST_ITEM_OWNER listSET_LIST_ITEM_OWNER + * \ingroup LinkedList + */ +#define listGET_LIST_ITEM_OWNER( pxListItem ) ( ( pxListItem )->pvOwner ) + +/* + * Access macro to set the value of the list item. In most cases the value is + * used to sort the list in descending order. + * + * \page listSET_LIST_ITEM_VALUE listSET_LIST_ITEM_VALUE + * \ingroup LinkedList + */ +#define listSET_LIST_ITEM_VALUE( pxListItem, xValue ) ( ( pxListItem )->xItemValue = ( xValue ) ) + +/* + * Access macro to retrieve the value of the list item. The value can + * represent anything - for example the priority of a task, or the time at + * which a task should be unblocked. + * + * \page listGET_LIST_ITEM_VALUE listGET_LIST_ITEM_VALUE + * \ingroup LinkedList + */ +#define listGET_LIST_ITEM_VALUE( pxListItem ) ( ( pxListItem )->xItemValue ) + +/* + * Access macro to retrieve the value of the list item at the head of a given + * list. + * + * \page listGET_LIST_ITEM_VALUE listGET_LIST_ITEM_VALUE + * \ingroup LinkedList + */ +#define listGET_ITEM_VALUE_OF_HEAD_ENTRY( pxList ) ( ( ( pxList )->xListEnd ).pxNext->xItemValue ) + +/* + * Return the list item at the head of the list. + * + * \page listGET_HEAD_ENTRY listGET_HEAD_ENTRY + * \ingroup LinkedList + */ +#define listGET_HEAD_ENTRY( pxList ) ( ( ( pxList )->xListEnd ).pxNext ) + +/* + * Return the next list item. + * + * \page listGET_NEXT listGET_NEXT + * \ingroup LinkedList + */ +#define listGET_NEXT( pxListItem ) ( ( pxListItem )->pxNext ) + +/* + * Return the list item that marks the end of the list + * + * \page listGET_END_MARKER listGET_END_MARKER + * \ingroup LinkedList + */ +#define listGET_END_MARKER( pxList ) ( ( ListItem_t const * ) ( &( ( pxList )->xListEnd ) ) ) + +/* + * Access macro to determine if a list contains any items. The macro will + * only have the value true if the list is empty. + * + * \page listLIST_IS_EMPTY listLIST_IS_EMPTY + * \ingroup LinkedList + */ +#define listLIST_IS_EMPTY( pxList ) ( ( ( pxList )->uxNumberOfItems == ( UBaseType_t ) 0 ) ? pdTRUE : pdFALSE ) + +/* + * Access macro to return the number of items in the list. + */ +#define listCURRENT_LIST_LENGTH( pxList ) ( ( pxList )->uxNumberOfItems ) + +/* + * Access function to obtain the owner of the next entry in a list. + * + * The list member pxIndex is used to walk through a list. Calling + * listGET_OWNER_OF_NEXT_ENTRY increments pxIndex to the next item in the list + * and returns that entry's pxOwner parameter. Using multiple calls to this + * function it is therefore possible to move through every item contained in + * a list. + * + * The pxOwner parameter of a list item is a pointer to the object that owns + * the list item. In the scheduler this is normally a task control block. + * The pxOwner parameter effectively creates a two way link between the list + * item and its owner. + * + * @param pxTCB pxTCB is set to the address of the owner of the next list item. + * @param pxList The list from which the next item owner is to be returned. + * + * \page listGET_OWNER_OF_NEXT_ENTRY listGET_OWNER_OF_NEXT_ENTRY + * \ingroup LinkedList + */ +#define listGET_OWNER_OF_NEXT_ENTRY( pxTCB, pxList ) \ +{ \ +List_t * const pxConstList = ( pxList ); \ + /* Increment the index to the next item and return the item, ensuring */ \ + /* we don't return the marker used at the end of the list. */ \ + ( pxConstList )->pxIndex = ( pxConstList )->pxIndex->pxNext; \ + if( ( void * ) ( pxConstList )->pxIndex == ( void * ) &( ( pxConstList )->xListEnd ) ) \ + { \ + ( pxConstList )->pxIndex = ( pxConstList )->pxIndex->pxNext; \ + } \ + ( pxTCB ) = ( pxConstList )->pxIndex->pvOwner; \ +} + + +/* + * Access function to obtain the owner of the first entry in a list. Lists + * are normally sorted in ascending item value order. + * + * This function returns the pxOwner member of the first item in the list. + * The pxOwner parameter of a list item is a pointer to the object that owns + * the list item. In the scheduler this is normally a task control block. + * The pxOwner parameter effectively creates a two way link between the list + * item and its owner. + * + * @param pxList The list from which the owner of the head item is to be + * returned. + * + * \page listGET_OWNER_OF_HEAD_ENTRY listGET_OWNER_OF_HEAD_ENTRY + * \ingroup LinkedList + */ +#define listGET_OWNER_OF_HEAD_ENTRY( pxList ) ( (&( ( pxList )->xListEnd ))->pxNext->pvOwner ) + +/* + * Check to see if a list item is within a list. The list item maintains a + * "container" pointer that points to the list it is in. All this macro does + * is check to see if the container and the list match. + * + * @param pxList The list we want to know if the list item is within. + * @param pxListItem The list item we want to know if is in the list. + * @return pdTRUE if the list item is in the list, otherwise pdFALSE. + */ +#define listIS_CONTAINED_WITHIN( pxList, pxListItem ) ( ( ( pxListItem )->pxContainer == ( pxList ) ) ? ( pdTRUE ) : ( pdFALSE ) ) + +/* + * Return the list a list item is contained within (referenced from). + * + * @param pxListItem The list item being queried. + * @return A pointer to the List_t object that references the pxListItem + */ +#define listLIST_ITEM_CONTAINER( pxListItem ) ( ( pxListItem )->pxContainer ) + +/* + * This provides a crude means of knowing if a list has been initialised, as + * pxList->xListEnd.xItemValue is set to portMAX_DELAY by the vListInitialise() + * function. + */ +#define listLIST_IS_INITIALISED( pxList ) ( ( pxList )->xListEnd.xItemValue == portMAX_DELAY ) + +/* + * Must be called before a list is used! This initialises all the members + * of the list structure and inserts the xListEnd item into the list as a + * marker to the back of the list. + * + * @param pxList Pointer to the list being initialised. + * + * \page vListInitialise vListInitialise + * \ingroup LinkedList + */ +void vListInitialise( List_t * const pxList ) PRIVILEGED_FUNCTION; + +/* + * Must be called before a list item is used. This sets the list container to + * null so the item does not think that it is already contained in a list. + * + * @param pxItem Pointer to the list item being initialised. + * + * \page vListInitialiseItem vListInitialiseItem + * \ingroup LinkedList + */ +void vListInitialiseItem( ListItem_t * const pxItem ) PRIVILEGED_FUNCTION; + +/* + * Insert a list item into a list. The item will be inserted into the list in + * a position determined by its item value (descending item value order). + * + * @param pxList The list into which the item is to be inserted. + * + * @param pxNewListItem The item that is to be placed in the list. + * + * \page vListInsert vListInsert + * \ingroup LinkedList + */ +void vListInsert( List_t * const pxList, ListItem_t * const pxNewListItem ) PRIVILEGED_FUNCTION; + +/* + * Insert a list item into a list. The item will be inserted in a position + * such that it will be the last item within the list returned by multiple + * calls to listGET_OWNER_OF_NEXT_ENTRY. + * + * The list member pxIndex is used to walk through a list. Calling + * listGET_OWNER_OF_NEXT_ENTRY increments pxIndex to the next item in the list. + * Placing an item in a list using vListInsertEnd effectively places the item + * in the list position pointed to by pxIndex. This means that every other + * item within the list will be returned by listGET_OWNER_OF_NEXT_ENTRY before + * the pxIndex parameter again points to the item being inserted. + * + * @param pxList The list into which the item is to be inserted. + * + * @param pxNewListItem The list item to be inserted into the list. + * + * \page vListInsertEnd vListInsertEnd + * \ingroup LinkedList + */ +void vListInsertEnd( List_t * const pxList, ListItem_t * const pxNewListItem ) PRIVILEGED_FUNCTION; + +/* + * Remove an item from a list. The list item has a pointer to the list that + * it is in, so only the list item need be passed into the function. + * + * @param uxListRemove The item to be removed. The item will remove itself from + * the list pointed to by it's pxContainer parameter. + * + * @return The number of items that remain in the list after the list item has + * been removed. + * + * \page uxListRemove uxListRemove + * \ingroup LinkedList + */ +UBaseType_t uxListRemove( ListItem_t * const pxItemToRemove ) PRIVILEGED_FUNCTION; + +#ifdef __cplusplus +} +#endif + +#endif + diff --git a/rtos/freertos/abstraction_layer_freertos/include/message_buffer.h b/rtos/freertos/abstraction_layer_freertos/include/message_buffer.h new file mode 100644 index 00000000..9923b330 --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/include/message_buffer.h @@ -0,0 +1,803 @@ +/* + * FreeRTOS Kernel V10.3.0 + * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * + * http://www.FreeRTOS.org + * http://aws.amazon.com/freertos + * + * 1 tab == 4 spaces! + */ + + +/* + * Message buffers build functionality on top of FreeRTOS stream buffers. + * Whereas stream buffers are used to send a continuous stream of data from one + * task or interrupt to another, message buffers are used to send variable + * length discrete messages from one task or interrupt to another. Their + * implementation is light weight, making them particularly suited for interrupt + * to task and core to core communication scenarios. + * + * ***NOTE***: Uniquely among FreeRTOS objects, the stream buffer + * implementation (so also the message buffer implementation, as message buffers + * are built on top of stream buffers) assumes there is only one task or + * interrupt that will write to the buffer (the writer), and only one task or + * interrupt that will read from the buffer (the reader). It is safe for the + * writer and reader to be different tasks or interrupts, but, unlike other + * FreeRTOS objects, it is not safe to have multiple different writers or + * multiple different readers. If there are to be multiple different writers + * then the application writer must place each call to a writing API function + * (such as xMessageBufferSend()) inside a critical section and set the send + * block time to 0. Likewise, if there are to be multiple different readers + * then the application writer must place each call to a reading API function + * (such as xMessageBufferRead()) inside a critical section and set the receive + * timeout to 0. + * + * Message buffers hold variable length messages. To enable that, when a + * message is written to the message buffer an additional sizeof( size_t ) bytes + * are also written to store the message's length (that happens internally, with + * the API function). sizeof( size_t ) is typically 4 bytes on a 32-bit + * architecture, so writing a 10 byte message to a message buffer on a 32-bit + * architecture will actually reduce the available space in the message buffer + * by 14 bytes (10 byte are used by the message, and 4 bytes to hold the length + * of the message). + */ + +#ifndef FREERTOS_MESSAGE_BUFFER_H +#define FREERTOS_MESSAGE_BUFFER_H + +#ifndef INC_FREERTOS_H + #error "include FreeRTOS.h must appear in source files before include message_buffer.h" +#endif + +/* Message buffers are built onto of stream buffers. */ +#include "stream_buffer.h" + +#if defined( __cplusplus ) +extern "C" { +#endif + +/** + * Type by which message buffers are referenced. For example, a call to + * xMessageBufferCreate() returns an MessageBufferHandle_t variable that can + * then be used as a parameter to xMessageBufferSend(), xMessageBufferReceive(), + * etc. + */ +typedef void * MessageBufferHandle_t; + +/*-----------------------------------------------------------*/ + +/** + * message_buffer.h + * +
+MessageBufferHandle_t xMessageBufferCreate( size_t xBufferSizeBytes );
+
+ * + * Creates a new message buffer using dynamically allocated memory. See + * xMessageBufferCreateStatic() for a version that uses statically allocated + * memory (memory that is allocated at compile time). + * + * configSUPPORT_DYNAMIC_ALLOCATION must be set to 1 or left undefined in + * FreeRTOSConfig.h for xMessageBufferCreate() to be available. + * + * @param xBufferSizeBytes The total number of bytes (not messages) the message + * buffer will be able to hold at any one time. When a message is written to + * the message buffer an additional sizeof( size_t ) bytes are also written to + * store the message's length. sizeof( size_t ) is typically 4 bytes on a + * 32-bit architecture, so on most 32-bit architectures a 10 byte message will + * take up 14 bytes of message buffer space. + * + * @return If NULL is returned, then the message buffer cannot be created + * because there is insufficient heap memory available for FreeRTOS to allocate + * the message buffer data structures and storage area. A non-NULL value being + * returned indicates that the message buffer has been created successfully - + * the returned value should be stored as the handle to the created message + * buffer. + * + * Example use: +
+
+void vAFunction( void )
+{
+MessageBufferHandle_t xMessageBuffer;
+const size_t xMessageBufferSizeBytes = 100;
+
+    // Create a message buffer that can hold 100 bytes.  The memory used to hold
+    // both the message buffer structure and the messages themselves is allocated
+    // dynamically.  Each message added to the buffer consumes an additional 4
+    // bytes which are used to hold the lengh of the message.
+    xMessageBuffer = xMessageBufferCreate( xMessageBufferSizeBytes );
+
+    if( xMessageBuffer == NULL )
+    {
+        // There was not enough heap memory space available to create the
+        // message buffer.
+    }
+    else
+    {
+        // The message buffer was created successfully and can now be used.
+    }
+
+
+ * \defgroup xMessageBufferCreate xMessageBufferCreate + * \ingroup MessageBufferManagement + */ +#define xMessageBufferCreate( xBufferSizeBytes ) ( MessageBufferHandle_t ) xStreamBufferGenericCreate( xBufferSizeBytes, ( size_t ) 0, pdTRUE ) + +/** + * message_buffer.h + * +
+MessageBufferHandle_t xMessageBufferCreateStatic( size_t xBufferSizeBytes,
+                                                  uint8_t *pucMessageBufferStorageArea,
+                                                  StaticMessageBuffer_t *pxStaticMessageBuffer );
+
+ * Creates a new message buffer using statically allocated memory. See + * xMessageBufferCreate() for a version that uses dynamically allocated memory. + * + * @param xBufferSizeBytes The size, in bytes, of the buffer pointed to by the + * pucMessageBufferStorageArea parameter. When a message is written to the + * message buffer an additional sizeof( size_t ) bytes are also written to store + * the message's length. sizeof( size_t ) is typically 4 bytes on a 32-bit + * architecture, so on most 32-bit architecture a 10 byte message will take up + * 14 bytes of message buffer space. The maximum number of bytes that can be + * stored in the message buffer is actually (xBufferSizeBytes - 1). + * + * @param pucMessageBufferStorageArea Must point to a uint8_t array that is at + * least xBufferSizeBytes + 1 big. This is the array to which messages are + * copied when they are written to the message buffer. + * + * @param pxStaticMessageBuffer Must point to a variable of type + * StaticMessageBuffer_t, which will be used to hold the message buffer's data + * structure. + * + * @return If the message buffer is created successfully then a handle to the + * created message buffer is returned. If either pucMessageBufferStorageArea or + * pxStaticmessageBuffer are NULL then NULL is returned. + * + * Example use: +
+
+// Used to dimension the array used to hold the messages.  The available space
+// will actually be one less than this, so 999.
+#define STORAGE_SIZE_BYTES 1000
+
+// Defines the memory that will actually hold the messages within the message
+// buffer.
+static uint8_t ucStorageBuffer[ STORAGE_SIZE_BYTES ];
+
+// The variable used to hold the message buffer structure.
+StaticMessageBuffer_t xMessageBufferStruct;
+
+void MyFunction( void )
+{
+MessageBufferHandle_t xMessageBuffer;
+
+    xMessageBuffer = xMessageBufferCreateStatic( sizeof( ucBufferStorage ),
+                                                 ucBufferStorage,
+                                                 &xMessageBufferStruct );
+
+    // As neither the pucMessageBufferStorageArea or pxStaticMessageBuffer
+    // parameters were NULL, xMessageBuffer will not be NULL, and can be used to
+    // reference the created message buffer in other message buffer API calls.
+
+    // Other code that uses the message buffer can go here.
+}
+
+
+ * \defgroup xMessageBufferCreateStatic xMessageBufferCreateStatic + * \ingroup MessageBufferManagement + */ +#define xMessageBufferCreateStatic( xBufferSizeBytes, pucMessageBufferStorageArea, pxStaticMessageBuffer ) ( MessageBufferHandle_t ) xStreamBufferGenericCreateStatic( xBufferSizeBytes, 0, pdTRUE, pucMessageBufferStorageArea, pxStaticMessageBuffer ) + +/** + * message_buffer.h + * +
+size_t xMessageBufferSend( MessageBufferHandle_t xMessageBuffer,
+                           const void *pvTxData,
+                           size_t xDataLengthBytes,
+                           TickType_t xTicksToWait );
+
+ *
+ * Sends a discrete message to the message buffer.  The message can be any
+ * length that fits within the buffer's free space, and is copied into the
+ * buffer.
+ *
+ * ***NOTE***:  Uniquely among FreeRTOS objects, the stream buffer
+ * implementation (so also the message buffer implementation, as message buffers
+ * are built on top of stream buffers) assumes there is only one task or
+ * interrupt that will write to the buffer (the writer), and only one task or
+ * interrupt that will read from the buffer (the reader).  It is safe for the
+ * writer and reader to be different tasks or interrupts, but, unlike other
+ * FreeRTOS objects, it is not safe to have multiple different writers or
+ * multiple different readers.  If there are to be multiple different writers
+ * then the application writer must place each call to a writing API function
+ * (such as xMessageBufferSend()) inside a critical section and set the send
+ * block time to 0.  Likewise, if there are to be multiple different readers
+ * then the application writer must place each call to a reading API function
+ * (such as xMessageBufferRead()) inside a critical section and set the receive
+ * block time to 0.
+ *
+ * Use xMessageBufferSend() to write to a message buffer from a task.  Use
+ * xMessageBufferSendFromISR() to write to a message buffer from an interrupt
+ * service routine (ISR).
+ *
+ * @param xMessageBuffer The handle of the message buffer to which a message is
+ * being sent.
+ *
+ * @param pvTxData A pointer to the message that is to be copied into the
+ * message buffer.
+ *
+ * @param xDataLengthBytes The length of the message.  That is, the number of
+ * bytes to copy from pvTxData into the message buffer.  When a message is
+ * written to the message buffer an additional sizeof( size_t ) bytes are also
+ * written to store the message's length.  sizeof( size_t ) is typically 4 bytes
+ * on a 32-bit architecture, so on most 32-bit architecture setting
+ * xDataLengthBytes to 20 will reduce the free space in the message buffer by 24
+ * bytes (20 bytes of message data and 4 bytes to hold the message length).
+ *
+ * @param xTicksToWait The maximum amount of time the calling task should remain
+ * in the Blocked state to wait for enough space to become available in the
+ * message buffer, should the message buffer have insufficient space when
+ * xMessageBufferSend() is called.  The calling task will never block if
+ * xTicksToWait is zero.  The block time is specified in tick periods, so the
+ * absolute time it represents is dependent on the tick frequency.  The macro
+ * pdMS_TO_TICKS() can be used to convert a time specified in milliseconds into
+ * a time specified in ticks.  Setting xTicksToWait to portMAX_DELAY will cause
+ * the task to wait indefinitely (without timing out), provided
+ * INCLUDE_vTaskSuspend is set to 1 in FreeRTOSConfig.h.  Tasks do not use any
+ * CPU time when they are in the Blocked state.
+ *
+ * @return The number of bytes written to the message buffer.  If the call to
+ * xMessageBufferSend() times out before there was enough space to write the
+ * message into the message buffer then zero is returned.  If the call did not
+ * time out then xDataLengthBytes is returned.
+ *
+ * Example use:
+
+void vAFunction( MessageBufferHandle_t xMessageBuffer )
+{
+size_t xBytesSent;
+uint8_t ucArrayToSend[] = { 0, 1, 2, 3 };
+char *pcStringToSend = "String to send";
+const TickType_t x100ms = pdMS_TO_TICKS( 100 );
+
+    // Send an array to the message buffer, blocking for a maximum of 100ms to
+    // wait for enough space to be available in the message buffer.
+    xBytesSent = xMessageBufferSend( xMessageBuffer, ( void * ) ucArrayToSend, sizeof( ucArrayToSend ), x100ms );
+
+    if( xBytesSent != sizeof( ucArrayToSend ) )
+    {
+        // The call to xMessageBufferSend() times out before there was enough
+        // space in the buffer for the data to be written.
+    }
+
+    // Send the string to the message buffer.  Return immediately if there is
+    // not enough space in the buffer.
+    xBytesSent = xMessageBufferSend( xMessageBuffer, ( void * ) pcStringToSend, strlen( pcStringToSend ), 0 );
+
+    if( xBytesSent != strlen( pcStringToSend ) )
+    {
+        // The string could not be added to the message buffer because there was
+        // not enough free space in the buffer.
+    }
+}
+
+ * \defgroup xMessageBufferSend xMessageBufferSend + * \ingroup MessageBufferManagement + */ +#define xMessageBufferSend( xMessageBuffer, pvTxData, xDataLengthBytes, xTicksToWait ) xStreamBufferSend( ( StreamBufferHandle_t ) xMessageBuffer, pvTxData, xDataLengthBytes, xTicksToWait ) + +/** + * message_buffer.h + * +
+size_t xMessageBufferSendFromISR( MessageBufferHandle_t xMessageBuffer,
+                                  const void *pvTxData,
+                                  size_t xDataLengthBytes,
+                                  BaseType_t *pxHigherPriorityTaskWoken );
+
+ *
+ * Interrupt safe version of the API function that sends a discrete message to
+ * the message buffer.  The message can be any length that fits within the
+ * buffer's free space, and is copied into the buffer.
+ *
+ * ***NOTE***:  Uniquely among FreeRTOS objects, the stream buffer
+ * implementation (so also the message buffer implementation, as message buffers
+ * are built on top of stream buffers) assumes there is only one task or
+ * interrupt that will write to the buffer (the writer), and only one task or
+ * interrupt that will read from the buffer (the reader).  It is safe for the
+ * writer and reader to be different tasks or interrupts, but, unlike other
+ * FreeRTOS objects, it is not safe to have multiple different writers or
+ * multiple different readers.  If there are to be multiple different writers
+ * then the application writer must place each call to a writing API function
+ * (such as xMessageBufferSend()) inside a critical section and set the send
+ * block time to 0.  Likewise, if there are to be multiple different readers
+ * then the application writer must place each call to a reading API function
+ * (such as xMessageBufferRead()) inside a critical section and set the receive
+ * block time to 0.
+ *
+ * Use xMessageBufferSend() to write to a message buffer from a task.  Use
+ * xMessageBufferSendFromISR() to write to a message buffer from an interrupt
+ * service routine (ISR).
+ *
+ * @param xMessageBuffer The handle of the message buffer to which a message is
+ * being sent.
+ *
+ * @param pvTxData A pointer to the message that is to be copied into the
+ * message buffer.
+ *
+ * @param xDataLengthBytes The length of the message.  That is, the number of
+ * bytes to copy from pvTxData into the message buffer.  When a message is
+ * written to the message buffer an additional sizeof( size_t ) bytes are also
+ * written to store the message's length.  sizeof( size_t ) is typically 4 bytes
+ * on a 32-bit architecture, so on most 32-bit architecture setting
+ * xDataLengthBytes to 20 will reduce the free space in the message buffer by 24
+ * bytes (20 bytes of message data and 4 bytes to hold the message length).
+ *
+ * @param pxHigherPriorityTaskWoken  It is possible that a message buffer will
+ * have a task blocked on it waiting for data.  Calling
+ * xMessageBufferSendFromISR() can make data available, and so cause a task that
+ * was waiting for data to leave the Blocked state.  If calling
+ * xMessageBufferSendFromISR() causes a task to leave the Blocked state, and the
+ * unblocked task has a priority higher than the currently executing task (the
+ * task that was interrupted), then, internally, xMessageBufferSendFromISR()
+ * will set *pxHigherPriorityTaskWoken to pdTRUE.  If
+ * xMessageBufferSendFromISR() sets this value to pdTRUE, then normally a
+ * context switch should be performed before the interrupt is exited.  This will
+ * ensure that the interrupt returns directly to the highest priority Ready
+ * state task.  *pxHigherPriorityTaskWoken should be set to pdFALSE before it
+ * is passed into the function.  See the code example below for an example.
+ *
+ * @return The number of bytes actually written to the message buffer.  If the
+ * message buffer didn't have enough free space for the message to be stored
+ * then 0 is returned, otherwise xDataLengthBytes is returned.
+ *
+ * Example use:
+
+// A message buffer that has already been created.
+MessageBufferHandle_t xMessageBuffer;
+
+void vAnInterruptServiceRoutine( void )
+{
+size_t xBytesSent;
+char *pcStringToSend = "String to send";
+BaseType_t xHigherPriorityTaskWoken = pdFALSE; // Initialised to pdFALSE.
+
+    // Attempt to send the string to the message buffer.
+    xBytesSent = xMessageBufferSendFromISR( xMessageBuffer,
+                                            ( void * ) pcStringToSend,
+                                            strlen( pcStringToSend ),
+                                            &xHigherPriorityTaskWoken );
+
+    if( xBytesSent != strlen( pcStringToSend ) )
+    {
+        // The string could not be added to the message buffer because there was
+        // not enough free space in the buffer.
+    }
+
+    // If xHigherPriorityTaskWoken was set to pdTRUE inside
+    // xMessageBufferSendFromISR() then a task that has a priority above the
+    // priority of the currently executing task was unblocked and a context
+    // switch should be performed to ensure the ISR returns to the unblocked
+    // task.  In most FreeRTOS ports this is done by simply passing
+    // xHigherPriorityTaskWoken into portYIELD_FROM_ISR(), which will test the
+    // variables value, and perform the context switch if necessary.  Check the
+    // documentation for the port in use for port specific instructions.
+    portYIELD_FROM_ISR( xHigherPriorityTaskWoken );
+}
+
+ * \defgroup xMessageBufferSendFromISR xMessageBufferSendFromISR + * \ingroup MessageBufferManagement + */ +#define xMessageBufferSendFromISR( xMessageBuffer, pvTxData, xDataLengthBytes, pxHigherPriorityTaskWoken ) xStreamBufferSendFromISR( ( StreamBufferHandle_t ) xMessageBuffer, pvTxData, xDataLengthBytes, pxHigherPriorityTaskWoken ) + +/** + * message_buffer.h + * +
+size_t xMessageBufferReceive( MessageBufferHandle_t xMessageBuffer,
+                              void *pvRxData,
+                              size_t xBufferLengthBytes,
+                              TickType_t xTicksToWait );
+
+ * + * Receives a discrete message from a message buffer. Messages can be of + * variable length and are copied out of the buffer. + * + * ***NOTE***: Uniquely among FreeRTOS objects, the stream buffer + * implementation (so also the message buffer implementation, as message buffers + * are built on top of stream buffers) assumes there is only one task or + * interrupt that will write to the buffer (the writer), and only one task or + * interrupt that will read from the buffer (the reader). It is safe for the + * writer and reader to be different tasks or interrupts, but, unlike other + * FreeRTOS objects, it is not safe to have multiple different writers or + * multiple different readers. If there are to be multiple different writers + * then the application writer must place each call to a writing API function + * (such as xMessageBufferSend()) inside a critical section and set the send + * block time to 0. Likewise, if there are to be multiple different readers + * then the application writer must place each call to a reading API function + * (such as xMessageBufferRead()) inside a critical section and set the receive + * block time to 0. + * + * Use xMessageBufferReceive() to read from a message buffer from a task. Use + * xMessageBufferReceiveFromISR() to read from a message buffer from an + * interrupt service routine (ISR). + * + * @param xMessageBuffer The handle of the message buffer from which a message + * is being received. + * + * @param pvRxData A pointer to the buffer into which the received message is + * to be copied. + * + * @param xBufferLengthBytes The length of the buffer pointed to by the pvRxData + * parameter. This sets the maximum length of the message that can be received. + * If xBufferLengthBytes is too small to hold the next message then the message + * will be left in the message buffer and 0 will be returned. + * + * @param xTicksToWait The maximum amount of time the task should remain in the + * Blocked state to wait for a message, should the message buffer be empty. + * xMessageBufferReceive() will return immediately if xTicksToWait is zero and + * the message buffer is empty. The block time is specified in tick periods, so + * the absolute time it represents is dependent on the tick frequency. The + * macro pdMS_TO_TICKS() can be used to convert a time specified in milliseconds + * into a time specified in ticks. Setting xTicksToWait to portMAX_DELAY will + * cause the task to wait indefinitely (without timing out), provided + * INCLUDE_vTaskSuspend is set to 1 in FreeRTOSConfig.h. Tasks do not use any + * CPU time when they are in the Blocked state. + * + * @return The length, in bytes, of the message read from the message buffer, if + * any. If xMessageBufferReceive() times out before a message became available + * then zero is returned. If the length of the message is greater than + * xBufferLengthBytes then the message will be left in the message buffer and + * zero is returned. + * + * Example use: +
+void vAFunction( MessageBuffer_t xMessageBuffer )
+{
+uint8_t ucRxData[ 20 ];
+size_t xReceivedBytes;
+const TickType_t xBlockTime = pdMS_TO_TICKS( 20 );
+
+    // Receive the next message from the message buffer.  Wait in the Blocked
+    // state (so not using any CPU processing time) for a maximum of 100ms for
+    // a message to become available.
+    xReceivedBytes = xMessageBufferReceive( xMessageBuffer,
+                                            ( void * ) ucRxData,
+                                            sizeof( ucRxData ),
+                                            xBlockTime );
+
+    if( xReceivedBytes > 0 )
+    {
+        // A ucRxData contains a message that is xReceivedBytes long.  Process
+        // the message here....
+    }
+}
+
+ * \defgroup xMessageBufferReceive xMessageBufferReceive + * \ingroup MessageBufferManagement + */ +#define xMessageBufferReceive( xMessageBuffer, pvRxData, xBufferLengthBytes, xTicksToWait ) xStreamBufferReceive( ( StreamBufferHandle_t ) xMessageBuffer, pvRxData, xBufferLengthBytes, xTicksToWait ) + + +/** + * message_buffer.h + * +
+size_t xMessageBufferReceiveFromISR( MessageBufferHandle_t xMessageBuffer,
+                                     void *pvRxData,
+                                     size_t xBufferLengthBytes,
+                                     BaseType_t *pxHigherPriorityTaskWoken );
+
+ * + * An interrupt safe version of the API function that receives a discrete + * message from a message buffer. Messages can be of variable length and are + * copied out of the buffer. + * + * ***NOTE***: Uniquely among FreeRTOS objects, the stream buffer + * implementation (so also the message buffer implementation, as message buffers + * are built on top of stream buffers) assumes there is only one task or + * interrupt that will write to the buffer (the writer), and only one task or + * interrupt that will read from the buffer (the reader). It is safe for the + * writer and reader to be different tasks or interrupts, but, unlike other + * FreeRTOS objects, it is not safe to have multiple different writers or + * multiple different readers. If there are to be multiple different writers + * then the application writer must place each call to a writing API function + * (such as xMessageBufferSend()) inside a critical section and set the send + * block time to 0. Likewise, if there are to be multiple different readers + * then the application writer must place each call to a reading API function + * (such as xMessageBufferRead()) inside a critical section and set the receive + * block time to 0. + * + * Use xMessageBufferReceive() to read from a message buffer from a task. Use + * xMessageBufferReceiveFromISR() to read from a message buffer from an + * interrupt service routine (ISR). + * + * @param xMessageBuffer The handle of the message buffer from which a message + * is being received. + * + * @param pvRxData A pointer to the buffer into which the received message is + * to be copied. + * + * @param xBufferLengthBytes The length of the buffer pointed to by the pvRxData + * parameter. This sets the maximum length of the message that can be received. + * If xBufferLengthBytes is too small to hold the next message then the message + * will be left in the message buffer and 0 will be returned. + * + * @param pxHigherPriorityTaskWoken It is possible that a message buffer will + * have a task blocked on it waiting for space to become available. Calling + * xMessageBufferReceiveFromISR() can make space available, and so cause a task + * that is waiting for space to leave the Blocked state. If calling + * xMessageBufferReceiveFromISR() causes a task to leave the Blocked state, and + * the unblocked task has a priority higher than the currently executing task + * (the task that was interrupted), then, internally, + * xMessageBufferReceiveFromISR() will set *pxHigherPriorityTaskWoken to pdTRUE. + * If xMessageBufferReceiveFromISR() sets this value to pdTRUE, then normally a + * context switch should be performed before the interrupt is exited. That will + * ensure the interrupt returns directly to the highest priority Ready state + * task. *pxHigherPriorityTaskWoken should be set to pdFALSE before it is + * passed into the function. See the code example below for an example. + * + * @return The length, in bytes, of the message read from the message buffer, if + * any. + * + * Example use: +
+// A message buffer that has already been created.
+MessageBuffer_t xMessageBuffer;
+
+void vAnInterruptServiceRoutine( void )
+{
+uint8_t ucRxData[ 20 ];
+size_t xReceivedBytes;
+BaseType_t xHigherPriorityTaskWoken = pdFALSE;  // Initialised to pdFALSE.
+
+    // Receive the next message from the message buffer.
+    xReceivedBytes = xMessageBufferReceiveFromISR( xMessageBuffer,
+                                                  ( void * ) ucRxData,
+                                                  sizeof( ucRxData ),
+                                                  &xHigherPriorityTaskWoken );
+
+    if( xReceivedBytes > 0 )
+    {
+        // A ucRxData contains a message that is xReceivedBytes long.  Process
+        // the message here....
+    }
+
+    // If xHigherPriorityTaskWoken was set to pdTRUE inside
+    // xMessageBufferReceiveFromISR() then a task that has a priority above the
+    // priority of the currently executing task was unblocked and a context
+    // switch should be performed to ensure the ISR returns to the unblocked
+    // task.  In most FreeRTOS ports this is done by simply passing
+    // xHigherPriorityTaskWoken into portYIELD_FROM_ISR(), which will test the
+    // variables value, and perform the context switch if necessary.  Check the
+    // documentation for the port in use for port specific instructions.
+    portYIELD_FROM_ISR( xHigherPriorityTaskWoken );
+}
+
+ * \defgroup xMessageBufferReceiveFromISR xMessageBufferReceiveFromISR + * \ingroup MessageBufferManagement + */ +#define xMessageBufferReceiveFromISR( xMessageBuffer, pvRxData, xBufferLengthBytes, pxHigherPriorityTaskWoken ) xStreamBufferReceiveFromISR( ( StreamBufferHandle_t ) xMessageBuffer, pvRxData, xBufferLengthBytes, pxHigherPriorityTaskWoken ) + +/** + * message_buffer.h + * +
+void vMessageBufferDelete( MessageBufferHandle_t xMessageBuffer );
+
+ * + * Deletes a message buffer that was previously created using a call to + * xMessageBufferCreate() or xMessageBufferCreateStatic(). If the message + * buffer was created using dynamic memory (that is, by xMessageBufferCreate()), + * then the allocated memory is freed. + * + * A message buffer handle must not be used after the message buffer has been + * deleted. + * + * @param xMessageBuffer The handle of the message buffer to be deleted. + * + */ +#define vMessageBufferDelete( xMessageBuffer ) vStreamBufferDelete( ( StreamBufferHandle_t ) xMessageBuffer ) + +/** + * message_buffer.h +
+BaseType_t xMessageBufferIsFull( MessageBufferHandle_t xMessageBuffer ) );
+
+ * + * Tests to see if a message buffer is full. A message buffer is full if it + * cannot accept any more messages, of any size, until space is made available + * by a message being removed from the message buffer. + * + * @param xMessageBuffer The handle of the message buffer being queried. + * + * @return If the message buffer referenced by xMessageBuffer is full then + * pdTRUE is returned. Otherwise pdFALSE is returned. + */ +#define xMessageBufferIsFull( xMessageBuffer ) xStreamBufferIsFull( ( StreamBufferHandle_t ) xMessageBuffer ) + +/** + * message_buffer.h +
+BaseType_t xMessageBufferIsEmpty( MessageBufferHandle_t xMessageBuffer ) );
+
+ * + * Tests to see if a message buffer is empty (does not contain any messages). + * + * @param xMessageBuffer The handle of the message buffer being queried. + * + * @return If the message buffer referenced by xMessageBuffer is empty then + * pdTRUE is returned. Otherwise pdFALSE is returned. + * + */ +#define xMessageBufferIsEmpty( xMessageBuffer ) xStreamBufferIsEmpty( ( StreamBufferHandle_t ) xMessageBuffer ) + +/** + * message_buffer.h +
+BaseType_t xMessageBufferReset( MessageBufferHandle_t xMessageBuffer );
+
+ * + * Resets a message buffer to its initial empty state, discarding any message it + * contained. + * + * A message buffer can only be reset if there are no tasks blocked on it. + * + * @param xMessageBuffer The handle of the message buffer being reset. + * + * @return If the message buffer was reset then pdPASS is returned. If the + * message buffer could not be reset because either there was a task blocked on + * the message queue to wait for space to become available, or to wait for a + * a message to be available, then pdFAIL is returned. + * + * \defgroup xMessageBufferReset xMessageBufferReset + * \ingroup MessageBufferManagement + */ +#define xMessageBufferReset( xMessageBuffer ) xStreamBufferReset( ( StreamBufferHandle_t ) xMessageBuffer ) + + +/** + * message_buffer.h +
+size_t xMessageBufferSpaceAvailable( MessageBufferHandle_t xMessageBuffer ) );
+
+ * Returns the number of bytes of free space in the message buffer. + * + * @param xMessageBuffer The handle of the message buffer being queried. + * + * @return The number of bytes that can be written to the message buffer before + * the message buffer would be full. When a message is written to the message + * buffer an additional sizeof( size_t ) bytes are also written to store the + * message's length. sizeof( size_t ) is typically 4 bytes on a 32-bit + * architecture, so if xMessageBufferSpacesAvailable() returns 10, then the size + * of the largest message that can be written to the message buffer is 6 bytes. + * + * \defgroup xMessageBufferSpaceAvailable xMessageBufferSpaceAvailable + * \ingroup MessageBufferManagement + */ +#define xMessageBufferSpaceAvailable( xMessageBuffer ) xStreamBufferSpacesAvailable( ( StreamBufferHandle_t ) xMessageBuffer ) +#define xMessageBufferSpacesAvailable( xMessageBuffer ) xStreamBufferSpacesAvailable( ( StreamBufferHandle_t ) xMessageBuffer ) /* Corrects typo in original macro name. */ + +/** + * message_buffer.h +
+ size_t xMessageBufferNextLengthBytes( MessageBufferHandle_t xMessageBuffer ) );
+ 
+ * Returns the length (in bytes) of the next message in a message buffer. + * Useful if xMessageBufferReceive() returned 0 because the size of the buffer + * passed into xMessageBufferReceive() was too small to hold the next message. + * + * @param xMessageBuffer The handle of the message buffer being queried. + * + * @return The length (in bytes) of the next message in the message buffer, or 0 + * if the message buffer is empty. + * + * \defgroup xMessageBufferNextLengthBytes xMessageBufferNextLengthBytes + * \ingroup MessageBufferManagement + */ +#define xMessageBufferNextLengthBytes( xMessageBuffer ) xStreamBufferNextMessageLengthBytes( ( StreamBufferHandle_t ) xMessageBuffer ) PRIVILEGED_FUNCTION; + +/** + * message_buffer.h + * +
+BaseType_t xMessageBufferSendCompletedFromISR( MessageBufferHandle_t xStreamBuffer, BaseType_t *pxHigherPriorityTaskWoken );
+
+ * + * For advanced users only. + * + * The sbSEND_COMPLETED() macro is called from within the FreeRTOS APIs when + * data is sent to a message buffer or stream buffer. If there was a task that + * was blocked on the message or stream buffer waiting for data to arrive then + * the sbSEND_COMPLETED() macro sends a notification to the task to remove it + * from the Blocked state. xMessageBufferSendCompletedFromISR() does the same + * thing. It is provided to enable application writers to implement their own + * version of sbSEND_COMPLETED(), and MUST NOT BE USED AT ANY OTHER TIME. + * + * See the example implemented in FreeRTOS/Demo/Minimal/MessageBufferAMP.c for + * additional information. + * + * @param xStreamBuffer The handle of the stream buffer to which data was + * written. + * + * @param pxHigherPriorityTaskWoken *pxHigherPriorityTaskWoken should be + * initialised to pdFALSE before it is passed into + * xMessageBufferSendCompletedFromISR(). If calling + * xMessageBufferSendCompletedFromISR() removes a task from the Blocked state, + * and the task has a priority above the priority of the currently running task, + * then *pxHigherPriorityTaskWoken will get set to pdTRUE indicating that a + * context switch should be performed before exiting the ISR. + * + * @return If a task was removed from the Blocked state then pdTRUE is returned. + * Otherwise pdFALSE is returned. + * + * \defgroup xMessageBufferSendCompletedFromISR xMessageBufferSendCompletedFromISR + * \ingroup StreamBufferManagement + */ +#define xMessageBufferSendCompletedFromISR( xMessageBuffer, pxHigherPriorityTaskWoken ) xStreamBufferSendCompletedFromISR( ( StreamBufferHandle_t ) xMessageBuffer, pxHigherPriorityTaskWoken ) + +/** + * message_buffer.h + * +
+BaseType_t xMessageBufferReceiveCompletedFromISR( MessageBufferHandle_t xStreamBuffer, BaseType_t *pxHigherPriorityTaskWoken );
+
+ * + * For advanced users only. + * + * The sbRECEIVE_COMPLETED() macro is called from within the FreeRTOS APIs when + * data is read out of a message buffer or stream buffer. If there was a task + * that was blocked on the message or stream buffer waiting for data to arrive + * then the sbRECEIVE_COMPLETED() macro sends a notification to the task to + * remove it from the Blocked state. xMessageBufferReceiveCompletedFromISR() + * does the same thing. It is provided to enable application writers to + * implement their own version of sbRECEIVE_COMPLETED(), and MUST NOT BE USED AT + * ANY OTHER TIME. + * + * See the example implemented in FreeRTOS/Demo/Minimal/MessageBufferAMP.c for + * additional information. + * + * @param xStreamBuffer The handle of the stream buffer from which data was + * read. + * + * @param pxHigherPriorityTaskWoken *pxHigherPriorityTaskWoken should be + * initialised to pdFALSE before it is passed into + * xMessageBufferReceiveCompletedFromISR(). If calling + * xMessageBufferReceiveCompletedFromISR() removes a task from the Blocked state, + * and the task has a priority above the priority of the currently running task, + * then *pxHigherPriorityTaskWoken will get set to pdTRUE indicating that a + * context switch should be performed before exiting the ISR. + * + * @return If a task was removed from the Blocked state then pdTRUE is returned. + * Otherwise pdFALSE is returned. + * + * \defgroup xMessageBufferReceiveCompletedFromISR xMessageBufferReceiveCompletedFromISR + * \ingroup StreamBufferManagement + */ +#define xMessageBufferReceiveCompletedFromISR( xMessageBuffer, pxHigherPriorityTaskWoken ) xStreamBufferReceiveCompletedFromISR( ( StreamBufferHandle_t ) xMessageBuffer, pxHigherPriorityTaskWoken ) + +#if defined( __cplusplus ) +} /* extern "C" */ +#endif + +#endif /* !defined( FREERTOS_MESSAGE_BUFFER_H ) */ diff --git a/rtos/freertos/abstraction_layer_freertos/include/mpu_prototypes.h b/rtos/freertos/abstraction_layer_freertos/include/mpu_prototypes.h new file mode 100644 index 00000000..ca876326 --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/include/mpu_prototypes.h @@ -0,0 +1,160 @@ +/* + * FreeRTOS Kernel V10.3.0 + * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * + * http://www.FreeRTOS.org + * http://aws.amazon.com/freertos + * + * 1 tab == 4 spaces! + */ + +/* + * When the MPU is used the standard (non MPU) API functions are mapped to + * equivalents that start "MPU_", the prototypes for which are defined in this + * header files. This will cause the application code to call the MPU_ version + * which wraps the non-MPU version with privilege promoting then demoting code, + * so the kernel code always runs will full privileges. + */ + + +#ifndef MPU_PROTOTYPES_H +#define MPU_PROTOTYPES_H + +/* MPU versions of tasks.h API functions. */ +BaseType_t MPU_xTaskCreate( TaskFunction_t pxTaskCode, const char * const pcName, const uint16_t usStackDepth, void * const pvParameters, UBaseType_t uxPriority, TaskHandle_t * const pxCreatedTask ) FREERTOS_SYSTEM_CALL; +TaskHandle_t MPU_xTaskCreateStatic( TaskFunction_t pxTaskCode, const char * const pcName, const uint32_t ulStackDepth, void * const pvParameters, UBaseType_t uxPriority, StackType_t * const puxStackBuffer, StaticTask_t * const pxTaskBuffer ) FREERTOS_SYSTEM_CALL; +BaseType_t MPU_xTaskCreateRestricted( const TaskParameters_t * const pxTaskDefinition, TaskHandle_t *pxCreatedTask ) FREERTOS_SYSTEM_CALL; +BaseType_t MPU_xTaskCreateRestrictedStatic( const TaskParameters_t * const pxTaskDefinition, TaskHandle_t *pxCreatedTask ) FREERTOS_SYSTEM_CALL; +void MPU_vTaskAllocateMPURegions( TaskHandle_t xTask, const MemoryRegion_t * const pxRegions ) FREERTOS_SYSTEM_CALL; +void MPU_vTaskDelete( TaskHandle_t xTaskToDelete ) FREERTOS_SYSTEM_CALL; +void MPU_vTaskDelay( const TickType_t xTicksToDelay ) FREERTOS_SYSTEM_CALL; +void MPU_vTaskDelayUntil( TickType_t * const pxPreviousWakeTime, const TickType_t xTimeIncrement ) FREERTOS_SYSTEM_CALL; +BaseType_t MPU_xTaskAbortDelay( TaskHandle_t xTask ) FREERTOS_SYSTEM_CALL; +UBaseType_t MPU_uxTaskPriorityGet( const TaskHandle_t xTask ) FREERTOS_SYSTEM_CALL; +eTaskState MPU_eTaskGetState( TaskHandle_t xTask ) FREERTOS_SYSTEM_CALL; +void MPU_vTaskGetInfo( TaskHandle_t xTask, TaskStatus_t *pxTaskStatus, BaseType_t xGetFreeStackSpace, eTaskState eState ) FREERTOS_SYSTEM_CALL; +void MPU_vTaskPrioritySet( TaskHandle_t xTask, UBaseType_t uxNewPriority ) FREERTOS_SYSTEM_CALL; +void MPU_vTaskSuspend( TaskHandle_t xTaskToSuspend ) FREERTOS_SYSTEM_CALL; +void MPU_vTaskResume( TaskHandle_t xTaskToResume ) FREERTOS_SYSTEM_CALL; +void MPU_vTaskStartScheduler( void ) FREERTOS_SYSTEM_CALL; +void MPU_vTaskSuspendAll( void ) FREERTOS_SYSTEM_CALL; +BaseType_t MPU_xTaskResumeAll( void ) FREERTOS_SYSTEM_CALL; +TickType_t MPU_xTaskGetTickCount( void ) FREERTOS_SYSTEM_CALL; +UBaseType_t MPU_uxTaskGetNumberOfTasks( void ) FREERTOS_SYSTEM_CALL; +char * MPU_pcTaskGetName( TaskHandle_t xTaskToQuery ) FREERTOS_SYSTEM_CALL; +TaskHandle_t MPU_xTaskGetHandle( const char *pcNameToQuery ) FREERTOS_SYSTEM_CALL; +UBaseType_t MPU_uxTaskGetStackHighWaterMark( TaskHandle_t xTask ) FREERTOS_SYSTEM_CALL; +configSTACK_DEPTH_TYPE MPU_uxTaskGetStackHighWaterMark2( TaskHandle_t xTask ) FREERTOS_SYSTEM_CALL; +void MPU_vTaskSetApplicationTaskTag( TaskHandle_t xTask, TaskHookFunction_t pxHookFunction ) FREERTOS_SYSTEM_CALL; +TaskHookFunction_t MPU_xTaskGetApplicationTaskTag( TaskHandle_t xTask ) FREERTOS_SYSTEM_CALL; +void MPU_vTaskSetThreadLocalStoragePointer( TaskHandle_t xTaskToSet, BaseType_t xIndex, void *pvValue ) FREERTOS_SYSTEM_CALL; +void * MPU_pvTaskGetThreadLocalStoragePointer( TaskHandle_t xTaskToQuery, BaseType_t xIndex ) FREERTOS_SYSTEM_CALL; +BaseType_t MPU_xTaskCallApplicationTaskHook( TaskHandle_t xTask, void *pvParameter ) FREERTOS_SYSTEM_CALL; +TaskHandle_t MPU_xTaskGetIdleTaskHandle( void ) FREERTOS_SYSTEM_CALL; +UBaseType_t MPU_uxTaskGetSystemState( TaskStatus_t * const pxTaskStatusArray, const UBaseType_t uxArraySize, uint32_t * const pulTotalRunTime ) FREERTOS_SYSTEM_CALL; +uint32_t MPU_ulTaskGetIdleRunTimeCounter( void ) FREERTOS_SYSTEM_CALL; +void MPU_vTaskList( char * pcWriteBuffer ) FREERTOS_SYSTEM_CALL; +void MPU_vTaskGetRunTimeStats( char *pcWriteBuffer ) FREERTOS_SYSTEM_CALL; +BaseType_t MPU_xTaskGenericNotify( TaskHandle_t xTaskToNotify, uint32_t ulValue, eNotifyAction eAction, uint32_t *pulPreviousNotificationValue ) FREERTOS_SYSTEM_CALL; +BaseType_t MPU_xTaskNotifyWait( uint32_t ulBitsToClearOnEntry, uint32_t ulBitsToClearOnExit, uint32_t *pulNotificationValue, TickType_t xTicksToWait ) FREERTOS_SYSTEM_CALL; +uint32_t MPU_ulTaskNotifyTake( BaseType_t xClearCountOnExit, TickType_t xTicksToWait ) FREERTOS_SYSTEM_CALL; +BaseType_t MPU_xTaskNotifyStateClear( TaskHandle_t xTask ) FREERTOS_SYSTEM_CALL; +uint32_t MPU_ulTaskNotifyValueClear( TaskHandle_t xTask, uint32_t ulBitsToClear ) FREERTOS_SYSTEM_CALL; +BaseType_t MPU_xTaskIncrementTick( void ) FREERTOS_SYSTEM_CALL; +TaskHandle_t MPU_xTaskGetCurrentTaskHandle( void ) FREERTOS_SYSTEM_CALL; +void MPU_vTaskSetTimeOutState( TimeOut_t * const pxTimeOut ) FREERTOS_SYSTEM_CALL; +BaseType_t MPU_xTaskCheckForTimeOut( TimeOut_t * const pxTimeOut, TickType_t * const pxTicksToWait ) FREERTOS_SYSTEM_CALL; +void MPU_vTaskMissedYield( void ) FREERTOS_SYSTEM_CALL; +BaseType_t MPU_xTaskGetSchedulerState( void ) FREERTOS_SYSTEM_CALL; +BaseType_t MPU_xTaskCatchUpTicks( TickType_t xTicksToCatchUp ) FREERTOS_SYSTEM_CALL; + +/* MPU versions of queue.h API functions. */ +BaseType_t MPU_xQueueGenericSend( QueueHandle_t xQueue, const void * const pvItemToQueue, TickType_t xTicksToWait, const BaseType_t xCopyPosition ) FREERTOS_SYSTEM_CALL; +BaseType_t MPU_xQueueReceive( QueueHandle_t xQueue, void * const pvBuffer, TickType_t xTicksToWait ) FREERTOS_SYSTEM_CALL; +BaseType_t MPU_xQueuePeek( QueueHandle_t xQueue, void * const pvBuffer, TickType_t xTicksToWait ) FREERTOS_SYSTEM_CALL; +BaseType_t MPU_xQueueSemaphoreTake( QueueHandle_t xQueue, TickType_t xTicksToWait ) FREERTOS_SYSTEM_CALL; +UBaseType_t MPU_uxQueueMessagesWaiting( const QueueHandle_t xQueue ) FREERTOS_SYSTEM_CALL; +UBaseType_t MPU_uxQueueSpacesAvailable( const QueueHandle_t xQueue ) FREERTOS_SYSTEM_CALL; +void MPU_vQueueDelete( QueueHandle_t xQueue ) FREERTOS_SYSTEM_CALL; +QueueHandle_t MPU_xQueueCreateMutex( const uint8_t ucQueueType ) FREERTOS_SYSTEM_CALL; +QueueHandle_t MPU_xQueueCreateMutexStatic( const uint8_t ucQueueType, StaticQueue_t *pxStaticQueue ) FREERTOS_SYSTEM_CALL; +QueueHandle_t MPU_xQueueCreateCountingSemaphore( const UBaseType_t uxMaxCount, const UBaseType_t uxInitialCount ) FREERTOS_SYSTEM_CALL; +QueueHandle_t MPU_xQueueCreateCountingSemaphoreStatic( const UBaseType_t uxMaxCount, const UBaseType_t uxInitialCount, StaticQueue_t *pxStaticQueue ) FREERTOS_SYSTEM_CALL; +TaskHandle_t MPU_xQueueGetMutexHolder( QueueHandle_t xSemaphore ) FREERTOS_SYSTEM_CALL; +BaseType_t MPU_xQueueTakeMutexRecursive( QueueHandle_t xMutex, TickType_t xTicksToWait ) FREERTOS_SYSTEM_CALL; +BaseType_t MPU_xQueueGiveMutexRecursive( QueueHandle_t pxMutex ) FREERTOS_SYSTEM_CALL; +void MPU_vQueueAddToRegistry( QueueHandle_t xQueue, const char *pcName ) FREERTOS_SYSTEM_CALL; +void MPU_vQueueUnregisterQueue( QueueHandle_t xQueue ) FREERTOS_SYSTEM_CALL; +const char * MPU_pcQueueGetName( QueueHandle_t xQueue ) FREERTOS_SYSTEM_CALL; +QueueHandle_t MPU_xQueueGenericCreate( const UBaseType_t uxQueueLength, const UBaseType_t uxItemSize, const uint8_t ucQueueType ) FREERTOS_SYSTEM_CALL; +QueueHandle_t MPU_xQueueGenericCreateStatic( const UBaseType_t uxQueueLength, const UBaseType_t uxItemSize, uint8_t *pucQueueStorage, StaticQueue_t *pxStaticQueue, const uint8_t ucQueueType ) FREERTOS_SYSTEM_CALL; +QueueSetHandle_t MPU_xQueueCreateSet( const UBaseType_t uxEventQueueLength ) FREERTOS_SYSTEM_CALL; +BaseType_t MPU_xQueueAddToSet( QueueSetMemberHandle_t xQueueOrSemaphore, QueueSetHandle_t xQueueSet ) FREERTOS_SYSTEM_CALL; +BaseType_t MPU_xQueueRemoveFromSet( QueueSetMemberHandle_t xQueueOrSemaphore, QueueSetHandle_t xQueueSet ) FREERTOS_SYSTEM_CALL; +QueueSetMemberHandle_t MPU_xQueueSelectFromSet( QueueSetHandle_t xQueueSet, const TickType_t xTicksToWait ) FREERTOS_SYSTEM_CALL; +BaseType_t MPU_xQueueGenericReset( QueueHandle_t xQueue, BaseType_t xNewQueue ) FREERTOS_SYSTEM_CALL; +void MPU_vQueueSetQueueNumber( QueueHandle_t xQueue, UBaseType_t uxQueueNumber ) FREERTOS_SYSTEM_CALL; +UBaseType_t MPU_uxQueueGetQueueNumber( QueueHandle_t xQueue ) FREERTOS_SYSTEM_CALL; +uint8_t MPU_ucQueueGetQueueType( QueueHandle_t xQueue ) FREERTOS_SYSTEM_CALL; + +/* MPU versions of timers.h API functions. */ +TimerHandle_t MPU_xTimerCreate( const char * const pcTimerName, const TickType_t xTimerPeriodInTicks, const UBaseType_t uxAutoReload, void * const pvTimerID, TimerCallbackFunction_t pxCallbackFunction ) FREERTOS_SYSTEM_CALL; +TimerHandle_t MPU_xTimerCreateStatic( const char * const pcTimerName, const TickType_t xTimerPeriodInTicks, const UBaseType_t uxAutoReload, void * const pvTimerID, TimerCallbackFunction_t pxCallbackFunction, StaticTimer_t *pxTimerBuffer ) FREERTOS_SYSTEM_CALL; +void * MPU_pvTimerGetTimerID( const TimerHandle_t xTimer ) FREERTOS_SYSTEM_CALL; +void MPU_vTimerSetTimerID( TimerHandle_t xTimer, void *pvNewID ) FREERTOS_SYSTEM_CALL; +BaseType_t MPU_xTimerIsTimerActive( TimerHandle_t xTimer ) FREERTOS_SYSTEM_CALL; +TaskHandle_t MPU_xTimerGetTimerDaemonTaskHandle( void ) FREERTOS_SYSTEM_CALL; +BaseType_t MPU_xTimerPendFunctionCall( PendedFunction_t xFunctionToPend, void *pvParameter1, uint32_t ulParameter2, TickType_t xTicksToWait ) FREERTOS_SYSTEM_CALL; +const char * MPU_pcTimerGetName( TimerHandle_t xTimer ) FREERTOS_SYSTEM_CALL; +void MPU_vTimerSetReloadMode( TimerHandle_t xTimer, const UBaseType_t uxAutoReload ) FREERTOS_SYSTEM_CALL; +UBaseType_t MPU_uxTimerGetReloadMode( TimerHandle_t xTimer ) FREERTOS_SYSTEM_CALL; +TickType_t MPU_xTimerGetPeriod( TimerHandle_t xTimer ) FREERTOS_SYSTEM_CALL; +TickType_t MPU_xTimerGetExpiryTime( TimerHandle_t xTimer ) FREERTOS_SYSTEM_CALL; +BaseType_t MPU_xTimerCreateTimerTask( void ) FREERTOS_SYSTEM_CALL; +BaseType_t MPU_xTimerGenericCommand( TimerHandle_t xTimer, const BaseType_t xCommandID, const TickType_t xOptionalValue, BaseType_t * const pxHigherPriorityTaskWoken, const TickType_t xTicksToWait ) FREERTOS_SYSTEM_CALL; + +/* MPU versions of event_group.h API functions. */ +EventGroupHandle_t MPU_xEventGroupCreate( void ) FREERTOS_SYSTEM_CALL; +EventGroupHandle_t MPU_xEventGroupCreateStatic( StaticEventGroup_t *pxEventGroupBuffer ) FREERTOS_SYSTEM_CALL; +EventBits_t MPU_xEventGroupWaitBits( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToWaitFor, const BaseType_t xClearOnExit, const BaseType_t xWaitForAllBits, TickType_t xTicksToWait ) FREERTOS_SYSTEM_CALL; +EventBits_t MPU_xEventGroupClearBits( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToClear ) FREERTOS_SYSTEM_CALL; +EventBits_t MPU_xEventGroupSetBits( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToSet ) FREERTOS_SYSTEM_CALL; +EventBits_t MPU_xEventGroupSync( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToSet, const EventBits_t uxBitsToWaitFor, TickType_t xTicksToWait ) FREERTOS_SYSTEM_CALL; +void MPU_vEventGroupDelete( EventGroupHandle_t xEventGroup ) FREERTOS_SYSTEM_CALL; +UBaseType_t MPU_uxEventGroupGetNumber( void* xEventGroup ) FREERTOS_SYSTEM_CALL; + +/* MPU versions of message/stream_buffer.h API functions. */ +size_t MPU_xStreamBufferSend( StreamBufferHandle_t xStreamBuffer, const void *pvTxData, size_t xDataLengthBytes, TickType_t xTicksToWait ) FREERTOS_SYSTEM_CALL; +size_t MPU_xStreamBufferReceive( StreamBufferHandle_t xStreamBuffer, void *pvRxData, size_t xBufferLengthBytes, TickType_t xTicksToWait ) FREERTOS_SYSTEM_CALL; +size_t MPU_xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) FREERTOS_SYSTEM_CALL; +void MPU_vStreamBufferDelete( StreamBufferHandle_t xStreamBuffer ) FREERTOS_SYSTEM_CALL; +BaseType_t MPU_xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) FREERTOS_SYSTEM_CALL; +BaseType_t MPU_xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) FREERTOS_SYSTEM_CALL; +BaseType_t MPU_xStreamBufferReset( StreamBufferHandle_t xStreamBuffer ) FREERTOS_SYSTEM_CALL; +size_t MPU_xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) FREERTOS_SYSTEM_CALL; +size_t MPU_xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) FREERTOS_SYSTEM_CALL; +BaseType_t MPU_xStreamBufferSetTriggerLevel( StreamBufferHandle_t xStreamBuffer, size_t xTriggerLevel ) FREERTOS_SYSTEM_CALL; +StreamBufferHandle_t MPU_xStreamBufferGenericCreate( size_t xBufferSizeBytes, size_t xTriggerLevelBytes, BaseType_t xIsMessageBuffer ) FREERTOS_SYSTEM_CALL; +StreamBufferHandle_t MPU_xStreamBufferGenericCreateStatic( size_t xBufferSizeBytes, size_t xTriggerLevelBytes, BaseType_t xIsMessageBuffer, uint8_t * const pucStreamBufferStorageArea, StaticStreamBuffer_t * const pxStaticStreamBuffer ) FREERTOS_SYSTEM_CALL; + + + +#endif /* MPU_PROTOTYPES_H */ + diff --git a/rtos/freertos/abstraction_layer_freertos/include/mpu_wrappers.h b/rtos/freertos/abstraction_layer_freertos/include/mpu_wrappers.h new file mode 100644 index 00000000..55a0ba33 --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/include/mpu_wrappers.h @@ -0,0 +1,189 @@ +/* + * FreeRTOS Kernel V10.3.0 + * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * + * http://www.FreeRTOS.org + * http://aws.amazon.com/freertos + * + * 1 tab == 4 spaces! + */ + +#ifndef MPU_WRAPPERS_H +#define MPU_WRAPPERS_H + +/* This file redefines API functions to be called through a wrapper macro, but +only for ports that are using the MPU. */ +#ifdef portUSING_MPU_WRAPPERS + + /* MPU_WRAPPERS_INCLUDED_FROM_API_FILE will be defined when this file is + included from queue.c or task.c to prevent it from having an effect within + those files. */ + #ifndef MPU_WRAPPERS_INCLUDED_FROM_API_FILE + + /* + * Map standard (non MPU) API functions to equivalents that start + * "MPU_". This will cause the application code to call the MPU_ + * version, which wraps the non-MPU version with privilege promoting + * then demoting code, so the kernel code always runs will full + * privileges. + */ + + /* Map standard tasks.h API functions to the MPU equivalents. */ + #define xTaskCreate MPU_xTaskCreate + #define xTaskCreateStatic MPU_xTaskCreateStatic + #define xTaskCreateRestricted MPU_xTaskCreateRestricted + #define vTaskAllocateMPURegions MPU_vTaskAllocateMPURegions + #define vTaskDelete MPU_vTaskDelete + #define vTaskDelay MPU_vTaskDelay + #define vTaskDelayUntil MPU_vTaskDelayUntil + #define xTaskAbortDelay MPU_xTaskAbortDelay + #define uxTaskPriorityGet MPU_uxTaskPriorityGet + #define eTaskGetState MPU_eTaskGetState + #define vTaskGetInfo MPU_vTaskGetInfo + #define vTaskPrioritySet MPU_vTaskPrioritySet + #define vTaskSuspend MPU_vTaskSuspend + #define vTaskResume MPU_vTaskResume + #define vTaskSuspendAll MPU_vTaskSuspendAll + #define xTaskResumeAll MPU_xTaskResumeAll + #define xTaskGetTickCount MPU_xTaskGetTickCount + #define uxTaskGetNumberOfTasks MPU_uxTaskGetNumberOfTasks + #define pcTaskGetName MPU_pcTaskGetName + #define xTaskGetHandle MPU_xTaskGetHandle + #define uxTaskGetStackHighWaterMark MPU_uxTaskGetStackHighWaterMark + #define uxTaskGetStackHighWaterMark2 MPU_uxTaskGetStackHighWaterMark2 + #define vTaskSetApplicationTaskTag MPU_vTaskSetApplicationTaskTag + #define xTaskGetApplicationTaskTag MPU_xTaskGetApplicationTaskTag + #define vTaskSetThreadLocalStoragePointer MPU_vTaskSetThreadLocalStoragePointer + #define pvTaskGetThreadLocalStoragePointer MPU_pvTaskGetThreadLocalStoragePointer + #define xTaskCallApplicationTaskHook MPU_xTaskCallApplicationTaskHook + #define xTaskGetIdleTaskHandle MPU_xTaskGetIdleTaskHandle + #define uxTaskGetSystemState MPU_uxTaskGetSystemState + #define vTaskList MPU_vTaskList + #define vTaskGetRunTimeStats MPU_vTaskGetRunTimeStats + #define ulTaskGetIdleRunTimeCounter MPU_ulTaskGetIdleRunTimeCounter + #define xTaskGenericNotify MPU_xTaskGenericNotify + #define xTaskNotifyWait MPU_xTaskNotifyWait + #define ulTaskNotifyTake MPU_ulTaskNotifyTake + #define xTaskNotifyStateClear MPU_xTaskNotifyStateClear + #define ulTaskNotifyValueClear MPU_ulTaskNotifyValueClear + #define xTaskCatchUpTicks MPU_xTaskCatchUpTicks + + #define xTaskGetCurrentTaskHandle MPU_xTaskGetCurrentTaskHandle + #define vTaskSetTimeOutState MPU_vTaskSetTimeOutState + #define xTaskCheckForTimeOut MPU_xTaskCheckForTimeOut + #define xTaskGetSchedulerState MPU_xTaskGetSchedulerState + + /* Map standard queue.h API functions to the MPU equivalents. */ + #define xQueueGenericSend MPU_xQueueGenericSend + #define xQueueReceive MPU_xQueueReceive + #define xQueuePeek MPU_xQueuePeek + #define xQueueSemaphoreTake MPU_xQueueSemaphoreTake + #define uxQueueMessagesWaiting MPU_uxQueueMessagesWaiting + #define uxQueueSpacesAvailable MPU_uxQueueSpacesAvailable + #define vQueueDelete MPU_vQueueDelete + #define xQueueCreateMutex MPU_xQueueCreateMutex + #define xQueueCreateMutexStatic MPU_xQueueCreateMutexStatic + #define xQueueCreateCountingSemaphore MPU_xQueueCreateCountingSemaphore + #define xQueueCreateCountingSemaphoreStatic MPU_xQueueCreateCountingSemaphoreStatic + #define xQueueGetMutexHolder MPU_xQueueGetMutexHolder + #define xQueueTakeMutexRecursive MPU_xQueueTakeMutexRecursive + #define xQueueGiveMutexRecursive MPU_xQueueGiveMutexRecursive + #define xQueueGenericCreate MPU_xQueueGenericCreate + #define xQueueGenericCreateStatic MPU_xQueueGenericCreateStatic + #define xQueueCreateSet MPU_xQueueCreateSet + #define xQueueAddToSet MPU_xQueueAddToSet + #define xQueueRemoveFromSet MPU_xQueueRemoveFromSet + #define xQueueSelectFromSet MPU_xQueueSelectFromSet + #define xQueueGenericReset MPU_xQueueGenericReset + + #if( configQUEUE_REGISTRY_SIZE > 0 ) + #define vQueueAddToRegistry MPU_vQueueAddToRegistry + #define vQueueUnregisterQueue MPU_vQueueUnregisterQueue + #define pcQueueGetName MPU_pcQueueGetName + #endif + + /* Map standard timer.h API functions to the MPU equivalents. */ + #define xTimerCreate MPU_xTimerCreate + #define xTimerCreateStatic MPU_xTimerCreateStatic + #define pvTimerGetTimerID MPU_pvTimerGetTimerID + #define vTimerSetTimerID MPU_vTimerSetTimerID + #define xTimerIsTimerActive MPU_xTimerIsTimerActive + #define xTimerGetTimerDaemonTaskHandle MPU_xTimerGetTimerDaemonTaskHandle + #define xTimerPendFunctionCall MPU_xTimerPendFunctionCall + #define pcTimerGetName MPU_pcTimerGetName + #define vTimerSetReloadMode MPU_vTimerSetReloadMode + #define uxTimerGetReloadMode MPU_uxTimerGetReloadMode + #define xTimerGetPeriod MPU_xTimerGetPeriod + #define xTimerGetExpiryTime MPU_xTimerGetExpiryTime + #define xTimerGenericCommand MPU_xTimerGenericCommand + + /* Map standard event_group.h API functions to the MPU equivalents. */ + #define xEventGroupCreate MPU_xEventGroupCreate + #define xEventGroupCreateStatic MPU_xEventGroupCreateStatic + #define xEventGroupWaitBits MPU_xEventGroupWaitBits + #define xEventGroupClearBits MPU_xEventGroupClearBits + #define xEventGroupSetBits MPU_xEventGroupSetBits + #define xEventGroupSync MPU_xEventGroupSync + #define vEventGroupDelete MPU_vEventGroupDelete + + /* Map standard message/stream_buffer.h API functions to the MPU + equivalents. */ + #define xStreamBufferSend MPU_xStreamBufferSend + #define xStreamBufferReceive MPU_xStreamBufferReceive + #define xStreamBufferNextMessageLengthBytes MPU_xStreamBufferNextMessageLengthBytes + #define vStreamBufferDelete MPU_vStreamBufferDelete + #define xStreamBufferIsFull MPU_xStreamBufferIsFull + #define xStreamBufferIsEmpty MPU_xStreamBufferIsEmpty + #define xStreamBufferReset MPU_xStreamBufferReset + #define xStreamBufferSpacesAvailable MPU_xStreamBufferSpacesAvailable + #define xStreamBufferBytesAvailable MPU_xStreamBufferBytesAvailable + #define xStreamBufferSetTriggerLevel MPU_xStreamBufferSetTriggerLevel + #define xStreamBufferGenericCreate MPU_xStreamBufferGenericCreate + #define xStreamBufferGenericCreateStatic MPU_xStreamBufferGenericCreateStatic + + + /* Remove the privileged function macro, but keep the PRIVILEGED_DATA + macro so applications can place data in privileged access sections + (useful when using statically allocated objects). */ + #define PRIVILEGED_FUNCTION + #define PRIVILEGED_DATA __attribute__((section("privileged_data"))) + #define FREERTOS_SYSTEM_CALL + + #else /* MPU_WRAPPERS_INCLUDED_FROM_API_FILE */ + + /* Ensure API functions go in the privileged execution section. */ + #define PRIVILEGED_FUNCTION __attribute__((section("privileged_functions"))) + #define PRIVILEGED_DATA __attribute__((section("privileged_data"))) + #define FREERTOS_SYSTEM_CALL __attribute__((section( "freertos_system_calls"))) + + #endif /* MPU_WRAPPERS_INCLUDED_FROM_API_FILE */ + +#else /* portUSING_MPU_WRAPPERS */ + + #define PRIVILEGED_FUNCTION + #define PRIVILEGED_DATA + #define FREERTOS_SYSTEM_CALL + #define portUSING_MPU_WRAPPERS 0 + +#endif /* portUSING_MPU_WRAPPERS */ + + +#endif /* MPU_WRAPPERS_H */ + diff --git a/rtos/freertos/abstraction_layer_freertos/include/portable.h b/rtos/freertos/abstraction_layer_freertos/include/portable.h new file mode 100644 index 00000000..a9cb726d --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/include/portable.h @@ -0,0 +1,199 @@ +/* + * FreeRTOS Kernel V10.3.0 + * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * + * http://www.FreeRTOS.org + * http://aws.amazon.com/freertos + * + * 1 tab == 4 spaces! + */ + +/*----------------------------------------------------------- + * Portable layer API. Each function must be defined for each port. + *----------------------------------------------------------*/ + +#ifndef PORTABLE_H +#define PORTABLE_H + +/* Each FreeRTOS port has a unique portmacro.h header file. Originally a +pre-processor definition was used to ensure the pre-processor found the correct +portmacro.h file for the port being used. That scheme was deprecated in favour +of setting the compiler's include path such that it found the correct +portmacro.h file - removing the need for the constant and allowing the +portmacro.h file to be located anywhere in relation to the port being used. +Purely for reasons of backward compatibility the old method is still valid, but +to make it clear that new projects should not use it, support for the port +specific constants has been moved into the deprecated_definitions.h header +file. */ +#include "deprecated_definitions.h" + +/* If portENTER_CRITICAL is not defined then including deprecated_definitions.h +did not result in a portmacro.h header file being included - and it should be +included here. In this case the path to the correct portmacro.h header file +must be set in the compiler's include path. */ +#ifndef portENTER_CRITICAL + #include "portmacro.h" +#endif + +#if portBYTE_ALIGNMENT == 32 + #define portBYTE_ALIGNMENT_MASK ( 0x001f ) +#endif + +#if portBYTE_ALIGNMENT == 16 + #define portBYTE_ALIGNMENT_MASK ( 0x000f ) +#endif + +#if portBYTE_ALIGNMENT == 8 + #define portBYTE_ALIGNMENT_MASK ( 0x0007 ) +#endif + +#if portBYTE_ALIGNMENT == 4 + #define portBYTE_ALIGNMENT_MASK ( 0x0003 ) +#endif + +#if portBYTE_ALIGNMENT == 2 + #define portBYTE_ALIGNMENT_MASK ( 0x0001 ) +#endif + +#if portBYTE_ALIGNMENT == 1 + #define portBYTE_ALIGNMENT_MASK ( 0x0000 ) +#endif + +#ifndef portBYTE_ALIGNMENT_MASK + #error "Invalid portBYTE_ALIGNMENT definition" +#endif + +#ifndef portNUM_CONFIGURABLE_REGIONS + #define portNUM_CONFIGURABLE_REGIONS 1 +#endif + +#ifndef portHAS_STACK_OVERFLOW_CHECKING + #define portHAS_STACK_OVERFLOW_CHECKING 0 +#endif + +#ifndef portARCH_NAME + #define portARCH_NAME NULL +#endif + +#ifdef __cplusplus +extern "C" { +#endif + +#include "mpu_wrappers.h" + +/* + * Setup the stack of a new task so it is ready to be placed under the + * scheduler control. The registers have to be placed on the stack in + * the order that the port expects to find them. + * + */ +#if( portUSING_MPU_WRAPPERS == 1 ) + #if( portHAS_STACK_OVERFLOW_CHECKING == 1 ) + StackType_t *pxPortInitialiseStack( StackType_t *pxTopOfStack, StackType_t *pxEndOfStack, TaskFunction_t pxCode, void *pvParameters, BaseType_t xRunPrivileged ) PRIVILEGED_FUNCTION; + #else + StackType_t *pxPortInitialiseStack( StackType_t *pxTopOfStack, TaskFunction_t pxCode, void *pvParameters, BaseType_t xRunPrivileged ) PRIVILEGED_FUNCTION; + #endif +#else + #if( portHAS_STACK_OVERFLOW_CHECKING == 1 ) + StackType_t *pxPortInitialiseStack( StackType_t *pxTopOfStack, StackType_t *pxEndOfStack, TaskFunction_t pxCode, void *pvParameters ) PRIVILEGED_FUNCTION; + #else + StackType_t *pxPortInitialiseStack( StackType_t *pxTopOfStack, TaskFunction_t pxCode, void *pvParameters ) PRIVILEGED_FUNCTION; + #endif +#endif + +/* Used by heap_5.c to define the start address and size of each memory region +that together comprise the total FreeRTOS heap space. */ +typedef struct HeapRegion +{ + uint8_t *pucStartAddress; + size_t xSizeInBytes; +} HeapRegion_t; + +/* Used to pass information about the heap out of vPortGetHeapStats(). */ +typedef struct xHeapStats +{ + size_t xAvailableHeapSpaceInBytes; /* The total heap size currently available - this is the sum of all the free blocks, not the largest block that can be allocated. */ + size_t xSizeOfLargestFreeBlockInBytes; /* The maximum size, in bytes, of all the free blocks within the heap at the time vPortGetHeapStats() is called. */ + size_t xSizeOfSmallestFreeBlockInBytes; /* The minimum size, in bytes, of all the free blocks within the heap at the time vPortGetHeapStats() is called. */ + size_t xNumberOfFreeBlocks; /* The number of free memory blocks within the heap at the time vPortGetHeapStats() is called. */ + size_t xMinimumEverFreeBytesRemaining; /* The minimum amount of total free memory (sum of all free blocks) there has been in the heap since the system booted. */ + size_t xNumberOfSuccessfulAllocations; /* The number of calls to pvPortMalloc() that have returned a valid memory block. */ + size_t xNumberOfSuccessfulFrees; /* The number of calls to vPortFree() that has successfully freed a block of memory. */ +} HeapStats_t; + +/* + * Used to define multiple heap regions for use by heap_5.c. This function + * must be called before any calls to pvPortMalloc() - not creating a task, + * queue, semaphore, mutex, software timer, event group, etc. will result in + * pvPortMalloc being called. + * + * pxHeapRegions passes in an array of HeapRegion_t structures - each of which + * defines a region of memory that can be used as the heap. The array is + * terminated by a HeapRegions_t structure that has a size of 0. The region + * with the lowest start address must appear first in the array. + */ +void vPortDefineHeapRegions( const HeapRegion_t * const pxHeapRegions ) PRIVILEGED_FUNCTION; + +/* + * Returns a HeapStats_t structure filled with information about the current + * heap state. + */ +void vPortGetHeapStats( HeapStats_t *pxHeapStats ); + +/* + * Map to the memory management routines required for the port. + */ +void *pvPortMalloc( size_t xSize ) PRIVILEGED_FUNCTION; +void vPortFree( void *pv ) PRIVILEGED_FUNCTION; +void vPortInitialiseBlocks( void ) PRIVILEGED_FUNCTION; +size_t xPortGetFreeHeapSize( void ) PRIVILEGED_FUNCTION; +size_t xPortGetMinimumEverFreeHeapSize( void ) PRIVILEGED_FUNCTION; + +/* + * Setup the hardware ready for the scheduler to take control. This generally + * sets up a tick interrupt and sets timers for the correct tick frequency. + */ +BaseType_t xPortStartScheduler( void ) PRIVILEGED_FUNCTION; + +/* + * Undo any hardware/ISR setup that was performed by xPortStartScheduler() so + * the hardware is left in its original condition after the scheduler stops + * executing. + */ +void vPortEndScheduler( void ) PRIVILEGED_FUNCTION; + +/* + * The structures and methods of manipulating the MPU are contained within the + * port layer. + * + * Fills the xMPUSettings structure with the memory region information + * contained in xRegions. + */ +#if( portUSING_MPU_WRAPPERS == 1 ) + struct xMEMORY_REGION; + void vPortStoreTaskMPUSettings( xMPU_SETTINGS *xMPUSettings, const struct xMEMORY_REGION * const xRegions, StackType_t *pxBottomOfStack, uint32_t ulStackDepth ) PRIVILEGED_FUNCTION; +#endif + +#ifdef __cplusplus +} +#endif + +#endif /* PORTABLE_H */ + diff --git a/rtos/freertos/abstraction_layer_freertos/include/projdefs.h b/rtos/freertos/abstraction_layer_freertos/include/projdefs.h new file mode 100644 index 00000000..19a6b8f3 --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/include/projdefs.h @@ -0,0 +1,124 @@ +/* + * FreeRTOS Kernel V10.3.0 + * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * + * http://www.FreeRTOS.org + * http://aws.amazon.com/freertos + * + * 1 tab == 4 spaces! + */ + +#ifndef PROJDEFS_H +#define PROJDEFS_H + +/* + * Defines the prototype to which task functions must conform. Defined in this + * file to ensure the type is known before portable.h is included. + */ +typedef void (*TaskFunction_t)( void * ); + +/* Converts a time in milliseconds to a time in ticks. This macro can be +overridden by a macro of the same name defined in FreeRTOSConfig.h in case the +definition here is not suitable for your application. */ +#ifndef pdMS_TO_TICKS + #define pdMS_TO_TICKS( xTimeInMs ) ( ( TickType_t ) ( ( ( TickType_t ) ( xTimeInMs ) * ( TickType_t ) configTICK_RATE_HZ ) / ( TickType_t ) 1000 ) ) +#endif + +#define pdFALSE ( ( BaseType_t ) 0 ) +#define pdTRUE ( ( BaseType_t ) 1 ) + +#define pdPASS ( pdTRUE ) +#define pdFAIL ( pdFALSE ) +#define errQUEUE_EMPTY ( ( BaseType_t ) 0 ) +#define errQUEUE_FULL ( ( BaseType_t ) 0 ) + +/* FreeRTOS error definitions. */ +#define errCOULD_NOT_ALLOCATE_REQUIRED_MEMORY ( -1 ) +#define errQUEUE_BLOCKED ( -4 ) +#define errQUEUE_YIELD ( -5 ) + +/* Macros used for basic data corruption checks. */ +#ifndef configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES + #define configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES 0 +#endif + +#if( configUSE_16_BIT_TICKS == 1 ) + #define pdINTEGRITY_CHECK_VALUE 0x5a5a +#else + #define pdINTEGRITY_CHECK_VALUE 0x5a5a5a5aUL +#endif + +/* The following errno values are used by FreeRTOS+ components, not FreeRTOS +itself. */ +#define pdFREERTOS_ERRNO_NONE 0 /* No errors */ +#define pdFREERTOS_ERRNO_ENOENT 2 /* No such file or directory */ +#define pdFREERTOS_ERRNO_EINTR 4 /* Interrupted system call */ +#define pdFREERTOS_ERRNO_EIO 5 /* I/O error */ +#define pdFREERTOS_ERRNO_ENXIO 6 /* No such device or address */ +#define pdFREERTOS_ERRNO_EBADF 9 /* Bad file number */ +#define pdFREERTOS_ERRNO_EAGAIN 11 /* No more processes */ +#define pdFREERTOS_ERRNO_EWOULDBLOCK 11 /* Operation would block */ +#define pdFREERTOS_ERRNO_ENOMEM 12 /* Not enough memory */ +#define pdFREERTOS_ERRNO_EACCES 13 /* Permission denied */ +#define pdFREERTOS_ERRNO_EFAULT 14 /* Bad address */ +#define pdFREERTOS_ERRNO_EBUSY 16 /* Mount device busy */ +#define pdFREERTOS_ERRNO_EEXIST 17 /* File exists */ +#define pdFREERTOS_ERRNO_EXDEV 18 /* Cross-device link */ +#define pdFREERTOS_ERRNO_ENODEV 19 /* No such device */ +#define pdFREERTOS_ERRNO_ENOTDIR 20 /* Not a directory */ +#define pdFREERTOS_ERRNO_EISDIR 21 /* Is a directory */ +#define pdFREERTOS_ERRNO_EINVAL 22 /* Invalid argument */ +#define pdFREERTOS_ERRNO_ENOSPC 28 /* No space left on device */ +#define pdFREERTOS_ERRNO_ESPIPE 29 /* Illegal seek */ +#define pdFREERTOS_ERRNO_EROFS 30 /* Read only file system */ +#define pdFREERTOS_ERRNO_EUNATCH 42 /* Protocol driver not attached */ +#define pdFREERTOS_ERRNO_EBADE 50 /* Invalid exchange */ +#define pdFREERTOS_ERRNO_EFTYPE 79 /* Inappropriate file type or format */ +#define pdFREERTOS_ERRNO_ENMFILE 89 /* No more files */ +#define pdFREERTOS_ERRNO_ENOTEMPTY 90 /* Directory not empty */ +#define pdFREERTOS_ERRNO_ENAMETOOLONG 91 /* File or path name too long */ +#define pdFREERTOS_ERRNO_EOPNOTSUPP 95 /* Operation not supported on transport endpoint */ +#define pdFREERTOS_ERRNO_ENOBUFS 105 /* No buffer space available */ +#define pdFREERTOS_ERRNO_ENOPROTOOPT 109 /* Protocol not available */ +#define pdFREERTOS_ERRNO_EADDRINUSE 112 /* Address already in use */ +#define pdFREERTOS_ERRNO_ETIMEDOUT 116 /* Connection timed out */ +#define pdFREERTOS_ERRNO_EINPROGRESS 119 /* Connection already in progress */ +#define pdFREERTOS_ERRNO_EALREADY 120 /* Socket already connected */ +#define pdFREERTOS_ERRNO_EADDRNOTAVAIL 125 /* Address not available */ +#define pdFREERTOS_ERRNO_EISCONN 127 /* Socket is already connected */ +#define pdFREERTOS_ERRNO_ENOTCONN 128 /* Socket is not connected */ +#define pdFREERTOS_ERRNO_ENOMEDIUM 135 /* No medium inserted */ +#define pdFREERTOS_ERRNO_EILSEQ 138 /* An invalid UTF-16 sequence was encountered. */ +#define pdFREERTOS_ERRNO_ECANCELED 140 /* Operation canceled. */ + +/* The following endian values are used by FreeRTOS+ components, not FreeRTOS +itself. */ +#define pdFREERTOS_LITTLE_ENDIAN 0 +#define pdFREERTOS_BIG_ENDIAN 1 + +/* Re-defining endian values for generic naming. */ +#define pdLITTLE_ENDIAN pdFREERTOS_LITTLE_ENDIAN +#define pdBIG_ENDIAN pdFREERTOS_BIG_ENDIAN + + +#endif /* PROJDEFS_H */ + + + diff --git a/rtos/freertos/abstraction_layer_freertos/include/queue.h b/rtos/freertos/abstraction_layer_freertos/include/queue.h new file mode 100644 index 00000000..a0439c52 --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/include/queue.h @@ -0,0 +1,1655 @@ +/* + * FreeRTOS Kernel V10.3.0 + * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * + * http://www.FreeRTOS.org + * http://aws.amazon.com/freertos + * + * 1 tab == 4 spaces! + */ + + +#ifndef QUEUE_H +#define QUEUE_H + +#ifndef INC_FREERTOS_H + #error "include FreeRTOS.h" must appear in source files before "include queue.h" +#endif + +#ifdef __cplusplus +extern "C" { +#endif + +#include "task.h" + +/** + * Type by which queues are referenced. For example, a call to xQueueCreate() + * returns an QueueHandle_t variable that can then be used as a parameter to + * xQueueSend(), xQueueReceive(), etc. + */ +struct QueueDefinition; /* Using old naming convention so as not to break kernel aware debuggers. */ +typedef struct QueueDefinition * QueueHandle_t; + +/** + * Type by which queue sets are referenced. For example, a call to + * xQueueCreateSet() returns an xQueueSet variable that can then be used as a + * parameter to xQueueSelectFromSet(), xQueueAddToSet(), etc. + */ +typedef struct QueueDefinition * QueueSetHandle_t; + +/** + * Queue sets can contain both queues and semaphores, so the + * QueueSetMemberHandle_t is defined as a type to be used where a parameter or + * return value can be either an QueueHandle_t or an SemaphoreHandle_t. + */ +typedef struct QueueDefinition * QueueSetMemberHandle_t; + +/* For internal use only. */ +#define queueSEND_TO_BACK ( ( BaseType_t ) 0 ) +#define queueSEND_TO_FRONT ( ( BaseType_t ) 1 ) +#define queueOVERWRITE ( ( BaseType_t ) 2 ) + +/* For internal use only. These definitions *must* match those in queue.c. */ +#define queueQUEUE_TYPE_BASE ( ( uint8_t ) 0U ) +#define queueQUEUE_TYPE_SET ( ( uint8_t ) 0U ) +#define queueQUEUE_TYPE_MUTEX ( ( uint8_t ) 1U ) +#define queueQUEUE_TYPE_COUNTING_SEMAPHORE ( ( uint8_t ) 2U ) +#define queueQUEUE_TYPE_BINARY_SEMAPHORE ( ( uint8_t ) 3U ) +#define queueQUEUE_TYPE_RECURSIVE_MUTEX ( ( uint8_t ) 4U ) + +/** + * queue. h + *
+ QueueHandle_t xQueueCreate(
+							  UBaseType_t uxQueueLength,
+							  UBaseType_t uxItemSize
+						  );
+ * 
+ * + * Creates a new queue instance, and returns a handle by which the new queue + * can be referenced. + * + * Internally, within the FreeRTOS implementation, queues use two blocks of + * memory. The first block is used to hold the queue's data structures. The + * second block is used to hold items placed into the queue. If a queue is + * created using xQueueCreate() then both blocks of memory are automatically + * dynamically allocated inside the xQueueCreate() function. (see + * http://www.freertos.org/a00111.html). If a queue is created using + * xQueueCreateStatic() then the application writer must provide the memory that + * will get used by the queue. xQueueCreateStatic() therefore allows a queue to + * be created without using any dynamic memory allocation. + * + * http://www.FreeRTOS.org/Embedded-RTOS-Queues.html + * + * @param uxQueueLength The maximum number of items that the queue can contain. + * + * @param uxItemSize The number of bytes each item in the queue will require. + * Items are queued by copy, not by reference, so this is the number of bytes + * that will be copied for each posted item. Each item on the queue must be + * the same size. + * + * @return If the queue is successfully create then a handle to the newly + * created queue is returned. If the queue cannot be created then 0 is + * returned. + * + * Example usage: +
+ struct AMessage
+ {
+	char ucMessageID;
+	char ucData[ 20 ];
+ };
+
+ void vATask( void *pvParameters )
+ {
+ QueueHandle_t xQueue1, xQueue2;
+
+	// Create a queue capable of containing 10 uint32_t values.
+	xQueue1 = xQueueCreate( 10, sizeof( uint32_t ) );
+	if( xQueue1 == 0 )
+	{
+		// Queue was not created and must not be used.
+	}
+
+	// Create a queue capable of containing 10 pointers to AMessage structures.
+	// These should be passed by pointer as they contain a lot of data.
+	xQueue2 = xQueueCreate( 10, sizeof( struct AMessage * ) );
+	if( xQueue2 == 0 )
+	{
+		// Queue was not created and must not be used.
+	}
+
+	// ... Rest of task code.
+ }
+ 
+ * \defgroup xQueueCreate xQueueCreate + * \ingroup QueueManagement + */ +#if( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) + #define xQueueCreate( uxQueueLength, uxItemSize ) xQueueGenericCreate( ( uxQueueLength ), ( uxItemSize ), ( queueQUEUE_TYPE_BASE ) ) +#endif + +/** + * queue. h + *
+ QueueHandle_t xQueueCreateStatic(
+							  UBaseType_t uxQueueLength,
+							  UBaseType_t uxItemSize,
+							  uint8_t *pucQueueStorageBuffer,
+							  StaticQueue_t *pxQueueBuffer
+						  );
+ * 
+ * + * Creates a new queue instance, and returns a handle by which the new queue + * can be referenced. + * + * Internally, within the FreeRTOS implementation, queues use two blocks of + * memory. The first block is used to hold the queue's data structures. The + * second block is used to hold items placed into the queue. If a queue is + * created using xQueueCreate() then both blocks of memory are automatically + * dynamically allocated inside the xQueueCreate() function. (see + * http://www.freertos.org/a00111.html). If a queue is created using + * xQueueCreateStatic() then the application writer must provide the memory that + * will get used by the queue. xQueueCreateStatic() therefore allows a queue to + * be created without using any dynamic memory allocation. + * + * http://www.FreeRTOS.org/Embedded-RTOS-Queues.html + * + * @param uxQueueLength The maximum number of items that the queue can contain. + * + * @param uxItemSize The number of bytes each item in the queue will require. + * Items are queued by copy, not by reference, so this is the number of bytes + * that will be copied for each posted item. Each item on the queue must be + * the same size. + * + * @param pucQueueStorageBuffer If uxItemSize is not zero then + * pucQueueStorageBuffer must point to a uint8_t array that is at least large + * enough to hold the maximum number of items that can be in the queue at any + * one time - which is ( uxQueueLength * uxItemsSize ) bytes. If uxItemSize is + * zero then pucQueueStorageBuffer can be NULL. + * + * @param pxQueueBuffer Must point to a variable of type StaticQueue_t, which + * will be used to hold the queue's data structure. + * + * @return If the queue is created then a handle to the created queue is + * returned. If pxQueueBuffer is NULL then NULL is returned. + * + * Example usage: +
+ struct AMessage
+ {
+	char ucMessageID;
+	char ucData[ 20 ];
+ };
+
+ #define QUEUE_LENGTH 10
+ #define ITEM_SIZE sizeof( uint32_t )
+
+ // xQueueBuffer will hold the queue structure.
+ StaticQueue_t xQueueBuffer;
+
+ // ucQueueStorage will hold the items posted to the queue.  Must be at least
+ // [(queue length) * ( queue item size)] bytes long.
+ uint8_t ucQueueStorage[ QUEUE_LENGTH * ITEM_SIZE ];
+
+ void vATask( void *pvParameters )
+ {
+ QueueHandle_t xQueue1;
+
+	// Create a queue capable of containing 10 uint32_t values.
+	xQueue1 = xQueueCreate( QUEUE_LENGTH, // The number of items the queue can hold.
+							ITEM_SIZE	  // The size of each item in the queue
+							&( ucQueueStorage[ 0 ] ), // The buffer that will hold the items in the queue.
+							&xQueueBuffer ); // The buffer that will hold the queue structure.
+
+	// The queue is guaranteed to be created successfully as no dynamic memory
+	// allocation is used.  Therefore xQueue1 is now a handle to a valid queue.
+
+	// ... Rest of task code.
+ }
+ 
+ * \defgroup xQueueCreateStatic xQueueCreateStatic + * \ingroup QueueManagement + */ +#if( configSUPPORT_STATIC_ALLOCATION == 1 ) + #define xQueueCreateStatic( uxQueueLength, uxItemSize, pucQueueStorage, pxQueueBuffer ) xQueueGenericCreateStatic( ( uxQueueLength ), ( uxItemSize ), ( pucQueueStorage ), ( pxQueueBuffer ), ( queueQUEUE_TYPE_BASE ) ) +#endif /* configSUPPORT_STATIC_ALLOCATION */ + +/** + * queue. h + *
+ BaseType_t xQueueSendToToFront(
+								   QueueHandle_t	xQueue,
+								   const void		*pvItemToQueue,
+								   TickType_t		xTicksToWait
+							   );
+ * 
+ * + * Post an item to the front of a queue. The item is queued by copy, not by + * reference. This function must not be called from an interrupt service + * routine. See xQueueSendFromISR () for an alternative which may be used + * in an ISR. + * + * @param xQueue The handle to the queue on which the item is to be posted. + * + * @param pvItemToQueue A pointer to the item that is to be placed on the + * queue. The size of the items the queue will hold was defined when the + * queue was created, so this many bytes will be copied from pvItemToQueue + * into the queue storage area. + * + * @param xTicksToWait The maximum amount of time the task should block + * waiting for space to become available on the queue, should it already + * be full. The call will return immediately if this is set to 0 and the + * queue is full. The time is defined in tick periods so the constant + * portTICK_PERIOD_MS should be used to convert to real time if this is required. + * + * @return pdTRUE if the item was successfully posted, otherwise errQUEUE_FULL. + * + * Example usage: +
+ struct AMessage
+ {
+	char ucMessageID;
+	char ucData[ 20 ];
+ } xMessage;
+
+ uint32_t ulVar = 10UL;
+
+ void vATask( void *pvParameters )
+ {
+ QueueHandle_t xQueue1, xQueue2;
+ struct AMessage *pxMessage;
+
+	// Create a queue capable of containing 10 uint32_t values.
+	xQueue1 = xQueueCreate( 10, sizeof( uint32_t ) );
+
+	// Create a queue capable of containing 10 pointers to AMessage structures.
+	// These should be passed by pointer as they contain a lot of data.
+	xQueue2 = xQueueCreate( 10, sizeof( struct AMessage * ) );
+
+	// ...
+
+	if( xQueue1 != 0 )
+	{
+		// Send an uint32_t.  Wait for 10 ticks for space to become
+		// available if necessary.
+		if( xQueueSendToFront( xQueue1, ( void * ) &ulVar, ( TickType_t ) 10 ) != pdPASS )
+		{
+			// Failed to post the message, even after 10 ticks.
+		}
+	}
+
+	if( xQueue2 != 0 )
+	{
+		// Send a pointer to a struct AMessage object.  Don't block if the
+		// queue is already full.
+		pxMessage = & xMessage;
+		xQueueSendToFront( xQueue2, ( void * ) &pxMessage, ( TickType_t ) 0 );
+	}
+
+	// ... Rest of task code.
+ }
+ 
+ * \defgroup xQueueSend xQueueSend + * \ingroup QueueManagement + */ +#define xQueueSendToFront( xQueue, pvItemToQueue, xTicksToWait ) xQueueGenericSend( ( xQueue ), ( pvItemToQueue ), ( xTicksToWait ), queueSEND_TO_FRONT ) + +/** + * queue. h + *
+ BaseType_t xQueueSendToBack(
+								   QueueHandle_t	xQueue,
+								   const void		*pvItemToQueue,
+								   TickType_t		xTicksToWait
+							   );
+ * 
+ * + * This is a macro that calls xQueueGenericSend(). + * + * Post an item to the back of a queue. The item is queued by copy, not by + * reference. This function must not be called from an interrupt service + * routine. See xQueueSendFromISR () for an alternative which may be used + * in an ISR. + * + * @param xQueue The handle to the queue on which the item is to be posted. + * + * @param pvItemToQueue A pointer to the item that is to be placed on the + * queue. The size of the items the queue will hold was defined when the + * queue was created, so this many bytes will be copied from pvItemToQueue + * into the queue storage area. + * + * @param xTicksToWait The maximum amount of time the task should block + * waiting for space to become available on the queue, should it already + * be full. The call will return immediately if this is set to 0 and the queue + * is full. The time is defined in tick periods so the constant + * portTICK_PERIOD_MS should be used to convert to real time if this is required. + * + * @return pdTRUE if the item was successfully posted, otherwise errQUEUE_FULL. + * + * Example usage: +
+ struct AMessage
+ {
+	char ucMessageID;
+	char ucData[ 20 ];
+ } xMessage;
+
+ uint32_t ulVar = 10UL;
+
+ void vATask( void *pvParameters )
+ {
+ QueueHandle_t xQueue1, xQueue2;
+ struct AMessage *pxMessage;
+
+	// Create a queue capable of containing 10 uint32_t values.
+	xQueue1 = xQueueCreate( 10, sizeof( uint32_t ) );
+
+	// Create a queue capable of containing 10 pointers to AMessage structures.
+	// These should be passed by pointer as they contain a lot of data.
+	xQueue2 = xQueueCreate( 10, sizeof( struct AMessage * ) );
+
+	// ...
+
+	if( xQueue1 != 0 )
+	{
+		// Send an uint32_t.  Wait for 10 ticks for space to become
+		// available if necessary.
+		if( xQueueSendToBack( xQueue1, ( void * ) &ulVar, ( TickType_t ) 10 ) != pdPASS )
+		{
+			// Failed to post the message, even after 10 ticks.
+		}
+	}
+
+	if( xQueue2 != 0 )
+	{
+		// Send a pointer to a struct AMessage object.  Don't block if the
+		// queue is already full.
+		pxMessage = & xMessage;
+		xQueueSendToBack( xQueue2, ( void * ) &pxMessage, ( TickType_t ) 0 );
+	}
+
+	// ... Rest of task code.
+ }
+ 
+ * \defgroup xQueueSend xQueueSend + * \ingroup QueueManagement + */ +#define xQueueSendToBack( xQueue, pvItemToQueue, xTicksToWait ) xQueueGenericSend( ( xQueue ), ( pvItemToQueue ), ( xTicksToWait ), queueSEND_TO_BACK ) + +/** + * queue. h + *
+ BaseType_t xQueueSend(
+							  QueueHandle_t xQueue,
+							  const void * pvItemToQueue,
+							  TickType_t xTicksToWait
+						 );
+ * 
+ * + * This is a macro that calls xQueueGenericSend(). It is included for + * backward compatibility with versions of FreeRTOS.org that did not + * include the xQueueSendToFront() and xQueueSendToBack() macros. It is + * equivalent to xQueueSendToBack(). + * + * Post an item on a queue. The item is queued by copy, not by reference. + * This function must not be called from an interrupt service routine. + * See xQueueSendFromISR () for an alternative which may be used in an ISR. + * + * @param xQueue The handle to the queue on which the item is to be posted. + * + * @param pvItemToQueue A pointer to the item that is to be placed on the + * queue. The size of the items the queue will hold was defined when the + * queue was created, so this many bytes will be copied from pvItemToQueue + * into the queue storage area. + * + * @param xTicksToWait The maximum amount of time the task should block + * waiting for space to become available on the queue, should it already + * be full. The call will return immediately if this is set to 0 and the + * queue is full. The time is defined in tick periods so the constant + * portTICK_PERIOD_MS should be used to convert to real time if this is required. + * + * @return pdTRUE if the item was successfully posted, otherwise errQUEUE_FULL. + * + * Example usage: +
+ struct AMessage
+ {
+	char ucMessageID;
+	char ucData[ 20 ];
+ } xMessage;
+
+ uint32_t ulVar = 10UL;
+
+ void vATask( void *pvParameters )
+ {
+ QueueHandle_t xQueue1, xQueue2;
+ struct AMessage *pxMessage;
+
+	// Create a queue capable of containing 10 uint32_t values.
+	xQueue1 = xQueueCreate( 10, sizeof( uint32_t ) );
+
+	// Create a queue capable of containing 10 pointers to AMessage structures.
+	// These should be passed by pointer as they contain a lot of data.
+	xQueue2 = xQueueCreate( 10, sizeof( struct AMessage * ) );
+
+	// ...
+
+	if( xQueue1 != 0 )
+	{
+		// Send an uint32_t.  Wait for 10 ticks for space to become
+		// available if necessary.
+		if( xQueueSend( xQueue1, ( void * ) &ulVar, ( TickType_t ) 10 ) != pdPASS )
+		{
+			// Failed to post the message, even after 10 ticks.
+		}
+	}
+
+	if( xQueue2 != 0 )
+	{
+		// Send a pointer to a struct AMessage object.  Don't block if the
+		// queue is already full.
+		pxMessage = & xMessage;
+		xQueueSend( xQueue2, ( void * ) &pxMessage, ( TickType_t ) 0 );
+	}
+
+	// ... Rest of task code.
+ }
+ 
+ * \defgroup xQueueSend xQueueSend + * \ingroup QueueManagement + */ +#define xQueueSend( xQueue, pvItemToQueue, xTicksToWait ) xQueueGenericSend( ( xQueue ), ( pvItemToQueue ), ( xTicksToWait ), queueSEND_TO_BACK ) + +/** + * queue. h + *
+ BaseType_t xQueueOverwrite(
+							  QueueHandle_t xQueue,
+							  const void * pvItemToQueue
+						 );
+ * 
+ * + * Only for use with queues that have a length of one - so the queue is either + * empty or full. + * + * Post an item on a queue. If the queue is already full then overwrite the + * value held in the queue. The item is queued by copy, not by reference. + * + * This function must not be called from an interrupt service routine. + * See xQueueOverwriteFromISR () for an alternative which may be used in an ISR. + * + * @param xQueue The handle of the queue to which the data is being sent. + * + * @param pvItemToQueue A pointer to the item that is to be placed on the + * queue. The size of the items the queue will hold was defined when the + * queue was created, so this many bytes will be copied from pvItemToQueue + * into the queue storage area. + * + * @return xQueueOverwrite() is a macro that calls xQueueGenericSend(), and + * therefore has the same return values as xQueueSendToFront(). However, pdPASS + * is the only value that can be returned because xQueueOverwrite() will write + * to the queue even when the queue is already full. + * + * Example usage: +
+
+ void vFunction( void *pvParameters )
+ {
+ QueueHandle_t xQueue;
+ uint32_t ulVarToSend, ulValReceived;
+
+	// Create a queue to hold one uint32_t value.  It is strongly
+	// recommended *not* to use xQueueOverwrite() on queues that can
+	// contain more than one value, and doing so will trigger an assertion
+	// if configASSERT() is defined.
+	xQueue = xQueueCreate( 1, sizeof( uint32_t ) );
+
+	// Write the value 10 to the queue using xQueueOverwrite().
+	ulVarToSend = 10;
+	xQueueOverwrite( xQueue, &ulVarToSend );
+
+	// Peeking the queue should now return 10, but leave the value 10 in
+	// the queue.  A block time of zero is used as it is known that the
+	// queue holds a value.
+	ulValReceived = 0;
+	xQueuePeek( xQueue, &ulValReceived, 0 );
+
+	if( ulValReceived != 10 )
+	{
+		// Error unless the item was removed by a different task.
+	}
+
+	// The queue is still full.  Use xQueueOverwrite() to overwrite the
+	// value held in the queue with 100.
+	ulVarToSend = 100;
+	xQueueOverwrite( xQueue, &ulVarToSend );
+
+	// This time read from the queue, leaving the queue empty once more.
+	// A block time of 0 is used again.
+	xQueueReceive( xQueue, &ulValReceived, 0 );
+
+	// The value read should be the last value written, even though the
+	// queue was already full when the value was written.
+	if( ulValReceived != 100 )
+	{
+		// Error!
+	}
+
+	// ...
+}
+ 
+ * \defgroup xQueueOverwrite xQueueOverwrite + * \ingroup QueueManagement + */ +#define xQueueOverwrite( xQueue, pvItemToQueue ) xQueueGenericSend( ( xQueue ), ( pvItemToQueue ), 0, queueOVERWRITE ) + + +/** + * queue. h + *
+ BaseType_t xQueueGenericSend(
+									QueueHandle_t xQueue,
+									const void * pvItemToQueue,
+									TickType_t xTicksToWait
+									BaseType_t xCopyPosition
+								);
+ * 
+ * + * It is preferred that the macros xQueueSend(), xQueueSendToFront() and + * xQueueSendToBack() are used in place of calling this function directly. + * + * Post an item on a queue. The item is queued by copy, not by reference. + * This function must not be called from an interrupt service routine. + * See xQueueSendFromISR () for an alternative which may be used in an ISR. + * + * @param xQueue The handle to the queue on which the item is to be posted. + * + * @param pvItemToQueue A pointer to the item that is to be placed on the + * queue. The size of the items the queue will hold was defined when the + * queue was created, so this many bytes will be copied from pvItemToQueue + * into the queue storage area. + * + * @param xTicksToWait The maximum amount of time the task should block + * waiting for space to become available on the queue, should it already + * be full. The call will return immediately if this is set to 0 and the + * queue is full. The time is defined in tick periods so the constant + * portTICK_PERIOD_MS should be used to convert to real time if this is required. + * + * @param xCopyPosition Can take the value queueSEND_TO_BACK to place the + * item at the back of the queue, or queueSEND_TO_FRONT to place the item + * at the front of the queue (for high priority messages). + * + * @return pdTRUE if the item was successfully posted, otherwise errQUEUE_FULL. + * + * Example usage: +
+ struct AMessage
+ {
+	char ucMessageID;
+	char ucData[ 20 ];
+ } xMessage;
+
+ uint32_t ulVar = 10UL;
+
+ void vATask( void *pvParameters )
+ {
+ QueueHandle_t xQueue1, xQueue2;
+ struct AMessage *pxMessage;
+
+	// Create a queue capable of containing 10 uint32_t values.
+	xQueue1 = xQueueCreate( 10, sizeof( uint32_t ) );
+
+	// Create a queue capable of containing 10 pointers to AMessage structures.
+	// These should be passed by pointer as they contain a lot of data.
+	xQueue2 = xQueueCreate( 10, sizeof( struct AMessage * ) );
+
+	// ...
+
+	if( xQueue1 != 0 )
+	{
+		// Send an uint32_t.  Wait for 10 ticks for space to become
+		// available if necessary.
+		if( xQueueGenericSend( xQueue1, ( void * ) &ulVar, ( TickType_t ) 10, queueSEND_TO_BACK ) != pdPASS )
+		{
+			// Failed to post the message, even after 10 ticks.
+		}
+	}
+
+	if( xQueue2 != 0 )
+	{
+		// Send a pointer to a struct AMessage object.  Don't block if the
+		// queue is already full.
+		pxMessage = & xMessage;
+		xQueueGenericSend( xQueue2, ( void * ) &pxMessage, ( TickType_t ) 0, queueSEND_TO_BACK );
+	}
+
+	// ... Rest of task code.
+ }
+ 
+ * \defgroup xQueueSend xQueueSend + * \ingroup QueueManagement + */ +BaseType_t xQueueGenericSend( QueueHandle_t xQueue, const void * const pvItemToQueue, TickType_t xTicksToWait, const BaseType_t xCopyPosition ) PRIVILEGED_FUNCTION; + +/** + * queue. h + *
+ BaseType_t xQueuePeek(
+							 QueueHandle_t xQueue,
+							 void * const pvBuffer,
+							 TickType_t xTicksToWait
+						 );
+ * + * Receive an item from a queue without removing the item from the queue. + * The item is received by copy so a buffer of adequate size must be + * provided. The number of bytes copied into the buffer was defined when + * the queue was created. + * + * Successfully received items remain on the queue so will be returned again + * by the next call, or a call to xQueueReceive(). + * + * This macro must not be used in an interrupt service routine. See + * xQueuePeekFromISR() for an alternative that can be called from an interrupt + * service routine. + * + * @param xQueue The handle to the queue from which the item is to be + * received. + * + * @param pvBuffer Pointer to the buffer into which the received item will + * be copied. + * + * @param xTicksToWait The maximum amount of time the task should block + * waiting for an item to receive should the queue be empty at the time + * of the call. The time is defined in tick periods so the constant + * portTICK_PERIOD_MS should be used to convert to real time if this is required. + * xQueuePeek() will return immediately if xTicksToWait is 0 and the queue + * is empty. + * + * @return pdTRUE if an item was successfully received from the queue, + * otherwise pdFALSE. + * + * Example usage: +
+ struct AMessage
+ {
+	char ucMessageID;
+	char ucData[ 20 ];
+ } xMessage;
+
+ QueueHandle_t xQueue;
+
+ // Task to create a queue and post a value.
+ void vATask( void *pvParameters )
+ {
+ struct AMessage *pxMessage;
+
+	// Create a queue capable of containing 10 pointers to AMessage structures.
+	// These should be passed by pointer as they contain a lot of data.
+	xQueue = xQueueCreate( 10, sizeof( struct AMessage * ) );
+	if( xQueue == 0 )
+	{
+		// Failed to create the queue.
+	}
+
+	// ...
+
+	// Send a pointer to a struct AMessage object.  Don't block if the
+	// queue is already full.
+	pxMessage = & xMessage;
+	xQueueSend( xQueue, ( void * ) &pxMessage, ( TickType_t ) 0 );
+
+	// ... Rest of task code.
+ }
+
+ // Task to peek the data from the queue.
+ void vADifferentTask( void *pvParameters )
+ {
+ struct AMessage *pxRxedMessage;
+
+	if( xQueue != 0 )
+	{
+		// Peek a message on the created queue.  Block for 10 ticks if a
+		// message is not immediately available.
+		if( xQueuePeek( xQueue, &( pxRxedMessage ), ( TickType_t ) 10 ) )
+		{
+			// pcRxedMessage now points to the struct AMessage variable posted
+			// by vATask, but the item still remains on the queue.
+		}
+	}
+
+	// ... Rest of task code.
+ }
+ 
+ * \defgroup xQueuePeek xQueuePeek + * \ingroup QueueManagement + */ +BaseType_t xQueuePeek( QueueHandle_t xQueue, void * const pvBuffer, TickType_t xTicksToWait ) PRIVILEGED_FUNCTION; + +/** + * queue. h + *
+ BaseType_t xQueuePeekFromISR(
+									QueueHandle_t xQueue,
+									void *pvBuffer,
+								);
+ * + * A version of xQueuePeek() that can be called from an interrupt service + * routine (ISR). + * + * Receive an item from a queue without removing the item from the queue. + * The item is received by copy so a buffer of adequate size must be + * provided. The number of bytes copied into the buffer was defined when + * the queue was created. + * + * Successfully received items remain on the queue so will be returned again + * by the next call, or a call to xQueueReceive(). + * + * @param xQueue The handle to the queue from which the item is to be + * received. + * + * @param pvBuffer Pointer to the buffer into which the received item will + * be copied. + * + * @return pdTRUE if an item was successfully received from the queue, + * otherwise pdFALSE. + * + * \defgroup xQueuePeekFromISR xQueuePeekFromISR + * \ingroup QueueManagement + */ +BaseType_t xQueuePeekFromISR( QueueHandle_t xQueue, void * const pvBuffer ) PRIVILEGED_FUNCTION; + +/** + * queue. h + *
+ BaseType_t xQueueReceive(
+								 QueueHandle_t xQueue,
+								 void *pvBuffer,
+								 TickType_t xTicksToWait
+							);
+ * + * Receive an item from a queue. The item is received by copy so a buffer of + * adequate size must be provided. The number of bytes copied into the buffer + * was defined when the queue was created. + * + * Successfully received items are removed from the queue. + * + * This function must not be used in an interrupt service routine. See + * xQueueReceiveFromISR for an alternative that can. + * + * @param xQueue The handle to the queue from which the item is to be + * received. + * + * @param pvBuffer Pointer to the buffer into which the received item will + * be copied. + * + * @param xTicksToWait The maximum amount of time the task should block + * waiting for an item to receive should the queue be empty at the time + * of the call. xQueueReceive() will return immediately if xTicksToWait + * is zero and the queue is empty. The time is defined in tick periods so the + * constant portTICK_PERIOD_MS should be used to convert to real time if this is + * required. + * + * @return pdTRUE if an item was successfully received from the queue, + * otherwise pdFALSE. + * + * Example usage: +
+ struct AMessage
+ {
+	char ucMessageID;
+	char ucData[ 20 ];
+ } xMessage;
+
+ QueueHandle_t xQueue;
+
+ // Task to create a queue and post a value.
+ void vATask( void *pvParameters )
+ {
+ struct AMessage *pxMessage;
+
+	// Create a queue capable of containing 10 pointers to AMessage structures.
+	// These should be passed by pointer as they contain a lot of data.
+	xQueue = xQueueCreate( 10, sizeof( struct AMessage * ) );
+	if( xQueue == 0 )
+	{
+		// Failed to create the queue.
+	}
+
+	// ...
+
+	// Send a pointer to a struct AMessage object.  Don't block if the
+	// queue is already full.
+	pxMessage = & xMessage;
+	xQueueSend( xQueue, ( void * ) &pxMessage, ( TickType_t ) 0 );
+
+	// ... Rest of task code.
+ }
+
+ // Task to receive from the queue.
+ void vADifferentTask( void *pvParameters )
+ {
+ struct AMessage *pxRxedMessage;
+
+	if( xQueue != 0 )
+	{
+		// Receive a message on the created queue.  Block for 10 ticks if a
+		// message is not immediately available.
+		if( xQueueReceive( xQueue, &( pxRxedMessage ), ( TickType_t ) 10 ) )
+		{
+			// pcRxedMessage now points to the struct AMessage variable posted
+			// by vATask.
+		}
+	}
+
+	// ... Rest of task code.
+ }
+ 
+ * \defgroup xQueueReceive xQueueReceive + * \ingroup QueueManagement + */ +BaseType_t xQueueReceive( QueueHandle_t xQueue, void * const pvBuffer, TickType_t xTicksToWait ) PRIVILEGED_FUNCTION; + +/** + * queue. h + *
UBaseType_t uxQueueMessagesWaiting( const QueueHandle_t xQueue );
+ * + * Return the number of messages stored in a queue. + * + * @param xQueue A handle to the queue being queried. + * + * @return The number of messages available in the queue. + * + * \defgroup uxQueueMessagesWaiting uxQueueMessagesWaiting + * \ingroup QueueManagement + */ +UBaseType_t uxQueueMessagesWaiting( const QueueHandle_t xQueue ) PRIVILEGED_FUNCTION; + +/** + * queue. h + *
UBaseType_t uxQueueSpacesAvailable( const QueueHandle_t xQueue );
+ * + * Return the number of free spaces available in a queue. This is equal to the + * number of items that can be sent to the queue before the queue becomes full + * if no items are removed. + * + * @param xQueue A handle to the queue being queried. + * + * @return The number of spaces available in the queue. + * + * \defgroup uxQueueMessagesWaiting uxQueueMessagesWaiting + * \ingroup QueueManagement + */ +UBaseType_t uxQueueSpacesAvailable( const QueueHandle_t xQueue ) PRIVILEGED_FUNCTION; + +/** + * queue. h + *
void vQueueDelete( QueueHandle_t xQueue );
+ * + * Delete a queue - freeing all the memory allocated for storing of items + * placed on the queue. + * + * @param xQueue A handle to the queue to be deleted. + * + * \defgroup vQueueDelete vQueueDelete + * \ingroup QueueManagement + */ +void vQueueDelete( QueueHandle_t xQueue ) PRIVILEGED_FUNCTION; + +/** + * queue. h + *
+ BaseType_t xQueueSendToFrontFromISR(
+										 QueueHandle_t xQueue,
+										 const void *pvItemToQueue,
+										 BaseType_t *pxHigherPriorityTaskWoken
+									  );
+ 
+ * + * This is a macro that calls xQueueGenericSendFromISR(). + * + * Post an item to the front of a queue. It is safe to use this macro from + * within an interrupt service routine. + * + * Items are queued by copy not reference so it is preferable to only + * queue small items, especially when called from an ISR. In most cases + * it would be preferable to store a pointer to the item being queued. + * + * @param xQueue The handle to the queue on which the item is to be posted. + * + * @param pvItemToQueue A pointer to the item that is to be placed on the + * queue. The size of the items the queue will hold was defined when the + * queue was created, so this many bytes will be copied from pvItemToQueue + * into the queue storage area. + * + * @param pxHigherPriorityTaskWoken xQueueSendToFrontFromISR() will set + * *pxHigherPriorityTaskWoken to pdTRUE if sending to the queue caused a task + * to unblock, and the unblocked task has a priority higher than the currently + * running task. If xQueueSendToFromFromISR() sets this value to pdTRUE then + * a context switch should be requested before the interrupt is exited. + * + * @return pdTRUE if the data was successfully sent to the queue, otherwise + * errQUEUE_FULL. + * + * Example usage for buffered IO (where the ISR can obtain more than one value + * per call): +
+ void vBufferISR( void )
+ {
+ char cIn;
+ BaseType_t xHigherPrioritTaskWoken;
+
+	// We have not woken a task at the start of the ISR.
+	xHigherPriorityTaskWoken = pdFALSE;
+
+	// Loop until the buffer is empty.
+	do
+	{
+		// Obtain a byte from the buffer.
+		cIn = portINPUT_BYTE( RX_REGISTER_ADDRESS );
+
+		// Post the byte.
+		xQueueSendToFrontFromISR( xRxQueue, &cIn, &xHigherPriorityTaskWoken );
+
+	} while( portINPUT_BYTE( BUFFER_COUNT ) );
+
+	// Now the buffer is empty we can switch context if necessary.
+	if( xHigherPriorityTaskWoken )
+	{
+		taskYIELD ();
+	}
+ }
+ 
+ * + * \defgroup xQueueSendFromISR xQueueSendFromISR + * \ingroup QueueManagement + */ +#define xQueueSendToFrontFromISR( xQueue, pvItemToQueue, pxHigherPriorityTaskWoken ) xQueueGenericSendFromISR( ( xQueue ), ( pvItemToQueue ), ( pxHigherPriorityTaskWoken ), queueSEND_TO_FRONT ) + + +/** + * queue. h + *
+ BaseType_t xQueueSendToBackFromISR(
+										 QueueHandle_t xQueue,
+										 const void *pvItemToQueue,
+										 BaseType_t *pxHigherPriorityTaskWoken
+									  );
+ 
+ * + * This is a macro that calls xQueueGenericSendFromISR(). + * + * Post an item to the back of a queue. It is safe to use this macro from + * within an interrupt service routine. + * + * Items are queued by copy not reference so it is preferable to only + * queue small items, especially when called from an ISR. In most cases + * it would be preferable to store a pointer to the item being queued. + * + * @param xQueue The handle to the queue on which the item is to be posted. + * + * @param pvItemToQueue A pointer to the item that is to be placed on the + * queue. The size of the items the queue will hold was defined when the + * queue was created, so this many bytes will be copied from pvItemToQueue + * into the queue storage area. + * + * @param pxHigherPriorityTaskWoken xQueueSendToBackFromISR() will set + * *pxHigherPriorityTaskWoken to pdTRUE if sending to the queue caused a task + * to unblock, and the unblocked task has a priority higher than the currently + * running task. If xQueueSendToBackFromISR() sets this value to pdTRUE then + * a context switch should be requested before the interrupt is exited. + * + * @return pdTRUE if the data was successfully sent to the queue, otherwise + * errQUEUE_FULL. + * + * Example usage for buffered IO (where the ISR can obtain more than one value + * per call): +
+ void vBufferISR( void )
+ {
+ char cIn;
+ BaseType_t xHigherPriorityTaskWoken;
+
+	// We have not woken a task at the start of the ISR.
+	xHigherPriorityTaskWoken = pdFALSE;
+
+	// Loop until the buffer is empty.
+	do
+	{
+		// Obtain a byte from the buffer.
+		cIn = portINPUT_BYTE( RX_REGISTER_ADDRESS );
+
+		// Post the byte.
+		xQueueSendToBackFromISR( xRxQueue, &cIn, &xHigherPriorityTaskWoken );
+
+	} while( portINPUT_BYTE( BUFFER_COUNT ) );
+
+	// Now the buffer is empty we can switch context if necessary.
+	if( xHigherPriorityTaskWoken )
+	{
+		taskYIELD ();
+	}
+ }
+ 
+ * + * \defgroup xQueueSendFromISR xQueueSendFromISR + * \ingroup QueueManagement + */ +#define xQueueSendToBackFromISR( xQueue, pvItemToQueue, pxHigherPriorityTaskWoken ) xQueueGenericSendFromISR( ( xQueue ), ( pvItemToQueue ), ( pxHigherPriorityTaskWoken ), queueSEND_TO_BACK ) + +/** + * queue. h + *
+ BaseType_t xQueueOverwriteFromISR(
+							  QueueHandle_t xQueue,
+							  const void * pvItemToQueue,
+							  BaseType_t *pxHigherPriorityTaskWoken
+						 );
+ * 
+ * + * A version of xQueueOverwrite() that can be used in an interrupt service + * routine (ISR). + * + * Only for use with queues that can hold a single item - so the queue is either + * empty or full. + * + * Post an item on a queue. If the queue is already full then overwrite the + * value held in the queue. The item is queued by copy, not by reference. + * + * @param xQueue The handle to the queue on which the item is to be posted. + * + * @param pvItemToQueue A pointer to the item that is to be placed on the + * queue. The size of the items the queue will hold was defined when the + * queue was created, so this many bytes will be copied from pvItemToQueue + * into the queue storage area. + * + * @param pxHigherPriorityTaskWoken xQueueOverwriteFromISR() will set + * *pxHigherPriorityTaskWoken to pdTRUE if sending to the queue caused a task + * to unblock, and the unblocked task has a priority higher than the currently + * running task. If xQueueOverwriteFromISR() sets this value to pdTRUE then + * a context switch should be requested before the interrupt is exited. + * + * @return xQueueOverwriteFromISR() is a macro that calls + * xQueueGenericSendFromISR(), and therefore has the same return values as + * xQueueSendToFrontFromISR(). However, pdPASS is the only value that can be + * returned because xQueueOverwriteFromISR() will write to the queue even when + * the queue is already full. + * + * Example usage: +
+
+ QueueHandle_t xQueue;
+
+ void vFunction( void *pvParameters )
+ {
+ 	// Create a queue to hold one uint32_t value.  It is strongly
+	// recommended *not* to use xQueueOverwriteFromISR() on queues that can
+	// contain more than one value, and doing so will trigger an assertion
+	// if configASSERT() is defined.
+	xQueue = xQueueCreate( 1, sizeof( uint32_t ) );
+}
+
+void vAnInterruptHandler( void )
+{
+// xHigherPriorityTaskWoken must be set to pdFALSE before it is used.
+BaseType_t xHigherPriorityTaskWoken = pdFALSE;
+uint32_t ulVarToSend, ulValReceived;
+
+	// Write the value 10 to the queue using xQueueOverwriteFromISR().
+	ulVarToSend = 10;
+	xQueueOverwriteFromISR( xQueue, &ulVarToSend, &xHigherPriorityTaskWoken );
+
+	// The queue is full, but calling xQueueOverwriteFromISR() again will still
+	// pass because the value held in the queue will be overwritten with the
+	// new value.
+	ulVarToSend = 100;
+	xQueueOverwriteFromISR( xQueue, &ulVarToSend, &xHigherPriorityTaskWoken );
+
+	// Reading from the queue will now return 100.
+
+	// ...
+
+	if( xHigherPrioritytaskWoken == pdTRUE )
+	{
+		// Writing to the queue caused a task to unblock and the unblocked task
+		// has a priority higher than or equal to the priority of the currently
+		// executing task (the task this interrupt interrupted).  Perform a context
+		// switch so this interrupt returns directly to the unblocked task.
+		portYIELD_FROM_ISR(); // or portEND_SWITCHING_ISR() depending on the port.
+	}
+}
+ 
+ * \defgroup xQueueOverwriteFromISR xQueueOverwriteFromISR + * \ingroup QueueManagement + */ +#define xQueueOverwriteFromISR( xQueue, pvItemToQueue, pxHigherPriorityTaskWoken ) xQueueGenericSendFromISR( ( xQueue ), ( pvItemToQueue ), ( pxHigherPriorityTaskWoken ), queueOVERWRITE ) + +/** + * queue. h + *
+ BaseType_t xQueueSendFromISR(
+									 QueueHandle_t xQueue,
+									 const void *pvItemToQueue,
+									 BaseType_t *pxHigherPriorityTaskWoken
+								);
+ 
+ * + * This is a macro that calls xQueueGenericSendFromISR(). It is included + * for backward compatibility with versions of FreeRTOS.org that did not + * include the xQueueSendToBackFromISR() and xQueueSendToFrontFromISR() + * macros. + * + * Post an item to the back of a queue. It is safe to use this function from + * within an interrupt service routine. + * + * Items are queued by copy not reference so it is preferable to only + * queue small items, especially when called from an ISR. In most cases + * it would be preferable to store a pointer to the item being queued. + * + * @param xQueue The handle to the queue on which the item is to be posted. + * + * @param pvItemToQueue A pointer to the item that is to be placed on the + * queue. The size of the items the queue will hold was defined when the + * queue was created, so this many bytes will be copied from pvItemToQueue + * into the queue storage area. + * + * @param pxHigherPriorityTaskWoken xQueueSendFromISR() will set + * *pxHigherPriorityTaskWoken to pdTRUE if sending to the queue caused a task + * to unblock, and the unblocked task has a priority higher than the currently + * running task. If xQueueSendFromISR() sets this value to pdTRUE then + * a context switch should be requested before the interrupt is exited. + * + * @return pdTRUE if the data was successfully sent to the queue, otherwise + * errQUEUE_FULL. + * + * Example usage for buffered IO (where the ISR can obtain more than one value + * per call): +
+ void vBufferISR( void )
+ {
+ char cIn;
+ BaseType_t xHigherPriorityTaskWoken;
+
+	// We have not woken a task at the start of the ISR.
+	xHigherPriorityTaskWoken = pdFALSE;
+
+	// Loop until the buffer is empty.
+	do
+	{
+		// Obtain a byte from the buffer.
+		cIn = portINPUT_BYTE( RX_REGISTER_ADDRESS );
+
+		// Post the byte.
+		xQueueSendFromISR( xRxQueue, &cIn, &xHigherPriorityTaskWoken );
+
+	} while( portINPUT_BYTE( BUFFER_COUNT ) );
+
+	// Now the buffer is empty we can switch context if necessary.
+	if( xHigherPriorityTaskWoken )
+	{
+		// Actual macro used here is port specific.
+		portYIELD_FROM_ISR ();
+	}
+ }
+ 
+ * + * \defgroup xQueueSendFromISR xQueueSendFromISR + * \ingroup QueueManagement + */ +#define xQueueSendFromISR( xQueue, pvItemToQueue, pxHigherPriorityTaskWoken ) xQueueGenericSendFromISR( ( xQueue ), ( pvItemToQueue ), ( pxHigherPriorityTaskWoken ), queueSEND_TO_BACK ) + +/** + * queue. h + *
+ BaseType_t xQueueGenericSendFromISR(
+										   QueueHandle_t		xQueue,
+										   const	void	*pvItemToQueue,
+										   BaseType_t	*pxHigherPriorityTaskWoken,
+										   BaseType_t	xCopyPosition
+									   );
+ 
+ * + * It is preferred that the macros xQueueSendFromISR(), + * xQueueSendToFrontFromISR() and xQueueSendToBackFromISR() be used in place + * of calling this function directly. xQueueGiveFromISR() is an + * equivalent for use by semaphores that don't actually copy any data. + * + * Post an item on a queue. It is safe to use this function from within an + * interrupt service routine. + * + * Items are queued by copy not reference so it is preferable to only + * queue small items, especially when called from an ISR. In most cases + * it would be preferable to store a pointer to the item being queued. + * + * @param xQueue The handle to the queue on which the item is to be posted. + * + * @param pvItemToQueue A pointer to the item that is to be placed on the + * queue. The size of the items the queue will hold was defined when the + * queue was created, so this many bytes will be copied from pvItemToQueue + * into the queue storage area. + * + * @param pxHigherPriorityTaskWoken xQueueGenericSendFromISR() will set + * *pxHigherPriorityTaskWoken to pdTRUE if sending to the queue caused a task + * to unblock, and the unblocked task has a priority higher than the currently + * running task. If xQueueGenericSendFromISR() sets this value to pdTRUE then + * a context switch should be requested before the interrupt is exited. + * + * @param xCopyPosition Can take the value queueSEND_TO_BACK to place the + * item at the back of the queue, or queueSEND_TO_FRONT to place the item + * at the front of the queue (for high priority messages). + * + * @return pdTRUE if the data was successfully sent to the queue, otherwise + * errQUEUE_FULL. + * + * Example usage for buffered IO (where the ISR can obtain more than one value + * per call): +
+ void vBufferISR( void )
+ {
+ char cIn;
+ BaseType_t xHigherPriorityTaskWokenByPost;
+
+	// We have not woken a task at the start of the ISR.
+	xHigherPriorityTaskWokenByPost = pdFALSE;
+
+	// Loop until the buffer is empty.
+	do
+	{
+		// Obtain a byte from the buffer.
+		cIn = portINPUT_BYTE( RX_REGISTER_ADDRESS );
+
+		// Post each byte.
+		xQueueGenericSendFromISR( xRxQueue, &cIn, &xHigherPriorityTaskWokenByPost, queueSEND_TO_BACK );
+
+	} while( portINPUT_BYTE( BUFFER_COUNT ) );
+
+	// Now the buffer is empty we can switch context if necessary.  Note that the
+	// name of the yield function required is port specific.
+	if( xHigherPriorityTaskWokenByPost )
+	{
+		portYIELD_FROM_ISR();
+	}
+ }
+ 
+ * + * \defgroup xQueueSendFromISR xQueueSendFromISR + * \ingroup QueueManagement + */ +BaseType_t xQueueGenericSendFromISR( QueueHandle_t xQueue, const void * const pvItemToQueue, BaseType_t * const pxHigherPriorityTaskWoken, const BaseType_t xCopyPosition ) PRIVILEGED_FUNCTION; +BaseType_t xQueueGiveFromISR( QueueHandle_t xQueue, BaseType_t * const pxHigherPriorityTaskWoken ) PRIVILEGED_FUNCTION; + +/** + * queue. h + *
+ BaseType_t xQueueReceiveFromISR(
+									   QueueHandle_t	xQueue,
+									   void	*pvBuffer,
+									   BaseType_t *pxTaskWoken
+								   );
+ * 
+ * + * Receive an item from a queue. It is safe to use this function from within an + * interrupt service routine. + * + * @param xQueue The handle to the queue from which the item is to be + * received. + * + * @param pvBuffer Pointer to the buffer into which the received item will + * be copied. + * + * @param pxTaskWoken A task may be blocked waiting for space to become + * available on the queue. If xQueueReceiveFromISR causes such a task to + * unblock *pxTaskWoken will get set to pdTRUE, otherwise *pxTaskWoken will + * remain unchanged. + * + * @return pdTRUE if an item was successfully received from the queue, + * otherwise pdFALSE. + * + * Example usage: +
+
+ QueueHandle_t xQueue;
+
+ // Function to create a queue and post some values.
+ void vAFunction( void *pvParameters )
+ {
+ char cValueToPost;
+ const TickType_t xTicksToWait = ( TickType_t )0xff;
+
+	// Create a queue capable of containing 10 characters.
+	xQueue = xQueueCreate( 10, sizeof( char ) );
+	if( xQueue == 0 )
+	{
+		// Failed to create the queue.
+	}
+
+	// ...
+
+	// Post some characters that will be used within an ISR.  If the queue
+	// is full then this task will block for xTicksToWait ticks.
+	cValueToPost = 'a';
+	xQueueSend( xQueue, ( void * ) &cValueToPost, xTicksToWait );
+	cValueToPost = 'b';
+	xQueueSend( xQueue, ( void * ) &cValueToPost, xTicksToWait );
+
+	// ... keep posting characters ... this task may block when the queue
+	// becomes full.
+
+	cValueToPost = 'c';
+	xQueueSend( xQueue, ( void * ) &cValueToPost, xTicksToWait );
+ }
+
+ // ISR that outputs all the characters received on the queue.
+ void vISR_Routine( void )
+ {
+ BaseType_t xTaskWokenByReceive = pdFALSE;
+ char cRxedChar;
+
+	while( xQueueReceiveFromISR( xQueue, ( void * ) &cRxedChar, &xTaskWokenByReceive) )
+	{
+		// A character was received.  Output the character now.
+		vOutputCharacter( cRxedChar );
+
+		// If removing the character from the queue woke the task that was
+		// posting onto the queue cTaskWokenByReceive will have been set to
+		// pdTRUE.  No matter how many times this loop iterates only one
+		// task will be woken.
+	}
+
+	if( cTaskWokenByPost != ( char ) pdFALSE;
+	{
+		taskYIELD ();
+	}
+ }
+ 
+ * \defgroup xQueueReceiveFromISR xQueueReceiveFromISR + * \ingroup QueueManagement + */ +BaseType_t xQueueReceiveFromISR( QueueHandle_t xQueue, void * const pvBuffer, BaseType_t * const pxHigherPriorityTaskWoken ) PRIVILEGED_FUNCTION; + +/* + * Utilities to query queues that are safe to use from an ISR. These utilities + * should be used only from witin an ISR, or within a critical section. + */ +BaseType_t xQueueIsQueueEmptyFromISR( const QueueHandle_t xQueue ) PRIVILEGED_FUNCTION; +BaseType_t xQueueIsQueueFullFromISR( const QueueHandle_t xQueue ) PRIVILEGED_FUNCTION; +UBaseType_t uxQueueMessagesWaitingFromISR( const QueueHandle_t xQueue ) PRIVILEGED_FUNCTION; + +/* + * The functions defined above are for passing data to and from tasks. The + * functions below are the equivalents for passing data to and from + * co-routines. + * + * These functions are called from the co-routine macro implementation and + * should not be called directly from application code. Instead use the macro + * wrappers defined within croutine.h. + */ +BaseType_t xQueueCRSendFromISR( QueueHandle_t xQueue, const void *pvItemToQueue, BaseType_t xCoRoutinePreviouslyWoken ); +BaseType_t xQueueCRReceiveFromISR( QueueHandle_t xQueue, void *pvBuffer, BaseType_t *pxTaskWoken ); +BaseType_t xQueueCRSend( QueueHandle_t xQueue, const void *pvItemToQueue, TickType_t xTicksToWait ); +BaseType_t xQueueCRReceive( QueueHandle_t xQueue, void *pvBuffer, TickType_t xTicksToWait ); + +/* + * For internal use only. Use xSemaphoreCreateMutex(), + * xSemaphoreCreateCounting() or xSemaphoreGetMutexHolder() instead of calling + * these functions directly. + */ +QueueHandle_t xQueueCreateMutex( const uint8_t ucQueueType ) PRIVILEGED_FUNCTION; +QueueHandle_t xQueueCreateMutexStatic( const uint8_t ucQueueType, StaticQueue_t *pxStaticQueue ) PRIVILEGED_FUNCTION; +QueueHandle_t xQueueCreateCountingSemaphore( const UBaseType_t uxMaxCount, const UBaseType_t uxInitialCount ) PRIVILEGED_FUNCTION; +QueueHandle_t xQueueCreateCountingSemaphoreStatic( const UBaseType_t uxMaxCount, const UBaseType_t uxInitialCount, StaticQueue_t *pxStaticQueue ) PRIVILEGED_FUNCTION; +BaseType_t xQueueSemaphoreTake( QueueHandle_t xQueue, TickType_t xTicksToWait ) PRIVILEGED_FUNCTION; +TaskHandle_t xQueueGetMutexHolder( QueueHandle_t xSemaphore ) PRIVILEGED_FUNCTION; +TaskHandle_t xQueueGetMutexHolderFromISR( QueueHandle_t xSemaphore ) PRIVILEGED_FUNCTION; + +/* + * For internal use only. Use xSemaphoreTakeMutexRecursive() or + * xSemaphoreGiveMutexRecursive() instead of calling these functions directly. + */ +BaseType_t xQueueTakeMutexRecursive( QueueHandle_t xMutex, TickType_t xTicksToWait ) PRIVILEGED_FUNCTION; +BaseType_t xQueueGiveMutexRecursive( QueueHandle_t xMutex ) PRIVILEGED_FUNCTION; + +/* + * Reset a queue back to its original empty state. The return value is now + * obsolete and is always set to pdPASS. + */ +#define xQueueReset( xQueue ) xQueueGenericReset( xQueue, pdFALSE ) + +/* + * The registry is provided as a means for kernel aware debuggers to + * locate queues, semaphores and mutexes. Call vQueueAddToRegistry() add + * a queue, semaphore or mutex handle to the registry if you want the handle + * to be available to a kernel aware debugger. If you are not using a kernel + * aware debugger then this function can be ignored. + * + * configQUEUE_REGISTRY_SIZE defines the maximum number of handles the + * registry can hold. configQUEUE_REGISTRY_SIZE must be greater than 0 + * within FreeRTOSConfig.h for the registry to be available. Its value + * does not effect the number of queues, semaphores and mutexes that can be + * created - just the number that the registry can hold. + * + * @param xQueue The handle of the queue being added to the registry. This + * is the handle returned by a call to xQueueCreate(). Semaphore and mutex + * handles can also be passed in here. + * + * @param pcName The name to be associated with the handle. This is the + * name that the kernel aware debugger will display. The queue registry only + * stores a pointer to the string - so the string must be persistent (global or + * preferably in ROM/Flash), not on the stack. + */ +#if( configQUEUE_REGISTRY_SIZE > 0 ) + void vQueueAddToRegistry( QueueHandle_t xQueue, const char *pcQueueName ) PRIVILEGED_FUNCTION; /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ +#endif + +/* + * The registry is provided as a means for kernel aware debuggers to + * locate queues, semaphores and mutexes. Call vQueueAddToRegistry() add + * a queue, semaphore or mutex handle to the registry if you want the handle + * to be available to a kernel aware debugger, and vQueueUnregisterQueue() to + * remove the queue, semaphore or mutex from the register. If you are not using + * a kernel aware debugger then this function can be ignored. + * + * @param xQueue The handle of the queue being removed from the registry. + */ +#if( configQUEUE_REGISTRY_SIZE > 0 ) + void vQueueUnregisterQueue( QueueHandle_t xQueue ) PRIVILEGED_FUNCTION; +#endif + +/* + * The queue registry is provided as a means for kernel aware debuggers to + * locate queues, semaphores and mutexes. Call pcQueueGetName() to look + * up and return the name of a queue in the queue registry from the queue's + * handle. + * + * @param xQueue The handle of the queue the name of which will be returned. + * @return If the queue is in the registry then a pointer to the name of the + * queue is returned. If the queue is not in the registry then NULL is + * returned. + */ +#if( configQUEUE_REGISTRY_SIZE > 0 ) + const char *pcQueueGetName( QueueHandle_t xQueue ) PRIVILEGED_FUNCTION; /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ +#endif + +/* + * Generic version of the function used to creaet a queue using dynamic memory + * allocation. This is called by other functions and macros that create other + * RTOS objects that use the queue structure as their base. + */ +#if( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) + QueueHandle_t xQueueGenericCreate( const UBaseType_t uxQueueLength, const UBaseType_t uxItemSize, const uint8_t ucQueueType ) PRIVILEGED_FUNCTION; +#endif + +/* + * Generic version of the function used to creaet a queue using dynamic memory + * allocation. This is called by other functions and macros that create other + * RTOS objects that use the queue structure as their base. + */ +#if( configSUPPORT_STATIC_ALLOCATION == 1 ) + QueueHandle_t xQueueGenericCreateStatic( const UBaseType_t uxQueueLength, const UBaseType_t uxItemSize, uint8_t *pucQueueStorage, StaticQueue_t *pxStaticQueue, const uint8_t ucQueueType ) PRIVILEGED_FUNCTION; +#endif + +/* + * Queue sets provide a mechanism to allow a task to block (pend) on a read + * operation from multiple queues or semaphores simultaneously. + * + * See FreeRTOS/Source/Demo/Common/Minimal/QueueSet.c for an example using this + * function. + * + * A queue set must be explicitly created using a call to xQueueCreateSet() + * before it can be used. Once created, standard FreeRTOS queues and semaphores + * can be added to the set using calls to xQueueAddToSet(). + * xQueueSelectFromSet() is then used to determine which, if any, of the queues + * or semaphores contained in the set is in a state where a queue read or + * semaphore take operation would be successful. + * + * Note 1: See the documentation on http://wwwFreeRTOS.org/RTOS-queue-sets.html + * for reasons why queue sets are very rarely needed in practice as there are + * simpler methods of blocking on multiple objects. + * + * Note 2: Blocking on a queue set that contains a mutex will not cause the + * mutex holder to inherit the priority of the blocked task. + * + * Note 3: An additional 4 bytes of RAM is required for each space in a every + * queue added to a queue set. Therefore counting semaphores that have a high + * maximum count value should not be added to a queue set. + * + * Note 4: A receive (in the case of a queue) or take (in the case of a + * semaphore) operation must not be performed on a member of a queue set unless + * a call to xQueueSelectFromSet() has first returned a handle to that set member. + * + * @param uxEventQueueLength Queue sets store events that occur on + * the queues and semaphores contained in the set. uxEventQueueLength specifies + * the maximum number of events that can be queued at once. To be absolutely + * certain that events are not lost uxEventQueueLength should be set to the + * total sum of the length of the queues added to the set, where binary + * semaphores and mutexes have a length of 1, and counting semaphores have a + * length set by their maximum count value. Examples: + * + If a queue set is to hold a queue of length 5, another queue of length 12, + * and a binary semaphore, then uxEventQueueLength should be set to + * (5 + 12 + 1), or 18. + * + If a queue set is to hold three binary semaphores then uxEventQueueLength + * should be set to (1 + 1 + 1 ), or 3. + * + If a queue set is to hold a counting semaphore that has a maximum count of + * 5, and a counting semaphore that has a maximum count of 3, then + * uxEventQueueLength should be set to (5 + 3), or 8. + * + * @return If the queue set is created successfully then a handle to the created + * queue set is returned. Otherwise NULL is returned. + */ +QueueSetHandle_t xQueueCreateSet( const UBaseType_t uxEventQueueLength ) PRIVILEGED_FUNCTION; + +/* + * Adds a queue or semaphore to a queue set that was previously created by a + * call to xQueueCreateSet(). + * + * See FreeRTOS/Source/Demo/Common/Minimal/QueueSet.c for an example using this + * function. + * + * Note 1: A receive (in the case of a queue) or take (in the case of a + * semaphore) operation must not be performed on a member of a queue set unless + * a call to xQueueSelectFromSet() has first returned a handle to that set member. + * + * @param xQueueOrSemaphore The handle of the queue or semaphore being added to + * the queue set (cast to an QueueSetMemberHandle_t type). + * + * @param xQueueSet The handle of the queue set to which the queue or semaphore + * is being added. + * + * @return If the queue or semaphore was successfully added to the queue set + * then pdPASS is returned. If the queue could not be successfully added to the + * queue set because it is already a member of a different queue set then pdFAIL + * is returned. + */ +BaseType_t xQueueAddToSet( QueueSetMemberHandle_t xQueueOrSemaphore, QueueSetHandle_t xQueueSet ) PRIVILEGED_FUNCTION; + +/* + * Removes a queue or semaphore from a queue set. A queue or semaphore can only + * be removed from a set if the queue or semaphore is empty. + * + * See FreeRTOS/Source/Demo/Common/Minimal/QueueSet.c for an example using this + * function. + * + * @param xQueueOrSemaphore The handle of the queue or semaphore being removed + * from the queue set (cast to an QueueSetMemberHandle_t type). + * + * @param xQueueSet The handle of the queue set in which the queue or semaphore + * is included. + * + * @return If the queue or semaphore was successfully removed from the queue set + * then pdPASS is returned. If the queue was not in the queue set, or the + * queue (or semaphore) was not empty, then pdFAIL is returned. + */ +BaseType_t xQueueRemoveFromSet( QueueSetMemberHandle_t xQueueOrSemaphore, QueueSetHandle_t xQueueSet ) PRIVILEGED_FUNCTION; + +/* + * xQueueSelectFromSet() selects from the members of a queue set a queue or + * semaphore that either contains data (in the case of a queue) or is available + * to take (in the case of a semaphore). xQueueSelectFromSet() effectively + * allows a task to block (pend) on a read operation on all the queues and + * semaphores in a queue set simultaneously. + * + * See FreeRTOS/Source/Demo/Common/Minimal/QueueSet.c for an example using this + * function. + * + * Note 1: See the documentation on http://wwwFreeRTOS.org/RTOS-queue-sets.html + * for reasons why queue sets are very rarely needed in practice as there are + * simpler methods of blocking on multiple objects. + * + * Note 2: Blocking on a queue set that contains a mutex will not cause the + * mutex holder to inherit the priority of the blocked task. + * + * Note 3: A receive (in the case of a queue) or take (in the case of a + * semaphore) operation must not be performed on a member of a queue set unless + * a call to xQueueSelectFromSet() has first returned a handle to that set member. + * + * @param xQueueSet The queue set on which the task will (potentially) block. + * + * @param xTicksToWait The maximum time, in ticks, that the calling task will + * remain in the Blocked state (with other tasks executing) to wait for a member + * of the queue set to be ready for a successful queue read or semaphore take + * operation. + * + * @return xQueueSelectFromSet() will return the handle of a queue (cast to + * a QueueSetMemberHandle_t type) contained in the queue set that contains data, + * or the handle of a semaphore (cast to a QueueSetMemberHandle_t type) contained + * in the queue set that is available, or NULL if no such queue or semaphore + * exists before before the specified block time expires. + */ +QueueSetMemberHandle_t xQueueSelectFromSet( QueueSetHandle_t xQueueSet, const TickType_t xTicksToWait ) PRIVILEGED_FUNCTION; + +/* + * A version of xQueueSelectFromSet() that can be used from an ISR. + */ +QueueSetMemberHandle_t xQueueSelectFromSetFromISR( QueueSetHandle_t xQueueSet ) PRIVILEGED_FUNCTION; + +/* Not public API functions. */ +void vQueueWaitForMessageRestricted( QueueHandle_t xQueue, TickType_t xTicksToWait, const BaseType_t xWaitIndefinitely ) PRIVILEGED_FUNCTION; +BaseType_t xQueueGenericReset( QueueHandle_t xQueue, BaseType_t xNewQueue ) PRIVILEGED_FUNCTION; +void vQueueSetQueueNumber( QueueHandle_t xQueue, UBaseType_t uxQueueNumber ) PRIVILEGED_FUNCTION; +UBaseType_t uxQueueGetQueueNumber( QueueHandle_t xQueue ) PRIVILEGED_FUNCTION; +uint8_t ucQueueGetQueueType( QueueHandle_t xQueue ) PRIVILEGED_FUNCTION; + + +#ifdef __cplusplus +} +#endif + +#endif /* QUEUE_H */ + diff --git a/rtos/freertos/abstraction_layer_freertos/include/semphr.h b/rtos/freertos/abstraction_layer_freertos/include/semphr.h new file mode 100644 index 00000000..0f01948c --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/include/semphr.h @@ -0,0 +1,1140 @@ +/* + * FreeRTOS Kernel V10.3.0 + * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * + * http://www.FreeRTOS.org + * http://aws.amazon.com/freertos + * + * 1 tab == 4 spaces! + */ + +#ifndef SEMAPHORE_H +#define SEMAPHORE_H + +#ifndef INC_FREERTOS_H + #error "include FreeRTOS.h" must appear in source files before "include semphr.h" +#endif + +#include "queue.h" + +typedef QueueHandle_t SemaphoreHandle_t; + +#define semBINARY_SEMAPHORE_QUEUE_LENGTH ( ( uint8_t ) 1U ) +#define semSEMAPHORE_QUEUE_ITEM_LENGTH ( ( uint8_t ) 0U ) +#define semGIVE_BLOCK_TIME ( ( TickType_t ) 0U ) + + +/** + * semphr. h + *
vSemaphoreCreateBinary( SemaphoreHandle_t xSemaphore )
+ * + * In many usage scenarios it is faster and more memory efficient to use a + * direct to task notification in place of a binary semaphore! + * http://www.freertos.org/RTOS-task-notifications.html + * + * This old vSemaphoreCreateBinary() macro is now deprecated in favour of the + * xSemaphoreCreateBinary() function. Note that binary semaphores created using + * the vSemaphoreCreateBinary() macro are created in a state such that the + * first call to 'take' the semaphore would pass, whereas binary semaphores + * created using xSemaphoreCreateBinary() are created in a state such that the + * the semaphore must first be 'given' before it can be 'taken'. + * + * Macro that implements a semaphore by using the existing queue mechanism. + * The queue length is 1 as this is a binary semaphore. The data size is 0 + * as we don't want to actually store any data - we just want to know if the + * queue is empty or full. + * + * This type of semaphore can be used for pure synchronisation between tasks or + * between an interrupt and a task. The semaphore need not be given back once + * obtained, so one task/interrupt can continuously 'give' the semaphore while + * another continuously 'takes' the semaphore. For this reason this type of + * semaphore does not use a priority inheritance mechanism. For an alternative + * that does use priority inheritance see xSemaphoreCreateMutex(). + * + * @param xSemaphore Handle to the created semaphore. Should be of type SemaphoreHandle_t. + * + * Example usage: +
+ SemaphoreHandle_t xSemaphore = NULL;
+
+ void vATask( void * pvParameters )
+ {
+    // Semaphore cannot be used before a call to vSemaphoreCreateBinary ().
+    // This is a macro so pass the variable in directly.
+    vSemaphoreCreateBinary( xSemaphore );
+
+    if( xSemaphore != NULL )
+    {
+        // The semaphore was created successfully.
+        // The semaphore can now be used.
+    }
+ }
+ 
+ * \defgroup vSemaphoreCreateBinary vSemaphoreCreateBinary + * \ingroup Semaphores + */ +#if( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) + #define vSemaphoreCreateBinary( xSemaphore ) \ + { \ + ( xSemaphore ) = xQueueGenericCreate( ( UBaseType_t ) 1, semSEMAPHORE_QUEUE_ITEM_LENGTH, queueQUEUE_TYPE_BINARY_SEMAPHORE ); \ + if( ( xSemaphore ) != NULL ) \ + { \ + ( void ) xSemaphoreGive( ( xSemaphore ) ); \ + } \ + } +#endif + +/** + * semphr. h + *
SemaphoreHandle_t xSemaphoreCreateBinary( void )
+ * + * Creates a new binary semaphore instance, and returns a handle by which the + * new semaphore can be referenced. + * + * In many usage scenarios it is faster and more memory efficient to use a + * direct to task notification in place of a binary semaphore! + * http://www.freertos.org/RTOS-task-notifications.html + * + * Internally, within the FreeRTOS implementation, binary semaphores use a block + * of memory, in which the semaphore structure is stored. If a binary semaphore + * is created using xSemaphoreCreateBinary() then the required memory is + * automatically dynamically allocated inside the xSemaphoreCreateBinary() + * function. (see http://www.freertos.org/a00111.html). If a binary semaphore + * is created using xSemaphoreCreateBinaryStatic() then the application writer + * must provide the memory. xSemaphoreCreateBinaryStatic() therefore allows a + * binary semaphore to be created without using any dynamic memory allocation. + * + * The old vSemaphoreCreateBinary() macro is now deprecated in favour of this + * xSemaphoreCreateBinary() function. Note that binary semaphores created using + * the vSemaphoreCreateBinary() macro are created in a state such that the + * first call to 'take' the semaphore would pass, whereas binary semaphores + * created using xSemaphoreCreateBinary() are created in a state such that the + * the semaphore must first be 'given' before it can be 'taken'. + * + * This type of semaphore can be used for pure synchronisation between tasks or + * between an interrupt and a task. The semaphore need not be given back once + * obtained, so one task/interrupt can continuously 'give' the semaphore while + * another continuously 'takes' the semaphore. For this reason this type of + * semaphore does not use a priority inheritance mechanism. For an alternative + * that does use priority inheritance see xSemaphoreCreateMutex(). + * + * @return Handle to the created semaphore, or NULL if the memory required to + * hold the semaphore's data structures could not be allocated. + * + * Example usage: +
+ SemaphoreHandle_t xSemaphore = NULL;
+
+ void vATask( void * pvParameters )
+ {
+    // Semaphore cannot be used before a call to xSemaphoreCreateBinary().
+    // This is a macro so pass the variable in directly.
+    xSemaphore = xSemaphoreCreateBinary();
+
+    if( xSemaphore != NULL )
+    {
+        // The semaphore was created successfully.
+        // The semaphore can now be used.
+    }
+ }
+ 
+ * \defgroup xSemaphoreCreateBinary xSemaphoreCreateBinary + * \ingroup Semaphores + */ +#if( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) + #define xSemaphoreCreateBinary() xQueueGenericCreate( ( UBaseType_t ) 1, semSEMAPHORE_QUEUE_ITEM_LENGTH, queueQUEUE_TYPE_BINARY_SEMAPHORE ) +#endif + +/** + * semphr. h + *
SemaphoreHandle_t xSemaphoreCreateBinaryStatic( StaticSemaphore_t *pxSemaphoreBuffer )
+ * + * Creates a new binary semaphore instance, and returns a handle by which the + * new semaphore can be referenced. + * + * NOTE: In many usage scenarios it is faster and more memory efficient to use a + * direct to task notification in place of a binary semaphore! + * http://www.freertos.org/RTOS-task-notifications.html + * + * Internally, within the FreeRTOS implementation, binary semaphores use a block + * of memory, in which the semaphore structure is stored. If a binary semaphore + * is created using xSemaphoreCreateBinary() then the required memory is + * automatically dynamically allocated inside the xSemaphoreCreateBinary() + * function. (see http://www.freertos.org/a00111.html). If a binary semaphore + * is created using xSemaphoreCreateBinaryStatic() then the application writer + * must provide the memory. xSemaphoreCreateBinaryStatic() therefore allows a + * binary semaphore to be created without using any dynamic memory allocation. + * + * This type of semaphore can be used for pure synchronisation between tasks or + * between an interrupt and a task. The semaphore need not be given back once + * obtained, so one task/interrupt can continuously 'give' the semaphore while + * another continuously 'takes' the semaphore. For this reason this type of + * semaphore does not use a priority inheritance mechanism. For an alternative + * that does use priority inheritance see xSemaphoreCreateMutex(). + * + * @param pxSemaphoreBuffer Must point to a variable of type StaticSemaphore_t, + * which will then be used to hold the semaphore's data structure, removing the + * need for the memory to be allocated dynamically. + * + * @return If the semaphore is created then a handle to the created semaphore is + * returned. If pxSemaphoreBuffer is NULL then NULL is returned. + * + * Example usage: +
+ SemaphoreHandle_t xSemaphore = NULL;
+ StaticSemaphore_t xSemaphoreBuffer;
+
+ void vATask( void * pvParameters )
+ {
+    // Semaphore cannot be used before a call to xSemaphoreCreateBinary().
+    // The semaphore's data structures will be placed in the xSemaphoreBuffer
+    // variable, the address of which is passed into the function.  The
+    // function's parameter is not NULL, so the function will not attempt any
+    // dynamic memory allocation, and therefore the function will not return
+    // return NULL.
+    xSemaphore = xSemaphoreCreateBinary( &xSemaphoreBuffer );
+
+    // Rest of task code goes here.
+ }
+ 
+ * \defgroup xSemaphoreCreateBinaryStatic xSemaphoreCreateBinaryStatic + * \ingroup Semaphores + */ +#if( configSUPPORT_STATIC_ALLOCATION == 1 ) + #define xSemaphoreCreateBinaryStatic( pxStaticSemaphore ) xQueueGenericCreateStatic( ( UBaseType_t ) 1, semSEMAPHORE_QUEUE_ITEM_LENGTH, NULL, pxStaticSemaphore, queueQUEUE_TYPE_BINARY_SEMAPHORE ) +#endif /* configSUPPORT_STATIC_ALLOCATION */ + +/** + * semphr. h + *
xSemaphoreTake(
+ *                   SemaphoreHandle_t xSemaphore,
+ *                   TickType_t xBlockTime
+ *               )
+ * + * Macro to obtain a semaphore. The semaphore must have previously been + * created with a call to xSemaphoreCreateBinary(), xSemaphoreCreateMutex() or + * xSemaphoreCreateCounting(). + * + * @param xSemaphore A handle to the semaphore being taken - obtained when + * the semaphore was created. + * + * @param xBlockTime The time in ticks to wait for the semaphore to become + * available. The macro portTICK_PERIOD_MS can be used to convert this to a + * real time. A block time of zero can be used to poll the semaphore. A block + * time of portMAX_DELAY can be used to block indefinitely (provided + * INCLUDE_vTaskSuspend is set to 1 in FreeRTOSConfig.h). + * + * @return pdTRUE if the semaphore was obtained. pdFALSE + * if xBlockTime expired without the semaphore becoming available. + * + * Example usage: +
+ SemaphoreHandle_t xSemaphore = NULL;
+
+ // A task that creates a semaphore.
+ void vATask( void * pvParameters )
+ {
+    // Create the semaphore to guard a shared resource.
+    xSemaphore = xSemaphoreCreateBinary();
+ }
+
+ // A task that uses the semaphore.
+ void vAnotherTask( void * pvParameters )
+ {
+    // ... Do other things.
+
+    if( xSemaphore != NULL )
+    {
+        // See if we can obtain the semaphore.  If the semaphore is not available
+        // wait 10 ticks to see if it becomes free.
+        if( xSemaphoreTake( xSemaphore, ( TickType_t ) 10 ) == pdTRUE )
+        {
+            // We were able to obtain the semaphore and can now access the
+            // shared resource.
+
+            // ...
+
+            // We have finished accessing the shared resource.  Release the
+            // semaphore.
+            xSemaphoreGive( xSemaphore );
+        }
+        else
+        {
+            // We could not obtain the semaphore and can therefore not access
+            // the shared resource safely.
+        }
+    }
+ }
+ 
+ * \defgroup xSemaphoreTake xSemaphoreTake + * \ingroup Semaphores + */ +#define xSemaphoreTake( xSemaphore, xBlockTime ) xQueueSemaphoreTake( ( xSemaphore ), ( xBlockTime ) ) + +/** + * semphr. h + * xSemaphoreTakeRecursive( + * SemaphoreHandle_t xMutex, + * TickType_t xBlockTime + * ) + * + * Macro to recursively obtain, or 'take', a mutex type semaphore. + * The mutex must have previously been created using a call to + * xSemaphoreCreateRecursiveMutex(); + * + * configUSE_RECURSIVE_MUTEXES must be set to 1 in FreeRTOSConfig.h for this + * macro to be available. + * + * This macro must not be used on mutexes created using xSemaphoreCreateMutex(). + * + * A mutex used recursively can be 'taken' repeatedly by the owner. The mutex + * doesn't become available again until the owner has called + * xSemaphoreGiveRecursive() for each successful 'take' request. For example, + * if a task successfully 'takes' the same mutex 5 times then the mutex will + * not be available to any other task until it has also 'given' the mutex back + * exactly five times. + * + * @param xMutex A handle to the mutex being obtained. This is the + * handle returned by xSemaphoreCreateRecursiveMutex(); + * + * @param xBlockTime The time in ticks to wait for the semaphore to become + * available. The macro portTICK_PERIOD_MS can be used to convert this to a + * real time. A block time of zero can be used to poll the semaphore. If + * the task already owns the semaphore then xSemaphoreTakeRecursive() will + * return immediately no matter what the value of xBlockTime. + * + * @return pdTRUE if the semaphore was obtained. pdFALSE if xBlockTime + * expired without the semaphore becoming available. + * + * Example usage: +
+ SemaphoreHandle_t xMutex = NULL;
+
+ // A task that creates a mutex.
+ void vATask( void * pvParameters )
+ {
+    // Create the mutex to guard a shared resource.
+    xMutex = xSemaphoreCreateRecursiveMutex();
+ }
+
+ // A task that uses the mutex.
+ void vAnotherTask( void * pvParameters )
+ {
+    // ... Do other things.
+
+    if( xMutex != NULL )
+    {
+        // See if we can obtain the mutex.  If the mutex is not available
+        // wait 10 ticks to see if it becomes free.
+        if( xSemaphoreTakeRecursive( xSemaphore, ( TickType_t ) 10 ) == pdTRUE )
+        {
+            // We were able to obtain the mutex and can now access the
+            // shared resource.
+
+            // ...
+            // For some reason due to the nature of the code further calls to
+            // xSemaphoreTakeRecursive() are made on the same mutex.  In real
+            // code these would not be just sequential calls as this would make
+            // no sense.  Instead the calls are likely to be buried inside
+            // a more complex call structure.
+            xSemaphoreTakeRecursive( xMutex, ( TickType_t ) 10 );
+            xSemaphoreTakeRecursive( xMutex, ( TickType_t ) 10 );
+
+            // The mutex has now been 'taken' three times, so will not be
+            // available to another task until it has also been given back
+            // three times.  Again it is unlikely that real code would have
+            // these calls sequentially, but instead buried in a more complex
+            // call structure.  This is just for illustrative purposes.
+            xSemaphoreGiveRecursive( xMutex );
+            xSemaphoreGiveRecursive( xMutex );
+            xSemaphoreGiveRecursive( xMutex );
+
+            // Now the mutex can be taken by other tasks.
+        }
+        else
+        {
+            // We could not obtain the mutex and can therefore not access
+            // the shared resource safely.
+        }
+    }
+ }
+ 
+ * \defgroup xSemaphoreTakeRecursive xSemaphoreTakeRecursive + * \ingroup Semaphores + */ +#if( configUSE_RECURSIVE_MUTEXES == 1 ) + #define xSemaphoreTakeRecursive( xMutex, xBlockTime ) xQueueTakeMutexRecursive( ( xMutex ), ( xBlockTime ) ) +#endif + +/** + * semphr. h + *
xSemaphoreGive( SemaphoreHandle_t xSemaphore )
+ * + * Macro to release a semaphore. The semaphore must have previously been + * created with a call to xSemaphoreCreateBinary(), xSemaphoreCreateMutex() or + * xSemaphoreCreateCounting(). and obtained using sSemaphoreTake(). + * + * This macro must not be used from an ISR. See xSemaphoreGiveFromISR () for + * an alternative which can be used from an ISR. + * + * This macro must also not be used on semaphores created using + * xSemaphoreCreateRecursiveMutex(). + * + * @param xSemaphore A handle to the semaphore being released. This is the + * handle returned when the semaphore was created. + * + * @return pdTRUE if the semaphore was released. pdFALSE if an error occurred. + * Semaphores are implemented using queues. An error can occur if there is + * no space on the queue to post a message - indicating that the + * semaphore was not first obtained correctly. + * + * Example usage: +
+ SemaphoreHandle_t xSemaphore = NULL;
+
+ void vATask( void * pvParameters )
+ {
+    // Create the semaphore to guard a shared resource.
+    xSemaphore = vSemaphoreCreateBinary();
+
+    if( xSemaphore != NULL )
+    {
+        if( xSemaphoreGive( xSemaphore ) != pdTRUE )
+        {
+            // We would expect this call to fail because we cannot give
+            // a semaphore without first "taking" it!
+        }
+
+        // Obtain the semaphore - don't block if the semaphore is not
+        // immediately available.
+        if( xSemaphoreTake( xSemaphore, ( TickType_t ) 0 ) )
+        {
+            // We now have the semaphore and can access the shared resource.
+
+            // ...
+
+            // We have finished accessing the shared resource so can free the
+            // semaphore.
+            if( xSemaphoreGive( xSemaphore ) != pdTRUE )
+            {
+                // We would not expect this call to fail because we must have
+                // obtained the semaphore to get here.
+            }
+        }
+    }
+ }
+ 
+ * \defgroup xSemaphoreGive xSemaphoreGive + * \ingroup Semaphores + */ +#define xSemaphoreGive( xSemaphore ) xQueueGenericSend( ( QueueHandle_t ) ( xSemaphore ), NULL, semGIVE_BLOCK_TIME, queueSEND_TO_BACK ) + +/** + * semphr. h + *
xSemaphoreGiveRecursive( SemaphoreHandle_t xMutex )
+ * + * Macro to recursively release, or 'give', a mutex type semaphore. + * The mutex must have previously been created using a call to + * xSemaphoreCreateRecursiveMutex(); + * + * configUSE_RECURSIVE_MUTEXES must be set to 1 in FreeRTOSConfig.h for this + * macro to be available. + * + * This macro must not be used on mutexes created using xSemaphoreCreateMutex(). + * + * A mutex used recursively can be 'taken' repeatedly by the owner. The mutex + * doesn't become available again until the owner has called + * xSemaphoreGiveRecursive() for each successful 'take' request. For example, + * if a task successfully 'takes' the same mutex 5 times then the mutex will + * not be available to any other task until it has also 'given' the mutex back + * exactly five times. + * + * @param xMutex A handle to the mutex being released, or 'given'. This is the + * handle returned by xSemaphoreCreateMutex(); + * + * @return pdTRUE if the semaphore was given. + * + * Example usage: +
+ SemaphoreHandle_t xMutex = NULL;
+
+ // A task that creates a mutex.
+ void vATask( void * pvParameters )
+ {
+    // Create the mutex to guard a shared resource.
+    xMutex = xSemaphoreCreateRecursiveMutex();
+ }
+
+ // A task that uses the mutex.
+ void vAnotherTask( void * pvParameters )
+ {
+    // ... Do other things.
+
+    if( xMutex != NULL )
+    {
+        // See if we can obtain the mutex.  If the mutex is not available
+        // wait 10 ticks to see if it becomes free.
+        if( xSemaphoreTakeRecursive( xMutex, ( TickType_t ) 10 ) == pdTRUE )
+        {
+            // We were able to obtain the mutex and can now access the
+            // shared resource.
+
+            // ...
+            // For some reason due to the nature of the code further calls to
+			// xSemaphoreTakeRecursive() are made on the same mutex.  In real
+			// code these would not be just sequential calls as this would make
+			// no sense.  Instead the calls are likely to be buried inside
+			// a more complex call structure.
+            xSemaphoreTakeRecursive( xMutex, ( TickType_t ) 10 );
+            xSemaphoreTakeRecursive( xMutex, ( TickType_t ) 10 );
+
+            // The mutex has now been 'taken' three times, so will not be
+			// available to another task until it has also been given back
+			// three times.  Again it is unlikely that real code would have
+			// these calls sequentially, it would be more likely that the calls
+			// to xSemaphoreGiveRecursive() would be called as a call stack
+			// unwound.  This is just for demonstrative purposes.
+            xSemaphoreGiveRecursive( xMutex );
+			xSemaphoreGiveRecursive( xMutex );
+			xSemaphoreGiveRecursive( xMutex );
+
+			// Now the mutex can be taken by other tasks.
+        }
+        else
+        {
+            // We could not obtain the mutex and can therefore not access
+            // the shared resource safely.
+        }
+    }
+ }
+ 
+ * \defgroup xSemaphoreGiveRecursive xSemaphoreGiveRecursive + * \ingroup Semaphores + */ +#if( configUSE_RECURSIVE_MUTEXES == 1 ) + #define xSemaphoreGiveRecursive( xMutex ) xQueueGiveMutexRecursive( ( xMutex ) ) +#endif + +/** + * semphr. h + *
+ xSemaphoreGiveFromISR(
+                          SemaphoreHandle_t xSemaphore,
+                          BaseType_t *pxHigherPriorityTaskWoken
+                      )
+ * + * Macro to release a semaphore. The semaphore must have previously been + * created with a call to xSemaphoreCreateBinary() or xSemaphoreCreateCounting(). + * + * Mutex type semaphores (those created using a call to xSemaphoreCreateMutex()) + * must not be used with this macro. + * + * This macro can be used from an ISR. + * + * @param xSemaphore A handle to the semaphore being released. This is the + * handle returned when the semaphore was created. + * + * @param pxHigherPriorityTaskWoken xSemaphoreGiveFromISR() will set + * *pxHigherPriorityTaskWoken to pdTRUE if giving the semaphore caused a task + * to unblock, and the unblocked task has a priority higher than the currently + * running task. If xSemaphoreGiveFromISR() sets this value to pdTRUE then + * a context switch should be requested before the interrupt is exited. + * + * @return pdTRUE if the semaphore was successfully given, otherwise errQUEUE_FULL. + * + * Example usage: +
+ \#define LONG_TIME 0xffff
+ \#define TICKS_TO_WAIT	10
+ SemaphoreHandle_t xSemaphore = NULL;
+
+ // Repetitive task.
+ void vATask( void * pvParameters )
+ {
+    for( ;; )
+    {
+        // We want this task to run every 10 ticks of a timer.  The semaphore
+        // was created before this task was started.
+
+        // Block waiting for the semaphore to become available.
+        if( xSemaphoreTake( xSemaphore, LONG_TIME ) == pdTRUE )
+        {
+            // It is time to execute.
+
+            // ...
+
+            // We have finished our task.  Return to the top of the loop where
+            // we will block on the semaphore until it is time to execute
+            // again.  Note when using the semaphore for synchronisation with an
+			// ISR in this manner there is no need to 'give' the semaphore back.
+        }
+    }
+ }
+
+ // Timer ISR
+ void vTimerISR( void * pvParameters )
+ {
+ static uint8_t ucLocalTickCount = 0;
+ static BaseType_t xHigherPriorityTaskWoken;
+
+    // A timer tick has occurred.
+
+    // ... Do other time functions.
+
+    // Is it time for vATask () to run?
+	xHigherPriorityTaskWoken = pdFALSE;
+    ucLocalTickCount++;
+    if( ucLocalTickCount >= TICKS_TO_WAIT )
+    {
+        // Unblock the task by releasing the semaphore.
+        xSemaphoreGiveFromISR( xSemaphore, &xHigherPriorityTaskWoken );
+
+        // Reset the count so we release the semaphore again in 10 ticks time.
+        ucLocalTickCount = 0;
+    }
+
+    if( xHigherPriorityTaskWoken != pdFALSE )
+    {
+        // We can force a context switch here.  Context switching from an
+        // ISR uses port specific syntax.  Check the demo task for your port
+        // to find the syntax required.
+    }
+ }
+ 
+ * \defgroup xSemaphoreGiveFromISR xSemaphoreGiveFromISR + * \ingroup Semaphores + */ +#define xSemaphoreGiveFromISR( xSemaphore, pxHigherPriorityTaskWoken ) xQueueGiveFromISR( ( QueueHandle_t ) ( xSemaphore ), ( pxHigherPriorityTaskWoken ) ) + +/** + * semphr. h + *
+ xSemaphoreTakeFromISR(
+                          SemaphoreHandle_t xSemaphore,
+                          BaseType_t *pxHigherPriorityTaskWoken
+                      )
+ * + * Macro to take a semaphore from an ISR. The semaphore must have + * previously been created with a call to xSemaphoreCreateBinary() or + * xSemaphoreCreateCounting(). + * + * Mutex type semaphores (those created using a call to xSemaphoreCreateMutex()) + * must not be used with this macro. + * + * This macro can be used from an ISR, however taking a semaphore from an ISR + * is not a common operation. It is likely to only be useful when taking a + * counting semaphore when an interrupt is obtaining an object from a resource + * pool (when the semaphore count indicates the number of resources available). + * + * @param xSemaphore A handle to the semaphore being taken. This is the + * handle returned when the semaphore was created. + * + * @param pxHigherPriorityTaskWoken xSemaphoreTakeFromISR() will set + * *pxHigherPriorityTaskWoken to pdTRUE if taking the semaphore caused a task + * to unblock, and the unblocked task has a priority higher than the currently + * running task. If xSemaphoreTakeFromISR() sets this value to pdTRUE then + * a context switch should be requested before the interrupt is exited. + * + * @return pdTRUE if the semaphore was successfully taken, otherwise + * pdFALSE + */ +#define xSemaphoreTakeFromISR( xSemaphore, pxHigherPriorityTaskWoken ) xQueueReceiveFromISR( ( QueueHandle_t ) ( xSemaphore ), NULL, ( pxHigherPriorityTaskWoken ) ) + +/** + * semphr. h + *
SemaphoreHandle_t xSemaphoreCreateMutex( void )
+ * + * Creates a new mutex type semaphore instance, and returns a handle by which + * the new mutex can be referenced. + * + * Internally, within the FreeRTOS implementation, mutex semaphores use a block + * of memory, in which the mutex structure is stored. If a mutex is created + * using xSemaphoreCreateMutex() then the required memory is automatically + * dynamically allocated inside the xSemaphoreCreateMutex() function. (see + * http://www.freertos.org/a00111.html). If a mutex is created using + * xSemaphoreCreateMutexStatic() then the application writer must provided the + * memory. xSemaphoreCreateMutexStatic() therefore allows a mutex to be created + * without using any dynamic memory allocation. + * + * Mutexes created using this function can be accessed using the xSemaphoreTake() + * and xSemaphoreGive() macros. The xSemaphoreTakeRecursive() and + * xSemaphoreGiveRecursive() macros must not be used. + * + * This type of semaphore uses a priority inheritance mechanism so a task + * 'taking' a semaphore MUST ALWAYS 'give' the semaphore back once the + * semaphore it is no longer required. + * + * Mutex type semaphores cannot be used from within interrupt service routines. + * + * See xSemaphoreCreateBinary() for an alternative implementation that can be + * used for pure synchronisation (where one task or interrupt always 'gives' the + * semaphore and another always 'takes' the semaphore) and from within interrupt + * service routines. + * + * @return If the mutex was successfully created then a handle to the created + * semaphore is returned. If there was not enough heap to allocate the mutex + * data structures then NULL is returned. + * + * Example usage: +
+ SemaphoreHandle_t xSemaphore;
+
+ void vATask( void * pvParameters )
+ {
+    // Semaphore cannot be used before a call to xSemaphoreCreateMutex().
+    // This is a macro so pass the variable in directly.
+    xSemaphore = xSemaphoreCreateMutex();
+
+    if( xSemaphore != NULL )
+    {
+        // The semaphore was created successfully.
+        // The semaphore can now be used.
+    }
+ }
+ 
+ * \defgroup xSemaphoreCreateMutex xSemaphoreCreateMutex + * \ingroup Semaphores + */ +#if( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) + #define xSemaphoreCreateMutex() xQueueCreateMutex( queueQUEUE_TYPE_MUTEX ) +#endif + +/** + * semphr. h + *
SemaphoreHandle_t xSemaphoreCreateMutexStatic( StaticSemaphore_t *pxMutexBuffer )
+ * + * Creates a new mutex type semaphore instance, and returns a handle by which + * the new mutex can be referenced. + * + * Internally, within the FreeRTOS implementation, mutex semaphores use a block + * of memory, in which the mutex structure is stored. If a mutex is created + * using xSemaphoreCreateMutex() then the required memory is automatically + * dynamically allocated inside the xSemaphoreCreateMutex() function. (see + * http://www.freertos.org/a00111.html). If a mutex is created using + * xSemaphoreCreateMutexStatic() then the application writer must provided the + * memory. xSemaphoreCreateMutexStatic() therefore allows a mutex to be created + * without using any dynamic memory allocation. + * + * Mutexes created using this function can be accessed using the xSemaphoreTake() + * and xSemaphoreGive() macros. The xSemaphoreTakeRecursive() and + * xSemaphoreGiveRecursive() macros must not be used. + * + * This type of semaphore uses a priority inheritance mechanism so a task + * 'taking' a semaphore MUST ALWAYS 'give' the semaphore back once the + * semaphore it is no longer required. + * + * Mutex type semaphores cannot be used from within interrupt service routines. + * + * See xSemaphoreCreateBinary() for an alternative implementation that can be + * used for pure synchronisation (where one task or interrupt always 'gives' the + * semaphore and another always 'takes' the semaphore) and from within interrupt + * service routines. + * + * @param pxMutexBuffer Must point to a variable of type StaticSemaphore_t, + * which will be used to hold the mutex's data structure, removing the need for + * the memory to be allocated dynamically. + * + * @return If the mutex was successfully created then a handle to the created + * mutex is returned. If pxMutexBuffer was NULL then NULL is returned. + * + * Example usage: +
+ SemaphoreHandle_t xSemaphore;
+ StaticSemaphore_t xMutexBuffer;
+
+ void vATask( void * pvParameters )
+ {
+    // A mutex cannot be used before it has been created.  xMutexBuffer is
+    // into xSemaphoreCreateMutexStatic() so no dynamic memory allocation is
+    // attempted.
+    xSemaphore = xSemaphoreCreateMutexStatic( &xMutexBuffer );
+
+    // As no dynamic memory allocation was performed, xSemaphore cannot be NULL,
+    // so there is no need to check it.
+ }
+ 
+ * \defgroup xSemaphoreCreateMutexStatic xSemaphoreCreateMutexStatic + * \ingroup Semaphores + */ + #if( configSUPPORT_STATIC_ALLOCATION == 1 ) + #define xSemaphoreCreateMutexStatic( pxMutexBuffer ) xQueueCreateMutexStatic( queueQUEUE_TYPE_MUTEX, ( pxMutexBuffer ) ) +#endif /* configSUPPORT_STATIC_ALLOCATION */ + + +/** + * semphr. h + *
SemaphoreHandle_t xSemaphoreCreateRecursiveMutex( void )
+ * + * Creates a new recursive mutex type semaphore instance, and returns a handle + * by which the new recursive mutex can be referenced. + * + * Internally, within the FreeRTOS implementation, recursive mutexs use a block + * of memory, in which the mutex structure is stored. If a recursive mutex is + * created using xSemaphoreCreateRecursiveMutex() then the required memory is + * automatically dynamically allocated inside the + * xSemaphoreCreateRecursiveMutex() function. (see + * http://www.freertos.org/a00111.html). If a recursive mutex is created using + * xSemaphoreCreateRecursiveMutexStatic() then the application writer must + * provide the memory that will get used by the mutex. + * xSemaphoreCreateRecursiveMutexStatic() therefore allows a recursive mutex to + * be created without using any dynamic memory allocation. + * + * Mutexes created using this macro can be accessed using the + * xSemaphoreTakeRecursive() and xSemaphoreGiveRecursive() macros. The + * xSemaphoreTake() and xSemaphoreGive() macros must not be used. + * + * A mutex used recursively can be 'taken' repeatedly by the owner. The mutex + * doesn't become available again until the owner has called + * xSemaphoreGiveRecursive() for each successful 'take' request. For example, + * if a task successfully 'takes' the same mutex 5 times then the mutex will + * not be available to any other task until it has also 'given' the mutex back + * exactly five times. + * + * This type of semaphore uses a priority inheritance mechanism so a task + * 'taking' a semaphore MUST ALWAYS 'give' the semaphore back once the + * semaphore it is no longer required. + * + * Mutex type semaphores cannot be used from within interrupt service routines. + * + * See xSemaphoreCreateBinary() for an alternative implementation that can be + * used for pure synchronisation (where one task or interrupt always 'gives' the + * semaphore and another always 'takes' the semaphore) and from within interrupt + * service routines. + * + * @return xSemaphore Handle to the created mutex semaphore. Should be of type + * SemaphoreHandle_t. + * + * Example usage: +
+ SemaphoreHandle_t xSemaphore;
+
+ void vATask( void * pvParameters )
+ {
+    // Semaphore cannot be used before a call to xSemaphoreCreateMutex().
+    // This is a macro so pass the variable in directly.
+    xSemaphore = xSemaphoreCreateRecursiveMutex();
+
+    if( xSemaphore != NULL )
+    {
+        // The semaphore was created successfully.
+        // The semaphore can now be used.
+    }
+ }
+ 
+ * \defgroup xSemaphoreCreateRecursiveMutex xSemaphoreCreateRecursiveMutex + * \ingroup Semaphores + */ +#if( ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) && ( configUSE_RECURSIVE_MUTEXES == 1 ) ) + #define xSemaphoreCreateRecursiveMutex() xQueueCreateMutex( queueQUEUE_TYPE_RECURSIVE_MUTEX ) +#endif + +/** + * semphr. h + *
SemaphoreHandle_t xSemaphoreCreateRecursiveMutexStatic( StaticSemaphore_t *pxMutexBuffer )
+ * + * Creates a new recursive mutex type semaphore instance, and returns a handle + * by which the new recursive mutex can be referenced. + * + * Internally, within the FreeRTOS implementation, recursive mutexs use a block + * of memory, in which the mutex structure is stored. If a recursive mutex is + * created using xSemaphoreCreateRecursiveMutex() then the required memory is + * automatically dynamically allocated inside the + * xSemaphoreCreateRecursiveMutex() function. (see + * http://www.freertos.org/a00111.html). If a recursive mutex is created using + * xSemaphoreCreateRecursiveMutexStatic() then the application writer must + * provide the memory that will get used by the mutex. + * xSemaphoreCreateRecursiveMutexStatic() therefore allows a recursive mutex to + * be created without using any dynamic memory allocation. + * + * Mutexes created using this macro can be accessed using the + * xSemaphoreTakeRecursive() and xSemaphoreGiveRecursive() macros. The + * xSemaphoreTake() and xSemaphoreGive() macros must not be used. + * + * A mutex used recursively can be 'taken' repeatedly by the owner. The mutex + * doesn't become available again until the owner has called + * xSemaphoreGiveRecursive() for each successful 'take' request. For example, + * if a task successfully 'takes' the same mutex 5 times then the mutex will + * not be available to any other task until it has also 'given' the mutex back + * exactly five times. + * + * This type of semaphore uses a priority inheritance mechanism so a task + * 'taking' a semaphore MUST ALWAYS 'give' the semaphore back once the + * semaphore it is no longer required. + * + * Mutex type semaphores cannot be used from within interrupt service routines. + * + * See xSemaphoreCreateBinary() for an alternative implementation that can be + * used for pure synchronisation (where one task or interrupt always 'gives' the + * semaphore and another always 'takes' the semaphore) and from within interrupt + * service routines. + * + * @param pxMutexBuffer Must point to a variable of type StaticSemaphore_t, + * which will then be used to hold the recursive mutex's data structure, + * removing the need for the memory to be allocated dynamically. + * + * @return If the recursive mutex was successfully created then a handle to the + * created recursive mutex is returned. If pxMutexBuffer was NULL then NULL is + * returned. + * + * Example usage: +
+ SemaphoreHandle_t xSemaphore;
+ StaticSemaphore_t xMutexBuffer;
+
+ void vATask( void * pvParameters )
+ {
+    // A recursive semaphore cannot be used before it is created.  Here a
+    // recursive mutex is created using xSemaphoreCreateRecursiveMutexStatic().
+    // The address of xMutexBuffer is passed into the function, and will hold
+    // the mutexes data structures - so no dynamic memory allocation will be
+    // attempted.
+    xSemaphore = xSemaphoreCreateRecursiveMutexStatic( &xMutexBuffer );
+
+    // As no dynamic memory allocation was performed, xSemaphore cannot be NULL,
+    // so there is no need to check it.
+ }
+ 
+ * \defgroup xSemaphoreCreateRecursiveMutexStatic xSemaphoreCreateRecursiveMutexStatic + * \ingroup Semaphores + */ +#if( ( configSUPPORT_STATIC_ALLOCATION == 1 ) && ( configUSE_RECURSIVE_MUTEXES == 1 ) ) + #define xSemaphoreCreateRecursiveMutexStatic( pxStaticSemaphore ) xQueueCreateMutexStatic( queueQUEUE_TYPE_RECURSIVE_MUTEX, pxStaticSemaphore ) +#endif /* configSUPPORT_STATIC_ALLOCATION */ + +/** + * semphr. h + *
SemaphoreHandle_t xSemaphoreCreateCounting( UBaseType_t uxMaxCount, UBaseType_t uxInitialCount )
+ * + * Creates a new counting semaphore instance, and returns a handle by which the + * new counting semaphore can be referenced. + * + * In many usage scenarios it is faster and more memory efficient to use a + * direct to task notification in place of a counting semaphore! + * http://www.freertos.org/RTOS-task-notifications.html + * + * Internally, within the FreeRTOS implementation, counting semaphores use a + * block of memory, in which the counting semaphore structure is stored. If a + * counting semaphore is created using xSemaphoreCreateCounting() then the + * required memory is automatically dynamically allocated inside the + * xSemaphoreCreateCounting() function. (see + * http://www.freertos.org/a00111.html). If a counting semaphore is created + * using xSemaphoreCreateCountingStatic() then the application writer can + * instead optionally provide the memory that will get used by the counting + * semaphore. xSemaphoreCreateCountingStatic() therefore allows a counting + * semaphore to be created without using any dynamic memory allocation. + * + * Counting semaphores are typically used for two things: + * + * 1) Counting events. + * + * In this usage scenario an event handler will 'give' a semaphore each time + * an event occurs (incrementing the semaphore count value), and a handler + * task will 'take' a semaphore each time it processes an event + * (decrementing the semaphore count value). The count value is therefore + * the difference between the number of events that have occurred and the + * number that have been processed. In this case it is desirable for the + * initial count value to be zero. + * + * 2) Resource management. + * + * In this usage scenario the count value indicates the number of resources + * available. To obtain control of a resource a task must first obtain a + * semaphore - decrementing the semaphore count value. When the count value + * reaches zero there are no free resources. When a task finishes with the + * resource it 'gives' the semaphore back - incrementing the semaphore count + * value. In this case it is desirable for the initial count value to be + * equal to the maximum count value, indicating that all resources are free. + * + * @param uxMaxCount The maximum count value that can be reached. When the + * semaphore reaches this value it can no longer be 'given'. + * + * @param uxInitialCount The count value assigned to the semaphore when it is + * created. + * + * @return Handle to the created semaphore. Null if the semaphore could not be + * created. + * + * Example usage: +
+ SemaphoreHandle_t xSemaphore;
+
+ void vATask( void * pvParameters )
+ {
+ SemaphoreHandle_t xSemaphore = NULL;
+
+    // Semaphore cannot be used before a call to xSemaphoreCreateCounting().
+    // The max value to which the semaphore can count should be 10, and the
+    // initial value assigned to the count should be 0.
+    xSemaphore = xSemaphoreCreateCounting( 10, 0 );
+
+    if( xSemaphore != NULL )
+    {
+        // The semaphore was created successfully.
+        // The semaphore can now be used.
+    }
+ }
+ 
+ * \defgroup xSemaphoreCreateCounting xSemaphoreCreateCounting + * \ingroup Semaphores + */ +#if( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) + #define xSemaphoreCreateCounting( uxMaxCount, uxInitialCount ) xQueueCreateCountingSemaphore( ( uxMaxCount ), ( uxInitialCount ) ) +#endif + +/** + * semphr. h + *
SemaphoreHandle_t xSemaphoreCreateCountingStatic( UBaseType_t uxMaxCount, UBaseType_t uxInitialCount, StaticSemaphore_t *pxSemaphoreBuffer )
+ * + * Creates a new counting semaphore instance, and returns a handle by which the + * new counting semaphore can be referenced. + * + * In many usage scenarios it is faster and more memory efficient to use a + * direct to task notification in place of a counting semaphore! + * http://www.freertos.org/RTOS-task-notifications.html + * + * Internally, within the FreeRTOS implementation, counting semaphores use a + * block of memory, in which the counting semaphore structure is stored. If a + * counting semaphore is created using xSemaphoreCreateCounting() then the + * required memory is automatically dynamically allocated inside the + * xSemaphoreCreateCounting() function. (see + * http://www.freertos.org/a00111.html). If a counting semaphore is created + * using xSemaphoreCreateCountingStatic() then the application writer must + * provide the memory. xSemaphoreCreateCountingStatic() therefore allows a + * counting semaphore to be created without using any dynamic memory allocation. + * + * Counting semaphores are typically used for two things: + * + * 1) Counting events. + * + * In this usage scenario an event handler will 'give' a semaphore each time + * an event occurs (incrementing the semaphore count value), and a handler + * task will 'take' a semaphore each time it processes an event + * (decrementing the semaphore count value). The count value is therefore + * the difference between the number of events that have occurred and the + * number that have been processed. In this case it is desirable for the + * initial count value to be zero. + * + * 2) Resource management. + * + * In this usage scenario the count value indicates the number of resources + * available. To obtain control of a resource a task must first obtain a + * semaphore - decrementing the semaphore count value. When the count value + * reaches zero there are no free resources. When a task finishes with the + * resource it 'gives' the semaphore back - incrementing the semaphore count + * value. In this case it is desirable for the initial count value to be + * equal to the maximum count value, indicating that all resources are free. + * + * @param uxMaxCount The maximum count value that can be reached. When the + * semaphore reaches this value it can no longer be 'given'. + * + * @param uxInitialCount The count value assigned to the semaphore when it is + * created. + * + * @param pxSemaphoreBuffer Must point to a variable of type StaticSemaphore_t, + * which will then be used to hold the semaphore's data structure, removing the + * need for the memory to be allocated dynamically. + * + * @return If the counting semaphore was successfully created then a handle to + * the created counting semaphore is returned. If pxSemaphoreBuffer was NULL + * then NULL is returned. + * + * Example usage: +
+ SemaphoreHandle_t xSemaphore;
+ StaticSemaphore_t xSemaphoreBuffer;
+
+ void vATask( void * pvParameters )
+ {
+ SemaphoreHandle_t xSemaphore = NULL;
+
+    // Counting semaphore cannot be used before they have been created.  Create
+    // a counting semaphore using xSemaphoreCreateCountingStatic().  The max
+    // value to which the semaphore can count is 10, and the initial value
+    // assigned to the count will be 0.  The address of xSemaphoreBuffer is
+    // passed in and will be used to hold the semaphore structure, so no dynamic
+    // memory allocation will be used.
+    xSemaphore = xSemaphoreCreateCounting( 10, 0, &xSemaphoreBuffer );
+
+    // No memory allocation was attempted so xSemaphore cannot be NULL, so there
+    // is no need to check its value.
+ }
+ 
+ * \defgroup xSemaphoreCreateCountingStatic xSemaphoreCreateCountingStatic + * \ingroup Semaphores + */ +#if( configSUPPORT_STATIC_ALLOCATION == 1 ) + #define xSemaphoreCreateCountingStatic( uxMaxCount, uxInitialCount, pxSemaphoreBuffer ) xQueueCreateCountingSemaphoreStatic( ( uxMaxCount ), ( uxInitialCount ), ( pxSemaphoreBuffer ) ) +#endif /* configSUPPORT_STATIC_ALLOCATION */ + +/** + * semphr. h + *
void vSemaphoreDelete( SemaphoreHandle_t xSemaphore );
+ * + * Delete a semaphore. This function must be used with care. For example, + * do not delete a mutex type semaphore if the mutex is held by a task. + * + * @param xSemaphore A handle to the semaphore to be deleted. + * + * \defgroup vSemaphoreDelete vSemaphoreDelete + * \ingroup Semaphores + */ +#define vSemaphoreDelete( xSemaphore ) vQueueDelete( ( QueueHandle_t ) ( xSemaphore ) ) + +/** + * semphr.h + *
TaskHandle_t xSemaphoreGetMutexHolder( SemaphoreHandle_t xMutex );
+ * + * If xMutex is indeed a mutex type semaphore, return the current mutex holder. + * If xMutex is not a mutex type semaphore, or the mutex is available (not held + * by a task), return NULL. + * + * Note: This is a good way of determining if the calling task is the mutex + * holder, but not a good way of determining the identity of the mutex holder as + * the holder may change between the function exiting and the returned value + * being tested. + */ +#define xSemaphoreGetMutexHolder( xSemaphore ) xQueueGetMutexHolder( ( xSemaphore ) ) + +/** + * semphr.h + *
TaskHandle_t xSemaphoreGetMutexHolderFromISR( SemaphoreHandle_t xMutex );
+ * + * If xMutex is indeed a mutex type semaphore, return the current mutex holder. + * If xMutex is not a mutex type semaphore, or the mutex is available (not held + * by a task), return NULL. + * + */ +#define xSemaphoreGetMutexHolderFromISR( xSemaphore ) xQueueGetMutexHolderFromISR( ( xSemaphore ) ) + +/** + * semphr.h + *
UBaseType_t uxSemaphoreGetCount( SemaphoreHandle_t xSemaphore );
+ * + * If the semaphore is a counting semaphore then uxSemaphoreGetCount() returns + * its current count value. If the semaphore is a binary semaphore then + * uxSemaphoreGetCount() returns 1 if the semaphore is available, and 0 if the + * semaphore is not available. + * + */ +#define uxSemaphoreGetCount( xSemaphore ) uxQueueMessagesWaiting( ( QueueHandle_t ) ( xSemaphore ) ) + +#endif /* SEMAPHORE_H */ + + diff --git a/rtos/freertos/abstraction_layer_freertos/include/stack_macros.h b/rtos/freertos/abstraction_layer_freertos/include/stack_macros.h new file mode 100644 index 00000000..4f6f5cac --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/include/stack_macros.h @@ -0,0 +1,129 @@ +/* + * FreeRTOS Kernel V10.3.0 + * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * + * http://www.FreeRTOS.org + * http://aws.amazon.com/freertos + * + * 1 tab == 4 spaces! + */ + +#ifndef STACK_MACROS_H +#define STACK_MACROS_H + +/* + * Call the stack overflow hook function if the stack of the task being swapped + * out is currently overflowed, or looks like it might have overflowed in the + * past. + * + * Setting configCHECK_FOR_STACK_OVERFLOW to 1 will cause the macro to check + * the current stack state only - comparing the current top of stack value to + * the stack limit. Setting configCHECK_FOR_STACK_OVERFLOW to greater than 1 + * will also cause the last few stack bytes to be checked to ensure the value + * to which the bytes were set when the task was created have not been + * overwritten. Note this second test does not guarantee that an overflowed + * stack will always be recognised. + */ + +/*-----------------------------------------------------------*/ + +#if( ( configCHECK_FOR_STACK_OVERFLOW == 1 ) && ( portSTACK_GROWTH < 0 ) ) + + /* Only the current stack state is to be checked. */ + #define taskCHECK_FOR_STACK_OVERFLOW() \ + { \ + /* Is the currently saved stack pointer within the stack limit? */ \ + if( pxCurrentTCB->pxTopOfStack <= pxCurrentTCB->pxStack ) \ + { \ + vApplicationStackOverflowHook( ( TaskHandle_t ) pxCurrentTCB, pxCurrentTCB->pcTaskName ); \ + } \ + } + +#endif /* configCHECK_FOR_STACK_OVERFLOW == 1 */ +/*-----------------------------------------------------------*/ + +#if( ( configCHECK_FOR_STACK_OVERFLOW == 1 ) && ( portSTACK_GROWTH > 0 ) ) + + /* Only the current stack state is to be checked. */ + #define taskCHECK_FOR_STACK_OVERFLOW() \ + { \ + \ + /* Is the currently saved stack pointer within the stack limit? */ \ + if( pxCurrentTCB->pxTopOfStack >= pxCurrentTCB->pxEndOfStack ) \ + { \ + vApplicationStackOverflowHook( ( TaskHandle_t ) pxCurrentTCB, pxCurrentTCB->pcTaskName ); \ + } \ + } + +#endif /* configCHECK_FOR_STACK_OVERFLOW == 1 */ +/*-----------------------------------------------------------*/ + +#if( ( configCHECK_FOR_STACK_OVERFLOW > 1 ) && ( portSTACK_GROWTH < 0 ) ) + + #define taskCHECK_FOR_STACK_OVERFLOW() \ + { \ + const uint32_t * const pulStack = ( uint32_t * ) pxCurrentTCB->pxStack; \ + const uint32_t ulCheckValue = ( uint32_t ) 0xa5a5a5a5; \ + \ + if( ( pulStack[ 0 ] != ulCheckValue ) || \ + ( pulStack[ 1 ] != ulCheckValue ) || \ + ( pulStack[ 2 ] != ulCheckValue ) || \ + ( pulStack[ 3 ] != ulCheckValue ) ) \ + { \ + vApplicationStackOverflowHook( ( TaskHandle_t ) pxCurrentTCB, pxCurrentTCB->pcTaskName ); \ + } \ + } + +#endif /* #if( configCHECK_FOR_STACK_OVERFLOW > 1 ) */ +/*-----------------------------------------------------------*/ + +#if( ( configCHECK_FOR_STACK_OVERFLOW > 1 ) && ( portSTACK_GROWTH > 0 ) ) + + #define taskCHECK_FOR_STACK_OVERFLOW() \ + { \ + int8_t *pcEndOfStack = ( int8_t * ) pxCurrentTCB->pxEndOfStack; \ + static const uint8_t ucExpectedStackBytes[] = { tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, \ + tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, \ + tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, \ + tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, \ + tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE }; \ + \ + \ + pcEndOfStack -= sizeof( ucExpectedStackBytes ); \ + \ + /* Has the extremity of the task stack ever been written over? */ \ + if( memcmp( ( void * ) pcEndOfStack, ( void * ) ucExpectedStackBytes, sizeof( ucExpectedStackBytes ) ) != 0 ) \ + { \ + vApplicationStackOverflowHook( ( TaskHandle_t ) pxCurrentTCB, pxCurrentTCB->pcTaskName ); \ + } \ + } + +#endif /* #if( configCHECK_FOR_STACK_OVERFLOW > 1 ) */ +/*-----------------------------------------------------------*/ + +/* Remove stack overflow macro if not being used. */ +#ifndef taskCHECK_FOR_STACK_OVERFLOW + #define taskCHECK_FOR_STACK_OVERFLOW() +#endif + + + +#endif /* STACK_MACROS_H */ + diff --git a/rtos/freertos/abstraction_layer_freertos/include/stdint.readme b/rtos/freertos/abstraction_layer_freertos/include/stdint.readme new file mode 100644 index 00000000..6d86149c --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/include/stdint.readme @@ -0,0 +1,27 @@ + +#ifndef FREERTOS_STDINT +#define FREERTOS_STDINT + +/******************************************************************************* + * THIS IS NOT A FULL stdint.h IMPLEMENTATION - It only contains the definitions + * necessary to build the FreeRTOS code. It is provided to allow FreeRTOS to be + * built using compilers that do not provide their own stdint.h definition. + * + * To use this file: + * + * 1) Copy this file into the directory that contains your FreeRTOSConfig.h + * header file, as that directory will already be in the compilers include + * path. + * + * 2) Rename the copied file stdint.h. + * + */ + +typedef signed char int8_t; +typedef unsigned char uint8_t; +typedef short int16_t; +typedef unsigned short uint16_t; +typedef long int32_t; +typedef unsigned long uint32_t; + +#endif /* FREERTOS_STDINT */ diff --git a/rtos/freertos/abstraction_layer_freertos/include/stream_buffer.h b/rtos/freertos/abstraction_layer_freertos/include/stream_buffer.h new file mode 100644 index 00000000..50c782ae --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/include/stream_buffer.h @@ -0,0 +1,859 @@ +/* + * FreeRTOS Kernel V10.3.0 + * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * + * http://www.FreeRTOS.org + * http://aws.amazon.com/freertos + * + * 1 tab == 4 spaces! + */ + +/* + * Stream buffers are used to send a continuous stream of data from one task or + * interrupt to another. Their implementation is light weight, making them + * particularly suited for interrupt to task and core to core communication + * scenarios. + * + * ***NOTE***: Uniquely among FreeRTOS objects, the stream buffer + * implementation (so also the message buffer implementation, as message buffers + * are built on top of stream buffers) assumes there is only one task or + * interrupt that will write to the buffer (the writer), and only one task or + * interrupt that will read from the buffer (the reader). It is safe for the + * writer and reader to be different tasks or interrupts, but, unlike other + * FreeRTOS objects, it is not safe to have multiple different writers or + * multiple different readers. If there are to be multiple different writers + * then the application writer must place each call to a writing API function + * (such as xStreamBufferSend()) inside a critical section and set the send + * block time to 0. Likewise, if there are to be multiple different readers + * then the application writer must place each call to a reading API function + * (such as xStreamBufferReceive()) inside a critical section section and set the + * receive block time to 0. + * + */ + +#ifndef STREAM_BUFFER_H +#define STREAM_BUFFER_H + +#ifndef INC_FREERTOS_H + #error "include FreeRTOS.h must appear in source files before include stream_buffer.h" +#endif + +#if defined( __cplusplus ) +extern "C" { +#endif + +/** + * Type by which stream buffers are referenced. For example, a call to + * xStreamBufferCreate() returns an StreamBufferHandle_t variable that can + * then be used as a parameter to xStreamBufferSend(), xStreamBufferReceive(), + * etc. + */ +struct StreamBufferDef_t; +typedef struct StreamBufferDef_t * StreamBufferHandle_t; + + +/** + * message_buffer.h + * +
+StreamBufferHandle_t xStreamBufferCreate( size_t xBufferSizeBytes, size_t xTriggerLevelBytes );
+
+ * + * Creates a new stream buffer using dynamically allocated memory. See + * xStreamBufferCreateStatic() for a version that uses statically allocated + * memory (memory that is allocated at compile time). + * + * configSUPPORT_DYNAMIC_ALLOCATION must be set to 1 or left undefined in + * FreeRTOSConfig.h for xStreamBufferCreate() to be available. + * + * @param xBufferSizeBytes The total number of bytes the stream buffer will be + * able to hold at any one time. + * + * @param xTriggerLevelBytes The number of bytes that must be in the stream + * buffer before a task that is blocked on the stream buffer to wait for data is + * moved out of the blocked state. For example, if a task is blocked on a read + * of an empty stream buffer that has a trigger level of 1 then the task will be + * unblocked when a single byte is written to the buffer or the task's block + * time expires. As another example, if a task is blocked on a read of an empty + * stream buffer that has a trigger level of 10 then the task will not be + * unblocked until the stream buffer contains at least 10 bytes or the task's + * block time expires. If a reading task's block time expires before the + * trigger level is reached then the task will still receive however many bytes + * are actually available. Setting a trigger level of 0 will result in a + * trigger level of 1 being used. It is not valid to specify a trigger level + * that is greater than the buffer size. + * + * @return If NULL is returned, then the stream buffer cannot be created + * because there is insufficient heap memory available for FreeRTOS to allocate + * the stream buffer data structures and storage area. A non-NULL value being + * returned indicates that the stream buffer has been created successfully - + * the returned value should be stored as the handle to the created stream + * buffer. + * + * Example use: +
+
+void vAFunction( void )
+{
+StreamBufferHandle_t xStreamBuffer;
+const size_t xStreamBufferSizeBytes = 100, xTriggerLevel = 10;
+
+    // Create a stream buffer that can hold 100 bytes.  The memory used to hold
+    // both the stream buffer structure and the data in the stream buffer is
+    // allocated dynamically.
+    xStreamBuffer = xStreamBufferCreate( xStreamBufferSizeBytes, xTriggerLevel );
+
+    if( xStreamBuffer == NULL )
+    {
+        // There was not enough heap memory space available to create the
+        // stream buffer.
+    }
+    else
+    {
+        // The stream buffer was created successfully and can now be used.
+    }
+}
+
+ * \defgroup xStreamBufferCreate xStreamBufferCreate + * \ingroup StreamBufferManagement + */ +#define xStreamBufferCreate( xBufferSizeBytes, xTriggerLevelBytes ) xStreamBufferGenericCreate( xBufferSizeBytes, xTriggerLevelBytes, pdFALSE ) + +/** + * stream_buffer.h + * +
+StreamBufferHandle_t xStreamBufferCreateStatic( size_t xBufferSizeBytes,
+                                                size_t xTriggerLevelBytes,
+                                                uint8_t *pucStreamBufferStorageArea,
+                                                StaticStreamBuffer_t *pxStaticStreamBuffer );
+
+ * Creates a new stream buffer using statically allocated memory. See + * xStreamBufferCreate() for a version that uses dynamically allocated memory. + * + * configSUPPORT_STATIC_ALLOCATION must be set to 1 in FreeRTOSConfig.h for + * xStreamBufferCreateStatic() to be available. + * + * @param xBufferSizeBytes The size, in bytes, of the buffer pointed to by the + * pucStreamBufferStorageArea parameter. + * + * @param xTriggerLevelBytes The number of bytes that must be in the stream + * buffer before a task that is blocked on the stream buffer to wait for data is + * moved out of the blocked state. For example, if a task is blocked on a read + * of an empty stream buffer that has a trigger level of 1 then the task will be + * unblocked when a single byte is written to the buffer or the task's block + * time expires. As another example, if a task is blocked on a read of an empty + * stream buffer that has a trigger level of 10 then the task will not be + * unblocked until the stream buffer contains at least 10 bytes or the task's + * block time expires. If a reading task's block time expires before the + * trigger level is reached then the task will still receive however many bytes + * are actually available. Setting a trigger level of 0 will result in a + * trigger level of 1 being used. It is not valid to specify a trigger level + * that is greater than the buffer size. + * + * @param pucStreamBufferStorageArea Must point to a uint8_t array that is at + * least xBufferSizeBytes + 1 big. This is the array to which streams are + * copied when they are written to the stream buffer. + * + * @param pxStaticStreamBuffer Must point to a variable of type + * StaticStreamBuffer_t, which will be used to hold the stream buffer's data + * structure. + * + * @return If the stream buffer is created successfully then a handle to the + * created stream buffer is returned. If either pucStreamBufferStorageArea or + * pxStaticstreamBuffer are NULL then NULL is returned. + * + * Example use: +
+
+// Used to dimension the array used to hold the streams.  The available space
+// will actually be one less than this, so 999.
+#define STORAGE_SIZE_BYTES 1000
+
+// Defines the memory that will actually hold the streams within the stream
+// buffer.
+static uint8_t ucStorageBuffer[ STORAGE_SIZE_BYTES ];
+
+// The variable used to hold the stream buffer structure.
+StaticStreamBuffer_t xStreamBufferStruct;
+
+void MyFunction( void )
+{
+StreamBufferHandle_t xStreamBuffer;
+const size_t xTriggerLevel = 1;
+
+    xStreamBuffer = xStreamBufferCreateStatic( sizeof( ucBufferStorage ),
+                                               xTriggerLevel,
+                                               ucBufferStorage,
+                                               &xStreamBufferStruct );
+
+    // As neither the pucStreamBufferStorageArea or pxStaticStreamBuffer
+    // parameters were NULL, xStreamBuffer will not be NULL, and can be used to
+    // reference the created stream buffer in other stream buffer API calls.
+
+    // Other code that uses the stream buffer can go here.
+}
+
+
+ * \defgroup xStreamBufferCreateStatic xStreamBufferCreateStatic + * \ingroup StreamBufferManagement + */ +#define xStreamBufferCreateStatic( xBufferSizeBytes, xTriggerLevelBytes, pucStreamBufferStorageArea, pxStaticStreamBuffer ) xStreamBufferGenericCreateStatic( xBufferSizeBytes, xTriggerLevelBytes, pdFALSE, pucStreamBufferStorageArea, pxStaticStreamBuffer ) + +/** + * stream_buffer.h + * +
+size_t xStreamBufferSend( StreamBufferHandle_t xStreamBuffer,
+                          const void *pvTxData,
+                          size_t xDataLengthBytes,
+                          TickType_t xTicksToWait );
+
+ * + * Sends bytes to a stream buffer. The bytes are copied into the stream buffer. + * + * ***NOTE***: Uniquely among FreeRTOS objects, the stream buffer + * implementation (so also the message buffer implementation, as message buffers + * are built on top of stream buffers) assumes there is only one task or + * interrupt that will write to the buffer (the writer), and only one task or + * interrupt that will read from the buffer (the reader). It is safe for the + * writer and reader to be different tasks or interrupts, but, unlike other + * FreeRTOS objects, it is not safe to have multiple different writers or + * multiple different readers. If there are to be multiple different writers + * then the application writer must place each call to a writing API function + * (such as xStreamBufferSend()) inside a critical section and set the send + * block time to 0. Likewise, if there are to be multiple different readers + * then the application writer must place each call to a reading API function + * (such as xStreamBufferReceive()) inside a critical section and set the receive + * block time to 0. + * + * Use xStreamBufferSend() to write to a stream buffer from a task. Use + * xStreamBufferSendFromISR() to write to a stream buffer from an interrupt + * service routine (ISR). + * + * @param xStreamBuffer The handle of the stream buffer to which a stream is + * being sent. + * + * @param pvTxData A pointer to the buffer that holds the bytes to be copied + * into the stream buffer. + * + * @param xDataLengthBytes The maximum number of bytes to copy from pvTxData + * into the stream buffer. + * + * @param xTicksToWait The maximum amount of time the task should remain in the + * Blocked state to wait for enough space to become available in the stream + * buffer, should the stream buffer contain too little space to hold the + * another xDataLengthBytes bytes. The block time is specified in tick periods, + * so the absolute time it represents is dependent on the tick frequency. The + * macro pdMS_TO_TICKS() can be used to convert a time specified in milliseconds + * into a time specified in ticks. Setting xTicksToWait to portMAX_DELAY will + * cause the task to wait indefinitely (without timing out), provided + * INCLUDE_vTaskSuspend is set to 1 in FreeRTOSConfig.h. If a task times out + * before it can write all xDataLengthBytes into the buffer it will still write + * as many bytes as possible. A task does not use any CPU time when it is in + * the blocked state. + * + * @return The number of bytes written to the stream buffer. If a task times + * out before it can write all xDataLengthBytes into the buffer it will still + * write as many bytes as possible. + * + * Example use: +
+void vAFunction( StreamBufferHandle_t xStreamBuffer )
+{
+size_t xBytesSent;
+uint8_t ucArrayToSend[] = { 0, 1, 2, 3 };
+char *pcStringToSend = "String to send";
+const TickType_t x100ms = pdMS_TO_TICKS( 100 );
+
+    // Send an array to the stream buffer, blocking for a maximum of 100ms to
+    // wait for enough space to be available in the stream buffer.
+    xBytesSent = xStreamBufferSend( xStreamBuffer, ( void * ) ucArrayToSend, sizeof( ucArrayToSend ), x100ms );
+
+    if( xBytesSent != sizeof( ucArrayToSend ) )
+    {
+        // The call to xStreamBufferSend() times out before there was enough
+        // space in the buffer for the data to be written, but it did
+        // successfully write xBytesSent bytes.
+    }
+
+    // Send the string to the stream buffer.  Return immediately if there is not
+    // enough space in the buffer.
+    xBytesSent = xStreamBufferSend( xStreamBuffer, ( void * ) pcStringToSend, strlen( pcStringToSend ), 0 );
+
+    if( xBytesSent != strlen( pcStringToSend ) )
+    {
+        // The entire string could not be added to the stream buffer because
+        // there was not enough free space in the buffer, but xBytesSent bytes
+        // were sent.  Could try again to send the remaining bytes.
+    }
+}
+
+ * \defgroup xStreamBufferSend xStreamBufferSend + * \ingroup StreamBufferManagement + */ +size_t xStreamBufferSend( StreamBufferHandle_t xStreamBuffer, + const void *pvTxData, + size_t xDataLengthBytes, + TickType_t xTicksToWait ) PRIVILEGED_FUNCTION; + +/** + * stream_buffer.h + * +
+size_t xStreamBufferSendFromISR( StreamBufferHandle_t xStreamBuffer,
+                                 const void *pvTxData,
+                                 size_t xDataLengthBytes,
+                                 BaseType_t *pxHigherPriorityTaskWoken );
+
+ * + * Interrupt safe version of the API function that sends a stream of bytes to + * the stream buffer. + * + * ***NOTE***: Uniquely among FreeRTOS objects, the stream buffer + * implementation (so also the message buffer implementation, as message buffers + * are built on top of stream buffers) assumes there is only one task or + * interrupt that will write to the buffer (the writer), and only one task or + * interrupt that will read from the buffer (the reader). It is safe for the + * writer and reader to be different tasks or interrupts, but, unlike other + * FreeRTOS objects, it is not safe to have multiple different writers or + * multiple different readers. If there are to be multiple different writers + * then the application writer must place each call to a writing API function + * (such as xStreamBufferSend()) inside a critical section and set the send + * block time to 0. Likewise, if there are to be multiple different readers + * then the application writer must place each call to a reading API function + * (such as xStreamBufferReceive()) inside a critical section and set the receive + * block time to 0. + * + * Use xStreamBufferSend() to write to a stream buffer from a task. Use + * xStreamBufferSendFromISR() to write to a stream buffer from an interrupt + * service routine (ISR). + * + * @param xStreamBuffer The handle of the stream buffer to which a stream is + * being sent. + * + * @param pvTxData A pointer to the data that is to be copied into the stream + * buffer. + * + * @param xDataLengthBytes The maximum number of bytes to copy from pvTxData + * into the stream buffer. + * + * @param pxHigherPriorityTaskWoken It is possible that a stream buffer will + * have a task blocked on it waiting for data. Calling + * xStreamBufferSendFromISR() can make data available, and so cause a task that + * was waiting for data to leave the Blocked state. If calling + * xStreamBufferSendFromISR() causes a task to leave the Blocked state, and the + * unblocked task has a priority higher than the currently executing task (the + * task that was interrupted), then, internally, xStreamBufferSendFromISR() + * will set *pxHigherPriorityTaskWoken to pdTRUE. If + * xStreamBufferSendFromISR() sets this value to pdTRUE, then normally a + * context switch should be performed before the interrupt is exited. This will + * ensure that the interrupt returns directly to the highest priority Ready + * state task. *pxHigherPriorityTaskWoken should be set to pdFALSE before it + * is passed into the function. See the example code below for an example. + * + * @return The number of bytes actually written to the stream buffer, which will + * be less than xDataLengthBytes if the stream buffer didn't have enough free + * space for all the bytes to be written. + * + * Example use: +
+// A stream buffer that has already been created.
+StreamBufferHandle_t xStreamBuffer;
+
+void vAnInterruptServiceRoutine( void )
+{
+size_t xBytesSent;
+char *pcStringToSend = "String to send";
+BaseType_t xHigherPriorityTaskWoken = pdFALSE; // Initialised to pdFALSE.
+
+    // Attempt to send the string to the stream buffer.
+    xBytesSent = xStreamBufferSendFromISR( xStreamBuffer,
+                                           ( void * ) pcStringToSend,
+                                           strlen( pcStringToSend ),
+                                           &xHigherPriorityTaskWoken );
+
+    if( xBytesSent != strlen( pcStringToSend ) )
+    {
+        // There was not enough free space in the stream buffer for the entire
+        // string to be written, ut xBytesSent bytes were written.
+    }
+
+    // If xHigherPriorityTaskWoken was set to pdTRUE inside
+    // xStreamBufferSendFromISR() then a task that has a priority above the
+    // priority of the currently executing task was unblocked and a context
+    // switch should be performed to ensure the ISR returns to the unblocked
+    // task.  In most FreeRTOS ports this is done by simply passing
+    // xHigherPriorityTaskWoken into taskYIELD_FROM_ISR(), which will test the
+    // variables value, and perform the context switch if necessary.  Check the
+    // documentation for the port in use for port specific instructions.
+    taskYIELD_FROM_ISR( xHigherPriorityTaskWoken );
+}
+
+ * \defgroup xStreamBufferSendFromISR xStreamBufferSendFromISR + * \ingroup StreamBufferManagement + */ +size_t xStreamBufferSendFromISR( StreamBufferHandle_t xStreamBuffer, + const void *pvTxData, + size_t xDataLengthBytes, + BaseType_t * const pxHigherPriorityTaskWoken ) PRIVILEGED_FUNCTION; + +/** + * stream_buffer.h + * +
+size_t xStreamBufferReceive( StreamBufferHandle_t xStreamBuffer,
+                             void *pvRxData,
+                             size_t xBufferLengthBytes,
+                             TickType_t xTicksToWait );
+
+ * + * Receives bytes from a stream buffer. + * + * ***NOTE***: Uniquely among FreeRTOS objects, the stream buffer + * implementation (so also the message buffer implementation, as message buffers + * are built on top of stream buffers) assumes there is only one task or + * interrupt that will write to the buffer (the writer), and only one task or + * interrupt that will read from the buffer (the reader). It is safe for the + * writer and reader to be different tasks or interrupts, but, unlike other + * FreeRTOS objects, it is not safe to have multiple different writers or + * multiple different readers. If there are to be multiple different writers + * then the application writer must place each call to a writing API function + * (such as xStreamBufferSend()) inside a critical section and set the send + * block time to 0. Likewise, if there are to be multiple different readers + * then the application writer must place each call to a reading API function + * (such as xStreamBufferReceive()) inside a critical section and set the receive + * block time to 0. + * + * Use xStreamBufferReceive() to read from a stream buffer from a task. Use + * xStreamBufferReceiveFromISR() to read from a stream buffer from an + * interrupt service routine (ISR). + * + * @param xStreamBuffer The handle of the stream buffer from which bytes are to + * be received. + * + * @param pvRxData A pointer to the buffer into which the received bytes will be + * copied. + * + * @param xBufferLengthBytes The length of the buffer pointed to by the + * pvRxData parameter. This sets the maximum number of bytes to receive in one + * call. xStreamBufferReceive will return as many bytes as possible up to a + * maximum set by xBufferLengthBytes. + * + * @param xTicksToWait The maximum amount of time the task should remain in the + * Blocked state to wait for data to become available if the stream buffer is + * empty. xStreamBufferReceive() will return immediately if xTicksToWait is + * zero. The block time is specified in tick periods, so the absolute time it + * represents is dependent on the tick frequency. The macro pdMS_TO_TICKS() can + * be used to convert a time specified in milliseconds into a time specified in + * ticks. Setting xTicksToWait to portMAX_DELAY will cause the task to wait + * indefinitely (without timing out), provided INCLUDE_vTaskSuspend is set to 1 + * in FreeRTOSConfig.h. A task does not use any CPU time when it is in the + * Blocked state. + * + * @return The number of bytes actually read from the stream buffer, which will + * be less than xBufferLengthBytes if the call to xStreamBufferReceive() timed + * out before xBufferLengthBytes were available. + * + * Example use: +
+void vAFunction( StreamBuffer_t xStreamBuffer )
+{
+uint8_t ucRxData[ 20 ];
+size_t xReceivedBytes;
+const TickType_t xBlockTime = pdMS_TO_TICKS( 20 );
+
+    // Receive up to another sizeof( ucRxData ) bytes from the stream buffer.
+    // Wait in the Blocked state (so not using any CPU processing time) for a
+    // maximum of 100ms for the full sizeof( ucRxData ) number of bytes to be
+    // available.
+    xReceivedBytes = xStreamBufferReceive( xStreamBuffer,
+                                           ( void * ) ucRxData,
+                                           sizeof( ucRxData ),
+                                           xBlockTime );
+
+    if( xReceivedBytes > 0 )
+    {
+        // A ucRxData contains another xRecievedBytes bytes of data, which can
+        // be processed here....
+    }
+}
+
+ * \defgroup xStreamBufferReceive xStreamBufferReceive + * \ingroup StreamBufferManagement + */ +size_t xStreamBufferReceive( StreamBufferHandle_t xStreamBuffer, + void *pvRxData, + size_t xBufferLengthBytes, + TickType_t xTicksToWait ) PRIVILEGED_FUNCTION; + +/** + * stream_buffer.h + * +
+size_t xStreamBufferReceiveFromISR( StreamBufferHandle_t xStreamBuffer,
+                                    void *pvRxData,
+                                    size_t xBufferLengthBytes,
+                                    BaseType_t *pxHigherPriorityTaskWoken );
+
+ * + * An interrupt safe version of the API function that receives bytes from a + * stream buffer. + * + * Use xStreamBufferReceive() to read bytes from a stream buffer from a task. + * Use xStreamBufferReceiveFromISR() to read bytes from a stream buffer from an + * interrupt service routine (ISR). + * + * @param xStreamBuffer The handle of the stream buffer from which a stream + * is being received. + * + * @param pvRxData A pointer to the buffer into which the received bytes are + * copied. + * + * @param xBufferLengthBytes The length of the buffer pointed to by the + * pvRxData parameter. This sets the maximum number of bytes to receive in one + * call. xStreamBufferReceive will return as many bytes as possible up to a + * maximum set by xBufferLengthBytes. + * + * @param pxHigherPriorityTaskWoken It is possible that a stream buffer will + * have a task blocked on it waiting for space to become available. Calling + * xStreamBufferReceiveFromISR() can make space available, and so cause a task + * that is waiting for space to leave the Blocked state. If calling + * xStreamBufferReceiveFromISR() causes a task to leave the Blocked state, and + * the unblocked task has a priority higher than the currently executing task + * (the task that was interrupted), then, internally, + * xStreamBufferReceiveFromISR() will set *pxHigherPriorityTaskWoken to pdTRUE. + * If xStreamBufferReceiveFromISR() sets this value to pdTRUE, then normally a + * context switch should be performed before the interrupt is exited. That will + * ensure the interrupt returns directly to the highest priority Ready state + * task. *pxHigherPriorityTaskWoken should be set to pdFALSE before it is + * passed into the function. See the code example below for an example. + * + * @return The number of bytes read from the stream buffer, if any. + * + * Example use: +
+// A stream buffer that has already been created.
+StreamBuffer_t xStreamBuffer;
+
+void vAnInterruptServiceRoutine( void )
+{
+uint8_t ucRxData[ 20 ];
+size_t xReceivedBytes;
+BaseType_t xHigherPriorityTaskWoken = pdFALSE;  // Initialised to pdFALSE.
+
+    // Receive the next stream from the stream buffer.
+    xReceivedBytes = xStreamBufferReceiveFromISR( xStreamBuffer,
+                                                  ( void * ) ucRxData,
+                                                  sizeof( ucRxData ),
+                                                  &xHigherPriorityTaskWoken );
+
+    if( xReceivedBytes > 0 )
+    {
+        // ucRxData contains xReceivedBytes read from the stream buffer.
+        // Process the stream here....
+    }
+
+    // If xHigherPriorityTaskWoken was set to pdTRUE inside
+    // xStreamBufferReceiveFromISR() then a task that has a priority above the
+    // priority of the currently executing task was unblocked and a context
+    // switch should be performed to ensure the ISR returns to the unblocked
+    // task.  In most FreeRTOS ports this is done by simply passing
+    // xHigherPriorityTaskWoken into taskYIELD_FROM_ISR(), which will test the
+    // variables value, and perform the context switch if necessary.  Check the
+    // documentation for the port in use for port specific instructions.
+    taskYIELD_FROM_ISR( xHigherPriorityTaskWoken );
+}
+
+ * \defgroup xStreamBufferReceiveFromISR xStreamBufferReceiveFromISR + * \ingroup StreamBufferManagement + */ +size_t xStreamBufferReceiveFromISR( StreamBufferHandle_t xStreamBuffer, + void *pvRxData, + size_t xBufferLengthBytes, + BaseType_t * const pxHigherPriorityTaskWoken ) PRIVILEGED_FUNCTION; + +/** + * stream_buffer.h + * +
+void vStreamBufferDelete( StreamBufferHandle_t xStreamBuffer );
+
+ * + * Deletes a stream buffer that was previously created using a call to + * xStreamBufferCreate() or xStreamBufferCreateStatic(). If the stream + * buffer was created using dynamic memory (that is, by xStreamBufferCreate()), + * then the allocated memory is freed. + * + * A stream buffer handle must not be used after the stream buffer has been + * deleted. + * + * @param xStreamBuffer The handle of the stream buffer to be deleted. + * + * \defgroup vStreamBufferDelete vStreamBufferDelete + * \ingroup StreamBufferManagement + */ +void vStreamBufferDelete( StreamBufferHandle_t xStreamBuffer ) PRIVILEGED_FUNCTION; + +/** + * stream_buffer.h + * +
+BaseType_t xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer );
+
+ * + * Queries a stream buffer to see if it is full. A stream buffer is full if it + * does not have any free space, and therefore cannot accept any more data. + * + * @param xStreamBuffer The handle of the stream buffer being queried. + * + * @return If the stream buffer is full then pdTRUE is returned. Otherwise + * pdFALSE is returned. + * + * \defgroup xStreamBufferIsFull xStreamBufferIsFull + * \ingroup StreamBufferManagement + */ +BaseType_t xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) PRIVILEGED_FUNCTION; + +/** + * stream_buffer.h + * +
+BaseType_t xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer );
+
+ * + * Queries a stream buffer to see if it is empty. A stream buffer is empty if + * it does not contain any data. + * + * @param xStreamBuffer The handle of the stream buffer being queried. + * + * @return If the stream buffer is empty then pdTRUE is returned. Otherwise + * pdFALSE is returned. + * + * \defgroup xStreamBufferIsEmpty xStreamBufferIsEmpty + * \ingroup StreamBufferManagement + */ +BaseType_t xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) PRIVILEGED_FUNCTION; + +/** + * stream_buffer.h + * +
+BaseType_t xStreamBufferReset( StreamBufferHandle_t xStreamBuffer );
+
+ * + * Resets a stream buffer to its initial, empty, state. Any data that was in + * the stream buffer is discarded. A stream buffer can only be reset if there + * are no tasks blocked waiting to either send to or receive from the stream + * buffer. + * + * @param xStreamBuffer The handle of the stream buffer being reset. + * + * @return If the stream buffer is reset then pdPASS is returned. If there was + * a task blocked waiting to send to or read from the stream buffer then the + * stream buffer is not reset and pdFAIL is returned. + * + * \defgroup xStreamBufferReset xStreamBufferReset + * \ingroup StreamBufferManagement + */ +BaseType_t xStreamBufferReset( StreamBufferHandle_t xStreamBuffer ) PRIVILEGED_FUNCTION; + +/** + * stream_buffer.h + * +
+size_t xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer );
+
+ * + * Queries a stream buffer to see how much free space it contains, which is + * equal to the amount of data that can be sent to the stream buffer before it + * is full. + * + * @param xStreamBuffer The handle of the stream buffer being queried. + * + * @return The number of bytes that can be written to the stream buffer before + * the stream buffer would be full. + * + * \defgroup xStreamBufferSpacesAvailable xStreamBufferSpacesAvailable + * \ingroup StreamBufferManagement + */ +size_t xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) PRIVILEGED_FUNCTION; + +/** + * stream_buffer.h + * +
+size_t xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer );
+
+ * + * Queries a stream buffer to see how much data it contains, which is equal to + * the number of bytes that can be read from the stream buffer before the stream + * buffer would be empty. + * + * @param xStreamBuffer The handle of the stream buffer being queried. + * + * @return The number of bytes that can be read from the stream buffer before + * the stream buffer would be empty. + * + * \defgroup xStreamBufferBytesAvailable xStreamBufferBytesAvailable + * \ingroup StreamBufferManagement + */ +size_t xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) PRIVILEGED_FUNCTION; + +/** + * stream_buffer.h + * +
+BaseType_t xStreamBufferSetTriggerLevel( StreamBufferHandle_t xStreamBuffer, size_t xTriggerLevel );
+
+ * + * A stream buffer's trigger level is the number of bytes that must be in the + * stream buffer before a task that is blocked on the stream buffer to + * wait for data is moved out of the blocked state. For example, if a task is + * blocked on a read of an empty stream buffer that has a trigger level of 1 + * then the task will be unblocked when a single byte is written to the buffer + * or the task's block time expires. As another example, if a task is blocked + * on a read of an empty stream buffer that has a trigger level of 10 then the + * task will not be unblocked until the stream buffer contains at least 10 bytes + * or the task's block time expires. If a reading task's block time expires + * before the trigger level is reached then the task will still receive however + * many bytes are actually available. Setting a trigger level of 0 will result + * in a trigger level of 1 being used. It is not valid to specify a trigger + * level that is greater than the buffer size. + * + * A trigger level is set when the stream buffer is created, and can be modified + * using xStreamBufferSetTriggerLevel(). + * + * @param xStreamBuffer The handle of the stream buffer being updated. + * + * @param xTriggerLevel The new trigger level for the stream buffer. + * + * @return If xTriggerLevel was less than or equal to the stream buffer's length + * then the trigger level will be updated and pdTRUE is returned. Otherwise + * pdFALSE is returned. + * + * \defgroup xStreamBufferSetTriggerLevel xStreamBufferSetTriggerLevel + * \ingroup StreamBufferManagement + */ +BaseType_t xStreamBufferSetTriggerLevel( StreamBufferHandle_t xStreamBuffer, size_t xTriggerLevel ) PRIVILEGED_FUNCTION; + +/** + * stream_buffer.h + * +
+BaseType_t xStreamBufferSendCompletedFromISR( StreamBufferHandle_t xStreamBuffer, BaseType_t *pxHigherPriorityTaskWoken );
+
+ * + * For advanced users only. + * + * The sbSEND_COMPLETED() macro is called from within the FreeRTOS APIs when + * data is sent to a message buffer or stream buffer. If there was a task that + * was blocked on the message or stream buffer waiting for data to arrive then + * the sbSEND_COMPLETED() macro sends a notification to the task to remove it + * from the Blocked state. xStreamBufferSendCompletedFromISR() does the same + * thing. It is provided to enable application writers to implement their own + * version of sbSEND_COMPLETED(), and MUST NOT BE USED AT ANY OTHER TIME. + * + * See the example implemented in FreeRTOS/Demo/Minimal/MessageBufferAMP.c for + * additional information. + * + * @param xStreamBuffer The handle of the stream buffer to which data was + * written. + * + * @param pxHigherPriorityTaskWoken *pxHigherPriorityTaskWoken should be + * initialised to pdFALSE before it is passed into + * xStreamBufferSendCompletedFromISR(). If calling + * xStreamBufferSendCompletedFromISR() removes a task from the Blocked state, + * and the task has a priority above the priority of the currently running task, + * then *pxHigherPriorityTaskWoken will get set to pdTRUE indicating that a + * context switch should be performed before exiting the ISR. + * + * @return If a task was removed from the Blocked state then pdTRUE is returned. + * Otherwise pdFALSE is returned. + * + * \defgroup xStreamBufferSendCompletedFromISR xStreamBufferSendCompletedFromISR + * \ingroup StreamBufferManagement + */ +BaseType_t xStreamBufferSendCompletedFromISR( StreamBufferHandle_t xStreamBuffer, BaseType_t *pxHigherPriorityTaskWoken ) PRIVILEGED_FUNCTION; + +/** + * stream_buffer.h + * +
+BaseType_t xStreamBufferReceiveCompletedFromISR( StreamBufferHandle_t xStreamBuffer, BaseType_t *pxHigherPriorityTaskWoken );
+
+ * + * For advanced users only. + * + * The sbRECEIVE_COMPLETED() macro is called from within the FreeRTOS APIs when + * data is read out of a message buffer or stream buffer. If there was a task + * that was blocked on the message or stream buffer waiting for data to arrive + * then the sbRECEIVE_COMPLETED() macro sends a notification to the task to + * remove it from the Blocked state. xStreamBufferReceiveCompletedFromISR() + * does the same thing. It is provided to enable application writers to + * implement their own version of sbRECEIVE_COMPLETED(), and MUST NOT BE USED AT + * ANY OTHER TIME. + * + * See the example implemented in FreeRTOS/Demo/Minimal/MessageBufferAMP.c for + * additional information. + * + * @param xStreamBuffer The handle of the stream buffer from which data was + * read. + * + * @param pxHigherPriorityTaskWoken *pxHigherPriorityTaskWoken should be + * initialised to pdFALSE before it is passed into + * xStreamBufferReceiveCompletedFromISR(). If calling + * xStreamBufferReceiveCompletedFromISR() removes a task from the Blocked state, + * and the task has a priority above the priority of the currently running task, + * then *pxHigherPriorityTaskWoken will get set to pdTRUE indicating that a + * context switch should be performed before exiting the ISR. + * + * @return If a task was removed from the Blocked state then pdTRUE is returned. + * Otherwise pdFALSE is returned. + * + * \defgroup xStreamBufferReceiveCompletedFromISR xStreamBufferReceiveCompletedFromISR + * \ingroup StreamBufferManagement + */ +BaseType_t xStreamBufferReceiveCompletedFromISR( StreamBufferHandle_t xStreamBuffer, BaseType_t *pxHigherPriorityTaskWoken ) PRIVILEGED_FUNCTION; + +/* Functions below here are not part of the public API. */ +StreamBufferHandle_t xStreamBufferGenericCreate( size_t xBufferSizeBytes, + size_t xTriggerLevelBytes, + BaseType_t xIsMessageBuffer ) PRIVILEGED_FUNCTION; + +StreamBufferHandle_t xStreamBufferGenericCreateStatic( size_t xBufferSizeBytes, + size_t xTriggerLevelBytes, + BaseType_t xIsMessageBuffer, + uint8_t * const pucStreamBufferStorageArea, + StaticStreamBuffer_t * const pxStaticStreamBuffer ) PRIVILEGED_FUNCTION; + +size_t xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) PRIVILEGED_FUNCTION; + +#if( configUSE_TRACE_FACILITY == 1 ) + void vStreamBufferSetStreamBufferNumber( StreamBufferHandle_t xStreamBuffer, UBaseType_t uxStreamBufferNumber ) PRIVILEGED_FUNCTION; + UBaseType_t uxStreamBufferGetStreamBufferNumber( StreamBufferHandle_t xStreamBuffer ) PRIVILEGED_FUNCTION; + uint8_t ucStreamBufferGetStreamBufferType( StreamBufferHandle_t xStreamBuffer ) PRIVILEGED_FUNCTION; +#endif + +#if defined( __cplusplus ) +} +#endif + +#endif /* !defined( STREAM_BUFFER_H ) */ diff --git a/rtos/freertos/abstraction_layer_freertos/include/task.h b/rtos/freertos/abstraction_layer_freertos/include/task.h new file mode 100644 index 00000000..b861483d --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/include/task.h @@ -0,0 +1,2543 @@ +/* + * FreeRTOS Kernel V10.3.0 + * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * + * http://www.FreeRTOS.org + * http://aws.amazon.com/freertos + * + * 1 tab == 4 spaces! + */ + + +#ifndef INC_TASK_H +#define INC_TASK_H + +#ifndef INC_FREERTOS_H + #error "include FreeRTOS.h must appear in source files before include task.h" +#endif + +#include "list.h" + +#ifdef __cplusplus +extern "C" { +#endif + +/*----------------------------------------------------------- + * MACROS AND DEFINITIONS + *----------------------------------------------------------*/ + +#define tskKERNEL_VERSION_NUMBER "V10.3.0" +#define tskKERNEL_VERSION_MAJOR 10 +#define tskKERNEL_VERSION_MINOR 3 +#define tskKERNEL_VERSION_BUILD 0 + +/* MPU region parameters passed in ulParameters + * of MemoryRegion_t struct. */ +#define tskMPU_REGION_READ_ONLY ( 1UL << 0UL ) +#define tskMPU_REGION_READ_WRITE ( 1UL << 1UL ) +#define tskMPU_REGION_EXECUTE_NEVER ( 1UL << 2UL ) +#define tskMPU_REGION_NORMAL_MEMORY ( 1UL << 3UL ) +#define tskMPU_REGION_DEVICE_MEMORY ( 1UL << 4UL ) + +/** + * task. h + * + * Type by which tasks are referenced. For example, a call to xTaskCreate + * returns (via a pointer parameter) an TaskHandle_t variable that can then + * be used as a parameter to vTaskDelete to delete the task. + * + * \defgroup TaskHandle_t TaskHandle_t + * \ingroup Tasks + */ +struct tskTaskControlBlock; /* The old naming convention is used to prevent breaking kernel aware debuggers. */ +typedef struct tskTaskControlBlock* TaskHandle_t; + +/* + * Defines the prototype to which the application task hook function must + * conform. + */ +typedef BaseType_t (*TaskHookFunction_t)( void * ); + +/* Task states returned by eTaskGetState. */ +typedef enum +{ + eRunning = 0, /* A task is querying the state of itself, so must be running. */ + eReady, /* The task being queried is in a read or pending ready list. */ + eBlocked, /* The task being queried is in the Blocked state. */ + eSuspended, /* The task being queried is in the Suspended state, or is in the Blocked state with an infinite time out. */ + eDeleted, /* The task being queried has been deleted, but its TCB has not yet been freed. */ + eInvalid /* Used as an 'invalid state' value. */ +} eTaskState; + +/* Actions that can be performed when vTaskNotify() is called. */ +typedef enum +{ + eNoAction = 0, /* Notify the task without updating its notify value. */ + eSetBits, /* Set bits in the task's notification value. */ + eIncrement, /* Increment the task's notification value. */ + eSetValueWithOverwrite, /* Set the task's notification value to a specific value even if the previous value has not yet been read by the task. */ + eSetValueWithoutOverwrite /* Set the task's notification value if the previous value has been read by the task. */ +} eNotifyAction; + +/* + * Used internally only. + */ +typedef struct xTIME_OUT +{ + BaseType_t xOverflowCount; + TickType_t xTimeOnEntering; +} TimeOut_t; + +/* + * Defines the memory ranges allocated to the task when an MPU is used. + */ +typedef struct xMEMORY_REGION +{ + void *pvBaseAddress; + uint32_t ulLengthInBytes; + uint32_t ulParameters; +} MemoryRegion_t; + +/* + * Parameters required to create an MPU protected task. + */ +typedef struct xTASK_PARAMETERS +{ + TaskFunction_t pvTaskCode; + const char * const pcName; /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + configSTACK_DEPTH_TYPE usStackDepth; + void *pvParameters; + UBaseType_t uxPriority; + StackType_t *puxStackBuffer; + MemoryRegion_t xRegions[ portNUM_CONFIGURABLE_REGIONS ]; + #if ( ( portUSING_MPU_WRAPPERS == 1 ) && ( configSUPPORT_STATIC_ALLOCATION == 1 ) ) + StaticTask_t * const pxTaskBuffer; + #endif +} TaskParameters_t; + +/* Used with the uxTaskGetSystemState() function to return the state of each task +in the system. */ +typedef struct xTASK_STATUS +{ + TaskHandle_t xHandle; /* The handle of the task to which the rest of the information in the structure relates. */ + const char *pcTaskName; /* A pointer to the task's name. This value will be invalid if the task was deleted since the structure was populated! */ /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + UBaseType_t xTaskNumber; /* A number unique to the task. */ + eTaskState eCurrentState; /* The state in which the task existed when the structure was populated. */ + UBaseType_t uxCurrentPriority; /* The priority at which the task was running (may be inherited) when the structure was populated. */ + UBaseType_t uxBasePriority; /* The priority to which the task will return if the task's current priority has been inherited to avoid unbounded priority inversion when obtaining a mutex. Only valid if configUSE_MUTEXES is defined as 1 in FreeRTOSConfig.h. */ + uint32_t ulRunTimeCounter; /* The total run time allocated to the task so far, as defined by the run time stats clock. See http://www.freertos.org/rtos-run-time-stats.html. Only valid when configGENERATE_RUN_TIME_STATS is defined as 1 in FreeRTOSConfig.h. */ + StackType_t *pxStackBase; /* Points to the lowest address of the task's stack area. */ + configSTACK_DEPTH_TYPE usStackHighWaterMark; /* The minimum amount of stack space that has remained for the task since the task was created. The closer this value is to zero the closer the task has come to overflowing its stack. */ +} TaskStatus_t; + +/* Possible return values for eTaskConfirmSleepModeStatus(). */ +typedef enum +{ + eAbortSleep = 0, /* A task has been made ready or a context switch pended since portSUPPORESS_TICKS_AND_SLEEP() was called - abort entering a sleep mode. */ + eStandardSleep, /* Enter a sleep mode that will not last any longer than the expected idle time. */ + eNoTasksWaitingTimeout /* No tasks are waiting for a timeout so it is safe to enter a sleep mode that can only be exited by an external interrupt. */ +} eSleepModeStatus; + +/** + * Defines the priority used by the idle task. This must not be modified. + * + * \ingroup TaskUtils + */ +#define tskIDLE_PRIORITY ( ( UBaseType_t ) 0U ) + +/** + * task. h + * + * Macro for forcing a context switch. + * + * \defgroup taskYIELD taskYIELD + * \ingroup SchedulerControl + */ +#define taskYIELD() portYIELD() + +/** + * task. h + * + * Macro to mark the start of a critical code region. Preemptive context + * switches cannot occur when in a critical region. + * + * NOTE: This may alter the stack (depending on the portable implementation) + * so must be used with care! + * + * \defgroup taskENTER_CRITICAL taskENTER_CRITICAL + * \ingroup SchedulerControl + */ +#define taskENTER_CRITICAL() portENTER_CRITICAL() +#define taskENTER_CRITICAL_FROM_ISR() portSET_INTERRUPT_MASK_FROM_ISR() + +/** + * task. h + * + * Macro to mark the end of a critical code region. Preemptive context + * switches cannot occur when in a critical region. + * + * NOTE: This may alter the stack (depending on the portable implementation) + * so must be used with care! + * + * \defgroup taskEXIT_CRITICAL taskEXIT_CRITICAL + * \ingroup SchedulerControl + */ +#define taskEXIT_CRITICAL() portEXIT_CRITICAL() +#define taskEXIT_CRITICAL_FROM_ISR( x ) portCLEAR_INTERRUPT_MASK_FROM_ISR( x ) +/** + * task. h + * + * Macro to disable all maskable interrupts. + * + * \defgroup taskDISABLE_INTERRUPTS taskDISABLE_INTERRUPTS + * \ingroup SchedulerControl + */ +#define taskDISABLE_INTERRUPTS() portDISABLE_INTERRUPTS() + +/** + * task. h + * + * Macro to enable microcontroller interrupts. + * + * \defgroup taskENABLE_INTERRUPTS taskENABLE_INTERRUPTS + * \ingroup SchedulerControl + */ +#define taskENABLE_INTERRUPTS() portENABLE_INTERRUPTS() + +/* Definitions returned by xTaskGetSchedulerState(). taskSCHEDULER_SUSPENDED is +0 to generate more optimal code when configASSERT() is defined as the constant +is used in assert() statements. */ +#define taskSCHEDULER_SUSPENDED ( ( BaseType_t ) 0 ) +#define taskSCHEDULER_NOT_STARTED ( ( BaseType_t ) 1 ) +#define taskSCHEDULER_RUNNING ( ( BaseType_t ) 2 ) + + +/*----------------------------------------------------------- + * TASK CREATION API + *----------------------------------------------------------*/ + +/** + * task. h + *
+ BaseType_t xTaskCreate(
+							  TaskFunction_t pvTaskCode,
+							  const char * const pcName,
+							  configSTACK_DEPTH_TYPE usStackDepth,
+							  void *pvParameters,
+							  UBaseType_t uxPriority,
+							  TaskHandle_t *pvCreatedTask
+						  );
+ * + * Create a new task and add it to the list of tasks that are ready to run. + * + * Internally, within the FreeRTOS implementation, tasks use two blocks of + * memory. The first block is used to hold the task's data structures. The + * second block is used by the task as its stack. If a task is created using + * xTaskCreate() then both blocks of memory are automatically dynamically + * allocated inside the xTaskCreate() function. (see + * http://www.freertos.org/a00111.html). If a task is created using + * xTaskCreateStatic() then the application writer must provide the required + * memory. xTaskCreateStatic() therefore allows a task to be created without + * using any dynamic memory allocation. + * + * See xTaskCreateStatic() for a version that does not use any dynamic memory + * allocation. + * + * xTaskCreate() can only be used to create a task that has unrestricted + * access to the entire microcontroller memory map. Systems that include MPU + * support can alternatively create an MPU constrained task using + * xTaskCreateRestricted(). + * + * @param pvTaskCode Pointer to the task entry function. Tasks + * must be implemented to never return (i.e. continuous loop). + * + * @param pcName A descriptive name for the task. This is mainly used to + * facilitate debugging. Max length defined by configMAX_TASK_NAME_LEN - default + * is 16. + * + * @param usStackDepth The size of the task stack specified as the number of + * variables the stack can hold - not the number of bytes. For example, if + * the stack is 16 bits wide and usStackDepth is defined as 100, 200 bytes + * will be allocated for stack storage. + * + * @param pvParameters Pointer that will be used as the parameter for the task + * being created. + * + * @param uxPriority The priority at which the task should run. Systems that + * include MPU support can optionally create tasks in a privileged (system) + * mode by setting bit portPRIVILEGE_BIT of the priority parameter. For + * example, to create a privileged task at priority 2 the uxPriority parameter + * should be set to ( 2 | portPRIVILEGE_BIT ). + * + * @param pvCreatedTask Used to pass back a handle by which the created task + * can be referenced. + * + * @return pdPASS if the task was successfully created and added to a ready + * list, otherwise an error code defined in the file projdefs.h + * + * Example usage: +
+ // Task to be created.
+ void vTaskCode( void * pvParameters )
+ {
+	 for( ;; )
+	 {
+		 // Task code goes here.
+	 }
+ }
+
+ // Function that creates a task.
+ void vOtherFunction( void )
+ {
+ static uint8_t ucParameterToPass;
+ TaskHandle_t xHandle = NULL;
+
+	 // Create the task, storing the handle.  Note that the passed parameter ucParameterToPass
+	 // must exist for the lifetime of the task, so in this case is declared static.  If it was just an
+	 // an automatic stack variable it might no longer exist, or at least have been corrupted, by the time
+	 // the new task attempts to access it.
+	 xTaskCreate( vTaskCode, "NAME", STACK_SIZE, &ucParameterToPass, tskIDLE_PRIORITY, &xHandle );
+	 configASSERT( xHandle );
+
+	 // Use the handle to delete the task.
+	 if( xHandle != NULL )
+	 {
+	 	vTaskDelete( xHandle );
+	 }
+ }
+   
+ * \defgroup xTaskCreate xTaskCreate + * \ingroup Tasks + */ +#if( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) + BaseType_t xTaskCreate( TaskFunction_t pxTaskCode, + const char * const pcName, /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + const configSTACK_DEPTH_TYPE usStackDepth, + void * const pvParameters, + UBaseType_t uxPriority, + TaskHandle_t * const pxCreatedTask ) PRIVILEGED_FUNCTION; +#endif + +/** + * task. h + *
+ TaskHandle_t xTaskCreateStatic( TaskFunction_t pvTaskCode,
+								 const char * const pcName,
+								 uint32_t ulStackDepth,
+								 void *pvParameters,
+								 UBaseType_t uxPriority,
+								 StackType_t *pxStackBuffer,
+								 StaticTask_t *pxTaskBuffer );
+ * + * Create a new task and add it to the list of tasks that are ready to run. + * + * Internally, within the FreeRTOS implementation, tasks use two blocks of + * memory. The first block is used to hold the task's data structures. The + * second block is used by the task as its stack. If a task is created using + * xTaskCreate() then both blocks of memory are automatically dynamically + * allocated inside the xTaskCreate() function. (see + * http://www.freertos.org/a00111.html). If a task is created using + * xTaskCreateStatic() then the application writer must provide the required + * memory. xTaskCreateStatic() therefore allows a task to be created without + * using any dynamic memory allocation. + * + * @param pvTaskCode Pointer to the task entry function. Tasks + * must be implemented to never return (i.e. continuous loop). + * + * @param pcName A descriptive name for the task. This is mainly used to + * facilitate debugging. The maximum length of the string is defined by + * configMAX_TASK_NAME_LEN in FreeRTOSConfig.h. + * + * @param ulStackDepth The size of the task stack specified as the number of + * variables the stack can hold - not the number of bytes. For example, if + * the stack is 32-bits wide and ulStackDepth is defined as 100 then 400 bytes + * will be allocated for stack storage. + * + * @param pvParameters Pointer that will be used as the parameter for the task + * being created. + * + * @param uxPriority The priority at which the task will run. + * + * @param pxStackBuffer Must point to a StackType_t array that has at least + * ulStackDepth indexes - the array will then be used as the task's stack, + * removing the need for the stack to be allocated dynamically. + * + * @param pxTaskBuffer Must point to a variable of type StaticTask_t, which will + * then be used to hold the task's data structures, removing the need for the + * memory to be allocated dynamically. + * + * @return If neither pxStackBuffer or pxTaskBuffer are NULL, then the task will + * be created and a handle to the created task is returned. If either + * pxStackBuffer or pxTaskBuffer are NULL then the task will not be created and + * NULL is returned. + * + * Example usage: +
+
+    // Dimensions the buffer that the task being created will use as its stack.
+    // NOTE:  This is the number of words the stack will hold, not the number of
+    // bytes.  For example, if each stack item is 32-bits, and this is set to 100,
+    // then 400 bytes (100 * 32-bits) will be allocated.
+    #define STACK_SIZE 200
+
+    // Structure that will hold the TCB of the task being created.
+    StaticTask_t xTaskBuffer;
+
+    // Buffer that the task being created will use as its stack.  Note this is
+    // an array of StackType_t variables.  The size of StackType_t is dependent on
+    // the RTOS port.
+    StackType_t xStack[ STACK_SIZE ];
+
+    // Function that implements the task being created.
+    void vTaskCode( void * pvParameters )
+    {
+        // The parameter value is expected to be 1 as 1 is passed in the
+        // pvParameters value in the call to xTaskCreateStatic().
+        configASSERT( ( uint32_t ) pvParameters == 1UL );
+
+        for( ;; )
+        {
+            // Task code goes here.
+        }
+    }
+
+    // Function that creates a task.
+    void vOtherFunction( void )
+    {
+        TaskHandle_t xHandle = NULL;
+
+        // Create the task without using any dynamic memory allocation.
+        xHandle = xTaskCreateStatic(
+                      vTaskCode,       // Function that implements the task.
+                      "NAME",          // Text name for the task.
+                      STACK_SIZE,      // Stack size in words, not bytes.
+                      ( void * ) 1,    // Parameter passed into the task.
+                      tskIDLE_PRIORITY,// Priority at which the task is created.
+                      xStack,          // Array to use as the task's stack.
+                      &xTaskBuffer );  // Variable to hold the task's data structure.
+
+        // puxStackBuffer and pxTaskBuffer were not NULL, so the task will have
+        // been created, and xHandle will be the task's handle.  Use the handle
+        // to suspend the task.
+        vTaskSuspend( xHandle );
+    }
+   
+ * \defgroup xTaskCreateStatic xTaskCreateStatic + * \ingroup Tasks + */ +#if( configSUPPORT_STATIC_ALLOCATION == 1 ) + TaskHandle_t xTaskCreateStatic( TaskFunction_t pxTaskCode, + const char * const pcName, /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + const uint32_t ulStackDepth, + void * const pvParameters, + UBaseType_t uxPriority, + StackType_t * const puxStackBuffer, + StaticTask_t * const pxTaskBuffer ) PRIVILEGED_FUNCTION; +#endif /* configSUPPORT_STATIC_ALLOCATION */ + +/** + * task. h + *
+ BaseType_t xTaskCreateRestricted( TaskParameters_t *pxTaskDefinition, TaskHandle_t *pxCreatedTask );
+ * + * Only available when configSUPPORT_DYNAMIC_ALLOCATION is set to 1. + * + * xTaskCreateRestricted() should only be used in systems that include an MPU + * implementation. + * + * Create a new task and add it to the list of tasks that are ready to run. + * The function parameters define the memory regions and associated access + * permissions allocated to the task. + * + * See xTaskCreateRestrictedStatic() for a version that does not use any + * dynamic memory allocation. + * + * @param pxTaskDefinition Pointer to a structure that contains a member + * for each of the normal xTaskCreate() parameters (see the xTaskCreate() API + * documentation) plus an optional stack buffer and the memory region + * definitions. + * + * @param pxCreatedTask Used to pass back a handle by which the created task + * can be referenced. + * + * @return pdPASS if the task was successfully created and added to a ready + * list, otherwise an error code defined in the file projdefs.h + * + * Example usage: +
+// Create an TaskParameters_t structure that defines the task to be created.
+static const TaskParameters_t xCheckTaskParameters =
+{
+	vATask,		// pvTaskCode - the function that implements the task.
+	"ATask",	// pcName - just a text name for the task to assist debugging.
+	100,		// usStackDepth	- the stack size DEFINED IN WORDS.
+	NULL,		// pvParameters - passed into the task function as the function parameters.
+	( 1UL | portPRIVILEGE_BIT ),// uxPriority - task priority, set the portPRIVILEGE_BIT if the task should run in a privileged state.
+	cStackBuffer,// puxStackBuffer - the buffer to be used as the task stack.
+
+	// xRegions - Allocate up to three separate memory regions for access by
+	// the task, with appropriate access permissions.  Different processors have
+	// different memory alignment requirements - refer to the FreeRTOS documentation
+	// for full information.
+	{
+		// Base address					Length	Parameters
+		{ cReadWriteArray,				32,		portMPU_REGION_READ_WRITE },
+		{ cReadOnlyArray,				32,		portMPU_REGION_READ_ONLY },
+		{ cPrivilegedOnlyAccessArray,	128,	portMPU_REGION_PRIVILEGED_READ_WRITE }
+	}
+};
+
+int main( void )
+{
+TaskHandle_t xHandle;
+
+	// Create a task from the const structure defined above.  The task handle
+	// is requested (the second parameter is not NULL) but in this case just for
+	// demonstration purposes as its not actually used.
+	xTaskCreateRestricted( &xRegTest1Parameters, &xHandle );
+
+	// Start the scheduler.
+	vTaskStartScheduler();
+
+	// Will only get here if there was insufficient memory to create the idle
+	// and/or timer task.
+	for( ;; );
+}
+   
+ * \defgroup xTaskCreateRestricted xTaskCreateRestricted + * \ingroup Tasks + */ +#if( portUSING_MPU_WRAPPERS == 1 ) + BaseType_t xTaskCreateRestricted( const TaskParameters_t * const pxTaskDefinition, TaskHandle_t *pxCreatedTask ) PRIVILEGED_FUNCTION; +#endif + +/** + * task. h + *
+ BaseType_t xTaskCreateRestrictedStatic( TaskParameters_t *pxTaskDefinition, TaskHandle_t *pxCreatedTask );
+ * + * Only available when configSUPPORT_STATIC_ALLOCATION is set to 1. + * + * xTaskCreateRestrictedStatic() should only be used in systems that include an + * MPU implementation. + * + * Internally, within the FreeRTOS implementation, tasks use two blocks of + * memory. The first block is used to hold the task's data structures. The + * second block is used by the task as its stack. If a task is created using + * xTaskCreateRestricted() then the stack is provided by the application writer, + * and the memory used to hold the task's data structure is automatically + * dynamically allocated inside the xTaskCreateRestricted() function. If a task + * is created using xTaskCreateRestrictedStatic() then the application writer + * must provide the memory used to hold the task's data structures too. + * xTaskCreateRestrictedStatic() therefore allows a memory protected task to be + * created without using any dynamic memory allocation. + * + * @param pxTaskDefinition Pointer to a structure that contains a member + * for each of the normal xTaskCreate() parameters (see the xTaskCreate() API + * documentation) plus an optional stack buffer and the memory region + * definitions. If configSUPPORT_STATIC_ALLOCATION is set to 1 the structure + * contains an additional member, which is used to point to a variable of type + * StaticTask_t - which is then used to hold the task's data structure. + * + * @param pxCreatedTask Used to pass back a handle by which the created task + * can be referenced. + * + * @return pdPASS if the task was successfully created and added to a ready + * list, otherwise an error code defined in the file projdefs.h + * + * Example usage: +
+// Create an TaskParameters_t structure that defines the task to be created.
+// The StaticTask_t variable is only included in the structure when
+// configSUPPORT_STATIC_ALLOCATION is set to 1.  The PRIVILEGED_DATA macro can
+// be used to force the variable into the RTOS kernel's privileged data area.
+static PRIVILEGED_DATA StaticTask_t xTaskBuffer;
+static const TaskParameters_t xCheckTaskParameters =
+{
+	vATask,		// pvTaskCode - the function that implements the task.
+	"ATask",	// pcName - just a text name for the task to assist debugging.
+	100,		// usStackDepth	- the stack size DEFINED IN WORDS.
+	NULL,		// pvParameters - passed into the task function as the function parameters.
+	( 1UL | portPRIVILEGE_BIT ),// uxPriority - task priority, set the portPRIVILEGE_BIT if the task should run in a privileged state.
+	cStackBuffer,// puxStackBuffer - the buffer to be used as the task stack.
+
+	// xRegions - Allocate up to three separate memory regions for access by
+	// the task, with appropriate access permissions.  Different processors have
+	// different memory alignment requirements - refer to the FreeRTOS documentation
+	// for full information.
+	{
+		// Base address					Length	Parameters
+		{ cReadWriteArray,				32,		portMPU_REGION_READ_WRITE },
+		{ cReadOnlyArray,				32,		portMPU_REGION_READ_ONLY },
+		{ cPrivilegedOnlyAccessArray,	128,	portMPU_REGION_PRIVILEGED_READ_WRITE }
+	}
+
+	&xTaskBuffer; // Holds the task's data structure.
+};
+
+int main( void )
+{
+TaskHandle_t xHandle;
+
+	// Create a task from the const structure defined above.  The task handle
+	// is requested (the second parameter is not NULL) but in this case just for
+	// demonstration purposes as its not actually used.
+	xTaskCreateRestricted( &xRegTest1Parameters, &xHandle );
+
+	// Start the scheduler.
+	vTaskStartScheduler();
+
+	// Will only get here if there was insufficient memory to create the idle
+	// and/or timer task.
+	for( ;; );
+}
+   
+ * \defgroup xTaskCreateRestrictedStatic xTaskCreateRestrictedStatic + * \ingroup Tasks + */ +#if( ( portUSING_MPU_WRAPPERS == 1 ) && ( configSUPPORT_STATIC_ALLOCATION == 1 ) ) + BaseType_t xTaskCreateRestrictedStatic( const TaskParameters_t * const pxTaskDefinition, TaskHandle_t *pxCreatedTask ) PRIVILEGED_FUNCTION; +#endif + +/** + * task. h + *
+ void vTaskAllocateMPURegions( TaskHandle_t xTask, const MemoryRegion_t * const pxRegions );
+ * + * Memory regions are assigned to a restricted task when the task is created by + * a call to xTaskCreateRestricted(). These regions can be redefined using + * vTaskAllocateMPURegions(). + * + * @param xTask The handle of the task being updated. + * + * @param xRegions A pointer to an MemoryRegion_t structure that contains the + * new memory region definitions. + * + * Example usage: +
+// Define an array of MemoryRegion_t structures that configures an MPU region
+// allowing read/write access for 1024 bytes starting at the beginning of the
+// ucOneKByte array.  The other two of the maximum 3 definable regions are
+// unused so set to zero.
+static const MemoryRegion_t xAltRegions[ portNUM_CONFIGURABLE_REGIONS ] =
+{
+	// Base address		Length		Parameters
+	{ ucOneKByte,		1024,		portMPU_REGION_READ_WRITE },
+	{ 0,				0,			0 },
+	{ 0,				0,			0 }
+};
+
+void vATask( void *pvParameters )
+{
+	// This task was created such that it has access to certain regions of
+	// memory as defined by the MPU configuration.  At some point it is
+	// desired that these MPU regions are replaced with that defined in the
+	// xAltRegions const struct above.  Use a call to vTaskAllocateMPURegions()
+	// for this purpose.  NULL is used as the task handle to indicate that this
+	// function should modify the MPU regions of the calling task.
+	vTaskAllocateMPURegions( NULL, xAltRegions );
+
+	// Now the task can continue its function, but from this point on can only
+	// access its stack and the ucOneKByte array (unless any other statically
+	// defined or shared regions have been declared elsewhere).
+}
+   
+ * \defgroup xTaskCreateRestricted xTaskCreateRestricted + * \ingroup Tasks + */ +void vTaskAllocateMPURegions( TaskHandle_t xTask, const MemoryRegion_t * const pxRegions ) PRIVILEGED_FUNCTION; + +/** + * task. h + *
void vTaskDelete( TaskHandle_t xTask );
+ * + * INCLUDE_vTaskDelete must be defined as 1 for this function to be available. + * See the configuration section for more information. + * + * Remove a task from the RTOS real time kernel's management. The task being + * deleted will be removed from all ready, blocked, suspended and event lists. + * + * NOTE: The idle task is responsible for freeing the kernel allocated + * memory from tasks that have been deleted. It is therefore important that + * the idle task is not starved of microcontroller processing time if your + * application makes any calls to vTaskDelete (). Memory allocated by the + * task code is not automatically freed, and should be freed before the task + * is deleted. + * + * See the demo application file death.c for sample code that utilises + * vTaskDelete (). + * + * @param xTask The handle of the task to be deleted. Passing NULL will + * cause the calling task to be deleted. + * + * Example usage: +
+ void vOtherFunction( void )
+ {
+ TaskHandle_t xHandle;
+
+	 // Create the task, storing the handle.
+	 xTaskCreate( vTaskCode, "NAME", STACK_SIZE, NULL, tskIDLE_PRIORITY, &xHandle );
+
+	 // Use the handle to delete the task.
+	 vTaskDelete( xHandle );
+ }
+   
+ * \defgroup vTaskDelete vTaskDelete + * \ingroup Tasks + */ +void vTaskDelete( TaskHandle_t xTaskToDelete ) PRIVILEGED_FUNCTION; + +/*----------------------------------------------------------- + * TASK CONTROL API + *----------------------------------------------------------*/ + +/** + * task. h + *
void vTaskDelay( const TickType_t xTicksToDelay );
+ * + * Delay a task for a given number of ticks. The actual time that the + * task remains blocked depends on the tick rate. The constant + * portTICK_PERIOD_MS can be used to calculate real time from the tick + * rate - with the resolution of one tick period. + * + * INCLUDE_vTaskDelay must be defined as 1 for this function to be available. + * See the configuration section for more information. + * + * + * vTaskDelay() specifies a time at which the task wishes to unblock relative to + * the time at which vTaskDelay() is called. For example, specifying a block + * period of 100 ticks will cause the task to unblock 100 ticks after + * vTaskDelay() is called. vTaskDelay() does not therefore provide a good method + * of controlling the frequency of a periodic task as the path taken through the + * code, as well as other task and interrupt activity, will effect the frequency + * at which vTaskDelay() gets called and therefore the time at which the task + * next executes. See vTaskDelayUntil() for an alternative API function designed + * to facilitate fixed frequency execution. It does this by specifying an + * absolute time (rather than a relative time) at which the calling task should + * unblock. + * + * @param xTicksToDelay The amount of time, in tick periods, that + * the calling task should block. + * + * Example usage: + + void vTaskFunction( void * pvParameters ) + { + // Block for 500ms. + const TickType_t xDelay = 500 / portTICK_PERIOD_MS; + + for( ;; ) + { + // Simply toggle the LED every 500ms, blocking between each toggle. + vToggleLED(); + vTaskDelay( xDelay ); + } + } + + * \defgroup vTaskDelay vTaskDelay + * \ingroup TaskCtrl + */ +void vTaskDelay( const TickType_t xTicksToDelay ) PRIVILEGED_FUNCTION; + +/** + * task. h + *
void vTaskDelayUntil( TickType_t *pxPreviousWakeTime, const TickType_t xTimeIncrement );
+ * + * INCLUDE_vTaskDelayUntil must be defined as 1 for this function to be available. + * See the configuration section for more information. + * + * Delay a task until a specified time. This function can be used by periodic + * tasks to ensure a constant execution frequency. + * + * This function differs from vTaskDelay () in one important aspect: vTaskDelay () will + * cause a task to block for the specified number of ticks from the time vTaskDelay () is + * called. It is therefore difficult to use vTaskDelay () by itself to generate a fixed + * execution frequency as the time between a task starting to execute and that task + * calling vTaskDelay () may not be fixed [the task may take a different path though the + * code between calls, or may get interrupted or preempted a different number of times + * each time it executes]. + * + * Whereas vTaskDelay () specifies a wake time relative to the time at which the function + * is called, vTaskDelayUntil () specifies the absolute (exact) time at which it wishes to + * unblock. + * + * The constant portTICK_PERIOD_MS can be used to calculate real time from the tick + * rate - with the resolution of one tick period. + * + * @param pxPreviousWakeTime Pointer to a variable that holds the time at which the + * task was last unblocked. The variable must be initialised with the current time + * prior to its first use (see the example below). Following this the variable is + * automatically updated within vTaskDelayUntil (). + * + * @param xTimeIncrement The cycle time period. The task will be unblocked at + * time *pxPreviousWakeTime + xTimeIncrement. Calling vTaskDelayUntil with the + * same xTimeIncrement parameter value will cause the task to execute with + * a fixed interface period. + * + * Example usage: +
+ // Perform an action every 10 ticks.
+ void vTaskFunction( void * pvParameters )
+ {
+ TickType_t xLastWakeTime;
+ const TickType_t xFrequency = 10;
+
+	 // Initialise the xLastWakeTime variable with the current time.
+	 xLastWakeTime = xTaskGetTickCount ();
+	 for( ;; )
+	 {
+		 // Wait for the next cycle.
+		 vTaskDelayUntil( &xLastWakeTime, xFrequency );
+
+		 // Perform action here.
+	 }
+ }
+   
+ * \defgroup vTaskDelayUntil vTaskDelayUntil + * \ingroup TaskCtrl + */ +void vTaskDelayUntil( TickType_t * const pxPreviousWakeTime, const TickType_t xTimeIncrement ) PRIVILEGED_FUNCTION; + +/** + * task. h + *
BaseType_t xTaskAbortDelay( TaskHandle_t xTask );
+ * + * INCLUDE_xTaskAbortDelay must be defined as 1 in FreeRTOSConfig.h for this + * function to be available. + * + * A task will enter the Blocked state when it is waiting for an event. The + * event it is waiting for can be a temporal event (waiting for a time), such + * as when vTaskDelay() is called, or an event on an object, such as when + * xQueueReceive() or ulTaskNotifyTake() is called. If the handle of a task + * that is in the Blocked state is used in a call to xTaskAbortDelay() then the + * task will leave the Blocked state, and return from whichever function call + * placed the task into the Blocked state. + * + * There is no 'FromISR' version of this function as an interrupt would need to + * know which object a task was blocked on in order to know which actions to + * take. For example, if the task was blocked on a queue the interrupt handler + * would then need to know if the queue was locked. + * + * @param xTask The handle of the task to remove from the Blocked state. + * + * @return If the task referenced by xTask was not in the Blocked state then + * pdFAIL is returned. Otherwise pdPASS is returned. + * + * \defgroup xTaskAbortDelay xTaskAbortDelay + * \ingroup TaskCtrl + */ +BaseType_t xTaskAbortDelay( TaskHandle_t xTask ) PRIVILEGED_FUNCTION; + +/** + * task. h + *
UBaseType_t uxTaskPriorityGet( const TaskHandle_t xTask );
+ * + * INCLUDE_uxTaskPriorityGet must be defined as 1 for this function to be available. + * See the configuration section for more information. + * + * Obtain the priority of any task. + * + * @param xTask Handle of the task to be queried. Passing a NULL + * handle results in the priority of the calling task being returned. + * + * @return The priority of xTask. + * + * Example usage: +
+ void vAFunction( void )
+ {
+ TaskHandle_t xHandle;
+
+	 // Create a task, storing the handle.
+	 xTaskCreate( vTaskCode, "NAME", STACK_SIZE, NULL, tskIDLE_PRIORITY, &xHandle );
+
+	 // ...
+
+	 // Use the handle to obtain the priority of the created task.
+	 // It was created with tskIDLE_PRIORITY, but may have changed
+	 // it itself.
+	 if( uxTaskPriorityGet( xHandle ) != tskIDLE_PRIORITY )
+	 {
+		 // The task has changed it's priority.
+	 }
+
+	 // ...
+
+	 // Is our priority higher than the created task?
+	 if( uxTaskPriorityGet( xHandle ) < uxTaskPriorityGet( NULL ) )
+	 {
+		 // Our priority (obtained using NULL handle) is higher.
+	 }
+ }
+   
+ * \defgroup uxTaskPriorityGet uxTaskPriorityGet + * \ingroup TaskCtrl + */ +UBaseType_t uxTaskPriorityGet( const TaskHandle_t xTask ) PRIVILEGED_FUNCTION; + +/** + * task. h + *
UBaseType_t uxTaskPriorityGetFromISR( const TaskHandle_t xTask );
+ * + * A version of uxTaskPriorityGet() that can be used from an ISR. + */ +UBaseType_t uxTaskPriorityGetFromISR( const TaskHandle_t xTask ) PRIVILEGED_FUNCTION; + +/** + * task. h + *
eTaskState eTaskGetState( TaskHandle_t xTask );
+ * + * INCLUDE_eTaskGetState must be defined as 1 for this function to be available. + * See the configuration section for more information. + * + * Obtain the state of any task. States are encoded by the eTaskState + * enumerated type. + * + * @param xTask Handle of the task to be queried. + * + * @return The state of xTask at the time the function was called. Note the + * state of the task might change between the function being called, and the + * functions return value being tested by the calling task. + */ +eTaskState eTaskGetState( TaskHandle_t xTask ) PRIVILEGED_FUNCTION; + +/** + * task. h + *
void vTaskGetInfo( TaskHandle_t xTask, TaskStatus_t *pxTaskStatus, BaseType_t xGetFreeStackSpace, eTaskState eState );
+ * + * configUSE_TRACE_FACILITY must be defined as 1 for this function to be + * available. See the configuration section for more information. + * + * Populates a TaskStatus_t structure with information about a task. + * + * @param xTask Handle of the task being queried. If xTask is NULL then + * information will be returned about the calling task. + * + * @param pxTaskStatus A pointer to the TaskStatus_t structure that will be + * filled with information about the task referenced by the handle passed using + * the xTask parameter. + * + * @xGetFreeStackSpace The TaskStatus_t structure contains a member to report + * the stack high water mark of the task being queried. Calculating the stack + * high water mark takes a relatively long time, and can make the system + * temporarily unresponsive - so the xGetFreeStackSpace parameter is provided to + * allow the high water mark checking to be skipped. The high watermark value + * will only be written to the TaskStatus_t structure if xGetFreeStackSpace is + * not set to pdFALSE; + * + * @param eState The TaskStatus_t structure contains a member to report the + * state of the task being queried. Obtaining the task state is not as fast as + * a simple assignment - so the eState parameter is provided to allow the state + * information to be omitted from the TaskStatus_t structure. To obtain state + * information then set eState to eInvalid - otherwise the value passed in + * eState will be reported as the task state in the TaskStatus_t structure. + * + * Example usage: +
+ void vAFunction( void )
+ {
+ TaskHandle_t xHandle;
+ TaskStatus_t xTaskDetails;
+
+    // Obtain the handle of a task from its name.
+    xHandle = xTaskGetHandle( "Task_Name" );
+
+    // Check the handle is not NULL.
+    configASSERT( xHandle );
+
+    // Use the handle to obtain further information about the task.
+    vTaskGetInfo( xHandle,
+                  &xTaskDetails,
+                  pdTRUE, // Include the high water mark in xTaskDetails.
+                  eInvalid ); // Include the task state in xTaskDetails.
+ }
+   
+ * \defgroup vTaskGetInfo vTaskGetInfo + * \ingroup TaskCtrl + */ +void vTaskGetInfo( TaskHandle_t xTask, TaskStatus_t *pxTaskStatus, BaseType_t xGetFreeStackSpace, eTaskState eState ) PRIVILEGED_FUNCTION; + +/** + * task. h + *
void vTaskPrioritySet( TaskHandle_t xTask, UBaseType_t uxNewPriority );
+ * + * INCLUDE_vTaskPrioritySet must be defined as 1 for this function to be available. + * See the configuration section for more information. + * + * Set the priority of any task. + * + * A context switch will occur before the function returns if the priority + * being set is higher than the currently executing task. + * + * @param xTask Handle to the task for which the priority is being set. + * Passing a NULL handle results in the priority of the calling task being set. + * + * @param uxNewPriority The priority to which the task will be set. + * + * Example usage: +
+ void vAFunction( void )
+ {
+ TaskHandle_t xHandle;
+
+	 // Create a task, storing the handle.
+	 xTaskCreate( vTaskCode, "NAME", STACK_SIZE, NULL, tskIDLE_PRIORITY, &xHandle );
+
+	 // ...
+
+	 // Use the handle to raise the priority of the created task.
+	 vTaskPrioritySet( xHandle, tskIDLE_PRIORITY + 1 );
+
+	 // ...
+
+	 // Use a NULL handle to raise our priority to the same value.
+	 vTaskPrioritySet( NULL, tskIDLE_PRIORITY + 1 );
+ }
+   
+ * \defgroup vTaskPrioritySet vTaskPrioritySet + * \ingroup TaskCtrl + */ +void vTaskPrioritySet( TaskHandle_t xTask, UBaseType_t uxNewPriority ) PRIVILEGED_FUNCTION; + +/** + * task. h + *
void vTaskSuspend( TaskHandle_t xTaskToSuspend );
+ * + * INCLUDE_vTaskSuspend must be defined as 1 for this function to be available. + * See the configuration section for more information. + * + * Suspend any task. When suspended a task will never get any microcontroller + * processing time, no matter what its priority. + * + * Calls to vTaskSuspend are not accumulative - + * i.e. calling vTaskSuspend () twice on the same task still only requires one + * call to vTaskResume () to ready the suspended task. + * + * @param xTaskToSuspend Handle to the task being suspended. Passing a NULL + * handle will cause the calling task to be suspended. + * + * Example usage: +
+ void vAFunction( void )
+ {
+ TaskHandle_t xHandle;
+
+	 // Create a task, storing the handle.
+	 xTaskCreate( vTaskCode, "NAME", STACK_SIZE, NULL, tskIDLE_PRIORITY, &xHandle );
+
+	 // ...
+
+	 // Use the handle to suspend the created task.
+	 vTaskSuspend( xHandle );
+
+	 // ...
+
+	 // The created task will not run during this period, unless
+	 // another task calls vTaskResume( xHandle ).
+
+	 //...
+
+
+	 // Suspend ourselves.
+	 vTaskSuspend( NULL );
+
+	 // We cannot get here unless another task calls vTaskResume
+	 // with our handle as the parameter.
+ }
+   
+ * \defgroup vTaskSuspend vTaskSuspend + * \ingroup TaskCtrl + */ +void vTaskSuspend( TaskHandle_t xTaskToSuspend ) PRIVILEGED_FUNCTION; + +/** + * task. h + *
void vTaskResume( TaskHandle_t xTaskToResume );
+ * + * INCLUDE_vTaskSuspend must be defined as 1 for this function to be available. + * See the configuration section for more information. + * + * Resumes a suspended task. + * + * A task that has been suspended by one or more calls to vTaskSuspend () + * will be made available for running again by a single call to + * vTaskResume (). + * + * @param xTaskToResume Handle to the task being readied. + * + * Example usage: +
+ void vAFunction( void )
+ {
+ TaskHandle_t xHandle;
+
+	 // Create a task, storing the handle.
+	 xTaskCreate( vTaskCode, "NAME", STACK_SIZE, NULL, tskIDLE_PRIORITY, &xHandle );
+
+	 // ...
+
+	 // Use the handle to suspend the created task.
+	 vTaskSuspend( xHandle );
+
+	 // ...
+
+	 // The created task will not run during this period, unless
+	 // another task calls vTaskResume( xHandle ).
+
+	 //...
+
+
+	 // Resume the suspended task ourselves.
+	 vTaskResume( xHandle );
+
+	 // The created task will once again get microcontroller processing
+	 // time in accordance with its priority within the system.
+ }
+   
+ * \defgroup vTaskResume vTaskResume + * \ingroup TaskCtrl + */ +void vTaskResume( TaskHandle_t xTaskToResume ) PRIVILEGED_FUNCTION; + +/** + * task. h + *
void xTaskResumeFromISR( TaskHandle_t xTaskToResume );
+ * + * INCLUDE_xTaskResumeFromISR must be defined as 1 for this function to be + * available. See the configuration section for more information. + * + * An implementation of vTaskResume() that can be called from within an ISR. + * + * A task that has been suspended by one or more calls to vTaskSuspend () + * will be made available for running again by a single call to + * xTaskResumeFromISR (). + * + * xTaskResumeFromISR() should not be used to synchronise a task with an + * interrupt if there is a chance that the interrupt could arrive prior to the + * task being suspended - as this can lead to interrupts being missed. Use of a + * semaphore as a synchronisation mechanism would avoid this eventuality. + * + * @param xTaskToResume Handle to the task being readied. + * + * @return pdTRUE if resuming the task should result in a context switch, + * otherwise pdFALSE. This is used by the ISR to determine if a context switch + * may be required following the ISR. + * + * \defgroup vTaskResumeFromISR vTaskResumeFromISR + * \ingroup TaskCtrl + */ +BaseType_t xTaskResumeFromISR( TaskHandle_t xTaskToResume ) PRIVILEGED_FUNCTION; + +/*----------------------------------------------------------- + * SCHEDULER CONTROL + *----------------------------------------------------------*/ + +/** + * task. h + *
void vTaskStartScheduler( void );
+ * + * Starts the real time kernel tick processing. After calling the kernel + * has control over which tasks are executed and when. + * + * See the demo application file main.c for an example of creating + * tasks and starting the kernel. + * + * Example usage: +
+ void vAFunction( void )
+ {
+	 // Create at least one task before starting the kernel.
+	 xTaskCreate( vTaskCode, "NAME", STACK_SIZE, NULL, tskIDLE_PRIORITY, NULL );
+
+	 // Start the real time kernel with preemption.
+	 vTaskStartScheduler ();
+
+	 // Will not get here unless a task calls vTaskEndScheduler ()
+ }
+   
+ * + * \defgroup vTaskStartScheduler vTaskStartScheduler + * \ingroup SchedulerControl + */ +void vTaskStartScheduler( void ) PRIVILEGED_FUNCTION; + +/** + * task. h + *
void vTaskEndScheduler( void );
+ * + * NOTE: At the time of writing only the x86 real mode port, which runs on a PC + * in place of DOS, implements this function. + * + * Stops the real time kernel tick. All created tasks will be automatically + * deleted and multitasking (either preemptive or cooperative) will + * stop. Execution then resumes from the point where vTaskStartScheduler () + * was called, as if vTaskStartScheduler () had just returned. + * + * See the demo application file main. c in the demo/PC directory for an + * example that uses vTaskEndScheduler (). + * + * vTaskEndScheduler () requires an exit function to be defined within the + * portable layer (see vPortEndScheduler () in port. c for the PC port). This + * performs hardware specific operations such as stopping the kernel tick. + * + * vTaskEndScheduler () will cause all of the resources allocated by the + * kernel to be freed - but will not free resources allocated by application + * tasks. + * + * Example usage: +
+ void vTaskCode( void * pvParameters )
+ {
+	 for( ;; )
+	 {
+		 // Task code goes here.
+
+		 // At some point we want to end the real time kernel processing
+		 // so call ...
+		 vTaskEndScheduler ();
+	 }
+ }
+
+ void vAFunction( void )
+ {
+	 // Create at least one task before starting the kernel.
+	 xTaskCreate( vTaskCode, "NAME", STACK_SIZE, NULL, tskIDLE_PRIORITY, NULL );
+
+	 // Start the real time kernel with preemption.
+	 vTaskStartScheduler ();
+
+	 // Will only get here when the vTaskCode () task has called
+	 // vTaskEndScheduler ().  When we get here we are back to single task
+	 // execution.
+ }
+   
+ * + * \defgroup vTaskEndScheduler vTaskEndScheduler + * \ingroup SchedulerControl + */ +void vTaskEndScheduler( void ) PRIVILEGED_FUNCTION; + +/** + * task. h + *
void vTaskSuspendAll( void );
+ * + * Suspends the scheduler without disabling interrupts. Context switches will + * not occur while the scheduler is suspended. + * + * After calling vTaskSuspendAll () the calling task will continue to execute + * without risk of being swapped out until a call to xTaskResumeAll () has been + * made. + * + * API functions that have the potential to cause a context switch (for example, + * vTaskDelayUntil(), xQueueSend(), etc.) must not be called while the scheduler + * is suspended. + * + * Example usage: +
+ void vTask1( void * pvParameters )
+ {
+	 for( ;; )
+	 {
+		 // Task code goes here.
+
+		 // ...
+
+		 // At some point the task wants to perform a long operation during
+		 // which it does not want to get swapped out.  It cannot use
+		 // taskENTER_CRITICAL ()/taskEXIT_CRITICAL () as the length of the
+		 // operation may cause interrupts to be missed - including the
+		 // ticks.
+
+		 // Prevent the real time kernel swapping out the task.
+		 vTaskSuspendAll ();
+
+		 // Perform the operation here.  There is no need to use critical
+		 // sections as we have all the microcontroller processing time.
+		 // During this time interrupts will still operate and the kernel
+		 // tick count will be maintained.
+
+		 // ...
+
+		 // The operation is complete.  Restart the kernel.
+		 xTaskResumeAll ();
+	 }
+ }
+   
+ * \defgroup vTaskSuspendAll vTaskSuspendAll + * \ingroup SchedulerControl + */ +void vTaskSuspendAll( void ) PRIVILEGED_FUNCTION; + +/** + * task. h + *
BaseType_t xTaskResumeAll( void );
+ * + * Resumes scheduler activity after it was suspended by a call to + * vTaskSuspendAll(). + * + * xTaskResumeAll() only resumes the scheduler. It does not unsuspend tasks + * that were previously suspended by a call to vTaskSuspend(). + * + * @return If resuming the scheduler caused a context switch then pdTRUE is + * returned, otherwise pdFALSE is returned. + * + * Example usage: +
+ void vTask1( void * pvParameters )
+ {
+	 for( ;; )
+	 {
+		 // Task code goes here.
+
+		 // ...
+
+		 // At some point the task wants to perform a long operation during
+		 // which it does not want to get swapped out.  It cannot use
+		 // taskENTER_CRITICAL ()/taskEXIT_CRITICAL () as the length of the
+		 // operation may cause interrupts to be missed - including the
+		 // ticks.
+
+		 // Prevent the real time kernel swapping out the task.
+		 vTaskSuspendAll ();
+
+		 // Perform the operation here.  There is no need to use critical
+		 // sections as we have all the microcontroller processing time.
+		 // During this time interrupts will still operate and the real
+		 // time kernel tick count will be maintained.
+
+		 // ...
+
+		 // The operation is complete.  Restart the kernel.  We want to force
+		 // a context switch - but there is no point if resuming the scheduler
+		 // caused a context switch already.
+		 if( !xTaskResumeAll () )
+		 {
+			  taskYIELD ();
+		 }
+	 }
+ }
+   
+ * \defgroup xTaskResumeAll xTaskResumeAll + * \ingroup SchedulerControl + */ +BaseType_t xTaskResumeAll( void ) PRIVILEGED_FUNCTION; + +/*----------------------------------------------------------- + * TASK UTILITIES + *----------------------------------------------------------*/ + +/** + * task. h + *
TickType_t xTaskGetTickCount( void );
+ * + * @return The count of ticks since vTaskStartScheduler was called. + * + * \defgroup xTaskGetTickCount xTaskGetTickCount + * \ingroup TaskUtils + */ +TickType_t xTaskGetTickCount( void ) PRIVILEGED_FUNCTION; + +/** + * task. h + *
TickType_t xTaskGetTickCountFromISR( void );
+ * + * @return The count of ticks since vTaskStartScheduler was called. + * + * This is a version of xTaskGetTickCount() that is safe to be called from an + * ISR - provided that TickType_t is the natural word size of the + * microcontroller being used or interrupt nesting is either not supported or + * not being used. + * + * \defgroup xTaskGetTickCountFromISR xTaskGetTickCountFromISR + * \ingroup TaskUtils + */ +TickType_t xTaskGetTickCountFromISR( void ) PRIVILEGED_FUNCTION; + +/** + * task. h + *
uint16_t uxTaskGetNumberOfTasks( void );
+ * + * @return The number of tasks that the real time kernel is currently managing. + * This includes all ready, blocked and suspended tasks. A task that + * has been deleted but not yet freed by the idle task will also be + * included in the count. + * + * \defgroup uxTaskGetNumberOfTasks uxTaskGetNumberOfTasks + * \ingroup TaskUtils + */ +UBaseType_t uxTaskGetNumberOfTasks( void ) PRIVILEGED_FUNCTION; + +/** + * task. h + *
char *pcTaskGetName( TaskHandle_t xTaskToQuery );
+ * + * @return The text (human readable) name of the task referenced by the handle + * xTaskToQuery. A task can query its own name by either passing in its own + * handle, or by setting xTaskToQuery to NULL. + * + * \defgroup pcTaskGetName pcTaskGetName + * \ingroup TaskUtils + */ +char *pcTaskGetName( TaskHandle_t xTaskToQuery ) PRIVILEGED_FUNCTION; /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + +/** + * task. h + *
TaskHandle_t xTaskGetHandle( const char *pcNameToQuery );
+ * + * NOTE: This function takes a relatively long time to complete and should be + * used sparingly. + * + * @return The handle of the task that has the human readable name pcNameToQuery. + * NULL is returned if no matching name is found. INCLUDE_xTaskGetHandle + * must be set to 1 in FreeRTOSConfig.h for pcTaskGetHandle() to be available. + * + * \defgroup pcTaskGetHandle pcTaskGetHandle + * \ingroup TaskUtils + */ +TaskHandle_t xTaskGetHandle( const char *pcNameToQuery ) PRIVILEGED_FUNCTION; /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + +/** + * task.h + *
UBaseType_t uxTaskGetStackHighWaterMark( TaskHandle_t xTask );
+ * + * INCLUDE_uxTaskGetStackHighWaterMark must be set to 1 in FreeRTOSConfig.h for + * this function to be available. + * + * Returns the high water mark of the stack associated with xTask. That is, + * the minimum free stack space there has been (in words, so on a 32 bit machine + * a value of 1 means 4 bytes) since the task started. The smaller the returned + * number the closer the task has come to overflowing its stack. + * + * uxTaskGetStackHighWaterMark() and uxTaskGetStackHighWaterMark2() are the + * same except for their return type. Using configSTACK_DEPTH_TYPE allows the + * user to determine the return type. It gets around the problem of the value + * overflowing on 8-bit types without breaking backward compatibility for + * applications that expect an 8-bit return type. + * + * @param xTask Handle of the task associated with the stack to be checked. + * Set xTask to NULL to check the stack of the calling task. + * + * @return The smallest amount of free stack space there has been (in words, so + * actual spaces on the stack rather than bytes) since the task referenced by + * xTask was created. + */ +UBaseType_t uxTaskGetStackHighWaterMark( TaskHandle_t xTask ) PRIVILEGED_FUNCTION; + +/** + * task.h + *
configSTACK_DEPTH_TYPE uxTaskGetStackHighWaterMark2( TaskHandle_t xTask );
+ * + * INCLUDE_uxTaskGetStackHighWaterMark2 must be set to 1 in FreeRTOSConfig.h for + * this function to be available. + * + * Returns the high water mark of the stack associated with xTask. That is, + * the minimum free stack space there has been (in words, so on a 32 bit machine + * a value of 1 means 4 bytes) since the task started. The smaller the returned + * number the closer the task has come to overflowing its stack. + * + * uxTaskGetStackHighWaterMark() and uxTaskGetStackHighWaterMark2() are the + * same except for their return type. Using configSTACK_DEPTH_TYPE allows the + * user to determine the return type. It gets around the problem of the value + * overflowing on 8-bit types without breaking backward compatibility for + * applications that expect an 8-bit return type. + * + * @param xTask Handle of the task associated with the stack to be checked. + * Set xTask to NULL to check the stack of the calling task. + * + * @return The smallest amount of free stack space there has been (in words, so + * actual spaces on the stack rather than bytes) since the task referenced by + * xTask was created. + */ +configSTACK_DEPTH_TYPE uxTaskGetStackHighWaterMark2( TaskHandle_t xTask ) PRIVILEGED_FUNCTION; + +/* When using trace macros it is sometimes necessary to include task.h before +FreeRTOS.h. When this is done TaskHookFunction_t will not yet have been defined, +so the following two prototypes will cause a compilation error. This can be +fixed by simply guarding against the inclusion of these two prototypes unless +they are explicitly required by the configUSE_APPLICATION_TASK_TAG configuration +constant. */ +#ifdef configUSE_APPLICATION_TASK_TAG + #if configUSE_APPLICATION_TASK_TAG == 1 + /** + * task.h + *
void vTaskSetApplicationTaskTag( TaskHandle_t xTask, TaskHookFunction_t pxHookFunction );
+ * + * Sets pxHookFunction to be the task hook function used by the task xTask. + * Passing xTask as NULL has the effect of setting the calling tasks hook + * function. + */ + void vTaskSetApplicationTaskTag( TaskHandle_t xTask, TaskHookFunction_t pxHookFunction ) PRIVILEGED_FUNCTION; + + /** + * task.h + *
void xTaskGetApplicationTaskTag( TaskHandle_t xTask );
+ * + * Returns the pxHookFunction value assigned to the task xTask. Do not + * call from an interrupt service routine - call + * xTaskGetApplicationTaskTagFromISR() instead. + */ + TaskHookFunction_t xTaskGetApplicationTaskTag( TaskHandle_t xTask ) PRIVILEGED_FUNCTION; + + /** + * task.h + *
void xTaskGetApplicationTaskTagFromISR( TaskHandle_t xTask );
+ * + * Returns the pxHookFunction value assigned to the task xTask. Can + * be called from an interrupt service routine. + */ + TaskHookFunction_t xTaskGetApplicationTaskTagFromISR( TaskHandle_t xTask ) PRIVILEGED_FUNCTION; + #endif /* configUSE_APPLICATION_TASK_TAG ==1 */ +#endif /* ifdef configUSE_APPLICATION_TASK_TAG */ + +#if( configNUM_THREAD_LOCAL_STORAGE_POINTERS > 0 ) + + /* Each task contains an array of pointers that is dimensioned by the + configNUM_THREAD_LOCAL_STORAGE_POINTERS setting in FreeRTOSConfig.h. The + kernel does not use the pointers itself, so the application writer can use + the pointers for any purpose they wish. The following two functions are + used to set and query a pointer respectively. */ + void vTaskSetThreadLocalStoragePointer( TaskHandle_t xTaskToSet, BaseType_t xIndex, void *pvValue ) PRIVILEGED_FUNCTION; + void *pvTaskGetThreadLocalStoragePointer( TaskHandle_t xTaskToQuery, BaseType_t xIndex ) PRIVILEGED_FUNCTION; + +#endif + +/** + * task.h + *
BaseType_t xTaskCallApplicationTaskHook( TaskHandle_t xTask, void *pvParameter );
+ * + * Calls the hook function associated with xTask. Passing xTask as NULL has + * the effect of calling the Running tasks (the calling task) hook function. + * + * pvParameter is passed to the hook function for the task to interpret as it + * wants. The return value is the value returned by the task hook function + * registered by the user. + */ +BaseType_t xTaskCallApplicationTaskHook( TaskHandle_t xTask, void *pvParameter ) PRIVILEGED_FUNCTION; + +/** + * xTaskGetIdleTaskHandle() is only available if + * INCLUDE_xTaskGetIdleTaskHandle is set to 1 in FreeRTOSConfig.h. + * + * Simply returns the handle of the idle task. It is not valid to call + * xTaskGetIdleTaskHandle() before the scheduler has been started. + */ +TaskHandle_t xTaskGetIdleTaskHandle( void ) PRIVILEGED_FUNCTION; + +/** + * configUSE_TRACE_FACILITY must be defined as 1 in FreeRTOSConfig.h for + * uxTaskGetSystemState() to be available. + * + * uxTaskGetSystemState() populates an TaskStatus_t structure for each task in + * the system. TaskStatus_t structures contain, among other things, members + * for the task handle, task name, task priority, task state, and total amount + * of run time consumed by the task. See the TaskStatus_t structure + * definition in this file for the full member list. + * + * NOTE: This function is intended for debugging use only as its use results in + * the scheduler remaining suspended for an extended period. + * + * @param pxTaskStatusArray A pointer to an array of TaskStatus_t structures. + * The array must contain at least one TaskStatus_t structure for each task + * that is under the control of the RTOS. The number of tasks under the control + * of the RTOS can be determined using the uxTaskGetNumberOfTasks() API function. + * + * @param uxArraySize The size of the array pointed to by the pxTaskStatusArray + * parameter. The size is specified as the number of indexes in the array, or + * the number of TaskStatus_t structures contained in the array, not by the + * number of bytes in the array. + * + * @param pulTotalRunTime If configGENERATE_RUN_TIME_STATS is set to 1 in + * FreeRTOSConfig.h then *pulTotalRunTime is set by uxTaskGetSystemState() to the + * total run time (as defined by the run time stats clock, see + * http://www.freertos.org/rtos-run-time-stats.html) since the target booted. + * pulTotalRunTime can be set to NULL to omit the total run time information. + * + * @return The number of TaskStatus_t structures that were populated by + * uxTaskGetSystemState(). This should equal the number returned by the + * uxTaskGetNumberOfTasks() API function, but will be zero if the value passed + * in the uxArraySize parameter was too small. + * + * Example usage: +
+    // This example demonstrates how a human readable table of run time stats
+	// information is generated from raw data provided by uxTaskGetSystemState().
+	// The human readable table is written to pcWriteBuffer
+	void vTaskGetRunTimeStats( char *pcWriteBuffer )
+	{
+	TaskStatus_t *pxTaskStatusArray;
+	volatile UBaseType_t uxArraySize, x;
+	uint32_t ulTotalRunTime, ulStatsAsPercentage;
+
+		// Make sure the write buffer does not contain a string.
+		*pcWriteBuffer = 0x00;
+
+		// Take a snapshot of the number of tasks in case it changes while this
+		// function is executing.
+		uxArraySize = uxTaskGetNumberOfTasks();
+
+		// Allocate a TaskStatus_t structure for each task.  An array could be
+		// allocated statically at compile time.
+		pxTaskStatusArray = pvPortMalloc( uxArraySize * sizeof( TaskStatus_t ) );
+
+		if( pxTaskStatusArray != NULL )
+		{
+			// Generate raw status information about each task.
+			uxArraySize = uxTaskGetSystemState( pxTaskStatusArray, uxArraySize, &ulTotalRunTime );
+
+			// For percentage calculations.
+			ulTotalRunTime /= 100UL;
+
+			// Avoid divide by zero errors.
+			if( ulTotalRunTime > 0 )
+			{
+				// For each populated position in the pxTaskStatusArray array,
+				// format the raw data as human readable ASCII data
+				for( x = 0; x < uxArraySize; x++ )
+				{
+					// What percentage of the total run time has the task used?
+					// This will always be rounded down to the nearest integer.
+					// ulTotalRunTimeDiv100 has already been divided by 100.
+					ulStatsAsPercentage = pxTaskStatusArray[ x ].ulRunTimeCounter / ulTotalRunTime;
+
+					if( ulStatsAsPercentage > 0UL )
+					{
+						sprintf( pcWriteBuffer, "%s\t\t%lu\t\t%lu%%\r\n", pxTaskStatusArray[ x ].pcTaskName, pxTaskStatusArray[ x ].ulRunTimeCounter, ulStatsAsPercentage );
+					}
+					else
+					{
+						// If the percentage is zero here then the task has
+						// consumed less than 1% of the total run time.
+						sprintf( pcWriteBuffer, "%s\t\t%lu\t\t<1%%\r\n", pxTaskStatusArray[ x ].pcTaskName, pxTaskStatusArray[ x ].ulRunTimeCounter );
+					}
+
+					pcWriteBuffer += strlen( ( char * ) pcWriteBuffer );
+				}
+			}
+
+			// The array is no longer needed, free the memory it consumes.
+			vPortFree( pxTaskStatusArray );
+		}
+	}
+	
+ */ +UBaseType_t uxTaskGetSystemState( TaskStatus_t * const pxTaskStatusArray, const UBaseType_t uxArraySize, uint32_t * const pulTotalRunTime ) PRIVILEGED_FUNCTION; + +/** + * task. h + *
void vTaskList( char *pcWriteBuffer );
+ * + * configUSE_TRACE_FACILITY and configUSE_STATS_FORMATTING_FUNCTIONS must + * both be defined as 1 for this function to be available. See the + * configuration section of the FreeRTOS.org website for more information. + * + * NOTE 1: This function will disable interrupts for its duration. It is + * not intended for normal application runtime use but as a debug aid. + * + * Lists all the current tasks, along with their current state and stack + * usage high water mark. + * + * Tasks are reported as blocked ('B'), ready ('R'), deleted ('D') or + * suspended ('S'). + * + * PLEASE NOTE: + * + * This function is provided for convenience only, and is used by many of the + * demo applications. Do not consider it to be part of the scheduler. + * + * vTaskList() calls uxTaskGetSystemState(), then formats part of the + * uxTaskGetSystemState() output into a human readable table that displays task + * names, states and stack usage. + * + * vTaskList() has a dependency on the sprintf() C library function that might + * bloat the code size, use a lot of stack, and provide different results on + * different platforms. An alternative, tiny, third party, and limited + * functionality implementation of sprintf() is provided in many of the + * FreeRTOS/Demo sub-directories in a file called printf-stdarg.c (note + * printf-stdarg.c does not provide a full snprintf() implementation!). + * + * It is recommended that production systems call uxTaskGetSystemState() + * directly to get access to raw stats data, rather than indirectly through a + * call to vTaskList(). + * + * @param pcWriteBuffer A buffer into which the above mentioned details + * will be written, in ASCII form. This buffer is assumed to be large + * enough to contain the generated report. Approximately 40 bytes per + * task should be sufficient. + * + * \defgroup vTaskList vTaskList + * \ingroup TaskUtils + */ +void vTaskList( char * pcWriteBuffer ) PRIVILEGED_FUNCTION; /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + +/** + * task. h + *
void vTaskGetRunTimeStats( char *pcWriteBuffer );
+ * + * configGENERATE_RUN_TIME_STATS and configUSE_STATS_FORMATTING_FUNCTIONS + * must both be defined as 1 for this function to be available. The application + * must also then provide definitions for + * portCONFIGURE_TIMER_FOR_RUN_TIME_STATS() and portGET_RUN_TIME_COUNTER_VALUE() + * to configure a peripheral timer/counter and return the timers current count + * value respectively. The counter should be at least 10 times the frequency of + * the tick count. + * + * NOTE 1: This function will disable interrupts for its duration. It is + * not intended for normal application runtime use but as a debug aid. + * + * Setting configGENERATE_RUN_TIME_STATS to 1 will result in a total + * accumulated execution time being stored for each task. The resolution + * of the accumulated time value depends on the frequency of the timer + * configured by the portCONFIGURE_TIMER_FOR_RUN_TIME_STATS() macro. + * Calling vTaskGetRunTimeStats() writes the total execution time of each + * task into a buffer, both as an absolute count value and as a percentage + * of the total system execution time. + * + * NOTE 2: + * + * This function is provided for convenience only, and is used by many of the + * demo applications. Do not consider it to be part of the scheduler. + * + * vTaskGetRunTimeStats() calls uxTaskGetSystemState(), then formats part of the + * uxTaskGetSystemState() output into a human readable table that displays the + * amount of time each task has spent in the Running state in both absolute and + * percentage terms. + * + * vTaskGetRunTimeStats() has a dependency on the sprintf() C library function + * that might bloat the code size, use a lot of stack, and provide different + * results on different platforms. An alternative, tiny, third party, and + * limited functionality implementation of sprintf() is provided in many of the + * FreeRTOS/Demo sub-directories in a file called printf-stdarg.c (note + * printf-stdarg.c does not provide a full snprintf() implementation!). + * + * It is recommended that production systems call uxTaskGetSystemState() directly + * to get access to raw stats data, rather than indirectly through a call to + * vTaskGetRunTimeStats(). + * + * @param pcWriteBuffer A buffer into which the execution times will be + * written, in ASCII form. This buffer is assumed to be large enough to + * contain the generated report. Approximately 40 bytes per task should + * be sufficient. + * + * \defgroup vTaskGetRunTimeStats vTaskGetRunTimeStats + * \ingroup TaskUtils + */ +void vTaskGetRunTimeStats( char *pcWriteBuffer ) PRIVILEGED_FUNCTION; /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + +/** +* task. h +*
uint32_t ulTaskGetIdleRunTimeCounter( void );
+* +* configGENERATE_RUN_TIME_STATS and configUSE_STATS_FORMATTING_FUNCTIONS +* must both be defined as 1 for this function to be available. The application +* must also then provide definitions for +* portCONFIGURE_TIMER_FOR_RUN_TIME_STATS() and portGET_RUN_TIME_COUNTER_VALUE() +* to configure a peripheral timer/counter and return the timers current count +* value respectively. The counter should be at least 10 times the frequency of +* the tick count. +* +* Setting configGENERATE_RUN_TIME_STATS to 1 will result in a total +* accumulated execution time being stored for each task. The resolution +* of the accumulated time value depends on the frequency of the timer +* configured by the portCONFIGURE_TIMER_FOR_RUN_TIME_STATS() macro. +* While uxTaskGetSystemState() and vTaskGetRunTimeStats() writes the total +* execution time of each task into a buffer, ulTaskGetIdleRunTimeCounter() +* returns the total execution time of just the idle task. +* +* @return The total run time of the idle task. This is the amount of time the +* idle task has actually been executing. The unit of time is dependent on the +* frequency configured using the portCONFIGURE_TIMER_FOR_RUN_TIME_STATS() and +* portGET_RUN_TIME_COUNTER_VALUE() macros. +* +* \defgroup ulTaskGetIdleRunTimeCounter ulTaskGetIdleRunTimeCounter +* \ingroup TaskUtils +*/ +uint32_t ulTaskGetIdleRunTimeCounter( void ) PRIVILEGED_FUNCTION; + +/** + * task. h + *
BaseType_t xTaskNotify( TaskHandle_t xTaskToNotify, uint32_t ulValue, eNotifyAction eAction );
+ * + * configUSE_TASK_NOTIFICATIONS must be undefined or defined as 1 for this + * function to be available. + * + * When configUSE_TASK_NOTIFICATIONS is set to one each task has its own private + * "notification value", which is a 32-bit unsigned integer (uint32_t). + * + * Events can be sent to a task using an intermediary object. Examples of such + * objects are queues, semaphores, mutexes and event groups. Task notifications + * are a method of sending an event directly to a task without the need for such + * an intermediary object. + * + * A notification sent to a task can optionally perform an action, such as + * update, overwrite or increment the task's notification value. In that way + * task notifications can be used to send data to a task, or be used as light + * weight and fast binary or counting semaphores. + * + * A notification sent to a task will remain pending until it is cleared by the + * task calling xTaskNotifyWait() or ulTaskNotifyTake(). If the task was + * already in the Blocked state to wait for a notification when the notification + * arrives then the task will automatically be removed from the Blocked state + * (unblocked) and the notification cleared. + * + * A task can use xTaskNotifyWait() to [optionally] block to wait for a + * notification to be pending, or ulTaskNotifyTake() to [optionally] block + * to wait for its notification value to have a non-zero value. The task does + * not consume any CPU time while it is in the Blocked state. + * + * See http://www.FreeRTOS.org/RTOS-task-notifications.html for details. + * + * @param xTaskToNotify The handle of the task being notified. The handle to a + * task can be returned from the xTaskCreate() API function used to create the + * task, and the handle of the currently running task can be obtained by calling + * xTaskGetCurrentTaskHandle(). + * + * @param ulValue Data that can be sent with the notification. How the data is + * used depends on the value of the eAction parameter. + * + * @param eAction Specifies how the notification updates the task's notification + * value, if at all. Valid values for eAction are as follows: + * + * eSetBits - + * The task's notification value is bitwise ORed with ulValue. xTaskNofify() + * always returns pdPASS in this case. + * + * eIncrement - + * The task's notification value is incremented. ulValue is not used and + * xTaskNotify() always returns pdPASS in this case. + * + * eSetValueWithOverwrite - + * The task's notification value is set to the value of ulValue, even if the + * task being notified had not yet processed the previous notification (the + * task already had a notification pending). xTaskNotify() always returns + * pdPASS in this case. + * + * eSetValueWithoutOverwrite - + * If the task being notified did not already have a notification pending then + * the task's notification value is set to ulValue and xTaskNotify() will + * return pdPASS. If the task being notified already had a notification + * pending then no action is performed and pdFAIL is returned. + * + * eNoAction - + * The task receives a notification without its notification value being + * updated. ulValue is not used and xTaskNotify() always returns pdPASS in + * this case. + * + * pulPreviousNotificationValue - + * Can be used to pass out the subject task's notification value before any + * bits are modified by the notify function. + * + * @return Dependent on the value of eAction. See the description of the + * eAction parameter. + * + * \defgroup xTaskNotify xTaskNotify + * \ingroup TaskNotifications + */ +BaseType_t xTaskGenericNotify( TaskHandle_t xTaskToNotify, uint32_t ulValue, eNotifyAction eAction, uint32_t *pulPreviousNotificationValue ) PRIVILEGED_FUNCTION; +#define xTaskNotify( xTaskToNotify, ulValue, eAction ) xTaskGenericNotify( ( xTaskToNotify ), ( ulValue ), ( eAction ), NULL ) +#define xTaskNotifyAndQuery( xTaskToNotify, ulValue, eAction, pulPreviousNotifyValue ) xTaskGenericNotify( ( xTaskToNotify ), ( ulValue ), ( eAction ), ( pulPreviousNotifyValue ) ) + +/** + * task. h + *
BaseType_t xTaskNotifyFromISR( TaskHandle_t xTaskToNotify, uint32_t ulValue, eNotifyAction eAction, BaseType_t *pxHigherPriorityTaskWoken );
+ * + * configUSE_TASK_NOTIFICATIONS must be undefined or defined as 1 for this + * function to be available. + * + * When configUSE_TASK_NOTIFICATIONS is set to one each task has its own private + * "notification value", which is a 32-bit unsigned integer (uint32_t). + * + * A version of xTaskNotify() that can be used from an interrupt service routine + * (ISR). + * + * Events can be sent to a task using an intermediary object. Examples of such + * objects are queues, semaphores, mutexes and event groups. Task notifications + * are a method of sending an event directly to a task without the need for such + * an intermediary object. + * + * A notification sent to a task can optionally perform an action, such as + * update, overwrite or increment the task's notification value. In that way + * task notifications can be used to send data to a task, or be used as light + * weight and fast binary or counting semaphores. + * + * A notification sent to a task will remain pending until it is cleared by the + * task calling xTaskNotifyWait() or ulTaskNotifyTake(). If the task was + * already in the Blocked state to wait for a notification when the notification + * arrives then the task will automatically be removed from the Blocked state + * (unblocked) and the notification cleared. + * + * A task can use xTaskNotifyWait() to [optionally] block to wait for a + * notification to be pending, or ulTaskNotifyTake() to [optionally] block + * to wait for its notification value to have a non-zero value. The task does + * not consume any CPU time while it is in the Blocked state. + * + * See http://www.FreeRTOS.org/RTOS-task-notifications.html for details. + * + * @param xTaskToNotify The handle of the task being notified. The handle to a + * task can be returned from the xTaskCreate() API function used to create the + * task, and the handle of the currently running task can be obtained by calling + * xTaskGetCurrentTaskHandle(). + * + * @param ulValue Data that can be sent with the notification. How the data is + * used depends on the value of the eAction parameter. + * + * @param eAction Specifies how the notification updates the task's notification + * value, if at all. Valid values for eAction are as follows: + * + * eSetBits - + * The task's notification value is bitwise ORed with ulValue. xTaskNofify() + * always returns pdPASS in this case. + * + * eIncrement - + * The task's notification value is incremented. ulValue is not used and + * xTaskNotify() always returns pdPASS in this case. + * + * eSetValueWithOverwrite - + * The task's notification value is set to the value of ulValue, even if the + * task being notified had not yet processed the previous notification (the + * task already had a notification pending). xTaskNotify() always returns + * pdPASS in this case. + * + * eSetValueWithoutOverwrite - + * If the task being notified did not already have a notification pending then + * the task's notification value is set to ulValue and xTaskNotify() will + * return pdPASS. If the task being notified already had a notification + * pending then no action is performed and pdFAIL is returned. + * + * eNoAction - + * The task receives a notification without its notification value being + * updated. ulValue is not used and xTaskNotify() always returns pdPASS in + * this case. + * + * @param pxHigherPriorityTaskWoken xTaskNotifyFromISR() will set + * *pxHigherPriorityTaskWoken to pdTRUE if sending the notification caused the + * task to which the notification was sent to leave the Blocked state, and the + * unblocked task has a priority higher than the currently running task. If + * xTaskNotifyFromISR() sets this value to pdTRUE then a context switch should + * be requested before the interrupt is exited. How a context switch is + * requested from an ISR is dependent on the port - see the documentation page + * for the port in use. + * + * @return Dependent on the value of eAction. See the description of the + * eAction parameter. + * + * \defgroup xTaskNotify xTaskNotify + * \ingroup TaskNotifications + */ +BaseType_t xTaskGenericNotifyFromISR( TaskHandle_t xTaskToNotify, uint32_t ulValue, eNotifyAction eAction, uint32_t *pulPreviousNotificationValue, BaseType_t *pxHigherPriorityTaskWoken ) PRIVILEGED_FUNCTION; +#define xTaskNotifyFromISR( xTaskToNotify, ulValue, eAction, pxHigherPriorityTaskWoken ) xTaskGenericNotifyFromISR( ( xTaskToNotify ), ( ulValue ), ( eAction ), NULL, ( pxHigherPriorityTaskWoken ) ) +#define xTaskNotifyAndQueryFromISR( xTaskToNotify, ulValue, eAction, pulPreviousNotificationValue, pxHigherPriorityTaskWoken ) xTaskGenericNotifyFromISR( ( xTaskToNotify ), ( ulValue ), ( eAction ), ( pulPreviousNotificationValue ), ( pxHigherPriorityTaskWoken ) ) + +/** + * task. h + *
BaseType_t xTaskNotifyWait( uint32_t ulBitsToClearOnEntry, uint32_t ulBitsToClearOnExit, uint32_t *pulNotificationValue, TickType_t xTicksToWait );
+ * + * configUSE_TASK_NOTIFICATIONS must be undefined or defined as 1 for this + * function to be available. + * + * When configUSE_TASK_NOTIFICATIONS is set to one each task has its own private + * "notification value", which is a 32-bit unsigned integer (uint32_t). + * + * Events can be sent to a task using an intermediary object. Examples of such + * objects are queues, semaphores, mutexes and event groups. Task notifications + * are a method of sending an event directly to a task without the need for such + * an intermediary object. + * + * A notification sent to a task can optionally perform an action, such as + * update, overwrite or increment the task's notification value. In that way + * task notifications can be used to send data to a task, or be used as light + * weight and fast binary or counting semaphores. + * + * A notification sent to a task will remain pending until it is cleared by the + * task calling xTaskNotifyWait() or ulTaskNotifyTake(). If the task was + * already in the Blocked state to wait for a notification when the notification + * arrives then the task will automatically be removed from the Blocked state + * (unblocked) and the notification cleared. + * + * A task can use xTaskNotifyWait() to [optionally] block to wait for a + * notification to be pending, or ulTaskNotifyTake() to [optionally] block + * to wait for its notification value to have a non-zero value. The task does + * not consume any CPU time while it is in the Blocked state. + * + * See http://www.FreeRTOS.org/RTOS-task-notifications.html for details. + * + * @param ulBitsToClearOnEntry Bits that are set in ulBitsToClearOnEntry value + * will be cleared in the calling task's notification value before the task + * checks to see if any notifications are pending, and optionally blocks if no + * notifications are pending. Setting ulBitsToClearOnEntry to ULONG_MAX (if + * limits.h is included) or 0xffffffffUL (if limits.h is not included) will have + * the effect of resetting the task's notification value to 0. Setting + * ulBitsToClearOnEntry to 0 will leave the task's notification value unchanged. + * + * @param ulBitsToClearOnExit If a notification is pending or received before + * the calling task exits the xTaskNotifyWait() function then the task's + * notification value (see the xTaskNotify() API function) is passed out using + * the pulNotificationValue parameter. Then any bits that are set in + * ulBitsToClearOnExit will be cleared in the task's notification value (note + * *pulNotificationValue is set before any bits are cleared). Setting + * ulBitsToClearOnExit to ULONG_MAX (if limits.h is included) or 0xffffffffUL + * (if limits.h is not included) will have the effect of resetting the task's + * notification value to 0 before the function exits. Setting + * ulBitsToClearOnExit to 0 will leave the task's notification value unchanged + * when the function exits (in which case the value passed out in + * pulNotificationValue will match the task's notification value). + * + * @param pulNotificationValue Used to pass the task's notification value out + * of the function. Note the value passed out will not be effected by the + * clearing of any bits caused by ulBitsToClearOnExit being non-zero. + * + * @param xTicksToWait The maximum amount of time that the task should wait in + * the Blocked state for a notification to be received, should a notification + * not already be pending when xTaskNotifyWait() was called. The task + * will not consume any processing time while it is in the Blocked state. This + * is specified in kernel ticks, the macro pdMS_TO_TICSK( value_in_ms ) can be + * used to convert a time specified in milliseconds to a time specified in + * ticks. + * + * @return If a notification was received (including notifications that were + * already pending when xTaskNotifyWait was called) then pdPASS is + * returned. Otherwise pdFAIL is returned. + * + * \defgroup xTaskNotifyWait xTaskNotifyWait + * \ingroup TaskNotifications + */ +BaseType_t xTaskNotifyWait( uint32_t ulBitsToClearOnEntry, uint32_t ulBitsToClearOnExit, uint32_t *pulNotificationValue, TickType_t xTicksToWait ) PRIVILEGED_FUNCTION; + +/** + * task. h + *
BaseType_t xTaskNotifyGive( TaskHandle_t xTaskToNotify );
+ * + * configUSE_TASK_NOTIFICATIONS must be undefined or defined as 1 for this macro + * to be available. + * + * When configUSE_TASK_NOTIFICATIONS is set to one each task has its own private + * "notification value", which is a 32-bit unsigned integer (uint32_t). + * + * Events can be sent to a task using an intermediary object. Examples of such + * objects are queues, semaphores, mutexes and event groups. Task notifications + * are a method of sending an event directly to a task without the need for such + * an intermediary object. + * + * A notification sent to a task can optionally perform an action, such as + * update, overwrite or increment the task's notification value. In that way + * task notifications can be used to send data to a task, or be used as light + * weight and fast binary or counting semaphores. + * + * xTaskNotifyGive() is a helper macro intended for use when task notifications + * are used as light weight and faster binary or counting semaphore equivalents. + * Actual FreeRTOS semaphores are given using the xSemaphoreGive() API function, + * the equivalent action that instead uses a task notification is + * xTaskNotifyGive(). + * + * When task notifications are being used as a binary or counting semaphore + * equivalent then the task being notified should wait for the notification + * using the ulTaskNotificationTake() API function rather than the + * xTaskNotifyWait() API function. + * + * See http://www.FreeRTOS.org/RTOS-task-notifications.html for more details. + * + * @param xTaskToNotify The handle of the task being notified. The handle to a + * task can be returned from the xTaskCreate() API function used to create the + * task, and the handle of the currently running task can be obtained by calling + * xTaskGetCurrentTaskHandle(). + * + * @return xTaskNotifyGive() is a macro that calls xTaskNotify() with the + * eAction parameter set to eIncrement - so pdPASS is always returned. + * + * \defgroup xTaskNotifyGive xTaskNotifyGive + * \ingroup TaskNotifications + */ +#define xTaskNotifyGive( xTaskToNotify ) xTaskGenericNotify( ( xTaskToNotify ), ( 0 ), eIncrement, NULL ) + +/** + * task. h + *
void vTaskNotifyGiveFromISR( TaskHandle_t xTaskHandle, BaseType_t *pxHigherPriorityTaskWoken );
+ *
+ * configUSE_TASK_NOTIFICATIONS must be undefined or defined as 1 for this macro
+ * to be available.
+ *
+ * When configUSE_TASK_NOTIFICATIONS is set to one each task has its own private
+ * "notification value", which is a 32-bit unsigned integer (uint32_t).
+ *
+ * A version of xTaskNotifyGive() that can be called from an interrupt service
+ * routine (ISR).
+ *
+ * Events can be sent to a task using an intermediary object.  Examples of such
+ * objects are queues, semaphores, mutexes and event groups.  Task notifications
+ * are a method of sending an event directly to a task without the need for such
+ * an intermediary object.
+ *
+ * A notification sent to a task can optionally perform an action, such as
+ * update, overwrite or increment the task's notification value.  In that way
+ * task notifications can be used to send data to a task, or be used as light
+ * weight and fast binary or counting semaphores.
+ *
+ * vTaskNotifyGiveFromISR() is intended for use when task notifications are
+ * used as light weight and faster binary or counting semaphore equivalents.
+ * Actual FreeRTOS semaphores are given from an ISR using the
+ * xSemaphoreGiveFromISR() API function, the equivalent action that instead uses
+ * a task notification is vTaskNotifyGiveFromISR().
+ *
+ * When task notifications are being used as a binary or counting semaphore
+ * equivalent then the task being notified should wait for the notification
+ * using the ulTaskNotificationTake() API function rather than the
+ * xTaskNotifyWait() API function.
+ *
+ * See http://www.FreeRTOS.org/RTOS-task-notifications.html for more details.
+ *
+ * @param xTaskToNotify The handle of the task being notified.  The handle to a
+ * task can be returned from the xTaskCreate() API function used to create the
+ * task, and the handle of the currently running task can be obtained by calling
+ * xTaskGetCurrentTaskHandle().
+ *
+ * @param pxHigherPriorityTaskWoken  vTaskNotifyGiveFromISR() will set
+ * *pxHigherPriorityTaskWoken to pdTRUE if sending the notification caused the
+ * task to which the notification was sent to leave the Blocked state, and the
+ * unblocked task has a priority higher than the currently running task.  If
+ * vTaskNotifyGiveFromISR() sets this value to pdTRUE then a context switch
+ * should be requested before the interrupt is exited.  How a context switch is
+ * requested from an ISR is dependent on the port - see the documentation page
+ * for the port in use.
+ *
+ * \defgroup xTaskNotifyWait xTaskNotifyWait
+ * \ingroup TaskNotifications
+ */
+void vTaskNotifyGiveFromISR( TaskHandle_t xTaskToNotify, BaseType_t *pxHigherPriorityTaskWoken ) PRIVILEGED_FUNCTION;
+
+/**
+ * task. h
+ * 
uint32_t ulTaskNotifyTake( BaseType_t xClearCountOnExit, TickType_t xTicksToWait );
+ * + * configUSE_TASK_NOTIFICATIONS must be undefined or defined as 1 for this + * function to be available. + * + * When configUSE_TASK_NOTIFICATIONS is set to one each task has its own private + * "notification value", which is a 32-bit unsigned integer (uint32_t). + * + * Events can be sent to a task using an intermediary object. Examples of such + * objects are queues, semaphores, mutexes and event groups. Task notifications + * are a method of sending an event directly to a task without the need for such + * an intermediary object. + * + * A notification sent to a task can optionally perform an action, such as + * update, overwrite or increment the task's notification value. In that way + * task notifications can be used to send data to a task, or be used as light + * weight and fast binary or counting semaphores. + * + * ulTaskNotifyTake() is intended for use when a task notification is used as a + * faster and lighter weight binary or counting semaphore alternative. Actual + * FreeRTOS semaphores are taken using the xSemaphoreTake() API function, the + * equivalent action that instead uses a task notification is + * ulTaskNotifyTake(). + * + * When a task is using its notification value as a binary or counting semaphore + * other tasks should send notifications to it using the xTaskNotifyGive() + * macro, or xTaskNotify() function with the eAction parameter set to + * eIncrement. + * + * ulTaskNotifyTake() can either clear the task's notification value to + * zero on exit, in which case the notification value acts like a binary + * semaphore, or decrement the task's notification value on exit, in which case + * the notification value acts like a counting semaphore. + * + * A task can use ulTaskNotifyTake() to [optionally] block to wait for a + * the task's notification value to be non-zero. The task does not consume any + * CPU time while it is in the Blocked state. + * + * Where as xTaskNotifyWait() will return when a notification is pending, + * ulTaskNotifyTake() will return when the task's notification value is + * not zero. + * + * See http://www.FreeRTOS.org/RTOS-task-notifications.html for details. + * + * @param xClearCountOnExit if xClearCountOnExit is pdFALSE then the task's + * notification value is decremented when the function exits. In this way the + * notification value acts like a counting semaphore. If xClearCountOnExit is + * not pdFALSE then the task's notification value is cleared to zero when the + * function exits. In this way the notification value acts like a binary + * semaphore. + * + * @param xTicksToWait The maximum amount of time that the task should wait in + * the Blocked state for the task's notification value to be greater than zero, + * should the count not already be greater than zero when + * ulTaskNotifyTake() was called. The task will not consume any processing + * time while it is in the Blocked state. This is specified in kernel ticks, + * the macro pdMS_TO_TICSK( value_in_ms ) can be used to convert a time + * specified in milliseconds to a time specified in ticks. + * + * @return The task's notification count before it is either cleared to zero or + * decremented (see the xClearCountOnExit parameter). + * + * \defgroup ulTaskNotifyTake ulTaskNotifyTake + * \ingroup TaskNotifications + */ +uint32_t ulTaskNotifyTake( BaseType_t xClearCountOnExit, TickType_t xTicksToWait ) PRIVILEGED_FUNCTION; + +/** + * task. h + *
BaseType_t xTaskNotifyStateClear( TaskHandle_t xTask );
+ * + * If the notification state of the task referenced by the handle xTask is + * eNotified, then set the task's notification state to eNotWaitingNotification. + * The task's notification value is not altered. Set xTask to NULL to clear the + * notification state of the calling task. + * + * @return pdTRUE if the task's notification state was set to + * eNotWaitingNotification, otherwise pdFALSE. + * \defgroup xTaskNotifyStateClear xTaskNotifyStateClear + * \ingroup TaskNotifications + */ +BaseType_t xTaskNotifyStateClear( TaskHandle_t xTask ); + +/** +* task. h +*
uint32_t ulTaskNotifyValueClear( TaskHandle_t xTask, uint32_t ulBitsToClear );
+* +* Clears the bits specified by the ulBitsToClear bit mask in the notification +* value of the task referenced by xTask. +* +* Set ulBitsToClear to 0xffffffff (UINT_MAX on 32-bit architectures) to clear +* the notification value to 0. Set ulBitsToClear to 0 to query the task's +* notification value without clearing any bits. +* +* @return The value of the target task's notification value before the bits +* specified by ulBitsToClear were cleared. +* \defgroup ulTaskNotifyValueClear ulTaskNotifyValueClear +* \ingroup TaskNotifications +*/ +uint32_t ulTaskNotifyValueClear( TaskHandle_t xTask, uint32_t ulBitsToClear ) PRIVILEGED_FUNCTION; + +/** + * task.h + *
void vTaskSetTimeOutState( TimeOut_t * const pxTimeOut )
+ * + * Capture the current time for future use with xTaskCheckForTimeOut(). + * + * @param pxTimeOut Pointer to a timeout object into which the current time + * is to be captured. The captured time includes the tick count and the number + * of times the tick count has overflowed since the system first booted. + * \defgroup vTaskSetTimeOutState vTaskSetTimeOutState + * \ingroup TaskCtrl + */ +void vTaskSetTimeOutState( TimeOut_t * const pxTimeOut ) PRIVILEGED_FUNCTION; + +/** + * task.h + *
BaseType_t xTaskCheckForTimeOut( TimeOut_t * const pxTimeOut, TickType_t * const pxTicksToWait );
+ * + * Determines if pxTicksToWait ticks has passed since a time was captured + * using a call to vTaskSetTimeOutState(). The captured time includes the tick + * count and the number of times the tick count has overflowed. + * + * @param pxTimeOut The time status as captured previously using + * vTaskSetTimeOutState. If the timeout has not yet occurred, it is updated + * to reflect the current time status. + * @param pxTicksToWait The number of ticks to check for timeout i.e. if + * pxTicksToWait ticks have passed since pxTimeOut was last updated (either by + * vTaskSetTimeOutState() or xTaskCheckForTimeOut()), the timeout has occurred. + * If the timeout has not occurred, pxTIcksToWait is updated to reflect the + * number of remaining ticks. + * + * @return If timeout has occurred, pdTRUE is returned. Otherwise pdFALSE is + * returned and pxTicksToWait is updated to reflect the number of remaining + * ticks. + * + * @see https://www.freertos.org/xTaskCheckForTimeOut.html + * + * Example Usage: + *
+	// Driver library function used to receive uxWantedBytes from an Rx buffer
+	// that is filled by a UART interrupt. If there are not enough bytes in the
+	// Rx buffer then the task enters the Blocked state until it is notified that
+	// more data has been placed into the buffer. If there is still not enough
+	// data then the task re-enters the Blocked state, and xTaskCheckForTimeOut()
+	// is used to re-calculate the Block time to ensure the total amount of time
+	// spent in the Blocked state does not exceed MAX_TIME_TO_WAIT. This
+	// continues until either the buffer contains at least uxWantedBytes bytes,
+	// or the total amount of time spent in the Blocked state reaches
+	// MAX_TIME_TO_WAIT – at which point the task reads however many bytes are
+	// available up to a maximum of uxWantedBytes.
+
+	size_t xUART_Receive( uint8_t *pucBuffer, size_t uxWantedBytes )
+	{
+	size_t uxReceived = 0;
+	TickType_t xTicksToWait = MAX_TIME_TO_WAIT;
+	TimeOut_t xTimeOut;
+
+		// Initialize xTimeOut.  This records the time at which this function
+		// was entered.
+		vTaskSetTimeOutState( &xTimeOut );
+
+		// Loop until the buffer contains the wanted number of bytes, or a
+		// timeout occurs.
+		while( UART_bytes_in_rx_buffer( pxUARTInstance ) < uxWantedBytes )
+		{
+			// The buffer didn't contain enough data so this task is going to
+			// enter the Blocked state. Adjusting xTicksToWait to account for
+			// any time that has been spent in the Blocked state within this
+			// function so far to ensure the total amount of time spent in the
+			// Blocked state does not exceed MAX_TIME_TO_WAIT.
+			if( xTaskCheckForTimeOut( &xTimeOut, &xTicksToWait ) != pdFALSE )
+			{
+				//Timed out before the wanted number of bytes were available,
+				// exit the loop.
+				break;
+			}
+
+			// Wait for a maximum of xTicksToWait ticks to be notified that the
+			// receive interrupt has placed more data into the buffer.
+			ulTaskNotifyTake( pdTRUE, xTicksToWait );
+		}
+
+		// Attempt to read uxWantedBytes from the receive buffer into pucBuffer.
+		// The actual number of bytes read (which might be less than
+		// uxWantedBytes) is returned.
+		uxReceived = UART_read_from_receive_buffer( pxUARTInstance,
+													pucBuffer,
+													uxWantedBytes );
+
+		return uxReceived;
+	}
+ 
+ * \defgroup xTaskCheckForTimeOut xTaskCheckForTimeOut + * \ingroup TaskCtrl + */ +BaseType_t xTaskCheckForTimeOut( TimeOut_t * const pxTimeOut, TickType_t * const pxTicksToWait ) PRIVILEGED_FUNCTION; + +/*----------------------------------------------------------- + * SCHEDULER INTERNALS AVAILABLE FOR PORTING PURPOSES + *----------------------------------------------------------*/ + +/* + * THIS FUNCTION MUST NOT BE USED FROM APPLICATION CODE. IT IS ONLY + * INTENDED FOR USE WHEN IMPLEMENTING A PORT OF THE SCHEDULER AND IS + * AN INTERFACE WHICH IS FOR THE EXCLUSIVE USE OF THE SCHEDULER. + * + * Called from the real time kernel tick (either preemptive or cooperative), + * this increments the tick count and checks if any tasks that are blocked + * for a finite period required removing from a blocked list and placing on + * a ready list. If a non-zero value is returned then a context switch is + * required because either: + * + A task was removed from a blocked list because its timeout had expired, + * or + * + Time slicing is in use and there is a task of equal priority to the + * currently running task. + */ +BaseType_t xTaskIncrementTick( void ) PRIVILEGED_FUNCTION; + +/* + * THIS FUNCTION MUST NOT BE USED FROM APPLICATION CODE. IT IS AN + * INTERFACE WHICH IS FOR THE EXCLUSIVE USE OF THE SCHEDULER. + * + * THIS FUNCTION MUST BE CALLED WITH INTERRUPTS DISABLED. + * + * Removes the calling task from the ready list and places it both + * on the list of tasks waiting for a particular event, and the + * list of delayed tasks. The task will be removed from both lists + * and replaced on the ready list should either the event occur (and + * there be no higher priority tasks waiting on the same event) or + * the delay period expires. + * + * The 'unordered' version replaces the event list item value with the + * xItemValue value, and inserts the list item at the end of the list. + * + * The 'ordered' version uses the existing event list item value (which is the + * owning tasks priority) to insert the list item into the event list is task + * priority order. + * + * @param pxEventList The list containing tasks that are blocked waiting + * for the event to occur. + * + * @param xItemValue The item value to use for the event list item when the + * event list is not ordered by task priority. + * + * @param xTicksToWait The maximum amount of time that the task should wait + * for the event to occur. This is specified in kernel ticks,the constant + * portTICK_PERIOD_MS can be used to convert kernel ticks into a real time + * period. + */ +void vTaskPlaceOnEventList( List_t * const pxEventList, const TickType_t xTicksToWait ) PRIVILEGED_FUNCTION; +void vTaskPlaceOnUnorderedEventList( List_t * pxEventList, const TickType_t xItemValue, const TickType_t xTicksToWait ) PRIVILEGED_FUNCTION; + +/* + * THIS FUNCTION MUST NOT BE USED FROM APPLICATION CODE. IT IS AN + * INTERFACE WHICH IS FOR THE EXCLUSIVE USE OF THE SCHEDULER. + * + * THIS FUNCTION MUST BE CALLED WITH INTERRUPTS DISABLED. + * + * This function performs nearly the same function as vTaskPlaceOnEventList(). + * The difference being that this function does not permit tasks to block + * indefinitely, whereas vTaskPlaceOnEventList() does. + * + */ +void vTaskPlaceOnEventListRestricted( List_t * const pxEventList, TickType_t xTicksToWait, const BaseType_t xWaitIndefinitely ) PRIVILEGED_FUNCTION; + +/* + * THIS FUNCTION MUST NOT BE USED FROM APPLICATION CODE. IT IS AN + * INTERFACE WHICH IS FOR THE EXCLUSIVE USE OF THE SCHEDULER. + * + * THIS FUNCTION MUST BE CALLED WITH INTERRUPTS DISABLED. + * + * Removes a task from both the specified event list and the list of blocked + * tasks, and places it on a ready queue. + * + * xTaskRemoveFromEventList()/vTaskRemoveFromUnorderedEventList() will be called + * if either an event occurs to unblock a task, or the block timeout period + * expires. + * + * xTaskRemoveFromEventList() is used when the event list is in task priority + * order. It removes the list item from the head of the event list as that will + * have the highest priority owning task of all the tasks on the event list. + * vTaskRemoveFromUnorderedEventList() is used when the event list is not + * ordered and the event list items hold something other than the owning tasks + * priority. In this case the event list item value is updated to the value + * passed in the xItemValue parameter. + * + * @return pdTRUE if the task being removed has a higher priority than the task + * making the call, otherwise pdFALSE. + */ +BaseType_t xTaskRemoveFromEventList( const List_t * const pxEventList ) PRIVILEGED_FUNCTION; +void vTaskRemoveFromUnorderedEventList( ListItem_t * pxEventListItem, const TickType_t xItemValue ) PRIVILEGED_FUNCTION; + +/* + * THIS FUNCTION MUST NOT BE USED FROM APPLICATION CODE. IT IS ONLY + * INTENDED FOR USE WHEN IMPLEMENTING A PORT OF THE SCHEDULER AND IS + * AN INTERFACE WHICH IS FOR THE EXCLUSIVE USE OF THE SCHEDULER. + * + * Sets the pointer to the current TCB to the TCB of the highest priority task + * that is ready to run. + */ +portDONT_DISCARD void vTaskSwitchContext( void ) PRIVILEGED_FUNCTION; + +/* + * THESE FUNCTIONS MUST NOT BE USED FROM APPLICATION CODE. THEY ARE USED BY + * THE EVENT BITS MODULE. + */ +TickType_t uxTaskResetEventItemValue( void ) PRIVILEGED_FUNCTION; + +/* + * Return the handle of the calling task. + */ +TaskHandle_t xTaskGetCurrentTaskHandle( void ) PRIVILEGED_FUNCTION; + +/* + * Shortcut used by the queue implementation to prevent unnecessary call to + * taskYIELD(); + */ +void vTaskMissedYield( void ) PRIVILEGED_FUNCTION; + +/* + * Returns the scheduler state as taskSCHEDULER_RUNNING, + * taskSCHEDULER_NOT_STARTED or taskSCHEDULER_SUSPENDED. + */ +BaseType_t xTaskGetSchedulerState( void ) PRIVILEGED_FUNCTION; + +/* + * Raises the priority of the mutex holder to that of the calling task should + * the mutex holder have a priority less than the calling task. + */ +BaseType_t xTaskPriorityInherit( TaskHandle_t const pxMutexHolder ) PRIVILEGED_FUNCTION; + +/* + * Set the priority of a task back to its proper priority in the case that it + * inherited a higher priority while it was holding a semaphore. + */ +BaseType_t xTaskPriorityDisinherit( TaskHandle_t const pxMutexHolder ) PRIVILEGED_FUNCTION; + +/* + * If a higher priority task attempting to obtain a mutex caused a lower + * priority task to inherit the higher priority task's priority - but the higher + * priority task then timed out without obtaining the mutex, then the lower + * priority task will disinherit the priority again - but only down as far as + * the highest priority task that is still waiting for the mutex (if there were + * more than one task waiting for the mutex). + */ +void vTaskPriorityDisinheritAfterTimeout( TaskHandle_t const pxMutexHolder, UBaseType_t uxHighestPriorityWaitingTask ) PRIVILEGED_FUNCTION; + +/* + * Get the uxTCBNumber assigned to the task referenced by the xTask parameter. + */ +UBaseType_t uxTaskGetTaskNumber( TaskHandle_t xTask ) PRIVILEGED_FUNCTION; + +/* + * Set the uxTaskNumber of the task referenced by the xTask parameter to + * uxHandle. + */ +void vTaskSetTaskNumber( TaskHandle_t xTask, const UBaseType_t uxHandle ) PRIVILEGED_FUNCTION; + +/* + * Only available when configUSE_TICKLESS_IDLE is set to 1. + * If tickless mode is being used, or a low power mode is implemented, then + * the tick interrupt will not execute during idle periods. When this is the + * case, the tick count value maintained by the scheduler needs to be kept up + * to date with the actual execution time by being skipped forward by a time + * equal to the idle period. + */ +void vTaskStepTick( const TickType_t xTicksToJump ) PRIVILEGED_FUNCTION; + +/* Correct the tick count value after the application code has held +interrupts disabled for an extended period. xTicksToCatchUp is the number +of tick interrupts that have been missed due to interrupts being disabled. +Its value is not computed automatically, so must be computed by the +application writer. + +This function is similar to vTaskStepTick(), however, unlike +vTaskStepTick(), xTaskCatchUpTicks() may move the tick count forward past a +time at which a task should be removed from the blocked state. That means +tasks may have to be removed from the blocked state as the tick count is +moved. */ +BaseType_t xTaskCatchUpTicks( TickType_t xTicksToCatchUp ) PRIVILEGED_FUNCTION; + +/* + * Only available when configUSE_TICKLESS_IDLE is set to 1. + * Provided for use within portSUPPRESS_TICKS_AND_SLEEP() to allow the port + * specific sleep function to determine if it is ok to proceed with the sleep, + * and if it is ok to proceed, if it is ok to sleep indefinitely. + * + * This function is necessary because portSUPPRESS_TICKS_AND_SLEEP() is only + * called with the scheduler suspended, not from within a critical section. It + * is therefore possible for an interrupt to request a context switch between + * portSUPPRESS_TICKS_AND_SLEEP() and the low power mode actually being + * entered. eTaskConfirmSleepModeStatus() should be called from a short + * critical section between the timer being stopped and the sleep mode being + * entered to ensure it is ok to proceed into the sleep mode. + */ +eSleepModeStatus eTaskConfirmSleepModeStatus( void ) PRIVILEGED_FUNCTION; + +/* + * For internal use only. Increment the mutex held count when a mutex is + * taken and return the handle of the task that has taken the mutex. + */ +TaskHandle_t pvTaskIncrementMutexHeldCount( void ) PRIVILEGED_FUNCTION; + +/* + * For internal use only. Same as vTaskSetTimeOutState(), but without a critial + * section. + */ +void vTaskInternalSetTimeOutState( TimeOut_t * const pxTimeOut ) PRIVILEGED_FUNCTION; + + +#ifdef __cplusplus +} +#endif +#endif /* INC_TASK_H */ + + + diff --git a/rtos/freertos/abstraction_layer_freertos/include/timers.h b/rtos/freertos/abstraction_layer_freertos/include/timers.h new file mode 100644 index 00000000..91483846 --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/include/timers.h @@ -0,0 +1,1309 @@ +/* + * FreeRTOS Kernel V10.3.0 + * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * + * http://www.FreeRTOS.org + * http://aws.amazon.com/freertos + * + * 1 tab == 4 spaces! + */ + + +#ifndef TIMERS_H +#define TIMERS_H + +#ifndef INC_FREERTOS_H + #error "include FreeRTOS.h must appear in source files before include timers.h" +#endif + +/*lint -save -e537 This headers are only multiply included if the application code +happens to also be including task.h. */ +#include "task.h" +/*lint -restore */ + +#ifdef __cplusplus +extern "C" { +#endif + +/*----------------------------------------------------------- + * MACROS AND DEFINITIONS + *----------------------------------------------------------*/ + +/* IDs for commands that can be sent/received on the timer queue. These are to +be used solely through the macros that make up the public software timer API, +as defined below. The commands that are sent from interrupts must use the +highest numbers as tmrFIRST_FROM_ISR_COMMAND is used to determine if the task +or interrupt version of the queue send function should be used. */ +#define tmrCOMMAND_EXECUTE_CALLBACK_FROM_ISR ( ( BaseType_t ) -2 ) +#define tmrCOMMAND_EXECUTE_CALLBACK ( ( BaseType_t ) -1 ) +#define tmrCOMMAND_START_DONT_TRACE ( ( BaseType_t ) 0 ) +#define tmrCOMMAND_START ( ( BaseType_t ) 1 ) +#define tmrCOMMAND_RESET ( ( BaseType_t ) 2 ) +#define tmrCOMMAND_STOP ( ( BaseType_t ) 3 ) +#define tmrCOMMAND_CHANGE_PERIOD ( ( BaseType_t ) 4 ) +#define tmrCOMMAND_DELETE ( ( BaseType_t ) 5 ) + +#define tmrFIRST_FROM_ISR_COMMAND ( ( BaseType_t ) 6 ) +#define tmrCOMMAND_START_FROM_ISR ( ( BaseType_t ) 6 ) +#define tmrCOMMAND_RESET_FROM_ISR ( ( BaseType_t ) 7 ) +#define tmrCOMMAND_STOP_FROM_ISR ( ( BaseType_t ) 8 ) +#define tmrCOMMAND_CHANGE_PERIOD_FROM_ISR ( ( BaseType_t ) 9 ) + + +/** + * Type by which software timers are referenced. For example, a call to + * xTimerCreate() returns an TimerHandle_t variable that can then be used to + * reference the subject timer in calls to other software timer API functions + * (for example, xTimerStart(), xTimerReset(), etc.). + */ +struct tmrTimerControl; /* The old naming convention is used to prevent breaking kernel aware debuggers. */ +typedef struct tmrTimerControl * TimerHandle_t; + +/* + * Defines the prototype to which timer callback functions must conform. + */ +typedef void (*TimerCallbackFunction_t)( TimerHandle_t xTimer ); + +/* + * Defines the prototype to which functions used with the + * xTimerPendFunctionCallFromISR() function must conform. + */ +typedef void (*PendedFunction_t)( void *, uint32_t ); + +/** + * TimerHandle_t xTimerCreate( const char * const pcTimerName, + * TickType_t xTimerPeriodInTicks, + * UBaseType_t uxAutoReload, + * void * pvTimerID, + * TimerCallbackFunction_t pxCallbackFunction ); + * + * Creates a new software timer instance, and returns a handle by which the + * created software timer can be referenced. + * + * Internally, within the FreeRTOS implementation, software timers use a block + * of memory, in which the timer data structure is stored. If a software timer + * is created using xTimerCreate() then the required memory is automatically + * dynamically allocated inside the xTimerCreate() function. (see + * http://www.freertos.org/a00111.html). If a software timer is created using + * xTimerCreateStatic() then the application writer must provide the memory that + * will get used by the software timer. xTimerCreateStatic() therefore allows a + * software timer to be created without using any dynamic memory allocation. + * + * Timers are created in the dormant state. The xTimerStart(), xTimerReset(), + * xTimerStartFromISR(), xTimerResetFromISR(), xTimerChangePeriod() and + * xTimerChangePeriodFromISR() API functions can all be used to transition a + * timer into the active state. + * + * @param pcTimerName A text name that is assigned to the timer. This is done + * purely to assist debugging. The kernel itself only ever references a timer + * by its handle, and never by its name. + * + * @param xTimerPeriodInTicks The timer period. The time is defined in tick + * periods so the constant portTICK_PERIOD_MS can be used to convert a time that + * has been specified in milliseconds. For example, if the timer must expire + * after 100 ticks, then xTimerPeriodInTicks should be set to 100. + * Alternatively, if the timer must expire after 500ms, then xPeriod can be set + * to ( 500 / portTICK_PERIOD_MS ) provided configTICK_RATE_HZ is less than or + * equal to 1000. + * + * @param uxAutoReload If uxAutoReload is set to pdTRUE then the timer will + * expire repeatedly with a frequency set by the xTimerPeriodInTicks parameter. + * If uxAutoReload is set to pdFALSE then the timer will be a one-shot timer and + * enter the dormant state after it expires. + * + * @param pvTimerID An identifier that is assigned to the timer being created. + * Typically this would be used in the timer callback function to identify which + * timer expired when the same callback function is assigned to more than one + * timer. + * + * @param pxCallbackFunction The function to call when the timer expires. + * Callback functions must have the prototype defined by TimerCallbackFunction_t, + * which is "void vCallbackFunction( TimerHandle_t xTimer );". + * + * @return If the timer is successfully created then a handle to the newly + * created timer is returned. If the timer cannot be created (because either + * there is insufficient FreeRTOS heap remaining to allocate the timer + * structures, or the timer period was set to 0) then NULL is returned. + * + * Example usage: + * @verbatim + * #define NUM_TIMERS 5 + * + * // An array to hold handles to the created timers. + * TimerHandle_t xTimers[ NUM_TIMERS ]; + * + * // An array to hold a count of the number of times each timer expires. + * int32_t lExpireCounters[ NUM_TIMERS ] = { 0 }; + * + * // Define a callback function that will be used by multiple timer instances. + * // The callback function does nothing but count the number of times the + * // associated timer expires, and stop the timer once the timer has expired + * // 10 times. + * void vTimerCallback( TimerHandle_t pxTimer ) + * { + * int32_t lArrayIndex; + * const int32_t xMaxExpiryCountBeforeStopping = 10; + * + * // Optionally do something if the pxTimer parameter is NULL. + * configASSERT( pxTimer ); + * + * // Which timer expired? + * lArrayIndex = ( int32_t ) pvTimerGetTimerID( pxTimer ); + * + * // Increment the number of times that pxTimer has expired. + * lExpireCounters[ lArrayIndex ] += 1; + * + * // If the timer has expired 10 times then stop it from running. + * if( lExpireCounters[ lArrayIndex ] == xMaxExpiryCountBeforeStopping ) + * { + * // Do not use a block time if calling a timer API function from a + * // timer callback function, as doing so could cause a deadlock! + * xTimerStop( pxTimer, 0 ); + * } + * } + * + * void main( void ) + * { + * int32_t x; + * + * // Create then start some timers. Starting the timers before the scheduler + * // has been started means the timers will start running immediately that + * // the scheduler starts. + * for( x = 0; x < NUM_TIMERS; x++ ) + * { + * xTimers[ x ] = xTimerCreate( "Timer", // Just a text name, not used by the kernel. + * ( 100 * x ), // The timer period in ticks. + * pdTRUE, // The timers will auto-reload themselves when they expire. + * ( void * ) x, // Assign each timer a unique id equal to its array index. + * vTimerCallback // Each timer calls the same callback when it expires. + * ); + * + * if( xTimers[ x ] == NULL ) + * { + * // The timer was not created. + * } + * else + * { + * // Start the timer. No block time is specified, and even if one was + * // it would be ignored because the scheduler has not yet been + * // started. + * if( xTimerStart( xTimers[ x ], 0 ) != pdPASS ) + * { + * // The timer could not be set into the Active state. + * } + * } + * } + * + * // ... + * // Create tasks here. + * // ... + * + * // Starting the scheduler will start the timers running as they have already + * // been set into the active state. + * vTaskStartScheduler(); + * + * // Should not reach here. + * for( ;; ); + * } + * @endverbatim + */ +#if( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) + TimerHandle_t xTimerCreate( const char * const pcTimerName, /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + const TickType_t xTimerPeriodInTicks, + const UBaseType_t uxAutoReload, + void * const pvTimerID, + TimerCallbackFunction_t pxCallbackFunction ) PRIVILEGED_FUNCTION; +#endif + +/** + * TimerHandle_t xTimerCreateStatic(const char * const pcTimerName, + * TickType_t xTimerPeriodInTicks, + * UBaseType_t uxAutoReload, + * void * pvTimerID, + * TimerCallbackFunction_t pxCallbackFunction, + * StaticTimer_t *pxTimerBuffer ); + * + * Creates a new software timer instance, and returns a handle by which the + * created software timer can be referenced. + * + * Internally, within the FreeRTOS implementation, software timers use a block + * of memory, in which the timer data structure is stored. If a software timer + * is created using xTimerCreate() then the required memory is automatically + * dynamically allocated inside the xTimerCreate() function. (see + * http://www.freertos.org/a00111.html). If a software timer is created using + * xTimerCreateStatic() then the application writer must provide the memory that + * will get used by the software timer. xTimerCreateStatic() therefore allows a + * software timer to be created without using any dynamic memory allocation. + * + * Timers are created in the dormant state. The xTimerStart(), xTimerReset(), + * xTimerStartFromISR(), xTimerResetFromISR(), xTimerChangePeriod() and + * xTimerChangePeriodFromISR() API functions can all be used to transition a + * timer into the active state. + * + * @param pcTimerName A text name that is assigned to the timer. This is done + * purely to assist debugging. The kernel itself only ever references a timer + * by its handle, and never by its name. + * + * @param xTimerPeriodInTicks The timer period. The time is defined in tick + * periods so the constant portTICK_PERIOD_MS can be used to convert a time that + * has been specified in milliseconds. For example, if the timer must expire + * after 100 ticks, then xTimerPeriodInTicks should be set to 100. + * Alternatively, if the timer must expire after 500ms, then xPeriod can be set + * to ( 500 / portTICK_PERIOD_MS ) provided configTICK_RATE_HZ is less than or + * equal to 1000. + * + * @param uxAutoReload If uxAutoReload is set to pdTRUE then the timer will + * expire repeatedly with a frequency set by the xTimerPeriodInTicks parameter. + * If uxAutoReload is set to pdFALSE then the timer will be a one-shot timer and + * enter the dormant state after it expires. + * + * @param pvTimerID An identifier that is assigned to the timer being created. + * Typically this would be used in the timer callback function to identify which + * timer expired when the same callback function is assigned to more than one + * timer. + * + * @param pxCallbackFunction The function to call when the timer expires. + * Callback functions must have the prototype defined by TimerCallbackFunction_t, + * which is "void vCallbackFunction( TimerHandle_t xTimer );". + * + * @param pxTimerBuffer Must point to a variable of type StaticTimer_t, which + * will be then be used to hold the software timer's data structures, removing + * the need for the memory to be allocated dynamically. + * + * @return If the timer is created then a handle to the created timer is + * returned. If pxTimerBuffer was NULL then NULL is returned. + * + * Example usage: + * @verbatim + * + * // The buffer used to hold the software timer's data structure. + * static StaticTimer_t xTimerBuffer; + * + * // A variable that will be incremented by the software timer's callback + * // function. + * UBaseType_t uxVariableToIncrement = 0; + * + * // A software timer callback function that increments a variable passed to + * // it when the software timer was created. After the 5th increment the + * // callback function stops the software timer. + * static void prvTimerCallback( TimerHandle_t xExpiredTimer ) + * { + * UBaseType_t *puxVariableToIncrement; + * BaseType_t xReturned; + * + * // Obtain the address of the variable to increment from the timer ID. + * puxVariableToIncrement = ( UBaseType_t * ) pvTimerGetTimerID( xExpiredTimer ); + * + * // Increment the variable to show the timer callback has executed. + * ( *puxVariableToIncrement )++; + * + * // If this callback has executed the required number of times, stop the + * // timer. + * if( *puxVariableToIncrement == 5 ) + * { + * // This is called from a timer callback so must not block. + * xTimerStop( xExpiredTimer, staticDONT_BLOCK ); + * } + * } + * + * + * void main( void ) + * { + * // Create the software time. xTimerCreateStatic() has an extra parameter + * // than the normal xTimerCreate() API function. The parameter is a pointer + * // to the StaticTimer_t structure that will hold the software timer + * // structure. If the parameter is passed as NULL then the structure will be + * // allocated dynamically, just as if xTimerCreate() had been called. + * xTimer = xTimerCreateStatic( "T1", // Text name for the task. Helps debugging only. Not used by FreeRTOS. + * xTimerPeriod, // The period of the timer in ticks. + * pdTRUE, // This is an auto-reload timer. + * ( void * ) &uxVariableToIncrement, // A variable incremented by the software timer's callback function + * prvTimerCallback, // The function to execute when the timer expires. + * &xTimerBuffer ); // The buffer that will hold the software timer structure. + * + * // The scheduler has not started yet so a block time is not used. + * xReturned = xTimerStart( xTimer, 0 ); + * + * // ... + * // Create tasks here. + * // ... + * + * // Starting the scheduler will start the timers running as they have already + * // been set into the active state. + * vTaskStartScheduler(); + * + * // Should not reach here. + * for( ;; ); + * } + * @endverbatim + */ +#if( configSUPPORT_STATIC_ALLOCATION == 1 ) + TimerHandle_t xTimerCreateStatic( const char * const pcTimerName, /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + const TickType_t xTimerPeriodInTicks, + const UBaseType_t uxAutoReload, + void * const pvTimerID, + TimerCallbackFunction_t pxCallbackFunction, + StaticTimer_t *pxTimerBuffer ) PRIVILEGED_FUNCTION; +#endif /* configSUPPORT_STATIC_ALLOCATION */ + +/** + * void *pvTimerGetTimerID( TimerHandle_t xTimer ); + * + * Returns the ID assigned to the timer. + * + * IDs are assigned to timers using the pvTimerID parameter of the call to + * xTimerCreated() that was used to create the timer, and by calling the + * vTimerSetTimerID() API function. + * + * If the same callback function is assigned to multiple timers then the timer + * ID can be used as time specific (timer local) storage. + * + * @param xTimer The timer being queried. + * + * @return The ID assigned to the timer being queried. + * + * Example usage: + * + * See the xTimerCreate() API function example usage scenario. + */ +void *pvTimerGetTimerID( const TimerHandle_t xTimer ) PRIVILEGED_FUNCTION; + +/** + * void vTimerSetTimerID( TimerHandle_t xTimer, void *pvNewID ); + * + * Sets the ID assigned to the timer. + * + * IDs are assigned to timers using the pvTimerID parameter of the call to + * xTimerCreated() that was used to create the timer. + * + * If the same callback function is assigned to multiple timers then the timer + * ID can be used as time specific (timer local) storage. + * + * @param xTimer The timer being updated. + * + * @param pvNewID The ID to assign to the timer. + * + * Example usage: + * + * See the xTimerCreate() API function example usage scenario. + */ +void vTimerSetTimerID( TimerHandle_t xTimer, void *pvNewID ) PRIVILEGED_FUNCTION; + +/** + * BaseType_t xTimerIsTimerActive( TimerHandle_t xTimer ); + * + * Queries a timer to see if it is active or dormant. + * + * A timer will be dormant if: + * 1) It has been created but not started, or + * 2) It is an expired one-shot timer that has not been restarted. + * + * Timers are created in the dormant state. The xTimerStart(), xTimerReset(), + * xTimerStartFromISR(), xTimerResetFromISR(), xTimerChangePeriod() and + * xTimerChangePeriodFromISR() API functions can all be used to transition a timer into the + * active state. + * + * @param xTimer The timer being queried. + * + * @return pdFALSE will be returned if the timer is dormant. A value other than + * pdFALSE will be returned if the timer is active. + * + * Example usage: + * @verbatim + * // This function assumes xTimer has already been created. + * void vAFunction( TimerHandle_t xTimer ) + * { + * if( xTimerIsTimerActive( xTimer ) != pdFALSE ) // or more simply and equivalently "if( xTimerIsTimerActive( xTimer ) )" + * { + * // xTimer is active, do something. + * } + * else + * { + * // xTimer is not active, do something else. + * } + * } + * @endverbatim + */ +BaseType_t xTimerIsTimerActive( TimerHandle_t xTimer ) PRIVILEGED_FUNCTION; + +/** + * TaskHandle_t xTimerGetTimerDaemonTaskHandle( void ); + * + * Simply returns the handle of the timer service/daemon task. It it not valid + * to call xTimerGetTimerDaemonTaskHandle() before the scheduler has been started. + */ +TaskHandle_t xTimerGetTimerDaemonTaskHandle( void ) PRIVILEGED_FUNCTION; + +/** + * BaseType_t xTimerStart( TimerHandle_t xTimer, TickType_t xTicksToWait ); + * + * Timer functionality is provided by a timer service/daemon task. Many of the + * public FreeRTOS timer API functions send commands to the timer service task + * through a queue called the timer command queue. The timer command queue is + * private to the kernel itself and is not directly accessible to application + * code. The length of the timer command queue is set by the + * configTIMER_QUEUE_LENGTH configuration constant. + * + * xTimerStart() starts a timer that was previously created using the + * xTimerCreate() API function. If the timer had already been started and was + * already in the active state, then xTimerStart() has equivalent functionality + * to the xTimerReset() API function. + * + * Starting a timer ensures the timer is in the active state. If the timer + * is not stopped, deleted, or reset in the mean time, the callback function + * associated with the timer will get called 'n' ticks after xTimerStart() was + * called, where 'n' is the timers defined period. + * + * It is valid to call xTimerStart() before the scheduler has been started, but + * when this is done the timer will not actually start until the scheduler is + * started, and the timers expiry time will be relative to when the scheduler is + * started, not relative to when xTimerStart() was called. + * + * The configUSE_TIMERS configuration constant must be set to 1 for xTimerStart() + * to be available. + * + * @param xTimer The handle of the timer being started/restarted. + * + * @param xTicksToWait Specifies the time, in ticks, that the calling task should + * be held in the Blocked state to wait for the start command to be successfully + * sent to the timer command queue, should the queue already be full when + * xTimerStart() was called. xTicksToWait is ignored if xTimerStart() is called + * before the scheduler is started. + * + * @return pdFAIL will be returned if the start command could not be sent to + * the timer command queue even after xTicksToWait ticks had passed. pdPASS will + * be returned if the command was successfully sent to the timer command queue. + * When the command is actually processed will depend on the priority of the + * timer service/daemon task relative to other tasks in the system, although the + * timers expiry time is relative to when xTimerStart() is actually called. The + * timer service/daemon task priority is set by the configTIMER_TASK_PRIORITY + * configuration constant. + * + * Example usage: + * + * See the xTimerCreate() API function example usage scenario. + * + */ +#define xTimerStart( xTimer, xTicksToWait ) xTimerGenericCommand( ( xTimer ), tmrCOMMAND_START, ( xTaskGetTickCount() ), NULL, ( xTicksToWait ) ) + +/** + * BaseType_t xTimerStop( TimerHandle_t xTimer, TickType_t xTicksToWait ); + * + * Timer functionality is provided by a timer service/daemon task. Many of the + * public FreeRTOS timer API functions send commands to the timer service task + * through a queue called the timer command queue. The timer command queue is + * private to the kernel itself and is not directly accessible to application + * code. The length of the timer command queue is set by the + * configTIMER_QUEUE_LENGTH configuration constant. + * + * xTimerStop() stops a timer that was previously started using either of the + * The xTimerStart(), xTimerReset(), xTimerStartFromISR(), xTimerResetFromISR(), + * xTimerChangePeriod() or xTimerChangePeriodFromISR() API functions. + * + * Stopping a timer ensures the timer is not in the active state. + * + * The configUSE_TIMERS configuration constant must be set to 1 for xTimerStop() + * to be available. + * + * @param xTimer The handle of the timer being stopped. + * + * @param xTicksToWait Specifies the time, in ticks, that the calling task should + * be held in the Blocked state to wait for the stop command to be successfully + * sent to the timer command queue, should the queue already be full when + * xTimerStop() was called. xTicksToWait is ignored if xTimerStop() is called + * before the scheduler is started. + * + * @return pdFAIL will be returned if the stop command could not be sent to + * the timer command queue even after xTicksToWait ticks had passed. pdPASS will + * be returned if the command was successfully sent to the timer command queue. + * When the command is actually processed will depend on the priority of the + * timer service/daemon task relative to other tasks in the system. The timer + * service/daemon task priority is set by the configTIMER_TASK_PRIORITY + * configuration constant. + * + * Example usage: + * + * See the xTimerCreate() API function example usage scenario. + * + */ +#define xTimerStop( xTimer, xTicksToWait ) xTimerGenericCommand( ( xTimer ), tmrCOMMAND_STOP, 0U, NULL, ( xTicksToWait ) ) + +/** + * BaseType_t xTimerChangePeriod( TimerHandle_t xTimer, + * TickType_t xNewPeriod, + * TickType_t xTicksToWait ); + * + * Timer functionality is provided by a timer service/daemon task. Many of the + * public FreeRTOS timer API functions send commands to the timer service task + * through a queue called the timer command queue. The timer command queue is + * private to the kernel itself and is not directly accessible to application + * code. The length of the timer command queue is set by the + * configTIMER_QUEUE_LENGTH configuration constant. + * + * xTimerChangePeriod() changes the period of a timer that was previously + * created using the xTimerCreate() API function. + * + * xTimerChangePeriod() can be called to change the period of an active or + * dormant state timer. + * + * The configUSE_TIMERS configuration constant must be set to 1 for + * xTimerChangePeriod() to be available. + * + * @param xTimer The handle of the timer that is having its period changed. + * + * @param xNewPeriod The new period for xTimer. Timer periods are specified in + * tick periods, so the constant portTICK_PERIOD_MS can be used to convert a time + * that has been specified in milliseconds. For example, if the timer must + * expire after 100 ticks, then xNewPeriod should be set to 100. Alternatively, + * if the timer must expire after 500ms, then xNewPeriod can be set to + * ( 500 / portTICK_PERIOD_MS ) provided configTICK_RATE_HZ is less than + * or equal to 1000. + * + * @param xTicksToWait Specifies the time, in ticks, that the calling task should + * be held in the Blocked state to wait for the change period command to be + * successfully sent to the timer command queue, should the queue already be + * full when xTimerChangePeriod() was called. xTicksToWait is ignored if + * xTimerChangePeriod() is called before the scheduler is started. + * + * @return pdFAIL will be returned if the change period command could not be + * sent to the timer command queue even after xTicksToWait ticks had passed. + * pdPASS will be returned if the command was successfully sent to the timer + * command queue. When the command is actually processed will depend on the + * priority of the timer service/daemon task relative to other tasks in the + * system. The timer service/daemon task priority is set by the + * configTIMER_TASK_PRIORITY configuration constant. + * + * Example usage: + * @verbatim + * // This function assumes xTimer has already been created. If the timer + * // referenced by xTimer is already active when it is called, then the timer + * // is deleted. If the timer referenced by xTimer is not active when it is + * // called, then the period of the timer is set to 500ms and the timer is + * // started. + * void vAFunction( TimerHandle_t xTimer ) + * { + * if( xTimerIsTimerActive( xTimer ) != pdFALSE ) // or more simply and equivalently "if( xTimerIsTimerActive( xTimer ) )" + * { + * // xTimer is already active - delete it. + * xTimerDelete( xTimer ); + * } + * else + * { + * // xTimer is not active, change its period to 500ms. This will also + * // cause the timer to start. Block for a maximum of 100 ticks if the + * // change period command cannot immediately be sent to the timer + * // command queue. + * if( xTimerChangePeriod( xTimer, 500 / portTICK_PERIOD_MS, 100 ) == pdPASS ) + * { + * // The command was successfully sent. + * } + * else + * { + * // The command could not be sent, even after waiting for 100 ticks + * // to pass. Take appropriate action here. + * } + * } + * } + * @endverbatim + */ + #define xTimerChangePeriod( xTimer, xNewPeriod, xTicksToWait ) xTimerGenericCommand( ( xTimer ), tmrCOMMAND_CHANGE_PERIOD, ( xNewPeriod ), NULL, ( xTicksToWait ) ) + +/** + * BaseType_t xTimerDelete( TimerHandle_t xTimer, TickType_t xTicksToWait ); + * + * Timer functionality is provided by a timer service/daemon task. Many of the + * public FreeRTOS timer API functions send commands to the timer service task + * through a queue called the timer command queue. The timer command queue is + * private to the kernel itself and is not directly accessible to application + * code. The length of the timer command queue is set by the + * configTIMER_QUEUE_LENGTH configuration constant. + * + * xTimerDelete() deletes a timer that was previously created using the + * xTimerCreate() API function. + * + * The configUSE_TIMERS configuration constant must be set to 1 for + * xTimerDelete() to be available. + * + * @param xTimer The handle of the timer being deleted. + * + * @param xTicksToWait Specifies the time, in ticks, that the calling task should + * be held in the Blocked state to wait for the delete command to be + * successfully sent to the timer command queue, should the queue already be + * full when xTimerDelete() was called. xTicksToWait is ignored if xTimerDelete() + * is called before the scheduler is started. + * + * @return pdFAIL will be returned if the delete command could not be sent to + * the timer command queue even after xTicksToWait ticks had passed. pdPASS will + * be returned if the command was successfully sent to the timer command queue. + * When the command is actually processed will depend on the priority of the + * timer service/daemon task relative to other tasks in the system. The timer + * service/daemon task priority is set by the configTIMER_TASK_PRIORITY + * configuration constant. + * + * Example usage: + * + * See the xTimerChangePeriod() API function example usage scenario. + */ +#define xTimerDelete( xTimer, xTicksToWait ) xTimerGenericCommand( ( xTimer ), tmrCOMMAND_DELETE, 0U, NULL, ( xTicksToWait ) ) + +/** + * BaseType_t xTimerReset( TimerHandle_t xTimer, TickType_t xTicksToWait ); + * + * Timer functionality is provided by a timer service/daemon task. Many of the + * public FreeRTOS timer API functions send commands to the timer service task + * through a queue called the timer command queue. The timer command queue is + * private to the kernel itself and is not directly accessible to application + * code. The length of the timer command queue is set by the + * configTIMER_QUEUE_LENGTH configuration constant. + * + * xTimerReset() re-starts a timer that was previously created using the + * xTimerCreate() API function. If the timer had already been started and was + * already in the active state, then xTimerReset() will cause the timer to + * re-evaluate its expiry time so that it is relative to when xTimerReset() was + * called. If the timer was in the dormant state then xTimerReset() has + * equivalent functionality to the xTimerStart() API function. + * + * Resetting a timer ensures the timer is in the active state. If the timer + * is not stopped, deleted, or reset in the mean time, the callback function + * associated with the timer will get called 'n' ticks after xTimerReset() was + * called, where 'n' is the timers defined period. + * + * It is valid to call xTimerReset() before the scheduler has been started, but + * when this is done the timer will not actually start until the scheduler is + * started, and the timers expiry time will be relative to when the scheduler is + * started, not relative to when xTimerReset() was called. + * + * The configUSE_TIMERS configuration constant must be set to 1 for xTimerReset() + * to be available. + * + * @param xTimer The handle of the timer being reset/started/restarted. + * + * @param xTicksToWait Specifies the time, in ticks, that the calling task should + * be held in the Blocked state to wait for the reset command to be successfully + * sent to the timer command queue, should the queue already be full when + * xTimerReset() was called. xTicksToWait is ignored if xTimerReset() is called + * before the scheduler is started. + * + * @return pdFAIL will be returned if the reset command could not be sent to + * the timer command queue even after xTicksToWait ticks had passed. pdPASS will + * be returned if the command was successfully sent to the timer command queue. + * When the command is actually processed will depend on the priority of the + * timer service/daemon task relative to other tasks in the system, although the + * timers expiry time is relative to when xTimerStart() is actually called. The + * timer service/daemon task priority is set by the configTIMER_TASK_PRIORITY + * configuration constant. + * + * Example usage: + * @verbatim + * // When a key is pressed, an LCD back-light is switched on. If 5 seconds pass + * // without a key being pressed, then the LCD back-light is switched off. In + * // this case, the timer is a one-shot timer. + * + * TimerHandle_t xBacklightTimer = NULL; + * + * // The callback function assigned to the one-shot timer. In this case the + * // parameter is not used. + * void vBacklightTimerCallback( TimerHandle_t pxTimer ) + * { + * // The timer expired, therefore 5 seconds must have passed since a key + * // was pressed. Switch off the LCD back-light. + * vSetBacklightState( BACKLIGHT_OFF ); + * } + * + * // The key press event handler. + * void vKeyPressEventHandler( char cKey ) + * { + * // Ensure the LCD back-light is on, then reset the timer that is + * // responsible for turning the back-light off after 5 seconds of + * // key inactivity. Wait 10 ticks for the command to be successfully sent + * // if it cannot be sent immediately. + * vSetBacklightState( BACKLIGHT_ON ); + * if( xTimerReset( xBacklightTimer, 100 ) != pdPASS ) + * { + * // The reset command was not executed successfully. Take appropriate + * // action here. + * } + * + * // Perform the rest of the key processing here. + * } + * + * void main( void ) + * { + * int32_t x; + * + * // Create then start the one-shot timer that is responsible for turning + * // the back-light off if no keys are pressed within a 5 second period. + * xBacklightTimer = xTimerCreate( "BacklightTimer", // Just a text name, not used by the kernel. + * ( 5000 / portTICK_PERIOD_MS), // The timer period in ticks. + * pdFALSE, // The timer is a one-shot timer. + * 0, // The id is not used by the callback so can take any value. + * vBacklightTimerCallback // The callback function that switches the LCD back-light off. + * ); + * + * if( xBacklightTimer == NULL ) + * { + * // The timer was not created. + * } + * else + * { + * // Start the timer. No block time is specified, and even if one was + * // it would be ignored because the scheduler has not yet been + * // started. + * if( xTimerStart( xBacklightTimer, 0 ) != pdPASS ) + * { + * // The timer could not be set into the Active state. + * } + * } + * + * // ... + * // Create tasks here. + * // ... + * + * // Starting the scheduler will start the timer running as it has already + * // been set into the active state. + * vTaskStartScheduler(); + * + * // Should not reach here. + * for( ;; ); + * } + * @endverbatim + */ +#define xTimerReset( xTimer, xTicksToWait ) xTimerGenericCommand( ( xTimer ), tmrCOMMAND_RESET, ( xTaskGetTickCount() ), NULL, ( xTicksToWait ) ) + +/** + * BaseType_t xTimerStartFromISR( TimerHandle_t xTimer, + * BaseType_t *pxHigherPriorityTaskWoken ); + * + * A version of xTimerStart() that can be called from an interrupt service + * routine. + * + * @param xTimer The handle of the timer being started/restarted. + * + * @param pxHigherPriorityTaskWoken The timer service/daemon task spends most + * of its time in the Blocked state, waiting for messages to arrive on the timer + * command queue. Calling xTimerStartFromISR() writes a message to the timer + * command queue, so has the potential to transition the timer service/daemon + * task out of the Blocked state. If calling xTimerStartFromISR() causes the + * timer service/daemon task to leave the Blocked state, and the timer service/ + * daemon task has a priority equal to or greater than the currently executing + * task (the task that was interrupted), then *pxHigherPriorityTaskWoken will + * get set to pdTRUE internally within the xTimerStartFromISR() function. If + * xTimerStartFromISR() sets this value to pdTRUE then a context switch should + * be performed before the interrupt exits. + * + * @return pdFAIL will be returned if the start command could not be sent to + * the timer command queue. pdPASS will be returned if the command was + * successfully sent to the timer command queue. When the command is actually + * processed will depend on the priority of the timer service/daemon task + * relative to other tasks in the system, although the timers expiry time is + * relative to when xTimerStartFromISR() is actually called. The timer + * service/daemon task priority is set by the configTIMER_TASK_PRIORITY + * configuration constant. + * + * Example usage: + * @verbatim + * // This scenario assumes xBacklightTimer has already been created. When a + * // key is pressed, an LCD back-light is switched on. If 5 seconds pass + * // without a key being pressed, then the LCD back-light is switched off. In + * // this case, the timer is a one-shot timer, and unlike the example given for + * // the xTimerReset() function, the key press event handler is an interrupt + * // service routine. + * + * // The callback function assigned to the one-shot timer. In this case the + * // parameter is not used. + * void vBacklightTimerCallback( TimerHandle_t pxTimer ) + * { + * // The timer expired, therefore 5 seconds must have passed since a key + * // was pressed. Switch off the LCD back-light. + * vSetBacklightState( BACKLIGHT_OFF ); + * } + * + * // The key press interrupt service routine. + * void vKeyPressEventInterruptHandler( void ) + * { + * BaseType_t xHigherPriorityTaskWoken = pdFALSE; + * + * // Ensure the LCD back-light is on, then restart the timer that is + * // responsible for turning the back-light off after 5 seconds of + * // key inactivity. This is an interrupt service routine so can only + * // call FreeRTOS API functions that end in "FromISR". + * vSetBacklightState( BACKLIGHT_ON ); + * + * // xTimerStartFromISR() or xTimerResetFromISR() could be called here + * // as both cause the timer to re-calculate its expiry time. + * // xHigherPriorityTaskWoken was initialised to pdFALSE when it was + * // declared (in this function). + * if( xTimerStartFromISR( xBacklightTimer, &xHigherPriorityTaskWoken ) != pdPASS ) + * { + * // The start command was not executed successfully. Take appropriate + * // action here. + * } + * + * // Perform the rest of the key processing here. + * + * // If xHigherPriorityTaskWoken equals pdTRUE, then a context switch + * // should be performed. The syntax required to perform a context switch + * // from inside an ISR varies from port to port, and from compiler to + * // compiler. Inspect the demos for the port you are using to find the + * // actual syntax required. + * if( xHigherPriorityTaskWoken != pdFALSE ) + * { + * // Call the interrupt safe yield function here (actual function + * // depends on the FreeRTOS port being used). + * } + * } + * @endverbatim + */ +#define xTimerStartFromISR( xTimer, pxHigherPriorityTaskWoken ) xTimerGenericCommand( ( xTimer ), tmrCOMMAND_START_FROM_ISR, ( xTaskGetTickCountFromISR() ), ( pxHigherPriorityTaskWoken ), 0U ) + +/** + * BaseType_t xTimerStopFromISR( TimerHandle_t xTimer, + * BaseType_t *pxHigherPriorityTaskWoken ); + * + * A version of xTimerStop() that can be called from an interrupt service + * routine. + * + * @param xTimer The handle of the timer being stopped. + * + * @param pxHigherPriorityTaskWoken The timer service/daemon task spends most + * of its time in the Blocked state, waiting for messages to arrive on the timer + * command queue. Calling xTimerStopFromISR() writes a message to the timer + * command queue, so has the potential to transition the timer service/daemon + * task out of the Blocked state. If calling xTimerStopFromISR() causes the + * timer service/daemon task to leave the Blocked state, and the timer service/ + * daemon task has a priority equal to or greater than the currently executing + * task (the task that was interrupted), then *pxHigherPriorityTaskWoken will + * get set to pdTRUE internally within the xTimerStopFromISR() function. If + * xTimerStopFromISR() sets this value to pdTRUE then a context switch should + * be performed before the interrupt exits. + * + * @return pdFAIL will be returned if the stop command could not be sent to + * the timer command queue. pdPASS will be returned if the command was + * successfully sent to the timer command queue. When the command is actually + * processed will depend on the priority of the timer service/daemon task + * relative to other tasks in the system. The timer service/daemon task + * priority is set by the configTIMER_TASK_PRIORITY configuration constant. + * + * Example usage: + * @verbatim + * // This scenario assumes xTimer has already been created and started. When + * // an interrupt occurs, the timer should be simply stopped. + * + * // The interrupt service routine that stops the timer. + * void vAnExampleInterruptServiceRoutine( void ) + * { + * BaseType_t xHigherPriorityTaskWoken = pdFALSE; + * + * // The interrupt has occurred - simply stop the timer. + * // xHigherPriorityTaskWoken was set to pdFALSE where it was defined + * // (within this function). As this is an interrupt service routine, only + * // FreeRTOS API functions that end in "FromISR" can be used. + * if( xTimerStopFromISR( xTimer, &xHigherPriorityTaskWoken ) != pdPASS ) + * { + * // The stop command was not executed successfully. Take appropriate + * // action here. + * } + * + * // If xHigherPriorityTaskWoken equals pdTRUE, then a context switch + * // should be performed. The syntax required to perform a context switch + * // from inside an ISR varies from port to port, and from compiler to + * // compiler. Inspect the demos for the port you are using to find the + * // actual syntax required. + * if( xHigherPriorityTaskWoken != pdFALSE ) + * { + * // Call the interrupt safe yield function here (actual function + * // depends on the FreeRTOS port being used). + * } + * } + * @endverbatim + */ +#define xTimerStopFromISR( xTimer, pxHigherPriorityTaskWoken ) xTimerGenericCommand( ( xTimer ), tmrCOMMAND_STOP_FROM_ISR, 0, ( pxHigherPriorityTaskWoken ), 0U ) + +/** + * BaseType_t xTimerChangePeriodFromISR( TimerHandle_t xTimer, + * TickType_t xNewPeriod, + * BaseType_t *pxHigherPriorityTaskWoken ); + * + * A version of xTimerChangePeriod() that can be called from an interrupt + * service routine. + * + * @param xTimer The handle of the timer that is having its period changed. + * + * @param xNewPeriod The new period for xTimer. Timer periods are specified in + * tick periods, so the constant portTICK_PERIOD_MS can be used to convert a time + * that has been specified in milliseconds. For example, if the timer must + * expire after 100 ticks, then xNewPeriod should be set to 100. Alternatively, + * if the timer must expire after 500ms, then xNewPeriod can be set to + * ( 500 / portTICK_PERIOD_MS ) provided configTICK_RATE_HZ is less than + * or equal to 1000. + * + * @param pxHigherPriorityTaskWoken The timer service/daemon task spends most + * of its time in the Blocked state, waiting for messages to arrive on the timer + * command queue. Calling xTimerChangePeriodFromISR() writes a message to the + * timer command queue, so has the potential to transition the timer service/ + * daemon task out of the Blocked state. If calling xTimerChangePeriodFromISR() + * causes the timer service/daemon task to leave the Blocked state, and the + * timer service/daemon task has a priority equal to or greater than the + * currently executing task (the task that was interrupted), then + * *pxHigherPriorityTaskWoken will get set to pdTRUE internally within the + * xTimerChangePeriodFromISR() function. If xTimerChangePeriodFromISR() sets + * this value to pdTRUE then a context switch should be performed before the + * interrupt exits. + * + * @return pdFAIL will be returned if the command to change the timers period + * could not be sent to the timer command queue. pdPASS will be returned if the + * command was successfully sent to the timer command queue. When the command + * is actually processed will depend on the priority of the timer service/daemon + * task relative to other tasks in the system. The timer service/daemon task + * priority is set by the configTIMER_TASK_PRIORITY configuration constant. + * + * Example usage: + * @verbatim + * // This scenario assumes xTimer has already been created and started. When + * // an interrupt occurs, the period of xTimer should be changed to 500ms. + * + * // The interrupt service routine that changes the period of xTimer. + * void vAnExampleInterruptServiceRoutine( void ) + * { + * BaseType_t xHigherPriorityTaskWoken = pdFALSE; + * + * // The interrupt has occurred - change the period of xTimer to 500ms. + * // xHigherPriorityTaskWoken was set to pdFALSE where it was defined + * // (within this function). As this is an interrupt service routine, only + * // FreeRTOS API functions that end in "FromISR" can be used. + * if( xTimerChangePeriodFromISR( xTimer, &xHigherPriorityTaskWoken ) != pdPASS ) + * { + * // The command to change the timers period was not executed + * // successfully. Take appropriate action here. + * } + * + * // If xHigherPriorityTaskWoken equals pdTRUE, then a context switch + * // should be performed. The syntax required to perform a context switch + * // from inside an ISR varies from port to port, and from compiler to + * // compiler. Inspect the demos for the port you are using to find the + * // actual syntax required. + * if( xHigherPriorityTaskWoken != pdFALSE ) + * { + * // Call the interrupt safe yield function here (actual function + * // depends on the FreeRTOS port being used). + * } + * } + * @endverbatim + */ +#define xTimerChangePeriodFromISR( xTimer, xNewPeriod, pxHigherPriorityTaskWoken ) xTimerGenericCommand( ( xTimer ), tmrCOMMAND_CHANGE_PERIOD_FROM_ISR, ( xNewPeriod ), ( pxHigherPriorityTaskWoken ), 0U ) + +/** + * BaseType_t xTimerResetFromISR( TimerHandle_t xTimer, + * BaseType_t *pxHigherPriorityTaskWoken ); + * + * A version of xTimerReset() that can be called from an interrupt service + * routine. + * + * @param xTimer The handle of the timer that is to be started, reset, or + * restarted. + * + * @param pxHigherPriorityTaskWoken The timer service/daemon task spends most + * of its time in the Blocked state, waiting for messages to arrive on the timer + * command queue. Calling xTimerResetFromISR() writes a message to the timer + * command queue, so has the potential to transition the timer service/daemon + * task out of the Blocked state. If calling xTimerResetFromISR() causes the + * timer service/daemon task to leave the Blocked state, and the timer service/ + * daemon task has a priority equal to or greater than the currently executing + * task (the task that was interrupted), then *pxHigherPriorityTaskWoken will + * get set to pdTRUE internally within the xTimerResetFromISR() function. If + * xTimerResetFromISR() sets this value to pdTRUE then a context switch should + * be performed before the interrupt exits. + * + * @return pdFAIL will be returned if the reset command could not be sent to + * the timer command queue. pdPASS will be returned if the command was + * successfully sent to the timer command queue. When the command is actually + * processed will depend on the priority of the timer service/daemon task + * relative to other tasks in the system, although the timers expiry time is + * relative to when xTimerResetFromISR() is actually called. The timer service/daemon + * task priority is set by the configTIMER_TASK_PRIORITY configuration constant. + * + * Example usage: + * @verbatim + * // This scenario assumes xBacklightTimer has already been created. When a + * // key is pressed, an LCD back-light is switched on. If 5 seconds pass + * // without a key being pressed, then the LCD back-light is switched off. In + * // this case, the timer is a one-shot timer, and unlike the example given for + * // the xTimerReset() function, the key press event handler is an interrupt + * // service routine. + * + * // The callback function assigned to the one-shot timer. In this case the + * // parameter is not used. + * void vBacklightTimerCallback( TimerHandle_t pxTimer ) + * { + * // The timer expired, therefore 5 seconds must have passed since a key + * // was pressed. Switch off the LCD back-light. + * vSetBacklightState( BACKLIGHT_OFF ); + * } + * + * // The key press interrupt service routine. + * void vKeyPressEventInterruptHandler( void ) + * { + * BaseType_t xHigherPriorityTaskWoken = pdFALSE; + * + * // Ensure the LCD back-light is on, then reset the timer that is + * // responsible for turning the back-light off after 5 seconds of + * // key inactivity. This is an interrupt service routine so can only + * // call FreeRTOS API functions that end in "FromISR". + * vSetBacklightState( BACKLIGHT_ON ); + * + * // xTimerStartFromISR() or xTimerResetFromISR() could be called here + * // as both cause the timer to re-calculate its expiry time. + * // xHigherPriorityTaskWoken was initialised to pdFALSE when it was + * // declared (in this function). + * if( xTimerResetFromISR( xBacklightTimer, &xHigherPriorityTaskWoken ) != pdPASS ) + * { + * // The reset command was not executed successfully. Take appropriate + * // action here. + * } + * + * // Perform the rest of the key processing here. + * + * // If xHigherPriorityTaskWoken equals pdTRUE, then a context switch + * // should be performed. The syntax required to perform a context switch + * // from inside an ISR varies from port to port, and from compiler to + * // compiler. Inspect the demos for the port you are using to find the + * // actual syntax required. + * if( xHigherPriorityTaskWoken != pdFALSE ) + * { + * // Call the interrupt safe yield function here (actual function + * // depends on the FreeRTOS port being used). + * } + * } + * @endverbatim + */ +#define xTimerResetFromISR( xTimer, pxHigherPriorityTaskWoken ) xTimerGenericCommand( ( xTimer ), tmrCOMMAND_RESET_FROM_ISR, ( xTaskGetTickCountFromISR() ), ( pxHigherPriorityTaskWoken ), 0U ) + + +/** + * BaseType_t xTimerPendFunctionCallFromISR( PendedFunction_t xFunctionToPend, + * void *pvParameter1, + * uint32_t ulParameter2, + * BaseType_t *pxHigherPriorityTaskWoken ); + * + * + * Used from application interrupt service routines to defer the execution of a + * function to the RTOS daemon task (the timer service task, hence this function + * is implemented in timers.c and is prefixed with 'Timer'). + * + * Ideally an interrupt service routine (ISR) is kept as short as possible, but + * sometimes an ISR either has a lot of processing to do, or needs to perform + * processing that is not deterministic. In these cases + * xTimerPendFunctionCallFromISR() can be used to defer processing of a function + * to the RTOS daemon task. + * + * A mechanism is provided that allows the interrupt to return directly to the + * task that will subsequently execute the pended callback function. This + * allows the callback function to execute contiguously in time with the + * interrupt - just as if the callback had executed in the interrupt itself. + * + * @param xFunctionToPend The function to execute from the timer service/ + * daemon task. The function must conform to the PendedFunction_t + * prototype. + * + * @param pvParameter1 The value of the callback function's first parameter. + * The parameter has a void * type to allow it to be used to pass any type. + * For example, unsigned longs can be cast to a void *, or the void * can be + * used to point to a structure. + * + * @param ulParameter2 The value of the callback function's second parameter. + * + * @param pxHigherPriorityTaskWoken As mentioned above, calling this function + * will result in a message being sent to the timer daemon task. If the + * priority of the timer daemon task (which is set using + * configTIMER_TASK_PRIORITY in FreeRTOSConfig.h) is higher than the priority of + * the currently running task (the task the interrupt interrupted) then + * *pxHigherPriorityTaskWoken will be set to pdTRUE within + * xTimerPendFunctionCallFromISR(), indicating that a context switch should be + * requested before the interrupt exits. For that reason + * *pxHigherPriorityTaskWoken must be initialised to pdFALSE. See the + * example code below. + * + * @return pdPASS is returned if the message was successfully sent to the + * timer daemon task, otherwise pdFALSE is returned. + * + * Example usage: + * @verbatim + * + * // The callback function that will execute in the context of the daemon task. + * // Note callback functions must all use this same prototype. + * void vProcessInterface( void *pvParameter1, uint32_t ulParameter2 ) + * { + * BaseType_t xInterfaceToService; + * + * // The interface that requires servicing is passed in the second + * // parameter. The first parameter is not used in this case. + * xInterfaceToService = ( BaseType_t ) ulParameter2; + * + * // ...Perform the processing here... + * } + * + * // An ISR that receives data packets from multiple interfaces + * void vAnISR( void ) + * { + * BaseType_t xInterfaceToService, xHigherPriorityTaskWoken; + * + * // Query the hardware to determine which interface needs processing. + * xInterfaceToService = prvCheckInterfaces(); + * + * // The actual processing is to be deferred to a task. Request the + * // vProcessInterface() callback function is executed, passing in the + * // number of the interface that needs processing. The interface to + * // service is passed in the second parameter. The first parameter is + * // not used in this case. + * xHigherPriorityTaskWoken = pdFALSE; + * xTimerPendFunctionCallFromISR( vProcessInterface, NULL, ( uint32_t ) xInterfaceToService, &xHigherPriorityTaskWoken ); + * + * // If xHigherPriorityTaskWoken is now set to pdTRUE then a context + * // switch should be requested. The macro used is port specific and will + * // be either portYIELD_FROM_ISR() or portEND_SWITCHING_ISR() - refer to + * // the documentation page for the port being used. + * portYIELD_FROM_ISR( xHigherPriorityTaskWoken ); + * + * } + * @endverbatim + */ +BaseType_t xTimerPendFunctionCallFromISR( PendedFunction_t xFunctionToPend, void *pvParameter1, uint32_t ulParameter2, BaseType_t *pxHigherPriorityTaskWoken ) PRIVILEGED_FUNCTION; + + /** + * BaseType_t xTimerPendFunctionCall( PendedFunction_t xFunctionToPend, + * void *pvParameter1, + * uint32_t ulParameter2, + * TickType_t xTicksToWait ); + * + * + * Used to defer the execution of a function to the RTOS daemon task (the timer + * service task, hence this function is implemented in timers.c and is prefixed + * with 'Timer'). + * + * @param xFunctionToPend The function to execute from the timer service/ + * daemon task. The function must conform to the PendedFunction_t + * prototype. + * + * @param pvParameter1 The value of the callback function's first parameter. + * The parameter has a void * type to allow it to be used to pass any type. + * For example, unsigned longs can be cast to a void *, or the void * can be + * used to point to a structure. + * + * @param ulParameter2 The value of the callback function's second parameter. + * + * @param xTicksToWait Calling this function will result in a message being + * sent to the timer daemon task on a queue. xTicksToWait is the amount of + * time the calling task should remain in the Blocked state (so not using any + * processing time) for space to become available on the timer queue if the + * queue is found to be full. + * + * @return pdPASS is returned if the message was successfully sent to the + * timer daemon task, otherwise pdFALSE is returned. + * + */ +BaseType_t xTimerPendFunctionCall( PendedFunction_t xFunctionToPend, void *pvParameter1, uint32_t ulParameter2, TickType_t xTicksToWait ) PRIVILEGED_FUNCTION; + +/** + * const char * const pcTimerGetName( TimerHandle_t xTimer ); + * + * Returns the name that was assigned to a timer when the timer was created. + * + * @param xTimer The handle of the timer being queried. + * + * @return The name assigned to the timer specified by the xTimer parameter. + */ +const char * pcTimerGetName( TimerHandle_t xTimer ) PRIVILEGED_FUNCTION; /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + +/** + * void vTimerSetReloadMode( TimerHandle_t xTimer, const UBaseType_t uxAutoReload ); + * + * Updates a timer to be either an auto-reload timer, in which case the timer + * automatically resets itself each time it expires, or a one-shot timer, in + * which case the timer will only expire once unless it is manually restarted. + * + * @param xTimer The handle of the timer being updated. + * + * @param uxAutoReload If uxAutoReload is set to pdTRUE then the timer will + * expire repeatedly with a frequency set by the timer's period (see the + * xTimerPeriodInTicks parameter of the xTimerCreate() API function). If + * uxAutoReload is set to pdFALSE then the timer will be a one-shot timer and + * enter the dormant state after it expires. + */ +void vTimerSetReloadMode( TimerHandle_t xTimer, const UBaseType_t uxAutoReload ) PRIVILEGED_FUNCTION; + +/** +* UBaseType_t uxTimerGetReloadMode( TimerHandle_t xTimer ); +* +* Queries a timer to determine if it is an auto-reload timer, in which case the timer +* automatically resets itself each time it expires, or a one-shot timer, in +* which case the timer will only expire once unless it is manually restarted. +* +* @param xTimer The handle of the timer being queried. +* +* @return If the timer is an auto-reload timer then pdTRUE is returned, otherwise +* pdFALSE is returned. +*/ +UBaseType_t uxTimerGetReloadMode( TimerHandle_t xTimer ) PRIVILEGED_FUNCTION; + +/** + * TickType_t xTimerGetPeriod( TimerHandle_t xTimer ); + * + * Returns the period of a timer. + * + * @param xTimer The handle of the timer being queried. + * + * @return The period of the timer in ticks. + */ +TickType_t xTimerGetPeriod( TimerHandle_t xTimer ) PRIVILEGED_FUNCTION; + +/** +* TickType_t xTimerGetExpiryTime( TimerHandle_t xTimer ); +* +* Returns the time in ticks at which the timer will expire. If this is less +* than the current tick count then the expiry time has overflowed from the +* current time. +* +* @param xTimer The handle of the timer being queried. +* +* @return If the timer is running then the time in ticks at which the timer +* will next expire is returned. If the timer is not running then the return +* value is undefined. +*/ +TickType_t xTimerGetExpiryTime( TimerHandle_t xTimer ) PRIVILEGED_FUNCTION; + +/* + * Functions beyond this part are not part of the public API and are intended + * for use by the kernel only. + */ +BaseType_t xTimerCreateTimerTask( void ) PRIVILEGED_FUNCTION; +BaseType_t xTimerGenericCommand( TimerHandle_t xTimer, const BaseType_t xCommandID, const TickType_t xOptionalValue, BaseType_t * const pxHigherPriorityTaskWoken, const TickType_t xTicksToWait ) PRIVILEGED_FUNCTION; + +#if( configUSE_TRACE_FACILITY == 1 ) + void vTimerSetTimerNumber( TimerHandle_t xTimer, UBaseType_t uxTimerNumber ) PRIVILEGED_FUNCTION; + UBaseType_t uxTimerGetTimerNumber( TimerHandle_t xTimer ) PRIVILEGED_FUNCTION; +#endif + +#ifdef __cplusplus +} +#endif +#endif /* TIMERS_H */ + + + diff --git a/rtos/freertos/abstraction_layer_freertos/scr/History.txt b/rtos/freertos/abstraction_layer_freertos/scr/History.txt new file mode 100644 index 00000000..f7a54557 --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/scr/History.txt @@ -0,0 +1,2745 @@ +Documentation and download available at http://www.FreeRTOS.org/ + +Changes between FreeRTOS V10.2.1 and FreeRTOS V10.3.0 released February 7 2020 + + See http://www.FreeRTOS.org/FreeRTOS-V10.3.x.html + + New and updated kernel ports: + + + Added RISC-V port for the IAR compiler. + + Update the Windows simulator port to use a synchronous object to prevent + a user reported error whereby a task continues to run for a short time + after being moved to the Blocked state. Note we were not able to + replicate the reported issue and it likely depends on your CPU model. + + Correct alignment of stack top in RISC-V port when + configISR_STACK_SIZE_WORDS is defined to a non zero value, which causes + the interrupt stack to be statically allocated. + + The RISC-V machine timer compare register can now be for any HART, whereas + previously it was always assumed FreeRTOS was running on HART 0. + + Update the sequence used to update the 64-bit machine timer + compare register on 32-bit cores to match that suggested in RISC-V + documentation. + + Added tickless low power modes into the ARM, IAR and GCC Cortex-M0 compiler + ports. + + Updated the behaviour of the ARMv7-M MPU (Memory Protection Unit) ports to + match that of the ARMv8-M ports whereby privilege escalations can only + originate from within the kernel's own memory segment. Added + configENFORCE_SYSTEM_CALLS_FROM_KERNEL_ONLY configuration constant. + + Update existing MPU ports to correctly disable the MPU before it is + updated. + + Added contributed port and demo application for a T-Head (formally C-SKY) + microcontroller. + + New API functions: + + + Added the vPortGetHeapStats() API function which returns information on + the heap_4 and heap_5 state. + + Added xTaskCatchUpTicks(), which corrects the tick count value after the + application code has held interrupts disabled for an extended period. + + Added xTaskNotifyValueClear() API function. + + Added uxTimerGetReloadMode() API function. + + Other miscellaneous changes: + + Change type of uxPendedTicks from UBaseType_t to TickType_t to ensure it + has the same type as variables with which it is compared to, and therefore + also renamed the variable xPendingTicks. + + Update Keil projects that use the MPU so memory regions come from linker + script (scatter file) variables instead of being hard coded. + + Added LPC51U68 Cortex-M0+ demos for GCC (MCUXpresso), Keil and IAR + compilers. + + Added CORTEX_MPU_STM32L4_Discovery_Keil_STM32Cube demo. + + Added LPC54018 MPU demo. + + Rename xTaskGetIdleRunTimeCounter() to ulTaskGetIdleRunTimeCounter(). + + +Changes between FreeRTOS V10.2.1 and FreeRTOS V10.2.0 released May 13 2019: + + + Added ARM Cortex-M23 port layer to complement the pre-existing ARM + Cortex-M33 port layer. + + The RISC-V port now automatically switches between 32-bit and 64-bit + cores. + + Introduced the portMEMORY_BARRIER macro to prevent instruction re-ordering + when GCC link time optimisation is used. + + Introduced the portDONT_DISCARD macro to the ARMv8-M ports to try and + prevent the secure side builds from removing symbols required by the + non secure side build. + + Introduced the portARCH_NAME to provide additional data to select semi- + automated build environments. + + Cortex-M33 and Cortex-M23 ports now correctly disable the MPU before + updating the MPU registers. + + + Added Nuvoton NuMaker-PFM-M2351 ARM Cortex-M23 demo. + + Added LPC55S69 ARM Cortex-M33 demo. + + Added an STM32 dual core AMP stress test demo. + + +Changes between FreeRTOS V10.1.1 and FreeRTOS V10.2.0 released February 25 2019: + + + Added GCC RISC-V MCU port with three separate demo applications. + + Included pre-existing ARM Cortex-M33 (ARMv8-M) GCC/ARMclang and IAR ports + with Keil simulator demo. + + Update the method used to detect if a timer is active. Previously the + timer was deemed to be inactive if it was not referenced from a list. + However, when a timer is updated it is temporarily removed from, then + re-added to a list, so now the timer's active status is stored separately. + + Add vTimerSetReloadMode(), xTaskGetIdleRunTimeCounter(), and + xTaskGetApplicationTaskTagFromISR() API functions. + + Updated third party Xtensa port so it is MIT licensed. + + Added configINCLUDE_PLATFORM_H_INSTEAD_OF_IODEFINE_H to the Renesas + compiler RX600v2 port to enable switching between platform.h and + iodefine.h includes within that port's port.c file. + + Removed the 'FromISR' functions from the MPU ports as ISRs run privileged + anyway. + + Added uxTaskGetStackHighWaterMark2() function to enable the return type to + be changed without breaking backward compatibility. + uxTaskGetStackHighWaterMark() returns a UBaseType_t as always, + uxTaskGetStackHighWaterMark2() returns configSTACK_DEPTH_TYPE to allow the + user to determine the return type. + + Fixed issues in memory protected ports related to different combinations + of static memory only and dynamic memory only builds. As a result the + definition of tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE became more + complex and was moved to FreeRTOS.h with a table explaining its definition. + + Added a 'get task tag from ISR' function. + + Change the method used to determine if a timer is active or not from just + seeing if it is referenced from the active timer list to storing its + active state explicitly. The change prevents the timer reporting that it + is inactive while it is being moved from one list to another. + + The pcName parameter passed into the task create functions can be NULL, + previously a name had to be provided. + + When using tickless idle, prvResetNextTaskUnblockTime() is now only called + in xTaskRemoveFromEventList() if the scheduler is not suspended. + + Introduced portHAS_STACK_OVERFLOW_CHECKING, which should be set to 1 for + FreeRTOS ports that run on architectures that have stack limit registers. + + +Changes between FreeRTOS V10.1.0 and FreeRTOS V10.1.1 released 7 September 2018 + + + Reverted a few structure name changes that broke several kernel aware + debugger plug-ins. + + Updated to the latest trace recorder code. + + Fixed some formatting in the FreeRTOS+TCP TCP/IP stack code. + + Reverted moving some variables from file to function scope as doing so + broke debug scenarios that require the static qualifier to be removed. + +Changes between FreeRTOS V10.0.1 and FreeRTOS V10.1.0 released 22 August 2018 + + FreeRTOS Kernel Changes: + + + Update lint checked MISRA compliance to use the latest MISRA standard, was + previously using the original MISRA standard. + + Updated all object handles (TaskHandle_t, QueueHandle_t, etc.) to be + unique types instead of void pointers, improving type safety. (this was + attempted some years back but had to be backed out due to bugs in some + debuggers). Note this required the pvContainer member of a ListItem_t + struct to be renamed - set configENABLE_BACKWARD_COMPATIBILITY to 1 if + this causes an issue. + + Added configUSE_POSIX_ERRNO to enable per task POSIX style errno + functionality in a more user friendly way - previously the generic thread + local storage feature was used for this purpose. + + Added Xtensa port and demo application for the XCC compiler. + + Changed the implementation of vPortEndScheduler() for the Win32 port to + simply call exit( 0 ). + + Bug fix in vPortEnableInterrupt() for the GCC Microblaze port to protect + the read modify write access to an internal Microblaze register. + + Fix minor niggles when the MPU is used with regards to prototype + differences, static struct size differences, etc. + + The usStackHighWaterMark member of the TaskStatus_t structure now has type + configSTACK_DEPTH_TYPE in place of uint16_t - that change should have been + made when the configSTACK_DEPTH_TYPE type (which gets around the previous + 16-bit limit on stack size specifications) was introduced. + + Added the xMessageBufferNextLengthBytes() API function and likewise stream + buffer equivalent. + + Introduce configMESSAGE_BUFFER_LENGTH_TYPE to allow the number of bytes + used to hold the length of a message in the message buffer to be reduced. + configMESSAGE_BUFFER_LENGTH_TYPE default to size_t, but if, for example, + messages can never be more than 255 bytes it could be set to uint8_t, + saving 3 bytes each time a message is written into the message buffer + (assuming sizeof( size_t ) is 4). + + Updated the StaticTimer_t structure to ensure it matches the size of the + Timer_t structure when the size of TaskFunction_t does not equal the size + of void *. + + Update various Xilinx demos to use 2018.1 version of the SDK tools. + + Various updates to demo tasks to maintain test coverage. + + FreeRTOS+UDP was removed in FreeRTOS V10.1.0 as it was replaced by + FreeRTOS+TCP, which was brought into the main download in FreeRTOS + V10.0.0. FreeRTOS+TCP can be configured as a UDP only stack, and + FreeRTOS+UDP does not contain the patches applied to FreeRTOS+TCP. + + FreeRTOS+TCP Changes: + + + Multiple security improvements and fixes in packet parsing routines, DNS + caching, and TCP sequence number and ID generation. + + Disable NBNS and LLMNR by default. + + Add TCP hang protection by default. + + We thank Ori Karliner of Zimperium zLabs Team for reporting these issues. + + +Changes between FreeRTOS V10.0.0 and FreeRTOS V10.0.1, released December 20 2017 + + + Fix position of "#if defined( __cplusplus )" in stream_buffer.h. + + Correct declarations of MPU_xQueuePeek() and MPU_xQueueSemaphoreTake() in + mpu_prototypes.h. + + Correct formatting in vTaskList() helper function when it prints the state + of the currently executing task. + + Introduce #error if stream_buffer.c is built without + configUSE_TASK_NOTIFICATIONS set to 1. + + Update FreeRTOS+TCP to V2.0.0 + - Improve the formatting of text that displays the available netword + interfaces when FreeRTOS+TCP is used on Windows with WinPCap. + - Introduce ipconfigSOCKET_HAS_USER_WAKE_CALLBACK option to enable a user + definable callback to execute when data arrives on a socket. + +Changes between FreeRTOS V9.0.1 and FreeRTOS V10.0.0: + + The FreeRTOS kernel is now MIT licensed: https://www.FreeRTOS.org/license + + New Features and components: + + + Stream Buffers - see http://www.FreeRTOS.org/RTOS-stream-buffer-example.html + + Message Buffers - see http://www.FreeRTOS.org//RTOS-message-buffer-example.html + + Move FreeRTOS+TCP into the main repository, along with the basic Win32 + TCP demo FreeRTOS_Plus_TCP_Minimal_Windows_Simulator. + + New ports or demos: + + + Added demo for TI SimpleLink CC3220 MCU. + + Added MPU and non MPU projects for Microchip CEC and MEC 17xx and 51xx + MCUs. + + Added CORTEX_MPU_Static_Simulator_Keil_GCC demo to test static allocation + in the MPU port. + + Fixes or enhancements: + + + Cortex-M ports push additional register prior to calling + vTaskSwitchContext to ensure 8-byte alignment is maintained. Only + important if a user defined tick hook function performs an operation that + requires 8-byte alignment. + + Optimisations to the implementation of the standard tickless idle mode on + Cortex-M devices. + + Improvements to the Win32 port including using higher priority threads. + + Ensure interrupt stack alignment on PIC32 ports. + + Updated GCC TriCore port to build with later compiler versions. + + Update mpu_wrappers.c to support static allocation. + + The uxNumberOfItems member of List_t is now volatile - solving an issue + when the IAR compiler was used with maximum optimization. + + Introduced configRECORD_STACK_HIGH_ADDRESS. When set to 1 the stack start + address is saved into each task's TCB (assuming stack grows down). + + Introduced configINCLUDE_FREERTOS_TASK_C_ADDITIONS_H to allow user defined + functionality, and user defined initialisation, to be added to FreeRTOS's + tasks.c source file. When configINCLUDE_FREERTOS_TASK_C_ADDITIONS_H is + set to 1 a user provided header file called freertos_task_c_additions.h + will be included at the bottom of tasks.c. Functions defined in that + header file can call freertos_tasks_c_additions_init(), which in turn + calls a macro called FREERTOS_TASKS_C_ADDITIONS_INIT(), if it is defined. + FREERTOS_TASKS_C_ADDITIONS_INIT() can be defined in FreeRTOSConfig.h. + + Introduced configPRE_SUPPRESS_TICKS_AND_SLEEP_PROCESSING( x ) which can be + defined by a user in FreeRTOSConfig.h. The macro is called before + assessing whether to enter tickless idle mode or not. If the macro sets + x to zero then tickless idle mode will not be entered. This allows users + to abort tickless idle mode entry before the tickless idle function is + even called - previously it was only possible to abort from within the + tickless idle function itself. + + Added configPRINTF(), which can be defined by users to allow all libraries + to use the same print formatter. + + Introduced configMAX() and configMIN() macros which default to standard + max( x, y ) and min( x, y ) macro behaviour, but can be overridden if the + application writer defines the same macros in FreeRTOSConfig.h. + + Corrected the definition of StaticTask_t in the case where + INCLUDE_xTaskAbortDelay is set to 1. + + Introduced configTIMER_SERVICE_TASK_NAME and configIDLE_TASK_NAME, both of + which can be defined to strings in FreeRTOSConfig.h to change the default + names of the timer service and idle tasks respectively. + + Only fill the stack of a newly created task with a known value if stack + checking, or high water mark checking/viewing, is in use - removing the + dependency on memset() in other cases. + + Introduced xTaskCreateRestrictedStatic() so static allocation can be used + with the MPU. + + Ensure suspended tasks cannot be unsuspended by a received task + notification. + + Fix race condition in vTaskSetTimeOutState(). + + Updated trace recorder files to the latest version. + +Changes since FreeRTOS V9.0.0: + + + Priority dis-inheritance behaviour has been enhanced in the case where a + task that attempted to take a mutex that was held by a lower priority task + timed out before it was able to obtain the mutex (causing the task that + holds the mutex to have its priority raised, then lowered again, in + accordance with the priority inheritance protocol). + + Split the overloaded xQueueGenericReceive() function into three separate + dedicated functions. + + Allow the default human readable text names given to the Idle and Timer + tasks to be overridden by defining the configIDLE_TASK_NAME and + configTIMER_SERVICE_TASK_NAME definitions respectively in FreeRTOSConfig.h. + + Introduced configINITIAL_TICK_COUNT to allow the tick count to take a + value of than than 0 when the system boots. This can be useful for + testing purposes - although setting configUSE_16_BIT_TICKS to 1 can also + be used to test frequent tick overflows. + + Ensure the Cortex-M SysTick count is cleared to zero before starting the + first task. + + Add configASSERT() into ARM Cortex-M ports to check the number of priority + bit settings. + + Clear the 'control' register before starting ARM Cortex-M4F ports in case + the FPU is used before the scheduler is started. This just saves a few + bytes on the main stack as it prevents space being left for a later save + of FPU registers. + + Added xSemaphoreGetMutexHolderFromISR(). + + Corrected use of portNVIC_PENDSVSET to portNVIC_PENDSVSET_BIT in MPU ports. + + Introduced configSTACK_DEPTH_TYPE to allow users to change the type used + to specify the stack size when using xTaskCreate(). For historic reasons, + when FreeRTOS was only used on small MCUs, the type was set to uint16_t, + but that can be too restrictive when FreeRTOS is used on larger + processors. configSTACK_DEPTH_TYPE defaults to uint16_t. + xTaskCreateStatic(), being a newer function, used a uint32_t. + + Increase the priority of the Windows threads used by the Win32 port. As + all the threads run on the same core, and the threads run with very high + priority, there is a risk that the host will become unresponsive, so also + prevent the Windows port executing on single core hosts. + +Changes between FreeRTOS V9.0.0 and FreeRTOS V9.0.0rc2 released May 25 2016: + + See http://www.FreeRTOS.org/FreeRTOS-V9.html + + RTOS kernel updates: + + + The prototype of the new xTaskCreateStatic() API function was modified to + remove a parameter and improve compatibility with other new + "CreateStatic()" API functions. The stack size parameter in + xTaskCreateStatic() is now uint32_t, which changes the prototype of the + callback functions. See the following URL: + http://www.freertos.org/xTaskCreateStatic.html + + GCC ARM Cortex-A port: Introduced the configUSE_TASK_FPU_SUPPORT + constant. When configUSE_TASK_FPU_SUPPORT is set to 2 every task is + automatically given a floating point (FPU) context. + + GCC ARM Cortex-A port: It is now possible to automatically save and + restore all floating point (FPU) registers on entry to each potentially + nested interrupt by defining vApplicationFPUSafeIRQHandler() instead of + vApplicationIRQHandler(). + + All ARM Cortex-M3/4F/7 ports: Clear the least significant bit of the task + entry address placed onto the stack of a task when the task is created for + strict compliance with the ARM Cortex-M3/4/7 architecture documentation + (no noticeable effect unless using the QMEU emulator). + + Added GCC and Keil ARM Cortex-M4F MPU ports - previously the MPU was only + supported on ARM Cortex-M3. + + ARM Cortex-M3/4F MPU ports: Update to fully support the FreeRTOS V9.0.0 + API (other than static object creation) and added the + FreeRTOS/Demo/CORTEX_MPU_Simulator_Keil_GCC demo application to + demonstrate how to use the updated MPU port. + + All ARM Cortex-M3/4F/7 ports: Add additional barrier instructions to the + default low power tickless implementation. + + All ARM Cortex-M0 ports: Prevent an item being left on the stack of the + first task that executes. + + Win32 ports: Reduce the amount of stack used and change the way Windows + threads are deleted to increase the maximum execution time. + + Add an ARM Cortex-M4F port for the MikroC compiler. Ensure to read the + documentation page for this port before use. + + MPS430X IAR port: Update to be compatible with the latest EW430 tools + release. + + IAR32 GCC port: Correct vPortExitCritical() when + configMAX_API_CALL_INTERRUPT_PRIORITY == portMAX_PRIORITY. + + For consistency vTaskGetTaskInfo() now has the alias vTaskGetInfo(), + xTaskGetTaskHandle() now has the alias xTaskGetHandle() and + pcQueueGetQueueName() now has an alias pcQueueGetName(). + + Fix various errors in comments and compiler warnings. + + Demo application updates: + + + Update Atmel Studio projects to use Atmel Studio 7. + + Update Xilinx SDK projects to use the 2016.1 version of the SDK. + + Remove dependency on legacy IO libraries from the PIC32 demos. + + Move the Xilinx UltraScale Cortex-R5 demo into the main distribution. + + Update the MSP432 libraries to the latest version. + + Add Microchip CEC1302 (ARM Cortex-M4F) demos for GCC, Keil and MikroC + compilers. + + Move the Atmel SAMA5D2 demo into the main distribution. + +Changes between FreeRTOS V9.0.0rc1 and FreeRTOS V9.0.0rc2 (release candidate 2) +released March 30 2016: + + NOTE - See http://www.FreeRTOS.org/FreeRTOS-V9.html for details + + + The functions that create RTOS objects using static memory allocation have + been simplified and will not revert to using dynamic allocation if a + buffer is passed into a function as NULL. + + Introduced the configSUPPORT_DYNAMIC_ALLOCATION configuration constant to + allow a FreeRTOS application to be built without a heap even being being + defined. The Win32 example located in the + /FreeRTOS/demo/WIN32-MSVC-Static-Allocation-Only directory is provided as + a reference for projects that do not include a FreeRTOS heap. + + Minor run-time optimisations. + + Two new low power tickless implementations that target Silicon Labs EFM32 + microcontrollers. + + Addition of the xTimerGetPeriod() and xTimerGetExpireTime() API functions. + +Changes between FreeRTOS V8.2.3 and FreeRTOS V9.0.0rc1 (release candidate 1) +released February 19 2016: + + RTOS Kernel Updates: + + + Major new feature - tasks, semaphores, queues, timers and event groups can + now be created using statically allocated memory, so without any calls to + pvPortMalloc(). + + Major new features - Added the xTaskAbortDelay() API function which allows + one task to force another task to immediately leave the Blocked state, + even if the event the blocked task is waiting for has not occurred, or the + blocked task's timeout has not expired. + + Updates necessary to allow FreeRTOS to run on 64-bit architectures. + + Added vApplicationDaemonTaskStartupHook() which executes when the RTOS + daemon task (which used to be called the timer service task) starts + running. This is useful if the application includes initialisation code + that would benefit from executing after the scheduler has been started. + + Added the xTaskGetTaskHandle() API function, which obtains a task handle + from the task's name. xTaskGetTaskHandle() uses multiple string compare + operations, so it is recommended that it is called only once per task. + The handle returned by xTaskGetTaskHandle() can then be stored locally for + later re-use. + + Added the pcQueueGetQueueName() API function, which obtains the name of + a queue from the queue's handle. + + Tickless idling (for low power applications) can now also be used when + configUSE_PREEMPTION is 0. + + If one task deletes another task, then the stack and TCB of the deleted + task is now freed immediately. If a task deletes itself, then the stack + and TCB of the deleted task are freed by the Idle task as before. + + If a task notification is used to unblock a task from an ISR, but the + xHigherPriorityTaskWoken parameter is not used, then pend a context switch + that will then occur during the next tick interrupt. + + Heap_1.c and Heap_2.c now use the configAPPLICATION_ALLOCATED_HEAP + settings, which previously was only used by heap_4.c. + configAPPLICATION_ALLOCATED_HEAP allows the application writer to declare + the array that will be used as the FreeRTOS heap, and in-so-doing, place + the heap at a specific memory location. + + TaskStatus_t structures are used to obtain details of a task. + TaskStatus_t now includes the bae address of the task's stack. + + Added the vTaskGetTaskInfo() API function, which returns a TaskStatus_t + structure that contains information about a single task. Previously this + information could only be obtained for all the tasks at once, as an array + of TaskStatus_t structures. + + Added the uxSemaphoreGetCount() API function. + + Replicate previous Cortex-M4F and Cortex-M7 optimisations in some + Cortex-M3 port layers. + + Demo Application Updates: + + Further demo applications will be added prior to the final FreeRTOS V9 + release. + + + Updated SAM4L Atmel Studio project to use Atmel Studio 7. + + Added ARM Cortex-A53 64-bit port. + + Added a port and demo for the ARM Cortex-A53 64-bit cores on the Xilinx + Ultrascale MPSoC. + + Added Cortex-M7 SAME70 GCC demo. + + Added EFM32 Giant and Wonder Gecko demos. + + +Changes between V8.2.2 and V8.2.3 released October 16, 2015 + + RTOS kernel updates: + + + Fix bug identified in a modification made in V8.2.2 to the software timer + code that allows tickless low power applications to sleep indefinitely + when software timers are used. + + Simplify and improve efficiency of stack overflow checking. + + Add xTaskNotifyStateClear() API function. + + New IAR and GCC Cortex-R ports for microprocessors that do not use an ARM + generic interrupt controller (GIC). + + New PIC32MEC14xx port. + + Add support for PIC32MZ EF parts (with floating point) into the PIC32MZ + port. + + Zynq7000 port layer now declares the functions that setup and clear the + tick interrupt as weak symbols so they can be overridden by the + application, and uses a global XScuGic object so the same object can be + used by the application code. + + Introduced configUSE_TASK_FPU_SUPPORT, although the PIC32MZ EF port is + currently the only port that uses it. + + Updates to RL78 and 78K0 IAR port layers to improve support for + combinations of memory models. + + Minor updates to heap_5.c to remove compiler warnings generated by some + compilers. + + License simplifications. See /FreeRTOS/License/license.txt in the + official distribution. + + FreeRTOS+ updates: + + + Update directory names to use WolfSSL instead of CyaSSL, inline with + WolfSSL's re-branding. + + Update to latest WolfSSL code. + + Update to latest FreeRTOS+Trace recorder code. + + Add in the FreeRTOS+Trace recorder library required for streaming trace. + + Demo application changes: + + + Add demo applications for Renesas RZ/T (Cortex-R), PIC32MZ EF (PIC32 with + floating point hardware), PIC32MEC14xx, RX71M, RX113 and RX231. + + General tidy up of spelling and compiler warnings. + + +Changes between V8.2.1 and V8.2.2 released August 12, 2015 + + RTOS kernel updates: + + + Added Intel IA32/x86 32-bit port. + + General maintenance. + + PRIVILEGED_FUNCTION and PRIVILEGED_DATA macros, which are used in memory + protected systems, have been added to the newer event group and software + timer functions. + + Add the errno definitions used by FreeRTOS+ components into projdefs.h. + + Remove the restriction that prevented tick-less idle implementations + waiting indefinitely when software timers were used in the same + application. + + Introduce xTaskNotifyAndQueryFromISR() as the interrupt safe version of + xTaskNotifyAndQuery(). + + Add additional NOPs to the MSP430X port layers to ensure strict compliance + with the hardware documentation. + + Microblaze port: Added option for port optimised task selection. + + Microblaze port: Previously tasks inherited the exception enable state + at the time the task was created. Now all tasks are created with + exceptions enabled if the Microblaze design supports exceptions. + + Windows port: Add additional safe guards to ensure the correct start up + sequence and thread switching timing. + + Windows port: Improve the implementation of the port optimised task + selection assembly code. + + Update heap_4 and heap_5 to allow use on 64-bit processors. + + Simplify the code that creates a queue. + + General improved tick-less idle behaviour. + + Ensure none of the variables in the common kernel files are initialised to + anything other than zero. + + Correct calculation of xHeapStructSize in heap_4 and heap_5. + + Demo application updates: + + + Added demo project for the new IA32/x86 port that targets the Galileo + hardware. + + Added MSP430FR5969 demos (previously provided as a separate download). + + Added FreeRTOS BSP repository for automatic creation of FreeRTOS + applications in the Xilinx SDK. + + Added Atmel Studio / GCC project for the SAMV71 (ARM Cortex-M7) + + Update Xilinx SDK projects to use version 2015.2 of the SDK. + + Remove Microblaze demos that were using obsolete tools. + + Add MSP43FR5969 IAR and CCS demos. + + FreeRTOS+ Updates: + + + Updated FreeRTOS+Trace recorder library, which requires an update to the + FreeRTOS+Trace application. + + Added Reliance Edge source code and demo application. Reliance edge is + a fail safe transactional file system ideal for applications that require + file storage, and especially when high reliability is essential. + + Introduce configAPPLICATION_PROVIDES_cOutputBuffer to allow FreeRTOS+CLI + users to place the output buffer at a fixed memory address. + + Improve the NetworkInterface.c file provided for the Windows port of + FreeRTOS+UDP. + +Changes between V8.2.0 and V8.2.1 released 24th March 2015. + + RTOS kernel updates: + + + Added user definable and flexible thread local storage facility. + + Added vTimerSetTimerID() API function to complement the pvTimerGetTimerID() + function to allow the timer's ID to be used as timer local storage. + + Fixed a potential issue related to the use of queue sets from an ISR. + + Some updates to the Xilinx Microblaze GCC port. + + Added ARM Cortex-M4F port for Texas Instruments Code Composer Studio. + + Added ARM Cortex-M7 r0p1 port layer for IAR, GCC and Keil which contains a + minor errata work around. All other ARM Cortex-M7 core revisions should + use the ARM Cortex-M4F port. + + Exclude the whole of croutine.c if configUSE_CO_ROUTINES is set to 0. + + Change some data types from uint32_t to size_t in preparation for 64-bit + Windows port. + + Update the PIC32 port to remove deprecation warnings output by the latest + XC32 compilers. + + Fix bug when xQueueOverwrite() and xQueueOverwrite() from ISR are used to + overwrite items in two queues that are part of the same set. + + Demo application updates: + + + Added demo application for TI's ARM Cortex-M4F based MSP432 + microcontroller using IAR, Keil and CCS compilers. + + Added demo application for STM32F ARM Cortex-M7 based microcontroller + using IAR and Keil. + + Added demo application for Atmel SAMV71 ARM Cortex-M7 based + microcontroller using IAR and Keil. + + Added Microblaze demo that uses the 2014.4 version of the Xilinx SDK and + runs on the KC705 evaluation board (Kintex FPGA). + +Changes between V8.1.2 and V8.2.0 released 16th January 2015 + + Changes between release candidate 1 and the official release are restricted + to maintenance only. + + Significant RTOS kernel updates: + + + MAJOR NEW FEATURE! Task notifications. Please see the following URL for + details: http://www.FreeRTOS.org/RTOS-task-notifications.html + + NEW HEADER FILE REQUIRED! Obsolete definitions have been separated into + a new header file called FreeRTOS/Source/include/deprecated_definitions.h. + This header file must be present to build. Note some of the obsolete + definitions are still used by very old demo application projects. + + Other RTOS kernel updates: + + + Made xSemaphoreGiveFromISR() a function rather than a macro that calls + xQueueGenericSendFromISR(). This allows for major performance + enhancements at the expense of some additional code size if both functions + are used in the same application. NOTE: In most uses cases such use of + a semaphore can now be replaced with a task notification which is smaller + and faster still. + + The TCB is now always allocated such that the task's stack grows away from + the TCB (improves debugging of stack overflows as the overflow will not + overwrite the task's name). + + GCC, IAR and Keil Cortex-M4F ports now use more inlining (performance + enhancements at the cost of a little additional code space). + + Queues are now allocated with a single call to pvPortMalloc() which + allocates both the queue structure and the queue storage area. + + Introduced a new critical section macro for reading the tick count that + defines away to nothing in cases where the width of the tick allows the + tick count to be read atomically (performance benefits - especially when + optimisation is on). + + Introduced configAPPLICATION_ALLOCATED_HEAP in heap_4.c to allow the + application writer to provide their own heap array - and in so doing + control the location of the heap. + + Introduced configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES which, when set, will + include known values in both list and list item structures. The values + are intended to assist debugging. If the values get overwritten then it + is likely application code has written over RAM used by the kernel. + + configASSERT()s in all Cortex-M ports used to test the lowest 5 bits of + the interrupt control register to detect taskENTER_CRITICAL() being called + from an interrupt. This has been changed to test all 8 bits. + + Introduced uxTaskPriorityGetFromISR(). + + Microblze V8 port now tests XPAR_MICROBLAZE_0_USE_FPU for inequality to 0 + rather than equality to 1, and 2 and 3 are also valid values. + + Cortex-A5 GIC-less port no longer passes the address of the interrupting + peripheral into the interrupt handler. + + Fix an issue in FreeRTOS-MPU where an attempt was made to free the stack + belonging to a task when the task was deleted, even when the stack was + allocated statically. + + Utility (helper) functions that format task statistic information into + human readable tables now pad task names with spaces to ensure columns + line up correctly even where task name lengths vary greatly. + + Update FreeRTOS+Trace recorder library to version 2.7.0. + + Demo application updates: + + + Added two new standard demo task sets: IntSemTest and TaskNotify. + + Added port and demo application for Atmel SAMA5D4 Cortex-A5 MPU. + + Added demo application for Altera Cyclone V Cortex-A9 MPU. + + Updated Zynq demo to use version 2014.4 of Xilinx's SDK and added in + demo tasks for new RTOS features. + + Updated Atmel SAM4E and SAM4S demos to include a lot of additional test + and demo tasks. + + Fixed a corner case issue in Atmel SAM4L low power tickless + implementation, and added button interrupt handling. + + Make the interrupt queue tests more tolerant to heave CPU loads. + + Updated MSVC FreeRTOS simulator demo to include the latest standard test + and demo tasks. + + Updated MingW/Eclipse FreeRTOS simulator demo to match the FreeRTOS MSVC + simulator demo. + + Updated all demos that use FreeRTOS+Trace to work with the latest trace + recorder code. + + +Changes between V8.1.1 and V8.1.2 released September 2nd 2014 + + Move the defaulting of configUSE_PORT_OPTIMISED_TASK_SELECTION into the + individual port layers where necessary so it does not affect ports that do + not support the definition. + +Changes between V8.1.0 and V8.1.1 released August 29th 2014 + + By popular requests - a minor patch to V8.1.0 to re-instate the ability to + give a mutex type semaphore (with priority inheritance) from an interrupt + handler. + +Changes between V8.0.1 and V8.1.0 released August 26th 2014 + + FreeRTOS scheduler, kernel, demo and test updates: + + + Improved the priority inheritance algorithms to assist integration with + off the shelf middleware that may hold multiple mutexes simultaneously. + + Introduce heap_5.c, which is similar to heap_4.c but allows the heap to + span multiple non-contiguous memory regions. + + Updated all Cortex-A9 ports to help trap a couple of common usage errors - + the first being when a task incorrectly attempts to exit its implementing + function and the second being when a non interrupt safe API function is + called from an interrupt. + + Update all Cortex-A9 ports to remove obsolete mode switches prior to + restoring a task context. + + configUSE_PORT_OPTIMISED_TASK_SELECTION now defaults to 1 instead of 0. + + Update all Cortex-M3/4F ports to trap a non interrupt safe API function + being called from an interrupt handler. + + Simplify the alignment checks in heap_4.c. + + Update the MSVC Windows simulator demo to use heap_5.c in place of + heap_4.c to ensure end users have an example to refer to. + + Updated standard demo test code to test the new priority inheritance + algorithms. + + Updated the standard demo tasks to make use of stdint and the FreeRTOS + specific typedefs that were introduced in FreeRTOS V8.0.0. + + Introduce the pdMS_TO_TICKS() macro as a more user friendly and intuitive + alternative to pdTICKS_PER_MS - both of which can be used to convert a + time specified in milliseconds to a time specified in RTOS ticks. + + Fix a bug in the Tasking compiler's Cortex-M port that resulted in an + incorrect value being written to the basepri register. This only effects + users of the Tasking compiler. + + Update the Zynq demo to use version 2014.2 of the SDK and add in an lwIP + example that demonstrates lwIP being used with both its raw and sockets + interfaces. + + Updated the CCS Cortex-R4 port to enable it to be built with the latest + CCS compiler. + + New ports and demo applications: + + + Two Renesas RX64M ports (RXv2 core) and demos introduced, one for the GCC + compiler and one for the Renesas compiler. Both demos use e2 studio. + + Generic IAR Cortex-A5 port (without any reliance on a GIC) introduced. + The new port is demonstrated on an Atmel SAMA5D3 XPlained board. + + FreeRTOS+ component updates: + + + Update CyaSSL to the latest version. + + Updated the FreeRTOS+ components supplied directly by Real Time Engineers + Ltd. to make use of stdint and the FreeRTOS specific typedefs that were + introduced in FreeRTOS V8.0.0. + + Rework and simplify the FreeRTOS+FAT SL RAM disk driver. + + Miscellaneous updates and maintenance: + + + Update the IAR and DS-5/ARM RZ demos to target the official RZ RSK + hardware in place of the previously targeted Renesas internal (not + publicly available) hardware. + + Various other maintenance tasks. + + +Changes between V8.0.0 and V8.0.1 released 2nd May 2014 + + + Minor fixes to the event group functionality that was released in V8.0.0. + The 'clear bits from ISR' functionality is now implemented using a + deferred interrupt callback instead of a function, and the 'wait bits' and + 'task sync' functions now correctly clear internal control bits before + returning a value in every possible path through the respective functions. + + Ensure the updating of internal control data is protected by a critical + section after a task is deleted or suspended. + + Minor fixes to FreeRTOS+FAT SL - namely seeking beyond the end of a file + when the offset was not a multiple of the sector size. + + Ensure Cortex-A9 system registers are only ever accessed as 32-bit values, + even when only the lest significant byte of the register is implemented. + + Other updates: + + + Updated the XMC4200 IAR project so it links with version 7.x of the IAR + tools. + + Add RL78L1C demo. + + Add pcTimerGetName() API function. + + Call _reclaim_reent() when a task is deleted if configUSE_NEWLIB_REENTRANT + is defined. + +Changes between V7.6.0 and V8.0.0 released 19th Feb 2014 + + http://www.freertos.org/upgrading-to-FreeRTOS-V8.html + + FreeRTOS V8.x.x is a drop-in compatible replacement for FreeRTOS V7.x.x, + although a change to the type used to reference character strings may result + in application code generating a few (easily clearable) compiler warnings + after the upgrade, and an updated typedef naming convention means use of the + old typedef names is now discouraged. + See http://www.freertos.org/upgrading-to-FreeRTOS-V8.html for full + information. + + New features and functionality: + + + Event groups - see http://www.freertos.org/FreeRTOS-Event-Groups.html + + Centralised deferred interrupt processing - see + http://www.freertos.org/xTimerPendFunctionCallFromISR.html + + Other updates: + + + Previously, when a task left the Blocked state, a context switch was + performed if the priority of the unblocked task was greater than or equal + to the priority of the Running task. Now a context switch is only + performed if the priority of the unblocked task is greater than the + priority of the Running task. + + New low power tickless demonstration project that targets the ST STM32L + microcontroller - see + http://www.freertos.org/STM32L-discovery-low-power-tickless-RTOS-demo.html + + Add xPortGetMinimumEverFreeHeapSize() to heap_4.c. + + Small change to the tickless low power implementation on the SAM4L to + ensure the alarm value (compare match value) cannot be set to zero when a + tickless period is exited due to an interrupt originating from a source + other than the RTOS tick. + + Update the GCC/Eclipse Win32 simulator demo to make better use of Eclipse + resource filters and match the functionality of the MSVC equivalent. + + xTaskIsTaskSuspended() is no longer a public function. Use + eTaskGetState() in its place. + + Improved trace macros, including tracing of heap usage. + + Remove one level of indirection when accepting interrupts on the PIC32MZ. + + Add Cortex-A9 GCC port layer. + + Add Xilinx Zynq demo application. + + +Changes between V7.5.3 and V7.6.0 released 18th November 2013 + + V7.6.0 changes some behaviour when the co-operative scheduler is used (when + configUSE_PREEMPTION is set to 0). It is important to note that the + behaviour of the pre-emptive scheduler is unchanged - the following + description only applies when configUSE_PREEMPTION is set to 0: + + WHEN configUSE_PREEMPTION IS SET TO 0 (which is in a small minority of + cases) a context switch will now only occur when a task places itself into + the Blocked state, or explicitly calls taskYIELD(). This differs from + previous versions, where a context switch would also occur when implicitly + moving a higher priority task out of the Blocked state. For example, + previously, WHEN PREEMPTION WAS TURNED OFF, if task A unblocks task B by + writing to a queue, then the scheduler would switch to the higher priority + task. Now, WHEN PREEMPTION IS TURNED OFF, if task A unblocks task B by + writing to a queue, task B will not start running until task A enters the + Blocked state or task A calls taskYIELD(). [If configUSE_PREEMPTION is not + set to 0, so the normal pre-emptive scheduler is being used, then task B + will start running immediately that it is moved out of the Blocked state]. + + Other changes: + + + Added a port layer and a demo project for the new PIC32MZ architecture. + + Update the PIC32MX port layer to re-introduce some ehb instructions that + were previously removed, add the ability to catch interrupt stack + overflows (previously only task stack overflows were trapped), and also + add the ability to catch an application task incorrectly attempting to + return from its implementing function. + + Make dramatic improvements to the performance of the Win32 simulator port + layer. + + Ensure tasks that are blocked indefinitely report their state as Blocked + instead of Suspended. + + Slight improvement to the Cortex-M4F port layers where previously one + register was inadvertently being saved twice. + + Introduce the xSemaphoreCreateBinary() API function to ensure consistency + in the semantics of how each semaphore type is created. It is no longer + recommended to use vSemaphoreCreateBinary() (the version prefixed with a + 'v'), although it will remain in the code for backward compatibility. + + Update the Cortex-M0 port layers to allow the scheduler to be started + without using the SVC handler. + + Added a build configuration to the PIC32MX MPLAB X demo project that + targets the PIC32 USB II starter kit. Previously all the build + configurations required the Explorer 16 hardware. + + Some of the standard demo tasks have been updated to ensure they execute + correctly with the updated co-operative scheduling behaviour. + + Added comprehensive demo for the Atmel SAM4E, including use of + FreeRTOS+UDP, FreeRTOS+FAT SL and FreeRTOS+CLI. + + FreeRTOS+ Changes: + + + Minor maintenance on FreeRTOS+UDP. + +Changes between V7.5.2 and V7.5.3 released October 14 2013 + + Kernel changes: + + + Prior to V7.5.x yields requested from the tick hook would occur in the + same tick interrupt - revert to that original behaviour. + + New API function uxQueueSpacesAvailable(). + + Introduced the prvTaskExitError() function to Cortex-M0, Cortex-M3/4 + and Cortex-M4F ports. prvTaskExitError() is used to trap tasks that + attempt to return from their implementing functions (tasks should call + vTaskDelete( NULL ); if they want to exit). + + The Cortex-M0 version of portSET_INTERRUPT_MASK_FROM_ISR and + portCLEAR_INTERRUPT_MASK_FROM_ISR are now fully nestable. + + Improved behaviour and robustness of the default Cortex-M tickless idle + behaviour. + + Add workaround for silicon errata PMU_CM001 in Infineon XMC4000 devices to + all Cortex-M4F ports. + + Add Cortex-M0 port for Keil. + + Updated Cortus port. + + Ensure _impure_ptr is initialised before the scheduler is started. + Previously it was not set until the first context switch. + + FreeRTOS+ changes: + + + Update FreeRTOS+UDP to V1.0.1 - including direct integration of the + FreeRTOS+Nabto task, improvements to the DHCP behaviour, and a correction + to the test that prevents the network event hook being called on the first + network down event. The FreeRTOS+UDP change history is maintained + separately. + + Correct the __NVIC_PRIO_BITS setting in the LPC18xx.h header files + provided in the NXP CMSIS library, then update the interrupts used by the + LPC18xx demos accordingly. + + Replace double quotes (") with single quotes (') in FreeRTOS+CLI help + strings to ensure the strings can be used with the JSON descriptions used + in the FreeRTOS+Nabto demos. + + Demo and miscellaneous changes: + + + Added demo for the Atmel SAMD20 Cortex-M0+. The demo includes + FreeRTOS+CLI + + Added a demo for the Infineon Cortex-M0 that can be built with the IAR + Keil and GCC tools. + + Updated the Infineon XMC4000 demos for IAR, Keil, GCC and Tasking tools, + with additional build configurations to directly support the XMC4200 and + XMC4400 devices, in addition to the previously supported XMC4500. + + Updated the demo application. + + Added additional trace macros traceMALLOC and traceFREE to track heap + usage. + +Changes between V7.5.0 and V7.5.2 released July 24 2013 + + V7.5.2 makes the new Cortex-M vPortCheckInterruptPriority() function + compatible with the STM32 standard peripheral driver library, and adds + an extra critical section to the default low power tickless mode + implementation. Only users of the STM32 peripheral library or the default + tickless implementation need update from version 7.5.0. + +Changes between V7.4.2 and V7.5.0 released July 19 2013 + + V7.5.0 is a major upgrade that includes multiple scheduling and efficiency + improvements, and some new API functions. + + Compatibility information for FreeRTOS users: + FreeRTOS V7.5.0 is backward compatible with FreeRTOS V7.4.0 with one + exception; the vTaskList() and vTaskGetRunTimeStats() functions are now + considered legacy, having been replaced by the single uxTaskGetSystemState() + function. configUSE_STATS_FORMATTING_FUNCTIONS must be set to 1 in + FreeRTOSConfig.h for vTaskList() and vTaskGetRunTimeStats() to be + available. + + Compatibility information for FreeRTOS port writers: + vTaskIncrementTick() is now called xTaskIncrementTick() (because it now + returns a value). + + Headline changes: + + + Multiple scheduling and efficiency improvements. + + Core kernel files now pass PC-Lint V8 static checking without outputting + any warnings (information on the test conditions will follow). + + New API functions: + + + uxTaskGetSystemState() http://www.freertos.org/uxTaskGetSystemState.html + + xQueueOverwrite() http://www.freertos.org/xQueueOverwrite.html + + xQueueOverwriteFromISR() + + xQueuePeekFromISR() + + The following ports and demos, which were previously available separately, + are now incorporated into the main FreeRTOS zip file download: + + + ARM Cortex-A9 IAR + + ARM Cortex-A9 ARM compiler + + Renesas RZ + + Microsemi SmartFusion2 + + New FreeRTOSConfig.h settings + http://shop.freertos.org/FreeRTOS_API_and_Configuration_Reference_s/1822.htm + + + configUSE_TIME_SLICING + + configUSE_NEWLIB_REENTRANT + + configUSE_STATS_FORMATTING_FUNCTIONS + + configINCLUDE_APPLICATION_DEFINED_PRIVILEGED_FUNCTIONS + + Other changes: + + + (MPU port only) The configINCLUDE_APPLICATION_DEFINED_PRIVILEGED_FUNCTIONS + options provides a mechanism that allows application writers to execute + certain functions in privileged mode even when a task is running in user + mode. + + Ports that support interrupt nesting now include a configASSERT() that + will trigger if an interrupt safe FreeRTOS function is called from an + interrupt that has a priority designated as above the maximum system/API + call interrupt priority. + + The included FreeRTOS+Trace recorder code has been updated to the latest + version, and the demo applications that use the trace recorder code have + been updated accordingly. + + The FreeRTOS Windows Simulator (MSVC version only) has been updated to + include a new basic 'blinky' build option in addition to the original + comprehensive build option. + + Improve RAM usage efficiency of heap_4.c and heap_2.c. + + Prevent heap_4.c from attempting to free memory blocks that were not + allocated by heap_4.c, or have already been freed. + + As FreeRTOS now comes with FreeRTOS+FAT SL (donated by HCC) the Chan FATfs + files have been removed from FreeRTOS/Demo/Common. + + Fix build error when R4 port is build in co-operative mode. + + Multiple port and demo application maintenance activities. + +Changes between V7.4.1 and V7.4.2 released May 1 2013 + + NOTE: There are no changes in the FreeRTOS kernel between V7.4.1 and V7.4.2 + + + Added FreeRTOS+FAT SL source code and demo project. The demo project + runs in the FreeRTOS Windows simulator for easy and hardware independent + experimentation and evaluation. See http://www.FreeRTOS.org/fat_sl + +Changes between V7.4.0 and V7.4.1 released April 18 2013 + + + To ensure strict conformance with the spec and ensure compatibility with + future chips data and instruction barrier instructions have been added to + the yield macros of Cortex-M and Cortex-R port layers. For efficiency + the Cortex-M port layer "yield" and "yield" from ISR are now implemented + separately as the barrier instructions are not required in the ISR case. + + Added FreeRTOS+UDP into main download. + + Reorganised the FreeRTOS+ directory so it now matches the FreeRTOS + directory with Source and Demo subdirectories. + + Implemented the Berkeley sockets select() function in FreeRTOS+UDP. + + Changed (unsigned) casting in calls to standard library functions with + (size_t) casting. + + Added the Atmel SAM4L and Renesas RX100 demos that demonstrates the + tickless (tick suppression) low power FreeRTOS features. + + Add a new RL78 IAR demo that targets numerous new RL78 chips and + evaluation boards. + + Adjusted stack alignment on RX200 ports to ensure an assert was not + falsely triggered when configASSERT() is defined. + + Updated the Cortex_M4F_Infineon_XMC4500_IAR demo to build with the latest + version of EWARM. + + Corrected header comments in the het.c and het.h files (RM48/TMS570 demo). + + +Changes between V7.3.0 and V7.4.0 released February 20 2013 + + + New feature: Queue sets. See: + http://www.FreeRTOS.org/Pend-on-multiple-rtos-objects.html + + Overhauled the default tickless idle mode implementation provided with the + ARM Cortex-M3 port layers. + + Enhanced tickless support in the core kernel code with the introduction of + the configEXPECTED_IDLE_TIME_BEFORE_SLEEP macro and the + eTaskConfirmSleepModeStatus() function. + + Added the QueueSet.c common demo/test file. Several demo applications + have been updated to use the new demo/test tasks. + + Removed reliance on the PLIB libraries from the MPLAB PIC32 port layer and + demo applications. + + Added the FreeRTOS+Trace recorder code to the MSVC Win32 demo. + + Renamed eTaskStateGet() to eTaskGetState() for consistency, and added a + pre-processor macro for backward compatibility with the previous name. + + Updated functions implemented in the core queue.c source file to allow + queue.h to be included from the .c file directly (this prevents compiler + warnings that were generated by some compilers). + + Updated the CCS Cortex-R4 port layer to replace the CLZ assembler function + with the CLZ compiler intrinsic that is provided by the latest versions of + the CCS ARM compiler. + + Updated all heap_x.c implementations to replace the structure that was + used to ensure the start of the heap was aligned with a more portable + direct C code implementation. + + Added support for PIC24 devices that include EDS. + + Minor optimisations to the PIC32 port layer. + + Minor changes to tasks.c that allow the state viewer plug-ins to display + additional information. + + Bug fix: Update prvProcessReceivedCommands() in timers.c to remove an + issue that could occur if the priority of the timer daemon task was set + below the priority of tasks that used timer services. + + Update the FreeRTOS+Trace recorder code to the latest version. + +Changes between V7.2.0 and V7.3.0 released October 31 2012 + + + Added ability to override the default scheduler task selection mechanism + with implementations that make use of architecture specific instructions. + + Added ability to suppress tick interrupts during idle time, and in so + doing, provide the ability to make use of architecture specific low power + functionality. + + Added the portSUPPRESS_TICKS_AND_SLEEP() macro and vTaskStepTick() helper + function. + + Added the configSYSTICK_CLOCK_HZ configuration constant. + + Reworked the Cortex-M3 and Cortex-M4F port layers for GCC, Keil and IAR to + directly support basic power saving functionality. + + Added hooks to allow basic power saving to be augmented in the application + by making use of chip specific functionality. + + Minor change to allow mutex type semaphores to be used from interrupts + (which would not be a normal usage model for a mutex). + + Change the behaviour of the interrupt safe interrupt mask save and restore + macros in the Cortex-M ports. The save macro now returns the previous + mask value. The restore macro now uses the previous mask value. These + changes are not necessary for the kernel's own implementation, and are + made purely because the macros were being used by application writers. + + Added eTaskStateGet() API function. + + Added port specific optimisations to the PIC32 port layer, and updated the + PIC32 demo applications to make use of this new feature. + + Added port specific optimisations to the Win32 simulator port. + + Added new ports and demo applications for the TI Hercules RM48 and TMS570 + safety microcontrollers. + + Added SAM3 demos targeting the ATSAM3S-EK2 and ATSAM3X-EK evaluation + boards. + + Updated the PIC32 MPLAB X project to manually set the compiler include + paths instead of using the IDE entry box following reports that the + include paths were somehow being deleted. + + Improved character handling in FreeRTOS+CLI. + +Changes between V7.1.1 and V7.2.0 released 14 August 2012 + + FreeRTOS V7.2.0 is backward compatible with FreeRTOS V7.1.2. + + + Added a FreeRTOS+ sub-directory. The directory contains some FreeRTOS+ + source code, and example projects that use the FreeRTOS Win32 simulator. + + Added a new example heap allocation implementation (heap_4.c) that + includes memory block coalescence. + + Added a demo that targets the Atmel SAM4S Cortex-M4 based microcontroller. + The demo is preconfigured to build using the free Atmel Studio 6 IDE and + GCC compiler. + + Added xSemaphoreTakeFromISR() implementation. + + The last parameter in ISR safe FreeRTOS queue and semaphore functions + (xHigherPriorityTaskWoken) is now optional and can be set to NULL if it + is not required. + + Update the IAR and MSP430X ports to clear all lower power mode bits before + exiting the tick interrupt [bug fix]. + + Allow xQueueReset() to be used, even when the queues event lists are not + empty. + + Added a vQueueDelete() handler for the FreeRTOS MPU port (this was + previously missing). + + Updated the vPortSVCHandler() functions in the FreeRTOS MPU port layer to + ensure it compiles with the latest ARM GCC compilers from Linaro. + + Updated the prvReadGP() function in the NIOS II port to ensure the compiler + can choose any register for the functions parameter (required at high + compiler optimisation levels). + + Add #error macros into the Keil and IAR Cortex-M ports to ensure they + cannot be built if the user has set configMAX_SYSCALL_INTERRUPT_PRIORITY + to 0. + + Added comments in the FreeRTOSConfig.h files associated with Cortex-M3 and + Cortex-M4 demos stating that the configMAX_SYSCALL_INTERRUPT_PRIORITY + parameter must not be set to 0. + + Introduce new INCLUDE_xQueueGetMutexHolder configuration constant + (defaulted to 0). + + Added two new list handling macros - for internal use only in upcoming new + products. + + Removed all mention of the legacy vTaskStartTrace and ulTaskEndTrace + macros. FreeRTOS+Trace supersedes the legacy trace. + + Added a configASSERT() into the vPortFree() function in heap_1.c as it is + invalid for the function to be called. + + Made the xRxLock and xTxLock members of the queue structure volatile. + This is probably not necessary, and is included as a precautionary + measure. + + Modify the assert() that checks to see if the priority passed into an + xTaskCreate() function is within valid bounds to permit the assert to be + used in the FreeRTOS MPU port. + + The software timer service (daemon) task is now created in a way that + to ensure compatibility with FreeRTOS MPU. + +Changes between V7.1.0 and V7.1.1 released May 1 2012 + + New ports: + + The following ports are brand new: + + Cortex-M3 Tasking + + The following ports have been available as separate downloads for a number + of months, but are now included in the main FreeRTOS download. + + Cortex-M0 IAR + + Cortex-M0 GCC + + Cortex-M4F GCC (with full floating point support) + + + New demos: + + The following demos are brand new: + + Renesas RX63N RDK (Renesas compiler) + + The following demos have been available as separate downloads for a number + of months, but are now included in the main FreeRTOS download. + + NXP LPC1114 GCC/LPCXpresso + + ST STM32F0518 IAR + + Infineon XMC4500 GCC/Atollic + + Infineon XMC4500 IAR + + Infineon XMC4500 Keil + + Infineon XMC4500 Tasking + + + Kernel miscellaneous / maintenance: + + + Introduced the portSETUP_TCB() macro to remove the requirement for the + Windows simulator to use the traceTASK_CREATE() macro, leaving the trace + macro available for use by FreeRTOS+Trace (http://www.FreeRTOS.org/trace). + + Added a new trace macro, traceMOVE_TASK_TO_READY_STATE(), to allow future + FreeRTOS+Trace versions to provide even more information to users. + + Updated the FreeRTOS MPU port to be correct for changes that were + introduced in FreeRTOS V7.1.0. + + Introduced the xQueueReset() API function. + + Introduced the xSemaphoreGetMutexHolder() API function. + + Tidy up various port implementations to add the static key word where + appropriate, and remove obsolete code. + + Slight change to the initial stack frame given to the RX600 ports to allow + them to be used in the Eclipse based E2Studio IDE without confusing GDB. + + Correct the alignment given to the initial stack of Cortex-M4F tasks. + + Added a NOP following each DINT instruction on MSP430 devices for strict + conformance with the instructions on using DINT. + + Changed the implementation of thread deletes in the Win32 port to prevent + the port making use of the traceTASK_DELETE() trace macros - leaving this + macro free for use by FreeRTOS+Trace. + + Made some benign changes to the RX600 Renesas compiler port layer to + ensure the code can be built to a library without essential code being + removed by the linker. + + Reverted the change in the name of the uxTaskNumber variable made in + V7.1.0 as it broke the IAR plug-in. + + + Demo miscellaneous / maintenance: + + + The command interpreter has now been formally released as FreeRTOS+CLI, + and been moved out of the main FreeRTOS download, to instead be available + from the FreeRTOS+ Ecosystem site http://www.FreeRTOS.org/plus. + + flash_timer.c/h has been added to the list of standard demo tasks. This + performs the same functionality as the flash.c tasks, but using software + timers in place of tasks. + + Upgraded the PIC32 demo as follows: Changes to how the library functions + are called necessitated by the new compiler version, addition of MPLAB X + project with PIC32MX360, PIC32MX460 and PIC32MX795 configurations, + addition of simply blinky demo, updated FreeRTOSConfig.h to include more + parameters, addition of hook function stubs. + + The MSP430X IAR and CCS demos have been updated to ensure the power + settings are correct for the configured CPU frequency. + + Rowley CrossWorks projects have been updated to correct the "multiple + definition of ..." warnings introduced when the toolchain was updated. + + Updated various FreeRTOSConfig.h header files associated with projects + that build with Eclipse to include a #error statement informing the user + that the CreateProjectDirectoryStructure.bat batch file needs to be + executed before the projects can be opened. + + Renamed directories that included "CCS4" in their name to remove the '4' + and instead just be "CCS". This is because the demo was updated and + tested to also work with later Code Composer Studio versions. + + Updated the TCP/IP periodic timer frequency in numerous uIP demos to be + 50ms instead of 500ms. + +Changes between V7.0.2 and V7.1.0 released December 13 2011 + + New ports: + + + Cortex-M4F IAR port. + + Cortex-M4F Keil/RVDS port. + + TriCore GCC port. + + New demos: + + + NXP LPC4350 using the Keil MDK, and demonstrated on a Hitex development + board. + + ST STM32F407 using the IAR Embedded Workbench for ARM, and demonstrated on + the IAR STM32F407ZG-SK starter kit. + + Infineon TriCore TC1782, using the GCC compiler, demonstrated on the + TriBoard TC1782 evaluation board. + + Renesas RX630, using the Renesas compiler and HEW, demonstrated on an + RX630 RSK (Renesas Starter Kit). + + Miscellaneous / maintenance: + + + Removed all calls to printf() from the K60/IAR Kinetis demo so the project + can execute stand alone - without being connected to the debugger. + + Completed the command interpreter framework. Command handlers now receive + the entire command string, giving them direct access to parameters. + Utility functions are provided to check the number of parameters, and + return parameter sub-strings. + + The previously documented fix for the bug in xTaskResumeFromISR() that + effected (only) ports supporting interrupt nesting has now been + incorporated into the main release. + + The portALIGNMENT_ASSERT_pxCurrentTCB() definition has been added to allow + specific ports to skip the second stack alignment check when a task is + created. This is because the second check is not appropriate for some + ports - including the new TriCore port where the checked pointer does not + actually point to a stack. + + The portCLEAN_UP_TCB() macro has been added to allow port specific clean + up when a task is deleted - again this is required by the TriCore port. + + Various other minor changes to ensure warning free builds on a growing + number of microcontroller and toolchain platforms. This includes a + (benign) correction to the prototype of the + vApplicationStackOverflowHook() definition found in lots of recent demos. + + Trace system: + + + The legacy trace mechanism has been completely removed - it has been + obsolete for the years since the trace macros were introduced. The + configuration constant configUSE_TRACE_FACILITY is now used to optionally + include additional queue and task information. The additional information + is intended to make the trace mechanism more generic, and allow the trace + output to provide more information. When configUSE_TRACE_FACILITY is set + to 1: + - the queue structure includes an additional member to hold the queue + type, which can be base, mutex, counting semaphore, binary semaphore + or recursive mutex. + - the queue structure includes an additional member to hold a queue + number. A trace tool can set and query the queue number for its own + purposes. The kernel does not use the queue number itself. + - the TCB structure includes an additional member to hold a task number + number. A trace tool can set and query the task number for its own + purposes. The kernel does not use the task number itself. + + Queues and all types of semaphores are now automatically allocated their + type as they are created. + + Added two new trace macros - traceTASK_PRIORITY_INHERIT() and + traskTASK_PRIORITY_DISINHERIT(). + + Updated the traceQUEUE_CREATE_FAILED() macro to take a parameter that + indicates the type of queue, mutex, or semaphore that failed to be + created. + + The position from which traceCREATE_MUTEX() is called has been moved from + after the call to xQueueGenericSend() [within the same function] to before + the call. This ensures the trace events occur in the correct order. + + The value passed into tracePRIORITY_SET() has been corrected for the case + where vTaskPrioritySet() is called with a null parameter. + +Changes between V7.0.1 and V7.0.2 released September 20 2011 + + New ports: + + + The official FreeRTOS Renesas RX200 port and demo application have been + incorporated into the main FreeRTOS zip file download. + + The official FreeRTOS Renesas RL78 port and demo application have been + incorporated into the main FreeRTOS zip file download. + + The official FreeRTOS Freescale Kinetis K60 tower demo application has + been incorporated into the main FreeRTOS zip file download. This includes + an embedded web server example. + + A new Microblaze V8 port layer has been created to replace the older, now + deprecated, port layer. The V8 port supports V8.x of the Microblaze IP, + including exceptions, caches, and the floating point unit. A new + Microblaze demo has also been added to demonstrate the new Microblaze V8 + port layer. The demo application was created using V13.1 of the Xilinx + EDK, and includes a basic embedded web server that uses lwIP V1.4.0. + + The official FreeRTOS Fujitsu FM3 MB9A310 demo application has been + incorporated into the main FreeRTOS zip file download. Projects are + provided for both the IAR and Keil toolchains. + + + API additions: + + + xTaskGetIdleTaskHandle() has been added. + + xTaskGetTimerDaemonTaskHandle() has been added. + + pcTaskGetTaskName() has been added. + + vSemaphoreDelete() macro has been added to make it obvious how to delete + a semaphore. In previous versions vQueueDelete() had to be used. + + vTaskCleanUpResources() has been removed. It has been obsolete for a + while. + + portPOINTER_SIZE_TYPE has been introduced to prevent compiler warnings + being generated when the size of a pointer does not match the size of + the stack type. This will (has already) be used in new ports, but will + not be retrofitted to existing ports until the existing port itself is + updated. + + Other updates and news: + + + The core files have all been modified to tighten the coding standard even + further. These are style, not functional changes. + + All ARM7 port layers have been slightly modified to prevent erroneous + assert() failures when tasks are created and configASSERT() is defined. + + All ARM IAR projects have been updated to build with the latest V6.2.x + versions of the IAR Embedded Workbench for ARM tools (EWARM). This was + necessary due to a change in the way EWARM uses the CMSIS libraries. + + The PIC32 port layer has been updated in preparation for V2 of the C32 + compiler. + + The old Virtex-4 Microblaze demo has been marked as deprecated. Please + use the brand new Spartan-6 port and demo in its place. + + The bones of a new generic command interpreter is located in + FreeRTOS/Demo/Common/Utils/CommandInterpreter.c. This is still a work in + progress, and not documented. It is however already in use. It will be + documented in full when the projects that are already using it are + completed. + + A couple of new standard demos have been included. First, a version of + flop.c called sp_flop.c. This is similar to flop.c, but uses single + precision floats in place of double precision doubles. This allows the + for testing ports to processors that have only single precision floating + point units, and revert to using emulated calculations whenever a double + is used. Second, comtest_strings.c has been included to allow the test + of UART drivers when an entire string is transmitted at once. The + previous comtest.c only used single character transmission and reception. + + lwIP V1.4.0 is now included in the FreeRTOS/Demo/Common directory, and + used by a couple of new demos. + +Changes between V7.0.0 and V7.0.1 released May 13 2011 + + + Added a Fujitsu FM3 demo application for both the IAR and Keil tool + chains. + + Added a SmartFusion demo application for all of the IAR, Keil and + SoftConsole (GCC/Eclipse) tool chains. + + Updated the RX600 port and demo applications to take into account the + different semantics required when using the latest (V1.0.2.0) version of + the Renesas compiler. + + Modified the RX600 Ethernet driver slightly to make it more robust under + heavy load, and updated the uIP handling task to make use of the FreeRTOS + software timers. + + Slightly changed the PIC32 port layer to move an ehb instruction in line + with the recommendations of the MIPS core manual, and ensure 8 byte stack + alignment is truly always obtained. + + Changed the behaviour when tasks are suspended before the scheduler has + been started. Before, there needed to be at least one task that was not + in the suspended state. This is no longer the case. + +Changes between V6.1.1 and V7.0.0 released April 8 2011 + + FreeRTOS V7.0.0 is backward compatible with FreeRTOS V6.x.x + + Main changes: + + + Introduced a new software timer implementation. + + Introduced a new common demo application file to exercise the new timer + implementation. + + Updated the Win32/MSVC simulator project to include the new software timer + demo tasks and software timer tick hook test. Much simpler software timer + demonstrations are included in the demo projects for both of the new ports + (MSP430X with CCS4 and STM32 with TrueStudio). + + Various enhancements to the kernel implementation in tasks.c. These are + transparent to users and do not effect the pre-existing API. + + Added calls to configASSERT() within the kernel code. configASSERT() is + functionally equivalent to the standard C assert() macro, but does not + rely on the compiler providing assert.h. + + Other changes: + + + Updated the MSP430X IAR port and demo project to include support for the + medium memory model. + + Added a demo project for the MSP430X that targets the MSP430X Discovery + board and uses the Code Composer Studio 4 tools. This demo includes use + of the new software timer implementation. + + Added an STM32F100RB demo project that targets the STM32 Discovery Board + and uses the TrueStudio Eclipse based IDE from Atollic. + + Removed some compiler warnings from the PSoC demo application. + + Updated the PIC32 port layer to ensure the + configMAX_SYSCALL_INTERRUPT_PRIORITY constant works as expected no matter + what its value is (within the valid range set by the microcontroller + kernel). + + Updated the PIC24, dsPIC and PIC32 projects so they work with the latest + MPLAB compiler versions from Microchip. + + Various cosmetic changes to prepare for a standards compliance statement + that will be published after the software release. + + +Changes between V6.1.0 and V6.1.1 released January 14 2011 + + + Added two new Windows simulator ports. One uses the free Microsoft Visual + Studio 2010 express edition, and the other the free MingW/Eclipse + environment. Demo projects are provided for both. + + Added three demo projects for the PSoC 5 (CYAC5588). These are for the + GCC, Keil, and RVDS build tools, and all use the PSoC Creator IDE. + + Added a demo for the low power STM32L152 microcontroller using the IAR + Embedded Workbench. + + Added a new port for the MSP430X core using the IAR Embedded Workbench. + + Updated all the RX62N demo projects that target the Renesas Demonstration + Kit (RDK) to take into account the revered LED wiring on later hardware + revisions, and the new J-Link debug interface DLL. + + Updated all the RX62N demo projects so the IO page served by the example + embedded web server works with all web browsers. + + Updated the Red Suite projects to work with the up coming Red Suite + release, and to use a more recent version of the CMSIS libraries. + + Added the traceTAKE_MUTEX_RECURSIVE_FAILED() trace macro. + + Removed the (pointless) parameter from the traceTASK_CREATE_FAILED() + trace macro. + + Introduced the portALT_GET_RUN_TIME_COUNTER_VALUE() macro to compliment + the already existing portGET_RUN_TIME_COUNTER_VALUE(). This allows for + more flexibility in how the time base for the run time statistics feature + can be implemented. + + Added a "cpsie i" instruction before the "svc 0" instruction used to start + the scheduler in each of the Cortex M3 ports. This is to ensure that + interrupts are globally enabled prior to the "svc 0" instruction being + executed in cases where interrupts are left disabled by the C start up + code. + + Slight optimisation in the run time stats calculation. + +Changes between V6.0.5 and V6.1.0 released October 6 2010 + + + Added xTaskGetTickCountFromISR() function. + + Modified vTaskSuspend() to allow tasks that have just been created to be + immediately suspended even when the kernel has not been started. This + allows them to effectively start in the Suspended state - a feature that + has been asked for on numerous occasions to assist with initialisation + procedures. + + Added ports for the Renesas RX62N using IAR, GCC and Renesas tool suites. + + Added a STM32F103 demo application that uses the Rowley tools. + + Under specific conditions xFreeBytesRemaining within heap_2.c could end up + with an incorrect value. This has been fixed. + + xTaskCreateGeneric() has a parameter that can be used to pass the handle + of the task just created out to the calling task. The assignment to this + parameter has been moved to ensure it is assigned prior to the newly + created having any possibility of executing. This takes into account the + case where the assignment is made to a global variable that is accessed by + the newly created task. + + Fixed some build time compiler warnings in various FreeTCPIP (based on + uIP) files. + + Fixed some build time compiler warnings in Demo/Common/Minimal/IntQueue.c. + +Changes between V6.0.4 and V6.0.5 released May 17 2010 + + + Added port and demo application for the Cortus APS3 processor. + +Changes between V6.0.3 and V6.0.4 released March 14 2010 + + + All the contributed files that were located in the Demo/Unsupported_Demos + directory have been removed. These files are instead now available in the + new Community Contributions section of the FreeRTOS website. See + http://www.freertos.org/RTOS-contributed-ports.html + + The project file located in the Demo/CORTEX_STM32F107_GCC_Rowley directory + has been upgraded to use V2.x of the Rowley Crossworks STM32 support + package. + + An initial Energy Micro EFM32 demo has been included. This will be + updated over the coming months to make better use of the low power modes + the EFM32 provides. + +Changes between V6.0.2 and V6.0.3 released February 26 2010 + + + SuperH SH7216 (SH2A-FPU) port and demo application added. + + Slight modification made to the default implementation of + pvPortMallocAligned() and vPortFreeAligned() macros so by default they + just call pvPortMalloc() and vPortFree(). The macros are only needed to + be defined when a memory protection unit (MPU) is being used - and then + only depending on other configuration settings. + +Changes between V6.0.1 and V6.0.2 released January 9th 2010 + + + Changed all GCC ARM 7 ports to use 0 as the SWI instruction parameter. + Previously the parameter was blank and therefore only an implicit 0 but + newer GCC releases do not permit this. + + Updated IAR SAM7S and SAM7X ports to work with IAR V5.40. + + Changed the stack alignment requirement for PIC32 from 4 bytes to 8 bytes. + + Updated prvListTaskWithinSingleList() is it works on processors where the + stack grows up from low memory. + + Corrected some comments. + + Updated the startup file for the RVDS LPC21xx demo. + +Changes between V6.0.0 and V6.0.1 released November 15th 2009 + + + Altered pxPortInitialiseStack() for all Cortex-M3 ports to ensure the + stack pointer is where the compiler expects it to be when a task first + starts executing. + + The following minor changes only effect the Cortex-M3 MPU port: + + + portRESET_PRIVILEGE() assembly macro updated to include a clobber list. + + Added prototypes for all the privileged function wrappers to ensure no + compile time warnings are generated no matter what the warning level + setting. + + Corrected the name of portSVC_prvRaisePrivilege to + portSVC_RAISE_PRIVILEGE. + + Added conditional compilation into xTaskGenericCreate() to prevent some + compilers issuing warnings when portPRIVILEGE_BIT is defined as zero. + + +Changes between V5.4.2 and V6.0.0 released October 16th 2009 + + FreeRTOS V6 is backward compatible with FreeRTOS V5.x. + + Main changes: + + + FreeRTOS V6 is the first version to include memory protection unit (MPU) + support. Two ports now exist for the Cortex M3, the standard FreeRTOS + which does not include MPU support, and FreeRTOS-MPU which does. + + xTaskCreateRestricted() and vTaskAllocateMPURegions() API functions added + in support of FreeRTOS-MPU. + + Wording for the GPL exception has been (hopefully) clarified. Also the + license.txt file included in the download has been fixed (the previous + version contained some corruption). + + Other changes: + + + New API function xPortGetFreeHeapSize() added to heap_1.c and heap_2.c. + + ARM7 GCC demo interrupt service routines wrappers have been modified to + call the C portion using an __asm statement. This prevents the function + call being inlined at higher optimisation levels. + + ARM7 ports now automatically set the THUMB bit if necessary when + setting up the initial stack of a task - removing the need for + THUMB_INTERWORK to be defined. This also allows THUMB mode and ARM mode + tasks to be mixed more easily. + + All ARM7/9 ports now have portBYTE_ALIGNMENT set to 8 by default. + + Various demo application project files have been updated to be up to date + with the latest IDE versions. + + The linker scripts used with command line GCC demos have been updated to + include an eh_frame section to allow their use with the latest Yagarto + release. Likewise the demo makefiles have been updated to include + command line options to reduce or eliminate the eh_frame section all + together. + + The definition of portBYTE_ALIGNMENT_MASK has been moved out of the + various memory allocation files and into the common portable.h header + file. + + Removed unnecessary use of portLONG, portSHORT and portCHAR. + + Added LM3Sxxxx demo for Rowley CrossWorks. + + Posix simulator has been upgraded - see the corresponding WEB page on the + FreeRTOS.org site. + + +Changes between V5.4.1 and V5.4.2 released August 9th 2009 + + + Added a new port and demo app for the Altera Nios2 soft core. + + Added LPC1768 demo for IAR. + + Added a USB CDC demo to all LPC1768 demos (Code Red, CrossWorks and IAR). + + Changed clock frequency of LPC1768 demos to 99MHz. + +Changes between V5.4.0 and V5.4.1 released July 25th 2009 + + + New hook function added. vApplicationMallocFailedHook() is (optionally) + called if pvPortMalloc() returns NULL. + + Additional casting added to xTaskCheckForTimeOut(). This prevents + problems that can arise should configUSE_16_BIT_TICKS be set to 1 on a + 32 bit architecture (which would probably be a mistake, anyway). + + Corrected the parameter passed to NVIC_SetPriority() to set the MAC + interrupt priority in both LPC1768 demos. + + Decreased the default setting of configMINIMAL_STACK_SIZE in the PIC32 + demo application to ensure the heap space was not completely consumed + before the scheduler was started. + +Changes between V5.3.1 and V5.4.0 released July 13th 2009 + + + Added Virtex5 / PPC440 port and demos. + + Replaced the LPC1766 Red Suite demo with an LPC1768 Red Suite demo. The + original demo was configured to use engineering samples of the CPU. The + new demo has an improved Ethernet driver. + + Added LPC1768 Rowley demo with zero copy Ethernet driver. + + Reworked byte alignment code to ensure 8 byte alignment works correctly. + + Set configUSE_16_BIT_TICKS to 0 in the PPC405 demo projects. + + Changed the initial stack setup for the PPC405 to ensure the small data + area pointers are setup correctly. + +Changes between V5.3.0 and V5.3.1 released June 21st 2009 + + + Added ColdFire V1 MCF51CN128 port and WEB server demo. + + Added STM32 Connectivity Line STM32107 Cortex M3 WEB server demo. + + Changed the Cortex M3 port.c asm statements to __asm so it can be + compiled using Rowley CrossWorks V2 in its default configuration. + + Updated the Posix/Linux simulator contributed port. + +Changes between V5.2.0 and V5.3.0 released June 1st 2009 + + Main changes: + + + Added new (optional) feature that gathers statistics on the amount of CPU + time used by each task. + + Added a new demo application for the Atmel AT91SAM3U Cortex-M3 based + microcontroller. + + Added a new demo application for the NXP LPC1766 Cortex-M3 based + microcontroller. + + Added a contributed port/demo that allows FreeRTOS to be 'simulated' in a + Linux environment. + + Minor changes: + + Updated the Stellaris uIP WEB server demos to include the new run time + statistics gathering feature - and include a served WEB page that + presents the information in a tabular format. + + Added in the lwIP port layer for the Coldfire MCF52259. + + Updated the CrossWorks LPC2368 WEB server to include an image in the + served content. + + Changed some of the timing in the initialisation of the LPC2368 MAC to + permit its use on all part revisions. + + Minor modifications to the core uIP code to remove some compiler warnings. + + Added xTaskGetApplicationTaskTag() function and updated the OpenWatcom + demo to make use of the new function. + + Added contributed demos for AVR32 AP7000, STM32 Primer 2 and STM32 using + Rowley Crossworks. + + Heap_1.c and Heap_2.c used to define structures for the purpose of data + alignment. These have been converted to unions to save a few bytes of + RAM that would otherwise be wasted. + + Remove the call to strncpy() used to copy the task name into the TCB when + the maximum task name is configured to be 1 byte long. + +Changes between V5.1.2 and V5.2.0 released March 14th 2009 + + + Optimised the queue send and receive functions (also used by semaphores). + + Replaced the standard critical sections used to protect BIOS calls in the + PC port to instead use scheduler locks. This is because the BIOS calls + always return with interrupts enabled. + + Corrected unclosed comments in boot.s. + +Changes between V5.1.1 and V5.1.2 released February 9th 2009 + + + Added NEC V850ES port and demo. + + Added NEC 78K0R port and demo. + + Added MCF52259 port and demo. + + Added the AT91SAM9XE port and demo. + + Updated the MCF52233 FEC driver to work around a silicon bug that + prevents the part auto negotiating some network parameters. + + Minor modifications to the MCF52233 makefile to permit it to be used + on Linux hosts. + + Updated the STM32 primer files to allow them to be built with the latest + version of the RIDE tools. + + Updated the threads.js Java script used for kernel aware debugging in + the Rowley CrossWorks IDE. + + +Changes between V5.1.0 and V5.1.1 released November 20, 2008 + + + Added Coldfire MCF52233 WEB server demo using GCC and Eclipse. + + Added IAR MSP430 port and demo. + + Corrected several compiler time issues that had crept in as tool versions + change. + + Included FreeRTOS-uIP - a faster uIP. This is not yet complete. + +Changes between V5.0.4 and V5.1.0 released October 24, 2008 + + + Added a new port and demo application for the ColdFire V2 core using the + CodeWarrior development tools. + + Replaced the ARM7 demo that used the old (and now no longer supported) + Keil compiler with a new port that uses the new Keil/RVDS combo. + + Stack overflow checking now works for stacks that grow up from low + memory (PIC24 and dsPIC). + + BUG FIX - set the PIC32 definition of portSTACK_GROWTH to the correct + value of -1. + + MSP430 port layers have been updated to permit tasks to place the + microcontroller into power down modes 1 to 3. The demo applications have + likewise been updated to demonstrate the new feature. + + Replaced the two separate MSP430/Rowley port layers with a single and more + flexible version. + + Added more contributed ports, including ports for NEC and SAM9 + microcontrollers. + + Changed the linker script used in the LPC2368 Eclipse demo. + +Changes between V5.0.3 and V5.0.4 released September 22, 2008 + + + Completely re-written port for ColdFire GCC. + + Bug fix: All Cortex M3 ports have a minor change to the code that sets + the pending interrupt. + + Some header files require that FreeRTOS.h be included prior to their + inclusion. #error message have been added to all such header file + informing users to the cause of the compilation error should the headers + not be included in the correct order. + +Changes between V5.0.2 and V5.0.3 released July 31, 2008 + + Changes relating to the Cortex M3: + + + Added configMAX_SYSCALL_INTERRUPT_PRIORITY usage to all the Cortex M3 + ports and demos. See the port documentation pages on the FreeRTOS.org + WEB site for full usage information. + + Improved efficiency of Cortex M3 port even further. + + Ensure the Cortex M3 port works no matter where the vector table is + located. + + Added the IntQTimer demo/test tasks to a demo project for each CM3 port + (Keil, GCC and IAR) to test the new configMAX_SYSCALL_INTERRUPT_PRIORITY + functionality. + + Added the mainINCLUDE_WEB_SERVER definition to the LM3SXXXX IAR and Keil + projects to allow the WEB server to be conditionally excluded from the + build and therefore allow use of the KickStart (code size limited) + compiler version. + + Other changes: + + + Moved the PIC24 and dsPIC versions of vPortYield() from the C file to + an assembly file to allow use with all MPLAB compiler versions. This also + allows the omit-frame-pointer optimisation to be turned off. + +Changes between V5.0.0 and V5.0.2 released May 30, 2008 + + + Updated the PIC32 port to allow queue API calls to be used from + interrupts above the kernel interrupt priority, and to allow full + interrupt nesting. Task stack usages has also been reduced. + + Added a new PowerPC port that demonstrates how the trace macros can be + used to allow the use of a floating point co-processor. The + traceTASK_SWITCHED_OUT() and traceTASK_SWITCHED_INT() macros are used to + save and restore the floating point context respectively for those tasks + that actually use floating point operations. + + BUG FIX: The first PPC405 port contained a bug in that it did not leave + adequate space above the stack for the backchain to be saved when a task + started to execute for the first time. + + Updated queue.c to add in the means to allow interrupt nesting and for + queue API functions to be called from interrupts that have a priority + above the kernel priority. This is only supported on PIC32 ports thus + far. + + Fixed the compiler warnings that were generated when the latest version + of WinAVR was used. + + Remove all inline usage of 'inline' from the core kernel code. + + Added the queue registry feature. The queue registry is provided as a + means for kernel aware debuggers to locate queue definitions. It has no + purpose unless you are using a kernel aware debugger. The queue registry + will only be used when configQUEUE_REGISTRY_SIZE is greater than zero. + + Added the ST Cortex-M3 drivers into the Demo/Common/Drivers directory to + prevent them from having to be included in multiple demos. + + Added a Keil STM32 demo application. + + Changed the blocktim.c test files as it is no longer legitimate for all + ports to call queue API functions from within a critical section. + + Added the IntQueue.c test file to test the calling of queue API functions + from different interrupt priority levels, and test interrupt nesting. + +Changes between V5.0.0 and V5.0.1 + + + V5.0.1 was a customer specific release. + +Changes between V4.8.0 and V5.0.0 released April 15, 2008 + + *** VERY IMPORTANT INFORMATION ON UPGRADING TO FREERTOS.ORG V5.0.0 *** + + The parameters to the functions xQueueSendFromISR(), xQueueSendToFrontFromISR(), + xQueueSendToBackFromISR() and xSemaphoreGiveFromISR() have changed. You must + update all calls to these functions to use the new calling convention! Your + compiler might not issue any type mismatch warnings! + + + See http://www.FreeRTOS.org/upgrading.html for full information. + + + Other changes: + + + Support added for the new Luminary Micro LM3S3768 and LM3S3748 Cortex-M3 + microcontrollers. + + New task hook feature added. + + PowerPC demo updated to use version 10.1 of the Xilinx EDK. + + Efficiency gains within the PIC32 port layer. + +Changes between V4.7.2 and V4.8.0 released March 26 2008 + + + Added a Virtex4 PowerPC 405 port and demo application. + + Added optional stack overflow checking and new + uxTaskGetStackHighWaterMark() function. + + Added new xQueueIsQueueEmptyFromISR(), xQueueIsQueueFullFromISR() and + uxQueueMessagesWaitingFromISR() API functions. + + Efficiency improvements to the Cortex-M3 port layer. NOTE: This + requires that an SVC handler be installed in the application. + + Efficiency improvements to the queue send and receive functions. + + Added new trace macros. These are application definable to provide + a flexible trace facility. + + Implemented the configKERNEL_INTERRUPT_PRIORITY within the Keil Cortex + M3 port layer (bringing it up to the same standard as the IAR and GCC + versions). + + Ports that used the arm-stellaris-eabi-gcc tools have been converted to + use the arm-non-eabi-gcc tools. + +Changes between V4.7.1 and V4.7.2 released February 21, 2008 + + + Added Fujitsu MB91460 port and demo. + + Added Fujitsu MB96340 port and demo. + + Tidied up the capitalisation of include files to facilitate builds on + Linux hosts. + + Removed some redundant casting that was generating warnings - but was + included to remove warnings on other compilers. + +Changes between V4.7.0 and V4.7.1 released February 3, 2008 + + + Updated all IAR ARM projects to use V5.11 of the IAR Embedded Workbench + for ARM. + + Introduced recursive semaphore feature. + + Updated LPC2368 demos to take into account silicon bugs in old chip + revisions. + + Updated STR9 uIP port to manually set the net mask and gateway addresses. + + Updating demos to allow more to run with the co-operative scheduler. + + Fixed co-operative scheduler behaviour upon the occurrence of a tick + interrupt while the scheduler was suspended. + + Updated documentation contained within semphr.h. + + ARM7 GCC ports no longer use the IRQ attribute. + +Changes between V4.6.1 and V4.7.0 released December 6, 2007 + + + Introduced the counting semaphore macros and demo source files. The + Open Watcom PC project has been updated to include the new demo. See + the online documentation for more information. + + Introduced the 'alternative' queue handling API and demo source files. + The Open Watcom PC project has been updated to include the new demo + source files. See the online documentation for more information. + + Added AT91SAM7X Eclipse demo project. + + Added the STM32 primer demo project for the GCC compiler and Ride IDE. + + Removed the .lock files that were mistakenly included in the V4.6.1 + eclipse workspaces. + +Changes between V4.6.0 and V4.6.1 released November 5 2007 + + + Added support for the MIPS M4K based PIC32. + + Added 'extern "C"' to all the header files to facilitate use with C++. + +Changes between V4.5.0 and V4.6.0 released October 28 2007 + + + Changed the method used to force a context switch within an ISR for the + ARM7/9 GCC ports only. The portENTER_SWITCHING_ISR() and + portEXIT_SWITCHING_ISR() macros are no longer supported. This is to + ensure correct behaviour no matter which GCC version is used, with or + without the -fomit-frame-pointer option, and at all optimisation levels. + + Corrected the prototype for xQueueGenericSend() within queue.h. + +Changes between V4.4.0 and V4.5.0 released September 17 2007 + + + Added the xQueueSendToFront(), xQueueSendToBack() and xQueuePeek() + functionality. These should now be used in preference to the old + xQueueSend() function - which is maintained for backward compatibility. + + Added Mutex functionality. The behaviour of mutexes is subtly different + to the already existing binary semaphores as mutexes automatically + include a priority inheritance mechanism. + + Added the GenQTest.c and QPeek.c to test and demonstrate the behaviour + of the new functionality. + + Updated the LM3Sxxxx and PC ports to include the new GenQTest.c and + QPeek.c files. + + Updated the GCC port for the Cortex M3 to include the + configKERNEL_INTERRUPT_PRIORITY functionality. This was previously only + included in the IAR port. + + Optimised the GCC and IAR port layer code - specifically the context + switch code. + + Consolidated the LM3Sxxxx EK demos for all development tools into a + single project that automatically detects which version of the EK the + application is executing on. + + Added Eclipse support for LM3Sxxxx evaluation kits. + + Added Eclipse support for the Keil LPC2368 evaluation kit. + + Added the Demo/Drivers directory to hold code that is common to multiple + demo application projects. + + Included some minor bug fixes in the uIP 1.0 code. + + Added an lwIP demo for the STR9 - thanks ST for assistance. + + Updated the AVR32 port to ensure correct behaviour with full compiler + optimisation. + + Included binaries for OpenOCD FTDI and parallel port interfaces. + +Changes between V4.4.0 and V4.3.1 released July 31, 2007 + + + Added AVR32 UC3B demo application. + + Updated AVR32 UC3A port and demo applications. + + Added IAR lwIP demo for AVR32 UC3A. + + Updated listGET_OWNER_OF_NEXT_ENTRY() to assist compiler optimisation + (thanks Niu Yong for making the suggestion). + + Added xTaskGetSchedulerState() API function. + + BUG FIX: Corrected behaviour when tasks that are blocked indefinitely + have their block time adjusted (within xQueueSend() and xQueueReceive()), + and are the subject of a call the vTaskResume() when they are not + actually in the Suspended state (thanks Dan Searles for reporting the + issues). + + +Changes between V4.3.0 and V4.3.1 released June 11, 2007 + + + Added STMicroelectronics STM32 Cortex-M3 demo application. + + Updated ustdlib.c for the GCC LM3S6965 demo. + +Changes between V4.2.1 and V4.3.0 released June 5, 2007 + + + Introduced configKERNEL_INTERRUPT_PRIORITY to the IAR Cortex-M3, PIC24 + and dsPIC ports. See the LM3S6965 and PIC24 demo application + documentation pages for more information. + + Updated the PIC24 and dsPIC demos to build with V3.0 of the PIC30 GCC + tools, and changed the demo applications. + + Added demos for the new Ethernet and CAN enabled Luminary Micro Stellaris + microcontrollers. + + Corrected bug in uIP the demos that prevented frames of approximately 1480 + bytes and over from being transmitted. + + Included the LPC2368/uIP/Rowley demo into the main FreeRTOS.org + download. + + Update to WizC PIC18 port to permit its use with version 14 of the + compiler. Thanks Marcel! + +Changes between V4.2.1 and V4.2.0 released April 2, 2007 + + + Added AVR32 AT32UC3A ports for GCC and IAR. + + Added -fomit-frame-pointer option to lwIP SAM7X demo makefile. + + Moved location of call to LCD_Init() in STR9 demo to ensure it is only + called after the scheduler has been started. + +Changes between V4.1.3 and V4.2.0 released February 8, 2007 + + + Changes to both task.c and queue.c as a result of testing performed on + the SafeRTOS code base. + + Added Cortex-M3 LM3S811 demos for GCC and IAR tools. + +Changes between V4.1.2 and V4.1.3 released November 19, 2006 + + + Added STR750 ARM7 port using the Raisonance RIDE/GCC tools. + + Added -fomit-frame-pointer option to Rowley ARM7 demos as work around + to GCC bug at some optimisation levels. + + Altered the way the heap is defined in the LM3S811 Keil demo to prevent + the RAM usage from counting toward the code size limit calculation. + + CO-ROUTINE BUG FIX: Removed the call to prvIsQueueEmpty from within + xQueueCRReceive as it exited with interrupts enabled. Thanks Paul Katz. + + Tasks that block on events with a timeout of portMAX_DELAY are now + blocked indefinitely if configINCLUDE_vTaskSuspend is defined. + Previously portMAX_DELAY was just the longest block time possible. This + is still the case if configINCLUDE_vTaskSuspend is not defined. + + Minor changes to some demo application files. + +Changes between V4.1.1 and V4.1.2 released October 21, 2006 + + + Added 16bit PIC ports and demos. + + Added STR750 port and demo. + + +Changes between V4.1.0 and V4.1.1 released September 24, 2006 + + + Added the Luminary Micro Stellaris LM3S811 demo application. + +Changes between V4.0.5 and V4.1.0 released August 28, 2006 + + + Prior to V4.1.0, under certain documented circumstances, it was possible + for xQueueSend() and xQueueReceive() to return without having completed + and without their block time expiring. The block time effectively + stated a maximum block time, and the return value of the function needed + to be checked to determine the reason for returning. This is no longer + the case as the functions will only return once the block time has + expired or they are able to complete their operation. It is therefore no + longer necessary to wrap calls within loops. + + Changed the critical section handling in the IAR AVR port to correct the + behaviour when used with later compiler versions. + + Added the LPC2138 CrossWorks demo into the zip file. Previously this was + only available as a separate download. + + Modified the AVR demo applications to demonstrate the use of co-routines. + +Changes between V4.0.4 and V4.0.5 released August 13, 2006 + + + Introduced API function xTaskResumeFromISR(). Same functionality as + xTaskResume(), but can be called from within an interrupt service routine. + + Optimised vListInsert() in the case when the wake time is the maximum + tick count value. + + Bug fix: The 'value' of the event list item is updated when the priority + of a task is changed. Previously only the priority of the TCB itself was + changed. + + vTaskPrioritySet() and vTaskResume() no longer use the event list item. + This has not been necessary since V4.0.1 when the xMissedYield handling + was added. + + Lowered the PCLK setting on the ARM9 STR9 demo from 96MHz to 48MHz. + + When ending the scheduler - do not try to attempt a context switch when + deleting the current task. + + SAM7X EMAC drivers: Corrected the Rx frame length mask when obtaining + the length from the rx descriptor. + + +Changes between V4.0.3 and V4.0.4 released June 22, 2006 + + + Added a port and demo application for the STR9 ARM9 based processors from + ST. + + Slight optimisation to the vTaskPrioritySet() function. + + Included the latest uIP version (1.0) in the demo/common/ethernet + directory. + +Changes between V4.0.2 and V4.0.3 released June 7, 2006 + + + Added a port and demo application for the Cortex-M3 target using the IAR + development tools. + + The ARM Cortex-m3 Rowley projects have been updated to use V1.6 of the + CrossStudio tools. + + The heap size defined for the lwIP Rowley demo has been reduced so that + the project will link correctly when using the command line GCC tools + also. The makefile has also been modified to allow debugging. + + The lwIP Rowley demo not includes a 'kernel aware' debug window. + + The uIP Rowley project has been updated to build with V1.6 of CrossWorks. + + The second set of tasks in the blockQ demo were created the wrong way + around (inconsistent to the description in the file). This has been + corrected. + +Changes between V4.0.1 and V4.0.2 released May 28, 2006 + + + Port and demo application added for the Tern Ethernet Engine controller. + + Port and demo application added for MC9S12 using GCC, thanks to + Jefferson "imajeff" Smith. + + The function vTaskList() now suspends the scheduler rather than disabling + interrupts during the creation of the task list. + + Allow a task to delete itself by passing in its own handle. Previously + this could only be done by passing in NULL. + + Corrected the value passed to the WDG_PeriodValueConfig() library + function in the STR71x demo. + + The tick hook function is now called only within a tick isr. Previously + it was also called when the tick function was called during the scheduler + unlocking process. + + The EMAC driver in the SAM7X lwIP demo has been made more robust as per + the thread: http://sourceforge.net/forum/message.php?msg_id=3714405 + + In the PC ports: Add function prvSetTickFrequencyDefault() to set the + DOS tick back to its proper value when the scheduler exits. Thanks + Raynald! + + In the Borland x86 ports there was a mistake in the portFIRST_CONTEXT + macro where the BP register was not popped from the stack correctly. The + BP value would never get used so this did not cause a problem, but it has + been corrected all the same. + + +Changes between V4.0.0 and V4.0.1 released April 7 2006 + + + Improved the ARM CORTEX M3 ports so they now only have to service + pendSV interrupts. + + Added a Luminary Micro port and demo for use with Rowley CrossWorks. + + Added the xMissedYield handling to tasks.c. + +Changes between V3.2.4 and V4.0.0 + + Major changes: + + + Added new RTOS port for Luminary Micros ARM CORTEX M3 microcontrollers. + + Added new co-routine functionality. + + Other kernel changes: + + + An optional tick hook call is now included in the tick function. + + Introduced the xMiniListItem structure and removed the list pxHead + member in order to reduce RAM usage. + + Added the following definitions to the FreeRTOSConfig.h file included + with every port: + configUSE_TICK_HOOK + configUSE_CO_ROUTINES + configMAX_CO_ROUTINE_PRIORITIES + + The volatile qualification has been changed on the list members to allow + the task.c code to be tidied up a bit. + + The scheduler can now be started even if no tasks have been created! + This is to allow co-routines to run when there are no tasks. + + A task being woken by an event will now preempt the currently running task + even if its priority is only equal to the currently running task. + + Port and demo application changes: + + + Updated the WinAVR demo to compile with the latest version of WinAVR + with no warnings generated. + + Changed the WinAVR makefile to make chars signed - needed for the + co-routine code if BaseType_t is set to char. + + Added new demo application file crflash.c. This demonstrates co-routine + functionality including passing data between co-routines. + + Added new demo application file crhook.c. This demonstrates co-routine + and tick hook functionality including passing data between and ISR and + a co-routine. + + Some NOP's were missing following stmdb{}^ instructions in various ARM7 + ports. These have been added. + + Updated the Open Watcom PC demo project to include the crflash and crhook + demo co-routines as an example of their use. + + Updated the H8S demo to compile with the latest version of GCC. + + Updated the SAM7X EMAC drivers to take into account the hardware errata + regarding lost packets. + + Changed the default MAC address used by some WEB server demos as the + original addresses used was not liked by some routers. + + Modified the SAM7X/IAR startup code slightly to prevent it hanging on + some systems when the code is executed using a j-link debugger. The + j-link macro file configures the PLL before the code executes so + attempting to configure it again in the startup code was causing a + problem for some user. Now a check is performed first to see if the + PLL is already set up. + + GCC port now contain all assembler code in a single asm block rather than + individual blocks as before. + + GCC LPC2000 code now explicitly uses R0 rather than letting the assembler + choose the register to use as a temporary register during the context + switch. + + Added portNOP() macro. + + The compare match load value on LPC2000 ports now has 1 added to correct + the value used. + + The minimal stack depth has been increased slightly on the WIZC PIC18 + port. + +Changes between V3.2.3 and V3.2.4 + + + Modified the GCC ARM7 port layer to allow use with GCC V4.0.0 and above. + Many thanks to Glen Biagioni for the provided update. + + Added a new Microblaze port and demo application. + + Modified the SAM7X EMAC demo to default to use the MII interface rather + than the RMII interface. + + Modified the startup sequence of the SAM7X demo slightly to allow the + EMAC longer to auto negotiate. + +Changes between V3.2.2 and V3.2.3 + + + Added MII interface support to the SAM7X EMAC peripheral driver. + Previously versions worked with the RMII interface only. + + Added command line GCC support to the SAM7X lwIP demo. Previously the + project could only be built using the CrossWorks IDE. Modifications to + this end include the addition of a standard makefile and linker script to + the download, and some adjustments to the stacks allocated to each task. + + Changed the page returned by the lwIP WEB server demo to display the + task status table rather than the TCP/IP statistics. + + Corrected the capitalisation of some header file includes and makefile + dependencies to facilitate use on Linux host computers. + + The various LPC2000 ports had a mistake in the timer setup where the + prescale value was written to T0_PC instead of T0_PR. This would have + no effect unless a prescale value was actually required. This has been + corrected. + +Changes between V3.2.1 and V3.2.2 - Released 23 September, 2005 + + + Added an IAR port for the Philips LPC2129 + + The Atmel ARM7 IAR demo project files are now saved in the IAR Embedded + Workbench V4.30a format. + + Updated the J-Link macro file included with the SAM7X uIP demo project + to allow the demo board to be reset over the J-Link. + +Changes between V3.2.0 and V3.2.1 - Released 1 September, 2005 + + + Added lwIP demo for AT91SAM7X using Rowley tools. + + Added uIP demo for AT91SAM7X using IAR tools. + + Added function xTaskGetCurrentTaskHandle(). + + Renamed events.h to mevents.h to prevent it conflicting with the events.h + generated automatically by the HCS12 processor expert utility. events.h + is only used by the PC demo application. + + Both PIC18 ports now initialise the TBLPTRU to 0 as this is the value + expected by the compiler, and the compilers do not write to this + register. + + The HCS12 banked model demo now creates the 'suicide' tasks immediately + prior to starting the scheduler. These tasks should be the last tasks to + get started in order for the test to function correctly. + +Changes between V3.1.1 and V3.2.0 - Released 29 June, 2005 + + V3.2.0 introduces two new MSP430 ports and corrects a minor kernel + issues. Thanks to Ares.qi for his input. + + + Added two MSP430 ports that use the Rowley CrossWorks development tools. + One port just mirrors the existing GCC port. The other port was provided + by Milos Prokic. Thanks! + + V3.2.0 corrects the behavior when vTaskPrioritySet() or vTaskResume() + are called while the scheduler is locked (by a call to + vTaskSuspendAll()). When this is done the subject task now starts to + execute immediately when the scheduler is unlocked if it has the highest + priority that is ready to run. Previously there was a possibility that + the task would not run until the next RTOS tick or call to portYIELD(). + + Another similar small correction ensures that in the case where more than + one task is blocked on a semaphore or queue, the task with the highest + priority is guaranteed to be unblocked first. + + Added a couple of more test tasks to the PC demo which cover the points + above. + +Changes between V3.1.0 and V3.1.1 - Released 21st June, 2005 + + This release updates the HCS12 port. The common kernel code + remains unchanged. + + + Updated the HCS12 port to support banking and introduced a demo + application for the MC9S12DP256. The new demo application is + located in the Demo/HCS12_CodeWarrior_banked directory. + + The name of the directory containing the MC9S12F32 demo application + has been changed to Demo/HCS12_CodeWarrior_small (as in 'small' + memory model). + + MC9S12F32 demo updated slightly to use the PLL. The CPU speed for the + demo application is now 24MHz. Previously it was 8MHz. + + The demo application file Demo/Common/Minimal/death.c has a slight + alteration to prevent it using floating point variables. + + +Changes between V3.0.0 and V3.1.0 - Released 11th June, 2005 + + + Added new ports for ST Microsystems STR71x, and Freescale HCS12 + microcontrollers. Currently the HCS12 port is limited to the small + memory model. Large memory models will be supported in the next + release. + + PIC18 wizC port updated. Thanks to Marcel van Lieshout for his + continuing contribution. + + The accuracy of the AVR port timer setup has been improved. Thanks to + Thomas Krutmann for this contribution. + + Added a new conditional compilation macro configIDLE_SHOULD_YIELD. + See the WEB documentation for details. + + Updated the CrossWorks uIP demo to build with V1.4 of CrossWorks. + + Slight modification to the SAM7 release build configuration to correct + an include path definition. + + Updated the MPLAB PIC18 documentation to provide extra details on linker + file configuration. + +Changes between V3.0.0 and V2.6.1 - Released 23rd April, 2005 + + V3.0.0 includes many enhancements, so this history list is broken into + subsections as follows: + + API changes + New ports + Directory name changes + Kernel and miscellaneous changes changes + + - API changes + + + Each port now defines BaseType_t as the data type that is most + efficient for that architecture. The type BaseType_t is used + extensively in API calls necessitating the following changes to the + FreeRTOS API function prototypes. + + See the "New for V3.0.0" section of the FreeRTOS online + documentation for full details of API changes. + + - New ports + + + The AT91FR40008 ARM7 port contributed by John Feller is now included + in the download (thanks John!). + + The PIC18 port for the wizC/fedC compiler contributed by Marcel van + Lieshout is now included in the download (thanks Marcel!). + + The IAR port for the AVR microcontroller has been upgraded to V3.0.0 + and is now a supported port. + + - Directory name changes + + For consistency, and to allow integration of the new ports, the + following directory names have been changed. + + + The source/portable/GCC/ARM7 directory has been renamed + source/portable/GCC/ARM7_LPC2000 so it is compatible with the naming + of other GCC ARM7 ports. + + The Demo/PIC directory has been renamed Demo/PIC18_MPLAB to + accommodate the wizC/fedC PIC port. + + The demo applications for the two AVR ports no longer share the same + directory. The WinAVR demo is in the Demo/AVR_ATMega323_WinAVR + directory and the IAR port in the Demo/AVR_ATMega323_IAR directory. + + + - Kernel and miscellaneous changes changes + + See the "New for V3.0.0" section of the FreeRTOS online + documentation for more information. + + + Previously 'portmacro.h' contained some user editable definitions + relating to the user application, and some fixed definitions relating + specifically to the port being used. The application specific + definitions have been removed from 'portmacro.h' and placed inside a + new header file called 'FreeRTOSConfig.h'. 'portmacro.h' should now + never be modified by the user. A 'FreeRTOSConfig.h' is now included + in each of FreeRTOS/Demo subdirectories - as it's settings relate to + the demo application rather than being specific to the port. + + Introduced configUSE_IDLE_HOOK in idle task. + + The idle task will yield when another idle priority task is ready to + run. Previously the idle task would run to the end of its time slice + regardless. + + The idle task is now created when the scheduler is started. This + requires less stack than the previous scheme where it was created upon + creation of the first application task. + + The function usPortCheckFreeStackSpace() has been renamed + usTaskCheckFreeStackSpace() and moved from the portable layer to + tasks.c. + + Corrected spelling of portMINMAL_STACK_SIZE to portMINIMAL_STACK_SIZE. + + The portheap.c file included with the AVR port has been deleted. The + AVR demo now uses the standard heap1 sample memory allocator. + + The GCC AVR port is now build using the standard make utility. The + batch files used previously have been deleted. This means a recent + version of WinAVR is required in order to create a binary suitable for + source level debugging. + + vTaskStartScheduler() no longer takes the configUSE_PREEMPTION + constant as a parameter. Instead the constant is used directly within + tasks.c and no parameter is required. + + The header file 'FreeRTOS.h' has been created and is used to include + 'projdefs.h', 'FreeRTOSConfig.h' and 'portable.h' in the necessary + order. FreeRTOS.h can now be included in place of these other + headers. + + The header file 'errors.h' has been deleted. The definitions it + contained are now located within 'projdefs.h'. + + pvPortMalloc() now takes a size_t parameter as per the ANSI malloc(). + Previously an unsigned short was used. + + When resuming the scheduler a yield is performed if either a tick has + been missed, or a task is moved from the pending ready list into a + ready list. Previously a yield was not performed on this second + condition. + + In heap1.c an overflow check has been added to ensure the next free + byte variable does not wrap around. + + Introduced the portTASK_FUNCTION() and portTASK_FUNCTION_PROTO() + macros. + + The MPLAB PIC port now saved the TABLAT register in interrupt service + routines. + +Changes between V2.6.0 and V2.6.1 - Released Feb 22, 2005 + + This version adds support for the H8 processor. + + Other changes: + + + tskMAX_TASK_NAME_LEN removed from the task.h header and added to each + individual portmacro.h file as portMAX_TASK_NAME_LEN. This allows RAM + limited ports to allocate fewer characters to the task name. + + AVR port - Replaced the inb() and outb() functions with direct memory + access. This allows the port to be built with the 20050414 build of + WinAVR. + + GCC LPC2106 port - removed the 'static' from the definition of + vNonPreemptiveTick() to allow the demo to link when using the cooperative + scheduler. + + GCC LPC2106 port - Corrected the optimisation options in the batch files + ROM_THUMB.bat, RAM_THUMB.bat, ROM_ARM.bat and RAM_ARM.bat. The lower case + -o is replaced by an uppercase -O. + + Tasks.c - The strcpy call has been removed when copying across the task + name into the TCB. + + Updated the trace visualisation to always be 4 byte aligned so it can be + used on ARM architectures. + + There are now two tracecon executables (that convert the trace file binary + into an ASCII file). One for big endian targets and one for little endian + targets. + + Added ucTasksDeleted variable to prevent vTaskSuspendAll() being called + too often in the idle task. + + SAM7 USB driver - Replaced the duplicated RX_DATA_BK0 in the interrupt + mask with the RX_DATA_BK1. + + +Changes between V2.5.5 and V2.6.0 - Released January 16, 2005 + + + Added the API function vTaskDelayUntil(). The demo app file + Demo/Common/Minimal/flash.c has been updated to demonstrate its use. + + Added INCLUDE_vTaskDelay conditional compilation. + + Changed the name of the Demo/ARM7_AtmelSAM7S64_IAR directory to + Demo/ARM7_AT91SAM7S64_IAR for consistency. + + Modified the AT91SAM7S USB driver to allow descriptors that have + a length that is an exact multiple of the FIFO to be transmitted. + +Changes between V2.5.4 and V2.5.5 - Released January 3, 2005 + + This version adds support for the Atmel SAM7 ARM7 microcontrollers + along with the IAR development tools. + + Other changes: + + + Renamed the Demo/ARM7 directory to Demo/ARM7_LPC2106_GCC. + + Renamed the Demo/ARM7_Keil directory to Demo/ARM7_LPC2129_Keil. + + Modified the Philips ARM7 serial interrupt service routines to only + process one interrupt per call. This seems to enable the ISR to + operate more quickly. + + Removed the 'far' keyword from the Open Watcom portable layer source + files. This allows their use with V1.3 of Open Watcom. + + Minor modifications to the SDCC build files to allow their use under + Linux. Thanks to Frieder Ferlemann for this contribution. + + Small change to sTaskCreate() to allow a context switch even when + pxCreatedTask is NULL. Thanks to Kamil for this contribution. + + inline keyword removed from vTaskSwitchContext() and VTaskIncrementTick() + definitions. + +Changes between V2.5.3 and V2.5.4 - Released Dec 1, 2004 + + This is an important maintenance release. + + The function cTaskResumeAll() has been modified so it can be used safely + prior to the kernel being initialised. This was an issue as + cTaskResumeAll() is called from pvPortMalloc(). Thanks to Daniel Braun + for highlighting this issue. + +Changes between V2.5.2 and V2.5.3 - Released Nov 2, 2004 + + The critical section handling functions have been changed for the GCC ARM7 + port. Some optimisation levels use the stack differently to others. This + means the interrupt flags cannot always be stored on the stack and are + instead now stored in a variable, which is then saved as part of the + tasks context. This allows the GCC ARM7 port to be used at all + optimisation levels - including -Os. + + Other minor changes: + + + MSP430 definition of usCriticalNesting now uses the volatile qualifier. + This is probably not required but added just in case. + +Changes between V2.5.1 and V2.5.2 - Released Oct 26, 2004 + + + Added the Keil ARM7 port. + + Slight modification to comtest.c to make the delay periods more random. + This creates a better test condition. + +Changes between V2.5.0 and V2.5.1 - Released Oct 9, 2004 + + + Added the MSP430 port. + + Extra comments added to the GCC ARM7 port.c and portISR.c files. + + The memory pool allocated within heap_1.c has been placed within a + structure to ensure correct memory alignment on 32bit systems. + + Within the GCC ARM7 serial drivers an extra check is made to ensure + the post to the queue was successful if then attempting immediately + retrieve the posted character. + + Changed the name of the constant portTICKS_PER_MS to portTICK_PERIOD_MS + as the old name was misleading. + + +Changes between V2.4.2 and V2.5.0 - Released Aug 12, 2004 + + The RTOS source code download now includes three separate memory allocation + schemes - so you can choose the most appropriate for your application. + These are found in the Source/Portable/MemMang directory. The demo + application projects have also been updated to demonstrate the new schemes. + See the "Memory Management" page of the API documentation for more details. + + + Added heap_1.c, heap_2.c and heap_3.c in the Source/Portable/MemMang + directory. + + Replaced the portheap.c files for each demo application with one of the + new memory allocation files. + + Updated the portmacro.h file for each demo application to include the + constants required for the new memory allocators: portTOTAL_HEAP_SIZE and + portBYTE_ALIGNMENT. + + Added a new test to the ARM7 demo application that tests the operation + of the heap_2 memory allocator. + + +Changes between V2.4.1 and V2.4.2 - Released July 14, 2004 + + + The ARM7 port now supports THUMB mode. + + Modification to the ARM7 demo application serial port driver. + +Changes between V2.4.0 and V2.4.1 - Released July 2, 2004 + + + Rationalised the ARM7 port version of portEXIT_CRITICAL() - + improvements provided by Bill Knight. + + Made demo serial driver more complete and robust. + + +Changes between V2.4.0 and V2.3.1 - Released June 30, 2004 + + + Added the first ARM7 port - thanks to Bill Knight for the assistance + provided. + + Added extra files to the Demo/Common/Minimal directory. These are + equivalent to their Demo/Common/Full counterparts but with the + calls to the functions defined in print.c removed. + + Added TABLAT to the list of registers saved as part of a PIC18 context. + +Changes between V2.3.0 and V2.3.1 - Released June 25, 2004 + + + Changed the way the vector table is defined to be more portable. + + Corrected the definitions of SPH and SPL in portmacro.s90. + The previous definitions prevented V2.3.0 operating if the iom323.h + header file was included in portmacro.s90. + +Changes between V2.2.0 and V2.3.0 - Released June 19, 2004 + + + Added an AVR port that uses the IAR compiler. + + Explicit use of 'signed' qualifier on plain char types. + + Modified the Open Watcom project files to use 'signed' as the + default char type. + + Changed odd calculation of initial pxTopOfStack value when + portSTACK_GROWTH < 0. + + Added inline qualifier to context switch functions within task.c. + Ports that do not support the (non ANSI) inline keyword have the + inline #define'd away in their respective portmacro.h files. + +Changes between V2.1.1 and V2.2.0 - Released May 18, 2004 + + + Added Cygnal 8051 port. + + PCLATU and PCLATH are now saved as part of the PIC18 context. This + allows function pointers to be used within tasks. Thanks to Javier + Espeche for the enhancement. + + Minor changes to demo application files to reduce stack usage. + + Minor changes to prevent compiler warnings when compiling the new port. + +Changes between V2.1.0 and V2.1.1 - Released March 12, 2004 + + + Bug fix - pxCurrentTCB is now initialised before the call to + prvInitialiseTaskLists(). Previously pxCurrentTCB could be accessed + while null during the initialisation sequence. Thanks to Giuseppe + Franco for the correction. + +Changes between V2.0.0 and V2.1.0 - Released Feb 29, 2004 + + V2.1.0 has significant reworks that greatly reduce the amount of time + the kernel has interrupts disabled. The first section of modifications + listed here must be taken into account by users. The second section + are related to the kernel implementation and as such are transparent. + + Section1 : + + + The typedef TickType_t has been introduced. All delay times should + now use a variable of type TickType_t in place of the unsigned long's + used previously. API function prototypes have been updated + appropriately. + + The configuration macro USE_16_BIT_TICKS has been introduced. If set + to 1 TickType_t is defined as an unsigned short. If set to 0 + TickType_t is defined as an unsigned long. See the configuration + section of the API documentation for more details. + + The configuration macro INCLUDE_vTaskSuspendAll is now obsolete. + + vTaskResumeAll() has been renamed cTaskResumeAll() as it now returns a + value (see the API documentation). + + ulTaskGetTickCount() has been renamed xTaskGetTickCount() as the type + it returns now depends on the USE_16_BIT_TICKS definition. + + cQueueReceive() must now >never< be used from within an ISR. Use the new + cQueueReceiveFromISR() function instead. + + Section 2: + + + A mechanism has been introduced that allows a queue to be accessed by + a task and ISR simultaneously. + + A "pending ready" queue has been introduced that enables interrupts to + be processed when the scheduler is suspended. + + The list implementation has been improved to provide faster item + removal. + + The scheduler now makes use of the scheduler suspend mechanism in places + where previously interrupts were disabled. + +Changes between V1.2.6 and V2.0.0 - Released Jan 31, 2004 + + + Introduced new API functions: + vTaskPriorityGet () + vTaskPrioritySet () + vTaskSuspend () + vTaskResume () + vTaskSuspendAll () + vTaskResumeAll () + + Added conditional compilation options that allow the components of the + kernel that are unused by an application to be excluded from the build. + See the Configuration section on the WEB site for more information (on + the API pages). The macros have been added to each portmacro.h file ( + sometimes called prtmacro.h). + + Rearranged tasks.c. + + Added demo application file dynamic.c. + + Updated the PC demo application to make use of dynamic.c. + + Updated the documentation contained in the kernel header files. + + Creating a task now causes a context switch if the task being created + has a higher priority than the calling task - assuming the kernel is + running. + + vTaskDelete() now only causes a context switch if the calling task is + the task being deleted. + +Changes between V1.2.5 and V1.2.6 - Released December 31, 2003 + + Barring the change to the interrupt vector (PIC port) these are minor + enhancements. + + + The interrupt vector used for the PIC master ISR has been changed from + 0x18 to 0x08 - where it should have always been. The incorrect address + still works but probably executes a number of NOP's before getting to the + ISR. + + Changed the baud rate used by the AVR demo application to 38400. This + has an error percentage of less than one percent with an 8MHz clock. + + Raised the priority of the Rx task in demo\full\comtest.c. This only + affects the Flashlite and PC ports. This was done to prevent the Rx + buffer becoming full. + + Reverted the Flashlite COM port driver back so it does not use the DMA. + The DMA appears to miss characters under stress. The Borland Flashlite + port was also calculating a register value incorrectly resulting in the + wrong DMA source address being used. The same code worked fine when + compiling with Open Watcom. Other minor enhancements were made to the + interrupt handling. + + Modified the PIC serial Rx ISR to check for and clear overrun errors. + Overrun errors seem to prevent any further characters being received. + + The PIC demo projects now have some optimisation switched on. + + +Changes between V1.2.4 and V1.2.5 + + Small fix made to the PIC specific port.c file described below. + + + Introduced portGLOBAL_INTERRUPT_FLAG definition to test the global + interrupt flag setting. Using the two bits defined within + portINITAL_INTERRUPT_STATE was causing the w register to get clobbered + before the test was performed. + +Changes between V1.2.3 and V1.2.4 + + V1.2.4 contains a release version of the PIC18 port. + An optional exception has been included with the GPL. See the licensing + section of www.FreeRTOS.org for details. + + + The function xPortInitMinimal() has been renamed to + xSerialPortInitMinimal() and the function xPortInit() has been renamed + to xSerialPortInit(). + + The function sSerialPutChar() has been renamed cSerialPutChar() and + the function return type chaned to portCHAR. + + The integer and flop tasks now include calls to tskYIELD(), allowing + them to be used with the cooperative scheduler. + + All the demo applications now use the integer and comtest tasks when the + cooperative scheduler is being used. Previously they were only used with + the preemptive scheduler. + + Minor changes made to operation of minimal versions of comtest.c and + integer.c. + + The ATMega port definition of portCPU_CLOSK_HZ definition changed to + 8MHz base 10, previously it base 16. + + + +Changes between V1.2.2a and V1.2.3 + + The only change of any significance is to the license, which has changed + from the Open Software License to the GNU GPL. + + The zip file also contains a pre-release version of the PIC18 port. This + has not yet completed testing and as such does not constitute part of the + V1.2.3 release. It is still however covered by the GNU GPL. + + There are minor source code changes to accommodate the PIC C compiler. + These mainly involve more explicit casting. + + + sTaskCreate() has been modified slightly to make use of the + portSTACK_GROWTH macro. This is required for the PIC port where the + stack grows in the opposite direction to the other existing ports. + + prvCheckTasksWaitingTermination() has been modified slightly to bring + the decrementing of usCurrentNumberOfTasks within the critical section, + where it should have been since the creation of an eight bit port. + +Changes between V1.2.2 and V1.2.2a + + The makefile and buildcoff.bat files included with the AVR demo application + have been modified for use with the September 2003 build of WinAVR. No + source files have changed. + +Changes between V1.2.1 and V1.2.2 + + There are only minor changes here to allow the PC and Flashlite 186 ports + to use the Borland V4.52 compiler, as supplied with the Flashlite 186 + development kit. + + + Introduced a BCC directory under source\portable. This contains all the + files specific to the Borland compiler port. + + Corrected the macro naming of portMS_PER_TICK to portTICKS_PER_MS. + + Modified comtest.c to increase the rate at which the string is + transmitted and received on the serial port. The Flashlite 186 demo + app baud rate has also been increased. + + The values of the constants used in both integer.c files have been + increased to force the Borland compiler to use 32 bit values. The + Borland optimiser placed the previous values in 16 bit registers, and in + So doing invalidated the test. + +Changes between V1.2.0 and V1.2.1 + + This version includes some minor changes to the list implementation aimed + at improving the context switch time - with is now approximately 10% faster. + Changes include the removal of some null pointer assignment checks. These + were redundant where the scheduler uses the list functions, but means any + user application choosing to use the same list functions must now check + that no NULL pointers are passed as a parameter. + + The Flashlite 186 serial port driver has also been modified to use a DMA + channel for transmissions. The serial driver is fully functional but still + under development. Flashlite users may prefer to use V1.2.0 for now. + + Details: + + + Changed the baud rate for the ATMega323 serial test from 19200 to 57600. + + Use vSerialPutString() instead of single character puts in + Demo\Full\Comtest.c. This allows the use of the flashlite DMA serial + driver. Also the check variable only stops incrementing after two + consecutive failures. + + semtest.c creates four tasks, two of which operate at the idle priority. + The tasks that operate at the idle priority now use a lower expected + count than those running at a higher priority. This prevents the low + priority tasks from signalling an error because they have not been + scheduled enough time for each of them to count the shared variable to + the higher original value. + + The flashlite 186 serial driver now uses a DMA channel for transmissions. + + Removed the volatile modifier from the list function parameters. This was + only ever included to prevent compiler warnings. Now warnings are + removed by casting parameters where the calls are made. + + prvListGetOwnerOfNextEntry() and prvListGetOwnerOfHeadEntry() have been + removed from list.c and added as macros in list.h. + + usNumberOfItems has been added to the list structure. This removes the + need for a pointer comparison when checking if a list is empty, and so + is slightly faster. + + Removed the NULL check in vListRemove(). This makes the call faster but + necessitates any application code utilising the list implementation to + ensure NULL pointers are not passed. + + Renamed portTICKS_PER_MS definition to portMS_PER_TICK (milli seconds + per tick). This is what it always should have been. + +Changes between V1.01 and V1.2.0 + + The majority of these changes were made to accommodate the 8bit AVR port. + The scheduler workings have not changed, but some of the data types used + have been made more friendly to an eight bit environment. + + Details: + + + Changed the version numbering format. + + Added AVR port. + + Split the directory demo\common into demo\common\minimal and + demo\common\full. The files in the full directory are for systems with + a display (currently PC and Flashlite 186 demo's). The files in the + minimal directory are for systems with limited RAM and no display + (currently MegaAVR). + + Minor changes to demo application function prototypes to make more use + of 8bit data types. + + Within the scheduler itself the following functions have slightly + modified declarations to make use of 8bit data types where possible: + xQueueCreate(), + sQueueReceive(), + sQUeueReceive(), + usQueueMessageWaiting(), + sQueueSendFromISR(), + sSemaphoreTake(), + sSemaphoreGive(), + sSemaphoreGiveFromISR(), + sTaskCreate(), + sTaskMoveFromEventList(). + + Where the return type has changed the function name has also changed in + accordance with the naming convention. For example + usQueueMessageWaiting() has become ucQueueMessageWaiting(). + + The definition tskMAX_PRIORITIES has been moved from task.h to + portmacro.h and renamed portMAX_PRIORITIES. This allows different + ports to allocate a different maximum number of priorities. + + By default the trace facility is off, previously USE_TRACE_FACILITY + was defined. + + comtest.c now uses a psuedo random delay between sends. This allows for + better testing as the interrupts do not arrive at regular intervals. + + Minor change to the Flashlite serial port driver. The driver is written + to demonstrate the scheduler and is not written to be efficient. + + + +Changes between V1.00 and V1.01 + + These changes improve the ports. The scheduler itself has not changed. + + Improved context switch mechanism used when performing a context + switch from an ISR (both the tick ISR and the serial comms ISR's within + the demo application). The new mechanism is faster and uses less stack. + + The assembler file portasm.asm has been replaced by a header file + portasm.h. This includes a few assembler macro definitions. + + All saving and restoring of registers onto/off of the stack is now handled + by the compiler. This means the initial stack setup for a task has to + mimic the stack used by the compiler, which is different for debug and + release builds. + + Slightly changed the operation of the demo application, details below. + + Details: + + + portSWITCH_CONTEXT() replaced by vPortFirstContext(). + + pxPortInitialiseStack() modified to replicate the stack used by the + compiler. + + portasm.asm file removed. + + portasm.h introduced. This contains macro definitions for + portSWITCH_CONTEXT() and portFIRST_CONTEXT(). + + Context switch from ISR now uses the compiler generated interrupt + mechanism. This is done simply by calling portSWITCH_CONTEXT and leaving + the save/restore to compiler generated code. + + Calls to taskYIELD() during ISR's have been replaced by calling the + simpler and faster portSWITCH_CONTEXT(). + + The Flashlite 186 port now uses 186 instruction set (used to use 80x86 + instructions only). + + The blocking queue tasks within the demo application did not operate + quite as described. This has been corrected. + + The priority of the comtest Rx task within the demo application has been + lowered. Received characters are now processed (read from the queue) at + the idle priority, allowing low priority tasks to run evenly at times of + a high communications overhead. + + Prevent the call to kbhit() in main.c for debug builds as the debugger + seems to have problems stepping over the call. This if for the PC port + only. + + + diff --git a/rtos/freertos/abstraction_layer_freertos/scr/Quick_Start_Guide.url b/rtos/freertos/abstraction_layer_freertos/scr/Quick_Start_Guide.url new file mode 100644 index 00000000..be74fdc9 --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/scr/Quick_Start_Guide.url @@ -0,0 +1,5 @@ +[InternetShortcut] +URL=http://www.freertos.org/FreeRTOS-quick-start-guide.html +IDList= +[{000214A0-0000-0000-C000-000000000046}] +Prop3=19,2 diff --git a/rtos/freertos/abstraction_layer_freertos/scr/croutine.c b/rtos/freertos/abstraction_layer_freertos/scr/croutine.c new file mode 100644 index 00000000..69bf614a --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/scr/croutine.c @@ -0,0 +1,353 @@ +/* + * FreeRTOS Kernel V10.3.0 + * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * + * http://www.FreeRTOS.org + * http://aws.amazon.com/freertos + * + * 1 tab == 4 spaces! + */ + +#include "FreeRTOS.h" +#include "task.h" +#include "croutine.h" + +/* Remove the whole file is co-routines are not being used. */ +#if( configUSE_CO_ROUTINES != 0 ) + +/* + * Some kernel aware debuggers require data to be viewed to be global, rather + * than file scope. + */ +#ifdef portREMOVE_STATIC_QUALIFIER + #define static +#endif + + +/* Lists for ready and blocked co-routines. --------------------*/ +static List_t pxReadyCoRoutineLists[ configMAX_CO_ROUTINE_PRIORITIES ]; /*< Prioritised ready co-routines. */ +static List_t xDelayedCoRoutineList1; /*< Delayed co-routines. */ +static List_t xDelayedCoRoutineList2; /*< Delayed co-routines (two lists are used - one for delays that have overflowed the current tick count. */ +static List_t * pxDelayedCoRoutineList; /*< Points to the delayed co-routine list currently being used. */ +static List_t * pxOverflowDelayedCoRoutineList; /*< Points to the delayed co-routine list currently being used to hold co-routines that have overflowed the current tick count. */ +static List_t xPendingReadyCoRoutineList; /*< Holds co-routines that have been readied by an external event. They cannot be added directly to the ready lists as the ready lists cannot be accessed by interrupts. */ + +/* Other file private variables. --------------------------------*/ +CRCB_t * pxCurrentCoRoutine = NULL; +static UBaseType_t uxTopCoRoutineReadyPriority = 0; +static TickType_t xCoRoutineTickCount = 0, xLastTickCount = 0, xPassedTicks = 0; + +/* The initial state of the co-routine when it is created. */ +#define corINITIAL_STATE ( 0 ) + +/* + * Place the co-routine represented by pxCRCB into the appropriate ready queue + * for the priority. It is inserted at the end of the list. + * + * This macro accesses the co-routine ready lists and therefore must not be + * used from within an ISR. + */ +#define prvAddCoRoutineToReadyQueue( pxCRCB ) \ +{ \ + if( pxCRCB->uxPriority > uxTopCoRoutineReadyPriority ) \ + { \ + uxTopCoRoutineReadyPriority = pxCRCB->uxPriority; \ + } \ + vListInsertEnd( ( List_t * ) &( pxReadyCoRoutineLists[ pxCRCB->uxPriority ] ), &( pxCRCB->xGenericListItem ) ); \ +} + +/* + * Utility to ready all the lists used by the scheduler. This is called + * automatically upon the creation of the first co-routine. + */ +static void prvInitialiseCoRoutineLists( void ); + +/* + * Co-routines that are readied by an interrupt cannot be placed directly into + * the ready lists (there is no mutual exclusion). Instead they are placed in + * in the pending ready list in order that they can later be moved to the ready + * list by the co-routine scheduler. + */ +static void prvCheckPendingReadyList( void ); + +/* + * Macro that looks at the list of co-routines that are currently delayed to + * see if any require waking. + * + * Co-routines are stored in the queue in the order of their wake time - + * meaning once one co-routine has been found whose timer has not expired + * we need not look any further down the list. + */ +static void prvCheckDelayedList( void ); + +/*-----------------------------------------------------------*/ + +BaseType_t xCoRoutineCreate( crCOROUTINE_CODE pxCoRoutineCode, UBaseType_t uxPriority, UBaseType_t uxIndex ) +{ +BaseType_t xReturn; +CRCB_t *pxCoRoutine; + + /* Allocate the memory that will store the co-routine control block. */ + pxCoRoutine = ( CRCB_t * ) pvPortMalloc( sizeof( CRCB_t ) ); + if( pxCoRoutine ) + { + /* If pxCurrentCoRoutine is NULL then this is the first co-routine to + be created and the co-routine data structures need initialising. */ + if( pxCurrentCoRoutine == NULL ) + { + pxCurrentCoRoutine = pxCoRoutine; + prvInitialiseCoRoutineLists(); + } + + /* Check the priority is within limits. */ + if( uxPriority >= configMAX_CO_ROUTINE_PRIORITIES ) + { + uxPriority = configMAX_CO_ROUTINE_PRIORITIES - 1; + } + + /* Fill out the co-routine control block from the function parameters. */ + pxCoRoutine->uxState = corINITIAL_STATE; + pxCoRoutine->uxPriority = uxPriority; + pxCoRoutine->uxIndex = uxIndex; + pxCoRoutine->pxCoRoutineFunction = pxCoRoutineCode; + + /* Initialise all the other co-routine control block parameters. */ + vListInitialiseItem( &( pxCoRoutine->xGenericListItem ) ); + vListInitialiseItem( &( pxCoRoutine->xEventListItem ) ); + + /* Set the co-routine control block as a link back from the ListItem_t. + This is so we can get back to the containing CRCB from a generic item + in a list. */ + listSET_LIST_ITEM_OWNER( &( pxCoRoutine->xGenericListItem ), pxCoRoutine ); + listSET_LIST_ITEM_OWNER( &( pxCoRoutine->xEventListItem ), pxCoRoutine ); + + /* Event lists are always in priority order. */ + listSET_LIST_ITEM_VALUE( &( pxCoRoutine->xEventListItem ), ( ( TickType_t ) configMAX_CO_ROUTINE_PRIORITIES - ( TickType_t ) uxPriority ) ); + + /* Now the co-routine has been initialised it can be added to the ready + list at the correct priority. */ + prvAddCoRoutineToReadyQueue( pxCoRoutine ); + + xReturn = pdPASS; + } + else + { + xReturn = errCOULD_NOT_ALLOCATE_REQUIRED_MEMORY; + } + + return xReturn; +} +/*-----------------------------------------------------------*/ + +void vCoRoutineAddToDelayedList( TickType_t xTicksToDelay, List_t *pxEventList ) +{ +TickType_t xTimeToWake; + + /* Calculate the time to wake - this may overflow but this is + not a problem. */ + xTimeToWake = xCoRoutineTickCount + xTicksToDelay; + + /* We must remove ourselves from the ready list before adding + ourselves to the blocked list as the same list item is used for + both lists. */ + ( void ) uxListRemove( ( ListItem_t * ) &( pxCurrentCoRoutine->xGenericListItem ) ); + + /* The list item will be inserted in wake time order. */ + listSET_LIST_ITEM_VALUE( &( pxCurrentCoRoutine->xGenericListItem ), xTimeToWake ); + + if( xTimeToWake < xCoRoutineTickCount ) + { + /* Wake time has overflowed. Place this item in the + overflow list. */ + vListInsert( ( List_t * ) pxOverflowDelayedCoRoutineList, ( ListItem_t * ) &( pxCurrentCoRoutine->xGenericListItem ) ); + } + else + { + /* The wake time has not overflowed, so we can use the + current block list. */ + vListInsert( ( List_t * ) pxDelayedCoRoutineList, ( ListItem_t * ) &( pxCurrentCoRoutine->xGenericListItem ) ); + } + + if( pxEventList ) + { + /* Also add the co-routine to an event list. If this is done then the + function must be called with interrupts disabled. */ + vListInsert( pxEventList, &( pxCurrentCoRoutine->xEventListItem ) ); + } +} +/*-----------------------------------------------------------*/ + +static void prvCheckPendingReadyList( void ) +{ + /* Are there any co-routines waiting to get moved to the ready list? These + are co-routines that have been readied by an ISR. The ISR cannot access + the ready lists itself. */ + while( listLIST_IS_EMPTY( &xPendingReadyCoRoutineList ) == pdFALSE ) + { + CRCB_t *pxUnblockedCRCB; + + /* The pending ready list can be accessed by an ISR. */ + portDISABLE_INTERRUPTS(); + { + pxUnblockedCRCB = ( CRCB_t * ) listGET_OWNER_OF_HEAD_ENTRY( (&xPendingReadyCoRoutineList) ); + ( void ) uxListRemove( &( pxUnblockedCRCB->xEventListItem ) ); + } + portENABLE_INTERRUPTS(); + + ( void ) uxListRemove( &( pxUnblockedCRCB->xGenericListItem ) ); + prvAddCoRoutineToReadyQueue( pxUnblockedCRCB ); + } +} +/*-----------------------------------------------------------*/ + +static void prvCheckDelayedList( void ) +{ +CRCB_t *pxCRCB; + + xPassedTicks = xTaskGetTickCount() - xLastTickCount; + while( xPassedTicks ) + { + xCoRoutineTickCount++; + xPassedTicks--; + + /* If the tick count has overflowed we need to swap the ready lists. */ + if( xCoRoutineTickCount == 0 ) + { + List_t * pxTemp; + + /* Tick count has overflowed so we need to swap the delay lists. If there are + any items in pxDelayedCoRoutineList here then there is an error! */ + pxTemp = pxDelayedCoRoutineList; + pxDelayedCoRoutineList = pxOverflowDelayedCoRoutineList; + pxOverflowDelayedCoRoutineList = pxTemp; + } + + /* See if this tick has made a timeout expire. */ + while( listLIST_IS_EMPTY( pxDelayedCoRoutineList ) == pdFALSE ) + { + pxCRCB = ( CRCB_t * ) listGET_OWNER_OF_HEAD_ENTRY( pxDelayedCoRoutineList ); + + if( xCoRoutineTickCount < listGET_LIST_ITEM_VALUE( &( pxCRCB->xGenericListItem ) ) ) + { + /* Timeout not yet expired. */ + break; + } + + portDISABLE_INTERRUPTS(); + { + /* The event could have occurred just before this critical + section. If this is the case then the generic list item will + have been moved to the pending ready list and the following + line is still valid. Also the pvContainer parameter will have + been set to NULL so the following lines are also valid. */ + ( void ) uxListRemove( &( pxCRCB->xGenericListItem ) ); + + /* Is the co-routine waiting on an event also? */ + if( pxCRCB->xEventListItem.pxContainer ) + { + ( void ) uxListRemove( &( pxCRCB->xEventListItem ) ); + } + } + portENABLE_INTERRUPTS(); + + prvAddCoRoutineToReadyQueue( pxCRCB ); + } + } + + xLastTickCount = xCoRoutineTickCount; +} +/*-----------------------------------------------------------*/ + +void vCoRoutineSchedule( void ) +{ + /* See if any co-routines readied by events need moving to the ready lists. */ + prvCheckPendingReadyList(); + + /* See if any delayed co-routines have timed out. */ + prvCheckDelayedList(); + + /* Find the highest priority queue that contains ready co-routines. */ + while( listLIST_IS_EMPTY( &( pxReadyCoRoutineLists[ uxTopCoRoutineReadyPriority ] ) ) ) + { + if( uxTopCoRoutineReadyPriority == 0 ) + { + /* No more co-routines to check. */ + return; + } + --uxTopCoRoutineReadyPriority; + } + + /* listGET_OWNER_OF_NEXT_ENTRY walks through the list, so the co-routines + of the same priority get an equal share of the processor time. */ + listGET_OWNER_OF_NEXT_ENTRY( pxCurrentCoRoutine, &( pxReadyCoRoutineLists[ uxTopCoRoutineReadyPriority ] ) ); + + /* Call the co-routine. */ + ( pxCurrentCoRoutine->pxCoRoutineFunction )( pxCurrentCoRoutine, pxCurrentCoRoutine->uxIndex ); + + return; +} +/*-----------------------------------------------------------*/ + +static void prvInitialiseCoRoutineLists( void ) +{ +UBaseType_t uxPriority; + + for( uxPriority = 0; uxPriority < configMAX_CO_ROUTINE_PRIORITIES; uxPriority++ ) + { + vListInitialise( ( List_t * ) &( pxReadyCoRoutineLists[ uxPriority ] ) ); + } + + vListInitialise( ( List_t * ) &xDelayedCoRoutineList1 ); + vListInitialise( ( List_t * ) &xDelayedCoRoutineList2 ); + vListInitialise( ( List_t * ) &xPendingReadyCoRoutineList ); + + /* Start with pxDelayedCoRoutineList using list1 and the + pxOverflowDelayedCoRoutineList using list2. */ + pxDelayedCoRoutineList = &xDelayedCoRoutineList1; + pxOverflowDelayedCoRoutineList = &xDelayedCoRoutineList2; +} +/*-----------------------------------------------------------*/ + +BaseType_t xCoRoutineRemoveFromEventList( const List_t *pxEventList ) +{ +CRCB_t *pxUnblockedCRCB; +BaseType_t xReturn; + + /* This function is called from within an interrupt. It can only access + event lists and the pending ready list. This function assumes that a + check has already been made to ensure pxEventList is not empty. */ + pxUnblockedCRCB = ( CRCB_t * ) listGET_OWNER_OF_HEAD_ENTRY( pxEventList ); + ( void ) uxListRemove( &( pxUnblockedCRCB->xEventListItem ) ); + vListInsertEnd( ( List_t * ) &( xPendingReadyCoRoutineList ), &( pxUnblockedCRCB->xEventListItem ) ); + + if( pxUnblockedCRCB->uxPriority >= pxCurrentCoRoutine->uxPriority ) + { + xReturn = pdTRUE; + } + else + { + xReturn = pdFALSE; + } + + return xReturn; +} + +#endif /* configUSE_CO_ROUTINES == 0 */ + diff --git a/rtos/freertos/abstraction_layer_freertos/scr/event_groups.c b/rtos/freertos/abstraction_layer_freertos/scr/event_groups.c new file mode 100644 index 00000000..03cef5bd --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/scr/event_groups.c @@ -0,0 +1,753 @@ +/* + * FreeRTOS Kernel V10.3.0 + * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * + * http://www.FreeRTOS.org + * http://aws.amazon.com/freertos + * + * 1 tab == 4 spaces! + */ + +/* Standard includes. */ +#include + +/* Defining MPU_WRAPPERS_INCLUDED_FROM_API_FILE prevents task.h from redefining +all the API functions to use the MPU wrappers. That should only be done when +task.h is included from an application file. */ +#define MPU_WRAPPERS_INCLUDED_FROM_API_FILE + +/* FreeRTOS includes. */ +#include "FreeRTOS.h" +#include "task.h" +#include "timers.h" +#include "event_groups.h" + +/* Lint e961, e750 and e9021 are suppressed as a MISRA exception justified +because the MPU ports require MPU_WRAPPERS_INCLUDED_FROM_API_FILE to be defined +for the header files above, but not in this file, in order to generate the +correct privileged Vs unprivileged linkage and placement. */ +#undef MPU_WRAPPERS_INCLUDED_FROM_API_FILE /*lint !e961 !e750 !e9021 See comment above. */ + +/* The following bit fields convey control information in a task's event list +item value. It is important they don't clash with the +taskEVENT_LIST_ITEM_VALUE_IN_USE definition. */ +#if configUSE_16_BIT_TICKS == 1 + #define eventCLEAR_EVENTS_ON_EXIT_BIT 0x0100U + #define eventUNBLOCKED_DUE_TO_BIT_SET 0x0200U + #define eventWAIT_FOR_ALL_BITS 0x0400U + #define eventEVENT_BITS_CONTROL_BYTES 0xff00U +#else + #define eventCLEAR_EVENTS_ON_EXIT_BIT 0x01000000UL + #define eventUNBLOCKED_DUE_TO_BIT_SET 0x02000000UL + #define eventWAIT_FOR_ALL_BITS 0x04000000UL + #define eventEVENT_BITS_CONTROL_BYTES 0xff000000UL +#endif + +typedef struct EventGroupDef_t +{ + EventBits_t uxEventBits; + List_t xTasksWaitingForBits; /*< List of tasks waiting for a bit to be set. */ + + #if( configUSE_TRACE_FACILITY == 1 ) + UBaseType_t uxEventGroupNumber; + #endif + + #if( ( configSUPPORT_STATIC_ALLOCATION == 1 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) ) + uint8_t ucStaticallyAllocated; /*< Set to pdTRUE if the event group is statically allocated to ensure no attempt is made to free the memory. */ + #endif +} EventGroup_t; + +/*-----------------------------------------------------------*/ + +/* + * Test the bits set in uxCurrentEventBits to see if the wait condition is met. + * The wait condition is defined by xWaitForAllBits. If xWaitForAllBits is + * pdTRUE then the wait condition is met if all the bits set in uxBitsToWaitFor + * are also set in uxCurrentEventBits. If xWaitForAllBits is pdFALSE then the + * wait condition is met if any of the bits set in uxBitsToWait for are also set + * in uxCurrentEventBits. + */ +static BaseType_t prvTestWaitCondition( const EventBits_t uxCurrentEventBits, const EventBits_t uxBitsToWaitFor, const BaseType_t xWaitForAllBits ) PRIVILEGED_FUNCTION; + +/*-----------------------------------------------------------*/ + +#if( configSUPPORT_STATIC_ALLOCATION == 1 ) + + EventGroupHandle_t xEventGroupCreateStatic( StaticEventGroup_t *pxEventGroupBuffer ) + { + EventGroup_t *pxEventBits; + + /* A StaticEventGroup_t object must be provided. */ + configASSERT( pxEventGroupBuffer ); + + #if( configASSERT_DEFINED == 1 ) + { + /* Sanity check that the size of the structure used to declare a + variable of type StaticEventGroup_t equals the size of the real + event group structure. */ + volatile size_t xSize = sizeof( StaticEventGroup_t ); + configASSERT( xSize == sizeof( EventGroup_t ) ); + } /*lint !e529 xSize is referenced if configASSERT() is defined. */ + #endif /* configASSERT_DEFINED */ + + /* The user has provided a statically allocated event group - use it. */ + pxEventBits = ( EventGroup_t * ) pxEventGroupBuffer; /*lint !e740 !e9087 EventGroup_t and StaticEventGroup_t are deliberately aliased for data hiding purposes and guaranteed to have the same size and alignment requirement - checked by configASSERT(). */ + + if( pxEventBits != NULL ) + { + pxEventBits->uxEventBits = 0; + vListInitialise( &( pxEventBits->xTasksWaitingForBits ) ); + + #if( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) + { + /* Both static and dynamic allocation can be used, so note that + this event group was created statically in case the event group + is later deleted. */ + pxEventBits->ucStaticallyAllocated = pdTRUE; + } + #endif /* configSUPPORT_DYNAMIC_ALLOCATION */ + + traceEVENT_GROUP_CREATE( pxEventBits ); + } + else + { + /* xEventGroupCreateStatic should only ever be called with + pxEventGroupBuffer pointing to a pre-allocated (compile time + allocated) StaticEventGroup_t variable. */ + traceEVENT_GROUP_CREATE_FAILED(); + } + + return pxEventBits; + } + +#endif /* configSUPPORT_STATIC_ALLOCATION */ +/*-----------------------------------------------------------*/ + +#if( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) + + EventGroupHandle_t xEventGroupCreate( void ) + { + EventGroup_t *pxEventBits; + + /* Allocate the event group. Justification for MISRA deviation as + follows: pvPortMalloc() always ensures returned memory blocks are + aligned per the requirements of the MCU stack. In this case + pvPortMalloc() must return a pointer that is guaranteed to meet the + alignment requirements of the EventGroup_t structure - which (if you + follow it through) is the alignment requirements of the TickType_t type + (EventBits_t being of TickType_t itself). Therefore, whenever the + stack alignment requirements are greater than or equal to the + TickType_t alignment requirements the cast is safe. In other cases, + where the natural word size of the architecture is less than + sizeof( TickType_t ), the TickType_t variables will be accessed in two + or more reads operations, and the alignment requirements is only that + of each individual read. */ + pxEventBits = ( EventGroup_t * ) pvPortMalloc( sizeof( EventGroup_t ) ); /*lint !e9087 !e9079 see comment above. */ + + if( pxEventBits != NULL ) + { + pxEventBits->uxEventBits = 0; + vListInitialise( &( pxEventBits->xTasksWaitingForBits ) ); + + #if( configSUPPORT_STATIC_ALLOCATION == 1 ) + { + /* Both static and dynamic allocation can be used, so note this + event group was allocated statically in case the event group is + later deleted. */ + pxEventBits->ucStaticallyAllocated = pdFALSE; + } + #endif /* configSUPPORT_STATIC_ALLOCATION */ + + traceEVENT_GROUP_CREATE( pxEventBits ); + } + else + { + traceEVENT_GROUP_CREATE_FAILED(); /*lint !e9063 Else branch only exists to allow tracing and does not generate code if trace macros are not defined. */ + } + + return pxEventBits; + } + +#endif /* configSUPPORT_DYNAMIC_ALLOCATION */ +/*-----------------------------------------------------------*/ + +EventBits_t xEventGroupSync( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToSet, const EventBits_t uxBitsToWaitFor, TickType_t xTicksToWait ) +{ +EventBits_t uxOriginalBitValue, uxReturn; +EventGroup_t *pxEventBits = xEventGroup; +BaseType_t xAlreadyYielded; +BaseType_t xTimeoutOccurred = pdFALSE; + + configASSERT( ( uxBitsToWaitFor & eventEVENT_BITS_CONTROL_BYTES ) == 0 ); + configASSERT( uxBitsToWaitFor != 0 ); + #if ( ( INCLUDE_xTaskGetSchedulerState == 1 ) || ( configUSE_TIMERS == 1 ) ) + { + configASSERT( !( ( xTaskGetSchedulerState() == taskSCHEDULER_SUSPENDED ) && ( xTicksToWait != 0 ) ) ); + } + #endif + + vTaskSuspendAll(); + { + uxOriginalBitValue = pxEventBits->uxEventBits; + + ( void ) xEventGroupSetBits( xEventGroup, uxBitsToSet ); + + if( ( ( uxOriginalBitValue | uxBitsToSet ) & uxBitsToWaitFor ) == uxBitsToWaitFor ) + { + /* All the rendezvous bits are now set - no need to block. */ + uxReturn = ( uxOriginalBitValue | uxBitsToSet ); + + /* Rendezvous always clear the bits. They will have been cleared + already unless this is the only task in the rendezvous. */ + pxEventBits->uxEventBits &= ~uxBitsToWaitFor; + + xTicksToWait = 0; + } + else + { + if( xTicksToWait != ( TickType_t ) 0 ) + { + traceEVENT_GROUP_SYNC_BLOCK( xEventGroup, uxBitsToSet, uxBitsToWaitFor ); + + /* Store the bits that the calling task is waiting for in the + task's event list item so the kernel knows when a match is + found. Then enter the blocked state. */ + vTaskPlaceOnUnorderedEventList( &( pxEventBits->xTasksWaitingForBits ), ( uxBitsToWaitFor | eventCLEAR_EVENTS_ON_EXIT_BIT | eventWAIT_FOR_ALL_BITS ), xTicksToWait ); + + /* This assignment is obsolete as uxReturn will get set after + the task unblocks, but some compilers mistakenly generate a + warning about uxReturn being returned without being set if the + assignment is omitted. */ + uxReturn = 0; + } + else + { + /* The rendezvous bits were not set, but no block time was + specified - just return the current event bit value. */ + uxReturn = pxEventBits->uxEventBits; + xTimeoutOccurred = pdTRUE; + } + } + } + xAlreadyYielded = xTaskResumeAll(); + + if( xTicksToWait != ( TickType_t ) 0 ) + { + if( xAlreadyYielded == pdFALSE ) + { + portYIELD_WITHIN_API(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* The task blocked to wait for its required bits to be set - at this + point either the required bits were set or the block time expired. If + the required bits were set they will have been stored in the task's + event list item, and they should now be retrieved then cleared. */ + uxReturn = uxTaskResetEventItemValue(); + + if( ( uxReturn & eventUNBLOCKED_DUE_TO_BIT_SET ) == ( EventBits_t ) 0 ) + { + /* The task timed out, just return the current event bit value. */ + taskENTER_CRITICAL(); + { + uxReturn = pxEventBits->uxEventBits; + + /* Although the task got here because it timed out before the + bits it was waiting for were set, it is possible that since it + unblocked another task has set the bits. If this is the case + then it needs to clear the bits before exiting. */ + if( ( uxReturn & uxBitsToWaitFor ) == uxBitsToWaitFor ) + { + pxEventBits->uxEventBits &= ~uxBitsToWaitFor; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + taskEXIT_CRITICAL(); + + xTimeoutOccurred = pdTRUE; + } + else + { + /* The task unblocked because the bits were set. */ + } + + /* Control bits might be set as the task had blocked should not be + returned. */ + uxReturn &= ~eventEVENT_BITS_CONTROL_BYTES; + } + + traceEVENT_GROUP_SYNC_END( xEventGroup, uxBitsToSet, uxBitsToWaitFor, xTimeoutOccurred ); + + /* Prevent compiler warnings when trace macros are not used. */ + ( void ) xTimeoutOccurred; + + return uxReturn; +} +/*-----------------------------------------------------------*/ + +EventBits_t xEventGroupWaitBits( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToWaitFor, const BaseType_t xClearOnExit, const BaseType_t xWaitForAllBits, TickType_t xTicksToWait ) +{ +EventGroup_t *pxEventBits = xEventGroup; +EventBits_t uxReturn, uxControlBits = 0; +BaseType_t xWaitConditionMet, xAlreadyYielded; +BaseType_t xTimeoutOccurred = pdFALSE; + + /* Check the user is not attempting to wait on the bits used by the kernel + itself, and that at least one bit is being requested. */ + configASSERT( xEventGroup ); + configASSERT( ( uxBitsToWaitFor & eventEVENT_BITS_CONTROL_BYTES ) == 0 ); + configASSERT( uxBitsToWaitFor != 0 ); + #if ( ( INCLUDE_xTaskGetSchedulerState == 1 ) || ( configUSE_TIMERS == 1 ) ) + { + configASSERT( !( ( xTaskGetSchedulerState() == taskSCHEDULER_SUSPENDED ) && ( xTicksToWait != 0 ) ) ); + } + #endif + + vTaskSuspendAll(); + { + const EventBits_t uxCurrentEventBits = pxEventBits->uxEventBits; + + /* Check to see if the wait condition is already met or not. */ + xWaitConditionMet = prvTestWaitCondition( uxCurrentEventBits, uxBitsToWaitFor, xWaitForAllBits ); + + if( xWaitConditionMet != pdFALSE ) + { + /* The wait condition has already been met so there is no need to + block. */ + uxReturn = uxCurrentEventBits; + xTicksToWait = ( TickType_t ) 0; + + /* Clear the wait bits if requested to do so. */ + if( xClearOnExit != pdFALSE ) + { + pxEventBits->uxEventBits &= ~uxBitsToWaitFor; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else if( xTicksToWait == ( TickType_t ) 0 ) + { + /* The wait condition has not been met, but no block time was + specified, so just return the current value. */ + uxReturn = uxCurrentEventBits; + xTimeoutOccurred = pdTRUE; + } + else + { + /* The task is going to block to wait for its required bits to be + set. uxControlBits are used to remember the specified behaviour of + this call to xEventGroupWaitBits() - for use when the event bits + unblock the task. */ + if( xClearOnExit != pdFALSE ) + { + uxControlBits |= eventCLEAR_EVENTS_ON_EXIT_BIT; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + if( xWaitForAllBits != pdFALSE ) + { + uxControlBits |= eventWAIT_FOR_ALL_BITS; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* Store the bits that the calling task is waiting for in the + task's event list item so the kernel knows when a match is + found. Then enter the blocked state. */ + vTaskPlaceOnUnorderedEventList( &( pxEventBits->xTasksWaitingForBits ), ( uxBitsToWaitFor | uxControlBits ), xTicksToWait ); + + /* This is obsolete as it will get set after the task unblocks, but + some compilers mistakenly generate a warning about the variable + being returned without being set if it is not done. */ + uxReturn = 0; + + traceEVENT_GROUP_WAIT_BITS_BLOCK( xEventGroup, uxBitsToWaitFor ); + } + } + xAlreadyYielded = xTaskResumeAll(); + + if( xTicksToWait != ( TickType_t ) 0 ) + { + if( xAlreadyYielded == pdFALSE ) + { + portYIELD_WITHIN_API(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* The task blocked to wait for its required bits to be set - at this + point either the required bits were set or the block time expired. If + the required bits were set they will have been stored in the task's + event list item, and they should now be retrieved then cleared. */ + uxReturn = uxTaskResetEventItemValue(); + + if( ( uxReturn & eventUNBLOCKED_DUE_TO_BIT_SET ) == ( EventBits_t ) 0 ) + { + taskENTER_CRITICAL(); + { + /* The task timed out, just return the current event bit value. */ + uxReturn = pxEventBits->uxEventBits; + + /* It is possible that the event bits were updated between this + task leaving the Blocked state and running again. */ + if( prvTestWaitCondition( uxReturn, uxBitsToWaitFor, xWaitForAllBits ) != pdFALSE ) + { + if( xClearOnExit != pdFALSE ) + { + pxEventBits->uxEventBits &= ~uxBitsToWaitFor; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + xTimeoutOccurred = pdTRUE; + } + taskEXIT_CRITICAL(); + } + else + { + /* The task unblocked because the bits were set. */ + } + + /* The task blocked so control bits may have been set. */ + uxReturn &= ~eventEVENT_BITS_CONTROL_BYTES; + } + traceEVENT_GROUP_WAIT_BITS_END( xEventGroup, uxBitsToWaitFor, xTimeoutOccurred ); + + /* Prevent compiler warnings when trace macros are not used. */ + ( void ) xTimeoutOccurred; + + return uxReturn; +} +/*-----------------------------------------------------------*/ + +EventBits_t xEventGroupClearBits( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToClear ) +{ +EventGroup_t *pxEventBits = xEventGroup; +EventBits_t uxReturn; + + /* Check the user is not attempting to clear the bits used by the kernel + itself. */ + configASSERT( xEventGroup ); + configASSERT( ( uxBitsToClear & eventEVENT_BITS_CONTROL_BYTES ) == 0 ); + + taskENTER_CRITICAL(); + { + traceEVENT_GROUP_CLEAR_BITS( xEventGroup, uxBitsToClear ); + + /* The value returned is the event group value prior to the bits being + cleared. */ + uxReturn = pxEventBits->uxEventBits; + + /* Clear the bits. */ + pxEventBits->uxEventBits &= ~uxBitsToClear; + } + taskEXIT_CRITICAL(); + + return uxReturn; +} +/*-----------------------------------------------------------*/ + +#if ( ( configUSE_TRACE_FACILITY == 1 ) && ( INCLUDE_xTimerPendFunctionCall == 1 ) && ( configUSE_TIMERS == 1 ) ) + + BaseType_t xEventGroupClearBitsFromISR( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToClear ) + { + BaseType_t xReturn; + + traceEVENT_GROUP_CLEAR_BITS_FROM_ISR( xEventGroup, uxBitsToClear ); + xReturn = xTimerPendFunctionCallFromISR( vEventGroupClearBitsCallback, ( void * ) xEventGroup, ( uint32_t ) uxBitsToClear, NULL ); /*lint !e9087 Can't avoid cast to void* as a generic callback function not specific to this use case. Callback casts back to original type so safe. */ + + return xReturn; + } + +#endif +/*-----------------------------------------------------------*/ + +EventBits_t xEventGroupGetBitsFromISR( EventGroupHandle_t xEventGroup ) +{ +UBaseType_t uxSavedInterruptStatus; +EventGroup_t const * const pxEventBits = xEventGroup; +EventBits_t uxReturn; + + uxSavedInterruptStatus = portSET_INTERRUPT_MASK_FROM_ISR(); + { + uxReturn = pxEventBits->uxEventBits; + } + portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus ); + + return uxReturn; +} /*lint !e818 EventGroupHandle_t is a typedef used in other functions to so can't be pointer to const. */ +/*-----------------------------------------------------------*/ + +EventBits_t xEventGroupSetBits( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToSet ) +{ +ListItem_t *pxListItem, *pxNext; +ListItem_t const *pxListEnd; +List_t const * pxList; +EventBits_t uxBitsToClear = 0, uxBitsWaitedFor, uxControlBits; +EventGroup_t *pxEventBits = xEventGroup; +BaseType_t xMatchFound = pdFALSE; + + /* Check the user is not attempting to set the bits used by the kernel + itself. */ + configASSERT( xEventGroup ); + configASSERT( ( uxBitsToSet & eventEVENT_BITS_CONTROL_BYTES ) == 0 ); + + pxList = &( pxEventBits->xTasksWaitingForBits ); + pxListEnd = listGET_END_MARKER( pxList ); /*lint !e826 !e740 !e9087 The mini list structure is used as the list end to save RAM. This is checked and valid. */ + vTaskSuspendAll(); + { + traceEVENT_GROUP_SET_BITS( xEventGroup, uxBitsToSet ); + + pxListItem = listGET_HEAD_ENTRY( pxList ); + + /* Set the bits. */ + pxEventBits->uxEventBits |= uxBitsToSet; + + /* See if the new bit value should unblock any tasks. */ + while( pxListItem != pxListEnd ) + { + pxNext = listGET_NEXT( pxListItem ); + uxBitsWaitedFor = listGET_LIST_ITEM_VALUE( pxListItem ); + xMatchFound = pdFALSE; + + /* Split the bits waited for from the control bits. */ + uxControlBits = uxBitsWaitedFor & eventEVENT_BITS_CONTROL_BYTES; + uxBitsWaitedFor &= ~eventEVENT_BITS_CONTROL_BYTES; + + if( ( uxControlBits & eventWAIT_FOR_ALL_BITS ) == ( EventBits_t ) 0 ) + { + /* Just looking for single bit being set. */ + if( ( uxBitsWaitedFor & pxEventBits->uxEventBits ) != ( EventBits_t ) 0 ) + { + xMatchFound = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else if( ( uxBitsWaitedFor & pxEventBits->uxEventBits ) == uxBitsWaitedFor ) + { + /* All bits are set. */ + xMatchFound = pdTRUE; + } + else + { + /* Need all bits to be set, but not all the bits were set. */ + } + + if( xMatchFound != pdFALSE ) + { + /* The bits match. Should the bits be cleared on exit? */ + if( ( uxControlBits & eventCLEAR_EVENTS_ON_EXIT_BIT ) != ( EventBits_t ) 0 ) + { + uxBitsToClear |= uxBitsWaitedFor; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* Store the actual event flag value in the task's event list + item before removing the task from the event list. The + eventUNBLOCKED_DUE_TO_BIT_SET bit is set so the task knows + that is was unblocked due to its required bits matching, rather + than because it timed out. */ + vTaskRemoveFromUnorderedEventList( pxListItem, pxEventBits->uxEventBits | eventUNBLOCKED_DUE_TO_BIT_SET ); + } + + /* Move onto the next list item. Note pxListItem->pxNext is not + used here as the list item may have been removed from the event list + and inserted into the ready/pending reading list. */ + pxListItem = pxNext; + } + + /* Clear any bits that matched when the eventCLEAR_EVENTS_ON_EXIT_BIT + bit was set in the control word. */ + pxEventBits->uxEventBits &= ~uxBitsToClear; + } + ( void ) xTaskResumeAll(); + + return pxEventBits->uxEventBits; +} +/*-----------------------------------------------------------*/ + +void vEventGroupDelete( EventGroupHandle_t xEventGroup ) +{ +EventGroup_t *pxEventBits = xEventGroup; +const List_t *pxTasksWaitingForBits = &( pxEventBits->xTasksWaitingForBits ); + + vTaskSuspendAll(); + { + traceEVENT_GROUP_DELETE( xEventGroup ); + + while( listCURRENT_LIST_LENGTH( pxTasksWaitingForBits ) > ( UBaseType_t ) 0 ) + { + /* Unblock the task, returning 0 as the event list is being deleted + and cannot therefore have any bits set. */ + configASSERT( pxTasksWaitingForBits->xListEnd.pxNext != ( const ListItem_t * ) &( pxTasksWaitingForBits->xListEnd ) ); + vTaskRemoveFromUnorderedEventList( pxTasksWaitingForBits->xListEnd.pxNext, eventUNBLOCKED_DUE_TO_BIT_SET ); + } + + #if( ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) && ( configSUPPORT_STATIC_ALLOCATION == 0 ) ) + { + /* The event group can only have been allocated dynamically - free + it again. */ + vPortFree( pxEventBits ); + } + #elif( ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) && ( configSUPPORT_STATIC_ALLOCATION == 1 ) ) + { + /* The event group could have been allocated statically or + dynamically, so check before attempting to free the memory. */ + if( pxEventBits->ucStaticallyAllocated == ( uint8_t ) pdFALSE ) + { + vPortFree( pxEventBits ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + #endif /* configSUPPORT_DYNAMIC_ALLOCATION */ + } + ( void ) xTaskResumeAll(); +} +/*-----------------------------------------------------------*/ + +/* For internal use only - execute a 'set bits' command that was pended from +an interrupt. */ +void vEventGroupSetBitsCallback( void *pvEventGroup, const uint32_t ulBitsToSet ) +{ + ( void ) xEventGroupSetBits( pvEventGroup, ( EventBits_t ) ulBitsToSet ); /*lint !e9079 Can't avoid cast to void* as a generic timer callback prototype. Callback casts back to original type so safe. */ +} +/*-----------------------------------------------------------*/ + +/* For internal use only - execute a 'clear bits' command that was pended from +an interrupt. */ +void vEventGroupClearBitsCallback( void *pvEventGroup, const uint32_t ulBitsToClear ) +{ + ( void ) xEventGroupClearBits( pvEventGroup, ( EventBits_t ) ulBitsToClear ); /*lint !e9079 Can't avoid cast to void* as a generic timer callback prototype. Callback casts back to original type so safe. */ +} +/*-----------------------------------------------------------*/ + +static BaseType_t prvTestWaitCondition( const EventBits_t uxCurrentEventBits, const EventBits_t uxBitsToWaitFor, const BaseType_t xWaitForAllBits ) +{ +BaseType_t xWaitConditionMet = pdFALSE; + + if( xWaitForAllBits == pdFALSE ) + { + /* Task only has to wait for one bit within uxBitsToWaitFor to be + set. Is one already set? */ + if( ( uxCurrentEventBits & uxBitsToWaitFor ) != ( EventBits_t ) 0 ) + { + xWaitConditionMet = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + /* Task has to wait for all the bits in uxBitsToWaitFor to be set. + Are they set already? */ + if( ( uxCurrentEventBits & uxBitsToWaitFor ) == uxBitsToWaitFor ) + { + xWaitConditionMet = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + + return xWaitConditionMet; +} +/*-----------------------------------------------------------*/ + +#if ( ( configUSE_TRACE_FACILITY == 1 ) && ( INCLUDE_xTimerPendFunctionCall == 1 ) && ( configUSE_TIMERS == 1 ) ) + + BaseType_t xEventGroupSetBitsFromISR( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToSet, BaseType_t *pxHigherPriorityTaskWoken ) + { + BaseType_t xReturn; + + traceEVENT_GROUP_SET_BITS_FROM_ISR( xEventGroup, uxBitsToSet ); + xReturn = xTimerPendFunctionCallFromISR( vEventGroupSetBitsCallback, ( void * ) xEventGroup, ( uint32_t ) uxBitsToSet, pxHigherPriorityTaskWoken ); /*lint !e9087 Can't avoid cast to void* as a generic callback function not specific to this use case. Callback casts back to original type so safe. */ + + return xReturn; + } + +#endif +/*-----------------------------------------------------------*/ + +#if (configUSE_TRACE_FACILITY == 1) + + UBaseType_t uxEventGroupGetNumber( void* xEventGroup ) + { + UBaseType_t xReturn; + EventGroup_t const *pxEventBits = ( EventGroup_t * ) xEventGroup; /*lint !e9087 !e9079 EventGroupHandle_t is a pointer to an EventGroup_t, but EventGroupHandle_t is kept opaque outside of this file for data hiding purposes. */ + + if( xEventGroup == NULL ) + { + xReturn = 0; + } + else + { + xReturn = pxEventBits->uxEventGroupNumber; + } + + return xReturn; + } + +#endif /* configUSE_TRACE_FACILITY */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_TRACE_FACILITY == 1 ) + + void vEventGroupSetNumber( void * xEventGroup, UBaseType_t uxEventGroupNumber ) + { + ( ( EventGroup_t * ) xEventGroup )->uxEventGroupNumber = uxEventGroupNumber; /*lint !e9087 !e9079 EventGroupHandle_t is a pointer to an EventGroup_t, but EventGroupHandle_t is kept opaque outside of this file for data hiding purposes. */ + } + +#endif /* configUSE_TRACE_FACILITY */ +/*-----------------------------------------------------------*/ + + diff --git a/rtos/freertos/abstraction_layer_freertos/scr/list.c b/rtos/freertos/abstraction_layer_freertos/scr/list.c new file mode 100644 index 00000000..86b3eced --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/scr/list.c @@ -0,0 +1,198 @@ +/* + * FreeRTOS Kernel V10.3.0 + * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * + * http://www.FreeRTOS.org + * http://aws.amazon.com/freertos + * + * 1 tab == 4 spaces! + */ + + +#include +#include "FreeRTOS.h" +#include "list.h" + +/*----------------------------------------------------------- + * PUBLIC LIST API documented in list.h + *----------------------------------------------------------*/ + +void vListInitialise( List_t * const pxList ) +{ + /* The list structure contains a list item which is used to mark the + end of the list. To initialise the list the list end is inserted + as the only list entry. */ + pxList->pxIndex = ( ListItem_t * ) &( pxList->xListEnd ); /*lint !e826 !e740 !e9087 The mini list structure is used as the list end to save RAM. This is checked and valid. */ + + /* The list end value is the highest possible value in the list to + ensure it remains at the end of the list. */ + pxList->xListEnd.xItemValue = portMAX_DELAY; + + /* The list end next and previous pointers point to itself so we know + when the list is empty. */ + pxList->xListEnd.pxNext = ( ListItem_t * ) &( pxList->xListEnd ); /*lint !e826 !e740 !e9087 The mini list structure is used as the list end to save RAM. This is checked and valid. */ + pxList->xListEnd.pxPrevious = ( ListItem_t * ) &( pxList->xListEnd );/*lint !e826 !e740 !e9087 The mini list structure is used as the list end to save RAM. This is checked and valid. */ + + pxList->uxNumberOfItems = ( UBaseType_t ) 0U; + + /* Write known values into the list if + configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES is set to 1. */ + listSET_LIST_INTEGRITY_CHECK_1_VALUE( pxList ); + listSET_LIST_INTEGRITY_CHECK_2_VALUE( pxList ); +} +/*-----------------------------------------------------------*/ + +void vListInitialiseItem( ListItem_t * const pxItem ) +{ + /* Make sure the list item is not recorded as being on a list. */ + pxItem->pxContainer = NULL; + + /* Write known values into the list item if + configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES is set to 1. */ + listSET_FIRST_LIST_ITEM_INTEGRITY_CHECK_VALUE( pxItem ); + listSET_SECOND_LIST_ITEM_INTEGRITY_CHECK_VALUE( pxItem ); +} +/*-----------------------------------------------------------*/ + +void vListInsertEnd( List_t * const pxList, ListItem_t * const pxNewListItem ) +{ +ListItem_t * const pxIndex = pxList->pxIndex; + + /* Only effective when configASSERT() is also defined, these tests may catch + the list data structures being overwritten in memory. They will not catch + data errors caused by incorrect configuration or use of FreeRTOS. */ + listTEST_LIST_INTEGRITY( pxList ); + listTEST_LIST_ITEM_INTEGRITY( pxNewListItem ); + + /* Insert a new list item into pxList, but rather than sort the list, + makes the new list item the last item to be removed by a call to + listGET_OWNER_OF_NEXT_ENTRY(). */ + pxNewListItem->pxNext = pxIndex; + pxNewListItem->pxPrevious = pxIndex->pxPrevious; + + /* Only used during decision coverage testing. */ + mtCOVERAGE_TEST_DELAY(); + + pxIndex->pxPrevious->pxNext = pxNewListItem; + pxIndex->pxPrevious = pxNewListItem; + + /* Remember which list the item is in. */ + pxNewListItem->pxContainer = pxList; + + ( pxList->uxNumberOfItems )++; +} +/*-----------------------------------------------------------*/ + +void vListInsert( List_t * const pxList, ListItem_t * const pxNewListItem ) +{ +ListItem_t *pxIterator; +const TickType_t xValueOfInsertion = pxNewListItem->xItemValue; + + /* Only effective when configASSERT() is also defined, these tests may catch + the list data structures being overwritten in memory. They will not catch + data errors caused by incorrect configuration or use of FreeRTOS. */ + listTEST_LIST_INTEGRITY( pxList ); + listTEST_LIST_ITEM_INTEGRITY( pxNewListItem ); + + /* Insert the new list item into the list, sorted in xItemValue order. + + If the list already contains a list item with the same item value then the + new list item should be placed after it. This ensures that TCBs which are + stored in ready lists (all of which have the same xItemValue value) get a + share of the CPU. However, if the xItemValue is the same as the back marker + the iteration loop below will not end. Therefore the value is checked + first, and the algorithm slightly modified if necessary. */ + if( xValueOfInsertion == portMAX_DELAY ) + { + pxIterator = pxList->xListEnd.pxPrevious; + } + else + { + /* *** NOTE *********************************************************** + If you find your application is crashing here then likely causes are + listed below. In addition see https://www.freertos.org/FAQHelp.html for + more tips, and ensure configASSERT() is defined! + https://www.freertos.org/a00110.html#configASSERT + + 1) Stack overflow - + see https://www.freertos.org/Stacks-and-stack-overflow-checking.html + 2) Incorrect interrupt priority assignment, especially on Cortex-M + parts where numerically high priority values denote low actual + interrupt priorities, which can seem counter intuitive. See + https://www.freertos.org/RTOS-Cortex-M3-M4.html and the definition + of configMAX_SYSCALL_INTERRUPT_PRIORITY on + https://www.freertos.org/a00110.html + 3) Calling an API function from within a critical section or when + the scheduler is suspended, or calling an API function that does + not end in "FromISR" from an interrupt. + 4) Using a queue or semaphore before it has been initialised or + before the scheduler has been started (are interrupts firing + before vTaskStartScheduler() has been called?). + **********************************************************************/ + + for( pxIterator = ( ListItem_t * ) &( pxList->xListEnd ); pxIterator->pxNext->xItemValue <= xValueOfInsertion; pxIterator = pxIterator->pxNext ) /*lint !e826 !e740 !e9087 The mini list structure is used as the list end to save RAM. This is checked and valid. *//*lint !e440 The iterator moves to a different value, not xValueOfInsertion. */ + { + /* There is nothing to do here, just iterating to the wanted + insertion position. */ + } + } + + pxNewListItem->pxNext = pxIterator->pxNext; + pxNewListItem->pxNext->pxPrevious = pxNewListItem; + pxNewListItem->pxPrevious = pxIterator; + pxIterator->pxNext = pxNewListItem; + + /* Remember which list the item is in. This allows fast removal of the + item later. */ + pxNewListItem->pxContainer = pxList; + + ( pxList->uxNumberOfItems )++; +} +/*-----------------------------------------------------------*/ + +UBaseType_t uxListRemove( ListItem_t * const pxItemToRemove ) +{ +/* The list item knows which list it is in. Obtain the list from the list +item. */ +List_t * const pxList = pxItemToRemove->pxContainer; + + pxItemToRemove->pxNext->pxPrevious = pxItemToRemove->pxPrevious; + pxItemToRemove->pxPrevious->pxNext = pxItemToRemove->pxNext; + + /* Only used during decision coverage testing. */ + mtCOVERAGE_TEST_DELAY(); + + /* Make sure the index is left pointing to a valid item. */ + if( pxList->pxIndex == pxItemToRemove ) + { + pxList->pxIndex = pxItemToRemove->pxPrevious; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + pxItemToRemove->pxContainer = NULL; + ( pxList->uxNumberOfItems )--; + + return pxList->uxNumberOfItems; +} +/*-----------------------------------------------------------*/ + diff --git a/rtos/freertos/abstraction_layer_freertos/scr/os.c b/rtos/freertos/abstraction_layer_freertos/scr/os.c new file mode 100644 index 00000000..1bc07dd1 --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/scr/os.c @@ -0,0 +1,256 @@ +/* + * Copyright 2020 GreenWaves Technologies + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#ifndef __OS_C__ +#define __OS_C__ + +#include +#include +#include +#include +#include +#include "pmsis.h" + +static inline void pmsis_exit(int err) +{ + exit(err); +} + +static inline int pmsis_kickoff(void *arg) +{ + BaseType_t xTask; + TaskHandle_t xHandler0 = NULL; + + xTask = xTaskCreate(arg, "main", + ((unsigned short)configMINIMAL_STACK_SIZE), NULL, + tskIDLE_PRIORITY + 1, &xHandler0); + + if (xTask != pdPASS) { + printf("main is NULL !\n"); + pmsis_exit(-1); + } + + __enable_irq(); + + struct pmsis_event_kernel_wrap *wrap; + /* TODO: blocks everything because priority too high */ + /* TODO: spawn event loop for callbacks or use FreeRTOS callback api */ + /* pmsis_event_kernel_init(&wrap, pmsis_event_kernel_main); */ + /* pmsis_event_set_default_scheduler(wrap); */ + + /* TODO:handle case when uart is being used before initialized */ +#ifdef DEBUG + puts("pmsis_kickoff: starting scheduler\n"); +#endif + /* Start the kernel. From here on only tasks and interrupts will run. */ + vTaskStartScheduler(); + + /* should never return here */ + return 0; +} + +static inline void *pmsis_task_create(void (*entry)(void *), void *arg, + char *name, int priority) +{ + TaskHandle_t task_handle = NULL; + BaseType_t task_ret; + task_ret = xTaskCreate(entry, name, 2 * configMINIMAL_STACK_SIZE, arg, + tskIDLE_PRIORITY + 1 + priority, &task_handle); + if (task_ret != pdPASS) { + return NULL; + } else { + return task_handle; + } +} + +static inline void pmsis_task_suspend(void *task_handler) +{ + vTaskSuspend((TaskHandle_t)task_handler); +} + +static inline void pi_yield() +{ + taskYIELD(); +} + +static inline uint32_t disable_irq(void) +{ + hal_compiler_barrier(); + return __disable_irq(); +} + +static inline void restore_irq(uint32_t irq_enable) +{ + hal_compiler_barrier(); + __restore_irq(irq_enable); +} + +/* TODO: fix these functions, seems broken */ +static inline void __os_native_api_sem_take(void *sem_object) +{ + uint32_t irq = __disable_irq(); + if (__get_mcause() & MCAUSE_IRQ_Msk) { + /* This case should never happen ! */ + BaseType_t ret; + xSemaphoreTakeFromISR(sem_object, &ret); + } else { + xSemaphoreTake(sem_object, portMAX_DELAY); + } + __restore_irq(irq); +} + +static inline void __os_native_api_sem_give(void *sem_object) +{ + uint32_t irq = __disable_irq(); + if (__get_mcause() & MCAUSE_IRQ_Msk) { + BaseType_t ret; + xSemaphoreGiveFromISR(sem_object, &ret); + portYIELD_FROM_ISR(ret); + } else { + BaseType_t ret; + xSemaphoreGiveFromISR(sem_object, &ret); + } + __restore_irq(irq); +} + + +static inline int pi_sem_init(pi_sem_t *sem) +{ + hal_compiler_barrier(); + sem->sem_object = xSemaphoreCreateCounting(0xFFu, 0); + if (sem->sem_object == NULL) { + return -1; + } + sem->take = __os_native_api_sem_take; + sem->give = __os_native_api_sem_give; + return 0; +} + +static inline int pi_sem_deinit(pi_sem_t *sem) +{ + hal_compiler_barrier(); + if (sem->sem_object == NULL) { + return -1; + } + vSemaphoreDelete(sem->sem_object); + sem->take = NULL; + sem->give = NULL; + sem->sem_object = (void *)NULL; + return 0; +} + +static inline void pi_sem_take(pi_sem_t *sem) +{ + hal_compiler_barrier(); + sem->take(sem->sem_object); +} + +static inline void pi_sem_give(pi_sem_t *sem) +{ + sem->give(sem->sem_object); + hal_compiler_barrier(); +} + +static inline void pmsis_mutex_take(pmsis_mutex_t *mutex) +{ + hal_compiler_barrier(); + mutex->take(mutex->mutex_object); +} + +static inline void pmsis_mutex_release(pmsis_mutex_t *mutex) +{ + hal_compiler_barrier(); + mutex->release(mutex->mutex_object); + hal_compiler_barrier(); +} + +static inline void __os_native_api_mutex_lock(void *mutex_object) +{ + xSemaphoreTake(mutex_object, portMAX_DELAY); +} + +static inline void __os_native_api_mutex_release(void *mutex_object) +{ + uint32_t irq = __disable_irq(); + BaseType_t ret; + xSemaphoreGiveFromISR(mutex_object, &ret); + __restore_irq(irq); +} + +static inline int pmsis_mutex_init(pmsis_mutex_t *mutex) +{ + hal_compiler_barrier(); + mutex->mutex_object = xSemaphoreCreateBinary(); + if (mutex->mutex_object == NULL) { + return -1; + } + __os_native_api_mutex_release(mutex->mutex_object); + mutex->take = __os_native_api_mutex_lock; + mutex->release = __os_native_api_mutex_release; + return 0; +} + +static inline int pmsis_mutex_deinit(pmsis_mutex_t *mutex) +{ + hal_compiler_barrier(); + if (mutex->mutex_object == NULL) { + return -1; + } + vSemaphoreDelete(mutex->mutex_object); + mutex->take = NULL; + mutex->release = NULL; + mutex->mutex_object = (void *)NULL; + return 0; +} + +static inline void pmsis_spinlock_init(pmsis_spinlock_t *spinlock) +{ + hal_compiler_barrier(); + spinlock->lock = 0; +} + +static inline void pmsis_spinlock_take(pmsis_spinlock_t *spinlock) +{ + uint32_t irq_enabled = disable_irq(); + hal_compiler_barrier(); + spinlock->lock = 1; + hal_compiler_barrier(); + restore_irq(irq_enabled); +} + +static inline void pmsis_spinlock_release(pmsis_spinlock_t *spinlock) +{ + uint32_t irq_enabled = disable_irq(); + hal_compiler_barrier(); + spinlock->lock = 0; + hal_compiler_barrier(); + restore_irq(irq_enabled); +} + +static void pi_time_wait_us(int time_us) +{ + /* Wait less than 1 ms. */ + if (time_us < 1000) { + for (volatile int i = 0; i < time_us; i++) + ; + } else { + vTaskDelay(((uint32_t)time_us / 1000) / portTICK_PERIOD_MS); + } +} + +#endif /* __OS_H__ */ diff --git a/rtos/freertos/abstraction_layer_freertos/scr/pmsis_task.c b/rtos/freertos/abstraction_layer_freertos/scr/pmsis_task.c new file mode 100644 index 00000000..ac976478 --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/scr/pmsis_task.c @@ -0,0 +1,146 @@ +/* + * Copyright 2020 GreenWaves Technologies + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include "pmsis.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include + +pi_task_t *__pi_task_block(pi_task_t *callback_task) +{ + callback_task->id = PI_TASK_NONE_ID; + callback_task->done = 0; + pi_sem_init(&(callback_task->wait_on)); + /* lock the mutex so that task may be descheduled while waiting on it */ + callback_task->destroy = 1; + callback_task->core_id = -1; + return callback_task; +} + +pi_task_t *__pi_task_callback(pi_task_t *callback_task, void (*func)(void *), + void *arg) +{ + callback_task->id = PI_TASK_CALLBACK_ID; + callback_task->arg[0] = (uintptr_t)func; + callback_task->arg[1] = (uintptr_t)arg; + callback_task->done = 0; + callback_task->wait_on.sem_object = (void *)NULL; + callback_task->destroy = 0; + callback_task->core_id = -1; + return callback_task; +} + +void __pi_task_destroy(pi_task_t *task) +{ + if (task->destroy) { + task->destroy = 0; + /* if the mutex is only virtual (e.g. wait on soc event) */ + hal_compiler_barrier(); + /* if the sched support semaphore/mutexes */ + if (task->wait_on.sem_object) { + pi_sem_deinit(&task->wait_on); + task->wait_on.sem_object = (void *)NULL; + } + hal_compiler_barrier(); + } +} + +void __pi_task_wait_on(pi_task_t *task) +{ + while (!task->done) { + /* if the underlying scheduler support it, deschedule the task + */ + if (task->wait_on.sem_object != NULL) { + pi_sem_take(&task->wait_on); + } + DEBUG_PRINTF("[%s] waited on sem %p\n", __func__, + &(task->wait_on)); + } + hal_compiler_barrier(); + __pi_task_destroy(task); +} + +void __pi_task_push(pi_task_t *task) +{ + pi_task_push_delayed_us(task, 0); +} + +pi_task_t *pi_task_callback_no_mutex(pi_task_t *callback_task, + void (*func)(void *), void *arg) +{ + return pi_task_callback(callback_task, func, arg); +} + +pi_task_t *pi_task_block_no_mutex(pi_task_t *callback_task) +{ + callback_task->id = PI_TASK_NONE_ID; + callback_task->done = 0; + callback_task->wait_on.sem_object = (void *)NULL; + callback_task->destroy = 0; + callback_task->core_id = -1; + /* lock the mutex so that task may be descheduled while waiting on it */ + return callback_task; +} + +void pi_task_release(pi_task_t *task) +{ + DEBUG_PRINTF("[%s] releasing task %p\n", __func__, task); + /* if the mutex is only virtual (e.g. wait on soc event) + * if the sched support semaphore/mutexes */ + if (task->wait_on.sem_object) { + DEBUG_PRINTF("[%s] sem give %p\n", __func__, &task->wait_on); + pi_sem_give(&(task->wait_on)); + } + hal_compiler_barrier(); + task->done = 1; + hal_compiler_barrier(); +} + +void pi_cl_pi_task_wait(pi_task_t *task) +{ +} + +void pi_cl_pi_task_notify_done(pi_task_t *task) +{ +} + +void pi_task_wait_on_no_mutex(pi_task_t *task) +{ + /* if the mutex is only virtual (e.g. wait on soc event) */ + while (!task->done) { + hal_compiler_barrier(); + asm volatile("nop"); + /* FIXME: workaround for gcc bug */ + hal_compiler_barrier(); + } +} + +void pi_task_push_delayed_us(pi_task_t *task, uint32_t delay) +{ + pi_time_wait_us(delay); + uint32_t irq = disable_irq(); + /* TODO: unimplemented callback */ + /* pmsis_event_push(pmsis_event_get_default_scheduler(), task); */ + restore_irq(irq); +} diff --git a/rtos/freertos/abstraction_layer_freertos/scr/queue.c b/rtos/freertos/abstraction_layer_freertos/scr/queue.c new file mode 100644 index 00000000..474fd346 --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/scr/queue.c @@ -0,0 +1,2945 @@ +/* + * FreeRTOS Kernel V10.3.0 + * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * + * http://www.FreeRTOS.org + * http://aws.amazon.com/freertos + * + * 1 tab == 4 spaces! + */ + +#include +#include + +/* Defining MPU_WRAPPERS_INCLUDED_FROM_API_FILE prevents task.h from redefining +all the API functions to use the MPU wrappers. That should only be done when +task.h is included from an application file. */ +#define MPU_WRAPPERS_INCLUDED_FROM_API_FILE + +#include "FreeRTOS.h" +#include "task.h" +#include "queue.h" + +#if ( configUSE_CO_ROUTINES == 1 ) + #include "croutine.h" +#endif + +/* Lint e9021, e961 and e750 are suppressed as a MISRA exception justified +because the MPU ports require MPU_WRAPPERS_INCLUDED_FROM_API_FILE to be defined +for the header files above, but not in this file, in order to generate the +correct privileged Vs unprivileged linkage and placement. */ +#undef MPU_WRAPPERS_INCLUDED_FROM_API_FILE /*lint !e961 !e750 !e9021. */ + + +/* Constants used with the cRxLock and cTxLock structure members. */ +#define queueUNLOCKED ( ( int8_t ) -1 ) +#define queueLOCKED_UNMODIFIED ( ( int8_t ) 0 ) + +/* When the Queue_t structure is used to represent a base queue its pcHead and +pcTail members are used as pointers into the queue storage area. When the +Queue_t structure is used to represent a mutex pcHead and pcTail pointers are +not necessary, and the pcHead pointer is set to NULL to indicate that the +structure instead holds a pointer to the mutex holder (if any). Map alternative +names to the pcHead and structure member to ensure the readability of the code +is maintained. The QueuePointers_t and SemaphoreData_t types are used to form +a union as their usage is mutually exclusive dependent on what the queue is +being used for. */ +#define uxQueueType pcHead +#define queueQUEUE_IS_MUTEX NULL + +typedef struct QueuePointers +{ + int8_t *pcTail; /*< Points to the byte at the end of the queue storage area. Once more byte is allocated than necessary to store the queue items, this is used as a marker. */ + int8_t *pcReadFrom; /*< Points to the last place that a queued item was read from when the structure is used as a queue. */ +} QueuePointers_t; + +typedef struct SemaphoreData +{ + TaskHandle_t xMutexHolder; /*< The handle of the task that holds the mutex. */ + UBaseType_t uxRecursiveCallCount;/*< Maintains a count of the number of times a recursive mutex has been recursively 'taken' when the structure is used as a mutex. */ +} SemaphoreData_t; + +/* Semaphores do not actually store or copy data, so have an item size of +zero. */ +#define queueSEMAPHORE_QUEUE_ITEM_LENGTH ( ( UBaseType_t ) 0 ) +#define queueMUTEX_GIVE_BLOCK_TIME ( ( TickType_t ) 0U ) + +#if( configUSE_PREEMPTION == 0 ) + /* If the cooperative scheduler is being used then a yield should not be + performed just because a higher priority task has been woken. */ + #define queueYIELD_IF_USING_PREEMPTION() +#else + #define queueYIELD_IF_USING_PREEMPTION() portYIELD_WITHIN_API() +#endif + +/* + * Definition of the queue used by the scheduler. + * Items are queued by copy, not reference. See the following link for the + * rationale: https://www.freertos.org/Embedded-RTOS-Queues.html + */ +typedef struct QueueDefinition /* The old naming convention is used to prevent breaking kernel aware debuggers. */ +{ + int8_t *pcHead; /*< Points to the beginning of the queue storage area. */ + int8_t *pcWriteTo; /*< Points to the free next place in the storage area. */ + + union + { + QueuePointers_t xQueue; /*< Data required exclusively when this structure is used as a queue. */ + SemaphoreData_t xSemaphore; /*< Data required exclusively when this structure is used as a semaphore. */ + } u; + + List_t xTasksWaitingToSend; /*< List of tasks that are blocked waiting to post onto this queue. Stored in priority order. */ + List_t xTasksWaitingToReceive; /*< List of tasks that are blocked waiting to read from this queue. Stored in priority order. */ + + volatile UBaseType_t uxMessagesWaiting;/*< The number of items currently in the queue. */ + UBaseType_t uxLength; /*< The length of the queue defined as the number of items it will hold, not the number of bytes. */ + UBaseType_t uxItemSize; /*< The size of each items that the queue will hold. */ + + volatile int8_t cRxLock; /*< Stores the number of items received from the queue (removed from the queue) while the queue was locked. Set to queueUNLOCKED when the queue is not locked. */ + volatile int8_t cTxLock; /*< Stores the number of items transmitted to the queue (added to the queue) while the queue was locked. Set to queueUNLOCKED when the queue is not locked. */ + + #if( ( configSUPPORT_STATIC_ALLOCATION == 1 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) ) + uint8_t ucStaticallyAllocated; /*< Set to pdTRUE if the memory used by the queue was statically allocated to ensure no attempt is made to free the memory. */ + #endif + + #if ( configUSE_QUEUE_SETS == 1 ) + struct QueueDefinition *pxQueueSetContainer; + #endif + + #if ( configUSE_TRACE_FACILITY == 1 ) + UBaseType_t uxQueueNumber; + uint8_t ucQueueType; + #endif + +} xQUEUE; + +/* The old xQUEUE name is maintained above then typedefed to the new Queue_t +name below to enable the use of older kernel aware debuggers. */ +typedef xQUEUE Queue_t; + +/*-----------------------------------------------------------*/ + +/* + * The queue registry is just a means for kernel aware debuggers to locate + * queue structures. It has no other purpose so is an optional component. + */ +#if ( configQUEUE_REGISTRY_SIZE > 0 ) + + /* The type stored within the queue registry array. This allows a name + to be assigned to each queue making kernel aware debugging a little + more user friendly. */ + typedef struct QUEUE_REGISTRY_ITEM + { + const char *pcQueueName; /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + QueueHandle_t xHandle; + } xQueueRegistryItem; + + /* The old xQueueRegistryItem name is maintained above then typedefed to the + new xQueueRegistryItem name below to enable the use of older kernel aware + debuggers. */ + typedef xQueueRegistryItem QueueRegistryItem_t; + + /* The queue registry is simply an array of QueueRegistryItem_t structures. + The pcQueueName member of a structure being NULL is indicative of the + array position being vacant. */ + PRIVILEGED_DATA QueueRegistryItem_t xQueueRegistry[ configQUEUE_REGISTRY_SIZE ]; + +#endif /* configQUEUE_REGISTRY_SIZE */ + +/* + * Unlocks a queue locked by a call to prvLockQueue. Locking a queue does not + * prevent an ISR from adding or removing items to the queue, but does prevent + * an ISR from removing tasks from the queue event lists. If an ISR finds a + * queue is locked it will instead increment the appropriate queue lock count + * to indicate that a task may require unblocking. When the queue in unlocked + * these lock counts are inspected, and the appropriate action taken. + */ +static void prvUnlockQueue( Queue_t * const pxQueue ) PRIVILEGED_FUNCTION; + +/* + * Uses a critical section to determine if there is any data in a queue. + * + * @return pdTRUE if the queue contains no items, otherwise pdFALSE. + */ +static BaseType_t prvIsQueueEmpty( const Queue_t *pxQueue ) PRIVILEGED_FUNCTION; + +/* + * Uses a critical section to determine if there is any space in a queue. + * + * @return pdTRUE if there is no space, otherwise pdFALSE; + */ +static BaseType_t prvIsQueueFull( const Queue_t *pxQueue ) PRIVILEGED_FUNCTION; + +/* + * Copies an item into the queue, either at the front of the queue or the + * back of the queue. + */ +static BaseType_t prvCopyDataToQueue( Queue_t * const pxQueue, const void *pvItemToQueue, const BaseType_t xPosition ) PRIVILEGED_FUNCTION; + +/* + * Copies an item out of a queue. + */ +static void prvCopyDataFromQueue( Queue_t * const pxQueue, void * const pvBuffer ) PRIVILEGED_FUNCTION; + +#if ( configUSE_QUEUE_SETS == 1 ) + /* + * Checks to see if a queue is a member of a queue set, and if so, notifies + * the queue set that the queue contains data. + */ + static BaseType_t prvNotifyQueueSetContainer( const Queue_t * const pxQueue ) PRIVILEGED_FUNCTION; +#endif + +/* + * Called after a Queue_t structure has been allocated either statically or + * dynamically to fill in the structure's members. + */ +static void prvInitialiseNewQueue( const UBaseType_t uxQueueLength, const UBaseType_t uxItemSize, uint8_t *pucQueueStorage, const uint8_t ucQueueType, Queue_t *pxNewQueue ) PRIVILEGED_FUNCTION; + +/* + * Mutexes are a special type of queue. When a mutex is created, first the + * queue is created, then prvInitialiseMutex() is called to configure the queue + * as a mutex. + */ +#if( configUSE_MUTEXES == 1 ) + static void prvInitialiseMutex( Queue_t *pxNewQueue ) PRIVILEGED_FUNCTION; +#endif + +#if( configUSE_MUTEXES == 1 ) + /* + * If a task waiting for a mutex causes the mutex holder to inherit a + * priority, but the waiting task times out, then the holder should + * disinherit the priority - but only down to the highest priority of any + * other tasks that are waiting for the same mutex. This function returns + * that priority. + */ + static UBaseType_t prvGetDisinheritPriorityAfterTimeout( const Queue_t * const pxQueue ) PRIVILEGED_FUNCTION; +#endif +/*-----------------------------------------------------------*/ + +/* + * Macro to mark a queue as locked. Locking a queue prevents an ISR from + * accessing the queue event lists. + */ +#define prvLockQueue( pxQueue ) \ + taskENTER_CRITICAL(); \ + { \ + if( ( pxQueue )->cRxLock == queueUNLOCKED ) \ + { \ + ( pxQueue )->cRxLock = queueLOCKED_UNMODIFIED; \ + } \ + if( ( pxQueue )->cTxLock == queueUNLOCKED ) \ + { \ + ( pxQueue )->cTxLock = queueLOCKED_UNMODIFIED; \ + } \ + } \ + taskEXIT_CRITICAL() +/*-----------------------------------------------------------*/ + +BaseType_t xQueueGenericReset( QueueHandle_t xQueue, BaseType_t xNewQueue ) +{ +Queue_t * const pxQueue = xQueue; + + configASSERT( pxQueue ); + + taskENTER_CRITICAL(); + { + pxQueue->u.xQueue.pcTail = pxQueue->pcHead + ( pxQueue->uxLength * pxQueue->uxItemSize ); /*lint !e9016 Pointer arithmetic allowed on char types, especially when it assists conveying intent. */ + pxQueue->uxMessagesWaiting = ( UBaseType_t ) 0U; + pxQueue->pcWriteTo = pxQueue->pcHead; + pxQueue->u.xQueue.pcReadFrom = pxQueue->pcHead + ( ( pxQueue->uxLength - 1U ) * pxQueue->uxItemSize ); /*lint !e9016 Pointer arithmetic allowed on char types, especially when it assists conveying intent. */ + pxQueue->cRxLock = queueUNLOCKED; + pxQueue->cTxLock = queueUNLOCKED; + + if( xNewQueue == pdFALSE ) + { + /* If there are tasks blocked waiting to read from the queue, then + the tasks will remain blocked as after this function exits the queue + will still be empty. If there are tasks blocked waiting to write to + the queue, then one should be unblocked as after this function exits + it will be possible to write to it. */ + if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToSend ) ) == pdFALSE ) + { + if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToSend ) ) != pdFALSE ) + { + queueYIELD_IF_USING_PREEMPTION(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + /* Ensure the event queues start in the correct state. */ + vListInitialise( &( pxQueue->xTasksWaitingToSend ) ); + vListInitialise( &( pxQueue->xTasksWaitingToReceive ) ); + } + } + taskEXIT_CRITICAL(); + + /* A value is returned for calling semantic consistency with previous + versions. */ + return pdPASS; +} +/*-----------------------------------------------------------*/ + +#if( configSUPPORT_STATIC_ALLOCATION == 1 ) + + QueueHandle_t xQueueGenericCreateStatic( const UBaseType_t uxQueueLength, const UBaseType_t uxItemSize, uint8_t *pucQueueStorage, StaticQueue_t *pxStaticQueue, const uint8_t ucQueueType ) + { + Queue_t *pxNewQueue; + + configASSERT( uxQueueLength > ( UBaseType_t ) 0 ); + + /* The StaticQueue_t structure and the queue storage area must be + supplied. */ + configASSERT( pxStaticQueue != NULL ); + + /* A queue storage area should be provided if the item size is not 0, and + should not be provided if the item size is 0. */ + configASSERT( !( ( pucQueueStorage != NULL ) && ( uxItemSize == 0 ) ) ); + configASSERT( !( ( pucQueueStorage == NULL ) && ( uxItemSize != 0 ) ) ); + + #if( configASSERT_DEFINED == 1 ) + { + /* Sanity check that the size of the structure used to declare a + variable of type StaticQueue_t or StaticSemaphore_t equals the size of + the real queue and semaphore structures. */ + volatile size_t xSize = sizeof( StaticQueue_t ); + configASSERT( xSize == sizeof( Queue_t ) ); + ( void ) xSize; /* Keeps lint quiet when configASSERT() is not defined. */ + } + #endif /* configASSERT_DEFINED */ + + /* The address of a statically allocated queue was passed in, use it. + The address of a statically allocated storage area was also passed in + but is already set. */ + pxNewQueue = ( Queue_t * ) pxStaticQueue; /*lint !e740 !e9087 Unusual cast is ok as the structures are designed to have the same alignment, and the size is checked by an assert. */ + + if( pxNewQueue != NULL ) + { + #if( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) + { + /* Queues can be allocated wither statically or dynamically, so + note this queue was allocated statically in case the queue is + later deleted. */ + pxNewQueue->ucStaticallyAllocated = pdTRUE; + } + #endif /* configSUPPORT_DYNAMIC_ALLOCATION */ + + prvInitialiseNewQueue( uxQueueLength, uxItemSize, pucQueueStorage, ucQueueType, pxNewQueue ); + } + else + { + traceQUEUE_CREATE_FAILED( ucQueueType ); + mtCOVERAGE_TEST_MARKER(); + } + + return pxNewQueue; + } + +#endif /* configSUPPORT_STATIC_ALLOCATION */ +/*-----------------------------------------------------------*/ + +#if( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) + + QueueHandle_t xQueueGenericCreate( const UBaseType_t uxQueueLength, const UBaseType_t uxItemSize, const uint8_t ucQueueType ) + { + Queue_t *pxNewQueue; + size_t xQueueSizeInBytes; + uint8_t *pucQueueStorage; + + configASSERT( uxQueueLength > ( UBaseType_t ) 0 ); + + /* Allocate enough space to hold the maximum number of items that + can be in the queue at any time. It is valid for uxItemSize to be + zero in the case the queue is used as a semaphore. */ + xQueueSizeInBytes = ( size_t ) ( uxQueueLength * uxItemSize ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ + + /* Allocate the queue and storage area. Justification for MISRA + deviation as follows: pvPortMalloc() always ensures returned memory + blocks are aligned per the requirements of the MCU stack. In this case + pvPortMalloc() must return a pointer that is guaranteed to meet the + alignment requirements of the Queue_t structure - which in this case + is an int8_t *. Therefore, whenever the stack alignment requirements + are greater than or equal to the pointer to char requirements the cast + is safe. In other cases alignment requirements are not strict (one or + two bytes). */ + pxNewQueue = ( Queue_t * ) pvPortMalloc( sizeof( Queue_t ) + xQueueSizeInBytes ); /*lint !e9087 !e9079 see comment above. */ + + if( pxNewQueue != NULL ) + { + /* Jump past the queue structure to find the location of the queue + storage area. */ + pucQueueStorage = ( uint8_t * ) pxNewQueue; + pucQueueStorage += sizeof( Queue_t ); /*lint !e9016 Pointer arithmetic allowed on char types, especially when it assists conveying intent. */ + + #if( configSUPPORT_STATIC_ALLOCATION == 1 ) + { + /* Queues can be created either statically or dynamically, so + note this task was created dynamically in case it is later + deleted. */ + pxNewQueue->ucStaticallyAllocated = pdFALSE; + } + #endif /* configSUPPORT_STATIC_ALLOCATION */ + + prvInitialiseNewQueue( uxQueueLength, uxItemSize, pucQueueStorage, ucQueueType, pxNewQueue ); + } + else + { + traceQUEUE_CREATE_FAILED( ucQueueType ); + mtCOVERAGE_TEST_MARKER(); + } + + return pxNewQueue; + } + +#endif /* configSUPPORT_STATIC_ALLOCATION */ +/*-----------------------------------------------------------*/ + +static void prvInitialiseNewQueue( const UBaseType_t uxQueueLength, const UBaseType_t uxItemSize, uint8_t *pucQueueStorage, const uint8_t ucQueueType, Queue_t *pxNewQueue ) +{ + /* Remove compiler warnings about unused parameters should + configUSE_TRACE_FACILITY not be set to 1. */ + ( void ) ucQueueType; + + if( uxItemSize == ( UBaseType_t ) 0 ) + { + /* No RAM was allocated for the queue storage area, but PC head cannot + be set to NULL because NULL is used as a key to say the queue is used as + a mutex. Therefore just set pcHead to point to the queue as a benign + value that is known to be within the memory map. */ + pxNewQueue->pcHead = ( int8_t * ) pxNewQueue; + } + else + { + /* Set the head to the start of the queue storage area. */ + pxNewQueue->pcHead = ( int8_t * ) pucQueueStorage; + } + + /* Initialise the queue members as described where the queue type is + defined. */ + pxNewQueue->uxLength = uxQueueLength; + pxNewQueue->uxItemSize = uxItemSize; + ( void ) xQueueGenericReset( pxNewQueue, pdTRUE ); + + #if ( configUSE_TRACE_FACILITY == 1 ) + { + pxNewQueue->ucQueueType = ucQueueType; + } + #endif /* configUSE_TRACE_FACILITY */ + + #if( configUSE_QUEUE_SETS == 1 ) + { + pxNewQueue->pxQueueSetContainer = NULL; + } + #endif /* configUSE_QUEUE_SETS */ + + traceQUEUE_CREATE( pxNewQueue ); +} +/*-----------------------------------------------------------*/ + +#if( configUSE_MUTEXES == 1 ) + + static void prvInitialiseMutex( Queue_t *pxNewQueue ) + { + if( pxNewQueue != NULL ) + { + /* The queue create function will set all the queue structure members + correctly for a generic queue, but this function is creating a + mutex. Overwrite those members that need to be set differently - + in particular the information required for priority inheritance. */ + pxNewQueue->u.xSemaphore.xMutexHolder = NULL; + pxNewQueue->uxQueueType = queueQUEUE_IS_MUTEX; + + /* In case this is a recursive mutex. */ + pxNewQueue->u.xSemaphore.uxRecursiveCallCount = 0; + + traceCREATE_MUTEX( pxNewQueue ); + + /* Start with the semaphore in the expected state. */ + ( void ) xQueueGenericSend( pxNewQueue, NULL, ( TickType_t ) 0U, queueSEND_TO_BACK ); + } + else + { + traceCREATE_MUTEX_FAILED(); + } + } + +#endif /* configUSE_MUTEXES */ +/*-----------------------------------------------------------*/ + +#if( ( configUSE_MUTEXES == 1 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) ) + + QueueHandle_t xQueueCreateMutex( const uint8_t ucQueueType ) + { + QueueHandle_t xNewQueue; + const UBaseType_t uxMutexLength = ( UBaseType_t ) 1, uxMutexSize = ( UBaseType_t ) 0; + + xNewQueue = xQueueGenericCreate( uxMutexLength, uxMutexSize, ucQueueType ); + prvInitialiseMutex( ( Queue_t * ) xNewQueue ); + + return xNewQueue; + } + +#endif /* configUSE_MUTEXES */ +/*-----------------------------------------------------------*/ + +#if( ( configUSE_MUTEXES == 1 ) && ( configSUPPORT_STATIC_ALLOCATION == 1 ) ) + + QueueHandle_t xQueueCreateMutexStatic( const uint8_t ucQueueType, StaticQueue_t *pxStaticQueue ) + { + QueueHandle_t xNewQueue; + const UBaseType_t uxMutexLength = ( UBaseType_t ) 1, uxMutexSize = ( UBaseType_t ) 0; + + /* Prevent compiler warnings about unused parameters if + configUSE_TRACE_FACILITY does not equal 1. */ + ( void ) ucQueueType; + + xNewQueue = xQueueGenericCreateStatic( uxMutexLength, uxMutexSize, NULL, pxStaticQueue, ucQueueType ); + prvInitialiseMutex( ( Queue_t * ) xNewQueue ); + + return xNewQueue; + } + +#endif /* configUSE_MUTEXES */ +/*-----------------------------------------------------------*/ + +#if ( ( configUSE_MUTEXES == 1 ) && ( INCLUDE_xSemaphoreGetMutexHolder == 1 ) ) + + TaskHandle_t xQueueGetMutexHolder( QueueHandle_t xSemaphore ) + { + TaskHandle_t pxReturn; + Queue_t * const pxSemaphore = ( Queue_t * ) xSemaphore; + + /* This function is called by xSemaphoreGetMutexHolder(), and should not + be called directly. Note: This is a good way of determining if the + calling task is the mutex holder, but not a good way of determining the + identity of the mutex holder, as the holder may change between the + following critical section exiting and the function returning. */ + taskENTER_CRITICAL(); + { + if( pxSemaphore->uxQueueType == queueQUEUE_IS_MUTEX ) + { + pxReturn = pxSemaphore->u.xSemaphore.xMutexHolder; + } + else + { + pxReturn = NULL; + } + } + taskEXIT_CRITICAL(); + + return pxReturn; + } /*lint !e818 xSemaphore cannot be a pointer to const because it is a typedef. */ + +#endif +/*-----------------------------------------------------------*/ + +#if ( ( configUSE_MUTEXES == 1 ) && ( INCLUDE_xSemaphoreGetMutexHolder == 1 ) ) + + TaskHandle_t xQueueGetMutexHolderFromISR( QueueHandle_t xSemaphore ) + { + TaskHandle_t pxReturn; + + configASSERT( xSemaphore ); + + /* Mutexes cannot be used in interrupt service routines, so the mutex + holder should not change in an ISR, and therefore a critical section is + not required here. */ + if( ( ( Queue_t * ) xSemaphore )->uxQueueType == queueQUEUE_IS_MUTEX ) + { + pxReturn = ( ( Queue_t * ) xSemaphore )->u.xSemaphore.xMutexHolder; + } + else + { + pxReturn = NULL; + } + + return pxReturn; + } /*lint !e818 xSemaphore cannot be a pointer to const because it is a typedef. */ + +#endif +/*-----------------------------------------------------------*/ + +#if ( configUSE_RECURSIVE_MUTEXES == 1 ) + + BaseType_t xQueueGiveMutexRecursive( QueueHandle_t xMutex ) + { + BaseType_t xReturn; + Queue_t * const pxMutex = ( Queue_t * ) xMutex; + + configASSERT( pxMutex ); + + /* If this is the task that holds the mutex then xMutexHolder will not + change outside of this task. If this task does not hold the mutex then + pxMutexHolder can never coincidentally equal the tasks handle, and as + this is the only condition we are interested in it does not matter if + pxMutexHolder is accessed simultaneously by another task. Therefore no + mutual exclusion is required to test the pxMutexHolder variable. */ + if( pxMutex->u.xSemaphore.xMutexHolder == xTaskGetCurrentTaskHandle() ) + { + traceGIVE_MUTEX_RECURSIVE( pxMutex ); + + /* uxRecursiveCallCount cannot be zero if xMutexHolder is equal to + the task handle, therefore no underflow check is required. Also, + uxRecursiveCallCount is only modified by the mutex holder, and as + there can only be one, no mutual exclusion is required to modify the + uxRecursiveCallCount member. */ + ( pxMutex->u.xSemaphore.uxRecursiveCallCount )--; + + /* Has the recursive call count unwound to 0? */ + if( pxMutex->u.xSemaphore.uxRecursiveCallCount == ( UBaseType_t ) 0 ) + { + /* Return the mutex. This will automatically unblock any other + task that might be waiting to access the mutex. */ + ( void ) xQueueGenericSend( pxMutex, NULL, queueMUTEX_GIVE_BLOCK_TIME, queueSEND_TO_BACK ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + xReturn = pdPASS; + } + else + { + /* The mutex cannot be given because the calling task is not the + holder. */ + xReturn = pdFAIL; + + traceGIVE_MUTEX_RECURSIVE_FAILED( pxMutex ); + } + + return xReturn; + } + +#endif /* configUSE_RECURSIVE_MUTEXES */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_RECURSIVE_MUTEXES == 1 ) + + BaseType_t xQueueTakeMutexRecursive( QueueHandle_t xMutex, TickType_t xTicksToWait ) + { + BaseType_t xReturn; + Queue_t * const pxMutex = ( Queue_t * ) xMutex; + + configASSERT( pxMutex ); + + /* Comments regarding mutual exclusion as per those within + xQueueGiveMutexRecursive(). */ + + traceTAKE_MUTEX_RECURSIVE( pxMutex ); + + if( pxMutex->u.xSemaphore.xMutexHolder == xTaskGetCurrentTaskHandle() ) + { + ( pxMutex->u.xSemaphore.uxRecursiveCallCount )++; + xReturn = pdPASS; + } + else + { + xReturn = xQueueSemaphoreTake( pxMutex, xTicksToWait ); + + /* pdPASS will only be returned if the mutex was successfully + obtained. The calling task may have entered the Blocked state + before reaching here. */ + if( xReturn != pdFAIL ) + { + ( pxMutex->u.xSemaphore.uxRecursiveCallCount )++; + } + else + { + traceTAKE_MUTEX_RECURSIVE_FAILED( pxMutex ); + } + } + + return xReturn; + } + +#endif /* configUSE_RECURSIVE_MUTEXES */ +/*-----------------------------------------------------------*/ + +#if( ( configUSE_COUNTING_SEMAPHORES == 1 ) && ( configSUPPORT_STATIC_ALLOCATION == 1 ) ) + + QueueHandle_t xQueueCreateCountingSemaphoreStatic( const UBaseType_t uxMaxCount, const UBaseType_t uxInitialCount, StaticQueue_t *pxStaticQueue ) + { + QueueHandle_t xHandle; + + configASSERT( uxMaxCount != 0 ); + configASSERT( uxInitialCount <= uxMaxCount ); + + xHandle = xQueueGenericCreateStatic( uxMaxCount, queueSEMAPHORE_QUEUE_ITEM_LENGTH, NULL, pxStaticQueue, queueQUEUE_TYPE_COUNTING_SEMAPHORE ); + + if( xHandle != NULL ) + { + ( ( Queue_t * ) xHandle )->uxMessagesWaiting = uxInitialCount; + + traceCREATE_COUNTING_SEMAPHORE(); + } + else + { + traceCREATE_COUNTING_SEMAPHORE_FAILED(); + } + + return xHandle; + } + +#endif /* ( ( configUSE_COUNTING_SEMAPHORES == 1 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) ) */ +/*-----------------------------------------------------------*/ + +#if( ( configUSE_COUNTING_SEMAPHORES == 1 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) ) + + QueueHandle_t xQueueCreateCountingSemaphore( const UBaseType_t uxMaxCount, const UBaseType_t uxInitialCount ) + { + QueueHandle_t xHandle; + + configASSERT( uxMaxCount != 0 ); + configASSERT( uxInitialCount <= uxMaxCount ); + + xHandle = xQueueGenericCreate( uxMaxCount, queueSEMAPHORE_QUEUE_ITEM_LENGTH, queueQUEUE_TYPE_COUNTING_SEMAPHORE ); + + if( xHandle != NULL ) + { + ( ( Queue_t * ) xHandle )->uxMessagesWaiting = uxInitialCount; + + traceCREATE_COUNTING_SEMAPHORE(); + } + else + { + traceCREATE_COUNTING_SEMAPHORE_FAILED(); + } + + return xHandle; + } + +#endif /* ( ( configUSE_COUNTING_SEMAPHORES == 1 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) ) */ +/*-----------------------------------------------------------*/ + +BaseType_t xQueueGenericSend( QueueHandle_t xQueue, const void * const pvItemToQueue, TickType_t xTicksToWait, const BaseType_t xCopyPosition ) +{ +BaseType_t xEntryTimeSet = pdFALSE, xYieldRequired; +TimeOut_t xTimeOut; +Queue_t * const pxQueue = xQueue; + + configASSERT( pxQueue ); + configASSERT( !( ( pvItemToQueue == NULL ) && ( pxQueue->uxItemSize != ( UBaseType_t ) 0U ) ) ); + configASSERT( !( ( xCopyPosition == queueOVERWRITE ) && ( pxQueue->uxLength != 1 ) ) ); + #if ( ( INCLUDE_xTaskGetSchedulerState == 1 ) || ( configUSE_TIMERS == 1 ) ) + { + configASSERT( !( ( xTaskGetSchedulerState() == taskSCHEDULER_SUSPENDED ) && ( xTicksToWait != 0 ) ) ); + } + #endif + + + /*lint -save -e904 This function relaxes the coding standard somewhat to + allow return statements within the function itself. This is done in the + interest of execution time efficiency. */ + for( ;; ) + { + taskENTER_CRITICAL(); + { + /* Is there room on the queue now? The running task must be the + highest priority task wanting to access the queue. If the head item + in the queue is to be overwritten then it does not matter if the + queue is full. */ + if( ( pxQueue->uxMessagesWaiting < pxQueue->uxLength ) || ( xCopyPosition == queueOVERWRITE ) ) + { + traceQUEUE_SEND( pxQueue ); + + #if ( configUSE_QUEUE_SETS == 1 ) + { + const UBaseType_t uxPreviousMessagesWaiting = pxQueue->uxMessagesWaiting; + + xYieldRequired = prvCopyDataToQueue( pxQueue, pvItemToQueue, xCopyPosition ); + + if( pxQueue->pxQueueSetContainer != NULL ) + { + if( ( xCopyPosition == queueOVERWRITE ) && ( uxPreviousMessagesWaiting != ( UBaseType_t ) 0 ) ) + { + /* Do not notify the queue set as an existing item + was overwritten in the queue so the number of items + in the queue has not changed. */ + mtCOVERAGE_TEST_MARKER(); + } + else if( prvNotifyQueueSetContainer( pxQueue ) != pdFALSE ) + { + /* The queue is a member of a queue set, and posting + to the queue set caused a higher priority task to + unblock. A context switch is required. */ + queueYIELD_IF_USING_PREEMPTION(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + /* If there was a task waiting for data to arrive on the + queue then unblock it now. */ + if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) + { + if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE ) + { + /* The unblocked task has a priority higher than + our own so yield immediately. Yes it is ok to + do this from within the critical section - the + kernel takes care of that. */ + queueYIELD_IF_USING_PREEMPTION(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else if( xYieldRequired != pdFALSE ) + { + /* This path is a special case that will only get + executed if the task was holding multiple mutexes + and the mutexes were given back in an order that is + different to that in which they were taken. */ + queueYIELD_IF_USING_PREEMPTION(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + } + #else /* configUSE_QUEUE_SETS */ + { + xYieldRequired = prvCopyDataToQueue( pxQueue, pvItemToQueue, xCopyPosition ); + + /* If there was a task waiting for data to arrive on the + queue then unblock it now. */ + if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) + { + if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE ) + { + /* The unblocked task has a priority higher than + our own so yield immediately. Yes it is ok to do + this from within the critical section - the kernel + takes care of that. */ + queueYIELD_IF_USING_PREEMPTION(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else if( xYieldRequired != pdFALSE ) + { + /* This path is a special case that will only get + executed if the task was holding multiple mutexes and + the mutexes were given back in an order that is + different to that in which they were taken. */ + queueYIELD_IF_USING_PREEMPTION(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + #endif /* configUSE_QUEUE_SETS */ + + taskEXIT_CRITICAL(); + return pdPASS; + } + else + { + if( xTicksToWait == ( TickType_t ) 0 ) + { + /* The queue was full and no block time is specified (or + the block time has expired) so leave now. */ + taskEXIT_CRITICAL(); + + /* Return to the original privilege level before exiting + the function. */ + traceQUEUE_SEND_FAILED( pxQueue ); + return errQUEUE_FULL; + } + else if( xEntryTimeSet == pdFALSE ) + { + /* The queue was full and a block time was specified so + configure the timeout structure. */ + vTaskInternalSetTimeOutState( &xTimeOut ); + xEntryTimeSet = pdTRUE; + } + else + { + /* Entry time was already set. */ + mtCOVERAGE_TEST_MARKER(); + } + } + } + taskEXIT_CRITICAL(); + + /* Interrupts and other tasks can send to and receive from the queue + now the critical section has been exited. */ + + vTaskSuspendAll(); + prvLockQueue( pxQueue ); + + /* Update the timeout state to see if it has expired yet. */ + if( xTaskCheckForTimeOut( &xTimeOut, &xTicksToWait ) == pdFALSE ) + { + if( prvIsQueueFull( pxQueue ) != pdFALSE ) + { + traceBLOCKING_ON_QUEUE_SEND( pxQueue ); + vTaskPlaceOnEventList( &( pxQueue->xTasksWaitingToSend ), xTicksToWait ); + + /* Unlocking the queue means queue events can effect the + event list. It is possible that interrupts occurring now + remove this task from the event list again - but as the + scheduler is suspended the task will go onto the pending + ready last instead of the actual ready list. */ + prvUnlockQueue( pxQueue ); + + /* Resuming the scheduler will move tasks from the pending + ready list into the ready list - so it is feasible that this + task is already in a ready list before it yields - in which + case the yield will not cause a context switch unless there + is also a higher priority task in the pending ready list. */ + if( xTaskResumeAll() == pdFALSE ) + { + portYIELD_WITHIN_API(); + } + } + else + { + /* Try again. */ + prvUnlockQueue( pxQueue ); + ( void ) xTaskResumeAll(); + } + } + else + { + /* The timeout has expired. */ + prvUnlockQueue( pxQueue ); + ( void ) xTaskResumeAll(); + + traceQUEUE_SEND_FAILED( pxQueue ); + return errQUEUE_FULL; + } + } /*lint -restore */ +} +/*-----------------------------------------------------------*/ + +BaseType_t xQueueGenericSendFromISR( QueueHandle_t xQueue, const void * const pvItemToQueue, BaseType_t * const pxHigherPriorityTaskWoken, const BaseType_t xCopyPosition ) +{ +BaseType_t xReturn; +UBaseType_t uxSavedInterruptStatus; +Queue_t * const pxQueue = xQueue; + + configASSERT( pxQueue ); + configASSERT( !( ( pvItemToQueue == NULL ) && ( pxQueue->uxItemSize != ( UBaseType_t ) 0U ) ) ); + configASSERT( !( ( xCopyPosition == queueOVERWRITE ) && ( pxQueue->uxLength != 1 ) ) ); + + /* RTOS ports that support interrupt nesting have the concept of a maximum + system call (or maximum API call) interrupt priority. Interrupts that are + above the maximum system call priority are kept permanently enabled, even + when the RTOS kernel is in a critical section, but cannot make any calls to + FreeRTOS API functions. If configASSERT() is defined in FreeRTOSConfig.h + then portASSERT_IF_INTERRUPT_PRIORITY_INVALID() will result in an assertion + failure if a FreeRTOS API function is called from an interrupt that has been + assigned a priority above the configured maximum system call priority. + Only FreeRTOS functions that end in FromISR can be called from interrupts + that have been assigned a priority at or (logically) below the maximum + system call interrupt priority. FreeRTOS maintains a separate interrupt + safe API to ensure interrupt entry is as fast and as simple as possible. + More information (albeit Cortex-M specific) is provided on the following + link: http://www.freertos.org/RTOS-Cortex-M3-M4.html */ + portASSERT_IF_INTERRUPT_PRIORITY_INVALID(); + + /* Similar to xQueueGenericSend, except without blocking if there is no room + in the queue. Also don't directly wake a task that was blocked on a queue + read, instead return a flag to say whether a context switch is required or + not (i.e. has a task with a higher priority than us been woken by this + post). */ + uxSavedInterruptStatus = portSET_INTERRUPT_MASK_FROM_ISR(); + { + if( ( pxQueue->uxMessagesWaiting < pxQueue->uxLength ) || ( xCopyPosition == queueOVERWRITE ) ) + { + const int8_t cTxLock = pxQueue->cTxLock; + const UBaseType_t uxPreviousMessagesWaiting = pxQueue->uxMessagesWaiting; + + traceQUEUE_SEND_FROM_ISR( pxQueue ); + + /* Semaphores use xQueueGiveFromISR(), so pxQueue will not be a + semaphore or mutex. That means prvCopyDataToQueue() cannot result + in a task disinheriting a priority and prvCopyDataToQueue() can be + called here even though the disinherit function does not check if + the scheduler is suspended before accessing the ready lists. */ + ( void ) prvCopyDataToQueue( pxQueue, pvItemToQueue, xCopyPosition ); + + /* The event list is not altered if the queue is locked. This will + be done when the queue is unlocked later. */ + if( cTxLock == queueUNLOCKED ) + { + #if ( configUSE_QUEUE_SETS == 1 ) + { + if( pxQueue->pxQueueSetContainer != NULL ) + { + if( ( xCopyPosition == queueOVERWRITE ) && ( uxPreviousMessagesWaiting != ( UBaseType_t ) 0 ) ) + { + /* Do not notify the queue set as an existing item + was overwritten in the queue so the number of items + in the queue has not changed. */ + mtCOVERAGE_TEST_MARKER(); + } + else if( prvNotifyQueueSetContainer( pxQueue ) != pdFALSE ) + { + /* The queue is a member of a queue set, and posting + to the queue set caused a higher priority task to + unblock. A context switch is required. */ + if( pxHigherPriorityTaskWoken != NULL ) + { + *pxHigherPriorityTaskWoken = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) + { + if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE ) + { + /* The task waiting has a higher priority so + record that a context switch is required. */ + if( pxHigherPriorityTaskWoken != NULL ) + { + *pxHigherPriorityTaskWoken = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + } + #else /* configUSE_QUEUE_SETS */ + { + if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) + { + if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE ) + { + /* The task waiting has a higher priority so record that a + context switch is required. */ + if( pxHigherPriorityTaskWoken != NULL ) + { + *pxHigherPriorityTaskWoken = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* Not used in this path. */ + ( void ) uxPreviousMessagesWaiting; + } + #endif /* configUSE_QUEUE_SETS */ + } + else + { + /* Increment the lock count so the task that unlocks the queue + knows that data was posted while it was locked. */ + pxQueue->cTxLock = ( int8_t ) ( cTxLock + 1 ); + } + + xReturn = pdPASS; + } + else + { + traceQUEUE_SEND_FROM_ISR_FAILED( pxQueue ); + xReturn = errQUEUE_FULL; + } + } + portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus ); + + return xReturn; +} +/*-----------------------------------------------------------*/ + +BaseType_t xQueueGiveFromISR( QueueHandle_t xQueue, BaseType_t * const pxHigherPriorityTaskWoken ) +{ +BaseType_t xReturn; +UBaseType_t uxSavedInterruptStatus; +Queue_t * const pxQueue = xQueue; + + /* Similar to xQueueGenericSendFromISR() but used with semaphores where the + item size is 0. Don't directly wake a task that was blocked on a queue + read, instead return a flag to say whether a context switch is required or + not (i.e. has a task with a higher priority than us been woken by this + post). */ + + configASSERT( pxQueue ); + + /* xQueueGenericSendFromISR() should be used instead of xQueueGiveFromISR() + if the item size is not 0. */ + configASSERT( pxQueue->uxItemSize == 0 ); + + /* Normally a mutex would not be given from an interrupt, especially if + there is a mutex holder, as priority inheritance makes no sense for an + interrupts, only tasks. */ + configASSERT( !( ( pxQueue->uxQueueType == queueQUEUE_IS_MUTEX ) && ( pxQueue->u.xSemaphore.xMutexHolder != NULL ) ) ); + + /* RTOS ports that support interrupt nesting have the concept of a maximum + system call (or maximum API call) interrupt priority. Interrupts that are + above the maximum system call priority are kept permanently enabled, even + when the RTOS kernel is in a critical section, but cannot make any calls to + FreeRTOS API functions. If configASSERT() is defined in FreeRTOSConfig.h + then portASSERT_IF_INTERRUPT_PRIORITY_INVALID() will result in an assertion + failure if a FreeRTOS API function is called from an interrupt that has been + assigned a priority above the configured maximum system call priority. + Only FreeRTOS functions that end in FromISR can be called from interrupts + that have been assigned a priority at or (logically) below the maximum + system call interrupt priority. FreeRTOS maintains a separate interrupt + safe API to ensure interrupt entry is as fast and as simple as possible. + More information (albeit Cortex-M specific) is provided on the following + link: http://www.freertos.org/RTOS-Cortex-M3-M4.html */ + portASSERT_IF_INTERRUPT_PRIORITY_INVALID(); + + uxSavedInterruptStatus = portSET_INTERRUPT_MASK_FROM_ISR(); + { + const UBaseType_t uxMessagesWaiting = pxQueue->uxMessagesWaiting; + + /* When the queue is used to implement a semaphore no data is ever + moved through the queue but it is still valid to see if the queue 'has + space'. */ + if( uxMessagesWaiting < pxQueue->uxLength ) + { + const int8_t cTxLock = pxQueue->cTxLock; + + traceQUEUE_SEND_FROM_ISR( pxQueue ); + + /* A task can only have an inherited priority if it is a mutex + holder - and if there is a mutex holder then the mutex cannot be + given from an ISR. As this is the ISR version of the function it + can be assumed there is no mutex holder and no need to determine if + priority disinheritance is needed. Simply increase the count of + messages (semaphores) available. */ + pxQueue->uxMessagesWaiting = uxMessagesWaiting + ( UBaseType_t ) 1; + + /* The event list is not altered if the queue is locked. This will + be done when the queue is unlocked later. */ + if( cTxLock == queueUNLOCKED ) + { + #if ( configUSE_QUEUE_SETS == 1 ) + { + if( pxQueue->pxQueueSetContainer != NULL ) + { + if( prvNotifyQueueSetContainer( pxQueue ) != pdFALSE ) + { + /* The semaphore is a member of a queue set, and + posting to the queue set caused a higher priority + task to unblock. A context switch is required. */ + if( pxHigherPriorityTaskWoken != NULL ) + { + *pxHigherPriorityTaskWoken = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) + { + if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE ) + { + /* The task waiting has a higher priority so + record that a context switch is required. */ + if( pxHigherPriorityTaskWoken != NULL ) + { + *pxHigherPriorityTaskWoken = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + } + #else /* configUSE_QUEUE_SETS */ + { + if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) + { + if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE ) + { + /* The task waiting has a higher priority so record that a + context switch is required. */ + if( pxHigherPriorityTaskWoken != NULL ) + { + *pxHigherPriorityTaskWoken = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + #endif /* configUSE_QUEUE_SETS */ + } + else + { + /* Increment the lock count so the task that unlocks the queue + knows that data was posted while it was locked. */ + pxQueue->cTxLock = ( int8_t ) ( cTxLock + 1 ); + } + + xReturn = pdPASS; + } + else + { + traceQUEUE_SEND_FROM_ISR_FAILED( pxQueue ); + xReturn = errQUEUE_FULL; + } + } + portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus ); + + return xReturn; +} +/*-----------------------------------------------------------*/ + +BaseType_t xQueueReceive( QueueHandle_t xQueue, void * const pvBuffer, TickType_t xTicksToWait ) +{ +BaseType_t xEntryTimeSet = pdFALSE; +TimeOut_t xTimeOut; +Queue_t * const pxQueue = xQueue; + + /* Check the pointer is not NULL. */ + configASSERT( ( pxQueue ) ); + + /* The buffer into which data is received can only be NULL if the data size + is zero (so no data is copied into the buffer. */ + configASSERT( !( ( ( pvBuffer ) == NULL ) && ( ( pxQueue )->uxItemSize != ( UBaseType_t ) 0U ) ) ); + + /* Cannot block if the scheduler is suspended. */ + #if ( ( INCLUDE_xTaskGetSchedulerState == 1 ) || ( configUSE_TIMERS == 1 ) ) + { + configASSERT( !( ( xTaskGetSchedulerState() == taskSCHEDULER_SUSPENDED ) && ( xTicksToWait != 0 ) ) ); + } + #endif + + + /*lint -save -e904 This function relaxes the coding standard somewhat to + allow return statements within the function itself. This is done in the + interest of execution time efficiency. */ + for( ;; ) + { + taskENTER_CRITICAL(); + { + const UBaseType_t uxMessagesWaiting = pxQueue->uxMessagesWaiting; + + /* Is there data in the queue now? To be running the calling task + must be the highest priority task wanting to access the queue. */ + if( uxMessagesWaiting > ( UBaseType_t ) 0 ) + { + /* Data available, remove one item. */ + prvCopyDataFromQueue( pxQueue, pvBuffer ); + traceQUEUE_RECEIVE( pxQueue ); + pxQueue->uxMessagesWaiting = uxMessagesWaiting - ( UBaseType_t ) 1; + + /* There is now space in the queue, were any tasks waiting to + post to the queue? If so, unblock the highest priority waiting + task. */ + if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToSend ) ) == pdFALSE ) + { + if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToSend ) ) != pdFALSE ) + { + queueYIELD_IF_USING_PREEMPTION(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + taskEXIT_CRITICAL(); + return pdPASS; + } + else + { + if( xTicksToWait == ( TickType_t ) 0 ) + { + /* The queue was empty and no block time is specified (or + the block time has expired) so leave now. */ + taskEXIT_CRITICAL(); + traceQUEUE_RECEIVE_FAILED( pxQueue ); + return errQUEUE_EMPTY; + } + else if( xEntryTimeSet == pdFALSE ) + { + /* The queue was empty and a block time was specified so + configure the timeout structure. */ + vTaskInternalSetTimeOutState( &xTimeOut ); + xEntryTimeSet = pdTRUE; + } + else + { + /* Entry time was already set. */ + mtCOVERAGE_TEST_MARKER(); + } + } + } + taskEXIT_CRITICAL(); + + /* Interrupts and other tasks can send to and receive from the queue + now the critical section has been exited. */ + + vTaskSuspendAll(); + prvLockQueue( pxQueue ); + + /* Update the timeout state to see if it has expired yet. */ + if( xTaskCheckForTimeOut( &xTimeOut, &xTicksToWait ) == pdFALSE ) + { + /* The timeout has not expired. If the queue is still empty place + the task on the list of tasks waiting to receive from the queue. */ + if( prvIsQueueEmpty( pxQueue ) != pdFALSE ) + { + traceBLOCKING_ON_QUEUE_RECEIVE( pxQueue ); + vTaskPlaceOnEventList( &( pxQueue->xTasksWaitingToReceive ), xTicksToWait ); + prvUnlockQueue( pxQueue ); + if( xTaskResumeAll() == pdFALSE ) + { + portYIELD_WITHIN_API(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + /* The queue contains data again. Loop back to try and read the + data. */ + prvUnlockQueue( pxQueue ); + ( void ) xTaskResumeAll(); + } + } + else + { + /* Timed out. If there is no data in the queue exit, otherwise loop + back and attempt to read the data. */ + prvUnlockQueue( pxQueue ); + ( void ) xTaskResumeAll(); + + if( prvIsQueueEmpty( pxQueue ) != pdFALSE ) + { + traceQUEUE_RECEIVE_FAILED( pxQueue ); + return errQUEUE_EMPTY; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + } /*lint -restore */ +} +/*-----------------------------------------------------------*/ + +BaseType_t xQueueSemaphoreTake( QueueHandle_t xQueue, TickType_t xTicksToWait ) +{ +BaseType_t xEntryTimeSet = pdFALSE; +TimeOut_t xTimeOut; +Queue_t * const pxQueue = xQueue; + +#if( configUSE_MUTEXES == 1 ) + BaseType_t xInheritanceOccurred = pdFALSE; +#endif + + /* Check the queue pointer is not NULL. */ + configASSERT( ( pxQueue ) ); + + /* Check this really is a semaphore, in which case the item size will be + 0. */ + configASSERT( pxQueue->uxItemSize == 0 ); + + /* Cannot block if the scheduler is suspended. */ + #if ( ( INCLUDE_xTaskGetSchedulerState == 1 ) || ( configUSE_TIMERS == 1 ) ) + { + configASSERT( !( ( xTaskGetSchedulerState() == taskSCHEDULER_SUSPENDED ) && ( xTicksToWait != 0 ) ) ); + } + #endif + + + /*lint -save -e904 This function relaxes the coding standard somewhat to allow return + statements within the function itself. This is done in the interest + of execution time efficiency. */ + for( ;; ) + { + taskENTER_CRITICAL(); + { + /* Semaphores are queues with an item size of 0, and where the + number of messages in the queue is the semaphore's count value. */ + const UBaseType_t uxSemaphoreCount = pxQueue->uxMessagesWaiting; + + /* Is there data in the queue now? To be running the calling task + must be the highest priority task wanting to access the queue. */ + if( uxSemaphoreCount > ( UBaseType_t ) 0 ) + { + traceQUEUE_RECEIVE( pxQueue ); + + /* Semaphores are queues with a data size of zero and where the + messages waiting is the semaphore's count. Reduce the count. */ + pxQueue->uxMessagesWaiting = uxSemaphoreCount - ( UBaseType_t ) 1; + + #if ( configUSE_MUTEXES == 1 ) + { + if( pxQueue->uxQueueType == queueQUEUE_IS_MUTEX ) + { + /* Record the information required to implement + priority inheritance should it become necessary. */ + pxQueue->u.xSemaphore.xMutexHolder = pvTaskIncrementMutexHeldCount(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + #endif /* configUSE_MUTEXES */ + + /* Check to see if other tasks are blocked waiting to give the + semaphore, and if so, unblock the highest priority such task. */ + if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToSend ) ) == pdFALSE ) + { + if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToSend ) ) != pdFALSE ) + { + queueYIELD_IF_USING_PREEMPTION(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + taskEXIT_CRITICAL(); + return pdPASS; + } + else + { + if( xTicksToWait == ( TickType_t ) 0 ) + { + /* For inheritance to have occurred there must have been an + initial timeout, and an adjusted timeout cannot become 0, as + if it were 0 the function would have exited. */ + #if( configUSE_MUTEXES == 1 ) + { + configASSERT( xInheritanceOccurred == pdFALSE ); + } + #endif /* configUSE_MUTEXES */ + + /* The semaphore count was 0 and no block time is specified + (or the block time has expired) so exit now. */ + taskEXIT_CRITICAL(); + traceQUEUE_RECEIVE_FAILED( pxQueue ); + return errQUEUE_EMPTY; + } + else if( xEntryTimeSet == pdFALSE ) + { + /* The semaphore count was 0 and a block time was specified + so configure the timeout structure ready to block. */ + vTaskInternalSetTimeOutState( &xTimeOut ); + xEntryTimeSet = pdTRUE; + } + else + { + /* Entry time was already set. */ + mtCOVERAGE_TEST_MARKER(); + } + } + } + taskEXIT_CRITICAL(); + + /* Interrupts and other tasks can give to and take from the semaphore + now the critical section has been exited. */ + + vTaskSuspendAll(); + prvLockQueue( pxQueue ); + + /* Update the timeout state to see if it has expired yet. */ + if( xTaskCheckForTimeOut( &xTimeOut, &xTicksToWait ) == pdFALSE ) + { + /* A block time is specified and not expired. If the semaphore + count is 0 then enter the Blocked state to wait for a semaphore to + become available. As semaphores are implemented with queues the + queue being empty is equivalent to the semaphore count being 0. */ + if( prvIsQueueEmpty( pxQueue ) != pdFALSE ) + { + traceBLOCKING_ON_QUEUE_RECEIVE( pxQueue ); + + #if ( configUSE_MUTEXES == 1 ) + { + if( pxQueue->uxQueueType == queueQUEUE_IS_MUTEX ) + { + taskENTER_CRITICAL(); + { + xInheritanceOccurred = xTaskPriorityInherit( pxQueue->u.xSemaphore.xMutexHolder ); + } + taskEXIT_CRITICAL(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + #endif + + vTaskPlaceOnEventList( &( pxQueue->xTasksWaitingToReceive ), xTicksToWait ); + prvUnlockQueue( pxQueue ); + if( xTaskResumeAll() == pdFALSE ) + { + portYIELD_WITHIN_API(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + /* There was no timeout and the semaphore count was not 0, so + attempt to take the semaphore again. */ + prvUnlockQueue( pxQueue ); + ( void ) xTaskResumeAll(); + } + } + else + { + /* Timed out. */ + prvUnlockQueue( pxQueue ); + ( void ) xTaskResumeAll(); + + /* If the semaphore count is 0 exit now as the timeout has + expired. Otherwise return to attempt to take the semaphore that is + known to be available. As semaphores are implemented by queues the + queue being empty is equivalent to the semaphore count being 0. */ + if( prvIsQueueEmpty( pxQueue ) != pdFALSE ) + { + #if ( configUSE_MUTEXES == 1 ) + { + /* xInheritanceOccurred could only have be set if + pxQueue->uxQueueType == queueQUEUE_IS_MUTEX so no need to + test the mutex type again to check it is actually a mutex. */ + if( xInheritanceOccurred != pdFALSE ) + { + taskENTER_CRITICAL(); + { + UBaseType_t uxHighestWaitingPriority; + + /* This task blocking on the mutex caused another + task to inherit this task's priority. Now this task + has timed out the priority should be disinherited + again, but only as low as the next highest priority + task that is waiting for the same mutex. */ + uxHighestWaitingPriority = prvGetDisinheritPriorityAfterTimeout( pxQueue ); + vTaskPriorityDisinheritAfterTimeout( pxQueue->u.xSemaphore.xMutexHolder, uxHighestWaitingPriority ); + } + taskEXIT_CRITICAL(); + } + } + #endif /* configUSE_MUTEXES */ + + traceQUEUE_RECEIVE_FAILED( pxQueue ); + return errQUEUE_EMPTY; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + } /*lint -restore */ +} +/*-----------------------------------------------------------*/ + +BaseType_t xQueuePeek( QueueHandle_t xQueue, void * const pvBuffer, TickType_t xTicksToWait ) +{ +BaseType_t xEntryTimeSet = pdFALSE; +TimeOut_t xTimeOut; +int8_t *pcOriginalReadPosition; +Queue_t * const pxQueue = xQueue; + + /* Check the pointer is not NULL. */ + configASSERT( ( pxQueue ) ); + + /* The buffer into which data is received can only be NULL if the data size + is zero (so no data is copied into the buffer. */ + configASSERT( !( ( ( pvBuffer ) == NULL ) && ( ( pxQueue )->uxItemSize != ( UBaseType_t ) 0U ) ) ); + + /* Cannot block if the scheduler is suspended. */ + #if ( ( INCLUDE_xTaskGetSchedulerState == 1 ) || ( configUSE_TIMERS == 1 ) ) + { + configASSERT( !( ( xTaskGetSchedulerState() == taskSCHEDULER_SUSPENDED ) && ( xTicksToWait != 0 ) ) ); + } + #endif + + + /*lint -save -e904 This function relaxes the coding standard somewhat to + allow return statements within the function itself. This is done in the + interest of execution time efficiency. */ + for( ;; ) + { + taskENTER_CRITICAL(); + { + const UBaseType_t uxMessagesWaiting = pxQueue->uxMessagesWaiting; + + /* Is there data in the queue now? To be running the calling task + must be the highest priority task wanting to access the queue. */ + if( uxMessagesWaiting > ( UBaseType_t ) 0 ) + { + /* Remember the read position so it can be reset after the data + is read from the queue as this function is only peeking the + data, not removing it. */ + pcOriginalReadPosition = pxQueue->u.xQueue.pcReadFrom; + + prvCopyDataFromQueue( pxQueue, pvBuffer ); + traceQUEUE_PEEK( pxQueue ); + + /* The data is not being removed, so reset the read pointer. */ + pxQueue->u.xQueue.pcReadFrom = pcOriginalReadPosition; + + /* The data is being left in the queue, so see if there are + any other tasks waiting for the data. */ + if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) + { + if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE ) + { + /* The task waiting has a higher priority than this task. */ + queueYIELD_IF_USING_PREEMPTION(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + taskEXIT_CRITICAL(); + return pdPASS; + } + else + { + if( xTicksToWait == ( TickType_t ) 0 ) + { + /* The queue was empty and no block time is specified (or + the block time has expired) so leave now. */ + taskEXIT_CRITICAL(); + traceQUEUE_PEEK_FAILED( pxQueue ); + return errQUEUE_EMPTY; + } + else if( xEntryTimeSet == pdFALSE ) + { + /* The queue was empty and a block time was specified so + configure the timeout structure ready to enter the blocked + state. */ + vTaskInternalSetTimeOutState( &xTimeOut ); + xEntryTimeSet = pdTRUE; + } + else + { + /* Entry time was already set. */ + mtCOVERAGE_TEST_MARKER(); + } + } + } + taskEXIT_CRITICAL(); + + /* Interrupts and other tasks can send to and receive from the queue + now the critical section has been exited. */ + + vTaskSuspendAll(); + prvLockQueue( pxQueue ); + + /* Update the timeout state to see if it has expired yet. */ + if( xTaskCheckForTimeOut( &xTimeOut, &xTicksToWait ) == pdFALSE ) + { + /* Timeout has not expired yet, check to see if there is data in the + queue now, and if not enter the Blocked state to wait for data. */ + if( prvIsQueueEmpty( pxQueue ) != pdFALSE ) + { + traceBLOCKING_ON_QUEUE_PEEK( pxQueue ); + vTaskPlaceOnEventList( &( pxQueue->xTasksWaitingToReceive ), xTicksToWait ); + prvUnlockQueue( pxQueue ); + if( xTaskResumeAll() == pdFALSE ) + { + portYIELD_WITHIN_API(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + /* There is data in the queue now, so don't enter the blocked + state, instead return to try and obtain the data. */ + prvUnlockQueue( pxQueue ); + ( void ) xTaskResumeAll(); + } + } + else + { + /* The timeout has expired. If there is still no data in the queue + exit, otherwise go back and try to read the data again. */ + prvUnlockQueue( pxQueue ); + ( void ) xTaskResumeAll(); + + if( prvIsQueueEmpty( pxQueue ) != pdFALSE ) + { + traceQUEUE_PEEK_FAILED( pxQueue ); + return errQUEUE_EMPTY; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + } /*lint -restore */ +} +/*-----------------------------------------------------------*/ + +BaseType_t xQueueReceiveFromISR( QueueHandle_t xQueue, void * const pvBuffer, BaseType_t * const pxHigherPriorityTaskWoken ) +{ +BaseType_t xReturn; +UBaseType_t uxSavedInterruptStatus; +Queue_t * const pxQueue = xQueue; + + configASSERT( pxQueue ); + configASSERT( !( ( pvBuffer == NULL ) && ( pxQueue->uxItemSize != ( UBaseType_t ) 0U ) ) ); + + /* RTOS ports that support interrupt nesting have the concept of a maximum + system call (or maximum API call) interrupt priority. Interrupts that are + above the maximum system call priority are kept permanently enabled, even + when the RTOS kernel is in a critical section, but cannot make any calls to + FreeRTOS API functions. If configASSERT() is defined in FreeRTOSConfig.h + then portASSERT_IF_INTERRUPT_PRIORITY_INVALID() will result in an assertion + failure if a FreeRTOS API function is called from an interrupt that has been + assigned a priority above the configured maximum system call priority. + Only FreeRTOS functions that end in FromISR can be called from interrupts + that have been assigned a priority at or (logically) below the maximum + system call interrupt priority. FreeRTOS maintains a separate interrupt + safe API to ensure interrupt entry is as fast and as simple as possible. + More information (albeit Cortex-M specific) is provided on the following + link: http://www.freertos.org/RTOS-Cortex-M3-M4.html */ + portASSERT_IF_INTERRUPT_PRIORITY_INVALID(); + + uxSavedInterruptStatus = portSET_INTERRUPT_MASK_FROM_ISR(); + { + const UBaseType_t uxMessagesWaiting = pxQueue->uxMessagesWaiting; + + /* Cannot block in an ISR, so check there is data available. */ + if( uxMessagesWaiting > ( UBaseType_t ) 0 ) + { + const int8_t cRxLock = pxQueue->cRxLock; + + traceQUEUE_RECEIVE_FROM_ISR( pxQueue ); + + prvCopyDataFromQueue( pxQueue, pvBuffer ); + pxQueue->uxMessagesWaiting = uxMessagesWaiting - ( UBaseType_t ) 1; + + /* If the queue is locked the event list will not be modified. + Instead update the lock count so the task that unlocks the queue + will know that an ISR has removed data while the queue was + locked. */ + if( cRxLock == queueUNLOCKED ) + { + if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToSend ) ) == pdFALSE ) + { + if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToSend ) ) != pdFALSE ) + { + /* The task waiting has a higher priority than us so + force a context switch. */ + if( pxHigherPriorityTaskWoken != NULL ) + { + *pxHigherPriorityTaskWoken = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + /* Increment the lock count so the task that unlocks the queue + knows that data was removed while it was locked. */ + pxQueue->cRxLock = ( int8_t ) ( cRxLock + 1 ); + } + + xReturn = pdPASS; + } + else + { + xReturn = pdFAIL; + traceQUEUE_RECEIVE_FROM_ISR_FAILED( pxQueue ); + } + } + portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus ); + + return xReturn; +} +/*-----------------------------------------------------------*/ + +BaseType_t xQueuePeekFromISR( QueueHandle_t xQueue, void * const pvBuffer ) +{ +BaseType_t xReturn; +UBaseType_t uxSavedInterruptStatus; +int8_t *pcOriginalReadPosition; +Queue_t * const pxQueue = xQueue; + + configASSERT( pxQueue ); + configASSERT( !( ( pvBuffer == NULL ) && ( pxQueue->uxItemSize != ( UBaseType_t ) 0U ) ) ); + configASSERT( pxQueue->uxItemSize != 0 ); /* Can't peek a semaphore. */ + + /* RTOS ports that support interrupt nesting have the concept of a maximum + system call (or maximum API call) interrupt priority. Interrupts that are + above the maximum system call priority are kept permanently enabled, even + when the RTOS kernel is in a critical section, but cannot make any calls to + FreeRTOS API functions. If configASSERT() is defined in FreeRTOSConfig.h + then portASSERT_IF_INTERRUPT_PRIORITY_INVALID() will result in an assertion + failure if a FreeRTOS API function is called from an interrupt that has been + assigned a priority above the configured maximum system call priority. + Only FreeRTOS functions that end in FromISR can be called from interrupts + that have been assigned a priority at or (logically) below the maximum + system call interrupt priority. FreeRTOS maintains a separate interrupt + safe API to ensure interrupt entry is as fast and as simple as possible. + More information (albeit Cortex-M specific) is provided on the following + link: http://www.freertos.org/RTOS-Cortex-M3-M4.html */ + portASSERT_IF_INTERRUPT_PRIORITY_INVALID(); + + uxSavedInterruptStatus = portSET_INTERRUPT_MASK_FROM_ISR(); + { + /* Cannot block in an ISR, so check there is data available. */ + if( pxQueue->uxMessagesWaiting > ( UBaseType_t ) 0 ) + { + traceQUEUE_PEEK_FROM_ISR( pxQueue ); + + /* Remember the read position so it can be reset as nothing is + actually being removed from the queue. */ + pcOriginalReadPosition = pxQueue->u.xQueue.pcReadFrom; + prvCopyDataFromQueue( pxQueue, pvBuffer ); + pxQueue->u.xQueue.pcReadFrom = pcOriginalReadPosition; + + xReturn = pdPASS; + } + else + { + xReturn = pdFAIL; + traceQUEUE_PEEK_FROM_ISR_FAILED( pxQueue ); + } + } + portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus ); + + return xReturn; +} +/*-----------------------------------------------------------*/ + +UBaseType_t uxQueueMessagesWaiting( const QueueHandle_t xQueue ) +{ +UBaseType_t uxReturn; + + configASSERT( xQueue ); + + taskENTER_CRITICAL(); + { + uxReturn = ( ( Queue_t * ) xQueue )->uxMessagesWaiting; + } + taskEXIT_CRITICAL(); + + return uxReturn; +} /*lint !e818 Pointer cannot be declared const as xQueue is a typedef not pointer. */ +/*-----------------------------------------------------------*/ + +UBaseType_t uxQueueSpacesAvailable( const QueueHandle_t xQueue ) +{ +UBaseType_t uxReturn; +Queue_t * const pxQueue = xQueue; + + configASSERT( pxQueue ); + + taskENTER_CRITICAL(); + { + uxReturn = pxQueue->uxLength - pxQueue->uxMessagesWaiting; + } + taskEXIT_CRITICAL(); + + return uxReturn; +} /*lint !e818 Pointer cannot be declared const as xQueue is a typedef not pointer. */ +/*-----------------------------------------------------------*/ + +UBaseType_t uxQueueMessagesWaitingFromISR( const QueueHandle_t xQueue ) +{ +UBaseType_t uxReturn; +Queue_t * const pxQueue = xQueue; + + configASSERT( pxQueue ); + uxReturn = pxQueue->uxMessagesWaiting; + + return uxReturn; +} /*lint !e818 Pointer cannot be declared const as xQueue is a typedef not pointer. */ +/*-----------------------------------------------------------*/ + +void vQueueDelete( QueueHandle_t xQueue ) +{ +Queue_t * const pxQueue = xQueue; + + configASSERT( pxQueue ); + traceQUEUE_DELETE( pxQueue ); + + #if ( configQUEUE_REGISTRY_SIZE > 0 ) + { + vQueueUnregisterQueue( pxQueue ); + } + #endif + + #if( ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) && ( configSUPPORT_STATIC_ALLOCATION == 0 ) ) + { + /* The queue can only have been allocated dynamically - free it + again. */ + vPortFree( pxQueue ); + } + #elif( ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) && ( configSUPPORT_STATIC_ALLOCATION == 1 ) ) + { + /* The queue could have been allocated statically or dynamically, so + check before attempting to free the memory. */ + if( pxQueue->ucStaticallyAllocated == ( uint8_t ) pdFALSE ) + { + vPortFree( pxQueue ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + #else + { + /* The queue must have been statically allocated, so is not going to be + deleted. Avoid compiler warnings about the unused parameter. */ + ( void ) pxQueue; + } + #endif /* configSUPPORT_DYNAMIC_ALLOCATION */ +} +/*-----------------------------------------------------------*/ + +#if ( configUSE_TRACE_FACILITY == 1 ) + + UBaseType_t uxQueueGetQueueNumber( QueueHandle_t xQueue ) + { + return ( ( Queue_t * ) xQueue )->uxQueueNumber; + } + +#endif /* configUSE_TRACE_FACILITY */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_TRACE_FACILITY == 1 ) + + void vQueueSetQueueNumber( QueueHandle_t xQueue, UBaseType_t uxQueueNumber ) + { + ( ( Queue_t * ) xQueue )->uxQueueNumber = uxQueueNumber; + } + +#endif /* configUSE_TRACE_FACILITY */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_TRACE_FACILITY == 1 ) + + uint8_t ucQueueGetQueueType( QueueHandle_t xQueue ) + { + return ( ( Queue_t * ) xQueue )->ucQueueType; + } + +#endif /* configUSE_TRACE_FACILITY */ +/*-----------------------------------------------------------*/ + +#if( configUSE_MUTEXES == 1 ) + + static UBaseType_t prvGetDisinheritPriorityAfterTimeout( const Queue_t * const pxQueue ) + { + UBaseType_t uxHighestPriorityOfWaitingTasks; + + /* If a task waiting for a mutex causes the mutex holder to inherit a + priority, but the waiting task times out, then the holder should + disinherit the priority - but only down to the highest priority of any + other tasks that are waiting for the same mutex. For this purpose, + return the priority of the highest priority task that is waiting for the + mutex. */ + if( listCURRENT_LIST_LENGTH( &( pxQueue->xTasksWaitingToReceive ) ) > 0U ) + { + uxHighestPriorityOfWaitingTasks = ( UBaseType_t ) configMAX_PRIORITIES - ( UBaseType_t ) listGET_ITEM_VALUE_OF_HEAD_ENTRY( &( pxQueue->xTasksWaitingToReceive ) ); + } + else + { + uxHighestPriorityOfWaitingTasks = tskIDLE_PRIORITY; + } + + return uxHighestPriorityOfWaitingTasks; + } + +#endif /* configUSE_MUTEXES */ +/*-----------------------------------------------------------*/ + +static BaseType_t prvCopyDataToQueue( Queue_t * const pxQueue, const void *pvItemToQueue, const BaseType_t xPosition ) +{ +BaseType_t xReturn = pdFALSE; +UBaseType_t uxMessagesWaiting; + + /* This function is called from a critical section. */ + + uxMessagesWaiting = pxQueue->uxMessagesWaiting; + + if( pxQueue->uxItemSize == ( UBaseType_t ) 0 ) + { + #if ( configUSE_MUTEXES == 1 ) + { + if( pxQueue->uxQueueType == queueQUEUE_IS_MUTEX ) + { + /* The mutex is no longer being held. */ + xReturn = xTaskPriorityDisinherit( pxQueue->u.xSemaphore.xMutexHolder ); + pxQueue->u.xSemaphore.xMutexHolder = NULL; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + #endif /* configUSE_MUTEXES */ + } + else if( xPosition == queueSEND_TO_BACK ) + { + ( void ) memcpy( ( void * ) pxQueue->pcWriteTo, pvItemToQueue, ( size_t ) pxQueue->uxItemSize ); /*lint !e961 !e418 !e9087 MISRA exception as the casts are only redundant for some ports, plus previous logic ensures a null pointer can only be passed to memcpy() if the copy size is 0. Cast to void required by function signature and safe as no alignment requirement and copy length specified in bytes. */ + pxQueue->pcWriteTo += pxQueue->uxItemSize; /*lint !e9016 Pointer arithmetic on char types ok, especially in this use case where it is the clearest way of conveying intent. */ + if( pxQueue->pcWriteTo >= pxQueue->u.xQueue.pcTail ) /*lint !e946 MISRA exception justified as comparison of pointers is the cleanest solution. */ + { + pxQueue->pcWriteTo = pxQueue->pcHead; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + ( void ) memcpy( ( void * ) pxQueue->u.xQueue.pcReadFrom, pvItemToQueue, ( size_t ) pxQueue->uxItemSize ); /*lint !e961 !e9087 !e418 MISRA exception as the casts are only redundant for some ports. Cast to void required by function signature and safe as no alignment requirement and copy length specified in bytes. Assert checks null pointer only used when length is 0. */ + pxQueue->u.xQueue.pcReadFrom -= pxQueue->uxItemSize; + if( pxQueue->u.xQueue.pcReadFrom < pxQueue->pcHead ) /*lint !e946 MISRA exception justified as comparison of pointers is the cleanest solution. */ + { + pxQueue->u.xQueue.pcReadFrom = ( pxQueue->u.xQueue.pcTail - pxQueue->uxItemSize ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + if( xPosition == queueOVERWRITE ) + { + if( uxMessagesWaiting > ( UBaseType_t ) 0 ) + { + /* An item is not being added but overwritten, so subtract + one from the recorded number of items in the queue so when + one is added again below the number of recorded items remains + correct. */ + --uxMessagesWaiting; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + + pxQueue->uxMessagesWaiting = uxMessagesWaiting + ( UBaseType_t ) 1; + + return xReturn; +} +/*-----------------------------------------------------------*/ + +static void prvCopyDataFromQueue( Queue_t * const pxQueue, void * const pvBuffer ) +{ + if( pxQueue->uxItemSize != ( UBaseType_t ) 0 ) + { + pxQueue->u.xQueue.pcReadFrom += pxQueue->uxItemSize; /*lint !e9016 Pointer arithmetic on char types ok, especially in this use case where it is the clearest way of conveying intent. */ + if( pxQueue->u.xQueue.pcReadFrom >= pxQueue->u.xQueue.pcTail ) /*lint !e946 MISRA exception justified as use of the relational operator is the cleanest solutions. */ + { + pxQueue->u.xQueue.pcReadFrom = pxQueue->pcHead; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + ( void ) memcpy( ( void * ) pvBuffer, ( void * ) pxQueue->u.xQueue.pcReadFrom, ( size_t ) pxQueue->uxItemSize ); /*lint !e961 !e418 !e9087 MISRA exception as the casts are only redundant for some ports. Also previous logic ensures a null pointer can only be passed to memcpy() when the count is 0. Cast to void required by function signature and safe as no alignment requirement and copy length specified in bytes. */ + } +} +/*-----------------------------------------------------------*/ + +static void prvUnlockQueue( Queue_t * const pxQueue ) +{ + /* THIS FUNCTION MUST BE CALLED WITH THE SCHEDULER SUSPENDED. */ + + /* The lock counts contains the number of extra data items placed or + removed from the queue while the queue was locked. When a queue is + locked items can be added or removed, but the event lists cannot be + updated. */ + taskENTER_CRITICAL(); + { + int8_t cTxLock = pxQueue->cTxLock; + + /* See if data was added to the queue while it was locked. */ + while( cTxLock > queueLOCKED_UNMODIFIED ) + { + /* Data was posted while the queue was locked. Are any tasks + blocked waiting for data to become available? */ + #if ( configUSE_QUEUE_SETS == 1 ) + { + if( pxQueue->pxQueueSetContainer != NULL ) + { + if( prvNotifyQueueSetContainer( pxQueue ) != pdFALSE ) + { + /* The queue is a member of a queue set, and posting to + the queue set caused a higher priority task to unblock. + A context switch is required. */ + vTaskMissedYield(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + /* Tasks that are removed from the event list will get + added to the pending ready list as the scheduler is still + suspended. */ + if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) + { + if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE ) + { + /* The task waiting has a higher priority so record that a + context switch is required. */ + vTaskMissedYield(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + break; + } + } + } + #else /* configUSE_QUEUE_SETS */ + { + /* Tasks that are removed from the event list will get added to + the pending ready list as the scheduler is still suspended. */ + if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) + { + if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE ) + { + /* The task waiting has a higher priority so record that + a context switch is required. */ + vTaskMissedYield(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + break; + } + } + #endif /* configUSE_QUEUE_SETS */ + + --cTxLock; + } + + pxQueue->cTxLock = queueUNLOCKED; + } + taskEXIT_CRITICAL(); + + /* Do the same for the Rx lock. */ + taskENTER_CRITICAL(); + { + int8_t cRxLock = pxQueue->cRxLock; + + while( cRxLock > queueLOCKED_UNMODIFIED ) + { + if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToSend ) ) == pdFALSE ) + { + if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToSend ) ) != pdFALSE ) + { + vTaskMissedYield(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + --cRxLock; + } + else + { + break; + } + } + + pxQueue->cRxLock = queueUNLOCKED; + } + taskEXIT_CRITICAL(); +} +/*-----------------------------------------------------------*/ + +static BaseType_t prvIsQueueEmpty( const Queue_t *pxQueue ) +{ +BaseType_t xReturn; + + taskENTER_CRITICAL(); + { + if( pxQueue->uxMessagesWaiting == ( UBaseType_t ) 0 ) + { + xReturn = pdTRUE; + } + else + { + xReturn = pdFALSE; + } + } + taskEXIT_CRITICAL(); + + return xReturn; +} +/*-----------------------------------------------------------*/ + +BaseType_t xQueueIsQueueEmptyFromISR( const QueueHandle_t xQueue ) +{ +BaseType_t xReturn; +Queue_t * const pxQueue = xQueue; + + configASSERT( pxQueue ); + if( pxQueue->uxMessagesWaiting == ( UBaseType_t ) 0 ) + { + xReturn = pdTRUE; + } + else + { + xReturn = pdFALSE; + } + + return xReturn; +} /*lint !e818 xQueue could not be pointer to const because it is a typedef. */ +/*-----------------------------------------------------------*/ + +static BaseType_t prvIsQueueFull( const Queue_t *pxQueue ) +{ +BaseType_t xReturn; + + taskENTER_CRITICAL(); + { + if( pxQueue->uxMessagesWaiting == pxQueue->uxLength ) + { + xReturn = pdTRUE; + } + else + { + xReturn = pdFALSE; + } + } + taskEXIT_CRITICAL(); + + return xReturn; +} +/*-----------------------------------------------------------*/ + +BaseType_t xQueueIsQueueFullFromISR( const QueueHandle_t xQueue ) +{ +BaseType_t xReturn; +Queue_t * const pxQueue = xQueue; + + configASSERT( pxQueue ); + if( pxQueue->uxMessagesWaiting == pxQueue->uxLength ) + { + xReturn = pdTRUE; + } + else + { + xReturn = pdFALSE; + } + + return xReturn; +} /*lint !e818 xQueue could not be pointer to const because it is a typedef. */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_CO_ROUTINES == 1 ) + + BaseType_t xQueueCRSend( QueueHandle_t xQueue, const void *pvItemToQueue, TickType_t xTicksToWait ) + { + BaseType_t xReturn; + Queue_t * const pxQueue = xQueue; + + /* If the queue is already full we may have to block. A critical section + is required to prevent an interrupt removing something from the queue + between the check to see if the queue is full and blocking on the queue. */ + portDISABLE_INTERRUPTS(); + { + if( prvIsQueueFull( pxQueue ) != pdFALSE ) + { + /* The queue is full - do we want to block or just leave without + posting? */ + if( xTicksToWait > ( TickType_t ) 0 ) + { + /* As this is called from a coroutine we cannot block directly, but + return indicating that we need to block. */ + vCoRoutineAddToDelayedList( xTicksToWait, &( pxQueue->xTasksWaitingToSend ) ); + portENABLE_INTERRUPTS(); + return errQUEUE_BLOCKED; + } + else + { + portENABLE_INTERRUPTS(); + return errQUEUE_FULL; + } + } + } + portENABLE_INTERRUPTS(); + + portDISABLE_INTERRUPTS(); + { + if( pxQueue->uxMessagesWaiting < pxQueue->uxLength ) + { + /* There is room in the queue, copy the data into the queue. */ + prvCopyDataToQueue( pxQueue, pvItemToQueue, queueSEND_TO_BACK ); + xReturn = pdPASS; + + /* Were any co-routines waiting for data to become available? */ + if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) + { + /* In this instance the co-routine could be placed directly + into the ready list as we are within a critical section. + Instead the same pending ready list mechanism is used as if + the event were caused from within an interrupt. */ + if( xCoRoutineRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE ) + { + /* The co-routine waiting has a higher priority so record + that a yield might be appropriate. */ + xReturn = errQUEUE_YIELD; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + xReturn = errQUEUE_FULL; + } + } + portENABLE_INTERRUPTS(); + + return xReturn; + } + +#endif /* configUSE_CO_ROUTINES */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_CO_ROUTINES == 1 ) + + BaseType_t xQueueCRReceive( QueueHandle_t xQueue, void *pvBuffer, TickType_t xTicksToWait ) + { + BaseType_t xReturn; + Queue_t * const pxQueue = xQueue; + + /* If the queue is already empty we may have to block. A critical section + is required to prevent an interrupt adding something to the queue + between the check to see if the queue is empty and blocking on the queue. */ + portDISABLE_INTERRUPTS(); + { + if( pxQueue->uxMessagesWaiting == ( UBaseType_t ) 0 ) + { + /* There are no messages in the queue, do we want to block or just + leave with nothing? */ + if( xTicksToWait > ( TickType_t ) 0 ) + { + /* As this is a co-routine we cannot block directly, but return + indicating that we need to block. */ + vCoRoutineAddToDelayedList( xTicksToWait, &( pxQueue->xTasksWaitingToReceive ) ); + portENABLE_INTERRUPTS(); + return errQUEUE_BLOCKED; + } + else + { + portENABLE_INTERRUPTS(); + return errQUEUE_FULL; + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + portENABLE_INTERRUPTS(); + + portDISABLE_INTERRUPTS(); + { + if( pxQueue->uxMessagesWaiting > ( UBaseType_t ) 0 ) + { + /* Data is available from the queue. */ + pxQueue->u.xQueue.pcReadFrom += pxQueue->uxItemSize; + if( pxQueue->u.xQueue.pcReadFrom >= pxQueue->u.xQueue.pcTail ) + { + pxQueue->u.xQueue.pcReadFrom = pxQueue->pcHead; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + --( pxQueue->uxMessagesWaiting ); + ( void ) memcpy( ( void * ) pvBuffer, ( void * ) pxQueue->u.xQueue.pcReadFrom, ( unsigned ) pxQueue->uxItemSize ); + + xReturn = pdPASS; + + /* Were any co-routines waiting for space to become available? */ + if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToSend ) ) == pdFALSE ) + { + /* In this instance the co-routine could be placed directly + into the ready list as we are within a critical section. + Instead the same pending ready list mechanism is used as if + the event were caused from within an interrupt. */ + if( xCoRoutineRemoveFromEventList( &( pxQueue->xTasksWaitingToSend ) ) != pdFALSE ) + { + xReturn = errQUEUE_YIELD; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + xReturn = pdFAIL; + } + } + portENABLE_INTERRUPTS(); + + return xReturn; + } + +#endif /* configUSE_CO_ROUTINES */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_CO_ROUTINES == 1 ) + + BaseType_t xQueueCRSendFromISR( QueueHandle_t xQueue, const void *pvItemToQueue, BaseType_t xCoRoutinePreviouslyWoken ) + { + Queue_t * const pxQueue = xQueue; + + /* Cannot block within an ISR so if there is no space on the queue then + exit without doing anything. */ + if( pxQueue->uxMessagesWaiting < pxQueue->uxLength ) + { + prvCopyDataToQueue( pxQueue, pvItemToQueue, queueSEND_TO_BACK ); + + /* We only want to wake one co-routine per ISR, so check that a + co-routine has not already been woken. */ + if( xCoRoutinePreviouslyWoken == pdFALSE ) + { + if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) + { + if( xCoRoutineRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE ) + { + return pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + return xCoRoutinePreviouslyWoken; + } + +#endif /* configUSE_CO_ROUTINES */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_CO_ROUTINES == 1 ) + + BaseType_t xQueueCRReceiveFromISR( QueueHandle_t xQueue, void *pvBuffer, BaseType_t *pxCoRoutineWoken ) + { + BaseType_t xReturn; + Queue_t * const pxQueue = xQueue; + + /* We cannot block from an ISR, so check there is data available. If + not then just leave without doing anything. */ + if( pxQueue->uxMessagesWaiting > ( UBaseType_t ) 0 ) + { + /* Copy the data from the queue. */ + pxQueue->u.xQueue.pcReadFrom += pxQueue->uxItemSize; + if( pxQueue->u.xQueue.pcReadFrom >= pxQueue->u.xQueue.pcTail ) + { + pxQueue->u.xQueue.pcReadFrom = pxQueue->pcHead; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + --( pxQueue->uxMessagesWaiting ); + ( void ) memcpy( ( void * ) pvBuffer, ( void * ) pxQueue->u.xQueue.pcReadFrom, ( unsigned ) pxQueue->uxItemSize ); + + if( ( *pxCoRoutineWoken ) == pdFALSE ) + { + if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToSend ) ) == pdFALSE ) + { + if( xCoRoutineRemoveFromEventList( &( pxQueue->xTasksWaitingToSend ) ) != pdFALSE ) + { + *pxCoRoutineWoken = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + xReturn = pdPASS; + } + else + { + xReturn = pdFAIL; + } + + return xReturn; + } + +#endif /* configUSE_CO_ROUTINES */ +/*-----------------------------------------------------------*/ + +#if ( configQUEUE_REGISTRY_SIZE > 0 ) + + void vQueueAddToRegistry( QueueHandle_t xQueue, const char *pcQueueName ) /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + { + UBaseType_t ux; + + /* See if there is an empty space in the registry. A NULL name denotes + a free slot. */ + for( ux = ( UBaseType_t ) 0U; ux < ( UBaseType_t ) configQUEUE_REGISTRY_SIZE; ux++ ) + { + if( xQueueRegistry[ ux ].pcQueueName == NULL ) + { + /* Store the information on this queue. */ + xQueueRegistry[ ux ].pcQueueName = pcQueueName; + xQueueRegistry[ ux ].xHandle = xQueue; + + traceQUEUE_REGISTRY_ADD( xQueue, pcQueueName ); + break; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + } + +#endif /* configQUEUE_REGISTRY_SIZE */ +/*-----------------------------------------------------------*/ + +#if ( configQUEUE_REGISTRY_SIZE > 0 ) + + const char *pcQueueGetName( QueueHandle_t xQueue ) /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + { + UBaseType_t ux; + const char *pcReturn = NULL; /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + + /* Note there is nothing here to protect against another task adding or + removing entries from the registry while it is being searched. */ + for( ux = ( UBaseType_t ) 0U; ux < ( UBaseType_t ) configQUEUE_REGISTRY_SIZE; ux++ ) + { + if( xQueueRegistry[ ux ].xHandle == xQueue ) + { + pcReturn = xQueueRegistry[ ux ].pcQueueName; + break; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + + return pcReturn; + } /*lint !e818 xQueue cannot be a pointer to const because it is a typedef. */ + +#endif /* configQUEUE_REGISTRY_SIZE */ +/*-----------------------------------------------------------*/ + +#if ( configQUEUE_REGISTRY_SIZE > 0 ) + + void vQueueUnregisterQueue( QueueHandle_t xQueue ) + { + UBaseType_t ux; + + /* See if the handle of the queue being unregistered in actually in the + registry. */ + for( ux = ( UBaseType_t ) 0U; ux < ( UBaseType_t ) configQUEUE_REGISTRY_SIZE; ux++ ) + { + if( xQueueRegistry[ ux ].xHandle == xQueue ) + { + /* Set the name to NULL to show that this slot if free again. */ + xQueueRegistry[ ux ].pcQueueName = NULL; + + /* Set the handle to NULL to ensure the same queue handle cannot + appear in the registry twice if it is added, removed, then + added again. */ + xQueueRegistry[ ux ].xHandle = ( QueueHandle_t ) 0; + break; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + + } /*lint !e818 xQueue could not be pointer to const because it is a typedef. */ + +#endif /* configQUEUE_REGISTRY_SIZE */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_TIMERS == 1 ) + + void vQueueWaitForMessageRestricted( QueueHandle_t xQueue, TickType_t xTicksToWait, const BaseType_t xWaitIndefinitely ) + { + Queue_t * const pxQueue = xQueue; + + /* This function should not be called by application code hence the + 'Restricted' in its name. It is not part of the public API. It is + designed for use by kernel code, and has special calling requirements. + It can result in vListInsert() being called on a list that can only + possibly ever have one item in it, so the list will be fast, but even + so it should be called with the scheduler locked and not from a critical + section. */ + + /* Only do anything if there are no messages in the queue. This function + will not actually cause the task to block, just place it on a blocked + list. It will not block until the scheduler is unlocked - at which + time a yield will be performed. If an item is added to the queue while + the queue is locked, and the calling task blocks on the queue, then the + calling task will be immediately unblocked when the queue is unlocked. */ + prvLockQueue( pxQueue ); + if( pxQueue->uxMessagesWaiting == ( UBaseType_t ) 0U ) + { + /* There is nothing in the queue, block for the specified period. */ + vTaskPlaceOnEventListRestricted( &( pxQueue->xTasksWaitingToReceive ), xTicksToWait, xWaitIndefinitely ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + prvUnlockQueue( pxQueue ); + } + +#endif /* configUSE_TIMERS */ +/*-----------------------------------------------------------*/ + +#if( ( configUSE_QUEUE_SETS == 1 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) ) + + QueueSetHandle_t xQueueCreateSet( const UBaseType_t uxEventQueueLength ) + { + QueueSetHandle_t pxQueue; + + pxQueue = xQueueGenericCreate( uxEventQueueLength, ( UBaseType_t ) sizeof( Queue_t * ), queueQUEUE_TYPE_SET ); + + return pxQueue; + } + +#endif /* configUSE_QUEUE_SETS */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_QUEUE_SETS == 1 ) + + BaseType_t xQueueAddToSet( QueueSetMemberHandle_t xQueueOrSemaphore, QueueSetHandle_t xQueueSet ) + { + BaseType_t xReturn; + + taskENTER_CRITICAL(); + { + if( ( ( Queue_t * ) xQueueOrSemaphore )->pxQueueSetContainer != NULL ) + { + /* Cannot add a queue/semaphore to more than one queue set. */ + xReturn = pdFAIL; + } + else if( ( ( Queue_t * ) xQueueOrSemaphore )->uxMessagesWaiting != ( UBaseType_t ) 0 ) + { + /* Cannot add a queue/semaphore to a queue set if there are already + items in the queue/semaphore. */ + xReturn = pdFAIL; + } + else + { + ( ( Queue_t * ) xQueueOrSemaphore )->pxQueueSetContainer = xQueueSet; + xReturn = pdPASS; + } + } + taskEXIT_CRITICAL(); + + return xReturn; + } + +#endif /* configUSE_QUEUE_SETS */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_QUEUE_SETS == 1 ) + + BaseType_t xQueueRemoveFromSet( QueueSetMemberHandle_t xQueueOrSemaphore, QueueSetHandle_t xQueueSet ) + { + BaseType_t xReturn; + Queue_t * const pxQueueOrSemaphore = ( Queue_t * ) xQueueOrSemaphore; + + if( pxQueueOrSemaphore->pxQueueSetContainer != xQueueSet ) + { + /* The queue was not a member of the set. */ + xReturn = pdFAIL; + } + else if( pxQueueOrSemaphore->uxMessagesWaiting != ( UBaseType_t ) 0 ) + { + /* It is dangerous to remove a queue from a set when the queue is + not empty because the queue set will still hold pending events for + the queue. */ + xReturn = pdFAIL; + } + else + { + taskENTER_CRITICAL(); + { + /* The queue is no longer contained in the set. */ + pxQueueOrSemaphore->pxQueueSetContainer = NULL; + } + taskEXIT_CRITICAL(); + xReturn = pdPASS; + } + + return xReturn; + } /*lint !e818 xQueueSet could not be declared as pointing to const as it is a typedef. */ + +#endif /* configUSE_QUEUE_SETS */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_QUEUE_SETS == 1 ) + + QueueSetMemberHandle_t xQueueSelectFromSet( QueueSetHandle_t xQueueSet, TickType_t const xTicksToWait ) + { + QueueSetMemberHandle_t xReturn = NULL; + + ( void ) xQueueReceive( ( QueueHandle_t ) xQueueSet, &xReturn, xTicksToWait ); /*lint !e961 Casting from one typedef to another is not redundant. */ + return xReturn; + } + +#endif /* configUSE_QUEUE_SETS */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_QUEUE_SETS == 1 ) + + QueueSetMemberHandle_t xQueueSelectFromSetFromISR( QueueSetHandle_t xQueueSet ) + { + QueueSetMemberHandle_t xReturn = NULL; + + ( void ) xQueueReceiveFromISR( ( QueueHandle_t ) xQueueSet, &xReturn, NULL ); /*lint !e961 Casting from one typedef to another is not redundant. */ + return xReturn; + } + +#endif /* configUSE_QUEUE_SETS */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_QUEUE_SETS == 1 ) + + static BaseType_t prvNotifyQueueSetContainer( const Queue_t * const pxQueue ) + { + Queue_t *pxQueueSetContainer = pxQueue->pxQueueSetContainer; + BaseType_t xReturn = pdFALSE; + + /* This function must be called form a critical section. */ + + configASSERT( pxQueueSetContainer ); + configASSERT( pxQueueSetContainer->uxMessagesWaiting < pxQueueSetContainer->uxLength ); + + if( pxQueueSetContainer->uxMessagesWaiting < pxQueueSetContainer->uxLength ) + { + const int8_t cTxLock = pxQueueSetContainer->cTxLock; + + traceQUEUE_SEND( pxQueueSetContainer ); + + /* The data copied is the handle of the queue that contains data. */ + xReturn = prvCopyDataToQueue( pxQueueSetContainer, &pxQueue, queueSEND_TO_BACK ); + + if( cTxLock == queueUNLOCKED ) + { + if( listLIST_IS_EMPTY( &( pxQueueSetContainer->xTasksWaitingToReceive ) ) == pdFALSE ) + { + if( xTaskRemoveFromEventList( &( pxQueueSetContainer->xTasksWaitingToReceive ) ) != pdFALSE ) + { + /* The task waiting has a higher priority. */ + xReturn = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + pxQueueSetContainer->cTxLock = ( int8_t ) ( cTxLock + 1 ); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + return xReturn; + } + +#endif /* configUSE_QUEUE_SETS */ + + + + + + + + + + + + diff --git a/rtos/freertos/abstraction_layer_freertos/scr/readme.txt b/rtos/freertos/abstraction_layer_freertos/scr/readme.txt new file mode 100644 index 00000000..81518ecb --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/scr/readme.txt @@ -0,0 +1,17 @@ +Each real time kernel port consists of three files that contain the core kernel +components and are common to every port, and one or more files that are +specific to a particular microcontroller and or compiler. + ++ The FreeRTOS/Source directory contains the three files that are common to +every port - list.c, queue.c and tasks.c. The kernel is contained within these +three files. croutine.c implements the optional co-routine functionality - which +is normally only used on very memory limited systems. + ++ The FreeRTOS/Source/Portable directory contains the files that are specific to +a particular microcontroller and or compiler. + ++ The FreeRTOS/Source/include directory contains the real time kernel header +files. + +See the readme file in the FreeRTOS/Source/Portable directory for more +information. \ No newline at end of file diff --git a/rtos/freertos/abstraction_layer_freertos/scr/stream_buffer.c b/rtos/freertos/abstraction_layer_freertos/scr/stream_buffer.c new file mode 100644 index 00000000..ec7b3e36 --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/scr/stream_buffer.c @@ -0,0 +1,1263 @@ +/* + * FreeRTOS Kernel V10.3.0 + * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * + * http://www.FreeRTOS.org + * http://aws.amazon.com/freertos + * + * 1 tab == 4 spaces! + */ + +/* Standard includes. */ +#include +#include + +/* Defining MPU_WRAPPERS_INCLUDED_FROM_API_FILE prevents task.h from redefining +all the API functions to use the MPU wrappers. That should only be done when +task.h is included from an application file. */ +#define MPU_WRAPPERS_INCLUDED_FROM_API_FILE + +/* FreeRTOS includes. */ +#include "FreeRTOS.h" +#include "task.h" +#include "stream_buffer.h" + +#if( configUSE_TASK_NOTIFICATIONS != 1 ) + #error configUSE_TASK_NOTIFICATIONS must be set to 1 to build stream_buffer.c +#endif + +/* Lint e961, e9021 and e750 are suppressed as a MISRA exception justified +because the MPU ports require MPU_WRAPPERS_INCLUDED_FROM_API_FILE to be defined +for the header files above, but not in this file, in order to generate the +correct privileged Vs unprivileged linkage and placement. */ +#undef MPU_WRAPPERS_INCLUDED_FROM_API_FILE /*lint !e961 !e750 !e9021. */ + +/* If the user has not provided application specific Rx notification macros, +or #defined the notification macros away, them provide default implementations +that uses task notifications. */ +/*lint -save -e9026 Function like macros allowed and needed here so they can be overidden. */ +#ifndef sbRECEIVE_COMPLETED + #define sbRECEIVE_COMPLETED( pxStreamBuffer ) \ + vTaskSuspendAll(); \ + { \ + if( ( pxStreamBuffer )->xTaskWaitingToSend != NULL ) \ + { \ + ( void ) xTaskNotify( ( pxStreamBuffer )->xTaskWaitingToSend, \ + ( uint32_t ) 0, \ + eNoAction ); \ + ( pxStreamBuffer )->xTaskWaitingToSend = NULL; \ + } \ + } \ + ( void ) xTaskResumeAll(); +#endif /* sbRECEIVE_COMPLETED */ + +#ifndef sbRECEIVE_COMPLETED_FROM_ISR + #define sbRECEIVE_COMPLETED_FROM_ISR( pxStreamBuffer, \ + pxHigherPriorityTaskWoken ) \ + { \ + UBaseType_t uxSavedInterruptStatus; \ + \ + uxSavedInterruptStatus = ( UBaseType_t ) portSET_INTERRUPT_MASK_FROM_ISR(); \ + { \ + if( ( pxStreamBuffer )->xTaskWaitingToSend != NULL ) \ + { \ + ( void ) xTaskNotifyFromISR( ( pxStreamBuffer )->xTaskWaitingToSend, \ + ( uint32_t ) 0, \ + eNoAction, \ + pxHigherPriorityTaskWoken ); \ + ( pxStreamBuffer )->xTaskWaitingToSend = NULL; \ + } \ + } \ + portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus ); \ + } +#endif /* sbRECEIVE_COMPLETED_FROM_ISR */ + +/* If the user has not provided an application specific Tx notification macro, +or #defined the notification macro away, them provide a default implementation +that uses task notifications. */ +#ifndef sbSEND_COMPLETED + #define sbSEND_COMPLETED( pxStreamBuffer ) \ + vTaskSuspendAll(); \ + { \ + if( ( pxStreamBuffer )->xTaskWaitingToReceive != NULL ) \ + { \ + ( void ) xTaskNotify( ( pxStreamBuffer )->xTaskWaitingToReceive, \ + ( uint32_t ) 0, \ + eNoAction ); \ + ( pxStreamBuffer )->xTaskWaitingToReceive = NULL; \ + } \ + } \ + ( void ) xTaskResumeAll(); +#endif /* sbSEND_COMPLETED */ + +#ifndef sbSEND_COMPLETE_FROM_ISR + #define sbSEND_COMPLETE_FROM_ISR( pxStreamBuffer, pxHigherPriorityTaskWoken ) \ + { \ + UBaseType_t uxSavedInterruptStatus; \ + \ + uxSavedInterruptStatus = ( UBaseType_t ) portSET_INTERRUPT_MASK_FROM_ISR(); \ + { \ + if( ( pxStreamBuffer )->xTaskWaitingToReceive != NULL ) \ + { \ + ( void ) xTaskNotifyFromISR( ( pxStreamBuffer )->xTaskWaitingToReceive, \ + ( uint32_t ) 0, \ + eNoAction, \ + pxHigherPriorityTaskWoken ); \ + ( pxStreamBuffer )->xTaskWaitingToReceive = NULL; \ + } \ + } \ + portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus ); \ + } +#endif /* sbSEND_COMPLETE_FROM_ISR */ +/*lint -restore (9026) */ + +/* The number of bytes used to hold the length of a message in the buffer. */ +#define sbBYTES_TO_STORE_MESSAGE_LENGTH ( sizeof( configMESSAGE_BUFFER_LENGTH_TYPE ) ) + +/* Bits stored in the ucFlags field of the stream buffer. */ +#define sbFLAGS_IS_MESSAGE_BUFFER ( ( uint8_t ) 1 ) /* Set if the stream buffer was created as a message buffer, in which case it holds discrete messages rather than a stream. */ +#define sbFLAGS_IS_STATICALLY_ALLOCATED ( ( uint8_t ) 2 ) /* Set if the stream buffer was created using statically allocated memory. */ + +/*-----------------------------------------------------------*/ + +/* Structure that hold state information on the buffer. */ +typedef struct StreamBufferDef_t /*lint !e9058 Style convention uses tag. */ +{ + volatile size_t xTail; /* Index to the next item to read within the buffer. */ + volatile size_t xHead; /* Index to the next item to write within the buffer. */ + size_t xLength; /* The length of the buffer pointed to by pucBuffer. */ + size_t xTriggerLevelBytes; /* The number of bytes that must be in the stream buffer before a task that is waiting for data is unblocked. */ + volatile TaskHandle_t xTaskWaitingToReceive; /* Holds the handle of a task waiting for data, or NULL if no tasks are waiting. */ + volatile TaskHandle_t xTaskWaitingToSend; /* Holds the handle of a task waiting to send data to a message buffer that is full. */ + uint8_t *pucBuffer; /* Points to the buffer itself - that is - the RAM that stores the data passed through the buffer. */ + uint8_t ucFlags; + + #if ( configUSE_TRACE_FACILITY == 1 ) + UBaseType_t uxStreamBufferNumber; /* Used for tracing purposes. */ + #endif +} StreamBuffer_t; + +/* + * The number of bytes available to be read from the buffer. + */ +static size_t prvBytesInBuffer( const StreamBuffer_t * const pxStreamBuffer ) PRIVILEGED_FUNCTION; + +/* + * Add xCount bytes from pucData into the pxStreamBuffer message buffer. + * Returns the number of bytes written, which will either equal xCount in the + * success case, or 0 if there was not enough space in the buffer (in which case + * no data is written into the buffer). + */ +static size_t prvWriteBytesToBuffer( StreamBuffer_t * const pxStreamBuffer, const uint8_t *pucData, size_t xCount ) PRIVILEGED_FUNCTION; + +/* + * If the stream buffer is being used as a message buffer, then reads an entire + * message out of the buffer. If the stream buffer is being used as a stream + * buffer then read as many bytes as possible from the buffer. + * prvReadBytesFromBuffer() is called to actually extract the bytes from the + * buffer's data storage area. + */ +static size_t prvReadMessageFromBuffer( StreamBuffer_t *pxStreamBuffer, + void *pvRxData, + size_t xBufferLengthBytes, + size_t xBytesAvailable, + size_t xBytesToStoreMessageLength ) PRIVILEGED_FUNCTION; + +/* + * If the stream buffer is being used as a message buffer, then writes an entire + * message to the buffer. If the stream buffer is being used as a stream + * buffer then write as many bytes as possible to the buffer. + * prvWriteBytestoBuffer() is called to actually send the bytes to the buffer's + * data storage area. + */ +static size_t prvWriteMessageToBuffer( StreamBuffer_t * const pxStreamBuffer, + const void * pvTxData, + size_t xDataLengthBytes, + size_t xSpace, + size_t xRequiredSpace ) PRIVILEGED_FUNCTION; + +/* + * Read xMaxCount bytes from the pxStreamBuffer message buffer and write them + * to pucData. + */ +static size_t prvReadBytesFromBuffer( StreamBuffer_t *pxStreamBuffer, + uint8_t *pucData, + size_t xMaxCount, + size_t xBytesAvailable ) PRIVILEGED_FUNCTION; + +/* + * Called by both pxStreamBufferCreate() and pxStreamBufferCreateStatic() to + * initialise the members of the newly created stream buffer structure. + */ +static void prvInitialiseNewStreamBuffer( StreamBuffer_t * const pxStreamBuffer, + uint8_t * const pucBuffer, + size_t xBufferSizeBytes, + size_t xTriggerLevelBytes, + uint8_t ucFlags ) PRIVILEGED_FUNCTION; + +/*-----------------------------------------------------------*/ + +#if( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) + + StreamBufferHandle_t xStreamBufferGenericCreate( size_t xBufferSizeBytes, size_t xTriggerLevelBytes, BaseType_t xIsMessageBuffer ) + { + uint8_t *pucAllocatedMemory; + uint8_t ucFlags; + + /* In case the stream buffer is going to be used as a message buffer + (that is, it will hold discrete messages with a little meta data that + says how big the next message is) check the buffer will be large enough + to hold at least one message. */ + if( xIsMessageBuffer == pdTRUE ) + { + /* Is a message buffer but not statically allocated. */ + ucFlags = sbFLAGS_IS_MESSAGE_BUFFER; + configASSERT( xBufferSizeBytes > sbBYTES_TO_STORE_MESSAGE_LENGTH ); + } + else + { + /* Not a message buffer and not statically allocated. */ + ucFlags = 0; + configASSERT( xBufferSizeBytes > 0 ); + } + configASSERT( xTriggerLevelBytes <= xBufferSizeBytes ); + + /* A trigger level of 0 would cause a waiting task to unblock even when + the buffer was empty. */ + if( xTriggerLevelBytes == ( size_t ) 0 ) + { + xTriggerLevelBytes = ( size_t ) 1; + } + + /* A stream buffer requires a StreamBuffer_t structure and a buffer. + Both are allocated in a single call to pvPortMalloc(). The + StreamBuffer_t structure is placed at the start of the allocated memory + and the buffer follows immediately after. The requested size is + incremented so the free space is returned as the user would expect - + this is a quirk of the implementation that means otherwise the free + space would be reported as one byte smaller than would be logically + expected. */ + xBufferSizeBytes++; + pucAllocatedMemory = ( uint8_t * ) pvPortMalloc( xBufferSizeBytes + sizeof( StreamBuffer_t ) ); /*lint !e9079 malloc() only returns void*. */ + + if( pucAllocatedMemory != NULL ) + { + prvInitialiseNewStreamBuffer( ( StreamBuffer_t * ) pucAllocatedMemory, /* Structure at the start of the allocated memory. */ /*lint !e9087 Safe cast as allocated memory is aligned. */ /*lint !e826 Area is not too small and alignment is guaranteed provided malloc() behaves as expected and returns aligned buffer. */ + pucAllocatedMemory + sizeof( StreamBuffer_t ), /* Storage area follows. */ /*lint !e9016 Indexing past structure valid for uint8_t pointer, also storage area has no alignment requirement. */ + xBufferSizeBytes, + xTriggerLevelBytes, + ucFlags ); + + traceSTREAM_BUFFER_CREATE( ( ( StreamBuffer_t * ) pucAllocatedMemory ), xIsMessageBuffer ); + } + else + { + traceSTREAM_BUFFER_CREATE_FAILED( xIsMessageBuffer ); + } + + return ( StreamBufferHandle_t ) pucAllocatedMemory; /*lint !e9087 !e826 Safe cast as allocated memory is aligned. */ + } + +#endif /* configSUPPORT_DYNAMIC_ALLOCATION */ +/*-----------------------------------------------------------*/ + +#if( configSUPPORT_STATIC_ALLOCATION == 1 ) + + StreamBufferHandle_t xStreamBufferGenericCreateStatic( size_t xBufferSizeBytes, + size_t xTriggerLevelBytes, + BaseType_t xIsMessageBuffer, + uint8_t * const pucStreamBufferStorageArea, + StaticStreamBuffer_t * const pxStaticStreamBuffer ) + { + StreamBuffer_t * const pxStreamBuffer = ( StreamBuffer_t * ) pxStaticStreamBuffer; /*lint !e740 !e9087 Safe cast as StaticStreamBuffer_t is opaque Streambuffer_t. */ + StreamBufferHandle_t xReturn; + uint8_t ucFlags; + + configASSERT( pucStreamBufferStorageArea ); + configASSERT( pxStaticStreamBuffer ); + configASSERT( xTriggerLevelBytes <= xBufferSizeBytes ); + + /* A trigger level of 0 would cause a waiting task to unblock even when + the buffer was empty. */ + if( xTriggerLevelBytes == ( size_t ) 0 ) + { + xTriggerLevelBytes = ( size_t ) 1; + } + + if( xIsMessageBuffer != pdFALSE ) + { + /* Statically allocated message buffer. */ + ucFlags = sbFLAGS_IS_MESSAGE_BUFFER | sbFLAGS_IS_STATICALLY_ALLOCATED; + } + else + { + /* Statically allocated stream buffer. */ + ucFlags = sbFLAGS_IS_STATICALLY_ALLOCATED; + } + + /* In case the stream buffer is going to be used as a message buffer + (that is, it will hold discrete messages with a little meta data that + says how big the next message is) check the buffer will be large enough + to hold at least one message. */ + configASSERT( xBufferSizeBytes > sbBYTES_TO_STORE_MESSAGE_LENGTH ); + + #if( configASSERT_DEFINED == 1 ) + { + /* Sanity check that the size of the structure used to declare a + variable of type StaticStreamBuffer_t equals the size of the real + message buffer structure. */ + volatile size_t xSize = sizeof( StaticStreamBuffer_t ); + configASSERT( xSize == sizeof( StreamBuffer_t ) ); + } /*lint !e529 xSize is referenced is configASSERT() is defined. */ + #endif /* configASSERT_DEFINED */ + + if( ( pucStreamBufferStorageArea != NULL ) && ( pxStaticStreamBuffer != NULL ) ) + { + prvInitialiseNewStreamBuffer( pxStreamBuffer, + pucStreamBufferStorageArea, + xBufferSizeBytes, + xTriggerLevelBytes, + ucFlags ); + + /* Remember this was statically allocated in case it is ever deleted + again. */ + pxStreamBuffer->ucFlags |= sbFLAGS_IS_STATICALLY_ALLOCATED; + + traceSTREAM_BUFFER_CREATE( pxStreamBuffer, xIsMessageBuffer ); + + xReturn = ( StreamBufferHandle_t ) pxStaticStreamBuffer; /*lint !e9087 Data hiding requires cast to opaque type. */ + } + else + { + xReturn = NULL; + traceSTREAM_BUFFER_CREATE_STATIC_FAILED( xReturn, xIsMessageBuffer ); + } + + return xReturn; + } + +#endif /* ( configSUPPORT_STATIC_ALLOCATION == 1 ) */ +/*-----------------------------------------------------------*/ + +void vStreamBufferDelete( StreamBufferHandle_t xStreamBuffer ) +{ +StreamBuffer_t * pxStreamBuffer = xStreamBuffer; + + configASSERT( pxStreamBuffer ); + + traceSTREAM_BUFFER_DELETE( xStreamBuffer ); + + if( ( pxStreamBuffer->ucFlags & sbFLAGS_IS_STATICALLY_ALLOCATED ) == ( uint8_t ) pdFALSE ) + { + #if( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) + { + /* Both the structure and the buffer were allocated using a single call + to pvPortMalloc(), hence only one call to vPortFree() is required. */ + vPortFree( ( void * ) pxStreamBuffer ); /*lint !e9087 Standard free() semantics require void *, plus pxStreamBuffer was allocated by pvPortMalloc(). */ + } + #else + { + /* Should not be possible to get here, ucFlags must be corrupt. + Force an assert. */ + configASSERT( xStreamBuffer == ( StreamBufferHandle_t ) ~0 ); + } + #endif + } + else + { + /* The structure and buffer were not allocated dynamically and cannot be + freed - just scrub the structure so future use will assert. */ + ( void ) memset( pxStreamBuffer, 0x00, sizeof( StreamBuffer_t ) ); + } +} +/*-----------------------------------------------------------*/ + +BaseType_t xStreamBufferReset( StreamBufferHandle_t xStreamBuffer ) +{ +StreamBuffer_t * const pxStreamBuffer = xStreamBuffer; +BaseType_t xReturn = pdFAIL; + +#if( configUSE_TRACE_FACILITY == 1 ) + UBaseType_t uxStreamBufferNumber; +#endif + + configASSERT( pxStreamBuffer ); + + #if( configUSE_TRACE_FACILITY == 1 ) + { + /* Store the stream buffer number so it can be restored after the + reset. */ + uxStreamBufferNumber = pxStreamBuffer->uxStreamBufferNumber; + } + #endif + + /* Can only reset a message buffer if there are no tasks blocked on it. */ + taskENTER_CRITICAL(); + { + if( pxStreamBuffer->xTaskWaitingToReceive == NULL ) + { + if( pxStreamBuffer->xTaskWaitingToSend == NULL ) + { + prvInitialiseNewStreamBuffer( pxStreamBuffer, + pxStreamBuffer->pucBuffer, + pxStreamBuffer->xLength, + pxStreamBuffer->xTriggerLevelBytes, + pxStreamBuffer->ucFlags ); + xReturn = pdPASS; + + #if( configUSE_TRACE_FACILITY == 1 ) + { + pxStreamBuffer->uxStreamBufferNumber = uxStreamBufferNumber; + } + #endif + + traceSTREAM_BUFFER_RESET( xStreamBuffer ); + } + } + } + taskEXIT_CRITICAL(); + + return xReturn; +} +/*-----------------------------------------------------------*/ + +BaseType_t xStreamBufferSetTriggerLevel( StreamBufferHandle_t xStreamBuffer, size_t xTriggerLevel ) +{ +StreamBuffer_t * const pxStreamBuffer = xStreamBuffer; +BaseType_t xReturn; + + configASSERT( pxStreamBuffer ); + + /* It is not valid for the trigger level to be 0. */ + if( xTriggerLevel == ( size_t ) 0 ) + { + xTriggerLevel = ( size_t ) 1; + } + + /* The trigger level is the number of bytes that must be in the stream + buffer before a task that is waiting for data is unblocked. */ + if( xTriggerLevel <= pxStreamBuffer->xLength ) + { + pxStreamBuffer->xTriggerLevelBytes = xTriggerLevel; + xReturn = pdPASS; + } + else + { + xReturn = pdFALSE; + } + + return xReturn; +} +/*-----------------------------------------------------------*/ + +size_t xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) +{ +const StreamBuffer_t * const pxStreamBuffer = xStreamBuffer; +size_t xSpace; + + configASSERT( pxStreamBuffer ); + + xSpace = pxStreamBuffer->xLength + pxStreamBuffer->xTail; + xSpace -= pxStreamBuffer->xHead; + xSpace -= ( size_t ) 1; + + if( xSpace >= pxStreamBuffer->xLength ) + { + xSpace -= pxStreamBuffer->xLength; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + return xSpace; +} +/*-----------------------------------------------------------*/ + +size_t xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) +{ +const StreamBuffer_t * const pxStreamBuffer = xStreamBuffer; +size_t xReturn; + + configASSERT( pxStreamBuffer ); + + xReturn = prvBytesInBuffer( pxStreamBuffer ); + return xReturn; +} +/*-----------------------------------------------------------*/ + +size_t xStreamBufferSend( StreamBufferHandle_t xStreamBuffer, + const void *pvTxData, + size_t xDataLengthBytes, + TickType_t xTicksToWait ) +{ +StreamBuffer_t * const pxStreamBuffer = xStreamBuffer; +size_t xReturn, xSpace = 0; +size_t xRequiredSpace = xDataLengthBytes; +TimeOut_t xTimeOut; + + configASSERT( pvTxData ); + configASSERT( pxStreamBuffer ); + + /* This send function is used to write to both message buffers and stream + buffers. If this is a message buffer then the space needed must be + increased by the amount of bytes needed to store the length of the + message. */ + if( ( pxStreamBuffer->ucFlags & sbFLAGS_IS_MESSAGE_BUFFER ) != ( uint8_t ) 0 ) + { + xRequiredSpace += sbBYTES_TO_STORE_MESSAGE_LENGTH; + + /* Overflow? */ + configASSERT( xRequiredSpace > xDataLengthBytes ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + if( xTicksToWait != ( TickType_t ) 0 ) + { + vTaskSetTimeOutState( &xTimeOut ); + + do + { + /* Wait until the required number of bytes are free in the message + buffer. */ + taskENTER_CRITICAL(); + { + xSpace = xStreamBufferSpacesAvailable( pxStreamBuffer ); + + if( xSpace < xRequiredSpace ) + { + /* Clear notification state as going to wait for space. */ + ( void ) xTaskNotifyStateClear( NULL ); + + /* Should only be one writer. */ + configASSERT( pxStreamBuffer->xTaskWaitingToSend == NULL ); + pxStreamBuffer->xTaskWaitingToSend = xTaskGetCurrentTaskHandle(); + } + else + { + taskEXIT_CRITICAL(); + break; + } + } + taskEXIT_CRITICAL(); + + traceBLOCKING_ON_STREAM_BUFFER_SEND( xStreamBuffer ); + ( void ) xTaskNotifyWait( ( uint32_t ) 0, ( uint32_t ) 0, NULL, xTicksToWait ); + pxStreamBuffer->xTaskWaitingToSend = NULL; + + } while( xTaskCheckForTimeOut( &xTimeOut, &xTicksToWait ) == pdFALSE ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + if( xSpace == ( size_t ) 0 ) + { + xSpace = xStreamBufferSpacesAvailable( pxStreamBuffer ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + xReturn = prvWriteMessageToBuffer( pxStreamBuffer, pvTxData, xDataLengthBytes, xSpace, xRequiredSpace ); + + if( xReturn > ( size_t ) 0 ) + { + traceSTREAM_BUFFER_SEND( xStreamBuffer, xReturn ); + + /* Was a task waiting for the data? */ + if( prvBytesInBuffer( pxStreamBuffer ) >= pxStreamBuffer->xTriggerLevelBytes ) + { + sbSEND_COMPLETED( pxStreamBuffer ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + traceSTREAM_BUFFER_SEND_FAILED( xStreamBuffer ); + } + + return xReturn; +} +/*-----------------------------------------------------------*/ + +size_t xStreamBufferSendFromISR( StreamBufferHandle_t xStreamBuffer, + const void *pvTxData, + size_t xDataLengthBytes, + BaseType_t * const pxHigherPriorityTaskWoken ) +{ +StreamBuffer_t * const pxStreamBuffer = xStreamBuffer; +size_t xReturn, xSpace; +size_t xRequiredSpace = xDataLengthBytes; + + configASSERT( pvTxData ); + configASSERT( pxStreamBuffer ); + + /* This send function is used to write to both message buffers and stream + buffers. If this is a message buffer then the space needed must be + increased by the amount of bytes needed to store the length of the + message. */ + if( ( pxStreamBuffer->ucFlags & sbFLAGS_IS_MESSAGE_BUFFER ) != ( uint8_t ) 0 ) + { + xRequiredSpace += sbBYTES_TO_STORE_MESSAGE_LENGTH; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + xSpace = xStreamBufferSpacesAvailable( pxStreamBuffer ); + xReturn = prvWriteMessageToBuffer( pxStreamBuffer, pvTxData, xDataLengthBytes, xSpace, xRequiredSpace ); + + if( xReturn > ( size_t ) 0 ) + { + /* Was a task waiting for the data? */ + if( prvBytesInBuffer( pxStreamBuffer ) >= pxStreamBuffer->xTriggerLevelBytes ) + { + sbSEND_COMPLETE_FROM_ISR( pxStreamBuffer, pxHigherPriorityTaskWoken ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + traceSTREAM_BUFFER_SEND_FROM_ISR( xStreamBuffer, xReturn ); + + return xReturn; +} +/*-----------------------------------------------------------*/ + +static size_t prvWriteMessageToBuffer( StreamBuffer_t * const pxStreamBuffer, + const void * pvTxData, + size_t xDataLengthBytes, + size_t xSpace, + size_t xRequiredSpace ) +{ + BaseType_t xShouldWrite; + size_t xReturn; + + if( xSpace == ( size_t ) 0 ) + { + /* Doesn't matter if this is a stream buffer or a message buffer, there + is no space to write. */ + xShouldWrite = pdFALSE; + } + else if( ( pxStreamBuffer->ucFlags & sbFLAGS_IS_MESSAGE_BUFFER ) == ( uint8_t ) 0 ) + { + /* This is a stream buffer, as opposed to a message buffer, so writing a + stream of bytes rather than discrete messages. Write as many bytes as + possible. */ + xShouldWrite = pdTRUE; + xDataLengthBytes = configMIN( xDataLengthBytes, xSpace ); + } + else if( xSpace >= xRequiredSpace ) + { + /* This is a message buffer, as opposed to a stream buffer, and there + is enough space to write both the message length and the message itself + into the buffer. Start by writing the length of the data, the data + itself will be written later in this function. */ + xShouldWrite = pdTRUE; + ( void ) prvWriteBytesToBuffer( pxStreamBuffer, ( const uint8_t * ) &( xDataLengthBytes ), sbBYTES_TO_STORE_MESSAGE_LENGTH ); + } + else + { + /* There is space available, but not enough space. */ + xShouldWrite = pdFALSE; + } + + if( xShouldWrite != pdFALSE ) + { + /* Writes the data itself. */ + xReturn = prvWriteBytesToBuffer( pxStreamBuffer, ( const uint8_t * ) pvTxData, xDataLengthBytes ); /*lint !e9079 Storage buffer is implemented as uint8_t for ease of sizing, alighment and access. */ + } + else + { + xReturn = 0; + } + + return xReturn; +} +/*-----------------------------------------------------------*/ + +size_t xStreamBufferReceive( StreamBufferHandle_t xStreamBuffer, + void *pvRxData, + size_t xBufferLengthBytes, + TickType_t xTicksToWait ) +{ +StreamBuffer_t * const pxStreamBuffer = xStreamBuffer; +size_t xReceivedLength = 0, xBytesAvailable, xBytesToStoreMessageLength; + + configASSERT( pvRxData ); + configASSERT( pxStreamBuffer ); + + /* This receive function is used by both message buffers, which store + discrete messages, and stream buffers, which store a continuous stream of + bytes. Discrete messages include an additional + sbBYTES_TO_STORE_MESSAGE_LENGTH bytes that hold the length of the + message. */ + if( ( pxStreamBuffer->ucFlags & sbFLAGS_IS_MESSAGE_BUFFER ) != ( uint8_t ) 0 ) + { + xBytesToStoreMessageLength = sbBYTES_TO_STORE_MESSAGE_LENGTH; + } + else + { + xBytesToStoreMessageLength = 0; + } + + if( xTicksToWait != ( TickType_t ) 0 ) + { + /* Checking if there is data and clearing the notification state must be + performed atomically. */ + taskENTER_CRITICAL(); + { + xBytesAvailable = prvBytesInBuffer( pxStreamBuffer ); + + /* If this function was invoked by a message buffer read then + xBytesToStoreMessageLength holds the number of bytes used to hold + the length of the next discrete message. If this function was + invoked by a stream buffer read then xBytesToStoreMessageLength will + be 0. */ + if( xBytesAvailable <= xBytesToStoreMessageLength ) + { + /* Clear notification state as going to wait for data. */ + ( void ) xTaskNotifyStateClear( NULL ); + + /* Should only be one reader. */ + configASSERT( pxStreamBuffer->xTaskWaitingToReceive == NULL ); + pxStreamBuffer->xTaskWaitingToReceive = xTaskGetCurrentTaskHandle(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + taskEXIT_CRITICAL(); + + if( xBytesAvailable <= xBytesToStoreMessageLength ) + { + /* Wait for data to be available. */ + traceBLOCKING_ON_STREAM_BUFFER_RECEIVE( xStreamBuffer ); + ( void ) xTaskNotifyWait( ( uint32_t ) 0, ( uint32_t ) 0, NULL, xTicksToWait ); + pxStreamBuffer->xTaskWaitingToReceive = NULL; + + /* Recheck the data available after blocking. */ + xBytesAvailable = prvBytesInBuffer( pxStreamBuffer ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + xBytesAvailable = prvBytesInBuffer( pxStreamBuffer ); + } + + /* Whether receiving a discrete message (where xBytesToStoreMessageLength + holds the number of bytes used to store the message length) or a stream of + bytes (where xBytesToStoreMessageLength is zero), the number of bytes + available must be greater than xBytesToStoreMessageLength to be able to + read bytes from the buffer. */ + if( xBytesAvailable > xBytesToStoreMessageLength ) + { + xReceivedLength = prvReadMessageFromBuffer( pxStreamBuffer, pvRxData, xBufferLengthBytes, xBytesAvailable, xBytesToStoreMessageLength ); + + /* Was a task waiting for space in the buffer? */ + if( xReceivedLength != ( size_t ) 0 ) + { + traceSTREAM_BUFFER_RECEIVE( xStreamBuffer, xReceivedLength ); + sbRECEIVE_COMPLETED( pxStreamBuffer ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + traceSTREAM_BUFFER_RECEIVE_FAILED( xStreamBuffer ); + mtCOVERAGE_TEST_MARKER(); + } + + return xReceivedLength; +} +/*-----------------------------------------------------------*/ + +size_t xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) +{ +StreamBuffer_t * const pxStreamBuffer = xStreamBuffer; +size_t xReturn, xBytesAvailable, xOriginalTail; +configMESSAGE_BUFFER_LENGTH_TYPE xTempReturn; + + configASSERT( pxStreamBuffer ); + + /* Ensure the stream buffer is being used as a message buffer. */ + if( ( pxStreamBuffer->ucFlags & sbFLAGS_IS_MESSAGE_BUFFER ) != ( uint8_t ) 0 ) + { + xBytesAvailable = prvBytesInBuffer( pxStreamBuffer ); + if( xBytesAvailable > sbBYTES_TO_STORE_MESSAGE_LENGTH ) + { + /* The number of bytes available is greater than the number of bytes + required to hold the length of the next message, so another message + is available. Return its length without removing the length bytes + from the buffer. A copy of the tail is stored so the buffer can be + returned to its prior state as the message is not actually being + removed from the buffer. */ + xOriginalTail = pxStreamBuffer->xTail; + ( void ) prvReadBytesFromBuffer( pxStreamBuffer, ( uint8_t * ) &xTempReturn, sbBYTES_TO_STORE_MESSAGE_LENGTH, xBytesAvailable ); + xReturn = ( size_t ) xTempReturn; + pxStreamBuffer->xTail = xOriginalTail; + } + else + { + /* The minimum amount of bytes in a message buffer is + ( sbBYTES_TO_STORE_MESSAGE_LENGTH + 1 ), so if xBytesAvailable is + less than sbBYTES_TO_STORE_MESSAGE_LENGTH the only other valid + value is 0. */ + configASSERT( xBytesAvailable == 0 ); + xReturn = 0; + } + } + else + { + xReturn = 0; + } + + return xReturn; +} +/*-----------------------------------------------------------*/ + +size_t xStreamBufferReceiveFromISR( StreamBufferHandle_t xStreamBuffer, + void *pvRxData, + size_t xBufferLengthBytes, + BaseType_t * const pxHigherPriorityTaskWoken ) +{ +StreamBuffer_t * const pxStreamBuffer = xStreamBuffer; +size_t xReceivedLength = 0, xBytesAvailable, xBytesToStoreMessageLength; + + configASSERT( pvRxData ); + configASSERT( pxStreamBuffer ); + + /* This receive function is used by both message buffers, which store + discrete messages, and stream buffers, which store a continuous stream of + bytes. Discrete messages include an additional + sbBYTES_TO_STORE_MESSAGE_LENGTH bytes that hold the length of the + message. */ + if( ( pxStreamBuffer->ucFlags & sbFLAGS_IS_MESSAGE_BUFFER ) != ( uint8_t ) 0 ) + { + xBytesToStoreMessageLength = sbBYTES_TO_STORE_MESSAGE_LENGTH; + } + else + { + xBytesToStoreMessageLength = 0; + } + + xBytesAvailable = prvBytesInBuffer( pxStreamBuffer ); + + /* Whether receiving a discrete message (where xBytesToStoreMessageLength + holds the number of bytes used to store the message length) or a stream of + bytes (where xBytesToStoreMessageLength is zero), the number of bytes + available must be greater than xBytesToStoreMessageLength to be able to + read bytes from the buffer. */ + if( xBytesAvailable > xBytesToStoreMessageLength ) + { + xReceivedLength = prvReadMessageFromBuffer( pxStreamBuffer, pvRxData, xBufferLengthBytes, xBytesAvailable, xBytesToStoreMessageLength ); + + /* Was a task waiting for space in the buffer? */ + if( xReceivedLength != ( size_t ) 0 ) + { + sbRECEIVE_COMPLETED_FROM_ISR( pxStreamBuffer, pxHigherPriorityTaskWoken ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + traceSTREAM_BUFFER_RECEIVE_FROM_ISR( xStreamBuffer, xReceivedLength ); + + return xReceivedLength; +} +/*-----------------------------------------------------------*/ + +static size_t prvReadMessageFromBuffer( StreamBuffer_t *pxStreamBuffer, + void *pvRxData, + size_t xBufferLengthBytes, + size_t xBytesAvailable, + size_t xBytesToStoreMessageLength ) +{ +size_t xOriginalTail, xReceivedLength, xNextMessageLength; +configMESSAGE_BUFFER_LENGTH_TYPE xTempNextMessageLength; + + if( xBytesToStoreMessageLength != ( size_t ) 0 ) + { + /* A discrete message is being received. First receive the length + of the message. A copy of the tail is stored so the buffer can be + returned to its prior state if the length of the message is too + large for the provided buffer. */ + xOriginalTail = pxStreamBuffer->xTail; + ( void ) prvReadBytesFromBuffer( pxStreamBuffer, ( uint8_t * ) &xTempNextMessageLength, xBytesToStoreMessageLength, xBytesAvailable ); + xNextMessageLength = ( size_t ) xTempNextMessageLength; + + /* Reduce the number of bytes available by the number of bytes just + read out. */ + xBytesAvailable -= xBytesToStoreMessageLength; + + /* Check there is enough space in the buffer provided by the + user. */ + if( xNextMessageLength > xBufferLengthBytes ) + { + /* The user has provided insufficient space to read the message + so return the buffer to its previous state (so the length of + the message is in the buffer again). */ + pxStreamBuffer->xTail = xOriginalTail; + xNextMessageLength = 0; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + /* A stream of bytes is being received (as opposed to a discrete + message), so read as many bytes as possible. */ + xNextMessageLength = xBufferLengthBytes; + } + + /* Read the actual data. */ + xReceivedLength = prvReadBytesFromBuffer( pxStreamBuffer, ( uint8_t * ) pvRxData, xNextMessageLength, xBytesAvailable ); /*lint !e9079 Data storage area is implemented as uint8_t array for ease of sizing, indexing and alignment. */ + + return xReceivedLength; +} +/*-----------------------------------------------------------*/ + +BaseType_t xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) +{ +const StreamBuffer_t * const pxStreamBuffer = xStreamBuffer; +BaseType_t xReturn; +size_t xTail; + + configASSERT( pxStreamBuffer ); + + /* True if no bytes are available. */ + xTail = pxStreamBuffer->xTail; + if( pxStreamBuffer->xHead == xTail ) + { + xReturn = pdTRUE; + } + else + { + xReturn = pdFALSE; + } + + return xReturn; +} +/*-----------------------------------------------------------*/ + +BaseType_t xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) +{ +BaseType_t xReturn; +size_t xBytesToStoreMessageLength; +const StreamBuffer_t * const pxStreamBuffer = xStreamBuffer; + + configASSERT( pxStreamBuffer ); + + /* This generic version of the receive function is used by both message + buffers, which store discrete messages, and stream buffers, which store a + continuous stream of bytes. Discrete messages include an additional + sbBYTES_TO_STORE_MESSAGE_LENGTH bytes that hold the length of the message. */ + if( ( pxStreamBuffer->ucFlags & sbFLAGS_IS_MESSAGE_BUFFER ) != ( uint8_t ) 0 ) + { + xBytesToStoreMessageLength = sbBYTES_TO_STORE_MESSAGE_LENGTH; + } + else + { + xBytesToStoreMessageLength = 0; + } + + /* True if the available space equals zero. */ + if( xStreamBufferSpacesAvailable( xStreamBuffer ) <= xBytesToStoreMessageLength ) + { + xReturn = pdTRUE; + } + else + { + xReturn = pdFALSE; + } + + return xReturn; +} +/*-----------------------------------------------------------*/ + +BaseType_t xStreamBufferSendCompletedFromISR( StreamBufferHandle_t xStreamBuffer, BaseType_t *pxHigherPriorityTaskWoken ) +{ +StreamBuffer_t * const pxStreamBuffer = xStreamBuffer; +BaseType_t xReturn; +UBaseType_t uxSavedInterruptStatus; + + configASSERT( pxStreamBuffer ); + + uxSavedInterruptStatus = ( UBaseType_t ) portSET_INTERRUPT_MASK_FROM_ISR(); + { + if( ( pxStreamBuffer )->xTaskWaitingToReceive != NULL ) + { + ( void ) xTaskNotifyFromISR( ( pxStreamBuffer )->xTaskWaitingToReceive, + ( uint32_t ) 0, + eNoAction, + pxHigherPriorityTaskWoken ); + ( pxStreamBuffer )->xTaskWaitingToReceive = NULL; + xReturn = pdTRUE; + } + else + { + xReturn = pdFALSE; + } + } + portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus ); + + return xReturn; +} +/*-----------------------------------------------------------*/ + +BaseType_t xStreamBufferReceiveCompletedFromISR( StreamBufferHandle_t xStreamBuffer, BaseType_t *pxHigherPriorityTaskWoken ) +{ +StreamBuffer_t * const pxStreamBuffer = xStreamBuffer; +BaseType_t xReturn; +UBaseType_t uxSavedInterruptStatus; + + configASSERT( pxStreamBuffer ); + + uxSavedInterruptStatus = ( UBaseType_t ) portSET_INTERRUPT_MASK_FROM_ISR(); + { + if( ( pxStreamBuffer )->xTaskWaitingToSend != NULL ) + { + ( void ) xTaskNotifyFromISR( ( pxStreamBuffer )->xTaskWaitingToSend, + ( uint32_t ) 0, + eNoAction, + pxHigherPriorityTaskWoken ); + ( pxStreamBuffer )->xTaskWaitingToSend = NULL; + xReturn = pdTRUE; + } + else + { + xReturn = pdFALSE; + } + } + portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus ); + + return xReturn; +} +/*-----------------------------------------------------------*/ + +static size_t prvWriteBytesToBuffer( StreamBuffer_t * const pxStreamBuffer, const uint8_t *pucData, size_t xCount ) +{ +size_t xNextHead, xFirstLength; + + configASSERT( xCount > ( size_t ) 0 ); + + xNextHead = pxStreamBuffer->xHead; + + /* Calculate the number of bytes that can be added in the first write - + which may be less than the total number of bytes that need to be added if + the buffer will wrap back to the beginning. */ + xFirstLength = configMIN( pxStreamBuffer->xLength - xNextHead, xCount ); + + /* Write as many bytes as can be written in the first write. */ + configASSERT( ( xNextHead + xFirstLength ) <= pxStreamBuffer->xLength ); + ( void ) memcpy( ( void* ) ( &( pxStreamBuffer->pucBuffer[ xNextHead ] ) ), ( const void * ) pucData, xFirstLength ); /*lint !e9087 memcpy() requires void *. */ + + /* If the number of bytes written was less than the number that could be + written in the first write... */ + if( xCount > xFirstLength ) + { + /* ...then write the remaining bytes to the start of the buffer. */ + configASSERT( ( xCount - xFirstLength ) <= pxStreamBuffer->xLength ); + ( void ) memcpy( ( void * ) pxStreamBuffer->pucBuffer, ( const void * ) &( pucData[ xFirstLength ] ), xCount - xFirstLength ); /*lint !e9087 memcpy() requires void *. */ + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + xNextHead += xCount; + if( xNextHead >= pxStreamBuffer->xLength ) + { + xNextHead -= pxStreamBuffer->xLength; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + pxStreamBuffer->xHead = xNextHead; + + return xCount; +} +/*-----------------------------------------------------------*/ + +static size_t prvReadBytesFromBuffer( StreamBuffer_t *pxStreamBuffer, uint8_t *pucData, size_t xMaxCount, size_t xBytesAvailable ) +{ +size_t xCount, xFirstLength, xNextTail; + + /* Use the minimum of the wanted bytes and the available bytes. */ + xCount = configMIN( xBytesAvailable, xMaxCount ); + + if( xCount > ( size_t ) 0 ) + { + xNextTail = pxStreamBuffer->xTail; + + /* Calculate the number of bytes that can be read - which may be + less than the number wanted if the data wraps around to the start of + the buffer. */ + xFirstLength = configMIN( pxStreamBuffer->xLength - xNextTail, xCount ); + + /* Obtain the number of bytes it is possible to obtain in the first + read. Asserts check bounds of read and write. */ + configASSERT( xFirstLength <= xMaxCount ); + configASSERT( ( xNextTail + xFirstLength ) <= pxStreamBuffer->xLength ); + ( void ) memcpy( ( void * ) pucData, ( const void * ) &( pxStreamBuffer->pucBuffer[ xNextTail ] ), xFirstLength ); /*lint !e9087 memcpy() requires void *. */ + + /* If the total number of wanted bytes is greater than the number + that could be read in the first read... */ + if( xCount > xFirstLength ) + { + /*...then read the remaining bytes from the start of the buffer. */ + configASSERT( xCount <= xMaxCount ); + ( void ) memcpy( ( void * ) &( pucData[ xFirstLength ] ), ( void * ) ( pxStreamBuffer->pucBuffer ), xCount - xFirstLength ); /*lint !e9087 memcpy() requires void *. */ + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* Move the tail pointer to effectively remove the data read from + the buffer. */ + xNextTail += xCount; + + if( xNextTail >= pxStreamBuffer->xLength ) + { + xNextTail -= pxStreamBuffer->xLength; + } + + pxStreamBuffer->xTail = xNextTail; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + return xCount; +} +/*-----------------------------------------------------------*/ + +static size_t prvBytesInBuffer( const StreamBuffer_t * const pxStreamBuffer ) +{ +/* Returns the distance between xTail and xHead. */ +size_t xCount; + + xCount = pxStreamBuffer->xLength + pxStreamBuffer->xHead; + xCount -= pxStreamBuffer->xTail; + if ( xCount >= pxStreamBuffer->xLength ) + { + xCount -= pxStreamBuffer->xLength; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + return xCount; +} +/*-----------------------------------------------------------*/ + +static void prvInitialiseNewStreamBuffer( StreamBuffer_t * const pxStreamBuffer, + uint8_t * const pucBuffer, + size_t xBufferSizeBytes, + size_t xTriggerLevelBytes, + uint8_t ucFlags ) +{ + /* Assert here is deliberately writing to the entire buffer to ensure it can + be written to without generating exceptions, and is setting the buffer to a + known value to assist in development/debugging. */ + #if( configASSERT_DEFINED == 1 ) + { + /* The value written just has to be identifiable when looking at the + memory. Don't use 0xA5 as that is the stack fill value and could + result in confusion as to what is actually being observed. */ + const BaseType_t xWriteValue = 0x55; + configASSERT( memset( pucBuffer, ( int ) xWriteValue, xBufferSizeBytes ) == pucBuffer ); + } /*lint !e529 !e438 xWriteValue is only used if configASSERT() is defined. */ + #endif + + ( void ) memset( ( void * ) pxStreamBuffer, 0x00, sizeof( StreamBuffer_t ) ); /*lint !e9087 memset() requires void *. */ + pxStreamBuffer->pucBuffer = pucBuffer; + pxStreamBuffer->xLength = xBufferSizeBytes; + pxStreamBuffer->xTriggerLevelBytes = xTriggerLevelBytes; + pxStreamBuffer->ucFlags = ucFlags; +} + +#if ( configUSE_TRACE_FACILITY == 1 ) + + UBaseType_t uxStreamBufferGetStreamBufferNumber( StreamBufferHandle_t xStreamBuffer ) + { + return xStreamBuffer->uxStreamBufferNumber; + } + +#endif /* configUSE_TRACE_FACILITY */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_TRACE_FACILITY == 1 ) + + void vStreamBufferSetStreamBufferNumber( StreamBufferHandle_t xStreamBuffer, UBaseType_t uxStreamBufferNumber ) + { + xStreamBuffer->uxStreamBufferNumber = uxStreamBufferNumber; + } + +#endif /* configUSE_TRACE_FACILITY */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_TRACE_FACILITY == 1 ) + + uint8_t ucStreamBufferGetStreamBufferType( StreamBufferHandle_t xStreamBuffer ) + { + return ( xStreamBuffer->ucFlags & sbFLAGS_IS_MESSAGE_BUFFER ); + } + +#endif /* configUSE_TRACE_FACILITY */ +/*-----------------------------------------------------------*/ diff --git a/rtos/freertos/abstraction_layer_freertos/scr/tasks.c b/rtos/freertos/abstraction_layer_freertos/scr/tasks.c new file mode 100644 index 00000000..f426a6fa --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/scr/tasks.c @@ -0,0 +1,5310 @@ +/* + * FreeRTOS Kernel V10.3.0 + * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * + * http://www.FreeRTOS.org + * http://aws.amazon.com/freertos + * + * 1 tab == 4 spaces! + */ + +/* Standard includes. */ +#include +#include + +/* Defining MPU_WRAPPERS_INCLUDED_FROM_API_FILE prevents task.h from redefining +all the API functions to use the MPU wrappers. That should only be done when +task.h is included from an application file. */ +#define MPU_WRAPPERS_INCLUDED_FROM_API_FILE + +/* FreeRTOS includes. */ +#include "FreeRTOS.h" +#include "task.h" +#include "timers.h" +#include "stack_macros.h" + +/* Lint e9021, e961 and e750 are suppressed as a MISRA exception justified +because the MPU ports require MPU_WRAPPERS_INCLUDED_FROM_API_FILE to be defined +for the header files above, but not in this file, in order to generate the +correct privileged Vs unprivileged linkage and placement. */ +#undef MPU_WRAPPERS_INCLUDED_FROM_API_FILE /*lint !e961 !e750 !e9021. */ + +/* Set configUSE_STATS_FORMATTING_FUNCTIONS to 2 to include the stats formatting +functions but without including stdio.h here. */ +#if ( configUSE_STATS_FORMATTING_FUNCTIONS == 1 ) + /* At the bottom of this file are two optional functions that can be used + to generate human readable text from the raw data generated by the + uxTaskGetSystemState() function. Note the formatting functions are provided + for convenience only, and are NOT considered part of the kernel. */ + #include +#endif /* configUSE_STATS_FORMATTING_FUNCTIONS == 1 ) */ + +#if( configUSE_PREEMPTION == 0 ) + /* If the cooperative scheduler is being used then a yield should not be + performed just because a higher priority task has been woken. */ + #define taskYIELD_IF_USING_PREEMPTION() +#else + #define taskYIELD_IF_USING_PREEMPTION() portYIELD_WITHIN_API() +#endif + +/* Values that can be assigned to the ucNotifyState member of the TCB. */ +#define taskNOT_WAITING_NOTIFICATION ( ( uint8_t ) 0 ) +#define taskWAITING_NOTIFICATION ( ( uint8_t ) 1 ) +#define taskNOTIFICATION_RECEIVED ( ( uint8_t ) 2 ) + +/* + * The value used to fill the stack of a task when the task is created. This + * is used purely for checking the high water mark for tasks. + */ +#define tskSTACK_FILL_BYTE ( 0xa5U ) + +/* Bits used to recored how a task's stack and TCB were allocated. */ +#define tskDYNAMICALLY_ALLOCATED_STACK_AND_TCB ( ( uint8_t ) 0 ) +#define tskSTATICALLY_ALLOCATED_STACK_ONLY ( ( uint8_t ) 1 ) +#define tskSTATICALLY_ALLOCATED_STACK_AND_TCB ( ( uint8_t ) 2 ) + +/* If any of the following are set then task stacks are filled with a known +value so the high water mark can be determined. If none of the following are +set then don't fill the stack so there is no unnecessary dependency on memset. */ +#if( ( configCHECK_FOR_STACK_OVERFLOW > 1 ) || ( configUSE_TRACE_FACILITY == 1 ) || ( INCLUDE_uxTaskGetStackHighWaterMark == 1 ) || ( INCLUDE_uxTaskGetStackHighWaterMark2 == 1 ) ) + #define tskSET_NEW_STACKS_TO_KNOWN_VALUE 1 +#else + #define tskSET_NEW_STACKS_TO_KNOWN_VALUE 0 +#endif + +/* + * Macros used by vListTask to indicate which state a task is in. + */ +#define tskRUNNING_CHAR ( 'X' ) +#define tskBLOCKED_CHAR ( 'B' ) +#define tskREADY_CHAR ( 'R' ) +#define tskDELETED_CHAR ( 'D' ) +#define tskSUSPENDED_CHAR ( 'S' ) + +/* + * Some kernel aware debuggers require the data the debugger needs access to be + * global, rather than file scope. + */ +#ifdef portREMOVE_STATIC_QUALIFIER + #define static +#endif + +/* The name allocated to the Idle task. This can be overridden by defining +configIDLE_TASK_NAME in FreeRTOSConfig.h. */ +#ifndef configIDLE_TASK_NAME + #define configIDLE_TASK_NAME "IDLE" +#endif + +#if ( configUSE_PORT_OPTIMISED_TASK_SELECTION == 0 ) + + /* If configUSE_PORT_OPTIMISED_TASK_SELECTION is 0 then task selection is + performed in a generic way that is not optimised to any particular + microcontroller architecture. */ + + /* uxTopReadyPriority holds the priority of the highest priority ready + state task. */ + #define taskRECORD_READY_PRIORITY( uxPriority ) \ + { \ + if( ( uxPriority ) > uxTopReadyPriority ) \ + { \ + uxTopReadyPriority = ( uxPriority ); \ + } \ + } /* taskRECORD_READY_PRIORITY */ + + /*-----------------------------------------------------------*/ + + #define taskSELECT_HIGHEST_PRIORITY_TASK() \ + { \ + UBaseType_t uxTopPriority = uxTopReadyPriority; \ + \ + /* Find the highest priority queue that contains ready tasks. */ \ + while( listLIST_IS_EMPTY( &( pxReadyTasksLists[ uxTopPriority ] ) ) ) \ + { \ + configASSERT( uxTopPriority ); \ + --uxTopPriority; \ + } \ + \ + /* listGET_OWNER_OF_NEXT_ENTRY indexes through the list, so the tasks of \ + the same priority get an equal share of the processor time. */ \ + listGET_OWNER_OF_NEXT_ENTRY( pxCurrentTCB, &( pxReadyTasksLists[ uxTopPriority ] ) ); \ + uxTopReadyPriority = uxTopPriority; \ + } /* taskSELECT_HIGHEST_PRIORITY_TASK */ + + /*-----------------------------------------------------------*/ + + /* Define away taskRESET_READY_PRIORITY() and portRESET_READY_PRIORITY() as + they are only required when a port optimised method of task selection is + being used. */ + #define taskRESET_READY_PRIORITY( uxPriority ) + #define portRESET_READY_PRIORITY( uxPriority, uxTopReadyPriority ) + +#else /* configUSE_PORT_OPTIMISED_TASK_SELECTION */ + + /* If configUSE_PORT_OPTIMISED_TASK_SELECTION is 1 then task selection is + performed in a way that is tailored to the particular microcontroller + architecture being used. */ + + /* A port optimised version is provided. Call the port defined macros. */ + #define taskRECORD_READY_PRIORITY( uxPriority ) portRECORD_READY_PRIORITY( uxPriority, uxTopReadyPriority ) + + /*-----------------------------------------------------------*/ + + #define taskSELECT_HIGHEST_PRIORITY_TASK() \ + { \ + UBaseType_t uxTopPriority; \ + \ + /* Find the highest priority list that contains ready tasks. */ \ + portGET_HIGHEST_PRIORITY( uxTopPriority, uxTopReadyPriority ); \ + configASSERT( listCURRENT_LIST_LENGTH( &( pxReadyTasksLists[ uxTopPriority ] ) ) > 0 ); \ + listGET_OWNER_OF_NEXT_ENTRY( pxCurrentTCB, &( pxReadyTasksLists[ uxTopPriority ] ) ); \ + } /* taskSELECT_HIGHEST_PRIORITY_TASK() */ + + /*-----------------------------------------------------------*/ + + /* A port optimised version is provided, call it only if the TCB being reset + is being referenced from a ready list. If it is referenced from a delayed + or suspended list then it won't be in a ready list. */ + #define taskRESET_READY_PRIORITY( uxPriority ) \ + { \ + if( listCURRENT_LIST_LENGTH( &( pxReadyTasksLists[ ( uxPriority ) ] ) ) == ( UBaseType_t ) 0 ) \ + { \ + portRESET_READY_PRIORITY( ( uxPriority ), ( uxTopReadyPriority ) ); \ + } \ + } + +#endif /* configUSE_PORT_OPTIMISED_TASK_SELECTION */ + +/*-----------------------------------------------------------*/ + +/* pxDelayedTaskList and pxOverflowDelayedTaskList are switched when the tick +count overflows. */ +#define taskSWITCH_DELAYED_LISTS() \ +{ \ + List_t *pxTemp; \ + \ + /* The delayed tasks list should be empty when the lists are switched. */ \ + configASSERT( ( listLIST_IS_EMPTY( pxDelayedTaskList ) ) ); \ + \ + pxTemp = pxDelayedTaskList; \ + pxDelayedTaskList = pxOverflowDelayedTaskList; \ + pxOverflowDelayedTaskList = pxTemp; \ + xNumOfOverflows++; \ + prvResetNextTaskUnblockTime(); \ +} + +/*-----------------------------------------------------------*/ + +/* + * Place the task represented by pxTCB into the appropriate ready list for + * the task. It is inserted at the end of the list. + */ +#define prvAddTaskToReadyList( pxTCB ) \ + traceMOVED_TASK_TO_READY_STATE( pxTCB ); \ + taskRECORD_READY_PRIORITY( ( pxTCB )->uxPriority ); \ + vListInsertEnd( &( pxReadyTasksLists[ ( pxTCB )->uxPriority ] ), &( ( pxTCB )->xStateListItem ) ); \ + tracePOST_MOVED_TASK_TO_READY_STATE( pxTCB ) +/*-----------------------------------------------------------*/ + +/* + * Several functions take an TaskHandle_t parameter that can optionally be NULL, + * where NULL is used to indicate that the handle of the currently executing + * task should be used in place of the parameter. This macro simply checks to + * see if the parameter is NULL and returns a pointer to the appropriate TCB. + */ +#define prvGetTCBFromHandle( pxHandle ) ( ( ( pxHandle ) == NULL ) ? pxCurrentTCB : ( pxHandle ) ) + +/* The item value of the event list item is normally used to hold the priority +of the task to which it belongs (coded to allow it to be held in reverse +priority order). However, it is occasionally borrowed for other purposes. It +is important its value is not updated due to a task priority change while it is +being used for another purpose. The following bit definition is used to inform +the scheduler that the value should not be changed - in which case it is the +responsibility of whichever module is using the value to ensure it gets set back +to its original value when it is released. */ +#if( configUSE_16_BIT_TICKS == 1 ) + #define taskEVENT_LIST_ITEM_VALUE_IN_USE 0x8000U +#else + #define taskEVENT_LIST_ITEM_VALUE_IN_USE 0x80000000UL +#endif + +/* + * Task control block. A task control block (TCB) is allocated for each task, + * and stores task state information, including a pointer to the task's context + * (the task's run time environment, including register values) + */ +typedef struct tskTaskControlBlock /* The old naming convention is used to prevent breaking kernel aware debuggers. */ +{ + volatile StackType_t *pxTopOfStack; /*< Points to the location of the last item placed on the tasks stack. THIS MUST BE THE FIRST MEMBER OF THE TCB STRUCT. */ + + #if ( portUSING_MPU_WRAPPERS == 1 ) + xMPU_SETTINGS xMPUSettings; /*< The MPU settings are defined as part of the port layer. THIS MUST BE THE SECOND MEMBER OF THE TCB STRUCT. */ + #endif + + ListItem_t xStateListItem; /*< The list that the state list item of a task is reference from denotes the state of that task (Ready, Blocked, Suspended ). */ + ListItem_t xEventListItem; /*< Used to reference a task from an event list. */ + UBaseType_t uxPriority; /*< The priority of the task. 0 is the lowest priority. */ + StackType_t *pxStack; /*< Points to the start of the stack. */ + char pcTaskName[ configMAX_TASK_NAME_LEN ];/*< Descriptive name given to the task when created. Facilitates debugging only. */ /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + + #if ( ( portSTACK_GROWTH > 0 ) || ( configRECORD_STACK_HIGH_ADDRESS == 1 ) ) + StackType_t *pxEndOfStack; /*< Points to the highest valid address for the stack. */ + #endif + + #if ( portCRITICAL_NESTING_IN_TCB == 1 ) + UBaseType_t uxCriticalNesting; /*< Holds the critical section nesting depth for ports that do not maintain their own count in the port layer. */ + #endif + + #if ( configUSE_TRACE_FACILITY == 1 ) + UBaseType_t uxTCBNumber; /*< Stores a number that increments each time a TCB is created. It allows debuggers to determine when a task has been deleted and then recreated. */ + UBaseType_t uxTaskNumber; /*< Stores a number specifically for use by third party trace code. */ + #endif + + #if ( configUSE_MUTEXES == 1 ) + UBaseType_t uxBasePriority; /*< The priority last assigned to the task - used by the priority inheritance mechanism. */ + UBaseType_t uxMutexesHeld; + #endif + + #if ( configUSE_APPLICATION_TASK_TAG == 1 ) + TaskHookFunction_t pxTaskTag; + #endif + + #if( configNUM_THREAD_LOCAL_STORAGE_POINTERS > 0 ) + void *pvThreadLocalStoragePointers[ configNUM_THREAD_LOCAL_STORAGE_POINTERS ]; + #endif + + #if( configGENERATE_RUN_TIME_STATS == 1 ) + uint32_t ulRunTimeCounter; /*< Stores the amount of time the task has spent in the Running state. */ + #endif + + #if ( configUSE_NEWLIB_REENTRANT == 1 ) + /* Allocate a Newlib reent structure that is specific to this task. + Note Newlib support has been included by popular demand, but is not + used by the FreeRTOS maintainers themselves. FreeRTOS is not + responsible for resulting newlib operation. User must be familiar with + newlib and must provide system-wide implementations of the necessary + stubs. Be warned that (at the time of writing) the current newlib design + implements a system-wide malloc() that must be provided with locks. + + See the third party link http://www.nadler.com/embedded/newlibAndFreeRTOS.html + for additional information. */ + struct _reent xNewLib_reent; + #endif + + #if( configUSE_TASK_NOTIFICATIONS == 1 ) + volatile uint32_t ulNotifiedValue; + volatile uint8_t ucNotifyState; + #endif + + /* See the comments in FreeRTOS.h with the definition of + tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE. */ + #if( tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE != 0 ) /*lint !e731 !e9029 Macro has been consolidated for readability reasons. */ + uint8_t ucStaticallyAllocated; /*< Set to pdTRUE if the task is a statically allocated to ensure no attempt is made to free the memory. */ + #endif + + #if( INCLUDE_xTaskAbortDelay == 1 ) + uint8_t ucDelayAborted; + #endif + + #if( configUSE_POSIX_ERRNO == 1 ) + int iTaskErrno; + #endif + +} tskTCB; + +/* The old tskTCB name is maintained above then typedefed to the new TCB_t name +below to enable the use of older kernel aware debuggers. */ +typedef tskTCB TCB_t; + +/*lint -save -e956 A manual analysis and inspection has been used to determine +which static variables must be declared volatile. */ +PRIVILEGED_DATA TCB_t * volatile pxCurrentTCB = NULL; + +/* Lists for ready and blocked tasks. -------------------- +xDelayedTaskList1 and xDelayedTaskList2 could be move to function scople but +doing so breaks some kernel aware debuggers and debuggers that rely on removing +the static qualifier. */ +PRIVILEGED_DATA static List_t pxReadyTasksLists[ configMAX_PRIORITIES ];/*< Prioritised ready tasks. */ +PRIVILEGED_DATA static List_t xDelayedTaskList1; /*< Delayed tasks. */ +PRIVILEGED_DATA static List_t xDelayedTaskList2; /*< Delayed tasks (two lists are used - one for delays that have overflowed the current tick count. */ +PRIVILEGED_DATA static List_t * volatile pxDelayedTaskList; /*< Points to the delayed task list currently being used. */ +PRIVILEGED_DATA static List_t * volatile pxOverflowDelayedTaskList; /*< Points to the delayed task list currently being used to hold tasks that have overflowed the current tick count. */ +PRIVILEGED_DATA static List_t xPendingReadyList; /*< Tasks that have been readied while the scheduler was suspended. They will be moved to the ready list when the scheduler is resumed. */ + +#if( INCLUDE_vTaskDelete == 1 ) + + PRIVILEGED_DATA static List_t xTasksWaitingTermination; /*< Tasks that have been deleted - but their memory not yet freed. */ + PRIVILEGED_DATA static volatile UBaseType_t uxDeletedTasksWaitingCleanUp = ( UBaseType_t ) 0U; + +#endif + +#if ( INCLUDE_vTaskSuspend == 1 ) + + PRIVILEGED_DATA static List_t xSuspendedTaskList; /*< Tasks that are currently suspended. */ + +#endif + +/* Global POSIX errno. Its value is changed upon context switching to match +the errno of the currently running task. */ +#if ( configUSE_POSIX_ERRNO == 1 ) + int FreeRTOS_errno = 0; +#endif + +/* Other file private variables. --------------------------------*/ +PRIVILEGED_DATA static volatile UBaseType_t uxCurrentNumberOfTasks = ( UBaseType_t ) 0U; +PRIVILEGED_DATA static volatile TickType_t xTickCount = ( TickType_t ) configINITIAL_TICK_COUNT; +PRIVILEGED_DATA static volatile UBaseType_t uxTopReadyPriority = tskIDLE_PRIORITY; +PRIVILEGED_DATA static volatile BaseType_t xSchedulerRunning = pdFALSE; +PRIVILEGED_DATA static volatile TickType_t xPendedTicks = ( TickType_t ) 0U; +PRIVILEGED_DATA static volatile BaseType_t xYieldPending = pdFALSE; +PRIVILEGED_DATA static volatile BaseType_t xNumOfOverflows = ( BaseType_t ) 0; +PRIVILEGED_DATA static UBaseType_t uxTaskNumber = ( UBaseType_t ) 0U; +PRIVILEGED_DATA static volatile TickType_t xNextTaskUnblockTime = ( TickType_t ) 0U; /* Initialised to portMAX_DELAY before the scheduler starts. */ +PRIVILEGED_DATA static TaskHandle_t xIdleTaskHandle = NULL; /*< Holds the handle of the idle task. The idle task is created automatically when the scheduler is started. */ + +/* Context switches are held pending while the scheduler is suspended. Also, +interrupts must not manipulate the xStateListItem of a TCB, or any of the +lists the xStateListItem can be referenced from, if the scheduler is suspended. +If an interrupt needs to unblock a task while the scheduler is suspended then it +moves the task's event list item into the xPendingReadyList, ready for the +kernel to move the task from the pending ready list into the real ready list +when the scheduler is unsuspended. The pending ready list itself can only be +accessed from a critical section. */ +PRIVILEGED_DATA static volatile UBaseType_t uxSchedulerSuspended = ( UBaseType_t ) pdFALSE; + +#if ( configGENERATE_RUN_TIME_STATS == 1 ) + + /* Do not move these variables to function scope as doing so prevents the + code working with debuggers that need to remove the static qualifier. */ + PRIVILEGED_DATA static uint32_t ulTaskSwitchedInTime = 0UL; /*< Holds the value of a timer/counter the last time a task was switched in. */ + PRIVILEGED_DATA static uint32_t ulTotalRunTime = 0UL; /*< Holds the total amount of execution time as defined by the run time counter clock. */ + +#endif + +/*lint -restore */ + +/*-----------------------------------------------------------*/ + +/* Callback function prototypes. --------------------------*/ +#if( configCHECK_FOR_STACK_OVERFLOW > 0 ) + + extern void vApplicationStackOverflowHook( TaskHandle_t xTask, char *pcTaskName ); + +#endif + +#if( configUSE_TICK_HOOK > 0 ) + + extern void vApplicationTickHook( void ); /*lint !e526 Symbol not defined as it is an application callback. */ + +#endif + +#if( configSUPPORT_STATIC_ALLOCATION == 1 ) + + extern void vApplicationGetIdleTaskMemory( StaticTask_t **ppxIdleTaskTCBBuffer, StackType_t **ppxIdleTaskStackBuffer, uint32_t *pulIdleTaskStackSize ); /*lint !e526 Symbol not defined as it is an application callback. */ + +#endif + +/* File private functions. --------------------------------*/ + +/** + * Utility task that simply returns pdTRUE if the task referenced by xTask is + * currently in the Suspended state, or pdFALSE if the task referenced by xTask + * is in any other state. + */ +#if ( INCLUDE_vTaskSuspend == 1 ) + + static BaseType_t prvTaskIsTaskSuspended( const TaskHandle_t xTask ) PRIVILEGED_FUNCTION; + +#endif /* INCLUDE_vTaskSuspend */ + +/* + * Utility to ready all the lists used by the scheduler. This is called + * automatically upon the creation of the first task. + */ +static void prvInitialiseTaskLists( void ) PRIVILEGED_FUNCTION; + +/* + * The idle task, which as all tasks is implemented as a never ending loop. + * The idle task is automatically created and added to the ready lists upon + * creation of the first user task. + * + * The portTASK_FUNCTION_PROTO() macro is used to allow port/compiler specific + * language extensions. The equivalent prototype for this function is: + * + * void prvIdleTask( void *pvParameters ); + * + */ +static portTASK_FUNCTION_PROTO( prvIdleTask, pvParameters ); + +/* + * Utility to free all memory allocated by the scheduler to hold a TCB, + * including the stack pointed to by the TCB. + * + * This does not free memory allocated by the task itself (i.e. memory + * allocated by calls to pvPortMalloc from within the tasks application code). + */ +#if ( INCLUDE_vTaskDelete == 1 ) + + static void prvDeleteTCB( TCB_t *pxTCB ) PRIVILEGED_FUNCTION; + +#endif + +/* + * Used only by the idle task. This checks to see if anything has been placed + * in the list of tasks waiting to be deleted. If so the task is cleaned up + * and its TCB deleted. + */ +static void prvCheckTasksWaitingTermination( void ) PRIVILEGED_FUNCTION; + +/* + * The currently executing task is entering the Blocked state. Add the task to + * either the current or the overflow delayed task list. + */ +static void prvAddCurrentTaskToDelayedList( TickType_t xTicksToWait, const BaseType_t xCanBlockIndefinitely ) PRIVILEGED_FUNCTION; + +/* + * Fills an TaskStatus_t structure with information on each task that is + * referenced from the pxList list (which may be a ready list, a delayed list, + * a suspended list, etc.). + * + * THIS FUNCTION IS INTENDED FOR DEBUGGING ONLY, AND SHOULD NOT BE CALLED FROM + * NORMAL APPLICATION CODE. + */ +#if ( configUSE_TRACE_FACILITY == 1 ) + + static UBaseType_t prvListTasksWithinSingleList( TaskStatus_t *pxTaskStatusArray, List_t *pxList, eTaskState eState ) PRIVILEGED_FUNCTION; + +#endif + +/* + * Searches pxList for a task with name pcNameToQuery - returning a handle to + * the task if it is found, or NULL if the task is not found. + */ +#if ( INCLUDE_xTaskGetHandle == 1 ) + + static TCB_t *prvSearchForNameWithinSingleList( List_t *pxList, const char pcNameToQuery[] ) PRIVILEGED_FUNCTION; + +#endif + +/* + * When a task is created, the stack of the task is filled with a known value. + * This function determines the 'high water mark' of the task stack by + * determining how much of the stack remains at the original preset value. + */ +#if ( ( configUSE_TRACE_FACILITY == 1 ) || ( INCLUDE_uxTaskGetStackHighWaterMark == 1 ) || ( INCLUDE_uxTaskGetStackHighWaterMark2 == 1 ) ) + + static configSTACK_DEPTH_TYPE prvTaskCheckFreeStackSpace( const uint8_t * pucStackByte ) PRIVILEGED_FUNCTION; + +#endif + +/* + * Return the amount of time, in ticks, that will pass before the kernel will + * next move a task from the Blocked state to the Running state. + * + * This conditional compilation should use inequality to 0, not equality to 1. + * This is to ensure portSUPPRESS_TICKS_AND_SLEEP() can be called when user + * defined low power mode implementations require configUSE_TICKLESS_IDLE to be + * set to a value other than 1. + */ +#if ( configUSE_TICKLESS_IDLE != 0 ) + + static TickType_t prvGetExpectedIdleTime( void ) PRIVILEGED_FUNCTION; + +#endif + +/* + * Set xNextTaskUnblockTime to the time at which the next Blocked state task + * will exit the Blocked state. + */ +static void prvResetNextTaskUnblockTime( void ); + +#if ( ( configUSE_TRACE_FACILITY == 1 ) && ( configUSE_STATS_FORMATTING_FUNCTIONS > 0 ) ) + + /* + * Helper function used to pad task names with spaces when printing out + * human readable tables of task information. + */ + static char *prvWriteNameToBuffer( char *pcBuffer, const char *pcTaskName ) PRIVILEGED_FUNCTION; + +#endif + +/* + * Called after a Task_t structure has been allocated either statically or + * dynamically to fill in the structure's members. + */ +static void prvInitialiseNewTask( TaskFunction_t pxTaskCode, + const char * const pcName, /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + const uint32_t ulStackDepth, + void * const pvParameters, + UBaseType_t uxPriority, + TaskHandle_t * const pxCreatedTask, + TCB_t *pxNewTCB, + const MemoryRegion_t * const xRegions ) PRIVILEGED_FUNCTION; + +/* + * Called after a new task has been created and initialised to place the task + * under the control of the scheduler. + */ +static void prvAddNewTaskToReadyList( TCB_t *pxNewTCB ) PRIVILEGED_FUNCTION; + +/* + * freertos_tasks_c_additions_init() should only be called if the user definable + * macro FREERTOS_TASKS_C_ADDITIONS_INIT() is defined, as that is the only macro + * called by the function. + */ +#ifdef FREERTOS_TASKS_C_ADDITIONS_INIT + + static void freertos_tasks_c_additions_init( void ) PRIVILEGED_FUNCTION; + +#endif + +/*-----------------------------------------------------------*/ + +#if( configSUPPORT_STATIC_ALLOCATION == 1 ) + + TaskHandle_t xTaskCreateStatic( TaskFunction_t pxTaskCode, + const char * const pcName, /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + const uint32_t ulStackDepth, + void * const pvParameters, + UBaseType_t uxPriority, + StackType_t * const puxStackBuffer, + StaticTask_t * const pxTaskBuffer ) + { + TCB_t *pxNewTCB; + TaskHandle_t xReturn; + + configASSERT( puxStackBuffer != NULL ); + configASSERT( pxTaskBuffer != NULL ); + + #if( configASSERT_DEFINED == 1 ) + { + /* Sanity check that the size of the structure used to declare a + variable of type StaticTask_t equals the size of the real task + structure. */ + volatile size_t xSize = sizeof( StaticTask_t ); + configASSERT( xSize == sizeof( TCB_t ) ); + ( void ) xSize; /* Prevent lint warning when configASSERT() is not used. */ + } + #endif /* configASSERT_DEFINED */ + + + if( ( pxTaskBuffer != NULL ) && ( puxStackBuffer != NULL ) ) + { + /* The memory used for the task's TCB and stack are passed into this + function - use them. */ + pxNewTCB = ( TCB_t * ) pxTaskBuffer; /*lint !e740 !e9087 Unusual cast is ok as the structures are designed to have the same alignment, and the size is checked by an assert. */ + pxNewTCB->pxStack = ( StackType_t * ) puxStackBuffer; + + #if( tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE != 0 ) /*lint !e731 !e9029 Macro has been consolidated for readability reasons. */ + { + /* Tasks can be created statically or dynamically, so note this + task was created statically in case the task is later deleted. */ + pxNewTCB->ucStaticallyAllocated = tskSTATICALLY_ALLOCATED_STACK_AND_TCB; + } + #endif /* tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE */ + + prvInitialiseNewTask( pxTaskCode, pcName, ulStackDepth, pvParameters, uxPriority, &xReturn, pxNewTCB, NULL ); + prvAddNewTaskToReadyList( pxNewTCB ); + } + else + { + xReturn = NULL; + } + + return xReturn; + } + +#endif /* SUPPORT_STATIC_ALLOCATION */ +/*-----------------------------------------------------------*/ + +#if( ( portUSING_MPU_WRAPPERS == 1 ) && ( configSUPPORT_STATIC_ALLOCATION == 1 ) ) + + BaseType_t xTaskCreateRestrictedStatic( const TaskParameters_t * const pxTaskDefinition, TaskHandle_t *pxCreatedTask ) + { + TCB_t *pxNewTCB; + BaseType_t xReturn = errCOULD_NOT_ALLOCATE_REQUIRED_MEMORY; + + configASSERT( pxTaskDefinition->puxStackBuffer != NULL ); + configASSERT( pxTaskDefinition->pxTaskBuffer != NULL ); + + if( ( pxTaskDefinition->puxStackBuffer != NULL ) && ( pxTaskDefinition->pxTaskBuffer != NULL ) ) + { + /* Allocate space for the TCB. Where the memory comes from depends + on the implementation of the port malloc function and whether or + not static allocation is being used. */ + pxNewTCB = ( TCB_t * ) pxTaskDefinition->pxTaskBuffer; + + /* Store the stack location in the TCB. */ + pxNewTCB->pxStack = pxTaskDefinition->puxStackBuffer; + + #if( tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE != 0 ) + { + /* Tasks can be created statically or dynamically, so note this + task was created statically in case the task is later deleted. */ + pxNewTCB->ucStaticallyAllocated = tskSTATICALLY_ALLOCATED_STACK_AND_TCB; + } + #endif /* tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE */ + + prvInitialiseNewTask( pxTaskDefinition->pvTaskCode, + pxTaskDefinition->pcName, + ( uint32_t ) pxTaskDefinition->usStackDepth, + pxTaskDefinition->pvParameters, + pxTaskDefinition->uxPriority, + pxCreatedTask, pxNewTCB, + pxTaskDefinition->xRegions ); + + prvAddNewTaskToReadyList( pxNewTCB ); + xReturn = pdPASS; + } + + return xReturn; + } + +#endif /* ( portUSING_MPU_WRAPPERS == 1 ) && ( configSUPPORT_STATIC_ALLOCATION == 1 ) */ +/*-----------------------------------------------------------*/ + +#if( ( portUSING_MPU_WRAPPERS == 1 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) ) + + BaseType_t xTaskCreateRestricted( const TaskParameters_t * const pxTaskDefinition, TaskHandle_t *pxCreatedTask ) + { + TCB_t *pxNewTCB; + BaseType_t xReturn = errCOULD_NOT_ALLOCATE_REQUIRED_MEMORY; + + configASSERT( pxTaskDefinition->puxStackBuffer ); + + if( pxTaskDefinition->puxStackBuffer != NULL ) + { + /* Allocate space for the TCB. Where the memory comes from depends + on the implementation of the port malloc function and whether or + not static allocation is being used. */ + pxNewTCB = ( TCB_t * ) pvPortMalloc( sizeof( TCB_t ) ); + + if( pxNewTCB != NULL ) + { + /* Store the stack location in the TCB. */ + pxNewTCB->pxStack = pxTaskDefinition->puxStackBuffer; + + #if( tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE != 0 ) + { + /* Tasks can be created statically or dynamically, so note + this task had a statically allocated stack in case it is + later deleted. The TCB was allocated dynamically. */ + pxNewTCB->ucStaticallyAllocated = tskSTATICALLY_ALLOCATED_STACK_ONLY; + } + #endif /* tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE */ + + prvInitialiseNewTask( pxTaskDefinition->pvTaskCode, + pxTaskDefinition->pcName, + ( uint32_t ) pxTaskDefinition->usStackDepth, + pxTaskDefinition->pvParameters, + pxTaskDefinition->uxPriority, + pxCreatedTask, pxNewTCB, + pxTaskDefinition->xRegions ); + + prvAddNewTaskToReadyList( pxNewTCB ); + xReturn = pdPASS; + } + } + + return xReturn; + } + +#endif /* portUSING_MPU_WRAPPERS */ +/*-----------------------------------------------------------*/ + +#if( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) + + BaseType_t xTaskCreate( TaskFunction_t pxTaskCode, + const char * const pcName, /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + const configSTACK_DEPTH_TYPE usStackDepth, + void * const pvParameters, + UBaseType_t uxPriority, + TaskHandle_t * const pxCreatedTask ) + { + TCB_t *pxNewTCB; + BaseType_t xReturn; + + /* If the stack grows down then allocate the stack then the TCB so the stack + does not grow into the TCB. Likewise if the stack grows up then allocate + the TCB then the stack. */ + #if( portSTACK_GROWTH > 0 ) + { + /* Allocate space for the TCB. Where the memory comes from depends on + the implementation of the port malloc function and whether or not static + allocation is being used. */ + pxNewTCB = ( TCB_t * ) pvPortMalloc( sizeof( TCB_t ) ); + + if( pxNewTCB != NULL ) + { + /* Allocate space for the stack used by the task being created. + The base of the stack memory stored in the TCB so the task can + be deleted later if required. */ + pxNewTCB->pxStack = ( StackType_t * ) pvPortMalloc( ( ( ( size_t ) usStackDepth ) * sizeof( StackType_t ) ) ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ + + if( pxNewTCB->pxStack == NULL ) + { + /* Could not allocate the stack. Delete the allocated TCB. */ + vPortFree( pxNewTCB ); + pxNewTCB = NULL; + } + } + } + #else /* portSTACK_GROWTH */ + { + StackType_t *pxStack; + + /* Allocate space for the stack used by the task being created. */ + pxStack = pvPortMalloc( ( ( ( size_t ) usStackDepth ) * sizeof( StackType_t ) ) ); /*lint !e9079 All values returned by pvPortMalloc() have at least the alignment required by the MCU's stack and this allocation is the stack. */ + + if( pxStack != NULL ) + { + /* Allocate space for the TCB. */ + pxNewTCB = ( TCB_t * ) pvPortMalloc( sizeof( TCB_t ) ); /*lint !e9087 !e9079 All values returned by pvPortMalloc() have at least the alignment required by the MCU's stack, and the first member of TCB_t is always a pointer to the task's stack. */ + + if( pxNewTCB != NULL ) + { + /* Store the stack location in the TCB. */ + pxNewTCB->pxStack = pxStack; + } + else + { + /* The stack cannot be used as the TCB was not created. Free + it again. */ + vPortFree( pxStack ); + } + } + else + { + pxNewTCB = NULL; + } + } + #endif /* portSTACK_GROWTH */ + + if( pxNewTCB != NULL ) + { + #if( tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE != 0 ) /*lint !e9029 !e731 Macro has been consolidated for readability reasons. */ + { + /* Tasks can be created statically or dynamically, so note this + task was created dynamically in case it is later deleted. */ + pxNewTCB->ucStaticallyAllocated = tskDYNAMICALLY_ALLOCATED_STACK_AND_TCB; + } + #endif /* tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE */ + + prvInitialiseNewTask( pxTaskCode, pcName, ( uint32_t ) usStackDepth, pvParameters, uxPriority, pxCreatedTask, pxNewTCB, NULL ); + prvAddNewTaskToReadyList( pxNewTCB ); + xReturn = pdPASS; + } + else + { + xReturn = errCOULD_NOT_ALLOCATE_REQUIRED_MEMORY; + } + + return xReturn; + } + +#endif /* configSUPPORT_DYNAMIC_ALLOCATION */ +/*-----------------------------------------------------------*/ + +static void prvInitialiseNewTask( TaskFunction_t pxTaskCode, + const char * const pcName, /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + const uint32_t ulStackDepth, + void * const pvParameters, + UBaseType_t uxPriority, + TaskHandle_t * const pxCreatedTask, + TCB_t *pxNewTCB, + const MemoryRegion_t * const xRegions ) +{ +StackType_t *pxTopOfStack; +UBaseType_t x; + + #if( portUSING_MPU_WRAPPERS == 1 ) + /* Should the task be created in privileged mode? */ + BaseType_t xRunPrivileged; + if( ( uxPriority & portPRIVILEGE_BIT ) != 0U ) + { + xRunPrivileged = pdTRUE; + } + else + { + xRunPrivileged = pdFALSE; + } + uxPriority &= ~portPRIVILEGE_BIT; + #endif /* portUSING_MPU_WRAPPERS == 1 */ + + /* Avoid dependency on memset() if it is not required. */ + #if( tskSET_NEW_STACKS_TO_KNOWN_VALUE == 1 ) + { + /* Fill the stack with a known value to assist debugging. */ + ( void ) memset( pxNewTCB->pxStack, ( int ) tskSTACK_FILL_BYTE, ( size_t ) ulStackDepth * sizeof( StackType_t ) ); + } + #endif /* tskSET_NEW_STACKS_TO_KNOWN_VALUE */ + + /* Calculate the top of stack address. This depends on whether the stack + grows from high memory to low (as per the 80x86) or vice versa. + portSTACK_GROWTH is used to make the result positive or negative as required + by the port. */ + #if( portSTACK_GROWTH < 0 ) + { + pxTopOfStack = &( pxNewTCB->pxStack[ ulStackDepth - ( uint32_t ) 1 ] ); + pxTopOfStack = ( StackType_t * ) ( ( ( portPOINTER_SIZE_TYPE ) pxTopOfStack ) & ( ~( ( portPOINTER_SIZE_TYPE ) portBYTE_ALIGNMENT_MASK ) ) ); /*lint !e923 !e9033 !e9078 MISRA exception. Avoiding casts between pointers and integers is not practical. Size differences accounted for using portPOINTER_SIZE_TYPE type. Checked by assert(). */ + + /* Check the alignment of the calculated top of stack is correct. */ + configASSERT( ( ( ( portPOINTER_SIZE_TYPE ) pxTopOfStack & ( portPOINTER_SIZE_TYPE ) portBYTE_ALIGNMENT_MASK ) == 0UL ) ); + + #if( configRECORD_STACK_HIGH_ADDRESS == 1 ) + { + /* Also record the stack's high address, which may assist + debugging. */ + pxNewTCB->pxEndOfStack = pxTopOfStack; + } + #endif /* configRECORD_STACK_HIGH_ADDRESS */ + } + #else /* portSTACK_GROWTH */ + { + pxTopOfStack = pxNewTCB->pxStack; + + /* Check the alignment of the stack buffer is correct. */ + configASSERT( ( ( ( portPOINTER_SIZE_TYPE ) pxNewTCB->pxStack & ( portPOINTER_SIZE_TYPE ) portBYTE_ALIGNMENT_MASK ) == 0UL ) ); + + /* The other extreme of the stack space is required if stack checking is + performed. */ + pxNewTCB->pxEndOfStack = pxNewTCB->pxStack + ( ulStackDepth - ( uint32_t ) 1 ); + } + #endif /* portSTACK_GROWTH */ + + /* Store the task name in the TCB. */ + if( pcName != NULL ) + { + for( x = ( UBaseType_t ) 0; x < ( UBaseType_t ) configMAX_TASK_NAME_LEN; x++ ) + { + pxNewTCB->pcTaskName[ x ] = pcName[ x ]; + + /* Don't copy all configMAX_TASK_NAME_LEN if the string is shorter than + configMAX_TASK_NAME_LEN characters just in case the memory after the + string is not accessible (extremely unlikely). */ + if( pcName[ x ] == ( char ) 0x00 ) + { + break; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + + /* Ensure the name string is terminated in the case that the string length + was greater or equal to configMAX_TASK_NAME_LEN. */ + pxNewTCB->pcTaskName[ configMAX_TASK_NAME_LEN - 1 ] = '\0'; + } + else + { + /* The task has not been given a name, so just ensure there is a NULL + terminator when it is read out. */ + pxNewTCB->pcTaskName[ 0 ] = 0x00; + } + + /* This is used as an array index so must ensure it's not too large. First + remove the privilege bit if one is present. */ + if( uxPriority >= ( UBaseType_t ) configMAX_PRIORITIES ) + { + uxPriority = ( UBaseType_t ) configMAX_PRIORITIES - ( UBaseType_t ) 1U; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + pxNewTCB->uxPriority = uxPriority; + #if ( configUSE_MUTEXES == 1 ) + { + pxNewTCB->uxBasePriority = uxPriority; + pxNewTCB->uxMutexesHeld = 0; + } + #endif /* configUSE_MUTEXES */ + + vListInitialiseItem( &( pxNewTCB->xStateListItem ) ); + vListInitialiseItem( &( pxNewTCB->xEventListItem ) ); + + /* Set the pxNewTCB as a link back from the ListItem_t. This is so we can get + back to the containing TCB from a generic item in a list. */ + listSET_LIST_ITEM_OWNER( &( pxNewTCB->xStateListItem ), pxNewTCB ); + + /* Event lists are always in priority order. */ + listSET_LIST_ITEM_VALUE( &( pxNewTCB->xEventListItem ), ( TickType_t ) configMAX_PRIORITIES - ( TickType_t ) uxPriority ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ + listSET_LIST_ITEM_OWNER( &( pxNewTCB->xEventListItem ), pxNewTCB ); + + #if ( portCRITICAL_NESTING_IN_TCB == 1 ) + { + pxNewTCB->uxCriticalNesting = ( UBaseType_t ) 0U; + } + #endif /* portCRITICAL_NESTING_IN_TCB */ + + #if ( configUSE_APPLICATION_TASK_TAG == 1 ) + { + pxNewTCB->pxTaskTag = NULL; + } + #endif /* configUSE_APPLICATION_TASK_TAG */ + + #if ( configGENERATE_RUN_TIME_STATS == 1 ) + { + pxNewTCB->ulRunTimeCounter = 0UL; + } + #endif /* configGENERATE_RUN_TIME_STATS */ + + #if ( portUSING_MPU_WRAPPERS == 1 ) + { + vPortStoreTaskMPUSettings( &( pxNewTCB->xMPUSettings ), xRegions, pxNewTCB->pxStack, ulStackDepth ); + } + #else + { + /* Avoid compiler warning about unreferenced parameter. */ + ( void ) xRegions; + } + #endif + + #if( configNUM_THREAD_LOCAL_STORAGE_POINTERS != 0 ) + { + for( x = 0; x < ( UBaseType_t ) configNUM_THREAD_LOCAL_STORAGE_POINTERS; x++ ) + { + pxNewTCB->pvThreadLocalStoragePointers[ x ] = NULL; + } + } + #endif + + #if ( configUSE_TASK_NOTIFICATIONS == 1 ) + { + pxNewTCB->ulNotifiedValue = 0; + pxNewTCB->ucNotifyState = taskNOT_WAITING_NOTIFICATION; + } + #endif + + #if ( configUSE_NEWLIB_REENTRANT == 1 ) + { + /* Initialise this task's Newlib reent structure. + See the third party link http://www.nadler.com/embedded/newlibAndFreeRTOS.html + for additional information. */ + _REENT_INIT_PTR( ( &( pxNewTCB->xNewLib_reent ) ) ); + } + #endif + + #if( INCLUDE_xTaskAbortDelay == 1 ) + { + pxNewTCB->ucDelayAborted = pdFALSE; + } + #endif + + /* Initialize the TCB stack to look as if the task was already running, + but had been interrupted by the scheduler. The return address is set + to the start of the task function. Once the stack has been initialised + the top of stack variable is updated. */ + #if( portUSING_MPU_WRAPPERS == 1 ) + { + /* If the port has capability to detect stack overflow, + pass the stack end address to the stack initialization + function as well. */ + #if( portHAS_STACK_OVERFLOW_CHECKING == 1 ) + { + #if( portSTACK_GROWTH < 0 ) + { + pxNewTCB->pxTopOfStack = pxPortInitialiseStack( pxTopOfStack, pxNewTCB->pxStack, pxTaskCode, pvParameters, xRunPrivileged ); + } + #else /* portSTACK_GROWTH */ + { + pxNewTCB->pxTopOfStack = pxPortInitialiseStack( pxTopOfStack, pxNewTCB->pxEndOfStack, pxTaskCode, pvParameters, xRunPrivileged ); + } + #endif /* portSTACK_GROWTH */ + } + #else /* portHAS_STACK_OVERFLOW_CHECKING */ + { + pxNewTCB->pxTopOfStack = pxPortInitialiseStack( pxTopOfStack, pxTaskCode, pvParameters, xRunPrivileged ); + } + #endif /* portHAS_STACK_OVERFLOW_CHECKING */ + } + #else /* portUSING_MPU_WRAPPERS */ + { + /* If the port has capability to detect stack overflow, + pass the stack end address to the stack initialization + function as well. */ + #if( portHAS_STACK_OVERFLOW_CHECKING == 1 ) + { + #if( portSTACK_GROWTH < 0 ) + { + pxNewTCB->pxTopOfStack = pxPortInitialiseStack( pxTopOfStack, pxNewTCB->pxStack, pxTaskCode, pvParameters ); + } + #else /* portSTACK_GROWTH */ + { + pxNewTCB->pxTopOfStack = pxPortInitialiseStack( pxTopOfStack, pxNewTCB->pxEndOfStack, pxTaskCode, pvParameters ); + } + #endif /* portSTACK_GROWTH */ + } + #else /* portHAS_STACK_OVERFLOW_CHECKING */ + { + pxNewTCB->pxTopOfStack = pxPortInitialiseStack( pxTopOfStack, pxTaskCode, pvParameters ); + } + #endif /* portHAS_STACK_OVERFLOW_CHECKING */ + } + #endif /* portUSING_MPU_WRAPPERS */ + + if( pxCreatedTask != NULL ) + { + /* Pass the handle out in an anonymous way. The handle can be used to + change the created task's priority, delete the created task, etc.*/ + *pxCreatedTask = ( TaskHandle_t ) pxNewTCB; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } +} +/*-----------------------------------------------------------*/ + +static void prvAddNewTaskToReadyList( TCB_t *pxNewTCB ) +{ + /* Ensure interrupts don't access the task lists while the lists are being + updated. */ + taskENTER_CRITICAL(); + { + uxCurrentNumberOfTasks++; + if( pxCurrentTCB == NULL ) + { + /* There are no other tasks, or all the other tasks are in + the suspended state - make this the current task. */ + pxCurrentTCB = pxNewTCB; + + if( uxCurrentNumberOfTasks == ( UBaseType_t ) 1 ) + { + /* This is the first task to be created so do the preliminary + initialisation required. We will not recover if this call + fails, but we will report the failure. */ + prvInitialiseTaskLists(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + /* If the scheduler is not already running, make this task the + current task if it is the highest priority task to be created + so far. */ + if( xSchedulerRunning == pdFALSE ) + { + if( pxCurrentTCB->uxPriority <= pxNewTCB->uxPriority ) + { + pxCurrentTCB = pxNewTCB; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + + uxTaskNumber++; + + #if ( configUSE_TRACE_FACILITY == 1 ) + { + /* Add a counter into the TCB for tracing only. */ + pxNewTCB->uxTCBNumber = uxTaskNumber; + } + #endif /* configUSE_TRACE_FACILITY */ + traceTASK_CREATE( pxNewTCB ); + + prvAddTaskToReadyList( pxNewTCB ); + + portSETUP_TCB( pxNewTCB ); + } + taskEXIT_CRITICAL(); + + if( xSchedulerRunning != pdFALSE ) + { + /* If the created task is of a higher priority than the current task + then it should run now. */ + if( pxCurrentTCB->uxPriority < pxNewTCB->uxPriority ) + { + taskYIELD_IF_USING_PREEMPTION(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } +} +/*-----------------------------------------------------------*/ + +#if ( INCLUDE_vTaskDelete == 1 ) + + void vTaskDelete( TaskHandle_t xTaskToDelete ) + { + TCB_t *pxTCB; + + taskENTER_CRITICAL(); + { + /* If null is passed in here then it is the calling task that is + being deleted. */ + pxTCB = prvGetTCBFromHandle( xTaskToDelete ); + + /* Remove task from the ready/delayed list. */ + if( uxListRemove( &( pxTCB->xStateListItem ) ) == ( UBaseType_t ) 0 ) + { + taskRESET_READY_PRIORITY( pxTCB->uxPriority ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* Is the task waiting on an event also? */ + if( listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) != NULL ) + { + ( void ) uxListRemove( &( pxTCB->xEventListItem ) ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* Increment the uxTaskNumber also so kernel aware debuggers can + detect that the task lists need re-generating. This is done before + portPRE_TASK_DELETE_HOOK() as in the Windows port that macro will + not return. */ + uxTaskNumber++; + + if( pxTCB == pxCurrentTCB ) + { + /* A task is deleting itself. This cannot complete within the + task itself, as a context switch to another task is required. + Place the task in the termination list. The idle task will + check the termination list and free up any memory allocated by + the scheduler for the TCB and stack of the deleted task. */ + vListInsertEnd( &xTasksWaitingTermination, &( pxTCB->xStateListItem ) ); + + /* Increment the ucTasksDeleted variable so the idle task knows + there is a task that has been deleted and that it should therefore + check the xTasksWaitingTermination list. */ + ++uxDeletedTasksWaitingCleanUp; + + /* Call the delete hook before portPRE_TASK_DELETE_HOOK() as + portPRE_TASK_DELETE_HOOK() does not return in the Win32 port. */ + traceTASK_DELETE( pxTCB ); + + /* The pre-delete hook is primarily for the Windows simulator, + in which Windows specific clean up operations are performed, + after which it is not possible to yield away from this task - + hence xYieldPending is used to latch that a context switch is + required. */ + portPRE_TASK_DELETE_HOOK( pxTCB, &xYieldPending ); + } + else + { + --uxCurrentNumberOfTasks; + traceTASK_DELETE( pxTCB ); + prvDeleteTCB( pxTCB ); + + /* Reset the next expected unblock time in case it referred to + the task that has just been deleted. */ + prvResetNextTaskUnblockTime(); + } + } + taskEXIT_CRITICAL(); + + /* Force a reschedule if it is the currently running task that has just + been deleted. */ + if( xSchedulerRunning != pdFALSE ) + { + if( pxTCB == pxCurrentTCB ) + { + configASSERT( uxSchedulerSuspended == 0 ); + portYIELD_WITHIN_API(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + } + +#endif /* INCLUDE_vTaskDelete */ +/*-----------------------------------------------------------*/ + +#if ( INCLUDE_vTaskDelayUntil == 1 ) + + void vTaskDelayUntil( TickType_t * const pxPreviousWakeTime, const TickType_t xTimeIncrement ) + { + TickType_t xTimeToWake; + BaseType_t xAlreadyYielded, xShouldDelay = pdFALSE; + + configASSERT( pxPreviousWakeTime ); + configASSERT( ( xTimeIncrement > 0U ) ); + configASSERT( uxSchedulerSuspended == 0 ); + + vTaskSuspendAll(); + { + /* Minor optimisation. The tick count cannot change in this + block. */ + const TickType_t xConstTickCount = xTickCount; + + /* Generate the tick time at which the task wants to wake. */ + xTimeToWake = *pxPreviousWakeTime + xTimeIncrement; + + if( xConstTickCount < *pxPreviousWakeTime ) + { + /* The tick count has overflowed since this function was + lasted called. In this case the only time we should ever + actually delay is if the wake time has also overflowed, + and the wake time is greater than the tick time. When this + is the case it is as if neither time had overflowed. */ + if( ( xTimeToWake < *pxPreviousWakeTime ) && ( xTimeToWake > xConstTickCount ) ) + { + xShouldDelay = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + /* The tick time has not overflowed. In this case we will + delay if either the wake time has overflowed, and/or the + tick time is less than the wake time. */ + if( ( xTimeToWake < *pxPreviousWakeTime ) || ( xTimeToWake > xConstTickCount ) ) + { + xShouldDelay = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + + /* Update the wake time ready for the next call. */ + *pxPreviousWakeTime = xTimeToWake; + + if( xShouldDelay != pdFALSE ) + { + traceTASK_DELAY_UNTIL( xTimeToWake ); + + /* prvAddCurrentTaskToDelayedList() needs the block time, not + the time to wake, so subtract the current tick count. */ + prvAddCurrentTaskToDelayedList( xTimeToWake - xConstTickCount, pdFALSE ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + xAlreadyYielded = xTaskResumeAll(); + + /* Force a reschedule if xTaskResumeAll has not already done so, we may + have put ourselves to sleep. */ + if( xAlreadyYielded == pdFALSE ) + { + portYIELD_WITHIN_API(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + +#endif /* INCLUDE_vTaskDelayUntil */ +/*-----------------------------------------------------------*/ + +#if ( INCLUDE_vTaskDelay == 1 ) + + void vTaskDelay( const TickType_t xTicksToDelay ) + { + BaseType_t xAlreadyYielded = pdFALSE; + + /* A delay time of zero just forces a reschedule. */ + if( xTicksToDelay > ( TickType_t ) 0U ) + { + configASSERT( uxSchedulerSuspended == 0 ); + vTaskSuspendAll(); + { + traceTASK_DELAY(); + + /* A task that is removed from the event list while the + scheduler is suspended will not get placed in the ready + list or removed from the blocked list until the scheduler + is resumed. + + This task cannot be in an event list as it is the currently + executing task. */ + prvAddCurrentTaskToDelayedList( xTicksToDelay, pdFALSE ); + } + xAlreadyYielded = xTaskResumeAll(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* Force a reschedule if xTaskResumeAll has not already done so, we may + have put ourselves to sleep. */ + if( xAlreadyYielded == pdFALSE ) + { + portYIELD_WITHIN_API(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + +#endif /* INCLUDE_vTaskDelay */ +/*-----------------------------------------------------------*/ + +#if( ( INCLUDE_eTaskGetState == 1 ) || ( configUSE_TRACE_FACILITY == 1 ) || ( INCLUDE_xTaskAbortDelay == 1 ) ) + + eTaskState eTaskGetState( TaskHandle_t xTask ) + { + eTaskState eReturn; + List_t const * pxStateList, *pxDelayedList, *pxOverflowedDelayedList; + const TCB_t * const pxTCB = xTask; + + configASSERT( pxTCB ); + + if( pxTCB == pxCurrentTCB ) + { + /* The task calling this function is querying its own state. */ + eReturn = eRunning; + } + else + { + taskENTER_CRITICAL(); + { + pxStateList = listLIST_ITEM_CONTAINER( &( pxTCB->xStateListItem ) ); + pxDelayedList = pxDelayedTaskList; + pxOverflowedDelayedList = pxOverflowDelayedTaskList; + } + taskEXIT_CRITICAL(); + + if( ( pxStateList == pxDelayedList ) || ( pxStateList == pxOverflowedDelayedList ) ) + { + /* The task being queried is referenced from one of the Blocked + lists. */ + eReturn = eBlocked; + } + + #if ( INCLUDE_vTaskSuspend == 1 ) + else if( pxStateList == &xSuspendedTaskList ) + { + /* The task being queried is referenced from the suspended + list. Is it genuinely suspended or is it blocked + indefinitely? */ + if( listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) == NULL ) + { + #if( configUSE_TASK_NOTIFICATIONS == 1 ) + { + /* The task does not appear on the event list item of + and of the RTOS objects, but could still be in the + blocked state if it is waiting on its notification + rather than waiting on an object. */ + if( pxTCB->ucNotifyState == taskWAITING_NOTIFICATION ) + { + eReturn = eBlocked; + } + else + { + eReturn = eSuspended; + } + } + #else + { + eReturn = eSuspended; + } + #endif + } + else + { + eReturn = eBlocked; + } + } + #endif + + #if ( INCLUDE_vTaskDelete == 1 ) + else if( ( pxStateList == &xTasksWaitingTermination ) || ( pxStateList == NULL ) ) + { + /* The task being queried is referenced from the deleted + tasks list, or it is not referenced from any lists at + all. */ + eReturn = eDeleted; + } + #endif + + else /*lint !e525 Negative indentation is intended to make use of pre-processor clearer. */ + { + /* If the task is not in any other state, it must be in the + Ready (including pending ready) state. */ + eReturn = eReady; + } + } + + return eReturn; + } /*lint !e818 xTask cannot be a pointer to const because it is a typedef. */ + +#endif /* INCLUDE_eTaskGetState */ +/*-----------------------------------------------------------*/ + +#if ( INCLUDE_uxTaskPriorityGet == 1 ) + + UBaseType_t uxTaskPriorityGet( const TaskHandle_t xTask ) + { + TCB_t const *pxTCB; + UBaseType_t uxReturn; + + taskENTER_CRITICAL(); + { + /* If null is passed in here then it is the priority of the task + that called uxTaskPriorityGet() that is being queried. */ + pxTCB = prvGetTCBFromHandle( xTask ); + uxReturn = pxTCB->uxPriority; + } + taskEXIT_CRITICAL(); + + return uxReturn; + } + +#endif /* INCLUDE_uxTaskPriorityGet */ +/*-----------------------------------------------------------*/ + +#if ( INCLUDE_uxTaskPriorityGet == 1 ) + + UBaseType_t uxTaskPriorityGetFromISR( const TaskHandle_t xTask ) + { + TCB_t const *pxTCB; + UBaseType_t uxReturn, uxSavedInterruptState; + + /* RTOS ports that support interrupt nesting have the concept of a + maximum system call (or maximum API call) interrupt priority. + Interrupts that are above the maximum system call priority are keep + permanently enabled, even when the RTOS kernel is in a critical section, + but cannot make any calls to FreeRTOS API functions. If configASSERT() + is defined in FreeRTOSConfig.h then + portASSERT_IF_INTERRUPT_PRIORITY_INVALID() will result in an assertion + failure if a FreeRTOS API function is called from an interrupt that has + been assigned a priority above the configured maximum system call + priority. Only FreeRTOS functions that end in FromISR can be called + from interrupts that have been assigned a priority at or (logically) + below the maximum system call interrupt priority. FreeRTOS maintains a + separate interrupt safe API to ensure interrupt entry is as fast and as + simple as possible. More information (albeit Cortex-M specific) is + provided on the following link: + https://www.freertos.org/RTOS-Cortex-M3-M4.html */ + portASSERT_IF_INTERRUPT_PRIORITY_INVALID(); + + uxSavedInterruptState = portSET_INTERRUPT_MASK_FROM_ISR(); + { + /* If null is passed in here then it is the priority of the calling + task that is being queried. */ + pxTCB = prvGetTCBFromHandle( xTask ); + uxReturn = pxTCB->uxPriority; + } + portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptState ); + + return uxReturn; + } + +#endif /* INCLUDE_uxTaskPriorityGet */ +/*-----------------------------------------------------------*/ + +#if ( INCLUDE_vTaskPrioritySet == 1 ) + + void vTaskPrioritySet( TaskHandle_t xTask, UBaseType_t uxNewPriority ) + { + TCB_t *pxTCB; + UBaseType_t uxCurrentBasePriority, uxPriorityUsedOnEntry; + BaseType_t xYieldRequired = pdFALSE; + + configASSERT( ( uxNewPriority < configMAX_PRIORITIES ) ); + + /* Ensure the new priority is valid. */ + if( uxNewPriority >= ( UBaseType_t ) configMAX_PRIORITIES ) + { + uxNewPriority = ( UBaseType_t ) configMAX_PRIORITIES - ( UBaseType_t ) 1U; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + taskENTER_CRITICAL(); + { + /* If null is passed in here then it is the priority of the calling + task that is being changed. */ + pxTCB = prvGetTCBFromHandle( xTask ); + + traceTASK_PRIORITY_SET( pxTCB, uxNewPriority ); + + #if ( configUSE_MUTEXES == 1 ) + { + uxCurrentBasePriority = pxTCB->uxBasePriority; + } + #else + { + uxCurrentBasePriority = pxTCB->uxPriority; + } + #endif + + if( uxCurrentBasePriority != uxNewPriority ) + { + /* The priority change may have readied a task of higher + priority than the calling task. */ + if( uxNewPriority > uxCurrentBasePriority ) + { + if( pxTCB != pxCurrentTCB ) + { + /* The priority of a task other than the currently + running task is being raised. Is the priority being + raised above that of the running task? */ + if( uxNewPriority >= pxCurrentTCB->uxPriority ) + { + xYieldRequired = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + /* The priority of the running task is being raised, + but the running task must already be the highest + priority task able to run so no yield is required. */ + } + } + else if( pxTCB == pxCurrentTCB ) + { + /* Setting the priority of the running task down means + there may now be another task of higher priority that + is ready to execute. */ + xYieldRequired = pdTRUE; + } + else + { + /* Setting the priority of any other task down does not + require a yield as the running task must be above the + new priority of the task being modified. */ + } + + /* Remember the ready list the task might be referenced from + before its uxPriority member is changed so the + taskRESET_READY_PRIORITY() macro can function correctly. */ + uxPriorityUsedOnEntry = pxTCB->uxPriority; + + #if ( configUSE_MUTEXES == 1 ) + { + /* Only change the priority being used if the task is not + currently using an inherited priority. */ + if( pxTCB->uxBasePriority == pxTCB->uxPriority ) + { + pxTCB->uxPriority = uxNewPriority; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* The base priority gets set whatever. */ + pxTCB->uxBasePriority = uxNewPriority; + } + #else + { + pxTCB->uxPriority = uxNewPriority; + } + #endif + + /* Only reset the event list item value if the value is not + being used for anything else. */ + if( ( listGET_LIST_ITEM_VALUE( &( pxTCB->xEventListItem ) ) & taskEVENT_LIST_ITEM_VALUE_IN_USE ) == 0UL ) + { + listSET_LIST_ITEM_VALUE( &( pxTCB->xEventListItem ), ( ( TickType_t ) configMAX_PRIORITIES - ( TickType_t ) uxNewPriority ) ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* If the task is in the blocked or suspended list we need do + nothing more than change its priority variable. However, if + the task is in a ready list it needs to be removed and placed + in the list appropriate to its new priority. */ + if( listIS_CONTAINED_WITHIN( &( pxReadyTasksLists[ uxPriorityUsedOnEntry ] ), &( pxTCB->xStateListItem ) ) != pdFALSE ) + { + /* The task is currently in its ready list - remove before + adding it to it's new ready list. As we are in a critical + section we can do this even if the scheduler is suspended. */ + if( uxListRemove( &( pxTCB->xStateListItem ) ) == ( UBaseType_t ) 0 ) + { + /* It is known that the task is in its ready list so + there is no need to check again and the port level + reset macro can be called directly. */ + portRESET_READY_PRIORITY( uxPriorityUsedOnEntry, uxTopReadyPriority ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + prvAddTaskToReadyList( pxTCB ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + if( xYieldRequired != pdFALSE ) + { + taskYIELD_IF_USING_PREEMPTION(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* Remove compiler warning about unused variables when the port + optimised task selection is not being used. */ + ( void ) uxPriorityUsedOnEntry; + } + } + taskEXIT_CRITICAL(); + } + +#endif /* INCLUDE_vTaskPrioritySet */ +/*-----------------------------------------------------------*/ + +#if ( INCLUDE_vTaskSuspend == 1 ) + + void vTaskSuspend( TaskHandle_t xTaskToSuspend ) + { + TCB_t *pxTCB; + + taskENTER_CRITICAL(); + { + /* If null is passed in here then it is the running task that is + being suspended. */ + pxTCB = prvGetTCBFromHandle( xTaskToSuspend ); + + traceTASK_SUSPEND( pxTCB ); + + /* Remove task from the ready/delayed list and place in the + suspended list. */ + if( uxListRemove( &( pxTCB->xStateListItem ) ) == ( UBaseType_t ) 0 ) + { + taskRESET_READY_PRIORITY( pxTCB->uxPriority ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* Is the task waiting on an event also? */ + if( listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) != NULL ) + { + ( void ) uxListRemove( &( pxTCB->xEventListItem ) ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + vListInsertEnd( &xSuspendedTaskList, &( pxTCB->xStateListItem ) ); + + #if( configUSE_TASK_NOTIFICATIONS == 1 ) + { + if( pxTCB->ucNotifyState == taskWAITING_NOTIFICATION ) + { + /* The task was blocked to wait for a notification, but is + now suspended, so no notification was received. */ + pxTCB->ucNotifyState = taskNOT_WAITING_NOTIFICATION; + } + } + #endif + } + taskEXIT_CRITICAL(); + + if( xSchedulerRunning != pdFALSE ) + { + /* Reset the next expected unblock time in case it referred to the + task that is now in the Suspended state. */ + taskENTER_CRITICAL(); + { + prvResetNextTaskUnblockTime(); + } + taskEXIT_CRITICAL(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + if( pxTCB == pxCurrentTCB ) + { + if( xSchedulerRunning != pdFALSE ) + { + /* The current task has just been suspended. */ + configASSERT( uxSchedulerSuspended == 0 ); + portYIELD_WITHIN_API(); + } + else + { + /* The scheduler is not running, but the task that was pointed + to by pxCurrentTCB has just been suspended and pxCurrentTCB + must be adjusted to point to a different task. */ + if( listCURRENT_LIST_LENGTH( &xSuspendedTaskList ) == uxCurrentNumberOfTasks ) /*lint !e931 Right has no side effect, just volatile. */ + { + /* No other tasks are ready, so set pxCurrentTCB back to + NULL so when the next task is created pxCurrentTCB will + be set to point to it no matter what its relative priority + is. */ + pxCurrentTCB = NULL; + } + else + { + vTaskSwitchContext(); + } + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + +#endif /* INCLUDE_vTaskSuspend */ +/*-----------------------------------------------------------*/ + +#if ( INCLUDE_vTaskSuspend == 1 ) + + static BaseType_t prvTaskIsTaskSuspended( const TaskHandle_t xTask ) + { + BaseType_t xReturn = pdFALSE; + const TCB_t * const pxTCB = xTask; + + /* Accesses xPendingReadyList so must be called from a critical + section. */ + + /* It does not make sense to check if the calling task is suspended. */ + configASSERT( xTask ); + + /* Is the task being resumed actually in the suspended list? */ + if( listIS_CONTAINED_WITHIN( &xSuspendedTaskList, &( pxTCB->xStateListItem ) ) != pdFALSE ) + { + /* Has the task already been resumed from within an ISR? */ + if( listIS_CONTAINED_WITHIN( &xPendingReadyList, &( pxTCB->xEventListItem ) ) == pdFALSE ) + { + /* Is it in the suspended list because it is in the Suspended + state, or because is is blocked with no timeout? */ + if( listIS_CONTAINED_WITHIN( NULL, &( pxTCB->xEventListItem ) ) != pdFALSE ) /*lint !e961. The cast is only redundant when NULL is used. */ + { + xReturn = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + return xReturn; + } /*lint !e818 xTask cannot be a pointer to const because it is a typedef. */ + +#endif /* INCLUDE_vTaskSuspend */ +/*-----------------------------------------------------------*/ + +#if ( INCLUDE_vTaskSuspend == 1 ) + + void vTaskResume( TaskHandle_t xTaskToResume ) + { + TCB_t * const pxTCB = xTaskToResume; + + /* It does not make sense to resume the calling task. */ + configASSERT( xTaskToResume ); + + /* The parameter cannot be NULL as it is impossible to resume the + currently executing task. */ + if( ( pxTCB != pxCurrentTCB ) && ( pxTCB != NULL ) ) + { + taskENTER_CRITICAL(); + { + if( prvTaskIsTaskSuspended( pxTCB ) != pdFALSE ) + { + traceTASK_RESUME( pxTCB ); + + /* The ready list can be accessed even if the scheduler is + suspended because this is inside a critical section. */ + ( void ) uxListRemove( &( pxTCB->xStateListItem ) ); + prvAddTaskToReadyList( pxTCB ); + + /* A higher priority task may have just been resumed. */ + if( pxTCB->uxPriority >= pxCurrentTCB->uxPriority ) + { + /* This yield may not cause the task just resumed to run, + but will leave the lists in the correct state for the + next yield. */ + taskYIELD_IF_USING_PREEMPTION(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + taskEXIT_CRITICAL(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + +#endif /* INCLUDE_vTaskSuspend */ + +/*-----------------------------------------------------------*/ + +#if ( ( INCLUDE_xTaskResumeFromISR == 1 ) && ( INCLUDE_vTaskSuspend == 1 ) ) + + BaseType_t xTaskResumeFromISR( TaskHandle_t xTaskToResume ) + { + BaseType_t xYieldRequired = pdFALSE; + TCB_t * const pxTCB = xTaskToResume; + UBaseType_t uxSavedInterruptStatus; + + configASSERT( xTaskToResume ); + + /* RTOS ports that support interrupt nesting have the concept of a + maximum system call (or maximum API call) interrupt priority. + Interrupts that are above the maximum system call priority are keep + permanently enabled, even when the RTOS kernel is in a critical section, + but cannot make any calls to FreeRTOS API functions. If configASSERT() + is defined in FreeRTOSConfig.h then + portASSERT_IF_INTERRUPT_PRIORITY_INVALID() will result in an assertion + failure if a FreeRTOS API function is called from an interrupt that has + been assigned a priority above the configured maximum system call + priority. Only FreeRTOS functions that end in FromISR can be called + from interrupts that have been assigned a priority at or (logically) + below the maximum system call interrupt priority. FreeRTOS maintains a + separate interrupt safe API to ensure interrupt entry is as fast and as + simple as possible. More information (albeit Cortex-M specific) is + provided on the following link: + https://www.freertos.org/RTOS-Cortex-M3-M4.html */ + portASSERT_IF_INTERRUPT_PRIORITY_INVALID(); + + uxSavedInterruptStatus = portSET_INTERRUPT_MASK_FROM_ISR(); + { + if( prvTaskIsTaskSuspended( pxTCB ) != pdFALSE ) + { + traceTASK_RESUME_FROM_ISR( pxTCB ); + + /* Check the ready lists can be accessed. */ + if( uxSchedulerSuspended == ( UBaseType_t ) pdFALSE ) + { + /* Ready lists can be accessed so move the task from the + suspended list to the ready list directly. */ + if( pxTCB->uxPriority >= pxCurrentTCB->uxPriority ) + { + xYieldRequired = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + ( void ) uxListRemove( &( pxTCB->xStateListItem ) ); + prvAddTaskToReadyList( pxTCB ); + } + else + { + /* The delayed or ready lists cannot be accessed so the task + is held in the pending ready list until the scheduler is + unsuspended. */ + vListInsertEnd( &( xPendingReadyList ), &( pxTCB->xEventListItem ) ); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus ); + + return xYieldRequired; + } + +#endif /* ( ( INCLUDE_xTaskResumeFromISR == 1 ) && ( INCLUDE_vTaskSuspend == 1 ) ) */ +/*-----------------------------------------------------------*/ + +void vTaskStartScheduler( void ) +{ +BaseType_t xReturn; + + /* Add the idle task at the lowest priority. */ + #if( configSUPPORT_STATIC_ALLOCATION == 1 ) + { + StaticTask_t *pxIdleTaskTCBBuffer = NULL; + StackType_t *pxIdleTaskStackBuffer = NULL; + uint32_t ulIdleTaskStackSize; + + /* The Idle task is created using user provided RAM - obtain the + address of the RAM then create the idle task. */ + vApplicationGetIdleTaskMemory( &pxIdleTaskTCBBuffer, &pxIdleTaskStackBuffer, &ulIdleTaskStackSize ); + xIdleTaskHandle = xTaskCreateStatic( prvIdleTask, + configIDLE_TASK_NAME, + ulIdleTaskStackSize, + ( void * ) NULL, /*lint !e961. The cast is not redundant for all compilers. */ + portPRIVILEGE_BIT, /* In effect ( tskIDLE_PRIORITY | portPRIVILEGE_BIT ), but tskIDLE_PRIORITY is zero. */ + pxIdleTaskStackBuffer, + pxIdleTaskTCBBuffer ); /*lint !e961 MISRA exception, justified as it is not a redundant explicit cast to all supported compilers. */ + + if( xIdleTaskHandle != NULL ) + { + xReturn = pdPASS; + } + else + { + xReturn = pdFAIL; + } + } + #else + { + /* The Idle task is being created using dynamically allocated RAM. */ + xReturn = xTaskCreate( prvIdleTask, + configIDLE_TASK_NAME, + configMINIMAL_STACK_SIZE, + ( void * ) NULL, + portPRIVILEGE_BIT, /* In effect ( tskIDLE_PRIORITY | portPRIVILEGE_BIT ), but tskIDLE_PRIORITY is zero. */ + &xIdleTaskHandle ); /*lint !e961 MISRA exception, justified as it is not a redundant explicit cast to all supported compilers. */ + } + #endif /* configSUPPORT_STATIC_ALLOCATION */ + + #if ( configUSE_TIMERS == 1 ) + { + if( xReturn == pdPASS ) + { + xReturn = xTimerCreateTimerTask(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + #endif /* configUSE_TIMERS */ + + if( xReturn == pdPASS ) + { + /* freertos_tasks_c_additions_init() should only be called if the user + definable macro FREERTOS_TASKS_C_ADDITIONS_INIT() is defined, as that is + the only macro called by the function. */ + #ifdef FREERTOS_TASKS_C_ADDITIONS_INIT + { + freertos_tasks_c_additions_init(); + } + #endif + + /* Interrupts are turned off here, to ensure a tick does not occur + before or during the call to xPortStartScheduler(). The stacks of + the created tasks contain a status word with interrupts switched on + so interrupts will automatically get re-enabled when the first task + starts to run. */ + portDISABLE_INTERRUPTS(); + + #if ( configUSE_NEWLIB_REENTRANT == 1 ) + { + /* Switch Newlib's _impure_ptr variable to point to the _reent + structure specific to the task that will run first. + See the third party link http://www.nadler.com/embedded/newlibAndFreeRTOS.html + for additional information. */ + _impure_ptr = &( pxCurrentTCB->xNewLib_reent ); + } + #endif /* configUSE_NEWLIB_REENTRANT */ + + xNextTaskUnblockTime = portMAX_DELAY; + xSchedulerRunning = pdTRUE; + xTickCount = ( TickType_t ) configINITIAL_TICK_COUNT; + + /* If configGENERATE_RUN_TIME_STATS is defined then the following + macro must be defined to configure the timer/counter used to generate + the run time counter time base. NOTE: If configGENERATE_RUN_TIME_STATS + is set to 0 and the following line fails to build then ensure you do not + have portCONFIGURE_TIMER_FOR_RUN_TIME_STATS() defined in your + FreeRTOSConfig.h file. */ + portCONFIGURE_TIMER_FOR_RUN_TIME_STATS(); + + traceTASK_SWITCHED_IN(); + + /* Setting up the timer tick is hardware specific and thus in the + portable interface. */ + if( xPortStartScheduler() != pdFALSE ) + { + /* Should not reach here as if the scheduler is running the + function will not return. */ + } + else + { + /* Should only reach here if a task calls xTaskEndScheduler(). */ + } + } + else + { + /* This line will only be reached if the kernel could not be started, + because there was not enough FreeRTOS heap to create the idle task + or the timer task. */ + configASSERT( xReturn != errCOULD_NOT_ALLOCATE_REQUIRED_MEMORY ); + } + + /* Prevent compiler warnings if INCLUDE_xTaskGetIdleTaskHandle is set to 0, + meaning xIdleTaskHandle is not used anywhere else. */ + ( void ) xIdleTaskHandle; +} +/*-----------------------------------------------------------*/ + +void vTaskEndScheduler( void ) +{ + /* Stop the scheduler interrupts and call the portable scheduler end + routine so the original ISRs can be restored if necessary. The port + layer must ensure interrupts enable bit is left in the correct state. */ + portDISABLE_INTERRUPTS(); + xSchedulerRunning = pdFALSE; + vPortEndScheduler(); +} +/*----------------------------------------------------------*/ + +void vTaskSuspendAll( void ) +{ + /* A critical section is not required as the variable is of type + BaseType_t. Please read Richard Barry's reply in the following link to a + post in the FreeRTOS support forum before reporting this as a bug! - + http://goo.gl/wu4acr */ + + /* portSOFRWARE_BARRIER() is only implemented for emulated/simulated ports that + do not otherwise exhibit real time behaviour. */ + portSOFTWARE_BARRIER(); + + /* The scheduler is suspended if uxSchedulerSuspended is non-zero. An increment + is used to allow calls to vTaskSuspendAll() to nest. */ + ++uxSchedulerSuspended; + + /* Enforces ordering for ports and optimised compilers that may otherwise place + the above increment elsewhere. */ + portMEMORY_BARRIER(); +} +/*----------------------------------------------------------*/ + +#if ( configUSE_TICKLESS_IDLE != 0 ) + + static TickType_t prvGetExpectedIdleTime( void ) + { + TickType_t xReturn; + UBaseType_t uxHigherPriorityReadyTasks = pdFALSE; + + /* uxHigherPriorityReadyTasks takes care of the case where + configUSE_PREEMPTION is 0, so there may be tasks above the idle priority + task that are in the Ready state, even though the idle task is + running. */ + #if( configUSE_PORT_OPTIMISED_TASK_SELECTION == 0 ) + { + if( uxTopReadyPriority > tskIDLE_PRIORITY ) + { + uxHigherPriorityReadyTasks = pdTRUE; + } + } + #else + { + const UBaseType_t uxLeastSignificantBit = ( UBaseType_t ) 0x01; + + /* When port optimised task selection is used the uxTopReadyPriority + variable is used as a bit map. If bits other than the least + significant bit are set then there are tasks that have a priority + above the idle priority that are in the Ready state. This takes + care of the case where the co-operative scheduler is in use. */ + if( uxTopReadyPriority > uxLeastSignificantBit ) + { + uxHigherPriorityReadyTasks = pdTRUE; + } + } + #endif + + if( pxCurrentTCB->uxPriority > tskIDLE_PRIORITY ) + { + xReturn = 0; + } + else if( listCURRENT_LIST_LENGTH( &( pxReadyTasksLists[ tskIDLE_PRIORITY ] ) ) > 1 ) + { + /* There are other idle priority tasks in the ready state. If + time slicing is used then the very next tick interrupt must be + processed. */ + xReturn = 0; + } + else if( uxHigherPriorityReadyTasks != pdFALSE ) + { + /* There are tasks in the Ready state that have a priority above the + idle priority. This path can only be reached if + configUSE_PREEMPTION is 0. */ + xReturn = 0; + } + else + { + xReturn = xNextTaskUnblockTime - xTickCount; + } + + return xReturn; + } + +#endif /* configUSE_TICKLESS_IDLE */ +/*----------------------------------------------------------*/ + +BaseType_t xTaskResumeAll( void ) +{ +TCB_t *pxTCB = NULL; +BaseType_t xAlreadyYielded = pdFALSE; + + /* If uxSchedulerSuspended is zero then this function does not match a + previous call to vTaskSuspendAll(). */ + configASSERT( uxSchedulerSuspended ); + + /* It is possible that an ISR caused a task to be removed from an event + list while the scheduler was suspended. If this was the case then the + removed task will have been added to the xPendingReadyList. Once the + scheduler has been resumed it is safe to move all the pending ready + tasks from this list into their appropriate ready list. */ + taskENTER_CRITICAL(); + { + --uxSchedulerSuspended; + + if( uxSchedulerSuspended == ( UBaseType_t ) pdFALSE ) + { + if( uxCurrentNumberOfTasks > ( UBaseType_t ) 0U ) + { + /* Move any readied tasks from the pending list into the + appropriate ready list. */ + while( listLIST_IS_EMPTY( &xPendingReadyList ) == pdFALSE ) + { + pxTCB = listGET_OWNER_OF_HEAD_ENTRY( ( &xPendingReadyList ) ); /*lint !e9079 void * is used as this macro is used with timers and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ + ( void ) uxListRemove( &( pxTCB->xEventListItem ) ); + ( void ) uxListRemove( &( pxTCB->xStateListItem ) ); + prvAddTaskToReadyList( pxTCB ); + + /* If the moved task has a priority higher than the current + task then a yield must be performed. */ + if( pxTCB->uxPriority >= pxCurrentTCB->uxPriority ) + { + xYieldPending = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + + if( pxTCB != NULL ) + { + /* A task was unblocked while the scheduler was suspended, + which may have prevented the next unblock time from being + re-calculated, in which case re-calculate it now. Mainly + important for low power tickless implementations, where + this can prevent an unnecessary exit from low power + state. */ + prvResetNextTaskUnblockTime(); + } + + /* If any ticks occurred while the scheduler was suspended then + they should be processed now. This ensures the tick count does + not slip, and that any delayed tasks are resumed at the correct + time. */ + { + TickType_t xPendedCounts = xPendedTicks; /* Non-volatile copy. */ + + if( xPendedCounts > ( TickType_t ) 0U ) + { + do + { + if( xTaskIncrementTick() != pdFALSE ) + { + xYieldPending = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + --xPendedCounts; + } while( xPendedCounts > ( TickType_t ) 0U ); + + xPendedTicks = 0; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + + if( xYieldPending != pdFALSE ) + { + #if( configUSE_PREEMPTION != 0 ) + { + xAlreadyYielded = pdTRUE; + } + #endif + taskYIELD_IF_USING_PREEMPTION(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + taskEXIT_CRITICAL(); + + return xAlreadyYielded; +} +/*-----------------------------------------------------------*/ + +TickType_t xTaskGetTickCount( void ) +{ +TickType_t xTicks; + + /* Critical section required if running on a 16 bit processor. */ + portTICK_TYPE_ENTER_CRITICAL(); + { + xTicks = xTickCount; + } + portTICK_TYPE_EXIT_CRITICAL(); + + return xTicks; +} +/*-----------------------------------------------------------*/ + +TickType_t xTaskGetTickCountFromISR( void ) +{ +TickType_t xReturn; +UBaseType_t uxSavedInterruptStatus; + + /* RTOS ports that support interrupt nesting have the concept of a maximum + system call (or maximum API call) interrupt priority. Interrupts that are + above the maximum system call priority are kept permanently enabled, even + when the RTOS kernel is in a critical section, but cannot make any calls to + FreeRTOS API functions. If configASSERT() is defined in FreeRTOSConfig.h + then portASSERT_IF_INTERRUPT_PRIORITY_INVALID() will result in an assertion + failure if a FreeRTOS API function is called from an interrupt that has been + assigned a priority above the configured maximum system call priority. + Only FreeRTOS functions that end in FromISR can be called from interrupts + that have been assigned a priority at or (logically) below the maximum + system call interrupt priority. FreeRTOS maintains a separate interrupt + safe API to ensure interrupt entry is as fast and as simple as possible. + More information (albeit Cortex-M specific) is provided on the following + link: https://www.freertos.org/RTOS-Cortex-M3-M4.html */ + portASSERT_IF_INTERRUPT_PRIORITY_INVALID(); + + uxSavedInterruptStatus = portTICK_TYPE_SET_INTERRUPT_MASK_FROM_ISR(); + { + xReturn = xTickCount; + } + portTICK_TYPE_CLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus ); + + return xReturn; +} +/*-----------------------------------------------------------*/ + +UBaseType_t uxTaskGetNumberOfTasks( void ) +{ + /* A critical section is not required because the variables are of type + BaseType_t. */ + return uxCurrentNumberOfTasks; +} +/*-----------------------------------------------------------*/ + +char *pcTaskGetName( TaskHandle_t xTaskToQuery ) /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ +{ +TCB_t *pxTCB; + + /* If null is passed in here then the name of the calling task is being + queried. */ + pxTCB = prvGetTCBFromHandle( xTaskToQuery ); + configASSERT( pxTCB ); + return &( pxTCB->pcTaskName[ 0 ] ); +} +/*-----------------------------------------------------------*/ + +#if ( INCLUDE_xTaskGetHandle == 1 ) + + static TCB_t *prvSearchForNameWithinSingleList( List_t *pxList, const char pcNameToQuery[] ) + { + TCB_t *pxNextTCB, *pxFirstTCB, *pxReturn = NULL; + UBaseType_t x; + char cNextChar; + BaseType_t xBreakLoop; + + /* This function is called with the scheduler suspended. */ + + if( listCURRENT_LIST_LENGTH( pxList ) > ( UBaseType_t ) 0 ) + { + listGET_OWNER_OF_NEXT_ENTRY( pxFirstTCB, pxList ); /*lint !e9079 void * is used as this macro is used with timers and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ + + do + { + listGET_OWNER_OF_NEXT_ENTRY( pxNextTCB, pxList ); /*lint !e9079 void * is used as this macro is used with timers and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ + + /* Check each character in the name looking for a match or + mismatch. */ + xBreakLoop = pdFALSE; + for( x = ( UBaseType_t ) 0; x < ( UBaseType_t ) configMAX_TASK_NAME_LEN; x++ ) + { + cNextChar = pxNextTCB->pcTaskName[ x ]; + + if( cNextChar != pcNameToQuery[ x ] ) + { + /* Characters didn't match. */ + xBreakLoop = pdTRUE; + } + else if( cNextChar == ( char ) 0x00 ) + { + /* Both strings terminated, a match must have been + found. */ + pxReturn = pxNextTCB; + xBreakLoop = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + if( xBreakLoop != pdFALSE ) + { + break; + } + } + + if( pxReturn != NULL ) + { + /* The handle has been found. */ + break; + } + + } while( pxNextTCB != pxFirstTCB ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + return pxReturn; + } + +#endif /* INCLUDE_xTaskGetHandle */ +/*-----------------------------------------------------------*/ + +#if ( INCLUDE_xTaskGetHandle == 1 ) + + TaskHandle_t xTaskGetHandle( const char *pcNameToQuery ) /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + { + UBaseType_t uxQueue = configMAX_PRIORITIES; + TCB_t* pxTCB; + + /* Task names will be truncated to configMAX_TASK_NAME_LEN - 1 bytes. */ + configASSERT( strlen( pcNameToQuery ) < configMAX_TASK_NAME_LEN ); + + vTaskSuspendAll(); + { + /* Search the ready lists. */ + do + { + uxQueue--; + pxTCB = prvSearchForNameWithinSingleList( ( List_t * ) &( pxReadyTasksLists[ uxQueue ] ), pcNameToQuery ); + + if( pxTCB != NULL ) + { + /* Found the handle. */ + break; + } + + } while( uxQueue > ( UBaseType_t ) tskIDLE_PRIORITY ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ + + /* Search the delayed lists. */ + if( pxTCB == NULL ) + { + pxTCB = prvSearchForNameWithinSingleList( ( List_t * ) pxDelayedTaskList, pcNameToQuery ); + } + + if( pxTCB == NULL ) + { + pxTCB = prvSearchForNameWithinSingleList( ( List_t * ) pxOverflowDelayedTaskList, pcNameToQuery ); + } + + #if ( INCLUDE_vTaskSuspend == 1 ) + { + if( pxTCB == NULL ) + { + /* Search the suspended list. */ + pxTCB = prvSearchForNameWithinSingleList( &xSuspendedTaskList, pcNameToQuery ); + } + } + #endif + + #if( INCLUDE_vTaskDelete == 1 ) + { + if( pxTCB == NULL ) + { + /* Search the deleted list. */ + pxTCB = prvSearchForNameWithinSingleList( &xTasksWaitingTermination, pcNameToQuery ); + } + } + #endif + } + ( void ) xTaskResumeAll(); + + return pxTCB; + } + +#endif /* INCLUDE_xTaskGetHandle */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_TRACE_FACILITY == 1 ) + + UBaseType_t uxTaskGetSystemState( TaskStatus_t * const pxTaskStatusArray, const UBaseType_t uxArraySize, uint32_t * const pulTotalRunTime ) + { + UBaseType_t uxTask = 0, uxQueue = configMAX_PRIORITIES; + + vTaskSuspendAll(); + { + /* Is there a space in the array for each task in the system? */ + if( uxArraySize >= uxCurrentNumberOfTasks ) + { + /* Fill in an TaskStatus_t structure with information on each + task in the Ready state. */ + do + { + uxQueue--; + uxTask += prvListTasksWithinSingleList( &( pxTaskStatusArray[ uxTask ] ), &( pxReadyTasksLists[ uxQueue ] ), eReady ); + + } while( uxQueue > ( UBaseType_t ) tskIDLE_PRIORITY ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ + + /* Fill in an TaskStatus_t structure with information on each + task in the Blocked state. */ + uxTask += prvListTasksWithinSingleList( &( pxTaskStatusArray[ uxTask ] ), ( List_t * ) pxDelayedTaskList, eBlocked ); + uxTask += prvListTasksWithinSingleList( &( pxTaskStatusArray[ uxTask ] ), ( List_t * ) pxOverflowDelayedTaskList, eBlocked ); + + #if( INCLUDE_vTaskDelete == 1 ) + { + /* Fill in an TaskStatus_t structure with information on + each task that has been deleted but not yet cleaned up. */ + uxTask += prvListTasksWithinSingleList( &( pxTaskStatusArray[ uxTask ] ), &xTasksWaitingTermination, eDeleted ); + } + #endif + + #if ( INCLUDE_vTaskSuspend == 1 ) + { + /* Fill in an TaskStatus_t structure with information on + each task in the Suspended state. */ + uxTask += prvListTasksWithinSingleList( &( pxTaskStatusArray[ uxTask ] ), &xSuspendedTaskList, eSuspended ); + } + #endif + + #if ( configGENERATE_RUN_TIME_STATS == 1) + { + if( pulTotalRunTime != NULL ) + { + #ifdef portALT_GET_RUN_TIME_COUNTER_VALUE + portALT_GET_RUN_TIME_COUNTER_VALUE( ( *pulTotalRunTime ) ); + #else + *pulTotalRunTime = portGET_RUN_TIME_COUNTER_VALUE(); + #endif + } + } + #else + { + if( pulTotalRunTime != NULL ) + { + *pulTotalRunTime = 0; + } + } + #endif + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + ( void ) xTaskResumeAll(); + + return uxTask; + } + +#endif /* configUSE_TRACE_FACILITY */ +/*----------------------------------------------------------*/ + +#if ( INCLUDE_xTaskGetIdleTaskHandle == 1 ) + + TaskHandle_t xTaskGetIdleTaskHandle( void ) + { + /* If xTaskGetIdleTaskHandle() is called before the scheduler has been + started, then xIdleTaskHandle will be NULL. */ + configASSERT( ( xIdleTaskHandle != NULL ) ); + return xIdleTaskHandle; + } + +#endif /* INCLUDE_xTaskGetIdleTaskHandle */ +/*----------------------------------------------------------*/ + +/* This conditional compilation should use inequality to 0, not equality to 1. +This is to ensure vTaskStepTick() is available when user defined low power mode +implementations require configUSE_TICKLESS_IDLE to be set to a value other than +1. */ +#if ( configUSE_TICKLESS_IDLE != 0 ) + + void vTaskStepTick( const TickType_t xTicksToJump ) + { + /* Correct the tick count value after a period during which the tick + was suppressed. Note this does *not* call the tick hook function for + each stepped tick. */ + configASSERT( ( xTickCount + xTicksToJump ) <= xNextTaskUnblockTime ); + xTickCount += xTicksToJump; + traceINCREASE_TICK_COUNT( xTicksToJump ); + } + +#endif /* configUSE_TICKLESS_IDLE */ +/*----------------------------------------------------------*/ + +BaseType_t xTaskCatchUpTicks( TickType_t xTicksToCatchUp ) +{ +BaseType_t xYieldRequired = pdFALSE; + + /* Must not be called with the scheduler suspended as the implementation + relies on xPendedTicks being wound down to 0 in xTaskResumeAll(). */ + configASSERT( uxSchedulerSuspended == 0 ); + + /* Use xPendedTicks to mimic xTicksToCatchUp number of ticks occurring when + the scheduler is suspended so the ticks are executed in xTaskResumeAll(). */ + vTaskSuspendAll(); + xPendedTicks += xTicksToCatchUp; + xYieldRequired = xTaskResumeAll(); + + return xYieldRequired; +} +/*----------------------------------------------------------*/ + +#if ( INCLUDE_xTaskAbortDelay == 1 ) + + BaseType_t xTaskAbortDelay( TaskHandle_t xTask ) + { + TCB_t *pxTCB = xTask; + BaseType_t xReturn; + + configASSERT( pxTCB ); + + vTaskSuspendAll(); + { + /* A task can only be prematurely removed from the Blocked state if + it is actually in the Blocked state. */ + if( eTaskGetState( xTask ) == eBlocked ) + { + xReturn = pdPASS; + + /* Remove the reference to the task from the blocked list. An + interrupt won't touch the xStateListItem because the + scheduler is suspended. */ + ( void ) uxListRemove( &( pxTCB->xStateListItem ) ); + + /* Is the task waiting on an event also? If so remove it from + the event list too. Interrupts can touch the event list item, + even though the scheduler is suspended, so a critical section + is used. */ + taskENTER_CRITICAL(); + { + if( listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) != NULL ) + { + ( void ) uxListRemove( &( pxTCB->xEventListItem ) ); + + /* This lets the task know it was forcibly removed from the + blocked state so it should not re-evaluate its block time and + then block again. */ + pxTCB->ucDelayAborted = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + taskEXIT_CRITICAL(); + + /* Place the unblocked task into the appropriate ready list. */ + prvAddTaskToReadyList( pxTCB ); + + /* A task being unblocked cannot cause an immediate context + switch if preemption is turned off. */ + #if ( configUSE_PREEMPTION == 1 ) + { + /* Preemption is on, but a context switch should only be + performed if the unblocked task has a priority that is + equal to or higher than the currently executing task. */ + if( pxTCB->uxPriority > pxCurrentTCB->uxPriority ) + { + /* Pend the yield to be performed when the scheduler + is unsuspended. */ + xYieldPending = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + #endif /* configUSE_PREEMPTION */ + } + else + { + xReturn = pdFAIL; + } + } + ( void ) xTaskResumeAll(); + + return xReturn; + } + +#endif /* INCLUDE_xTaskAbortDelay */ +/*----------------------------------------------------------*/ + +BaseType_t xTaskIncrementTick( void ) +{ +TCB_t * pxTCB; +TickType_t xItemValue; +BaseType_t xSwitchRequired = pdFALSE; + + /* Called by the portable layer each time a tick interrupt occurs. + Increments the tick then checks to see if the new tick value will cause any + tasks to be unblocked. */ + traceTASK_INCREMENT_TICK( xTickCount ); + if( uxSchedulerSuspended == ( UBaseType_t ) pdFALSE ) + { + /* Minor optimisation. The tick count cannot change in this + block. */ + const TickType_t xConstTickCount = xTickCount + ( TickType_t ) 1; + + /* Increment the RTOS tick, switching the delayed and overflowed + delayed lists if it wraps to 0. */ + xTickCount = xConstTickCount; + + if( xConstTickCount == ( TickType_t ) 0U ) /*lint !e774 'if' does not always evaluate to false as it is looking for an overflow. */ + { + taskSWITCH_DELAYED_LISTS(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* See if this tick has made a timeout expire. Tasks are stored in + the queue in the order of their wake time - meaning once one task + has been found whose block time has not expired there is no need to + look any further down the list. */ + if( xConstTickCount >= xNextTaskUnblockTime ) + { + for( ;; ) + { + if( listLIST_IS_EMPTY( pxDelayedTaskList ) != pdFALSE ) + { + /* The delayed list is empty. Set xNextTaskUnblockTime + to the maximum possible value so it is extremely + unlikely that the + if( xTickCount >= xNextTaskUnblockTime ) test will pass + next time through. */ + xNextTaskUnblockTime = portMAX_DELAY; /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ + break; + } + else + { + /* The delayed list is not empty, get the value of the + item at the head of the delayed list. This is the time + at which the task at the head of the delayed list must + be removed from the Blocked state. */ + pxTCB = listGET_OWNER_OF_HEAD_ENTRY( pxDelayedTaskList ); /*lint !e9079 void * is used as this macro is used with timers and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ + xItemValue = listGET_LIST_ITEM_VALUE( &( pxTCB->xStateListItem ) ); + + if( xConstTickCount < xItemValue ) + { + /* It is not time to unblock this item yet, but the + item value is the time at which the task at the head + of the blocked list must be removed from the Blocked + state - so record the item value in + xNextTaskUnblockTime. */ + xNextTaskUnblockTime = xItemValue; + break; /*lint !e9011 Code structure here is deedmed easier to understand with multiple breaks. */ + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* It is time to remove the item from the Blocked state. */ + ( void ) uxListRemove( &( pxTCB->xStateListItem ) ); + + /* Is the task waiting on an event also? If so remove + it from the event list. */ + if( listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) != NULL ) + { + ( void ) uxListRemove( &( pxTCB->xEventListItem ) ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* Place the unblocked task into the appropriate ready + list. */ + prvAddTaskToReadyList( pxTCB ); + + /* A task being unblocked cannot cause an immediate + context switch if preemption is turned off. */ + #if ( configUSE_PREEMPTION == 1 ) + { + /* Preemption is on, but a context switch should + only be performed if the unblocked task has a + priority that is equal to or higher than the + currently executing task. */ + if( pxTCB->uxPriority >= pxCurrentTCB->uxPriority ) + { + xSwitchRequired = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + #endif /* configUSE_PREEMPTION */ + } + } + } + + /* Tasks of equal priority to the currently running task will share + processing time (time slice) if preemption is on, and the application + writer has not explicitly turned time slicing off. */ + #if ( ( configUSE_PREEMPTION == 1 ) && ( configUSE_TIME_SLICING == 1 ) ) + { + if( listCURRENT_LIST_LENGTH( &( pxReadyTasksLists[ pxCurrentTCB->uxPriority ] ) ) > ( UBaseType_t ) 1 ) + { + xSwitchRequired = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + #endif /* ( ( configUSE_PREEMPTION == 1 ) && ( configUSE_TIME_SLICING == 1 ) ) */ + + #if ( configUSE_TICK_HOOK == 1 ) + { + /* Guard against the tick hook being called when the pended tick + count is being unwound (when the scheduler is being unlocked). */ + if( xPendedTicks == ( TickType_t ) 0 ) + { + vApplicationTickHook(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + #endif /* configUSE_TICK_HOOK */ + + #if ( configUSE_PREEMPTION == 1 ) + { + if( xYieldPending != pdFALSE ) + { + xSwitchRequired = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + #endif /* configUSE_PREEMPTION */ + } + else + { + ++xPendedTicks; + + /* The tick hook gets called at regular intervals, even if the + scheduler is locked. */ + #if ( configUSE_TICK_HOOK == 1 ) + { + vApplicationTickHook(); + } + #endif + } + + return xSwitchRequired; +} +/*-----------------------------------------------------------*/ + +#if ( configUSE_APPLICATION_TASK_TAG == 1 ) + + void vTaskSetApplicationTaskTag( TaskHandle_t xTask, TaskHookFunction_t pxHookFunction ) + { + TCB_t *xTCB; + + /* If xTask is NULL then it is the task hook of the calling task that is + getting set. */ + if( xTask == NULL ) + { + xTCB = ( TCB_t * ) pxCurrentTCB; + } + else + { + xTCB = xTask; + } + + /* Save the hook function in the TCB. A critical section is required as + the value can be accessed from an interrupt. */ + taskENTER_CRITICAL(); + { + xTCB->pxTaskTag = pxHookFunction; + } + taskEXIT_CRITICAL(); + } + +#endif /* configUSE_APPLICATION_TASK_TAG */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_APPLICATION_TASK_TAG == 1 ) + + TaskHookFunction_t xTaskGetApplicationTaskTag( TaskHandle_t xTask ) + { + TCB_t *pxTCB; + TaskHookFunction_t xReturn; + + /* If xTask is NULL then set the calling task's hook. */ + pxTCB = prvGetTCBFromHandle( xTask ); + + /* Save the hook function in the TCB. A critical section is required as + the value can be accessed from an interrupt. */ + taskENTER_CRITICAL(); + { + xReturn = pxTCB->pxTaskTag; + } + taskEXIT_CRITICAL(); + + return xReturn; + } + +#endif /* configUSE_APPLICATION_TASK_TAG */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_APPLICATION_TASK_TAG == 1 ) + + TaskHookFunction_t xTaskGetApplicationTaskTagFromISR( TaskHandle_t xTask ) + { + TCB_t *pxTCB; + TaskHookFunction_t xReturn; + UBaseType_t uxSavedInterruptStatus; + + /* If xTask is NULL then set the calling task's hook. */ + pxTCB = prvGetTCBFromHandle( xTask ); + + /* Save the hook function in the TCB. A critical section is required as + the value can be accessed from an interrupt. */ + uxSavedInterruptStatus = portSET_INTERRUPT_MASK_FROM_ISR(); + { + xReturn = pxTCB->pxTaskTag; + } + portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus ); + + return xReturn; + } + +#endif /* configUSE_APPLICATION_TASK_TAG */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_APPLICATION_TASK_TAG == 1 ) + + BaseType_t xTaskCallApplicationTaskHook( TaskHandle_t xTask, void *pvParameter ) + { + TCB_t *xTCB; + BaseType_t xReturn; + + /* If xTask is NULL then we are calling our own task hook. */ + if( xTask == NULL ) + { + xTCB = pxCurrentTCB; + } + else + { + xTCB = xTask; + } + + if( xTCB->pxTaskTag != NULL ) + { + xReturn = xTCB->pxTaskTag( pvParameter ); + } + else + { + xReturn = pdFAIL; + } + + return xReturn; + } + +#endif /* configUSE_APPLICATION_TASK_TAG */ +/*-----------------------------------------------------------*/ + +void vTaskSwitchContext( void ) +{ + if( uxSchedulerSuspended != ( UBaseType_t ) pdFALSE ) + { + /* The scheduler is currently suspended - do not allow a context + switch. */ + xYieldPending = pdTRUE; + } + else + { + xYieldPending = pdFALSE; + traceTASK_SWITCHED_OUT(); + + #if ( configGENERATE_RUN_TIME_STATS == 1 ) + { + #ifdef portALT_GET_RUN_TIME_COUNTER_VALUE + portALT_GET_RUN_TIME_COUNTER_VALUE( ulTotalRunTime ); + #else + ulTotalRunTime = portGET_RUN_TIME_COUNTER_VALUE(); + #endif + + /* Add the amount of time the task has been running to the + accumulated time so far. The time the task started running was + stored in ulTaskSwitchedInTime. Note that there is no overflow + protection here so count values are only valid until the timer + overflows. The guard against negative values is to protect + against suspect run time stat counter implementations - which + are provided by the application, not the kernel. */ + if( ulTotalRunTime > ulTaskSwitchedInTime ) + { + pxCurrentTCB->ulRunTimeCounter += ( ulTotalRunTime - ulTaskSwitchedInTime ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + ulTaskSwitchedInTime = ulTotalRunTime; + } + #endif /* configGENERATE_RUN_TIME_STATS */ + + /* Check for stack overflow, if configured. */ + taskCHECK_FOR_STACK_OVERFLOW(); + + /* Before the currently running task is switched out, save its errno. */ + #if( configUSE_POSIX_ERRNO == 1 ) + { + pxCurrentTCB->iTaskErrno = FreeRTOS_errno; + } + #endif + + /* Select a new task to run using either the generic C or port + optimised asm code. */ + taskSELECT_HIGHEST_PRIORITY_TASK(); /*lint !e9079 void * is used as this macro is used with timers and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ + traceTASK_SWITCHED_IN(); + + /* After the new task is switched in, update the global errno. */ + #if( configUSE_POSIX_ERRNO == 1 ) + { + FreeRTOS_errno = pxCurrentTCB->iTaskErrno; + } + #endif + + #if ( configUSE_NEWLIB_REENTRANT == 1 ) + { + /* Switch Newlib's _impure_ptr variable to point to the _reent + structure specific to this task. + See the third party link http://www.nadler.com/embedded/newlibAndFreeRTOS.html + for additional information. */ + _impure_ptr = &( pxCurrentTCB->xNewLib_reent ); + } + #endif /* configUSE_NEWLIB_REENTRANT */ + } +} +/*-----------------------------------------------------------*/ + +void vTaskPlaceOnEventList( List_t * const pxEventList, const TickType_t xTicksToWait ) +{ + configASSERT( pxEventList ); + + /* THIS FUNCTION MUST BE CALLED WITH EITHER INTERRUPTS DISABLED OR THE + SCHEDULER SUSPENDED AND THE QUEUE BEING ACCESSED LOCKED. */ + + /* Place the event list item of the TCB in the appropriate event list. + This is placed in the list in priority order so the highest priority task + is the first to be woken by the event. The queue that contains the event + list is locked, preventing simultaneous access from interrupts. */ + vListInsert( pxEventList, &( pxCurrentTCB->xEventListItem ) ); + + prvAddCurrentTaskToDelayedList( xTicksToWait, pdTRUE ); +} +/*-----------------------------------------------------------*/ + +void vTaskPlaceOnUnorderedEventList( List_t * pxEventList, const TickType_t xItemValue, const TickType_t xTicksToWait ) +{ + configASSERT( pxEventList ); + + /* THIS FUNCTION MUST BE CALLED WITH THE SCHEDULER SUSPENDED. It is used by + the event groups implementation. */ + configASSERT( uxSchedulerSuspended != 0 ); + + /* Store the item value in the event list item. It is safe to access the + event list item here as interrupts won't access the event list item of a + task that is not in the Blocked state. */ + listSET_LIST_ITEM_VALUE( &( pxCurrentTCB->xEventListItem ), xItemValue | taskEVENT_LIST_ITEM_VALUE_IN_USE ); + + /* Place the event list item of the TCB at the end of the appropriate event + list. It is safe to access the event list here because it is part of an + event group implementation - and interrupts don't access event groups + directly (instead they access them indirectly by pending function calls to + the task level). */ + vListInsertEnd( pxEventList, &( pxCurrentTCB->xEventListItem ) ); + + prvAddCurrentTaskToDelayedList( xTicksToWait, pdTRUE ); +} +/*-----------------------------------------------------------*/ + +#if( configUSE_TIMERS == 1 ) + + void vTaskPlaceOnEventListRestricted( List_t * const pxEventList, TickType_t xTicksToWait, const BaseType_t xWaitIndefinitely ) + { + configASSERT( pxEventList ); + + /* This function should not be called by application code hence the + 'Restricted' in its name. It is not part of the public API. It is + designed for use by kernel code, and has special calling requirements - + it should be called with the scheduler suspended. */ + + + /* Place the event list item of the TCB in the appropriate event list. + In this case it is assume that this is the only task that is going to + be waiting on this event list, so the faster vListInsertEnd() function + can be used in place of vListInsert. */ + vListInsertEnd( pxEventList, &( pxCurrentTCB->xEventListItem ) ); + + /* If the task should block indefinitely then set the block time to a + value that will be recognised as an indefinite delay inside the + prvAddCurrentTaskToDelayedList() function. */ + if( xWaitIndefinitely != pdFALSE ) + { + xTicksToWait = portMAX_DELAY; + } + + traceTASK_DELAY_UNTIL( ( xTickCount + xTicksToWait ) ); + prvAddCurrentTaskToDelayedList( xTicksToWait, xWaitIndefinitely ); + } + +#endif /* configUSE_TIMERS */ +/*-----------------------------------------------------------*/ + +BaseType_t xTaskRemoveFromEventList( const List_t * const pxEventList ) +{ +TCB_t *pxUnblockedTCB; +BaseType_t xReturn; + + /* THIS FUNCTION MUST BE CALLED FROM A CRITICAL SECTION. It can also be + called from a critical section within an ISR. */ + + /* The event list is sorted in priority order, so the first in the list can + be removed as it is known to be the highest priority. Remove the TCB from + the delayed list, and add it to the ready list. + + If an event is for a queue that is locked then this function will never + get called - the lock count on the queue will get modified instead. This + means exclusive access to the event list is guaranteed here. + + This function assumes that a check has already been made to ensure that + pxEventList is not empty. */ + pxUnblockedTCB = listGET_OWNER_OF_HEAD_ENTRY( pxEventList ); /*lint !e9079 void * is used as this macro is used with timers and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ + configASSERT( pxUnblockedTCB ); + ( void ) uxListRemove( &( pxUnblockedTCB->xEventListItem ) ); + + if( uxSchedulerSuspended == ( UBaseType_t ) pdFALSE ) + { + ( void ) uxListRemove( &( pxUnblockedTCB->xStateListItem ) ); + prvAddTaskToReadyList( pxUnblockedTCB ); + + #if( configUSE_TICKLESS_IDLE != 0 ) + { + /* If a task is blocked on a kernel object then xNextTaskUnblockTime + might be set to the blocked task's time out time. If the task is + unblocked for a reason other than a timeout xNextTaskUnblockTime is + normally left unchanged, because it is automatically reset to a new + value when the tick count equals xNextTaskUnblockTime. However if + tickless idling is used it might be more important to enter sleep mode + at the earliest possible time - so reset xNextTaskUnblockTime here to + ensure it is updated at the earliest possible time. */ + prvResetNextTaskUnblockTime(); + } + #endif + } + else + { + /* The delayed and ready lists cannot be accessed, so hold this task + pending until the scheduler is resumed. */ + vListInsertEnd( &( xPendingReadyList ), &( pxUnblockedTCB->xEventListItem ) ); + } + + if( pxUnblockedTCB->uxPriority > pxCurrentTCB->uxPriority ) + { + /* Return true if the task removed from the event list has a higher + priority than the calling task. This allows the calling task to know if + it should force a context switch now. */ + xReturn = pdTRUE; + + /* Mark that a yield is pending in case the user is not using the + "xHigherPriorityTaskWoken" parameter to an ISR safe FreeRTOS function. */ + xYieldPending = pdTRUE; + } + else + { + xReturn = pdFALSE; + } + + return xReturn; +} +/*-----------------------------------------------------------*/ + +void vTaskRemoveFromUnorderedEventList( ListItem_t * pxEventListItem, const TickType_t xItemValue ) +{ +TCB_t *pxUnblockedTCB; + + /* THIS FUNCTION MUST BE CALLED WITH THE SCHEDULER SUSPENDED. It is used by + the event flags implementation. */ + configASSERT( uxSchedulerSuspended != pdFALSE ); + + /* Store the new item value in the event list. */ + listSET_LIST_ITEM_VALUE( pxEventListItem, xItemValue | taskEVENT_LIST_ITEM_VALUE_IN_USE ); + + /* Remove the event list form the event flag. Interrupts do not access + event flags. */ + pxUnblockedTCB = listGET_LIST_ITEM_OWNER( pxEventListItem ); /*lint !e9079 void * is used as this macro is used with timers and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ + configASSERT( pxUnblockedTCB ); + ( void ) uxListRemove( pxEventListItem ); + + #if( configUSE_TICKLESS_IDLE != 0 ) + { + /* If a task is blocked on a kernel object then xNextTaskUnblockTime + might be set to the blocked task's time out time. If the task is + unblocked for a reason other than a timeout xNextTaskUnblockTime is + normally left unchanged, because it is automatically reset to a new + value when the tick count equals xNextTaskUnblockTime. However if + tickless idling is used it might be more important to enter sleep mode + at the earliest possible time - so reset xNextTaskUnblockTime here to + ensure it is updated at the earliest possible time. */ + prvResetNextTaskUnblockTime(); + } + #endif + + /* Remove the task from the delayed list and add it to the ready list. The + scheduler is suspended so interrupts will not be accessing the ready + lists. */ + ( void ) uxListRemove( &( pxUnblockedTCB->xStateListItem ) ); + prvAddTaskToReadyList( pxUnblockedTCB ); + + if( pxUnblockedTCB->uxPriority > pxCurrentTCB->uxPriority ) + { + /* The unblocked task has a priority above that of the calling task, so + a context switch is required. This function is called with the + scheduler suspended so xYieldPending is set so the context switch + occurs immediately that the scheduler is resumed (unsuspended). */ + xYieldPending = pdTRUE; + } +} +/*-----------------------------------------------------------*/ + +void vTaskSetTimeOutState( TimeOut_t * const pxTimeOut ) +{ + configASSERT( pxTimeOut ); + taskENTER_CRITICAL(); + { + pxTimeOut->xOverflowCount = xNumOfOverflows; + pxTimeOut->xTimeOnEntering = xTickCount; + } + taskEXIT_CRITICAL(); +} +/*-----------------------------------------------------------*/ + +void vTaskInternalSetTimeOutState( TimeOut_t * const pxTimeOut ) +{ + /* For internal use only as it does not use a critical section. */ + pxTimeOut->xOverflowCount = xNumOfOverflows; + pxTimeOut->xTimeOnEntering = xTickCount; +} +/*-----------------------------------------------------------*/ + +BaseType_t xTaskCheckForTimeOut( TimeOut_t * const pxTimeOut, TickType_t * const pxTicksToWait ) +{ +BaseType_t xReturn; + + configASSERT( pxTimeOut ); + configASSERT( pxTicksToWait ); + + taskENTER_CRITICAL(); + { + /* Minor optimisation. The tick count cannot change in this block. */ + const TickType_t xConstTickCount = xTickCount; + const TickType_t xElapsedTime = xConstTickCount - pxTimeOut->xTimeOnEntering; + + #if( INCLUDE_xTaskAbortDelay == 1 ) + if( pxCurrentTCB->ucDelayAborted != ( uint8_t ) pdFALSE ) + { + /* The delay was aborted, which is not the same as a time out, + but has the same result. */ + pxCurrentTCB->ucDelayAborted = pdFALSE; + xReturn = pdTRUE; + } + else + #endif + + #if ( INCLUDE_vTaskSuspend == 1 ) + if( *pxTicksToWait == portMAX_DELAY ) + { + /* If INCLUDE_vTaskSuspend is set to 1 and the block time + specified is the maximum block time then the task should block + indefinitely, and therefore never time out. */ + xReturn = pdFALSE; + } + else + #endif + + if( ( xNumOfOverflows != pxTimeOut->xOverflowCount ) && ( xConstTickCount >= pxTimeOut->xTimeOnEntering ) ) /*lint !e525 Indentation preferred as is to make code within pre-processor directives clearer. */ + { + /* The tick count is greater than the time at which + vTaskSetTimeout() was called, but has also overflowed since + vTaskSetTimeOut() was called. It must have wrapped all the way + around and gone past again. This passed since vTaskSetTimeout() + was called. */ + xReturn = pdTRUE; + } + else if( xElapsedTime < *pxTicksToWait ) /*lint !e961 Explicit casting is only redundant with some compilers, whereas others require it to prevent integer conversion errors. */ + { + /* Not a genuine timeout. Adjust parameters for time remaining. */ + *pxTicksToWait -= xElapsedTime; + vTaskInternalSetTimeOutState( pxTimeOut ); + xReturn = pdFALSE; + } + else + { + *pxTicksToWait = 0; + xReturn = pdTRUE; + } + } + taskEXIT_CRITICAL(); + + return xReturn; +} +/*-----------------------------------------------------------*/ + +void vTaskMissedYield( void ) +{ + xYieldPending = pdTRUE; +} +/*-----------------------------------------------------------*/ + +#if ( configUSE_TRACE_FACILITY == 1 ) + + UBaseType_t uxTaskGetTaskNumber( TaskHandle_t xTask ) + { + UBaseType_t uxReturn; + TCB_t const *pxTCB; + + if( xTask != NULL ) + { + pxTCB = xTask; + uxReturn = pxTCB->uxTaskNumber; + } + else + { + uxReturn = 0U; + } + + return uxReturn; + } + +#endif /* configUSE_TRACE_FACILITY */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_TRACE_FACILITY == 1 ) + + void vTaskSetTaskNumber( TaskHandle_t xTask, const UBaseType_t uxHandle ) + { + TCB_t * pxTCB; + + if( xTask != NULL ) + { + pxTCB = xTask; + pxTCB->uxTaskNumber = uxHandle; + } + } + +#endif /* configUSE_TRACE_FACILITY */ + +/* + * ----------------------------------------------------------- + * The Idle task. + * ---------------------------------------------------------- + * + * The portTASK_FUNCTION() macro is used to allow port/compiler specific + * language extensions. The equivalent prototype for this function is: + * + * void prvIdleTask( void *pvParameters ); + * + */ +static portTASK_FUNCTION( prvIdleTask, pvParameters ) +{ + /* Stop warnings. */ + ( void ) pvParameters; + + /** THIS IS THE RTOS IDLE TASK - WHICH IS CREATED AUTOMATICALLY WHEN THE + SCHEDULER IS STARTED. **/ + + /* In case a task that has a secure context deletes itself, in which case + the idle task is responsible for deleting the task's secure context, if + any. */ + portALLOCATE_SECURE_CONTEXT( configMINIMAL_SECURE_STACK_SIZE ); + + for( ;; ) + { + /* See if any tasks have deleted themselves - if so then the idle task + is responsible for freeing the deleted task's TCB and stack. */ + prvCheckTasksWaitingTermination(); + + #if ( configUSE_PREEMPTION == 0 ) + { + /* If we are not using preemption we keep forcing a task switch to + see if any other task has become available. If we are using + preemption we don't need to do this as any task becoming available + will automatically get the processor anyway. */ + taskYIELD(); + } + #endif /* configUSE_PREEMPTION */ + + #if ( ( configUSE_PREEMPTION == 1 ) && ( configIDLE_SHOULD_YIELD == 1 ) ) + { + /* When using preemption tasks of equal priority will be + timesliced. If a task that is sharing the idle priority is ready + to run then the idle task should yield before the end of the + timeslice. + + A critical region is not required here as we are just reading from + the list, and an occasional incorrect value will not matter. If + the ready list at the idle priority contains more than one task + then a task other than the idle task is ready to execute. */ + if( listCURRENT_LIST_LENGTH( &( pxReadyTasksLists[ tskIDLE_PRIORITY ] ) ) > ( UBaseType_t ) 1 ) + { + taskYIELD(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + #endif /* ( ( configUSE_PREEMPTION == 1 ) && ( configIDLE_SHOULD_YIELD == 1 ) ) */ + + #if ( configUSE_IDLE_HOOK == 1 ) + { + extern void vApplicationIdleHook( void ); + + /* Call the user defined function from within the idle task. This + allows the application designer to add background functionality + without the overhead of a separate task. + NOTE: vApplicationIdleHook() MUST NOT, UNDER ANY CIRCUMSTANCES, + CALL A FUNCTION THAT MIGHT BLOCK. */ + vApplicationIdleHook(); + } + #endif /* configUSE_IDLE_HOOK */ + + /* This conditional compilation should use inequality to 0, not equality + to 1. This is to ensure portSUPPRESS_TICKS_AND_SLEEP() is called when + user defined low power mode implementations require + configUSE_TICKLESS_IDLE to be set to a value other than 1. */ + #if ( configUSE_TICKLESS_IDLE != 0 ) + { + TickType_t xExpectedIdleTime; + + /* It is not desirable to suspend then resume the scheduler on + each iteration of the idle task. Therefore, a preliminary + test of the expected idle time is performed without the + scheduler suspended. The result here is not necessarily + valid. */ + xExpectedIdleTime = prvGetExpectedIdleTime(); + + if( xExpectedIdleTime >= configEXPECTED_IDLE_TIME_BEFORE_SLEEP ) + { + vTaskSuspendAll(); + { + /* Now the scheduler is suspended, the expected idle + time can be sampled again, and this time its value can + be used. */ + configASSERT( xNextTaskUnblockTime >= xTickCount ); + xExpectedIdleTime = prvGetExpectedIdleTime(); + + /* Define the following macro to set xExpectedIdleTime to 0 + if the application does not want + portSUPPRESS_TICKS_AND_SLEEP() to be called. */ + configPRE_SUPPRESS_TICKS_AND_SLEEP_PROCESSING( xExpectedIdleTime ); + + if( xExpectedIdleTime >= configEXPECTED_IDLE_TIME_BEFORE_SLEEP ) + { + traceLOW_POWER_IDLE_BEGIN(); + portSUPPRESS_TICKS_AND_SLEEP( xExpectedIdleTime ); + traceLOW_POWER_IDLE_END(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + ( void ) xTaskResumeAll(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + #endif /* configUSE_TICKLESS_IDLE */ + } +} +/*-----------------------------------------------------------*/ + +#if( configUSE_TICKLESS_IDLE != 0 ) + + eSleepModeStatus eTaskConfirmSleepModeStatus( void ) + { + /* The idle task exists in addition to the application tasks. */ + const UBaseType_t uxNonApplicationTasks = 1; + eSleepModeStatus eReturn = eStandardSleep; + + /* This function must be called from a critical section. */ + + if( listCURRENT_LIST_LENGTH( &xPendingReadyList ) != 0 ) + { + /* A task was made ready while the scheduler was suspended. */ + eReturn = eAbortSleep; + } + else if( xYieldPending != pdFALSE ) + { + /* A yield was pended while the scheduler was suspended. */ + eReturn = eAbortSleep; + } + else + { + /* If all the tasks are in the suspended list (which might mean they + have an infinite block time rather than actually being suspended) + then it is safe to turn all clocks off and just wait for external + interrupts. */ + if( listCURRENT_LIST_LENGTH( &xSuspendedTaskList ) == ( uxCurrentNumberOfTasks - uxNonApplicationTasks ) ) + { + eReturn = eNoTasksWaitingTimeout; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + + return eReturn; + } + +#endif /* configUSE_TICKLESS_IDLE */ +/*-----------------------------------------------------------*/ + +#if ( configNUM_THREAD_LOCAL_STORAGE_POINTERS != 0 ) + + void vTaskSetThreadLocalStoragePointer( TaskHandle_t xTaskToSet, BaseType_t xIndex, void *pvValue ) + { + TCB_t *pxTCB; + + if( xIndex < configNUM_THREAD_LOCAL_STORAGE_POINTERS ) + { + pxTCB = prvGetTCBFromHandle( xTaskToSet ); + configASSERT( pxTCB != NULL ); + pxTCB->pvThreadLocalStoragePointers[ xIndex ] = pvValue; + } + } + +#endif /* configNUM_THREAD_LOCAL_STORAGE_POINTERS */ +/*-----------------------------------------------------------*/ + +#if ( configNUM_THREAD_LOCAL_STORAGE_POINTERS != 0 ) + + void *pvTaskGetThreadLocalStoragePointer( TaskHandle_t xTaskToQuery, BaseType_t xIndex ) + { + void *pvReturn = NULL; + TCB_t *pxTCB; + + if( xIndex < configNUM_THREAD_LOCAL_STORAGE_POINTERS ) + { + pxTCB = prvGetTCBFromHandle( xTaskToQuery ); + pvReturn = pxTCB->pvThreadLocalStoragePointers[ xIndex ]; + } + else + { + pvReturn = NULL; + } + + return pvReturn; + } + +#endif /* configNUM_THREAD_LOCAL_STORAGE_POINTERS */ +/*-----------------------------------------------------------*/ + +#if ( portUSING_MPU_WRAPPERS == 1 ) + + void vTaskAllocateMPURegions( TaskHandle_t xTaskToModify, const MemoryRegion_t * const xRegions ) + { + TCB_t *pxTCB; + + /* If null is passed in here then we are modifying the MPU settings of + the calling task. */ + pxTCB = prvGetTCBFromHandle( xTaskToModify ); + + vPortStoreTaskMPUSettings( &( pxTCB->xMPUSettings ), xRegions, NULL, 0 ); + } + +#endif /* portUSING_MPU_WRAPPERS */ +/*-----------------------------------------------------------*/ + +static void prvInitialiseTaskLists( void ) +{ +UBaseType_t uxPriority; + + for( uxPriority = ( UBaseType_t ) 0U; uxPriority < ( UBaseType_t ) configMAX_PRIORITIES; uxPriority++ ) + { + vListInitialise( &( pxReadyTasksLists[ uxPriority ] ) ); + } + + vListInitialise( &xDelayedTaskList1 ); + vListInitialise( &xDelayedTaskList2 ); + vListInitialise( &xPendingReadyList ); + + #if ( INCLUDE_vTaskDelete == 1 ) + { + vListInitialise( &xTasksWaitingTermination ); + } + #endif /* INCLUDE_vTaskDelete */ + + #if ( INCLUDE_vTaskSuspend == 1 ) + { + vListInitialise( &xSuspendedTaskList ); + } + #endif /* INCLUDE_vTaskSuspend */ + + /* Start with pxDelayedTaskList using list1 and the pxOverflowDelayedTaskList + using list2. */ + pxDelayedTaskList = &xDelayedTaskList1; + pxOverflowDelayedTaskList = &xDelayedTaskList2; +} +/*-----------------------------------------------------------*/ + +static void prvCheckTasksWaitingTermination( void ) +{ + + /** THIS FUNCTION IS CALLED FROM THE RTOS IDLE TASK **/ + + #if ( INCLUDE_vTaskDelete == 1 ) + { + TCB_t *pxTCB; + + /* uxDeletedTasksWaitingCleanUp is used to prevent taskENTER_CRITICAL() + being called too often in the idle task. */ + while( uxDeletedTasksWaitingCleanUp > ( UBaseType_t ) 0U ) + { + taskENTER_CRITICAL(); + { + pxTCB = listGET_OWNER_OF_HEAD_ENTRY( ( &xTasksWaitingTermination ) ); /*lint !e9079 void * is used as this macro is used with timers and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ + ( void ) uxListRemove( &( pxTCB->xStateListItem ) ); + --uxCurrentNumberOfTasks; + --uxDeletedTasksWaitingCleanUp; + } + taskEXIT_CRITICAL(); + + prvDeleteTCB( pxTCB ); + } + } + #endif /* INCLUDE_vTaskDelete */ +} +/*-----------------------------------------------------------*/ + +#if( configUSE_TRACE_FACILITY == 1 ) + + void vTaskGetInfo( TaskHandle_t xTask, TaskStatus_t *pxTaskStatus, BaseType_t xGetFreeStackSpace, eTaskState eState ) + { + TCB_t *pxTCB; + + /* xTask is NULL then get the state of the calling task. */ + pxTCB = prvGetTCBFromHandle( xTask ); + + pxTaskStatus->xHandle = ( TaskHandle_t ) pxTCB; + pxTaskStatus->pcTaskName = ( const char * ) &( pxTCB->pcTaskName [ 0 ] ); + pxTaskStatus->uxCurrentPriority = pxTCB->uxPriority; + pxTaskStatus->pxStackBase = pxTCB->pxStack; + pxTaskStatus->xTaskNumber = pxTCB->uxTCBNumber; + + #if ( configUSE_MUTEXES == 1 ) + { + pxTaskStatus->uxBasePriority = pxTCB->uxBasePriority; + } + #else + { + pxTaskStatus->uxBasePriority = 0; + } + #endif + + #if ( configGENERATE_RUN_TIME_STATS == 1 ) + { + pxTaskStatus->ulRunTimeCounter = pxTCB->ulRunTimeCounter; + } + #else + { + pxTaskStatus->ulRunTimeCounter = 0; + } + #endif + + /* Obtaining the task state is a little fiddly, so is only done if the + value of eState passed into this function is eInvalid - otherwise the + state is just set to whatever is passed in. */ + if( eState != eInvalid ) + { + if( pxTCB == pxCurrentTCB ) + { + pxTaskStatus->eCurrentState = eRunning; + } + else + { + pxTaskStatus->eCurrentState = eState; + + #if ( INCLUDE_vTaskSuspend == 1 ) + { + /* If the task is in the suspended list then there is a + chance it is actually just blocked indefinitely - so really + it should be reported as being in the Blocked state. */ + if( eState == eSuspended ) + { + vTaskSuspendAll(); + { + if( listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) != NULL ) + { + pxTaskStatus->eCurrentState = eBlocked; + } + } + ( void ) xTaskResumeAll(); + } + } + #endif /* INCLUDE_vTaskSuspend */ + } + } + else + { + pxTaskStatus->eCurrentState = eTaskGetState( pxTCB ); + } + + /* Obtaining the stack space takes some time, so the xGetFreeStackSpace + parameter is provided to allow it to be skipped. */ + if( xGetFreeStackSpace != pdFALSE ) + { + #if ( portSTACK_GROWTH > 0 ) + { + pxTaskStatus->usStackHighWaterMark = prvTaskCheckFreeStackSpace( ( uint8_t * ) pxTCB->pxEndOfStack ); + } + #else + { + pxTaskStatus->usStackHighWaterMark = prvTaskCheckFreeStackSpace( ( uint8_t * ) pxTCB->pxStack ); + } + #endif + } + else + { + pxTaskStatus->usStackHighWaterMark = 0; + } + } + +#endif /* configUSE_TRACE_FACILITY */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_TRACE_FACILITY == 1 ) + + static UBaseType_t prvListTasksWithinSingleList( TaskStatus_t *pxTaskStatusArray, List_t *pxList, eTaskState eState ) + { + configLIST_VOLATILE TCB_t *pxNextTCB, *pxFirstTCB; + UBaseType_t uxTask = 0; + + if( listCURRENT_LIST_LENGTH( pxList ) > ( UBaseType_t ) 0 ) + { + listGET_OWNER_OF_NEXT_ENTRY( pxFirstTCB, pxList ); /*lint !e9079 void * is used as this macro is used with timers and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ + + /* Populate an TaskStatus_t structure within the + pxTaskStatusArray array for each task that is referenced from + pxList. See the definition of TaskStatus_t in task.h for the + meaning of each TaskStatus_t structure member. */ + do + { + listGET_OWNER_OF_NEXT_ENTRY( pxNextTCB, pxList ); /*lint !e9079 void * is used as this macro is used with timers and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ + vTaskGetInfo( ( TaskHandle_t ) pxNextTCB, &( pxTaskStatusArray[ uxTask ] ), pdTRUE, eState ); + uxTask++; + } while( pxNextTCB != pxFirstTCB ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + return uxTask; + } + +#endif /* configUSE_TRACE_FACILITY */ +/*-----------------------------------------------------------*/ + +#if ( ( configUSE_TRACE_FACILITY == 1 ) || ( INCLUDE_uxTaskGetStackHighWaterMark == 1 ) || ( INCLUDE_uxTaskGetStackHighWaterMark2 == 1 ) ) + + static configSTACK_DEPTH_TYPE prvTaskCheckFreeStackSpace( const uint8_t * pucStackByte ) + { + uint32_t ulCount = 0U; + + while( *pucStackByte == ( uint8_t ) tskSTACK_FILL_BYTE ) + { + pucStackByte -= portSTACK_GROWTH; + ulCount++; + } + + ulCount /= ( uint32_t ) sizeof( StackType_t ); /*lint !e961 Casting is not redundant on smaller architectures. */ + + return ( configSTACK_DEPTH_TYPE ) ulCount; + } + +#endif /* ( ( configUSE_TRACE_FACILITY == 1 ) || ( INCLUDE_uxTaskGetStackHighWaterMark == 1 ) || ( INCLUDE_uxTaskGetStackHighWaterMark2 == 1 ) ) */ +/*-----------------------------------------------------------*/ + +#if ( INCLUDE_uxTaskGetStackHighWaterMark2 == 1 ) + + /* uxTaskGetStackHighWaterMark() and uxTaskGetStackHighWaterMark2() are the + same except for their return type. Using configSTACK_DEPTH_TYPE allows the + user to determine the return type. It gets around the problem of the value + overflowing on 8-bit types without breaking backward compatibility for + applications that expect an 8-bit return type. */ + configSTACK_DEPTH_TYPE uxTaskGetStackHighWaterMark2( TaskHandle_t xTask ) + { + TCB_t *pxTCB; + uint8_t *pucEndOfStack; + configSTACK_DEPTH_TYPE uxReturn; + + /* uxTaskGetStackHighWaterMark() and uxTaskGetStackHighWaterMark2() are + the same except for their return type. Using configSTACK_DEPTH_TYPE + allows the user to determine the return type. It gets around the + problem of the value overflowing on 8-bit types without breaking + backward compatibility for applications that expect an 8-bit return + type. */ + + pxTCB = prvGetTCBFromHandle( xTask ); + + #if portSTACK_GROWTH < 0 + { + pucEndOfStack = ( uint8_t * ) pxTCB->pxStack; + } + #else + { + pucEndOfStack = ( uint8_t * ) pxTCB->pxEndOfStack; + } + #endif + + uxReturn = prvTaskCheckFreeStackSpace( pucEndOfStack ); + + return uxReturn; + } + +#endif /* INCLUDE_uxTaskGetStackHighWaterMark2 */ +/*-----------------------------------------------------------*/ + +#if ( INCLUDE_uxTaskGetStackHighWaterMark == 1 ) + + UBaseType_t uxTaskGetStackHighWaterMark( TaskHandle_t xTask ) + { + TCB_t *pxTCB; + uint8_t *pucEndOfStack; + UBaseType_t uxReturn; + + pxTCB = prvGetTCBFromHandle( xTask ); + + #if portSTACK_GROWTH < 0 + { + pucEndOfStack = ( uint8_t * ) pxTCB->pxStack; + } + #else + { + pucEndOfStack = ( uint8_t * ) pxTCB->pxEndOfStack; + } + #endif + + uxReturn = ( UBaseType_t ) prvTaskCheckFreeStackSpace( pucEndOfStack ); + + return uxReturn; + } + +#endif /* INCLUDE_uxTaskGetStackHighWaterMark */ +/*-----------------------------------------------------------*/ + +#if ( INCLUDE_vTaskDelete == 1 ) + + static void prvDeleteTCB( TCB_t *pxTCB ) + { + /* This call is required specifically for the TriCore port. It must be + above the vPortFree() calls. The call is also used by ports/demos that + want to allocate and clean RAM statically. */ + portCLEAN_UP_TCB( pxTCB ); + + /* Free up the memory allocated by the scheduler for the task. It is up + to the task to free any memory allocated at the application level. + See the third party link http://www.nadler.com/embedded/newlibAndFreeRTOS.html + for additional information. */ + #if ( configUSE_NEWLIB_REENTRANT == 1 ) + { + _reclaim_reent( &( pxTCB->xNewLib_reent ) ); + } + #endif /* configUSE_NEWLIB_REENTRANT */ + + #if( ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) && ( configSUPPORT_STATIC_ALLOCATION == 0 ) && ( portUSING_MPU_WRAPPERS == 0 ) ) + { + /* The task can only have been allocated dynamically - free both + the stack and TCB. */ + vPortFree( pxTCB->pxStack ); + vPortFree( pxTCB ); + } + #elif( tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE != 0 ) /*lint !e731 !e9029 Macro has been consolidated for readability reasons. */ + { + /* The task could have been allocated statically or dynamically, so + check what was statically allocated before trying to free the + memory. */ + if( pxTCB->ucStaticallyAllocated == tskDYNAMICALLY_ALLOCATED_STACK_AND_TCB ) + { + /* Both the stack and TCB were allocated dynamically, so both + must be freed. */ + vPortFree( pxTCB->pxStack ); + vPortFree( pxTCB ); + } + else if( pxTCB->ucStaticallyAllocated == tskSTATICALLY_ALLOCATED_STACK_ONLY ) + { + /* Only the stack was statically allocated, so the TCB is the + only memory that must be freed. */ + vPortFree( pxTCB ); + } + else + { + /* Neither the stack nor the TCB were allocated dynamically, so + nothing needs to be freed. */ + configASSERT( pxTCB->ucStaticallyAllocated == tskSTATICALLY_ALLOCATED_STACK_AND_TCB ); + mtCOVERAGE_TEST_MARKER(); + } + } + #endif /* configSUPPORT_DYNAMIC_ALLOCATION */ + } + +#endif /* INCLUDE_vTaskDelete */ +/*-----------------------------------------------------------*/ + +static void prvResetNextTaskUnblockTime( void ) +{ +TCB_t *pxTCB; + + if( listLIST_IS_EMPTY( pxDelayedTaskList ) != pdFALSE ) + { + /* The new current delayed list is empty. Set xNextTaskUnblockTime to + the maximum possible value so it is extremely unlikely that the + if( xTickCount >= xNextTaskUnblockTime ) test will pass until + there is an item in the delayed list. */ + xNextTaskUnblockTime = portMAX_DELAY; + } + else + { + /* The new current delayed list is not empty, get the value of + the item at the head of the delayed list. This is the time at + which the task at the head of the delayed list should be removed + from the Blocked state. */ + ( pxTCB ) = listGET_OWNER_OF_HEAD_ENTRY( pxDelayedTaskList ); /*lint !e9079 void * is used as this macro is used with timers and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ + xNextTaskUnblockTime = listGET_LIST_ITEM_VALUE( &( ( pxTCB )->xStateListItem ) ); + } +} +/*-----------------------------------------------------------*/ + +#if ( ( INCLUDE_xTaskGetCurrentTaskHandle == 1 ) || ( configUSE_MUTEXES == 1 ) ) + + TaskHandle_t xTaskGetCurrentTaskHandle( void ) + { + TaskHandle_t xReturn; + + /* A critical section is not required as this is not called from + an interrupt and the current TCB will always be the same for any + individual execution thread. */ + xReturn = pxCurrentTCB; + + return xReturn; + } + +#endif /* ( ( INCLUDE_xTaskGetCurrentTaskHandle == 1 ) || ( configUSE_MUTEXES == 1 ) ) */ +/*-----------------------------------------------------------*/ + +#if ( ( INCLUDE_xTaskGetSchedulerState == 1 ) || ( configUSE_TIMERS == 1 ) ) + + BaseType_t xTaskGetSchedulerState( void ) + { + BaseType_t xReturn; + + if( xSchedulerRunning == pdFALSE ) + { + xReturn = taskSCHEDULER_NOT_STARTED; + } + else + { + if( uxSchedulerSuspended == ( UBaseType_t ) pdFALSE ) + { + xReturn = taskSCHEDULER_RUNNING; + } + else + { + xReturn = taskSCHEDULER_SUSPENDED; + } + } + + return xReturn; + } + +#endif /* ( ( INCLUDE_xTaskGetSchedulerState == 1 ) || ( configUSE_TIMERS == 1 ) ) */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_MUTEXES == 1 ) + + BaseType_t xTaskPriorityInherit( TaskHandle_t const pxMutexHolder ) + { + TCB_t * const pxMutexHolderTCB = pxMutexHolder; + BaseType_t xReturn = pdFALSE; + + /* If the mutex was given back by an interrupt while the queue was + locked then the mutex holder might now be NULL. _RB_ Is this still + needed as interrupts can no longer use mutexes? */ + if( pxMutexHolder != NULL ) + { + /* If the holder of the mutex has a priority below the priority of + the task attempting to obtain the mutex then it will temporarily + inherit the priority of the task attempting to obtain the mutex. */ + if( pxMutexHolderTCB->uxPriority < pxCurrentTCB->uxPriority ) + { + /* Adjust the mutex holder state to account for its new + priority. Only reset the event list item value if the value is + not being used for anything else. */ + if( ( listGET_LIST_ITEM_VALUE( &( pxMutexHolderTCB->xEventListItem ) ) & taskEVENT_LIST_ITEM_VALUE_IN_USE ) == 0UL ) + { + listSET_LIST_ITEM_VALUE( &( pxMutexHolderTCB->xEventListItem ), ( TickType_t ) configMAX_PRIORITIES - ( TickType_t ) pxCurrentTCB->uxPriority ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* If the task being modified is in the ready state it will need + to be moved into a new list. */ + if( listIS_CONTAINED_WITHIN( &( pxReadyTasksLists[ pxMutexHolderTCB->uxPriority ] ), &( pxMutexHolderTCB->xStateListItem ) ) != pdFALSE ) + { + if( uxListRemove( &( pxMutexHolderTCB->xStateListItem ) ) == ( UBaseType_t ) 0 ) + { + /* It is known that the task is in its ready list so + there is no need to check again and the port level + reset macro can be called directly. */ + portRESET_READY_PRIORITY( pxMutexHolderTCB->uxPriority, uxTopReadyPriority ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* Inherit the priority before being moved into the new list. */ + pxMutexHolderTCB->uxPriority = pxCurrentTCB->uxPriority; + prvAddTaskToReadyList( pxMutexHolderTCB ); + } + else + { + /* Just inherit the priority. */ + pxMutexHolderTCB->uxPriority = pxCurrentTCB->uxPriority; + } + + traceTASK_PRIORITY_INHERIT( pxMutexHolderTCB, pxCurrentTCB->uxPriority ); + + /* Inheritance occurred. */ + xReturn = pdTRUE; + } + else + { + if( pxMutexHolderTCB->uxBasePriority < pxCurrentTCB->uxPriority ) + { + /* The base priority of the mutex holder is lower than the + priority of the task attempting to take the mutex, but the + current priority of the mutex holder is not lower than the + priority of the task attempting to take the mutex. + Therefore the mutex holder must have already inherited a + priority, but inheritance would have occurred if that had + not been the case. */ + xReturn = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + return xReturn; + } + +#endif /* configUSE_MUTEXES */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_MUTEXES == 1 ) + + BaseType_t xTaskPriorityDisinherit( TaskHandle_t const pxMutexHolder ) + { + TCB_t * const pxTCB = pxMutexHolder; + BaseType_t xReturn = pdFALSE; + + if( pxMutexHolder != NULL ) + { + /* A task can only have an inherited priority if it holds the mutex. + If the mutex is held by a task then it cannot be given from an + interrupt, and if a mutex is given by the holding task then it must + be the running state task. */ + configASSERT( pxTCB == pxCurrentTCB ); + configASSERT( pxTCB->uxMutexesHeld ); + ( pxTCB->uxMutexesHeld )--; + + /* Has the holder of the mutex inherited the priority of another + task? */ + if( pxTCB->uxPriority != pxTCB->uxBasePriority ) + { + /* Only disinherit if no other mutexes are held. */ + if( pxTCB->uxMutexesHeld == ( UBaseType_t ) 0 ) + { + /* A task can only have an inherited priority if it holds + the mutex. If the mutex is held by a task then it cannot be + given from an interrupt, and if a mutex is given by the + holding task then it must be the running state task. Remove + the holding task from the ready/delayed list. */ + if( uxListRemove( &( pxTCB->xStateListItem ) ) == ( UBaseType_t ) 0 ) + { + taskRESET_READY_PRIORITY( pxTCB->uxPriority ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* Disinherit the priority before adding the task into the + new ready list. */ + traceTASK_PRIORITY_DISINHERIT( pxTCB, pxTCB->uxBasePriority ); + pxTCB->uxPriority = pxTCB->uxBasePriority; + + /* Reset the event list item value. It cannot be in use for + any other purpose if this task is running, and it must be + running to give back the mutex. */ + listSET_LIST_ITEM_VALUE( &( pxTCB->xEventListItem ), ( TickType_t ) configMAX_PRIORITIES - ( TickType_t ) pxTCB->uxPriority ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ + prvAddTaskToReadyList( pxTCB ); + + /* Return true to indicate that a context switch is required. + This is only actually required in the corner case whereby + multiple mutexes were held and the mutexes were given back + in an order different to that in which they were taken. + If a context switch did not occur when the first mutex was + returned, even if a task was waiting on it, then a context + switch should occur when the last mutex is returned whether + a task is waiting on it or not. */ + xReturn = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + return xReturn; + } + +#endif /* configUSE_MUTEXES */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_MUTEXES == 1 ) + + void vTaskPriorityDisinheritAfterTimeout( TaskHandle_t const pxMutexHolder, UBaseType_t uxHighestPriorityWaitingTask ) + { + TCB_t * const pxTCB = pxMutexHolder; + UBaseType_t uxPriorityUsedOnEntry, uxPriorityToUse; + const UBaseType_t uxOnlyOneMutexHeld = ( UBaseType_t ) 1; + + if( pxMutexHolder != NULL ) + { + /* If pxMutexHolder is not NULL then the holder must hold at least + one mutex. */ + configASSERT( pxTCB->uxMutexesHeld ); + + /* Determine the priority to which the priority of the task that + holds the mutex should be set. This will be the greater of the + holding task's base priority and the priority of the highest + priority task that is waiting to obtain the mutex. */ + if( pxTCB->uxBasePriority < uxHighestPriorityWaitingTask ) + { + uxPriorityToUse = uxHighestPriorityWaitingTask; + } + else + { + uxPriorityToUse = pxTCB->uxBasePriority; + } + + /* Does the priority need to change? */ + if( pxTCB->uxPriority != uxPriorityToUse ) + { + /* Only disinherit if no other mutexes are held. This is a + simplification in the priority inheritance implementation. If + the task that holds the mutex is also holding other mutexes then + the other mutexes may have caused the priority inheritance. */ + if( pxTCB->uxMutexesHeld == uxOnlyOneMutexHeld ) + { + /* If a task has timed out because it already holds the + mutex it was trying to obtain then it cannot of inherited + its own priority. */ + configASSERT( pxTCB != pxCurrentTCB ); + + /* Disinherit the priority, remembering the previous + priority to facilitate determining the subject task's + state. */ + traceTASK_PRIORITY_DISINHERIT( pxTCB, pxTCB->uxBasePriority ); + uxPriorityUsedOnEntry = pxTCB->uxPriority; + pxTCB->uxPriority = uxPriorityToUse; + + /* Only reset the event list item value if the value is not + being used for anything else. */ + if( ( listGET_LIST_ITEM_VALUE( &( pxTCB->xEventListItem ) ) & taskEVENT_LIST_ITEM_VALUE_IN_USE ) == 0UL ) + { + listSET_LIST_ITEM_VALUE( &( pxTCB->xEventListItem ), ( TickType_t ) configMAX_PRIORITIES - ( TickType_t ) uxPriorityToUse ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* If the running task is not the task that holds the mutex + then the task that holds the mutex could be in either the + Ready, Blocked or Suspended states. Only remove the task + from its current state list if it is in the Ready state as + the task's priority is going to change and there is one + Ready list per priority. */ + if( listIS_CONTAINED_WITHIN( &( pxReadyTasksLists[ uxPriorityUsedOnEntry ] ), &( pxTCB->xStateListItem ) ) != pdFALSE ) + { + if( uxListRemove( &( pxTCB->xStateListItem ) ) == ( UBaseType_t ) 0 ) + { + /* It is known that the task is in its ready list so + there is no need to check again and the port level + reset macro can be called directly. */ + portRESET_READY_PRIORITY( pxTCB->uxPriority, uxTopReadyPriority ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + prvAddTaskToReadyList( pxTCB ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + +#endif /* configUSE_MUTEXES */ +/*-----------------------------------------------------------*/ + +#if ( portCRITICAL_NESTING_IN_TCB == 1 ) + + void vTaskEnterCritical( void ) + { + portDISABLE_INTERRUPTS(); + + if( xSchedulerRunning != pdFALSE ) + { + ( pxCurrentTCB->uxCriticalNesting )++; + + /* This is not the interrupt safe version of the enter critical + function so assert() if it is being called from an interrupt + context. Only API functions that end in "FromISR" can be used in an + interrupt. Only assert if the critical nesting count is 1 to + protect against recursive calls if the assert function also uses a + critical section. */ + if( pxCurrentTCB->uxCriticalNesting == 1 ) + { + portASSERT_IF_IN_ISR(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + +#endif /* portCRITICAL_NESTING_IN_TCB */ +/*-----------------------------------------------------------*/ + +#if ( portCRITICAL_NESTING_IN_TCB == 1 ) + + void vTaskExitCritical( void ) + { + if( xSchedulerRunning != pdFALSE ) + { + if( pxCurrentTCB->uxCriticalNesting > 0U ) + { + ( pxCurrentTCB->uxCriticalNesting )--; + + if( pxCurrentTCB->uxCriticalNesting == 0U ) + { + portENABLE_INTERRUPTS(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + +#endif /* portCRITICAL_NESTING_IN_TCB */ +/*-----------------------------------------------------------*/ + +#if ( ( configUSE_TRACE_FACILITY == 1 ) && ( configUSE_STATS_FORMATTING_FUNCTIONS > 0 ) ) + + static char *prvWriteNameToBuffer( char *pcBuffer, const char *pcTaskName ) + { + size_t x; + + /* Start by copying the entire string. */ + strcpy( pcBuffer, pcTaskName ); + + /* Pad the end of the string with spaces to ensure columns line up when + printed out. */ + for( x = strlen( pcBuffer ); x < ( size_t ) ( configMAX_TASK_NAME_LEN - 1 ); x++ ) + { + pcBuffer[ x ] = ' '; + } + + /* Terminate. */ + pcBuffer[ x ] = ( char ) 0x00; + + /* Return the new end of string. */ + return &( pcBuffer[ x ] ); + } + +#endif /* ( configUSE_TRACE_FACILITY == 1 ) && ( configUSE_STATS_FORMATTING_FUNCTIONS > 0 ) */ +/*-----------------------------------------------------------*/ + +#if ( ( configUSE_TRACE_FACILITY == 1 ) && ( configUSE_STATS_FORMATTING_FUNCTIONS > 0 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) ) + + void vTaskList( char * pcWriteBuffer ) + { + TaskStatus_t *pxTaskStatusArray; + UBaseType_t uxArraySize, x; + char cStatus; + + /* + * PLEASE NOTE: + * + * This function is provided for convenience only, and is used by many + * of the demo applications. Do not consider it to be part of the + * scheduler. + * + * vTaskList() calls uxTaskGetSystemState(), then formats part of the + * uxTaskGetSystemState() output into a human readable table that + * displays task names, states and stack usage. + * + * vTaskList() has a dependency on the sprintf() C library function that + * might bloat the code size, use a lot of stack, and provide different + * results on different platforms. An alternative, tiny, third party, + * and limited functionality implementation of sprintf() is provided in + * many of the FreeRTOS/Demo sub-directories in a file called + * printf-stdarg.c (note printf-stdarg.c does not provide a full + * snprintf() implementation!). + * + * It is recommended that production systems call uxTaskGetSystemState() + * directly to get access to raw stats data, rather than indirectly + * through a call to vTaskList(). + */ + + + /* Make sure the write buffer does not contain a string. */ + *pcWriteBuffer = ( char ) 0x00; + + /* Take a snapshot of the number of tasks in case it changes while this + function is executing. */ + uxArraySize = uxCurrentNumberOfTasks; + + /* Allocate an array index for each task. NOTE! if + configSUPPORT_DYNAMIC_ALLOCATION is set to 0 then pvPortMalloc() will + equate to NULL. */ + pxTaskStatusArray = pvPortMalloc( uxCurrentNumberOfTasks * sizeof( TaskStatus_t ) ); /*lint !e9079 All values returned by pvPortMalloc() have at least the alignment required by the MCU's stack and this allocation allocates a struct that has the alignment requirements of a pointer. */ + + if( pxTaskStatusArray != NULL ) + { + /* Generate the (binary) data. */ + uxArraySize = uxTaskGetSystemState( pxTaskStatusArray, uxArraySize, NULL ); + + /* Create a human readable table from the binary data. */ + for( x = 0; x < uxArraySize; x++ ) + { + switch( pxTaskStatusArray[ x ].eCurrentState ) + { + case eRunning: cStatus = tskRUNNING_CHAR; + break; + + case eReady: cStatus = tskREADY_CHAR; + break; + + case eBlocked: cStatus = tskBLOCKED_CHAR; + break; + + case eSuspended: cStatus = tskSUSPENDED_CHAR; + break; + + case eDeleted: cStatus = tskDELETED_CHAR; + break; + + case eInvalid: /* Fall through. */ + default: /* Should not get here, but it is included + to prevent static checking errors. */ + cStatus = ( char ) 0x00; + break; + } + + /* Write the task name to the string, padding with spaces so it + can be printed in tabular form more easily. */ + pcWriteBuffer = prvWriteNameToBuffer( pcWriteBuffer, pxTaskStatusArray[ x ].pcTaskName ); + + /* Write the rest of the string. */ + sprintf( pcWriteBuffer, "\t%c\t%u\t%u\t%u\r\n", cStatus, ( unsigned int ) pxTaskStatusArray[ x ].uxCurrentPriority, ( unsigned int ) pxTaskStatusArray[ x ].usStackHighWaterMark, ( unsigned int ) pxTaskStatusArray[ x ].xTaskNumber ); /*lint !e586 sprintf() allowed as this is compiled with many compilers and this is a utility function only - not part of the core kernel implementation. */ + pcWriteBuffer += strlen( pcWriteBuffer ); /*lint !e9016 Pointer arithmetic ok on char pointers especially as in this case where it best denotes the intent of the code. */ + } + + /* Free the array again. NOTE! If configSUPPORT_DYNAMIC_ALLOCATION + is 0 then vPortFree() will be #defined to nothing. */ + vPortFree( pxTaskStatusArray ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + +#endif /* ( ( configUSE_TRACE_FACILITY == 1 ) && ( configUSE_STATS_FORMATTING_FUNCTIONS > 0 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) ) */ +/*----------------------------------------------------------*/ + +#if ( ( configGENERATE_RUN_TIME_STATS == 1 ) && ( configUSE_STATS_FORMATTING_FUNCTIONS > 0 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) ) + + void vTaskGetRunTimeStats( char *pcWriteBuffer ) + { + TaskStatus_t *pxTaskStatusArray; + UBaseType_t uxArraySize, x; + uint32_t ulTotalTime, ulStatsAsPercentage; + + #if( configUSE_TRACE_FACILITY != 1 ) + { + #error configUSE_TRACE_FACILITY must also be set to 1 in FreeRTOSConfig.h to use vTaskGetRunTimeStats(). + } + #endif + + /* + * PLEASE NOTE: + * + * This function is provided for convenience only, and is used by many + * of the demo applications. Do not consider it to be part of the + * scheduler. + * + * vTaskGetRunTimeStats() calls uxTaskGetSystemState(), then formats part + * of the uxTaskGetSystemState() output into a human readable table that + * displays the amount of time each task has spent in the Running state + * in both absolute and percentage terms. + * + * vTaskGetRunTimeStats() has a dependency on the sprintf() C library + * function that might bloat the code size, use a lot of stack, and + * provide different results on different platforms. An alternative, + * tiny, third party, and limited functionality implementation of + * sprintf() is provided in many of the FreeRTOS/Demo sub-directories in + * a file called printf-stdarg.c (note printf-stdarg.c does not provide + * a full snprintf() implementation!). + * + * It is recommended that production systems call uxTaskGetSystemState() + * directly to get access to raw stats data, rather than indirectly + * through a call to vTaskGetRunTimeStats(). + */ + + /* Make sure the write buffer does not contain a string. */ + *pcWriteBuffer = ( char ) 0x00; + + /* Take a snapshot of the number of tasks in case it changes while this + function is executing. */ + uxArraySize = uxCurrentNumberOfTasks; + + /* Allocate an array index for each task. NOTE! If + configSUPPORT_DYNAMIC_ALLOCATION is set to 0 then pvPortMalloc() will + equate to NULL. */ + pxTaskStatusArray = pvPortMalloc( uxCurrentNumberOfTasks * sizeof( TaskStatus_t ) ); /*lint !e9079 All values returned by pvPortMalloc() have at least the alignment required by the MCU's stack and this allocation allocates a struct that has the alignment requirements of a pointer. */ + + if( pxTaskStatusArray != NULL ) + { + /* Generate the (binary) data. */ + uxArraySize = uxTaskGetSystemState( pxTaskStatusArray, uxArraySize, &ulTotalTime ); + + /* For percentage calculations. */ + ulTotalTime /= 100UL; + + /* Avoid divide by zero errors. */ + if( ulTotalTime > 0UL ) + { + /* Create a human readable table from the binary data. */ + for( x = 0; x < uxArraySize; x++ ) + { + /* What percentage of the total run time has the task used? + This will always be rounded down to the nearest integer. + ulTotalRunTimeDiv100 has already been divided by 100. */ + ulStatsAsPercentage = pxTaskStatusArray[ x ].ulRunTimeCounter / ulTotalTime; + + /* Write the task name to the string, padding with + spaces so it can be printed in tabular form more + easily. */ + pcWriteBuffer = prvWriteNameToBuffer( pcWriteBuffer, pxTaskStatusArray[ x ].pcTaskName ); + + if( ulStatsAsPercentage > 0UL ) + { + #ifdef portLU_PRINTF_SPECIFIER_REQUIRED + { + sprintf( pcWriteBuffer, "\t%lu\t\t%lu%%\r\n", pxTaskStatusArray[ x ].ulRunTimeCounter, ulStatsAsPercentage ); + } + #else + { + /* sizeof( int ) == sizeof( long ) so a smaller + printf() library can be used. */ + sprintf( pcWriteBuffer, "\t%u\t\t%u%%\r\n", ( unsigned int ) pxTaskStatusArray[ x ].ulRunTimeCounter, ( unsigned int ) ulStatsAsPercentage ); /*lint !e586 sprintf() allowed as this is compiled with many compilers and this is a utility function only - not part of the core kernel implementation. */ + } + #endif + } + else + { + /* If the percentage is zero here then the task has + consumed less than 1% of the total run time. */ + #ifdef portLU_PRINTF_SPECIFIER_REQUIRED + { + sprintf( pcWriteBuffer, "\t%lu\t\t<1%%\r\n", pxTaskStatusArray[ x ].ulRunTimeCounter ); + } + #else + { + /* sizeof( int ) == sizeof( long ) so a smaller + printf() library can be used. */ + sprintf( pcWriteBuffer, "\t%u\t\t<1%%\r\n", ( unsigned int ) pxTaskStatusArray[ x ].ulRunTimeCounter ); /*lint !e586 sprintf() allowed as this is compiled with many compilers and this is a utility function only - not part of the core kernel implementation. */ + } + #endif + } + + pcWriteBuffer += strlen( pcWriteBuffer ); /*lint !e9016 Pointer arithmetic ok on char pointers especially as in this case where it best denotes the intent of the code. */ + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* Free the array again. NOTE! If configSUPPORT_DYNAMIC_ALLOCATION + is 0 then vPortFree() will be #defined to nothing. */ + vPortFree( pxTaskStatusArray ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + +#endif /* ( ( configGENERATE_RUN_TIME_STATS == 1 ) && ( configUSE_STATS_FORMATTING_FUNCTIONS > 0 ) && ( configSUPPORT_STATIC_ALLOCATION == 1 ) ) */ +/*-----------------------------------------------------------*/ + +TickType_t uxTaskResetEventItemValue( void ) +{ +TickType_t uxReturn; + + uxReturn = listGET_LIST_ITEM_VALUE( &( pxCurrentTCB->xEventListItem ) ); + + /* Reset the event list item to its normal value - so it can be used with + queues and semaphores. */ + listSET_LIST_ITEM_VALUE( &( pxCurrentTCB->xEventListItem ), ( ( TickType_t ) configMAX_PRIORITIES - ( TickType_t ) pxCurrentTCB->uxPriority ) ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ + + return uxReturn; +} +/*-----------------------------------------------------------*/ + +#if ( configUSE_MUTEXES == 1 ) + + TaskHandle_t pvTaskIncrementMutexHeldCount( void ) + { + /* If xSemaphoreCreateMutex() is called before any tasks have been created + then pxCurrentTCB will be NULL. */ + if( pxCurrentTCB != NULL ) + { + ( pxCurrentTCB->uxMutexesHeld )++; + } + + return pxCurrentTCB; + } + +#endif /* configUSE_MUTEXES */ +/*-----------------------------------------------------------*/ + +#if( configUSE_TASK_NOTIFICATIONS == 1 ) + + uint32_t ulTaskNotifyTake( BaseType_t xClearCountOnExit, TickType_t xTicksToWait ) + { + uint32_t ulReturn; + + taskENTER_CRITICAL(); + { + /* Only block if the notification count is not already non-zero. */ + if( pxCurrentTCB->ulNotifiedValue == 0UL ) + { + /* Mark this task as waiting for a notification. */ + pxCurrentTCB->ucNotifyState = taskWAITING_NOTIFICATION; + + if( xTicksToWait > ( TickType_t ) 0 ) + { + prvAddCurrentTaskToDelayedList( xTicksToWait, pdTRUE ); + traceTASK_NOTIFY_TAKE_BLOCK(); + + /* All ports are written to allow a yield in a critical + section (some will yield immediately, others wait until the + critical section exits) - but it is not something that + application code should ever do. */ + portYIELD_WITHIN_API(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + taskEXIT_CRITICAL(); + + taskENTER_CRITICAL(); + { + traceTASK_NOTIFY_TAKE(); + ulReturn = pxCurrentTCB->ulNotifiedValue; + + if( ulReturn != 0UL ) + { + if( xClearCountOnExit != pdFALSE ) + { + pxCurrentTCB->ulNotifiedValue = 0UL; + } + else + { + pxCurrentTCB->ulNotifiedValue = ulReturn - ( uint32_t ) 1; + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + pxCurrentTCB->ucNotifyState = taskNOT_WAITING_NOTIFICATION; + } + taskEXIT_CRITICAL(); + + return ulReturn; + } + +#endif /* configUSE_TASK_NOTIFICATIONS */ +/*-----------------------------------------------------------*/ + +#if( configUSE_TASK_NOTIFICATIONS == 1 ) + + BaseType_t xTaskNotifyWait( uint32_t ulBitsToClearOnEntry, uint32_t ulBitsToClearOnExit, uint32_t *pulNotificationValue, TickType_t xTicksToWait ) + { + BaseType_t xReturn; + + taskENTER_CRITICAL(); + { + /* Only block if a notification is not already pending. */ + if( pxCurrentTCB->ucNotifyState != taskNOTIFICATION_RECEIVED ) + { + /* Clear bits in the task's notification value as bits may get + set by the notifying task or interrupt. This can be used to + clear the value to zero. */ + pxCurrentTCB->ulNotifiedValue &= ~ulBitsToClearOnEntry; + + /* Mark this task as waiting for a notification. */ + pxCurrentTCB->ucNotifyState = taskWAITING_NOTIFICATION; + + if( xTicksToWait > ( TickType_t ) 0 ) + { + prvAddCurrentTaskToDelayedList( xTicksToWait, pdTRUE ); + traceTASK_NOTIFY_WAIT_BLOCK(); + + /* All ports are written to allow a yield in a critical + section (some will yield immediately, others wait until the + critical section exits) - but it is not something that + application code should ever do. */ + portYIELD_WITHIN_API(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + taskEXIT_CRITICAL(); + + taskENTER_CRITICAL(); + { + traceTASK_NOTIFY_WAIT(); + + if( pulNotificationValue != NULL ) + { + /* Output the current notification value, which may or may not + have changed. */ + *pulNotificationValue = pxCurrentTCB->ulNotifiedValue; + } + + /* If ucNotifyValue is set then either the task never entered the + blocked state (because a notification was already pending) or the + task unblocked because of a notification. Otherwise the task + unblocked because of a timeout. */ + if( pxCurrentTCB->ucNotifyState != taskNOTIFICATION_RECEIVED ) + { + /* A notification was not received. */ + xReturn = pdFALSE; + } + else + { + /* A notification was already pending or a notification was + received while the task was waiting. */ + pxCurrentTCB->ulNotifiedValue &= ~ulBitsToClearOnExit; + xReturn = pdTRUE; + } + + pxCurrentTCB->ucNotifyState = taskNOT_WAITING_NOTIFICATION; + } + taskEXIT_CRITICAL(); + + return xReturn; + } + +#endif /* configUSE_TASK_NOTIFICATIONS */ +/*-----------------------------------------------------------*/ + +#if( configUSE_TASK_NOTIFICATIONS == 1 ) + + BaseType_t xTaskGenericNotify( TaskHandle_t xTaskToNotify, uint32_t ulValue, eNotifyAction eAction, uint32_t *pulPreviousNotificationValue ) + { + TCB_t * pxTCB; + BaseType_t xReturn = pdPASS; + uint8_t ucOriginalNotifyState; + + configASSERT( xTaskToNotify ); + pxTCB = xTaskToNotify; + + taskENTER_CRITICAL(); + { + if( pulPreviousNotificationValue != NULL ) + { + *pulPreviousNotificationValue = pxTCB->ulNotifiedValue; + } + + ucOriginalNotifyState = pxTCB->ucNotifyState; + + pxTCB->ucNotifyState = taskNOTIFICATION_RECEIVED; + + switch( eAction ) + { + case eSetBits : + pxTCB->ulNotifiedValue |= ulValue; + break; + + case eIncrement : + ( pxTCB->ulNotifiedValue )++; + break; + + case eSetValueWithOverwrite : + pxTCB->ulNotifiedValue = ulValue; + break; + + case eSetValueWithoutOverwrite : + if( ucOriginalNotifyState != taskNOTIFICATION_RECEIVED ) + { + pxTCB->ulNotifiedValue = ulValue; + } + else + { + /* The value could not be written to the task. */ + xReturn = pdFAIL; + } + break; + + case eNoAction: + /* The task is being notified without its notify value being + updated. */ + break; + + default: + /* Should not get here if all enums are handled. + Artificially force an assert by testing a value the + compiler can't assume is const. */ + configASSERT( pxTCB->ulNotifiedValue == ~0UL ); + + break; + } + + traceTASK_NOTIFY(); + + /* If the task is in the blocked state specifically to wait for a + notification then unblock it now. */ + if( ucOriginalNotifyState == taskWAITING_NOTIFICATION ) + { + ( void ) uxListRemove( &( pxTCB->xStateListItem ) ); + prvAddTaskToReadyList( pxTCB ); + + /* The task should not have been on an event list. */ + configASSERT( listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) == NULL ); + + #if( configUSE_TICKLESS_IDLE != 0 ) + { + /* If a task is blocked waiting for a notification then + xNextTaskUnblockTime might be set to the blocked task's time + out time. If the task is unblocked for a reason other than + a timeout xNextTaskUnblockTime is normally left unchanged, + because it will automatically get reset to a new value when + the tick count equals xNextTaskUnblockTime. However if + tickless idling is used it might be more important to enter + sleep mode at the earliest possible time - so reset + xNextTaskUnblockTime here to ensure it is updated at the + earliest possible time. */ + prvResetNextTaskUnblockTime(); + } + #endif + + if( pxTCB->uxPriority > pxCurrentTCB->uxPriority ) + { + /* The notified task has a priority above the currently + executing task so a yield is required. */ + taskYIELD_IF_USING_PREEMPTION(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + taskEXIT_CRITICAL(); + + return xReturn; + } + +#endif /* configUSE_TASK_NOTIFICATIONS */ +/*-----------------------------------------------------------*/ + +#if( configUSE_TASK_NOTIFICATIONS == 1 ) + + BaseType_t xTaskGenericNotifyFromISR( TaskHandle_t xTaskToNotify, uint32_t ulValue, eNotifyAction eAction, uint32_t *pulPreviousNotificationValue, BaseType_t *pxHigherPriorityTaskWoken ) + { + TCB_t * pxTCB; + uint8_t ucOriginalNotifyState; + BaseType_t xReturn = pdPASS; + UBaseType_t uxSavedInterruptStatus; + + configASSERT( xTaskToNotify ); + + /* RTOS ports that support interrupt nesting have the concept of a + maximum system call (or maximum API call) interrupt priority. + Interrupts that are above the maximum system call priority are keep + permanently enabled, even when the RTOS kernel is in a critical section, + but cannot make any calls to FreeRTOS API functions. If configASSERT() + is defined in FreeRTOSConfig.h then + portASSERT_IF_INTERRUPT_PRIORITY_INVALID() will result in an assertion + failure if a FreeRTOS API function is called from an interrupt that has + been assigned a priority above the configured maximum system call + priority. Only FreeRTOS functions that end in FromISR can be called + from interrupts that have been assigned a priority at or (logically) + below the maximum system call interrupt priority. FreeRTOS maintains a + separate interrupt safe API to ensure interrupt entry is as fast and as + simple as possible. More information (albeit Cortex-M specific) is + provided on the following link: + http://www.freertos.org/RTOS-Cortex-M3-M4.html */ + portASSERT_IF_INTERRUPT_PRIORITY_INVALID(); + + pxTCB = xTaskToNotify; + + uxSavedInterruptStatus = portSET_INTERRUPT_MASK_FROM_ISR(); + { + if( pulPreviousNotificationValue != NULL ) + { + *pulPreviousNotificationValue = pxTCB->ulNotifiedValue; + } + + ucOriginalNotifyState = pxTCB->ucNotifyState; + pxTCB->ucNotifyState = taskNOTIFICATION_RECEIVED; + + switch( eAction ) + { + case eSetBits : + pxTCB->ulNotifiedValue |= ulValue; + break; + + case eIncrement : + ( pxTCB->ulNotifiedValue )++; + break; + + case eSetValueWithOverwrite : + pxTCB->ulNotifiedValue = ulValue; + break; + + case eSetValueWithoutOverwrite : + if( ucOriginalNotifyState != taskNOTIFICATION_RECEIVED ) + { + pxTCB->ulNotifiedValue = ulValue; + } + else + { + /* The value could not be written to the task. */ + xReturn = pdFAIL; + } + break; + + case eNoAction : + /* The task is being notified without its notify value being + updated. */ + break; + + default: + /* Should not get here if all enums are handled. + Artificially force an assert by testing a value the + compiler can't assume is const. */ + configASSERT( pxTCB->ulNotifiedValue == ~0UL ); + break; + } + + traceTASK_NOTIFY_FROM_ISR(); + + /* If the task is in the blocked state specifically to wait for a + notification then unblock it now. */ + if( ucOriginalNotifyState == taskWAITING_NOTIFICATION ) + { + /* The task should not have been on an event list. */ + configASSERT( listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) == NULL ); + + if( uxSchedulerSuspended == ( UBaseType_t ) pdFALSE ) + { + ( void ) uxListRemove( &( pxTCB->xStateListItem ) ); + prvAddTaskToReadyList( pxTCB ); + } + else + { + /* The delayed and ready lists cannot be accessed, so hold + this task pending until the scheduler is resumed. */ + vListInsertEnd( &( xPendingReadyList ), &( pxTCB->xEventListItem ) ); + } + + if( pxTCB->uxPriority > pxCurrentTCB->uxPriority ) + { + /* The notified task has a priority above the currently + executing task so a yield is required. */ + if( pxHigherPriorityTaskWoken != NULL ) + { + *pxHigherPriorityTaskWoken = pdTRUE; + } + + /* Mark that a yield is pending in case the user is not + using the "xHigherPriorityTaskWoken" parameter to an ISR + safe FreeRTOS function. */ + xYieldPending = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + } + portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus ); + + return xReturn; + } + +#endif /* configUSE_TASK_NOTIFICATIONS */ +/*-----------------------------------------------------------*/ + +#if( configUSE_TASK_NOTIFICATIONS == 1 ) + + void vTaskNotifyGiveFromISR( TaskHandle_t xTaskToNotify, BaseType_t *pxHigherPriorityTaskWoken ) + { + TCB_t * pxTCB; + uint8_t ucOriginalNotifyState; + UBaseType_t uxSavedInterruptStatus; + + configASSERT( xTaskToNotify ); + + /* RTOS ports that support interrupt nesting have the concept of a + maximum system call (or maximum API call) interrupt priority. + Interrupts that are above the maximum system call priority are keep + permanently enabled, even when the RTOS kernel is in a critical section, + but cannot make any calls to FreeRTOS API functions. If configASSERT() + is defined in FreeRTOSConfig.h then + portASSERT_IF_INTERRUPT_PRIORITY_INVALID() will result in an assertion + failure if a FreeRTOS API function is called from an interrupt that has + been assigned a priority above the configured maximum system call + priority. Only FreeRTOS functions that end in FromISR can be called + from interrupts that have been assigned a priority at or (logically) + below the maximum system call interrupt priority. FreeRTOS maintains a + separate interrupt safe API to ensure interrupt entry is as fast and as + simple as possible. More information (albeit Cortex-M specific) is + provided on the following link: + http://www.freertos.org/RTOS-Cortex-M3-M4.html */ + portASSERT_IF_INTERRUPT_PRIORITY_INVALID(); + + pxTCB = xTaskToNotify; + + uxSavedInterruptStatus = portSET_INTERRUPT_MASK_FROM_ISR(); + { + ucOriginalNotifyState = pxTCB->ucNotifyState; + pxTCB->ucNotifyState = taskNOTIFICATION_RECEIVED; + + /* 'Giving' is equivalent to incrementing a count in a counting + semaphore. */ + ( pxTCB->ulNotifiedValue )++; + + traceTASK_NOTIFY_GIVE_FROM_ISR(); + + /* If the task is in the blocked state specifically to wait for a + notification then unblock it now. */ + if( ucOriginalNotifyState == taskWAITING_NOTIFICATION ) + { + /* The task should not have been on an event list. */ + configASSERT( listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) == NULL ); + + if( uxSchedulerSuspended == ( UBaseType_t ) pdFALSE ) + { + ( void ) uxListRemove( &( pxTCB->xStateListItem ) ); + prvAddTaskToReadyList( pxTCB ); + } + else + { + /* The delayed and ready lists cannot be accessed, so hold + this task pending until the scheduler is resumed. */ + vListInsertEnd( &( xPendingReadyList ), &( pxTCB->xEventListItem ) ); + } + + if( pxTCB->uxPriority > pxCurrentTCB->uxPriority ) + { + /* The notified task has a priority above the currently + executing task so a yield is required. */ + if( pxHigherPriorityTaskWoken != NULL ) + { + *pxHigherPriorityTaskWoken = pdTRUE; + } + + /* Mark that a yield is pending in case the user is not + using the "xHigherPriorityTaskWoken" parameter in an ISR + safe FreeRTOS function. */ + xYieldPending = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + } + portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus ); + } + +#endif /* configUSE_TASK_NOTIFICATIONS */ +/*-----------------------------------------------------------*/ + +#if( configUSE_TASK_NOTIFICATIONS == 1 ) + + BaseType_t xTaskNotifyStateClear( TaskHandle_t xTask ) + { + TCB_t *pxTCB; + BaseType_t xReturn; + + /* If null is passed in here then it is the calling task that is having + its notification state cleared. */ + pxTCB = prvGetTCBFromHandle( xTask ); + + taskENTER_CRITICAL(); + { + if( pxTCB->ucNotifyState == taskNOTIFICATION_RECEIVED ) + { + pxTCB->ucNotifyState = taskNOT_WAITING_NOTIFICATION; + xReturn = pdPASS; + } + else + { + xReturn = pdFAIL; + } + } + taskEXIT_CRITICAL(); + + return xReturn; + } + +#endif /* configUSE_TASK_NOTIFICATIONS */ +/*-----------------------------------------------------------*/ + +#if( configUSE_TASK_NOTIFICATIONS == 1 ) + + uint32_t ulTaskNotifyValueClear( TaskHandle_t xTask, uint32_t ulBitsToClear ) + { + TCB_t *pxTCB; + uint32_t ulReturn; + + /* If null is passed in here then it is the calling task that is having + its notification state cleared. */ + pxTCB = prvGetTCBFromHandle( xTask ); + + taskENTER_CRITICAL(); + { + /* Return the notification as it was before the bits were cleared, + then clear the bit mask. */ + ulReturn = pxCurrentTCB->ulNotifiedValue; + pxTCB->ulNotifiedValue &= ~ulBitsToClear; + } + taskEXIT_CRITICAL(); + + return ulReturn; + } + +#endif /* configUSE_TASK_NOTIFICATIONS */ +/*-----------------------------------------------------------*/ + +#if( ( configGENERATE_RUN_TIME_STATS == 1 ) && ( INCLUDE_xTaskGetIdleTaskHandle == 1 ) ) + + uint32_t ulTaskGetIdleRunTimeCounter( void ) + { + return xIdleTaskHandle->ulRunTimeCounter; + } + +#endif +/*-----------------------------------------------------------*/ + +static void prvAddCurrentTaskToDelayedList( TickType_t xTicksToWait, const BaseType_t xCanBlockIndefinitely ) +{ +TickType_t xTimeToWake; +const TickType_t xConstTickCount = xTickCount; + + #if( INCLUDE_xTaskAbortDelay == 1 ) + { + /* About to enter a delayed list, so ensure the ucDelayAborted flag is + reset to pdFALSE so it can be detected as having been set to pdTRUE + when the task leaves the Blocked state. */ + pxCurrentTCB->ucDelayAborted = pdFALSE; + } + #endif + + /* Remove the task from the ready list before adding it to the blocked list + as the same list item is used for both lists. */ + if( uxListRemove( &( pxCurrentTCB->xStateListItem ) ) == ( UBaseType_t ) 0 ) + { + /* The current task must be in a ready list, so there is no need to + check, and the port reset macro can be called directly. */ + portRESET_READY_PRIORITY( pxCurrentTCB->uxPriority, uxTopReadyPriority ); /*lint !e931 pxCurrentTCB cannot change as it is the calling task. pxCurrentTCB->uxPriority and uxTopReadyPriority cannot change as called with scheduler suspended or in a critical section. */ + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + #if ( INCLUDE_vTaskSuspend == 1 ) + { + if( ( xTicksToWait == portMAX_DELAY ) && ( xCanBlockIndefinitely != pdFALSE ) ) + { + /* Add the task to the suspended task list instead of a delayed task + list to ensure it is not woken by a timing event. It will block + indefinitely. */ + vListInsertEnd( &xSuspendedTaskList, &( pxCurrentTCB->xStateListItem ) ); + } + else + { + /* Calculate the time at which the task should be woken if the event + does not occur. This may overflow but this doesn't matter, the + kernel will manage it correctly. */ + xTimeToWake = xConstTickCount + xTicksToWait; + + /* The list item will be inserted in wake time order. */ + listSET_LIST_ITEM_VALUE( &( pxCurrentTCB->xStateListItem ), xTimeToWake ); + + if( xTimeToWake < xConstTickCount ) + { + /* Wake time has overflowed. Place this item in the overflow + list. */ + vListInsert( pxOverflowDelayedTaskList, &( pxCurrentTCB->xStateListItem ) ); + } + else + { + /* The wake time has not overflowed, so the current block list + is used. */ + vListInsert( pxDelayedTaskList, &( pxCurrentTCB->xStateListItem ) ); + + /* If the task entering the blocked state was placed at the + head of the list of blocked tasks then xNextTaskUnblockTime + needs to be updated too. */ + if( xTimeToWake < xNextTaskUnblockTime ) + { + xNextTaskUnblockTime = xTimeToWake; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + } + } + #else /* INCLUDE_vTaskSuspend */ + { + /* Calculate the time at which the task should be woken if the event + does not occur. This may overflow but this doesn't matter, the kernel + will manage it correctly. */ + xTimeToWake = xConstTickCount + xTicksToWait; + + /* The list item will be inserted in wake time order. */ + listSET_LIST_ITEM_VALUE( &( pxCurrentTCB->xStateListItem ), xTimeToWake ); + + if( xTimeToWake < xConstTickCount ) + { + /* Wake time has overflowed. Place this item in the overflow list. */ + vListInsert( pxOverflowDelayedTaskList, &( pxCurrentTCB->xStateListItem ) ); + } + else + { + /* The wake time has not overflowed, so the current block list is used. */ + vListInsert( pxDelayedTaskList, &( pxCurrentTCB->xStateListItem ) ); + + /* If the task entering the blocked state was placed at the head of the + list of blocked tasks then xNextTaskUnblockTime needs to be updated + too. */ + if( xTimeToWake < xNextTaskUnblockTime ) + { + xNextTaskUnblockTime = xTimeToWake; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + + /* Avoid compiler warning when INCLUDE_vTaskSuspend is not 1. */ + ( void ) xCanBlockIndefinitely; + } + #endif /* INCLUDE_vTaskSuspend */ +} + +/* Code below here allows additional code to be inserted into this source file, +especially where access to file scope functions and data is needed (for example +when performing module tests). */ + +#ifdef FREERTOS_MODULE_TEST + #include "tasks_test_access_functions.h" +#endif + + +#if( configINCLUDE_FREERTOS_TASK_C_ADDITIONS_H == 1 ) + + #include "freertos_tasks_c_additions.h" + + #ifdef FREERTOS_TASKS_C_ADDITIONS_INIT + static void freertos_tasks_c_additions_init( void ) + { + FREERTOS_TASKS_C_ADDITIONS_INIT(); + } + #endif + +#endif + + diff --git a/rtos/freertos/abstraction_layer_freertos/scr/timers.c b/rtos/freertos/abstraction_layer_freertos/scr/timers.c new file mode 100644 index 00000000..bfcc4eaf --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/scr/timers.c @@ -0,0 +1,1127 @@ +/* + * FreeRTOS Kernel V10.3.0 + * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * + * http://www.FreeRTOS.org + * http://aws.amazon.com/freertos + * + * 1 tab == 4 spaces! + */ + +/* Standard includes. */ +#include + +/* Defining MPU_WRAPPERS_INCLUDED_FROM_API_FILE prevents task.h from redefining +all the API functions to use the MPU wrappers. That should only be done when +task.h is included from an application file. */ +#define MPU_WRAPPERS_INCLUDED_FROM_API_FILE + +#include "FreeRTOS.h" +#include "task.h" +#include "queue.h" +#include "timers.h" + +#if ( INCLUDE_xTimerPendFunctionCall == 1 ) && ( configUSE_TIMERS == 0 ) + #error configUSE_TIMERS must be set to 1 to make the xTimerPendFunctionCall() function available. +#endif + +/* Lint e9021, e961 and e750 are suppressed as a MISRA exception justified +because the MPU ports require MPU_WRAPPERS_INCLUDED_FROM_API_FILE to be defined +for the header files above, but not in this file, in order to generate the +correct privileged Vs unprivileged linkage and placement. */ +#undef MPU_WRAPPERS_INCLUDED_FROM_API_FILE /*lint !e9021 !e961 !e750. */ + + +/* This entire source file will be skipped if the application is not configured +to include software timer functionality. This #if is closed at the very bottom +of this file. If you want to include software timer functionality then ensure +configUSE_TIMERS is set to 1 in FreeRTOSConfig.h. */ +#if ( configUSE_TIMERS == 1 ) + +/* Misc definitions. */ +#define tmrNO_DELAY ( TickType_t ) 0U + +/* The name assigned to the timer service task. This can be overridden by +defining trmTIMER_SERVICE_TASK_NAME in FreeRTOSConfig.h. */ +#ifndef configTIMER_SERVICE_TASK_NAME + #define configTIMER_SERVICE_TASK_NAME "Tmr Svc" +#endif + +/* Bit definitions used in the ucStatus member of a timer structure. */ +#define tmrSTATUS_IS_ACTIVE ( ( uint8_t ) 0x01 ) +#define tmrSTATUS_IS_STATICALLY_ALLOCATED ( ( uint8_t ) 0x02 ) +#define tmrSTATUS_IS_AUTORELOAD ( ( uint8_t ) 0x04 ) + +/* The definition of the timers themselves. */ +typedef struct tmrTimerControl /* The old naming convention is used to prevent breaking kernel aware debuggers. */ +{ + const char *pcTimerName; /*<< Text name. This is not used by the kernel, it is included simply to make debugging easier. */ /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + ListItem_t xTimerListItem; /*<< Standard linked list item as used by all kernel features for event management. */ + TickType_t xTimerPeriodInTicks;/*<< How quickly and often the timer expires. */ + void *pvTimerID; /*<< An ID to identify the timer. This allows the timer to be identified when the same callback is used for multiple timers. */ + TimerCallbackFunction_t pxCallbackFunction; /*<< The function that will be called when the timer expires. */ + #if( configUSE_TRACE_FACILITY == 1 ) + UBaseType_t uxTimerNumber; /*<< An ID assigned by trace tools such as FreeRTOS+Trace */ + #endif + uint8_t ucStatus; /*<< Holds bits to say if the timer was statically allocated or not, and if it is active or not. */ +} xTIMER; + +/* The old xTIMER name is maintained above then typedefed to the new Timer_t +name below to enable the use of older kernel aware debuggers. */ +typedef xTIMER Timer_t; + +/* The definition of messages that can be sent and received on the timer queue. +Two types of message can be queued - messages that manipulate a software timer, +and messages that request the execution of a non-timer related callback. The +two message types are defined in two separate structures, xTimerParametersType +and xCallbackParametersType respectively. */ +typedef struct tmrTimerParameters +{ + TickType_t xMessageValue; /*<< An optional value used by a subset of commands, for example, when changing the period of a timer. */ + Timer_t * pxTimer; /*<< The timer to which the command will be applied. */ +} TimerParameter_t; + + +typedef struct tmrCallbackParameters +{ + PendedFunction_t pxCallbackFunction; /* << The callback function to execute. */ + void *pvParameter1; /* << The value that will be used as the callback functions first parameter. */ + uint32_t ulParameter2; /* << The value that will be used as the callback functions second parameter. */ +} CallbackParameters_t; + +/* The structure that contains the two message types, along with an identifier +that is used to determine which message type is valid. */ +typedef struct tmrTimerQueueMessage +{ + BaseType_t xMessageID; /*<< The command being sent to the timer service task. */ + union + { + TimerParameter_t xTimerParameters; + + /* Don't include xCallbackParameters if it is not going to be used as + it makes the structure (and therefore the timer queue) larger. */ + #if ( INCLUDE_xTimerPendFunctionCall == 1 ) + CallbackParameters_t xCallbackParameters; + #endif /* INCLUDE_xTimerPendFunctionCall */ + } u; +} DaemonTaskMessage_t; + +/*lint -save -e956 A manual analysis and inspection has been used to determine +which static variables must be declared volatile. */ + +/* The list in which active timers are stored. Timers are referenced in expire +time order, with the nearest expiry time at the front of the list. Only the +timer service task is allowed to access these lists. +xActiveTimerList1 and xActiveTimerList2 could be at function scope but that +breaks some kernel aware debuggers, and debuggers that reply on removing the +static qualifier. */ +PRIVILEGED_DATA static List_t xActiveTimerList1; +PRIVILEGED_DATA static List_t xActiveTimerList2; +PRIVILEGED_DATA static List_t *pxCurrentTimerList; +PRIVILEGED_DATA static List_t *pxOverflowTimerList; + +/* A queue that is used to send commands to the timer service task. */ +PRIVILEGED_DATA static QueueHandle_t xTimerQueue = NULL; +PRIVILEGED_DATA static TaskHandle_t xTimerTaskHandle = NULL; + +/*lint -restore */ + +/*-----------------------------------------------------------*/ + +#if( configSUPPORT_STATIC_ALLOCATION == 1 ) + + /* If static allocation is supported then the application must provide the + following callback function - which enables the application to optionally + provide the memory that will be used by the timer task as the task's stack + and TCB. */ + extern void vApplicationGetTimerTaskMemory( StaticTask_t **ppxTimerTaskTCBBuffer, StackType_t **ppxTimerTaskStackBuffer, uint32_t *pulTimerTaskStackSize ); + +#endif + +/* + * Initialise the infrastructure used by the timer service task if it has not + * been initialised already. + */ +static void prvCheckForValidListAndQueue( void ) PRIVILEGED_FUNCTION; + +/* + * The timer service task (daemon). Timer functionality is controlled by this + * task. Other tasks communicate with the timer service task using the + * xTimerQueue queue. + */ +static portTASK_FUNCTION_PROTO( prvTimerTask, pvParameters ) PRIVILEGED_FUNCTION; + +/* + * Called by the timer service task to interpret and process a command it + * received on the timer queue. + */ +static void prvProcessReceivedCommands( void ) PRIVILEGED_FUNCTION; + +/* + * Insert the timer into either xActiveTimerList1, or xActiveTimerList2, + * depending on if the expire time causes a timer counter overflow. + */ +static BaseType_t prvInsertTimerInActiveList( Timer_t * const pxTimer, const TickType_t xNextExpiryTime, const TickType_t xTimeNow, const TickType_t xCommandTime ) PRIVILEGED_FUNCTION; + +/* + * An active timer has reached its expire time. Reload the timer if it is an + * auto-reload timer, then call its callback. + */ +static void prvProcessExpiredTimer( const TickType_t xNextExpireTime, const TickType_t xTimeNow ) PRIVILEGED_FUNCTION; + +/* + * The tick count has overflowed. Switch the timer lists after ensuring the + * current timer list does not still reference some timers. + */ +static void prvSwitchTimerLists( void ) PRIVILEGED_FUNCTION; + +/* + * Obtain the current tick count, setting *pxTimerListsWereSwitched to pdTRUE + * if a tick count overflow occurred since prvSampleTimeNow() was last called. + */ +static TickType_t prvSampleTimeNow( BaseType_t * const pxTimerListsWereSwitched ) PRIVILEGED_FUNCTION; + +/* + * If the timer list contains any active timers then return the expire time of + * the timer that will expire first and set *pxListWasEmpty to false. If the + * timer list does not contain any timers then return 0 and set *pxListWasEmpty + * to pdTRUE. + */ +static TickType_t prvGetNextExpireTime( BaseType_t * const pxListWasEmpty ) PRIVILEGED_FUNCTION; + +/* + * If a timer has expired, process it. Otherwise, block the timer service task + * until either a timer does expire or a command is received. + */ +static void prvProcessTimerOrBlockTask( const TickType_t xNextExpireTime, BaseType_t xListWasEmpty ) PRIVILEGED_FUNCTION; + +/* + * Called after a Timer_t structure has been allocated either statically or + * dynamically to fill in the structure's members. + */ +static void prvInitialiseNewTimer( const char * const pcTimerName, /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + const TickType_t xTimerPeriodInTicks, + const UBaseType_t uxAutoReload, + void * const pvTimerID, + TimerCallbackFunction_t pxCallbackFunction, + Timer_t *pxNewTimer ) PRIVILEGED_FUNCTION; +/*-----------------------------------------------------------*/ + +BaseType_t xTimerCreateTimerTask( void ) +{ +BaseType_t xReturn = pdFAIL; + + /* This function is called when the scheduler is started if + configUSE_TIMERS is set to 1. Check that the infrastructure used by the + timer service task has been created/initialised. If timers have already + been created then the initialisation will already have been performed. */ + prvCheckForValidListAndQueue(); + + if( xTimerQueue != NULL ) + { + #if( configSUPPORT_STATIC_ALLOCATION == 1 ) + { + StaticTask_t *pxTimerTaskTCBBuffer = NULL; + StackType_t *pxTimerTaskStackBuffer = NULL; + uint32_t ulTimerTaskStackSize; + + vApplicationGetTimerTaskMemory( &pxTimerTaskTCBBuffer, &pxTimerTaskStackBuffer, &ulTimerTaskStackSize ); + xTimerTaskHandle = xTaskCreateStatic( prvTimerTask, + configTIMER_SERVICE_TASK_NAME, + ulTimerTaskStackSize, + NULL, + ( ( UBaseType_t ) configTIMER_TASK_PRIORITY ) | portPRIVILEGE_BIT, + pxTimerTaskStackBuffer, + pxTimerTaskTCBBuffer ); + + if( xTimerTaskHandle != NULL ) + { + xReturn = pdPASS; + } + } + #else + { + xReturn = xTaskCreate( prvTimerTask, + configTIMER_SERVICE_TASK_NAME, + configTIMER_TASK_STACK_DEPTH, + NULL, + ( ( UBaseType_t ) configTIMER_TASK_PRIORITY ) | portPRIVILEGE_BIT, + &xTimerTaskHandle ); + } + #endif /* configSUPPORT_STATIC_ALLOCATION */ + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + configASSERT( xReturn ); + return xReturn; +} +/*-----------------------------------------------------------*/ + +#if( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) + + TimerHandle_t xTimerCreate( const char * const pcTimerName, /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + const TickType_t xTimerPeriodInTicks, + const UBaseType_t uxAutoReload, + void * const pvTimerID, + TimerCallbackFunction_t pxCallbackFunction ) + { + Timer_t *pxNewTimer; + + pxNewTimer = ( Timer_t * ) pvPortMalloc( sizeof( Timer_t ) ); /*lint !e9087 !e9079 All values returned by pvPortMalloc() have at least the alignment required by the MCU's stack, and the first member of Timer_t is always a pointer to the timer's mame. */ + + if( pxNewTimer != NULL ) + { + /* Status is thus far zero as the timer is not created statically + and has not been started. The auto-reload bit may get set in + prvInitialiseNewTimer. */ + pxNewTimer->ucStatus = 0x00; + prvInitialiseNewTimer( pcTimerName, xTimerPeriodInTicks, uxAutoReload, pvTimerID, pxCallbackFunction, pxNewTimer ); + } + + return pxNewTimer; + } + +#endif /* configSUPPORT_DYNAMIC_ALLOCATION */ +/*-----------------------------------------------------------*/ + +#if( configSUPPORT_STATIC_ALLOCATION == 1 ) + + TimerHandle_t xTimerCreateStatic( const char * const pcTimerName, /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + const TickType_t xTimerPeriodInTicks, + const UBaseType_t uxAutoReload, + void * const pvTimerID, + TimerCallbackFunction_t pxCallbackFunction, + StaticTimer_t *pxTimerBuffer ) + { + Timer_t *pxNewTimer; + + #if( configASSERT_DEFINED == 1 ) + { + /* Sanity check that the size of the structure used to declare a + variable of type StaticTimer_t equals the size of the real timer + structure. */ + volatile size_t xSize = sizeof( StaticTimer_t ); + configASSERT( xSize == sizeof( Timer_t ) ); + ( void ) xSize; /* Keeps lint quiet when configASSERT() is not defined. */ + } + #endif /* configASSERT_DEFINED */ + + /* A pointer to a StaticTimer_t structure MUST be provided, use it. */ + configASSERT( pxTimerBuffer ); + pxNewTimer = ( Timer_t * ) pxTimerBuffer; /*lint !e740 !e9087 StaticTimer_t is a pointer to a Timer_t, so guaranteed to be aligned and sized correctly (checked by an assert()), so this is safe. */ + + if( pxNewTimer != NULL ) + { + /* Timers can be created statically or dynamically so note this + timer was created statically in case it is later deleted. The + auto-reload bit may get set in prvInitialiseNewTimer(). */ + pxNewTimer->ucStatus = tmrSTATUS_IS_STATICALLY_ALLOCATED; + + prvInitialiseNewTimer( pcTimerName, xTimerPeriodInTicks, uxAutoReload, pvTimerID, pxCallbackFunction, pxNewTimer ); + } + + return pxNewTimer; + } + +#endif /* configSUPPORT_STATIC_ALLOCATION */ +/*-----------------------------------------------------------*/ + +static void prvInitialiseNewTimer( const char * const pcTimerName, /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + const TickType_t xTimerPeriodInTicks, + const UBaseType_t uxAutoReload, + void * const pvTimerID, + TimerCallbackFunction_t pxCallbackFunction, + Timer_t *pxNewTimer ) +{ + /* 0 is not a valid value for xTimerPeriodInTicks. */ + configASSERT( ( xTimerPeriodInTicks > 0 ) ); + + if( pxNewTimer != NULL ) + { + /* Ensure the infrastructure used by the timer service task has been + created/initialised. */ + prvCheckForValidListAndQueue(); + + /* Initialise the timer structure members using the function + parameters. */ + pxNewTimer->pcTimerName = pcTimerName; + pxNewTimer->xTimerPeriodInTicks = xTimerPeriodInTicks; + pxNewTimer->pvTimerID = pvTimerID; + pxNewTimer->pxCallbackFunction = pxCallbackFunction; + vListInitialiseItem( &( pxNewTimer->xTimerListItem ) ); + if( uxAutoReload != pdFALSE ) + { + pxNewTimer->ucStatus |= tmrSTATUS_IS_AUTORELOAD; + } + traceTIMER_CREATE( pxNewTimer ); + } +} +/*-----------------------------------------------------------*/ + +BaseType_t xTimerGenericCommand( TimerHandle_t xTimer, const BaseType_t xCommandID, const TickType_t xOptionalValue, BaseType_t * const pxHigherPriorityTaskWoken, const TickType_t xTicksToWait ) +{ +BaseType_t xReturn = pdFAIL; +DaemonTaskMessage_t xMessage; + + configASSERT( xTimer ); + + /* Send a message to the timer service task to perform a particular action + on a particular timer definition. */ + if( xTimerQueue != NULL ) + { + /* Send a command to the timer service task to start the xTimer timer. */ + xMessage.xMessageID = xCommandID; + xMessage.u.xTimerParameters.xMessageValue = xOptionalValue; + xMessage.u.xTimerParameters.pxTimer = xTimer; + + if( xCommandID < tmrFIRST_FROM_ISR_COMMAND ) + { + if( xTaskGetSchedulerState() == taskSCHEDULER_RUNNING ) + { + xReturn = xQueueSendToBack( xTimerQueue, &xMessage, xTicksToWait ); + } + else + { + xReturn = xQueueSendToBack( xTimerQueue, &xMessage, tmrNO_DELAY ); + } + } + else + { + xReturn = xQueueSendToBackFromISR( xTimerQueue, &xMessage, pxHigherPriorityTaskWoken ); + } + + traceTIMER_COMMAND_SEND( xTimer, xCommandID, xOptionalValue, xReturn ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + return xReturn; +} +/*-----------------------------------------------------------*/ + +TaskHandle_t xTimerGetTimerDaemonTaskHandle( void ) +{ + /* If xTimerGetTimerDaemonTaskHandle() is called before the scheduler has been + started, then xTimerTaskHandle will be NULL. */ + configASSERT( ( xTimerTaskHandle != NULL ) ); + return xTimerTaskHandle; +} +/*-----------------------------------------------------------*/ + +TickType_t xTimerGetPeriod( TimerHandle_t xTimer ) +{ +Timer_t *pxTimer = xTimer; + + configASSERT( xTimer ); + return pxTimer->xTimerPeriodInTicks; +} +/*-----------------------------------------------------------*/ + +void vTimerSetReloadMode( TimerHandle_t xTimer, const UBaseType_t uxAutoReload ) +{ +Timer_t * pxTimer = xTimer; + + configASSERT( xTimer ); + taskENTER_CRITICAL(); + { + if( uxAutoReload != pdFALSE ) + { + pxTimer->ucStatus |= tmrSTATUS_IS_AUTORELOAD; + } + else + { + pxTimer->ucStatus &= ~tmrSTATUS_IS_AUTORELOAD; + } + } + taskEXIT_CRITICAL(); +} +/*-----------------------------------------------------------*/ + +UBaseType_t uxTimerGetReloadMode( TimerHandle_t xTimer ) +{ +Timer_t * pxTimer = xTimer; +UBaseType_t uxReturn; + + configASSERT( xTimer ); + taskENTER_CRITICAL(); + { + if( ( pxTimer->ucStatus & tmrSTATUS_IS_AUTORELOAD ) == 0 ) + { + /* Not an auto-reload timer. */ + uxReturn = ( UBaseType_t ) pdFALSE; + } + else + { + /* Is an auto-reload timer. */ + uxReturn = ( UBaseType_t ) pdTRUE; + } + } + taskEXIT_CRITICAL(); + + return uxReturn; +} +/*-----------------------------------------------------------*/ + +TickType_t xTimerGetExpiryTime( TimerHandle_t xTimer ) +{ +Timer_t * pxTimer = xTimer; +TickType_t xReturn; + + configASSERT( xTimer ); + xReturn = listGET_LIST_ITEM_VALUE( &( pxTimer->xTimerListItem ) ); + return xReturn; +} +/*-----------------------------------------------------------*/ + +const char * pcTimerGetName( TimerHandle_t xTimer ) /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ +{ +Timer_t *pxTimer = xTimer; + + configASSERT( xTimer ); + return pxTimer->pcTimerName; +} +/*-----------------------------------------------------------*/ + +static void prvProcessExpiredTimer( const TickType_t xNextExpireTime, const TickType_t xTimeNow ) +{ +BaseType_t xResult; +Timer_t * const pxTimer = ( Timer_t * ) listGET_OWNER_OF_HEAD_ENTRY( pxCurrentTimerList ); /*lint !e9087 !e9079 void * is used as this macro is used with tasks and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ + + /* Remove the timer from the list of active timers. A check has already + been performed to ensure the list is not empty. */ + ( void ) uxListRemove( &( pxTimer->xTimerListItem ) ); + traceTIMER_EXPIRED( pxTimer ); + + /* If the timer is an auto-reload timer then calculate the next + expiry time and re-insert the timer in the list of active timers. */ + if( ( pxTimer->ucStatus & tmrSTATUS_IS_AUTORELOAD ) != 0 ) + { + /* The timer is inserted into a list using a time relative to anything + other than the current time. It will therefore be inserted into the + correct list relative to the time this task thinks it is now. */ + if( prvInsertTimerInActiveList( pxTimer, ( xNextExpireTime + pxTimer->xTimerPeriodInTicks ), xTimeNow, xNextExpireTime ) != pdFALSE ) + { + /* The timer expired before it was added to the active timer + list. Reload it now. */ + xResult = xTimerGenericCommand( pxTimer, tmrCOMMAND_START_DONT_TRACE, xNextExpireTime, NULL, tmrNO_DELAY ); + configASSERT( xResult ); + ( void ) xResult; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + pxTimer->ucStatus &= ~tmrSTATUS_IS_ACTIVE; + mtCOVERAGE_TEST_MARKER(); + } + + /* Call the timer callback. */ + pxTimer->pxCallbackFunction( ( TimerHandle_t ) pxTimer ); +} +/*-----------------------------------------------------------*/ + +static portTASK_FUNCTION( prvTimerTask, pvParameters ) +{ +TickType_t xNextExpireTime; +BaseType_t xListWasEmpty; + + /* Just to avoid compiler warnings. */ + ( void ) pvParameters; + + #if( configUSE_DAEMON_TASK_STARTUP_HOOK == 1 ) + { + extern void vApplicationDaemonTaskStartupHook( void ); + + /* Allow the application writer to execute some code in the context of + this task at the point the task starts executing. This is useful if the + application includes initialisation code that would benefit from + executing after the scheduler has been started. */ + vApplicationDaemonTaskStartupHook(); + } + #endif /* configUSE_DAEMON_TASK_STARTUP_HOOK */ + + for( ;; ) + { + /* Query the timers list to see if it contains any timers, and if so, + obtain the time at which the next timer will expire. */ + xNextExpireTime = prvGetNextExpireTime( &xListWasEmpty ); + + /* If a timer has expired, process it. Otherwise, block this task + until either a timer does expire, or a command is received. */ + prvProcessTimerOrBlockTask( xNextExpireTime, xListWasEmpty ); + + /* Empty the command queue. */ + prvProcessReceivedCommands(); + } +} +/*-----------------------------------------------------------*/ + +static void prvProcessTimerOrBlockTask( const TickType_t xNextExpireTime, BaseType_t xListWasEmpty ) +{ +TickType_t xTimeNow; +BaseType_t xTimerListsWereSwitched; + + vTaskSuspendAll(); + { + /* Obtain the time now to make an assessment as to whether the timer + has expired or not. If obtaining the time causes the lists to switch + then don't process this timer as any timers that remained in the list + when the lists were switched will have been processed within the + prvSampleTimeNow() function. */ + xTimeNow = prvSampleTimeNow( &xTimerListsWereSwitched ); + if( xTimerListsWereSwitched == pdFALSE ) + { + /* The tick count has not overflowed, has the timer expired? */ + if( ( xListWasEmpty == pdFALSE ) && ( xNextExpireTime <= xTimeNow ) ) + { + ( void ) xTaskResumeAll(); + prvProcessExpiredTimer( xNextExpireTime, xTimeNow ); + } + else + { + /* The tick count has not overflowed, and the next expire + time has not been reached yet. This task should therefore + block to wait for the next expire time or a command to be + received - whichever comes first. The following line cannot + be reached unless xNextExpireTime > xTimeNow, except in the + case when the current timer list is empty. */ + if( xListWasEmpty != pdFALSE ) + { + /* The current timer list is empty - is the overflow list + also empty? */ + xListWasEmpty = listLIST_IS_EMPTY( pxOverflowTimerList ); + } + + vQueueWaitForMessageRestricted( xTimerQueue, ( xNextExpireTime - xTimeNow ), xListWasEmpty ); + + if( xTaskResumeAll() == pdFALSE ) + { + /* Yield to wait for either a command to arrive, or the + block time to expire. If a command arrived between the + critical section being exited and this yield then the yield + will not cause the task to block. */ + portYIELD_WITHIN_API(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + } + else + { + ( void ) xTaskResumeAll(); + } + } +} +/*-----------------------------------------------------------*/ + +static TickType_t prvGetNextExpireTime( BaseType_t * const pxListWasEmpty ) +{ +TickType_t xNextExpireTime; + + /* Timers are listed in expiry time order, with the head of the list + referencing the task that will expire first. Obtain the time at which + the timer with the nearest expiry time will expire. If there are no + active timers then just set the next expire time to 0. That will cause + this task to unblock when the tick count overflows, at which point the + timer lists will be switched and the next expiry time can be + re-assessed. */ + *pxListWasEmpty = listLIST_IS_EMPTY( pxCurrentTimerList ); + if( *pxListWasEmpty == pdFALSE ) + { + xNextExpireTime = listGET_ITEM_VALUE_OF_HEAD_ENTRY( pxCurrentTimerList ); + } + else + { + /* Ensure the task unblocks when the tick count rolls over. */ + xNextExpireTime = ( TickType_t ) 0U; + } + + return xNextExpireTime; +} +/*-----------------------------------------------------------*/ + +static TickType_t prvSampleTimeNow( BaseType_t * const pxTimerListsWereSwitched ) +{ +TickType_t xTimeNow; +PRIVILEGED_DATA static TickType_t xLastTime = ( TickType_t ) 0U; /*lint !e956 Variable is only accessible to one task. */ + + xTimeNow = xTaskGetTickCount(); + + if( xTimeNow < xLastTime ) + { + prvSwitchTimerLists(); + *pxTimerListsWereSwitched = pdTRUE; + } + else + { + *pxTimerListsWereSwitched = pdFALSE; + } + + xLastTime = xTimeNow; + + return xTimeNow; +} +/*-----------------------------------------------------------*/ + +static BaseType_t prvInsertTimerInActiveList( Timer_t * const pxTimer, const TickType_t xNextExpiryTime, const TickType_t xTimeNow, const TickType_t xCommandTime ) +{ +BaseType_t xProcessTimerNow = pdFALSE; + + listSET_LIST_ITEM_VALUE( &( pxTimer->xTimerListItem ), xNextExpiryTime ); + listSET_LIST_ITEM_OWNER( &( pxTimer->xTimerListItem ), pxTimer ); + + if( xNextExpiryTime <= xTimeNow ) + { + /* Has the expiry time elapsed between the command to start/reset a + timer was issued, and the time the command was processed? */ + if( ( ( TickType_t ) ( xTimeNow - xCommandTime ) ) >= pxTimer->xTimerPeriodInTicks ) /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ + { + /* The time between a command being issued and the command being + processed actually exceeds the timers period. */ + xProcessTimerNow = pdTRUE; + } + else + { + vListInsert( pxOverflowTimerList, &( pxTimer->xTimerListItem ) ); + } + } + else + { + if( ( xTimeNow < xCommandTime ) && ( xNextExpiryTime >= xCommandTime ) ) + { + /* If, since the command was issued, the tick count has overflowed + but the expiry time has not, then the timer must have already passed + its expiry time and should be processed immediately. */ + xProcessTimerNow = pdTRUE; + } + else + { + vListInsert( pxCurrentTimerList, &( pxTimer->xTimerListItem ) ); + } + } + + return xProcessTimerNow; +} +/*-----------------------------------------------------------*/ + +static void prvProcessReceivedCommands( void ) +{ +DaemonTaskMessage_t xMessage; +Timer_t *pxTimer; +BaseType_t xTimerListsWereSwitched, xResult; +TickType_t xTimeNow; + + while( xQueueReceive( xTimerQueue, &xMessage, tmrNO_DELAY ) != pdFAIL ) /*lint !e603 xMessage does not have to be initialised as it is passed out, not in, and it is not used unless xQueueReceive() returns pdTRUE. */ + { + #if ( INCLUDE_xTimerPendFunctionCall == 1 ) + { + /* Negative commands are pended function calls rather than timer + commands. */ + if( xMessage.xMessageID < ( BaseType_t ) 0 ) + { + const CallbackParameters_t * const pxCallback = &( xMessage.u.xCallbackParameters ); + + /* The timer uses the xCallbackParameters member to request a + callback be executed. Check the callback is not NULL. */ + configASSERT( pxCallback ); + + /* Call the function. */ + pxCallback->pxCallbackFunction( pxCallback->pvParameter1, pxCallback->ulParameter2 ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + #endif /* INCLUDE_xTimerPendFunctionCall */ + + /* Commands that are positive are timer commands rather than pended + function calls. */ + if( xMessage.xMessageID >= ( BaseType_t ) 0 ) + { + /* The messages uses the xTimerParameters member to work on a + software timer. */ + pxTimer = xMessage.u.xTimerParameters.pxTimer; + + if( listIS_CONTAINED_WITHIN( NULL, &( pxTimer->xTimerListItem ) ) == pdFALSE ) /*lint !e961. The cast is only redundant when NULL is passed into the macro. */ + { + /* The timer is in a list, remove it. */ + ( void ) uxListRemove( &( pxTimer->xTimerListItem ) ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + traceTIMER_COMMAND_RECEIVED( pxTimer, xMessage.xMessageID, xMessage.u.xTimerParameters.xMessageValue ); + + /* In this case the xTimerListsWereSwitched parameter is not used, but + it must be present in the function call. prvSampleTimeNow() must be + called after the message is received from xTimerQueue so there is no + possibility of a higher priority task adding a message to the message + queue with a time that is ahead of the timer daemon task (because it + pre-empted the timer daemon task after the xTimeNow value was set). */ + xTimeNow = prvSampleTimeNow( &xTimerListsWereSwitched ); + + switch( xMessage.xMessageID ) + { + case tmrCOMMAND_START : + case tmrCOMMAND_START_FROM_ISR : + case tmrCOMMAND_RESET : + case tmrCOMMAND_RESET_FROM_ISR : + case tmrCOMMAND_START_DONT_TRACE : + /* Start or restart a timer. */ + pxTimer->ucStatus |= tmrSTATUS_IS_ACTIVE; + if( prvInsertTimerInActiveList( pxTimer, xMessage.u.xTimerParameters.xMessageValue + pxTimer->xTimerPeriodInTicks, xTimeNow, xMessage.u.xTimerParameters.xMessageValue ) != pdFALSE ) + { + /* The timer expired before it was added to the active + timer list. Process it now. */ + pxTimer->pxCallbackFunction( ( TimerHandle_t ) pxTimer ); + traceTIMER_EXPIRED( pxTimer ); + + if( ( pxTimer->ucStatus & tmrSTATUS_IS_AUTORELOAD ) != 0 ) + { + xResult = xTimerGenericCommand( pxTimer, tmrCOMMAND_START_DONT_TRACE, xMessage.u.xTimerParameters.xMessageValue + pxTimer->xTimerPeriodInTicks, NULL, tmrNO_DELAY ); + configASSERT( xResult ); + ( void ) xResult; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + break; + + case tmrCOMMAND_STOP : + case tmrCOMMAND_STOP_FROM_ISR : + /* The timer has already been removed from the active list. */ + pxTimer->ucStatus &= ~tmrSTATUS_IS_ACTIVE; + break; + + case tmrCOMMAND_CHANGE_PERIOD : + case tmrCOMMAND_CHANGE_PERIOD_FROM_ISR : + pxTimer->ucStatus |= tmrSTATUS_IS_ACTIVE; + pxTimer->xTimerPeriodInTicks = xMessage.u.xTimerParameters.xMessageValue; + configASSERT( ( pxTimer->xTimerPeriodInTicks > 0 ) ); + + /* The new period does not really have a reference, and can + be longer or shorter than the old one. The command time is + therefore set to the current time, and as the period cannot + be zero the next expiry time can only be in the future, + meaning (unlike for the xTimerStart() case above) there is + no fail case that needs to be handled here. */ + ( void ) prvInsertTimerInActiveList( pxTimer, ( xTimeNow + pxTimer->xTimerPeriodInTicks ), xTimeNow, xTimeNow ); + break; + + case tmrCOMMAND_DELETE : + #if ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) + { + /* The timer has already been removed from the active list, + just free up the memory if the memory was dynamically + allocated. */ + if( ( pxTimer->ucStatus & tmrSTATUS_IS_STATICALLY_ALLOCATED ) == ( uint8_t ) 0 ) + { + vPortFree( pxTimer ); + } + else + { + pxTimer->ucStatus &= ~tmrSTATUS_IS_ACTIVE; + } + } + #else + { + /* If dynamic allocation is not enabled, the memory + could not have been dynamically allocated. So there is + no need to free the memory - just mark the timer as + "not active". */ + pxTimer->ucStatus &= ~tmrSTATUS_IS_ACTIVE; + } + #endif /* configSUPPORT_DYNAMIC_ALLOCATION */ + break; + + default : + /* Don't expect to get here. */ + break; + } + } + } +} +/*-----------------------------------------------------------*/ + +static void prvSwitchTimerLists( void ) +{ +TickType_t xNextExpireTime, xReloadTime; +List_t *pxTemp; +Timer_t *pxTimer; +BaseType_t xResult; + + /* The tick count has overflowed. The timer lists must be switched. + If there are any timers still referenced from the current timer list + then they must have expired and should be processed before the lists + are switched. */ + while( listLIST_IS_EMPTY( pxCurrentTimerList ) == pdFALSE ) + { + xNextExpireTime = listGET_ITEM_VALUE_OF_HEAD_ENTRY( pxCurrentTimerList ); + + /* Remove the timer from the list. */ + pxTimer = ( Timer_t * ) listGET_OWNER_OF_HEAD_ENTRY( pxCurrentTimerList ); /*lint !e9087 !e9079 void * is used as this macro is used with tasks and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ + ( void ) uxListRemove( &( pxTimer->xTimerListItem ) ); + traceTIMER_EXPIRED( pxTimer ); + + /* Execute its callback, then send a command to restart the timer if + it is an auto-reload timer. It cannot be restarted here as the lists + have not yet been switched. */ + pxTimer->pxCallbackFunction( ( TimerHandle_t ) pxTimer ); + + if( ( pxTimer->ucStatus & tmrSTATUS_IS_AUTORELOAD ) != 0 ) + { + /* Calculate the reload value, and if the reload value results in + the timer going into the same timer list then it has already expired + and the timer should be re-inserted into the current list so it is + processed again within this loop. Otherwise a command should be sent + to restart the timer to ensure it is only inserted into a list after + the lists have been swapped. */ + xReloadTime = ( xNextExpireTime + pxTimer->xTimerPeriodInTicks ); + if( xReloadTime > xNextExpireTime ) + { + listSET_LIST_ITEM_VALUE( &( pxTimer->xTimerListItem ), xReloadTime ); + listSET_LIST_ITEM_OWNER( &( pxTimer->xTimerListItem ), pxTimer ); + vListInsert( pxCurrentTimerList, &( pxTimer->xTimerListItem ) ); + } + else + { + xResult = xTimerGenericCommand( pxTimer, tmrCOMMAND_START_DONT_TRACE, xNextExpireTime, NULL, tmrNO_DELAY ); + configASSERT( xResult ); + ( void ) xResult; + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + + pxTemp = pxCurrentTimerList; + pxCurrentTimerList = pxOverflowTimerList; + pxOverflowTimerList = pxTemp; +} +/*-----------------------------------------------------------*/ + +static void prvCheckForValidListAndQueue( void ) +{ + /* Check that the list from which active timers are referenced, and the + queue used to communicate with the timer service, have been + initialised. */ + taskENTER_CRITICAL(); + { + if( xTimerQueue == NULL ) + { + vListInitialise( &xActiveTimerList1 ); + vListInitialise( &xActiveTimerList2 ); + pxCurrentTimerList = &xActiveTimerList1; + pxOverflowTimerList = &xActiveTimerList2; + + #if( configSUPPORT_STATIC_ALLOCATION == 1 ) + { + /* The timer queue is allocated statically in case + configSUPPORT_DYNAMIC_ALLOCATION is 0. */ + static StaticQueue_t xStaticTimerQueue; /*lint !e956 Ok to declare in this manner to prevent additional conditional compilation guards in other locations. */ + static uint8_t ucStaticTimerQueueStorage[ ( size_t ) configTIMER_QUEUE_LENGTH * sizeof( DaemonTaskMessage_t ) ]; /*lint !e956 Ok to declare in this manner to prevent additional conditional compilation guards in other locations. */ + + xTimerQueue = xQueueCreateStatic( ( UBaseType_t ) configTIMER_QUEUE_LENGTH, ( UBaseType_t ) sizeof( DaemonTaskMessage_t ), &( ucStaticTimerQueueStorage[ 0 ] ), &xStaticTimerQueue ); + } + #else + { + xTimerQueue = xQueueCreate( ( UBaseType_t ) configTIMER_QUEUE_LENGTH, sizeof( DaemonTaskMessage_t ) ); + } + #endif + + #if ( configQUEUE_REGISTRY_SIZE > 0 ) + { + if( xTimerQueue != NULL ) + { + vQueueAddToRegistry( xTimerQueue, "TmrQ" ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + #endif /* configQUEUE_REGISTRY_SIZE */ + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + taskEXIT_CRITICAL(); +} +/*-----------------------------------------------------------*/ + +BaseType_t xTimerIsTimerActive( TimerHandle_t xTimer ) +{ +BaseType_t xReturn; +Timer_t *pxTimer = xTimer; + + configASSERT( xTimer ); + + /* Is the timer in the list of active timers? */ + taskENTER_CRITICAL(); + { + if( ( pxTimer->ucStatus & tmrSTATUS_IS_ACTIVE ) == 0 ) + { + xReturn = pdFALSE; + } + else + { + xReturn = pdTRUE; + } + } + taskEXIT_CRITICAL(); + + return xReturn; +} /*lint !e818 Can't be pointer to const due to the typedef. */ +/*-----------------------------------------------------------*/ + +void *pvTimerGetTimerID( const TimerHandle_t xTimer ) +{ +Timer_t * const pxTimer = xTimer; +void *pvReturn; + + configASSERT( xTimer ); + + taskENTER_CRITICAL(); + { + pvReturn = pxTimer->pvTimerID; + } + taskEXIT_CRITICAL(); + + return pvReturn; +} +/*-----------------------------------------------------------*/ + +void vTimerSetTimerID( TimerHandle_t xTimer, void *pvNewID ) +{ +Timer_t * const pxTimer = xTimer; + + configASSERT( xTimer ); + + taskENTER_CRITICAL(); + { + pxTimer->pvTimerID = pvNewID; + } + taskEXIT_CRITICAL(); +} +/*-----------------------------------------------------------*/ + +#if( INCLUDE_xTimerPendFunctionCall == 1 ) + + BaseType_t xTimerPendFunctionCallFromISR( PendedFunction_t xFunctionToPend, void *pvParameter1, uint32_t ulParameter2, BaseType_t *pxHigherPriorityTaskWoken ) + { + DaemonTaskMessage_t xMessage; + BaseType_t xReturn; + + /* Complete the message with the function parameters and post it to the + daemon task. */ + xMessage.xMessageID = tmrCOMMAND_EXECUTE_CALLBACK_FROM_ISR; + xMessage.u.xCallbackParameters.pxCallbackFunction = xFunctionToPend; + xMessage.u.xCallbackParameters.pvParameter1 = pvParameter1; + xMessage.u.xCallbackParameters.ulParameter2 = ulParameter2; + + xReturn = xQueueSendFromISR( xTimerQueue, &xMessage, pxHigherPriorityTaskWoken ); + + tracePEND_FUNC_CALL_FROM_ISR( xFunctionToPend, pvParameter1, ulParameter2, xReturn ); + + return xReturn; + } + +#endif /* INCLUDE_xTimerPendFunctionCall */ +/*-----------------------------------------------------------*/ + +#if( INCLUDE_xTimerPendFunctionCall == 1 ) + + BaseType_t xTimerPendFunctionCall( PendedFunction_t xFunctionToPend, void *pvParameter1, uint32_t ulParameter2, TickType_t xTicksToWait ) + { + DaemonTaskMessage_t xMessage; + BaseType_t xReturn; + + /* This function can only be called after a timer has been created or + after the scheduler has been started because, until then, the timer + queue does not exist. */ + configASSERT( xTimerQueue ); + + /* Complete the message with the function parameters and post it to the + daemon task. */ + xMessage.xMessageID = tmrCOMMAND_EXECUTE_CALLBACK; + xMessage.u.xCallbackParameters.pxCallbackFunction = xFunctionToPend; + xMessage.u.xCallbackParameters.pvParameter1 = pvParameter1; + xMessage.u.xCallbackParameters.ulParameter2 = ulParameter2; + + xReturn = xQueueSendToBack( xTimerQueue, &xMessage, xTicksToWait ); + + tracePEND_FUNC_CALL( xFunctionToPend, pvParameter1, ulParameter2, xReturn ); + + return xReturn; + } + +#endif /* INCLUDE_xTimerPendFunctionCall */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_TRACE_FACILITY == 1 ) + + UBaseType_t uxTimerGetTimerNumber( TimerHandle_t xTimer ) + { + return ( ( Timer_t * ) xTimer )->uxTimerNumber; + } + +#endif /* configUSE_TRACE_FACILITY */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_TRACE_FACILITY == 1 ) + + void vTimerSetTimerNumber( TimerHandle_t xTimer, UBaseType_t uxTimerNumber ) + { + ( ( Timer_t * ) xTimer )->uxTimerNumber = uxTimerNumber; + } + +#endif /* configUSE_TRACE_FACILITY */ +/*-----------------------------------------------------------*/ + +/* This entire source file will be skipped if the application is not configured +to include software timer functionality. If you want to include software timer +functionality then ensure configUSE_TIMERS is set to 1 in FreeRTOSConfig.h. */ +#endif /* configUSE_TIMERS == 1 */ + + + From 85c73b6b7effe0ba41dac34409c6b5f61dfcf4c1 Mon Sep 17 00:00:00 2001 From: orlandonico Date: Thu, 30 Dec 2021 14:21:17 +0100 Subject: [PATCH 56/86] rtos: freertos --- .../scr/pmsis_task.c | 1 + tests/spim_flash_async/FreeRTOSConfig.h | 140 ++++++++++++++++++ tests/spim_flash_async/Makefile | 5 +- 3 files changed, 144 insertions(+), 2 deletions(-) create mode 100644 tests/spim_flash_async/FreeRTOSConfig.h diff --git a/rtos/freertos/abstraction_layer_freertos/scr/pmsis_task.c b/rtos/freertos/abstraction_layer_freertos/scr/pmsis_task.c index ac976478..755880f0 100644 --- a/rtos/freertos/abstraction_layer_freertos/scr/pmsis_task.c +++ b/rtos/freertos/abstraction_layer_freertos/scr/pmsis_task.c @@ -26,6 +26,7 @@ #include #include #include +#include pi_task_t *__pi_task_block(pi_task_t *callback_task) { diff --git a/tests/spim_flash_async/FreeRTOSConfig.h b/tests/spim_flash_async/FreeRTOSConfig.h new file mode 100644 index 00000000..5673d91b --- /dev/null +++ b/tests/spim_flash_async/FreeRTOSConfig.h @@ -0,0 +1,140 @@ +/* + * FreeRTOS Kernel V10.3.0 + * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright (C) 2020 ETH Zurich + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * + * http://www.FreeRTOS.org + * http://aws.amazon.com/freertos + * + * 1 tab == 4 spaces! + */ + + +#ifndef FREERTOS_CONFIG_H +#define FREERTOS_CONFIG_H + +/* #include "clock_config.h" */ /* TODO: figure out our FLL/clock setup */ + +#define DEFAULT_SYSTEM_CLOCK 50000000u /* Default System clock value */ + +/*----------------------------------------------------------- + * Application specific definitions. + * + * These definitions should be adjusted for your particular hardware and + * application requirements. + * + * THESE PARAMETERS ARE DESCRIBED WITHIN THE 'CONFIGURATION' SECTION OF THE + * FreeRTOS API DOCUMENTATION AVAILABLE ON THE FreeRTOS.org WEB SITE. + * + * See http://www.freertos.org/a00110.html. + *----------------------------------------------------------*/ + +#include +#ifdef __PULP_USE_LIBC +#include +#endif + +/* Ensure stdint is only used by the compiler, and not the assembler. */ +#if defined(__GNUC__) +#include +#endif + +/* There is no CLINT so the base address must be set to 0. */ +#define configCLINT_BASE_ADDRESS 0 +#define configUSE_PREEMPTION 1 +#define configUSE_IDLE_HOOK 0 +#define configUSE_TICK_HOOK 0 +#define configCPU_CLOCK_HZ DEFAULT_SYSTEM_CLOCK +#define configTICK_RATE_HZ ((TickType_t)1000) +#define configMAX_PRIORITIES (5) +/* Can be as low as 60 but some of the demo tasks that use this constant require it to be higher. */ +#define configMINIMAL_STACK_SIZE ((unsigned short)400) +/* we want to put the heap into special section */ +#define configAPPLICATION_ALLOCATED_HEAP 1 +#define configTOTAL_HEAP_SIZE ((size_t)(64 * 1024)) +#define configMAX_TASK_NAME_LEN (16) +#define configUSE_TRACE_FACILITY 1 /* TODO: 0 */ +#define configUSE_16_BIT_TICKS 0 +#define configIDLE_SHOULD_YIELD 0 +#define configUSE_MUTEXES 1 +#define configQUEUE_REGISTRY_SIZE 8 +#define configCHECK_FOR_STACK_OVERFLOW 2 +#define configUSE_RECURSIVE_MUTEXES 1 +#define configUSE_MALLOC_FAILED_HOOK 1 +#define configUSE_APPLICATION_TASK_TAG 0 +#define configUSE_COUNTING_SEMAPHORES 1 +#define configGENERATE_RUN_TIME_STATS 0 + +// TODO: investigate (gw) +//#define configOVERRIDE_DEFAULT_TICK_CONFIGURATION 1 +//#define configRECORD_STACK_HIGH_ADDRESS 1 +//#define configUSE_POSIX_ERRNO 1 + +/* newlib reentrancy */ +#define configUSE_NEWLIB_REENTRANT 1 +/* Co-routine definitions. */ +#define configUSE_CO_ROUTINES 0 +#define configMAX_CO_ROUTINE_PRIORITIES (2) + +/* Software timer definitions. */ +#define configUSE_TIMERS 1 +#define configTIMER_TASK_PRIORITY (configMAX_PRIORITIES - 1) +#define configTIMER_QUEUE_LENGTH 4 +#define configTIMER_TASK_STACK_DEPTH (configMINIMAL_STACK_SIZE) + +/* Task priorities. Allow these to be overridden. */ +#ifndef uartPRIMARY_PRIORITY +#define uartPRIMARY_PRIORITY (configMAX_PRIORITIES - 3) +#endif + +/* Set the following definitions to 1 to include the API function, or zero +to exclude the API function. */ +#define INCLUDE_vTaskPrioritySet 1 +#define INCLUDE_uxTaskPriorityGet 1 +#define INCLUDE_vTaskDelete 1 +#define INCLUDE_vTaskCleanUpResources 1 +#define INCLUDE_vTaskSuspend 1 +#define INCLUDE_vTaskDelayUntil 1 +#define INCLUDE_vTaskDelay 1 +#define INCLUDE_eTaskGetState 1 +#define INCLUDE_xTimerPendFunctionCall 1 +#define INCLUDE_xTaskAbortDelay 1 +#define INCLUDE_xTaskGetHandle 1 +#define INCLUDE_xSemaphoreGetMutexHolder 1 + +/* Normal assert() semantics without relying on the provision of an assert.h +header file. */ +#ifdef __PULP_USE_LIBC +#define configASSERT(x) assert(x) +#else +#define configASSERT(x) \ + do { \ + if ((x) == 0) { \ + taskDISABLE_INTERRUPTS(); \ + for (;;) \ + ; \ + } \ + } while (0) +#endif + +#define configUSE_PORT_OPTIMISED_TASK_SELECTION 1 +#define configKERNEL_INTERRUPT_PRIORITY 7 + +#endif /* FREERTOS_CONFIG_H */ diff --git a/tests/spim_flash_async/Makefile b/tests/spim_flash_async/Makefile index f9b79053..95cbe0d1 100644 --- a/tests/spim_flash_async/Makefile +++ b/tests/spim_flash_async/Makefile @@ -13,8 +13,9 @@ endif APP_CFLAGS += -Os -g APP_LDFLAGS += -Os -g -APP_CFLAGS += -DUSE_PULPOS -# +#APP_CFLAGS += -DUSE_PULPOS +APP_CFLAGS += -DUSE_FREERTOS + CONFIG_SPIM = 1 From e25b8bf405defde856379a551b6fbed8065defec Mon Sep 17 00:00:00 2001 From: orlandonico Date: Thu, 30 Dec 2021 14:24:56 +0100 Subject: [PATCH 57/86] rtos: freertos fix --- .../drivers/spim/common/include/common_spi.h | 37 +++---------------- .../pulp/drivers/spim/common/src/common_spi.c | 14 ++----- 2 files changed, 9 insertions(+), 42 deletions(-) diff --git a/rtos/pulpos/pulp/drivers/spim/common/include/common_spi.h b/rtos/pulpos/pulp/drivers/spim/common/include/common_spi.h index fa1aa710..81763ae0 100644 --- a/rtos/pulpos/pulp/drivers/spim/common/include/common_spi.h +++ b/rtos/pulpos/pulp/drivers/spim/common/include/common_spi.h @@ -28,7 +28,7 @@ /**================================================================================================ ** INCLUDE *================================================================================================**/ -#ifdef USE_PULPOS + #include "pmsis.h" #include #include @@ -39,23 +39,8 @@ #include #include #include -#endif -#ifdef USE_FREERTOS -#include "pmsis_types.h" -#include "pmsis_task.h" -#include "implementation_specific_defines.h" -#include "system.h" -#include "fc_event.h" -#include "udma.h" -#include "fll.h" -#include "events.h" -#include "properties.h" -#include "spi_periph.h" -#include "spi.h" -#include "udma_spim.h" -#include "udma_ctrl.h" -#endif + /**================================================================================================ ** DEFINE @@ -92,7 +77,7 @@ struct spim_cs_data uint8_t big_endian; }; -#ifdef USE_PULPOS + /* Structure holding info for each interfaces * most notably the fifo of enqueued transfers and meta to know whether * interface is free or not */ @@ -107,20 +92,8 @@ struct spim_driver_data pos_udma_channel_t *rx_channel; pos_udma_channel_t *tx_channel; }; -#endif -#ifdef USE_FREERTOS -/* Structure holding info for each interfaces - * most notably the fifo of enqueued transfers and meta to know whether - * interface is free or not */ -struct spim_driver_data { - struct spim_drv_fifo *drv_fifo; // does the same task as Dolphine with true and false - struct spim_cs_data *cs_list; // list of devices connected to the spi interface - pi_task_t *repeat_transfer; - pi_task_t *end_of_transfer; // gli associo un task per sapere se un trasferimento ha finito? - uint32_t nb_open; - uint8_t device_id; -}; -#endif + + struct spim_transfer diff --git a/rtos/pulpos/pulp/drivers/spim/common/src/common_spi.c b/rtos/pulpos/pulp/drivers/spim/common/src/common_spi.c index bfb5fe4e..185776f7 100644 --- a/rtos/pulpos/pulp/drivers/spim/common/src/common_spi.c +++ b/rtos/pulpos/pulp/drivers/spim/common/src/common_spi.c @@ -34,21 +34,15 @@ ** FUNCTION *================================================================================================**/ uint32_t deactive_irq(void){ -#ifdef USE_PULPOS + return hal_irq_disable(); -#endif -#ifdef USE_FREERTOS - return __disable_irq(); -#endif + + } void active_irq(uint32_t irq){ -#ifdef USE_PULPOS hal_irq_restore(irq); -#endif -#ifdef USE_FREERTOS - __restore_irq(irq); -#endif + } From f92f7ddbefd923fb33457c729535c2db46b0bbd3 Mon Sep 17 00:00:00 2001 From: orlandonico Date: Thu, 30 Dec 2021 16:13:04 +0100 Subject: [PATCH 58/86] add freertos file --- .../include/apb_soc.h | 155 ++++ .../abstraction_layer_freertos/include/bits.h | 86 +++ .../include/clkdiv.h | 33 + .../include/debug.h | 64 ++ .../include/device.h | 44 ++ .../include/events.h | 184 +++++ .../include/fc_event.h | 47 ++ .../abstraction_layer_freertos/include/fll.h | 237 ++++++ .../abstraction_layer_freertos/include/freq.h | 53 ++ .../abstraction_layer_freertos/include/gpio.h | 438 +++++++++++ .../abstraction_layer_freertos/include/i2c.h | 434 +++++++++++ .../include/i2c_periph.h | 96 +++ .../include/implementation_specific_defines.h | 59 ++ .../abstraction_layer_freertos/include/irq.h | 391 ++++++++++ .../abstraction_layer_freertos/include/link.h | 25 + .../include/memory_map.h | 156 ++++ .../abstraction_layer_freertos/include/os.h | 261 +++++++ .../include/pi_errno.h | 53 ++ .../include/pinmux.h | 41 ++ .../include/pmsis_task.h | 169 +++++ .../include/pmsis_types.h | 198 +++++ .../include/properties.h | 252 +++++++ .../include/pulp_mem_map.h | 81 ++ .../include/soc_eu.h | 330 +++++++++ .../include/soc_eu_metal.h | 73 ++ .../abstraction_layer_freertos/include/spi.h | 452 ++++++++++++ .../include/spi_periph.h | 332 +++++++++ .../include/stdout.h | 31 + .../include/system.h | 38 + .../include/target.h | 129 ++++ .../include/tempCodeRunnerFile.h | 1 + .../include/timer.h | 222 ++++++ .../include/timer_irq.h | 33 + .../abstraction_layer_freertos/include/uart.h | 437 +++++++++++ .../include/uart_periph.h | 140 ++++ .../abstraction_layer_freertos/include/udma.h | 229 ++++++ .../include/udma_core.h | 63 ++ .../include/udma_ctrl.h | 108 +++ .../include/udma_i2c.h | 134 ++++ .../include/udma_spim.h | 51 ++ .../include/udma_uart.h | 197 +++++ .../scr/Quick_Start_Guide.url | 5 - .../abstraction_layer_freertos/scr/clkconst.c | 48 ++ .../abstraction_layer_freertos/scr/clkdiv.c | 102 +++ .../abstraction_layer_freertos/scr/device.c | 54 ++ .../abstraction_layer_freertos/scr/fc_event.c | 69 ++ .../abstraction_layer_freertos/scr/fll.c | 231 ++++++ .../abstraction_layer_freertos/scr/gpio.c | 172 +++++ .../abstraction_layer_freertos/scr/irq.c | 102 +++ .../abstraction_layer_freertos/scr/pinmux.c | 56 ++ .../abstraction_layer_freertos/scr/readme.txt | 17 - .../abstraction_layer_freertos/scr/soc_eu.c | 51 ++ .../abstraction_layer_freertos/scr/system.c | 170 +++++ .../scr/system_metal.c | 88 +++ .../scr/timer_irq.c | 77 ++ .../abstraction_layer_freertos/scr/uart.c | 515 +++++++++++++ .../include/abstraction_layer_spi_FREERTOS.h | 65 ++ .../src/abstraction_layer_spi_FREERTOS.c | 695 ++++++++++++++++++ .../common/rules/pulpos/default_rules.mk | 50 +- rtos/pulpos/common/rules/pulpos/src.mk | 9 - .../drivers/spim/common/include/common_spi.h | 37 +- .../pulp/drivers/spim/common/src/common_spi.c | 14 +- tests/spim_flash_async/Makefile | 5 +- tests/spim_flash_async/test_spi_async.c | 6 + 64 files changed, 9138 insertions(+), 57 deletions(-) create mode 100644 rtos/freertos/abstraction_layer_freertos/include/apb_soc.h create mode 100644 rtos/freertos/abstraction_layer_freertos/include/bits.h create mode 100644 rtos/freertos/abstraction_layer_freertos/include/clkdiv.h create mode 100644 rtos/freertos/abstraction_layer_freertos/include/debug.h create mode 100644 rtos/freertos/abstraction_layer_freertos/include/device.h create mode 100644 rtos/freertos/abstraction_layer_freertos/include/events.h create mode 100644 rtos/freertos/abstraction_layer_freertos/include/fc_event.h create mode 100644 rtos/freertos/abstraction_layer_freertos/include/fll.h create mode 100644 rtos/freertos/abstraction_layer_freertos/include/freq.h create mode 100644 rtos/freertos/abstraction_layer_freertos/include/gpio.h create mode 100644 rtos/freertos/abstraction_layer_freertos/include/i2c.h create mode 100644 rtos/freertos/abstraction_layer_freertos/include/i2c_periph.h create mode 100644 rtos/freertos/abstraction_layer_freertos/include/implementation_specific_defines.h create mode 100644 rtos/freertos/abstraction_layer_freertos/include/irq.h create mode 100644 rtos/freertos/abstraction_layer_freertos/include/link.h create mode 100644 rtos/freertos/abstraction_layer_freertos/include/memory_map.h create mode 100644 rtos/freertos/abstraction_layer_freertos/include/os.h create mode 100644 rtos/freertos/abstraction_layer_freertos/include/pi_errno.h create mode 100644 rtos/freertos/abstraction_layer_freertos/include/pinmux.h create mode 100644 rtos/freertos/abstraction_layer_freertos/include/pmsis_task.h create mode 100644 rtos/freertos/abstraction_layer_freertos/include/pmsis_types.h create mode 100644 rtos/freertos/abstraction_layer_freertos/include/properties.h create mode 100644 rtos/freertos/abstraction_layer_freertos/include/pulp_mem_map.h create mode 100644 rtos/freertos/abstraction_layer_freertos/include/soc_eu.h create mode 100644 rtos/freertos/abstraction_layer_freertos/include/soc_eu_metal.h create mode 100644 rtos/freertos/abstraction_layer_freertos/include/spi.h create mode 100644 rtos/freertos/abstraction_layer_freertos/include/spi_periph.h create mode 100644 rtos/freertos/abstraction_layer_freertos/include/stdout.h create mode 100644 rtos/freertos/abstraction_layer_freertos/include/system.h create mode 100644 rtos/freertos/abstraction_layer_freertos/include/target.h create mode 100644 rtos/freertos/abstraction_layer_freertos/include/tempCodeRunnerFile.h create mode 100644 rtos/freertos/abstraction_layer_freertos/include/timer.h create mode 100644 rtos/freertos/abstraction_layer_freertos/include/timer_irq.h create mode 100644 rtos/freertos/abstraction_layer_freertos/include/uart.h create mode 100644 rtos/freertos/abstraction_layer_freertos/include/uart_periph.h create mode 100644 rtos/freertos/abstraction_layer_freertos/include/udma.h create mode 100644 rtos/freertos/abstraction_layer_freertos/include/udma_core.h create mode 100644 rtos/freertos/abstraction_layer_freertos/include/udma_ctrl.h create mode 100644 rtos/freertos/abstraction_layer_freertos/include/udma_i2c.h create mode 100644 rtos/freertos/abstraction_layer_freertos/include/udma_spim.h create mode 100644 rtos/freertos/abstraction_layer_freertos/include/udma_uart.h delete mode 100644 rtos/freertos/abstraction_layer_freertos/scr/Quick_Start_Guide.url create mode 100644 rtos/freertos/abstraction_layer_freertos/scr/clkconst.c create mode 100644 rtos/freertos/abstraction_layer_freertos/scr/clkdiv.c create mode 100644 rtos/freertos/abstraction_layer_freertos/scr/device.c create mode 100644 rtos/freertos/abstraction_layer_freertos/scr/fc_event.c create mode 100644 rtos/freertos/abstraction_layer_freertos/scr/fll.c create mode 100644 rtos/freertos/abstraction_layer_freertos/scr/gpio.c create mode 100644 rtos/freertos/abstraction_layer_freertos/scr/irq.c create mode 100644 rtos/freertos/abstraction_layer_freertos/scr/pinmux.c delete mode 100644 rtos/freertos/abstraction_layer_freertos/scr/readme.txt create mode 100644 rtos/freertos/abstraction_layer_freertos/scr/soc_eu.c create mode 100644 rtos/freertos/abstraction_layer_freertos/scr/system.c create mode 100644 rtos/freertos/abstraction_layer_freertos/scr/system_metal.c create mode 100644 rtos/freertos/abstraction_layer_freertos/scr/timer_irq.c create mode 100644 rtos/freertos/abstraction_layer_freertos/scr/uart.c create mode 100644 rtos/freertos/abstraction_layer_spi_freertos/include/abstraction_layer_spi_FREERTOS.h create mode 100644 rtos/freertos/abstraction_layer_spi_freertos/src/abstraction_layer_spi_FREERTOS.c diff --git a/rtos/freertos/abstraction_layer_freertos/include/apb_soc.h b/rtos/freertos/abstraction_layer_freertos/include/apb_soc.h new file mode 100644 index 00000000..19825766 --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/include/apb_soc.h @@ -0,0 +1,155 @@ +/* + * Copyright (C) 2020 ETH Zurich and University of Bologna + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +/* Description: SoC configuration registers (apb_soc_ctrl) + * Authors: Germain Haugou (germain.haugou@iis.ee.ethz.ch) + * Robert Balas (balasr@iis.ee.ethz.ch) + */ + + +#ifndef __APB_SOC_H +#define __APB_SOC_H + +#define APB_SOC_BOOT_OTHER 0 +#define APB_SOC_BOOT_JTAG 1 +#define APB_SOC_BOOT_SPI 2 +#define APB_SOC_BOOT_ROM 3 +#define APB_SOC_BOOT_PRELOAD 4 +#define APB_SOC_BOOT_HYPER 5 +#define APB_SOC_BOOT_SPIM 6 +#define APB_SOC_BOOT_SPIM_QPI 7 + +#define APB_SOC_PLT_OTHER 0 +#define APB_SOC_PLT_FPGA 1 +#define APB_SOC_PLT_RTL 2 +#define APB_SOC_PLT_VP 3 +#define APB_SOC_PLT_CHIP 4 + +/* PADs configuration is made of 8bits out of which only the first 6 are used + * bit0 enable pull UP + * bit1 enable pull DOWN + * bit2 enable ST + * bit3 enable SlewRate Limit + * bit4..5 Driving Strength + * bit6..7 not used */ + +#define APB_SOC_BOOTADDR_OFFSET 0x04 +/* contains number of cores [31:16] and clusters [15:0] */ +#define APB_SOC_INFO_OFFSET 0x00 +/* not used at the moment */ +#define APB_SOC_INFOEXTD_OFFSET 0x04 +/* not used at the moment */ +#define APB_SOC_NOTUSED0_OFFSET 0x08 +/* not used at the moment */ +#define APB_SOC_CLUSTER_ISOLATE_OFFSET 0x0C + +#define APB_SOC_PADFUN0_OFFSET 0x10 +#define APB_SOC_PADCFG0_OFFSET 0x20 + +/* sets the mux for pins g*16+0 (bits [1:0]) to g*16+15 (bits [31:30]) */ +#define APB_SOC_PADFUN_OFFSET(g) (APB_SOC_PADFUN0_OFFSET + (g)*4) +#define APB_SOC_PADFUN_NO(pad) ((pad) >> 4) +#define APB_SOC_PADFUN_PAD(padfun) ((padfun)*16) +#define APB_SOC_PADFUN_SIZE 2 +#define ARCHI_APB_SOC_PADFUN_NB 4 +#define APB_SOC_PADFUN_BIT(pad) (((pad)&0xF) << 1) + +/* sets config for pin g*4+0(bits [7:0]) to pin g*4+3(bits [31:24]) */ +#define APB_SOC_PADCFG_OFFSET(g) (APB_SOC_PADCFG0_OFFSET + (g)*4) +#define APB_SOC_PADCFG_NO(pad) ((pad) >> 2) +#define APB_SOC_PADCFG_PAD(padfun) ((padfun)*4) +#define APB_SOC_PADCFG_SIZE 8 +#define APB_SOC_PADCFG_BIT(pad) (((pad)&0x3) << 3) + +#define APB_SOC_PWRCMD_OFFSET 0x60 // change power mode(not funtional yet) +/* configures power modes(not funtional yet) */ +#define APB_SOC_PWRCFG_OFFSET 0x64 +/* 32 bit GP register used by power pngmt routines to see if is hard or cold + * reboot */ +#define APB_SOC_PWRREG_OFFSET 0x68 +/* not used at the moment */ +#define APB_SOC_BUSY_OFFSET 0x6C +/* memory margin pins(not used at the moment) */ +#define APB_SOC_MMARGIN_OFFSET 0x70 +/* R/W register for interaction with the the chip environment */ +#define APB_SOC_JTAG_REG 0x74 +/* memory margin pins(not used at the moment) */ +#define APB_SOC_L2_SLEEP_OFFSET 0x78 +/* not used at the moment */ +#define APB_SOC_NOTUSED3_OFFSET 0x7C +/* soc clock divider(to be removed) */ +#define APB_SOC_CLKDIV0_OFFSET 0x80 +/* cluster clock divider(to be removed) */ +#define APB_SOC_CLKDIV1_OFFSET 0x84 +/* not used at the moment */ +#define APB_SOC_CLKDIV2_OFFSET 0x88 +/* not used at the moment */ +#define APB_SOC_CLKDIV3_OFFSET 0x8C +/* not used at the moment */ +#define APB_SOC_CLKDIV4_OFFSET 0x90 +/* not used at the moment */ +#define APB_SOC_NOTUSED4_OFFSET 0x94 +/* not used at the moment */ +#define APB_SOC_NOTUSED5_OFFSET 0x98 +/* not used at the moment */ +#define APB_SOC_NOTUSED6_OFFSET 0x9C +/* 32bit GP register to be used during testing to return EOC(bit[31]) and + * status(bit[30:0]) */ +#define APB_SOC_CORESTATUS_OFFSET 0xA0 +/* 32bit GP register to be used during testing to return EOC(bit[31]) and + * status(bit[30:0]) */ +#define APB_SOC_CORESTATUS_RO_OFFSET 0xC0 +#define APB_SOC_PADS_CONFIG 0xC4 + +#define APB_SOC_PADS_CONFIG_BOOTSEL_BIT 0 + +#define APB_SOC_JTAG_REG_EXT_BIT 8 +#define APB_SOC_JTAG_REG_EXT_WIDTH 4 + +#define APB_SOC_JTAG_REG_LOC_BIT 0 +#define APB_SOC_JTAG_REG_LOC_WIDTH 4 + +#define APB_SOC_INFO_CORES_OFFSET (APB_SOC_INFO_OFFSET + 2) +#define APB_SOC_INFO_CLUSTERS_OFFSET (APB_SOC_INFO_OFFSET) + +#define APB_SOC_STATUS_EOC_BIT 31 +#define APB_SOC_NB_CORE_BIT 16 + + +#define APB_SOC_BYPASS_OFFSET 0x70 + +#define APB_SOC_BYPASS_CLOCK_GATE_BIT 10 +#define APB_SOC_BYPASS_CLUSTER_STATE_BIT 3 +#define APB_SOC_BYPASS_USER0_BIT 14 +#define APB_SOC_BYPASS_USER1_BIT 15 + + +#define APB_SOC_FLL_CTRL_OFFSET 0xD0 +#define APB_SOC_CLKDIV_SOC_OFFSET 0xD4 +#define APB_SOC_CLKDIV_CLUSTER_OFFSET 0xD8 +#define APB_SOC_CLKDIV_PERIPH_OFFSET 0xDC + + +#define APB_SOC_FLL_CTRL_SOC_BIT 0 +#define APB_SOC_FLL_CTRL_CLUSTER_BIT 1 +#define APB_SOC_FLL_CTRL_PERIPH_BIT 2 + + +#define APB_SOC_RTC_OFFSET 0x1D0 + +#endif diff --git a/rtos/freertos/abstraction_layer_freertos/include/bits.h b/rtos/freertos/abstraction_layer_freertos/include/bits.h new file mode 100644 index 00000000..6f3b78f5 --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/include/bits.h @@ -0,0 +1,86 @@ +/* + * Copyright (c) 2011-2014, Wind River Systems, Inc. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +/* + * Copyright 2020 ETH Zurich + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * Author: Robert Balas (balasr@iis.ee.ethz.ch) + */ + +#ifndef __BITS_H +#define __BITS_H + +#include + +/* Helper to pass a int as a pointer or vice-versa. */ +#define POINTER_TO_UINT(x) ((uintptr_t) (x)) +#define UINT_TO_POINTER(x) ((void *) (uintptr_t) (x)) +#define POINTER_TO_INT(x) ((intptr_t) (x)) +#define INT_TO_POINTER(x) ((void *) (intptr_t) (x)) + +#if !(defined (__CHAR_BIT__) && defined (__SIZEOF_LONG__)) +# error Missing required predefined macros for BITS_PER_LONG calculation +#endif + +#define BITS_PER_LONG (__CHAR_BIT__ * __SIZEOF_LONG__) +/* Create a contiguous bitmask starting at bit position @l and ending at + * position @h. + */ +#define GENMASK(h, l) \ + (((~0UL) - (1UL << (l)) + 1) & (~0UL >> (BITS_PER_LONG - 1 - (h)))) + +/* KB, MB, GB */ +#define KB(x) ((x) << 10) +#define MB(x) (KB(x) << 10) +#define GB(x) (MB(x) << 10) + +/* KHZ, MHZ */ +#define KHZ(x) ((x) * 1000) +#define MHZ(x) (KHZ(x) * 1000) + +#ifndef BIT +#if defined(_ASMLANGUAGE) +#define BIT(n) (1 << (n)) +#else +#define BIT(n) (1UL << (n)) +#endif +#endif + +/** + * @brief Macro sets or clears bit depending on boolean value + * + * @param var Variable to be altered + * @param bit Bit number + * @param set Value 0 clears bit, any other value sets bit + */ +#define WRITE_BIT(var, bit, set) \ + ((var) = (set) ? ((var) | BIT(bit)) : ((var) & ~BIT(bit))) + +#define BIT_MASK(n) (BIT(n) - 1) + + +/** + * @brief Convenience macro reads or sets register fields + * + * @param FIELD Register name + * @param v value of bits + */ +#define REG_SET(FIELD, v) (((v) << FIELD##_SHIFT) & FIELD##_MASK) +#define REG_GET(FIELD, v) (((v) & FIELD##_MASK) >> FIELD##_SHIFT) + +#endif diff --git a/rtos/freertos/abstraction_layer_freertos/include/clkdiv.h b/rtos/freertos/abstraction_layer_freertos/include/clkdiv.h new file mode 100644 index 00000000..2d3445fa --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/include/clkdiv.h @@ -0,0 +1,33 @@ +/* + * Copyright (C) 2020 ETH Zurich and University of Bologna + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + */ +/* Driver to control the soc control clock divider used in some PULP based + * chips/IPs. This driver is mutually exclusive with the fll driver + */ +/* Author: Robert Balas (balasr@iis.ee.ethz.ch) + */ + +#ifndef __CLKDIV_H__ +#define __CLKDIV_H__ +/* soc clock division register offset */ +#define CLKDIV_FC_OFFSET 0xf00 +/* cluster clock division register offset */ +#define CLKDIV_CL_OFFSET 0xf08 +/* peripheral clock division register offset */ +#define CLKDIV_PERIPH_OFFSET 0xf10 + +#endif /* __CLKDIV_H__ */ diff --git a/rtos/freertos/abstraction_layer_freertos/include/debug.h b/rtos/freertos/abstraction_layer_freertos/include/debug.h new file mode 100644 index 00000000..1c3dd5d3 --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/include/debug.h @@ -0,0 +1,64 @@ +/* + * Copyright 2020 GreenWaves Technologies + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#ifndef __DEBUG_H__ +#define __DEBUG_H__ + +/* Define those flags in Makefile or command line to enable traces/logs. */ + +#if defined(TRACE_CPI) +#define CPI_TRACE(...) PI_LOG_DBG(__func__, __VA_ARGS__) +#define CPI_TRACE_ERR(...) PI_LOG_ERR(__func__, __VA_ARGS__) +#else +#define CPI_TRACE(...) ((void)0) +#define CPI_TRACE_ERR(...) ((void)0) +#endif /* TRACE_CPI */ + +#if defined(TRACE_I2S) +#define I2S_TRACE(...) PI_LOG_DBG(__func__, __VA_ARGS__) +#define I2S_TRACE_ERR(...) PI_LOG_ERR(__func__, __VA_ARGS__) +#else +#define I2S_TRACE(...) ((void)0) +#define I2S_TRACE_ERR(...) ((void)0) +#endif /* TRACE_I2S */ + +#if defined(TRACE_UART) +#define UART_TRACE(...) PI_LOG_DBG(__func__, __VA_ARGS__) +#define UART_TRACE_ERR(...) PI_LOG_ERR(__func__, __VA_ARGS__) +#else +#define UART_TRACE(...) ((void)0) +#define UART_TRACE_ERR(...) ((void)0) +#endif /* TRACE_UART */ + +#if defined(TRACE_I2C) +#define I2C_TRACE(...) PI_LOG_DBG(__func__, __VA_ARGS__) +#define I2C_TRACE_ERR(...) PI_LOG_ERR(__func__, __VA_ARGS__) +#else +#define I2C_TRACE(...) ((void) 0) +#define I2C_TRACE_ERR(...) ((void) 0) +#endif /* TRACE_I2C */ + +/* Debug helper. */ +#if defined (DEBUG_TASKS) +#define DEBUG_PRINTF printf +#else +#define DEBUG_PRINTF(...) ((void)0) +#endif /* DEBUG */ + + +#endif /* __DEBUG_H__ */ diff --git a/rtos/freertos/abstraction_layer_freertos/include/device.h b/rtos/freertos/abstraction_layer_freertos/include/device.h new file mode 100644 index 00000000..f5f3454d --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/include/device.h @@ -0,0 +1,44 @@ +/* + * Copyright (C) 2018 GreenWaves Technologies + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#ifndef __DEVICE_H__ +#define __DEVICE_H__ + +#include "pmsis_types.h" + +/* Open a device using its name if available + * if no name is passed, just allocate necessary memory + */ +struct pi_device *pi_open(const char *name); + +void pi_open_from_conf(struct pi_device *device, void *conf); + +int pmsis_close(struct pi_device *device); + +/* ioctl like mechanism */ +uint32_t pmsis_ioctl(struct pi_device *device, uint32_t func_id, void *arg); + +/* Generic write and read functions: + * write or read to devices (spi, i2s, (hyper)flash...) + * might be null for devices which are not concerned + */ +uint32_t pmsis_write(struct pi_device *device, uintptr_t size, const void *addr, + const void *buffer); + +uint32_t pmsis_read(struct pi_device *device, uintptr_t size, const void *addr, + const void *buffer); + +#endif diff --git a/rtos/freertos/abstraction_layer_freertos/include/events.h b/rtos/freertos/abstraction_layer_freertos/include/events.h new file mode 100644 index 00000000..1d02988b --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/include/events.h @@ -0,0 +1,184 @@ +/* + * Copyright (C) 2019 ETH Zurich, University of Bologna and GreenWaves + * Technologies + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#ifndef __EVENTS_H__ +#define __EVENTS_H__ + +#include "properties.h" + +/* Events offsets. */ +#define UDMA_EVENT_OFFSET_RX (0) +#define UDMA_EVENT_OFFSET_TX (1) + +#define UDMA_EVENT_OFFSET_SPI_CMD (2) +#define UDMA_EVENT_OFFSET_SPI_EOT (3) + +/* Number of events per peripheral. */ +#define UDMA_CHANNEL_NB_EVENTS_LOG2 (2) +#define UDMA_CHANNEL_NB_EVENTS (1 << UDMA_CHANNEL_NB_EVENTS_LOG2) + +/* Number of SW events. */ +#define NB_SW_EVENTS (8) + +/*! @brief FC events (aka IRQ lines)*/ +#define FC_IRQ_SW_EVT(id) (id & (NB_SW_EVENTS - 1)) +#define FC_EVENT_SW(id) (id & (NB_SW_EVENTS - 1)) +#define FC_EVENT_DMA_EVT (8) +#define FC_EVENT_DMA (9) +#define FC_EVENT_TIMER0 (10) /* Timer low. */ +/* #define SYSTICK_IRQN FC_EVENT_TIMER0 */ +#define FC_EVENT_TIMER1 (11) /* Timer high. */ +/* #define FC_EVENT_EU_HWCE (12) */ + +/* + * SoC event unit events: Many events get implicitely muxed into this interrupt. + * A user that gets such an interrupt has to check the event unit's registers to + * see what happened + */ +#define FC_EVENT_SOC_EVENT (27) +/* #define FC_EVENT_MPU_ERROR (28) */ +/* + * Event queue error: If we don't process event unit events quickly enough + * internal fifos can overflow and we get this error interrupt + */ +#define FC_EVENT_FC_QUEUE_ERROR (29) +#define FC_EVENT_HP0 (30) +#define FC_EVENT_HP1 (31) + +/*! @name SoC events */ +/*! @brief Number of FC_Events. */ +#define SOC_EU_NB_FC_EVENTS (168) + +/*! @brief UDMA events */ +/* SPIM */ +#define SOC_EVENT_UDMA_SPIM_RX(id) \ + ((UDMA_SPIM_ID(id) << UDMA_CHANNEL_NB_EVENTS_LOG2) + \ + UDMA_EVENT_OFFSET_RX) +#define SOC_EVENT_UDMA_SPIM_TX(id) \ + ((UDMA_SPIM_ID(id) << UDMA_CHANNEL_NB_EVENTS_LOG2) + \ + UDMA_EVENT_OFFSET_TX) +#define SOC_EVENT_UDMA_SPIM_CMD(id) \ + ((UDMA_SPIM_ID(id) << UDMA_CHANNEL_NB_EVENTS_LOG2) + \ + UDMA_EVENT_OFFSET_SPI_CMD) +#define SOC_EVENT_UDMA_SPIM_EOT(id) \ + ((UDMA_SPIM_ID(id) << UDMA_CHANNEL_NB_EVENTS_LOG2) + \ + UDMA_EVENT_OFFSET_SPI_EOT) +/* HYPER */ +/* #define SOC_EVENT_UDMA_HYPER_RX(id) ((UDMA_HYPER_ID(id) << + * UDMA_CHANNEL_NB_EVENTS_LOG2) + UDMA_EVENT_OFFSET_RX) */ +/* #define SOC_EVENT_UDMA_HYPER_TX(id) ((UDMA_HYPER_ID(id) << + * UDMA_CHANNEL_NB_EVENTS_LOG2) + UDMA_EVENT_OFFSET_TX) */ +/* UART */ +#define SOC_EVENT_UDMA_UART_RX(id) \ + ((UDMA_UART_ID(id) << UDMA_CHANNEL_NB_EVENTS_LOG2) + \ + UDMA_EVENT_OFFSET_RX) +#define SOC_EVENT_UDMA_UART_TX(id) \ + ((UDMA_UART_ID(id) << UDMA_CHANNEL_NB_EVENTS_LOG2) + \ + UDMA_EVENT_OFFSET_TX) +/* I2C */ +#define SOC_EVENT_UDMA_I2C_RX(id) \ + ((UDMA_I2C_ID(id) << UDMA_CHANNEL_NB_EVENTS_LOG2) + \ + UDMA_EVENT_OFFSET_RX) +#define SOC_EVENT_UDMA_I2C_TX(id) \ + ((UDMA_I2C_ID(id) << UDMA_CHANNEL_NB_EVENTS_LOG2) + \ + UDMA_EVENT_OFFSET_TX) +/* DMACPY */ +/* #define SOC_EVENT_UDMA_DMACPY_RX(id) ((UDMA_DMACPY_ID(id) << + * UDMA_CHANNEL_NB_EVENTS_LOG2) + UDMA_EVENT_OFFSET_RX) */ +/* #define SOC_EVENT_UDMA_DMACPY_TX(id) ((UDMA_DMACPY_ID(id) << + * UDMA_CHANNEL_NB_EVENTS_LOG2) + UDMA_EVENT_OFFSET_TX) */ +/* I2S */ +#define SOC_EVENT_UDMA_I2S_RX(id) \ + ((UDMA_I2S_ID(id) << UDMA_CHANNEL_NB_EVENTS_LOG2) + \ + UDMA_EVENT_OFFSET_RX) +#define SOC_EVENT_UDMA_I2S_TX(id) \ + ((UDMA_I2S_ID(id) << UDMA_CHANNEL_NB_EVENTS_LOG2) + \ + UDMA_EVENT_OFFSET_TX) +/* CPI */ +#define SOC_EVENT_UDMA_CPI_RX(id) \ + ((UDMA_CPI_ID(id) << UDMA_CHANNEL_NB_EVENTS_LOG2) + \ + UDMA_EVENT_OFFSET_RX) + +/* UDMA EOT & error events. */ +//#define SOC_EVENT_UDMA_I2C_ERROR(id) (26 + id) + +/*! @brief PMU events, no pmu*/ +/* #define SOC_EVENT_PMU_CLUSTER_POWER (31) */ +/* #define SOC_EVENT_PMU_CLUSTER_CG (35) */ +/* #define SOC_EVENT_PMU_DLC_BRIDGE_PICL (36) */ +/* #define SOC_EVENT_PMU_DLC_BRIDGE_SCU (37) */ +/* #define SOC_EVENT_PWM(id) (38 + id) */ +#define SOC_EVENT_GPIO (139) +#define SOC_EVENT_HWPE0 (140) +#define SOC_EVENT_HWPE1 (141) +/* #define SOC_EVENT_RTC_APB (43) */ +/* #define SOC_EVENT_RTC (44) */ + +#define SOC_EVENT_SW(id) (160 + (id & (NB_SW_EVENTS - 1))) +#define SOC_EVENT_REF32K_CLK_RISE (168) + +/** + * \brief Cluster IRQ + * + * Below are listed cluster IRQ. + */ +#define CL_IRQ_SW_EVT(id) (id & (NB_SW_EVENTS - 1)) +#define CL_IRQ_DMA0 (8) +#define CL_IRQ_DMA1 (9) +#define CL_IRQ_TIMER0_LO (10) +#define CL_IRQ_TIMER0_HI (11) +#define CL_IRQ_ACC_EVT_0 (12) /* HW Acc. */ +#define CL_IRQ_ACC_EVT_1 (13) /* HW Acc. */ +#define CL_IRQ_ACC_EVT_2 (14) /* HW Acc. */ +#define CL_IRQ_ACC_EVT_3 (15) /* HW Acc. */ +#define CL_IRQ_BARRIER_EVT (16) +#define CL_IRQ_HW_MUTEX_EVT (17) +#define CL_IRQ_DISPATCH_EVT (18) +/* #define CL_IRQ_CLUSTER_EVT_0 (22) */ +/* #define CL_IRQ_CLUSTER_EVT_1 (23) */ +/* #define CL_IRQ_SOC_FIFO_EVT (27) */ +#define CL_EVENT_SOC_EVT (30) /* adapted */ + + + +#define CLUSTER_TO_FC_NOTIFY_IRQN FC_IRQ_SW_EVT(2) /*!< IRQ sent by cluster to FC. + * IRQ handler is needed. + * Asynchronous. + */ +#define FC_SOC_EVENT_NOTIFY_IRQ FC_IRQ_SW_EVT(3) /*!< IRQ used by RTC. */ + + +#define FC_TO_CLUSTER_NOTIFY_EVENT CL_IRQ_SW_EVT(1) /*!< Event sent by FC to cluster. + * A cluster core is waiting for this + * event. + * Synchronous. + */ +#define DMA_SW_IRQN CL_IRQ_SW_EVT(2) /*!< Event used when emulating 2D DMA + * transfers or large 1D ttransfers. + * Master core waits for this SW event, + * triggered by CL_IRQ_DMA1 handler. + */ +#define PRINTF_LOCK_IRQN CL_IRQ_SW_EVT(3) /*!< IRQ used to sync FC and cluster cores + * to lock/unlock printf. + */ +#define CL_USER_EVENT CL_IRQ_SW_EVT(7) /*!< Event used by user to sync cluster with + * FC. + */ + +#define FC_NOTIFY_CLUSTER_EVENT FC_TO_CLUSTER_NOTIFY_EVENT + +#endif /* __EVENTS_H__ */ diff --git a/rtos/freertos/abstraction_layer_freertos/include/fc_event.h b/rtos/freertos/abstraction_layer_freertos/include/fc_event.h new file mode 100644 index 00000000..e933926b --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/include/fc_event.h @@ -0,0 +1,47 @@ +/* + * Copyright 2020 GreenWaves Technologies + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#ifndef __FC_EVENT_H__ +#define __FC_EVENT_H__ + +#include "events.h" +#include "irq.h" + +#define NB_SOC_EVENTS (SOC_EU_NB_FC_EVENTS) + +typedef void (*pi_fc_event_handler_t)(void *arg); + +void pi_fc_event_handler_init(uint32_t fc_event_irq); + +/*! + * @brief FC event handler. + * + * This function pops an event and executes the handler corresponding to the + * event. + */ +void fc_soc_event_handler(void); + +void pi_fc_event_handler_set(uint32_t event_id, + pi_fc_event_handler_t event_handler); + +void pi_fc_event_handler_clear(uint32_t event_id); + +void clear_fc_event_handler(uint32_t event_id); + + +#endif /* __FC_EVENT_H__ */ diff --git a/rtos/freertos/abstraction_layer_freertos/include/fll.h b/rtos/freertos/abstraction_layer_freertos/include/fll.h new file mode 100644 index 00000000..1b0e2b90 --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/include/fll.h @@ -0,0 +1,237 @@ +/* + * Copyright 2020 GreenWaves Technologies + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#ifndef __PI_FLL_H__ +#define __PI_FLL_H__ + +#include +#include "properties.h" +#include "memory_map.h" +#include "freq.h" + +#define FLL_STATUS_OFFSET 0x000 +#define FLL_CONF1_OFFSET 0x004 +#define FLL_CONF2_OFFSET 0x008 +#define FLL_INTEGRATOR_OFFSET 0x00C + + +/** FLL_CTRL - Registers Layout Typedef */ +typedef struct { + volatile uint32_t FLL_STATUS; /**< FLL_CTRL Status register, offset: + 0x00 */ + volatile uint32_t FLL_CONF1; /**< FLL_CTRL Configuration1 register, + offset: 0x04 */ + volatile uint32_t FLL_CONF2; /**< FLL_CTRL Configuration2 register, + offset: 0x08 */ + volatile uint32_t FLL_INTEGRATOR; /**< FLL_CTRL INTEGRATOR register, + offset: 0x0C */ +} fll_ctrl_t; + + +typedef enum _fll_type { + FLL_SOC = 0, + FLL_PERI = 1, + FLL_CLUSTER = 2 +} fll_type_t; + +/*! @name FLL_STATUS - FLL_CTRL status register */ +#define FLL_CTRL_STATUS_MULTI_FACTOR_MASK (0xFFFFU) +#define FLL_CTRL_STATUS_MULTI_FACTOR_SHIFT (0U) + +/*! @name SOC_CONF1 - FLL_CTRL configuration 1 register */ +#define FLL_CTRL_CONF1_MULTI_FACTOR_MASK (0xFFFFU) +#define FLL_CTRL_CONF1_MULTI_FACTOR_SHIFT (0U) + +#define FLL_CTRL_CONF1_DCO_INPUT_MASK (0x3FF0000U) +#define FLL_CTRL_CONF1_DCO_INPUT_SHIFT (16U) + +#define FLL_CTRL_CONF1_CLK_OUT_DIV_MASK (0x3C000000U) +#define FLL_CTRL_CONF1_CLK_OUT_DIV_SHIFT (26U) + +#define FLL_CTRL_CONF1_OUTPUT_LOCK_EN_MASK (0x40000000U) +#define FLL_CTRL_CONF1_OUTPUT_LOCK_EN_SHIFT (30U) + +#define FLL_CTRL_CONF1_MODE_MASK (0x80000000U) +#define FLL_CTRL_CONF1_MODE_SHIFT (31U) + +/*! @name SOC_CONF2 - FLL_CTRL configuration 2 register */ +#define FLL_CTRL_CONF2_LOOPGAIN_MASK (0xFU) +#define FLL_CTRL_CONF2_LOOPGAIN_SHIFT (0U) + +#define FLL_CTRL_CONF2_DEASSERT_CYCLES_MASK (0x3F0U) +#define FLL_CTRL_CONF2_DEASSERT_CYCLES_SHIFT (4U) + +#define FLL_CTRL_CONF2_ASSERT_CYCLES_MASK (0xFC00U) +#define FLL_CTRL_CONF2_ASSERT_CYCLES_SHIFT (10U) + +#define FLL_CTRL_CONF2_LOCK_TOLERANCE_MASK (0xFFF0000U) +#define FLL_CTRL_CONF2_LOCK_TOLERANCE_SHIFT (16U) + +#define FLL_CTRL_CONF2_CONF_CLK_SEL_MASK (0x20000000U) +#define FLL_CTRL_CONF2_CONF_CLK_SEL_SHIFT (29U) + +#define FLL_CTRL_CONF2_OPEN_LOOP_MASK (0x40000000U) +#define FLL_CTRL_CONF2_OPEN_LOOP_SHIFT (30U) + +#define FLL_CTRL_CONF2_DITHERING_MASK (0x80000000U) +#define FLL_CTRL_CONF2_DITHERING_SHIFT (31U) + +/*! @name SOC_INTEGRATOR - FLL_CTRL configuration 2 register */ +#define FLL_CTRL_INTEGRATOR_FRACT_PART_MASK (0xFFC0U) +#define FLL_CTRL_INTEGRATOR_FRACT_PART_SHIFT (6U) + +#define FLL_CTRL_INTEGRATOR_INT_PART_MASK (0x3FF0000U) +#define FLL_CTRL_INTEGRATOR_INT_PART_SHIFT (16U) + +/*! @name FLL_CONVERGE - FLL_CTRL configuration 2 register */ +#define FLL_CTRL_SOC_FLL_CONV_MASK (0x1U) +#define FLL_CTRL_SOC_FLL_CONV_SHIFT (0U) + +#define FLL_CTRL_CLUSTER_FLL_CONV_MASK (0x2U) +#define FLL_CTRL_CLUSTER_FLL_CONV_SHIFT (1U) + + +/* The number of FLL */ +#define FLL_NUM ARCHI_NB_FLL +/* The FLL reference frequency*/ +#define FLL_REF_CLK ARCHI_REF_CLOCK + + +/* FLL_CTRL - Peripheral instance base addresses */ +/** Peripheral FLL_CTRL base address */ +#define FLL_CTRL_BASE (SOC_PERIPHERALS_ADDR) +/** Peripheral FLL_CTRL base pointer */ +#define FLL_CTRL ((fll_ctrl_t *)FLL_CTRL_BASE) +/** Array initializer of FLL_CTRL base addresses */ +#define FLL_CTRL_BASE_ADDRS \ + { \ + FLL_CTRL_BASE \ + } +/** Array initializer of FLL_CTRL base pointers */ +#define FLL_CTRL_BASE_PTRS \ + { \ + FLL_CTRL \ + } + + +#define DCDC_OPER_POINTS (4) + +#define DCDC_DEFAULT_NV (1200) +#define DCDC_DEFAULT_MV (1200) +#define DCDC_DEFAULT_LV (1000) +#define DCDC_DEFAULT_RET (800) +#define DCDC_RANGE (5) +#define DCDC_RANGE_MASK (0x1F) +#define DCDC_BASE_VALUE (550) +#define DCDC_STEP (50) + +#define MAX_DCDC_VARIATION ((int32_t)(0.1 * 32767)) + +#define FLL_LV_MAX_FREQUENCY 150000000 +#define FLL_NV_MAX_FREQUENCY 250000000 +#define FLL_SOC_MIN_FREQUENCY 150000000 +#define FLL_SOC_MAX_FREQUENCY 250000000 +#define FLL_CLUSTER_MIN_FREQUENCY 87000000 +#define FLL_CLUSTER_MAX_FREQUENCY 175000000 + +#define FLL_SOC_FV_SLOPE \ + ((FLL_SOC_MAX_FREQUENCY - FLL_SOC_MIN_FREQUENCY) / \ + (DCDC_DEFAULT_NV - DCDC_DEFAULT_LV)) +#define FLL_CLUSTER_FV_SLOPE \ + ((FLL_CLUSTER_MAX_FREQUENCY - FLL_CLUSTER_MIN_FREQUENCY) / \ + (DCDC_DEFAULT_NV - DCDC_DEFAULT_LV)) + + +/*! + * @brief Initialize one FLL. + * + * @param which_fll SoC's or Cluster's fll. + * @param ret_state Retention state. + * + * @note . + */ +void pi_fll_init(fll_type_t which_fll, uint32_t ret_state); + +/*! + * @brief Deinitalize one FLL. + * + * @param which_fll SoC's or Cluster's fll. + * + * @note . + */ +void pi_fll_deinit(fll_type_t which_fll); + +/*! + * @brief Clean all FLL configuration. + * + * @note . + */ +void pi_fll_clear(); + + +/*! + * @brief Set specific FLL to wanted frequency. + * + * @param which_fll SoC's or Cluster's fll. + * @param frequency The frequency value to set. + * @param check Check frequency. + * + * @note . + * @return check result of frequency. + */ +int pi_fll_set_frequency(fll_type_t which_fll, uint32_t frequency, int check); + +/*! + * @brief Get specific FLL's frequency. + * + * @param which_fll SoC's or Cluster's fll. + * + * @note . + * @return frequency value. + */ +int pi_fll_get_frequency(fll_type_t which_fll, uint8_t real); + +/*! + * @brief Calculate FC SOC domain's max frequency with certain voltage + * + * @param voltage Given voltage + * + * @return max frquency. + */ +static inline int pi_fll_soc_max_freq_at_V(int voltage) +{ + return (FLL_SOC_MIN_FREQUENCY + + (voltage - DCDC_DEFAULT_LV) * FLL_SOC_FV_SLOPE); +} + +/*! + * @brief Calculate cluster domain's max frequency with certain voltage + * + * @param voltage Given voltage + * + * @return max frquency. + */ +static inline int pi_fll_cluster_max_freq_at_V(int voltage) +{ + return (FLL_CLUSTER_MIN_FREQUENCY + + (voltage - DCDC_DEFAULT_LV) * FLL_CLUSTER_FV_SLOPE); +} + + + +#endif /* __FLL_H__ */ diff --git a/rtos/freertos/abstraction_layer_freertos/include/freq.h b/rtos/freertos/abstraction_layer_freertos/include/freq.h new file mode 100644 index 00000000..c8a9a788 --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/include/freq.h @@ -0,0 +1,53 @@ +/* + * Copyright (C) 2019 GreenWaves Technologies + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + */ +/* Control frequency for soc/cluster/peripheral domains */ + +#ifndef __FREQ_H__ +#define __FREQ_H__ + +#include + +typedef enum { + PI_FREQ_DOMAIN_FC = 0, + PI_FREQ_DOMAIN_CL = 1, + PI_FREQ_DOMAIN_PERIPH = 2 +} pi_freq_domain_e; + +/** + * \brief Get current frequency of a domain. + * + * Gets the current frequency of a specific frequency domain in Hz. + * + * \param domain The frequency domain. + * \return The frequency in Hz. + */ +uint32_t pi_freq_get(pi_freq_domain_e domain); + +/** + * \brief Set frequency of a domain. + * + * Set thefrequency of a specific frequency domain in Hz. + * This can return an error if the frequency is invalid. + * + * \param domain The frequency domain. + * \param freq The desired frequency in Hz. + * \return 0 if successfull, -1 otherwise. + */ +int32_t pi_freq_set(pi_freq_domain_e domain, uint32_t freq); + +#endif /* __FREQ_H__ */ diff --git a/rtos/freertos/abstraction_layer_freertos/include/gpio.h b/rtos/freertos/abstraction_layer_freertos/include/gpio.h new file mode 100644 index 00000000..90ea093e --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/include/gpio.h @@ -0,0 +1,438 @@ +/* + * Copyright (C) 2020 ETH Zurich and University of Bologna + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/* + * Copyright (c) 2019-2020 Nordic Semiconductor ASA + * Copyright (c) 2019 Piotr Mienkowski + * Copyright (c) 2017 ARM Ltd + * Copyright (c) 2015-2016 Intel Corporation. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +/* Driver to control and configure the PULP GPIO pins */ +/* Author: Germain Haugou (germain.haugou@iis.ee.ethz.ch) + * Robert Balas (balasr@iis.ee.ethz.ch) + */ + +#ifndef __GPIO_H__ +#define __GPIO_H__ + +#include +#include + +#include "pulp_mem_map.h" +#include "io.h" +#include "pinmux.h" + +/* ControlPULP GPIO list */ + +/* SLP_S3 */ +#define GPIO_SLP_S3 0 + +/* SLP_S4 */ +#define GPIO_SLP_S4 1 + +/* SLP_S4 */ +#define GPIO_SLP_S5 2 + +/* CPU_PWRGD_OUT */ +#define GPIO_CPU_PWRGD_OUT 3 + +/* CPU_THERMTRIP */ +#define GPIO_CPU_THERMTRIP 4 + +/* CPU_ERRCODE */ +#define GPIO_ERRCODE(N) (5 + N) + +/* CPU_RESET_OUT */ +#define GPIO_RESET_OUT 9 + +/* SYS_RESET */ +#define GPIO_SYS_RESET 10 + +/* SYS_RSMRST */ +#define GPIO_SYS_RSMRST 11 + +/* SYS_PWR_BTN */ +#define GPIO_SYS_PWR_BTN 12 + +/* SYS_PWRGD_IN */ +#define GPIO_SYS_PWRGD_IN 13 + +/* SYS_WAKE */ +#define GPIO_SYS_WAKE 14 + +/* CPU_THROTTLE */ +#define GPIO_CPU_THROTTLE(N) (15 + N) + +/* CPU_SOCKET_ID */ +#define GPIO_CPU_SOCKET_ID(N) (18 + N) + +/* CPU_STRAP */ +#define GPIO_CPU_STRAP(N) (20 + N) + +/* Registers */ + +/* GPIO pad direction configuration register. */ +#define GPIO_PADDIR_OFFSET 0x0 + +/* GPIO enable register. */ +#define GPIO_GPIOEN_OFFSET 0x4 + +/* GPIO pad input value register. */ +#define GPIO_PADIN_OFFSET 0x8 + +/* GPIO pad output value register. */ +#define GPIO_PADOUT_OFFSET 0xc + +/* GPIO pad output set register. */ +#define GPIO_PADOUTSET_OFFSET 0x10 + +/* GPIO pad output clear register. */ +#define GPIO_PADOUTCLR_OFFSET 0x14 + +/* GPIO pad interrupt enable configuration register. */ +#define GPIO_INTEN_OFFSET 0x18 + +/* GPIO pad interrupt type gpio 0 to 15 register. */ +#define GPIO_INTTYPE0_OFFSET 0x1c + +/* GPIO pad interrupt type gpio 16 to 31 register. */ +#define GPIO_INTTYPE1_OFFSET 0x20 + +/* GPIO pad interrupt status register. */ +#define GPIO_INTSTATUS_OFFSET 0x24 + +/* GPIO pad pin 0 to 7 configuration register. */ +#define GPIO_PADCFG0_OFFSET 0x28 + +/* GPIO pad pin 8 to 15 configuration register. */ +#define GPIO_PADCFG1_OFFSET 0x2c + +/* GPIO pad pin 16 to 23 configuration register. */ +#define GPIO_PADCFG2_OFFSET 0x30 + +/* GPIO pad pin 24 to 31 configuration register. */ +#define GPIO_PADCFG3_OFFSET 0x34 + +/* GPIO pad direction configuration register. */ +#define GPIO_PADDIR_32_63_OFFSET 0x38 + +/* GPIO enable register. */ +#define GPIO_GPIOEN_32_63_OFFSET 0x3c + +/* GPIO pad input value register. */ +#define GPIO_PADIN_32_63_OFFSET 0x40 + +/* GPIO pad output value register. */ +#define GPIO_PADOUT_32_63_OFFSET 0x44 + +/* GPIO pad output set register. */ +#define GPIO_PADOUTSET_32_63_OFFSET 0x48 + +/* GPIO pad output clear register. */ +#define GPIO_PADOUTCLR_32_63_OFFSET 0x4c + +/* GPIO pad interrupt enable configuration register. */ +#define GPIO_INTEN_32_63_OFFSET 0x50 + +/* GPIO pad interrupt type gpio 32 to 47 register. */ +#define GPIO_INTTYPE_32_47_OFFSET 0x54 + +/* GPIO pad interrupt type gpio 48 to 63 register. */ +#define GPIO_INTTYPE_48_63_OFFSET 0x58 + +/* GPIO pad interrupt status register. */ +#define GPIO_INTSTATUS_32_63_OFFSET 0x5c + +/* GPIO pad pin 32 to 39 configuration register. */ +#define GPIO_PADCFG_32_39_OFFSET 0x60 + +/* GPIO pad pin 40 to 47 configuration register. */ +#define GPIO_PADCFG_40_47_OFFSET 0x64 + +/* GPIO pad pin 48 to 55 configuration register. */ +#define GPIO_PADCFG_48_55_OFFSET 0x68 + +/* GPIO pad pin 56 to 63 configuration register. */ +#define GPIO_PADCFG_56_63_OFFSET 0x6c + +/* Register fields */ + +/* GPIO[31:0] direction configuration bitfield: - bit[i]=1'b0: Input mode for + * GPIO[i] - bit[i]=1'b1: Output mode for GPIO[i] (access: R/W) */ +#define GPIO_PADDIR_DIR_BIT 0 +#define GPIO_PADDIR_DIR_WIDTH 32 +#define GPIO_PADDIR_DIR_MASK 0xffffffff + +/* GPIO[31:0] clock enable configuration bitfield: - bit[i]=1'b0: disable clock + * for GPIO[i] - bit[i]=1'b1: enable clock for GPIO[i] GPIOs are gathered by + * groups of 4. The clock gating of one group is done only if all 4 GPIOs are + * disabled. Clock must be enabled for a GPIO if it's direction is configured + * in input mode. (access: R/W) */ +#define GPIO_GPIOEN_GPIOEN_BIT 0 +#define GPIO_GPIOEN_GPIOEN_WIDTH 32 +#define GPIO_GPIOEN_GPIOEN_MASK 0xffffffff + +/* GPIO[31:0] input data read bitfield. DATA_IN[i] corresponds to input data of + * GPIO[i]. (access: R) */ +#define GPIO_PADIN_DATA_IN_BIT 0 +#define GPIO_PADIN_DATA_IN_WIDTH 32 +#define GPIO_PADIN_DATA_IN_MASK 0xffffffff + +/* GPIO[31:0] output data read bitfield. DATA_OUT[i] corresponds to output data + * set on GPIO[i]. (access: R/W) */ +#define GPIO_PADOUT_DATA_OUT_BIT 0 +#define GPIO_PADOUT_DATA_OUT_WIDTH 32 +#define GPIO_PADOUT_DATA_OUT_MASK 0xffffffff + +/* GPIO[31:0] set bitfield: - bit[i]=1'b0: No change for GPIO[i] - bit[i]=1'b1: + * Sets GPIO[i] to 1 (access: W) */ +#define GPIO_PADOUTSET_DATA_SET_BIT 0 +#define GPIO_PADOUTSET_DATA_SET_WIDTH 32 +#define GPIO_PADOUTSET_DATA_SET_MASK 0xffffffff + +/* GPIO[31:0] clear bitfield: - bit[i]=1'b0: No change for GPIO[i] - + * bit[i]=1'b1: Clears GPIO[i] (access: W) */ +#define GPIO_PADOUTCLR_DATA_CLEAR_BIT 0 +#define GPIO_PADOUTCLR_DATA_CLEAR_WIDTH 32 +#define GPIO_PADOUTCLR_DATA_CLEAR_MASK 0xffffffff + +/* GPIO[31:0] interrupt enable configuration bitfield: - bit[i]=1'b0: disable + * interrupt for GPIO[i] - bit[i]=1'b1: enable interrupt for GPIO[i] (access: + * R/W) */ +#define GPIO_INTEN_INTEN_BIT 0 +#define GPIO_INTEN_INTEN_WIDTH 32 +#define GPIO_INTEN_INTEN_MASK 0xffffffff + +/* GPIO[15:0] interrupt type configuration bitfield: - bit[2*i+1:2*i]=2'b00: + * interrupt on falling edge for GPIO[i] - bit[2*i+1:2*i]=2'b01: interrupt on + * rising edge for GPIO[i] - bit[2*i+1:2*i]=2'b10: interrupt on rising and + * falling edge for GPIO[i] - bit[2*i+1:2*i]=2'b11: RFU (access: R/W) */ +#define GPIO_INTTYPE0_INTTYPE0_BIT 0 +#define GPIO_INTTYPE0_INTTYPE0_WIDTH 32 +#define GPIO_INTTYPE0_INTTYPE0_MASK 0xffffffff + +/* GPIO[31:16] interrupt type configuration bitfield: - bit[2*i+1:2*i]=2'b00: + * interrupt on falling edge for GPIO[16+i] - bit[2*i+1:2*i]=2'b01: interrupt on + * rising edge for GPIO[16+i] - bit[2*i+1:2*i]=2'b10: interrupt on rising and + * falling edge for GPIO[16+i] - bit[2*i+1:2*i]=2'b11: RFU (access: R/W) */ +#define GPIO_INTTYPE1_INTTYPE1_BIT 0 +#define GPIO_INTTYPE1_INTTYPE1_WIDTH 32 +#define GPIO_INTTYPE1_INTTYPE1_MASK 0xffffffff + +/* GPIO[31:0] Interrupt status flags bitfield. INTSTATUS[i]=1 when interrupt + * received on GPIO[i]. INTSTATUS is cleared when it is red. GPIO interrupt line + * is also cleared when INTSTATUS register is red. (access: R) */ +#define GPIO_INTSTATUS_INTSTATUS_BIT 0 +#define GPIO_INTSTATUS_INTSTATUS_WIDTH 32 +#define GPIO_INTSTATUS_INTSTATUS_MASK 0xffffffff + +/* GPIO[0] pull activation configuration bitfield: - 1'b0: pull disabled - 1'b1: + * pull enabled (access: R/W) */ +#define GPIO_PADCFG0_GPIO0_CFG_BIT 0 +#define GPIO_PADCFG0_GPIO0_CFG_WIDTH 4 +#define GPIO_PADCFG0_GPIO0_CFG_MASK 0xf + +/* GPIO[0] drive strength configuration bitfield: - 1'b0: low drive strength - + * 1'b1: high drive strength (access: R/W) */ +#define GPIO_PADCFG0_GPIO1_CFG_BIT 4 +#define GPIO_PADCFG0_GPIO1_CFG_WIDTH 4 +#define GPIO_PADCFG0_GPIO1_CFG_MASK 0xf0 + +/* GPIO[1] pull activation configuration bitfield: - 1'b0: pull disabled - 1'b1: + * pull enabled (access: R/W) */ +#define GPIO_PADCFG0_GPIO2_CFG_BIT 8 +#define GPIO_PADCFG0_GPIO2_CFG_WIDTH 4 +#define GPIO_PADCFG0_GPIO2_CFG_MASK 0xf00 + +/* GPIO[1] drive strength configuration bitfield: - 1'b0: low drive strength - + * 1'b1: high drive strength (access: R/W) */ +#define GPIO_PADCFG0_GPIO3_CFG_BIT 12 +#define GPIO_PADCFG0_GPIO3_CFG_WIDTH 4 +#define GPIO_PADCFG0_GPIO3_CFG_MASK 0xf000 + +/* GPIO[2] pull activation configuration bitfield: - 1'b0: pull disabled - 1'b1: + * pull enabled (access: R/W) */ +#define GPIO_PADCFG0_GPIO4_CFG_BIT 16 +#define GPIO_PADCFG0_GPIO4_CFG_WIDTH 4 +#define GPIO_PADCFG0_GPIO4_CFG_MASK 0xf0000 + +/* GPIO[2] drive strength configuration bitfield: - 1'b0: low drive strength - + * 1'b1: high drive strength (access: R/W) */ +#define GPIO_PADCFG0_GPIO5_CFG_BIT 20 +#define GPIO_PADCFG0_GPIO5_CFG_WIDTH 4 +#define GPIO_PADCFG0_GPIO5_CFG_MASK 0xf00000 + +/* GPIO[3] pull activation configuration bitfield: - 1'b0: pull disabled - 1'b1: + * pull enabled (access: R/W) */ +#define GPIO_PADCFG0_GPIO6_CFG_BIT 24 +#define GPIO_PADCFG0_GPIO6_CFG_WIDTH 4 +#define GPIO_PADCFG0_GPIO6_CFG_MASK 0xf000000 + +/* GPIO[3] drive strength configuration bitfield: - 1'b0: low drive strength - + * 1'b1: high drive strength (access: R/W) */ +#define GPIO_PADCFG0_GPIO7_CFG_BIT 28 +#define GPIO_PADCFG0_GPIO7_CFG_WIDTH 4 +#define GPIO_PADCFG0_GPIO7_CFG_MASK 0xf0000000 + +/* GPIO[4] pull activation configuration bitfield: - 1'b0: pull disabled - 1'b1: + * pull enabled (access: R/W) */ +#define GPIO_PADCFG1_GPIO4_PE_BIT 0 +#define GPIO_PADCFG1_GPIO4_PE_WIDTH 1 +#define GPIO_PADCFG1_GPIO4_PE_MASK 0x1 + +/* GPIO[4] drive strength configuration bitfield: - 1'b0: low drive strength - + * 1'b1: high drive strength (access: R/W) */ +#define GPIO_PADCFG1_GPIO4_DS_BIT 1 +#define GPIO_PADCFG1_GPIO4_DS_WIDTH 1 +#define GPIO_PADCFG1_GPIO4_DS_MASK 0x2 + +/* GPIO[63:32] direction configuration bitfield: - bit[i]=1'b0: Input mode for + * GPIO[i] - bit[i]=1'b1: Output mode for GPIO[i] (access: R/W) */ +#define GPIO_PADDIR_32_63_DIR_BIT 0 +#define GPIO_PADDIR_32_63_DIR_WIDTH 32 +#define GPIO_PADDIR_32_63_DIR_MASK 0xffffffff + +/* GPIO[63:32] clock enable configuration bitfield: - bit[i]=1'b0: disable clock + * for GPIO[i] - bit[i]=1'b1: enable clock for GPIO[i] GPIOs are gathered by + * groups of 4. The clock gating of one group is done only if all 4 GPIOs are + * disabled. Clock must be enabled for a GPIO if it's direction is configured + * in input mode. (access: R/W) */ +#define GPIO_GPIOEN_32_63_GPIOEN_BIT 0 +#define GPIO_GPIOEN_32_63_GPIOEN_WIDTH 32 +#define GPIO_GPIOEN_32_63_GPIOEN_MASK 0xffffffff + +/* GPIO[63:32] input data read bitfield. DATA_IN[i] corresponds to input data of + * GPIO[i]. (access: R) */ +#define GPIO_PADIN_32_63_DATA_IN_BIT 0 +#define GPIO_PADIN_32_63_DATA_IN_WIDTH 32 +#define GPIO_PADIN_32_63_DATA_IN_MASK 0xffffffff + +/* GPIO[63:32] output data read bitfield. DATA_OUT[i] corresponds to output data + * set on GPIO[i]. (access: R/W) */ +#define GPIO_PADOUT_32_63_DATA_OUT_BIT 0 +#define GPIO_PADOUT_32_63_DATA_OUT_WIDTH 32 +#define GPIO_PADOUT_32_63_DATA_OUT_MASK 0xffffffff + +/* GPIO[63:32] set bitfield: - bit[i]=1'b0: No change for GPIO[i] - bit[i]=1'b1: + * Sets GPIO[i] to 1 (access: W) */ +#define GPIO_PADOUTSET_32_63_DATA_SET_BIT 0 +#define GPIO_PADOUTSET_32_63_DATA_SET_WIDTH 32 +#define GPIO_PADOUTSET_32_63_DATA_SET_MASK 0xffffffff + +/* GPIO[63:32] clear bitfield: - bit[i]=1'b0: No change for GPIO[i] - + * bit[i]=1'b1: Clears GPIO[i] (access: W) */ +#define GPIO_PADOUTCLR_32_63_DATA_CLEAR_BIT 0 +#define GPIO_PADOUTCLR_32_63_DATA_CLEAR_WIDTH 32 +#define GPIO_PADOUTCLR_32_63_DATA_CLEAR_MASK 0xffffffff + +/* GPIO[63:32] interrupt enable configuration bitfield: - bit[i]=1'b0: disable + * interrupt for GPIO[i] - bit[i]=1'b1: enable interrupt for GPIO[i] (access: + * R/W) */ +#define GPIO_INTEN_32_63_INTEN_BIT 0 +#define GPIO_INTEN_32_63_INTEN_WIDTH 32 +#define GPIO_INTEN_32_63_INTEN_MASK 0xffffffff + +/* GPIO[47:32] interrupt type configuration bitfield: - bit[2*i+1:2*i]=2'b00: + * interrupt on falling edge for GPIO[i] - bit[2*i+1:2*i]=2'b01: interrupt on + * rising edge for GPIO[i] - bit[2*i+1:2*i]=2'b10: interrupt on rising and + * falling edge for GPIO[i] - bit[2*i+1:2*i]=2'b11: RFU (access: R/W) */ +#define GPIO_INTTYPE_32_47_INTTYPE0_BIT 0 +#define GPIO_INTTYPE_32_47_INTTYPE0_WIDTH 32 +#define GPIO_INTTYPE_32_47_INTTYPE0_MASK 0xffffffff + +/* GPIO[63:48] interrupt type configuration bitfield: - bit[2*i+1:2*i]=2'b00: + * interrupt on falling edge for GPIO[16+i] - bit[2*i+1:2*i]=2'b01: interrupt on + * rising edge for GPIO[16+i] - bit[2*i+1:2*i]=2'b10: interrupt on rising and + * falling edge for GPIO[16+i] - bit[2*i+1:2*i]=2'b11: RFU (access: R/W) */ +#define GPIO_INTTYPE_48_63_INTTYPE1_BIT 0 +#define GPIO_INTTYPE_48_63_INTTYPE1_WIDTH 32 +#define GPIO_INTTYPE_48_63_INTTYPE1_MASK 0xffffffff + +/* GPIO[63:32] Interrupt status flags bitfield. INTSTATUS[i]=1 when interrupt + * received on GPIO[i]. INTSTATUS is cleared when it is red. GPIO interrupt line + * is also cleared when INTSTATUS register is red. (access: R) */ +#define GPIO_INTSTATUS_32_63_INTSTATUS_BIT 0 +#define GPIO_INTSTATUS_32_63_INTSTATUS_WIDTH 32 +#define GPIO_INTSTATUS_32_63_INTSTATUS_MASK 0xffffffff + +/* required for gpio_pin_conf_pad() */ +static_assert((GPIO_PADCFG0_OFFSET + 0x4 == GPIO_PADCFG1_OFFSET) && + (GPIO_PADCFG1_OFFSET + 0x4 == GPIO_PADCFG2_OFFSET) && + (GPIO_PADCFG2_OFFSET + 0x4 == GPIO_PADCFG3_OFFSET), + "GPIO_PADCFG*_OFFSET has unexpected addresses (spacing)"); + +/* this API is from gpio.h of zephyr */ + +/* this is custom */ +/** Enables internal pull */ +#define GPIO_PULL_ENABLE (1U << 1) + +/** Enables high drive strength */ +#define GPIO_DRIVE_STRENGTH_HIGH (1U << 1) + +/* this is zephyr */ +/** Enables pin as input. */ +#define GPIO_INPUT (1U << 8) + +/** Enables pin as output, no change to the output state. */ +#define GPIO_OUTPUT (1U << 9) + +/** Disables pin for both input and output. */ +#define GPIO_DISCONNECTED 0 + +/** @cond INTERNAL_HIDDEN */ + +/* Initializes output to a low state. */ +#define GPIO_OUTPUT_INIT_LOW (1U << 10) + +/* Initializes output to a high state. */ +#define GPIO_OUTPUT_INIT_HIGH (1U << 11) + +/* Initializes output based on logic level */ +#define GPIO_OUTPUT_INIT_LOGICAL (1U << 12) + +/** @endcond */ + +/** Configures GPIO pin as output and initializes it to a low state. */ +#define GPIO_OUTPUT_LOW (GPIO_OUTPUT | GPIO_OUTPUT_INIT_LOW) +/** Configures GPIO pin as output and initializes it to a high state. */ +#define GPIO_OUTPUT_HIGH (GPIO_OUTPUT | GPIO_OUTPUT_INIT_HIGH) +/** Configures GPIO pin as output and initializes it to a logic 0. */ +#define GPIO_OUTPUT_INACTIVE \ + (GPIO_OUTPUT | GPIO_OUTPUT_INIT_LOW | GPIO_OUTPUT_INIT_LOGICAL) +/** Configures GPIO pin as output and initializes it to a logic 1. */ +#define GPIO_OUTPUT_ACTIVE \ + (GPIO_OUTPUT | GPIO_OUTPUT_INIT_HIGH | GPIO_OUTPUT_INIT_LOGICAL) + +int gpio_pin_conf_pad(int pin, uint32_t flags); + + +/* for now we only handle the gpio from 0-31 and ignore 32-63 */ +int gpio_pin_configure(int pin, uint32_t flags); +int gpio_port_get_raw(uint32_t *value); +int gpio_port_set_masked_raw(uint32_t mask, uint32_t value); +int gpio_port_set_bits_raw(uint32_t mask); +int gpio_port_clear_bits_raw(uint32_t mask); +int gpio_port_toggle_bits(uint32_t mask); +int gpio_pin_get_raw(int pin); +int gpio_pin_set_raw(int pin, int value); +int gpio_pin_toggle(int pin); + + +#endif /* __GPIO_H__ */ diff --git a/rtos/freertos/abstraction_layer_freertos/include/i2c.h b/rtos/freertos/abstraction_layer_freertos/include/i2c.h new file mode 100644 index 00000000..8f7a368b --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/include/i2c.h @@ -0,0 +1,434 @@ +/* + * Copyright (C) 2020 GreenWaves Technologies + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#ifndef __PI_DRIVERS_I2C_H__ +#define __PI_DRIVERS_I2C_H__ + +#include "pmsis_types.h" + +#ifdef __cplusplus +extern "C" { +#endif + +/** +* @ingroup groupDrivers +*/ + + +/** + * @defgroup I2C I2C + * + * The I2C driver provides support for transferring data between an external + * I2C device and the chip running this driver. + * + */ + +/** + * @addtogroup I2C + * @{ + */ + +/**@{*/ + +/// @cond IMPLEM + +#define __PI_I2C_CTRL_SET_MAX_BAUDRATE_BIT 0 + +/// @endcond + +/** + * \struct pi_i2c_conf + * \brief I2C master configuration structure. + * + * This structure is used to pass the desired I2C configuration to the runtime + * when opening a device. + */ +typedef struct pi_i2c_conf +{ + pi_device_e device; /* Device type. */ + uint8_t itf; /*!< Specifies on which I2C interface the device is + connected. */ + uint16_t cs; /*!< i2c slave address (7 or 10 bits), the + runtime will take care of the LSB of read and write. */ + int8_t is_10_bits; + uint16_t wait_cycles; + uint32_t max_baudrate; /*!< Maximum baudrate for the I2C bitstream which + can be used with the opened device . */ + uint8_t ts_ch; /*!< Enable the timestamp on TX (0) or RX (1) */ + uint8_t ts_evt_id; /*!< UDMA Config Event ID for generating the timestamp */ +} pi_i2c_conf_t; + + +/** \enum pi_i2c_xfer_flags_e + * \brief Properties for I2C transfers + * + * This is used to specify additional behaviors when transfering data through + * I2C. + */ +typedef enum { + PI_I2C_XFER_STOP = 0<<0, /*!< Generate a STOP bit at the end of the + transfer. */ + PI_I2C_XFER_NO_STOP = 1<<0, /*!< Don't generate a STOP bit at the end of + the transfer. */ + PI_I2C_XFER_START = 0<<1, /*!< Generate a START bit at the beginning of + the transfer. */ + PI_I2C_XFER_NO_START = 1<<1, /*!< Don't generate a START bit at the + beginning of the transfer. */ + PI_I2C_XFER_RESTART = 1<<2, /*!< Generate a RESTART bit at the beginning of + the transfer. */ + PI_I2C_XFER_NO_RESTART = 0<<2 /*!< Don't generate a RESTART bit at the + beginning of the transfer. */ +} pi_i2c_xfer_flags_e; + + +/** \enum pi_i2c_ioctl_e + * \brief Commands for pi_i2c_control. + * + * This is used to tell which command to execute through pi_i2c_control. + */ +typedef enum +{ + /** + * \brief Change maximum baudrate. + * + * \param baudrate Max baudrate. + */ + PI_I2C_CTRL_SET_MAX_BAUDRATE = 1 << __PI_I2C_CTRL_SET_MAX_BAUDRATE_BIT, + /** + * \brief Abort RX transfer. + * + * Abort current RX transfert. + */ + PI_I2C_IOCTL_ABORT_RX = 6, + /** + * \brief Abort TX transfer. + * + * Abort current TX transfert. + */ + PI_I2C_IOCTL_ABORT_TX = 7, + /** + * \brief Attach UDMA timer. + * + * This command attaches a UDMA timer channel to UDMA reception channel. + * + * \param timeout_id UDMA timeout channel ID. + */ + PI_I2C_IOCTL_ATTACH_TIMEOUT_RX = 8, + /** + * \brief Detach UDMA timer. + * + * This command removes a UDMA timer channel attached to UDMA reception channel. + * + * \param timeout_id UDMA timeout channel ID. + */ + PI_I2C_IOCTL_DETACH_TIMEOUT_RX = 9, + /** + * \brief Attach UDMA timer. + * + * This command attaches a UDMA timer channel to UDMA transmission channel. + * + * \param timeout_id UDMA timeout channel ID. + */ + PI_I2C_IOCTL_ATTACH_TIMEOUT_TX = 10, + /** + * \brief Detach UDMA timer. + * + * This command removes a UDMA timer channel attached to UDMA transmission channel. + * + * \param timeout_id UDMA timeout channel ID. + */ + PI_I2C_IOCTL_DETACH_TIMEOUT_TX = 11, + + /** + * \brief Enable the timestamp + * + * Enable the timestamp feature for the i2c interface. + */ + PI_I2C_IOCTL_EN_TIMESTAMP = 12 + +} pi_i2c_ioctl_e; + +/** \brief Initialize an I2C configuration with default values. + * + * This function can be called to get default values for all parameters before + * setting some of them. The structure containing the configuration must be + * kept alive until the I2C device is opened. + * + * \param conf A pointer to the I2C configuration. + */ +void pi_i2c_conf_init(pi_i2c_conf_t *conf); + + +/** + * \brief set slave addr in conf. + * + * \param conf A pointer to the I2C configuration. + * \param slave_addr Address of the slave device. + * \param is_10_bits Indicate if slave address is 7 bits or 10 bits. + */ +void pi_i2c_conf_set_slave_addr(struct pi_i2c_conf *conf, uint16_t slave_addr, + int8_t is_10_bits); + +/** \brief set wait_cycles in conf. + * + * \param conf A pointer to the I2C configuration. + * \param wait_cycles Number of wait cycles applied at the end of transfer + */ +void pi_i2c_conf_set_wait_cycles(struct pi_i2c_conf *conf, uint16_t wait_cycles); + +/** \brief Open an I2C device. + * + * This function must be called before the Hyperbus device can be used. + * It will do all the needed configuration to make it usable and initialize + * the handle used to refer to this opened device when calling other functions. + * + * \param device A pointer to the device structure of the device to open. + * This structure is allocated by the called and must be kept alive until the + * device is closed. + * \return 0 if the operation is successfull, -1 if there was an error. + */ +int pi_i2c_open(struct pi_device *device); + +/** \brief Close an opened I2C device. + * + * This function can be called to close an opened I2C device once it is + * not needed anymore, in order to free all allocated resources. Once this + * function is called, the device is not accessible anymore and must be opened + * again before being used. + * + * \param device The device structure of the device to close. + */ +void pi_i2c_close (struct pi_device *device); + +/** \brief Dynamically change the device configuration. + * + * This function can be called to change part of the device configuration after + * it has been opened. + * + * \param device A pointer to the structure describing the device. + * \param cmd The command which specifies which parameters of the driver to + * modify and for some of them also their values. The command must be one of + * those defined in pi_i2c_ioctl_e. + * \param arg An additional value which is required for some parameters + * when they are set. + */ +void pi_i2c_ioctl(struct pi_device *device, uint32_t cmd, void *arg); + +/** \brief Enqueue a burst read copy from the I2C (from I2C device to chip). + * + * This function can be used to read at least 1 byte of data from the I2C + * device. The copy will make a synchronous transfer between the I2C and one of + * the chip memory. + * The caller is blocked until the transfer is finished. + * Depending on the chip, there may be some restrictions on the memory which + * can be used. Check the chip-specific documentation for more details. + * + * \param device A pointer to the structure describing the device. + * \param rx_buff The address in the chip where the received data must be + * written. + * \param length The size in bytes of the copy. + * \param flags Specify additional transfer behaviors like start and stop bits + * management. + * + * \return PI_OK if request is successful + * PI_ERR_I2C_NACK if a NACK was received during the request + */ +int pi_i2c_read(struct pi_device *device, uint8_t *rx_buff, int length, + pi_i2c_xfer_flags_e flags); + +/** \brief Enqueue a burst write copy to the I2C (from chip to I2C device). + * + * This function can be used to write at least 1 byte of data to the I2C device. + * The copy will make a synchronous transfer between the I2C and one of the + * chip memory. + * The caller is blocked until the transfer is finished. + * Depending on the chip, there may be some restrictions on the memory which + * can be used. Check the chip-specific documentation for more details. + * + * \param device A pointer to the structure describing the device. + * \param tx_data The address in the chip where the data to be sent is read. + * \param length The size in bytes of the copy. + * \param flags Specify additional transfer behaviors like start and stop bits + * management. + * + * \return PI_OK if request is successful + * PI_ERR_I2C_NACK if a NACK was received during the request + */ +int pi_i2c_write(struct pi_device *device, uint8_t *tx_data, int length, + pi_i2c_xfer_flags_e flags); + + +void pi_i2c_write_read(struct pi_device *device, void *tx_buffer, + void *rx_buffer, uint32_t tx_size, uint32_t rx_size); + +void pi_i2c_write_dual(struct pi_device *device, void *tx_buffer0, + void *tx_buffer1, uint32_t tx_size0, uint32_t tx_size1); + +/** \brief Enqueue an asynchronous burst read copy from the I2C (from I2C + * device to chip). + * + * This function can be used to read at least 1 byte of data from the I2C + * device. + * The copy will make an asynchronous transfer between the I2C and one of the + * chip memory. + * A task must be specified in order to specify how the caller should be + * notified when the transfer is finished. + * The task will contain the request status (success or error). It should be + * retrieved using the pi_i2c_get_request_status function. + * Depending on the chip, there may be some restrictions on the memory which + * can be used. Check the chip-specific documentation for more details. + * + * \param device A pointer to the structure describing the device. + * \param rx_buff The address in the chip where the received data must be + * written. + * \param length The size in bytes of the copy. + * \param flags Specify additional transfer behaviors like start and stop + * bits management. + * \param task The task used to notify the end of transfer. + See the documentation of pi_task_t for more details. + */ +void pi_i2c_read_async(struct pi_device *device, uint8_t *rx_buff, int length, + pi_i2c_xfer_flags_e flags, pi_task_t *task); + +/** \brief Enqueue a burst write copy to the I2C (from chip to I2C device). + * + * This function can be used to write at least 1 byte of data to the I2C device. + * The copy will make an asynchronous transfer between the I2C and one of the + * chip memory. + * A task must be specified in order to specify how the caller should be + * notified when the transfer is finished. + * The task will contain the request status (success or error). It should be + * retrieved using the pi_i2c_get_request_status function. + * Depending on the chip, there may be some restrictions on the memory which + * can be used. Check the chip-specific documentation for more details. + * + * \param device A pointer to the structure describing the device. + * \param tx_data The address in the chip where the data to be sent is read. + * \param length The size in bytes of the copy + * \param flags Specify additional transfer behaviors like start and stop bits + * management. + * \param task The task used to notify the end of transfer. + See the documentation of pi_task_t for more details. + */ +void pi_i2c_write_async(struct pi_device *device, uint8_t *tx_data, int length, + pi_i2c_xfer_flags_e flags, pi_task_t *task); + +void pi_i2c_write_read_async(struct pi_device *device, void *tx_buffer, + void *rx_buffer, uint32_t tx_size, uint32_t rx_size, pi_task_t *callback); + +void pi_i2c_write_dual_async(struct pi_device *device, void *tx_buffer0, + void *tx_buffer1, uint32_t tx_size0, uint32_t tx_size1, pi_task_t *callback); + +/** + * \brief Enqueue an asynchronous burst read copy from the I2C (from I2C + * device to chip), with timeout. + * + * This function has the same behaviour as pi_i2c_read(), with timeout. + * This timeout value is used to abort/cancel a transfer when timeout is reached. + * + * \param device Pointer to the structure describing the device. + * \param rx_buff Address in the chip where the received data must be written. + * \param length Size in bytes of the copy. + * \param flags Specify additional transfer behaviors like start and stop + * bits management. + * \param timeout_us Timeout value in us. + * + * \note To use this feature, a UDMA timeout channel must be allocated before a + * call to this functions : + * * pi_udma_timeout_alloc() + * * pi_i2c_ioctl() //PI_I2C_IOCTL_ATTACH_TIMEOUT_RX + * + * \note To use this feature asynchronously, proceed as follows : + * * pi_udma_timeout_alloc() + * * pi_i2c_ioctl() //PI_I2C_IOCTL_ATTACH_TIMEOUT_RX + * * pi_task_timeout_set() + * * pi_i2c_write_async() + */ +int pi_i2c_read_timeout(struct pi_device *device, uint8_t *rx_buff, int length, + pi_i2c_xfer_flags_e flags, uint32_t timeout_us); + +/** + * \brief Enqueue a burst write copy to the I2C (from chip to I2C device), with timeout. + * + * This function has the same behaviour as pi_i2c_write(), with timeout. + * This timeout value is used to abort/cancel a transfer when timeout is reached. + * + * \param device Pointer to the structure describing the device. + * \param tx_data Address in the chip where the data to be sent is read. + * \param length Size in bytes of the copy + * \param flags Specify additional transfer behaviors like start and stop bits + * management. + * \param timeout_us Timeout value in us. + * + * \note To use this feature, a UDMA timeout channel must be allocated before a + * call to this functions : + * * pi_udma_timeout_alloc() + * * pi_i2c_ioctl() //PI_I2C_IOCTL_ATTACH_TIMEOUT_TX + * + * \note To use this feature asynchronously, proceed as follows : + * * pi_udma_timeout_alloc() + * * pi_i2c_ioctl() //PI_I2C_IOCTL_ATTACH_TIMEOUT_TX + * * pi_task_timeout_set() + * * pi_i2c_write_async() + */ +int pi_i2c_write_timeout(struct pi_device *device, uint8_t *tx_data, int length, + pi_i2c_xfer_flags_e flags, uint32_t timeout_us); + +/** + * \brief get the request status from a task + * + * This function can be used to retrieve the request status + * from a task. + * + * \param task the task to retrieve the status from + * + * \warning in order to be able to retrieve the request status + * you need to pass a pointer to the task as the first + * callback argument. You can use next arguments as you please. + * + * \return PI_OK if the request was successful + * PI_ERR_I2C_NACK if a NACK was received during the request + */ +int pi_i2c_get_request_status(pi_task_t* task); + +/** + * \brief Scan i2c bus to detect a dev + * + * This function can be used to detect if a device is connected to the i2c bus. + * The pi_i2c_conf_t structure is used to pass the address of the device + * to look for, with different baudrate if needed. + * + * \param device Pointer to device structure. + * \param conf Conf struct holding address and baudrate. + * \param rx_data Pointer to 1 Byte buffer to store data. + * + * \retval 0x00 If a device has been detected at given address. + * \retval 0xFF Otherwise. + */ +int pi_i2c_detect(struct pi_device *device, struct pi_i2c_conf *conf, uint8_t *rx_data); + +//!@} + +/** + * @} + */ + + + +#ifdef __cplusplus +} +#endif +#endif /* __PI_DRIVERS_I2C_H__ */ diff --git a/rtos/freertos/abstraction_layer_freertos/include/i2c_periph.h b/rtos/freertos/abstraction_layer_freertos/include/i2c_periph.h new file mode 100644 index 00000000..2a5b120a --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/include/i2c_periph.h @@ -0,0 +1,96 @@ +/* + * Copyright (C) 2021 ETH Zurich, University of Bologna + * and GreenWaves Technologies + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#ifndef __I2C_PERIPH_H__ +#define __I2C_PERIPH_H__ + + +/* ---------------------------------------------------------------------------- + -- I2C Peripheral Access Layer -- + ---------------------------------------------------------------------------- */ + +/** I2C_Type Register Layout Typedef */ +typedef struct i2c { + udma_channel_t rx; /**< UDMA RX channel struct. */ + udma_channel_t tx; /**< UDMA TX channel struct. */ + /* this is a i2c v3 feature, but we have a v2 driver */ + /* udma_channel_t cmd; /\**< UDMA CMD channel struct. *\/ */ + volatile uint32_t status; /**< Status register. */ + volatile uint32_t setup; /**< Configuration register. */ + volatile uint32_t ack; /**< Nack register (optional). */ +} i2c_t; + + +/* ---------------------------------------------------------------------------- + -- I2C Register Bitfield Access -- + ---------------------------------------------------------------------------- */ + +/*! @name STATUS */ +/* I2C bus busy status flag: + - 1'b0: no transfer on-going + - 1'b1: transfer on-going */ +#define I2C_STATUS_BUSY_MASK (0x1) +#define I2C_STATUS_BUSY_SHIFT (0) +#define I2C_STATUS_BUSY(val) \ + (((uint32_t)(((uint32_t)(val)) << I2C_STATUS_BUSY_SHIFT)) & I2C_STATUS_BUSY_MASK) + +/* I2C arbitration lost status flag: + - 1'b0: no error + - 1'b1: arbitration lost error */ +#define I2C_STATUS_ARB_LOST_MASK (0x2) +#define I2C_STATUS_ARB_LOST_SHIFT (1) +#define I2C_STATUS_ARB_LOST(val) \ + (((uint32_t)(((uint32_t)(val)) << I2C_STATUS_ARB_LOST_SHIFT)) & I2C_STATUS_ARB_LOST_MASK) + + +/*! @name SETUP */ +/* Reset command used to abort the on-going transfer and clear busy and arbitration lost status + * flags. */ +#define I2C_SETUP_DO_RST_MASK (0x1) +#define I2C_SETUP_DO_RST_SHIFT (0) +#define I2C_SETUP_DO_RST(val) \ + (((uint32_t)(((uint32_t)(val)) << I2C_SETUP_DO_RST_SHIFT)) & I2C_SETUP_DO_RST_MASK) + + +#ifdef CONFIG_UDMA_I2C_ACK +/*! @name NACK */ +/* Read out ACK/NACK status of a the i2c slave */ +#define I2C_ACK_NACK_MASK (0x1) +#define I2C_ACK_NACK_SHIFT (0) +#define I2C_ACK_NACK(val) \ + (((uint32_t)(((uint32_t)(val)) << I2C_ACK_NACK_SHIFT)) & I2C_ACK_NACK_MASK) + +#endif + +/* ---------------------------------------------------------------------------- + -- CMD IDs and macros -- + ---------------------------------------------------------------------------- */ +#define I2C_CMD_MASK (0xF0U) +#define I2C_CMD_SHIFT (4U) +#define I2C_CMD_OFFSET 4 + +#define I2C_CMD_START (((uint32_t)(((uint32_t)(0x0)) << I2C_CMD_SHIFT)) & I2C_CMD_MASK) // 0x00 +#define I2C_CMD_WAIT_EV (((uint32_t)(((uint32_t)(0x1)) << I2C_CMD_SHIFT)) & I2C_CMD_MASK) // 0x10 +#define I2C_CMD_STOP (((uint32_t)(((uint32_t)(0x2)) << I2C_CMD_SHIFT)) & I2C_CMD_MASK) // 0x20 +#define I2C_CMD_RD_ACK (((uint32_t)(((uint32_t)(0x4)) << I2C_CMD_SHIFT)) & I2C_CMD_MASK) // 0x40 +#define I2C_CMD_RD_NACK (((uint32_t)(((uint32_t)(0x6)) << I2C_CMD_SHIFT)) & I2C_CMD_MASK) // 0x60 +#define I2C_CMD_WR (((uint32_t)(((uint32_t)(0x8)) << I2C_CMD_SHIFT)) & I2C_CMD_MASK) // 0x80 +#define I2C_CMD_WAIT (((uint32_t)(((uint32_t)(0xA)) << I2C_CMD_SHIFT)) & I2C_CMD_MASK) // 0xA0 +#define I2C_CMD_RPT (((uint32_t)(((uint32_t)(0xC)) << I2C_CMD_SHIFT)) & I2C_CMD_MASK) // 0xC0 +#define I2C_CMD_CFG (((uint32_t)(((uint32_t)(0xE)) << I2C_CMD_SHIFT)) & I2C_CMD_MASK) // 0xE0 + +#endif /* __I2C_PERIPH_H__ */ diff --git a/rtos/freertos/abstraction_layer_freertos/include/implementation_specific_defines.h b/rtos/freertos/abstraction_layer_freertos/include/implementation_specific_defines.h new file mode 100644 index 00000000..cfc6e918 --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/include/implementation_specific_defines.h @@ -0,0 +1,59 @@ +/* + * Copyright 2019 GreenWaves Technologies + * Copyright 2020 ETH Zurich + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#ifndef __IMPLEMENTATION_SPECIFIC_DEFINES_H__ +#define __IMPLEMENTATION_SPECIFIC_DEFINES_H__ + +#include +#include "stdlib.h" +#include "string.h" + +/* #if defined(__GAP8__) */ +/* #include "system_gap8.h" */ +/* #elif defined(__GAP9__) */ +/* #include "system_gap9.h" */ +/* #elif defined(__PULP__) */ +/* #include "system_pulp_ri5cy.h" */ +/* #else */ +/* #error "Target specific macro is not set. Recommended to use __PULP__." */ +/* #endif */ + +#define __INC_TO_STRING(x) #x + +#define PMSIS_TASK_EVENT_KERNEL_PRIORITY 2 +#define DEFAULT_MALLOC_INC __INC_TO_STRING(pmsis/rtos/malloc/l2_malloc.h) + +// default malloc for driver structs etc (might not be compatible with udma!) +/* TODO: rereoute to newlib malloc (?)*/ +#define pi_default_malloc(x) malloc(x) +#define pi_default_free(x,y) free(x) +#define pi_data_malloc(x) malloc(x) +#define pi_data_free(x,y) free(x) +/* TODO: hack */ +#define pmsis_l2_malloc pi_l2_malloc +#define pmsis_l2_malloc_align pi_l2_malloc_align +#define pmsis_l2_malloc_free pi_l2_free +#define pmsis_l2_malloc_init pi_l2_malloc_init +#define pmsis_l2_malloc_dump pi_l2_malloc_dump + +#define PI_TASK_IMPLEM \ + uint8_t destroy; +#define CLUSTER_TASK_IMPLEM \ + uint32_t cluster_team_mask; +#endif /* __IMPLEMENTATION_SPECIFIC_DEFINES_H__ */ diff --git a/rtos/freertos/abstraction_layer_freertos/include/irq.h b/rtos/freertos/abstraction_layer_freertos/include/irq.h new file mode 100644 index 00000000..107efa5c --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/include/irq.h @@ -0,0 +1,391 @@ +/* + * Copyright (C) 2019 ETH Zurich and University of Bologna + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +/* Interrupt controller definitions */ +/* Author: Robert Balas (balasr@iis.ee.ethz.ch) + * Germain Haugou (germain.haugou@iis.ee.ethz.ch) + */ + +#ifndef __IRQ_H__ +#define __IRQ_H__ + +#include "io.h" +#include "bits.h" +#include "memory_map.h" +#include "riscv.h" + +#define IRQ_REG_MASK_OFFSET 0x000 +#define IRQ_REG_MASK_SET_OFFSET 0x004 +#define IRQ_REG_MASK_CLEAR_OFFSET 0x008 +#define IRQ_REG_INT_OFFSET 0x00C +#define IRQ_REG_INT_SET_OFFSET 0x010 +#define IRQ_REG_INT_CLEAR_OFFSET 0x014 +#define IRQ_REG_ACK_OFFSET 0x018 +#define IRQ_REG_ACK_SET_OFFSET 0x01C +#define IRQ_REG_ACK_CLEAR_OFFSET 0x020 +#define IRQ_REG_FIFO_OFFSET 0x024 + +/* Interrupt line masks: these interrupts directly go to the core (after being + * serialized as reqest + id). We refer to these interrupts with the prefix IRQ. + * Events on the other we strictly use to refer to "interrupts/events" that are + * signaled through (muxed) EU SoC interrupts (IRQ_FC_EVT_SOC_EVT) and need + * additional handling by the user through the Event Unit. + */ +#define IRQ_FC_EVT_SW0 BIT(0) +#define IRQ_FC_EVT_SW1 BIT(1) +#define IRQ_FC_EVT_SW2 BIT(2) +#define IRQ_FC_EVT_SW3 BIT(3) +#define IRQ_FC_EVT_SW4 BIT(4) +#define IRQ_FC_EVT_SW5 BIT(5) +#define IRQ_FC_EVT_SW6 BIT(6) +#define IRQ_FC_EVT_SW7 BIT(7) +#define IRQ_FC_EVT_DMA_PE_EVT BIT(8) +#define IRQ_FC_EVT_DMA_PE_IRQ BIT(9) +#define IRQ_FC_EVT_TIMER0_LO BIT(10) +#define IRQ_FC_EVT_TIMER0_HI BIT(11) +#define IRQ_FC_EVT_PF BIT(12) +#define IRQ_FC_EVT_CLK_REF BIT(14) +#define IRQ_FC_EVT_GPIO BIT(15) + +/* is not in PULPissimo */ +/*#define IRQ_FC_EVT_RTC 16 */ + +#define IRQ_FC_EVT_ADV_TIMER0 BIT(17) +#define IRQ_FC_EVT_ADV_TIMER1 BIT(18) +#define IRQ_FC_EVT_ADV_TIMER2 BIT(19) +#define IRQ_FC_EVT_ADV_TIMER3 BIT(20) + +/* is not in PULPissimo */ +/* #define IRQ_FC_EVT_CLUSTER_NOT_BUSY 21 */ +/* #define IRQ_FC_EVT_CLUSTER_POK 22 */ +/* #define IRQ_FC_EVT_CLUSTER_CG_OK 23 */ +/* #define IRQ_FC_EVT_PICL_OK 24 */ +/* #define IRQ_FC_EVT_SCU_OK 25 */ + +/* + * SoC event unit events: Many events get implicitely muxed into this interrupt. + * A user that gets such an interrupt has to check the event unit's registers to + * see what happened + */ +#define IRQ_FC_EVT_SOC_EVT BIT(26) +/* + * Event queue error: If we don't process event unit events quickly enough + * internal fifos can overflow and we get this error interrupt + */ +#define IRQ_FC_EVT_QUIRQE_ERROR BIT(29) +/* High priority peripheral events: these are hardcoded to directly go to the + * core using a dedicated interrupt line + */ +#define IRQ_FC_EVT_PERIPH0 BIT(30) +#define IRQ_FC_EVT_PERIPH1 BIT(31) + +/* TODO: doc */ +void irq_set_handler(int id, void (*handler)(void)); +void irq_mask(uint32_t mask); +void irq_enable(uint32_t mask); +void irq_disable(uint32_t mask); +void irq_pend(uint32_t mask); +void irq_clear(uint32_t mask); +uint32_t irq_clint_global_disable(); +uint32_t irq_clint_global_enable(); +uint32_t irq_clint_disable(int32_t mask); +uint32_t irq_clint_enable(int32_t mask); +void pulp_irq_init(); + +/** Interrupt Number Definitions */ +#define NUMBER_OF_INT_VECTORS \ + 32 /**< Number of interrupts in the Vector table */ + +typedef enum { + //FC_NOTIFY_CLUSTER_EVENT = 0, /**< Software event interrupt */ + CLUSTER_NOTIFY_FC_EVENT = 1, /**< Software event interrupt */ + FC_SW_NOTIFY_BRIDGE_EVENT = 2, /**< Software event interrupt */ + FC_SW_NOTIFY_EVENT = 3, /**< Software event interrupt */ + CLUSTER_NOTIFY_FC_IRQN = 4, /**< Software event interrupt */ + /* DMA_SW_IRQN = 6, */ + PENDSV_IRQN = 7, /**< Software event U -> M PendSV interrupt */ + + /* Device specific interrupts */ + DMA_EVT_IRQN = 8, /**< DMA event interrupt */ + DMA_IRQN = 9, /**< DMA interrupt */ + FC_TIMER0_IRQN = 10, /**< FC timer0 event interrupt */ + SYSTICK_IRQN = 10, /**< PULP U -> M System Tick Interrupt */ + FC_TIMER1_IRQN = 11, /**< FC timer1 interrupt */ + + /* misc */ + FC_CLK_REF_EVENT = 14, /**< Reference clock edge event */ + FC_GPIO_EVENT = 15, /**< GPIO event */ + + /* advanced timer events */ + FC_ADV_TIMER0_EVENT = 17, /**< Advanced Timer 0 event */ + FC_ADV_TIMER1_EVENT = 18, /**< Advanced Timer 1 event */ + FC_ADV_TIMER2_EVENT = 19, /**< Advanced Timer 2 event */ + FC_ADV_TIMER3_EVENT = 20, /**< Advanced Timer 3 event */ + + /* CLUSTER_NOT_BUSY_EVENT = 21, */ + /* CLUSTER_POK_EVENT = 22, */ + /* CLUSTER_CG_OK_EVENT = 23, */ + + /* PICL_OK_EVENT = 24, */ + /* SCU_OK_EVENT = 25, */ + + FC_SOC_EVENT = 26, /**< Event unit new event */ + + FC_QUEUE_ERROR_EVENT = 29, /**< Event unit queue overflow event */ + + FC_HP_EVENT1 = 30, + FC_HP_EVENT0 = 31 +} simple_irqn_e; + +/** + \brief Structure type to access the simple interrupt controller. + */ +typedef struct { + volatile uint32_t MASK; /**< Interrupt Controller mask register, offset: + 0x00 */ + volatile uint32_t MASK_SET; /**< Interrupt Controller mask set register, + offset: 0x04 */ + volatile uint32_t MASK_CLEAR; /**< Interrupt Controller mask clear + register, offset: 0x08 */ + volatile uint32_t IRQ; /**< Interrupt Controller irq register, offset: + 0x0C */ + volatile uint32_t IRQ_SET; /**< Interrupt Controller irq set register, + offset: 0x10 */ + volatile uint32_t IRQ_CLEAR; /**< Interrupt Controller irq clear + register, offset: 0x14 */ + volatile uint32_t ACK; /**< Interrupt Controller ack register, offset: + 0x18 */ + volatile uint32_t ACK_SET; /**< Interrupt Controller ack set register, + offset: 0x1C */ + volatile uint32_t ACK_CLEAR; /**< Interrupt Controller ack clear + register, offset: 0x20 */ + volatile uint32_t FIFO; /**< Interrupt Controller soc event fifo + register, offset: 0x24 */ +} simple_irq_t; + +#define IRQ_REG_MASK_OFFSET 0x000 +#define IRQ_REG_MASK_SET_OFFSET 0x004 +#define IRQ_REG_MASK_CLEAR_OFFSET 0x008 +#define IRQ_REG_INT_OFFSET 0x00C +#define IRQ_REG_INT_SET_OFFSET 0x010 +#define IRQ_REG_INT_CLEAR_OFFSET 0x014 +#define IRQ_REG_ACK_OFFSET 0x018 +#define IRQ_REG_ACK_SET_OFFSET 0x01C +#define IRQ_REG_ACK_CLEAR_OFFSET 0x020 +#define IRQ_REG_FIFO_OFFSET 0x024 + +/* Interrupt line masks: these interrupts directly go to the core (after being + * serialized as reqest + id). We refer to these interrupts with the prefix IRQ. + * Events on the other we strictly use to refer to "interrupts/events" that are + * signaled through (muxed) EU SoC interrupts (IRQ_FC_EVT_SOC_EVT) and need + * additional handling by the user through the Event Unit. + */ +#define IRQ_FC_EVT_SW0 BIT(0) +#define IRQ_FC_EVT_SW1 BIT(1) +#define IRQ_FC_EVT_SW2 BIT(2) +#define IRQ_FC_EVT_SW3 BIT(3) +#define IRQ_FC_EVT_SW4 BIT(4) +#define IRQ_FC_EVT_SW5 BIT(5) +#define IRQ_FC_EVT_SW6 BIT(6) +#define IRQ_FC_EVT_SW7 BIT(7) +#define IRQ_FC_EVT_DMA_PE_EVT BIT(8) +#define IRQ_FC_EVT_DMA_PE_IRQ BIT(9) +#define IRQ_FC_EVT_TIMER0_LO BIT(10) +#define IRQ_FC_EVT_TIMER0_HI BIT(11) +#define IRQ_FC_EVT_PF BIT(12) +#define IRQ_FC_EVT_CLK_REF BIT(14) +#define IRQ_FC_EVT_GPIO BIT(15) +/* doesn't exist in pulp */ +/*#define IRQ_FC_EVT_RTC 16 */ +#define IRQ_FC_EVT_ADV_TIMER0 BIT(17) +#define IRQ_FC_EVT_ADV_TIMER1 BIT(18) +#define IRQ_FC_EVT_ADV_TIMER2 BIT(19) +#define IRQ_FC_EVT_ADV_TIMER3 BIT(20) +/* doesn't exist in pulp */ +/* #define IRQ_FC_EVT_CLUSTER_NOT_BUSY 21 */ +/* #define IRQ_FC_EVT_CLUSTER_POK 22 */ +/* #define IRQ_FC_EVT_CLUSTER_CG_OK 23 */ +/* #define IRQ_FC_EVT_PICL_OK 24 */ +/* #define IRQ_FC_EVT_SCU_OK 25 */ +/* + * SoC event unit events: Many events get implicitely muxed into this interrupt. + * A user that gets such an interrupt has to check the event unit's registers to + * see what happened + */ +#define IRQ_FC_EVT_SOC_EVT BIT(26) +/* + * Event queue error: If we don't process event unit events quickly enough + * internal fifos can overflow and we get this error interrupt + */ +#define IRQ_FC_EVT_QUIRQE_ERROR BIT(29) +/* High priority peripheral events: these are hardcoded to directly go to the + * core using a dedicated interrupt line + */ +#define IRQ_FC_EVT_PERIPH0 BIT(30) +#define IRQ_FC_EVT_PERIPH1 BIT(31) + + +#define SIMPLE_IRQ \ + ((simple_irq_t *)FC_IRQ_ADDR) /*!< Simple irq configuration struct */ + +/** + \brief Enable Interrupt + \details Enables a device specific interrupt in the NVIC interrupt controller. + \param [in] IRQn Device specific interrupt number. + \note IRQn must not be negative. + */ +static inline void __irq_enable(simple_irqn_e IRQn) +{ + /* U mode does not has the right */ + /* NVIC->MASK_SET = (1UL << IRQn); */ + writew(1UL << IRQn, (uintptr_t)(FC_IRQ_ADDR + IRQ_REG_MASK_SET_OFFSET)); +} + +/** + \brief Get Interrupt Enable status + \details Returns a device specific interrupt enable status from the NVIC + interrupt controller. \param [in] IRQn Device specific interrupt number. + \return 0 Interrupt is not enabled. + \return 1 Interrupt is enabled. + \note IRQn must not be negative. + */ +static inline uint32_t __irq_get_enable(simple_irqn_e IRQn) +{ + /* U mode does not has the right */ + /* return ((uint32_t)((NVIC->MASK_IRQ & (1UL << IRQn)) ? 1UL : 0UL)); */ + uint32_t mask = readw((uintptr_t)(FC_IRQ_ADDR + IRQ_REG_MASK_OFFSET)); + return (mask >> IRQn) & 1; +} + + +/** + \brief Disable Interrupt + \details Disables a device specific interrupt in the NVIC interrupt + controller. \param [in] IRQn Device specific interrupt number. \note + IRQn must not be negative. + */ +static inline void __irq_disable(simple_irqn_e IRQn) +{ + /* U mode does not has the right */ + /* NVIC->MASK_IRQ_AND = (1UL << IRQn); */ + writew(1UL << IRQn, + (uintptr_t)(FC_IRQ_ADDR + IRQ_REG_MASK_CLEAR_OFFSET)); +} + + +/** + \brief Get Pending Interrupt + \details Reads the NVIC pending register and returns the pending bit for the + specified device specific interrupt. \param [in] IRQn Device specific + interrupt number. \return 0 Interrupt status is not pending. + \return 1 Interrupt status is pending. + \note IRQn must not be negative. + */ +static inline uint32_t __irq_get_pending(simple_irqn_e IRQn) +{ + /* return(0U); */ + uint32_t pending = readw((uintptr_t)(FC_IRQ_ADDR + IRQ_REG_INT_OFFSET)); + return (pending >> IRQn) & 1; +} + + +/** + \brief Set Pending Interrupt + \details Sets the pending bit of a device specific interrupt in the NVIC + pending register. \param [in] IRQn Device specific interrupt number. + \note IRQn must not be negative. + */ +static inline void __irq_set_pending(simple_irqn_e IRQn) +{ + writew(1UL << IRQn, (uintptr_t)(FC_IRQ_ADDR + IRQ_REG_INT_SET_OFFSET)); +} + + +/** + \brief Clear Pending Interrupt + \details Clears the pending bit of a device specific interrupt in the NVIC + pending register. \param [in] IRQn Device specific interrupt number. + \note IRQn must not be negative. + */ +static inline void __irq_clear_pending(simple_irqn_e IRQn) +{ + writew(1UL << IRQn, + (uintptr_t)(FC_IRQ_ADDR + IRQ_REG_INT_CLEAR_OFFSET)); +} + + +/** + \brief Get Active Interrupt + \details Reads the active register in the NVIC and returns the active bit for + the device specific interrupt. \param [in] IRQn Device specific + interrupt number. \return 0 Interrupt status is not active. + \return 1 Interrupt status is active. + \note IRQn must not be negative. + */ +static inline uint32_t __irq_get_active(simple_irqn_e IRQn) +{ + assert(0); + return 0; +} + +static inline uint32_t __irq_forge_it_vect(uint32_t ItBaseAddr, + uint32_t ItIndex, uint32_t ItHandler) + +{ + assert(0); + + return 0; +} + +/** + \brief Set Interrupt Vector + \details Sets an interrupt vector in SRAM based interrupt vector table. + The interrupt number can be positive to specify a device specific + interrupt, or negative to specify a processor exception. VTOR must been + relocated to SRAM before. \param [in] IRQn Interrupt number \param [in] + vector Address of interrupt handler function + */ +static inline void __irq_set_vector(simple_irqn_e IRQn, uint32_t vector) +{ + assert(0); +} + +/** + \brief Get Interrupt Vector + \details Reads an interrupt vector from interrupt vector table. + The interrupt number can be positive to specify a device specific + interrupt, or negative to specify a processor exception. \param [in] IRQn + Interrupt number. \return Address of interrupt handler + function + */ +static inline uint32_t __irq_get_vector(simple_irqn_e IRQn) +{ + assert(0); +} + + +/** + \brief System Reset + \details Initiates a system reset request to reset the MCU. + */ +static inline void __irq_system_reset(void) +{ + assert(0); +} + +#endif /* __IRQ_H__ */ diff --git a/rtos/freertos/abstraction_layer_freertos/include/link.h b/rtos/freertos/abstraction_layer_freertos/include/link.h new file mode 100644 index 00000000..c30b354e --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/include/link.h @@ -0,0 +1,25 @@ +/* + * Copyright 2021 ETH Zurich + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +/* Author: Robert Balas */ + +#define PI_CL_L1 __attribute__((section(".l1cluster_g"))) +#define PI_FC_L1 __attribute__((section(".data"))) + +#define PI_L1 PI_CL_L1 +#define FC_L1_MEM PI_FC_L1 diff --git a/rtos/freertos/abstraction_layer_freertos/include/memory_map.h b/rtos/freertos/abstraction_layer_freertos/include/memory_map.h new file mode 100644 index 00000000..04118db8 --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/include/memory_map.h @@ -0,0 +1,156 @@ +/* + * Copyright (C) 2019 ETH Zurich, University of Bologna and GreenWaves + * Technologies + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#ifndef __MEMORY_MAP_H__ +#define __MEMORY_MAP_H__ + +#include "properties.h" +/* Memories */ +/* FC memory. */ +#define FC_TCDM_ADDR (0x1B000000) +#if (ARCHI_HAS_FC_ALIAS) +#define FC_TCDM_ADDR_ALIAS (0x00000000) +#endif /* ARCHI_HAS_FC_ALIAS */ + +/* L2 memory */ +#define L2_SHARED_ADDR (0x1C000000) +#if (ARCHI_HAS_L2_ALIAS) +#define L2_SHARED_ADDR_ALIAS (0x00000000) +#endif /* ARCHI_HAS_L2_ALIAS */ + +/* L1 cluster memory */ +#define CL_L1_ADDR (0x10000000) +#if (ARCHI_HAS_CL_L1_ALIAS) +#define CL_L1_ADDR_ALIAS (0x00000000) +#endif /* ARCHI_HAS_CL_L1_ALIAS */ + +/* L1 cluster TS */ +#if (ARCHI_HAS_CL_L1_TS) +#define L2_PRIV0_TS_ADDR (0x10100000) +#endif /* ARCHI_HAS_CL_L1_TS */ + +/* ROM memory (8 KiB)*/ +#define ROM_ADDR (0x1A000000) +#define ROM_SIZE (0x00002000) + +/* Cluster */ +#define ARCHI_CLUSTER_ADDR (0x00000000) +#define ARCHI_CLUSTER_SIZE (0x00400000) +#define ARCHI_CLUSTER_GLOBAL_ADDR(cid) (0x10000000 + (cid)*ARCHI_CLUSTER_SIZE) +#define ARCHI_CLUSTER_PERIPHERALS_OFFSET (0x00200000) + +/* Cluster peripherals */ +#define ARCHI_TIMER_SIZE (0x00000800) + +#define ARCHI_CLUSTER_CTRL_OFFSET (0x00000000) +#define ARCHI_TIMER_OFFSET (0x00000400) +#define ARCHI_EU_OFFSET (0x00000800) +#define ARCHI_HWCE_OFFSET (0x00001000) +#define ARCHI_ICACHE_CTRL_OFFSET (0x00001400) +#define ARCHI_MCHAN_EXT_OFFSET (0x00001800) + +#define ARCHI_CLUSTER_PERIPHERALS_ADDR \ + (ARCHI_CLUSTER_ADDR + ARCHI_CLUSTER_PERIPHERALS_OFFSET) +#define ARCHI_CLUSTER_PERIPHERALS_GLOBAL_ADDR(cid) \ + (ARCHI_CLUSTER_GLOBAL_ADDR(cid) + ARCHI_CLUSTER_PERIPHERALS_OFFSET) + +#define ARCHI_CLUSTER_CTRL_ADDR \ + (ARCHI_CLUSTER_PERIPHERALS_GLOBAL_ADDR(0) + ARCHI_CLUSTER_CTRL_OFFSET) +#define ARCHI_CLUSTER_TIMER_ADDR \ + (ARCHI_CLUSTER_PERIPHERALS_GLOBAL_ADDR(0) + ARCHI_TIMER_OFFSET) +#define ARCHI_ICACHE_CTRL_ADDR \ + (ARCHI_CLUSTER_PERIPHERALS_GLOBAL_ADDR(0) + ARCHI_ICACHE_CTRL_OFFSET) +#define ARCHI_EU_ADDR \ + (ARCHI_CLUSTER_PERIPHERALS_GLOBAL_ADDR(0) + ARCHI_EU_OFFSET) +#define ARCHI_HWCE_ADDR \ + (ARCHI_CLUSTER_PERIPHERALS_GLOBAL_ADDR(0) + ARCHI_HWCE_OFFSET) +#define ARCHI_MCHAN_EXT_ADDR \ + (ARCHI_CLUSTER_PERIPHERALS_GLOBAL_ADDR(0) + ARCHI_MCHAN_EXT_OFFSET) + +#define ARCHI_DEMUX_PERIPHERALS_OFFSET (0x204000) +#define ARCHI_EU_DEMUX_OFFSET (0x00000) +#define ARCHI_MCHAN_DEMUX_OFFSET (0x00400) + +#define ARCHI_DEMUX_PERIPHERALS_ADDR \ + (ARCHI_CLUSTER_ADDR + ARCHI_DEMUX_PERIPHERALS_OFFSET) +#define ARCHI_EU_DEMUX_ADDR \ + (ARCHI_DEMUX_PERIPHERALS_ADDR + ARCHI_EU_DEMUX_OFFSET) +#define ARCHI_MCHAN_DEMUX_ADDR \ + (ARCHI_DEMUX_PERIPHERALS_ADDR + ARCHI_MCHAN_DEMUX_OFFSET) + + +/* SoC peripherals */ +#define SOC_PERIPHERALS_ADDR (0x1A100000) + +#define SOC_FLL_OFFSET (0x00000000) +#define CL_FLL_OFFSET (0x00000800) +#define GPIO_OFFSET (0x00001000) +#define UDMA_OFFSET (0x00002000) +#define APB_SOC_CTRL_OFFSET (0x00004000) +#define ADV_TIMER_OFFSET (0x00005000) /* PWM. */ +#define SOC_EU_OFFSET (0x00006000) +#define FC_IRQ_OFFSET (0x00009800) +/* #define FC_IRQ_OFFSET (0x00009000) */ /* valid + mirror + address + */ +#define FC_TIMER_OFFSET (0x0000B000) +#define FC_HWPE_OFFSET (0x0000C000) +#define STDOUT_OFFSET (0x0000F000) +#define DEBUG_OFFSET (0x00010000) + +#define SOC_FLL_ADDR (SOC_PERIPHERALS_ADDR + SOC_FLL_OFFSET) +#define CL_FLL_ADDR (SOC_PERIPHERALS_ADDR + CL_FLL_OFFSET) +#define GPIO_ADDR (SOC_PERIPHERALS_ADDR + GPIO_OFFSET) +#define UDMA_CTRL_ADDR (SOC_PERIPHERALS_ADDR + UDMA_OFFSET) +#define APB_SOC_CTRL_ADDR (SOC_PERIPHERALS_ADDR + APB_SOC_CTRL_OFFSET) +#define ADV_TIMER_ADDR (SOC_PERIPHERALS_ADDR + ADV_TIMER_OFFSET) +#define SOC_EU_ADDR (SOC_PERIPHERALS_ADDR + SOC_EU_OFFSET) +#define FC_IRQ_ADDR (SOC_PERIPHERALS_ADDR + FC_IRQ_OFFSET) +#define FC_TIMER_ADDR (SOC_PERIPHERALS_ADDR + FC_TIMER_OFFSET) +#define FC_HWPE_ADDR (SOC_PERIPHERALS_ADDR + FC_HWPE_OFFSET) +#define STDOUT_ADDR (SOC_PERIPHERALS_ADDR + STDOUT_OFFSET) +#define DEBUG_ADDR (SOC_PERIPHERALS_ADDR + DEBUG_OFFSET) + +/* UDMA peripherals */ +/* #define UDMA_GC_ADDR (UDMA_CTRL_ADDR + 0x780) + */ +/* UDMA base peripheral addr = UDMA base address + UDMA ctrl. */ +#define UDMA_PERIPH_BASE_ADDR (UDMA_CTRL_ADDR + 0x80) +#define UDMA_SPIM(id) \ + (UDMA_PERIPH_BASE_ADDR + (UDMA_SPIM_ID(id) << UDMA_PERIPH_SIZE_LOG2)) +#define UDMA_HYPER(id) \ + (UDMA_PERIPH_BASE_ADDR + (UDMA_HYPER_ID(id) << UDMA_PERIPH_SIZE_LOG2)) +#define UDMA_UART(id) \ + (UDMA_PERIPH_BASE_ADDR + (UDMA_UART_ID(id) << UDMA_PERIPH_SIZE_LOG2)) +#define UDMA_I2C(id) \ + (UDMA_PERIPH_BASE_ADDR + (UDMA_I2C_ID(id) << UDMA_PERIPH_SIZE_LOG2)) +#define UDMA_DMACPY(id) \ + (UDMA_PERIPH_BASE_ADDR + (UDMA_DMACPY_ID(id) << UDMA_PERIPH_SIZE_LOG2)) +#define UDMA_I2S(id) \ + (UDMA_PERIPH_BASE_ADDR + (UDMA_I2S_ID(id) << UDMA_PERIPH_SIZE_LOG2)) +#define UDMA_CPI(id) \ + (UDMA_PERIPH_BASE_ADDR + (UDMA_CPI_ID(id) << UDMA_PERIPH_SIZE_LOG2)) + + +#define CL_MCHAN_ADDR ARCHI_MCHAN_EXT_ADDR +#define CL_CTRL_GLOB_ADDR(cid) ARCHI_CLUSTER_CTRL_ADDR +#define CL_GLOB_ICACHE_ADDR(cid) ARCHI_ICACHE_CTRL_ADDR +#define CL_EU_BASE ARCHI_EU_ADDR +#define CL_EU_DEMUX_BASE ARCHI_DEMUX_PERIPHERALS_ADDR + +#endif /* __MEMORY_MAP_H__ */ diff --git a/rtos/freertos/abstraction_layer_freertos/include/os.h b/rtos/freertos/abstraction_layer_freertos/include/os.h new file mode 100644 index 00000000..c9365c43 --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/include/os.h @@ -0,0 +1,261 @@ +/* + * Copyright 2020 GreenWaves Technologies + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#ifndef __OS_H__ +#define __OS_H__ + +#include +#include + +#include +#include +#include + +#include "riscv.h" +#include "properties.h" +#include "pmsis_types.h" + + +static inline void pmsis_exit(int err) +{ + exit(err); +} + +static inline int pmsis_kickoff(void *arg) +{ + BaseType_t xTask; + TaskHandle_t xHandler0 = NULL; + + xTask = xTaskCreate(arg, "main", + ((unsigned short)configMINIMAL_STACK_SIZE), NULL, + tskIDLE_PRIORITY + 1, &xHandler0); + + if (xTask != pdPASS) { + printf("main is NULL !\n"); + pmsis_exit(-1); + } + + __enable_irq(); + + struct pmsis_event_kernel_wrap *wrap; + /* TODO: blocks everything because priority too high */ + /* TODO: spawn event loop for callbacks or use FreeRTOS callback api */ + /* pmsis_event_kernel_init(&wrap, pmsis_event_kernel_main); */ + /* pmsis_event_set_default_scheduler(wrap); */ + + /* TODO:handle case when uart is being used before initialized */ +#ifdef DEBUG + puts("pmsis_kickoff: starting scheduler\n"); +#endif + /* Start the kernel. From here on only tasks and interrupts will run. */ + vTaskStartScheduler(); + + /* should never return here */ + return 0; +} + +static inline void *pmsis_task_create(void (*entry)(void *), void *arg, + char *name, int priority) +{ + TaskHandle_t task_handle = NULL; + BaseType_t task_ret; + task_ret = xTaskCreate(entry, name, 2 * configMINIMAL_STACK_SIZE, arg, + tskIDLE_PRIORITY + 1 + priority, &task_handle); + if (task_ret != pdPASS) { + return NULL; + } else { + return task_handle; + } +} + +static inline void pmsis_task_suspend(void *task_handler) +{ + vTaskSuspend((TaskHandle_t)task_handler); +} + +static inline void pi_yield() +{ + taskYIELD(); +} + +static inline uint32_t disable_irq(void) +{ + hal_compiler_barrier(); + return __disable_irq(); +} + +static inline void restore_irq(uint32_t irq_enable) +{ + hal_compiler_barrier(); + __restore_irq(irq_enable); +} + +/* TODO: fix these functions, seems broken */ +static inline void __os_native_api_sem_take(void *sem_object) +{ + uint32_t irq = __disable_irq(); + if (__get_mcause() & MCAUSE_IRQ_Msk) { + /* This case should never happen ! */ + BaseType_t ret; + xSemaphoreTakeFromISR(sem_object, &ret); + } else { + xSemaphoreTake(sem_object, portMAX_DELAY); + } + __restore_irq(irq); +} + +static inline void __os_native_api_sem_give(void *sem_object) +{ + uint32_t irq = __disable_irq(); + if (__get_mcause() & MCAUSE_IRQ_Msk) { + BaseType_t ret; + xSemaphoreGiveFromISR(sem_object, &ret); + portYIELD_FROM_ISR(ret); + } else { + BaseType_t ret; + xSemaphoreGiveFromISR(sem_object, &ret); + } + __restore_irq(irq); +} + + +static inline int pi_sem_init(pi_sem_t *sem) +{ + hal_compiler_barrier(); + sem->sem_object = xSemaphoreCreateCounting(0xFFu, 0); + if (sem->sem_object == NULL) { + return -1; + } + sem->take = __os_native_api_sem_take; + sem->give = __os_native_api_sem_give; + return 0; +} + +static inline int pi_sem_deinit(pi_sem_t *sem) +{ + hal_compiler_barrier(); + if (sem->sem_object == NULL) { + return -1; + } + vSemaphoreDelete(sem->sem_object); + sem->take = NULL; + sem->give = NULL; + sem->sem_object = (void *)NULL; + return 0; +} + +static inline void pi_sem_take(pi_sem_t *sem) +{ + hal_compiler_barrier(); + sem->take(sem->sem_object); +} + +static inline void pi_sem_give(pi_sem_t *sem) +{ + sem->give(sem->sem_object); + hal_compiler_barrier(); +} + +static inline void pmsis_mutex_take(pmsis_mutex_t *mutex) +{ + hal_compiler_barrier(); + mutex->take(mutex->mutex_object); +} + +static inline void pmsis_mutex_release(pmsis_mutex_t *mutex) +{ + hal_compiler_barrier(); + mutex->release(mutex->mutex_object); + hal_compiler_barrier(); +} + +static inline void __os_native_api_mutex_lock(void *mutex_object) +{ + xSemaphoreTake(mutex_object, portMAX_DELAY); +} + +static inline void __os_native_api_mutex_release(void *mutex_object) +{ + uint32_t irq = __disable_irq(); + BaseType_t ret; + xSemaphoreGiveFromISR(mutex_object, &ret); + __restore_irq(irq); +} + +static inline int pmsis_mutex_init(pmsis_mutex_t *mutex) +{ + hal_compiler_barrier(); + mutex->mutex_object = xSemaphoreCreateBinary(); + if (mutex->mutex_object == NULL) { + return -1; + } + __os_native_api_mutex_release(mutex->mutex_object); + mutex->take = __os_native_api_mutex_lock; + mutex->release = __os_native_api_mutex_release; + return 0; +} + +static inline int pmsis_mutex_deinit(pmsis_mutex_t *mutex) +{ + hal_compiler_barrier(); + if (mutex->mutex_object == NULL) { + return -1; + } + vSemaphoreDelete(mutex->mutex_object); + mutex->take = NULL; + mutex->release = NULL; + mutex->mutex_object = (void *)NULL; + return 0; +} + +static inline void pmsis_spinlock_init(pmsis_spinlock_t *spinlock) +{ + hal_compiler_barrier(); + spinlock->lock = 0; +} + +static inline void pmsis_spinlock_take(pmsis_spinlock_t *spinlock) +{ + uint32_t irq_enabled = disable_irq(); + hal_compiler_barrier(); + spinlock->lock = 1; + hal_compiler_barrier(); + restore_irq(irq_enabled); +} + +static inline void pmsis_spinlock_release(pmsis_spinlock_t *spinlock) +{ + uint32_t irq_enabled = disable_irq(); + hal_compiler_barrier(); + spinlock->lock = 0; + hal_compiler_barrier(); + restore_irq(irq_enabled); +} + +static void pi_time_wait_us(int time_us) +{ + /* Wait less than 1 ms. */ + if (time_us < 1000) { + for (volatile int i = 0; i < time_us; i++) + ; + } else { + vTaskDelay(((uint32_t)time_us / 1000) / portTICK_PERIOD_MS); + } +} + +#endif /* __OS_H__ */ diff --git a/rtos/freertos/abstraction_layer_freertos/include/pi_errno.h b/rtos/freertos/abstraction_layer_freertos/include/pi_errno.h new file mode 100644 index 00000000..1e646bff --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/include/pi_errno.h @@ -0,0 +1,53 @@ +/* + * Copyright (C) 2019 GreenWaves Technologies + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/* + * Created by Mathieu Barbe . + * on 12/21/2019. + */ + +#ifndef API_ERRNO_H +#define API_ERRNO_H + +#ifdef __cplusplus +extern "C" { +#endif + +typedef enum { + PI_OK = 0x00, /*!< indicating success (no error) */ + PI_FAIL = 0x01, /*!< Generic code indicating failure */ + + PI_ERR_INVALID_ARG = 0x02, /*!< Invalid argument */ + PI_ERR_INVALID_STATE = 0x03, /*!< Invalid state */ + PI_ERR_INVALID_SIZE = 0x04, /*!< Invalid size */ + PI_ERR_NOT_FOUND = 0x05, /*!< Requested resource not found */ + PI_ERR_NOT_SUPPORTED = 0x06, /*!< Operation or feature not supported */ + PI_ERR_TIMEOUT = 0x07, /*!< Operation timed out */ + PI_ERR_INVALID_CRC = 0x08, /*!< CRC or checksum was invalid */ + PI_ERR_INVALID_VERSION = 0x09, /*!< Version was invalid */ + PI_ERR_INVALID_APP = 0x0A, /*!< App binary is not compliant with GAP. */ + PI_ERR_INVALID_MAGIC_CODE = 0x0B, /*!< Magic code does not match. */ + + PI_ERR_I2C_NACK = 0x100, /*! I2C request ended with a NACK */ + + PI_ERR_NO_MEM = 0x200, /*!< Generic out of memory */ + PI_ERR_L2_NO_MEM = 0x201, /*!< L2 out of memory */ +} pi_err_t; + +#ifdef __cplusplus +} +#endif +#endif //API_ERRNO_H diff --git a/rtos/freertos/abstraction_layer_freertos/include/pinmux.h b/rtos/freertos/abstraction_layer_freertos/include/pinmux.h new file mode 100644 index 00000000..c1f533c8 --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/include/pinmux.h @@ -0,0 +1,41 @@ +/* + * Copyright (C) 2020 ETH Zurich and University of Bologna + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +/* Driver to control and configure pad mux */ + +/* Author: Robert Balas (balasr@iis.ee.ethz.ch) */ + +#include + +#include "apb_soc.h" +#include "io.h" +#include "pulp_mem_map.h" + +#define PINMUX_FUNC_A 0 +#define PINMUX_FUNC_B 1 +#define PINMUX_FUNC_C 2 +#define PINMUX_FUNC_D 3 +/* This doesn't exist on PULP */ +#define PINMUX_FUNC_E 4 +#define PINMUX_FUNC_F 5 +#define PINMUX_FUNC_G 6 +#define PINMUX_FUNC_H 7 + +int pinmux_pin_set(int pin, uint32_t func); + +int pinmux_pin_get(int pin, uint32_t *func); diff --git a/rtos/freertos/abstraction_layer_freertos/include/pmsis_task.h b/rtos/freertos/abstraction_layer_freertos/include/pmsis_task.h new file mode 100644 index 00000000..12a6f6bb --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/include/pmsis_task.h @@ -0,0 +1,169 @@ +/* + * Copyright 2020 GreenWaves Technologies + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#ifndef __PMSIS_TASK_H__ +#define __PMSIS_TASK_H__ + +#include "pmsis_types.h" +#include "target.h" +#include "os.h" + +#include +#include + +/** + * \brief Prepare a blocking event task. + * + * This function initializes an instance of event task. + * A semaphore will be initialized. + * + * \param task Pointer to event task. + * + * \return task This function returns the event task initialized. + */ +pi_task_t *__pi_task_block(pi_task_t *task); + +/** + * \brief Prepare an event task with callback. + * + * This function initializes an instance of event task. + * This event task executes the callback given in argument. + * + * \param callback_task Pointer to event task. + * \param func Callback function. + * \param arg Callback function argument. + * + * \return task This function returns the event task initialized. + */ +pi_task_t *__pi_task_callback(pi_task_t *callback_task, void (*func)(void *), + void *arg); + +/** + * \brief Wait on an event task. + * + * This function allows to wait on an event task until the event occurs. + * + * \param task Pointer to event task. + */ +void __pi_task_wait_on(pi_task_t *task); + +/** + * \brief Push an event task. + * + * This function is used to push an event task to the event kernel. + * + * \param task Pointer to event task. + */ +void __pi_task_push(pi_task_t *task); + +/** + * \brief Delete an event task. + * + * This function removes an event task. + * It will delete the semaphore if it has been allocated. + * + * \param task Pointer to event task. + */ +void __pi_task_destroy(pi_task_t *task); + +static inline pi_task_t *pi_task_block(pi_task_t *task) +{ + return __pi_task_block(task); +} + +/** + * \brief Prepare a notification callback. + * + * This initializes a notification callback so that it is ready to be + * triggered. + * A notification callback can be used to trigger a function execution when + * a certain action occurs, e.g. an end of transfer. + * + * \param task Pointer to notification event. + * \param callback The callback which will be executed when the + * notification is triggered. + * \param arg The argument to the callback. + * + * \return task The notification event initialized. + * + * \note This structure is allocated by the caller and must be kept alive until + * the pi_task_wait_on returns. + * \note If the same notification is re-used several times, it must be + * reinitialized everytime by calling this function or another variant. + * \note A notification callback can not be used to block the caller execution + * with pi_task_wait_on. + */ +static inline pi_task_t *pi_task_callback(pi_task_t *task, + void (*callback)(void *), void *arg) +{ + return __pi_task_callback(task, callback, arg); +} + +/** + * \brief Wait until a notification event is triggered. + * + * This can be called to block the caller until the specified notification + * event (created with pi_task_block) has been triggered. + * + * \param task Pointer to notification event. + * + * \note The notification event is released just before returning from this call + * and must be reinitialized before it can be re-used. + */ +static inline void pi_task_wait_on(pi_task_t *task) +{ + __pi_task_wait_on(task); +} + +/** + * \brief Trigger a notification. + * + * This can be used to trigger the specified notification. If the notification + * is a callback, this will schedule the callback execution. If the notification + * is an event, this will trigger the event. + * + * \param task Pointer to notification event. + */ +static inline void pi_task_push(pi_task_t *task) +{ + __pi_task_push(task); +} + +static inline void pi_task_destroy(pi_task_t *task) +{ + __pi_task_destroy(task); +} + +void pi_task_release(pi_task_t *task); + +/** + * \brief Trigger a notification. + * + * This can be used to trigger the specified notification after the specified + * delay, given in micro-seconds. If the notification + * is a callback, this will schedule the callback execution. If the notification + * is an event, this will trigger the event. + * + * \param task Pointer to notification event. + * \param delay The number of micro-seconds after which the + * notification must be triggered. + */ +void pi_task_push_delayed_us(pi_task_t *task, uint32_t delay); + + +#endif /* __PMSIS_TASK_H__ */ diff --git a/rtos/freertos/abstraction_layer_freertos/include/pmsis_types.h b/rtos/freertos/abstraction_layer_freertos/include/pmsis_types.h new file mode 100644 index 00000000..6406f339 --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/include/pmsis_types.h @@ -0,0 +1,198 @@ +/* + * Copyright (C) 2018 GreenWaves Technologies + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#ifndef __PMSIS_TYPES__H__ +#define __PMSIS_TYPES__H__ + +#include "inttypes.h" +#include "sys/types.h" + +/** + * @defgroup groupDrivers Drivers + */ + + +/// @cond IMPLEM + +/** + * @ingroup PMSIS_OS + */ + +/** + * @defgroup PMSISTypes PMSIS common types + */ + +/** + * @addtogroup PMSISTypes + * @{ + */ + +/**@{*/ + +struct pi_device; +struct pmsis_event_kernel_wrap; + +// device type placed at the top of conf +typedef enum { + PI_DEVICE_UNKWN_TYPE, + PI_DEVICE_CLUSTER_TYPE, + PI_DEVICE_HYPERBUS_TYPE, + PI_DEVICE_SPI_TYPE, + PI_DEVICE_CPI_TYPE, + PI_DEVICE_I2C_TYPE, + PI_DEVICE_GPIO_TYPE, + PI_DEVICE_PWM_TYPE +} pi_device_e; + +typedef struct pi_task pi_task_t; + +typedef void (* pi_callback_func_t)(void *arg); + +typedef struct spinlock { + int32_t *lock_ptr; // with test and set mask + int32_t *release_ptr; // standard pointer +} spinlock_t; + +typedef struct pi_device_config { + const char *name; // to open, FIXME: device tree + // initialize the device struct (api+ init data) using init_conf + int (*init)(struct pi_device *device); + const void *init_conf; +} pi_device_config_t; + +// device struct, it wont stay here +typedef struct pi_device { + struct pi_device_api *api; // function pointers + void *config; // driver conf: might be filled either using device tree or manually + void *data; // driver data +} pi_device_t; + + +typedef uint32_t (*device_rw_func)(struct pi_device *device, uintptr_t size, + const void *addr, const void *buffer); + +typedef uint32_t (*device_ioctl_func)(struct pi_device *device, + uint32_t func_id, + void *arg); + +typedef uint32_t (*device_rw_func_async)(struct pi_device *device, + uintptr_t size, const void *addr, const void *buffer, pi_task_t *async); + +typedef uint32_t (*device_ioctl_func_async)(struct pi_device *device, + uint32_t func_id, void *arg, pi_task_t *async); + +typedef int (*open_func)(struct pi_device *device); +typedef int (*close_func)(struct pi_device *device); + +typedef int (*open_func_async)(struct pi_device *device, + pi_task_t *async); +typedef int (*close_func_async)(struct pi_device *device, pi_task_t *async); + +// pmsis device minimal api: used for basic inheritance +typedef struct pi_device_api +{ + int (*open)(struct pi_device *device); + int (*close)(struct pi_device *device); + int (*open_async)(struct pi_device *device, pi_task_t *async); + int (*close_async)(struct pi_device *device, pi_task_t *async); + ssize_t (*read)(struct pi_device *device, uint32_t ext_addr, + void *buffer, uint32_t size, pi_task_t *async); + ssize_t (*write)(struct pi_device *device, uint32_t ext_addr, + const void *buffer, uint32_t size, pi_task_t *async); + int (*ioctl)(struct pi_device *device, uint32_t func_id, void *arg); + int (*ioctl_async)(struct pi_device *device, uint32_t func_id, + void *arg, pi_task_t *async); + void *specific_api; +} pi_device_api_t; + +#ifndef IMPLEM_MUTEX_OBJECT_TYPE +#define IMPLEM_MUTEX_OBJECT_TYPE void *mutex_object; +#endif + +/** Memory slab allocator */ +typedef struct pi_mem_slab pi_mem_slab_t; + +/** Task types **/ +typedef void (*__pmsis_mutex_func)(void *mutex_object); + +typedef struct pmsis_mutex { + IMPLEM_MUTEX_OBJECT_TYPE + __pmsis_mutex_func take; + __pmsis_mutex_func release; +} pmsis_mutex_t, pi_mutex_t; + + +#ifndef IMPLEM_SEM_OBJECT_TYPE +#define IMPLEM_SEM_OBJECT_TYPE void *sem_object; +#endif + +/** Task types **/ +typedef void (*__pi_sem_func)(void *sem_object); + +typedef struct pi_sem { + IMPLEM_SEM_OBJECT_TYPE + __pi_sem_func take; + __pi_sem_func give; +} pi_sem_t; + +typedef struct pmsis_spinlock { + uint32_t lock; +} pmsis_spinlock_t; + +struct pmsis_event_kernel_wrap { + void *__os_native_task; + void (*event_kernel_main)(struct pmsis_event_kernel_wrap*); + // real event kernel (might be just an api stub for pulpOS) + void *priv; +}; + +enum pi_task_id { + PI_TASK_CALLBACK_ID, + PI_TASK_NONE_ID, +}; + +#ifndef PI_TASK_IMPLEM +#define PI_TASK_IMPLEM int8_t destroy; +#endif + +typedef struct pi_callback_s +{ + struct pi_task *next; + pi_callback_func_t entry; + void *arg; +} pi_callback_t; + + +#ifndef PI_TASK_IMPLEM_NB_DATA +#define PI_TASK_IMPLEM_NB_DATA 8 +#endif /* PI_TASK_IMPLEM_NB_DATA */ + +typedef struct pi_task { + /* Warning, might be accessed inline in asm, and thus can not be moved + */ + uintptr_t arg[4]; + int32_t id; + uint32_t data[PI_TASK_IMPLEM_NB_DATA]; + pi_sem_t wait_on; + struct pi_task *next; + volatile int8_t done; + int8_t core_id; + int8_t cluster_id; + PI_TASK_IMPLEM; +} pi_task_t; + +/// @endcond +#endif diff --git a/rtos/freertos/abstraction_layer_freertos/include/properties.h b/rtos/freertos/abstraction_layer_freertos/include/properties.h new file mode 100644 index 00000000..84ff4e79 --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/include/properties.h @@ -0,0 +1,252 @@ +/* + * Copyright (C) 2019 ETH Zurich, University of Bologna and GreenWaves + * Technologies + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#ifndef __PROPERTIES_H__ +#define __PROPERTIES_H__ + + +/* PULP defs */ +#define PULP + +#define ARCHI_FPGA_FREQUENCY 5000000 + +/* hardware modules */ +#define ARCHI_NUM_TIMER 1 +#define ARCHI_NUM_FLL 2 + +#define ARCHI_REF_CLOCK_LOG2 15 +#define ARCHI_REF_CLOCK (1 << ARCHI_REF_CLOCK_LOG2) + +#define ARCHI_NB_FLL 3 + +#define __RT_FLL_CL 2 +#define __RT_FLL_PERIPH 1 +#define __RT_FLL_FC 0 + +#define __RT_FREQ_DOMAIN_FC 0 +#define __RT_FREQ_DOMAIN_CL 2 +#define __RT_FREQ_DOMAIN_PERIPH 1 +#define RT_FREQ_NB_DOMAIN 3 + +/* Cores & cluster */ +/* FC */ +#define ARCHI_FC_CID (32) + +/* Cluster */ +#define ARCHI_HAS_CLUSTER (1) +#define ARCHI_CL_CID(id) (id) +#define ARCHI_CLUSTER_NB_PE (8) /* Processing elements. */ + +/* Memories */ +/* FC memory */ +#define ARCHI_HAS_FC_TCDM (1) +#define ARCHI_HAS_FC_ALIAS (1) +#define FC_TCDM_SIZE (0x00004000) /* 16kB. */ + +/* L2 memory */ +#define ARCHI_HAS_L2_ALIAS (0) +#define L2_SHARED_SIZE (0x00080000) /* 512kB. */ + +/* L1 cluster memory */ +#define ARCHI_HAS_CL_L1_ALIAS (1) +#define CL_L1_SIZE (0x00010000) /* 64kB. */ + +/* L1 cluster TS */ +#define ARCHI_HAS_CL_L1_TS (1) + + +/* TODO: fix this table */ +/* UDMA peripherals */ +#define UDMA_HAS_SPIM (1) +#define UDMA_HAS_HYPER (0) +#define UDMA_HAS_UART (1) +#define UDMA_HAS_I2C (1) +#define UDMA_HAS_DMACPY (0) +#define UDMA_HAS_I2S (1) +#define UDMA_HAS_CPI (1) + +/* TODO: fix this table */ +/* Number of UDMA peripherals */ +#define UDMA_NB_SPIM (2) +#define UDMA_NB_HYPER (0) +#define UDMA_NB_UART (1) +#define UDMA_NB_I2C (2) +#define UDMA_NB_DMACPY (0) +#define UDMA_NB_I2S (1) +#define UDMA_NB_CPI (1) + +/* TODO: fix this table */ +/* #define UDMA_NB_PERIPH ((UDMA_HAS_SPIM ? UDMA_NB_SPIM) + \ */ +/* (UDMA_HAS_HYPER ? UDMA_NB_HYPER) + \ */ +/* (UDMA_HAS_UART ? UDMA_NB_UART) + \ */ +/* (UDMA_HAS_I2C ? UDMA_NB_I2C) + \ */ +/* (UDMA_HAS_DMACPY ? UDMA_NB_DMACPY) + \ + */ +/* (UDMA_HAS_I2S ? UDMA_NB_I2S) + \ */ +/* (UDMA_HAS_CPI ? UDMA_NB_CPI)) */ +#define UDMA_NB_PERIPH (10) +/* Size of each UDMA peripheral */ +#define UDMA_PERIPH_SIZE_LOG2 (7) +#define UDMA_PERIPH_SIZE (1 << UDMA_PERIPH_SIZE_LOG2) + +/* UDMA peripherals ID, this maps to PER_ID_* in udma_subsystem.sv */ +#define UDMA_SPIM_ID(id) (1 + (id)) +/* #define UDMA_HYPER_ID(id) (3 + (id)) */ +#define UDMA_UART_ID(id) (0 + (id)) +#define UDMA_I2C_ID(id) (2 + (id)) +/* #define UDMA_DMACPY_ID(id) (7 + (id)) */ +#define ARCHI_UDMA_FILTER_ID(id) (7 + (id)) +#define UDMA_I2S_ID(id) (5 + (id)) +#define UDMA_CPI_ID(id) (6 + (id)) +#define UDMA_SDIO_ID(id) (4 + (id)) + + +/* Pads & GPIO. */ +#define ARCHI_NB_PAD (48) +#define ARCHI_NB_GPIO (32) + + + +/* Cluster. */ +/* Cores & cluster. */ +#define ARCHI_HAS_CLUSTER (1) +#define ARCHI_CL_CID(id) (id) +#define ARCHI_CLUSTER_NB_CORES (9) +#define ARCHI_CLUSTER_NB_PE (8) /* Processing elements. */ +#define ARCHI_CLUSTER_PE_MASK (((1 << ARCHI_CLUSTER_NB_PE) - 1)) +#define ARCHI_CLUSTER_MASTER_CORE (0) +#define ARCHI_CLUSTER_SYNC_BARR_ID (1) +#define ARCHI_CLUSTER_LEGCY_BARR_ID (0) + +#define ARCHI_HAS_CLUSTER_CLK_GATE (1) +#define ARCHI_CLUSTER_SIZE (0x00400000) + +/* Memories. */ +/* L1 cluster memory. */ +#define ARCHI_HAS_CL_L1_ALIAS (1) +#define CL_L1_SIZE (0x00010000) /* 64kB. */ + +/* L1 cluster memory TS. */ +#define ARCHI_HAS_CL_L1_TS (1) +#define ARCHI_CL_L1_TS_OFFSET (1 << 20) + + +/* Cluster peripherals. */ +#define CL_NB_HW_MUTEX (8) +#define CL_NB_HW_BARRIER (8) + + +#define CL_EU_HW_BARRIER_RESERVED (2) +#define CL_EU_HW_BARRIER_RESERVED_MASK ((1 << CL_EU_HW_BARRIER_RESERVED) - 1) + +#define CL_ALLOC_INIT_BARRIER (((1 << CL_NB_HW_BARRIER) - 1) & \ + ~CL_EU_HW_BARRIER_RESERVED_MASK) + + +#define CL_CTRL_OFFSET (0x00000000) +#define CL_TIMER_OFFSET (0x00000400) +#define CL_GLOB_EU_CORE_OFFSET (0x00000800) +#define CL_GLOB_EU_BARRIER_OFFSET (0x00000C00) +#define CL_GLOB_EU_SW_EVENT_OFFSET (0x00000E00) +#define CL_GLOB_EU_SOC_EVENT_OFFSET (0x00000F00) +#define CL_GLOB_EU_DISPATCH_OFFSET (0x00000F80) +#define CL_HWCE_OFFSET (0x00001000) +#define CL_ICACHE_CTRL_OFFSET (0x00001400) +#define CL_DMA_OFFSET (0x00001800) +#define CL_DECOMP_OFFSET (0x00002000) +#define CL_DEMUX_PERIPH_OFFSET (0x00004000) + + +/*! Event_Unit Demux offset */ +#define CLUSTER_DEMUX_EU_CORE_OFFSET ( 0x00000000 ) +#define CLUSTER_DEMUX_EU_LOOP_OFFSET ( 0x00000060 ) +#define CLUSTER_DEMUX_EU_DISPATCH_OFFSET ( 0x00000080 ) +#define CLUSTER_DEMUX_EU_HW_MUTEX_OFFSET ( 0x000000C0 ) +#define CLUSTER_DEMUX_EU_SW_EVENT_OFFSET ( 0x00000100 ) +#define CLUSTER_DEMUX_EU_HW_BARRIER_OFFSET ( 0x00000200 ) + + +/*! Event_Unit Core Demux */ +#define CL_DEMUX_EU_CORE_EVENT_MASK ( 0x00 ) +#define CL_DEMUX_EU_CORE_EVENT_MASK_AND ( 0x04 ) +#define CL_DEMUX_EU_CORE_EVENT_MASK_OR ( 0x08 ) +#define CL_DEMUX_EU_CORE_IRQ_MASK ( 0x0C ) +#define CL_DEMUX_EU_CORE_IRQ_MASK_AND ( 0x10 ) +#define CL_DEMUX_EU_CORE_IRQ_MASK_OR ( 0x14 ) +#define CL_DEMUX_EU_CORE_STATUS ( 0x18 ) +#define CL_DEMUX_EU_CORE_BUFFER ( 0x1C ) +#define CL_DEMUX_EU_CORE_BUFFER_MASKED ( 0x20 ) +#define CL_DEMUX_EU_CORE_BUFFER_IRQ_MASKED ( 0x24 ) +#define CL_DEMUX_EU_CORE_BUFFER_CLEAR ( 0x28 ) +#define CL_DEMUX_EU_CORE_SW_EVT_MASK ( 0x2C ) +#define CL_DEMUX_EU_CORE_SW_EVT_MASK_AND ( 0x30 ) +#define CL_DEMUX_EU_CORE_SW_EVT_MASK_OR ( 0x34 ) +#define CL_DEMUX_EU_CORE_EVENT_WAIT ( 0x38 ) +#define CL_DEMUX_EU_CORE_EVENT_WAIT_CLEAR ( 0x3C ) +#define CL_DEMUX_EU_CORE_SEC_IRQ_MASK ( 0x40 ) +#define CL_DEMUX_EU_CORE_SEC_IRQ_MASK_AND ( 0x44 ) +#define CL_DEMUX_EU_CORE_SEC_IRQ_MASK_OR ( 0x48 ) + +/*! Event_Unit Loop Demux */ +#define CL_DEMUX_EU_LOOP_STATE ( 0x00 ) +#define CL_DEMUX_EU_LOOP_START ( 0x04 ) +#define CL_DEMUX_EU_LOOP_END ( 0x08 ) +#define CL_DEMUX_EU_LOOP_INCR ( 0x0C ) +#define CL_DEMUX_EU_LOOP_CHUNK ( 0x10 ) +#define CL_DEMUX_EU_LOOP_EPOCH ( 0x14 ) +#define CL_DEMUX_EU_LOOP_SINGLE ( 0x18 ) + +/*! Event_Unit Dispatch Demux */ +#define CL_DEMUX_EU_DISPATCH_FIFO_ACCESS ( 0x00 ) +#define CL_DEMUX_EU_DISPATCH_TEAM_CONFIG ( 0x04 ) + +/*! Event_Unit Mutex Demux */ +#define CL_DEMUX_EU_HW_MUTEX_MUTEX ( 0x00 ) + +/*! Event_Unit SW_Events Demux */ +#define CL_DEMUX_EU_SW_EVT_TRIGGER ( 0x00 ) +#define CL_DEMUX_EU_SW_EVT_TRIGGER_WAIT ( 0x40 ) +#define CL_DEMUX_EU_SW_EVT_TRIGGER_WAIT_CLEAR ( 0x80 ) + +/*! Event_Unit HW Barrier Demux */ +#define CL_DEMUX_EU_HW_BARRIER_TRIGGER_MASK ( 0x00 ) +#define CL_DEMUX_EU_HW_BARRIER_STATUS ( 0x04 ) +#define CL_DEMUX_EU_HW_BARRIER_STATUS_SUMMARY ( 0x08 ) +#define CL_DEMUX_EU_HW_BARRIER_TARGET_MASK ( 0x0C ) +#define CL_DEMUX_EU_HW_BARRIER_TRIGGER ( 0x10 ) +#define CL_DEMUX_EU_HW_BARRIER_TRIGGER_SELF ( 0x14 ) +#define CL_DEMUX_EU_HW_BARRIER_TRIGGER_WAIT ( 0x18 ) +#define CL_DEMUX_EU_HW_BARRIER_TRIGGER_WAIT_CLEAR ( 0x1C ) + +#define CL_DEMUX_EU_HW_BARRIER_SIZE ( 0x20 ) + + +/* Cluster demux peripherals.*/ +#define CL_DEMUX_EU_CORE_OFFSET (CL_DEMUX_PERIPH_OFFSET + CLUSTER_DEMUX_EU_CORE_OFFSET) +#define CL_DEMUX_EU_LOOP_OFFSET (CL_DEMUX_PERIPH_OFFSET + CLUSTER_DEMUX_EU_LOOP_OFFSET) +#define CL_DEMUX_EU_DISPATCH_OFFSET (CL_DEMUX_PERIPH_OFFSET + CLUSTER_DEMUX_EU_DISPATCH_OFFSET) +#define CL_DEMUX_EU_HW_MUTEX_OFFSET (CL_DEMUX_PERIPH_OFFSET + CLUSTER_DEMUX_EU_HW_MUTEX_OFFSET) +#define CL_DEMUX_EU_SW_EVENT_OFFSET (CL_DEMUX_PERIPH_OFFSET + CLUSTER_DEMUX_EU_SW_EVENT_OFFSET) +#define CL_DEMUX_EU_HW_BARRIER_OFFSET (CL_DEMUX_PERIPH_OFFSET + CLUSTER_DEMUX_EU_HW_BARRIER_OFFSET) +#define CL_DEMUX_DMA_OFFSET (CL_DEMUX_PERIPH_OFFSET + 0x00000400) + + +#define CL_DMA_ID(id) (id) + + +#define PRINTF_BUFFER_SIZE ( 128 ) +#endif /* __PROPERTIES_H__ */ diff --git a/rtos/freertos/abstraction_layer_freertos/include/pulp_mem_map.h b/rtos/freertos/abstraction_layer_freertos/include/pulp_mem_map.h new file mode 100644 index 00000000..d8c6ecd0 --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/include/pulp_mem_map.h @@ -0,0 +1,81 @@ +/* + * Copyright (C) 2019 ETH Zurich and University of Bologna + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + * Author: Robert Balas (balasr@iis.ee.ethz.ch) + */ + +#ifndef __PULP_MEM_MAP_H +#define __PULP_MEM_MAP_H + +/* + * SOC PERIPHERALS + */ + +#define PULP_SOC_PERIPHERALS_ADDR 0x1A100000 + +#define PULP_FC_TIMER_SIZE 0x00000800 + +#define PULP_FLL_OFFSET 0x00000000 +#define PULP_GPIO_OFFSET 0x00001000 +#define PULP_UDMA_OFFSET 0x00002000 +#define PULP_APB_SOC_CTRL_OFFSET 0x00004000 +#define PULP_ADV_TIMER_OFFSET 0x00005000 +#define PULP_SOC_EU_OFFSET 0x00006000 +#define PULP_FC_IRQ_OFFSET 0x00009800 +/* #define PULP_FC_IRQ_OFFSET 0x00009000 */ /* this is a mirror of above */ +#define PULP_FC_TIMER_OFFSET 0x0000B000 +#define PULP_FC_HWPE_OFFSET 0x0000C000 +#define PULP_STDOUT_OFFSET 0x0000F000 +#define PULP_DEBUG_OFFSET 0x00010000 + +#define PULP_FLL_ADDR (PULP_SOC_PERIPHERALS_ADDR + PULP_FLL_OFFSET) +#define PULP_GPIO_ADDR (PULP_SOC_PERIPHERALS_ADDR + PULP_GPIO_OFFSET) +#define PULP_UDMA_ADDR (PULP_SOC_PERIPHERALS_ADDR + PULP_UDMA_OFFSET) +#define PULP_APB_SOC_CTRL_ADDR \ + (PULP_SOC_PERIPHERALS_ADDR + PULP_APB_SOC_CTRL_OFFSET) +#define PULP_ADV_TIMER_ADDR (PULP_SOC_PERIPHERALS_ADDR + PULP_ADV_TIMER_OFFSET) +#define PULP_SOC_EU_ADDR (PULP_SOC_PERIPHERALS_ADDR + PULP_SOC_EU_OFFSET) +#define PULP_FC_IRQ_ADDR (PULP_SOC_PERIPHERALS_ADDR + PULP_FC_IRQ_OFFSET) +/* #define PULP_FC_ITC_ADDR (PULP_SOC_PERIPHERALS_ADDR + PULP_FC_ITC_OFFSET) + */ +#define PULP_FC_TIMER_ADDR (PULP_SOC_PERIPHERALS_ADDR + PULP_FC_TIMER_OFFSET) +#define PULP_FC_HWPE_ADDR (PULP_SOC_PERIPHERALS_ADDR + PULP_FC_HWPE_OFFSET) +#define PULP_STDOUT_ADDR (PULP_SOC_PERIPHERALS_ADDR + PULP_STDOUT_OFFSET) + +#define PULP_FLL_AREA_SIZE 0x00000010 + +/* + * CLUSTER + */ + +#define PULP_CLUSTER_ADDR 0x00000000 +#define PULP_CLUSTER_SIZE 0x00400000 +#define PULP_CLUSTER_GLOBAL_ADDR(cid) (0x10000000 + (cid)*PULP_CLUSTER_SIZE) + +/* + * CLUSTER PERIPHERALS + */ + +#define PULP_CLUSTER_PERIPHERALS_OFFSET 0x00200000 + +#define PULP_TIMER_OFFSET 0x00000400 + +#define PULP_CLUSTER_PERIPHERALS_ADDR \ + (PULP_CLUSTER_ADDR + PULP_CLUSTER_PERIPHERALS_OFFSET) +#define PULP_CLUSTER_PERIPHERALS_GLOBAL_ADDR(cid) \ + (PULP_CLUSTER_GLOBAL_ADDR(cid) + PULP_CLUSTER_PERIPHERALS_OFFSET) + +#endif diff --git a/rtos/freertos/abstraction_layer_freertos/include/soc_eu.h b/rtos/freertos/abstraction_layer_freertos/include/soc_eu.h new file mode 100644 index 00000000..70e16087 --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/include/soc_eu.h @@ -0,0 +1,330 @@ +/* + * Copyright 2020 GreenWaves Technologies + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#ifndef __SOC_EU_H__ +#define __SOC_EU_H__ + +#include + +#include "memory_map.h" +#include "target.h" +#include "io.h" + +/* FC SOC domain events, all delegated by FC_SOC_EVENT_IRQn = 27 */ +/* TODO: garbage collect this */ +#define UDMA_EVENT_LVDS_RX 0 +#define UDMA_EVENT_LVDS_TX 1 +#define UDMA_EVENT_SPIM0_RX 2 +#define UDMA_EVENT_SPIM0_TX 3 +#define UDMA_EVENT_SPIM1_RX 4 +#define UDMA_EVENT_SPIM1_TX 5 +#define UDMA_EVENT_HYPERBUS_RX 6 +#define UDMA_EVENT_HYPERBUS_TX 7 +#define UDMA_EVENT_UART_RX 8 +#define UDMA_EVENT_UART_TX 9 +#define UDMA_EVENT_I2C0_RX 10 +#define UDMA_EVENT_I2C0_TX 11 +#define UDMA_EVENT_I2C1_RX 12 +#define UDMA_EVENT_I2C1_TX 13 +#define UDMA_EVENT_DMACPY_RX 14 +#define UDMA_EVENT_DMACPY_TX 15 +#define UDMA_EVENT_SAI_CH0 16 +#define UDMA_EVENT_SAI_CH1 17 +#define UDMA_EVENT_CPI_RX 18 +#define UDMA_EVENT_RESERVED0 19 + +#define UDMA_EVENT_LVDS_GEN0 20 +#define UDMA_EVENT_LVDS_GEN1 21 +#define UDMA_EVENT_SPIM0_EOT 22 +#define UDMA_EVENT_SPIM1_EOT 23 +#define UDMA_EVENT_HYPERBUS_RESERVED 24 +#define UDMA_EVENT_UART_RESERVED 25 +#define UDMA_EVENT_I2C0_ERROR 26 +#define UDMA_EVENT_I2C1_ERROR 27 +#define UDMA_EVENT_I2S_RESERVED 28 +#define UDMA_EVENT_CAM_RESERVED 29 +#define UDMA_EVENT_RESERVED1 30 + +#define PMU_EVENT_CLUSTER_POWER_ON 31 +#define PMU_EVENT_CLUSTER_RESERVED0 32 +#define PMU_EVENT_CLUSTER_RESERVED1 33 +#define PMU_EVENT_CLUSTER_RESERVED2 34 +#define PMU_EVENT_CLUSTER_CLOCK_GATING 35 +#define PMU_DLC_EVENT_BRIDGE_PICL_OK 36 +#define PMU_DLC_EVENT_BRIDGE_SCU_OK 37 +#define PMU_EVENTS_NUM 7 + +#define PWM0_EVENT 38 +#define PWM1_EVENT 39 +#define PWM2_EVENT 40 +#define PWM3_EVENT 41 +#define GPIO_EVENT 42 /**< GPIO group interrupt */ +#define RTC_APB_EVENT 43 +#define RTC_EVENT 44 +#define EVENT_RESERVED0 45 +#define EVENT_RESERVED1 46 +#define EVENT_RESERVED2 47 + +#define SOC_SW_EVENT0 48 /**< SOC SW Event0 */ +#define SOC_SW_EVENT1 49 /**< SOC SW Event1 */ +#define SOC_SW_EVENT2 50 /**< SOC SW Event2 */ +#define SOC_SW_EVENT3 51 /**< SOC SW Event3 */ +#define SOC_SW_EVENT4 52 /**< SOC SW Event4 */ +#define SOC_SW_EVENT5 53 /**< SOC SW Event5 */ +#define SOC_SW_EVENT6 54 /**< SOC SW Event6 */ +#define SOC_SW_EVENT7 55 /**< SOC SW Event7 */ +#define REF32K_CLK_RISE_EVENT \ + 56 /**< SOC EU SW Event Reference 32K Clock event */ + +/** SOCEU - Register Layout Typedef */ +typedef struct { + volatile uint32_t EVENT; /**< SOCEU event register, offset: 0x00 */ + volatile uint32_t FC_MASK0; /**< SOCEU fc mask 0 register, offset: 0x04 + */ + volatile uint32_t FC_MASK1; /**< SOCEU fc mask 1 register, offset: 0x08 + */ + volatile uint32_t FC_MASK2; /**< SOCEU fc mask 2 register, offset: 0x0c + */ + volatile uint32_t FC_MASK3; /**< SOCEU fc mask 3 register, offset: 0x10 + */ + volatile uint32_t FC_MASK4; /**< SOCEU fc mask 4 register, offset: 0x14 + */ + volatile uint32_t FC_MASK5; /**< SOCEU fc mask 5 register, offset: 0x18 + */ + volatile uint32_t FC_MASK6; /**< SOCEU fc mask 6 register, offset: 0x1c + */ + volatile uint32_t FC_MASK7; /**< SOCEU fc mask 7 register, offset: 0x20 + */ + volatile uint32_t CL_MASK0; /**< SOCEU cluster mask 0 register, offset: + 0x24 */ + volatile uint32_t CL_MASK1; /**< SOCEU cluster mask 1 register, offset: + 0x28 */ + volatile uint32_t CL_MASK2; /**< SOCEU cluster mask 2 register, offset: + 0x2C */ + volatile uint32_t CL_MASK3; /**< SOCEU cluster mask 3 register, offset: + 0x30 */ + volatile uint32_t CL_MASK4; /**< SOCEU cluster mask 4 register, offset: + 0x34 */ + volatile uint32_t CL_MASK5; /**< SOCEU cluster mask 5 register, offset: + 0x38 */ + volatile uint32_t CL_MASK6; /**< SOCEU cluster mask 6 register, offset: + 0x3C */ + volatile uint32_t CL_MASK7; /**< SOCEU cluster mask 7 register, offset: + 0x40 */ + volatile uint32_t PR_MASK0; /**< SOCEU propagate mask MSB register, + offset: 0x44 */ + volatile uint32_t PR_MASK1; /**< SOCEU propagate mask MSB register, + offset: 0x48 */ + volatile uint32_t PR_MASK2; /**< SOCEU propagate mask MSB register, + offset: 0x4c */ + volatile uint32_t PR_MASK3; /**< SOCEU propagate mask MSB register, + offset: 0x50 */ + volatile uint32_t PR_MASK4; /**< SOCEU propagate mask MSB register, + offset: 0x54 */ + volatile uint32_t PR_MASK5; /**< SOCEU propagate mask MSB register, + offset: 0x58 */ + volatile uint32_t PR_MASK6; /**< SOCEU propagate mask MSB register, + offset: 0x5c */ + volatile uint32_t PR_MASK7; /**< SOCEU propagate mask MSB register, + offset: 0x60 */ + volatile uint32_t ERR_MASK0; /**< SOCEU error mask MSB register, offset: + 0x64 */ + volatile uint32_t ERR_MASK1; /**< SOCEU error mask MSB register, offset: + 0x68 */ + volatile uint32_t ERR_MASK2; /**< SOCEU error mask MSB register, offset: + 0x6c */ + volatile uint32_t ERR_MASK3; /**< SOCEU error mask MSB register, offset: + 0x70 */ + volatile uint32_t ERR_MASK4; /**< SOCEU error mask MSB register, offset: + 0x74 */ + volatile uint32_t ERR_MASK5; /**< SOCEU error mask MSB register, offset: + 0x78 */ + volatile uint32_t ERR_MASK6; /**< SOCEU error mask MSB register, offset: + 0x7c */ + volatile uint32_t ERR_MASK7; /**< SOCEU error mask MSB register, offset: + 0x80 */ + volatile uint32_t TIMER_SEL_HI; /**< SOCEU timer high register, offset: + 0x84 */ + volatile uint32_t TIMER_SEL_LO; /**< SOCEU timer low register, offset: + 0x88 */ +} soceu_t; + +#define SOC_EVENT_OFFSET 0x00 +#define SOC_FC_MASK0_OFFSET 0x04 +#define SOC_CL_MASK0_OFFSET 0x24 +#define SOC_PR_MASK0_OFFSET 0x44 +#define SOC_ERR_MASK0_OFFSET 0x64 + +/* The SOC events number */ +#define SOC_EVENTS_NUM 0x08 + + +/* SOCEU - Peripheral instance base addresses */ +/** Peripheral SOCEU base address */ +#define SOCEU_BASE SOC_EU_ADDR +/** Peripheral SOCEU base pointer */ +#define SOCEU ((soceu_t *)SOCEU_BASE) +/** Array initializer of SOCEU base addresses */ +#define SOCEU_BASE_ADDRS \ + { \ + SOCEU_BASE \ + } +/** Array initializer of SOCEU base pointers */ +#define SOCEU_BASE_PTRS \ + { \ + SOCEU \ + } + +static inline void soc_eu_fc_write(uint32_t val, uint32_t reg) +{ + writew(val, (uintptr_t)(SOC_EU_ADDR + SOC_FC_MASK0_OFFSET + reg)); +} + +static inline uint32_t soc_eu_fc_read(uint32_t reg) +{ + return readw((uintptr_t)(SOC_EU_ADDR + SOC_FC_MASK0_OFFSET + reg)); +} + +static inline void soc_eu_cl_write(uint32_t val, uint32_t reg) +{ + writew(val, (uintptr_t)(SOC_EU_ADDR + SOC_CL_MASK0_OFFSET + reg)); +} + +static inline uint32_t soc_eu_cl_read(uint32_t reg) +{ + return readw((uintptr_t)(SOC_EU_ADDR + SOC_CL_MASK0_OFFSET + reg)); +} + +static inline void soc_eu_pr_write(uint32_t val, uint32_t reg) +{ + writew(val, (uintptr_t)(SOC_EU_ADDR + SOC_PR_MASK0_OFFSET + reg)); +} + +static inline uint32_t soc_eu_pr_read(uint32_t reg) +{ + return readw((uintptr_t)(SOC_EU_ADDR + SOC_PR_MASK0_OFFSET + reg)); +} + +static inline void hal_soc_eu_set_fc_mask(int evt) +{ + if (evt >= 256 || evt < 0) + return; + + int shift = evt % 32; + uint32_t reg_offset = (uint32_t)evt / 32 * 4; + soc_eu_fc_write(soc_eu_fc_read(reg_offset) & ~(1u << shift), + reg_offset); +} + +static inline void hal_soc_eu_set_pr_mask(int evt) +{ + if (evt >= 256 || evt < 0) + return; + + int shift = evt % 32; + uint32_t reg_offset = (uint32_t)evt / 32 * 4; + soc_eu_pr_write(soc_eu_pr_read(reg_offset) & ~(1u << shift), + reg_offset); +} + +static inline void hal_soc_eu_set_cl_mask(int clusterId, int evt) +{ + if (evt >= 256 || evt < 0) + return; + + int shift = evt % 32; + uint32_t reg_offset = (uint32_t)evt / 32 * 4; + soc_eu_cl_write(soc_eu_cl_read(reg_offset) & ~(1u << shift), + reg_offset); +} + +static inline void hal_soc_eu_clear_fc_mask(int evt) +{ + if (evt >= 256 || evt < 0) + return; + + int shift = evt % 32; + uint32_t reg_offset = (uint32_t)evt / 32 * 4; + soc_eu_fc_write(soc_eu_fc_read(reg_offset) | (1u << shift), reg_offset); +} + +static inline void hal_soc_eu_clear_pr_mask(int evt) +{ + if (evt >= 256 || evt < 0) + return; + + int shift = evt % 32; + uint32_t reg_offset = (uint32_t)evt / 32 * 4; + soc_eu_pr_write(soc_eu_pr_read(reg_offset) | (1u << shift), reg_offset); +} + +static inline void hal_soc_eu_clear_cl_mask(int clusterId, int evt) +{ + if (evt >= 256 || evt < 0) + return; + + int shift = evt % 32; + uint32_t reg_offset = (uint32_t)evt / 32 * 4; + soc_eu_cl_write(soc_eu_cl_read(reg_offset) | (1u << shift), reg_offset); +} + + +static inline void hal_soc_eu_set_mask(uint32_t mask) +{ + writew(mask, (uintptr_t)(SOC_EU_ADDR + SOC_EVENT_OFFSET)); +} + +static inline void hal_soc_eu_configure(int cluster, int event, int active) +{ + abort(); + /* TODO: implement this */ + /* #if SOC_SW_EVENT0 < 32 */ + /* uint32_t mask = (cluster == FC_CLUSTER_ID) ? (SOCEU->FC_MASK_LSB) + * : (SOCEU->CL_MASK_LSB); */ + /* int fullEvent = event - SOC_SW_EVENT0; */ + + /* if (!active) */ + /* mask = mask | (1<FC_MASK_LSB = mask; */ + /* else */ + /* SOCEU->CL_MASK_LSB = mask; */ + /* #else */ + /* uint32_t mask = (cluster == FC_CLUSTER_ID) ? (SOCEU->FC_MASK_MSB) + * : (SOCEU->CL_MASK_MSB); */ + /* int fullEvent = event + SOC_SW_EVENT0 - 32; */ + + /* if (!active) */ + /* mask = mask | (1<FC_MASK_MSB = mask; */ + /* else */ + /* SOCEU->CL_MASK_MSB = mask; */ + /* #endif */ +} + +/* initialize soc event unit */ +void soc_eu_event_init(); + +#endif /* __SOC_EU_H__ */ diff --git a/rtos/freertos/abstraction_layer_freertos/include/soc_eu_metal.h b/rtos/freertos/abstraction_layer_freertos/include/soc_eu_metal.h new file mode 100644 index 00000000..0a7a4fd5 --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/include/soc_eu_metal.h @@ -0,0 +1,73 @@ +/* + * Copyright (C) 2019 ETH Zurich and University of Bologna + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +/* Author: Robert Balas (balasr@iis.ee.ethz.ch) + * Germain Haugou (germain.haugou@iis.ee.ethz.ch) + */ + +#ifndef __SOC_EU_H +#define __SOC_EU_H +/* + * SOC EVENTS + */ + +#define SOC_EU_EVENT 0x00 +#define SOC_FC_FIRST_MASK 0x04 +#define SOC_CL_FIRST_MASK 0x24 +#define SOC_PR_FIRST_MASK 0x44 +#define SOC_ERR_FIRST_MASK 0x64 +#define SOC_TIMER_SEL_HI 0x84 +#define SOC_TIMER_SEL_LO 0x88 + +#define SOC_EU_EVENT_0 0x1 +#define SOC_EU_EVENT_1 0x2 +#define SOC_EU_EVENT_2 0x4 +#define SOC_EU_EVENT_3 0x8 +#define SOC_EU_EVENT_4 0x10 +#define SOC_EU_EVENT_5 0x20 +#define SOC_EU_EVENT_6 0x40 +#define SOC_EU_EVENT_7 0x80 + +#define SOC_TIMER_SEL_ENABLE_SHIFT 31 +#define SOC_TIMER_SEL_EVT_SHIFT 0 +#define SOC_TIMER_SEL_EVT_WIDTH 8 +#define SOC_TIMER_SEL_EVT_MASK ((~0U) >> (32 - SOC_TIMER_SEL_EVT_WIDTH)) +// #define SOC_TIMER_SEL_EVT_MASK 0xff + +#define SOC_TIMER_SEL_ENABLE_DISABLED 0 +#define SOC_TIMER_SEL_ENABLE_ENABLED 1 + +#define SOC_TIMER_SEL_ENABLE_DIS (0 << SOC_TIMER_SEL_ENABLE_SHIFT) +#define SOC_TIMER_SEL_ENABLE_ENA (1 << SOC_TIMER_SEL_ENABLE_SHIFT) +#define SOC_TIMER_SEL_EVT_VAL(val) ((val) << SOC_TIMER_SEL_EVT_SHIFT) + +// related to XX_FIRST_MASK registers +#define SOC_NB_EVENT_REGS 8 +#define SOC_NB_EVENT_TARGETS 3 + +#define SOC_FC_MASK(x) (SOC_FC_FIRST_MASK + (x)*4) +#define SOC_CL_MASK(x) (SOC_CL_FIRST_MASK + (x)*4) +#define SOC_PR_MASK(x) (SOC_PR_FIRST_MASK + (x)*4) + +void soc_eu_mask_set(uint32_t offset, uint32_t mask); + +uint32_t soc_eu_mask_get(uint32_t offset); + +void soc_eu_event_init(); + +#endif diff --git a/rtos/freertos/abstraction_layer_freertos/include/spi.h b/rtos/freertos/abstraction_layer_freertos/include/spi.h new file mode 100644 index 00000000..8515bdf0 --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/include/spi.h @@ -0,0 +1,452 @@ +/* + * Copyright (C) 2018 GreenWaves Technologies + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#ifndef __DRIVERS__SPI_H__ +#define __DRIVERS__SPI_H__ + +#include +#include + +#include "pmsis_task.h" + + +/// @cond IMPLEM + +#define __PI_SPI_CTRL_CPOL_BIT 0 +#define __PI_SPI_CTRL_CPHA_BIT 2 +#define __PI_SPI_CTRL_WORDSIZE_BIT 4 +#define __PI_SPI_CTRL_ENDIANNESS_BIT 6 +#define __PI_SPI_CTRL_SET_MAX_BAUDRATE_BIT 8 + +/// @endcond + + + +/** +* @ingroup groupDrivers +*/ + + + +/** + * @defgroup SPI SPI + * + * The SPIM driver provides support for transferring data between an external + * SPIM device and the chip running this driver. + * + */ + +/** + * @addtogroup SPI + * @{ + */ + +/**@{*/ + +/** \enum pi_spi_wordsize_e + * \brief Wordsize of the SPI bitstream elements. + * + * This is used to know how the endianness must be applied. + * Not all sizes are supported on all chips, check the chip-specific section + * to get more information. + */ +typedef enum { + PI_SPI_WORDSIZE_8 = 0, /*!< Each element is 8 bits. Thus the endianness + has no effect. */ + PI_SPI_WORDSIZE_16 = 1, /*!< Each element is 16 bits. The way each + element is stored in memory can then be specified with the endianness. */ + PI_SPI_WORDSIZE_32 = 2 /*!< Each element is 32 bits. The way each + element is stored in memory can then be specified with the endianness. */ +} pi_spi_wordsize_e; + +/** + * \enum pi_spi_polarity_e + * + * Clock polarity. + */ +typedef enum +{ + PI_SPI_POLARITY_0 = 0, /*!< Leading edge is rising edge, trailing edge is falling edge. */ + PI_SPI_POLARITY_1 = 1 /*!< Leading edge is falling edge, trailing edge is rising edge. */ +} pi_spi_polarity_e; + +/** + * \enum pi_spi_phase_e + * + * Clock phase. + */ +typedef enum +{ + PI_SPI_PHASE_0 = 0, /*!< Data shifted out on trailing edge of preceding clock cycle. + * Data sampled on leading edge of clock cycle. + */ + PI_SPI_PHASE_1 = 1 /*!< Data shifted out on leading edge of current clock cycle. + * Data sampled on trailing edge of clock cycle. + */ +} pi_spi_phase_e; + +/** \struct pi_spi_conf_t + * \brief SPI master configuration structure. + * + * This structure is used to pass the desired SPI master configuration to the + * runtime when opening a device. + */ +struct pi_spi_conf +{ + int max_baudrate; /*!< Maximum baudrate for the SPI bitstream which can + be used with the opened device . */ + char wordsize; /*!< Wordsize of the elements in the bitstream. Can + be PI_SPI_WORDSIZE_8 for 8 bits data or PI_SPI_WORDSIZE_32 for 32 bits + data. This is used to interpret the endianness. */ + char big_endian; /*!< If 1, the elements are stored in memory in a + big-endian way, i.e. the most significant byte is stored at the lowest + address. This is taken into account only if the wordsize is 32 bits. */ + pi_spi_polarity_e polarity; /*!< Polarity of the clock. */ + pi_spi_phase_e phase; /*!< Phase of the clock. */ + signed char cs; /*!< Specifies which SPI chip select is used for the + device. */ + signed char itf; /*!< Specifies on which SPI interface the device is + connected. */ + int max_rcv_chunk_size; /*!< Specifies maximum chunk size for reception when + using copies. */ + int max_snd_chunk_size; /*!< Specifies maximum chunk size for sending when + using copies. */ +}; + +/** \enum pi_spi_ioctl_e + * \brief Possible parameters which can be set through the pi_spi_control API + function. + * + * This is used to reconfigure dynamically some of the parameters of an + * opened device. + */ +typedef enum { + PI_SPI_CTRL_CPOL0 = 1 << __PI_SPI_CTRL_CPOL_BIT, /*!< Set the + clock polarity to 0. */ + PI_SPI_CTRL_CPOL1 = 2 << __PI_SPI_CTRL_CPOL_BIT, /*!< Set the + clock polarity to 1. */ + PI_SPI_CTRL_CPHA0 = 1 << __PI_SPI_CTRL_CPHA_BIT, /*!< Set the + clock phase to 0. */ + PI_SPI_CTRL_CPHA1 = 2 << __PI_SPI_CTRL_CPHA_BIT, /*!< Set the + clock phase to 1. */ + PI_SPI_CTRL_WORDSIZE_8 = 1 << __PI_SPI_CTRL_WORDSIZE_BIT, /*!< Set the + wordsize to 8 bits. */ + PI_SPI_CTRL_WORDSIZE_32 = 2 << __PI_SPI_CTRL_WORDSIZE_BIT, /*!< Set the + wordsize to 32 bits. */ + PI_SPI_CTRL_BIG_ENDIAN = 1 << __PI_SPI_CTRL_ENDIANNESS_BIT, /*!< + Handle the elements in memory in a big-endian way. */ + PI_SPI_CTRL_LITTLE_ENDIAN = 2 << __PI_SPI_CTRL_ENDIANNESS_BIT, /*!< + Handle the elements in memory in a little-endian way. */ + PI_SPI_CTRL_SET_MAX_BAUDRATE = 1 << __PI_SPI_CTRL_SET_MAX_BAUDRATE_BIT, /*!< + Change maximum baudrate. */ +} pi_spi_ioctl_e; + + + +/** \enum pi_spi_flags_e + * \brief Specifies additional behaviors for transfers. + * + * This flags can be given when transfering data. + * + */ +typedef enum { + PI_SPI_CS_AUTO = 0 << 0, /*!< Handles the chip select automatically. + It is set low just before the transfer is started and set back high when + the transfer is finished. */ + PI_SPI_CS_KEEP = 1 << 0, /*!< Handle the chip select manually. It is + set low just before the transfer is started and is kept low until the next + transfer. */ + PI_SPI_CS_NONE = 2 << 0, /*!< Don't do anything with the chip + select. */ + PI_SPI_LINES_SINGLE = 0 << 2, /*!< Use a single MISO line. */ + PI_SPI_LINES_QUAD = 1 << 2, /*!< Use quad MISO lines. */ + PI_SPI_LINES_OCTAL = 2 << 2, /*!< Use octal MISO lines. */ + PI_SPI_COPY_EXT2LOC = 1 << 4, /*!< Do a copy from external memory to local + chip memory. */ + PI_SPI_COPY_LOC2EXT = 0 << 4, /*!< Do a copy from local chip memory to + external memory. */ +} pi_spi_flags_e; + +/** \brief Initialize an SPI master configuration with default values. + * + * This function can be called to get default values for all parameters before + * setting some of them. + * The structure containing the configuration must be kept alive until the SPI + * device is opened. + * + * \param conf A pointer to the SPI master configuration. + */ +void pi_spi_conf_init(struct pi_spi_conf *conf); + +/** \brief Open an SPI device. + * + * This function must be called before the SPI device can be used. + * It will do all the needed configuration to make it usable and initialize + * the handle used to refer to this opened device when calling other functions. + * The caller is blocked until the operation is finished. + * + * \param device A pointer to the device structure of the device to open. + * This structure is allocated by the caller and must be kept alive until the + * device is closed. + * \return 0 if the operation is successfull, -1 if there was an error. + */ +int pi_spi_open(struct pi_device *device); + +/** \brief Close an opened SPI device. + * + * This function can be called to close an opened SPI device once it is not + * needed anymore, in order to free all allocated resources. Once this function + * is called, the device is not accessible anymore and must be opened + * again before being used. + * The caller is blocked until the operation is finished. + * + * \param device A pointer to the structure describing the device. + */ +void pi_spi_close(struct pi_device *device); + +/** \brief Dynamically change the device configuration. + * + * This function can be called to change part of the device configuration after + * it has been opened. + * + * \param device A pointer to the structure describing the device. + * \param cmd The command which specifies which parameters of the driver + * to modify and for some of them also their values. The command must be one + * of those defined in pi_spi_ioctl_e. + * \param arg An additional value which is required for some parameters + * when they are set. + */ +void pi_spi_ioctl(struct pi_device *device, uint32_t cmd, void *arg); + +/** \brief Enqueue a write copy to the SPI (from Chip to SPI device). + * + * This function can be used to send data to the SPI device. + * The copy will make a synchronous transfer between the SPI and one of the + * chip memory. + * This is by default using classic SPI transfer with MOSI and MISO lines, but + * other kind of transfers like quad SPI can be used by specifying additional + * flags. + * Due to hardware constraints, the address of the buffer must be aligned on + * 4 bytes and the size must be a multiple of 4. + * The caller is blocked until the transfer is finished. + * Depending on the chip, there may be some restrictions on the memory which + * can be used. Check the chip-specific documentation for more details. + * + * \param device A pointer to the structure describing the device. + * \param data The address in the chip where the data to be sent must be read. + * \param len The size in bits of the copy. + * \param flag Additional behaviors for the transfer can be specified using + * this flag. Can be 0 to use the default flag, which is using PI_SPI_CS_AUTO + * and PI_SPI_LINES_SINGLE. + */ +void pi_spi_send(struct pi_device *device, void *data, size_t len, + pi_spi_flags_e flag); + +/** \brief Enqueue a read copy to the SPI (from Chip to SPI device). + * + * This function can be used to receive data from the SPI device. + * The copy will make a synchronous transfer between the SPI and one of the + * chip memory. + * This is by default using classic SPI transfer with MOSI and MISO lines, but + * other kind of transfers like quad SPI + * can be used by specifying additional flags. + * Due to hardware constraints, the address of the buffer must be aligned on 4 + * bytes and the size must be a multiple of 4. + * The caller is blocked until the transfer is finished. + * Depending on the chip, there may be some restrictions on the memory which + * can be used. Check the chip-specific documentation for more details. + * + * \param device A pointer to the structure describing the device. + * \param data The address in the chip where the received data must be written. + * \param len The size in bits of the copy. + * \param flag Additional behaviors for the transfer can be specified using + * this flag. Can be 0 to use the default flag, which is using PI_SPI_CS_AUTO + * and PI_SPI_LINES_SINGLE. + */ +void pi_spi_receive(struct pi_device *device, void *data, size_t len, + pi_spi_flags_e flag); + +/** \brief Enqueue a read and write copy to the SPI (using full duplex mode). + * + * This function can be used to send and receive data with the SPI device using + * full duplex mode. + * The copy will make a synchronous transfer between the SPI and one of the + * chip memory. + * This is using classic SPI transfer with MOSI and MISO lines. + * Due to hardware constraints, the address of the buffer must be aligned on 4 + * bytes and the size must be a multiple of 4. + * The caller is blocked until the transfer is finished. + * Depending on the chip, there may be some restrictions on the memory which + * can be used. Check the chip-specific documentation for more details. + * + * \param device A pointer to the structure describing the device. + * \param tx_data The address in the chip where the data to be sent must be + * read. + * \param rx_data The address in the chip where the received data must be + * written. + * \param len The size in bits of the copy. + * \param flag Additional behaviors for the transfer can be specified using + * this flag. Can be 0 to use the default flag, which is using PI_SPI_CS_AUTO + * and PI_SPI_LINES_SINGLE. + */ +void pi_spi_transfer(struct pi_device *device, void *tx_data, void *rx_data, + size_t len, pi_spi_flags_e flag); + +/** \brief Enqueue an asynchronous write copy to the SPI (from Chip to SPI + * device). + * + * This function can be used to send data to the SPI device. + * The copy will make an asynchronous transfer between the SPI and one of the + * chip memory. This is by default using classic SPI transfer with MOSI and + * MISO lines, but other kind of transfers like quad SPI + * can be used by specifying additional flags. + * Due to hardware constraints, the address of the buffer must be aligned on 4 + * bytes and the size must be a multiple of 4. + * A task must be specified in order to specify how the caller should be + * notified when the transfer is finished. + * Depending on the chip, there may be some restrictions on the memory which + * can be used. Check the chip-specific documentation for more details. + * + * \param device A pointer to the structure describing the device. + * \param data The address in the chip where the data to be sent must be read. + * \param len The size in bits of the copy. + * \param flag Additional behaviors for the transfer can be specified using + * this flag. Can be 0 to use the default flag, which is using + * PI_SPI_CS_AUTO and PI_SPI_LINES_SINGLE. + * \param task The task used to notify the end of transfer. + See the documentation of pi_task_t for more details.details. + */ +void pi_spi_send_async(struct pi_device *device, void *data, size_t len, + pi_spi_flags_e flag, pi_task_t *task); + +/** \brief Enqueue an asynchronous read copy to the SPI (from Chip to SPI + * device). + * + * This function can be used to receive data from the SPI device. + * The copy will make an asynchronous transfer between the SPI and one of the + * chip memory. + * This is by default using classic SPI transfer with MOSI and MISO lines, but + * other kind of transfers like quad SPI + * can be used by specifying additional flags. + * Due to hardware constraints, the address of the buffer must be aligned on 4 + * bytes and the size must be a multiple of 4. + * A task must be specified in order to specify how the caller should be + * notified when the transfer is finished. + * Depending on the chip, there may be some restrictions on the memory which + * can be used. Check the chip-specific documentation for more details. + * + * \param device A pointer to the structure describing the device. + * \param data The address in the chip where the received data must be + * written. + * \param len The size in bits of the copy. + * \param flag Additional behaviors for the transfer can be specified using + * this flag. Can be 0 to use the default flag, which is using PI_SPI_CS_AUTO + * and PI_SPI_LINES_SINGLE. + * \param task The task used to notify the end of transfer. + See the documentation of pi_task_t for more details.details.details. + */ +void pi_spi_receive_async(struct pi_device *device, void *data, size_t len, + pi_spi_flags_e flag, pi_task_t *task); + +/** \brief Enqueue an asynchronous read and write copy to the SPI (using full + * duplex mode). + * + * This function can be used to send and receive data with the SPI device using + * full duplex flag. + * The copy will make an asynchronous transfer between the SPI and one of the + * chip memory. + * This is using classic SPI transfer with MOSI and MISO lines. + * Due to hardware constraints, the address of the buffer must be aligned on 4 + * bytes and the size must be a multiple of 4. + * A task must be specified in order to specify how the caller should be + * notified when the transfer is finished. + * Depending on the chip, there may be some restrictions on the memory which + * can be used. Check the chip-specific documentation for more details. + * + * \param device A pointer to the structure describing the device. + * \param tx_data The address in the chip where the data to be sent must be + * read. + * \param rx_data The address in the chip where the received data must be + * written. + * \param len The size in bits of the copy. + * \param flag Additional behaviors for the transfer can be specified using + * this flag. Can be 0 to use the default flag, which is using PI_SPI_CS_AUTO + * and PI_SPI_LINES_SINGLE. + * \param task The task used to notify the end of transfer. + See the documentation of pi_task_t for more details.details.details. + */ +void pi_spi_transfer_async(struct pi_device *device, void *tx_data, + void *rx_data, size_t len, pi_spi_flags_e flag, pi_task_t *task); + +//!@} + +/** + * @} end of SPI master + */ + +/// @cond IMPLEM + +/** + * Enqueue receive ucode given by the user, and receive answer in data buffer + */ +void pi_spi_receive_with_ucode(struct pi_device *device, void *data, + size_t len, pi_spi_flags_e flags, int ucode_size, + void *ucode); + +/** + * Enqueue receive ucode given by the user, and receive answer in data buffer + */ +void pi_spi_send_with_ucode(struct pi_device *device, void *data, + size_t len, pi_spi_flags_e flags, int ucode_size, + void *ucode); + +/** + * Extract config from device (useful to craft ucode) + */ +uint32_t pi_spi_get_config(struct pi_device *device); + +#define SPI_UCODE_CMD_SEND_CMD(cmd,bits,qpi) ((2<<28) | ((qpi)<<27) | (((bits)-1)<<16) | (((cmd)>>8)<<0) | (((cmd)&0xff)<<(0+8))) +#define SPI_UCODE_CMD_SEND_ADDR(bits,qpi) ((3<<28) | ((qpi)<<27) | (((bits)-1)<<16)) +#define SPI_UCODE_CMD_DUMMY(cycles) ((4<<28) | (((cycles)-1)<<16)) + +void *pi_spi_receive_ucode_set(struct pi_device *device, uint8_t *ucode, uint32_t ucode_size); + +void pi_spi_receive_ucode_set_addr_info(struct pi_device *device, uint8_t *ucode, uint32_t ucode_size); + +void *pi_spi_send_ucode_set(struct pi_device *device, uint8_t *ucode, uint32_t ucode_size); + +void pi_spi_send_ucode_set_addr_info(struct pi_device *device, uint8_t *ucode, uint32_t ucode_size); + +void pi_spi_copy(struct pi_device *device, + uint32_t addr, void *data, uint32_t size, + pi_spi_flags_e flags); + +void pi_spi_copy_async(struct pi_device *device, + uint32_t addr, void *data, uint32_t size, + pi_spi_flags_e flags, pi_task_t *task); + +void pi_spi_copy_2d(struct pi_device *device, + uint32_t addr, void *data, uint32_t size, uint32_t stride, + uint32_t length, pi_spi_flags_e flags); + +void pi_spi_copy_2d_async(struct pi_device *device, + uint32_t addr, void *data, uint32_t size, uint32_t stride, + uint32_t length, pi_spi_flags_e flags, pi_task_t *task); + +/// @endcond + + +#endif diff --git a/rtos/freertos/abstraction_layer_freertos/include/spi_periph.h b/rtos/freertos/abstraction_layer_freertos/include/spi_periph.h new file mode 100644 index 00000000..0902e918 --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/include/spi_periph.h @@ -0,0 +1,332 @@ +/* + * Copyright (C) 2019 ETH Zurich, University of Bologna + * and GreenWaves Technologies + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#ifndef __SPI_PERIPH_H__ +#define __SPI_PERIPH_H__ + +#include "udma.h" + +/* ---------------------------------------------------------------------------- + -- SPI Peripheral Access Layer -- + ---------------------------------------------------------------------------- */ + +/** SPI_Type Register Layout Typedef */ +typedef struct { + udma_channel_t rx; /**< UDMA RX channel struct. */ + udma_channel_t tx; /**< UDMA TX channel struct. */ + udma_channel_t cmd; /**< UDMA CMD channel struct. */ +} spi_t; + +/* ---------------------------------------------------------------------------- + -- SPI Register Bitfield Access -- + ---------------------------------------------------------------------------- */ + +/* SPI command fields offset, mask, value definition */ +/* SPI commands fields offsets */ +#define SPI_CMD_ID_OFFSET 28 + +/* COMMON definitions */ +#define SPI_CMD_QPI_ENA 1 +#define SPI_CMD_QPI_DIS 0 +#define SPI_CMD_LSB_FIRST 1 +#define SPI_CMD_MSB_FIRST 0 +#define SPI_CMD_4_WORD_PER_TRANSF 2 +#define SPI_CMD_2_WORD_PER_TRANSF 1 +#define SPI_CMD_1_WORD_PER_TRANSF 0 +#define SPI_CMD_DATA_WITDH(val) (val) +#define SPI_CMD_CMD_SIZE(val) (val) + +/* CFG */ +#define SPI_CMD_CFG_CLK_DIV_OFFSET 0 +#define SPI_CMD_CFG_CLK_DIV_WIDTH 8 +#define SPI_CMD_CFG_CPHA_OFFSET 8 +#define SPI_CMD_CFG_CPOL_OFFSET 9 + +#define SPI_CMD_CFG_CLKDIV(val) (val) +#define SPI_CMD_CFG_CPOL_POS 1 +#define SPI_CMD_CFG_CPOL_NEG 0 +#define SPI_CMD_CFG_CPHA_STD 1 +#define SPI_CMD_CFG_CPHA_OPP 0 + +/* SOT */ +#define SPI_CMD_SOT_CS_OFFSET 0 +#define SPI_CMD_SOT_CS_WIDTH 2 + +#define SPI_CMD_SOT_CS0 0 +#define SPI_CMD_SOT_CS1 1 +#define SPI_CMD_SOT_CS2 2 +#define SPI_CMD_SOT_CS3 3 + +/* SEND_CMD */ +#define SPI_CMD_SEND_CMD_CMD_OFFSET 0 +#define SPI_CMD_SEND_CMD_CMD_WIDTH 16 +#define SPI_CMD_SEND_CMD_SIZE_OFFSET 16 +#define SPI_CMD_SEND_CMD_SIZE_WIDTH 4 +#define SPI_CMD_SEND_CMD_QPI_OFFSET 27 + +/* SEND_CMD */ +#define SPI_CMD_SEND_BITS_BITS_OFFSET 0 +#define SPI_CMD_SEND_BITS_BITS_WIDTH 16 +#define SPI_CMD_SEND_BITS_SIZE_OFFSET 16 +#define SPI_CMD_SEND_BITS_SIZE_WIDTH 4 +#define SPI_CMD_SEND_BITS_QPI_OFFSET 27 + +/* SEND_ADDR */ +#define SPI_CMD_SEND_ADDR_SIZE_OFFSET 16 +#define SPI_CMD_SEND_ADDR_SIZE_WIDTH 5 +#define SPI_CMD_SEND_ADDR_QPI_OFFSET 27 + +#define SPI_CMD_SEND_ADDR_VALUE(value) (value) + +/* SEND_DUMMY */ +#define SPI_CMD_DUMMY_CYCLE_OFFSET 16 +#define SPI_CMD_DUMMY_CYCLE_WIDTH 5 + +/* TX_DATA */ +#define SPI_CMD_TX_DATA_SIZE_OFFSET 0 +#define SPI_CMD_TX_DATA_SIZE_WIDTH 16 +#define SPI_CMD_TX_DATA_QPI_OFFSET 27 +#define SPI_CMD_TX_DATA_WORDTRANS_OFFSET 21 +#define SPI_CMD_TX_DATA_WORDTRANS_WIDTH 2 +#define SPI_CMD_TX_DATA_LSBFIRST_OFFSET 26 +#define SPI_CMD_TX_DATA_BITSWORD_OFFSET 16 +#define SPI_CMD_TX_DATA_BITSWORD_WIDTH 5 + +/* RX_DATA */ +#define SPI_CMD_RX_DATA_SIZE_OFFSET 0 +#define SPI_CMD_RX_DATA_SIZE_WIDTH 16 +#define SPI_CMD_RX_DATA_QPI_OFFSET 27 +#define SPI_CMD_RX_DATA_WORDTRANS_OFFSET 21 +#define SPI_CMD_RX_DATA_WORDTRANS_WIDTH 2 +#define SPI_CMD_RX_DATA_LSBFIRST_OFFSET 26 +#define SPI_CMD_RX_DATA_BITSWORD_OFFSET 16 +#define SPI_CMD_RX_DATA_BITSWORD_WIDTH 5 + +/* RPT */ +#define SPI_CMD_RPT_NB_OFFSET 0 +#define SPI_CMD_RPT_NB_WIDTH 16 + +/* EOT */ +#define SPI_CMD_EOT_GEN_EVT_OFFSET 0 +#define SPI_CMD_EOT_CS_KEEP_OFFSET 1 + +#define SPI_CMD_EOT_EVENT_ENA 1 +#define SPI_CMD_EOT_EVENT_DIS 0 + +/* WAIT */ +#define SPI_CMD_WAIT_EVENT_OFFSET 0 +#define SPI_CMD_WAIT_EVENT_WIDTH 2 + +/* RX_CHECK */ +#define SPI_CMD_RX_CHECK_VALUE_OFFSET 0 +#define SPI_CMD_RX_CHECK_VALUE_WIDTH 16 + +#define SPI_CMD_RX_CHECK_SIZE_OFFSET 16 +#define SPI_CMD_RX_CHECK_SIZE_WIDTH 4 + +#define SPI_CMD_RX_CHECK_MODE_OFFSET 24 +#define SPI_CMD_RX_CHECK_MODE_WIDTH 2 + +#define SPI_CMD_RX_CHECK_BYTE_ALIGN_OFFSET 26 + +#define SPI_CMD_RX_CHECK_QPI_OFFSET 27 + +#define SPI_CMD_RX_CHECK_MODE_MATCH 0 +#define SPI_CMD_RX_CHECK_MODE_ONES 1 +#define SPI_CMD_RX_CHECK_MODE_ZEROS 2 +#define SPI_CMD_RX_CHECK_MODE_MASK 3 + +/* FULL DUPLEX */ +#define SPI_CMD_FUL_SIZE_OFFSET 0 +#define SPI_CMD_FUL_SIZE_WIDTH 16 +#define SPI_CMD_FUL_WORDTRANS_OFFSET 21 +#define SPI_CMD_FUL_WORDTRANS_WIDTH 2 +#define SPI_CMD_FUL_LSBFIRST_OFFSET 26 +#define SPI_CMD_FUL_BITSWORD_OFFSET 16 +#define SPI_CMD_FUL_BITSWORD_WIDTH 5 + +#define SPI_CMD_SETUP_UC_TXRXEN_OFFSET 27 +#define SPI_CMD_SETUP_UC_DS_OFFSET 25 + +/* ---------------------------------------------------------------------------- + -- SPI CMD IDs and macros -- + ---------------------------------------------------------------------------- */ + +/*! @name CMD_CFG */ +/* Channel continuous mode: + - 1'b0: disable + - 1'b1: enable + At the end of the buffer the uDMA reloads the address and size and starts a new transfer. */ +#define UDMA_CORE_CMD_CFG_CONTINOUS_MASK (0x1) +#define UDMA_CORE_CMD_CFG_CONTINOUS_SHIFT (0) +#define UDMA_CORE_CMD_CFG_CONTINOUS(val) \ + (((uint32_t)(((uint32_t)(val)) \ + << UDMA_CORE_CMD_CFG_CONTINOUS_SHIFT)) & \ + UDMA_CORE_CMD_CFG_CONTINOUS_MASK) + +/* Channel transfer size used to increment uDMA buffer address pointer: + - 2'b00: +1 (8 bits) + - 2'b01: +2 (16 bits) + - 2'b10: +4 (32 bits) + - 2'b11: +0 */ +#define UDMA_CORE_CMD_CFG_DATASIZE_MASK (0x6) +#define UDMA_CORE_CMD_CFG_DATASIZE_SHIFT (1) +#define UDMA_CORE_CMD_CFG_DATASIZE(val) \ + (((uint32_t)(((uint32_t)(val)) << UDMA_CORE_CMD_CFG_DATASIZE_SHIFT)) & \ + UDMA_CORE_CMD_CFG_DATASIZE_MASK) + +/* Reserved/Not used. */ +#define UDMA_CORE_CMD_CFG_RESERVED_0_MASK (0x8) +#define UDMA_CORE_CMD_CFG_RESERVED_0_SHIFT (3) +#define UDMA_CORE_CMD_CFG_RESERVED_0(val) \ + (((uint32_t)(((uint32_t)(val)) \ + << UDMA_CORE_CMD_CFG_RESERVED_0_SHIFT)) & \ + UDMA_CORE_CMD_CFG_RESERVED_0_MASK) + +/* Channel enable and start transfer: + - 1'b0: disable + - 1'b1: enable + This signal is used also to queue a transfer if one is already ongoing. */ +#define UDMA_CORE_CMD_CFG_EN_MASK (0x10) +#define UDMA_CORE_CMD_CFG_EN_SHIFT (4) +#define UDMA_CORE_CMD_CFG_EN(val) \ + (((uint32_t)(((uint32_t)(val)) << UDMA_CORE_CMD_CFG_EN_SHIFT)) & \ + UDMA_CORE_CMD_CFG_EN_MASK) + +/* Transfer pending in queue status flag: + - 1'b0: no pending transfer in the queue + - 1'b1: pending transfer in the queue */ +#define UDMA_CORE_CMD_CFG_PENDING_MASK (0x20) +#define UDMA_CORE_CMD_CFG_PENDING_SHIFT (5) +#define UDMA_CORE_CMD_CFG_PENDING(val) \ + (((uint32_t)(((uint32_t)(val)) << UDMA_CORE_CMD_CFG_PENDING_SHIFT)) & \ + UDMA_CORE_CMD_CFG_PENDING_MASK) + +/* Channel clear and stop transfer: + - 1'b0: disable + - 1'b1: stop and clear the on-going transfer */ +#define UDMA_CORE_CMD_CFG_CLR_MASK (0x20) +#define UDMA_CORE_CMD_CFG_CLR_SHIFT (5) +#define UDMA_CORE_CMD_CFG_CLR(val) \ + (((uint32_t)(((uint32_t)(val)) << UDMA_CORE_CMD_CFG_CLR_SHIFT)) & \ + UDMA_CORE_CMD_CFG_CLR_MASK) + +/* Reserved/Not used. */ +#define UDMA_CORE_CMD_CFG_RESERVED_1_MASK (0xffffff80) +#define UDMA_CORE_CMD_CFG_RESERVED_1_SHIFT (7) +#define UDMA_CORE_CMD_CFG_RESERVED_1(val) \ + (((uint32_t)(((uint32_t)(val)) \ + << UDMA_CORE_CMD_CFG_RESERVED_1_SHIFT)) & \ + UDMA_CORE_CMD_CFG_RESERVED_1_MASK) + +/*! @name CMD_INITCFG */ +/* Reserved/Not used. */ +#define UDMA_CORE_CMD_INITCFG_RESERVED_0_MASK (0xffffffff) +#define UDMA_CORE_CMD_INITCFG_RESERVED_0_SHIFT (0) +#define UDMA_CORE_CMD_INITCFG_RESERVED_0(val) \ + (((uint32_t)(((uint32_t)(val)) \ + << UDMA_CORE_CMD_INITCFG_RESERVED_0_SHIFT)) & \ + UDMA_CORE_CMD_INITCFG_RESERVED_0_MASK) + +#define SPI_CMD_CFG_ID 0x0 /* Sets the configuration for the SPI Master IP. */ +#define SPI_CMD_SOT_ID 0x1 /* Sets the Chip Select (CS). */ +#define SPI_CMD_SEND_CMD_ID 0x2 /* Transmits a configurable size command. */ +#define SPI_CMD_SEND_BITS_ID 0x2 /* Transmits a configurable size command. */ +#define SPI_CMD_SEND_ADDR_ID 0x3 /* Transmits a configurable size address. */ +#define SPI_CMD_DUMMY_ID \ + 0x4 /* Receives a number of dummy bits (not sent to the rx interface). */ +#define SPI_CMD_WAIT_ID \ + 0x5 /* Waits an external event to move to the next instruction. */ +#define SPI_CMD_TX_DATA_ID 0x6 /* Sends data (max 64Kbits). */ +#define SPI_CMD_RX_DATA_ID 0x7 /* Receives data (max 64Kbits). */ +#define SPI_CMD_RPT_ID 0x8 /* Repeat the next transfer N times. */ +#define SPI_CMD_EOT_ID 0x9 /* Clears the Chip Select (CS). */ +#define SPI_CMD_RPT_END_ID 0xA /* End of the repeat loop command. */ +#define SPI_CMD_RX_CHECK_ID \ + 0xB /* Check up ot 16 bits of data against an expected value. */ +#define SPI_CMD_FULL_DUPL_ID 0xC /* Activate full duplex mode. */ + +#define SPI_CMD_CFG(clockDiv, cpol, cpha) \ + ((SPI_CMD_CFG_ID << SPI_CMD_ID_OFFSET) | \ + ((cpol) << SPI_CMD_CFG_CPOL_OFFSET) | \ + ((cpha) << SPI_CMD_CFG_CPHA_OFFSET) | \ + ((clockDiv) << SPI_CMD_CFG_CLK_DIV_OFFSET)) +#define SPI_CMD_SOT(cs) \ + ((SPI_CMD_SOT_ID << SPI_CMD_ID_OFFSET) | \ + ((cs) << SPI_CMD_SOT_CS_OFFSET)) +#define SPI_CMD_SEND_CMD(cmd, bits, qpi) \ + ((SPI_CMD_SEND_CMD_ID << SPI_CMD_ID_OFFSET) | \ + ((qpi) << SPI_CMD_SEND_CMD_QPI_OFFSET) | \ + (((bits)-1) << SPI_CMD_SEND_CMD_SIZE_OFFSET) | (cmd & 0xFFFF)) +#define SPI_CMD_SEND_BITS(data, bits, qpi) \ + ((SPI_CMD_SEND_CMD_ID << SPI_CMD_ID_OFFSET) | \ + ((qpi) << SPI_CMD_SEND_CMD_QPI_OFFSET) | \ + (((bits)-1) << SPI_CMD_SEND_CMD_SIZE_OFFSET) | (data & 0xFFFF)) +#define SPI_CMD_DUMMY(cycles) \ + ((SPI_CMD_DUMMY_ID << SPI_CMD_ID_OFFSET) | \ + (((cycles)-1) << SPI_CMD_DUMMY_CYCLE_OFFSET)) + +#define SPI_CMD_SETUP_UCA(txrxen, ds, addr) \ + ((SPI_CMD_SETUP_UCA_ID << SPI_CMD_ID_OFFSET) | \ + ((txrxen) << SPI_CMD_SETUP_UC_TXRXEN_OFFSET) | ((int)addr & 0xFFFFF)) +#define SPI_CMD_SETUP_UCS(txrxen, ds, size) \ + ((SPI_CMD_SETUP_UCS_ID << SPI_CMD_ID_OFFSET) | \ + ((txrxen) << SPI_CMD_SETUP_UC_TXRXEN_OFFSET) | \ + ((ds) << SPI_CMD_SETUP_UC_DS_OFFSET) | (size & 0xFFFF)) + +#define SPI_CMD_TX_DATA(words, wordstrans, bitsword, qpi, lsbfirst) \ + ((SPI_CMD_TX_DATA_ID << SPI_CMD_ID_OFFSET) | \ + ((qpi) << SPI_CMD_TX_DATA_QPI_OFFSET) | \ + ((wordstrans) << SPI_CMD_TX_DATA_WORDTRANS_OFFSET) | \ + ((bitsword - 1) << SPI_CMD_TX_DATA_BITSWORD_OFFSET) | \ + (((words)-1) << SPI_CMD_TX_DATA_SIZE_OFFSET) | \ + ((lsbfirst) << SPI_CMD_TX_DATA_LSBFIRST_OFFSET)) +#define SPI_CMD_RX_DATA(words, wordstrans, bitsword, qpi, lsbfirst) \ + ((SPI_CMD_RX_DATA_ID << SPI_CMD_ID_OFFSET) | \ + ((qpi) << SPI_CMD_RX_DATA_QPI_OFFSET) | \ + ((wordstrans) << SPI_CMD_RX_DATA_WORDTRANS_OFFSET) | \ + ((bitsword - 1) << SPI_CMD_RX_DATA_BITSWORD_OFFSET) | \ + (((words)-1) << SPI_CMD_RX_DATA_SIZE_OFFSET) | \ + ((lsbfirst) << SPI_CMD_RX_DATA_LSBFIRST_OFFSET)) +#define SPI_CMD_RPT(iter) \ + ((SPI_CMD_RPT_ID << SPI_CMD_ID_OFFSET) | \ + ((iter) << SPI_CMD_RPT_NB_OFFSET)) +#define SPI_CMD_EOT(evt, cs_keep) \ + ((SPI_CMD_EOT_ID << SPI_CMD_ID_OFFSET) | \ + ((evt) << SPI_CMD_EOT_GEN_EVT_OFFSET) | \ + ((cs_keep) << SPI_CMD_EOT_CS_KEEP_OFFSET)) + +#define SPI_CMD_RX_CHECK(mode, bits, value, qpi, byte_align) \ + ((SPI_CMD_RX_CHECK_ID << SPI_CMD_ID_OFFSET) | \ + ((value) << SPI_CMD_RX_CHECK_VALUE_OFFSET) | \ + ((mode) << SPI_CMD_RX_CHECK_MODE_OFFSET) | \ + (((bits)-1) << SPI_CMD_RX_CHECK_SIZE_OFFSET) | \ + ((byte_align) << SPI_CMD_RX_CHECK_BYTE_ALIGN_OFFSET) | \ + ((qpi) << SPI_CMD_RX_CHECK_QPI_OFFSET)) + +#define SPI_CMD_WAIT(event) \ + ((SPI_CMD_WAIT_ID << SPI_CMD_ID_OFFSET) | \ + ((event) << SPI_CMD_WAIT_EVENT_OFFSET)) +#define SPI_CMD_RPT_END() ((SPI_CMD_RPT_END_ID << SPI_CMD_ID_OFFSET)) +#define SPI_CMD_FUL(words, wordstrans, bitsword, lsbfirst) \ + ((SPI_CMD_FUL_ID << SPI_CMD_ID_OFFSET) | \ + ((wordstrans) << SPI_CMD_FUL_WORDTRANS_OFFSET) | \ + ((bitsword - 1) << SPI_CMD_FUL_BITSWORD_OFFSET) | \ + (((words)-1) << SPI_CMD_FUL_SIZE_OFFSET) | \ + ((lsbfirst) << SPI_CMD_FUL_LSBFIRST_OFFSET)) + +#endif /* __SPI_PERIPH_H__ */ diff --git a/rtos/freertos/abstraction_layer_freertos/include/stdout.h b/rtos/freertos/abstraction_layer_freertos/include/stdout.h new file mode 100644 index 00000000..672a4591 --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/include/stdout.h @@ -0,0 +1,31 @@ +/* + * Copyright (C) 2020 ETH Zurich and University of Bologna + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +/* Description: Debug stdout (simulation) memory map + * Authors: Robert Balas (balasr@iis.ee.ethz.ch) + */ + +#ifndef __STDOUT_H__ +#define __STDOUT_H__ + +#define STDOUT_PUTC_OFFSET 0x0 +#define STDOUT_OPEN_OFFSET 0x2000 +#define STDOUT_OPEN_END_OFFSET 0x3000 +#define STDOUT_READ_OFFSET 0x4000 + +#endif /* __STDOUT_H__ */ diff --git a/rtos/freertos/abstraction_layer_freertos/include/system.h b/rtos/freertos/abstraction_layer_freertos/include/system.h new file mode 100644 index 00000000..96e7a84d --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/include/system.h @@ -0,0 +1,38 @@ +/* + * Copyright 2020 ETH Zurich + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + * Author: Robert Balas (balasr@iis.ee.ethz.ch) + */ + +/* Description: Platform system level functions */ + +#ifndef __SYSTEM_H__ +#define __SYSTEM_H__ + +#include +#include + +#include "FreeRTOSConfig.h" + +#define DEFAULT_SYSTEM_CLOCK 50000000u /* Default System clock value */ + +extern volatile uint32_t system_core_clock; + +void system_init(void); +void system_core_clock_update(void); +uint32_t system_core_clock_get(void); + +#endif /* __SYSTEM_H_ */ diff --git a/rtos/freertos/abstraction_layer_freertos/include/target.h b/rtos/freertos/abstraction_layer_freertos/include/target.h new file mode 100644 index 00000000..3500fe1b --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/include/target.h @@ -0,0 +1,129 @@ +/* + * Copyright 2020 ETH Zurich + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +/* Author: Robert Balas */ + +#ifndef __TARGET_H__ +#define __TARGET_H__ + +#include "properties.h" +#include "riscv.h" + +static inline void hal_compiler_barrier() +{ + asm volatile("" : : : "memory"); +} + +static inline void hal_write32(volatile void *addr, uint32_t value) +{ + asm volatile("" : : : "memory"); + *((volatile uint32_t *)addr) = value; + asm volatile("" : : : "memory"); +} + +static inline void hal_write8(volatile void *addr, uint8_t value) +{ + asm volatile("" : : : "memory"); + *((volatile uint8_t *)addr) = value; + asm volatile("" : : : "memory"); +} + +static inline void hal_or32(volatile void *addr, uint32_t value) +{ + asm volatile("" : : : "memory"); + *((volatile uint32_t *)addr) |= value; + asm volatile("" : : : "memory"); +} + +static inline void hal_and32(volatile void *addr, uint32_t value) +{ + asm volatile("" : : : "memory"); + *((volatile uint32_t *)addr) &= value; + asm volatile("" : : : "memory"); +} + +static inline uint32_t hal_read32(volatile void *addr) +{ + asm volatile("" : : : "memory"); + uint32_t ret = *((volatile uint32_t *)addr); + asm volatile("" : : : "memory"); + return ret; +} + +static inline uint8_t hal_read8(volatile void *addr) +{ + asm volatile("" : : : "memory"); + uint8_t ret = *((volatile uint8_t *)addr); + asm volatile("" : : : "memory"); + return ret; +} + + +static inline uint32_t __native_core_id() +{ + /* encoding of mhartid: {21'b0, cluster_id_i[5:0], 1'b0, core_id_i[3:0]} + */ + uint32_t mhartid = csr_read(MHARTID_ADDR); + return mhartid & 0x01f; +} + +static inline uint32_t __native_cluster_id() +{ + /* encoding of mhartid {21'b0, cluster_id_i[5:0], 1'b0, core_id_i[3:0]} + */ + uint32_t mhartid = csr_read(MHARTID_ADDR); + return (mhartid >> 5) & 0x3f; +} + +static inline uint32_t __native_is_fc() +{ + return 1; +} + + +static inline uint32_t pi_core_id() +{ + return __native_core_id(); +} + +static inline uint32_t pi_cluster_id() +{ + return __native_cluster_id(); +} + +static inline uint32_t pi_is_fc() +{ + return __native_is_fc(); +} + +static inline uint32_t pi_nb_cluster_cores() +{ + return ARCHI_CLUSTER_NB_PE; +} + +static inline int pi_cl_cluster_nb_cores() +{ + return ARCHI_CLUSTER_NB_PE; +} + +static inline uint32_t pi_cl_cluster_nb_pe_cores(void) +{ + return ARCHI_CLUSTER_NB_PE; +} + +#endif diff --git a/rtos/freertos/abstraction_layer_freertos/include/tempCodeRunnerFile.h b/rtos/freertos/abstraction_layer_freertos/include/tempCodeRunnerFile.h new file mode 100644 index 00000000..06564f38 --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/include/tempCodeRunnerFile.h @@ -0,0 +1 @@ +FreeRTOS \ No newline at end of file diff --git a/rtos/freertos/abstraction_layer_freertos/include/timer.h b/rtos/freertos/abstraction_layer_freertos/include/timer.h new file mode 100644 index 00000000..c7084708 --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/include/timer.h @@ -0,0 +1,222 @@ +/* + * Copyright (C) 2019 ETH Zurich and University of Bologna + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +/* Author: Robert Balas (balasr@iis.ee.ethz.ch) + * Germain Haugou (germain.haugou@iis.ee.ethz.ch) + */ + +#ifndef __TIMER_H__ +#define __TIMER_H__ + +#include "bits.h" + +/* Timer Low Configuration register. */ +#define TIMER_CFG_LO_OFFSET 0x0 + +/* Timer High Configuration register. */ +#define TIMER_CFG_HI_OFFSET 0x4 + +/* Timer Low counter value register. */ +#define TIMER_CNT_LO_OFFSET 0x8 + +/* Timer High counter value register. */ +#define TIMER_CNT_HI_OFFSET 0xc + +/* Timer Low comparator value register. */ +#define TIMER_CMP_LO_OFFSET 0x10 + +/* Timer High comparator value register. */ +#define TIMER_CMP_HI_OFFSET 0x14 + +/* Start Timer Low counting register. */ +#define TIMER_START_LO_OFFSET 0x18 + +/* Start Timer High counting register. */ +#define TIMER_START_HI_OFFSET 0x1c + +/* Reset Timer Low counter register. */ +#define TIMER_RESET_LO_OFFSET 0x20 + +/* Reset Timer High counter register. */ +#define TIMER_RESET_HI_OFFSET 0x24 + +/* Timer low enable configuration bitfield: - 1'b0: disabled - 1'b1: enabled + * (access: R/W) */ +#define TIMER_CFG_LO_ENABLE_BIT 0 +#define TIMER_CFG_LO_ENABLE_WIDTH 1 +#define TIMER_CFG_LO_ENABLE_MASK 0x1 + +/* Timer low counter reset command bitfield. Cleared after Timer Low reset + * execution. (access: R/W) */ +#define TIMER_CFG_LO_RESET_BIT 1 +#define TIMER_CFG_LO_RESET_WIDTH 1 +#define TIMER_CFG_LO_RESET_MASK 0x2 + +/* Timer low compare match interrupt enable configuration bitfield: - 1'b0: + * disabled - 1'b1: enabled (access: R/W) */ +#define TIMER_CFG_LO_IRQEN_BIT 2 +#define TIMER_CFG_LO_IRQEN_WIDTH 1 +#define TIMER_CFG_LO_IRQEN_MASK 0x4 + +/* Timer low input event mask configuration bitfield: - 1'b0: disabled - 1'b1: + * enabled (access: R/W) */ +#define TIMER_CFG_LO_IEM_BIT 3 +#define TIMER_CFG_LO_IEM_WIDTH 1 +#define TIMER_CFG_LO_IEM_MASK 0x8 + +/* Timer low continuous mode configuration bitfield: - 1'b0: Continue mode - + * continue incrementing Timer low counter when compare match with CMP_LO + * occurs. - 1'b1: Cycle mode - reset Timer low counter when compare match with + * CMP_LO occurs. (access: R/W) */ +#define TIMER_CFG_LO_MODE_BIT 4 +#define TIMER_CFG_LO_MODE_WIDTH 1 +#define TIMER_CFG_LO_MODE_MASK 0x10 + +/* Timer low one shot configuration bitfield: - 1'b0: let Timer low enabled + * counting when compare match with CMP_LO occurs. - 1'b1: disable Timer low + * when compare match with CMP_LO occurs. (access: R/W) */ +#define TIMER_CFG_LO_ONE_S_BIT 5 +#define TIMER_CFG_LO_ONE_S_WIDTH 1 +#define TIMER_CFG_LO_ONE_S_MASK 0x20 + +/* Timer low prescaler enable configuration bitfield:- 1'b0: disabled - 1'b1: + * enabled (access: R/W) */ +#define TIMER_CFG_LO_PEN_BIT 6 +#define TIMER_CFG_LO_PEN_WIDTH 1 +#define TIMER_CFG_LO_PEN_MASK 0x40 + +/* Timer low clock source configuration bitfield: - 1'b0: FLL or FLL+Prescaler - + * 1'b1: Reference clock at 32kHz (access: R/W) */ +#define TIMER_CFG_LO_CCFG_BIT 7 +#define TIMER_CFG_LO_CCFG_WIDTH 1 +#define TIMER_CFG_LO_CCFG_MASK 0x80 + +/* Timer low prescaler value bitfield. Ftimer = Fclk / (1 + PRESC_VAL) (access: + * R/W) */ +#define TIMER_CFG_LO_PVAL_BIT 8 +#define TIMER_CFG_LO_PVAL_WIDTH 8 +#define TIMER_CFG_LO_PVAL_MASK 0xff00 + +/* Timer low + Timer high 64bit cascaded mode configuration bitfield. (access: + * R/W) */ +#define TIMER_CFG_LO_CASC_BIT 31 +#define TIMER_CFG_LO_CASC_WIDTH 1 +#define TIMER_CFG_LO_CASC_MASK 0x80000000 + +/* Timer high enable configuration bitfield: - 1'b0: disabled - 1'b1: enabled + * (access: R/W) */ +#define TIMER_CFG_HI_ENABLE_BIT 0 +#define TIMER_CFG_HI_ENABLE_WIDTH 1 +#define TIMER_CFG_HI_ENABLE_MASK 0x1 + +/* Timer high counter reset command bitfield. Cleared after Timer high reset + * execution. (access: W) */ +#define TIMER_CFG_HI_RESET_BIT 1 +#define TIMER_CFG_HI_RESET_WIDTH 1 +#define TIMER_CFG_HI_RESET_MASK 0x2 + +/* Timer high compare match interrupt enable configuration bitfield: - 1'b0: + * disabled - 1'b1: enabled (access: R/W) */ +#define TIMER_CFG_HI_IRQEN_BIT 2 +#define TIMER_CFG_HI_IRQEN_WIDTH 1 +#define TIMER_CFG_HI_IRQEN_MASK 0x4 + +/* Timer high input event mask configuration bitfield: - 1'b0: disabled - 1'b1: + * enabled (access: R/W) */ +#define TIMER_CFG_HI_IEM_BIT 3 +#define TIMER_CFG_HI_IEM_WIDTH 1 +#define TIMER_CFG_HI_IEM_MASK 0x8 + +/* Timer high continuous mode configuration bitfield: - 1'b0: Continue mode - + * continue incrementing Timer high counter when compare match with CMP_LO + * occurs. - 1'b1: Cycle mode - reset Timer high counter when compare match with + * CMP_LO occurs. (access: R/W) */ +#define TIMER_CFG_HI_MODE_BIT 4 +#define TIMER_CFG_HI_MODE_WIDTH 1 +#define TIMER_CFG_HI_MODE_MASK 0x10 + +/* Timer high one shot configuration bitfield: - 1'b0: let Timer high enabled + * counting when compare match with CMP_LO occurs. - 1'b1: disable Timer high + * when compare match with CMP_LO occurs. (access: R/W) */ +#define TIMER_CFG_HI_ONE_S_BIT 5 +#define TIMER_CFG_HI_ONE_S_WIDTH 1 +#define TIMER_CFG_HI_ONE_S_MASK 0x20 + +/* Timer high prescaler enable configuration bitfield: - 1'b0: disabled - 1'b1: + * enabled (access: R/W) */ +#define TIMER_CFG_HI_PEN_BIT 6 +#define TIMER_CFG_HI_PEN_WIDTH 1 +#define TIMER_CFG_HI_PEN_MASK 0x40 + +/* Timer high clock source configuration bitfield: - 1'b0: FLL or FLL+Prescaler + * - 1'b1: Reference clock at 32kHz (access: R/W) */ +#define TIMER_CFG_HI_CLKCFG_BIT 7 +#define TIMER_CFG_HI_CLKCFG_WIDTH 1 +#define TIMER_CFG_HI_CLKCFG_MASK 0x80 + +/* Timer Low counter value bitfield. (access: R/W) */ +#define TIMER_CNT_LO_CNT_LO_BIT 0 +#define TIMER_CNT_LO_CNT_LO_WIDTH 32 +#define TIMER_CNT_LO_CNT_LO_MASK 0xffffffff + +/* Timer High counter value bitfield. (access: R/W) */ +#define TIMER_CNT_HI_CNT_HI_BIT 0 +#define TIMER_CNT_HI_CNT_HI_WIDTH 32 +#define TIMER_CNT_HI_CNT_HI_MASK 0xffffffff + +/* Timer Low comparator value bitfield. (access: R/W) */ +#define TIMER_CMP_LO_CMP_LO_BIT 0 +#define TIMER_CMP_LO_CMP_LO_WIDTH 32 +#define TIMER_CMP_LO_CMP_LO_MASK 0xffffffff + +/* Timer High comparator value bitfield. (access: R/W) */ +#define TIMER_CMP_HI_CMP_HI_BIT 0 +#define TIMER_CMP_HI_CMP_HI_WIDTH 32 +#define TIMER_CMP_HI_CMP_HI_MASK 0xffffffff + +/* Timer Low start command bitfield. When executed, CFG_LO.ENABLE is set. + * (access: W) */ +#define TIMER_START_LO_STRT_LO_BIT 0 +#define TIMER_START_LO_STRT_LO_WIDTH 1 +#define TIMER_START_LO_STRT_LO_MASK 0x1 + +/* Timer High start command bitfield. When executed, CFG_HI.ENABLE is set. + * (access: W) */ +#define TIMER_START_HI_STRT_HI_BIT 0 +#define TIMER_START_HI_STRT_HI_WIDTH 1 +#define TIMER_START_HI_STRT_HI_MASK 0x1 + +/* Timer Low counter reset command bitfield. When executed, CFG_LO.RESET is set. + * (access: W) */ +#define TIMER_RESET_LO_RST_LO_BIT 0 +#define TIMER_RESET_LO_RST_LO_WIDTH 1 +#define TIMER_RESET_LO_RST_LO_MASK 0x1 + +/* Timer High counter reset command bitfield. When executed, CFG_HI.RESET is + * set. (access: W) */ +#define TIMER_RESET_HI_RST_HI_BIT 0 +#define TIMER_RESET_HI_RST_HI_WIDTH 1 +#define TIMER_RESET_HI_RST_HI_MASK 0x1 + +struct pulp_timer { + unsigned int current_time; + unsigned int flags; + void *base; +}; + +#endif /* __TIMER_H__ */ diff --git a/rtos/freertos/abstraction_layer_freertos/include/timer_irq.h b/rtos/freertos/abstraction_layer_freertos/include/timer_irq.h new file mode 100644 index 00000000..e66484d5 --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/include/timer_irq.h @@ -0,0 +1,33 @@ +/* + * Copyright (C) 2019 ETH Zurich and University of Bologna + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +/* Author: Robert Balas (balasr@iis.ee.ethz.ch) */ + +#ifndef __TIMER_IRQ_H__ +#define __TIMER_IRQ_H__ +#include + +int timer_irq_init(uint32_t ticks); + +int timer_irq_set_timeout(uint32_t ticks, bool idle); + +uint32_t timer_irq_clock_elapsed(); + +uint32_t timer_irq_cycle_get_32(); + +#endif /* __TIMER_IRQ_H__ */ diff --git a/rtos/freertos/abstraction_layer_freertos/include/uart.h b/rtos/freertos/abstraction_layer_freertos/include/uart.h new file mode 100644 index 00000000..e7b84010 --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/include/uart.h @@ -0,0 +1,437 @@ +/* + * Copyright (C) 2018 GreenWaves Technologies + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + + +#ifndef __UART_H__ +#define __UART_H__ + +#include +#include "pmsis_types.h" + +/** + * @ingroup groupDrivers + */ + +/** + * @defgroup UART UART + * + * \brief UART Universal Asynchronous Receiver Transmitter + * + * This API provides support for transferring data between an external UART + * device and the processor running this driver. + * + */ + +/** + * @addtogroup UART + * @{ + */ + +/** + * \struct pi_uart_conf + * + * \brief UART device configuration structure. + * + * This structure is used to pass the desired UART configuration to the runtime + * when opening the device. + */ +struct pi_uart_conf { + uint32_t baudrate_bps; /*!< Required baudrate, in baud per second. */ + uint8_t stop_bit_count; /*!< Number of stop bits, 1 stop bit (default) + or 2 stop bits */ + uint8_t parity_mode; /*!< 1 to activate it, 0 to deactivate it. */ + uint8_t word_size; /*!< Word size, in bits. */ + uint8_t enable_rx; /*!< 1 to activate reception, 0 to deactivate it. */ + uint8_t enable_tx; /*!< 1 to activate transmission, 0 to deactivate it. + */ + uint8_t uart_id; /*!< Uart interface ID. */ + uint8_t use_ctrl_flow; /*!< 1 to activate control flow. */ + uint8_t is_usart; /*!< 1 to activate usart */ +}; + +/** + * \enum pi_uart_stop_bits + * + * \brief Stop bits enum. + */ +enum pi_uart_stop_bits { + PI_UART_STOP_BITS_ONE = 0, /*!< One stop bit. */ + PI_UART_STOP_BITS_TWO = 1 /*!< Two stop bits. */ +}; + +/** + * \enum pi_uart_parity_mode + * + * \brief Parity mode enum. + */ +enum pi_uart_parity_mode { + PI_UART_PARITY_DISABLE = 0, /*!< Disable parity mode. */ + PI_UART_PARITY_ENABLE = 1 /*!< Enable parity mode. */ +}; + +/** + * \enum pi_uart_word_size + * + * \brief Bit length of each word. + */ +enum pi_uart_word_size { + PI_UART_WORD_SIZE_5_BITS = 0, /*!< 5 bits length. */ + PI_UART_WORD_SIZE_6_BITS = 1, /*!< 6 bits length. */ + PI_UART_WORD_SIZE_7_BITS = 2, /*!< 7 bits length. */ + PI_UART_WORD_SIZE_8_BITS = 3 /*!< 8 bits length. */ +}; + + +/** + * \enum pi_uart_ioctl_cmd + * + * \brief UART ioctl commands. + * + * UART ioctl commands to configure, enable device. + */ +enum pi_uart_ioctl_cmd { + /** + * \brief Setup UART device. + * + * Setup UART with given conf. + * The parameter for this command is a struct pi_uart_conf. + * + * \param conf Pointer to struct pi_uart_conf. + */ + PI_UART_IOCTL_CONF_SETUP = 0, + /** + * \brief Abort RX transfers. + * + * Disable RX channel, abort current RX transfert, + * and flush all pending transferts. + * + * \note This function disables reception channel after clearing UDMA + * channels. In order to send again data, the reception channel + * must re-enabled. + */ + PI_UART_IOCTL_ABORT_RX = 1, + /** + * \brief Abort TX transfers. + * + * Disable TX channel, abort current TX transfert, + * and flush all pending transferts. + * + * \note This function disables transmission channel after clearing UDMA + * channels. In order to send again data, the transmission channel + * must re-enabled. + */ + PI_UART_IOCTL_ABORT_TX = 2, + /** + * \brief Enable reception. + * + * This command enables reception on UART device. + */ + PI_UART_IOCTL_ENABLE_RX = 3, + /** + * \brief Enable transmission. + * + * This command enables transmission on UART device. + */ + PI_UART_IOCTL_ENABLE_TX = 4 +}; + +/** + * \brief UART cluster request structure. + * + * This structure is used by the runtime to manage a cluster remote copy with + * the UART. It must be instantiated once for each copy and must be kept + * alive until the copy is finished. It can be instantiated as a normal + * variable, for example as a global variable, a local one on the stack, + * or through a memory allocator. + */ +typedef struct pi_cl_uart_req_s pi_cl_uart_req_t; + +/** + * \brief Initialize a UART configuration with default values. + * + * This function can be called to get default values for all parameters before + * setting some of them. + * The structure containing the configuration must be kept alive until the uart + * device is opened. + * + * \param conf Pointer to the UART configuration. + */ +void pi_uart_conf_init(struct pi_uart_conf *conf); + +/** + * \brief Open a UART device. + * + * This function must be called before the UART device can be used. + * It will do all the needed configuration to make it usable and initialize + * the handle used to refer to this opened device when calling other functions. + * + * \param device Pointer to device structure of the device to open. + * + * \retval 0 If the operation is successfull. + * \retval ERRNO An error code otherwise. + * + * \note This structure is allocated by the called and must be kept alive until + * the device is closed. + */ +int pi_uart_open(struct pi_device *device); + +/** + * \brief Close an opened UART device. + * + * This function can be called to close an opened UART device once it is + * not needed anymore, in order to free all allocated resources. Once this + * function is called, the device is not accessible anymore and must be opened + * again before being used. + * + * \param device Pointer to device structure of the device to close. + */ +void pi_uart_close(struct pi_device *device); + +/** + * \brief Dynamically change device configuration. + * + * This function allows to send different commands to UART device. + * The commands are listed above, cf. enum pi_uart_ioctl_cmd. + * + * \param device Pointer to device descriptor of the UART device. + * \param cmd Ioctl command. + * \param arg Ioctl command args. + * + * \retval -1 If wrong ioctl command. + * \retval Value Otherwise return value depending on ioctl command. + */ +int pi_uart_ioctl(struct pi_device *device, uint32_t cmd, void *arg); + +/** + * \brief Write data to an UART. + * + * This writes data to the specified UART. + * The caller is blocked until the transfer is finished. + * Depending on the chip, there may be some restrictions on the memory which + * can be used. Check the chip-specific documentation for more details. + * + * \param device Pointer to device descriptor of the UART device. + * \param buffer Pointer to data buffer. + * \param size Size of data to copy in bytes. + * + * \retval 0 If operation is successfull. + * \retval ERRNO An error code otherwise. + */ +int pi_uart_write(struct pi_device *device, void *buffer, uint32_t size); + +/** + * \brief Read data from an UART. + * + * This reads data from the specified UART. + * The caller is blocked until the transfer is finished. + * Depending on the chip, there may be some restrictions on the memory which + * can be used. Check the chip-specific documentation for more details. + * + * \param device Pointer to device descriptor of the UART device. + * \param buffer Pointer to data buffer. + * \param size Size of data to copy in bytes. + * + * \retval 0 If operation is successfull. + * \retval ERRNO An error code otherwise. + */ +int pi_uart_read(struct pi_device *device, void *buffer, uint32_t size); + +/** + * \brief Write a byte to an UART. + * + * This writes a byte to the specified UART. + * The caller is blocked until the transfer is finished. + * + * \param device Pointer to device descriptor of the UART device. + * \param byte Pointer to data buffer. + * + * \retval 0 If operation is successfull. + * \retval ERRNO An error code otherwise. + */ +int pi_uart_write_byte(struct pi_device *device, uint8_t *byte); + +/** + * \brief Read a byte from an UART. + * + * This reads a byte from the specified UART. + * The caller is blocked until the transfer is finished. + * + * \param device Pointer to device descriptor of the UART device. + * \param byte Pointer to data buffer. + * + * \retval 0 If operation is successfull. + * \retval ERRNO An error code otherwise. + */ +int pi_uart_read_byte(struct pi_device *device, uint8_t *byte); + +/** + * \brief Write data to an UART asynchronously. + * + * This writes data to the specified UART asynchronously. + * A task must be specified in order to specify how the caller should be + * notified when the transfer is finished. + * Depending on the chip, there may be some restrictions on the memory which + * can be used. Check the chip-specific documentation for more details. + * + * \param device Pointer to device descriptor of the UART device. + * \param buffer Pointer to data buffer. + * \param size Size of data to copy in bytes. + * \param callback Event task used to notify the end of transfer. See the + * documentation of pi_task_t for more details. + * + * \retval 0 If operation is successfull. + * \retval ERRNO An error code otherwise. + */ +int pi_uart_write_async(struct pi_device *device, void *buffer, uint32_t size, + pi_task_t *callback); + +/** + * \brief Read data from an UART asynchronously. + * + * This reads data from the specified UART asynchronously. + * A task must be specified in order to specify how the caller should be + * notified when the transfer is finished. + * Depending on the chip, there may be some restrictions on the memory which + * can be used. Check the chip-specific documentation for more details. + * + * \param device Pointer to device descriptor of the UART device. + * \param buffer Pointer to data buffer. + * \param size Size of data to copy in bytes. + * \param callback Event task used to notify the end of transfer. See the + * documentation of pi_task_t for more details. + * + * \retval 0 If operation is successfull. + * \retval ERRNO An error code otherwise. + */ +int pi_uart_read_async(struct pi_device *device, void *buffer, uint32_t size, + pi_task_t *callback); + +/** + * \brief Write a byte to an UART asynchronously. + * + * This writes a byte to the specified UART asynchronously. + * A task must be specified in order to specify how the caller should be + * notified when the transfer is finished. + * + * \param device Pointer to device descriptor of the UART device. + * \param byte Pointer to data buffer. + * \param callback Event task used to notify the end of transfer. See the + * documentation of pi_task_t for more details. + * + * \retval 0 If operation is successfull. + * \retval ERRNO An error code otherwise. + */ +int pi_uart_write_byte_async(struct pi_device *device, uint8_t *byte, + pi_task_t *callback); + + +/** + * \brief Write data to an UART from cluster side. + * + * This function implements the same feature as pi_uart_write but can be called + * from cluster side in order to expose the feature on the cluster. + * A pointer to a request structure must be provided so that the runtime can + * properly do the remote call. + * + * \param device Pointer to device descriptor of the UART device. + * \param buffer Pointer to data buffer. + * \param size Size of data to copy in bytes. + * \param req Request structure used for termination. + * + * \retval 0 If operation is successfull. + * \retval ERRNO An error code otherwise. + */ +int pi_cl_uart_write(pi_device_t *device, void *buffer, uint32_t size, + pi_cl_uart_req_t *req); + +/** + * \brief Write a byte to an UART from cluster side. + * + * This function implements the same feature as pi_uart_write_byte but can be + * called from cluster side in order to expose the feature on the cluster. + * A pointer to a request structure must be provided so that the runtime can + * properly do the remote call. + * + * \param device Pointer to device descriptor of the UART device. + * \param byte Pointer to data buffer. + * \param req Request structure used for termination. + * + * \retval 0 If operation is successfull. + * \retval ERRNO An error code otherwise. + */ +int pi_cl_uart_write_byte(pi_device_t *device, uint8_t *byte, + pi_cl_uart_req_t *req); + +/** + * \brief Wait until the specified UART cluster write request has finished. + * + * This blocks the calling core until the specified cluster remote copy is + * finished. + * + * \param req Request structure used for termination. + */ +static inline void pi_cl_uart_write_wait(pi_cl_uart_req_t *req); + +/** + * \brief Read a byte from an UART from cluster side. + * + * This function implements the same feature as pi_uart_read_byte but can be + * called from cluster side in order to expose the feature on the cluster. + * A pointer to a request structure must be provided so that the runtime can + * properly do the remote call. + * + * \param device Pointer to device descriptor of the UART device. + * \param buffer Pointer to data buffer. + * \param size Size of data to copy in bytes. + * \param req Request structure used for termination. + * + * \retval 0 If operation is successfull. + * \retval ERRNO An error code otherwise. + */ +int pi_cl_uart_read(pi_device_t *device, void *buffer, uint32_t size, + pi_cl_uart_req_t *req); + +/** + * \brief Read a byte from an UART. + * + * This reads a byte from the specified UART. + * The caller is blocked until the transfer is finished. + * + * \param device Pointer to device descriptor of the UART device. + * \param byte Pointer to data buffer. + * \param req Request structure used for termination. + * + * \retval 0 If operation is successfull. + * \retval ERRNO An error code otherwise. + */ +int pi_cl_uart_read_byte(pi_device_t *device, uint8_t *byte, + pi_cl_uart_req_t *req); + +/** + * \brief Wait until the specified UART cluster read request has finished. + * + * This blocks the calling core until the specified cluster remote copy is + * finished. + * + * \param req Request structure used for termination. + */ +static inline void pi_cl_uart_read_wait(pi_cl_uart_req_t *req); + +/** + * @} + */ + +#endif /* __UART_H__ */ diff --git a/rtos/freertos/abstraction_layer_freertos/include/uart_periph.h b/rtos/freertos/abstraction_layer_freertos/include/uart_periph.h new file mode 100644 index 00000000..a9e1b3a7 --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/include/uart_periph.h @@ -0,0 +1,140 @@ +/* THIS FILE HAS BEEN GENERATED, DO NOT MODIFY IT. */ +/* + * Copyright (C) 2019 ETH Zurich, University of Bologna + * and GreenWaves Technologies + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#ifndef __UART_PERIPH_H__ +#define __UART_PERIPH_H__ + +#include "udma.h" + +/** UART_Type Register Layout Typedef */ +typedef struct { + udma_channel_t rx; /**< UDMA RX channels struct. */ + udma_channel_t tx; /**< UDMA TX channels struct. */ + volatile uint32_t status; /**< Status register */ + volatile uint32_t setup; /**< Configuration register */ +} uart_t; + + +/*! @name STATUS */ +/* TX busy status flag */ +#define UART_STATUS_TX_BUSY_MASK (0x1) +#define UART_STATUS_TX_BUSY_SHIFT (0) + +/* RX busy status flag */ +#define UART_STATUS_RX_BUSY_MASK (0x2) +#define UART_STATUS_RX_BUSY_SHIFT (1) + +/* RX parity error status flag */ +#define UART_STATUS_RX_PE_MASK (0x4) +#define UART_STATUS_RX_PE_SHIFT (2) + + +/*! @name SETUP */ +/* Set parity generation and check: + - 1'b0: disable + - 1'b1: enable */ +#define UART_SETUP_PARITY_ENA_MASK (0x1) +#define UART_SETUP_PARITY_ENA_SHIFT (0) + +/* Set character length: + - 2'b00: 5 bits + - 2'b01: 6 bits + - 2'b10: 7 bits + - 2'b11: 8 bits */ +#define UART_SETUP_BIT_LENGTH_MASK (0x6) +#define UART_SETUP_BIT_LENGTH_SHIFT (1) + +/* Set stop bits length: + - 2'b0: 1 stop bit + - 2'b1: 2 stop bits */ +#define UART_SETUP_STOP_BITS_MASK (0x8) +#define UART_SETUP_STOP_BITS_SHIFT (3) + +/* Set polling mode: + - 1'b0: disable + - 1'b1: Enable polling data transfer. Wait until valid register signals ok, + then read data register. Valid register automatically cleared after read.*/ +#define UART_SETUP_POLLING_EN_MASK (0x10) +#define UART_SETUP_POLLING_EN_SHIFT (4) + +/* Set clean fifo mode: + - 1'b0: disable + - 1'b1: clean the rx fifo */ +#define UART_SETUP_CLEAN_FIFO_MASK (0x20) +#define UART_SETUP_CLEAN_FIFO_SHIFT (5) + +/* Set TX transceiver state: + - 1'b0: disable + - 1'b1: enable */ +#define UART_SETUP_TX_ENA_MASK (0x100) +#define UART_SETUP_TX_ENA_SHIFT (8) + +/* Set RX transceiver state: + - 1'b0: disable + - 1'b1: enable */ +#define UART_SETUP_RX_ENA_MASK (0x200) +#define UART_SETUP_RX_ENA_SHIFT (9) + +/* Sets the clock divider ratio for the baud rate generator. */ +#define UART_SETUP_CLKDIV_MASK (0xffff0000) +#define UART_SETUP_CLKDIV_SHIFT (16) + +/*! @name ERROR register */ + +/* Reports overflow error: + - 1'b0: no error + - 1'b1: rx overflow error */ +#define UART_ERROR_RX_ERR_OVERFLOW_MASK (0x1) +#define UART_ERROR_RX_ERR_OVERFLOW_SHIFT (0) + +/* Reports parity error: + - 1'b0: no error + - 1'b1: rx parity error */ +#define UART_ERROR_RX_ERR_PARITY_MASK (0x2) +#define UART_ERROR_RX_ERR_PARITY_SHIFT (1) + +/*! @name IRQ_EN register */ + +/* Rx interrupt in enable flag: + - 1’b0: RX IRQ disable + - 1’b1: RX IRQ enable */ +#define UART_IRQ_EN_RX_MASK (0x1) +#define UART_IRQ_EN_RX_SHIFT (0) + +/* Error interrupt in enable flag: + - 1’b0: Error IRQ disable + - 1’b1: Error IRQ enable*/ +#define UART_IRQ_EN_ERROR_MASK (0x2) +#define UART_IRQ_EN_ERROR_SHIFT (1) + +/*! @name READY register */ + +/* Used only in RX polling method to indicate data is ready for read: + - 1’b0: Data is not ready to read + - 1’b1: Data is ready to read */ +#define UART_VALID_READY_MASK (0x1) +#define UART_VALID_READY_SHIFT (0) + +/* RX read data for polling or interrupt */ +#define UART_DATA_MASK (0xff) +#define UART_DATA_SHIFT (0) + + +#define uart(id) ((uart_t *)UDMA_UART(id)) + +#endif /* __UART_PERIPH_H__ */ diff --git a/rtos/freertos/abstraction_layer_freertos/include/udma.h b/rtos/freertos/abstraction_layer_freertos/include/udma.h new file mode 100644 index 00000000..c0d7571d --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/include/udma.h @@ -0,0 +1,229 @@ +/* + * Copyright (C) 2019 ETH Zurich, University of Bologna + * and GreenWaves Technologies + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#ifndef __UDMA_H__ +#define __UDMA_H__ + +#include + +/** UDMA_CORE_Type Register Layout Typedef */ +/* TODO: refactor this really not good code */ +typedef struct { + volatile uint32_t saddr; /**< RX/TX/CMD Channel uDMA transfer address of + associated buffer */ + volatile uint32_t size; /**< RX/TX/CMD Channel uDMA transfer size of + buffer */ + volatile uint32_t cfg; /**< RX/TX/CMD Channel uDMA transfer + configuration */ + volatile uint32_t initcfg; /**< Not used. */ +} udma_channel_t; + + +typedef enum { + RX_CHANNEL = 0, + TX_CHANNEL = 1, + COMMAND_CHANNEL = 2 +} udma_channel_e; + + +/**< Offset for RX part */ +#define UDMA_CHANNEL_RX_OFFSET 0x00 + +/**< Offset for TX part */ +#define UDMA_CHANNEL_TX_OFFSET 0x10 + +/**< Offset for peripheral specific part */ +#define UDMA_CHANNEL_CUSTOM_OFFSET 0x20 + +/**< RX/TX/CMD Channel uDMA transfer address of associated buffer */ +#define UDMA_CHANNEL_SADDR_OFFSET (0x0) + +/**< RX/TX/CMD Channel uDMA transfer size of buffer */ +#define UDMA_CHANNEL_SIZE_OFFSET (0x4) + +/**< RX/TX/CMD Channel uDMA transfer configuration */ +#define UDMA_CHANNEL_CFG_OFFSET (0x8) + +/**< Not used. */ +#define UDMA_CHANNEL_INTCFG_OFFSET (0xC) + + +/*! @name RX_SADDR */ +/* Configure pointer to memory buffer: + - Read: value of the pointer until transfer is over. Else returns 0 + - Write: set Address Pointer to memory buffer start address */ +#define UDMA_CORE_RX_SADDR_RX_SADDR_MASK (0x1fffff) +#define UDMA_CORE_RX_SADDR_RX_SADDR_SHIFT (0) + +/* Reserved/Not used. */ +#define UDMA_CORE_RX_SADDR_RESERVED_0_MASK (0xffe00000) +#define UDMA_CORE_RX_SADDR_RESERVED_0_SHIFT (21) + + +/*! @name RX_SIZE */ +/* Buffer size in byte. (128kBytes maximum) + - Read: buffer size left + - Write: set buffer size */ +#define UDMA_CORE_RX_SIZE_RX_SIZE_MASK (0xfffff) +#define UDMA_CORE_RX_SIZE_RX_SIZE_SHIFT (0) + +/* Reserved/Not used. */ +#define UDMA_CORE_RX_SIZE_RESERVED_0_MASK (0xfff00000) +#define UDMA_CORE_RX_SIZE_RESERVED_0_SHIFT (20) + + +/*! @name RX_CFG */ +/* Channel continuous mode: + - 1'b0: disable + - 1'b1: enable + At the end of the buffer the uDMA reloads the address and size and starts a + new transfer. */ +#define UDMA_CORE_RX_CFG_CONTINOUS_MASK (0x1) +#define UDMA_CORE_RX_CFG_CONTINOUS_SHIFT (0) + +/* Channel transfer size used to increment uDMA buffer address pointer: + - 2'b00: +1 (8 bits) + - 2'b01: +2 (16 bits) + - 2'b10: +4 (32 bits) + - 2'b11: +0 */ +#define UDMA_CORE_RX_CFG_DATASIZE_MASK (0x6) +#define UDMA_CORE_RX_CFG_DATASIZE_SHIFT (1) + +/* Reserved/Not used. */ +#define UDMA_CORE_RX_CFG_RESERVED_0_MASK (0x8) +#define UDMA_CORE_RX_CFG_RESERVED_0_SHIFT (3) + +/* Channel enable and start transfer: + - 1'b0: disable + - 1'b1: enable + This signal is used also to queue a transfer if one is already ongoing. */ +#define UDMA_CORE_RX_CFG_EN_MASK (0x10) +#define UDMA_CORE_RX_CFG_EN_SHIFT (4) + +/* Transfer pending in queue status flag: + - 1'b0: no pending transfer in the queue + - 1'b1: pending transfer in the queue */ +#define UDMA_CORE_RX_CFG_PENDING_MASK (0x20) +#define UDMA_CORE_RX_CFG_PENDING_SHIFT (5) + +/* Channel clear and stop transfer: + - 1'b0: disable + - 1'b1: stop and clear the on-going transfer */ +#define UDMA_CORE_RX_CFG_CLR_MASK (0x40) +#define UDMA_CORE_RX_CFG_CLR_SHIFT (6) + +/* Reserved/Not used. */ +#define UDMA_CORE_RX_CFG_RESERVED_1_MASK (0xffffff80) +#define UDMA_CORE_RX_CFG_RESERVED_1_SHIFT (7) + + +/*! @name RX_INITCFG */ +/* Reserved/Not used. */ +#define UDMA_CORE_RX_INITCFG_RESERVED_0_MASK (0xffffffff) +#define UDMA_CORE_RX_INITCFG_RESERVED_0_SHIFT (0) + + +/*! @name TX_SADDR */ +/* Configure pointer to memory buffer: + - Read: value of the pointer until transfer is over. Else returns 0 + - Write: set Address Pointer to memory buffer start address */ +#define UDMA_CORE_TX_SADDR_TX_SADDR_MASK (0x1fffff) +#define UDMA_CORE_TX_SADDR_TX_SADDR_SHIFT (0) + +/* Reserved/Not used. */ +#define UDMA_CORE_TX_SADDR_RESERVED_0_MASK (0xffe00000) +#define UDMA_CORE_TX_SADDR_RESERVED_0_SHIFT (21) + + +/*! @name TX_SIZE */ +/* Buffer size in byte. (128kBytes maximum) + - Read: buffer size left + - Write: set buffer size */ +#define UDMA_CORE_TX_SIZE_TX_SIZE_MASK (0xfffff) +#define UDMA_CORE_TX_SIZE_TX_SIZE_SHIFT (0) + +/* Reserved/Not used. */ +#define UDMA_CORE_TX_SIZE_RESERVED_0_MASK (0xfff00000) +#define UDMA_CORE_TX_SIZE_RESERVED_0_SHIFT (20) + + +/*! @name TX_CFG */ +/* Channel continuous mode: + - 1'b0: disable + - 1'b1: enable + At the end of the buffer the uDMA reloads the address and size and starts a + new transfer. */ +#define UDMA_CORE_TX_CFG_CONTINOUS_MASK (0x1) +#define UDMA_CORE_TX_CFG_CONTINOUS_SHIFT (0) + +/* Channel transfer size used to increment uDMA buffer address pointer: + - 2'b00: +1 (8 bits) + - 2'b01: +2 (16 bits) + - 2'b10: +4 (32 bits) + - 2'b11: +0 */ +#define UDMA_CORE_TX_CFG_DATASIZE_MASK (0x6) +#define UDMA_CORE_TX_CFG_DATASIZE_SHIFT (1) + +/* Reserved/Not used. */ +#define UDMA_CORE_TX_CFG_RESERVED_0_MASK (0x8) +#define UDMA_CORE_TX_CFG_RESERVED_0_SHIFT (3) + +/* Channel enable and start transfer: + - 1'b0: disable + - 1'b1: enable + This signal is used also to queue a transfer if one is already ongoing. */ +#define UDMA_CORE_TX_CFG_EN_MASK (0x10) +#define UDMA_CORE_TX_CFG_EN_SHIFT (4) + +/* Transfer pending in queue status flag: + - 1'b0: no pending transfer in the queue + - 1'b1: pending transfer in the queue */ +#define UDMA_CORE_TX_CFG_PENDING_MASK (0x20) +#define UDMA_CORE_TX_CFG_PENDING_SHIFT (5) + +/* Channel clear and stop transfer: + - 1'b0: disable + - 1'b1: stop and clear the on-going transfer */ +#define UDMA_CORE_TX_CFG_CLR_MASK (0x40) +#define UDMA_CORE_TX_CFG_CLR_SHIFT (6) + +/* Reserved/Not used. */ +#define UDMA_CORE_TX_CFG_RESERVED_1_MASK (0xffffff80) +#define UDMA_CORE_TX_CFG_RESERVED_1_SHIFT (7) + +/*! @name TX_INITCFG */ +/* Reserved/Not used. */ +#define UDMA_CORE_TX_INITCFG_RESERVED_0_MASK (0xffffffff) +#define UDMA_CORE_TX_INITCFG_RESERVED_0_SHIFT (0) + + +#define UDMA_CORE_CFG_DATASIZE_8 (0x0) +#define UDMA_CORE_CFG_DATASIZE_16 (0x1) +#define UDMA_CORE_CFG_DATASIZE_32 (0x2) + +/* TODO: remove this legacy glue code */ +#define UDMA_CORE_TX_CFG_EN(val) \ + (((uint32_t)(((uint32_t)(val)) << UDMA_CORE_TX_CFG_EN_SHIFT)) & \ + UDMA_CORE_TX_CFG_EN_MASK) +#define UDMA_CORE_TX_CFG_DATASIZE(val) \ + (((uint32_t)(((uint32_t)(val)) << UDMA_CORE_TX_CFG_DATASIZE_SHIFT)) & \ + UDMA_CORE_TX_CFG_DATASIZE_MASK) +#define UDMA_CORE_RX_CFG_EN(val) \ + (((uint32_t)(((uint32_t)(val)) << UDMA_CORE_RX_CFG_EN_SHIFT)) & \ + UDMA_CORE_RX_CFG_EN_MASK) + +#endif /* __UDMA_H__ */ diff --git a/rtos/freertos/abstraction_layer_freertos/include/udma_core.h b/rtos/freertos/abstraction_layer_freertos/include/udma_core.h new file mode 100644 index 00000000..67f50f98 --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/include/udma_core.h @@ -0,0 +1,63 @@ +/* + * Copyright 2020 GreenWaves Technologies + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#ifndef __UDMA_CORE_H__ +#define __UDMA_CORE_H__ + +/** + * Small low level driver for udma core main functionnalities + */ + +#include "target.h" +#include "udma.h" +#include "udma_ctrl.h" + +#define UDMA_MAX_SIZE_LOG2 (17) +#define UDMA_MAX_SIZE (1 << UDMA_MAX_SIZE_LOG2) + + +static inline void udma_init_device(uint32_t device_id) +{ + /* disable clock gating for device with device_id */ + udma_ctrl_cg_disable(device_id); +} + +/* + * Common uDMA channel enqueue + */ +static inline void udma_enqueue_channel(udma_channel_t *chan, uint32_t addr, + uint32_t size, uint32_t config) +{ + hal_write32(&chan->saddr, addr); + hal_write32(&chan->size, size); + hal_write32(&chan->cfg, config); +} + +static inline void udma_channel_clear(udma_channel_t *chan) +{ + /* TODO: adjust macro */ + hal_write32(&(chan->cfg), REG_SET(UDMA_CORE_RX_CFG_CLR, 1)); +} + +static inline void udma_deinit_device(uint32_t device_id) +{ + /* enable clock gating for device with device_id */ + udma_ctrl_cg_enable(device_id); +} + +#endif /* __UDMA_CORE_H__ */ diff --git a/rtos/freertos/abstraction_layer_freertos/include/udma_ctrl.h b/rtos/freertos/abstraction_layer_freertos/include/udma_ctrl.h new file mode 100644 index 00000000..82ef3613 --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/include/udma_ctrl.h @@ -0,0 +1,108 @@ +/* + * Copyright 2020 GreenWaves Technologies + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#ifndef __UDMA_CTRL_H__ +#define __UDMA_CTRL_H__ + +/** + * Small low level driver for ctrl side of udma (cg and event forward) + */ + +#include "target.h" +#include "memory_map.h" +#include "soc_eu.h" +#include "bits.h" + +/** UDMA Global configuration - Register Layout Typedef */ +typedef struct { + volatile uint32_t CG; /**< UDMA_GC clock gating register, offset: 0x0 */ + volatile uint32_t EVTIN; /**< UDMA_GC input event register, offset: 0x04 + */ +} udma_gc_t; + + +/*! @name UDMA_GC - UDMA event in register, User chooses which events can come + * to UDMA as reference events, support up to 4 choices */ +#define UDMA_GC_EVTIN_CHOICE0_MASK (0xFFU) +#define UDMA_GC_EVTIN_CHOICE0_SHIFT (0U) + +#define UDMA_GC_EVTIN_CHOICE1_MASK (0xFF00U) +#define UDMA_GC_EVTIN_CHOICE1_SHIFT (8U) + +#define UDMA_GC_EVTIN_CHOICE2_MASK (0xFF0000U) +#define UDMA_GC_EVTIN_CHOICE2_SHIFT (16U) + +#define UDMA_GC_EVTIN_CHOICE3_MASK (0xFF000000) +#define UDMA_GC_EVTIN_CHOICE3_SHIFT (24U) + +#define UDMA_GC_EVTIN_MASK(evt_in) (evt_in & 0xFF) +#define UDMA_GC_EVTIN_SHIFT_ID(id) (id * 8) + + +/* UDMA Global configuration - instance base addresses */ +/** Global configuration UDMA base address */ +#define UDMA_GC_BASE (UDMA_CTRL_ADDR) +#define UDMA_GC ((udma_gc_t *)UDMA_GC_BASE) + + +static inline uint32_t udma_ctrl_get_clock_gating_register(void) +{ + return hal_read32(&UDMA_GC->CG); +} + +static inline uint32_t udma_ctrl_get_event_register(void) +{ + return hal_read32(&UDMA_GC->EVTIN); +} + +static inline void udma_ctrl_cg_disable(uint32_t udma_device_id) +{ + hal_or32(&UDMA_GC->CG, 1 << udma_device_id); +} + +static inline void udma_ctrl_cg_enable(uint32_t udma_device_id) +{ + hal_and32(&UDMA_GC->CG, ~(1 << udma_device_id)); +} + +static inline void udma_ctrl_enable_event_forward(uint8_t udma_evt_nb, + uint32_t event_id) +{ + /* clear current event */ + hal_and32(&UDMA_GC->EVTIN, ~(UDMA_GC_EVTIN_MASK(0xFF) + << UDMA_GC_EVTIN_SHIFT_ID(udma_evt_nb))); + /* set new event */ + hal_or32(&UDMA_GC->EVTIN, (UDMA_GC_EVTIN_MASK(event_id) + << UDMA_GC_EVTIN_SHIFT_ID(udma_evt_nb))); + + /* tell soc eu to forward us the event */ + hal_soc_eu_set_pr_mask(event_id); +} + +static inline void udma_ctrl_disable_event_forward(uint8_t udma_evt_nb, + uint32_t event_id) +{ + /* clear event from udma forward */ + hal_and32(&UDMA_GC->EVTIN, ~(UDMA_GC_EVTIN_MASK(0xFF) + << UDMA_GC_EVTIN_SHIFT_ID(udma_evt_nb))); + + /* tell soc eu to stop forwarding us the event */ + hal_soc_eu_clear_pr_mask(event_id); +} + +#endif /* __UDMA_CTRL_H__ */ diff --git a/rtos/freertos/abstraction_layer_freertos/include/udma_i2c.h b/rtos/freertos/abstraction_layer_freertos/include/udma_i2c.h new file mode 100644 index 00000000..4378aaae --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/include/udma_i2c.h @@ -0,0 +1,134 @@ +/* + * Copyright (C) 2018 ETH Zurich and University of Bologna + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#ifndef __ARCHI_UDMA_UDMA_I2C_V2_H__ +#define __ARCHI_UDMA_UDMA_I2C_V2_H__ + +#include "target.h" +#include "udma_core.h" +#include "i2c_periph.h" + +/* I2C command IDS definition */ +#define I2C_CMD_OFFSET 4 +#define I2C_CMD_START (0x0 << I2C_CMD_OFFSET) +#define I2C_CMD_STOP (0x2 << I2C_CMD_OFFSET) +#define I2C_CMD_RD_ACK (0x4 << I2C_CMD_OFFSET) +#define I2C_CMD_RD_NACK (0x6 << I2C_CMD_OFFSET) +#define I2C_CMD_WR (0x8 << I2C_CMD_OFFSET) +#define I2C_CMD_WAIT (0xA << I2C_CMD_OFFSET) +#define I2C_CMD_RPT (0xC << I2C_CMD_OFFSET) +#define I2C_CMD_CFG (0xE << I2C_CMD_OFFSET) +#define I2C_CMD_WAIT_EV (0x1 << I2C_CMD_OFFSET) +#define I2C_CMD_EOT (0x9 << I2C_CMD_OFFSET) + + +#define I2C(id) ((i2c_t *) UDMA_I2C(id)) + +/* I2C udma configuration. */ +static inline void i2c_udma_channel_set(uint32_t device_id, udma_channel_e channel, uint32_t l2buf, + uint32_t size, uint32_t cfg) +{ + switch(channel) + { + case(RX_CHANNEL): + udma_enqueue_channel(&(I2C(device_id)->rx), l2buf, size, cfg); + break; + case(TX_CHANNEL): + udma_enqueue_channel(&(I2C(device_id)->tx), l2buf, size, cfg); + break; + } +} + + +/* Status register. */ +static inline void i2c_status_set(uint32_t device_id, uint32_t status) +{ + hal_write32(&(I2C(device_id)->status), status); +} + +static inline uint32_t i2c_status_get(uint32_t device_id) +{ + return hal_read32(&(I2C(device_id)->status)); +} + + +/* Setup register. */ +static inline void i2c_setup_set(uint32_t device_id, uint32_t setup) +{ + hal_write32(&(I2C(device_id)->setup), setup); +} + +static inline uint32_t i2c_setup_get(uint32_t device_id) +{ + return hal_read32(&(I2C(device_id)->setup)); +} + +#ifdef CONFIG_UDMA_I2C_ACK +/* NACK register. */ +static inline void i2c_ack_set(uint32_t device_id, uint32_t val) +{ + hal_write32(&(I2C(device_id)->ack), val); +} + +static inline uint32_t i2c_ack_get(uint32_t device_id) +{ + return hal_read32(&(I2C(device_id)->ack)); +} +#endif + +/*! STATUS. */ +/* i2c busy check. */ +static inline uint32_t hal_i2c_busy_get(uint32_t device_id) +{ + return (i2c_status_get(device_id) & I2C_STATUS_BUSY_MASK); +} + +/* Enable arbitration lost error. */ +static inline void hal_i2c_arbitration_set(uint32_t device_id, uint8_t value) +{ + i2c_status_set(device_id, (i2c_status_get(device_id) & ~I2C_STATUS_ARB_LOST_MASK) | + I2C_STATUS_ARB_LOST(value)); +} + +static inline uint32_t hal_i2c_arbitration_get(uint32_t device_id) +{ + uint32_t status = i2c_status_get(device_id); + return ((status & I2C_STATUS_ARB_LOST_MASK) >> I2C_STATUS_ARB_LOST_SHIFT); +} + + +/*! SETUP. */ +/* Abort/Reset on-going transfer & clear busy & arbitration flags. */ +static inline void hal_i2c_reset_set(uint32_t device_id, uint8_t value) +{ + i2c_setup_set(device_id, I2C_SETUP_DO_RST(value)); +} + +static inline uint32_t hal_i2c_do_reset_get(uint32_t device_id) +{ + return i2c_setup_get(device_id) & ~I2C_SETUP_DO_RST_MASK; +} + + +/*! UDMA. */ +/* Enqueue transfer on UDMA channels. */ +static inline void hal_i2c_enqueue(uint32_t device_id, uint32_t channel, uint32_t l2buf, + uint32_t size, uint32_t cfg) +{ + /* Enqueue l2 buffer & start transfer. */ + i2c_udma_channel_set(device_id, channel, l2buf, size, cfg); +} +#endif diff --git a/rtos/freertos/abstraction_layer_freertos/include/udma_spim.h b/rtos/freertos/abstraction_layer_freertos/include/udma_spim.h new file mode 100644 index 00000000..090dd6b3 --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/include/udma_spim.h @@ -0,0 +1,51 @@ +/* + * Copyright 2020 GreenWaves Technologies + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +/** + * Defines/types and small low level driver for udma spim main functionnalities + */ + +#ifndef __UDMA_SPIM_H__ +#define __UDMA_SPIM_H__ + +#include "target.h" +#include "spi_periph.h" +#include "udma_core.h" + +#define SPIM(id) ((spi_t *) UDMA_SPIM(id)) + +static inline void spim_enqueue_channel(spi_t *spim, uint32_t addr, + uint32_t size, uint32_t config, udma_channel_e channel) +{ + switch(channel) + { + case(RX_CHANNEL): + udma_enqueue_channel(&(spim->rx), addr, size, config); + break; + case(TX_CHANNEL): + udma_enqueue_channel(&(spim->tx), addr, size, config); + break; + case(COMMAND_CHANNEL): + udma_enqueue_channel(&(spim->cmd), addr, size, config); + break; + default: + break; + } +} + +#endif diff --git a/rtos/freertos/abstraction_layer_freertos/include/udma_uart.h b/rtos/freertos/abstraction_layer_freertos/include/udma_uart.h new file mode 100644 index 00000000..ad4fe0f7 --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/include/udma_uart.h @@ -0,0 +1,197 @@ +/* + * Copyright 2020 GreenWaves Technologies + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#ifndef __UDMA_UART_H__ +#define __UDMA_UART_H__ + +#include "target.h" +#include "uart_periph.h" +#include "udma_core.h" +#include "udma_ctrl.h" +#include "bits.h" + +/* + * pi_task: + * data[0] = l2_buf + * data[1] = size + * data[2] = channel + * data[3] = repeat_size + * data[4] = device_id (used for delegation) + */ +struct uart_itf_data_s { + struct pi_task *fifo_head[2]; /*!< 0 = RX | 1 = TX. */ + struct pi_task *fifo_tail[2]; /*!< 0 = RX | 1 = TX. */ + uint32_t nb_open; /*!< Number of times device has been opened. */ + uint32_t device_id; /*!< Device ID. */ +}; + +/*! UART udma configuration. */ +static inline void uart_udma_channel_set(uint32_t device_id, uint32_t l2_buf, + uint32_t size, uint32_t cfg, + udma_channel_e channel) +{ + switch (channel) { + case (RX_CHANNEL): + udma_enqueue_channel(&(uart(device_id)->rx), l2_buf, size, cfg); + break; + case (TX_CHANNEL): + udma_enqueue_channel(&(uart(device_id)->tx), l2_buf, size, cfg); + break; + default: + break; + } +} + +/*! Status Register. */ +static inline uint32_t uart_status_get(uint32_t device_id) +{ + return hal_read32(&(uart(device_id)->status)); +} + + +/*! Setup Register. */ +static inline void uart_setup_set(uint32_t device_id, uint32_t setup) +{ + hal_write32(&(uart(device_id)->setup), setup); +} + +static inline uint32_t uart_setup_get(uint32_t device_id) +{ + return hal_read32(&(uart(device_id)->setup)); +} + +/*! SETUP. */ +/* Parity setup. */ +static inline void hal_uart_parity_enable(uint32_t device_id) +{ + uart_setup_set(device_id, (uart_setup_get(device_id) | + REG_SET(UART_SETUP_PARITY_ENA, 1))); +} + +static inline void hal_uart_parity_disable(uint32_t device_id) +{ + uart_setup_set(device_id, (uart_setup_get(device_id) & + ~REG_SET(UART_SETUP_PARITY_ENA, 1))); +} + +/* Word size. */ +static inline void hal_uart_bit_length_set(uint32_t device_id, + uint8_t bit_length) +{ + uart_setup_set(device_id, + (uart_setup_get(device_id) & + ~UART_SETUP_BIT_LENGTH_MASK) | + REG_SET(UART_SETUP_BIT_LENGTH, bit_length)); +} + +/* Stop bits. */ +static inline void hal_uart_stop_bits_set(uint32_t device_id, uint8_t stop_bits) +{ + uart_setup_set(device_id, + (uart_setup_get(device_id) & + ~UART_SETUP_STOP_BITS_MASK) | + REG_SET(UART_SETUP_STOP_BITS, stop_bits)); +} + +/* TX enable. */ +static inline void hal_uart_tx_enable(uint32_t device_id) +{ + uart_setup_set(device_id, (uart_setup_get(device_id) | + REG_SET(UART_SETUP_TX_ENA, 1))); +} + +static inline void hal_uart_tx_disable(uint32_t device_id) +{ + uart_setup_set(device_id, (uart_setup_get(device_id) & + ~REG_SET(UART_SETUP_TX_ENA, 1))); +} + +/* RX enable. */ +static inline void hal_uart_rx_enable(uint32_t device_id) +{ + uart_setup_set(device_id, (uart_setup_get(device_id) | + REG_SET(UART_SETUP_RX_ENA, 1))); +} + +static inline void hal_uart_rx_disable(uint32_t device_id) +{ + uart_setup_set(device_id, (uart_setup_get(device_id) & + ~REG_SET(UART_SETUP_RX_ENA, 1))); +} + +/* Clock divider setup. */ +static inline void hal_uart_clkdiv_set(uint32_t device_id, uint16_t clk_div) +{ + uart_setup_set(device_id, + (uart_setup_get(device_id) & ~UART_SETUP_CLKDIV_MASK) | + REG_SET(UART_SETUP_CLKDIV, clk_div)); +} + +/* Setup UART. */ +static inline void hal_uart_setup_set(uint32_t device_id, uint16_t clk_div, + uint8_t rx_ena, uint8_t tx_ena, + uint8_t stop_bits, uint8_t bit_length, + uint8_t parity_ena) +{ + uint32_t setup = REG_SET(UART_SETUP_CLKDIV, clk_div) | + REG_SET(UART_SETUP_RX_ENA, rx_ena) | + REG_SET(UART_SETUP_TX_ENA, tx_ena) | + REG_SET(UART_SETUP_STOP_BITS, stop_bits) | + REG_SET(UART_SETUP_BIT_LENGTH, bit_length) | + REG_SET(UART_SETUP_PARITY_ENA, parity_ena); + uart_setup_set(device_id, setup); +} + + +/*! STATUS. */ +static inline uint32_t hal_uart_tx_status_get(uint32_t device_id) +{ + return (uart_status_get(device_id) & UART_STATUS_TX_BUSY_MASK); +} + +static inline uint32_t hal_uart_rx_status_get(uint32_t device_id) +{ + return (uart_status_get(device_id) & UART_STATUS_RX_BUSY_MASK); +} + +static inline uint32_t hal_uart_rx_parity_error_get(uint32_t device_id) +{ + return (uart_status_get(device_id) & UART_STATUS_RX_PE_MASK); +} + + +/*! UDMA. */ +static inline void hal_uart_enqueue(uint32_t device_id, uint32_t l2_buf, + uint32_t size, uint32_t cfg, + udma_channel_e channel) +{ + cfg |= REG_SET(UDMA_CORE_RX_CFG_EN, 1); + uart_udma_channel_set(device_id, l2_buf, size, cfg, channel); +} + +static inline void hal_uart_rx_clear(uint32_t device_id) +{ + udma_channel_clear(&(uart(device_id)->rx)); +} + +static inline void hal_uart_tx_clear(uint32_t device_id) +{ + udma_channel_clear(&(uart(device_id)->tx)); +} + +#endif /* __UDMA_UART_H__ */ diff --git a/rtos/freertos/abstraction_layer_freertos/scr/Quick_Start_Guide.url b/rtos/freertos/abstraction_layer_freertos/scr/Quick_Start_Guide.url deleted file mode 100644 index be74fdc9..00000000 --- a/rtos/freertos/abstraction_layer_freertos/scr/Quick_Start_Guide.url +++ /dev/null @@ -1,5 +0,0 @@ -[InternetShortcut] -URL=http://www.freertos.org/FreeRTOS-quick-start-guide.html -IDList= -[{000214A0-0000-0000-C000-000000000046}] -Prop3=19,2 diff --git a/rtos/freertos/abstraction_layer_freertos/scr/clkconst.c b/rtos/freertos/abstraction_layer_freertos/scr/clkconst.c new file mode 100644 index 00000000..1a0480b1 --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/scr/clkconst.c @@ -0,0 +1,48 @@ +/* + * Copyright (C) 2021 ETH Zurich and University of Bologna + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + * + * PULP FPGA implementations sometimes have non-configurable, constant clocks + * for soc/cluster/periphs. + * + * Author: Robert Balas (balasr@iis.ee.ethz.ch) + */ + +#include + +#include "properties.h" +#include "freq.h" + +uint32_t pi_freq_get(pi_freq_domain_e domain) +{ + /* TODO: build time switch between asic and fpga build */ + switch (domain) { + case PI_FREQ_DOMAIN_FC: + return FPGA_SYSTEM_CLOCK; + case PI_FREQ_DOMAIN_CL: + return FPGA_SYSTEM_CLOCK; + case PI_FREQ_DOMAIN_PERIPH: + return FPGA_PERIPH_CLOCK; + } + /* unreachable */ + return 0; +} + +int32_t pi_freq_set(pi_freq_domain_e domain, uint32_t freq) +{ + /* not possible to configure clocks */ + return 1; +} diff --git a/rtos/freertos/abstraction_layer_freertos/scr/clkdiv.c b/rtos/freertos/abstraction_layer_freertos/scr/clkdiv.c new file mode 100644 index 00000000..1651fd43 --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/scr/clkdiv.c @@ -0,0 +1,102 @@ +/* + * Copyright (C) 2020 ETH Zurich and University of Bologna + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + */ +/* Driver to control the soc control clock divider used in some PULP based + * chips/IPs. This driver is mutually exclusive with the fll driver. There are + * three clock dividers one for the fc, cluster and peripheral subsystems each + * in control-pulp that replace the FLLs. The clock dividers for the fc and + * cluster are driven by a variable system clock and while the peripheral clock + * divider is driven a fixed reference clock. The divider value is limited to + * eight bits. + */ +/* Author: Robert Balas (balasr@iis.ee.ethz.ch) + */ + +#include + +#include "clkdiv.h" +#include "memory_map.h" +#include "freq.h" +#include "io.h" + +static uint32_t freq_from_div(uint32_t freq, uint32_t div) +{ + if (div == 0 || div == 1) + return freq; + + if (div % 2 == 0) + return freq / div; + else + return freq / (2 * (div - 1)); +} + +uint32_t pi_freq_get(pi_freq_domain_e domain) +{ + uint32_t div = 0; + + /* TODO: build time switch between asic and fpga build */ + switch (domain) { + case PI_FREQ_DOMAIN_FC: + div = readw((uintptr_t)(CLKDIV_ADDR + CLKDIV_FC_OFFSET)); + return freq_from_div(ASIC_SYSTEM_CLOCK, div); + case PI_FREQ_DOMAIN_CL: + div = readw((uintptr_t)(CLKDIV_ADDR + CLKDIV_CL_OFFSET)); + return freq_from_div(ASIC_SYSTEM_CLOCK, div); + case PI_FREQ_DOMAIN_PERIPH: + div = readw((uintptr_t)(CLKDIV_ADDR + CLKDIV_PERIPH_OFFSET)); + return freq_from_div(ASIC_PERIPH_CLOCK, div); + } + /* unreachable */ + return 0; +} + +static uint32_t div_from_freq(uint32_t base_freq, uint32_t target_freq) +{ + return base_freq / target_freq; +} + +int32_t pi_freq_set(pi_freq_domain_e domain, uint32_t freq) +{ + /* impossible */ + if (freq > ASIC_SYSTEM_CLOCK || freq == 0) + return 1; + + uint32_t div = 0; + + switch (domain) { + case PI_FREQ_DOMAIN_FC: + div = div_from_freq(ASIC_SYSTEM_CLOCK, freq); + if (div >= 0xff) + return -1; + writew(div, (uintptr_t)(CLKDIV_ADDR + CLKDIV_FC_OFFSET)); + break; + case PI_FREQ_DOMAIN_CL: + div = div_from_freq(ASIC_SYSTEM_CLOCK, freq); + if (div >= 0xff) + return -1; + writew(div, (uintptr_t)(CLKDIV_ADDR + CLKDIV_CL_OFFSET)); + break; + case PI_FREQ_DOMAIN_PERIPH: + div = div_from_freq(ASIC_PERIPH_CLOCK, freq); + if (div >= 0xff) + return -1; + writew(div, (uintptr_t)(CLKDIV_ADDR + CLKDIV_PERIPH_OFFSET)); + break; + } + + return 0; +} diff --git a/rtos/freertos/abstraction_layer_freertos/scr/device.c b/rtos/freertos/abstraction_layer_freertos/scr/device.c new file mode 100644 index 00000000..14468a80 --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/scr/device.c @@ -0,0 +1,54 @@ +/* + * Copyright 2020 GreenWaves Technologies + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include "device.h" + +static inline pi_device_e get_pi_device_type(void *conf); + +/* extract pi_device_type */ +static inline pi_device_e get_pi_device_type(void *conf) +{ + pi_device_e *device_ptr = (pi_device_e *)conf; + return *device_ptr; +} + +void pi_open_from_conf(struct pi_device *device, void *conf) +{ +#if 0 + pi_device_e device_type = get_pi_device_type(conf); + switch (device_type) { + case PI_DEVICE_CLUSTER_TYPE: + device->config = conf; + pi_cluster_open(device); + break; + case PI_DEVICE_CPI_TYPE: + case PI_DEVICE_HYPERBUS_TYPE: + case PI_DEVICE_I2C_TYPE: + case PI_DEVICE_SPI_TYPE: + case PI_DEVICE_GPIO_TYPE: + device->config = conf; + break; + default: + device->config = conf; + // TODO: add debug warning here + break; + } +#else + device->config = conf; +#endif +} diff --git a/rtos/freertos/abstraction_layer_freertos/scr/fc_event.c b/rtos/freertos/abstraction_layer_freertos/scr/fc_event.c new file mode 100644 index 00000000..65aeb35a --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/scr/fc_event.c @@ -0,0 +1,69 @@ +/* + * Copyright 2020 GreenWaves Technologies + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include +#include +#include "fc_event.h" +#include "memory_map.h" +#include "riscv.h" + + +static void fc_event_null_event(void *arg); + +static volatile pi_fc_event_handler_t fc_event_handlers[NB_SOC_EVENTS]; + +static void fc_event_null_event(void *arg) +{ + return; +} + +void pi_fc_event_handler_init(uint32_t fc_event_irq) +{ + /* TODO: fix this mess, that should be 8 32-bit writes */ + /* open the mask for fc_soc_event irq */ + for (int i = 0; i < NB_SOC_EVENTS; i++) { + pi_fc_event_handler_clear((uint32_t)i); + } + irqn_enable(fc_event_irq); +} + +void pi_fc_event_handler_set(uint32_t event_id, + pi_fc_event_handler_t event_handler) +{ + fc_event_handlers[event_id] = event_handler; +} + +void pi_fc_event_handler_clear(uint32_t event_id) +{ + fc_event_handlers[event_id] = + (pi_fc_event_handler_t)fc_event_null_event; +} + +/* TODO: fix */ +__attribute__((section(".text"))) void fc_soc_event_handler(void) +{ + /* Pop one event element from the FIFO */ + uint32_t event = SIMPLE_IRQ->FIFO; + + event &= 0xFF; + + /* redirect to handler with jump table */ + if (fc_event_handlers[event] != NULL) { + fc_event_handlers[event]((void *)event); + } +} diff --git a/rtos/freertos/abstraction_layer_freertos/scr/fll.c b/rtos/freertos/abstraction_layer_freertos/scr/fll.c new file mode 100644 index 00000000..2994a395 --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/scr/fll.c @@ -0,0 +1,231 @@ +/* + * Copyright 2020 GreenWaves Technologies + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include + +#include "bits.h" +#include "fll.h" +#include "irq.h" + +/* + * Fll control + * FreqOut = Fref * Mult/2^(Div-1) + * With Mult on 16 bits and Div on 4 bits + */ + +/* Maximum Log2(DCO Frequency) */ +#define FLL_LOG2_MAXDCO 29 +/* Maximum Log2(Clok Divider) */ +#define FLL_LOG2_MAXDIV 15 +/* Log2(FLL_REF_CLK=32768) */ +#define FLL_LOG2_REFCLK ARCHI_REF_CLOCK_LOG2 +/* Maximum Log2(Multiplier) */ +#define FLL_LOG2_MAXM (FLL_LOG2_MAXDCO - FLL_LOG2_REFCLK) + +/* TODO: we are patching over these macros to make them independent of pulp-gcc + */ +#define __MAX(a, b) \ + ({ \ + typeof(a) _a = (a); \ + typeof(b) _b = (b); \ + _a > _b ? _a : _b; \ + }) + +#define __FL1(x) (31 - __builtin_clz((x))) + +static volatile uint32_t flls_frequency[FLL_NUM]; + + +static uint32_t fll_get_mult_div_from_frequency(uint32_t freq, uint32_t *mult, + uint32_t *div) +{ + unsigned int fref = FLL_REF_CLK; + unsigned int Log2M = __FL1(freq) - __FL1(fref); + unsigned int D = __MAX(1, (FLL_LOG2_MAXM - Log2M) >> 1); + unsigned int M = (freq << D) / fref; + unsigned int fres; + + fres = (fref * M + (1 << (D - 1))) >> D; /* Rounding */ + + *mult = M; + *div = D + 1; + return fres; +} + +static uint32_t fll_get_frequency_from_mult_div(uint32_t mult, uint32_t div) +{ + /* FreqOut = Fref * Mult/2^(Div-1) With Mult on 16 bits and Div on 4 + * bits */ + uint32_t fref = FLL_REF_CLK; + uint32_t fres = (div == 0) ? (fref * mult) : (fref * mult) >> (div - 1); + return fres; +} + +int pi_fll_set_frequency(fll_type_t which_fll, uint32_t frequency, int check) +{ + uint32_t mult, div; + uint32_t reg1; + + int irq = __disable_irq(); + + /* Frequency calculation from theory */ + fll_get_mult_div_from_frequency(frequency, &mult, &div); + + /* update mult and div */ + /* TODO: check if fll is on */ + reg1 = FLL_CTRL[which_fll].FLL_CONF1; + + reg1 &= ~FLL_CTRL_CONF1_MULTI_FACTOR_MASK; + reg1 |= REG_SET(FLL_CTRL_CONF1_MULTI_FACTOR, mult); + reg1 &= ~FLL_CTRL_CONF1_CLK_OUT_DIV_MASK; + reg1 |= REG_SET(FLL_CTRL_CONF1_CLK_OUT_DIV, div); + + FLL_CTRL[which_fll].FLL_CONF1 = reg1; + + /* finalize */ + if (which_fll == FLL_SOC) + system_core_clock_update(); + + flls_frequency[which_fll] = frequency; + + __restore_irq(irq); + + return frequency; +} + +void pi_fll_init(fll_type_t which_fll, uint32_t ret_state) +{ + uint32_t reg1; + + if (ret_state) { + pi_fll_get_frequency(which_fll, 1); + } else { + reg1 = FLL_CTRL[which_fll].FLL_CONF1; + + /* + * Don't set the gain and integrator in case it has already been + * set by the boot code as it totally blocks the fll on the RTL + * platform. The boot code is anyway setting the same + * configuration. + */ + if (!REG_GET(FLL_CTRL_CONF1_MODE, reg1)) { + /* set clock ref lock assert count */ + uint32_t reg2 = FLL_CTRL[which_fll].FLL_CONF2; + reg2 &= ~FLL_CTRL_CONF2_ASSERT_CYCLES_MASK; + reg2 |= REG_SET(FLL_CTRL_CONF2_ASSERT_CYCLES, 0x6); + reg2 &= ~FLL_CTRL_CONF2_LOCK_TOLERANCE_MASK; + reg2 |= REG_SET(FLL_CTRL_CONF2_LOCK_TOLERANCE, 0x50); + FLL_CTRL[which_fll].FLL_CONF2 = reg2; + + /* + * In order to lock the fll faster, we first setup an + * approximated frequency while we are in open loop as + * it is set immediately. Then starting from this + * frequency, we should reach the target one in lock + * mode faster. We are in open loop, prime the fll + * forcing dco input, approx 70 MHz + */ + uint32_t regint = FLL_CTRL[which_fll].FLL_INTEGRATOR; + regint &= ~FLL_CTRL_INTEGRATOR_INT_PART_MASK; + regint |= REG_SET(FLL_CTRL_INTEGRATOR_INT_PART, 332); + FLL_CTRL[which_fll].FLL_INTEGRATOR = regint; + + /* Lock FLL */ + reg1 &= ~FLL_CTRL_CONF1_OUTPUT_LOCK_EN_MASK; + reg1 |= REG_SET(FLL_CTRL_CONF1_OUTPUT_LOCK_EN, 1); + reg1 &= ~FLL_CTRL_CONF1_MODE_MASK; + reg1 |= REG_SET(FLL_CTRL_CONF1_MODE, 1); + FLL_CTRL[which_fll].FLL_CONF1 = reg1; + } + + /* + * In case the FLL frequency was set while it was off, update it + * immediately + */ + uint32_t freq = flls_frequency[which_fll]; + if (freq) { + if (pi_fll_set_frequency(which_fll, freq, 0)) + abort(); + } else { + freq = fll_get_frequency_from_mult_div( + REG_GET(FLL_CTRL_CONF1_MULTI_FACTOR, reg1), + REG_GET(FLL_CTRL_CONF1_CLK_OUT_DIV, reg1)); + flls_frequency[which_fll] = freq; + } + /* TODO: see if we need this + if (pi_fll_set_frequency(which_fll, DEFAULT_SYSTEM_CLOCK, 0) == + -1) + exit(-1); + */ + } +} + +int pi_fll_get_frequency(fll_type_t which_fll, uint8_t real) +{ + if (real) { + /* Frequency calculation from real world */ + int real_freq = 0; + real_freq = fll_get_frequency_from_mult_div( + FLL_CTRL[which_fll].FLL_STATUS, + REG_GET(FLL_CTRL_CONF1_CLK_OUT_DIV, + FLL_CTRL[which_fll].FLL_CONF1)); + + /* Update Frequency */ + flls_frequency[which_fll] = real_freq; + } + return flls_frequency[which_fll]; +} + +void pi_fll_deinit(fll_type_t which_fll) +{ + flls_frequency[which_fll] = 0; +} + +uint32_t pi_freq_get(pi_freq_domain_e domain) +{ + switch (domain) { + case PI_FREQ_DOMAIN_FC: + return pi_fll_get_frequency(FLL_SOC, 0); + case PI_FREQ_DOMAIN_CL: + return pi_fll_get_frequency(FLL_CLUSTER, 0); + case PI_FREQ_DOMAIN_PERIPH: + return pi_fll_get_frequency(FLL_SOC, 0); + default: + return 0; + } +} + +int32_t pi_freq_set(pi_freq_domain_e domain, uint32_t freq) +{ + int32_t retval = -1; + switch (domain) { + case PI_FREQ_DOMAIN_FC: + retval = pi_fll_set_frequency(FLL_SOC, freq, 1); + break; + case PI_FREQ_DOMAIN_CL: + retval = pi_fll_set_frequency(FLL_CLUSTER, freq, 1); + break; + case PI_FREQ_DOMAIN_PERIPH: + retval = pi_fll_set_frequency(FLL_SOC, freq, 1); + break; + default: + retval = -1; + } + + return ((retval == -1) ? -1 : 0); +} diff --git a/rtos/freertos/abstraction_layer_freertos/scr/gpio.c b/rtos/freertos/abstraction_layer_freertos/scr/gpio.c new file mode 100644 index 00000000..121c350c --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/scr/gpio.c @@ -0,0 +1,172 @@ +/* + * Copyright (C) 2020 ETH Zurich and University of Bologna + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + */ +/* Driver to control and configure the PULP GPIO pins */ +/* Author: Robert Balas (balasr@iis.ee.ethz.ch) + */ + +#include +#include + +#include "pulp_mem_map.h" +#include "io.h" +#include "pinmux.h" +#include "bits.h" + +#include "gpio.h" + +int gpio_pin_conf_pad(int pin, uint32_t flags) +{ + assert(0 <= pin && pin < 32); + + /* this is only correct if the static assert in gpio.h regarding padcfg* + * registers doesn't fail + */ + uintptr_t pad_conf_reg = + (((uintptr_t)pin & 0xf) >> 3) * 4 + + (uintptr_t)(PULP_GPIO_ADDR + GPIO_PADCFG0_OFFSET); + uint32_t pad_shift = (pin & 0x3) << 3; /* (0,1) (8,9) (16,17) (24,25) */ + uint32_t val = (flags & GPIO_PULL_ENABLE) | + (flags & GPIO_DRIVE_STRENGTH_HIGH) << 1; + + writew(val << pad_shift, pad_conf_reg); + + return 0; +} + +/* for now we only handle the gpio from 0-31 and ignore 32-63 */ +int gpio_pin_configure(int pin, uint32_t flags) +{ + /* check for misconfigurations */ + assert(!((flags & GPIO_INPUT) && (flags & GPIO_OUTPUT))); + + /* set pad mux to gpio */ + pinmux_pin_set(pin, PINMUX_FUNC_B); + + /* configure pad pull and drive */ + gpio_pin_conf_pad(pin, flags); + + /* configure direction */ + uint32_t pads = readw((uintptr_t)(PULP_GPIO_ADDR + GPIO_PADDIR_OFFSET)); + WRITE_BIT(pads, pin, flags & GPIO_OUTPUT); + writew(pads, (uintptr_t)(PULP_GPIO_ADDR + GPIO_PADDIR_OFFSET)); + + /* default value to prevent glitches */ + if (flags & GPIO_OUTPUT_INIT_HIGH) + gpio_pin_set_raw(pin, 1); + + if (flags & GPIO_OUTPUT_INIT_LOW) + gpio_pin_set_raw(pin, 0); + + /* control pad clock gating: need to enable clock for inputs */ + uint32_t en = readw((uintptr_t)(PULP_GPIO_ADDR + GPIO_GPIOEN_OFFSET)); + WRITE_BIT(en, pin, GPIO_INPUT); + writew(en, (uintptr_t)(PULP_GPIO_ADDR + GPIO_GPIOEN_OFFSET)); + + return 0; +} + +inline int gpio_port_get_raw(uint32_t *value) +{ + /* this api is a bit dumb but the return value is mean to signal an + * error. This never happens in our implementation. + */ + *value = readw((uintptr_t)(PULP_GPIO_ADDR + GPIO_PADIN_OFFSET)); + + return 0; +} + +inline int gpio_port_set_masked_raw(uint32_t mask, uint32_t value) +{ + uint32_t outval = + readw((uintptr_t)(PULP_GPIO_ADDR + GPIO_PADOUT_OFFSET)); + writew((outval & ~mask) | (value & mask), + (uintptr_t)(PULP_GPIO_ADDR + GPIO_PADOUT_OFFSET)); + + return 0; +} + +inline int gpio_port_set_bits_raw(uint32_t mask) +{ + uint32_t outval = + readw((uintptr_t)(PULP_GPIO_ADDR + GPIO_PADOUT_OFFSET)); + writew(outval | mask, (uintptr_t)(PULP_GPIO_ADDR + GPIO_PADOUT_OFFSET)); + + return 0; +} + +inline int gpio_port_clear_bits_raw(uint32_t mask) +{ + uint32_t outval = + readw((uintptr_t)(PULP_GPIO_ADDR + GPIO_PADOUT_OFFSET)); + writew(outval & ~mask, + (uintptr_t)(PULP_GPIO_ADDR + GPIO_PADOUT_OFFSET)); + + return 0; +} + +inline int gpio_port_toggle_bits(uint32_t mask) +{ + uint32_t outval = + readw((uintptr_t)(PULP_GPIO_ADDR + GPIO_PADOUT_OFFSET)); + writew(outval ^ mask, (uintptr_t)(PULP_GPIO_ADDR + GPIO_PADOUT_OFFSET)); + + return 0; +} + +inline int gpio_pin_get_raw(int pin) +{ + assert(0 <= pin && pin < 32); + + uint32_t value = 0; + int ret = gpio_port_get_raw(&value); + if (!ret) + ret = (value & BIT(pin)) != 0; + + return ret; +} + +inline int gpio_pin_set_raw(int pin, int value) +{ + assert(0 <= pin && pin < 32); + + if (value != 0) + gpio_port_set_bits_raw(BIT(pin)); + else + gpio_port_clear_bits_raw(BIT(pin)); + + return 0; +} + +inline int gpio_pin_toggle(int pin) +{ + return gpio_port_toggle_bits(BIT(pin)); +} +/* TODO: gpio interrupt handling and configuration */ +/* static inline int gpio_pin_interrupt_configure() */ +/* { */ +/* } */ + +/* static inline int gpio_manage_callback(){ */ + +/* } */ +/* static inline int gpio_enable_callback(){ */ + +/* } */ +/* static inline int gpio_disable_callback(){ */ + +/* } */ diff --git a/rtos/freertos/abstraction_layer_freertos/scr/irq.c b/rtos/freertos/abstraction_layer_freertos/scr/irq.c new file mode 100644 index 00000000..ce2036d4 --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/scr/irq.c @@ -0,0 +1,102 @@ +/* + * Copyright (C) 2019 ETH Zurich and University of Bologna + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + * Author: Robert Balas (balasr@iis.ee.ethz.ch) + */ + +/* Driver to control and configure the PULP IRQ (apb_interrupt_control)*/ + +#include +#include + +#include "pulp_mem_map.h" +#include "io.h" +#include "irq.h" +#include "csr.h" + +extern void (*isr_table[32])(void); + +/* set interrupt handler for given interrupt id */ +void irq_set_handler(int id, void (*handler)(void)) +{ + assert (0 <= id < 32); + isr_table[id] = handler; +} + +/* utility functions for PULPs external interrupt controller */ +void irq_mask(uint32_t mask) +{ + writew(mask, (uintptr_t)(PULP_FC_IRQ_ADDR + IRQ_REG_MASK_OFFSET)); +} + +void irq_enable(uint32_t mask) +{ + writew(mask, (uintptr_t)(PULP_FC_IRQ_ADDR + IRQ_REG_MASK_SET_OFFSET)); +} + +void irq_disable(uint32_t mask) +{ + writew(mask, (uintptr_t)(PULP_FC_IRQ_ADDR + IRQ_REG_MASK_CLEAR_OFFSET)); +} + +void irq_pend(uint32_t mask) +{ + writew(mask, (uintptr_t)(PULP_FC_IRQ_ADDR + IRQ_REG_INT_SET_OFFSET)); +} + +void irq_clear(uint32_t mask) +{ + writew(mask, (uintptr_t)(PULP_FC_IRQ_ADDR + IRQ_REG_INT_CLEAR_OFFSET)); +} + +/* utility functions for the core level interrupt (CLINT) described in the + * RISC-V privileged specification */ + +/* enable/disable interrupt globally (MIE bit in mstatus csr) */ +uint32_t irq_clint_global_disable() +{ + uint32_t val = csr_read_clear(CSR_MSTATUS, MSTATUS_IE); + return val; +} + +uint32_t irq_clint_global_enable() +{ + uint32_t val = csr_read_set(CSR_MSTATUS, MSTATUS_IE); + return val; +} + +/* enable/disable interrupts selectively (in mie csr) */ +uint32_t irq_clint_disable(int32_t mask) +{ + uint32_t val = csr_read_clear(CSR_MIE, mask); + return val; +} + +uint32_t irq_clint_enable(int32_t mask) +{ + uint32_t val = csr_read_set(CSR_MIE, mask); + return val; +} + + +/* TODO: make this a constructor? */ +void pulp_irq_init() +{ + /* the debug module could have enabled irq so we disable it during + * initialization + */ + irq_disable(0xffffffff); +} diff --git a/rtos/freertos/abstraction_layer_freertos/scr/pinmux.c b/rtos/freertos/abstraction_layer_freertos/scr/pinmux.c new file mode 100644 index 00000000..8b35f72e --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/scr/pinmux.c @@ -0,0 +1,56 @@ +/* + * Copyright (C) 2020 ETH Zurich and University of Bologna + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + * Author: Robert Balas (balasr@iis.ee.ethz.ch) + */ + +/* Driver to control and configure pad mux */ + +#include +#include + +#include "io.h" +#include "pulp_mem_map.h" +#include "apb_soc.h" +#include "pinmux.h" + +/* TODO: we only support pin 0-31 */ + +int pinmux_pin_set(int pin, uint32_t func) +{ + assert(0 <= pin && pin < 32); + + uintptr_t padfun_reg = + ((pin & 0xf) >> 4) * 4 + + (PULP_APB_SOC_CTRL_ADDR + APB_SOC_PADFUN0_OFFSET); + uint32_t padfun_shift = (pin & 0x7) << 1; /* 16 pads a 2 bits per reg */ + writew((func & 0x3) << padfun_shift, padfun_reg); + + return 0; +} + +int pinmux_pin_get(int pin, uint32_t *func) +{ + assert(0 <= pin && pin < 32); + + uintptr_t padfun_reg = + ((pin & 0xf) >> 4) * 4 + + (PULP_APB_SOC_CTRL_ADDR + APB_SOC_PADFUN0_OFFSET); + uint32_t padfun_shift = (pin & 0x7) << 1; /* 16 pads a 2 bits per reg */ + uint32_t padfunval = readw(padfun_reg); + *func = (padfunval >> padfun_shift) & 0x3; + return 0; +} diff --git a/rtos/freertos/abstraction_layer_freertos/scr/readme.txt b/rtos/freertos/abstraction_layer_freertos/scr/readme.txt deleted file mode 100644 index 81518ecb..00000000 --- a/rtos/freertos/abstraction_layer_freertos/scr/readme.txt +++ /dev/null @@ -1,17 +0,0 @@ -Each real time kernel port consists of three files that contain the core kernel -components and are common to every port, and one or more files that are -specific to a particular microcontroller and or compiler. - -+ The FreeRTOS/Source directory contains the three files that are common to -every port - list.c, queue.c and tasks.c. The kernel is contained within these -three files. croutine.c implements the optional co-routine functionality - which -is normally only used on very memory limited systems. - -+ The FreeRTOS/Source/Portable directory contains the files that are specific to -a particular microcontroller and or compiler. - -+ The FreeRTOS/Source/include directory contains the real time kernel header -files. - -See the readme file in the FreeRTOS/Source/Portable directory for more -information. \ No newline at end of file diff --git a/rtos/freertos/abstraction_layer_freertos/scr/soc_eu.c b/rtos/freertos/abstraction_layer_freertos/scr/soc_eu.c new file mode 100644 index 00000000..a8228212 --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/scr/soc_eu.c @@ -0,0 +1,51 @@ +/* + * Copyright (C) 2019 ETH Zurich and University of Bologna + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/* Driver to control and configure the PULP event unit */ +/* Author: Robert Balas (balasr@iis.ee.ethz.ch) + */ + +#include +#include "pulp_mem_map.h" +#include "io.h" +#include "soc_eu_metal.h" + +void soc_eu_mask_set(uint32_t offset, uint32_t mask) +{ + writew(mask, (uintptr_t)(PULP_SOC_EU_ADDR + offset)); +} + +uint32_t soc_eu_mask_get(uint32_t offset) +{ + return readw((uintptr_t)(PULP_SOC_EU_ADDR + offset)); +} + +/* void soc_eu_irq_mask_set(uint32_t mask) */ +/* { */ +/* writew(mask, PULP_SOC_EU_ADDR + ) */ +/* } */ + +/* uint32_t soc_eu_irq_mask_get() */ +/* { */ +/* } */ + +void soc_eu_event_init() +{ + /* deactivate all soc events */ + for (unsigned i = 0; i < SOC_NB_EVENT_REGS; i++) { + soc_eu_mask_set(SOC_FC_FIRST_MASK + i * 4, 0xffffffff); + } +} diff --git a/rtos/freertos/abstraction_layer_freertos/scr/system.c b/rtos/freertos/abstraction_layer_freertos/scr/system.c new file mode 100644 index 00000000..89267e79 --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/scr/system.c @@ -0,0 +1,170 @@ +/* + * Copyright 2020 ETH Zurich + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + * Author: Robert Balas (balasr@iis.ee.ethz.ch) + */ + +#include +#include + +#include "system.h" + +#include +#include "FreeRTOSConfig.h" + +#include "cluster/cl_to_fc_delegate.h" +#include "fll.h" +#include "freq.h" +#include "fc_event.h" +#include "properties.h" +#include "irq.h" +#include "soc_eu.h" +#include "udma_ctrl.h" +#include "udma_uart.h" +#include "uart_periph.h" + +/* test some assumptions we make about compiler settings */ +static_assert(sizeof(uintptr_t) == 4, + "uintptr_t is not 4 bytes. Make sure you are using -mabi=ilp32*"); + +/* Allocate heap to special section. Note that we have no references in the + * whole program to this variable (since its just here to allocate space in the + * section for our heap), so when using LTO it will be removed. We force it to + * stay with the "used" attribute + */ +__attribute__((section(".heap"), used)) uint8_t ucHeap[configTOTAL_HEAP_SIZE]; + +/* Inform linker script about .heap section size. Note: GNU ld seems to + * internally represent integers with the bfd_vma type, that is a type that can + * contain memory addresses (typdefd to some int type depending on the + * architecture). uint32_t seems to me the most fitting candidate for rv32. + */ +uint32_t __heap_size = configTOTAL_HEAP_SIZE; + +volatile uint32_t system_core_clock = DEFAULT_SYSTEM_CLOCK; + +/* FreeRTOS task handling */ +BaseType_t xTaskIncrementTick(void); +void vTaskSwitchContext(void); + +/* interrupt handling */ +void cl_notify_fc_event_handler(void); +void timer_irq_handler(void); +void undefined_handler(void); +void (*isr_table[32])(void); + +/** + * Board init code. Always call this before anything else. + */ +void system_init(void) +{ + /* init flls */ + for (int i = 0; i < ARCHI_NB_FLL; i++) { + pi_fll_init(i, 0); + } + + /* make sure irq (itc) is a good state */ + pulp_irq_init(); + + /* Hook up isr table. This table is temporary until we figure out how to + * do proper vectored interrupts. + */ +#ifdef CONFIG_CLUSTER + isr_table[0x2] = cl_notify_fc_event_handler; +#endif + isr_table[0xa] = timer_irq_handler; + isr_table[0x1a] = fc_soc_event_handler; // 26 + + /* mtvec is set in crt0.S */ + + /* deactivate all soc events as they are enabled by default */ + soc_eu_event_init(); + + /* Setup soc events handler. */ + /* pi_fc_event_handler_init(FC_SOC_EVENT); */ + pi_fc_event_handler_init(26); /* TODO: FIX THIS */ + + /* TODO: I$ enable*/ + /* enable core level interrupt (mie) */ + irq_clint_global_enable(); + + /* enable uart as stdio*/ +#if CONFIG_STDIO == STDIO_UART + udma_ctrl_cg_disable(UDMA_UART_ID(STDIO_UART_DEVICE_ID)); + + int baudrate = STDIO_UART_BAUDRATE; + uint32_t div = (pi_freq_get(PI_FREQ_DOMAIN_PERIPH) + baudrate / 2) / baudrate; + uint32_t val = 0; + + val |= REG_SET(UART_SETUP_TX_ENA, 1); + val |= REG_SET(UART_SETUP_RX_ENA, 1); + val |= REG_SET(UART_SETUP_BIT_LENGTH, 0x3); /* 8 bits */ + val |= REG_SET(UART_SETUP_PARITY_ENA, 0); + val |= REG_SET(UART_SETUP_CLKDIV, div - 1); + val |= REG_SET(UART_SETUP_POLLING_EN, 1); + + uart_setup_set(UDMA_UART_ID(STDIO_UART_DEVICE_ID), val); +#endif + +} + +void system_core_clock_update(void) +{ + system_core_clock = pi_fll_get_frequency(FLL_SOC, 0); +} + +uint32_t system_core_clock_get(void) +{ + system_core_clock_update(); + return system_core_clock; +} + +void timer_irq_handler(void) +{ +#warning requires critical section if interrupt nesting is used. + + if (xTaskIncrementTick() != 0) { + vTaskSwitchContext(); + } +} + +void undefined_handler(void) +{ +#ifdef __PULP_USE_LIBC + abort(); +#else + taskDISABLE_INTERRUPTS(); + for (;;) + ; +#endif +} + +void vPortSetupTimerInterrupt(void) +{ + extern int timer_irq_init(uint32_t ticks); + + /* No CLINT so use the PULP timer to generate the tick interrupt. */ + /* TODO: configKERNEL_INTERRUPT_PRIORITY - 1 ? */ + timer_irq_init(ARCHI_REF_CLOCK / configTICK_RATE_HZ); + /* TODO: allow setting interrupt priority (to super high(?)) */ + irq_enable(IRQ_FC_EVT_TIMER0_LO); +} + +void vSystemIrqHandler(uint32_t mcause) +{ + extern void (*isr_table[32])(void); + isr_table[mcause & 0x1f](); +} diff --git a/rtos/freertos/abstraction_layer_freertos/scr/system_metal.c b/rtos/freertos/abstraction_layer_freertos/scr/system_metal.c new file mode 100644 index 00000000..85bee737 --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/scr/system_metal.c @@ -0,0 +1,88 @@ +/* + * Copyright 2020 ETH Zurich + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + * Author: Robert Balas (balasr@iis.ee.ethz.ch) + */ + +#include +#include +#include + +#include "system_metal_conf.h" + +#include "fll.h" +#include "irq.h" +#include "soc_eu.h" + +#ifndef DISABLE_WDOG +#define DISABLE_WDOG 1 +#endif + +/* test some assumptions we make about compiler settings */ +static_assert(sizeof(uintptr_t) == 4, + "uintptr_t is not 4 bytes. Make sure you are using -mabi=ilp32*"); + +/* Allocate heap to special section. Note that we have no references in the + * whole program to this variable (since its just here to allocate space in the + * section for our heap), so when using LTO it will be removed. We force it to + * stay with the "used" attribute + */ +__attribute__((section(".heap"), used)) uint8_t ucHeap[configTOTAL_HEAP_SIZE]; + +/* Inform linker script about .heap section size. Note: GNU ld seems to + * internally represent integers with the bfd_vma type, that is a type that can + * contain memory addresses (typdefd to some int type depending on the + * architecture). uint32_t seems to me the most fitting candidate for rv32. + */ +uint32_t __heap_size = configTOTAL_HEAP_SIZE; + +uint32_t volatile system_core_clock = DEFAULT_SYSTEM_CLOCK; + +/** + * Board init code. Always call this before anything else. + */ +void system_init(void) +{ + /* init flls */ + for (int i = 0; i < ARCHI_NB_FLL; i++) { + pi_fll_init(i, 0); + } + + /* make sure irq (itc) is a good state */ + pulp_irq_init(); + + /* mtvec is set in crt0.S */ + + /* deactivate all soc events as they are enabled by default */ + soc_eu_event_init(); + + /* TODO: enable uart */ + /* TODO: I$ enable*/ + /* enable core level interrupt (mie) */ + irq_clint_global_enable(); +} + +// +void system_core_clock_update() +{ + system_core_clock = pi_fll_get_frequency(FLL_SOC, 0); +} + +uint32_t system_core_clock_get(void) +{ + system_core_clock_update(); + return system_core_clock; +} diff --git a/rtos/freertos/abstraction_layer_freertos/scr/timer_irq.c b/rtos/freertos/abstraction_layer_freertos/scr/timer_irq.c new file mode 100644 index 00000000..cc60574b --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/scr/timer_irq.c @@ -0,0 +1,77 @@ +/* + * Copyright (C) 2019 ETH Zurich and University of Bologna + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +/* Driver to configure PULP timer as periodic interrupt source */ +/* Author: Robert Balas (balasr@iis.ee.ethz.ch) + * Germain Haugou (germain.haugou@iis.ee.ethz.ch) + */ + +#include +#include + +#include "pulp_mem_map.h" +#include "io.h" +#include "bits.h" + +#include "timer.h" +#include "timer_irq.h" + +/* TODO: used to measure elapsed time since last "visit" */ +static uint32_t last_count; + +int timer_irq_init(uint32_t ticks) +{ + /* TODO: enable soc_eu timer interrupt */ + + /* set the interrupt interval */ + timer_irq_set_timeout(ticks, false); + + /* We use only one of the 32-bit timer, leaving the other half available + * as an additional timer. We didn't opt for using both together as + * 64-bit timer. + * + * Enable timer, use 32khz ref clock as source. Timer will reset + * automatically to zero after causing an interrupt. + */ + writew(TIMER_CFG_LO_ENABLE_MASK | TIMER_CFG_LO_RESET_MASK | + TIMER_CFG_LO_CCFG_MASK | TIMER_CFG_LO_MODE_MASK | + TIMER_CFG_LO_IRQEN_MASK, + (uintptr_t)(PULP_FC_TIMER_ADDR + TIMER_CFG_LO_OFFSET)); + + return 0; +} + +int timer_irq_set_timeout(uint32_t ticks, bool idle) +{ + (void)idle; + /* fast reset, value doesn't matter */ + writew(1, (uintptr_t)(PULP_FC_TIMER_ADDR + TIMER_RESET_LO_OFFSET)); + writew(ticks, (uintptr_t)(PULP_FC_TIMER_ADDR + TIMER_CMP_LO_OFFSET)); + return 0; +} + +/* TODO: implement */ +uint32_t timer_irq_clock_elapsed() +{ + return 0; +} + +uint32_t timer_irq_cycle_get_32() +{ + return readw((uintptr_t)(PULP_FC_TIMER_ADDR + TIMER_CNT_LO_OFFSET)); +} diff --git a/rtos/freertos/abstraction_layer_freertos/scr/uart.c b/rtos/freertos/abstraction_layer_freertos/scr/uart.c new file mode 100644 index 00000000..75d4989c --- /dev/null +++ b/rtos/freertos/abstraction_layer_freertos/scr/uart.c @@ -0,0 +1,515 @@ +/* + * Copyright 2020 GreenWaves Technologies + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include +#include + +#include "pmsis_types.h" +#include "pmsis_task.h" + +#include "uart.h" +#include "fc_event.h" +#include "freq.h" +#include "device.h" +#include "events.h" +#include "udma_core.h" +#include "udma_uart.h" +#include "debug.h" + + +static struct uart_itf_data_s *g_uart_itf_data[UDMA_NB_UART] = {0}; + + +static void __pi_uart_handle_end_of_task(struct pi_task *task); + +/* IRQ handler. */ +static void __pi_uart_handler(void *arg); + +/* Enqueue a task in fifo. */ +static uint32_t __pi_uart_task_fifo_enqueue(struct uart_itf_data_s *data, + struct pi_task *task, + udma_channel_e channel); +/* Pop a task from fifo. */ +static struct pi_task *__pi_uart_task_fifo_pop(struct uart_itf_data_s *data, + udma_channel_e channel); + +/* Execute a transfer. */ +static void __pi_uart_copy_exec(struct uart_itf_data_s *data, + struct pi_task *task); + +/* Abort current transfer and flush pending transfers. */ +static void __pi_uart_rx_abort(struct uart_itf_data_s *data); + +static void __pi_uart_tx_abort(struct uart_itf_data_s *data); + +/* Configure UART. */ +static void __pi_uart_conf_set(struct uart_itf_data_s *data, + struct pi_uart_conf *conf); + +/* Enable channel. */ +static inline void __pi_uart_channel_enable(struct uart_itf_data_s *data, + udma_channel_e channel); + + +/* Setup config. */ +static inline void __pi_uart_conf_set(struct uart_itf_data_s *data, + struct pi_uart_conf *conf) +{ + uint32_t device_id = data->device_id; + /* clk divider for uart */ + uint32_t periph_freq = pi_freq_get(PI_FREQ_DOMAIN_PERIPH); + uint16_t clk_div = (uint16_t)(periph_freq / conf->baudrate_bps); + + UART_TRACE( + "UART(%ld) setting: baudrate=%ld CLK_DIV=%ld, RX_ENA=%ld, " + "TX_ENA=%ld, STOP_BITS=%ld, WORD_SIZE=%ld, PARITY_ENA=%ld\n", + device_id, conf->baudrate_bps, clk_div, conf->enable_rx, + conf->enable_tx, conf->stop_bit_count + 1, 5 + conf->word_size, + conf->parity_mode); + + hal_uart_setup_set(device_id, clk_div, conf->enable_rx, conf->enable_tx, + conf->stop_bit_count, conf->word_size, + conf->parity_mode); + + UART_TRACE("UART(%ld) setup=%lx\n", device_id, uart(device_id)->setup); +} + +void pi_uart_conf_init(struct pi_uart_conf *conf) +{ + conf->baudrate_bps = 115200; /* Default baudrate. */ + conf->parity_mode = PI_UART_PARITY_DISABLE; /* No parity. */ + conf->stop_bit_count = PI_UART_STOP_BITS_ONE; /* One stop bit. */ + conf->word_size = PI_UART_WORD_SIZE_8_BITS; /* 8 bits per word. */ + conf->enable_rx = 0; /* Disable RX. */ + conf->enable_tx = 0; /* Disable TX. */ + conf->uart_id = 0; /* Device ID. */ +} + +int pi_uart_open(struct pi_device *device) +{ + struct pi_uart_conf *conf = (struct pi_uart_conf *)device->config; + UART_TRACE("Open device id=%ld\n", conf->uart_id); + + struct uart_itf_data_s **device_data = + (struct uart_itf_data_s **)&(device->data); + + struct uart_itf_data_s *data = g_uart_itf_data[conf->uart_id]; + if (!data) { + /* Open device for first time. */ + data = (struct uart_itf_data_s *)pi_l2_malloc( + sizeof(struct uart_itf_data_s)); + if (!data) { + UART_TRACE_ERR("Driver data alloc failed !\n"); + return -11; + } + memset((void *)data, 0, sizeof(struct uart_itf_data_s)); + data->device_id = conf->uart_id; + data->nb_open = 1; + + UART_TRACE("Device id=%ld opened for first time\n", + data->device_id); + UART_TRACE("uart(%ld) %p\n", data->device_id, + uart(data->device_id)); + + UART_TRACE( + "Enable SoC events and set handlers : RX : %d -> %p | TX: %d -> %p\n", + SOC_EVENT_UDMA_UART_RX(data->device_id), + __pi_uart_handler, + SOC_EVENT_UDMA_UART_TX(data->device_id), + __pi_uart_handler); + /* Set handlers. */ + pi_fc_event_handler_set(SOC_EVENT_UDMA_UART_RX(data->device_id), + __pi_uart_handler); + pi_fc_event_handler_set(SOC_EVENT_UDMA_UART_TX(data->device_id), + __pi_uart_handler); + /* Enable SOC events propagation to FC. */ + hal_soc_eu_set_fc_mask(SOC_EVENT_UDMA_UART_RX(data->device_id)); + hal_soc_eu_set_fc_mask(SOC_EVENT_UDMA_UART_TX(data->device_id)); + + /* Disable UDMA CG and reset periph. */ + udma_ctrl_cg_disable(UDMA_UART_ID(data->device_id)); + UART_TRACE("Disable CG for uart(%ld): %ld %p %lx\n", + data->device_id, UDMA_UART_ID(data->device_id), + &(UDMA_GC->CG), UDMA_GC->CG); + + /* Configure UART. */ + __pi_uart_conf_set(data, conf); + + g_uart_itf_data[data->device_id] = data; + *device_data = g_uart_itf_data[data->device_id]; + } else { + data->nb_open++; + *device_data = g_uart_itf_data[data->device_id]; + UART_TRACE("Device id=%x already opened, now open=%d\n", + data->device_id, data->nb_open); + } + + UART_TRACE("Open status : %ld\n", 0); + return 0; +} + +void pi_uart_close(struct pi_device *device) +{ + struct uart_itf_data_s *data = (struct uart_itf_data_s *)device->data; + if (!data) + return; + + UART_TRACE("Close device id=%d\n", data->device_id); + /* Decrement number of devices opened. */ + data->nb_open--; + /* Free device and structure opened. */ + if (data->nb_open == 0) { + /* Make sure all bits are transferred. */ + while (hal_uart_tx_status_get(data->device_id)) + ; + + /* Wait some time, until data are sent. */ + for (volatile uint32_t i = 0; i < 1000; i++) + ; + + /* Disable both RX and TX channels and flush fifo. */ + __pi_uart_rx_abort(data); + __pi_uart_tx_abort(data); + + /* Clear handlers. */ + pi_fc_event_handler_clear( + SOC_EVENT_UDMA_UART_RX(data->device_id)); + pi_fc_event_handler_clear( + SOC_EVENT_UDMA_UART_TX(data->device_id)); + /* Disable SOC events propagation to FC. */ + hal_soc_eu_clear_fc_mask( + SOC_EVENT_UDMA_UART_RX(data->device_id)); + hal_soc_eu_clear_fc_mask( + SOC_EVENT_UDMA_UART_TX(data->device_id)); + + /* Free allocated data. */ + pi_l2_free(data, sizeof(struct uart_itf_data_s)); + g_uart_itf_data[data->device_id] = NULL; + } + device->data = NULL; +} + +/* Enable channel. */ +static inline void __pi_uart_channel_enable(struct uart_itf_data_s *data, + udma_channel_e channel) +{ + uint32_t device_id = data->device_id; + if (channel == RX_CHANNEL) { + hal_uart_rx_enable(device_id); + } else { + hal_uart_tx_enable(device_id); + } +} + +/* Abort current transfer and flush pending transfers. */ +static void __pi_uart_rx_abort(struct uart_itf_data_s *data) +{ + uint32_t device_id = data->device_id; + UART_TRACE( + "uart->setup %lx uart->status %lx\n" + "uart->udma_rx_saddr %lx uart->udma_rx_size %lx uart->udma_rx_cfg %lx\n", + uart(device_id)->setup, uart(device_id)->status, + uart(device_id)->rx.saddr, uart(device_id)->rx.size, + uart(device_id)->rx.cfg); + hal_uart_rx_disable(device_id); + hal_uart_rx_clear(device_id); + UART_TRACE( + "uart->setup %lx uart->status %lx\n" + "uart->udma_rx_saddr %lx uart->udma_rx_size %lx uart->udma_rx_cfg %lx\n", + uart(device_id)->setup, uart(device_id)->status, + uart(device_id)->rx.saddr, uart(device_id)->rx.size, + uart(device_id)->rx.cfg); + data->fifo_head[RX_CHANNEL] = NULL; + data->fifo_tail[RX_CHANNEL] = NULL; +} + +static void __pi_uart_tx_abort(struct uart_itf_data_s *data) +{ + uint32_t device_id = data->device_id; + UART_TRACE( + "uart->setup %lx uart->status %lx\n" + "uart->udma_tx_saddr %lx uart->udma_tx_size %lx uart->udma_tx_cfg %lx\n", + uart(device_id)->setup, uart(device_id)->status, + uart(device_id)->tx.saddr, uart(device_id)->tx.size, + uart(device_id)->tx.cfg); + hal_uart_tx_disable(device_id); + hal_uart_tx_clear(device_id); + UART_TRACE( + "uart->setup %lx uart->status %lx\n" + "uart->udma_tx_saddr %lx uart->udma_tx_size %lx uart->udma_tx_cfg %lx\n", + uart(device_id)->setup, uart(device_id)->status, + uart(device_id)->tx.saddr, uart(device_id)->tx.size, + uart(device_id)->tx.cfg); + data->fifo_head[TX_CHANNEL] = NULL; + data->fifo_tail[TX_CHANNEL] = NULL; +} + + +int pi_uart_ioctl(struct pi_device *device, uint32_t cmd, void *arg) +{ + struct uart_itf_data_s *data = (struct uart_itf_data_s *)device->data; + UART_TRACE("Ioctl device id=%ld cmd=%ld arg=%lx\n", data->device_id, + cmd, arg); + + uint32_t irq = __disable_irq(); + switch (cmd) { + case PI_UART_IOCTL_CONF_SETUP: + __pi_uart_conf_set(data, (struct pi_uart_conf *)arg); + break; + + case PI_UART_IOCTL_ABORT_RX: + __pi_uart_rx_abort(data); + break; + + case PI_UART_IOCTL_ABORT_TX: + __pi_uart_tx_abort(data); + break; + + case PI_UART_IOCTL_ENABLE_RX: + __pi_uart_channel_enable(data, RX_CHANNEL); + break; + + case PI_UART_IOCTL_ENABLE_TX: + __pi_uart_channel_enable(data, TX_CHANNEL); + break; + + default: + __restore_irq(irq); + return -1; + } + __restore_irq(irq); + return 0; +} + +static int32_t __pi_uart_copy(struct uart_itf_data_s *data, uint32_t l2_buf, + uint32_t size, udma_channel_e channel, + struct pi_task *task) +{ + uint32_t irq = __disable_irq(); + // Due to udma restriction, we need to use an L2 address, + // Since the stack is probably in FC tcdm, we have to either ensure + // users gave us an L2 pointer or alloc ourselves + if ((l2_buf & 0xFFF00000) != 0x1C000000) { + UART_TRACE_ERR("UART(%ld): Error wrong buffer %lx !\n", + data->device_id, l2_buf); + __restore_irq(irq); + return -11; + } + + task->data[0] = l2_buf; + task->data[1] = size; + task->data[2] = channel; + task->data[3] = 0; /* Repeat size ? */ + task->next = NULL; + uint8_t head = (uint8_t)__pi_uart_task_fifo_enqueue(data, task, channel); + if (head == 0) { + /* Execute the transfer. */ + UART_TRACE( + "UART(%ld): Execute %s transfer l2_buf=%lx size=%ld\n", + data->device_id, + ((task->data[2] == RX_CHANNEL) ? "RX" : "TX"), + task->data[0], task->data[1]); + __pi_uart_copy_exec(data, task); + } + /* TODO: insert compiler barrier here */ + __restore_irq(irq); + /* restore_irq(irq); */ + return 0; +} + +/* Execute transfer. */ +static void __pi_uart_copy_exec(struct uart_itf_data_s *data, + struct pi_task *task) +{ + uint32_t device_id = data->device_id; + uint32_t l2_buf = task->data[0]; + uint32_t size = task->data[1]; + udma_channel_e channel = task->data[2]; + uint32_t max_size = (uint32_t)UDMA_MAX_SIZE - 4; + if (task->data[1] > max_size) { + task->data[3] = task->data[1] - max_size; + size = max_size; + } + UART_TRACE("UART(%ld): Execute %s transfer l2_buf=%lx size=%ld\n", + device_id, ((channel == RX_CHANNEL) ? "RX" : "TX"), l2_buf, + size); + hal_uart_enqueue(device_id, l2_buf, size, 0, channel); +} + +static void __pi_uart_handle_end_of_task(struct pi_task *task) +{ + if (task->id == PI_TASK_NONE_ID) { + pi_task_release(task); + } else { + if (task->id == PI_TASK_CALLBACK_ID) { + pi_task_push(task); + } + } +} + +/* IRQ handler. */ +static void __pi_uart_handler(void *arg) +{ + uint32_t event = (uint32_t)arg; + uint32_t channel = event & 0x1; + uint32_t periph_id = + (event >> UDMA_CHANNEL_NB_EVENTS_LOG2) - UDMA_UART_ID(0); + UART_TRACE("Uart IRQ %d %d\n", periph_id, event); + + struct uart_itf_data_s *data = g_uart_itf_data[periph_id]; + struct pi_task *task = data->fifo_head[channel]; + /* Pending data on current transfer. */ + if (task->data[3] != 0) { + UART_TRACE("Reenqueue pending data on current transfer.\n"); + uint32_t max_size = (uint32_t)UDMA_MAX_SIZE - 4; + task->data[0] += max_size; + task->data[1] -= max_size; + __pi_uart_copy_exec(data, task); + } else { + UART_TRACE( + "No pending data on current transfer.\n Handle end of " + "current transfer and pop and start a new transfer if there is.\n"); + task = __pi_uart_task_fifo_pop(data, channel); + __pi_uart_handle_end_of_task(task); + task = data->fifo_head[channel]; + if (task != NULL) { + __pi_uart_copy_exec(data, task); + } + } +} + +/* Enqueue a task in fifo. */ +static inline uint32_t __pi_uart_task_fifo_enqueue(struct uart_itf_data_s *data, + struct pi_task *task, + udma_channel_e channel) +{ + uint8_t head = 0; + uint32_t irq = __disable_irq(); + if (data->fifo_head[channel] == NULL) { + /* Empty fifo. */ + /* Execute the transfer. */ + data->fifo_head[channel] = task; + data->fifo_tail[channel] = data->fifo_head[channel]; + head = 0; + } else { + /* Transfer on going, enqueue this one to the list. */ + data->fifo_tail[channel]->next = task; + data->fifo_tail[channel] = data->fifo_tail[channel]->next; + head = 1; + } + __restore_irq(irq); + return head; +} + +/* Pop a task from fifo. */ +static inline struct pi_task * +__pi_uart_task_fifo_pop(struct uart_itf_data_s *data, udma_channel_e channel) +{ + uint32_t irq = __disable_irq(); + struct pi_task *task_to_return = NULL; + if (data->fifo_head[channel] != NULL) { + task_to_return = data->fifo_head[channel]; + data->fifo_head[channel] = data->fifo_head[channel]->next; + if (data->fifo_head[channel] == NULL) { + data->fifo_tail[channel] = NULL; + } + } + __restore_irq(irq); + return task_to_return; +} + +int pi_uart_write(struct pi_device *device, void *buffer, uint32_t size) +{ + int32_t status = 0; + pi_task_t task_block = {0}; + pi_task_block(&task_block); + status = pi_uart_write_async(device, buffer, size, &task_block); + pi_task_wait_on(&task_block); + pi_task_destroy(&task_block); + return status; +} + +int pi_uart_write_byte(struct pi_device *device, uint8_t *byte) +{ + int32_t status = 0; + pi_task_t task_block = {0}; + pi_task_block(&task_block); + status = pi_uart_write_async(device, byte, 1, &task_block); + pi_task_wait_on(&task_block); + pi_task_destroy(&task_block); + return status; +} + +int pi_uart_write_byte_async(struct pi_device *device, uint8_t *byte, + pi_task_t *callback) +{ + return pi_uart_write_async(device, byte, 1, callback); +} + +int pi_uart_write_async(struct pi_device *device, void *buffer, uint32_t size, + pi_task_t *callback) +{ + struct uart_itf_data_s *data = (struct uart_itf_data_s *)device->data; + uint32_t l2_buf = (uint32_t)buffer; + UART_TRACE("UART(%ld): Write l2_buf=%lx size=%ld\n", data->device_id, + l2_buf, size); + return __pi_uart_copy(data, l2_buf, size, TX_CHANNEL, callback); +} + +int pi_uart_read(struct pi_device *device, void *buffer, uint32_t size) +{ + int32_t status = 0; + pi_task_t task_block = {0}; + pi_task_block(&task_block); + status = pi_uart_read_async(device, buffer, size, &task_block); + pi_task_wait_on(&task_block); + pi_task_destroy(&task_block); + return status; +} + +int pi_uart_read_byte(struct pi_device *device, uint8_t *byte) +{ + int32_t status = 0; + pi_task_t task_block = {0}; + pi_task_block(&task_block); + status = pi_uart_read_async(device, byte, 1, &task_block); + pi_task_wait_on(&task_block); + pi_task_destroy(&task_block); + return status; +} + +int pi_uart_read_async(struct pi_device *device, void *buffer, uint32_t size, + pi_task_t *callback) +{ + struct uart_itf_data_s *data = (struct uart_itf_data_s *)device->data; + uint32_t l2_buf = (uint32_t)buffer; + UART_TRACE("UART(%ld): Read l2_buf=%lx size=%ld\n", data->device_id, + l2_buf, size); + return __pi_uart_copy(data, l2_buf, size, RX_CHANNEL, callback); +} + +/* unimplemented cluster functions */ +static inline void pi_cl_uart_write_wait(pi_cl_uart_req_t *req) +{ + abort(); +} + +static inline void pi_cl_uart_read_wait(pi_cl_uart_req_t *req) +{ + abort(); +} diff --git a/rtos/freertos/abstraction_layer_spi_freertos/include/abstraction_layer_spi_FREERTOS.h b/rtos/freertos/abstraction_layer_spi_freertos/include/abstraction_layer_spi_FREERTOS.h new file mode 100644 index 00000000..2ddd1030 --- /dev/null +++ b/rtos/freertos/abstraction_layer_spi_freertos/include/abstraction_layer_spi_FREERTOS.h @@ -0,0 +1,65 @@ +/* + * Copyright 2020 GreenWaves Technologies + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +/**----------------------------------------------------------------------------------------------------------------------- + * ? ABOUT + * @author : Orlando Nico, GreenWaves Technologies, Robert Balas + * @email : nico.orlando@studio.unibo.it, balasr@iis.ee.ethz.ch + * @repo : pulp-sdk/?/abstraction_layer_spi_freertos + * @createdOn : 29/12/2021 + * @description : Abstraction Layer SPI for FreeRTOS + *-----------------------------------------------------------------------------------------------------------------------**/ + +/**================================================================================================ + ** INCLUDE + *================================================================================================**/ +#include "common_spi.h" + +/**================================================================================================ + ** DEFINE + *================================================================================================**/ +#define UDMA_CORE_TX_CFG_EN(val) \ + (((uint32_t)(((uint32_t)(val)) << UDMA_CORE_TX_CFG_EN_SHIFT)) & UDMA_CORE_TX_CFG_EN_MASK) +#define UDMA_CORE_TX_CFG_DATASIZE(val) \ + (((uint32_t)(((uint32_t)(val)) << UDMA_CORE_TX_CFG_DATASIZE_SHIFT)) & \ + UDMA_CORE_TX_CFG_DATASIZE_MASK) +#define SPIM_CS_DATA_GET_DRV_DATA(cs_data) (cs_data->drv_data) + +/**================================================================================================ + ** STRUCT + *================================================================================================**/ + + + +/**================================================================================================ + ** PROTOTYPE FUNCTION + *================================================================================================**/ +void spim_eot_handler(void *arg); +void spim_tx_handler(void *arg); +void spim_rx_handler(void *arg); +int __pi_spi_open(struct spim_cs_data **cs_data, struct pi_spi_conf *conf); +void __pi_spi_close(struct spim_cs_data *cs_data, struct pi_spi_conf *conf); +void __pi_spim_exec_next_transfer(pi_task_t *task); +void __pi_spi_send_async(struct spim_cs_data *cs_data, void *data, size_t len, pi_spi_flags_e flags, pi_task_t *task); +void __pi_spi_receive_async(struct spim_cs_data *cs_data, void *data, size_t len, pi_spi_flags_e flags, pi_task_t *task); +void __pi_spi_xfer_async(struct spim_cs_data *cs_data, void *tx_data, void *rx_data, size_t len, pi_spi_flags_e flags, pi_task_t *task); +void __pi_spi_receive_async_with_ucode(struct spim_cs_data *cs_data, void *data, size_t len, pi_spi_flags_e flags, int ucode_size, void *ucode, pi_task_t *task); +void __pi_spi_send_async_with_ucode(struct spim_cs_data *cs_data, void *data, size_t len, pi_spi_flags_e flags, int ucode_size, void *ucode, pi_task_t *task); +void __spim_execute_callback(void *arg); +void system_core_clock_update(void); +uint32_t system_core_clock_get(void); diff --git a/rtos/freertos/abstraction_layer_spi_freertos/src/abstraction_layer_spi_FREERTOS.c b/rtos/freertos/abstraction_layer_spi_freertos/src/abstraction_layer_spi_FREERTOS.c new file mode 100644 index 00000000..50b3b557 --- /dev/null +++ b/rtos/freertos/abstraction_layer_spi_freertos/src/abstraction_layer_spi_FREERTOS.c @@ -0,0 +1,695 @@ +/* + * Copyright 2020 GreenWaves Technologies + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +/**----------------------------------------------------------------------------------------------------------------------- + * ? ABOUT + * @author : Orlando Nico, GreenWaves Technologies, Robert Balas + * @email : nico.orlando@studio.unibo.it, balasr@iis.ee.ethz.ch + * @repo : pulp-sdk/?/abstraction_layer_spi_freertos + * @createdOn : 29/12/2021 + * @description : Abstraction Layer SPI for FreeRTOS + *-----------------------------------------------------------------------------------------------------------------------**/ + +/**================================================================================================ + ** INCLUDE + *================================================================================================**/ +#include "abstraction_layer_spi.h" + +/**================================================================================================ + ** GLOBAL VARIABLE + *================================================================================================**/ +struct spim_driver_data *__g_spim_drv_data[UDMA_NB_SPIM] = {0}; + +/**================================================================================================ + ** FUNCTION + *================================================================================================**/ +void __pi_spi_receive_async(struct spim_cs_data *cs_data, void *data, size_t len, + pi_spi_flags_e flags, pi_task_t *task) +{ + DBG_PRINTF("...start -> __pi_spi_receive_async...\n"); + // SPIM_CS_DATA_GET_DRV_DATA(cs_data) = (cs_data->drv_data) + struct spim_driver_data *drv_data = SPIM_CS_DATA_GET_DRV_DATA(cs_data); + int qspi = (flags & (0x3 << 2)) == PI_SPI_LINES_QUAD; + // Choose the type of cs mode, see enum "pi_spi_flags_e" to understand better. + int cs_mode = (flags >> 0) & 0x3; + + int device_id = drv_data->device_id; + uint32_t cfg = cs_data->cfg; + DBG_PRINTF("%s:%s:%d: core clock:%" PRIu32 ", baudrate:%" PRIu32 ", div=%" PRIu32 + ", udma_cmd cfg =%lx, qpi=%d\n", + __FILE__, __func__, __LINE__, system_core_clock_get(), cs_data->max_baudrate, + system_core_clock_get() / cs_data->max_baudrate, cfg, qspi); + + int buffer_size = (len + 7) >> 3; + + if (len > 8192 * 8) { + DBG_PRINTF("%s:%s:%d: Transaction splitting unimplemented, too large", __FILE__, + __func__, __LINE__); + abort(); /* TODO: unimplemented transaction splitting */ + } + + DBG_PRINTF("%s:%s:%d: udma_cmd = %p\n", __FILE__, __func__, __LINE__, + &(cs_data->udma_cmd[0])); + uint32_t irq = deactive_irq(); + + uint8_t bitsword = 0; + uint8_t UDMA_CORE_CFG = 0; + uint32_t byte_align = 0; + + if (cs_data->wordsize == PI_SPI_WORDSIZE_8) { + bitsword = 8; + UDMA_CORE_CFG = UDMA_CORE_CFG_DATASIZE_8; // 0x0 + byte_align = (cs_data->wordsize) && cs_data->big_endian; + + } else if (cs_data->wordsize == PI_SPI_WORDSIZE_16) { + bitsword = 16; + UDMA_CORE_CFG = UDMA_CORE_CFG_DATASIZE_16; // 0x1 + byte_align = (cs_data->wordsize) && cs_data->big_endian; + } else { + bitsword = 32; + UDMA_CORE_CFG = UDMA_CORE_CFG_DATASIZE_32; // 0x2 + byte_align = (cs_data->wordsize) && cs_data->big_endian; + } + + DBG_PRINTF("%s:%s:%d: bitsword = %u\n", __FILE__, __func__, __LINE__, bitsword); + DBG_PRINTF("%s:%s:%d: UDMA_CORE_CFG = %u\n", __FILE__, __func__, __LINE__, UDMA_CORE_CFG); + + if (!drv_data->end_of_transfer) { + cs_data->udma_cmd[0] = cfg; + cs_data->udma_cmd[1] = SPI_CMD_SOT(cs_data->cs); + cs_data->udma_cmd[2] = SPI_CMD_RX_DATA(len / bitsword, SPI_CMD_1_WORD_PER_TRANSF, + bitsword, qspi, SPI_CMD_MSB_FIRST); + cs_data->udma_cmd[3] = SPI_CMD_EOT(1, cs_mode == PI_SPI_CS_KEEP); + + drv_data->end_of_transfer = task; + drv_data->repeat_transfer = NULL; + + // number of byteword + uint32_t rx_conf = + UDMA_CORE_TX_CFG_EN(1) | UDMA_CORE_TX_CFG_DATASIZE(UDMA_CORE_CFG); + + /* receive data stream with 32-bit data size */ + spim_enqueue_channel(SPIM(device_id), (uint32_t)data, buffer_size, rx_conf, + RX_CHANNEL); + // number of byteword + uint32_t cmd_conf = UDMA_CORE_TX_CFG_EN(1) | + UDMA_CORE_TX_CFG_DATASIZE(UDMA_CORE_CFG_DATASIZE_32); + /* send command stream with 32-bit data size */ + spim_enqueue_channel(SPIM(device_id), (uint32_t)cs_data->udma_cmd, + 4 * sizeof(uint32_t), cmd_conf, COMMAND_CHANNEL); + DBG_PRINTF("%s:%s:%d: cmd_conf= %u\n", __FILE__, __func__, __LINE__, cmd_conf); + DBG_PRINTF("%s:%s:%d: rx_conf = %u\n", __FILE__, __func__, __LINE__, rx_conf); + } else { + struct spim_transfer transfer; + transfer.data = data; + transfer.flags = flags; + transfer.len = len; + transfer.cfg_cmd = cfg; + transfer.byte_align = byte_align; + transfer.is_send = 0; + __pi_spim_drv_fifo_enqueue(cs_data, &transfer, task); + } + active_irq(irq); + DBG_PRINTF("...end -> __pi_spi_receive_async...\n"); +} + +void __pi_spi_send_async(struct spim_cs_data *cs_data, void *data, size_t len, pi_spi_flags_e flags, + pi_task_t *task) +{ + DBG_PRINTF("...start -> __pi_spi_send_async...\n"); + struct spim_driver_data *drv_data = SPIM_CS_DATA_GET_DRV_DATA(cs_data); + int qspi = (flags & (0x3 << 2)) == PI_SPI_LINES_QUAD; + // Choose the type of cs mode, see enum "pi_spi_flags_e" to understand better. + int cs_mode = (flags >> 0) & 0x3; + + // Which SPI interface am I using. + int device_id = drv_data->device_id; + uint32_t cfg = cs_data->cfg; // SPI_CMD_CFG(...) + DBG_PRINTF("%s:%s:%d: core clock:%" PRIu32 ", baudrate:%" PRIu32 ", div=%" PRIu32 + ", udma_cmd cfg =%lx, qpi=%d\n", + __FILE__, __func__, __LINE__, system_core_clock_get(), cs_data->max_baudrate, + system_core_clock_get() / cs_data->max_baudrate, cfg, qspi); + + /* buffer size */ + int buffer_size = (len + 7) >> 3; + + if (len > 8192 * 8) { + DBG_PRINTF("%s:%s:%d: Transaction splitting unimplemented, too large", __FILE__, + __func__, __LINE__); + abort(); /* TODO: unimplemented transaction splitting */ + } + + // Address of the command buffer to be sent to the uDMA + DBG_PRINTF("%s:%s:%d: udma_cmd = %p\n", __FILE__, __func__, __LINE__, + &(cs_data->udma_cmd[0])); + uint32_t irq = disable_irq(); + /* check if we already have a transfer ongoing */ + + uint8_t bitsword = 0; + uint8_t UDMA_CORE_CFG = 0; + uint32_t byte_align = 0; + // uint32_t byte_align = (cs_data->wordsize == PI_SPI_WORDSIZE_32) && cs_data->big_endian; + + if (cs_data->wordsize == PI_SPI_WORDSIZE_8) { + bitsword = 8; + UDMA_CORE_CFG = UDMA_CORE_CFG_DATASIZE_8; // 0x0 + byte_align = (cs_data->wordsize) && cs_data->big_endian; + + } else if (cs_data->wordsize == PI_SPI_WORDSIZE_16) { + bitsword = 16; + UDMA_CORE_CFG = UDMA_CORE_CFG_DATASIZE_16; // 0x1 + byte_align = (cs_data->wordsize) && cs_data->big_endian; + } else { + bitsword = 32; + UDMA_CORE_CFG = UDMA_CORE_CFG_DATASIZE_32; // 0x2 + byte_align = (cs_data->wordsize) && cs_data->big_endian; + } + + DBG_PRINTF("%s:%s:%d: bitsword = %u\n", __FILE__, __func__, __LINE__, bitsword); + DBG_PRINTF("%s:%s:%d: UDMA_CORE_CFG = %u\n", __FILE__, __func__, __LINE__, UDMA_CORE_CFG); + DBG_PRINTF("%s:%s:%d: device_id = %d\n", __FILE__, __func__, __LINE__, device_id); + + if (!drv_data->end_of_transfer) { /* enqueue the transfer */ + cs_data->udma_cmd[0] = cfg; + cs_data->udma_cmd[1] = SPI_CMD_SOT(cs_data->cs); + cs_data->udma_cmd[2] = SPI_CMD_TX_DATA((len / bitsword), SPI_CMD_1_WORD_PER_TRANSF, + bitsword, qspi, SPI_CMD_MSB_FIRST); + cs_data->udma_cmd[3] = SPI_CMD_EOT(1, cs_mode == PI_SPI_CS_KEEP); + + drv_data->end_of_transfer = task; + drv_data->repeat_transfer = NULL; + + uint32_t cmd_conf = UDMA_CORE_TX_CFG_EN(1) | + UDMA_CORE_TX_CFG_DATASIZE(UDMA_CORE_CFG_DATASIZE_32); + /* send command stream with 32-bit data size */ + spim_enqueue_channel(SPIM(device_id), (uint32_t)cs_data->udma_cmd, + 4 * sizeof(uint32_t), cmd_conf, COMMAND_CHANNEL); + + uint32_t tx_conf = + UDMA_CORE_TX_CFG_EN(1) | UDMA_CORE_TX_CFG_DATASIZE(UDMA_CORE_CFG); + /* send data stream with 32-bit data size */ + spim_enqueue_channel(SPIM(device_id), (uint32_t)data, buffer_size, tx_conf, + TX_CHANNEL); + DBG_PRINTF("%s:%s:%d: cmd_conf = %u\n", __FILE__, __func__, __LINE__, cmd_conf); + DBG_PRINTF("%s:%s:%d: tx_conf = %u\n", __FILE__, __func__, __LINE__, tx_conf); + } else { /* a transfer is running, append to pending transfers queue */ + struct spim_transfer transfer; + transfer.data = data; + transfer.flags = flags; + transfer.len = len; + transfer.cfg_cmd = cfg; + transfer.byte_align = byte_align; + transfer.is_send = 1; + __pi_spim_drv_fifo_enqueue(cs_data, &transfer, task); + } + __active_irq(irq); + DBG_PRINTF("...end -> __pi_spi_send_async...\n"); +} + +int __pi_spi_open(struct spim_cs_data **cs_data, struct pi_spi_conf *conf); +{ + DBG_PRINTF("...start -> pi_spi_open...\n"); + + uint32_t irq = deactive_irq(); + /* int status = __pi_spi_open((struct spim_cs_data **)(&device->data), + * conf); */ + + /* TODO: hacked */ + int status = 0; + /* TODO: paste beg */ + + // disable clock gating for said device + unsigned char spi_id = conf->itf; + int periph_id = UDMA_SPIM_ID(spi_id); + + DBG_PRINTF("%s:%s:%d: periph_id = %u\n", __FILE__, __func__, __LINE__, periph_id); + + udma_ctrl_cg_disable(UDMA_SPIM_ID(conf->itf)); + + hal_soc_eu_set_fc_mask(SOC_EVENT_UDMA_SPIM_EOT(conf->itf)); + + pi_fc_event_handler_set(SOC_EVENT_UDMA_SPIM_EOT(conf->itf), spim_eot_handler); + pi_fc_event_handler_set(SOC_EVENT_UDMA_SPIM_TX(conf->itf), spim_tx_handler); + pi_fc_event_handler_set(SOC_EVENT_UDMA_SPIM_RX(conf->itf), spim_rx_handler); + + /* + ** spim_driver_data keeps information for each spi interface. + */ + // Take care of driver data + struct spim_driver_data *drv_data; + if (__g_spim_drv_data[conf->itf]) { + drv_data = __g_spim_drv_data[conf->itf]; + } else { + + // Do this to define a node in a list. The list is a dynamic object. + __g_spim_drv_data[conf->itf] = pi_default_malloc(sizeof(struct spim_driver_data)); + memset(__g_spim_drv_data[conf->itf], 0, sizeof(struct spim_driver_data)); + drv_data = __g_spim_drv_data[conf->itf]; + // Do this to define a node in a list. The list is a dynamic object. + drv_data->drv_fifo = pi_default_malloc(sizeof(struct spim_drv_fifo)); + memset(drv_data->drv_fifo, 0, sizeof(struct spim_drv_fifo)); + // controllo che il puntatore sia = 0 + if (!drv_data->drv_fifo) { + active_irq(irq); + return -1; + } + drv_data->device_id = conf->itf; + } + /* + ** Number of open SPI interfaces + */ + drv_data->nb_open++; + + // Take care of cs data + *cs_data = __pi_spim_get_cs_data(drv_data, conf->cs); + + if (!*cs_data) { // if (*cs_data == 0) + uint32_t clk_div = __pi_spi_clk_div_get(conf->max_baudrate); + // alloc a cs data, need to be in udma reachable ram + struct spim_cs_data *_cs_data = pi_data_malloc(sizeof(struct spim_cs_data)); + if (_cs_data == NULL) { + DBG_PRINTF("[%s] _cs_data alloc failed\n", __func__); + active_irq(irq); + return -2; + } + if (clk_div > 0xFF) { + DBG_PRINTF("[%s] clk_div, %" PRIu32 + ", does not fit into 8 bits. SoC frequency too high.\n", + __func__, clk_div); + active_irq(irq); + return -3; + } + + memset(_cs_data, 0, sizeof(struct spim_cs_data)); + _cs_data->max_baudrate = conf->max_baudrate; + _cs_data->polarity = conf->polarity; + _cs_data->phase = conf->phase; + _cs_data->big_endian = conf->big_endian; + _cs_data->wordsize = conf->wordsize; + _cs_data->cs = conf->cs; + _cs_data->cfg = SPI_CMD_CFG(clk_div, _cs_data->phase, _cs_data->polarity); + // _cs_data->cfg = SPI_CMD_CFG(1,0,0); + *cs_data = _cs_data; + // I insert a new element in the cs_data list + __pi_spim_cs_data_add(drv_data, _cs_data); + } + DBG_PRINTF("%s:%d\n", __func__, __LINE__); + + /* TODO: paste end */ + + active_irq(irq); + DBG_PRINTF("...end -> pi_spi_open...\n"); + return status; +} + +void __pi_spi_close(struct spim_cs_data *cs_data, struct pi_spi_conf *conf); +{ + DBG_PRINTF("...start -> pi_spi_close...\n"); + + uint32_t irq = deactive_irq(); + /* TODO: paste beg */ + struct spim_driver_data *drv_data = cs_data->drv_data; + __pi_spim_cs_data_del(drv_data, cs_data->cs); + /* + ** Number of open SPI interfaces + */ + drv_data->nb_open--; + + if (drv_data->nb_open == 0) { + /* reactivate clock gating for said device */ + udma_ctrl_cg_enable(UDMA_SPIM_ID(drv_data->device_id)); + hal_soc_eu_clear_fc_mask(SOC_EVENT_UDMA_SPIM_EOT(drv_data->device_id)); + pi_fc_event_handler_clear(SOC_EVENT_UDMA_SPIM_EOT(drv_data->device_id)); + __g_spim_drv_data[drv_data->device_id] = NULL; + pi_default_free(drv_data->drv_fifo, sizeof(drv_data->drv_fifo)); + pi_default_free(drv_data, sizeof(drv_data)); + + active_irq(irq); + return; + } + pi_data_free(cs_data, sizeof(cs_data)); + /* TODO: moved to end return drv_data->nb_open; */ + /* TODO: paste end */ + + active_irq(irq); + DBG_PRINTF("...end -> pi_spi_close...\n"); + return; +} + +void spim_eot_handler(void *arg) +{ + DBG_PRINTF("...start -> spim_eot_handler...\n"); + uint32_t event = (uint32_t)arg; + uint32_t channel = event & 0x1; + /* TODO: remove is garbage */ + // EOT is simply 22 + id in GAP8 + uint32_t periph_id = (event - SOC_EVENT_UDMA_SPIM_EOT(0)); + DBG_PRINTF("%s:%s:%d periph_id=%u\n", __FILE__, __func__, __LINE__, periph_id); + + struct spim_driver_data *drv_data = __g_spim_drv_data[periph_id]; + + if (drv_data->repeat_transfer) { + DBG_PRINTF("%s:%s:%d\n", __FILE__, __func__, __LINE__); + // TODO: reenqueue the rest of the transfer + DBG_PRINTF("Large transfers (>8k) are not implemented yet\n"); + return; + } + pi_task_t *task = drv_data->end_of_transfer; + DBG_PRINTF("%s:%s:%d\n", __FILE__, __func__, __LINE__); + if (task != NULL) { + if (task->id == PI_TASK_NONE_ID) { + DBG_PRINTF("%s:%s:%d release task %p\n", __FILE__, __func__, __LINE__, + task); + pi_task_release(task); + } else { + /* TODO: hacked away */ + /* DBG_PRINTF("%s:%d push task %p with id:%x in + * sched%p\n", */ + /* __func__, __LINE__, task, task->id, */ + /* default_sched); */ + DBG_PRINTF("%s:%s:%d periph id:%" PRIu32 "\n", __FILE__, __func__, __LINE__, + periph_id); + /* TODO: hacked away */ + /* pmsis_event_push(default_sched, task); */ + DBG_PRINTF("%s:%s:%d\n", __FILE__, __func__, __LINE__); + } + drv_data->end_of_transfer = NULL; + } +#ifdef DEBUG + else { + DBG_PRINTF("%s:%s:%d next task %d\n", __FILE__, __func__, __LINE__, + task == NULL ? 0 : 1); + } +#endif + // I put the next item on the list at the top of the list. + task = __pi_spim_drv_fifo_pop(drv_data); + + DBG_PRINTF("%s:%s:%d next task %d\n", __FILE__, __func__, __LINE__, task == NULL ? 0 : 1); + DBG_PRINTF("%s:%s:%d __pi_spim_drv_fifo_pop(%p)\n", __FILE__, __func__, __LINE__, drv_data); + DBG_PRINTF("%s:%s:%d new task %p\n", __FILE__, __func__, __LINE__, &task); + if (task) { + __pi_spim_exec_next_transfer(task); + DBG_PRINTF("%s:%s:%d __pi_spim_exec_next_transfer(%p)\n", __FILE__, __func__, + __LINE__, task); + } + DBG_PRINTF("...end -> spim_eot_handler...\n"); +} + +/* TODO: REMOVE THOSE */ +void spim_tx_handler(void *arg) +{ // if we're here, it's cs keep related + DBG_PRINTF("...start -> spim_tx_handler...\n"); + uint32_t event = (uint32_t)arg; + uint32_t channel = event & 0x1; + uint32_t periph_id = (event >> UDMA_CHANNEL_NB_EVENTS_LOG2) - UDMA_SPIM_ID(0); + hal_soc_eu_clear_fc_mask(SOC_EVENT_UDMA_SPIM_TX(periph_id)); + arg = (void *)(SOC_EVENT_UDMA_SPIM_EOT(0) + periph_id); + DBG_PRINTF("%s:%s:%d periph_id %" PRIu32 " arg:%p\n", __FILE__, __func__, __LINE__, + periph_id, arg); + spim_eot_handler(arg); + DBG_PRINTF("%s:%s:%d\n", __FILE__, __func__, __LINE__); + DBG_PRINTF("...end -> spim_tx_handler...\n"); +} + +/* TODO: REMOVE THOSE and the handler */ +void spim_rx_handler(void *arg) +{ // if we're here, it's cs keep related + DBG_PRINTF("...start -> spim_rx_handler...\n"); + uint32_t event = (uint32_t)arg; + uint32_t channel = event & 0x1; + uint32_t periph_id = (event >> UDMA_CHANNEL_NB_EVENTS_LOG2) - UDMA_SPIM_ID(0); + hal_soc_eu_clear_fc_mask(SOC_EVENT_UDMA_SPIM_RX(periph_id)); + arg = (void *)(SOC_EVENT_UDMA_SPIM_EOT(0) + periph_id); + DBG_PRINTF("%s:%s:%d periph_id %" PRIu32 " arg:%p\n", __FILE__, __func__, __LINE__, + periph_id, arg); + spim_eot_handler(arg); + DBG_PRINTF("%s:%s:%d\n", __FILE__, __func__, __LINE__); + DBG_PRINTF("...end -> spim_rx_handler...\n"); +} + +// TODO: prepare pseudo exec for delegate +void __pi_spim_execute_callback(void *arg) +{ + return; +} + +void __pi_spim_exec_next_transfer(pi_task_t *task) +{ + printf("__pi_spim_exec_next_transfer\n"); + DBG_PRINTF("...start -> __pi_spim_exec_next_transfer...\n"); + DBG_PRINTF("%s:%s:%d\n", __FILE__, __func__, __LINE__); + if (task->data[5] == 1) { // if is send + // cs data | data buffer | len | flags | end of transfer task + __pi_spi_send_async((struct spim_cs_data *)task->data[0], (void *)task->data[1], + task->data[2], task->data[3], (pi_task_t *)task->data[4]); + } else if (task->data[5] == 0) { + // cs data | data buffer | len | flags | end of transfer task + __pi_spi_receive_async((struct spim_cs_data *)task->data[0], (void *)task->data[1], + task->data[2], task->data[3], (pi_task_t *)task->data[4]); + } else { // task->data[5] contains rx data addr + // cs data | tx buffer | rx buffer| len | flags | end of + // transfer task + __pi_spi_xfer_async((struct spim_cs_data *)task->data[0], (void *)task->data[5], + (void *)task->data[1], task->data[2], task->data[3], + (pi_task_t *)task->data[4]); + } + DBG_PRINTF("...end -> __pi_spim_exec_next_transfer...\n"); +} + +void __pi_spi_xfer_async(struct spim_cs_data *cs_data, void *tx_data, void *rx_data, size_t len, + pi_spi_flags_e flags, pi_task_t *task) +{ + /* TODO: port spi_xfer async */ + abort(); +#if 0 + struct spim_driver_data *drv_data = SPIM_CS_DATA_GET_DRV_DATA(cs_data); + int qspi = (flags & (0x3 << 2)) == PI_SPI_LINES_QUAD; + int cs_mode = (flags >> 0) & 0x3; + + int device_id = drv_data->device_id; + uint32_t cfg = cs_data->cfg; + DBG_PRINTF("%s:%d: core clock:%"PRIu32", baudrate:%"PRIu32", div=%"PRIu32", udma_cmd cfg =%d\n", + __func__,__LINE__,system_core_clock_get(),cs_data->max_baudrate, + system_core_clock_get() / cs_data->max_baudrate,cfg); + uint32_t byte_align = (cs_data->wordsize == PI_SPI_WORDSIZE_32) + && cs_data->big_endian; + int size = (len + 7) >> 3; + + int cmd_id = 0; + + uint32_t irq = deactive_irq(); + if(!drv_data->end_of_transfer) + { + cs_data->udma_cmd[0] = cfg; + cs_data->udma_cmd[1] = SPI_CMD_SOT(cs_data->cs); + cs_data->udma_cmd[2] = SPI_CMD_FULL_DUPL(len, byte_align); + drv_data->end_of_transfer = task; + drv_data->repeat_transfer = NULL; + if(cs_mode == PI_SPI_CS_AUTO) + { + spim_enqueue_channel(SPIM(device_id), (uint32_t)cs_data->udma_cmd, + 3*(sizeof(uint32_t)), UDMA_CORE_TX_CFG_EN(1), + TX_CHANNEL); + spim_enqueue_channel(SPIM(device_id), (uint32_t)rx_data, size, + UDMA_CORE_RX_CFG_EN(1) | (2<<1), RX_CHANNEL); + spim_enqueue_channel(SPIM(device_id), (uint32_t)tx_data, + size, UDMA_CORE_TX_CFG_EN(1), + TX_CHANNEL); + // wait until TX channel is free + while((hal_read32((void*)&(SPIM(device_id)->udma.tx_cfg)) + & (1<<5))>>5) + { + DBG_PRINTF("%s:%d\n",__func__,__LINE__); + } + // send EOT + cs_data->udma_cmd[3] = SPI_CMD_EOT(1); + spim_enqueue_channel(SPIM(device_id), + (uint32_t)&cs_data->udma_cmd[3], sizeof(uint32_t), + UDMA_CORE_TX_CFG_EN(1), TX_CHANNEL); + } + else + { + spim_enqueue_channel(SPIM(device_id), (uint32_t)cs_data->udma_cmd, + 3*(sizeof(uint32_t)), UDMA_CORE_TX_CFG_EN(1), + TX_CHANNEL); + // wait until TX channel is free + while((hal_read32((void*)&(SPIM(device_id)->udma.tx_cfg)) + & (1<<5))>>5) + { + DBG_PRINTF("%s:%d\n",__func__,__LINE__); + } + // activate rx event + hal_soc_eu_set_fc_mask(SOC_EVENT_UDMA_SPIM_RX(device_id)); + // NOTE: both transfers have the same size + // does not matter which one we wait + spim_enqueue_channel(SPIM(device_id), (uint32_t)rx_data, size, + UDMA_CORE_RX_CFG_EN(1) | (2<<1), RX_CHANNEL); + spim_enqueue_channel(SPIM(device_id), (uint32_t)tx_data, + size, UDMA_CORE_TX_CFG_EN(1), + TX_CHANNEL); + } + + } + else + { + struct spim_transfer transfer; + transfer.data = rx_data; + transfer.flags = flags; + transfer.len = len; + transfer.cfg_cmd = cfg; + transfer.byte_align = byte_align; + transfer.is_send = (uint32_t) tx_data; // sending a pointer means xfer + __pi_spim_drv_fifo_enqueue(cs_data, &transfer, task); + } + active_irq(irq); +#endif +} + +void __pi_spi_receive_async_with_ucode(struct spim_cs_data *cs_data, void *data, size_t len, + pi_spi_flags_e flags, int ucode_size, void *ucode, + pi_task_t *task) +{ + /* TODO: port spi_async with ucode */ + abort(); +#if 0 + struct spim_driver_data *drv_data = SPIM_CS_DATA_GET_DRV_DATA(cs_data); + int qspi = ((flags >> 2) & 0x3) == ((PI_SPI_LINES_QUAD>>2) & 0x03); + int cs_mode = (flags >> 0) & 0x3; + + int device_id = drv_data->device_id; + uint32_t byte_align = (cs_data->wordsize == PI_SPI_WORDSIZE_32) + && cs_data->big_endian; + uint32_t cfg = cs_data->cfg; + DBG_PRINTF("%s:%d: core clock:%d, baudrate:%d, div=%d, byte_align =%lx, cfg= %lx, qspi=%lx\n", + __func__,__LINE__,system_core_clock_get(),cs_data->max_baudrate, + system_core_clock_get() / cs_data->max_baudrate,byte_align,cfg,qspi); + int size = (len + 7) >> 3; + + int cmd_id = 0; + + uint32_t irq = deactive_irq(); + if(!drv_data->end_of_transfer) + { + if(cs_mode != PI_SPI_CS_AUTO) + { + hal_soc_eu_set_fc_mask(SOC_EVENT_UDMA_SPIM_RX(device_id)); + } + drv_data->end_of_transfer = task; + drv_data->repeat_transfer = NULL; + if(((0xFFF00000 & (uint32_t)ucode)!= 0x1c000000)) + { + memcpy(&(cs_data->udma_cmd[0]), ucode, ucode_size); + spim_enqueue_channel(SPIM(device_id), (uint32_t)data, size, + UDMA_CORE_RX_CFG_EN(1) | (2<<1), RX_CHANNEL); + spim_enqueue_channel(SPIM(device_id), (uint32_t)cs_data->udma_cmd, + ucode_size, UDMA_CORE_TX_CFG_EN(1), TX_CHANNEL); + } + else + { + spim_enqueue_channel(SPIM(device_id), (uint32_t)data, size, + UDMA_CORE_RX_CFG_EN(1) | (2<<1), RX_CHANNEL); + spim_enqueue_channel(SPIM(device_id), (uint32_t)ucode, + ucode_size, UDMA_CORE_TX_CFG_EN(1), TX_CHANNEL); + } + } + else + { +#if 0 + struct spim_transfer transfer; + transfer.data = data; + transfer.flags = flags; + transfer.len = len; + transfer.cfg_cmd = cfg; + transfer.byte_align = byte_align; + transfer.is_send = 0; + __pi_spim_drv_fifo_enqueue(cs_data, &transfer, task); +#endif + } + active_irq(irq); +#endif +} + +void __pi_spi_send_async_with_ucode(struct spim_cs_data *cs_data, void *data, size_t len, + pi_spi_flags_e flags, int ucode_size, void *ucode, + pi_task_t *task) +{ + /* TODO: port spi_async with ucode */ + abort(); +#if 0 + struct spim_driver_data *drv_data = SPIM_CS_DATA_GET_DRV_DATA(cs_data); + int qspi = ((flags >> 2) & 0x3) == ((PI_SPI_LINES_QUAD>>2) & 0x03); + int cs_mode = (flags >> 0) & 0x3; + + int device_id = drv_data->device_id; + uint32_t byte_align = (cs_data->wordsize == PI_SPI_WORDSIZE_32) + && cs_data->big_endian; + uint32_t cfg = cs_data->cfg; + DBG_PRINTF("%s:%d: core clock:%d, baudrate:%d, div=%d, byte_align =%lx, cfg= %lx, qspi=%lx\n", + __func__,__LINE__,system_core_clock_get(),cs_data->max_baudrate, + system_core_clock_get() / cs_data->max_baudrate,byte_align,cfg,qspi); + int size = (len + 7) >> 3; + + int cmd_id = 0; + + uint32_t irq = deactive_irq(); + if(!drv_data->end_of_transfer) + { + if(cs_mode != PI_SPI_CS_AUTO) + { + hal_soc_eu_set_fc_mask(SOC_EVENT_UDMA_SPIM_TX(device_id)); + } + drv_data->end_of_transfer = task; + drv_data->repeat_transfer = NULL; + + spim_enqueue_channel(SPIM(device_id), (uint32_t)ucode, + ucode_size, UDMA_CORE_TX_CFG_EN(1), TX_CHANNEL); + pi_time_wait_us(1000); + spim_enqueue_channel(SPIM(device_id), (uint32_t)data, + size, UDMA_CORE_TX_CFG_EN(1), TX_CHANNEL); + if(cs_mode == PI_SPI_CS_AUTO) + { + // wait until channel is free + while((hal_read32((void*)&(SPIM(device_id)->udma.tx_cfg)) + & (1<<5))>>5) + { + DBG_PRINTF("%s:%d\n",__func__,__LINE__); + } + + // enqueue EOT + cs_data->udma_cmd[0] = SPI_CMD_EOT(1); + spim_enqueue_channel(SPIM(device_id), + (uint32_t)&cs_data->udma_cmd[0], 1*(sizeof(uint32_t)), + UDMA_CORE_TX_CFG_EN(1), TX_CHANNEL); + } + } + else + { +#if 0 + struct spim_transfer transfer; + transfer.data = data; + transfer.flags = flags; + transfer.len = len; + transfer.cfg_cmd = cfg; + transfer.byte_align = byte_align; + transfer.is_send = 0; + __pi_spim_drv_fifo_enqueue(cs_data, &transfer, task); +#endif + } + active_irq(irq); +#endif +} \ No newline at end of file diff --git a/rtos/pulpos/common/rules/pulpos/default_rules.mk b/rtos/pulpos/common/rules/pulpos/default_rules.mk index 1f3f81ff..6cb14a95 100644 --- a/rtos/pulpos/common/rules/pulpos/default_rules.mk +++ b/rtos/pulpos/common/rules/pulpos/default_rules.mk @@ -42,7 +42,40 @@ PULP_CFLAGS += -fno-jump-tables -fno-tree-loop-distribute-patterns ifeq '$(CONFIG_LIBC_MINIMAL)' '1' PULP_APP_CFLAGS += -I$(PULPOS_HOME)/lib/libc/minimal/include endif + +ifdef USE_PULPOS PULP_APP_CFLAGS += -I$(PULPOS_HOME)/include -I$(PULPOS_HOME)/kernel -I$(PULPOS_ARCHI)/include -I$(PULPOS_HAL)/include -I$(PMSIS_API)/include +endif + +ifdef USE_FREERTOS +PULP_APP_CFLAGS += -I$(PULP_SDK_HOME)/rtos/freertos/abstraction_layer_freertos/include +# ***come faccio a compilare una cartella con file c*** +PULP_APP_SRCS += $(PULP_SDK_HOME)/rtos/freertos/abstraction_layer_freertos/scr/clkconst.c +PULP_APP_SRCS += $(PULP_SDK_HOME)/rtos/freertos/abstraction_layer_freertos/scr/clkdiv.c +PULP_APP_SRCS += $(PULP_SDK_HOME)/rtos/freertos/abstraction_layer_freertos/scr/croutine.c +PULP_APP_SRCS += $(PULP_SDK_HOME)/rtos/freertos/abstraction_layer_freertos/scr/device.c +PULP_APP_SRCS += $(PULP_SDK_HOME)/rtos/freertos/abstraction_layer_freertos/scr/event_groups.c +PULP_APP_SRCS += $(PULP_SDK_HOME)/rtos/freertos/abstraction_layer_freertos/scr/fc_event.c +PULP_APP_SRCS += $(PULP_SDK_HOME)/rtos/freertos/abstraction_layer_freertos/scr/fll.c +PULP_APP_SRCS += $(PULP_SDK_HOME)/rtos/freertos/abstraction_layer_freertos/scr/gpio.c +PULP_APP_SRCS += $(PULP_SDK_HOME)/rtos/freertos/abstraction_layer_freertos/scr/irq.c +PULP_APP_SRCS += $(PULP_SDK_HOME)/rtos/freertos/abstraction_layer_freertos/scr/list.c +PULP_APP_SRCS += $(PULP_SDK_HOME)/rtos/freertos/abstraction_layer_freertos/scr/os.c +PULP_APP_SRCS += $(PULP_SDK_HOME)/rtos/freertos/abstraction_layer_freertos/scr/pinmux.c +PULP_APP_SRCS += $(PULP_SDK_HOME)/rtos/freertos/abstraction_layer_freertos/scr/pmsis_task.c +PULP_APP_SRCS += $(PULP_SDK_HOME)/rtos/freertos/abstraction_layer_freertos/scr/queue.c +PULP_APP_SRCS += $(PULP_SDK_HOME)/rtos/freertos/abstraction_layer_freertos/scr/soc_eu.c +PULP_APP_SRCS += $(PULP_SDK_HOME)/rtos/freertos/abstraction_layer_freertos/scr/stream_buffer.c +PULP_APP_SRCS += $(PULP_SDK_HOME)/rtos/freertos/abstraction_layer_freertos/scr/system_metal.c +PULP_APP_SRCS += $(PULP_SDK_HOME)/rtos/freertos/abstraction_layer_freertos/scr/system.c +PULP_APP_SRCS += $(PULP_SDK_HOME)/rtos/freertos/abstraction_layer_freertos/scr/task.c +PULP_APP_SRCS += $(PULP_SDK_HOME)/rtos/freertos/abstraction_layer_freertos/scr/timer_irq.c +PULP_APP_SRCS += $(PULP_SDK_HOME)/rtos/freertos/abstraction_layer_freertos/scr/timers.c + +PULP_APP_CFLAGS += -I$(PULPOS_ARCHI)/include +PULP_APP_CFLAGS += -I$(PULPOS_HAL)/include +PULP_APP_CFLAGS += -I$(PMSIS_API)/include +endif PULP_APP_CFLAGS += $(foreach inc,$(PULPOS_MODULES),-I$(inc)/include) @@ -57,21 +90,10 @@ PULP_APP_CFLAGS += -I$(PULP_SDK_HOME)/rtos/pulpos/pulp/drivers/spim/common/inclu PULP_APP_SRCS += $(PULP_SDK_HOME)/rtos/pulpos/pulp/drivers/spim/common/src/common_spi.c endif -ifdef USE_FREERTOS -PULP_APP_CFLAGS += -I$(PULP_SDK_HOME)/tests/spim_flash_async/FreeRTOSConfig.h -PULP_APP_CFLAGS += -I$(PULP_SDK_HOME)/rtos/freertos/abstraction_layer_freertos/include -PULP_APP_SRCS += $(PULP_SDK_HOME)/rtos/freertos/abstraction_layer_freertos/src/croutine.c -PULP_APP_SRCS += $(PULP_SDK_HOME)/rtos/freertos/abstraction_layer_freertos/src/event_groups.c -PULP_APP_SRCS += $(PULP_SDK_HOME)/rtos/freertos/abstraction_layer_freertos/src/list.c -PULP_APP_SRCS += $(PULP_SDK_HOME)/rtos/freertos/abstraction_layer_freertos/src/os.c -PULP_APP_SRCS += $(PULP_SDK_HOME)/rtos/freertos/abstraction_layer_freertos/src/pmsis_task.c -PULP_APP_SRCS += $(PULP_SDK_HOME)/rtos/freertos/abstraction_layer_freertos/src/queue.c -PULP_APP_SRCS += $(PULP_SDK_HOME)/rtos/freertos/abstraction_layer_freertos/src/stream_buffer.c -PULP_APP_SRCS += $(PULP_SDK_HOME)/rtos/freertos/abstraction_layer_freertos/src/tasks.c -PULP_APP_SRCS += $(PULP_SDK_HOME)/rtos/freertos/abstraction_layer_freertos/src/timers.c -PULP_APP_CFLAGS += -I$(PULP_SDK_HOME)/rtos/pulpos/pulp/drivers/spim/abstraction_layer_spi_pulpos/include/ -PULP_APP_SRCS += $(PULP_SDK_HOME)/rtos/pulpos/pulp/drivers/spim/abstraction_layer_spi_pulpos/src/abstraction_layer_spi.c +ifdef USE_FREERTOS +PULP_APP_CFLAGS += -I$(PULP_SDK_HOME)/rtos/pulpos/pulp/drivers/spim/abstraction_layer_spi_freertos/include/ +PULP_APP_SRCS += $(PULP_SDK_HOME)/rtos/pulpos/pulp/drivers/spim/abstraction_layer_spi_freertos/src/abstraction_layer_spi.c PULP_APP_CFLAGS += -I$(PULP_SDK_HOME)/rtos/pulpos/pulp/drivers/spim/common/include/ PULP_APP_SRCS += $(PULP_SDK_HOME)/rtos/pulpos/pulp/drivers/spim/common/src/common_spi.c endif diff --git a/rtos/pulpos/common/rules/pulpos/src.mk b/rtos/pulpos/common/rules/pulpos/src.mk index f0cd0c6a..5b33daea 100644 --- a/rtos/pulpos/common/rules/pulpos/src.mk +++ b/rtos/pulpos/common/rules/pulpos/src.mk @@ -18,21 +18,12 @@ ifeq '$(CONFIG_LIBC_MINIMAL)' '1' PULP_SRCS += lib/libc/minimal/io.c lib/libc/minimal/fprintf.c lib/libc/minimal/prf.c lib/libc/minimal/sprintf.c lib/libc/minimal/semihost.c endif -ifdef USE_PULPOS ifdef CONFIG_KERNEL PULP_SRCS += kernel/init.c kernel/kernel.c kernel/device.c kernel/task.c kernel/alloc.c \ kernel/alloc_pool.c kernel/irq.c kernel/soc_event.c kernel/log.c kernel/time.c PULP_ASM_SRCS += kernel/irq_asm.S kernel/task_asm.S kernel/time_asm.S -endif -endif -ifdef USE_FREERTOS -ifdef CONFIG_KERNEL -PULP_SRCS += kernel/init.c kernel/kernel.c kernel/device.c kernel/alloc.c \ - kernel/alloc_pool.c kernel/irq.c kernel/soc_event.c kernel/log.c kernel/time.c -PULP_ASM_SRCS += kernel/irq_asm.S kernel/task_asm.S kernel/time_asm.S -endif endif # SOC EVENT diff --git a/rtos/pulpos/pulp/drivers/spim/common/include/common_spi.h b/rtos/pulpos/pulp/drivers/spim/common/include/common_spi.h index 81763ae0..fa1aa710 100644 --- a/rtos/pulpos/pulp/drivers/spim/common/include/common_spi.h +++ b/rtos/pulpos/pulp/drivers/spim/common/include/common_spi.h @@ -28,7 +28,7 @@ /**================================================================================================ ** INCLUDE *================================================================================================**/ - +#ifdef USE_PULPOS #include "pmsis.h" #include #include @@ -39,8 +39,23 @@ #include #include #include +#endif - +#ifdef USE_FREERTOS +#include "pmsis_types.h" +#include "pmsis_task.h" +#include "implementation_specific_defines.h" +#include "system.h" +#include "fc_event.h" +#include "udma.h" +#include "fll.h" +#include "events.h" +#include "properties.h" +#include "spi_periph.h" +#include "spi.h" +#include "udma_spim.h" +#include "udma_ctrl.h" +#endif /**================================================================================================ ** DEFINE @@ -77,7 +92,7 @@ struct spim_cs_data uint8_t big_endian; }; - +#ifdef USE_PULPOS /* Structure holding info for each interfaces * most notably the fifo of enqueued transfers and meta to know whether * interface is free or not */ @@ -92,8 +107,20 @@ struct spim_driver_data pos_udma_channel_t *rx_channel; pos_udma_channel_t *tx_channel; }; - - +#endif +#ifdef USE_FREERTOS +/* Structure holding info for each interfaces + * most notably the fifo of enqueued transfers and meta to know whether + * interface is free or not */ +struct spim_driver_data { + struct spim_drv_fifo *drv_fifo; // does the same task as Dolphine with true and false + struct spim_cs_data *cs_list; // list of devices connected to the spi interface + pi_task_t *repeat_transfer; + pi_task_t *end_of_transfer; // gli associo un task per sapere se un trasferimento ha finito? + uint32_t nb_open; + uint8_t device_id; +}; +#endif struct spim_transfer diff --git a/rtos/pulpos/pulp/drivers/spim/common/src/common_spi.c b/rtos/pulpos/pulp/drivers/spim/common/src/common_spi.c index 185776f7..bfb5fe4e 100644 --- a/rtos/pulpos/pulp/drivers/spim/common/src/common_spi.c +++ b/rtos/pulpos/pulp/drivers/spim/common/src/common_spi.c @@ -34,15 +34,21 @@ ** FUNCTION *================================================================================================**/ uint32_t deactive_irq(void){ - +#ifdef USE_PULPOS return hal_irq_disable(); - - +#endif +#ifdef USE_FREERTOS + return __disable_irq(); +#endif } void active_irq(uint32_t irq){ +#ifdef USE_PULPOS hal_irq_restore(irq); - +#endif +#ifdef USE_FREERTOS + __restore_irq(irq); +#endif } diff --git a/tests/spim_flash_async/Makefile b/tests/spim_flash_async/Makefile index 95cbe0d1..d64335f1 100644 --- a/tests/spim_flash_async/Makefile +++ b/tests/spim_flash_async/Makefile @@ -13,9 +13,8 @@ endif APP_CFLAGS += -Os -g APP_LDFLAGS += -Os -g -#APP_CFLAGS += -DUSE_PULPOS -APP_CFLAGS += -DUSE_FREERTOS - +APP_CFLAGS += -DUSE_PULPOS +#APP_CFLAGS += -DUSE_FREERTOS CONFIG_SPIM = 1 diff --git a/tests/spim_flash_async/test_spi_async.c b/tests/spim_flash_async/test_spi_async.c index e41c9e5f..82d51bc2 100644 --- a/tests/spim_flash_async/test_spi_async.c +++ b/tests/spim_flash_async/test_spi_async.c @@ -25,6 +25,9 @@ #include "pmsis.h" #include +#ifdef USE_FREERTOS + #include "system.h" +#endif #if !defined(SYNC_CS_AUTO) && !defined(ASYNC_CS_AUTO) && \ !defined(SYNC_CS_KEEP) && !defined(ASYNC_CS_KEEP) @@ -237,6 +240,9 @@ static void test_kickoff(void *arg) /* Program Entry. */ int main(void) { +#ifdef USE_FREERTOS + system_init(); +#endif printf("\n\n\t *** Pulp-SDK Hello World *** \n\n"); return pmsis_kickoff((void *)test_kickoff); } From d0ab93efb05d4646e1b9ad2c1548bd5aa33dfa0c Mon Sep 17 00:00:00 2001 From: orlandonico Date: Thu, 30 Dec 2021 16:23:51 +0100 Subject: [PATCH 59/86] test/spim_flash_async: freertos --- tests/spim_flash_async/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/spim_flash_async/Makefile b/tests/spim_flash_async/Makefile index d64335f1..4936d6dc 100644 --- a/tests/spim_flash_async/Makefile +++ b/tests/spim_flash_async/Makefile @@ -13,8 +13,8 @@ endif APP_CFLAGS += -Os -g APP_LDFLAGS += -Os -g -APP_CFLAGS += -DUSE_PULPOS -#APP_CFLAGS += -DUSE_FREERTOS +#APP_CFLAGS += -DUSE_PULPOS +APP_CFLAGS += -DUSE_FREERTOS CONFIG_SPIM = 1 From bb8fc78e836796947dbbeb65eba36e09fb3c75e3 Mon Sep 17 00:00:00 2001 From: orlandonico Date: Thu, 30 Dec 2021 17:33:33 +0100 Subject: [PATCH 60/86] fix variable --- rtos/pulpos/common/rules/pulpos/default_rules.mk | 4 ++-- rtos/pulpos/pulp/drivers/spim/common/include/common_spi.h | 8 ++++---- rtos/pulpos/pulp/drivers/spim/common/src/common_spi.c | 8 ++++---- tests/spim_flash_async/Makefile | 6 ++++-- 4 files changed, 14 insertions(+), 12 deletions(-) diff --git a/rtos/pulpos/common/rules/pulpos/default_rules.mk b/rtos/pulpos/common/rules/pulpos/default_rules.mk index 6cb14a95..de87ffdb 100644 --- a/rtos/pulpos/common/rules/pulpos/default_rules.mk +++ b/rtos/pulpos/common/rules/pulpos/default_rules.mk @@ -43,7 +43,7 @@ ifeq '$(CONFIG_LIBC_MINIMAL)' '1' PULP_APP_CFLAGS += -I$(PULPOS_HOME)/lib/libc/minimal/include endif -ifdef USE_PULPOS +ifdef DUSE_PULPOS_TEST PULP_APP_CFLAGS += -I$(PULPOS_HOME)/include -I$(PULPOS_HOME)/kernel -I$(PULPOS_ARCHI)/include -I$(PULPOS_HAL)/include -I$(PMSIS_API)/include endif @@ -83,7 +83,7 @@ ifdef PULPOS_PLATFORM platform=$(PULPOS_PLATFORM) endif -ifdef USE_PULPOS +ifdef DUSE_PULPOS_TEST PULP_APP_CFLAGS += -I$(PULP_SDK_HOME)/rtos/pulpos/pulp/drivers/spim/abstraction_layer_spi_pulpos/include/ PULP_APP_SRCS += $(PULP_SDK_HOME)/rtos/pulpos/pulp/drivers/spim/abstraction_layer_spi_pulpos/src/abstraction_layer_spi.c PULP_APP_CFLAGS += -I$(PULP_SDK_HOME)/rtos/pulpos/pulp/drivers/spim/common/include/ diff --git a/rtos/pulpos/pulp/drivers/spim/common/include/common_spi.h b/rtos/pulpos/pulp/drivers/spim/common/include/common_spi.h index fa1aa710..18543bf7 100644 --- a/rtos/pulpos/pulp/drivers/spim/common/include/common_spi.h +++ b/rtos/pulpos/pulp/drivers/spim/common/include/common_spi.h @@ -28,7 +28,7 @@ /**================================================================================================ ** INCLUDE *================================================================================================**/ -#ifdef USE_PULPOS +#ifdef USE_PULPOS_TEST #include "pmsis.h" #include #include @@ -41,7 +41,7 @@ #include #endif -#ifdef USE_FREERTOS +#ifdef USE_FREERTOS_TEST #include "pmsis_types.h" #include "pmsis_task.h" #include "implementation_specific_defines.h" @@ -92,7 +92,7 @@ struct spim_cs_data uint8_t big_endian; }; -#ifdef USE_PULPOS +#ifdef USE_PULPOS_TEST /* Structure holding info for each interfaces * most notably the fifo of enqueued transfers and meta to know whether * interface is free or not */ @@ -108,7 +108,7 @@ struct spim_driver_data pos_udma_channel_t *tx_channel; }; #endif -#ifdef USE_FREERTOS +#ifdef USE_FREERTOS_TEST /* Structure holding info for each interfaces * most notably the fifo of enqueued transfers and meta to know whether * interface is free or not */ diff --git a/rtos/pulpos/pulp/drivers/spim/common/src/common_spi.c b/rtos/pulpos/pulp/drivers/spim/common/src/common_spi.c index bfb5fe4e..5666f2a2 100644 --- a/rtos/pulpos/pulp/drivers/spim/common/src/common_spi.c +++ b/rtos/pulpos/pulp/drivers/spim/common/src/common_spi.c @@ -34,19 +34,19 @@ ** FUNCTION *================================================================================================**/ uint32_t deactive_irq(void){ -#ifdef USE_PULPOS +#ifdef USE_PULPOS_TEST return hal_irq_disable(); #endif -#ifdef USE_FREERTOS +#ifdef USE_FREERTOS_TEST return __disable_irq(); #endif } void active_irq(uint32_t irq){ -#ifdef USE_PULPOS +#ifdef USE_PULPOS_TEST hal_irq_restore(irq); #endif -#ifdef USE_FREERTOS +#ifdef USE_FREERTOS_TEST __restore_irq(irq); #endif diff --git a/tests/spim_flash_async/Makefile b/tests/spim_flash_async/Makefile index 4936d6dc..1ac24abf 100644 --- a/tests/spim_flash_async/Makefile +++ b/tests/spim_flash_async/Makefile @@ -13,8 +13,10 @@ endif APP_CFLAGS += -Os -g APP_LDFLAGS += -Os -g -#APP_CFLAGS += -DUSE_PULPOS -APP_CFLAGS += -DUSE_FREERTOS +#APP_CFLAGS += -DUSE_PULPOS_TEST +#USE_FREERTOS_TEST=1 +APP_CFLAGS += -DUSE_FREERTOS_TEST +USE_FREERTOS_TEST=1 CONFIG_SPIM = 1 From e6fd6ebc80bcb6723b4937d859a064c843f93995 Mon Sep 17 00:00:00 2001 From: orlandonico Date: Thu, 30 Dec 2021 17:42:34 +0100 Subject: [PATCH 61/86] add makefile --- tests/spim_flash_async/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/spim_flash_async/Makefile b/tests/spim_flash_async/Makefile index 1ac24abf..a09ba79e 100644 --- a/tests/spim_flash_async/Makefile +++ b/tests/spim_flash_async/Makefile @@ -21,3 +21,4 @@ USE_FREERTOS_TEST=1 CONFIG_SPIM = 1 include $(RULES_DIR)/pmsis_rules.mk + From 442e396534750d8f039ab1b330872e82eb156e88 Mon Sep 17 00:00:00 2001 From: orlandonico Date: Thu, 30 Dec 2021 17:50:04 +0100 Subject: [PATCH 62/86] add modify --- rtos/pulpos/common/rules/pulpos/default_rules.mk | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/rtos/pulpos/common/rules/pulpos/default_rules.mk b/rtos/pulpos/common/rules/pulpos/default_rules.mk index de87ffdb..cf5d92d5 100644 --- a/rtos/pulpos/common/rules/pulpos/default_rules.mk +++ b/rtos/pulpos/common/rules/pulpos/default_rules.mk @@ -43,11 +43,11 @@ ifeq '$(CONFIG_LIBC_MINIMAL)' '1' PULP_APP_CFLAGS += -I$(PULPOS_HOME)/lib/libc/minimal/include endif -ifdef DUSE_PULPOS_TEST +ifdef USE_PULPOS_TEST PULP_APP_CFLAGS += -I$(PULPOS_HOME)/include -I$(PULPOS_HOME)/kernel -I$(PULPOS_ARCHI)/include -I$(PULPOS_HAL)/include -I$(PMSIS_API)/include endif -ifdef USE_FREERTOS +ifdef USE_FREERTOS_TEST PULP_APP_CFLAGS += -I$(PULP_SDK_HOME)/rtos/freertos/abstraction_layer_freertos/include # ***come faccio a compilare una cartella con file c*** PULP_APP_SRCS += $(PULP_SDK_HOME)/rtos/freertos/abstraction_layer_freertos/scr/clkconst.c @@ -83,7 +83,7 @@ ifdef PULPOS_PLATFORM platform=$(PULPOS_PLATFORM) endif -ifdef DUSE_PULPOS_TEST +ifdef USE_PULPOS_TEST PULP_APP_CFLAGS += -I$(PULP_SDK_HOME)/rtos/pulpos/pulp/drivers/spim/abstraction_layer_spi_pulpos/include/ PULP_APP_SRCS += $(PULP_SDK_HOME)/rtos/pulpos/pulp/drivers/spim/abstraction_layer_spi_pulpos/src/abstraction_layer_spi.c PULP_APP_CFLAGS += -I$(PULP_SDK_HOME)/rtos/pulpos/pulp/drivers/spim/common/include/ @@ -91,7 +91,7 @@ PULP_APP_SRCS += $(PULP_SDK_HOME)/rtos/pulpos/pulp/drivers/spim/common/src/commo endif -ifdef USE_FREERTOS +ifdef USE_FREERTOS_TEST PULP_APP_CFLAGS += -I$(PULP_SDK_HOME)/rtos/pulpos/pulp/drivers/spim/abstraction_layer_spi_freertos/include/ PULP_APP_SRCS += $(PULP_SDK_HOME)/rtos/pulpos/pulp/drivers/spim/abstraction_layer_spi_freertos/src/abstraction_layer_spi.c PULP_APP_CFLAGS += -I$(PULP_SDK_HOME)/rtos/pulpos/pulp/drivers/spim/common/include/ From fe2e09e57c47c521eeeb2356ed5d32a5c81f92dc Mon Sep 17 00:00:00 2001 From: orlandonico Date: Mon, 3 Jan 2022 10:19:15 +0100 Subject: [PATCH 63/86] remove freertos/abstraction_layer_freertos/include/ --- .../include/FreeRTOS.h | 1295 --------- .../include/StackMacros.h | 133 - .../include/apb_soc.h | 155 - .../include/atomic.h | 414 --- .../abstraction_layer_freertos/include/bits.h | 86 - .../include/clkdiv.h | 33 - .../include/croutine.h | 720 ----- .../include/debug.h | 64 - .../include/deprecated_definitions.h | 279 -- .../include/device.h | 44 - .../include/event_groups.h | 757 ----- .../include/events.h | 184 -- .../include/fc_event.h | 47 - .../abstraction_layer_freertos/include/fll.h | 237 -- .../abstraction_layer_freertos/include/freq.h | 53 - .../abstraction_layer_freertos/include/gpio.h | 438 --- .../abstraction_layer_freertos/include/i2c.h | 434 --- .../include/i2c_periph.h | 96 - .../include/implementation_specific_defines.h | 59 - .../abstraction_layer_freertos/include/irq.h | 391 --- .../abstraction_layer_freertos/include/link.h | 25 - .../abstraction_layer_freertos/include/list.h | 412 --- .../include/memory_map.h | 156 - .../include/message_buffer.h | 803 ------ .../include/mpu_prototypes.h | 160 -- .../include/mpu_wrappers.h | 189 -- .../abstraction_layer_freertos/include/os.h | 261 -- .../include/pi_errno.h | 53 - .../include/pinmux.h | 41 - .../include/pmsis_task.h | 169 -- .../include/pmsis_types.h | 198 -- .../include/portable.h | 199 -- .../include/projdefs.h | 124 - .../include/properties.h | 252 -- .../include/pulp_mem_map.h | 81 - .../include/queue.h | 1655 ----------- .../include/semphr.h | 1140 -------- .../include/soc_eu.h | 330 --- .../include/soc_eu_metal.h | 73 - .../abstraction_layer_freertos/include/spi.h | 452 --- .../include/spi_periph.h | 332 --- .../include/stack_macros.h | 129 - .../include/stdint.readme | 27 - .../include/stdout.h | 31 - .../include/stream_buffer.h | 859 ------ .../include/system.h | 38 - .../include/target.h | 129 - .../abstraction_layer_freertos/include/task.h | 2543 ----------------- .../include/tempCodeRunnerFile.h | 1 - .../include/timer.h | 222 -- .../include/timer_irq.h | 33 - .../include/timers.h | 1309 --------- .../abstraction_layer_freertos/include/uart.h | 437 --- .../include/uart_periph.h | 140 - .../abstraction_layer_freertos/include/udma.h | 229 -- .../include/udma_core.h | 63 - .../include/udma_ctrl.h | 108 - .../include/udma_i2c.h | 134 - .../include/udma_spim.h | 51 - .../include/udma_uart.h | 197 -- 60 files changed, 19704 deletions(-) delete mode 100644 rtos/freertos/abstraction_layer_freertos/include/FreeRTOS.h delete mode 100644 rtos/freertos/abstraction_layer_freertos/include/StackMacros.h delete mode 100644 rtos/freertos/abstraction_layer_freertos/include/apb_soc.h delete mode 100644 rtos/freertos/abstraction_layer_freertos/include/atomic.h delete mode 100644 rtos/freertos/abstraction_layer_freertos/include/bits.h delete mode 100644 rtos/freertos/abstraction_layer_freertos/include/clkdiv.h delete mode 100644 rtos/freertos/abstraction_layer_freertos/include/croutine.h delete mode 100644 rtos/freertos/abstraction_layer_freertos/include/debug.h delete mode 100644 rtos/freertos/abstraction_layer_freertos/include/deprecated_definitions.h delete mode 100644 rtos/freertos/abstraction_layer_freertos/include/device.h delete mode 100644 rtos/freertos/abstraction_layer_freertos/include/event_groups.h delete mode 100644 rtos/freertos/abstraction_layer_freertos/include/events.h delete mode 100644 rtos/freertos/abstraction_layer_freertos/include/fc_event.h delete mode 100644 rtos/freertos/abstraction_layer_freertos/include/fll.h delete mode 100644 rtos/freertos/abstraction_layer_freertos/include/freq.h delete mode 100644 rtos/freertos/abstraction_layer_freertos/include/gpio.h delete mode 100644 rtos/freertos/abstraction_layer_freertos/include/i2c.h delete mode 100644 rtos/freertos/abstraction_layer_freertos/include/i2c_periph.h delete mode 100644 rtos/freertos/abstraction_layer_freertos/include/implementation_specific_defines.h delete mode 100644 rtos/freertos/abstraction_layer_freertos/include/irq.h delete mode 100644 rtos/freertos/abstraction_layer_freertos/include/link.h delete mode 100644 rtos/freertos/abstraction_layer_freertos/include/list.h delete mode 100644 rtos/freertos/abstraction_layer_freertos/include/memory_map.h delete mode 100644 rtos/freertos/abstraction_layer_freertos/include/message_buffer.h delete mode 100644 rtos/freertos/abstraction_layer_freertos/include/mpu_prototypes.h delete mode 100644 rtos/freertos/abstraction_layer_freertos/include/mpu_wrappers.h delete mode 100644 rtos/freertos/abstraction_layer_freertos/include/os.h delete mode 100644 rtos/freertos/abstraction_layer_freertos/include/pi_errno.h delete mode 100644 rtos/freertos/abstraction_layer_freertos/include/pinmux.h delete mode 100644 rtos/freertos/abstraction_layer_freertos/include/pmsis_task.h delete mode 100644 rtos/freertos/abstraction_layer_freertos/include/pmsis_types.h delete mode 100644 rtos/freertos/abstraction_layer_freertos/include/portable.h delete mode 100644 rtos/freertos/abstraction_layer_freertos/include/projdefs.h delete mode 100644 rtos/freertos/abstraction_layer_freertos/include/properties.h delete mode 100644 rtos/freertos/abstraction_layer_freertos/include/pulp_mem_map.h delete mode 100644 rtos/freertos/abstraction_layer_freertos/include/queue.h delete mode 100644 rtos/freertos/abstraction_layer_freertos/include/semphr.h delete mode 100644 rtos/freertos/abstraction_layer_freertos/include/soc_eu.h delete mode 100644 rtos/freertos/abstraction_layer_freertos/include/soc_eu_metal.h delete mode 100644 rtos/freertos/abstraction_layer_freertos/include/spi.h delete mode 100644 rtos/freertos/abstraction_layer_freertos/include/spi_periph.h delete mode 100644 rtos/freertos/abstraction_layer_freertos/include/stack_macros.h delete mode 100644 rtos/freertos/abstraction_layer_freertos/include/stdint.readme delete mode 100644 rtos/freertos/abstraction_layer_freertos/include/stdout.h delete mode 100644 rtos/freertos/abstraction_layer_freertos/include/stream_buffer.h delete mode 100644 rtos/freertos/abstraction_layer_freertos/include/system.h delete mode 100644 rtos/freertos/abstraction_layer_freertos/include/target.h delete mode 100644 rtos/freertos/abstraction_layer_freertos/include/task.h delete mode 100644 rtos/freertos/abstraction_layer_freertos/include/tempCodeRunnerFile.h delete mode 100644 rtos/freertos/abstraction_layer_freertos/include/timer.h delete mode 100644 rtos/freertos/abstraction_layer_freertos/include/timer_irq.h delete mode 100644 rtos/freertos/abstraction_layer_freertos/include/timers.h delete mode 100644 rtos/freertos/abstraction_layer_freertos/include/uart.h delete mode 100644 rtos/freertos/abstraction_layer_freertos/include/uart_periph.h delete mode 100644 rtos/freertos/abstraction_layer_freertos/include/udma.h delete mode 100644 rtos/freertos/abstraction_layer_freertos/include/udma_core.h delete mode 100644 rtos/freertos/abstraction_layer_freertos/include/udma_ctrl.h delete mode 100644 rtos/freertos/abstraction_layer_freertos/include/udma_i2c.h delete mode 100644 rtos/freertos/abstraction_layer_freertos/include/udma_spim.h delete mode 100644 rtos/freertos/abstraction_layer_freertos/include/udma_uart.h diff --git a/rtos/freertos/abstraction_layer_freertos/include/FreeRTOS.h b/rtos/freertos/abstraction_layer_freertos/include/FreeRTOS.h deleted file mode 100644 index a621f8a3..00000000 --- a/rtos/freertos/abstraction_layer_freertos/include/FreeRTOS.h +++ /dev/null @@ -1,1295 +0,0 @@ -/* - * FreeRTOS Kernel V10.3.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. - * - * Permission is hereby granted, free of charge, to any person obtaining a copy of - * this software and associated documentation files (the "Software"), to deal in - * the Software without restriction, including without limitation the rights to - * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of - * the Software, and to permit persons to whom the Software is furnished to do so, - * subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS - * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR - * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER - * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - * - * http://www.FreeRTOS.org - * http://aws.amazon.com/freertos - * - * 1 tab == 4 spaces! - */ - -#ifndef INC_FREERTOS_H -#define INC_FREERTOS_H - -/* - * Include the generic headers required for the FreeRTOS port being used. - */ -#include - -/* - * If stdint.h cannot be located then: - * + If using GCC ensure the -nostdint options is *not* being used. - * + Ensure the project's include path includes the directory in which your - * compiler stores stdint.h. - * + Set any compiler options necessary for it to support C99, as technically - * stdint.h is only mandatory with C99 (FreeRTOS does not require C99 in any - * other way). - * + The FreeRTOS download includes a simple stdint.h definition that can be - * used in cases where none is provided by the compiler. The files only - * contains the typedefs required to build FreeRTOS. Read the instructions - * in FreeRTOS/source/stdint.readme for more information. - */ -#include /* READ COMMENT ABOVE. */ - -#ifdef __cplusplus -extern "C" { -#endif - -/* Application specific configuration options. */ -#include "FreeRTOSConfig.h" - -/* Basic FreeRTOS definitions. */ -#include "projdefs.h" - -/* Definitions specific to the port being used. */ -#include "portable.h" - -/* Must be defaulted before configUSE_NEWLIB_REENTRANT is used below. */ -#ifndef configUSE_NEWLIB_REENTRANT - #define configUSE_NEWLIB_REENTRANT 0 -#endif - -/* Required if struct _reent is used. */ -#if ( configUSE_NEWLIB_REENTRANT == 1 ) - #include -#endif -/* - * Check all the required application specific macros have been defined. - * These macros are application specific and (as downloaded) are defined - * within FreeRTOSConfig.h. - */ - -#ifndef configMINIMAL_STACK_SIZE - #error Missing definition: configMINIMAL_STACK_SIZE must be defined in FreeRTOSConfig.h. configMINIMAL_STACK_SIZE defines the size (in words) of the stack allocated to the idle task. Refer to the demo project provided for your port for a suitable value. -#endif - -#ifndef configMAX_PRIORITIES - #error Missing definition: configMAX_PRIORITIES must be defined in FreeRTOSConfig.h. See the Configuration section of the FreeRTOS API documentation for details. -#endif - -#if configMAX_PRIORITIES < 1 - #error configMAX_PRIORITIES must be defined to be greater than or equal to 1. -#endif - -#ifndef configUSE_PREEMPTION - #error Missing definition: configUSE_PREEMPTION must be defined in FreeRTOSConfig.h as either 1 or 0. See the Configuration section of the FreeRTOS API documentation for details. -#endif - -#ifndef configUSE_IDLE_HOOK - #error Missing definition: configUSE_IDLE_HOOK must be defined in FreeRTOSConfig.h as either 1 or 0. See the Configuration section of the FreeRTOS API documentation for details. -#endif - -#ifndef configUSE_TICK_HOOK - #error Missing definition: configUSE_TICK_HOOK must be defined in FreeRTOSConfig.h as either 1 or 0. See the Configuration section of the FreeRTOS API documentation for details. -#endif - -#ifndef configUSE_16_BIT_TICKS - #error Missing definition: configUSE_16_BIT_TICKS must be defined in FreeRTOSConfig.h as either 1 or 0. See the Configuration section of the FreeRTOS API documentation for details. -#endif - -#ifndef configUSE_CO_ROUTINES - #define configUSE_CO_ROUTINES 0 -#endif - -#ifndef INCLUDE_vTaskPrioritySet - #define INCLUDE_vTaskPrioritySet 0 -#endif - -#ifndef INCLUDE_uxTaskPriorityGet - #define INCLUDE_uxTaskPriorityGet 0 -#endif - -#ifndef INCLUDE_vTaskDelete - #define INCLUDE_vTaskDelete 0 -#endif - -#ifndef INCLUDE_vTaskSuspend - #define INCLUDE_vTaskSuspend 0 -#endif - -#ifndef INCLUDE_vTaskDelayUntil - #define INCLUDE_vTaskDelayUntil 0 -#endif - -#ifndef INCLUDE_vTaskDelay - #define INCLUDE_vTaskDelay 0 -#endif - -#ifndef INCLUDE_xTaskGetIdleTaskHandle - #define INCLUDE_xTaskGetIdleTaskHandle 0 -#endif - -#ifndef INCLUDE_xTaskAbortDelay - #define INCLUDE_xTaskAbortDelay 0 -#endif - -#ifndef INCLUDE_xQueueGetMutexHolder - #define INCLUDE_xQueueGetMutexHolder 0 -#endif - -#ifndef INCLUDE_xSemaphoreGetMutexHolder - #define INCLUDE_xSemaphoreGetMutexHolder INCLUDE_xQueueGetMutexHolder -#endif - -#ifndef INCLUDE_xTaskGetHandle - #define INCLUDE_xTaskGetHandle 0 -#endif - -#ifndef INCLUDE_uxTaskGetStackHighWaterMark - #define INCLUDE_uxTaskGetStackHighWaterMark 0 -#endif - -#ifndef INCLUDE_uxTaskGetStackHighWaterMark2 - #define INCLUDE_uxTaskGetStackHighWaterMark2 0 -#endif - -#ifndef INCLUDE_eTaskGetState - #define INCLUDE_eTaskGetState 0 -#endif - -#ifndef INCLUDE_xTaskResumeFromISR - #define INCLUDE_xTaskResumeFromISR 1 -#endif - -#ifndef INCLUDE_xTimerPendFunctionCall - #define INCLUDE_xTimerPendFunctionCall 0 -#endif - -#ifndef INCLUDE_xTaskGetSchedulerState - #define INCLUDE_xTaskGetSchedulerState 0 -#endif - -#ifndef INCLUDE_xTaskGetCurrentTaskHandle - #define INCLUDE_xTaskGetCurrentTaskHandle 0 -#endif - -#if configUSE_CO_ROUTINES != 0 - #ifndef configMAX_CO_ROUTINE_PRIORITIES - #error configMAX_CO_ROUTINE_PRIORITIES must be greater than or equal to 1. - #endif -#endif - -#ifndef configUSE_DAEMON_TASK_STARTUP_HOOK - #define configUSE_DAEMON_TASK_STARTUP_HOOK 0 -#endif - -#ifndef configUSE_APPLICATION_TASK_TAG - #define configUSE_APPLICATION_TASK_TAG 0 -#endif - -#ifndef configNUM_THREAD_LOCAL_STORAGE_POINTERS - #define configNUM_THREAD_LOCAL_STORAGE_POINTERS 0 -#endif - -#ifndef configUSE_RECURSIVE_MUTEXES - #define configUSE_RECURSIVE_MUTEXES 0 -#endif - -#ifndef configUSE_MUTEXES - #define configUSE_MUTEXES 0 -#endif - -#ifndef configUSE_TIMERS - #define configUSE_TIMERS 0 -#endif - -#ifndef configUSE_COUNTING_SEMAPHORES - #define configUSE_COUNTING_SEMAPHORES 0 -#endif - -#ifndef configUSE_ALTERNATIVE_API - #define configUSE_ALTERNATIVE_API 0 -#endif - -#ifndef portCRITICAL_NESTING_IN_TCB - #define portCRITICAL_NESTING_IN_TCB 0 -#endif - -#ifndef configMAX_TASK_NAME_LEN - #define configMAX_TASK_NAME_LEN 16 -#endif - -#ifndef configIDLE_SHOULD_YIELD - #define configIDLE_SHOULD_YIELD 1 -#endif - -#if configMAX_TASK_NAME_LEN < 1 - #error configMAX_TASK_NAME_LEN must be set to a minimum of 1 in FreeRTOSConfig.h -#endif - -#ifndef configASSERT - #define configASSERT( x ) - #define configASSERT_DEFINED 0 -#else - #define configASSERT_DEFINED 1 -#endif - -/* configPRECONDITION should be defined as configASSERT. -The CBMC proofs need a way to track assumptions and assertions. -A configPRECONDITION statement should express an implicit invariant or -assumption made. A configASSERT statement should express an invariant that must -hold explicit before calling the code. */ -#ifndef configPRECONDITION - #define configPRECONDITION( X ) configASSERT(X) - #define configPRECONDITION_DEFINED 0 -#else - #define configPRECONDITION_DEFINED 1 -#endif - -#ifndef portMEMORY_BARRIER - #define portMEMORY_BARRIER() -#endif - -#ifndef portSOFTWARE_BARRIER - #define portSOFTWARE_BARRIER() -#endif - -/* The timers module relies on xTaskGetSchedulerState(). */ -#if configUSE_TIMERS == 1 - - #ifndef configTIMER_TASK_PRIORITY - #error If configUSE_TIMERS is set to 1 then configTIMER_TASK_PRIORITY must also be defined. - #endif /* configTIMER_TASK_PRIORITY */ - - #ifndef configTIMER_QUEUE_LENGTH - #error If configUSE_TIMERS is set to 1 then configTIMER_QUEUE_LENGTH must also be defined. - #endif /* configTIMER_QUEUE_LENGTH */ - - #ifndef configTIMER_TASK_STACK_DEPTH - #error If configUSE_TIMERS is set to 1 then configTIMER_TASK_STACK_DEPTH must also be defined. - #endif /* configTIMER_TASK_STACK_DEPTH */ - -#endif /* configUSE_TIMERS */ - -#ifndef portSET_INTERRUPT_MASK_FROM_ISR - #define portSET_INTERRUPT_MASK_FROM_ISR() 0 -#endif - -#ifndef portCLEAR_INTERRUPT_MASK_FROM_ISR - #define portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedStatusValue ) ( void ) uxSavedStatusValue -#endif - -#ifndef portCLEAN_UP_TCB - #define portCLEAN_UP_TCB( pxTCB ) ( void ) pxTCB -#endif - -#ifndef portPRE_TASK_DELETE_HOOK - #define portPRE_TASK_DELETE_HOOK( pvTaskToDelete, pxYieldPending ) -#endif - -#ifndef portSETUP_TCB - #define portSETUP_TCB( pxTCB ) ( void ) pxTCB -#endif - -#ifndef configQUEUE_REGISTRY_SIZE - #define configQUEUE_REGISTRY_SIZE 0U -#endif - -#if ( configQUEUE_REGISTRY_SIZE < 1 ) - #define vQueueAddToRegistry( xQueue, pcName ) - #define vQueueUnregisterQueue( xQueue ) - #define pcQueueGetName( xQueue ) -#endif - -#ifndef portPOINTER_SIZE_TYPE - #define portPOINTER_SIZE_TYPE uint32_t -#endif - -/* Remove any unused trace macros. */ -#ifndef traceSTART - /* Used to perform any necessary initialisation - for example, open a file - into which trace is to be written. */ - #define traceSTART() -#endif - -#ifndef traceEND - /* Use to close a trace, for example close a file into which trace has been - written. */ - #define traceEND() -#endif - -#ifndef traceTASK_SWITCHED_IN - /* Called after a task has been selected to run. pxCurrentTCB holds a pointer - to the task control block of the selected task. */ - #define traceTASK_SWITCHED_IN() -#endif - -#ifndef traceINCREASE_TICK_COUNT - /* Called before stepping the tick count after waking from tickless idle - sleep. */ - #define traceINCREASE_TICK_COUNT( x ) -#endif - -#ifndef traceLOW_POWER_IDLE_BEGIN - /* Called immediately before entering tickless idle. */ - #define traceLOW_POWER_IDLE_BEGIN() -#endif - -#ifndef traceLOW_POWER_IDLE_END - /* Called when returning to the Idle task after a tickless idle. */ - #define traceLOW_POWER_IDLE_END() -#endif - -#ifndef traceTASK_SWITCHED_OUT - /* Called before a task has been selected to run. pxCurrentTCB holds a pointer - to the task control block of the task being switched out. */ - #define traceTASK_SWITCHED_OUT() -#endif - -#ifndef traceTASK_PRIORITY_INHERIT - /* Called when a task attempts to take a mutex that is already held by a - lower priority task. pxTCBOfMutexHolder is a pointer to the TCB of the task - that holds the mutex. uxInheritedPriority is the priority the mutex holder - will inherit (the priority of the task that is attempting to obtain the - muted. */ - #define traceTASK_PRIORITY_INHERIT( pxTCBOfMutexHolder, uxInheritedPriority ) -#endif - -#ifndef traceTASK_PRIORITY_DISINHERIT - /* Called when a task releases a mutex, the holding of which had resulted in - the task inheriting the priority of a higher priority task. - pxTCBOfMutexHolder is a pointer to the TCB of the task that is releasing the - mutex. uxOriginalPriority is the task's configured (base) priority. */ - #define traceTASK_PRIORITY_DISINHERIT( pxTCBOfMutexHolder, uxOriginalPriority ) -#endif - -#ifndef traceBLOCKING_ON_QUEUE_RECEIVE - /* Task is about to block because it cannot read from a - queue/mutex/semaphore. pxQueue is a pointer to the queue/mutex/semaphore - upon which the read was attempted. pxCurrentTCB points to the TCB of the - task that attempted the read. */ - #define traceBLOCKING_ON_QUEUE_RECEIVE( pxQueue ) -#endif - -#ifndef traceBLOCKING_ON_QUEUE_PEEK - /* Task is about to block because it cannot read from a - queue/mutex/semaphore. pxQueue is a pointer to the queue/mutex/semaphore - upon which the read was attempted. pxCurrentTCB points to the TCB of the - task that attempted the read. */ - #define traceBLOCKING_ON_QUEUE_PEEK( pxQueue ) -#endif - -#ifndef traceBLOCKING_ON_QUEUE_SEND - /* Task is about to block because it cannot write to a - queue/mutex/semaphore. pxQueue is a pointer to the queue/mutex/semaphore - upon which the write was attempted. pxCurrentTCB points to the TCB of the - task that attempted the write. */ - #define traceBLOCKING_ON_QUEUE_SEND( pxQueue ) -#endif - -#ifndef configCHECK_FOR_STACK_OVERFLOW - #define configCHECK_FOR_STACK_OVERFLOW 0 -#endif - -#ifndef configRECORD_STACK_HIGH_ADDRESS - #define configRECORD_STACK_HIGH_ADDRESS 0 -#endif - -#ifndef configINCLUDE_FREERTOS_TASK_C_ADDITIONS_H - #define configINCLUDE_FREERTOS_TASK_C_ADDITIONS_H 0 -#endif - -/* The following event macros are embedded in the kernel API calls. */ - -#ifndef traceMOVED_TASK_TO_READY_STATE - #define traceMOVED_TASK_TO_READY_STATE( pxTCB ) -#endif - -#ifndef tracePOST_MOVED_TASK_TO_READY_STATE - #define tracePOST_MOVED_TASK_TO_READY_STATE( pxTCB ) -#endif - -#ifndef traceQUEUE_CREATE - #define traceQUEUE_CREATE( pxNewQueue ) -#endif - -#ifndef traceQUEUE_CREATE_FAILED - #define traceQUEUE_CREATE_FAILED( ucQueueType ) -#endif - -#ifndef traceCREATE_MUTEX - #define traceCREATE_MUTEX( pxNewQueue ) -#endif - -#ifndef traceCREATE_MUTEX_FAILED - #define traceCREATE_MUTEX_FAILED() -#endif - -#ifndef traceGIVE_MUTEX_RECURSIVE - #define traceGIVE_MUTEX_RECURSIVE( pxMutex ) -#endif - -#ifndef traceGIVE_MUTEX_RECURSIVE_FAILED - #define traceGIVE_MUTEX_RECURSIVE_FAILED( pxMutex ) -#endif - -#ifndef traceTAKE_MUTEX_RECURSIVE - #define traceTAKE_MUTEX_RECURSIVE( pxMutex ) -#endif - -#ifndef traceTAKE_MUTEX_RECURSIVE_FAILED - #define traceTAKE_MUTEX_RECURSIVE_FAILED( pxMutex ) -#endif - -#ifndef traceCREATE_COUNTING_SEMAPHORE - #define traceCREATE_COUNTING_SEMAPHORE() -#endif - -#ifndef traceCREATE_COUNTING_SEMAPHORE_FAILED - #define traceCREATE_COUNTING_SEMAPHORE_FAILED() -#endif - -#ifndef traceQUEUE_SEND - #define traceQUEUE_SEND( pxQueue ) -#endif - -#ifndef traceQUEUE_SEND_FAILED - #define traceQUEUE_SEND_FAILED( pxQueue ) -#endif - -#ifndef traceQUEUE_RECEIVE - #define traceQUEUE_RECEIVE( pxQueue ) -#endif - -#ifndef traceQUEUE_PEEK - #define traceQUEUE_PEEK( pxQueue ) -#endif - -#ifndef traceQUEUE_PEEK_FAILED - #define traceQUEUE_PEEK_FAILED( pxQueue ) -#endif - -#ifndef traceQUEUE_PEEK_FROM_ISR - #define traceQUEUE_PEEK_FROM_ISR( pxQueue ) -#endif - -#ifndef traceQUEUE_RECEIVE_FAILED - #define traceQUEUE_RECEIVE_FAILED( pxQueue ) -#endif - -#ifndef traceQUEUE_SEND_FROM_ISR - #define traceQUEUE_SEND_FROM_ISR( pxQueue ) -#endif - -#ifndef traceQUEUE_SEND_FROM_ISR_FAILED - #define traceQUEUE_SEND_FROM_ISR_FAILED( pxQueue ) -#endif - -#ifndef traceQUEUE_RECEIVE_FROM_ISR - #define traceQUEUE_RECEIVE_FROM_ISR( pxQueue ) -#endif - -#ifndef traceQUEUE_RECEIVE_FROM_ISR_FAILED - #define traceQUEUE_RECEIVE_FROM_ISR_FAILED( pxQueue ) -#endif - -#ifndef traceQUEUE_PEEK_FROM_ISR_FAILED - #define traceQUEUE_PEEK_FROM_ISR_FAILED( pxQueue ) -#endif - -#ifndef traceQUEUE_DELETE - #define traceQUEUE_DELETE( pxQueue ) -#endif - -#ifndef traceTASK_CREATE - #define traceTASK_CREATE( pxNewTCB ) -#endif - -#ifndef traceTASK_CREATE_FAILED - #define traceTASK_CREATE_FAILED() -#endif - -#ifndef traceTASK_DELETE - #define traceTASK_DELETE( pxTaskToDelete ) -#endif - -#ifndef traceTASK_DELAY_UNTIL - #define traceTASK_DELAY_UNTIL( x ) -#endif - -#ifndef traceTASK_DELAY - #define traceTASK_DELAY() -#endif - -#ifndef traceTASK_PRIORITY_SET - #define traceTASK_PRIORITY_SET( pxTask, uxNewPriority ) -#endif - -#ifndef traceTASK_SUSPEND - #define traceTASK_SUSPEND( pxTaskToSuspend ) -#endif - -#ifndef traceTASK_RESUME - #define traceTASK_RESUME( pxTaskToResume ) -#endif - -#ifndef traceTASK_RESUME_FROM_ISR - #define traceTASK_RESUME_FROM_ISR( pxTaskToResume ) -#endif - -#ifndef traceTASK_INCREMENT_TICK - #define traceTASK_INCREMENT_TICK( xTickCount ) -#endif - -#ifndef traceTIMER_CREATE - #define traceTIMER_CREATE( pxNewTimer ) -#endif - -#ifndef traceTIMER_CREATE_FAILED - #define traceTIMER_CREATE_FAILED() -#endif - -#ifndef traceTIMER_COMMAND_SEND - #define traceTIMER_COMMAND_SEND( xTimer, xMessageID, xMessageValueValue, xReturn ) -#endif - -#ifndef traceTIMER_EXPIRED - #define traceTIMER_EXPIRED( pxTimer ) -#endif - -#ifndef traceTIMER_COMMAND_RECEIVED - #define traceTIMER_COMMAND_RECEIVED( pxTimer, xMessageID, xMessageValue ) -#endif - -#ifndef traceMALLOC - #define traceMALLOC( pvAddress, uiSize ) -#endif - -#ifndef traceFREE - #define traceFREE( pvAddress, uiSize ) -#endif - -#ifndef traceEVENT_GROUP_CREATE - #define traceEVENT_GROUP_CREATE( xEventGroup ) -#endif - -#ifndef traceEVENT_GROUP_CREATE_FAILED - #define traceEVENT_GROUP_CREATE_FAILED() -#endif - -#ifndef traceEVENT_GROUP_SYNC_BLOCK - #define traceEVENT_GROUP_SYNC_BLOCK( xEventGroup, uxBitsToSet, uxBitsToWaitFor ) -#endif - -#ifndef traceEVENT_GROUP_SYNC_END - #define traceEVENT_GROUP_SYNC_END( xEventGroup, uxBitsToSet, uxBitsToWaitFor, xTimeoutOccurred ) ( void ) xTimeoutOccurred -#endif - -#ifndef traceEVENT_GROUP_WAIT_BITS_BLOCK - #define traceEVENT_GROUP_WAIT_BITS_BLOCK( xEventGroup, uxBitsToWaitFor ) -#endif - -#ifndef traceEVENT_GROUP_WAIT_BITS_END - #define traceEVENT_GROUP_WAIT_BITS_END( xEventGroup, uxBitsToWaitFor, xTimeoutOccurred ) ( void ) xTimeoutOccurred -#endif - -#ifndef traceEVENT_GROUP_CLEAR_BITS - #define traceEVENT_GROUP_CLEAR_BITS( xEventGroup, uxBitsToClear ) -#endif - -#ifndef traceEVENT_GROUP_CLEAR_BITS_FROM_ISR - #define traceEVENT_GROUP_CLEAR_BITS_FROM_ISR( xEventGroup, uxBitsToClear ) -#endif - -#ifndef traceEVENT_GROUP_SET_BITS - #define traceEVENT_GROUP_SET_BITS( xEventGroup, uxBitsToSet ) -#endif - -#ifndef traceEVENT_GROUP_SET_BITS_FROM_ISR - #define traceEVENT_GROUP_SET_BITS_FROM_ISR( xEventGroup, uxBitsToSet ) -#endif - -#ifndef traceEVENT_GROUP_DELETE - #define traceEVENT_GROUP_DELETE( xEventGroup ) -#endif - -#ifndef tracePEND_FUNC_CALL - #define tracePEND_FUNC_CALL(xFunctionToPend, pvParameter1, ulParameter2, ret) -#endif - -#ifndef tracePEND_FUNC_CALL_FROM_ISR - #define tracePEND_FUNC_CALL_FROM_ISR(xFunctionToPend, pvParameter1, ulParameter2, ret) -#endif - -#ifndef traceQUEUE_REGISTRY_ADD - #define traceQUEUE_REGISTRY_ADD(xQueue, pcQueueName) -#endif - -#ifndef traceTASK_NOTIFY_TAKE_BLOCK - #define traceTASK_NOTIFY_TAKE_BLOCK() -#endif - -#ifndef traceTASK_NOTIFY_TAKE - #define traceTASK_NOTIFY_TAKE() -#endif - -#ifndef traceTASK_NOTIFY_WAIT_BLOCK - #define traceTASK_NOTIFY_WAIT_BLOCK() -#endif - -#ifndef traceTASK_NOTIFY_WAIT - #define traceTASK_NOTIFY_WAIT() -#endif - -#ifndef traceTASK_NOTIFY - #define traceTASK_NOTIFY() -#endif - -#ifndef traceTASK_NOTIFY_FROM_ISR - #define traceTASK_NOTIFY_FROM_ISR() -#endif - -#ifndef traceTASK_NOTIFY_GIVE_FROM_ISR - #define traceTASK_NOTIFY_GIVE_FROM_ISR() -#endif - -#ifndef traceSTREAM_BUFFER_CREATE_FAILED - #define traceSTREAM_BUFFER_CREATE_FAILED( xIsMessageBuffer ) -#endif - -#ifndef traceSTREAM_BUFFER_CREATE_STATIC_FAILED - #define traceSTREAM_BUFFER_CREATE_STATIC_FAILED( xReturn, xIsMessageBuffer ) -#endif - -#ifndef traceSTREAM_BUFFER_CREATE - #define traceSTREAM_BUFFER_CREATE( pxStreamBuffer, xIsMessageBuffer ) -#endif - -#ifndef traceSTREAM_BUFFER_DELETE - #define traceSTREAM_BUFFER_DELETE( xStreamBuffer ) -#endif - -#ifndef traceSTREAM_BUFFER_RESET - #define traceSTREAM_BUFFER_RESET( xStreamBuffer ) -#endif - -#ifndef traceBLOCKING_ON_STREAM_BUFFER_SEND - #define traceBLOCKING_ON_STREAM_BUFFER_SEND( xStreamBuffer ) -#endif - -#ifndef traceSTREAM_BUFFER_SEND - #define traceSTREAM_BUFFER_SEND( xStreamBuffer, xBytesSent ) -#endif - -#ifndef traceSTREAM_BUFFER_SEND_FAILED - #define traceSTREAM_BUFFER_SEND_FAILED( xStreamBuffer ) -#endif - -#ifndef traceSTREAM_BUFFER_SEND_FROM_ISR - #define traceSTREAM_BUFFER_SEND_FROM_ISR( xStreamBuffer, xBytesSent ) -#endif - -#ifndef traceBLOCKING_ON_STREAM_BUFFER_RECEIVE - #define traceBLOCKING_ON_STREAM_BUFFER_RECEIVE( xStreamBuffer ) -#endif - -#ifndef traceSTREAM_BUFFER_RECEIVE - #define traceSTREAM_BUFFER_RECEIVE( xStreamBuffer, xReceivedLength ) -#endif - -#ifndef traceSTREAM_BUFFER_RECEIVE_FAILED - #define traceSTREAM_BUFFER_RECEIVE_FAILED( xStreamBuffer ) -#endif - -#ifndef traceSTREAM_BUFFER_RECEIVE_FROM_ISR - #define traceSTREAM_BUFFER_RECEIVE_FROM_ISR( xStreamBuffer, xReceivedLength ) -#endif - -#ifndef configGENERATE_RUN_TIME_STATS - #define configGENERATE_RUN_TIME_STATS 0 -#endif - -#if ( configGENERATE_RUN_TIME_STATS == 1 ) - - #ifndef portCONFIGURE_TIMER_FOR_RUN_TIME_STATS - #error If configGENERATE_RUN_TIME_STATS is defined then portCONFIGURE_TIMER_FOR_RUN_TIME_STATS must also be defined. portCONFIGURE_TIMER_FOR_RUN_TIME_STATS should call a port layer function to setup a peripheral timer/counter that can then be used as the run time counter time base. - #endif /* portCONFIGURE_TIMER_FOR_RUN_TIME_STATS */ - - #ifndef portGET_RUN_TIME_COUNTER_VALUE - #ifndef portALT_GET_RUN_TIME_COUNTER_VALUE - #error If configGENERATE_RUN_TIME_STATS is defined then either portGET_RUN_TIME_COUNTER_VALUE or portALT_GET_RUN_TIME_COUNTER_VALUE must also be defined. See the examples provided and the FreeRTOS web site for more information. - #endif /* portALT_GET_RUN_TIME_COUNTER_VALUE */ - #endif /* portGET_RUN_TIME_COUNTER_VALUE */ - -#endif /* configGENERATE_RUN_TIME_STATS */ - -#ifndef portCONFIGURE_TIMER_FOR_RUN_TIME_STATS - #define portCONFIGURE_TIMER_FOR_RUN_TIME_STATS() -#endif - -#ifndef configUSE_MALLOC_FAILED_HOOK - #define configUSE_MALLOC_FAILED_HOOK 0 -#endif - -#ifndef portPRIVILEGE_BIT - #define portPRIVILEGE_BIT ( ( UBaseType_t ) 0x00 ) -#endif - -#ifndef portYIELD_WITHIN_API - #define portYIELD_WITHIN_API portYIELD -#endif - -#ifndef portSUPPRESS_TICKS_AND_SLEEP - #define portSUPPRESS_TICKS_AND_SLEEP( xExpectedIdleTime ) -#endif - -#ifndef configEXPECTED_IDLE_TIME_BEFORE_SLEEP - #define configEXPECTED_IDLE_TIME_BEFORE_SLEEP 2 -#endif - -#if configEXPECTED_IDLE_TIME_BEFORE_SLEEP < 2 - #error configEXPECTED_IDLE_TIME_BEFORE_SLEEP must not be less than 2 -#endif - -#ifndef configUSE_TICKLESS_IDLE - #define configUSE_TICKLESS_IDLE 0 -#endif - -#ifndef configPRE_SUPPRESS_TICKS_AND_SLEEP_PROCESSING - #define configPRE_SUPPRESS_TICKS_AND_SLEEP_PROCESSING( x ) -#endif - -#ifndef configPRE_SLEEP_PROCESSING - #define configPRE_SLEEP_PROCESSING( x ) -#endif - -#ifndef configPOST_SLEEP_PROCESSING - #define configPOST_SLEEP_PROCESSING( x ) -#endif - -#ifndef configUSE_QUEUE_SETS - #define configUSE_QUEUE_SETS 0 -#endif - -#ifndef portTASK_USES_FLOATING_POINT - #define portTASK_USES_FLOATING_POINT() -#endif - -#ifndef portALLOCATE_SECURE_CONTEXT - #define portALLOCATE_SECURE_CONTEXT( ulSecureStackSize ) -#endif - -#ifndef portDONT_DISCARD - #define portDONT_DISCARD -#endif - -#ifndef configUSE_TIME_SLICING - #define configUSE_TIME_SLICING 1 -#endif - -#ifndef configINCLUDE_APPLICATION_DEFINED_PRIVILEGED_FUNCTIONS - #define configINCLUDE_APPLICATION_DEFINED_PRIVILEGED_FUNCTIONS 0 -#endif - -#ifndef configUSE_STATS_FORMATTING_FUNCTIONS - #define configUSE_STATS_FORMATTING_FUNCTIONS 0 -#endif - -#ifndef portASSERT_IF_INTERRUPT_PRIORITY_INVALID - #define portASSERT_IF_INTERRUPT_PRIORITY_INVALID() -#endif - -#ifndef configUSE_TRACE_FACILITY - #define configUSE_TRACE_FACILITY 0 -#endif - -#ifndef mtCOVERAGE_TEST_MARKER - #define mtCOVERAGE_TEST_MARKER() -#endif - -#ifndef mtCOVERAGE_TEST_DELAY - #define mtCOVERAGE_TEST_DELAY() -#endif - -#ifndef portASSERT_IF_IN_ISR - #define portASSERT_IF_IN_ISR() -#endif - -#ifndef configUSE_PORT_OPTIMISED_TASK_SELECTION - #define configUSE_PORT_OPTIMISED_TASK_SELECTION 0 -#endif - -#ifndef configAPPLICATION_ALLOCATED_HEAP - #define configAPPLICATION_ALLOCATED_HEAP 0 -#endif - -#ifndef configUSE_TASK_NOTIFICATIONS - #define configUSE_TASK_NOTIFICATIONS 1 -#endif - -#ifndef configUSE_POSIX_ERRNO - #define configUSE_POSIX_ERRNO 0 -#endif - -#ifndef portTICK_TYPE_IS_ATOMIC - #define portTICK_TYPE_IS_ATOMIC 0 -#endif - -#ifndef configSUPPORT_STATIC_ALLOCATION - /* Defaults to 0 for backward compatibility. */ - #define configSUPPORT_STATIC_ALLOCATION 0 -#endif - -#ifndef configSUPPORT_DYNAMIC_ALLOCATION - /* Defaults to 1 for backward compatibility. */ - #define configSUPPORT_DYNAMIC_ALLOCATION 1 -#endif - -#ifndef configSTACK_DEPTH_TYPE - /* Defaults to uint16_t for backward compatibility, but can be overridden - in FreeRTOSConfig.h if uint16_t is too restrictive. */ - #define configSTACK_DEPTH_TYPE uint16_t -#endif - -#ifndef configMESSAGE_BUFFER_LENGTH_TYPE - /* Defaults to size_t for backward compatibility, but can be overridden - in FreeRTOSConfig.h if lengths will always be less than the number of bytes - in a size_t. */ - #define configMESSAGE_BUFFER_LENGTH_TYPE size_t -#endif - -/* Sanity check the configuration. */ -#if( configUSE_TICKLESS_IDLE != 0 ) - #if( INCLUDE_vTaskSuspend != 1 ) - #error INCLUDE_vTaskSuspend must be set to 1 if configUSE_TICKLESS_IDLE is not set to 0 - #endif /* INCLUDE_vTaskSuspend */ -#endif /* configUSE_TICKLESS_IDLE */ - -#if( ( configSUPPORT_STATIC_ALLOCATION == 0 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 0 ) ) - #error configSUPPORT_STATIC_ALLOCATION and configSUPPORT_DYNAMIC_ALLOCATION cannot both be 0, but can both be 1. -#endif - -#if( ( configUSE_RECURSIVE_MUTEXES == 1 ) && ( configUSE_MUTEXES != 1 ) ) - #error configUSE_MUTEXES must be set to 1 to use recursive mutexes -#endif - -#ifndef configINITIAL_TICK_COUNT - #define configINITIAL_TICK_COUNT 0 -#endif - -#if( portTICK_TYPE_IS_ATOMIC == 0 ) - /* Either variables of tick type cannot be read atomically, or - portTICK_TYPE_IS_ATOMIC was not set - map the critical sections used when - the tick count is returned to the standard critical section macros. */ - #define portTICK_TYPE_ENTER_CRITICAL() portENTER_CRITICAL() - #define portTICK_TYPE_EXIT_CRITICAL() portEXIT_CRITICAL() - #define portTICK_TYPE_SET_INTERRUPT_MASK_FROM_ISR() portSET_INTERRUPT_MASK_FROM_ISR() - #define portTICK_TYPE_CLEAR_INTERRUPT_MASK_FROM_ISR( x ) portCLEAR_INTERRUPT_MASK_FROM_ISR( ( x ) ) -#else - /* The tick type can be read atomically, so critical sections used when the - tick count is returned can be defined away. */ - #define portTICK_TYPE_ENTER_CRITICAL() - #define portTICK_TYPE_EXIT_CRITICAL() - #define portTICK_TYPE_SET_INTERRUPT_MASK_FROM_ISR() 0 - #define portTICK_TYPE_CLEAR_INTERRUPT_MASK_FROM_ISR( x ) ( void ) x -#endif - -/* Definitions to allow backward compatibility with FreeRTOS versions prior to -V8 if desired. */ -#ifndef configENABLE_BACKWARD_COMPATIBILITY - #define configENABLE_BACKWARD_COMPATIBILITY 1 -#endif - -#ifndef configPRINTF - /* configPRINTF() was not defined, so define it away to nothing. To use - configPRINTF() then define it as follows (where MyPrintFunction() is - provided by the application writer): - - void MyPrintFunction(const char *pcFormat, ... ); - #define configPRINTF( X ) MyPrintFunction X - - Then call like a standard printf() function, but placing brackets around - all parameters so they are passed as a single parameter. For example: - configPRINTF( ("Value = %d", MyVariable) ); */ - #define configPRINTF( X ) -#endif - -#ifndef configMAX - /* The application writer has not provided their own MAX macro, so define - the following generic implementation. */ - #define configMAX( a, b ) ( ( ( a ) > ( b ) ) ? ( a ) : ( b ) ) -#endif - -#ifndef configMIN - /* The application writer has not provided their own MAX macro, so define - the following generic implementation. */ - #define configMIN( a, b ) ( ( ( a ) < ( b ) ) ? ( a ) : ( b ) ) -#endif - -#if configENABLE_BACKWARD_COMPATIBILITY == 1 - #define eTaskStateGet eTaskGetState - #define portTickType TickType_t - #define xTaskHandle TaskHandle_t - #define xQueueHandle QueueHandle_t - #define xSemaphoreHandle SemaphoreHandle_t - #define xQueueSetHandle QueueSetHandle_t - #define xQueueSetMemberHandle QueueSetMemberHandle_t - #define xTimeOutType TimeOut_t - #define xMemoryRegion MemoryRegion_t - #define xTaskParameters TaskParameters_t - #define xTaskStatusType TaskStatus_t - #define xTimerHandle TimerHandle_t - #define xCoRoutineHandle CoRoutineHandle_t - #define pdTASK_HOOK_CODE TaskHookFunction_t - #define portTICK_RATE_MS portTICK_PERIOD_MS - #define pcTaskGetTaskName pcTaskGetName - #define pcTimerGetTimerName pcTimerGetName - #define pcQueueGetQueueName pcQueueGetName - #define vTaskGetTaskInfo vTaskGetInfo - #define xTaskGetIdleRunTimeCounter ulTaskGetIdleRunTimeCounter - - /* Backward compatibility within the scheduler code only - these definitions - are not really required but are included for completeness. */ - #define tmrTIMER_CALLBACK TimerCallbackFunction_t - #define pdTASK_CODE TaskFunction_t - #define xListItem ListItem_t - #define xList List_t - - /* For libraries that break the list data hiding, and access list structure - members directly (which is not supposed to be done). */ - #define pxContainer pvContainer -#endif /* configENABLE_BACKWARD_COMPATIBILITY */ - -#if( configUSE_ALTERNATIVE_API != 0 ) - #error The alternative API was deprecated some time ago, and was removed in FreeRTOS V9.0 0 -#endif - -/* Set configUSE_TASK_FPU_SUPPORT to 0 to omit floating point support even -if floating point hardware is otherwise supported by the FreeRTOS port in use. -This constant is not supported by all FreeRTOS ports that include floating -point support. */ -#ifndef configUSE_TASK_FPU_SUPPORT - #define configUSE_TASK_FPU_SUPPORT 1 -#endif - -/* Set configENABLE_MPU to 1 to enable MPU support and 0 to disable it. This is -currently used in ARMv8M ports. */ -#ifndef configENABLE_MPU - #define configENABLE_MPU 0 -#endif - -/* Set configENABLE_FPU to 1 to enable FPU support and 0 to disable it. This is -currently used in ARMv8M ports. */ -#ifndef configENABLE_FPU - #define configENABLE_FPU 1 -#endif - -/* Set configENABLE_TRUSTZONE to 1 enable TrustZone support and 0 to disable it. -This is currently used in ARMv8M ports. */ -#ifndef configENABLE_TRUSTZONE - #define configENABLE_TRUSTZONE 1 -#endif - -/* Set configRUN_FREERTOS_SECURE_ONLY to 1 to run the FreeRTOS ARMv8M port on -the Secure Side only. */ -#ifndef configRUN_FREERTOS_SECURE_ONLY - #define configRUN_FREERTOS_SECURE_ONLY 0 -#endif - -/* Sometimes the FreeRTOSConfig.h settings only allow a task to be created using - * dynamically allocated RAM, in which case when any task is deleted it is known - * that both the task's stack and TCB need to be freed. Sometimes the - * FreeRTOSConfig.h settings only allow a task to be created using statically - * allocated RAM, in which case when any task is deleted it is known that neither - * the task's stack or TCB should be freed. Sometimes the FreeRTOSConfig.h - * settings allow a task to be created using either statically or dynamically - * allocated RAM, in which case a member of the TCB is used to record whether the - * stack and/or TCB were allocated statically or dynamically, so when a task is - * deleted the RAM that was allocated dynamically is freed again and no attempt is - * made to free the RAM that was allocated statically. - * tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE is only true if it is possible for a - * task to be created using either statically or dynamically allocated RAM. Note - * that if portUSING_MPU_WRAPPERS is 1 then a protected task can be created with - * a statically allocated stack and a dynamically allocated TCB. - * - * The following table lists various combinations of portUSING_MPU_WRAPPERS, - * configSUPPORT_DYNAMIC_ALLOCATION and configSUPPORT_STATIC_ALLOCATION and - * when it is possible to have both static and dynamic allocation: - * +-----+---------+--------+-----------------------------+-----------------------------------+------------------+-----------+ - * | MPU | Dynamic | Static | Available Functions | Possible Allocations | Both Dynamic and | Need Free | - * | | | | | | Static Possible | | - * +-----+---------+--------+-----------------------------+-----------------------------------+------------------+-----------+ - * | 0 | 0 | 1 | xTaskCreateStatic | TCB - Static, Stack - Static | No | No | - * +-----|---------|--------|-----------------------------|-----------------------------------|------------------|-----------| - * | 0 | 1 | 0 | xTaskCreate | TCB - Dynamic, Stack - Dynamic | No | Yes | - * +-----|---------|--------|-----------------------------|-----------------------------------|------------------|-----------| - * | 0 | 1 | 1 | xTaskCreate, | 1. TCB - Dynamic, Stack - Dynamic | Yes | Yes | - * | | | | xTaskCreateStatic | 2. TCB - Static, Stack - Static | | | - * +-----|---------|--------|-----------------------------|-----------------------------------|------------------|-----------| - * | 1 | 0 | 1 | xTaskCreateStatic, | TCB - Static, Stack - Static | No | No | - * | | | | xTaskCreateRestrictedStatic | | | | - * +-----|---------|--------|-----------------------------|-----------------------------------|------------------|-----------| - * | 1 | 1 | 0 | xTaskCreate, | 1. TCB - Dynamic, Stack - Dynamic | Yes | Yes | - * | | | | xTaskCreateRestricted | 2. TCB - Dynamic, Stack - Static | | | - * +-----|---------|--------|-----------------------------|-----------------------------------|------------------|-----------| - * | 1 | 1 | 1 | xTaskCreate, | 1. TCB - Dynamic, Stack - Dynamic | Yes | Yes | - * | | | | xTaskCreateStatic, | 2. TCB - Dynamic, Stack - Static | | | - * | | | | xTaskCreateRestricted, | 3. TCB - Static, Stack - Static | | | - * | | | | xTaskCreateRestrictedStatic | | | | - * +-----+---------+--------+-----------------------------+-----------------------------------+------------------+-----------+ - */ -#define tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE ( ( ( portUSING_MPU_WRAPPERS == 0 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) && ( configSUPPORT_STATIC_ALLOCATION == 1 ) ) || \ - ( ( portUSING_MPU_WRAPPERS == 1 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) ) ) - -/* - * In line with software engineering best practice, FreeRTOS implements a strict - * data hiding policy, so the real structures used by FreeRTOS to maintain the - * state of tasks, queues, semaphores, etc. are not accessible to the application - * code. However, if the application writer wants to statically allocate such - * an object then the size of the object needs to be know. Dummy structures - * that are guaranteed to have the same size and alignment requirements of the - * real objects are used for this purpose. The dummy list and list item - * structures below are used for inclusion in such a dummy structure. - */ -struct xSTATIC_LIST_ITEM -{ - #if( configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES == 1 ) - TickType_t xDummy1; - #endif - TickType_t xDummy2; - void *pvDummy3[ 4 ]; - #if( configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES == 1 ) - TickType_t xDummy4; - #endif -}; -typedef struct xSTATIC_LIST_ITEM StaticListItem_t; - -/* See the comments above the struct xSTATIC_LIST_ITEM definition. */ -struct xSTATIC_MINI_LIST_ITEM -{ - #if( configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES == 1 ) - TickType_t xDummy1; - #endif - TickType_t xDummy2; - void *pvDummy3[ 2 ]; -}; -typedef struct xSTATIC_MINI_LIST_ITEM StaticMiniListItem_t; - -/* See the comments above the struct xSTATIC_LIST_ITEM definition. */ -typedef struct xSTATIC_LIST -{ - #if( configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES == 1 ) - TickType_t xDummy1; - #endif - UBaseType_t uxDummy2; - void *pvDummy3; - StaticMiniListItem_t xDummy4; - #if( configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES == 1 ) - TickType_t xDummy5; - #endif -} StaticList_t; - -/* - * In line with software engineering best practice, especially when supplying a - * library that is likely to change in future versions, FreeRTOS implements a - * strict data hiding policy. This means the Task structure used internally by - * FreeRTOS is not accessible to application code. However, if the application - * writer wants to statically allocate the memory required to create a task then - * the size of the task object needs to be know. The StaticTask_t structure - * below is provided for this purpose. Its sizes and alignment requirements are - * guaranteed to match those of the genuine structure, no matter which - * architecture is being used, and no matter how the values in FreeRTOSConfig.h - * are set. Its contents are somewhat obfuscated in the hope users will - * recognise that it would be unwise to make direct use of the structure members. - */ -typedef struct xSTATIC_TCB -{ - void *pxDummy1; - #if ( portUSING_MPU_WRAPPERS == 1 ) - xMPU_SETTINGS xDummy2; - #endif - StaticListItem_t xDummy3[ 2 ]; - UBaseType_t uxDummy5; - void *pxDummy6; - uint8_t ucDummy7[ configMAX_TASK_NAME_LEN ]; - #if ( ( portSTACK_GROWTH > 0 ) || ( configRECORD_STACK_HIGH_ADDRESS == 1 ) ) - void *pxDummy8; - #endif - #if ( portCRITICAL_NESTING_IN_TCB == 1 ) - UBaseType_t uxDummy9; - #endif - #if ( configUSE_TRACE_FACILITY == 1 ) - UBaseType_t uxDummy10[ 2 ]; - #endif - #if ( configUSE_MUTEXES == 1 ) - UBaseType_t uxDummy12[ 2 ]; - #endif - #if ( configUSE_APPLICATION_TASK_TAG == 1 ) - void *pxDummy14; - #endif - #if( configNUM_THREAD_LOCAL_STORAGE_POINTERS > 0 ) - void *pvDummy15[ configNUM_THREAD_LOCAL_STORAGE_POINTERS ]; - #endif - #if ( configGENERATE_RUN_TIME_STATS == 1 ) - uint32_t ulDummy16; - #endif - #if ( configUSE_NEWLIB_REENTRANT == 1 ) - struct _reent xDummy17; - #endif - #if ( configUSE_TASK_NOTIFICATIONS == 1 ) - uint32_t ulDummy18; - uint8_t ucDummy19; - #endif - #if ( tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE != 0 ) - uint8_t uxDummy20; - #endif - - #if( INCLUDE_xTaskAbortDelay == 1 ) - uint8_t ucDummy21; - #endif - #if ( configUSE_POSIX_ERRNO == 1 ) - int iDummy22; - #endif -} StaticTask_t; - -/* - * In line with software engineering best practice, especially when supplying a - * library that is likely to change in future versions, FreeRTOS implements a - * strict data hiding policy. This means the Queue structure used internally by - * FreeRTOS is not accessible to application code. However, if the application - * writer wants to statically allocate the memory required to create a queue - * then the size of the queue object needs to be know. The StaticQueue_t - * structure below is provided for this purpose. Its sizes and alignment - * requirements are guaranteed to match those of the genuine structure, no - * matter which architecture is being used, and no matter how the values in - * FreeRTOSConfig.h are set. Its contents are somewhat obfuscated in the hope - * users will recognise that it would be unwise to make direct use of the - * structure members. - */ -typedef struct xSTATIC_QUEUE -{ - void *pvDummy1[ 3 ]; - - union - { - void *pvDummy2; - UBaseType_t uxDummy2; - } u; - - StaticList_t xDummy3[ 2 ]; - UBaseType_t uxDummy4[ 3 ]; - uint8_t ucDummy5[ 2 ]; - - #if( ( configSUPPORT_STATIC_ALLOCATION == 1 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) ) - uint8_t ucDummy6; - #endif - - #if ( configUSE_QUEUE_SETS == 1 ) - void *pvDummy7; - #endif - - #if ( configUSE_TRACE_FACILITY == 1 ) - UBaseType_t uxDummy8; - uint8_t ucDummy9; - #endif - -} StaticQueue_t; -typedef StaticQueue_t StaticSemaphore_t; - -/* - * In line with software engineering best practice, especially when supplying a - * library that is likely to change in future versions, FreeRTOS implements a - * strict data hiding policy. This means the event group structure used - * internally by FreeRTOS is not accessible to application code. However, if - * the application writer wants to statically allocate the memory required to - * create an event group then the size of the event group object needs to be - * know. The StaticEventGroup_t structure below is provided for this purpose. - * Its sizes and alignment requirements are guaranteed to match those of the - * genuine structure, no matter which architecture is being used, and no matter - * how the values in FreeRTOSConfig.h are set. Its contents are somewhat - * obfuscated in the hope users will recognise that it would be unwise to make - * direct use of the structure members. - */ -typedef struct xSTATIC_EVENT_GROUP -{ - TickType_t xDummy1; - StaticList_t xDummy2; - - #if( configUSE_TRACE_FACILITY == 1 ) - UBaseType_t uxDummy3; - #endif - - #if( ( configSUPPORT_STATIC_ALLOCATION == 1 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) ) - uint8_t ucDummy4; - #endif - -} StaticEventGroup_t; - -/* - * In line with software engineering best practice, especially when supplying a - * library that is likely to change in future versions, FreeRTOS implements a - * strict data hiding policy. This means the software timer structure used - * internally by FreeRTOS is not accessible to application code. However, if - * the application writer wants to statically allocate the memory required to - * create a software timer then the size of the queue object needs to be know. - * The StaticTimer_t structure below is provided for this purpose. Its sizes - * and alignment requirements are guaranteed to match those of the genuine - * structure, no matter which architecture is being used, and no matter how the - * values in FreeRTOSConfig.h are set. Its contents are somewhat obfuscated in - * the hope users will recognise that it would be unwise to make direct use of - * the structure members. - */ -typedef struct xSTATIC_TIMER -{ - void *pvDummy1; - StaticListItem_t xDummy2; - TickType_t xDummy3; - void *pvDummy5; - TaskFunction_t pvDummy6; - #if( configUSE_TRACE_FACILITY == 1 ) - UBaseType_t uxDummy7; - #endif - uint8_t ucDummy8; - -} StaticTimer_t; - -/* -* In line with software engineering best practice, especially when supplying a -* library that is likely to change in future versions, FreeRTOS implements a -* strict data hiding policy. This means the stream buffer structure used -* internally by FreeRTOS is not accessible to application code. However, if -* the application writer wants to statically allocate the memory required to -* create a stream buffer then the size of the stream buffer object needs to be -* know. The StaticStreamBuffer_t structure below is provided for this purpose. -* Its size and alignment requirements are guaranteed to match those of the -* genuine structure, no matter which architecture is being used, and no matter -* how the values in FreeRTOSConfig.h are set. Its contents are somewhat -* obfuscated in the hope users will recognise that it would be unwise to make -* direct use of the structure members. -*/ -typedef struct xSTATIC_STREAM_BUFFER -{ - size_t uxDummy1[ 4 ]; - void * pvDummy2[ 3 ]; - uint8_t ucDummy3; - #if ( configUSE_TRACE_FACILITY == 1 ) - UBaseType_t uxDummy4; - #endif -} StaticStreamBuffer_t; - -/* Message buffers are built on stream buffers. */ -typedef StaticStreamBuffer_t StaticMessageBuffer_t; - -#ifdef __cplusplus -} -#endif - -#endif /* INC_FREERTOS_H */ - diff --git a/rtos/freertos/abstraction_layer_freertos/include/StackMacros.h b/rtos/freertos/abstraction_layer_freertos/include/StackMacros.h deleted file mode 100644 index 63efd4d4..00000000 --- a/rtos/freertos/abstraction_layer_freertos/include/StackMacros.h +++ /dev/null @@ -1,133 +0,0 @@ -/* - * FreeRTOS Kernel V10.3.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. - * - * Permission is hereby granted, free of charge, to any person obtaining a copy of - * this software and associated documentation files (the "Software"), to deal in - * the Software without restriction, including without limitation the rights to - * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of - * the Software, and to permit persons to whom the Software is furnished to do so, - * subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS - * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR - * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER - * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - * - * http://www.FreeRTOS.org - * http://aws.amazon.com/freertos - * - * 1 tab == 4 spaces! - */ - -#ifndef STACK_MACROS_H -#define STACK_MACROS_H - -#ifndef _MSC_VER /* Visual Studio doesn't support #warning. */ - #warning The name of this file has changed to stack_macros.h. Please update your code accordingly. This source file (which has the original name) will be removed in future released. -#endif - -/* - * Call the stack overflow hook function if the stack of the task being swapped - * out is currently overflowed, or looks like it might have overflowed in the - * past. - * - * Setting configCHECK_FOR_STACK_OVERFLOW to 1 will cause the macro to check - * the current stack state only - comparing the current top of stack value to - * the stack limit. Setting configCHECK_FOR_STACK_OVERFLOW to greater than 1 - * will also cause the last few stack bytes to be checked to ensure the value - * to which the bytes were set when the task was created have not been - * overwritten. Note this second test does not guarantee that an overflowed - * stack will always be recognised. - */ - -/*-----------------------------------------------------------*/ - -#if( ( configCHECK_FOR_STACK_OVERFLOW == 1 ) && ( portSTACK_GROWTH < 0 ) ) - - /* Only the current stack state is to be checked. */ - #define taskCHECK_FOR_STACK_OVERFLOW() \ - { \ - /* Is the currently saved stack pointer within the stack limit? */ \ - if( pxCurrentTCB->pxTopOfStack <= pxCurrentTCB->pxStack ) \ - { \ - vApplicationStackOverflowHook( ( TaskHandle_t ) pxCurrentTCB, pxCurrentTCB->pcTaskName ); \ - } \ - } - -#endif /* configCHECK_FOR_STACK_OVERFLOW == 1 */ -/*-----------------------------------------------------------*/ - -#if( ( configCHECK_FOR_STACK_OVERFLOW == 1 ) && ( portSTACK_GROWTH > 0 ) ) - - /* Only the current stack state is to be checked. */ - #define taskCHECK_FOR_STACK_OVERFLOW() \ - { \ - \ - /* Is the currently saved stack pointer within the stack limit? */ \ - if( pxCurrentTCB->pxTopOfStack >= pxCurrentTCB->pxEndOfStack ) \ - { \ - vApplicationStackOverflowHook( ( TaskHandle_t ) pxCurrentTCB, pxCurrentTCB->pcTaskName ); \ - } \ - } - -#endif /* configCHECK_FOR_STACK_OVERFLOW == 1 */ -/*-----------------------------------------------------------*/ - -#if( ( configCHECK_FOR_STACK_OVERFLOW > 1 ) && ( portSTACK_GROWTH < 0 ) ) - - #define taskCHECK_FOR_STACK_OVERFLOW() \ - { \ - const uint32_t * const pulStack = ( uint32_t * ) pxCurrentTCB->pxStack; \ - const uint32_t ulCheckValue = ( uint32_t ) 0xa5a5a5a5; \ - \ - if( ( pulStack[ 0 ] != ulCheckValue ) || \ - ( pulStack[ 1 ] != ulCheckValue ) || \ - ( pulStack[ 2 ] != ulCheckValue ) || \ - ( pulStack[ 3 ] != ulCheckValue ) ) \ - { \ - vApplicationStackOverflowHook( ( TaskHandle_t ) pxCurrentTCB, pxCurrentTCB->pcTaskName ); \ - } \ - } - -#endif /* #if( configCHECK_FOR_STACK_OVERFLOW > 1 ) */ -/*-----------------------------------------------------------*/ - -#if( ( configCHECK_FOR_STACK_OVERFLOW > 1 ) && ( portSTACK_GROWTH > 0 ) ) - - #define taskCHECK_FOR_STACK_OVERFLOW() \ - { \ - int8_t *pcEndOfStack = ( int8_t * ) pxCurrentTCB->pxEndOfStack; \ - static const uint8_t ucExpectedStackBytes[] = { tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, \ - tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, \ - tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, \ - tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, \ - tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE }; \ - \ - \ - pcEndOfStack -= sizeof( ucExpectedStackBytes ); \ - \ - /* Has the extremity of the task stack ever been written over? */ \ - if( memcmp( ( void * ) pcEndOfStack, ( void * ) ucExpectedStackBytes, sizeof( ucExpectedStackBytes ) ) != 0 ) \ - { \ - vApplicationStackOverflowHook( ( TaskHandle_t ) pxCurrentTCB, pxCurrentTCB->pcTaskName ); \ - } \ - } - -#endif /* #if( configCHECK_FOR_STACK_OVERFLOW > 1 ) */ -/*-----------------------------------------------------------*/ - -/* Remove stack overflow macro if not being used. */ -#ifndef taskCHECK_FOR_STACK_OVERFLOW - #define taskCHECK_FOR_STACK_OVERFLOW() -#endif - - - -#endif /* STACK_MACROS_H */ - diff --git a/rtos/freertos/abstraction_layer_freertos/include/apb_soc.h b/rtos/freertos/abstraction_layer_freertos/include/apb_soc.h deleted file mode 100644 index 19825766..00000000 --- a/rtos/freertos/abstraction_layer_freertos/include/apb_soc.h +++ /dev/null @@ -1,155 +0,0 @@ -/* - * Copyright (C) 2020 ETH Zurich and University of Bologna - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * SPDX-License-Identifier: Apache-2.0 - */ - -/* Description: SoC configuration registers (apb_soc_ctrl) - * Authors: Germain Haugou (germain.haugou@iis.ee.ethz.ch) - * Robert Balas (balasr@iis.ee.ethz.ch) - */ - - -#ifndef __APB_SOC_H -#define __APB_SOC_H - -#define APB_SOC_BOOT_OTHER 0 -#define APB_SOC_BOOT_JTAG 1 -#define APB_SOC_BOOT_SPI 2 -#define APB_SOC_BOOT_ROM 3 -#define APB_SOC_BOOT_PRELOAD 4 -#define APB_SOC_BOOT_HYPER 5 -#define APB_SOC_BOOT_SPIM 6 -#define APB_SOC_BOOT_SPIM_QPI 7 - -#define APB_SOC_PLT_OTHER 0 -#define APB_SOC_PLT_FPGA 1 -#define APB_SOC_PLT_RTL 2 -#define APB_SOC_PLT_VP 3 -#define APB_SOC_PLT_CHIP 4 - -/* PADs configuration is made of 8bits out of which only the first 6 are used - * bit0 enable pull UP - * bit1 enable pull DOWN - * bit2 enable ST - * bit3 enable SlewRate Limit - * bit4..5 Driving Strength - * bit6..7 not used */ - -#define APB_SOC_BOOTADDR_OFFSET 0x04 -/* contains number of cores [31:16] and clusters [15:0] */ -#define APB_SOC_INFO_OFFSET 0x00 -/* not used at the moment */ -#define APB_SOC_INFOEXTD_OFFSET 0x04 -/* not used at the moment */ -#define APB_SOC_NOTUSED0_OFFSET 0x08 -/* not used at the moment */ -#define APB_SOC_CLUSTER_ISOLATE_OFFSET 0x0C - -#define APB_SOC_PADFUN0_OFFSET 0x10 -#define APB_SOC_PADCFG0_OFFSET 0x20 - -/* sets the mux for pins g*16+0 (bits [1:0]) to g*16+15 (bits [31:30]) */ -#define APB_SOC_PADFUN_OFFSET(g) (APB_SOC_PADFUN0_OFFSET + (g)*4) -#define APB_SOC_PADFUN_NO(pad) ((pad) >> 4) -#define APB_SOC_PADFUN_PAD(padfun) ((padfun)*16) -#define APB_SOC_PADFUN_SIZE 2 -#define ARCHI_APB_SOC_PADFUN_NB 4 -#define APB_SOC_PADFUN_BIT(pad) (((pad)&0xF) << 1) - -/* sets config for pin g*4+0(bits [7:0]) to pin g*4+3(bits [31:24]) */ -#define APB_SOC_PADCFG_OFFSET(g) (APB_SOC_PADCFG0_OFFSET + (g)*4) -#define APB_SOC_PADCFG_NO(pad) ((pad) >> 2) -#define APB_SOC_PADCFG_PAD(padfun) ((padfun)*4) -#define APB_SOC_PADCFG_SIZE 8 -#define APB_SOC_PADCFG_BIT(pad) (((pad)&0x3) << 3) - -#define APB_SOC_PWRCMD_OFFSET 0x60 // change power mode(not funtional yet) -/* configures power modes(not funtional yet) */ -#define APB_SOC_PWRCFG_OFFSET 0x64 -/* 32 bit GP register used by power pngmt routines to see if is hard or cold - * reboot */ -#define APB_SOC_PWRREG_OFFSET 0x68 -/* not used at the moment */ -#define APB_SOC_BUSY_OFFSET 0x6C -/* memory margin pins(not used at the moment) */ -#define APB_SOC_MMARGIN_OFFSET 0x70 -/* R/W register for interaction with the the chip environment */ -#define APB_SOC_JTAG_REG 0x74 -/* memory margin pins(not used at the moment) */ -#define APB_SOC_L2_SLEEP_OFFSET 0x78 -/* not used at the moment */ -#define APB_SOC_NOTUSED3_OFFSET 0x7C -/* soc clock divider(to be removed) */ -#define APB_SOC_CLKDIV0_OFFSET 0x80 -/* cluster clock divider(to be removed) */ -#define APB_SOC_CLKDIV1_OFFSET 0x84 -/* not used at the moment */ -#define APB_SOC_CLKDIV2_OFFSET 0x88 -/* not used at the moment */ -#define APB_SOC_CLKDIV3_OFFSET 0x8C -/* not used at the moment */ -#define APB_SOC_CLKDIV4_OFFSET 0x90 -/* not used at the moment */ -#define APB_SOC_NOTUSED4_OFFSET 0x94 -/* not used at the moment */ -#define APB_SOC_NOTUSED5_OFFSET 0x98 -/* not used at the moment */ -#define APB_SOC_NOTUSED6_OFFSET 0x9C -/* 32bit GP register to be used during testing to return EOC(bit[31]) and - * status(bit[30:0]) */ -#define APB_SOC_CORESTATUS_OFFSET 0xA0 -/* 32bit GP register to be used during testing to return EOC(bit[31]) and - * status(bit[30:0]) */ -#define APB_SOC_CORESTATUS_RO_OFFSET 0xC0 -#define APB_SOC_PADS_CONFIG 0xC4 - -#define APB_SOC_PADS_CONFIG_BOOTSEL_BIT 0 - -#define APB_SOC_JTAG_REG_EXT_BIT 8 -#define APB_SOC_JTAG_REG_EXT_WIDTH 4 - -#define APB_SOC_JTAG_REG_LOC_BIT 0 -#define APB_SOC_JTAG_REG_LOC_WIDTH 4 - -#define APB_SOC_INFO_CORES_OFFSET (APB_SOC_INFO_OFFSET + 2) -#define APB_SOC_INFO_CLUSTERS_OFFSET (APB_SOC_INFO_OFFSET) - -#define APB_SOC_STATUS_EOC_BIT 31 -#define APB_SOC_NB_CORE_BIT 16 - - -#define APB_SOC_BYPASS_OFFSET 0x70 - -#define APB_SOC_BYPASS_CLOCK_GATE_BIT 10 -#define APB_SOC_BYPASS_CLUSTER_STATE_BIT 3 -#define APB_SOC_BYPASS_USER0_BIT 14 -#define APB_SOC_BYPASS_USER1_BIT 15 - - -#define APB_SOC_FLL_CTRL_OFFSET 0xD0 -#define APB_SOC_CLKDIV_SOC_OFFSET 0xD4 -#define APB_SOC_CLKDIV_CLUSTER_OFFSET 0xD8 -#define APB_SOC_CLKDIV_PERIPH_OFFSET 0xDC - - -#define APB_SOC_FLL_CTRL_SOC_BIT 0 -#define APB_SOC_FLL_CTRL_CLUSTER_BIT 1 -#define APB_SOC_FLL_CTRL_PERIPH_BIT 2 - - -#define APB_SOC_RTC_OFFSET 0x1D0 - -#endif diff --git a/rtos/freertos/abstraction_layer_freertos/include/atomic.h b/rtos/freertos/abstraction_layer_freertos/include/atomic.h deleted file mode 100644 index d6009f67..00000000 --- a/rtos/freertos/abstraction_layer_freertos/include/atomic.h +++ /dev/null @@ -1,414 +0,0 @@ -/* - * FreeRTOS Kernel V10.3.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. - * - * Permission is hereby granted, free of charge, to any person obtaining a copy of - * this software and associated documentation files (the "Software"), to deal in - * the Software without restriction, including without limitation the rights to - * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of - * the Software, and to permit persons to whom the Software is furnished to do so, - * subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS - * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR - * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER - * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - * - * http://www.FreeRTOS.org - * http://aws.amazon.com/freertos - * - * 1 tab == 4 spaces! - */ - -/** - * @file atomic.h - * @brief FreeRTOS atomic operation support. - * - * This file implements atomic functions by disabling interrupts globally. - * Implementations with architecture specific atomic instructions can be - * provided under each compiler directory. - */ - -#ifndef ATOMIC_H -#define ATOMIC_H - -#ifndef INC_FREERTOS_H - #error "include FreeRTOS.h must appear in source files before include atomic.h" -#endif - -/* Standard includes. */ -#include - -#ifdef __cplusplus -extern "C" { -#endif - -/* - * Port specific definitions -- entering/exiting critical section. - * Refer template -- ./lib/FreeRTOS/portable/Compiler/Arch/portmacro.h - * - * Every call to ATOMIC_EXIT_CRITICAL() must be closely paired with - * ATOMIC_ENTER_CRITICAL(). - * - */ -#if defined( portSET_INTERRUPT_MASK_FROM_ISR ) - - /* Nested interrupt scheme is supported in this port. */ - #define ATOMIC_ENTER_CRITICAL() \ - UBaseType_t uxCriticalSectionType = portSET_INTERRUPT_MASK_FROM_ISR() - - #define ATOMIC_EXIT_CRITICAL() \ - portCLEAR_INTERRUPT_MASK_FROM_ISR( uxCriticalSectionType ) - -#else - - /* Nested interrupt scheme is NOT supported in this port. */ - #define ATOMIC_ENTER_CRITICAL() portENTER_CRITICAL() - #define ATOMIC_EXIT_CRITICAL() portEXIT_CRITICAL() - -#endif /* portSET_INTERRUPT_MASK_FROM_ISR() */ - -/* - * Port specific definition -- "always inline". - * Inline is compiler specific, and may not always get inlined depending on your - * optimization level. Also, inline is considered as performance optimization - * for atomic. Thus, if portFORCE_INLINE is not provided by portmacro.h, - * instead of resulting error, simply define it away. - */ -#ifndef portFORCE_INLINE - #define portFORCE_INLINE -#endif - -#define ATOMIC_COMPARE_AND_SWAP_SUCCESS 0x1U /**< Compare and swap succeeded, swapped. */ -#define ATOMIC_COMPARE_AND_SWAP_FAILURE 0x0U /**< Compare and swap failed, did not swap. */ - -/*----------------------------- Swap && CAS ------------------------------*/ - -/** - * Atomic compare-and-swap - * - * @brief Performs an atomic compare-and-swap operation on the specified values. - * - * @param[in, out] pulDestination Pointer to memory location from where value is - * to be loaded and checked. - * @param[in] ulExchange If condition meets, write this value to memory. - * @param[in] ulComparand Swap condition. - * - * @return Unsigned integer of value 1 or 0. 1 for swapped, 0 for not swapped. - * - * @note This function only swaps *pulDestination with ulExchange, if previous - * *pulDestination value equals ulComparand. - */ -static portFORCE_INLINE uint32_t Atomic_CompareAndSwap_u32( uint32_t volatile * pulDestination, - uint32_t ulExchange, - uint32_t ulComparand ) -{ -uint32_t ulReturnValue; - - ATOMIC_ENTER_CRITICAL(); - { - if( *pulDestination == ulComparand ) - { - *pulDestination = ulExchange; - ulReturnValue = ATOMIC_COMPARE_AND_SWAP_SUCCESS; - } - else - { - ulReturnValue = ATOMIC_COMPARE_AND_SWAP_FAILURE; - } - } - ATOMIC_EXIT_CRITICAL(); - - return ulReturnValue; -} -/*-----------------------------------------------------------*/ - -/** - * Atomic swap (pointers) - * - * @brief Atomically sets the address pointed to by *ppvDestination to the value - * of *pvExchange. - * - * @param[in, out] ppvDestination Pointer to memory location from where a pointer - * value is to be loaded and written back to. - * @param[in] pvExchange Pointer value to be written to *ppvDestination. - * - * @return The initial value of *ppvDestination. - */ -static portFORCE_INLINE void * Atomic_SwapPointers_p32( void * volatile * ppvDestination, - void * pvExchange ) -{ -void * pReturnValue; - - ATOMIC_ENTER_CRITICAL(); - { - pReturnValue = *ppvDestination; - *ppvDestination = pvExchange; - } - ATOMIC_EXIT_CRITICAL(); - - return pReturnValue; -} -/*-----------------------------------------------------------*/ - -/** - * Atomic compare-and-swap (pointers) - * - * @brief Performs an atomic compare-and-swap operation on the specified pointer - * values. - * - * @param[in, out] ppvDestination Pointer to memory location from where a pointer - * value is to be loaded and checked. - * @param[in] pvExchange If condition meets, write this value to memory. - * @param[in] pvComparand Swap condition. - * - * @return Unsigned integer of value 1 or 0. 1 for swapped, 0 for not swapped. - * - * @note This function only swaps *ppvDestination with pvExchange, if previous - * *ppvDestination value equals pvComparand. - */ -static portFORCE_INLINE uint32_t Atomic_CompareAndSwapPointers_p32( void * volatile * ppvDestination, - void * pvExchange, - void * pvComparand ) -{ -uint32_t ulReturnValue = ATOMIC_COMPARE_AND_SWAP_FAILURE; - - ATOMIC_ENTER_CRITICAL(); - { - if( *ppvDestination == pvComparand ) - { - *ppvDestination = pvExchange; - ulReturnValue = ATOMIC_COMPARE_AND_SWAP_SUCCESS; - } - } - ATOMIC_EXIT_CRITICAL(); - - return ulReturnValue; -} - - -/*----------------------------- Arithmetic ------------------------------*/ - -/** - * Atomic add - * - * @brief Atomically adds count to the value of the specified pointer points to. - * - * @param[in,out] pulAddend Pointer to memory location from where value is to be - * loaded and written back to. - * @param[in] ulCount Value to be added to *pulAddend. - * - * @return previous *pulAddend value. - */ -static portFORCE_INLINE uint32_t Atomic_Add_u32( uint32_t volatile * pulAddend, - uint32_t ulCount ) -{ - uint32_t ulCurrent; - - ATOMIC_ENTER_CRITICAL(); - { - ulCurrent = *pulAddend; - *pulAddend += ulCount; - } - ATOMIC_EXIT_CRITICAL(); - - return ulCurrent; -} -/*-----------------------------------------------------------*/ - -/** - * Atomic subtract - * - * @brief Atomically subtracts count from the value of the specified pointer - * pointers to. - * - * @param[in,out] pulAddend Pointer to memory location from where value is to be - * loaded and written back to. - * @param[in] ulCount Value to be subtract from *pulAddend. - * - * @return previous *pulAddend value. - */ -static portFORCE_INLINE uint32_t Atomic_Subtract_u32( uint32_t volatile * pulAddend, - uint32_t ulCount ) -{ - uint32_t ulCurrent; - - ATOMIC_ENTER_CRITICAL(); - { - ulCurrent = *pulAddend; - *pulAddend -= ulCount; - } - ATOMIC_EXIT_CRITICAL(); - - return ulCurrent; -} -/*-----------------------------------------------------------*/ - -/** - * Atomic increment - * - * @brief Atomically increments the value of the specified pointer points to. - * - * @param[in,out] pulAddend Pointer to memory location from where value is to be - * loaded and written back to. - * - * @return *pulAddend value before increment. - */ -static portFORCE_INLINE uint32_t Atomic_Increment_u32( uint32_t volatile * pulAddend ) -{ -uint32_t ulCurrent; - - ATOMIC_ENTER_CRITICAL(); - { - ulCurrent = *pulAddend; - *pulAddend += 1; - } - ATOMIC_EXIT_CRITICAL(); - - return ulCurrent; -} -/*-----------------------------------------------------------*/ - -/** - * Atomic decrement - * - * @brief Atomically decrements the value of the specified pointer points to - * - * @param[in,out] pulAddend Pointer to memory location from where value is to be - * loaded and written back to. - * - * @return *pulAddend value before decrement. - */ -static portFORCE_INLINE uint32_t Atomic_Decrement_u32( uint32_t volatile * pulAddend ) -{ -uint32_t ulCurrent; - - ATOMIC_ENTER_CRITICAL(); - { - ulCurrent = *pulAddend; - *pulAddend -= 1; - } - ATOMIC_EXIT_CRITICAL(); - - return ulCurrent; -} - -/*----------------------------- Bitwise Logical ------------------------------*/ - -/** - * Atomic OR - * - * @brief Performs an atomic OR operation on the specified values. - * - * @param [in, out] pulDestination Pointer to memory location from where value is - * to be loaded and written back to. - * @param [in] ulValue Value to be ORed with *pulDestination. - * - * @return The original value of *pulDestination. - */ -static portFORCE_INLINE uint32_t Atomic_OR_u32( uint32_t volatile * pulDestination, - uint32_t ulValue ) -{ -uint32_t ulCurrent; - - ATOMIC_ENTER_CRITICAL(); - { - ulCurrent = *pulDestination; - *pulDestination |= ulValue; - } - ATOMIC_EXIT_CRITICAL(); - - return ulCurrent; -} -/*-----------------------------------------------------------*/ - -/** - * Atomic AND - * - * @brief Performs an atomic AND operation on the specified values. - * - * @param [in, out] pulDestination Pointer to memory location from where value is - * to be loaded and written back to. - * @param [in] ulValue Value to be ANDed with *pulDestination. - * - * @return The original value of *pulDestination. - */ -static portFORCE_INLINE uint32_t Atomic_AND_u32( uint32_t volatile * pulDestination, - uint32_t ulValue ) -{ -uint32_t ulCurrent; - - ATOMIC_ENTER_CRITICAL(); - { - ulCurrent = *pulDestination; - *pulDestination &= ulValue; - } - ATOMIC_EXIT_CRITICAL(); - - return ulCurrent; -} -/*-----------------------------------------------------------*/ - -/** - * Atomic NAND - * - * @brief Performs an atomic NAND operation on the specified values. - * - * @param [in, out] pulDestination Pointer to memory location from where value is - * to be loaded and written back to. - * @param [in] ulValue Value to be NANDed with *pulDestination. - * - * @return The original value of *pulDestination. - */ -static portFORCE_INLINE uint32_t Atomic_NAND_u32( uint32_t volatile * pulDestination, - uint32_t ulValue ) -{ -uint32_t ulCurrent; - - ATOMIC_ENTER_CRITICAL(); - { - ulCurrent = *pulDestination; - *pulDestination = ~( ulCurrent & ulValue ); - } - ATOMIC_EXIT_CRITICAL(); - - return ulCurrent; -} -/*-----------------------------------------------------------*/ - -/** - * Atomic XOR - * - * @brief Performs an atomic XOR operation on the specified values. - * - * @param [in, out] pulDestination Pointer to memory location from where value is - * to be loaded and written back to. - * @param [in] ulValue Value to be XORed with *pulDestination. - * - * @return The original value of *pulDestination. - */ -static portFORCE_INLINE uint32_t Atomic_XOR_u32( uint32_t volatile * pulDestination, - uint32_t ulValue ) -{ -uint32_t ulCurrent; - - ATOMIC_ENTER_CRITICAL(); - { - ulCurrent = *pulDestination; - *pulDestination ^= ulValue; - } - ATOMIC_EXIT_CRITICAL(); - - return ulCurrent; -} - -#ifdef __cplusplus -} -#endif - -#endif /* ATOMIC_H */ diff --git a/rtos/freertos/abstraction_layer_freertos/include/bits.h b/rtos/freertos/abstraction_layer_freertos/include/bits.h deleted file mode 100644 index 6f3b78f5..00000000 --- a/rtos/freertos/abstraction_layer_freertos/include/bits.h +++ /dev/null @@ -1,86 +0,0 @@ -/* - * Copyright (c) 2011-2014, Wind River Systems, Inc. - * - * SPDX-License-Identifier: Apache-2.0 - */ - -/* - * Copyright 2020 ETH Zurich - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * Author: Robert Balas (balasr@iis.ee.ethz.ch) - */ - -#ifndef __BITS_H -#define __BITS_H - -#include - -/* Helper to pass a int as a pointer or vice-versa. */ -#define POINTER_TO_UINT(x) ((uintptr_t) (x)) -#define UINT_TO_POINTER(x) ((void *) (uintptr_t) (x)) -#define POINTER_TO_INT(x) ((intptr_t) (x)) -#define INT_TO_POINTER(x) ((void *) (intptr_t) (x)) - -#if !(defined (__CHAR_BIT__) && defined (__SIZEOF_LONG__)) -# error Missing required predefined macros for BITS_PER_LONG calculation -#endif - -#define BITS_PER_LONG (__CHAR_BIT__ * __SIZEOF_LONG__) -/* Create a contiguous bitmask starting at bit position @l and ending at - * position @h. - */ -#define GENMASK(h, l) \ - (((~0UL) - (1UL << (l)) + 1) & (~0UL >> (BITS_PER_LONG - 1 - (h)))) - -/* KB, MB, GB */ -#define KB(x) ((x) << 10) -#define MB(x) (KB(x) << 10) -#define GB(x) (MB(x) << 10) - -/* KHZ, MHZ */ -#define KHZ(x) ((x) * 1000) -#define MHZ(x) (KHZ(x) * 1000) - -#ifndef BIT -#if defined(_ASMLANGUAGE) -#define BIT(n) (1 << (n)) -#else -#define BIT(n) (1UL << (n)) -#endif -#endif - -/** - * @brief Macro sets or clears bit depending on boolean value - * - * @param var Variable to be altered - * @param bit Bit number - * @param set Value 0 clears bit, any other value sets bit - */ -#define WRITE_BIT(var, bit, set) \ - ((var) = (set) ? ((var) | BIT(bit)) : ((var) & ~BIT(bit))) - -#define BIT_MASK(n) (BIT(n) - 1) - - -/** - * @brief Convenience macro reads or sets register fields - * - * @param FIELD Register name - * @param v value of bits - */ -#define REG_SET(FIELD, v) (((v) << FIELD##_SHIFT) & FIELD##_MASK) -#define REG_GET(FIELD, v) (((v) & FIELD##_MASK) >> FIELD##_SHIFT) - -#endif diff --git a/rtos/freertos/abstraction_layer_freertos/include/clkdiv.h b/rtos/freertos/abstraction_layer_freertos/include/clkdiv.h deleted file mode 100644 index 2d3445fa..00000000 --- a/rtos/freertos/abstraction_layer_freertos/include/clkdiv.h +++ /dev/null @@ -1,33 +0,0 @@ -/* - * Copyright (C) 2020 ETH Zurich and University of Bologna - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * SPDX-License-Identifier: Apache-2.0 - */ -/* Driver to control the soc control clock divider used in some PULP based - * chips/IPs. This driver is mutually exclusive with the fll driver - */ -/* Author: Robert Balas (balasr@iis.ee.ethz.ch) - */ - -#ifndef __CLKDIV_H__ -#define __CLKDIV_H__ -/* soc clock division register offset */ -#define CLKDIV_FC_OFFSET 0xf00 -/* cluster clock division register offset */ -#define CLKDIV_CL_OFFSET 0xf08 -/* peripheral clock division register offset */ -#define CLKDIV_PERIPH_OFFSET 0xf10 - -#endif /* __CLKDIV_H__ */ diff --git a/rtos/freertos/abstraction_layer_freertos/include/croutine.h b/rtos/freertos/abstraction_layer_freertos/include/croutine.h deleted file mode 100644 index 9bdf8a08..00000000 --- a/rtos/freertos/abstraction_layer_freertos/include/croutine.h +++ /dev/null @@ -1,720 +0,0 @@ -/* - * FreeRTOS Kernel V10.3.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. - * - * Permission is hereby granted, free of charge, to any person obtaining a copy of - * this software and associated documentation files (the "Software"), to deal in - * the Software without restriction, including without limitation the rights to - * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of - * the Software, and to permit persons to whom the Software is furnished to do so, - * subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS - * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR - * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER - * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - * - * http://www.FreeRTOS.org - * http://aws.amazon.com/freertos - * - * 1 tab == 4 spaces! - */ - -#ifndef CO_ROUTINE_H -#define CO_ROUTINE_H - -#ifndef INC_FREERTOS_H - #error "include FreeRTOS.h must appear in source files before include croutine.h" -#endif - -#include "list.h" - -#ifdef __cplusplus -extern "C" { -#endif - -/* Used to hide the implementation of the co-routine control block. The -control block structure however has to be included in the header due to -the macro implementation of the co-routine functionality. */ -typedef void * CoRoutineHandle_t; - -/* Defines the prototype to which co-routine functions must conform. */ -typedef void (*crCOROUTINE_CODE)( CoRoutineHandle_t, UBaseType_t ); - -typedef struct corCoRoutineControlBlock -{ - crCOROUTINE_CODE pxCoRoutineFunction; - ListItem_t xGenericListItem; /*< List item used to place the CRCB in ready and blocked queues. */ - ListItem_t xEventListItem; /*< List item used to place the CRCB in event lists. */ - UBaseType_t uxPriority; /*< The priority of the co-routine in relation to other co-routines. */ - UBaseType_t uxIndex; /*< Used to distinguish between co-routines when multiple co-routines use the same co-routine function. */ - uint16_t uxState; /*< Used internally by the co-routine implementation. */ -} CRCB_t; /* Co-routine control block. Note must be identical in size down to uxPriority with TCB_t. */ - -/** - * croutine. h - *
- BaseType_t xCoRoutineCreate(
-                                 crCOROUTINE_CODE pxCoRoutineCode,
-                                 UBaseType_t uxPriority,
-                                 UBaseType_t uxIndex
-                               );
- * - * Create a new co-routine and add it to the list of co-routines that are - * ready to run. - * - * @param pxCoRoutineCode Pointer to the co-routine function. Co-routine - * functions require special syntax - see the co-routine section of the WEB - * documentation for more information. - * - * @param uxPriority The priority with respect to other co-routines at which - * the co-routine will run. - * - * @param uxIndex Used to distinguish between different co-routines that - * execute the same function. See the example below and the co-routine section - * of the WEB documentation for further information. - * - * @return pdPASS if the co-routine was successfully created and added to a ready - * list, otherwise an error code defined with ProjDefs.h. - * - * Example usage: -
- // Co-routine to be created.
- void vFlashCoRoutine( CoRoutineHandle_t xHandle, UBaseType_t uxIndex )
- {
- // Variables in co-routines must be declared static if they must maintain value across a blocking call.
- // This may not be necessary for const variables.
- static const char cLedToFlash[ 2 ] = { 5, 6 };
- static const TickType_t uxFlashRates[ 2 ] = { 200, 400 };
-
-     // Must start every co-routine with a call to crSTART();
-     crSTART( xHandle );
-
-     for( ;; )
-     {
-         // This co-routine just delays for a fixed period, then toggles
-         // an LED.  Two co-routines are created using this function, so
-         // the uxIndex parameter is used to tell the co-routine which
-         // LED to flash and how int32_t to delay.  This assumes xQueue has
-         // already been created.
-         vParTestToggleLED( cLedToFlash[ uxIndex ] );
-         crDELAY( xHandle, uxFlashRates[ uxIndex ] );
-     }
-
-     // Must end every co-routine with a call to crEND();
-     crEND();
- }
-
- // Function that creates two co-routines.
- void vOtherFunction( void )
- {
- uint8_t ucParameterToPass;
- TaskHandle_t xHandle;
-
-     // Create two co-routines at priority 0.  The first is given index 0
-     // so (from the code above) toggles LED 5 every 200 ticks.  The second
-     // is given index 1 so toggles LED 6 every 400 ticks.
-     for( uxIndex = 0; uxIndex < 2; uxIndex++ )
-     {
-         xCoRoutineCreate( vFlashCoRoutine, 0, uxIndex );
-     }
- }
-   
- * \defgroup xCoRoutineCreate xCoRoutineCreate - * \ingroup Tasks - */ -BaseType_t xCoRoutineCreate( crCOROUTINE_CODE pxCoRoutineCode, UBaseType_t uxPriority, UBaseType_t uxIndex ); - - -/** - * croutine. h - *
- void vCoRoutineSchedule( void );
- * - * Run a co-routine. - * - * vCoRoutineSchedule() executes the highest priority co-routine that is able - * to run. The co-routine will execute until it either blocks, yields or is - * preempted by a task. Co-routines execute cooperatively so one - * co-routine cannot be preempted by another, but can be preempted by a task. - * - * If an application comprises of both tasks and co-routines then - * vCoRoutineSchedule should be called from the idle task (in an idle task - * hook). - * - * Example usage: -
- // This idle task hook will schedule a co-routine each time it is called.
- // The rest of the idle task will execute between co-routine calls.
- void vApplicationIdleHook( void )
- {
-	vCoRoutineSchedule();
- }
-
- // Alternatively, if you do not require any other part of the idle task to
- // execute, the idle task hook can call vCoRoutineSchedule() within an
- // infinite loop.
- void vApplicationIdleHook( void )
- {
-    for( ;; )
-    {
-        vCoRoutineSchedule();
-    }
- }
- 
- * \defgroup vCoRoutineSchedule vCoRoutineSchedule - * \ingroup Tasks - */ -void vCoRoutineSchedule( void ); - -/** - * croutine. h - *
- crSTART( CoRoutineHandle_t xHandle );
- * - * This macro MUST always be called at the start of a co-routine function. - * - * Example usage: -
- // Co-routine to be created.
- void vACoRoutine( CoRoutineHandle_t xHandle, UBaseType_t uxIndex )
- {
- // Variables in co-routines must be declared static if they must maintain value across a blocking call.
- static int32_t ulAVariable;
-
-     // Must start every co-routine with a call to crSTART();
-     crSTART( xHandle );
-
-     for( ;; )
-     {
-          // Co-routine functionality goes here.
-     }
-
-     // Must end every co-routine with a call to crEND();
-     crEND();
- }
- * \defgroup crSTART crSTART - * \ingroup Tasks - */ -#define crSTART( pxCRCB ) switch( ( ( CRCB_t * )( pxCRCB ) )->uxState ) { case 0: - -/** - * croutine. h - *
- crEND();
- * - * This macro MUST always be called at the end of a co-routine function. - * - * Example usage: -
- // Co-routine to be created.
- void vACoRoutine( CoRoutineHandle_t xHandle, UBaseType_t uxIndex )
- {
- // Variables in co-routines must be declared static if they must maintain value across a blocking call.
- static int32_t ulAVariable;
-
-     // Must start every co-routine with a call to crSTART();
-     crSTART( xHandle );
-
-     for( ;; )
-     {
-          // Co-routine functionality goes here.
-     }
-
-     // Must end every co-routine with a call to crEND();
-     crEND();
- }
- * \defgroup crSTART crSTART - * \ingroup Tasks - */ -#define crEND() } - -/* - * These macros are intended for internal use by the co-routine implementation - * only. The macros should not be used directly by application writers. - */ -#define crSET_STATE0( xHandle ) ( ( CRCB_t * )( xHandle ) )->uxState = (__LINE__ * 2); return; case (__LINE__ * 2): -#define crSET_STATE1( xHandle ) ( ( CRCB_t * )( xHandle ) )->uxState = ((__LINE__ * 2)+1); return; case ((__LINE__ * 2)+1): - -/** - * croutine. h - *
- crDELAY( CoRoutineHandle_t xHandle, TickType_t xTicksToDelay );
- * - * Delay a co-routine for a fixed period of time. - * - * crDELAY can only be called from the co-routine function itself - not - * from within a function called by the co-routine function. This is because - * co-routines do not maintain their own stack. - * - * @param xHandle The handle of the co-routine to delay. This is the xHandle - * parameter of the co-routine function. - * - * @param xTickToDelay The number of ticks that the co-routine should delay - * for. The actual amount of time this equates to is defined by - * configTICK_RATE_HZ (set in FreeRTOSConfig.h). The constant portTICK_PERIOD_MS - * can be used to convert ticks to milliseconds. - * - * Example usage: -
- // Co-routine to be created.
- void vACoRoutine( CoRoutineHandle_t xHandle, UBaseType_t uxIndex )
- {
- // Variables in co-routines must be declared static if they must maintain value across a blocking call.
- // This may not be necessary for const variables.
- // We are to delay for 200ms.
- static const xTickType xDelayTime = 200 / portTICK_PERIOD_MS;
-
-     // Must start every co-routine with a call to crSTART();
-     crSTART( xHandle );
-
-     for( ;; )
-     {
-        // Delay for 200ms.
-        crDELAY( xHandle, xDelayTime );
-
-        // Do something here.
-     }
-
-     // Must end every co-routine with a call to crEND();
-     crEND();
- }
- * \defgroup crDELAY crDELAY - * \ingroup Tasks - */ -#define crDELAY( xHandle, xTicksToDelay ) \ - if( ( xTicksToDelay ) > 0 ) \ - { \ - vCoRoutineAddToDelayedList( ( xTicksToDelay ), NULL ); \ - } \ - crSET_STATE0( ( xHandle ) ); - -/** - *
- crQUEUE_SEND(
-                  CoRoutineHandle_t xHandle,
-                  QueueHandle_t pxQueue,
-                  void *pvItemToQueue,
-                  TickType_t xTicksToWait,
-                  BaseType_t *pxResult
-             )
- * - * The macro's crQUEUE_SEND() and crQUEUE_RECEIVE() are the co-routine - * equivalent to the xQueueSend() and xQueueReceive() functions used by tasks. - * - * crQUEUE_SEND and crQUEUE_RECEIVE can only be used from a co-routine whereas - * xQueueSend() and xQueueReceive() can only be used from tasks. - * - * crQUEUE_SEND can only be called from the co-routine function itself - not - * from within a function called by the co-routine function. This is because - * co-routines do not maintain their own stack. - * - * See the co-routine section of the WEB documentation for information on - * passing data between tasks and co-routines and between ISR's and - * co-routines. - * - * @param xHandle The handle of the calling co-routine. This is the xHandle - * parameter of the co-routine function. - * - * @param pxQueue The handle of the queue on which the data will be posted. - * The handle is obtained as the return value when the queue is created using - * the xQueueCreate() API function. - * - * @param pvItemToQueue A pointer to the data being posted onto the queue. - * The number of bytes of each queued item is specified when the queue is - * created. This number of bytes is copied from pvItemToQueue into the queue - * itself. - * - * @param xTickToDelay The number of ticks that the co-routine should block - * to wait for space to become available on the queue, should space not be - * available immediately. The actual amount of time this equates to is defined - * by configTICK_RATE_HZ (set in FreeRTOSConfig.h). The constant - * portTICK_PERIOD_MS can be used to convert ticks to milliseconds (see example - * below). - * - * @param pxResult The variable pointed to by pxResult will be set to pdPASS if - * data was successfully posted onto the queue, otherwise it will be set to an - * error defined within ProjDefs.h. - * - * Example usage: -
- // Co-routine function that blocks for a fixed period then posts a number onto
- // a queue.
- static void prvCoRoutineFlashTask( CoRoutineHandle_t xHandle, UBaseType_t uxIndex )
- {
- // Variables in co-routines must be declared static if they must maintain value across a blocking call.
- static BaseType_t xNumberToPost = 0;
- static BaseType_t xResult;
-
-    // Co-routines must begin with a call to crSTART().
-    crSTART( xHandle );
-
-    for( ;; )
-    {
-        // This assumes the queue has already been created.
-        crQUEUE_SEND( xHandle, xCoRoutineQueue, &xNumberToPost, NO_DELAY, &xResult );
-
-        if( xResult != pdPASS )
-        {
-            // The message was not posted!
-        }
-
-        // Increment the number to be posted onto the queue.
-        xNumberToPost++;
-
-        // Delay for 100 ticks.
-        crDELAY( xHandle, 100 );
-    }
-
-    // Co-routines must end with a call to crEND().
-    crEND();
- }
- * \defgroup crQUEUE_SEND crQUEUE_SEND - * \ingroup Tasks - */ -#define crQUEUE_SEND( xHandle, pxQueue, pvItemToQueue, xTicksToWait, pxResult ) \ -{ \ - *( pxResult ) = xQueueCRSend( ( pxQueue) , ( pvItemToQueue) , ( xTicksToWait ) ); \ - if( *( pxResult ) == errQUEUE_BLOCKED ) \ - { \ - crSET_STATE0( ( xHandle ) ); \ - *pxResult = xQueueCRSend( ( pxQueue ), ( pvItemToQueue ), 0 ); \ - } \ - if( *pxResult == errQUEUE_YIELD ) \ - { \ - crSET_STATE1( ( xHandle ) ); \ - *pxResult = pdPASS; \ - } \ -} - -/** - * croutine. h - *
-  crQUEUE_RECEIVE(
-                     CoRoutineHandle_t xHandle,
-                     QueueHandle_t pxQueue,
-                     void *pvBuffer,
-                     TickType_t xTicksToWait,
-                     BaseType_t *pxResult
-                 )
- * - * The macro's crQUEUE_SEND() and crQUEUE_RECEIVE() are the co-routine - * equivalent to the xQueueSend() and xQueueReceive() functions used by tasks. - * - * crQUEUE_SEND and crQUEUE_RECEIVE can only be used from a co-routine whereas - * xQueueSend() and xQueueReceive() can only be used from tasks. - * - * crQUEUE_RECEIVE can only be called from the co-routine function itself - not - * from within a function called by the co-routine function. This is because - * co-routines do not maintain their own stack. - * - * See the co-routine section of the WEB documentation for information on - * passing data between tasks and co-routines and between ISR's and - * co-routines. - * - * @param xHandle The handle of the calling co-routine. This is the xHandle - * parameter of the co-routine function. - * - * @param pxQueue The handle of the queue from which the data will be received. - * The handle is obtained as the return value when the queue is created using - * the xQueueCreate() API function. - * - * @param pvBuffer The buffer into which the received item is to be copied. - * The number of bytes of each queued item is specified when the queue is - * created. This number of bytes is copied into pvBuffer. - * - * @param xTickToDelay The number of ticks that the co-routine should block - * to wait for data to become available from the queue, should data not be - * available immediately. The actual amount of time this equates to is defined - * by configTICK_RATE_HZ (set in FreeRTOSConfig.h). The constant - * portTICK_PERIOD_MS can be used to convert ticks to milliseconds (see the - * crQUEUE_SEND example). - * - * @param pxResult The variable pointed to by pxResult will be set to pdPASS if - * data was successfully retrieved from the queue, otherwise it will be set to - * an error code as defined within ProjDefs.h. - * - * Example usage: -
- // A co-routine receives the number of an LED to flash from a queue.  It
- // blocks on the queue until the number is received.
- static void prvCoRoutineFlashWorkTask( CoRoutineHandle_t xHandle, UBaseType_t uxIndex )
- {
- // Variables in co-routines must be declared static if they must maintain value across a blocking call.
- static BaseType_t xResult;
- static UBaseType_t uxLEDToFlash;
-
-    // All co-routines must start with a call to crSTART().
-    crSTART( xHandle );
-
-    for( ;; )
-    {
-        // Wait for data to become available on the queue.
-        crQUEUE_RECEIVE( xHandle, xCoRoutineQueue, &uxLEDToFlash, portMAX_DELAY, &xResult );
-
-        if( xResult == pdPASS )
-        {
-            // We received the LED to flash - flash it!
-            vParTestToggleLED( uxLEDToFlash );
-        }
-    }
-
-    crEND();
- }
- * \defgroup crQUEUE_RECEIVE crQUEUE_RECEIVE - * \ingroup Tasks - */ -#define crQUEUE_RECEIVE( xHandle, pxQueue, pvBuffer, xTicksToWait, pxResult ) \ -{ \ - *( pxResult ) = xQueueCRReceive( ( pxQueue) , ( pvBuffer ), ( xTicksToWait ) ); \ - if( *( pxResult ) == errQUEUE_BLOCKED ) \ - { \ - crSET_STATE0( ( xHandle ) ); \ - *( pxResult ) = xQueueCRReceive( ( pxQueue) , ( pvBuffer ), 0 ); \ - } \ - if( *( pxResult ) == errQUEUE_YIELD ) \ - { \ - crSET_STATE1( ( xHandle ) ); \ - *( pxResult ) = pdPASS; \ - } \ -} - -/** - * croutine. h - *
-  crQUEUE_SEND_FROM_ISR(
-                            QueueHandle_t pxQueue,
-                            void *pvItemToQueue,
-                            BaseType_t xCoRoutinePreviouslyWoken
-                       )
- * - * The macro's crQUEUE_SEND_FROM_ISR() and crQUEUE_RECEIVE_FROM_ISR() are the - * co-routine equivalent to the xQueueSendFromISR() and xQueueReceiveFromISR() - * functions used by tasks. - * - * crQUEUE_SEND_FROM_ISR() and crQUEUE_RECEIVE_FROM_ISR() can only be used to - * pass data between a co-routine and and ISR, whereas xQueueSendFromISR() and - * xQueueReceiveFromISR() can only be used to pass data between a task and and - * ISR. - * - * crQUEUE_SEND_FROM_ISR can only be called from an ISR to send data to a queue - * that is being used from within a co-routine. - * - * See the co-routine section of the WEB documentation for information on - * passing data between tasks and co-routines and between ISR's and - * co-routines. - * - * @param xQueue The handle to the queue on which the item is to be posted. - * - * @param pvItemToQueue A pointer to the item that is to be placed on the - * queue. The size of the items the queue will hold was defined when the - * queue was created, so this many bytes will be copied from pvItemToQueue - * into the queue storage area. - * - * @param xCoRoutinePreviouslyWoken This is included so an ISR can post onto - * the same queue multiple times from a single interrupt. The first call - * should always pass in pdFALSE. Subsequent calls should pass in - * the value returned from the previous call. - * - * @return pdTRUE if a co-routine was woken by posting onto the queue. This is - * used by the ISR to determine if a context switch may be required following - * the ISR. - * - * Example usage: -
- // A co-routine that blocks on a queue waiting for characters to be received.
- static void vReceivingCoRoutine( CoRoutineHandle_t xHandle, UBaseType_t uxIndex )
- {
- char cRxedChar;
- BaseType_t xResult;
-
-     // All co-routines must start with a call to crSTART().
-     crSTART( xHandle );
-
-     for( ;; )
-     {
-         // Wait for data to become available on the queue.  This assumes the
-         // queue xCommsRxQueue has already been created!
-         crQUEUE_RECEIVE( xHandle, xCommsRxQueue, &uxLEDToFlash, portMAX_DELAY, &xResult );
-
-         // Was a character received?
-         if( xResult == pdPASS )
-         {
-             // Process the character here.
-         }
-     }
-
-     // All co-routines must end with a call to crEND().
-     crEND();
- }
-
- // An ISR that uses a queue to send characters received on a serial port to
- // a co-routine.
- void vUART_ISR( void )
- {
- char cRxedChar;
- BaseType_t xCRWokenByPost = pdFALSE;
-
-     // We loop around reading characters until there are none left in the UART.
-     while( UART_RX_REG_NOT_EMPTY() )
-     {
-         // Obtain the character from the UART.
-         cRxedChar = UART_RX_REG;
-
-         // Post the character onto a queue.  xCRWokenByPost will be pdFALSE
-         // the first time around the loop.  If the post causes a co-routine
-         // to be woken (unblocked) then xCRWokenByPost will be set to pdTRUE.
-         // In this manner we can ensure that if more than one co-routine is
-         // blocked on the queue only one is woken by this ISR no matter how
-         // many characters are posted to the queue.
-         xCRWokenByPost = crQUEUE_SEND_FROM_ISR( xCommsRxQueue, &cRxedChar, xCRWokenByPost );
-     }
- }
- * \defgroup crQUEUE_SEND_FROM_ISR crQUEUE_SEND_FROM_ISR - * \ingroup Tasks - */ -#define crQUEUE_SEND_FROM_ISR( pxQueue, pvItemToQueue, xCoRoutinePreviouslyWoken ) xQueueCRSendFromISR( ( pxQueue ), ( pvItemToQueue ), ( xCoRoutinePreviouslyWoken ) ) - - -/** - * croutine. h - *
-  crQUEUE_SEND_FROM_ISR(
-                            QueueHandle_t pxQueue,
-                            void *pvBuffer,
-                            BaseType_t * pxCoRoutineWoken
-                       )
- * - * The macro's crQUEUE_SEND_FROM_ISR() and crQUEUE_RECEIVE_FROM_ISR() are the - * co-routine equivalent to the xQueueSendFromISR() and xQueueReceiveFromISR() - * functions used by tasks. - * - * crQUEUE_SEND_FROM_ISR() and crQUEUE_RECEIVE_FROM_ISR() can only be used to - * pass data between a co-routine and and ISR, whereas xQueueSendFromISR() and - * xQueueReceiveFromISR() can only be used to pass data between a task and and - * ISR. - * - * crQUEUE_RECEIVE_FROM_ISR can only be called from an ISR to receive data - * from a queue that is being used from within a co-routine (a co-routine - * posted to the queue). - * - * See the co-routine section of the WEB documentation for information on - * passing data between tasks and co-routines and between ISR's and - * co-routines. - * - * @param xQueue The handle to the queue on which the item is to be posted. - * - * @param pvBuffer A pointer to a buffer into which the received item will be - * placed. The size of the items the queue will hold was defined when the - * queue was created, so this many bytes will be copied from the queue into - * pvBuffer. - * - * @param pxCoRoutineWoken A co-routine may be blocked waiting for space to become - * available on the queue. If crQUEUE_RECEIVE_FROM_ISR causes such a - * co-routine to unblock *pxCoRoutineWoken will get set to pdTRUE, otherwise - * *pxCoRoutineWoken will remain unchanged. - * - * @return pdTRUE an item was successfully received from the queue, otherwise - * pdFALSE. - * - * Example usage: -
- // A co-routine that posts a character to a queue then blocks for a fixed
- // period.  The character is incremented each time.
- static void vSendingCoRoutine( CoRoutineHandle_t xHandle, UBaseType_t uxIndex )
- {
- // cChar holds its value while this co-routine is blocked and must therefore
- // be declared static.
- static char cCharToTx = 'a';
- BaseType_t xResult;
-
-     // All co-routines must start with a call to crSTART().
-     crSTART( xHandle );
-
-     for( ;; )
-     {
-         // Send the next character to the queue.
-         crQUEUE_SEND( xHandle, xCoRoutineQueue, &cCharToTx, NO_DELAY, &xResult );
-
-         if( xResult == pdPASS )
-         {
-             // The character was successfully posted to the queue.
-         }
-		 else
-		 {
-			// Could not post the character to the queue.
-		 }
-
-         // Enable the UART Tx interrupt to cause an interrupt in this
-		 // hypothetical UART.  The interrupt will obtain the character
-		 // from the queue and send it.
-		 ENABLE_RX_INTERRUPT();
-
-		 // Increment to the next character then block for a fixed period.
-		 // cCharToTx will maintain its value across the delay as it is
-		 // declared static.
-		 cCharToTx++;
-		 if( cCharToTx > 'x' )
-		 {
-			cCharToTx = 'a';
-		 }
-		 crDELAY( 100 );
-     }
-
-     // All co-routines must end with a call to crEND().
-     crEND();
- }
-
- // An ISR that uses a queue to receive characters to send on a UART.
- void vUART_ISR( void )
- {
- char cCharToTx;
- BaseType_t xCRWokenByPost = pdFALSE;
-
-     while( UART_TX_REG_EMPTY() )
-     {
-         // Are there any characters in the queue waiting to be sent?
-		 // xCRWokenByPost will automatically be set to pdTRUE if a co-routine
-		 // is woken by the post - ensuring that only a single co-routine is
-		 // woken no matter how many times we go around this loop.
-         if( crQUEUE_RECEIVE_FROM_ISR( pxQueue, &cCharToTx, &xCRWokenByPost ) )
-		 {
-			 SEND_CHARACTER( cCharToTx );
-		 }
-     }
- }
- * \defgroup crQUEUE_RECEIVE_FROM_ISR crQUEUE_RECEIVE_FROM_ISR - * \ingroup Tasks - */ -#define crQUEUE_RECEIVE_FROM_ISR( pxQueue, pvBuffer, pxCoRoutineWoken ) xQueueCRReceiveFromISR( ( pxQueue ), ( pvBuffer ), ( pxCoRoutineWoken ) ) - -/* - * This function is intended for internal use by the co-routine macros only. - * The macro nature of the co-routine implementation requires that the - * prototype appears here. The function should not be used by application - * writers. - * - * Removes the current co-routine from its ready list and places it in the - * appropriate delayed list. - */ -void vCoRoutineAddToDelayedList( TickType_t xTicksToDelay, List_t *pxEventList ); - -/* - * This function is intended for internal use by the queue implementation only. - * The function should not be used by application writers. - * - * Removes the highest priority co-routine from the event list and places it in - * the pending ready list. - */ -BaseType_t xCoRoutineRemoveFromEventList( const List_t *pxEventList ); - -#ifdef __cplusplus -} -#endif - -#endif /* CO_ROUTINE_H */ diff --git a/rtos/freertos/abstraction_layer_freertos/include/debug.h b/rtos/freertos/abstraction_layer_freertos/include/debug.h deleted file mode 100644 index 1c3dd5d3..00000000 --- a/rtos/freertos/abstraction_layer_freertos/include/debug.h +++ /dev/null @@ -1,64 +0,0 @@ -/* - * Copyright 2020 GreenWaves Technologies - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * SPDX-License-Identifier: Apache-2.0 - */ - -#ifndef __DEBUG_H__ -#define __DEBUG_H__ - -/* Define those flags in Makefile or command line to enable traces/logs. */ - -#if defined(TRACE_CPI) -#define CPI_TRACE(...) PI_LOG_DBG(__func__, __VA_ARGS__) -#define CPI_TRACE_ERR(...) PI_LOG_ERR(__func__, __VA_ARGS__) -#else -#define CPI_TRACE(...) ((void)0) -#define CPI_TRACE_ERR(...) ((void)0) -#endif /* TRACE_CPI */ - -#if defined(TRACE_I2S) -#define I2S_TRACE(...) PI_LOG_DBG(__func__, __VA_ARGS__) -#define I2S_TRACE_ERR(...) PI_LOG_ERR(__func__, __VA_ARGS__) -#else -#define I2S_TRACE(...) ((void)0) -#define I2S_TRACE_ERR(...) ((void)0) -#endif /* TRACE_I2S */ - -#if defined(TRACE_UART) -#define UART_TRACE(...) PI_LOG_DBG(__func__, __VA_ARGS__) -#define UART_TRACE_ERR(...) PI_LOG_ERR(__func__, __VA_ARGS__) -#else -#define UART_TRACE(...) ((void)0) -#define UART_TRACE_ERR(...) ((void)0) -#endif /* TRACE_UART */ - -#if defined(TRACE_I2C) -#define I2C_TRACE(...) PI_LOG_DBG(__func__, __VA_ARGS__) -#define I2C_TRACE_ERR(...) PI_LOG_ERR(__func__, __VA_ARGS__) -#else -#define I2C_TRACE(...) ((void) 0) -#define I2C_TRACE_ERR(...) ((void) 0) -#endif /* TRACE_I2C */ - -/* Debug helper. */ -#if defined (DEBUG_TASKS) -#define DEBUG_PRINTF printf -#else -#define DEBUG_PRINTF(...) ((void)0) -#endif /* DEBUG */ - - -#endif /* __DEBUG_H__ */ diff --git a/rtos/freertos/abstraction_layer_freertos/include/deprecated_definitions.h b/rtos/freertos/abstraction_layer_freertos/include/deprecated_definitions.h deleted file mode 100644 index e5cb4847..00000000 --- a/rtos/freertos/abstraction_layer_freertos/include/deprecated_definitions.h +++ /dev/null @@ -1,279 +0,0 @@ -/* - * FreeRTOS Kernel V10.3.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. - * - * Permission is hereby granted, free of charge, to any person obtaining a copy of - * this software and associated documentation files (the "Software"), to deal in - * the Software without restriction, including without limitation the rights to - * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of - * the Software, and to permit persons to whom the Software is furnished to do so, - * subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS - * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR - * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER - * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - * - * http://www.FreeRTOS.org - * http://aws.amazon.com/freertos - * - * 1 tab == 4 spaces! - */ - -#ifndef DEPRECATED_DEFINITIONS_H -#define DEPRECATED_DEFINITIONS_H - - -/* Each FreeRTOS port has a unique portmacro.h header file. Originally a -pre-processor definition was used to ensure the pre-processor found the correct -portmacro.h file for the port being used. That scheme was deprecated in favour -of setting the compiler's include path such that it found the correct -portmacro.h file - removing the need for the constant and allowing the -portmacro.h file to be located anywhere in relation to the port being used. The -definitions below remain in the code for backward compatibility only. New -projects should not use them. */ - -#ifdef OPEN_WATCOM_INDUSTRIAL_PC_PORT - #include "..\..\Source\portable\owatcom\16bitdos\pc\portmacro.h" - typedef void ( __interrupt __far *pxISR )(); -#endif - -#ifdef OPEN_WATCOM_FLASH_LITE_186_PORT - #include "..\..\Source\portable\owatcom\16bitdos\flsh186\portmacro.h" - typedef void ( __interrupt __far *pxISR )(); -#endif - -#ifdef GCC_MEGA_AVR - #include "../portable/GCC/ATMega323/portmacro.h" -#endif - -#ifdef IAR_MEGA_AVR - #include "../portable/IAR/ATMega323/portmacro.h" -#endif - -#ifdef MPLAB_PIC24_PORT - #include "../../Source/portable/MPLAB/PIC24_dsPIC/portmacro.h" -#endif - -#ifdef MPLAB_DSPIC_PORT - #include "../../Source/portable/MPLAB/PIC24_dsPIC/portmacro.h" -#endif - -#ifdef MPLAB_PIC18F_PORT - #include "../../Source/portable/MPLAB/PIC18F/portmacro.h" -#endif - -#ifdef MPLAB_PIC32MX_PORT - #include "../../Source/portable/MPLAB/PIC32MX/portmacro.h" -#endif - -#ifdef _FEDPICC - #include "libFreeRTOS/Include/portmacro.h" -#endif - -#ifdef SDCC_CYGNAL - #include "../../Source/portable/SDCC/Cygnal/portmacro.h" -#endif - -#ifdef GCC_ARM7 - #include "../../Source/portable/GCC/ARM7_LPC2000/portmacro.h" -#endif - -#ifdef GCC_ARM7_ECLIPSE - #include "portmacro.h" -#endif - -#ifdef ROWLEY_LPC23xx - #include "../../Source/portable/GCC/ARM7_LPC23xx/portmacro.h" -#endif - -#ifdef IAR_MSP430 - #include "..\..\Source\portable\IAR\MSP430\portmacro.h" -#endif - -#ifdef GCC_MSP430 - #include "../../Source/portable/GCC/MSP430F449/portmacro.h" -#endif - -#ifdef ROWLEY_MSP430 - #include "../../Source/portable/Rowley/MSP430F449/portmacro.h" -#endif - -#ifdef ARM7_LPC21xx_KEIL_RVDS - #include "..\..\Source\portable\RVDS\ARM7_LPC21xx\portmacro.h" -#endif - -#ifdef SAM7_GCC - #include "../../Source/portable/GCC/ARM7_AT91SAM7S/portmacro.h" -#endif - -#ifdef SAM7_IAR - #include "..\..\Source\portable\IAR\AtmelSAM7S64\portmacro.h" -#endif - -#ifdef SAM9XE_IAR - #include "..\..\Source\portable\IAR\AtmelSAM9XE\portmacro.h" -#endif - -#ifdef LPC2000_IAR - #include "..\..\Source\portable\IAR\LPC2000\portmacro.h" -#endif - -#ifdef STR71X_IAR - #include "..\..\Source\portable\IAR\STR71x\portmacro.h" -#endif - -#ifdef STR75X_IAR - #include "..\..\Source\portable\IAR\STR75x\portmacro.h" -#endif - -#ifdef STR75X_GCC - #include "..\..\Source\portable\GCC\STR75x\portmacro.h" -#endif - -#ifdef STR91X_IAR - #include "..\..\Source\portable\IAR\STR91x\portmacro.h" -#endif - -#ifdef GCC_H8S - #include "../../Source/portable/GCC/H8S2329/portmacro.h" -#endif - -#ifdef GCC_AT91FR40008 - #include "../../Source/portable/GCC/ARM7_AT91FR40008/portmacro.h" -#endif - -#ifdef RVDS_ARMCM3_LM3S102 - #include "../../Source/portable/RVDS/ARM_CM3/portmacro.h" -#endif - -#ifdef GCC_ARMCM3_LM3S102 - #include "../../Source/portable/GCC/ARM_CM3/portmacro.h" -#endif - -#ifdef GCC_ARMCM3 - #include "../../Source/portable/GCC/ARM_CM3/portmacro.h" -#endif - -#ifdef IAR_ARM_CM3 - #include "../../Source/portable/IAR/ARM_CM3/portmacro.h" -#endif - -#ifdef IAR_ARMCM3_LM - #include "../../Source/portable/IAR/ARM_CM3/portmacro.h" -#endif - -#ifdef HCS12_CODE_WARRIOR - #include "../../Source/portable/CodeWarrior/HCS12/portmacro.h" -#endif - -#ifdef MICROBLAZE_GCC - #include "../../Source/portable/GCC/MicroBlaze/portmacro.h" -#endif - -#ifdef TERN_EE - #include "..\..\Source\portable\Paradigm\Tern_EE\small\portmacro.h" -#endif - -#ifdef GCC_HCS12 - #include "../../Source/portable/GCC/HCS12/portmacro.h" -#endif - -#ifdef GCC_MCF5235 - #include "../../Source/portable/GCC/MCF5235/portmacro.h" -#endif - -#ifdef COLDFIRE_V2_GCC - #include "../../../Source/portable/GCC/ColdFire_V2/portmacro.h" -#endif - -#ifdef COLDFIRE_V2_CODEWARRIOR - #include "../../Source/portable/CodeWarrior/ColdFire_V2/portmacro.h" -#endif - -#ifdef GCC_PPC405 - #include "../../Source/portable/GCC/PPC405_Xilinx/portmacro.h" -#endif - -#ifdef GCC_PPC440 - #include "../../Source/portable/GCC/PPC440_Xilinx/portmacro.h" -#endif - -#ifdef _16FX_SOFTUNE - #include "..\..\Source\portable\Softune\MB96340\portmacro.h" -#endif - -#ifdef BCC_INDUSTRIAL_PC_PORT - /* A short file name has to be used in place of the normal - FreeRTOSConfig.h when using the Borland compiler. */ - #include "frconfig.h" - #include "..\portable\BCC\16BitDOS\PC\prtmacro.h" - typedef void ( __interrupt __far *pxISR )(); -#endif - -#ifdef BCC_FLASH_LITE_186_PORT - /* A short file name has to be used in place of the normal - FreeRTOSConfig.h when using the Borland compiler. */ - #include "frconfig.h" - #include "..\portable\BCC\16BitDOS\flsh186\prtmacro.h" - typedef void ( __interrupt __far *pxISR )(); -#endif - -#ifdef __GNUC__ - #ifdef __AVR32_AVR32A__ - #include "portmacro.h" - #endif -#endif - -#ifdef __ICCAVR32__ - #ifdef __CORE__ - #if __CORE__ == __AVR32A__ - #include "portmacro.h" - #endif - #endif -#endif - -#ifdef __91467D - #include "portmacro.h" -#endif - -#ifdef __96340 - #include "portmacro.h" -#endif - - -#ifdef __IAR_V850ES_Fx3__ - #include "../../Source/portable/IAR/V850ES/portmacro.h" -#endif - -#ifdef __IAR_V850ES_Jx3__ - #include "../../Source/portable/IAR/V850ES/portmacro.h" -#endif - -#ifdef __IAR_V850ES_Jx3_L__ - #include "../../Source/portable/IAR/V850ES/portmacro.h" -#endif - -#ifdef __IAR_V850ES_Jx2__ - #include "../../Source/portable/IAR/V850ES/portmacro.h" -#endif - -#ifdef __IAR_V850ES_Hx2__ - #include "../../Source/portable/IAR/V850ES/portmacro.h" -#endif - -#ifdef __IAR_78K0R_Kx3__ - #include "../../Source/portable/IAR/78K0R/portmacro.h" -#endif - -#ifdef __IAR_78K0R_Kx3L__ - #include "../../Source/portable/IAR/78K0R/portmacro.h" -#endif - -#endif /* DEPRECATED_DEFINITIONS_H */ - diff --git a/rtos/freertos/abstraction_layer_freertos/include/device.h b/rtos/freertos/abstraction_layer_freertos/include/device.h deleted file mode 100644 index f5f3454d..00000000 --- a/rtos/freertos/abstraction_layer_freertos/include/device.h +++ /dev/null @@ -1,44 +0,0 @@ -/* - * Copyright (C) 2018 GreenWaves Technologies - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifndef __DEVICE_H__ -#define __DEVICE_H__ - -#include "pmsis_types.h" - -/* Open a device using its name if available - * if no name is passed, just allocate necessary memory - */ -struct pi_device *pi_open(const char *name); - -void pi_open_from_conf(struct pi_device *device, void *conf); - -int pmsis_close(struct pi_device *device); - -/* ioctl like mechanism */ -uint32_t pmsis_ioctl(struct pi_device *device, uint32_t func_id, void *arg); - -/* Generic write and read functions: - * write or read to devices (spi, i2s, (hyper)flash...) - * might be null for devices which are not concerned - */ -uint32_t pmsis_write(struct pi_device *device, uintptr_t size, const void *addr, - const void *buffer); - -uint32_t pmsis_read(struct pi_device *device, uintptr_t size, const void *addr, - const void *buffer); - -#endif diff --git a/rtos/freertos/abstraction_layer_freertos/include/event_groups.h b/rtos/freertos/abstraction_layer_freertos/include/event_groups.h deleted file mode 100644 index 70989b0e..00000000 --- a/rtos/freertos/abstraction_layer_freertos/include/event_groups.h +++ /dev/null @@ -1,757 +0,0 @@ -/* - * FreeRTOS Kernel V10.3.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. - * - * Permission is hereby granted, free of charge, to any person obtaining a copy of - * this software and associated documentation files (the "Software"), to deal in - * the Software without restriction, including without limitation the rights to - * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of - * the Software, and to permit persons to whom the Software is furnished to do so, - * subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS - * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR - * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER - * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - * - * http://www.FreeRTOS.org - * http://aws.amazon.com/freertos - * - * 1 tab == 4 spaces! - */ - -#ifndef EVENT_GROUPS_H -#define EVENT_GROUPS_H - -#ifndef INC_FREERTOS_H - #error "include FreeRTOS.h" must appear in source files before "include event_groups.h" -#endif - -/* FreeRTOS includes. */ -#include "timers.h" - -#ifdef __cplusplus -extern "C" { -#endif - -/** - * An event group is a collection of bits to which an application can assign a - * meaning. For example, an application may create an event group to convey - * the status of various CAN bus related events in which bit 0 might mean "A CAN - * message has been received and is ready for processing", bit 1 might mean "The - * application has queued a message that is ready for sending onto the CAN - * network", and bit 2 might mean "It is time to send a SYNC message onto the - * CAN network" etc. A task can then test the bit values to see which events - * are active, and optionally enter the Blocked state to wait for a specified - * bit or a group of specified bits to be active. To continue the CAN bus - * example, a CAN controlling task can enter the Blocked state (and therefore - * not consume any processing time) until either bit 0, bit 1 or bit 2 are - * active, at which time the bit that was actually active would inform the task - * which action it had to take (process a received message, send a message, or - * send a SYNC). - * - * The event groups implementation contains intelligence to avoid race - * conditions that would otherwise occur were an application to use a simple - * variable for the same purpose. This is particularly important with respect - * to when a bit within an event group is to be cleared, and when bits have to - * be set and then tested atomically - as is the case where event groups are - * used to create a synchronisation point between multiple tasks (a - * 'rendezvous'). - * - * \defgroup EventGroup - */ - - - -/** - * event_groups.h - * - * Type by which event groups are referenced. For example, a call to - * xEventGroupCreate() returns an EventGroupHandle_t variable that can then - * be used as a parameter to other event group functions. - * - * \defgroup EventGroupHandle_t EventGroupHandle_t - * \ingroup EventGroup - */ -struct EventGroupDef_t; -typedef struct EventGroupDef_t * EventGroupHandle_t; - -/* - * The type that holds event bits always matches TickType_t - therefore the - * number of bits it holds is set by configUSE_16_BIT_TICKS (16 bits if set to 1, - * 32 bits if set to 0. - * - * \defgroup EventBits_t EventBits_t - * \ingroup EventGroup - */ -typedef TickType_t EventBits_t; - -/** - * event_groups.h - *
- EventGroupHandle_t xEventGroupCreate( void );
- 
- * - * Create a new event group. - * - * Internally, within the FreeRTOS implementation, event groups use a [small] - * block of memory, in which the event group's structure is stored. If an event - * groups is created using xEventGropuCreate() then the required memory is - * automatically dynamically allocated inside the xEventGroupCreate() function. - * (see http://www.freertos.org/a00111.html). If an event group is created - * using xEventGropuCreateStatic() then the application writer must instead - * provide the memory that will get used by the event group. - * xEventGroupCreateStatic() therefore allows an event group to be created - * without using any dynamic memory allocation. - * - * Although event groups are not related to ticks, for internal implementation - * reasons the number of bits available for use in an event group is dependent - * on the configUSE_16_BIT_TICKS setting in FreeRTOSConfig.h. If - * configUSE_16_BIT_TICKS is 1 then each event group contains 8 usable bits (bit - * 0 to bit 7). If configUSE_16_BIT_TICKS is set to 0 then each event group has - * 24 usable bits (bit 0 to bit 23). The EventBits_t type is used to store - * event bits within an event group. - * - * @return If the event group was created then a handle to the event group is - * returned. If there was insufficient FreeRTOS heap available to create the - * event group then NULL is returned. See http://www.freertos.org/a00111.html - * - * Example usage: -
-	// Declare a variable to hold the created event group.
-	EventGroupHandle_t xCreatedEventGroup;
-
-	// Attempt to create the event group.
-	xCreatedEventGroup = xEventGroupCreate();
-
-	// Was the event group created successfully?
-	if( xCreatedEventGroup == NULL )
-	{
-		// The event group was not created because there was insufficient
-		// FreeRTOS heap available.
-	}
-	else
-	{
-		// The event group was created.
-	}
-   
- * \defgroup xEventGroupCreate xEventGroupCreate - * \ingroup EventGroup - */ -#if( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) - EventGroupHandle_t xEventGroupCreate( void ) PRIVILEGED_FUNCTION; -#endif - -/** - * event_groups.h - *
- EventGroupHandle_t xEventGroupCreateStatic( EventGroupHandle_t * pxEventGroupBuffer );
- 
- * - * Create a new event group. - * - * Internally, within the FreeRTOS implementation, event groups use a [small] - * block of memory, in which the event group's structure is stored. If an event - * groups is created using xEventGropuCreate() then the required memory is - * automatically dynamically allocated inside the xEventGroupCreate() function. - * (see http://www.freertos.org/a00111.html). If an event group is created - * using xEventGropuCreateStatic() then the application writer must instead - * provide the memory that will get used by the event group. - * xEventGroupCreateStatic() therefore allows an event group to be created - * without using any dynamic memory allocation. - * - * Although event groups are not related to ticks, for internal implementation - * reasons the number of bits available for use in an event group is dependent - * on the configUSE_16_BIT_TICKS setting in FreeRTOSConfig.h. If - * configUSE_16_BIT_TICKS is 1 then each event group contains 8 usable bits (bit - * 0 to bit 7). If configUSE_16_BIT_TICKS is set to 0 then each event group has - * 24 usable bits (bit 0 to bit 23). The EventBits_t type is used to store - * event bits within an event group. - * - * @param pxEventGroupBuffer pxEventGroupBuffer must point to a variable of type - * StaticEventGroup_t, which will be then be used to hold the event group's data - * structures, removing the need for the memory to be allocated dynamically. - * - * @return If the event group was created then a handle to the event group is - * returned. If pxEventGroupBuffer was NULL then NULL is returned. - * - * Example usage: -
-	// StaticEventGroup_t is a publicly accessible structure that has the same
-	// size and alignment requirements as the real event group structure.  It is
-	// provided as a mechanism for applications to know the size of the event
-	// group (which is dependent on the architecture and configuration file
-	// settings) without breaking the strict data hiding policy by exposing the
-	// real event group internals.  This StaticEventGroup_t variable is passed
-	// into the xSemaphoreCreateEventGroupStatic() function and is used to store
-	// the event group's data structures
-	StaticEventGroup_t xEventGroupBuffer;
-
-	// Create the event group without dynamically allocating any memory.
-	xEventGroup = xEventGroupCreateStatic( &xEventGroupBuffer );
-   
- */ -#if( configSUPPORT_STATIC_ALLOCATION == 1 ) - EventGroupHandle_t xEventGroupCreateStatic( StaticEventGroup_t *pxEventGroupBuffer ) PRIVILEGED_FUNCTION; -#endif - -/** - * event_groups.h - *
-	EventBits_t xEventGroupWaitBits( 	EventGroupHandle_t xEventGroup,
-										const EventBits_t uxBitsToWaitFor,
-										const BaseType_t xClearOnExit,
-										const BaseType_t xWaitForAllBits,
-										const TickType_t xTicksToWait );
- 
- * - * [Potentially] block to wait for one or more bits to be set within a - * previously created event group. - * - * This function cannot be called from an interrupt. - * - * @param xEventGroup The event group in which the bits are being tested. The - * event group must have previously been created using a call to - * xEventGroupCreate(). - * - * @param uxBitsToWaitFor A bitwise value that indicates the bit or bits to test - * inside the event group. For example, to wait for bit 0 and/or bit 2 set - * uxBitsToWaitFor to 0x05. To wait for bits 0 and/or bit 1 and/or bit 2 set - * uxBitsToWaitFor to 0x07. Etc. - * - * @param xClearOnExit If xClearOnExit is set to pdTRUE then any bits within - * uxBitsToWaitFor that are set within the event group will be cleared before - * xEventGroupWaitBits() returns if the wait condition was met (if the function - * returns for a reason other than a timeout). If xClearOnExit is set to - * pdFALSE then the bits set in the event group are not altered when the call to - * xEventGroupWaitBits() returns. - * - * @param xWaitForAllBits If xWaitForAllBits is set to pdTRUE then - * xEventGroupWaitBits() will return when either all the bits in uxBitsToWaitFor - * are set or the specified block time expires. If xWaitForAllBits is set to - * pdFALSE then xEventGroupWaitBits() will return when any one of the bits set - * in uxBitsToWaitFor is set or the specified block time expires. The block - * time is specified by the xTicksToWait parameter. - * - * @param xTicksToWait The maximum amount of time (specified in 'ticks') to wait - * for one/all (depending on the xWaitForAllBits value) of the bits specified by - * uxBitsToWaitFor to become set. - * - * @return The value of the event group at the time either the bits being waited - * for became set, or the block time expired. Test the return value to know - * which bits were set. If xEventGroupWaitBits() returned because its timeout - * expired then not all the bits being waited for will be set. If - * xEventGroupWaitBits() returned because the bits it was waiting for were set - * then the returned value is the event group value before any bits were - * automatically cleared in the case that xClearOnExit parameter was set to - * pdTRUE. - * - * Example usage: -
-   #define BIT_0	( 1 << 0 )
-   #define BIT_4	( 1 << 4 )
-
-   void aFunction( EventGroupHandle_t xEventGroup )
-   {
-   EventBits_t uxBits;
-   const TickType_t xTicksToWait = 100 / portTICK_PERIOD_MS;
-
-		// Wait a maximum of 100ms for either bit 0 or bit 4 to be set within
-		// the event group.  Clear the bits before exiting.
-		uxBits = xEventGroupWaitBits(
-					xEventGroup,	// The event group being tested.
-					BIT_0 | BIT_4,	// The bits within the event group to wait for.
-					pdTRUE,			// BIT_0 and BIT_4 should be cleared before returning.
-					pdFALSE,		// Don't wait for both bits, either bit will do.
-					xTicksToWait );	// Wait a maximum of 100ms for either bit to be set.
-
-		if( ( uxBits & ( BIT_0 | BIT_4 ) ) == ( BIT_0 | BIT_4 ) )
-		{
-			// xEventGroupWaitBits() returned because both bits were set.
-		}
-		else if( ( uxBits & BIT_0 ) != 0 )
-		{
-			// xEventGroupWaitBits() returned because just BIT_0 was set.
-		}
-		else if( ( uxBits & BIT_4 ) != 0 )
-		{
-			// xEventGroupWaitBits() returned because just BIT_4 was set.
-		}
-		else
-		{
-			// xEventGroupWaitBits() returned because xTicksToWait ticks passed
-			// without either BIT_0 or BIT_4 becoming set.
-		}
-   }
-   
- * \defgroup xEventGroupWaitBits xEventGroupWaitBits - * \ingroup EventGroup - */ -EventBits_t xEventGroupWaitBits( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToWaitFor, const BaseType_t xClearOnExit, const BaseType_t xWaitForAllBits, TickType_t xTicksToWait ) PRIVILEGED_FUNCTION; - -/** - * event_groups.h - *
-	EventBits_t xEventGroupClearBits( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToClear );
- 
- * - * Clear bits within an event group. This function cannot be called from an - * interrupt. - * - * @param xEventGroup The event group in which the bits are to be cleared. - * - * @param uxBitsToClear A bitwise value that indicates the bit or bits to clear - * in the event group. For example, to clear bit 3 only, set uxBitsToClear to - * 0x08. To clear bit 3 and bit 0 set uxBitsToClear to 0x09. - * - * @return The value of the event group before the specified bits were cleared. - * - * Example usage: -
-   #define BIT_0	( 1 << 0 )
-   #define BIT_4	( 1 << 4 )
-
-   void aFunction( EventGroupHandle_t xEventGroup )
-   {
-   EventBits_t uxBits;
-
-		// Clear bit 0 and bit 4 in xEventGroup.
-		uxBits = xEventGroupClearBits(
-								xEventGroup,	// The event group being updated.
-								BIT_0 | BIT_4 );// The bits being cleared.
-
-		if( ( uxBits & ( BIT_0 | BIT_4 ) ) == ( BIT_0 | BIT_4 ) )
-		{
-			// Both bit 0 and bit 4 were set before xEventGroupClearBits() was
-			// called.  Both will now be clear (not set).
-		}
-		else if( ( uxBits & BIT_0 ) != 0 )
-		{
-			// Bit 0 was set before xEventGroupClearBits() was called.  It will
-			// now be clear.
-		}
-		else if( ( uxBits & BIT_4 ) != 0 )
-		{
-			// Bit 4 was set before xEventGroupClearBits() was called.  It will
-			// now be clear.
-		}
-		else
-		{
-			// Neither bit 0 nor bit 4 were set in the first place.
-		}
-   }
-   
- * \defgroup xEventGroupClearBits xEventGroupClearBits - * \ingroup EventGroup - */ -EventBits_t xEventGroupClearBits( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToClear ) PRIVILEGED_FUNCTION; - -/** - * event_groups.h - *
-	BaseType_t xEventGroupClearBitsFromISR( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToSet );
- 
- * - * A version of xEventGroupClearBits() that can be called from an interrupt. - * - * Setting bits in an event group is not a deterministic operation because there - * are an unknown number of tasks that may be waiting for the bit or bits being - * set. FreeRTOS does not allow nondeterministic operations to be performed - * while interrupts are disabled, so protects event groups that are accessed - * from tasks by suspending the scheduler rather than disabling interrupts. As - * a result event groups cannot be accessed directly from an interrupt service - * routine. Therefore xEventGroupClearBitsFromISR() sends a message to the - * timer task to have the clear operation performed in the context of the timer - * task. - * - * @param xEventGroup The event group in which the bits are to be cleared. - * - * @param uxBitsToClear A bitwise value that indicates the bit or bits to clear. - * For example, to clear bit 3 only, set uxBitsToClear to 0x08. To clear bit 3 - * and bit 0 set uxBitsToClear to 0x09. - * - * @return If the request to execute the function was posted successfully then - * pdPASS is returned, otherwise pdFALSE is returned. pdFALSE will be returned - * if the timer service queue was full. - * - * Example usage: -
-   #define BIT_0	( 1 << 0 )
-   #define BIT_4	( 1 << 4 )
-
-   // An event group which it is assumed has already been created by a call to
-   // xEventGroupCreate().
-   EventGroupHandle_t xEventGroup;
-
-   void anInterruptHandler( void )
-   {
-		// Clear bit 0 and bit 4 in xEventGroup.
-		xResult = xEventGroupClearBitsFromISR(
-							xEventGroup,	 // The event group being updated.
-							BIT_0 | BIT_4 ); // The bits being set.
-
-		if( xResult == pdPASS )
-		{
-			// The message was posted successfully.
-		}
-  }
-   
- * \defgroup xEventGroupClearBitsFromISR xEventGroupClearBitsFromISR - * \ingroup EventGroup - */ -#if( configUSE_TRACE_FACILITY == 1 ) - BaseType_t xEventGroupClearBitsFromISR( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToClear ) PRIVILEGED_FUNCTION; -#else - #define xEventGroupClearBitsFromISR( xEventGroup, uxBitsToClear ) xTimerPendFunctionCallFromISR( vEventGroupClearBitsCallback, ( void * ) xEventGroup, ( uint32_t ) uxBitsToClear, NULL ) -#endif - -/** - * event_groups.h - *
-	EventBits_t xEventGroupSetBits( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToSet );
- 
- * - * Set bits within an event group. - * This function cannot be called from an interrupt. xEventGroupSetBitsFromISR() - * is a version that can be called from an interrupt. - * - * Setting bits in an event group will automatically unblock tasks that are - * blocked waiting for the bits. - * - * @param xEventGroup The event group in which the bits are to be set. - * - * @param uxBitsToSet A bitwise value that indicates the bit or bits to set. - * For example, to set bit 3 only, set uxBitsToSet to 0x08. To set bit 3 - * and bit 0 set uxBitsToSet to 0x09. - * - * @return The value of the event group at the time the call to - * xEventGroupSetBits() returns. There are two reasons why the returned value - * might have the bits specified by the uxBitsToSet parameter cleared. First, - * if setting a bit results in a task that was waiting for the bit leaving the - * blocked state then it is possible the bit will be cleared automatically - * (see the xClearBitOnExit parameter of xEventGroupWaitBits()). Second, any - * unblocked (or otherwise Ready state) task that has a priority above that of - * the task that called xEventGroupSetBits() will execute and may change the - * event group value before the call to xEventGroupSetBits() returns. - * - * Example usage: -
-   #define BIT_0	( 1 << 0 )
-   #define BIT_4	( 1 << 4 )
-
-   void aFunction( EventGroupHandle_t xEventGroup )
-   {
-   EventBits_t uxBits;
-
-		// Set bit 0 and bit 4 in xEventGroup.
-		uxBits = xEventGroupSetBits(
-							xEventGroup,	// The event group being updated.
-							BIT_0 | BIT_4 );// The bits being set.
-
-		if( ( uxBits & ( BIT_0 | BIT_4 ) ) == ( BIT_0 | BIT_4 ) )
-		{
-			// Both bit 0 and bit 4 remained set when the function returned.
-		}
-		else if( ( uxBits & BIT_0 ) != 0 )
-		{
-			// Bit 0 remained set when the function returned, but bit 4 was
-			// cleared.  It might be that bit 4 was cleared automatically as a
-			// task that was waiting for bit 4 was removed from the Blocked
-			// state.
-		}
-		else if( ( uxBits & BIT_4 ) != 0 )
-		{
-			// Bit 4 remained set when the function returned, but bit 0 was
-			// cleared.  It might be that bit 0 was cleared automatically as a
-			// task that was waiting for bit 0 was removed from the Blocked
-			// state.
-		}
-		else
-		{
-			// Neither bit 0 nor bit 4 remained set.  It might be that a task
-			// was waiting for both of the bits to be set, and the bits were
-			// cleared as the task left the Blocked state.
-		}
-   }
-   
- * \defgroup xEventGroupSetBits xEventGroupSetBits - * \ingroup EventGroup - */ -EventBits_t xEventGroupSetBits( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToSet ) PRIVILEGED_FUNCTION; - -/** - * event_groups.h - *
-	BaseType_t xEventGroupSetBitsFromISR( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToSet, BaseType_t *pxHigherPriorityTaskWoken );
- 
- * - * A version of xEventGroupSetBits() that can be called from an interrupt. - * - * Setting bits in an event group is not a deterministic operation because there - * are an unknown number of tasks that may be waiting for the bit or bits being - * set. FreeRTOS does not allow nondeterministic operations to be performed in - * interrupts or from critical sections. Therefore xEventGroupSetBitsFromISR() - * sends a message to the timer task to have the set operation performed in the - * context of the timer task - where a scheduler lock is used in place of a - * critical section. - * - * @param xEventGroup The event group in which the bits are to be set. - * - * @param uxBitsToSet A bitwise value that indicates the bit or bits to set. - * For example, to set bit 3 only, set uxBitsToSet to 0x08. To set bit 3 - * and bit 0 set uxBitsToSet to 0x09. - * - * @param pxHigherPriorityTaskWoken As mentioned above, calling this function - * will result in a message being sent to the timer daemon task. If the - * priority of the timer daemon task is higher than the priority of the - * currently running task (the task the interrupt interrupted) then - * *pxHigherPriorityTaskWoken will be set to pdTRUE by - * xEventGroupSetBitsFromISR(), indicating that a context switch should be - * requested before the interrupt exits. For that reason - * *pxHigherPriorityTaskWoken must be initialised to pdFALSE. See the - * example code below. - * - * @return If the request to execute the function was posted successfully then - * pdPASS is returned, otherwise pdFALSE is returned. pdFALSE will be returned - * if the timer service queue was full. - * - * Example usage: -
-   #define BIT_0	( 1 << 0 )
-   #define BIT_4	( 1 << 4 )
-
-   // An event group which it is assumed has already been created by a call to
-   // xEventGroupCreate().
-   EventGroupHandle_t xEventGroup;
-
-   void anInterruptHandler( void )
-   {
-   BaseType_t xHigherPriorityTaskWoken, xResult;
-
-		// xHigherPriorityTaskWoken must be initialised to pdFALSE.
-		xHigherPriorityTaskWoken = pdFALSE;
-
-		// Set bit 0 and bit 4 in xEventGroup.
-		xResult = xEventGroupSetBitsFromISR(
-							xEventGroup,	// The event group being updated.
-							BIT_0 | BIT_4   // The bits being set.
-							&xHigherPriorityTaskWoken );
-
-		// Was the message posted successfully?
-		if( xResult == pdPASS )
-		{
-			// If xHigherPriorityTaskWoken is now set to pdTRUE then a context
-			// switch should be requested.  The macro used is port specific and
-			// will be either portYIELD_FROM_ISR() or portEND_SWITCHING_ISR() -
-			// refer to the documentation page for the port being used.
-			portYIELD_FROM_ISR( xHigherPriorityTaskWoken );
-		}
-  }
-   
- * \defgroup xEventGroupSetBitsFromISR xEventGroupSetBitsFromISR - * \ingroup EventGroup - */ -#if( configUSE_TRACE_FACILITY == 1 ) - BaseType_t xEventGroupSetBitsFromISR( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToSet, BaseType_t *pxHigherPriorityTaskWoken ) PRIVILEGED_FUNCTION; -#else - #define xEventGroupSetBitsFromISR( xEventGroup, uxBitsToSet, pxHigherPriorityTaskWoken ) xTimerPendFunctionCallFromISR( vEventGroupSetBitsCallback, ( void * ) xEventGroup, ( uint32_t ) uxBitsToSet, pxHigherPriorityTaskWoken ) -#endif - -/** - * event_groups.h - *
-	EventBits_t xEventGroupSync(	EventGroupHandle_t xEventGroup,
-									const EventBits_t uxBitsToSet,
-									const EventBits_t uxBitsToWaitFor,
-									TickType_t xTicksToWait );
- 
- * - * Atomically set bits within an event group, then wait for a combination of - * bits to be set within the same event group. This functionality is typically - * used to synchronise multiple tasks, where each task has to wait for the other - * tasks to reach a synchronisation point before proceeding. - * - * This function cannot be used from an interrupt. - * - * The function will return before its block time expires if the bits specified - * by the uxBitsToWait parameter are set, or become set within that time. In - * this case all the bits specified by uxBitsToWait will be automatically - * cleared before the function returns. - * - * @param xEventGroup The event group in which the bits are being tested. The - * event group must have previously been created using a call to - * xEventGroupCreate(). - * - * @param uxBitsToSet The bits to set in the event group before determining - * if, and possibly waiting for, all the bits specified by the uxBitsToWait - * parameter are set. - * - * @param uxBitsToWaitFor A bitwise value that indicates the bit or bits to test - * inside the event group. For example, to wait for bit 0 and bit 2 set - * uxBitsToWaitFor to 0x05. To wait for bits 0 and bit 1 and bit 2 set - * uxBitsToWaitFor to 0x07. Etc. - * - * @param xTicksToWait The maximum amount of time (specified in 'ticks') to wait - * for all of the bits specified by uxBitsToWaitFor to become set. - * - * @return The value of the event group at the time either the bits being waited - * for became set, or the block time expired. Test the return value to know - * which bits were set. If xEventGroupSync() returned because its timeout - * expired then not all the bits being waited for will be set. If - * xEventGroupSync() returned because all the bits it was waiting for were - * set then the returned value is the event group value before any bits were - * automatically cleared. - * - * Example usage: -
- // Bits used by the three tasks.
- #define TASK_0_BIT		( 1 << 0 )
- #define TASK_1_BIT		( 1 << 1 )
- #define TASK_2_BIT		( 1 << 2 )
-
- #define ALL_SYNC_BITS ( TASK_0_BIT | TASK_1_BIT | TASK_2_BIT )
-
- // Use an event group to synchronise three tasks.  It is assumed this event
- // group has already been created elsewhere.
- EventGroupHandle_t xEventBits;
-
- void vTask0( void *pvParameters )
- {
- EventBits_t uxReturn;
- TickType_t xTicksToWait = 100 / portTICK_PERIOD_MS;
-
-	 for( ;; )
-	 {
-		// Perform task functionality here.
-
-		// Set bit 0 in the event flag to note this task has reached the
-		// sync point.  The other two tasks will set the other two bits defined
-		// by ALL_SYNC_BITS.  All three tasks have reached the synchronisation
-		// point when all the ALL_SYNC_BITS are set.  Wait a maximum of 100ms
-		// for this to happen.
-		uxReturn = xEventGroupSync( xEventBits, TASK_0_BIT, ALL_SYNC_BITS, xTicksToWait );
-
-		if( ( uxReturn & ALL_SYNC_BITS ) == ALL_SYNC_BITS )
-		{
-			// All three tasks reached the synchronisation point before the call
-			// to xEventGroupSync() timed out.
-		}
-	}
- }
-
- void vTask1( void *pvParameters )
- {
-	 for( ;; )
-	 {
-		// Perform task functionality here.
-
-		// Set bit 1 in the event flag to note this task has reached the
-		// synchronisation point.  The other two tasks will set the other two
-		// bits defined by ALL_SYNC_BITS.  All three tasks have reached the
-		// synchronisation point when all the ALL_SYNC_BITS are set.  Wait
-		// indefinitely for this to happen.
-		xEventGroupSync( xEventBits, TASK_1_BIT, ALL_SYNC_BITS, portMAX_DELAY );
-
-		// xEventGroupSync() was called with an indefinite block time, so
-		// this task will only reach here if the syncrhonisation was made by all
-		// three tasks, so there is no need to test the return value.
-	 }
- }
-
- void vTask2( void *pvParameters )
- {
-	 for( ;; )
-	 {
-		// Perform task functionality here.
-
-		// Set bit 2 in the event flag to note this task has reached the
-		// synchronisation point.  The other two tasks will set the other two
-		// bits defined by ALL_SYNC_BITS.  All three tasks have reached the
-		// synchronisation point when all the ALL_SYNC_BITS are set.  Wait
-		// indefinitely for this to happen.
-		xEventGroupSync( xEventBits, TASK_2_BIT, ALL_SYNC_BITS, portMAX_DELAY );
-
-		// xEventGroupSync() was called with an indefinite block time, so
-		// this task will only reach here if the syncrhonisation was made by all
-		// three tasks, so there is no need to test the return value.
-	}
- }
-
- 
- * \defgroup xEventGroupSync xEventGroupSync - * \ingroup EventGroup - */ -EventBits_t xEventGroupSync( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToSet, const EventBits_t uxBitsToWaitFor, TickType_t xTicksToWait ) PRIVILEGED_FUNCTION; - - -/** - * event_groups.h - *
-	EventBits_t xEventGroupGetBits( EventGroupHandle_t xEventGroup );
- 
- * - * Returns the current value of the bits in an event group. This function - * cannot be used from an interrupt. - * - * @param xEventGroup The event group being queried. - * - * @return The event group bits at the time xEventGroupGetBits() was called. - * - * \defgroup xEventGroupGetBits xEventGroupGetBits - * \ingroup EventGroup - */ -#define xEventGroupGetBits( xEventGroup ) xEventGroupClearBits( xEventGroup, 0 ) - -/** - * event_groups.h - *
-	EventBits_t xEventGroupGetBitsFromISR( EventGroupHandle_t xEventGroup );
- 
- * - * A version of xEventGroupGetBits() that can be called from an ISR. - * - * @param xEventGroup The event group being queried. - * - * @return The event group bits at the time xEventGroupGetBitsFromISR() was called. - * - * \defgroup xEventGroupGetBitsFromISR xEventGroupGetBitsFromISR - * \ingroup EventGroup - */ -EventBits_t xEventGroupGetBitsFromISR( EventGroupHandle_t xEventGroup ) PRIVILEGED_FUNCTION; - -/** - * event_groups.h - *
-	void xEventGroupDelete( EventGroupHandle_t xEventGroup );
- 
- * - * Delete an event group that was previously created by a call to - * xEventGroupCreate(). Tasks that are blocked on the event group will be - * unblocked and obtain 0 as the event group's value. - * - * @param xEventGroup The event group being deleted. - */ -void vEventGroupDelete( EventGroupHandle_t xEventGroup ) PRIVILEGED_FUNCTION; - -/* For internal use only. */ -void vEventGroupSetBitsCallback( void *pvEventGroup, const uint32_t ulBitsToSet ) PRIVILEGED_FUNCTION; -void vEventGroupClearBitsCallback( void *pvEventGroup, const uint32_t ulBitsToClear ) PRIVILEGED_FUNCTION; - - -#if (configUSE_TRACE_FACILITY == 1) - UBaseType_t uxEventGroupGetNumber( void* xEventGroup ) PRIVILEGED_FUNCTION; - void vEventGroupSetNumber( void* xEventGroup, UBaseType_t uxEventGroupNumber ) PRIVILEGED_FUNCTION; -#endif - -#ifdef __cplusplus -} -#endif - -#endif /* EVENT_GROUPS_H */ - - diff --git a/rtos/freertos/abstraction_layer_freertos/include/events.h b/rtos/freertos/abstraction_layer_freertos/include/events.h deleted file mode 100644 index 1d02988b..00000000 --- a/rtos/freertos/abstraction_layer_freertos/include/events.h +++ /dev/null @@ -1,184 +0,0 @@ -/* - * Copyright (C) 2019 ETH Zurich, University of Bologna and GreenWaves - * Technologies - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifndef __EVENTS_H__ -#define __EVENTS_H__ - -#include "properties.h" - -/* Events offsets. */ -#define UDMA_EVENT_OFFSET_RX (0) -#define UDMA_EVENT_OFFSET_TX (1) - -#define UDMA_EVENT_OFFSET_SPI_CMD (2) -#define UDMA_EVENT_OFFSET_SPI_EOT (3) - -/* Number of events per peripheral. */ -#define UDMA_CHANNEL_NB_EVENTS_LOG2 (2) -#define UDMA_CHANNEL_NB_EVENTS (1 << UDMA_CHANNEL_NB_EVENTS_LOG2) - -/* Number of SW events. */ -#define NB_SW_EVENTS (8) - -/*! @brief FC events (aka IRQ lines)*/ -#define FC_IRQ_SW_EVT(id) (id & (NB_SW_EVENTS - 1)) -#define FC_EVENT_SW(id) (id & (NB_SW_EVENTS - 1)) -#define FC_EVENT_DMA_EVT (8) -#define FC_EVENT_DMA (9) -#define FC_EVENT_TIMER0 (10) /* Timer low. */ -/* #define SYSTICK_IRQN FC_EVENT_TIMER0 */ -#define FC_EVENT_TIMER1 (11) /* Timer high. */ -/* #define FC_EVENT_EU_HWCE (12) */ - -/* - * SoC event unit events: Many events get implicitely muxed into this interrupt. - * A user that gets such an interrupt has to check the event unit's registers to - * see what happened - */ -#define FC_EVENT_SOC_EVENT (27) -/* #define FC_EVENT_MPU_ERROR (28) */ -/* - * Event queue error: If we don't process event unit events quickly enough - * internal fifos can overflow and we get this error interrupt - */ -#define FC_EVENT_FC_QUEUE_ERROR (29) -#define FC_EVENT_HP0 (30) -#define FC_EVENT_HP1 (31) - -/*! @name SoC events */ -/*! @brief Number of FC_Events. */ -#define SOC_EU_NB_FC_EVENTS (168) - -/*! @brief UDMA events */ -/* SPIM */ -#define SOC_EVENT_UDMA_SPIM_RX(id) \ - ((UDMA_SPIM_ID(id) << UDMA_CHANNEL_NB_EVENTS_LOG2) + \ - UDMA_EVENT_OFFSET_RX) -#define SOC_EVENT_UDMA_SPIM_TX(id) \ - ((UDMA_SPIM_ID(id) << UDMA_CHANNEL_NB_EVENTS_LOG2) + \ - UDMA_EVENT_OFFSET_TX) -#define SOC_EVENT_UDMA_SPIM_CMD(id) \ - ((UDMA_SPIM_ID(id) << UDMA_CHANNEL_NB_EVENTS_LOG2) + \ - UDMA_EVENT_OFFSET_SPI_CMD) -#define SOC_EVENT_UDMA_SPIM_EOT(id) \ - ((UDMA_SPIM_ID(id) << UDMA_CHANNEL_NB_EVENTS_LOG2) + \ - UDMA_EVENT_OFFSET_SPI_EOT) -/* HYPER */ -/* #define SOC_EVENT_UDMA_HYPER_RX(id) ((UDMA_HYPER_ID(id) << - * UDMA_CHANNEL_NB_EVENTS_LOG2) + UDMA_EVENT_OFFSET_RX) */ -/* #define SOC_EVENT_UDMA_HYPER_TX(id) ((UDMA_HYPER_ID(id) << - * UDMA_CHANNEL_NB_EVENTS_LOG2) + UDMA_EVENT_OFFSET_TX) */ -/* UART */ -#define SOC_EVENT_UDMA_UART_RX(id) \ - ((UDMA_UART_ID(id) << UDMA_CHANNEL_NB_EVENTS_LOG2) + \ - UDMA_EVENT_OFFSET_RX) -#define SOC_EVENT_UDMA_UART_TX(id) \ - ((UDMA_UART_ID(id) << UDMA_CHANNEL_NB_EVENTS_LOG2) + \ - UDMA_EVENT_OFFSET_TX) -/* I2C */ -#define SOC_EVENT_UDMA_I2C_RX(id) \ - ((UDMA_I2C_ID(id) << UDMA_CHANNEL_NB_EVENTS_LOG2) + \ - UDMA_EVENT_OFFSET_RX) -#define SOC_EVENT_UDMA_I2C_TX(id) \ - ((UDMA_I2C_ID(id) << UDMA_CHANNEL_NB_EVENTS_LOG2) + \ - UDMA_EVENT_OFFSET_TX) -/* DMACPY */ -/* #define SOC_EVENT_UDMA_DMACPY_RX(id) ((UDMA_DMACPY_ID(id) << - * UDMA_CHANNEL_NB_EVENTS_LOG2) + UDMA_EVENT_OFFSET_RX) */ -/* #define SOC_EVENT_UDMA_DMACPY_TX(id) ((UDMA_DMACPY_ID(id) << - * UDMA_CHANNEL_NB_EVENTS_LOG2) + UDMA_EVENT_OFFSET_TX) */ -/* I2S */ -#define SOC_EVENT_UDMA_I2S_RX(id) \ - ((UDMA_I2S_ID(id) << UDMA_CHANNEL_NB_EVENTS_LOG2) + \ - UDMA_EVENT_OFFSET_RX) -#define SOC_EVENT_UDMA_I2S_TX(id) \ - ((UDMA_I2S_ID(id) << UDMA_CHANNEL_NB_EVENTS_LOG2) + \ - UDMA_EVENT_OFFSET_TX) -/* CPI */ -#define SOC_EVENT_UDMA_CPI_RX(id) \ - ((UDMA_CPI_ID(id) << UDMA_CHANNEL_NB_EVENTS_LOG2) + \ - UDMA_EVENT_OFFSET_RX) - -/* UDMA EOT & error events. */ -//#define SOC_EVENT_UDMA_I2C_ERROR(id) (26 + id) - -/*! @brief PMU events, no pmu*/ -/* #define SOC_EVENT_PMU_CLUSTER_POWER (31) */ -/* #define SOC_EVENT_PMU_CLUSTER_CG (35) */ -/* #define SOC_EVENT_PMU_DLC_BRIDGE_PICL (36) */ -/* #define SOC_EVENT_PMU_DLC_BRIDGE_SCU (37) */ -/* #define SOC_EVENT_PWM(id) (38 + id) */ -#define SOC_EVENT_GPIO (139) -#define SOC_EVENT_HWPE0 (140) -#define SOC_EVENT_HWPE1 (141) -/* #define SOC_EVENT_RTC_APB (43) */ -/* #define SOC_EVENT_RTC (44) */ - -#define SOC_EVENT_SW(id) (160 + (id & (NB_SW_EVENTS - 1))) -#define SOC_EVENT_REF32K_CLK_RISE (168) - -/** - * \brief Cluster IRQ - * - * Below are listed cluster IRQ. - */ -#define CL_IRQ_SW_EVT(id) (id & (NB_SW_EVENTS - 1)) -#define CL_IRQ_DMA0 (8) -#define CL_IRQ_DMA1 (9) -#define CL_IRQ_TIMER0_LO (10) -#define CL_IRQ_TIMER0_HI (11) -#define CL_IRQ_ACC_EVT_0 (12) /* HW Acc. */ -#define CL_IRQ_ACC_EVT_1 (13) /* HW Acc. */ -#define CL_IRQ_ACC_EVT_2 (14) /* HW Acc. */ -#define CL_IRQ_ACC_EVT_3 (15) /* HW Acc. */ -#define CL_IRQ_BARRIER_EVT (16) -#define CL_IRQ_HW_MUTEX_EVT (17) -#define CL_IRQ_DISPATCH_EVT (18) -/* #define CL_IRQ_CLUSTER_EVT_0 (22) */ -/* #define CL_IRQ_CLUSTER_EVT_1 (23) */ -/* #define CL_IRQ_SOC_FIFO_EVT (27) */ -#define CL_EVENT_SOC_EVT (30) /* adapted */ - - - -#define CLUSTER_TO_FC_NOTIFY_IRQN FC_IRQ_SW_EVT(2) /*!< IRQ sent by cluster to FC. - * IRQ handler is needed. - * Asynchronous. - */ -#define FC_SOC_EVENT_NOTIFY_IRQ FC_IRQ_SW_EVT(3) /*!< IRQ used by RTC. */ - - -#define FC_TO_CLUSTER_NOTIFY_EVENT CL_IRQ_SW_EVT(1) /*!< Event sent by FC to cluster. - * A cluster core is waiting for this - * event. - * Synchronous. - */ -#define DMA_SW_IRQN CL_IRQ_SW_EVT(2) /*!< Event used when emulating 2D DMA - * transfers or large 1D ttransfers. - * Master core waits for this SW event, - * triggered by CL_IRQ_DMA1 handler. - */ -#define PRINTF_LOCK_IRQN CL_IRQ_SW_EVT(3) /*!< IRQ used to sync FC and cluster cores - * to lock/unlock printf. - */ -#define CL_USER_EVENT CL_IRQ_SW_EVT(7) /*!< Event used by user to sync cluster with - * FC. - */ - -#define FC_NOTIFY_CLUSTER_EVENT FC_TO_CLUSTER_NOTIFY_EVENT - -#endif /* __EVENTS_H__ */ diff --git a/rtos/freertos/abstraction_layer_freertos/include/fc_event.h b/rtos/freertos/abstraction_layer_freertos/include/fc_event.h deleted file mode 100644 index e933926b..00000000 --- a/rtos/freertos/abstraction_layer_freertos/include/fc_event.h +++ /dev/null @@ -1,47 +0,0 @@ -/* - * Copyright 2020 GreenWaves Technologies - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * SPDX-License-Identifier: Apache-2.0 - */ - -#ifndef __FC_EVENT_H__ -#define __FC_EVENT_H__ - -#include "events.h" -#include "irq.h" - -#define NB_SOC_EVENTS (SOC_EU_NB_FC_EVENTS) - -typedef void (*pi_fc_event_handler_t)(void *arg); - -void pi_fc_event_handler_init(uint32_t fc_event_irq); - -/*! - * @brief FC event handler. - * - * This function pops an event and executes the handler corresponding to the - * event. - */ -void fc_soc_event_handler(void); - -void pi_fc_event_handler_set(uint32_t event_id, - pi_fc_event_handler_t event_handler); - -void pi_fc_event_handler_clear(uint32_t event_id); - -void clear_fc_event_handler(uint32_t event_id); - - -#endif /* __FC_EVENT_H__ */ diff --git a/rtos/freertos/abstraction_layer_freertos/include/fll.h b/rtos/freertos/abstraction_layer_freertos/include/fll.h deleted file mode 100644 index 1b0e2b90..00000000 --- a/rtos/freertos/abstraction_layer_freertos/include/fll.h +++ /dev/null @@ -1,237 +0,0 @@ -/* - * Copyright 2020 GreenWaves Technologies - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * SPDX-License-Identifier: Apache-2.0 - */ - -#ifndef __PI_FLL_H__ -#define __PI_FLL_H__ - -#include -#include "properties.h" -#include "memory_map.h" -#include "freq.h" - -#define FLL_STATUS_OFFSET 0x000 -#define FLL_CONF1_OFFSET 0x004 -#define FLL_CONF2_OFFSET 0x008 -#define FLL_INTEGRATOR_OFFSET 0x00C - - -/** FLL_CTRL - Registers Layout Typedef */ -typedef struct { - volatile uint32_t FLL_STATUS; /**< FLL_CTRL Status register, offset: - 0x00 */ - volatile uint32_t FLL_CONF1; /**< FLL_CTRL Configuration1 register, - offset: 0x04 */ - volatile uint32_t FLL_CONF2; /**< FLL_CTRL Configuration2 register, - offset: 0x08 */ - volatile uint32_t FLL_INTEGRATOR; /**< FLL_CTRL INTEGRATOR register, - offset: 0x0C */ -} fll_ctrl_t; - - -typedef enum _fll_type { - FLL_SOC = 0, - FLL_PERI = 1, - FLL_CLUSTER = 2 -} fll_type_t; - -/*! @name FLL_STATUS - FLL_CTRL status register */ -#define FLL_CTRL_STATUS_MULTI_FACTOR_MASK (0xFFFFU) -#define FLL_CTRL_STATUS_MULTI_FACTOR_SHIFT (0U) - -/*! @name SOC_CONF1 - FLL_CTRL configuration 1 register */ -#define FLL_CTRL_CONF1_MULTI_FACTOR_MASK (0xFFFFU) -#define FLL_CTRL_CONF1_MULTI_FACTOR_SHIFT (0U) - -#define FLL_CTRL_CONF1_DCO_INPUT_MASK (0x3FF0000U) -#define FLL_CTRL_CONF1_DCO_INPUT_SHIFT (16U) - -#define FLL_CTRL_CONF1_CLK_OUT_DIV_MASK (0x3C000000U) -#define FLL_CTRL_CONF1_CLK_OUT_DIV_SHIFT (26U) - -#define FLL_CTRL_CONF1_OUTPUT_LOCK_EN_MASK (0x40000000U) -#define FLL_CTRL_CONF1_OUTPUT_LOCK_EN_SHIFT (30U) - -#define FLL_CTRL_CONF1_MODE_MASK (0x80000000U) -#define FLL_CTRL_CONF1_MODE_SHIFT (31U) - -/*! @name SOC_CONF2 - FLL_CTRL configuration 2 register */ -#define FLL_CTRL_CONF2_LOOPGAIN_MASK (0xFU) -#define FLL_CTRL_CONF2_LOOPGAIN_SHIFT (0U) - -#define FLL_CTRL_CONF2_DEASSERT_CYCLES_MASK (0x3F0U) -#define FLL_CTRL_CONF2_DEASSERT_CYCLES_SHIFT (4U) - -#define FLL_CTRL_CONF2_ASSERT_CYCLES_MASK (0xFC00U) -#define FLL_CTRL_CONF2_ASSERT_CYCLES_SHIFT (10U) - -#define FLL_CTRL_CONF2_LOCK_TOLERANCE_MASK (0xFFF0000U) -#define FLL_CTRL_CONF2_LOCK_TOLERANCE_SHIFT (16U) - -#define FLL_CTRL_CONF2_CONF_CLK_SEL_MASK (0x20000000U) -#define FLL_CTRL_CONF2_CONF_CLK_SEL_SHIFT (29U) - -#define FLL_CTRL_CONF2_OPEN_LOOP_MASK (0x40000000U) -#define FLL_CTRL_CONF2_OPEN_LOOP_SHIFT (30U) - -#define FLL_CTRL_CONF2_DITHERING_MASK (0x80000000U) -#define FLL_CTRL_CONF2_DITHERING_SHIFT (31U) - -/*! @name SOC_INTEGRATOR - FLL_CTRL configuration 2 register */ -#define FLL_CTRL_INTEGRATOR_FRACT_PART_MASK (0xFFC0U) -#define FLL_CTRL_INTEGRATOR_FRACT_PART_SHIFT (6U) - -#define FLL_CTRL_INTEGRATOR_INT_PART_MASK (0x3FF0000U) -#define FLL_CTRL_INTEGRATOR_INT_PART_SHIFT (16U) - -/*! @name FLL_CONVERGE - FLL_CTRL configuration 2 register */ -#define FLL_CTRL_SOC_FLL_CONV_MASK (0x1U) -#define FLL_CTRL_SOC_FLL_CONV_SHIFT (0U) - -#define FLL_CTRL_CLUSTER_FLL_CONV_MASK (0x2U) -#define FLL_CTRL_CLUSTER_FLL_CONV_SHIFT (1U) - - -/* The number of FLL */ -#define FLL_NUM ARCHI_NB_FLL -/* The FLL reference frequency*/ -#define FLL_REF_CLK ARCHI_REF_CLOCK - - -/* FLL_CTRL - Peripheral instance base addresses */ -/** Peripheral FLL_CTRL base address */ -#define FLL_CTRL_BASE (SOC_PERIPHERALS_ADDR) -/** Peripheral FLL_CTRL base pointer */ -#define FLL_CTRL ((fll_ctrl_t *)FLL_CTRL_BASE) -/** Array initializer of FLL_CTRL base addresses */ -#define FLL_CTRL_BASE_ADDRS \ - { \ - FLL_CTRL_BASE \ - } -/** Array initializer of FLL_CTRL base pointers */ -#define FLL_CTRL_BASE_PTRS \ - { \ - FLL_CTRL \ - } - - -#define DCDC_OPER_POINTS (4) - -#define DCDC_DEFAULT_NV (1200) -#define DCDC_DEFAULT_MV (1200) -#define DCDC_DEFAULT_LV (1000) -#define DCDC_DEFAULT_RET (800) -#define DCDC_RANGE (5) -#define DCDC_RANGE_MASK (0x1F) -#define DCDC_BASE_VALUE (550) -#define DCDC_STEP (50) - -#define MAX_DCDC_VARIATION ((int32_t)(0.1 * 32767)) - -#define FLL_LV_MAX_FREQUENCY 150000000 -#define FLL_NV_MAX_FREQUENCY 250000000 -#define FLL_SOC_MIN_FREQUENCY 150000000 -#define FLL_SOC_MAX_FREQUENCY 250000000 -#define FLL_CLUSTER_MIN_FREQUENCY 87000000 -#define FLL_CLUSTER_MAX_FREQUENCY 175000000 - -#define FLL_SOC_FV_SLOPE \ - ((FLL_SOC_MAX_FREQUENCY - FLL_SOC_MIN_FREQUENCY) / \ - (DCDC_DEFAULT_NV - DCDC_DEFAULT_LV)) -#define FLL_CLUSTER_FV_SLOPE \ - ((FLL_CLUSTER_MAX_FREQUENCY - FLL_CLUSTER_MIN_FREQUENCY) / \ - (DCDC_DEFAULT_NV - DCDC_DEFAULT_LV)) - - -/*! - * @brief Initialize one FLL. - * - * @param which_fll SoC's or Cluster's fll. - * @param ret_state Retention state. - * - * @note . - */ -void pi_fll_init(fll_type_t which_fll, uint32_t ret_state); - -/*! - * @brief Deinitalize one FLL. - * - * @param which_fll SoC's or Cluster's fll. - * - * @note . - */ -void pi_fll_deinit(fll_type_t which_fll); - -/*! - * @brief Clean all FLL configuration. - * - * @note . - */ -void pi_fll_clear(); - - -/*! - * @brief Set specific FLL to wanted frequency. - * - * @param which_fll SoC's or Cluster's fll. - * @param frequency The frequency value to set. - * @param check Check frequency. - * - * @note . - * @return check result of frequency. - */ -int pi_fll_set_frequency(fll_type_t which_fll, uint32_t frequency, int check); - -/*! - * @brief Get specific FLL's frequency. - * - * @param which_fll SoC's or Cluster's fll. - * - * @note . - * @return frequency value. - */ -int pi_fll_get_frequency(fll_type_t which_fll, uint8_t real); - -/*! - * @brief Calculate FC SOC domain's max frequency with certain voltage - * - * @param voltage Given voltage - * - * @return max frquency. - */ -static inline int pi_fll_soc_max_freq_at_V(int voltage) -{ - return (FLL_SOC_MIN_FREQUENCY + - (voltage - DCDC_DEFAULT_LV) * FLL_SOC_FV_SLOPE); -} - -/*! - * @brief Calculate cluster domain's max frequency with certain voltage - * - * @param voltage Given voltage - * - * @return max frquency. - */ -static inline int pi_fll_cluster_max_freq_at_V(int voltage) -{ - return (FLL_CLUSTER_MIN_FREQUENCY + - (voltage - DCDC_DEFAULT_LV) * FLL_CLUSTER_FV_SLOPE); -} - - - -#endif /* __FLL_H__ */ diff --git a/rtos/freertos/abstraction_layer_freertos/include/freq.h b/rtos/freertos/abstraction_layer_freertos/include/freq.h deleted file mode 100644 index c8a9a788..00000000 --- a/rtos/freertos/abstraction_layer_freertos/include/freq.h +++ /dev/null @@ -1,53 +0,0 @@ -/* - * Copyright (C) 2019 GreenWaves Technologies - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * SPDX-License-Identifier: Apache-2.0 - */ -/* Control frequency for soc/cluster/peripheral domains */ - -#ifndef __FREQ_H__ -#define __FREQ_H__ - -#include - -typedef enum { - PI_FREQ_DOMAIN_FC = 0, - PI_FREQ_DOMAIN_CL = 1, - PI_FREQ_DOMAIN_PERIPH = 2 -} pi_freq_domain_e; - -/** - * \brief Get current frequency of a domain. - * - * Gets the current frequency of a specific frequency domain in Hz. - * - * \param domain The frequency domain. - * \return The frequency in Hz. - */ -uint32_t pi_freq_get(pi_freq_domain_e domain); - -/** - * \brief Set frequency of a domain. - * - * Set thefrequency of a specific frequency domain in Hz. - * This can return an error if the frequency is invalid. - * - * \param domain The frequency domain. - * \param freq The desired frequency in Hz. - * \return 0 if successfull, -1 otherwise. - */ -int32_t pi_freq_set(pi_freq_domain_e domain, uint32_t freq); - -#endif /* __FREQ_H__ */ diff --git a/rtos/freertos/abstraction_layer_freertos/include/gpio.h b/rtos/freertos/abstraction_layer_freertos/include/gpio.h deleted file mode 100644 index 90ea093e..00000000 --- a/rtos/freertos/abstraction_layer_freertos/include/gpio.h +++ /dev/null @@ -1,438 +0,0 @@ -/* - * Copyright (C) 2020 ETH Zurich and University of Bologna - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -/* - * Copyright (c) 2019-2020 Nordic Semiconductor ASA - * Copyright (c) 2019 Piotr Mienkowski - * Copyright (c) 2017 ARM Ltd - * Copyright (c) 2015-2016 Intel Corporation. - * - * SPDX-License-Identifier: Apache-2.0 - */ - -/* Driver to control and configure the PULP GPIO pins */ -/* Author: Germain Haugou (germain.haugou@iis.ee.ethz.ch) - * Robert Balas (balasr@iis.ee.ethz.ch) - */ - -#ifndef __GPIO_H__ -#define __GPIO_H__ - -#include -#include - -#include "pulp_mem_map.h" -#include "io.h" -#include "pinmux.h" - -/* ControlPULP GPIO list */ - -/* SLP_S3 */ -#define GPIO_SLP_S3 0 - -/* SLP_S4 */ -#define GPIO_SLP_S4 1 - -/* SLP_S4 */ -#define GPIO_SLP_S5 2 - -/* CPU_PWRGD_OUT */ -#define GPIO_CPU_PWRGD_OUT 3 - -/* CPU_THERMTRIP */ -#define GPIO_CPU_THERMTRIP 4 - -/* CPU_ERRCODE */ -#define GPIO_ERRCODE(N) (5 + N) - -/* CPU_RESET_OUT */ -#define GPIO_RESET_OUT 9 - -/* SYS_RESET */ -#define GPIO_SYS_RESET 10 - -/* SYS_RSMRST */ -#define GPIO_SYS_RSMRST 11 - -/* SYS_PWR_BTN */ -#define GPIO_SYS_PWR_BTN 12 - -/* SYS_PWRGD_IN */ -#define GPIO_SYS_PWRGD_IN 13 - -/* SYS_WAKE */ -#define GPIO_SYS_WAKE 14 - -/* CPU_THROTTLE */ -#define GPIO_CPU_THROTTLE(N) (15 + N) - -/* CPU_SOCKET_ID */ -#define GPIO_CPU_SOCKET_ID(N) (18 + N) - -/* CPU_STRAP */ -#define GPIO_CPU_STRAP(N) (20 + N) - -/* Registers */ - -/* GPIO pad direction configuration register. */ -#define GPIO_PADDIR_OFFSET 0x0 - -/* GPIO enable register. */ -#define GPIO_GPIOEN_OFFSET 0x4 - -/* GPIO pad input value register. */ -#define GPIO_PADIN_OFFSET 0x8 - -/* GPIO pad output value register. */ -#define GPIO_PADOUT_OFFSET 0xc - -/* GPIO pad output set register. */ -#define GPIO_PADOUTSET_OFFSET 0x10 - -/* GPIO pad output clear register. */ -#define GPIO_PADOUTCLR_OFFSET 0x14 - -/* GPIO pad interrupt enable configuration register. */ -#define GPIO_INTEN_OFFSET 0x18 - -/* GPIO pad interrupt type gpio 0 to 15 register. */ -#define GPIO_INTTYPE0_OFFSET 0x1c - -/* GPIO pad interrupt type gpio 16 to 31 register. */ -#define GPIO_INTTYPE1_OFFSET 0x20 - -/* GPIO pad interrupt status register. */ -#define GPIO_INTSTATUS_OFFSET 0x24 - -/* GPIO pad pin 0 to 7 configuration register. */ -#define GPIO_PADCFG0_OFFSET 0x28 - -/* GPIO pad pin 8 to 15 configuration register. */ -#define GPIO_PADCFG1_OFFSET 0x2c - -/* GPIO pad pin 16 to 23 configuration register. */ -#define GPIO_PADCFG2_OFFSET 0x30 - -/* GPIO pad pin 24 to 31 configuration register. */ -#define GPIO_PADCFG3_OFFSET 0x34 - -/* GPIO pad direction configuration register. */ -#define GPIO_PADDIR_32_63_OFFSET 0x38 - -/* GPIO enable register. */ -#define GPIO_GPIOEN_32_63_OFFSET 0x3c - -/* GPIO pad input value register. */ -#define GPIO_PADIN_32_63_OFFSET 0x40 - -/* GPIO pad output value register. */ -#define GPIO_PADOUT_32_63_OFFSET 0x44 - -/* GPIO pad output set register. */ -#define GPIO_PADOUTSET_32_63_OFFSET 0x48 - -/* GPIO pad output clear register. */ -#define GPIO_PADOUTCLR_32_63_OFFSET 0x4c - -/* GPIO pad interrupt enable configuration register. */ -#define GPIO_INTEN_32_63_OFFSET 0x50 - -/* GPIO pad interrupt type gpio 32 to 47 register. */ -#define GPIO_INTTYPE_32_47_OFFSET 0x54 - -/* GPIO pad interrupt type gpio 48 to 63 register. */ -#define GPIO_INTTYPE_48_63_OFFSET 0x58 - -/* GPIO pad interrupt status register. */ -#define GPIO_INTSTATUS_32_63_OFFSET 0x5c - -/* GPIO pad pin 32 to 39 configuration register. */ -#define GPIO_PADCFG_32_39_OFFSET 0x60 - -/* GPIO pad pin 40 to 47 configuration register. */ -#define GPIO_PADCFG_40_47_OFFSET 0x64 - -/* GPIO pad pin 48 to 55 configuration register. */ -#define GPIO_PADCFG_48_55_OFFSET 0x68 - -/* GPIO pad pin 56 to 63 configuration register. */ -#define GPIO_PADCFG_56_63_OFFSET 0x6c - -/* Register fields */ - -/* GPIO[31:0] direction configuration bitfield: - bit[i]=1'b0: Input mode for - * GPIO[i] - bit[i]=1'b1: Output mode for GPIO[i] (access: R/W) */ -#define GPIO_PADDIR_DIR_BIT 0 -#define GPIO_PADDIR_DIR_WIDTH 32 -#define GPIO_PADDIR_DIR_MASK 0xffffffff - -/* GPIO[31:0] clock enable configuration bitfield: - bit[i]=1'b0: disable clock - * for GPIO[i] - bit[i]=1'b1: enable clock for GPIO[i] GPIOs are gathered by - * groups of 4. The clock gating of one group is done only if all 4 GPIOs are - * disabled. Clock must be enabled for a GPIO if it's direction is configured - * in input mode. (access: R/W) */ -#define GPIO_GPIOEN_GPIOEN_BIT 0 -#define GPIO_GPIOEN_GPIOEN_WIDTH 32 -#define GPIO_GPIOEN_GPIOEN_MASK 0xffffffff - -/* GPIO[31:0] input data read bitfield. DATA_IN[i] corresponds to input data of - * GPIO[i]. (access: R) */ -#define GPIO_PADIN_DATA_IN_BIT 0 -#define GPIO_PADIN_DATA_IN_WIDTH 32 -#define GPIO_PADIN_DATA_IN_MASK 0xffffffff - -/* GPIO[31:0] output data read bitfield. DATA_OUT[i] corresponds to output data - * set on GPIO[i]. (access: R/W) */ -#define GPIO_PADOUT_DATA_OUT_BIT 0 -#define GPIO_PADOUT_DATA_OUT_WIDTH 32 -#define GPIO_PADOUT_DATA_OUT_MASK 0xffffffff - -/* GPIO[31:0] set bitfield: - bit[i]=1'b0: No change for GPIO[i] - bit[i]=1'b1: - * Sets GPIO[i] to 1 (access: W) */ -#define GPIO_PADOUTSET_DATA_SET_BIT 0 -#define GPIO_PADOUTSET_DATA_SET_WIDTH 32 -#define GPIO_PADOUTSET_DATA_SET_MASK 0xffffffff - -/* GPIO[31:0] clear bitfield: - bit[i]=1'b0: No change for GPIO[i] - - * bit[i]=1'b1: Clears GPIO[i] (access: W) */ -#define GPIO_PADOUTCLR_DATA_CLEAR_BIT 0 -#define GPIO_PADOUTCLR_DATA_CLEAR_WIDTH 32 -#define GPIO_PADOUTCLR_DATA_CLEAR_MASK 0xffffffff - -/* GPIO[31:0] interrupt enable configuration bitfield: - bit[i]=1'b0: disable - * interrupt for GPIO[i] - bit[i]=1'b1: enable interrupt for GPIO[i] (access: - * R/W) */ -#define GPIO_INTEN_INTEN_BIT 0 -#define GPIO_INTEN_INTEN_WIDTH 32 -#define GPIO_INTEN_INTEN_MASK 0xffffffff - -/* GPIO[15:0] interrupt type configuration bitfield: - bit[2*i+1:2*i]=2'b00: - * interrupt on falling edge for GPIO[i] - bit[2*i+1:2*i]=2'b01: interrupt on - * rising edge for GPIO[i] - bit[2*i+1:2*i]=2'b10: interrupt on rising and - * falling edge for GPIO[i] - bit[2*i+1:2*i]=2'b11: RFU (access: R/W) */ -#define GPIO_INTTYPE0_INTTYPE0_BIT 0 -#define GPIO_INTTYPE0_INTTYPE0_WIDTH 32 -#define GPIO_INTTYPE0_INTTYPE0_MASK 0xffffffff - -/* GPIO[31:16] interrupt type configuration bitfield: - bit[2*i+1:2*i]=2'b00: - * interrupt on falling edge for GPIO[16+i] - bit[2*i+1:2*i]=2'b01: interrupt on - * rising edge for GPIO[16+i] - bit[2*i+1:2*i]=2'b10: interrupt on rising and - * falling edge for GPIO[16+i] - bit[2*i+1:2*i]=2'b11: RFU (access: R/W) */ -#define GPIO_INTTYPE1_INTTYPE1_BIT 0 -#define GPIO_INTTYPE1_INTTYPE1_WIDTH 32 -#define GPIO_INTTYPE1_INTTYPE1_MASK 0xffffffff - -/* GPIO[31:0] Interrupt status flags bitfield. INTSTATUS[i]=1 when interrupt - * received on GPIO[i]. INTSTATUS is cleared when it is red. GPIO interrupt line - * is also cleared when INTSTATUS register is red. (access: R) */ -#define GPIO_INTSTATUS_INTSTATUS_BIT 0 -#define GPIO_INTSTATUS_INTSTATUS_WIDTH 32 -#define GPIO_INTSTATUS_INTSTATUS_MASK 0xffffffff - -/* GPIO[0] pull activation configuration bitfield: - 1'b0: pull disabled - 1'b1: - * pull enabled (access: R/W) */ -#define GPIO_PADCFG0_GPIO0_CFG_BIT 0 -#define GPIO_PADCFG0_GPIO0_CFG_WIDTH 4 -#define GPIO_PADCFG0_GPIO0_CFG_MASK 0xf - -/* GPIO[0] drive strength configuration bitfield: - 1'b0: low drive strength - - * 1'b1: high drive strength (access: R/W) */ -#define GPIO_PADCFG0_GPIO1_CFG_BIT 4 -#define GPIO_PADCFG0_GPIO1_CFG_WIDTH 4 -#define GPIO_PADCFG0_GPIO1_CFG_MASK 0xf0 - -/* GPIO[1] pull activation configuration bitfield: - 1'b0: pull disabled - 1'b1: - * pull enabled (access: R/W) */ -#define GPIO_PADCFG0_GPIO2_CFG_BIT 8 -#define GPIO_PADCFG0_GPIO2_CFG_WIDTH 4 -#define GPIO_PADCFG0_GPIO2_CFG_MASK 0xf00 - -/* GPIO[1] drive strength configuration bitfield: - 1'b0: low drive strength - - * 1'b1: high drive strength (access: R/W) */ -#define GPIO_PADCFG0_GPIO3_CFG_BIT 12 -#define GPIO_PADCFG0_GPIO3_CFG_WIDTH 4 -#define GPIO_PADCFG0_GPIO3_CFG_MASK 0xf000 - -/* GPIO[2] pull activation configuration bitfield: - 1'b0: pull disabled - 1'b1: - * pull enabled (access: R/W) */ -#define GPIO_PADCFG0_GPIO4_CFG_BIT 16 -#define GPIO_PADCFG0_GPIO4_CFG_WIDTH 4 -#define GPIO_PADCFG0_GPIO4_CFG_MASK 0xf0000 - -/* GPIO[2] drive strength configuration bitfield: - 1'b0: low drive strength - - * 1'b1: high drive strength (access: R/W) */ -#define GPIO_PADCFG0_GPIO5_CFG_BIT 20 -#define GPIO_PADCFG0_GPIO5_CFG_WIDTH 4 -#define GPIO_PADCFG0_GPIO5_CFG_MASK 0xf00000 - -/* GPIO[3] pull activation configuration bitfield: - 1'b0: pull disabled - 1'b1: - * pull enabled (access: R/W) */ -#define GPIO_PADCFG0_GPIO6_CFG_BIT 24 -#define GPIO_PADCFG0_GPIO6_CFG_WIDTH 4 -#define GPIO_PADCFG0_GPIO6_CFG_MASK 0xf000000 - -/* GPIO[3] drive strength configuration bitfield: - 1'b0: low drive strength - - * 1'b1: high drive strength (access: R/W) */ -#define GPIO_PADCFG0_GPIO7_CFG_BIT 28 -#define GPIO_PADCFG0_GPIO7_CFG_WIDTH 4 -#define GPIO_PADCFG0_GPIO7_CFG_MASK 0xf0000000 - -/* GPIO[4] pull activation configuration bitfield: - 1'b0: pull disabled - 1'b1: - * pull enabled (access: R/W) */ -#define GPIO_PADCFG1_GPIO4_PE_BIT 0 -#define GPIO_PADCFG1_GPIO4_PE_WIDTH 1 -#define GPIO_PADCFG1_GPIO4_PE_MASK 0x1 - -/* GPIO[4] drive strength configuration bitfield: - 1'b0: low drive strength - - * 1'b1: high drive strength (access: R/W) */ -#define GPIO_PADCFG1_GPIO4_DS_BIT 1 -#define GPIO_PADCFG1_GPIO4_DS_WIDTH 1 -#define GPIO_PADCFG1_GPIO4_DS_MASK 0x2 - -/* GPIO[63:32] direction configuration bitfield: - bit[i]=1'b0: Input mode for - * GPIO[i] - bit[i]=1'b1: Output mode for GPIO[i] (access: R/W) */ -#define GPIO_PADDIR_32_63_DIR_BIT 0 -#define GPIO_PADDIR_32_63_DIR_WIDTH 32 -#define GPIO_PADDIR_32_63_DIR_MASK 0xffffffff - -/* GPIO[63:32] clock enable configuration bitfield: - bit[i]=1'b0: disable clock - * for GPIO[i] - bit[i]=1'b1: enable clock for GPIO[i] GPIOs are gathered by - * groups of 4. The clock gating of one group is done only if all 4 GPIOs are - * disabled. Clock must be enabled for a GPIO if it's direction is configured - * in input mode. (access: R/W) */ -#define GPIO_GPIOEN_32_63_GPIOEN_BIT 0 -#define GPIO_GPIOEN_32_63_GPIOEN_WIDTH 32 -#define GPIO_GPIOEN_32_63_GPIOEN_MASK 0xffffffff - -/* GPIO[63:32] input data read bitfield. DATA_IN[i] corresponds to input data of - * GPIO[i]. (access: R) */ -#define GPIO_PADIN_32_63_DATA_IN_BIT 0 -#define GPIO_PADIN_32_63_DATA_IN_WIDTH 32 -#define GPIO_PADIN_32_63_DATA_IN_MASK 0xffffffff - -/* GPIO[63:32] output data read bitfield. DATA_OUT[i] corresponds to output data - * set on GPIO[i]. (access: R/W) */ -#define GPIO_PADOUT_32_63_DATA_OUT_BIT 0 -#define GPIO_PADOUT_32_63_DATA_OUT_WIDTH 32 -#define GPIO_PADOUT_32_63_DATA_OUT_MASK 0xffffffff - -/* GPIO[63:32] set bitfield: - bit[i]=1'b0: No change for GPIO[i] - bit[i]=1'b1: - * Sets GPIO[i] to 1 (access: W) */ -#define GPIO_PADOUTSET_32_63_DATA_SET_BIT 0 -#define GPIO_PADOUTSET_32_63_DATA_SET_WIDTH 32 -#define GPIO_PADOUTSET_32_63_DATA_SET_MASK 0xffffffff - -/* GPIO[63:32] clear bitfield: - bit[i]=1'b0: No change for GPIO[i] - - * bit[i]=1'b1: Clears GPIO[i] (access: W) */ -#define GPIO_PADOUTCLR_32_63_DATA_CLEAR_BIT 0 -#define GPIO_PADOUTCLR_32_63_DATA_CLEAR_WIDTH 32 -#define GPIO_PADOUTCLR_32_63_DATA_CLEAR_MASK 0xffffffff - -/* GPIO[63:32] interrupt enable configuration bitfield: - bit[i]=1'b0: disable - * interrupt for GPIO[i] - bit[i]=1'b1: enable interrupt for GPIO[i] (access: - * R/W) */ -#define GPIO_INTEN_32_63_INTEN_BIT 0 -#define GPIO_INTEN_32_63_INTEN_WIDTH 32 -#define GPIO_INTEN_32_63_INTEN_MASK 0xffffffff - -/* GPIO[47:32] interrupt type configuration bitfield: - bit[2*i+1:2*i]=2'b00: - * interrupt on falling edge for GPIO[i] - bit[2*i+1:2*i]=2'b01: interrupt on - * rising edge for GPIO[i] - bit[2*i+1:2*i]=2'b10: interrupt on rising and - * falling edge for GPIO[i] - bit[2*i+1:2*i]=2'b11: RFU (access: R/W) */ -#define GPIO_INTTYPE_32_47_INTTYPE0_BIT 0 -#define GPIO_INTTYPE_32_47_INTTYPE0_WIDTH 32 -#define GPIO_INTTYPE_32_47_INTTYPE0_MASK 0xffffffff - -/* GPIO[63:48] interrupt type configuration bitfield: - bit[2*i+1:2*i]=2'b00: - * interrupt on falling edge for GPIO[16+i] - bit[2*i+1:2*i]=2'b01: interrupt on - * rising edge for GPIO[16+i] - bit[2*i+1:2*i]=2'b10: interrupt on rising and - * falling edge for GPIO[16+i] - bit[2*i+1:2*i]=2'b11: RFU (access: R/W) */ -#define GPIO_INTTYPE_48_63_INTTYPE1_BIT 0 -#define GPIO_INTTYPE_48_63_INTTYPE1_WIDTH 32 -#define GPIO_INTTYPE_48_63_INTTYPE1_MASK 0xffffffff - -/* GPIO[63:32] Interrupt status flags bitfield. INTSTATUS[i]=1 when interrupt - * received on GPIO[i]. INTSTATUS is cleared when it is red. GPIO interrupt line - * is also cleared when INTSTATUS register is red. (access: R) */ -#define GPIO_INTSTATUS_32_63_INTSTATUS_BIT 0 -#define GPIO_INTSTATUS_32_63_INTSTATUS_WIDTH 32 -#define GPIO_INTSTATUS_32_63_INTSTATUS_MASK 0xffffffff - -/* required for gpio_pin_conf_pad() */ -static_assert((GPIO_PADCFG0_OFFSET + 0x4 == GPIO_PADCFG1_OFFSET) && - (GPIO_PADCFG1_OFFSET + 0x4 == GPIO_PADCFG2_OFFSET) && - (GPIO_PADCFG2_OFFSET + 0x4 == GPIO_PADCFG3_OFFSET), - "GPIO_PADCFG*_OFFSET has unexpected addresses (spacing)"); - -/* this API is from gpio.h of zephyr */ - -/* this is custom */ -/** Enables internal pull */ -#define GPIO_PULL_ENABLE (1U << 1) - -/** Enables high drive strength */ -#define GPIO_DRIVE_STRENGTH_HIGH (1U << 1) - -/* this is zephyr */ -/** Enables pin as input. */ -#define GPIO_INPUT (1U << 8) - -/** Enables pin as output, no change to the output state. */ -#define GPIO_OUTPUT (1U << 9) - -/** Disables pin for both input and output. */ -#define GPIO_DISCONNECTED 0 - -/** @cond INTERNAL_HIDDEN */ - -/* Initializes output to a low state. */ -#define GPIO_OUTPUT_INIT_LOW (1U << 10) - -/* Initializes output to a high state. */ -#define GPIO_OUTPUT_INIT_HIGH (1U << 11) - -/* Initializes output based on logic level */ -#define GPIO_OUTPUT_INIT_LOGICAL (1U << 12) - -/** @endcond */ - -/** Configures GPIO pin as output and initializes it to a low state. */ -#define GPIO_OUTPUT_LOW (GPIO_OUTPUT | GPIO_OUTPUT_INIT_LOW) -/** Configures GPIO pin as output and initializes it to a high state. */ -#define GPIO_OUTPUT_HIGH (GPIO_OUTPUT | GPIO_OUTPUT_INIT_HIGH) -/** Configures GPIO pin as output and initializes it to a logic 0. */ -#define GPIO_OUTPUT_INACTIVE \ - (GPIO_OUTPUT | GPIO_OUTPUT_INIT_LOW | GPIO_OUTPUT_INIT_LOGICAL) -/** Configures GPIO pin as output and initializes it to a logic 1. */ -#define GPIO_OUTPUT_ACTIVE \ - (GPIO_OUTPUT | GPIO_OUTPUT_INIT_HIGH | GPIO_OUTPUT_INIT_LOGICAL) - -int gpio_pin_conf_pad(int pin, uint32_t flags); - - -/* for now we only handle the gpio from 0-31 and ignore 32-63 */ -int gpio_pin_configure(int pin, uint32_t flags); -int gpio_port_get_raw(uint32_t *value); -int gpio_port_set_masked_raw(uint32_t mask, uint32_t value); -int gpio_port_set_bits_raw(uint32_t mask); -int gpio_port_clear_bits_raw(uint32_t mask); -int gpio_port_toggle_bits(uint32_t mask); -int gpio_pin_get_raw(int pin); -int gpio_pin_set_raw(int pin, int value); -int gpio_pin_toggle(int pin); - - -#endif /* __GPIO_H__ */ diff --git a/rtos/freertos/abstraction_layer_freertos/include/i2c.h b/rtos/freertos/abstraction_layer_freertos/include/i2c.h deleted file mode 100644 index 8f7a368b..00000000 --- a/rtos/freertos/abstraction_layer_freertos/include/i2c.h +++ /dev/null @@ -1,434 +0,0 @@ -/* - * Copyright (C) 2020 GreenWaves Technologies - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifndef __PI_DRIVERS_I2C_H__ -#define __PI_DRIVERS_I2C_H__ - -#include "pmsis_types.h" - -#ifdef __cplusplus -extern "C" { -#endif - -/** -* @ingroup groupDrivers -*/ - - -/** - * @defgroup I2C I2C - * - * The I2C driver provides support for transferring data between an external - * I2C device and the chip running this driver. - * - */ - -/** - * @addtogroup I2C - * @{ - */ - -/**@{*/ - -/// @cond IMPLEM - -#define __PI_I2C_CTRL_SET_MAX_BAUDRATE_BIT 0 - -/// @endcond - -/** - * \struct pi_i2c_conf - * \brief I2C master configuration structure. - * - * This structure is used to pass the desired I2C configuration to the runtime - * when opening a device. - */ -typedef struct pi_i2c_conf -{ - pi_device_e device; /* Device type. */ - uint8_t itf; /*!< Specifies on which I2C interface the device is - connected. */ - uint16_t cs; /*!< i2c slave address (7 or 10 bits), the - runtime will take care of the LSB of read and write. */ - int8_t is_10_bits; - uint16_t wait_cycles; - uint32_t max_baudrate; /*!< Maximum baudrate for the I2C bitstream which - can be used with the opened device . */ - uint8_t ts_ch; /*!< Enable the timestamp on TX (0) or RX (1) */ - uint8_t ts_evt_id; /*!< UDMA Config Event ID for generating the timestamp */ -} pi_i2c_conf_t; - - -/** \enum pi_i2c_xfer_flags_e - * \brief Properties for I2C transfers - * - * This is used to specify additional behaviors when transfering data through - * I2C. - */ -typedef enum { - PI_I2C_XFER_STOP = 0<<0, /*!< Generate a STOP bit at the end of the - transfer. */ - PI_I2C_XFER_NO_STOP = 1<<0, /*!< Don't generate a STOP bit at the end of - the transfer. */ - PI_I2C_XFER_START = 0<<1, /*!< Generate a START bit at the beginning of - the transfer. */ - PI_I2C_XFER_NO_START = 1<<1, /*!< Don't generate a START bit at the - beginning of the transfer. */ - PI_I2C_XFER_RESTART = 1<<2, /*!< Generate a RESTART bit at the beginning of - the transfer. */ - PI_I2C_XFER_NO_RESTART = 0<<2 /*!< Don't generate a RESTART bit at the - beginning of the transfer. */ -} pi_i2c_xfer_flags_e; - - -/** \enum pi_i2c_ioctl_e - * \brief Commands for pi_i2c_control. - * - * This is used to tell which command to execute through pi_i2c_control. - */ -typedef enum -{ - /** - * \brief Change maximum baudrate. - * - * \param baudrate Max baudrate. - */ - PI_I2C_CTRL_SET_MAX_BAUDRATE = 1 << __PI_I2C_CTRL_SET_MAX_BAUDRATE_BIT, - /** - * \brief Abort RX transfer. - * - * Abort current RX transfert. - */ - PI_I2C_IOCTL_ABORT_RX = 6, - /** - * \brief Abort TX transfer. - * - * Abort current TX transfert. - */ - PI_I2C_IOCTL_ABORT_TX = 7, - /** - * \brief Attach UDMA timer. - * - * This command attaches a UDMA timer channel to UDMA reception channel. - * - * \param timeout_id UDMA timeout channel ID. - */ - PI_I2C_IOCTL_ATTACH_TIMEOUT_RX = 8, - /** - * \brief Detach UDMA timer. - * - * This command removes a UDMA timer channel attached to UDMA reception channel. - * - * \param timeout_id UDMA timeout channel ID. - */ - PI_I2C_IOCTL_DETACH_TIMEOUT_RX = 9, - /** - * \brief Attach UDMA timer. - * - * This command attaches a UDMA timer channel to UDMA transmission channel. - * - * \param timeout_id UDMA timeout channel ID. - */ - PI_I2C_IOCTL_ATTACH_TIMEOUT_TX = 10, - /** - * \brief Detach UDMA timer. - * - * This command removes a UDMA timer channel attached to UDMA transmission channel. - * - * \param timeout_id UDMA timeout channel ID. - */ - PI_I2C_IOCTL_DETACH_TIMEOUT_TX = 11, - - /** - * \brief Enable the timestamp - * - * Enable the timestamp feature for the i2c interface. - */ - PI_I2C_IOCTL_EN_TIMESTAMP = 12 - -} pi_i2c_ioctl_e; - -/** \brief Initialize an I2C configuration with default values. - * - * This function can be called to get default values for all parameters before - * setting some of them. The structure containing the configuration must be - * kept alive until the I2C device is opened. - * - * \param conf A pointer to the I2C configuration. - */ -void pi_i2c_conf_init(pi_i2c_conf_t *conf); - - -/** - * \brief set slave addr in conf. - * - * \param conf A pointer to the I2C configuration. - * \param slave_addr Address of the slave device. - * \param is_10_bits Indicate if slave address is 7 bits or 10 bits. - */ -void pi_i2c_conf_set_slave_addr(struct pi_i2c_conf *conf, uint16_t slave_addr, - int8_t is_10_bits); - -/** \brief set wait_cycles in conf. - * - * \param conf A pointer to the I2C configuration. - * \param wait_cycles Number of wait cycles applied at the end of transfer - */ -void pi_i2c_conf_set_wait_cycles(struct pi_i2c_conf *conf, uint16_t wait_cycles); - -/** \brief Open an I2C device. - * - * This function must be called before the Hyperbus device can be used. - * It will do all the needed configuration to make it usable and initialize - * the handle used to refer to this opened device when calling other functions. - * - * \param device A pointer to the device structure of the device to open. - * This structure is allocated by the called and must be kept alive until the - * device is closed. - * \return 0 if the operation is successfull, -1 if there was an error. - */ -int pi_i2c_open(struct pi_device *device); - -/** \brief Close an opened I2C device. - * - * This function can be called to close an opened I2C device once it is - * not needed anymore, in order to free all allocated resources. Once this - * function is called, the device is not accessible anymore and must be opened - * again before being used. - * - * \param device The device structure of the device to close. - */ -void pi_i2c_close (struct pi_device *device); - -/** \brief Dynamically change the device configuration. - * - * This function can be called to change part of the device configuration after - * it has been opened. - * - * \param device A pointer to the structure describing the device. - * \param cmd The command which specifies which parameters of the driver to - * modify and for some of them also their values. The command must be one of - * those defined in pi_i2c_ioctl_e. - * \param arg An additional value which is required for some parameters - * when they are set. - */ -void pi_i2c_ioctl(struct pi_device *device, uint32_t cmd, void *arg); - -/** \brief Enqueue a burst read copy from the I2C (from I2C device to chip). - * - * This function can be used to read at least 1 byte of data from the I2C - * device. The copy will make a synchronous transfer between the I2C and one of - * the chip memory. - * The caller is blocked until the transfer is finished. - * Depending on the chip, there may be some restrictions on the memory which - * can be used. Check the chip-specific documentation for more details. - * - * \param device A pointer to the structure describing the device. - * \param rx_buff The address in the chip where the received data must be - * written. - * \param length The size in bytes of the copy. - * \param flags Specify additional transfer behaviors like start and stop bits - * management. - * - * \return PI_OK if request is successful - * PI_ERR_I2C_NACK if a NACK was received during the request - */ -int pi_i2c_read(struct pi_device *device, uint8_t *rx_buff, int length, - pi_i2c_xfer_flags_e flags); - -/** \brief Enqueue a burst write copy to the I2C (from chip to I2C device). - * - * This function can be used to write at least 1 byte of data to the I2C device. - * The copy will make a synchronous transfer between the I2C and one of the - * chip memory. - * The caller is blocked until the transfer is finished. - * Depending on the chip, there may be some restrictions on the memory which - * can be used. Check the chip-specific documentation for more details. - * - * \param device A pointer to the structure describing the device. - * \param tx_data The address in the chip where the data to be sent is read. - * \param length The size in bytes of the copy. - * \param flags Specify additional transfer behaviors like start and stop bits - * management. - * - * \return PI_OK if request is successful - * PI_ERR_I2C_NACK if a NACK was received during the request - */ -int pi_i2c_write(struct pi_device *device, uint8_t *tx_data, int length, - pi_i2c_xfer_flags_e flags); - - -void pi_i2c_write_read(struct pi_device *device, void *tx_buffer, - void *rx_buffer, uint32_t tx_size, uint32_t rx_size); - -void pi_i2c_write_dual(struct pi_device *device, void *tx_buffer0, - void *tx_buffer1, uint32_t tx_size0, uint32_t tx_size1); - -/** \brief Enqueue an asynchronous burst read copy from the I2C (from I2C - * device to chip). - * - * This function can be used to read at least 1 byte of data from the I2C - * device. - * The copy will make an asynchronous transfer between the I2C and one of the - * chip memory. - * A task must be specified in order to specify how the caller should be - * notified when the transfer is finished. - * The task will contain the request status (success or error). It should be - * retrieved using the pi_i2c_get_request_status function. - * Depending on the chip, there may be some restrictions on the memory which - * can be used. Check the chip-specific documentation for more details. - * - * \param device A pointer to the structure describing the device. - * \param rx_buff The address in the chip where the received data must be - * written. - * \param length The size in bytes of the copy. - * \param flags Specify additional transfer behaviors like start and stop - * bits management. - * \param task The task used to notify the end of transfer. - See the documentation of pi_task_t for more details. - */ -void pi_i2c_read_async(struct pi_device *device, uint8_t *rx_buff, int length, - pi_i2c_xfer_flags_e flags, pi_task_t *task); - -/** \brief Enqueue a burst write copy to the I2C (from chip to I2C device). - * - * This function can be used to write at least 1 byte of data to the I2C device. - * The copy will make an asynchronous transfer between the I2C and one of the - * chip memory. - * A task must be specified in order to specify how the caller should be - * notified when the transfer is finished. - * The task will contain the request status (success or error). It should be - * retrieved using the pi_i2c_get_request_status function. - * Depending on the chip, there may be some restrictions on the memory which - * can be used. Check the chip-specific documentation for more details. - * - * \param device A pointer to the structure describing the device. - * \param tx_data The address in the chip where the data to be sent is read. - * \param length The size in bytes of the copy - * \param flags Specify additional transfer behaviors like start and stop bits - * management. - * \param task The task used to notify the end of transfer. - See the documentation of pi_task_t for more details. - */ -void pi_i2c_write_async(struct pi_device *device, uint8_t *tx_data, int length, - pi_i2c_xfer_flags_e flags, pi_task_t *task); - -void pi_i2c_write_read_async(struct pi_device *device, void *tx_buffer, - void *rx_buffer, uint32_t tx_size, uint32_t rx_size, pi_task_t *callback); - -void pi_i2c_write_dual_async(struct pi_device *device, void *tx_buffer0, - void *tx_buffer1, uint32_t tx_size0, uint32_t tx_size1, pi_task_t *callback); - -/** - * \brief Enqueue an asynchronous burst read copy from the I2C (from I2C - * device to chip), with timeout. - * - * This function has the same behaviour as pi_i2c_read(), with timeout. - * This timeout value is used to abort/cancel a transfer when timeout is reached. - * - * \param device Pointer to the structure describing the device. - * \param rx_buff Address in the chip where the received data must be written. - * \param length Size in bytes of the copy. - * \param flags Specify additional transfer behaviors like start and stop - * bits management. - * \param timeout_us Timeout value in us. - * - * \note To use this feature, a UDMA timeout channel must be allocated before a - * call to this functions : - * * pi_udma_timeout_alloc() - * * pi_i2c_ioctl() //PI_I2C_IOCTL_ATTACH_TIMEOUT_RX - * - * \note To use this feature asynchronously, proceed as follows : - * * pi_udma_timeout_alloc() - * * pi_i2c_ioctl() //PI_I2C_IOCTL_ATTACH_TIMEOUT_RX - * * pi_task_timeout_set() - * * pi_i2c_write_async() - */ -int pi_i2c_read_timeout(struct pi_device *device, uint8_t *rx_buff, int length, - pi_i2c_xfer_flags_e flags, uint32_t timeout_us); - -/** - * \brief Enqueue a burst write copy to the I2C (from chip to I2C device), with timeout. - * - * This function has the same behaviour as pi_i2c_write(), with timeout. - * This timeout value is used to abort/cancel a transfer when timeout is reached. - * - * \param device Pointer to the structure describing the device. - * \param tx_data Address in the chip where the data to be sent is read. - * \param length Size in bytes of the copy - * \param flags Specify additional transfer behaviors like start and stop bits - * management. - * \param timeout_us Timeout value in us. - * - * \note To use this feature, a UDMA timeout channel must be allocated before a - * call to this functions : - * * pi_udma_timeout_alloc() - * * pi_i2c_ioctl() //PI_I2C_IOCTL_ATTACH_TIMEOUT_TX - * - * \note To use this feature asynchronously, proceed as follows : - * * pi_udma_timeout_alloc() - * * pi_i2c_ioctl() //PI_I2C_IOCTL_ATTACH_TIMEOUT_TX - * * pi_task_timeout_set() - * * pi_i2c_write_async() - */ -int pi_i2c_write_timeout(struct pi_device *device, uint8_t *tx_data, int length, - pi_i2c_xfer_flags_e flags, uint32_t timeout_us); - -/** - * \brief get the request status from a task - * - * This function can be used to retrieve the request status - * from a task. - * - * \param task the task to retrieve the status from - * - * \warning in order to be able to retrieve the request status - * you need to pass a pointer to the task as the first - * callback argument. You can use next arguments as you please. - * - * \return PI_OK if the request was successful - * PI_ERR_I2C_NACK if a NACK was received during the request - */ -int pi_i2c_get_request_status(pi_task_t* task); - -/** - * \brief Scan i2c bus to detect a dev - * - * This function can be used to detect if a device is connected to the i2c bus. - * The pi_i2c_conf_t structure is used to pass the address of the device - * to look for, with different baudrate if needed. - * - * \param device Pointer to device structure. - * \param conf Conf struct holding address and baudrate. - * \param rx_data Pointer to 1 Byte buffer to store data. - * - * \retval 0x00 If a device has been detected at given address. - * \retval 0xFF Otherwise. - */ -int pi_i2c_detect(struct pi_device *device, struct pi_i2c_conf *conf, uint8_t *rx_data); - -//!@} - -/** - * @} - */ - - - -#ifdef __cplusplus -} -#endif -#endif /* __PI_DRIVERS_I2C_H__ */ diff --git a/rtos/freertos/abstraction_layer_freertos/include/i2c_periph.h b/rtos/freertos/abstraction_layer_freertos/include/i2c_periph.h deleted file mode 100644 index 2a5b120a..00000000 --- a/rtos/freertos/abstraction_layer_freertos/include/i2c_periph.h +++ /dev/null @@ -1,96 +0,0 @@ -/* - * Copyright (C) 2021 ETH Zurich, University of Bologna - * and GreenWaves Technologies - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifndef __I2C_PERIPH_H__ -#define __I2C_PERIPH_H__ - - -/* ---------------------------------------------------------------------------- - -- I2C Peripheral Access Layer -- - ---------------------------------------------------------------------------- */ - -/** I2C_Type Register Layout Typedef */ -typedef struct i2c { - udma_channel_t rx; /**< UDMA RX channel struct. */ - udma_channel_t tx; /**< UDMA TX channel struct. */ - /* this is a i2c v3 feature, but we have a v2 driver */ - /* udma_channel_t cmd; /\**< UDMA CMD channel struct. *\/ */ - volatile uint32_t status; /**< Status register. */ - volatile uint32_t setup; /**< Configuration register. */ - volatile uint32_t ack; /**< Nack register (optional). */ -} i2c_t; - - -/* ---------------------------------------------------------------------------- - -- I2C Register Bitfield Access -- - ---------------------------------------------------------------------------- */ - -/*! @name STATUS */ -/* I2C bus busy status flag: - - 1'b0: no transfer on-going - - 1'b1: transfer on-going */ -#define I2C_STATUS_BUSY_MASK (0x1) -#define I2C_STATUS_BUSY_SHIFT (0) -#define I2C_STATUS_BUSY(val) \ - (((uint32_t)(((uint32_t)(val)) << I2C_STATUS_BUSY_SHIFT)) & I2C_STATUS_BUSY_MASK) - -/* I2C arbitration lost status flag: - - 1'b0: no error - - 1'b1: arbitration lost error */ -#define I2C_STATUS_ARB_LOST_MASK (0x2) -#define I2C_STATUS_ARB_LOST_SHIFT (1) -#define I2C_STATUS_ARB_LOST(val) \ - (((uint32_t)(((uint32_t)(val)) << I2C_STATUS_ARB_LOST_SHIFT)) & I2C_STATUS_ARB_LOST_MASK) - - -/*! @name SETUP */ -/* Reset command used to abort the on-going transfer and clear busy and arbitration lost status - * flags. */ -#define I2C_SETUP_DO_RST_MASK (0x1) -#define I2C_SETUP_DO_RST_SHIFT (0) -#define I2C_SETUP_DO_RST(val) \ - (((uint32_t)(((uint32_t)(val)) << I2C_SETUP_DO_RST_SHIFT)) & I2C_SETUP_DO_RST_MASK) - - -#ifdef CONFIG_UDMA_I2C_ACK -/*! @name NACK */ -/* Read out ACK/NACK status of a the i2c slave */ -#define I2C_ACK_NACK_MASK (0x1) -#define I2C_ACK_NACK_SHIFT (0) -#define I2C_ACK_NACK(val) \ - (((uint32_t)(((uint32_t)(val)) << I2C_ACK_NACK_SHIFT)) & I2C_ACK_NACK_MASK) - -#endif - -/* ---------------------------------------------------------------------------- - -- CMD IDs and macros -- - ---------------------------------------------------------------------------- */ -#define I2C_CMD_MASK (0xF0U) -#define I2C_CMD_SHIFT (4U) -#define I2C_CMD_OFFSET 4 - -#define I2C_CMD_START (((uint32_t)(((uint32_t)(0x0)) << I2C_CMD_SHIFT)) & I2C_CMD_MASK) // 0x00 -#define I2C_CMD_WAIT_EV (((uint32_t)(((uint32_t)(0x1)) << I2C_CMD_SHIFT)) & I2C_CMD_MASK) // 0x10 -#define I2C_CMD_STOP (((uint32_t)(((uint32_t)(0x2)) << I2C_CMD_SHIFT)) & I2C_CMD_MASK) // 0x20 -#define I2C_CMD_RD_ACK (((uint32_t)(((uint32_t)(0x4)) << I2C_CMD_SHIFT)) & I2C_CMD_MASK) // 0x40 -#define I2C_CMD_RD_NACK (((uint32_t)(((uint32_t)(0x6)) << I2C_CMD_SHIFT)) & I2C_CMD_MASK) // 0x60 -#define I2C_CMD_WR (((uint32_t)(((uint32_t)(0x8)) << I2C_CMD_SHIFT)) & I2C_CMD_MASK) // 0x80 -#define I2C_CMD_WAIT (((uint32_t)(((uint32_t)(0xA)) << I2C_CMD_SHIFT)) & I2C_CMD_MASK) // 0xA0 -#define I2C_CMD_RPT (((uint32_t)(((uint32_t)(0xC)) << I2C_CMD_SHIFT)) & I2C_CMD_MASK) // 0xC0 -#define I2C_CMD_CFG (((uint32_t)(((uint32_t)(0xE)) << I2C_CMD_SHIFT)) & I2C_CMD_MASK) // 0xE0 - -#endif /* __I2C_PERIPH_H__ */ diff --git a/rtos/freertos/abstraction_layer_freertos/include/implementation_specific_defines.h b/rtos/freertos/abstraction_layer_freertos/include/implementation_specific_defines.h deleted file mode 100644 index cfc6e918..00000000 --- a/rtos/freertos/abstraction_layer_freertos/include/implementation_specific_defines.h +++ /dev/null @@ -1,59 +0,0 @@ -/* - * Copyright 2019 GreenWaves Technologies - * Copyright 2020 ETH Zurich - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * SPDX-License-Identifier: Apache-2.0 - */ - -#ifndef __IMPLEMENTATION_SPECIFIC_DEFINES_H__ -#define __IMPLEMENTATION_SPECIFIC_DEFINES_H__ - -#include -#include "stdlib.h" -#include "string.h" - -/* #if defined(__GAP8__) */ -/* #include "system_gap8.h" */ -/* #elif defined(__GAP9__) */ -/* #include "system_gap9.h" */ -/* #elif defined(__PULP__) */ -/* #include "system_pulp_ri5cy.h" */ -/* #else */ -/* #error "Target specific macro is not set. Recommended to use __PULP__." */ -/* #endif */ - -#define __INC_TO_STRING(x) #x - -#define PMSIS_TASK_EVENT_KERNEL_PRIORITY 2 -#define DEFAULT_MALLOC_INC __INC_TO_STRING(pmsis/rtos/malloc/l2_malloc.h) - -// default malloc for driver structs etc (might not be compatible with udma!) -/* TODO: rereoute to newlib malloc (?)*/ -#define pi_default_malloc(x) malloc(x) -#define pi_default_free(x,y) free(x) -#define pi_data_malloc(x) malloc(x) -#define pi_data_free(x,y) free(x) -/* TODO: hack */ -#define pmsis_l2_malloc pi_l2_malloc -#define pmsis_l2_malloc_align pi_l2_malloc_align -#define pmsis_l2_malloc_free pi_l2_free -#define pmsis_l2_malloc_init pi_l2_malloc_init -#define pmsis_l2_malloc_dump pi_l2_malloc_dump - -#define PI_TASK_IMPLEM \ - uint8_t destroy; -#define CLUSTER_TASK_IMPLEM \ - uint32_t cluster_team_mask; -#endif /* __IMPLEMENTATION_SPECIFIC_DEFINES_H__ */ diff --git a/rtos/freertos/abstraction_layer_freertos/include/irq.h b/rtos/freertos/abstraction_layer_freertos/include/irq.h deleted file mode 100644 index 107efa5c..00000000 --- a/rtos/freertos/abstraction_layer_freertos/include/irq.h +++ /dev/null @@ -1,391 +0,0 @@ -/* - * Copyright (C) 2019 ETH Zurich and University of Bologna - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * SPDX-License-Identifier: Apache-2.0 - */ - -/* Interrupt controller definitions */ -/* Author: Robert Balas (balasr@iis.ee.ethz.ch) - * Germain Haugou (germain.haugou@iis.ee.ethz.ch) - */ - -#ifndef __IRQ_H__ -#define __IRQ_H__ - -#include "io.h" -#include "bits.h" -#include "memory_map.h" -#include "riscv.h" - -#define IRQ_REG_MASK_OFFSET 0x000 -#define IRQ_REG_MASK_SET_OFFSET 0x004 -#define IRQ_REG_MASK_CLEAR_OFFSET 0x008 -#define IRQ_REG_INT_OFFSET 0x00C -#define IRQ_REG_INT_SET_OFFSET 0x010 -#define IRQ_REG_INT_CLEAR_OFFSET 0x014 -#define IRQ_REG_ACK_OFFSET 0x018 -#define IRQ_REG_ACK_SET_OFFSET 0x01C -#define IRQ_REG_ACK_CLEAR_OFFSET 0x020 -#define IRQ_REG_FIFO_OFFSET 0x024 - -/* Interrupt line masks: these interrupts directly go to the core (after being - * serialized as reqest + id). We refer to these interrupts with the prefix IRQ. - * Events on the other we strictly use to refer to "interrupts/events" that are - * signaled through (muxed) EU SoC interrupts (IRQ_FC_EVT_SOC_EVT) and need - * additional handling by the user through the Event Unit. - */ -#define IRQ_FC_EVT_SW0 BIT(0) -#define IRQ_FC_EVT_SW1 BIT(1) -#define IRQ_FC_EVT_SW2 BIT(2) -#define IRQ_FC_EVT_SW3 BIT(3) -#define IRQ_FC_EVT_SW4 BIT(4) -#define IRQ_FC_EVT_SW5 BIT(5) -#define IRQ_FC_EVT_SW6 BIT(6) -#define IRQ_FC_EVT_SW7 BIT(7) -#define IRQ_FC_EVT_DMA_PE_EVT BIT(8) -#define IRQ_FC_EVT_DMA_PE_IRQ BIT(9) -#define IRQ_FC_EVT_TIMER0_LO BIT(10) -#define IRQ_FC_EVT_TIMER0_HI BIT(11) -#define IRQ_FC_EVT_PF BIT(12) -#define IRQ_FC_EVT_CLK_REF BIT(14) -#define IRQ_FC_EVT_GPIO BIT(15) - -/* is not in PULPissimo */ -/*#define IRQ_FC_EVT_RTC 16 */ - -#define IRQ_FC_EVT_ADV_TIMER0 BIT(17) -#define IRQ_FC_EVT_ADV_TIMER1 BIT(18) -#define IRQ_FC_EVT_ADV_TIMER2 BIT(19) -#define IRQ_FC_EVT_ADV_TIMER3 BIT(20) - -/* is not in PULPissimo */ -/* #define IRQ_FC_EVT_CLUSTER_NOT_BUSY 21 */ -/* #define IRQ_FC_EVT_CLUSTER_POK 22 */ -/* #define IRQ_FC_EVT_CLUSTER_CG_OK 23 */ -/* #define IRQ_FC_EVT_PICL_OK 24 */ -/* #define IRQ_FC_EVT_SCU_OK 25 */ - -/* - * SoC event unit events: Many events get implicitely muxed into this interrupt. - * A user that gets such an interrupt has to check the event unit's registers to - * see what happened - */ -#define IRQ_FC_EVT_SOC_EVT BIT(26) -/* - * Event queue error: If we don't process event unit events quickly enough - * internal fifos can overflow and we get this error interrupt - */ -#define IRQ_FC_EVT_QUIRQE_ERROR BIT(29) -/* High priority peripheral events: these are hardcoded to directly go to the - * core using a dedicated interrupt line - */ -#define IRQ_FC_EVT_PERIPH0 BIT(30) -#define IRQ_FC_EVT_PERIPH1 BIT(31) - -/* TODO: doc */ -void irq_set_handler(int id, void (*handler)(void)); -void irq_mask(uint32_t mask); -void irq_enable(uint32_t mask); -void irq_disable(uint32_t mask); -void irq_pend(uint32_t mask); -void irq_clear(uint32_t mask); -uint32_t irq_clint_global_disable(); -uint32_t irq_clint_global_enable(); -uint32_t irq_clint_disable(int32_t mask); -uint32_t irq_clint_enable(int32_t mask); -void pulp_irq_init(); - -/** Interrupt Number Definitions */ -#define NUMBER_OF_INT_VECTORS \ - 32 /**< Number of interrupts in the Vector table */ - -typedef enum { - //FC_NOTIFY_CLUSTER_EVENT = 0, /**< Software event interrupt */ - CLUSTER_NOTIFY_FC_EVENT = 1, /**< Software event interrupt */ - FC_SW_NOTIFY_BRIDGE_EVENT = 2, /**< Software event interrupt */ - FC_SW_NOTIFY_EVENT = 3, /**< Software event interrupt */ - CLUSTER_NOTIFY_FC_IRQN = 4, /**< Software event interrupt */ - /* DMA_SW_IRQN = 6, */ - PENDSV_IRQN = 7, /**< Software event U -> M PendSV interrupt */ - - /* Device specific interrupts */ - DMA_EVT_IRQN = 8, /**< DMA event interrupt */ - DMA_IRQN = 9, /**< DMA interrupt */ - FC_TIMER0_IRQN = 10, /**< FC timer0 event interrupt */ - SYSTICK_IRQN = 10, /**< PULP U -> M System Tick Interrupt */ - FC_TIMER1_IRQN = 11, /**< FC timer1 interrupt */ - - /* misc */ - FC_CLK_REF_EVENT = 14, /**< Reference clock edge event */ - FC_GPIO_EVENT = 15, /**< GPIO event */ - - /* advanced timer events */ - FC_ADV_TIMER0_EVENT = 17, /**< Advanced Timer 0 event */ - FC_ADV_TIMER1_EVENT = 18, /**< Advanced Timer 1 event */ - FC_ADV_TIMER2_EVENT = 19, /**< Advanced Timer 2 event */ - FC_ADV_TIMER3_EVENT = 20, /**< Advanced Timer 3 event */ - - /* CLUSTER_NOT_BUSY_EVENT = 21, */ - /* CLUSTER_POK_EVENT = 22, */ - /* CLUSTER_CG_OK_EVENT = 23, */ - - /* PICL_OK_EVENT = 24, */ - /* SCU_OK_EVENT = 25, */ - - FC_SOC_EVENT = 26, /**< Event unit new event */ - - FC_QUEUE_ERROR_EVENT = 29, /**< Event unit queue overflow event */ - - FC_HP_EVENT1 = 30, - FC_HP_EVENT0 = 31 -} simple_irqn_e; - -/** - \brief Structure type to access the simple interrupt controller. - */ -typedef struct { - volatile uint32_t MASK; /**< Interrupt Controller mask register, offset: - 0x00 */ - volatile uint32_t MASK_SET; /**< Interrupt Controller mask set register, - offset: 0x04 */ - volatile uint32_t MASK_CLEAR; /**< Interrupt Controller mask clear - register, offset: 0x08 */ - volatile uint32_t IRQ; /**< Interrupt Controller irq register, offset: - 0x0C */ - volatile uint32_t IRQ_SET; /**< Interrupt Controller irq set register, - offset: 0x10 */ - volatile uint32_t IRQ_CLEAR; /**< Interrupt Controller irq clear - register, offset: 0x14 */ - volatile uint32_t ACK; /**< Interrupt Controller ack register, offset: - 0x18 */ - volatile uint32_t ACK_SET; /**< Interrupt Controller ack set register, - offset: 0x1C */ - volatile uint32_t ACK_CLEAR; /**< Interrupt Controller ack clear - register, offset: 0x20 */ - volatile uint32_t FIFO; /**< Interrupt Controller soc event fifo - register, offset: 0x24 */ -} simple_irq_t; - -#define IRQ_REG_MASK_OFFSET 0x000 -#define IRQ_REG_MASK_SET_OFFSET 0x004 -#define IRQ_REG_MASK_CLEAR_OFFSET 0x008 -#define IRQ_REG_INT_OFFSET 0x00C -#define IRQ_REG_INT_SET_OFFSET 0x010 -#define IRQ_REG_INT_CLEAR_OFFSET 0x014 -#define IRQ_REG_ACK_OFFSET 0x018 -#define IRQ_REG_ACK_SET_OFFSET 0x01C -#define IRQ_REG_ACK_CLEAR_OFFSET 0x020 -#define IRQ_REG_FIFO_OFFSET 0x024 - -/* Interrupt line masks: these interrupts directly go to the core (after being - * serialized as reqest + id). We refer to these interrupts with the prefix IRQ. - * Events on the other we strictly use to refer to "interrupts/events" that are - * signaled through (muxed) EU SoC interrupts (IRQ_FC_EVT_SOC_EVT) and need - * additional handling by the user through the Event Unit. - */ -#define IRQ_FC_EVT_SW0 BIT(0) -#define IRQ_FC_EVT_SW1 BIT(1) -#define IRQ_FC_EVT_SW2 BIT(2) -#define IRQ_FC_EVT_SW3 BIT(3) -#define IRQ_FC_EVT_SW4 BIT(4) -#define IRQ_FC_EVT_SW5 BIT(5) -#define IRQ_FC_EVT_SW6 BIT(6) -#define IRQ_FC_EVT_SW7 BIT(7) -#define IRQ_FC_EVT_DMA_PE_EVT BIT(8) -#define IRQ_FC_EVT_DMA_PE_IRQ BIT(9) -#define IRQ_FC_EVT_TIMER0_LO BIT(10) -#define IRQ_FC_EVT_TIMER0_HI BIT(11) -#define IRQ_FC_EVT_PF BIT(12) -#define IRQ_FC_EVT_CLK_REF BIT(14) -#define IRQ_FC_EVT_GPIO BIT(15) -/* doesn't exist in pulp */ -/*#define IRQ_FC_EVT_RTC 16 */ -#define IRQ_FC_EVT_ADV_TIMER0 BIT(17) -#define IRQ_FC_EVT_ADV_TIMER1 BIT(18) -#define IRQ_FC_EVT_ADV_TIMER2 BIT(19) -#define IRQ_FC_EVT_ADV_TIMER3 BIT(20) -/* doesn't exist in pulp */ -/* #define IRQ_FC_EVT_CLUSTER_NOT_BUSY 21 */ -/* #define IRQ_FC_EVT_CLUSTER_POK 22 */ -/* #define IRQ_FC_EVT_CLUSTER_CG_OK 23 */ -/* #define IRQ_FC_EVT_PICL_OK 24 */ -/* #define IRQ_FC_EVT_SCU_OK 25 */ -/* - * SoC event unit events: Many events get implicitely muxed into this interrupt. - * A user that gets such an interrupt has to check the event unit's registers to - * see what happened - */ -#define IRQ_FC_EVT_SOC_EVT BIT(26) -/* - * Event queue error: If we don't process event unit events quickly enough - * internal fifos can overflow and we get this error interrupt - */ -#define IRQ_FC_EVT_QUIRQE_ERROR BIT(29) -/* High priority peripheral events: these are hardcoded to directly go to the - * core using a dedicated interrupt line - */ -#define IRQ_FC_EVT_PERIPH0 BIT(30) -#define IRQ_FC_EVT_PERIPH1 BIT(31) - - -#define SIMPLE_IRQ \ - ((simple_irq_t *)FC_IRQ_ADDR) /*!< Simple irq configuration struct */ - -/** - \brief Enable Interrupt - \details Enables a device specific interrupt in the NVIC interrupt controller. - \param [in] IRQn Device specific interrupt number. - \note IRQn must not be negative. - */ -static inline void __irq_enable(simple_irqn_e IRQn) -{ - /* U mode does not has the right */ - /* NVIC->MASK_SET = (1UL << IRQn); */ - writew(1UL << IRQn, (uintptr_t)(FC_IRQ_ADDR + IRQ_REG_MASK_SET_OFFSET)); -} - -/** - \brief Get Interrupt Enable status - \details Returns a device specific interrupt enable status from the NVIC - interrupt controller. \param [in] IRQn Device specific interrupt number. - \return 0 Interrupt is not enabled. - \return 1 Interrupt is enabled. - \note IRQn must not be negative. - */ -static inline uint32_t __irq_get_enable(simple_irqn_e IRQn) -{ - /* U mode does not has the right */ - /* return ((uint32_t)((NVIC->MASK_IRQ & (1UL << IRQn)) ? 1UL : 0UL)); */ - uint32_t mask = readw((uintptr_t)(FC_IRQ_ADDR + IRQ_REG_MASK_OFFSET)); - return (mask >> IRQn) & 1; -} - - -/** - \brief Disable Interrupt - \details Disables a device specific interrupt in the NVIC interrupt - controller. \param [in] IRQn Device specific interrupt number. \note - IRQn must not be negative. - */ -static inline void __irq_disable(simple_irqn_e IRQn) -{ - /* U mode does not has the right */ - /* NVIC->MASK_IRQ_AND = (1UL << IRQn); */ - writew(1UL << IRQn, - (uintptr_t)(FC_IRQ_ADDR + IRQ_REG_MASK_CLEAR_OFFSET)); -} - - -/** - \brief Get Pending Interrupt - \details Reads the NVIC pending register and returns the pending bit for the - specified device specific interrupt. \param [in] IRQn Device specific - interrupt number. \return 0 Interrupt status is not pending. - \return 1 Interrupt status is pending. - \note IRQn must not be negative. - */ -static inline uint32_t __irq_get_pending(simple_irqn_e IRQn) -{ - /* return(0U); */ - uint32_t pending = readw((uintptr_t)(FC_IRQ_ADDR + IRQ_REG_INT_OFFSET)); - return (pending >> IRQn) & 1; -} - - -/** - \brief Set Pending Interrupt - \details Sets the pending bit of a device specific interrupt in the NVIC - pending register. \param [in] IRQn Device specific interrupt number. - \note IRQn must not be negative. - */ -static inline void __irq_set_pending(simple_irqn_e IRQn) -{ - writew(1UL << IRQn, (uintptr_t)(FC_IRQ_ADDR + IRQ_REG_INT_SET_OFFSET)); -} - - -/** - \brief Clear Pending Interrupt - \details Clears the pending bit of a device specific interrupt in the NVIC - pending register. \param [in] IRQn Device specific interrupt number. - \note IRQn must not be negative. - */ -static inline void __irq_clear_pending(simple_irqn_e IRQn) -{ - writew(1UL << IRQn, - (uintptr_t)(FC_IRQ_ADDR + IRQ_REG_INT_CLEAR_OFFSET)); -} - - -/** - \brief Get Active Interrupt - \details Reads the active register in the NVIC and returns the active bit for - the device specific interrupt. \param [in] IRQn Device specific - interrupt number. \return 0 Interrupt status is not active. - \return 1 Interrupt status is active. - \note IRQn must not be negative. - */ -static inline uint32_t __irq_get_active(simple_irqn_e IRQn) -{ - assert(0); - return 0; -} - -static inline uint32_t __irq_forge_it_vect(uint32_t ItBaseAddr, - uint32_t ItIndex, uint32_t ItHandler) - -{ - assert(0); - - return 0; -} - -/** - \brief Set Interrupt Vector - \details Sets an interrupt vector in SRAM based interrupt vector table. - The interrupt number can be positive to specify a device specific - interrupt, or negative to specify a processor exception. VTOR must been - relocated to SRAM before. \param [in] IRQn Interrupt number \param [in] - vector Address of interrupt handler function - */ -static inline void __irq_set_vector(simple_irqn_e IRQn, uint32_t vector) -{ - assert(0); -} - -/** - \brief Get Interrupt Vector - \details Reads an interrupt vector from interrupt vector table. - The interrupt number can be positive to specify a device specific - interrupt, or negative to specify a processor exception. \param [in] IRQn - Interrupt number. \return Address of interrupt handler - function - */ -static inline uint32_t __irq_get_vector(simple_irqn_e IRQn) -{ - assert(0); -} - - -/** - \brief System Reset - \details Initiates a system reset request to reset the MCU. - */ -static inline void __irq_system_reset(void) -{ - assert(0); -} - -#endif /* __IRQ_H__ */ diff --git a/rtos/freertos/abstraction_layer_freertos/include/link.h b/rtos/freertos/abstraction_layer_freertos/include/link.h deleted file mode 100644 index c30b354e..00000000 --- a/rtos/freertos/abstraction_layer_freertos/include/link.h +++ /dev/null @@ -1,25 +0,0 @@ -/* - * Copyright 2021 ETH Zurich - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * SPDX-License-Identifier: Apache-2.0 - */ - -/* Author: Robert Balas */ - -#define PI_CL_L1 __attribute__((section(".l1cluster_g"))) -#define PI_FC_L1 __attribute__((section(".data"))) - -#define PI_L1 PI_CL_L1 -#define FC_L1_MEM PI_FC_L1 diff --git a/rtos/freertos/abstraction_layer_freertos/include/list.h b/rtos/freertos/abstraction_layer_freertos/include/list.h deleted file mode 100644 index 51322f21..00000000 --- a/rtos/freertos/abstraction_layer_freertos/include/list.h +++ /dev/null @@ -1,412 +0,0 @@ -/* - * FreeRTOS Kernel V10.3.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. - * - * Permission is hereby granted, free of charge, to any person obtaining a copy of - * this software and associated documentation files (the "Software"), to deal in - * the Software without restriction, including without limitation the rights to - * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of - * the Software, and to permit persons to whom the Software is furnished to do so, - * subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS - * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR - * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER - * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - * - * http://www.FreeRTOS.org - * http://aws.amazon.com/freertos - * - * 1 tab == 4 spaces! - */ - -/* - * This is the list implementation used by the scheduler. While it is tailored - * heavily for the schedulers needs, it is also available for use by - * application code. - * - * list_ts can only store pointers to list_item_ts. Each ListItem_t contains a - * numeric value (xItemValue). Most of the time the lists are sorted in - * descending item value order. - * - * Lists are created already containing one list item. The value of this - * item is the maximum possible that can be stored, it is therefore always at - * the end of the list and acts as a marker. The list member pxHead always - * points to this marker - even though it is at the tail of the list. This - * is because the tail contains a wrap back pointer to the true head of - * the list. - * - * In addition to it's value, each list item contains a pointer to the next - * item in the list (pxNext), a pointer to the list it is in (pxContainer) - * and a pointer to back to the object that contains it. These later two - * pointers are included for efficiency of list manipulation. There is - * effectively a two way link between the object containing the list item and - * the list item itself. - * - * - * \page ListIntroduction List Implementation - * \ingroup FreeRTOSIntro - */ - -#ifndef INC_FREERTOS_H - #error FreeRTOS.h must be included before list.h -#endif - -#ifndef LIST_H -#define LIST_H - -/* - * The list structure members are modified from within interrupts, and therefore - * by rights should be declared volatile. However, they are only modified in a - * functionally atomic way (within critical sections of with the scheduler - * suspended) and are either passed by reference into a function or indexed via - * a volatile variable. Therefore, in all use cases tested so far, the volatile - * qualifier can be omitted in order to provide a moderate performance - * improvement without adversely affecting functional behaviour. The assembly - * instructions generated by the IAR, ARM and GCC compilers when the respective - * compiler's options were set for maximum optimisation has been inspected and - * deemed to be as intended. That said, as compiler technology advances, and - * especially if aggressive cross module optimisation is used (a use case that - * has not been exercised to any great extend) then it is feasible that the - * volatile qualifier will be needed for correct optimisation. It is expected - * that a compiler removing essential code because, without the volatile - * qualifier on the list structure members and with aggressive cross module - * optimisation, the compiler deemed the code unnecessary will result in - * complete and obvious failure of the scheduler. If this is ever experienced - * then the volatile qualifier can be inserted in the relevant places within the - * list structures by simply defining configLIST_VOLATILE to volatile in - * FreeRTOSConfig.h (as per the example at the bottom of this comment block). - * If configLIST_VOLATILE is not defined then the preprocessor directives below - * will simply #define configLIST_VOLATILE away completely. - * - * To use volatile list structure members then add the following line to - * FreeRTOSConfig.h (without the quotes): - * "#define configLIST_VOLATILE volatile" - */ -#ifndef configLIST_VOLATILE - #define configLIST_VOLATILE -#endif /* configSUPPORT_CROSS_MODULE_OPTIMISATION */ - -#ifdef __cplusplus -extern "C" { -#endif - -/* Macros that can be used to place known values within the list structures, -then check that the known values do not get corrupted during the execution of -the application. These may catch the list data structures being overwritten in -memory. They will not catch data errors caused by incorrect configuration or -use of FreeRTOS.*/ -#if( configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES == 0 ) - /* Define the macros to do nothing. */ - #define listFIRST_LIST_ITEM_INTEGRITY_CHECK_VALUE - #define listSECOND_LIST_ITEM_INTEGRITY_CHECK_VALUE - #define listFIRST_LIST_INTEGRITY_CHECK_VALUE - #define listSECOND_LIST_INTEGRITY_CHECK_VALUE - #define listSET_FIRST_LIST_ITEM_INTEGRITY_CHECK_VALUE( pxItem ) - #define listSET_SECOND_LIST_ITEM_INTEGRITY_CHECK_VALUE( pxItem ) - #define listSET_LIST_INTEGRITY_CHECK_1_VALUE( pxList ) - #define listSET_LIST_INTEGRITY_CHECK_2_VALUE( pxList ) - #define listTEST_LIST_ITEM_INTEGRITY( pxItem ) - #define listTEST_LIST_INTEGRITY( pxList ) -#else - /* Define macros that add new members into the list structures. */ - #define listFIRST_LIST_ITEM_INTEGRITY_CHECK_VALUE TickType_t xListItemIntegrityValue1; - #define listSECOND_LIST_ITEM_INTEGRITY_CHECK_VALUE TickType_t xListItemIntegrityValue2; - #define listFIRST_LIST_INTEGRITY_CHECK_VALUE TickType_t xListIntegrityValue1; - #define listSECOND_LIST_INTEGRITY_CHECK_VALUE TickType_t xListIntegrityValue2; - - /* Define macros that set the new structure members to known values. */ - #define listSET_FIRST_LIST_ITEM_INTEGRITY_CHECK_VALUE( pxItem ) ( pxItem )->xListItemIntegrityValue1 = pdINTEGRITY_CHECK_VALUE - #define listSET_SECOND_LIST_ITEM_INTEGRITY_CHECK_VALUE( pxItem ) ( pxItem )->xListItemIntegrityValue2 = pdINTEGRITY_CHECK_VALUE - #define listSET_LIST_INTEGRITY_CHECK_1_VALUE( pxList ) ( pxList )->xListIntegrityValue1 = pdINTEGRITY_CHECK_VALUE - #define listSET_LIST_INTEGRITY_CHECK_2_VALUE( pxList ) ( pxList )->xListIntegrityValue2 = pdINTEGRITY_CHECK_VALUE - - /* Define macros that will assert if one of the structure members does not - contain its expected value. */ - #define listTEST_LIST_ITEM_INTEGRITY( pxItem ) configASSERT( ( ( pxItem )->xListItemIntegrityValue1 == pdINTEGRITY_CHECK_VALUE ) && ( ( pxItem )->xListItemIntegrityValue2 == pdINTEGRITY_CHECK_VALUE ) ) - #define listTEST_LIST_INTEGRITY( pxList ) configASSERT( ( ( pxList )->xListIntegrityValue1 == pdINTEGRITY_CHECK_VALUE ) && ( ( pxList )->xListIntegrityValue2 == pdINTEGRITY_CHECK_VALUE ) ) -#endif /* configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES */ - - -/* - * Definition of the only type of object that a list can contain. - */ -struct xLIST; -struct xLIST_ITEM -{ - listFIRST_LIST_ITEM_INTEGRITY_CHECK_VALUE /*< Set to a known value if configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES is set to 1. */ - configLIST_VOLATILE TickType_t xItemValue; /*< The value being listed. In most cases this is used to sort the list in descending order. */ - struct xLIST_ITEM * configLIST_VOLATILE pxNext; /*< Pointer to the next ListItem_t in the list. */ - struct xLIST_ITEM * configLIST_VOLATILE pxPrevious; /*< Pointer to the previous ListItem_t in the list. */ - void * pvOwner; /*< Pointer to the object (normally a TCB) that contains the list item. There is therefore a two way link between the object containing the list item and the list item itself. */ - struct xLIST * configLIST_VOLATILE pxContainer; /*< Pointer to the list in which this list item is placed (if any). */ - listSECOND_LIST_ITEM_INTEGRITY_CHECK_VALUE /*< Set to a known value if configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES is set to 1. */ -}; -typedef struct xLIST_ITEM ListItem_t; /* For some reason lint wants this as two separate definitions. */ - -struct xMINI_LIST_ITEM -{ - listFIRST_LIST_ITEM_INTEGRITY_CHECK_VALUE /*< Set to a known value if configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES is set to 1. */ - configLIST_VOLATILE TickType_t xItemValue; - struct xLIST_ITEM * configLIST_VOLATILE pxNext; - struct xLIST_ITEM * configLIST_VOLATILE pxPrevious; -}; -typedef struct xMINI_LIST_ITEM MiniListItem_t; - -/* - * Definition of the type of queue used by the scheduler. - */ -typedef struct xLIST -{ - listFIRST_LIST_INTEGRITY_CHECK_VALUE /*< Set to a known value if configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES is set to 1. */ - volatile UBaseType_t uxNumberOfItems; - ListItem_t * configLIST_VOLATILE pxIndex; /*< Used to walk through the list. Points to the last item returned by a call to listGET_OWNER_OF_NEXT_ENTRY (). */ - MiniListItem_t xListEnd; /*< List item that contains the maximum possible item value meaning it is always at the end of the list and is therefore used as a marker. */ - listSECOND_LIST_INTEGRITY_CHECK_VALUE /*< Set to a known value if configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES is set to 1. */ -} List_t; - -/* - * Access macro to set the owner of a list item. The owner of a list item - * is the object (usually a TCB) that contains the list item. - * - * \page listSET_LIST_ITEM_OWNER listSET_LIST_ITEM_OWNER - * \ingroup LinkedList - */ -#define listSET_LIST_ITEM_OWNER( pxListItem, pxOwner ) ( ( pxListItem )->pvOwner = ( void * ) ( pxOwner ) ) - -/* - * Access macro to get the owner of a list item. The owner of a list item - * is the object (usually a TCB) that contains the list item. - * - * \page listGET_LIST_ITEM_OWNER listSET_LIST_ITEM_OWNER - * \ingroup LinkedList - */ -#define listGET_LIST_ITEM_OWNER( pxListItem ) ( ( pxListItem )->pvOwner ) - -/* - * Access macro to set the value of the list item. In most cases the value is - * used to sort the list in descending order. - * - * \page listSET_LIST_ITEM_VALUE listSET_LIST_ITEM_VALUE - * \ingroup LinkedList - */ -#define listSET_LIST_ITEM_VALUE( pxListItem, xValue ) ( ( pxListItem )->xItemValue = ( xValue ) ) - -/* - * Access macro to retrieve the value of the list item. The value can - * represent anything - for example the priority of a task, or the time at - * which a task should be unblocked. - * - * \page listGET_LIST_ITEM_VALUE listGET_LIST_ITEM_VALUE - * \ingroup LinkedList - */ -#define listGET_LIST_ITEM_VALUE( pxListItem ) ( ( pxListItem )->xItemValue ) - -/* - * Access macro to retrieve the value of the list item at the head of a given - * list. - * - * \page listGET_LIST_ITEM_VALUE listGET_LIST_ITEM_VALUE - * \ingroup LinkedList - */ -#define listGET_ITEM_VALUE_OF_HEAD_ENTRY( pxList ) ( ( ( pxList )->xListEnd ).pxNext->xItemValue ) - -/* - * Return the list item at the head of the list. - * - * \page listGET_HEAD_ENTRY listGET_HEAD_ENTRY - * \ingroup LinkedList - */ -#define listGET_HEAD_ENTRY( pxList ) ( ( ( pxList )->xListEnd ).pxNext ) - -/* - * Return the next list item. - * - * \page listGET_NEXT listGET_NEXT - * \ingroup LinkedList - */ -#define listGET_NEXT( pxListItem ) ( ( pxListItem )->pxNext ) - -/* - * Return the list item that marks the end of the list - * - * \page listGET_END_MARKER listGET_END_MARKER - * \ingroup LinkedList - */ -#define listGET_END_MARKER( pxList ) ( ( ListItem_t const * ) ( &( ( pxList )->xListEnd ) ) ) - -/* - * Access macro to determine if a list contains any items. The macro will - * only have the value true if the list is empty. - * - * \page listLIST_IS_EMPTY listLIST_IS_EMPTY - * \ingroup LinkedList - */ -#define listLIST_IS_EMPTY( pxList ) ( ( ( pxList )->uxNumberOfItems == ( UBaseType_t ) 0 ) ? pdTRUE : pdFALSE ) - -/* - * Access macro to return the number of items in the list. - */ -#define listCURRENT_LIST_LENGTH( pxList ) ( ( pxList )->uxNumberOfItems ) - -/* - * Access function to obtain the owner of the next entry in a list. - * - * The list member pxIndex is used to walk through a list. Calling - * listGET_OWNER_OF_NEXT_ENTRY increments pxIndex to the next item in the list - * and returns that entry's pxOwner parameter. Using multiple calls to this - * function it is therefore possible to move through every item contained in - * a list. - * - * The pxOwner parameter of a list item is a pointer to the object that owns - * the list item. In the scheduler this is normally a task control block. - * The pxOwner parameter effectively creates a two way link between the list - * item and its owner. - * - * @param pxTCB pxTCB is set to the address of the owner of the next list item. - * @param pxList The list from which the next item owner is to be returned. - * - * \page listGET_OWNER_OF_NEXT_ENTRY listGET_OWNER_OF_NEXT_ENTRY - * \ingroup LinkedList - */ -#define listGET_OWNER_OF_NEXT_ENTRY( pxTCB, pxList ) \ -{ \ -List_t * const pxConstList = ( pxList ); \ - /* Increment the index to the next item and return the item, ensuring */ \ - /* we don't return the marker used at the end of the list. */ \ - ( pxConstList )->pxIndex = ( pxConstList )->pxIndex->pxNext; \ - if( ( void * ) ( pxConstList )->pxIndex == ( void * ) &( ( pxConstList )->xListEnd ) ) \ - { \ - ( pxConstList )->pxIndex = ( pxConstList )->pxIndex->pxNext; \ - } \ - ( pxTCB ) = ( pxConstList )->pxIndex->pvOwner; \ -} - - -/* - * Access function to obtain the owner of the first entry in a list. Lists - * are normally sorted in ascending item value order. - * - * This function returns the pxOwner member of the first item in the list. - * The pxOwner parameter of a list item is a pointer to the object that owns - * the list item. In the scheduler this is normally a task control block. - * The pxOwner parameter effectively creates a two way link between the list - * item and its owner. - * - * @param pxList The list from which the owner of the head item is to be - * returned. - * - * \page listGET_OWNER_OF_HEAD_ENTRY listGET_OWNER_OF_HEAD_ENTRY - * \ingroup LinkedList - */ -#define listGET_OWNER_OF_HEAD_ENTRY( pxList ) ( (&( ( pxList )->xListEnd ))->pxNext->pvOwner ) - -/* - * Check to see if a list item is within a list. The list item maintains a - * "container" pointer that points to the list it is in. All this macro does - * is check to see if the container and the list match. - * - * @param pxList The list we want to know if the list item is within. - * @param pxListItem The list item we want to know if is in the list. - * @return pdTRUE if the list item is in the list, otherwise pdFALSE. - */ -#define listIS_CONTAINED_WITHIN( pxList, pxListItem ) ( ( ( pxListItem )->pxContainer == ( pxList ) ) ? ( pdTRUE ) : ( pdFALSE ) ) - -/* - * Return the list a list item is contained within (referenced from). - * - * @param pxListItem The list item being queried. - * @return A pointer to the List_t object that references the pxListItem - */ -#define listLIST_ITEM_CONTAINER( pxListItem ) ( ( pxListItem )->pxContainer ) - -/* - * This provides a crude means of knowing if a list has been initialised, as - * pxList->xListEnd.xItemValue is set to portMAX_DELAY by the vListInitialise() - * function. - */ -#define listLIST_IS_INITIALISED( pxList ) ( ( pxList )->xListEnd.xItemValue == portMAX_DELAY ) - -/* - * Must be called before a list is used! This initialises all the members - * of the list structure and inserts the xListEnd item into the list as a - * marker to the back of the list. - * - * @param pxList Pointer to the list being initialised. - * - * \page vListInitialise vListInitialise - * \ingroup LinkedList - */ -void vListInitialise( List_t * const pxList ) PRIVILEGED_FUNCTION; - -/* - * Must be called before a list item is used. This sets the list container to - * null so the item does not think that it is already contained in a list. - * - * @param pxItem Pointer to the list item being initialised. - * - * \page vListInitialiseItem vListInitialiseItem - * \ingroup LinkedList - */ -void vListInitialiseItem( ListItem_t * const pxItem ) PRIVILEGED_FUNCTION; - -/* - * Insert a list item into a list. The item will be inserted into the list in - * a position determined by its item value (descending item value order). - * - * @param pxList The list into which the item is to be inserted. - * - * @param pxNewListItem The item that is to be placed in the list. - * - * \page vListInsert vListInsert - * \ingroup LinkedList - */ -void vListInsert( List_t * const pxList, ListItem_t * const pxNewListItem ) PRIVILEGED_FUNCTION; - -/* - * Insert a list item into a list. The item will be inserted in a position - * such that it will be the last item within the list returned by multiple - * calls to listGET_OWNER_OF_NEXT_ENTRY. - * - * The list member pxIndex is used to walk through a list. Calling - * listGET_OWNER_OF_NEXT_ENTRY increments pxIndex to the next item in the list. - * Placing an item in a list using vListInsertEnd effectively places the item - * in the list position pointed to by pxIndex. This means that every other - * item within the list will be returned by listGET_OWNER_OF_NEXT_ENTRY before - * the pxIndex parameter again points to the item being inserted. - * - * @param pxList The list into which the item is to be inserted. - * - * @param pxNewListItem The list item to be inserted into the list. - * - * \page vListInsertEnd vListInsertEnd - * \ingroup LinkedList - */ -void vListInsertEnd( List_t * const pxList, ListItem_t * const pxNewListItem ) PRIVILEGED_FUNCTION; - -/* - * Remove an item from a list. The list item has a pointer to the list that - * it is in, so only the list item need be passed into the function. - * - * @param uxListRemove The item to be removed. The item will remove itself from - * the list pointed to by it's pxContainer parameter. - * - * @return The number of items that remain in the list after the list item has - * been removed. - * - * \page uxListRemove uxListRemove - * \ingroup LinkedList - */ -UBaseType_t uxListRemove( ListItem_t * const pxItemToRemove ) PRIVILEGED_FUNCTION; - -#ifdef __cplusplus -} -#endif - -#endif - diff --git a/rtos/freertos/abstraction_layer_freertos/include/memory_map.h b/rtos/freertos/abstraction_layer_freertos/include/memory_map.h deleted file mode 100644 index 04118db8..00000000 --- a/rtos/freertos/abstraction_layer_freertos/include/memory_map.h +++ /dev/null @@ -1,156 +0,0 @@ -/* - * Copyright (C) 2019 ETH Zurich, University of Bologna and GreenWaves - * Technologies - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifndef __MEMORY_MAP_H__ -#define __MEMORY_MAP_H__ - -#include "properties.h" -/* Memories */ -/* FC memory. */ -#define FC_TCDM_ADDR (0x1B000000) -#if (ARCHI_HAS_FC_ALIAS) -#define FC_TCDM_ADDR_ALIAS (0x00000000) -#endif /* ARCHI_HAS_FC_ALIAS */ - -/* L2 memory */ -#define L2_SHARED_ADDR (0x1C000000) -#if (ARCHI_HAS_L2_ALIAS) -#define L2_SHARED_ADDR_ALIAS (0x00000000) -#endif /* ARCHI_HAS_L2_ALIAS */ - -/* L1 cluster memory */ -#define CL_L1_ADDR (0x10000000) -#if (ARCHI_HAS_CL_L1_ALIAS) -#define CL_L1_ADDR_ALIAS (0x00000000) -#endif /* ARCHI_HAS_CL_L1_ALIAS */ - -/* L1 cluster TS */ -#if (ARCHI_HAS_CL_L1_TS) -#define L2_PRIV0_TS_ADDR (0x10100000) -#endif /* ARCHI_HAS_CL_L1_TS */ - -/* ROM memory (8 KiB)*/ -#define ROM_ADDR (0x1A000000) -#define ROM_SIZE (0x00002000) - -/* Cluster */ -#define ARCHI_CLUSTER_ADDR (0x00000000) -#define ARCHI_CLUSTER_SIZE (0x00400000) -#define ARCHI_CLUSTER_GLOBAL_ADDR(cid) (0x10000000 + (cid)*ARCHI_CLUSTER_SIZE) -#define ARCHI_CLUSTER_PERIPHERALS_OFFSET (0x00200000) - -/* Cluster peripherals */ -#define ARCHI_TIMER_SIZE (0x00000800) - -#define ARCHI_CLUSTER_CTRL_OFFSET (0x00000000) -#define ARCHI_TIMER_OFFSET (0x00000400) -#define ARCHI_EU_OFFSET (0x00000800) -#define ARCHI_HWCE_OFFSET (0x00001000) -#define ARCHI_ICACHE_CTRL_OFFSET (0x00001400) -#define ARCHI_MCHAN_EXT_OFFSET (0x00001800) - -#define ARCHI_CLUSTER_PERIPHERALS_ADDR \ - (ARCHI_CLUSTER_ADDR + ARCHI_CLUSTER_PERIPHERALS_OFFSET) -#define ARCHI_CLUSTER_PERIPHERALS_GLOBAL_ADDR(cid) \ - (ARCHI_CLUSTER_GLOBAL_ADDR(cid) + ARCHI_CLUSTER_PERIPHERALS_OFFSET) - -#define ARCHI_CLUSTER_CTRL_ADDR \ - (ARCHI_CLUSTER_PERIPHERALS_GLOBAL_ADDR(0) + ARCHI_CLUSTER_CTRL_OFFSET) -#define ARCHI_CLUSTER_TIMER_ADDR \ - (ARCHI_CLUSTER_PERIPHERALS_GLOBAL_ADDR(0) + ARCHI_TIMER_OFFSET) -#define ARCHI_ICACHE_CTRL_ADDR \ - (ARCHI_CLUSTER_PERIPHERALS_GLOBAL_ADDR(0) + ARCHI_ICACHE_CTRL_OFFSET) -#define ARCHI_EU_ADDR \ - (ARCHI_CLUSTER_PERIPHERALS_GLOBAL_ADDR(0) + ARCHI_EU_OFFSET) -#define ARCHI_HWCE_ADDR \ - (ARCHI_CLUSTER_PERIPHERALS_GLOBAL_ADDR(0) + ARCHI_HWCE_OFFSET) -#define ARCHI_MCHAN_EXT_ADDR \ - (ARCHI_CLUSTER_PERIPHERALS_GLOBAL_ADDR(0) + ARCHI_MCHAN_EXT_OFFSET) - -#define ARCHI_DEMUX_PERIPHERALS_OFFSET (0x204000) -#define ARCHI_EU_DEMUX_OFFSET (0x00000) -#define ARCHI_MCHAN_DEMUX_OFFSET (0x00400) - -#define ARCHI_DEMUX_PERIPHERALS_ADDR \ - (ARCHI_CLUSTER_ADDR + ARCHI_DEMUX_PERIPHERALS_OFFSET) -#define ARCHI_EU_DEMUX_ADDR \ - (ARCHI_DEMUX_PERIPHERALS_ADDR + ARCHI_EU_DEMUX_OFFSET) -#define ARCHI_MCHAN_DEMUX_ADDR \ - (ARCHI_DEMUX_PERIPHERALS_ADDR + ARCHI_MCHAN_DEMUX_OFFSET) - - -/* SoC peripherals */ -#define SOC_PERIPHERALS_ADDR (0x1A100000) - -#define SOC_FLL_OFFSET (0x00000000) -#define CL_FLL_OFFSET (0x00000800) -#define GPIO_OFFSET (0x00001000) -#define UDMA_OFFSET (0x00002000) -#define APB_SOC_CTRL_OFFSET (0x00004000) -#define ADV_TIMER_OFFSET (0x00005000) /* PWM. */ -#define SOC_EU_OFFSET (0x00006000) -#define FC_IRQ_OFFSET (0x00009800) -/* #define FC_IRQ_OFFSET (0x00009000) */ /* valid - mirror - address - */ -#define FC_TIMER_OFFSET (0x0000B000) -#define FC_HWPE_OFFSET (0x0000C000) -#define STDOUT_OFFSET (0x0000F000) -#define DEBUG_OFFSET (0x00010000) - -#define SOC_FLL_ADDR (SOC_PERIPHERALS_ADDR + SOC_FLL_OFFSET) -#define CL_FLL_ADDR (SOC_PERIPHERALS_ADDR + CL_FLL_OFFSET) -#define GPIO_ADDR (SOC_PERIPHERALS_ADDR + GPIO_OFFSET) -#define UDMA_CTRL_ADDR (SOC_PERIPHERALS_ADDR + UDMA_OFFSET) -#define APB_SOC_CTRL_ADDR (SOC_PERIPHERALS_ADDR + APB_SOC_CTRL_OFFSET) -#define ADV_TIMER_ADDR (SOC_PERIPHERALS_ADDR + ADV_TIMER_OFFSET) -#define SOC_EU_ADDR (SOC_PERIPHERALS_ADDR + SOC_EU_OFFSET) -#define FC_IRQ_ADDR (SOC_PERIPHERALS_ADDR + FC_IRQ_OFFSET) -#define FC_TIMER_ADDR (SOC_PERIPHERALS_ADDR + FC_TIMER_OFFSET) -#define FC_HWPE_ADDR (SOC_PERIPHERALS_ADDR + FC_HWPE_OFFSET) -#define STDOUT_ADDR (SOC_PERIPHERALS_ADDR + STDOUT_OFFSET) -#define DEBUG_ADDR (SOC_PERIPHERALS_ADDR + DEBUG_OFFSET) - -/* UDMA peripherals */ -/* #define UDMA_GC_ADDR (UDMA_CTRL_ADDR + 0x780) - */ -/* UDMA base peripheral addr = UDMA base address + UDMA ctrl. */ -#define UDMA_PERIPH_BASE_ADDR (UDMA_CTRL_ADDR + 0x80) -#define UDMA_SPIM(id) \ - (UDMA_PERIPH_BASE_ADDR + (UDMA_SPIM_ID(id) << UDMA_PERIPH_SIZE_LOG2)) -#define UDMA_HYPER(id) \ - (UDMA_PERIPH_BASE_ADDR + (UDMA_HYPER_ID(id) << UDMA_PERIPH_SIZE_LOG2)) -#define UDMA_UART(id) \ - (UDMA_PERIPH_BASE_ADDR + (UDMA_UART_ID(id) << UDMA_PERIPH_SIZE_LOG2)) -#define UDMA_I2C(id) \ - (UDMA_PERIPH_BASE_ADDR + (UDMA_I2C_ID(id) << UDMA_PERIPH_SIZE_LOG2)) -#define UDMA_DMACPY(id) \ - (UDMA_PERIPH_BASE_ADDR + (UDMA_DMACPY_ID(id) << UDMA_PERIPH_SIZE_LOG2)) -#define UDMA_I2S(id) \ - (UDMA_PERIPH_BASE_ADDR + (UDMA_I2S_ID(id) << UDMA_PERIPH_SIZE_LOG2)) -#define UDMA_CPI(id) \ - (UDMA_PERIPH_BASE_ADDR + (UDMA_CPI_ID(id) << UDMA_PERIPH_SIZE_LOG2)) - - -#define CL_MCHAN_ADDR ARCHI_MCHAN_EXT_ADDR -#define CL_CTRL_GLOB_ADDR(cid) ARCHI_CLUSTER_CTRL_ADDR -#define CL_GLOB_ICACHE_ADDR(cid) ARCHI_ICACHE_CTRL_ADDR -#define CL_EU_BASE ARCHI_EU_ADDR -#define CL_EU_DEMUX_BASE ARCHI_DEMUX_PERIPHERALS_ADDR - -#endif /* __MEMORY_MAP_H__ */ diff --git a/rtos/freertos/abstraction_layer_freertos/include/message_buffer.h b/rtos/freertos/abstraction_layer_freertos/include/message_buffer.h deleted file mode 100644 index 9923b330..00000000 --- a/rtos/freertos/abstraction_layer_freertos/include/message_buffer.h +++ /dev/null @@ -1,803 +0,0 @@ -/* - * FreeRTOS Kernel V10.3.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. - * - * Permission is hereby granted, free of charge, to any person obtaining a copy of - * this software and associated documentation files (the "Software"), to deal in - * the Software without restriction, including without limitation the rights to - * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of - * the Software, and to permit persons to whom the Software is furnished to do so, - * subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS - * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR - * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER - * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - * - * http://www.FreeRTOS.org - * http://aws.amazon.com/freertos - * - * 1 tab == 4 spaces! - */ - - -/* - * Message buffers build functionality on top of FreeRTOS stream buffers. - * Whereas stream buffers are used to send a continuous stream of data from one - * task or interrupt to another, message buffers are used to send variable - * length discrete messages from one task or interrupt to another. Their - * implementation is light weight, making them particularly suited for interrupt - * to task and core to core communication scenarios. - * - * ***NOTE***: Uniquely among FreeRTOS objects, the stream buffer - * implementation (so also the message buffer implementation, as message buffers - * are built on top of stream buffers) assumes there is only one task or - * interrupt that will write to the buffer (the writer), and only one task or - * interrupt that will read from the buffer (the reader). It is safe for the - * writer and reader to be different tasks or interrupts, but, unlike other - * FreeRTOS objects, it is not safe to have multiple different writers or - * multiple different readers. If there are to be multiple different writers - * then the application writer must place each call to a writing API function - * (such as xMessageBufferSend()) inside a critical section and set the send - * block time to 0. Likewise, if there are to be multiple different readers - * then the application writer must place each call to a reading API function - * (such as xMessageBufferRead()) inside a critical section and set the receive - * timeout to 0. - * - * Message buffers hold variable length messages. To enable that, when a - * message is written to the message buffer an additional sizeof( size_t ) bytes - * are also written to store the message's length (that happens internally, with - * the API function). sizeof( size_t ) is typically 4 bytes on a 32-bit - * architecture, so writing a 10 byte message to a message buffer on a 32-bit - * architecture will actually reduce the available space in the message buffer - * by 14 bytes (10 byte are used by the message, and 4 bytes to hold the length - * of the message). - */ - -#ifndef FREERTOS_MESSAGE_BUFFER_H -#define FREERTOS_MESSAGE_BUFFER_H - -#ifndef INC_FREERTOS_H - #error "include FreeRTOS.h must appear in source files before include message_buffer.h" -#endif - -/* Message buffers are built onto of stream buffers. */ -#include "stream_buffer.h" - -#if defined( __cplusplus ) -extern "C" { -#endif - -/** - * Type by which message buffers are referenced. For example, a call to - * xMessageBufferCreate() returns an MessageBufferHandle_t variable that can - * then be used as a parameter to xMessageBufferSend(), xMessageBufferReceive(), - * etc. - */ -typedef void * MessageBufferHandle_t; - -/*-----------------------------------------------------------*/ - -/** - * message_buffer.h - * -
-MessageBufferHandle_t xMessageBufferCreate( size_t xBufferSizeBytes );
-
- * - * Creates a new message buffer using dynamically allocated memory. See - * xMessageBufferCreateStatic() for a version that uses statically allocated - * memory (memory that is allocated at compile time). - * - * configSUPPORT_DYNAMIC_ALLOCATION must be set to 1 or left undefined in - * FreeRTOSConfig.h for xMessageBufferCreate() to be available. - * - * @param xBufferSizeBytes The total number of bytes (not messages) the message - * buffer will be able to hold at any one time. When a message is written to - * the message buffer an additional sizeof( size_t ) bytes are also written to - * store the message's length. sizeof( size_t ) is typically 4 bytes on a - * 32-bit architecture, so on most 32-bit architectures a 10 byte message will - * take up 14 bytes of message buffer space. - * - * @return If NULL is returned, then the message buffer cannot be created - * because there is insufficient heap memory available for FreeRTOS to allocate - * the message buffer data structures and storage area. A non-NULL value being - * returned indicates that the message buffer has been created successfully - - * the returned value should be stored as the handle to the created message - * buffer. - * - * Example use: -
-
-void vAFunction( void )
-{
-MessageBufferHandle_t xMessageBuffer;
-const size_t xMessageBufferSizeBytes = 100;
-
-    // Create a message buffer that can hold 100 bytes.  The memory used to hold
-    // both the message buffer structure and the messages themselves is allocated
-    // dynamically.  Each message added to the buffer consumes an additional 4
-    // bytes which are used to hold the lengh of the message.
-    xMessageBuffer = xMessageBufferCreate( xMessageBufferSizeBytes );
-
-    if( xMessageBuffer == NULL )
-    {
-        // There was not enough heap memory space available to create the
-        // message buffer.
-    }
-    else
-    {
-        // The message buffer was created successfully and can now be used.
-    }
-
-
- * \defgroup xMessageBufferCreate xMessageBufferCreate - * \ingroup MessageBufferManagement - */ -#define xMessageBufferCreate( xBufferSizeBytes ) ( MessageBufferHandle_t ) xStreamBufferGenericCreate( xBufferSizeBytes, ( size_t ) 0, pdTRUE ) - -/** - * message_buffer.h - * -
-MessageBufferHandle_t xMessageBufferCreateStatic( size_t xBufferSizeBytes,
-                                                  uint8_t *pucMessageBufferStorageArea,
-                                                  StaticMessageBuffer_t *pxStaticMessageBuffer );
-
- * Creates a new message buffer using statically allocated memory. See - * xMessageBufferCreate() for a version that uses dynamically allocated memory. - * - * @param xBufferSizeBytes The size, in bytes, of the buffer pointed to by the - * pucMessageBufferStorageArea parameter. When a message is written to the - * message buffer an additional sizeof( size_t ) bytes are also written to store - * the message's length. sizeof( size_t ) is typically 4 bytes on a 32-bit - * architecture, so on most 32-bit architecture a 10 byte message will take up - * 14 bytes of message buffer space. The maximum number of bytes that can be - * stored in the message buffer is actually (xBufferSizeBytes - 1). - * - * @param pucMessageBufferStorageArea Must point to a uint8_t array that is at - * least xBufferSizeBytes + 1 big. This is the array to which messages are - * copied when they are written to the message buffer. - * - * @param pxStaticMessageBuffer Must point to a variable of type - * StaticMessageBuffer_t, which will be used to hold the message buffer's data - * structure. - * - * @return If the message buffer is created successfully then a handle to the - * created message buffer is returned. If either pucMessageBufferStorageArea or - * pxStaticmessageBuffer are NULL then NULL is returned. - * - * Example use: -
-
-// Used to dimension the array used to hold the messages.  The available space
-// will actually be one less than this, so 999.
-#define STORAGE_SIZE_BYTES 1000
-
-// Defines the memory that will actually hold the messages within the message
-// buffer.
-static uint8_t ucStorageBuffer[ STORAGE_SIZE_BYTES ];
-
-// The variable used to hold the message buffer structure.
-StaticMessageBuffer_t xMessageBufferStruct;
-
-void MyFunction( void )
-{
-MessageBufferHandle_t xMessageBuffer;
-
-    xMessageBuffer = xMessageBufferCreateStatic( sizeof( ucBufferStorage ),
-                                                 ucBufferStorage,
-                                                 &xMessageBufferStruct );
-
-    // As neither the pucMessageBufferStorageArea or pxStaticMessageBuffer
-    // parameters were NULL, xMessageBuffer will not be NULL, and can be used to
-    // reference the created message buffer in other message buffer API calls.
-
-    // Other code that uses the message buffer can go here.
-}
-
-
- * \defgroup xMessageBufferCreateStatic xMessageBufferCreateStatic - * \ingroup MessageBufferManagement - */ -#define xMessageBufferCreateStatic( xBufferSizeBytes, pucMessageBufferStorageArea, pxStaticMessageBuffer ) ( MessageBufferHandle_t ) xStreamBufferGenericCreateStatic( xBufferSizeBytes, 0, pdTRUE, pucMessageBufferStorageArea, pxStaticMessageBuffer ) - -/** - * message_buffer.h - * -
-size_t xMessageBufferSend( MessageBufferHandle_t xMessageBuffer,
-                           const void *pvTxData,
-                           size_t xDataLengthBytes,
-                           TickType_t xTicksToWait );
-
- *
- * Sends a discrete message to the message buffer.  The message can be any
- * length that fits within the buffer's free space, and is copied into the
- * buffer.
- *
- * ***NOTE***:  Uniquely among FreeRTOS objects, the stream buffer
- * implementation (so also the message buffer implementation, as message buffers
- * are built on top of stream buffers) assumes there is only one task or
- * interrupt that will write to the buffer (the writer), and only one task or
- * interrupt that will read from the buffer (the reader).  It is safe for the
- * writer and reader to be different tasks or interrupts, but, unlike other
- * FreeRTOS objects, it is not safe to have multiple different writers or
- * multiple different readers.  If there are to be multiple different writers
- * then the application writer must place each call to a writing API function
- * (such as xMessageBufferSend()) inside a critical section and set the send
- * block time to 0.  Likewise, if there are to be multiple different readers
- * then the application writer must place each call to a reading API function
- * (such as xMessageBufferRead()) inside a critical section and set the receive
- * block time to 0.
- *
- * Use xMessageBufferSend() to write to a message buffer from a task.  Use
- * xMessageBufferSendFromISR() to write to a message buffer from an interrupt
- * service routine (ISR).
- *
- * @param xMessageBuffer The handle of the message buffer to which a message is
- * being sent.
- *
- * @param pvTxData A pointer to the message that is to be copied into the
- * message buffer.
- *
- * @param xDataLengthBytes The length of the message.  That is, the number of
- * bytes to copy from pvTxData into the message buffer.  When a message is
- * written to the message buffer an additional sizeof( size_t ) bytes are also
- * written to store the message's length.  sizeof( size_t ) is typically 4 bytes
- * on a 32-bit architecture, so on most 32-bit architecture setting
- * xDataLengthBytes to 20 will reduce the free space in the message buffer by 24
- * bytes (20 bytes of message data and 4 bytes to hold the message length).
- *
- * @param xTicksToWait The maximum amount of time the calling task should remain
- * in the Blocked state to wait for enough space to become available in the
- * message buffer, should the message buffer have insufficient space when
- * xMessageBufferSend() is called.  The calling task will never block if
- * xTicksToWait is zero.  The block time is specified in tick periods, so the
- * absolute time it represents is dependent on the tick frequency.  The macro
- * pdMS_TO_TICKS() can be used to convert a time specified in milliseconds into
- * a time specified in ticks.  Setting xTicksToWait to portMAX_DELAY will cause
- * the task to wait indefinitely (without timing out), provided
- * INCLUDE_vTaskSuspend is set to 1 in FreeRTOSConfig.h.  Tasks do not use any
- * CPU time when they are in the Blocked state.
- *
- * @return The number of bytes written to the message buffer.  If the call to
- * xMessageBufferSend() times out before there was enough space to write the
- * message into the message buffer then zero is returned.  If the call did not
- * time out then xDataLengthBytes is returned.
- *
- * Example use:
-
-void vAFunction( MessageBufferHandle_t xMessageBuffer )
-{
-size_t xBytesSent;
-uint8_t ucArrayToSend[] = { 0, 1, 2, 3 };
-char *pcStringToSend = "String to send";
-const TickType_t x100ms = pdMS_TO_TICKS( 100 );
-
-    // Send an array to the message buffer, blocking for a maximum of 100ms to
-    // wait for enough space to be available in the message buffer.
-    xBytesSent = xMessageBufferSend( xMessageBuffer, ( void * ) ucArrayToSend, sizeof( ucArrayToSend ), x100ms );
-
-    if( xBytesSent != sizeof( ucArrayToSend ) )
-    {
-        // The call to xMessageBufferSend() times out before there was enough
-        // space in the buffer for the data to be written.
-    }
-
-    // Send the string to the message buffer.  Return immediately if there is
-    // not enough space in the buffer.
-    xBytesSent = xMessageBufferSend( xMessageBuffer, ( void * ) pcStringToSend, strlen( pcStringToSend ), 0 );
-
-    if( xBytesSent != strlen( pcStringToSend ) )
-    {
-        // The string could not be added to the message buffer because there was
-        // not enough free space in the buffer.
-    }
-}
-
- * \defgroup xMessageBufferSend xMessageBufferSend - * \ingroup MessageBufferManagement - */ -#define xMessageBufferSend( xMessageBuffer, pvTxData, xDataLengthBytes, xTicksToWait ) xStreamBufferSend( ( StreamBufferHandle_t ) xMessageBuffer, pvTxData, xDataLengthBytes, xTicksToWait ) - -/** - * message_buffer.h - * -
-size_t xMessageBufferSendFromISR( MessageBufferHandle_t xMessageBuffer,
-                                  const void *pvTxData,
-                                  size_t xDataLengthBytes,
-                                  BaseType_t *pxHigherPriorityTaskWoken );
-
- *
- * Interrupt safe version of the API function that sends a discrete message to
- * the message buffer.  The message can be any length that fits within the
- * buffer's free space, and is copied into the buffer.
- *
- * ***NOTE***:  Uniquely among FreeRTOS objects, the stream buffer
- * implementation (so also the message buffer implementation, as message buffers
- * are built on top of stream buffers) assumes there is only one task or
- * interrupt that will write to the buffer (the writer), and only one task or
- * interrupt that will read from the buffer (the reader).  It is safe for the
- * writer and reader to be different tasks or interrupts, but, unlike other
- * FreeRTOS objects, it is not safe to have multiple different writers or
- * multiple different readers.  If there are to be multiple different writers
- * then the application writer must place each call to a writing API function
- * (such as xMessageBufferSend()) inside a critical section and set the send
- * block time to 0.  Likewise, if there are to be multiple different readers
- * then the application writer must place each call to a reading API function
- * (such as xMessageBufferRead()) inside a critical section and set the receive
- * block time to 0.
- *
- * Use xMessageBufferSend() to write to a message buffer from a task.  Use
- * xMessageBufferSendFromISR() to write to a message buffer from an interrupt
- * service routine (ISR).
- *
- * @param xMessageBuffer The handle of the message buffer to which a message is
- * being sent.
- *
- * @param pvTxData A pointer to the message that is to be copied into the
- * message buffer.
- *
- * @param xDataLengthBytes The length of the message.  That is, the number of
- * bytes to copy from pvTxData into the message buffer.  When a message is
- * written to the message buffer an additional sizeof( size_t ) bytes are also
- * written to store the message's length.  sizeof( size_t ) is typically 4 bytes
- * on a 32-bit architecture, so on most 32-bit architecture setting
- * xDataLengthBytes to 20 will reduce the free space in the message buffer by 24
- * bytes (20 bytes of message data and 4 bytes to hold the message length).
- *
- * @param pxHigherPriorityTaskWoken  It is possible that a message buffer will
- * have a task blocked on it waiting for data.  Calling
- * xMessageBufferSendFromISR() can make data available, and so cause a task that
- * was waiting for data to leave the Blocked state.  If calling
- * xMessageBufferSendFromISR() causes a task to leave the Blocked state, and the
- * unblocked task has a priority higher than the currently executing task (the
- * task that was interrupted), then, internally, xMessageBufferSendFromISR()
- * will set *pxHigherPriorityTaskWoken to pdTRUE.  If
- * xMessageBufferSendFromISR() sets this value to pdTRUE, then normally a
- * context switch should be performed before the interrupt is exited.  This will
- * ensure that the interrupt returns directly to the highest priority Ready
- * state task.  *pxHigherPriorityTaskWoken should be set to pdFALSE before it
- * is passed into the function.  See the code example below for an example.
- *
- * @return The number of bytes actually written to the message buffer.  If the
- * message buffer didn't have enough free space for the message to be stored
- * then 0 is returned, otherwise xDataLengthBytes is returned.
- *
- * Example use:
-
-// A message buffer that has already been created.
-MessageBufferHandle_t xMessageBuffer;
-
-void vAnInterruptServiceRoutine( void )
-{
-size_t xBytesSent;
-char *pcStringToSend = "String to send";
-BaseType_t xHigherPriorityTaskWoken = pdFALSE; // Initialised to pdFALSE.
-
-    // Attempt to send the string to the message buffer.
-    xBytesSent = xMessageBufferSendFromISR( xMessageBuffer,
-                                            ( void * ) pcStringToSend,
-                                            strlen( pcStringToSend ),
-                                            &xHigherPriorityTaskWoken );
-
-    if( xBytesSent != strlen( pcStringToSend ) )
-    {
-        // The string could not be added to the message buffer because there was
-        // not enough free space in the buffer.
-    }
-
-    // If xHigherPriorityTaskWoken was set to pdTRUE inside
-    // xMessageBufferSendFromISR() then a task that has a priority above the
-    // priority of the currently executing task was unblocked and a context
-    // switch should be performed to ensure the ISR returns to the unblocked
-    // task.  In most FreeRTOS ports this is done by simply passing
-    // xHigherPriorityTaskWoken into portYIELD_FROM_ISR(), which will test the
-    // variables value, and perform the context switch if necessary.  Check the
-    // documentation for the port in use for port specific instructions.
-    portYIELD_FROM_ISR( xHigherPriorityTaskWoken );
-}
-
- * \defgroup xMessageBufferSendFromISR xMessageBufferSendFromISR - * \ingroup MessageBufferManagement - */ -#define xMessageBufferSendFromISR( xMessageBuffer, pvTxData, xDataLengthBytes, pxHigherPriorityTaskWoken ) xStreamBufferSendFromISR( ( StreamBufferHandle_t ) xMessageBuffer, pvTxData, xDataLengthBytes, pxHigherPriorityTaskWoken ) - -/** - * message_buffer.h - * -
-size_t xMessageBufferReceive( MessageBufferHandle_t xMessageBuffer,
-                              void *pvRxData,
-                              size_t xBufferLengthBytes,
-                              TickType_t xTicksToWait );
-
- * - * Receives a discrete message from a message buffer. Messages can be of - * variable length and are copied out of the buffer. - * - * ***NOTE***: Uniquely among FreeRTOS objects, the stream buffer - * implementation (so also the message buffer implementation, as message buffers - * are built on top of stream buffers) assumes there is only one task or - * interrupt that will write to the buffer (the writer), and only one task or - * interrupt that will read from the buffer (the reader). It is safe for the - * writer and reader to be different tasks or interrupts, but, unlike other - * FreeRTOS objects, it is not safe to have multiple different writers or - * multiple different readers. If there are to be multiple different writers - * then the application writer must place each call to a writing API function - * (such as xMessageBufferSend()) inside a critical section and set the send - * block time to 0. Likewise, if there are to be multiple different readers - * then the application writer must place each call to a reading API function - * (such as xMessageBufferRead()) inside a critical section and set the receive - * block time to 0. - * - * Use xMessageBufferReceive() to read from a message buffer from a task. Use - * xMessageBufferReceiveFromISR() to read from a message buffer from an - * interrupt service routine (ISR). - * - * @param xMessageBuffer The handle of the message buffer from which a message - * is being received. - * - * @param pvRxData A pointer to the buffer into which the received message is - * to be copied. - * - * @param xBufferLengthBytes The length of the buffer pointed to by the pvRxData - * parameter. This sets the maximum length of the message that can be received. - * If xBufferLengthBytes is too small to hold the next message then the message - * will be left in the message buffer and 0 will be returned. - * - * @param xTicksToWait The maximum amount of time the task should remain in the - * Blocked state to wait for a message, should the message buffer be empty. - * xMessageBufferReceive() will return immediately if xTicksToWait is zero and - * the message buffer is empty. The block time is specified in tick periods, so - * the absolute time it represents is dependent on the tick frequency. The - * macro pdMS_TO_TICKS() can be used to convert a time specified in milliseconds - * into a time specified in ticks. Setting xTicksToWait to portMAX_DELAY will - * cause the task to wait indefinitely (without timing out), provided - * INCLUDE_vTaskSuspend is set to 1 in FreeRTOSConfig.h. Tasks do not use any - * CPU time when they are in the Blocked state. - * - * @return The length, in bytes, of the message read from the message buffer, if - * any. If xMessageBufferReceive() times out before a message became available - * then zero is returned. If the length of the message is greater than - * xBufferLengthBytes then the message will be left in the message buffer and - * zero is returned. - * - * Example use: -
-void vAFunction( MessageBuffer_t xMessageBuffer )
-{
-uint8_t ucRxData[ 20 ];
-size_t xReceivedBytes;
-const TickType_t xBlockTime = pdMS_TO_TICKS( 20 );
-
-    // Receive the next message from the message buffer.  Wait in the Blocked
-    // state (so not using any CPU processing time) for a maximum of 100ms for
-    // a message to become available.
-    xReceivedBytes = xMessageBufferReceive( xMessageBuffer,
-                                            ( void * ) ucRxData,
-                                            sizeof( ucRxData ),
-                                            xBlockTime );
-
-    if( xReceivedBytes > 0 )
-    {
-        // A ucRxData contains a message that is xReceivedBytes long.  Process
-        // the message here....
-    }
-}
-
- * \defgroup xMessageBufferReceive xMessageBufferReceive - * \ingroup MessageBufferManagement - */ -#define xMessageBufferReceive( xMessageBuffer, pvRxData, xBufferLengthBytes, xTicksToWait ) xStreamBufferReceive( ( StreamBufferHandle_t ) xMessageBuffer, pvRxData, xBufferLengthBytes, xTicksToWait ) - - -/** - * message_buffer.h - * -
-size_t xMessageBufferReceiveFromISR( MessageBufferHandle_t xMessageBuffer,
-                                     void *pvRxData,
-                                     size_t xBufferLengthBytes,
-                                     BaseType_t *pxHigherPriorityTaskWoken );
-
- * - * An interrupt safe version of the API function that receives a discrete - * message from a message buffer. Messages can be of variable length and are - * copied out of the buffer. - * - * ***NOTE***: Uniquely among FreeRTOS objects, the stream buffer - * implementation (so also the message buffer implementation, as message buffers - * are built on top of stream buffers) assumes there is only one task or - * interrupt that will write to the buffer (the writer), and only one task or - * interrupt that will read from the buffer (the reader). It is safe for the - * writer and reader to be different tasks or interrupts, but, unlike other - * FreeRTOS objects, it is not safe to have multiple different writers or - * multiple different readers. If there are to be multiple different writers - * then the application writer must place each call to a writing API function - * (such as xMessageBufferSend()) inside a critical section and set the send - * block time to 0. Likewise, if there are to be multiple different readers - * then the application writer must place each call to a reading API function - * (such as xMessageBufferRead()) inside a critical section and set the receive - * block time to 0. - * - * Use xMessageBufferReceive() to read from a message buffer from a task. Use - * xMessageBufferReceiveFromISR() to read from a message buffer from an - * interrupt service routine (ISR). - * - * @param xMessageBuffer The handle of the message buffer from which a message - * is being received. - * - * @param pvRxData A pointer to the buffer into which the received message is - * to be copied. - * - * @param xBufferLengthBytes The length of the buffer pointed to by the pvRxData - * parameter. This sets the maximum length of the message that can be received. - * If xBufferLengthBytes is too small to hold the next message then the message - * will be left in the message buffer and 0 will be returned. - * - * @param pxHigherPriorityTaskWoken It is possible that a message buffer will - * have a task blocked on it waiting for space to become available. Calling - * xMessageBufferReceiveFromISR() can make space available, and so cause a task - * that is waiting for space to leave the Blocked state. If calling - * xMessageBufferReceiveFromISR() causes a task to leave the Blocked state, and - * the unblocked task has a priority higher than the currently executing task - * (the task that was interrupted), then, internally, - * xMessageBufferReceiveFromISR() will set *pxHigherPriorityTaskWoken to pdTRUE. - * If xMessageBufferReceiveFromISR() sets this value to pdTRUE, then normally a - * context switch should be performed before the interrupt is exited. That will - * ensure the interrupt returns directly to the highest priority Ready state - * task. *pxHigherPriorityTaskWoken should be set to pdFALSE before it is - * passed into the function. See the code example below for an example. - * - * @return The length, in bytes, of the message read from the message buffer, if - * any. - * - * Example use: -
-// A message buffer that has already been created.
-MessageBuffer_t xMessageBuffer;
-
-void vAnInterruptServiceRoutine( void )
-{
-uint8_t ucRxData[ 20 ];
-size_t xReceivedBytes;
-BaseType_t xHigherPriorityTaskWoken = pdFALSE;  // Initialised to pdFALSE.
-
-    // Receive the next message from the message buffer.
-    xReceivedBytes = xMessageBufferReceiveFromISR( xMessageBuffer,
-                                                  ( void * ) ucRxData,
-                                                  sizeof( ucRxData ),
-                                                  &xHigherPriorityTaskWoken );
-
-    if( xReceivedBytes > 0 )
-    {
-        // A ucRxData contains a message that is xReceivedBytes long.  Process
-        // the message here....
-    }
-
-    // If xHigherPriorityTaskWoken was set to pdTRUE inside
-    // xMessageBufferReceiveFromISR() then a task that has a priority above the
-    // priority of the currently executing task was unblocked and a context
-    // switch should be performed to ensure the ISR returns to the unblocked
-    // task.  In most FreeRTOS ports this is done by simply passing
-    // xHigherPriorityTaskWoken into portYIELD_FROM_ISR(), which will test the
-    // variables value, and perform the context switch if necessary.  Check the
-    // documentation for the port in use for port specific instructions.
-    portYIELD_FROM_ISR( xHigherPriorityTaskWoken );
-}
-
- * \defgroup xMessageBufferReceiveFromISR xMessageBufferReceiveFromISR - * \ingroup MessageBufferManagement - */ -#define xMessageBufferReceiveFromISR( xMessageBuffer, pvRxData, xBufferLengthBytes, pxHigherPriorityTaskWoken ) xStreamBufferReceiveFromISR( ( StreamBufferHandle_t ) xMessageBuffer, pvRxData, xBufferLengthBytes, pxHigherPriorityTaskWoken ) - -/** - * message_buffer.h - * -
-void vMessageBufferDelete( MessageBufferHandle_t xMessageBuffer );
-
- * - * Deletes a message buffer that was previously created using a call to - * xMessageBufferCreate() or xMessageBufferCreateStatic(). If the message - * buffer was created using dynamic memory (that is, by xMessageBufferCreate()), - * then the allocated memory is freed. - * - * A message buffer handle must not be used after the message buffer has been - * deleted. - * - * @param xMessageBuffer The handle of the message buffer to be deleted. - * - */ -#define vMessageBufferDelete( xMessageBuffer ) vStreamBufferDelete( ( StreamBufferHandle_t ) xMessageBuffer ) - -/** - * message_buffer.h -
-BaseType_t xMessageBufferIsFull( MessageBufferHandle_t xMessageBuffer ) );
-
- * - * Tests to see if a message buffer is full. A message buffer is full if it - * cannot accept any more messages, of any size, until space is made available - * by a message being removed from the message buffer. - * - * @param xMessageBuffer The handle of the message buffer being queried. - * - * @return If the message buffer referenced by xMessageBuffer is full then - * pdTRUE is returned. Otherwise pdFALSE is returned. - */ -#define xMessageBufferIsFull( xMessageBuffer ) xStreamBufferIsFull( ( StreamBufferHandle_t ) xMessageBuffer ) - -/** - * message_buffer.h -
-BaseType_t xMessageBufferIsEmpty( MessageBufferHandle_t xMessageBuffer ) );
-
- * - * Tests to see if a message buffer is empty (does not contain any messages). - * - * @param xMessageBuffer The handle of the message buffer being queried. - * - * @return If the message buffer referenced by xMessageBuffer is empty then - * pdTRUE is returned. Otherwise pdFALSE is returned. - * - */ -#define xMessageBufferIsEmpty( xMessageBuffer ) xStreamBufferIsEmpty( ( StreamBufferHandle_t ) xMessageBuffer ) - -/** - * message_buffer.h -
-BaseType_t xMessageBufferReset( MessageBufferHandle_t xMessageBuffer );
-
- * - * Resets a message buffer to its initial empty state, discarding any message it - * contained. - * - * A message buffer can only be reset if there are no tasks blocked on it. - * - * @param xMessageBuffer The handle of the message buffer being reset. - * - * @return If the message buffer was reset then pdPASS is returned. If the - * message buffer could not be reset because either there was a task blocked on - * the message queue to wait for space to become available, or to wait for a - * a message to be available, then pdFAIL is returned. - * - * \defgroup xMessageBufferReset xMessageBufferReset - * \ingroup MessageBufferManagement - */ -#define xMessageBufferReset( xMessageBuffer ) xStreamBufferReset( ( StreamBufferHandle_t ) xMessageBuffer ) - - -/** - * message_buffer.h -
-size_t xMessageBufferSpaceAvailable( MessageBufferHandle_t xMessageBuffer ) );
-
- * Returns the number of bytes of free space in the message buffer. - * - * @param xMessageBuffer The handle of the message buffer being queried. - * - * @return The number of bytes that can be written to the message buffer before - * the message buffer would be full. When a message is written to the message - * buffer an additional sizeof( size_t ) bytes are also written to store the - * message's length. sizeof( size_t ) is typically 4 bytes on a 32-bit - * architecture, so if xMessageBufferSpacesAvailable() returns 10, then the size - * of the largest message that can be written to the message buffer is 6 bytes. - * - * \defgroup xMessageBufferSpaceAvailable xMessageBufferSpaceAvailable - * \ingroup MessageBufferManagement - */ -#define xMessageBufferSpaceAvailable( xMessageBuffer ) xStreamBufferSpacesAvailable( ( StreamBufferHandle_t ) xMessageBuffer ) -#define xMessageBufferSpacesAvailable( xMessageBuffer ) xStreamBufferSpacesAvailable( ( StreamBufferHandle_t ) xMessageBuffer ) /* Corrects typo in original macro name. */ - -/** - * message_buffer.h -
- size_t xMessageBufferNextLengthBytes( MessageBufferHandle_t xMessageBuffer ) );
- 
- * Returns the length (in bytes) of the next message in a message buffer. - * Useful if xMessageBufferReceive() returned 0 because the size of the buffer - * passed into xMessageBufferReceive() was too small to hold the next message. - * - * @param xMessageBuffer The handle of the message buffer being queried. - * - * @return The length (in bytes) of the next message in the message buffer, or 0 - * if the message buffer is empty. - * - * \defgroup xMessageBufferNextLengthBytes xMessageBufferNextLengthBytes - * \ingroup MessageBufferManagement - */ -#define xMessageBufferNextLengthBytes( xMessageBuffer ) xStreamBufferNextMessageLengthBytes( ( StreamBufferHandle_t ) xMessageBuffer ) PRIVILEGED_FUNCTION; - -/** - * message_buffer.h - * -
-BaseType_t xMessageBufferSendCompletedFromISR( MessageBufferHandle_t xStreamBuffer, BaseType_t *pxHigherPriorityTaskWoken );
-
- * - * For advanced users only. - * - * The sbSEND_COMPLETED() macro is called from within the FreeRTOS APIs when - * data is sent to a message buffer or stream buffer. If there was a task that - * was blocked on the message or stream buffer waiting for data to arrive then - * the sbSEND_COMPLETED() macro sends a notification to the task to remove it - * from the Blocked state. xMessageBufferSendCompletedFromISR() does the same - * thing. It is provided to enable application writers to implement their own - * version of sbSEND_COMPLETED(), and MUST NOT BE USED AT ANY OTHER TIME. - * - * See the example implemented in FreeRTOS/Demo/Minimal/MessageBufferAMP.c for - * additional information. - * - * @param xStreamBuffer The handle of the stream buffer to which data was - * written. - * - * @param pxHigherPriorityTaskWoken *pxHigherPriorityTaskWoken should be - * initialised to pdFALSE before it is passed into - * xMessageBufferSendCompletedFromISR(). If calling - * xMessageBufferSendCompletedFromISR() removes a task from the Blocked state, - * and the task has a priority above the priority of the currently running task, - * then *pxHigherPriorityTaskWoken will get set to pdTRUE indicating that a - * context switch should be performed before exiting the ISR. - * - * @return If a task was removed from the Blocked state then pdTRUE is returned. - * Otherwise pdFALSE is returned. - * - * \defgroup xMessageBufferSendCompletedFromISR xMessageBufferSendCompletedFromISR - * \ingroup StreamBufferManagement - */ -#define xMessageBufferSendCompletedFromISR( xMessageBuffer, pxHigherPriorityTaskWoken ) xStreamBufferSendCompletedFromISR( ( StreamBufferHandle_t ) xMessageBuffer, pxHigherPriorityTaskWoken ) - -/** - * message_buffer.h - * -
-BaseType_t xMessageBufferReceiveCompletedFromISR( MessageBufferHandle_t xStreamBuffer, BaseType_t *pxHigherPriorityTaskWoken );
-
- * - * For advanced users only. - * - * The sbRECEIVE_COMPLETED() macro is called from within the FreeRTOS APIs when - * data is read out of a message buffer or stream buffer. If there was a task - * that was blocked on the message or stream buffer waiting for data to arrive - * then the sbRECEIVE_COMPLETED() macro sends a notification to the task to - * remove it from the Blocked state. xMessageBufferReceiveCompletedFromISR() - * does the same thing. It is provided to enable application writers to - * implement their own version of sbRECEIVE_COMPLETED(), and MUST NOT BE USED AT - * ANY OTHER TIME. - * - * See the example implemented in FreeRTOS/Demo/Minimal/MessageBufferAMP.c for - * additional information. - * - * @param xStreamBuffer The handle of the stream buffer from which data was - * read. - * - * @param pxHigherPriorityTaskWoken *pxHigherPriorityTaskWoken should be - * initialised to pdFALSE before it is passed into - * xMessageBufferReceiveCompletedFromISR(). If calling - * xMessageBufferReceiveCompletedFromISR() removes a task from the Blocked state, - * and the task has a priority above the priority of the currently running task, - * then *pxHigherPriorityTaskWoken will get set to pdTRUE indicating that a - * context switch should be performed before exiting the ISR. - * - * @return If a task was removed from the Blocked state then pdTRUE is returned. - * Otherwise pdFALSE is returned. - * - * \defgroup xMessageBufferReceiveCompletedFromISR xMessageBufferReceiveCompletedFromISR - * \ingroup StreamBufferManagement - */ -#define xMessageBufferReceiveCompletedFromISR( xMessageBuffer, pxHigherPriorityTaskWoken ) xStreamBufferReceiveCompletedFromISR( ( StreamBufferHandle_t ) xMessageBuffer, pxHigherPriorityTaskWoken ) - -#if defined( __cplusplus ) -} /* extern "C" */ -#endif - -#endif /* !defined( FREERTOS_MESSAGE_BUFFER_H ) */ diff --git a/rtos/freertos/abstraction_layer_freertos/include/mpu_prototypes.h b/rtos/freertos/abstraction_layer_freertos/include/mpu_prototypes.h deleted file mode 100644 index ca876326..00000000 --- a/rtos/freertos/abstraction_layer_freertos/include/mpu_prototypes.h +++ /dev/null @@ -1,160 +0,0 @@ -/* - * FreeRTOS Kernel V10.3.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. - * - * Permission is hereby granted, free of charge, to any person obtaining a copy of - * this software and associated documentation files (the "Software"), to deal in - * the Software without restriction, including without limitation the rights to - * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of - * the Software, and to permit persons to whom the Software is furnished to do so, - * subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS - * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR - * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER - * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - * - * http://www.FreeRTOS.org - * http://aws.amazon.com/freertos - * - * 1 tab == 4 spaces! - */ - -/* - * When the MPU is used the standard (non MPU) API functions are mapped to - * equivalents that start "MPU_", the prototypes for which are defined in this - * header files. This will cause the application code to call the MPU_ version - * which wraps the non-MPU version with privilege promoting then demoting code, - * so the kernel code always runs will full privileges. - */ - - -#ifndef MPU_PROTOTYPES_H -#define MPU_PROTOTYPES_H - -/* MPU versions of tasks.h API functions. */ -BaseType_t MPU_xTaskCreate( TaskFunction_t pxTaskCode, const char * const pcName, const uint16_t usStackDepth, void * const pvParameters, UBaseType_t uxPriority, TaskHandle_t * const pxCreatedTask ) FREERTOS_SYSTEM_CALL; -TaskHandle_t MPU_xTaskCreateStatic( TaskFunction_t pxTaskCode, const char * const pcName, const uint32_t ulStackDepth, void * const pvParameters, UBaseType_t uxPriority, StackType_t * const puxStackBuffer, StaticTask_t * const pxTaskBuffer ) FREERTOS_SYSTEM_CALL; -BaseType_t MPU_xTaskCreateRestricted( const TaskParameters_t * const pxTaskDefinition, TaskHandle_t *pxCreatedTask ) FREERTOS_SYSTEM_CALL; -BaseType_t MPU_xTaskCreateRestrictedStatic( const TaskParameters_t * const pxTaskDefinition, TaskHandle_t *pxCreatedTask ) FREERTOS_SYSTEM_CALL; -void MPU_vTaskAllocateMPURegions( TaskHandle_t xTask, const MemoryRegion_t * const pxRegions ) FREERTOS_SYSTEM_CALL; -void MPU_vTaskDelete( TaskHandle_t xTaskToDelete ) FREERTOS_SYSTEM_CALL; -void MPU_vTaskDelay( const TickType_t xTicksToDelay ) FREERTOS_SYSTEM_CALL; -void MPU_vTaskDelayUntil( TickType_t * const pxPreviousWakeTime, const TickType_t xTimeIncrement ) FREERTOS_SYSTEM_CALL; -BaseType_t MPU_xTaskAbortDelay( TaskHandle_t xTask ) FREERTOS_SYSTEM_CALL; -UBaseType_t MPU_uxTaskPriorityGet( const TaskHandle_t xTask ) FREERTOS_SYSTEM_CALL; -eTaskState MPU_eTaskGetState( TaskHandle_t xTask ) FREERTOS_SYSTEM_CALL; -void MPU_vTaskGetInfo( TaskHandle_t xTask, TaskStatus_t *pxTaskStatus, BaseType_t xGetFreeStackSpace, eTaskState eState ) FREERTOS_SYSTEM_CALL; -void MPU_vTaskPrioritySet( TaskHandle_t xTask, UBaseType_t uxNewPriority ) FREERTOS_SYSTEM_CALL; -void MPU_vTaskSuspend( TaskHandle_t xTaskToSuspend ) FREERTOS_SYSTEM_CALL; -void MPU_vTaskResume( TaskHandle_t xTaskToResume ) FREERTOS_SYSTEM_CALL; -void MPU_vTaskStartScheduler( void ) FREERTOS_SYSTEM_CALL; -void MPU_vTaskSuspendAll( void ) FREERTOS_SYSTEM_CALL; -BaseType_t MPU_xTaskResumeAll( void ) FREERTOS_SYSTEM_CALL; -TickType_t MPU_xTaskGetTickCount( void ) FREERTOS_SYSTEM_CALL; -UBaseType_t MPU_uxTaskGetNumberOfTasks( void ) FREERTOS_SYSTEM_CALL; -char * MPU_pcTaskGetName( TaskHandle_t xTaskToQuery ) FREERTOS_SYSTEM_CALL; -TaskHandle_t MPU_xTaskGetHandle( const char *pcNameToQuery ) FREERTOS_SYSTEM_CALL; -UBaseType_t MPU_uxTaskGetStackHighWaterMark( TaskHandle_t xTask ) FREERTOS_SYSTEM_CALL; -configSTACK_DEPTH_TYPE MPU_uxTaskGetStackHighWaterMark2( TaskHandle_t xTask ) FREERTOS_SYSTEM_CALL; -void MPU_vTaskSetApplicationTaskTag( TaskHandle_t xTask, TaskHookFunction_t pxHookFunction ) FREERTOS_SYSTEM_CALL; -TaskHookFunction_t MPU_xTaskGetApplicationTaskTag( TaskHandle_t xTask ) FREERTOS_SYSTEM_CALL; -void MPU_vTaskSetThreadLocalStoragePointer( TaskHandle_t xTaskToSet, BaseType_t xIndex, void *pvValue ) FREERTOS_SYSTEM_CALL; -void * MPU_pvTaskGetThreadLocalStoragePointer( TaskHandle_t xTaskToQuery, BaseType_t xIndex ) FREERTOS_SYSTEM_CALL; -BaseType_t MPU_xTaskCallApplicationTaskHook( TaskHandle_t xTask, void *pvParameter ) FREERTOS_SYSTEM_CALL; -TaskHandle_t MPU_xTaskGetIdleTaskHandle( void ) FREERTOS_SYSTEM_CALL; -UBaseType_t MPU_uxTaskGetSystemState( TaskStatus_t * const pxTaskStatusArray, const UBaseType_t uxArraySize, uint32_t * const pulTotalRunTime ) FREERTOS_SYSTEM_CALL; -uint32_t MPU_ulTaskGetIdleRunTimeCounter( void ) FREERTOS_SYSTEM_CALL; -void MPU_vTaskList( char * pcWriteBuffer ) FREERTOS_SYSTEM_CALL; -void MPU_vTaskGetRunTimeStats( char *pcWriteBuffer ) FREERTOS_SYSTEM_CALL; -BaseType_t MPU_xTaskGenericNotify( TaskHandle_t xTaskToNotify, uint32_t ulValue, eNotifyAction eAction, uint32_t *pulPreviousNotificationValue ) FREERTOS_SYSTEM_CALL; -BaseType_t MPU_xTaskNotifyWait( uint32_t ulBitsToClearOnEntry, uint32_t ulBitsToClearOnExit, uint32_t *pulNotificationValue, TickType_t xTicksToWait ) FREERTOS_SYSTEM_CALL; -uint32_t MPU_ulTaskNotifyTake( BaseType_t xClearCountOnExit, TickType_t xTicksToWait ) FREERTOS_SYSTEM_CALL; -BaseType_t MPU_xTaskNotifyStateClear( TaskHandle_t xTask ) FREERTOS_SYSTEM_CALL; -uint32_t MPU_ulTaskNotifyValueClear( TaskHandle_t xTask, uint32_t ulBitsToClear ) FREERTOS_SYSTEM_CALL; -BaseType_t MPU_xTaskIncrementTick( void ) FREERTOS_SYSTEM_CALL; -TaskHandle_t MPU_xTaskGetCurrentTaskHandle( void ) FREERTOS_SYSTEM_CALL; -void MPU_vTaskSetTimeOutState( TimeOut_t * const pxTimeOut ) FREERTOS_SYSTEM_CALL; -BaseType_t MPU_xTaskCheckForTimeOut( TimeOut_t * const pxTimeOut, TickType_t * const pxTicksToWait ) FREERTOS_SYSTEM_CALL; -void MPU_vTaskMissedYield( void ) FREERTOS_SYSTEM_CALL; -BaseType_t MPU_xTaskGetSchedulerState( void ) FREERTOS_SYSTEM_CALL; -BaseType_t MPU_xTaskCatchUpTicks( TickType_t xTicksToCatchUp ) FREERTOS_SYSTEM_CALL; - -/* MPU versions of queue.h API functions. */ -BaseType_t MPU_xQueueGenericSend( QueueHandle_t xQueue, const void * const pvItemToQueue, TickType_t xTicksToWait, const BaseType_t xCopyPosition ) FREERTOS_SYSTEM_CALL; -BaseType_t MPU_xQueueReceive( QueueHandle_t xQueue, void * const pvBuffer, TickType_t xTicksToWait ) FREERTOS_SYSTEM_CALL; -BaseType_t MPU_xQueuePeek( QueueHandle_t xQueue, void * const pvBuffer, TickType_t xTicksToWait ) FREERTOS_SYSTEM_CALL; -BaseType_t MPU_xQueueSemaphoreTake( QueueHandle_t xQueue, TickType_t xTicksToWait ) FREERTOS_SYSTEM_CALL; -UBaseType_t MPU_uxQueueMessagesWaiting( const QueueHandle_t xQueue ) FREERTOS_SYSTEM_CALL; -UBaseType_t MPU_uxQueueSpacesAvailable( const QueueHandle_t xQueue ) FREERTOS_SYSTEM_CALL; -void MPU_vQueueDelete( QueueHandle_t xQueue ) FREERTOS_SYSTEM_CALL; -QueueHandle_t MPU_xQueueCreateMutex( const uint8_t ucQueueType ) FREERTOS_SYSTEM_CALL; -QueueHandle_t MPU_xQueueCreateMutexStatic( const uint8_t ucQueueType, StaticQueue_t *pxStaticQueue ) FREERTOS_SYSTEM_CALL; -QueueHandle_t MPU_xQueueCreateCountingSemaphore( const UBaseType_t uxMaxCount, const UBaseType_t uxInitialCount ) FREERTOS_SYSTEM_CALL; -QueueHandle_t MPU_xQueueCreateCountingSemaphoreStatic( const UBaseType_t uxMaxCount, const UBaseType_t uxInitialCount, StaticQueue_t *pxStaticQueue ) FREERTOS_SYSTEM_CALL; -TaskHandle_t MPU_xQueueGetMutexHolder( QueueHandle_t xSemaphore ) FREERTOS_SYSTEM_CALL; -BaseType_t MPU_xQueueTakeMutexRecursive( QueueHandle_t xMutex, TickType_t xTicksToWait ) FREERTOS_SYSTEM_CALL; -BaseType_t MPU_xQueueGiveMutexRecursive( QueueHandle_t pxMutex ) FREERTOS_SYSTEM_CALL; -void MPU_vQueueAddToRegistry( QueueHandle_t xQueue, const char *pcName ) FREERTOS_SYSTEM_CALL; -void MPU_vQueueUnregisterQueue( QueueHandle_t xQueue ) FREERTOS_SYSTEM_CALL; -const char * MPU_pcQueueGetName( QueueHandle_t xQueue ) FREERTOS_SYSTEM_CALL; -QueueHandle_t MPU_xQueueGenericCreate( const UBaseType_t uxQueueLength, const UBaseType_t uxItemSize, const uint8_t ucQueueType ) FREERTOS_SYSTEM_CALL; -QueueHandle_t MPU_xQueueGenericCreateStatic( const UBaseType_t uxQueueLength, const UBaseType_t uxItemSize, uint8_t *pucQueueStorage, StaticQueue_t *pxStaticQueue, const uint8_t ucQueueType ) FREERTOS_SYSTEM_CALL; -QueueSetHandle_t MPU_xQueueCreateSet( const UBaseType_t uxEventQueueLength ) FREERTOS_SYSTEM_CALL; -BaseType_t MPU_xQueueAddToSet( QueueSetMemberHandle_t xQueueOrSemaphore, QueueSetHandle_t xQueueSet ) FREERTOS_SYSTEM_CALL; -BaseType_t MPU_xQueueRemoveFromSet( QueueSetMemberHandle_t xQueueOrSemaphore, QueueSetHandle_t xQueueSet ) FREERTOS_SYSTEM_CALL; -QueueSetMemberHandle_t MPU_xQueueSelectFromSet( QueueSetHandle_t xQueueSet, const TickType_t xTicksToWait ) FREERTOS_SYSTEM_CALL; -BaseType_t MPU_xQueueGenericReset( QueueHandle_t xQueue, BaseType_t xNewQueue ) FREERTOS_SYSTEM_CALL; -void MPU_vQueueSetQueueNumber( QueueHandle_t xQueue, UBaseType_t uxQueueNumber ) FREERTOS_SYSTEM_CALL; -UBaseType_t MPU_uxQueueGetQueueNumber( QueueHandle_t xQueue ) FREERTOS_SYSTEM_CALL; -uint8_t MPU_ucQueueGetQueueType( QueueHandle_t xQueue ) FREERTOS_SYSTEM_CALL; - -/* MPU versions of timers.h API functions. */ -TimerHandle_t MPU_xTimerCreate( const char * const pcTimerName, const TickType_t xTimerPeriodInTicks, const UBaseType_t uxAutoReload, void * const pvTimerID, TimerCallbackFunction_t pxCallbackFunction ) FREERTOS_SYSTEM_CALL; -TimerHandle_t MPU_xTimerCreateStatic( const char * const pcTimerName, const TickType_t xTimerPeriodInTicks, const UBaseType_t uxAutoReload, void * const pvTimerID, TimerCallbackFunction_t pxCallbackFunction, StaticTimer_t *pxTimerBuffer ) FREERTOS_SYSTEM_CALL; -void * MPU_pvTimerGetTimerID( const TimerHandle_t xTimer ) FREERTOS_SYSTEM_CALL; -void MPU_vTimerSetTimerID( TimerHandle_t xTimer, void *pvNewID ) FREERTOS_SYSTEM_CALL; -BaseType_t MPU_xTimerIsTimerActive( TimerHandle_t xTimer ) FREERTOS_SYSTEM_CALL; -TaskHandle_t MPU_xTimerGetTimerDaemonTaskHandle( void ) FREERTOS_SYSTEM_CALL; -BaseType_t MPU_xTimerPendFunctionCall( PendedFunction_t xFunctionToPend, void *pvParameter1, uint32_t ulParameter2, TickType_t xTicksToWait ) FREERTOS_SYSTEM_CALL; -const char * MPU_pcTimerGetName( TimerHandle_t xTimer ) FREERTOS_SYSTEM_CALL; -void MPU_vTimerSetReloadMode( TimerHandle_t xTimer, const UBaseType_t uxAutoReload ) FREERTOS_SYSTEM_CALL; -UBaseType_t MPU_uxTimerGetReloadMode( TimerHandle_t xTimer ) FREERTOS_SYSTEM_CALL; -TickType_t MPU_xTimerGetPeriod( TimerHandle_t xTimer ) FREERTOS_SYSTEM_CALL; -TickType_t MPU_xTimerGetExpiryTime( TimerHandle_t xTimer ) FREERTOS_SYSTEM_CALL; -BaseType_t MPU_xTimerCreateTimerTask( void ) FREERTOS_SYSTEM_CALL; -BaseType_t MPU_xTimerGenericCommand( TimerHandle_t xTimer, const BaseType_t xCommandID, const TickType_t xOptionalValue, BaseType_t * const pxHigherPriorityTaskWoken, const TickType_t xTicksToWait ) FREERTOS_SYSTEM_CALL; - -/* MPU versions of event_group.h API functions. */ -EventGroupHandle_t MPU_xEventGroupCreate( void ) FREERTOS_SYSTEM_CALL; -EventGroupHandle_t MPU_xEventGroupCreateStatic( StaticEventGroup_t *pxEventGroupBuffer ) FREERTOS_SYSTEM_CALL; -EventBits_t MPU_xEventGroupWaitBits( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToWaitFor, const BaseType_t xClearOnExit, const BaseType_t xWaitForAllBits, TickType_t xTicksToWait ) FREERTOS_SYSTEM_CALL; -EventBits_t MPU_xEventGroupClearBits( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToClear ) FREERTOS_SYSTEM_CALL; -EventBits_t MPU_xEventGroupSetBits( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToSet ) FREERTOS_SYSTEM_CALL; -EventBits_t MPU_xEventGroupSync( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToSet, const EventBits_t uxBitsToWaitFor, TickType_t xTicksToWait ) FREERTOS_SYSTEM_CALL; -void MPU_vEventGroupDelete( EventGroupHandle_t xEventGroup ) FREERTOS_SYSTEM_CALL; -UBaseType_t MPU_uxEventGroupGetNumber( void* xEventGroup ) FREERTOS_SYSTEM_CALL; - -/* MPU versions of message/stream_buffer.h API functions. */ -size_t MPU_xStreamBufferSend( StreamBufferHandle_t xStreamBuffer, const void *pvTxData, size_t xDataLengthBytes, TickType_t xTicksToWait ) FREERTOS_SYSTEM_CALL; -size_t MPU_xStreamBufferReceive( StreamBufferHandle_t xStreamBuffer, void *pvRxData, size_t xBufferLengthBytes, TickType_t xTicksToWait ) FREERTOS_SYSTEM_CALL; -size_t MPU_xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) FREERTOS_SYSTEM_CALL; -void MPU_vStreamBufferDelete( StreamBufferHandle_t xStreamBuffer ) FREERTOS_SYSTEM_CALL; -BaseType_t MPU_xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) FREERTOS_SYSTEM_CALL; -BaseType_t MPU_xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) FREERTOS_SYSTEM_CALL; -BaseType_t MPU_xStreamBufferReset( StreamBufferHandle_t xStreamBuffer ) FREERTOS_SYSTEM_CALL; -size_t MPU_xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) FREERTOS_SYSTEM_CALL; -size_t MPU_xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) FREERTOS_SYSTEM_CALL; -BaseType_t MPU_xStreamBufferSetTriggerLevel( StreamBufferHandle_t xStreamBuffer, size_t xTriggerLevel ) FREERTOS_SYSTEM_CALL; -StreamBufferHandle_t MPU_xStreamBufferGenericCreate( size_t xBufferSizeBytes, size_t xTriggerLevelBytes, BaseType_t xIsMessageBuffer ) FREERTOS_SYSTEM_CALL; -StreamBufferHandle_t MPU_xStreamBufferGenericCreateStatic( size_t xBufferSizeBytes, size_t xTriggerLevelBytes, BaseType_t xIsMessageBuffer, uint8_t * const pucStreamBufferStorageArea, StaticStreamBuffer_t * const pxStaticStreamBuffer ) FREERTOS_SYSTEM_CALL; - - - -#endif /* MPU_PROTOTYPES_H */ - diff --git a/rtos/freertos/abstraction_layer_freertos/include/mpu_wrappers.h b/rtos/freertos/abstraction_layer_freertos/include/mpu_wrappers.h deleted file mode 100644 index 55a0ba33..00000000 --- a/rtos/freertos/abstraction_layer_freertos/include/mpu_wrappers.h +++ /dev/null @@ -1,189 +0,0 @@ -/* - * FreeRTOS Kernel V10.3.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. - * - * Permission is hereby granted, free of charge, to any person obtaining a copy of - * this software and associated documentation files (the "Software"), to deal in - * the Software without restriction, including without limitation the rights to - * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of - * the Software, and to permit persons to whom the Software is furnished to do so, - * subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS - * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR - * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER - * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - * - * http://www.FreeRTOS.org - * http://aws.amazon.com/freertos - * - * 1 tab == 4 spaces! - */ - -#ifndef MPU_WRAPPERS_H -#define MPU_WRAPPERS_H - -/* This file redefines API functions to be called through a wrapper macro, but -only for ports that are using the MPU. */ -#ifdef portUSING_MPU_WRAPPERS - - /* MPU_WRAPPERS_INCLUDED_FROM_API_FILE will be defined when this file is - included from queue.c or task.c to prevent it from having an effect within - those files. */ - #ifndef MPU_WRAPPERS_INCLUDED_FROM_API_FILE - - /* - * Map standard (non MPU) API functions to equivalents that start - * "MPU_". This will cause the application code to call the MPU_ - * version, which wraps the non-MPU version with privilege promoting - * then demoting code, so the kernel code always runs will full - * privileges. - */ - - /* Map standard tasks.h API functions to the MPU equivalents. */ - #define xTaskCreate MPU_xTaskCreate - #define xTaskCreateStatic MPU_xTaskCreateStatic - #define xTaskCreateRestricted MPU_xTaskCreateRestricted - #define vTaskAllocateMPURegions MPU_vTaskAllocateMPURegions - #define vTaskDelete MPU_vTaskDelete - #define vTaskDelay MPU_vTaskDelay - #define vTaskDelayUntil MPU_vTaskDelayUntil - #define xTaskAbortDelay MPU_xTaskAbortDelay - #define uxTaskPriorityGet MPU_uxTaskPriorityGet - #define eTaskGetState MPU_eTaskGetState - #define vTaskGetInfo MPU_vTaskGetInfo - #define vTaskPrioritySet MPU_vTaskPrioritySet - #define vTaskSuspend MPU_vTaskSuspend - #define vTaskResume MPU_vTaskResume - #define vTaskSuspendAll MPU_vTaskSuspendAll - #define xTaskResumeAll MPU_xTaskResumeAll - #define xTaskGetTickCount MPU_xTaskGetTickCount - #define uxTaskGetNumberOfTasks MPU_uxTaskGetNumberOfTasks - #define pcTaskGetName MPU_pcTaskGetName - #define xTaskGetHandle MPU_xTaskGetHandle - #define uxTaskGetStackHighWaterMark MPU_uxTaskGetStackHighWaterMark - #define uxTaskGetStackHighWaterMark2 MPU_uxTaskGetStackHighWaterMark2 - #define vTaskSetApplicationTaskTag MPU_vTaskSetApplicationTaskTag - #define xTaskGetApplicationTaskTag MPU_xTaskGetApplicationTaskTag - #define vTaskSetThreadLocalStoragePointer MPU_vTaskSetThreadLocalStoragePointer - #define pvTaskGetThreadLocalStoragePointer MPU_pvTaskGetThreadLocalStoragePointer - #define xTaskCallApplicationTaskHook MPU_xTaskCallApplicationTaskHook - #define xTaskGetIdleTaskHandle MPU_xTaskGetIdleTaskHandle - #define uxTaskGetSystemState MPU_uxTaskGetSystemState - #define vTaskList MPU_vTaskList - #define vTaskGetRunTimeStats MPU_vTaskGetRunTimeStats - #define ulTaskGetIdleRunTimeCounter MPU_ulTaskGetIdleRunTimeCounter - #define xTaskGenericNotify MPU_xTaskGenericNotify - #define xTaskNotifyWait MPU_xTaskNotifyWait - #define ulTaskNotifyTake MPU_ulTaskNotifyTake - #define xTaskNotifyStateClear MPU_xTaskNotifyStateClear - #define ulTaskNotifyValueClear MPU_ulTaskNotifyValueClear - #define xTaskCatchUpTicks MPU_xTaskCatchUpTicks - - #define xTaskGetCurrentTaskHandle MPU_xTaskGetCurrentTaskHandle - #define vTaskSetTimeOutState MPU_vTaskSetTimeOutState - #define xTaskCheckForTimeOut MPU_xTaskCheckForTimeOut - #define xTaskGetSchedulerState MPU_xTaskGetSchedulerState - - /* Map standard queue.h API functions to the MPU equivalents. */ - #define xQueueGenericSend MPU_xQueueGenericSend - #define xQueueReceive MPU_xQueueReceive - #define xQueuePeek MPU_xQueuePeek - #define xQueueSemaphoreTake MPU_xQueueSemaphoreTake - #define uxQueueMessagesWaiting MPU_uxQueueMessagesWaiting - #define uxQueueSpacesAvailable MPU_uxQueueSpacesAvailable - #define vQueueDelete MPU_vQueueDelete - #define xQueueCreateMutex MPU_xQueueCreateMutex - #define xQueueCreateMutexStatic MPU_xQueueCreateMutexStatic - #define xQueueCreateCountingSemaphore MPU_xQueueCreateCountingSemaphore - #define xQueueCreateCountingSemaphoreStatic MPU_xQueueCreateCountingSemaphoreStatic - #define xQueueGetMutexHolder MPU_xQueueGetMutexHolder - #define xQueueTakeMutexRecursive MPU_xQueueTakeMutexRecursive - #define xQueueGiveMutexRecursive MPU_xQueueGiveMutexRecursive - #define xQueueGenericCreate MPU_xQueueGenericCreate - #define xQueueGenericCreateStatic MPU_xQueueGenericCreateStatic - #define xQueueCreateSet MPU_xQueueCreateSet - #define xQueueAddToSet MPU_xQueueAddToSet - #define xQueueRemoveFromSet MPU_xQueueRemoveFromSet - #define xQueueSelectFromSet MPU_xQueueSelectFromSet - #define xQueueGenericReset MPU_xQueueGenericReset - - #if( configQUEUE_REGISTRY_SIZE > 0 ) - #define vQueueAddToRegistry MPU_vQueueAddToRegistry - #define vQueueUnregisterQueue MPU_vQueueUnregisterQueue - #define pcQueueGetName MPU_pcQueueGetName - #endif - - /* Map standard timer.h API functions to the MPU equivalents. */ - #define xTimerCreate MPU_xTimerCreate - #define xTimerCreateStatic MPU_xTimerCreateStatic - #define pvTimerGetTimerID MPU_pvTimerGetTimerID - #define vTimerSetTimerID MPU_vTimerSetTimerID - #define xTimerIsTimerActive MPU_xTimerIsTimerActive - #define xTimerGetTimerDaemonTaskHandle MPU_xTimerGetTimerDaemonTaskHandle - #define xTimerPendFunctionCall MPU_xTimerPendFunctionCall - #define pcTimerGetName MPU_pcTimerGetName - #define vTimerSetReloadMode MPU_vTimerSetReloadMode - #define uxTimerGetReloadMode MPU_uxTimerGetReloadMode - #define xTimerGetPeriod MPU_xTimerGetPeriod - #define xTimerGetExpiryTime MPU_xTimerGetExpiryTime - #define xTimerGenericCommand MPU_xTimerGenericCommand - - /* Map standard event_group.h API functions to the MPU equivalents. */ - #define xEventGroupCreate MPU_xEventGroupCreate - #define xEventGroupCreateStatic MPU_xEventGroupCreateStatic - #define xEventGroupWaitBits MPU_xEventGroupWaitBits - #define xEventGroupClearBits MPU_xEventGroupClearBits - #define xEventGroupSetBits MPU_xEventGroupSetBits - #define xEventGroupSync MPU_xEventGroupSync - #define vEventGroupDelete MPU_vEventGroupDelete - - /* Map standard message/stream_buffer.h API functions to the MPU - equivalents. */ - #define xStreamBufferSend MPU_xStreamBufferSend - #define xStreamBufferReceive MPU_xStreamBufferReceive - #define xStreamBufferNextMessageLengthBytes MPU_xStreamBufferNextMessageLengthBytes - #define vStreamBufferDelete MPU_vStreamBufferDelete - #define xStreamBufferIsFull MPU_xStreamBufferIsFull - #define xStreamBufferIsEmpty MPU_xStreamBufferIsEmpty - #define xStreamBufferReset MPU_xStreamBufferReset - #define xStreamBufferSpacesAvailable MPU_xStreamBufferSpacesAvailable - #define xStreamBufferBytesAvailable MPU_xStreamBufferBytesAvailable - #define xStreamBufferSetTriggerLevel MPU_xStreamBufferSetTriggerLevel - #define xStreamBufferGenericCreate MPU_xStreamBufferGenericCreate - #define xStreamBufferGenericCreateStatic MPU_xStreamBufferGenericCreateStatic - - - /* Remove the privileged function macro, but keep the PRIVILEGED_DATA - macro so applications can place data in privileged access sections - (useful when using statically allocated objects). */ - #define PRIVILEGED_FUNCTION - #define PRIVILEGED_DATA __attribute__((section("privileged_data"))) - #define FREERTOS_SYSTEM_CALL - - #else /* MPU_WRAPPERS_INCLUDED_FROM_API_FILE */ - - /* Ensure API functions go in the privileged execution section. */ - #define PRIVILEGED_FUNCTION __attribute__((section("privileged_functions"))) - #define PRIVILEGED_DATA __attribute__((section("privileged_data"))) - #define FREERTOS_SYSTEM_CALL __attribute__((section( "freertos_system_calls"))) - - #endif /* MPU_WRAPPERS_INCLUDED_FROM_API_FILE */ - -#else /* portUSING_MPU_WRAPPERS */ - - #define PRIVILEGED_FUNCTION - #define PRIVILEGED_DATA - #define FREERTOS_SYSTEM_CALL - #define portUSING_MPU_WRAPPERS 0 - -#endif /* portUSING_MPU_WRAPPERS */ - - -#endif /* MPU_WRAPPERS_H */ - diff --git a/rtos/freertos/abstraction_layer_freertos/include/os.h b/rtos/freertos/abstraction_layer_freertos/include/os.h deleted file mode 100644 index c9365c43..00000000 --- a/rtos/freertos/abstraction_layer_freertos/include/os.h +++ /dev/null @@ -1,261 +0,0 @@ -/* - * Copyright 2020 GreenWaves Technologies - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * SPDX-License-Identifier: Apache-2.0 - */ - -#ifndef __OS_H__ -#define __OS_H__ - -#include -#include - -#include -#include -#include - -#include "riscv.h" -#include "properties.h" -#include "pmsis_types.h" - - -static inline void pmsis_exit(int err) -{ - exit(err); -} - -static inline int pmsis_kickoff(void *arg) -{ - BaseType_t xTask; - TaskHandle_t xHandler0 = NULL; - - xTask = xTaskCreate(arg, "main", - ((unsigned short)configMINIMAL_STACK_SIZE), NULL, - tskIDLE_PRIORITY + 1, &xHandler0); - - if (xTask != pdPASS) { - printf("main is NULL !\n"); - pmsis_exit(-1); - } - - __enable_irq(); - - struct pmsis_event_kernel_wrap *wrap; - /* TODO: blocks everything because priority too high */ - /* TODO: spawn event loop for callbacks or use FreeRTOS callback api */ - /* pmsis_event_kernel_init(&wrap, pmsis_event_kernel_main); */ - /* pmsis_event_set_default_scheduler(wrap); */ - - /* TODO:handle case when uart is being used before initialized */ -#ifdef DEBUG - puts("pmsis_kickoff: starting scheduler\n"); -#endif - /* Start the kernel. From here on only tasks and interrupts will run. */ - vTaskStartScheduler(); - - /* should never return here */ - return 0; -} - -static inline void *pmsis_task_create(void (*entry)(void *), void *arg, - char *name, int priority) -{ - TaskHandle_t task_handle = NULL; - BaseType_t task_ret; - task_ret = xTaskCreate(entry, name, 2 * configMINIMAL_STACK_SIZE, arg, - tskIDLE_PRIORITY + 1 + priority, &task_handle); - if (task_ret != pdPASS) { - return NULL; - } else { - return task_handle; - } -} - -static inline void pmsis_task_suspend(void *task_handler) -{ - vTaskSuspend((TaskHandle_t)task_handler); -} - -static inline void pi_yield() -{ - taskYIELD(); -} - -static inline uint32_t disable_irq(void) -{ - hal_compiler_barrier(); - return __disable_irq(); -} - -static inline void restore_irq(uint32_t irq_enable) -{ - hal_compiler_barrier(); - __restore_irq(irq_enable); -} - -/* TODO: fix these functions, seems broken */ -static inline void __os_native_api_sem_take(void *sem_object) -{ - uint32_t irq = __disable_irq(); - if (__get_mcause() & MCAUSE_IRQ_Msk) { - /* This case should never happen ! */ - BaseType_t ret; - xSemaphoreTakeFromISR(sem_object, &ret); - } else { - xSemaphoreTake(sem_object, portMAX_DELAY); - } - __restore_irq(irq); -} - -static inline void __os_native_api_sem_give(void *sem_object) -{ - uint32_t irq = __disable_irq(); - if (__get_mcause() & MCAUSE_IRQ_Msk) { - BaseType_t ret; - xSemaphoreGiveFromISR(sem_object, &ret); - portYIELD_FROM_ISR(ret); - } else { - BaseType_t ret; - xSemaphoreGiveFromISR(sem_object, &ret); - } - __restore_irq(irq); -} - - -static inline int pi_sem_init(pi_sem_t *sem) -{ - hal_compiler_barrier(); - sem->sem_object = xSemaphoreCreateCounting(0xFFu, 0); - if (sem->sem_object == NULL) { - return -1; - } - sem->take = __os_native_api_sem_take; - sem->give = __os_native_api_sem_give; - return 0; -} - -static inline int pi_sem_deinit(pi_sem_t *sem) -{ - hal_compiler_barrier(); - if (sem->sem_object == NULL) { - return -1; - } - vSemaphoreDelete(sem->sem_object); - sem->take = NULL; - sem->give = NULL; - sem->sem_object = (void *)NULL; - return 0; -} - -static inline void pi_sem_take(pi_sem_t *sem) -{ - hal_compiler_barrier(); - sem->take(sem->sem_object); -} - -static inline void pi_sem_give(pi_sem_t *sem) -{ - sem->give(sem->sem_object); - hal_compiler_barrier(); -} - -static inline void pmsis_mutex_take(pmsis_mutex_t *mutex) -{ - hal_compiler_barrier(); - mutex->take(mutex->mutex_object); -} - -static inline void pmsis_mutex_release(pmsis_mutex_t *mutex) -{ - hal_compiler_barrier(); - mutex->release(mutex->mutex_object); - hal_compiler_barrier(); -} - -static inline void __os_native_api_mutex_lock(void *mutex_object) -{ - xSemaphoreTake(mutex_object, portMAX_DELAY); -} - -static inline void __os_native_api_mutex_release(void *mutex_object) -{ - uint32_t irq = __disable_irq(); - BaseType_t ret; - xSemaphoreGiveFromISR(mutex_object, &ret); - __restore_irq(irq); -} - -static inline int pmsis_mutex_init(pmsis_mutex_t *mutex) -{ - hal_compiler_barrier(); - mutex->mutex_object = xSemaphoreCreateBinary(); - if (mutex->mutex_object == NULL) { - return -1; - } - __os_native_api_mutex_release(mutex->mutex_object); - mutex->take = __os_native_api_mutex_lock; - mutex->release = __os_native_api_mutex_release; - return 0; -} - -static inline int pmsis_mutex_deinit(pmsis_mutex_t *mutex) -{ - hal_compiler_barrier(); - if (mutex->mutex_object == NULL) { - return -1; - } - vSemaphoreDelete(mutex->mutex_object); - mutex->take = NULL; - mutex->release = NULL; - mutex->mutex_object = (void *)NULL; - return 0; -} - -static inline void pmsis_spinlock_init(pmsis_spinlock_t *spinlock) -{ - hal_compiler_barrier(); - spinlock->lock = 0; -} - -static inline void pmsis_spinlock_take(pmsis_spinlock_t *spinlock) -{ - uint32_t irq_enabled = disable_irq(); - hal_compiler_barrier(); - spinlock->lock = 1; - hal_compiler_barrier(); - restore_irq(irq_enabled); -} - -static inline void pmsis_spinlock_release(pmsis_spinlock_t *spinlock) -{ - uint32_t irq_enabled = disable_irq(); - hal_compiler_barrier(); - spinlock->lock = 0; - hal_compiler_barrier(); - restore_irq(irq_enabled); -} - -static void pi_time_wait_us(int time_us) -{ - /* Wait less than 1 ms. */ - if (time_us < 1000) { - for (volatile int i = 0; i < time_us; i++) - ; - } else { - vTaskDelay(((uint32_t)time_us / 1000) / portTICK_PERIOD_MS); - } -} - -#endif /* __OS_H__ */ diff --git a/rtos/freertos/abstraction_layer_freertos/include/pi_errno.h b/rtos/freertos/abstraction_layer_freertos/include/pi_errno.h deleted file mode 100644 index 1e646bff..00000000 --- a/rtos/freertos/abstraction_layer_freertos/include/pi_errno.h +++ /dev/null @@ -1,53 +0,0 @@ -/* - * Copyright (C) 2019 GreenWaves Technologies - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -/* - * Created by Mathieu Barbe . - * on 12/21/2019. - */ - -#ifndef API_ERRNO_H -#define API_ERRNO_H - -#ifdef __cplusplus -extern "C" { -#endif - -typedef enum { - PI_OK = 0x00, /*!< indicating success (no error) */ - PI_FAIL = 0x01, /*!< Generic code indicating failure */ - - PI_ERR_INVALID_ARG = 0x02, /*!< Invalid argument */ - PI_ERR_INVALID_STATE = 0x03, /*!< Invalid state */ - PI_ERR_INVALID_SIZE = 0x04, /*!< Invalid size */ - PI_ERR_NOT_FOUND = 0x05, /*!< Requested resource not found */ - PI_ERR_NOT_SUPPORTED = 0x06, /*!< Operation or feature not supported */ - PI_ERR_TIMEOUT = 0x07, /*!< Operation timed out */ - PI_ERR_INVALID_CRC = 0x08, /*!< CRC or checksum was invalid */ - PI_ERR_INVALID_VERSION = 0x09, /*!< Version was invalid */ - PI_ERR_INVALID_APP = 0x0A, /*!< App binary is not compliant with GAP. */ - PI_ERR_INVALID_MAGIC_CODE = 0x0B, /*!< Magic code does not match. */ - - PI_ERR_I2C_NACK = 0x100, /*! I2C request ended with a NACK */ - - PI_ERR_NO_MEM = 0x200, /*!< Generic out of memory */ - PI_ERR_L2_NO_MEM = 0x201, /*!< L2 out of memory */ -} pi_err_t; - -#ifdef __cplusplus -} -#endif -#endif //API_ERRNO_H diff --git a/rtos/freertos/abstraction_layer_freertos/include/pinmux.h b/rtos/freertos/abstraction_layer_freertos/include/pinmux.h deleted file mode 100644 index c1f533c8..00000000 --- a/rtos/freertos/abstraction_layer_freertos/include/pinmux.h +++ /dev/null @@ -1,41 +0,0 @@ -/* - * Copyright (C) 2020 ETH Zurich and University of Bologna - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * SPDX-License-Identifier: Apache-2.0 - */ - -/* Driver to control and configure pad mux */ - -/* Author: Robert Balas (balasr@iis.ee.ethz.ch) */ - -#include - -#include "apb_soc.h" -#include "io.h" -#include "pulp_mem_map.h" - -#define PINMUX_FUNC_A 0 -#define PINMUX_FUNC_B 1 -#define PINMUX_FUNC_C 2 -#define PINMUX_FUNC_D 3 -/* This doesn't exist on PULP */ -#define PINMUX_FUNC_E 4 -#define PINMUX_FUNC_F 5 -#define PINMUX_FUNC_G 6 -#define PINMUX_FUNC_H 7 - -int pinmux_pin_set(int pin, uint32_t func); - -int pinmux_pin_get(int pin, uint32_t *func); diff --git a/rtos/freertos/abstraction_layer_freertos/include/pmsis_task.h b/rtos/freertos/abstraction_layer_freertos/include/pmsis_task.h deleted file mode 100644 index 12a6f6bb..00000000 --- a/rtos/freertos/abstraction_layer_freertos/include/pmsis_task.h +++ /dev/null @@ -1,169 +0,0 @@ -/* - * Copyright 2020 GreenWaves Technologies - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * SPDX-License-Identifier: Apache-2.0 - */ - -#ifndef __PMSIS_TASK_H__ -#define __PMSIS_TASK_H__ - -#include "pmsis_types.h" -#include "target.h" -#include "os.h" - -#include -#include - -/** - * \brief Prepare a blocking event task. - * - * This function initializes an instance of event task. - * A semaphore will be initialized. - * - * \param task Pointer to event task. - * - * \return task This function returns the event task initialized. - */ -pi_task_t *__pi_task_block(pi_task_t *task); - -/** - * \brief Prepare an event task with callback. - * - * This function initializes an instance of event task. - * This event task executes the callback given in argument. - * - * \param callback_task Pointer to event task. - * \param func Callback function. - * \param arg Callback function argument. - * - * \return task This function returns the event task initialized. - */ -pi_task_t *__pi_task_callback(pi_task_t *callback_task, void (*func)(void *), - void *arg); - -/** - * \brief Wait on an event task. - * - * This function allows to wait on an event task until the event occurs. - * - * \param task Pointer to event task. - */ -void __pi_task_wait_on(pi_task_t *task); - -/** - * \brief Push an event task. - * - * This function is used to push an event task to the event kernel. - * - * \param task Pointer to event task. - */ -void __pi_task_push(pi_task_t *task); - -/** - * \brief Delete an event task. - * - * This function removes an event task. - * It will delete the semaphore if it has been allocated. - * - * \param task Pointer to event task. - */ -void __pi_task_destroy(pi_task_t *task); - -static inline pi_task_t *pi_task_block(pi_task_t *task) -{ - return __pi_task_block(task); -} - -/** - * \brief Prepare a notification callback. - * - * This initializes a notification callback so that it is ready to be - * triggered. - * A notification callback can be used to trigger a function execution when - * a certain action occurs, e.g. an end of transfer. - * - * \param task Pointer to notification event. - * \param callback The callback which will be executed when the - * notification is triggered. - * \param arg The argument to the callback. - * - * \return task The notification event initialized. - * - * \note This structure is allocated by the caller and must be kept alive until - * the pi_task_wait_on returns. - * \note If the same notification is re-used several times, it must be - * reinitialized everytime by calling this function or another variant. - * \note A notification callback can not be used to block the caller execution - * with pi_task_wait_on. - */ -static inline pi_task_t *pi_task_callback(pi_task_t *task, - void (*callback)(void *), void *arg) -{ - return __pi_task_callback(task, callback, arg); -} - -/** - * \brief Wait until a notification event is triggered. - * - * This can be called to block the caller until the specified notification - * event (created with pi_task_block) has been triggered. - * - * \param task Pointer to notification event. - * - * \note The notification event is released just before returning from this call - * and must be reinitialized before it can be re-used. - */ -static inline void pi_task_wait_on(pi_task_t *task) -{ - __pi_task_wait_on(task); -} - -/** - * \brief Trigger a notification. - * - * This can be used to trigger the specified notification. If the notification - * is a callback, this will schedule the callback execution. If the notification - * is an event, this will trigger the event. - * - * \param task Pointer to notification event. - */ -static inline void pi_task_push(pi_task_t *task) -{ - __pi_task_push(task); -} - -static inline void pi_task_destroy(pi_task_t *task) -{ - __pi_task_destroy(task); -} - -void pi_task_release(pi_task_t *task); - -/** - * \brief Trigger a notification. - * - * This can be used to trigger the specified notification after the specified - * delay, given in micro-seconds. If the notification - * is a callback, this will schedule the callback execution. If the notification - * is an event, this will trigger the event. - * - * \param task Pointer to notification event. - * \param delay The number of micro-seconds after which the - * notification must be triggered. - */ -void pi_task_push_delayed_us(pi_task_t *task, uint32_t delay); - - -#endif /* __PMSIS_TASK_H__ */ diff --git a/rtos/freertos/abstraction_layer_freertos/include/pmsis_types.h b/rtos/freertos/abstraction_layer_freertos/include/pmsis_types.h deleted file mode 100644 index 6406f339..00000000 --- a/rtos/freertos/abstraction_layer_freertos/include/pmsis_types.h +++ /dev/null @@ -1,198 +0,0 @@ -/* - * Copyright (C) 2018 GreenWaves Technologies - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifndef __PMSIS_TYPES__H__ -#define __PMSIS_TYPES__H__ - -#include "inttypes.h" -#include "sys/types.h" - -/** - * @defgroup groupDrivers Drivers - */ - - -/// @cond IMPLEM - -/** - * @ingroup PMSIS_OS - */ - -/** - * @defgroup PMSISTypes PMSIS common types - */ - -/** - * @addtogroup PMSISTypes - * @{ - */ - -/**@{*/ - -struct pi_device; -struct pmsis_event_kernel_wrap; - -// device type placed at the top of conf -typedef enum { - PI_DEVICE_UNKWN_TYPE, - PI_DEVICE_CLUSTER_TYPE, - PI_DEVICE_HYPERBUS_TYPE, - PI_DEVICE_SPI_TYPE, - PI_DEVICE_CPI_TYPE, - PI_DEVICE_I2C_TYPE, - PI_DEVICE_GPIO_TYPE, - PI_DEVICE_PWM_TYPE -} pi_device_e; - -typedef struct pi_task pi_task_t; - -typedef void (* pi_callback_func_t)(void *arg); - -typedef struct spinlock { - int32_t *lock_ptr; // with test and set mask - int32_t *release_ptr; // standard pointer -} spinlock_t; - -typedef struct pi_device_config { - const char *name; // to open, FIXME: device tree - // initialize the device struct (api+ init data) using init_conf - int (*init)(struct pi_device *device); - const void *init_conf; -} pi_device_config_t; - -// device struct, it wont stay here -typedef struct pi_device { - struct pi_device_api *api; // function pointers - void *config; // driver conf: might be filled either using device tree or manually - void *data; // driver data -} pi_device_t; - - -typedef uint32_t (*device_rw_func)(struct pi_device *device, uintptr_t size, - const void *addr, const void *buffer); - -typedef uint32_t (*device_ioctl_func)(struct pi_device *device, - uint32_t func_id, - void *arg); - -typedef uint32_t (*device_rw_func_async)(struct pi_device *device, - uintptr_t size, const void *addr, const void *buffer, pi_task_t *async); - -typedef uint32_t (*device_ioctl_func_async)(struct pi_device *device, - uint32_t func_id, void *arg, pi_task_t *async); - -typedef int (*open_func)(struct pi_device *device); -typedef int (*close_func)(struct pi_device *device); - -typedef int (*open_func_async)(struct pi_device *device, - pi_task_t *async); -typedef int (*close_func_async)(struct pi_device *device, pi_task_t *async); - -// pmsis device minimal api: used for basic inheritance -typedef struct pi_device_api -{ - int (*open)(struct pi_device *device); - int (*close)(struct pi_device *device); - int (*open_async)(struct pi_device *device, pi_task_t *async); - int (*close_async)(struct pi_device *device, pi_task_t *async); - ssize_t (*read)(struct pi_device *device, uint32_t ext_addr, - void *buffer, uint32_t size, pi_task_t *async); - ssize_t (*write)(struct pi_device *device, uint32_t ext_addr, - const void *buffer, uint32_t size, pi_task_t *async); - int (*ioctl)(struct pi_device *device, uint32_t func_id, void *arg); - int (*ioctl_async)(struct pi_device *device, uint32_t func_id, - void *arg, pi_task_t *async); - void *specific_api; -} pi_device_api_t; - -#ifndef IMPLEM_MUTEX_OBJECT_TYPE -#define IMPLEM_MUTEX_OBJECT_TYPE void *mutex_object; -#endif - -/** Memory slab allocator */ -typedef struct pi_mem_slab pi_mem_slab_t; - -/** Task types **/ -typedef void (*__pmsis_mutex_func)(void *mutex_object); - -typedef struct pmsis_mutex { - IMPLEM_MUTEX_OBJECT_TYPE - __pmsis_mutex_func take; - __pmsis_mutex_func release; -} pmsis_mutex_t, pi_mutex_t; - - -#ifndef IMPLEM_SEM_OBJECT_TYPE -#define IMPLEM_SEM_OBJECT_TYPE void *sem_object; -#endif - -/** Task types **/ -typedef void (*__pi_sem_func)(void *sem_object); - -typedef struct pi_sem { - IMPLEM_SEM_OBJECT_TYPE - __pi_sem_func take; - __pi_sem_func give; -} pi_sem_t; - -typedef struct pmsis_spinlock { - uint32_t lock; -} pmsis_spinlock_t; - -struct pmsis_event_kernel_wrap { - void *__os_native_task; - void (*event_kernel_main)(struct pmsis_event_kernel_wrap*); - // real event kernel (might be just an api stub for pulpOS) - void *priv; -}; - -enum pi_task_id { - PI_TASK_CALLBACK_ID, - PI_TASK_NONE_ID, -}; - -#ifndef PI_TASK_IMPLEM -#define PI_TASK_IMPLEM int8_t destroy; -#endif - -typedef struct pi_callback_s -{ - struct pi_task *next; - pi_callback_func_t entry; - void *arg; -} pi_callback_t; - - -#ifndef PI_TASK_IMPLEM_NB_DATA -#define PI_TASK_IMPLEM_NB_DATA 8 -#endif /* PI_TASK_IMPLEM_NB_DATA */ - -typedef struct pi_task { - /* Warning, might be accessed inline in asm, and thus can not be moved - */ - uintptr_t arg[4]; - int32_t id; - uint32_t data[PI_TASK_IMPLEM_NB_DATA]; - pi_sem_t wait_on; - struct pi_task *next; - volatile int8_t done; - int8_t core_id; - int8_t cluster_id; - PI_TASK_IMPLEM; -} pi_task_t; - -/// @endcond -#endif diff --git a/rtos/freertos/abstraction_layer_freertos/include/portable.h b/rtos/freertos/abstraction_layer_freertos/include/portable.h deleted file mode 100644 index a9cb726d..00000000 --- a/rtos/freertos/abstraction_layer_freertos/include/portable.h +++ /dev/null @@ -1,199 +0,0 @@ -/* - * FreeRTOS Kernel V10.3.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. - * - * Permission is hereby granted, free of charge, to any person obtaining a copy of - * this software and associated documentation files (the "Software"), to deal in - * the Software without restriction, including without limitation the rights to - * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of - * the Software, and to permit persons to whom the Software is furnished to do so, - * subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS - * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR - * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER - * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - * - * http://www.FreeRTOS.org - * http://aws.amazon.com/freertos - * - * 1 tab == 4 spaces! - */ - -/*----------------------------------------------------------- - * Portable layer API. Each function must be defined for each port. - *----------------------------------------------------------*/ - -#ifndef PORTABLE_H -#define PORTABLE_H - -/* Each FreeRTOS port has a unique portmacro.h header file. Originally a -pre-processor definition was used to ensure the pre-processor found the correct -portmacro.h file for the port being used. That scheme was deprecated in favour -of setting the compiler's include path such that it found the correct -portmacro.h file - removing the need for the constant and allowing the -portmacro.h file to be located anywhere in relation to the port being used. -Purely for reasons of backward compatibility the old method is still valid, but -to make it clear that new projects should not use it, support for the port -specific constants has been moved into the deprecated_definitions.h header -file. */ -#include "deprecated_definitions.h" - -/* If portENTER_CRITICAL is not defined then including deprecated_definitions.h -did not result in a portmacro.h header file being included - and it should be -included here. In this case the path to the correct portmacro.h header file -must be set in the compiler's include path. */ -#ifndef portENTER_CRITICAL - #include "portmacro.h" -#endif - -#if portBYTE_ALIGNMENT == 32 - #define portBYTE_ALIGNMENT_MASK ( 0x001f ) -#endif - -#if portBYTE_ALIGNMENT == 16 - #define portBYTE_ALIGNMENT_MASK ( 0x000f ) -#endif - -#if portBYTE_ALIGNMENT == 8 - #define portBYTE_ALIGNMENT_MASK ( 0x0007 ) -#endif - -#if portBYTE_ALIGNMENT == 4 - #define portBYTE_ALIGNMENT_MASK ( 0x0003 ) -#endif - -#if portBYTE_ALIGNMENT == 2 - #define portBYTE_ALIGNMENT_MASK ( 0x0001 ) -#endif - -#if portBYTE_ALIGNMENT == 1 - #define portBYTE_ALIGNMENT_MASK ( 0x0000 ) -#endif - -#ifndef portBYTE_ALIGNMENT_MASK - #error "Invalid portBYTE_ALIGNMENT definition" -#endif - -#ifndef portNUM_CONFIGURABLE_REGIONS - #define portNUM_CONFIGURABLE_REGIONS 1 -#endif - -#ifndef portHAS_STACK_OVERFLOW_CHECKING - #define portHAS_STACK_OVERFLOW_CHECKING 0 -#endif - -#ifndef portARCH_NAME - #define portARCH_NAME NULL -#endif - -#ifdef __cplusplus -extern "C" { -#endif - -#include "mpu_wrappers.h" - -/* - * Setup the stack of a new task so it is ready to be placed under the - * scheduler control. The registers have to be placed on the stack in - * the order that the port expects to find them. - * - */ -#if( portUSING_MPU_WRAPPERS == 1 ) - #if( portHAS_STACK_OVERFLOW_CHECKING == 1 ) - StackType_t *pxPortInitialiseStack( StackType_t *pxTopOfStack, StackType_t *pxEndOfStack, TaskFunction_t pxCode, void *pvParameters, BaseType_t xRunPrivileged ) PRIVILEGED_FUNCTION; - #else - StackType_t *pxPortInitialiseStack( StackType_t *pxTopOfStack, TaskFunction_t pxCode, void *pvParameters, BaseType_t xRunPrivileged ) PRIVILEGED_FUNCTION; - #endif -#else - #if( portHAS_STACK_OVERFLOW_CHECKING == 1 ) - StackType_t *pxPortInitialiseStack( StackType_t *pxTopOfStack, StackType_t *pxEndOfStack, TaskFunction_t pxCode, void *pvParameters ) PRIVILEGED_FUNCTION; - #else - StackType_t *pxPortInitialiseStack( StackType_t *pxTopOfStack, TaskFunction_t pxCode, void *pvParameters ) PRIVILEGED_FUNCTION; - #endif -#endif - -/* Used by heap_5.c to define the start address and size of each memory region -that together comprise the total FreeRTOS heap space. */ -typedef struct HeapRegion -{ - uint8_t *pucStartAddress; - size_t xSizeInBytes; -} HeapRegion_t; - -/* Used to pass information about the heap out of vPortGetHeapStats(). */ -typedef struct xHeapStats -{ - size_t xAvailableHeapSpaceInBytes; /* The total heap size currently available - this is the sum of all the free blocks, not the largest block that can be allocated. */ - size_t xSizeOfLargestFreeBlockInBytes; /* The maximum size, in bytes, of all the free blocks within the heap at the time vPortGetHeapStats() is called. */ - size_t xSizeOfSmallestFreeBlockInBytes; /* The minimum size, in bytes, of all the free blocks within the heap at the time vPortGetHeapStats() is called. */ - size_t xNumberOfFreeBlocks; /* The number of free memory blocks within the heap at the time vPortGetHeapStats() is called. */ - size_t xMinimumEverFreeBytesRemaining; /* The minimum amount of total free memory (sum of all free blocks) there has been in the heap since the system booted. */ - size_t xNumberOfSuccessfulAllocations; /* The number of calls to pvPortMalloc() that have returned a valid memory block. */ - size_t xNumberOfSuccessfulFrees; /* The number of calls to vPortFree() that has successfully freed a block of memory. */ -} HeapStats_t; - -/* - * Used to define multiple heap regions for use by heap_5.c. This function - * must be called before any calls to pvPortMalloc() - not creating a task, - * queue, semaphore, mutex, software timer, event group, etc. will result in - * pvPortMalloc being called. - * - * pxHeapRegions passes in an array of HeapRegion_t structures - each of which - * defines a region of memory that can be used as the heap. The array is - * terminated by a HeapRegions_t structure that has a size of 0. The region - * with the lowest start address must appear first in the array. - */ -void vPortDefineHeapRegions( const HeapRegion_t * const pxHeapRegions ) PRIVILEGED_FUNCTION; - -/* - * Returns a HeapStats_t structure filled with information about the current - * heap state. - */ -void vPortGetHeapStats( HeapStats_t *pxHeapStats ); - -/* - * Map to the memory management routines required for the port. - */ -void *pvPortMalloc( size_t xSize ) PRIVILEGED_FUNCTION; -void vPortFree( void *pv ) PRIVILEGED_FUNCTION; -void vPortInitialiseBlocks( void ) PRIVILEGED_FUNCTION; -size_t xPortGetFreeHeapSize( void ) PRIVILEGED_FUNCTION; -size_t xPortGetMinimumEverFreeHeapSize( void ) PRIVILEGED_FUNCTION; - -/* - * Setup the hardware ready for the scheduler to take control. This generally - * sets up a tick interrupt and sets timers for the correct tick frequency. - */ -BaseType_t xPortStartScheduler( void ) PRIVILEGED_FUNCTION; - -/* - * Undo any hardware/ISR setup that was performed by xPortStartScheduler() so - * the hardware is left in its original condition after the scheduler stops - * executing. - */ -void vPortEndScheduler( void ) PRIVILEGED_FUNCTION; - -/* - * The structures and methods of manipulating the MPU are contained within the - * port layer. - * - * Fills the xMPUSettings structure with the memory region information - * contained in xRegions. - */ -#if( portUSING_MPU_WRAPPERS == 1 ) - struct xMEMORY_REGION; - void vPortStoreTaskMPUSettings( xMPU_SETTINGS *xMPUSettings, const struct xMEMORY_REGION * const xRegions, StackType_t *pxBottomOfStack, uint32_t ulStackDepth ) PRIVILEGED_FUNCTION; -#endif - -#ifdef __cplusplus -} -#endif - -#endif /* PORTABLE_H */ - diff --git a/rtos/freertos/abstraction_layer_freertos/include/projdefs.h b/rtos/freertos/abstraction_layer_freertos/include/projdefs.h deleted file mode 100644 index 19a6b8f3..00000000 --- a/rtos/freertos/abstraction_layer_freertos/include/projdefs.h +++ /dev/null @@ -1,124 +0,0 @@ -/* - * FreeRTOS Kernel V10.3.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. - * - * Permission is hereby granted, free of charge, to any person obtaining a copy of - * this software and associated documentation files (the "Software"), to deal in - * the Software without restriction, including without limitation the rights to - * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of - * the Software, and to permit persons to whom the Software is furnished to do so, - * subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS - * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR - * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER - * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - * - * http://www.FreeRTOS.org - * http://aws.amazon.com/freertos - * - * 1 tab == 4 spaces! - */ - -#ifndef PROJDEFS_H -#define PROJDEFS_H - -/* - * Defines the prototype to which task functions must conform. Defined in this - * file to ensure the type is known before portable.h is included. - */ -typedef void (*TaskFunction_t)( void * ); - -/* Converts a time in milliseconds to a time in ticks. This macro can be -overridden by a macro of the same name defined in FreeRTOSConfig.h in case the -definition here is not suitable for your application. */ -#ifndef pdMS_TO_TICKS - #define pdMS_TO_TICKS( xTimeInMs ) ( ( TickType_t ) ( ( ( TickType_t ) ( xTimeInMs ) * ( TickType_t ) configTICK_RATE_HZ ) / ( TickType_t ) 1000 ) ) -#endif - -#define pdFALSE ( ( BaseType_t ) 0 ) -#define pdTRUE ( ( BaseType_t ) 1 ) - -#define pdPASS ( pdTRUE ) -#define pdFAIL ( pdFALSE ) -#define errQUEUE_EMPTY ( ( BaseType_t ) 0 ) -#define errQUEUE_FULL ( ( BaseType_t ) 0 ) - -/* FreeRTOS error definitions. */ -#define errCOULD_NOT_ALLOCATE_REQUIRED_MEMORY ( -1 ) -#define errQUEUE_BLOCKED ( -4 ) -#define errQUEUE_YIELD ( -5 ) - -/* Macros used for basic data corruption checks. */ -#ifndef configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES - #define configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES 0 -#endif - -#if( configUSE_16_BIT_TICKS == 1 ) - #define pdINTEGRITY_CHECK_VALUE 0x5a5a -#else - #define pdINTEGRITY_CHECK_VALUE 0x5a5a5a5aUL -#endif - -/* The following errno values are used by FreeRTOS+ components, not FreeRTOS -itself. */ -#define pdFREERTOS_ERRNO_NONE 0 /* No errors */ -#define pdFREERTOS_ERRNO_ENOENT 2 /* No such file or directory */ -#define pdFREERTOS_ERRNO_EINTR 4 /* Interrupted system call */ -#define pdFREERTOS_ERRNO_EIO 5 /* I/O error */ -#define pdFREERTOS_ERRNO_ENXIO 6 /* No such device or address */ -#define pdFREERTOS_ERRNO_EBADF 9 /* Bad file number */ -#define pdFREERTOS_ERRNO_EAGAIN 11 /* No more processes */ -#define pdFREERTOS_ERRNO_EWOULDBLOCK 11 /* Operation would block */ -#define pdFREERTOS_ERRNO_ENOMEM 12 /* Not enough memory */ -#define pdFREERTOS_ERRNO_EACCES 13 /* Permission denied */ -#define pdFREERTOS_ERRNO_EFAULT 14 /* Bad address */ -#define pdFREERTOS_ERRNO_EBUSY 16 /* Mount device busy */ -#define pdFREERTOS_ERRNO_EEXIST 17 /* File exists */ -#define pdFREERTOS_ERRNO_EXDEV 18 /* Cross-device link */ -#define pdFREERTOS_ERRNO_ENODEV 19 /* No such device */ -#define pdFREERTOS_ERRNO_ENOTDIR 20 /* Not a directory */ -#define pdFREERTOS_ERRNO_EISDIR 21 /* Is a directory */ -#define pdFREERTOS_ERRNO_EINVAL 22 /* Invalid argument */ -#define pdFREERTOS_ERRNO_ENOSPC 28 /* No space left on device */ -#define pdFREERTOS_ERRNO_ESPIPE 29 /* Illegal seek */ -#define pdFREERTOS_ERRNO_EROFS 30 /* Read only file system */ -#define pdFREERTOS_ERRNO_EUNATCH 42 /* Protocol driver not attached */ -#define pdFREERTOS_ERRNO_EBADE 50 /* Invalid exchange */ -#define pdFREERTOS_ERRNO_EFTYPE 79 /* Inappropriate file type or format */ -#define pdFREERTOS_ERRNO_ENMFILE 89 /* No more files */ -#define pdFREERTOS_ERRNO_ENOTEMPTY 90 /* Directory not empty */ -#define pdFREERTOS_ERRNO_ENAMETOOLONG 91 /* File or path name too long */ -#define pdFREERTOS_ERRNO_EOPNOTSUPP 95 /* Operation not supported on transport endpoint */ -#define pdFREERTOS_ERRNO_ENOBUFS 105 /* No buffer space available */ -#define pdFREERTOS_ERRNO_ENOPROTOOPT 109 /* Protocol not available */ -#define pdFREERTOS_ERRNO_EADDRINUSE 112 /* Address already in use */ -#define pdFREERTOS_ERRNO_ETIMEDOUT 116 /* Connection timed out */ -#define pdFREERTOS_ERRNO_EINPROGRESS 119 /* Connection already in progress */ -#define pdFREERTOS_ERRNO_EALREADY 120 /* Socket already connected */ -#define pdFREERTOS_ERRNO_EADDRNOTAVAIL 125 /* Address not available */ -#define pdFREERTOS_ERRNO_EISCONN 127 /* Socket is already connected */ -#define pdFREERTOS_ERRNO_ENOTCONN 128 /* Socket is not connected */ -#define pdFREERTOS_ERRNO_ENOMEDIUM 135 /* No medium inserted */ -#define pdFREERTOS_ERRNO_EILSEQ 138 /* An invalid UTF-16 sequence was encountered. */ -#define pdFREERTOS_ERRNO_ECANCELED 140 /* Operation canceled. */ - -/* The following endian values are used by FreeRTOS+ components, not FreeRTOS -itself. */ -#define pdFREERTOS_LITTLE_ENDIAN 0 -#define pdFREERTOS_BIG_ENDIAN 1 - -/* Re-defining endian values for generic naming. */ -#define pdLITTLE_ENDIAN pdFREERTOS_LITTLE_ENDIAN -#define pdBIG_ENDIAN pdFREERTOS_BIG_ENDIAN - - -#endif /* PROJDEFS_H */ - - - diff --git a/rtos/freertos/abstraction_layer_freertos/include/properties.h b/rtos/freertos/abstraction_layer_freertos/include/properties.h deleted file mode 100644 index 84ff4e79..00000000 --- a/rtos/freertos/abstraction_layer_freertos/include/properties.h +++ /dev/null @@ -1,252 +0,0 @@ -/* - * Copyright (C) 2019 ETH Zurich, University of Bologna and GreenWaves - * Technologies - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifndef __PROPERTIES_H__ -#define __PROPERTIES_H__ - - -/* PULP defs */ -#define PULP - -#define ARCHI_FPGA_FREQUENCY 5000000 - -/* hardware modules */ -#define ARCHI_NUM_TIMER 1 -#define ARCHI_NUM_FLL 2 - -#define ARCHI_REF_CLOCK_LOG2 15 -#define ARCHI_REF_CLOCK (1 << ARCHI_REF_CLOCK_LOG2) - -#define ARCHI_NB_FLL 3 - -#define __RT_FLL_CL 2 -#define __RT_FLL_PERIPH 1 -#define __RT_FLL_FC 0 - -#define __RT_FREQ_DOMAIN_FC 0 -#define __RT_FREQ_DOMAIN_CL 2 -#define __RT_FREQ_DOMAIN_PERIPH 1 -#define RT_FREQ_NB_DOMAIN 3 - -/* Cores & cluster */ -/* FC */ -#define ARCHI_FC_CID (32) - -/* Cluster */ -#define ARCHI_HAS_CLUSTER (1) -#define ARCHI_CL_CID(id) (id) -#define ARCHI_CLUSTER_NB_PE (8) /* Processing elements. */ - -/* Memories */ -/* FC memory */ -#define ARCHI_HAS_FC_TCDM (1) -#define ARCHI_HAS_FC_ALIAS (1) -#define FC_TCDM_SIZE (0x00004000) /* 16kB. */ - -/* L2 memory */ -#define ARCHI_HAS_L2_ALIAS (0) -#define L2_SHARED_SIZE (0x00080000) /* 512kB. */ - -/* L1 cluster memory */ -#define ARCHI_HAS_CL_L1_ALIAS (1) -#define CL_L1_SIZE (0x00010000) /* 64kB. */ - -/* L1 cluster TS */ -#define ARCHI_HAS_CL_L1_TS (1) - - -/* TODO: fix this table */ -/* UDMA peripherals */ -#define UDMA_HAS_SPIM (1) -#define UDMA_HAS_HYPER (0) -#define UDMA_HAS_UART (1) -#define UDMA_HAS_I2C (1) -#define UDMA_HAS_DMACPY (0) -#define UDMA_HAS_I2S (1) -#define UDMA_HAS_CPI (1) - -/* TODO: fix this table */ -/* Number of UDMA peripherals */ -#define UDMA_NB_SPIM (2) -#define UDMA_NB_HYPER (0) -#define UDMA_NB_UART (1) -#define UDMA_NB_I2C (2) -#define UDMA_NB_DMACPY (0) -#define UDMA_NB_I2S (1) -#define UDMA_NB_CPI (1) - -/* TODO: fix this table */ -/* #define UDMA_NB_PERIPH ((UDMA_HAS_SPIM ? UDMA_NB_SPIM) + \ */ -/* (UDMA_HAS_HYPER ? UDMA_NB_HYPER) + \ */ -/* (UDMA_HAS_UART ? UDMA_NB_UART) + \ */ -/* (UDMA_HAS_I2C ? UDMA_NB_I2C) + \ */ -/* (UDMA_HAS_DMACPY ? UDMA_NB_DMACPY) + \ - */ -/* (UDMA_HAS_I2S ? UDMA_NB_I2S) + \ */ -/* (UDMA_HAS_CPI ? UDMA_NB_CPI)) */ -#define UDMA_NB_PERIPH (10) -/* Size of each UDMA peripheral */ -#define UDMA_PERIPH_SIZE_LOG2 (7) -#define UDMA_PERIPH_SIZE (1 << UDMA_PERIPH_SIZE_LOG2) - -/* UDMA peripherals ID, this maps to PER_ID_* in udma_subsystem.sv */ -#define UDMA_SPIM_ID(id) (1 + (id)) -/* #define UDMA_HYPER_ID(id) (3 + (id)) */ -#define UDMA_UART_ID(id) (0 + (id)) -#define UDMA_I2C_ID(id) (2 + (id)) -/* #define UDMA_DMACPY_ID(id) (7 + (id)) */ -#define ARCHI_UDMA_FILTER_ID(id) (7 + (id)) -#define UDMA_I2S_ID(id) (5 + (id)) -#define UDMA_CPI_ID(id) (6 + (id)) -#define UDMA_SDIO_ID(id) (4 + (id)) - - -/* Pads & GPIO. */ -#define ARCHI_NB_PAD (48) -#define ARCHI_NB_GPIO (32) - - - -/* Cluster. */ -/* Cores & cluster. */ -#define ARCHI_HAS_CLUSTER (1) -#define ARCHI_CL_CID(id) (id) -#define ARCHI_CLUSTER_NB_CORES (9) -#define ARCHI_CLUSTER_NB_PE (8) /* Processing elements. */ -#define ARCHI_CLUSTER_PE_MASK (((1 << ARCHI_CLUSTER_NB_PE) - 1)) -#define ARCHI_CLUSTER_MASTER_CORE (0) -#define ARCHI_CLUSTER_SYNC_BARR_ID (1) -#define ARCHI_CLUSTER_LEGCY_BARR_ID (0) - -#define ARCHI_HAS_CLUSTER_CLK_GATE (1) -#define ARCHI_CLUSTER_SIZE (0x00400000) - -/* Memories. */ -/* L1 cluster memory. */ -#define ARCHI_HAS_CL_L1_ALIAS (1) -#define CL_L1_SIZE (0x00010000) /* 64kB. */ - -/* L1 cluster memory TS. */ -#define ARCHI_HAS_CL_L1_TS (1) -#define ARCHI_CL_L1_TS_OFFSET (1 << 20) - - -/* Cluster peripherals. */ -#define CL_NB_HW_MUTEX (8) -#define CL_NB_HW_BARRIER (8) - - -#define CL_EU_HW_BARRIER_RESERVED (2) -#define CL_EU_HW_BARRIER_RESERVED_MASK ((1 << CL_EU_HW_BARRIER_RESERVED) - 1) - -#define CL_ALLOC_INIT_BARRIER (((1 << CL_NB_HW_BARRIER) - 1) & \ - ~CL_EU_HW_BARRIER_RESERVED_MASK) - - -#define CL_CTRL_OFFSET (0x00000000) -#define CL_TIMER_OFFSET (0x00000400) -#define CL_GLOB_EU_CORE_OFFSET (0x00000800) -#define CL_GLOB_EU_BARRIER_OFFSET (0x00000C00) -#define CL_GLOB_EU_SW_EVENT_OFFSET (0x00000E00) -#define CL_GLOB_EU_SOC_EVENT_OFFSET (0x00000F00) -#define CL_GLOB_EU_DISPATCH_OFFSET (0x00000F80) -#define CL_HWCE_OFFSET (0x00001000) -#define CL_ICACHE_CTRL_OFFSET (0x00001400) -#define CL_DMA_OFFSET (0x00001800) -#define CL_DECOMP_OFFSET (0x00002000) -#define CL_DEMUX_PERIPH_OFFSET (0x00004000) - - -/*! Event_Unit Demux offset */ -#define CLUSTER_DEMUX_EU_CORE_OFFSET ( 0x00000000 ) -#define CLUSTER_DEMUX_EU_LOOP_OFFSET ( 0x00000060 ) -#define CLUSTER_DEMUX_EU_DISPATCH_OFFSET ( 0x00000080 ) -#define CLUSTER_DEMUX_EU_HW_MUTEX_OFFSET ( 0x000000C0 ) -#define CLUSTER_DEMUX_EU_SW_EVENT_OFFSET ( 0x00000100 ) -#define CLUSTER_DEMUX_EU_HW_BARRIER_OFFSET ( 0x00000200 ) - - -/*! Event_Unit Core Demux */ -#define CL_DEMUX_EU_CORE_EVENT_MASK ( 0x00 ) -#define CL_DEMUX_EU_CORE_EVENT_MASK_AND ( 0x04 ) -#define CL_DEMUX_EU_CORE_EVENT_MASK_OR ( 0x08 ) -#define CL_DEMUX_EU_CORE_IRQ_MASK ( 0x0C ) -#define CL_DEMUX_EU_CORE_IRQ_MASK_AND ( 0x10 ) -#define CL_DEMUX_EU_CORE_IRQ_MASK_OR ( 0x14 ) -#define CL_DEMUX_EU_CORE_STATUS ( 0x18 ) -#define CL_DEMUX_EU_CORE_BUFFER ( 0x1C ) -#define CL_DEMUX_EU_CORE_BUFFER_MASKED ( 0x20 ) -#define CL_DEMUX_EU_CORE_BUFFER_IRQ_MASKED ( 0x24 ) -#define CL_DEMUX_EU_CORE_BUFFER_CLEAR ( 0x28 ) -#define CL_DEMUX_EU_CORE_SW_EVT_MASK ( 0x2C ) -#define CL_DEMUX_EU_CORE_SW_EVT_MASK_AND ( 0x30 ) -#define CL_DEMUX_EU_CORE_SW_EVT_MASK_OR ( 0x34 ) -#define CL_DEMUX_EU_CORE_EVENT_WAIT ( 0x38 ) -#define CL_DEMUX_EU_CORE_EVENT_WAIT_CLEAR ( 0x3C ) -#define CL_DEMUX_EU_CORE_SEC_IRQ_MASK ( 0x40 ) -#define CL_DEMUX_EU_CORE_SEC_IRQ_MASK_AND ( 0x44 ) -#define CL_DEMUX_EU_CORE_SEC_IRQ_MASK_OR ( 0x48 ) - -/*! Event_Unit Loop Demux */ -#define CL_DEMUX_EU_LOOP_STATE ( 0x00 ) -#define CL_DEMUX_EU_LOOP_START ( 0x04 ) -#define CL_DEMUX_EU_LOOP_END ( 0x08 ) -#define CL_DEMUX_EU_LOOP_INCR ( 0x0C ) -#define CL_DEMUX_EU_LOOP_CHUNK ( 0x10 ) -#define CL_DEMUX_EU_LOOP_EPOCH ( 0x14 ) -#define CL_DEMUX_EU_LOOP_SINGLE ( 0x18 ) - -/*! Event_Unit Dispatch Demux */ -#define CL_DEMUX_EU_DISPATCH_FIFO_ACCESS ( 0x00 ) -#define CL_DEMUX_EU_DISPATCH_TEAM_CONFIG ( 0x04 ) - -/*! Event_Unit Mutex Demux */ -#define CL_DEMUX_EU_HW_MUTEX_MUTEX ( 0x00 ) - -/*! Event_Unit SW_Events Demux */ -#define CL_DEMUX_EU_SW_EVT_TRIGGER ( 0x00 ) -#define CL_DEMUX_EU_SW_EVT_TRIGGER_WAIT ( 0x40 ) -#define CL_DEMUX_EU_SW_EVT_TRIGGER_WAIT_CLEAR ( 0x80 ) - -/*! Event_Unit HW Barrier Demux */ -#define CL_DEMUX_EU_HW_BARRIER_TRIGGER_MASK ( 0x00 ) -#define CL_DEMUX_EU_HW_BARRIER_STATUS ( 0x04 ) -#define CL_DEMUX_EU_HW_BARRIER_STATUS_SUMMARY ( 0x08 ) -#define CL_DEMUX_EU_HW_BARRIER_TARGET_MASK ( 0x0C ) -#define CL_DEMUX_EU_HW_BARRIER_TRIGGER ( 0x10 ) -#define CL_DEMUX_EU_HW_BARRIER_TRIGGER_SELF ( 0x14 ) -#define CL_DEMUX_EU_HW_BARRIER_TRIGGER_WAIT ( 0x18 ) -#define CL_DEMUX_EU_HW_BARRIER_TRIGGER_WAIT_CLEAR ( 0x1C ) - -#define CL_DEMUX_EU_HW_BARRIER_SIZE ( 0x20 ) - - -/* Cluster demux peripherals.*/ -#define CL_DEMUX_EU_CORE_OFFSET (CL_DEMUX_PERIPH_OFFSET + CLUSTER_DEMUX_EU_CORE_OFFSET) -#define CL_DEMUX_EU_LOOP_OFFSET (CL_DEMUX_PERIPH_OFFSET + CLUSTER_DEMUX_EU_LOOP_OFFSET) -#define CL_DEMUX_EU_DISPATCH_OFFSET (CL_DEMUX_PERIPH_OFFSET + CLUSTER_DEMUX_EU_DISPATCH_OFFSET) -#define CL_DEMUX_EU_HW_MUTEX_OFFSET (CL_DEMUX_PERIPH_OFFSET + CLUSTER_DEMUX_EU_HW_MUTEX_OFFSET) -#define CL_DEMUX_EU_SW_EVENT_OFFSET (CL_DEMUX_PERIPH_OFFSET + CLUSTER_DEMUX_EU_SW_EVENT_OFFSET) -#define CL_DEMUX_EU_HW_BARRIER_OFFSET (CL_DEMUX_PERIPH_OFFSET + CLUSTER_DEMUX_EU_HW_BARRIER_OFFSET) -#define CL_DEMUX_DMA_OFFSET (CL_DEMUX_PERIPH_OFFSET + 0x00000400) - - -#define CL_DMA_ID(id) (id) - - -#define PRINTF_BUFFER_SIZE ( 128 ) -#endif /* __PROPERTIES_H__ */ diff --git a/rtos/freertos/abstraction_layer_freertos/include/pulp_mem_map.h b/rtos/freertos/abstraction_layer_freertos/include/pulp_mem_map.h deleted file mode 100644 index d8c6ecd0..00000000 --- a/rtos/freertos/abstraction_layer_freertos/include/pulp_mem_map.h +++ /dev/null @@ -1,81 +0,0 @@ -/* - * Copyright (C) 2019 ETH Zurich and University of Bologna - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * SPDX-License-Identifier: Apache-2.0 - * Author: Robert Balas (balasr@iis.ee.ethz.ch) - */ - -#ifndef __PULP_MEM_MAP_H -#define __PULP_MEM_MAP_H - -/* - * SOC PERIPHERALS - */ - -#define PULP_SOC_PERIPHERALS_ADDR 0x1A100000 - -#define PULP_FC_TIMER_SIZE 0x00000800 - -#define PULP_FLL_OFFSET 0x00000000 -#define PULP_GPIO_OFFSET 0x00001000 -#define PULP_UDMA_OFFSET 0x00002000 -#define PULP_APB_SOC_CTRL_OFFSET 0x00004000 -#define PULP_ADV_TIMER_OFFSET 0x00005000 -#define PULP_SOC_EU_OFFSET 0x00006000 -#define PULP_FC_IRQ_OFFSET 0x00009800 -/* #define PULP_FC_IRQ_OFFSET 0x00009000 */ /* this is a mirror of above */ -#define PULP_FC_TIMER_OFFSET 0x0000B000 -#define PULP_FC_HWPE_OFFSET 0x0000C000 -#define PULP_STDOUT_OFFSET 0x0000F000 -#define PULP_DEBUG_OFFSET 0x00010000 - -#define PULP_FLL_ADDR (PULP_SOC_PERIPHERALS_ADDR + PULP_FLL_OFFSET) -#define PULP_GPIO_ADDR (PULP_SOC_PERIPHERALS_ADDR + PULP_GPIO_OFFSET) -#define PULP_UDMA_ADDR (PULP_SOC_PERIPHERALS_ADDR + PULP_UDMA_OFFSET) -#define PULP_APB_SOC_CTRL_ADDR \ - (PULP_SOC_PERIPHERALS_ADDR + PULP_APB_SOC_CTRL_OFFSET) -#define PULP_ADV_TIMER_ADDR (PULP_SOC_PERIPHERALS_ADDR + PULP_ADV_TIMER_OFFSET) -#define PULP_SOC_EU_ADDR (PULP_SOC_PERIPHERALS_ADDR + PULP_SOC_EU_OFFSET) -#define PULP_FC_IRQ_ADDR (PULP_SOC_PERIPHERALS_ADDR + PULP_FC_IRQ_OFFSET) -/* #define PULP_FC_ITC_ADDR (PULP_SOC_PERIPHERALS_ADDR + PULP_FC_ITC_OFFSET) - */ -#define PULP_FC_TIMER_ADDR (PULP_SOC_PERIPHERALS_ADDR + PULP_FC_TIMER_OFFSET) -#define PULP_FC_HWPE_ADDR (PULP_SOC_PERIPHERALS_ADDR + PULP_FC_HWPE_OFFSET) -#define PULP_STDOUT_ADDR (PULP_SOC_PERIPHERALS_ADDR + PULP_STDOUT_OFFSET) - -#define PULP_FLL_AREA_SIZE 0x00000010 - -/* - * CLUSTER - */ - -#define PULP_CLUSTER_ADDR 0x00000000 -#define PULP_CLUSTER_SIZE 0x00400000 -#define PULP_CLUSTER_GLOBAL_ADDR(cid) (0x10000000 + (cid)*PULP_CLUSTER_SIZE) - -/* - * CLUSTER PERIPHERALS - */ - -#define PULP_CLUSTER_PERIPHERALS_OFFSET 0x00200000 - -#define PULP_TIMER_OFFSET 0x00000400 - -#define PULP_CLUSTER_PERIPHERALS_ADDR \ - (PULP_CLUSTER_ADDR + PULP_CLUSTER_PERIPHERALS_OFFSET) -#define PULP_CLUSTER_PERIPHERALS_GLOBAL_ADDR(cid) \ - (PULP_CLUSTER_GLOBAL_ADDR(cid) + PULP_CLUSTER_PERIPHERALS_OFFSET) - -#endif diff --git a/rtos/freertos/abstraction_layer_freertos/include/queue.h b/rtos/freertos/abstraction_layer_freertos/include/queue.h deleted file mode 100644 index a0439c52..00000000 --- a/rtos/freertos/abstraction_layer_freertos/include/queue.h +++ /dev/null @@ -1,1655 +0,0 @@ -/* - * FreeRTOS Kernel V10.3.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. - * - * Permission is hereby granted, free of charge, to any person obtaining a copy of - * this software and associated documentation files (the "Software"), to deal in - * the Software without restriction, including without limitation the rights to - * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of - * the Software, and to permit persons to whom the Software is furnished to do so, - * subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS - * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR - * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER - * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - * - * http://www.FreeRTOS.org - * http://aws.amazon.com/freertos - * - * 1 tab == 4 spaces! - */ - - -#ifndef QUEUE_H -#define QUEUE_H - -#ifndef INC_FREERTOS_H - #error "include FreeRTOS.h" must appear in source files before "include queue.h" -#endif - -#ifdef __cplusplus -extern "C" { -#endif - -#include "task.h" - -/** - * Type by which queues are referenced. For example, a call to xQueueCreate() - * returns an QueueHandle_t variable that can then be used as a parameter to - * xQueueSend(), xQueueReceive(), etc. - */ -struct QueueDefinition; /* Using old naming convention so as not to break kernel aware debuggers. */ -typedef struct QueueDefinition * QueueHandle_t; - -/** - * Type by which queue sets are referenced. For example, a call to - * xQueueCreateSet() returns an xQueueSet variable that can then be used as a - * parameter to xQueueSelectFromSet(), xQueueAddToSet(), etc. - */ -typedef struct QueueDefinition * QueueSetHandle_t; - -/** - * Queue sets can contain both queues and semaphores, so the - * QueueSetMemberHandle_t is defined as a type to be used where a parameter or - * return value can be either an QueueHandle_t or an SemaphoreHandle_t. - */ -typedef struct QueueDefinition * QueueSetMemberHandle_t; - -/* For internal use only. */ -#define queueSEND_TO_BACK ( ( BaseType_t ) 0 ) -#define queueSEND_TO_FRONT ( ( BaseType_t ) 1 ) -#define queueOVERWRITE ( ( BaseType_t ) 2 ) - -/* For internal use only. These definitions *must* match those in queue.c. */ -#define queueQUEUE_TYPE_BASE ( ( uint8_t ) 0U ) -#define queueQUEUE_TYPE_SET ( ( uint8_t ) 0U ) -#define queueQUEUE_TYPE_MUTEX ( ( uint8_t ) 1U ) -#define queueQUEUE_TYPE_COUNTING_SEMAPHORE ( ( uint8_t ) 2U ) -#define queueQUEUE_TYPE_BINARY_SEMAPHORE ( ( uint8_t ) 3U ) -#define queueQUEUE_TYPE_RECURSIVE_MUTEX ( ( uint8_t ) 4U ) - -/** - * queue. h - *
- QueueHandle_t xQueueCreate(
-							  UBaseType_t uxQueueLength,
-							  UBaseType_t uxItemSize
-						  );
- * 
- * - * Creates a new queue instance, and returns a handle by which the new queue - * can be referenced. - * - * Internally, within the FreeRTOS implementation, queues use two blocks of - * memory. The first block is used to hold the queue's data structures. The - * second block is used to hold items placed into the queue. If a queue is - * created using xQueueCreate() then both blocks of memory are automatically - * dynamically allocated inside the xQueueCreate() function. (see - * http://www.freertos.org/a00111.html). If a queue is created using - * xQueueCreateStatic() then the application writer must provide the memory that - * will get used by the queue. xQueueCreateStatic() therefore allows a queue to - * be created without using any dynamic memory allocation. - * - * http://www.FreeRTOS.org/Embedded-RTOS-Queues.html - * - * @param uxQueueLength The maximum number of items that the queue can contain. - * - * @param uxItemSize The number of bytes each item in the queue will require. - * Items are queued by copy, not by reference, so this is the number of bytes - * that will be copied for each posted item. Each item on the queue must be - * the same size. - * - * @return If the queue is successfully create then a handle to the newly - * created queue is returned. If the queue cannot be created then 0 is - * returned. - * - * Example usage: -
- struct AMessage
- {
-	char ucMessageID;
-	char ucData[ 20 ];
- };
-
- void vATask( void *pvParameters )
- {
- QueueHandle_t xQueue1, xQueue2;
-
-	// Create a queue capable of containing 10 uint32_t values.
-	xQueue1 = xQueueCreate( 10, sizeof( uint32_t ) );
-	if( xQueue1 == 0 )
-	{
-		// Queue was not created and must not be used.
-	}
-
-	// Create a queue capable of containing 10 pointers to AMessage structures.
-	// These should be passed by pointer as they contain a lot of data.
-	xQueue2 = xQueueCreate( 10, sizeof( struct AMessage * ) );
-	if( xQueue2 == 0 )
-	{
-		// Queue was not created and must not be used.
-	}
-
-	// ... Rest of task code.
- }
- 
- * \defgroup xQueueCreate xQueueCreate - * \ingroup QueueManagement - */ -#if( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) - #define xQueueCreate( uxQueueLength, uxItemSize ) xQueueGenericCreate( ( uxQueueLength ), ( uxItemSize ), ( queueQUEUE_TYPE_BASE ) ) -#endif - -/** - * queue. h - *
- QueueHandle_t xQueueCreateStatic(
-							  UBaseType_t uxQueueLength,
-							  UBaseType_t uxItemSize,
-							  uint8_t *pucQueueStorageBuffer,
-							  StaticQueue_t *pxQueueBuffer
-						  );
- * 
- * - * Creates a new queue instance, and returns a handle by which the new queue - * can be referenced. - * - * Internally, within the FreeRTOS implementation, queues use two blocks of - * memory. The first block is used to hold the queue's data structures. The - * second block is used to hold items placed into the queue. If a queue is - * created using xQueueCreate() then both blocks of memory are automatically - * dynamically allocated inside the xQueueCreate() function. (see - * http://www.freertos.org/a00111.html). If a queue is created using - * xQueueCreateStatic() then the application writer must provide the memory that - * will get used by the queue. xQueueCreateStatic() therefore allows a queue to - * be created without using any dynamic memory allocation. - * - * http://www.FreeRTOS.org/Embedded-RTOS-Queues.html - * - * @param uxQueueLength The maximum number of items that the queue can contain. - * - * @param uxItemSize The number of bytes each item in the queue will require. - * Items are queued by copy, not by reference, so this is the number of bytes - * that will be copied for each posted item. Each item on the queue must be - * the same size. - * - * @param pucQueueStorageBuffer If uxItemSize is not zero then - * pucQueueStorageBuffer must point to a uint8_t array that is at least large - * enough to hold the maximum number of items that can be in the queue at any - * one time - which is ( uxQueueLength * uxItemsSize ) bytes. If uxItemSize is - * zero then pucQueueStorageBuffer can be NULL. - * - * @param pxQueueBuffer Must point to a variable of type StaticQueue_t, which - * will be used to hold the queue's data structure. - * - * @return If the queue is created then a handle to the created queue is - * returned. If pxQueueBuffer is NULL then NULL is returned. - * - * Example usage: -
- struct AMessage
- {
-	char ucMessageID;
-	char ucData[ 20 ];
- };
-
- #define QUEUE_LENGTH 10
- #define ITEM_SIZE sizeof( uint32_t )
-
- // xQueueBuffer will hold the queue structure.
- StaticQueue_t xQueueBuffer;
-
- // ucQueueStorage will hold the items posted to the queue.  Must be at least
- // [(queue length) * ( queue item size)] bytes long.
- uint8_t ucQueueStorage[ QUEUE_LENGTH * ITEM_SIZE ];
-
- void vATask( void *pvParameters )
- {
- QueueHandle_t xQueue1;
-
-	// Create a queue capable of containing 10 uint32_t values.
-	xQueue1 = xQueueCreate( QUEUE_LENGTH, // The number of items the queue can hold.
-							ITEM_SIZE	  // The size of each item in the queue
-							&( ucQueueStorage[ 0 ] ), // The buffer that will hold the items in the queue.
-							&xQueueBuffer ); // The buffer that will hold the queue structure.
-
-	// The queue is guaranteed to be created successfully as no dynamic memory
-	// allocation is used.  Therefore xQueue1 is now a handle to a valid queue.
-
-	// ... Rest of task code.
- }
- 
- * \defgroup xQueueCreateStatic xQueueCreateStatic - * \ingroup QueueManagement - */ -#if( configSUPPORT_STATIC_ALLOCATION == 1 ) - #define xQueueCreateStatic( uxQueueLength, uxItemSize, pucQueueStorage, pxQueueBuffer ) xQueueGenericCreateStatic( ( uxQueueLength ), ( uxItemSize ), ( pucQueueStorage ), ( pxQueueBuffer ), ( queueQUEUE_TYPE_BASE ) ) -#endif /* configSUPPORT_STATIC_ALLOCATION */ - -/** - * queue. h - *
- BaseType_t xQueueSendToToFront(
-								   QueueHandle_t	xQueue,
-								   const void		*pvItemToQueue,
-								   TickType_t		xTicksToWait
-							   );
- * 
- * - * Post an item to the front of a queue. The item is queued by copy, not by - * reference. This function must not be called from an interrupt service - * routine. See xQueueSendFromISR () for an alternative which may be used - * in an ISR. - * - * @param xQueue The handle to the queue on which the item is to be posted. - * - * @param pvItemToQueue A pointer to the item that is to be placed on the - * queue. The size of the items the queue will hold was defined when the - * queue was created, so this many bytes will be copied from pvItemToQueue - * into the queue storage area. - * - * @param xTicksToWait The maximum amount of time the task should block - * waiting for space to become available on the queue, should it already - * be full. The call will return immediately if this is set to 0 and the - * queue is full. The time is defined in tick periods so the constant - * portTICK_PERIOD_MS should be used to convert to real time if this is required. - * - * @return pdTRUE if the item was successfully posted, otherwise errQUEUE_FULL. - * - * Example usage: -
- struct AMessage
- {
-	char ucMessageID;
-	char ucData[ 20 ];
- } xMessage;
-
- uint32_t ulVar = 10UL;
-
- void vATask( void *pvParameters )
- {
- QueueHandle_t xQueue1, xQueue2;
- struct AMessage *pxMessage;
-
-	// Create a queue capable of containing 10 uint32_t values.
-	xQueue1 = xQueueCreate( 10, sizeof( uint32_t ) );
-
-	// Create a queue capable of containing 10 pointers to AMessage structures.
-	// These should be passed by pointer as they contain a lot of data.
-	xQueue2 = xQueueCreate( 10, sizeof( struct AMessage * ) );
-
-	// ...
-
-	if( xQueue1 != 0 )
-	{
-		// Send an uint32_t.  Wait for 10 ticks for space to become
-		// available if necessary.
-		if( xQueueSendToFront( xQueue1, ( void * ) &ulVar, ( TickType_t ) 10 ) != pdPASS )
-		{
-			// Failed to post the message, even after 10 ticks.
-		}
-	}
-
-	if( xQueue2 != 0 )
-	{
-		// Send a pointer to a struct AMessage object.  Don't block if the
-		// queue is already full.
-		pxMessage = & xMessage;
-		xQueueSendToFront( xQueue2, ( void * ) &pxMessage, ( TickType_t ) 0 );
-	}
-
-	// ... Rest of task code.
- }
- 
- * \defgroup xQueueSend xQueueSend - * \ingroup QueueManagement - */ -#define xQueueSendToFront( xQueue, pvItemToQueue, xTicksToWait ) xQueueGenericSend( ( xQueue ), ( pvItemToQueue ), ( xTicksToWait ), queueSEND_TO_FRONT ) - -/** - * queue. h - *
- BaseType_t xQueueSendToBack(
-								   QueueHandle_t	xQueue,
-								   const void		*pvItemToQueue,
-								   TickType_t		xTicksToWait
-							   );
- * 
- * - * This is a macro that calls xQueueGenericSend(). - * - * Post an item to the back of a queue. The item is queued by copy, not by - * reference. This function must not be called from an interrupt service - * routine. See xQueueSendFromISR () for an alternative which may be used - * in an ISR. - * - * @param xQueue The handle to the queue on which the item is to be posted. - * - * @param pvItemToQueue A pointer to the item that is to be placed on the - * queue. The size of the items the queue will hold was defined when the - * queue was created, so this many bytes will be copied from pvItemToQueue - * into the queue storage area. - * - * @param xTicksToWait The maximum amount of time the task should block - * waiting for space to become available on the queue, should it already - * be full. The call will return immediately if this is set to 0 and the queue - * is full. The time is defined in tick periods so the constant - * portTICK_PERIOD_MS should be used to convert to real time if this is required. - * - * @return pdTRUE if the item was successfully posted, otherwise errQUEUE_FULL. - * - * Example usage: -
- struct AMessage
- {
-	char ucMessageID;
-	char ucData[ 20 ];
- } xMessage;
-
- uint32_t ulVar = 10UL;
-
- void vATask( void *pvParameters )
- {
- QueueHandle_t xQueue1, xQueue2;
- struct AMessage *pxMessage;
-
-	// Create a queue capable of containing 10 uint32_t values.
-	xQueue1 = xQueueCreate( 10, sizeof( uint32_t ) );
-
-	// Create a queue capable of containing 10 pointers to AMessage structures.
-	// These should be passed by pointer as they contain a lot of data.
-	xQueue2 = xQueueCreate( 10, sizeof( struct AMessage * ) );
-
-	// ...
-
-	if( xQueue1 != 0 )
-	{
-		// Send an uint32_t.  Wait for 10 ticks for space to become
-		// available if necessary.
-		if( xQueueSendToBack( xQueue1, ( void * ) &ulVar, ( TickType_t ) 10 ) != pdPASS )
-		{
-			// Failed to post the message, even after 10 ticks.
-		}
-	}
-
-	if( xQueue2 != 0 )
-	{
-		// Send a pointer to a struct AMessage object.  Don't block if the
-		// queue is already full.
-		pxMessage = & xMessage;
-		xQueueSendToBack( xQueue2, ( void * ) &pxMessage, ( TickType_t ) 0 );
-	}
-
-	// ... Rest of task code.
- }
- 
- * \defgroup xQueueSend xQueueSend - * \ingroup QueueManagement - */ -#define xQueueSendToBack( xQueue, pvItemToQueue, xTicksToWait ) xQueueGenericSend( ( xQueue ), ( pvItemToQueue ), ( xTicksToWait ), queueSEND_TO_BACK ) - -/** - * queue. h - *
- BaseType_t xQueueSend(
-							  QueueHandle_t xQueue,
-							  const void * pvItemToQueue,
-							  TickType_t xTicksToWait
-						 );
- * 
- * - * This is a macro that calls xQueueGenericSend(). It is included for - * backward compatibility with versions of FreeRTOS.org that did not - * include the xQueueSendToFront() and xQueueSendToBack() macros. It is - * equivalent to xQueueSendToBack(). - * - * Post an item on a queue. The item is queued by copy, not by reference. - * This function must not be called from an interrupt service routine. - * See xQueueSendFromISR () for an alternative which may be used in an ISR. - * - * @param xQueue The handle to the queue on which the item is to be posted. - * - * @param pvItemToQueue A pointer to the item that is to be placed on the - * queue. The size of the items the queue will hold was defined when the - * queue was created, so this many bytes will be copied from pvItemToQueue - * into the queue storage area. - * - * @param xTicksToWait The maximum amount of time the task should block - * waiting for space to become available on the queue, should it already - * be full. The call will return immediately if this is set to 0 and the - * queue is full. The time is defined in tick periods so the constant - * portTICK_PERIOD_MS should be used to convert to real time if this is required. - * - * @return pdTRUE if the item was successfully posted, otherwise errQUEUE_FULL. - * - * Example usage: -
- struct AMessage
- {
-	char ucMessageID;
-	char ucData[ 20 ];
- } xMessage;
-
- uint32_t ulVar = 10UL;
-
- void vATask( void *pvParameters )
- {
- QueueHandle_t xQueue1, xQueue2;
- struct AMessage *pxMessage;
-
-	// Create a queue capable of containing 10 uint32_t values.
-	xQueue1 = xQueueCreate( 10, sizeof( uint32_t ) );
-
-	// Create a queue capable of containing 10 pointers to AMessage structures.
-	// These should be passed by pointer as they contain a lot of data.
-	xQueue2 = xQueueCreate( 10, sizeof( struct AMessage * ) );
-
-	// ...
-
-	if( xQueue1 != 0 )
-	{
-		// Send an uint32_t.  Wait for 10 ticks for space to become
-		// available if necessary.
-		if( xQueueSend( xQueue1, ( void * ) &ulVar, ( TickType_t ) 10 ) != pdPASS )
-		{
-			// Failed to post the message, even after 10 ticks.
-		}
-	}
-
-	if( xQueue2 != 0 )
-	{
-		// Send a pointer to a struct AMessage object.  Don't block if the
-		// queue is already full.
-		pxMessage = & xMessage;
-		xQueueSend( xQueue2, ( void * ) &pxMessage, ( TickType_t ) 0 );
-	}
-
-	// ... Rest of task code.
- }
- 
- * \defgroup xQueueSend xQueueSend - * \ingroup QueueManagement - */ -#define xQueueSend( xQueue, pvItemToQueue, xTicksToWait ) xQueueGenericSend( ( xQueue ), ( pvItemToQueue ), ( xTicksToWait ), queueSEND_TO_BACK ) - -/** - * queue. h - *
- BaseType_t xQueueOverwrite(
-							  QueueHandle_t xQueue,
-							  const void * pvItemToQueue
-						 );
- * 
- * - * Only for use with queues that have a length of one - so the queue is either - * empty or full. - * - * Post an item on a queue. If the queue is already full then overwrite the - * value held in the queue. The item is queued by copy, not by reference. - * - * This function must not be called from an interrupt service routine. - * See xQueueOverwriteFromISR () for an alternative which may be used in an ISR. - * - * @param xQueue The handle of the queue to which the data is being sent. - * - * @param pvItemToQueue A pointer to the item that is to be placed on the - * queue. The size of the items the queue will hold was defined when the - * queue was created, so this many bytes will be copied from pvItemToQueue - * into the queue storage area. - * - * @return xQueueOverwrite() is a macro that calls xQueueGenericSend(), and - * therefore has the same return values as xQueueSendToFront(). However, pdPASS - * is the only value that can be returned because xQueueOverwrite() will write - * to the queue even when the queue is already full. - * - * Example usage: -
-
- void vFunction( void *pvParameters )
- {
- QueueHandle_t xQueue;
- uint32_t ulVarToSend, ulValReceived;
-
-	// Create a queue to hold one uint32_t value.  It is strongly
-	// recommended *not* to use xQueueOverwrite() on queues that can
-	// contain more than one value, and doing so will trigger an assertion
-	// if configASSERT() is defined.
-	xQueue = xQueueCreate( 1, sizeof( uint32_t ) );
-
-	// Write the value 10 to the queue using xQueueOverwrite().
-	ulVarToSend = 10;
-	xQueueOverwrite( xQueue, &ulVarToSend );
-
-	// Peeking the queue should now return 10, but leave the value 10 in
-	// the queue.  A block time of zero is used as it is known that the
-	// queue holds a value.
-	ulValReceived = 0;
-	xQueuePeek( xQueue, &ulValReceived, 0 );
-
-	if( ulValReceived != 10 )
-	{
-		// Error unless the item was removed by a different task.
-	}
-
-	// The queue is still full.  Use xQueueOverwrite() to overwrite the
-	// value held in the queue with 100.
-	ulVarToSend = 100;
-	xQueueOverwrite( xQueue, &ulVarToSend );
-
-	// This time read from the queue, leaving the queue empty once more.
-	// A block time of 0 is used again.
-	xQueueReceive( xQueue, &ulValReceived, 0 );
-
-	// The value read should be the last value written, even though the
-	// queue was already full when the value was written.
-	if( ulValReceived != 100 )
-	{
-		// Error!
-	}
-
-	// ...
-}
- 
- * \defgroup xQueueOverwrite xQueueOverwrite - * \ingroup QueueManagement - */ -#define xQueueOverwrite( xQueue, pvItemToQueue ) xQueueGenericSend( ( xQueue ), ( pvItemToQueue ), 0, queueOVERWRITE ) - - -/** - * queue. h - *
- BaseType_t xQueueGenericSend(
-									QueueHandle_t xQueue,
-									const void * pvItemToQueue,
-									TickType_t xTicksToWait
-									BaseType_t xCopyPosition
-								);
- * 
- * - * It is preferred that the macros xQueueSend(), xQueueSendToFront() and - * xQueueSendToBack() are used in place of calling this function directly. - * - * Post an item on a queue. The item is queued by copy, not by reference. - * This function must not be called from an interrupt service routine. - * See xQueueSendFromISR () for an alternative which may be used in an ISR. - * - * @param xQueue The handle to the queue on which the item is to be posted. - * - * @param pvItemToQueue A pointer to the item that is to be placed on the - * queue. The size of the items the queue will hold was defined when the - * queue was created, so this many bytes will be copied from pvItemToQueue - * into the queue storage area. - * - * @param xTicksToWait The maximum amount of time the task should block - * waiting for space to become available on the queue, should it already - * be full. The call will return immediately if this is set to 0 and the - * queue is full. The time is defined in tick periods so the constant - * portTICK_PERIOD_MS should be used to convert to real time if this is required. - * - * @param xCopyPosition Can take the value queueSEND_TO_BACK to place the - * item at the back of the queue, or queueSEND_TO_FRONT to place the item - * at the front of the queue (for high priority messages). - * - * @return pdTRUE if the item was successfully posted, otherwise errQUEUE_FULL. - * - * Example usage: -
- struct AMessage
- {
-	char ucMessageID;
-	char ucData[ 20 ];
- } xMessage;
-
- uint32_t ulVar = 10UL;
-
- void vATask( void *pvParameters )
- {
- QueueHandle_t xQueue1, xQueue2;
- struct AMessage *pxMessage;
-
-	// Create a queue capable of containing 10 uint32_t values.
-	xQueue1 = xQueueCreate( 10, sizeof( uint32_t ) );
-
-	// Create a queue capable of containing 10 pointers to AMessage structures.
-	// These should be passed by pointer as they contain a lot of data.
-	xQueue2 = xQueueCreate( 10, sizeof( struct AMessage * ) );
-
-	// ...
-
-	if( xQueue1 != 0 )
-	{
-		// Send an uint32_t.  Wait for 10 ticks for space to become
-		// available if necessary.
-		if( xQueueGenericSend( xQueue1, ( void * ) &ulVar, ( TickType_t ) 10, queueSEND_TO_BACK ) != pdPASS )
-		{
-			// Failed to post the message, even after 10 ticks.
-		}
-	}
-
-	if( xQueue2 != 0 )
-	{
-		// Send a pointer to a struct AMessage object.  Don't block if the
-		// queue is already full.
-		pxMessage = & xMessage;
-		xQueueGenericSend( xQueue2, ( void * ) &pxMessage, ( TickType_t ) 0, queueSEND_TO_BACK );
-	}
-
-	// ... Rest of task code.
- }
- 
- * \defgroup xQueueSend xQueueSend - * \ingroup QueueManagement - */ -BaseType_t xQueueGenericSend( QueueHandle_t xQueue, const void * const pvItemToQueue, TickType_t xTicksToWait, const BaseType_t xCopyPosition ) PRIVILEGED_FUNCTION; - -/** - * queue. h - *
- BaseType_t xQueuePeek(
-							 QueueHandle_t xQueue,
-							 void * const pvBuffer,
-							 TickType_t xTicksToWait
-						 );
- * - * Receive an item from a queue without removing the item from the queue. - * The item is received by copy so a buffer of adequate size must be - * provided. The number of bytes copied into the buffer was defined when - * the queue was created. - * - * Successfully received items remain on the queue so will be returned again - * by the next call, or a call to xQueueReceive(). - * - * This macro must not be used in an interrupt service routine. See - * xQueuePeekFromISR() for an alternative that can be called from an interrupt - * service routine. - * - * @param xQueue The handle to the queue from which the item is to be - * received. - * - * @param pvBuffer Pointer to the buffer into which the received item will - * be copied. - * - * @param xTicksToWait The maximum amount of time the task should block - * waiting for an item to receive should the queue be empty at the time - * of the call. The time is defined in tick periods so the constant - * portTICK_PERIOD_MS should be used to convert to real time if this is required. - * xQueuePeek() will return immediately if xTicksToWait is 0 and the queue - * is empty. - * - * @return pdTRUE if an item was successfully received from the queue, - * otherwise pdFALSE. - * - * Example usage: -
- struct AMessage
- {
-	char ucMessageID;
-	char ucData[ 20 ];
- } xMessage;
-
- QueueHandle_t xQueue;
-
- // Task to create a queue and post a value.
- void vATask( void *pvParameters )
- {
- struct AMessage *pxMessage;
-
-	// Create a queue capable of containing 10 pointers to AMessage structures.
-	// These should be passed by pointer as they contain a lot of data.
-	xQueue = xQueueCreate( 10, sizeof( struct AMessage * ) );
-	if( xQueue == 0 )
-	{
-		// Failed to create the queue.
-	}
-
-	// ...
-
-	// Send a pointer to a struct AMessage object.  Don't block if the
-	// queue is already full.
-	pxMessage = & xMessage;
-	xQueueSend( xQueue, ( void * ) &pxMessage, ( TickType_t ) 0 );
-
-	// ... Rest of task code.
- }
-
- // Task to peek the data from the queue.
- void vADifferentTask( void *pvParameters )
- {
- struct AMessage *pxRxedMessage;
-
-	if( xQueue != 0 )
-	{
-		// Peek a message on the created queue.  Block for 10 ticks if a
-		// message is not immediately available.
-		if( xQueuePeek( xQueue, &( pxRxedMessage ), ( TickType_t ) 10 ) )
-		{
-			// pcRxedMessage now points to the struct AMessage variable posted
-			// by vATask, but the item still remains on the queue.
-		}
-	}
-
-	// ... Rest of task code.
- }
- 
- * \defgroup xQueuePeek xQueuePeek - * \ingroup QueueManagement - */ -BaseType_t xQueuePeek( QueueHandle_t xQueue, void * const pvBuffer, TickType_t xTicksToWait ) PRIVILEGED_FUNCTION; - -/** - * queue. h - *
- BaseType_t xQueuePeekFromISR(
-									QueueHandle_t xQueue,
-									void *pvBuffer,
-								);
- * - * A version of xQueuePeek() that can be called from an interrupt service - * routine (ISR). - * - * Receive an item from a queue without removing the item from the queue. - * The item is received by copy so a buffer of adequate size must be - * provided. The number of bytes copied into the buffer was defined when - * the queue was created. - * - * Successfully received items remain on the queue so will be returned again - * by the next call, or a call to xQueueReceive(). - * - * @param xQueue The handle to the queue from which the item is to be - * received. - * - * @param pvBuffer Pointer to the buffer into which the received item will - * be copied. - * - * @return pdTRUE if an item was successfully received from the queue, - * otherwise pdFALSE. - * - * \defgroup xQueuePeekFromISR xQueuePeekFromISR - * \ingroup QueueManagement - */ -BaseType_t xQueuePeekFromISR( QueueHandle_t xQueue, void * const pvBuffer ) PRIVILEGED_FUNCTION; - -/** - * queue. h - *
- BaseType_t xQueueReceive(
-								 QueueHandle_t xQueue,
-								 void *pvBuffer,
-								 TickType_t xTicksToWait
-							);
- * - * Receive an item from a queue. The item is received by copy so a buffer of - * adequate size must be provided. The number of bytes copied into the buffer - * was defined when the queue was created. - * - * Successfully received items are removed from the queue. - * - * This function must not be used in an interrupt service routine. See - * xQueueReceiveFromISR for an alternative that can. - * - * @param xQueue The handle to the queue from which the item is to be - * received. - * - * @param pvBuffer Pointer to the buffer into which the received item will - * be copied. - * - * @param xTicksToWait The maximum amount of time the task should block - * waiting for an item to receive should the queue be empty at the time - * of the call. xQueueReceive() will return immediately if xTicksToWait - * is zero and the queue is empty. The time is defined in tick periods so the - * constant portTICK_PERIOD_MS should be used to convert to real time if this is - * required. - * - * @return pdTRUE if an item was successfully received from the queue, - * otherwise pdFALSE. - * - * Example usage: -
- struct AMessage
- {
-	char ucMessageID;
-	char ucData[ 20 ];
- } xMessage;
-
- QueueHandle_t xQueue;
-
- // Task to create a queue and post a value.
- void vATask( void *pvParameters )
- {
- struct AMessage *pxMessage;
-
-	// Create a queue capable of containing 10 pointers to AMessage structures.
-	// These should be passed by pointer as they contain a lot of data.
-	xQueue = xQueueCreate( 10, sizeof( struct AMessage * ) );
-	if( xQueue == 0 )
-	{
-		// Failed to create the queue.
-	}
-
-	// ...
-
-	// Send a pointer to a struct AMessage object.  Don't block if the
-	// queue is already full.
-	pxMessage = & xMessage;
-	xQueueSend( xQueue, ( void * ) &pxMessage, ( TickType_t ) 0 );
-
-	// ... Rest of task code.
- }
-
- // Task to receive from the queue.
- void vADifferentTask( void *pvParameters )
- {
- struct AMessage *pxRxedMessage;
-
-	if( xQueue != 0 )
-	{
-		// Receive a message on the created queue.  Block for 10 ticks if a
-		// message is not immediately available.
-		if( xQueueReceive( xQueue, &( pxRxedMessage ), ( TickType_t ) 10 ) )
-		{
-			// pcRxedMessage now points to the struct AMessage variable posted
-			// by vATask.
-		}
-	}
-
-	// ... Rest of task code.
- }
- 
- * \defgroup xQueueReceive xQueueReceive - * \ingroup QueueManagement - */ -BaseType_t xQueueReceive( QueueHandle_t xQueue, void * const pvBuffer, TickType_t xTicksToWait ) PRIVILEGED_FUNCTION; - -/** - * queue. h - *
UBaseType_t uxQueueMessagesWaiting( const QueueHandle_t xQueue );
- * - * Return the number of messages stored in a queue. - * - * @param xQueue A handle to the queue being queried. - * - * @return The number of messages available in the queue. - * - * \defgroup uxQueueMessagesWaiting uxQueueMessagesWaiting - * \ingroup QueueManagement - */ -UBaseType_t uxQueueMessagesWaiting( const QueueHandle_t xQueue ) PRIVILEGED_FUNCTION; - -/** - * queue. h - *
UBaseType_t uxQueueSpacesAvailable( const QueueHandle_t xQueue );
- * - * Return the number of free spaces available in a queue. This is equal to the - * number of items that can be sent to the queue before the queue becomes full - * if no items are removed. - * - * @param xQueue A handle to the queue being queried. - * - * @return The number of spaces available in the queue. - * - * \defgroup uxQueueMessagesWaiting uxQueueMessagesWaiting - * \ingroup QueueManagement - */ -UBaseType_t uxQueueSpacesAvailable( const QueueHandle_t xQueue ) PRIVILEGED_FUNCTION; - -/** - * queue. h - *
void vQueueDelete( QueueHandle_t xQueue );
- * - * Delete a queue - freeing all the memory allocated for storing of items - * placed on the queue. - * - * @param xQueue A handle to the queue to be deleted. - * - * \defgroup vQueueDelete vQueueDelete - * \ingroup QueueManagement - */ -void vQueueDelete( QueueHandle_t xQueue ) PRIVILEGED_FUNCTION; - -/** - * queue. h - *
- BaseType_t xQueueSendToFrontFromISR(
-										 QueueHandle_t xQueue,
-										 const void *pvItemToQueue,
-										 BaseType_t *pxHigherPriorityTaskWoken
-									  );
- 
- * - * This is a macro that calls xQueueGenericSendFromISR(). - * - * Post an item to the front of a queue. It is safe to use this macro from - * within an interrupt service routine. - * - * Items are queued by copy not reference so it is preferable to only - * queue small items, especially when called from an ISR. In most cases - * it would be preferable to store a pointer to the item being queued. - * - * @param xQueue The handle to the queue on which the item is to be posted. - * - * @param pvItemToQueue A pointer to the item that is to be placed on the - * queue. The size of the items the queue will hold was defined when the - * queue was created, so this many bytes will be copied from pvItemToQueue - * into the queue storage area. - * - * @param pxHigherPriorityTaskWoken xQueueSendToFrontFromISR() will set - * *pxHigherPriorityTaskWoken to pdTRUE if sending to the queue caused a task - * to unblock, and the unblocked task has a priority higher than the currently - * running task. If xQueueSendToFromFromISR() sets this value to pdTRUE then - * a context switch should be requested before the interrupt is exited. - * - * @return pdTRUE if the data was successfully sent to the queue, otherwise - * errQUEUE_FULL. - * - * Example usage for buffered IO (where the ISR can obtain more than one value - * per call): -
- void vBufferISR( void )
- {
- char cIn;
- BaseType_t xHigherPrioritTaskWoken;
-
-	// We have not woken a task at the start of the ISR.
-	xHigherPriorityTaskWoken = pdFALSE;
-
-	// Loop until the buffer is empty.
-	do
-	{
-		// Obtain a byte from the buffer.
-		cIn = portINPUT_BYTE( RX_REGISTER_ADDRESS );
-
-		// Post the byte.
-		xQueueSendToFrontFromISR( xRxQueue, &cIn, &xHigherPriorityTaskWoken );
-
-	} while( portINPUT_BYTE( BUFFER_COUNT ) );
-
-	// Now the buffer is empty we can switch context if necessary.
-	if( xHigherPriorityTaskWoken )
-	{
-		taskYIELD ();
-	}
- }
- 
- * - * \defgroup xQueueSendFromISR xQueueSendFromISR - * \ingroup QueueManagement - */ -#define xQueueSendToFrontFromISR( xQueue, pvItemToQueue, pxHigherPriorityTaskWoken ) xQueueGenericSendFromISR( ( xQueue ), ( pvItemToQueue ), ( pxHigherPriorityTaskWoken ), queueSEND_TO_FRONT ) - - -/** - * queue. h - *
- BaseType_t xQueueSendToBackFromISR(
-										 QueueHandle_t xQueue,
-										 const void *pvItemToQueue,
-										 BaseType_t *pxHigherPriorityTaskWoken
-									  );
- 
- * - * This is a macro that calls xQueueGenericSendFromISR(). - * - * Post an item to the back of a queue. It is safe to use this macro from - * within an interrupt service routine. - * - * Items are queued by copy not reference so it is preferable to only - * queue small items, especially when called from an ISR. In most cases - * it would be preferable to store a pointer to the item being queued. - * - * @param xQueue The handle to the queue on which the item is to be posted. - * - * @param pvItemToQueue A pointer to the item that is to be placed on the - * queue. The size of the items the queue will hold was defined when the - * queue was created, so this many bytes will be copied from pvItemToQueue - * into the queue storage area. - * - * @param pxHigherPriorityTaskWoken xQueueSendToBackFromISR() will set - * *pxHigherPriorityTaskWoken to pdTRUE if sending to the queue caused a task - * to unblock, and the unblocked task has a priority higher than the currently - * running task. If xQueueSendToBackFromISR() sets this value to pdTRUE then - * a context switch should be requested before the interrupt is exited. - * - * @return pdTRUE if the data was successfully sent to the queue, otherwise - * errQUEUE_FULL. - * - * Example usage for buffered IO (where the ISR can obtain more than one value - * per call): -
- void vBufferISR( void )
- {
- char cIn;
- BaseType_t xHigherPriorityTaskWoken;
-
-	// We have not woken a task at the start of the ISR.
-	xHigherPriorityTaskWoken = pdFALSE;
-
-	// Loop until the buffer is empty.
-	do
-	{
-		// Obtain a byte from the buffer.
-		cIn = portINPUT_BYTE( RX_REGISTER_ADDRESS );
-
-		// Post the byte.
-		xQueueSendToBackFromISR( xRxQueue, &cIn, &xHigherPriorityTaskWoken );
-
-	} while( portINPUT_BYTE( BUFFER_COUNT ) );
-
-	// Now the buffer is empty we can switch context if necessary.
-	if( xHigherPriorityTaskWoken )
-	{
-		taskYIELD ();
-	}
- }
- 
- * - * \defgroup xQueueSendFromISR xQueueSendFromISR - * \ingroup QueueManagement - */ -#define xQueueSendToBackFromISR( xQueue, pvItemToQueue, pxHigherPriorityTaskWoken ) xQueueGenericSendFromISR( ( xQueue ), ( pvItemToQueue ), ( pxHigherPriorityTaskWoken ), queueSEND_TO_BACK ) - -/** - * queue. h - *
- BaseType_t xQueueOverwriteFromISR(
-							  QueueHandle_t xQueue,
-							  const void * pvItemToQueue,
-							  BaseType_t *pxHigherPriorityTaskWoken
-						 );
- * 
- * - * A version of xQueueOverwrite() that can be used in an interrupt service - * routine (ISR). - * - * Only for use with queues that can hold a single item - so the queue is either - * empty or full. - * - * Post an item on a queue. If the queue is already full then overwrite the - * value held in the queue. The item is queued by copy, not by reference. - * - * @param xQueue The handle to the queue on which the item is to be posted. - * - * @param pvItemToQueue A pointer to the item that is to be placed on the - * queue. The size of the items the queue will hold was defined when the - * queue was created, so this many bytes will be copied from pvItemToQueue - * into the queue storage area. - * - * @param pxHigherPriorityTaskWoken xQueueOverwriteFromISR() will set - * *pxHigherPriorityTaskWoken to pdTRUE if sending to the queue caused a task - * to unblock, and the unblocked task has a priority higher than the currently - * running task. If xQueueOverwriteFromISR() sets this value to pdTRUE then - * a context switch should be requested before the interrupt is exited. - * - * @return xQueueOverwriteFromISR() is a macro that calls - * xQueueGenericSendFromISR(), and therefore has the same return values as - * xQueueSendToFrontFromISR(). However, pdPASS is the only value that can be - * returned because xQueueOverwriteFromISR() will write to the queue even when - * the queue is already full. - * - * Example usage: -
-
- QueueHandle_t xQueue;
-
- void vFunction( void *pvParameters )
- {
- 	// Create a queue to hold one uint32_t value.  It is strongly
-	// recommended *not* to use xQueueOverwriteFromISR() on queues that can
-	// contain more than one value, and doing so will trigger an assertion
-	// if configASSERT() is defined.
-	xQueue = xQueueCreate( 1, sizeof( uint32_t ) );
-}
-
-void vAnInterruptHandler( void )
-{
-// xHigherPriorityTaskWoken must be set to pdFALSE before it is used.
-BaseType_t xHigherPriorityTaskWoken = pdFALSE;
-uint32_t ulVarToSend, ulValReceived;
-
-	// Write the value 10 to the queue using xQueueOverwriteFromISR().
-	ulVarToSend = 10;
-	xQueueOverwriteFromISR( xQueue, &ulVarToSend, &xHigherPriorityTaskWoken );
-
-	// The queue is full, but calling xQueueOverwriteFromISR() again will still
-	// pass because the value held in the queue will be overwritten with the
-	// new value.
-	ulVarToSend = 100;
-	xQueueOverwriteFromISR( xQueue, &ulVarToSend, &xHigherPriorityTaskWoken );
-
-	// Reading from the queue will now return 100.
-
-	// ...
-
-	if( xHigherPrioritytaskWoken == pdTRUE )
-	{
-		// Writing to the queue caused a task to unblock and the unblocked task
-		// has a priority higher than or equal to the priority of the currently
-		// executing task (the task this interrupt interrupted).  Perform a context
-		// switch so this interrupt returns directly to the unblocked task.
-		portYIELD_FROM_ISR(); // or portEND_SWITCHING_ISR() depending on the port.
-	}
-}
- 
- * \defgroup xQueueOverwriteFromISR xQueueOverwriteFromISR - * \ingroup QueueManagement - */ -#define xQueueOverwriteFromISR( xQueue, pvItemToQueue, pxHigherPriorityTaskWoken ) xQueueGenericSendFromISR( ( xQueue ), ( pvItemToQueue ), ( pxHigherPriorityTaskWoken ), queueOVERWRITE ) - -/** - * queue. h - *
- BaseType_t xQueueSendFromISR(
-									 QueueHandle_t xQueue,
-									 const void *pvItemToQueue,
-									 BaseType_t *pxHigherPriorityTaskWoken
-								);
- 
- * - * This is a macro that calls xQueueGenericSendFromISR(). It is included - * for backward compatibility with versions of FreeRTOS.org that did not - * include the xQueueSendToBackFromISR() and xQueueSendToFrontFromISR() - * macros. - * - * Post an item to the back of a queue. It is safe to use this function from - * within an interrupt service routine. - * - * Items are queued by copy not reference so it is preferable to only - * queue small items, especially when called from an ISR. In most cases - * it would be preferable to store a pointer to the item being queued. - * - * @param xQueue The handle to the queue on which the item is to be posted. - * - * @param pvItemToQueue A pointer to the item that is to be placed on the - * queue. The size of the items the queue will hold was defined when the - * queue was created, so this many bytes will be copied from pvItemToQueue - * into the queue storage area. - * - * @param pxHigherPriorityTaskWoken xQueueSendFromISR() will set - * *pxHigherPriorityTaskWoken to pdTRUE if sending to the queue caused a task - * to unblock, and the unblocked task has a priority higher than the currently - * running task. If xQueueSendFromISR() sets this value to pdTRUE then - * a context switch should be requested before the interrupt is exited. - * - * @return pdTRUE if the data was successfully sent to the queue, otherwise - * errQUEUE_FULL. - * - * Example usage for buffered IO (where the ISR can obtain more than one value - * per call): -
- void vBufferISR( void )
- {
- char cIn;
- BaseType_t xHigherPriorityTaskWoken;
-
-	// We have not woken a task at the start of the ISR.
-	xHigherPriorityTaskWoken = pdFALSE;
-
-	// Loop until the buffer is empty.
-	do
-	{
-		// Obtain a byte from the buffer.
-		cIn = portINPUT_BYTE( RX_REGISTER_ADDRESS );
-
-		// Post the byte.
-		xQueueSendFromISR( xRxQueue, &cIn, &xHigherPriorityTaskWoken );
-
-	} while( portINPUT_BYTE( BUFFER_COUNT ) );
-
-	// Now the buffer is empty we can switch context if necessary.
-	if( xHigherPriorityTaskWoken )
-	{
-		// Actual macro used here is port specific.
-		portYIELD_FROM_ISR ();
-	}
- }
- 
- * - * \defgroup xQueueSendFromISR xQueueSendFromISR - * \ingroup QueueManagement - */ -#define xQueueSendFromISR( xQueue, pvItemToQueue, pxHigherPriorityTaskWoken ) xQueueGenericSendFromISR( ( xQueue ), ( pvItemToQueue ), ( pxHigherPriorityTaskWoken ), queueSEND_TO_BACK ) - -/** - * queue. h - *
- BaseType_t xQueueGenericSendFromISR(
-										   QueueHandle_t		xQueue,
-										   const	void	*pvItemToQueue,
-										   BaseType_t	*pxHigherPriorityTaskWoken,
-										   BaseType_t	xCopyPosition
-									   );
- 
- * - * It is preferred that the macros xQueueSendFromISR(), - * xQueueSendToFrontFromISR() and xQueueSendToBackFromISR() be used in place - * of calling this function directly. xQueueGiveFromISR() is an - * equivalent for use by semaphores that don't actually copy any data. - * - * Post an item on a queue. It is safe to use this function from within an - * interrupt service routine. - * - * Items are queued by copy not reference so it is preferable to only - * queue small items, especially when called from an ISR. In most cases - * it would be preferable to store a pointer to the item being queued. - * - * @param xQueue The handle to the queue on which the item is to be posted. - * - * @param pvItemToQueue A pointer to the item that is to be placed on the - * queue. The size of the items the queue will hold was defined when the - * queue was created, so this many bytes will be copied from pvItemToQueue - * into the queue storage area. - * - * @param pxHigherPriorityTaskWoken xQueueGenericSendFromISR() will set - * *pxHigherPriorityTaskWoken to pdTRUE if sending to the queue caused a task - * to unblock, and the unblocked task has a priority higher than the currently - * running task. If xQueueGenericSendFromISR() sets this value to pdTRUE then - * a context switch should be requested before the interrupt is exited. - * - * @param xCopyPosition Can take the value queueSEND_TO_BACK to place the - * item at the back of the queue, or queueSEND_TO_FRONT to place the item - * at the front of the queue (for high priority messages). - * - * @return pdTRUE if the data was successfully sent to the queue, otherwise - * errQUEUE_FULL. - * - * Example usage for buffered IO (where the ISR can obtain more than one value - * per call): -
- void vBufferISR( void )
- {
- char cIn;
- BaseType_t xHigherPriorityTaskWokenByPost;
-
-	// We have not woken a task at the start of the ISR.
-	xHigherPriorityTaskWokenByPost = pdFALSE;
-
-	// Loop until the buffer is empty.
-	do
-	{
-		// Obtain a byte from the buffer.
-		cIn = portINPUT_BYTE( RX_REGISTER_ADDRESS );
-
-		// Post each byte.
-		xQueueGenericSendFromISR( xRxQueue, &cIn, &xHigherPriorityTaskWokenByPost, queueSEND_TO_BACK );
-
-	} while( portINPUT_BYTE( BUFFER_COUNT ) );
-
-	// Now the buffer is empty we can switch context if necessary.  Note that the
-	// name of the yield function required is port specific.
-	if( xHigherPriorityTaskWokenByPost )
-	{
-		portYIELD_FROM_ISR();
-	}
- }
- 
- * - * \defgroup xQueueSendFromISR xQueueSendFromISR - * \ingroup QueueManagement - */ -BaseType_t xQueueGenericSendFromISR( QueueHandle_t xQueue, const void * const pvItemToQueue, BaseType_t * const pxHigherPriorityTaskWoken, const BaseType_t xCopyPosition ) PRIVILEGED_FUNCTION; -BaseType_t xQueueGiveFromISR( QueueHandle_t xQueue, BaseType_t * const pxHigherPriorityTaskWoken ) PRIVILEGED_FUNCTION; - -/** - * queue. h - *
- BaseType_t xQueueReceiveFromISR(
-									   QueueHandle_t	xQueue,
-									   void	*pvBuffer,
-									   BaseType_t *pxTaskWoken
-								   );
- * 
- * - * Receive an item from a queue. It is safe to use this function from within an - * interrupt service routine. - * - * @param xQueue The handle to the queue from which the item is to be - * received. - * - * @param pvBuffer Pointer to the buffer into which the received item will - * be copied. - * - * @param pxTaskWoken A task may be blocked waiting for space to become - * available on the queue. If xQueueReceiveFromISR causes such a task to - * unblock *pxTaskWoken will get set to pdTRUE, otherwise *pxTaskWoken will - * remain unchanged. - * - * @return pdTRUE if an item was successfully received from the queue, - * otherwise pdFALSE. - * - * Example usage: -
-
- QueueHandle_t xQueue;
-
- // Function to create a queue and post some values.
- void vAFunction( void *pvParameters )
- {
- char cValueToPost;
- const TickType_t xTicksToWait = ( TickType_t )0xff;
-
-	// Create a queue capable of containing 10 characters.
-	xQueue = xQueueCreate( 10, sizeof( char ) );
-	if( xQueue == 0 )
-	{
-		// Failed to create the queue.
-	}
-
-	// ...
-
-	// Post some characters that will be used within an ISR.  If the queue
-	// is full then this task will block for xTicksToWait ticks.
-	cValueToPost = 'a';
-	xQueueSend( xQueue, ( void * ) &cValueToPost, xTicksToWait );
-	cValueToPost = 'b';
-	xQueueSend( xQueue, ( void * ) &cValueToPost, xTicksToWait );
-
-	// ... keep posting characters ... this task may block when the queue
-	// becomes full.
-
-	cValueToPost = 'c';
-	xQueueSend( xQueue, ( void * ) &cValueToPost, xTicksToWait );
- }
-
- // ISR that outputs all the characters received on the queue.
- void vISR_Routine( void )
- {
- BaseType_t xTaskWokenByReceive = pdFALSE;
- char cRxedChar;
-
-	while( xQueueReceiveFromISR( xQueue, ( void * ) &cRxedChar, &xTaskWokenByReceive) )
-	{
-		// A character was received.  Output the character now.
-		vOutputCharacter( cRxedChar );
-
-		// If removing the character from the queue woke the task that was
-		// posting onto the queue cTaskWokenByReceive will have been set to
-		// pdTRUE.  No matter how many times this loop iterates only one
-		// task will be woken.
-	}
-
-	if( cTaskWokenByPost != ( char ) pdFALSE;
-	{
-		taskYIELD ();
-	}
- }
- 
- * \defgroup xQueueReceiveFromISR xQueueReceiveFromISR - * \ingroup QueueManagement - */ -BaseType_t xQueueReceiveFromISR( QueueHandle_t xQueue, void * const pvBuffer, BaseType_t * const pxHigherPriorityTaskWoken ) PRIVILEGED_FUNCTION; - -/* - * Utilities to query queues that are safe to use from an ISR. These utilities - * should be used only from witin an ISR, or within a critical section. - */ -BaseType_t xQueueIsQueueEmptyFromISR( const QueueHandle_t xQueue ) PRIVILEGED_FUNCTION; -BaseType_t xQueueIsQueueFullFromISR( const QueueHandle_t xQueue ) PRIVILEGED_FUNCTION; -UBaseType_t uxQueueMessagesWaitingFromISR( const QueueHandle_t xQueue ) PRIVILEGED_FUNCTION; - -/* - * The functions defined above are for passing data to and from tasks. The - * functions below are the equivalents for passing data to and from - * co-routines. - * - * These functions are called from the co-routine macro implementation and - * should not be called directly from application code. Instead use the macro - * wrappers defined within croutine.h. - */ -BaseType_t xQueueCRSendFromISR( QueueHandle_t xQueue, const void *pvItemToQueue, BaseType_t xCoRoutinePreviouslyWoken ); -BaseType_t xQueueCRReceiveFromISR( QueueHandle_t xQueue, void *pvBuffer, BaseType_t *pxTaskWoken ); -BaseType_t xQueueCRSend( QueueHandle_t xQueue, const void *pvItemToQueue, TickType_t xTicksToWait ); -BaseType_t xQueueCRReceive( QueueHandle_t xQueue, void *pvBuffer, TickType_t xTicksToWait ); - -/* - * For internal use only. Use xSemaphoreCreateMutex(), - * xSemaphoreCreateCounting() or xSemaphoreGetMutexHolder() instead of calling - * these functions directly. - */ -QueueHandle_t xQueueCreateMutex( const uint8_t ucQueueType ) PRIVILEGED_FUNCTION; -QueueHandle_t xQueueCreateMutexStatic( const uint8_t ucQueueType, StaticQueue_t *pxStaticQueue ) PRIVILEGED_FUNCTION; -QueueHandle_t xQueueCreateCountingSemaphore( const UBaseType_t uxMaxCount, const UBaseType_t uxInitialCount ) PRIVILEGED_FUNCTION; -QueueHandle_t xQueueCreateCountingSemaphoreStatic( const UBaseType_t uxMaxCount, const UBaseType_t uxInitialCount, StaticQueue_t *pxStaticQueue ) PRIVILEGED_FUNCTION; -BaseType_t xQueueSemaphoreTake( QueueHandle_t xQueue, TickType_t xTicksToWait ) PRIVILEGED_FUNCTION; -TaskHandle_t xQueueGetMutexHolder( QueueHandle_t xSemaphore ) PRIVILEGED_FUNCTION; -TaskHandle_t xQueueGetMutexHolderFromISR( QueueHandle_t xSemaphore ) PRIVILEGED_FUNCTION; - -/* - * For internal use only. Use xSemaphoreTakeMutexRecursive() or - * xSemaphoreGiveMutexRecursive() instead of calling these functions directly. - */ -BaseType_t xQueueTakeMutexRecursive( QueueHandle_t xMutex, TickType_t xTicksToWait ) PRIVILEGED_FUNCTION; -BaseType_t xQueueGiveMutexRecursive( QueueHandle_t xMutex ) PRIVILEGED_FUNCTION; - -/* - * Reset a queue back to its original empty state. The return value is now - * obsolete and is always set to pdPASS. - */ -#define xQueueReset( xQueue ) xQueueGenericReset( xQueue, pdFALSE ) - -/* - * The registry is provided as a means for kernel aware debuggers to - * locate queues, semaphores and mutexes. Call vQueueAddToRegistry() add - * a queue, semaphore or mutex handle to the registry if you want the handle - * to be available to a kernel aware debugger. If you are not using a kernel - * aware debugger then this function can be ignored. - * - * configQUEUE_REGISTRY_SIZE defines the maximum number of handles the - * registry can hold. configQUEUE_REGISTRY_SIZE must be greater than 0 - * within FreeRTOSConfig.h for the registry to be available. Its value - * does not effect the number of queues, semaphores and mutexes that can be - * created - just the number that the registry can hold. - * - * @param xQueue The handle of the queue being added to the registry. This - * is the handle returned by a call to xQueueCreate(). Semaphore and mutex - * handles can also be passed in here. - * - * @param pcName The name to be associated with the handle. This is the - * name that the kernel aware debugger will display. The queue registry only - * stores a pointer to the string - so the string must be persistent (global or - * preferably in ROM/Flash), not on the stack. - */ -#if( configQUEUE_REGISTRY_SIZE > 0 ) - void vQueueAddToRegistry( QueueHandle_t xQueue, const char *pcQueueName ) PRIVILEGED_FUNCTION; /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ -#endif - -/* - * The registry is provided as a means for kernel aware debuggers to - * locate queues, semaphores and mutexes. Call vQueueAddToRegistry() add - * a queue, semaphore or mutex handle to the registry if you want the handle - * to be available to a kernel aware debugger, and vQueueUnregisterQueue() to - * remove the queue, semaphore or mutex from the register. If you are not using - * a kernel aware debugger then this function can be ignored. - * - * @param xQueue The handle of the queue being removed from the registry. - */ -#if( configQUEUE_REGISTRY_SIZE > 0 ) - void vQueueUnregisterQueue( QueueHandle_t xQueue ) PRIVILEGED_FUNCTION; -#endif - -/* - * The queue registry is provided as a means for kernel aware debuggers to - * locate queues, semaphores and mutexes. Call pcQueueGetName() to look - * up and return the name of a queue in the queue registry from the queue's - * handle. - * - * @param xQueue The handle of the queue the name of which will be returned. - * @return If the queue is in the registry then a pointer to the name of the - * queue is returned. If the queue is not in the registry then NULL is - * returned. - */ -#if( configQUEUE_REGISTRY_SIZE > 0 ) - const char *pcQueueGetName( QueueHandle_t xQueue ) PRIVILEGED_FUNCTION; /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ -#endif - -/* - * Generic version of the function used to creaet a queue using dynamic memory - * allocation. This is called by other functions and macros that create other - * RTOS objects that use the queue structure as their base. - */ -#if( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) - QueueHandle_t xQueueGenericCreate( const UBaseType_t uxQueueLength, const UBaseType_t uxItemSize, const uint8_t ucQueueType ) PRIVILEGED_FUNCTION; -#endif - -/* - * Generic version of the function used to creaet a queue using dynamic memory - * allocation. This is called by other functions and macros that create other - * RTOS objects that use the queue structure as their base. - */ -#if( configSUPPORT_STATIC_ALLOCATION == 1 ) - QueueHandle_t xQueueGenericCreateStatic( const UBaseType_t uxQueueLength, const UBaseType_t uxItemSize, uint8_t *pucQueueStorage, StaticQueue_t *pxStaticQueue, const uint8_t ucQueueType ) PRIVILEGED_FUNCTION; -#endif - -/* - * Queue sets provide a mechanism to allow a task to block (pend) on a read - * operation from multiple queues or semaphores simultaneously. - * - * See FreeRTOS/Source/Demo/Common/Minimal/QueueSet.c for an example using this - * function. - * - * A queue set must be explicitly created using a call to xQueueCreateSet() - * before it can be used. Once created, standard FreeRTOS queues and semaphores - * can be added to the set using calls to xQueueAddToSet(). - * xQueueSelectFromSet() is then used to determine which, if any, of the queues - * or semaphores contained in the set is in a state where a queue read or - * semaphore take operation would be successful. - * - * Note 1: See the documentation on http://wwwFreeRTOS.org/RTOS-queue-sets.html - * for reasons why queue sets are very rarely needed in practice as there are - * simpler methods of blocking on multiple objects. - * - * Note 2: Blocking on a queue set that contains a mutex will not cause the - * mutex holder to inherit the priority of the blocked task. - * - * Note 3: An additional 4 bytes of RAM is required for each space in a every - * queue added to a queue set. Therefore counting semaphores that have a high - * maximum count value should not be added to a queue set. - * - * Note 4: A receive (in the case of a queue) or take (in the case of a - * semaphore) operation must not be performed on a member of a queue set unless - * a call to xQueueSelectFromSet() has first returned a handle to that set member. - * - * @param uxEventQueueLength Queue sets store events that occur on - * the queues and semaphores contained in the set. uxEventQueueLength specifies - * the maximum number of events that can be queued at once. To be absolutely - * certain that events are not lost uxEventQueueLength should be set to the - * total sum of the length of the queues added to the set, where binary - * semaphores and mutexes have a length of 1, and counting semaphores have a - * length set by their maximum count value. Examples: - * + If a queue set is to hold a queue of length 5, another queue of length 12, - * and a binary semaphore, then uxEventQueueLength should be set to - * (5 + 12 + 1), or 18. - * + If a queue set is to hold three binary semaphores then uxEventQueueLength - * should be set to (1 + 1 + 1 ), or 3. - * + If a queue set is to hold a counting semaphore that has a maximum count of - * 5, and a counting semaphore that has a maximum count of 3, then - * uxEventQueueLength should be set to (5 + 3), or 8. - * - * @return If the queue set is created successfully then a handle to the created - * queue set is returned. Otherwise NULL is returned. - */ -QueueSetHandle_t xQueueCreateSet( const UBaseType_t uxEventQueueLength ) PRIVILEGED_FUNCTION; - -/* - * Adds a queue or semaphore to a queue set that was previously created by a - * call to xQueueCreateSet(). - * - * See FreeRTOS/Source/Demo/Common/Minimal/QueueSet.c for an example using this - * function. - * - * Note 1: A receive (in the case of a queue) or take (in the case of a - * semaphore) operation must not be performed on a member of a queue set unless - * a call to xQueueSelectFromSet() has first returned a handle to that set member. - * - * @param xQueueOrSemaphore The handle of the queue or semaphore being added to - * the queue set (cast to an QueueSetMemberHandle_t type). - * - * @param xQueueSet The handle of the queue set to which the queue or semaphore - * is being added. - * - * @return If the queue or semaphore was successfully added to the queue set - * then pdPASS is returned. If the queue could not be successfully added to the - * queue set because it is already a member of a different queue set then pdFAIL - * is returned. - */ -BaseType_t xQueueAddToSet( QueueSetMemberHandle_t xQueueOrSemaphore, QueueSetHandle_t xQueueSet ) PRIVILEGED_FUNCTION; - -/* - * Removes a queue or semaphore from a queue set. A queue or semaphore can only - * be removed from a set if the queue or semaphore is empty. - * - * See FreeRTOS/Source/Demo/Common/Minimal/QueueSet.c for an example using this - * function. - * - * @param xQueueOrSemaphore The handle of the queue or semaphore being removed - * from the queue set (cast to an QueueSetMemberHandle_t type). - * - * @param xQueueSet The handle of the queue set in which the queue or semaphore - * is included. - * - * @return If the queue or semaphore was successfully removed from the queue set - * then pdPASS is returned. If the queue was not in the queue set, or the - * queue (or semaphore) was not empty, then pdFAIL is returned. - */ -BaseType_t xQueueRemoveFromSet( QueueSetMemberHandle_t xQueueOrSemaphore, QueueSetHandle_t xQueueSet ) PRIVILEGED_FUNCTION; - -/* - * xQueueSelectFromSet() selects from the members of a queue set a queue or - * semaphore that either contains data (in the case of a queue) or is available - * to take (in the case of a semaphore). xQueueSelectFromSet() effectively - * allows a task to block (pend) on a read operation on all the queues and - * semaphores in a queue set simultaneously. - * - * See FreeRTOS/Source/Demo/Common/Minimal/QueueSet.c for an example using this - * function. - * - * Note 1: See the documentation on http://wwwFreeRTOS.org/RTOS-queue-sets.html - * for reasons why queue sets are very rarely needed in practice as there are - * simpler methods of blocking on multiple objects. - * - * Note 2: Blocking on a queue set that contains a mutex will not cause the - * mutex holder to inherit the priority of the blocked task. - * - * Note 3: A receive (in the case of a queue) or take (in the case of a - * semaphore) operation must not be performed on a member of a queue set unless - * a call to xQueueSelectFromSet() has first returned a handle to that set member. - * - * @param xQueueSet The queue set on which the task will (potentially) block. - * - * @param xTicksToWait The maximum time, in ticks, that the calling task will - * remain in the Blocked state (with other tasks executing) to wait for a member - * of the queue set to be ready for a successful queue read or semaphore take - * operation. - * - * @return xQueueSelectFromSet() will return the handle of a queue (cast to - * a QueueSetMemberHandle_t type) contained in the queue set that contains data, - * or the handle of a semaphore (cast to a QueueSetMemberHandle_t type) contained - * in the queue set that is available, or NULL if no such queue or semaphore - * exists before before the specified block time expires. - */ -QueueSetMemberHandle_t xQueueSelectFromSet( QueueSetHandle_t xQueueSet, const TickType_t xTicksToWait ) PRIVILEGED_FUNCTION; - -/* - * A version of xQueueSelectFromSet() that can be used from an ISR. - */ -QueueSetMemberHandle_t xQueueSelectFromSetFromISR( QueueSetHandle_t xQueueSet ) PRIVILEGED_FUNCTION; - -/* Not public API functions. */ -void vQueueWaitForMessageRestricted( QueueHandle_t xQueue, TickType_t xTicksToWait, const BaseType_t xWaitIndefinitely ) PRIVILEGED_FUNCTION; -BaseType_t xQueueGenericReset( QueueHandle_t xQueue, BaseType_t xNewQueue ) PRIVILEGED_FUNCTION; -void vQueueSetQueueNumber( QueueHandle_t xQueue, UBaseType_t uxQueueNumber ) PRIVILEGED_FUNCTION; -UBaseType_t uxQueueGetQueueNumber( QueueHandle_t xQueue ) PRIVILEGED_FUNCTION; -uint8_t ucQueueGetQueueType( QueueHandle_t xQueue ) PRIVILEGED_FUNCTION; - - -#ifdef __cplusplus -} -#endif - -#endif /* QUEUE_H */ - diff --git a/rtos/freertos/abstraction_layer_freertos/include/semphr.h b/rtos/freertos/abstraction_layer_freertos/include/semphr.h deleted file mode 100644 index 0f01948c..00000000 --- a/rtos/freertos/abstraction_layer_freertos/include/semphr.h +++ /dev/null @@ -1,1140 +0,0 @@ -/* - * FreeRTOS Kernel V10.3.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. - * - * Permission is hereby granted, free of charge, to any person obtaining a copy of - * this software and associated documentation files (the "Software"), to deal in - * the Software without restriction, including without limitation the rights to - * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of - * the Software, and to permit persons to whom the Software is furnished to do so, - * subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS - * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR - * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER - * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - * - * http://www.FreeRTOS.org - * http://aws.amazon.com/freertos - * - * 1 tab == 4 spaces! - */ - -#ifndef SEMAPHORE_H -#define SEMAPHORE_H - -#ifndef INC_FREERTOS_H - #error "include FreeRTOS.h" must appear in source files before "include semphr.h" -#endif - -#include "queue.h" - -typedef QueueHandle_t SemaphoreHandle_t; - -#define semBINARY_SEMAPHORE_QUEUE_LENGTH ( ( uint8_t ) 1U ) -#define semSEMAPHORE_QUEUE_ITEM_LENGTH ( ( uint8_t ) 0U ) -#define semGIVE_BLOCK_TIME ( ( TickType_t ) 0U ) - - -/** - * semphr. h - *
vSemaphoreCreateBinary( SemaphoreHandle_t xSemaphore )
- * - * In many usage scenarios it is faster and more memory efficient to use a - * direct to task notification in place of a binary semaphore! - * http://www.freertos.org/RTOS-task-notifications.html - * - * This old vSemaphoreCreateBinary() macro is now deprecated in favour of the - * xSemaphoreCreateBinary() function. Note that binary semaphores created using - * the vSemaphoreCreateBinary() macro are created in a state such that the - * first call to 'take' the semaphore would pass, whereas binary semaphores - * created using xSemaphoreCreateBinary() are created in a state such that the - * the semaphore must first be 'given' before it can be 'taken'. - * - * Macro that implements a semaphore by using the existing queue mechanism. - * The queue length is 1 as this is a binary semaphore. The data size is 0 - * as we don't want to actually store any data - we just want to know if the - * queue is empty or full. - * - * This type of semaphore can be used for pure synchronisation between tasks or - * between an interrupt and a task. The semaphore need not be given back once - * obtained, so one task/interrupt can continuously 'give' the semaphore while - * another continuously 'takes' the semaphore. For this reason this type of - * semaphore does not use a priority inheritance mechanism. For an alternative - * that does use priority inheritance see xSemaphoreCreateMutex(). - * - * @param xSemaphore Handle to the created semaphore. Should be of type SemaphoreHandle_t. - * - * Example usage: -
- SemaphoreHandle_t xSemaphore = NULL;
-
- void vATask( void * pvParameters )
- {
-    // Semaphore cannot be used before a call to vSemaphoreCreateBinary ().
-    // This is a macro so pass the variable in directly.
-    vSemaphoreCreateBinary( xSemaphore );
-
-    if( xSemaphore != NULL )
-    {
-        // The semaphore was created successfully.
-        // The semaphore can now be used.
-    }
- }
- 
- * \defgroup vSemaphoreCreateBinary vSemaphoreCreateBinary - * \ingroup Semaphores - */ -#if( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) - #define vSemaphoreCreateBinary( xSemaphore ) \ - { \ - ( xSemaphore ) = xQueueGenericCreate( ( UBaseType_t ) 1, semSEMAPHORE_QUEUE_ITEM_LENGTH, queueQUEUE_TYPE_BINARY_SEMAPHORE ); \ - if( ( xSemaphore ) != NULL ) \ - { \ - ( void ) xSemaphoreGive( ( xSemaphore ) ); \ - } \ - } -#endif - -/** - * semphr. h - *
SemaphoreHandle_t xSemaphoreCreateBinary( void )
- * - * Creates a new binary semaphore instance, and returns a handle by which the - * new semaphore can be referenced. - * - * In many usage scenarios it is faster and more memory efficient to use a - * direct to task notification in place of a binary semaphore! - * http://www.freertos.org/RTOS-task-notifications.html - * - * Internally, within the FreeRTOS implementation, binary semaphores use a block - * of memory, in which the semaphore structure is stored. If a binary semaphore - * is created using xSemaphoreCreateBinary() then the required memory is - * automatically dynamically allocated inside the xSemaphoreCreateBinary() - * function. (see http://www.freertos.org/a00111.html). If a binary semaphore - * is created using xSemaphoreCreateBinaryStatic() then the application writer - * must provide the memory. xSemaphoreCreateBinaryStatic() therefore allows a - * binary semaphore to be created without using any dynamic memory allocation. - * - * The old vSemaphoreCreateBinary() macro is now deprecated in favour of this - * xSemaphoreCreateBinary() function. Note that binary semaphores created using - * the vSemaphoreCreateBinary() macro are created in a state such that the - * first call to 'take' the semaphore would pass, whereas binary semaphores - * created using xSemaphoreCreateBinary() are created in a state such that the - * the semaphore must first be 'given' before it can be 'taken'. - * - * This type of semaphore can be used for pure synchronisation between tasks or - * between an interrupt and a task. The semaphore need not be given back once - * obtained, so one task/interrupt can continuously 'give' the semaphore while - * another continuously 'takes' the semaphore. For this reason this type of - * semaphore does not use a priority inheritance mechanism. For an alternative - * that does use priority inheritance see xSemaphoreCreateMutex(). - * - * @return Handle to the created semaphore, or NULL if the memory required to - * hold the semaphore's data structures could not be allocated. - * - * Example usage: -
- SemaphoreHandle_t xSemaphore = NULL;
-
- void vATask( void * pvParameters )
- {
-    // Semaphore cannot be used before a call to xSemaphoreCreateBinary().
-    // This is a macro so pass the variable in directly.
-    xSemaphore = xSemaphoreCreateBinary();
-
-    if( xSemaphore != NULL )
-    {
-        // The semaphore was created successfully.
-        // The semaphore can now be used.
-    }
- }
- 
- * \defgroup xSemaphoreCreateBinary xSemaphoreCreateBinary - * \ingroup Semaphores - */ -#if( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) - #define xSemaphoreCreateBinary() xQueueGenericCreate( ( UBaseType_t ) 1, semSEMAPHORE_QUEUE_ITEM_LENGTH, queueQUEUE_TYPE_BINARY_SEMAPHORE ) -#endif - -/** - * semphr. h - *
SemaphoreHandle_t xSemaphoreCreateBinaryStatic( StaticSemaphore_t *pxSemaphoreBuffer )
- * - * Creates a new binary semaphore instance, and returns a handle by which the - * new semaphore can be referenced. - * - * NOTE: In many usage scenarios it is faster and more memory efficient to use a - * direct to task notification in place of a binary semaphore! - * http://www.freertos.org/RTOS-task-notifications.html - * - * Internally, within the FreeRTOS implementation, binary semaphores use a block - * of memory, in which the semaphore structure is stored. If a binary semaphore - * is created using xSemaphoreCreateBinary() then the required memory is - * automatically dynamically allocated inside the xSemaphoreCreateBinary() - * function. (see http://www.freertos.org/a00111.html). If a binary semaphore - * is created using xSemaphoreCreateBinaryStatic() then the application writer - * must provide the memory. xSemaphoreCreateBinaryStatic() therefore allows a - * binary semaphore to be created without using any dynamic memory allocation. - * - * This type of semaphore can be used for pure synchronisation between tasks or - * between an interrupt and a task. The semaphore need not be given back once - * obtained, so one task/interrupt can continuously 'give' the semaphore while - * another continuously 'takes' the semaphore. For this reason this type of - * semaphore does not use a priority inheritance mechanism. For an alternative - * that does use priority inheritance see xSemaphoreCreateMutex(). - * - * @param pxSemaphoreBuffer Must point to a variable of type StaticSemaphore_t, - * which will then be used to hold the semaphore's data structure, removing the - * need for the memory to be allocated dynamically. - * - * @return If the semaphore is created then a handle to the created semaphore is - * returned. If pxSemaphoreBuffer is NULL then NULL is returned. - * - * Example usage: -
- SemaphoreHandle_t xSemaphore = NULL;
- StaticSemaphore_t xSemaphoreBuffer;
-
- void vATask( void * pvParameters )
- {
-    // Semaphore cannot be used before a call to xSemaphoreCreateBinary().
-    // The semaphore's data structures will be placed in the xSemaphoreBuffer
-    // variable, the address of which is passed into the function.  The
-    // function's parameter is not NULL, so the function will not attempt any
-    // dynamic memory allocation, and therefore the function will not return
-    // return NULL.
-    xSemaphore = xSemaphoreCreateBinary( &xSemaphoreBuffer );
-
-    // Rest of task code goes here.
- }
- 
- * \defgroup xSemaphoreCreateBinaryStatic xSemaphoreCreateBinaryStatic - * \ingroup Semaphores - */ -#if( configSUPPORT_STATIC_ALLOCATION == 1 ) - #define xSemaphoreCreateBinaryStatic( pxStaticSemaphore ) xQueueGenericCreateStatic( ( UBaseType_t ) 1, semSEMAPHORE_QUEUE_ITEM_LENGTH, NULL, pxStaticSemaphore, queueQUEUE_TYPE_BINARY_SEMAPHORE ) -#endif /* configSUPPORT_STATIC_ALLOCATION */ - -/** - * semphr. h - *
xSemaphoreTake(
- *                   SemaphoreHandle_t xSemaphore,
- *                   TickType_t xBlockTime
- *               )
- * - * Macro to obtain a semaphore. The semaphore must have previously been - * created with a call to xSemaphoreCreateBinary(), xSemaphoreCreateMutex() or - * xSemaphoreCreateCounting(). - * - * @param xSemaphore A handle to the semaphore being taken - obtained when - * the semaphore was created. - * - * @param xBlockTime The time in ticks to wait for the semaphore to become - * available. The macro portTICK_PERIOD_MS can be used to convert this to a - * real time. A block time of zero can be used to poll the semaphore. A block - * time of portMAX_DELAY can be used to block indefinitely (provided - * INCLUDE_vTaskSuspend is set to 1 in FreeRTOSConfig.h). - * - * @return pdTRUE if the semaphore was obtained. pdFALSE - * if xBlockTime expired without the semaphore becoming available. - * - * Example usage: -
- SemaphoreHandle_t xSemaphore = NULL;
-
- // A task that creates a semaphore.
- void vATask( void * pvParameters )
- {
-    // Create the semaphore to guard a shared resource.
-    xSemaphore = xSemaphoreCreateBinary();
- }
-
- // A task that uses the semaphore.
- void vAnotherTask( void * pvParameters )
- {
-    // ... Do other things.
-
-    if( xSemaphore != NULL )
-    {
-        // See if we can obtain the semaphore.  If the semaphore is not available
-        // wait 10 ticks to see if it becomes free.
-        if( xSemaphoreTake( xSemaphore, ( TickType_t ) 10 ) == pdTRUE )
-        {
-            // We were able to obtain the semaphore and can now access the
-            // shared resource.
-
-            // ...
-
-            // We have finished accessing the shared resource.  Release the
-            // semaphore.
-            xSemaphoreGive( xSemaphore );
-        }
-        else
-        {
-            // We could not obtain the semaphore and can therefore not access
-            // the shared resource safely.
-        }
-    }
- }
- 
- * \defgroup xSemaphoreTake xSemaphoreTake - * \ingroup Semaphores - */ -#define xSemaphoreTake( xSemaphore, xBlockTime ) xQueueSemaphoreTake( ( xSemaphore ), ( xBlockTime ) ) - -/** - * semphr. h - * xSemaphoreTakeRecursive( - * SemaphoreHandle_t xMutex, - * TickType_t xBlockTime - * ) - * - * Macro to recursively obtain, or 'take', a mutex type semaphore. - * The mutex must have previously been created using a call to - * xSemaphoreCreateRecursiveMutex(); - * - * configUSE_RECURSIVE_MUTEXES must be set to 1 in FreeRTOSConfig.h for this - * macro to be available. - * - * This macro must not be used on mutexes created using xSemaphoreCreateMutex(). - * - * A mutex used recursively can be 'taken' repeatedly by the owner. The mutex - * doesn't become available again until the owner has called - * xSemaphoreGiveRecursive() for each successful 'take' request. For example, - * if a task successfully 'takes' the same mutex 5 times then the mutex will - * not be available to any other task until it has also 'given' the mutex back - * exactly five times. - * - * @param xMutex A handle to the mutex being obtained. This is the - * handle returned by xSemaphoreCreateRecursiveMutex(); - * - * @param xBlockTime The time in ticks to wait for the semaphore to become - * available. The macro portTICK_PERIOD_MS can be used to convert this to a - * real time. A block time of zero can be used to poll the semaphore. If - * the task already owns the semaphore then xSemaphoreTakeRecursive() will - * return immediately no matter what the value of xBlockTime. - * - * @return pdTRUE if the semaphore was obtained. pdFALSE if xBlockTime - * expired without the semaphore becoming available. - * - * Example usage: -
- SemaphoreHandle_t xMutex = NULL;
-
- // A task that creates a mutex.
- void vATask( void * pvParameters )
- {
-    // Create the mutex to guard a shared resource.
-    xMutex = xSemaphoreCreateRecursiveMutex();
- }
-
- // A task that uses the mutex.
- void vAnotherTask( void * pvParameters )
- {
-    // ... Do other things.
-
-    if( xMutex != NULL )
-    {
-        // See if we can obtain the mutex.  If the mutex is not available
-        // wait 10 ticks to see if it becomes free.
-        if( xSemaphoreTakeRecursive( xSemaphore, ( TickType_t ) 10 ) == pdTRUE )
-        {
-            // We were able to obtain the mutex and can now access the
-            // shared resource.
-
-            // ...
-            // For some reason due to the nature of the code further calls to
-            // xSemaphoreTakeRecursive() are made on the same mutex.  In real
-            // code these would not be just sequential calls as this would make
-            // no sense.  Instead the calls are likely to be buried inside
-            // a more complex call structure.
-            xSemaphoreTakeRecursive( xMutex, ( TickType_t ) 10 );
-            xSemaphoreTakeRecursive( xMutex, ( TickType_t ) 10 );
-
-            // The mutex has now been 'taken' three times, so will not be
-            // available to another task until it has also been given back
-            // three times.  Again it is unlikely that real code would have
-            // these calls sequentially, but instead buried in a more complex
-            // call structure.  This is just for illustrative purposes.
-            xSemaphoreGiveRecursive( xMutex );
-            xSemaphoreGiveRecursive( xMutex );
-            xSemaphoreGiveRecursive( xMutex );
-
-            // Now the mutex can be taken by other tasks.
-        }
-        else
-        {
-            // We could not obtain the mutex and can therefore not access
-            // the shared resource safely.
-        }
-    }
- }
- 
- * \defgroup xSemaphoreTakeRecursive xSemaphoreTakeRecursive - * \ingroup Semaphores - */ -#if( configUSE_RECURSIVE_MUTEXES == 1 ) - #define xSemaphoreTakeRecursive( xMutex, xBlockTime ) xQueueTakeMutexRecursive( ( xMutex ), ( xBlockTime ) ) -#endif - -/** - * semphr. h - *
xSemaphoreGive( SemaphoreHandle_t xSemaphore )
- * - * Macro to release a semaphore. The semaphore must have previously been - * created with a call to xSemaphoreCreateBinary(), xSemaphoreCreateMutex() or - * xSemaphoreCreateCounting(). and obtained using sSemaphoreTake(). - * - * This macro must not be used from an ISR. See xSemaphoreGiveFromISR () for - * an alternative which can be used from an ISR. - * - * This macro must also not be used on semaphores created using - * xSemaphoreCreateRecursiveMutex(). - * - * @param xSemaphore A handle to the semaphore being released. This is the - * handle returned when the semaphore was created. - * - * @return pdTRUE if the semaphore was released. pdFALSE if an error occurred. - * Semaphores are implemented using queues. An error can occur if there is - * no space on the queue to post a message - indicating that the - * semaphore was not first obtained correctly. - * - * Example usage: -
- SemaphoreHandle_t xSemaphore = NULL;
-
- void vATask( void * pvParameters )
- {
-    // Create the semaphore to guard a shared resource.
-    xSemaphore = vSemaphoreCreateBinary();
-
-    if( xSemaphore != NULL )
-    {
-        if( xSemaphoreGive( xSemaphore ) != pdTRUE )
-        {
-            // We would expect this call to fail because we cannot give
-            // a semaphore without first "taking" it!
-        }
-
-        // Obtain the semaphore - don't block if the semaphore is not
-        // immediately available.
-        if( xSemaphoreTake( xSemaphore, ( TickType_t ) 0 ) )
-        {
-            // We now have the semaphore and can access the shared resource.
-
-            // ...
-
-            // We have finished accessing the shared resource so can free the
-            // semaphore.
-            if( xSemaphoreGive( xSemaphore ) != pdTRUE )
-            {
-                // We would not expect this call to fail because we must have
-                // obtained the semaphore to get here.
-            }
-        }
-    }
- }
- 
- * \defgroup xSemaphoreGive xSemaphoreGive - * \ingroup Semaphores - */ -#define xSemaphoreGive( xSemaphore ) xQueueGenericSend( ( QueueHandle_t ) ( xSemaphore ), NULL, semGIVE_BLOCK_TIME, queueSEND_TO_BACK ) - -/** - * semphr. h - *
xSemaphoreGiveRecursive( SemaphoreHandle_t xMutex )
- * - * Macro to recursively release, or 'give', a mutex type semaphore. - * The mutex must have previously been created using a call to - * xSemaphoreCreateRecursiveMutex(); - * - * configUSE_RECURSIVE_MUTEXES must be set to 1 in FreeRTOSConfig.h for this - * macro to be available. - * - * This macro must not be used on mutexes created using xSemaphoreCreateMutex(). - * - * A mutex used recursively can be 'taken' repeatedly by the owner. The mutex - * doesn't become available again until the owner has called - * xSemaphoreGiveRecursive() for each successful 'take' request. For example, - * if a task successfully 'takes' the same mutex 5 times then the mutex will - * not be available to any other task until it has also 'given' the mutex back - * exactly five times. - * - * @param xMutex A handle to the mutex being released, or 'given'. This is the - * handle returned by xSemaphoreCreateMutex(); - * - * @return pdTRUE if the semaphore was given. - * - * Example usage: -
- SemaphoreHandle_t xMutex = NULL;
-
- // A task that creates a mutex.
- void vATask( void * pvParameters )
- {
-    // Create the mutex to guard a shared resource.
-    xMutex = xSemaphoreCreateRecursiveMutex();
- }
-
- // A task that uses the mutex.
- void vAnotherTask( void * pvParameters )
- {
-    // ... Do other things.
-
-    if( xMutex != NULL )
-    {
-        // See if we can obtain the mutex.  If the mutex is not available
-        // wait 10 ticks to see if it becomes free.
-        if( xSemaphoreTakeRecursive( xMutex, ( TickType_t ) 10 ) == pdTRUE )
-        {
-            // We were able to obtain the mutex and can now access the
-            // shared resource.
-
-            // ...
-            // For some reason due to the nature of the code further calls to
-			// xSemaphoreTakeRecursive() are made on the same mutex.  In real
-			// code these would not be just sequential calls as this would make
-			// no sense.  Instead the calls are likely to be buried inside
-			// a more complex call structure.
-            xSemaphoreTakeRecursive( xMutex, ( TickType_t ) 10 );
-            xSemaphoreTakeRecursive( xMutex, ( TickType_t ) 10 );
-
-            // The mutex has now been 'taken' three times, so will not be
-			// available to another task until it has also been given back
-			// three times.  Again it is unlikely that real code would have
-			// these calls sequentially, it would be more likely that the calls
-			// to xSemaphoreGiveRecursive() would be called as a call stack
-			// unwound.  This is just for demonstrative purposes.
-            xSemaphoreGiveRecursive( xMutex );
-			xSemaphoreGiveRecursive( xMutex );
-			xSemaphoreGiveRecursive( xMutex );
-
-			// Now the mutex can be taken by other tasks.
-        }
-        else
-        {
-            // We could not obtain the mutex and can therefore not access
-            // the shared resource safely.
-        }
-    }
- }
- 
- * \defgroup xSemaphoreGiveRecursive xSemaphoreGiveRecursive - * \ingroup Semaphores - */ -#if( configUSE_RECURSIVE_MUTEXES == 1 ) - #define xSemaphoreGiveRecursive( xMutex ) xQueueGiveMutexRecursive( ( xMutex ) ) -#endif - -/** - * semphr. h - *
- xSemaphoreGiveFromISR(
-                          SemaphoreHandle_t xSemaphore,
-                          BaseType_t *pxHigherPriorityTaskWoken
-                      )
- * - * Macro to release a semaphore. The semaphore must have previously been - * created with a call to xSemaphoreCreateBinary() or xSemaphoreCreateCounting(). - * - * Mutex type semaphores (those created using a call to xSemaphoreCreateMutex()) - * must not be used with this macro. - * - * This macro can be used from an ISR. - * - * @param xSemaphore A handle to the semaphore being released. This is the - * handle returned when the semaphore was created. - * - * @param pxHigherPriorityTaskWoken xSemaphoreGiveFromISR() will set - * *pxHigherPriorityTaskWoken to pdTRUE if giving the semaphore caused a task - * to unblock, and the unblocked task has a priority higher than the currently - * running task. If xSemaphoreGiveFromISR() sets this value to pdTRUE then - * a context switch should be requested before the interrupt is exited. - * - * @return pdTRUE if the semaphore was successfully given, otherwise errQUEUE_FULL. - * - * Example usage: -
- \#define LONG_TIME 0xffff
- \#define TICKS_TO_WAIT	10
- SemaphoreHandle_t xSemaphore = NULL;
-
- // Repetitive task.
- void vATask( void * pvParameters )
- {
-    for( ;; )
-    {
-        // We want this task to run every 10 ticks of a timer.  The semaphore
-        // was created before this task was started.
-
-        // Block waiting for the semaphore to become available.
-        if( xSemaphoreTake( xSemaphore, LONG_TIME ) == pdTRUE )
-        {
-            // It is time to execute.
-
-            // ...
-
-            // We have finished our task.  Return to the top of the loop where
-            // we will block on the semaphore until it is time to execute
-            // again.  Note when using the semaphore for synchronisation with an
-			// ISR in this manner there is no need to 'give' the semaphore back.
-        }
-    }
- }
-
- // Timer ISR
- void vTimerISR( void * pvParameters )
- {
- static uint8_t ucLocalTickCount = 0;
- static BaseType_t xHigherPriorityTaskWoken;
-
-    // A timer tick has occurred.
-
-    // ... Do other time functions.
-
-    // Is it time for vATask () to run?
-	xHigherPriorityTaskWoken = pdFALSE;
-    ucLocalTickCount++;
-    if( ucLocalTickCount >= TICKS_TO_WAIT )
-    {
-        // Unblock the task by releasing the semaphore.
-        xSemaphoreGiveFromISR( xSemaphore, &xHigherPriorityTaskWoken );
-
-        // Reset the count so we release the semaphore again in 10 ticks time.
-        ucLocalTickCount = 0;
-    }
-
-    if( xHigherPriorityTaskWoken != pdFALSE )
-    {
-        // We can force a context switch here.  Context switching from an
-        // ISR uses port specific syntax.  Check the demo task for your port
-        // to find the syntax required.
-    }
- }
- 
- * \defgroup xSemaphoreGiveFromISR xSemaphoreGiveFromISR - * \ingroup Semaphores - */ -#define xSemaphoreGiveFromISR( xSemaphore, pxHigherPriorityTaskWoken ) xQueueGiveFromISR( ( QueueHandle_t ) ( xSemaphore ), ( pxHigherPriorityTaskWoken ) ) - -/** - * semphr. h - *
- xSemaphoreTakeFromISR(
-                          SemaphoreHandle_t xSemaphore,
-                          BaseType_t *pxHigherPriorityTaskWoken
-                      )
- * - * Macro to take a semaphore from an ISR. The semaphore must have - * previously been created with a call to xSemaphoreCreateBinary() or - * xSemaphoreCreateCounting(). - * - * Mutex type semaphores (those created using a call to xSemaphoreCreateMutex()) - * must not be used with this macro. - * - * This macro can be used from an ISR, however taking a semaphore from an ISR - * is not a common operation. It is likely to only be useful when taking a - * counting semaphore when an interrupt is obtaining an object from a resource - * pool (when the semaphore count indicates the number of resources available). - * - * @param xSemaphore A handle to the semaphore being taken. This is the - * handle returned when the semaphore was created. - * - * @param pxHigherPriorityTaskWoken xSemaphoreTakeFromISR() will set - * *pxHigherPriorityTaskWoken to pdTRUE if taking the semaphore caused a task - * to unblock, and the unblocked task has a priority higher than the currently - * running task. If xSemaphoreTakeFromISR() sets this value to pdTRUE then - * a context switch should be requested before the interrupt is exited. - * - * @return pdTRUE if the semaphore was successfully taken, otherwise - * pdFALSE - */ -#define xSemaphoreTakeFromISR( xSemaphore, pxHigherPriorityTaskWoken ) xQueueReceiveFromISR( ( QueueHandle_t ) ( xSemaphore ), NULL, ( pxHigherPriorityTaskWoken ) ) - -/** - * semphr. h - *
SemaphoreHandle_t xSemaphoreCreateMutex( void )
- * - * Creates a new mutex type semaphore instance, and returns a handle by which - * the new mutex can be referenced. - * - * Internally, within the FreeRTOS implementation, mutex semaphores use a block - * of memory, in which the mutex structure is stored. If a mutex is created - * using xSemaphoreCreateMutex() then the required memory is automatically - * dynamically allocated inside the xSemaphoreCreateMutex() function. (see - * http://www.freertos.org/a00111.html). If a mutex is created using - * xSemaphoreCreateMutexStatic() then the application writer must provided the - * memory. xSemaphoreCreateMutexStatic() therefore allows a mutex to be created - * without using any dynamic memory allocation. - * - * Mutexes created using this function can be accessed using the xSemaphoreTake() - * and xSemaphoreGive() macros. The xSemaphoreTakeRecursive() and - * xSemaphoreGiveRecursive() macros must not be used. - * - * This type of semaphore uses a priority inheritance mechanism so a task - * 'taking' a semaphore MUST ALWAYS 'give' the semaphore back once the - * semaphore it is no longer required. - * - * Mutex type semaphores cannot be used from within interrupt service routines. - * - * See xSemaphoreCreateBinary() for an alternative implementation that can be - * used for pure synchronisation (where one task or interrupt always 'gives' the - * semaphore and another always 'takes' the semaphore) and from within interrupt - * service routines. - * - * @return If the mutex was successfully created then a handle to the created - * semaphore is returned. If there was not enough heap to allocate the mutex - * data structures then NULL is returned. - * - * Example usage: -
- SemaphoreHandle_t xSemaphore;
-
- void vATask( void * pvParameters )
- {
-    // Semaphore cannot be used before a call to xSemaphoreCreateMutex().
-    // This is a macro so pass the variable in directly.
-    xSemaphore = xSemaphoreCreateMutex();
-
-    if( xSemaphore != NULL )
-    {
-        // The semaphore was created successfully.
-        // The semaphore can now be used.
-    }
- }
- 
- * \defgroup xSemaphoreCreateMutex xSemaphoreCreateMutex - * \ingroup Semaphores - */ -#if( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) - #define xSemaphoreCreateMutex() xQueueCreateMutex( queueQUEUE_TYPE_MUTEX ) -#endif - -/** - * semphr. h - *
SemaphoreHandle_t xSemaphoreCreateMutexStatic( StaticSemaphore_t *pxMutexBuffer )
- * - * Creates a new mutex type semaphore instance, and returns a handle by which - * the new mutex can be referenced. - * - * Internally, within the FreeRTOS implementation, mutex semaphores use a block - * of memory, in which the mutex structure is stored. If a mutex is created - * using xSemaphoreCreateMutex() then the required memory is automatically - * dynamically allocated inside the xSemaphoreCreateMutex() function. (see - * http://www.freertos.org/a00111.html). If a mutex is created using - * xSemaphoreCreateMutexStatic() then the application writer must provided the - * memory. xSemaphoreCreateMutexStatic() therefore allows a mutex to be created - * without using any dynamic memory allocation. - * - * Mutexes created using this function can be accessed using the xSemaphoreTake() - * and xSemaphoreGive() macros. The xSemaphoreTakeRecursive() and - * xSemaphoreGiveRecursive() macros must not be used. - * - * This type of semaphore uses a priority inheritance mechanism so a task - * 'taking' a semaphore MUST ALWAYS 'give' the semaphore back once the - * semaphore it is no longer required. - * - * Mutex type semaphores cannot be used from within interrupt service routines. - * - * See xSemaphoreCreateBinary() for an alternative implementation that can be - * used for pure synchronisation (where one task or interrupt always 'gives' the - * semaphore and another always 'takes' the semaphore) and from within interrupt - * service routines. - * - * @param pxMutexBuffer Must point to a variable of type StaticSemaphore_t, - * which will be used to hold the mutex's data structure, removing the need for - * the memory to be allocated dynamically. - * - * @return If the mutex was successfully created then a handle to the created - * mutex is returned. If pxMutexBuffer was NULL then NULL is returned. - * - * Example usage: -
- SemaphoreHandle_t xSemaphore;
- StaticSemaphore_t xMutexBuffer;
-
- void vATask( void * pvParameters )
- {
-    // A mutex cannot be used before it has been created.  xMutexBuffer is
-    // into xSemaphoreCreateMutexStatic() so no dynamic memory allocation is
-    // attempted.
-    xSemaphore = xSemaphoreCreateMutexStatic( &xMutexBuffer );
-
-    // As no dynamic memory allocation was performed, xSemaphore cannot be NULL,
-    // so there is no need to check it.
- }
- 
- * \defgroup xSemaphoreCreateMutexStatic xSemaphoreCreateMutexStatic - * \ingroup Semaphores - */ - #if( configSUPPORT_STATIC_ALLOCATION == 1 ) - #define xSemaphoreCreateMutexStatic( pxMutexBuffer ) xQueueCreateMutexStatic( queueQUEUE_TYPE_MUTEX, ( pxMutexBuffer ) ) -#endif /* configSUPPORT_STATIC_ALLOCATION */ - - -/** - * semphr. h - *
SemaphoreHandle_t xSemaphoreCreateRecursiveMutex( void )
- * - * Creates a new recursive mutex type semaphore instance, and returns a handle - * by which the new recursive mutex can be referenced. - * - * Internally, within the FreeRTOS implementation, recursive mutexs use a block - * of memory, in which the mutex structure is stored. If a recursive mutex is - * created using xSemaphoreCreateRecursiveMutex() then the required memory is - * automatically dynamically allocated inside the - * xSemaphoreCreateRecursiveMutex() function. (see - * http://www.freertos.org/a00111.html). If a recursive mutex is created using - * xSemaphoreCreateRecursiveMutexStatic() then the application writer must - * provide the memory that will get used by the mutex. - * xSemaphoreCreateRecursiveMutexStatic() therefore allows a recursive mutex to - * be created without using any dynamic memory allocation. - * - * Mutexes created using this macro can be accessed using the - * xSemaphoreTakeRecursive() and xSemaphoreGiveRecursive() macros. The - * xSemaphoreTake() and xSemaphoreGive() macros must not be used. - * - * A mutex used recursively can be 'taken' repeatedly by the owner. The mutex - * doesn't become available again until the owner has called - * xSemaphoreGiveRecursive() for each successful 'take' request. For example, - * if a task successfully 'takes' the same mutex 5 times then the mutex will - * not be available to any other task until it has also 'given' the mutex back - * exactly five times. - * - * This type of semaphore uses a priority inheritance mechanism so a task - * 'taking' a semaphore MUST ALWAYS 'give' the semaphore back once the - * semaphore it is no longer required. - * - * Mutex type semaphores cannot be used from within interrupt service routines. - * - * See xSemaphoreCreateBinary() for an alternative implementation that can be - * used for pure synchronisation (where one task or interrupt always 'gives' the - * semaphore and another always 'takes' the semaphore) and from within interrupt - * service routines. - * - * @return xSemaphore Handle to the created mutex semaphore. Should be of type - * SemaphoreHandle_t. - * - * Example usage: -
- SemaphoreHandle_t xSemaphore;
-
- void vATask( void * pvParameters )
- {
-    // Semaphore cannot be used before a call to xSemaphoreCreateMutex().
-    // This is a macro so pass the variable in directly.
-    xSemaphore = xSemaphoreCreateRecursiveMutex();
-
-    if( xSemaphore != NULL )
-    {
-        // The semaphore was created successfully.
-        // The semaphore can now be used.
-    }
- }
- 
- * \defgroup xSemaphoreCreateRecursiveMutex xSemaphoreCreateRecursiveMutex - * \ingroup Semaphores - */ -#if( ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) && ( configUSE_RECURSIVE_MUTEXES == 1 ) ) - #define xSemaphoreCreateRecursiveMutex() xQueueCreateMutex( queueQUEUE_TYPE_RECURSIVE_MUTEX ) -#endif - -/** - * semphr. h - *
SemaphoreHandle_t xSemaphoreCreateRecursiveMutexStatic( StaticSemaphore_t *pxMutexBuffer )
- * - * Creates a new recursive mutex type semaphore instance, and returns a handle - * by which the new recursive mutex can be referenced. - * - * Internally, within the FreeRTOS implementation, recursive mutexs use a block - * of memory, in which the mutex structure is stored. If a recursive mutex is - * created using xSemaphoreCreateRecursiveMutex() then the required memory is - * automatically dynamically allocated inside the - * xSemaphoreCreateRecursiveMutex() function. (see - * http://www.freertos.org/a00111.html). If a recursive mutex is created using - * xSemaphoreCreateRecursiveMutexStatic() then the application writer must - * provide the memory that will get used by the mutex. - * xSemaphoreCreateRecursiveMutexStatic() therefore allows a recursive mutex to - * be created without using any dynamic memory allocation. - * - * Mutexes created using this macro can be accessed using the - * xSemaphoreTakeRecursive() and xSemaphoreGiveRecursive() macros. The - * xSemaphoreTake() and xSemaphoreGive() macros must not be used. - * - * A mutex used recursively can be 'taken' repeatedly by the owner. The mutex - * doesn't become available again until the owner has called - * xSemaphoreGiveRecursive() for each successful 'take' request. For example, - * if a task successfully 'takes' the same mutex 5 times then the mutex will - * not be available to any other task until it has also 'given' the mutex back - * exactly five times. - * - * This type of semaphore uses a priority inheritance mechanism so a task - * 'taking' a semaphore MUST ALWAYS 'give' the semaphore back once the - * semaphore it is no longer required. - * - * Mutex type semaphores cannot be used from within interrupt service routines. - * - * See xSemaphoreCreateBinary() for an alternative implementation that can be - * used for pure synchronisation (where one task or interrupt always 'gives' the - * semaphore and another always 'takes' the semaphore) and from within interrupt - * service routines. - * - * @param pxMutexBuffer Must point to a variable of type StaticSemaphore_t, - * which will then be used to hold the recursive mutex's data structure, - * removing the need for the memory to be allocated dynamically. - * - * @return If the recursive mutex was successfully created then a handle to the - * created recursive mutex is returned. If pxMutexBuffer was NULL then NULL is - * returned. - * - * Example usage: -
- SemaphoreHandle_t xSemaphore;
- StaticSemaphore_t xMutexBuffer;
-
- void vATask( void * pvParameters )
- {
-    // A recursive semaphore cannot be used before it is created.  Here a
-    // recursive mutex is created using xSemaphoreCreateRecursiveMutexStatic().
-    // The address of xMutexBuffer is passed into the function, and will hold
-    // the mutexes data structures - so no dynamic memory allocation will be
-    // attempted.
-    xSemaphore = xSemaphoreCreateRecursiveMutexStatic( &xMutexBuffer );
-
-    // As no dynamic memory allocation was performed, xSemaphore cannot be NULL,
-    // so there is no need to check it.
- }
- 
- * \defgroup xSemaphoreCreateRecursiveMutexStatic xSemaphoreCreateRecursiveMutexStatic - * \ingroup Semaphores - */ -#if( ( configSUPPORT_STATIC_ALLOCATION == 1 ) && ( configUSE_RECURSIVE_MUTEXES == 1 ) ) - #define xSemaphoreCreateRecursiveMutexStatic( pxStaticSemaphore ) xQueueCreateMutexStatic( queueQUEUE_TYPE_RECURSIVE_MUTEX, pxStaticSemaphore ) -#endif /* configSUPPORT_STATIC_ALLOCATION */ - -/** - * semphr. h - *
SemaphoreHandle_t xSemaphoreCreateCounting( UBaseType_t uxMaxCount, UBaseType_t uxInitialCount )
- * - * Creates a new counting semaphore instance, and returns a handle by which the - * new counting semaphore can be referenced. - * - * In many usage scenarios it is faster and more memory efficient to use a - * direct to task notification in place of a counting semaphore! - * http://www.freertos.org/RTOS-task-notifications.html - * - * Internally, within the FreeRTOS implementation, counting semaphores use a - * block of memory, in which the counting semaphore structure is stored. If a - * counting semaphore is created using xSemaphoreCreateCounting() then the - * required memory is automatically dynamically allocated inside the - * xSemaphoreCreateCounting() function. (see - * http://www.freertos.org/a00111.html). If a counting semaphore is created - * using xSemaphoreCreateCountingStatic() then the application writer can - * instead optionally provide the memory that will get used by the counting - * semaphore. xSemaphoreCreateCountingStatic() therefore allows a counting - * semaphore to be created without using any dynamic memory allocation. - * - * Counting semaphores are typically used for two things: - * - * 1) Counting events. - * - * In this usage scenario an event handler will 'give' a semaphore each time - * an event occurs (incrementing the semaphore count value), and a handler - * task will 'take' a semaphore each time it processes an event - * (decrementing the semaphore count value). The count value is therefore - * the difference between the number of events that have occurred and the - * number that have been processed. In this case it is desirable for the - * initial count value to be zero. - * - * 2) Resource management. - * - * In this usage scenario the count value indicates the number of resources - * available. To obtain control of a resource a task must first obtain a - * semaphore - decrementing the semaphore count value. When the count value - * reaches zero there are no free resources. When a task finishes with the - * resource it 'gives' the semaphore back - incrementing the semaphore count - * value. In this case it is desirable for the initial count value to be - * equal to the maximum count value, indicating that all resources are free. - * - * @param uxMaxCount The maximum count value that can be reached. When the - * semaphore reaches this value it can no longer be 'given'. - * - * @param uxInitialCount The count value assigned to the semaphore when it is - * created. - * - * @return Handle to the created semaphore. Null if the semaphore could not be - * created. - * - * Example usage: -
- SemaphoreHandle_t xSemaphore;
-
- void vATask( void * pvParameters )
- {
- SemaphoreHandle_t xSemaphore = NULL;
-
-    // Semaphore cannot be used before a call to xSemaphoreCreateCounting().
-    // The max value to which the semaphore can count should be 10, and the
-    // initial value assigned to the count should be 0.
-    xSemaphore = xSemaphoreCreateCounting( 10, 0 );
-
-    if( xSemaphore != NULL )
-    {
-        // The semaphore was created successfully.
-        // The semaphore can now be used.
-    }
- }
- 
- * \defgroup xSemaphoreCreateCounting xSemaphoreCreateCounting - * \ingroup Semaphores - */ -#if( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) - #define xSemaphoreCreateCounting( uxMaxCount, uxInitialCount ) xQueueCreateCountingSemaphore( ( uxMaxCount ), ( uxInitialCount ) ) -#endif - -/** - * semphr. h - *
SemaphoreHandle_t xSemaphoreCreateCountingStatic( UBaseType_t uxMaxCount, UBaseType_t uxInitialCount, StaticSemaphore_t *pxSemaphoreBuffer )
- * - * Creates a new counting semaphore instance, and returns a handle by which the - * new counting semaphore can be referenced. - * - * In many usage scenarios it is faster and more memory efficient to use a - * direct to task notification in place of a counting semaphore! - * http://www.freertos.org/RTOS-task-notifications.html - * - * Internally, within the FreeRTOS implementation, counting semaphores use a - * block of memory, in which the counting semaphore structure is stored. If a - * counting semaphore is created using xSemaphoreCreateCounting() then the - * required memory is automatically dynamically allocated inside the - * xSemaphoreCreateCounting() function. (see - * http://www.freertos.org/a00111.html). If a counting semaphore is created - * using xSemaphoreCreateCountingStatic() then the application writer must - * provide the memory. xSemaphoreCreateCountingStatic() therefore allows a - * counting semaphore to be created without using any dynamic memory allocation. - * - * Counting semaphores are typically used for two things: - * - * 1) Counting events. - * - * In this usage scenario an event handler will 'give' a semaphore each time - * an event occurs (incrementing the semaphore count value), and a handler - * task will 'take' a semaphore each time it processes an event - * (decrementing the semaphore count value). The count value is therefore - * the difference between the number of events that have occurred and the - * number that have been processed. In this case it is desirable for the - * initial count value to be zero. - * - * 2) Resource management. - * - * In this usage scenario the count value indicates the number of resources - * available. To obtain control of a resource a task must first obtain a - * semaphore - decrementing the semaphore count value. When the count value - * reaches zero there are no free resources. When a task finishes with the - * resource it 'gives' the semaphore back - incrementing the semaphore count - * value. In this case it is desirable for the initial count value to be - * equal to the maximum count value, indicating that all resources are free. - * - * @param uxMaxCount The maximum count value that can be reached. When the - * semaphore reaches this value it can no longer be 'given'. - * - * @param uxInitialCount The count value assigned to the semaphore when it is - * created. - * - * @param pxSemaphoreBuffer Must point to a variable of type StaticSemaphore_t, - * which will then be used to hold the semaphore's data structure, removing the - * need for the memory to be allocated dynamically. - * - * @return If the counting semaphore was successfully created then a handle to - * the created counting semaphore is returned. If pxSemaphoreBuffer was NULL - * then NULL is returned. - * - * Example usage: -
- SemaphoreHandle_t xSemaphore;
- StaticSemaphore_t xSemaphoreBuffer;
-
- void vATask( void * pvParameters )
- {
- SemaphoreHandle_t xSemaphore = NULL;
-
-    // Counting semaphore cannot be used before they have been created.  Create
-    // a counting semaphore using xSemaphoreCreateCountingStatic().  The max
-    // value to which the semaphore can count is 10, and the initial value
-    // assigned to the count will be 0.  The address of xSemaphoreBuffer is
-    // passed in and will be used to hold the semaphore structure, so no dynamic
-    // memory allocation will be used.
-    xSemaphore = xSemaphoreCreateCounting( 10, 0, &xSemaphoreBuffer );
-
-    // No memory allocation was attempted so xSemaphore cannot be NULL, so there
-    // is no need to check its value.
- }
- 
- * \defgroup xSemaphoreCreateCountingStatic xSemaphoreCreateCountingStatic - * \ingroup Semaphores - */ -#if( configSUPPORT_STATIC_ALLOCATION == 1 ) - #define xSemaphoreCreateCountingStatic( uxMaxCount, uxInitialCount, pxSemaphoreBuffer ) xQueueCreateCountingSemaphoreStatic( ( uxMaxCount ), ( uxInitialCount ), ( pxSemaphoreBuffer ) ) -#endif /* configSUPPORT_STATIC_ALLOCATION */ - -/** - * semphr. h - *
void vSemaphoreDelete( SemaphoreHandle_t xSemaphore );
- * - * Delete a semaphore. This function must be used with care. For example, - * do not delete a mutex type semaphore if the mutex is held by a task. - * - * @param xSemaphore A handle to the semaphore to be deleted. - * - * \defgroup vSemaphoreDelete vSemaphoreDelete - * \ingroup Semaphores - */ -#define vSemaphoreDelete( xSemaphore ) vQueueDelete( ( QueueHandle_t ) ( xSemaphore ) ) - -/** - * semphr.h - *
TaskHandle_t xSemaphoreGetMutexHolder( SemaphoreHandle_t xMutex );
- * - * If xMutex is indeed a mutex type semaphore, return the current mutex holder. - * If xMutex is not a mutex type semaphore, or the mutex is available (not held - * by a task), return NULL. - * - * Note: This is a good way of determining if the calling task is the mutex - * holder, but not a good way of determining the identity of the mutex holder as - * the holder may change between the function exiting and the returned value - * being tested. - */ -#define xSemaphoreGetMutexHolder( xSemaphore ) xQueueGetMutexHolder( ( xSemaphore ) ) - -/** - * semphr.h - *
TaskHandle_t xSemaphoreGetMutexHolderFromISR( SemaphoreHandle_t xMutex );
- * - * If xMutex is indeed a mutex type semaphore, return the current mutex holder. - * If xMutex is not a mutex type semaphore, or the mutex is available (not held - * by a task), return NULL. - * - */ -#define xSemaphoreGetMutexHolderFromISR( xSemaphore ) xQueueGetMutexHolderFromISR( ( xSemaphore ) ) - -/** - * semphr.h - *
UBaseType_t uxSemaphoreGetCount( SemaphoreHandle_t xSemaphore );
- * - * If the semaphore is a counting semaphore then uxSemaphoreGetCount() returns - * its current count value. If the semaphore is a binary semaphore then - * uxSemaphoreGetCount() returns 1 if the semaphore is available, and 0 if the - * semaphore is not available. - * - */ -#define uxSemaphoreGetCount( xSemaphore ) uxQueueMessagesWaiting( ( QueueHandle_t ) ( xSemaphore ) ) - -#endif /* SEMAPHORE_H */ - - diff --git a/rtos/freertos/abstraction_layer_freertos/include/soc_eu.h b/rtos/freertos/abstraction_layer_freertos/include/soc_eu.h deleted file mode 100644 index 70e16087..00000000 --- a/rtos/freertos/abstraction_layer_freertos/include/soc_eu.h +++ /dev/null @@ -1,330 +0,0 @@ -/* - * Copyright 2020 GreenWaves Technologies - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * SPDX-License-Identifier: Apache-2.0 - */ - -#ifndef __SOC_EU_H__ -#define __SOC_EU_H__ - -#include - -#include "memory_map.h" -#include "target.h" -#include "io.h" - -/* FC SOC domain events, all delegated by FC_SOC_EVENT_IRQn = 27 */ -/* TODO: garbage collect this */ -#define UDMA_EVENT_LVDS_RX 0 -#define UDMA_EVENT_LVDS_TX 1 -#define UDMA_EVENT_SPIM0_RX 2 -#define UDMA_EVENT_SPIM0_TX 3 -#define UDMA_EVENT_SPIM1_RX 4 -#define UDMA_EVENT_SPIM1_TX 5 -#define UDMA_EVENT_HYPERBUS_RX 6 -#define UDMA_EVENT_HYPERBUS_TX 7 -#define UDMA_EVENT_UART_RX 8 -#define UDMA_EVENT_UART_TX 9 -#define UDMA_EVENT_I2C0_RX 10 -#define UDMA_EVENT_I2C0_TX 11 -#define UDMA_EVENT_I2C1_RX 12 -#define UDMA_EVENT_I2C1_TX 13 -#define UDMA_EVENT_DMACPY_RX 14 -#define UDMA_EVENT_DMACPY_TX 15 -#define UDMA_EVENT_SAI_CH0 16 -#define UDMA_EVENT_SAI_CH1 17 -#define UDMA_EVENT_CPI_RX 18 -#define UDMA_EVENT_RESERVED0 19 - -#define UDMA_EVENT_LVDS_GEN0 20 -#define UDMA_EVENT_LVDS_GEN1 21 -#define UDMA_EVENT_SPIM0_EOT 22 -#define UDMA_EVENT_SPIM1_EOT 23 -#define UDMA_EVENT_HYPERBUS_RESERVED 24 -#define UDMA_EVENT_UART_RESERVED 25 -#define UDMA_EVENT_I2C0_ERROR 26 -#define UDMA_EVENT_I2C1_ERROR 27 -#define UDMA_EVENT_I2S_RESERVED 28 -#define UDMA_EVENT_CAM_RESERVED 29 -#define UDMA_EVENT_RESERVED1 30 - -#define PMU_EVENT_CLUSTER_POWER_ON 31 -#define PMU_EVENT_CLUSTER_RESERVED0 32 -#define PMU_EVENT_CLUSTER_RESERVED1 33 -#define PMU_EVENT_CLUSTER_RESERVED2 34 -#define PMU_EVENT_CLUSTER_CLOCK_GATING 35 -#define PMU_DLC_EVENT_BRIDGE_PICL_OK 36 -#define PMU_DLC_EVENT_BRIDGE_SCU_OK 37 -#define PMU_EVENTS_NUM 7 - -#define PWM0_EVENT 38 -#define PWM1_EVENT 39 -#define PWM2_EVENT 40 -#define PWM3_EVENT 41 -#define GPIO_EVENT 42 /**< GPIO group interrupt */ -#define RTC_APB_EVENT 43 -#define RTC_EVENT 44 -#define EVENT_RESERVED0 45 -#define EVENT_RESERVED1 46 -#define EVENT_RESERVED2 47 - -#define SOC_SW_EVENT0 48 /**< SOC SW Event0 */ -#define SOC_SW_EVENT1 49 /**< SOC SW Event1 */ -#define SOC_SW_EVENT2 50 /**< SOC SW Event2 */ -#define SOC_SW_EVENT3 51 /**< SOC SW Event3 */ -#define SOC_SW_EVENT4 52 /**< SOC SW Event4 */ -#define SOC_SW_EVENT5 53 /**< SOC SW Event5 */ -#define SOC_SW_EVENT6 54 /**< SOC SW Event6 */ -#define SOC_SW_EVENT7 55 /**< SOC SW Event7 */ -#define REF32K_CLK_RISE_EVENT \ - 56 /**< SOC EU SW Event Reference 32K Clock event */ - -/** SOCEU - Register Layout Typedef */ -typedef struct { - volatile uint32_t EVENT; /**< SOCEU event register, offset: 0x00 */ - volatile uint32_t FC_MASK0; /**< SOCEU fc mask 0 register, offset: 0x04 - */ - volatile uint32_t FC_MASK1; /**< SOCEU fc mask 1 register, offset: 0x08 - */ - volatile uint32_t FC_MASK2; /**< SOCEU fc mask 2 register, offset: 0x0c - */ - volatile uint32_t FC_MASK3; /**< SOCEU fc mask 3 register, offset: 0x10 - */ - volatile uint32_t FC_MASK4; /**< SOCEU fc mask 4 register, offset: 0x14 - */ - volatile uint32_t FC_MASK5; /**< SOCEU fc mask 5 register, offset: 0x18 - */ - volatile uint32_t FC_MASK6; /**< SOCEU fc mask 6 register, offset: 0x1c - */ - volatile uint32_t FC_MASK7; /**< SOCEU fc mask 7 register, offset: 0x20 - */ - volatile uint32_t CL_MASK0; /**< SOCEU cluster mask 0 register, offset: - 0x24 */ - volatile uint32_t CL_MASK1; /**< SOCEU cluster mask 1 register, offset: - 0x28 */ - volatile uint32_t CL_MASK2; /**< SOCEU cluster mask 2 register, offset: - 0x2C */ - volatile uint32_t CL_MASK3; /**< SOCEU cluster mask 3 register, offset: - 0x30 */ - volatile uint32_t CL_MASK4; /**< SOCEU cluster mask 4 register, offset: - 0x34 */ - volatile uint32_t CL_MASK5; /**< SOCEU cluster mask 5 register, offset: - 0x38 */ - volatile uint32_t CL_MASK6; /**< SOCEU cluster mask 6 register, offset: - 0x3C */ - volatile uint32_t CL_MASK7; /**< SOCEU cluster mask 7 register, offset: - 0x40 */ - volatile uint32_t PR_MASK0; /**< SOCEU propagate mask MSB register, - offset: 0x44 */ - volatile uint32_t PR_MASK1; /**< SOCEU propagate mask MSB register, - offset: 0x48 */ - volatile uint32_t PR_MASK2; /**< SOCEU propagate mask MSB register, - offset: 0x4c */ - volatile uint32_t PR_MASK3; /**< SOCEU propagate mask MSB register, - offset: 0x50 */ - volatile uint32_t PR_MASK4; /**< SOCEU propagate mask MSB register, - offset: 0x54 */ - volatile uint32_t PR_MASK5; /**< SOCEU propagate mask MSB register, - offset: 0x58 */ - volatile uint32_t PR_MASK6; /**< SOCEU propagate mask MSB register, - offset: 0x5c */ - volatile uint32_t PR_MASK7; /**< SOCEU propagate mask MSB register, - offset: 0x60 */ - volatile uint32_t ERR_MASK0; /**< SOCEU error mask MSB register, offset: - 0x64 */ - volatile uint32_t ERR_MASK1; /**< SOCEU error mask MSB register, offset: - 0x68 */ - volatile uint32_t ERR_MASK2; /**< SOCEU error mask MSB register, offset: - 0x6c */ - volatile uint32_t ERR_MASK3; /**< SOCEU error mask MSB register, offset: - 0x70 */ - volatile uint32_t ERR_MASK4; /**< SOCEU error mask MSB register, offset: - 0x74 */ - volatile uint32_t ERR_MASK5; /**< SOCEU error mask MSB register, offset: - 0x78 */ - volatile uint32_t ERR_MASK6; /**< SOCEU error mask MSB register, offset: - 0x7c */ - volatile uint32_t ERR_MASK7; /**< SOCEU error mask MSB register, offset: - 0x80 */ - volatile uint32_t TIMER_SEL_HI; /**< SOCEU timer high register, offset: - 0x84 */ - volatile uint32_t TIMER_SEL_LO; /**< SOCEU timer low register, offset: - 0x88 */ -} soceu_t; - -#define SOC_EVENT_OFFSET 0x00 -#define SOC_FC_MASK0_OFFSET 0x04 -#define SOC_CL_MASK0_OFFSET 0x24 -#define SOC_PR_MASK0_OFFSET 0x44 -#define SOC_ERR_MASK0_OFFSET 0x64 - -/* The SOC events number */ -#define SOC_EVENTS_NUM 0x08 - - -/* SOCEU - Peripheral instance base addresses */ -/** Peripheral SOCEU base address */ -#define SOCEU_BASE SOC_EU_ADDR -/** Peripheral SOCEU base pointer */ -#define SOCEU ((soceu_t *)SOCEU_BASE) -/** Array initializer of SOCEU base addresses */ -#define SOCEU_BASE_ADDRS \ - { \ - SOCEU_BASE \ - } -/** Array initializer of SOCEU base pointers */ -#define SOCEU_BASE_PTRS \ - { \ - SOCEU \ - } - -static inline void soc_eu_fc_write(uint32_t val, uint32_t reg) -{ - writew(val, (uintptr_t)(SOC_EU_ADDR + SOC_FC_MASK0_OFFSET + reg)); -} - -static inline uint32_t soc_eu_fc_read(uint32_t reg) -{ - return readw((uintptr_t)(SOC_EU_ADDR + SOC_FC_MASK0_OFFSET + reg)); -} - -static inline void soc_eu_cl_write(uint32_t val, uint32_t reg) -{ - writew(val, (uintptr_t)(SOC_EU_ADDR + SOC_CL_MASK0_OFFSET + reg)); -} - -static inline uint32_t soc_eu_cl_read(uint32_t reg) -{ - return readw((uintptr_t)(SOC_EU_ADDR + SOC_CL_MASK0_OFFSET + reg)); -} - -static inline void soc_eu_pr_write(uint32_t val, uint32_t reg) -{ - writew(val, (uintptr_t)(SOC_EU_ADDR + SOC_PR_MASK0_OFFSET + reg)); -} - -static inline uint32_t soc_eu_pr_read(uint32_t reg) -{ - return readw((uintptr_t)(SOC_EU_ADDR + SOC_PR_MASK0_OFFSET + reg)); -} - -static inline void hal_soc_eu_set_fc_mask(int evt) -{ - if (evt >= 256 || evt < 0) - return; - - int shift = evt % 32; - uint32_t reg_offset = (uint32_t)evt / 32 * 4; - soc_eu_fc_write(soc_eu_fc_read(reg_offset) & ~(1u << shift), - reg_offset); -} - -static inline void hal_soc_eu_set_pr_mask(int evt) -{ - if (evt >= 256 || evt < 0) - return; - - int shift = evt % 32; - uint32_t reg_offset = (uint32_t)evt / 32 * 4; - soc_eu_pr_write(soc_eu_pr_read(reg_offset) & ~(1u << shift), - reg_offset); -} - -static inline void hal_soc_eu_set_cl_mask(int clusterId, int evt) -{ - if (evt >= 256 || evt < 0) - return; - - int shift = evt % 32; - uint32_t reg_offset = (uint32_t)evt / 32 * 4; - soc_eu_cl_write(soc_eu_cl_read(reg_offset) & ~(1u << shift), - reg_offset); -} - -static inline void hal_soc_eu_clear_fc_mask(int evt) -{ - if (evt >= 256 || evt < 0) - return; - - int shift = evt % 32; - uint32_t reg_offset = (uint32_t)evt / 32 * 4; - soc_eu_fc_write(soc_eu_fc_read(reg_offset) | (1u << shift), reg_offset); -} - -static inline void hal_soc_eu_clear_pr_mask(int evt) -{ - if (evt >= 256 || evt < 0) - return; - - int shift = evt % 32; - uint32_t reg_offset = (uint32_t)evt / 32 * 4; - soc_eu_pr_write(soc_eu_pr_read(reg_offset) | (1u << shift), reg_offset); -} - -static inline void hal_soc_eu_clear_cl_mask(int clusterId, int evt) -{ - if (evt >= 256 || evt < 0) - return; - - int shift = evt % 32; - uint32_t reg_offset = (uint32_t)evt / 32 * 4; - soc_eu_cl_write(soc_eu_cl_read(reg_offset) | (1u << shift), reg_offset); -} - - -static inline void hal_soc_eu_set_mask(uint32_t mask) -{ - writew(mask, (uintptr_t)(SOC_EU_ADDR + SOC_EVENT_OFFSET)); -} - -static inline void hal_soc_eu_configure(int cluster, int event, int active) -{ - abort(); - /* TODO: implement this */ - /* #if SOC_SW_EVENT0 < 32 */ - /* uint32_t mask = (cluster == FC_CLUSTER_ID) ? (SOCEU->FC_MASK_LSB) - * : (SOCEU->CL_MASK_LSB); */ - /* int fullEvent = event - SOC_SW_EVENT0; */ - - /* if (!active) */ - /* mask = mask | (1<FC_MASK_LSB = mask; */ - /* else */ - /* SOCEU->CL_MASK_LSB = mask; */ - /* #else */ - /* uint32_t mask = (cluster == FC_CLUSTER_ID) ? (SOCEU->FC_MASK_MSB) - * : (SOCEU->CL_MASK_MSB); */ - /* int fullEvent = event + SOC_SW_EVENT0 - 32; */ - - /* if (!active) */ - /* mask = mask | (1<FC_MASK_MSB = mask; */ - /* else */ - /* SOCEU->CL_MASK_MSB = mask; */ - /* #endif */ -} - -/* initialize soc event unit */ -void soc_eu_event_init(); - -#endif /* __SOC_EU_H__ */ diff --git a/rtos/freertos/abstraction_layer_freertos/include/soc_eu_metal.h b/rtos/freertos/abstraction_layer_freertos/include/soc_eu_metal.h deleted file mode 100644 index 0a7a4fd5..00000000 --- a/rtos/freertos/abstraction_layer_freertos/include/soc_eu_metal.h +++ /dev/null @@ -1,73 +0,0 @@ -/* - * Copyright (C) 2019 ETH Zurich and University of Bologna - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * SPDX-License-Identifier: Apache-2.0 - */ - -/* Author: Robert Balas (balasr@iis.ee.ethz.ch) - * Germain Haugou (germain.haugou@iis.ee.ethz.ch) - */ - -#ifndef __SOC_EU_H -#define __SOC_EU_H -/* - * SOC EVENTS - */ - -#define SOC_EU_EVENT 0x00 -#define SOC_FC_FIRST_MASK 0x04 -#define SOC_CL_FIRST_MASK 0x24 -#define SOC_PR_FIRST_MASK 0x44 -#define SOC_ERR_FIRST_MASK 0x64 -#define SOC_TIMER_SEL_HI 0x84 -#define SOC_TIMER_SEL_LO 0x88 - -#define SOC_EU_EVENT_0 0x1 -#define SOC_EU_EVENT_1 0x2 -#define SOC_EU_EVENT_2 0x4 -#define SOC_EU_EVENT_3 0x8 -#define SOC_EU_EVENT_4 0x10 -#define SOC_EU_EVENT_5 0x20 -#define SOC_EU_EVENT_6 0x40 -#define SOC_EU_EVENT_7 0x80 - -#define SOC_TIMER_SEL_ENABLE_SHIFT 31 -#define SOC_TIMER_SEL_EVT_SHIFT 0 -#define SOC_TIMER_SEL_EVT_WIDTH 8 -#define SOC_TIMER_SEL_EVT_MASK ((~0U) >> (32 - SOC_TIMER_SEL_EVT_WIDTH)) -// #define SOC_TIMER_SEL_EVT_MASK 0xff - -#define SOC_TIMER_SEL_ENABLE_DISABLED 0 -#define SOC_TIMER_SEL_ENABLE_ENABLED 1 - -#define SOC_TIMER_SEL_ENABLE_DIS (0 << SOC_TIMER_SEL_ENABLE_SHIFT) -#define SOC_TIMER_SEL_ENABLE_ENA (1 << SOC_TIMER_SEL_ENABLE_SHIFT) -#define SOC_TIMER_SEL_EVT_VAL(val) ((val) << SOC_TIMER_SEL_EVT_SHIFT) - -// related to XX_FIRST_MASK registers -#define SOC_NB_EVENT_REGS 8 -#define SOC_NB_EVENT_TARGETS 3 - -#define SOC_FC_MASK(x) (SOC_FC_FIRST_MASK + (x)*4) -#define SOC_CL_MASK(x) (SOC_CL_FIRST_MASK + (x)*4) -#define SOC_PR_MASK(x) (SOC_PR_FIRST_MASK + (x)*4) - -void soc_eu_mask_set(uint32_t offset, uint32_t mask); - -uint32_t soc_eu_mask_get(uint32_t offset); - -void soc_eu_event_init(); - -#endif diff --git a/rtos/freertos/abstraction_layer_freertos/include/spi.h b/rtos/freertos/abstraction_layer_freertos/include/spi.h deleted file mode 100644 index 8515bdf0..00000000 --- a/rtos/freertos/abstraction_layer_freertos/include/spi.h +++ /dev/null @@ -1,452 +0,0 @@ -/* - * Copyright (C) 2018 GreenWaves Technologies - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifndef __DRIVERS__SPI_H__ -#define __DRIVERS__SPI_H__ - -#include -#include - -#include "pmsis_task.h" - - -/// @cond IMPLEM - -#define __PI_SPI_CTRL_CPOL_BIT 0 -#define __PI_SPI_CTRL_CPHA_BIT 2 -#define __PI_SPI_CTRL_WORDSIZE_BIT 4 -#define __PI_SPI_CTRL_ENDIANNESS_BIT 6 -#define __PI_SPI_CTRL_SET_MAX_BAUDRATE_BIT 8 - -/// @endcond - - - -/** -* @ingroup groupDrivers -*/ - - - -/** - * @defgroup SPI SPI - * - * The SPIM driver provides support for transferring data between an external - * SPIM device and the chip running this driver. - * - */ - -/** - * @addtogroup SPI - * @{ - */ - -/**@{*/ - -/** \enum pi_spi_wordsize_e - * \brief Wordsize of the SPI bitstream elements. - * - * This is used to know how the endianness must be applied. - * Not all sizes are supported on all chips, check the chip-specific section - * to get more information. - */ -typedef enum { - PI_SPI_WORDSIZE_8 = 0, /*!< Each element is 8 bits. Thus the endianness - has no effect. */ - PI_SPI_WORDSIZE_16 = 1, /*!< Each element is 16 bits. The way each - element is stored in memory can then be specified with the endianness. */ - PI_SPI_WORDSIZE_32 = 2 /*!< Each element is 32 bits. The way each - element is stored in memory can then be specified with the endianness. */ -} pi_spi_wordsize_e; - -/** - * \enum pi_spi_polarity_e - * - * Clock polarity. - */ -typedef enum -{ - PI_SPI_POLARITY_0 = 0, /*!< Leading edge is rising edge, trailing edge is falling edge. */ - PI_SPI_POLARITY_1 = 1 /*!< Leading edge is falling edge, trailing edge is rising edge. */ -} pi_spi_polarity_e; - -/** - * \enum pi_spi_phase_e - * - * Clock phase. - */ -typedef enum -{ - PI_SPI_PHASE_0 = 0, /*!< Data shifted out on trailing edge of preceding clock cycle. - * Data sampled on leading edge of clock cycle. - */ - PI_SPI_PHASE_1 = 1 /*!< Data shifted out on leading edge of current clock cycle. - * Data sampled on trailing edge of clock cycle. - */ -} pi_spi_phase_e; - -/** \struct pi_spi_conf_t - * \brief SPI master configuration structure. - * - * This structure is used to pass the desired SPI master configuration to the - * runtime when opening a device. - */ -struct pi_spi_conf -{ - int max_baudrate; /*!< Maximum baudrate for the SPI bitstream which can - be used with the opened device . */ - char wordsize; /*!< Wordsize of the elements in the bitstream. Can - be PI_SPI_WORDSIZE_8 for 8 bits data or PI_SPI_WORDSIZE_32 for 32 bits - data. This is used to interpret the endianness. */ - char big_endian; /*!< If 1, the elements are stored in memory in a - big-endian way, i.e. the most significant byte is stored at the lowest - address. This is taken into account only if the wordsize is 32 bits. */ - pi_spi_polarity_e polarity; /*!< Polarity of the clock. */ - pi_spi_phase_e phase; /*!< Phase of the clock. */ - signed char cs; /*!< Specifies which SPI chip select is used for the - device. */ - signed char itf; /*!< Specifies on which SPI interface the device is - connected. */ - int max_rcv_chunk_size; /*!< Specifies maximum chunk size for reception when - using copies. */ - int max_snd_chunk_size; /*!< Specifies maximum chunk size for sending when - using copies. */ -}; - -/** \enum pi_spi_ioctl_e - * \brief Possible parameters which can be set through the pi_spi_control API - function. - * - * This is used to reconfigure dynamically some of the parameters of an - * opened device. - */ -typedef enum { - PI_SPI_CTRL_CPOL0 = 1 << __PI_SPI_CTRL_CPOL_BIT, /*!< Set the - clock polarity to 0. */ - PI_SPI_CTRL_CPOL1 = 2 << __PI_SPI_CTRL_CPOL_BIT, /*!< Set the - clock polarity to 1. */ - PI_SPI_CTRL_CPHA0 = 1 << __PI_SPI_CTRL_CPHA_BIT, /*!< Set the - clock phase to 0. */ - PI_SPI_CTRL_CPHA1 = 2 << __PI_SPI_CTRL_CPHA_BIT, /*!< Set the - clock phase to 1. */ - PI_SPI_CTRL_WORDSIZE_8 = 1 << __PI_SPI_CTRL_WORDSIZE_BIT, /*!< Set the - wordsize to 8 bits. */ - PI_SPI_CTRL_WORDSIZE_32 = 2 << __PI_SPI_CTRL_WORDSIZE_BIT, /*!< Set the - wordsize to 32 bits. */ - PI_SPI_CTRL_BIG_ENDIAN = 1 << __PI_SPI_CTRL_ENDIANNESS_BIT, /*!< - Handle the elements in memory in a big-endian way. */ - PI_SPI_CTRL_LITTLE_ENDIAN = 2 << __PI_SPI_CTRL_ENDIANNESS_BIT, /*!< - Handle the elements in memory in a little-endian way. */ - PI_SPI_CTRL_SET_MAX_BAUDRATE = 1 << __PI_SPI_CTRL_SET_MAX_BAUDRATE_BIT, /*!< - Change maximum baudrate. */ -} pi_spi_ioctl_e; - - - -/** \enum pi_spi_flags_e - * \brief Specifies additional behaviors for transfers. - * - * This flags can be given when transfering data. - * - */ -typedef enum { - PI_SPI_CS_AUTO = 0 << 0, /*!< Handles the chip select automatically. - It is set low just before the transfer is started and set back high when - the transfer is finished. */ - PI_SPI_CS_KEEP = 1 << 0, /*!< Handle the chip select manually. It is - set low just before the transfer is started and is kept low until the next - transfer. */ - PI_SPI_CS_NONE = 2 << 0, /*!< Don't do anything with the chip - select. */ - PI_SPI_LINES_SINGLE = 0 << 2, /*!< Use a single MISO line. */ - PI_SPI_LINES_QUAD = 1 << 2, /*!< Use quad MISO lines. */ - PI_SPI_LINES_OCTAL = 2 << 2, /*!< Use octal MISO lines. */ - PI_SPI_COPY_EXT2LOC = 1 << 4, /*!< Do a copy from external memory to local - chip memory. */ - PI_SPI_COPY_LOC2EXT = 0 << 4, /*!< Do a copy from local chip memory to - external memory. */ -} pi_spi_flags_e; - -/** \brief Initialize an SPI master configuration with default values. - * - * This function can be called to get default values for all parameters before - * setting some of them. - * The structure containing the configuration must be kept alive until the SPI - * device is opened. - * - * \param conf A pointer to the SPI master configuration. - */ -void pi_spi_conf_init(struct pi_spi_conf *conf); - -/** \brief Open an SPI device. - * - * This function must be called before the SPI device can be used. - * It will do all the needed configuration to make it usable and initialize - * the handle used to refer to this opened device when calling other functions. - * The caller is blocked until the operation is finished. - * - * \param device A pointer to the device structure of the device to open. - * This structure is allocated by the caller and must be kept alive until the - * device is closed. - * \return 0 if the operation is successfull, -1 if there was an error. - */ -int pi_spi_open(struct pi_device *device); - -/** \brief Close an opened SPI device. - * - * This function can be called to close an opened SPI device once it is not - * needed anymore, in order to free all allocated resources. Once this function - * is called, the device is not accessible anymore and must be opened - * again before being used. - * The caller is blocked until the operation is finished. - * - * \param device A pointer to the structure describing the device. - */ -void pi_spi_close(struct pi_device *device); - -/** \brief Dynamically change the device configuration. - * - * This function can be called to change part of the device configuration after - * it has been opened. - * - * \param device A pointer to the structure describing the device. - * \param cmd The command which specifies which parameters of the driver - * to modify and for some of them also their values. The command must be one - * of those defined in pi_spi_ioctl_e. - * \param arg An additional value which is required for some parameters - * when they are set. - */ -void pi_spi_ioctl(struct pi_device *device, uint32_t cmd, void *arg); - -/** \brief Enqueue a write copy to the SPI (from Chip to SPI device). - * - * This function can be used to send data to the SPI device. - * The copy will make a synchronous transfer between the SPI and one of the - * chip memory. - * This is by default using classic SPI transfer with MOSI and MISO lines, but - * other kind of transfers like quad SPI can be used by specifying additional - * flags. - * Due to hardware constraints, the address of the buffer must be aligned on - * 4 bytes and the size must be a multiple of 4. - * The caller is blocked until the transfer is finished. - * Depending on the chip, there may be some restrictions on the memory which - * can be used. Check the chip-specific documentation for more details. - * - * \param device A pointer to the structure describing the device. - * \param data The address in the chip where the data to be sent must be read. - * \param len The size in bits of the copy. - * \param flag Additional behaviors for the transfer can be specified using - * this flag. Can be 0 to use the default flag, which is using PI_SPI_CS_AUTO - * and PI_SPI_LINES_SINGLE. - */ -void pi_spi_send(struct pi_device *device, void *data, size_t len, - pi_spi_flags_e flag); - -/** \brief Enqueue a read copy to the SPI (from Chip to SPI device). - * - * This function can be used to receive data from the SPI device. - * The copy will make a synchronous transfer between the SPI and one of the - * chip memory. - * This is by default using classic SPI transfer with MOSI and MISO lines, but - * other kind of transfers like quad SPI - * can be used by specifying additional flags. - * Due to hardware constraints, the address of the buffer must be aligned on 4 - * bytes and the size must be a multiple of 4. - * The caller is blocked until the transfer is finished. - * Depending on the chip, there may be some restrictions on the memory which - * can be used. Check the chip-specific documentation for more details. - * - * \param device A pointer to the structure describing the device. - * \param data The address in the chip where the received data must be written. - * \param len The size in bits of the copy. - * \param flag Additional behaviors for the transfer can be specified using - * this flag. Can be 0 to use the default flag, which is using PI_SPI_CS_AUTO - * and PI_SPI_LINES_SINGLE. - */ -void pi_spi_receive(struct pi_device *device, void *data, size_t len, - pi_spi_flags_e flag); - -/** \brief Enqueue a read and write copy to the SPI (using full duplex mode). - * - * This function can be used to send and receive data with the SPI device using - * full duplex mode. - * The copy will make a synchronous transfer between the SPI and one of the - * chip memory. - * This is using classic SPI transfer with MOSI and MISO lines. - * Due to hardware constraints, the address of the buffer must be aligned on 4 - * bytes and the size must be a multiple of 4. - * The caller is blocked until the transfer is finished. - * Depending on the chip, there may be some restrictions on the memory which - * can be used. Check the chip-specific documentation for more details. - * - * \param device A pointer to the structure describing the device. - * \param tx_data The address in the chip where the data to be sent must be - * read. - * \param rx_data The address in the chip where the received data must be - * written. - * \param len The size in bits of the copy. - * \param flag Additional behaviors for the transfer can be specified using - * this flag. Can be 0 to use the default flag, which is using PI_SPI_CS_AUTO - * and PI_SPI_LINES_SINGLE. - */ -void pi_spi_transfer(struct pi_device *device, void *tx_data, void *rx_data, - size_t len, pi_spi_flags_e flag); - -/** \brief Enqueue an asynchronous write copy to the SPI (from Chip to SPI - * device). - * - * This function can be used to send data to the SPI device. - * The copy will make an asynchronous transfer between the SPI and one of the - * chip memory. This is by default using classic SPI transfer with MOSI and - * MISO lines, but other kind of transfers like quad SPI - * can be used by specifying additional flags. - * Due to hardware constraints, the address of the buffer must be aligned on 4 - * bytes and the size must be a multiple of 4. - * A task must be specified in order to specify how the caller should be - * notified when the transfer is finished. - * Depending on the chip, there may be some restrictions on the memory which - * can be used. Check the chip-specific documentation for more details. - * - * \param device A pointer to the structure describing the device. - * \param data The address in the chip where the data to be sent must be read. - * \param len The size in bits of the copy. - * \param flag Additional behaviors for the transfer can be specified using - * this flag. Can be 0 to use the default flag, which is using - * PI_SPI_CS_AUTO and PI_SPI_LINES_SINGLE. - * \param task The task used to notify the end of transfer. - See the documentation of pi_task_t for more details.details. - */ -void pi_spi_send_async(struct pi_device *device, void *data, size_t len, - pi_spi_flags_e flag, pi_task_t *task); - -/** \brief Enqueue an asynchronous read copy to the SPI (from Chip to SPI - * device). - * - * This function can be used to receive data from the SPI device. - * The copy will make an asynchronous transfer between the SPI and one of the - * chip memory. - * This is by default using classic SPI transfer with MOSI and MISO lines, but - * other kind of transfers like quad SPI - * can be used by specifying additional flags. - * Due to hardware constraints, the address of the buffer must be aligned on 4 - * bytes and the size must be a multiple of 4. - * A task must be specified in order to specify how the caller should be - * notified when the transfer is finished. - * Depending on the chip, there may be some restrictions on the memory which - * can be used. Check the chip-specific documentation for more details. - * - * \param device A pointer to the structure describing the device. - * \param data The address in the chip where the received data must be - * written. - * \param len The size in bits of the copy. - * \param flag Additional behaviors for the transfer can be specified using - * this flag. Can be 0 to use the default flag, which is using PI_SPI_CS_AUTO - * and PI_SPI_LINES_SINGLE. - * \param task The task used to notify the end of transfer. - See the documentation of pi_task_t for more details.details.details. - */ -void pi_spi_receive_async(struct pi_device *device, void *data, size_t len, - pi_spi_flags_e flag, pi_task_t *task); - -/** \brief Enqueue an asynchronous read and write copy to the SPI (using full - * duplex mode). - * - * This function can be used to send and receive data with the SPI device using - * full duplex flag. - * The copy will make an asynchronous transfer between the SPI and one of the - * chip memory. - * This is using classic SPI transfer with MOSI and MISO lines. - * Due to hardware constraints, the address of the buffer must be aligned on 4 - * bytes and the size must be a multiple of 4. - * A task must be specified in order to specify how the caller should be - * notified when the transfer is finished. - * Depending on the chip, there may be some restrictions on the memory which - * can be used. Check the chip-specific documentation for more details. - * - * \param device A pointer to the structure describing the device. - * \param tx_data The address in the chip where the data to be sent must be - * read. - * \param rx_data The address in the chip where the received data must be - * written. - * \param len The size in bits of the copy. - * \param flag Additional behaviors for the transfer can be specified using - * this flag. Can be 0 to use the default flag, which is using PI_SPI_CS_AUTO - * and PI_SPI_LINES_SINGLE. - * \param task The task used to notify the end of transfer. - See the documentation of pi_task_t for more details.details.details. - */ -void pi_spi_transfer_async(struct pi_device *device, void *tx_data, - void *rx_data, size_t len, pi_spi_flags_e flag, pi_task_t *task); - -//!@} - -/** - * @} end of SPI master - */ - -/// @cond IMPLEM - -/** - * Enqueue receive ucode given by the user, and receive answer in data buffer - */ -void pi_spi_receive_with_ucode(struct pi_device *device, void *data, - size_t len, pi_spi_flags_e flags, int ucode_size, - void *ucode); - -/** - * Enqueue receive ucode given by the user, and receive answer in data buffer - */ -void pi_spi_send_with_ucode(struct pi_device *device, void *data, - size_t len, pi_spi_flags_e flags, int ucode_size, - void *ucode); - -/** - * Extract config from device (useful to craft ucode) - */ -uint32_t pi_spi_get_config(struct pi_device *device); - -#define SPI_UCODE_CMD_SEND_CMD(cmd,bits,qpi) ((2<<28) | ((qpi)<<27) | (((bits)-1)<<16) | (((cmd)>>8)<<0) | (((cmd)&0xff)<<(0+8))) -#define SPI_UCODE_CMD_SEND_ADDR(bits,qpi) ((3<<28) | ((qpi)<<27) | (((bits)-1)<<16)) -#define SPI_UCODE_CMD_DUMMY(cycles) ((4<<28) | (((cycles)-1)<<16)) - -void *pi_spi_receive_ucode_set(struct pi_device *device, uint8_t *ucode, uint32_t ucode_size); - -void pi_spi_receive_ucode_set_addr_info(struct pi_device *device, uint8_t *ucode, uint32_t ucode_size); - -void *pi_spi_send_ucode_set(struct pi_device *device, uint8_t *ucode, uint32_t ucode_size); - -void pi_spi_send_ucode_set_addr_info(struct pi_device *device, uint8_t *ucode, uint32_t ucode_size); - -void pi_spi_copy(struct pi_device *device, - uint32_t addr, void *data, uint32_t size, - pi_spi_flags_e flags); - -void pi_spi_copy_async(struct pi_device *device, - uint32_t addr, void *data, uint32_t size, - pi_spi_flags_e flags, pi_task_t *task); - -void pi_spi_copy_2d(struct pi_device *device, - uint32_t addr, void *data, uint32_t size, uint32_t stride, - uint32_t length, pi_spi_flags_e flags); - -void pi_spi_copy_2d_async(struct pi_device *device, - uint32_t addr, void *data, uint32_t size, uint32_t stride, - uint32_t length, pi_spi_flags_e flags, pi_task_t *task); - -/// @endcond - - -#endif diff --git a/rtos/freertos/abstraction_layer_freertos/include/spi_periph.h b/rtos/freertos/abstraction_layer_freertos/include/spi_periph.h deleted file mode 100644 index 0902e918..00000000 --- a/rtos/freertos/abstraction_layer_freertos/include/spi_periph.h +++ /dev/null @@ -1,332 +0,0 @@ -/* - * Copyright (C) 2019 ETH Zurich, University of Bologna - * and GreenWaves Technologies - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifndef __SPI_PERIPH_H__ -#define __SPI_PERIPH_H__ - -#include "udma.h" - -/* ---------------------------------------------------------------------------- - -- SPI Peripheral Access Layer -- - ---------------------------------------------------------------------------- */ - -/** SPI_Type Register Layout Typedef */ -typedef struct { - udma_channel_t rx; /**< UDMA RX channel struct. */ - udma_channel_t tx; /**< UDMA TX channel struct. */ - udma_channel_t cmd; /**< UDMA CMD channel struct. */ -} spi_t; - -/* ---------------------------------------------------------------------------- - -- SPI Register Bitfield Access -- - ---------------------------------------------------------------------------- */ - -/* SPI command fields offset, mask, value definition */ -/* SPI commands fields offsets */ -#define SPI_CMD_ID_OFFSET 28 - -/* COMMON definitions */ -#define SPI_CMD_QPI_ENA 1 -#define SPI_CMD_QPI_DIS 0 -#define SPI_CMD_LSB_FIRST 1 -#define SPI_CMD_MSB_FIRST 0 -#define SPI_CMD_4_WORD_PER_TRANSF 2 -#define SPI_CMD_2_WORD_PER_TRANSF 1 -#define SPI_CMD_1_WORD_PER_TRANSF 0 -#define SPI_CMD_DATA_WITDH(val) (val) -#define SPI_CMD_CMD_SIZE(val) (val) - -/* CFG */ -#define SPI_CMD_CFG_CLK_DIV_OFFSET 0 -#define SPI_CMD_CFG_CLK_DIV_WIDTH 8 -#define SPI_CMD_CFG_CPHA_OFFSET 8 -#define SPI_CMD_CFG_CPOL_OFFSET 9 - -#define SPI_CMD_CFG_CLKDIV(val) (val) -#define SPI_CMD_CFG_CPOL_POS 1 -#define SPI_CMD_CFG_CPOL_NEG 0 -#define SPI_CMD_CFG_CPHA_STD 1 -#define SPI_CMD_CFG_CPHA_OPP 0 - -/* SOT */ -#define SPI_CMD_SOT_CS_OFFSET 0 -#define SPI_CMD_SOT_CS_WIDTH 2 - -#define SPI_CMD_SOT_CS0 0 -#define SPI_CMD_SOT_CS1 1 -#define SPI_CMD_SOT_CS2 2 -#define SPI_CMD_SOT_CS3 3 - -/* SEND_CMD */ -#define SPI_CMD_SEND_CMD_CMD_OFFSET 0 -#define SPI_CMD_SEND_CMD_CMD_WIDTH 16 -#define SPI_CMD_SEND_CMD_SIZE_OFFSET 16 -#define SPI_CMD_SEND_CMD_SIZE_WIDTH 4 -#define SPI_CMD_SEND_CMD_QPI_OFFSET 27 - -/* SEND_CMD */ -#define SPI_CMD_SEND_BITS_BITS_OFFSET 0 -#define SPI_CMD_SEND_BITS_BITS_WIDTH 16 -#define SPI_CMD_SEND_BITS_SIZE_OFFSET 16 -#define SPI_CMD_SEND_BITS_SIZE_WIDTH 4 -#define SPI_CMD_SEND_BITS_QPI_OFFSET 27 - -/* SEND_ADDR */ -#define SPI_CMD_SEND_ADDR_SIZE_OFFSET 16 -#define SPI_CMD_SEND_ADDR_SIZE_WIDTH 5 -#define SPI_CMD_SEND_ADDR_QPI_OFFSET 27 - -#define SPI_CMD_SEND_ADDR_VALUE(value) (value) - -/* SEND_DUMMY */ -#define SPI_CMD_DUMMY_CYCLE_OFFSET 16 -#define SPI_CMD_DUMMY_CYCLE_WIDTH 5 - -/* TX_DATA */ -#define SPI_CMD_TX_DATA_SIZE_OFFSET 0 -#define SPI_CMD_TX_DATA_SIZE_WIDTH 16 -#define SPI_CMD_TX_DATA_QPI_OFFSET 27 -#define SPI_CMD_TX_DATA_WORDTRANS_OFFSET 21 -#define SPI_CMD_TX_DATA_WORDTRANS_WIDTH 2 -#define SPI_CMD_TX_DATA_LSBFIRST_OFFSET 26 -#define SPI_CMD_TX_DATA_BITSWORD_OFFSET 16 -#define SPI_CMD_TX_DATA_BITSWORD_WIDTH 5 - -/* RX_DATA */ -#define SPI_CMD_RX_DATA_SIZE_OFFSET 0 -#define SPI_CMD_RX_DATA_SIZE_WIDTH 16 -#define SPI_CMD_RX_DATA_QPI_OFFSET 27 -#define SPI_CMD_RX_DATA_WORDTRANS_OFFSET 21 -#define SPI_CMD_RX_DATA_WORDTRANS_WIDTH 2 -#define SPI_CMD_RX_DATA_LSBFIRST_OFFSET 26 -#define SPI_CMD_RX_DATA_BITSWORD_OFFSET 16 -#define SPI_CMD_RX_DATA_BITSWORD_WIDTH 5 - -/* RPT */ -#define SPI_CMD_RPT_NB_OFFSET 0 -#define SPI_CMD_RPT_NB_WIDTH 16 - -/* EOT */ -#define SPI_CMD_EOT_GEN_EVT_OFFSET 0 -#define SPI_CMD_EOT_CS_KEEP_OFFSET 1 - -#define SPI_CMD_EOT_EVENT_ENA 1 -#define SPI_CMD_EOT_EVENT_DIS 0 - -/* WAIT */ -#define SPI_CMD_WAIT_EVENT_OFFSET 0 -#define SPI_CMD_WAIT_EVENT_WIDTH 2 - -/* RX_CHECK */ -#define SPI_CMD_RX_CHECK_VALUE_OFFSET 0 -#define SPI_CMD_RX_CHECK_VALUE_WIDTH 16 - -#define SPI_CMD_RX_CHECK_SIZE_OFFSET 16 -#define SPI_CMD_RX_CHECK_SIZE_WIDTH 4 - -#define SPI_CMD_RX_CHECK_MODE_OFFSET 24 -#define SPI_CMD_RX_CHECK_MODE_WIDTH 2 - -#define SPI_CMD_RX_CHECK_BYTE_ALIGN_OFFSET 26 - -#define SPI_CMD_RX_CHECK_QPI_OFFSET 27 - -#define SPI_CMD_RX_CHECK_MODE_MATCH 0 -#define SPI_CMD_RX_CHECK_MODE_ONES 1 -#define SPI_CMD_RX_CHECK_MODE_ZEROS 2 -#define SPI_CMD_RX_CHECK_MODE_MASK 3 - -/* FULL DUPLEX */ -#define SPI_CMD_FUL_SIZE_OFFSET 0 -#define SPI_CMD_FUL_SIZE_WIDTH 16 -#define SPI_CMD_FUL_WORDTRANS_OFFSET 21 -#define SPI_CMD_FUL_WORDTRANS_WIDTH 2 -#define SPI_CMD_FUL_LSBFIRST_OFFSET 26 -#define SPI_CMD_FUL_BITSWORD_OFFSET 16 -#define SPI_CMD_FUL_BITSWORD_WIDTH 5 - -#define SPI_CMD_SETUP_UC_TXRXEN_OFFSET 27 -#define SPI_CMD_SETUP_UC_DS_OFFSET 25 - -/* ---------------------------------------------------------------------------- - -- SPI CMD IDs and macros -- - ---------------------------------------------------------------------------- */ - -/*! @name CMD_CFG */ -/* Channel continuous mode: - - 1'b0: disable - - 1'b1: enable - At the end of the buffer the uDMA reloads the address and size and starts a new transfer. */ -#define UDMA_CORE_CMD_CFG_CONTINOUS_MASK (0x1) -#define UDMA_CORE_CMD_CFG_CONTINOUS_SHIFT (0) -#define UDMA_CORE_CMD_CFG_CONTINOUS(val) \ - (((uint32_t)(((uint32_t)(val)) \ - << UDMA_CORE_CMD_CFG_CONTINOUS_SHIFT)) & \ - UDMA_CORE_CMD_CFG_CONTINOUS_MASK) - -/* Channel transfer size used to increment uDMA buffer address pointer: - - 2'b00: +1 (8 bits) - - 2'b01: +2 (16 bits) - - 2'b10: +4 (32 bits) - - 2'b11: +0 */ -#define UDMA_CORE_CMD_CFG_DATASIZE_MASK (0x6) -#define UDMA_CORE_CMD_CFG_DATASIZE_SHIFT (1) -#define UDMA_CORE_CMD_CFG_DATASIZE(val) \ - (((uint32_t)(((uint32_t)(val)) << UDMA_CORE_CMD_CFG_DATASIZE_SHIFT)) & \ - UDMA_CORE_CMD_CFG_DATASIZE_MASK) - -/* Reserved/Not used. */ -#define UDMA_CORE_CMD_CFG_RESERVED_0_MASK (0x8) -#define UDMA_CORE_CMD_CFG_RESERVED_0_SHIFT (3) -#define UDMA_CORE_CMD_CFG_RESERVED_0(val) \ - (((uint32_t)(((uint32_t)(val)) \ - << UDMA_CORE_CMD_CFG_RESERVED_0_SHIFT)) & \ - UDMA_CORE_CMD_CFG_RESERVED_0_MASK) - -/* Channel enable and start transfer: - - 1'b0: disable - - 1'b1: enable - This signal is used also to queue a transfer if one is already ongoing. */ -#define UDMA_CORE_CMD_CFG_EN_MASK (0x10) -#define UDMA_CORE_CMD_CFG_EN_SHIFT (4) -#define UDMA_CORE_CMD_CFG_EN(val) \ - (((uint32_t)(((uint32_t)(val)) << UDMA_CORE_CMD_CFG_EN_SHIFT)) & \ - UDMA_CORE_CMD_CFG_EN_MASK) - -/* Transfer pending in queue status flag: - - 1'b0: no pending transfer in the queue - - 1'b1: pending transfer in the queue */ -#define UDMA_CORE_CMD_CFG_PENDING_MASK (0x20) -#define UDMA_CORE_CMD_CFG_PENDING_SHIFT (5) -#define UDMA_CORE_CMD_CFG_PENDING(val) \ - (((uint32_t)(((uint32_t)(val)) << UDMA_CORE_CMD_CFG_PENDING_SHIFT)) & \ - UDMA_CORE_CMD_CFG_PENDING_MASK) - -/* Channel clear and stop transfer: - - 1'b0: disable - - 1'b1: stop and clear the on-going transfer */ -#define UDMA_CORE_CMD_CFG_CLR_MASK (0x20) -#define UDMA_CORE_CMD_CFG_CLR_SHIFT (5) -#define UDMA_CORE_CMD_CFG_CLR(val) \ - (((uint32_t)(((uint32_t)(val)) << UDMA_CORE_CMD_CFG_CLR_SHIFT)) & \ - UDMA_CORE_CMD_CFG_CLR_MASK) - -/* Reserved/Not used. */ -#define UDMA_CORE_CMD_CFG_RESERVED_1_MASK (0xffffff80) -#define UDMA_CORE_CMD_CFG_RESERVED_1_SHIFT (7) -#define UDMA_CORE_CMD_CFG_RESERVED_1(val) \ - (((uint32_t)(((uint32_t)(val)) \ - << UDMA_CORE_CMD_CFG_RESERVED_1_SHIFT)) & \ - UDMA_CORE_CMD_CFG_RESERVED_1_MASK) - -/*! @name CMD_INITCFG */ -/* Reserved/Not used. */ -#define UDMA_CORE_CMD_INITCFG_RESERVED_0_MASK (0xffffffff) -#define UDMA_CORE_CMD_INITCFG_RESERVED_0_SHIFT (0) -#define UDMA_CORE_CMD_INITCFG_RESERVED_0(val) \ - (((uint32_t)(((uint32_t)(val)) \ - << UDMA_CORE_CMD_INITCFG_RESERVED_0_SHIFT)) & \ - UDMA_CORE_CMD_INITCFG_RESERVED_0_MASK) - -#define SPI_CMD_CFG_ID 0x0 /* Sets the configuration for the SPI Master IP. */ -#define SPI_CMD_SOT_ID 0x1 /* Sets the Chip Select (CS). */ -#define SPI_CMD_SEND_CMD_ID 0x2 /* Transmits a configurable size command. */ -#define SPI_CMD_SEND_BITS_ID 0x2 /* Transmits a configurable size command. */ -#define SPI_CMD_SEND_ADDR_ID 0x3 /* Transmits a configurable size address. */ -#define SPI_CMD_DUMMY_ID \ - 0x4 /* Receives a number of dummy bits (not sent to the rx interface). */ -#define SPI_CMD_WAIT_ID \ - 0x5 /* Waits an external event to move to the next instruction. */ -#define SPI_CMD_TX_DATA_ID 0x6 /* Sends data (max 64Kbits). */ -#define SPI_CMD_RX_DATA_ID 0x7 /* Receives data (max 64Kbits). */ -#define SPI_CMD_RPT_ID 0x8 /* Repeat the next transfer N times. */ -#define SPI_CMD_EOT_ID 0x9 /* Clears the Chip Select (CS). */ -#define SPI_CMD_RPT_END_ID 0xA /* End of the repeat loop command. */ -#define SPI_CMD_RX_CHECK_ID \ - 0xB /* Check up ot 16 bits of data against an expected value. */ -#define SPI_CMD_FULL_DUPL_ID 0xC /* Activate full duplex mode. */ - -#define SPI_CMD_CFG(clockDiv, cpol, cpha) \ - ((SPI_CMD_CFG_ID << SPI_CMD_ID_OFFSET) | \ - ((cpol) << SPI_CMD_CFG_CPOL_OFFSET) | \ - ((cpha) << SPI_CMD_CFG_CPHA_OFFSET) | \ - ((clockDiv) << SPI_CMD_CFG_CLK_DIV_OFFSET)) -#define SPI_CMD_SOT(cs) \ - ((SPI_CMD_SOT_ID << SPI_CMD_ID_OFFSET) | \ - ((cs) << SPI_CMD_SOT_CS_OFFSET)) -#define SPI_CMD_SEND_CMD(cmd, bits, qpi) \ - ((SPI_CMD_SEND_CMD_ID << SPI_CMD_ID_OFFSET) | \ - ((qpi) << SPI_CMD_SEND_CMD_QPI_OFFSET) | \ - (((bits)-1) << SPI_CMD_SEND_CMD_SIZE_OFFSET) | (cmd & 0xFFFF)) -#define SPI_CMD_SEND_BITS(data, bits, qpi) \ - ((SPI_CMD_SEND_CMD_ID << SPI_CMD_ID_OFFSET) | \ - ((qpi) << SPI_CMD_SEND_CMD_QPI_OFFSET) | \ - (((bits)-1) << SPI_CMD_SEND_CMD_SIZE_OFFSET) | (data & 0xFFFF)) -#define SPI_CMD_DUMMY(cycles) \ - ((SPI_CMD_DUMMY_ID << SPI_CMD_ID_OFFSET) | \ - (((cycles)-1) << SPI_CMD_DUMMY_CYCLE_OFFSET)) - -#define SPI_CMD_SETUP_UCA(txrxen, ds, addr) \ - ((SPI_CMD_SETUP_UCA_ID << SPI_CMD_ID_OFFSET) | \ - ((txrxen) << SPI_CMD_SETUP_UC_TXRXEN_OFFSET) | ((int)addr & 0xFFFFF)) -#define SPI_CMD_SETUP_UCS(txrxen, ds, size) \ - ((SPI_CMD_SETUP_UCS_ID << SPI_CMD_ID_OFFSET) | \ - ((txrxen) << SPI_CMD_SETUP_UC_TXRXEN_OFFSET) | \ - ((ds) << SPI_CMD_SETUP_UC_DS_OFFSET) | (size & 0xFFFF)) - -#define SPI_CMD_TX_DATA(words, wordstrans, bitsword, qpi, lsbfirst) \ - ((SPI_CMD_TX_DATA_ID << SPI_CMD_ID_OFFSET) | \ - ((qpi) << SPI_CMD_TX_DATA_QPI_OFFSET) | \ - ((wordstrans) << SPI_CMD_TX_DATA_WORDTRANS_OFFSET) | \ - ((bitsword - 1) << SPI_CMD_TX_DATA_BITSWORD_OFFSET) | \ - (((words)-1) << SPI_CMD_TX_DATA_SIZE_OFFSET) | \ - ((lsbfirst) << SPI_CMD_TX_DATA_LSBFIRST_OFFSET)) -#define SPI_CMD_RX_DATA(words, wordstrans, bitsword, qpi, lsbfirst) \ - ((SPI_CMD_RX_DATA_ID << SPI_CMD_ID_OFFSET) | \ - ((qpi) << SPI_CMD_RX_DATA_QPI_OFFSET) | \ - ((wordstrans) << SPI_CMD_RX_DATA_WORDTRANS_OFFSET) | \ - ((bitsword - 1) << SPI_CMD_RX_DATA_BITSWORD_OFFSET) | \ - (((words)-1) << SPI_CMD_RX_DATA_SIZE_OFFSET) | \ - ((lsbfirst) << SPI_CMD_RX_DATA_LSBFIRST_OFFSET)) -#define SPI_CMD_RPT(iter) \ - ((SPI_CMD_RPT_ID << SPI_CMD_ID_OFFSET) | \ - ((iter) << SPI_CMD_RPT_NB_OFFSET)) -#define SPI_CMD_EOT(evt, cs_keep) \ - ((SPI_CMD_EOT_ID << SPI_CMD_ID_OFFSET) | \ - ((evt) << SPI_CMD_EOT_GEN_EVT_OFFSET) | \ - ((cs_keep) << SPI_CMD_EOT_CS_KEEP_OFFSET)) - -#define SPI_CMD_RX_CHECK(mode, bits, value, qpi, byte_align) \ - ((SPI_CMD_RX_CHECK_ID << SPI_CMD_ID_OFFSET) | \ - ((value) << SPI_CMD_RX_CHECK_VALUE_OFFSET) | \ - ((mode) << SPI_CMD_RX_CHECK_MODE_OFFSET) | \ - (((bits)-1) << SPI_CMD_RX_CHECK_SIZE_OFFSET) | \ - ((byte_align) << SPI_CMD_RX_CHECK_BYTE_ALIGN_OFFSET) | \ - ((qpi) << SPI_CMD_RX_CHECK_QPI_OFFSET)) - -#define SPI_CMD_WAIT(event) \ - ((SPI_CMD_WAIT_ID << SPI_CMD_ID_OFFSET) | \ - ((event) << SPI_CMD_WAIT_EVENT_OFFSET)) -#define SPI_CMD_RPT_END() ((SPI_CMD_RPT_END_ID << SPI_CMD_ID_OFFSET)) -#define SPI_CMD_FUL(words, wordstrans, bitsword, lsbfirst) \ - ((SPI_CMD_FUL_ID << SPI_CMD_ID_OFFSET) | \ - ((wordstrans) << SPI_CMD_FUL_WORDTRANS_OFFSET) | \ - ((bitsword - 1) << SPI_CMD_FUL_BITSWORD_OFFSET) | \ - (((words)-1) << SPI_CMD_FUL_SIZE_OFFSET) | \ - ((lsbfirst) << SPI_CMD_FUL_LSBFIRST_OFFSET)) - -#endif /* __SPI_PERIPH_H__ */ diff --git a/rtos/freertos/abstraction_layer_freertos/include/stack_macros.h b/rtos/freertos/abstraction_layer_freertos/include/stack_macros.h deleted file mode 100644 index 4f6f5cac..00000000 --- a/rtos/freertos/abstraction_layer_freertos/include/stack_macros.h +++ /dev/null @@ -1,129 +0,0 @@ -/* - * FreeRTOS Kernel V10.3.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. - * - * Permission is hereby granted, free of charge, to any person obtaining a copy of - * this software and associated documentation files (the "Software"), to deal in - * the Software without restriction, including without limitation the rights to - * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of - * the Software, and to permit persons to whom the Software is furnished to do so, - * subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS - * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR - * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER - * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - * - * http://www.FreeRTOS.org - * http://aws.amazon.com/freertos - * - * 1 tab == 4 spaces! - */ - -#ifndef STACK_MACROS_H -#define STACK_MACROS_H - -/* - * Call the stack overflow hook function if the stack of the task being swapped - * out is currently overflowed, or looks like it might have overflowed in the - * past. - * - * Setting configCHECK_FOR_STACK_OVERFLOW to 1 will cause the macro to check - * the current stack state only - comparing the current top of stack value to - * the stack limit. Setting configCHECK_FOR_STACK_OVERFLOW to greater than 1 - * will also cause the last few stack bytes to be checked to ensure the value - * to which the bytes were set when the task was created have not been - * overwritten. Note this second test does not guarantee that an overflowed - * stack will always be recognised. - */ - -/*-----------------------------------------------------------*/ - -#if( ( configCHECK_FOR_STACK_OVERFLOW == 1 ) && ( portSTACK_GROWTH < 0 ) ) - - /* Only the current stack state is to be checked. */ - #define taskCHECK_FOR_STACK_OVERFLOW() \ - { \ - /* Is the currently saved stack pointer within the stack limit? */ \ - if( pxCurrentTCB->pxTopOfStack <= pxCurrentTCB->pxStack ) \ - { \ - vApplicationStackOverflowHook( ( TaskHandle_t ) pxCurrentTCB, pxCurrentTCB->pcTaskName ); \ - } \ - } - -#endif /* configCHECK_FOR_STACK_OVERFLOW == 1 */ -/*-----------------------------------------------------------*/ - -#if( ( configCHECK_FOR_STACK_OVERFLOW == 1 ) && ( portSTACK_GROWTH > 0 ) ) - - /* Only the current stack state is to be checked. */ - #define taskCHECK_FOR_STACK_OVERFLOW() \ - { \ - \ - /* Is the currently saved stack pointer within the stack limit? */ \ - if( pxCurrentTCB->pxTopOfStack >= pxCurrentTCB->pxEndOfStack ) \ - { \ - vApplicationStackOverflowHook( ( TaskHandle_t ) pxCurrentTCB, pxCurrentTCB->pcTaskName ); \ - } \ - } - -#endif /* configCHECK_FOR_STACK_OVERFLOW == 1 */ -/*-----------------------------------------------------------*/ - -#if( ( configCHECK_FOR_STACK_OVERFLOW > 1 ) && ( portSTACK_GROWTH < 0 ) ) - - #define taskCHECK_FOR_STACK_OVERFLOW() \ - { \ - const uint32_t * const pulStack = ( uint32_t * ) pxCurrentTCB->pxStack; \ - const uint32_t ulCheckValue = ( uint32_t ) 0xa5a5a5a5; \ - \ - if( ( pulStack[ 0 ] != ulCheckValue ) || \ - ( pulStack[ 1 ] != ulCheckValue ) || \ - ( pulStack[ 2 ] != ulCheckValue ) || \ - ( pulStack[ 3 ] != ulCheckValue ) ) \ - { \ - vApplicationStackOverflowHook( ( TaskHandle_t ) pxCurrentTCB, pxCurrentTCB->pcTaskName ); \ - } \ - } - -#endif /* #if( configCHECK_FOR_STACK_OVERFLOW > 1 ) */ -/*-----------------------------------------------------------*/ - -#if( ( configCHECK_FOR_STACK_OVERFLOW > 1 ) && ( portSTACK_GROWTH > 0 ) ) - - #define taskCHECK_FOR_STACK_OVERFLOW() \ - { \ - int8_t *pcEndOfStack = ( int8_t * ) pxCurrentTCB->pxEndOfStack; \ - static const uint8_t ucExpectedStackBytes[] = { tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, \ - tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, \ - tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, \ - tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, \ - tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE }; \ - \ - \ - pcEndOfStack -= sizeof( ucExpectedStackBytes ); \ - \ - /* Has the extremity of the task stack ever been written over? */ \ - if( memcmp( ( void * ) pcEndOfStack, ( void * ) ucExpectedStackBytes, sizeof( ucExpectedStackBytes ) ) != 0 ) \ - { \ - vApplicationStackOverflowHook( ( TaskHandle_t ) pxCurrentTCB, pxCurrentTCB->pcTaskName ); \ - } \ - } - -#endif /* #if( configCHECK_FOR_STACK_OVERFLOW > 1 ) */ -/*-----------------------------------------------------------*/ - -/* Remove stack overflow macro if not being used. */ -#ifndef taskCHECK_FOR_STACK_OVERFLOW - #define taskCHECK_FOR_STACK_OVERFLOW() -#endif - - - -#endif /* STACK_MACROS_H */ - diff --git a/rtos/freertos/abstraction_layer_freertos/include/stdint.readme b/rtos/freertos/abstraction_layer_freertos/include/stdint.readme deleted file mode 100644 index 6d86149c..00000000 --- a/rtos/freertos/abstraction_layer_freertos/include/stdint.readme +++ /dev/null @@ -1,27 +0,0 @@ - -#ifndef FREERTOS_STDINT -#define FREERTOS_STDINT - -/******************************************************************************* - * THIS IS NOT A FULL stdint.h IMPLEMENTATION - It only contains the definitions - * necessary to build the FreeRTOS code. It is provided to allow FreeRTOS to be - * built using compilers that do not provide their own stdint.h definition. - * - * To use this file: - * - * 1) Copy this file into the directory that contains your FreeRTOSConfig.h - * header file, as that directory will already be in the compilers include - * path. - * - * 2) Rename the copied file stdint.h. - * - */ - -typedef signed char int8_t; -typedef unsigned char uint8_t; -typedef short int16_t; -typedef unsigned short uint16_t; -typedef long int32_t; -typedef unsigned long uint32_t; - -#endif /* FREERTOS_STDINT */ diff --git a/rtos/freertos/abstraction_layer_freertos/include/stdout.h b/rtos/freertos/abstraction_layer_freertos/include/stdout.h deleted file mode 100644 index 672a4591..00000000 --- a/rtos/freertos/abstraction_layer_freertos/include/stdout.h +++ /dev/null @@ -1,31 +0,0 @@ -/* - * Copyright (C) 2020 ETH Zurich and University of Bologna - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * SPDX-License-Identifier: Apache-2.0 - */ - -/* Description: Debug stdout (simulation) memory map - * Authors: Robert Balas (balasr@iis.ee.ethz.ch) - */ - -#ifndef __STDOUT_H__ -#define __STDOUT_H__ - -#define STDOUT_PUTC_OFFSET 0x0 -#define STDOUT_OPEN_OFFSET 0x2000 -#define STDOUT_OPEN_END_OFFSET 0x3000 -#define STDOUT_READ_OFFSET 0x4000 - -#endif /* __STDOUT_H__ */ diff --git a/rtos/freertos/abstraction_layer_freertos/include/stream_buffer.h b/rtos/freertos/abstraction_layer_freertos/include/stream_buffer.h deleted file mode 100644 index 50c782ae..00000000 --- a/rtos/freertos/abstraction_layer_freertos/include/stream_buffer.h +++ /dev/null @@ -1,859 +0,0 @@ -/* - * FreeRTOS Kernel V10.3.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. - * - * Permission is hereby granted, free of charge, to any person obtaining a copy of - * this software and associated documentation files (the "Software"), to deal in - * the Software without restriction, including without limitation the rights to - * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of - * the Software, and to permit persons to whom the Software is furnished to do so, - * subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS - * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR - * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER - * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - * - * http://www.FreeRTOS.org - * http://aws.amazon.com/freertos - * - * 1 tab == 4 spaces! - */ - -/* - * Stream buffers are used to send a continuous stream of data from one task or - * interrupt to another. Their implementation is light weight, making them - * particularly suited for interrupt to task and core to core communication - * scenarios. - * - * ***NOTE***: Uniquely among FreeRTOS objects, the stream buffer - * implementation (so also the message buffer implementation, as message buffers - * are built on top of stream buffers) assumes there is only one task or - * interrupt that will write to the buffer (the writer), and only one task or - * interrupt that will read from the buffer (the reader). It is safe for the - * writer and reader to be different tasks or interrupts, but, unlike other - * FreeRTOS objects, it is not safe to have multiple different writers or - * multiple different readers. If there are to be multiple different writers - * then the application writer must place each call to a writing API function - * (such as xStreamBufferSend()) inside a critical section and set the send - * block time to 0. Likewise, if there are to be multiple different readers - * then the application writer must place each call to a reading API function - * (such as xStreamBufferReceive()) inside a critical section section and set the - * receive block time to 0. - * - */ - -#ifndef STREAM_BUFFER_H -#define STREAM_BUFFER_H - -#ifndef INC_FREERTOS_H - #error "include FreeRTOS.h must appear in source files before include stream_buffer.h" -#endif - -#if defined( __cplusplus ) -extern "C" { -#endif - -/** - * Type by which stream buffers are referenced. For example, a call to - * xStreamBufferCreate() returns an StreamBufferHandle_t variable that can - * then be used as a parameter to xStreamBufferSend(), xStreamBufferReceive(), - * etc. - */ -struct StreamBufferDef_t; -typedef struct StreamBufferDef_t * StreamBufferHandle_t; - - -/** - * message_buffer.h - * -
-StreamBufferHandle_t xStreamBufferCreate( size_t xBufferSizeBytes, size_t xTriggerLevelBytes );
-
- * - * Creates a new stream buffer using dynamically allocated memory. See - * xStreamBufferCreateStatic() for a version that uses statically allocated - * memory (memory that is allocated at compile time). - * - * configSUPPORT_DYNAMIC_ALLOCATION must be set to 1 or left undefined in - * FreeRTOSConfig.h for xStreamBufferCreate() to be available. - * - * @param xBufferSizeBytes The total number of bytes the stream buffer will be - * able to hold at any one time. - * - * @param xTriggerLevelBytes The number of bytes that must be in the stream - * buffer before a task that is blocked on the stream buffer to wait for data is - * moved out of the blocked state. For example, if a task is blocked on a read - * of an empty stream buffer that has a trigger level of 1 then the task will be - * unblocked when a single byte is written to the buffer or the task's block - * time expires. As another example, if a task is blocked on a read of an empty - * stream buffer that has a trigger level of 10 then the task will not be - * unblocked until the stream buffer contains at least 10 bytes or the task's - * block time expires. If a reading task's block time expires before the - * trigger level is reached then the task will still receive however many bytes - * are actually available. Setting a trigger level of 0 will result in a - * trigger level of 1 being used. It is not valid to specify a trigger level - * that is greater than the buffer size. - * - * @return If NULL is returned, then the stream buffer cannot be created - * because there is insufficient heap memory available for FreeRTOS to allocate - * the stream buffer data structures and storage area. A non-NULL value being - * returned indicates that the stream buffer has been created successfully - - * the returned value should be stored as the handle to the created stream - * buffer. - * - * Example use: -
-
-void vAFunction( void )
-{
-StreamBufferHandle_t xStreamBuffer;
-const size_t xStreamBufferSizeBytes = 100, xTriggerLevel = 10;
-
-    // Create a stream buffer that can hold 100 bytes.  The memory used to hold
-    // both the stream buffer structure and the data in the stream buffer is
-    // allocated dynamically.
-    xStreamBuffer = xStreamBufferCreate( xStreamBufferSizeBytes, xTriggerLevel );
-
-    if( xStreamBuffer == NULL )
-    {
-        // There was not enough heap memory space available to create the
-        // stream buffer.
-    }
-    else
-    {
-        // The stream buffer was created successfully and can now be used.
-    }
-}
-
- * \defgroup xStreamBufferCreate xStreamBufferCreate - * \ingroup StreamBufferManagement - */ -#define xStreamBufferCreate( xBufferSizeBytes, xTriggerLevelBytes ) xStreamBufferGenericCreate( xBufferSizeBytes, xTriggerLevelBytes, pdFALSE ) - -/** - * stream_buffer.h - * -
-StreamBufferHandle_t xStreamBufferCreateStatic( size_t xBufferSizeBytes,
-                                                size_t xTriggerLevelBytes,
-                                                uint8_t *pucStreamBufferStorageArea,
-                                                StaticStreamBuffer_t *pxStaticStreamBuffer );
-
- * Creates a new stream buffer using statically allocated memory. See - * xStreamBufferCreate() for a version that uses dynamically allocated memory. - * - * configSUPPORT_STATIC_ALLOCATION must be set to 1 in FreeRTOSConfig.h for - * xStreamBufferCreateStatic() to be available. - * - * @param xBufferSizeBytes The size, in bytes, of the buffer pointed to by the - * pucStreamBufferStorageArea parameter. - * - * @param xTriggerLevelBytes The number of bytes that must be in the stream - * buffer before a task that is blocked on the stream buffer to wait for data is - * moved out of the blocked state. For example, if a task is blocked on a read - * of an empty stream buffer that has a trigger level of 1 then the task will be - * unblocked when a single byte is written to the buffer or the task's block - * time expires. As another example, if a task is blocked on a read of an empty - * stream buffer that has a trigger level of 10 then the task will not be - * unblocked until the stream buffer contains at least 10 bytes or the task's - * block time expires. If a reading task's block time expires before the - * trigger level is reached then the task will still receive however many bytes - * are actually available. Setting a trigger level of 0 will result in a - * trigger level of 1 being used. It is not valid to specify a trigger level - * that is greater than the buffer size. - * - * @param pucStreamBufferStorageArea Must point to a uint8_t array that is at - * least xBufferSizeBytes + 1 big. This is the array to which streams are - * copied when they are written to the stream buffer. - * - * @param pxStaticStreamBuffer Must point to a variable of type - * StaticStreamBuffer_t, which will be used to hold the stream buffer's data - * structure. - * - * @return If the stream buffer is created successfully then a handle to the - * created stream buffer is returned. If either pucStreamBufferStorageArea or - * pxStaticstreamBuffer are NULL then NULL is returned. - * - * Example use: -
-
-// Used to dimension the array used to hold the streams.  The available space
-// will actually be one less than this, so 999.
-#define STORAGE_SIZE_BYTES 1000
-
-// Defines the memory that will actually hold the streams within the stream
-// buffer.
-static uint8_t ucStorageBuffer[ STORAGE_SIZE_BYTES ];
-
-// The variable used to hold the stream buffer structure.
-StaticStreamBuffer_t xStreamBufferStruct;
-
-void MyFunction( void )
-{
-StreamBufferHandle_t xStreamBuffer;
-const size_t xTriggerLevel = 1;
-
-    xStreamBuffer = xStreamBufferCreateStatic( sizeof( ucBufferStorage ),
-                                               xTriggerLevel,
-                                               ucBufferStorage,
-                                               &xStreamBufferStruct );
-
-    // As neither the pucStreamBufferStorageArea or pxStaticStreamBuffer
-    // parameters were NULL, xStreamBuffer will not be NULL, and can be used to
-    // reference the created stream buffer in other stream buffer API calls.
-
-    // Other code that uses the stream buffer can go here.
-}
-
-
- * \defgroup xStreamBufferCreateStatic xStreamBufferCreateStatic - * \ingroup StreamBufferManagement - */ -#define xStreamBufferCreateStatic( xBufferSizeBytes, xTriggerLevelBytes, pucStreamBufferStorageArea, pxStaticStreamBuffer ) xStreamBufferGenericCreateStatic( xBufferSizeBytes, xTriggerLevelBytes, pdFALSE, pucStreamBufferStorageArea, pxStaticStreamBuffer ) - -/** - * stream_buffer.h - * -
-size_t xStreamBufferSend( StreamBufferHandle_t xStreamBuffer,
-                          const void *pvTxData,
-                          size_t xDataLengthBytes,
-                          TickType_t xTicksToWait );
-
- * - * Sends bytes to a stream buffer. The bytes are copied into the stream buffer. - * - * ***NOTE***: Uniquely among FreeRTOS objects, the stream buffer - * implementation (so also the message buffer implementation, as message buffers - * are built on top of stream buffers) assumes there is only one task or - * interrupt that will write to the buffer (the writer), and only one task or - * interrupt that will read from the buffer (the reader). It is safe for the - * writer and reader to be different tasks or interrupts, but, unlike other - * FreeRTOS objects, it is not safe to have multiple different writers or - * multiple different readers. If there are to be multiple different writers - * then the application writer must place each call to a writing API function - * (such as xStreamBufferSend()) inside a critical section and set the send - * block time to 0. Likewise, if there are to be multiple different readers - * then the application writer must place each call to a reading API function - * (such as xStreamBufferReceive()) inside a critical section and set the receive - * block time to 0. - * - * Use xStreamBufferSend() to write to a stream buffer from a task. Use - * xStreamBufferSendFromISR() to write to a stream buffer from an interrupt - * service routine (ISR). - * - * @param xStreamBuffer The handle of the stream buffer to which a stream is - * being sent. - * - * @param pvTxData A pointer to the buffer that holds the bytes to be copied - * into the stream buffer. - * - * @param xDataLengthBytes The maximum number of bytes to copy from pvTxData - * into the stream buffer. - * - * @param xTicksToWait The maximum amount of time the task should remain in the - * Blocked state to wait for enough space to become available in the stream - * buffer, should the stream buffer contain too little space to hold the - * another xDataLengthBytes bytes. The block time is specified in tick periods, - * so the absolute time it represents is dependent on the tick frequency. The - * macro pdMS_TO_TICKS() can be used to convert a time specified in milliseconds - * into a time specified in ticks. Setting xTicksToWait to portMAX_DELAY will - * cause the task to wait indefinitely (without timing out), provided - * INCLUDE_vTaskSuspend is set to 1 in FreeRTOSConfig.h. If a task times out - * before it can write all xDataLengthBytes into the buffer it will still write - * as many bytes as possible. A task does not use any CPU time when it is in - * the blocked state. - * - * @return The number of bytes written to the stream buffer. If a task times - * out before it can write all xDataLengthBytes into the buffer it will still - * write as many bytes as possible. - * - * Example use: -
-void vAFunction( StreamBufferHandle_t xStreamBuffer )
-{
-size_t xBytesSent;
-uint8_t ucArrayToSend[] = { 0, 1, 2, 3 };
-char *pcStringToSend = "String to send";
-const TickType_t x100ms = pdMS_TO_TICKS( 100 );
-
-    // Send an array to the stream buffer, blocking for a maximum of 100ms to
-    // wait for enough space to be available in the stream buffer.
-    xBytesSent = xStreamBufferSend( xStreamBuffer, ( void * ) ucArrayToSend, sizeof( ucArrayToSend ), x100ms );
-
-    if( xBytesSent != sizeof( ucArrayToSend ) )
-    {
-        // The call to xStreamBufferSend() times out before there was enough
-        // space in the buffer for the data to be written, but it did
-        // successfully write xBytesSent bytes.
-    }
-
-    // Send the string to the stream buffer.  Return immediately if there is not
-    // enough space in the buffer.
-    xBytesSent = xStreamBufferSend( xStreamBuffer, ( void * ) pcStringToSend, strlen( pcStringToSend ), 0 );
-
-    if( xBytesSent != strlen( pcStringToSend ) )
-    {
-        // The entire string could not be added to the stream buffer because
-        // there was not enough free space in the buffer, but xBytesSent bytes
-        // were sent.  Could try again to send the remaining bytes.
-    }
-}
-
- * \defgroup xStreamBufferSend xStreamBufferSend - * \ingroup StreamBufferManagement - */ -size_t xStreamBufferSend( StreamBufferHandle_t xStreamBuffer, - const void *pvTxData, - size_t xDataLengthBytes, - TickType_t xTicksToWait ) PRIVILEGED_FUNCTION; - -/** - * stream_buffer.h - * -
-size_t xStreamBufferSendFromISR( StreamBufferHandle_t xStreamBuffer,
-                                 const void *pvTxData,
-                                 size_t xDataLengthBytes,
-                                 BaseType_t *pxHigherPriorityTaskWoken );
-
- * - * Interrupt safe version of the API function that sends a stream of bytes to - * the stream buffer. - * - * ***NOTE***: Uniquely among FreeRTOS objects, the stream buffer - * implementation (so also the message buffer implementation, as message buffers - * are built on top of stream buffers) assumes there is only one task or - * interrupt that will write to the buffer (the writer), and only one task or - * interrupt that will read from the buffer (the reader). It is safe for the - * writer and reader to be different tasks or interrupts, but, unlike other - * FreeRTOS objects, it is not safe to have multiple different writers or - * multiple different readers. If there are to be multiple different writers - * then the application writer must place each call to a writing API function - * (such as xStreamBufferSend()) inside a critical section and set the send - * block time to 0. Likewise, if there are to be multiple different readers - * then the application writer must place each call to a reading API function - * (such as xStreamBufferReceive()) inside a critical section and set the receive - * block time to 0. - * - * Use xStreamBufferSend() to write to a stream buffer from a task. Use - * xStreamBufferSendFromISR() to write to a stream buffer from an interrupt - * service routine (ISR). - * - * @param xStreamBuffer The handle of the stream buffer to which a stream is - * being sent. - * - * @param pvTxData A pointer to the data that is to be copied into the stream - * buffer. - * - * @param xDataLengthBytes The maximum number of bytes to copy from pvTxData - * into the stream buffer. - * - * @param pxHigherPriorityTaskWoken It is possible that a stream buffer will - * have a task blocked on it waiting for data. Calling - * xStreamBufferSendFromISR() can make data available, and so cause a task that - * was waiting for data to leave the Blocked state. If calling - * xStreamBufferSendFromISR() causes a task to leave the Blocked state, and the - * unblocked task has a priority higher than the currently executing task (the - * task that was interrupted), then, internally, xStreamBufferSendFromISR() - * will set *pxHigherPriorityTaskWoken to pdTRUE. If - * xStreamBufferSendFromISR() sets this value to pdTRUE, then normally a - * context switch should be performed before the interrupt is exited. This will - * ensure that the interrupt returns directly to the highest priority Ready - * state task. *pxHigherPriorityTaskWoken should be set to pdFALSE before it - * is passed into the function. See the example code below for an example. - * - * @return The number of bytes actually written to the stream buffer, which will - * be less than xDataLengthBytes if the stream buffer didn't have enough free - * space for all the bytes to be written. - * - * Example use: -
-// A stream buffer that has already been created.
-StreamBufferHandle_t xStreamBuffer;
-
-void vAnInterruptServiceRoutine( void )
-{
-size_t xBytesSent;
-char *pcStringToSend = "String to send";
-BaseType_t xHigherPriorityTaskWoken = pdFALSE; // Initialised to pdFALSE.
-
-    // Attempt to send the string to the stream buffer.
-    xBytesSent = xStreamBufferSendFromISR( xStreamBuffer,
-                                           ( void * ) pcStringToSend,
-                                           strlen( pcStringToSend ),
-                                           &xHigherPriorityTaskWoken );
-
-    if( xBytesSent != strlen( pcStringToSend ) )
-    {
-        // There was not enough free space in the stream buffer for the entire
-        // string to be written, ut xBytesSent bytes were written.
-    }
-
-    // If xHigherPriorityTaskWoken was set to pdTRUE inside
-    // xStreamBufferSendFromISR() then a task that has a priority above the
-    // priority of the currently executing task was unblocked and a context
-    // switch should be performed to ensure the ISR returns to the unblocked
-    // task.  In most FreeRTOS ports this is done by simply passing
-    // xHigherPriorityTaskWoken into taskYIELD_FROM_ISR(), which will test the
-    // variables value, and perform the context switch if necessary.  Check the
-    // documentation for the port in use for port specific instructions.
-    taskYIELD_FROM_ISR( xHigherPriorityTaskWoken );
-}
-
- * \defgroup xStreamBufferSendFromISR xStreamBufferSendFromISR - * \ingroup StreamBufferManagement - */ -size_t xStreamBufferSendFromISR( StreamBufferHandle_t xStreamBuffer, - const void *pvTxData, - size_t xDataLengthBytes, - BaseType_t * const pxHigherPriorityTaskWoken ) PRIVILEGED_FUNCTION; - -/** - * stream_buffer.h - * -
-size_t xStreamBufferReceive( StreamBufferHandle_t xStreamBuffer,
-                             void *pvRxData,
-                             size_t xBufferLengthBytes,
-                             TickType_t xTicksToWait );
-
- * - * Receives bytes from a stream buffer. - * - * ***NOTE***: Uniquely among FreeRTOS objects, the stream buffer - * implementation (so also the message buffer implementation, as message buffers - * are built on top of stream buffers) assumes there is only one task or - * interrupt that will write to the buffer (the writer), and only one task or - * interrupt that will read from the buffer (the reader). It is safe for the - * writer and reader to be different tasks or interrupts, but, unlike other - * FreeRTOS objects, it is not safe to have multiple different writers or - * multiple different readers. If there are to be multiple different writers - * then the application writer must place each call to a writing API function - * (such as xStreamBufferSend()) inside a critical section and set the send - * block time to 0. Likewise, if there are to be multiple different readers - * then the application writer must place each call to a reading API function - * (such as xStreamBufferReceive()) inside a critical section and set the receive - * block time to 0. - * - * Use xStreamBufferReceive() to read from a stream buffer from a task. Use - * xStreamBufferReceiveFromISR() to read from a stream buffer from an - * interrupt service routine (ISR). - * - * @param xStreamBuffer The handle of the stream buffer from which bytes are to - * be received. - * - * @param pvRxData A pointer to the buffer into which the received bytes will be - * copied. - * - * @param xBufferLengthBytes The length of the buffer pointed to by the - * pvRxData parameter. This sets the maximum number of bytes to receive in one - * call. xStreamBufferReceive will return as many bytes as possible up to a - * maximum set by xBufferLengthBytes. - * - * @param xTicksToWait The maximum amount of time the task should remain in the - * Blocked state to wait for data to become available if the stream buffer is - * empty. xStreamBufferReceive() will return immediately if xTicksToWait is - * zero. The block time is specified in tick periods, so the absolute time it - * represents is dependent on the tick frequency. The macro pdMS_TO_TICKS() can - * be used to convert a time specified in milliseconds into a time specified in - * ticks. Setting xTicksToWait to portMAX_DELAY will cause the task to wait - * indefinitely (without timing out), provided INCLUDE_vTaskSuspend is set to 1 - * in FreeRTOSConfig.h. A task does not use any CPU time when it is in the - * Blocked state. - * - * @return The number of bytes actually read from the stream buffer, which will - * be less than xBufferLengthBytes if the call to xStreamBufferReceive() timed - * out before xBufferLengthBytes were available. - * - * Example use: -
-void vAFunction( StreamBuffer_t xStreamBuffer )
-{
-uint8_t ucRxData[ 20 ];
-size_t xReceivedBytes;
-const TickType_t xBlockTime = pdMS_TO_TICKS( 20 );
-
-    // Receive up to another sizeof( ucRxData ) bytes from the stream buffer.
-    // Wait in the Blocked state (so not using any CPU processing time) for a
-    // maximum of 100ms for the full sizeof( ucRxData ) number of bytes to be
-    // available.
-    xReceivedBytes = xStreamBufferReceive( xStreamBuffer,
-                                           ( void * ) ucRxData,
-                                           sizeof( ucRxData ),
-                                           xBlockTime );
-
-    if( xReceivedBytes > 0 )
-    {
-        // A ucRxData contains another xRecievedBytes bytes of data, which can
-        // be processed here....
-    }
-}
-
- * \defgroup xStreamBufferReceive xStreamBufferReceive - * \ingroup StreamBufferManagement - */ -size_t xStreamBufferReceive( StreamBufferHandle_t xStreamBuffer, - void *pvRxData, - size_t xBufferLengthBytes, - TickType_t xTicksToWait ) PRIVILEGED_FUNCTION; - -/** - * stream_buffer.h - * -
-size_t xStreamBufferReceiveFromISR( StreamBufferHandle_t xStreamBuffer,
-                                    void *pvRxData,
-                                    size_t xBufferLengthBytes,
-                                    BaseType_t *pxHigherPriorityTaskWoken );
-
- * - * An interrupt safe version of the API function that receives bytes from a - * stream buffer. - * - * Use xStreamBufferReceive() to read bytes from a stream buffer from a task. - * Use xStreamBufferReceiveFromISR() to read bytes from a stream buffer from an - * interrupt service routine (ISR). - * - * @param xStreamBuffer The handle of the stream buffer from which a stream - * is being received. - * - * @param pvRxData A pointer to the buffer into which the received bytes are - * copied. - * - * @param xBufferLengthBytes The length of the buffer pointed to by the - * pvRxData parameter. This sets the maximum number of bytes to receive in one - * call. xStreamBufferReceive will return as many bytes as possible up to a - * maximum set by xBufferLengthBytes. - * - * @param pxHigherPriorityTaskWoken It is possible that a stream buffer will - * have a task blocked on it waiting for space to become available. Calling - * xStreamBufferReceiveFromISR() can make space available, and so cause a task - * that is waiting for space to leave the Blocked state. If calling - * xStreamBufferReceiveFromISR() causes a task to leave the Blocked state, and - * the unblocked task has a priority higher than the currently executing task - * (the task that was interrupted), then, internally, - * xStreamBufferReceiveFromISR() will set *pxHigherPriorityTaskWoken to pdTRUE. - * If xStreamBufferReceiveFromISR() sets this value to pdTRUE, then normally a - * context switch should be performed before the interrupt is exited. That will - * ensure the interrupt returns directly to the highest priority Ready state - * task. *pxHigherPriorityTaskWoken should be set to pdFALSE before it is - * passed into the function. See the code example below for an example. - * - * @return The number of bytes read from the stream buffer, if any. - * - * Example use: -
-// A stream buffer that has already been created.
-StreamBuffer_t xStreamBuffer;
-
-void vAnInterruptServiceRoutine( void )
-{
-uint8_t ucRxData[ 20 ];
-size_t xReceivedBytes;
-BaseType_t xHigherPriorityTaskWoken = pdFALSE;  // Initialised to pdFALSE.
-
-    // Receive the next stream from the stream buffer.
-    xReceivedBytes = xStreamBufferReceiveFromISR( xStreamBuffer,
-                                                  ( void * ) ucRxData,
-                                                  sizeof( ucRxData ),
-                                                  &xHigherPriorityTaskWoken );
-
-    if( xReceivedBytes > 0 )
-    {
-        // ucRxData contains xReceivedBytes read from the stream buffer.
-        // Process the stream here....
-    }
-
-    // If xHigherPriorityTaskWoken was set to pdTRUE inside
-    // xStreamBufferReceiveFromISR() then a task that has a priority above the
-    // priority of the currently executing task was unblocked and a context
-    // switch should be performed to ensure the ISR returns to the unblocked
-    // task.  In most FreeRTOS ports this is done by simply passing
-    // xHigherPriorityTaskWoken into taskYIELD_FROM_ISR(), which will test the
-    // variables value, and perform the context switch if necessary.  Check the
-    // documentation for the port in use for port specific instructions.
-    taskYIELD_FROM_ISR( xHigherPriorityTaskWoken );
-}
-
- * \defgroup xStreamBufferReceiveFromISR xStreamBufferReceiveFromISR - * \ingroup StreamBufferManagement - */ -size_t xStreamBufferReceiveFromISR( StreamBufferHandle_t xStreamBuffer, - void *pvRxData, - size_t xBufferLengthBytes, - BaseType_t * const pxHigherPriorityTaskWoken ) PRIVILEGED_FUNCTION; - -/** - * stream_buffer.h - * -
-void vStreamBufferDelete( StreamBufferHandle_t xStreamBuffer );
-
- * - * Deletes a stream buffer that was previously created using a call to - * xStreamBufferCreate() or xStreamBufferCreateStatic(). If the stream - * buffer was created using dynamic memory (that is, by xStreamBufferCreate()), - * then the allocated memory is freed. - * - * A stream buffer handle must not be used after the stream buffer has been - * deleted. - * - * @param xStreamBuffer The handle of the stream buffer to be deleted. - * - * \defgroup vStreamBufferDelete vStreamBufferDelete - * \ingroup StreamBufferManagement - */ -void vStreamBufferDelete( StreamBufferHandle_t xStreamBuffer ) PRIVILEGED_FUNCTION; - -/** - * stream_buffer.h - * -
-BaseType_t xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer );
-
- * - * Queries a stream buffer to see if it is full. A stream buffer is full if it - * does not have any free space, and therefore cannot accept any more data. - * - * @param xStreamBuffer The handle of the stream buffer being queried. - * - * @return If the stream buffer is full then pdTRUE is returned. Otherwise - * pdFALSE is returned. - * - * \defgroup xStreamBufferIsFull xStreamBufferIsFull - * \ingroup StreamBufferManagement - */ -BaseType_t xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) PRIVILEGED_FUNCTION; - -/** - * stream_buffer.h - * -
-BaseType_t xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer );
-
- * - * Queries a stream buffer to see if it is empty. A stream buffer is empty if - * it does not contain any data. - * - * @param xStreamBuffer The handle of the stream buffer being queried. - * - * @return If the stream buffer is empty then pdTRUE is returned. Otherwise - * pdFALSE is returned. - * - * \defgroup xStreamBufferIsEmpty xStreamBufferIsEmpty - * \ingroup StreamBufferManagement - */ -BaseType_t xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) PRIVILEGED_FUNCTION; - -/** - * stream_buffer.h - * -
-BaseType_t xStreamBufferReset( StreamBufferHandle_t xStreamBuffer );
-
- * - * Resets a stream buffer to its initial, empty, state. Any data that was in - * the stream buffer is discarded. A stream buffer can only be reset if there - * are no tasks blocked waiting to either send to or receive from the stream - * buffer. - * - * @param xStreamBuffer The handle of the stream buffer being reset. - * - * @return If the stream buffer is reset then pdPASS is returned. If there was - * a task blocked waiting to send to or read from the stream buffer then the - * stream buffer is not reset and pdFAIL is returned. - * - * \defgroup xStreamBufferReset xStreamBufferReset - * \ingroup StreamBufferManagement - */ -BaseType_t xStreamBufferReset( StreamBufferHandle_t xStreamBuffer ) PRIVILEGED_FUNCTION; - -/** - * stream_buffer.h - * -
-size_t xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer );
-
- * - * Queries a stream buffer to see how much free space it contains, which is - * equal to the amount of data that can be sent to the stream buffer before it - * is full. - * - * @param xStreamBuffer The handle of the stream buffer being queried. - * - * @return The number of bytes that can be written to the stream buffer before - * the stream buffer would be full. - * - * \defgroup xStreamBufferSpacesAvailable xStreamBufferSpacesAvailable - * \ingroup StreamBufferManagement - */ -size_t xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) PRIVILEGED_FUNCTION; - -/** - * stream_buffer.h - * -
-size_t xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer );
-
- * - * Queries a stream buffer to see how much data it contains, which is equal to - * the number of bytes that can be read from the stream buffer before the stream - * buffer would be empty. - * - * @param xStreamBuffer The handle of the stream buffer being queried. - * - * @return The number of bytes that can be read from the stream buffer before - * the stream buffer would be empty. - * - * \defgroup xStreamBufferBytesAvailable xStreamBufferBytesAvailable - * \ingroup StreamBufferManagement - */ -size_t xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) PRIVILEGED_FUNCTION; - -/** - * stream_buffer.h - * -
-BaseType_t xStreamBufferSetTriggerLevel( StreamBufferHandle_t xStreamBuffer, size_t xTriggerLevel );
-
- * - * A stream buffer's trigger level is the number of bytes that must be in the - * stream buffer before a task that is blocked on the stream buffer to - * wait for data is moved out of the blocked state. For example, if a task is - * blocked on a read of an empty stream buffer that has a trigger level of 1 - * then the task will be unblocked when a single byte is written to the buffer - * or the task's block time expires. As another example, if a task is blocked - * on a read of an empty stream buffer that has a trigger level of 10 then the - * task will not be unblocked until the stream buffer contains at least 10 bytes - * or the task's block time expires. If a reading task's block time expires - * before the trigger level is reached then the task will still receive however - * many bytes are actually available. Setting a trigger level of 0 will result - * in a trigger level of 1 being used. It is not valid to specify a trigger - * level that is greater than the buffer size. - * - * A trigger level is set when the stream buffer is created, and can be modified - * using xStreamBufferSetTriggerLevel(). - * - * @param xStreamBuffer The handle of the stream buffer being updated. - * - * @param xTriggerLevel The new trigger level for the stream buffer. - * - * @return If xTriggerLevel was less than or equal to the stream buffer's length - * then the trigger level will be updated and pdTRUE is returned. Otherwise - * pdFALSE is returned. - * - * \defgroup xStreamBufferSetTriggerLevel xStreamBufferSetTriggerLevel - * \ingroup StreamBufferManagement - */ -BaseType_t xStreamBufferSetTriggerLevel( StreamBufferHandle_t xStreamBuffer, size_t xTriggerLevel ) PRIVILEGED_FUNCTION; - -/** - * stream_buffer.h - * -
-BaseType_t xStreamBufferSendCompletedFromISR( StreamBufferHandle_t xStreamBuffer, BaseType_t *pxHigherPriorityTaskWoken );
-
- * - * For advanced users only. - * - * The sbSEND_COMPLETED() macro is called from within the FreeRTOS APIs when - * data is sent to a message buffer or stream buffer. If there was a task that - * was blocked on the message or stream buffer waiting for data to arrive then - * the sbSEND_COMPLETED() macro sends a notification to the task to remove it - * from the Blocked state. xStreamBufferSendCompletedFromISR() does the same - * thing. It is provided to enable application writers to implement their own - * version of sbSEND_COMPLETED(), and MUST NOT BE USED AT ANY OTHER TIME. - * - * See the example implemented in FreeRTOS/Demo/Minimal/MessageBufferAMP.c for - * additional information. - * - * @param xStreamBuffer The handle of the stream buffer to which data was - * written. - * - * @param pxHigherPriorityTaskWoken *pxHigherPriorityTaskWoken should be - * initialised to pdFALSE before it is passed into - * xStreamBufferSendCompletedFromISR(). If calling - * xStreamBufferSendCompletedFromISR() removes a task from the Blocked state, - * and the task has a priority above the priority of the currently running task, - * then *pxHigherPriorityTaskWoken will get set to pdTRUE indicating that a - * context switch should be performed before exiting the ISR. - * - * @return If a task was removed from the Blocked state then pdTRUE is returned. - * Otherwise pdFALSE is returned. - * - * \defgroup xStreamBufferSendCompletedFromISR xStreamBufferSendCompletedFromISR - * \ingroup StreamBufferManagement - */ -BaseType_t xStreamBufferSendCompletedFromISR( StreamBufferHandle_t xStreamBuffer, BaseType_t *pxHigherPriorityTaskWoken ) PRIVILEGED_FUNCTION; - -/** - * stream_buffer.h - * -
-BaseType_t xStreamBufferReceiveCompletedFromISR( StreamBufferHandle_t xStreamBuffer, BaseType_t *pxHigherPriorityTaskWoken );
-
- * - * For advanced users only. - * - * The sbRECEIVE_COMPLETED() macro is called from within the FreeRTOS APIs when - * data is read out of a message buffer or stream buffer. If there was a task - * that was blocked on the message or stream buffer waiting for data to arrive - * then the sbRECEIVE_COMPLETED() macro sends a notification to the task to - * remove it from the Blocked state. xStreamBufferReceiveCompletedFromISR() - * does the same thing. It is provided to enable application writers to - * implement their own version of sbRECEIVE_COMPLETED(), and MUST NOT BE USED AT - * ANY OTHER TIME. - * - * See the example implemented in FreeRTOS/Demo/Minimal/MessageBufferAMP.c for - * additional information. - * - * @param xStreamBuffer The handle of the stream buffer from which data was - * read. - * - * @param pxHigherPriorityTaskWoken *pxHigherPriorityTaskWoken should be - * initialised to pdFALSE before it is passed into - * xStreamBufferReceiveCompletedFromISR(). If calling - * xStreamBufferReceiveCompletedFromISR() removes a task from the Blocked state, - * and the task has a priority above the priority of the currently running task, - * then *pxHigherPriorityTaskWoken will get set to pdTRUE indicating that a - * context switch should be performed before exiting the ISR. - * - * @return If a task was removed from the Blocked state then pdTRUE is returned. - * Otherwise pdFALSE is returned. - * - * \defgroup xStreamBufferReceiveCompletedFromISR xStreamBufferReceiveCompletedFromISR - * \ingroup StreamBufferManagement - */ -BaseType_t xStreamBufferReceiveCompletedFromISR( StreamBufferHandle_t xStreamBuffer, BaseType_t *pxHigherPriorityTaskWoken ) PRIVILEGED_FUNCTION; - -/* Functions below here are not part of the public API. */ -StreamBufferHandle_t xStreamBufferGenericCreate( size_t xBufferSizeBytes, - size_t xTriggerLevelBytes, - BaseType_t xIsMessageBuffer ) PRIVILEGED_FUNCTION; - -StreamBufferHandle_t xStreamBufferGenericCreateStatic( size_t xBufferSizeBytes, - size_t xTriggerLevelBytes, - BaseType_t xIsMessageBuffer, - uint8_t * const pucStreamBufferStorageArea, - StaticStreamBuffer_t * const pxStaticStreamBuffer ) PRIVILEGED_FUNCTION; - -size_t xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) PRIVILEGED_FUNCTION; - -#if( configUSE_TRACE_FACILITY == 1 ) - void vStreamBufferSetStreamBufferNumber( StreamBufferHandle_t xStreamBuffer, UBaseType_t uxStreamBufferNumber ) PRIVILEGED_FUNCTION; - UBaseType_t uxStreamBufferGetStreamBufferNumber( StreamBufferHandle_t xStreamBuffer ) PRIVILEGED_FUNCTION; - uint8_t ucStreamBufferGetStreamBufferType( StreamBufferHandle_t xStreamBuffer ) PRIVILEGED_FUNCTION; -#endif - -#if defined( __cplusplus ) -} -#endif - -#endif /* !defined( STREAM_BUFFER_H ) */ diff --git a/rtos/freertos/abstraction_layer_freertos/include/system.h b/rtos/freertos/abstraction_layer_freertos/include/system.h deleted file mode 100644 index 96e7a84d..00000000 --- a/rtos/freertos/abstraction_layer_freertos/include/system.h +++ /dev/null @@ -1,38 +0,0 @@ -/* - * Copyright 2020 ETH Zurich - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * SPDX-License-Identifier: Apache-2.0 - * Author: Robert Balas (balasr@iis.ee.ethz.ch) - */ - -/* Description: Platform system level functions */ - -#ifndef __SYSTEM_H__ -#define __SYSTEM_H__ - -#include -#include - -#include "FreeRTOSConfig.h" - -#define DEFAULT_SYSTEM_CLOCK 50000000u /* Default System clock value */ - -extern volatile uint32_t system_core_clock; - -void system_init(void); -void system_core_clock_update(void); -uint32_t system_core_clock_get(void); - -#endif /* __SYSTEM_H_ */ diff --git a/rtos/freertos/abstraction_layer_freertos/include/target.h b/rtos/freertos/abstraction_layer_freertos/include/target.h deleted file mode 100644 index 3500fe1b..00000000 --- a/rtos/freertos/abstraction_layer_freertos/include/target.h +++ /dev/null @@ -1,129 +0,0 @@ -/* - * Copyright 2020 ETH Zurich - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * SPDX-License-Identifier: Apache-2.0 - */ - -/* Author: Robert Balas */ - -#ifndef __TARGET_H__ -#define __TARGET_H__ - -#include "properties.h" -#include "riscv.h" - -static inline void hal_compiler_barrier() -{ - asm volatile("" : : : "memory"); -} - -static inline void hal_write32(volatile void *addr, uint32_t value) -{ - asm volatile("" : : : "memory"); - *((volatile uint32_t *)addr) = value; - asm volatile("" : : : "memory"); -} - -static inline void hal_write8(volatile void *addr, uint8_t value) -{ - asm volatile("" : : : "memory"); - *((volatile uint8_t *)addr) = value; - asm volatile("" : : : "memory"); -} - -static inline void hal_or32(volatile void *addr, uint32_t value) -{ - asm volatile("" : : : "memory"); - *((volatile uint32_t *)addr) |= value; - asm volatile("" : : : "memory"); -} - -static inline void hal_and32(volatile void *addr, uint32_t value) -{ - asm volatile("" : : : "memory"); - *((volatile uint32_t *)addr) &= value; - asm volatile("" : : : "memory"); -} - -static inline uint32_t hal_read32(volatile void *addr) -{ - asm volatile("" : : : "memory"); - uint32_t ret = *((volatile uint32_t *)addr); - asm volatile("" : : : "memory"); - return ret; -} - -static inline uint8_t hal_read8(volatile void *addr) -{ - asm volatile("" : : : "memory"); - uint8_t ret = *((volatile uint8_t *)addr); - asm volatile("" : : : "memory"); - return ret; -} - - -static inline uint32_t __native_core_id() -{ - /* encoding of mhartid: {21'b0, cluster_id_i[5:0], 1'b0, core_id_i[3:0]} - */ - uint32_t mhartid = csr_read(MHARTID_ADDR); - return mhartid & 0x01f; -} - -static inline uint32_t __native_cluster_id() -{ - /* encoding of mhartid {21'b0, cluster_id_i[5:0], 1'b0, core_id_i[3:0]} - */ - uint32_t mhartid = csr_read(MHARTID_ADDR); - return (mhartid >> 5) & 0x3f; -} - -static inline uint32_t __native_is_fc() -{ - return 1; -} - - -static inline uint32_t pi_core_id() -{ - return __native_core_id(); -} - -static inline uint32_t pi_cluster_id() -{ - return __native_cluster_id(); -} - -static inline uint32_t pi_is_fc() -{ - return __native_is_fc(); -} - -static inline uint32_t pi_nb_cluster_cores() -{ - return ARCHI_CLUSTER_NB_PE; -} - -static inline int pi_cl_cluster_nb_cores() -{ - return ARCHI_CLUSTER_NB_PE; -} - -static inline uint32_t pi_cl_cluster_nb_pe_cores(void) -{ - return ARCHI_CLUSTER_NB_PE; -} - -#endif diff --git a/rtos/freertos/abstraction_layer_freertos/include/task.h b/rtos/freertos/abstraction_layer_freertos/include/task.h deleted file mode 100644 index b861483d..00000000 --- a/rtos/freertos/abstraction_layer_freertos/include/task.h +++ /dev/null @@ -1,2543 +0,0 @@ -/* - * FreeRTOS Kernel V10.3.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. - * - * Permission is hereby granted, free of charge, to any person obtaining a copy of - * this software and associated documentation files (the "Software"), to deal in - * the Software without restriction, including without limitation the rights to - * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of - * the Software, and to permit persons to whom the Software is furnished to do so, - * subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS - * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR - * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER - * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - * - * http://www.FreeRTOS.org - * http://aws.amazon.com/freertos - * - * 1 tab == 4 spaces! - */ - - -#ifndef INC_TASK_H -#define INC_TASK_H - -#ifndef INC_FREERTOS_H - #error "include FreeRTOS.h must appear in source files before include task.h" -#endif - -#include "list.h" - -#ifdef __cplusplus -extern "C" { -#endif - -/*----------------------------------------------------------- - * MACROS AND DEFINITIONS - *----------------------------------------------------------*/ - -#define tskKERNEL_VERSION_NUMBER "V10.3.0" -#define tskKERNEL_VERSION_MAJOR 10 -#define tskKERNEL_VERSION_MINOR 3 -#define tskKERNEL_VERSION_BUILD 0 - -/* MPU region parameters passed in ulParameters - * of MemoryRegion_t struct. */ -#define tskMPU_REGION_READ_ONLY ( 1UL << 0UL ) -#define tskMPU_REGION_READ_WRITE ( 1UL << 1UL ) -#define tskMPU_REGION_EXECUTE_NEVER ( 1UL << 2UL ) -#define tskMPU_REGION_NORMAL_MEMORY ( 1UL << 3UL ) -#define tskMPU_REGION_DEVICE_MEMORY ( 1UL << 4UL ) - -/** - * task. h - * - * Type by which tasks are referenced. For example, a call to xTaskCreate - * returns (via a pointer parameter) an TaskHandle_t variable that can then - * be used as a parameter to vTaskDelete to delete the task. - * - * \defgroup TaskHandle_t TaskHandle_t - * \ingroup Tasks - */ -struct tskTaskControlBlock; /* The old naming convention is used to prevent breaking kernel aware debuggers. */ -typedef struct tskTaskControlBlock* TaskHandle_t; - -/* - * Defines the prototype to which the application task hook function must - * conform. - */ -typedef BaseType_t (*TaskHookFunction_t)( void * ); - -/* Task states returned by eTaskGetState. */ -typedef enum -{ - eRunning = 0, /* A task is querying the state of itself, so must be running. */ - eReady, /* The task being queried is in a read or pending ready list. */ - eBlocked, /* The task being queried is in the Blocked state. */ - eSuspended, /* The task being queried is in the Suspended state, or is in the Blocked state with an infinite time out. */ - eDeleted, /* The task being queried has been deleted, but its TCB has not yet been freed. */ - eInvalid /* Used as an 'invalid state' value. */ -} eTaskState; - -/* Actions that can be performed when vTaskNotify() is called. */ -typedef enum -{ - eNoAction = 0, /* Notify the task without updating its notify value. */ - eSetBits, /* Set bits in the task's notification value. */ - eIncrement, /* Increment the task's notification value. */ - eSetValueWithOverwrite, /* Set the task's notification value to a specific value even if the previous value has not yet been read by the task. */ - eSetValueWithoutOverwrite /* Set the task's notification value if the previous value has been read by the task. */ -} eNotifyAction; - -/* - * Used internally only. - */ -typedef struct xTIME_OUT -{ - BaseType_t xOverflowCount; - TickType_t xTimeOnEntering; -} TimeOut_t; - -/* - * Defines the memory ranges allocated to the task when an MPU is used. - */ -typedef struct xMEMORY_REGION -{ - void *pvBaseAddress; - uint32_t ulLengthInBytes; - uint32_t ulParameters; -} MemoryRegion_t; - -/* - * Parameters required to create an MPU protected task. - */ -typedef struct xTASK_PARAMETERS -{ - TaskFunction_t pvTaskCode; - const char * const pcName; /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ - configSTACK_DEPTH_TYPE usStackDepth; - void *pvParameters; - UBaseType_t uxPriority; - StackType_t *puxStackBuffer; - MemoryRegion_t xRegions[ portNUM_CONFIGURABLE_REGIONS ]; - #if ( ( portUSING_MPU_WRAPPERS == 1 ) && ( configSUPPORT_STATIC_ALLOCATION == 1 ) ) - StaticTask_t * const pxTaskBuffer; - #endif -} TaskParameters_t; - -/* Used with the uxTaskGetSystemState() function to return the state of each task -in the system. */ -typedef struct xTASK_STATUS -{ - TaskHandle_t xHandle; /* The handle of the task to which the rest of the information in the structure relates. */ - const char *pcTaskName; /* A pointer to the task's name. This value will be invalid if the task was deleted since the structure was populated! */ /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ - UBaseType_t xTaskNumber; /* A number unique to the task. */ - eTaskState eCurrentState; /* The state in which the task existed when the structure was populated. */ - UBaseType_t uxCurrentPriority; /* The priority at which the task was running (may be inherited) when the structure was populated. */ - UBaseType_t uxBasePriority; /* The priority to which the task will return if the task's current priority has been inherited to avoid unbounded priority inversion when obtaining a mutex. Only valid if configUSE_MUTEXES is defined as 1 in FreeRTOSConfig.h. */ - uint32_t ulRunTimeCounter; /* The total run time allocated to the task so far, as defined by the run time stats clock. See http://www.freertos.org/rtos-run-time-stats.html. Only valid when configGENERATE_RUN_TIME_STATS is defined as 1 in FreeRTOSConfig.h. */ - StackType_t *pxStackBase; /* Points to the lowest address of the task's stack area. */ - configSTACK_DEPTH_TYPE usStackHighWaterMark; /* The minimum amount of stack space that has remained for the task since the task was created. The closer this value is to zero the closer the task has come to overflowing its stack. */ -} TaskStatus_t; - -/* Possible return values for eTaskConfirmSleepModeStatus(). */ -typedef enum -{ - eAbortSleep = 0, /* A task has been made ready or a context switch pended since portSUPPORESS_TICKS_AND_SLEEP() was called - abort entering a sleep mode. */ - eStandardSleep, /* Enter a sleep mode that will not last any longer than the expected idle time. */ - eNoTasksWaitingTimeout /* No tasks are waiting for a timeout so it is safe to enter a sleep mode that can only be exited by an external interrupt. */ -} eSleepModeStatus; - -/** - * Defines the priority used by the idle task. This must not be modified. - * - * \ingroup TaskUtils - */ -#define tskIDLE_PRIORITY ( ( UBaseType_t ) 0U ) - -/** - * task. h - * - * Macro for forcing a context switch. - * - * \defgroup taskYIELD taskYIELD - * \ingroup SchedulerControl - */ -#define taskYIELD() portYIELD() - -/** - * task. h - * - * Macro to mark the start of a critical code region. Preemptive context - * switches cannot occur when in a critical region. - * - * NOTE: This may alter the stack (depending on the portable implementation) - * so must be used with care! - * - * \defgroup taskENTER_CRITICAL taskENTER_CRITICAL - * \ingroup SchedulerControl - */ -#define taskENTER_CRITICAL() portENTER_CRITICAL() -#define taskENTER_CRITICAL_FROM_ISR() portSET_INTERRUPT_MASK_FROM_ISR() - -/** - * task. h - * - * Macro to mark the end of a critical code region. Preemptive context - * switches cannot occur when in a critical region. - * - * NOTE: This may alter the stack (depending on the portable implementation) - * so must be used with care! - * - * \defgroup taskEXIT_CRITICAL taskEXIT_CRITICAL - * \ingroup SchedulerControl - */ -#define taskEXIT_CRITICAL() portEXIT_CRITICAL() -#define taskEXIT_CRITICAL_FROM_ISR( x ) portCLEAR_INTERRUPT_MASK_FROM_ISR( x ) -/** - * task. h - * - * Macro to disable all maskable interrupts. - * - * \defgroup taskDISABLE_INTERRUPTS taskDISABLE_INTERRUPTS - * \ingroup SchedulerControl - */ -#define taskDISABLE_INTERRUPTS() portDISABLE_INTERRUPTS() - -/** - * task. h - * - * Macro to enable microcontroller interrupts. - * - * \defgroup taskENABLE_INTERRUPTS taskENABLE_INTERRUPTS - * \ingroup SchedulerControl - */ -#define taskENABLE_INTERRUPTS() portENABLE_INTERRUPTS() - -/* Definitions returned by xTaskGetSchedulerState(). taskSCHEDULER_SUSPENDED is -0 to generate more optimal code when configASSERT() is defined as the constant -is used in assert() statements. */ -#define taskSCHEDULER_SUSPENDED ( ( BaseType_t ) 0 ) -#define taskSCHEDULER_NOT_STARTED ( ( BaseType_t ) 1 ) -#define taskSCHEDULER_RUNNING ( ( BaseType_t ) 2 ) - - -/*----------------------------------------------------------- - * TASK CREATION API - *----------------------------------------------------------*/ - -/** - * task. h - *
- BaseType_t xTaskCreate(
-							  TaskFunction_t pvTaskCode,
-							  const char * const pcName,
-							  configSTACK_DEPTH_TYPE usStackDepth,
-							  void *pvParameters,
-							  UBaseType_t uxPriority,
-							  TaskHandle_t *pvCreatedTask
-						  );
- * - * Create a new task and add it to the list of tasks that are ready to run. - * - * Internally, within the FreeRTOS implementation, tasks use two blocks of - * memory. The first block is used to hold the task's data structures. The - * second block is used by the task as its stack. If a task is created using - * xTaskCreate() then both blocks of memory are automatically dynamically - * allocated inside the xTaskCreate() function. (see - * http://www.freertos.org/a00111.html). If a task is created using - * xTaskCreateStatic() then the application writer must provide the required - * memory. xTaskCreateStatic() therefore allows a task to be created without - * using any dynamic memory allocation. - * - * See xTaskCreateStatic() for a version that does not use any dynamic memory - * allocation. - * - * xTaskCreate() can only be used to create a task that has unrestricted - * access to the entire microcontroller memory map. Systems that include MPU - * support can alternatively create an MPU constrained task using - * xTaskCreateRestricted(). - * - * @param pvTaskCode Pointer to the task entry function. Tasks - * must be implemented to never return (i.e. continuous loop). - * - * @param pcName A descriptive name for the task. This is mainly used to - * facilitate debugging. Max length defined by configMAX_TASK_NAME_LEN - default - * is 16. - * - * @param usStackDepth The size of the task stack specified as the number of - * variables the stack can hold - not the number of bytes. For example, if - * the stack is 16 bits wide and usStackDepth is defined as 100, 200 bytes - * will be allocated for stack storage. - * - * @param pvParameters Pointer that will be used as the parameter for the task - * being created. - * - * @param uxPriority The priority at which the task should run. Systems that - * include MPU support can optionally create tasks in a privileged (system) - * mode by setting bit portPRIVILEGE_BIT of the priority parameter. For - * example, to create a privileged task at priority 2 the uxPriority parameter - * should be set to ( 2 | portPRIVILEGE_BIT ). - * - * @param pvCreatedTask Used to pass back a handle by which the created task - * can be referenced. - * - * @return pdPASS if the task was successfully created and added to a ready - * list, otherwise an error code defined in the file projdefs.h - * - * Example usage: -
- // Task to be created.
- void vTaskCode( void * pvParameters )
- {
-	 for( ;; )
-	 {
-		 // Task code goes here.
-	 }
- }
-
- // Function that creates a task.
- void vOtherFunction( void )
- {
- static uint8_t ucParameterToPass;
- TaskHandle_t xHandle = NULL;
-
-	 // Create the task, storing the handle.  Note that the passed parameter ucParameterToPass
-	 // must exist for the lifetime of the task, so in this case is declared static.  If it was just an
-	 // an automatic stack variable it might no longer exist, or at least have been corrupted, by the time
-	 // the new task attempts to access it.
-	 xTaskCreate( vTaskCode, "NAME", STACK_SIZE, &ucParameterToPass, tskIDLE_PRIORITY, &xHandle );
-	 configASSERT( xHandle );
-
-	 // Use the handle to delete the task.
-	 if( xHandle != NULL )
-	 {
-	 	vTaskDelete( xHandle );
-	 }
- }
-   
- * \defgroup xTaskCreate xTaskCreate - * \ingroup Tasks - */ -#if( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) - BaseType_t xTaskCreate( TaskFunction_t pxTaskCode, - const char * const pcName, /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ - const configSTACK_DEPTH_TYPE usStackDepth, - void * const pvParameters, - UBaseType_t uxPriority, - TaskHandle_t * const pxCreatedTask ) PRIVILEGED_FUNCTION; -#endif - -/** - * task. h - *
- TaskHandle_t xTaskCreateStatic( TaskFunction_t pvTaskCode,
-								 const char * const pcName,
-								 uint32_t ulStackDepth,
-								 void *pvParameters,
-								 UBaseType_t uxPriority,
-								 StackType_t *pxStackBuffer,
-								 StaticTask_t *pxTaskBuffer );
- * - * Create a new task and add it to the list of tasks that are ready to run. - * - * Internally, within the FreeRTOS implementation, tasks use two blocks of - * memory. The first block is used to hold the task's data structures. The - * second block is used by the task as its stack. If a task is created using - * xTaskCreate() then both blocks of memory are automatically dynamically - * allocated inside the xTaskCreate() function. (see - * http://www.freertos.org/a00111.html). If a task is created using - * xTaskCreateStatic() then the application writer must provide the required - * memory. xTaskCreateStatic() therefore allows a task to be created without - * using any dynamic memory allocation. - * - * @param pvTaskCode Pointer to the task entry function. Tasks - * must be implemented to never return (i.e. continuous loop). - * - * @param pcName A descriptive name for the task. This is mainly used to - * facilitate debugging. The maximum length of the string is defined by - * configMAX_TASK_NAME_LEN in FreeRTOSConfig.h. - * - * @param ulStackDepth The size of the task stack specified as the number of - * variables the stack can hold - not the number of bytes. For example, if - * the stack is 32-bits wide and ulStackDepth is defined as 100 then 400 bytes - * will be allocated for stack storage. - * - * @param pvParameters Pointer that will be used as the parameter for the task - * being created. - * - * @param uxPriority The priority at which the task will run. - * - * @param pxStackBuffer Must point to a StackType_t array that has at least - * ulStackDepth indexes - the array will then be used as the task's stack, - * removing the need for the stack to be allocated dynamically. - * - * @param pxTaskBuffer Must point to a variable of type StaticTask_t, which will - * then be used to hold the task's data structures, removing the need for the - * memory to be allocated dynamically. - * - * @return If neither pxStackBuffer or pxTaskBuffer are NULL, then the task will - * be created and a handle to the created task is returned. If either - * pxStackBuffer or pxTaskBuffer are NULL then the task will not be created and - * NULL is returned. - * - * Example usage: -
-
-    // Dimensions the buffer that the task being created will use as its stack.
-    // NOTE:  This is the number of words the stack will hold, not the number of
-    // bytes.  For example, if each stack item is 32-bits, and this is set to 100,
-    // then 400 bytes (100 * 32-bits) will be allocated.
-    #define STACK_SIZE 200
-
-    // Structure that will hold the TCB of the task being created.
-    StaticTask_t xTaskBuffer;
-
-    // Buffer that the task being created will use as its stack.  Note this is
-    // an array of StackType_t variables.  The size of StackType_t is dependent on
-    // the RTOS port.
-    StackType_t xStack[ STACK_SIZE ];
-
-    // Function that implements the task being created.
-    void vTaskCode( void * pvParameters )
-    {
-        // The parameter value is expected to be 1 as 1 is passed in the
-        // pvParameters value in the call to xTaskCreateStatic().
-        configASSERT( ( uint32_t ) pvParameters == 1UL );
-
-        for( ;; )
-        {
-            // Task code goes here.
-        }
-    }
-
-    // Function that creates a task.
-    void vOtherFunction( void )
-    {
-        TaskHandle_t xHandle = NULL;
-
-        // Create the task without using any dynamic memory allocation.
-        xHandle = xTaskCreateStatic(
-                      vTaskCode,       // Function that implements the task.
-                      "NAME",          // Text name for the task.
-                      STACK_SIZE,      // Stack size in words, not bytes.
-                      ( void * ) 1,    // Parameter passed into the task.
-                      tskIDLE_PRIORITY,// Priority at which the task is created.
-                      xStack,          // Array to use as the task's stack.
-                      &xTaskBuffer );  // Variable to hold the task's data structure.
-
-        // puxStackBuffer and pxTaskBuffer were not NULL, so the task will have
-        // been created, and xHandle will be the task's handle.  Use the handle
-        // to suspend the task.
-        vTaskSuspend( xHandle );
-    }
-   
- * \defgroup xTaskCreateStatic xTaskCreateStatic - * \ingroup Tasks - */ -#if( configSUPPORT_STATIC_ALLOCATION == 1 ) - TaskHandle_t xTaskCreateStatic( TaskFunction_t pxTaskCode, - const char * const pcName, /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ - const uint32_t ulStackDepth, - void * const pvParameters, - UBaseType_t uxPriority, - StackType_t * const puxStackBuffer, - StaticTask_t * const pxTaskBuffer ) PRIVILEGED_FUNCTION; -#endif /* configSUPPORT_STATIC_ALLOCATION */ - -/** - * task. h - *
- BaseType_t xTaskCreateRestricted( TaskParameters_t *pxTaskDefinition, TaskHandle_t *pxCreatedTask );
- * - * Only available when configSUPPORT_DYNAMIC_ALLOCATION is set to 1. - * - * xTaskCreateRestricted() should only be used in systems that include an MPU - * implementation. - * - * Create a new task and add it to the list of tasks that are ready to run. - * The function parameters define the memory regions and associated access - * permissions allocated to the task. - * - * See xTaskCreateRestrictedStatic() for a version that does not use any - * dynamic memory allocation. - * - * @param pxTaskDefinition Pointer to a structure that contains a member - * for each of the normal xTaskCreate() parameters (see the xTaskCreate() API - * documentation) plus an optional stack buffer and the memory region - * definitions. - * - * @param pxCreatedTask Used to pass back a handle by which the created task - * can be referenced. - * - * @return pdPASS if the task was successfully created and added to a ready - * list, otherwise an error code defined in the file projdefs.h - * - * Example usage: -
-// Create an TaskParameters_t structure that defines the task to be created.
-static const TaskParameters_t xCheckTaskParameters =
-{
-	vATask,		// pvTaskCode - the function that implements the task.
-	"ATask",	// pcName - just a text name for the task to assist debugging.
-	100,		// usStackDepth	- the stack size DEFINED IN WORDS.
-	NULL,		// pvParameters - passed into the task function as the function parameters.
-	( 1UL | portPRIVILEGE_BIT ),// uxPriority - task priority, set the portPRIVILEGE_BIT if the task should run in a privileged state.
-	cStackBuffer,// puxStackBuffer - the buffer to be used as the task stack.
-
-	// xRegions - Allocate up to three separate memory regions for access by
-	// the task, with appropriate access permissions.  Different processors have
-	// different memory alignment requirements - refer to the FreeRTOS documentation
-	// for full information.
-	{
-		// Base address					Length	Parameters
-		{ cReadWriteArray,				32,		portMPU_REGION_READ_WRITE },
-		{ cReadOnlyArray,				32,		portMPU_REGION_READ_ONLY },
-		{ cPrivilegedOnlyAccessArray,	128,	portMPU_REGION_PRIVILEGED_READ_WRITE }
-	}
-};
-
-int main( void )
-{
-TaskHandle_t xHandle;
-
-	// Create a task from the const structure defined above.  The task handle
-	// is requested (the second parameter is not NULL) but in this case just for
-	// demonstration purposes as its not actually used.
-	xTaskCreateRestricted( &xRegTest1Parameters, &xHandle );
-
-	// Start the scheduler.
-	vTaskStartScheduler();
-
-	// Will only get here if there was insufficient memory to create the idle
-	// and/or timer task.
-	for( ;; );
-}
-   
- * \defgroup xTaskCreateRestricted xTaskCreateRestricted - * \ingroup Tasks - */ -#if( portUSING_MPU_WRAPPERS == 1 ) - BaseType_t xTaskCreateRestricted( const TaskParameters_t * const pxTaskDefinition, TaskHandle_t *pxCreatedTask ) PRIVILEGED_FUNCTION; -#endif - -/** - * task. h - *
- BaseType_t xTaskCreateRestrictedStatic( TaskParameters_t *pxTaskDefinition, TaskHandle_t *pxCreatedTask );
- * - * Only available when configSUPPORT_STATIC_ALLOCATION is set to 1. - * - * xTaskCreateRestrictedStatic() should only be used in systems that include an - * MPU implementation. - * - * Internally, within the FreeRTOS implementation, tasks use two blocks of - * memory. The first block is used to hold the task's data structures. The - * second block is used by the task as its stack. If a task is created using - * xTaskCreateRestricted() then the stack is provided by the application writer, - * and the memory used to hold the task's data structure is automatically - * dynamically allocated inside the xTaskCreateRestricted() function. If a task - * is created using xTaskCreateRestrictedStatic() then the application writer - * must provide the memory used to hold the task's data structures too. - * xTaskCreateRestrictedStatic() therefore allows a memory protected task to be - * created without using any dynamic memory allocation. - * - * @param pxTaskDefinition Pointer to a structure that contains a member - * for each of the normal xTaskCreate() parameters (see the xTaskCreate() API - * documentation) plus an optional stack buffer and the memory region - * definitions. If configSUPPORT_STATIC_ALLOCATION is set to 1 the structure - * contains an additional member, which is used to point to a variable of type - * StaticTask_t - which is then used to hold the task's data structure. - * - * @param pxCreatedTask Used to pass back a handle by which the created task - * can be referenced. - * - * @return pdPASS if the task was successfully created and added to a ready - * list, otherwise an error code defined in the file projdefs.h - * - * Example usage: -
-// Create an TaskParameters_t structure that defines the task to be created.
-// The StaticTask_t variable is only included in the structure when
-// configSUPPORT_STATIC_ALLOCATION is set to 1.  The PRIVILEGED_DATA macro can
-// be used to force the variable into the RTOS kernel's privileged data area.
-static PRIVILEGED_DATA StaticTask_t xTaskBuffer;
-static const TaskParameters_t xCheckTaskParameters =
-{
-	vATask,		// pvTaskCode - the function that implements the task.
-	"ATask",	// pcName - just a text name for the task to assist debugging.
-	100,		// usStackDepth	- the stack size DEFINED IN WORDS.
-	NULL,		// pvParameters - passed into the task function as the function parameters.
-	( 1UL | portPRIVILEGE_BIT ),// uxPriority - task priority, set the portPRIVILEGE_BIT if the task should run in a privileged state.
-	cStackBuffer,// puxStackBuffer - the buffer to be used as the task stack.
-
-	// xRegions - Allocate up to three separate memory regions for access by
-	// the task, with appropriate access permissions.  Different processors have
-	// different memory alignment requirements - refer to the FreeRTOS documentation
-	// for full information.
-	{
-		// Base address					Length	Parameters
-		{ cReadWriteArray,				32,		portMPU_REGION_READ_WRITE },
-		{ cReadOnlyArray,				32,		portMPU_REGION_READ_ONLY },
-		{ cPrivilegedOnlyAccessArray,	128,	portMPU_REGION_PRIVILEGED_READ_WRITE }
-	}
-
-	&xTaskBuffer; // Holds the task's data structure.
-};
-
-int main( void )
-{
-TaskHandle_t xHandle;
-
-	// Create a task from the const structure defined above.  The task handle
-	// is requested (the second parameter is not NULL) but in this case just for
-	// demonstration purposes as its not actually used.
-	xTaskCreateRestricted( &xRegTest1Parameters, &xHandle );
-
-	// Start the scheduler.
-	vTaskStartScheduler();
-
-	// Will only get here if there was insufficient memory to create the idle
-	// and/or timer task.
-	for( ;; );
-}
-   
- * \defgroup xTaskCreateRestrictedStatic xTaskCreateRestrictedStatic - * \ingroup Tasks - */ -#if( ( portUSING_MPU_WRAPPERS == 1 ) && ( configSUPPORT_STATIC_ALLOCATION == 1 ) ) - BaseType_t xTaskCreateRestrictedStatic( const TaskParameters_t * const pxTaskDefinition, TaskHandle_t *pxCreatedTask ) PRIVILEGED_FUNCTION; -#endif - -/** - * task. h - *
- void vTaskAllocateMPURegions( TaskHandle_t xTask, const MemoryRegion_t * const pxRegions );
- * - * Memory regions are assigned to a restricted task when the task is created by - * a call to xTaskCreateRestricted(). These regions can be redefined using - * vTaskAllocateMPURegions(). - * - * @param xTask The handle of the task being updated. - * - * @param xRegions A pointer to an MemoryRegion_t structure that contains the - * new memory region definitions. - * - * Example usage: -
-// Define an array of MemoryRegion_t structures that configures an MPU region
-// allowing read/write access for 1024 bytes starting at the beginning of the
-// ucOneKByte array.  The other two of the maximum 3 definable regions are
-// unused so set to zero.
-static const MemoryRegion_t xAltRegions[ portNUM_CONFIGURABLE_REGIONS ] =
-{
-	// Base address		Length		Parameters
-	{ ucOneKByte,		1024,		portMPU_REGION_READ_WRITE },
-	{ 0,				0,			0 },
-	{ 0,				0,			0 }
-};
-
-void vATask( void *pvParameters )
-{
-	// This task was created such that it has access to certain regions of
-	// memory as defined by the MPU configuration.  At some point it is
-	// desired that these MPU regions are replaced with that defined in the
-	// xAltRegions const struct above.  Use a call to vTaskAllocateMPURegions()
-	// for this purpose.  NULL is used as the task handle to indicate that this
-	// function should modify the MPU regions of the calling task.
-	vTaskAllocateMPURegions( NULL, xAltRegions );
-
-	// Now the task can continue its function, but from this point on can only
-	// access its stack and the ucOneKByte array (unless any other statically
-	// defined or shared regions have been declared elsewhere).
-}
-   
- * \defgroup xTaskCreateRestricted xTaskCreateRestricted - * \ingroup Tasks - */ -void vTaskAllocateMPURegions( TaskHandle_t xTask, const MemoryRegion_t * const pxRegions ) PRIVILEGED_FUNCTION; - -/** - * task. h - *
void vTaskDelete( TaskHandle_t xTask );
- * - * INCLUDE_vTaskDelete must be defined as 1 for this function to be available. - * See the configuration section for more information. - * - * Remove a task from the RTOS real time kernel's management. The task being - * deleted will be removed from all ready, blocked, suspended and event lists. - * - * NOTE: The idle task is responsible for freeing the kernel allocated - * memory from tasks that have been deleted. It is therefore important that - * the idle task is not starved of microcontroller processing time if your - * application makes any calls to vTaskDelete (). Memory allocated by the - * task code is not automatically freed, and should be freed before the task - * is deleted. - * - * See the demo application file death.c for sample code that utilises - * vTaskDelete (). - * - * @param xTask The handle of the task to be deleted. Passing NULL will - * cause the calling task to be deleted. - * - * Example usage: -
- void vOtherFunction( void )
- {
- TaskHandle_t xHandle;
-
-	 // Create the task, storing the handle.
-	 xTaskCreate( vTaskCode, "NAME", STACK_SIZE, NULL, tskIDLE_PRIORITY, &xHandle );
-
-	 // Use the handle to delete the task.
-	 vTaskDelete( xHandle );
- }
-   
- * \defgroup vTaskDelete vTaskDelete - * \ingroup Tasks - */ -void vTaskDelete( TaskHandle_t xTaskToDelete ) PRIVILEGED_FUNCTION; - -/*----------------------------------------------------------- - * TASK CONTROL API - *----------------------------------------------------------*/ - -/** - * task. h - *
void vTaskDelay( const TickType_t xTicksToDelay );
- * - * Delay a task for a given number of ticks. The actual time that the - * task remains blocked depends on the tick rate. The constant - * portTICK_PERIOD_MS can be used to calculate real time from the tick - * rate - with the resolution of one tick period. - * - * INCLUDE_vTaskDelay must be defined as 1 for this function to be available. - * See the configuration section for more information. - * - * - * vTaskDelay() specifies a time at which the task wishes to unblock relative to - * the time at which vTaskDelay() is called. For example, specifying a block - * period of 100 ticks will cause the task to unblock 100 ticks after - * vTaskDelay() is called. vTaskDelay() does not therefore provide a good method - * of controlling the frequency of a periodic task as the path taken through the - * code, as well as other task and interrupt activity, will effect the frequency - * at which vTaskDelay() gets called and therefore the time at which the task - * next executes. See vTaskDelayUntil() for an alternative API function designed - * to facilitate fixed frequency execution. It does this by specifying an - * absolute time (rather than a relative time) at which the calling task should - * unblock. - * - * @param xTicksToDelay The amount of time, in tick periods, that - * the calling task should block. - * - * Example usage: - - void vTaskFunction( void * pvParameters ) - { - // Block for 500ms. - const TickType_t xDelay = 500 / portTICK_PERIOD_MS; - - for( ;; ) - { - // Simply toggle the LED every 500ms, blocking between each toggle. - vToggleLED(); - vTaskDelay( xDelay ); - } - } - - * \defgroup vTaskDelay vTaskDelay - * \ingroup TaskCtrl - */ -void vTaskDelay( const TickType_t xTicksToDelay ) PRIVILEGED_FUNCTION; - -/** - * task. h - *
void vTaskDelayUntil( TickType_t *pxPreviousWakeTime, const TickType_t xTimeIncrement );
- * - * INCLUDE_vTaskDelayUntil must be defined as 1 for this function to be available. - * See the configuration section for more information. - * - * Delay a task until a specified time. This function can be used by periodic - * tasks to ensure a constant execution frequency. - * - * This function differs from vTaskDelay () in one important aspect: vTaskDelay () will - * cause a task to block for the specified number of ticks from the time vTaskDelay () is - * called. It is therefore difficult to use vTaskDelay () by itself to generate a fixed - * execution frequency as the time between a task starting to execute and that task - * calling vTaskDelay () may not be fixed [the task may take a different path though the - * code between calls, or may get interrupted or preempted a different number of times - * each time it executes]. - * - * Whereas vTaskDelay () specifies a wake time relative to the time at which the function - * is called, vTaskDelayUntil () specifies the absolute (exact) time at which it wishes to - * unblock. - * - * The constant portTICK_PERIOD_MS can be used to calculate real time from the tick - * rate - with the resolution of one tick period. - * - * @param pxPreviousWakeTime Pointer to a variable that holds the time at which the - * task was last unblocked. The variable must be initialised with the current time - * prior to its first use (see the example below). Following this the variable is - * automatically updated within vTaskDelayUntil (). - * - * @param xTimeIncrement The cycle time period. The task will be unblocked at - * time *pxPreviousWakeTime + xTimeIncrement. Calling vTaskDelayUntil with the - * same xTimeIncrement parameter value will cause the task to execute with - * a fixed interface period. - * - * Example usage: -
- // Perform an action every 10 ticks.
- void vTaskFunction( void * pvParameters )
- {
- TickType_t xLastWakeTime;
- const TickType_t xFrequency = 10;
-
-	 // Initialise the xLastWakeTime variable with the current time.
-	 xLastWakeTime = xTaskGetTickCount ();
-	 for( ;; )
-	 {
-		 // Wait for the next cycle.
-		 vTaskDelayUntil( &xLastWakeTime, xFrequency );
-
-		 // Perform action here.
-	 }
- }
-   
- * \defgroup vTaskDelayUntil vTaskDelayUntil - * \ingroup TaskCtrl - */ -void vTaskDelayUntil( TickType_t * const pxPreviousWakeTime, const TickType_t xTimeIncrement ) PRIVILEGED_FUNCTION; - -/** - * task. h - *
BaseType_t xTaskAbortDelay( TaskHandle_t xTask );
- * - * INCLUDE_xTaskAbortDelay must be defined as 1 in FreeRTOSConfig.h for this - * function to be available. - * - * A task will enter the Blocked state when it is waiting for an event. The - * event it is waiting for can be a temporal event (waiting for a time), such - * as when vTaskDelay() is called, or an event on an object, such as when - * xQueueReceive() or ulTaskNotifyTake() is called. If the handle of a task - * that is in the Blocked state is used in a call to xTaskAbortDelay() then the - * task will leave the Blocked state, and return from whichever function call - * placed the task into the Blocked state. - * - * There is no 'FromISR' version of this function as an interrupt would need to - * know which object a task was blocked on in order to know which actions to - * take. For example, if the task was blocked on a queue the interrupt handler - * would then need to know if the queue was locked. - * - * @param xTask The handle of the task to remove from the Blocked state. - * - * @return If the task referenced by xTask was not in the Blocked state then - * pdFAIL is returned. Otherwise pdPASS is returned. - * - * \defgroup xTaskAbortDelay xTaskAbortDelay - * \ingroup TaskCtrl - */ -BaseType_t xTaskAbortDelay( TaskHandle_t xTask ) PRIVILEGED_FUNCTION; - -/** - * task. h - *
UBaseType_t uxTaskPriorityGet( const TaskHandle_t xTask );
- * - * INCLUDE_uxTaskPriorityGet must be defined as 1 for this function to be available. - * See the configuration section for more information. - * - * Obtain the priority of any task. - * - * @param xTask Handle of the task to be queried. Passing a NULL - * handle results in the priority of the calling task being returned. - * - * @return The priority of xTask. - * - * Example usage: -
- void vAFunction( void )
- {
- TaskHandle_t xHandle;
-
-	 // Create a task, storing the handle.
-	 xTaskCreate( vTaskCode, "NAME", STACK_SIZE, NULL, tskIDLE_PRIORITY, &xHandle );
-
-	 // ...
-
-	 // Use the handle to obtain the priority of the created task.
-	 // It was created with tskIDLE_PRIORITY, but may have changed
-	 // it itself.
-	 if( uxTaskPriorityGet( xHandle ) != tskIDLE_PRIORITY )
-	 {
-		 // The task has changed it's priority.
-	 }
-
-	 // ...
-
-	 // Is our priority higher than the created task?
-	 if( uxTaskPriorityGet( xHandle ) < uxTaskPriorityGet( NULL ) )
-	 {
-		 // Our priority (obtained using NULL handle) is higher.
-	 }
- }
-   
- * \defgroup uxTaskPriorityGet uxTaskPriorityGet - * \ingroup TaskCtrl - */ -UBaseType_t uxTaskPriorityGet( const TaskHandle_t xTask ) PRIVILEGED_FUNCTION; - -/** - * task. h - *
UBaseType_t uxTaskPriorityGetFromISR( const TaskHandle_t xTask );
- * - * A version of uxTaskPriorityGet() that can be used from an ISR. - */ -UBaseType_t uxTaskPriorityGetFromISR( const TaskHandle_t xTask ) PRIVILEGED_FUNCTION; - -/** - * task. h - *
eTaskState eTaskGetState( TaskHandle_t xTask );
- * - * INCLUDE_eTaskGetState must be defined as 1 for this function to be available. - * See the configuration section for more information. - * - * Obtain the state of any task. States are encoded by the eTaskState - * enumerated type. - * - * @param xTask Handle of the task to be queried. - * - * @return The state of xTask at the time the function was called. Note the - * state of the task might change between the function being called, and the - * functions return value being tested by the calling task. - */ -eTaskState eTaskGetState( TaskHandle_t xTask ) PRIVILEGED_FUNCTION; - -/** - * task. h - *
void vTaskGetInfo( TaskHandle_t xTask, TaskStatus_t *pxTaskStatus, BaseType_t xGetFreeStackSpace, eTaskState eState );
- * - * configUSE_TRACE_FACILITY must be defined as 1 for this function to be - * available. See the configuration section for more information. - * - * Populates a TaskStatus_t structure with information about a task. - * - * @param xTask Handle of the task being queried. If xTask is NULL then - * information will be returned about the calling task. - * - * @param pxTaskStatus A pointer to the TaskStatus_t structure that will be - * filled with information about the task referenced by the handle passed using - * the xTask parameter. - * - * @xGetFreeStackSpace The TaskStatus_t structure contains a member to report - * the stack high water mark of the task being queried. Calculating the stack - * high water mark takes a relatively long time, and can make the system - * temporarily unresponsive - so the xGetFreeStackSpace parameter is provided to - * allow the high water mark checking to be skipped. The high watermark value - * will only be written to the TaskStatus_t structure if xGetFreeStackSpace is - * not set to pdFALSE; - * - * @param eState The TaskStatus_t structure contains a member to report the - * state of the task being queried. Obtaining the task state is not as fast as - * a simple assignment - so the eState parameter is provided to allow the state - * information to be omitted from the TaskStatus_t structure. To obtain state - * information then set eState to eInvalid - otherwise the value passed in - * eState will be reported as the task state in the TaskStatus_t structure. - * - * Example usage: -
- void vAFunction( void )
- {
- TaskHandle_t xHandle;
- TaskStatus_t xTaskDetails;
-
-    // Obtain the handle of a task from its name.
-    xHandle = xTaskGetHandle( "Task_Name" );
-
-    // Check the handle is not NULL.
-    configASSERT( xHandle );
-
-    // Use the handle to obtain further information about the task.
-    vTaskGetInfo( xHandle,
-                  &xTaskDetails,
-                  pdTRUE, // Include the high water mark in xTaskDetails.
-                  eInvalid ); // Include the task state in xTaskDetails.
- }
-   
- * \defgroup vTaskGetInfo vTaskGetInfo - * \ingroup TaskCtrl - */ -void vTaskGetInfo( TaskHandle_t xTask, TaskStatus_t *pxTaskStatus, BaseType_t xGetFreeStackSpace, eTaskState eState ) PRIVILEGED_FUNCTION; - -/** - * task. h - *
void vTaskPrioritySet( TaskHandle_t xTask, UBaseType_t uxNewPriority );
- * - * INCLUDE_vTaskPrioritySet must be defined as 1 for this function to be available. - * See the configuration section for more information. - * - * Set the priority of any task. - * - * A context switch will occur before the function returns if the priority - * being set is higher than the currently executing task. - * - * @param xTask Handle to the task for which the priority is being set. - * Passing a NULL handle results in the priority of the calling task being set. - * - * @param uxNewPriority The priority to which the task will be set. - * - * Example usage: -
- void vAFunction( void )
- {
- TaskHandle_t xHandle;
-
-	 // Create a task, storing the handle.
-	 xTaskCreate( vTaskCode, "NAME", STACK_SIZE, NULL, tskIDLE_PRIORITY, &xHandle );
-
-	 // ...
-
-	 // Use the handle to raise the priority of the created task.
-	 vTaskPrioritySet( xHandle, tskIDLE_PRIORITY + 1 );
-
-	 // ...
-
-	 // Use a NULL handle to raise our priority to the same value.
-	 vTaskPrioritySet( NULL, tskIDLE_PRIORITY + 1 );
- }
-   
- * \defgroup vTaskPrioritySet vTaskPrioritySet - * \ingroup TaskCtrl - */ -void vTaskPrioritySet( TaskHandle_t xTask, UBaseType_t uxNewPriority ) PRIVILEGED_FUNCTION; - -/** - * task. h - *
void vTaskSuspend( TaskHandle_t xTaskToSuspend );
- * - * INCLUDE_vTaskSuspend must be defined as 1 for this function to be available. - * See the configuration section for more information. - * - * Suspend any task. When suspended a task will never get any microcontroller - * processing time, no matter what its priority. - * - * Calls to vTaskSuspend are not accumulative - - * i.e. calling vTaskSuspend () twice on the same task still only requires one - * call to vTaskResume () to ready the suspended task. - * - * @param xTaskToSuspend Handle to the task being suspended. Passing a NULL - * handle will cause the calling task to be suspended. - * - * Example usage: -
- void vAFunction( void )
- {
- TaskHandle_t xHandle;
-
-	 // Create a task, storing the handle.
-	 xTaskCreate( vTaskCode, "NAME", STACK_SIZE, NULL, tskIDLE_PRIORITY, &xHandle );
-
-	 // ...
-
-	 // Use the handle to suspend the created task.
-	 vTaskSuspend( xHandle );
-
-	 // ...
-
-	 // The created task will not run during this period, unless
-	 // another task calls vTaskResume( xHandle ).
-
-	 //...
-
-
-	 // Suspend ourselves.
-	 vTaskSuspend( NULL );
-
-	 // We cannot get here unless another task calls vTaskResume
-	 // with our handle as the parameter.
- }
-   
- * \defgroup vTaskSuspend vTaskSuspend - * \ingroup TaskCtrl - */ -void vTaskSuspend( TaskHandle_t xTaskToSuspend ) PRIVILEGED_FUNCTION; - -/** - * task. h - *
void vTaskResume( TaskHandle_t xTaskToResume );
- * - * INCLUDE_vTaskSuspend must be defined as 1 for this function to be available. - * See the configuration section for more information. - * - * Resumes a suspended task. - * - * A task that has been suspended by one or more calls to vTaskSuspend () - * will be made available for running again by a single call to - * vTaskResume (). - * - * @param xTaskToResume Handle to the task being readied. - * - * Example usage: -
- void vAFunction( void )
- {
- TaskHandle_t xHandle;
-
-	 // Create a task, storing the handle.
-	 xTaskCreate( vTaskCode, "NAME", STACK_SIZE, NULL, tskIDLE_PRIORITY, &xHandle );
-
-	 // ...
-
-	 // Use the handle to suspend the created task.
-	 vTaskSuspend( xHandle );
-
-	 // ...
-
-	 // The created task will not run during this period, unless
-	 // another task calls vTaskResume( xHandle ).
-
-	 //...
-
-
-	 // Resume the suspended task ourselves.
-	 vTaskResume( xHandle );
-
-	 // The created task will once again get microcontroller processing
-	 // time in accordance with its priority within the system.
- }
-   
- * \defgroup vTaskResume vTaskResume - * \ingroup TaskCtrl - */ -void vTaskResume( TaskHandle_t xTaskToResume ) PRIVILEGED_FUNCTION; - -/** - * task. h - *
void xTaskResumeFromISR( TaskHandle_t xTaskToResume );
- * - * INCLUDE_xTaskResumeFromISR must be defined as 1 for this function to be - * available. See the configuration section for more information. - * - * An implementation of vTaskResume() that can be called from within an ISR. - * - * A task that has been suspended by one or more calls to vTaskSuspend () - * will be made available for running again by a single call to - * xTaskResumeFromISR (). - * - * xTaskResumeFromISR() should not be used to synchronise a task with an - * interrupt if there is a chance that the interrupt could arrive prior to the - * task being suspended - as this can lead to interrupts being missed. Use of a - * semaphore as a synchronisation mechanism would avoid this eventuality. - * - * @param xTaskToResume Handle to the task being readied. - * - * @return pdTRUE if resuming the task should result in a context switch, - * otherwise pdFALSE. This is used by the ISR to determine if a context switch - * may be required following the ISR. - * - * \defgroup vTaskResumeFromISR vTaskResumeFromISR - * \ingroup TaskCtrl - */ -BaseType_t xTaskResumeFromISR( TaskHandle_t xTaskToResume ) PRIVILEGED_FUNCTION; - -/*----------------------------------------------------------- - * SCHEDULER CONTROL - *----------------------------------------------------------*/ - -/** - * task. h - *
void vTaskStartScheduler( void );
- * - * Starts the real time kernel tick processing. After calling the kernel - * has control over which tasks are executed and when. - * - * See the demo application file main.c for an example of creating - * tasks and starting the kernel. - * - * Example usage: -
- void vAFunction( void )
- {
-	 // Create at least one task before starting the kernel.
-	 xTaskCreate( vTaskCode, "NAME", STACK_SIZE, NULL, tskIDLE_PRIORITY, NULL );
-
-	 // Start the real time kernel with preemption.
-	 vTaskStartScheduler ();
-
-	 // Will not get here unless a task calls vTaskEndScheduler ()
- }
-   
- * - * \defgroup vTaskStartScheduler vTaskStartScheduler - * \ingroup SchedulerControl - */ -void vTaskStartScheduler( void ) PRIVILEGED_FUNCTION; - -/** - * task. h - *
void vTaskEndScheduler( void );
- * - * NOTE: At the time of writing only the x86 real mode port, which runs on a PC - * in place of DOS, implements this function. - * - * Stops the real time kernel tick. All created tasks will be automatically - * deleted and multitasking (either preemptive or cooperative) will - * stop. Execution then resumes from the point where vTaskStartScheduler () - * was called, as if vTaskStartScheduler () had just returned. - * - * See the demo application file main. c in the demo/PC directory for an - * example that uses vTaskEndScheduler (). - * - * vTaskEndScheduler () requires an exit function to be defined within the - * portable layer (see vPortEndScheduler () in port. c for the PC port). This - * performs hardware specific operations such as stopping the kernel tick. - * - * vTaskEndScheduler () will cause all of the resources allocated by the - * kernel to be freed - but will not free resources allocated by application - * tasks. - * - * Example usage: -
- void vTaskCode( void * pvParameters )
- {
-	 for( ;; )
-	 {
-		 // Task code goes here.
-
-		 // At some point we want to end the real time kernel processing
-		 // so call ...
-		 vTaskEndScheduler ();
-	 }
- }
-
- void vAFunction( void )
- {
-	 // Create at least one task before starting the kernel.
-	 xTaskCreate( vTaskCode, "NAME", STACK_SIZE, NULL, tskIDLE_PRIORITY, NULL );
-
-	 // Start the real time kernel with preemption.
-	 vTaskStartScheduler ();
-
-	 // Will only get here when the vTaskCode () task has called
-	 // vTaskEndScheduler ().  When we get here we are back to single task
-	 // execution.
- }
-   
- * - * \defgroup vTaskEndScheduler vTaskEndScheduler - * \ingroup SchedulerControl - */ -void vTaskEndScheduler( void ) PRIVILEGED_FUNCTION; - -/** - * task. h - *
void vTaskSuspendAll( void );
- * - * Suspends the scheduler without disabling interrupts. Context switches will - * not occur while the scheduler is suspended. - * - * After calling vTaskSuspendAll () the calling task will continue to execute - * without risk of being swapped out until a call to xTaskResumeAll () has been - * made. - * - * API functions that have the potential to cause a context switch (for example, - * vTaskDelayUntil(), xQueueSend(), etc.) must not be called while the scheduler - * is suspended. - * - * Example usage: -
- void vTask1( void * pvParameters )
- {
-	 for( ;; )
-	 {
-		 // Task code goes here.
-
-		 // ...
-
-		 // At some point the task wants to perform a long operation during
-		 // which it does not want to get swapped out.  It cannot use
-		 // taskENTER_CRITICAL ()/taskEXIT_CRITICAL () as the length of the
-		 // operation may cause interrupts to be missed - including the
-		 // ticks.
-
-		 // Prevent the real time kernel swapping out the task.
-		 vTaskSuspendAll ();
-
-		 // Perform the operation here.  There is no need to use critical
-		 // sections as we have all the microcontroller processing time.
-		 // During this time interrupts will still operate and the kernel
-		 // tick count will be maintained.
-
-		 // ...
-
-		 // The operation is complete.  Restart the kernel.
-		 xTaskResumeAll ();
-	 }
- }
-   
- * \defgroup vTaskSuspendAll vTaskSuspendAll - * \ingroup SchedulerControl - */ -void vTaskSuspendAll( void ) PRIVILEGED_FUNCTION; - -/** - * task. h - *
BaseType_t xTaskResumeAll( void );
- * - * Resumes scheduler activity after it was suspended by a call to - * vTaskSuspendAll(). - * - * xTaskResumeAll() only resumes the scheduler. It does not unsuspend tasks - * that were previously suspended by a call to vTaskSuspend(). - * - * @return If resuming the scheduler caused a context switch then pdTRUE is - * returned, otherwise pdFALSE is returned. - * - * Example usage: -
- void vTask1( void * pvParameters )
- {
-	 for( ;; )
-	 {
-		 // Task code goes here.
-
-		 // ...
-
-		 // At some point the task wants to perform a long operation during
-		 // which it does not want to get swapped out.  It cannot use
-		 // taskENTER_CRITICAL ()/taskEXIT_CRITICAL () as the length of the
-		 // operation may cause interrupts to be missed - including the
-		 // ticks.
-
-		 // Prevent the real time kernel swapping out the task.
-		 vTaskSuspendAll ();
-
-		 // Perform the operation here.  There is no need to use critical
-		 // sections as we have all the microcontroller processing time.
-		 // During this time interrupts will still operate and the real
-		 // time kernel tick count will be maintained.
-
-		 // ...
-
-		 // The operation is complete.  Restart the kernel.  We want to force
-		 // a context switch - but there is no point if resuming the scheduler
-		 // caused a context switch already.
-		 if( !xTaskResumeAll () )
-		 {
-			  taskYIELD ();
-		 }
-	 }
- }
-   
- * \defgroup xTaskResumeAll xTaskResumeAll - * \ingroup SchedulerControl - */ -BaseType_t xTaskResumeAll( void ) PRIVILEGED_FUNCTION; - -/*----------------------------------------------------------- - * TASK UTILITIES - *----------------------------------------------------------*/ - -/** - * task. h - *
TickType_t xTaskGetTickCount( void );
- * - * @return The count of ticks since vTaskStartScheduler was called. - * - * \defgroup xTaskGetTickCount xTaskGetTickCount - * \ingroup TaskUtils - */ -TickType_t xTaskGetTickCount( void ) PRIVILEGED_FUNCTION; - -/** - * task. h - *
TickType_t xTaskGetTickCountFromISR( void );
- * - * @return The count of ticks since vTaskStartScheduler was called. - * - * This is a version of xTaskGetTickCount() that is safe to be called from an - * ISR - provided that TickType_t is the natural word size of the - * microcontroller being used or interrupt nesting is either not supported or - * not being used. - * - * \defgroup xTaskGetTickCountFromISR xTaskGetTickCountFromISR - * \ingroup TaskUtils - */ -TickType_t xTaskGetTickCountFromISR( void ) PRIVILEGED_FUNCTION; - -/** - * task. h - *
uint16_t uxTaskGetNumberOfTasks( void );
- * - * @return The number of tasks that the real time kernel is currently managing. - * This includes all ready, blocked and suspended tasks. A task that - * has been deleted but not yet freed by the idle task will also be - * included in the count. - * - * \defgroup uxTaskGetNumberOfTasks uxTaskGetNumberOfTasks - * \ingroup TaskUtils - */ -UBaseType_t uxTaskGetNumberOfTasks( void ) PRIVILEGED_FUNCTION; - -/** - * task. h - *
char *pcTaskGetName( TaskHandle_t xTaskToQuery );
- * - * @return The text (human readable) name of the task referenced by the handle - * xTaskToQuery. A task can query its own name by either passing in its own - * handle, or by setting xTaskToQuery to NULL. - * - * \defgroup pcTaskGetName pcTaskGetName - * \ingroup TaskUtils - */ -char *pcTaskGetName( TaskHandle_t xTaskToQuery ) PRIVILEGED_FUNCTION; /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ - -/** - * task. h - *
TaskHandle_t xTaskGetHandle( const char *pcNameToQuery );
- * - * NOTE: This function takes a relatively long time to complete and should be - * used sparingly. - * - * @return The handle of the task that has the human readable name pcNameToQuery. - * NULL is returned if no matching name is found. INCLUDE_xTaskGetHandle - * must be set to 1 in FreeRTOSConfig.h for pcTaskGetHandle() to be available. - * - * \defgroup pcTaskGetHandle pcTaskGetHandle - * \ingroup TaskUtils - */ -TaskHandle_t xTaskGetHandle( const char *pcNameToQuery ) PRIVILEGED_FUNCTION; /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ - -/** - * task.h - *
UBaseType_t uxTaskGetStackHighWaterMark( TaskHandle_t xTask );
- * - * INCLUDE_uxTaskGetStackHighWaterMark must be set to 1 in FreeRTOSConfig.h for - * this function to be available. - * - * Returns the high water mark of the stack associated with xTask. That is, - * the minimum free stack space there has been (in words, so on a 32 bit machine - * a value of 1 means 4 bytes) since the task started. The smaller the returned - * number the closer the task has come to overflowing its stack. - * - * uxTaskGetStackHighWaterMark() and uxTaskGetStackHighWaterMark2() are the - * same except for their return type. Using configSTACK_DEPTH_TYPE allows the - * user to determine the return type. It gets around the problem of the value - * overflowing on 8-bit types without breaking backward compatibility for - * applications that expect an 8-bit return type. - * - * @param xTask Handle of the task associated with the stack to be checked. - * Set xTask to NULL to check the stack of the calling task. - * - * @return The smallest amount of free stack space there has been (in words, so - * actual spaces on the stack rather than bytes) since the task referenced by - * xTask was created. - */ -UBaseType_t uxTaskGetStackHighWaterMark( TaskHandle_t xTask ) PRIVILEGED_FUNCTION; - -/** - * task.h - *
configSTACK_DEPTH_TYPE uxTaskGetStackHighWaterMark2( TaskHandle_t xTask );
- * - * INCLUDE_uxTaskGetStackHighWaterMark2 must be set to 1 in FreeRTOSConfig.h for - * this function to be available. - * - * Returns the high water mark of the stack associated with xTask. That is, - * the minimum free stack space there has been (in words, so on a 32 bit machine - * a value of 1 means 4 bytes) since the task started. The smaller the returned - * number the closer the task has come to overflowing its stack. - * - * uxTaskGetStackHighWaterMark() and uxTaskGetStackHighWaterMark2() are the - * same except for their return type. Using configSTACK_DEPTH_TYPE allows the - * user to determine the return type. It gets around the problem of the value - * overflowing on 8-bit types without breaking backward compatibility for - * applications that expect an 8-bit return type. - * - * @param xTask Handle of the task associated with the stack to be checked. - * Set xTask to NULL to check the stack of the calling task. - * - * @return The smallest amount of free stack space there has been (in words, so - * actual spaces on the stack rather than bytes) since the task referenced by - * xTask was created. - */ -configSTACK_DEPTH_TYPE uxTaskGetStackHighWaterMark2( TaskHandle_t xTask ) PRIVILEGED_FUNCTION; - -/* When using trace macros it is sometimes necessary to include task.h before -FreeRTOS.h. When this is done TaskHookFunction_t will not yet have been defined, -so the following two prototypes will cause a compilation error. This can be -fixed by simply guarding against the inclusion of these two prototypes unless -they are explicitly required by the configUSE_APPLICATION_TASK_TAG configuration -constant. */ -#ifdef configUSE_APPLICATION_TASK_TAG - #if configUSE_APPLICATION_TASK_TAG == 1 - /** - * task.h - *
void vTaskSetApplicationTaskTag( TaskHandle_t xTask, TaskHookFunction_t pxHookFunction );
- * - * Sets pxHookFunction to be the task hook function used by the task xTask. - * Passing xTask as NULL has the effect of setting the calling tasks hook - * function. - */ - void vTaskSetApplicationTaskTag( TaskHandle_t xTask, TaskHookFunction_t pxHookFunction ) PRIVILEGED_FUNCTION; - - /** - * task.h - *
void xTaskGetApplicationTaskTag( TaskHandle_t xTask );
- * - * Returns the pxHookFunction value assigned to the task xTask. Do not - * call from an interrupt service routine - call - * xTaskGetApplicationTaskTagFromISR() instead. - */ - TaskHookFunction_t xTaskGetApplicationTaskTag( TaskHandle_t xTask ) PRIVILEGED_FUNCTION; - - /** - * task.h - *
void xTaskGetApplicationTaskTagFromISR( TaskHandle_t xTask );
- * - * Returns the pxHookFunction value assigned to the task xTask. Can - * be called from an interrupt service routine. - */ - TaskHookFunction_t xTaskGetApplicationTaskTagFromISR( TaskHandle_t xTask ) PRIVILEGED_FUNCTION; - #endif /* configUSE_APPLICATION_TASK_TAG ==1 */ -#endif /* ifdef configUSE_APPLICATION_TASK_TAG */ - -#if( configNUM_THREAD_LOCAL_STORAGE_POINTERS > 0 ) - - /* Each task contains an array of pointers that is dimensioned by the - configNUM_THREAD_LOCAL_STORAGE_POINTERS setting in FreeRTOSConfig.h. The - kernel does not use the pointers itself, so the application writer can use - the pointers for any purpose they wish. The following two functions are - used to set and query a pointer respectively. */ - void vTaskSetThreadLocalStoragePointer( TaskHandle_t xTaskToSet, BaseType_t xIndex, void *pvValue ) PRIVILEGED_FUNCTION; - void *pvTaskGetThreadLocalStoragePointer( TaskHandle_t xTaskToQuery, BaseType_t xIndex ) PRIVILEGED_FUNCTION; - -#endif - -/** - * task.h - *
BaseType_t xTaskCallApplicationTaskHook( TaskHandle_t xTask, void *pvParameter );
- * - * Calls the hook function associated with xTask. Passing xTask as NULL has - * the effect of calling the Running tasks (the calling task) hook function. - * - * pvParameter is passed to the hook function for the task to interpret as it - * wants. The return value is the value returned by the task hook function - * registered by the user. - */ -BaseType_t xTaskCallApplicationTaskHook( TaskHandle_t xTask, void *pvParameter ) PRIVILEGED_FUNCTION; - -/** - * xTaskGetIdleTaskHandle() is only available if - * INCLUDE_xTaskGetIdleTaskHandle is set to 1 in FreeRTOSConfig.h. - * - * Simply returns the handle of the idle task. It is not valid to call - * xTaskGetIdleTaskHandle() before the scheduler has been started. - */ -TaskHandle_t xTaskGetIdleTaskHandle( void ) PRIVILEGED_FUNCTION; - -/** - * configUSE_TRACE_FACILITY must be defined as 1 in FreeRTOSConfig.h for - * uxTaskGetSystemState() to be available. - * - * uxTaskGetSystemState() populates an TaskStatus_t structure for each task in - * the system. TaskStatus_t structures contain, among other things, members - * for the task handle, task name, task priority, task state, and total amount - * of run time consumed by the task. See the TaskStatus_t structure - * definition in this file for the full member list. - * - * NOTE: This function is intended for debugging use only as its use results in - * the scheduler remaining suspended for an extended period. - * - * @param pxTaskStatusArray A pointer to an array of TaskStatus_t structures. - * The array must contain at least one TaskStatus_t structure for each task - * that is under the control of the RTOS. The number of tasks under the control - * of the RTOS can be determined using the uxTaskGetNumberOfTasks() API function. - * - * @param uxArraySize The size of the array pointed to by the pxTaskStatusArray - * parameter. The size is specified as the number of indexes in the array, or - * the number of TaskStatus_t structures contained in the array, not by the - * number of bytes in the array. - * - * @param pulTotalRunTime If configGENERATE_RUN_TIME_STATS is set to 1 in - * FreeRTOSConfig.h then *pulTotalRunTime is set by uxTaskGetSystemState() to the - * total run time (as defined by the run time stats clock, see - * http://www.freertos.org/rtos-run-time-stats.html) since the target booted. - * pulTotalRunTime can be set to NULL to omit the total run time information. - * - * @return The number of TaskStatus_t structures that were populated by - * uxTaskGetSystemState(). This should equal the number returned by the - * uxTaskGetNumberOfTasks() API function, but will be zero if the value passed - * in the uxArraySize parameter was too small. - * - * Example usage: -
-    // This example demonstrates how a human readable table of run time stats
-	// information is generated from raw data provided by uxTaskGetSystemState().
-	// The human readable table is written to pcWriteBuffer
-	void vTaskGetRunTimeStats( char *pcWriteBuffer )
-	{
-	TaskStatus_t *pxTaskStatusArray;
-	volatile UBaseType_t uxArraySize, x;
-	uint32_t ulTotalRunTime, ulStatsAsPercentage;
-
-		// Make sure the write buffer does not contain a string.
-		*pcWriteBuffer = 0x00;
-
-		// Take a snapshot of the number of tasks in case it changes while this
-		// function is executing.
-		uxArraySize = uxTaskGetNumberOfTasks();
-
-		// Allocate a TaskStatus_t structure for each task.  An array could be
-		// allocated statically at compile time.
-		pxTaskStatusArray = pvPortMalloc( uxArraySize * sizeof( TaskStatus_t ) );
-
-		if( pxTaskStatusArray != NULL )
-		{
-			// Generate raw status information about each task.
-			uxArraySize = uxTaskGetSystemState( pxTaskStatusArray, uxArraySize, &ulTotalRunTime );
-
-			// For percentage calculations.
-			ulTotalRunTime /= 100UL;
-
-			// Avoid divide by zero errors.
-			if( ulTotalRunTime > 0 )
-			{
-				// For each populated position in the pxTaskStatusArray array,
-				// format the raw data as human readable ASCII data
-				for( x = 0; x < uxArraySize; x++ )
-				{
-					// What percentage of the total run time has the task used?
-					// This will always be rounded down to the nearest integer.
-					// ulTotalRunTimeDiv100 has already been divided by 100.
-					ulStatsAsPercentage = pxTaskStatusArray[ x ].ulRunTimeCounter / ulTotalRunTime;
-
-					if( ulStatsAsPercentage > 0UL )
-					{
-						sprintf( pcWriteBuffer, "%s\t\t%lu\t\t%lu%%\r\n", pxTaskStatusArray[ x ].pcTaskName, pxTaskStatusArray[ x ].ulRunTimeCounter, ulStatsAsPercentage );
-					}
-					else
-					{
-						// If the percentage is zero here then the task has
-						// consumed less than 1% of the total run time.
-						sprintf( pcWriteBuffer, "%s\t\t%lu\t\t<1%%\r\n", pxTaskStatusArray[ x ].pcTaskName, pxTaskStatusArray[ x ].ulRunTimeCounter );
-					}
-
-					pcWriteBuffer += strlen( ( char * ) pcWriteBuffer );
-				}
-			}
-
-			// The array is no longer needed, free the memory it consumes.
-			vPortFree( pxTaskStatusArray );
-		}
-	}
-	
- */ -UBaseType_t uxTaskGetSystemState( TaskStatus_t * const pxTaskStatusArray, const UBaseType_t uxArraySize, uint32_t * const pulTotalRunTime ) PRIVILEGED_FUNCTION; - -/** - * task. h - *
void vTaskList( char *pcWriteBuffer );
- * - * configUSE_TRACE_FACILITY and configUSE_STATS_FORMATTING_FUNCTIONS must - * both be defined as 1 for this function to be available. See the - * configuration section of the FreeRTOS.org website for more information. - * - * NOTE 1: This function will disable interrupts for its duration. It is - * not intended for normal application runtime use but as a debug aid. - * - * Lists all the current tasks, along with their current state and stack - * usage high water mark. - * - * Tasks are reported as blocked ('B'), ready ('R'), deleted ('D') or - * suspended ('S'). - * - * PLEASE NOTE: - * - * This function is provided for convenience only, and is used by many of the - * demo applications. Do not consider it to be part of the scheduler. - * - * vTaskList() calls uxTaskGetSystemState(), then formats part of the - * uxTaskGetSystemState() output into a human readable table that displays task - * names, states and stack usage. - * - * vTaskList() has a dependency on the sprintf() C library function that might - * bloat the code size, use a lot of stack, and provide different results on - * different platforms. An alternative, tiny, third party, and limited - * functionality implementation of sprintf() is provided in many of the - * FreeRTOS/Demo sub-directories in a file called printf-stdarg.c (note - * printf-stdarg.c does not provide a full snprintf() implementation!). - * - * It is recommended that production systems call uxTaskGetSystemState() - * directly to get access to raw stats data, rather than indirectly through a - * call to vTaskList(). - * - * @param pcWriteBuffer A buffer into which the above mentioned details - * will be written, in ASCII form. This buffer is assumed to be large - * enough to contain the generated report. Approximately 40 bytes per - * task should be sufficient. - * - * \defgroup vTaskList vTaskList - * \ingroup TaskUtils - */ -void vTaskList( char * pcWriteBuffer ) PRIVILEGED_FUNCTION; /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ - -/** - * task. h - *
void vTaskGetRunTimeStats( char *pcWriteBuffer );
- * - * configGENERATE_RUN_TIME_STATS and configUSE_STATS_FORMATTING_FUNCTIONS - * must both be defined as 1 for this function to be available. The application - * must also then provide definitions for - * portCONFIGURE_TIMER_FOR_RUN_TIME_STATS() and portGET_RUN_TIME_COUNTER_VALUE() - * to configure a peripheral timer/counter and return the timers current count - * value respectively. The counter should be at least 10 times the frequency of - * the tick count. - * - * NOTE 1: This function will disable interrupts for its duration. It is - * not intended for normal application runtime use but as a debug aid. - * - * Setting configGENERATE_RUN_TIME_STATS to 1 will result in a total - * accumulated execution time being stored for each task. The resolution - * of the accumulated time value depends on the frequency of the timer - * configured by the portCONFIGURE_TIMER_FOR_RUN_TIME_STATS() macro. - * Calling vTaskGetRunTimeStats() writes the total execution time of each - * task into a buffer, both as an absolute count value and as a percentage - * of the total system execution time. - * - * NOTE 2: - * - * This function is provided for convenience only, and is used by many of the - * demo applications. Do not consider it to be part of the scheduler. - * - * vTaskGetRunTimeStats() calls uxTaskGetSystemState(), then formats part of the - * uxTaskGetSystemState() output into a human readable table that displays the - * amount of time each task has spent in the Running state in both absolute and - * percentage terms. - * - * vTaskGetRunTimeStats() has a dependency on the sprintf() C library function - * that might bloat the code size, use a lot of stack, and provide different - * results on different platforms. An alternative, tiny, third party, and - * limited functionality implementation of sprintf() is provided in many of the - * FreeRTOS/Demo sub-directories in a file called printf-stdarg.c (note - * printf-stdarg.c does not provide a full snprintf() implementation!). - * - * It is recommended that production systems call uxTaskGetSystemState() directly - * to get access to raw stats data, rather than indirectly through a call to - * vTaskGetRunTimeStats(). - * - * @param pcWriteBuffer A buffer into which the execution times will be - * written, in ASCII form. This buffer is assumed to be large enough to - * contain the generated report. Approximately 40 bytes per task should - * be sufficient. - * - * \defgroup vTaskGetRunTimeStats vTaskGetRunTimeStats - * \ingroup TaskUtils - */ -void vTaskGetRunTimeStats( char *pcWriteBuffer ) PRIVILEGED_FUNCTION; /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ - -/** -* task. h -*
uint32_t ulTaskGetIdleRunTimeCounter( void );
-* -* configGENERATE_RUN_TIME_STATS and configUSE_STATS_FORMATTING_FUNCTIONS -* must both be defined as 1 for this function to be available. The application -* must also then provide definitions for -* portCONFIGURE_TIMER_FOR_RUN_TIME_STATS() and portGET_RUN_TIME_COUNTER_VALUE() -* to configure a peripheral timer/counter and return the timers current count -* value respectively. The counter should be at least 10 times the frequency of -* the tick count. -* -* Setting configGENERATE_RUN_TIME_STATS to 1 will result in a total -* accumulated execution time being stored for each task. The resolution -* of the accumulated time value depends on the frequency of the timer -* configured by the portCONFIGURE_TIMER_FOR_RUN_TIME_STATS() macro. -* While uxTaskGetSystemState() and vTaskGetRunTimeStats() writes the total -* execution time of each task into a buffer, ulTaskGetIdleRunTimeCounter() -* returns the total execution time of just the idle task. -* -* @return The total run time of the idle task. This is the amount of time the -* idle task has actually been executing. The unit of time is dependent on the -* frequency configured using the portCONFIGURE_TIMER_FOR_RUN_TIME_STATS() and -* portGET_RUN_TIME_COUNTER_VALUE() macros. -* -* \defgroup ulTaskGetIdleRunTimeCounter ulTaskGetIdleRunTimeCounter -* \ingroup TaskUtils -*/ -uint32_t ulTaskGetIdleRunTimeCounter( void ) PRIVILEGED_FUNCTION; - -/** - * task. h - *
BaseType_t xTaskNotify( TaskHandle_t xTaskToNotify, uint32_t ulValue, eNotifyAction eAction );
- * - * configUSE_TASK_NOTIFICATIONS must be undefined or defined as 1 for this - * function to be available. - * - * When configUSE_TASK_NOTIFICATIONS is set to one each task has its own private - * "notification value", which is a 32-bit unsigned integer (uint32_t). - * - * Events can be sent to a task using an intermediary object. Examples of such - * objects are queues, semaphores, mutexes and event groups. Task notifications - * are a method of sending an event directly to a task without the need for such - * an intermediary object. - * - * A notification sent to a task can optionally perform an action, such as - * update, overwrite or increment the task's notification value. In that way - * task notifications can be used to send data to a task, or be used as light - * weight and fast binary or counting semaphores. - * - * A notification sent to a task will remain pending until it is cleared by the - * task calling xTaskNotifyWait() or ulTaskNotifyTake(). If the task was - * already in the Blocked state to wait for a notification when the notification - * arrives then the task will automatically be removed from the Blocked state - * (unblocked) and the notification cleared. - * - * A task can use xTaskNotifyWait() to [optionally] block to wait for a - * notification to be pending, or ulTaskNotifyTake() to [optionally] block - * to wait for its notification value to have a non-zero value. The task does - * not consume any CPU time while it is in the Blocked state. - * - * See http://www.FreeRTOS.org/RTOS-task-notifications.html for details. - * - * @param xTaskToNotify The handle of the task being notified. The handle to a - * task can be returned from the xTaskCreate() API function used to create the - * task, and the handle of the currently running task can be obtained by calling - * xTaskGetCurrentTaskHandle(). - * - * @param ulValue Data that can be sent with the notification. How the data is - * used depends on the value of the eAction parameter. - * - * @param eAction Specifies how the notification updates the task's notification - * value, if at all. Valid values for eAction are as follows: - * - * eSetBits - - * The task's notification value is bitwise ORed with ulValue. xTaskNofify() - * always returns pdPASS in this case. - * - * eIncrement - - * The task's notification value is incremented. ulValue is not used and - * xTaskNotify() always returns pdPASS in this case. - * - * eSetValueWithOverwrite - - * The task's notification value is set to the value of ulValue, even if the - * task being notified had not yet processed the previous notification (the - * task already had a notification pending). xTaskNotify() always returns - * pdPASS in this case. - * - * eSetValueWithoutOverwrite - - * If the task being notified did not already have a notification pending then - * the task's notification value is set to ulValue and xTaskNotify() will - * return pdPASS. If the task being notified already had a notification - * pending then no action is performed and pdFAIL is returned. - * - * eNoAction - - * The task receives a notification without its notification value being - * updated. ulValue is not used and xTaskNotify() always returns pdPASS in - * this case. - * - * pulPreviousNotificationValue - - * Can be used to pass out the subject task's notification value before any - * bits are modified by the notify function. - * - * @return Dependent on the value of eAction. See the description of the - * eAction parameter. - * - * \defgroup xTaskNotify xTaskNotify - * \ingroup TaskNotifications - */ -BaseType_t xTaskGenericNotify( TaskHandle_t xTaskToNotify, uint32_t ulValue, eNotifyAction eAction, uint32_t *pulPreviousNotificationValue ) PRIVILEGED_FUNCTION; -#define xTaskNotify( xTaskToNotify, ulValue, eAction ) xTaskGenericNotify( ( xTaskToNotify ), ( ulValue ), ( eAction ), NULL ) -#define xTaskNotifyAndQuery( xTaskToNotify, ulValue, eAction, pulPreviousNotifyValue ) xTaskGenericNotify( ( xTaskToNotify ), ( ulValue ), ( eAction ), ( pulPreviousNotifyValue ) ) - -/** - * task. h - *
BaseType_t xTaskNotifyFromISR( TaskHandle_t xTaskToNotify, uint32_t ulValue, eNotifyAction eAction, BaseType_t *pxHigherPriorityTaskWoken );
- * - * configUSE_TASK_NOTIFICATIONS must be undefined or defined as 1 for this - * function to be available. - * - * When configUSE_TASK_NOTIFICATIONS is set to one each task has its own private - * "notification value", which is a 32-bit unsigned integer (uint32_t). - * - * A version of xTaskNotify() that can be used from an interrupt service routine - * (ISR). - * - * Events can be sent to a task using an intermediary object. Examples of such - * objects are queues, semaphores, mutexes and event groups. Task notifications - * are a method of sending an event directly to a task without the need for such - * an intermediary object. - * - * A notification sent to a task can optionally perform an action, such as - * update, overwrite or increment the task's notification value. In that way - * task notifications can be used to send data to a task, or be used as light - * weight and fast binary or counting semaphores. - * - * A notification sent to a task will remain pending until it is cleared by the - * task calling xTaskNotifyWait() or ulTaskNotifyTake(). If the task was - * already in the Blocked state to wait for a notification when the notification - * arrives then the task will automatically be removed from the Blocked state - * (unblocked) and the notification cleared. - * - * A task can use xTaskNotifyWait() to [optionally] block to wait for a - * notification to be pending, or ulTaskNotifyTake() to [optionally] block - * to wait for its notification value to have a non-zero value. The task does - * not consume any CPU time while it is in the Blocked state. - * - * See http://www.FreeRTOS.org/RTOS-task-notifications.html for details. - * - * @param xTaskToNotify The handle of the task being notified. The handle to a - * task can be returned from the xTaskCreate() API function used to create the - * task, and the handle of the currently running task can be obtained by calling - * xTaskGetCurrentTaskHandle(). - * - * @param ulValue Data that can be sent with the notification. How the data is - * used depends on the value of the eAction parameter. - * - * @param eAction Specifies how the notification updates the task's notification - * value, if at all. Valid values for eAction are as follows: - * - * eSetBits - - * The task's notification value is bitwise ORed with ulValue. xTaskNofify() - * always returns pdPASS in this case. - * - * eIncrement - - * The task's notification value is incremented. ulValue is not used and - * xTaskNotify() always returns pdPASS in this case. - * - * eSetValueWithOverwrite - - * The task's notification value is set to the value of ulValue, even if the - * task being notified had not yet processed the previous notification (the - * task already had a notification pending). xTaskNotify() always returns - * pdPASS in this case. - * - * eSetValueWithoutOverwrite - - * If the task being notified did not already have a notification pending then - * the task's notification value is set to ulValue and xTaskNotify() will - * return pdPASS. If the task being notified already had a notification - * pending then no action is performed and pdFAIL is returned. - * - * eNoAction - - * The task receives a notification without its notification value being - * updated. ulValue is not used and xTaskNotify() always returns pdPASS in - * this case. - * - * @param pxHigherPriorityTaskWoken xTaskNotifyFromISR() will set - * *pxHigherPriorityTaskWoken to pdTRUE if sending the notification caused the - * task to which the notification was sent to leave the Blocked state, and the - * unblocked task has a priority higher than the currently running task. If - * xTaskNotifyFromISR() sets this value to pdTRUE then a context switch should - * be requested before the interrupt is exited. How a context switch is - * requested from an ISR is dependent on the port - see the documentation page - * for the port in use. - * - * @return Dependent on the value of eAction. See the description of the - * eAction parameter. - * - * \defgroup xTaskNotify xTaskNotify - * \ingroup TaskNotifications - */ -BaseType_t xTaskGenericNotifyFromISR( TaskHandle_t xTaskToNotify, uint32_t ulValue, eNotifyAction eAction, uint32_t *pulPreviousNotificationValue, BaseType_t *pxHigherPriorityTaskWoken ) PRIVILEGED_FUNCTION; -#define xTaskNotifyFromISR( xTaskToNotify, ulValue, eAction, pxHigherPriorityTaskWoken ) xTaskGenericNotifyFromISR( ( xTaskToNotify ), ( ulValue ), ( eAction ), NULL, ( pxHigherPriorityTaskWoken ) ) -#define xTaskNotifyAndQueryFromISR( xTaskToNotify, ulValue, eAction, pulPreviousNotificationValue, pxHigherPriorityTaskWoken ) xTaskGenericNotifyFromISR( ( xTaskToNotify ), ( ulValue ), ( eAction ), ( pulPreviousNotificationValue ), ( pxHigherPriorityTaskWoken ) ) - -/** - * task. h - *
BaseType_t xTaskNotifyWait( uint32_t ulBitsToClearOnEntry, uint32_t ulBitsToClearOnExit, uint32_t *pulNotificationValue, TickType_t xTicksToWait );
- * - * configUSE_TASK_NOTIFICATIONS must be undefined or defined as 1 for this - * function to be available. - * - * When configUSE_TASK_NOTIFICATIONS is set to one each task has its own private - * "notification value", which is a 32-bit unsigned integer (uint32_t). - * - * Events can be sent to a task using an intermediary object. Examples of such - * objects are queues, semaphores, mutexes and event groups. Task notifications - * are a method of sending an event directly to a task without the need for such - * an intermediary object. - * - * A notification sent to a task can optionally perform an action, such as - * update, overwrite or increment the task's notification value. In that way - * task notifications can be used to send data to a task, or be used as light - * weight and fast binary or counting semaphores. - * - * A notification sent to a task will remain pending until it is cleared by the - * task calling xTaskNotifyWait() or ulTaskNotifyTake(). If the task was - * already in the Blocked state to wait for a notification when the notification - * arrives then the task will automatically be removed from the Blocked state - * (unblocked) and the notification cleared. - * - * A task can use xTaskNotifyWait() to [optionally] block to wait for a - * notification to be pending, or ulTaskNotifyTake() to [optionally] block - * to wait for its notification value to have a non-zero value. The task does - * not consume any CPU time while it is in the Blocked state. - * - * See http://www.FreeRTOS.org/RTOS-task-notifications.html for details. - * - * @param ulBitsToClearOnEntry Bits that are set in ulBitsToClearOnEntry value - * will be cleared in the calling task's notification value before the task - * checks to see if any notifications are pending, and optionally blocks if no - * notifications are pending. Setting ulBitsToClearOnEntry to ULONG_MAX (if - * limits.h is included) or 0xffffffffUL (if limits.h is not included) will have - * the effect of resetting the task's notification value to 0. Setting - * ulBitsToClearOnEntry to 0 will leave the task's notification value unchanged. - * - * @param ulBitsToClearOnExit If a notification is pending or received before - * the calling task exits the xTaskNotifyWait() function then the task's - * notification value (see the xTaskNotify() API function) is passed out using - * the pulNotificationValue parameter. Then any bits that are set in - * ulBitsToClearOnExit will be cleared in the task's notification value (note - * *pulNotificationValue is set before any bits are cleared). Setting - * ulBitsToClearOnExit to ULONG_MAX (if limits.h is included) or 0xffffffffUL - * (if limits.h is not included) will have the effect of resetting the task's - * notification value to 0 before the function exits. Setting - * ulBitsToClearOnExit to 0 will leave the task's notification value unchanged - * when the function exits (in which case the value passed out in - * pulNotificationValue will match the task's notification value). - * - * @param pulNotificationValue Used to pass the task's notification value out - * of the function. Note the value passed out will not be effected by the - * clearing of any bits caused by ulBitsToClearOnExit being non-zero. - * - * @param xTicksToWait The maximum amount of time that the task should wait in - * the Blocked state for a notification to be received, should a notification - * not already be pending when xTaskNotifyWait() was called. The task - * will not consume any processing time while it is in the Blocked state. This - * is specified in kernel ticks, the macro pdMS_TO_TICSK( value_in_ms ) can be - * used to convert a time specified in milliseconds to a time specified in - * ticks. - * - * @return If a notification was received (including notifications that were - * already pending when xTaskNotifyWait was called) then pdPASS is - * returned. Otherwise pdFAIL is returned. - * - * \defgroup xTaskNotifyWait xTaskNotifyWait - * \ingroup TaskNotifications - */ -BaseType_t xTaskNotifyWait( uint32_t ulBitsToClearOnEntry, uint32_t ulBitsToClearOnExit, uint32_t *pulNotificationValue, TickType_t xTicksToWait ) PRIVILEGED_FUNCTION; - -/** - * task. h - *
BaseType_t xTaskNotifyGive( TaskHandle_t xTaskToNotify );
- * - * configUSE_TASK_NOTIFICATIONS must be undefined or defined as 1 for this macro - * to be available. - * - * When configUSE_TASK_NOTIFICATIONS is set to one each task has its own private - * "notification value", which is a 32-bit unsigned integer (uint32_t). - * - * Events can be sent to a task using an intermediary object. Examples of such - * objects are queues, semaphores, mutexes and event groups. Task notifications - * are a method of sending an event directly to a task without the need for such - * an intermediary object. - * - * A notification sent to a task can optionally perform an action, such as - * update, overwrite or increment the task's notification value. In that way - * task notifications can be used to send data to a task, or be used as light - * weight and fast binary or counting semaphores. - * - * xTaskNotifyGive() is a helper macro intended for use when task notifications - * are used as light weight and faster binary or counting semaphore equivalents. - * Actual FreeRTOS semaphores are given using the xSemaphoreGive() API function, - * the equivalent action that instead uses a task notification is - * xTaskNotifyGive(). - * - * When task notifications are being used as a binary or counting semaphore - * equivalent then the task being notified should wait for the notification - * using the ulTaskNotificationTake() API function rather than the - * xTaskNotifyWait() API function. - * - * See http://www.FreeRTOS.org/RTOS-task-notifications.html for more details. - * - * @param xTaskToNotify The handle of the task being notified. The handle to a - * task can be returned from the xTaskCreate() API function used to create the - * task, and the handle of the currently running task can be obtained by calling - * xTaskGetCurrentTaskHandle(). - * - * @return xTaskNotifyGive() is a macro that calls xTaskNotify() with the - * eAction parameter set to eIncrement - so pdPASS is always returned. - * - * \defgroup xTaskNotifyGive xTaskNotifyGive - * \ingroup TaskNotifications - */ -#define xTaskNotifyGive( xTaskToNotify ) xTaskGenericNotify( ( xTaskToNotify ), ( 0 ), eIncrement, NULL ) - -/** - * task. h - *
void vTaskNotifyGiveFromISR( TaskHandle_t xTaskHandle, BaseType_t *pxHigherPriorityTaskWoken );
- *
- * configUSE_TASK_NOTIFICATIONS must be undefined or defined as 1 for this macro
- * to be available.
- *
- * When configUSE_TASK_NOTIFICATIONS is set to one each task has its own private
- * "notification value", which is a 32-bit unsigned integer (uint32_t).
- *
- * A version of xTaskNotifyGive() that can be called from an interrupt service
- * routine (ISR).
- *
- * Events can be sent to a task using an intermediary object.  Examples of such
- * objects are queues, semaphores, mutexes and event groups.  Task notifications
- * are a method of sending an event directly to a task without the need for such
- * an intermediary object.
- *
- * A notification sent to a task can optionally perform an action, such as
- * update, overwrite or increment the task's notification value.  In that way
- * task notifications can be used to send data to a task, or be used as light
- * weight and fast binary or counting semaphores.
- *
- * vTaskNotifyGiveFromISR() is intended for use when task notifications are
- * used as light weight and faster binary or counting semaphore equivalents.
- * Actual FreeRTOS semaphores are given from an ISR using the
- * xSemaphoreGiveFromISR() API function, the equivalent action that instead uses
- * a task notification is vTaskNotifyGiveFromISR().
- *
- * When task notifications are being used as a binary or counting semaphore
- * equivalent then the task being notified should wait for the notification
- * using the ulTaskNotificationTake() API function rather than the
- * xTaskNotifyWait() API function.
- *
- * See http://www.FreeRTOS.org/RTOS-task-notifications.html for more details.
- *
- * @param xTaskToNotify The handle of the task being notified.  The handle to a
- * task can be returned from the xTaskCreate() API function used to create the
- * task, and the handle of the currently running task can be obtained by calling
- * xTaskGetCurrentTaskHandle().
- *
- * @param pxHigherPriorityTaskWoken  vTaskNotifyGiveFromISR() will set
- * *pxHigherPriorityTaskWoken to pdTRUE if sending the notification caused the
- * task to which the notification was sent to leave the Blocked state, and the
- * unblocked task has a priority higher than the currently running task.  If
- * vTaskNotifyGiveFromISR() sets this value to pdTRUE then a context switch
- * should be requested before the interrupt is exited.  How a context switch is
- * requested from an ISR is dependent on the port - see the documentation page
- * for the port in use.
- *
- * \defgroup xTaskNotifyWait xTaskNotifyWait
- * \ingroup TaskNotifications
- */
-void vTaskNotifyGiveFromISR( TaskHandle_t xTaskToNotify, BaseType_t *pxHigherPriorityTaskWoken ) PRIVILEGED_FUNCTION;
-
-/**
- * task. h
- * 
uint32_t ulTaskNotifyTake( BaseType_t xClearCountOnExit, TickType_t xTicksToWait );
- * - * configUSE_TASK_NOTIFICATIONS must be undefined or defined as 1 for this - * function to be available. - * - * When configUSE_TASK_NOTIFICATIONS is set to one each task has its own private - * "notification value", which is a 32-bit unsigned integer (uint32_t). - * - * Events can be sent to a task using an intermediary object. Examples of such - * objects are queues, semaphores, mutexes and event groups. Task notifications - * are a method of sending an event directly to a task without the need for such - * an intermediary object. - * - * A notification sent to a task can optionally perform an action, such as - * update, overwrite or increment the task's notification value. In that way - * task notifications can be used to send data to a task, or be used as light - * weight and fast binary or counting semaphores. - * - * ulTaskNotifyTake() is intended for use when a task notification is used as a - * faster and lighter weight binary or counting semaphore alternative. Actual - * FreeRTOS semaphores are taken using the xSemaphoreTake() API function, the - * equivalent action that instead uses a task notification is - * ulTaskNotifyTake(). - * - * When a task is using its notification value as a binary or counting semaphore - * other tasks should send notifications to it using the xTaskNotifyGive() - * macro, or xTaskNotify() function with the eAction parameter set to - * eIncrement. - * - * ulTaskNotifyTake() can either clear the task's notification value to - * zero on exit, in which case the notification value acts like a binary - * semaphore, or decrement the task's notification value on exit, in which case - * the notification value acts like a counting semaphore. - * - * A task can use ulTaskNotifyTake() to [optionally] block to wait for a - * the task's notification value to be non-zero. The task does not consume any - * CPU time while it is in the Blocked state. - * - * Where as xTaskNotifyWait() will return when a notification is pending, - * ulTaskNotifyTake() will return when the task's notification value is - * not zero. - * - * See http://www.FreeRTOS.org/RTOS-task-notifications.html for details. - * - * @param xClearCountOnExit if xClearCountOnExit is pdFALSE then the task's - * notification value is decremented when the function exits. In this way the - * notification value acts like a counting semaphore. If xClearCountOnExit is - * not pdFALSE then the task's notification value is cleared to zero when the - * function exits. In this way the notification value acts like a binary - * semaphore. - * - * @param xTicksToWait The maximum amount of time that the task should wait in - * the Blocked state for the task's notification value to be greater than zero, - * should the count not already be greater than zero when - * ulTaskNotifyTake() was called. The task will not consume any processing - * time while it is in the Blocked state. This is specified in kernel ticks, - * the macro pdMS_TO_TICSK( value_in_ms ) can be used to convert a time - * specified in milliseconds to a time specified in ticks. - * - * @return The task's notification count before it is either cleared to zero or - * decremented (see the xClearCountOnExit parameter). - * - * \defgroup ulTaskNotifyTake ulTaskNotifyTake - * \ingroup TaskNotifications - */ -uint32_t ulTaskNotifyTake( BaseType_t xClearCountOnExit, TickType_t xTicksToWait ) PRIVILEGED_FUNCTION; - -/** - * task. h - *
BaseType_t xTaskNotifyStateClear( TaskHandle_t xTask );
- * - * If the notification state of the task referenced by the handle xTask is - * eNotified, then set the task's notification state to eNotWaitingNotification. - * The task's notification value is not altered. Set xTask to NULL to clear the - * notification state of the calling task. - * - * @return pdTRUE if the task's notification state was set to - * eNotWaitingNotification, otherwise pdFALSE. - * \defgroup xTaskNotifyStateClear xTaskNotifyStateClear - * \ingroup TaskNotifications - */ -BaseType_t xTaskNotifyStateClear( TaskHandle_t xTask ); - -/** -* task. h -*
uint32_t ulTaskNotifyValueClear( TaskHandle_t xTask, uint32_t ulBitsToClear );
-* -* Clears the bits specified by the ulBitsToClear bit mask in the notification -* value of the task referenced by xTask. -* -* Set ulBitsToClear to 0xffffffff (UINT_MAX on 32-bit architectures) to clear -* the notification value to 0. Set ulBitsToClear to 0 to query the task's -* notification value without clearing any bits. -* -* @return The value of the target task's notification value before the bits -* specified by ulBitsToClear were cleared. -* \defgroup ulTaskNotifyValueClear ulTaskNotifyValueClear -* \ingroup TaskNotifications -*/ -uint32_t ulTaskNotifyValueClear( TaskHandle_t xTask, uint32_t ulBitsToClear ) PRIVILEGED_FUNCTION; - -/** - * task.h - *
void vTaskSetTimeOutState( TimeOut_t * const pxTimeOut )
- * - * Capture the current time for future use with xTaskCheckForTimeOut(). - * - * @param pxTimeOut Pointer to a timeout object into which the current time - * is to be captured. The captured time includes the tick count and the number - * of times the tick count has overflowed since the system first booted. - * \defgroup vTaskSetTimeOutState vTaskSetTimeOutState - * \ingroup TaskCtrl - */ -void vTaskSetTimeOutState( TimeOut_t * const pxTimeOut ) PRIVILEGED_FUNCTION; - -/** - * task.h - *
BaseType_t xTaskCheckForTimeOut( TimeOut_t * const pxTimeOut, TickType_t * const pxTicksToWait );
- * - * Determines if pxTicksToWait ticks has passed since a time was captured - * using a call to vTaskSetTimeOutState(). The captured time includes the tick - * count and the number of times the tick count has overflowed. - * - * @param pxTimeOut The time status as captured previously using - * vTaskSetTimeOutState. If the timeout has not yet occurred, it is updated - * to reflect the current time status. - * @param pxTicksToWait The number of ticks to check for timeout i.e. if - * pxTicksToWait ticks have passed since pxTimeOut was last updated (either by - * vTaskSetTimeOutState() or xTaskCheckForTimeOut()), the timeout has occurred. - * If the timeout has not occurred, pxTIcksToWait is updated to reflect the - * number of remaining ticks. - * - * @return If timeout has occurred, pdTRUE is returned. Otherwise pdFALSE is - * returned and pxTicksToWait is updated to reflect the number of remaining - * ticks. - * - * @see https://www.freertos.org/xTaskCheckForTimeOut.html - * - * Example Usage: - *
-	// Driver library function used to receive uxWantedBytes from an Rx buffer
-	// that is filled by a UART interrupt. If there are not enough bytes in the
-	// Rx buffer then the task enters the Blocked state until it is notified that
-	// more data has been placed into the buffer. If there is still not enough
-	// data then the task re-enters the Blocked state, and xTaskCheckForTimeOut()
-	// is used to re-calculate the Block time to ensure the total amount of time
-	// spent in the Blocked state does not exceed MAX_TIME_TO_WAIT. This
-	// continues until either the buffer contains at least uxWantedBytes bytes,
-	// or the total amount of time spent in the Blocked state reaches
-	// MAX_TIME_TO_WAIT – at which point the task reads however many bytes are
-	// available up to a maximum of uxWantedBytes.
-
-	size_t xUART_Receive( uint8_t *pucBuffer, size_t uxWantedBytes )
-	{
-	size_t uxReceived = 0;
-	TickType_t xTicksToWait = MAX_TIME_TO_WAIT;
-	TimeOut_t xTimeOut;
-
-		// Initialize xTimeOut.  This records the time at which this function
-		// was entered.
-		vTaskSetTimeOutState( &xTimeOut );
-
-		// Loop until the buffer contains the wanted number of bytes, or a
-		// timeout occurs.
-		while( UART_bytes_in_rx_buffer( pxUARTInstance ) < uxWantedBytes )
-		{
-			// The buffer didn't contain enough data so this task is going to
-			// enter the Blocked state. Adjusting xTicksToWait to account for
-			// any time that has been spent in the Blocked state within this
-			// function so far to ensure the total amount of time spent in the
-			// Blocked state does not exceed MAX_TIME_TO_WAIT.
-			if( xTaskCheckForTimeOut( &xTimeOut, &xTicksToWait ) != pdFALSE )
-			{
-				//Timed out before the wanted number of bytes were available,
-				// exit the loop.
-				break;
-			}
-
-			// Wait for a maximum of xTicksToWait ticks to be notified that the
-			// receive interrupt has placed more data into the buffer.
-			ulTaskNotifyTake( pdTRUE, xTicksToWait );
-		}
-
-		// Attempt to read uxWantedBytes from the receive buffer into pucBuffer.
-		// The actual number of bytes read (which might be less than
-		// uxWantedBytes) is returned.
-		uxReceived = UART_read_from_receive_buffer( pxUARTInstance,
-													pucBuffer,
-													uxWantedBytes );
-
-		return uxReceived;
-	}
- 
- * \defgroup xTaskCheckForTimeOut xTaskCheckForTimeOut - * \ingroup TaskCtrl - */ -BaseType_t xTaskCheckForTimeOut( TimeOut_t * const pxTimeOut, TickType_t * const pxTicksToWait ) PRIVILEGED_FUNCTION; - -/*----------------------------------------------------------- - * SCHEDULER INTERNALS AVAILABLE FOR PORTING PURPOSES - *----------------------------------------------------------*/ - -/* - * THIS FUNCTION MUST NOT BE USED FROM APPLICATION CODE. IT IS ONLY - * INTENDED FOR USE WHEN IMPLEMENTING A PORT OF THE SCHEDULER AND IS - * AN INTERFACE WHICH IS FOR THE EXCLUSIVE USE OF THE SCHEDULER. - * - * Called from the real time kernel tick (either preemptive or cooperative), - * this increments the tick count and checks if any tasks that are blocked - * for a finite period required removing from a blocked list and placing on - * a ready list. If a non-zero value is returned then a context switch is - * required because either: - * + A task was removed from a blocked list because its timeout had expired, - * or - * + Time slicing is in use and there is a task of equal priority to the - * currently running task. - */ -BaseType_t xTaskIncrementTick( void ) PRIVILEGED_FUNCTION; - -/* - * THIS FUNCTION MUST NOT BE USED FROM APPLICATION CODE. IT IS AN - * INTERFACE WHICH IS FOR THE EXCLUSIVE USE OF THE SCHEDULER. - * - * THIS FUNCTION MUST BE CALLED WITH INTERRUPTS DISABLED. - * - * Removes the calling task from the ready list and places it both - * on the list of tasks waiting for a particular event, and the - * list of delayed tasks. The task will be removed from both lists - * and replaced on the ready list should either the event occur (and - * there be no higher priority tasks waiting on the same event) or - * the delay period expires. - * - * The 'unordered' version replaces the event list item value with the - * xItemValue value, and inserts the list item at the end of the list. - * - * The 'ordered' version uses the existing event list item value (which is the - * owning tasks priority) to insert the list item into the event list is task - * priority order. - * - * @param pxEventList The list containing tasks that are blocked waiting - * for the event to occur. - * - * @param xItemValue The item value to use for the event list item when the - * event list is not ordered by task priority. - * - * @param xTicksToWait The maximum amount of time that the task should wait - * for the event to occur. This is specified in kernel ticks,the constant - * portTICK_PERIOD_MS can be used to convert kernel ticks into a real time - * period. - */ -void vTaskPlaceOnEventList( List_t * const pxEventList, const TickType_t xTicksToWait ) PRIVILEGED_FUNCTION; -void vTaskPlaceOnUnorderedEventList( List_t * pxEventList, const TickType_t xItemValue, const TickType_t xTicksToWait ) PRIVILEGED_FUNCTION; - -/* - * THIS FUNCTION MUST NOT BE USED FROM APPLICATION CODE. IT IS AN - * INTERFACE WHICH IS FOR THE EXCLUSIVE USE OF THE SCHEDULER. - * - * THIS FUNCTION MUST BE CALLED WITH INTERRUPTS DISABLED. - * - * This function performs nearly the same function as vTaskPlaceOnEventList(). - * The difference being that this function does not permit tasks to block - * indefinitely, whereas vTaskPlaceOnEventList() does. - * - */ -void vTaskPlaceOnEventListRestricted( List_t * const pxEventList, TickType_t xTicksToWait, const BaseType_t xWaitIndefinitely ) PRIVILEGED_FUNCTION; - -/* - * THIS FUNCTION MUST NOT BE USED FROM APPLICATION CODE. IT IS AN - * INTERFACE WHICH IS FOR THE EXCLUSIVE USE OF THE SCHEDULER. - * - * THIS FUNCTION MUST BE CALLED WITH INTERRUPTS DISABLED. - * - * Removes a task from both the specified event list and the list of blocked - * tasks, and places it on a ready queue. - * - * xTaskRemoveFromEventList()/vTaskRemoveFromUnorderedEventList() will be called - * if either an event occurs to unblock a task, or the block timeout period - * expires. - * - * xTaskRemoveFromEventList() is used when the event list is in task priority - * order. It removes the list item from the head of the event list as that will - * have the highest priority owning task of all the tasks on the event list. - * vTaskRemoveFromUnorderedEventList() is used when the event list is not - * ordered and the event list items hold something other than the owning tasks - * priority. In this case the event list item value is updated to the value - * passed in the xItemValue parameter. - * - * @return pdTRUE if the task being removed has a higher priority than the task - * making the call, otherwise pdFALSE. - */ -BaseType_t xTaskRemoveFromEventList( const List_t * const pxEventList ) PRIVILEGED_FUNCTION; -void vTaskRemoveFromUnorderedEventList( ListItem_t * pxEventListItem, const TickType_t xItemValue ) PRIVILEGED_FUNCTION; - -/* - * THIS FUNCTION MUST NOT BE USED FROM APPLICATION CODE. IT IS ONLY - * INTENDED FOR USE WHEN IMPLEMENTING A PORT OF THE SCHEDULER AND IS - * AN INTERFACE WHICH IS FOR THE EXCLUSIVE USE OF THE SCHEDULER. - * - * Sets the pointer to the current TCB to the TCB of the highest priority task - * that is ready to run. - */ -portDONT_DISCARD void vTaskSwitchContext( void ) PRIVILEGED_FUNCTION; - -/* - * THESE FUNCTIONS MUST NOT BE USED FROM APPLICATION CODE. THEY ARE USED BY - * THE EVENT BITS MODULE. - */ -TickType_t uxTaskResetEventItemValue( void ) PRIVILEGED_FUNCTION; - -/* - * Return the handle of the calling task. - */ -TaskHandle_t xTaskGetCurrentTaskHandle( void ) PRIVILEGED_FUNCTION; - -/* - * Shortcut used by the queue implementation to prevent unnecessary call to - * taskYIELD(); - */ -void vTaskMissedYield( void ) PRIVILEGED_FUNCTION; - -/* - * Returns the scheduler state as taskSCHEDULER_RUNNING, - * taskSCHEDULER_NOT_STARTED or taskSCHEDULER_SUSPENDED. - */ -BaseType_t xTaskGetSchedulerState( void ) PRIVILEGED_FUNCTION; - -/* - * Raises the priority of the mutex holder to that of the calling task should - * the mutex holder have a priority less than the calling task. - */ -BaseType_t xTaskPriorityInherit( TaskHandle_t const pxMutexHolder ) PRIVILEGED_FUNCTION; - -/* - * Set the priority of a task back to its proper priority in the case that it - * inherited a higher priority while it was holding a semaphore. - */ -BaseType_t xTaskPriorityDisinherit( TaskHandle_t const pxMutexHolder ) PRIVILEGED_FUNCTION; - -/* - * If a higher priority task attempting to obtain a mutex caused a lower - * priority task to inherit the higher priority task's priority - but the higher - * priority task then timed out without obtaining the mutex, then the lower - * priority task will disinherit the priority again - but only down as far as - * the highest priority task that is still waiting for the mutex (if there were - * more than one task waiting for the mutex). - */ -void vTaskPriorityDisinheritAfterTimeout( TaskHandle_t const pxMutexHolder, UBaseType_t uxHighestPriorityWaitingTask ) PRIVILEGED_FUNCTION; - -/* - * Get the uxTCBNumber assigned to the task referenced by the xTask parameter. - */ -UBaseType_t uxTaskGetTaskNumber( TaskHandle_t xTask ) PRIVILEGED_FUNCTION; - -/* - * Set the uxTaskNumber of the task referenced by the xTask parameter to - * uxHandle. - */ -void vTaskSetTaskNumber( TaskHandle_t xTask, const UBaseType_t uxHandle ) PRIVILEGED_FUNCTION; - -/* - * Only available when configUSE_TICKLESS_IDLE is set to 1. - * If tickless mode is being used, or a low power mode is implemented, then - * the tick interrupt will not execute during idle periods. When this is the - * case, the tick count value maintained by the scheduler needs to be kept up - * to date with the actual execution time by being skipped forward by a time - * equal to the idle period. - */ -void vTaskStepTick( const TickType_t xTicksToJump ) PRIVILEGED_FUNCTION; - -/* Correct the tick count value after the application code has held -interrupts disabled for an extended period. xTicksToCatchUp is the number -of tick interrupts that have been missed due to interrupts being disabled. -Its value is not computed automatically, so must be computed by the -application writer. - -This function is similar to vTaskStepTick(), however, unlike -vTaskStepTick(), xTaskCatchUpTicks() may move the tick count forward past a -time at which a task should be removed from the blocked state. That means -tasks may have to be removed from the blocked state as the tick count is -moved. */ -BaseType_t xTaskCatchUpTicks( TickType_t xTicksToCatchUp ) PRIVILEGED_FUNCTION; - -/* - * Only available when configUSE_TICKLESS_IDLE is set to 1. - * Provided for use within portSUPPRESS_TICKS_AND_SLEEP() to allow the port - * specific sleep function to determine if it is ok to proceed with the sleep, - * and if it is ok to proceed, if it is ok to sleep indefinitely. - * - * This function is necessary because portSUPPRESS_TICKS_AND_SLEEP() is only - * called with the scheduler suspended, not from within a critical section. It - * is therefore possible for an interrupt to request a context switch between - * portSUPPRESS_TICKS_AND_SLEEP() and the low power mode actually being - * entered. eTaskConfirmSleepModeStatus() should be called from a short - * critical section between the timer being stopped and the sleep mode being - * entered to ensure it is ok to proceed into the sleep mode. - */ -eSleepModeStatus eTaskConfirmSleepModeStatus( void ) PRIVILEGED_FUNCTION; - -/* - * For internal use only. Increment the mutex held count when a mutex is - * taken and return the handle of the task that has taken the mutex. - */ -TaskHandle_t pvTaskIncrementMutexHeldCount( void ) PRIVILEGED_FUNCTION; - -/* - * For internal use only. Same as vTaskSetTimeOutState(), but without a critial - * section. - */ -void vTaskInternalSetTimeOutState( TimeOut_t * const pxTimeOut ) PRIVILEGED_FUNCTION; - - -#ifdef __cplusplus -} -#endif -#endif /* INC_TASK_H */ - - - diff --git a/rtos/freertos/abstraction_layer_freertos/include/tempCodeRunnerFile.h b/rtos/freertos/abstraction_layer_freertos/include/tempCodeRunnerFile.h deleted file mode 100644 index 06564f38..00000000 --- a/rtos/freertos/abstraction_layer_freertos/include/tempCodeRunnerFile.h +++ /dev/null @@ -1 +0,0 @@ -FreeRTOS \ No newline at end of file diff --git a/rtos/freertos/abstraction_layer_freertos/include/timer.h b/rtos/freertos/abstraction_layer_freertos/include/timer.h deleted file mode 100644 index c7084708..00000000 --- a/rtos/freertos/abstraction_layer_freertos/include/timer.h +++ /dev/null @@ -1,222 +0,0 @@ -/* - * Copyright (C) 2019 ETH Zurich and University of Bologna - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * SPDX-License-Identifier: Apache-2.0 - */ - -/* Author: Robert Balas (balasr@iis.ee.ethz.ch) - * Germain Haugou (germain.haugou@iis.ee.ethz.ch) - */ - -#ifndef __TIMER_H__ -#define __TIMER_H__ - -#include "bits.h" - -/* Timer Low Configuration register. */ -#define TIMER_CFG_LO_OFFSET 0x0 - -/* Timer High Configuration register. */ -#define TIMER_CFG_HI_OFFSET 0x4 - -/* Timer Low counter value register. */ -#define TIMER_CNT_LO_OFFSET 0x8 - -/* Timer High counter value register. */ -#define TIMER_CNT_HI_OFFSET 0xc - -/* Timer Low comparator value register. */ -#define TIMER_CMP_LO_OFFSET 0x10 - -/* Timer High comparator value register. */ -#define TIMER_CMP_HI_OFFSET 0x14 - -/* Start Timer Low counting register. */ -#define TIMER_START_LO_OFFSET 0x18 - -/* Start Timer High counting register. */ -#define TIMER_START_HI_OFFSET 0x1c - -/* Reset Timer Low counter register. */ -#define TIMER_RESET_LO_OFFSET 0x20 - -/* Reset Timer High counter register. */ -#define TIMER_RESET_HI_OFFSET 0x24 - -/* Timer low enable configuration bitfield: - 1'b0: disabled - 1'b1: enabled - * (access: R/W) */ -#define TIMER_CFG_LO_ENABLE_BIT 0 -#define TIMER_CFG_LO_ENABLE_WIDTH 1 -#define TIMER_CFG_LO_ENABLE_MASK 0x1 - -/* Timer low counter reset command bitfield. Cleared after Timer Low reset - * execution. (access: R/W) */ -#define TIMER_CFG_LO_RESET_BIT 1 -#define TIMER_CFG_LO_RESET_WIDTH 1 -#define TIMER_CFG_LO_RESET_MASK 0x2 - -/* Timer low compare match interrupt enable configuration bitfield: - 1'b0: - * disabled - 1'b1: enabled (access: R/W) */ -#define TIMER_CFG_LO_IRQEN_BIT 2 -#define TIMER_CFG_LO_IRQEN_WIDTH 1 -#define TIMER_CFG_LO_IRQEN_MASK 0x4 - -/* Timer low input event mask configuration bitfield: - 1'b0: disabled - 1'b1: - * enabled (access: R/W) */ -#define TIMER_CFG_LO_IEM_BIT 3 -#define TIMER_CFG_LO_IEM_WIDTH 1 -#define TIMER_CFG_LO_IEM_MASK 0x8 - -/* Timer low continuous mode configuration bitfield: - 1'b0: Continue mode - - * continue incrementing Timer low counter when compare match with CMP_LO - * occurs. - 1'b1: Cycle mode - reset Timer low counter when compare match with - * CMP_LO occurs. (access: R/W) */ -#define TIMER_CFG_LO_MODE_BIT 4 -#define TIMER_CFG_LO_MODE_WIDTH 1 -#define TIMER_CFG_LO_MODE_MASK 0x10 - -/* Timer low one shot configuration bitfield: - 1'b0: let Timer low enabled - * counting when compare match with CMP_LO occurs. - 1'b1: disable Timer low - * when compare match with CMP_LO occurs. (access: R/W) */ -#define TIMER_CFG_LO_ONE_S_BIT 5 -#define TIMER_CFG_LO_ONE_S_WIDTH 1 -#define TIMER_CFG_LO_ONE_S_MASK 0x20 - -/* Timer low prescaler enable configuration bitfield:- 1'b0: disabled - 1'b1: - * enabled (access: R/W) */ -#define TIMER_CFG_LO_PEN_BIT 6 -#define TIMER_CFG_LO_PEN_WIDTH 1 -#define TIMER_CFG_LO_PEN_MASK 0x40 - -/* Timer low clock source configuration bitfield: - 1'b0: FLL or FLL+Prescaler - - * 1'b1: Reference clock at 32kHz (access: R/W) */ -#define TIMER_CFG_LO_CCFG_BIT 7 -#define TIMER_CFG_LO_CCFG_WIDTH 1 -#define TIMER_CFG_LO_CCFG_MASK 0x80 - -/* Timer low prescaler value bitfield. Ftimer = Fclk / (1 + PRESC_VAL) (access: - * R/W) */ -#define TIMER_CFG_LO_PVAL_BIT 8 -#define TIMER_CFG_LO_PVAL_WIDTH 8 -#define TIMER_CFG_LO_PVAL_MASK 0xff00 - -/* Timer low + Timer high 64bit cascaded mode configuration bitfield. (access: - * R/W) */ -#define TIMER_CFG_LO_CASC_BIT 31 -#define TIMER_CFG_LO_CASC_WIDTH 1 -#define TIMER_CFG_LO_CASC_MASK 0x80000000 - -/* Timer high enable configuration bitfield: - 1'b0: disabled - 1'b1: enabled - * (access: R/W) */ -#define TIMER_CFG_HI_ENABLE_BIT 0 -#define TIMER_CFG_HI_ENABLE_WIDTH 1 -#define TIMER_CFG_HI_ENABLE_MASK 0x1 - -/* Timer high counter reset command bitfield. Cleared after Timer high reset - * execution. (access: W) */ -#define TIMER_CFG_HI_RESET_BIT 1 -#define TIMER_CFG_HI_RESET_WIDTH 1 -#define TIMER_CFG_HI_RESET_MASK 0x2 - -/* Timer high compare match interrupt enable configuration bitfield: - 1'b0: - * disabled - 1'b1: enabled (access: R/W) */ -#define TIMER_CFG_HI_IRQEN_BIT 2 -#define TIMER_CFG_HI_IRQEN_WIDTH 1 -#define TIMER_CFG_HI_IRQEN_MASK 0x4 - -/* Timer high input event mask configuration bitfield: - 1'b0: disabled - 1'b1: - * enabled (access: R/W) */ -#define TIMER_CFG_HI_IEM_BIT 3 -#define TIMER_CFG_HI_IEM_WIDTH 1 -#define TIMER_CFG_HI_IEM_MASK 0x8 - -/* Timer high continuous mode configuration bitfield: - 1'b0: Continue mode - - * continue incrementing Timer high counter when compare match with CMP_LO - * occurs. - 1'b1: Cycle mode - reset Timer high counter when compare match with - * CMP_LO occurs. (access: R/W) */ -#define TIMER_CFG_HI_MODE_BIT 4 -#define TIMER_CFG_HI_MODE_WIDTH 1 -#define TIMER_CFG_HI_MODE_MASK 0x10 - -/* Timer high one shot configuration bitfield: - 1'b0: let Timer high enabled - * counting when compare match with CMP_LO occurs. - 1'b1: disable Timer high - * when compare match with CMP_LO occurs. (access: R/W) */ -#define TIMER_CFG_HI_ONE_S_BIT 5 -#define TIMER_CFG_HI_ONE_S_WIDTH 1 -#define TIMER_CFG_HI_ONE_S_MASK 0x20 - -/* Timer high prescaler enable configuration bitfield: - 1'b0: disabled - 1'b1: - * enabled (access: R/W) */ -#define TIMER_CFG_HI_PEN_BIT 6 -#define TIMER_CFG_HI_PEN_WIDTH 1 -#define TIMER_CFG_HI_PEN_MASK 0x40 - -/* Timer high clock source configuration bitfield: - 1'b0: FLL or FLL+Prescaler - * - 1'b1: Reference clock at 32kHz (access: R/W) */ -#define TIMER_CFG_HI_CLKCFG_BIT 7 -#define TIMER_CFG_HI_CLKCFG_WIDTH 1 -#define TIMER_CFG_HI_CLKCFG_MASK 0x80 - -/* Timer Low counter value bitfield. (access: R/W) */ -#define TIMER_CNT_LO_CNT_LO_BIT 0 -#define TIMER_CNT_LO_CNT_LO_WIDTH 32 -#define TIMER_CNT_LO_CNT_LO_MASK 0xffffffff - -/* Timer High counter value bitfield. (access: R/W) */ -#define TIMER_CNT_HI_CNT_HI_BIT 0 -#define TIMER_CNT_HI_CNT_HI_WIDTH 32 -#define TIMER_CNT_HI_CNT_HI_MASK 0xffffffff - -/* Timer Low comparator value bitfield. (access: R/W) */ -#define TIMER_CMP_LO_CMP_LO_BIT 0 -#define TIMER_CMP_LO_CMP_LO_WIDTH 32 -#define TIMER_CMP_LO_CMP_LO_MASK 0xffffffff - -/* Timer High comparator value bitfield. (access: R/W) */ -#define TIMER_CMP_HI_CMP_HI_BIT 0 -#define TIMER_CMP_HI_CMP_HI_WIDTH 32 -#define TIMER_CMP_HI_CMP_HI_MASK 0xffffffff - -/* Timer Low start command bitfield. When executed, CFG_LO.ENABLE is set. - * (access: W) */ -#define TIMER_START_LO_STRT_LO_BIT 0 -#define TIMER_START_LO_STRT_LO_WIDTH 1 -#define TIMER_START_LO_STRT_LO_MASK 0x1 - -/* Timer High start command bitfield. When executed, CFG_HI.ENABLE is set. - * (access: W) */ -#define TIMER_START_HI_STRT_HI_BIT 0 -#define TIMER_START_HI_STRT_HI_WIDTH 1 -#define TIMER_START_HI_STRT_HI_MASK 0x1 - -/* Timer Low counter reset command bitfield. When executed, CFG_LO.RESET is set. - * (access: W) */ -#define TIMER_RESET_LO_RST_LO_BIT 0 -#define TIMER_RESET_LO_RST_LO_WIDTH 1 -#define TIMER_RESET_LO_RST_LO_MASK 0x1 - -/* Timer High counter reset command bitfield. When executed, CFG_HI.RESET is - * set. (access: W) */ -#define TIMER_RESET_HI_RST_HI_BIT 0 -#define TIMER_RESET_HI_RST_HI_WIDTH 1 -#define TIMER_RESET_HI_RST_HI_MASK 0x1 - -struct pulp_timer { - unsigned int current_time; - unsigned int flags; - void *base; -}; - -#endif /* __TIMER_H__ */ diff --git a/rtos/freertos/abstraction_layer_freertos/include/timer_irq.h b/rtos/freertos/abstraction_layer_freertos/include/timer_irq.h deleted file mode 100644 index e66484d5..00000000 --- a/rtos/freertos/abstraction_layer_freertos/include/timer_irq.h +++ /dev/null @@ -1,33 +0,0 @@ -/* - * Copyright (C) 2019 ETH Zurich and University of Bologna - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * SPDX-License-Identifier: Apache-2.0 - */ - -/* Author: Robert Balas (balasr@iis.ee.ethz.ch) */ - -#ifndef __TIMER_IRQ_H__ -#define __TIMER_IRQ_H__ -#include - -int timer_irq_init(uint32_t ticks); - -int timer_irq_set_timeout(uint32_t ticks, bool idle); - -uint32_t timer_irq_clock_elapsed(); - -uint32_t timer_irq_cycle_get_32(); - -#endif /* __TIMER_IRQ_H__ */ diff --git a/rtos/freertos/abstraction_layer_freertos/include/timers.h b/rtos/freertos/abstraction_layer_freertos/include/timers.h deleted file mode 100644 index 91483846..00000000 --- a/rtos/freertos/abstraction_layer_freertos/include/timers.h +++ /dev/null @@ -1,1309 +0,0 @@ -/* - * FreeRTOS Kernel V10.3.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. - * - * Permission is hereby granted, free of charge, to any person obtaining a copy of - * this software and associated documentation files (the "Software"), to deal in - * the Software without restriction, including without limitation the rights to - * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of - * the Software, and to permit persons to whom the Software is furnished to do so, - * subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS - * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR - * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER - * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - * - * http://www.FreeRTOS.org - * http://aws.amazon.com/freertos - * - * 1 tab == 4 spaces! - */ - - -#ifndef TIMERS_H -#define TIMERS_H - -#ifndef INC_FREERTOS_H - #error "include FreeRTOS.h must appear in source files before include timers.h" -#endif - -/*lint -save -e537 This headers are only multiply included if the application code -happens to also be including task.h. */ -#include "task.h" -/*lint -restore */ - -#ifdef __cplusplus -extern "C" { -#endif - -/*----------------------------------------------------------- - * MACROS AND DEFINITIONS - *----------------------------------------------------------*/ - -/* IDs for commands that can be sent/received on the timer queue. These are to -be used solely through the macros that make up the public software timer API, -as defined below. The commands that are sent from interrupts must use the -highest numbers as tmrFIRST_FROM_ISR_COMMAND is used to determine if the task -or interrupt version of the queue send function should be used. */ -#define tmrCOMMAND_EXECUTE_CALLBACK_FROM_ISR ( ( BaseType_t ) -2 ) -#define tmrCOMMAND_EXECUTE_CALLBACK ( ( BaseType_t ) -1 ) -#define tmrCOMMAND_START_DONT_TRACE ( ( BaseType_t ) 0 ) -#define tmrCOMMAND_START ( ( BaseType_t ) 1 ) -#define tmrCOMMAND_RESET ( ( BaseType_t ) 2 ) -#define tmrCOMMAND_STOP ( ( BaseType_t ) 3 ) -#define tmrCOMMAND_CHANGE_PERIOD ( ( BaseType_t ) 4 ) -#define tmrCOMMAND_DELETE ( ( BaseType_t ) 5 ) - -#define tmrFIRST_FROM_ISR_COMMAND ( ( BaseType_t ) 6 ) -#define tmrCOMMAND_START_FROM_ISR ( ( BaseType_t ) 6 ) -#define tmrCOMMAND_RESET_FROM_ISR ( ( BaseType_t ) 7 ) -#define tmrCOMMAND_STOP_FROM_ISR ( ( BaseType_t ) 8 ) -#define tmrCOMMAND_CHANGE_PERIOD_FROM_ISR ( ( BaseType_t ) 9 ) - - -/** - * Type by which software timers are referenced. For example, a call to - * xTimerCreate() returns an TimerHandle_t variable that can then be used to - * reference the subject timer in calls to other software timer API functions - * (for example, xTimerStart(), xTimerReset(), etc.). - */ -struct tmrTimerControl; /* The old naming convention is used to prevent breaking kernel aware debuggers. */ -typedef struct tmrTimerControl * TimerHandle_t; - -/* - * Defines the prototype to which timer callback functions must conform. - */ -typedef void (*TimerCallbackFunction_t)( TimerHandle_t xTimer ); - -/* - * Defines the prototype to which functions used with the - * xTimerPendFunctionCallFromISR() function must conform. - */ -typedef void (*PendedFunction_t)( void *, uint32_t ); - -/** - * TimerHandle_t xTimerCreate( const char * const pcTimerName, - * TickType_t xTimerPeriodInTicks, - * UBaseType_t uxAutoReload, - * void * pvTimerID, - * TimerCallbackFunction_t pxCallbackFunction ); - * - * Creates a new software timer instance, and returns a handle by which the - * created software timer can be referenced. - * - * Internally, within the FreeRTOS implementation, software timers use a block - * of memory, in which the timer data structure is stored. If a software timer - * is created using xTimerCreate() then the required memory is automatically - * dynamically allocated inside the xTimerCreate() function. (see - * http://www.freertos.org/a00111.html). If a software timer is created using - * xTimerCreateStatic() then the application writer must provide the memory that - * will get used by the software timer. xTimerCreateStatic() therefore allows a - * software timer to be created without using any dynamic memory allocation. - * - * Timers are created in the dormant state. The xTimerStart(), xTimerReset(), - * xTimerStartFromISR(), xTimerResetFromISR(), xTimerChangePeriod() and - * xTimerChangePeriodFromISR() API functions can all be used to transition a - * timer into the active state. - * - * @param pcTimerName A text name that is assigned to the timer. This is done - * purely to assist debugging. The kernel itself only ever references a timer - * by its handle, and never by its name. - * - * @param xTimerPeriodInTicks The timer period. The time is defined in tick - * periods so the constant portTICK_PERIOD_MS can be used to convert a time that - * has been specified in milliseconds. For example, if the timer must expire - * after 100 ticks, then xTimerPeriodInTicks should be set to 100. - * Alternatively, if the timer must expire after 500ms, then xPeriod can be set - * to ( 500 / portTICK_PERIOD_MS ) provided configTICK_RATE_HZ is less than or - * equal to 1000. - * - * @param uxAutoReload If uxAutoReload is set to pdTRUE then the timer will - * expire repeatedly with a frequency set by the xTimerPeriodInTicks parameter. - * If uxAutoReload is set to pdFALSE then the timer will be a one-shot timer and - * enter the dormant state after it expires. - * - * @param pvTimerID An identifier that is assigned to the timer being created. - * Typically this would be used in the timer callback function to identify which - * timer expired when the same callback function is assigned to more than one - * timer. - * - * @param pxCallbackFunction The function to call when the timer expires. - * Callback functions must have the prototype defined by TimerCallbackFunction_t, - * which is "void vCallbackFunction( TimerHandle_t xTimer );". - * - * @return If the timer is successfully created then a handle to the newly - * created timer is returned. If the timer cannot be created (because either - * there is insufficient FreeRTOS heap remaining to allocate the timer - * structures, or the timer period was set to 0) then NULL is returned. - * - * Example usage: - * @verbatim - * #define NUM_TIMERS 5 - * - * // An array to hold handles to the created timers. - * TimerHandle_t xTimers[ NUM_TIMERS ]; - * - * // An array to hold a count of the number of times each timer expires. - * int32_t lExpireCounters[ NUM_TIMERS ] = { 0 }; - * - * // Define a callback function that will be used by multiple timer instances. - * // The callback function does nothing but count the number of times the - * // associated timer expires, and stop the timer once the timer has expired - * // 10 times. - * void vTimerCallback( TimerHandle_t pxTimer ) - * { - * int32_t lArrayIndex; - * const int32_t xMaxExpiryCountBeforeStopping = 10; - * - * // Optionally do something if the pxTimer parameter is NULL. - * configASSERT( pxTimer ); - * - * // Which timer expired? - * lArrayIndex = ( int32_t ) pvTimerGetTimerID( pxTimer ); - * - * // Increment the number of times that pxTimer has expired. - * lExpireCounters[ lArrayIndex ] += 1; - * - * // If the timer has expired 10 times then stop it from running. - * if( lExpireCounters[ lArrayIndex ] == xMaxExpiryCountBeforeStopping ) - * { - * // Do not use a block time if calling a timer API function from a - * // timer callback function, as doing so could cause a deadlock! - * xTimerStop( pxTimer, 0 ); - * } - * } - * - * void main( void ) - * { - * int32_t x; - * - * // Create then start some timers. Starting the timers before the scheduler - * // has been started means the timers will start running immediately that - * // the scheduler starts. - * for( x = 0; x < NUM_TIMERS; x++ ) - * { - * xTimers[ x ] = xTimerCreate( "Timer", // Just a text name, not used by the kernel. - * ( 100 * x ), // The timer period in ticks. - * pdTRUE, // The timers will auto-reload themselves when they expire. - * ( void * ) x, // Assign each timer a unique id equal to its array index. - * vTimerCallback // Each timer calls the same callback when it expires. - * ); - * - * if( xTimers[ x ] == NULL ) - * { - * // The timer was not created. - * } - * else - * { - * // Start the timer. No block time is specified, and even if one was - * // it would be ignored because the scheduler has not yet been - * // started. - * if( xTimerStart( xTimers[ x ], 0 ) != pdPASS ) - * { - * // The timer could not be set into the Active state. - * } - * } - * } - * - * // ... - * // Create tasks here. - * // ... - * - * // Starting the scheduler will start the timers running as they have already - * // been set into the active state. - * vTaskStartScheduler(); - * - * // Should not reach here. - * for( ;; ); - * } - * @endverbatim - */ -#if( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) - TimerHandle_t xTimerCreate( const char * const pcTimerName, /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ - const TickType_t xTimerPeriodInTicks, - const UBaseType_t uxAutoReload, - void * const pvTimerID, - TimerCallbackFunction_t pxCallbackFunction ) PRIVILEGED_FUNCTION; -#endif - -/** - * TimerHandle_t xTimerCreateStatic(const char * const pcTimerName, - * TickType_t xTimerPeriodInTicks, - * UBaseType_t uxAutoReload, - * void * pvTimerID, - * TimerCallbackFunction_t pxCallbackFunction, - * StaticTimer_t *pxTimerBuffer ); - * - * Creates a new software timer instance, and returns a handle by which the - * created software timer can be referenced. - * - * Internally, within the FreeRTOS implementation, software timers use a block - * of memory, in which the timer data structure is stored. If a software timer - * is created using xTimerCreate() then the required memory is automatically - * dynamically allocated inside the xTimerCreate() function. (see - * http://www.freertos.org/a00111.html). If a software timer is created using - * xTimerCreateStatic() then the application writer must provide the memory that - * will get used by the software timer. xTimerCreateStatic() therefore allows a - * software timer to be created without using any dynamic memory allocation. - * - * Timers are created in the dormant state. The xTimerStart(), xTimerReset(), - * xTimerStartFromISR(), xTimerResetFromISR(), xTimerChangePeriod() and - * xTimerChangePeriodFromISR() API functions can all be used to transition a - * timer into the active state. - * - * @param pcTimerName A text name that is assigned to the timer. This is done - * purely to assist debugging. The kernel itself only ever references a timer - * by its handle, and never by its name. - * - * @param xTimerPeriodInTicks The timer period. The time is defined in tick - * periods so the constant portTICK_PERIOD_MS can be used to convert a time that - * has been specified in milliseconds. For example, if the timer must expire - * after 100 ticks, then xTimerPeriodInTicks should be set to 100. - * Alternatively, if the timer must expire after 500ms, then xPeriod can be set - * to ( 500 / portTICK_PERIOD_MS ) provided configTICK_RATE_HZ is less than or - * equal to 1000. - * - * @param uxAutoReload If uxAutoReload is set to pdTRUE then the timer will - * expire repeatedly with a frequency set by the xTimerPeriodInTicks parameter. - * If uxAutoReload is set to pdFALSE then the timer will be a one-shot timer and - * enter the dormant state after it expires. - * - * @param pvTimerID An identifier that is assigned to the timer being created. - * Typically this would be used in the timer callback function to identify which - * timer expired when the same callback function is assigned to more than one - * timer. - * - * @param pxCallbackFunction The function to call when the timer expires. - * Callback functions must have the prototype defined by TimerCallbackFunction_t, - * which is "void vCallbackFunction( TimerHandle_t xTimer );". - * - * @param pxTimerBuffer Must point to a variable of type StaticTimer_t, which - * will be then be used to hold the software timer's data structures, removing - * the need for the memory to be allocated dynamically. - * - * @return If the timer is created then a handle to the created timer is - * returned. If pxTimerBuffer was NULL then NULL is returned. - * - * Example usage: - * @verbatim - * - * // The buffer used to hold the software timer's data structure. - * static StaticTimer_t xTimerBuffer; - * - * // A variable that will be incremented by the software timer's callback - * // function. - * UBaseType_t uxVariableToIncrement = 0; - * - * // A software timer callback function that increments a variable passed to - * // it when the software timer was created. After the 5th increment the - * // callback function stops the software timer. - * static void prvTimerCallback( TimerHandle_t xExpiredTimer ) - * { - * UBaseType_t *puxVariableToIncrement; - * BaseType_t xReturned; - * - * // Obtain the address of the variable to increment from the timer ID. - * puxVariableToIncrement = ( UBaseType_t * ) pvTimerGetTimerID( xExpiredTimer ); - * - * // Increment the variable to show the timer callback has executed. - * ( *puxVariableToIncrement )++; - * - * // If this callback has executed the required number of times, stop the - * // timer. - * if( *puxVariableToIncrement == 5 ) - * { - * // This is called from a timer callback so must not block. - * xTimerStop( xExpiredTimer, staticDONT_BLOCK ); - * } - * } - * - * - * void main( void ) - * { - * // Create the software time. xTimerCreateStatic() has an extra parameter - * // than the normal xTimerCreate() API function. The parameter is a pointer - * // to the StaticTimer_t structure that will hold the software timer - * // structure. If the parameter is passed as NULL then the structure will be - * // allocated dynamically, just as if xTimerCreate() had been called. - * xTimer = xTimerCreateStatic( "T1", // Text name for the task. Helps debugging only. Not used by FreeRTOS. - * xTimerPeriod, // The period of the timer in ticks. - * pdTRUE, // This is an auto-reload timer. - * ( void * ) &uxVariableToIncrement, // A variable incremented by the software timer's callback function - * prvTimerCallback, // The function to execute when the timer expires. - * &xTimerBuffer ); // The buffer that will hold the software timer structure. - * - * // The scheduler has not started yet so a block time is not used. - * xReturned = xTimerStart( xTimer, 0 ); - * - * // ... - * // Create tasks here. - * // ... - * - * // Starting the scheduler will start the timers running as they have already - * // been set into the active state. - * vTaskStartScheduler(); - * - * // Should not reach here. - * for( ;; ); - * } - * @endverbatim - */ -#if( configSUPPORT_STATIC_ALLOCATION == 1 ) - TimerHandle_t xTimerCreateStatic( const char * const pcTimerName, /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ - const TickType_t xTimerPeriodInTicks, - const UBaseType_t uxAutoReload, - void * const pvTimerID, - TimerCallbackFunction_t pxCallbackFunction, - StaticTimer_t *pxTimerBuffer ) PRIVILEGED_FUNCTION; -#endif /* configSUPPORT_STATIC_ALLOCATION */ - -/** - * void *pvTimerGetTimerID( TimerHandle_t xTimer ); - * - * Returns the ID assigned to the timer. - * - * IDs are assigned to timers using the pvTimerID parameter of the call to - * xTimerCreated() that was used to create the timer, and by calling the - * vTimerSetTimerID() API function. - * - * If the same callback function is assigned to multiple timers then the timer - * ID can be used as time specific (timer local) storage. - * - * @param xTimer The timer being queried. - * - * @return The ID assigned to the timer being queried. - * - * Example usage: - * - * See the xTimerCreate() API function example usage scenario. - */ -void *pvTimerGetTimerID( const TimerHandle_t xTimer ) PRIVILEGED_FUNCTION; - -/** - * void vTimerSetTimerID( TimerHandle_t xTimer, void *pvNewID ); - * - * Sets the ID assigned to the timer. - * - * IDs are assigned to timers using the pvTimerID parameter of the call to - * xTimerCreated() that was used to create the timer. - * - * If the same callback function is assigned to multiple timers then the timer - * ID can be used as time specific (timer local) storage. - * - * @param xTimer The timer being updated. - * - * @param pvNewID The ID to assign to the timer. - * - * Example usage: - * - * See the xTimerCreate() API function example usage scenario. - */ -void vTimerSetTimerID( TimerHandle_t xTimer, void *pvNewID ) PRIVILEGED_FUNCTION; - -/** - * BaseType_t xTimerIsTimerActive( TimerHandle_t xTimer ); - * - * Queries a timer to see if it is active or dormant. - * - * A timer will be dormant if: - * 1) It has been created but not started, or - * 2) It is an expired one-shot timer that has not been restarted. - * - * Timers are created in the dormant state. The xTimerStart(), xTimerReset(), - * xTimerStartFromISR(), xTimerResetFromISR(), xTimerChangePeriod() and - * xTimerChangePeriodFromISR() API functions can all be used to transition a timer into the - * active state. - * - * @param xTimer The timer being queried. - * - * @return pdFALSE will be returned if the timer is dormant. A value other than - * pdFALSE will be returned if the timer is active. - * - * Example usage: - * @verbatim - * // This function assumes xTimer has already been created. - * void vAFunction( TimerHandle_t xTimer ) - * { - * if( xTimerIsTimerActive( xTimer ) != pdFALSE ) // or more simply and equivalently "if( xTimerIsTimerActive( xTimer ) )" - * { - * // xTimer is active, do something. - * } - * else - * { - * // xTimer is not active, do something else. - * } - * } - * @endverbatim - */ -BaseType_t xTimerIsTimerActive( TimerHandle_t xTimer ) PRIVILEGED_FUNCTION; - -/** - * TaskHandle_t xTimerGetTimerDaemonTaskHandle( void ); - * - * Simply returns the handle of the timer service/daemon task. It it not valid - * to call xTimerGetTimerDaemonTaskHandle() before the scheduler has been started. - */ -TaskHandle_t xTimerGetTimerDaemonTaskHandle( void ) PRIVILEGED_FUNCTION; - -/** - * BaseType_t xTimerStart( TimerHandle_t xTimer, TickType_t xTicksToWait ); - * - * Timer functionality is provided by a timer service/daemon task. Many of the - * public FreeRTOS timer API functions send commands to the timer service task - * through a queue called the timer command queue. The timer command queue is - * private to the kernel itself and is not directly accessible to application - * code. The length of the timer command queue is set by the - * configTIMER_QUEUE_LENGTH configuration constant. - * - * xTimerStart() starts a timer that was previously created using the - * xTimerCreate() API function. If the timer had already been started and was - * already in the active state, then xTimerStart() has equivalent functionality - * to the xTimerReset() API function. - * - * Starting a timer ensures the timer is in the active state. If the timer - * is not stopped, deleted, or reset in the mean time, the callback function - * associated with the timer will get called 'n' ticks after xTimerStart() was - * called, where 'n' is the timers defined period. - * - * It is valid to call xTimerStart() before the scheduler has been started, but - * when this is done the timer will not actually start until the scheduler is - * started, and the timers expiry time will be relative to when the scheduler is - * started, not relative to when xTimerStart() was called. - * - * The configUSE_TIMERS configuration constant must be set to 1 for xTimerStart() - * to be available. - * - * @param xTimer The handle of the timer being started/restarted. - * - * @param xTicksToWait Specifies the time, in ticks, that the calling task should - * be held in the Blocked state to wait for the start command to be successfully - * sent to the timer command queue, should the queue already be full when - * xTimerStart() was called. xTicksToWait is ignored if xTimerStart() is called - * before the scheduler is started. - * - * @return pdFAIL will be returned if the start command could not be sent to - * the timer command queue even after xTicksToWait ticks had passed. pdPASS will - * be returned if the command was successfully sent to the timer command queue. - * When the command is actually processed will depend on the priority of the - * timer service/daemon task relative to other tasks in the system, although the - * timers expiry time is relative to when xTimerStart() is actually called. The - * timer service/daemon task priority is set by the configTIMER_TASK_PRIORITY - * configuration constant. - * - * Example usage: - * - * See the xTimerCreate() API function example usage scenario. - * - */ -#define xTimerStart( xTimer, xTicksToWait ) xTimerGenericCommand( ( xTimer ), tmrCOMMAND_START, ( xTaskGetTickCount() ), NULL, ( xTicksToWait ) ) - -/** - * BaseType_t xTimerStop( TimerHandle_t xTimer, TickType_t xTicksToWait ); - * - * Timer functionality is provided by a timer service/daemon task. Many of the - * public FreeRTOS timer API functions send commands to the timer service task - * through a queue called the timer command queue. The timer command queue is - * private to the kernel itself and is not directly accessible to application - * code. The length of the timer command queue is set by the - * configTIMER_QUEUE_LENGTH configuration constant. - * - * xTimerStop() stops a timer that was previously started using either of the - * The xTimerStart(), xTimerReset(), xTimerStartFromISR(), xTimerResetFromISR(), - * xTimerChangePeriod() or xTimerChangePeriodFromISR() API functions. - * - * Stopping a timer ensures the timer is not in the active state. - * - * The configUSE_TIMERS configuration constant must be set to 1 for xTimerStop() - * to be available. - * - * @param xTimer The handle of the timer being stopped. - * - * @param xTicksToWait Specifies the time, in ticks, that the calling task should - * be held in the Blocked state to wait for the stop command to be successfully - * sent to the timer command queue, should the queue already be full when - * xTimerStop() was called. xTicksToWait is ignored if xTimerStop() is called - * before the scheduler is started. - * - * @return pdFAIL will be returned if the stop command could not be sent to - * the timer command queue even after xTicksToWait ticks had passed. pdPASS will - * be returned if the command was successfully sent to the timer command queue. - * When the command is actually processed will depend on the priority of the - * timer service/daemon task relative to other tasks in the system. The timer - * service/daemon task priority is set by the configTIMER_TASK_PRIORITY - * configuration constant. - * - * Example usage: - * - * See the xTimerCreate() API function example usage scenario. - * - */ -#define xTimerStop( xTimer, xTicksToWait ) xTimerGenericCommand( ( xTimer ), tmrCOMMAND_STOP, 0U, NULL, ( xTicksToWait ) ) - -/** - * BaseType_t xTimerChangePeriod( TimerHandle_t xTimer, - * TickType_t xNewPeriod, - * TickType_t xTicksToWait ); - * - * Timer functionality is provided by a timer service/daemon task. Many of the - * public FreeRTOS timer API functions send commands to the timer service task - * through a queue called the timer command queue. The timer command queue is - * private to the kernel itself and is not directly accessible to application - * code. The length of the timer command queue is set by the - * configTIMER_QUEUE_LENGTH configuration constant. - * - * xTimerChangePeriod() changes the period of a timer that was previously - * created using the xTimerCreate() API function. - * - * xTimerChangePeriod() can be called to change the period of an active or - * dormant state timer. - * - * The configUSE_TIMERS configuration constant must be set to 1 for - * xTimerChangePeriod() to be available. - * - * @param xTimer The handle of the timer that is having its period changed. - * - * @param xNewPeriod The new period for xTimer. Timer periods are specified in - * tick periods, so the constant portTICK_PERIOD_MS can be used to convert a time - * that has been specified in milliseconds. For example, if the timer must - * expire after 100 ticks, then xNewPeriod should be set to 100. Alternatively, - * if the timer must expire after 500ms, then xNewPeriod can be set to - * ( 500 / portTICK_PERIOD_MS ) provided configTICK_RATE_HZ is less than - * or equal to 1000. - * - * @param xTicksToWait Specifies the time, in ticks, that the calling task should - * be held in the Blocked state to wait for the change period command to be - * successfully sent to the timer command queue, should the queue already be - * full when xTimerChangePeriod() was called. xTicksToWait is ignored if - * xTimerChangePeriod() is called before the scheduler is started. - * - * @return pdFAIL will be returned if the change period command could not be - * sent to the timer command queue even after xTicksToWait ticks had passed. - * pdPASS will be returned if the command was successfully sent to the timer - * command queue. When the command is actually processed will depend on the - * priority of the timer service/daemon task relative to other tasks in the - * system. The timer service/daemon task priority is set by the - * configTIMER_TASK_PRIORITY configuration constant. - * - * Example usage: - * @verbatim - * // This function assumes xTimer has already been created. If the timer - * // referenced by xTimer is already active when it is called, then the timer - * // is deleted. If the timer referenced by xTimer is not active when it is - * // called, then the period of the timer is set to 500ms and the timer is - * // started. - * void vAFunction( TimerHandle_t xTimer ) - * { - * if( xTimerIsTimerActive( xTimer ) != pdFALSE ) // or more simply and equivalently "if( xTimerIsTimerActive( xTimer ) )" - * { - * // xTimer is already active - delete it. - * xTimerDelete( xTimer ); - * } - * else - * { - * // xTimer is not active, change its period to 500ms. This will also - * // cause the timer to start. Block for a maximum of 100 ticks if the - * // change period command cannot immediately be sent to the timer - * // command queue. - * if( xTimerChangePeriod( xTimer, 500 / portTICK_PERIOD_MS, 100 ) == pdPASS ) - * { - * // The command was successfully sent. - * } - * else - * { - * // The command could not be sent, even after waiting for 100 ticks - * // to pass. Take appropriate action here. - * } - * } - * } - * @endverbatim - */ - #define xTimerChangePeriod( xTimer, xNewPeriod, xTicksToWait ) xTimerGenericCommand( ( xTimer ), tmrCOMMAND_CHANGE_PERIOD, ( xNewPeriod ), NULL, ( xTicksToWait ) ) - -/** - * BaseType_t xTimerDelete( TimerHandle_t xTimer, TickType_t xTicksToWait ); - * - * Timer functionality is provided by a timer service/daemon task. Many of the - * public FreeRTOS timer API functions send commands to the timer service task - * through a queue called the timer command queue. The timer command queue is - * private to the kernel itself and is not directly accessible to application - * code. The length of the timer command queue is set by the - * configTIMER_QUEUE_LENGTH configuration constant. - * - * xTimerDelete() deletes a timer that was previously created using the - * xTimerCreate() API function. - * - * The configUSE_TIMERS configuration constant must be set to 1 for - * xTimerDelete() to be available. - * - * @param xTimer The handle of the timer being deleted. - * - * @param xTicksToWait Specifies the time, in ticks, that the calling task should - * be held in the Blocked state to wait for the delete command to be - * successfully sent to the timer command queue, should the queue already be - * full when xTimerDelete() was called. xTicksToWait is ignored if xTimerDelete() - * is called before the scheduler is started. - * - * @return pdFAIL will be returned if the delete command could not be sent to - * the timer command queue even after xTicksToWait ticks had passed. pdPASS will - * be returned if the command was successfully sent to the timer command queue. - * When the command is actually processed will depend on the priority of the - * timer service/daemon task relative to other tasks in the system. The timer - * service/daemon task priority is set by the configTIMER_TASK_PRIORITY - * configuration constant. - * - * Example usage: - * - * See the xTimerChangePeriod() API function example usage scenario. - */ -#define xTimerDelete( xTimer, xTicksToWait ) xTimerGenericCommand( ( xTimer ), tmrCOMMAND_DELETE, 0U, NULL, ( xTicksToWait ) ) - -/** - * BaseType_t xTimerReset( TimerHandle_t xTimer, TickType_t xTicksToWait ); - * - * Timer functionality is provided by a timer service/daemon task. Many of the - * public FreeRTOS timer API functions send commands to the timer service task - * through a queue called the timer command queue. The timer command queue is - * private to the kernel itself and is not directly accessible to application - * code. The length of the timer command queue is set by the - * configTIMER_QUEUE_LENGTH configuration constant. - * - * xTimerReset() re-starts a timer that was previously created using the - * xTimerCreate() API function. If the timer had already been started and was - * already in the active state, then xTimerReset() will cause the timer to - * re-evaluate its expiry time so that it is relative to when xTimerReset() was - * called. If the timer was in the dormant state then xTimerReset() has - * equivalent functionality to the xTimerStart() API function. - * - * Resetting a timer ensures the timer is in the active state. If the timer - * is not stopped, deleted, or reset in the mean time, the callback function - * associated with the timer will get called 'n' ticks after xTimerReset() was - * called, where 'n' is the timers defined period. - * - * It is valid to call xTimerReset() before the scheduler has been started, but - * when this is done the timer will not actually start until the scheduler is - * started, and the timers expiry time will be relative to when the scheduler is - * started, not relative to when xTimerReset() was called. - * - * The configUSE_TIMERS configuration constant must be set to 1 for xTimerReset() - * to be available. - * - * @param xTimer The handle of the timer being reset/started/restarted. - * - * @param xTicksToWait Specifies the time, in ticks, that the calling task should - * be held in the Blocked state to wait for the reset command to be successfully - * sent to the timer command queue, should the queue already be full when - * xTimerReset() was called. xTicksToWait is ignored if xTimerReset() is called - * before the scheduler is started. - * - * @return pdFAIL will be returned if the reset command could not be sent to - * the timer command queue even after xTicksToWait ticks had passed. pdPASS will - * be returned if the command was successfully sent to the timer command queue. - * When the command is actually processed will depend on the priority of the - * timer service/daemon task relative to other tasks in the system, although the - * timers expiry time is relative to when xTimerStart() is actually called. The - * timer service/daemon task priority is set by the configTIMER_TASK_PRIORITY - * configuration constant. - * - * Example usage: - * @verbatim - * // When a key is pressed, an LCD back-light is switched on. If 5 seconds pass - * // without a key being pressed, then the LCD back-light is switched off. In - * // this case, the timer is a one-shot timer. - * - * TimerHandle_t xBacklightTimer = NULL; - * - * // The callback function assigned to the one-shot timer. In this case the - * // parameter is not used. - * void vBacklightTimerCallback( TimerHandle_t pxTimer ) - * { - * // The timer expired, therefore 5 seconds must have passed since a key - * // was pressed. Switch off the LCD back-light. - * vSetBacklightState( BACKLIGHT_OFF ); - * } - * - * // The key press event handler. - * void vKeyPressEventHandler( char cKey ) - * { - * // Ensure the LCD back-light is on, then reset the timer that is - * // responsible for turning the back-light off after 5 seconds of - * // key inactivity. Wait 10 ticks for the command to be successfully sent - * // if it cannot be sent immediately. - * vSetBacklightState( BACKLIGHT_ON ); - * if( xTimerReset( xBacklightTimer, 100 ) != pdPASS ) - * { - * // The reset command was not executed successfully. Take appropriate - * // action here. - * } - * - * // Perform the rest of the key processing here. - * } - * - * void main( void ) - * { - * int32_t x; - * - * // Create then start the one-shot timer that is responsible for turning - * // the back-light off if no keys are pressed within a 5 second period. - * xBacklightTimer = xTimerCreate( "BacklightTimer", // Just a text name, not used by the kernel. - * ( 5000 / portTICK_PERIOD_MS), // The timer period in ticks. - * pdFALSE, // The timer is a one-shot timer. - * 0, // The id is not used by the callback so can take any value. - * vBacklightTimerCallback // The callback function that switches the LCD back-light off. - * ); - * - * if( xBacklightTimer == NULL ) - * { - * // The timer was not created. - * } - * else - * { - * // Start the timer. No block time is specified, and even if one was - * // it would be ignored because the scheduler has not yet been - * // started. - * if( xTimerStart( xBacklightTimer, 0 ) != pdPASS ) - * { - * // The timer could not be set into the Active state. - * } - * } - * - * // ... - * // Create tasks here. - * // ... - * - * // Starting the scheduler will start the timer running as it has already - * // been set into the active state. - * vTaskStartScheduler(); - * - * // Should not reach here. - * for( ;; ); - * } - * @endverbatim - */ -#define xTimerReset( xTimer, xTicksToWait ) xTimerGenericCommand( ( xTimer ), tmrCOMMAND_RESET, ( xTaskGetTickCount() ), NULL, ( xTicksToWait ) ) - -/** - * BaseType_t xTimerStartFromISR( TimerHandle_t xTimer, - * BaseType_t *pxHigherPriorityTaskWoken ); - * - * A version of xTimerStart() that can be called from an interrupt service - * routine. - * - * @param xTimer The handle of the timer being started/restarted. - * - * @param pxHigherPriorityTaskWoken The timer service/daemon task spends most - * of its time in the Blocked state, waiting for messages to arrive on the timer - * command queue. Calling xTimerStartFromISR() writes a message to the timer - * command queue, so has the potential to transition the timer service/daemon - * task out of the Blocked state. If calling xTimerStartFromISR() causes the - * timer service/daemon task to leave the Blocked state, and the timer service/ - * daemon task has a priority equal to or greater than the currently executing - * task (the task that was interrupted), then *pxHigherPriorityTaskWoken will - * get set to pdTRUE internally within the xTimerStartFromISR() function. If - * xTimerStartFromISR() sets this value to pdTRUE then a context switch should - * be performed before the interrupt exits. - * - * @return pdFAIL will be returned if the start command could not be sent to - * the timer command queue. pdPASS will be returned if the command was - * successfully sent to the timer command queue. When the command is actually - * processed will depend on the priority of the timer service/daemon task - * relative to other tasks in the system, although the timers expiry time is - * relative to when xTimerStartFromISR() is actually called. The timer - * service/daemon task priority is set by the configTIMER_TASK_PRIORITY - * configuration constant. - * - * Example usage: - * @verbatim - * // This scenario assumes xBacklightTimer has already been created. When a - * // key is pressed, an LCD back-light is switched on. If 5 seconds pass - * // without a key being pressed, then the LCD back-light is switched off. In - * // this case, the timer is a one-shot timer, and unlike the example given for - * // the xTimerReset() function, the key press event handler is an interrupt - * // service routine. - * - * // The callback function assigned to the one-shot timer. In this case the - * // parameter is not used. - * void vBacklightTimerCallback( TimerHandle_t pxTimer ) - * { - * // The timer expired, therefore 5 seconds must have passed since a key - * // was pressed. Switch off the LCD back-light. - * vSetBacklightState( BACKLIGHT_OFF ); - * } - * - * // The key press interrupt service routine. - * void vKeyPressEventInterruptHandler( void ) - * { - * BaseType_t xHigherPriorityTaskWoken = pdFALSE; - * - * // Ensure the LCD back-light is on, then restart the timer that is - * // responsible for turning the back-light off after 5 seconds of - * // key inactivity. This is an interrupt service routine so can only - * // call FreeRTOS API functions that end in "FromISR". - * vSetBacklightState( BACKLIGHT_ON ); - * - * // xTimerStartFromISR() or xTimerResetFromISR() could be called here - * // as both cause the timer to re-calculate its expiry time. - * // xHigherPriorityTaskWoken was initialised to pdFALSE when it was - * // declared (in this function). - * if( xTimerStartFromISR( xBacklightTimer, &xHigherPriorityTaskWoken ) != pdPASS ) - * { - * // The start command was not executed successfully. Take appropriate - * // action here. - * } - * - * // Perform the rest of the key processing here. - * - * // If xHigherPriorityTaskWoken equals pdTRUE, then a context switch - * // should be performed. The syntax required to perform a context switch - * // from inside an ISR varies from port to port, and from compiler to - * // compiler. Inspect the demos for the port you are using to find the - * // actual syntax required. - * if( xHigherPriorityTaskWoken != pdFALSE ) - * { - * // Call the interrupt safe yield function here (actual function - * // depends on the FreeRTOS port being used). - * } - * } - * @endverbatim - */ -#define xTimerStartFromISR( xTimer, pxHigherPriorityTaskWoken ) xTimerGenericCommand( ( xTimer ), tmrCOMMAND_START_FROM_ISR, ( xTaskGetTickCountFromISR() ), ( pxHigherPriorityTaskWoken ), 0U ) - -/** - * BaseType_t xTimerStopFromISR( TimerHandle_t xTimer, - * BaseType_t *pxHigherPriorityTaskWoken ); - * - * A version of xTimerStop() that can be called from an interrupt service - * routine. - * - * @param xTimer The handle of the timer being stopped. - * - * @param pxHigherPriorityTaskWoken The timer service/daemon task spends most - * of its time in the Blocked state, waiting for messages to arrive on the timer - * command queue. Calling xTimerStopFromISR() writes a message to the timer - * command queue, so has the potential to transition the timer service/daemon - * task out of the Blocked state. If calling xTimerStopFromISR() causes the - * timer service/daemon task to leave the Blocked state, and the timer service/ - * daemon task has a priority equal to or greater than the currently executing - * task (the task that was interrupted), then *pxHigherPriorityTaskWoken will - * get set to pdTRUE internally within the xTimerStopFromISR() function. If - * xTimerStopFromISR() sets this value to pdTRUE then a context switch should - * be performed before the interrupt exits. - * - * @return pdFAIL will be returned if the stop command could not be sent to - * the timer command queue. pdPASS will be returned if the command was - * successfully sent to the timer command queue. When the command is actually - * processed will depend on the priority of the timer service/daemon task - * relative to other tasks in the system. The timer service/daemon task - * priority is set by the configTIMER_TASK_PRIORITY configuration constant. - * - * Example usage: - * @verbatim - * // This scenario assumes xTimer has already been created and started. When - * // an interrupt occurs, the timer should be simply stopped. - * - * // The interrupt service routine that stops the timer. - * void vAnExampleInterruptServiceRoutine( void ) - * { - * BaseType_t xHigherPriorityTaskWoken = pdFALSE; - * - * // The interrupt has occurred - simply stop the timer. - * // xHigherPriorityTaskWoken was set to pdFALSE where it was defined - * // (within this function). As this is an interrupt service routine, only - * // FreeRTOS API functions that end in "FromISR" can be used. - * if( xTimerStopFromISR( xTimer, &xHigherPriorityTaskWoken ) != pdPASS ) - * { - * // The stop command was not executed successfully. Take appropriate - * // action here. - * } - * - * // If xHigherPriorityTaskWoken equals pdTRUE, then a context switch - * // should be performed. The syntax required to perform a context switch - * // from inside an ISR varies from port to port, and from compiler to - * // compiler. Inspect the demos for the port you are using to find the - * // actual syntax required. - * if( xHigherPriorityTaskWoken != pdFALSE ) - * { - * // Call the interrupt safe yield function here (actual function - * // depends on the FreeRTOS port being used). - * } - * } - * @endverbatim - */ -#define xTimerStopFromISR( xTimer, pxHigherPriorityTaskWoken ) xTimerGenericCommand( ( xTimer ), tmrCOMMAND_STOP_FROM_ISR, 0, ( pxHigherPriorityTaskWoken ), 0U ) - -/** - * BaseType_t xTimerChangePeriodFromISR( TimerHandle_t xTimer, - * TickType_t xNewPeriod, - * BaseType_t *pxHigherPriorityTaskWoken ); - * - * A version of xTimerChangePeriod() that can be called from an interrupt - * service routine. - * - * @param xTimer The handle of the timer that is having its period changed. - * - * @param xNewPeriod The new period for xTimer. Timer periods are specified in - * tick periods, so the constant portTICK_PERIOD_MS can be used to convert a time - * that has been specified in milliseconds. For example, if the timer must - * expire after 100 ticks, then xNewPeriod should be set to 100. Alternatively, - * if the timer must expire after 500ms, then xNewPeriod can be set to - * ( 500 / portTICK_PERIOD_MS ) provided configTICK_RATE_HZ is less than - * or equal to 1000. - * - * @param pxHigherPriorityTaskWoken The timer service/daemon task spends most - * of its time in the Blocked state, waiting for messages to arrive on the timer - * command queue. Calling xTimerChangePeriodFromISR() writes a message to the - * timer command queue, so has the potential to transition the timer service/ - * daemon task out of the Blocked state. If calling xTimerChangePeriodFromISR() - * causes the timer service/daemon task to leave the Blocked state, and the - * timer service/daemon task has a priority equal to or greater than the - * currently executing task (the task that was interrupted), then - * *pxHigherPriorityTaskWoken will get set to pdTRUE internally within the - * xTimerChangePeriodFromISR() function. If xTimerChangePeriodFromISR() sets - * this value to pdTRUE then a context switch should be performed before the - * interrupt exits. - * - * @return pdFAIL will be returned if the command to change the timers period - * could not be sent to the timer command queue. pdPASS will be returned if the - * command was successfully sent to the timer command queue. When the command - * is actually processed will depend on the priority of the timer service/daemon - * task relative to other tasks in the system. The timer service/daemon task - * priority is set by the configTIMER_TASK_PRIORITY configuration constant. - * - * Example usage: - * @verbatim - * // This scenario assumes xTimer has already been created and started. When - * // an interrupt occurs, the period of xTimer should be changed to 500ms. - * - * // The interrupt service routine that changes the period of xTimer. - * void vAnExampleInterruptServiceRoutine( void ) - * { - * BaseType_t xHigherPriorityTaskWoken = pdFALSE; - * - * // The interrupt has occurred - change the period of xTimer to 500ms. - * // xHigherPriorityTaskWoken was set to pdFALSE where it was defined - * // (within this function). As this is an interrupt service routine, only - * // FreeRTOS API functions that end in "FromISR" can be used. - * if( xTimerChangePeriodFromISR( xTimer, &xHigherPriorityTaskWoken ) != pdPASS ) - * { - * // The command to change the timers period was not executed - * // successfully. Take appropriate action here. - * } - * - * // If xHigherPriorityTaskWoken equals pdTRUE, then a context switch - * // should be performed. The syntax required to perform a context switch - * // from inside an ISR varies from port to port, and from compiler to - * // compiler. Inspect the demos for the port you are using to find the - * // actual syntax required. - * if( xHigherPriorityTaskWoken != pdFALSE ) - * { - * // Call the interrupt safe yield function here (actual function - * // depends on the FreeRTOS port being used). - * } - * } - * @endverbatim - */ -#define xTimerChangePeriodFromISR( xTimer, xNewPeriod, pxHigherPriorityTaskWoken ) xTimerGenericCommand( ( xTimer ), tmrCOMMAND_CHANGE_PERIOD_FROM_ISR, ( xNewPeriod ), ( pxHigherPriorityTaskWoken ), 0U ) - -/** - * BaseType_t xTimerResetFromISR( TimerHandle_t xTimer, - * BaseType_t *pxHigherPriorityTaskWoken ); - * - * A version of xTimerReset() that can be called from an interrupt service - * routine. - * - * @param xTimer The handle of the timer that is to be started, reset, or - * restarted. - * - * @param pxHigherPriorityTaskWoken The timer service/daemon task spends most - * of its time in the Blocked state, waiting for messages to arrive on the timer - * command queue. Calling xTimerResetFromISR() writes a message to the timer - * command queue, so has the potential to transition the timer service/daemon - * task out of the Blocked state. If calling xTimerResetFromISR() causes the - * timer service/daemon task to leave the Blocked state, and the timer service/ - * daemon task has a priority equal to or greater than the currently executing - * task (the task that was interrupted), then *pxHigherPriorityTaskWoken will - * get set to pdTRUE internally within the xTimerResetFromISR() function. If - * xTimerResetFromISR() sets this value to pdTRUE then a context switch should - * be performed before the interrupt exits. - * - * @return pdFAIL will be returned if the reset command could not be sent to - * the timer command queue. pdPASS will be returned if the command was - * successfully sent to the timer command queue. When the command is actually - * processed will depend on the priority of the timer service/daemon task - * relative to other tasks in the system, although the timers expiry time is - * relative to when xTimerResetFromISR() is actually called. The timer service/daemon - * task priority is set by the configTIMER_TASK_PRIORITY configuration constant. - * - * Example usage: - * @verbatim - * // This scenario assumes xBacklightTimer has already been created. When a - * // key is pressed, an LCD back-light is switched on. If 5 seconds pass - * // without a key being pressed, then the LCD back-light is switched off. In - * // this case, the timer is a one-shot timer, and unlike the example given for - * // the xTimerReset() function, the key press event handler is an interrupt - * // service routine. - * - * // The callback function assigned to the one-shot timer. In this case the - * // parameter is not used. - * void vBacklightTimerCallback( TimerHandle_t pxTimer ) - * { - * // The timer expired, therefore 5 seconds must have passed since a key - * // was pressed. Switch off the LCD back-light. - * vSetBacklightState( BACKLIGHT_OFF ); - * } - * - * // The key press interrupt service routine. - * void vKeyPressEventInterruptHandler( void ) - * { - * BaseType_t xHigherPriorityTaskWoken = pdFALSE; - * - * // Ensure the LCD back-light is on, then reset the timer that is - * // responsible for turning the back-light off after 5 seconds of - * // key inactivity. This is an interrupt service routine so can only - * // call FreeRTOS API functions that end in "FromISR". - * vSetBacklightState( BACKLIGHT_ON ); - * - * // xTimerStartFromISR() or xTimerResetFromISR() could be called here - * // as both cause the timer to re-calculate its expiry time. - * // xHigherPriorityTaskWoken was initialised to pdFALSE when it was - * // declared (in this function). - * if( xTimerResetFromISR( xBacklightTimer, &xHigherPriorityTaskWoken ) != pdPASS ) - * { - * // The reset command was not executed successfully. Take appropriate - * // action here. - * } - * - * // Perform the rest of the key processing here. - * - * // If xHigherPriorityTaskWoken equals pdTRUE, then a context switch - * // should be performed. The syntax required to perform a context switch - * // from inside an ISR varies from port to port, and from compiler to - * // compiler. Inspect the demos for the port you are using to find the - * // actual syntax required. - * if( xHigherPriorityTaskWoken != pdFALSE ) - * { - * // Call the interrupt safe yield function here (actual function - * // depends on the FreeRTOS port being used). - * } - * } - * @endverbatim - */ -#define xTimerResetFromISR( xTimer, pxHigherPriorityTaskWoken ) xTimerGenericCommand( ( xTimer ), tmrCOMMAND_RESET_FROM_ISR, ( xTaskGetTickCountFromISR() ), ( pxHigherPriorityTaskWoken ), 0U ) - - -/** - * BaseType_t xTimerPendFunctionCallFromISR( PendedFunction_t xFunctionToPend, - * void *pvParameter1, - * uint32_t ulParameter2, - * BaseType_t *pxHigherPriorityTaskWoken ); - * - * - * Used from application interrupt service routines to defer the execution of a - * function to the RTOS daemon task (the timer service task, hence this function - * is implemented in timers.c and is prefixed with 'Timer'). - * - * Ideally an interrupt service routine (ISR) is kept as short as possible, but - * sometimes an ISR either has a lot of processing to do, or needs to perform - * processing that is not deterministic. In these cases - * xTimerPendFunctionCallFromISR() can be used to defer processing of a function - * to the RTOS daemon task. - * - * A mechanism is provided that allows the interrupt to return directly to the - * task that will subsequently execute the pended callback function. This - * allows the callback function to execute contiguously in time with the - * interrupt - just as if the callback had executed in the interrupt itself. - * - * @param xFunctionToPend The function to execute from the timer service/ - * daemon task. The function must conform to the PendedFunction_t - * prototype. - * - * @param pvParameter1 The value of the callback function's first parameter. - * The parameter has a void * type to allow it to be used to pass any type. - * For example, unsigned longs can be cast to a void *, or the void * can be - * used to point to a structure. - * - * @param ulParameter2 The value of the callback function's second parameter. - * - * @param pxHigherPriorityTaskWoken As mentioned above, calling this function - * will result in a message being sent to the timer daemon task. If the - * priority of the timer daemon task (which is set using - * configTIMER_TASK_PRIORITY in FreeRTOSConfig.h) is higher than the priority of - * the currently running task (the task the interrupt interrupted) then - * *pxHigherPriorityTaskWoken will be set to pdTRUE within - * xTimerPendFunctionCallFromISR(), indicating that a context switch should be - * requested before the interrupt exits. For that reason - * *pxHigherPriorityTaskWoken must be initialised to pdFALSE. See the - * example code below. - * - * @return pdPASS is returned if the message was successfully sent to the - * timer daemon task, otherwise pdFALSE is returned. - * - * Example usage: - * @verbatim - * - * // The callback function that will execute in the context of the daemon task. - * // Note callback functions must all use this same prototype. - * void vProcessInterface( void *pvParameter1, uint32_t ulParameter2 ) - * { - * BaseType_t xInterfaceToService; - * - * // The interface that requires servicing is passed in the second - * // parameter. The first parameter is not used in this case. - * xInterfaceToService = ( BaseType_t ) ulParameter2; - * - * // ...Perform the processing here... - * } - * - * // An ISR that receives data packets from multiple interfaces - * void vAnISR( void ) - * { - * BaseType_t xInterfaceToService, xHigherPriorityTaskWoken; - * - * // Query the hardware to determine which interface needs processing. - * xInterfaceToService = prvCheckInterfaces(); - * - * // The actual processing is to be deferred to a task. Request the - * // vProcessInterface() callback function is executed, passing in the - * // number of the interface that needs processing. The interface to - * // service is passed in the second parameter. The first parameter is - * // not used in this case. - * xHigherPriorityTaskWoken = pdFALSE; - * xTimerPendFunctionCallFromISR( vProcessInterface, NULL, ( uint32_t ) xInterfaceToService, &xHigherPriorityTaskWoken ); - * - * // If xHigherPriorityTaskWoken is now set to pdTRUE then a context - * // switch should be requested. The macro used is port specific and will - * // be either portYIELD_FROM_ISR() or portEND_SWITCHING_ISR() - refer to - * // the documentation page for the port being used. - * portYIELD_FROM_ISR( xHigherPriorityTaskWoken ); - * - * } - * @endverbatim - */ -BaseType_t xTimerPendFunctionCallFromISR( PendedFunction_t xFunctionToPend, void *pvParameter1, uint32_t ulParameter2, BaseType_t *pxHigherPriorityTaskWoken ) PRIVILEGED_FUNCTION; - - /** - * BaseType_t xTimerPendFunctionCall( PendedFunction_t xFunctionToPend, - * void *pvParameter1, - * uint32_t ulParameter2, - * TickType_t xTicksToWait ); - * - * - * Used to defer the execution of a function to the RTOS daemon task (the timer - * service task, hence this function is implemented in timers.c and is prefixed - * with 'Timer'). - * - * @param xFunctionToPend The function to execute from the timer service/ - * daemon task. The function must conform to the PendedFunction_t - * prototype. - * - * @param pvParameter1 The value of the callback function's first parameter. - * The parameter has a void * type to allow it to be used to pass any type. - * For example, unsigned longs can be cast to a void *, or the void * can be - * used to point to a structure. - * - * @param ulParameter2 The value of the callback function's second parameter. - * - * @param xTicksToWait Calling this function will result in a message being - * sent to the timer daemon task on a queue. xTicksToWait is the amount of - * time the calling task should remain in the Blocked state (so not using any - * processing time) for space to become available on the timer queue if the - * queue is found to be full. - * - * @return pdPASS is returned if the message was successfully sent to the - * timer daemon task, otherwise pdFALSE is returned. - * - */ -BaseType_t xTimerPendFunctionCall( PendedFunction_t xFunctionToPend, void *pvParameter1, uint32_t ulParameter2, TickType_t xTicksToWait ) PRIVILEGED_FUNCTION; - -/** - * const char * const pcTimerGetName( TimerHandle_t xTimer ); - * - * Returns the name that was assigned to a timer when the timer was created. - * - * @param xTimer The handle of the timer being queried. - * - * @return The name assigned to the timer specified by the xTimer parameter. - */ -const char * pcTimerGetName( TimerHandle_t xTimer ) PRIVILEGED_FUNCTION; /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ - -/** - * void vTimerSetReloadMode( TimerHandle_t xTimer, const UBaseType_t uxAutoReload ); - * - * Updates a timer to be either an auto-reload timer, in which case the timer - * automatically resets itself each time it expires, or a one-shot timer, in - * which case the timer will only expire once unless it is manually restarted. - * - * @param xTimer The handle of the timer being updated. - * - * @param uxAutoReload If uxAutoReload is set to pdTRUE then the timer will - * expire repeatedly with a frequency set by the timer's period (see the - * xTimerPeriodInTicks parameter of the xTimerCreate() API function). If - * uxAutoReload is set to pdFALSE then the timer will be a one-shot timer and - * enter the dormant state after it expires. - */ -void vTimerSetReloadMode( TimerHandle_t xTimer, const UBaseType_t uxAutoReload ) PRIVILEGED_FUNCTION; - -/** -* UBaseType_t uxTimerGetReloadMode( TimerHandle_t xTimer ); -* -* Queries a timer to determine if it is an auto-reload timer, in which case the timer -* automatically resets itself each time it expires, or a one-shot timer, in -* which case the timer will only expire once unless it is manually restarted. -* -* @param xTimer The handle of the timer being queried. -* -* @return If the timer is an auto-reload timer then pdTRUE is returned, otherwise -* pdFALSE is returned. -*/ -UBaseType_t uxTimerGetReloadMode( TimerHandle_t xTimer ) PRIVILEGED_FUNCTION; - -/** - * TickType_t xTimerGetPeriod( TimerHandle_t xTimer ); - * - * Returns the period of a timer. - * - * @param xTimer The handle of the timer being queried. - * - * @return The period of the timer in ticks. - */ -TickType_t xTimerGetPeriod( TimerHandle_t xTimer ) PRIVILEGED_FUNCTION; - -/** -* TickType_t xTimerGetExpiryTime( TimerHandle_t xTimer ); -* -* Returns the time in ticks at which the timer will expire. If this is less -* than the current tick count then the expiry time has overflowed from the -* current time. -* -* @param xTimer The handle of the timer being queried. -* -* @return If the timer is running then the time in ticks at which the timer -* will next expire is returned. If the timer is not running then the return -* value is undefined. -*/ -TickType_t xTimerGetExpiryTime( TimerHandle_t xTimer ) PRIVILEGED_FUNCTION; - -/* - * Functions beyond this part are not part of the public API and are intended - * for use by the kernel only. - */ -BaseType_t xTimerCreateTimerTask( void ) PRIVILEGED_FUNCTION; -BaseType_t xTimerGenericCommand( TimerHandle_t xTimer, const BaseType_t xCommandID, const TickType_t xOptionalValue, BaseType_t * const pxHigherPriorityTaskWoken, const TickType_t xTicksToWait ) PRIVILEGED_FUNCTION; - -#if( configUSE_TRACE_FACILITY == 1 ) - void vTimerSetTimerNumber( TimerHandle_t xTimer, UBaseType_t uxTimerNumber ) PRIVILEGED_FUNCTION; - UBaseType_t uxTimerGetTimerNumber( TimerHandle_t xTimer ) PRIVILEGED_FUNCTION; -#endif - -#ifdef __cplusplus -} -#endif -#endif /* TIMERS_H */ - - - diff --git a/rtos/freertos/abstraction_layer_freertos/include/uart.h b/rtos/freertos/abstraction_layer_freertos/include/uart.h deleted file mode 100644 index e7b84010..00000000 --- a/rtos/freertos/abstraction_layer_freertos/include/uart.h +++ /dev/null @@ -1,437 +0,0 @@ -/* - * Copyright (C) 2018 GreenWaves Technologies - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - - -#ifndef __UART_H__ -#define __UART_H__ - -#include -#include "pmsis_types.h" - -/** - * @ingroup groupDrivers - */ - -/** - * @defgroup UART UART - * - * \brief UART Universal Asynchronous Receiver Transmitter - * - * This API provides support for transferring data between an external UART - * device and the processor running this driver. - * - */ - -/** - * @addtogroup UART - * @{ - */ - -/** - * \struct pi_uart_conf - * - * \brief UART device configuration structure. - * - * This structure is used to pass the desired UART configuration to the runtime - * when opening the device. - */ -struct pi_uart_conf { - uint32_t baudrate_bps; /*!< Required baudrate, in baud per second. */ - uint8_t stop_bit_count; /*!< Number of stop bits, 1 stop bit (default) - or 2 stop bits */ - uint8_t parity_mode; /*!< 1 to activate it, 0 to deactivate it. */ - uint8_t word_size; /*!< Word size, in bits. */ - uint8_t enable_rx; /*!< 1 to activate reception, 0 to deactivate it. */ - uint8_t enable_tx; /*!< 1 to activate transmission, 0 to deactivate it. - */ - uint8_t uart_id; /*!< Uart interface ID. */ - uint8_t use_ctrl_flow; /*!< 1 to activate control flow. */ - uint8_t is_usart; /*!< 1 to activate usart */ -}; - -/** - * \enum pi_uart_stop_bits - * - * \brief Stop bits enum. - */ -enum pi_uart_stop_bits { - PI_UART_STOP_BITS_ONE = 0, /*!< One stop bit. */ - PI_UART_STOP_BITS_TWO = 1 /*!< Two stop bits. */ -}; - -/** - * \enum pi_uart_parity_mode - * - * \brief Parity mode enum. - */ -enum pi_uart_parity_mode { - PI_UART_PARITY_DISABLE = 0, /*!< Disable parity mode. */ - PI_UART_PARITY_ENABLE = 1 /*!< Enable parity mode. */ -}; - -/** - * \enum pi_uart_word_size - * - * \brief Bit length of each word. - */ -enum pi_uart_word_size { - PI_UART_WORD_SIZE_5_BITS = 0, /*!< 5 bits length. */ - PI_UART_WORD_SIZE_6_BITS = 1, /*!< 6 bits length. */ - PI_UART_WORD_SIZE_7_BITS = 2, /*!< 7 bits length. */ - PI_UART_WORD_SIZE_8_BITS = 3 /*!< 8 bits length. */ -}; - - -/** - * \enum pi_uart_ioctl_cmd - * - * \brief UART ioctl commands. - * - * UART ioctl commands to configure, enable device. - */ -enum pi_uart_ioctl_cmd { - /** - * \brief Setup UART device. - * - * Setup UART with given conf. - * The parameter for this command is a struct pi_uart_conf. - * - * \param conf Pointer to struct pi_uart_conf. - */ - PI_UART_IOCTL_CONF_SETUP = 0, - /** - * \brief Abort RX transfers. - * - * Disable RX channel, abort current RX transfert, - * and flush all pending transferts. - * - * \note This function disables reception channel after clearing UDMA - * channels. In order to send again data, the reception channel - * must re-enabled. - */ - PI_UART_IOCTL_ABORT_RX = 1, - /** - * \brief Abort TX transfers. - * - * Disable TX channel, abort current TX transfert, - * and flush all pending transferts. - * - * \note This function disables transmission channel after clearing UDMA - * channels. In order to send again data, the transmission channel - * must re-enabled. - */ - PI_UART_IOCTL_ABORT_TX = 2, - /** - * \brief Enable reception. - * - * This command enables reception on UART device. - */ - PI_UART_IOCTL_ENABLE_RX = 3, - /** - * \brief Enable transmission. - * - * This command enables transmission on UART device. - */ - PI_UART_IOCTL_ENABLE_TX = 4 -}; - -/** - * \brief UART cluster request structure. - * - * This structure is used by the runtime to manage a cluster remote copy with - * the UART. It must be instantiated once for each copy and must be kept - * alive until the copy is finished. It can be instantiated as a normal - * variable, for example as a global variable, a local one on the stack, - * or through a memory allocator. - */ -typedef struct pi_cl_uart_req_s pi_cl_uart_req_t; - -/** - * \brief Initialize a UART configuration with default values. - * - * This function can be called to get default values for all parameters before - * setting some of them. - * The structure containing the configuration must be kept alive until the uart - * device is opened. - * - * \param conf Pointer to the UART configuration. - */ -void pi_uart_conf_init(struct pi_uart_conf *conf); - -/** - * \brief Open a UART device. - * - * This function must be called before the UART device can be used. - * It will do all the needed configuration to make it usable and initialize - * the handle used to refer to this opened device when calling other functions. - * - * \param device Pointer to device structure of the device to open. - * - * \retval 0 If the operation is successfull. - * \retval ERRNO An error code otherwise. - * - * \note This structure is allocated by the called and must be kept alive until - * the device is closed. - */ -int pi_uart_open(struct pi_device *device); - -/** - * \brief Close an opened UART device. - * - * This function can be called to close an opened UART device once it is - * not needed anymore, in order to free all allocated resources. Once this - * function is called, the device is not accessible anymore and must be opened - * again before being used. - * - * \param device Pointer to device structure of the device to close. - */ -void pi_uart_close(struct pi_device *device); - -/** - * \brief Dynamically change device configuration. - * - * This function allows to send different commands to UART device. - * The commands are listed above, cf. enum pi_uart_ioctl_cmd. - * - * \param device Pointer to device descriptor of the UART device. - * \param cmd Ioctl command. - * \param arg Ioctl command args. - * - * \retval -1 If wrong ioctl command. - * \retval Value Otherwise return value depending on ioctl command. - */ -int pi_uart_ioctl(struct pi_device *device, uint32_t cmd, void *arg); - -/** - * \brief Write data to an UART. - * - * This writes data to the specified UART. - * The caller is blocked until the transfer is finished. - * Depending on the chip, there may be some restrictions on the memory which - * can be used. Check the chip-specific documentation for more details. - * - * \param device Pointer to device descriptor of the UART device. - * \param buffer Pointer to data buffer. - * \param size Size of data to copy in bytes. - * - * \retval 0 If operation is successfull. - * \retval ERRNO An error code otherwise. - */ -int pi_uart_write(struct pi_device *device, void *buffer, uint32_t size); - -/** - * \brief Read data from an UART. - * - * This reads data from the specified UART. - * The caller is blocked until the transfer is finished. - * Depending on the chip, there may be some restrictions on the memory which - * can be used. Check the chip-specific documentation for more details. - * - * \param device Pointer to device descriptor of the UART device. - * \param buffer Pointer to data buffer. - * \param size Size of data to copy in bytes. - * - * \retval 0 If operation is successfull. - * \retval ERRNO An error code otherwise. - */ -int pi_uart_read(struct pi_device *device, void *buffer, uint32_t size); - -/** - * \brief Write a byte to an UART. - * - * This writes a byte to the specified UART. - * The caller is blocked until the transfer is finished. - * - * \param device Pointer to device descriptor of the UART device. - * \param byte Pointer to data buffer. - * - * \retval 0 If operation is successfull. - * \retval ERRNO An error code otherwise. - */ -int pi_uart_write_byte(struct pi_device *device, uint8_t *byte); - -/** - * \brief Read a byte from an UART. - * - * This reads a byte from the specified UART. - * The caller is blocked until the transfer is finished. - * - * \param device Pointer to device descriptor of the UART device. - * \param byte Pointer to data buffer. - * - * \retval 0 If operation is successfull. - * \retval ERRNO An error code otherwise. - */ -int pi_uart_read_byte(struct pi_device *device, uint8_t *byte); - -/** - * \brief Write data to an UART asynchronously. - * - * This writes data to the specified UART asynchronously. - * A task must be specified in order to specify how the caller should be - * notified when the transfer is finished. - * Depending on the chip, there may be some restrictions on the memory which - * can be used. Check the chip-specific documentation for more details. - * - * \param device Pointer to device descriptor of the UART device. - * \param buffer Pointer to data buffer. - * \param size Size of data to copy in bytes. - * \param callback Event task used to notify the end of transfer. See the - * documentation of pi_task_t for more details. - * - * \retval 0 If operation is successfull. - * \retval ERRNO An error code otherwise. - */ -int pi_uart_write_async(struct pi_device *device, void *buffer, uint32_t size, - pi_task_t *callback); - -/** - * \brief Read data from an UART asynchronously. - * - * This reads data from the specified UART asynchronously. - * A task must be specified in order to specify how the caller should be - * notified when the transfer is finished. - * Depending on the chip, there may be some restrictions on the memory which - * can be used. Check the chip-specific documentation for more details. - * - * \param device Pointer to device descriptor of the UART device. - * \param buffer Pointer to data buffer. - * \param size Size of data to copy in bytes. - * \param callback Event task used to notify the end of transfer. See the - * documentation of pi_task_t for more details. - * - * \retval 0 If operation is successfull. - * \retval ERRNO An error code otherwise. - */ -int pi_uart_read_async(struct pi_device *device, void *buffer, uint32_t size, - pi_task_t *callback); - -/** - * \brief Write a byte to an UART asynchronously. - * - * This writes a byte to the specified UART asynchronously. - * A task must be specified in order to specify how the caller should be - * notified when the transfer is finished. - * - * \param device Pointer to device descriptor of the UART device. - * \param byte Pointer to data buffer. - * \param callback Event task used to notify the end of transfer. See the - * documentation of pi_task_t for more details. - * - * \retval 0 If operation is successfull. - * \retval ERRNO An error code otherwise. - */ -int pi_uart_write_byte_async(struct pi_device *device, uint8_t *byte, - pi_task_t *callback); - - -/** - * \brief Write data to an UART from cluster side. - * - * This function implements the same feature as pi_uart_write but can be called - * from cluster side in order to expose the feature on the cluster. - * A pointer to a request structure must be provided so that the runtime can - * properly do the remote call. - * - * \param device Pointer to device descriptor of the UART device. - * \param buffer Pointer to data buffer. - * \param size Size of data to copy in bytes. - * \param req Request structure used for termination. - * - * \retval 0 If operation is successfull. - * \retval ERRNO An error code otherwise. - */ -int pi_cl_uart_write(pi_device_t *device, void *buffer, uint32_t size, - pi_cl_uart_req_t *req); - -/** - * \brief Write a byte to an UART from cluster side. - * - * This function implements the same feature as pi_uart_write_byte but can be - * called from cluster side in order to expose the feature on the cluster. - * A pointer to a request structure must be provided so that the runtime can - * properly do the remote call. - * - * \param device Pointer to device descriptor of the UART device. - * \param byte Pointer to data buffer. - * \param req Request structure used for termination. - * - * \retval 0 If operation is successfull. - * \retval ERRNO An error code otherwise. - */ -int pi_cl_uart_write_byte(pi_device_t *device, uint8_t *byte, - pi_cl_uart_req_t *req); - -/** - * \brief Wait until the specified UART cluster write request has finished. - * - * This blocks the calling core until the specified cluster remote copy is - * finished. - * - * \param req Request structure used for termination. - */ -static inline void pi_cl_uart_write_wait(pi_cl_uart_req_t *req); - -/** - * \brief Read a byte from an UART from cluster side. - * - * This function implements the same feature as pi_uart_read_byte but can be - * called from cluster side in order to expose the feature on the cluster. - * A pointer to a request structure must be provided so that the runtime can - * properly do the remote call. - * - * \param device Pointer to device descriptor of the UART device. - * \param buffer Pointer to data buffer. - * \param size Size of data to copy in bytes. - * \param req Request structure used for termination. - * - * \retval 0 If operation is successfull. - * \retval ERRNO An error code otherwise. - */ -int pi_cl_uart_read(pi_device_t *device, void *buffer, uint32_t size, - pi_cl_uart_req_t *req); - -/** - * \brief Read a byte from an UART. - * - * This reads a byte from the specified UART. - * The caller is blocked until the transfer is finished. - * - * \param device Pointer to device descriptor of the UART device. - * \param byte Pointer to data buffer. - * \param req Request structure used for termination. - * - * \retval 0 If operation is successfull. - * \retval ERRNO An error code otherwise. - */ -int pi_cl_uart_read_byte(pi_device_t *device, uint8_t *byte, - pi_cl_uart_req_t *req); - -/** - * \brief Wait until the specified UART cluster read request has finished. - * - * This blocks the calling core until the specified cluster remote copy is - * finished. - * - * \param req Request structure used for termination. - */ -static inline void pi_cl_uart_read_wait(pi_cl_uart_req_t *req); - -/** - * @} - */ - -#endif /* __UART_H__ */ diff --git a/rtos/freertos/abstraction_layer_freertos/include/uart_periph.h b/rtos/freertos/abstraction_layer_freertos/include/uart_periph.h deleted file mode 100644 index a9e1b3a7..00000000 --- a/rtos/freertos/abstraction_layer_freertos/include/uart_periph.h +++ /dev/null @@ -1,140 +0,0 @@ -/* THIS FILE HAS BEEN GENERATED, DO NOT MODIFY IT. */ -/* - * Copyright (C) 2019 ETH Zurich, University of Bologna - * and GreenWaves Technologies - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifndef __UART_PERIPH_H__ -#define __UART_PERIPH_H__ - -#include "udma.h" - -/** UART_Type Register Layout Typedef */ -typedef struct { - udma_channel_t rx; /**< UDMA RX channels struct. */ - udma_channel_t tx; /**< UDMA TX channels struct. */ - volatile uint32_t status; /**< Status register */ - volatile uint32_t setup; /**< Configuration register */ -} uart_t; - - -/*! @name STATUS */ -/* TX busy status flag */ -#define UART_STATUS_TX_BUSY_MASK (0x1) -#define UART_STATUS_TX_BUSY_SHIFT (0) - -/* RX busy status flag */ -#define UART_STATUS_RX_BUSY_MASK (0x2) -#define UART_STATUS_RX_BUSY_SHIFT (1) - -/* RX parity error status flag */ -#define UART_STATUS_RX_PE_MASK (0x4) -#define UART_STATUS_RX_PE_SHIFT (2) - - -/*! @name SETUP */ -/* Set parity generation and check: - - 1'b0: disable - - 1'b1: enable */ -#define UART_SETUP_PARITY_ENA_MASK (0x1) -#define UART_SETUP_PARITY_ENA_SHIFT (0) - -/* Set character length: - - 2'b00: 5 bits - - 2'b01: 6 bits - - 2'b10: 7 bits - - 2'b11: 8 bits */ -#define UART_SETUP_BIT_LENGTH_MASK (0x6) -#define UART_SETUP_BIT_LENGTH_SHIFT (1) - -/* Set stop bits length: - - 2'b0: 1 stop bit - - 2'b1: 2 stop bits */ -#define UART_SETUP_STOP_BITS_MASK (0x8) -#define UART_SETUP_STOP_BITS_SHIFT (3) - -/* Set polling mode: - - 1'b0: disable - - 1'b1: Enable polling data transfer. Wait until valid register signals ok, - then read data register. Valid register automatically cleared after read.*/ -#define UART_SETUP_POLLING_EN_MASK (0x10) -#define UART_SETUP_POLLING_EN_SHIFT (4) - -/* Set clean fifo mode: - - 1'b0: disable - - 1'b1: clean the rx fifo */ -#define UART_SETUP_CLEAN_FIFO_MASK (0x20) -#define UART_SETUP_CLEAN_FIFO_SHIFT (5) - -/* Set TX transceiver state: - - 1'b0: disable - - 1'b1: enable */ -#define UART_SETUP_TX_ENA_MASK (0x100) -#define UART_SETUP_TX_ENA_SHIFT (8) - -/* Set RX transceiver state: - - 1'b0: disable - - 1'b1: enable */ -#define UART_SETUP_RX_ENA_MASK (0x200) -#define UART_SETUP_RX_ENA_SHIFT (9) - -/* Sets the clock divider ratio for the baud rate generator. */ -#define UART_SETUP_CLKDIV_MASK (0xffff0000) -#define UART_SETUP_CLKDIV_SHIFT (16) - -/*! @name ERROR register */ - -/* Reports overflow error: - - 1'b0: no error - - 1'b1: rx overflow error */ -#define UART_ERROR_RX_ERR_OVERFLOW_MASK (0x1) -#define UART_ERROR_RX_ERR_OVERFLOW_SHIFT (0) - -/* Reports parity error: - - 1'b0: no error - - 1'b1: rx parity error */ -#define UART_ERROR_RX_ERR_PARITY_MASK (0x2) -#define UART_ERROR_RX_ERR_PARITY_SHIFT (1) - -/*! @name IRQ_EN register */ - -/* Rx interrupt in enable flag: - - 1’b0: RX IRQ disable - - 1’b1: RX IRQ enable */ -#define UART_IRQ_EN_RX_MASK (0x1) -#define UART_IRQ_EN_RX_SHIFT (0) - -/* Error interrupt in enable flag: - - 1’b0: Error IRQ disable - - 1’b1: Error IRQ enable*/ -#define UART_IRQ_EN_ERROR_MASK (0x2) -#define UART_IRQ_EN_ERROR_SHIFT (1) - -/*! @name READY register */ - -/* Used only in RX polling method to indicate data is ready for read: - - 1’b0: Data is not ready to read - - 1’b1: Data is ready to read */ -#define UART_VALID_READY_MASK (0x1) -#define UART_VALID_READY_SHIFT (0) - -/* RX read data for polling or interrupt */ -#define UART_DATA_MASK (0xff) -#define UART_DATA_SHIFT (0) - - -#define uart(id) ((uart_t *)UDMA_UART(id)) - -#endif /* __UART_PERIPH_H__ */ diff --git a/rtos/freertos/abstraction_layer_freertos/include/udma.h b/rtos/freertos/abstraction_layer_freertos/include/udma.h deleted file mode 100644 index c0d7571d..00000000 --- a/rtos/freertos/abstraction_layer_freertos/include/udma.h +++ /dev/null @@ -1,229 +0,0 @@ -/* - * Copyright (C) 2019 ETH Zurich, University of Bologna - * and GreenWaves Technologies - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifndef __UDMA_H__ -#define __UDMA_H__ - -#include - -/** UDMA_CORE_Type Register Layout Typedef */ -/* TODO: refactor this really not good code */ -typedef struct { - volatile uint32_t saddr; /**< RX/TX/CMD Channel uDMA transfer address of - associated buffer */ - volatile uint32_t size; /**< RX/TX/CMD Channel uDMA transfer size of - buffer */ - volatile uint32_t cfg; /**< RX/TX/CMD Channel uDMA transfer - configuration */ - volatile uint32_t initcfg; /**< Not used. */ -} udma_channel_t; - - -typedef enum { - RX_CHANNEL = 0, - TX_CHANNEL = 1, - COMMAND_CHANNEL = 2 -} udma_channel_e; - - -/**< Offset for RX part */ -#define UDMA_CHANNEL_RX_OFFSET 0x00 - -/**< Offset for TX part */ -#define UDMA_CHANNEL_TX_OFFSET 0x10 - -/**< Offset for peripheral specific part */ -#define UDMA_CHANNEL_CUSTOM_OFFSET 0x20 - -/**< RX/TX/CMD Channel uDMA transfer address of associated buffer */ -#define UDMA_CHANNEL_SADDR_OFFSET (0x0) - -/**< RX/TX/CMD Channel uDMA transfer size of buffer */ -#define UDMA_CHANNEL_SIZE_OFFSET (0x4) - -/**< RX/TX/CMD Channel uDMA transfer configuration */ -#define UDMA_CHANNEL_CFG_OFFSET (0x8) - -/**< Not used. */ -#define UDMA_CHANNEL_INTCFG_OFFSET (0xC) - - -/*! @name RX_SADDR */ -/* Configure pointer to memory buffer: - - Read: value of the pointer until transfer is over. Else returns 0 - - Write: set Address Pointer to memory buffer start address */ -#define UDMA_CORE_RX_SADDR_RX_SADDR_MASK (0x1fffff) -#define UDMA_CORE_RX_SADDR_RX_SADDR_SHIFT (0) - -/* Reserved/Not used. */ -#define UDMA_CORE_RX_SADDR_RESERVED_0_MASK (0xffe00000) -#define UDMA_CORE_RX_SADDR_RESERVED_0_SHIFT (21) - - -/*! @name RX_SIZE */ -/* Buffer size in byte. (128kBytes maximum) - - Read: buffer size left - - Write: set buffer size */ -#define UDMA_CORE_RX_SIZE_RX_SIZE_MASK (0xfffff) -#define UDMA_CORE_RX_SIZE_RX_SIZE_SHIFT (0) - -/* Reserved/Not used. */ -#define UDMA_CORE_RX_SIZE_RESERVED_0_MASK (0xfff00000) -#define UDMA_CORE_RX_SIZE_RESERVED_0_SHIFT (20) - - -/*! @name RX_CFG */ -/* Channel continuous mode: - - 1'b0: disable - - 1'b1: enable - At the end of the buffer the uDMA reloads the address and size and starts a - new transfer. */ -#define UDMA_CORE_RX_CFG_CONTINOUS_MASK (0x1) -#define UDMA_CORE_RX_CFG_CONTINOUS_SHIFT (0) - -/* Channel transfer size used to increment uDMA buffer address pointer: - - 2'b00: +1 (8 bits) - - 2'b01: +2 (16 bits) - - 2'b10: +4 (32 bits) - - 2'b11: +0 */ -#define UDMA_CORE_RX_CFG_DATASIZE_MASK (0x6) -#define UDMA_CORE_RX_CFG_DATASIZE_SHIFT (1) - -/* Reserved/Not used. */ -#define UDMA_CORE_RX_CFG_RESERVED_0_MASK (0x8) -#define UDMA_CORE_RX_CFG_RESERVED_0_SHIFT (3) - -/* Channel enable and start transfer: - - 1'b0: disable - - 1'b1: enable - This signal is used also to queue a transfer if one is already ongoing. */ -#define UDMA_CORE_RX_CFG_EN_MASK (0x10) -#define UDMA_CORE_RX_CFG_EN_SHIFT (4) - -/* Transfer pending in queue status flag: - - 1'b0: no pending transfer in the queue - - 1'b1: pending transfer in the queue */ -#define UDMA_CORE_RX_CFG_PENDING_MASK (0x20) -#define UDMA_CORE_RX_CFG_PENDING_SHIFT (5) - -/* Channel clear and stop transfer: - - 1'b0: disable - - 1'b1: stop and clear the on-going transfer */ -#define UDMA_CORE_RX_CFG_CLR_MASK (0x40) -#define UDMA_CORE_RX_CFG_CLR_SHIFT (6) - -/* Reserved/Not used. */ -#define UDMA_CORE_RX_CFG_RESERVED_1_MASK (0xffffff80) -#define UDMA_CORE_RX_CFG_RESERVED_1_SHIFT (7) - - -/*! @name RX_INITCFG */ -/* Reserved/Not used. */ -#define UDMA_CORE_RX_INITCFG_RESERVED_0_MASK (0xffffffff) -#define UDMA_CORE_RX_INITCFG_RESERVED_0_SHIFT (0) - - -/*! @name TX_SADDR */ -/* Configure pointer to memory buffer: - - Read: value of the pointer until transfer is over. Else returns 0 - - Write: set Address Pointer to memory buffer start address */ -#define UDMA_CORE_TX_SADDR_TX_SADDR_MASK (0x1fffff) -#define UDMA_CORE_TX_SADDR_TX_SADDR_SHIFT (0) - -/* Reserved/Not used. */ -#define UDMA_CORE_TX_SADDR_RESERVED_0_MASK (0xffe00000) -#define UDMA_CORE_TX_SADDR_RESERVED_0_SHIFT (21) - - -/*! @name TX_SIZE */ -/* Buffer size in byte. (128kBytes maximum) - - Read: buffer size left - - Write: set buffer size */ -#define UDMA_CORE_TX_SIZE_TX_SIZE_MASK (0xfffff) -#define UDMA_CORE_TX_SIZE_TX_SIZE_SHIFT (0) - -/* Reserved/Not used. */ -#define UDMA_CORE_TX_SIZE_RESERVED_0_MASK (0xfff00000) -#define UDMA_CORE_TX_SIZE_RESERVED_0_SHIFT (20) - - -/*! @name TX_CFG */ -/* Channel continuous mode: - - 1'b0: disable - - 1'b1: enable - At the end of the buffer the uDMA reloads the address and size and starts a - new transfer. */ -#define UDMA_CORE_TX_CFG_CONTINOUS_MASK (0x1) -#define UDMA_CORE_TX_CFG_CONTINOUS_SHIFT (0) - -/* Channel transfer size used to increment uDMA buffer address pointer: - - 2'b00: +1 (8 bits) - - 2'b01: +2 (16 bits) - - 2'b10: +4 (32 bits) - - 2'b11: +0 */ -#define UDMA_CORE_TX_CFG_DATASIZE_MASK (0x6) -#define UDMA_CORE_TX_CFG_DATASIZE_SHIFT (1) - -/* Reserved/Not used. */ -#define UDMA_CORE_TX_CFG_RESERVED_0_MASK (0x8) -#define UDMA_CORE_TX_CFG_RESERVED_0_SHIFT (3) - -/* Channel enable and start transfer: - - 1'b0: disable - - 1'b1: enable - This signal is used also to queue a transfer if one is already ongoing. */ -#define UDMA_CORE_TX_CFG_EN_MASK (0x10) -#define UDMA_CORE_TX_CFG_EN_SHIFT (4) - -/* Transfer pending in queue status flag: - - 1'b0: no pending transfer in the queue - - 1'b1: pending transfer in the queue */ -#define UDMA_CORE_TX_CFG_PENDING_MASK (0x20) -#define UDMA_CORE_TX_CFG_PENDING_SHIFT (5) - -/* Channel clear and stop transfer: - - 1'b0: disable - - 1'b1: stop and clear the on-going transfer */ -#define UDMA_CORE_TX_CFG_CLR_MASK (0x40) -#define UDMA_CORE_TX_CFG_CLR_SHIFT (6) - -/* Reserved/Not used. */ -#define UDMA_CORE_TX_CFG_RESERVED_1_MASK (0xffffff80) -#define UDMA_CORE_TX_CFG_RESERVED_1_SHIFT (7) - -/*! @name TX_INITCFG */ -/* Reserved/Not used. */ -#define UDMA_CORE_TX_INITCFG_RESERVED_0_MASK (0xffffffff) -#define UDMA_CORE_TX_INITCFG_RESERVED_0_SHIFT (0) - - -#define UDMA_CORE_CFG_DATASIZE_8 (0x0) -#define UDMA_CORE_CFG_DATASIZE_16 (0x1) -#define UDMA_CORE_CFG_DATASIZE_32 (0x2) - -/* TODO: remove this legacy glue code */ -#define UDMA_CORE_TX_CFG_EN(val) \ - (((uint32_t)(((uint32_t)(val)) << UDMA_CORE_TX_CFG_EN_SHIFT)) & \ - UDMA_CORE_TX_CFG_EN_MASK) -#define UDMA_CORE_TX_CFG_DATASIZE(val) \ - (((uint32_t)(((uint32_t)(val)) << UDMA_CORE_TX_CFG_DATASIZE_SHIFT)) & \ - UDMA_CORE_TX_CFG_DATASIZE_MASK) -#define UDMA_CORE_RX_CFG_EN(val) \ - (((uint32_t)(((uint32_t)(val)) << UDMA_CORE_RX_CFG_EN_SHIFT)) & \ - UDMA_CORE_RX_CFG_EN_MASK) - -#endif /* __UDMA_H__ */ diff --git a/rtos/freertos/abstraction_layer_freertos/include/udma_core.h b/rtos/freertos/abstraction_layer_freertos/include/udma_core.h deleted file mode 100644 index 67f50f98..00000000 --- a/rtos/freertos/abstraction_layer_freertos/include/udma_core.h +++ /dev/null @@ -1,63 +0,0 @@ -/* - * Copyright 2020 GreenWaves Technologies - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * SPDX-License-Identifier: Apache-2.0 - */ - -#ifndef __UDMA_CORE_H__ -#define __UDMA_CORE_H__ - -/** - * Small low level driver for udma core main functionnalities - */ - -#include "target.h" -#include "udma.h" -#include "udma_ctrl.h" - -#define UDMA_MAX_SIZE_LOG2 (17) -#define UDMA_MAX_SIZE (1 << UDMA_MAX_SIZE_LOG2) - - -static inline void udma_init_device(uint32_t device_id) -{ - /* disable clock gating for device with device_id */ - udma_ctrl_cg_disable(device_id); -} - -/* - * Common uDMA channel enqueue - */ -static inline void udma_enqueue_channel(udma_channel_t *chan, uint32_t addr, - uint32_t size, uint32_t config) -{ - hal_write32(&chan->saddr, addr); - hal_write32(&chan->size, size); - hal_write32(&chan->cfg, config); -} - -static inline void udma_channel_clear(udma_channel_t *chan) -{ - /* TODO: adjust macro */ - hal_write32(&(chan->cfg), REG_SET(UDMA_CORE_RX_CFG_CLR, 1)); -} - -static inline void udma_deinit_device(uint32_t device_id) -{ - /* enable clock gating for device with device_id */ - udma_ctrl_cg_enable(device_id); -} - -#endif /* __UDMA_CORE_H__ */ diff --git a/rtos/freertos/abstraction_layer_freertos/include/udma_ctrl.h b/rtos/freertos/abstraction_layer_freertos/include/udma_ctrl.h deleted file mode 100644 index 82ef3613..00000000 --- a/rtos/freertos/abstraction_layer_freertos/include/udma_ctrl.h +++ /dev/null @@ -1,108 +0,0 @@ -/* - * Copyright 2020 GreenWaves Technologies - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * SPDX-License-Identifier: Apache-2.0 - */ - -#ifndef __UDMA_CTRL_H__ -#define __UDMA_CTRL_H__ - -/** - * Small low level driver for ctrl side of udma (cg and event forward) - */ - -#include "target.h" -#include "memory_map.h" -#include "soc_eu.h" -#include "bits.h" - -/** UDMA Global configuration - Register Layout Typedef */ -typedef struct { - volatile uint32_t CG; /**< UDMA_GC clock gating register, offset: 0x0 */ - volatile uint32_t EVTIN; /**< UDMA_GC input event register, offset: 0x04 - */ -} udma_gc_t; - - -/*! @name UDMA_GC - UDMA event in register, User chooses which events can come - * to UDMA as reference events, support up to 4 choices */ -#define UDMA_GC_EVTIN_CHOICE0_MASK (0xFFU) -#define UDMA_GC_EVTIN_CHOICE0_SHIFT (0U) - -#define UDMA_GC_EVTIN_CHOICE1_MASK (0xFF00U) -#define UDMA_GC_EVTIN_CHOICE1_SHIFT (8U) - -#define UDMA_GC_EVTIN_CHOICE2_MASK (0xFF0000U) -#define UDMA_GC_EVTIN_CHOICE2_SHIFT (16U) - -#define UDMA_GC_EVTIN_CHOICE3_MASK (0xFF000000) -#define UDMA_GC_EVTIN_CHOICE3_SHIFT (24U) - -#define UDMA_GC_EVTIN_MASK(evt_in) (evt_in & 0xFF) -#define UDMA_GC_EVTIN_SHIFT_ID(id) (id * 8) - - -/* UDMA Global configuration - instance base addresses */ -/** Global configuration UDMA base address */ -#define UDMA_GC_BASE (UDMA_CTRL_ADDR) -#define UDMA_GC ((udma_gc_t *)UDMA_GC_BASE) - - -static inline uint32_t udma_ctrl_get_clock_gating_register(void) -{ - return hal_read32(&UDMA_GC->CG); -} - -static inline uint32_t udma_ctrl_get_event_register(void) -{ - return hal_read32(&UDMA_GC->EVTIN); -} - -static inline void udma_ctrl_cg_disable(uint32_t udma_device_id) -{ - hal_or32(&UDMA_GC->CG, 1 << udma_device_id); -} - -static inline void udma_ctrl_cg_enable(uint32_t udma_device_id) -{ - hal_and32(&UDMA_GC->CG, ~(1 << udma_device_id)); -} - -static inline void udma_ctrl_enable_event_forward(uint8_t udma_evt_nb, - uint32_t event_id) -{ - /* clear current event */ - hal_and32(&UDMA_GC->EVTIN, ~(UDMA_GC_EVTIN_MASK(0xFF) - << UDMA_GC_EVTIN_SHIFT_ID(udma_evt_nb))); - /* set new event */ - hal_or32(&UDMA_GC->EVTIN, (UDMA_GC_EVTIN_MASK(event_id) - << UDMA_GC_EVTIN_SHIFT_ID(udma_evt_nb))); - - /* tell soc eu to forward us the event */ - hal_soc_eu_set_pr_mask(event_id); -} - -static inline void udma_ctrl_disable_event_forward(uint8_t udma_evt_nb, - uint32_t event_id) -{ - /* clear event from udma forward */ - hal_and32(&UDMA_GC->EVTIN, ~(UDMA_GC_EVTIN_MASK(0xFF) - << UDMA_GC_EVTIN_SHIFT_ID(udma_evt_nb))); - - /* tell soc eu to stop forwarding us the event */ - hal_soc_eu_clear_pr_mask(event_id); -} - -#endif /* __UDMA_CTRL_H__ */ diff --git a/rtos/freertos/abstraction_layer_freertos/include/udma_i2c.h b/rtos/freertos/abstraction_layer_freertos/include/udma_i2c.h deleted file mode 100644 index 4378aaae..00000000 --- a/rtos/freertos/abstraction_layer_freertos/include/udma_i2c.h +++ /dev/null @@ -1,134 +0,0 @@ -/* - * Copyright (C) 2018 ETH Zurich and University of Bologna - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifndef __ARCHI_UDMA_UDMA_I2C_V2_H__ -#define __ARCHI_UDMA_UDMA_I2C_V2_H__ - -#include "target.h" -#include "udma_core.h" -#include "i2c_periph.h" - -/* I2C command IDS definition */ -#define I2C_CMD_OFFSET 4 -#define I2C_CMD_START (0x0 << I2C_CMD_OFFSET) -#define I2C_CMD_STOP (0x2 << I2C_CMD_OFFSET) -#define I2C_CMD_RD_ACK (0x4 << I2C_CMD_OFFSET) -#define I2C_CMD_RD_NACK (0x6 << I2C_CMD_OFFSET) -#define I2C_CMD_WR (0x8 << I2C_CMD_OFFSET) -#define I2C_CMD_WAIT (0xA << I2C_CMD_OFFSET) -#define I2C_CMD_RPT (0xC << I2C_CMD_OFFSET) -#define I2C_CMD_CFG (0xE << I2C_CMD_OFFSET) -#define I2C_CMD_WAIT_EV (0x1 << I2C_CMD_OFFSET) -#define I2C_CMD_EOT (0x9 << I2C_CMD_OFFSET) - - -#define I2C(id) ((i2c_t *) UDMA_I2C(id)) - -/* I2C udma configuration. */ -static inline void i2c_udma_channel_set(uint32_t device_id, udma_channel_e channel, uint32_t l2buf, - uint32_t size, uint32_t cfg) -{ - switch(channel) - { - case(RX_CHANNEL): - udma_enqueue_channel(&(I2C(device_id)->rx), l2buf, size, cfg); - break; - case(TX_CHANNEL): - udma_enqueue_channel(&(I2C(device_id)->tx), l2buf, size, cfg); - break; - } -} - - -/* Status register. */ -static inline void i2c_status_set(uint32_t device_id, uint32_t status) -{ - hal_write32(&(I2C(device_id)->status), status); -} - -static inline uint32_t i2c_status_get(uint32_t device_id) -{ - return hal_read32(&(I2C(device_id)->status)); -} - - -/* Setup register. */ -static inline void i2c_setup_set(uint32_t device_id, uint32_t setup) -{ - hal_write32(&(I2C(device_id)->setup), setup); -} - -static inline uint32_t i2c_setup_get(uint32_t device_id) -{ - return hal_read32(&(I2C(device_id)->setup)); -} - -#ifdef CONFIG_UDMA_I2C_ACK -/* NACK register. */ -static inline void i2c_ack_set(uint32_t device_id, uint32_t val) -{ - hal_write32(&(I2C(device_id)->ack), val); -} - -static inline uint32_t i2c_ack_get(uint32_t device_id) -{ - return hal_read32(&(I2C(device_id)->ack)); -} -#endif - -/*! STATUS. */ -/* i2c busy check. */ -static inline uint32_t hal_i2c_busy_get(uint32_t device_id) -{ - return (i2c_status_get(device_id) & I2C_STATUS_BUSY_MASK); -} - -/* Enable arbitration lost error. */ -static inline void hal_i2c_arbitration_set(uint32_t device_id, uint8_t value) -{ - i2c_status_set(device_id, (i2c_status_get(device_id) & ~I2C_STATUS_ARB_LOST_MASK) | - I2C_STATUS_ARB_LOST(value)); -} - -static inline uint32_t hal_i2c_arbitration_get(uint32_t device_id) -{ - uint32_t status = i2c_status_get(device_id); - return ((status & I2C_STATUS_ARB_LOST_MASK) >> I2C_STATUS_ARB_LOST_SHIFT); -} - - -/*! SETUP. */ -/* Abort/Reset on-going transfer & clear busy & arbitration flags. */ -static inline void hal_i2c_reset_set(uint32_t device_id, uint8_t value) -{ - i2c_setup_set(device_id, I2C_SETUP_DO_RST(value)); -} - -static inline uint32_t hal_i2c_do_reset_get(uint32_t device_id) -{ - return i2c_setup_get(device_id) & ~I2C_SETUP_DO_RST_MASK; -} - - -/*! UDMA. */ -/* Enqueue transfer on UDMA channels. */ -static inline void hal_i2c_enqueue(uint32_t device_id, uint32_t channel, uint32_t l2buf, - uint32_t size, uint32_t cfg) -{ - /* Enqueue l2 buffer & start transfer. */ - i2c_udma_channel_set(device_id, channel, l2buf, size, cfg); -} -#endif diff --git a/rtos/freertos/abstraction_layer_freertos/include/udma_spim.h b/rtos/freertos/abstraction_layer_freertos/include/udma_spim.h deleted file mode 100644 index 090dd6b3..00000000 --- a/rtos/freertos/abstraction_layer_freertos/include/udma_spim.h +++ /dev/null @@ -1,51 +0,0 @@ -/* - * Copyright 2020 GreenWaves Technologies - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * SPDX-License-Identifier: Apache-2.0 - */ - -/** - * Defines/types and small low level driver for udma spim main functionnalities - */ - -#ifndef __UDMA_SPIM_H__ -#define __UDMA_SPIM_H__ - -#include "target.h" -#include "spi_periph.h" -#include "udma_core.h" - -#define SPIM(id) ((spi_t *) UDMA_SPIM(id)) - -static inline void spim_enqueue_channel(spi_t *spim, uint32_t addr, - uint32_t size, uint32_t config, udma_channel_e channel) -{ - switch(channel) - { - case(RX_CHANNEL): - udma_enqueue_channel(&(spim->rx), addr, size, config); - break; - case(TX_CHANNEL): - udma_enqueue_channel(&(spim->tx), addr, size, config); - break; - case(COMMAND_CHANNEL): - udma_enqueue_channel(&(spim->cmd), addr, size, config); - break; - default: - break; - } -} - -#endif diff --git a/rtos/freertos/abstraction_layer_freertos/include/udma_uart.h b/rtos/freertos/abstraction_layer_freertos/include/udma_uart.h deleted file mode 100644 index ad4fe0f7..00000000 --- a/rtos/freertos/abstraction_layer_freertos/include/udma_uart.h +++ /dev/null @@ -1,197 +0,0 @@ -/* - * Copyright 2020 GreenWaves Technologies - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * SPDX-License-Identifier: Apache-2.0 - */ - -#ifndef __UDMA_UART_H__ -#define __UDMA_UART_H__ - -#include "target.h" -#include "uart_periph.h" -#include "udma_core.h" -#include "udma_ctrl.h" -#include "bits.h" - -/* - * pi_task: - * data[0] = l2_buf - * data[1] = size - * data[2] = channel - * data[3] = repeat_size - * data[4] = device_id (used for delegation) - */ -struct uart_itf_data_s { - struct pi_task *fifo_head[2]; /*!< 0 = RX | 1 = TX. */ - struct pi_task *fifo_tail[2]; /*!< 0 = RX | 1 = TX. */ - uint32_t nb_open; /*!< Number of times device has been opened. */ - uint32_t device_id; /*!< Device ID. */ -}; - -/*! UART udma configuration. */ -static inline void uart_udma_channel_set(uint32_t device_id, uint32_t l2_buf, - uint32_t size, uint32_t cfg, - udma_channel_e channel) -{ - switch (channel) { - case (RX_CHANNEL): - udma_enqueue_channel(&(uart(device_id)->rx), l2_buf, size, cfg); - break; - case (TX_CHANNEL): - udma_enqueue_channel(&(uart(device_id)->tx), l2_buf, size, cfg); - break; - default: - break; - } -} - -/*! Status Register. */ -static inline uint32_t uart_status_get(uint32_t device_id) -{ - return hal_read32(&(uart(device_id)->status)); -} - - -/*! Setup Register. */ -static inline void uart_setup_set(uint32_t device_id, uint32_t setup) -{ - hal_write32(&(uart(device_id)->setup), setup); -} - -static inline uint32_t uart_setup_get(uint32_t device_id) -{ - return hal_read32(&(uart(device_id)->setup)); -} - -/*! SETUP. */ -/* Parity setup. */ -static inline void hal_uart_parity_enable(uint32_t device_id) -{ - uart_setup_set(device_id, (uart_setup_get(device_id) | - REG_SET(UART_SETUP_PARITY_ENA, 1))); -} - -static inline void hal_uart_parity_disable(uint32_t device_id) -{ - uart_setup_set(device_id, (uart_setup_get(device_id) & - ~REG_SET(UART_SETUP_PARITY_ENA, 1))); -} - -/* Word size. */ -static inline void hal_uart_bit_length_set(uint32_t device_id, - uint8_t bit_length) -{ - uart_setup_set(device_id, - (uart_setup_get(device_id) & - ~UART_SETUP_BIT_LENGTH_MASK) | - REG_SET(UART_SETUP_BIT_LENGTH, bit_length)); -} - -/* Stop bits. */ -static inline void hal_uart_stop_bits_set(uint32_t device_id, uint8_t stop_bits) -{ - uart_setup_set(device_id, - (uart_setup_get(device_id) & - ~UART_SETUP_STOP_BITS_MASK) | - REG_SET(UART_SETUP_STOP_BITS, stop_bits)); -} - -/* TX enable. */ -static inline void hal_uart_tx_enable(uint32_t device_id) -{ - uart_setup_set(device_id, (uart_setup_get(device_id) | - REG_SET(UART_SETUP_TX_ENA, 1))); -} - -static inline void hal_uart_tx_disable(uint32_t device_id) -{ - uart_setup_set(device_id, (uart_setup_get(device_id) & - ~REG_SET(UART_SETUP_TX_ENA, 1))); -} - -/* RX enable. */ -static inline void hal_uart_rx_enable(uint32_t device_id) -{ - uart_setup_set(device_id, (uart_setup_get(device_id) | - REG_SET(UART_SETUP_RX_ENA, 1))); -} - -static inline void hal_uart_rx_disable(uint32_t device_id) -{ - uart_setup_set(device_id, (uart_setup_get(device_id) & - ~REG_SET(UART_SETUP_RX_ENA, 1))); -} - -/* Clock divider setup. */ -static inline void hal_uart_clkdiv_set(uint32_t device_id, uint16_t clk_div) -{ - uart_setup_set(device_id, - (uart_setup_get(device_id) & ~UART_SETUP_CLKDIV_MASK) | - REG_SET(UART_SETUP_CLKDIV, clk_div)); -} - -/* Setup UART. */ -static inline void hal_uart_setup_set(uint32_t device_id, uint16_t clk_div, - uint8_t rx_ena, uint8_t tx_ena, - uint8_t stop_bits, uint8_t bit_length, - uint8_t parity_ena) -{ - uint32_t setup = REG_SET(UART_SETUP_CLKDIV, clk_div) | - REG_SET(UART_SETUP_RX_ENA, rx_ena) | - REG_SET(UART_SETUP_TX_ENA, tx_ena) | - REG_SET(UART_SETUP_STOP_BITS, stop_bits) | - REG_SET(UART_SETUP_BIT_LENGTH, bit_length) | - REG_SET(UART_SETUP_PARITY_ENA, parity_ena); - uart_setup_set(device_id, setup); -} - - -/*! STATUS. */ -static inline uint32_t hal_uart_tx_status_get(uint32_t device_id) -{ - return (uart_status_get(device_id) & UART_STATUS_TX_BUSY_MASK); -} - -static inline uint32_t hal_uart_rx_status_get(uint32_t device_id) -{ - return (uart_status_get(device_id) & UART_STATUS_RX_BUSY_MASK); -} - -static inline uint32_t hal_uart_rx_parity_error_get(uint32_t device_id) -{ - return (uart_status_get(device_id) & UART_STATUS_RX_PE_MASK); -} - - -/*! UDMA. */ -static inline void hal_uart_enqueue(uint32_t device_id, uint32_t l2_buf, - uint32_t size, uint32_t cfg, - udma_channel_e channel) -{ - cfg |= REG_SET(UDMA_CORE_RX_CFG_EN, 1); - uart_udma_channel_set(device_id, l2_buf, size, cfg, channel); -} - -static inline void hal_uart_rx_clear(uint32_t device_id) -{ - udma_channel_clear(&(uart(device_id)->rx)); -} - -static inline void hal_uart_tx_clear(uint32_t device_id) -{ - udma_channel_clear(&(uart(device_id)->tx)); -} - -#endif /* __UDMA_UART_H__ */ From 87cfa98654a99208950ed1b6565ab7e2b84e0a87 Mon Sep 17 00:00:00 2001 From: orlandonico Date: Mon, 3 Jan 2022 10:21:37 +0100 Subject: [PATCH 64/86] rm file from freertos/abstraction_layer_freertos/scr/ --- .../scr/History.txt | 2745 --------- .../abstraction_layer_freertos/scr/clkconst.c | 48 - .../abstraction_layer_freertos/scr/clkdiv.c | 102 - .../abstraction_layer_freertos/scr/croutine.c | 353 -- .../abstraction_layer_freertos/scr/device.c | 54 - .../scr/event_groups.c | 753 --- .../abstraction_layer_freertos/scr/fc_event.c | 69 - .../abstraction_layer_freertos/scr/fll.c | 231 - .../abstraction_layer_freertos/scr/gpio.c | 172 - .../abstraction_layer_freertos/scr/irq.c | 102 - .../abstraction_layer_freertos/scr/list.c | 198 - .../abstraction_layer_freertos/scr/os.c | 256 - .../abstraction_layer_freertos/scr/pinmux.c | 56 - .../scr/pmsis_task.c | 147 - .../abstraction_layer_freertos/scr/queue.c | 2945 --------- .../abstraction_layer_freertos/scr/soc_eu.c | 51 - .../scr/stream_buffer.c | 1263 ---- .../abstraction_layer_freertos/scr/system.c | 170 - .../scr/system_metal.c | 88 - .../abstraction_layer_freertos/scr/tasks.c | 5310 ----------------- .../scr/timer_irq.c | 77 - .../abstraction_layer_freertos/scr/timers.c | 1127 ---- .../abstraction_layer_freertos/scr/uart.c | 515 -- 23 files changed, 16832 deletions(-) delete mode 100644 rtos/freertos/abstraction_layer_freertos/scr/History.txt delete mode 100644 rtos/freertos/abstraction_layer_freertos/scr/clkconst.c delete mode 100644 rtos/freertos/abstraction_layer_freertos/scr/clkdiv.c delete mode 100644 rtos/freertos/abstraction_layer_freertos/scr/croutine.c delete mode 100644 rtos/freertos/abstraction_layer_freertos/scr/device.c delete mode 100644 rtos/freertos/abstraction_layer_freertos/scr/event_groups.c delete mode 100644 rtos/freertos/abstraction_layer_freertos/scr/fc_event.c delete mode 100644 rtos/freertos/abstraction_layer_freertos/scr/fll.c delete mode 100644 rtos/freertos/abstraction_layer_freertos/scr/gpio.c delete mode 100644 rtos/freertos/abstraction_layer_freertos/scr/irq.c delete mode 100644 rtos/freertos/abstraction_layer_freertos/scr/list.c delete mode 100644 rtos/freertos/abstraction_layer_freertos/scr/os.c delete mode 100644 rtos/freertos/abstraction_layer_freertos/scr/pinmux.c delete mode 100644 rtos/freertos/abstraction_layer_freertos/scr/pmsis_task.c delete mode 100644 rtos/freertos/abstraction_layer_freertos/scr/queue.c delete mode 100644 rtos/freertos/abstraction_layer_freertos/scr/soc_eu.c delete mode 100644 rtos/freertos/abstraction_layer_freertos/scr/stream_buffer.c delete mode 100644 rtos/freertos/abstraction_layer_freertos/scr/system.c delete mode 100644 rtos/freertos/abstraction_layer_freertos/scr/system_metal.c delete mode 100644 rtos/freertos/abstraction_layer_freertos/scr/tasks.c delete mode 100644 rtos/freertos/abstraction_layer_freertos/scr/timer_irq.c delete mode 100644 rtos/freertos/abstraction_layer_freertos/scr/timers.c delete mode 100644 rtos/freertos/abstraction_layer_freertos/scr/uart.c diff --git a/rtos/freertos/abstraction_layer_freertos/scr/History.txt b/rtos/freertos/abstraction_layer_freertos/scr/History.txt deleted file mode 100644 index f7a54557..00000000 --- a/rtos/freertos/abstraction_layer_freertos/scr/History.txt +++ /dev/null @@ -1,2745 +0,0 @@ -Documentation and download available at http://www.FreeRTOS.org/ - -Changes between FreeRTOS V10.2.1 and FreeRTOS V10.3.0 released February 7 2020 - - See http://www.FreeRTOS.org/FreeRTOS-V10.3.x.html - - New and updated kernel ports: - - + Added RISC-V port for the IAR compiler. - + Update the Windows simulator port to use a synchronous object to prevent - a user reported error whereby a task continues to run for a short time - after being moved to the Blocked state. Note we were not able to - replicate the reported issue and it likely depends on your CPU model. - + Correct alignment of stack top in RISC-V port when - configISR_STACK_SIZE_WORDS is defined to a non zero value, which causes - the interrupt stack to be statically allocated. - + The RISC-V machine timer compare register can now be for any HART, whereas - previously it was always assumed FreeRTOS was running on HART 0. - + Update the sequence used to update the 64-bit machine timer - compare register on 32-bit cores to match that suggested in RISC-V - documentation. - + Added tickless low power modes into the ARM, IAR and GCC Cortex-M0 compiler - ports. - + Updated the behaviour of the ARMv7-M MPU (Memory Protection Unit) ports to - match that of the ARMv8-M ports whereby privilege escalations can only - originate from within the kernel's own memory segment. Added - configENFORCE_SYSTEM_CALLS_FROM_KERNEL_ONLY configuration constant. - + Update existing MPU ports to correctly disable the MPU before it is - updated. - + Added contributed port and demo application for a T-Head (formally C-SKY) - microcontroller. - - New API functions: - - + Added the vPortGetHeapStats() API function which returns information on - the heap_4 and heap_5 state. - + Added xTaskCatchUpTicks(), which corrects the tick count value after the - application code has held interrupts disabled for an extended period. - + Added xTaskNotifyValueClear() API function. - + Added uxTimerGetReloadMode() API function. - - Other miscellaneous changes: - + Change type of uxPendedTicks from UBaseType_t to TickType_t to ensure it - has the same type as variables with which it is compared to, and therefore - also renamed the variable xPendingTicks. - + Update Keil projects that use the MPU so memory regions come from linker - script (scatter file) variables instead of being hard coded. - + Added LPC51U68 Cortex-M0+ demos for GCC (MCUXpresso), Keil and IAR - compilers. - + Added CORTEX_MPU_STM32L4_Discovery_Keil_STM32Cube demo. - + Added LPC54018 MPU demo. - + Rename xTaskGetIdleRunTimeCounter() to ulTaskGetIdleRunTimeCounter(). - - -Changes between FreeRTOS V10.2.1 and FreeRTOS V10.2.0 released May 13 2019: - - + Added ARM Cortex-M23 port layer to complement the pre-existing ARM - Cortex-M33 port layer. - + The RISC-V port now automatically switches between 32-bit and 64-bit - cores. - + Introduced the portMEMORY_BARRIER macro to prevent instruction re-ordering - when GCC link time optimisation is used. - + Introduced the portDONT_DISCARD macro to the ARMv8-M ports to try and - prevent the secure side builds from removing symbols required by the - non secure side build. - + Introduced the portARCH_NAME to provide additional data to select semi- - automated build environments. - + Cortex-M33 and Cortex-M23 ports now correctly disable the MPU before - updating the MPU registers. - - + Added Nuvoton NuMaker-PFM-M2351 ARM Cortex-M23 demo. - + Added LPC55S69 ARM Cortex-M33 demo. - + Added an STM32 dual core AMP stress test demo. - - -Changes between FreeRTOS V10.1.1 and FreeRTOS V10.2.0 released February 25 2019: - - + Added GCC RISC-V MCU port with three separate demo applications. - + Included pre-existing ARM Cortex-M33 (ARMv8-M) GCC/ARMclang and IAR ports - with Keil simulator demo. - + Update the method used to detect if a timer is active. Previously the - timer was deemed to be inactive if it was not referenced from a list. - However, when a timer is updated it is temporarily removed from, then - re-added to a list, so now the timer's active status is stored separately. - + Add vTimerSetReloadMode(), xTaskGetIdleRunTimeCounter(), and - xTaskGetApplicationTaskTagFromISR() API functions. - + Updated third party Xtensa port so it is MIT licensed. - + Added configINCLUDE_PLATFORM_H_INSTEAD_OF_IODEFINE_H to the Renesas - compiler RX600v2 port to enable switching between platform.h and - iodefine.h includes within that port's port.c file. - + Removed the 'FromISR' functions from the MPU ports as ISRs run privileged - anyway. - + Added uxTaskGetStackHighWaterMark2() function to enable the return type to - be changed without breaking backward compatibility. - uxTaskGetStackHighWaterMark() returns a UBaseType_t as always, - uxTaskGetStackHighWaterMark2() returns configSTACK_DEPTH_TYPE to allow the - user to determine the return type. - + Fixed issues in memory protected ports related to different combinations - of static memory only and dynamic memory only builds. As a result the - definition of tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE became more - complex and was moved to FreeRTOS.h with a table explaining its definition. - + Added a 'get task tag from ISR' function. - + Change the method used to determine if a timer is active or not from just - seeing if it is referenced from the active timer list to storing its - active state explicitly. The change prevents the timer reporting that it - is inactive while it is being moved from one list to another. - + The pcName parameter passed into the task create functions can be NULL, - previously a name had to be provided. - + When using tickless idle, prvResetNextTaskUnblockTime() is now only called - in xTaskRemoveFromEventList() if the scheduler is not suspended. - + Introduced portHAS_STACK_OVERFLOW_CHECKING, which should be set to 1 for - FreeRTOS ports that run on architectures that have stack limit registers. - - -Changes between FreeRTOS V10.1.0 and FreeRTOS V10.1.1 released 7 September 2018 - - + Reverted a few structure name changes that broke several kernel aware - debugger plug-ins. - + Updated to the latest trace recorder code. - + Fixed some formatting in the FreeRTOS+TCP TCP/IP stack code. - + Reverted moving some variables from file to function scope as doing so - broke debug scenarios that require the static qualifier to be removed. - -Changes between FreeRTOS V10.0.1 and FreeRTOS V10.1.0 released 22 August 2018 - - FreeRTOS Kernel Changes: - - + Update lint checked MISRA compliance to use the latest MISRA standard, was - previously using the original MISRA standard. - + Updated all object handles (TaskHandle_t, QueueHandle_t, etc.) to be - unique types instead of void pointers, improving type safety. (this was - attempted some years back but had to be backed out due to bugs in some - debuggers). Note this required the pvContainer member of a ListItem_t - struct to be renamed - set configENABLE_BACKWARD_COMPATIBILITY to 1 if - this causes an issue. - + Added configUSE_POSIX_ERRNO to enable per task POSIX style errno - functionality in a more user friendly way - previously the generic thread - local storage feature was used for this purpose. - + Added Xtensa port and demo application for the XCC compiler. - + Changed the implementation of vPortEndScheduler() for the Win32 port to - simply call exit( 0 ). - + Bug fix in vPortEnableInterrupt() for the GCC Microblaze port to protect - the read modify write access to an internal Microblaze register. - + Fix minor niggles when the MPU is used with regards to prototype - differences, static struct size differences, etc. - + The usStackHighWaterMark member of the TaskStatus_t structure now has type - configSTACK_DEPTH_TYPE in place of uint16_t - that change should have been - made when the configSTACK_DEPTH_TYPE type (which gets around the previous - 16-bit limit on stack size specifications) was introduced. - + Added the xMessageBufferNextLengthBytes() API function and likewise stream - buffer equivalent. - + Introduce configMESSAGE_BUFFER_LENGTH_TYPE to allow the number of bytes - used to hold the length of a message in the message buffer to be reduced. - configMESSAGE_BUFFER_LENGTH_TYPE default to size_t, but if, for example, - messages can never be more than 255 bytes it could be set to uint8_t, - saving 3 bytes each time a message is written into the message buffer - (assuming sizeof( size_t ) is 4). - + Updated the StaticTimer_t structure to ensure it matches the size of the - Timer_t structure when the size of TaskFunction_t does not equal the size - of void *. - + Update various Xilinx demos to use 2018.1 version of the SDK tools. - + Various updates to demo tasks to maintain test coverage. - + FreeRTOS+UDP was removed in FreeRTOS V10.1.0 as it was replaced by - FreeRTOS+TCP, which was brought into the main download in FreeRTOS - V10.0.0. FreeRTOS+TCP can be configured as a UDP only stack, and - FreeRTOS+UDP does not contain the patches applied to FreeRTOS+TCP. - - FreeRTOS+TCP Changes: - - + Multiple security improvements and fixes in packet parsing routines, DNS - caching, and TCP sequence number and ID generation. - + Disable NBNS and LLMNR by default. - + Add TCP hang protection by default. - - We thank Ori Karliner of Zimperium zLabs Team for reporting these issues. - - -Changes between FreeRTOS V10.0.0 and FreeRTOS V10.0.1, released December 20 2017 - - + Fix position of "#if defined( __cplusplus )" in stream_buffer.h. - + Correct declarations of MPU_xQueuePeek() and MPU_xQueueSemaphoreTake() in - mpu_prototypes.h. - + Correct formatting in vTaskList() helper function when it prints the state - of the currently executing task. - + Introduce #error if stream_buffer.c is built without - configUSE_TASK_NOTIFICATIONS set to 1. - + Update FreeRTOS+TCP to V2.0.0 - - Improve the formatting of text that displays the available netword - interfaces when FreeRTOS+TCP is used on Windows with WinPCap. - - Introduce ipconfigSOCKET_HAS_USER_WAKE_CALLBACK option to enable a user - definable callback to execute when data arrives on a socket. - -Changes between FreeRTOS V9.0.1 and FreeRTOS V10.0.0: - - The FreeRTOS kernel is now MIT licensed: https://www.FreeRTOS.org/license - - New Features and components: - - + Stream Buffers - see http://www.FreeRTOS.org/RTOS-stream-buffer-example.html - + Message Buffers - see http://www.FreeRTOS.org//RTOS-message-buffer-example.html - + Move FreeRTOS+TCP into the main repository, along with the basic Win32 - TCP demo FreeRTOS_Plus_TCP_Minimal_Windows_Simulator. - - New ports or demos: - - + Added demo for TI SimpleLink CC3220 MCU. - + Added MPU and non MPU projects for Microchip CEC and MEC 17xx and 51xx - MCUs. - + Added CORTEX_MPU_Static_Simulator_Keil_GCC demo to test static allocation - in the MPU port. - - Fixes or enhancements: - - + Cortex-M ports push additional register prior to calling - vTaskSwitchContext to ensure 8-byte alignment is maintained. Only - important if a user defined tick hook function performs an operation that - requires 8-byte alignment. - + Optimisations to the implementation of the standard tickless idle mode on - Cortex-M devices. - + Improvements to the Win32 port including using higher priority threads. - + Ensure interrupt stack alignment on PIC32 ports. - + Updated GCC TriCore port to build with later compiler versions. - + Update mpu_wrappers.c to support static allocation. - + The uxNumberOfItems member of List_t is now volatile - solving an issue - when the IAR compiler was used with maximum optimization. - + Introduced configRECORD_STACK_HIGH_ADDRESS. When set to 1 the stack start - address is saved into each task's TCB (assuming stack grows down). - + Introduced configINCLUDE_FREERTOS_TASK_C_ADDITIONS_H to allow user defined - functionality, and user defined initialisation, to be added to FreeRTOS's - tasks.c source file. When configINCLUDE_FREERTOS_TASK_C_ADDITIONS_H is - set to 1 a user provided header file called freertos_task_c_additions.h - will be included at the bottom of tasks.c. Functions defined in that - header file can call freertos_tasks_c_additions_init(), which in turn - calls a macro called FREERTOS_TASKS_C_ADDITIONS_INIT(), if it is defined. - FREERTOS_TASKS_C_ADDITIONS_INIT() can be defined in FreeRTOSConfig.h. - + Introduced configPRE_SUPPRESS_TICKS_AND_SLEEP_PROCESSING( x ) which can be - defined by a user in FreeRTOSConfig.h. The macro is called before - assessing whether to enter tickless idle mode or not. If the macro sets - x to zero then tickless idle mode will not be entered. This allows users - to abort tickless idle mode entry before the tickless idle function is - even called - previously it was only possible to abort from within the - tickless idle function itself. - + Added configPRINTF(), which can be defined by users to allow all libraries - to use the same print formatter. - + Introduced configMAX() and configMIN() macros which default to standard - max( x, y ) and min( x, y ) macro behaviour, but can be overridden if the - application writer defines the same macros in FreeRTOSConfig.h. - + Corrected the definition of StaticTask_t in the case where - INCLUDE_xTaskAbortDelay is set to 1. - + Introduced configTIMER_SERVICE_TASK_NAME and configIDLE_TASK_NAME, both of - which can be defined to strings in FreeRTOSConfig.h to change the default - names of the timer service and idle tasks respectively. - + Only fill the stack of a newly created task with a known value if stack - checking, or high water mark checking/viewing, is in use - removing the - dependency on memset() in other cases. - + Introduced xTaskCreateRestrictedStatic() so static allocation can be used - with the MPU. - + Ensure suspended tasks cannot be unsuspended by a received task - notification. - + Fix race condition in vTaskSetTimeOutState(). - + Updated trace recorder files to the latest version. - -Changes since FreeRTOS V9.0.0: - - + Priority dis-inheritance behaviour has been enhanced in the case where a - task that attempted to take a mutex that was held by a lower priority task - timed out before it was able to obtain the mutex (causing the task that - holds the mutex to have its priority raised, then lowered again, in - accordance with the priority inheritance protocol). - + Split the overloaded xQueueGenericReceive() function into three separate - dedicated functions. - + Allow the default human readable text names given to the Idle and Timer - tasks to be overridden by defining the configIDLE_TASK_NAME and - configTIMER_SERVICE_TASK_NAME definitions respectively in FreeRTOSConfig.h. - + Introduced configINITIAL_TICK_COUNT to allow the tick count to take a - value of than than 0 when the system boots. This can be useful for - testing purposes - although setting configUSE_16_BIT_TICKS to 1 can also - be used to test frequent tick overflows. - + Ensure the Cortex-M SysTick count is cleared to zero before starting the - first task. - + Add configASSERT() into ARM Cortex-M ports to check the number of priority - bit settings. - + Clear the 'control' register before starting ARM Cortex-M4F ports in case - the FPU is used before the scheduler is started. This just saves a few - bytes on the main stack as it prevents space being left for a later save - of FPU registers. - + Added xSemaphoreGetMutexHolderFromISR(). - + Corrected use of portNVIC_PENDSVSET to portNVIC_PENDSVSET_BIT in MPU ports. - + Introduced configSTACK_DEPTH_TYPE to allow users to change the type used - to specify the stack size when using xTaskCreate(). For historic reasons, - when FreeRTOS was only used on small MCUs, the type was set to uint16_t, - but that can be too restrictive when FreeRTOS is used on larger - processors. configSTACK_DEPTH_TYPE defaults to uint16_t. - xTaskCreateStatic(), being a newer function, used a uint32_t. - + Increase the priority of the Windows threads used by the Win32 port. As - all the threads run on the same core, and the threads run with very high - priority, there is a risk that the host will become unresponsive, so also - prevent the Windows port executing on single core hosts. - -Changes between FreeRTOS V9.0.0 and FreeRTOS V9.0.0rc2 released May 25 2016: - - See http://www.FreeRTOS.org/FreeRTOS-V9.html - - RTOS kernel updates: - - + The prototype of the new xTaskCreateStatic() API function was modified to - remove a parameter and improve compatibility with other new - "CreateStatic()" API functions. The stack size parameter in - xTaskCreateStatic() is now uint32_t, which changes the prototype of the - callback functions. See the following URL: - http://www.freertos.org/xTaskCreateStatic.html - + GCC ARM Cortex-A port: Introduced the configUSE_TASK_FPU_SUPPORT - constant. When configUSE_TASK_FPU_SUPPORT is set to 2 every task is - automatically given a floating point (FPU) context. - + GCC ARM Cortex-A port: It is now possible to automatically save and - restore all floating point (FPU) registers on entry to each potentially - nested interrupt by defining vApplicationFPUSafeIRQHandler() instead of - vApplicationIRQHandler(). - + All ARM Cortex-M3/4F/7 ports: Clear the least significant bit of the task - entry address placed onto the stack of a task when the task is created for - strict compliance with the ARM Cortex-M3/4/7 architecture documentation - (no noticeable effect unless using the QMEU emulator). - + Added GCC and Keil ARM Cortex-M4F MPU ports - previously the MPU was only - supported on ARM Cortex-M3. - + ARM Cortex-M3/4F MPU ports: Update to fully support the FreeRTOS V9.0.0 - API (other than static object creation) and added the - FreeRTOS/Demo/CORTEX_MPU_Simulator_Keil_GCC demo application to - demonstrate how to use the updated MPU port. - + All ARM Cortex-M3/4F/7 ports: Add additional barrier instructions to the - default low power tickless implementation. - + All ARM Cortex-M0 ports: Prevent an item being left on the stack of the - first task that executes. - + Win32 ports: Reduce the amount of stack used and change the way Windows - threads are deleted to increase the maximum execution time. - + Add an ARM Cortex-M4F port for the MikroC compiler. Ensure to read the - documentation page for this port before use. - + MPS430X IAR port: Update to be compatible with the latest EW430 tools - release. - + IAR32 GCC port: Correct vPortExitCritical() when - configMAX_API_CALL_INTERRUPT_PRIORITY == portMAX_PRIORITY. - + For consistency vTaskGetTaskInfo() now has the alias vTaskGetInfo(), - xTaskGetTaskHandle() now has the alias xTaskGetHandle() and - pcQueueGetQueueName() now has an alias pcQueueGetName(). - + Fix various errors in comments and compiler warnings. - - Demo application updates: - - + Update Atmel Studio projects to use Atmel Studio 7. - + Update Xilinx SDK projects to use the 2016.1 version of the SDK. - + Remove dependency on legacy IO libraries from the PIC32 demos. - + Move the Xilinx UltraScale Cortex-R5 demo into the main distribution. - + Update the MSP432 libraries to the latest version. - + Add Microchip CEC1302 (ARM Cortex-M4F) demos for GCC, Keil and MikroC - compilers. - + Move the Atmel SAMA5D2 demo into the main distribution. - -Changes between FreeRTOS V9.0.0rc1 and FreeRTOS V9.0.0rc2 (release candidate 2) -released March 30 2016: - - NOTE - See http://www.FreeRTOS.org/FreeRTOS-V9.html for details - - + The functions that create RTOS objects using static memory allocation have - been simplified and will not revert to using dynamic allocation if a - buffer is passed into a function as NULL. - + Introduced the configSUPPORT_DYNAMIC_ALLOCATION configuration constant to - allow a FreeRTOS application to be built without a heap even being being - defined. The Win32 example located in the - /FreeRTOS/demo/WIN32-MSVC-Static-Allocation-Only directory is provided as - a reference for projects that do not include a FreeRTOS heap. - + Minor run-time optimisations. - + Two new low power tickless implementations that target Silicon Labs EFM32 - microcontrollers. - + Addition of the xTimerGetPeriod() and xTimerGetExpireTime() API functions. - -Changes between FreeRTOS V8.2.3 and FreeRTOS V9.0.0rc1 (release candidate 1) -released February 19 2016: - - RTOS Kernel Updates: - - + Major new feature - tasks, semaphores, queues, timers and event groups can - now be created using statically allocated memory, so without any calls to - pvPortMalloc(). - + Major new features - Added the xTaskAbortDelay() API function which allows - one task to force another task to immediately leave the Blocked state, - even if the event the blocked task is waiting for has not occurred, or the - blocked task's timeout has not expired. - + Updates necessary to allow FreeRTOS to run on 64-bit architectures. - + Added vApplicationDaemonTaskStartupHook() which executes when the RTOS - daemon task (which used to be called the timer service task) starts - running. This is useful if the application includes initialisation code - that would benefit from executing after the scheduler has been started. - + Added the xTaskGetTaskHandle() API function, which obtains a task handle - from the task's name. xTaskGetTaskHandle() uses multiple string compare - operations, so it is recommended that it is called only once per task. - The handle returned by xTaskGetTaskHandle() can then be stored locally for - later re-use. - + Added the pcQueueGetQueueName() API function, which obtains the name of - a queue from the queue's handle. - + Tickless idling (for low power applications) can now also be used when - configUSE_PREEMPTION is 0. - + If one task deletes another task, then the stack and TCB of the deleted - task is now freed immediately. If a task deletes itself, then the stack - and TCB of the deleted task are freed by the Idle task as before. - + If a task notification is used to unblock a task from an ISR, but the - xHigherPriorityTaskWoken parameter is not used, then pend a context switch - that will then occur during the next tick interrupt. - + Heap_1.c and Heap_2.c now use the configAPPLICATION_ALLOCATED_HEAP - settings, which previously was only used by heap_4.c. - configAPPLICATION_ALLOCATED_HEAP allows the application writer to declare - the array that will be used as the FreeRTOS heap, and in-so-doing, place - the heap at a specific memory location. - + TaskStatus_t structures are used to obtain details of a task. - TaskStatus_t now includes the bae address of the task's stack. - + Added the vTaskGetTaskInfo() API function, which returns a TaskStatus_t - structure that contains information about a single task. Previously this - information could only be obtained for all the tasks at once, as an array - of TaskStatus_t structures. - + Added the uxSemaphoreGetCount() API function. - + Replicate previous Cortex-M4F and Cortex-M7 optimisations in some - Cortex-M3 port layers. - - Demo Application Updates: - - Further demo applications will be added prior to the final FreeRTOS V9 - release. - - + Updated SAM4L Atmel Studio project to use Atmel Studio 7. - + Added ARM Cortex-A53 64-bit port. - + Added a port and demo for the ARM Cortex-A53 64-bit cores on the Xilinx - Ultrascale MPSoC. - + Added Cortex-M7 SAME70 GCC demo. - + Added EFM32 Giant and Wonder Gecko demos. - - -Changes between V8.2.2 and V8.2.3 released October 16, 2015 - - RTOS kernel updates: - - + Fix bug identified in a modification made in V8.2.2 to the software timer - code that allows tickless low power applications to sleep indefinitely - when software timers are used. - + Simplify and improve efficiency of stack overflow checking. - + Add xTaskNotifyStateClear() API function. - + New IAR and GCC Cortex-R ports for microprocessors that do not use an ARM - generic interrupt controller (GIC). - + New PIC32MEC14xx port. - + Add support for PIC32MZ EF parts (with floating point) into the PIC32MZ - port. - + Zynq7000 port layer now declares the functions that setup and clear the - tick interrupt as weak symbols so they can be overridden by the - application, and uses a global XScuGic object so the same object can be - used by the application code. - + Introduced configUSE_TASK_FPU_SUPPORT, although the PIC32MZ EF port is - currently the only port that uses it. - + Updates to RL78 and 78K0 IAR port layers to improve support for - combinations of memory models. - + Minor updates to heap_5.c to remove compiler warnings generated by some - compilers. - + License simplifications. See /FreeRTOS/License/license.txt in the - official distribution. - - FreeRTOS+ updates: - - + Update directory names to use WolfSSL instead of CyaSSL, inline with - WolfSSL's re-branding. - + Update to latest WolfSSL code. - + Update to latest FreeRTOS+Trace recorder code. - + Add in the FreeRTOS+Trace recorder library required for streaming trace. - - Demo application changes: - - + Add demo applications for Renesas RZ/T (Cortex-R), PIC32MZ EF (PIC32 with - floating point hardware), PIC32MEC14xx, RX71M, RX113 and RX231. - + General tidy up of spelling and compiler warnings. - - -Changes between V8.2.1 and V8.2.2 released August 12, 2015 - - RTOS kernel updates: - - + Added Intel IA32/x86 32-bit port. - + General maintenance. - + PRIVILEGED_FUNCTION and PRIVILEGED_DATA macros, which are used in memory - protected systems, have been added to the newer event group and software - timer functions. - + Add the errno definitions used by FreeRTOS+ components into projdefs.h. - + Remove the restriction that prevented tick-less idle implementations - waiting indefinitely when software timers were used in the same - application. - + Introduce xTaskNotifyAndQueryFromISR() as the interrupt safe version of - xTaskNotifyAndQuery(). - + Add additional NOPs to the MSP430X port layers to ensure strict compliance - with the hardware documentation. - + Microblaze port: Added option for port optimised task selection. - + Microblaze port: Previously tasks inherited the exception enable state - at the time the task was created. Now all tasks are created with - exceptions enabled if the Microblaze design supports exceptions. - + Windows port: Add additional safe guards to ensure the correct start up - sequence and thread switching timing. - + Windows port: Improve the implementation of the port optimised task - selection assembly code. - + Update heap_4 and heap_5 to allow use on 64-bit processors. - + Simplify the code that creates a queue. - + General improved tick-less idle behaviour. - + Ensure none of the variables in the common kernel files are initialised to - anything other than zero. - + Correct calculation of xHeapStructSize in heap_4 and heap_5. - - Demo application updates: - - + Added demo project for the new IA32/x86 port that targets the Galileo - hardware. - + Added MSP430FR5969 demos (previously provided as a separate download). - + Added FreeRTOS BSP repository for automatic creation of FreeRTOS - applications in the Xilinx SDK. - + Added Atmel Studio / GCC project for the SAMV71 (ARM Cortex-M7) - + Update Xilinx SDK projects to use version 2015.2 of the SDK. - + Remove Microblaze demos that were using obsolete tools. - + Add MSP43FR5969 IAR and CCS demos. - - FreeRTOS+ Updates: - - + Updated FreeRTOS+Trace recorder library, which requires an update to the - FreeRTOS+Trace application. - + Added Reliance Edge source code and demo application. Reliance edge is - a fail safe transactional file system ideal for applications that require - file storage, and especially when high reliability is essential. - + Introduce configAPPLICATION_PROVIDES_cOutputBuffer to allow FreeRTOS+CLI - users to place the output buffer at a fixed memory address. - + Improve the NetworkInterface.c file provided for the Windows port of - FreeRTOS+UDP. - -Changes between V8.2.0 and V8.2.1 released 24th March 2015. - - RTOS kernel updates: - - + Added user definable and flexible thread local storage facility. - + Added vTimerSetTimerID() API function to complement the pvTimerGetTimerID() - function to allow the timer's ID to be used as timer local storage. - + Fixed a potential issue related to the use of queue sets from an ISR. - + Some updates to the Xilinx Microblaze GCC port. - + Added ARM Cortex-M4F port for Texas Instruments Code Composer Studio. - + Added ARM Cortex-M7 r0p1 port layer for IAR, GCC and Keil which contains a - minor errata work around. All other ARM Cortex-M7 core revisions should - use the ARM Cortex-M4F port. - + Exclude the whole of croutine.c if configUSE_CO_ROUTINES is set to 0. - + Change some data types from uint32_t to size_t in preparation for 64-bit - Windows port. - + Update the PIC32 port to remove deprecation warnings output by the latest - XC32 compilers. - + Fix bug when xQueueOverwrite() and xQueueOverwrite() from ISR are used to - overwrite items in two queues that are part of the same set. - - Demo application updates: - - + Added demo application for TI's ARM Cortex-M4F based MSP432 - microcontroller using IAR, Keil and CCS compilers. - + Added demo application for STM32F ARM Cortex-M7 based microcontroller - using IAR and Keil. - + Added demo application for Atmel SAMV71 ARM Cortex-M7 based - microcontroller using IAR and Keil. - + Added Microblaze demo that uses the 2014.4 version of the Xilinx SDK and - runs on the KC705 evaluation board (Kintex FPGA). - -Changes between V8.1.2 and V8.2.0 released 16th January 2015 - - Changes between release candidate 1 and the official release are restricted - to maintenance only. - - Significant RTOS kernel updates: - - + MAJOR NEW FEATURE! Task notifications. Please see the following URL for - details: http://www.FreeRTOS.org/RTOS-task-notifications.html - + NEW HEADER FILE REQUIRED! Obsolete definitions have been separated into - a new header file called FreeRTOS/Source/include/deprecated_definitions.h. - This header file must be present to build. Note some of the obsolete - definitions are still used by very old demo application projects. - - Other RTOS kernel updates: - - + Made xSemaphoreGiveFromISR() a function rather than a macro that calls - xQueueGenericSendFromISR(). This allows for major performance - enhancements at the expense of some additional code size if both functions - are used in the same application. NOTE: In most uses cases such use of - a semaphore can now be replaced with a task notification which is smaller - and faster still. - + The TCB is now always allocated such that the task's stack grows away from - the TCB (improves debugging of stack overflows as the overflow will not - overwrite the task's name). - + GCC, IAR and Keil Cortex-M4F ports now use more inlining (performance - enhancements at the cost of a little additional code space). - + Queues are now allocated with a single call to pvPortMalloc() which - allocates both the queue structure and the queue storage area. - + Introduced a new critical section macro for reading the tick count that - defines away to nothing in cases where the width of the tick allows the - tick count to be read atomically (performance benefits - especially when - optimisation is on). - + Introduced configAPPLICATION_ALLOCATED_HEAP in heap_4.c to allow the - application writer to provide their own heap array - and in so doing - control the location of the heap. - + Introduced configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES which, when set, will - include known values in both list and list item structures. The values - are intended to assist debugging. If the values get overwritten then it - is likely application code has written over RAM used by the kernel. - + configASSERT()s in all Cortex-M ports used to test the lowest 5 bits of - the interrupt control register to detect taskENTER_CRITICAL() being called - from an interrupt. This has been changed to test all 8 bits. - + Introduced uxTaskPriorityGetFromISR(). - + Microblze V8 port now tests XPAR_MICROBLAZE_0_USE_FPU for inequality to 0 - rather than equality to 1, and 2 and 3 are also valid values. - + Cortex-A5 GIC-less port no longer passes the address of the interrupting - peripheral into the interrupt handler. - + Fix an issue in FreeRTOS-MPU where an attempt was made to free the stack - belonging to a task when the task was deleted, even when the stack was - allocated statically. - + Utility (helper) functions that format task statistic information into - human readable tables now pad task names with spaces to ensure columns - line up correctly even where task name lengths vary greatly. - + Update FreeRTOS+Trace recorder library to version 2.7.0. - - Demo application updates: - - + Added two new standard demo task sets: IntSemTest and TaskNotify. - + Added port and demo application for Atmel SAMA5D4 Cortex-A5 MPU. - + Added demo application for Altera Cyclone V Cortex-A9 MPU. - + Updated Zynq demo to use version 2014.4 of Xilinx's SDK and added in - demo tasks for new RTOS features. - + Updated Atmel SAM4E and SAM4S demos to include a lot of additional test - and demo tasks. - + Fixed a corner case issue in Atmel SAM4L low power tickless - implementation, and added button interrupt handling. - + Make the interrupt queue tests more tolerant to heave CPU loads. - + Updated MSVC FreeRTOS simulator demo to include the latest standard test - and demo tasks. - + Updated MingW/Eclipse FreeRTOS simulator demo to match the FreeRTOS MSVC - simulator demo. - + Updated all demos that use FreeRTOS+Trace to work with the latest trace - recorder code. - - -Changes between V8.1.1 and V8.1.2 released September 2nd 2014 - - Move the defaulting of configUSE_PORT_OPTIMISED_TASK_SELECTION into the - individual port layers where necessary so it does not affect ports that do - not support the definition. - -Changes between V8.1.0 and V8.1.1 released August 29th 2014 - - By popular requests - a minor patch to V8.1.0 to re-instate the ability to - give a mutex type semaphore (with priority inheritance) from an interrupt - handler. - -Changes between V8.0.1 and V8.1.0 released August 26th 2014 - - FreeRTOS scheduler, kernel, demo and test updates: - - + Improved the priority inheritance algorithms to assist integration with - off the shelf middleware that may hold multiple mutexes simultaneously. - + Introduce heap_5.c, which is similar to heap_4.c but allows the heap to - span multiple non-contiguous memory regions. - + Updated all Cortex-A9 ports to help trap a couple of common usage errors - - the first being when a task incorrectly attempts to exit its implementing - function and the second being when a non interrupt safe API function is - called from an interrupt. - + Update all Cortex-A9 ports to remove obsolete mode switches prior to - restoring a task context. - + configUSE_PORT_OPTIMISED_TASK_SELECTION now defaults to 1 instead of 0. - + Update all Cortex-M3/4F ports to trap a non interrupt safe API function - being called from an interrupt handler. - + Simplify the alignment checks in heap_4.c. - + Update the MSVC Windows simulator demo to use heap_5.c in place of - heap_4.c to ensure end users have an example to refer to. - + Updated standard demo test code to test the new priority inheritance - algorithms. - + Updated the standard demo tasks to make use of stdint and the FreeRTOS - specific typedefs that were introduced in FreeRTOS V8.0.0. - + Introduce the pdMS_TO_TICKS() macro as a more user friendly and intuitive - alternative to pdTICKS_PER_MS - both of which can be used to convert a - time specified in milliseconds to a time specified in RTOS ticks. - + Fix a bug in the Tasking compiler's Cortex-M port that resulted in an - incorrect value being written to the basepri register. This only effects - users of the Tasking compiler. - + Update the Zynq demo to use version 2014.2 of the SDK and add in an lwIP - example that demonstrates lwIP being used with both its raw and sockets - interfaces. - + Updated the CCS Cortex-R4 port to enable it to be built with the latest - CCS compiler. - - New ports and demo applications: - - + Two Renesas RX64M ports (RXv2 core) and demos introduced, one for the GCC - compiler and one for the Renesas compiler. Both demos use e2 studio. - + Generic IAR Cortex-A5 port (without any reliance on a GIC) introduced. - The new port is demonstrated on an Atmel SAMA5D3 XPlained board. - - FreeRTOS+ component updates: - - + Update CyaSSL to the latest version. - + Updated the FreeRTOS+ components supplied directly by Real Time Engineers - Ltd. to make use of stdint and the FreeRTOS specific typedefs that were - introduced in FreeRTOS V8.0.0. - + Rework and simplify the FreeRTOS+FAT SL RAM disk driver. - - Miscellaneous updates and maintenance: - - + Update the IAR and DS-5/ARM RZ demos to target the official RZ RSK - hardware in place of the previously targeted Renesas internal (not - publicly available) hardware. - + Various other maintenance tasks. - - -Changes between V8.0.0 and V8.0.1 released 2nd May 2014 - - + Minor fixes to the event group functionality that was released in V8.0.0. - The 'clear bits from ISR' functionality is now implemented using a - deferred interrupt callback instead of a function, and the 'wait bits' and - 'task sync' functions now correctly clear internal control bits before - returning a value in every possible path through the respective functions. - + Ensure the updating of internal control data is protected by a critical - section after a task is deleted or suspended. - + Minor fixes to FreeRTOS+FAT SL - namely seeking beyond the end of a file - when the offset was not a multiple of the sector size. - + Ensure Cortex-A9 system registers are only ever accessed as 32-bit values, - even when only the lest significant byte of the register is implemented. - - Other updates: - - + Updated the XMC4200 IAR project so it links with version 7.x of the IAR - tools. - + Add RL78L1C demo. - + Add pcTimerGetName() API function. - + Call _reclaim_reent() when a task is deleted if configUSE_NEWLIB_REENTRANT - is defined. - -Changes between V7.6.0 and V8.0.0 released 19th Feb 2014 - - http://www.freertos.org/upgrading-to-FreeRTOS-V8.html - - FreeRTOS V8.x.x is a drop-in compatible replacement for FreeRTOS V7.x.x, - although a change to the type used to reference character strings may result - in application code generating a few (easily clearable) compiler warnings - after the upgrade, and an updated typedef naming convention means use of the - old typedef names is now discouraged. - See http://www.freertos.org/upgrading-to-FreeRTOS-V8.html for full - information. - - New features and functionality: - - + Event groups - see http://www.freertos.org/FreeRTOS-Event-Groups.html - + Centralised deferred interrupt processing - see - http://www.freertos.org/xTimerPendFunctionCallFromISR.html - - Other updates: - - + Previously, when a task left the Blocked state, a context switch was - performed if the priority of the unblocked task was greater than or equal - to the priority of the Running task. Now a context switch is only - performed if the priority of the unblocked task is greater than the - priority of the Running task. - + New low power tickless demonstration project that targets the ST STM32L - microcontroller - see - http://www.freertos.org/STM32L-discovery-low-power-tickless-RTOS-demo.html - + Add xPortGetMinimumEverFreeHeapSize() to heap_4.c. - + Small change to the tickless low power implementation on the SAM4L to - ensure the alarm value (compare match value) cannot be set to zero when a - tickless period is exited due to an interrupt originating from a source - other than the RTOS tick. - + Update the GCC/Eclipse Win32 simulator demo to make better use of Eclipse - resource filters and match the functionality of the MSVC equivalent. - + xTaskIsTaskSuspended() is no longer a public function. Use - eTaskGetState() in its place. - + Improved trace macros, including tracing of heap usage. - + Remove one level of indirection when accepting interrupts on the PIC32MZ. - + Add Cortex-A9 GCC port layer. - + Add Xilinx Zynq demo application. - - -Changes between V7.5.3 and V7.6.0 released 18th November 2013 - - V7.6.0 changes some behaviour when the co-operative scheduler is used (when - configUSE_PREEMPTION is set to 0). It is important to note that the - behaviour of the pre-emptive scheduler is unchanged - the following - description only applies when configUSE_PREEMPTION is set to 0: - - WHEN configUSE_PREEMPTION IS SET TO 0 (which is in a small minority of - cases) a context switch will now only occur when a task places itself into - the Blocked state, or explicitly calls taskYIELD(). This differs from - previous versions, where a context switch would also occur when implicitly - moving a higher priority task out of the Blocked state. For example, - previously, WHEN PREEMPTION WAS TURNED OFF, if task A unblocks task B by - writing to a queue, then the scheduler would switch to the higher priority - task. Now, WHEN PREEMPTION IS TURNED OFF, if task A unblocks task B by - writing to a queue, task B will not start running until task A enters the - Blocked state or task A calls taskYIELD(). [If configUSE_PREEMPTION is not - set to 0, so the normal pre-emptive scheduler is being used, then task B - will start running immediately that it is moved out of the Blocked state]. - - Other changes: - - + Added a port layer and a demo project for the new PIC32MZ architecture. - + Update the PIC32MX port layer to re-introduce some ehb instructions that - were previously removed, add the ability to catch interrupt stack - overflows (previously only task stack overflows were trapped), and also - add the ability to catch an application task incorrectly attempting to - return from its implementing function. - + Make dramatic improvements to the performance of the Win32 simulator port - layer. - + Ensure tasks that are blocked indefinitely report their state as Blocked - instead of Suspended. - + Slight improvement to the Cortex-M4F port layers where previously one - register was inadvertently being saved twice. - + Introduce the xSemaphoreCreateBinary() API function to ensure consistency - in the semantics of how each semaphore type is created. It is no longer - recommended to use vSemaphoreCreateBinary() (the version prefixed with a - 'v'), although it will remain in the code for backward compatibility. - + Update the Cortex-M0 port layers to allow the scheduler to be started - without using the SVC handler. - + Added a build configuration to the PIC32MX MPLAB X demo project that - targets the PIC32 USB II starter kit. Previously all the build - configurations required the Explorer 16 hardware. - + Some of the standard demo tasks have been updated to ensure they execute - correctly with the updated co-operative scheduling behaviour. - + Added comprehensive demo for the Atmel SAM4E, including use of - FreeRTOS+UDP, FreeRTOS+FAT SL and FreeRTOS+CLI. - - FreeRTOS+ Changes: - - + Minor maintenance on FreeRTOS+UDP. - -Changes between V7.5.2 and V7.5.3 released October 14 2013 - - Kernel changes: - - + Prior to V7.5.x yields requested from the tick hook would occur in the - same tick interrupt - revert to that original behaviour. - + New API function uxQueueSpacesAvailable(). - + Introduced the prvTaskExitError() function to Cortex-M0, Cortex-M3/4 - and Cortex-M4F ports. prvTaskExitError() is used to trap tasks that - attempt to return from their implementing functions (tasks should call - vTaskDelete( NULL ); if they want to exit). - + The Cortex-M0 version of portSET_INTERRUPT_MASK_FROM_ISR and - portCLEAR_INTERRUPT_MASK_FROM_ISR are now fully nestable. - + Improved behaviour and robustness of the default Cortex-M tickless idle - behaviour. - + Add workaround for silicon errata PMU_CM001 in Infineon XMC4000 devices to - all Cortex-M4F ports. - + Add Cortex-M0 port for Keil. - + Updated Cortus port. - + Ensure _impure_ptr is initialised before the scheduler is started. - Previously it was not set until the first context switch. - - FreeRTOS+ changes: - - + Update FreeRTOS+UDP to V1.0.1 - including direct integration of the - FreeRTOS+Nabto task, improvements to the DHCP behaviour, and a correction - to the test that prevents the network event hook being called on the first - network down event. The FreeRTOS+UDP change history is maintained - separately. - + Correct the __NVIC_PRIO_BITS setting in the LPC18xx.h header files - provided in the NXP CMSIS library, then update the interrupts used by the - LPC18xx demos accordingly. - + Replace double quotes (") with single quotes (') in FreeRTOS+CLI help - strings to ensure the strings can be used with the JSON descriptions used - in the FreeRTOS+Nabto demos. - - Demo and miscellaneous changes: - - + Added demo for the Atmel SAMD20 Cortex-M0+. The demo includes - FreeRTOS+CLI - + Added a demo for the Infineon Cortex-M0 that can be built with the IAR - Keil and GCC tools. - + Updated the Infineon XMC4000 demos for IAR, Keil, GCC and Tasking tools, - with additional build configurations to directly support the XMC4200 and - XMC4400 devices, in addition to the previously supported XMC4500. - + Updated the demo application. - + Added additional trace macros traceMALLOC and traceFREE to track heap - usage. - -Changes between V7.5.0 and V7.5.2 released July 24 2013 - - V7.5.2 makes the new Cortex-M vPortCheckInterruptPriority() function - compatible with the STM32 standard peripheral driver library, and adds - an extra critical section to the default low power tickless mode - implementation. Only users of the STM32 peripheral library or the default - tickless implementation need update from version 7.5.0. - -Changes between V7.4.2 and V7.5.0 released July 19 2013 - - V7.5.0 is a major upgrade that includes multiple scheduling and efficiency - improvements, and some new API functions. - - Compatibility information for FreeRTOS users: - FreeRTOS V7.5.0 is backward compatible with FreeRTOS V7.4.0 with one - exception; the vTaskList() and vTaskGetRunTimeStats() functions are now - considered legacy, having been replaced by the single uxTaskGetSystemState() - function. configUSE_STATS_FORMATTING_FUNCTIONS must be set to 1 in - FreeRTOSConfig.h for vTaskList() and vTaskGetRunTimeStats() to be - available. - - Compatibility information for FreeRTOS port writers: - vTaskIncrementTick() is now called xTaskIncrementTick() (because it now - returns a value). - - Headline changes: - - + Multiple scheduling and efficiency improvements. - + Core kernel files now pass PC-Lint V8 static checking without outputting - any warnings (information on the test conditions will follow). - - New API functions: - - + uxTaskGetSystemState() http://www.freertos.org/uxTaskGetSystemState.html - + xQueueOverwrite() http://www.freertos.org/xQueueOverwrite.html - + xQueueOverwriteFromISR() - + xQueuePeekFromISR() - - The following ports and demos, which were previously available separately, - are now incorporated into the main FreeRTOS zip file download: - - + ARM Cortex-A9 IAR - + ARM Cortex-A9 ARM compiler - + Renesas RZ - + Microsemi SmartFusion2 - - New FreeRTOSConfig.h settings - http://shop.freertos.org/FreeRTOS_API_and_Configuration_Reference_s/1822.htm - - + configUSE_TIME_SLICING - + configUSE_NEWLIB_REENTRANT - + configUSE_STATS_FORMATTING_FUNCTIONS - + configINCLUDE_APPLICATION_DEFINED_PRIVILEGED_FUNCTIONS - - Other changes: - - + (MPU port only) The configINCLUDE_APPLICATION_DEFINED_PRIVILEGED_FUNCTIONS - options provides a mechanism that allows application writers to execute - certain functions in privileged mode even when a task is running in user - mode. - + Ports that support interrupt nesting now include a configASSERT() that - will trigger if an interrupt safe FreeRTOS function is called from an - interrupt that has a priority designated as above the maximum system/API - call interrupt priority. - + The included FreeRTOS+Trace recorder code has been updated to the latest - version, and the demo applications that use the trace recorder code have - been updated accordingly. - + The FreeRTOS Windows Simulator (MSVC version only) has been updated to - include a new basic 'blinky' build option in addition to the original - comprehensive build option. - + Improve RAM usage efficiency of heap_4.c and heap_2.c. - + Prevent heap_4.c from attempting to free memory blocks that were not - allocated by heap_4.c, or have already been freed. - + As FreeRTOS now comes with FreeRTOS+FAT SL (donated by HCC) the Chan FATfs - files have been removed from FreeRTOS/Demo/Common. - + Fix build error when R4 port is build in co-operative mode. - + Multiple port and demo application maintenance activities. - -Changes between V7.4.1 and V7.4.2 released May 1 2013 - - NOTE: There are no changes in the FreeRTOS kernel between V7.4.1 and V7.4.2 - - + Added FreeRTOS+FAT SL source code and demo project. The demo project - runs in the FreeRTOS Windows simulator for easy and hardware independent - experimentation and evaluation. See http://www.FreeRTOS.org/fat_sl - -Changes between V7.4.0 and V7.4.1 released April 18 2013 - - + To ensure strict conformance with the spec and ensure compatibility with - future chips data and instruction barrier instructions have been added to - the yield macros of Cortex-M and Cortex-R port layers. For efficiency - the Cortex-M port layer "yield" and "yield" from ISR are now implemented - separately as the barrier instructions are not required in the ISR case. - + Added FreeRTOS+UDP into main download. - + Reorganised the FreeRTOS+ directory so it now matches the FreeRTOS - directory with Source and Demo subdirectories. - + Implemented the Berkeley sockets select() function in FreeRTOS+UDP. - + Changed (unsigned) casting in calls to standard library functions with - (size_t) casting. - + Added the Atmel SAM4L and Renesas RX100 demos that demonstrates the - tickless (tick suppression) low power FreeRTOS features. - + Add a new RL78 IAR demo that targets numerous new RL78 chips and - evaluation boards. - + Adjusted stack alignment on RX200 ports to ensure an assert was not - falsely triggered when configASSERT() is defined. - + Updated the Cortex_M4F_Infineon_XMC4500_IAR demo to build with the latest - version of EWARM. - + Corrected header comments in the het.c and het.h files (RM48/TMS570 demo). - - -Changes between V7.3.0 and V7.4.0 released February 20 2013 - - + New feature: Queue sets. See: - http://www.FreeRTOS.org/Pend-on-multiple-rtos-objects.html - + Overhauled the default tickless idle mode implementation provided with the - ARM Cortex-M3 port layers. - + Enhanced tickless support in the core kernel code with the introduction of - the configEXPECTED_IDLE_TIME_BEFORE_SLEEP macro and the - eTaskConfirmSleepModeStatus() function. - + Added the QueueSet.c common demo/test file. Several demo applications - have been updated to use the new demo/test tasks. - + Removed reliance on the PLIB libraries from the MPLAB PIC32 port layer and - demo applications. - + Added the FreeRTOS+Trace recorder code to the MSVC Win32 demo. - + Renamed eTaskStateGet() to eTaskGetState() for consistency, and added a - pre-processor macro for backward compatibility with the previous name. - + Updated functions implemented in the core queue.c source file to allow - queue.h to be included from the .c file directly (this prevents compiler - warnings that were generated by some compilers). - + Updated the CCS Cortex-R4 port layer to replace the CLZ assembler function - with the CLZ compiler intrinsic that is provided by the latest versions of - the CCS ARM compiler. - + Updated all heap_x.c implementations to replace the structure that was - used to ensure the start of the heap was aligned with a more portable - direct C code implementation. - + Added support for PIC24 devices that include EDS. - + Minor optimisations to the PIC32 port layer. - + Minor changes to tasks.c that allow the state viewer plug-ins to display - additional information. - + Bug fix: Update prvProcessReceivedCommands() in timers.c to remove an - issue that could occur if the priority of the timer daemon task was set - below the priority of tasks that used timer services. - + Update the FreeRTOS+Trace recorder code to the latest version. - -Changes between V7.2.0 and V7.3.0 released October 31 2012 - - + Added ability to override the default scheduler task selection mechanism - with implementations that make use of architecture specific instructions. - + Added ability to suppress tick interrupts during idle time, and in so - doing, provide the ability to make use of architecture specific low power - functionality. - + Added the portSUPPRESS_TICKS_AND_SLEEP() macro and vTaskStepTick() helper - function. - + Added the configSYSTICK_CLOCK_HZ configuration constant. - + Reworked the Cortex-M3 and Cortex-M4F port layers for GCC, Keil and IAR to - directly support basic power saving functionality. - + Added hooks to allow basic power saving to be augmented in the application - by making use of chip specific functionality. - + Minor change to allow mutex type semaphores to be used from interrupts - (which would not be a normal usage model for a mutex). - + Change the behaviour of the interrupt safe interrupt mask save and restore - macros in the Cortex-M ports. The save macro now returns the previous - mask value. The restore macro now uses the previous mask value. These - changes are not necessary for the kernel's own implementation, and are - made purely because the macros were being used by application writers. - + Added eTaskStateGet() API function. - + Added port specific optimisations to the PIC32 port layer, and updated the - PIC32 demo applications to make use of this new feature. - + Added port specific optimisations to the Win32 simulator port. - + Added new ports and demo applications for the TI Hercules RM48 and TMS570 - safety microcontrollers. - + Added SAM3 demos targeting the ATSAM3S-EK2 and ATSAM3X-EK evaluation - boards. - + Updated the PIC32 MPLAB X project to manually set the compiler include - paths instead of using the IDE entry box following reports that the - include paths were somehow being deleted. - + Improved character handling in FreeRTOS+CLI. - -Changes between V7.1.1 and V7.2.0 released 14 August 2012 - - FreeRTOS V7.2.0 is backward compatible with FreeRTOS V7.1.2. - - + Added a FreeRTOS+ sub-directory. The directory contains some FreeRTOS+ - source code, and example projects that use the FreeRTOS Win32 simulator. - + Added a new example heap allocation implementation (heap_4.c) that - includes memory block coalescence. - + Added a demo that targets the Atmel SAM4S Cortex-M4 based microcontroller. - The demo is preconfigured to build using the free Atmel Studio 6 IDE and - GCC compiler. - + Added xSemaphoreTakeFromISR() implementation. - + The last parameter in ISR safe FreeRTOS queue and semaphore functions - (xHigherPriorityTaskWoken) is now optional and can be set to NULL if it - is not required. - + Update the IAR and MSP430X ports to clear all lower power mode bits before - exiting the tick interrupt [bug fix]. - + Allow xQueueReset() to be used, even when the queues event lists are not - empty. - + Added a vQueueDelete() handler for the FreeRTOS MPU port (this was - previously missing). - + Updated the vPortSVCHandler() functions in the FreeRTOS MPU port layer to - ensure it compiles with the latest ARM GCC compilers from Linaro. - + Updated the prvReadGP() function in the NIOS II port to ensure the compiler - can choose any register for the functions parameter (required at high - compiler optimisation levels). - + Add #error macros into the Keil and IAR Cortex-M ports to ensure they - cannot be built if the user has set configMAX_SYSCALL_INTERRUPT_PRIORITY - to 0. - + Added comments in the FreeRTOSConfig.h files associated with Cortex-M3 and - Cortex-M4 demos stating that the configMAX_SYSCALL_INTERRUPT_PRIORITY - parameter must not be set to 0. - + Introduce new INCLUDE_xQueueGetMutexHolder configuration constant - (defaulted to 0). - + Added two new list handling macros - for internal use only in upcoming new - products. - + Removed all mention of the legacy vTaskStartTrace and ulTaskEndTrace - macros. FreeRTOS+Trace supersedes the legacy trace. - + Added a configASSERT() into the vPortFree() function in heap_1.c as it is - invalid for the function to be called. - + Made the xRxLock and xTxLock members of the queue structure volatile. - This is probably not necessary, and is included as a precautionary - measure. - + Modify the assert() that checks to see if the priority passed into an - xTaskCreate() function is within valid bounds to permit the assert to be - used in the FreeRTOS MPU port. - + The software timer service (daemon) task is now created in a way that - to ensure compatibility with FreeRTOS MPU. - -Changes between V7.1.0 and V7.1.1 released May 1 2012 - - New ports: - - The following ports are brand new: - + Cortex-M3 Tasking - - The following ports have been available as separate downloads for a number - of months, but are now included in the main FreeRTOS download. - + Cortex-M0 IAR - + Cortex-M0 GCC - + Cortex-M4F GCC (with full floating point support) - - - New demos: - - The following demos are brand new: - + Renesas RX63N RDK (Renesas compiler) - - The following demos have been available as separate downloads for a number - of months, but are now included in the main FreeRTOS download. - + NXP LPC1114 GCC/LPCXpresso - + ST STM32F0518 IAR - + Infineon XMC4500 GCC/Atollic - + Infineon XMC4500 IAR - + Infineon XMC4500 Keil - + Infineon XMC4500 Tasking - - - Kernel miscellaneous / maintenance: - - + Introduced the portSETUP_TCB() macro to remove the requirement for the - Windows simulator to use the traceTASK_CREATE() macro, leaving the trace - macro available for use by FreeRTOS+Trace (http://www.FreeRTOS.org/trace). - + Added a new trace macro, traceMOVE_TASK_TO_READY_STATE(), to allow future - FreeRTOS+Trace versions to provide even more information to users. - + Updated the FreeRTOS MPU port to be correct for changes that were - introduced in FreeRTOS V7.1.0. - + Introduced the xQueueReset() API function. - + Introduced the xSemaphoreGetMutexHolder() API function. - + Tidy up various port implementations to add the static key word where - appropriate, and remove obsolete code. - + Slight change to the initial stack frame given to the RX600 ports to allow - them to be used in the Eclipse based E2Studio IDE without confusing GDB. - + Correct the alignment given to the initial stack of Cortex-M4F tasks. - + Added a NOP following each DINT instruction on MSP430 devices for strict - conformance with the instructions on using DINT. - + Changed the implementation of thread deletes in the Win32 port to prevent - the port making use of the traceTASK_DELETE() trace macros - leaving this - macro free for use by FreeRTOS+Trace. - + Made some benign changes to the RX600 Renesas compiler port layer to - ensure the code can be built to a library without essential code being - removed by the linker. - + Reverted the change in the name of the uxTaskNumber variable made in - V7.1.0 as it broke the IAR plug-in. - - - Demo miscellaneous / maintenance: - - + The command interpreter has now been formally released as FreeRTOS+CLI, - and been moved out of the main FreeRTOS download, to instead be available - from the FreeRTOS+ Ecosystem site http://www.FreeRTOS.org/plus. - + flash_timer.c/h has been added to the list of standard demo tasks. This - performs the same functionality as the flash.c tasks, but using software - timers in place of tasks. - + Upgraded the PIC32 demo as follows: Changes to how the library functions - are called necessitated by the new compiler version, addition of MPLAB X - project with PIC32MX360, PIC32MX460 and PIC32MX795 configurations, - addition of simply blinky demo, updated FreeRTOSConfig.h to include more - parameters, addition of hook function stubs. - + The MSP430X IAR and CCS demos have been updated to ensure the power - settings are correct for the configured CPU frequency. - + Rowley CrossWorks projects have been updated to correct the "multiple - definition of ..." warnings introduced when the toolchain was updated. - + Updated various FreeRTOSConfig.h header files associated with projects - that build with Eclipse to include a #error statement informing the user - that the CreateProjectDirectoryStructure.bat batch file needs to be - executed before the projects can be opened. - + Renamed directories that included "CCS4" in their name to remove the '4' - and instead just be "CCS". This is because the demo was updated and - tested to also work with later Code Composer Studio versions. - + Updated the TCP/IP periodic timer frequency in numerous uIP demos to be - 50ms instead of 500ms. - -Changes between V7.0.2 and V7.1.0 released December 13 2011 - - New ports: - - + Cortex-M4F IAR port. - + Cortex-M4F Keil/RVDS port. - + TriCore GCC port. - - New demos: - - + NXP LPC4350 using the Keil MDK, and demonstrated on a Hitex development - board. - + ST STM32F407 using the IAR Embedded Workbench for ARM, and demonstrated on - the IAR STM32F407ZG-SK starter kit. - + Infineon TriCore TC1782, using the GCC compiler, demonstrated on the - TriBoard TC1782 evaluation board. - + Renesas RX630, using the Renesas compiler and HEW, demonstrated on an - RX630 RSK (Renesas Starter Kit). - - Miscellaneous / maintenance: - - + Removed all calls to printf() from the K60/IAR Kinetis demo so the project - can execute stand alone - without being connected to the debugger. - + Completed the command interpreter framework. Command handlers now receive - the entire command string, giving them direct access to parameters. - Utility functions are provided to check the number of parameters, and - return parameter sub-strings. - + The previously documented fix for the bug in xTaskResumeFromISR() that - effected (only) ports supporting interrupt nesting has now been - incorporated into the main release. - + The portALIGNMENT_ASSERT_pxCurrentTCB() definition has been added to allow - specific ports to skip the second stack alignment check when a task is - created. This is because the second check is not appropriate for some - ports - including the new TriCore port where the checked pointer does not - actually point to a stack. - + The portCLEAN_UP_TCB() macro has been added to allow port specific clean - up when a task is deleted - again this is required by the TriCore port. - + Various other minor changes to ensure warning free builds on a growing - number of microcontroller and toolchain platforms. This includes a - (benign) correction to the prototype of the - vApplicationStackOverflowHook() definition found in lots of recent demos. - - Trace system: - - + The legacy trace mechanism has been completely removed - it has been - obsolete for the years since the trace macros were introduced. The - configuration constant configUSE_TRACE_FACILITY is now used to optionally - include additional queue and task information. The additional information - is intended to make the trace mechanism more generic, and allow the trace - output to provide more information. When configUSE_TRACE_FACILITY is set - to 1: - - the queue structure includes an additional member to hold the queue - type, which can be base, mutex, counting semaphore, binary semaphore - or recursive mutex. - - the queue structure includes an additional member to hold a queue - number. A trace tool can set and query the queue number for its own - purposes. The kernel does not use the queue number itself. - - the TCB structure includes an additional member to hold a task number - number. A trace tool can set and query the task number for its own - purposes. The kernel does not use the task number itself. - + Queues and all types of semaphores are now automatically allocated their - type as they are created. - + Added two new trace macros - traceTASK_PRIORITY_INHERIT() and - traskTASK_PRIORITY_DISINHERIT(). - + Updated the traceQUEUE_CREATE_FAILED() macro to take a parameter that - indicates the type of queue, mutex, or semaphore that failed to be - created. - + The position from which traceCREATE_MUTEX() is called has been moved from - after the call to xQueueGenericSend() [within the same function] to before - the call. This ensures the trace events occur in the correct order. - + The value passed into tracePRIORITY_SET() has been corrected for the case - where vTaskPrioritySet() is called with a null parameter. - -Changes between V7.0.1 and V7.0.2 released September 20 2011 - - New ports: - - + The official FreeRTOS Renesas RX200 port and demo application have been - incorporated into the main FreeRTOS zip file download. - + The official FreeRTOS Renesas RL78 port and demo application have been - incorporated into the main FreeRTOS zip file download. - + The official FreeRTOS Freescale Kinetis K60 tower demo application has - been incorporated into the main FreeRTOS zip file download. This includes - an embedded web server example. - + A new Microblaze V8 port layer has been created to replace the older, now - deprecated, port layer. The V8 port supports V8.x of the Microblaze IP, - including exceptions, caches, and the floating point unit. A new - Microblaze demo has also been added to demonstrate the new Microblaze V8 - port layer. The demo application was created using V13.1 of the Xilinx - EDK, and includes a basic embedded web server that uses lwIP V1.4.0. - + The official FreeRTOS Fujitsu FM3 MB9A310 demo application has been - incorporated into the main FreeRTOS zip file download. Projects are - provided for both the IAR and Keil toolchains. - - - API additions: - - + xTaskGetIdleTaskHandle() has been added. - + xTaskGetTimerDaemonTaskHandle() has been added. - + pcTaskGetTaskName() has been added. - + vSemaphoreDelete() macro has been added to make it obvious how to delete - a semaphore. In previous versions vQueueDelete() had to be used. - + vTaskCleanUpResources() has been removed. It has been obsolete for a - while. - + portPOINTER_SIZE_TYPE has been introduced to prevent compiler warnings - being generated when the size of a pointer does not match the size of - the stack type. This will (has already) be used in new ports, but will - not be retrofitted to existing ports until the existing port itself is - updated. - - Other updates and news: - - + The core files have all been modified to tighten the coding standard even - further. These are style, not functional changes. - + All ARM7 port layers have been slightly modified to prevent erroneous - assert() failures when tasks are created and configASSERT() is defined. - + All ARM IAR projects have been updated to build with the latest V6.2.x - versions of the IAR Embedded Workbench for ARM tools (EWARM). This was - necessary due to a change in the way EWARM uses the CMSIS libraries. - + The PIC32 port layer has been updated in preparation for V2 of the C32 - compiler. - + The old Virtex-4 Microblaze demo has been marked as deprecated. Please - use the brand new Spartan-6 port and demo in its place. - + The bones of a new generic command interpreter is located in - FreeRTOS/Demo/Common/Utils/CommandInterpreter.c. This is still a work in - progress, and not documented. It is however already in use. It will be - documented in full when the projects that are already using it are - completed. - + A couple of new standard demos have been included. First, a version of - flop.c called sp_flop.c. This is similar to flop.c, but uses single - precision floats in place of double precision doubles. This allows the - for testing ports to processors that have only single precision floating - point units, and revert to using emulated calculations whenever a double - is used. Second, comtest_strings.c has been included to allow the test - of UART drivers when an entire string is transmitted at once. The - previous comtest.c only used single character transmission and reception. - + lwIP V1.4.0 is now included in the FreeRTOS/Demo/Common directory, and - used by a couple of new demos. - -Changes between V7.0.0 and V7.0.1 released May 13 2011 - - + Added a Fujitsu FM3 demo application for both the IAR and Keil tool - chains. - + Added a SmartFusion demo application for all of the IAR, Keil and - SoftConsole (GCC/Eclipse) tool chains. - + Updated the RX600 port and demo applications to take into account the - different semantics required when using the latest (V1.0.2.0) version of - the Renesas compiler. - + Modified the RX600 Ethernet driver slightly to make it more robust under - heavy load, and updated the uIP handling task to make use of the FreeRTOS - software timers. - + Slightly changed the PIC32 port layer to move an ehb instruction in line - with the recommendations of the MIPS core manual, and ensure 8 byte stack - alignment is truly always obtained. - + Changed the behaviour when tasks are suspended before the scheduler has - been started. Before, there needed to be at least one task that was not - in the suspended state. This is no longer the case. - -Changes between V6.1.1 and V7.0.0 released April 8 2011 - - FreeRTOS V7.0.0 is backward compatible with FreeRTOS V6.x.x - - Main changes: - - + Introduced a new software timer implementation. - + Introduced a new common demo application file to exercise the new timer - implementation. - + Updated the Win32/MSVC simulator project to include the new software timer - demo tasks and software timer tick hook test. Much simpler software timer - demonstrations are included in the demo projects for both of the new ports - (MSP430X with CCS4 and STM32 with TrueStudio). - + Various enhancements to the kernel implementation in tasks.c. These are - transparent to users and do not effect the pre-existing API. - + Added calls to configASSERT() within the kernel code. configASSERT() is - functionally equivalent to the standard C assert() macro, but does not - rely on the compiler providing assert.h. - - Other changes: - - + Updated the MSP430X IAR port and demo project to include support for the - medium memory model. - + Added a demo project for the MSP430X that targets the MSP430X Discovery - board and uses the Code Composer Studio 4 tools. This demo includes use - of the new software timer implementation. - + Added an STM32F100RB demo project that targets the STM32 Discovery Board - and uses the TrueStudio Eclipse based IDE from Atollic. - + Removed some compiler warnings from the PSoC demo application. - + Updated the PIC32 port layer to ensure the - configMAX_SYSCALL_INTERRUPT_PRIORITY constant works as expected no matter - what its value is (within the valid range set by the microcontroller - kernel). - + Updated the PIC24, dsPIC and PIC32 projects so they work with the latest - MPLAB compiler versions from Microchip. - + Various cosmetic changes to prepare for a standards compliance statement - that will be published after the software release. - - -Changes between V6.1.0 and V6.1.1 released January 14 2011 - - + Added two new Windows simulator ports. One uses the free Microsoft Visual - Studio 2010 express edition, and the other the free MingW/Eclipse - environment. Demo projects are provided for both. - + Added three demo projects for the PSoC 5 (CYAC5588). These are for the - GCC, Keil, and RVDS build tools, and all use the PSoC Creator IDE. - + Added a demo for the low power STM32L152 microcontroller using the IAR - Embedded Workbench. - + Added a new port for the MSP430X core using the IAR Embedded Workbench. - + Updated all the RX62N demo projects that target the Renesas Demonstration - Kit (RDK) to take into account the revered LED wiring on later hardware - revisions, and the new J-Link debug interface DLL. - + Updated all the RX62N demo projects so the IO page served by the example - embedded web server works with all web browsers. - + Updated the Red Suite projects to work with the up coming Red Suite - release, and to use a more recent version of the CMSIS libraries. - + Added the traceTAKE_MUTEX_RECURSIVE_FAILED() trace macro. - + Removed the (pointless) parameter from the traceTASK_CREATE_FAILED() - trace macro. - + Introduced the portALT_GET_RUN_TIME_COUNTER_VALUE() macro to compliment - the already existing portGET_RUN_TIME_COUNTER_VALUE(). This allows for - more flexibility in how the time base for the run time statistics feature - can be implemented. - + Added a "cpsie i" instruction before the "svc 0" instruction used to start - the scheduler in each of the Cortex M3 ports. This is to ensure that - interrupts are globally enabled prior to the "svc 0" instruction being - executed in cases where interrupts are left disabled by the C start up - code. - + Slight optimisation in the run time stats calculation. - -Changes between V6.0.5 and V6.1.0 released October 6 2010 - - + Added xTaskGetTickCountFromISR() function. - + Modified vTaskSuspend() to allow tasks that have just been created to be - immediately suspended even when the kernel has not been started. This - allows them to effectively start in the Suspended state - a feature that - has been asked for on numerous occasions to assist with initialisation - procedures. - + Added ports for the Renesas RX62N using IAR, GCC and Renesas tool suites. - + Added a STM32F103 demo application that uses the Rowley tools. - + Under specific conditions xFreeBytesRemaining within heap_2.c could end up - with an incorrect value. This has been fixed. - + xTaskCreateGeneric() has a parameter that can be used to pass the handle - of the task just created out to the calling task. The assignment to this - parameter has been moved to ensure it is assigned prior to the newly - created having any possibility of executing. This takes into account the - case where the assignment is made to a global variable that is accessed by - the newly created task. - + Fixed some build time compiler warnings in various FreeTCPIP (based on - uIP) files. - + Fixed some build time compiler warnings in Demo/Common/Minimal/IntQueue.c. - -Changes between V6.0.4 and V6.0.5 released May 17 2010 - - + Added port and demo application for the Cortus APS3 processor. - -Changes between V6.0.3 and V6.0.4 released March 14 2010 - - + All the contributed files that were located in the Demo/Unsupported_Demos - directory have been removed. These files are instead now available in the - new Community Contributions section of the FreeRTOS website. See - http://www.freertos.org/RTOS-contributed-ports.html - + The project file located in the Demo/CORTEX_STM32F107_GCC_Rowley directory - has been upgraded to use V2.x of the Rowley Crossworks STM32 support - package. - + An initial Energy Micro EFM32 demo has been included. This will be - updated over the coming months to make better use of the low power modes - the EFM32 provides. - -Changes between V6.0.2 and V6.0.3 released February 26 2010 - - + SuperH SH7216 (SH2A-FPU) port and demo application added. - + Slight modification made to the default implementation of - pvPortMallocAligned() and vPortFreeAligned() macros so by default they - just call pvPortMalloc() and vPortFree(). The macros are only needed to - be defined when a memory protection unit (MPU) is being used - and then - only depending on other configuration settings. - -Changes between V6.0.1 and V6.0.2 released January 9th 2010 - - + Changed all GCC ARM 7 ports to use 0 as the SWI instruction parameter. - Previously the parameter was blank and therefore only an implicit 0 but - newer GCC releases do not permit this. - + Updated IAR SAM7S and SAM7X ports to work with IAR V5.40. - + Changed the stack alignment requirement for PIC32 from 4 bytes to 8 bytes. - + Updated prvListTaskWithinSingleList() is it works on processors where the - stack grows up from low memory. - + Corrected some comments. - + Updated the startup file for the RVDS LPC21xx demo. - -Changes between V6.0.0 and V6.0.1 released November 15th 2009 - - + Altered pxPortInitialiseStack() for all Cortex-M3 ports to ensure the - stack pointer is where the compiler expects it to be when a task first - starts executing. - - The following minor changes only effect the Cortex-M3 MPU port: - - + portRESET_PRIVILEGE() assembly macro updated to include a clobber list. - + Added prototypes for all the privileged function wrappers to ensure no - compile time warnings are generated no matter what the warning level - setting. - + Corrected the name of portSVC_prvRaisePrivilege to - portSVC_RAISE_PRIVILEGE. - + Added conditional compilation into xTaskGenericCreate() to prevent some - compilers issuing warnings when portPRIVILEGE_BIT is defined as zero. - - -Changes between V5.4.2 and V6.0.0 released October 16th 2009 - - FreeRTOS V6 is backward compatible with FreeRTOS V5.x. - - Main changes: - - + FreeRTOS V6 is the first version to include memory protection unit (MPU) - support. Two ports now exist for the Cortex M3, the standard FreeRTOS - which does not include MPU support, and FreeRTOS-MPU which does. - + xTaskCreateRestricted() and vTaskAllocateMPURegions() API functions added - in support of FreeRTOS-MPU. - + Wording for the GPL exception has been (hopefully) clarified. Also the - license.txt file included in the download has been fixed (the previous - version contained some corruption). - - Other changes: - - + New API function xPortGetFreeHeapSize() added to heap_1.c and heap_2.c. - + ARM7 GCC demo interrupt service routines wrappers have been modified to - call the C portion using an __asm statement. This prevents the function - call being inlined at higher optimisation levels. - + ARM7 ports now automatically set the THUMB bit if necessary when - setting up the initial stack of a task - removing the need for - THUMB_INTERWORK to be defined. This also allows THUMB mode and ARM mode - tasks to be mixed more easily. - + All ARM7/9 ports now have portBYTE_ALIGNMENT set to 8 by default. - + Various demo application project files have been updated to be up to date - with the latest IDE versions. - + The linker scripts used with command line GCC demos have been updated to - include an eh_frame section to allow their use with the latest Yagarto - release. Likewise the demo makefiles have been updated to include - command line options to reduce or eliminate the eh_frame section all - together. - + The definition of portBYTE_ALIGNMENT_MASK has been moved out of the - various memory allocation files and into the common portable.h header - file. - + Removed unnecessary use of portLONG, portSHORT and portCHAR. - + Added LM3Sxxxx demo for Rowley CrossWorks. - + Posix simulator has been upgraded - see the corresponding WEB page on the - FreeRTOS.org site. - - -Changes between V5.4.1 and V5.4.2 released August 9th 2009 - - + Added a new port and demo app for the Altera Nios2 soft core. - + Added LPC1768 demo for IAR. - + Added a USB CDC demo to all LPC1768 demos (Code Red, CrossWorks and IAR). - + Changed clock frequency of LPC1768 demos to 99MHz. - -Changes between V5.4.0 and V5.4.1 released July 25th 2009 - - + New hook function added. vApplicationMallocFailedHook() is (optionally) - called if pvPortMalloc() returns NULL. - + Additional casting added to xTaskCheckForTimeOut(). This prevents - problems that can arise should configUSE_16_BIT_TICKS be set to 1 on a - 32 bit architecture (which would probably be a mistake, anyway). - + Corrected the parameter passed to NVIC_SetPriority() to set the MAC - interrupt priority in both LPC1768 demos. - + Decreased the default setting of configMINIMAL_STACK_SIZE in the PIC32 - demo application to ensure the heap space was not completely consumed - before the scheduler was started. - -Changes between V5.3.1 and V5.4.0 released July 13th 2009 - - + Added Virtex5 / PPC440 port and demos. - + Replaced the LPC1766 Red Suite demo with an LPC1768 Red Suite demo. The - original demo was configured to use engineering samples of the CPU. The - new demo has an improved Ethernet driver. - + Added LPC1768 Rowley demo with zero copy Ethernet driver. - + Reworked byte alignment code to ensure 8 byte alignment works correctly. - + Set configUSE_16_BIT_TICKS to 0 in the PPC405 demo projects. - + Changed the initial stack setup for the PPC405 to ensure the small data - area pointers are setup correctly. - -Changes between V5.3.0 and V5.3.1 released June 21st 2009 - - + Added ColdFire V1 MCF51CN128 port and WEB server demo. - + Added STM32 Connectivity Line STM32107 Cortex M3 WEB server demo. - + Changed the Cortex M3 port.c asm statements to __asm so it can be - compiled using Rowley CrossWorks V2 in its default configuration. - + Updated the Posix/Linux simulator contributed port. - -Changes between V5.2.0 and V5.3.0 released June 1st 2009 - - Main changes: - - + Added new (optional) feature that gathers statistics on the amount of CPU - time used by each task. - + Added a new demo application for the Atmel AT91SAM3U Cortex-M3 based - microcontroller. - + Added a new demo application for the NXP LPC1766 Cortex-M3 based - microcontroller. - + Added a contributed port/demo that allows FreeRTOS to be 'simulated' in a - Linux environment. - - Minor changes: - + Updated the Stellaris uIP WEB server demos to include the new run time - statistics gathering feature - and include a served WEB page that - presents the information in a tabular format. - + Added in the lwIP port layer for the Coldfire MCF52259. - + Updated the CrossWorks LPC2368 WEB server to include an image in the - served content. - + Changed some of the timing in the initialisation of the LPC2368 MAC to - permit its use on all part revisions. - + Minor modifications to the core uIP code to remove some compiler warnings. - + Added xTaskGetApplicationTaskTag() function and updated the OpenWatcom - demo to make use of the new function. - + Added contributed demos for AVR32 AP7000, STM32 Primer 2 and STM32 using - Rowley Crossworks. - + Heap_1.c and Heap_2.c used to define structures for the purpose of data - alignment. These have been converted to unions to save a few bytes of - RAM that would otherwise be wasted. - + Remove the call to strncpy() used to copy the task name into the TCB when - the maximum task name is configured to be 1 byte long. - -Changes between V5.1.2 and V5.2.0 released March 14th 2009 - - + Optimised the queue send and receive functions (also used by semaphores). - + Replaced the standard critical sections used to protect BIOS calls in the - PC port to instead use scheduler locks. This is because the BIOS calls - always return with interrupts enabled. - + Corrected unclosed comments in boot.s. - -Changes between V5.1.1 and V5.1.2 released February 9th 2009 - - + Added NEC V850ES port and demo. - + Added NEC 78K0R port and demo. - + Added MCF52259 port and demo. - + Added the AT91SAM9XE port and demo. - + Updated the MCF52233 FEC driver to work around a silicon bug that - prevents the part auto negotiating some network parameters. - + Minor modifications to the MCF52233 makefile to permit it to be used - on Linux hosts. - + Updated the STM32 primer files to allow them to be built with the latest - version of the RIDE tools. - + Updated the threads.js Java script used for kernel aware debugging in - the Rowley CrossWorks IDE. - - -Changes between V5.1.0 and V5.1.1 released November 20, 2008 - - + Added Coldfire MCF52233 WEB server demo using GCC and Eclipse. - + Added IAR MSP430 port and demo. - + Corrected several compiler time issues that had crept in as tool versions - change. - + Included FreeRTOS-uIP - a faster uIP. This is not yet complete. - -Changes between V5.0.4 and V5.1.0 released October 24, 2008 - - + Added a new port and demo application for the ColdFire V2 core using the - CodeWarrior development tools. - + Replaced the ARM7 demo that used the old (and now no longer supported) - Keil compiler with a new port that uses the new Keil/RVDS combo. - + Stack overflow checking now works for stacks that grow up from low - memory (PIC24 and dsPIC). - + BUG FIX - set the PIC32 definition of portSTACK_GROWTH to the correct - value of -1. - + MSP430 port layers have been updated to permit tasks to place the - microcontroller into power down modes 1 to 3. The demo applications have - likewise been updated to demonstrate the new feature. - + Replaced the two separate MSP430/Rowley port layers with a single and more - flexible version. - + Added more contributed ports, including ports for NEC and SAM9 - microcontrollers. - + Changed the linker script used in the LPC2368 Eclipse demo. - -Changes between V5.0.3 and V5.0.4 released September 22, 2008 - - + Completely re-written port for ColdFire GCC. - + Bug fix: All Cortex M3 ports have a minor change to the code that sets - the pending interrupt. - + Some header files require that FreeRTOS.h be included prior to their - inclusion. #error message have been added to all such header file - informing users to the cause of the compilation error should the headers - not be included in the correct order. - -Changes between V5.0.2 and V5.0.3 released July 31, 2008 - - Changes relating to the Cortex M3: - - + Added configMAX_SYSCALL_INTERRUPT_PRIORITY usage to all the Cortex M3 - ports and demos. See the port documentation pages on the FreeRTOS.org - WEB site for full usage information. - + Improved efficiency of Cortex M3 port even further. - + Ensure the Cortex M3 port works no matter where the vector table is - located. - + Added the IntQTimer demo/test tasks to a demo project for each CM3 port - (Keil, GCC and IAR) to test the new configMAX_SYSCALL_INTERRUPT_PRIORITY - functionality. - + Added the mainINCLUDE_WEB_SERVER definition to the LM3SXXXX IAR and Keil - projects to allow the WEB server to be conditionally excluded from the - build and therefore allow use of the KickStart (code size limited) - compiler version. - - Other changes: - - + Moved the PIC24 and dsPIC versions of vPortYield() from the C file to - an assembly file to allow use with all MPLAB compiler versions. This also - allows the omit-frame-pointer optimisation to be turned off. - -Changes between V5.0.0 and V5.0.2 released May 30, 2008 - - + Updated the PIC32 port to allow queue API calls to be used from - interrupts above the kernel interrupt priority, and to allow full - interrupt nesting. Task stack usages has also been reduced. - + Added a new PowerPC port that demonstrates how the trace macros can be - used to allow the use of a floating point co-processor. The - traceTASK_SWITCHED_OUT() and traceTASK_SWITCHED_INT() macros are used to - save and restore the floating point context respectively for those tasks - that actually use floating point operations. - + BUG FIX: The first PPC405 port contained a bug in that it did not leave - adequate space above the stack for the backchain to be saved when a task - started to execute for the first time. - + Updated queue.c to add in the means to allow interrupt nesting and for - queue API functions to be called from interrupts that have a priority - above the kernel priority. This is only supported on PIC32 ports thus - far. - + Fixed the compiler warnings that were generated when the latest version - of WinAVR was used. - + Remove all inline usage of 'inline' from the core kernel code. - + Added the queue registry feature. The queue registry is provided as a - means for kernel aware debuggers to locate queue definitions. It has no - purpose unless you are using a kernel aware debugger. The queue registry - will only be used when configQUEUE_REGISTRY_SIZE is greater than zero. - + Added the ST Cortex-M3 drivers into the Demo/Common/Drivers directory to - prevent them from having to be included in multiple demos. - + Added a Keil STM32 demo application. - + Changed the blocktim.c test files as it is no longer legitimate for all - ports to call queue API functions from within a critical section. - + Added the IntQueue.c test file to test the calling of queue API functions - from different interrupt priority levels, and test interrupt nesting. - -Changes between V5.0.0 and V5.0.1 - - + V5.0.1 was a customer specific release. - -Changes between V4.8.0 and V5.0.0 released April 15, 2008 - - *** VERY IMPORTANT INFORMATION ON UPGRADING TO FREERTOS.ORG V5.0.0 *** - - The parameters to the functions xQueueSendFromISR(), xQueueSendToFrontFromISR(), - xQueueSendToBackFromISR() and xSemaphoreGiveFromISR() have changed. You must - update all calls to these functions to use the new calling convention! Your - compiler might not issue any type mismatch warnings! - - - See http://www.FreeRTOS.org/upgrading.html for full information. - - - Other changes: - - + Support added for the new Luminary Micro LM3S3768 and LM3S3748 Cortex-M3 - microcontrollers. - + New task hook feature added. - + PowerPC demo updated to use version 10.1 of the Xilinx EDK. - + Efficiency gains within the PIC32 port layer. - -Changes between V4.7.2 and V4.8.0 released March 26 2008 - - + Added a Virtex4 PowerPC 405 port and demo application. - + Added optional stack overflow checking and new - uxTaskGetStackHighWaterMark() function. - + Added new xQueueIsQueueEmptyFromISR(), xQueueIsQueueFullFromISR() and - uxQueueMessagesWaitingFromISR() API functions. - + Efficiency improvements to the Cortex-M3 port layer. NOTE: This - requires that an SVC handler be installed in the application. - + Efficiency improvements to the queue send and receive functions. - + Added new trace macros. These are application definable to provide - a flexible trace facility. - + Implemented the configKERNEL_INTERRUPT_PRIORITY within the Keil Cortex - M3 port layer (bringing it up to the same standard as the IAR and GCC - versions). - + Ports that used the arm-stellaris-eabi-gcc tools have been converted to - use the arm-non-eabi-gcc tools. - -Changes between V4.7.1 and V4.7.2 released February 21, 2008 - - + Added Fujitsu MB91460 port and demo. - + Added Fujitsu MB96340 port and demo. - + Tidied up the capitalisation of include files to facilitate builds on - Linux hosts. - + Removed some redundant casting that was generating warnings - but was - included to remove warnings on other compilers. - -Changes between V4.7.0 and V4.7.1 released February 3, 2008 - - + Updated all IAR ARM projects to use V5.11 of the IAR Embedded Workbench - for ARM. - + Introduced recursive semaphore feature. - + Updated LPC2368 demos to take into account silicon bugs in old chip - revisions. - + Updated STR9 uIP port to manually set the net mask and gateway addresses. - + Updating demos to allow more to run with the co-operative scheduler. - + Fixed co-operative scheduler behaviour upon the occurrence of a tick - interrupt while the scheduler was suspended. - + Updated documentation contained within semphr.h. - + ARM7 GCC ports no longer use the IRQ attribute. - -Changes between V4.6.1 and V4.7.0 released December 6, 2007 - - + Introduced the counting semaphore macros and demo source files. The - Open Watcom PC project has been updated to include the new demo. See - the online documentation for more information. - + Introduced the 'alternative' queue handling API and demo source files. - The Open Watcom PC project has been updated to include the new demo - source files. See the online documentation for more information. - + Added AT91SAM7X Eclipse demo project. - + Added the STM32 primer demo project for the GCC compiler and Ride IDE. - + Removed the .lock files that were mistakenly included in the V4.6.1 - eclipse workspaces. - -Changes between V4.6.0 and V4.6.1 released November 5 2007 - - + Added support for the MIPS M4K based PIC32. - + Added 'extern "C"' to all the header files to facilitate use with C++. - -Changes between V4.5.0 and V4.6.0 released October 28 2007 - - + Changed the method used to force a context switch within an ISR for the - ARM7/9 GCC ports only. The portENTER_SWITCHING_ISR() and - portEXIT_SWITCHING_ISR() macros are no longer supported. This is to - ensure correct behaviour no matter which GCC version is used, with or - without the -fomit-frame-pointer option, and at all optimisation levels. - + Corrected the prototype for xQueueGenericSend() within queue.h. - -Changes between V4.4.0 and V4.5.0 released September 17 2007 - - + Added the xQueueSendToFront(), xQueueSendToBack() and xQueuePeek() - functionality. These should now be used in preference to the old - xQueueSend() function - which is maintained for backward compatibility. - + Added Mutex functionality. The behaviour of mutexes is subtly different - to the already existing binary semaphores as mutexes automatically - include a priority inheritance mechanism. - + Added the GenQTest.c and QPeek.c to test and demonstrate the behaviour - of the new functionality. - + Updated the LM3Sxxxx and PC ports to include the new GenQTest.c and - QPeek.c files. - + Updated the GCC port for the Cortex M3 to include the - configKERNEL_INTERRUPT_PRIORITY functionality. This was previously only - included in the IAR port. - + Optimised the GCC and IAR port layer code - specifically the context - switch code. - + Consolidated the LM3Sxxxx EK demos for all development tools into a - single project that automatically detects which version of the EK the - application is executing on. - + Added Eclipse support for LM3Sxxxx evaluation kits. - + Added Eclipse support for the Keil LPC2368 evaluation kit. - + Added the Demo/Drivers directory to hold code that is common to multiple - demo application projects. - + Included some minor bug fixes in the uIP 1.0 code. - + Added an lwIP demo for the STR9 - thanks ST for assistance. - + Updated the AVR32 port to ensure correct behaviour with full compiler - optimisation. - + Included binaries for OpenOCD FTDI and parallel port interfaces. - -Changes between V4.4.0 and V4.3.1 released July 31, 2007 - - + Added AVR32 UC3B demo application. - + Updated AVR32 UC3A port and demo applications. - + Added IAR lwIP demo for AVR32 UC3A. - + Updated listGET_OWNER_OF_NEXT_ENTRY() to assist compiler optimisation - (thanks Niu Yong for making the suggestion). - + Added xTaskGetSchedulerState() API function. - + BUG FIX: Corrected behaviour when tasks that are blocked indefinitely - have their block time adjusted (within xQueueSend() and xQueueReceive()), - and are the subject of a call the vTaskResume() when they are not - actually in the Suspended state (thanks Dan Searles for reporting the - issues). - - -Changes between V4.3.0 and V4.3.1 released June 11, 2007 - - + Added STMicroelectronics STM32 Cortex-M3 demo application. - + Updated ustdlib.c for the GCC LM3S6965 demo. - -Changes between V4.2.1 and V4.3.0 released June 5, 2007 - - + Introduced configKERNEL_INTERRUPT_PRIORITY to the IAR Cortex-M3, PIC24 - and dsPIC ports. See the LM3S6965 and PIC24 demo application - documentation pages for more information. - + Updated the PIC24 and dsPIC demos to build with V3.0 of the PIC30 GCC - tools, and changed the demo applications. - + Added demos for the new Ethernet and CAN enabled Luminary Micro Stellaris - microcontrollers. - + Corrected bug in uIP the demos that prevented frames of approximately 1480 - bytes and over from being transmitted. - + Included the LPC2368/uIP/Rowley demo into the main FreeRTOS.org - download. - + Update to WizC PIC18 port to permit its use with version 14 of the - compiler. Thanks Marcel! - -Changes between V4.2.1 and V4.2.0 released April 2, 2007 - - + Added AVR32 AT32UC3A ports for GCC and IAR. - + Added -fomit-frame-pointer option to lwIP SAM7X demo makefile. - + Moved location of call to LCD_Init() in STR9 demo to ensure it is only - called after the scheduler has been started. - -Changes between V4.1.3 and V4.2.0 released February 8, 2007 - - + Changes to both task.c and queue.c as a result of testing performed on - the SafeRTOS code base. - + Added Cortex-M3 LM3S811 demos for GCC and IAR tools. - -Changes between V4.1.2 and V4.1.3 released November 19, 2006 - - + Added STR750 ARM7 port using the Raisonance RIDE/GCC tools. - + Added -fomit-frame-pointer option to Rowley ARM7 demos as work around - to GCC bug at some optimisation levels. - + Altered the way the heap is defined in the LM3S811 Keil demo to prevent - the RAM usage from counting toward the code size limit calculation. - + CO-ROUTINE BUG FIX: Removed the call to prvIsQueueEmpty from within - xQueueCRReceive as it exited with interrupts enabled. Thanks Paul Katz. - + Tasks that block on events with a timeout of portMAX_DELAY are now - blocked indefinitely if configINCLUDE_vTaskSuspend is defined. - Previously portMAX_DELAY was just the longest block time possible. This - is still the case if configINCLUDE_vTaskSuspend is not defined. - + Minor changes to some demo application files. - -Changes between V4.1.1 and V4.1.2 released October 21, 2006 - - + Added 16bit PIC ports and demos. - + Added STR750 port and demo. - - -Changes between V4.1.0 and V4.1.1 released September 24, 2006 - - + Added the Luminary Micro Stellaris LM3S811 demo application. - -Changes between V4.0.5 and V4.1.0 released August 28, 2006 - - + Prior to V4.1.0, under certain documented circumstances, it was possible - for xQueueSend() and xQueueReceive() to return without having completed - and without their block time expiring. The block time effectively - stated a maximum block time, and the return value of the function needed - to be checked to determine the reason for returning. This is no longer - the case as the functions will only return once the block time has - expired or they are able to complete their operation. It is therefore no - longer necessary to wrap calls within loops. - + Changed the critical section handling in the IAR AVR port to correct the - behaviour when used with later compiler versions. - + Added the LPC2138 CrossWorks demo into the zip file. Previously this was - only available as a separate download. - + Modified the AVR demo applications to demonstrate the use of co-routines. - -Changes between V4.0.4 and V4.0.5 released August 13, 2006 - - + Introduced API function xTaskResumeFromISR(). Same functionality as - xTaskResume(), but can be called from within an interrupt service routine. - + Optimised vListInsert() in the case when the wake time is the maximum - tick count value. - + Bug fix: The 'value' of the event list item is updated when the priority - of a task is changed. Previously only the priority of the TCB itself was - changed. - + vTaskPrioritySet() and vTaskResume() no longer use the event list item. - This has not been necessary since V4.0.1 when the xMissedYield handling - was added. - + Lowered the PCLK setting on the ARM9 STR9 demo from 96MHz to 48MHz. - + When ending the scheduler - do not try to attempt a context switch when - deleting the current task. - + SAM7X EMAC drivers: Corrected the Rx frame length mask when obtaining - the length from the rx descriptor. - - -Changes between V4.0.3 and V4.0.4 released June 22, 2006 - - + Added a port and demo application for the STR9 ARM9 based processors from - ST. - + Slight optimisation to the vTaskPrioritySet() function. - + Included the latest uIP version (1.0) in the demo/common/ethernet - directory. - -Changes between V4.0.2 and V4.0.3 released June 7, 2006 - - + Added a port and demo application for the Cortex-M3 target using the IAR - development tools. - + The ARM Cortex-m3 Rowley projects have been updated to use V1.6 of the - CrossStudio tools. - + The heap size defined for the lwIP Rowley demo has been reduced so that - the project will link correctly when using the command line GCC tools - also. The makefile has also been modified to allow debugging. - + The lwIP Rowley demo not includes a 'kernel aware' debug window. - + The uIP Rowley project has been updated to build with V1.6 of CrossWorks. - + The second set of tasks in the blockQ demo were created the wrong way - around (inconsistent to the description in the file). This has been - corrected. - -Changes between V4.0.1 and V4.0.2 released May 28, 2006 - - + Port and demo application added for the Tern Ethernet Engine controller. - + Port and demo application added for MC9S12 using GCC, thanks to - Jefferson "imajeff" Smith. - + The function vTaskList() now suspends the scheduler rather than disabling - interrupts during the creation of the task list. - + Allow a task to delete itself by passing in its own handle. Previously - this could only be done by passing in NULL. - + Corrected the value passed to the WDG_PeriodValueConfig() library - function in the STR71x demo. - + The tick hook function is now called only within a tick isr. Previously - it was also called when the tick function was called during the scheduler - unlocking process. - + The EMAC driver in the SAM7X lwIP demo has been made more robust as per - the thread: http://sourceforge.net/forum/message.php?msg_id=3714405 - + In the PC ports: Add function prvSetTickFrequencyDefault() to set the - DOS tick back to its proper value when the scheduler exits. Thanks - Raynald! - + In the Borland x86 ports there was a mistake in the portFIRST_CONTEXT - macro where the BP register was not popped from the stack correctly. The - BP value would never get used so this did not cause a problem, but it has - been corrected all the same. - - -Changes between V4.0.0 and V4.0.1 released April 7 2006 - - + Improved the ARM CORTEX M3 ports so they now only have to service - pendSV interrupts. - + Added a Luminary Micro port and demo for use with Rowley CrossWorks. - + Added the xMissedYield handling to tasks.c. - -Changes between V3.2.4 and V4.0.0 - - Major changes: - - + Added new RTOS port for Luminary Micros ARM CORTEX M3 microcontrollers. - + Added new co-routine functionality. - - Other kernel changes: - - + An optional tick hook call is now included in the tick function. - + Introduced the xMiniListItem structure and removed the list pxHead - member in order to reduce RAM usage. - + Added the following definitions to the FreeRTOSConfig.h file included - with every port: - configUSE_TICK_HOOK - configUSE_CO_ROUTINES - configMAX_CO_ROUTINE_PRIORITIES - + The volatile qualification has been changed on the list members to allow - the task.c code to be tidied up a bit. - + The scheduler can now be started even if no tasks have been created! - This is to allow co-routines to run when there are no tasks. - + A task being woken by an event will now preempt the currently running task - even if its priority is only equal to the currently running task. - - Port and demo application changes: - - + Updated the WinAVR demo to compile with the latest version of WinAVR - with no warnings generated. - + Changed the WinAVR makefile to make chars signed - needed for the - co-routine code if BaseType_t is set to char. - + Added new demo application file crflash.c. This demonstrates co-routine - functionality including passing data between co-routines. - + Added new demo application file crhook.c. This demonstrates co-routine - and tick hook functionality including passing data between and ISR and - a co-routine. - + Some NOP's were missing following stmdb{}^ instructions in various ARM7 - ports. These have been added. - + Updated the Open Watcom PC demo project to include the crflash and crhook - demo co-routines as an example of their use. - + Updated the H8S demo to compile with the latest version of GCC. - + Updated the SAM7X EMAC drivers to take into account the hardware errata - regarding lost packets. - + Changed the default MAC address used by some WEB server demos as the - original addresses used was not liked by some routers. - + Modified the SAM7X/IAR startup code slightly to prevent it hanging on - some systems when the code is executed using a j-link debugger. The - j-link macro file configures the PLL before the code executes so - attempting to configure it again in the startup code was causing a - problem for some user. Now a check is performed first to see if the - PLL is already set up. - + GCC port now contain all assembler code in a single asm block rather than - individual blocks as before. - + GCC LPC2000 code now explicitly uses R0 rather than letting the assembler - choose the register to use as a temporary register during the context - switch. - + Added portNOP() macro. - + The compare match load value on LPC2000 ports now has 1 added to correct - the value used. - + The minimal stack depth has been increased slightly on the WIZC PIC18 - port. - -Changes between V3.2.3 and V3.2.4 - - + Modified the GCC ARM7 port layer to allow use with GCC V4.0.0 and above. - Many thanks to Glen Biagioni for the provided update. - + Added a new Microblaze port and demo application. - + Modified the SAM7X EMAC demo to default to use the MII interface rather - than the RMII interface. - + Modified the startup sequence of the SAM7X demo slightly to allow the - EMAC longer to auto negotiate. - -Changes between V3.2.2 and V3.2.3 - - + Added MII interface support to the SAM7X EMAC peripheral driver. - Previously versions worked with the RMII interface only. - + Added command line GCC support to the SAM7X lwIP demo. Previously the - project could only be built using the CrossWorks IDE. Modifications to - this end include the addition of a standard makefile and linker script to - the download, and some adjustments to the stacks allocated to each task. - + Changed the page returned by the lwIP WEB server demo to display the - task status table rather than the TCP/IP statistics. - + Corrected the capitalisation of some header file includes and makefile - dependencies to facilitate use on Linux host computers. - + The various LPC2000 ports had a mistake in the timer setup where the - prescale value was written to T0_PC instead of T0_PR. This would have - no effect unless a prescale value was actually required. This has been - corrected. - -Changes between V3.2.1 and V3.2.2 - Released 23 September, 2005 - - + Added an IAR port for the Philips LPC2129 - + The Atmel ARM7 IAR demo project files are now saved in the IAR Embedded - Workbench V4.30a format. - + Updated the J-Link macro file included with the SAM7X uIP demo project - to allow the demo board to be reset over the J-Link. - -Changes between V3.2.0 and V3.2.1 - Released 1 September, 2005 - - + Added lwIP demo for AT91SAM7X using Rowley tools. - + Added uIP demo for AT91SAM7X using IAR tools. - + Added function xTaskGetCurrentTaskHandle(). - + Renamed events.h to mevents.h to prevent it conflicting with the events.h - generated automatically by the HCS12 processor expert utility. events.h - is only used by the PC demo application. - + Both PIC18 ports now initialise the TBLPTRU to 0 as this is the value - expected by the compiler, and the compilers do not write to this - register. - + The HCS12 banked model demo now creates the 'suicide' tasks immediately - prior to starting the scheduler. These tasks should be the last tasks to - get started in order for the test to function correctly. - -Changes between V3.1.1 and V3.2.0 - Released 29 June, 2005 - - V3.2.0 introduces two new MSP430 ports and corrects a minor kernel - issues. Thanks to Ares.qi for his input. - - + Added two MSP430 ports that use the Rowley CrossWorks development tools. - One port just mirrors the existing GCC port. The other port was provided - by Milos Prokic. Thanks! - + V3.2.0 corrects the behavior when vTaskPrioritySet() or vTaskResume() - are called while the scheduler is locked (by a call to - vTaskSuspendAll()). When this is done the subject task now starts to - execute immediately when the scheduler is unlocked if it has the highest - priority that is ready to run. Previously there was a possibility that - the task would not run until the next RTOS tick or call to portYIELD(). - + Another similar small correction ensures that in the case where more than - one task is blocked on a semaphore or queue, the task with the highest - priority is guaranteed to be unblocked first. - + Added a couple of more test tasks to the PC demo which cover the points - above. - -Changes between V3.1.0 and V3.1.1 - Released 21st June, 2005 - - This release updates the HCS12 port. The common kernel code - remains unchanged. - - + Updated the HCS12 port to support banking and introduced a demo - application for the MC9S12DP256. The new demo application is - located in the Demo/HCS12_CodeWarrior_banked directory. - + The name of the directory containing the MC9S12F32 demo application - has been changed to Demo/HCS12_CodeWarrior_small (as in 'small' - memory model). - + MC9S12F32 demo updated slightly to use the PLL. The CPU speed for the - demo application is now 24MHz. Previously it was 8MHz. - + The demo application file Demo/Common/Minimal/death.c has a slight - alteration to prevent it using floating point variables. - - -Changes between V3.0.0 and V3.1.0 - Released 11th June, 2005 - - + Added new ports for ST Microsystems STR71x, and Freescale HCS12 - microcontrollers. Currently the HCS12 port is limited to the small - memory model. Large memory models will be supported in the next - release. - + PIC18 wizC port updated. Thanks to Marcel van Lieshout for his - continuing contribution. - + The accuracy of the AVR port timer setup has been improved. Thanks to - Thomas Krutmann for this contribution. - + Added a new conditional compilation macro configIDLE_SHOULD_YIELD. - See the WEB documentation for details. - + Updated the CrossWorks uIP demo to build with V1.4 of CrossWorks. - + Slight modification to the SAM7 release build configuration to correct - an include path definition. - + Updated the MPLAB PIC18 documentation to provide extra details on linker - file configuration. - -Changes between V3.0.0 and V2.6.1 - Released 23rd April, 2005 - - V3.0.0 includes many enhancements, so this history list is broken into - subsections as follows: - - API changes - New ports - Directory name changes - Kernel and miscellaneous changes changes - - - API changes - - + Each port now defines BaseType_t as the data type that is most - efficient for that architecture. The type BaseType_t is used - extensively in API calls necessitating the following changes to the - FreeRTOS API function prototypes. - - See the "New for V3.0.0" section of the FreeRTOS online - documentation for full details of API changes. - - - New ports - - + The AT91FR40008 ARM7 port contributed by John Feller is now included - in the download (thanks John!). - + The PIC18 port for the wizC/fedC compiler contributed by Marcel van - Lieshout is now included in the download (thanks Marcel!). - + The IAR port for the AVR microcontroller has been upgraded to V3.0.0 - and is now a supported port. - - - Directory name changes - - For consistency, and to allow integration of the new ports, the - following directory names have been changed. - - + The source/portable/GCC/ARM7 directory has been renamed - source/portable/GCC/ARM7_LPC2000 so it is compatible with the naming - of other GCC ARM7 ports. - + The Demo/PIC directory has been renamed Demo/PIC18_MPLAB to - accommodate the wizC/fedC PIC port. - + The demo applications for the two AVR ports no longer share the same - directory. The WinAVR demo is in the Demo/AVR_ATMega323_WinAVR - directory and the IAR port in the Demo/AVR_ATMega323_IAR directory. - - - - Kernel and miscellaneous changes changes - - See the "New for V3.0.0" section of the FreeRTOS online - documentation for more information. - - + Previously 'portmacro.h' contained some user editable definitions - relating to the user application, and some fixed definitions relating - specifically to the port being used. The application specific - definitions have been removed from 'portmacro.h' and placed inside a - new header file called 'FreeRTOSConfig.h'. 'portmacro.h' should now - never be modified by the user. A 'FreeRTOSConfig.h' is now included - in each of FreeRTOS/Demo subdirectories - as it's settings relate to - the demo application rather than being specific to the port. - + Introduced configUSE_IDLE_HOOK in idle task. - + The idle task will yield when another idle priority task is ready to - run. Previously the idle task would run to the end of its time slice - regardless. - + The idle task is now created when the scheduler is started. This - requires less stack than the previous scheme where it was created upon - creation of the first application task. - + The function usPortCheckFreeStackSpace() has been renamed - usTaskCheckFreeStackSpace() and moved from the portable layer to - tasks.c. - + Corrected spelling of portMINMAL_STACK_SIZE to portMINIMAL_STACK_SIZE. - + The portheap.c file included with the AVR port has been deleted. The - AVR demo now uses the standard heap1 sample memory allocator. - + The GCC AVR port is now build using the standard make utility. The - batch files used previously have been deleted. This means a recent - version of WinAVR is required in order to create a binary suitable for - source level debugging. - + vTaskStartScheduler() no longer takes the configUSE_PREEMPTION - constant as a parameter. Instead the constant is used directly within - tasks.c and no parameter is required. - + The header file 'FreeRTOS.h' has been created and is used to include - 'projdefs.h', 'FreeRTOSConfig.h' and 'portable.h' in the necessary - order. FreeRTOS.h can now be included in place of these other - headers. - + The header file 'errors.h' has been deleted. The definitions it - contained are now located within 'projdefs.h'. - + pvPortMalloc() now takes a size_t parameter as per the ANSI malloc(). - Previously an unsigned short was used. - + When resuming the scheduler a yield is performed if either a tick has - been missed, or a task is moved from the pending ready list into a - ready list. Previously a yield was not performed on this second - condition. - + In heap1.c an overflow check has been added to ensure the next free - byte variable does not wrap around. - + Introduced the portTASK_FUNCTION() and portTASK_FUNCTION_PROTO() - macros. - + The MPLAB PIC port now saved the TABLAT register in interrupt service - routines. - -Changes between V2.6.0 and V2.6.1 - Released Feb 22, 2005 - - This version adds support for the H8 processor. - - Other changes: - - + tskMAX_TASK_NAME_LEN removed from the task.h header and added to each - individual portmacro.h file as portMAX_TASK_NAME_LEN. This allows RAM - limited ports to allocate fewer characters to the task name. - + AVR port - Replaced the inb() and outb() functions with direct memory - access. This allows the port to be built with the 20050414 build of - WinAVR. - + GCC LPC2106 port - removed the 'static' from the definition of - vNonPreemptiveTick() to allow the demo to link when using the cooperative - scheduler. - + GCC LPC2106 port - Corrected the optimisation options in the batch files - ROM_THUMB.bat, RAM_THUMB.bat, ROM_ARM.bat and RAM_ARM.bat. The lower case - -o is replaced by an uppercase -O. - + Tasks.c - The strcpy call has been removed when copying across the task - name into the TCB. - + Updated the trace visualisation to always be 4 byte aligned so it can be - used on ARM architectures. - + There are now two tracecon executables (that convert the trace file binary - into an ASCII file). One for big endian targets and one for little endian - targets. - + Added ucTasksDeleted variable to prevent vTaskSuspendAll() being called - too often in the idle task. - + SAM7 USB driver - Replaced the duplicated RX_DATA_BK0 in the interrupt - mask with the RX_DATA_BK1. - - -Changes between V2.5.5 and V2.6.0 - Released January 16, 2005 - - + Added the API function vTaskDelayUntil(). The demo app file - Demo/Common/Minimal/flash.c has been updated to demonstrate its use. - + Added INCLUDE_vTaskDelay conditional compilation. - + Changed the name of the Demo/ARM7_AtmelSAM7S64_IAR directory to - Demo/ARM7_AT91SAM7S64_IAR for consistency. - + Modified the AT91SAM7S USB driver to allow descriptors that have - a length that is an exact multiple of the FIFO to be transmitted. - -Changes between V2.5.4 and V2.5.5 - Released January 3, 2005 - - This version adds support for the Atmel SAM7 ARM7 microcontrollers - along with the IAR development tools. - - Other changes: - - + Renamed the Demo/ARM7 directory to Demo/ARM7_LPC2106_GCC. - + Renamed the Demo/ARM7_Keil directory to Demo/ARM7_LPC2129_Keil. - + Modified the Philips ARM7 serial interrupt service routines to only - process one interrupt per call. This seems to enable the ISR to - operate more quickly. - + Removed the 'far' keyword from the Open Watcom portable layer source - files. This allows their use with V1.3 of Open Watcom. - + Minor modifications to the SDCC build files to allow their use under - Linux. Thanks to Frieder Ferlemann for this contribution. - + Small change to sTaskCreate() to allow a context switch even when - pxCreatedTask is NULL. Thanks to Kamil for this contribution. - + inline keyword removed from vTaskSwitchContext() and VTaskIncrementTick() - definitions. - -Changes between V2.5.3 and V2.5.4 - Released Dec 1, 2004 - - This is an important maintenance release. - - The function cTaskResumeAll() has been modified so it can be used safely - prior to the kernel being initialised. This was an issue as - cTaskResumeAll() is called from pvPortMalloc(). Thanks to Daniel Braun - for highlighting this issue. - -Changes between V2.5.2 and V2.5.3 - Released Nov 2, 2004 - - The critical section handling functions have been changed for the GCC ARM7 - port. Some optimisation levels use the stack differently to others. This - means the interrupt flags cannot always be stored on the stack and are - instead now stored in a variable, which is then saved as part of the - tasks context. This allows the GCC ARM7 port to be used at all - optimisation levels - including -Os. - - Other minor changes: - - + MSP430 definition of usCriticalNesting now uses the volatile qualifier. - This is probably not required but added just in case. - -Changes between V2.5.1 and V2.5.2 - Released Oct 26, 2004 - - + Added the Keil ARM7 port. - + Slight modification to comtest.c to make the delay periods more random. - This creates a better test condition. - -Changes between V2.5.0 and V2.5.1 - Released Oct 9, 2004 - - + Added the MSP430 port. - + Extra comments added to the GCC ARM7 port.c and portISR.c files. - + The memory pool allocated within heap_1.c has been placed within a - structure to ensure correct memory alignment on 32bit systems. - + Within the GCC ARM7 serial drivers an extra check is made to ensure - the post to the queue was successful if then attempting immediately - retrieve the posted character. - + Changed the name of the constant portTICKS_PER_MS to portTICK_PERIOD_MS - as the old name was misleading. - - -Changes between V2.4.2 and V2.5.0 - Released Aug 12, 2004 - - The RTOS source code download now includes three separate memory allocation - schemes - so you can choose the most appropriate for your application. - These are found in the Source/Portable/MemMang directory. The demo - application projects have also been updated to demonstrate the new schemes. - See the "Memory Management" page of the API documentation for more details. - - + Added heap_1.c, heap_2.c and heap_3.c in the Source/Portable/MemMang - directory. - + Replaced the portheap.c files for each demo application with one of the - new memory allocation files. - + Updated the portmacro.h file for each demo application to include the - constants required for the new memory allocators: portTOTAL_HEAP_SIZE and - portBYTE_ALIGNMENT. - + Added a new test to the ARM7 demo application that tests the operation - of the heap_2 memory allocator. - - -Changes between V2.4.1 and V2.4.2 - Released July 14, 2004 - - + The ARM7 port now supports THUMB mode. - + Modification to the ARM7 demo application serial port driver. - -Changes between V2.4.0 and V2.4.1 - Released July 2, 2004 - - + Rationalised the ARM7 port version of portEXIT_CRITICAL() - - improvements provided by Bill Knight. - + Made demo serial driver more complete and robust. - - -Changes between V2.4.0 and V2.3.1 - Released June 30, 2004 - - + Added the first ARM7 port - thanks to Bill Knight for the assistance - provided. - + Added extra files to the Demo/Common/Minimal directory. These are - equivalent to their Demo/Common/Full counterparts but with the - calls to the functions defined in print.c removed. - + Added TABLAT to the list of registers saved as part of a PIC18 context. - -Changes between V2.3.0 and V2.3.1 - Released June 25, 2004 - - + Changed the way the vector table is defined to be more portable. - + Corrected the definitions of SPH and SPL in portmacro.s90. - The previous definitions prevented V2.3.0 operating if the iom323.h - header file was included in portmacro.s90. - -Changes between V2.2.0 and V2.3.0 - Released June 19, 2004 - - + Added an AVR port that uses the IAR compiler. - + Explicit use of 'signed' qualifier on plain char types. - + Modified the Open Watcom project files to use 'signed' as the - default char type. - + Changed odd calculation of initial pxTopOfStack value when - portSTACK_GROWTH < 0. - + Added inline qualifier to context switch functions within task.c. - Ports that do not support the (non ANSI) inline keyword have the - inline #define'd away in their respective portmacro.h files. - -Changes between V2.1.1 and V2.2.0 - Released May 18, 2004 - - + Added Cygnal 8051 port. - + PCLATU and PCLATH are now saved as part of the PIC18 context. This - allows function pointers to be used within tasks. Thanks to Javier - Espeche for the enhancement. - + Minor changes to demo application files to reduce stack usage. - + Minor changes to prevent compiler warnings when compiling the new port. - -Changes between V2.1.0 and V2.1.1 - Released March 12, 2004 - - + Bug fix - pxCurrentTCB is now initialised before the call to - prvInitialiseTaskLists(). Previously pxCurrentTCB could be accessed - while null during the initialisation sequence. Thanks to Giuseppe - Franco for the correction. - -Changes between V2.0.0 and V2.1.0 - Released Feb 29, 2004 - - V2.1.0 has significant reworks that greatly reduce the amount of time - the kernel has interrupts disabled. The first section of modifications - listed here must be taken into account by users. The second section - are related to the kernel implementation and as such are transparent. - - Section1 : - - + The typedef TickType_t has been introduced. All delay times should - now use a variable of type TickType_t in place of the unsigned long's - used previously. API function prototypes have been updated - appropriately. - + The configuration macro USE_16_BIT_TICKS has been introduced. If set - to 1 TickType_t is defined as an unsigned short. If set to 0 - TickType_t is defined as an unsigned long. See the configuration - section of the API documentation for more details. - + The configuration macro INCLUDE_vTaskSuspendAll is now obsolete. - + vTaskResumeAll() has been renamed cTaskResumeAll() as it now returns a - value (see the API documentation). - + ulTaskGetTickCount() has been renamed xTaskGetTickCount() as the type - it returns now depends on the USE_16_BIT_TICKS definition. - + cQueueReceive() must now >never< be used from within an ISR. Use the new - cQueueReceiveFromISR() function instead. - - Section 2: - - + A mechanism has been introduced that allows a queue to be accessed by - a task and ISR simultaneously. - + A "pending ready" queue has been introduced that enables interrupts to - be processed when the scheduler is suspended. - + The list implementation has been improved to provide faster item - removal. - + The scheduler now makes use of the scheduler suspend mechanism in places - where previously interrupts were disabled. - -Changes between V1.2.6 and V2.0.0 - Released Jan 31, 2004 - - + Introduced new API functions: - vTaskPriorityGet () - vTaskPrioritySet () - vTaskSuspend () - vTaskResume () - vTaskSuspendAll () - vTaskResumeAll () - + Added conditional compilation options that allow the components of the - kernel that are unused by an application to be excluded from the build. - See the Configuration section on the WEB site for more information (on - the API pages). The macros have been added to each portmacro.h file ( - sometimes called prtmacro.h). - + Rearranged tasks.c. - + Added demo application file dynamic.c. - + Updated the PC demo application to make use of dynamic.c. - + Updated the documentation contained in the kernel header files. - + Creating a task now causes a context switch if the task being created - has a higher priority than the calling task - assuming the kernel is - running. - + vTaskDelete() now only causes a context switch if the calling task is - the task being deleted. - -Changes between V1.2.5 and V1.2.6 - Released December 31, 2003 - - Barring the change to the interrupt vector (PIC port) these are minor - enhancements. - - + The interrupt vector used for the PIC master ISR has been changed from - 0x18 to 0x08 - where it should have always been. The incorrect address - still works but probably executes a number of NOP's before getting to the - ISR. - + Changed the baud rate used by the AVR demo application to 38400. This - has an error percentage of less than one percent with an 8MHz clock. - + Raised the priority of the Rx task in demo\full\comtest.c. This only - affects the Flashlite and PC ports. This was done to prevent the Rx - buffer becoming full. - + Reverted the Flashlite COM port driver back so it does not use the DMA. - The DMA appears to miss characters under stress. The Borland Flashlite - port was also calculating a register value incorrectly resulting in the - wrong DMA source address being used. The same code worked fine when - compiling with Open Watcom. Other minor enhancements were made to the - interrupt handling. - + Modified the PIC serial Rx ISR to check for and clear overrun errors. - Overrun errors seem to prevent any further characters being received. - + The PIC demo projects now have some optimisation switched on. - - -Changes between V1.2.4 and V1.2.5 - - Small fix made to the PIC specific port.c file described below. - - + Introduced portGLOBAL_INTERRUPT_FLAG definition to test the global - interrupt flag setting. Using the two bits defined within - portINITAL_INTERRUPT_STATE was causing the w register to get clobbered - before the test was performed. - -Changes between V1.2.3 and V1.2.4 - - V1.2.4 contains a release version of the PIC18 port. - An optional exception has been included with the GPL. See the licensing - section of www.FreeRTOS.org for details. - - + The function xPortInitMinimal() has been renamed to - xSerialPortInitMinimal() and the function xPortInit() has been renamed - to xSerialPortInit(). - + The function sSerialPutChar() has been renamed cSerialPutChar() and - the function return type chaned to portCHAR. - + The integer and flop tasks now include calls to tskYIELD(), allowing - them to be used with the cooperative scheduler. - + All the demo applications now use the integer and comtest tasks when the - cooperative scheduler is being used. Previously they were only used with - the preemptive scheduler. - + Minor changes made to operation of minimal versions of comtest.c and - integer.c. - + The ATMega port definition of portCPU_CLOSK_HZ definition changed to - 8MHz base 10, previously it base 16. - - - -Changes between V1.2.2a and V1.2.3 - - The only change of any significance is to the license, which has changed - from the Open Software License to the GNU GPL. - - The zip file also contains a pre-release version of the PIC18 port. This - has not yet completed testing and as such does not constitute part of the - V1.2.3 release. It is still however covered by the GNU GPL. - - There are minor source code changes to accommodate the PIC C compiler. - These mainly involve more explicit casting. - - + sTaskCreate() has been modified slightly to make use of the - portSTACK_GROWTH macro. This is required for the PIC port where the - stack grows in the opposite direction to the other existing ports. - + prvCheckTasksWaitingTermination() has been modified slightly to bring - the decrementing of usCurrentNumberOfTasks within the critical section, - where it should have been since the creation of an eight bit port. - -Changes between V1.2.2 and V1.2.2a - - The makefile and buildcoff.bat files included with the AVR demo application - have been modified for use with the September 2003 build of WinAVR. No - source files have changed. - -Changes between V1.2.1 and V1.2.2 - - There are only minor changes here to allow the PC and Flashlite 186 ports - to use the Borland V4.52 compiler, as supplied with the Flashlite 186 - development kit. - - + Introduced a BCC directory under source\portable. This contains all the - files specific to the Borland compiler port. - + Corrected the macro naming of portMS_PER_TICK to portTICKS_PER_MS. - + Modified comtest.c to increase the rate at which the string is - transmitted and received on the serial port. The Flashlite 186 demo - app baud rate has also been increased. - + The values of the constants used in both integer.c files have been - increased to force the Borland compiler to use 32 bit values. The - Borland optimiser placed the previous values in 16 bit registers, and in - So doing invalidated the test. - -Changes between V1.2.0 and V1.2.1 - - This version includes some minor changes to the list implementation aimed - at improving the context switch time - with is now approximately 10% faster. - Changes include the removal of some null pointer assignment checks. These - were redundant where the scheduler uses the list functions, but means any - user application choosing to use the same list functions must now check - that no NULL pointers are passed as a parameter. - - The Flashlite 186 serial port driver has also been modified to use a DMA - channel for transmissions. The serial driver is fully functional but still - under development. Flashlite users may prefer to use V1.2.0 for now. - - Details: - - + Changed the baud rate for the ATMega323 serial test from 19200 to 57600. - + Use vSerialPutString() instead of single character puts in - Demo\Full\Comtest.c. This allows the use of the flashlite DMA serial - driver. Also the check variable only stops incrementing after two - consecutive failures. - + semtest.c creates four tasks, two of which operate at the idle priority. - The tasks that operate at the idle priority now use a lower expected - count than those running at a higher priority. This prevents the low - priority tasks from signalling an error because they have not been - scheduled enough time for each of them to count the shared variable to - the higher original value. - + The flashlite 186 serial driver now uses a DMA channel for transmissions. - + Removed the volatile modifier from the list function parameters. This was - only ever included to prevent compiler warnings. Now warnings are - removed by casting parameters where the calls are made. - + prvListGetOwnerOfNextEntry() and prvListGetOwnerOfHeadEntry() have been - removed from list.c and added as macros in list.h. - + usNumberOfItems has been added to the list structure. This removes the - need for a pointer comparison when checking if a list is empty, and so - is slightly faster. - + Removed the NULL check in vListRemove(). This makes the call faster but - necessitates any application code utilising the list implementation to - ensure NULL pointers are not passed. - + Renamed portTICKS_PER_MS definition to portMS_PER_TICK (milli seconds - per tick). This is what it always should have been. - -Changes between V1.01 and V1.2.0 - - The majority of these changes were made to accommodate the 8bit AVR port. - The scheduler workings have not changed, but some of the data types used - have been made more friendly to an eight bit environment. - - Details: - - + Changed the version numbering format. - + Added AVR port. - + Split the directory demo\common into demo\common\minimal and - demo\common\full. The files in the full directory are for systems with - a display (currently PC and Flashlite 186 demo's). The files in the - minimal directory are for systems with limited RAM and no display - (currently MegaAVR). - + Minor changes to demo application function prototypes to make more use - of 8bit data types. - + Within the scheduler itself the following functions have slightly - modified declarations to make use of 8bit data types where possible: - xQueueCreate(), - sQueueReceive(), - sQUeueReceive(), - usQueueMessageWaiting(), - sQueueSendFromISR(), - sSemaphoreTake(), - sSemaphoreGive(), - sSemaphoreGiveFromISR(), - sTaskCreate(), - sTaskMoveFromEventList(). - - Where the return type has changed the function name has also changed in - accordance with the naming convention. For example - usQueueMessageWaiting() has become ucQueueMessageWaiting(). - + The definition tskMAX_PRIORITIES has been moved from task.h to - portmacro.h and renamed portMAX_PRIORITIES. This allows different - ports to allocate a different maximum number of priorities. - + By default the trace facility is off, previously USE_TRACE_FACILITY - was defined. - + comtest.c now uses a psuedo random delay between sends. This allows for - better testing as the interrupts do not arrive at regular intervals. - + Minor change to the Flashlite serial port driver. The driver is written - to demonstrate the scheduler and is not written to be efficient. - - - -Changes between V1.00 and V1.01 - - These changes improve the ports. The scheduler itself has not changed. - - Improved context switch mechanism used when performing a context - switch from an ISR (both the tick ISR and the serial comms ISR's within - the demo application). The new mechanism is faster and uses less stack. - - The assembler file portasm.asm has been replaced by a header file - portasm.h. This includes a few assembler macro definitions. - - All saving and restoring of registers onto/off of the stack is now handled - by the compiler. This means the initial stack setup for a task has to - mimic the stack used by the compiler, which is different for debug and - release builds. - - Slightly changed the operation of the demo application, details below. - - Details: - - + portSWITCH_CONTEXT() replaced by vPortFirstContext(). - + pxPortInitialiseStack() modified to replicate the stack used by the - compiler. - + portasm.asm file removed. - + portasm.h introduced. This contains macro definitions for - portSWITCH_CONTEXT() and portFIRST_CONTEXT(). - + Context switch from ISR now uses the compiler generated interrupt - mechanism. This is done simply by calling portSWITCH_CONTEXT and leaving - the save/restore to compiler generated code. - + Calls to taskYIELD() during ISR's have been replaced by calling the - simpler and faster portSWITCH_CONTEXT(). - + The Flashlite 186 port now uses 186 instruction set (used to use 80x86 - instructions only). - + The blocking queue tasks within the demo application did not operate - quite as described. This has been corrected. - + The priority of the comtest Rx task within the demo application has been - lowered. Received characters are now processed (read from the queue) at - the idle priority, allowing low priority tasks to run evenly at times of - a high communications overhead. - + Prevent the call to kbhit() in main.c for debug builds as the debugger - seems to have problems stepping over the call. This if for the PC port - only. - - - diff --git a/rtos/freertos/abstraction_layer_freertos/scr/clkconst.c b/rtos/freertos/abstraction_layer_freertos/scr/clkconst.c deleted file mode 100644 index 1a0480b1..00000000 --- a/rtos/freertos/abstraction_layer_freertos/scr/clkconst.c +++ /dev/null @@ -1,48 +0,0 @@ -/* - * Copyright (C) 2021 ETH Zurich and University of Bologna - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * SPDX-License-Identifier: Apache-2.0 - * - * PULP FPGA implementations sometimes have non-configurable, constant clocks - * for soc/cluster/periphs. - * - * Author: Robert Balas (balasr@iis.ee.ethz.ch) - */ - -#include - -#include "properties.h" -#include "freq.h" - -uint32_t pi_freq_get(pi_freq_domain_e domain) -{ - /* TODO: build time switch between asic and fpga build */ - switch (domain) { - case PI_FREQ_DOMAIN_FC: - return FPGA_SYSTEM_CLOCK; - case PI_FREQ_DOMAIN_CL: - return FPGA_SYSTEM_CLOCK; - case PI_FREQ_DOMAIN_PERIPH: - return FPGA_PERIPH_CLOCK; - } - /* unreachable */ - return 0; -} - -int32_t pi_freq_set(pi_freq_domain_e domain, uint32_t freq) -{ - /* not possible to configure clocks */ - return 1; -} diff --git a/rtos/freertos/abstraction_layer_freertos/scr/clkdiv.c b/rtos/freertos/abstraction_layer_freertos/scr/clkdiv.c deleted file mode 100644 index 1651fd43..00000000 --- a/rtos/freertos/abstraction_layer_freertos/scr/clkdiv.c +++ /dev/null @@ -1,102 +0,0 @@ -/* - * Copyright (C) 2020 ETH Zurich and University of Bologna - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * SPDX-License-Identifier: Apache-2.0 - */ -/* Driver to control the soc control clock divider used in some PULP based - * chips/IPs. This driver is mutually exclusive with the fll driver. There are - * three clock dividers one for the fc, cluster and peripheral subsystems each - * in control-pulp that replace the FLLs. The clock dividers for the fc and - * cluster are driven by a variable system clock and while the peripheral clock - * divider is driven a fixed reference clock. The divider value is limited to - * eight bits. - */ -/* Author: Robert Balas (balasr@iis.ee.ethz.ch) - */ - -#include - -#include "clkdiv.h" -#include "memory_map.h" -#include "freq.h" -#include "io.h" - -static uint32_t freq_from_div(uint32_t freq, uint32_t div) -{ - if (div == 0 || div == 1) - return freq; - - if (div % 2 == 0) - return freq / div; - else - return freq / (2 * (div - 1)); -} - -uint32_t pi_freq_get(pi_freq_domain_e domain) -{ - uint32_t div = 0; - - /* TODO: build time switch between asic and fpga build */ - switch (domain) { - case PI_FREQ_DOMAIN_FC: - div = readw((uintptr_t)(CLKDIV_ADDR + CLKDIV_FC_OFFSET)); - return freq_from_div(ASIC_SYSTEM_CLOCK, div); - case PI_FREQ_DOMAIN_CL: - div = readw((uintptr_t)(CLKDIV_ADDR + CLKDIV_CL_OFFSET)); - return freq_from_div(ASIC_SYSTEM_CLOCK, div); - case PI_FREQ_DOMAIN_PERIPH: - div = readw((uintptr_t)(CLKDIV_ADDR + CLKDIV_PERIPH_OFFSET)); - return freq_from_div(ASIC_PERIPH_CLOCK, div); - } - /* unreachable */ - return 0; -} - -static uint32_t div_from_freq(uint32_t base_freq, uint32_t target_freq) -{ - return base_freq / target_freq; -} - -int32_t pi_freq_set(pi_freq_domain_e domain, uint32_t freq) -{ - /* impossible */ - if (freq > ASIC_SYSTEM_CLOCK || freq == 0) - return 1; - - uint32_t div = 0; - - switch (domain) { - case PI_FREQ_DOMAIN_FC: - div = div_from_freq(ASIC_SYSTEM_CLOCK, freq); - if (div >= 0xff) - return -1; - writew(div, (uintptr_t)(CLKDIV_ADDR + CLKDIV_FC_OFFSET)); - break; - case PI_FREQ_DOMAIN_CL: - div = div_from_freq(ASIC_SYSTEM_CLOCK, freq); - if (div >= 0xff) - return -1; - writew(div, (uintptr_t)(CLKDIV_ADDR + CLKDIV_CL_OFFSET)); - break; - case PI_FREQ_DOMAIN_PERIPH: - div = div_from_freq(ASIC_PERIPH_CLOCK, freq); - if (div >= 0xff) - return -1; - writew(div, (uintptr_t)(CLKDIV_ADDR + CLKDIV_PERIPH_OFFSET)); - break; - } - - return 0; -} diff --git a/rtos/freertos/abstraction_layer_freertos/scr/croutine.c b/rtos/freertos/abstraction_layer_freertos/scr/croutine.c deleted file mode 100644 index 69bf614a..00000000 --- a/rtos/freertos/abstraction_layer_freertos/scr/croutine.c +++ /dev/null @@ -1,353 +0,0 @@ -/* - * FreeRTOS Kernel V10.3.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. - * - * Permission is hereby granted, free of charge, to any person obtaining a copy of - * this software and associated documentation files (the "Software"), to deal in - * the Software without restriction, including without limitation the rights to - * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of - * the Software, and to permit persons to whom the Software is furnished to do so, - * subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS - * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR - * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER - * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - * - * http://www.FreeRTOS.org - * http://aws.amazon.com/freertos - * - * 1 tab == 4 spaces! - */ - -#include "FreeRTOS.h" -#include "task.h" -#include "croutine.h" - -/* Remove the whole file is co-routines are not being used. */ -#if( configUSE_CO_ROUTINES != 0 ) - -/* - * Some kernel aware debuggers require data to be viewed to be global, rather - * than file scope. - */ -#ifdef portREMOVE_STATIC_QUALIFIER - #define static -#endif - - -/* Lists for ready and blocked co-routines. --------------------*/ -static List_t pxReadyCoRoutineLists[ configMAX_CO_ROUTINE_PRIORITIES ]; /*< Prioritised ready co-routines. */ -static List_t xDelayedCoRoutineList1; /*< Delayed co-routines. */ -static List_t xDelayedCoRoutineList2; /*< Delayed co-routines (two lists are used - one for delays that have overflowed the current tick count. */ -static List_t * pxDelayedCoRoutineList; /*< Points to the delayed co-routine list currently being used. */ -static List_t * pxOverflowDelayedCoRoutineList; /*< Points to the delayed co-routine list currently being used to hold co-routines that have overflowed the current tick count. */ -static List_t xPendingReadyCoRoutineList; /*< Holds co-routines that have been readied by an external event. They cannot be added directly to the ready lists as the ready lists cannot be accessed by interrupts. */ - -/* Other file private variables. --------------------------------*/ -CRCB_t * pxCurrentCoRoutine = NULL; -static UBaseType_t uxTopCoRoutineReadyPriority = 0; -static TickType_t xCoRoutineTickCount = 0, xLastTickCount = 0, xPassedTicks = 0; - -/* The initial state of the co-routine when it is created. */ -#define corINITIAL_STATE ( 0 ) - -/* - * Place the co-routine represented by pxCRCB into the appropriate ready queue - * for the priority. It is inserted at the end of the list. - * - * This macro accesses the co-routine ready lists and therefore must not be - * used from within an ISR. - */ -#define prvAddCoRoutineToReadyQueue( pxCRCB ) \ -{ \ - if( pxCRCB->uxPriority > uxTopCoRoutineReadyPriority ) \ - { \ - uxTopCoRoutineReadyPriority = pxCRCB->uxPriority; \ - } \ - vListInsertEnd( ( List_t * ) &( pxReadyCoRoutineLists[ pxCRCB->uxPriority ] ), &( pxCRCB->xGenericListItem ) ); \ -} - -/* - * Utility to ready all the lists used by the scheduler. This is called - * automatically upon the creation of the first co-routine. - */ -static void prvInitialiseCoRoutineLists( void ); - -/* - * Co-routines that are readied by an interrupt cannot be placed directly into - * the ready lists (there is no mutual exclusion). Instead they are placed in - * in the pending ready list in order that they can later be moved to the ready - * list by the co-routine scheduler. - */ -static void prvCheckPendingReadyList( void ); - -/* - * Macro that looks at the list of co-routines that are currently delayed to - * see if any require waking. - * - * Co-routines are stored in the queue in the order of their wake time - - * meaning once one co-routine has been found whose timer has not expired - * we need not look any further down the list. - */ -static void prvCheckDelayedList( void ); - -/*-----------------------------------------------------------*/ - -BaseType_t xCoRoutineCreate( crCOROUTINE_CODE pxCoRoutineCode, UBaseType_t uxPriority, UBaseType_t uxIndex ) -{ -BaseType_t xReturn; -CRCB_t *pxCoRoutine; - - /* Allocate the memory that will store the co-routine control block. */ - pxCoRoutine = ( CRCB_t * ) pvPortMalloc( sizeof( CRCB_t ) ); - if( pxCoRoutine ) - { - /* If pxCurrentCoRoutine is NULL then this is the first co-routine to - be created and the co-routine data structures need initialising. */ - if( pxCurrentCoRoutine == NULL ) - { - pxCurrentCoRoutine = pxCoRoutine; - prvInitialiseCoRoutineLists(); - } - - /* Check the priority is within limits. */ - if( uxPriority >= configMAX_CO_ROUTINE_PRIORITIES ) - { - uxPriority = configMAX_CO_ROUTINE_PRIORITIES - 1; - } - - /* Fill out the co-routine control block from the function parameters. */ - pxCoRoutine->uxState = corINITIAL_STATE; - pxCoRoutine->uxPriority = uxPriority; - pxCoRoutine->uxIndex = uxIndex; - pxCoRoutine->pxCoRoutineFunction = pxCoRoutineCode; - - /* Initialise all the other co-routine control block parameters. */ - vListInitialiseItem( &( pxCoRoutine->xGenericListItem ) ); - vListInitialiseItem( &( pxCoRoutine->xEventListItem ) ); - - /* Set the co-routine control block as a link back from the ListItem_t. - This is so we can get back to the containing CRCB from a generic item - in a list. */ - listSET_LIST_ITEM_OWNER( &( pxCoRoutine->xGenericListItem ), pxCoRoutine ); - listSET_LIST_ITEM_OWNER( &( pxCoRoutine->xEventListItem ), pxCoRoutine ); - - /* Event lists are always in priority order. */ - listSET_LIST_ITEM_VALUE( &( pxCoRoutine->xEventListItem ), ( ( TickType_t ) configMAX_CO_ROUTINE_PRIORITIES - ( TickType_t ) uxPriority ) ); - - /* Now the co-routine has been initialised it can be added to the ready - list at the correct priority. */ - prvAddCoRoutineToReadyQueue( pxCoRoutine ); - - xReturn = pdPASS; - } - else - { - xReturn = errCOULD_NOT_ALLOCATE_REQUIRED_MEMORY; - } - - return xReturn; -} -/*-----------------------------------------------------------*/ - -void vCoRoutineAddToDelayedList( TickType_t xTicksToDelay, List_t *pxEventList ) -{ -TickType_t xTimeToWake; - - /* Calculate the time to wake - this may overflow but this is - not a problem. */ - xTimeToWake = xCoRoutineTickCount + xTicksToDelay; - - /* We must remove ourselves from the ready list before adding - ourselves to the blocked list as the same list item is used for - both lists. */ - ( void ) uxListRemove( ( ListItem_t * ) &( pxCurrentCoRoutine->xGenericListItem ) ); - - /* The list item will be inserted in wake time order. */ - listSET_LIST_ITEM_VALUE( &( pxCurrentCoRoutine->xGenericListItem ), xTimeToWake ); - - if( xTimeToWake < xCoRoutineTickCount ) - { - /* Wake time has overflowed. Place this item in the - overflow list. */ - vListInsert( ( List_t * ) pxOverflowDelayedCoRoutineList, ( ListItem_t * ) &( pxCurrentCoRoutine->xGenericListItem ) ); - } - else - { - /* The wake time has not overflowed, so we can use the - current block list. */ - vListInsert( ( List_t * ) pxDelayedCoRoutineList, ( ListItem_t * ) &( pxCurrentCoRoutine->xGenericListItem ) ); - } - - if( pxEventList ) - { - /* Also add the co-routine to an event list. If this is done then the - function must be called with interrupts disabled. */ - vListInsert( pxEventList, &( pxCurrentCoRoutine->xEventListItem ) ); - } -} -/*-----------------------------------------------------------*/ - -static void prvCheckPendingReadyList( void ) -{ - /* Are there any co-routines waiting to get moved to the ready list? These - are co-routines that have been readied by an ISR. The ISR cannot access - the ready lists itself. */ - while( listLIST_IS_EMPTY( &xPendingReadyCoRoutineList ) == pdFALSE ) - { - CRCB_t *pxUnblockedCRCB; - - /* The pending ready list can be accessed by an ISR. */ - portDISABLE_INTERRUPTS(); - { - pxUnblockedCRCB = ( CRCB_t * ) listGET_OWNER_OF_HEAD_ENTRY( (&xPendingReadyCoRoutineList) ); - ( void ) uxListRemove( &( pxUnblockedCRCB->xEventListItem ) ); - } - portENABLE_INTERRUPTS(); - - ( void ) uxListRemove( &( pxUnblockedCRCB->xGenericListItem ) ); - prvAddCoRoutineToReadyQueue( pxUnblockedCRCB ); - } -} -/*-----------------------------------------------------------*/ - -static void prvCheckDelayedList( void ) -{ -CRCB_t *pxCRCB; - - xPassedTicks = xTaskGetTickCount() - xLastTickCount; - while( xPassedTicks ) - { - xCoRoutineTickCount++; - xPassedTicks--; - - /* If the tick count has overflowed we need to swap the ready lists. */ - if( xCoRoutineTickCount == 0 ) - { - List_t * pxTemp; - - /* Tick count has overflowed so we need to swap the delay lists. If there are - any items in pxDelayedCoRoutineList here then there is an error! */ - pxTemp = pxDelayedCoRoutineList; - pxDelayedCoRoutineList = pxOverflowDelayedCoRoutineList; - pxOverflowDelayedCoRoutineList = pxTemp; - } - - /* See if this tick has made a timeout expire. */ - while( listLIST_IS_EMPTY( pxDelayedCoRoutineList ) == pdFALSE ) - { - pxCRCB = ( CRCB_t * ) listGET_OWNER_OF_HEAD_ENTRY( pxDelayedCoRoutineList ); - - if( xCoRoutineTickCount < listGET_LIST_ITEM_VALUE( &( pxCRCB->xGenericListItem ) ) ) - { - /* Timeout not yet expired. */ - break; - } - - portDISABLE_INTERRUPTS(); - { - /* The event could have occurred just before this critical - section. If this is the case then the generic list item will - have been moved to the pending ready list and the following - line is still valid. Also the pvContainer parameter will have - been set to NULL so the following lines are also valid. */ - ( void ) uxListRemove( &( pxCRCB->xGenericListItem ) ); - - /* Is the co-routine waiting on an event also? */ - if( pxCRCB->xEventListItem.pxContainer ) - { - ( void ) uxListRemove( &( pxCRCB->xEventListItem ) ); - } - } - portENABLE_INTERRUPTS(); - - prvAddCoRoutineToReadyQueue( pxCRCB ); - } - } - - xLastTickCount = xCoRoutineTickCount; -} -/*-----------------------------------------------------------*/ - -void vCoRoutineSchedule( void ) -{ - /* See if any co-routines readied by events need moving to the ready lists. */ - prvCheckPendingReadyList(); - - /* See if any delayed co-routines have timed out. */ - prvCheckDelayedList(); - - /* Find the highest priority queue that contains ready co-routines. */ - while( listLIST_IS_EMPTY( &( pxReadyCoRoutineLists[ uxTopCoRoutineReadyPriority ] ) ) ) - { - if( uxTopCoRoutineReadyPriority == 0 ) - { - /* No more co-routines to check. */ - return; - } - --uxTopCoRoutineReadyPriority; - } - - /* listGET_OWNER_OF_NEXT_ENTRY walks through the list, so the co-routines - of the same priority get an equal share of the processor time. */ - listGET_OWNER_OF_NEXT_ENTRY( pxCurrentCoRoutine, &( pxReadyCoRoutineLists[ uxTopCoRoutineReadyPriority ] ) ); - - /* Call the co-routine. */ - ( pxCurrentCoRoutine->pxCoRoutineFunction )( pxCurrentCoRoutine, pxCurrentCoRoutine->uxIndex ); - - return; -} -/*-----------------------------------------------------------*/ - -static void prvInitialiseCoRoutineLists( void ) -{ -UBaseType_t uxPriority; - - for( uxPriority = 0; uxPriority < configMAX_CO_ROUTINE_PRIORITIES; uxPriority++ ) - { - vListInitialise( ( List_t * ) &( pxReadyCoRoutineLists[ uxPriority ] ) ); - } - - vListInitialise( ( List_t * ) &xDelayedCoRoutineList1 ); - vListInitialise( ( List_t * ) &xDelayedCoRoutineList2 ); - vListInitialise( ( List_t * ) &xPendingReadyCoRoutineList ); - - /* Start with pxDelayedCoRoutineList using list1 and the - pxOverflowDelayedCoRoutineList using list2. */ - pxDelayedCoRoutineList = &xDelayedCoRoutineList1; - pxOverflowDelayedCoRoutineList = &xDelayedCoRoutineList2; -} -/*-----------------------------------------------------------*/ - -BaseType_t xCoRoutineRemoveFromEventList( const List_t *pxEventList ) -{ -CRCB_t *pxUnblockedCRCB; -BaseType_t xReturn; - - /* This function is called from within an interrupt. It can only access - event lists and the pending ready list. This function assumes that a - check has already been made to ensure pxEventList is not empty. */ - pxUnblockedCRCB = ( CRCB_t * ) listGET_OWNER_OF_HEAD_ENTRY( pxEventList ); - ( void ) uxListRemove( &( pxUnblockedCRCB->xEventListItem ) ); - vListInsertEnd( ( List_t * ) &( xPendingReadyCoRoutineList ), &( pxUnblockedCRCB->xEventListItem ) ); - - if( pxUnblockedCRCB->uxPriority >= pxCurrentCoRoutine->uxPriority ) - { - xReturn = pdTRUE; - } - else - { - xReturn = pdFALSE; - } - - return xReturn; -} - -#endif /* configUSE_CO_ROUTINES == 0 */ - diff --git a/rtos/freertos/abstraction_layer_freertos/scr/device.c b/rtos/freertos/abstraction_layer_freertos/scr/device.c deleted file mode 100644 index 14468a80..00000000 --- a/rtos/freertos/abstraction_layer_freertos/scr/device.c +++ /dev/null @@ -1,54 +0,0 @@ -/* - * Copyright 2020 GreenWaves Technologies - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * SPDX-License-Identifier: Apache-2.0 - */ - -#include "device.h" - -static inline pi_device_e get_pi_device_type(void *conf); - -/* extract pi_device_type */ -static inline pi_device_e get_pi_device_type(void *conf) -{ - pi_device_e *device_ptr = (pi_device_e *)conf; - return *device_ptr; -} - -void pi_open_from_conf(struct pi_device *device, void *conf) -{ -#if 0 - pi_device_e device_type = get_pi_device_type(conf); - switch (device_type) { - case PI_DEVICE_CLUSTER_TYPE: - device->config = conf; - pi_cluster_open(device); - break; - case PI_DEVICE_CPI_TYPE: - case PI_DEVICE_HYPERBUS_TYPE: - case PI_DEVICE_I2C_TYPE: - case PI_DEVICE_SPI_TYPE: - case PI_DEVICE_GPIO_TYPE: - device->config = conf; - break; - default: - device->config = conf; - // TODO: add debug warning here - break; - } -#else - device->config = conf; -#endif -} diff --git a/rtos/freertos/abstraction_layer_freertos/scr/event_groups.c b/rtos/freertos/abstraction_layer_freertos/scr/event_groups.c deleted file mode 100644 index 03cef5bd..00000000 --- a/rtos/freertos/abstraction_layer_freertos/scr/event_groups.c +++ /dev/null @@ -1,753 +0,0 @@ -/* - * FreeRTOS Kernel V10.3.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. - * - * Permission is hereby granted, free of charge, to any person obtaining a copy of - * this software and associated documentation files (the "Software"), to deal in - * the Software without restriction, including without limitation the rights to - * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of - * the Software, and to permit persons to whom the Software is furnished to do so, - * subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS - * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR - * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER - * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - * - * http://www.FreeRTOS.org - * http://aws.amazon.com/freertos - * - * 1 tab == 4 spaces! - */ - -/* Standard includes. */ -#include - -/* Defining MPU_WRAPPERS_INCLUDED_FROM_API_FILE prevents task.h from redefining -all the API functions to use the MPU wrappers. That should only be done when -task.h is included from an application file. */ -#define MPU_WRAPPERS_INCLUDED_FROM_API_FILE - -/* FreeRTOS includes. */ -#include "FreeRTOS.h" -#include "task.h" -#include "timers.h" -#include "event_groups.h" - -/* Lint e961, e750 and e9021 are suppressed as a MISRA exception justified -because the MPU ports require MPU_WRAPPERS_INCLUDED_FROM_API_FILE to be defined -for the header files above, but not in this file, in order to generate the -correct privileged Vs unprivileged linkage and placement. */ -#undef MPU_WRAPPERS_INCLUDED_FROM_API_FILE /*lint !e961 !e750 !e9021 See comment above. */ - -/* The following bit fields convey control information in a task's event list -item value. It is important they don't clash with the -taskEVENT_LIST_ITEM_VALUE_IN_USE definition. */ -#if configUSE_16_BIT_TICKS == 1 - #define eventCLEAR_EVENTS_ON_EXIT_BIT 0x0100U - #define eventUNBLOCKED_DUE_TO_BIT_SET 0x0200U - #define eventWAIT_FOR_ALL_BITS 0x0400U - #define eventEVENT_BITS_CONTROL_BYTES 0xff00U -#else - #define eventCLEAR_EVENTS_ON_EXIT_BIT 0x01000000UL - #define eventUNBLOCKED_DUE_TO_BIT_SET 0x02000000UL - #define eventWAIT_FOR_ALL_BITS 0x04000000UL - #define eventEVENT_BITS_CONTROL_BYTES 0xff000000UL -#endif - -typedef struct EventGroupDef_t -{ - EventBits_t uxEventBits; - List_t xTasksWaitingForBits; /*< List of tasks waiting for a bit to be set. */ - - #if( configUSE_TRACE_FACILITY == 1 ) - UBaseType_t uxEventGroupNumber; - #endif - - #if( ( configSUPPORT_STATIC_ALLOCATION == 1 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) ) - uint8_t ucStaticallyAllocated; /*< Set to pdTRUE if the event group is statically allocated to ensure no attempt is made to free the memory. */ - #endif -} EventGroup_t; - -/*-----------------------------------------------------------*/ - -/* - * Test the bits set in uxCurrentEventBits to see if the wait condition is met. - * The wait condition is defined by xWaitForAllBits. If xWaitForAllBits is - * pdTRUE then the wait condition is met if all the bits set in uxBitsToWaitFor - * are also set in uxCurrentEventBits. If xWaitForAllBits is pdFALSE then the - * wait condition is met if any of the bits set in uxBitsToWait for are also set - * in uxCurrentEventBits. - */ -static BaseType_t prvTestWaitCondition( const EventBits_t uxCurrentEventBits, const EventBits_t uxBitsToWaitFor, const BaseType_t xWaitForAllBits ) PRIVILEGED_FUNCTION; - -/*-----------------------------------------------------------*/ - -#if( configSUPPORT_STATIC_ALLOCATION == 1 ) - - EventGroupHandle_t xEventGroupCreateStatic( StaticEventGroup_t *pxEventGroupBuffer ) - { - EventGroup_t *pxEventBits; - - /* A StaticEventGroup_t object must be provided. */ - configASSERT( pxEventGroupBuffer ); - - #if( configASSERT_DEFINED == 1 ) - { - /* Sanity check that the size of the structure used to declare a - variable of type StaticEventGroup_t equals the size of the real - event group structure. */ - volatile size_t xSize = sizeof( StaticEventGroup_t ); - configASSERT( xSize == sizeof( EventGroup_t ) ); - } /*lint !e529 xSize is referenced if configASSERT() is defined. */ - #endif /* configASSERT_DEFINED */ - - /* The user has provided a statically allocated event group - use it. */ - pxEventBits = ( EventGroup_t * ) pxEventGroupBuffer; /*lint !e740 !e9087 EventGroup_t and StaticEventGroup_t are deliberately aliased for data hiding purposes and guaranteed to have the same size and alignment requirement - checked by configASSERT(). */ - - if( pxEventBits != NULL ) - { - pxEventBits->uxEventBits = 0; - vListInitialise( &( pxEventBits->xTasksWaitingForBits ) ); - - #if( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) - { - /* Both static and dynamic allocation can be used, so note that - this event group was created statically in case the event group - is later deleted. */ - pxEventBits->ucStaticallyAllocated = pdTRUE; - } - #endif /* configSUPPORT_DYNAMIC_ALLOCATION */ - - traceEVENT_GROUP_CREATE( pxEventBits ); - } - else - { - /* xEventGroupCreateStatic should only ever be called with - pxEventGroupBuffer pointing to a pre-allocated (compile time - allocated) StaticEventGroup_t variable. */ - traceEVENT_GROUP_CREATE_FAILED(); - } - - return pxEventBits; - } - -#endif /* configSUPPORT_STATIC_ALLOCATION */ -/*-----------------------------------------------------------*/ - -#if( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) - - EventGroupHandle_t xEventGroupCreate( void ) - { - EventGroup_t *pxEventBits; - - /* Allocate the event group. Justification for MISRA deviation as - follows: pvPortMalloc() always ensures returned memory blocks are - aligned per the requirements of the MCU stack. In this case - pvPortMalloc() must return a pointer that is guaranteed to meet the - alignment requirements of the EventGroup_t structure - which (if you - follow it through) is the alignment requirements of the TickType_t type - (EventBits_t being of TickType_t itself). Therefore, whenever the - stack alignment requirements are greater than or equal to the - TickType_t alignment requirements the cast is safe. In other cases, - where the natural word size of the architecture is less than - sizeof( TickType_t ), the TickType_t variables will be accessed in two - or more reads operations, and the alignment requirements is only that - of each individual read. */ - pxEventBits = ( EventGroup_t * ) pvPortMalloc( sizeof( EventGroup_t ) ); /*lint !e9087 !e9079 see comment above. */ - - if( pxEventBits != NULL ) - { - pxEventBits->uxEventBits = 0; - vListInitialise( &( pxEventBits->xTasksWaitingForBits ) ); - - #if( configSUPPORT_STATIC_ALLOCATION == 1 ) - { - /* Both static and dynamic allocation can be used, so note this - event group was allocated statically in case the event group is - later deleted. */ - pxEventBits->ucStaticallyAllocated = pdFALSE; - } - #endif /* configSUPPORT_STATIC_ALLOCATION */ - - traceEVENT_GROUP_CREATE( pxEventBits ); - } - else - { - traceEVENT_GROUP_CREATE_FAILED(); /*lint !e9063 Else branch only exists to allow tracing and does not generate code if trace macros are not defined. */ - } - - return pxEventBits; - } - -#endif /* configSUPPORT_DYNAMIC_ALLOCATION */ -/*-----------------------------------------------------------*/ - -EventBits_t xEventGroupSync( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToSet, const EventBits_t uxBitsToWaitFor, TickType_t xTicksToWait ) -{ -EventBits_t uxOriginalBitValue, uxReturn; -EventGroup_t *pxEventBits = xEventGroup; -BaseType_t xAlreadyYielded; -BaseType_t xTimeoutOccurred = pdFALSE; - - configASSERT( ( uxBitsToWaitFor & eventEVENT_BITS_CONTROL_BYTES ) == 0 ); - configASSERT( uxBitsToWaitFor != 0 ); - #if ( ( INCLUDE_xTaskGetSchedulerState == 1 ) || ( configUSE_TIMERS == 1 ) ) - { - configASSERT( !( ( xTaskGetSchedulerState() == taskSCHEDULER_SUSPENDED ) && ( xTicksToWait != 0 ) ) ); - } - #endif - - vTaskSuspendAll(); - { - uxOriginalBitValue = pxEventBits->uxEventBits; - - ( void ) xEventGroupSetBits( xEventGroup, uxBitsToSet ); - - if( ( ( uxOriginalBitValue | uxBitsToSet ) & uxBitsToWaitFor ) == uxBitsToWaitFor ) - { - /* All the rendezvous bits are now set - no need to block. */ - uxReturn = ( uxOriginalBitValue | uxBitsToSet ); - - /* Rendezvous always clear the bits. They will have been cleared - already unless this is the only task in the rendezvous. */ - pxEventBits->uxEventBits &= ~uxBitsToWaitFor; - - xTicksToWait = 0; - } - else - { - if( xTicksToWait != ( TickType_t ) 0 ) - { - traceEVENT_GROUP_SYNC_BLOCK( xEventGroup, uxBitsToSet, uxBitsToWaitFor ); - - /* Store the bits that the calling task is waiting for in the - task's event list item so the kernel knows when a match is - found. Then enter the blocked state. */ - vTaskPlaceOnUnorderedEventList( &( pxEventBits->xTasksWaitingForBits ), ( uxBitsToWaitFor | eventCLEAR_EVENTS_ON_EXIT_BIT | eventWAIT_FOR_ALL_BITS ), xTicksToWait ); - - /* This assignment is obsolete as uxReturn will get set after - the task unblocks, but some compilers mistakenly generate a - warning about uxReturn being returned without being set if the - assignment is omitted. */ - uxReturn = 0; - } - else - { - /* The rendezvous bits were not set, but no block time was - specified - just return the current event bit value. */ - uxReturn = pxEventBits->uxEventBits; - xTimeoutOccurred = pdTRUE; - } - } - } - xAlreadyYielded = xTaskResumeAll(); - - if( xTicksToWait != ( TickType_t ) 0 ) - { - if( xAlreadyYielded == pdFALSE ) - { - portYIELD_WITHIN_API(); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - /* The task blocked to wait for its required bits to be set - at this - point either the required bits were set or the block time expired. If - the required bits were set they will have been stored in the task's - event list item, and they should now be retrieved then cleared. */ - uxReturn = uxTaskResetEventItemValue(); - - if( ( uxReturn & eventUNBLOCKED_DUE_TO_BIT_SET ) == ( EventBits_t ) 0 ) - { - /* The task timed out, just return the current event bit value. */ - taskENTER_CRITICAL(); - { - uxReturn = pxEventBits->uxEventBits; - - /* Although the task got here because it timed out before the - bits it was waiting for were set, it is possible that since it - unblocked another task has set the bits. If this is the case - then it needs to clear the bits before exiting. */ - if( ( uxReturn & uxBitsToWaitFor ) == uxBitsToWaitFor ) - { - pxEventBits->uxEventBits &= ~uxBitsToWaitFor; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - taskEXIT_CRITICAL(); - - xTimeoutOccurred = pdTRUE; - } - else - { - /* The task unblocked because the bits were set. */ - } - - /* Control bits might be set as the task had blocked should not be - returned. */ - uxReturn &= ~eventEVENT_BITS_CONTROL_BYTES; - } - - traceEVENT_GROUP_SYNC_END( xEventGroup, uxBitsToSet, uxBitsToWaitFor, xTimeoutOccurred ); - - /* Prevent compiler warnings when trace macros are not used. */ - ( void ) xTimeoutOccurred; - - return uxReturn; -} -/*-----------------------------------------------------------*/ - -EventBits_t xEventGroupWaitBits( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToWaitFor, const BaseType_t xClearOnExit, const BaseType_t xWaitForAllBits, TickType_t xTicksToWait ) -{ -EventGroup_t *pxEventBits = xEventGroup; -EventBits_t uxReturn, uxControlBits = 0; -BaseType_t xWaitConditionMet, xAlreadyYielded; -BaseType_t xTimeoutOccurred = pdFALSE; - - /* Check the user is not attempting to wait on the bits used by the kernel - itself, and that at least one bit is being requested. */ - configASSERT( xEventGroup ); - configASSERT( ( uxBitsToWaitFor & eventEVENT_BITS_CONTROL_BYTES ) == 0 ); - configASSERT( uxBitsToWaitFor != 0 ); - #if ( ( INCLUDE_xTaskGetSchedulerState == 1 ) || ( configUSE_TIMERS == 1 ) ) - { - configASSERT( !( ( xTaskGetSchedulerState() == taskSCHEDULER_SUSPENDED ) && ( xTicksToWait != 0 ) ) ); - } - #endif - - vTaskSuspendAll(); - { - const EventBits_t uxCurrentEventBits = pxEventBits->uxEventBits; - - /* Check to see if the wait condition is already met or not. */ - xWaitConditionMet = prvTestWaitCondition( uxCurrentEventBits, uxBitsToWaitFor, xWaitForAllBits ); - - if( xWaitConditionMet != pdFALSE ) - { - /* The wait condition has already been met so there is no need to - block. */ - uxReturn = uxCurrentEventBits; - xTicksToWait = ( TickType_t ) 0; - - /* Clear the wait bits if requested to do so. */ - if( xClearOnExit != pdFALSE ) - { - pxEventBits->uxEventBits &= ~uxBitsToWaitFor; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else if( xTicksToWait == ( TickType_t ) 0 ) - { - /* The wait condition has not been met, but no block time was - specified, so just return the current value. */ - uxReturn = uxCurrentEventBits; - xTimeoutOccurred = pdTRUE; - } - else - { - /* The task is going to block to wait for its required bits to be - set. uxControlBits are used to remember the specified behaviour of - this call to xEventGroupWaitBits() - for use when the event bits - unblock the task. */ - if( xClearOnExit != pdFALSE ) - { - uxControlBits |= eventCLEAR_EVENTS_ON_EXIT_BIT; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - if( xWaitForAllBits != pdFALSE ) - { - uxControlBits |= eventWAIT_FOR_ALL_BITS; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - /* Store the bits that the calling task is waiting for in the - task's event list item so the kernel knows when a match is - found. Then enter the blocked state. */ - vTaskPlaceOnUnorderedEventList( &( pxEventBits->xTasksWaitingForBits ), ( uxBitsToWaitFor | uxControlBits ), xTicksToWait ); - - /* This is obsolete as it will get set after the task unblocks, but - some compilers mistakenly generate a warning about the variable - being returned without being set if it is not done. */ - uxReturn = 0; - - traceEVENT_GROUP_WAIT_BITS_BLOCK( xEventGroup, uxBitsToWaitFor ); - } - } - xAlreadyYielded = xTaskResumeAll(); - - if( xTicksToWait != ( TickType_t ) 0 ) - { - if( xAlreadyYielded == pdFALSE ) - { - portYIELD_WITHIN_API(); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - /* The task blocked to wait for its required bits to be set - at this - point either the required bits were set or the block time expired. If - the required bits were set they will have been stored in the task's - event list item, and they should now be retrieved then cleared. */ - uxReturn = uxTaskResetEventItemValue(); - - if( ( uxReturn & eventUNBLOCKED_DUE_TO_BIT_SET ) == ( EventBits_t ) 0 ) - { - taskENTER_CRITICAL(); - { - /* The task timed out, just return the current event bit value. */ - uxReturn = pxEventBits->uxEventBits; - - /* It is possible that the event bits were updated between this - task leaving the Blocked state and running again. */ - if( prvTestWaitCondition( uxReturn, uxBitsToWaitFor, xWaitForAllBits ) != pdFALSE ) - { - if( xClearOnExit != pdFALSE ) - { - pxEventBits->uxEventBits &= ~uxBitsToWaitFor; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - xTimeoutOccurred = pdTRUE; - } - taskEXIT_CRITICAL(); - } - else - { - /* The task unblocked because the bits were set. */ - } - - /* The task blocked so control bits may have been set. */ - uxReturn &= ~eventEVENT_BITS_CONTROL_BYTES; - } - traceEVENT_GROUP_WAIT_BITS_END( xEventGroup, uxBitsToWaitFor, xTimeoutOccurred ); - - /* Prevent compiler warnings when trace macros are not used. */ - ( void ) xTimeoutOccurred; - - return uxReturn; -} -/*-----------------------------------------------------------*/ - -EventBits_t xEventGroupClearBits( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToClear ) -{ -EventGroup_t *pxEventBits = xEventGroup; -EventBits_t uxReturn; - - /* Check the user is not attempting to clear the bits used by the kernel - itself. */ - configASSERT( xEventGroup ); - configASSERT( ( uxBitsToClear & eventEVENT_BITS_CONTROL_BYTES ) == 0 ); - - taskENTER_CRITICAL(); - { - traceEVENT_GROUP_CLEAR_BITS( xEventGroup, uxBitsToClear ); - - /* The value returned is the event group value prior to the bits being - cleared. */ - uxReturn = pxEventBits->uxEventBits; - - /* Clear the bits. */ - pxEventBits->uxEventBits &= ~uxBitsToClear; - } - taskEXIT_CRITICAL(); - - return uxReturn; -} -/*-----------------------------------------------------------*/ - -#if ( ( configUSE_TRACE_FACILITY == 1 ) && ( INCLUDE_xTimerPendFunctionCall == 1 ) && ( configUSE_TIMERS == 1 ) ) - - BaseType_t xEventGroupClearBitsFromISR( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToClear ) - { - BaseType_t xReturn; - - traceEVENT_GROUP_CLEAR_BITS_FROM_ISR( xEventGroup, uxBitsToClear ); - xReturn = xTimerPendFunctionCallFromISR( vEventGroupClearBitsCallback, ( void * ) xEventGroup, ( uint32_t ) uxBitsToClear, NULL ); /*lint !e9087 Can't avoid cast to void* as a generic callback function not specific to this use case. Callback casts back to original type so safe. */ - - return xReturn; - } - -#endif -/*-----------------------------------------------------------*/ - -EventBits_t xEventGroupGetBitsFromISR( EventGroupHandle_t xEventGroup ) -{ -UBaseType_t uxSavedInterruptStatus; -EventGroup_t const * const pxEventBits = xEventGroup; -EventBits_t uxReturn; - - uxSavedInterruptStatus = portSET_INTERRUPT_MASK_FROM_ISR(); - { - uxReturn = pxEventBits->uxEventBits; - } - portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus ); - - return uxReturn; -} /*lint !e818 EventGroupHandle_t is a typedef used in other functions to so can't be pointer to const. */ -/*-----------------------------------------------------------*/ - -EventBits_t xEventGroupSetBits( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToSet ) -{ -ListItem_t *pxListItem, *pxNext; -ListItem_t const *pxListEnd; -List_t const * pxList; -EventBits_t uxBitsToClear = 0, uxBitsWaitedFor, uxControlBits; -EventGroup_t *pxEventBits = xEventGroup; -BaseType_t xMatchFound = pdFALSE; - - /* Check the user is not attempting to set the bits used by the kernel - itself. */ - configASSERT( xEventGroup ); - configASSERT( ( uxBitsToSet & eventEVENT_BITS_CONTROL_BYTES ) == 0 ); - - pxList = &( pxEventBits->xTasksWaitingForBits ); - pxListEnd = listGET_END_MARKER( pxList ); /*lint !e826 !e740 !e9087 The mini list structure is used as the list end to save RAM. This is checked and valid. */ - vTaskSuspendAll(); - { - traceEVENT_GROUP_SET_BITS( xEventGroup, uxBitsToSet ); - - pxListItem = listGET_HEAD_ENTRY( pxList ); - - /* Set the bits. */ - pxEventBits->uxEventBits |= uxBitsToSet; - - /* See if the new bit value should unblock any tasks. */ - while( pxListItem != pxListEnd ) - { - pxNext = listGET_NEXT( pxListItem ); - uxBitsWaitedFor = listGET_LIST_ITEM_VALUE( pxListItem ); - xMatchFound = pdFALSE; - - /* Split the bits waited for from the control bits. */ - uxControlBits = uxBitsWaitedFor & eventEVENT_BITS_CONTROL_BYTES; - uxBitsWaitedFor &= ~eventEVENT_BITS_CONTROL_BYTES; - - if( ( uxControlBits & eventWAIT_FOR_ALL_BITS ) == ( EventBits_t ) 0 ) - { - /* Just looking for single bit being set. */ - if( ( uxBitsWaitedFor & pxEventBits->uxEventBits ) != ( EventBits_t ) 0 ) - { - xMatchFound = pdTRUE; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else if( ( uxBitsWaitedFor & pxEventBits->uxEventBits ) == uxBitsWaitedFor ) - { - /* All bits are set. */ - xMatchFound = pdTRUE; - } - else - { - /* Need all bits to be set, but not all the bits were set. */ - } - - if( xMatchFound != pdFALSE ) - { - /* The bits match. Should the bits be cleared on exit? */ - if( ( uxControlBits & eventCLEAR_EVENTS_ON_EXIT_BIT ) != ( EventBits_t ) 0 ) - { - uxBitsToClear |= uxBitsWaitedFor; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - /* Store the actual event flag value in the task's event list - item before removing the task from the event list. The - eventUNBLOCKED_DUE_TO_BIT_SET bit is set so the task knows - that is was unblocked due to its required bits matching, rather - than because it timed out. */ - vTaskRemoveFromUnorderedEventList( pxListItem, pxEventBits->uxEventBits | eventUNBLOCKED_DUE_TO_BIT_SET ); - } - - /* Move onto the next list item. Note pxListItem->pxNext is not - used here as the list item may have been removed from the event list - and inserted into the ready/pending reading list. */ - pxListItem = pxNext; - } - - /* Clear any bits that matched when the eventCLEAR_EVENTS_ON_EXIT_BIT - bit was set in the control word. */ - pxEventBits->uxEventBits &= ~uxBitsToClear; - } - ( void ) xTaskResumeAll(); - - return pxEventBits->uxEventBits; -} -/*-----------------------------------------------------------*/ - -void vEventGroupDelete( EventGroupHandle_t xEventGroup ) -{ -EventGroup_t *pxEventBits = xEventGroup; -const List_t *pxTasksWaitingForBits = &( pxEventBits->xTasksWaitingForBits ); - - vTaskSuspendAll(); - { - traceEVENT_GROUP_DELETE( xEventGroup ); - - while( listCURRENT_LIST_LENGTH( pxTasksWaitingForBits ) > ( UBaseType_t ) 0 ) - { - /* Unblock the task, returning 0 as the event list is being deleted - and cannot therefore have any bits set. */ - configASSERT( pxTasksWaitingForBits->xListEnd.pxNext != ( const ListItem_t * ) &( pxTasksWaitingForBits->xListEnd ) ); - vTaskRemoveFromUnorderedEventList( pxTasksWaitingForBits->xListEnd.pxNext, eventUNBLOCKED_DUE_TO_BIT_SET ); - } - - #if( ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) && ( configSUPPORT_STATIC_ALLOCATION == 0 ) ) - { - /* The event group can only have been allocated dynamically - free - it again. */ - vPortFree( pxEventBits ); - } - #elif( ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) && ( configSUPPORT_STATIC_ALLOCATION == 1 ) ) - { - /* The event group could have been allocated statically or - dynamically, so check before attempting to free the memory. */ - if( pxEventBits->ucStaticallyAllocated == ( uint8_t ) pdFALSE ) - { - vPortFree( pxEventBits ); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - #endif /* configSUPPORT_DYNAMIC_ALLOCATION */ - } - ( void ) xTaskResumeAll(); -} -/*-----------------------------------------------------------*/ - -/* For internal use only - execute a 'set bits' command that was pended from -an interrupt. */ -void vEventGroupSetBitsCallback( void *pvEventGroup, const uint32_t ulBitsToSet ) -{ - ( void ) xEventGroupSetBits( pvEventGroup, ( EventBits_t ) ulBitsToSet ); /*lint !e9079 Can't avoid cast to void* as a generic timer callback prototype. Callback casts back to original type so safe. */ -} -/*-----------------------------------------------------------*/ - -/* For internal use only - execute a 'clear bits' command that was pended from -an interrupt. */ -void vEventGroupClearBitsCallback( void *pvEventGroup, const uint32_t ulBitsToClear ) -{ - ( void ) xEventGroupClearBits( pvEventGroup, ( EventBits_t ) ulBitsToClear ); /*lint !e9079 Can't avoid cast to void* as a generic timer callback prototype. Callback casts back to original type so safe. */ -} -/*-----------------------------------------------------------*/ - -static BaseType_t prvTestWaitCondition( const EventBits_t uxCurrentEventBits, const EventBits_t uxBitsToWaitFor, const BaseType_t xWaitForAllBits ) -{ -BaseType_t xWaitConditionMet = pdFALSE; - - if( xWaitForAllBits == pdFALSE ) - { - /* Task only has to wait for one bit within uxBitsToWaitFor to be - set. Is one already set? */ - if( ( uxCurrentEventBits & uxBitsToWaitFor ) != ( EventBits_t ) 0 ) - { - xWaitConditionMet = pdTRUE; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - /* Task has to wait for all the bits in uxBitsToWaitFor to be set. - Are they set already? */ - if( ( uxCurrentEventBits & uxBitsToWaitFor ) == uxBitsToWaitFor ) - { - xWaitConditionMet = pdTRUE; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - - return xWaitConditionMet; -} -/*-----------------------------------------------------------*/ - -#if ( ( configUSE_TRACE_FACILITY == 1 ) && ( INCLUDE_xTimerPendFunctionCall == 1 ) && ( configUSE_TIMERS == 1 ) ) - - BaseType_t xEventGroupSetBitsFromISR( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToSet, BaseType_t *pxHigherPriorityTaskWoken ) - { - BaseType_t xReturn; - - traceEVENT_GROUP_SET_BITS_FROM_ISR( xEventGroup, uxBitsToSet ); - xReturn = xTimerPendFunctionCallFromISR( vEventGroupSetBitsCallback, ( void * ) xEventGroup, ( uint32_t ) uxBitsToSet, pxHigherPriorityTaskWoken ); /*lint !e9087 Can't avoid cast to void* as a generic callback function not specific to this use case. Callback casts back to original type so safe. */ - - return xReturn; - } - -#endif -/*-----------------------------------------------------------*/ - -#if (configUSE_TRACE_FACILITY == 1) - - UBaseType_t uxEventGroupGetNumber( void* xEventGroup ) - { - UBaseType_t xReturn; - EventGroup_t const *pxEventBits = ( EventGroup_t * ) xEventGroup; /*lint !e9087 !e9079 EventGroupHandle_t is a pointer to an EventGroup_t, but EventGroupHandle_t is kept opaque outside of this file for data hiding purposes. */ - - if( xEventGroup == NULL ) - { - xReturn = 0; - } - else - { - xReturn = pxEventBits->uxEventGroupNumber; - } - - return xReturn; - } - -#endif /* configUSE_TRACE_FACILITY */ -/*-----------------------------------------------------------*/ - -#if ( configUSE_TRACE_FACILITY == 1 ) - - void vEventGroupSetNumber( void * xEventGroup, UBaseType_t uxEventGroupNumber ) - { - ( ( EventGroup_t * ) xEventGroup )->uxEventGroupNumber = uxEventGroupNumber; /*lint !e9087 !e9079 EventGroupHandle_t is a pointer to an EventGroup_t, but EventGroupHandle_t is kept opaque outside of this file for data hiding purposes. */ - } - -#endif /* configUSE_TRACE_FACILITY */ -/*-----------------------------------------------------------*/ - - diff --git a/rtos/freertos/abstraction_layer_freertos/scr/fc_event.c b/rtos/freertos/abstraction_layer_freertos/scr/fc_event.c deleted file mode 100644 index 65aeb35a..00000000 --- a/rtos/freertos/abstraction_layer_freertos/scr/fc_event.c +++ /dev/null @@ -1,69 +0,0 @@ -/* - * Copyright 2020 GreenWaves Technologies - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * SPDX-License-Identifier: Apache-2.0 - */ - -#include -#include -#include "fc_event.h" -#include "memory_map.h" -#include "riscv.h" - - -static void fc_event_null_event(void *arg); - -static volatile pi_fc_event_handler_t fc_event_handlers[NB_SOC_EVENTS]; - -static void fc_event_null_event(void *arg) -{ - return; -} - -void pi_fc_event_handler_init(uint32_t fc_event_irq) -{ - /* TODO: fix this mess, that should be 8 32-bit writes */ - /* open the mask for fc_soc_event irq */ - for (int i = 0; i < NB_SOC_EVENTS; i++) { - pi_fc_event_handler_clear((uint32_t)i); - } - irqn_enable(fc_event_irq); -} - -void pi_fc_event_handler_set(uint32_t event_id, - pi_fc_event_handler_t event_handler) -{ - fc_event_handlers[event_id] = event_handler; -} - -void pi_fc_event_handler_clear(uint32_t event_id) -{ - fc_event_handlers[event_id] = - (pi_fc_event_handler_t)fc_event_null_event; -} - -/* TODO: fix */ -__attribute__((section(".text"))) void fc_soc_event_handler(void) -{ - /* Pop one event element from the FIFO */ - uint32_t event = SIMPLE_IRQ->FIFO; - - event &= 0xFF; - - /* redirect to handler with jump table */ - if (fc_event_handlers[event] != NULL) { - fc_event_handlers[event]((void *)event); - } -} diff --git a/rtos/freertos/abstraction_layer_freertos/scr/fll.c b/rtos/freertos/abstraction_layer_freertos/scr/fll.c deleted file mode 100644 index 2994a395..00000000 --- a/rtos/freertos/abstraction_layer_freertos/scr/fll.c +++ /dev/null @@ -1,231 +0,0 @@ -/* - * Copyright 2020 GreenWaves Technologies - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * SPDX-License-Identifier: Apache-2.0 - */ - -#include - -#include "bits.h" -#include "fll.h" -#include "irq.h" - -/* - * Fll control - * FreqOut = Fref * Mult/2^(Div-1) - * With Mult on 16 bits and Div on 4 bits - */ - -/* Maximum Log2(DCO Frequency) */ -#define FLL_LOG2_MAXDCO 29 -/* Maximum Log2(Clok Divider) */ -#define FLL_LOG2_MAXDIV 15 -/* Log2(FLL_REF_CLK=32768) */ -#define FLL_LOG2_REFCLK ARCHI_REF_CLOCK_LOG2 -/* Maximum Log2(Multiplier) */ -#define FLL_LOG2_MAXM (FLL_LOG2_MAXDCO - FLL_LOG2_REFCLK) - -/* TODO: we are patching over these macros to make them independent of pulp-gcc - */ -#define __MAX(a, b) \ - ({ \ - typeof(a) _a = (a); \ - typeof(b) _b = (b); \ - _a > _b ? _a : _b; \ - }) - -#define __FL1(x) (31 - __builtin_clz((x))) - -static volatile uint32_t flls_frequency[FLL_NUM]; - - -static uint32_t fll_get_mult_div_from_frequency(uint32_t freq, uint32_t *mult, - uint32_t *div) -{ - unsigned int fref = FLL_REF_CLK; - unsigned int Log2M = __FL1(freq) - __FL1(fref); - unsigned int D = __MAX(1, (FLL_LOG2_MAXM - Log2M) >> 1); - unsigned int M = (freq << D) / fref; - unsigned int fres; - - fres = (fref * M + (1 << (D - 1))) >> D; /* Rounding */ - - *mult = M; - *div = D + 1; - return fres; -} - -static uint32_t fll_get_frequency_from_mult_div(uint32_t mult, uint32_t div) -{ - /* FreqOut = Fref * Mult/2^(Div-1) With Mult on 16 bits and Div on 4 - * bits */ - uint32_t fref = FLL_REF_CLK; - uint32_t fres = (div == 0) ? (fref * mult) : (fref * mult) >> (div - 1); - return fres; -} - -int pi_fll_set_frequency(fll_type_t which_fll, uint32_t frequency, int check) -{ - uint32_t mult, div; - uint32_t reg1; - - int irq = __disable_irq(); - - /* Frequency calculation from theory */ - fll_get_mult_div_from_frequency(frequency, &mult, &div); - - /* update mult and div */ - /* TODO: check if fll is on */ - reg1 = FLL_CTRL[which_fll].FLL_CONF1; - - reg1 &= ~FLL_CTRL_CONF1_MULTI_FACTOR_MASK; - reg1 |= REG_SET(FLL_CTRL_CONF1_MULTI_FACTOR, mult); - reg1 &= ~FLL_CTRL_CONF1_CLK_OUT_DIV_MASK; - reg1 |= REG_SET(FLL_CTRL_CONF1_CLK_OUT_DIV, div); - - FLL_CTRL[which_fll].FLL_CONF1 = reg1; - - /* finalize */ - if (which_fll == FLL_SOC) - system_core_clock_update(); - - flls_frequency[which_fll] = frequency; - - __restore_irq(irq); - - return frequency; -} - -void pi_fll_init(fll_type_t which_fll, uint32_t ret_state) -{ - uint32_t reg1; - - if (ret_state) { - pi_fll_get_frequency(which_fll, 1); - } else { - reg1 = FLL_CTRL[which_fll].FLL_CONF1; - - /* - * Don't set the gain and integrator in case it has already been - * set by the boot code as it totally blocks the fll on the RTL - * platform. The boot code is anyway setting the same - * configuration. - */ - if (!REG_GET(FLL_CTRL_CONF1_MODE, reg1)) { - /* set clock ref lock assert count */ - uint32_t reg2 = FLL_CTRL[which_fll].FLL_CONF2; - reg2 &= ~FLL_CTRL_CONF2_ASSERT_CYCLES_MASK; - reg2 |= REG_SET(FLL_CTRL_CONF2_ASSERT_CYCLES, 0x6); - reg2 &= ~FLL_CTRL_CONF2_LOCK_TOLERANCE_MASK; - reg2 |= REG_SET(FLL_CTRL_CONF2_LOCK_TOLERANCE, 0x50); - FLL_CTRL[which_fll].FLL_CONF2 = reg2; - - /* - * In order to lock the fll faster, we first setup an - * approximated frequency while we are in open loop as - * it is set immediately. Then starting from this - * frequency, we should reach the target one in lock - * mode faster. We are in open loop, prime the fll - * forcing dco input, approx 70 MHz - */ - uint32_t regint = FLL_CTRL[which_fll].FLL_INTEGRATOR; - regint &= ~FLL_CTRL_INTEGRATOR_INT_PART_MASK; - regint |= REG_SET(FLL_CTRL_INTEGRATOR_INT_PART, 332); - FLL_CTRL[which_fll].FLL_INTEGRATOR = regint; - - /* Lock FLL */ - reg1 &= ~FLL_CTRL_CONF1_OUTPUT_LOCK_EN_MASK; - reg1 |= REG_SET(FLL_CTRL_CONF1_OUTPUT_LOCK_EN, 1); - reg1 &= ~FLL_CTRL_CONF1_MODE_MASK; - reg1 |= REG_SET(FLL_CTRL_CONF1_MODE, 1); - FLL_CTRL[which_fll].FLL_CONF1 = reg1; - } - - /* - * In case the FLL frequency was set while it was off, update it - * immediately - */ - uint32_t freq = flls_frequency[which_fll]; - if (freq) { - if (pi_fll_set_frequency(which_fll, freq, 0)) - abort(); - } else { - freq = fll_get_frequency_from_mult_div( - REG_GET(FLL_CTRL_CONF1_MULTI_FACTOR, reg1), - REG_GET(FLL_CTRL_CONF1_CLK_OUT_DIV, reg1)); - flls_frequency[which_fll] = freq; - } - /* TODO: see if we need this - if (pi_fll_set_frequency(which_fll, DEFAULT_SYSTEM_CLOCK, 0) == - -1) - exit(-1); - */ - } -} - -int pi_fll_get_frequency(fll_type_t which_fll, uint8_t real) -{ - if (real) { - /* Frequency calculation from real world */ - int real_freq = 0; - real_freq = fll_get_frequency_from_mult_div( - FLL_CTRL[which_fll].FLL_STATUS, - REG_GET(FLL_CTRL_CONF1_CLK_OUT_DIV, - FLL_CTRL[which_fll].FLL_CONF1)); - - /* Update Frequency */ - flls_frequency[which_fll] = real_freq; - } - return flls_frequency[which_fll]; -} - -void pi_fll_deinit(fll_type_t which_fll) -{ - flls_frequency[which_fll] = 0; -} - -uint32_t pi_freq_get(pi_freq_domain_e domain) -{ - switch (domain) { - case PI_FREQ_DOMAIN_FC: - return pi_fll_get_frequency(FLL_SOC, 0); - case PI_FREQ_DOMAIN_CL: - return pi_fll_get_frequency(FLL_CLUSTER, 0); - case PI_FREQ_DOMAIN_PERIPH: - return pi_fll_get_frequency(FLL_SOC, 0); - default: - return 0; - } -} - -int32_t pi_freq_set(pi_freq_domain_e domain, uint32_t freq) -{ - int32_t retval = -1; - switch (domain) { - case PI_FREQ_DOMAIN_FC: - retval = pi_fll_set_frequency(FLL_SOC, freq, 1); - break; - case PI_FREQ_DOMAIN_CL: - retval = pi_fll_set_frequency(FLL_CLUSTER, freq, 1); - break; - case PI_FREQ_DOMAIN_PERIPH: - retval = pi_fll_set_frequency(FLL_SOC, freq, 1); - break; - default: - retval = -1; - } - - return ((retval == -1) ? -1 : 0); -} diff --git a/rtos/freertos/abstraction_layer_freertos/scr/gpio.c b/rtos/freertos/abstraction_layer_freertos/scr/gpio.c deleted file mode 100644 index 121c350c..00000000 --- a/rtos/freertos/abstraction_layer_freertos/scr/gpio.c +++ /dev/null @@ -1,172 +0,0 @@ -/* - * Copyright (C) 2020 ETH Zurich and University of Bologna - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * SPDX-License-Identifier: Apache-2.0 - */ -/* Driver to control and configure the PULP GPIO pins */ -/* Author: Robert Balas (balasr@iis.ee.ethz.ch) - */ - -#include -#include - -#include "pulp_mem_map.h" -#include "io.h" -#include "pinmux.h" -#include "bits.h" - -#include "gpio.h" - -int gpio_pin_conf_pad(int pin, uint32_t flags) -{ - assert(0 <= pin && pin < 32); - - /* this is only correct if the static assert in gpio.h regarding padcfg* - * registers doesn't fail - */ - uintptr_t pad_conf_reg = - (((uintptr_t)pin & 0xf) >> 3) * 4 + - (uintptr_t)(PULP_GPIO_ADDR + GPIO_PADCFG0_OFFSET); - uint32_t pad_shift = (pin & 0x3) << 3; /* (0,1) (8,9) (16,17) (24,25) */ - uint32_t val = (flags & GPIO_PULL_ENABLE) | - (flags & GPIO_DRIVE_STRENGTH_HIGH) << 1; - - writew(val << pad_shift, pad_conf_reg); - - return 0; -} - -/* for now we only handle the gpio from 0-31 and ignore 32-63 */ -int gpio_pin_configure(int pin, uint32_t flags) -{ - /* check for misconfigurations */ - assert(!((flags & GPIO_INPUT) && (flags & GPIO_OUTPUT))); - - /* set pad mux to gpio */ - pinmux_pin_set(pin, PINMUX_FUNC_B); - - /* configure pad pull and drive */ - gpio_pin_conf_pad(pin, flags); - - /* configure direction */ - uint32_t pads = readw((uintptr_t)(PULP_GPIO_ADDR + GPIO_PADDIR_OFFSET)); - WRITE_BIT(pads, pin, flags & GPIO_OUTPUT); - writew(pads, (uintptr_t)(PULP_GPIO_ADDR + GPIO_PADDIR_OFFSET)); - - /* default value to prevent glitches */ - if (flags & GPIO_OUTPUT_INIT_HIGH) - gpio_pin_set_raw(pin, 1); - - if (flags & GPIO_OUTPUT_INIT_LOW) - gpio_pin_set_raw(pin, 0); - - /* control pad clock gating: need to enable clock for inputs */ - uint32_t en = readw((uintptr_t)(PULP_GPIO_ADDR + GPIO_GPIOEN_OFFSET)); - WRITE_BIT(en, pin, GPIO_INPUT); - writew(en, (uintptr_t)(PULP_GPIO_ADDR + GPIO_GPIOEN_OFFSET)); - - return 0; -} - -inline int gpio_port_get_raw(uint32_t *value) -{ - /* this api is a bit dumb but the return value is mean to signal an - * error. This never happens in our implementation. - */ - *value = readw((uintptr_t)(PULP_GPIO_ADDR + GPIO_PADIN_OFFSET)); - - return 0; -} - -inline int gpio_port_set_masked_raw(uint32_t mask, uint32_t value) -{ - uint32_t outval = - readw((uintptr_t)(PULP_GPIO_ADDR + GPIO_PADOUT_OFFSET)); - writew((outval & ~mask) | (value & mask), - (uintptr_t)(PULP_GPIO_ADDR + GPIO_PADOUT_OFFSET)); - - return 0; -} - -inline int gpio_port_set_bits_raw(uint32_t mask) -{ - uint32_t outval = - readw((uintptr_t)(PULP_GPIO_ADDR + GPIO_PADOUT_OFFSET)); - writew(outval | mask, (uintptr_t)(PULP_GPIO_ADDR + GPIO_PADOUT_OFFSET)); - - return 0; -} - -inline int gpio_port_clear_bits_raw(uint32_t mask) -{ - uint32_t outval = - readw((uintptr_t)(PULP_GPIO_ADDR + GPIO_PADOUT_OFFSET)); - writew(outval & ~mask, - (uintptr_t)(PULP_GPIO_ADDR + GPIO_PADOUT_OFFSET)); - - return 0; -} - -inline int gpio_port_toggle_bits(uint32_t mask) -{ - uint32_t outval = - readw((uintptr_t)(PULP_GPIO_ADDR + GPIO_PADOUT_OFFSET)); - writew(outval ^ mask, (uintptr_t)(PULP_GPIO_ADDR + GPIO_PADOUT_OFFSET)); - - return 0; -} - -inline int gpio_pin_get_raw(int pin) -{ - assert(0 <= pin && pin < 32); - - uint32_t value = 0; - int ret = gpio_port_get_raw(&value); - if (!ret) - ret = (value & BIT(pin)) != 0; - - return ret; -} - -inline int gpio_pin_set_raw(int pin, int value) -{ - assert(0 <= pin && pin < 32); - - if (value != 0) - gpio_port_set_bits_raw(BIT(pin)); - else - gpio_port_clear_bits_raw(BIT(pin)); - - return 0; -} - -inline int gpio_pin_toggle(int pin) -{ - return gpio_port_toggle_bits(BIT(pin)); -} -/* TODO: gpio interrupt handling and configuration */ -/* static inline int gpio_pin_interrupt_configure() */ -/* { */ -/* } */ - -/* static inline int gpio_manage_callback(){ */ - -/* } */ -/* static inline int gpio_enable_callback(){ */ - -/* } */ -/* static inline int gpio_disable_callback(){ */ - -/* } */ diff --git a/rtos/freertos/abstraction_layer_freertos/scr/irq.c b/rtos/freertos/abstraction_layer_freertos/scr/irq.c deleted file mode 100644 index ce2036d4..00000000 --- a/rtos/freertos/abstraction_layer_freertos/scr/irq.c +++ /dev/null @@ -1,102 +0,0 @@ -/* - * Copyright (C) 2019 ETH Zurich and University of Bologna - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * SPDX-License-Identifier: Apache-2.0 - * Author: Robert Balas (balasr@iis.ee.ethz.ch) - */ - -/* Driver to control and configure the PULP IRQ (apb_interrupt_control)*/ - -#include -#include - -#include "pulp_mem_map.h" -#include "io.h" -#include "irq.h" -#include "csr.h" - -extern void (*isr_table[32])(void); - -/* set interrupt handler for given interrupt id */ -void irq_set_handler(int id, void (*handler)(void)) -{ - assert (0 <= id < 32); - isr_table[id] = handler; -} - -/* utility functions for PULPs external interrupt controller */ -void irq_mask(uint32_t mask) -{ - writew(mask, (uintptr_t)(PULP_FC_IRQ_ADDR + IRQ_REG_MASK_OFFSET)); -} - -void irq_enable(uint32_t mask) -{ - writew(mask, (uintptr_t)(PULP_FC_IRQ_ADDR + IRQ_REG_MASK_SET_OFFSET)); -} - -void irq_disable(uint32_t mask) -{ - writew(mask, (uintptr_t)(PULP_FC_IRQ_ADDR + IRQ_REG_MASK_CLEAR_OFFSET)); -} - -void irq_pend(uint32_t mask) -{ - writew(mask, (uintptr_t)(PULP_FC_IRQ_ADDR + IRQ_REG_INT_SET_OFFSET)); -} - -void irq_clear(uint32_t mask) -{ - writew(mask, (uintptr_t)(PULP_FC_IRQ_ADDR + IRQ_REG_INT_CLEAR_OFFSET)); -} - -/* utility functions for the core level interrupt (CLINT) described in the - * RISC-V privileged specification */ - -/* enable/disable interrupt globally (MIE bit in mstatus csr) */ -uint32_t irq_clint_global_disable() -{ - uint32_t val = csr_read_clear(CSR_MSTATUS, MSTATUS_IE); - return val; -} - -uint32_t irq_clint_global_enable() -{ - uint32_t val = csr_read_set(CSR_MSTATUS, MSTATUS_IE); - return val; -} - -/* enable/disable interrupts selectively (in mie csr) */ -uint32_t irq_clint_disable(int32_t mask) -{ - uint32_t val = csr_read_clear(CSR_MIE, mask); - return val; -} - -uint32_t irq_clint_enable(int32_t mask) -{ - uint32_t val = csr_read_set(CSR_MIE, mask); - return val; -} - - -/* TODO: make this a constructor? */ -void pulp_irq_init() -{ - /* the debug module could have enabled irq so we disable it during - * initialization - */ - irq_disable(0xffffffff); -} diff --git a/rtos/freertos/abstraction_layer_freertos/scr/list.c b/rtos/freertos/abstraction_layer_freertos/scr/list.c deleted file mode 100644 index 86b3eced..00000000 --- a/rtos/freertos/abstraction_layer_freertos/scr/list.c +++ /dev/null @@ -1,198 +0,0 @@ -/* - * FreeRTOS Kernel V10.3.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. - * - * Permission is hereby granted, free of charge, to any person obtaining a copy of - * this software and associated documentation files (the "Software"), to deal in - * the Software without restriction, including without limitation the rights to - * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of - * the Software, and to permit persons to whom the Software is furnished to do so, - * subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS - * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR - * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER - * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - * - * http://www.FreeRTOS.org - * http://aws.amazon.com/freertos - * - * 1 tab == 4 spaces! - */ - - -#include -#include "FreeRTOS.h" -#include "list.h" - -/*----------------------------------------------------------- - * PUBLIC LIST API documented in list.h - *----------------------------------------------------------*/ - -void vListInitialise( List_t * const pxList ) -{ - /* The list structure contains a list item which is used to mark the - end of the list. To initialise the list the list end is inserted - as the only list entry. */ - pxList->pxIndex = ( ListItem_t * ) &( pxList->xListEnd ); /*lint !e826 !e740 !e9087 The mini list structure is used as the list end to save RAM. This is checked and valid. */ - - /* The list end value is the highest possible value in the list to - ensure it remains at the end of the list. */ - pxList->xListEnd.xItemValue = portMAX_DELAY; - - /* The list end next and previous pointers point to itself so we know - when the list is empty. */ - pxList->xListEnd.pxNext = ( ListItem_t * ) &( pxList->xListEnd ); /*lint !e826 !e740 !e9087 The mini list structure is used as the list end to save RAM. This is checked and valid. */ - pxList->xListEnd.pxPrevious = ( ListItem_t * ) &( pxList->xListEnd );/*lint !e826 !e740 !e9087 The mini list structure is used as the list end to save RAM. This is checked and valid. */ - - pxList->uxNumberOfItems = ( UBaseType_t ) 0U; - - /* Write known values into the list if - configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES is set to 1. */ - listSET_LIST_INTEGRITY_CHECK_1_VALUE( pxList ); - listSET_LIST_INTEGRITY_CHECK_2_VALUE( pxList ); -} -/*-----------------------------------------------------------*/ - -void vListInitialiseItem( ListItem_t * const pxItem ) -{ - /* Make sure the list item is not recorded as being on a list. */ - pxItem->pxContainer = NULL; - - /* Write known values into the list item if - configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES is set to 1. */ - listSET_FIRST_LIST_ITEM_INTEGRITY_CHECK_VALUE( pxItem ); - listSET_SECOND_LIST_ITEM_INTEGRITY_CHECK_VALUE( pxItem ); -} -/*-----------------------------------------------------------*/ - -void vListInsertEnd( List_t * const pxList, ListItem_t * const pxNewListItem ) -{ -ListItem_t * const pxIndex = pxList->pxIndex; - - /* Only effective when configASSERT() is also defined, these tests may catch - the list data structures being overwritten in memory. They will not catch - data errors caused by incorrect configuration or use of FreeRTOS. */ - listTEST_LIST_INTEGRITY( pxList ); - listTEST_LIST_ITEM_INTEGRITY( pxNewListItem ); - - /* Insert a new list item into pxList, but rather than sort the list, - makes the new list item the last item to be removed by a call to - listGET_OWNER_OF_NEXT_ENTRY(). */ - pxNewListItem->pxNext = pxIndex; - pxNewListItem->pxPrevious = pxIndex->pxPrevious; - - /* Only used during decision coverage testing. */ - mtCOVERAGE_TEST_DELAY(); - - pxIndex->pxPrevious->pxNext = pxNewListItem; - pxIndex->pxPrevious = pxNewListItem; - - /* Remember which list the item is in. */ - pxNewListItem->pxContainer = pxList; - - ( pxList->uxNumberOfItems )++; -} -/*-----------------------------------------------------------*/ - -void vListInsert( List_t * const pxList, ListItem_t * const pxNewListItem ) -{ -ListItem_t *pxIterator; -const TickType_t xValueOfInsertion = pxNewListItem->xItemValue; - - /* Only effective when configASSERT() is also defined, these tests may catch - the list data structures being overwritten in memory. They will not catch - data errors caused by incorrect configuration or use of FreeRTOS. */ - listTEST_LIST_INTEGRITY( pxList ); - listTEST_LIST_ITEM_INTEGRITY( pxNewListItem ); - - /* Insert the new list item into the list, sorted in xItemValue order. - - If the list already contains a list item with the same item value then the - new list item should be placed after it. This ensures that TCBs which are - stored in ready lists (all of which have the same xItemValue value) get a - share of the CPU. However, if the xItemValue is the same as the back marker - the iteration loop below will not end. Therefore the value is checked - first, and the algorithm slightly modified if necessary. */ - if( xValueOfInsertion == portMAX_DELAY ) - { - pxIterator = pxList->xListEnd.pxPrevious; - } - else - { - /* *** NOTE *********************************************************** - If you find your application is crashing here then likely causes are - listed below. In addition see https://www.freertos.org/FAQHelp.html for - more tips, and ensure configASSERT() is defined! - https://www.freertos.org/a00110.html#configASSERT - - 1) Stack overflow - - see https://www.freertos.org/Stacks-and-stack-overflow-checking.html - 2) Incorrect interrupt priority assignment, especially on Cortex-M - parts where numerically high priority values denote low actual - interrupt priorities, which can seem counter intuitive. See - https://www.freertos.org/RTOS-Cortex-M3-M4.html and the definition - of configMAX_SYSCALL_INTERRUPT_PRIORITY on - https://www.freertos.org/a00110.html - 3) Calling an API function from within a critical section or when - the scheduler is suspended, or calling an API function that does - not end in "FromISR" from an interrupt. - 4) Using a queue or semaphore before it has been initialised or - before the scheduler has been started (are interrupts firing - before vTaskStartScheduler() has been called?). - **********************************************************************/ - - for( pxIterator = ( ListItem_t * ) &( pxList->xListEnd ); pxIterator->pxNext->xItemValue <= xValueOfInsertion; pxIterator = pxIterator->pxNext ) /*lint !e826 !e740 !e9087 The mini list structure is used as the list end to save RAM. This is checked and valid. *//*lint !e440 The iterator moves to a different value, not xValueOfInsertion. */ - { - /* There is nothing to do here, just iterating to the wanted - insertion position. */ - } - } - - pxNewListItem->pxNext = pxIterator->pxNext; - pxNewListItem->pxNext->pxPrevious = pxNewListItem; - pxNewListItem->pxPrevious = pxIterator; - pxIterator->pxNext = pxNewListItem; - - /* Remember which list the item is in. This allows fast removal of the - item later. */ - pxNewListItem->pxContainer = pxList; - - ( pxList->uxNumberOfItems )++; -} -/*-----------------------------------------------------------*/ - -UBaseType_t uxListRemove( ListItem_t * const pxItemToRemove ) -{ -/* The list item knows which list it is in. Obtain the list from the list -item. */ -List_t * const pxList = pxItemToRemove->pxContainer; - - pxItemToRemove->pxNext->pxPrevious = pxItemToRemove->pxPrevious; - pxItemToRemove->pxPrevious->pxNext = pxItemToRemove->pxNext; - - /* Only used during decision coverage testing. */ - mtCOVERAGE_TEST_DELAY(); - - /* Make sure the index is left pointing to a valid item. */ - if( pxList->pxIndex == pxItemToRemove ) - { - pxList->pxIndex = pxItemToRemove->pxPrevious; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - pxItemToRemove->pxContainer = NULL; - ( pxList->uxNumberOfItems )--; - - return pxList->uxNumberOfItems; -} -/*-----------------------------------------------------------*/ - diff --git a/rtos/freertos/abstraction_layer_freertos/scr/os.c b/rtos/freertos/abstraction_layer_freertos/scr/os.c deleted file mode 100644 index 1bc07dd1..00000000 --- a/rtos/freertos/abstraction_layer_freertos/scr/os.c +++ /dev/null @@ -1,256 +0,0 @@ -/* - * Copyright 2020 GreenWaves Technologies - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * SPDX-License-Identifier: Apache-2.0 - */ - -#ifndef __OS_C__ -#define __OS_C__ - -#include -#include -#include -#include -#include -#include "pmsis.h" - -static inline void pmsis_exit(int err) -{ - exit(err); -} - -static inline int pmsis_kickoff(void *arg) -{ - BaseType_t xTask; - TaskHandle_t xHandler0 = NULL; - - xTask = xTaskCreate(arg, "main", - ((unsigned short)configMINIMAL_STACK_SIZE), NULL, - tskIDLE_PRIORITY + 1, &xHandler0); - - if (xTask != pdPASS) { - printf("main is NULL !\n"); - pmsis_exit(-1); - } - - __enable_irq(); - - struct pmsis_event_kernel_wrap *wrap; - /* TODO: blocks everything because priority too high */ - /* TODO: spawn event loop for callbacks or use FreeRTOS callback api */ - /* pmsis_event_kernel_init(&wrap, pmsis_event_kernel_main); */ - /* pmsis_event_set_default_scheduler(wrap); */ - - /* TODO:handle case when uart is being used before initialized */ -#ifdef DEBUG - puts("pmsis_kickoff: starting scheduler\n"); -#endif - /* Start the kernel. From here on only tasks and interrupts will run. */ - vTaskStartScheduler(); - - /* should never return here */ - return 0; -} - -static inline void *pmsis_task_create(void (*entry)(void *), void *arg, - char *name, int priority) -{ - TaskHandle_t task_handle = NULL; - BaseType_t task_ret; - task_ret = xTaskCreate(entry, name, 2 * configMINIMAL_STACK_SIZE, arg, - tskIDLE_PRIORITY + 1 + priority, &task_handle); - if (task_ret != pdPASS) { - return NULL; - } else { - return task_handle; - } -} - -static inline void pmsis_task_suspend(void *task_handler) -{ - vTaskSuspend((TaskHandle_t)task_handler); -} - -static inline void pi_yield() -{ - taskYIELD(); -} - -static inline uint32_t disable_irq(void) -{ - hal_compiler_barrier(); - return __disable_irq(); -} - -static inline void restore_irq(uint32_t irq_enable) -{ - hal_compiler_barrier(); - __restore_irq(irq_enable); -} - -/* TODO: fix these functions, seems broken */ -static inline void __os_native_api_sem_take(void *sem_object) -{ - uint32_t irq = __disable_irq(); - if (__get_mcause() & MCAUSE_IRQ_Msk) { - /* This case should never happen ! */ - BaseType_t ret; - xSemaphoreTakeFromISR(sem_object, &ret); - } else { - xSemaphoreTake(sem_object, portMAX_DELAY); - } - __restore_irq(irq); -} - -static inline void __os_native_api_sem_give(void *sem_object) -{ - uint32_t irq = __disable_irq(); - if (__get_mcause() & MCAUSE_IRQ_Msk) { - BaseType_t ret; - xSemaphoreGiveFromISR(sem_object, &ret); - portYIELD_FROM_ISR(ret); - } else { - BaseType_t ret; - xSemaphoreGiveFromISR(sem_object, &ret); - } - __restore_irq(irq); -} - - -static inline int pi_sem_init(pi_sem_t *sem) -{ - hal_compiler_barrier(); - sem->sem_object = xSemaphoreCreateCounting(0xFFu, 0); - if (sem->sem_object == NULL) { - return -1; - } - sem->take = __os_native_api_sem_take; - sem->give = __os_native_api_sem_give; - return 0; -} - -static inline int pi_sem_deinit(pi_sem_t *sem) -{ - hal_compiler_barrier(); - if (sem->sem_object == NULL) { - return -1; - } - vSemaphoreDelete(sem->sem_object); - sem->take = NULL; - sem->give = NULL; - sem->sem_object = (void *)NULL; - return 0; -} - -static inline void pi_sem_take(pi_sem_t *sem) -{ - hal_compiler_barrier(); - sem->take(sem->sem_object); -} - -static inline void pi_sem_give(pi_sem_t *sem) -{ - sem->give(sem->sem_object); - hal_compiler_barrier(); -} - -static inline void pmsis_mutex_take(pmsis_mutex_t *mutex) -{ - hal_compiler_barrier(); - mutex->take(mutex->mutex_object); -} - -static inline void pmsis_mutex_release(pmsis_mutex_t *mutex) -{ - hal_compiler_barrier(); - mutex->release(mutex->mutex_object); - hal_compiler_barrier(); -} - -static inline void __os_native_api_mutex_lock(void *mutex_object) -{ - xSemaphoreTake(mutex_object, portMAX_DELAY); -} - -static inline void __os_native_api_mutex_release(void *mutex_object) -{ - uint32_t irq = __disable_irq(); - BaseType_t ret; - xSemaphoreGiveFromISR(mutex_object, &ret); - __restore_irq(irq); -} - -static inline int pmsis_mutex_init(pmsis_mutex_t *mutex) -{ - hal_compiler_barrier(); - mutex->mutex_object = xSemaphoreCreateBinary(); - if (mutex->mutex_object == NULL) { - return -1; - } - __os_native_api_mutex_release(mutex->mutex_object); - mutex->take = __os_native_api_mutex_lock; - mutex->release = __os_native_api_mutex_release; - return 0; -} - -static inline int pmsis_mutex_deinit(pmsis_mutex_t *mutex) -{ - hal_compiler_barrier(); - if (mutex->mutex_object == NULL) { - return -1; - } - vSemaphoreDelete(mutex->mutex_object); - mutex->take = NULL; - mutex->release = NULL; - mutex->mutex_object = (void *)NULL; - return 0; -} - -static inline void pmsis_spinlock_init(pmsis_spinlock_t *spinlock) -{ - hal_compiler_barrier(); - spinlock->lock = 0; -} - -static inline void pmsis_spinlock_take(pmsis_spinlock_t *spinlock) -{ - uint32_t irq_enabled = disable_irq(); - hal_compiler_barrier(); - spinlock->lock = 1; - hal_compiler_barrier(); - restore_irq(irq_enabled); -} - -static inline void pmsis_spinlock_release(pmsis_spinlock_t *spinlock) -{ - uint32_t irq_enabled = disable_irq(); - hal_compiler_barrier(); - spinlock->lock = 0; - hal_compiler_barrier(); - restore_irq(irq_enabled); -} - -static void pi_time_wait_us(int time_us) -{ - /* Wait less than 1 ms. */ - if (time_us < 1000) { - for (volatile int i = 0; i < time_us; i++) - ; - } else { - vTaskDelay(((uint32_t)time_us / 1000) / portTICK_PERIOD_MS); - } -} - -#endif /* __OS_H__ */ diff --git a/rtos/freertos/abstraction_layer_freertos/scr/pinmux.c b/rtos/freertos/abstraction_layer_freertos/scr/pinmux.c deleted file mode 100644 index 8b35f72e..00000000 --- a/rtos/freertos/abstraction_layer_freertos/scr/pinmux.c +++ /dev/null @@ -1,56 +0,0 @@ -/* - * Copyright (C) 2020 ETH Zurich and University of Bologna - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * SPDX-License-Identifier: Apache-2.0 - * Author: Robert Balas (balasr@iis.ee.ethz.ch) - */ - -/* Driver to control and configure pad mux */ - -#include -#include - -#include "io.h" -#include "pulp_mem_map.h" -#include "apb_soc.h" -#include "pinmux.h" - -/* TODO: we only support pin 0-31 */ - -int pinmux_pin_set(int pin, uint32_t func) -{ - assert(0 <= pin && pin < 32); - - uintptr_t padfun_reg = - ((pin & 0xf) >> 4) * 4 + - (PULP_APB_SOC_CTRL_ADDR + APB_SOC_PADFUN0_OFFSET); - uint32_t padfun_shift = (pin & 0x7) << 1; /* 16 pads a 2 bits per reg */ - writew((func & 0x3) << padfun_shift, padfun_reg); - - return 0; -} - -int pinmux_pin_get(int pin, uint32_t *func) -{ - assert(0 <= pin && pin < 32); - - uintptr_t padfun_reg = - ((pin & 0xf) >> 4) * 4 + - (PULP_APB_SOC_CTRL_ADDR + APB_SOC_PADFUN0_OFFSET); - uint32_t padfun_shift = (pin & 0x7) << 1; /* 16 pads a 2 bits per reg */ - uint32_t padfunval = readw(padfun_reg); - *func = (padfunval >> padfun_shift) & 0x3; - return 0; -} diff --git a/rtos/freertos/abstraction_layer_freertos/scr/pmsis_task.c b/rtos/freertos/abstraction_layer_freertos/scr/pmsis_task.c deleted file mode 100644 index 755880f0..00000000 --- a/rtos/freertos/abstraction_layer_freertos/scr/pmsis_task.c +++ /dev/null @@ -1,147 +0,0 @@ -/* - * Copyright 2020 GreenWaves Technologies - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * SPDX-License-Identifier: Apache-2.0 - */ - -#include "pmsis.h" -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -pi_task_t *__pi_task_block(pi_task_t *callback_task) -{ - callback_task->id = PI_TASK_NONE_ID; - callback_task->done = 0; - pi_sem_init(&(callback_task->wait_on)); - /* lock the mutex so that task may be descheduled while waiting on it */ - callback_task->destroy = 1; - callback_task->core_id = -1; - return callback_task; -} - -pi_task_t *__pi_task_callback(pi_task_t *callback_task, void (*func)(void *), - void *arg) -{ - callback_task->id = PI_TASK_CALLBACK_ID; - callback_task->arg[0] = (uintptr_t)func; - callback_task->arg[1] = (uintptr_t)arg; - callback_task->done = 0; - callback_task->wait_on.sem_object = (void *)NULL; - callback_task->destroy = 0; - callback_task->core_id = -1; - return callback_task; -} - -void __pi_task_destroy(pi_task_t *task) -{ - if (task->destroy) { - task->destroy = 0; - /* if the mutex is only virtual (e.g. wait on soc event) */ - hal_compiler_barrier(); - /* if the sched support semaphore/mutexes */ - if (task->wait_on.sem_object) { - pi_sem_deinit(&task->wait_on); - task->wait_on.sem_object = (void *)NULL; - } - hal_compiler_barrier(); - } -} - -void __pi_task_wait_on(pi_task_t *task) -{ - while (!task->done) { - /* if the underlying scheduler support it, deschedule the task - */ - if (task->wait_on.sem_object != NULL) { - pi_sem_take(&task->wait_on); - } - DEBUG_PRINTF("[%s] waited on sem %p\n", __func__, - &(task->wait_on)); - } - hal_compiler_barrier(); - __pi_task_destroy(task); -} - -void __pi_task_push(pi_task_t *task) -{ - pi_task_push_delayed_us(task, 0); -} - -pi_task_t *pi_task_callback_no_mutex(pi_task_t *callback_task, - void (*func)(void *), void *arg) -{ - return pi_task_callback(callback_task, func, arg); -} - -pi_task_t *pi_task_block_no_mutex(pi_task_t *callback_task) -{ - callback_task->id = PI_TASK_NONE_ID; - callback_task->done = 0; - callback_task->wait_on.sem_object = (void *)NULL; - callback_task->destroy = 0; - callback_task->core_id = -1; - /* lock the mutex so that task may be descheduled while waiting on it */ - return callback_task; -} - -void pi_task_release(pi_task_t *task) -{ - DEBUG_PRINTF("[%s] releasing task %p\n", __func__, task); - /* if the mutex is only virtual (e.g. wait on soc event) - * if the sched support semaphore/mutexes */ - if (task->wait_on.sem_object) { - DEBUG_PRINTF("[%s] sem give %p\n", __func__, &task->wait_on); - pi_sem_give(&(task->wait_on)); - } - hal_compiler_barrier(); - task->done = 1; - hal_compiler_barrier(); -} - -void pi_cl_pi_task_wait(pi_task_t *task) -{ -} - -void pi_cl_pi_task_notify_done(pi_task_t *task) -{ -} - -void pi_task_wait_on_no_mutex(pi_task_t *task) -{ - /* if the mutex is only virtual (e.g. wait on soc event) */ - while (!task->done) { - hal_compiler_barrier(); - asm volatile("nop"); - /* FIXME: workaround for gcc bug */ - hal_compiler_barrier(); - } -} - -void pi_task_push_delayed_us(pi_task_t *task, uint32_t delay) -{ - pi_time_wait_us(delay); - uint32_t irq = disable_irq(); - /* TODO: unimplemented callback */ - /* pmsis_event_push(pmsis_event_get_default_scheduler(), task); */ - restore_irq(irq); -} diff --git a/rtos/freertos/abstraction_layer_freertos/scr/queue.c b/rtos/freertos/abstraction_layer_freertos/scr/queue.c deleted file mode 100644 index 474fd346..00000000 --- a/rtos/freertos/abstraction_layer_freertos/scr/queue.c +++ /dev/null @@ -1,2945 +0,0 @@ -/* - * FreeRTOS Kernel V10.3.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. - * - * Permission is hereby granted, free of charge, to any person obtaining a copy of - * this software and associated documentation files (the "Software"), to deal in - * the Software without restriction, including without limitation the rights to - * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of - * the Software, and to permit persons to whom the Software is furnished to do so, - * subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS - * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR - * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER - * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - * - * http://www.FreeRTOS.org - * http://aws.amazon.com/freertos - * - * 1 tab == 4 spaces! - */ - -#include -#include - -/* Defining MPU_WRAPPERS_INCLUDED_FROM_API_FILE prevents task.h from redefining -all the API functions to use the MPU wrappers. That should only be done when -task.h is included from an application file. */ -#define MPU_WRAPPERS_INCLUDED_FROM_API_FILE - -#include "FreeRTOS.h" -#include "task.h" -#include "queue.h" - -#if ( configUSE_CO_ROUTINES == 1 ) - #include "croutine.h" -#endif - -/* Lint e9021, e961 and e750 are suppressed as a MISRA exception justified -because the MPU ports require MPU_WRAPPERS_INCLUDED_FROM_API_FILE to be defined -for the header files above, but not in this file, in order to generate the -correct privileged Vs unprivileged linkage and placement. */ -#undef MPU_WRAPPERS_INCLUDED_FROM_API_FILE /*lint !e961 !e750 !e9021. */ - - -/* Constants used with the cRxLock and cTxLock structure members. */ -#define queueUNLOCKED ( ( int8_t ) -1 ) -#define queueLOCKED_UNMODIFIED ( ( int8_t ) 0 ) - -/* When the Queue_t structure is used to represent a base queue its pcHead and -pcTail members are used as pointers into the queue storage area. When the -Queue_t structure is used to represent a mutex pcHead and pcTail pointers are -not necessary, and the pcHead pointer is set to NULL to indicate that the -structure instead holds a pointer to the mutex holder (if any). Map alternative -names to the pcHead and structure member to ensure the readability of the code -is maintained. The QueuePointers_t and SemaphoreData_t types are used to form -a union as their usage is mutually exclusive dependent on what the queue is -being used for. */ -#define uxQueueType pcHead -#define queueQUEUE_IS_MUTEX NULL - -typedef struct QueuePointers -{ - int8_t *pcTail; /*< Points to the byte at the end of the queue storage area. Once more byte is allocated than necessary to store the queue items, this is used as a marker. */ - int8_t *pcReadFrom; /*< Points to the last place that a queued item was read from when the structure is used as a queue. */ -} QueuePointers_t; - -typedef struct SemaphoreData -{ - TaskHandle_t xMutexHolder; /*< The handle of the task that holds the mutex. */ - UBaseType_t uxRecursiveCallCount;/*< Maintains a count of the number of times a recursive mutex has been recursively 'taken' when the structure is used as a mutex. */ -} SemaphoreData_t; - -/* Semaphores do not actually store or copy data, so have an item size of -zero. */ -#define queueSEMAPHORE_QUEUE_ITEM_LENGTH ( ( UBaseType_t ) 0 ) -#define queueMUTEX_GIVE_BLOCK_TIME ( ( TickType_t ) 0U ) - -#if( configUSE_PREEMPTION == 0 ) - /* If the cooperative scheduler is being used then a yield should not be - performed just because a higher priority task has been woken. */ - #define queueYIELD_IF_USING_PREEMPTION() -#else - #define queueYIELD_IF_USING_PREEMPTION() portYIELD_WITHIN_API() -#endif - -/* - * Definition of the queue used by the scheduler. - * Items are queued by copy, not reference. See the following link for the - * rationale: https://www.freertos.org/Embedded-RTOS-Queues.html - */ -typedef struct QueueDefinition /* The old naming convention is used to prevent breaking kernel aware debuggers. */ -{ - int8_t *pcHead; /*< Points to the beginning of the queue storage area. */ - int8_t *pcWriteTo; /*< Points to the free next place in the storage area. */ - - union - { - QueuePointers_t xQueue; /*< Data required exclusively when this structure is used as a queue. */ - SemaphoreData_t xSemaphore; /*< Data required exclusively when this structure is used as a semaphore. */ - } u; - - List_t xTasksWaitingToSend; /*< List of tasks that are blocked waiting to post onto this queue. Stored in priority order. */ - List_t xTasksWaitingToReceive; /*< List of tasks that are blocked waiting to read from this queue. Stored in priority order. */ - - volatile UBaseType_t uxMessagesWaiting;/*< The number of items currently in the queue. */ - UBaseType_t uxLength; /*< The length of the queue defined as the number of items it will hold, not the number of bytes. */ - UBaseType_t uxItemSize; /*< The size of each items that the queue will hold. */ - - volatile int8_t cRxLock; /*< Stores the number of items received from the queue (removed from the queue) while the queue was locked. Set to queueUNLOCKED when the queue is not locked. */ - volatile int8_t cTxLock; /*< Stores the number of items transmitted to the queue (added to the queue) while the queue was locked. Set to queueUNLOCKED when the queue is not locked. */ - - #if( ( configSUPPORT_STATIC_ALLOCATION == 1 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) ) - uint8_t ucStaticallyAllocated; /*< Set to pdTRUE if the memory used by the queue was statically allocated to ensure no attempt is made to free the memory. */ - #endif - - #if ( configUSE_QUEUE_SETS == 1 ) - struct QueueDefinition *pxQueueSetContainer; - #endif - - #if ( configUSE_TRACE_FACILITY == 1 ) - UBaseType_t uxQueueNumber; - uint8_t ucQueueType; - #endif - -} xQUEUE; - -/* The old xQUEUE name is maintained above then typedefed to the new Queue_t -name below to enable the use of older kernel aware debuggers. */ -typedef xQUEUE Queue_t; - -/*-----------------------------------------------------------*/ - -/* - * The queue registry is just a means for kernel aware debuggers to locate - * queue structures. It has no other purpose so is an optional component. - */ -#if ( configQUEUE_REGISTRY_SIZE > 0 ) - - /* The type stored within the queue registry array. This allows a name - to be assigned to each queue making kernel aware debugging a little - more user friendly. */ - typedef struct QUEUE_REGISTRY_ITEM - { - const char *pcQueueName; /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ - QueueHandle_t xHandle; - } xQueueRegistryItem; - - /* The old xQueueRegistryItem name is maintained above then typedefed to the - new xQueueRegistryItem name below to enable the use of older kernel aware - debuggers. */ - typedef xQueueRegistryItem QueueRegistryItem_t; - - /* The queue registry is simply an array of QueueRegistryItem_t structures. - The pcQueueName member of a structure being NULL is indicative of the - array position being vacant. */ - PRIVILEGED_DATA QueueRegistryItem_t xQueueRegistry[ configQUEUE_REGISTRY_SIZE ]; - -#endif /* configQUEUE_REGISTRY_SIZE */ - -/* - * Unlocks a queue locked by a call to prvLockQueue. Locking a queue does not - * prevent an ISR from adding or removing items to the queue, but does prevent - * an ISR from removing tasks from the queue event lists. If an ISR finds a - * queue is locked it will instead increment the appropriate queue lock count - * to indicate that a task may require unblocking. When the queue in unlocked - * these lock counts are inspected, and the appropriate action taken. - */ -static void prvUnlockQueue( Queue_t * const pxQueue ) PRIVILEGED_FUNCTION; - -/* - * Uses a critical section to determine if there is any data in a queue. - * - * @return pdTRUE if the queue contains no items, otherwise pdFALSE. - */ -static BaseType_t prvIsQueueEmpty( const Queue_t *pxQueue ) PRIVILEGED_FUNCTION; - -/* - * Uses a critical section to determine if there is any space in a queue. - * - * @return pdTRUE if there is no space, otherwise pdFALSE; - */ -static BaseType_t prvIsQueueFull( const Queue_t *pxQueue ) PRIVILEGED_FUNCTION; - -/* - * Copies an item into the queue, either at the front of the queue or the - * back of the queue. - */ -static BaseType_t prvCopyDataToQueue( Queue_t * const pxQueue, const void *pvItemToQueue, const BaseType_t xPosition ) PRIVILEGED_FUNCTION; - -/* - * Copies an item out of a queue. - */ -static void prvCopyDataFromQueue( Queue_t * const pxQueue, void * const pvBuffer ) PRIVILEGED_FUNCTION; - -#if ( configUSE_QUEUE_SETS == 1 ) - /* - * Checks to see if a queue is a member of a queue set, and if so, notifies - * the queue set that the queue contains data. - */ - static BaseType_t prvNotifyQueueSetContainer( const Queue_t * const pxQueue ) PRIVILEGED_FUNCTION; -#endif - -/* - * Called after a Queue_t structure has been allocated either statically or - * dynamically to fill in the structure's members. - */ -static void prvInitialiseNewQueue( const UBaseType_t uxQueueLength, const UBaseType_t uxItemSize, uint8_t *pucQueueStorage, const uint8_t ucQueueType, Queue_t *pxNewQueue ) PRIVILEGED_FUNCTION; - -/* - * Mutexes are a special type of queue. When a mutex is created, first the - * queue is created, then prvInitialiseMutex() is called to configure the queue - * as a mutex. - */ -#if( configUSE_MUTEXES == 1 ) - static void prvInitialiseMutex( Queue_t *pxNewQueue ) PRIVILEGED_FUNCTION; -#endif - -#if( configUSE_MUTEXES == 1 ) - /* - * If a task waiting for a mutex causes the mutex holder to inherit a - * priority, but the waiting task times out, then the holder should - * disinherit the priority - but only down to the highest priority of any - * other tasks that are waiting for the same mutex. This function returns - * that priority. - */ - static UBaseType_t prvGetDisinheritPriorityAfterTimeout( const Queue_t * const pxQueue ) PRIVILEGED_FUNCTION; -#endif -/*-----------------------------------------------------------*/ - -/* - * Macro to mark a queue as locked. Locking a queue prevents an ISR from - * accessing the queue event lists. - */ -#define prvLockQueue( pxQueue ) \ - taskENTER_CRITICAL(); \ - { \ - if( ( pxQueue )->cRxLock == queueUNLOCKED ) \ - { \ - ( pxQueue )->cRxLock = queueLOCKED_UNMODIFIED; \ - } \ - if( ( pxQueue )->cTxLock == queueUNLOCKED ) \ - { \ - ( pxQueue )->cTxLock = queueLOCKED_UNMODIFIED; \ - } \ - } \ - taskEXIT_CRITICAL() -/*-----------------------------------------------------------*/ - -BaseType_t xQueueGenericReset( QueueHandle_t xQueue, BaseType_t xNewQueue ) -{ -Queue_t * const pxQueue = xQueue; - - configASSERT( pxQueue ); - - taskENTER_CRITICAL(); - { - pxQueue->u.xQueue.pcTail = pxQueue->pcHead + ( pxQueue->uxLength * pxQueue->uxItemSize ); /*lint !e9016 Pointer arithmetic allowed on char types, especially when it assists conveying intent. */ - pxQueue->uxMessagesWaiting = ( UBaseType_t ) 0U; - pxQueue->pcWriteTo = pxQueue->pcHead; - pxQueue->u.xQueue.pcReadFrom = pxQueue->pcHead + ( ( pxQueue->uxLength - 1U ) * pxQueue->uxItemSize ); /*lint !e9016 Pointer arithmetic allowed on char types, especially when it assists conveying intent. */ - pxQueue->cRxLock = queueUNLOCKED; - pxQueue->cTxLock = queueUNLOCKED; - - if( xNewQueue == pdFALSE ) - { - /* If there are tasks blocked waiting to read from the queue, then - the tasks will remain blocked as after this function exits the queue - will still be empty. If there are tasks blocked waiting to write to - the queue, then one should be unblocked as after this function exits - it will be possible to write to it. */ - if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToSend ) ) == pdFALSE ) - { - if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToSend ) ) != pdFALSE ) - { - queueYIELD_IF_USING_PREEMPTION(); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - /* Ensure the event queues start in the correct state. */ - vListInitialise( &( pxQueue->xTasksWaitingToSend ) ); - vListInitialise( &( pxQueue->xTasksWaitingToReceive ) ); - } - } - taskEXIT_CRITICAL(); - - /* A value is returned for calling semantic consistency with previous - versions. */ - return pdPASS; -} -/*-----------------------------------------------------------*/ - -#if( configSUPPORT_STATIC_ALLOCATION == 1 ) - - QueueHandle_t xQueueGenericCreateStatic( const UBaseType_t uxQueueLength, const UBaseType_t uxItemSize, uint8_t *pucQueueStorage, StaticQueue_t *pxStaticQueue, const uint8_t ucQueueType ) - { - Queue_t *pxNewQueue; - - configASSERT( uxQueueLength > ( UBaseType_t ) 0 ); - - /* The StaticQueue_t structure and the queue storage area must be - supplied. */ - configASSERT( pxStaticQueue != NULL ); - - /* A queue storage area should be provided if the item size is not 0, and - should not be provided if the item size is 0. */ - configASSERT( !( ( pucQueueStorage != NULL ) && ( uxItemSize == 0 ) ) ); - configASSERT( !( ( pucQueueStorage == NULL ) && ( uxItemSize != 0 ) ) ); - - #if( configASSERT_DEFINED == 1 ) - { - /* Sanity check that the size of the structure used to declare a - variable of type StaticQueue_t or StaticSemaphore_t equals the size of - the real queue and semaphore structures. */ - volatile size_t xSize = sizeof( StaticQueue_t ); - configASSERT( xSize == sizeof( Queue_t ) ); - ( void ) xSize; /* Keeps lint quiet when configASSERT() is not defined. */ - } - #endif /* configASSERT_DEFINED */ - - /* The address of a statically allocated queue was passed in, use it. - The address of a statically allocated storage area was also passed in - but is already set. */ - pxNewQueue = ( Queue_t * ) pxStaticQueue; /*lint !e740 !e9087 Unusual cast is ok as the structures are designed to have the same alignment, and the size is checked by an assert. */ - - if( pxNewQueue != NULL ) - { - #if( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) - { - /* Queues can be allocated wither statically or dynamically, so - note this queue was allocated statically in case the queue is - later deleted. */ - pxNewQueue->ucStaticallyAllocated = pdTRUE; - } - #endif /* configSUPPORT_DYNAMIC_ALLOCATION */ - - prvInitialiseNewQueue( uxQueueLength, uxItemSize, pucQueueStorage, ucQueueType, pxNewQueue ); - } - else - { - traceQUEUE_CREATE_FAILED( ucQueueType ); - mtCOVERAGE_TEST_MARKER(); - } - - return pxNewQueue; - } - -#endif /* configSUPPORT_STATIC_ALLOCATION */ -/*-----------------------------------------------------------*/ - -#if( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) - - QueueHandle_t xQueueGenericCreate( const UBaseType_t uxQueueLength, const UBaseType_t uxItemSize, const uint8_t ucQueueType ) - { - Queue_t *pxNewQueue; - size_t xQueueSizeInBytes; - uint8_t *pucQueueStorage; - - configASSERT( uxQueueLength > ( UBaseType_t ) 0 ); - - /* Allocate enough space to hold the maximum number of items that - can be in the queue at any time. It is valid for uxItemSize to be - zero in the case the queue is used as a semaphore. */ - xQueueSizeInBytes = ( size_t ) ( uxQueueLength * uxItemSize ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ - - /* Allocate the queue and storage area. Justification for MISRA - deviation as follows: pvPortMalloc() always ensures returned memory - blocks are aligned per the requirements of the MCU stack. In this case - pvPortMalloc() must return a pointer that is guaranteed to meet the - alignment requirements of the Queue_t structure - which in this case - is an int8_t *. Therefore, whenever the stack alignment requirements - are greater than or equal to the pointer to char requirements the cast - is safe. In other cases alignment requirements are not strict (one or - two bytes). */ - pxNewQueue = ( Queue_t * ) pvPortMalloc( sizeof( Queue_t ) + xQueueSizeInBytes ); /*lint !e9087 !e9079 see comment above. */ - - if( pxNewQueue != NULL ) - { - /* Jump past the queue structure to find the location of the queue - storage area. */ - pucQueueStorage = ( uint8_t * ) pxNewQueue; - pucQueueStorage += sizeof( Queue_t ); /*lint !e9016 Pointer arithmetic allowed on char types, especially when it assists conveying intent. */ - - #if( configSUPPORT_STATIC_ALLOCATION == 1 ) - { - /* Queues can be created either statically or dynamically, so - note this task was created dynamically in case it is later - deleted. */ - pxNewQueue->ucStaticallyAllocated = pdFALSE; - } - #endif /* configSUPPORT_STATIC_ALLOCATION */ - - prvInitialiseNewQueue( uxQueueLength, uxItemSize, pucQueueStorage, ucQueueType, pxNewQueue ); - } - else - { - traceQUEUE_CREATE_FAILED( ucQueueType ); - mtCOVERAGE_TEST_MARKER(); - } - - return pxNewQueue; - } - -#endif /* configSUPPORT_STATIC_ALLOCATION */ -/*-----------------------------------------------------------*/ - -static void prvInitialiseNewQueue( const UBaseType_t uxQueueLength, const UBaseType_t uxItemSize, uint8_t *pucQueueStorage, const uint8_t ucQueueType, Queue_t *pxNewQueue ) -{ - /* Remove compiler warnings about unused parameters should - configUSE_TRACE_FACILITY not be set to 1. */ - ( void ) ucQueueType; - - if( uxItemSize == ( UBaseType_t ) 0 ) - { - /* No RAM was allocated for the queue storage area, but PC head cannot - be set to NULL because NULL is used as a key to say the queue is used as - a mutex. Therefore just set pcHead to point to the queue as a benign - value that is known to be within the memory map. */ - pxNewQueue->pcHead = ( int8_t * ) pxNewQueue; - } - else - { - /* Set the head to the start of the queue storage area. */ - pxNewQueue->pcHead = ( int8_t * ) pucQueueStorage; - } - - /* Initialise the queue members as described where the queue type is - defined. */ - pxNewQueue->uxLength = uxQueueLength; - pxNewQueue->uxItemSize = uxItemSize; - ( void ) xQueueGenericReset( pxNewQueue, pdTRUE ); - - #if ( configUSE_TRACE_FACILITY == 1 ) - { - pxNewQueue->ucQueueType = ucQueueType; - } - #endif /* configUSE_TRACE_FACILITY */ - - #if( configUSE_QUEUE_SETS == 1 ) - { - pxNewQueue->pxQueueSetContainer = NULL; - } - #endif /* configUSE_QUEUE_SETS */ - - traceQUEUE_CREATE( pxNewQueue ); -} -/*-----------------------------------------------------------*/ - -#if( configUSE_MUTEXES == 1 ) - - static void prvInitialiseMutex( Queue_t *pxNewQueue ) - { - if( pxNewQueue != NULL ) - { - /* The queue create function will set all the queue structure members - correctly for a generic queue, but this function is creating a - mutex. Overwrite those members that need to be set differently - - in particular the information required for priority inheritance. */ - pxNewQueue->u.xSemaphore.xMutexHolder = NULL; - pxNewQueue->uxQueueType = queueQUEUE_IS_MUTEX; - - /* In case this is a recursive mutex. */ - pxNewQueue->u.xSemaphore.uxRecursiveCallCount = 0; - - traceCREATE_MUTEX( pxNewQueue ); - - /* Start with the semaphore in the expected state. */ - ( void ) xQueueGenericSend( pxNewQueue, NULL, ( TickType_t ) 0U, queueSEND_TO_BACK ); - } - else - { - traceCREATE_MUTEX_FAILED(); - } - } - -#endif /* configUSE_MUTEXES */ -/*-----------------------------------------------------------*/ - -#if( ( configUSE_MUTEXES == 1 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) ) - - QueueHandle_t xQueueCreateMutex( const uint8_t ucQueueType ) - { - QueueHandle_t xNewQueue; - const UBaseType_t uxMutexLength = ( UBaseType_t ) 1, uxMutexSize = ( UBaseType_t ) 0; - - xNewQueue = xQueueGenericCreate( uxMutexLength, uxMutexSize, ucQueueType ); - prvInitialiseMutex( ( Queue_t * ) xNewQueue ); - - return xNewQueue; - } - -#endif /* configUSE_MUTEXES */ -/*-----------------------------------------------------------*/ - -#if( ( configUSE_MUTEXES == 1 ) && ( configSUPPORT_STATIC_ALLOCATION == 1 ) ) - - QueueHandle_t xQueueCreateMutexStatic( const uint8_t ucQueueType, StaticQueue_t *pxStaticQueue ) - { - QueueHandle_t xNewQueue; - const UBaseType_t uxMutexLength = ( UBaseType_t ) 1, uxMutexSize = ( UBaseType_t ) 0; - - /* Prevent compiler warnings about unused parameters if - configUSE_TRACE_FACILITY does not equal 1. */ - ( void ) ucQueueType; - - xNewQueue = xQueueGenericCreateStatic( uxMutexLength, uxMutexSize, NULL, pxStaticQueue, ucQueueType ); - prvInitialiseMutex( ( Queue_t * ) xNewQueue ); - - return xNewQueue; - } - -#endif /* configUSE_MUTEXES */ -/*-----------------------------------------------------------*/ - -#if ( ( configUSE_MUTEXES == 1 ) && ( INCLUDE_xSemaphoreGetMutexHolder == 1 ) ) - - TaskHandle_t xQueueGetMutexHolder( QueueHandle_t xSemaphore ) - { - TaskHandle_t pxReturn; - Queue_t * const pxSemaphore = ( Queue_t * ) xSemaphore; - - /* This function is called by xSemaphoreGetMutexHolder(), and should not - be called directly. Note: This is a good way of determining if the - calling task is the mutex holder, but not a good way of determining the - identity of the mutex holder, as the holder may change between the - following critical section exiting and the function returning. */ - taskENTER_CRITICAL(); - { - if( pxSemaphore->uxQueueType == queueQUEUE_IS_MUTEX ) - { - pxReturn = pxSemaphore->u.xSemaphore.xMutexHolder; - } - else - { - pxReturn = NULL; - } - } - taskEXIT_CRITICAL(); - - return pxReturn; - } /*lint !e818 xSemaphore cannot be a pointer to const because it is a typedef. */ - -#endif -/*-----------------------------------------------------------*/ - -#if ( ( configUSE_MUTEXES == 1 ) && ( INCLUDE_xSemaphoreGetMutexHolder == 1 ) ) - - TaskHandle_t xQueueGetMutexHolderFromISR( QueueHandle_t xSemaphore ) - { - TaskHandle_t pxReturn; - - configASSERT( xSemaphore ); - - /* Mutexes cannot be used in interrupt service routines, so the mutex - holder should not change in an ISR, and therefore a critical section is - not required here. */ - if( ( ( Queue_t * ) xSemaphore )->uxQueueType == queueQUEUE_IS_MUTEX ) - { - pxReturn = ( ( Queue_t * ) xSemaphore )->u.xSemaphore.xMutexHolder; - } - else - { - pxReturn = NULL; - } - - return pxReturn; - } /*lint !e818 xSemaphore cannot be a pointer to const because it is a typedef. */ - -#endif -/*-----------------------------------------------------------*/ - -#if ( configUSE_RECURSIVE_MUTEXES == 1 ) - - BaseType_t xQueueGiveMutexRecursive( QueueHandle_t xMutex ) - { - BaseType_t xReturn; - Queue_t * const pxMutex = ( Queue_t * ) xMutex; - - configASSERT( pxMutex ); - - /* If this is the task that holds the mutex then xMutexHolder will not - change outside of this task. If this task does not hold the mutex then - pxMutexHolder can never coincidentally equal the tasks handle, and as - this is the only condition we are interested in it does not matter if - pxMutexHolder is accessed simultaneously by another task. Therefore no - mutual exclusion is required to test the pxMutexHolder variable. */ - if( pxMutex->u.xSemaphore.xMutexHolder == xTaskGetCurrentTaskHandle() ) - { - traceGIVE_MUTEX_RECURSIVE( pxMutex ); - - /* uxRecursiveCallCount cannot be zero if xMutexHolder is equal to - the task handle, therefore no underflow check is required. Also, - uxRecursiveCallCount is only modified by the mutex holder, and as - there can only be one, no mutual exclusion is required to modify the - uxRecursiveCallCount member. */ - ( pxMutex->u.xSemaphore.uxRecursiveCallCount )--; - - /* Has the recursive call count unwound to 0? */ - if( pxMutex->u.xSemaphore.uxRecursiveCallCount == ( UBaseType_t ) 0 ) - { - /* Return the mutex. This will automatically unblock any other - task that might be waiting to access the mutex. */ - ( void ) xQueueGenericSend( pxMutex, NULL, queueMUTEX_GIVE_BLOCK_TIME, queueSEND_TO_BACK ); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - xReturn = pdPASS; - } - else - { - /* The mutex cannot be given because the calling task is not the - holder. */ - xReturn = pdFAIL; - - traceGIVE_MUTEX_RECURSIVE_FAILED( pxMutex ); - } - - return xReturn; - } - -#endif /* configUSE_RECURSIVE_MUTEXES */ -/*-----------------------------------------------------------*/ - -#if ( configUSE_RECURSIVE_MUTEXES == 1 ) - - BaseType_t xQueueTakeMutexRecursive( QueueHandle_t xMutex, TickType_t xTicksToWait ) - { - BaseType_t xReturn; - Queue_t * const pxMutex = ( Queue_t * ) xMutex; - - configASSERT( pxMutex ); - - /* Comments regarding mutual exclusion as per those within - xQueueGiveMutexRecursive(). */ - - traceTAKE_MUTEX_RECURSIVE( pxMutex ); - - if( pxMutex->u.xSemaphore.xMutexHolder == xTaskGetCurrentTaskHandle() ) - { - ( pxMutex->u.xSemaphore.uxRecursiveCallCount )++; - xReturn = pdPASS; - } - else - { - xReturn = xQueueSemaphoreTake( pxMutex, xTicksToWait ); - - /* pdPASS will only be returned if the mutex was successfully - obtained. The calling task may have entered the Blocked state - before reaching here. */ - if( xReturn != pdFAIL ) - { - ( pxMutex->u.xSemaphore.uxRecursiveCallCount )++; - } - else - { - traceTAKE_MUTEX_RECURSIVE_FAILED( pxMutex ); - } - } - - return xReturn; - } - -#endif /* configUSE_RECURSIVE_MUTEXES */ -/*-----------------------------------------------------------*/ - -#if( ( configUSE_COUNTING_SEMAPHORES == 1 ) && ( configSUPPORT_STATIC_ALLOCATION == 1 ) ) - - QueueHandle_t xQueueCreateCountingSemaphoreStatic( const UBaseType_t uxMaxCount, const UBaseType_t uxInitialCount, StaticQueue_t *pxStaticQueue ) - { - QueueHandle_t xHandle; - - configASSERT( uxMaxCount != 0 ); - configASSERT( uxInitialCount <= uxMaxCount ); - - xHandle = xQueueGenericCreateStatic( uxMaxCount, queueSEMAPHORE_QUEUE_ITEM_LENGTH, NULL, pxStaticQueue, queueQUEUE_TYPE_COUNTING_SEMAPHORE ); - - if( xHandle != NULL ) - { - ( ( Queue_t * ) xHandle )->uxMessagesWaiting = uxInitialCount; - - traceCREATE_COUNTING_SEMAPHORE(); - } - else - { - traceCREATE_COUNTING_SEMAPHORE_FAILED(); - } - - return xHandle; - } - -#endif /* ( ( configUSE_COUNTING_SEMAPHORES == 1 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) ) */ -/*-----------------------------------------------------------*/ - -#if( ( configUSE_COUNTING_SEMAPHORES == 1 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) ) - - QueueHandle_t xQueueCreateCountingSemaphore( const UBaseType_t uxMaxCount, const UBaseType_t uxInitialCount ) - { - QueueHandle_t xHandle; - - configASSERT( uxMaxCount != 0 ); - configASSERT( uxInitialCount <= uxMaxCount ); - - xHandle = xQueueGenericCreate( uxMaxCount, queueSEMAPHORE_QUEUE_ITEM_LENGTH, queueQUEUE_TYPE_COUNTING_SEMAPHORE ); - - if( xHandle != NULL ) - { - ( ( Queue_t * ) xHandle )->uxMessagesWaiting = uxInitialCount; - - traceCREATE_COUNTING_SEMAPHORE(); - } - else - { - traceCREATE_COUNTING_SEMAPHORE_FAILED(); - } - - return xHandle; - } - -#endif /* ( ( configUSE_COUNTING_SEMAPHORES == 1 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) ) */ -/*-----------------------------------------------------------*/ - -BaseType_t xQueueGenericSend( QueueHandle_t xQueue, const void * const pvItemToQueue, TickType_t xTicksToWait, const BaseType_t xCopyPosition ) -{ -BaseType_t xEntryTimeSet = pdFALSE, xYieldRequired; -TimeOut_t xTimeOut; -Queue_t * const pxQueue = xQueue; - - configASSERT( pxQueue ); - configASSERT( !( ( pvItemToQueue == NULL ) && ( pxQueue->uxItemSize != ( UBaseType_t ) 0U ) ) ); - configASSERT( !( ( xCopyPosition == queueOVERWRITE ) && ( pxQueue->uxLength != 1 ) ) ); - #if ( ( INCLUDE_xTaskGetSchedulerState == 1 ) || ( configUSE_TIMERS == 1 ) ) - { - configASSERT( !( ( xTaskGetSchedulerState() == taskSCHEDULER_SUSPENDED ) && ( xTicksToWait != 0 ) ) ); - } - #endif - - - /*lint -save -e904 This function relaxes the coding standard somewhat to - allow return statements within the function itself. This is done in the - interest of execution time efficiency. */ - for( ;; ) - { - taskENTER_CRITICAL(); - { - /* Is there room on the queue now? The running task must be the - highest priority task wanting to access the queue. If the head item - in the queue is to be overwritten then it does not matter if the - queue is full. */ - if( ( pxQueue->uxMessagesWaiting < pxQueue->uxLength ) || ( xCopyPosition == queueOVERWRITE ) ) - { - traceQUEUE_SEND( pxQueue ); - - #if ( configUSE_QUEUE_SETS == 1 ) - { - const UBaseType_t uxPreviousMessagesWaiting = pxQueue->uxMessagesWaiting; - - xYieldRequired = prvCopyDataToQueue( pxQueue, pvItemToQueue, xCopyPosition ); - - if( pxQueue->pxQueueSetContainer != NULL ) - { - if( ( xCopyPosition == queueOVERWRITE ) && ( uxPreviousMessagesWaiting != ( UBaseType_t ) 0 ) ) - { - /* Do not notify the queue set as an existing item - was overwritten in the queue so the number of items - in the queue has not changed. */ - mtCOVERAGE_TEST_MARKER(); - } - else if( prvNotifyQueueSetContainer( pxQueue ) != pdFALSE ) - { - /* The queue is a member of a queue set, and posting - to the queue set caused a higher priority task to - unblock. A context switch is required. */ - queueYIELD_IF_USING_PREEMPTION(); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - /* If there was a task waiting for data to arrive on the - queue then unblock it now. */ - if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) - { - if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE ) - { - /* The unblocked task has a priority higher than - our own so yield immediately. Yes it is ok to - do this from within the critical section - the - kernel takes care of that. */ - queueYIELD_IF_USING_PREEMPTION(); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else if( xYieldRequired != pdFALSE ) - { - /* This path is a special case that will only get - executed if the task was holding multiple mutexes - and the mutexes were given back in an order that is - different to that in which they were taken. */ - queueYIELD_IF_USING_PREEMPTION(); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - } - #else /* configUSE_QUEUE_SETS */ - { - xYieldRequired = prvCopyDataToQueue( pxQueue, pvItemToQueue, xCopyPosition ); - - /* If there was a task waiting for data to arrive on the - queue then unblock it now. */ - if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) - { - if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE ) - { - /* The unblocked task has a priority higher than - our own so yield immediately. Yes it is ok to do - this from within the critical section - the kernel - takes care of that. */ - queueYIELD_IF_USING_PREEMPTION(); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else if( xYieldRequired != pdFALSE ) - { - /* This path is a special case that will only get - executed if the task was holding multiple mutexes and - the mutexes were given back in an order that is - different to that in which they were taken. */ - queueYIELD_IF_USING_PREEMPTION(); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - #endif /* configUSE_QUEUE_SETS */ - - taskEXIT_CRITICAL(); - return pdPASS; - } - else - { - if( xTicksToWait == ( TickType_t ) 0 ) - { - /* The queue was full and no block time is specified (or - the block time has expired) so leave now. */ - taskEXIT_CRITICAL(); - - /* Return to the original privilege level before exiting - the function. */ - traceQUEUE_SEND_FAILED( pxQueue ); - return errQUEUE_FULL; - } - else if( xEntryTimeSet == pdFALSE ) - { - /* The queue was full and a block time was specified so - configure the timeout structure. */ - vTaskInternalSetTimeOutState( &xTimeOut ); - xEntryTimeSet = pdTRUE; - } - else - { - /* Entry time was already set. */ - mtCOVERAGE_TEST_MARKER(); - } - } - } - taskEXIT_CRITICAL(); - - /* Interrupts and other tasks can send to and receive from the queue - now the critical section has been exited. */ - - vTaskSuspendAll(); - prvLockQueue( pxQueue ); - - /* Update the timeout state to see if it has expired yet. */ - if( xTaskCheckForTimeOut( &xTimeOut, &xTicksToWait ) == pdFALSE ) - { - if( prvIsQueueFull( pxQueue ) != pdFALSE ) - { - traceBLOCKING_ON_QUEUE_SEND( pxQueue ); - vTaskPlaceOnEventList( &( pxQueue->xTasksWaitingToSend ), xTicksToWait ); - - /* Unlocking the queue means queue events can effect the - event list. It is possible that interrupts occurring now - remove this task from the event list again - but as the - scheduler is suspended the task will go onto the pending - ready last instead of the actual ready list. */ - prvUnlockQueue( pxQueue ); - - /* Resuming the scheduler will move tasks from the pending - ready list into the ready list - so it is feasible that this - task is already in a ready list before it yields - in which - case the yield will not cause a context switch unless there - is also a higher priority task in the pending ready list. */ - if( xTaskResumeAll() == pdFALSE ) - { - portYIELD_WITHIN_API(); - } - } - else - { - /* Try again. */ - prvUnlockQueue( pxQueue ); - ( void ) xTaskResumeAll(); - } - } - else - { - /* The timeout has expired. */ - prvUnlockQueue( pxQueue ); - ( void ) xTaskResumeAll(); - - traceQUEUE_SEND_FAILED( pxQueue ); - return errQUEUE_FULL; - } - } /*lint -restore */ -} -/*-----------------------------------------------------------*/ - -BaseType_t xQueueGenericSendFromISR( QueueHandle_t xQueue, const void * const pvItemToQueue, BaseType_t * const pxHigherPriorityTaskWoken, const BaseType_t xCopyPosition ) -{ -BaseType_t xReturn; -UBaseType_t uxSavedInterruptStatus; -Queue_t * const pxQueue = xQueue; - - configASSERT( pxQueue ); - configASSERT( !( ( pvItemToQueue == NULL ) && ( pxQueue->uxItemSize != ( UBaseType_t ) 0U ) ) ); - configASSERT( !( ( xCopyPosition == queueOVERWRITE ) && ( pxQueue->uxLength != 1 ) ) ); - - /* RTOS ports that support interrupt nesting have the concept of a maximum - system call (or maximum API call) interrupt priority. Interrupts that are - above the maximum system call priority are kept permanently enabled, even - when the RTOS kernel is in a critical section, but cannot make any calls to - FreeRTOS API functions. If configASSERT() is defined in FreeRTOSConfig.h - then portASSERT_IF_INTERRUPT_PRIORITY_INVALID() will result in an assertion - failure if a FreeRTOS API function is called from an interrupt that has been - assigned a priority above the configured maximum system call priority. - Only FreeRTOS functions that end in FromISR can be called from interrupts - that have been assigned a priority at or (logically) below the maximum - system call interrupt priority. FreeRTOS maintains a separate interrupt - safe API to ensure interrupt entry is as fast and as simple as possible. - More information (albeit Cortex-M specific) is provided on the following - link: http://www.freertos.org/RTOS-Cortex-M3-M4.html */ - portASSERT_IF_INTERRUPT_PRIORITY_INVALID(); - - /* Similar to xQueueGenericSend, except without blocking if there is no room - in the queue. Also don't directly wake a task that was blocked on a queue - read, instead return a flag to say whether a context switch is required or - not (i.e. has a task with a higher priority than us been woken by this - post). */ - uxSavedInterruptStatus = portSET_INTERRUPT_MASK_FROM_ISR(); - { - if( ( pxQueue->uxMessagesWaiting < pxQueue->uxLength ) || ( xCopyPosition == queueOVERWRITE ) ) - { - const int8_t cTxLock = pxQueue->cTxLock; - const UBaseType_t uxPreviousMessagesWaiting = pxQueue->uxMessagesWaiting; - - traceQUEUE_SEND_FROM_ISR( pxQueue ); - - /* Semaphores use xQueueGiveFromISR(), so pxQueue will not be a - semaphore or mutex. That means prvCopyDataToQueue() cannot result - in a task disinheriting a priority and prvCopyDataToQueue() can be - called here even though the disinherit function does not check if - the scheduler is suspended before accessing the ready lists. */ - ( void ) prvCopyDataToQueue( pxQueue, pvItemToQueue, xCopyPosition ); - - /* The event list is not altered if the queue is locked. This will - be done when the queue is unlocked later. */ - if( cTxLock == queueUNLOCKED ) - { - #if ( configUSE_QUEUE_SETS == 1 ) - { - if( pxQueue->pxQueueSetContainer != NULL ) - { - if( ( xCopyPosition == queueOVERWRITE ) && ( uxPreviousMessagesWaiting != ( UBaseType_t ) 0 ) ) - { - /* Do not notify the queue set as an existing item - was overwritten in the queue so the number of items - in the queue has not changed. */ - mtCOVERAGE_TEST_MARKER(); - } - else if( prvNotifyQueueSetContainer( pxQueue ) != pdFALSE ) - { - /* The queue is a member of a queue set, and posting - to the queue set caused a higher priority task to - unblock. A context switch is required. */ - if( pxHigherPriorityTaskWoken != NULL ) - { - *pxHigherPriorityTaskWoken = pdTRUE; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) - { - if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE ) - { - /* The task waiting has a higher priority so - record that a context switch is required. */ - if( pxHigherPriorityTaskWoken != NULL ) - { - *pxHigherPriorityTaskWoken = pdTRUE; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - } - #else /* configUSE_QUEUE_SETS */ - { - if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) - { - if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE ) - { - /* The task waiting has a higher priority so record that a - context switch is required. */ - if( pxHigherPriorityTaskWoken != NULL ) - { - *pxHigherPriorityTaskWoken = pdTRUE; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - /* Not used in this path. */ - ( void ) uxPreviousMessagesWaiting; - } - #endif /* configUSE_QUEUE_SETS */ - } - else - { - /* Increment the lock count so the task that unlocks the queue - knows that data was posted while it was locked. */ - pxQueue->cTxLock = ( int8_t ) ( cTxLock + 1 ); - } - - xReturn = pdPASS; - } - else - { - traceQUEUE_SEND_FROM_ISR_FAILED( pxQueue ); - xReturn = errQUEUE_FULL; - } - } - portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus ); - - return xReturn; -} -/*-----------------------------------------------------------*/ - -BaseType_t xQueueGiveFromISR( QueueHandle_t xQueue, BaseType_t * const pxHigherPriorityTaskWoken ) -{ -BaseType_t xReturn; -UBaseType_t uxSavedInterruptStatus; -Queue_t * const pxQueue = xQueue; - - /* Similar to xQueueGenericSendFromISR() but used with semaphores where the - item size is 0. Don't directly wake a task that was blocked on a queue - read, instead return a flag to say whether a context switch is required or - not (i.e. has a task with a higher priority than us been woken by this - post). */ - - configASSERT( pxQueue ); - - /* xQueueGenericSendFromISR() should be used instead of xQueueGiveFromISR() - if the item size is not 0. */ - configASSERT( pxQueue->uxItemSize == 0 ); - - /* Normally a mutex would not be given from an interrupt, especially if - there is a mutex holder, as priority inheritance makes no sense for an - interrupts, only tasks. */ - configASSERT( !( ( pxQueue->uxQueueType == queueQUEUE_IS_MUTEX ) && ( pxQueue->u.xSemaphore.xMutexHolder != NULL ) ) ); - - /* RTOS ports that support interrupt nesting have the concept of a maximum - system call (or maximum API call) interrupt priority. Interrupts that are - above the maximum system call priority are kept permanently enabled, even - when the RTOS kernel is in a critical section, but cannot make any calls to - FreeRTOS API functions. If configASSERT() is defined in FreeRTOSConfig.h - then portASSERT_IF_INTERRUPT_PRIORITY_INVALID() will result in an assertion - failure if a FreeRTOS API function is called from an interrupt that has been - assigned a priority above the configured maximum system call priority. - Only FreeRTOS functions that end in FromISR can be called from interrupts - that have been assigned a priority at or (logically) below the maximum - system call interrupt priority. FreeRTOS maintains a separate interrupt - safe API to ensure interrupt entry is as fast and as simple as possible. - More information (albeit Cortex-M specific) is provided on the following - link: http://www.freertos.org/RTOS-Cortex-M3-M4.html */ - portASSERT_IF_INTERRUPT_PRIORITY_INVALID(); - - uxSavedInterruptStatus = portSET_INTERRUPT_MASK_FROM_ISR(); - { - const UBaseType_t uxMessagesWaiting = pxQueue->uxMessagesWaiting; - - /* When the queue is used to implement a semaphore no data is ever - moved through the queue but it is still valid to see if the queue 'has - space'. */ - if( uxMessagesWaiting < pxQueue->uxLength ) - { - const int8_t cTxLock = pxQueue->cTxLock; - - traceQUEUE_SEND_FROM_ISR( pxQueue ); - - /* A task can only have an inherited priority if it is a mutex - holder - and if there is a mutex holder then the mutex cannot be - given from an ISR. As this is the ISR version of the function it - can be assumed there is no mutex holder and no need to determine if - priority disinheritance is needed. Simply increase the count of - messages (semaphores) available. */ - pxQueue->uxMessagesWaiting = uxMessagesWaiting + ( UBaseType_t ) 1; - - /* The event list is not altered if the queue is locked. This will - be done when the queue is unlocked later. */ - if( cTxLock == queueUNLOCKED ) - { - #if ( configUSE_QUEUE_SETS == 1 ) - { - if( pxQueue->pxQueueSetContainer != NULL ) - { - if( prvNotifyQueueSetContainer( pxQueue ) != pdFALSE ) - { - /* The semaphore is a member of a queue set, and - posting to the queue set caused a higher priority - task to unblock. A context switch is required. */ - if( pxHigherPriorityTaskWoken != NULL ) - { - *pxHigherPriorityTaskWoken = pdTRUE; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) - { - if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE ) - { - /* The task waiting has a higher priority so - record that a context switch is required. */ - if( pxHigherPriorityTaskWoken != NULL ) - { - *pxHigherPriorityTaskWoken = pdTRUE; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - } - #else /* configUSE_QUEUE_SETS */ - { - if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) - { - if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE ) - { - /* The task waiting has a higher priority so record that a - context switch is required. */ - if( pxHigherPriorityTaskWoken != NULL ) - { - *pxHigherPriorityTaskWoken = pdTRUE; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - #endif /* configUSE_QUEUE_SETS */ - } - else - { - /* Increment the lock count so the task that unlocks the queue - knows that data was posted while it was locked. */ - pxQueue->cTxLock = ( int8_t ) ( cTxLock + 1 ); - } - - xReturn = pdPASS; - } - else - { - traceQUEUE_SEND_FROM_ISR_FAILED( pxQueue ); - xReturn = errQUEUE_FULL; - } - } - portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus ); - - return xReturn; -} -/*-----------------------------------------------------------*/ - -BaseType_t xQueueReceive( QueueHandle_t xQueue, void * const pvBuffer, TickType_t xTicksToWait ) -{ -BaseType_t xEntryTimeSet = pdFALSE; -TimeOut_t xTimeOut; -Queue_t * const pxQueue = xQueue; - - /* Check the pointer is not NULL. */ - configASSERT( ( pxQueue ) ); - - /* The buffer into which data is received can only be NULL if the data size - is zero (so no data is copied into the buffer. */ - configASSERT( !( ( ( pvBuffer ) == NULL ) && ( ( pxQueue )->uxItemSize != ( UBaseType_t ) 0U ) ) ); - - /* Cannot block if the scheduler is suspended. */ - #if ( ( INCLUDE_xTaskGetSchedulerState == 1 ) || ( configUSE_TIMERS == 1 ) ) - { - configASSERT( !( ( xTaskGetSchedulerState() == taskSCHEDULER_SUSPENDED ) && ( xTicksToWait != 0 ) ) ); - } - #endif - - - /*lint -save -e904 This function relaxes the coding standard somewhat to - allow return statements within the function itself. This is done in the - interest of execution time efficiency. */ - for( ;; ) - { - taskENTER_CRITICAL(); - { - const UBaseType_t uxMessagesWaiting = pxQueue->uxMessagesWaiting; - - /* Is there data in the queue now? To be running the calling task - must be the highest priority task wanting to access the queue. */ - if( uxMessagesWaiting > ( UBaseType_t ) 0 ) - { - /* Data available, remove one item. */ - prvCopyDataFromQueue( pxQueue, pvBuffer ); - traceQUEUE_RECEIVE( pxQueue ); - pxQueue->uxMessagesWaiting = uxMessagesWaiting - ( UBaseType_t ) 1; - - /* There is now space in the queue, were any tasks waiting to - post to the queue? If so, unblock the highest priority waiting - task. */ - if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToSend ) ) == pdFALSE ) - { - if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToSend ) ) != pdFALSE ) - { - queueYIELD_IF_USING_PREEMPTION(); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - taskEXIT_CRITICAL(); - return pdPASS; - } - else - { - if( xTicksToWait == ( TickType_t ) 0 ) - { - /* The queue was empty and no block time is specified (or - the block time has expired) so leave now. */ - taskEXIT_CRITICAL(); - traceQUEUE_RECEIVE_FAILED( pxQueue ); - return errQUEUE_EMPTY; - } - else if( xEntryTimeSet == pdFALSE ) - { - /* The queue was empty and a block time was specified so - configure the timeout structure. */ - vTaskInternalSetTimeOutState( &xTimeOut ); - xEntryTimeSet = pdTRUE; - } - else - { - /* Entry time was already set. */ - mtCOVERAGE_TEST_MARKER(); - } - } - } - taskEXIT_CRITICAL(); - - /* Interrupts and other tasks can send to and receive from the queue - now the critical section has been exited. */ - - vTaskSuspendAll(); - prvLockQueue( pxQueue ); - - /* Update the timeout state to see if it has expired yet. */ - if( xTaskCheckForTimeOut( &xTimeOut, &xTicksToWait ) == pdFALSE ) - { - /* The timeout has not expired. If the queue is still empty place - the task on the list of tasks waiting to receive from the queue. */ - if( prvIsQueueEmpty( pxQueue ) != pdFALSE ) - { - traceBLOCKING_ON_QUEUE_RECEIVE( pxQueue ); - vTaskPlaceOnEventList( &( pxQueue->xTasksWaitingToReceive ), xTicksToWait ); - prvUnlockQueue( pxQueue ); - if( xTaskResumeAll() == pdFALSE ) - { - portYIELD_WITHIN_API(); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - /* The queue contains data again. Loop back to try and read the - data. */ - prvUnlockQueue( pxQueue ); - ( void ) xTaskResumeAll(); - } - } - else - { - /* Timed out. If there is no data in the queue exit, otherwise loop - back and attempt to read the data. */ - prvUnlockQueue( pxQueue ); - ( void ) xTaskResumeAll(); - - if( prvIsQueueEmpty( pxQueue ) != pdFALSE ) - { - traceQUEUE_RECEIVE_FAILED( pxQueue ); - return errQUEUE_EMPTY; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - } /*lint -restore */ -} -/*-----------------------------------------------------------*/ - -BaseType_t xQueueSemaphoreTake( QueueHandle_t xQueue, TickType_t xTicksToWait ) -{ -BaseType_t xEntryTimeSet = pdFALSE; -TimeOut_t xTimeOut; -Queue_t * const pxQueue = xQueue; - -#if( configUSE_MUTEXES == 1 ) - BaseType_t xInheritanceOccurred = pdFALSE; -#endif - - /* Check the queue pointer is not NULL. */ - configASSERT( ( pxQueue ) ); - - /* Check this really is a semaphore, in which case the item size will be - 0. */ - configASSERT( pxQueue->uxItemSize == 0 ); - - /* Cannot block if the scheduler is suspended. */ - #if ( ( INCLUDE_xTaskGetSchedulerState == 1 ) || ( configUSE_TIMERS == 1 ) ) - { - configASSERT( !( ( xTaskGetSchedulerState() == taskSCHEDULER_SUSPENDED ) && ( xTicksToWait != 0 ) ) ); - } - #endif - - - /*lint -save -e904 This function relaxes the coding standard somewhat to allow return - statements within the function itself. This is done in the interest - of execution time efficiency. */ - for( ;; ) - { - taskENTER_CRITICAL(); - { - /* Semaphores are queues with an item size of 0, and where the - number of messages in the queue is the semaphore's count value. */ - const UBaseType_t uxSemaphoreCount = pxQueue->uxMessagesWaiting; - - /* Is there data in the queue now? To be running the calling task - must be the highest priority task wanting to access the queue. */ - if( uxSemaphoreCount > ( UBaseType_t ) 0 ) - { - traceQUEUE_RECEIVE( pxQueue ); - - /* Semaphores are queues with a data size of zero and where the - messages waiting is the semaphore's count. Reduce the count. */ - pxQueue->uxMessagesWaiting = uxSemaphoreCount - ( UBaseType_t ) 1; - - #if ( configUSE_MUTEXES == 1 ) - { - if( pxQueue->uxQueueType == queueQUEUE_IS_MUTEX ) - { - /* Record the information required to implement - priority inheritance should it become necessary. */ - pxQueue->u.xSemaphore.xMutexHolder = pvTaskIncrementMutexHeldCount(); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - #endif /* configUSE_MUTEXES */ - - /* Check to see if other tasks are blocked waiting to give the - semaphore, and if so, unblock the highest priority such task. */ - if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToSend ) ) == pdFALSE ) - { - if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToSend ) ) != pdFALSE ) - { - queueYIELD_IF_USING_PREEMPTION(); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - taskEXIT_CRITICAL(); - return pdPASS; - } - else - { - if( xTicksToWait == ( TickType_t ) 0 ) - { - /* For inheritance to have occurred there must have been an - initial timeout, and an adjusted timeout cannot become 0, as - if it were 0 the function would have exited. */ - #if( configUSE_MUTEXES == 1 ) - { - configASSERT( xInheritanceOccurred == pdFALSE ); - } - #endif /* configUSE_MUTEXES */ - - /* The semaphore count was 0 and no block time is specified - (or the block time has expired) so exit now. */ - taskEXIT_CRITICAL(); - traceQUEUE_RECEIVE_FAILED( pxQueue ); - return errQUEUE_EMPTY; - } - else if( xEntryTimeSet == pdFALSE ) - { - /* The semaphore count was 0 and a block time was specified - so configure the timeout structure ready to block. */ - vTaskInternalSetTimeOutState( &xTimeOut ); - xEntryTimeSet = pdTRUE; - } - else - { - /* Entry time was already set. */ - mtCOVERAGE_TEST_MARKER(); - } - } - } - taskEXIT_CRITICAL(); - - /* Interrupts and other tasks can give to and take from the semaphore - now the critical section has been exited. */ - - vTaskSuspendAll(); - prvLockQueue( pxQueue ); - - /* Update the timeout state to see if it has expired yet. */ - if( xTaskCheckForTimeOut( &xTimeOut, &xTicksToWait ) == pdFALSE ) - { - /* A block time is specified and not expired. If the semaphore - count is 0 then enter the Blocked state to wait for a semaphore to - become available. As semaphores are implemented with queues the - queue being empty is equivalent to the semaphore count being 0. */ - if( prvIsQueueEmpty( pxQueue ) != pdFALSE ) - { - traceBLOCKING_ON_QUEUE_RECEIVE( pxQueue ); - - #if ( configUSE_MUTEXES == 1 ) - { - if( pxQueue->uxQueueType == queueQUEUE_IS_MUTEX ) - { - taskENTER_CRITICAL(); - { - xInheritanceOccurred = xTaskPriorityInherit( pxQueue->u.xSemaphore.xMutexHolder ); - } - taskEXIT_CRITICAL(); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - #endif - - vTaskPlaceOnEventList( &( pxQueue->xTasksWaitingToReceive ), xTicksToWait ); - prvUnlockQueue( pxQueue ); - if( xTaskResumeAll() == pdFALSE ) - { - portYIELD_WITHIN_API(); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - /* There was no timeout and the semaphore count was not 0, so - attempt to take the semaphore again. */ - prvUnlockQueue( pxQueue ); - ( void ) xTaskResumeAll(); - } - } - else - { - /* Timed out. */ - prvUnlockQueue( pxQueue ); - ( void ) xTaskResumeAll(); - - /* If the semaphore count is 0 exit now as the timeout has - expired. Otherwise return to attempt to take the semaphore that is - known to be available. As semaphores are implemented by queues the - queue being empty is equivalent to the semaphore count being 0. */ - if( prvIsQueueEmpty( pxQueue ) != pdFALSE ) - { - #if ( configUSE_MUTEXES == 1 ) - { - /* xInheritanceOccurred could only have be set if - pxQueue->uxQueueType == queueQUEUE_IS_MUTEX so no need to - test the mutex type again to check it is actually a mutex. */ - if( xInheritanceOccurred != pdFALSE ) - { - taskENTER_CRITICAL(); - { - UBaseType_t uxHighestWaitingPriority; - - /* This task blocking on the mutex caused another - task to inherit this task's priority. Now this task - has timed out the priority should be disinherited - again, but only as low as the next highest priority - task that is waiting for the same mutex. */ - uxHighestWaitingPriority = prvGetDisinheritPriorityAfterTimeout( pxQueue ); - vTaskPriorityDisinheritAfterTimeout( pxQueue->u.xSemaphore.xMutexHolder, uxHighestWaitingPriority ); - } - taskEXIT_CRITICAL(); - } - } - #endif /* configUSE_MUTEXES */ - - traceQUEUE_RECEIVE_FAILED( pxQueue ); - return errQUEUE_EMPTY; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - } /*lint -restore */ -} -/*-----------------------------------------------------------*/ - -BaseType_t xQueuePeek( QueueHandle_t xQueue, void * const pvBuffer, TickType_t xTicksToWait ) -{ -BaseType_t xEntryTimeSet = pdFALSE; -TimeOut_t xTimeOut; -int8_t *pcOriginalReadPosition; -Queue_t * const pxQueue = xQueue; - - /* Check the pointer is not NULL. */ - configASSERT( ( pxQueue ) ); - - /* The buffer into which data is received can only be NULL if the data size - is zero (so no data is copied into the buffer. */ - configASSERT( !( ( ( pvBuffer ) == NULL ) && ( ( pxQueue )->uxItemSize != ( UBaseType_t ) 0U ) ) ); - - /* Cannot block if the scheduler is suspended. */ - #if ( ( INCLUDE_xTaskGetSchedulerState == 1 ) || ( configUSE_TIMERS == 1 ) ) - { - configASSERT( !( ( xTaskGetSchedulerState() == taskSCHEDULER_SUSPENDED ) && ( xTicksToWait != 0 ) ) ); - } - #endif - - - /*lint -save -e904 This function relaxes the coding standard somewhat to - allow return statements within the function itself. This is done in the - interest of execution time efficiency. */ - for( ;; ) - { - taskENTER_CRITICAL(); - { - const UBaseType_t uxMessagesWaiting = pxQueue->uxMessagesWaiting; - - /* Is there data in the queue now? To be running the calling task - must be the highest priority task wanting to access the queue. */ - if( uxMessagesWaiting > ( UBaseType_t ) 0 ) - { - /* Remember the read position so it can be reset after the data - is read from the queue as this function is only peeking the - data, not removing it. */ - pcOriginalReadPosition = pxQueue->u.xQueue.pcReadFrom; - - prvCopyDataFromQueue( pxQueue, pvBuffer ); - traceQUEUE_PEEK( pxQueue ); - - /* The data is not being removed, so reset the read pointer. */ - pxQueue->u.xQueue.pcReadFrom = pcOriginalReadPosition; - - /* The data is being left in the queue, so see if there are - any other tasks waiting for the data. */ - if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) - { - if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE ) - { - /* The task waiting has a higher priority than this task. */ - queueYIELD_IF_USING_PREEMPTION(); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - taskEXIT_CRITICAL(); - return pdPASS; - } - else - { - if( xTicksToWait == ( TickType_t ) 0 ) - { - /* The queue was empty and no block time is specified (or - the block time has expired) so leave now. */ - taskEXIT_CRITICAL(); - traceQUEUE_PEEK_FAILED( pxQueue ); - return errQUEUE_EMPTY; - } - else if( xEntryTimeSet == pdFALSE ) - { - /* The queue was empty and a block time was specified so - configure the timeout structure ready to enter the blocked - state. */ - vTaskInternalSetTimeOutState( &xTimeOut ); - xEntryTimeSet = pdTRUE; - } - else - { - /* Entry time was already set. */ - mtCOVERAGE_TEST_MARKER(); - } - } - } - taskEXIT_CRITICAL(); - - /* Interrupts and other tasks can send to and receive from the queue - now the critical section has been exited. */ - - vTaskSuspendAll(); - prvLockQueue( pxQueue ); - - /* Update the timeout state to see if it has expired yet. */ - if( xTaskCheckForTimeOut( &xTimeOut, &xTicksToWait ) == pdFALSE ) - { - /* Timeout has not expired yet, check to see if there is data in the - queue now, and if not enter the Blocked state to wait for data. */ - if( prvIsQueueEmpty( pxQueue ) != pdFALSE ) - { - traceBLOCKING_ON_QUEUE_PEEK( pxQueue ); - vTaskPlaceOnEventList( &( pxQueue->xTasksWaitingToReceive ), xTicksToWait ); - prvUnlockQueue( pxQueue ); - if( xTaskResumeAll() == pdFALSE ) - { - portYIELD_WITHIN_API(); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - /* There is data in the queue now, so don't enter the blocked - state, instead return to try and obtain the data. */ - prvUnlockQueue( pxQueue ); - ( void ) xTaskResumeAll(); - } - } - else - { - /* The timeout has expired. If there is still no data in the queue - exit, otherwise go back and try to read the data again. */ - prvUnlockQueue( pxQueue ); - ( void ) xTaskResumeAll(); - - if( prvIsQueueEmpty( pxQueue ) != pdFALSE ) - { - traceQUEUE_PEEK_FAILED( pxQueue ); - return errQUEUE_EMPTY; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - } /*lint -restore */ -} -/*-----------------------------------------------------------*/ - -BaseType_t xQueueReceiveFromISR( QueueHandle_t xQueue, void * const pvBuffer, BaseType_t * const pxHigherPriorityTaskWoken ) -{ -BaseType_t xReturn; -UBaseType_t uxSavedInterruptStatus; -Queue_t * const pxQueue = xQueue; - - configASSERT( pxQueue ); - configASSERT( !( ( pvBuffer == NULL ) && ( pxQueue->uxItemSize != ( UBaseType_t ) 0U ) ) ); - - /* RTOS ports that support interrupt nesting have the concept of a maximum - system call (or maximum API call) interrupt priority. Interrupts that are - above the maximum system call priority are kept permanently enabled, even - when the RTOS kernel is in a critical section, but cannot make any calls to - FreeRTOS API functions. If configASSERT() is defined in FreeRTOSConfig.h - then portASSERT_IF_INTERRUPT_PRIORITY_INVALID() will result in an assertion - failure if a FreeRTOS API function is called from an interrupt that has been - assigned a priority above the configured maximum system call priority. - Only FreeRTOS functions that end in FromISR can be called from interrupts - that have been assigned a priority at or (logically) below the maximum - system call interrupt priority. FreeRTOS maintains a separate interrupt - safe API to ensure interrupt entry is as fast and as simple as possible. - More information (albeit Cortex-M specific) is provided on the following - link: http://www.freertos.org/RTOS-Cortex-M3-M4.html */ - portASSERT_IF_INTERRUPT_PRIORITY_INVALID(); - - uxSavedInterruptStatus = portSET_INTERRUPT_MASK_FROM_ISR(); - { - const UBaseType_t uxMessagesWaiting = pxQueue->uxMessagesWaiting; - - /* Cannot block in an ISR, so check there is data available. */ - if( uxMessagesWaiting > ( UBaseType_t ) 0 ) - { - const int8_t cRxLock = pxQueue->cRxLock; - - traceQUEUE_RECEIVE_FROM_ISR( pxQueue ); - - prvCopyDataFromQueue( pxQueue, pvBuffer ); - pxQueue->uxMessagesWaiting = uxMessagesWaiting - ( UBaseType_t ) 1; - - /* If the queue is locked the event list will not be modified. - Instead update the lock count so the task that unlocks the queue - will know that an ISR has removed data while the queue was - locked. */ - if( cRxLock == queueUNLOCKED ) - { - if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToSend ) ) == pdFALSE ) - { - if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToSend ) ) != pdFALSE ) - { - /* The task waiting has a higher priority than us so - force a context switch. */ - if( pxHigherPriorityTaskWoken != NULL ) - { - *pxHigherPriorityTaskWoken = pdTRUE; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - /* Increment the lock count so the task that unlocks the queue - knows that data was removed while it was locked. */ - pxQueue->cRxLock = ( int8_t ) ( cRxLock + 1 ); - } - - xReturn = pdPASS; - } - else - { - xReturn = pdFAIL; - traceQUEUE_RECEIVE_FROM_ISR_FAILED( pxQueue ); - } - } - portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus ); - - return xReturn; -} -/*-----------------------------------------------------------*/ - -BaseType_t xQueuePeekFromISR( QueueHandle_t xQueue, void * const pvBuffer ) -{ -BaseType_t xReturn; -UBaseType_t uxSavedInterruptStatus; -int8_t *pcOriginalReadPosition; -Queue_t * const pxQueue = xQueue; - - configASSERT( pxQueue ); - configASSERT( !( ( pvBuffer == NULL ) && ( pxQueue->uxItemSize != ( UBaseType_t ) 0U ) ) ); - configASSERT( pxQueue->uxItemSize != 0 ); /* Can't peek a semaphore. */ - - /* RTOS ports that support interrupt nesting have the concept of a maximum - system call (or maximum API call) interrupt priority. Interrupts that are - above the maximum system call priority are kept permanently enabled, even - when the RTOS kernel is in a critical section, but cannot make any calls to - FreeRTOS API functions. If configASSERT() is defined in FreeRTOSConfig.h - then portASSERT_IF_INTERRUPT_PRIORITY_INVALID() will result in an assertion - failure if a FreeRTOS API function is called from an interrupt that has been - assigned a priority above the configured maximum system call priority. - Only FreeRTOS functions that end in FromISR can be called from interrupts - that have been assigned a priority at or (logically) below the maximum - system call interrupt priority. FreeRTOS maintains a separate interrupt - safe API to ensure interrupt entry is as fast and as simple as possible. - More information (albeit Cortex-M specific) is provided on the following - link: http://www.freertos.org/RTOS-Cortex-M3-M4.html */ - portASSERT_IF_INTERRUPT_PRIORITY_INVALID(); - - uxSavedInterruptStatus = portSET_INTERRUPT_MASK_FROM_ISR(); - { - /* Cannot block in an ISR, so check there is data available. */ - if( pxQueue->uxMessagesWaiting > ( UBaseType_t ) 0 ) - { - traceQUEUE_PEEK_FROM_ISR( pxQueue ); - - /* Remember the read position so it can be reset as nothing is - actually being removed from the queue. */ - pcOriginalReadPosition = pxQueue->u.xQueue.pcReadFrom; - prvCopyDataFromQueue( pxQueue, pvBuffer ); - pxQueue->u.xQueue.pcReadFrom = pcOriginalReadPosition; - - xReturn = pdPASS; - } - else - { - xReturn = pdFAIL; - traceQUEUE_PEEK_FROM_ISR_FAILED( pxQueue ); - } - } - portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus ); - - return xReturn; -} -/*-----------------------------------------------------------*/ - -UBaseType_t uxQueueMessagesWaiting( const QueueHandle_t xQueue ) -{ -UBaseType_t uxReturn; - - configASSERT( xQueue ); - - taskENTER_CRITICAL(); - { - uxReturn = ( ( Queue_t * ) xQueue )->uxMessagesWaiting; - } - taskEXIT_CRITICAL(); - - return uxReturn; -} /*lint !e818 Pointer cannot be declared const as xQueue is a typedef not pointer. */ -/*-----------------------------------------------------------*/ - -UBaseType_t uxQueueSpacesAvailable( const QueueHandle_t xQueue ) -{ -UBaseType_t uxReturn; -Queue_t * const pxQueue = xQueue; - - configASSERT( pxQueue ); - - taskENTER_CRITICAL(); - { - uxReturn = pxQueue->uxLength - pxQueue->uxMessagesWaiting; - } - taskEXIT_CRITICAL(); - - return uxReturn; -} /*lint !e818 Pointer cannot be declared const as xQueue is a typedef not pointer. */ -/*-----------------------------------------------------------*/ - -UBaseType_t uxQueueMessagesWaitingFromISR( const QueueHandle_t xQueue ) -{ -UBaseType_t uxReturn; -Queue_t * const pxQueue = xQueue; - - configASSERT( pxQueue ); - uxReturn = pxQueue->uxMessagesWaiting; - - return uxReturn; -} /*lint !e818 Pointer cannot be declared const as xQueue is a typedef not pointer. */ -/*-----------------------------------------------------------*/ - -void vQueueDelete( QueueHandle_t xQueue ) -{ -Queue_t * const pxQueue = xQueue; - - configASSERT( pxQueue ); - traceQUEUE_DELETE( pxQueue ); - - #if ( configQUEUE_REGISTRY_SIZE > 0 ) - { - vQueueUnregisterQueue( pxQueue ); - } - #endif - - #if( ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) && ( configSUPPORT_STATIC_ALLOCATION == 0 ) ) - { - /* The queue can only have been allocated dynamically - free it - again. */ - vPortFree( pxQueue ); - } - #elif( ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) && ( configSUPPORT_STATIC_ALLOCATION == 1 ) ) - { - /* The queue could have been allocated statically or dynamically, so - check before attempting to free the memory. */ - if( pxQueue->ucStaticallyAllocated == ( uint8_t ) pdFALSE ) - { - vPortFree( pxQueue ); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - #else - { - /* The queue must have been statically allocated, so is not going to be - deleted. Avoid compiler warnings about the unused parameter. */ - ( void ) pxQueue; - } - #endif /* configSUPPORT_DYNAMIC_ALLOCATION */ -} -/*-----------------------------------------------------------*/ - -#if ( configUSE_TRACE_FACILITY == 1 ) - - UBaseType_t uxQueueGetQueueNumber( QueueHandle_t xQueue ) - { - return ( ( Queue_t * ) xQueue )->uxQueueNumber; - } - -#endif /* configUSE_TRACE_FACILITY */ -/*-----------------------------------------------------------*/ - -#if ( configUSE_TRACE_FACILITY == 1 ) - - void vQueueSetQueueNumber( QueueHandle_t xQueue, UBaseType_t uxQueueNumber ) - { - ( ( Queue_t * ) xQueue )->uxQueueNumber = uxQueueNumber; - } - -#endif /* configUSE_TRACE_FACILITY */ -/*-----------------------------------------------------------*/ - -#if ( configUSE_TRACE_FACILITY == 1 ) - - uint8_t ucQueueGetQueueType( QueueHandle_t xQueue ) - { - return ( ( Queue_t * ) xQueue )->ucQueueType; - } - -#endif /* configUSE_TRACE_FACILITY */ -/*-----------------------------------------------------------*/ - -#if( configUSE_MUTEXES == 1 ) - - static UBaseType_t prvGetDisinheritPriorityAfterTimeout( const Queue_t * const pxQueue ) - { - UBaseType_t uxHighestPriorityOfWaitingTasks; - - /* If a task waiting for a mutex causes the mutex holder to inherit a - priority, but the waiting task times out, then the holder should - disinherit the priority - but only down to the highest priority of any - other tasks that are waiting for the same mutex. For this purpose, - return the priority of the highest priority task that is waiting for the - mutex. */ - if( listCURRENT_LIST_LENGTH( &( pxQueue->xTasksWaitingToReceive ) ) > 0U ) - { - uxHighestPriorityOfWaitingTasks = ( UBaseType_t ) configMAX_PRIORITIES - ( UBaseType_t ) listGET_ITEM_VALUE_OF_HEAD_ENTRY( &( pxQueue->xTasksWaitingToReceive ) ); - } - else - { - uxHighestPriorityOfWaitingTasks = tskIDLE_PRIORITY; - } - - return uxHighestPriorityOfWaitingTasks; - } - -#endif /* configUSE_MUTEXES */ -/*-----------------------------------------------------------*/ - -static BaseType_t prvCopyDataToQueue( Queue_t * const pxQueue, const void *pvItemToQueue, const BaseType_t xPosition ) -{ -BaseType_t xReturn = pdFALSE; -UBaseType_t uxMessagesWaiting; - - /* This function is called from a critical section. */ - - uxMessagesWaiting = pxQueue->uxMessagesWaiting; - - if( pxQueue->uxItemSize == ( UBaseType_t ) 0 ) - { - #if ( configUSE_MUTEXES == 1 ) - { - if( pxQueue->uxQueueType == queueQUEUE_IS_MUTEX ) - { - /* The mutex is no longer being held. */ - xReturn = xTaskPriorityDisinherit( pxQueue->u.xSemaphore.xMutexHolder ); - pxQueue->u.xSemaphore.xMutexHolder = NULL; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - #endif /* configUSE_MUTEXES */ - } - else if( xPosition == queueSEND_TO_BACK ) - { - ( void ) memcpy( ( void * ) pxQueue->pcWriteTo, pvItemToQueue, ( size_t ) pxQueue->uxItemSize ); /*lint !e961 !e418 !e9087 MISRA exception as the casts are only redundant for some ports, plus previous logic ensures a null pointer can only be passed to memcpy() if the copy size is 0. Cast to void required by function signature and safe as no alignment requirement and copy length specified in bytes. */ - pxQueue->pcWriteTo += pxQueue->uxItemSize; /*lint !e9016 Pointer arithmetic on char types ok, especially in this use case where it is the clearest way of conveying intent. */ - if( pxQueue->pcWriteTo >= pxQueue->u.xQueue.pcTail ) /*lint !e946 MISRA exception justified as comparison of pointers is the cleanest solution. */ - { - pxQueue->pcWriteTo = pxQueue->pcHead; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - ( void ) memcpy( ( void * ) pxQueue->u.xQueue.pcReadFrom, pvItemToQueue, ( size_t ) pxQueue->uxItemSize ); /*lint !e961 !e9087 !e418 MISRA exception as the casts are only redundant for some ports. Cast to void required by function signature and safe as no alignment requirement and copy length specified in bytes. Assert checks null pointer only used when length is 0. */ - pxQueue->u.xQueue.pcReadFrom -= pxQueue->uxItemSize; - if( pxQueue->u.xQueue.pcReadFrom < pxQueue->pcHead ) /*lint !e946 MISRA exception justified as comparison of pointers is the cleanest solution. */ - { - pxQueue->u.xQueue.pcReadFrom = ( pxQueue->u.xQueue.pcTail - pxQueue->uxItemSize ); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - if( xPosition == queueOVERWRITE ) - { - if( uxMessagesWaiting > ( UBaseType_t ) 0 ) - { - /* An item is not being added but overwritten, so subtract - one from the recorded number of items in the queue so when - one is added again below the number of recorded items remains - correct. */ - --uxMessagesWaiting; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - - pxQueue->uxMessagesWaiting = uxMessagesWaiting + ( UBaseType_t ) 1; - - return xReturn; -} -/*-----------------------------------------------------------*/ - -static void prvCopyDataFromQueue( Queue_t * const pxQueue, void * const pvBuffer ) -{ - if( pxQueue->uxItemSize != ( UBaseType_t ) 0 ) - { - pxQueue->u.xQueue.pcReadFrom += pxQueue->uxItemSize; /*lint !e9016 Pointer arithmetic on char types ok, especially in this use case where it is the clearest way of conveying intent. */ - if( pxQueue->u.xQueue.pcReadFrom >= pxQueue->u.xQueue.pcTail ) /*lint !e946 MISRA exception justified as use of the relational operator is the cleanest solutions. */ - { - pxQueue->u.xQueue.pcReadFrom = pxQueue->pcHead; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - ( void ) memcpy( ( void * ) pvBuffer, ( void * ) pxQueue->u.xQueue.pcReadFrom, ( size_t ) pxQueue->uxItemSize ); /*lint !e961 !e418 !e9087 MISRA exception as the casts are only redundant for some ports. Also previous logic ensures a null pointer can only be passed to memcpy() when the count is 0. Cast to void required by function signature and safe as no alignment requirement and copy length specified in bytes. */ - } -} -/*-----------------------------------------------------------*/ - -static void prvUnlockQueue( Queue_t * const pxQueue ) -{ - /* THIS FUNCTION MUST BE CALLED WITH THE SCHEDULER SUSPENDED. */ - - /* The lock counts contains the number of extra data items placed or - removed from the queue while the queue was locked. When a queue is - locked items can be added or removed, but the event lists cannot be - updated. */ - taskENTER_CRITICAL(); - { - int8_t cTxLock = pxQueue->cTxLock; - - /* See if data was added to the queue while it was locked. */ - while( cTxLock > queueLOCKED_UNMODIFIED ) - { - /* Data was posted while the queue was locked. Are any tasks - blocked waiting for data to become available? */ - #if ( configUSE_QUEUE_SETS == 1 ) - { - if( pxQueue->pxQueueSetContainer != NULL ) - { - if( prvNotifyQueueSetContainer( pxQueue ) != pdFALSE ) - { - /* The queue is a member of a queue set, and posting to - the queue set caused a higher priority task to unblock. - A context switch is required. */ - vTaskMissedYield(); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - /* Tasks that are removed from the event list will get - added to the pending ready list as the scheduler is still - suspended. */ - if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) - { - if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE ) - { - /* The task waiting has a higher priority so record that a - context switch is required. */ - vTaskMissedYield(); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - break; - } - } - } - #else /* configUSE_QUEUE_SETS */ - { - /* Tasks that are removed from the event list will get added to - the pending ready list as the scheduler is still suspended. */ - if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) - { - if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE ) - { - /* The task waiting has a higher priority so record that - a context switch is required. */ - vTaskMissedYield(); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - break; - } - } - #endif /* configUSE_QUEUE_SETS */ - - --cTxLock; - } - - pxQueue->cTxLock = queueUNLOCKED; - } - taskEXIT_CRITICAL(); - - /* Do the same for the Rx lock. */ - taskENTER_CRITICAL(); - { - int8_t cRxLock = pxQueue->cRxLock; - - while( cRxLock > queueLOCKED_UNMODIFIED ) - { - if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToSend ) ) == pdFALSE ) - { - if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToSend ) ) != pdFALSE ) - { - vTaskMissedYield(); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - --cRxLock; - } - else - { - break; - } - } - - pxQueue->cRxLock = queueUNLOCKED; - } - taskEXIT_CRITICAL(); -} -/*-----------------------------------------------------------*/ - -static BaseType_t prvIsQueueEmpty( const Queue_t *pxQueue ) -{ -BaseType_t xReturn; - - taskENTER_CRITICAL(); - { - if( pxQueue->uxMessagesWaiting == ( UBaseType_t ) 0 ) - { - xReturn = pdTRUE; - } - else - { - xReturn = pdFALSE; - } - } - taskEXIT_CRITICAL(); - - return xReturn; -} -/*-----------------------------------------------------------*/ - -BaseType_t xQueueIsQueueEmptyFromISR( const QueueHandle_t xQueue ) -{ -BaseType_t xReturn; -Queue_t * const pxQueue = xQueue; - - configASSERT( pxQueue ); - if( pxQueue->uxMessagesWaiting == ( UBaseType_t ) 0 ) - { - xReturn = pdTRUE; - } - else - { - xReturn = pdFALSE; - } - - return xReturn; -} /*lint !e818 xQueue could not be pointer to const because it is a typedef. */ -/*-----------------------------------------------------------*/ - -static BaseType_t prvIsQueueFull( const Queue_t *pxQueue ) -{ -BaseType_t xReturn; - - taskENTER_CRITICAL(); - { - if( pxQueue->uxMessagesWaiting == pxQueue->uxLength ) - { - xReturn = pdTRUE; - } - else - { - xReturn = pdFALSE; - } - } - taskEXIT_CRITICAL(); - - return xReturn; -} -/*-----------------------------------------------------------*/ - -BaseType_t xQueueIsQueueFullFromISR( const QueueHandle_t xQueue ) -{ -BaseType_t xReturn; -Queue_t * const pxQueue = xQueue; - - configASSERT( pxQueue ); - if( pxQueue->uxMessagesWaiting == pxQueue->uxLength ) - { - xReturn = pdTRUE; - } - else - { - xReturn = pdFALSE; - } - - return xReturn; -} /*lint !e818 xQueue could not be pointer to const because it is a typedef. */ -/*-----------------------------------------------------------*/ - -#if ( configUSE_CO_ROUTINES == 1 ) - - BaseType_t xQueueCRSend( QueueHandle_t xQueue, const void *pvItemToQueue, TickType_t xTicksToWait ) - { - BaseType_t xReturn; - Queue_t * const pxQueue = xQueue; - - /* If the queue is already full we may have to block. A critical section - is required to prevent an interrupt removing something from the queue - between the check to see if the queue is full and blocking on the queue. */ - portDISABLE_INTERRUPTS(); - { - if( prvIsQueueFull( pxQueue ) != pdFALSE ) - { - /* The queue is full - do we want to block or just leave without - posting? */ - if( xTicksToWait > ( TickType_t ) 0 ) - { - /* As this is called from a coroutine we cannot block directly, but - return indicating that we need to block. */ - vCoRoutineAddToDelayedList( xTicksToWait, &( pxQueue->xTasksWaitingToSend ) ); - portENABLE_INTERRUPTS(); - return errQUEUE_BLOCKED; - } - else - { - portENABLE_INTERRUPTS(); - return errQUEUE_FULL; - } - } - } - portENABLE_INTERRUPTS(); - - portDISABLE_INTERRUPTS(); - { - if( pxQueue->uxMessagesWaiting < pxQueue->uxLength ) - { - /* There is room in the queue, copy the data into the queue. */ - prvCopyDataToQueue( pxQueue, pvItemToQueue, queueSEND_TO_BACK ); - xReturn = pdPASS; - - /* Were any co-routines waiting for data to become available? */ - if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) - { - /* In this instance the co-routine could be placed directly - into the ready list as we are within a critical section. - Instead the same pending ready list mechanism is used as if - the event were caused from within an interrupt. */ - if( xCoRoutineRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE ) - { - /* The co-routine waiting has a higher priority so record - that a yield might be appropriate. */ - xReturn = errQUEUE_YIELD; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - xReturn = errQUEUE_FULL; - } - } - portENABLE_INTERRUPTS(); - - return xReturn; - } - -#endif /* configUSE_CO_ROUTINES */ -/*-----------------------------------------------------------*/ - -#if ( configUSE_CO_ROUTINES == 1 ) - - BaseType_t xQueueCRReceive( QueueHandle_t xQueue, void *pvBuffer, TickType_t xTicksToWait ) - { - BaseType_t xReturn; - Queue_t * const pxQueue = xQueue; - - /* If the queue is already empty we may have to block. A critical section - is required to prevent an interrupt adding something to the queue - between the check to see if the queue is empty and blocking on the queue. */ - portDISABLE_INTERRUPTS(); - { - if( pxQueue->uxMessagesWaiting == ( UBaseType_t ) 0 ) - { - /* There are no messages in the queue, do we want to block or just - leave with nothing? */ - if( xTicksToWait > ( TickType_t ) 0 ) - { - /* As this is a co-routine we cannot block directly, but return - indicating that we need to block. */ - vCoRoutineAddToDelayedList( xTicksToWait, &( pxQueue->xTasksWaitingToReceive ) ); - portENABLE_INTERRUPTS(); - return errQUEUE_BLOCKED; - } - else - { - portENABLE_INTERRUPTS(); - return errQUEUE_FULL; - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - portENABLE_INTERRUPTS(); - - portDISABLE_INTERRUPTS(); - { - if( pxQueue->uxMessagesWaiting > ( UBaseType_t ) 0 ) - { - /* Data is available from the queue. */ - pxQueue->u.xQueue.pcReadFrom += pxQueue->uxItemSize; - if( pxQueue->u.xQueue.pcReadFrom >= pxQueue->u.xQueue.pcTail ) - { - pxQueue->u.xQueue.pcReadFrom = pxQueue->pcHead; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - --( pxQueue->uxMessagesWaiting ); - ( void ) memcpy( ( void * ) pvBuffer, ( void * ) pxQueue->u.xQueue.pcReadFrom, ( unsigned ) pxQueue->uxItemSize ); - - xReturn = pdPASS; - - /* Were any co-routines waiting for space to become available? */ - if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToSend ) ) == pdFALSE ) - { - /* In this instance the co-routine could be placed directly - into the ready list as we are within a critical section. - Instead the same pending ready list mechanism is used as if - the event were caused from within an interrupt. */ - if( xCoRoutineRemoveFromEventList( &( pxQueue->xTasksWaitingToSend ) ) != pdFALSE ) - { - xReturn = errQUEUE_YIELD; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - xReturn = pdFAIL; - } - } - portENABLE_INTERRUPTS(); - - return xReturn; - } - -#endif /* configUSE_CO_ROUTINES */ -/*-----------------------------------------------------------*/ - -#if ( configUSE_CO_ROUTINES == 1 ) - - BaseType_t xQueueCRSendFromISR( QueueHandle_t xQueue, const void *pvItemToQueue, BaseType_t xCoRoutinePreviouslyWoken ) - { - Queue_t * const pxQueue = xQueue; - - /* Cannot block within an ISR so if there is no space on the queue then - exit without doing anything. */ - if( pxQueue->uxMessagesWaiting < pxQueue->uxLength ) - { - prvCopyDataToQueue( pxQueue, pvItemToQueue, queueSEND_TO_BACK ); - - /* We only want to wake one co-routine per ISR, so check that a - co-routine has not already been woken. */ - if( xCoRoutinePreviouslyWoken == pdFALSE ) - { - if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) - { - if( xCoRoutineRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE ) - { - return pdTRUE; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - return xCoRoutinePreviouslyWoken; - } - -#endif /* configUSE_CO_ROUTINES */ -/*-----------------------------------------------------------*/ - -#if ( configUSE_CO_ROUTINES == 1 ) - - BaseType_t xQueueCRReceiveFromISR( QueueHandle_t xQueue, void *pvBuffer, BaseType_t *pxCoRoutineWoken ) - { - BaseType_t xReturn; - Queue_t * const pxQueue = xQueue; - - /* We cannot block from an ISR, so check there is data available. If - not then just leave without doing anything. */ - if( pxQueue->uxMessagesWaiting > ( UBaseType_t ) 0 ) - { - /* Copy the data from the queue. */ - pxQueue->u.xQueue.pcReadFrom += pxQueue->uxItemSize; - if( pxQueue->u.xQueue.pcReadFrom >= pxQueue->u.xQueue.pcTail ) - { - pxQueue->u.xQueue.pcReadFrom = pxQueue->pcHead; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - --( pxQueue->uxMessagesWaiting ); - ( void ) memcpy( ( void * ) pvBuffer, ( void * ) pxQueue->u.xQueue.pcReadFrom, ( unsigned ) pxQueue->uxItemSize ); - - if( ( *pxCoRoutineWoken ) == pdFALSE ) - { - if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToSend ) ) == pdFALSE ) - { - if( xCoRoutineRemoveFromEventList( &( pxQueue->xTasksWaitingToSend ) ) != pdFALSE ) - { - *pxCoRoutineWoken = pdTRUE; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - xReturn = pdPASS; - } - else - { - xReturn = pdFAIL; - } - - return xReturn; - } - -#endif /* configUSE_CO_ROUTINES */ -/*-----------------------------------------------------------*/ - -#if ( configQUEUE_REGISTRY_SIZE > 0 ) - - void vQueueAddToRegistry( QueueHandle_t xQueue, const char *pcQueueName ) /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ - { - UBaseType_t ux; - - /* See if there is an empty space in the registry. A NULL name denotes - a free slot. */ - for( ux = ( UBaseType_t ) 0U; ux < ( UBaseType_t ) configQUEUE_REGISTRY_SIZE; ux++ ) - { - if( xQueueRegistry[ ux ].pcQueueName == NULL ) - { - /* Store the information on this queue. */ - xQueueRegistry[ ux ].pcQueueName = pcQueueName; - xQueueRegistry[ ux ].xHandle = xQueue; - - traceQUEUE_REGISTRY_ADD( xQueue, pcQueueName ); - break; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - } - -#endif /* configQUEUE_REGISTRY_SIZE */ -/*-----------------------------------------------------------*/ - -#if ( configQUEUE_REGISTRY_SIZE > 0 ) - - const char *pcQueueGetName( QueueHandle_t xQueue ) /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ - { - UBaseType_t ux; - const char *pcReturn = NULL; /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ - - /* Note there is nothing here to protect against another task adding or - removing entries from the registry while it is being searched. */ - for( ux = ( UBaseType_t ) 0U; ux < ( UBaseType_t ) configQUEUE_REGISTRY_SIZE; ux++ ) - { - if( xQueueRegistry[ ux ].xHandle == xQueue ) - { - pcReturn = xQueueRegistry[ ux ].pcQueueName; - break; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - - return pcReturn; - } /*lint !e818 xQueue cannot be a pointer to const because it is a typedef. */ - -#endif /* configQUEUE_REGISTRY_SIZE */ -/*-----------------------------------------------------------*/ - -#if ( configQUEUE_REGISTRY_SIZE > 0 ) - - void vQueueUnregisterQueue( QueueHandle_t xQueue ) - { - UBaseType_t ux; - - /* See if the handle of the queue being unregistered in actually in the - registry. */ - for( ux = ( UBaseType_t ) 0U; ux < ( UBaseType_t ) configQUEUE_REGISTRY_SIZE; ux++ ) - { - if( xQueueRegistry[ ux ].xHandle == xQueue ) - { - /* Set the name to NULL to show that this slot if free again. */ - xQueueRegistry[ ux ].pcQueueName = NULL; - - /* Set the handle to NULL to ensure the same queue handle cannot - appear in the registry twice if it is added, removed, then - added again. */ - xQueueRegistry[ ux ].xHandle = ( QueueHandle_t ) 0; - break; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - - } /*lint !e818 xQueue could not be pointer to const because it is a typedef. */ - -#endif /* configQUEUE_REGISTRY_SIZE */ -/*-----------------------------------------------------------*/ - -#if ( configUSE_TIMERS == 1 ) - - void vQueueWaitForMessageRestricted( QueueHandle_t xQueue, TickType_t xTicksToWait, const BaseType_t xWaitIndefinitely ) - { - Queue_t * const pxQueue = xQueue; - - /* This function should not be called by application code hence the - 'Restricted' in its name. It is not part of the public API. It is - designed for use by kernel code, and has special calling requirements. - It can result in vListInsert() being called on a list that can only - possibly ever have one item in it, so the list will be fast, but even - so it should be called with the scheduler locked and not from a critical - section. */ - - /* Only do anything if there are no messages in the queue. This function - will not actually cause the task to block, just place it on a blocked - list. It will not block until the scheduler is unlocked - at which - time a yield will be performed. If an item is added to the queue while - the queue is locked, and the calling task blocks on the queue, then the - calling task will be immediately unblocked when the queue is unlocked. */ - prvLockQueue( pxQueue ); - if( pxQueue->uxMessagesWaiting == ( UBaseType_t ) 0U ) - { - /* There is nothing in the queue, block for the specified period. */ - vTaskPlaceOnEventListRestricted( &( pxQueue->xTasksWaitingToReceive ), xTicksToWait, xWaitIndefinitely ); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - prvUnlockQueue( pxQueue ); - } - -#endif /* configUSE_TIMERS */ -/*-----------------------------------------------------------*/ - -#if( ( configUSE_QUEUE_SETS == 1 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) ) - - QueueSetHandle_t xQueueCreateSet( const UBaseType_t uxEventQueueLength ) - { - QueueSetHandle_t pxQueue; - - pxQueue = xQueueGenericCreate( uxEventQueueLength, ( UBaseType_t ) sizeof( Queue_t * ), queueQUEUE_TYPE_SET ); - - return pxQueue; - } - -#endif /* configUSE_QUEUE_SETS */ -/*-----------------------------------------------------------*/ - -#if ( configUSE_QUEUE_SETS == 1 ) - - BaseType_t xQueueAddToSet( QueueSetMemberHandle_t xQueueOrSemaphore, QueueSetHandle_t xQueueSet ) - { - BaseType_t xReturn; - - taskENTER_CRITICAL(); - { - if( ( ( Queue_t * ) xQueueOrSemaphore )->pxQueueSetContainer != NULL ) - { - /* Cannot add a queue/semaphore to more than one queue set. */ - xReturn = pdFAIL; - } - else if( ( ( Queue_t * ) xQueueOrSemaphore )->uxMessagesWaiting != ( UBaseType_t ) 0 ) - { - /* Cannot add a queue/semaphore to a queue set if there are already - items in the queue/semaphore. */ - xReturn = pdFAIL; - } - else - { - ( ( Queue_t * ) xQueueOrSemaphore )->pxQueueSetContainer = xQueueSet; - xReturn = pdPASS; - } - } - taskEXIT_CRITICAL(); - - return xReturn; - } - -#endif /* configUSE_QUEUE_SETS */ -/*-----------------------------------------------------------*/ - -#if ( configUSE_QUEUE_SETS == 1 ) - - BaseType_t xQueueRemoveFromSet( QueueSetMemberHandle_t xQueueOrSemaphore, QueueSetHandle_t xQueueSet ) - { - BaseType_t xReturn; - Queue_t * const pxQueueOrSemaphore = ( Queue_t * ) xQueueOrSemaphore; - - if( pxQueueOrSemaphore->pxQueueSetContainer != xQueueSet ) - { - /* The queue was not a member of the set. */ - xReturn = pdFAIL; - } - else if( pxQueueOrSemaphore->uxMessagesWaiting != ( UBaseType_t ) 0 ) - { - /* It is dangerous to remove a queue from a set when the queue is - not empty because the queue set will still hold pending events for - the queue. */ - xReturn = pdFAIL; - } - else - { - taskENTER_CRITICAL(); - { - /* The queue is no longer contained in the set. */ - pxQueueOrSemaphore->pxQueueSetContainer = NULL; - } - taskEXIT_CRITICAL(); - xReturn = pdPASS; - } - - return xReturn; - } /*lint !e818 xQueueSet could not be declared as pointing to const as it is a typedef. */ - -#endif /* configUSE_QUEUE_SETS */ -/*-----------------------------------------------------------*/ - -#if ( configUSE_QUEUE_SETS == 1 ) - - QueueSetMemberHandle_t xQueueSelectFromSet( QueueSetHandle_t xQueueSet, TickType_t const xTicksToWait ) - { - QueueSetMemberHandle_t xReturn = NULL; - - ( void ) xQueueReceive( ( QueueHandle_t ) xQueueSet, &xReturn, xTicksToWait ); /*lint !e961 Casting from one typedef to another is not redundant. */ - return xReturn; - } - -#endif /* configUSE_QUEUE_SETS */ -/*-----------------------------------------------------------*/ - -#if ( configUSE_QUEUE_SETS == 1 ) - - QueueSetMemberHandle_t xQueueSelectFromSetFromISR( QueueSetHandle_t xQueueSet ) - { - QueueSetMemberHandle_t xReturn = NULL; - - ( void ) xQueueReceiveFromISR( ( QueueHandle_t ) xQueueSet, &xReturn, NULL ); /*lint !e961 Casting from one typedef to another is not redundant. */ - return xReturn; - } - -#endif /* configUSE_QUEUE_SETS */ -/*-----------------------------------------------------------*/ - -#if ( configUSE_QUEUE_SETS == 1 ) - - static BaseType_t prvNotifyQueueSetContainer( const Queue_t * const pxQueue ) - { - Queue_t *pxQueueSetContainer = pxQueue->pxQueueSetContainer; - BaseType_t xReturn = pdFALSE; - - /* This function must be called form a critical section. */ - - configASSERT( pxQueueSetContainer ); - configASSERT( pxQueueSetContainer->uxMessagesWaiting < pxQueueSetContainer->uxLength ); - - if( pxQueueSetContainer->uxMessagesWaiting < pxQueueSetContainer->uxLength ) - { - const int8_t cTxLock = pxQueueSetContainer->cTxLock; - - traceQUEUE_SEND( pxQueueSetContainer ); - - /* The data copied is the handle of the queue that contains data. */ - xReturn = prvCopyDataToQueue( pxQueueSetContainer, &pxQueue, queueSEND_TO_BACK ); - - if( cTxLock == queueUNLOCKED ) - { - if( listLIST_IS_EMPTY( &( pxQueueSetContainer->xTasksWaitingToReceive ) ) == pdFALSE ) - { - if( xTaskRemoveFromEventList( &( pxQueueSetContainer->xTasksWaitingToReceive ) ) != pdFALSE ) - { - /* The task waiting has a higher priority. */ - xReturn = pdTRUE; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - pxQueueSetContainer->cTxLock = ( int8_t ) ( cTxLock + 1 ); - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - return xReturn; - } - -#endif /* configUSE_QUEUE_SETS */ - - - - - - - - - - - - diff --git a/rtos/freertos/abstraction_layer_freertos/scr/soc_eu.c b/rtos/freertos/abstraction_layer_freertos/scr/soc_eu.c deleted file mode 100644 index a8228212..00000000 --- a/rtos/freertos/abstraction_layer_freertos/scr/soc_eu.c +++ /dev/null @@ -1,51 +0,0 @@ -/* - * Copyright (C) 2019 ETH Zurich and University of Bologna - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -/* Driver to control and configure the PULP event unit */ -/* Author: Robert Balas (balasr@iis.ee.ethz.ch) - */ - -#include -#include "pulp_mem_map.h" -#include "io.h" -#include "soc_eu_metal.h" - -void soc_eu_mask_set(uint32_t offset, uint32_t mask) -{ - writew(mask, (uintptr_t)(PULP_SOC_EU_ADDR + offset)); -} - -uint32_t soc_eu_mask_get(uint32_t offset) -{ - return readw((uintptr_t)(PULP_SOC_EU_ADDR + offset)); -} - -/* void soc_eu_irq_mask_set(uint32_t mask) */ -/* { */ -/* writew(mask, PULP_SOC_EU_ADDR + ) */ -/* } */ - -/* uint32_t soc_eu_irq_mask_get() */ -/* { */ -/* } */ - -void soc_eu_event_init() -{ - /* deactivate all soc events */ - for (unsigned i = 0; i < SOC_NB_EVENT_REGS; i++) { - soc_eu_mask_set(SOC_FC_FIRST_MASK + i * 4, 0xffffffff); - } -} diff --git a/rtos/freertos/abstraction_layer_freertos/scr/stream_buffer.c b/rtos/freertos/abstraction_layer_freertos/scr/stream_buffer.c deleted file mode 100644 index ec7b3e36..00000000 --- a/rtos/freertos/abstraction_layer_freertos/scr/stream_buffer.c +++ /dev/null @@ -1,1263 +0,0 @@ -/* - * FreeRTOS Kernel V10.3.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. - * - * Permission is hereby granted, free of charge, to any person obtaining a copy of - * this software and associated documentation files (the "Software"), to deal in - * the Software without restriction, including without limitation the rights to - * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of - * the Software, and to permit persons to whom the Software is furnished to do so, - * subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS - * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR - * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER - * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - * - * http://www.FreeRTOS.org - * http://aws.amazon.com/freertos - * - * 1 tab == 4 spaces! - */ - -/* Standard includes. */ -#include -#include - -/* Defining MPU_WRAPPERS_INCLUDED_FROM_API_FILE prevents task.h from redefining -all the API functions to use the MPU wrappers. That should only be done when -task.h is included from an application file. */ -#define MPU_WRAPPERS_INCLUDED_FROM_API_FILE - -/* FreeRTOS includes. */ -#include "FreeRTOS.h" -#include "task.h" -#include "stream_buffer.h" - -#if( configUSE_TASK_NOTIFICATIONS != 1 ) - #error configUSE_TASK_NOTIFICATIONS must be set to 1 to build stream_buffer.c -#endif - -/* Lint e961, e9021 and e750 are suppressed as a MISRA exception justified -because the MPU ports require MPU_WRAPPERS_INCLUDED_FROM_API_FILE to be defined -for the header files above, but not in this file, in order to generate the -correct privileged Vs unprivileged linkage and placement. */ -#undef MPU_WRAPPERS_INCLUDED_FROM_API_FILE /*lint !e961 !e750 !e9021. */ - -/* If the user has not provided application specific Rx notification macros, -or #defined the notification macros away, them provide default implementations -that uses task notifications. */ -/*lint -save -e9026 Function like macros allowed and needed here so they can be overidden. */ -#ifndef sbRECEIVE_COMPLETED - #define sbRECEIVE_COMPLETED( pxStreamBuffer ) \ - vTaskSuspendAll(); \ - { \ - if( ( pxStreamBuffer )->xTaskWaitingToSend != NULL ) \ - { \ - ( void ) xTaskNotify( ( pxStreamBuffer )->xTaskWaitingToSend, \ - ( uint32_t ) 0, \ - eNoAction ); \ - ( pxStreamBuffer )->xTaskWaitingToSend = NULL; \ - } \ - } \ - ( void ) xTaskResumeAll(); -#endif /* sbRECEIVE_COMPLETED */ - -#ifndef sbRECEIVE_COMPLETED_FROM_ISR - #define sbRECEIVE_COMPLETED_FROM_ISR( pxStreamBuffer, \ - pxHigherPriorityTaskWoken ) \ - { \ - UBaseType_t uxSavedInterruptStatus; \ - \ - uxSavedInterruptStatus = ( UBaseType_t ) portSET_INTERRUPT_MASK_FROM_ISR(); \ - { \ - if( ( pxStreamBuffer )->xTaskWaitingToSend != NULL ) \ - { \ - ( void ) xTaskNotifyFromISR( ( pxStreamBuffer )->xTaskWaitingToSend, \ - ( uint32_t ) 0, \ - eNoAction, \ - pxHigherPriorityTaskWoken ); \ - ( pxStreamBuffer )->xTaskWaitingToSend = NULL; \ - } \ - } \ - portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus ); \ - } -#endif /* sbRECEIVE_COMPLETED_FROM_ISR */ - -/* If the user has not provided an application specific Tx notification macro, -or #defined the notification macro away, them provide a default implementation -that uses task notifications. */ -#ifndef sbSEND_COMPLETED - #define sbSEND_COMPLETED( pxStreamBuffer ) \ - vTaskSuspendAll(); \ - { \ - if( ( pxStreamBuffer )->xTaskWaitingToReceive != NULL ) \ - { \ - ( void ) xTaskNotify( ( pxStreamBuffer )->xTaskWaitingToReceive, \ - ( uint32_t ) 0, \ - eNoAction ); \ - ( pxStreamBuffer )->xTaskWaitingToReceive = NULL; \ - } \ - } \ - ( void ) xTaskResumeAll(); -#endif /* sbSEND_COMPLETED */ - -#ifndef sbSEND_COMPLETE_FROM_ISR - #define sbSEND_COMPLETE_FROM_ISR( pxStreamBuffer, pxHigherPriorityTaskWoken ) \ - { \ - UBaseType_t uxSavedInterruptStatus; \ - \ - uxSavedInterruptStatus = ( UBaseType_t ) portSET_INTERRUPT_MASK_FROM_ISR(); \ - { \ - if( ( pxStreamBuffer )->xTaskWaitingToReceive != NULL ) \ - { \ - ( void ) xTaskNotifyFromISR( ( pxStreamBuffer )->xTaskWaitingToReceive, \ - ( uint32_t ) 0, \ - eNoAction, \ - pxHigherPriorityTaskWoken ); \ - ( pxStreamBuffer )->xTaskWaitingToReceive = NULL; \ - } \ - } \ - portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus ); \ - } -#endif /* sbSEND_COMPLETE_FROM_ISR */ -/*lint -restore (9026) */ - -/* The number of bytes used to hold the length of a message in the buffer. */ -#define sbBYTES_TO_STORE_MESSAGE_LENGTH ( sizeof( configMESSAGE_BUFFER_LENGTH_TYPE ) ) - -/* Bits stored in the ucFlags field of the stream buffer. */ -#define sbFLAGS_IS_MESSAGE_BUFFER ( ( uint8_t ) 1 ) /* Set if the stream buffer was created as a message buffer, in which case it holds discrete messages rather than a stream. */ -#define sbFLAGS_IS_STATICALLY_ALLOCATED ( ( uint8_t ) 2 ) /* Set if the stream buffer was created using statically allocated memory. */ - -/*-----------------------------------------------------------*/ - -/* Structure that hold state information on the buffer. */ -typedef struct StreamBufferDef_t /*lint !e9058 Style convention uses tag. */ -{ - volatile size_t xTail; /* Index to the next item to read within the buffer. */ - volatile size_t xHead; /* Index to the next item to write within the buffer. */ - size_t xLength; /* The length of the buffer pointed to by pucBuffer. */ - size_t xTriggerLevelBytes; /* The number of bytes that must be in the stream buffer before a task that is waiting for data is unblocked. */ - volatile TaskHandle_t xTaskWaitingToReceive; /* Holds the handle of a task waiting for data, or NULL if no tasks are waiting. */ - volatile TaskHandle_t xTaskWaitingToSend; /* Holds the handle of a task waiting to send data to a message buffer that is full. */ - uint8_t *pucBuffer; /* Points to the buffer itself - that is - the RAM that stores the data passed through the buffer. */ - uint8_t ucFlags; - - #if ( configUSE_TRACE_FACILITY == 1 ) - UBaseType_t uxStreamBufferNumber; /* Used for tracing purposes. */ - #endif -} StreamBuffer_t; - -/* - * The number of bytes available to be read from the buffer. - */ -static size_t prvBytesInBuffer( const StreamBuffer_t * const pxStreamBuffer ) PRIVILEGED_FUNCTION; - -/* - * Add xCount bytes from pucData into the pxStreamBuffer message buffer. - * Returns the number of bytes written, which will either equal xCount in the - * success case, or 0 if there was not enough space in the buffer (in which case - * no data is written into the buffer). - */ -static size_t prvWriteBytesToBuffer( StreamBuffer_t * const pxStreamBuffer, const uint8_t *pucData, size_t xCount ) PRIVILEGED_FUNCTION; - -/* - * If the stream buffer is being used as a message buffer, then reads an entire - * message out of the buffer. If the stream buffer is being used as a stream - * buffer then read as many bytes as possible from the buffer. - * prvReadBytesFromBuffer() is called to actually extract the bytes from the - * buffer's data storage area. - */ -static size_t prvReadMessageFromBuffer( StreamBuffer_t *pxStreamBuffer, - void *pvRxData, - size_t xBufferLengthBytes, - size_t xBytesAvailable, - size_t xBytesToStoreMessageLength ) PRIVILEGED_FUNCTION; - -/* - * If the stream buffer is being used as a message buffer, then writes an entire - * message to the buffer. If the stream buffer is being used as a stream - * buffer then write as many bytes as possible to the buffer. - * prvWriteBytestoBuffer() is called to actually send the bytes to the buffer's - * data storage area. - */ -static size_t prvWriteMessageToBuffer( StreamBuffer_t * const pxStreamBuffer, - const void * pvTxData, - size_t xDataLengthBytes, - size_t xSpace, - size_t xRequiredSpace ) PRIVILEGED_FUNCTION; - -/* - * Read xMaxCount bytes from the pxStreamBuffer message buffer and write them - * to pucData. - */ -static size_t prvReadBytesFromBuffer( StreamBuffer_t *pxStreamBuffer, - uint8_t *pucData, - size_t xMaxCount, - size_t xBytesAvailable ) PRIVILEGED_FUNCTION; - -/* - * Called by both pxStreamBufferCreate() and pxStreamBufferCreateStatic() to - * initialise the members of the newly created stream buffer structure. - */ -static void prvInitialiseNewStreamBuffer( StreamBuffer_t * const pxStreamBuffer, - uint8_t * const pucBuffer, - size_t xBufferSizeBytes, - size_t xTriggerLevelBytes, - uint8_t ucFlags ) PRIVILEGED_FUNCTION; - -/*-----------------------------------------------------------*/ - -#if( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) - - StreamBufferHandle_t xStreamBufferGenericCreate( size_t xBufferSizeBytes, size_t xTriggerLevelBytes, BaseType_t xIsMessageBuffer ) - { - uint8_t *pucAllocatedMemory; - uint8_t ucFlags; - - /* In case the stream buffer is going to be used as a message buffer - (that is, it will hold discrete messages with a little meta data that - says how big the next message is) check the buffer will be large enough - to hold at least one message. */ - if( xIsMessageBuffer == pdTRUE ) - { - /* Is a message buffer but not statically allocated. */ - ucFlags = sbFLAGS_IS_MESSAGE_BUFFER; - configASSERT( xBufferSizeBytes > sbBYTES_TO_STORE_MESSAGE_LENGTH ); - } - else - { - /* Not a message buffer and not statically allocated. */ - ucFlags = 0; - configASSERT( xBufferSizeBytes > 0 ); - } - configASSERT( xTriggerLevelBytes <= xBufferSizeBytes ); - - /* A trigger level of 0 would cause a waiting task to unblock even when - the buffer was empty. */ - if( xTriggerLevelBytes == ( size_t ) 0 ) - { - xTriggerLevelBytes = ( size_t ) 1; - } - - /* A stream buffer requires a StreamBuffer_t structure and a buffer. - Both are allocated in a single call to pvPortMalloc(). The - StreamBuffer_t structure is placed at the start of the allocated memory - and the buffer follows immediately after. The requested size is - incremented so the free space is returned as the user would expect - - this is a quirk of the implementation that means otherwise the free - space would be reported as one byte smaller than would be logically - expected. */ - xBufferSizeBytes++; - pucAllocatedMemory = ( uint8_t * ) pvPortMalloc( xBufferSizeBytes + sizeof( StreamBuffer_t ) ); /*lint !e9079 malloc() only returns void*. */ - - if( pucAllocatedMemory != NULL ) - { - prvInitialiseNewStreamBuffer( ( StreamBuffer_t * ) pucAllocatedMemory, /* Structure at the start of the allocated memory. */ /*lint !e9087 Safe cast as allocated memory is aligned. */ /*lint !e826 Area is not too small and alignment is guaranteed provided malloc() behaves as expected and returns aligned buffer. */ - pucAllocatedMemory + sizeof( StreamBuffer_t ), /* Storage area follows. */ /*lint !e9016 Indexing past structure valid for uint8_t pointer, also storage area has no alignment requirement. */ - xBufferSizeBytes, - xTriggerLevelBytes, - ucFlags ); - - traceSTREAM_BUFFER_CREATE( ( ( StreamBuffer_t * ) pucAllocatedMemory ), xIsMessageBuffer ); - } - else - { - traceSTREAM_BUFFER_CREATE_FAILED( xIsMessageBuffer ); - } - - return ( StreamBufferHandle_t ) pucAllocatedMemory; /*lint !e9087 !e826 Safe cast as allocated memory is aligned. */ - } - -#endif /* configSUPPORT_DYNAMIC_ALLOCATION */ -/*-----------------------------------------------------------*/ - -#if( configSUPPORT_STATIC_ALLOCATION == 1 ) - - StreamBufferHandle_t xStreamBufferGenericCreateStatic( size_t xBufferSizeBytes, - size_t xTriggerLevelBytes, - BaseType_t xIsMessageBuffer, - uint8_t * const pucStreamBufferStorageArea, - StaticStreamBuffer_t * const pxStaticStreamBuffer ) - { - StreamBuffer_t * const pxStreamBuffer = ( StreamBuffer_t * ) pxStaticStreamBuffer; /*lint !e740 !e9087 Safe cast as StaticStreamBuffer_t is opaque Streambuffer_t. */ - StreamBufferHandle_t xReturn; - uint8_t ucFlags; - - configASSERT( pucStreamBufferStorageArea ); - configASSERT( pxStaticStreamBuffer ); - configASSERT( xTriggerLevelBytes <= xBufferSizeBytes ); - - /* A trigger level of 0 would cause a waiting task to unblock even when - the buffer was empty. */ - if( xTriggerLevelBytes == ( size_t ) 0 ) - { - xTriggerLevelBytes = ( size_t ) 1; - } - - if( xIsMessageBuffer != pdFALSE ) - { - /* Statically allocated message buffer. */ - ucFlags = sbFLAGS_IS_MESSAGE_BUFFER | sbFLAGS_IS_STATICALLY_ALLOCATED; - } - else - { - /* Statically allocated stream buffer. */ - ucFlags = sbFLAGS_IS_STATICALLY_ALLOCATED; - } - - /* In case the stream buffer is going to be used as a message buffer - (that is, it will hold discrete messages with a little meta data that - says how big the next message is) check the buffer will be large enough - to hold at least one message. */ - configASSERT( xBufferSizeBytes > sbBYTES_TO_STORE_MESSAGE_LENGTH ); - - #if( configASSERT_DEFINED == 1 ) - { - /* Sanity check that the size of the structure used to declare a - variable of type StaticStreamBuffer_t equals the size of the real - message buffer structure. */ - volatile size_t xSize = sizeof( StaticStreamBuffer_t ); - configASSERT( xSize == sizeof( StreamBuffer_t ) ); - } /*lint !e529 xSize is referenced is configASSERT() is defined. */ - #endif /* configASSERT_DEFINED */ - - if( ( pucStreamBufferStorageArea != NULL ) && ( pxStaticStreamBuffer != NULL ) ) - { - prvInitialiseNewStreamBuffer( pxStreamBuffer, - pucStreamBufferStorageArea, - xBufferSizeBytes, - xTriggerLevelBytes, - ucFlags ); - - /* Remember this was statically allocated in case it is ever deleted - again. */ - pxStreamBuffer->ucFlags |= sbFLAGS_IS_STATICALLY_ALLOCATED; - - traceSTREAM_BUFFER_CREATE( pxStreamBuffer, xIsMessageBuffer ); - - xReturn = ( StreamBufferHandle_t ) pxStaticStreamBuffer; /*lint !e9087 Data hiding requires cast to opaque type. */ - } - else - { - xReturn = NULL; - traceSTREAM_BUFFER_CREATE_STATIC_FAILED( xReturn, xIsMessageBuffer ); - } - - return xReturn; - } - -#endif /* ( configSUPPORT_STATIC_ALLOCATION == 1 ) */ -/*-----------------------------------------------------------*/ - -void vStreamBufferDelete( StreamBufferHandle_t xStreamBuffer ) -{ -StreamBuffer_t * pxStreamBuffer = xStreamBuffer; - - configASSERT( pxStreamBuffer ); - - traceSTREAM_BUFFER_DELETE( xStreamBuffer ); - - if( ( pxStreamBuffer->ucFlags & sbFLAGS_IS_STATICALLY_ALLOCATED ) == ( uint8_t ) pdFALSE ) - { - #if( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) - { - /* Both the structure and the buffer were allocated using a single call - to pvPortMalloc(), hence only one call to vPortFree() is required. */ - vPortFree( ( void * ) pxStreamBuffer ); /*lint !e9087 Standard free() semantics require void *, plus pxStreamBuffer was allocated by pvPortMalloc(). */ - } - #else - { - /* Should not be possible to get here, ucFlags must be corrupt. - Force an assert. */ - configASSERT( xStreamBuffer == ( StreamBufferHandle_t ) ~0 ); - } - #endif - } - else - { - /* The structure and buffer were not allocated dynamically and cannot be - freed - just scrub the structure so future use will assert. */ - ( void ) memset( pxStreamBuffer, 0x00, sizeof( StreamBuffer_t ) ); - } -} -/*-----------------------------------------------------------*/ - -BaseType_t xStreamBufferReset( StreamBufferHandle_t xStreamBuffer ) -{ -StreamBuffer_t * const pxStreamBuffer = xStreamBuffer; -BaseType_t xReturn = pdFAIL; - -#if( configUSE_TRACE_FACILITY == 1 ) - UBaseType_t uxStreamBufferNumber; -#endif - - configASSERT( pxStreamBuffer ); - - #if( configUSE_TRACE_FACILITY == 1 ) - { - /* Store the stream buffer number so it can be restored after the - reset. */ - uxStreamBufferNumber = pxStreamBuffer->uxStreamBufferNumber; - } - #endif - - /* Can only reset a message buffer if there are no tasks blocked on it. */ - taskENTER_CRITICAL(); - { - if( pxStreamBuffer->xTaskWaitingToReceive == NULL ) - { - if( pxStreamBuffer->xTaskWaitingToSend == NULL ) - { - prvInitialiseNewStreamBuffer( pxStreamBuffer, - pxStreamBuffer->pucBuffer, - pxStreamBuffer->xLength, - pxStreamBuffer->xTriggerLevelBytes, - pxStreamBuffer->ucFlags ); - xReturn = pdPASS; - - #if( configUSE_TRACE_FACILITY == 1 ) - { - pxStreamBuffer->uxStreamBufferNumber = uxStreamBufferNumber; - } - #endif - - traceSTREAM_BUFFER_RESET( xStreamBuffer ); - } - } - } - taskEXIT_CRITICAL(); - - return xReturn; -} -/*-----------------------------------------------------------*/ - -BaseType_t xStreamBufferSetTriggerLevel( StreamBufferHandle_t xStreamBuffer, size_t xTriggerLevel ) -{ -StreamBuffer_t * const pxStreamBuffer = xStreamBuffer; -BaseType_t xReturn; - - configASSERT( pxStreamBuffer ); - - /* It is not valid for the trigger level to be 0. */ - if( xTriggerLevel == ( size_t ) 0 ) - { - xTriggerLevel = ( size_t ) 1; - } - - /* The trigger level is the number of bytes that must be in the stream - buffer before a task that is waiting for data is unblocked. */ - if( xTriggerLevel <= pxStreamBuffer->xLength ) - { - pxStreamBuffer->xTriggerLevelBytes = xTriggerLevel; - xReturn = pdPASS; - } - else - { - xReturn = pdFALSE; - } - - return xReturn; -} -/*-----------------------------------------------------------*/ - -size_t xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) -{ -const StreamBuffer_t * const pxStreamBuffer = xStreamBuffer; -size_t xSpace; - - configASSERT( pxStreamBuffer ); - - xSpace = pxStreamBuffer->xLength + pxStreamBuffer->xTail; - xSpace -= pxStreamBuffer->xHead; - xSpace -= ( size_t ) 1; - - if( xSpace >= pxStreamBuffer->xLength ) - { - xSpace -= pxStreamBuffer->xLength; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - return xSpace; -} -/*-----------------------------------------------------------*/ - -size_t xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) -{ -const StreamBuffer_t * const pxStreamBuffer = xStreamBuffer; -size_t xReturn; - - configASSERT( pxStreamBuffer ); - - xReturn = prvBytesInBuffer( pxStreamBuffer ); - return xReturn; -} -/*-----------------------------------------------------------*/ - -size_t xStreamBufferSend( StreamBufferHandle_t xStreamBuffer, - const void *pvTxData, - size_t xDataLengthBytes, - TickType_t xTicksToWait ) -{ -StreamBuffer_t * const pxStreamBuffer = xStreamBuffer; -size_t xReturn, xSpace = 0; -size_t xRequiredSpace = xDataLengthBytes; -TimeOut_t xTimeOut; - - configASSERT( pvTxData ); - configASSERT( pxStreamBuffer ); - - /* This send function is used to write to both message buffers and stream - buffers. If this is a message buffer then the space needed must be - increased by the amount of bytes needed to store the length of the - message. */ - if( ( pxStreamBuffer->ucFlags & sbFLAGS_IS_MESSAGE_BUFFER ) != ( uint8_t ) 0 ) - { - xRequiredSpace += sbBYTES_TO_STORE_MESSAGE_LENGTH; - - /* Overflow? */ - configASSERT( xRequiredSpace > xDataLengthBytes ); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - if( xTicksToWait != ( TickType_t ) 0 ) - { - vTaskSetTimeOutState( &xTimeOut ); - - do - { - /* Wait until the required number of bytes are free in the message - buffer. */ - taskENTER_CRITICAL(); - { - xSpace = xStreamBufferSpacesAvailable( pxStreamBuffer ); - - if( xSpace < xRequiredSpace ) - { - /* Clear notification state as going to wait for space. */ - ( void ) xTaskNotifyStateClear( NULL ); - - /* Should only be one writer. */ - configASSERT( pxStreamBuffer->xTaskWaitingToSend == NULL ); - pxStreamBuffer->xTaskWaitingToSend = xTaskGetCurrentTaskHandle(); - } - else - { - taskEXIT_CRITICAL(); - break; - } - } - taskEXIT_CRITICAL(); - - traceBLOCKING_ON_STREAM_BUFFER_SEND( xStreamBuffer ); - ( void ) xTaskNotifyWait( ( uint32_t ) 0, ( uint32_t ) 0, NULL, xTicksToWait ); - pxStreamBuffer->xTaskWaitingToSend = NULL; - - } while( xTaskCheckForTimeOut( &xTimeOut, &xTicksToWait ) == pdFALSE ); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - if( xSpace == ( size_t ) 0 ) - { - xSpace = xStreamBufferSpacesAvailable( pxStreamBuffer ); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - xReturn = prvWriteMessageToBuffer( pxStreamBuffer, pvTxData, xDataLengthBytes, xSpace, xRequiredSpace ); - - if( xReturn > ( size_t ) 0 ) - { - traceSTREAM_BUFFER_SEND( xStreamBuffer, xReturn ); - - /* Was a task waiting for the data? */ - if( prvBytesInBuffer( pxStreamBuffer ) >= pxStreamBuffer->xTriggerLevelBytes ) - { - sbSEND_COMPLETED( pxStreamBuffer ); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - traceSTREAM_BUFFER_SEND_FAILED( xStreamBuffer ); - } - - return xReturn; -} -/*-----------------------------------------------------------*/ - -size_t xStreamBufferSendFromISR( StreamBufferHandle_t xStreamBuffer, - const void *pvTxData, - size_t xDataLengthBytes, - BaseType_t * const pxHigherPriorityTaskWoken ) -{ -StreamBuffer_t * const pxStreamBuffer = xStreamBuffer; -size_t xReturn, xSpace; -size_t xRequiredSpace = xDataLengthBytes; - - configASSERT( pvTxData ); - configASSERT( pxStreamBuffer ); - - /* This send function is used to write to both message buffers and stream - buffers. If this is a message buffer then the space needed must be - increased by the amount of bytes needed to store the length of the - message. */ - if( ( pxStreamBuffer->ucFlags & sbFLAGS_IS_MESSAGE_BUFFER ) != ( uint8_t ) 0 ) - { - xRequiredSpace += sbBYTES_TO_STORE_MESSAGE_LENGTH; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - xSpace = xStreamBufferSpacesAvailable( pxStreamBuffer ); - xReturn = prvWriteMessageToBuffer( pxStreamBuffer, pvTxData, xDataLengthBytes, xSpace, xRequiredSpace ); - - if( xReturn > ( size_t ) 0 ) - { - /* Was a task waiting for the data? */ - if( prvBytesInBuffer( pxStreamBuffer ) >= pxStreamBuffer->xTriggerLevelBytes ) - { - sbSEND_COMPLETE_FROM_ISR( pxStreamBuffer, pxHigherPriorityTaskWoken ); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - traceSTREAM_BUFFER_SEND_FROM_ISR( xStreamBuffer, xReturn ); - - return xReturn; -} -/*-----------------------------------------------------------*/ - -static size_t prvWriteMessageToBuffer( StreamBuffer_t * const pxStreamBuffer, - const void * pvTxData, - size_t xDataLengthBytes, - size_t xSpace, - size_t xRequiredSpace ) -{ - BaseType_t xShouldWrite; - size_t xReturn; - - if( xSpace == ( size_t ) 0 ) - { - /* Doesn't matter if this is a stream buffer or a message buffer, there - is no space to write. */ - xShouldWrite = pdFALSE; - } - else if( ( pxStreamBuffer->ucFlags & sbFLAGS_IS_MESSAGE_BUFFER ) == ( uint8_t ) 0 ) - { - /* This is a stream buffer, as opposed to a message buffer, so writing a - stream of bytes rather than discrete messages. Write as many bytes as - possible. */ - xShouldWrite = pdTRUE; - xDataLengthBytes = configMIN( xDataLengthBytes, xSpace ); - } - else if( xSpace >= xRequiredSpace ) - { - /* This is a message buffer, as opposed to a stream buffer, and there - is enough space to write both the message length and the message itself - into the buffer. Start by writing the length of the data, the data - itself will be written later in this function. */ - xShouldWrite = pdTRUE; - ( void ) prvWriteBytesToBuffer( pxStreamBuffer, ( const uint8_t * ) &( xDataLengthBytes ), sbBYTES_TO_STORE_MESSAGE_LENGTH ); - } - else - { - /* There is space available, but not enough space. */ - xShouldWrite = pdFALSE; - } - - if( xShouldWrite != pdFALSE ) - { - /* Writes the data itself. */ - xReturn = prvWriteBytesToBuffer( pxStreamBuffer, ( const uint8_t * ) pvTxData, xDataLengthBytes ); /*lint !e9079 Storage buffer is implemented as uint8_t for ease of sizing, alighment and access. */ - } - else - { - xReturn = 0; - } - - return xReturn; -} -/*-----------------------------------------------------------*/ - -size_t xStreamBufferReceive( StreamBufferHandle_t xStreamBuffer, - void *pvRxData, - size_t xBufferLengthBytes, - TickType_t xTicksToWait ) -{ -StreamBuffer_t * const pxStreamBuffer = xStreamBuffer; -size_t xReceivedLength = 0, xBytesAvailable, xBytesToStoreMessageLength; - - configASSERT( pvRxData ); - configASSERT( pxStreamBuffer ); - - /* This receive function is used by both message buffers, which store - discrete messages, and stream buffers, which store a continuous stream of - bytes. Discrete messages include an additional - sbBYTES_TO_STORE_MESSAGE_LENGTH bytes that hold the length of the - message. */ - if( ( pxStreamBuffer->ucFlags & sbFLAGS_IS_MESSAGE_BUFFER ) != ( uint8_t ) 0 ) - { - xBytesToStoreMessageLength = sbBYTES_TO_STORE_MESSAGE_LENGTH; - } - else - { - xBytesToStoreMessageLength = 0; - } - - if( xTicksToWait != ( TickType_t ) 0 ) - { - /* Checking if there is data and clearing the notification state must be - performed atomically. */ - taskENTER_CRITICAL(); - { - xBytesAvailable = prvBytesInBuffer( pxStreamBuffer ); - - /* If this function was invoked by a message buffer read then - xBytesToStoreMessageLength holds the number of bytes used to hold - the length of the next discrete message. If this function was - invoked by a stream buffer read then xBytesToStoreMessageLength will - be 0. */ - if( xBytesAvailable <= xBytesToStoreMessageLength ) - { - /* Clear notification state as going to wait for data. */ - ( void ) xTaskNotifyStateClear( NULL ); - - /* Should only be one reader. */ - configASSERT( pxStreamBuffer->xTaskWaitingToReceive == NULL ); - pxStreamBuffer->xTaskWaitingToReceive = xTaskGetCurrentTaskHandle(); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - taskEXIT_CRITICAL(); - - if( xBytesAvailable <= xBytesToStoreMessageLength ) - { - /* Wait for data to be available. */ - traceBLOCKING_ON_STREAM_BUFFER_RECEIVE( xStreamBuffer ); - ( void ) xTaskNotifyWait( ( uint32_t ) 0, ( uint32_t ) 0, NULL, xTicksToWait ); - pxStreamBuffer->xTaskWaitingToReceive = NULL; - - /* Recheck the data available after blocking. */ - xBytesAvailable = prvBytesInBuffer( pxStreamBuffer ); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - xBytesAvailable = prvBytesInBuffer( pxStreamBuffer ); - } - - /* Whether receiving a discrete message (where xBytesToStoreMessageLength - holds the number of bytes used to store the message length) or a stream of - bytes (where xBytesToStoreMessageLength is zero), the number of bytes - available must be greater than xBytesToStoreMessageLength to be able to - read bytes from the buffer. */ - if( xBytesAvailable > xBytesToStoreMessageLength ) - { - xReceivedLength = prvReadMessageFromBuffer( pxStreamBuffer, pvRxData, xBufferLengthBytes, xBytesAvailable, xBytesToStoreMessageLength ); - - /* Was a task waiting for space in the buffer? */ - if( xReceivedLength != ( size_t ) 0 ) - { - traceSTREAM_BUFFER_RECEIVE( xStreamBuffer, xReceivedLength ); - sbRECEIVE_COMPLETED( pxStreamBuffer ); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - traceSTREAM_BUFFER_RECEIVE_FAILED( xStreamBuffer ); - mtCOVERAGE_TEST_MARKER(); - } - - return xReceivedLength; -} -/*-----------------------------------------------------------*/ - -size_t xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) -{ -StreamBuffer_t * const pxStreamBuffer = xStreamBuffer; -size_t xReturn, xBytesAvailable, xOriginalTail; -configMESSAGE_BUFFER_LENGTH_TYPE xTempReturn; - - configASSERT( pxStreamBuffer ); - - /* Ensure the stream buffer is being used as a message buffer. */ - if( ( pxStreamBuffer->ucFlags & sbFLAGS_IS_MESSAGE_BUFFER ) != ( uint8_t ) 0 ) - { - xBytesAvailable = prvBytesInBuffer( pxStreamBuffer ); - if( xBytesAvailable > sbBYTES_TO_STORE_MESSAGE_LENGTH ) - { - /* The number of bytes available is greater than the number of bytes - required to hold the length of the next message, so another message - is available. Return its length without removing the length bytes - from the buffer. A copy of the tail is stored so the buffer can be - returned to its prior state as the message is not actually being - removed from the buffer. */ - xOriginalTail = pxStreamBuffer->xTail; - ( void ) prvReadBytesFromBuffer( pxStreamBuffer, ( uint8_t * ) &xTempReturn, sbBYTES_TO_STORE_MESSAGE_LENGTH, xBytesAvailable ); - xReturn = ( size_t ) xTempReturn; - pxStreamBuffer->xTail = xOriginalTail; - } - else - { - /* The minimum amount of bytes in a message buffer is - ( sbBYTES_TO_STORE_MESSAGE_LENGTH + 1 ), so if xBytesAvailable is - less than sbBYTES_TO_STORE_MESSAGE_LENGTH the only other valid - value is 0. */ - configASSERT( xBytesAvailable == 0 ); - xReturn = 0; - } - } - else - { - xReturn = 0; - } - - return xReturn; -} -/*-----------------------------------------------------------*/ - -size_t xStreamBufferReceiveFromISR( StreamBufferHandle_t xStreamBuffer, - void *pvRxData, - size_t xBufferLengthBytes, - BaseType_t * const pxHigherPriorityTaskWoken ) -{ -StreamBuffer_t * const pxStreamBuffer = xStreamBuffer; -size_t xReceivedLength = 0, xBytesAvailable, xBytesToStoreMessageLength; - - configASSERT( pvRxData ); - configASSERT( pxStreamBuffer ); - - /* This receive function is used by both message buffers, which store - discrete messages, and stream buffers, which store a continuous stream of - bytes. Discrete messages include an additional - sbBYTES_TO_STORE_MESSAGE_LENGTH bytes that hold the length of the - message. */ - if( ( pxStreamBuffer->ucFlags & sbFLAGS_IS_MESSAGE_BUFFER ) != ( uint8_t ) 0 ) - { - xBytesToStoreMessageLength = sbBYTES_TO_STORE_MESSAGE_LENGTH; - } - else - { - xBytesToStoreMessageLength = 0; - } - - xBytesAvailable = prvBytesInBuffer( pxStreamBuffer ); - - /* Whether receiving a discrete message (where xBytesToStoreMessageLength - holds the number of bytes used to store the message length) or a stream of - bytes (where xBytesToStoreMessageLength is zero), the number of bytes - available must be greater than xBytesToStoreMessageLength to be able to - read bytes from the buffer. */ - if( xBytesAvailable > xBytesToStoreMessageLength ) - { - xReceivedLength = prvReadMessageFromBuffer( pxStreamBuffer, pvRxData, xBufferLengthBytes, xBytesAvailable, xBytesToStoreMessageLength ); - - /* Was a task waiting for space in the buffer? */ - if( xReceivedLength != ( size_t ) 0 ) - { - sbRECEIVE_COMPLETED_FROM_ISR( pxStreamBuffer, pxHigherPriorityTaskWoken ); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - traceSTREAM_BUFFER_RECEIVE_FROM_ISR( xStreamBuffer, xReceivedLength ); - - return xReceivedLength; -} -/*-----------------------------------------------------------*/ - -static size_t prvReadMessageFromBuffer( StreamBuffer_t *pxStreamBuffer, - void *pvRxData, - size_t xBufferLengthBytes, - size_t xBytesAvailable, - size_t xBytesToStoreMessageLength ) -{ -size_t xOriginalTail, xReceivedLength, xNextMessageLength; -configMESSAGE_BUFFER_LENGTH_TYPE xTempNextMessageLength; - - if( xBytesToStoreMessageLength != ( size_t ) 0 ) - { - /* A discrete message is being received. First receive the length - of the message. A copy of the tail is stored so the buffer can be - returned to its prior state if the length of the message is too - large for the provided buffer. */ - xOriginalTail = pxStreamBuffer->xTail; - ( void ) prvReadBytesFromBuffer( pxStreamBuffer, ( uint8_t * ) &xTempNextMessageLength, xBytesToStoreMessageLength, xBytesAvailable ); - xNextMessageLength = ( size_t ) xTempNextMessageLength; - - /* Reduce the number of bytes available by the number of bytes just - read out. */ - xBytesAvailable -= xBytesToStoreMessageLength; - - /* Check there is enough space in the buffer provided by the - user. */ - if( xNextMessageLength > xBufferLengthBytes ) - { - /* The user has provided insufficient space to read the message - so return the buffer to its previous state (so the length of - the message is in the buffer again). */ - pxStreamBuffer->xTail = xOriginalTail; - xNextMessageLength = 0; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - /* A stream of bytes is being received (as opposed to a discrete - message), so read as many bytes as possible. */ - xNextMessageLength = xBufferLengthBytes; - } - - /* Read the actual data. */ - xReceivedLength = prvReadBytesFromBuffer( pxStreamBuffer, ( uint8_t * ) pvRxData, xNextMessageLength, xBytesAvailable ); /*lint !e9079 Data storage area is implemented as uint8_t array for ease of sizing, indexing and alignment. */ - - return xReceivedLength; -} -/*-----------------------------------------------------------*/ - -BaseType_t xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) -{ -const StreamBuffer_t * const pxStreamBuffer = xStreamBuffer; -BaseType_t xReturn; -size_t xTail; - - configASSERT( pxStreamBuffer ); - - /* True if no bytes are available. */ - xTail = pxStreamBuffer->xTail; - if( pxStreamBuffer->xHead == xTail ) - { - xReturn = pdTRUE; - } - else - { - xReturn = pdFALSE; - } - - return xReturn; -} -/*-----------------------------------------------------------*/ - -BaseType_t xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) -{ -BaseType_t xReturn; -size_t xBytesToStoreMessageLength; -const StreamBuffer_t * const pxStreamBuffer = xStreamBuffer; - - configASSERT( pxStreamBuffer ); - - /* This generic version of the receive function is used by both message - buffers, which store discrete messages, and stream buffers, which store a - continuous stream of bytes. Discrete messages include an additional - sbBYTES_TO_STORE_MESSAGE_LENGTH bytes that hold the length of the message. */ - if( ( pxStreamBuffer->ucFlags & sbFLAGS_IS_MESSAGE_BUFFER ) != ( uint8_t ) 0 ) - { - xBytesToStoreMessageLength = sbBYTES_TO_STORE_MESSAGE_LENGTH; - } - else - { - xBytesToStoreMessageLength = 0; - } - - /* True if the available space equals zero. */ - if( xStreamBufferSpacesAvailable( xStreamBuffer ) <= xBytesToStoreMessageLength ) - { - xReturn = pdTRUE; - } - else - { - xReturn = pdFALSE; - } - - return xReturn; -} -/*-----------------------------------------------------------*/ - -BaseType_t xStreamBufferSendCompletedFromISR( StreamBufferHandle_t xStreamBuffer, BaseType_t *pxHigherPriorityTaskWoken ) -{ -StreamBuffer_t * const pxStreamBuffer = xStreamBuffer; -BaseType_t xReturn; -UBaseType_t uxSavedInterruptStatus; - - configASSERT( pxStreamBuffer ); - - uxSavedInterruptStatus = ( UBaseType_t ) portSET_INTERRUPT_MASK_FROM_ISR(); - { - if( ( pxStreamBuffer )->xTaskWaitingToReceive != NULL ) - { - ( void ) xTaskNotifyFromISR( ( pxStreamBuffer )->xTaskWaitingToReceive, - ( uint32_t ) 0, - eNoAction, - pxHigherPriorityTaskWoken ); - ( pxStreamBuffer )->xTaskWaitingToReceive = NULL; - xReturn = pdTRUE; - } - else - { - xReturn = pdFALSE; - } - } - portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus ); - - return xReturn; -} -/*-----------------------------------------------------------*/ - -BaseType_t xStreamBufferReceiveCompletedFromISR( StreamBufferHandle_t xStreamBuffer, BaseType_t *pxHigherPriorityTaskWoken ) -{ -StreamBuffer_t * const pxStreamBuffer = xStreamBuffer; -BaseType_t xReturn; -UBaseType_t uxSavedInterruptStatus; - - configASSERT( pxStreamBuffer ); - - uxSavedInterruptStatus = ( UBaseType_t ) portSET_INTERRUPT_MASK_FROM_ISR(); - { - if( ( pxStreamBuffer )->xTaskWaitingToSend != NULL ) - { - ( void ) xTaskNotifyFromISR( ( pxStreamBuffer )->xTaskWaitingToSend, - ( uint32_t ) 0, - eNoAction, - pxHigherPriorityTaskWoken ); - ( pxStreamBuffer )->xTaskWaitingToSend = NULL; - xReturn = pdTRUE; - } - else - { - xReturn = pdFALSE; - } - } - portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus ); - - return xReturn; -} -/*-----------------------------------------------------------*/ - -static size_t prvWriteBytesToBuffer( StreamBuffer_t * const pxStreamBuffer, const uint8_t *pucData, size_t xCount ) -{ -size_t xNextHead, xFirstLength; - - configASSERT( xCount > ( size_t ) 0 ); - - xNextHead = pxStreamBuffer->xHead; - - /* Calculate the number of bytes that can be added in the first write - - which may be less than the total number of bytes that need to be added if - the buffer will wrap back to the beginning. */ - xFirstLength = configMIN( pxStreamBuffer->xLength - xNextHead, xCount ); - - /* Write as many bytes as can be written in the first write. */ - configASSERT( ( xNextHead + xFirstLength ) <= pxStreamBuffer->xLength ); - ( void ) memcpy( ( void* ) ( &( pxStreamBuffer->pucBuffer[ xNextHead ] ) ), ( const void * ) pucData, xFirstLength ); /*lint !e9087 memcpy() requires void *. */ - - /* If the number of bytes written was less than the number that could be - written in the first write... */ - if( xCount > xFirstLength ) - { - /* ...then write the remaining bytes to the start of the buffer. */ - configASSERT( ( xCount - xFirstLength ) <= pxStreamBuffer->xLength ); - ( void ) memcpy( ( void * ) pxStreamBuffer->pucBuffer, ( const void * ) &( pucData[ xFirstLength ] ), xCount - xFirstLength ); /*lint !e9087 memcpy() requires void *. */ - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - xNextHead += xCount; - if( xNextHead >= pxStreamBuffer->xLength ) - { - xNextHead -= pxStreamBuffer->xLength; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - pxStreamBuffer->xHead = xNextHead; - - return xCount; -} -/*-----------------------------------------------------------*/ - -static size_t prvReadBytesFromBuffer( StreamBuffer_t *pxStreamBuffer, uint8_t *pucData, size_t xMaxCount, size_t xBytesAvailable ) -{ -size_t xCount, xFirstLength, xNextTail; - - /* Use the minimum of the wanted bytes and the available bytes. */ - xCount = configMIN( xBytesAvailable, xMaxCount ); - - if( xCount > ( size_t ) 0 ) - { - xNextTail = pxStreamBuffer->xTail; - - /* Calculate the number of bytes that can be read - which may be - less than the number wanted if the data wraps around to the start of - the buffer. */ - xFirstLength = configMIN( pxStreamBuffer->xLength - xNextTail, xCount ); - - /* Obtain the number of bytes it is possible to obtain in the first - read. Asserts check bounds of read and write. */ - configASSERT( xFirstLength <= xMaxCount ); - configASSERT( ( xNextTail + xFirstLength ) <= pxStreamBuffer->xLength ); - ( void ) memcpy( ( void * ) pucData, ( const void * ) &( pxStreamBuffer->pucBuffer[ xNextTail ] ), xFirstLength ); /*lint !e9087 memcpy() requires void *. */ - - /* If the total number of wanted bytes is greater than the number - that could be read in the first read... */ - if( xCount > xFirstLength ) - { - /*...then read the remaining bytes from the start of the buffer. */ - configASSERT( xCount <= xMaxCount ); - ( void ) memcpy( ( void * ) &( pucData[ xFirstLength ] ), ( void * ) ( pxStreamBuffer->pucBuffer ), xCount - xFirstLength ); /*lint !e9087 memcpy() requires void *. */ - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - /* Move the tail pointer to effectively remove the data read from - the buffer. */ - xNextTail += xCount; - - if( xNextTail >= pxStreamBuffer->xLength ) - { - xNextTail -= pxStreamBuffer->xLength; - } - - pxStreamBuffer->xTail = xNextTail; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - return xCount; -} -/*-----------------------------------------------------------*/ - -static size_t prvBytesInBuffer( const StreamBuffer_t * const pxStreamBuffer ) -{ -/* Returns the distance between xTail and xHead. */ -size_t xCount; - - xCount = pxStreamBuffer->xLength + pxStreamBuffer->xHead; - xCount -= pxStreamBuffer->xTail; - if ( xCount >= pxStreamBuffer->xLength ) - { - xCount -= pxStreamBuffer->xLength; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - return xCount; -} -/*-----------------------------------------------------------*/ - -static void prvInitialiseNewStreamBuffer( StreamBuffer_t * const pxStreamBuffer, - uint8_t * const pucBuffer, - size_t xBufferSizeBytes, - size_t xTriggerLevelBytes, - uint8_t ucFlags ) -{ - /* Assert here is deliberately writing to the entire buffer to ensure it can - be written to without generating exceptions, and is setting the buffer to a - known value to assist in development/debugging. */ - #if( configASSERT_DEFINED == 1 ) - { - /* The value written just has to be identifiable when looking at the - memory. Don't use 0xA5 as that is the stack fill value and could - result in confusion as to what is actually being observed. */ - const BaseType_t xWriteValue = 0x55; - configASSERT( memset( pucBuffer, ( int ) xWriteValue, xBufferSizeBytes ) == pucBuffer ); - } /*lint !e529 !e438 xWriteValue is only used if configASSERT() is defined. */ - #endif - - ( void ) memset( ( void * ) pxStreamBuffer, 0x00, sizeof( StreamBuffer_t ) ); /*lint !e9087 memset() requires void *. */ - pxStreamBuffer->pucBuffer = pucBuffer; - pxStreamBuffer->xLength = xBufferSizeBytes; - pxStreamBuffer->xTriggerLevelBytes = xTriggerLevelBytes; - pxStreamBuffer->ucFlags = ucFlags; -} - -#if ( configUSE_TRACE_FACILITY == 1 ) - - UBaseType_t uxStreamBufferGetStreamBufferNumber( StreamBufferHandle_t xStreamBuffer ) - { - return xStreamBuffer->uxStreamBufferNumber; - } - -#endif /* configUSE_TRACE_FACILITY */ -/*-----------------------------------------------------------*/ - -#if ( configUSE_TRACE_FACILITY == 1 ) - - void vStreamBufferSetStreamBufferNumber( StreamBufferHandle_t xStreamBuffer, UBaseType_t uxStreamBufferNumber ) - { - xStreamBuffer->uxStreamBufferNumber = uxStreamBufferNumber; - } - -#endif /* configUSE_TRACE_FACILITY */ -/*-----------------------------------------------------------*/ - -#if ( configUSE_TRACE_FACILITY == 1 ) - - uint8_t ucStreamBufferGetStreamBufferType( StreamBufferHandle_t xStreamBuffer ) - { - return ( xStreamBuffer->ucFlags & sbFLAGS_IS_MESSAGE_BUFFER ); - } - -#endif /* configUSE_TRACE_FACILITY */ -/*-----------------------------------------------------------*/ diff --git a/rtos/freertos/abstraction_layer_freertos/scr/system.c b/rtos/freertos/abstraction_layer_freertos/scr/system.c deleted file mode 100644 index 89267e79..00000000 --- a/rtos/freertos/abstraction_layer_freertos/scr/system.c +++ /dev/null @@ -1,170 +0,0 @@ -/* - * Copyright 2020 ETH Zurich - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * SPDX-License-Identifier: Apache-2.0 - * Author: Robert Balas (balasr@iis.ee.ethz.ch) - */ - -#include -#include - -#include "system.h" - -#include -#include "FreeRTOSConfig.h" - -#include "cluster/cl_to_fc_delegate.h" -#include "fll.h" -#include "freq.h" -#include "fc_event.h" -#include "properties.h" -#include "irq.h" -#include "soc_eu.h" -#include "udma_ctrl.h" -#include "udma_uart.h" -#include "uart_periph.h" - -/* test some assumptions we make about compiler settings */ -static_assert(sizeof(uintptr_t) == 4, - "uintptr_t is not 4 bytes. Make sure you are using -mabi=ilp32*"); - -/* Allocate heap to special section. Note that we have no references in the - * whole program to this variable (since its just here to allocate space in the - * section for our heap), so when using LTO it will be removed. We force it to - * stay with the "used" attribute - */ -__attribute__((section(".heap"), used)) uint8_t ucHeap[configTOTAL_HEAP_SIZE]; - -/* Inform linker script about .heap section size. Note: GNU ld seems to - * internally represent integers with the bfd_vma type, that is a type that can - * contain memory addresses (typdefd to some int type depending on the - * architecture). uint32_t seems to me the most fitting candidate for rv32. - */ -uint32_t __heap_size = configTOTAL_HEAP_SIZE; - -volatile uint32_t system_core_clock = DEFAULT_SYSTEM_CLOCK; - -/* FreeRTOS task handling */ -BaseType_t xTaskIncrementTick(void); -void vTaskSwitchContext(void); - -/* interrupt handling */ -void cl_notify_fc_event_handler(void); -void timer_irq_handler(void); -void undefined_handler(void); -void (*isr_table[32])(void); - -/** - * Board init code. Always call this before anything else. - */ -void system_init(void) -{ - /* init flls */ - for (int i = 0; i < ARCHI_NB_FLL; i++) { - pi_fll_init(i, 0); - } - - /* make sure irq (itc) is a good state */ - pulp_irq_init(); - - /* Hook up isr table. This table is temporary until we figure out how to - * do proper vectored interrupts. - */ -#ifdef CONFIG_CLUSTER - isr_table[0x2] = cl_notify_fc_event_handler; -#endif - isr_table[0xa] = timer_irq_handler; - isr_table[0x1a] = fc_soc_event_handler; // 26 - - /* mtvec is set in crt0.S */ - - /* deactivate all soc events as they are enabled by default */ - soc_eu_event_init(); - - /* Setup soc events handler. */ - /* pi_fc_event_handler_init(FC_SOC_EVENT); */ - pi_fc_event_handler_init(26); /* TODO: FIX THIS */ - - /* TODO: I$ enable*/ - /* enable core level interrupt (mie) */ - irq_clint_global_enable(); - - /* enable uart as stdio*/ -#if CONFIG_STDIO == STDIO_UART - udma_ctrl_cg_disable(UDMA_UART_ID(STDIO_UART_DEVICE_ID)); - - int baudrate = STDIO_UART_BAUDRATE; - uint32_t div = (pi_freq_get(PI_FREQ_DOMAIN_PERIPH) + baudrate / 2) / baudrate; - uint32_t val = 0; - - val |= REG_SET(UART_SETUP_TX_ENA, 1); - val |= REG_SET(UART_SETUP_RX_ENA, 1); - val |= REG_SET(UART_SETUP_BIT_LENGTH, 0x3); /* 8 bits */ - val |= REG_SET(UART_SETUP_PARITY_ENA, 0); - val |= REG_SET(UART_SETUP_CLKDIV, div - 1); - val |= REG_SET(UART_SETUP_POLLING_EN, 1); - - uart_setup_set(UDMA_UART_ID(STDIO_UART_DEVICE_ID), val); -#endif - -} - -void system_core_clock_update(void) -{ - system_core_clock = pi_fll_get_frequency(FLL_SOC, 0); -} - -uint32_t system_core_clock_get(void) -{ - system_core_clock_update(); - return system_core_clock; -} - -void timer_irq_handler(void) -{ -#warning requires critical section if interrupt nesting is used. - - if (xTaskIncrementTick() != 0) { - vTaskSwitchContext(); - } -} - -void undefined_handler(void) -{ -#ifdef __PULP_USE_LIBC - abort(); -#else - taskDISABLE_INTERRUPTS(); - for (;;) - ; -#endif -} - -void vPortSetupTimerInterrupt(void) -{ - extern int timer_irq_init(uint32_t ticks); - - /* No CLINT so use the PULP timer to generate the tick interrupt. */ - /* TODO: configKERNEL_INTERRUPT_PRIORITY - 1 ? */ - timer_irq_init(ARCHI_REF_CLOCK / configTICK_RATE_HZ); - /* TODO: allow setting interrupt priority (to super high(?)) */ - irq_enable(IRQ_FC_EVT_TIMER0_LO); -} - -void vSystemIrqHandler(uint32_t mcause) -{ - extern void (*isr_table[32])(void); - isr_table[mcause & 0x1f](); -} diff --git a/rtos/freertos/abstraction_layer_freertos/scr/system_metal.c b/rtos/freertos/abstraction_layer_freertos/scr/system_metal.c deleted file mode 100644 index 85bee737..00000000 --- a/rtos/freertos/abstraction_layer_freertos/scr/system_metal.c +++ /dev/null @@ -1,88 +0,0 @@ -/* - * Copyright 2020 ETH Zurich - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * SPDX-License-Identifier: Apache-2.0 - * Author: Robert Balas (balasr@iis.ee.ethz.ch) - */ - -#include -#include -#include - -#include "system_metal_conf.h" - -#include "fll.h" -#include "irq.h" -#include "soc_eu.h" - -#ifndef DISABLE_WDOG -#define DISABLE_WDOG 1 -#endif - -/* test some assumptions we make about compiler settings */ -static_assert(sizeof(uintptr_t) == 4, - "uintptr_t is not 4 bytes. Make sure you are using -mabi=ilp32*"); - -/* Allocate heap to special section. Note that we have no references in the - * whole program to this variable (since its just here to allocate space in the - * section for our heap), so when using LTO it will be removed. We force it to - * stay with the "used" attribute - */ -__attribute__((section(".heap"), used)) uint8_t ucHeap[configTOTAL_HEAP_SIZE]; - -/* Inform linker script about .heap section size. Note: GNU ld seems to - * internally represent integers with the bfd_vma type, that is a type that can - * contain memory addresses (typdefd to some int type depending on the - * architecture). uint32_t seems to me the most fitting candidate for rv32. - */ -uint32_t __heap_size = configTOTAL_HEAP_SIZE; - -uint32_t volatile system_core_clock = DEFAULT_SYSTEM_CLOCK; - -/** - * Board init code. Always call this before anything else. - */ -void system_init(void) -{ - /* init flls */ - for (int i = 0; i < ARCHI_NB_FLL; i++) { - pi_fll_init(i, 0); - } - - /* make sure irq (itc) is a good state */ - pulp_irq_init(); - - /* mtvec is set in crt0.S */ - - /* deactivate all soc events as they are enabled by default */ - soc_eu_event_init(); - - /* TODO: enable uart */ - /* TODO: I$ enable*/ - /* enable core level interrupt (mie) */ - irq_clint_global_enable(); -} - -// -void system_core_clock_update() -{ - system_core_clock = pi_fll_get_frequency(FLL_SOC, 0); -} - -uint32_t system_core_clock_get(void) -{ - system_core_clock_update(); - return system_core_clock; -} diff --git a/rtos/freertos/abstraction_layer_freertos/scr/tasks.c b/rtos/freertos/abstraction_layer_freertos/scr/tasks.c deleted file mode 100644 index f426a6fa..00000000 --- a/rtos/freertos/abstraction_layer_freertos/scr/tasks.c +++ /dev/null @@ -1,5310 +0,0 @@ -/* - * FreeRTOS Kernel V10.3.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. - * - * Permission is hereby granted, free of charge, to any person obtaining a copy of - * this software and associated documentation files (the "Software"), to deal in - * the Software without restriction, including without limitation the rights to - * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of - * the Software, and to permit persons to whom the Software is furnished to do so, - * subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS - * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR - * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER - * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - * - * http://www.FreeRTOS.org - * http://aws.amazon.com/freertos - * - * 1 tab == 4 spaces! - */ - -/* Standard includes. */ -#include -#include - -/* Defining MPU_WRAPPERS_INCLUDED_FROM_API_FILE prevents task.h from redefining -all the API functions to use the MPU wrappers. That should only be done when -task.h is included from an application file. */ -#define MPU_WRAPPERS_INCLUDED_FROM_API_FILE - -/* FreeRTOS includes. */ -#include "FreeRTOS.h" -#include "task.h" -#include "timers.h" -#include "stack_macros.h" - -/* Lint e9021, e961 and e750 are suppressed as a MISRA exception justified -because the MPU ports require MPU_WRAPPERS_INCLUDED_FROM_API_FILE to be defined -for the header files above, but not in this file, in order to generate the -correct privileged Vs unprivileged linkage and placement. */ -#undef MPU_WRAPPERS_INCLUDED_FROM_API_FILE /*lint !e961 !e750 !e9021. */ - -/* Set configUSE_STATS_FORMATTING_FUNCTIONS to 2 to include the stats formatting -functions but without including stdio.h here. */ -#if ( configUSE_STATS_FORMATTING_FUNCTIONS == 1 ) - /* At the bottom of this file are two optional functions that can be used - to generate human readable text from the raw data generated by the - uxTaskGetSystemState() function. Note the formatting functions are provided - for convenience only, and are NOT considered part of the kernel. */ - #include -#endif /* configUSE_STATS_FORMATTING_FUNCTIONS == 1 ) */ - -#if( configUSE_PREEMPTION == 0 ) - /* If the cooperative scheduler is being used then a yield should not be - performed just because a higher priority task has been woken. */ - #define taskYIELD_IF_USING_PREEMPTION() -#else - #define taskYIELD_IF_USING_PREEMPTION() portYIELD_WITHIN_API() -#endif - -/* Values that can be assigned to the ucNotifyState member of the TCB. */ -#define taskNOT_WAITING_NOTIFICATION ( ( uint8_t ) 0 ) -#define taskWAITING_NOTIFICATION ( ( uint8_t ) 1 ) -#define taskNOTIFICATION_RECEIVED ( ( uint8_t ) 2 ) - -/* - * The value used to fill the stack of a task when the task is created. This - * is used purely for checking the high water mark for tasks. - */ -#define tskSTACK_FILL_BYTE ( 0xa5U ) - -/* Bits used to recored how a task's stack and TCB were allocated. */ -#define tskDYNAMICALLY_ALLOCATED_STACK_AND_TCB ( ( uint8_t ) 0 ) -#define tskSTATICALLY_ALLOCATED_STACK_ONLY ( ( uint8_t ) 1 ) -#define tskSTATICALLY_ALLOCATED_STACK_AND_TCB ( ( uint8_t ) 2 ) - -/* If any of the following are set then task stacks are filled with a known -value so the high water mark can be determined. If none of the following are -set then don't fill the stack so there is no unnecessary dependency on memset. */ -#if( ( configCHECK_FOR_STACK_OVERFLOW > 1 ) || ( configUSE_TRACE_FACILITY == 1 ) || ( INCLUDE_uxTaskGetStackHighWaterMark == 1 ) || ( INCLUDE_uxTaskGetStackHighWaterMark2 == 1 ) ) - #define tskSET_NEW_STACKS_TO_KNOWN_VALUE 1 -#else - #define tskSET_NEW_STACKS_TO_KNOWN_VALUE 0 -#endif - -/* - * Macros used by vListTask to indicate which state a task is in. - */ -#define tskRUNNING_CHAR ( 'X' ) -#define tskBLOCKED_CHAR ( 'B' ) -#define tskREADY_CHAR ( 'R' ) -#define tskDELETED_CHAR ( 'D' ) -#define tskSUSPENDED_CHAR ( 'S' ) - -/* - * Some kernel aware debuggers require the data the debugger needs access to be - * global, rather than file scope. - */ -#ifdef portREMOVE_STATIC_QUALIFIER - #define static -#endif - -/* The name allocated to the Idle task. This can be overridden by defining -configIDLE_TASK_NAME in FreeRTOSConfig.h. */ -#ifndef configIDLE_TASK_NAME - #define configIDLE_TASK_NAME "IDLE" -#endif - -#if ( configUSE_PORT_OPTIMISED_TASK_SELECTION == 0 ) - - /* If configUSE_PORT_OPTIMISED_TASK_SELECTION is 0 then task selection is - performed in a generic way that is not optimised to any particular - microcontroller architecture. */ - - /* uxTopReadyPriority holds the priority of the highest priority ready - state task. */ - #define taskRECORD_READY_PRIORITY( uxPriority ) \ - { \ - if( ( uxPriority ) > uxTopReadyPriority ) \ - { \ - uxTopReadyPriority = ( uxPriority ); \ - } \ - } /* taskRECORD_READY_PRIORITY */ - - /*-----------------------------------------------------------*/ - - #define taskSELECT_HIGHEST_PRIORITY_TASK() \ - { \ - UBaseType_t uxTopPriority = uxTopReadyPriority; \ - \ - /* Find the highest priority queue that contains ready tasks. */ \ - while( listLIST_IS_EMPTY( &( pxReadyTasksLists[ uxTopPriority ] ) ) ) \ - { \ - configASSERT( uxTopPriority ); \ - --uxTopPriority; \ - } \ - \ - /* listGET_OWNER_OF_NEXT_ENTRY indexes through the list, so the tasks of \ - the same priority get an equal share of the processor time. */ \ - listGET_OWNER_OF_NEXT_ENTRY( pxCurrentTCB, &( pxReadyTasksLists[ uxTopPriority ] ) ); \ - uxTopReadyPriority = uxTopPriority; \ - } /* taskSELECT_HIGHEST_PRIORITY_TASK */ - - /*-----------------------------------------------------------*/ - - /* Define away taskRESET_READY_PRIORITY() and portRESET_READY_PRIORITY() as - they are only required when a port optimised method of task selection is - being used. */ - #define taskRESET_READY_PRIORITY( uxPriority ) - #define portRESET_READY_PRIORITY( uxPriority, uxTopReadyPriority ) - -#else /* configUSE_PORT_OPTIMISED_TASK_SELECTION */ - - /* If configUSE_PORT_OPTIMISED_TASK_SELECTION is 1 then task selection is - performed in a way that is tailored to the particular microcontroller - architecture being used. */ - - /* A port optimised version is provided. Call the port defined macros. */ - #define taskRECORD_READY_PRIORITY( uxPriority ) portRECORD_READY_PRIORITY( uxPriority, uxTopReadyPriority ) - - /*-----------------------------------------------------------*/ - - #define taskSELECT_HIGHEST_PRIORITY_TASK() \ - { \ - UBaseType_t uxTopPriority; \ - \ - /* Find the highest priority list that contains ready tasks. */ \ - portGET_HIGHEST_PRIORITY( uxTopPriority, uxTopReadyPriority ); \ - configASSERT( listCURRENT_LIST_LENGTH( &( pxReadyTasksLists[ uxTopPriority ] ) ) > 0 ); \ - listGET_OWNER_OF_NEXT_ENTRY( pxCurrentTCB, &( pxReadyTasksLists[ uxTopPriority ] ) ); \ - } /* taskSELECT_HIGHEST_PRIORITY_TASK() */ - - /*-----------------------------------------------------------*/ - - /* A port optimised version is provided, call it only if the TCB being reset - is being referenced from a ready list. If it is referenced from a delayed - or suspended list then it won't be in a ready list. */ - #define taskRESET_READY_PRIORITY( uxPriority ) \ - { \ - if( listCURRENT_LIST_LENGTH( &( pxReadyTasksLists[ ( uxPriority ) ] ) ) == ( UBaseType_t ) 0 ) \ - { \ - portRESET_READY_PRIORITY( ( uxPriority ), ( uxTopReadyPriority ) ); \ - } \ - } - -#endif /* configUSE_PORT_OPTIMISED_TASK_SELECTION */ - -/*-----------------------------------------------------------*/ - -/* pxDelayedTaskList and pxOverflowDelayedTaskList are switched when the tick -count overflows. */ -#define taskSWITCH_DELAYED_LISTS() \ -{ \ - List_t *pxTemp; \ - \ - /* The delayed tasks list should be empty when the lists are switched. */ \ - configASSERT( ( listLIST_IS_EMPTY( pxDelayedTaskList ) ) ); \ - \ - pxTemp = pxDelayedTaskList; \ - pxDelayedTaskList = pxOverflowDelayedTaskList; \ - pxOverflowDelayedTaskList = pxTemp; \ - xNumOfOverflows++; \ - prvResetNextTaskUnblockTime(); \ -} - -/*-----------------------------------------------------------*/ - -/* - * Place the task represented by pxTCB into the appropriate ready list for - * the task. It is inserted at the end of the list. - */ -#define prvAddTaskToReadyList( pxTCB ) \ - traceMOVED_TASK_TO_READY_STATE( pxTCB ); \ - taskRECORD_READY_PRIORITY( ( pxTCB )->uxPriority ); \ - vListInsertEnd( &( pxReadyTasksLists[ ( pxTCB )->uxPriority ] ), &( ( pxTCB )->xStateListItem ) ); \ - tracePOST_MOVED_TASK_TO_READY_STATE( pxTCB ) -/*-----------------------------------------------------------*/ - -/* - * Several functions take an TaskHandle_t parameter that can optionally be NULL, - * where NULL is used to indicate that the handle of the currently executing - * task should be used in place of the parameter. This macro simply checks to - * see if the parameter is NULL and returns a pointer to the appropriate TCB. - */ -#define prvGetTCBFromHandle( pxHandle ) ( ( ( pxHandle ) == NULL ) ? pxCurrentTCB : ( pxHandle ) ) - -/* The item value of the event list item is normally used to hold the priority -of the task to which it belongs (coded to allow it to be held in reverse -priority order). However, it is occasionally borrowed for other purposes. It -is important its value is not updated due to a task priority change while it is -being used for another purpose. The following bit definition is used to inform -the scheduler that the value should not be changed - in which case it is the -responsibility of whichever module is using the value to ensure it gets set back -to its original value when it is released. */ -#if( configUSE_16_BIT_TICKS == 1 ) - #define taskEVENT_LIST_ITEM_VALUE_IN_USE 0x8000U -#else - #define taskEVENT_LIST_ITEM_VALUE_IN_USE 0x80000000UL -#endif - -/* - * Task control block. A task control block (TCB) is allocated for each task, - * and stores task state information, including a pointer to the task's context - * (the task's run time environment, including register values) - */ -typedef struct tskTaskControlBlock /* The old naming convention is used to prevent breaking kernel aware debuggers. */ -{ - volatile StackType_t *pxTopOfStack; /*< Points to the location of the last item placed on the tasks stack. THIS MUST BE THE FIRST MEMBER OF THE TCB STRUCT. */ - - #if ( portUSING_MPU_WRAPPERS == 1 ) - xMPU_SETTINGS xMPUSettings; /*< The MPU settings are defined as part of the port layer. THIS MUST BE THE SECOND MEMBER OF THE TCB STRUCT. */ - #endif - - ListItem_t xStateListItem; /*< The list that the state list item of a task is reference from denotes the state of that task (Ready, Blocked, Suspended ). */ - ListItem_t xEventListItem; /*< Used to reference a task from an event list. */ - UBaseType_t uxPriority; /*< The priority of the task. 0 is the lowest priority. */ - StackType_t *pxStack; /*< Points to the start of the stack. */ - char pcTaskName[ configMAX_TASK_NAME_LEN ];/*< Descriptive name given to the task when created. Facilitates debugging only. */ /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ - - #if ( ( portSTACK_GROWTH > 0 ) || ( configRECORD_STACK_HIGH_ADDRESS == 1 ) ) - StackType_t *pxEndOfStack; /*< Points to the highest valid address for the stack. */ - #endif - - #if ( portCRITICAL_NESTING_IN_TCB == 1 ) - UBaseType_t uxCriticalNesting; /*< Holds the critical section nesting depth for ports that do not maintain their own count in the port layer. */ - #endif - - #if ( configUSE_TRACE_FACILITY == 1 ) - UBaseType_t uxTCBNumber; /*< Stores a number that increments each time a TCB is created. It allows debuggers to determine when a task has been deleted and then recreated. */ - UBaseType_t uxTaskNumber; /*< Stores a number specifically for use by third party trace code. */ - #endif - - #if ( configUSE_MUTEXES == 1 ) - UBaseType_t uxBasePriority; /*< The priority last assigned to the task - used by the priority inheritance mechanism. */ - UBaseType_t uxMutexesHeld; - #endif - - #if ( configUSE_APPLICATION_TASK_TAG == 1 ) - TaskHookFunction_t pxTaskTag; - #endif - - #if( configNUM_THREAD_LOCAL_STORAGE_POINTERS > 0 ) - void *pvThreadLocalStoragePointers[ configNUM_THREAD_LOCAL_STORAGE_POINTERS ]; - #endif - - #if( configGENERATE_RUN_TIME_STATS == 1 ) - uint32_t ulRunTimeCounter; /*< Stores the amount of time the task has spent in the Running state. */ - #endif - - #if ( configUSE_NEWLIB_REENTRANT == 1 ) - /* Allocate a Newlib reent structure that is specific to this task. - Note Newlib support has been included by popular demand, but is not - used by the FreeRTOS maintainers themselves. FreeRTOS is not - responsible for resulting newlib operation. User must be familiar with - newlib and must provide system-wide implementations of the necessary - stubs. Be warned that (at the time of writing) the current newlib design - implements a system-wide malloc() that must be provided with locks. - - See the third party link http://www.nadler.com/embedded/newlibAndFreeRTOS.html - for additional information. */ - struct _reent xNewLib_reent; - #endif - - #if( configUSE_TASK_NOTIFICATIONS == 1 ) - volatile uint32_t ulNotifiedValue; - volatile uint8_t ucNotifyState; - #endif - - /* See the comments in FreeRTOS.h with the definition of - tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE. */ - #if( tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE != 0 ) /*lint !e731 !e9029 Macro has been consolidated for readability reasons. */ - uint8_t ucStaticallyAllocated; /*< Set to pdTRUE if the task is a statically allocated to ensure no attempt is made to free the memory. */ - #endif - - #if( INCLUDE_xTaskAbortDelay == 1 ) - uint8_t ucDelayAborted; - #endif - - #if( configUSE_POSIX_ERRNO == 1 ) - int iTaskErrno; - #endif - -} tskTCB; - -/* The old tskTCB name is maintained above then typedefed to the new TCB_t name -below to enable the use of older kernel aware debuggers. */ -typedef tskTCB TCB_t; - -/*lint -save -e956 A manual analysis and inspection has been used to determine -which static variables must be declared volatile. */ -PRIVILEGED_DATA TCB_t * volatile pxCurrentTCB = NULL; - -/* Lists for ready and blocked tasks. -------------------- -xDelayedTaskList1 and xDelayedTaskList2 could be move to function scople but -doing so breaks some kernel aware debuggers and debuggers that rely on removing -the static qualifier. */ -PRIVILEGED_DATA static List_t pxReadyTasksLists[ configMAX_PRIORITIES ];/*< Prioritised ready tasks. */ -PRIVILEGED_DATA static List_t xDelayedTaskList1; /*< Delayed tasks. */ -PRIVILEGED_DATA static List_t xDelayedTaskList2; /*< Delayed tasks (two lists are used - one for delays that have overflowed the current tick count. */ -PRIVILEGED_DATA static List_t * volatile pxDelayedTaskList; /*< Points to the delayed task list currently being used. */ -PRIVILEGED_DATA static List_t * volatile pxOverflowDelayedTaskList; /*< Points to the delayed task list currently being used to hold tasks that have overflowed the current tick count. */ -PRIVILEGED_DATA static List_t xPendingReadyList; /*< Tasks that have been readied while the scheduler was suspended. They will be moved to the ready list when the scheduler is resumed. */ - -#if( INCLUDE_vTaskDelete == 1 ) - - PRIVILEGED_DATA static List_t xTasksWaitingTermination; /*< Tasks that have been deleted - but their memory not yet freed. */ - PRIVILEGED_DATA static volatile UBaseType_t uxDeletedTasksWaitingCleanUp = ( UBaseType_t ) 0U; - -#endif - -#if ( INCLUDE_vTaskSuspend == 1 ) - - PRIVILEGED_DATA static List_t xSuspendedTaskList; /*< Tasks that are currently suspended. */ - -#endif - -/* Global POSIX errno. Its value is changed upon context switching to match -the errno of the currently running task. */ -#if ( configUSE_POSIX_ERRNO == 1 ) - int FreeRTOS_errno = 0; -#endif - -/* Other file private variables. --------------------------------*/ -PRIVILEGED_DATA static volatile UBaseType_t uxCurrentNumberOfTasks = ( UBaseType_t ) 0U; -PRIVILEGED_DATA static volatile TickType_t xTickCount = ( TickType_t ) configINITIAL_TICK_COUNT; -PRIVILEGED_DATA static volatile UBaseType_t uxTopReadyPriority = tskIDLE_PRIORITY; -PRIVILEGED_DATA static volatile BaseType_t xSchedulerRunning = pdFALSE; -PRIVILEGED_DATA static volatile TickType_t xPendedTicks = ( TickType_t ) 0U; -PRIVILEGED_DATA static volatile BaseType_t xYieldPending = pdFALSE; -PRIVILEGED_DATA static volatile BaseType_t xNumOfOverflows = ( BaseType_t ) 0; -PRIVILEGED_DATA static UBaseType_t uxTaskNumber = ( UBaseType_t ) 0U; -PRIVILEGED_DATA static volatile TickType_t xNextTaskUnblockTime = ( TickType_t ) 0U; /* Initialised to portMAX_DELAY before the scheduler starts. */ -PRIVILEGED_DATA static TaskHandle_t xIdleTaskHandle = NULL; /*< Holds the handle of the idle task. The idle task is created automatically when the scheduler is started. */ - -/* Context switches are held pending while the scheduler is suspended. Also, -interrupts must not manipulate the xStateListItem of a TCB, or any of the -lists the xStateListItem can be referenced from, if the scheduler is suspended. -If an interrupt needs to unblock a task while the scheduler is suspended then it -moves the task's event list item into the xPendingReadyList, ready for the -kernel to move the task from the pending ready list into the real ready list -when the scheduler is unsuspended. The pending ready list itself can only be -accessed from a critical section. */ -PRIVILEGED_DATA static volatile UBaseType_t uxSchedulerSuspended = ( UBaseType_t ) pdFALSE; - -#if ( configGENERATE_RUN_TIME_STATS == 1 ) - - /* Do not move these variables to function scope as doing so prevents the - code working with debuggers that need to remove the static qualifier. */ - PRIVILEGED_DATA static uint32_t ulTaskSwitchedInTime = 0UL; /*< Holds the value of a timer/counter the last time a task was switched in. */ - PRIVILEGED_DATA static uint32_t ulTotalRunTime = 0UL; /*< Holds the total amount of execution time as defined by the run time counter clock. */ - -#endif - -/*lint -restore */ - -/*-----------------------------------------------------------*/ - -/* Callback function prototypes. --------------------------*/ -#if( configCHECK_FOR_STACK_OVERFLOW > 0 ) - - extern void vApplicationStackOverflowHook( TaskHandle_t xTask, char *pcTaskName ); - -#endif - -#if( configUSE_TICK_HOOK > 0 ) - - extern void vApplicationTickHook( void ); /*lint !e526 Symbol not defined as it is an application callback. */ - -#endif - -#if( configSUPPORT_STATIC_ALLOCATION == 1 ) - - extern void vApplicationGetIdleTaskMemory( StaticTask_t **ppxIdleTaskTCBBuffer, StackType_t **ppxIdleTaskStackBuffer, uint32_t *pulIdleTaskStackSize ); /*lint !e526 Symbol not defined as it is an application callback. */ - -#endif - -/* File private functions. --------------------------------*/ - -/** - * Utility task that simply returns pdTRUE if the task referenced by xTask is - * currently in the Suspended state, or pdFALSE if the task referenced by xTask - * is in any other state. - */ -#if ( INCLUDE_vTaskSuspend == 1 ) - - static BaseType_t prvTaskIsTaskSuspended( const TaskHandle_t xTask ) PRIVILEGED_FUNCTION; - -#endif /* INCLUDE_vTaskSuspend */ - -/* - * Utility to ready all the lists used by the scheduler. This is called - * automatically upon the creation of the first task. - */ -static void prvInitialiseTaskLists( void ) PRIVILEGED_FUNCTION; - -/* - * The idle task, which as all tasks is implemented as a never ending loop. - * The idle task is automatically created and added to the ready lists upon - * creation of the first user task. - * - * The portTASK_FUNCTION_PROTO() macro is used to allow port/compiler specific - * language extensions. The equivalent prototype for this function is: - * - * void prvIdleTask( void *pvParameters ); - * - */ -static portTASK_FUNCTION_PROTO( prvIdleTask, pvParameters ); - -/* - * Utility to free all memory allocated by the scheduler to hold a TCB, - * including the stack pointed to by the TCB. - * - * This does not free memory allocated by the task itself (i.e. memory - * allocated by calls to pvPortMalloc from within the tasks application code). - */ -#if ( INCLUDE_vTaskDelete == 1 ) - - static void prvDeleteTCB( TCB_t *pxTCB ) PRIVILEGED_FUNCTION; - -#endif - -/* - * Used only by the idle task. This checks to see if anything has been placed - * in the list of tasks waiting to be deleted. If so the task is cleaned up - * and its TCB deleted. - */ -static void prvCheckTasksWaitingTermination( void ) PRIVILEGED_FUNCTION; - -/* - * The currently executing task is entering the Blocked state. Add the task to - * either the current or the overflow delayed task list. - */ -static void prvAddCurrentTaskToDelayedList( TickType_t xTicksToWait, const BaseType_t xCanBlockIndefinitely ) PRIVILEGED_FUNCTION; - -/* - * Fills an TaskStatus_t structure with information on each task that is - * referenced from the pxList list (which may be a ready list, a delayed list, - * a suspended list, etc.). - * - * THIS FUNCTION IS INTENDED FOR DEBUGGING ONLY, AND SHOULD NOT BE CALLED FROM - * NORMAL APPLICATION CODE. - */ -#if ( configUSE_TRACE_FACILITY == 1 ) - - static UBaseType_t prvListTasksWithinSingleList( TaskStatus_t *pxTaskStatusArray, List_t *pxList, eTaskState eState ) PRIVILEGED_FUNCTION; - -#endif - -/* - * Searches pxList for a task with name pcNameToQuery - returning a handle to - * the task if it is found, or NULL if the task is not found. - */ -#if ( INCLUDE_xTaskGetHandle == 1 ) - - static TCB_t *prvSearchForNameWithinSingleList( List_t *pxList, const char pcNameToQuery[] ) PRIVILEGED_FUNCTION; - -#endif - -/* - * When a task is created, the stack of the task is filled with a known value. - * This function determines the 'high water mark' of the task stack by - * determining how much of the stack remains at the original preset value. - */ -#if ( ( configUSE_TRACE_FACILITY == 1 ) || ( INCLUDE_uxTaskGetStackHighWaterMark == 1 ) || ( INCLUDE_uxTaskGetStackHighWaterMark2 == 1 ) ) - - static configSTACK_DEPTH_TYPE prvTaskCheckFreeStackSpace( const uint8_t * pucStackByte ) PRIVILEGED_FUNCTION; - -#endif - -/* - * Return the amount of time, in ticks, that will pass before the kernel will - * next move a task from the Blocked state to the Running state. - * - * This conditional compilation should use inequality to 0, not equality to 1. - * This is to ensure portSUPPRESS_TICKS_AND_SLEEP() can be called when user - * defined low power mode implementations require configUSE_TICKLESS_IDLE to be - * set to a value other than 1. - */ -#if ( configUSE_TICKLESS_IDLE != 0 ) - - static TickType_t prvGetExpectedIdleTime( void ) PRIVILEGED_FUNCTION; - -#endif - -/* - * Set xNextTaskUnblockTime to the time at which the next Blocked state task - * will exit the Blocked state. - */ -static void prvResetNextTaskUnblockTime( void ); - -#if ( ( configUSE_TRACE_FACILITY == 1 ) && ( configUSE_STATS_FORMATTING_FUNCTIONS > 0 ) ) - - /* - * Helper function used to pad task names with spaces when printing out - * human readable tables of task information. - */ - static char *prvWriteNameToBuffer( char *pcBuffer, const char *pcTaskName ) PRIVILEGED_FUNCTION; - -#endif - -/* - * Called after a Task_t structure has been allocated either statically or - * dynamically to fill in the structure's members. - */ -static void prvInitialiseNewTask( TaskFunction_t pxTaskCode, - const char * const pcName, /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ - const uint32_t ulStackDepth, - void * const pvParameters, - UBaseType_t uxPriority, - TaskHandle_t * const pxCreatedTask, - TCB_t *pxNewTCB, - const MemoryRegion_t * const xRegions ) PRIVILEGED_FUNCTION; - -/* - * Called after a new task has been created and initialised to place the task - * under the control of the scheduler. - */ -static void prvAddNewTaskToReadyList( TCB_t *pxNewTCB ) PRIVILEGED_FUNCTION; - -/* - * freertos_tasks_c_additions_init() should only be called if the user definable - * macro FREERTOS_TASKS_C_ADDITIONS_INIT() is defined, as that is the only macro - * called by the function. - */ -#ifdef FREERTOS_TASKS_C_ADDITIONS_INIT - - static void freertos_tasks_c_additions_init( void ) PRIVILEGED_FUNCTION; - -#endif - -/*-----------------------------------------------------------*/ - -#if( configSUPPORT_STATIC_ALLOCATION == 1 ) - - TaskHandle_t xTaskCreateStatic( TaskFunction_t pxTaskCode, - const char * const pcName, /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ - const uint32_t ulStackDepth, - void * const pvParameters, - UBaseType_t uxPriority, - StackType_t * const puxStackBuffer, - StaticTask_t * const pxTaskBuffer ) - { - TCB_t *pxNewTCB; - TaskHandle_t xReturn; - - configASSERT( puxStackBuffer != NULL ); - configASSERT( pxTaskBuffer != NULL ); - - #if( configASSERT_DEFINED == 1 ) - { - /* Sanity check that the size of the structure used to declare a - variable of type StaticTask_t equals the size of the real task - structure. */ - volatile size_t xSize = sizeof( StaticTask_t ); - configASSERT( xSize == sizeof( TCB_t ) ); - ( void ) xSize; /* Prevent lint warning when configASSERT() is not used. */ - } - #endif /* configASSERT_DEFINED */ - - - if( ( pxTaskBuffer != NULL ) && ( puxStackBuffer != NULL ) ) - { - /* The memory used for the task's TCB and stack are passed into this - function - use them. */ - pxNewTCB = ( TCB_t * ) pxTaskBuffer; /*lint !e740 !e9087 Unusual cast is ok as the structures are designed to have the same alignment, and the size is checked by an assert. */ - pxNewTCB->pxStack = ( StackType_t * ) puxStackBuffer; - - #if( tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE != 0 ) /*lint !e731 !e9029 Macro has been consolidated for readability reasons. */ - { - /* Tasks can be created statically or dynamically, so note this - task was created statically in case the task is later deleted. */ - pxNewTCB->ucStaticallyAllocated = tskSTATICALLY_ALLOCATED_STACK_AND_TCB; - } - #endif /* tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE */ - - prvInitialiseNewTask( pxTaskCode, pcName, ulStackDepth, pvParameters, uxPriority, &xReturn, pxNewTCB, NULL ); - prvAddNewTaskToReadyList( pxNewTCB ); - } - else - { - xReturn = NULL; - } - - return xReturn; - } - -#endif /* SUPPORT_STATIC_ALLOCATION */ -/*-----------------------------------------------------------*/ - -#if( ( portUSING_MPU_WRAPPERS == 1 ) && ( configSUPPORT_STATIC_ALLOCATION == 1 ) ) - - BaseType_t xTaskCreateRestrictedStatic( const TaskParameters_t * const pxTaskDefinition, TaskHandle_t *pxCreatedTask ) - { - TCB_t *pxNewTCB; - BaseType_t xReturn = errCOULD_NOT_ALLOCATE_REQUIRED_MEMORY; - - configASSERT( pxTaskDefinition->puxStackBuffer != NULL ); - configASSERT( pxTaskDefinition->pxTaskBuffer != NULL ); - - if( ( pxTaskDefinition->puxStackBuffer != NULL ) && ( pxTaskDefinition->pxTaskBuffer != NULL ) ) - { - /* Allocate space for the TCB. Where the memory comes from depends - on the implementation of the port malloc function and whether or - not static allocation is being used. */ - pxNewTCB = ( TCB_t * ) pxTaskDefinition->pxTaskBuffer; - - /* Store the stack location in the TCB. */ - pxNewTCB->pxStack = pxTaskDefinition->puxStackBuffer; - - #if( tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE != 0 ) - { - /* Tasks can be created statically or dynamically, so note this - task was created statically in case the task is later deleted. */ - pxNewTCB->ucStaticallyAllocated = tskSTATICALLY_ALLOCATED_STACK_AND_TCB; - } - #endif /* tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE */ - - prvInitialiseNewTask( pxTaskDefinition->pvTaskCode, - pxTaskDefinition->pcName, - ( uint32_t ) pxTaskDefinition->usStackDepth, - pxTaskDefinition->pvParameters, - pxTaskDefinition->uxPriority, - pxCreatedTask, pxNewTCB, - pxTaskDefinition->xRegions ); - - prvAddNewTaskToReadyList( pxNewTCB ); - xReturn = pdPASS; - } - - return xReturn; - } - -#endif /* ( portUSING_MPU_WRAPPERS == 1 ) && ( configSUPPORT_STATIC_ALLOCATION == 1 ) */ -/*-----------------------------------------------------------*/ - -#if( ( portUSING_MPU_WRAPPERS == 1 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) ) - - BaseType_t xTaskCreateRestricted( const TaskParameters_t * const pxTaskDefinition, TaskHandle_t *pxCreatedTask ) - { - TCB_t *pxNewTCB; - BaseType_t xReturn = errCOULD_NOT_ALLOCATE_REQUIRED_MEMORY; - - configASSERT( pxTaskDefinition->puxStackBuffer ); - - if( pxTaskDefinition->puxStackBuffer != NULL ) - { - /* Allocate space for the TCB. Where the memory comes from depends - on the implementation of the port malloc function and whether or - not static allocation is being used. */ - pxNewTCB = ( TCB_t * ) pvPortMalloc( sizeof( TCB_t ) ); - - if( pxNewTCB != NULL ) - { - /* Store the stack location in the TCB. */ - pxNewTCB->pxStack = pxTaskDefinition->puxStackBuffer; - - #if( tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE != 0 ) - { - /* Tasks can be created statically or dynamically, so note - this task had a statically allocated stack in case it is - later deleted. The TCB was allocated dynamically. */ - pxNewTCB->ucStaticallyAllocated = tskSTATICALLY_ALLOCATED_STACK_ONLY; - } - #endif /* tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE */ - - prvInitialiseNewTask( pxTaskDefinition->pvTaskCode, - pxTaskDefinition->pcName, - ( uint32_t ) pxTaskDefinition->usStackDepth, - pxTaskDefinition->pvParameters, - pxTaskDefinition->uxPriority, - pxCreatedTask, pxNewTCB, - pxTaskDefinition->xRegions ); - - prvAddNewTaskToReadyList( pxNewTCB ); - xReturn = pdPASS; - } - } - - return xReturn; - } - -#endif /* portUSING_MPU_WRAPPERS */ -/*-----------------------------------------------------------*/ - -#if( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) - - BaseType_t xTaskCreate( TaskFunction_t pxTaskCode, - const char * const pcName, /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ - const configSTACK_DEPTH_TYPE usStackDepth, - void * const pvParameters, - UBaseType_t uxPriority, - TaskHandle_t * const pxCreatedTask ) - { - TCB_t *pxNewTCB; - BaseType_t xReturn; - - /* If the stack grows down then allocate the stack then the TCB so the stack - does not grow into the TCB. Likewise if the stack grows up then allocate - the TCB then the stack. */ - #if( portSTACK_GROWTH > 0 ) - { - /* Allocate space for the TCB. Where the memory comes from depends on - the implementation of the port malloc function and whether or not static - allocation is being used. */ - pxNewTCB = ( TCB_t * ) pvPortMalloc( sizeof( TCB_t ) ); - - if( pxNewTCB != NULL ) - { - /* Allocate space for the stack used by the task being created. - The base of the stack memory stored in the TCB so the task can - be deleted later if required. */ - pxNewTCB->pxStack = ( StackType_t * ) pvPortMalloc( ( ( ( size_t ) usStackDepth ) * sizeof( StackType_t ) ) ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ - - if( pxNewTCB->pxStack == NULL ) - { - /* Could not allocate the stack. Delete the allocated TCB. */ - vPortFree( pxNewTCB ); - pxNewTCB = NULL; - } - } - } - #else /* portSTACK_GROWTH */ - { - StackType_t *pxStack; - - /* Allocate space for the stack used by the task being created. */ - pxStack = pvPortMalloc( ( ( ( size_t ) usStackDepth ) * sizeof( StackType_t ) ) ); /*lint !e9079 All values returned by pvPortMalloc() have at least the alignment required by the MCU's stack and this allocation is the stack. */ - - if( pxStack != NULL ) - { - /* Allocate space for the TCB. */ - pxNewTCB = ( TCB_t * ) pvPortMalloc( sizeof( TCB_t ) ); /*lint !e9087 !e9079 All values returned by pvPortMalloc() have at least the alignment required by the MCU's stack, and the first member of TCB_t is always a pointer to the task's stack. */ - - if( pxNewTCB != NULL ) - { - /* Store the stack location in the TCB. */ - pxNewTCB->pxStack = pxStack; - } - else - { - /* The stack cannot be used as the TCB was not created. Free - it again. */ - vPortFree( pxStack ); - } - } - else - { - pxNewTCB = NULL; - } - } - #endif /* portSTACK_GROWTH */ - - if( pxNewTCB != NULL ) - { - #if( tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE != 0 ) /*lint !e9029 !e731 Macro has been consolidated for readability reasons. */ - { - /* Tasks can be created statically or dynamically, so note this - task was created dynamically in case it is later deleted. */ - pxNewTCB->ucStaticallyAllocated = tskDYNAMICALLY_ALLOCATED_STACK_AND_TCB; - } - #endif /* tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE */ - - prvInitialiseNewTask( pxTaskCode, pcName, ( uint32_t ) usStackDepth, pvParameters, uxPriority, pxCreatedTask, pxNewTCB, NULL ); - prvAddNewTaskToReadyList( pxNewTCB ); - xReturn = pdPASS; - } - else - { - xReturn = errCOULD_NOT_ALLOCATE_REQUIRED_MEMORY; - } - - return xReturn; - } - -#endif /* configSUPPORT_DYNAMIC_ALLOCATION */ -/*-----------------------------------------------------------*/ - -static void prvInitialiseNewTask( TaskFunction_t pxTaskCode, - const char * const pcName, /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ - const uint32_t ulStackDepth, - void * const pvParameters, - UBaseType_t uxPriority, - TaskHandle_t * const pxCreatedTask, - TCB_t *pxNewTCB, - const MemoryRegion_t * const xRegions ) -{ -StackType_t *pxTopOfStack; -UBaseType_t x; - - #if( portUSING_MPU_WRAPPERS == 1 ) - /* Should the task be created in privileged mode? */ - BaseType_t xRunPrivileged; - if( ( uxPriority & portPRIVILEGE_BIT ) != 0U ) - { - xRunPrivileged = pdTRUE; - } - else - { - xRunPrivileged = pdFALSE; - } - uxPriority &= ~portPRIVILEGE_BIT; - #endif /* portUSING_MPU_WRAPPERS == 1 */ - - /* Avoid dependency on memset() if it is not required. */ - #if( tskSET_NEW_STACKS_TO_KNOWN_VALUE == 1 ) - { - /* Fill the stack with a known value to assist debugging. */ - ( void ) memset( pxNewTCB->pxStack, ( int ) tskSTACK_FILL_BYTE, ( size_t ) ulStackDepth * sizeof( StackType_t ) ); - } - #endif /* tskSET_NEW_STACKS_TO_KNOWN_VALUE */ - - /* Calculate the top of stack address. This depends on whether the stack - grows from high memory to low (as per the 80x86) or vice versa. - portSTACK_GROWTH is used to make the result positive or negative as required - by the port. */ - #if( portSTACK_GROWTH < 0 ) - { - pxTopOfStack = &( pxNewTCB->pxStack[ ulStackDepth - ( uint32_t ) 1 ] ); - pxTopOfStack = ( StackType_t * ) ( ( ( portPOINTER_SIZE_TYPE ) pxTopOfStack ) & ( ~( ( portPOINTER_SIZE_TYPE ) portBYTE_ALIGNMENT_MASK ) ) ); /*lint !e923 !e9033 !e9078 MISRA exception. Avoiding casts between pointers and integers is not practical. Size differences accounted for using portPOINTER_SIZE_TYPE type. Checked by assert(). */ - - /* Check the alignment of the calculated top of stack is correct. */ - configASSERT( ( ( ( portPOINTER_SIZE_TYPE ) pxTopOfStack & ( portPOINTER_SIZE_TYPE ) portBYTE_ALIGNMENT_MASK ) == 0UL ) ); - - #if( configRECORD_STACK_HIGH_ADDRESS == 1 ) - { - /* Also record the stack's high address, which may assist - debugging. */ - pxNewTCB->pxEndOfStack = pxTopOfStack; - } - #endif /* configRECORD_STACK_HIGH_ADDRESS */ - } - #else /* portSTACK_GROWTH */ - { - pxTopOfStack = pxNewTCB->pxStack; - - /* Check the alignment of the stack buffer is correct. */ - configASSERT( ( ( ( portPOINTER_SIZE_TYPE ) pxNewTCB->pxStack & ( portPOINTER_SIZE_TYPE ) portBYTE_ALIGNMENT_MASK ) == 0UL ) ); - - /* The other extreme of the stack space is required if stack checking is - performed. */ - pxNewTCB->pxEndOfStack = pxNewTCB->pxStack + ( ulStackDepth - ( uint32_t ) 1 ); - } - #endif /* portSTACK_GROWTH */ - - /* Store the task name in the TCB. */ - if( pcName != NULL ) - { - for( x = ( UBaseType_t ) 0; x < ( UBaseType_t ) configMAX_TASK_NAME_LEN; x++ ) - { - pxNewTCB->pcTaskName[ x ] = pcName[ x ]; - - /* Don't copy all configMAX_TASK_NAME_LEN if the string is shorter than - configMAX_TASK_NAME_LEN characters just in case the memory after the - string is not accessible (extremely unlikely). */ - if( pcName[ x ] == ( char ) 0x00 ) - { - break; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - - /* Ensure the name string is terminated in the case that the string length - was greater or equal to configMAX_TASK_NAME_LEN. */ - pxNewTCB->pcTaskName[ configMAX_TASK_NAME_LEN - 1 ] = '\0'; - } - else - { - /* The task has not been given a name, so just ensure there is a NULL - terminator when it is read out. */ - pxNewTCB->pcTaskName[ 0 ] = 0x00; - } - - /* This is used as an array index so must ensure it's not too large. First - remove the privilege bit if one is present. */ - if( uxPriority >= ( UBaseType_t ) configMAX_PRIORITIES ) - { - uxPriority = ( UBaseType_t ) configMAX_PRIORITIES - ( UBaseType_t ) 1U; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - pxNewTCB->uxPriority = uxPriority; - #if ( configUSE_MUTEXES == 1 ) - { - pxNewTCB->uxBasePriority = uxPriority; - pxNewTCB->uxMutexesHeld = 0; - } - #endif /* configUSE_MUTEXES */ - - vListInitialiseItem( &( pxNewTCB->xStateListItem ) ); - vListInitialiseItem( &( pxNewTCB->xEventListItem ) ); - - /* Set the pxNewTCB as a link back from the ListItem_t. This is so we can get - back to the containing TCB from a generic item in a list. */ - listSET_LIST_ITEM_OWNER( &( pxNewTCB->xStateListItem ), pxNewTCB ); - - /* Event lists are always in priority order. */ - listSET_LIST_ITEM_VALUE( &( pxNewTCB->xEventListItem ), ( TickType_t ) configMAX_PRIORITIES - ( TickType_t ) uxPriority ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ - listSET_LIST_ITEM_OWNER( &( pxNewTCB->xEventListItem ), pxNewTCB ); - - #if ( portCRITICAL_NESTING_IN_TCB == 1 ) - { - pxNewTCB->uxCriticalNesting = ( UBaseType_t ) 0U; - } - #endif /* portCRITICAL_NESTING_IN_TCB */ - - #if ( configUSE_APPLICATION_TASK_TAG == 1 ) - { - pxNewTCB->pxTaskTag = NULL; - } - #endif /* configUSE_APPLICATION_TASK_TAG */ - - #if ( configGENERATE_RUN_TIME_STATS == 1 ) - { - pxNewTCB->ulRunTimeCounter = 0UL; - } - #endif /* configGENERATE_RUN_TIME_STATS */ - - #if ( portUSING_MPU_WRAPPERS == 1 ) - { - vPortStoreTaskMPUSettings( &( pxNewTCB->xMPUSettings ), xRegions, pxNewTCB->pxStack, ulStackDepth ); - } - #else - { - /* Avoid compiler warning about unreferenced parameter. */ - ( void ) xRegions; - } - #endif - - #if( configNUM_THREAD_LOCAL_STORAGE_POINTERS != 0 ) - { - for( x = 0; x < ( UBaseType_t ) configNUM_THREAD_LOCAL_STORAGE_POINTERS; x++ ) - { - pxNewTCB->pvThreadLocalStoragePointers[ x ] = NULL; - } - } - #endif - - #if ( configUSE_TASK_NOTIFICATIONS == 1 ) - { - pxNewTCB->ulNotifiedValue = 0; - pxNewTCB->ucNotifyState = taskNOT_WAITING_NOTIFICATION; - } - #endif - - #if ( configUSE_NEWLIB_REENTRANT == 1 ) - { - /* Initialise this task's Newlib reent structure. - See the third party link http://www.nadler.com/embedded/newlibAndFreeRTOS.html - for additional information. */ - _REENT_INIT_PTR( ( &( pxNewTCB->xNewLib_reent ) ) ); - } - #endif - - #if( INCLUDE_xTaskAbortDelay == 1 ) - { - pxNewTCB->ucDelayAborted = pdFALSE; - } - #endif - - /* Initialize the TCB stack to look as if the task was already running, - but had been interrupted by the scheduler. The return address is set - to the start of the task function. Once the stack has been initialised - the top of stack variable is updated. */ - #if( portUSING_MPU_WRAPPERS == 1 ) - { - /* If the port has capability to detect stack overflow, - pass the stack end address to the stack initialization - function as well. */ - #if( portHAS_STACK_OVERFLOW_CHECKING == 1 ) - { - #if( portSTACK_GROWTH < 0 ) - { - pxNewTCB->pxTopOfStack = pxPortInitialiseStack( pxTopOfStack, pxNewTCB->pxStack, pxTaskCode, pvParameters, xRunPrivileged ); - } - #else /* portSTACK_GROWTH */ - { - pxNewTCB->pxTopOfStack = pxPortInitialiseStack( pxTopOfStack, pxNewTCB->pxEndOfStack, pxTaskCode, pvParameters, xRunPrivileged ); - } - #endif /* portSTACK_GROWTH */ - } - #else /* portHAS_STACK_OVERFLOW_CHECKING */ - { - pxNewTCB->pxTopOfStack = pxPortInitialiseStack( pxTopOfStack, pxTaskCode, pvParameters, xRunPrivileged ); - } - #endif /* portHAS_STACK_OVERFLOW_CHECKING */ - } - #else /* portUSING_MPU_WRAPPERS */ - { - /* If the port has capability to detect stack overflow, - pass the stack end address to the stack initialization - function as well. */ - #if( portHAS_STACK_OVERFLOW_CHECKING == 1 ) - { - #if( portSTACK_GROWTH < 0 ) - { - pxNewTCB->pxTopOfStack = pxPortInitialiseStack( pxTopOfStack, pxNewTCB->pxStack, pxTaskCode, pvParameters ); - } - #else /* portSTACK_GROWTH */ - { - pxNewTCB->pxTopOfStack = pxPortInitialiseStack( pxTopOfStack, pxNewTCB->pxEndOfStack, pxTaskCode, pvParameters ); - } - #endif /* portSTACK_GROWTH */ - } - #else /* portHAS_STACK_OVERFLOW_CHECKING */ - { - pxNewTCB->pxTopOfStack = pxPortInitialiseStack( pxTopOfStack, pxTaskCode, pvParameters ); - } - #endif /* portHAS_STACK_OVERFLOW_CHECKING */ - } - #endif /* portUSING_MPU_WRAPPERS */ - - if( pxCreatedTask != NULL ) - { - /* Pass the handle out in an anonymous way. The handle can be used to - change the created task's priority, delete the created task, etc.*/ - *pxCreatedTask = ( TaskHandle_t ) pxNewTCB; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } -} -/*-----------------------------------------------------------*/ - -static void prvAddNewTaskToReadyList( TCB_t *pxNewTCB ) -{ - /* Ensure interrupts don't access the task lists while the lists are being - updated. */ - taskENTER_CRITICAL(); - { - uxCurrentNumberOfTasks++; - if( pxCurrentTCB == NULL ) - { - /* There are no other tasks, or all the other tasks are in - the suspended state - make this the current task. */ - pxCurrentTCB = pxNewTCB; - - if( uxCurrentNumberOfTasks == ( UBaseType_t ) 1 ) - { - /* This is the first task to be created so do the preliminary - initialisation required. We will not recover if this call - fails, but we will report the failure. */ - prvInitialiseTaskLists(); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - /* If the scheduler is not already running, make this task the - current task if it is the highest priority task to be created - so far. */ - if( xSchedulerRunning == pdFALSE ) - { - if( pxCurrentTCB->uxPriority <= pxNewTCB->uxPriority ) - { - pxCurrentTCB = pxNewTCB; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - - uxTaskNumber++; - - #if ( configUSE_TRACE_FACILITY == 1 ) - { - /* Add a counter into the TCB for tracing only. */ - pxNewTCB->uxTCBNumber = uxTaskNumber; - } - #endif /* configUSE_TRACE_FACILITY */ - traceTASK_CREATE( pxNewTCB ); - - prvAddTaskToReadyList( pxNewTCB ); - - portSETUP_TCB( pxNewTCB ); - } - taskEXIT_CRITICAL(); - - if( xSchedulerRunning != pdFALSE ) - { - /* If the created task is of a higher priority than the current task - then it should run now. */ - if( pxCurrentTCB->uxPriority < pxNewTCB->uxPriority ) - { - taskYIELD_IF_USING_PREEMPTION(); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } -} -/*-----------------------------------------------------------*/ - -#if ( INCLUDE_vTaskDelete == 1 ) - - void vTaskDelete( TaskHandle_t xTaskToDelete ) - { - TCB_t *pxTCB; - - taskENTER_CRITICAL(); - { - /* If null is passed in here then it is the calling task that is - being deleted. */ - pxTCB = prvGetTCBFromHandle( xTaskToDelete ); - - /* Remove task from the ready/delayed list. */ - if( uxListRemove( &( pxTCB->xStateListItem ) ) == ( UBaseType_t ) 0 ) - { - taskRESET_READY_PRIORITY( pxTCB->uxPriority ); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - /* Is the task waiting on an event also? */ - if( listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) != NULL ) - { - ( void ) uxListRemove( &( pxTCB->xEventListItem ) ); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - /* Increment the uxTaskNumber also so kernel aware debuggers can - detect that the task lists need re-generating. This is done before - portPRE_TASK_DELETE_HOOK() as in the Windows port that macro will - not return. */ - uxTaskNumber++; - - if( pxTCB == pxCurrentTCB ) - { - /* A task is deleting itself. This cannot complete within the - task itself, as a context switch to another task is required. - Place the task in the termination list. The idle task will - check the termination list and free up any memory allocated by - the scheduler for the TCB and stack of the deleted task. */ - vListInsertEnd( &xTasksWaitingTermination, &( pxTCB->xStateListItem ) ); - - /* Increment the ucTasksDeleted variable so the idle task knows - there is a task that has been deleted and that it should therefore - check the xTasksWaitingTermination list. */ - ++uxDeletedTasksWaitingCleanUp; - - /* Call the delete hook before portPRE_TASK_DELETE_HOOK() as - portPRE_TASK_DELETE_HOOK() does not return in the Win32 port. */ - traceTASK_DELETE( pxTCB ); - - /* The pre-delete hook is primarily for the Windows simulator, - in which Windows specific clean up operations are performed, - after which it is not possible to yield away from this task - - hence xYieldPending is used to latch that a context switch is - required. */ - portPRE_TASK_DELETE_HOOK( pxTCB, &xYieldPending ); - } - else - { - --uxCurrentNumberOfTasks; - traceTASK_DELETE( pxTCB ); - prvDeleteTCB( pxTCB ); - - /* Reset the next expected unblock time in case it referred to - the task that has just been deleted. */ - prvResetNextTaskUnblockTime(); - } - } - taskEXIT_CRITICAL(); - - /* Force a reschedule if it is the currently running task that has just - been deleted. */ - if( xSchedulerRunning != pdFALSE ) - { - if( pxTCB == pxCurrentTCB ) - { - configASSERT( uxSchedulerSuspended == 0 ); - portYIELD_WITHIN_API(); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - } - -#endif /* INCLUDE_vTaskDelete */ -/*-----------------------------------------------------------*/ - -#if ( INCLUDE_vTaskDelayUntil == 1 ) - - void vTaskDelayUntil( TickType_t * const pxPreviousWakeTime, const TickType_t xTimeIncrement ) - { - TickType_t xTimeToWake; - BaseType_t xAlreadyYielded, xShouldDelay = pdFALSE; - - configASSERT( pxPreviousWakeTime ); - configASSERT( ( xTimeIncrement > 0U ) ); - configASSERT( uxSchedulerSuspended == 0 ); - - vTaskSuspendAll(); - { - /* Minor optimisation. The tick count cannot change in this - block. */ - const TickType_t xConstTickCount = xTickCount; - - /* Generate the tick time at which the task wants to wake. */ - xTimeToWake = *pxPreviousWakeTime + xTimeIncrement; - - if( xConstTickCount < *pxPreviousWakeTime ) - { - /* The tick count has overflowed since this function was - lasted called. In this case the only time we should ever - actually delay is if the wake time has also overflowed, - and the wake time is greater than the tick time. When this - is the case it is as if neither time had overflowed. */ - if( ( xTimeToWake < *pxPreviousWakeTime ) && ( xTimeToWake > xConstTickCount ) ) - { - xShouldDelay = pdTRUE; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - /* The tick time has not overflowed. In this case we will - delay if either the wake time has overflowed, and/or the - tick time is less than the wake time. */ - if( ( xTimeToWake < *pxPreviousWakeTime ) || ( xTimeToWake > xConstTickCount ) ) - { - xShouldDelay = pdTRUE; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - - /* Update the wake time ready for the next call. */ - *pxPreviousWakeTime = xTimeToWake; - - if( xShouldDelay != pdFALSE ) - { - traceTASK_DELAY_UNTIL( xTimeToWake ); - - /* prvAddCurrentTaskToDelayedList() needs the block time, not - the time to wake, so subtract the current tick count. */ - prvAddCurrentTaskToDelayedList( xTimeToWake - xConstTickCount, pdFALSE ); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - xAlreadyYielded = xTaskResumeAll(); - - /* Force a reschedule if xTaskResumeAll has not already done so, we may - have put ourselves to sleep. */ - if( xAlreadyYielded == pdFALSE ) - { - portYIELD_WITHIN_API(); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - -#endif /* INCLUDE_vTaskDelayUntil */ -/*-----------------------------------------------------------*/ - -#if ( INCLUDE_vTaskDelay == 1 ) - - void vTaskDelay( const TickType_t xTicksToDelay ) - { - BaseType_t xAlreadyYielded = pdFALSE; - - /* A delay time of zero just forces a reschedule. */ - if( xTicksToDelay > ( TickType_t ) 0U ) - { - configASSERT( uxSchedulerSuspended == 0 ); - vTaskSuspendAll(); - { - traceTASK_DELAY(); - - /* A task that is removed from the event list while the - scheduler is suspended will not get placed in the ready - list or removed from the blocked list until the scheduler - is resumed. - - This task cannot be in an event list as it is the currently - executing task. */ - prvAddCurrentTaskToDelayedList( xTicksToDelay, pdFALSE ); - } - xAlreadyYielded = xTaskResumeAll(); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - /* Force a reschedule if xTaskResumeAll has not already done so, we may - have put ourselves to sleep. */ - if( xAlreadyYielded == pdFALSE ) - { - portYIELD_WITHIN_API(); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - -#endif /* INCLUDE_vTaskDelay */ -/*-----------------------------------------------------------*/ - -#if( ( INCLUDE_eTaskGetState == 1 ) || ( configUSE_TRACE_FACILITY == 1 ) || ( INCLUDE_xTaskAbortDelay == 1 ) ) - - eTaskState eTaskGetState( TaskHandle_t xTask ) - { - eTaskState eReturn; - List_t const * pxStateList, *pxDelayedList, *pxOverflowedDelayedList; - const TCB_t * const pxTCB = xTask; - - configASSERT( pxTCB ); - - if( pxTCB == pxCurrentTCB ) - { - /* The task calling this function is querying its own state. */ - eReturn = eRunning; - } - else - { - taskENTER_CRITICAL(); - { - pxStateList = listLIST_ITEM_CONTAINER( &( pxTCB->xStateListItem ) ); - pxDelayedList = pxDelayedTaskList; - pxOverflowedDelayedList = pxOverflowDelayedTaskList; - } - taskEXIT_CRITICAL(); - - if( ( pxStateList == pxDelayedList ) || ( pxStateList == pxOverflowedDelayedList ) ) - { - /* The task being queried is referenced from one of the Blocked - lists. */ - eReturn = eBlocked; - } - - #if ( INCLUDE_vTaskSuspend == 1 ) - else if( pxStateList == &xSuspendedTaskList ) - { - /* The task being queried is referenced from the suspended - list. Is it genuinely suspended or is it blocked - indefinitely? */ - if( listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) == NULL ) - { - #if( configUSE_TASK_NOTIFICATIONS == 1 ) - { - /* The task does not appear on the event list item of - and of the RTOS objects, but could still be in the - blocked state if it is waiting on its notification - rather than waiting on an object. */ - if( pxTCB->ucNotifyState == taskWAITING_NOTIFICATION ) - { - eReturn = eBlocked; - } - else - { - eReturn = eSuspended; - } - } - #else - { - eReturn = eSuspended; - } - #endif - } - else - { - eReturn = eBlocked; - } - } - #endif - - #if ( INCLUDE_vTaskDelete == 1 ) - else if( ( pxStateList == &xTasksWaitingTermination ) || ( pxStateList == NULL ) ) - { - /* The task being queried is referenced from the deleted - tasks list, or it is not referenced from any lists at - all. */ - eReturn = eDeleted; - } - #endif - - else /*lint !e525 Negative indentation is intended to make use of pre-processor clearer. */ - { - /* If the task is not in any other state, it must be in the - Ready (including pending ready) state. */ - eReturn = eReady; - } - } - - return eReturn; - } /*lint !e818 xTask cannot be a pointer to const because it is a typedef. */ - -#endif /* INCLUDE_eTaskGetState */ -/*-----------------------------------------------------------*/ - -#if ( INCLUDE_uxTaskPriorityGet == 1 ) - - UBaseType_t uxTaskPriorityGet( const TaskHandle_t xTask ) - { - TCB_t const *pxTCB; - UBaseType_t uxReturn; - - taskENTER_CRITICAL(); - { - /* If null is passed in here then it is the priority of the task - that called uxTaskPriorityGet() that is being queried. */ - pxTCB = prvGetTCBFromHandle( xTask ); - uxReturn = pxTCB->uxPriority; - } - taskEXIT_CRITICAL(); - - return uxReturn; - } - -#endif /* INCLUDE_uxTaskPriorityGet */ -/*-----------------------------------------------------------*/ - -#if ( INCLUDE_uxTaskPriorityGet == 1 ) - - UBaseType_t uxTaskPriorityGetFromISR( const TaskHandle_t xTask ) - { - TCB_t const *pxTCB; - UBaseType_t uxReturn, uxSavedInterruptState; - - /* RTOS ports that support interrupt nesting have the concept of a - maximum system call (or maximum API call) interrupt priority. - Interrupts that are above the maximum system call priority are keep - permanently enabled, even when the RTOS kernel is in a critical section, - but cannot make any calls to FreeRTOS API functions. If configASSERT() - is defined in FreeRTOSConfig.h then - portASSERT_IF_INTERRUPT_PRIORITY_INVALID() will result in an assertion - failure if a FreeRTOS API function is called from an interrupt that has - been assigned a priority above the configured maximum system call - priority. Only FreeRTOS functions that end in FromISR can be called - from interrupts that have been assigned a priority at or (logically) - below the maximum system call interrupt priority. FreeRTOS maintains a - separate interrupt safe API to ensure interrupt entry is as fast and as - simple as possible. More information (albeit Cortex-M specific) is - provided on the following link: - https://www.freertos.org/RTOS-Cortex-M3-M4.html */ - portASSERT_IF_INTERRUPT_PRIORITY_INVALID(); - - uxSavedInterruptState = portSET_INTERRUPT_MASK_FROM_ISR(); - { - /* If null is passed in here then it is the priority of the calling - task that is being queried. */ - pxTCB = prvGetTCBFromHandle( xTask ); - uxReturn = pxTCB->uxPriority; - } - portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptState ); - - return uxReturn; - } - -#endif /* INCLUDE_uxTaskPriorityGet */ -/*-----------------------------------------------------------*/ - -#if ( INCLUDE_vTaskPrioritySet == 1 ) - - void vTaskPrioritySet( TaskHandle_t xTask, UBaseType_t uxNewPriority ) - { - TCB_t *pxTCB; - UBaseType_t uxCurrentBasePriority, uxPriorityUsedOnEntry; - BaseType_t xYieldRequired = pdFALSE; - - configASSERT( ( uxNewPriority < configMAX_PRIORITIES ) ); - - /* Ensure the new priority is valid. */ - if( uxNewPriority >= ( UBaseType_t ) configMAX_PRIORITIES ) - { - uxNewPriority = ( UBaseType_t ) configMAX_PRIORITIES - ( UBaseType_t ) 1U; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - taskENTER_CRITICAL(); - { - /* If null is passed in here then it is the priority of the calling - task that is being changed. */ - pxTCB = prvGetTCBFromHandle( xTask ); - - traceTASK_PRIORITY_SET( pxTCB, uxNewPriority ); - - #if ( configUSE_MUTEXES == 1 ) - { - uxCurrentBasePriority = pxTCB->uxBasePriority; - } - #else - { - uxCurrentBasePriority = pxTCB->uxPriority; - } - #endif - - if( uxCurrentBasePriority != uxNewPriority ) - { - /* The priority change may have readied a task of higher - priority than the calling task. */ - if( uxNewPriority > uxCurrentBasePriority ) - { - if( pxTCB != pxCurrentTCB ) - { - /* The priority of a task other than the currently - running task is being raised. Is the priority being - raised above that of the running task? */ - if( uxNewPriority >= pxCurrentTCB->uxPriority ) - { - xYieldRequired = pdTRUE; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - /* The priority of the running task is being raised, - but the running task must already be the highest - priority task able to run so no yield is required. */ - } - } - else if( pxTCB == pxCurrentTCB ) - { - /* Setting the priority of the running task down means - there may now be another task of higher priority that - is ready to execute. */ - xYieldRequired = pdTRUE; - } - else - { - /* Setting the priority of any other task down does not - require a yield as the running task must be above the - new priority of the task being modified. */ - } - - /* Remember the ready list the task might be referenced from - before its uxPriority member is changed so the - taskRESET_READY_PRIORITY() macro can function correctly. */ - uxPriorityUsedOnEntry = pxTCB->uxPriority; - - #if ( configUSE_MUTEXES == 1 ) - { - /* Only change the priority being used if the task is not - currently using an inherited priority. */ - if( pxTCB->uxBasePriority == pxTCB->uxPriority ) - { - pxTCB->uxPriority = uxNewPriority; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - /* The base priority gets set whatever. */ - pxTCB->uxBasePriority = uxNewPriority; - } - #else - { - pxTCB->uxPriority = uxNewPriority; - } - #endif - - /* Only reset the event list item value if the value is not - being used for anything else. */ - if( ( listGET_LIST_ITEM_VALUE( &( pxTCB->xEventListItem ) ) & taskEVENT_LIST_ITEM_VALUE_IN_USE ) == 0UL ) - { - listSET_LIST_ITEM_VALUE( &( pxTCB->xEventListItem ), ( ( TickType_t ) configMAX_PRIORITIES - ( TickType_t ) uxNewPriority ) ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - /* If the task is in the blocked or suspended list we need do - nothing more than change its priority variable. However, if - the task is in a ready list it needs to be removed and placed - in the list appropriate to its new priority. */ - if( listIS_CONTAINED_WITHIN( &( pxReadyTasksLists[ uxPriorityUsedOnEntry ] ), &( pxTCB->xStateListItem ) ) != pdFALSE ) - { - /* The task is currently in its ready list - remove before - adding it to it's new ready list. As we are in a critical - section we can do this even if the scheduler is suspended. */ - if( uxListRemove( &( pxTCB->xStateListItem ) ) == ( UBaseType_t ) 0 ) - { - /* It is known that the task is in its ready list so - there is no need to check again and the port level - reset macro can be called directly. */ - portRESET_READY_PRIORITY( uxPriorityUsedOnEntry, uxTopReadyPriority ); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - prvAddTaskToReadyList( pxTCB ); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - if( xYieldRequired != pdFALSE ) - { - taskYIELD_IF_USING_PREEMPTION(); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - /* Remove compiler warning about unused variables when the port - optimised task selection is not being used. */ - ( void ) uxPriorityUsedOnEntry; - } - } - taskEXIT_CRITICAL(); - } - -#endif /* INCLUDE_vTaskPrioritySet */ -/*-----------------------------------------------------------*/ - -#if ( INCLUDE_vTaskSuspend == 1 ) - - void vTaskSuspend( TaskHandle_t xTaskToSuspend ) - { - TCB_t *pxTCB; - - taskENTER_CRITICAL(); - { - /* If null is passed in here then it is the running task that is - being suspended. */ - pxTCB = prvGetTCBFromHandle( xTaskToSuspend ); - - traceTASK_SUSPEND( pxTCB ); - - /* Remove task from the ready/delayed list and place in the - suspended list. */ - if( uxListRemove( &( pxTCB->xStateListItem ) ) == ( UBaseType_t ) 0 ) - { - taskRESET_READY_PRIORITY( pxTCB->uxPriority ); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - /* Is the task waiting on an event also? */ - if( listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) != NULL ) - { - ( void ) uxListRemove( &( pxTCB->xEventListItem ) ); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - vListInsertEnd( &xSuspendedTaskList, &( pxTCB->xStateListItem ) ); - - #if( configUSE_TASK_NOTIFICATIONS == 1 ) - { - if( pxTCB->ucNotifyState == taskWAITING_NOTIFICATION ) - { - /* The task was blocked to wait for a notification, but is - now suspended, so no notification was received. */ - pxTCB->ucNotifyState = taskNOT_WAITING_NOTIFICATION; - } - } - #endif - } - taskEXIT_CRITICAL(); - - if( xSchedulerRunning != pdFALSE ) - { - /* Reset the next expected unblock time in case it referred to the - task that is now in the Suspended state. */ - taskENTER_CRITICAL(); - { - prvResetNextTaskUnblockTime(); - } - taskEXIT_CRITICAL(); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - if( pxTCB == pxCurrentTCB ) - { - if( xSchedulerRunning != pdFALSE ) - { - /* The current task has just been suspended. */ - configASSERT( uxSchedulerSuspended == 0 ); - portYIELD_WITHIN_API(); - } - else - { - /* The scheduler is not running, but the task that was pointed - to by pxCurrentTCB has just been suspended and pxCurrentTCB - must be adjusted to point to a different task. */ - if( listCURRENT_LIST_LENGTH( &xSuspendedTaskList ) == uxCurrentNumberOfTasks ) /*lint !e931 Right has no side effect, just volatile. */ - { - /* No other tasks are ready, so set pxCurrentTCB back to - NULL so when the next task is created pxCurrentTCB will - be set to point to it no matter what its relative priority - is. */ - pxCurrentTCB = NULL; - } - else - { - vTaskSwitchContext(); - } - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - -#endif /* INCLUDE_vTaskSuspend */ -/*-----------------------------------------------------------*/ - -#if ( INCLUDE_vTaskSuspend == 1 ) - - static BaseType_t prvTaskIsTaskSuspended( const TaskHandle_t xTask ) - { - BaseType_t xReturn = pdFALSE; - const TCB_t * const pxTCB = xTask; - - /* Accesses xPendingReadyList so must be called from a critical - section. */ - - /* It does not make sense to check if the calling task is suspended. */ - configASSERT( xTask ); - - /* Is the task being resumed actually in the suspended list? */ - if( listIS_CONTAINED_WITHIN( &xSuspendedTaskList, &( pxTCB->xStateListItem ) ) != pdFALSE ) - { - /* Has the task already been resumed from within an ISR? */ - if( listIS_CONTAINED_WITHIN( &xPendingReadyList, &( pxTCB->xEventListItem ) ) == pdFALSE ) - { - /* Is it in the suspended list because it is in the Suspended - state, or because is is blocked with no timeout? */ - if( listIS_CONTAINED_WITHIN( NULL, &( pxTCB->xEventListItem ) ) != pdFALSE ) /*lint !e961. The cast is only redundant when NULL is used. */ - { - xReturn = pdTRUE; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - return xReturn; - } /*lint !e818 xTask cannot be a pointer to const because it is a typedef. */ - -#endif /* INCLUDE_vTaskSuspend */ -/*-----------------------------------------------------------*/ - -#if ( INCLUDE_vTaskSuspend == 1 ) - - void vTaskResume( TaskHandle_t xTaskToResume ) - { - TCB_t * const pxTCB = xTaskToResume; - - /* It does not make sense to resume the calling task. */ - configASSERT( xTaskToResume ); - - /* The parameter cannot be NULL as it is impossible to resume the - currently executing task. */ - if( ( pxTCB != pxCurrentTCB ) && ( pxTCB != NULL ) ) - { - taskENTER_CRITICAL(); - { - if( prvTaskIsTaskSuspended( pxTCB ) != pdFALSE ) - { - traceTASK_RESUME( pxTCB ); - - /* The ready list can be accessed even if the scheduler is - suspended because this is inside a critical section. */ - ( void ) uxListRemove( &( pxTCB->xStateListItem ) ); - prvAddTaskToReadyList( pxTCB ); - - /* A higher priority task may have just been resumed. */ - if( pxTCB->uxPriority >= pxCurrentTCB->uxPriority ) - { - /* This yield may not cause the task just resumed to run, - but will leave the lists in the correct state for the - next yield. */ - taskYIELD_IF_USING_PREEMPTION(); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - taskEXIT_CRITICAL(); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - -#endif /* INCLUDE_vTaskSuspend */ - -/*-----------------------------------------------------------*/ - -#if ( ( INCLUDE_xTaskResumeFromISR == 1 ) && ( INCLUDE_vTaskSuspend == 1 ) ) - - BaseType_t xTaskResumeFromISR( TaskHandle_t xTaskToResume ) - { - BaseType_t xYieldRequired = pdFALSE; - TCB_t * const pxTCB = xTaskToResume; - UBaseType_t uxSavedInterruptStatus; - - configASSERT( xTaskToResume ); - - /* RTOS ports that support interrupt nesting have the concept of a - maximum system call (or maximum API call) interrupt priority. - Interrupts that are above the maximum system call priority are keep - permanently enabled, even when the RTOS kernel is in a critical section, - but cannot make any calls to FreeRTOS API functions. If configASSERT() - is defined in FreeRTOSConfig.h then - portASSERT_IF_INTERRUPT_PRIORITY_INVALID() will result in an assertion - failure if a FreeRTOS API function is called from an interrupt that has - been assigned a priority above the configured maximum system call - priority. Only FreeRTOS functions that end in FromISR can be called - from interrupts that have been assigned a priority at or (logically) - below the maximum system call interrupt priority. FreeRTOS maintains a - separate interrupt safe API to ensure interrupt entry is as fast and as - simple as possible. More information (albeit Cortex-M specific) is - provided on the following link: - https://www.freertos.org/RTOS-Cortex-M3-M4.html */ - portASSERT_IF_INTERRUPT_PRIORITY_INVALID(); - - uxSavedInterruptStatus = portSET_INTERRUPT_MASK_FROM_ISR(); - { - if( prvTaskIsTaskSuspended( pxTCB ) != pdFALSE ) - { - traceTASK_RESUME_FROM_ISR( pxTCB ); - - /* Check the ready lists can be accessed. */ - if( uxSchedulerSuspended == ( UBaseType_t ) pdFALSE ) - { - /* Ready lists can be accessed so move the task from the - suspended list to the ready list directly. */ - if( pxTCB->uxPriority >= pxCurrentTCB->uxPriority ) - { - xYieldRequired = pdTRUE; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - ( void ) uxListRemove( &( pxTCB->xStateListItem ) ); - prvAddTaskToReadyList( pxTCB ); - } - else - { - /* The delayed or ready lists cannot be accessed so the task - is held in the pending ready list until the scheduler is - unsuspended. */ - vListInsertEnd( &( xPendingReadyList ), &( pxTCB->xEventListItem ) ); - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus ); - - return xYieldRequired; - } - -#endif /* ( ( INCLUDE_xTaskResumeFromISR == 1 ) && ( INCLUDE_vTaskSuspend == 1 ) ) */ -/*-----------------------------------------------------------*/ - -void vTaskStartScheduler( void ) -{ -BaseType_t xReturn; - - /* Add the idle task at the lowest priority. */ - #if( configSUPPORT_STATIC_ALLOCATION == 1 ) - { - StaticTask_t *pxIdleTaskTCBBuffer = NULL; - StackType_t *pxIdleTaskStackBuffer = NULL; - uint32_t ulIdleTaskStackSize; - - /* The Idle task is created using user provided RAM - obtain the - address of the RAM then create the idle task. */ - vApplicationGetIdleTaskMemory( &pxIdleTaskTCBBuffer, &pxIdleTaskStackBuffer, &ulIdleTaskStackSize ); - xIdleTaskHandle = xTaskCreateStatic( prvIdleTask, - configIDLE_TASK_NAME, - ulIdleTaskStackSize, - ( void * ) NULL, /*lint !e961. The cast is not redundant for all compilers. */ - portPRIVILEGE_BIT, /* In effect ( tskIDLE_PRIORITY | portPRIVILEGE_BIT ), but tskIDLE_PRIORITY is zero. */ - pxIdleTaskStackBuffer, - pxIdleTaskTCBBuffer ); /*lint !e961 MISRA exception, justified as it is not a redundant explicit cast to all supported compilers. */ - - if( xIdleTaskHandle != NULL ) - { - xReturn = pdPASS; - } - else - { - xReturn = pdFAIL; - } - } - #else - { - /* The Idle task is being created using dynamically allocated RAM. */ - xReturn = xTaskCreate( prvIdleTask, - configIDLE_TASK_NAME, - configMINIMAL_STACK_SIZE, - ( void * ) NULL, - portPRIVILEGE_BIT, /* In effect ( tskIDLE_PRIORITY | portPRIVILEGE_BIT ), but tskIDLE_PRIORITY is zero. */ - &xIdleTaskHandle ); /*lint !e961 MISRA exception, justified as it is not a redundant explicit cast to all supported compilers. */ - } - #endif /* configSUPPORT_STATIC_ALLOCATION */ - - #if ( configUSE_TIMERS == 1 ) - { - if( xReturn == pdPASS ) - { - xReturn = xTimerCreateTimerTask(); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - #endif /* configUSE_TIMERS */ - - if( xReturn == pdPASS ) - { - /* freertos_tasks_c_additions_init() should only be called if the user - definable macro FREERTOS_TASKS_C_ADDITIONS_INIT() is defined, as that is - the only macro called by the function. */ - #ifdef FREERTOS_TASKS_C_ADDITIONS_INIT - { - freertos_tasks_c_additions_init(); - } - #endif - - /* Interrupts are turned off here, to ensure a tick does not occur - before or during the call to xPortStartScheduler(). The stacks of - the created tasks contain a status word with interrupts switched on - so interrupts will automatically get re-enabled when the first task - starts to run. */ - portDISABLE_INTERRUPTS(); - - #if ( configUSE_NEWLIB_REENTRANT == 1 ) - { - /* Switch Newlib's _impure_ptr variable to point to the _reent - structure specific to the task that will run first. - See the third party link http://www.nadler.com/embedded/newlibAndFreeRTOS.html - for additional information. */ - _impure_ptr = &( pxCurrentTCB->xNewLib_reent ); - } - #endif /* configUSE_NEWLIB_REENTRANT */ - - xNextTaskUnblockTime = portMAX_DELAY; - xSchedulerRunning = pdTRUE; - xTickCount = ( TickType_t ) configINITIAL_TICK_COUNT; - - /* If configGENERATE_RUN_TIME_STATS is defined then the following - macro must be defined to configure the timer/counter used to generate - the run time counter time base. NOTE: If configGENERATE_RUN_TIME_STATS - is set to 0 and the following line fails to build then ensure you do not - have portCONFIGURE_TIMER_FOR_RUN_TIME_STATS() defined in your - FreeRTOSConfig.h file. */ - portCONFIGURE_TIMER_FOR_RUN_TIME_STATS(); - - traceTASK_SWITCHED_IN(); - - /* Setting up the timer tick is hardware specific and thus in the - portable interface. */ - if( xPortStartScheduler() != pdFALSE ) - { - /* Should not reach here as if the scheduler is running the - function will not return. */ - } - else - { - /* Should only reach here if a task calls xTaskEndScheduler(). */ - } - } - else - { - /* This line will only be reached if the kernel could not be started, - because there was not enough FreeRTOS heap to create the idle task - or the timer task. */ - configASSERT( xReturn != errCOULD_NOT_ALLOCATE_REQUIRED_MEMORY ); - } - - /* Prevent compiler warnings if INCLUDE_xTaskGetIdleTaskHandle is set to 0, - meaning xIdleTaskHandle is not used anywhere else. */ - ( void ) xIdleTaskHandle; -} -/*-----------------------------------------------------------*/ - -void vTaskEndScheduler( void ) -{ - /* Stop the scheduler interrupts and call the portable scheduler end - routine so the original ISRs can be restored if necessary. The port - layer must ensure interrupts enable bit is left in the correct state. */ - portDISABLE_INTERRUPTS(); - xSchedulerRunning = pdFALSE; - vPortEndScheduler(); -} -/*----------------------------------------------------------*/ - -void vTaskSuspendAll( void ) -{ - /* A critical section is not required as the variable is of type - BaseType_t. Please read Richard Barry's reply in the following link to a - post in the FreeRTOS support forum before reporting this as a bug! - - http://goo.gl/wu4acr */ - - /* portSOFRWARE_BARRIER() is only implemented for emulated/simulated ports that - do not otherwise exhibit real time behaviour. */ - portSOFTWARE_BARRIER(); - - /* The scheduler is suspended if uxSchedulerSuspended is non-zero. An increment - is used to allow calls to vTaskSuspendAll() to nest. */ - ++uxSchedulerSuspended; - - /* Enforces ordering for ports and optimised compilers that may otherwise place - the above increment elsewhere. */ - portMEMORY_BARRIER(); -} -/*----------------------------------------------------------*/ - -#if ( configUSE_TICKLESS_IDLE != 0 ) - - static TickType_t prvGetExpectedIdleTime( void ) - { - TickType_t xReturn; - UBaseType_t uxHigherPriorityReadyTasks = pdFALSE; - - /* uxHigherPriorityReadyTasks takes care of the case where - configUSE_PREEMPTION is 0, so there may be tasks above the idle priority - task that are in the Ready state, even though the idle task is - running. */ - #if( configUSE_PORT_OPTIMISED_TASK_SELECTION == 0 ) - { - if( uxTopReadyPriority > tskIDLE_PRIORITY ) - { - uxHigherPriorityReadyTasks = pdTRUE; - } - } - #else - { - const UBaseType_t uxLeastSignificantBit = ( UBaseType_t ) 0x01; - - /* When port optimised task selection is used the uxTopReadyPriority - variable is used as a bit map. If bits other than the least - significant bit are set then there are tasks that have a priority - above the idle priority that are in the Ready state. This takes - care of the case where the co-operative scheduler is in use. */ - if( uxTopReadyPriority > uxLeastSignificantBit ) - { - uxHigherPriorityReadyTasks = pdTRUE; - } - } - #endif - - if( pxCurrentTCB->uxPriority > tskIDLE_PRIORITY ) - { - xReturn = 0; - } - else if( listCURRENT_LIST_LENGTH( &( pxReadyTasksLists[ tskIDLE_PRIORITY ] ) ) > 1 ) - { - /* There are other idle priority tasks in the ready state. If - time slicing is used then the very next tick interrupt must be - processed. */ - xReturn = 0; - } - else if( uxHigherPriorityReadyTasks != pdFALSE ) - { - /* There are tasks in the Ready state that have a priority above the - idle priority. This path can only be reached if - configUSE_PREEMPTION is 0. */ - xReturn = 0; - } - else - { - xReturn = xNextTaskUnblockTime - xTickCount; - } - - return xReturn; - } - -#endif /* configUSE_TICKLESS_IDLE */ -/*----------------------------------------------------------*/ - -BaseType_t xTaskResumeAll( void ) -{ -TCB_t *pxTCB = NULL; -BaseType_t xAlreadyYielded = pdFALSE; - - /* If uxSchedulerSuspended is zero then this function does not match a - previous call to vTaskSuspendAll(). */ - configASSERT( uxSchedulerSuspended ); - - /* It is possible that an ISR caused a task to be removed from an event - list while the scheduler was suspended. If this was the case then the - removed task will have been added to the xPendingReadyList. Once the - scheduler has been resumed it is safe to move all the pending ready - tasks from this list into their appropriate ready list. */ - taskENTER_CRITICAL(); - { - --uxSchedulerSuspended; - - if( uxSchedulerSuspended == ( UBaseType_t ) pdFALSE ) - { - if( uxCurrentNumberOfTasks > ( UBaseType_t ) 0U ) - { - /* Move any readied tasks from the pending list into the - appropriate ready list. */ - while( listLIST_IS_EMPTY( &xPendingReadyList ) == pdFALSE ) - { - pxTCB = listGET_OWNER_OF_HEAD_ENTRY( ( &xPendingReadyList ) ); /*lint !e9079 void * is used as this macro is used with timers and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ - ( void ) uxListRemove( &( pxTCB->xEventListItem ) ); - ( void ) uxListRemove( &( pxTCB->xStateListItem ) ); - prvAddTaskToReadyList( pxTCB ); - - /* If the moved task has a priority higher than the current - task then a yield must be performed. */ - if( pxTCB->uxPriority >= pxCurrentTCB->uxPriority ) - { - xYieldPending = pdTRUE; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - - if( pxTCB != NULL ) - { - /* A task was unblocked while the scheduler was suspended, - which may have prevented the next unblock time from being - re-calculated, in which case re-calculate it now. Mainly - important for low power tickless implementations, where - this can prevent an unnecessary exit from low power - state. */ - prvResetNextTaskUnblockTime(); - } - - /* If any ticks occurred while the scheduler was suspended then - they should be processed now. This ensures the tick count does - not slip, and that any delayed tasks are resumed at the correct - time. */ - { - TickType_t xPendedCounts = xPendedTicks; /* Non-volatile copy. */ - - if( xPendedCounts > ( TickType_t ) 0U ) - { - do - { - if( xTaskIncrementTick() != pdFALSE ) - { - xYieldPending = pdTRUE; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - --xPendedCounts; - } while( xPendedCounts > ( TickType_t ) 0U ); - - xPendedTicks = 0; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - - if( xYieldPending != pdFALSE ) - { - #if( configUSE_PREEMPTION != 0 ) - { - xAlreadyYielded = pdTRUE; - } - #endif - taskYIELD_IF_USING_PREEMPTION(); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - taskEXIT_CRITICAL(); - - return xAlreadyYielded; -} -/*-----------------------------------------------------------*/ - -TickType_t xTaskGetTickCount( void ) -{ -TickType_t xTicks; - - /* Critical section required if running on a 16 bit processor. */ - portTICK_TYPE_ENTER_CRITICAL(); - { - xTicks = xTickCount; - } - portTICK_TYPE_EXIT_CRITICAL(); - - return xTicks; -} -/*-----------------------------------------------------------*/ - -TickType_t xTaskGetTickCountFromISR( void ) -{ -TickType_t xReturn; -UBaseType_t uxSavedInterruptStatus; - - /* RTOS ports that support interrupt nesting have the concept of a maximum - system call (or maximum API call) interrupt priority. Interrupts that are - above the maximum system call priority are kept permanently enabled, even - when the RTOS kernel is in a critical section, but cannot make any calls to - FreeRTOS API functions. If configASSERT() is defined in FreeRTOSConfig.h - then portASSERT_IF_INTERRUPT_PRIORITY_INVALID() will result in an assertion - failure if a FreeRTOS API function is called from an interrupt that has been - assigned a priority above the configured maximum system call priority. - Only FreeRTOS functions that end in FromISR can be called from interrupts - that have been assigned a priority at or (logically) below the maximum - system call interrupt priority. FreeRTOS maintains a separate interrupt - safe API to ensure interrupt entry is as fast and as simple as possible. - More information (albeit Cortex-M specific) is provided on the following - link: https://www.freertos.org/RTOS-Cortex-M3-M4.html */ - portASSERT_IF_INTERRUPT_PRIORITY_INVALID(); - - uxSavedInterruptStatus = portTICK_TYPE_SET_INTERRUPT_MASK_FROM_ISR(); - { - xReturn = xTickCount; - } - portTICK_TYPE_CLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus ); - - return xReturn; -} -/*-----------------------------------------------------------*/ - -UBaseType_t uxTaskGetNumberOfTasks( void ) -{ - /* A critical section is not required because the variables are of type - BaseType_t. */ - return uxCurrentNumberOfTasks; -} -/*-----------------------------------------------------------*/ - -char *pcTaskGetName( TaskHandle_t xTaskToQuery ) /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ -{ -TCB_t *pxTCB; - - /* If null is passed in here then the name of the calling task is being - queried. */ - pxTCB = prvGetTCBFromHandle( xTaskToQuery ); - configASSERT( pxTCB ); - return &( pxTCB->pcTaskName[ 0 ] ); -} -/*-----------------------------------------------------------*/ - -#if ( INCLUDE_xTaskGetHandle == 1 ) - - static TCB_t *prvSearchForNameWithinSingleList( List_t *pxList, const char pcNameToQuery[] ) - { - TCB_t *pxNextTCB, *pxFirstTCB, *pxReturn = NULL; - UBaseType_t x; - char cNextChar; - BaseType_t xBreakLoop; - - /* This function is called with the scheduler suspended. */ - - if( listCURRENT_LIST_LENGTH( pxList ) > ( UBaseType_t ) 0 ) - { - listGET_OWNER_OF_NEXT_ENTRY( pxFirstTCB, pxList ); /*lint !e9079 void * is used as this macro is used with timers and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ - - do - { - listGET_OWNER_OF_NEXT_ENTRY( pxNextTCB, pxList ); /*lint !e9079 void * is used as this macro is used with timers and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ - - /* Check each character in the name looking for a match or - mismatch. */ - xBreakLoop = pdFALSE; - for( x = ( UBaseType_t ) 0; x < ( UBaseType_t ) configMAX_TASK_NAME_LEN; x++ ) - { - cNextChar = pxNextTCB->pcTaskName[ x ]; - - if( cNextChar != pcNameToQuery[ x ] ) - { - /* Characters didn't match. */ - xBreakLoop = pdTRUE; - } - else if( cNextChar == ( char ) 0x00 ) - { - /* Both strings terminated, a match must have been - found. */ - pxReturn = pxNextTCB; - xBreakLoop = pdTRUE; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - if( xBreakLoop != pdFALSE ) - { - break; - } - } - - if( pxReturn != NULL ) - { - /* The handle has been found. */ - break; - } - - } while( pxNextTCB != pxFirstTCB ); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - return pxReturn; - } - -#endif /* INCLUDE_xTaskGetHandle */ -/*-----------------------------------------------------------*/ - -#if ( INCLUDE_xTaskGetHandle == 1 ) - - TaskHandle_t xTaskGetHandle( const char *pcNameToQuery ) /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ - { - UBaseType_t uxQueue = configMAX_PRIORITIES; - TCB_t* pxTCB; - - /* Task names will be truncated to configMAX_TASK_NAME_LEN - 1 bytes. */ - configASSERT( strlen( pcNameToQuery ) < configMAX_TASK_NAME_LEN ); - - vTaskSuspendAll(); - { - /* Search the ready lists. */ - do - { - uxQueue--; - pxTCB = prvSearchForNameWithinSingleList( ( List_t * ) &( pxReadyTasksLists[ uxQueue ] ), pcNameToQuery ); - - if( pxTCB != NULL ) - { - /* Found the handle. */ - break; - } - - } while( uxQueue > ( UBaseType_t ) tskIDLE_PRIORITY ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ - - /* Search the delayed lists. */ - if( pxTCB == NULL ) - { - pxTCB = prvSearchForNameWithinSingleList( ( List_t * ) pxDelayedTaskList, pcNameToQuery ); - } - - if( pxTCB == NULL ) - { - pxTCB = prvSearchForNameWithinSingleList( ( List_t * ) pxOverflowDelayedTaskList, pcNameToQuery ); - } - - #if ( INCLUDE_vTaskSuspend == 1 ) - { - if( pxTCB == NULL ) - { - /* Search the suspended list. */ - pxTCB = prvSearchForNameWithinSingleList( &xSuspendedTaskList, pcNameToQuery ); - } - } - #endif - - #if( INCLUDE_vTaskDelete == 1 ) - { - if( pxTCB == NULL ) - { - /* Search the deleted list. */ - pxTCB = prvSearchForNameWithinSingleList( &xTasksWaitingTermination, pcNameToQuery ); - } - } - #endif - } - ( void ) xTaskResumeAll(); - - return pxTCB; - } - -#endif /* INCLUDE_xTaskGetHandle */ -/*-----------------------------------------------------------*/ - -#if ( configUSE_TRACE_FACILITY == 1 ) - - UBaseType_t uxTaskGetSystemState( TaskStatus_t * const pxTaskStatusArray, const UBaseType_t uxArraySize, uint32_t * const pulTotalRunTime ) - { - UBaseType_t uxTask = 0, uxQueue = configMAX_PRIORITIES; - - vTaskSuspendAll(); - { - /* Is there a space in the array for each task in the system? */ - if( uxArraySize >= uxCurrentNumberOfTasks ) - { - /* Fill in an TaskStatus_t structure with information on each - task in the Ready state. */ - do - { - uxQueue--; - uxTask += prvListTasksWithinSingleList( &( pxTaskStatusArray[ uxTask ] ), &( pxReadyTasksLists[ uxQueue ] ), eReady ); - - } while( uxQueue > ( UBaseType_t ) tskIDLE_PRIORITY ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ - - /* Fill in an TaskStatus_t structure with information on each - task in the Blocked state. */ - uxTask += prvListTasksWithinSingleList( &( pxTaskStatusArray[ uxTask ] ), ( List_t * ) pxDelayedTaskList, eBlocked ); - uxTask += prvListTasksWithinSingleList( &( pxTaskStatusArray[ uxTask ] ), ( List_t * ) pxOverflowDelayedTaskList, eBlocked ); - - #if( INCLUDE_vTaskDelete == 1 ) - { - /* Fill in an TaskStatus_t structure with information on - each task that has been deleted but not yet cleaned up. */ - uxTask += prvListTasksWithinSingleList( &( pxTaskStatusArray[ uxTask ] ), &xTasksWaitingTermination, eDeleted ); - } - #endif - - #if ( INCLUDE_vTaskSuspend == 1 ) - { - /* Fill in an TaskStatus_t structure with information on - each task in the Suspended state. */ - uxTask += prvListTasksWithinSingleList( &( pxTaskStatusArray[ uxTask ] ), &xSuspendedTaskList, eSuspended ); - } - #endif - - #if ( configGENERATE_RUN_TIME_STATS == 1) - { - if( pulTotalRunTime != NULL ) - { - #ifdef portALT_GET_RUN_TIME_COUNTER_VALUE - portALT_GET_RUN_TIME_COUNTER_VALUE( ( *pulTotalRunTime ) ); - #else - *pulTotalRunTime = portGET_RUN_TIME_COUNTER_VALUE(); - #endif - } - } - #else - { - if( pulTotalRunTime != NULL ) - { - *pulTotalRunTime = 0; - } - } - #endif - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - ( void ) xTaskResumeAll(); - - return uxTask; - } - -#endif /* configUSE_TRACE_FACILITY */ -/*----------------------------------------------------------*/ - -#if ( INCLUDE_xTaskGetIdleTaskHandle == 1 ) - - TaskHandle_t xTaskGetIdleTaskHandle( void ) - { - /* If xTaskGetIdleTaskHandle() is called before the scheduler has been - started, then xIdleTaskHandle will be NULL. */ - configASSERT( ( xIdleTaskHandle != NULL ) ); - return xIdleTaskHandle; - } - -#endif /* INCLUDE_xTaskGetIdleTaskHandle */ -/*----------------------------------------------------------*/ - -/* This conditional compilation should use inequality to 0, not equality to 1. -This is to ensure vTaskStepTick() is available when user defined low power mode -implementations require configUSE_TICKLESS_IDLE to be set to a value other than -1. */ -#if ( configUSE_TICKLESS_IDLE != 0 ) - - void vTaskStepTick( const TickType_t xTicksToJump ) - { - /* Correct the tick count value after a period during which the tick - was suppressed. Note this does *not* call the tick hook function for - each stepped tick. */ - configASSERT( ( xTickCount + xTicksToJump ) <= xNextTaskUnblockTime ); - xTickCount += xTicksToJump; - traceINCREASE_TICK_COUNT( xTicksToJump ); - } - -#endif /* configUSE_TICKLESS_IDLE */ -/*----------------------------------------------------------*/ - -BaseType_t xTaskCatchUpTicks( TickType_t xTicksToCatchUp ) -{ -BaseType_t xYieldRequired = pdFALSE; - - /* Must not be called with the scheduler suspended as the implementation - relies on xPendedTicks being wound down to 0 in xTaskResumeAll(). */ - configASSERT( uxSchedulerSuspended == 0 ); - - /* Use xPendedTicks to mimic xTicksToCatchUp number of ticks occurring when - the scheduler is suspended so the ticks are executed in xTaskResumeAll(). */ - vTaskSuspendAll(); - xPendedTicks += xTicksToCatchUp; - xYieldRequired = xTaskResumeAll(); - - return xYieldRequired; -} -/*----------------------------------------------------------*/ - -#if ( INCLUDE_xTaskAbortDelay == 1 ) - - BaseType_t xTaskAbortDelay( TaskHandle_t xTask ) - { - TCB_t *pxTCB = xTask; - BaseType_t xReturn; - - configASSERT( pxTCB ); - - vTaskSuspendAll(); - { - /* A task can only be prematurely removed from the Blocked state if - it is actually in the Blocked state. */ - if( eTaskGetState( xTask ) == eBlocked ) - { - xReturn = pdPASS; - - /* Remove the reference to the task from the blocked list. An - interrupt won't touch the xStateListItem because the - scheduler is suspended. */ - ( void ) uxListRemove( &( pxTCB->xStateListItem ) ); - - /* Is the task waiting on an event also? If so remove it from - the event list too. Interrupts can touch the event list item, - even though the scheduler is suspended, so a critical section - is used. */ - taskENTER_CRITICAL(); - { - if( listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) != NULL ) - { - ( void ) uxListRemove( &( pxTCB->xEventListItem ) ); - - /* This lets the task know it was forcibly removed from the - blocked state so it should not re-evaluate its block time and - then block again. */ - pxTCB->ucDelayAborted = pdTRUE; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - taskEXIT_CRITICAL(); - - /* Place the unblocked task into the appropriate ready list. */ - prvAddTaskToReadyList( pxTCB ); - - /* A task being unblocked cannot cause an immediate context - switch if preemption is turned off. */ - #if ( configUSE_PREEMPTION == 1 ) - { - /* Preemption is on, but a context switch should only be - performed if the unblocked task has a priority that is - equal to or higher than the currently executing task. */ - if( pxTCB->uxPriority > pxCurrentTCB->uxPriority ) - { - /* Pend the yield to be performed when the scheduler - is unsuspended. */ - xYieldPending = pdTRUE; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - #endif /* configUSE_PREEMPTION */ - } - else - { - xReturn = pdFAIL; - } - } - ( void ) xTaskResumeAll(); - - return xReturn; - } - -#endif /* INCLUDE_xTaskAbortDelay */ -/*----------------------------------------------------------*/ - -BaseType_t xTaskIncrementTick( void ) -{ -TCB_t * pxTCB; -TickType_t xItemValue; -BaseType_t xSwitchRequired = pdFALSE; - - /* Called by the portable layer each time a tick interrupt occurs. - Increments the tick then checks to see if the new tick value will cause any - tasks to be unblocked. */ - traceTASK_INCREMENT_TICK( xTickCount ); - if( uxSchedulerSuspended == ( UBaseType_t ) pdFALSE ) - { - /* Minor optimisation. The tick count cannot change in this - block. */ - const TickType_t xConstTickCount = xTickCount + ( TickType_t ) 1; - - /* Increment the RTOS tick, switching the delayed and overflowed - delayed lists if it wraps to 0. */ - xTickCount = xConstTickCount; - - if( xConstTickCount == ( TickType_t ) 0U ) /*lint !e774 'if' does not always evaluate to false as it is looking for an overflow. */ - { - taskSWITCH_DELAYED_LISTS(); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - /* See if this tick has made a timeout expire. Tasks are stored in - the queue in the order of their wake time - meaning once one task - has been found whose block time has not expired there is no need to - look any further down the list. */ - if( xConstTickCount >= xNextTaskUnblockTime ) - { - for( ;; ) - { - if( listLIST_IS_EMPTY( pxDelayedTaskList ) != pdFALSE ) - { - /* The delayed list is empty. Set xNextTaskUnblockTime - to the maximum possible value so it is extremely - unlikely that the - if( xTickCount >= xNextTaskUnblockTime ) test will pass - next time through. */ - xNextTaskUnblockTime = portMAX_DELAY; /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ - break; - } - else - { - /* The delayed list is not empty, get the value of the - item at the head of the delayed list. This is the time - at which the task at the head of the delayed list must - be removed from the Blocked state. */ - pxTCB = listGET_OWNER_OF_HEAD_ENTRY( pxDelayedTaskList ); /*lint !e9079 void * is used as this macro is used with timers and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ - xItemValue = listGET_LIST_ITEM_VALUE( &( pxTCB->xStateListItem ) ); - - if( xConstTickCount < xItemValue ) - { - /* It is not time to unblock this item yet, but the - item value is the time at which the task at the head - of the blocked list must be removed from the Blocked - state - so record the item value in - xNextTaskUnblockTime. */ - xNextTaskUnblockTime = xItemValue; - break; /*lint !e9011 Code structure here is deedmed easier to understand with multiple breaks. */ - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - /* It is time to remove the item from the Blocked state. */ - ( void ) uxListRemove( &( pxTCB->xStateListItem ) ); - - /* Is the task waiting on an event also? If so remove - it from the event list. */ - if( listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) != NULL ) - { - ( void ) uxListRemove( &( pxTCB->xEventListItem ) ); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - /* Place the unblocked task into the appropriate ready - list. */ - prvAddTaskToReadyList( pxTCB ); - - /* A task being unblocked cannot cause an immediate - context switch if preemption is turned off. */ - #if ( configUSE_PREEMPTION == 1 ) - { - /* Preemption is on, but a context switch should - only be performed if the unblocked task has a - priority that is equal to or higher than the - currently executing task. */ - if( pxTCB->uxPriority >= pxCurrentTCB->uxPriority ) - { - xSwitchRequired = pdTRUE; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - #endif /* configUSE_PREEMPTION */ - } - } - } - - /* Tasks of equal priority to the currently running task will share - processing time (time slice) if preemption is on, and the application - writer has not explicitly turned time slicing off. */ - #if ( ( configUSE_PREEMPTION == 1 ) && ( configUSE_TIME_SLICING == 1 ) ) - { - if( listCURRENT_LIST_LENGTH( &( pxReadyTasksLists[ pxCurrentTCB->uxPriority ] ) ) > ( UBaseType_t ) 1 ) - { - xSwitchRequired = pdTRUE; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - #endif /* ( ( configUSE_PREEMPTION == 1 ) && ( configUSE_TIME_SLICING == 1 ) ) */ - - #if ( configUSE_TICK_HOOK == 1 ) - { - /* Guard against the tick hook being called when the pended tick - count is being unwound (when the scheduler is being unlocked). */ - if( xPendedTicks == ( TickType_t ) 0 ) - { - vApplicationTickHook(); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - #endif /* configUSE_TICK_HOOK */ - - #if ( configUSE_PREEMPTION == 1 ) - { - if( xYieldPending != pdFALSE ) - { - xSwitchRequired = pdTRUE; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - #endif /* configUSE_PREEMPTION */ - } - else - { - ++xPendedTicks; - - /* The tick hook gets called at regular intervals, even if the - scheduler is locked. */ - #if ( configUSE_TICK_HOOK == 1 ) - { - vApplicationTickHook(); - } - #endif - } - - return xSwitchRequired; -} -/*-----------------------------------------------------------*/ - -#if ( configUSE_APPLICATION_TASK_TAG == 1 ) - - void vTaskSetApplicationTaskTag( TaskHandle_t xTask, TaskHookFunction_t pxHookFunction ) - { - TCB_t *xTCB; - - /* If xTask is NULL then it is the task hook of the calling task that is - getting set. */ - if( xTask == NULL ) - { - xTCB = ( TCB_t * ) pxCurrentTCB; - } - else - { - xTCB = xTask; - } - - /* Save the hook function in the TCB. A critical section is required as - the value can be accessed from an interrupt. */ - taskENTER_CRITICAL(); - { - xTCB->pxTaskTag = pxHookFunction; - } - taskEXIT_CRITICAL(); - } - -#endif /* configUSE_APPLICATION_TASK_TAG */ -/*-----------------------------------------------------------*/ - -#if ( configUSE_APPLICATION_TASK_TAG == 1 ) - - TaskHookFunction_t xTaskGetApplicationTaskTag( TaskHandle_t xTask ) - { - TCB_t *pxTCB; - TaskHookFunction_t xReturn; - - /* If xTask is NULL then set the calling task's hook. */ - pxTCB = prvGetTCBFromHandle( xTask ); - - /* Save the hook function in the TCB. A critical section is required as - the value can be accessed from an interrupt. */ - taskENTER_CRITICAL(); - { - xReturn = pxTCB->pxTaskTag; - } - taskEXIT_CRITICAL(); - - return xReturn; - } - -#endif /* configUSE_APPLICATION_TASK_TAG */ -/*-----------------------------------------------------------*/ - -#if ( configUSE_APPLICATION_TASK_TAG == 1 ) - - TaskHookFunction_t xTaskGetApplicationTaskTagFromISR( TaskHandle_t xTask ) - { - TCB_t *pxTCB; - TaskHookFunction_t xReturn; - UBaseType_t uxSavedInterruptStatus; - - /* If xTask is NULL then set the calling task's hook. */ - pxTCB = prvGetTCBFromHandle( xTask ); - - /* Save the hook function in the TCB. A critical section is required as - the value can be accessed from an interrupt. */ - uxSavedInterruptStatus = portSET_INTERRUPT_MASK_FROM_ISR(); - { - xReturn = pxTCB->pxTaskTag; - } - portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus ); - - return xReturn; - } - -#endif /* configUSE_APPLICATION_TASK_TAG */ -/*-----------------------------------------------------------*/ - -#if ( configUSE_APPLICATION_TASK_TAG == 1 ) - - BaseType_t xTaskCallApplicationTaskHook( TaskHandle_t xTask, void *pvParameter ) - { - TCB_t *xTCB; - BaseType_t xReturn; - - /* If xTask is NULL then we are calling our own task hook. */ - if( xTask == NULL ) - { - xTCB = pxCurrentTCB; - } - else - { - xTCB = xTask; - } - - if( xTCB->pxTaskTag != NULL ) - { - xReturn = xTCB->pxTaskTag( pvParameter ); - } - else - { - xReturn = pdFAIL; - } - - return xReturn; - } - -#endif /* configUSE_APPLICATION_TASK_TAG */ -/*-----------------------------------------------------------*/ - -void vTaskSwitchContext( void ) -{ - if( uxSchedulerSuspended != ( UBaseType_t ) pdFALSE ) - { - /* The scheduler is currently suspended - do not allow a context - switch. */ - xYieldPending = pdTRUE; - } - else - { - xYieldPending = pdFALSE; - traceTASK_SWITCHED_OUT(); - - #if ( configGENERATE_RUN_TIME_STATS == 1 ) - { - #ifdef portALT_GET_RUN_TIME_COUNTER_VALUE - portALT_GET_RUN_TIME_COUNTER_VALUE( ulTotalRunTime ); - #else - ulTotalRunTime = portGET_RUN_TIME_COUNTER_VALUE(); - #endif - - /* Add the amount of time the task has been running to the - accumulated time so far. The time the task started running was - stored in ulTaskSwitchedInTime. Note that there is no overflow - protection here so count values are only valid until the timer - overflows. The guard against negative values is to protect - against suspect run time stat counter implementations - which - are provided by the application, not the kernel. */ - if( ulTotalRunTime > ulTaskSwitchedInTime ) - { - pxCurrentTCB->ulRunTimeCounter += ( ulTotalRunTime - ulTaskSwitchedInTime ); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - ulTaskSwitchedInTime = ulTotalRunTime; - } - #endif /* configGENERATE_RUN_TIME_STATS */ - - /* Check for stack overflow, if configured. */ - taskCHECK_FOR_STACK_OVERFLOW(); - - /* Before the currently running task is switched out, save its errno. */ - #if( configUSE_POSIX_ERRNO == 1 ) - { - pxCurrentTCB->iTaskErrno = FreeRTOS_errno; - } - #endif - - /* Select a new task to run using either the generic C or port - optimised asm code. */ - taskSELECT_HIGHEST_PRIORITY_TASK(); /*lint !e9079 void * is used as this macro is used with timers and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ - traceTASK_SWITCHED_IN(); - - /* After the new task is switched in, update the global errno. */ - #if( configUSE_POSIX_ERRNO == 1 ) - { - FreeRTOS_errno = pxCurrentTCB->iTaskErrno; - } - #endif - - #if ( configUSE_NEWLIB_REENTRANT == 1 ) - { - /* Switch Newlib's _impure_ptr variable to point to the _reent - structure specific to this task. - See the third party link http://www.nadler.com/embedded/newlibAndFreeRTOS.html - for additional information. */ - _impure_ptr = &( pxCurrentTCB->xNewLib_reent ); - } - #endif /* configUSE_NEWLIB_REENTRANT */ - } -} -/*-----------------------------------------------------------*/ - -void vTaskPlaceOnEventList( List_t * const pxEventList, const TickType_t xTicksToWait ) -{ - configASSERT( pxEventList ); - - /* THIS FUNCTION MUST BE CALLED WITH EITHER INTERRUPTS DISABLED OR THE - SCHEDULER SUSPENDED AND THE QUEUE BEING ACCESSED LOCKED. */ - - /* Place the event list item of the TCB in the appropriate event list. - This is placed in the list in priority order so the highest priority task - is the first to be woken by the event. The queue that contains the event - list is locked, preventing simultaneous access from interrupts. */ - vListInsert( pxEventList, &( pxCurrentTCB->xEventListItem ) ); - - prvAddCurrentTaskToDelayedList( xTicksToWait, pdTRUE ); -} -/*-----------------------------------------------------------*/ - -void vTaskPlaceOnUnorderedEventList( List_t * pxEventList, const TickType_t xItemValue, const TickType_t xTicksToWait ) -{ - configASSERT( pxEventList ); - - /* THIS FUNCTION MUST BE CALLED WITH THE SCHEDULER SUSPENDED. It is used by - the event groups implementation. */ - configASSERT( uxSchedulerSuspended != 0 ); - - /* Store the item value in the event list item. It is safe to access the - event list item here as interrupts won't access the event list item of a - task that is not in the Blocked state. */ - listSET_LIST_ITEM_VALUE( &( pxCurrentTCB->xEventListItem ), xItemValue | taskEVENT_LIST_ITEM_VALUE_IN_USE ); - - /* Place the event list item of the TCB at the end of the appropriate event - list. It is safe to access the event list here because it is part of an - event group implementation - and interrupts don't access event groups - directly (instead they access them indirectly by pending function calls to - the task level). */ - vListInsertEnd( pxEventList, &( pxCurrentTCB->xEventListItem ) ); - - prvAddCurrentTaskToDelayedList( xTicksToWait, pdTRUE ); -} -/*-----------------------------------------------------------*/ - -#if( configUSE_TIMERS == 1 ) - - void vTaskPlaceOnEventListRestricted( List_t * const pxEventList, TickType_t xTicksToWait, const BaseType_t xWaitIndefinitely ) - { - configASSERT( pxEventList ); - - /* This function should not be called by application code hence the - 'Restricted' in its name. It is not part of the public API. It is - designed for use by kernel code, and has special calling requirements - - it should be called with the scheduler suspended. */ - - - /* Place the event list item of the TCB in the appropriate event list. - In this case it is assume that this is the only task that is going to - be waiting on this event list, so the faster vListInsertEnd() function - can be used in place of vListInsert. */ - vListInsertEnd( pxEventList, &( pxCurrentTCB->xEventListItem ) ); - - /* If the task should block indefinitely then set the block time to a - value that will be recognised as an indefinite delay inside the - prvAddCurrentTaskToDelayedList() function. */ - if( xWaitIndefinitely != pdFALSE ) - { - xTicksToWait = portMAX_DELAY; - } - - traceTASK_DELAY_UNTIL( ( xTickCount + xTicksToWait ) ); - prvAddCurrentTaskToDelayedList( xTicksToWait, xWaitIndefinitely ); - } - -#endif /* configUSE_TIMERS */ -/*-----------------------------------------------------------*/ - -BaseType_t xTaskRemoveFromEventList( const List_t * const pxEventList ) -{ -TCB_t *pxUnblockedTCB; -BaseType_t xReturn; - - /* THIS FUNCTION MUST BE CALLED FROM A CRITICAL SECTION. It can also be - called from a critical section within an ISR. */ - - /* The event list is sorted in priority order, so the first in the list can - be removed as it is known to be the highest priority. Remove the TCB from - the delayed list, and add it to the ready list. - - If an event is for a queue that is locked then this function will never - get called - the lock count on the queue will get modified instead. This - means exclusive access to the event list is guaranteed here. - - This function assumes that a check has already been made to ensure that - pxEventList is not empty. */ - pxUnblockedTCB = listGET_OWNER_OF_HEAD_ENTRY( pxEventList ); /*lint !e9079 void * is used as this macro is used with timers and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ - configASSERT( pxUnblockedTCB ); - ( void ) uxListRemove( &( pxUnblockedTCB->xEventListItem ) ); - - if( uxSchedulerSuspended == ( UBaseType_t ) pdFALSE ) - { - ( void ) uxListRemove( &( pxUnblockedTCB->xStateListItem ) ); - prvAddTaskToReadyList( pxUnblockedTCB ); - - #if( configUSE_TICKLESS_IDLE != 0 ) - { - /* If a task is blocked on a kernel object then xNextTaskUnblockTime - might be set to the blocked task's time out time. If the task is - unblocked for a reason other than a timeout xNextTaskUnblockTime is - normally left unchanged, because it is automatically reset to a new - value when the tick count equals xNextTaskUnblockTime. However if - tickless idling is used it might be more important to enter sleep mode - at the earliest possible time - so reset xNextTaskUnblockTime here to - ensure it is updated at the earliest possible time. */ - prvResetNextTaskUnblockTime(); - } - #endif - } - else - { - /* The delayed and ready lists cannot be accessed, so hold this task - pending until the scheduler is resumed. */ - vListInsertEnd( &( xPendingReadyList ), &( pxUnblockedTCB->xEventListItem ) ); - } - - if( pxUnblockedTCB->uxPriority > pxCurrentTCB->uxPriority ) - { - /* Return true if the task removed from the event list has a higher - priority than the calling task. This allows the calling task to know if - it should force a context switch now. */ - xReturn = pdTRUE; - - /* Mark that a yield is pending in case the user is not using the - "xHigherPriorityTaskWoken" parameter to an ISR safe FreeRTOS function. */ - xYieldPending = pdTRUE; - } - else - { - xReturn = pdFALSE; - } - - return xReturn; -} -/*-----------------------------------------------------------*/ - -void vTaskRemoveFromUnorderedEventList( ListItem_t * pxEventListItem, const TickType_t xItemValue ) -{ -TCB_t *pxUnblockedTCB; - - /* THIS FUNCTION MUST BE CALLED WITH THE SCHEDULER SUSPENDED. It is used by - the event flags implementation. */ - configASSERT( uxSchedulerSuspended != pdFALSE ); - - /* Store the new item value in the event list. */ - listSET_LIST_ITEM_VALUE( pxEventListItem, xItemValue | taskEVENT_LIST_ITEM_VALUE_IN_USE ); - - /* Remove the event list form the event flag. Interrupts do not access - event flags. */ - pxUnblockedTCB = listGET_LIST_ITEM_OWNER( pxEventListItem ); /*lint !e9079 void * is used as this macro is used with timers and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ - configASSERT( pxUnblockedTCB ); - ( void ) uxListRemove( pxEventListItem ); - - #if( configUSE_TICKLESS_IDLE != 0 ) - { - /* If a task is blocked on a kernel object then xNextTaskUnblockTime - might be set to the blocked task's time out time. If the task is - unblocked for a reason other than a timeout xNextTaskUnblockTime is - normally left unchanged, because it is automatically reset to a new - value when the tick count equals xNextTaskUnblockTime. However if - tickless idling is used it might be more important to enter sleep mode - at the earliest possible time - so reset xNextTaskUnblockTime here to - ensure it is updated at the earliest possible time. */ - prvResetNextTaskUnblockTime(); - } - #endif - - /* Remove the task from the delayed list and add it to the ready list. The - scheduler is suspended so interrupts will not be accessing the ready - lists. */ - ( void ) uxListRemove( &( pxUnblockedTCB->xStateListItem ) ); - prvAddTaskToReadyList( pxUnblockedTCB ); - - if( pxUnblockedTCB->uxPriority > pxCurrentTCB->uxPriority ) - { - /* The unblocked task has a priority above that of the calling task, so - a context switch is required. This function is called with the - scheduler suspended so xYieldPending is set so the context switch - occurs immediately that the scheduler is resumed (unsuspended). */ - xYieldPending = pdTRUE; - } -} -/*-----------------------------------------------------------*/ - -void vTaskSetTimeOutState( TimeOut_t * const pxTimeOut ) -{ - configASSERT( pxTimeOut ); - taskENTER_CRITICAL(); - { - pxTimeOut->xOverflowCount = xNumOfOverflows; - pxTimeOut->xTimeOnEntering = xTickCount; - } - taskEXIT_CRITICAL(); -} -/*-----------------------------------------------------------*/ - -void vTaskInternalSetTimeOutState( TimeOut_t * const pxTimeOut ) -{ - /* For internal use only as it does not use a critical section. */ - pxTimeOut->xOverflowCount = xNumOfOverflows; - pxTimeOut->xTimeOnEntering = xTickCount; -} -/*-----------------------------------------------------------*/ - -BaseType_t xTaskCheckForTimeOut( TimeOut_t * const pxTimeOut, TickType_t * const pxTicksToWait ) -{ -BaseType_t xReturn; - - configASSERT( pxTimeOut ); - configASSERT( pxTicksToWait ); - - taskENTER_CRITICAL(); - { - /* Minor optimisation. The tick count cannot change in this block. */ - const TickType_t xConstTickCount = xTickCount; - const TickType_t xElapsedTime = xConstTickCount - pxTimeOut->xTimeOnEntering; - - #if( INCLUDE_xTaskAbortDelay == 1 ) - if( pxCurrentTCB->ucDelayAborted != ( uint8_t ) pdFALSE ) - { - /* The delay was aborted, which is not the same as a time out, - but has the same result. */ - pxCurrentTCB->ucDelayAborted = pdFALSE; - xReturn = pdTRUE; - } - else - #endif - - #if ( INCLUDE_vTaskSuspend == 1 ) - if( *pxTicksToWait == portMAX_DELAY ) - { - /* If INCLUDE_vTaskSuspend is set to 1 and the block time - specified is the maximum block time then the task should block - indefinitely, and therefore never time out. */ - xReturn = pdFALSE; - } - else - #endif - - if( ( xNumOfOverflows != pxTimeOut->xOverflowCount ) && ( xConstTickCount >= pxTimeOut->xTimeOnEntering ) ) /*lint !e525 Indentation preferred as is to make code within pre-processor directives clearer. */ - { - /* The tick count is greater than the time at which - vTaskSetTimeout() was called, but has also overflowed since - vTaskSetTimeOut() was called. It must have wrapped all the way - around and gone past again. This passed since vTaskSetTimeout() - was called. */ - xReturn = pdTRUE; - } - else if( xElapsedTime < *pxTicksToWait ) /*lint !e961 Explicit casting is only redundant with some compilers, whereas others require it to prevent integer conversion errors. */ - { - /* Not a genuine timeout. Adjust parameters for time remaining. */ - *pxTicksToWait -= xElapsedTime; - vTaskInternalSetTimeOutState( pxTimeOut ); - xReturn = pdFALSE; - } - else - { - *pxTicksToWait = 0; - xReturn = pdTRUE; - } - } - taskEXIT_CRITICAL(); - - return xReturn; -} -/*-----------------------------------------------------------*/ - -void vTaskMissedYield( void ) -{ - xYieldPending = pdTRUE; -} -/*-----------------------------------------------------------*/ - -#if ( configUSE_TRACE_FACILITY == 1 ) - - UBaseType_t uxTaskGetTaskNumber( TaskHandle_t xTask ) - { - UBaseType_t uxReturn; - TCB_t const *pxTCB; - - if( xTask != NULL ) - { - pxTCB = xTask; - uxReturn = pxTCB->uxTaskNumber; - } - else - { - uxReturn = 0U; - } - - return uxReturn; - } - -#endif /* configUSE_TRACE_FACILITY */ -/*-----------------------------------------------------------*/ - -#if ( configUSE_TRACE_FACILITY == 1 ) - - void vTaskSetTaskNumber( TaskHandle_t xTask, const UBaseType_t uxHandle ) - { - TCB_t * pxTCB; - - if( xTask != NULL ) - { - pxTCB = xTask; - pxTCB->uxTaskNumber = uxHandle; - } - } - -#endif /* configUSE_TRACE_FACILITY */ - -/* - * ----------------------------------------------------------- - * The Idle task. - * ---------------------------------------------------------- - * - * The portTASK_FUNCTION() macro is used to allow port/compiler specific - * language extensions. The equivalent prototype for this function is: - * - * void prvIdleTask( void *pvParameters ); - * - */ -static portTASK_FUNCTION( prvIdleTask, pvParameters ) -{ - /* Stop warnings. */ - ( void ) pvParameters; - - /** THIS IS THE RTOS IDLE TASK - WHICH IS CREATED AUTOMATICALLY WHEN THE - SCHEDULER IS STARTED. **/ - - /* In case a task that has a secure context deletes itself, in which case - the idle task is responsible for deleting the task's secure context, if - any. */ - portALLOCATE_SECURE_CONTEXT( configMINIMAL_SECURE_STACK_SIZE ); - - for( ;; ) - { - /* See if any tasks have deleted themselves - if so then the idle task - is responsible for freeing the deleted task's TCB and stack. */ - prvCheckTasksWaitingTermination(); - - #if ( configUSE_PREEMPTION == 0 ) - { - /* If we are not using preemption we keep forcing a task switch to - see if any other task has become available. If we are using - preemption we don't need to do this as any task becoming available - will automatically get the processor anyway. */ - taskYIELD(); - } - #endif /* configUSE_PREEMPTION */ - - #if ( ( configUSE_PREEMPTION == 1 ) && ( configIDLE_SHOULD_YIELD == 1 ) ) - { - /* When using preemption tasks of equal priority will be - timesliced. If a task that is sharing the idle priority is ready - to run then the idle task should yield before the end of the - timeslice. - - A critical region is not required here as we are just reading from - the list, and an occasional incorrect value will not matter. If - the ready list at the idle priority contains more than one task - then a task other than the idle task is ready to execute. */ - if( listCURRENT_LIST_LENGTH( &( pxReadyTasksLists[ tskIDLE_PRIORITY ] ) ) > ( UBaseType_t ) 1 ) - { - taskYIELD(); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - #endif /* ( ( configUSE_PREEMPTION == 1 ) && ( configIDLE_SHOULD_YIELD == 1 ) ) */ - - #if ( configUSE_IDLE_HOOK == 1 ) - { - extern void vApplicationIdleHook( void ); - - /* Call the user defined function from within the idle task. This - allows the application designer to add background functionality - without the overhead of a separate task. - NOTE: vApplicationIdleHook() MUST NOT, UNDER ANY CIRCUMSTANCES, - CALL A FUNCTION THAT MIGHT BLOCK. */ - vApplicationIdleHook(); - } - #endif /* configUSE_IDLE_HOOK */ - - /* This conditional compilation should use inequality to 0, not equality - to 1. This is to ensure portSUPPRESS_TICKS_AND_SLEEP() is called when - user defined low power mode implementations require - configUSE_TICKLESS_IDLE to be set to a value other than 1. */ - #if ( configUSE_TICKLESS_IDLE != 0 ) - { - TickType_t xExpectedIdleTime; - - /* It is not desirable to suspend then resume the scheduler on - each iteration of the idle task. Therefore, a preliminary - test of the expected idle time is performed without the - scheduler suspended. The result here is not necessarily - valid. */ - xExpectedIdleTime = prvGetExpectedIdleTime(); - - if( xExpectedIdleTime >= configEXPECTED_IDLE_TIME_BEFORE_SLEEP ) - { - vTaskSuspendAll(); - { - /* Now the scheduler is suspended, the expected idle - time can be sampled again, and this time its value can - be used. */ - configASSERT( xNextTaskUnblockTime >= xTickCount ); - xExpectedIdleTime = prvGetExpectedIdleTime(); - - /* Define the following macro to set xExpectedIdleTime to 0 - if the application does not want - portSUPPRESS_TICKS_AND_SLEEP() to be called. */ - configPRE_SUPPRESS_TICKS_AND_SLEEP_PROCESSING( xExpectedIdleTime ); - - if( xExpectedIdleTime >= configEXPECTED_IDLE_TIME_BEFORE_SLEEP ) - { - traceLOW_POWER_IDLE_BEGIN(); - portSUPPRESS_TICKS_AND_SLEEP( xExpectedIdleTime ); - traceLOW_POWER_IDLE_END(); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - ( void ) xTaskResumeAll(); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - #endif /* configUSE_TICKLESS_IDLE */ - } -} -/*-----------------------------------------------------------*/ - -#if( configUSE_TICKLESS_IDLE != 0 ) - - eSleepModeStatus eTaskConfirmSleepModeStatus( void ) - { - /* The idle task exists in addition to the application tasks. */ - const UBaseType_t uxNonApplicationTasks = 1; - eSleepModeStatus eReturn = eStandardSleep; - - /* This function must be called from a critical section. */ - - if( listCURRENT_LIST_LENGTH( &xPendingReadyList ) != 0 ) - { - /* A task was made ready while the scheduler was suspended. */ - eReturn = eAbortSleep; - } - else if( xYieldPending != pdFALSE ) - { - /* A yield was pended while the scheduler was suspended. */ - eReturn = eAbortSleep; - } - else - { - /* If all the tasks are in the suspended list (which might mean they - have an infinite block time rather than actually being suspended) - then it is safe to turn all clocks off and just wait for external - interrupts. */ - if( listCURRENT_LIST_LENGTH( &xSuspendedTaskList ) == ( uxCurrentNumberOfTasks - uxNonApplicationTasks ) ) - { - eReturn = eNoTasksWaitingTimeout; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - - return eReturn; - } - -#endif /* configUSE_TICKLESS_IDLE */ -/*-----------------------------------------------------------*/ - -#if ( configNUM_THREAD_LOCAL_STORAGE_POINTERS != 0 ) - - void vTaskSetThreadLocalStoragePointer( TaskHandle_t xTaskToSet, BaseType_t xIndex, void *pvValue ) - { - TCB_t *pxTCB; - - if( xIndex < configNUM_THREAD_LOCAL_STORAGE_POINTERS ) - { - pxTCB = prvGetTCBFromHandle( xTaskToSet ); - configASSERT( pxTCB != NULL ); - pxTCB->pvThreadLocalStoragePointers[ xIndex ] = pvValue; - } - } - -#endif /* configNUM_THREAD_LOCAL_STORAGE_POINTERS */ -/*-----------------------------------------------------------*/ - -#if ( configNUM_THREAD_LOCAL_STORAGE_POINTERS != 0 ) - - void *pvTaskGetThreadLocalStoragePointer( TaskHandle_t xTaskToQuery, BaseType_t xIndex ) - { - void *pvReturn = NULL; - TCB_t *pxTCB; - - if( xIndex < configNUM_THREAD_LOCAL_STORAGE_POINTERS ) - { - pxTCB = prvGetTCBFromHandle( xTaskToQuery ); - pvReturn = pxTCB->pvThreadLocalStoragePointers[ xIndex ]; - } - else - { - pvReturn = NULL; - } - - return pvReturn; - } - -#endif /* configNUM_THREAD_LOCAL_STORAGE_POINTERS */ -/*-----------------------------------------------------------*/ - -#if ( portUSING_MPU_WRAPPERS == 1 ) - - void vTaskAllocateMPURegions( TaskHandle_t xTaskToModify, const MemoryRegion_t * const xRegions ) - { - TCB_t *pxTCB; - - /* If null is passed in here then we are modifying the MPU settings of - the calling task. */ - pxTCB = prvGetTCBFromHandle( xTaskToModify ); - - vPortStoreTaskMPUSettings( &( pxTCB->xMPUSettings ), xRegions, NULL, 0 ); - } - -#endif /* portUSING_MPU_WRAPPERS */ -/*-----------------------------------------------------------*/ - -static void prvInitialiseTaskLists( void ) -{ -UBaseType_t uxPriority; - - for( uxPriority = ( UBaseType_t ) 0U; uxPriority < ( UBaseType_t ) configMAX_PRIORITIES; uxPriority++ ) - { - vListInitialise( &( pxReadyTasksLists[ uxPriority ] ) ); - } - - vListInitialise( &xDelayedTaskList1 ); - vListInitialise( &xDelayedTaskList2 ); - vListInitialise( &xPendingReadyList ); - - #if ( INCLUDE_vTaskDelete == 1 ) - { - vListInitialise( &xTasksWaitingTermination ); - } - #endif /* INCLUDE_vTaskDelete */ - - #if ( INCLUDE_vTaskSuspend == 1 ) - { - vListInitialise( &xSuspendedTaskList ); - } - #endif /* INCLUDE_vTaskSuspend */ - - /* Start with pxDelayedTaskList using list1 and the pxOverflowDelayedTaskList - using list2. */ - pxDelayedTaskList = &xDelayedTaskList1; - pxOverflowDelayedTaskList = &xDelayedTaskList2; -} -/*-----------------------------------------------------------*/ - -static void prvCheckTasksWaitingTermination( void ) -{ - - /** THIS FUNCTION IS CALLED FROM THE RTOS IDLE TASK **/ - - #if ( INCLUDE_vTaskDelete == 1 ) - { - TCB_t *pxTCB; - - /* uxDeletedTasksWaitingCleanUp is used to prevent taskENTER_CRITICAL() - being called too often in the idle task. */ - while( uxDeletedTasksWaitingCleanUp > ( UBaseType_t ) 0U ) - { - taskENTER_CRITICAL(); - { - pxTCB = listGET_OWNER_OF_HEAD_ENTRY( ( &xTasksWaitingTermination ) ); /*lint !e9079 void * is used as this macro is used with timers and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ - ( void ) uxListRemove( &( pxTCB->xStateListItem ) ); - --uxCurrentNumberOfTasks; - --uxDeletedTasksWaitingCleanUp; - } - taskEXIT_CRITICAL(); - - prvDeleteTCB( pxTCB ); - } - } - #endif /* INCLUDE_vTaskDelete */ -} -/*-----------------------------------------------------------*/ - -#if( configUSE_TRACE_FACILITY == 1 ) - - void vTaskGetInfo( TaskHandle_t xTask, TaskStatus_t *pxTaskStatus, BaseType_t xGetFreeStackSpace, eTaskState eState ) - { - TCB_t *pxTCB; - - /* xTask is NULL then get the state of the calling task. */ - pxTCB = prvGetTCBFromHandle( xTask ); - - pxTaskStatus->xHandle = ( TaskHandle_t ) pxTCB; - pxTaskStatus->pcTaskName = ( const char * ) &( pxTCB->pcTaskName [ 0 ] ); - pxTaskStatus->uxCurrentPriority = pxTCB->uxPriority; - pxTaskStatus->pxStackBase = pxTCB->pxStack; - pxTaskStatus->xTaskNumber = pxTCB->uxTCBNumber; - - #if ( configUSE_MUTEXES == 1 ) - { - pxTaskStatus->uxBasePriority = pxTCB->uxBasePriority; - } - #else - { - pxTaskStatus->uxBasePriority = 0; - } - #endif - - #if ( configGENERATE_RUN_TIME_STATS == 1 ) - { - pxTaskStatus->ulRunTimeCounter = pxTCB->ulRunTimeCounter; - } - #else - { - pxTaskStatus->ulRunTimeCounter = 0; - } - #endif - - /* Obtaining the task state is a little fiddly, so is only done if the - value of eState passed into this function is eInvalid - otherwise the - state is just set to whatever is passed in. */ - if( eState != eInvalid ) - { - if( pxTCB == pxCurrentTCB ) - { - pxTaskStatus->eCurrentState = eRunning; - } - else - { - pxTaskStatus->eCurrentState = eState; - - #if ( INCLUDE_vTaskSuspend == 1 ) - { - /* If the task is in the suspended list then there is a - chance it is actually just blocked indefinitely - so really - it should be reported as being in the Blocked state. */ - if( eState == eSuspended ) - { - vTaskSuspendAll(); - { - if( listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) != NULL ) - { - pxTaskStatus->eCurrentState = eBlocked; - } - } - ( void ) xTaskResumeAll(); - } - } - #endif /* INCLUDE_vTaskSuspend */ - } - } - else - { - pxTaskStatus->eCurrentState = eTaskGetState( pxTCB ); - } - - /* Obtaining the stack space takes some time, so the xGetFreeStackSpace - parameter is provided to allow it to be skipped. */ - if( xGetFreeStackSpace != pdFALSE ) - { - #if ( portSTACK_GROWTH > 0 ) - { - pxTaskStatus->usStackHighWaterMark = prvTaskCheckFreeStackSpace( ( uint8_t * ) pxTCB->pxEndOfStack ); - } - #else - { - pxTaskStatus->usStackHighWaterMark = prvTaskCheckFreeStackSpace( ( uint8_t * ) pxTCB->pxStack ); - } - #endif - } - else - { - pxTaskStatus->usStackHighWaterMark = 0; - } - } - -#endif /* configUSE_TRACE_FACILITY */ -/*-----------------------------------------------------------*/ - -#if ( configUSE_TRACE_FACILITY == 1 ) - - static UBaseType_t prvListTasksWithinSingleList( TaskStatus_t *pxTaskStatusArray, List_t *pxList, eTaskState eState ) - { - configLIST_VOLATILE TCB_t *pxNextTCB, *pxFirstTCB; - UBaseType_t uxTask = 0; - - if( listCURRENT_LIST_LENGTH( pxList ) > ( UBaseType_t ) 0 ) - { - listGET_OWNER_OF_NEXT_ENTRY( pxFirstTCB, pxList ); /*lint !e9079 void * is used as this macro is used with timers and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ - - /* Populate an TaskStatus_t structure within the - pxTaskStatusArray array for each task that is referenced from - pxList. See the definition of TaskStatus_t in task.h for the - meaning of each TaskStatus_t structure member. */ - do - { - listGET_OWNER_OF_NEXT_ENTRY( pxNextTCB, pxList ); /*lint !e9079 void * is used as this macro is used with timers and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ - vTaskGetInfo( ( TaskHandle_t ) pxNextTCB, &( pxTaskStatusArray[ uxTask ] ), pdTRUE, eState ); - uxTask++; - } while( pxNextTCB != pxFirstTCB ); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - return uxTask; - } - -#endif /* configUSE_TRACE_FACILITY */ -/*-----------------------------------------------------------*/ - -#if ( ( configUSE_TRACE_FACILITY == 1 ) || ( INCLUDE_uxTaskGetStackHighWaterMark == 1 ) || ( INCLUDE_uxTaskGetStackHighWaterMark2 == 1 ) ) - - static configSTACK_DEPTH_TYPE prvTaskCheckFreeStackSpace( const uint8_t * pucStackByte ) - { - uint32_t ulCount = 0U; - - while( *pucStackByte == ( uint8_t ) tskSTACK_FILL_BYTE ) - { - pucStackByte -= portSTACK_GROWTH; - ulCount++; - } - - ulCount /= ( uint32_t ) sizeof( StackType_t ); /*lint !e961 Casting is not redundant on smaller architectures. */ - - return ( configSTACK_DEPTH_TYPE ) ulCount; - } - -#endif /* ( ( configUSE_TRACE_FACILITY == 1 ) || ( INCLUDE_uxTaskGetStackHighWaterMark == 1 ) || ( INCLUDE_uxTaskGetStackHighWaterMark2 == 1 ) ) */ -/*-----------------------------------------------------------*/ - -#if ( INCLUDE_uxTaskGetStackHighWaterMark2 == 1 ) - - /* uxTaskGetStackHighWaterMark() and uxTaskGetStackHighWaterMark2() are the - same except for their return type. Using configSTACK_DEPTH_TYPE allows the - user to determine the return type. It gets around the problem of the value - overflowing on 8-bit types without breaking backward compatibility for - applications that expect an 8-bit return type. */ - configSTACK_DEPTH_TYPE uxTaskGetStackHighWaterMark2( TaskHandle_t xTask ) - { - TCB_t *pxTCB; - uint8_t *pucEndOfStack; - configSTACK_DEPTH_TYPE uxReturn; - - /* uxTaskGetStackHighWaterMark() and uxTaskGetStackHighWaterMark2() are - the same except for their return type. Using configSTACK_DEPTH_TYPE - allows the user to determine the return type. It gets around the - problem of the value overflowing on 8-bit types without breaking - backward compatibility for applications that expect an 8-bit return - type. */ - - pxTCB = prvGetTCBFromHandle( xTask ); - - #if portSTACK_GROWTH < 0 - { - pucEndOfStack = ( uint8_t * ) pxTCB->pxStack; - } - #else - { - pucEndOfStack = ( uint8_t * ) pxTCB->pxEndOfStack; - } - #endif - - uxReturn = prvTaskCheckFreeStackSpace( pucEndOfStack ); - - return uxReturn; - } - -#endif /* INCLUDE_uxTaskGetStackHighWaterMark2 */ -/*-----------------------------------------------------------*/ - -#if ( INCLUDE_uxTaskGetStackHighWaterMark == 1 ) - - UBaseType_t uxTaskGetStackHighWaterMark( TaskHandle_t xTask ) - { - TCB_t *pxTCB; - uint8_t *pucEndOfStack; - UBaseType_t uxReturn; - - pxTCB = prvGetTCBFromHandle( xTask ); - - #if portSTACK_GROWTH < 0 - { - pucEndOfStack = ( uint8_t * ) pxTCB->pxStack; - } - #else - { - pucEndOfStack = ( uint8_t * ) pxTCB->pxEndOfStack; - } - #endif - - uxReturn = ( UBaseType_t ) prvTaskCheckFreeStackSpace( pucEndOfStack ); - - return uxReturn; - } - -#endif /* INCLUDE_uxTaskGetStackHighWaterMark */ -/*-----------------------------------------------------------*/ - -#if ( INCLUDE_vTaskDelete == 1 ) - - static void prvDeleteTCB( TCB_t *pxTCB ) - { - /* This call is required specifically for the TriCore port. It must be - above the vPortFree() calls. The call is also used by ports/demos that - want to allocate and clean RAM statically. */ - portCLEAN_UP_TCB( pxTCB ); - - /* Free up the memory allocated by the scheduler for the task. It is up - to the task to free any memory allocated at the application level. - See the third party link http://www.nadler.com/embedded/newlibAndFreeRTOS.html - for additional information. */ - #if ( configUSE_NEWLIB_REENTRANT == 1 ) - { - _reclaim_reent( &( pxTCB->xNewLib_reent ) ); - } - #endif /* configUSE_NEWLIB_REENTRANT */ - - #if( ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) && ( configSUPPORT_STATIC_ALLOCATION == 0 ) && ( portUSING_MPU_WRAPPERS == 0 ) ) - { - /* The task can only have been allocated dynamically - free both - the stack and TCB. */ - vPortFree( pxTCB->pxStack ); - vPortFree( pxTCB ); - } - #elif( tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE != 0 ) /*lint !e731 !e9029 Macro has been consolidated for readability reasons. */ - { - /* The task could have been allocated statically or dynamically, so - check what was statically allocated before trying to free the - memory. */ - if( pxTCB->ucStaticallyAllocated == tskDYNAMICALLY_ALLOCATED_STACK_AND_TCB ) - { - /* Both the stack and TCB were allocated dynamically, so both - must be freed. */ - vPortFree( pxTCB->pxStack ); - vPortFree( pxTCB ); - } - else if( pxTCB->ucStaticallyAllocated == tskSTATICALLY_ALLOCATED_STACK_ONLY ) - { - /* Only the stack was statically allocated, so the TCB is the - only memory that must be freed. */ - vPortFree( pxTCB ); - } - else - { - /* Neither the stack nor the TCB were allocated dynamically, so - nothing needs to be freed. */ - configASSERT( pxTCB->ucStaticallyAllocated == tskSTATICALLY_ALLOCATED_STACK_AND_TCB ); - mtCOVERAGE_TEST_MARKER(); - } - } - #endif /* configSUPPORT_DYNAMIC_ALLOCATION */ - } - -#endif /* INCLUDE_vTaskDelete */ -/*-----------------------------------------------------------*/ - -static void prvResetNextTaskUnblockTime( void ) -{ -TCB_t *pxTCB; - - if( listLIST_IS_EMPTY( pxDelayedTaskList ) != pdFALSE ) - { - /* The new current delayed list is empty. Set xNextTaskUnblockTime to - the maximum possible value so it is extremely unlikely that the - if( xTickCount >= xNextTaskUnblockTime ) test will pass until - there is an item in the delayed list. */ - xNextTaskUnblockTime = portMAX_DELAY; - } - else - { - /* The new current delayed list is not empty, get the value of - the item at the head of the delayed list. This is the time at - which the task at the head of the delayed list should be removed - from the Blocked state. */ - ( pxTCB ) = listGET_OWNER_OF_HEAD_ENTRY( pxDelayedTaskList ); /*lint !e9079 void * is used as this macro is used with timers and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ - xNextTaskUnblockTime = listGET_LIST_ITEM_VALUE( &( ( pxTCB )->xStateListItem ) ); - } -} -/*-----------------------------------------------------------*/ - -#if ( ( INCLUDE_xTaskGetCurrentTaskHandle == 1 ) || ( configUSE_MUTEXES == 1 ) ) - - TaskHandle_t xTaskGetCurrentTaskHandle( void ) - { - TaskHandle_t xReturn; - - /* A critical section is not required as this is not called from - an interrupt and the current TCB will always be the same for any - individual execution thread. */ - xReturn = pxCurrentTCB; - - return xReturn; - } - -#endif /* ( ( INCLUDE_xTaskGetCurrentTaskHandle == 1 ) || ( configUSE_MUTEXES == 1 ) ) */ -/*-----------------------------------------------------------*/ - -#if ( ( INCLUDE_xTaskGetSchedulerState == 1 ) || ( configUSE_TIMERS == 1 ) ) - - BaseType_t xTaskGetSchedulerState( void ) - { - BaseType_t xReturn; - - if( xSchedulerRunning == pdFALSE ) - { - xReturn = taskSCHEDULER_NOT_STARTED; - } - else - { - if( uxSchedulerSuspended == ( UBaseType_t ) pdFALSE ) - { - xReturn = taskSCHEDULER_RUNNING; - } - else - { - xReturn = taskSCHEDULER_SUSPENDED; - } - } - - return xReturn; - } - -#endif /* ( ( INCLUDE_xTaskGetSchedulerState == 1 ) || ( configUSE_TIMERS == 1 ) ) */ -/*-----------------------------------------------------------*/ - -#if ( configUSE_MUTEXES == 1 ) - - BaseType_t xTaskPriorityInherit( TaskHandle_t const pxMutexHolder ) - { - TCB_t * const pxMutexHolderTCB = pxMutexHolder; - BaseType_t xReturn = pdFALSE; - - /* If the mutex was given back by an interrupt while the queue was - locked then the mutex holder might now be NULL. _RB_ Is this still - needed as interrupts can no longer use mutexes? */ - if( pxMutexHolder != NULL ) - { - /* If the holder of the mutex has a priority below the priority of - the task attempting to obtain the mutex then it will temporarily - inherit the priority of the task attempting to obtain the mutex. */ - if( pxMutexHolderTCB->uxPriority < pxCurrentTCB->uxPriority ) - { - /* Adjust the mutex holder state to account for its new - priority. Only reset the event list item value if the value is - not being used for anything else. */ - if( ( listGET_LIST_ITEM_VALUE( &( pxMutexHolderTCB->xEventListItem ) ) & taskEVENT_LIST_ITEM_VALUE_IN_USE ) == 0UL ) - { - listSET_LIST_ITEM_VALUE( &( pxMutexHolderTCB->xEventListItem ), ( TickType_t ) configMAX_PRIORITIES - ( TickType_t ) pxCurrentTCB->uxPriority ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - /* If the task being modified is in the ready state it will need - to be moved into a new list. */ - if( listIS_CONTAINED_WITHIN( &( pxReadyTasksLists[ pxMutexHolderTCB->uxPriority ] ), &( pxMutexHolderTCB->xStateListItem ) ) != pdFALSE ) - { - if( uxListRemove( &( pxMutexHolderTCB->xStateListItem ) ) == ( UBaseType_t ) 0 ) - { - /* It is known that the task is in its ready list so - there is no need to check again and the port level - reset macro can be called directly. */ - portRESET_READY_PRIORITY( pxMutexHolderTCB->uxPriority, uxTopReadyPriority ); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - /* Inherit the priority before being moved into the new list. */ - pxMutexHolderTCB->uxPriority = pxCurrentTCB->uxPriority; - prvAddTaskToReadyList( pxMutexHolderTCB ); - } - else - { - /* Just inherit the priority. */ - pxMutexHolderTCB->uxPriority = pxCurrentTCB->uxPriority; - } - - traceTASK_PRIORITY_INHERIT( pxMutexHolderTCB, pxCurrentTCB->uxPriority ); - - /* Inheritance occurred. */ - xReturn = pdTRUE; - } - else - { - if( pxMutexHolderTCB->uxBasePriority < pxCurrentTCB->uxPriority ) - { - /* The base priority of the mutex holder is lower than the - priority of the task attempting to take the mutex, but the - current priority of the mutex holder is not lower than the - priority of the task attempting to take the mutex. - Therefore the mutex holder must have already inherited a - priority, but inheritance would have occurred if that had - not been the case. */ - xReturn = pdTRUE; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - return xReturn; - } - -#endif /* configUSE_MUTEXES */ -/*-----------------------------------------------------------*/ - -#if ( configUSE_MUTEXES == 1 ) - - BaseType_t xTaskPriorityDisinherit( TaskHandle_t const pxMutexHolder ) - { - TCB_t * const pxTCB = pxMutexHolder; - BaseType_t xReturn = pdFALSE; - - if( pxMutexHolder != NULL ) - { - /* A task can only have an inherited priority if it holds the mutex. - If the mutex is held by a task then it cannot be given from an - interrupt, and if a mutex is given by the holding task then it must - be the running state task. */ - configASSERT( pxTCB == pxCurrentTCB ); - configASSERT( pxTCB->uxMutexesHeld ); - ( pxTCB->uxMutexesHeld )--; - - /* Has the holder of the mutex inherited the priority of another - task? */ - if( pxTCB->uxPriority != pxTCB->uxBasePriority ) - { - /* Only disinherit if no other mutexes are held. */ - if( pxTCB->uxMutexesHeld == ( UBaseType_t ) 0 ) - { - /* A task can only have an inherited priority if it holds - the mutex. If the mutex is held by a task then it cannot be - given from an interrupt, and if a mutex is given by the - holding task then it must be the running state task. Remove - the holding task from the ready/delayed list. */ - if( uxListRemove( &( pxTCB->xStateListItem ) ) == ( UBaseType_t ) 0 ) - { - taskRESET_READY_PRIORITY( pxTCB->uxPriority ); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - /* Disinherit the priority before adding the task into the - new ready list. */ - traceTASK_PRIORITY_DISINHERIT( pxTCB, pxTCB->uxBasePriority ); - pxTCB->uxPriority = pxTCB->uxBasePriority; - - /* Reset the event list item value. It cannot be in use for - any other purpose if this task is running, and it must be - running to give back the mutex. */ - listSET_LIST_ITEM_VALUE( &( pxTCB->xEventListItem ), ( TickType_t ) configMAX_PRIORITIES - ( TickType_t ) pxTCB->uxPriority ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ - prvAddTaskToReadyList( pxTCB ); - - /* Return true to indicate that a context switch is required. - This is only actually required in the corner case whereby - multiple mutexes were held and the mutexes were given back - in an order different to that in which they were taken. - If a context switch did not occur when the first mutex was - returned, even if a task was waiting on it, then a context - switch should occur when the last mutex is returned whether - a task is waiting on it or not. */ - xReturn = pdTRUE; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - return xReturn; - } - -#endif /* configUSE_MUTEXES */ -/*-----------------------------------------------------------*/ - -#if ( configUSE_MUTEXES == 1 ) - - void vTaskPriorityDisinheritAfterTimeout( TaskHandle_t const pxMutexHolder, UBaseType_t uxHighestPriorityWaitingTask ) - { - TCB_t * const pxTCB = pxMutexHolder; - UBaseType_t uxPriorityUsedOnEntry, uxPriorityToUse; - const UBaseType_t uxOnlyOneMutexHeld = ( UBaseType_t ) 1; - - if( pxMutexHolder != NULL ) - { - /* If pxMutexHolder is not NULL then the holder must hold at least - one mutex. */ - configASSERT( pxTCB->uxMutexesHeld ); - - /* Determine the priority to which the priority of the task that - holds the mutex should be set. This will be the greater of the - holding task's base priority and the priority of the highest - priority task that is waiting to obtain the mutex. */ - if( pxTCB->uxBasePriority < uxHighestPriorityWaitingTask ) - { - uxPriorityToUse = uxHighestPriorityWaitingTask; - } - else - { - uxPriorityToUse = pxTCB->uxBasePriority; - } - - /* Does the priority need to change? */ - if( pxTCB->uxPriority != uxPriorityToUse ) - { - /* Only disinherit if no other mutexes are held. This is a - simplification in the priority inheritance implementation. If - the task that holds the mutex is also holding other mutexes then - the other mutexes may have caused the priority inheritance. */ - if( pxTCB->uxMutexesHeld == uxOnlyOneMutexHeld ) - { - /* If a task has timed out because it already holds the - mutex it was trying to obtain then it cannot of inherited - its own priority. */ - configASSERT( pxTCB != pxCurrentTCB ); - - /* Disinherit the priority, remembering the previous - priority to facilitate determining the subject task's - state. */ - traceTASK_PRIORITY_DISINHERIT( pxTCB, pxTCB->uxBasePriority ); - uxPriorityUsedOnEntry = pxTCB->uxPriority; - pxTCB->uxPriority = uxPriorityToUse; - - /* Only reset the event list item value if the value is not - being used for anything else. */ - if( ( listGET_LIST_ITEM_VALUE( &( pxTCB->xEventListItem ) ) & taskEVENT_LIST_ITEM_VALUE_IN_USE ) == 0UL ) - { - listSET_LIST_ITEM_VALUE( &( pxTCB->xEventListItem ), ( TickType_t ) configMAX_PRIORITIES - ( TickType_t ) uxPriorityToUse ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - /* If the running task is not the task that holds the mutex - then the task that holds the mutex could be in either the - Ready, Blocked or Suspended states. Only remove the task - from its current state list if it is in the Ready state as - the task's priority is going to change and there is one - Ready list per priority. */ - if( listIS_CONTAINED_WITHIN( &( pxReadyTasksLists[ uxPriorityUsedOnEntry ] ), &( pxTCB->xStateListItem ) ) != pdFALSE ) - { - if( uxListRemove( &( pxTCB->xStateListItem ) ) == ( UBaseType_t ) 0 ) - { - /* It is known that the task is in its ready list so - there is no need to check again and the port level - reset macro can be called directly. */ - portRESET_READY_PRIORITY( pxTCB->uxPriority, uxTopReadyPriority ); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - prvAddTaskToReadyList( pxTCB ); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - -#endif /* configUSE_MUTEXES */ -/*-----------------------------------------------------------*/ - -#if ( portCRITICAL_NESTING_IN_TCB == 1 ) - - void vTaskEnterCritical( void ) - { - portDISABLE_INTERRUPTS(); - - if( xSchedulerRunning != pdFALSE ) - { - ( pxCurrentTCB->uxCriticalNesting )++; - - /* This is not the interrupt safe version of the enter critical - function so assert() if it is being called from an interrupt - context. Only API functions that end in "FromISR" can be used in an - interrupt. Only assert if the critical nesting count is 1 to - protect against recursive calls if the assert function also uses a - critical section. */ - if( pxCurrentTCB->uxCriticalNesting == 1 ) - { - portASSERT_IF_IN_ISR(); - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - -#endif /* portCRITICAL_NESTING_IN_TCB */ -/*-----------------------------------------------------------*/ - -#if ( portCRITICAL_NESTING_IN_TCB == 1 ) - - void vTaskExitCritical( void ) - { - if( xSchedulerRunning != pdFALSE ) - { - if( pxCurrentTCB->uxCriticalNesting > 0U ) - { - ( pxCurrentTCB->uxCriticalNesting )--; - - if( pxCurrentTCB->uxCriticalNesting == 0U ) - { - portENABLE_INTERRUPTS(); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - -#endif /* portCRITICAL_NESTING_IN_TCB */ -/*-----------------------------------------------------------*/ - -#if ( ( configUSE_TRACE_FACILITY == 1 ) && ( configUSE_STATS_FORMATTING_FUNCTIONS > 0 ) ) - - static char *prvWriteNameToBuffer( char *pcBuffer, const char *pcTaskName ) - { - size_t x; - - /* Start by copying the entire string. */ - strcpy( pcBuffer, pcTaskName ); - - /* Pad the end of the string with spaces to ensure columns line up when - printed out. */ - for( x = strlen( pcBuffer ); x < ( size_t ) ( configMAX_TASK_NAME_LEN - 1 ); x++ ) - { - pcBuffer[ x ] = ' '; - } - - /* Terminate. */ - pcBuffer[ x ] = ( char ) 0x00; - - /* Return the new end of string. */ - return &( pcBuffer[ x ] ); - } - -#endif /* ( configUSE_TRACE_FACILITY == 1 ) && ( configUSE_STATS_FORMATTING_FUNCTIONS > 0 ) */ -/*-----------------------------------------------------------*/ - -#if ( ( configUSE_TRACE_FACILITY == 1 ) && ( configUSE_STATS_FORMATTING_FUNCTIONS > 0 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) ) - - void vTaskList( char * pcWriteBuffer ) - { - TaskStatus_t *pxTaskStatusArray; - UBaseType_t uxArraySize, x; - char cStatus; - - /* - * PLEASE NOTE: - * - * This function is provided for convenience only, and is used by many - * of the demo applications. Do not consider it to be part of the - * scheduler. - * - * vTaskList() calls uxTaskGetSystemState(), then formats part of the - * uxTaskGetSystemState() output into a human readable table that - * displays task names, states and stack usage. - * - * vTaskList() has a dependency on the sprintf() C library function that - * might bloat the code size, use a lot of stack, and provide different - * results on different platforms. An alternative, tiny, third party, - * and limited functionality implementation of sprintf() is provided in - * many of the FreeRTOS/Demo sub-directories in a file called - * printf-stdarg.c (note printf-stdarg.c does not provide a full - * snprintf() implementation!). - * - * It is recommended that production systems call uxTaskGetSystemState() - * directly to get access to raw stats data, rather than indirectly - * through a call to vTaskList(). - */ - - - /* Make sure the write buffer does not contain a string. */ - *pcWriteBuffer = ( char ) 0x00; - - /* Take a snapshot of the number of tasks in case it changes while this - function is executing. */ - uxArraySize = uxCurrentNumberOfTasks; - - /* Allocate an array index for each task. NOTE! if - configSUPPORT_DYNAMIC_ALLOCATION is set to 0 then pvPortMalloc() will - equate to NULL. */ - pxTaskStatusArray = pvPortMalloc( uxCurrentNumberOfTasks * sizeof( TaskStatus_t ) ); /*lint !e9079 All values returned by pvPortMalloc() have at least the alignment required by the MCU's stack and this allocation allocates a struct that has the alignment requirements of a pointer. */ - - if( pxTaskStatusArray != NULL ) - { - /* Generate the (binary) data. */ - uxArraySize = uxTaskGetSystemState( pxTaskStatusArray, uxArraySize, NULL ); - - /* Create a human readable table from the binary data. */ - for( x = 0; x < uxArraySize; x++ ) - { - switch( pxTaskStatusArray[ x ].eCurrentState ) - { - case eRunning: cStatus = tskRUNNING_CHAR; - break; - - case eReady: cStatus = tskREADY_CHAR; - break; - - case eBlocked: cStatus = tskBLOCKED_CHAR; - break; - - case eSuspended: cStatus = tskSUSPENDED_CHAR; - break; - - case eDeleted: cStatus = tskDELETED_CHAR; - break; - - case eInvalid: /* Fall through. */ - default: /* Should not get here, but it is included - to prevent static checking errors. */ - cStatus = ( char ) 0x00; - break; - } - - /* Write the task name to the string, padding with spaces so it - can be printed in tabular form more easily. */ - pcWriteBuffer = prvWriteNameToBuffer( pcWriteBuffer, pxTaskStatusArray[ x ].pcTaskName ); - - /* Write the rest of the string. */ - sprintf( pcWriteBuffer, "\t%c\t%u\t%u\t%u\r\n", cStatus, ( unsigned int ) pxTaskStatusArray[ x ].uxCurrentPriority, ( unsigned int ) pxTaskStatusArray[ x ].usStackHighWaterMark, ( unsigned int ) pxTaskStatusArray[ x ].xTaskNumber ); /*lint !e586 sprintf() allowed as this is compiled with many compilers and this is a utility function only - not part of the core kernel implementation. */ - pcWriteBuffer += strlen( pcWriteBuffer ); /*lint !e9016 Pointer arithmetic ok on char pointers especially as in this case where it best denotes the intent of the code. */ - } - - /* Free the array again. NOTE! If configSUPPORT_DYNAMIC_ALLOCATION - is 0 then vPortFree() will be #defined to nothing. */ - vPortFree( pxTaskStatusArray ); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - -#endif /* ( ( configUSE_TRACE_FACILITY == 1 ) && ( configUSE_STATS_FORMATTING_FUNCTIONS > 0 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) ) */ -/*----------------------------------------------------------*/ - -#if ( ( configGENERATE_RUN_TIME_STATS == 1 ) && ( configUSE_STATS_FORMATTING_FUNCTIONS > 0 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) ) - - void vTaskGetRunTimeStats( char *pcWriteBuffer ) - { - TaskStatus_t *pxTaskStatusArray; - UBaseType_t uxArraySize, x; - uint32_t ulTotalTime, ulStatsAsPercentage; - - #if( configUSE_TRACE_FACILITY != 1 ) - { - #error configUSE_TRACE_FACILITY must also be set to 1 in FreeRTOSConfig.h to use vTaskGetRunTimeStats(). - } - #endif - - /* - * PLEASE NOTE: - * - * This function is provided for convenience only, and is used by many - * of the demo applications. Do not consider it to be part of the - * scheduler. - * - * vTaskGetRunTimeStats() calls uxTaskGetSystemState(), then formats part - * of the uxTaskGetSystemState() output into a human readable table that - * displays the amount of time each task has spent in the Running state - * in both absolute and percentage terms. - * - * vTaskGetRunTimeStats() has a dependency on the sprintf() C library - * function that might bloat the code size, use a lot of stack, and - * provide different results on different platforms. An alternative, - * tiny, third party, and limited functionality implementation of - * sprintf() is provided in many of the FreeRTOS/Demo sub-directories in - * a file called printf-stdarg.c (note printf-stdarg.c does not provide - * a full snprintf() implementation!). - * - * It is recommended that production systems call uxTaskGetSystemState() - * directly to get access to raw stats data, rather than indirectly - * through a call to vTaskGetRunTimeStats(). - */ - - /* Make sure the write buffer does not contain a string. */ - *pcWriteBuffer = ( char ) 0x00; - - /* Take a snapshot of the number of tasks in case it changes while this - function is executing. */ - uxArraySize = uxCurrentNumberOfTasks; - - /* Allocate an array index for each task. NOTE! If - configSUPPORT_DYNAMIC_ALLOCATION is set to 0 then pvPortMalloc() will - equate to NULL. */ - pxTaskStatusArray = pvPortMalloc( uxCurrentNumberOfTasks * sizeof( TaskStatus_t ) ); /*lint !e9079 All values returned by pvPortMalloc() have at least the alignment required by the MCU's stack and this allocation allocates a struct that has the alignment requirements of a pointer. */ - - if( pxTaskStatusArray != NULL ) - { - /* Generate the (binary) data. */ - uxArraySize = uxTaskGetSystemState( pxTaskStatusArray, uxArraySize, &ulTotalTime ); - - /* For percentage calculations. */ - ulTotalTime /= 100UL; - - /* Avoid divide by zero errors. */ - if( ulTotalTime > 0UL ) - { - /* Create a human readable table from the binary data. */ - for( x = 0; x < uxArraySize; x++ ) - { - /* What percentage of the total run time has the task used? - This will always be rounded down to the nearest integer. - ulTotalRunTimeDiv100 has already been divided by 100. */ - ulStatsAsPercentage = pxTaskStatusArray[ x ].ulRunTimeCounter / ulTotalTime; - - /* Write the task name to the string, padding with - spaces so it can be printed in tabular form more - easily. */ - pcWriteBuffer = prvWriteNameToBuffer( pcWriteBuffer, pxTaskStatusArray[ x ].pcTaskName ); - - if( ulStatsAsPercentage > 0UL ) - { - #ifdef portLU_PRINTF_SPECIFIER_REQUIRED - { - sprintf( pcWriteBuffer, "\t%lu\t\t%lu%%\r\n", pxTaskStatusArray[ x ].ulRunTimeCounter, ulStatsAsPercentage ); - } - #else - { - /* sizeof( int ) == sizeof( long ) so a smaller - printf() library can be used. */ - sprintf( pcWriteBuffer, "\t%u\t\t%u%%\r\n", ( unsigned int ) pxTaskStatusArray[ x ].ulRunTimeCounter, ( unsigned int ) ulStatsAsPercentage ); /*lint !e586 sprintf() allowed as this is compiled with many compilers and this is a utility function only - not part of the core kernel implementation. */ - } - #endif - } - else - { - /* If the percentage is zero here then the task has - consumed less than 1% of the total run time. */ - #ifdef portLU_PRINTF_SPECIFIER_REQUIRED - { - sprintf( pcWriteBuffer, "\t%lu\t\t<1%%\r\n", pxTaskStatusArray[ x ].ulRunTimeCounter ); - } - #else - { - /* sizeof( int ) == sizeof( long ) so a smaller - printf() library can be used. */ - sprintf( pcWriteBuffer, "\t%u\t\t<1%%\r\n", ( unsigned int ) pxTaskStatusArray[ x ].ulRunTimeCounter ); /*lint !e586 sprintf() allowed as this is compiled with many compilers and this is a utility function only - not part of the core kernel implementation. */ - } - #endif - } - - pcWriteBuffer += strlen( pcWriteBuffer ); /*lint !e9016 Pointer arithmetic ok on char pointers especially as in this case where it best denotes the intent of the code. */ - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - /* Free the array again. NOTE! If configSUPPORT_DYNAMIC_ALLOCATION - is 0 then vPortFree() will be #defined to nothing. */ - vPortFree( pxTaskStatusArray ); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - -#endif /* ( ( configGENERATE_RUN_TIME_STATS == 1 ) && ( configUSE_STATS_FORMATTING_FUNCTIONS > 0 ) && ( configSUPPORT_STATIC_ALLOCATION == 1 ) ) */ -/*-----------------------------------------------------------*/ - -TickType_t uxTaskResetEventItemValue( void ) -{ -TickType_t uxReturn; - - uxReturn = listGET_LIST_ITEM_VALUE( &( pxCurrentTCB->xEventListItem ) ); - - /* Reset the event list item to its normal value - so it can be used with - queues and semaphores. */ - listSET_LIST_ITEM_VALUE( &( pxCurrentTCB->xEventListItem ), ( ( TickType_t ) configMAX_PRIORITIES - ( TickType_t ) pxCurrentTCB->uxPriority ) ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ - - return uxReturn; -} -/*-----------------------------------------------------------*/ - -#if ( configUSE_MUTEXES == 1 ) - - TaskHandle_t pvTaskIncrementMutexHeldCount( void ) - { - /* If xSemaphoreCreateMutex() is called before any tasks have been created - then pxCurrentTCB will be NULL. */ - if( pxCurrentTCB != NULL ) - { - ( pxCurrentTCB->uxMutexesHeld )++; - } - - return pxCurrentTCB; - } - -#endif /* configUSE_MUTEXES */ -/*-----------------------------------------------------------*/ - -#if( configUSE_TASK_NOTIFICATIONS == 1 ) - - uint32_t ulTaskNotifyTake( BaseType_t xClearCountOnExit, TickType_t xTicksToWait ) - { - uint32_t ulReturn; - - taskENTER_CRITICAL(); - { - /* Only block if the notification count is not already non-zero. */ - if( pxCurrentTCB->ulNotifiedValue == 0UL ) - { - /* Mark this task as waiting for a notification. */ - pxCurrentTCB->ucNotifyState = taskWAITING_NOTIFICATION; - - if( xTicksToWait > ( TickType_t ) 0 ) - { - prvAddCurrentTaskToDelayedList( xTicksToWait, pdTRUE ); - traceTASK_NOTIFY_TAKE_BLOCK(); - - /* All ports are written to allow a yield in a critical - section (some will yield immediately, others wait until the - critical section exits) - but it is not something that - application code should ever do. */ - portYIELD_WITHIN_API(); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - taskEXIT_CRITICAL(); - - taskENTER_CRITICAL(); - { - traceTASK_NOTIFY_TAKE(); - ulReturn = pxCurrentTCB->ulNotifiedValue; - - if( ulReturn != 0UL ) - { - if( xClearCountOnExit != pdFALSE ) - { - pxCurrentTCB->ulNotifiedValue = 0UL; - } - else - { - pxCurrentTCB->ulNotifiedValue = ulReturn - ( uint32_t ) 1; - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - pxCurrentTCB->ucNotifyState = taskNOT_WAITING_NOTIFICATION; - } - taskEXIT_CRITICAL(); - - return ulReturn; - } - -#endif /* configUSE_TASK_NOTIFICATIONS */ -/*-----------------------------------------------------------*/ - -#if( configUSE_TASK_NOTIFICATIONS == 1 ) - - BaseType_t xTaskNotifyWait( uint32_t ulBitsToClearOnEntry, uint32_t ulBitsToClearOnExit, uint32_t *pulNotificationValue, TickType_t xTicksToWait ) - { - BaseType_t xReturn; - - taskENTER_CRITICAL(); - { - /* Only block if a notification is not already pending. */ - if( pxCurrentTCB->ucNotifyState != taskNOTIFICATION_RECEIVED ) - { - /* Clear bits in the task's notification value as bits may get - set by the notifying task or interrupt. This can be used to - clear the value to zero. */ - pxCurrentTCB->ulNotifiedValue &= ~ulBitsToClearOnEntry; - - /* Mark this task as waiting for a notification. */ - pxCurrentTCB->ucNotifyState = taskWAITING_NOTIFICATION; - - if( xTicksToWait > ( TickType_t ) 0 ) - { - prvAddCurrentTaskToDelayedList( xTicksToWait, pdTRUE ); - traceTASK_NOTIFY_WAIT_BLOCK(); - - /* All ports are written to allow a yield in a critical - section (some will yield immediately, others wait until the - critical section exits) - but it is not something that - application code should ever do. */ - portYIELD_WITHIN_API(); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - taskEXIT_CRITICAL(); - - taskENTER_CRITICAL(); - { - traceTASK_NOTIFY_WAIT(); - - if( pulNotificationValue != NULL ) - { - /* Output the current notification value, which may or may not - have changed. */ - *pulNotificationValue = pxCurrentTCB->ulNotifiedValue; - } - - /* If ucNotifyValue is set then either the task never entered the - blocked state (because a notification was already pending) or the - task unblocked because of a notification. Otherwise the task - unblocked because of a timeout. */ - if( pxCurrentTCB->ucNotifyState != taskNOTIFICATION_RECEIVED ) - { - /* A notification was not received. */ - xReturn = pdFALSE; - } - else - { - /* A notification was already pending or a notification was - received while the task was waiting. */ - pxCurrentTCB->ulNotifiedValue &= ~ulBitsToClearOnExit; - xReturn = pdTRUE; - } - - pxCurrentTCB->ucNotifyState = taskNOT_WAITING_NOTIFICATION; - } - taskEXIT_CRITICAL(); - - return xReturn; - } - -#endif /* configUSE_TASK_NOTIFICATIONS */ -/*-----------------------------------------------------------*/ - -#if( configUSE_TASK_NOTIFICATIONS == 1 ) - - BaseType_t xTaskGenericNotify( TaskHandle_t xTaskToNotify, uint32_t ulValue, eNotifyAction eAction, uint32_t *pulPreviousNotificationValue ) - { - TCB_t * pxTCB; - BaseType_t xReturn = pdPASS; - uint8_t ucOriginalNotifyState; - - configASSERT( xTaskToNotify ); - pxTCB = xTaskToNotify; - - taskENTER_CRITICAL(); - { - if( pulPreviousNotificationValue != NULL ) - { - *pulPreviousNotificationValue = pxTCB->ulNotifiedValue; - } - - ucOriginalNotifyState = pxTCB->ucNotifyState; - - pxTCB->ucNotifyState = taskNOTIFICATION_RECEIVED; - - switch( eAction ) - { - case eSetBits : - pxTCB->ulNotifiedValue |= ulValue; - break; - - case eIncrement : - ( pxTCB->ulNotifiedValue )++; - break; - - case eSetValueWithOverwrite : - pxTCB->ulNotifiedValue = ulValue; - break; - - case eSetValueWithoutOverwrite : - if( ucOriginalNotifyState != taskNOTIFICATION_RECEIVED ) - { - pxTCB->ulNotifiedValue = ulValue; - } - else - { - /* The value could not be written to the task. */ - xReturn = pdFAIL; - } - break; - - case eNoAction: - /* The task is being notified without its notify value being - updated. */ - break; - - default: - /* Should not get here if all enums are handled. - Artificially force an assert by testing a value the - compiler can't assume is const. */ - configASSERT( pxTCB->ulNotifiedValue == ~0UL ); - - break; - } - - traceTASK_NOTIFY(); - - /* If the task is in the blocked state specifically to wait for a - notification then unblock it now. */ - if( ucOriginalNotifyState == taskWAITING_NOTIFICATION ) - { - ( void ) uxListRemove( &( pxTCB->xStateListItem ) ); - prvAddTaskToReadyList( pxTCB ); - - /* The task should not have been on an event list. */ - configASSERT( listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) == NULL ); - - #if( configUSE_TICKLESS_IDLE != 0 ) - { - /* If a task is blocked waiting for a notification then - xNextTaskUnblockTime might be set to the blocked task's time - out time. If the task is unblocked for a reason other than - a timeout xNextTaskUnblockTime is normally left unchanged, - because it will automatically get reset to a new value when - the tick count equals xNextTaskUnblockTime. However if - tickless idling is used it might be more important to enter - sleep mode at the earliest possible time - so reset - xNextTaskUnblockTime here to ensure it is updated at the - earliest possible time. */ - prvResetNextTaskUnblockTime(); - } - #endif - - if( pxTCB->uxPriority > pxCurrentTCB->uxPriority ) - { - /* The notified task has a priority above the currently - executing task so a yield is required. */ - taskYIELD_IF_USING_PREEMPTION(); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - taskEXIT_CRITICAL(); - - return xReturn; - } - -#endif /* configUSE_TASK_NOTIFICATIONS */ -/*-----------------------------------------------------------*/ - -#if( configUSE_TASK_NOTIFICATIONS == 1 ) - - BaseType_t xTaskGenericNotifyFromISR( TaskHandle_t xTaskToNotify, uint32_t ulValue, eNotifyAction eAction, uint32_t *pulPreviousNotificationValue, BaseType_t *pxHigherPriorityTaskWoken ) - { - TCB_t * pxTCB; - uint8_t ucOriginalNotifyState; - BaseType_t xReturn = pdPASS; - UBaseType_t uxSavedInterruptStatus; - - configASSERT( xTaskToNotify ); - - /* RTOS ports that support interrupt nesting have the concept of a - maximum system call (or maximum API call) interrupt priority. - Interrupts that are above the maximum system call priority are keep - permanently enabled, even when the RTOS kernel is in a critical section, - but cannot make any calls to FreeRTOS API functions. If configASSERT() - is defined in FreeRTOSConfig.h then - portASSERT_IF_INTERRUPT_PRIORITY_INVALID() will result in an assertion - failure if a FreeRTOS API function is called from an interrupt that has - been assigned a priority above the configured maximum system call - priority. Only FreeRTOS functions that end in FromISR can be called - from interrupts that have been assigned a priority at or (logically) - below the maximum system call interrupt priority. FreeRTOS maintains a - separate interrupt safe API to ensure interrupt entry is as fast and as - simple as possible. More information (albeit Cortex-M specific) is - provided on the following link: - http://www.freertos.org/RTOS-Cortex-M3-M4.html */ - portASSERT_IF_INTERRUPT_PRIORITY_INVALID(); - - pxTCB = xTaskToNotify; - - uxSavedInterruptStatus = portSET_INTERRUPT_MASK_FROM_ISR(); - { - if( pulPreviousNotificationValue != NULL ) - { - *pulPreviousNotificationValue = pxTCB->ulNotifiedValue; - } - - ucOriginalNotifyState = pxTCB->ucNotifyState; - pxTCB->ucNotifyState = taskNOTIFICATION_RECEIVED; - - switch( eAction ) - { - case eSetBits : - pxTCB->ulNotifiedValue |= ulValue; - break; - - case eIncrement : - ( pxTCB->ulNotifiedValue )++; - break; - - case eSetValueWithOverwrite : - pxTCB->ulNotifiedValue = ulValue; - break; - - case eSetValueWithoutOverwrite : - if( ucOriginalNotifyState != taskNOTIFICATION_RECEIVED ) - { - pxTCB->ulNotifiedValue = ulValue; - } - else - { - /* The value could not be written to the task. */ - xReturn = pdFAIL; - } - break; - - case eNoAction : - /* The task is being notified without its notify value being - updated. */ - break; - - default: - /* Should not get here if all enums are handled. - Artificially force an assert by testing a value the - compiler can't assume is const. */ - configASSERT( pxTCB->ulNotifiedValue == ~0UL ); - break; - } - - traceTASK_NOTIFY_FROM_ISR(); - - /* If the task is in the blocked state specifically to wait for a - notification then unblock it now. */ - if( ucOriginalNotifyState == taskWAITING_NOTIFICATION ) - { - /* The task should not have been on an event list. */ - configASSERT( listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) == NULL ); - - if( uxSchedulerSuspended == ( UBaseType_t ) pdFALSE ) - { - ( void ) uxListRemove( &( pxTCB->xStateListItem ) ); - prvAddTaskToReadyList( pxTCB ); - } - else - { - /* The delayed and ready lists cannot be accessed, so hold - this task pending until the scheduler is resumed. */ - vListInsertEnd( &( xPendingReadyList ), &( pxTCB->xEventListItem ) ); - } - - if( pxTCB->uxPriority > pxCurrentTCB->uxPriority ) - { - /* The notified task has a priority above the currently - executing task so a yield is required. */ - if( pxHigherPriorityTaskWoken != NULL ) - { - *pxHigherPriorityTaskWoken = pdTRUE; - } - - /* Mark that a yield is pending in case the user is not - using the "xHigherPriorityTaskWoken" parameter to an ISR - safe FreeRTOS function. */ - xYieldPending = pdTRUE; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - } - portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus ); - - return xReturn; - } - -#endif /* configUSE_TASK_NOTIFICATIONS */ -/*-----------------------------------------------------------*/ - -#if( configUSE_TASK_NOTIFICATIONS == 1 ) - - void vTaskNotifyGiveFromISR( TaskHandle_t xTaskToNotify, BaseType_t *pxHigherPriorityTaskWoken ) - { - TCB_t * pxTCB; - uint8_t ucOriginalNotifyState; - UBaseType_t uxSavedInterruptStatus; - - configASSERT( xTaskToNotify ); - - /* RTOS ports that support interrupt nesting have the concept of a - maximum system call (or maximum API call) interrupt priority. - Interrupts that are above the maximum system call priority are keep - permanently enabled, even when the RTOS kernel is in a critical section, - but cannot make any calls to FreeRTOS API functions. If configASSERT() - is defined in FreeRTOSConfig.h then - portASSERT_IF_INTERRUPT_PRIORITY_INVALID() will result in an assertion - failure if a FreeRTOS API function is called from an interrupt that has - been assigned a priority above the configured maximum system call - priority. Only FreeRTOS functions that end in FromISR can be called - from interrupts that have been assigned a priority at or (logically) - below the maximum system call interrupt priority. FreeRTOS maintains a - separate interrupt safe API to ensure interrupt entry is as fast and as - simple as possible. More information (albeit Cortex-M specific) is - provided on the following link: - http://www.freertos.org/RTOS-Cortex-M3-M4.html */ - portASSERT_IF_INTERRUPT_PRIORITY_INVALID(); - - pxTCB = xTaskToNotify; - - uxSavedInterruptStatus = portSET_INTERRUPT_MASK_FROM_ISR(); - { - ucOriginalNotifyState = pxTCB->ucNotifyState; - pxTCB->ucNotifyState = taskNOTIFICATION_RECEIVED; - - /* 'Giving' is equivalent to incrementing a count in a counting - semaphore. */ - ( pxTCB->ulNotifiedValue )++; - - traceTASK_NOTIFY_GIVE_FROM_ISR(); - - /* If the task is in the blocked state specifically to wait for a - notification then unblock it now. */ - if( ucOriginalNotifyState == taskWAITING_NOTIFICATION ) - { - /* The task should not have been on an event list. */ - configASSERT( listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) == NULL ); - - if( uxSchedulerSuspended == ( UBaseType_t ) pdFALSE ) - { - ( void ) uxListRemove( &( pxTCB->xStateListItem ) ); - prvAddTaskToReadyList( pxTCB ); - } - else - { - /* The delayed and ready lists cannot be accessed, so hold - this task pending until the scheduler is resumed. */ - vListInsertEnd( &( xPendingReadyList ), &( pxTCB->xEventListItem ) ); - } - - if( pxTCB->uxPriority > pxCurrentTCB->uxPriority ) - { - /* The notified task has a priority above the currently - executing task so a yield is required. */ - if( pxHigherPriorityTaskWoken != NULL ) - { - *pxHigherPriorityTaskWoken = pdTRUE; - } - - /* Mark that a yield is pending in case the user is not - using the "xHigherPriorityTaskWoken" parameter in an ISR - safe FreeRTOS function. */ - xYieldPending = pdTRUE; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - } - portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus ); - } - -#endif /* configUSE_TASK_NOTIFICATIONS */ -/*-----------------------------------------------------------*/ - -#if( configUSE_TASK_NOTIFICATIONS == 1 ) - - BaseType_t xTaskNotifyStateClear( TaskHandle_t xTask ) - { - TCB_t *pxTCB; - BaseType_t xReturn; - - /* If null is passed in here then it is the calling task that is having - its notification state cleared. */ - pxTCB = prvGetTCBFromHandle( xTask ); - - taskENTER_CRITICAL(); - { - if( pxTCB->ucNotifyState == taskNOTIFICATION_RECEIVED ) - { - pxTCB->ucNotifyState = taskNOT_WAITING_NOTIFICATION; - xReturn = pdPASS; - } - else - { - xReturn = pdFAIL; - } - } - taskEXIT_CRITICAL(); - - return xReturn; - } - -#endif /* configUSE_TASK_NOTIFICATIONS */ -/*-----------------------------------------------------------*/ - -#if( configUSE_TASK_NOTIFICATIONS == 1 ) - - uint32_t ulTaskNotifyValueClear( TaskHandle_t xTask, uint32_t ulBitsToClear ) - { - TCB_t *pxTCB; - uint32_t ulReturn; - - /* If null is passed in here then it is the calling task that is having - its notification state cleared. */ - pxTCB = prvGetTCBFromHandle( xTask ); - - taskENTER_CRITICAL(); - { - /* Return the notification as it was before the bits were cleared, - then clear the bit mask. */ - ulReturn = pxCurrentTCB->ulNotifiedValue; - pxTCB->ulNotifiedValue &= ~ulBitsToClear; - } - taskEXIT_CRITICAL(); - - return ulReturn; - } - -#endif /* configUSE_TASK_NOTIFICATIONS */ -/*-----------------------------------------------------------*/ - -#if( ( configGENERATE_RUN_TIME_STATS == 1 ) && ( INCLUDE_xTaskGetIdleTaskHandle == 1 ) ) - - uint32_t ulTaskGetIdleRunTimeCounter( void ) - { - return xIdleTaskHandle->ulRunTimeCounter; - } - -#endif -/*-----------------------------------------------------------*/ - -static void prvAddCurrentTaskToDelayedList( TickType_t xTicksToWait, const BaseType_t xCanBlockIndefinitely ) -{ -TickType_t xTimeToWake; -const TickType_t xConstTickCount = xTickCount; - - #if( INCLUDE_xTaskAbortDelay == 1 ) - { - /* About to enter a delayed list, so ensure the ucDelayAborted flag is - reset to pdFALSE so it can be detected as having been set to pdTRUE - when the task leaves the Blocked state. */ - pxCurrentTCB->ucDelayAborted = pdFALSE; - } - #endif - - /* Remove the task from the ready list before adding it to the blocked list - as the same list item is used for both lists. */ - if( uxListRemove( &( pxCurrentTCB->xStateListItem ) ) == ( UBaseType_t ) 0 ) - { - /* The current task must be in a ready list, so there is no need to - check, and the port reset macro can be called directly. */ - portRESET_READY_PRIORITY( pxCurrentTCB->uxPriority, uxTopReadyPriority ); /*lint !e931 pxCurrentTCB cannot change as it is the calling task. pxCurrentTCB->uxPriority and uxTopReadyPriority cannot change as called with scheduler suspended or in a critical section. */ - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - #if ( INCLUDE_vTaskSuspend == 1 ) - { - if( ( xTicksToWait == portMAX_DELAY ) && ( xCanBlockIndefinitely != pdFALSE ) ) - { - /* Add the task to the suspended task list instead of a delayed task - list to ensure it is not woken by a timing event. It will block - indefinitely. */ - vListInsertEnd( &xSuspendedTaskList, &( pxCurrentTCB->xStateListItem ) ); - } - else - { - /* Calculate the time at which the task should be woken if the event - does not occur. This may overflow but this doesn't matter, the - kernel will manage it correctly. */ - xTimeToWake = xConstTickCount + xTicksToWait; - - /* The list item will be inserted in wake time order. */ - listSET_LIST_ITEM_VALUE( &( pxCurrentTCB->xStateListItem ), xTimeToWake ); - - if( xTimeToWake < xConstTickCount ) - { - /* Wake time has overflowed. Place this item in the overflow - list. */ - vListInsert( pxOverflowDelayedTaskList, &( pxCurrentTCB->xStateListItem ) ); - } - else - { - /* The wake time has not overflowed, so the current block list - is used. */ - vListInsert( pxDelayedTaskList, &( pxCurrentTCB->xStateListItem ) ); - - /* If the task entering the blocked state was placed at the - head of the list of blocked tasks then xNextTaskUnblockTime - needs to be updated too. */ - if( xTimeToWake < xNextTaskUnblockTime ) - { - xNextTaskUnblockTime = xTimeToWake; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - } - } - #else /* INCLUDE_vTaskSuspend */ - { - /* Calculate the time at which the task should be woken if the event - does not occur. This may overflow but this doesn't matter, the kernel - will manage it correctly. */ - xTimeToWake = xConstTickCount + xTicksToWait; - - /* The list item will be inserted in wake time order. */ - listSET_LIST_ITEM_VALUE( &( pxCurrentTCB->xStateListItem ), xTimeToWake ); - - if( xTimeToWake < xConstTickCount ) - { - /* Wake time has overflowed. Place this item in the overflow list. */ - vListInsert( pxOverflowDelayedTaskList, &( pxCurrentTCB->xStateListItem ) ); - } - else - { - /* The wake time has not overflowed, so the current block list is used. */ - vListInsert( pxDelayedTaskList, &( pxCurrentTCB->xStateListItem ) ); - - /* If the task entering the blocked state was placed at the head of the - list of blocked tasks then xNextTaskUnblockTime needs to be updated - too. */ - if( xTimeToWake < xNextTaskUnblockTime ) - { - xNextTaskUnblockTime = xTimeToWake; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - - /* Avoid compiler warning when INCLUDE_vTaskSuspend is not 1. */ - ( void ) xCanBlockIndefinitely; - } - #endif /* INCLUDE_vTaskSuspend */ -} - -/* Code below here allows additional code to be inserted into this source file, -especially where access to file scope functions and data is needed (for example -when performing module tests). */ - -#ifdef FREERTOS_MODULE_TEST - #include "tasks_test_access_functions.h" -#endif - - -#if( configINCLUDE_FREERTOS_TASK_C_ADDITIONS_H == 1 ) - - #include "freertos_tasks_c_additions.h" - - #ifdef FREERTOS_TASKS_C_ADDITIONS_INIT - static void freertos_tasks_c_additions_init( void ) - { - FREERTOS_TASKS_C_ADDITIONS_INIT(); - } - #endif - -#endif - - diff --git a/rtos/freertos/abstraction_layer_freertos/scr/timer_irq.c b/rtos/freertos/abstraction_layer_freertos/scr/timer_irq.c deleted file mode 100644 index cc60574b..00000000 --- a/rtos/freertos/abstraction_layer_freertos/scr/timer_irq.c +++ /dev/null @@ -1,77 +0,0 @@ -/* - * Copyright (C) 2019 ETH Zurich and University of Bologna - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * SPDX-License-Identifier: Apache-2.0 - */ - -/* Driver to configure PULP timer as periodic interrupt source */ -/* Author: Robert Balas (balasr@iis.ee.ethz.ch) - * Germain Haugou (germain.haugou@iis.ee.ethz.ch) - */ - -#include -#include - -#include "pulp_mem_map.h" -#include "io.h" -#include "bits.h" - -#include "timer.h" -#include "timer_irq.h" - -/* TODO: used to measure elapsed time since last "visit" */ -static uint32_t last_count; - -int timer_irq_init(uint32_t ticks) -{ - /* TODO: enable soc_eu timer interrupt */ - - /* set the interrupt interval */ - timer_irq_set_timeout(ticks, false); - - /* We use only one of the 32-bit timer, leaving the other half available - * as an additional timer. We didn't opt for using both together as - * 64-bit timer. - * - * Enable timer, use 32khz ref clock as source. Timer will reset - * automatically to zero after causing an interrupt. - */ - writew(TIMER_CFG_LO_ENABLE_MASK | TIMER_CFG_LO_RESET_MASK | - TIMER_CFG_LO_CCFG_MASK | TIMER_CFG_LO_MODE_MASK | - TIMER_CFG_LO_IRQEN_MASK, - (uintptr_t)(PULP_FC_TIMER_ADDR + TIMER_CFG_LO_OFFSET)); - - return 0; -} - -int timer_irq_set_timeout(uint32_t ticks, bool idle) -{ - (void)idle; - /* fast reset, value doesn't matter */ - writew(1, (uintptr_t)(PULP_FC_TIMER_ADDR + TIMER_RESET_LO_OFFSET)); - writew(ticks, (uintptr_t)(PULP_FC_TIMER_ADDR + TIMER_CMP_LO_OFFSET)); - return 0; -} - -/* TODO: implement */ -uint32_t timer_irq_clock_elapsed() -{ - return 0; -} - -uint32_t timer_irq_cycle_get_32() -{ - return readw((uintptr_t)(PULP_FC_TIMER_ADDR + TIMER_CNT_LO_OFFSET)); -} diff --git a/rtos/freertos/abstraction_layer_freertos/scr/timers.c b/rtos/freertos/abstraction_layer_freertos/scr/timers.c deleted file mode 100644 index bfcc4eaf..00000000 --- a/rtos/freertos/abstraction_layer_freertos/scr/timers.c +++ /dev/null @@ -1,1127 +0,0 @@ -/* - * FreeRTOS Kernel V10.3.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. - * - * Permission is hereby granted, free of charge, to any person obtaining a copy of - * this software and associated documentation files (the "Software"), to deal in - * the Software without restriction, including without limitation the rights to - * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of - * the Software, and to permit persons to whom the Software is furnished to do so, - * subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS - * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR - * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER - * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - * - * http://www.FreeRTOS.org - * http://aws.amazon.com/freertos - * - * 1 tab == 4 spaces! - */ - -/* Standard includes. */ -#include - -/* Defining MPU_WRAPPERS_INCLUDED_FROM_API_FILE prevents task.h from redefining -all the API functions to use the MPU wrappers. That should only be done when -task.h is included from an application file. */ -#define MPU_WRAPPERS_INCLUDED_FROM_API_FILE - -#include "FreeRTOS.h" -#include "task.h" -#include "queue.h" -#include "timers.h" - -#if ( INCLUDE_xTimerPendFunctionCall == 1 ) && ( configUSE_TIMERS == 0 ) - #error configUSE_TIMERS must be set to 1 to make the xTimerPendFunctionCall() function available. -#endif - -/* Lint e9021, e961 and e750 are suppressed as a MISRA exception justified -because the MPU ports require MPU_WRAPPERS_INCLUDED_FROM_API_FILE to be defined -for the header files above, but not in this file, in order to generate the -correct privileged Vs unprivileged linkage and placement. */ -#undef MPU_WRAPPERS_INCLUDED_FROM_API_FILE /*lint !e9021 !e961 !e750. */ - - -/* This entire source file will be skipped if the application is not configured -to include software timer functionality. This #if is closed at the very bottom -of this file. If you want to include software timer functionality then ensure -configUSE_TIMERS is set to 1 in FreeRTOSConfig.h. */ -#if ( configUSE_TIMERS == 1 ) - -/* Misc definitions. */ -#define tmrNO_DELAY ( TickType_t ) 0U - -/* The name assigned to the timer service task. This can be overridden by -defining trmTIMER_SERVICE_TASK_NAME in FreeRTOSConfig.h. */ -#ifndef configTIMER_SERVICE_TASK_NAME - #define configTIMER_SERVICE_TASK_NAME "Tmr Svc" -#endif - -/* Bit definitions used in the ucStatus member of a timer structure. */ -#define tmrSTATUS_IS_ACTIVE ( ( uint8_t ) 0x01 ) -#define tmrSTATUS_IS_STATICALLY_ALLOCATED ( ( uint8_t ) 0x02 ) -#define tmrSTATUS_IS_AUTORELOAD ( ( uint8_t ) 0x04 ) - -/* The definition of the timers themselves. */ -typedef struct tmrTimerControl /* The old naming convention is used to prevent breaking kernel aware debuggers. */ -{ - const char *pcTimerName; /*<< Text name. This is not used by the kernel, it is included simply to make debugging easier. */ /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ - ListItem_t xTimerListItem; /*<< Standard linked list item as used by all kernel features for event management. */ - TickType_t xTimerPeriodInTicks;/*<< How quickly and often the timer expires. */ - void *pvTimerID; /*<< An ID to identify the timer. This allows the timer to be identified when the same callback is used for multiple timers. */ - TimerCallbackFunction_t pxCallbackFunction; /*<< The function that will be called when the timer expires. */ - #if( configUSE_TRACE_FACILITY == 1 ) - UBaseType_t uxTimerNumber; /*<< An ID assigned by trace tools such as FreeRTOS+Trace */ - #endif - uint8_t ucStatus; /*<< Holds bits to say if the timer was statically allocated or not, and if it is active or not. */ -} xTIMER; - -/* The old xTIMER name is maintained above then typedefed to the new Timer_t -name below to enable the use of older kernel aware debuggers. */ -typedef xTIMER Timer_t; - -/* The definition of messages that can be sent and received on the timer queue. -Two types of message can be queued - messages that manipulate a software timer, -and messages that request the execution of a non-timer related callback. The -two message types are defined in two separate structures, xTimerParametersType -and xCallbackParametersType respectively. */ -typedef struct tmrTimerParameters -{ - TickType_t xMessageValue; /*<< An optional value used by a subset of commands, for example, when changing the period of a timer. */ - Timer_t * pxTimer; /*<< The timer to which the command will be applied. */ -} TimerParameter_t; - - -typedef struct tmrCallbackParameters -{ - PendedFunction_t pxCallbackFunction; /* << The callback function to execute. */ - void *pvParameter1; /* << The value that will be used as the callback functions first parameter. */ - uint32_t ulParameter2; /* << The value that will be used as the callback functions second parameter. */ -} CallbackParameters_t; - -/* The structure that contains the two message types, along with an identifier -that is used to determine which message type is valid. */ -typedef struct tmrTimerQueueMessage -{ - BaseType_t xMessageID; /*<< The command being sent to the timer service task. */ - union - { - TimerParameter_t xTimerParameters; - - /* Don't include xCallbackParameters if it is not going to be used as - it makes the structure (and therefore the timer queue) larger. */ - #if ( INCLUDE_xTimerPendFunctionCall == 1 ) - CallbackParameters_t xCallbackParameters; - #endif /* INCLUDE_xTimerPendFunctionCall */ - } u; -} DaemonTaskMessage_t; - -/*lint -save -e956 A manual analysis and inspection has been used to determine -which static variables must be declared volatile. */ - -/* The list in which active timers are stored. Timers are referenced in expire -time order, with the nearest expiry time at the front of the list. Only the -timer service task is allowed to access these lists. -xActiveTimerList1 and xActiveTimerList2 could be at function scope but that -breaks some kernel aware debuggers, and debuggers that reply on removing the -static qualifier. */ -PRIVILEGED_DATA static List_t xActiveTimerList1; -PRIVILEGED_DATA static List_t xActiveTimerList2; -PRIVILEGED_DATA static List_t *pxCurrentTimerList; -PRIVILEGED_DATA static List_t *pxOverflowTimerList; - -/* A queue that is used to send commands to the timer service task. */ -PRIVILEGED_DATA static QueueHandle_t xTimerQueue = NULL; -PRIVILEGED_DATA static TaskHandle_t xTimerTaskHandle = NULL; - -/*lint -restore */ - -/*-----------------------------------------------------------*/ - -#if( configSUPPORT_STATIC_ALLOCATION == 1 ) - - /* If static allocation is supported then the application must provide the - following callback function - which enables the application to optionally - provide the memory that will be used by the timer task as the task's stack - and TCB. */ - extern void vApplicationGetTimerTaskMemory( StaticTask_t **ppxTimerTaskTCBBuffer, StackType_t **ppxTimerTaskStackBuffer, uint32_t *pulTimerTaskStackSize ); - -#endif - -/* - * Initialise the infrastructure used by the timer service task if it has not - * been initialised already. - */ -static void prvCheckForValidListAndQueue( void ) PRIVILEGED_FUNCTION; - -/* - * The timer service task (daemon). Timer functionality is controlled by this - * task. Other tasks communicate with the timer service task using the - * xTimerQueue queue. - */ -static portTASK_FUNCTION_PROTO( prvTimerTask, pvParameters ) PRIVILEGED_FUNCTION; - -/* - * Called by the timer service task to interpret and process a command it - * received on the timer queue. - */ -static void prvProcessReceivedCommands( void ) PRIVILEGED_FUNCTION; - -/* - * Insert the timer into either xActiveTimerList1, or xActiveTimerList2, - * depending on if the expire time causes a timer counter overflow. - */ -static BaseType_t prvInsertTimerInActiveList( Timer_t * const pxTimer, const TickType_t xNextExpiryTime, const TickType_t xTimeNow, const TickType_t xCommandTime ) PRIVILEGED_FUNCTION; - -/* - * An active timer has reached its expire time. Reload the timer if it is an - * auto-reload timer, then call its callback. - */ -static void prvProcessExpiredTimer( const TickType_t xNextExpireTime, const TickType_t xTimeNow ) PRIVILEGED_FUNCTION; - -/* - * The tick count has overflowed. Switch the timer lists after ensuring the - * current timer list does not still reference some timers. - */ -static void prvSwitchTimerLists( void ) PRIVILEGED_FUNCTION; - -/* - * Obtain the current tick count, setting *pxTimerListsWereSwitched to pdTRUE - * if a tick count overflow occurred since prvSampleTimeNow() was last called. - */ -static TickType_t prvSampleTimeNow( BaseType_t * const pxTimerListsWereSwitched ) PRIVILEGED_FUNCTION; - -/* - * If the timer list contains any active timers then return the expire time of - * the timer that will expire first and set *pxListWasEmpty to false. If the - * timer list does not contain any timers then return 0 and set *pxListWasEmpty - * to pdTRUE. - */ -static TickType_t prvGetNextExpireTime( BaseType_t * const pxListWasEmpty ) PRIVILEGED_FUNCTION; - -/* - * If a timer has expired, process it. Otherwise, block the timer service task - * until either a timer does expire or a command is received. - */ -static void prvProcessTimerOrBlockTask( const TickType_t xNextExpireTime, BaseType_t xListWasEmpty ) PRIVILEGED_FUNCTION; - -/* - * Called after a Timer_t structure has been allocated either statically or - * dynamically to fill in the structure's members. - */ -static void prvInitialiseNewTimer( const char * const pcTimerName, /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ - const TickType_t xTimerPeriodInTicks, - const UBaseType_t uxAutoReload, - void * const pvTimerID, - TimerCallbackFunction_t pxCallbackFunction, - Timer_t *pxNewTimer ) PRIVILEGED_FUNCTION; -/*-----------------------------------------------------------*/ - -BaseType_t xTimerCreateTimerTask( void ) -{ -BaseType_t xReturn = pdFAIL; - - /* This function is called when the scheduler is started if - configUSE_TIMERS is set to 1. Check that the infrastructure used by the - timer service task has been created/initialised. If timers have already - been created then the initialisation will already have been performed. */ - prvCheckForValidListAndQueue(); - - if( xTimerQueue != NULL ) - { - #if( configSUPPORT_STATIC_ALLOCATION == 1 ) - { - StaticTask_t *pxTimerTaskTCBBuffer = NULL; - StackType_t *pxTimerTaskStackBuffer = NULL; - uint32_t ulTimerTaskStackSize; - - vApplicationGetTimerTaskMemory( &pxTimerTaskTCBBuffer, &pxTimerTaskStackBuffer, &ulTimerTaskStackSize ); - xTimerTaskHandle = xTaskCreateStatic( prvTimerTask, - configTIMER_SERVICE_TASK_NAME, - ulTimerTaskStackSize, - NULL, - ( ( UBaseType_t ) configTIMER_TASK_PRIORITY ) | portPRIVILEGE_BIT, - pxTimerTaskStackBuffer, - pxTimerTaskTCBBuffer ); - - if( xTimerTaskHandle != NULL ) - { - xReturn = pdPASS; - } - } - #else - { - xReturn = xTaskCreate( prvTimerTask, - configTIMER_SERVICE_TASK_NAME, - configTIMER_TASK_STACK_DEPTH, - NULL, - ( ( UBaseType_t ) configTIMER_TASK_PRIORITY ) | portPRIVILEGE_BIT, - &xTimerTaskHandle ); - } - #endif /* configSUPPORT_STATIC_ALLOCATION */ - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - configASSERT( xReturn ); - return xReturn; -} -/*-----------------------------------------------------------*/ - -#if( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) - - TimerHandle_t xTimerCreate( const char * const pcTimerName, /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ - const TickType_t xTimerPeriodInTicks, - const UBaseType_t uxAutoReload, - void * const pvTimerID, - TimerCallbackFunction_t pxCallbackFunction ) - { - Timer_t *pxNewTimer; - - pxNewTimer = ( Timer_t * ) pvPortMalloc( sizeof( Timer_t ) ); /*lint !e9087 !e9079 All values returned by pvPortMalloc() have at least the alignment required by the MCU's stack, and the first member of Timer_t is always a pointer to the timer's mame. */ - - if( pxNewTimer != NULL ) - { - /* Status is thus far zero as the timer is not created statically - and has not been started. The auto-reload bit may get set in - prvInitialiseNewTimer. */ - pxNewTimer->ucStatus = 0x00; - prvInitialiseNewTimer( pcTimerName, xTimerPeriodInTicks, uxAutoReload, pvTimerID, pxCallbackFunction, pxNewTimer ); - } - - return pxNewTimer; - } - -#endif /* configSUPPORT_DYNAMIC_ALLOCATION */ -/*-----------------------------------------------------------*/ - -#if( configSUPPORT_STATIC_ALLOCATION == 1 ) - - TimerHandle_t xTimerCreateStatic( const char * const pcTimerName, /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ - const TickType_t xTimerPeriodInTicks, - const UBaseType_t uxAutoReload, - void * const pvTimerID, - TimerCallbackFunction_t pxCallbackFunction, - StaticTimer_t *pxTimerBuffer ) - { - Timer_t *pxNewTimer; - - #if( configASSERT_DEFINED == 1 ) - { - /* Sanity check that the size of the structure used to declare a - variable of type StaticTimer_t equals the size of the real timer - structure. */ - volatile size_t xSize = sizeof( StaticTimer_t ); - configASSERT( xSize == sizeof( Timer_t ) ); - ( void ) xSize; /* Keeps lint quiet when configASSERT() is not defined. */ - } - #endif /* configASSERT_DEFINED */ - - /* A pointer to a StaticTimer_t structure MUST be provided, use it. */ - configASSERT( pxTimerBuffer ); - pxNewTimer = ( Timer_t * ) pxTimerBuffer; /*lint !e740 !e9087 StaticTimer_t is a pointer to a Timer_t, so guaranteed to be aligned and sized correctly (checked by an assert()), so this is safe. */ - - if( pxNewTimer != NULL ) - { - /* Timers can be created statically or dynamically so note this - timer was created statically in case it is later deleted. The - auto-reload bit may get set in prvInitialiseNewTimer(). */ - pxNewTimer->ucStatus = tmrSTATUS_IS_STATICALLY_ALLOCATED; - - prvInitialiseNewTimer( pcTimerName, xTimerPeriodInTicks, uxAutoReload, pvTimerID, pxCallbackFunction, pxNewTimer ); - } - - return pxNewTimer; - } - -#endif /* configSUPPORT_STATIC_ALLOCATION */ -/*-----------------------------------------------------------*/ - -static void prvInitialiseNewTimer( const char * const pcTimerName, /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ - const TickType_t xTimerPeriodInTicks, - const UBaseType_t uxAutoReload, - void * const pvTimerID, - TimerCallbackFunction_t pxCallbackFunction, - Timer_t *pxNewTimer ) -{ - /* 0 is not a valid value for xTimerPeriodInTicks. */ - configASSERT( ( xTimerPeriodInTicks > 0 ) ); - - if( pxNewTimer != NULL ) - { - /* Ensure the infrastructure used by the timer service task has been - created/initialised. */ - prvCheckForValidListAndQueue(); - - /* Initialise the timer structure members using the function - parameters. */ - pxNewTimer->pcTimerName = pcTimerName; - pxNewTimer->xTimerPeriodInTicks = xTimerPeriodInTicks; - pxNewTimer->pvTimerID = pvTimerID; - pxNewTimer->pxCallbackFunction = pxCallbackFunction; - vListInitialiseItem( &( pxNewTimer->xTimerListItem ) ); - if( uxAutoReload != pdFALSE ) - { - pxNewTimer->ucStatus |= tmrSTATUS_IS_AUTORELOAD; - } - traceTIMER_CREATE( pxNewTimer ); - } -} -/*-----------------------------------------------------------*/ - -BaseType_t xTimerGenericCommand( TimerHandle_t xTimer, const BaseType_t xCommandID, const TickType_t xOptionalValue, BaseType_t * const pxHigherPriorityTaskWoken, const TickType_t xTicksToWait ) -{ -BaseType_t xReturn = pdFAIL; -DaemonTaskMessage_t xMessage; - - configASSERT( xTimer ); - - /* Send a message to the timer service task to perform a particular action - on a particular timer definition. */ - if( xTimerQueue != NULL ) - { - /* Send a command to the timer service task to start the xTimer timer. */ - xMessage.xMessageID = xCommandID; - xMessage.u.xTimerParameters.xMessageValue = xOptionalValue; - xMessage.u.xTimerParameters.pxTimer = xTimer; - - if( xCommandID < tmrFIRST_FROM_ISR_COMMAND ) - { - if( xTaskGetSchedulerState() == taskSCHEDULER_RUNNING ) - { - xReturn = xQueueSendToBack( xTimerQueue, &xMessage, xTicksToWait ); - } - else - { - xReturn = xQueueSendToBack( xTimerQueue, &xMessage, tmrNO_DELAY ); - } - } - else - { - xReturn = xQueueSendToBackFromISR( xTimerQueue, &xMessage, pxHigherPriorityTaskWoken ); - } - - traceTIMER_COMMAND_SEND( xTimer, xCommandID, xOptionalValue, xReturn ); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - return xReturn; -} -/*-----------------------------------------------------------*/ - -TaskHandle_t xTimerGetTimerDaemonTaskHandle( void ) -{ - /* If xTimerGetTimerDaemonTaskHandle() is called before the scheduler has been - started, then xTimerTaskHandle will be NULL. */ - configASSERT( ( xTimerTaskHandle != NULL ) ); - return xTimerTaskHandle; -} -/*-----------------------------------------------------------*/ - -TickType_t xTimerGetPeriod( TimerHandle_t xTimer ) -{ -Timer_t *pxTimer = xTimer; - - configASSERT( xTimer ); - return pxTimer->xTimerPeriodInTicks; -} -/*-----------------------------------------------------------*/ - -void vTimerSetReloadMode( TimerHandle_t xTimer, const UBaseType_t uxAutoReload ) -{ -Timer_t * pxTimer = xTimer; - - configASSERT( xTimer ); - taskENTER_CRITICAL(); - { - if( uxAutoReload != pdFALSE ) - { - pxTimer->ucStatus |= tmrSTATUS_IS_AUTORELOAD; - } - else - { - pxTimer->ucStatus &= ~tmrSTATUS_IS_AUTORELOAD; - } - } - taskEXIT_CRITICAL(); -} -/*-----------------------------------------------------------*/ - -UBaseType_t uxTimerGetReloadMode( TimerHandle_t xTimer ) -{ -Timer_t * pxTimer = xTimer; -UBaseType_t uxReturn; - - configASSERT( xTimer ); - taskENTER_CRITICAL(); - { - if( ( pxTimer->ucStatus & tmrSTATUS_IS_AUTORELOAD ) == 0 ) - { - /* Not an auto-reload timer. */ - uxReturn = ( UBaseType_t ) pdFALSE; - } - else - { - /* Is an auto-reload timer. */ - uxReturn = ( UBaseType_t ) pdTRUE; - } - } - taskEXIT_CRITICAL(); - - return uxReturn; -} -/*-----------------------------------------------------------*/ - -TickType_t xTimerGetExpiryTime( TimerHandle_t xTimer ) -{ -Timer_t * pxTimer = xTimer; -TickType_t xReturn; - - configASSERT( xTimer ); - xReturn = listGET_LIST_ITEM_VALUE( &( pxTimer->xTimerListItem ) ); - return xReturn; -} -/*-----------------------------------------------------------*/ - -const char * pcTimerGetName( TimerHandle_t xTimer ) /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ -{ -Timer_t *pxTimer = xTimer; - - configASSERT( xTimer ); - return pxTimer->pcTimerName; -} -/*-----------------------------------------------------------*/ - -static void prvProcessExpiredTimer( const TickType_t xNextExpireTime, const TickType_t xTimeNow ) -{ -BaseType_t xResult; -Timer_t * const pxTimer = ( Timer_t * ) listGET_OWNER_OF_HEAD_ENTRY( pxCurrentTimerList ); /*lint !e9087 !e9079 void * is used as this macro is used with tasks and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ - - /* Remove the timer from the list of active timers. A check has already - been performed to ensure the list is not empty. */ - ( void ) uxListRemove( &( pxTimer->xTimerListItem ) ); - traceTIMER_EXPIRED( pxTimer ); - - /* If the timer is an auto-reload timer then calculate the next - expiry time and re-insert the timer in the list of active timers. */ - if( ( pxTimer->ucStatus & tmrSTATUS_IS_AUTORELOAD ) != 0 ) - { - /* The timer is inserted into a list using a time relative to anything - other than the current time. It will therefore be inserted into the - correct list relative to the time this task thinks it is now. */ - if( prvInsertTimerInActiveList( pxTimer, ( xNextExpireTime + pxTimer->xTimerPeriodInTicks ), xTimeNow, xNextExpireTime ) != pdFALSE ) - { - /* The timer expired before it was added to the active timer - list. Reload it now. */ - xResult = xTimerGenericCommand( pxTimer, tmrCOMMAND_START_DONT_TRACE, xNextExpireTime, NULL, tmrNO_DELAY ); - configASSERT( xResult ); - ( void ) xResult; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - pxTimer->ucStatus &= ~tmrSTATUS_IS_ACTIVE; - mtCOVERAGE_TEST_MARKER(); - } - - /* Call the timer callback. */ - pxTimer->pxCallbackFunction( ( TimerHandle_t ) pxTimer ); -} -/*-----------------------------------------------------------*/ - -static portTASK_FUNCTION( prvTimerTask, pvParameters ) -{ -TickType_t xNextExpireTime; -BaseType_t xListWasEmpty; - - /* Just to avoid compiler warnings. */ - ( void ) pvParameters; - - #if( configUSE_DAEMON_TASK_STARTUP_HOOK == 1 ) - { - extern void vApplicationDaemonTaskStartupHook( void ); - - /* Allow the application writer to execute some code in the context of - this task at the point the task starts executing. This is useful if the - application includes initialisation code that would benefit from - executing after the scheduler has been started. */ - vApplicationDaemonTaskStartupHook(); - } - #endif /* configUSE_DAEMON_TASK_STARTUP_HOOK */ - - for( ;; ) - { - /* Query the timers list to see if it contains any timers, and if so, - obtain the time at which the next timer will expire. */ - xNextExpireTime = prvGetNextExpireTime( &xListWasEmpty ); - - /* If a timer has expired, process it. Otherwise, block this task - until either a timer does expire, or a command is received. */ - prvProcessTimerOrBlockTask( xNextExpireTime, xListWasEmpty ); - - /* Empty the command queue. */ - prvProcessReceivedCommands(); - } -} -/*-----------------------------------------------------------*/ - -static void prvProcessTimerOrBlockTask( const TickType_t xNextExpireTime, BaseType_t xListWasEmpty ) -{ -TickType_t xTimeNow; -BaseType_t xTimerListsWereSwitched; - - vTaskSuspendAll(); - { - /* Obtain the time now to make an assessment as to whether the timer - has expired or not. If obtaining the time causes the lists to switch - then don't process this timer as any timers that remained in the list - when the lists were switched will have been processed within the - prvSampleTimeNow() function. */ - xTimeNow = prvSampleTimeNow( &xTimerListsWereSwitched ); - if( xTimerListsWereSwitched == pdFALSE ) - { - /* The tick count has not overflowed, has the timer expired? */ - if( ( xListWasEmpty == pdFALSE ) && ( xNextExpireTime <= xTimeNow ) ) - { - ( void ) xTaskResumeAll(); - prvProcessExpiredTimer( xNextExpireTime, xTimeNow ); - } - else - { - /* The tick count has not overflowed, and the next expire - time has not been reached yet. This task should therefore - block to wait for the next expire time or a command to be - received - whichever comes first. The following line cannot - be reached unless xNextExpireTime > xTimeNow, except in the - case when the current timer list is empty. */ - if( xListWasEmpty != pdFALSE ) - { - /* The current timer list is empty - is the overflow list - also empty? */ - xListWasEmpty = listLIST_IS_EMPTY( pxOverflowTimerList ); - } - - vQueueWaitForMessageRestricted( xTimerQueue, ( xNextExpireTime - xTimeNow ), xListWasEmpty ); - - if( xTaskResumeAll() == pdFALSE ) - { - /* Yield to wait for either a command to arrive, or the - block time to expire. If a command arrived between the - critical section being exited and this yield then the yield - will not cause the task to block. */ - portYIELD_WITHIN_API(); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - } - else - { - ( void ) xTaskResumeAll(); - } - } -} -/*-----------------------------------------------------------*/ - -static TickType_t prvGetNextExpireTime( BaseType_t * const pxListWasEmpty ) -{ -TickType_t xNextExpireTime; - - /* Timers are listed in expiry time order, with the head of the list - referencing the task that will expire first. Obtain the time at which - the timer with the nearest expiry time will expire. If there are no - active timers then just set the next expire time to 0. That will cause - this task to unblock when the tick count overflows, at which point the - timer lists will be switched and the next expiry time can be - re-assessed. */ - *pxListWasEmpty = listLIST_IS_EMPTY( pxCurrentTimerList ); - if( *pxListWasEmpty == pdFALSE ) - { - xNextExpireTime = listGET_ITEM_VALUE_OF_HEAD_ENTRY( pxCurrentTimerList ); - } - else - { - /* Ensure the task unblocks when the tick count rolls over. */ - xNextExpireTime = ( TickType_t ) 0U; - } - - return xNextExpireTime; -} -/*-----------------------------------------------------------*/ - -static TickType_t prvSampleTimeNow( BaseType_t * const pxTimerListsWereSwitched ) -{ -TickType_t xTimeNow; -PRIVILEGED_DATA static TickType_t xLastTime = ( TickType_t ) 0U; /*lint !e956 Variable is only accessible to one task. */ - - xTimeNow = xTaskGetTickCount(); - - if( xTimeNow < xLastTime ) - { - prvSwitchTimerLists(); - *pxTimerListsWereSwitched = pdTRUE; - } - else - { - *pxTimerListsWereSwitched = pdFALSE; - } - - xLastTime = xTimeNow; - - return xTimeNow; -} -/*-----------------------------------------------------------*/ - -static BaseType_t prvInsertTimerInActiveList( Timer_t * const pxTimer, const TickType_t xNextExpiryTime, const TickType_t xTimeNow, const TickType_t xCommandTime ) -{ -BaseType_t xProcessTimerNow = pdFALSE; - - listSET_LIST_ITEM_VALUE( &( pxTimer->xTimerListItem ), xNextExpiryTime ); - listSET_LIST_ITEM_OWNER( &( pxTimer->xTimerListItem ), pxTimer ); - - if( xNextExpiryTime <= xTimeNow ) - { - /* Has the expiry time elapsed between the command to start/reset a - timer was issued, and the time the command was processed? */ - if( ( ( TickType_t ) ( xTimeNow - xCommandTime ) ) >= pxTimer->xTimerPeriodInTicks ) /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ - { - /* The time between a command being issued and the command being - processed actually exceeds the timers period. */ - xProcessTimerNow = pdTRUE; - } - else - { - vListInsert( pxOverflowTimerList, &( pxTimer->xTimerListItem ) ); - } - } - else - { - if( ( xTimeNow < xCommandTime ) && ( xNextExpiryTime >= xCommandTime ) ) - { - /* If, since the command was issued, the tick count has overflowed - but the expiry time has not, then the timer must have already passed - its expiry time and should be processed immediately. */ - xProcessTimerNow = pdTRUE; - } - else - { - vListInsert( pxCurrentTimerList, &( pxTimer->xTimerListItem ) ); - } - } - - return xProcessTimerNow; -} -/*-----------------------------------------------------------*/ - -static void prvProcessReceivedCommands( void ) -{ -DaemonTaskMessage_t xMessage; -Timer_t *pxTimer; -BaseType_t xTimerListsWereSwitched, xResult; -TickType_t xTimeNow; - - while( xQueueReceive( xTimerQueue, &xMessage, tmrNO_DELAY ) != pdFAIL ) /*lint !e603 xMessage does not have to be initialised as it is passed out, not in, and it is not used unless xQueueReceive() returns pdTRUE. */ - { - #if ( INCLUDE_xTimerPendFunctionCall == 1 ) - { - /* Negative commands are pended function calls rather than timer - commands. */ - if( xMessage.xMessageID < ( BaseType_t ) 0 ) - { - const CallbackParameters_t * const pxCallback = &( xMessage.u.xCallbackParameters ); - - /* The timer uses the xCallbackParameters member to request a - callback be executed. Check the callback is not NULL. */ - configASSERT( pxCallback ); - - /* Call the function. */ - pxCallback->pxCallbackFunction( pxCallback->pvParameter1, pxCallback->ulParameter2 ); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - #endif /* INCLUDE_xTimerPendFunctionCall */ - - /* Commands that are positive are timer commands rather than pended - function calls. */ - if( xMessage.xMessageID >= ( BaseType_t ) 0 ) - { - /* The messages uses the xTimerParameters member to work on a - software timer. */ - pxTimer = xMessage.u.xTimerParameters.pxTimer; - - if( listIS_CONTAINED_WITHIN( NULL, &( pxTimer->xTimerListItem ) ) == pdFALSE ) /*lint !e961. The cast is only redundant when NULL is passed into the macro. */ - { - /* The timer is in a list, remove it. */ - ( void ) uxListRemove( &( pxTimer->xTimerListItem ) ); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - traceTIMER_COMMAND_RECEIVED( pxTimer, xMessage.xMessageID, xMessage.u.xTimerParameters.xMessageValue ); - - /* In this case the xTimerListsWereSwitched parameter is not used, but - it must be present in the function call. prvSampleTimeNow() must be - called after the message is received from xTimerQueue so there is no - possibility of a higher priority task adding a message to the message - queue with a time that is ahead of the timer daemon task (because it - pre-empted the timer daemon task after the xTimeNow value was set). */ - xTimeNow = prvSampleTimeNow( &xTimerListsWereSwitched ); - - switch( xMessage.xMessageID ) - { - case tmrCOMMAND_START : - case tmrCOMMAND_START_FROM_ISR : - case tmrCOMMAND_RESET : - case tmrCOMMAND_RESET_FROM_ISR : - case tmrCOMMAND_START_DONT_TRACE : - /* Start or restart a timer. */ - pxTimer->ucStatus |= tmrSTATUS_IS_ACTIVE; - if( prvInsertTimerInActiveList( pxTimer, xMessage.u.xTimerParameters.xMessageValue + pxTimer->xTimerPeriodInTicks, xTimeNow, xMessage.u.xTimerParameters.xMessageValue ) != pdFALSE ) - { - /* The timer expired before it was added to the active - timer list. Process it now. */ - pxTimer->pxCallbackFunction( ( TimerHandle_t ) pxTimer ); - traceTIMER_EXPIRED( pxTimer ); - - if( ( pxTimer->ucStatus & tmrSTATUS_IS_AUTORELOAD ) != 0 ) - { - xResult = xTimerGenericCommand( pxTimer, tmrCOMMAND_START_DONT_TRACE, xMessage.u.xTimerParameters.xMessageValue + pxTimer->xTimerPeriodInTicks, NULL, tmrNO_DELAY ); - configASSERT( xResult ); - ( void ) xResult; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - break; - - case tmrCOMMAND_STOP : - case tmrCOMMAND_STOP_FROM_ISR : - /* The timer has already been removed from the active list. */ - pxTimer->ucStatus &= ~tmrSTATUS_IS_ACTIVE; - break; - - case tmrCOMMAND_CHANGE_PERIOD : - case tmrCOMMAND_CHANGE_PERIOD_FROM_ISR : - pxTimer->ucStatus |= tmrSTATUS_IS_ACTIVE; - pxTimer->xTimerPeriodInTicks = xMessage.u.xTimerParameters.xMessageValue; - configASSERT( ( pxTimer->xTimerPeriodInTicks > 0 ) ); - - /* The new period does not really have a reference, and can - be longer or shorter than the old one. The command time is - therefore set to the current time, and as the period cannot - be zero the next expiry time can only be in the future, - meaning (unlike for the xTimerStart() case above) there is - no fail case that needs to be handled here. */ - ( void ) prvInsertTimerInActiveList( pxTimer, ( xTimeNow + pxTimer->xTimerPeriodInTicks ), xTimeNow, xTimeNow ); - break; - - case tmrCOMMAND_DELETE : - #if ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) - { - /* The timer has already been removed from the active list, - just free up the memory if the memory was dynamically - allocated. */ - if( ( pxTimer->ucStatus & tmrSTATUS_IS_STATICALLY_ALLOCATED ) == ( uint8_t ) 0 ) - { - vPortFree( pxTimer ); - } - else - { - pxTimer->ucStatus &= ~tmrSTATUS_IS_ACTIVE; - } - } - #else - { - /* If dynamic allocation is not enabled, the memory - could not have been dynamically allocated. So there is - no need to free the memory - just mark the timer as - "not active". */ - pxTimer->ucStatus &= ~tmrSTATUS_IS_ACTIVE; - } - #endif /* configSUPPORT_DYNAMIC_ALLOCATION */ - break; - - default : - /* Don't expect to get here. */ - break; - } - } - } -} -/*-----------------------------------------------------------*/ - -static void prvSwitchTimerLists( void ) -{ -TickType_t xNextExpireTime, xReloadTime; -List_t *pxTemp; -Timer_t *pxTimer; -BaseType_t xResult; - - /* The tick count has overflowed. The timer lists must be switched. - If there are any timers still referenced from the current timer list - then they must have expired and should be processed before the lists - are switched. */ - while( listLIST_IS_EMPTY( pxCurrentTimerList ) == pdFALSE ) - { - xNextExpireTime = listGET_ITEM_VALUE_OF_HEAD_ENTRY( pxCurrentTimerList ); - - /* Remove the timer from the list. */ - pxTimer = ( Timer_t * ) listGET_OWNER_OF_HEAD_ENTRY( pxCurrentTimerList ); /*lint !e9087 !e9079 void * is used as this macro is used with tasks and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ - ( void ) uxListRemove( &( pxTimer->xTimerListItem ) ); - traceTIMER_EXPIRED( pxTimer ); - - /* Execute its callback, then send a command to restart the timer if - it is an auto-reload timer. It cannot be restarted here as the lists - have not yet been switched. */ - pxTimer->pxCallbackFunction( ( TimerHandle_t ) pxTimer ); - - if( ( pxTimer->ucStatus & tmrSTATUS_IS_AUTORELOAD ) != 0 ) - { - /* Calculate the reload value, and if the reload value results in - the timer going into the same timer list then it has already expired - and the timer should be re-inserted into the current list so it is - processed again within this loop. Otherwise a command should be sent - to restart the timer to ensure it is only inserted into a list after - the lists have been swapped. */ - xReloadTime = ( xNextExpireTime + pxTimer->xTimerPeriodInTicks ); - if( xReloadTime > xNextExpireTime ) - { - listSET_LIST_ITEM_VALUE( &( pxTimer->xTimerListItem ), xReloadTime ); - listSET_LIST_ITEM_OWNER( &( pxTimer->xTimerListItem ), pxTimer ); - vListInsert( pxCurrentTimerList, &( pxTimer->xTimerListItem ) ); - } - else - { - xResult = xTimerGenericCommand( pxTimer, tmrCOMMAND_START_DONT_TRACE, xNextExpireTime, NULL, tmrNO_DELAY ); - configASSERT( xResult ); - ( void ) xResult; - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - - pxTemp = pxCurrentTimerList; - pxCurrentTimerList = pxOverflowTimerList; - pxOverflowTimerList = pxTemp; -} -/*-----------------------------------------------------------*/ - -static void prvCheckForValidListAndQueue( void ) -{ - /* Check that the list from which active timers are referenced, and the - queue used to communicate with the timer service, have been - initialised. */ - taskENTER_CRITICAL(); - { - if( xTimerQueue == NULL ) - { - vListInitialise( &xActiveTimerList1 ); - vListInitialise( &xActiveTimerList2 ); - pxCurrentTimerList = &xActiveTimerList1; - pxOverflowTimerList = &xActiveTimerList2; - - #if( configSUPPORT_STATIC_ALLOCATION == 1 ) - { - /* The timer queue is allocated statically in case - configSUPPORT_DYNAMIC_ALLOCATION is 0. */ - static StaticQueue_t xStaticTimerQueue; /*lint !e956 Ok to declare in this manner to prevent additional conditional compilation guards in other locations. */ - static uint8_t ucStaticTimerQueueStorage[ ( size_t ) configTIMER_QUEUE_LENGTH * sizeof( DaemonTaskMessage_t ) ]; /*lint !e956 Ok to declare in this manner to prevent additional conditional compilation guards in other locations. */ - - xTimerQueue = xQueueCreateStatic( ( UBaseType_t ) configTIMER_QUEUE_LENGTH, ( UBaseType_t ) sizeof( DaemonTaskMessage_t ), &( ucStaticTimerQueueStorage[ 0 ] ), &xStaticTimerQueue ); - } - #else - { - xTimerQueue = xQueueCreate( ( UBaseType_t ) configTIMER_QUEUE_LENGTH, sizeof( DaemonTaskMessage_t ) ); - } - #endif - - #if ( configQUEUE_REGISTRY_SIZE > 0 ) - { - if( xTimerQueue != NULL ) - { - vQueueAddToRegistry( xTimerQueue, "TmrQ" ); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - #endif /* configQUEUE_REGISTRY_SIZE */ - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - taskEXIT_CRITICAL(); -} -/*-----------------------------------------------------------*/ - -BaseType_t xTimerIsTimerActive( TimerHandle_t xTimer ) -{ -BaseType_t xReturn; -Timer_t *pxTimer = xTimer; - - configASSERT( xTimer ); - - /* Is the timer in the list of active timers? */ - taskENTER_CRITICAL(); - { - if( ( pxTimer->ucStatus & tmrSTATUS_IS_ACTIVE ) == 0 ) - { - xReturn = pdFALSE; - } - else - { - xReturn = pdTRUE; - } - } - taskEXIT_CRITICAL(); - - return xReturn; -} /*lint !e818 Can't be pointer to const due to the typedef. */ -/*-----------------------------------------------------------*/ - -void *pvTimerGetTimerID( const TimerHandle_t xTimer ) -{ -Timer_t * const pxTimer = xTimer; -void *pvReturn; - - configASSERT( xTimer ); - - taskENTER_CRITICAL(); - { - pvReturn = pxTimer->pvTimerID; - } - taskEXIT_CRITICAL(); - - return pvReturn; -} -/*-----------------------------------------------------------*/ - -void vTimerSetTimerID( TimerHandle_t xTimer, void *pvNewID ) -{ -Timer_t * const pxTimer = xTimer; - - configASSERT( xTimer ); - - taskENTER_CRITICAL(); - { - pxTimer->pvTimerID = pvNewID; - } - taskEXIT_CRITICAL(); -} -/*-----------------------------------------------------------*/ - -#if( INCLUDE_xTimerPendFunctionCall == 1 ) - - BaseType_t xTimerPendFunctionCallFromISR( PendedFunction_t xFunctionToPend, void *pvParameter1, uint32_t ulParameter2, BaseType_t *pxHigherPriorityTaskWoken ) - { - DaemonTaskMessage_t xMessage; - BaseType_t xReturn; - - /* Complete the message with the function parameters and post it to the - daemon task. */ - xMessage.xMessageID = tmrCOMMAND_EXECUTE_CALLBACK_FROM_ISR; - xMessage.u.xCallbackParameters.pxCallbackFunction = xFunctionToPend; - xMessage.u.xCallbackParameters.pvParameter1 = pvParameter1; - xMessage.u.xCallbackParameters.ulParameter2 = ulParameter2; - - xReturn = xQueueSendFromISR( xTimerQueue, &xMessage, pxHigherPriorityTaskWoken ); - - tracePEND_FUNC_CALL_FROM_ISR( xFunctionToPend, pvParameter1, ulParameter2, xReturn ); - - return xReturn; - } - -#endif /* INCLUDE_xTimerPendFunctionCall */ -/*-----------------------------------------------------------*/ - -#if( INCLUDE_xTimerPendFunctionCall == 1 ) - - BaseType_t xTimerPendFunctionCall( PendedFunction_t xFunctionToPend, void *pvParameter1, uint32_t ulParameter2, TickType_t xTicksToWait ) - { - DaemonTaskMessage_t xMessage; - BaseType_t xReturn; - - /* This function can only be called after a timer has been created or - after the scheduler has been started because, until then, the timer - queue does not exist. */ - configASSERT( xTimerQueue ); - - /* Complete the message with the function parameters and post it to the - daemon task. */ - xMessage.xMessageID = tmrCOMMAND_EXECUTE_CALLBACK; - xMessage.u.xCallbackParameters.pxCallbackFunction = xFunctionToPend; - xMessage.u.xCallbackParameters.pvParameter1 = pvParameter1; - xMessage.u.xCallbackParameters.ulParameter2 = ulParameter2; - - xReturn = xQueueSendToBack( xTimerQueue, &xMessage, xTicksToWait ); - - tracePEND_FUNC_CALL( xFunctionToPend, pvParameter1, ulParameter2, xReturn ); - - return xReturn; - } - -#endif /* INCLUDE_xTimerPendFunctionCall */ -/*-----------------------------------------------------------*/ - -#if ( configUSE_TRACE_FACILITY == 1 ) - - UBaseType_t uxTimerGetTimerNumber( TimerHandle_t xTimer ) - { - return ( ( Timer_t * ) xTimer )->uxTimerNumber; - } - -#endif /* configUSE_TRACE_FACILITY */ -/*-----------------------------------------------------------*/ - -#if ( configUSE_TRACE_FACILITY == 1 ) - - void vTimerSetTimerNumber( TimerHandle_t xTimer, UBaseType_t uxTimerNumber ) - { - ( ( Timer_t * ) xTimer )->uxTimerNumber = uxTimerNumber; - } - -#endif /* configUSE_TRACE_FACILITY */ -/*-----------------------------------------------------------*/ - -/* This entire source file will be skipped if the application is not configured -to include software timer functionality. If you want to include software timer -functionality then ensure configUSE_TIMERS is set to 1 in FreeRTOSConfig.h. */ -#endif /* configUSE_TIMERS == 1 */ - - - diff --git a/rtos/freertos/abstraction_layer_freertos/scr/uart.c b/rtos/freertos/abstraction_layer_freertos/scr/uart.c deleted file mode 100644 index 75d4989c..00000000 --- a/rtos/freertos/abstraction_layer_freertos/scr/uart.c +++ /dev/null @@ -1,515 +0,0 @@ -/* - * Copyright 2020 GreenWaves Technologies - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * SPDX-License-Identifier: Apache-2.0 - */ - -#include -#include - -#include "pmsis_types.h" -#include "pmsis_task.h" - -#include "uart.h" -#include "fc_event.h" -#include "freq.h" -#include "device.h" -#include "events.h" -#include "udma_core.h" -#include "udma_uart.h" -#include "debug.h" - - -static struct uart_itf_data_s *g_uart_itf_data[UDMA_NB_UART] = {0}; - - -static void __pi_uart_handle_end_of_task(struct pi_task *task); - -/* IRQ handler. */ -static void __pi_uart_handler(void *arg); - -/* Enqueue a task in fifo. */ -static uint32_t __pi_uart_task_fifo_enqueue(struct uart_itf_data_s *data, - struct pi_task *task, - udma_channel_e channel); -/* Pop a task from fifo. */ -static struct pi_task *__pi_uart_task_fifo_pop(struct uart_itf_data_s *data, - udma_channel_e channel); - -/* Execute a transfer. */ -static void __pi_uart_copy_exec(struct uart_itf_data_s *data, - struct pi_task *task); - -/* Abort current transfer and flush pending transfers. */ -static void __pi_uart_rx_abort(struct uart_itf_data_s *data); - -static void __pi_uart_tx_abort(struct uart_itf_data_s *data); - -/* Configure UART. */ -static void __pi_uart_conf_set(struct uart_itf_data_s *data, - struct pi_uart_conf *conf); - -/* Enable channel. */ -static inline void __pi_uart_channel_enable(struct uart_itf_data_s *data, - udma_channel_e channel); - - -/* Setup config. */ -static inline void __pi_uart_conf_set(struct uart_itf_data_s *data, - struct pi_uart_conf *conf) -{ - uint32_t device_id = data->device_id; - /* clk divider for uart */ - uint32_t periph_freq = pi_freq_get(PI_FREQ_DOMAIN_PERIPH); - uint16_t clk_div = (uint16_t)(periph_freq / conf->baudrate_bps); - - UART_TRACE( - "UART(%ld) setting: baudrate=%ld CLK_DIV=%ld, RX_ENA=%ld, " - "TX_ENA=%ld, STOP_BITS=%ld, WORD_SIZE=%ld, PARITY_ENA=%ld\n", - device_id, conf->baudrate_bps, clk_div, conf->enable_rx, - conf->enable_tx, conf->stop_bit_count + 1, 5 + conf->word_size, - conf->parity_mode); - - hal_uart_setup_set(device_id, clk_div, conf->enable_rx, conf->enable_tx, - conf->stop_bit_count, conf->word_size, - conf->parity_mode); - - UART_TRACE("UART(%ld) setup=%lx\n", device_id, uart(device_id)->setup); -} - -void pi_uart_conf_init(struct pi_uart_conf *conf) -{ - conf->baudrate_bps = 115200; /* Default baudrate. */ - conf->parity_mode = PI_UART_PARITY_DISABLE; /* No parity. */ - conf->stop_bit_count = PI_UART_STOP_BITS_ONE; /* One stop bit. */ - conf->word_size = PI_UART_WORD_SIZE_8_BITS; /* 8 bits per word. */ - conf->enable_rx = 0; /* Disable RX. */ - conf->enable_tx = 0; /* Disable TX. */ - conf->uart_id = 0; /* Device ID. */ -} - -int pi_uart_open(struct pi_device *device) -{ - struct pi_uart_conf *conf = (struct pi_uart_conf *)device->config; - UART_TRACE("Open device id=%ld\n", conf->uart_id); - - struct uart_itf_data_s **device_data = - (struct uart_itf_data_s **)&(device->data); - - struct uart_itf_data_s *data = g_uart_itf_data[conf->uart_id]; - if (!data) { - /* Open device for first time. */ - data = (struct uart_itf_data_s *)pi_l2_malloc( - sizeof(struct uart_itf_data_s)); - if (!data) { - UART_TRACE_ERR("Driver data alloc failed !\n"); - return -11; - } - memset((void *)data, 0, sizeof(struct uart_itf_data_s)); - data->device_id = conf->uart_id; - data->nb_open = 1; - - UART_TRACE("Device id=%ld opened for first time\n", - data->device_id); - UART_TRACE("uart(%ld) %p\n", data->device_id, - uart(data->device_id)); - - UART_TRACE( - "Enable SoC events and set handlers : RX : %d -> %p | TX: %d -> %p\n", - SOC_EVENT_UDMA_UART_RX(data->device_id), - __pi_uart_handler, - SOC_EVENT_UDMA_UART_TX(data->device_id), - __pi_uart_handler); - /* Set handlers. */ - pi_fc_event_handler_set(SOC_EVENT_UDMA_UART_RX(data->device_id), - __pi_uart_handler); - pi_fc_event_handler_set(SOC_EVENT_UDMA_UART_TX(data->device_id), - __pi_uart_handler); - /* Enable SOC events propagation to FC. */ - hal_soc_eu_set_fc_mask(SOC_EVENT_UDMA_UART_RX(data->device_id)); - hal_soc_eu_set_fc_mask(SOC_EVENT_UDMA_UART_TX(data->device_id)); - - /* Disable UDMA CG and reset periph. */ - udma_ctrl_cg_disable(UDMA_UART_ID(data->device_id)); - UART_TRACE("Disable CG for uart(%ld): %ld %p %lx\n", - data->device_id, UDMA_UART_ID(data->device_id), - &(UDMA_GC->CG), UDMA_GC->CG); - - /* Configure UART. */ - __pi_uart_conf_set(data, conf); - - g_uart_itf_data[data->device_id] = data; - *device_data = g_uart_itf_data[data->device_id]; - } else { - data->nb_open++; - *device_data = g_uart_itf_data[data->device_id]; - UART_TRACE("Device id=%x already opened, now open=%d\n", - data->device_id, data->nb_open); - } - - UART_TRACE("Open status : %ld\n", 0); - return 0; -} - -void pi_uart_close(struct pi_device *device) -{ - struct uart_itf_data_s *data = (struct uart_itf_data_s *)device->data; - if (!data) - return; - - UART_TRACE("Close device id=%d\n", data->device_id); - /* Decrement number of devices opened. */ - data->nb_open--; - /* Free device and structure opened. */ - if (data->nb_open == 0) { - /* Make sure all bits are transferred. */ - while (hal_uart_tx_status_get(data->device_id)) - ; - - /* Wait some time, until data are sent. */ - for (volatile uint32_t i = 0; i < 1000; i++) - ; - - /* Disable both RX and TX channels and flush fifo. */ - __pi_uart_rx_abort(data); - __pi_uart_tx_abort(data); - - /* Clear handlers. */ - pi_fc_event_handler_clear( - SOC_EVENT_UDMA_UART_RX(data->device_id)); - pi_fc_event_handler_clear( - SOC_EVENT_UDMA_UART_TX(data->device_id)); - /* Disable SOC events propagation to FC. */ - hal_soc_eu_clear_fc_mask( - SOC_EVENT_UDMA_UART_RX(data->device_id)); - hal_soc_eu_clear_fc_mask( - SOC_EVENT_UDMA_UART_TX(data->device_id)); - - /* Free allocated data. */ - pi_l2_free(data, sizeof(struct uart_itf_data_s)); - g_uart_itf_data[data->device_id] = NULL; - } - device->data = NULL; -} - -/* Enable channel. */ -static inline void __pi_uart_channel_enable(struct uart_itf_data_s *data, - udma_channel_e channel) -{ - uint32_t device_id = data->device_id; - if (channel == RX_CHANNEL) { - hal_uart_rx_enable(device_id); - } else { - hal_uart_tx_enable(device_id); - } -} - -/* Abort current transfer and flush pending transfers. */ -static void __pi_uart_rx_abort(struct uart_itf_data_s *data) -{ - uint32_t device_id = data->device_id; - UART_TRACE( - "uart->setup %lx uart->status %lx\n" - "uart->udma_rx_saddr %lx uart->udma_rx_size %lx uart->udma_rx_cfg %lx\n", - uart(device_id)->setup, uart(device_id)->status, - uart(device_id)->rx.saddr, uart(device_id)->rx.size, - uart(device_id)->rx.cfg); - hal_uart_rx_disable(device_id); - hal_uart_rx_clear(device_id); - UART_TRACE( - "uart->setup %lx uart->status %lx\n" - "uart->udma_rx_saddr %lx uart->udma_rx_size %lx uart->udma_rx_cfg %lx\n", - uart(device_id)->setup, uart(device_id)->status, - uart(device_id)->rx.saddr, uart(device_id)->rx.size, - uart(device_id)->rx.cfg); - data->fifo_head[RX_CHANNEL] = NULL; - data->fifo_tail[RX_CHANNEL] = NULL; -} - -static void __pi_uart_tx_abort(struct uart_itf_data_s *data) -{ - uint32_t device_id = data->device_id; - UART_TRACE( - "uart->setup %lx uart->status %lx\n" - "uart->udma_tx_saddr %lx uart->udma_tx_size %lx uart->udma_tx_cfg %lx\n", - uart(device_id)->setup, uart(device_id)->status, - uart(device_id)->tx.saddr, uart(device_id)->tx.size, - uart(device_id)->tx.cfg); - hal_uart_tx_disable(device_id); - hal_uart_tx_clear(device_id); - UART_TRACE( - "uart->setup %lx uart->status %lx\n" - "uart->udma_tx_saddr %lx uart->udma_tx_size %lx uart->udma_tx_cfg %lx\n", - uart(device_id)->setup, uart(device_id)->status, - uart(device_id)->tx.saddr, uart(device_id)->tx.size, - uart(device_id)->tx.cfg); - data->fifo_head[TX_CHANNEL] = NULL; - data->fifo_tail[TX_CHANNEL] = NULL; -} - - -int pi_uart_ioctl(struct pi_device *device, uint32_t cmd, void *arg) -{ - struct uart_itf_data_s *data = (struct uart_itf_data_s *)device->data; - UART_TRACE("Ioctl device id=%ld cmd=%ld arg=%lx\n", data->device_id, - cmd, arg); - - uint32_t irq = __disable_irq(); - switch (cmd) { - case PI_UART_IOCTL_CONF_SETUP: - __pi_uart_conf_set(data, (struct pi_uart_conf *)arg); - break; - - case PI_UART_IOCTL_ABORT_RX: - __pi_uart_rx_abort(data); - break; - - case PI_UART_IOCTL_ABORT_TX: - __pi_uart_tx_abort(data); - break; - - case PI_UART_IOCTL_ENABLE_RX: - __pi_uart_channel_enable(data, RX_CHANNEL); - break; - - case PI_UART_IOCTL_ENABLE_TX: - __pi_uart_channel_enable(data, TX_CHANNEL); - break; - - default: - __restore_irq(irq); - return -1; - } - __restore_irq(irq); - return 0; -} - -static int32_t __pi_uart_copy(struct uart_itf_data_s *data, uint32_t l2_buf, - uint32_t size, udma_channel_e channel, - struct pi_task *task) -{ - uint32_t irq = __disable_irq(); - // Due to udma restriction, we need to use an L2 address, - // Since the stack is probably in FC tcdm, we have to either ensure - // users gave us an L2 pointer or alloc ourselves - if ((l2_buf & 0xFFF00000) != 0x1C000000) { - UART_TRACE_ERR("UART(%ld): Error wrong buffer %lx !\n", - data->device_id, l2_buf); - __restore_irq(irq); - return -11; - } - - task->data[0] = l2_buf; - task->data[1] = size; - task->data[2] = channel; - task->data[3] = 0; /* Repeat size ? */ - task->next = NULL; - uint8_t head = (uint8_t)__pi_uart_task_fifo_enqueue(data, task, channel); - if (head == 0) { - /* Execute the transfer. */ - UART_TRACE( - "UART(%ld): Execute %s transfer l2_buf=%lx size=%ld\n", - data->device_id, - ((task->data[2] == RX_CHANNEL) ? "RX" : "TX"), - task->data[0], task->data[1]); - __pi_uart_copy_exec(data, task); - } - /* TODO: insert compiler barrier here */ - __restore_irq(irq); - /* restore_irq(irq); */ - return 0; -} - -/* Execute transfer. */ -static void __pi_uart_copy_exec(struct uart_itf_data_s *data, - struct pi_task *task) -{ - uint32_t device_id = data->device_id; - uint32_t l2_buf = task->data[0]; - uint32_t size = task->data[1]; - udma_channel_e channel = task->data[2]; - uint32_t max_size = (uint32_t)UDMA_MAX_SIZE - 4; - if (task->data[1] > max_size) { - task->data[3] = task->data[1] - max_size; - size = max_size; - } - UART_TRACE("UART(%ld): Execute %s transfer l2_buf=%lx size=%ld\n", - device_id, ((channel == RX_CHANNEL) ? "RX" : "TX"), l2_buf, - size); - hal_uart_enqueue(device_id, l2_buf, size, 0, channel); -} - -static void __pi_uart_handle_end_of_task(struct pi_task *task) -{ - if (task->id == PI_TASK_NONE_ID) { - pi_task_release(task); - } else { - if (task->id == PI_TASK_CALLBACK_ID) { - pi_task_push(task); - } - } -} - -/* IRQ handler. */ -static void __pi_uart_handler(void *arg) -{ - uint32_t event = (uint32_t)arg; - uint32_t channel = event & 0x1; - uint32_t periph_id = - (event >> UDMA_CHANNEL_NB_EVENTS_LOG2) - UDMA_UART_ID(0); - UART_TRACE("Uart IRQ %d %d\n", periph_id, event); - - struct uart_itf_data_s *data = g_uart_itf_data[periph_id]; - struct pi_task *task = data->fifo_head[channel]; - /* Pending data on current transfer. */ - if (task->data[3] != 0) { - UART_TRACE("Reenqueue pending data on current transfer.\n"); - uint32_t max_size = (uint32_t)UDMA_MAX_SIZE - 4; - task->data[0] += max_size; - task->data[1] -= max_size; - __pi_uart_copy_exec(data, task); - } else { - UART_TRACE( - "No pending data on current transfer.\n Handle end of " - "current transfer and pop and start a new transfer if there is.\n"); - task = __pi_uart_task_fifo_pop(data, channel); - __pi_uart_handle_end_of_task(task); - task = data->fifo_head[channel]; - if (task != NULL) { - __pi_uart_copy_exec(data, task); - } - } -} - -/* Enqueue a task in fifo. */ -static inline uint32_t __pi_uart_task_fifo_enqueue(struct uart_itf_data_s *data, - struct pi_task *task, - udma_channel_e channel) -{ - uint8_t head = 0; - uint32_t irq = __disable_irq(); - if (data->fifo_head[channel] == NULL) { - /* Empty fifo. */ - /* Execute the transfer. */ - data->fifo_head[channel] = task; - data->fifo_tail[channel] = data->fifo_head[channel]; - head = 0; - } else { - /* Transfer on going, enqueue this one to the list. */ - data->fifo_tail[channel]->next = task; - data->fifo_tail[channel] = data->fifo_tail[channel]->next; - head = 1; - } - __restore_irq(irq); - return head; -} - -/* Pop a task from fifo. */ -static inline struct pi_task * -__pi_uart_task_fifo_pop(struct uart_itf_data_s *data, udma_channel_e channel) -{ - uint32_t irq = __disable_irq(); - struct pi_task *task_to_return = NULL; - if (data->fifo_head[channel] != NULL) { - task_to_return = data->fifo_head[channel]; - data->fifo_head[channel] = data->fifo_head[channel]->next; - if (data->fifo_head[channel] == NULL) { - data->fifo_tail[channel] = NULL; - } - } - __restore_irq(irq); - return task_to_return; -} - -int pi_uart_write(struct pi_device *device, void *buffer, uint32_t size) -{ - int32_t status = 0; - pi_task_t task_block = {0}; - pi_task_block(&task_block); - status = pi_uart_write_async(device, buffer, size, &task_block); - pi_task_wait_on(&task_block); - pi_task_destroy(&task_block); - return status; -} - -int pi_uart_write_byte(struct pi_device *device, uint8_t *byte) -{ - int32_t status = 0; - pi_task_t task_block = {0}; - pi_task_block(&task_block); - status = pi_uart_write_async(device, byte, 1, &task_block); - pi_task_wait_on(&task_block); - pi_task_destroy(&task_block); - return status; -} - -int pi_uart_write_byte_async(struct pi_device *device, uint8_t *byte, - pi_task_t *callback) -{ - return pi_uart_write_async(device, byte, 1, callback); -} - -int pi_uart_write_async(struct pi_device *device, void *buffer, uint32_t size, - pi_task_t *callback) -{ - struct uart_itf_data_s *data = (struct uart_itf_data_s *)device->data; - uint32_t l2_buf = (uint32_t)buffer; - UART_TRACE("UART(%ld): Write l2_buf=%lx size=%ld\n", data->device_id, - l2_buf, size); - return __pi_uart_copy(data, l2_buf, size, TX_CHANNEL, callback); -} - -int pi_uart_read(struct pi_device *device, void *buffer, uint32_t size) -{ - int32_t status = 0; - pi_task_t task_block = {0}; - pi_task_block(&task_block); - status = pi_uart_read_async(device, buffer, size, &task_block); - pi_task_wait_on(&task_block); - pi_task_destroy(&task_block); - return status; -} - -int pi_uart_read_byte(struct pi_device *device, uint8_t *byte) -{ - int32_t status = 0; - pi_task_t task_block = {0}; - pi_task_block(&task_block); - status = pi_uart_read_async(device, byte, 1, &task_block); - pi_task_wait_on(&task_block); - pi_task_destroy(&task_block); - return status; -} - -int pi_uart_read_async(struct pi_device *device, void *buffer, uint32_t size, - pi_task_t *callback) -{ - struct uart_itf_data_s *data = (struct uart_itf_data_s *)device->data; - uint32_t l2_buf = (uint32_t)buffer; - UART_TRACE("UART(%ld): Read l2_buf=%lx size=%ld\n", data->device_id, - l2_buf, size); - return __pi_uart_copy(data, l2_buf, size, RX_CHANNEL, callback); -} - -/* unimplemented cluster functions */ -static inline void pi_cl_uart_write_wait(pi_cl_uart_req_t *req) -{ - abort(); -} - -static inline void pi_cl_uart_read_wait(pi_cl_uart_req_t *req) -{ - abort(); -} From 81b545524a3be77ec2dc74fa27ae1483fe014a99 Mon Sep 17 00:00:00 2001 From: orlandonico Date: Mon, 3 Jan 2022 10:23:03 +0100 Subject: [PATCH 65/86] rm file from freertos/abstraction_layer_spi_freertos --- .../include/abstraction_layer_spi_FREERTOS.h | 65 -- .../src/abstraction_layer_spi_FREERTOS.c | 695 ------------------ 2 files changed, 760 deletions(-) delete mode 100644 rtos/freertos/abstraction_layer_spi_freertos/include/abstraction_layer_spi_FREERTOS.h delete mode 100644 rtos/freertos/abstraction_layer_spi_freertos/src/abstraction_layer_spi_FREERTOS.c diff --git a/rtos/freertos/abstraction_layer_spi_freertos/include/abstraction_layer_spi_FREERTOS.h b/rtos/freertos/abstraction_layer_spi_freertos/include/abstraction_layer_spi_FREERTOS.h deleted file mode 100644 index 2ddd1030..00000000 --- a/rtos/freertos/abstraction_layer_spi_freertos/include/abstraction_layer_spi_FREERTOS.h +++ /dev/null @@ -1,65 +0,0 @@ -/* - * Copyright 2020 GreenWaves Technologies - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * SPDX-License-Identifier: Apache-2.0 - */ - -/**----------------------------------------------------------------------------------------------------------------------- - * ? ABOUT - * @author : Orlando Nico, GreenWaves Technologies, Robert Balas - * @email : nico.orlando@studio.unibo.it, balasr@iis.ee.ethz.ch - * @repo : pulp-sdk/?/abstraction_layer_spi_freertos - * @createdOn : 29/12/2021 - * @description : Abstraction Layer SPI for FreeRTOS - *-----------------------------------------------------------------------------------------------------------------------**/ - -/**================================================================================================ - ** INCLUDE - *================================================================================================**/ -#include "common_spi.h" - -/**================================================================================================ - ** DEFINE - *================================================================================================**/ -#define UDMA_CORE_TX_CFG_EN(val) \ - (((uint32_t)(((uint32_t)(val)) << UDMA_CORE_TX_CFG_EN_SHIFT)) & UDMA_CORE_TX_CFG_EN_MASK) -#define UDMA_CORE_TX_CFG_DATASIZE(val) \ - (((uint32_t)(((uint32_t)(val)) << UDMA_CORE_TX_CFG_DATASIZE_SHIFT)) & \ - UDMA_CORE_TX_CFG_DATASIZE_MASK) -#define SPIM_CS_DATA_GET_DRV_DATA(cs_data) (cs_data->drv_data) - -/**================================================================================================ - ** STRUCT - *================================================================================================**/ - - - -/**================================================================================================ - ** PROTOTYPE FUNCTION - *================================================================================================**/ -void spim_eot_handler(void *arg); -void spim_tx_handler(void *arg); -void spim_rx_handler(void *arg); -int __pi_spi_open(struct spim_cs_data **cs_data, struct pi_spi_conf *conf); -void __pi_spi_close(struct spim_cs_data *cs_data, struct pi_spi_conf *conf); -void __pi_spim_exec_next_transfer(pi_task_t *task); -void __pi_spi_send_async(struct spim_cs_data *cs_data, void *data, size_t len, pi_spi_flags_e flags, pi_task_t *task); -void __pi_spi_receive_async(struct spim_cs_data *cs_data, void *data, size_t len, pi_spi_flags_e flags, pi_task_t *task); -void __pi_spi_xfer_async(struct spim_cs_data *cs_data, void *tx_data, void *rx_data, size_t len, pi_spi_flags_e flags, pi_task_t *task); -void __pi_spi_receive_async_with_ucode(struct spim_cs_data *cs_data, void *data, size_t len, pi_spi_flags_e flags, int ucode_size, void *ucode, pi_task_t *task); -void __pi_spi_send_async_with_ucode(struct spim_cs_data *cs_data, void *data, size_t len, pi_spi_flags_e flags, int ucode_size, void *ucode, pi_task_t *task); -void __spim_execute_callback(void *arg); -void system_core_clock_update(void); -uint32_t system_core_clock_get(void); diff --git a/rtos/freertos/abstraction_layer_spi_freertos/src/abstraction_layer_spi_FREERTOS.c b/rtos/freertos/abstraction_layer_spi_freertos/src/abstraction_layer_spi_FREERTOS.c deleted file mode 100644 index 50b3b557..00000000 --- a/rtos/freertos/abstraction_layer_spi_freertos/src/abstraction_layer_spi_FREERTOS.c +++ /dev/null @@ -1,695 +0,0 @@ -/* - * Copyright 2020 GreenWaves Technologies - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * SPDX-License-Identifier: Apache-2.0 - */ - -/**----------------------------------------------------------------------------------------------------------------------- - * ? ABOUT - * @author : Orlando Nico, GreenWaves Technologies, Robert Balas - * @email : nico.orlando@studio.unibo.it, balasr@iis.ee.ethz.ch - * @repo : pulp-sdk/?/abstraction_layer_spi_freertos - * @createdOn : 29/12/2021 - * @description : Abstraction Layer SPI for FreeRTOS - *-----------------------------------------------------------------------------------------------------------------------**/ - -/**================================================================================================ - ** INCLUDE - *================================================================================================**/ -#include "abstraction_layer_spi.h" - -/**================================================================================================ - ** GLOBAL VARIABLE - *================================================================================================**/ -struct spim_driver_data *__g_spim_drv_data[UDMA_NB_SPIM] = {0}; - -/**================================================================================================ - ** FUNCTION - *================================================================================================**/ -void __pi_spi_receive_async(struct spim_cs_data *cs_data, void *data, size_t len, - pi_spi_flags_e flags, pi_task_t *task) -{ - DBG_PRINTF("...start -> __pi_spi_receive_async...\n"); - // SPIM_CS_DATA_GET_DRV_DATA(cs_data) = (cs_data->drv_data) - struct spim_driver_data *drv_data = SPIM_CS_DATA_GET_DRV_DATA(cs_data); - int qspi = (flags & (0x3 << 2)) == PI_SPI_LINES_QUAD; - // Choose the type of cs mode, see enum "pi_spi_flags_e" to understand better. - int cs_mode = (flags >> 0) & 0x3; - - int device_id = drv_data->device_id; - uint32_t cfg = cs_data->cfg; - DBG_PRINTF("%s:%s:%d: core clock:%" PRIu32 ", baudrate:%" PRIu32 ", div=%" PRIu32 - ", udma_cmd cfg =%lx, qpi=%d\n", - __FILE__, __func__, __LINE__, system_core_clock_get(), cs_data->max_baudrate, - system_core_clock_get() / cs_data->max_baudrate, cfg, qspi); - - int buffer_size = (len + 7) >> 3; - - if (len > 8192 * 8) { - DBG_PRINTF("%s:%s:%d: Transaction splitting unimplemented, too large", __FILE__, - __func__, __LINE__); - abort(); /* TODO: unimplemented transaction splitting */ - } - - DBG_PRINTF("%s:%s:%d: udma_cmd = %p\n", __FILE__, __func__, __LINE__, - &(cs_data->udma_cmd[0])); - uint32_t irq = deactive_irq(); - - uint8_t bitsword = 0; - uint8_t UDMA_CORE_CFG = 0; - uint32_t byte_align = 0; - - if (cs_data->wordsize == PI_SPI_WORDSIZE_8) { - bitsword = 8; - UDMA_CORE_CFG = UDMA_CORE_CFG_DATASIZE_8; // 0x0 - byte_align = (cs_data->wordsize) && cs_data->big_endian; - - } else if (cs_data->wordsize == PI_SPI_WORDSIZE_16) { - bitsword = 16; - UDMA_CORE_CFG = UDMA_CORE_CFG_DATASIZE_16; // 0x1 - byte_align = (cs_data->wordsize) && cs_data->big_endian; - } else { - bitsword = 32; - UDMA_CORE_CFG = UDMA_CORE_CFG_DATASIZE_32; // 0x2 - byte_align = (cs_data->wordsize) && cs_data->big_endian; - } - - DBG_PRINTF("%s:%s:%d: bitsword = %u\n", __FILE__, __func__, __LINE__, bitsword); - DBG_PRINTF("%s:%s:%d: UDMA_CORE_CFG = %u\n", __FILE__, __func__, __LINE__, UDMA_CORE_CFG); - - if (!drv_data->end_of_transfer) { - cs_data->udma_cmd[0] = cfg; - cs_data->udma_cmd[1] = SPI_CMD_SOT(cs_data->cs); - cs_data->udma_cmd[2] = SPI_CMD_RX_DATA(len / bitsword, SPI_CMD_1_WORD_PER_TRANSF, - bitsword, qspi, SPI_CMD_MSB_FIRST); - cs_data->udma_cmd[3] = SPI_CMD_EOT(1, cs_mode == PI_SPI_CS_KEEP); - - drv_data->end_of_transfer = task; - drv_data->repeat_transfer = NULL; - - // number of byteword - uint32_t rx_conf = - UDMA_CORE_TX_CFG_EN(1) | UDMA_CORE_TX_CFG_DATASIZE(UDMA_CORE_CFG); - - /* receive data stream with 32-bit data size */ - spim_enqueue_channel(SPIM(device_id), (uint32_t)data, buffer_size, rx_conf, - RX_CHANNEL); - // number of byteword - uint32_t cmd_conf = UDMA_CORE_TX_CFG_EN(1) | - UDMA_CORE_TX_CFG_DATASIZE(UDMA_CORE_CFG_DATASIZE_32); - /* send command stream with 32-bit data size */ - spim_enqueue_channel(SPIM(device_id), (uint32_t)cs_data->udma_cmd, - 4 * sizeof(uint32_t), cmd_conf, COMMAND_CHANNEL); - DBG_PRINTF("%s:%s:%d: cmd_conf= %u\n", __FILE__, __func__, __LINE__, cmd_conf); - DBG_PRINTF("%s:%s:%d: rx_conf = %u\n", __FILE__, __func__, __LINE__, rx_conf); - } else { - struct spim_transfer transfer; - transfer.data = data; - transfer.flags = flags; - transfer.len = len; - transfer.cfg_cmd = cfg; - transfer.byte_align = byte_align; - transfer.is_send = 0; - __pi_spim_drv_fifo_enqueue(cs_data, &transfer, task); - } - active_irq(irq); - DBG_PRINTF("...end -> __pi_spi_receive_async...\n"); -} - -void __pi_spi_send_async(struct spim_cs_data *cs_data, void *data, size_t len, pi_spi_flags_e flags, - pi_task_t *task) -{ - DBG_PRINTF("...start -> __pi_spi_send_async...\n"); - struct spim_driver_data *drv_data = SPIM_CS_DATA_GET_DRV_DATA(cs_data); - int qspi = (flags & (0x3 << 2)) == PI_SPI_LINES_QUAD; - // Choose the type of cs mode, see enum "pi_spi_flags_e" to understand better. - int cs_mode = (flags >> 0) & 0x3; - - // Which SPI interface am I using. - int device_id = drv_data->device_id; - uint32_t cfg = cs_data->cfg; // SPI_CMD_CFG(...) - DBG_PRINTF("%s:%s:%d: core clock:%" PRIu32 ", baudrate:%" PRIu32 ", div=%" PRIu32 - ", udma_cmd cfg =%lx, qpi=%d\n", - __FILE__, __func__, __LINE__, system_core_clock_get(), cs_data->max_baudrate, - system_core_clock_get() / cs_data->max_baudrate, cfg, qspi); - - /* buffer size */ - int buffer_size = (len + 7) >> 3; - - if (len > 8192 * 8) { - DBG_PRINTF("%s:%s:%d: Transaction splitting unimplemented, too large", __FILE__, - __func__, __LINE__); - abort(); /* TODO: unimplemented transaction splitting */ - } - - // Address of the command buffer to be sent to the uDMA - DBG_PRINTF("%s:%s:%d: udma_cmd = %p\n", __FILE__, __func__, __LINE__, - &(cs_data->udma_cmd[0])); - uint32_t irq = disable_irq(); - /* check if we already have a transfer ongoing */ - - uint8_t bitsword = 0; - uint8_t UDMA_CORE_CFG = 0; - uint32_t byte_align = 0; - // uint32_t byte_align = (cs_data->wordsize == PI_SPI_WORDSIZE_32) && cs_data->big_endian; - - if (cs_data->wordsize == PI_SPI_WORDSIZE_8) { - bitsword = 8; - UDMA_CORE_CFG = UDMA_CORE_CFG_DATASIZE_8; // 0x0 - byte_align = (cs_data->wordsize) && cs_data->big_endian; - - } else if (cs_data->wordsize == PI_SPI_WORDSIZE_16) { - bitsword = 16; - UDMA_CORE_CFG = UDMA_CORE_CFG_DATASIZE_16; // 0x1 - byte_align = (cs_data->wordsize) && cs_data->big_endian; - } else { - bitsword = 32; - UDMA_CORE_CFG = UDMA_CORE_CFG_DATASIZE_32; // 0x2 - byte_align = (cs_data->wordsize) && cs_data->big_endian; - } - - DBG_PRINTF("%s:%s:%d: bitsword = %u\n", __FILE__, __func__, __LINE__, bitsword); - DBG_PRINTF("%s:%s:%d: UDMA_CORE_CFG = %u\n", __FILE__, __func__, __LINE__, UDMA_CORE_CFG); - DBG_PRINTF("%s:%s:%d: device_id = %d\n", __FILE__, __func__, __LINE__, device_id); - - if (!drv_data->end_of_transfer) { /* enqueue the transfer */ - cs_data->udma_cmd[0] = cfg; - cs_data->udma_cmd[1] = SPI_CMD_SOT(cs_data->cs); - cs_data->udma_cmd[2] = SPI_CMD_TX_DATA((len / bitsword), SPI_CMD_1_WORD_PER_TRANSF, - bitsword, qspi, SPI_CMD_MSB_FIRST); - cs_data->udma_cmd[3] = SPI_CMD_EOT(1, cs_mode == PI_SPI_CS_KEEP); - - drv_data->end_of_transfer = task; - drv_data->repeat_transfer = NULL; - - uint32_t cmd_conf = UDMA_CORE_TX_CFG_EN(1) | - UDMA_CORE_TX_CFG_DATASIZE(UDMA_CORE_CFG_DATASIZE_32); - /* send command stream with 32-bit data size */ - spim_enqueue_channel(SPIM(device_id), (uint32_t)cs_data->udma_cmd, - 4 * sizeof(uint32_t), cmd_conf, COMMAND_CHANNEL); - - uint32_t tx_conf = - UDMA_CORE_TX_CFG_EN(1) | UDMA_CORE_TX_CFG_DATASIZE(UDMA_CORE_CFG); - /* send data stream with 32-bit data size */ - spim_enqueue_channel(SPIM(device_id), (uint32_t)data, buffer_size, tx_conf, - TX_CHANNEL); - DBG_PRINTF("%s:%s:%d: cmd_conf = %u\n", __FILE__, __func__, __LINE__, cmd_conf); - DBG_PRINTF("%s:%s:%d: tx_conf = %u\n", __FILE__, __func__, __LINE__, tx_conf); - } else { /* a transfer is running, append to pending transfers queue */ - struct spim_transfer transfer; - transfer.data = data; - transfer.flags = flags; - transfer.len = len; - transfer.cfg_cmd = cfg; - transfer.byte_align = byte_align; - transfer.is_send = 1; - __pi_spim_drv_fifo_enqueue(cs_data, &transfer, task); - } - __active_irq(irq); - DBG_PRINTF("...end -> __pi_spi_send_async...\n"); -} - -int __pi_spi_open(struct spim_cs_data **cs_data, struct pi_spi_conf *conf); -{ - DBG_PRINTF("...start -> pi_spi_open...\n"); - - uint32_t irq = deactive_irq(); - /* int status = __pi_spi_open((struct spim_cs_data **)(&device->data), - * conf); */ - - /* TODO: hacked */ - int status = 0; - /* TODO: paste beg */ - - // disable clock gating for said device - unsigned char spi_id = conf->itf; - int periph_id = UDMA_SPIM_ID(spi_id); - - DBG_PRINTF("%s:%s:%d: periph_id = %u\n", __FILE__, __func__, __LINE__, periph_id); - - udma_ctrl_cg_disable(UDMA_SPIM_ID(conf->itf)); - - hal_soc_eu_set_fc_mask(SOC_EVENT_UDMA_SPIM_EOT(conf->itf)); - - pi_fc_event_handler_set(SOC_EVENT_UDMA_SPIM_EOT(conf->itf), spim_eot_handler); - pi_fc_event_handler_set(SOC_EVENT_UDMA_SPIM_TX(conf->itf), spim_tx_handler); - pi_fc_event_handler_set(SOC_EVENT_UDMA_SPIM_RX(conf->itf), spim_rx_handler); - - /* - ** spim_driver_data keeps information for each spi interface. - */ - // Take care of driver data - struct spim_driver_data *drv_data; - if (__g_spim_drv_data[conf->itf]) { - drv_data = __g_spim_drv_data[conf->itf]; - } else { - - // Do this to define a node in a list. The list is a dynamic object. - __g_spim_drv_data[conf->itf] = pi_default_malloc(sizeof(struct spim_driver_data)); - memset(__g_spim_drv_data[conf->itf], 0, sizeof(struct spim_driver_data)); - drv_data = __g_spim_drv_data[conf->itf]; - // Do this to define a node in a list. The list is a dynamic object. - drv_data->drv_fifo = pi_default_malloc(sizeof(struct spim_drv_fifo)); - memset(drv_data->drv_fifo, 0, sizeof(struct spim_drv_fifo)); - // controllo che il puntatore sia = 0 - if (!drv_data->drv_fifo) { - active_irq(irq); - return -1; - } - drv_data->device_id = conf->itf; - } - /* - ** Number of open SPI interfaces - */ - drv_data->nb_open++; - - // Take care of cs data - *cs_data = __pi_spim_get_cs_data(drv_data, conf->cs); - - if (!*cs_data) { // if (*cs_data == 0) - uint32_t clk_div = __pi_spi_clk_div_get(conf->max_baudrate); - // alloc a cs data, need to be in udma reachable ram - struct spim_cs_data *_cs_data = pi_data_malloc(sizeof(struct spim_cs_data)); - if (_cs_data == NULL) { - DBG_PRINTF("[%s] _cs_data alloc failed\n", __func__); - active_irq(irq); - return -2; - } - if (clk_div > 0xFF) { - DBG_PRINTF("[%s] clk_div, %" PRIu32 - ", does not fit into 8 bits. SoC frequency too high.\n", - __func__, clk_div); - active_irq(irq); - return -3; - } - - memset(_cs_data, 0, sizeof(struct spim_cs_data)); - _cs_data->max_baudrate = conf->max_baudrate; - _cs_data->polarity = conf->polarity; - _cs_data->phase = conf->phase; - _cs_data->big_endian = conf->big_endian; - _cs_data->wordsize = conf->wordsize; - _cs_data->cs = conf->cs; - _cs_data->cfg = SPI_CMD_CFG(clk_div, _cs_data->phase, _cs_data->polarity); - // _cs_data->cfg = SPI_CMD_CFG(1,0,0); - *cs_data = _cs_data; - // I insert a new element in the cs_data list - __pi_spim_cs_data_add(drv_data, _cs_data); - } - DBG_PRINTF("%s:%d\n", __func__, __LINE__); - - /* TODO: paste end */ - - active_irq(irq); - DBG_PRINTF("...end -> pi_spi_open...\n"); - return status; -} - -void __pi_spi_close(struct spim_cs_data *cs_data, struct pi_spi_conf *conf); -{ - DBG_PRINTF("...start -> pi_spi_close...\n"); - - uint32_t irq = deactive_irq(); - /* TODO: paste beg */ - struct spim_driver_data *drv_data = cs_data->drv_data; - __pi_spim_cs_data_del(drv_data, cs_data->cs); - /* - ** Number of open SPI interfaces - */ - drv_data->nb_open--; - - if (drv_data->nb_open == 0) { - /* reactivate clock gating for said device */ - udma_ctrl_cg_enable(UDMA_SPIM_ID(drv_data->device_id)); - hal_soc_eu_clear_fc_mask(SOC_EVENT_UDMA_SPIM_EOT(drv_data->device_id)); - pi_fc_event_handler_clear(SOC_EVENT_UDMA_SPIM_EOT(drv_data->device_id)); - __g_spim_drv_data[drv_data->device_id] = NULL; - pi_default_free(drv_data->drv_fifo, sizeof(drv_data->drv_fifo)); - pi_default_free(drv_data, sizeof(drv_data)); - - active_irq(irq); - return; - } - pi_data_free(cs_data, sizeof(cs_data)); - /* TODO: moved to end return drv_data->nb_open; */ - /* TODO: paste end */ - - active_irq(irq); - DBG_PRINTF("...end -> pi_spi_close...\n"); - return; -} - -void spim_eot_handler(void *arg) -{ - DBG_PRINTF("...start -> spim_eot_handler...\n"); - uint32_t event = (uint32_t)arg; - uint32_t channel = event & 0x1; - /* TODO: remove is garbage */ - // EOT is simply 22 + id in GAP8 - uint32_t periph_id = (event - SOC_EVENT_UDMA_SPIM_EOT(0)); - DBG_PRINTF("%s:%s:%d periph_id=%u\n", __FILE__, __func__, __LINE__, periph_id); - - struct spim_driver_data *drv_data = __g_spim_drv_data[periph_id]; - - if (drv_data->repeat_transfer) { - DBG_PRINTF("%s:%s:%d\n", __FILE__, __func__, __LINE__); - // TODO: reenqueue the rest of the transfer - DBG_PRINTF("Large transfers (>8k) are not implemented yet\n"); - return; - } - pi_task_t *task = drv_data->end_of_transfer; - DBG_PRINTF("%s:%s:%d\n", __FILE__, __func__, __LINE__); - if (task != NULL) { - if (task->id == PI_TASK_NONE_ID) { - DBG_PRINTF("%s:%s:%d release task %p\n", __FILE__, __func__, __LINE__, - task); - pi_task_release(task); - } else { - /* TODO: hacked away */ - /* DBG_PRINTF("%s:%d push task %p with id:%x in - * sched%p\n", */ - /* __func__, __LINE__, task, task->id, */ - /* default_sched); */ - DBG_PRINTF("%s:%s:%d periph id:%" PRIu32 "\n", __FILE__, __func__, __LINE__, - periph_id); - /* TODO: hacked away */ - /* pmsis_event_push(default_sched, task); */ - DBG_PRINTF("%s:%s:%d\n", __FILE__, __func__, __LINE__); - } - drv_data->end_of_transfer = NULL; - } -#ifdef DEBUG - else { - DBG_PRINTF("%s:%s:%d next task %d\n", __FILE__, __func__, __LINE__, - task == NULL ? 0 : 1); - } -#endif - // I put the next item on the list at the top of the list. - task = __pi_spim_drv_fifo_pop(drv_data); - - DBG_PRINTF("%s:%s:%d next task %d\n", __FILE__, __func__, __LINE__, task == NULL ? 0 : 1); - DBG_PRINTF("%s:%s:%d __pi_spim_drv_fifo_pop(%p)\n", __FILE__, __func__, __LINE__, drv_data); - DBG_PRINTF("%s:%s:%d new task %p\n", __FILE__, __func__, __LINE__, &task); - if (task) { - __pi_spim_exec_next_transfer(task); - DBG_PRINTF("%s:%s:%d __pi_spim_exec_next_transfer(%p)\n", __FILE__, __func__, - __LINE__, task); - } - DBG_PRINTF("...end -> spim_eot_handler...\n"); -} - -/* TODO: REMOVE THOSE */ -void spim_tx_handler(void *arg) -{ // if we're here, it's cs keep related - DBG_PRINTF("...start -> spim_tx_handler...\n"); - uint32_t event = (uint32_t)arg; - uint32_t channel = event & 0x1; - uint32_t periph_id = (event >> UDMA_CHANNEL_NB_EVENTS_LOG2) - UDMA_SPIM_ID(0); - hal_soc_eu_clear_fc_mask(SOC_EVENT_UDMA_SPIM_TX(periph_id)); - arg = (void *)(SOC_EVENT_UDMA_SPIM_EOT(0) + periph_id); - DBG_PRINTF("%s:%s:%d periph_id %" PRIu32 " arg:%p\n", __FILE__, __func__, __LINE__, - periph_id, arg); - spim_eot_handler(arg); - DBG_PRINTF("%s:%s:%d\n", __FILE__, __func__, __LINE__); - DBG_PRINTF("...end -> spim_tx_handler...\n"); -} - -/* TODO: REMOVE THOSE and the handler */ -void spim_rx_handler(void *arg) -{ // if we're here, it's cs keep related - DBG_PRINTF("...start -> spim_rx_handler...\n"); - uint32_t event = (uint32_t)arg; - uint32_t channel = event & 0x1; - uint32_t periph_id = (event >> UDMA_CHANNEL_NB_EVENTS_LOG2) - UDMA_SPIM_ID(0); - hal_soc_eu_clear_fc_mask(SOC_EVENT_UDMA_SPIM_RX(periph_id)); - arg = (void *)(SOC_EVENT_UDMA_SPIM_EOT(0) + periph_id); - DBG_PRINTF("%s:%s:%d periph_id %" PRIu32 " arg:%p\n", __FILE__, __func__, __LINE__, - periph_id, arg); - spim_eot_handler(arg); - DBG_PRINTF("%s:%s:%d\n", __FILE__, __func__, __LINE__); - DBG_PRINTF("...end -> spim_rx_handler...\n"); -} - -// TODO: prepare pseudo exec for delegate -void __pi_spim_execute_callback(void *arg) -{ - return; -} - -void __pi_spim_exec_next_transfer(pi_task_t *task) -{ - printf("__pi_spim_exec_next_transfer\n"); - DBG_PRINTF("...start -> __pi_spim_exec_next_transfer...\n"); - DBG_PRINTF("%s:%s:%d\n", __FILE__, __func__, __LINE__); - if (task->data[5] == 1) { // if is send - // cs data | data buffer | len | flags | end of transfer task - __pi_spi_send_async((struct spim_cs_data *)task->data[0], (void *)task->data[1], - task->data[2], task->data[3], (pi_task_t *)task->data[4]); - } else if (task->data[5] == 0) { - // cs data | data buffer | len | flags | end of transfer task - __pi_spi_receive_async((struct spim_cs_data *)task->data[0], (void *)task->data[1], - task->data[2], task->data[3], (pi_task_t *)task->data[4]); - } else { // task->data[5] contains rx data addr - // cs data | tx buffer | rx buffer| len | flags | end of - // transfer task - __pi_spi_xfer_async((struct spim_cs_data *)task->data[0], (void *)task->data[5], - (void *)task->data[1], task->data[2], task->data[3], - (pi_task_t *)task->data[4]); - } - DBG_PRINTF("...end -> __pi_spim_exec_next_transfer...\n"); -} - -void __pi_spi_xfer_async(struct spim_cs_data *cs_data, void *tx_data, void *rx_data, size_t len, - pi_spi_flags_e flags, pi_task_t *task) -{ - /* TODO: port spi_xfer async */ - abort(); -#if 0 - struct spim_driver_data *drv_data = SPIM_CS_DATA_GET_DRV_DATA(cs_data); - int qspi = (flags & (0x3 << 2)) == PI_SPI_LINES_QUAD; - int cs_mode = (flags >> 0) & 0x3; - - int device_id = drv_data->device_id; - uint32_t cfg = cs_data->cfg; - DBG_PRINTF("%s:%d: core clock:%"PRIu32", baudrate:%"PRIu32", div=%"PRIu32", udma_cmd cfg =%d\n", - __func__,__LINE__,system_core_clock_get(),cs_data->max_baudrate, - system_core_clock_get() / cs_data->max_baudrate,cfg); - uint32_t byte_align = (cs_data->wordsize == PI_SPI_WORDSIZE_32) - && cs_data->big_endian; - int size = (len + 7) >> 3; - - int cmd_id = 0; - - uint32_t irq = deactive_irq(); - if(!drv_data->end_of_transfer) - { - cs_data->udma_cmd[0] = cfg; - cs_data->udma_cmd[1] = SPI_CMD_SOT(cs_data->cs); - cs_data->udma_cmd[2] = SPI_CMD_FULL_DUPL(len, byte_align); - drv_data->end_of_transfer = task; - drv_data->repeat_transfer = NULL; - if(cs_mode == PI_SPI_CS_AUTO) - { - spim_enqueue_channel(SPIM(device_id), (uint32_t)cs_data->udma_cmd, - 3*(sizeof(uint32_t)), UDMA_CORE_TX_CFG_EN(1), - TX_CHANNEL); - spim_enqueue_channel(SPIM(device_id), (uint32_t)rx_data, size, - UDMA_CORE_RX_CFG_EN(1) | (2<<1), RX_CHANNEL); - spim_enqueue_channel(SPIM(device_id), (uint32_t)tx_data, - size, UDMA_CORE_TX_CFG_EN(1), - TX_CHANNEL); - // wait until TX channel is free - while((hal_read32((void*)&(SPIM(device_id)->udma.tx_cfg)) - & (1<<5))>>5) - { - DBG_PRINTF("%s:%d\n",__func__,__LINE__); - } - // send EOT - cs_data->udma_cmd[3] = SPI_CMD_EOT(1); - spim_enqueue_channel(SPIM(device_id), - (uint32_t)&cs_data->udma_cmd[3], sizeof(uint32_t), - UDMA_CORE_TX_CFG_EN(1), TX_CHANNEL); - } - else - { - spim_enqueue_channel(SPIM(device_id), (uint32_t)cs_data->udma_cmd, - 3*(sizeof(uint32_t)), UDMA_CORE_TX_CFG_EN(1), - TX_CHANNEL); - // wait until TX channel is free - while((hal_read32((void*)&(SPIM(device_id)->udma.tx_cfg)) - & (1<<5))>>5) - { - DBG_PRINTF("%s:%d\n",__func__,__LINE__); - } - // activate rx event - hal_soc_eu_set_fc_mask(SOC_EVENT_UDMA_SPIM_RX(device_id)); - // NOTE: both transfers have the same size - // does not matter which one we wait - spim_enqueue_channel(SPIM(device_id), (uint32_t)rx_data, size, - UDMA_CORE_RX_CFG_EN(1) | (2<<1), RX_CHANNEL); - spim_enqueue_channel(SPIM(device_id), (uint32_t)tx_data, - size, UDMA_CORE_TX_CFG_EN(1), - TX_CHANNEL); - } - - } - else - { - struct spim_transfer transfer; - transfer.data = rx_data; - transfer.flags = flags; - transfer.len = len; - transfer.cfg_cmd = cfg; - transfer.byte_align = byte_align; - transfer.is_send = (uint32_t) tx_data; // sending a pointer means xfer - __pi_spim_drv_fifo_enqueue(cs_data, &transfer, task); - } - active_irq(irq); -#endif -} - -void __pi_spi_receive_async_with_ucode(struct spim_cs_data *cs_data, void *data, size_t len, - pi_spi_flags_e flags, int ucode_size, void *ucode, - pi_task_t *task) -{ - /* TODO: port spi_async with ucode */ - abort(); -#if 0 - struct spim_driver_data *drv_data = SPIM_CS_DATA_GET_DRV_DATA(cs_data); - int qspi = ((flags >> 2) & 0x3) == ((PI_SPI_LINES_QUAD>>2) & 0x03); - int cs_mode = (flags >> 0) & 0x3; - - int device_id = drv_data->device_id; - uint32_t byte_align = (cs_data->wordsize == PI_SPI_WORDSIZE_32) - && cs_data->big_endian; - uint32_t cfg = cs_data->cfg; - DBG_PRINTF("%s:%d: core clock:%d, baudrate:%d, div=%d, byte_align =%lx, cfg= %lx, qspi=%lx\n", - __func__,__LINE__,system_core_clock_get(),cs_data->max_baudrate, - system_core_clock_get() / cs_data->max_baudrate,byte_align,cfg,qspi); - int size = (len + 7) >> 3; - - int cmd_id = 0; - - uint32_t irq = deactive_irq(); - if(!drv_data->end_of_transfer) - { - if(cs_mode != PI_SPI_CS_AUTO) - { - hal_soc_eu_set_fc_mask(SOC_EVENT_UDMA_SPIM_RX(device_id)); - } - drv_data->end_of_transfer = task; - drv_data->repeat_transfer = NULL; - if(((0xFFF00000 & (uint32_t)ucode)!= 0x1c000000)) - { - memcpy(&(cs_data->udma_cmd[0]), ucode, ucode_size); - spim_enqueue_channel(SPIM(device_id), (uint32_t)data, size, - UDMA_CORE_RX_CFG_EN(1) | (2<<1), RX_CHANNEL); - spim_enqueue_channel(SPIM(device_id), (uint32_t)cs_data->udma_cmd, - ucode_size, UDMA_CORE_TX_CFG_EN(1), TX_CHANNEL); - } - else - { - spim_enqueue_channel(SPIM(device_id), (uint32_t)data, size, - UDMA_CORE_RX_CFG_EN(1) | (2<<1), RX_CHANNEL); - spim_enqueue_channel(SPIM(device_id), (uint32_t)ucode, - ucode_size, UDMA_CORE_TX_CFG_EN(1), TX_CHANNEL); - } - } - else - { -#if 0 - struct spim_transfer transfer; - transfer.data = data; - transfer.flags = flags; - transfer.len = len; - transfer.cfg_cmd = cfg; - transfer.byte_align = byte_align; - transfer.is_send = 0; - __pi_spim_drv_fifo_enqueue(cs_data, &transfer, task); -#endif - } - active_irq(irq); -#endif -} - -void __pi_spi_send_async_with_ucode(struct spim_cs_data *cs_data, void *data, size_t len, - pi_spi_flags_e flags, int ucode_size, void *ucode, - pi_task_t *task) -{ - /* TODO: port spi_async with ucode */ - abort(); -#if 0 - struct spim_driver_data *drv_data = SPIM_CS_DATA_GET_DRV_DATA(cs_data); - int qspi = ((flags >> 2) & 0x3) == ((PI_SPI_LINES_QUAD>>2) & 0x03); - int cs_mode = (flags >> 0) & 0x3; - - int device_id = drv_data->device_id; - uint32_t byte_align = (cs_data->wordsize == PI_SPI_WORDSIZE_32) - && cs_data->big_endian; - uint32_t cfg = cs_data->cfg; - DBG_PRINTF("%s:%d: core clock:%d, baudrate:%d, div=%d, byte_align =%lx, cfg= %lx, qspi=%lx\n", - __func__,__LINE__,system_core_clock_get(),cs_data->max_baudrate, - system_core_clock_get() / cs_data->max_baudrate,byte_align,cfg,qspi); - int size = (len + 7) >> 3; - - int cmd_id = 0; - - uint32_t irq = deactive_irq(); - if(!drv_data->end_of_transfer) - { - if(cs_mode != PI_SPI_CS_AUTO) - { - hal_soc_eu_set_fc_mask(SOC_EVENT_UDMA_SPIM_TX(device_id)); - } - drv_data->end_of_transfer = task; - drv_data->repeat_transfer = NULL; - - spim_enqueue_channel(SPIM(device_id), (uint32_t)ucode, - ucode_size, UDMA_CORE_TX_CFG_EN(1), TX_CHANNEL); - pi_time_wait_us(1000); - spim_enqueue_channel(SPIM(device_id), (uint32_t)data, - size, UDMA_CORE_TX_CFG_EN(1), TX_CHANNEL); - if(cs_mode == PI_SPI_CS_AUTO) - { - // wait until channel is free - while((hal_read32((void*)&(SPIM(device_id)->udma.tx_cfg)) - & (1<<5))>>5) - { - DBG_PRINTF("%s:%d\n",__func__,__LINE__); - } - - // enqueue EOT - cs_data->udma_cmd[0] = SPI_CMD_EOT(1); - spim_enqueue_channel(SPIM(device_id), - (uint32_t)&cs_data->udma_cmd[0], 1*(sizeof(uint32_t)), - UDMA_CORE_TX_CFG_EN(1), TX_CHANNEL); - } - } - else - { -#if 0 - struct spim_transfer transfer; - transfer.data = data; - transfer.flags = flags; - transfer.len = len; - transfer.cfg_cmd = cfg; - transfer.byte_align = byte_align; - transfer.is_send = 0; - __pi_spim_drv_fifo_enqueue(cs_data, &transfer, task); -#endif - } - active_irq(irq); -#endif -} \ No newline at end of file From fcb0d72ec80602bc08105355c1d7b912cff1a893 Mon Sep 17 00:00:00 2001 From: orlandonico Date: Tue, 4 Jan 2022 15:14:03 +0100 Subject: [PATCH 66/86] rtos: update --- .../common_file_spi/include/common_spi.h | 147 + .../common_file_spi/src/common_spi.c | 169 + rtos/freertos | 1 + rtos/pulpos/common/rules/pulpos/src.mk | 4 +- .../common_file_spi/src/common_spi.o | Bin 0 -> 236472 bytes tests/pulpos/pulp/drivers/spim/spim-v3.o | Bin 0 -> 251020 bytes tests/spim_flash_async/Makefile | 65 +- .../drivers/abstraction_layer_spi.o | Bin 0 -> 305928 bytes tests/spim_flash_async/drivers/device.o | Bin 0 -> 84532 bytes tests/spim_flash_async/drivers/fc_event.o | Bin 0 -> 94036 bytes tests/spim_flash_async/drivers/fll.o | Bin 0 -> 132520 bytes tests/spim_flash_async/drivers/gpio.o | Bin 0 -> 96784 bytes tests/spim_flash_async/drivers/i2c.o | Bin 0 -> 332700 bytes tests/spim_flash_async/drivers/irq.o | Bin 0 -> 91184 bytes tests/spim_flash_async/drivers/pinmux.o | Bin 0 -> 60788 bytes tests/spim_flash_async/drivers/pmsis_task.o | Bin 0 -> 209148 bytes tests/spim_flash_async/drivers/soc_eu.o | Bin 0 -> 53420 bytes tests/spim_flash_async/drivers/spi.o | Bin 0 -> 350352 bytes tests/spim_flash_async/drivers/timer_irq.o | Bin 0 -> 58108 bytes tests/spim_flash_async/drivers/uart.o | Bin 0 -> 312296 bytes tests/spim_flash_async/kernel/event_groups.o | Bin 0 -> 162928 bytes tests/spim_flash_async/kernel/list.o | Bin 0 -> 111224 bytes .../kernel/portable/GCC/RISC-V/port.o | Bin 0 -> 109124 bytes .../kernel/portable/GCC/RISC-V/portASM.o | Bin 0 -> 15504 bytes .../kernel/portable/MemMang/heap_3.o | Bin 0 -> 109520 bytes tests/spim_flash_async/kernel/queue.o | Bin 0 -> 260716 bytes tests/spim_flash_async/kernel/stream_buffer.o | Bin 0 -> 215780 bytes tests/spim_flash_async/kernel/tasks.o | Bin 0 -> 375484 bytes tests/spim_flash_async/kernel/timers.o | Bin 0 -> 194616 bytes tests/spim_flash_async/libc/pulp_malloc.o | Bin 0 -> 61128 bytes tests/spim_flash_async/libc/syscalls.o | Bin 0 -> 203828 bytes tests/spim_flash_async/memory.map | 4805 + tests/spim_flash_async/rtl_config.json | 9622 + tests/spim_flash_async/sim/CLUSTER_FLL.log | 343 + tests/spim_flash_async/sim/CORE_0.txt | 0 tests/spim_flash_async/sim/CORE_1.txt | 0 tests/spim_flash_async/sim/CORE_2.txt | 0 tests/spim_flash_async/sim/CORE_3.txt | 0 tests/spim_flash_async/sim/CORE_4.txt | 0 tests/spim_flash_async/sim/CORE_5.txt | 0 tests/spim_flash_async/sim/CORE_6.txt | 0 tests/spim_flash_async/sim/CORE_7.txt | 0 tests/spim_flash_async/sim/FETCH_CORE_0.log | 0 tests/spim_flash_async/sim/FETCH_CORE_1.log | 0 tests/spim_flash_async/sim/FETCH_CORE_2.log | 0 tests/spim_flash_async/sim/FETCH_CORE_3.log | 0 tests/spim_flash_async/sim/FETCH_CORE_4.log | 0 tests/spim_flash_async/sim/FETCH_CORE_5.log | 0 tests/spim_flash_async/sim/FETCH_CORE_6.log | 0 tests/spim_flash_async/sim/FETCH_CORE_7.log | 0 tests/spim_flash_async/sim/PER_FLL.log | 344 + tests/spim_flash_async/sim/SOC_FLL.log | 352 + tests/spim_flash_async/sim/boot | 1 + tests/spim_flash_async/sim/fs/file_0_0.txt | 0 tests/spim_flash_async/sim/fs/file_0_1.txt | 0 tests/spim_flash_async/sim/fs/file_0_2.txt | 0 tests/spim_flash_async/sim/fs/file_0_3.txt | 0 tests/spim_flash_async/sim/fs/file_0_4.txt | 0 tests/spim_flash_async/sim/fs/file_0_5.txt | 0 tests/spim_flash_async/sim/fs/file_0_6.txt | 0 tests/spim_flash_async/sim/fs/file_0_7.txt | 0 tests/spim_flash_async/sim/fs/file_31_0.txt | 0 tests/spim_flash_async/sim/memory.map | 4805 + tests/spim_flash_async/sim/modelsim.ini | 1 + .../sim/stdout/stdout_fake_pe0_0 | 0 .../sim/stdout/stdout_fake_pe0_1 | 0 .../sim/stdout/stdout_fake_pe0_2 | 0 .../sim/stdout/stdout_fake_pe0_3 | 0 .../sim/stdout/stdout_fake_pe0_4 | 0 .../sim/stdout/stdout_fake_pe0_5 | 0 .../sim/stdout/stdout_fake_pe0_6 | 0 .../sim/stdout/stdout_fake_pe0_7 | 0 .../sim/stdout/stdout_fake_pe31_0 | 13 + .../sim/stdout/stdout_fake_pe31_1 | 0 .../sim/stdout/stdout_fake_pe31_2 | 0 .../sim/stdout/stdout_fake_pe31_3 | 0 .../sim/stdout/stdout_fake_pe31_4 | 0 .../sim/stdout/stdout_fake_pe31_5 | 0 .../sim/stdout/stdout_fake_pe31_6 | 0 .../sim/stdout/stdout_fake_pe31_7 | 0 tests/spim_flash_async/sim/stdout/uart | 0 tests/spim_flash_async/sim/tcl_files | 1 + tests/spim_flash_async/sim/test_flash_async | Bin 0 -> 456456 bytes .../spim_flash_async/sim/test_flash_async.lst | 12259 + .../spim_flash_async/sim/trace_core_00_0.log | 1 + .../spim_flash_async/sim/trace_core_00_1.log | 1 + .../spim_flash_async/sim/trace_core_00_2.log | 1 + .../spim_flash_async/sim/trace_core_00_3.log | 1 + .../spim_flash_async/sim/trace_core_00_4.log | 1 + .../spim_flash_async/sim/trace_core_00_5.log | 1 + .../spim_flash_async/sim/trace_core_00_6.log | 1 + .../spim_flash_async/sim/trace_core_00_7.log | 1 + .../spim_flash_async/sim/trace_core_1f_0.log | 329674 +++++++++++++++ tests/spim_flash_async/sim/transcript | 225 + tests/spim_flash_async/sim/vectors/stim.txt | 1 + tests/spim_flash_async/sim/waves | 1 + tests/spim_flash_async/sim/work | 1 + tests/spim_flash_async/target/pulp/crt0.o | Bin 0 -> 3756 bytes tests/spim_flash_async/target/pulp/system.o | Bin 0 -> 260884 bytes tests/spim_flash_async/target/pulp/vectors.o | Bin 0 -> 6888 bytes tests/spim_flash_async/test_flash_async | Bin 0 -> 456456 bytes tests/spim_flash_async/test_flash_async.hex | 5419 + tests/spim_flash_async/test_flash_async.lst | 12259 + tests/spim_flash_async/test_flash_async.stim | 11259 + tests/spim_flash_async/test_spi_async.c | 192 +- tests/spim_flash_async/test_spi_async.o | Bin 0 -> 270368 bytes 106 files changed, 391878 insertions(+), 93 deletions(-) create mode 100644 rtos/common_function/common_file_spi/include/common_spi.h create mode 100644 rtos/common_function/common_file_spi/src/common_spi.c create mode 160000 rtos/freertos create mode 100644 tests/common_function/common_file_spi/src/common_spi.o create mode 100644 tests/pulpos/pulp/drivers/spim/spim-v3.o create mode 100644 tests/spim_flash_async/drivers/abstraction_layer_spi.o create mode 100644 tests/spim_flash_async/drivers/device.o create mode 100644 tests/spim_flash_async/drivers/fc_event.o create mode 100644 tests/spim_flash_async/drivers/fll.o create mode 100644 tests/spim_flash_async/drivers/gpio.o create mode 100644 tests/spim_flash_async/drivers/i2c.o create mode 100644 tests/spim_flash_async/drivers/irq.o create mode 100644 tests/spim_flash_async/drivers/pinmux.o create mode 100644 tests/spim_flash_async/drivers/pmsis_task.o create mode 100644 tests/spim_flash_async/drivers/soc_eu.o create mode 100644 tests/spim_flash_async/drivers/spi.o create mode 100644 tests/spim_flash_async/drivers/timer_irq.o create mode 100644 tests/spim_flash_async/drivers/uart.o create mode 100644 tests/spim_flash_async/kernel/event_groups.o create mode 100644 tests/spim_flash_async/kernel/list.o create mode 100644 tests/spim_flash_async/kernel/portable/GCC/RISC-V/port.o create mode 100644 tests/spim_flash_async/kernel/portable/GCC/RISC-V/portASM.o create mode 100644 tests/spim_flash_async/kernel/portable/MemMang/heap_3.o create mode 100644 tests/spim_flash_async/kernel/queue.o create mode 100644 tests/spim_flash_async/kernel/stream_buffer.o create mode 100644 tests/spim_flash_async/kernel/tasks.o create mode 100644 tests/spim_flash_async/kernel/timers.o create mode 100644 tests/spim_flash_async/libc/pulp_malloc.o create mode 100644 tests/spim_flash_async/libc/syscalls.o create mode 100644 tests/spim_flash_async/memory.map create mode 100644 tests/spim_flash_async/rtl_config.json create mode 100644 tests/spim_flash_async/sim/CLUSTER_FLL.log create mode 100644 tests/spim_flash_async/sim/CORE_0.txt create mode 100644 tests/spim_flash_async/sim/CORE_1.txt create mode 100644 tests/spim_flash_async/sim/CORE_2.txt create mode 100644 tests/spim_flash_async/sim/CORE_3.txt create mode 100644 tests/spim_flash_async/sim/CORE_4.txt create mode 100644 tests/spim_flash_async/sim/CORE_5.txt create mode 100644 tests/spim_flash_async/sim/CORE_6.txt create mode 100644 tests/spim_flash_async/sim/CORE_7.txt create mode 100644 tests/spim_flash_async/sim/FETCH_CORE_0.log create mode 100644 tests/spim_flash_async/sim/FETCH_CORE_1.log create mode 100644 tests/spim_flash_async/sim/FETCH_CORE_2.log create mode 100644 tests/spim_flash_async/sim/FETCH_CORE_3.log create mode 100644 tests/spim_flash_async/sim/FETCH_CORE_4.log create mode 100644 tests/spim_flash_async/sim/FETCH_CORE_5.log create mode 100644 tests/spim_flash_async/sim/FETCH_CORE_6.log create mode 100644 tests/spim_flash_async/sim/FETCH_CORE_7.log create mode 100644 tests/spim_flash_async/sim/PER_FLL.log create mode 100644 tests/spim_flash_async/sim/SOC_FLL.log create mode 120000 tests/spim_flash_async/sim/boot create mode 100644 tests/spim_flash_async/sim/fs/file_0_0.txt create mode 100644 tests/spim_flash_async/sim/fs/file_0_1.txt create mode 100644 tests/spim_flash_async/sim/fs/file_0_2.txt create mode 100644 tests/spim_flash_async/sim/fs/file_0_3.txt create mode 100644 tests/spim_flash_async/sim/fs/file_0_4.txt create mode 100644 tests/spim_flash_async/sim/fs/file_0_5.txt create mode 100644 tests/spim_flash_async/sim/fs/file_0_6.txt create mode 100644 tests/spim_flash_async/sim/fs/file_0_7.txt create mode 100644 tests/spim_flash_async/sim/fs/file_31_0.txt create mode 100644 tests/spim_flash_async/sim/memory.map create mode 120000 tests/spim_flash_async/sim/modelsim.ini create mode 100644 tests/spim_flash_async/sim/stdout/stdout_fake_pe0_0 create mode 100644 tests/spim_flash_async/sim/stdout/stdout_fake_pe0_1 create mode 100644 tests/spim_flash_async/sim/stdout/stdout_fake_pe0_2 create mode 100644 tests/spim_flash_async/sim/stdout/stdout_fake_pe0_3 create mode 100644 tests/spim_flash_async/sim/stdout/stdout_fake_pe0_4 create mode 100644 tests/spim_flash_async/sim/stdout/stdout_fake_pe0_5 create mode 100644 tests/spim_flash_async/sim/stdout/stdout_fake_pe0_6 create mode 100644 tests/spim_flash_async/sim/stdout/stdout_fake_pe0_7 create mode 100644 tests/spim_flash_async/sim/stdout/stdout_fake_pe31_0 create mode 100644 tests/spim_flash_async/sim/stdout/stdout_fake_pe31_1 create mode 100644 tests/spim_flash_async/sim/stdout/stdout_fake_pe31_2 create mode 100644 tests/spim_flash_async/sim/stdout/stdout_fake_pe31_3 create mode 100644 tests/spim_flash_async/sim/stdout/stdout_fake_pe31_4 create mode 100644 tests/spim_flash_async/sim/stdout/stdout_fake_pe31_5 create mode 100644 tests/spim_flash_async/sim/stdout/stdout_fake_pe31_6 create mode 100644 tests/spim_flash_async/sim/stdout/stdout_fake_pe31_7 create mode 100644 tests/spim_flash_async/sim/stdout/uart create mode 120000 tests/spim_flash_async/sim/tcl_files create mode 100755 tests/spim_flash_async/sim/test_flash_async create mode 100644 tests/spim_flash_async/sim/test_flash_async.lst create mode 100644 tests/spim_flash_async/sim/trace_core_00_0.log create mode 100644 tests/spim_flash_async/sim/trace_core_00_1.log create mode 100644 tests/spim_flash_async/sim/trace_core_00_2.log create mode 100644 tests/spim_flash_async/sim/trace_core_00_3.log create mode 100644 tests/spim_flash_async/sim/trace_core_00_4.log create mode 100644 tests/spim_flash_async/sim/trace_core_00_5.log create mode 100644 tests/spim_flash_async/sim/trace_core_00_6.log create mode 100644 tests/spim_flash_async/sim/trace_core_00_7.log create mode 100644 tests/spim_flash_async/sim/trace_core_1f_0.log create mode 100644 tests/spim_flash_async/sim/transcript create mode 120000 tests/spim_flash_async/sim/vectors/stim.txt create mode 120000 tests/spim_flash_async/sim/waves create mode 120000 tests/spim_flash_async/sim/work create mode 100644 tests/spim_flash_async/target/pulp/crt0.o create mode 100644 tests/spim_flash_async/target/pulp/system.o create mode 100644 tests/spim_flash_async/target/pulp/vectors.o create mode 100755 tests/spim_flash_async/test_flash_async create mode 100644 tests/spim_flash_async/test_flash_async.hex create mode 100644 tests/spim_flash_async/test_flash_async.lst create mode 100644 tests/spim_flash_async/test_flash_async.stim create mode 100644 tests/spim_flash_async/test_spi_async.o diff --git a/rtos/common_function/common_file_spi/include/common_spi.h b/rtos/common_function/common_file_spi/include/common_spi.h new file mode 100644 index 00000000..18543bf7 --- /dev/null +++ b/rtos/common_function/common_file_spi/include/common_spi.h @@ -0,0 +1,147 @@ +/* + * Copyright 2020 GreenWaves Technologies + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +/**----------------------------------------------------------------------------------------------------------------------- + * ? ABOUT + * @author : Orlando Nico, GreenWaves Technologies, Robert Balas + * @email : nico.orlando@studio.unibo.it, balasr@iis.ee.ethz.ch + * @repo : pulp-sdk/rtos/pulpos/pulp/drivers/spim/common + * @createdOn : 28/12/2021 + * @description : Common File for Abstraction Layer SPI for PulpOS and FreeRTOS + *-----------------------------------------------------------------------------------------------------------------------**/ + +/**================================================================================================ + ** INCLUDE + *================================================================================================**/ +#ifdef USE_PULPOS_TEST +#include "pmsis.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#endif + +#ifdef USE_FREERTOS_TEST +#include "pmsis_types.h" +#include "pmsis_task.h" +#include "implementation_specific_defines.h" +#include "system.h" +#include "fc_event.h" +#include "udma.h" +#include "fll.h" +#include "events.h" +#include "properties.h" +#include "spi_periph.h" +#include "spi.h" +#include "udma_spim.h" +#include "udma_ctrl.h" +#endif + +/**================================================================================================ + ** DEFINE + *================================================================================================**/ +#ifdef DEBUG +#define DEBUG_PRINTF printf +#define DBG_PRINTF printf +#else +#define DEBUG_PRINTF(...) ((void)0) +#define DBG_PRINTF(...) ((void)0) +#endif /* DEBUG */ + +/**================================================================================================ + ** STRUCT + *================================================================================================**/ +struct spim_drv_fifo +{ + pi_task_t *fifo_head; + pi_task_t *fifo_tail; +}; + +/* Structure holding infos for each chip selects (itf, cs, polarity etc...) */ +struct spim_cs_data +{ + struct spim_cs_data *next; + struct spim_driver_data *drv_data; + uint32_t cfg; + uint32_t udma_cmd[8]; + uint32_t max_baudrate; + uint32_t polarity; + uint32_t phase; + uint8_t cs; + uint8_t wordsize; + uint8_t big_endian; +}; + +#ifdef USE_PULPOS_TEST +/* Structure holding info for each interfaces + * most notably the fifo of enqueued transfers and meta to know whether + * interface is free or not */ +struct spim_driver_data +{ + struct spim_drv_fifo *drv_fifo; // does the same task as Dolphine with true and false + struct spim_cs_data *cs_list; // list of devices connected to the spi interface + pi_task_t *repeat_transfer; + pi_task_t *end_of_transfer; // gli associo un task per sapere se un trasferimento ha finito? + uint32_t nb_open; + uint8_t device_id; + pos_udma_channel_t *rx_channel; + pos_udma_channel_t *tx_channel; +}; +#endif +#ifdef USE_FREERTOS_TEST +/* Structure holding info for each interfaces + * most notably the fifo of enqueued transfers and meta to know whether + * interface is free or not */ +struct spim_driver_data { + struct spim_drv_fifo *drv_fifo; // does the same task as Dolphine with true and false + struct spim_cs_data *cs_list; // list of devices connected to the spi interface + pi_task_t *repeat_transfer; + pi_task_t *end_of_transfer; // gli associo un task per sapere se un trasferimento ha finito? + uint32_t nb_open; + uint8_t device_id; +}; +#endif + + +struct spim_transfer +{ + pi_spi_flags_e flags; + void *data; + uint32_t len; + uint32_t cfg_cmd; + uint32_t byte_align; + uint32_t is_send; +}; + +/**================================================================================================ + ** PROTOTYPE FUNCTION + *================================================================================================**/ +uint32_t __pi_spi_get_config(struct spim_cs_data *cs_data); +int32_t __pi_spim_drv_fifo_enqueue(struct spim_cs_data *cs_data, struct spim_transfer *transfer, pi_task_t *end_task); +pi_task_t *__pi_spim_drv_fifo_pop(struct spim_driver_data *data); +struct spim_cs_data *__pi_spim_get_cs_data(struct spim_driver_data *drv_data, int cs); +void __pi_spim_cs_data_del(struct spim_driver_data *drv_data, int cs); +void __pi_spim_cs_data_add(struct spim_driver_data *drv_data, struct spim_cs_data *cs_data); +uint32_t __pi_spi_clk_div_get(uint32_t spi_freq); +uint32_t deactive_irq(void); +void active_irq(uint32_t irq); \ No newline at end of file diff --git a/rtos/common_function/common_file_spi/src/common_spi.c b/rtos/common_function/common_file_spi/src/common_spi.c new file mode 100644 index 00000000..5666f2a2 --- /dev/null +++ b/rtos/common_function/common_file_spi/src/common_spi.c @@ -0,0 +1,169 @@ +/* + * Copyright 2020 GreenWaves Technologies + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +/**----------------------------------------------------------------------------------------------------------------------- + * ? ABOUT + * @author : Orlando Nico, GreenWaves Technologies, Robert Balas + * @email : nico.orlando@studio.unibo.it, balasr@iis.ee.ethz.ch + * @repo : pulp-sdk/rtos/pulpos/pulp/drivers/spim/common + * @createdOn : 28/12/2021 + * @description : Common File for Abstraction Layer SPI for PulpOS and FreeRTOS + *-----------------------------------------------------------------------------------------------------------------------**/ + +/**================================================================================================ + ** INCLUDE + *================================================================================================**/ +#include "common_spi.h" + +/**================================================================================================ + ** FUNCTION + *================================================================================================**/ +uint32_t deactive_irq(void){ +#ifdef USE_PULPOS_TEST + return hal_irq_disable(); +#endif +#ifdef USE_FREERTOS_TEST + return __disable_irq(); +#endif +} + +void active_irq(uint32_t irq){ +#ifdef USE_PULPOS_TEST + hal_irq_restore(irq); +#endif +#ifdef USE_FREERTOS_TEST + __restore_irq(irq); +#endif + +} + +uint32_t __pi_spi_get_config(struct spim_cs_data *cs_data) +{ + return cs_data->cfg; +} + +// It is used to put an item in the list. The new item is put at the top of the list. +int32_t __pi_spim_drv_fifo_enqueue(struct spim_cs_data *cs_data, + struct spim_transfer *transfer, + pi_task_t *end_task) +{ + uint32_t irq = deactive_irq(); + struct spim_driver_data *drv_data = cs_data->drv_data; + /* Callback args. */ + end_task->data[0] = (uintptr_t)cs_data; + end_task->data[1] = (uintptr_t)transfer->data; + end_task->data[2] = (uintptr_t)transfer->len; + end_task->data[3] = (uintptr_t)transfer->flags; + end_task->data[4] = (uintptr_t)end_task; + end_task->data[5] = (uintptr_t)transfer->is_send; + end_task->next = NULL; + /* Enqueue transfer in drv fifo. */ + if (drv_data->drv_fifo->fifo_head == NULL) + { + /* Empty fifo. */ + drv_data->drv_fifo->fifo_head = end_task; + drv_data->drv_fifo->fifo_tail = drv_data->drv_fifo->fifo_head; + } + else + { + /* Enqueue to tail. */ + drv_data->drv_fifo->fifo_tail->next = end_task; + drv_data->drv_fifo->fifo_tail = + drv_data->drv_fifo->fifo_tail->next; + } + active_irq(irq); + return 0; +} + +pi_task_t *__pi_spim_drv_fifo_pop(struct spim_driver_data *data) +{ + // DBG_PRINTF("%s:%s:%d: \n", __FILE__, __func__, __LINE__); + pi_task_t *task_return = NULL; + // clean the value in the position 7 of regiter 0x300 + // irq = 1100010000000 + int check_300 = 0; + asm volatile("csrr %0, 0x300" + : "=r"(check_300)); + uint32_t irq = deactive_irq(); + if (data->drv_fifo->fifo_head != NULL) + { + task_return = data->drv_fifo->fifo_head; + data->drv_fifo->fifo_head = data->drv_fifo->fifo_head->next; + if (data->drv_fifo->fifo_head == NULL) + { + data->drv_fifo->fifo_tail = NULL; + } + } + // write in the 0x300 register + active_irq(irq); + return task_return; +} + +struct spim_cs_data *__pi_spim_get_cs_data(struct spim_driver_data *drv_data, int cs) +{ + struct spim_cs_data *cs_cur = drv_data->cs_list; + while (cs_cur != NULL && cs_cur->cs != cs) + { + cs_cur = cs_cur->next; + } + return cs_cur; +} + +void __pi_spim_cs_data_del(struct spim_driver_data *drv_data, + int cs) +{ + struct spim_cs_data *cs_cur = drv_data->cs_list; + struct spim_cs_data *cs_prev = cs_cur; + while (cs_cur != NULL && cs_cur->cs != cs) + { + cs_prev = cs_cur; + cs_cur = cs_cur->next; + } + if (cs_cur) + { + cs_prev->next = cs_cur->next; + cs_cur->next = NULL; + } +} + +void __pi_spim_cs_data_add(struct spim_driver_data *drv_data, struct spim_cs_data *cs_data) +{ + // head insert, most recently allocated should be most recently used + cs_data->drv_data = drv_data; + cs_data->next = drv_data->cs_list; +} + +uint32_t __pi_spi_clk_div_get(uint32_t spi_freq) +{ + uint32_t periph_freq = pi_freq_get(PI_FREQ_DOMAIN_PERIPH); + if (spi_freq < periph_freq) + { + uint32_t clk_div = 0; + clk_div = (periph_freq + spi_freq - 1) / spi_freq; + if (clk_div & 1) + { + clk_div += 1; + } + /* The SPIM always divide by 2 once we activate the divider, + thus increase by 1 in case it is even to not go above the max + frequency. */ + clk_div = clk_div >> 1; + return clk_div; + } + return 0; +} \ No newline at end of file diff --git a/rtos/freertos b/rtos/freertos new file mode 160000 index 00000000..821a181a --- /dev/null +++ b/rtos/freertos @@ -0,0 +1 @@ +Subproject commit 821a181af42c9ef47f380a626826426472841abf diff --git a/rtos/pulpos/common/rules/pulpos/src.mk b/rtos/pulpos/common/rules/pulpos/src.mk index 5b33daea..8a2b9487 100644 --- a/rtos/pulpos/common/rules/pulpos/src.mk +++ b/rtos/pulpos/common/rules/pulpos/src.mk @@ -18,12 +18,12 @@ ifeq '$(CONFIG_LIBC_MINIMAL)' '1' PULP_SRCS += lib/libc/minimal/io.c lib/libc/minimal/fprintf.c lib/libc/minimal/prf.c lib/libc/minimal/sprintf.c lib/libc/minimal/semihost.c endif +ifdef USE_PULPOS_TEST ifdef CONFIG_KERNEL PULP_SRCS += kernel/init.c kernel/kernel.c kernel/device.c kernel/task.c kernel/alloc.c \ kernel/alloc_pool.c kernel/irq.c kernel/soc_event.c kernel/log.c kernel/time.c - PULP_ASM_SRCS += kernel/irq_asm.S kernel/task_asm.S kernel/time_asm.S - +endif endif # SOC EVENT diff --git a/tests/common_function/common_file_spi/src/common_spi.o b/tests/common_function/common_file_spi/src/common_spi.o new file mode 100644 index 0000000000000000000000000000000000000000..380f51ad9c252f6edec90aba5b106ecaba7810a1 GIT binary patch literal 236472 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 Bkv#wa literal 0 HcmV?d00001 diff --git a/tests/pulpos/pulp/drivers/spim/spim-v3.o b/tests/pulpos/pulp/drivers/spim/spim-v3.o new file mode 100644 index 0000000000000000000000000000000000000000..77ab6a7227da78c88adc80f1fe87cff86dcc02ca GIT binary patch literal 251020 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 NosvF(B5(QQ{tvAa>WBaU literal 0 HcmV?d00001 diff --git a/tests/spim_flash_async/Makefile b/tests/spim_flash_async/Makefile index a09ba79e..d3f870ed 100644 --- a/tests/spim_flash_async/Makefile +++ b/tests/spim_flash_async/Makefile @@ -1,6 +1,9 @@ +#USE_PULPOS_TEST=1 +USE_FREERTOS_TEST=1 + +ifdef USE_PULPOS_TEST APP = test_spi_async APP_SRCS += test_spi_async.c - ifdef USE_CLUSTER APP_CFLAGS += -DCLUSTER -DNUM_CLUSTER=$(USE_CLUSTER) ifdef NUM_CORES @@ -9,16 +12,60 @@ else APP_CFLAGS += -DNUM_CORES=1 endif endif - -APP_CFLAGS += -Os -g +APP_CFLAGS += -Os -g -DUSE_PULPOS_TEST APP_LDFLAGS += -Os -g +CONFIG_SPIM = 1 +include $(RULES_DIR)/pmsis_rules.mk +endif -#APP_CFLAGS += -DUSE_PULPOS_TEST -#USE_FREERTOS_TEST=1 -APP_CFLAGS += -DUSE_FREERTOS_TEST -USE_FREERTOS_TEST=1 +ifdef USE_FREERTOS_TEST +APP = test_spi_async +APP_SRCS += test_spi_async.c +# indicate this repository's root folder +PROJ_ROOT = $(shell git rev-parse --show-toplevel) -CONFIG_SPIM = 1 +# good defaults for many environment variables +include $(PROJ_ROOT)/rtos/freertos/default_flags.mk -include $(RULES_DIR)/pmsis_rules.mk +# manually set CFLAGS to disable some warnings (-Wconversion) +CFLAGS += \ + -march=rv32imac -mabi=ilp32 -msmall-data-limit=8 -mno-save-restore \ + -fsigned-char -ffunction-sections -fdata-sections \ + -std=gnu11 \ + -Wall -Wextra -Wshadow -Wformat=2 -Wundef \ + -Wno-unused-parameter -Wno-unused-variable \ + -Os -g3 \ + -DFEATURE_CLUSTER=0 -D__PULP__=1 -DASYNC=0 \ + -DSPIM_ITF=0 -DSPIM_CS=1 -DUSE_FREERTOS_TEST + +# CFLAGS += -fstack-usage -Wstack-usage=1024 +# CFLAGS += -DTRACE_SPI -DPI_LOG_LOCAL_LEVEL=5 -DDEBUG + +# testbench configuration for spim_verif dpi +DPI_CONFIG=$(dir $(realpath $(firstword $(MAKEFILE_LIST))))rtl_config.json + +# disable cluster +CONFIG_CLUSTER=n + +# rtos, pulp and pmsis ources +include $(PROJ_ROOT)/rtos/freertos/default_srcs.mk + +# application name +PROG = test_flash_async + +# application/user specific code +#USER_SRCS += test_flash_async.c +USER_SRCS = $(APP_SRCS) + +# FreeRTOS.h +CPPFLAGS += $(addprefix -I$(USER_DIR)/, ".") + +CPPFLAGS += -DportasmHANDLE_INTERRUPT=vSystemIrqHandler + +# Uncomment to disable Additional reigsters (HW Loops) +#CPPFLAGS += -DportasmSKIP_ADDITIONAL_REGISTERS + +# compile, simulation and analysis targets +include $(PROJ_ROOT)/rtos/freertos/default_targets.mk +endif diff --git a/tests/spim_flash_async/drivers/abstraction_layer_spi.o b/tests/spim_flash_async/drivers/abstraction_layer_spi.o new file mode 100644 index 0000000000000000000000000000000000000000..a3df2269fd5a6170d53da6668b67b61f4112a03a GIT binary patch literal 305928 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 JtCy~{`#%=L<%s|Q literal 0 HcmV?d00001 diff --git a/tests/spim_flash_async/drivers/device.o b/tests/spim_flash_async/drivers/device.o new file mode 100644 index 0000000000000000000000000000000000000000..d96d544849bb20dc7615a5a636222a7440400bde GIT binary patch literal 84532 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�xaVHr!0~?6s?884i_En*IiwI4B5;<+)l6(DW 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 I9C5z?1Ma~`tN;K2 literal 0 HcmV?d00001 diff --git a/tests/spim_flash_async/drivers/fc_event.o b/tests/spim_flash_async/drivers/fc_event.o new file mode 100644 index 0000000000000000000000000000000000000000..81e950293212b5d7fa76a85ccc25302f9eb0470c GIT binary patch literal 94036 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%0Aw+Yfq`=>A|3bo;2k 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 literal 0 HcmV?d00001 diff --git a/tests/spim_flash_async/drivers/gpio.o b/tests/spim_flash_async/drivers/gpio.o new file mode 100644 index 0000000000000000000000000000000000000000..cb8747cc057b4c881ee8f1eb7ab16d56414fd3b5 GIT binary patch literal 96784 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 a+V8ebvX=G7zFEF*a^FxmKlcZ+y8i zNLk9J$kMV22ns4Hil71_vTrWDfa1a{yy7bgi2CvhxT5^N=bY!c_qj8ZwxI9(`TfB_ z?|Js+Jm;L}obx>Q=B#*gLm&{a^e@NH} zUxhCKyikQN0=!s-KL+@56}|-U6DoWu;AJX&Ip7s4yc=+j3SS9$l?q=Cc#R5Q3;0PD zz7Ftu6}|!RQ!0ET;7uz0X~55@@Xdg?sPJb2Kc~W<2fS53jY%DWflGv;ICEq6~I?j_%*=asPOB6 zzg6Mi0sdZv{~PcP75*QdiU*1=Rb1JPA>N}Qc!L+%FW2XIRDoGiNQfCdKm}C(d|fC-v~wyGLJH(X}hMtFh;ApSR9D=%Fn=J#SlQcHOzQ zsJ=FE&dxym#Rn!icQ2iO$nFdB3l4RTz7i!bc-xx(Q1YRN8s|TD&d%xINqz^Rr(S&E zr^nUKIQ#gbN0*)VLd%86EqVCZ2hVG9~Ky?J`5?0^SHF3T^o?oQ-1*0ze?@&Tu`6C1 zm~C6u7R$B>7nDZ$*wgZt@6tSr9?g4v*?CJI4s<<}c%j9<)d?0`w*>93r54R&_l8|o zap0EVOo!%nOYmlEmQ8b;>AW#*=9bwO%@DI2|4}gc#PmlBFt_66`GMV-GtbO^3p4xU zyEhZew?f6Cw}PLokLH}$we`Qe`j78?Eq{*%4DkH@^E}&~qn zigum-I?dBtLw~Gz<~OY3&|?l7r5lE5^bV2OaCA$BO4T zD5WXEZj4(OHTJyx%E5Q%gL}@;w#gpC&p8Jzqu)?5^ ztMUU6ozpY=6P6A)Bj@I+z~*E1*4icdsshd7|m71C6la^nu}+A!8-eu;*xM6c-i%hFFw%Kb~?lpO|^O*i2nrN=QcPNt;Ng>@~w;Ws;{I)`4(R1C)ldrG8 z{_zb>XU^X6Wa9OLrvGtAy&Ef3u^q9sT?FB0@%zM1((ffCejE2gdd-};A7Jo56aM{z> z{1BrGo!ba1x@sxo72IImb@hd@`L$O*LVPzTKKJzl9&3J#_-tf)s7!PBhWPSFes}kb zSM*4K#$0`%LS1qV-z#5UTQrVXK4UT-Fx-USoz~$Ij{O6J@UV=FK_5M_-(FxT-URA z7l$W>&R$=W2Kii5=Mz1HqmXrFj1IKPRcEaVgRGTOSaXcVI5KzHGAjz^HvCYR2x0~q6qvp#~bLrSJp>NtoDggnv)?dgmQ zPCsDx>>H4jA2Me<<(>l%f_7JsAELobjZPgyY!ZU%8Q^e`pEf^3{B-!4$IpD}ck1DG zH7avoQ;(c;3Br@9ou;XGPoIX=!tUWM*3^3sSV}`G?CZ6rerxhe2u|lEntEU1YGllk z$hQms2z{qgBKIG-2svvd^1y+QpiaF+9-Ks|ic91njxJ4Xsom0Fz=+K%T8 zZlPpq-*l=aNdQBdUdMg?X4=ffO6y$N>@=oEAfl!pLdU`VmnW87cf2B6FnJ zXyNUM%$LY^9#0q}Ii1IIHikMSbO5zOa}6WFbDak55oybiO`S;EZ;`}^nZ_Y5f{9UO zDo6t`3J#$IU%>i_=cApERm( z2|y=NQ#V0h72vt)0rU+mlSsQoNCRGh9lDO zjAHw@Xh046zy(w9K+B91-=H~VLUG8sIdD6haA*Yt1Q`T^phu#lne=!9oiY7Q(<7KU zcj~J-M<4_`-(Fd89QF^Mmc6Qw2uwxFI3jFfM>!&^WS4W~0I5@PFp-xa$*yDxDgwu@ znn4RTN6ALJrr<`mqcxLhv=$M+eK>~$(%KP)#0f!(9BGc=s5w-fgeHxbxofSxwxF*7 z&1@RmY}s`OQdkW>#u8tRx1J+vyzxalP)v=tfqPKnZRCguNc&jsP6VXAZt~s0p{%{# z%;PPSA+}6D3#~;Z(#kni5@{=>m9LRVJLeoJkq(X=Wz8hXLWAKIBe_B=#p`&fPPMI> zHzG{`+)|&#{O1t*>^B!uK?fqsvgUHiQTC*lD4>3U>wj5jS%*-}KFVH27^I(0Xr^2< z;Y1p0vk8b7^dW4GTEhf^Fci& zzf*~e|6=4W`l}o9*IH-WN9|9og$Z66HO4J=@CB;Xs}f7rtALF9G!-lMP3+ddj9XF3 zozr4HC!VP{uO+@|eK8Q+=aej~cyh4}jh^o4$M}8rBrhR zo{_+bfwD;8B>VD{@*;tg1JTmUQ6#W7vy*;1_}PD|lPEd~j)$p_)m|UI$q(4U=c$jJ zYr2fqG|*#Nhtbf>NNP?A(FVDk;`V$yk0AX5*FQH!Gsk>;nV(zc+eiLZiYfM)Z@2mr z7TAZ7D5Re-*aEwZB%qm)@bl9`kNAb$mk2*m6-iiXvx-Xze)?Ys`iDFTQ;th3x#|Bb zlO~ti2mcoJR$NYr3!j(0gc`BzRkr;xAfV(el~@9sjelW!E(+u%*Lwpq)}xX;g#9De zhxd^M zC|B|&l~{3b38l-=IWkyMtm2jBt`vms(jF{1M#W3kc^PE&TEC50*5PQAgh8|ACM7xP zgy1-31Pj&*>-`0Vd2QUlvFMOfD8PuK27xHArnPWPA(HyDUk?UGs?M+~C(s07D9a{#MKEI%EkHxU(pLlz^Y58g z1e++AezIEEdaES~PX}3*pc1k~*9Vu;@(oO<<&!ec2i<+OoC=;hBct$jT)2kv==TFe z=k;0kt-%?ZQWva5+vF+@JlOpuG~!mrPQtT~Ve2RK!^vEICTWD^mvA zCanvW^lLI0_cD0Rr=#0Cv`H(6)#kJXNZZJ1CyIjNB@g+MnE=9z6(vx>a_9L?loX^X zn!gzdQ9r4iLqtZ4SA36J2%3ofi(v3|6khQ-68TZ`LzTVgC0))P{6Ba^C!iG`joKtg zDhR7yV6tizs;}WbE(k^_5;y@n3YmF_bLttv=`SG=Ai_ODr5s6Z=?L!|7%)cpQMK?# zacpC7N`NLI1vdtdB;86PCj=K#6H@CWAt{NRtmsRcXh#zy@}yRKaE;eQd+;Q$i4Ilk zXzqAk5Q0^Hf$K?h3boG*9!1sZrxQ-l8<-I80*`QY!oiv%MV(s^T+9iQeQ0L+g_#NA z%!Eam2}K@5Nuw)+o{s3#zv98*NwYxe?^XYbpwfHX(B6;!)f5bVi-z~U^)ICwxmwXG zpL*9EwBJ+HEEBbA=c#j+kjSqB28j@Z2u1uVz(nei$gct${Uq{Az?E%65w8STCRF-AppRL>;IlNmEc#eM z`gzGdbn^+QVs(()}_V%*@cPFBF;QAX~5_vYTN{a+p zkLNO1>_=Y0yxzX;mi=Qdf%mmi+1CQ)TE;#Wm_t++ApKQD-D80Ul2sxTp9qM@myOmZ zRbxl-K<^1m2~2|~E4A(k9ODVddjcm>qiea=y{eYT^e?OaNW4hRF9%{&QwrZMg{AYa zO6QjJ_c`=O3b@qzoUn_IFsn!txBB|~bYS{RgvJ})nx77cEEaA|ncTQ}o@I%mnhGq{ zimITxTeXU|Bw1@j2hi;0x1QDbTa!xv zEBLwjSj4}pG!}v_A_S>0&cuFT7XMZ7M^yahX7P=_;-4~$|2i1Lj7q*_7EhbSxxc$1 z-bkb0K?-*0^6Srnp9h{8#7>qm2(o^XfvheUSwC6E>qN6p(8GQzj{yAw*N3qE3(lT8 z%#YKjj?_3*`3b!m694x(+RdWkZa0GCXIvZ~OI_K|vL8CInj)_i(wt6&$#)|8u3(ST zY~Bo<90{BffI5{z_!OKDa>ctcW>&LM5BaVV|B&yh@(=m0I{%RGIzi93X-bkMzCB}!zsgH2R{dU=7#>UC67R`a z;(3eo67MPY4|z|ef5>}k{X^b!vL3Q5@m1y$Up>JRUmLt6{2rG0y5N0Oe1Dht`rzwS zd>?F1RQ;Zo_+n#;FLv>Du`3zZu@mj$YOVCGW0`(&t=3Fr2|w;GAu}d! zyYIT)?R2}7=FV}O;|-m>dy0$4GM0ETq@GaKn7hQyC~euNv#>r(8XP}ZOLiU~`R6b` zR(>HDh1ds-p>0O9E!@mN71a!!pknoOq7^t%VuO6R3ooEF&}TG25?aR9w}iY3^y99l zB7y~iWIDmJS}D0;_bi)~nl_27V&;&XPt3AuXONsvEH`p?&a!EXk(`}Ur=1%}9zw-z zG9D#2S>e?SpvO~R=oHdxgZpm3wX5<_;%l@OAbJ!Xq+~l_FEa!H)KWDkL zJ0(QtzC2E+XqHW`QOPe_>9szob(T%uGR~RQ8Z~kfvutu=N=}03COS^Q3c$vfU*LLj zZ>>ykAGMGi)dFMzPfIPjLyGCH~b&y7jZ;F3J4pRb}h z1x{$-GB3LmlK8J&M?j-*KEFQj^Jw8cPN%{*onOD-*)RtL9-l)?X;YKO4X3wQfyWJ+ z3OqE+CXe`W+q?U%z(dRdQtF{2JPOFGnq_Z5DW-tDsuf094vwaTPC<4TlUUx$S@tfs z@XF<0;gx2S;aN7huBFNFDz8-dXzrM1JCNfV=B-@_|-pWW$^bHTgj(XTFDhU(_d^=@E~eFyI7^KwX$H2 zB36ZOq~-RBG|K5G&=3PBpFjh|)M$89$%7JHT~d76Lk~U^xUn&#?VB)!6KM$3PoQDC zrLW=AmVd-6gHP-a#`1<^T@HhziVv**sPUmpm$skpy8Z%v~8cW-brTSyM<|&j=itw|36ebv&v= z94U^x#7w#!G!OM@YHq@O)u1Gx!3DkqR5{d4Abc%c5Qxs~2z1TfP`J@qUr2Ke7a|JR zMx_VOhS=JJNF`WEebWQ*?5JlUOi_ZyI!8w=LVQ{4s zj?U!pGVTnChoP(`WtaQ0;lsrW>K9urP~yYDD*tqFx@0zzn0X{)GK!9@a+)U1x5B7X zxE?sEG$z0aReAzcym|q;_OJjYPI9lTn@dBgDa2F{%%hTPd<%v?4_^rak_DsH1)@>v z2(uI%oaPEy)=_2^sc^KJeQ#B!3*2%skG;LX@_>)A`^D|(<$dF&i!ajAQ zj!l^16*y4`spg4BO*bQ8ZPaBn40sz1RXfS3=I%~G>vA{j)pPd~s&}$c&&>!}n{;sv z16EItpqJ#%-k5KWT%8oOqHf1QtK0}z7~x7ITxEo-jqqwWtlKs)lM4YsYkaycs$tNo z$OXt6Y->DhwBypNFI^8d*97)!G&xt!rP-i$2JAxl`MLM~0L**7PNr5oG4XzKbV~ut)sN9kSSM2lr?@m=<`@8Y;N$$euNHR8Y1Jjuk%(2nC{p3L8WG#z}g9cr@Y?doq4=oRO{=?Hf zA+FO6)|q2X`iGMB#X*qitXUR3|b$B%_=`5 z*-Oe@-%a%jy6a;MW5N|MMm=E}ujzf0AvNOBr&rU(oR?&b)72adt;`sik(#r*+mg-= zTG>1LWNSx=cl3#w;xnA&5FA9K}01vh{v6zZq^_|FUg&Y!3dcv<08|a;Wgr} z6BI$6iWgUNEscpPQ}x(Cjn&gq1C~pQwsmH}oxeZ*%v|Yugyv8jYzXBZ-x``gMovaF z5B0)EMcuYRLPlFgs#nmJPPSF>t}$LW-7A{P5e(4?+-hC{cVWFGSA^wAGFAAT^1xkV zud+)QUXnXPowVQkS&o|7+ODy>x&xn5Yv9_Kt_zzKr_=UJ+0CVT8}cs4xQw+nMx{G_ z-vjZ9DR%*E>mwg>X~55=Mg`rup`=aButp(W&tw>L0)F20cr<8vwuwmxL2HdW*r4T= zx2+vH8QJXD8_OB)u@BT+H>~rG70KW$S8f*Fj4<*_1p#WVfmCVE}!q>q=0bb zOYu5$C5JKg1E~C@cMh?sSW(Wh?huS>d!LL+Ek;R$yp3RvKE0$Y5}u%GUBi?(IxPp) z=S(u@=?1+vawO%#r>@{1XO4Z;omq~t>|+)=Y8XjIP!GmfI4{W^fT;!OY?Gz@lHT(x z>as@b*pk{@Qq=jmL`=}~e3H5x*xqwy8f>rg%`xe;e-)d%3uIfkXsBDatzj>s6OEA> zGbi@+>|kBiwkCPnT?o9o(8Z3y7rL~eTj->ah1-_7>i9GMZ;Bg3&Ml4hqkxNOY9W^q zH-TqC&(PSvsRhrU<`r-?UV{^;tmhijWrNm-4SP5Thr3A`EA4qwbW?^vdru^U!q=Ge z=0&`g-Q5_4_n3vfh%W3W3*UN}g!F$?+}FM7e$w3=Nc(^s7%3l+gV2Vb91J?~NM`~; zVTfn1tii`_FlVm2rPBa%arxe=+twN5uB^`803=Q*N5?sma@XG{OF7tN+B}~IYpq6H zcSL$))ncDIoAUC`dgp=rZ~v$}6))p`RGOlCDn9SQhj7_Qx20jeH9=>Sttic;dKqlyHCY;cO zQrG!>rsWZeuDy@O4f?aK4|^n%n_6>ee#Qo_`^>?zylQ+$ZKvEi(`6NWUsc?FR5#}J za$e3}a*f}sb79UpdmWivxYONhm;)tVFME8wyns4EuIGvo-O2~>0}OnCfe$e70S5jT zF%S~zn@?TXmTk|R=J2aB_N=KoaIk|b!pNOI+hOCOK>}Mh@{)j zJYRtW=d1LY3shj%q4uPO&SY-(fXOOxYN1)n!PP?COm^^QF8V$=tP0It((1y%8biyd5$MLQg~R~#U4j=xm2M9m;?vD8zw%a^G1sY{)u+>AXf zqVlGfI=Fd`p)FbF@M|M#L`DPl&jW`!xWkA-vzHs`A^WAkicsFmxbdk+7IMlsV$Yhc z+CM0y@t^15n+0fN&PtUvH{aot0(QLc0&R|J zY2NgZJ%5spRH*Xv11jaT@9Li0UG#C{__PjgN)yY|F+ix|uVNcVO0L@iHFm#z*q=7=Fh2*~HIv{N$HK zxvfWJJAa;!zMU5sa0cs-qQW?=6XcyMMbBf9ccH{ClGw!(`=8l>)96aHD|R1w0_&y9{_tojmxLxS_mXOMAZ&@K*u<5b!at4jT*(zoe1J2+Cuv zCT|6`mA8_f!BzC<9P(J3&Wmz-IX#^Uepd2R&|1ym)%>jC=Nf(<&d(S>kL70vKiS*n zY~}E2{2b>eeQ*XHC?qNk>uO2-jDRl-xQjvFJp#Td;9ddWVi3G9z~le6Bt9%a7M9Ug zz&$LN!7o{6PeVC%`q?4sxb(IkpiLL9F7GqxdO{vW>$Z=f0iK3Aj(d zzca{tivc$)Yr0oMxnqyV)_H%sgm0bdbtyMV6>kfn2E=^R-) z=TXUfOu*v;o)hpR0Y4U?==>Fly(-|30u*cgSz_l4!(1TXLIGC^xLUw90zN0;^8#)a zaF>9)1>7UxaRE;Vcv`?u1iUEVKLz}kfL{xEUBDj&>=f~`OTfnkTq58a0oMw+MZjkT z+#%pj0rY1fupAFF;N?9}npZL<=lm~{B1+zfU~oPziI)iYgn&y0TqfXh0aq}{6UmhK zoW$slUEoKy&wL6v*}TPq#SuPX!Q$+X7&)3-6S7>(;aYyy@w1ViBF7C*bws8&bMA5c z6yYNzo#d1*e)7#)hmY?ZzJ%cL0iq*ficejf9xmC-&onV-+&vPzQh*Y`Ir;rMDdOMSZj!`L3-F7C&q|__g`bz$tpdIv;EMuo z6QBfsP8sqwDe`pz-w+^MgLAjUl$cTSMYaY!iMV6Y9 zbC}aba*DJRdFWS5lps`6&M)4SK+7q~)N))e7*vu>iLg5)@lF9b#f@LisD)G7iDIO; zr25+eaw;i`yA(euqu^Yj#TNwpUcg%d-WKqVfOBNUE);N)fXf7^MO6yLrzBD74nLIG za{_)QK+GNI=MsBOz;6V+CE#Lg^4LQ@F5nXaE){UOfa?U@B;d0GZWVBwfUgL6R=|%0 zJTKry0lyIND*>+w_?>{a1iUTaj{^QA;Lidsad@1c5O9-#&k6W~fG-KSU4Z;i4CfmX zyGOvi0`3>^pn!)3JTBln0=~k@as%RkFa(l+N?KsCh35*b9qt z6T%C!f#)egSCpy*hY}8=Rr6pDGzKFU%tA`xyh)rV#>fl~OX-;$mTAo4@LYaMeNz$~ z!RagyxWzEXm+({UDn^SKFkC{+57rJjE`5oa!Xr~=%3^Lqv`En(vm_JOui$c({H)=p z$R*Jdn>nSOpGkfm&(BT#%+}~c=7?6NbTFl7DPg08hSGGDZllx~W%Ybrm|w|<`z5B7 z48J}hhN1Jc6nTyTPfBQ~mmwc#G+~rp^{mP_Yee`RJPf25Hoqr&) z9}4)ffS(BXseqpe_)h_%{~0SIY$D7!pE0z6pTam{4j1v$q!OVZp%r1jWn4z+#$4xY zW-^)G-0*9;g*tu;6|mF9XNt9OuBZTQ95xxzq>J^OyMdn@`6(t^n#0+YVwzvs>VweE z>0DPR$fO;=DxsJ>r=F)cUy+v*06A?cMP66QvRy0SlL8dY`H4-*kDH~4a-QtJ!K8@P z?`GMX2BT~vC6o5UMB0C4Q>2UYxJ=~<0e(5B>?S`qD5>W+pZ3Ng%5L&oNPliPHD%09`iJ7!*C z(nXvn>?xw1cP%bqGO$@rm{tUG8P_*=K@rQyf+uxko2Q+%1erBk>C+4{OUyosN^{LB_{|HkREC2r&J06$GZCn9c?)3@_e z#N7@K%Puck%$b~W7C)8fJCCVWyOaEes}gUYkRtxQ^m$2Ce5kgn7bGz!SH8q~Obj!5 z0CV^$>>(r}q-H9NvLDHUR&e==meNo@9dmCwhHI_mrz~zghh=d^PmyJ1Vs&J3MQ34l zak7_H_M?-yoo;^i@Y7tx&787@pIiCa$4^<%K@OXXD4LEe;uzJV_Q+oG(iU|;aAZ1-;mxrO@$r~|eK zCH9bjhXp($Kso%Mk=U~Wly!NZ!;L*4;J*d@UBEvCyemMy9`2l-#}&>IaISz|0?rq3 zfq)AITqHogb?$sjVjmZ9iGWWCxKzMp0xlPDg@D}x_6WFAz*PdS7I2M#YXy8#z;yzy z7jTn+TLpYoz=HxF5%3)bOfCg9(>x&>UQJG|;rSoQPvKbMRS~|oGO=>O_qSh|yHvKK zE4%0l?tG%XVG|_D9$Mj{FJ>$gwp=2&?2llxrJjd~6ugd&Z7Ew-9NRgxR3BC?=!6T_Weafl# zvj#}i>9)T!=h-)j+w2gm;^A9zH%nF zDI0v7lfg~0Ivcoc#=JpQ%HgWEDW9*7O9?N0i0ksYaH`Ufm5Jl`(x|=h zt1?j4zVhTMM~AY4)N$%xrKI=+9CaPzGa|Fqp`|*lRM$$B>iL)y`JMo!UjA5OKNIi^ z0lyLO2LXQ-pbmpBws~$>2vBEw*Guds0qR=GtrELUz*hx)UBEp8?i28!fJX&9Dd778 zo)MtVl71>Nb(Zv!#9kKgs({}Lcte0XS^BfY-Vv}=$LKsGU&RA(*m9o@E-zxA>b_m=j3zK=L$Gaz%BtF6L75n`UAs2@@EBnLBJOUd`ZA< z0=_KZD*|p8@KphK2)I+g*93fBz&8ZkCE#uW_Xzl=fO`deOTc{s9u)A9fQJP)tn9}{Rz1al2c50e%hsR0>6;dpa+ZHt2K6lgVvRV;!~8u-d`^HmMak(D zzJDrV(0M?>wbMBENddb(gSD2^>-ZVtX9GVQ`8koYraUX(l!?oY3w_9br-*}}%1ZK| ziL{(Q@`5@KPU2>-WwnwqwUiSg{1oL$wq~U*e_DEYSHJ@zNtKvX!srU&=kE)6N?7UF z())L%+vf$mEZ_|W+`HIdbGUc0gXVE~K0ien4s*DepG)|eJ?3ScE^1#ThY#ncsB}ki zcr8Ec`Ps-%v4%xO5&LZ;r;AeiAr6Z|BC3)otfGK^lygNDIajDbc|AWSG5=|fUqA7C zJ=J0=rDcy)SGtSxor#;wQFe`58+Dqa3~O~%bEi}n9fff$cn$M-7xA-*pMud64lm~C zMA$Xe<_az;INm!qWv{?dT=!^xioqhQ5$6<>?z=ceT%x9`D278WJt>oe=E^YLTc@L_ zZQTgI3p^@HGR}GI2 zj;z`|oKAC~cernRdUyo)`Fr}udeheXXkrw9C^0>{s(ZL+>-(v$M(}>Bs-9_*-UPM| zZcDG))ZO1bGQ4W#aNkJJ_7%~xmF25ASW&)WY~a*^!P5s;r29APN~^YY_iXJO!0g{o z<&hmD@2ld(mHPWOt=iJllXJ*4mz8CD2Jo(*5tPh0*lL=*X&(p}uXY&A{x| zRQJe^fu2<>|B3#G28TzxH}$7iHO6AAIuf0+6_D8@gFUJA*vhR$&V7S`*r@u-dsg;< zCN3^{iCVT z9Yg66q+!=fjg0o<^$=kf6^93MuyU~ z&fKy;IyAa|byhmHz5gik?A5Hl2a20a6x26L(l~<8?}UZUu} zfxc1D1of>-Lck3Z;XzT{HZ+zxeYkrF$WaCKj4(LGD5%xnH$uolXe7ODXe;3h;nT*_ zW3>1PGR;y8zz_Z$BLcu;Z+g=h%?&}z30QJchc7e)oS+>*rGVq);p>(Z2C}4k!%b*T6S8oR z{U6d!&>j8fywU&67=6h0#{aXR!nI7y%zDiq^Hd}5vfFBXoP1ptwWTAs%w*MWK*4-_JN2i=9l|#n6k$bZ*i1#v zA-dh58l3JZq0IyD}2n!vqL<}fc;^HCH7<$XY_+0IA0YH*k^EVp)7!) z*d+xil;bI@Rg#H&XO&I~*kh`9UJSQIC%eu8d1|CUEY|^kT|(r58kJ7>azzF$Qe?U~ z2f0c^i!$cr$uHfe6V~)QPce?0Gf&S+rzk={Ff-kmm6Z~-3wTNedG@%T+awOSOr~3P z7U|l09&V0V_H?dYmt(ZTe#jB5xV0DP6tJkQo6Dj|$*1=0Uy9(#w=WW@F+&xFFlOWZBK%yOS_i)}xVF%Ui2Pzc@Jqe>CSeOFaQ@?CE7 z`$)wsGg#+WEG>E5CV@MJnX@u;GiBTyMJzz1&@P6|lE5jkS-ODTnC+yZqTCX}y2lhQ z+mxtsyb7vgURNa!(NEThb)$ORj#}jsua1z0OJKT{|1a5Kxt_8bKR}QA2+FAHklb})4`t>P?&XvlF(w%{-!90B1*9DOMy9x!w&Hn zOG;$z^O>xuMFE(!ShrEof@4v}# zQ>|oecg{>b^a%}(pLmv_Hx?dLc3&4bUSHF6%bMItV`5q69HjWYFhf&Q?Ym5+Yf8Gx zJt)r>fizXM77!$6kLERR=GmE77(-p8hpLHXu0pC-tLN$sUn#GdaSW6-0yRWe<=c*)84@Tv<%z>nZfA z*Lk{kfqI(W81|Je`!SiQFR;-Snq)7bF~U>>h5tjO%p_-?eGXe&p*&Lk(o{kXDQkB_ zP22vY%tsr?7`NbGGl8eSAw|l96(JEntgP zgO*qpIn#A#GjlSu{XZ;0RWq8<^hBrVX0dQ0X<iw>{NNMpgR@WS6rra7tdB@ zT|08B*U5#lnpr!q+Agx!$&fyp9W)YcX;v?htCzUxGC)^5anofC+36nr-=*n)7Oe%S z7z4hGNi#IbIn@5H_#~8CD15MmN~)RX=7VRr0ae5u?J^HJGG45J3{ZKB9Np?fagf&! zjg_L|*xwcoCH8w%gs`T)Yy#Qo?SrJP34zSfgV3XK3Byrqg>HGA=93sk6E@E#ySGd8 zyq(nO?RP>}X!I&Qd-0U2aqNYsL3lDncgshL4DCv3OQSS7FwMg8dHnWnU-?j)@UtK%lsfi8C?Z{u2lGq0C;)l|9L?iOHvN%G6!^ zO%E1`{aG$W_Xc6meEXNoo`PJ3Vn+I>WOG4Z=gAno%^1SYoQ|u*XboTRo=rbr_UOmt z1H~d(XrX|h>}%Qe_hi)<#GoeQJp?^H&#py9c9`bb$8fN~ndBu(nwqGYgPM;rH_FgL z1vU#QxUvqBR%Dk$oW&f`CDV8IF#kPkm|Sqbr+HUa{an+$kwuR%$S-){nEoW&OSUD| zn5vtHx&GQe*SH|fK2pt}w`;#J#NJ&@s)njwqeb;T@)dSoz z=Gb`r_Cvyq|4aU|r-YJ1_9uA(K%=kflxuX#ZzLt(zCFhx**}mag7=13KbwJH%w#}f z0710&RcVB{!s0E-*NqZi+M>T14ESd*ggjKgM3&rmLgd__nA(0>akPEAPWb_+I7OOq z^buQ;=khh$%3#^{jzn)u?S^nFg%ARf-cqZpzNI!5YwL)oIyR&_YwPPfQXTQmc*pVa z`czq}rM7cjI8rvgd2_mqex=sd?tUCU_l>42$}MWIqFkD*D5us&$5XxCqurD<-k$7` zECeFsrF6!Q`xD^^+K;y;R~$|EG>}kg)yM0)8dGfz4W02Mb%uVT(%I;6cTf7bu6P$l z7mvjg$H!9*9c?YCL}y2;p*GPRua69kA4g}}rD3bHEtcwBpNb!k)}!IdHC8Is(44HU z+>mOj?Mxllm53)(t+lPGR5)rG4Y$YR>x@>YQd?~@wZ5&RK81hr4pc~~P;(-gY>ubm zt@R0N2t8n;H4U|$NlXx>C{zR3ne0fkHYOT2(!Aw9fi=|IfQi!;fmFPsqqQv+PbOO8 z^=)0ra5P$trV?$brm!5#TXGR3(Hd*+s*k5?+uNHHvD##!tu<92Z%DLaZP4-YKtLmc z4PC7<%Igf5S-7M^_g3hJh1~J6V$G?RSQCazYa6cZh&3ftLVQD#6RkwYajAwFFqZ@Z z%foevWTaeC24gb?8i}=U1cij7l^7||T2Y>=Pc#BG)zm?KyrpYHD&8f8#EXz*+5z6e zk#N~~MP<0uYUxbYCc8RQ8#+@hBd3NV6MxaQj$TjTNfWh7*?e=Q6P%Yywx#N7W9xW*+Y>2FAQek?G^Zdv7$bGHUG*JA zD4=6-L@G718DeH|I5Jckjzn;Gsx%To7y<}a;kJx~mxO^-V4yU-=%{d6sgLmW3YCSU zN}ho5Nt`5F!G?+CMyyKIM5p4EBsitY!swC^ps7Sldvm-cjIL`^qv2lM#Ty>naRdv= z>PqwuUaqbrQ9&Y1mW5ZSvpvxQri=9T(#XA}L_H^gcQ}o>yEWdNYORyXovG%w#`4ne zVUjHkig-n9psX0kVqGek3XkFL*p`8GZ@7POU<)v{wR?LSH^c_E&_4`~cmdM8KGD#S zO>8VfrSZm&wyt(w0N}jSmC=#$I9-fu93C7ST0S;jhs#>Y!Orw3D3FBIs4EdV!DHb4 zaJ0)Jb|O{<m1s@5d=XhuQMQ^mrm?jv)|^;}rSD2K zCs8B@shA`#Y{y)HU5Kc<+Rk{G5#1%yuf3&9Asy1TGYNt3tvWWjRBB8X4%hd_M`_VE z7>h>eOs&TXbfl6S+v6Yy6h_j}FyQ9?zEjhY&D-d1~L9vt4*J&NiGOWjmzd015qn{`2;#_mNN;oH4Bll3tsO3=LQobi_S>ImXanuGrcc+x4%ACBM{Q!efC)z%T2dos@=;0RbEiI;7I6?w-@e`i9d`8+yiY9d&y;qH0kt2u{?I zuFg2rC{o6N8d5ey`jGAzYiLZ>*8+dEtzqMY78j-EsIPZQkMTKePbJK}lRb)_;6=|5$o?y0(XINbYqbqKaxC@;3>3 z;f{2xviqo}C8FA=NNZPfGjCWE?@mm4U4G2~Ye8zW|A(gJ7W5X9exS55(ilB)!kXk5 zAr5Q=b@8}VeOpT{$+2e0z8ESTuXT}Flvdsqcpw6BN?U`7IVI1U*0;x_;YhR+Yk|>$ zGGn5rdJ!RfP(-}8g_y1Z;!o*WO2HmajI=;`=-!g98-p1ztTgS0=4Q>jqO!Yc3$HoG z3|SWG9UQ|I@zU~@<>ggnt1D`%Y5>a1q7^k2WoydHE6P_#S65V&SC&|+zKJ}NN{{263+5K4W6etg1B0Wu$s3Vk zUMXfZi1*`bQ{dN5D2k;dnn?MsjfwVMPKzaCnHXAxax&f`k{Hsc83LOWF>nq3^WtH! z_&8-Sdw?E$2k|9GV1Qaks9ncblrbo3pRowymEkA^sYgwKixgT`y*%epu9rA7ufk7DAk&U{!IYw&CPTOyC1yMGU;{K;2x(;lL{>x1Cu@MZ#5)ANeLawO!(-`4dK}w- zD#fp(^bJ4^K?56&aPsmnaH-AimiCV0#U79P?Qzaf7I|lDT?5l$87aguxL=@N)k5`z z+oO1#@X)7iW=2G`S}=j3w?H>eChDPgx2}_Zpc^!xD{lx5oud6$bXon3fArDa&z6bo zR~gE(%7f-SUW$olEAV3AG{R%j+8C~=G8B~@rZ;P0;Rwku5^Z8kS#=wsg|h!Aobtk2 zVAm%)+iQ~$Tkx4cW`lFE7ek0E!ccA4nuJb6G~asG$$Y%NTFBtrj@e>Y*CLEyk`oy_l^`uk8)`T3|$RTbUTggL_s%u^+8oojJu(bv@4UP@;lAR!)6-8F2jN8I4uD;RD z;%n@r{hVBfP>9wOcXh-YA=80lGSR`Yd)sc3*ltKPipvKYlCt8+0A{P4BkUa@h;&on2XZ+aSs^&nNm$oZcm)X+wIR_;YhRlP;W}am z+V$YV^f`15)vQ9;L$6J2fah>j>6E^@t4vpvDdAeTP`d09# zr`y5EX*(SzU@o0+Xgg6vym&V{xNXx2eD@fO_hCST@J!OZA;}t&|bXFp!vgD}nMX94BXn}gwk+hO6?aXm-Wx}TdtpzVT_J^~*Eh>j~aM&AkWB|bhnx(C5Q19lE zLFf|WooT#BxD_v|Hl{~o5Kg1e9duGDhQuyWWg?BN@5ZZp16xQt=kzAL#tn%<4i{LR zZap48nQM_1%r%D612^x=it6%cSw*z6A{s3(TT@Y0R$Y$&R<8ynSCmIrSCv8jR-dh*Mi3`avGDyT$qcyU-|&?cH{ z#m3N#qXj>?N{jiMOAS?4?nZ*O+~1+O&ymZx|a;o|^6L z@O^GekK(n}Qjt||rj}hpMj5QVPeWz*@M`#nwb@T(M^?W+9ZIwUe+ismk+T@P7`u3h zu~V#>5Fz

6G%%deTWVW7B05A)btpUJ@RFHFO-R{E?*fXZXN8O9ryCs|7+=xuiPM zBV*g>j0P3~%o%pQlP&}jD=)*5qwCh?-4V;Pq6(!zGyr3BCt_;0T4J^28;nE6qjNpd z@8!o@e)hp9(LETX_IMoOhNJKjk3hU)oT4I$TOdP$g`PILZJ3+{@K51fi%)=(c(Z&s z1_{5ZyXRC*X)yc9>i72445xO~=S%^j#mfY{kWPHDjll8UlxS>XJ`_a3!O%MlHAGHh zd7;1t2?+KiR2C8Oz$X!cI!**}!YuA;Pj)I@CP%s@dJyfyrtQG)EKl^1y+xu2QYRMa zDGm1^t~PO;jqqVGY_TNy##mblth9tIvS<%3vrr#e0+F+jotDg~Ww zu#nYhasWxX)CRE;fHg#*ufT|i;LMCm>su!ic@vd-DrZr(ow(ybIP7W=1(lBwd$#qa zM$)HYfMkTl+dC6rAI!$*c`mE0tS+lu0}pgX6fWknn#$GX)fE*L)zO-0H5||7=@sx- zXve5w;JCXcTN?Cv3E1U$;(HwWK-oN9wmki=5xyk%1jE((_Ig|)yQ@(T^tpExa^I&C z;DtehDWJ}#;KJ+fr8_$rJ{5d&D2;E73@9CsL=JqgFo}RoSI;5p@$nTO2WnS_%W%Tf z+Qo5LSc?Jonut-&qy=)$kdVN_=eQW5Zy+)4h-9Jz@@OjFmJF9ysL#vb(;1i|`5ky0 z@Vn77O)FB$Gu`Ogq=GXPn^Fw2v^53wGa0L+JvvrLb=cH`kxFrGMYZ5cO6xu?sBJh7 z8PL{~dtB-Fbynak8(-uYNcHxObfY{L3sD_Yyp!|HA6~3dPeWii4P6L20!caV5HC@W zOH55|ZR_uo+U)!OU`7F9C*^t79 zL-!=)>p-c^az80s2tY2w8_|X@)?y=v54 zLhmEy*$CgdNXoq@Y<)iAl*8k%Hc2?RM2q9i4Jb)qLnay_tpr;jRKx!A6n&}7b*qoy z`VH`+eX=lf@ChBZaboZb5gkK$TBDDODNPTTT(0dc?GTk^P{=E~%Lo&LKF2q>yJtjP zVl+8;!Emm$PIDm+5u!E5)YK`C!D(t*I3Y^awss~+){6sB>mQ0hSXuLA0ucw@$&Bim+*TbHe=#;!{yv92vr>XOJ+|zMN5kn0d$+*&R!fNB=C_I<0j<%f? zGwmzDjT2Ul*2^^w+U%feLO+A)O6NcIbRK7oj->DbG_mIC-coW90(@Z9mEtUm|3AA2 zh0BnwNw79)5hJ6J;3O!N?j@K0^c}x&Zu%};!TlEBKz1JK9&!nF&^tjV zmyO(MQfO%HY9U)2PWYDO@vu->LeN;M%)63$JX&+sHjW;UhGZ1~aRQS++sv#@5(g%mOf=d;QBZ z5jJ=CkEF2!dHa%FScIpUZuZIsMV=Q>0vny)jUJl6fm@zE6c$%s%jto_xfO2hbhWp) zb-;+BRb+P;^`Jbuow#rj!)Y+CEveJL-oEV+9i#}LOSx~$*9u8(=<;8ul0#ZQm&tY{ zR6*zHddHyK3}W}27ZFHiB?nyx08VL zN(XLg&6uxYjS8KkG)secdyGUuWmK&@T8qb$SZ-EIM8%KelpL3gn&a_yzVhdaifoOP zb{{53x{km{>g*nfjB9s5aaQhuZ7ftJFP=V76-1s`2eGoJ+yY zhI4WLI2#>K5guVw(miByfO^J$mP->Z^PccF@|TZ|EDzU^QM44Giy1q-VH3;zpqAV`w^PYpHqhmw}vEt%!{G$u;zy;PFd_Y>nv0a@@e%dwz5u`Q^w*7e(-dP)~Am z&I|23;S4oKsY&gef$F*cKa(?}C=xy+C78x3Fa!y8XvR^*7cWOmw?<1BHW#A?$Bh~s zry9BmkY|`0K%Fzn&YU1bBUf11d%^77@R`)SS|wULrSE8To{@n?6bEG!Z{%|LWtea% z#pk%VUIWphPiRT6up01gMHk)Vlw%B#pli_3Rymvf<+dH{l=aEZ2`Vt851W7tokb`dR zlvn56SR3!WhU|2B6)VUSD}F~vt5gh^I7d!pEdfNqSG1voWvO9Z*qX@yPmUi_30i79 z*15;&;_uOyD6v0?Ye5dpmw3J)zD`NS;sd>OREsuQ8xvJb-pAksMg6Q_@y3PASVqar z^CeZBjVOLc1G+$JblXsGAKb{R5GWEQ3Hu=1OL$QY(mki1F_8iyH-lov%^=cdVRO)% z5E1(7?sDD?A{;Ko?n1ZakA03YHK?asX^c47asm4|ugtHr1UtNThRQs=y zLYpu-S3qHr2D+}Yd^_k0m#L@+P9R-~eHGM|nv2;3BydoZ~G++%2YCJ?i~4@teYugWFVI`dW<@W-Ryg5003x z08k=L%)Om2hFUGI8sN^Uz8e&^+>4H^J=1-2eWigc0O*`zFu+?_UPa_I0_6lAKu{j2 zZaJQ$LaM~>)7=at4pDLC1ZB?#C~?rR`(W#53H(O$B~h|yaQsNejBxWJ(2RF~sL?DN zT%FPD?M;;bHA?x{H`-lYT)l9F;fx#azrw`NKI^3SLuftaP*^!DF*gda2554UI_3=@ zhEqSfF{clJ>AswHi1;o#Rjyov1B|Nb%Bq^mXnAFIRb^##HR3g^*Ob>(*OZq>ap?&c z>&q)~(`g)ykY})ob}~{03~z@fb0dl9Tp8cl{%PiUupqy9#`4TV9d59Xq_??O%G7-? zyw%e}H{u$TO;`-v<$>6t*WsXtlg!4@;9gJyl1C_#3Htx2B~+_@m3X@ z_y%**n{UD!MPtnF+GSD;WQzX$}YjI41Hio|m`0>dRe6=z+K&#-Wr z%e#68$*wLK_^)W=S^%bvTN-#zaja)FOokIKH!zlDC7O@Njb#YlvT!+UE>b@I_w^yx zdYO{E!zYf?orr7}X>G%y9z+yea@+?NvkRBGcqid4M+zAx8-e3Z zgZ+3j-t|1Y=ZD_gwYkcHr@W?EXUUjT4E_QC6&OnSCuT%1lZpUlzlppzguMta%dwVA zS{*2XM4d+nECN9X#sQ4$)sS~o%AtPymYEKS>1<6dCqTTk*W>atzl0x7d0{YsavIB3 zP$v86%GGODSL5x0iprYm@``BH>av<>WmWm=O56vnz|GLgimKJ=!*DLFBqYB=t<59t za)rguZbZ!flUv0d+1Ibz%gOj zTjfPO^}5hzT$mzZ%!g@s1r&~2T*{-DLE)y9t(R_BEf2%pl7_aTFG(fW^9{^$+`x2S z&B%N$1B)?8=+96+_*fX2qfaG}>@c=DdF{e?KZTWeI5zloU%WOS#}Nu#e(rwaXFAzq z{H#Z+EBRsBl}XM>+#lTSTpiDjNw@nh{DcH7irS0#};LYsxDst8wO9 zRbEq5wWcOY<2Q@+3-f#vf~#P+0>klU zB?w~oI)8wm=>)KPvajbX~MhOLdY z+DnjYg|>8W!(aKKBRGUiIZj;Wz9Nk60F%RI1z`hM6IDmd?6&2H&w)i6BAo-{o?a_` z0b(y_$<_OJmh7!yjPFjUn~cQp`aZks>4F=~e>WC4a^aq%8zOQ|wuao|LOT<^80YaD zX)icuU@eBAHj9;2Oq@t(N&M0)zk>`^=~v1Tq%$%70TwbX=mP|L(^^f(tKzbv3kT)6 z7tRhe&!NSi9PmouHrv4RFuzNMmf0{7l9LZF5Xtd2-vVC8_czGBhFi{Zy`NrdyvHk;Jt(+2O9+G5d<>c(SXuEI(TXdf8}eGMsM7f#H)t%nIPbXSJVH( zihAjrmJ?r=(QmGFu&J~>$2;J3O_<)9pfx89;YDmll)98HS9#T&8Ex%?Vfp+IS;Q{6 zLs7>TrQYB~2(pLdEZaiZr@ig`bX+Y>4GwT=!{$cWTm}V>*XWBa%)7BRycA+mn$Q|L zaRnVFAt;v3%{|r;G-DK6J5nlTv}O%-$I3NT&>f*u!s0Hgsajoy6T0f^a!B&kW##F^ z`2CFP%5n3n26Qhl;`{gjbb30$@qMU(_AXx``6vOz%kpqKG0-!d-Uh;vPZL1om=enP zGzLi&QmoJz_87VW#%;>C5d4G4{I0@#7}VZAn}9BxYOy1e^-J&K;hs%LExaN6<^}Cs zuhKsiRK{D4~`v2*s4rxbnT2IWVzVd=kz^Jdn z@O9#xUxGmyGUDY6F#LiJ6l5swxF!XC!PHiOzA~7q_=*_bgykDzt~QEmV)SxseY1WS zxel*yHsT$C1ZW1=|8V()m2tlGPJ1tVW#G0OHEE@Gpcg0|-m!O@S&l#B*glM#mxE&? zLSy_bf`0)i!F89jX|{18GuWo_WC9zQuxYZ`Lhar@zNp}%Y&bJ(=^(JPt*avzCk>vz zyT-T3>eKz*JGvmJ`&qHlAAcCZRoIE{YAaJtim-DP2Az3dn~)9-8W#Z6B@}tTDx9G* zhr9bv@7^(jo7?pE6*dBXm3TW1ubZe3MzQO~jp-LQGn^7+ ztoof2|D@ZEoDzmEFG2-f@C6$6Z3ws?=_F(XESY^HD@q=5wWWENq*8cs7PPj3?Wh08 z+qnStdDV6QNy~M>GA<%={ZnA1Ti4~*Hr*J~q{*7CNlKGmHketOrfpc8bV=H^6cAKk zAP6D?DuN;cA_BszTtpoxI6x7(_#!H=%0=KsRJ{ADyr1vycg}Op|NQ@L+6{=Z{=d(8 z?$0^D`z6Jjxmin=zL=y6ACsqckIC2QV6(cw^7d2 zoa5H^2n&Ict#I^4tc4bThESSgB3OweB}?^M9vtA5NMJZ0}!Z(D%(?0PU(X><#oarYkV7RnfrNUL-= zN;Qm*yXf1LfgXk3R0$|6_|U-omeu^sh0Toad5EAX{-(iNfNC_P$O$D|k1M$rdLaW} zvB|wHPKc8tM_`6kyP*i!QKxEo(oAi%N`+bnG|8nLW_3nbD56|Y;)X2;ekfp6pNyd4 zBEq3vTv-Bv9o3kWDXBpiD!)n}-0JVw3H`nGY=AHgg;Y`m~9%G4?;(YUHZs6MU*rMh1cfn6HIj zKoE-O*OP*@ct{m3Edj}XnkZ+*Ya3RyMtR{k4)30@x|bM>Pp!;hy;>y0C)l04&NTcz za+3M08!~A%E}K?7g6au4Tz~xP22!gg>^xh$uhzbeC)t6EhZa3BlSTBPz3=_LZ zOsiedwUB{T2NNx47$*(IlHDL<;|*?0nj3o0Ko?mMa&?y%dC4!6V7kT~=>-}>st{2}r0rm7I_4rmw`uXhVkFim@! zNDxC|&fLAbdbS-dgYx=wKZRGexSH@bz6?||Ir3ukn)&f)61~8@Py_P4d2~9piJ-gq zw`9u51wzjmLmupJCa6Y+qE#-qnu6^=vQsnlWlR+YUC%f|gS;4!C~)M_W*y=7Gt$rM zQ*?R-nW3by5{*@9+L*ABZLIB0@e)?u245GVN-Z>c9$hXv`j%X9w9y#)r3gMN(Hw=w zsB)Xia4tJ4^>FiaB#&W<6)RIt4#lfSR3VBlk%}epsAnsjt<{n$o2)b!ldd88(+m6jFpsj8=EfX1Z+)5cTJlNjL+b;#!PyE^mRajp(A_a(>0PV*88@Pwkk%GCeunGq8Dc&vc(wS&NHEQF>6H z+%IIICm5Sf82e3rQCHMpz+6evSW=B6;%PMf1oc0y>gX(v|7tci8T{RkeZD13+8mnY z#I+lh@MMwktanfOnA$xFzkwSL?}3ooG079ztuGcnyl?gItvEjUSWAJ zMfhBqY!s#X`1&)~w~6I$PORl}iRV~qw&CKPxwqhB)&dPA`E5@E62B!lkT*&A7UEkl@6Y&8n=WrA{Z{(xn!XM1j!rgp{*6G z>V`(6m{#dDq&$WyKZt~?@6+xfEcVC^h{3eKGIU~TiHR&jf3SN{EkwO7ntd>3kBild zRPwR0*5=d6PV1{VRApCgo)*Dbim{iOc^fQ&nXH(JStdU=PH|!r4`s?_=4V5EE$$$9 zjyYM{HF`cV(ru!TLj0d`st_RUfAvbN1KD~To{t$MH zu%EI6lMrc#YLgLf6D955ap!Yi_QkcP_Dm`SLQ8PpZrX5=q5xw-v7%VYd6e5y^|G_M z0JkY=l9RC>cI?9v9C&Sr2k=kw%z@kP$vI zIx-P2g;~gKXb1pSE3J9eSN<<&eH1E^EDG?wfN9l zGxV}h=B{tHKi}OrKWniNMAPP16JIoXX8wFG*NfKd?5(XO7);gfIZWpc!VN7ovJjd<`l?W#tq$CUt&kKycXGulc-G=yQ~I)uY^%4!RVD~;6_}&b6sh8FgY#9C#i=CSIK>dX)d zYi@&SN8FHV!dSUo77*FY7%b;<6Gl;GVAn3ajPd~`ATyD= zvBqon5M!ka&73%T7b_HHC5j-N2uzB1&BPMpBOxfj%Tb4z0LfCWNz?>JUzwG-xj(Yy z2J2cabeuNjK3j`ql4w6k+OL(DK=yNSv5Q~irYMW!Oe!y7Q9!EYeN^UxI;caNm7#JJ znW9OUT*p~%YpmlAlx~bFjmn`juUCDhCv;O_kpEk^bp1LQhFvU`88pd7XgB|y9hQBnHGXI zE#Cpqvsuhe^$p@oM@8FpF5SKN{B-vah|f3VDj^%C_PV!zLFe!azz!uu>Y%P@yH#<1 z)s~XIZJR31G%{M|5fC+LE2x*h@1=iDKeq7Eha@wT&RiC!D^1_=cvHVH6~YaY>@XY1M{Lk#F);a&HDIaU|aG z1zH`n``JtmQ4(!eREakzpO5}Fn}0V1&Y^%R?ryjpVN6B*1;gd3=9P5nBtfvpRjB+g`^ePXk@Y$$!9GIYL)~O6aD)en@Ex&s=#Bw zWUJYJ1BC^N2MgA3g>rOUb#Dl^f$&sJzkUl(Il$LT|To zycIPvBQTBNwXpB{#8l&4pt}LKFEgUlS8*VNIJ$kq zv&;d?Zjf3W-oEkD#&dK6+u9U7E*mig)l@THJIGQzy|A))N+q8F1(EKhKjC-9teaD7a6S16s zjJu9~*u4Ibra@CJ6!}Ap`qTOh^Fh}v!HCNnT=`ZZjQLrWR;M__>@B>~?yK1uC2fFq zd-U6Dc`(U^=t;GeDVEO8%t5V7SxZg}uBTryrQTuE>4X%3oH_(UdESIla&Kw%vWNl8 zxXSd&7!^t@5xEtn33KC4ty-vmhO&lIeOm-^;T*F%lsKqWUteZjQ(l5kE*MhjXNLZ2 z);!&*7bG>|EC|hJhw$Q@A`7y0UAa6~+F)`_LzGdC`L81V6Vq3JD{b6(suB zd@Lz!G#IfW#Hb`YN7x-IsxZdd&b@1w#Z&Z<^Ah+BUn#jyyf~e1%6t-aIa{S;CMgD& zkLpgyB>nPD^$xk6rAxki z9E$53_FQ2*#mf&8i$A-vbaZ<5Fqv*M6cen4_ZTpdHy4dgP8?G>+qte@o|*4Mln|{* zM~&p$M#XU=gN2zI-56@VAT?5+`T;j{WmDB`vErK?XrfKYTZeYm#tMtnE1hmM5VMDL z+ngs}w9t&xA{;%D!Bk#gU?@kNXEj6O32%;dH+)>jafjB==!5e+_6=uD-S zn4>B!mZld%vS^^DSkwS$8kD>*+#dQwW|$I6HmMjx<5dM!$|#ncP~Bs`kfgNGBMvL< zsSV2;)Ew%Jm@e+*xKtbXyog3(4`L^nC*3%V*$;2O`I1k`Y|9G7C%IEyYuSb3qQxmf zK!6Upg1r|H9fB8fMyeVeBL)D~iA2$r#fA3VOp+3l)ZDf9mVLT-pMtLg*UHHaD`c@AT*L*^#jh)#ymFFhH!C*2ao zNeL?WI-P&1I;3z4OeS_qp_3l>^ZWuYH|*V1Vo1^y^@VuXX=e<{=i0lcd2jT$bM4)m z?VY!*Sc3n-S5N6uJ?ZjIyC|t_nQn1pquC{peESDrIw~f#+95qHhpc*)-j+jp&v6x8 zQ!C9k<~55}JEZBxysXh`hcw-oS3Ww&A&5EI+kzO%yA$odMxFB>x$csPB(S^DkBe7} zNJ*zn>ADw|TagP6-kUTgJgCuJi<}g@himE^jrQA;@J1J8)e%MvQ(62N!C}kQy~E{l zMNn?#JF3GzMUysFKig_1Jqi7VZQq1HtuJM5MHzCym~BY$9W`%92q}YLSh*V*iIpqW z%}0B_vB+?GlX!WnljA$7>?`qC?7=hrQkFDpoa%e9EEhiOfH?Q^8b?VDZWQT+WZL?i zd&brNssZcE1znfnj4y_mX5Z3A-flfC>fq_4P42-;i208ADTpeqgHKSEd;y0PkA(tJ zn9-912o@UODt;nf2%-r7Bis^^2up)d-Dzsp98peC?bH6dW z>DrBz!YX160#>JED?`dc*+$-nJc z?Gfr&Q6vqkPL3-v;)d)%zs8*t*d1^ITHiFSJc-1_TTdaPtD=8wWy1p_ELdoeT|Rw8 zOSTMSv1J{TPkowI8=F}y2VEUVHo4DbdddJ{JVAet=9x(=Tp`(mtUpZGC+2W*N$woo zC8?7J%1*SzyqRb+2no}*u*J)QP zX-j0jmxi{c;WzhpmEuOyv(>pIJam{c+gQ{>)09xS)yo)|EJZCOsmc5&N>?c&IGJY5 zMyYiqBTDqU)C7>1TdUX%_k_Yc*rxIdDTKh@j^gaJ zaxCD^enj_3EPU3w(#FSB^`kMcwOT$(td0sDECv25c`8m*ttWb0YCW;qVyPYX)X0P5 z+5~H+o)2}>LGu>9g2J*rG87(Mvi>OUf13-|ClJe)P292l)J{~hH+%$g-l^rRd)QDr zm*x%=+9_vhtdx)(cx^m&OSt6JHl@{DheP3-rOZi}IT)m?GAGSjXTn16rbJkv{7fA= zSsStxN@%qcJU^+e&2n;dY?tc!?tUtZZdpxTtf0DCR-n(C@cNRukI)F0@eQOo^o5Bj zx=_hl$-*We7JItFd|cOUYCPSVbs{BLrpt@yJZe47cu)obULA6WDY9SM=m&RJ2Ub&418l0=(Vok#)!Q}F{ z&3iSsROnqG4wjBcn7{0HoG#C2)xjQq!Jxr9j-twj_JBSs ztzk8U>XOyr1(KuyNw&7l)3k}UIs%urtt3F5J~G?prqR6D^OUe8ew92)gS-I*;Ua2B zF=vu;RJhY*L6PA+!eETmrrryh^4+IKs8EOqWqCb$m9OAr9v;VV-~}FI6^!*w2$PNZlhYiddkTom7@Uic+jZAp?bo z!A&X%czk90@QIlv+Br=hAY5Idv^jk1#;)ZKyy&Qxruflx?O@tb$y*7k&;eIm<;(=6 ztRg_lDgvaeqPi4588rlO&|raYH_n>oOA>raMEEXEw!9d!J6aBC5@g&Z%67q68y1z% z_0%sa+f1;)wKi!@q+|JZ*IiT8FoJB_^q?3;cT=N5hFz*hk(N%09Sh>&sg)O%T4^;W zNX6%lFCOw7I za})`@3OllMn!G`JiUyNpGgh)vdefz<%Q9d%PY=M#LcK5}h)MA=freT^u^$58)H)6! zU`1H9>) z&K9E<7zO@PNdc-77IlvOp+7lMIo9z{G1Te?+c3lr+fXeW@ObrQO9u1w7Ai=(Acg)T zLx!@o+DlSOexb42Cqhzb>qQtm>0w z(?Zg&lwhA>x_VQQaFlwPv&>G+OWRLB@4?ZS7{HQM#&VjQb+?9KnwA4W6jic;$<>xY zY~^C@w6emTPu#G(T79O(&T}o4#8MB3rgn$U>*6w9Rt`H(Hdpy<4-Hna?w{$-qGa~; zXU$*?u1Vtorud|{n0wT0p-pYORwAK#sfhh6ZYyK`)H4jM*{jbWWDkYHGi`mDA^=p3>%2M?QDn4PnRk~2r=35ht33r=adOAB1s z{c{AEXloqT4W;rhW znaPxwhHGLaz3!sC8ef?xw^oEbRqdZl#>Sn_o12pvoJ2$NCRfl9j}00VZ&yib*S;}2 zhNx3-qrZ-f)C^UPH?G_gFuQl#ZW?xpO!4Nk%q>tbCE)LR~lEPNWv)f9qx9t@3BGi|3 zIvnW=0Y#k0C3yXg8>6KsxEnR)E#Ops#M08eQ#smPo$xLSDs$7KRW-L7J4@X(ZMQ%J z6QrCwdWuN+R9S+E8HZbIa#O(w=5@stm=_PpCbdK+csG#`2<}UV5glStZ#J+akq}5r z>q!j?yC1*&auf;Weky04a%2;z2q_JeDR!>X<`$Hq)rS_rJ4;hoLf}rdMN+<(5n9e9 z>YYr_btaxjaF8)JXJzI^%}h*jxz4y=G@sgf_LKU*jSCB zH}??O=vmn?dlhPT9FKRIB#rRKy6*jkXq8AdgCg^8~e{MaM{V4hgi8W zHfJ3c_*IkUq*Q05S=tt5T+UI+DJ$W0wm96j1d1>U4ANHUtR;)l!jDm>UDs`@g{E}1 zWUjR`CKzj5?YB)~o4rJWYIZ0xD4H!o^xKfh2lvYG#|kM&bP^@& zO6xId`Hc~v(qfF)hQdBi0DL?EYyD;AuoFWwHpR-b>oMmSCovpHu6wzP|56t+$ly+m5%WzF{ZG0 zVkf>gNP2bXHjyUS$Sk$T=I3Y{acE(EgIxUP&Bkx2NwU6c{d)CuVlTp&4jo^_pqVy{ zDMi#of|JaYNIz19%SLdV>FbZpoI*gegjfGp3kVeiom_M_laC}d6q{rpXnA~?U~MbK zRd4U1U!eH`lPS)g^y$`w$72seIaT?EY~FU2*s_eW$giO&11k!QlRTO zsTbzQJ+WMo_%=x}1O{~HZkh}>!%X(CbNZ?}=uGo%0};|>qUSE?INs>89U5T|(MvMm zG3qbQ&YduOzHPC%TIPT+2UovT;uv26Hm{(B<=@OgOq3GJth6bsPsLpK1fV$CoyEu{ z7u-i#3+>=(Iu3=Rk6@E{ukZlhZU%2o>&;I1fkgvbz5?hxq|%F^AM{22K%)Dxc^YW52F1u+SP>7i(1Nf4 zxnmfA3>(y4yBjD53P=J~tsa%=2{svTpChtcmK;$r9X@jE1L&*GTwv0+@{--X=DVSY zc5V_5A*3;gg?f^6E2;~p2zlie7ed%Rm|sNJ75p2C^nNuZY_P^Ai9 zu04@hG)YU*-hoOlGBT)c z8YrLk+TkP9rk*t?PWuZuN4kq9@#IdG%kda3MT|C8j7#;ynBt=6=MJTBoML|38q8yA zOW})a)^SZU>l=@o;Vwpphou2$1@6x3@(A`Wt9i~Ufk2D&p${l6Y6l8aW*rW;YjWh7 z-ILU5Cl?n&Zsk-_z!l6jx^QT*5jO~MDsz5>$XVAY!R6LH*|wr<(7 zwZE6JbXyZxtkQq^wf=r*P)6F0Y}DjjwD_=%NSBERu|4|?>V7f#IrH@mvL z&FcE|R|Bvq+$nPy#eg;-AzfXzS?@u&DEmVs z*-1=<0`6A|wN)IGqHDfd?${i)#R7jpB3nRw9wgk$yQn-DpqGUO)N@!?$ zrh!ayinI^8i2zdx=df*yrfTA-s7f$LmBS0JdOr@Mlr89}EV74n&uz1;sT@oBRGJni zTNkG7=BhSg%*b`Tupmt|OdfUtqozZwhStYLYhn_Ryum`_PE-3J((EjE+$aRdBK;E8xv@+Wp6YV#lV414|;_BkXveti}k|-hUy@x zE#0~h5^i{K`O!l5jo)?@s%!5k2@%$_!dAEz)NgW3kW-!ULgg!cW=qoFK~5C~gZ6-f#8xLj<$uYO-e4k%bgp zriQ+dVQF%o!UQzAc?k1s*pu5GF*8oED0v`$ z@k4^I?czGjR5XQ448#X6J?jqefrS`Ll)5*MG@2Z$Svx?5j_ZB0< zdq4#>%#c$45K#8uEIUp%tMlF zUQQ#fRptGO5i3-?p2f`(3px9Ct{7e+HOW^|Dq}@pj4?kXmCKMf|RLU8<`x0b7usjS#r_j#yT1N6Sag& z@_qK2ca7LvRupFB!zL^YA;>N4IZhnm;)$i%xn&dZ+}4?dgx-z41a|gs?nWHg)J;n< z2<<@smfp>MeSMpI26{HrixDA#N)4DhjV173FEH+$(p)q(r#%1Wjm9ZW3s&UYwDcF_ zG|Vt2nk5BH5A7b}YH;`7ZYDMb{W6KLRzadAj?WpEhKayXvOZpNt0_wgQB!KKmuoeL zQw;Ioo223lDu-4#VyH_tQ2SK!&D>IS!$<_&w|L7ORvb6CQ9W&rssZs(E^D{yD+YyK zR2b1ZX<~zKJ(gh$%1sfO5Q%IZ8Js1jM*iSb$(o9A zL66AB4M9X*e?>8P6$cNAm_ciIr%^1PsR=&Pjm0y1@nkxRzhyIWLz4Jj8`oQkoj^uJ z_K7!TF*a(XCmFz4U`q3L<_HfpW*Kw46SMR^o0v4DEzeAu9-Z8+5Tn|p51HdJhT7GY z$mnniKpe)QMlYd;)t}0;o-0>5O_)d$b+DP_Q7!TTZl^H8{{0l4RDfK*6y%Q^uBD$u zMWgHhRrhyNdIjvABoBudVzo;1BJLse!sXmb9z;?>Y1NGE7el!f7i%t9v630mZ5w4w zR~!fo$^`sSZ%lnQRgyH+Y35MjL)3nPZSt{X#3Nz_vs&G`T(>1lhU&;7Y>Ho5s!$hR z&&A_$wNc`2H$l3m1D>D5=-jjed0btMJ|!kAvongnvqzsvt<3UJTUH3pZp)iJdJ7$T zPflag^LL@>;26-(`7n;=LBlp5tzsARasa*>O^GxhC^D;`#4VjIvzk^|3wn{uo|#g< zV;?-b!-i5vVt6iOF?}-r5K1(##rOm*$c-qbHZCm`v6n?(C%fck@Fwq_5o0AYc{G+x zH<^|nb9$#1mEnuaV%N+P&SkX09$NF%pmzfSxF!t6w+|bJ4P)GFOj2w#g* z#$66AjVEwT2(RU(jk8|F?p0Iewwa}c6b`a%@gT>R4~O6rGKAJ`4B0}BjfWRbY}Ee5 z<855mu!s*uzawVaelyFn^UrKNecd{Wryg#s0y4UMhtkJ*k6MAf>

34<&MrJl!+vX`GvKwy==3_E1RaCy%2tzOt+IJmVTtEk2!Qdv59e>L-4i|HI ztDf&M9-)eaQHlpzipy46*}K-nDt!-D4i-Gz+!OG??TEOTLVQwB(hio`(H+BRL5j8v zej6vs{*`74*QpDHdzw%EZtT&cD&^`f^C5M@(qzkgD#!@YLOcz(Xjow#*0a5#3#ce= z{3{-J5ScG;5G4aAZ%5>mhM@YO&NQM>UWvYso-bfPU55#{kojs8DP*&qJUN5w2d$@iRi^q=7Ea8>T%?4RWKRxo`*ZRi$lgJK=BKrRI75P=6 z@&*@@9FtWg8&NsgHkFIEU58_tczVnkF$0XWszV`4yRDt-5O*>ws`lz`x0gF?H_>aw^TR+bJ)zBxL7%Uo!%xZ%+J((($WNqGJ?cG1wck)Ydjv|6%zcSior zj+WsxEi`j$)WthZ$3Dw#1zuJ}AGDRv^>hw3ku1WOINd-lrHM zdE8sSG|W+v8rJhjAsw7KmMcJd?kr)}BO$Qor~+*$D%V1c!`dgH)Q9l)mNghjAkH`u{!yj{IKdm(U`E3S|?_)21t4v&$}oL(Gyl}QlZ_jDtZ3Q zWe8{VfzXdafqGPMAUlz4AEL|#M=>U=2(x_>F`gJE+?&FLeTnWHqEp~`RjQz}UMf}L z764#mBjR7q($qz-W zVAKUn775mXEZ1IPFBC0MlnyPUCJtrP3UP0A0h99l%G|+d=#tPky_0kccU?9)OK3)e zyp&5WGM*`zbBfAnjrfB(nv7e^X1zs7Kel+XT_JvqC?gGPH@QDDL3P$sDYY29*rmJ< z%333kcG>Us@Q_q?j;IDNrWjN|)wEW&ZM_F4(}z^~nhEnMAuq_euziB4l?{!J8#gNS za3CtC^=~&h&n=kwYC0yjrp2*sCzeEt_>9t@Sw;QCKUHp~(c%>JA~a%aKL6=LyloW& z!qLtBGtQn6km+JS8j9`9x~8?Yx7R(1Mt4=wJqskbfW>aH7(}F?Toc)0PW`$(jy^8y zg6c=yHc1z`X*5okc6QPB7EkqZkBtzuM?8b^Kr8$=JvOl&E0zj8qDxpjlPwBgKRh(% zc}&&h)7p+rt_Qq-d}3B=ixCe40jg-PO|jaQU&~s^wB!%37$wCj!@p+yJ!^pqrH=YH z%!1Ym#VEG}S&0-CM#GQC(xok_$8ObDZf2W&shObHRIkP>+?q>D)_70VafwVKk*lD% zYO{u1=Mjt_ns=Suyo-2GvEUwW0Cq}h|LN*vE!sG>Ym#+Nnh7fm@SzQ!)%Ap2l1U$x z#Gl0j&md4F*idAl&w77)ED}bMr7Re!X==~_x%P+1x$UJ4rYSzix}Bp&Zp)H16XJ;l z_Ba^#o;JC2pGa&SpRy$cs8r&Hwf3VTP-eWfOlvp;DrDEOnP+Suuu?=S=u^|uZF)AZ zhy8^uWZzlS+$Xabbby6E`yO37Rv*%IU*)W34$ljy_l;bCN>j!2>7pXz6XjGeA2hLy z*`p^^ZbTg_nEsa4p42T<1?J7c?ZyhMO!CChA$q0W%m8%+X=i{M<&xB8{Zloec3l(vNl(0Rwcx452# zPS!RpHHnbwM;K*hu?#4eD*P$BO|p;+xOj%Mr5V|7(cFWfs(!s5AT9r!y;h0}K|8YU zISN2FHs9W!ller3)%xq&rNtA+TMRpjgAQ5hG~bw6SSGcSuEU{H3NC`s#vM*0FRS-S z;2XF5mRL~~JsXZ`4Wf-9>~0f=v=hgkr`=&#!7S%|RV|0>WfsC;tch+&s0mZX1T&R8 zXmlaW)r2txU)O}uzecb-xPFi+{nC#nuA}y{RX?kPSux>y7IhD`|1T%t?<|GHxU{0; zEe776u5J})o78wy?v`fT(D}Mb+8mlWN!pFd)+q{-wTmH=2s?BxvU!N0KXR}@Bn4Nx zgntMkkKw61hler!H3tahb2anj$M6{UC$VsC;@Zj!)U>o=ILtNj&HoS#KCwHp@1vOQD~{k`uPKuVxf$07iNq-jm&@%)M?bZWHBuMipc7Y3T8+!HI+uEz4MK7YMw2VuVJ2 z)U&Q5Hua$r^5CcwCi$c)S5X8VlUnG(y**Z2$~!!WDDeeq3I4eC{xK_K@)j7?gqtYP z?)=i!X>lZ5*ZAVf{Grp^77n69ES-+gY&JBt=z|1wSo-&dxouW1bOXH^b_GYh?LoeR z%82?-XN_(na84Ht^$-2j@p>Yh8jP28+8M6vAY9zRx$YqBan2ySl_hGC)}}M%;ky8` z$;A(ri?nfxs@7yar@1@#Zl9dKc6hu;-TXqnQLY=GS1XGZG6|QjTs}TeM*&)m90`2X zsC}ejGCD>MkZrR$a~^|ncP|t%{fUjB3&EZcu^*?+Q^#fXiV#_ z9yl$%$En;M9YXR8Y0km8 zJ#swz-j>Uu5DUD2<+pb!ru_P5#dAT&*scNYNJ2QS;G)U9U(}myHCbVb zX!j)PQ7c-(_C-D=nH`ntk$A{|-GZJq8D z>fPj@F_k^YBv6?<$$G{4Io?1blM~dEV5gKHt)Mv9>@doC#{mnTr$%u1skzOYp*dRK zp}V{0^3nN)Icp@x^IJn+_3=nK#wnJWk327WS36m-fy6@agV2GXe_%-NgX-3@VziFv zKJ}_%K6;Nz9O7(L5kA*QCHK^&o$4Q9Wy^|Ce_TusEtJ={)x=XB07}PO)RaV%w^8iV zgiup+n}zrwn>Lw*^wbk9(J89(Ml*9p{k(=$*A-19(TTTBHzWhmT8!b#NAzy=HY|<1 z8?_FXe|WrRr6SIf;G1C;Vsu8Zw~7o#y)v<^4dRBFMDlOo}m{pe9(uS1{r{|V8 zEG*)L4y@g`H&(7{XrvLEeqPmJpX@z1-%ehMK=0YuuhsikMvfel-h4BjW_~H~I1=)hUVw3%7ey_tz|O%hoNM zw~{W=Kd`yCuV>Si?tz~EO}$(Cd;7NZNrmp)v<1x>ufDDnG_ zq{)gMlDMsmX$IYzDPQ`4bs1`XRSg9h3c;(OfZ*WC0f z5I-|*bRS|t6DX8*mLJ|vwiZ=k$9dJNLJ^u&^_n9?^u%PQWLh;?hqGu2r*M{@jpv(7 zD{F5w9#DavAdsOQ6GUYu6>4OJ%!tgvQo9~9sVldM27MegM*R*#h9gC?uASOpG^FAA zrhI(0Dry_zVzmOoY!`hI5%CHJ5Xd|~9Acn)_DPMmswIjEmXgv`%1YltidEXzmz`D; zF`URMKBLD5@h$IjtJ}G{ARIe@Z}~Rql%(}(W{ct)|8r%%Ac)~*H7T4IVwG1art3oR zY;q82bVnOXtAqu+Q!t0>Cu}%nItv_`|4W-K&O_r~^-7*J-_cAsLB1q&a`6~_0VTB| zg>!x;EZ@vZC6lKYR8qb`TuvVKq*PZu|0Hsh<~Ay*EG{1V(rj_TTH_Ld8C6_2Eky*x zef-VacA}F|moShux^ke%WXHy(nbgSOC?+M4dpUPe-=gO^#W_D{Ful3Yac4$KW;`P zA)CVY2`R1z8pPy;1b{$9aNO0F$y#-7DRLfdd%=u9xo3=zOQRXR1*=`-l@yv6)n*TQ zm-re)R9U&gK3aEK2${P{8@1&&x=oqb%o$87>*(oe#^TtA@ZkLNj2aQb&GV!!_>Q_^ zq)(^I$NM@f@6_G!XT{#20tD+aQDF!Yw@}9)_c-}~r>E;=u;hI<8xKOZB>?Q+Mk)Yz zQ+B#B#VL1Hsc<2p0QI}t_@^cq-JBD{>Dvz3L(Tr7k1s%rAE*b~c%MR?FQGMwk=+tcxk4r})YEqe=JAjoF$>dWD0HF_ zpEgSy+oT-UTdatXeTzxjhm6?_<}tTT@yvsgU8pB7@m6dQhFwpYsMh#rZ1(UtKaRCp zv`Cto9m98ECVQztb}cCf;_M9~uxAe5X1efH+gW3EBGLzn;@h6k*`4gbmOJysX^YaT zs(AfKu~kJQHO05cvjnxrcq+Z*oHQxy6RA-&?pTkDF$psEJOhz z*G=()=1xMamgr-#>x8Xs+0;)%`%T^Su!HdHgD?N!iL`dO`8XZU6+z; zV%#3{6-tgXJ0>S0gEp|~(P0nB(2FEWr?zQ^I0DlTF}oB^Wux0^AS=5-x2HBehcT17 z%BYyJ(EY&}rkJ9~A>`@bOeBbC<}R;&UBRMerp~kOWjIAQ5%5xZzOv@ivFge)-0k+#k9$CX!18U z!qzsdXLKB?@>-sj%85N&tNF#*6}49ghEEPi)-;g>xF+h`BmzRTv9U935aJqaA*tR- zG$vA+SP@?#d+a>I-_Dsg2F-W6$qzS4BGjm?q)Zpl@7NSks?r1 zt<%L~bTDei=$PiOvJ!3H=GQ_@Z!MTa;j6<7a6bR1rAZ@k+S_iBL5`_C$vqIeOhZak zu)V`5EQ#d#VpWZ$n&cU69vP-X4HMVamgZnc`N^LUZ;9JCYR8wee3^bd4HTh=#C-0; zWWIWGnE??ywccDUnoiFgpHIScDM(9NvEylaq;`PAp$-d`5-s3y1q`An<^n1%T@0q^mneL z`;gpjYA)B3-7S+Ku;L@cnR+dSRL?KUGPrHeb`|}triXWqZntu;!D%4t5H^+QJ3tMB z@EwJK)b%r)2%$nh({O54>D$mx4==cuk+md9$Jls%PzX)rg^%prM*zPHA_ZR;9zI!l z_=I&zc3#r%_^e#lBp&G>rIk18EkYbwHw2(#C|NwnAnKxMb(exME!tFuc4D7y<|EO- z7@ZZE7kSN=Q=6=trW=|PB~{5va89azq$P`>VwfzvkFMVR_9&q=iu&yEvMEbEYp?pq z{K12BYVAj(8c)F0Af zbw$S_M@0cju~S3H!z*)^JHcXhDxPm^w0AFZx{%%K0hRWwa#d;C@g0^A(GGoK5xW%k zVC4g~A^AdgV~lC?4K~|v@YQkBP%_6Ut(m^8F>FK#evd!jht%4pEy2uS)CsEi=;jX!3CrE=2f#FyC z97I625HlQnqIyV=@`SN2+<@J61)-#P(s%5me;p?9KpeIV;d&1dFv;*HC0C1o+HG!7 zVJ5{fTdDNWJaP2sjEc|rRS+#(!>1y(nmx97aPH{zvAKgs7jNSWU+Z&f%>GdXIQPoD zG;Nc$fR%o_2g*+>0dy+GTN{0}Wg}lBS<^e{q-Dxq)Sk6Ev`~rvm3!@g2ut*tl;v0k zS(WrG?6DFvMn+ZdBpKhC5=|ZkGsY{0r2RnmsZBHfe|vUTdo1TYPOxqg-ywlnb_OU0 zrYk$cB_SE*p$As?(Au|BVBH~KZFFiw+%MG676(>&Cnm-zCTqj^8b4&43Z`^xX{y?$ zs=sR?B&JXyE4Qo(Z!uu!L=H7&R1IT1tw>sD(cs87g)pQTwGmC3EJKr#C$W3cat_nJ zaR`^2{o`;pt=i+T5#4HxGh4aY6~f(B=EIOI-xB}mkUk1v!BN0+)h}xIJZ#aP$T+WSM?9a z3$!He&}EYH9>g9e87-8A(w9Hs7c<$3nPgQlsT9>*88dBgZJjO@1QzZi(n+!UaVU6vltQW<@dbSeEU1zYu^klgb z)s)DT=HbEqW7cY=19B2loE(rS~ZYoDHBZA2HQ1fLs$yaP_(8g zBQDVi;sF~uP=#~xXzF3A$LYLGZL-o2(Awpp-_Kt$i$3@BL zddxGRGo$bwktK23c{!E0baMY|V_9;2+bl|{<%z9Ra%M8b*j54v9LfY*o0fi!RBd<8IwBor_rB z7UEY{8qY~ZX11ajvx?=p;?HfGA5aApRG01`gZZLT~e8XQ_`?uK%V}zyORdaz1 zXiOyN^7quHS21IgZJMHFdbaj!+GaB;} ztKOoLO&d86nwIV#l2AQULtM~gj52G48>v+wCueRvk`AeS4AUUlNui{!NXl=Dc^5(l zH(B3!EKh)f%mp;h_+Q8b2*|=2t}UpbHB4Fx{%JK&3cs}P1Z3%jh)C7@~ZLH73iXJRmhLqC&sq%$bC_@4Dtu*DQC}Dq$L=& z=nfs`agnF2$1n4Pcj!)q!eOC%hC-Uc+Q)1|AZ}qB&E*?|4ic^VwLmLzWZ5d%5uD>w zRVqGnHJ_^2G@iq9pselgXN5`2e6;}FP_)K`AARjs0X%+_DVox^@z$`}K9t1l#^uKE zz2}yEjyu&gsZCC;IZhR+plIK=(F$sTHnNB#S8D?ecw!c9!;1XXF8Ok(rfy@goVO|+ zWV1@!&thMp`k`0#-x9so=k?J8;q(yU<_xfA>r^C?u^zSrQ9c0k18usg6J$>H>>k9% zBQLH8SB=sv4sEC3kw_@Tmg(vV?aBQWwKDEdW#w8m-f2A9qB8A>ZnFU~LO3VffM=sFq83Fn1`@p_tJvK|bJ{Iaar@G{~}vqf(E z4YZe4NX+it+fW$MB#;`=&BO`Wm8YYaiwAC@W>T@Or>A#k6{>zxi_B|r)$~m*;ZSmW zd+D1MRlH@so##f*9y=H{_tt{Iutmaf)I#0t*m~J;D9R}#3Y*4=J(h2T$+0f&Do=?l zvRo@jKD+U%?T1`KLz{aC^pM!iZcZ$83{R6(T!}B^BiltyQ~SR|=!LumHDiPcLN?6c zQ`3=PueZQ7V>~We4Q(4^F~;iWThVOECsj*KuI}brqNi?YQ-voCO3>n3XHUtDuXQ#U zt&SaEIqh#X>8Gj6LQ+(lOa}#>H6gza|IA-cv+^HxY3i@Y-@{}%)97L0QA&Vlp<|0n zr+3dCCbhAV0|WysKxRVny4`aJSxPD>UTl+DIoO9q!H9aTHz+L^PghV=T+&(*Zk!zMt_Vvymo0%0pFn`Vb(c>6Y&OO%tYzvE5EMt?oLM~bC)0|`F z#KPP)OQ;jH&~9_a=Bpp>Yh0oKO)UHWu)AMFF>9XUitOhh{{mN-WOKzKdCrvjdPS&z z&9R5Pm3to`h4<%(X*ikEo-b&2X^7BnlNRJsbZ_Fq zL1X6Q6T3wERNftC9qPh$5%*1>TmEZ;{rh7;x#>_LJ7wh3RlSpAM4O={@J1b1m_9r!Yq4d<+qo@4s zKF{Bd6}Fq@4^1Wf6tYTX#n2%_yz0>Qi(kAj#S}_^QgSdMvjhK`tIQ0kYOyiPdz~dK#O^ zwb$ZE^HdzZWxu|n+d)EADZ)sDY@+Zv%P6gjNxHX01;pCAT*-HLr-oNPySqMDIYT+6 zXqwqd-49%sQ17DdGv%_(q;if07C2aJbYZey?`96eR#LD#BC#Y$(#UX1xj^kKFRrlY zs&y5bCbyb+$K)=~Y<=Cw#7?_bPHtF1+d8<2^a~)qeB~q&BeQCrr$I!^rqKoA zE0OoQyRU9MyK&nQd=utoaRZaBNsMeRz>Ls6MOnBzZWPt&y59f2%#P;9S;oUy^*lfk zso7kKESE(iO`=ueA~G=QRZXKn?HS&M!Y5}8Yrh}smmU&xLc`+|tmCZ$6tw)j!a6@N z$Fb7*;nmLhfx{0@9l~_zZD68XS#8%>SSHb2K$$JE3=u*1W(9+Aw#67mvRpc2bhBlj z8)ZCdJiZ9yW_laRdz?#;B&R?U0tc7O7_&>|@ykTG$rXHt#|AB3zS)maTk*N?i9O@n zMXM}8e{=|+4^d^jb1Tu)aA#ZCTvrrqCD&%NkE%sYs;zbzU%-mm6fS2I8T6&`(Pp|1 zJh5kUc<`o-4`djX)so(ACiFVjqfGnY-PF+mG*`m3YX?l6SW&n<2J&Nb{ASkF9ViuR z$ec<}ZF4BpEhy2cY<4i!%IW~o%iZjbBIP2)WDyU9YE?#L5ieB7WBI&mId2_VXt}2f z?6jO@{3TOV6Qa3w6pCdjZ+`F!YyE})MA3` z*^LP8jPSi~geSJUt`Tk~qVHgp@Y(M|m2f1MgIaa`J78oZlNC2LHucq&M$Cw*bl!r_%8Dnq?8cgz#y zqEFBYI)uHEbeaxu>ts60af`e}^$5$4ZerHW#Rf2M$PQ;JQ&w=+G)TJBW<_Xg!I`da zwF*@9obHwSC+7#1gQD0;MLUdDs=sl45&e!?;Kb3D>04aj8Xnt20f10kH4n?-;e*ft z>vF1tb7`B}G56QpckFCFDjP6&f*%bNGKtnXm0Rg*D~|aXSzuBXBs_;=PXUS1Hl!8B-w*E(OmfLkV>PkZ!~YD?}N6ovq=X>7l|Wg<~OWi@pD6ALgMjwk5TG{_ia)3n_M zzdh1E&CzC4E4Vr8!i929+JN?pV)QveQM@*T9d4%GJvJw~C0BbSlRWNJ{Zv-rrZ@On zamhuCYv!x)4|6@m$%hF$tqCSe){9#cbYMCTL+G-~Z%DPBeaQ_{w`l2fR%vp*B(bJi zlE`9bS*y)ye^@VJ8)bZ{RX=c3LGUS@OVc5zTV1n?8^EJIE)~%4Eu_F^dM&1gmSZ^6 zv$3V3#8FDE^s(2|NDCpI$Y06O;)#V7s`^8_#%4|#vikY+EAul)4MvYj^ZvCJME8=8 zt!Wq@*?0n@Rwf>`>r4=}s?2;3(RZ7;O*hjXh9|<*{LX0F%lU!W#Yksyc43*-{%#LgxdOaR{bVV^mcPh(hzb4q2du{=vLyx#=Eb!7Z*Qy|tT` zA0Z5NX-;zfTow!(jh@eGPX**BOBb{T$G3rHV&3Xvh-0$j+ zaTZxQ?ER?I%6Vq7a!KwN?P48;16vqISExK~LcH}=pXa;QAr(b5q4S`uI%rpOw4rg( zSb-(ltn!0g1u|Jg-wgv05&VcptWZiBLTD^jD%8S|G#L|CaTTTbK#$&KMLdV&&XMq{ zc^w#jb3yhokE_=$m^A_EG=xW_0TX99KLL*tV*)F*BCV{dVAo65Zkvw#soyLgl{ZOg zs@oL&$b^MWSXqy7!G5dTgdF4rr_KCs0iZ#|x5Uz^zP*SnJXaA`Qw6dx zgm@zHdmD3JdAy89=sH*9@*q{1WdX~QYH>C+>$VR+bq~?WBR8zpRR+4TtZt%hd&^{r zE(n-?CO|Ut2Am=o&$6Fp7|Fw`f&pV^FFvRci8#3pcLFb#30#E?n65Af$%a{<2_n}b z(bQg)uIR-NQdo4Xq#gAB%-3Ra1^m=`Jf#4Zq`7@8e*PDZGwFogLF%SzUtIm(CdJfk@6^QS#> zTS~uw#pTm9|2T$_f(wZ|(|61_`Kcf+=cDf!1#*M-InlEh$g7+Usct&`CD6cJgegYYYelg{?mB=SK>xK$nU|6FB!aj z&5q}F9K7g*gLe*ITn*l@<(&P+G21V`Wc%%Fu6xniSKMRQ^E%f2!bNuuesJWYgP+=d zakb-qgE|d>Q$4;oZigNBypHWJTD#_d*)bf!-;;{{#%;e5PCZ!P)PB2&F0kf0{p9pq z%YT&5c%itw{$9KO4n5!VI@WIJu$%Bl8ob}$i>nXb`B9$rlIL~YzDE1Bysxg}d3eV= zd{-Xn4!iqLZU3mft?H4j`|>?__Feut%JKLPZ}j1oYd2cY$H{JAvu1n!DqD^zuQ7P> zaleO?T!h;!-{)%kZ)mxP?(5>q`l);FuV3eY-h+zkKcv79E%3wcCQk3nufMK1 zU!osAerYkTckh3r@rV7pwz|H0T-c&>tO2KMY2dEm^gaCe?>0`~$FG;ZkK^=x9H;N& zIDMbHhSNLq;~RQ)_UAZ#FURS7T_1O}f7e!HHH}}xmNnpXZtZe@SjYO`So~rCuC2za zU17^r{JRF+eEz$J?@?dHk5AvbJ-(>eKYc&nzr^YL`FM#RUYsvIlkZ>R^!|Ok#A*Hb zc!@U@*AvP0Ki|JQ!tj1K7g+D!|Hk7F`*$s0XD)2fnq31<_pX7vhD~^|^ZN1W{e5R} zT2FqyyNlC$^z+?aocOSxZ#A6Wx$l2>al_ud{^RGnyExGkKi}QOnrr?Sse_}n)$ZyA zVdP8vy9S)zg$BMeIMFLVU!o_D?-lMLUN6xPA5ZkcahmUr6F+dA=D*`KzrHs(%|E|h zi5tc9rtjFi9h-IOZ@cWe5>J`i~UP{q!=&p(PI4gD)>|} z{;XB-bBpmGTLr(k7%%b5i}4b_q8NYGD)_}#^CD$aMI_$|fp7mD9j9ADzZZ+!lh z_(R3> zjGrp-GYg#PzrU{%Kd0FLxvSvYi}CL?eo1luyNiFKIA4hqKl1l;p*Zm`KYlg*n&N&| z!#`W>|Aqp;^?QupUR>`&@jHv--*q?fZx+Xw_`St=iSH=JKXifkBgOs~ia%Byf1&sf zi{n30;7_iCKUIwX=_>dO#rSGC>6^YjzL6bY|K!KoYJVX=+%=r^KR>?2_o*-H;}>PP z{%QAfLvcUf8JzCthWv6o|Bc1Xp*YD)ete_2 z{<;j;Kl!n?dRp_!4&&7Yy#=o=*{(3R~&vz65S8@EBI;hCs$7=Zg#r_wH zA66V+;)fUGC0_1-M{TGOTsM!C&cNiZm z&R61R6yqgcD8@^Cycl09@W}!{GsE@N=EvG8+>tn6VvrC{a9Pg6!&x2@J01m z{rD26>-+d4i~URd_+tD*@ukJ_T?O87fp}xFfA=bQb1}Xe9w_!N@%CbT_bPaQF@9hb zocOnYpTwWr<5R`?eqLk|Fjq{anf&n|L-*ZQg;3NCqLF!vju&*YxrLEN&Wcytb!B$ z@%>AD|Kj)(KcpBh@xzMohZne!;rb^())KAv=zPO@;`ID}e0qMz>HZyGTwlZSgYG6y z&*$eWaichYi4*HYih>HQzB zkJOK~)qHWk-y59fi(jwAX?^&3y8pX|FR7o}k5BW@@k5L85~ua$`>%%6eDwWS!)Xor z{v}>l++XkA#G8xbzti}t;`|qipIjVY;-?hjB_1rsFBFdy$6qMEt~h>Yfp@Qh_ZQ=< z;Twzn4;FYK!}U*otgUV-*8g`0C;H{*PxQ)hTHm+ix5xb*EAH>RgVX)_`AeMmosTDa zx5xd(c!|^c@Z(GTl;Zdu8LofwV{NrqyzlQ0PVd*xpXP(( zG#?i8+vEOjE$;8TgVX)_`AeMUgO8{A;5f~P_BhQ4A5Zhaaheb9ar*u~UgGrqeZ0g^ zso$!Pr}=PeJ)$3LtL5T-e{XP-U;KI{PVdjhFBCtdeo8++>HFUq+$hdp;&sLN;|ttf z;Pid{{t~}-yuH}J#OeF`{=16(OPu(P?|*mk(~Iks_~v4KHGHtx|L)>v6z41P$zr_3 z&n(8DvkLx^V!XsJD8@_tieh{<{F-9_62Gn(FYz0S@e;qa7{9yt?Zx>n6u+xD{zCC@ z7RQ(PBgJ@$KVOVrDE>lme2M=i8?S%zV{LV!px56Se2@Afe!hF%O`Q0ppD)q(_BhdZ zAAeYJ{StQ-<0bAb#!LL9V!XspDaHp2oanFLZ=%2Fhj(Y^tAFxiZFO7q@q7dLvjOX! zc7XH0wbiK{a(tpx8dzJMDaM~&;2$pV^9uZc+Owd6wN+=wqxmBlPb4&*L3(e~F$a z$)oNcN%!OS%SJf53iic~HFkSZI^OLu3-!3``)SNH&@>@<1bieuh z5l(*(?9jbmT5lMwzRK_PKCZ9yE;rZXHKe8U*Rs9dYch-1! zwU!xjdxq}=eqDw&gAQf*LEz72`1_miRP{*kv+D7w>apNgW%yF?%^AMD3Gc1s%N(r7 z_g0(0>HhXsSAi4%+FSh~_`TWw+rb~o@F;kHhUJ_5LWU>7x&KbS%G@7(6FB$Z$rt(Z z`uLlw!{FSXcNCoaJ8uQ&{zL7X`!mmgbN}gc!QJ)wXR7Ce)BVm=F9zS4jlT?>=F3d= zO7O$#@!9HUz#D2jSG^9L*85!bOW^z0|rIXXKA!JA@{5$NYm@ZfM7-wXb& z_38MV!Edh_QfJ3A!27cEt$;`VJ{|uY@Q=Jd;oHH#Q6u^uSoa*Jn&*y8vk+dwb}W8 z8vOZ3rSaE;Z@nlT|101h%;wL#!T zyd&-ZGVp7%`TH~AMz$V)3H+)fY5!jXk7n0<5BS99H2y*GbF=mGaqz|yY5cR`7k+=j z{|Ef2^$C9s+?!qRpTIBLna2Mc{EX`ozV|(=>faukzQ+T>pL|#ve*}2=_Y-~s_~4rp zz7qW27bUzEd?=eQL*NhnQyL!wf9WCVdi%iFi%HvGXU7cq_FBN{?6?K|g$JkOPk{fe zHrRA_{4n_Sk51z+0>9?6biSVg4?HG~|2+8D=MsK1_;>G>_WyP8r)vXCXUA`WU;5{1 z{||#7o88YJgQp*rj{h_8GvAT+|04K*rV{=;@bmAN@V|j?c}v0__o}K74el_@g5(@3Fv*Q=RPuY<0 zuYw=)g0%l{fM1oZ-`@pawV1{~3cm9X6aF;#9WP1vFTtmunDF0%*JbPXAHk2x=I8$d ze>J1e_q;dHm(9OU@S}b_o$m+0Ps_gd4(O3Tiyp*lCwfBJ^X5;q(v+)`5ll~&^4}Amwcs9NQertxG4NiZ{)$_r>la2ob z_>uJv%hjvEjSRmI{HbjJHy8WAquBpF;4f$U-vQpAo$pTY(=+@@@V{sK|5>sBUl;p- z4SYXjIR86SeGB~72=OocC-~9X_}cqcRZoWR58j^P?*r$@KMMTz?0ios#;+*GH-YzM z=X)~vUD@#?;NQ&fIQW)q|9!>&)5ZRW!IHWC?@V>P7(WI6NF3(*p9}uUZ2uR5e>uai z0KYH8KL?f!9nb$puw>?le+`_U|2GQ!+u+Z~-MRjU!4E`+i^qQg{DchuZ}8R({}uR9 zhQ9`WW`@57&d>j!1zvMeu5T_^7l9?y#_K;AoFD&)V*kg1cg5Yg|I5Mm{cPOO*|7MwrKNy+G|ISo1;9q)B#H?SiWX3qY0{;CBKN~EW zDUQDY{PGOH4E)UuzXp7Ncuw5^7r~Po;{xmK_*L+xZ2W(L)8Bmc0q_g6@ehN0>mBB+ zKPvEN!L|6w`}j-n&t=Dd1^m7Y|2_DBXZYWX<11vFM4#uY`+)QFUs8-e4E!(I`5p@% z%%+5Dk?0-wK|1$W>Z2xD0 z4`k>2G4Rn0zXUw|@VKF~<5l4FhkXRRvEDFOy$QVhjkp2*8a$X??|tCY8U7GhJlX%w zR38Ul93k<0p9cR)HvSjjZ)Nz);Cn)I5HgNi$Gu01+m$LB}f`25#F9YZI|7!3Dvhml0AD`hjgDYsD|DCDc z34U~j-v@qDhCc*;R)#+g{z5#Q_x0%l|9OGG2!7_NcmVb+aQeHc`WKBy@VZ2z0Uzmx5Ms2E=WugRY8B)B%GaJ}b%|06s8h2RG==l$T2cUpG~+0jKYK zQ}qkr&&1t1-&??GJ=|2i6P(}gd%=1B%N^jI+5O!KzAnR`1n2hK&w+FM@n3brZzZhC-(UZ~36Fz!eKFzv;C(kId;pyOc2~~;r}w+NS^|q^``?-B znc%l%_(#B>&G3uCKlOn40y;Zh3BI{r6KAT|YJWKy?60%qP2dk?<8KFlIm5pRzJzz` ze`l)S0c%c2{1Na(hCcy5kl{ZCzb@_$CHeyRCE55_z^~8nH^J}9@V^$v{}1>L+4=6( z*?j(s!TI<@!5_}f_h|4Nv*RxXza_&P!GD(Rzq#1|$;JL7;BRF6j~C;6!SBz`|3lz! zXZs%lKbU9ozcbYWSaUAolim`!!H2m=YJ_Ut>4|%PlI2Q?f>)OU&!z;gY`}0 z^?nWf7a9Hy@IPeux51x_yYoGNAN;3Zj~hBWJ^@aDQ`Mh>KVNT{s=fgJzIq?@Uw+?^ z;cxQ$Co}x7{C-qzzc^F<5BQo4-;3YN8NQg`Kb7H!^84Kxel)+okl{=Do#x9_wGsT^ z+4yFDU-H2C0B5QvgCCdS5paI|IQUI*ck12kEyjPS7(WEwoSkn0oaW_!9SMa-vPfm!yf_vYKA`n&d>MR z0{RXqTF-MixP*x&1OYukAB z81Pkb82m)=8#cuaogF>kW7+w)g738JxN!d0Nlv%I&gmcW#E@&=j$!TuPVj|!9SRt z?|Senvg0SgugdV#z?0ej2aElW7W=P&4`us58~mE=e9s4;&c-#j-kXiT3S56a>Y=?3 z{OWA~H-qoU_J0TXtr>n#fqz#xJN{1aof-ZU@ZV3xU;7@1c&jjMUjfdq|Fhud)&g;7#~Z=v?}qAa;Cs{?Zm9kj__f*je;fSDKaM-#-)=g7 zvHD|h%`V7q_}}2)&W`^p@PT+Z^!)4KFJ$BY1pao0{|nrxU+5WI%iA)1F?07=hQA-2 zU;i=S&&Hy_TyH%%{oPvifOpgzZmqV0Uy_|~5d7W@Ul0CrhNr*}`hj?YGu2JtG~aKn z=D zJHTJe`0dBQ>F<{6Q{eP|Z>c^H{=@A2Uj+YXeM0OZ;J?ep|5e97Jf87P^=2TtGjSoI?Cv$Nx0QH=j=fknI0_dQm< z75ujB_;(lMzXi^(|9jwXH{u8G?D!*a`a4{G7M$Mi;p#8Jf1aKHE8zdi@ZW>G9vRPY zruujARE9fP%lD7NA$AOo!^KAgXF2kF^kcjX% zTU`U5cw5By-@)l`x|#r|=bNtffqy+a-_79vli~Sd|69QyzayTpv*Qdn{q3)Q6ns&= zVSn}G;I}?MZs_dzY4A_~Ov0~kI{sGhxx%JBJhgD)|0CnDDp2C$}a1U*J13`gt!V_o+9h@k_vem)WBp4t{gS zA07`ryqxym2>!z36CMEn#M`y`t=e}KE< zFt~y?zacyR-r)CT_+oH+-qGrz;BRK*k1EEW0DjzK;swrB8^GxnMyr1CU^ad=_-Pp) zEcU++{M>B(slu1W^LKVU4SXb%ALqcom976p@RlD-`=16syC>lv1#gcK`QWAC@9RkP z@zvmWUln&Ceg^#4FHQJY!GE?s;okrce=XtP1@Fk>J3k6ef4izb0jKY=tNJtW>$B(m zYjC1(yQ;5&YjS{R_8-B2l^@cOm&wxLZ;a@EF{}pgeo;d#3!T+4?|32`&A6tdLGt~#d zOFt8FXUE6Eugv^?p9Q}l^Vj_!@Y`-q`+p7mH`#psC-BwxO!M=NyXzg6t82iUGdv8&Bo_Xbt1<9~2#FWi z1OA~5-vqun!*k&GXZRSnCeIvy0{o0@T(Z*13_l>w^FcyFGADHJ8Lu&2L*{h5T@tS8$~==~O6JTVc})pP zNHQfPnL{$A3?U?$GG*@nTWjrSKhN2p|M|SV`+WDa_Pn08*52owtB+a(7ZdSKa5LfU za0}sm@KWI;u-pCOcuvAAMEpF=&m;P%EARmkzYXsZegvNq&d589xt&x_nC~w;sVCt& zZuw5C2%IEb3g+|ONmYQeiFg<;EnE$*DqI`p^U+B)g1P>5Qm?~2-s+@U!i~l9X)xEP zPO2MRS;YIniNb^7`obe&ex<1ia9(#tnwk!C`81;4(pQNABsUU)DpKhGTr%irrvfCq^3)8RznIWX7PmTD3FP;7rW z?0#Jt$GZl0hZpcBSbpBU-4ovjXA|2y0?W^rPs034Qs-dKk0kXsywxp`q;9|`gzv$t zgmvduP&hMOOgI-@PWVZf^DRjghB?2IR0+7DC|?flARG^K`(<8Hh81(k1)3%N$McHMZ|xF`IW3r!+G5q$?8vd zo3I|MuM)luXA*u07Z*;Cu_Cv>$toM%TEz3f9fb?RJ%yiv2ML#kX9!n-`S_Am2*xfr zuVhsPPDjM&m-=3zg>XH%x^NSi>ua)V3eOesRxn?WWR(W<^-oq^;l-kSADFLavKk2U z^-5On!COW7G4N*LNie?}s~K=McSd712hJkA5Do}`0dsyfR;%DbBK{4`=c}>W0&{!a zSnY(lJ#DP^!~9B7M`7N6iaG`7cMGJb3oxJW6m=DDE#i0J0m6^rgTk4L$$U&vxnREj zDJnm_R+KLauNN*2bNxtB72)wB9)Y<(O;Oe1i6UMHo+{iJo++FH^Yu$nt>6_R-T~e# z+#TlpNm2db9U?vi=IfE7M#0TQd?L*CGeymS6GeP3Twi!G%>q;r%eb`l+KZU;lpU6wKS}r!K&?+y(lnt8iW6J8)y+$1t}i{ZyuB zj=Q~Hssqg1@1?rK!N1Fl<%hI!n}Xo)MA+TubWx{ z^Zs>HYhm8MZfY~k``1nFfO-GAsr@j&-cmcIqlz*j+(8btk5L zs(K9b@ujLv#ofYq^QOub;|3}p%=ywlJq`2r8mMPsUZjC43-I%a2C5>Q-`zw56@m*2 zSAltb_0&snX*XU^y$tjE>ZwLBudkkZ4d(ULQ*XfhYNA@h>D(Dj)LU>4;qEZ6zlrJx z^Z9F{2En|&ChC2dx7S3CgZcd6`2<`{tbZnq|2eNFY90gg2B_t*JpMH>?_WK&3C>H4 zVR4JH`uYsxn^YJxMVVIAvfvN`c@ikDjVY$9WFdtt7^}45gOOMmwV($5Dpt`|0 zMCa8&_4AY;>?uFeQ+@(0>&tXl)`vN8Sz0|>?nR#R%VFMr6Sc-ueiOXVT|P-|_jn(? zM8uE4TZB)-+l0@Ej|am;M0_MX zOn3r3MtC|bw>Jlt+gk+7?Jf6s4J@~}36|U24$JNB^Y{onRqW46kI%!aMEr`!w_&~> zDe95O8B59YouYEWN5%S{gii?xEy3xqhXn zmashDG>^N%YsK>YJj)M;<@p%t@dTLbYl@l<%k|Cilwag2zZ~ZA7M@?gx7_`~^9zr+ z!}9sYK3G1lIReY)D_rNtmxE zo?m%f3g-5wjjG^@hhe^7XrrpZE5!P1!+Bk&sYV{Z4x`FCuQb&X=2s_`24{0;;Q1w- zOSm7LC_LEXk#HRmp8zKbPluZc&wwQs-e_UoUk9=2ste8_wa*=%XIREZ;|EEF<%&kIL!slQ7r+KB@@J z`_oUAf_Z=XsR}UfPd^og`Srf41qaI09KWv-oWB4&1wJ^8oeFn2!0rh1YovNR#-q(= zIdd0N3BPYrOnj`G8{-eu@)%E08)H04{TSmZ>NmKP_Myvy+hO4IarloXea;H}z6UYo zm#ggfZ1?@ny#9RfbA8$Tw?Xv0FI5G^`Sq2m7UQo~Be>KVD&hB~#KhOA4l!P*`ornO z_bZ3S#J^FK-~$M~WpB)@u1s~1I-WXGUliCaa+MMG@W8&Yb3vg#~{;tCf z>vQ@0G3CEk*|;-8p&wMC7;jhQ;MsKg@%eiwCcabEf^*m6^*4rhEoC>0DZg8Fgm*6F zcyIVQ_Xfc48x&LiM>Rgi`_ydso7%km;+XhPYHf^vRy$&RNF9Y2iti7cj)@;p*JJ#P zQto%x^frH0xnq1>6^rpn6&K^*RgD;*QBC0S(|P}!!%w&aM!&B;Tx}`GyT>g5hZ+KJ zT+Z<^G4b28f$9+BN2)&@oWtuM78CzZO^&h8Hy=Ln2bW(8 z^D|+;Z*@%h^uBE|&geS~cge%cpNffR_Fau}R^MYd=cimgO9hM{ME%bT^DDcrI6Ux4 znuG64!b7I8Bk<6%>>BW_;q3bG_xR7g{JvzoZ>}hT{k~T4sRbPG2%pW&?g78z4iNEs z6L{Qv93KpK#~8uB{Js(J=Jo6k;7`Z1r^4CA_rpJi$GyP&GasHE;_{!tcg6Nszy{f6|+C8-I9pE+FIo=)KA@;vN{NJ}69|EU{`ZEeH zk<9UlaPDF38E`&Pf9AqFOVAGB_oncWZCri@{5w8VwJ%(M_=8*Q&G6!m>>coHv)TLM zXT6BC-N%e{;cSpW*WP z;rH|(=`=6=eOS26L5`P(qq#U<5&lqI-w1ru9dP@7)#11aynG$_h^UW^;m}Zyr@;Cg z+85dbxC*|rLhb->JHhS_Px*-5AAaCx4}pI@!yW}U66a?k{L9N6p8>bc&z=jH6Xh4f z6F=ej3OIXt_FDM#ZuVyQ_iF4NaEX`L`{AP>vX8?0Z-UvE-**arN#xfBc!J26tMJc$ zE`JA3YR`TQ7ZUA9rZ{{b^(T(!(%#I@55K&ET@?0LXP1UU_1G2RKG)b0_|F;a>Tsh} zb{+VtXpbAiqeTCZ0{@Vn%eR8>itF70zK>y#effRe;S1vY^@r!b&ha5|b|017q!8gR;lPdt9dY{)<46Y;oe%f>J_?jFK zz>n&(tH5iYVb_Ao9%na#yAETgz)y?wkqYk@?R!V~Khb{mg8%)8mmdgUPse^A?v$H7 z9$xz;dpdk-2zxG^T!{S{T&oXzC7f>#`y05RXiv7nAGl*~eE$-DGdq_*45$BseG-0U z7yAO7Pp-=gpwQD1AofvUWGJ$Q}Ck0f}x$j3L~T)%Vq_HdkNPrAWV3-SKRfGofz(R-EmJ`z&V{gsXkaeir86d-{Fl z;Cb#J2=V)Za5K?ASB0l`;N@$>$NRDy!y85Urf@y+{G>JfqG(S#!CA!l=?xDR`TH*X z#a3Sb2>3hk{qza&hN&E%0e2VIcOKlQJI9y6g+=~;1y_EGuh#~6^+7KG1KdfB5B9=! zMEh_A?oye{pModjnX!HOeSgAdvaqkir34( zDf?$#Ui7!W!QXY{_#bf9((KFdr=oqh4evS4@yGCIFR(L*F`gIulN(O{h2u}bQ+BY6 z!!w^^KM!YF#16s#o?%ymhfQSHfzOEk{S~;d7(X|I-_672+rZUCd*2zJcc0^Z;Lk++ zKM1ZQ@?j+0s|c5$2v-&7?<4rFQyiZUpRU3F9KJ8=_bPbgCXRm#ZxrprHu&|89N!0j zA^OXs@M1o!Ry-%&lKak zgYc*OIer{Y5ZB`z{KFRzN#iD=j3l~NkV_$yX zVEEh^_9%El8haAlq7Qo}{6uZ`C-6OS|F{&+I-TQR!#TzI*$Dq6`pfOwW4Zi(SdW42 z%kTRIo-DS18g3=7-(T>jBe?tx_{yv72k?)h*%=a0pI>9=gb%f4=Z80m`uYsK<}Z$y zh0o+;$HPZN`&$|A`Xt9|!hIUD8^YfVWxo!8{Rz7j-1ipyE%>H5Up?WmV!Zth93Ic* zhr|Ab><{3_;&`XQll(rXfZsONfoVV>+;V!Tm*lFc8iw z>f`(H6S55xan<@ibX_nYhsaN$DiYw&ks{C5}rT#P4txOR=i`OXIGe?!2&@b?bjj~}xO z!xw&Gmx5AD4-xxY6|UBW%h!hI-D5X~zxkKl6kaF#ht}{-(cgE{@#b8X#^=9e$<+$MeBo#IuXQ4aNAj zG#qw+(C7EP0O!Cq?91;pdDB{Wo!H)Y@R?%V zf9-8+h8=m_m z`ziRB?d;-k330#uJp7c{UI<<`hs#%kA7*FQfqx&yeg)1X+QVk>)gL+D1`ejOJHu7h zvHQTKK41@mABp~KB>ZCn$0x!+iS>U3cNXK}`Eb(*T>f+Tg=y?naOuJ9Z{clXe7X&u z{w>G%!5!aZAB7)0%l;ky8vogs-*-{J7vqV4;H~2L?!%o#dzSu1JdZlX%j>^Avvw}~ zN%)ayZ;Qg)#Pur!KUJRVUmW}@5%=qr;CABqZX%p>D6hW(Jg5pg86H!VR^a!wg#Q%d zfevuVr?`9%xQ(cv1K@+AeSZ&bChFffUA_n}{~`RxCiZMNtH|F)a6sHou7F3Z;_~a@ zem}Ffz)yE$?}qcXV;_WPHf0}&UlrrgbMT*MIerE1`6~Mk+;krMKRBoO_l&aCK>Zij zI}iNX9xh)9{&pw31e~u7pYQVUE1NkUhW|=pSBHQ2hW#>Jya&4peEl=_8?X}nQCoQK ze9SX1{Cg5L@OfptL)4ePaF^Na!EjjQ-za#3$iGSODY3sZ;hpXe#_{)I;M^;f^YZ(a z!u`Hue+^&R$leIA6Za3>;qNPRd_UYzw6DLw-Ja+8X?S;e_FwQTqCVY#_1|E%FMPid zULme$hL4)r^@Mqt$8^X6l z`~5oniugRD75vL(F8>xhXcxODJV1Ot^bWjxEyst$+umn?02esIo(30x#GV5;7vs&v z@F(K)mM`H47r6X-c!Ow_}ho1q*5!Wv(yrdzQ&kMWV9qRkj@Ji9&mxO=b&*dw?+v>9;dU?@az6f{!o8xuiRpNZT z3ZE#(@#gS9CD`rY!{U5(g^SGRct1GHSL`A1Nf93nk9vpWli~1S_Q&vznd}Ad-y;9M zfIC&^_-Z&sT(3>=o_{#L1D?K*{S&;dE&CX}N?eaK+M>O^1Rrk9=aGx6N0&te`>|*d`(H=hsza#2%0DdUOA64LApXKFi!6kCC8^O&xvs2)! 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 G<^Bg{)Bttyk|W8cgqA`{ zNFfafA%S$#dqR2#(ryycNJ0{BZZ1hkBZY+Y-@De@YxbIB84NdneBbj#;F)=6m)T{# zYpq>o&Q+z(_PV;dK>zB3KLj2H!HolTjI$h}F&GU-7^i_l{G+%L{$<=X#ml+tJkAAo zUBtQBU7wEg)7bDO(fi*w0cx8uCdU9ZQv!(Bfe=MC<< z6Xz~>-HmgPyY9vL9CzJ^bHBSDz&nq^){JQI|z6H5% zm>&fAAAj??V-Dc!IS%vc7SP>!b^G#ZUW1%a;2@~yL)Xz%<$3ctL~ivg9_3pcYu>(+ zW?x40=QoT`&bp*OKjwu#9w(i@@-XTMxlSKW4J6lnM_i5ThI??Je+ww#iNQYezl!s| z`{5AOopA7naoV4+FW^%1bwK~;PArVaQ-eJJMVyfq*;Ok{^kP? zq~N;E``<3n_*i$_Rmk@s30d}X7jp2f%0y6i?g13D?%YN0Zg2=kJNHm(mb!C;Kr-yB z$?)rOhJ7a`GaOhrXNCiZXoiRK12)uTco-@vCF-ip;4n_m#Tn3L5J(oKnk+WPS*)8o zi*+W8!zrJ-GfdmR7Ris0yNjg?$p$}b&IXr!3ML=wKFOzW^j!Hg&zaAW{N!js9SPA< z0*8lj1EonFvsK-eS7-L&ORiet{!hF)I!Zj-j-UxX1hi*T+)Sd8Zv-e>jBuI1h$(BM&r)Ga#dRjtT+ z-bum2g=gU|NPJ{af6(a*pSG}hVFyHSz6*g;X{f8~IIIr$7Ay%m4qLr22=+M`$tc#o zM+D1J%l)z@?b(aZz^(n8>ds!Q86Hx1=z=vz-`u*Ga#?tMU3eJX*}QPe!cEBSfQBGE zY#vH;piQ%UaR6lZ{rs)5sI&G}wizSoe zY%279lWR6^kRUjLTMZ?M|LTMN{>9XZ@8DuVaKOH|EMmUc+c4lza`HDn_(R>fyCrY}}mI)Cq@274LR)Nby!+KWb>KyAQQ{5k8z*Z==L z%$M4*$50>C)gReVzu$reHtqEX)Hkr2tlxK^23GL($2r%6qtBOP{ekV>x+=}({50X2(AL|z%>>?jCuYvh7zy8=o4Xljok2|E{ z7;5zT;|{ec>yJOI0W8G*BMwj8KjDZ5HXtaC%k=0YCDZz24$+DnGcQqr`s0qAKcBjp zy{i8l|I-5hX@UQ=z<*lcKP~W|7I=y+z}A!HyE<(}L>-JzvlZ1l=I$wSsP!)1T$^4>?`K-bTX<EoL&2#%mrG`M{bk`ZUR?%sh+g{*&JsrA8GzDXrNg_*DL%a4AX#* z=i@RyuHd6Io}`zQ(vw$nAsbw4JV($ia(b1VZk3a3ls5=^qnzF)r+3TgJ#vzkYLJ#{ zkd|uryo7y0PIt@cTXOogoW3Kchvf7#IsIHtf0C0E^Tz~TE5du7oUWJCO>(+fPPfSE z&2oB+obHs}q4`YfNgdwE>Zz%yzMB2GM1aN@-5YLKp`sp_CX zI-F)cgNF5d+`vZ`8_rRrwBdX5s0aL`L_QwmmR{ic+3WbpQVQw40lLG_IE=$YJMfsY;W)mtd#lQ`ZA+fQF?VlC=~Zbx z+is$+cUR75az36S`CWzKHAWz?r(|vOKrktEX`L3Yv%jt)5`jMP|ET^By>3`((Q#t*woaVGgzmTwB z%IUXqdPGjYlhg0z^anYKL)7r7AZNh-#)t_jdR*MD6Szu3K_Q=|ny7*d#}TSoRUqyH zEm#H(q82Re#2&2SP*GiL`C3$msAi#{kWXlL4#(M@c0xFz+7QR7@NtBXqkI$!j`6i6 z;yB;AkdIS*+?|NCe19h&ck$7Z@>0HY86Tg;$IJP61s^SC9Urfiws(AV-n66TizUp_ z@@0Y?ADvfti`-1Gle#Wp!MyDf%_?2F_f|`~dpTD@G_G_#=j$w$ba5NU;cj99vikg~ zJ#|kSUY>1jrHG)ln0pe$)47yZ1V!wm^dffaIgZu;R@?V+sMs^B^R2c&kK>34K7+5z ze5~+sn2%N*tssgBKE7QLiy-1?1<{J26~2U}c%I0O6G9owH8|;W)*vZ;&M16O(mA#D z13?eSX-*|3z8VWdimSYYk7CewcaU}$HF1+{x9&;H6gcN1A4MFcqaR=Ih^`TH-_B`8 z0Hj+*kJ#=Lz3@S)@`vQ~VL3f%gLJo~dp!H{Wr^|?IX!7>;|4R%+T1U>Bsgn03nbl*{)hb_%PLJ=ZPR|5SA?a*odTVudb!B>FTd;cD)b{G?;mSm1W_oqg z^!Uuku2o^WDO$~!nP}C{$%`hZE}mRfofyMVeq>_jXm$1W%E-3y$?8)}JaZ`uy{D&6 zj1RBgIx;fn)2UcZX)VN_^LU(+{~ub5I>bNwDfd^LMKC`7%qHH$G(Od|jTW!Uqt&s> z&WYLb?4>)ZGq?vyDbLJ~VgdpH<|w{~AjQ`Uf?%v#ncX?fNf4_%S-lv|SSINhpPEEc zL@6VanVmZ%pUTV(WXJ_nCTGUwQqsxw$kgQ6_*RKNUaeNgC@IQAtx(=x-Co{ap*#Bo zT#aqPzCkcNK1+qh70Na|H8lZ%f+F(N^rb%jj%i5s^z1kn7wNgT5ETtDGBYg~Sm6)c zvf7fmhI#dM`+*~JY*@4a%gTTa?gp;GB%h!$PB4F7eLcmTkI)76SJGu|2!S?o2U%9Qb)Y6w~Orca(PA2(!Zs2!#H=@r4c*2YU# zq#C>UbjBH}5ch25`ZtwJ8%ro{PkVcRX&}`Y2lkfwI(paZ{nJuyorC=YXo9$1YLX`N zhkb!dl zrb4Q&k0;2C0)KrY5(hMyGZTPgDcyUPwa!0Cy95r(CwTIQLa4>aRiE z&qU<`l9A4qzS7zhih+Ang4$BJ!i;rxCc3Dzr>7S^+r18jAju0!@?ZkWBNI@~<*gG_ zu)*cg@tF!0tz3ru8YbR{&*2(H<3T@@`R6=&QqE@NK z;);NTt=tZ=L~Ej*sE#$aNC|Oqi<+^^c4QlOa{v0i0cb3#MwkzJ2Rk8q1E4^xA%vb_ zC#f;W8lIKZf6a0~pM|j0D#pRJXgd_Rt+yl9$odSKx0MG6+RI@c)eHlU(Gj&t^D=Up zsI{fPRBlTvyGYC*Bm-_m8`q<7y%_O4k z!3pJ7#C;N7k{=P?)Usu%L6`@QU+(Vd>!NCq#%Ri>qhgfF=JT0iE-Dst&BZV*q_bf$ zlPzX*VIG>fdK${=@&a z(X|;`niMg*!>MBGA-c_a7-AUv5NkX7ds_zD)|UrLEnQ@I(8X-z(peZe)IA{)0;H!{ zo3AHpD)z3%UCN|kzwxBl&8YQroR?7|_V)JSN$u+63HMX*!B7M?QsuGA3|lA~XJPa@ z3aLv-nQBZZekpSsd0iX@WhM}GwY3aFf0f#_ZNhf>LlaR+Yn&@K`s(Yz=(CxAd1Gzomh4H`^(+LjRV27^;D_$hC~#pc88dP_I@)$gP-X1g)5*Ben<19Boo? zOLUyb3>krx*wo!!K2k0yZEW+jY6%hV?ipC$*R#p_VR32qq$pxPPwZ)2!B}aqiPZih zal=4>3eq^j4uV&-WVYzusfiRMZB7A@#Uwh%?hV-j)Tf^v6>SjG3f-kmogJ-Z@-?g^ zLe?}EsU))9TCm-8aAP9aspZ5yn?w~gM`-WtR9{8~lbr$X_)L^qIzcjnmda;wt-xxW z*zYcv`!Fz|THAh8o;%7rVpk59s3gmK`2GV?LN z0#f1bfDJu;=+U#zL@Xo_#&V2CO6$E0c;});!lbK9_gTfNJ2J3o&Um=Z(WsB8Tau%b ze&`i95+H)o;FEk&f0Hea^DfwKZD!5T0p;D@F|dV&l6p%$Q5pxk5t82WS+w-F@))pf zpf8px8Ns?yo3Wkjo2B8uv*DzntRuS{i`Dwd?9|Tbfsp^xA|8-w){fGg&DD?l(q3-# zy?y7z==d&BFZL*e7j0$ZJvwT@uR|%dIbu2WV^5WEHS3wE)^En(%{d6t&^0Q!+}F|H zwvm+q;?bb03`0FL3l`1JX|Q77pL`+6ct>|~t}r^knP&Q__@A*hp6+nRHLQR-!4IZ(}$Ogl_UObwn6v`>Ko9eUS0SSSL z8_mhwy0$hI(AJ(FIJG@(8`v*IkEqG-XlrR(FT({<#9}ktZ5B3XEvUipgk)2(Pa&6>rL7IJW9!w|k~F&*I|-5k*ny*UTRwvf-}bGa%enDY7L z#DjUxKwrnYb?7M>dayr2o(Pp4ZI{#^cpaBjfDEwFAhu?SO1Tks8x+7`Ut1|9L+no1 zW__i0v>Ej+4dhZ`4$>W)cGu1{iK7G>WH-C71Vx23n9MRpDr^%9v3(WKR+KcEU!8Cu zFy79{NU?&Zw8l9?boLE6BJ6w@ECB=cMv(8F2CZ`r4rj%ma3j77# zgI%p?I6MPwRo+-?8|dllPmx{kE48dGZ|dt9;Mqkg2)7iEMcr*oL+z?euf+WLN({}Y zK!7V!Fc1vS)*F|zLPRta?sUC*O6p3KtC8=Lbh@g_bQXGuY!sErneE+Nhqa~F!F8q$ z-JBv)@ucVOo{9?i?%us>0Tvu`WsBs<3N+tNN|>ZuS8DI*EX5N)X;Lb2o!BvNTR+&1AvmfNibqaLmj(&N z8a?71H4M;PZE3Qm1v8;pOxNgSuGkWGTHGvNN<5atoL=pOaE2x*-QXwTrxcnCc}x~# z+?U5JL#~i6hS^+H$VM5=K43_Q*$0dS(?!fO$bhZ1d7#wIPCr^Im3G6xn&CfYb%=bh z9TecEGVSD1vNt)N*P)CFc}FchS+k|igX^{FhSxi!nxXeBItp&%rFVki{AL1zP@ z&JT$MRjBC4wN96dTN7f;97fH>Y#xKBY!OXUfL_cLBB;eoRBUbz^I-;hF-PNjcsLtN zJaee?!Q^ci(f)&YT zX;KSQB+XGV57QE&F)=|BWzm9{=mZY?-YFW_u#ruUcxXa59%C@qWt=jn6L(rFj;iAm z%hcVLATZ%V^~%uHLTrb0;!~#~(Y9pjRfq=qWkN5CycF39@31+7(7=*na;S)@5^l5P zp}MNT62#Jy(3+Vd510pf)Dz;hn#NsI8+ZRy@nGn2v-DJ&6lN{jdS z?Q~rKrbuSt{3Ilg?8!8sk=Z4Uhx$~k?Uk8}*o3eG@{{Zi%Jc>s$b?ef>$zX`e&9Di zU^b1$NM%&306GzmisQc^4|-Ha}?UcFwU4N zvG@5>Y|WOZx!OxuXTl^r&2z=-VdLB*@d4atw?nL=EMUUU#`;z29rDrwYeJfC5WAFV z%H*Rkjg^8-7(%;X{y87vzXB8t*3aO{NBK1Q>sTldC$_h*WgXU4u(}A(r5lrsn+LjE zcmXdiC)60v$=0|>PQ9%NSPeQ$>L)KrsCo7h!yH*S<)K-O)a33aUo14LXCMWt5g`j$ z5$E|V$~&uS?XioFcaRRMu)9kvLY$$iNVrbS)oeF=% zQImjJCZZ4hqtzweV&H>xY)sE$zfB@OiA5qfynekR9u%zGyt&-c+JQkVFA-obNl4ZP zHil+|+i7Eq*S~C_DQSTmClZcYKbIzfrG%{eP?w|?lSw^Ux}=2;lJ;^NbT6$Y`7w(w zHJQ~Ek!fnr&M023b<5+X6gvD%mW*1B{BpFSU34R@;0?%}9>!@Y7f1QQ>Oggt)l5cn zknHmmp_$bZ!)>RvXmE}V1Xu^|9-vt+Qs)>N(1K?+A=a#T-DV{+*w}DFRydl|s>{xw z*i>g|!7EW_awJ%L(*_z+U;Nx&dTy4wo*a|8<{C-;U;?JGy`$8*cI7UfNx=~-P<#i= znC1TU9qj`&ixS_V;))l>eI!z>ewexCL_VIkkWrwKF_nKA4vtkOW~vZP_HavPaV!k_ zdpoe`*v~^Tt~agFVPU0>?vy$^*0x~d4`i38M`va$v*RNvs zz;6CIyXNYPKyc^uMd&{JOduaT3^%&xer3r10#}WA2&&O;t=QOxvL?XODqJ+T87~w2 zYF*fyF_#ZS_xZWB^E6d%#nBDcsdjjd+wXzd+PDh6eH-V_ivl<^(u!F5p<&P3o~{=7 zO*EqN1O9}aqj@@79MVZfTI_M-<2lw=tRLW}%I9zdMEd=vDVoxk?Q1K-roEjb>O?uv z9k9T5+K0uF8b`PB#O4rEoN)c(fG4z*CK=V;8Vp_2gbSn{03xukq;h0kVl}ke00~o7 z5EHD(c9jO!_pIf?5KpuvRtDYZ5{1?60;V+aMj!UoyE=Mh3?V8IN$iq>x(DL%g}mAk zH$jr&8Z{1n!WJ^>K@w9t`MN{v*-0T?BUWR*G(%h9m(tQFZRQf+c@JjH#qm#pUc|P! zmR3w z4<7A@Dh>o#8RFSnSyJHn6`A<8`hwmc;a^Lrk1{TICSkD<(B>~Hu%Jxq#M3_bISZSN>82H0bPR4tWa=Wy`81a ztPRx6iS8nIPxWwO(cUjyqgi+c7s3TEB;K^5Th(C?qEYp6&b;#w+8=Hj{el z;7n#|p2Xxg?Fw^aa-Ku0Z4JzMgL*t_X8S|(U>B`*1mRb$F|6r_qlLYoB0HGdr0EIY zXNH)%*M@khPKhIxm>jS{1sQw0NMvaZXg6gbg9WMp>jIu9bb~~vurk@mDRwRK9Ah3H z^2?w{wu;i&QEIU#YXpDVZ#hDLIsa5wjd{_3&T&00<;m*@Qe;tIIwXc%ijN3=xC5Jj zD>K{in!#H3_^~UYZ?JbDwX6Tqnc3?0j_GHvciUo(Iq2V%XVJ>XGQ^`4D7eR0(lUzb zZ=qpSnoBRk0$zdPnQ_mombjE5Z%iUK=@2%-a?<`3NMei<_}Kt+M<%C@VWNpR_U*i7 z3SAdUgW3+1PD;)f@jabb+dYXYCf0yZf4W<{F-M!>uoq4}0W<(jc9V;&oBR{jN@}IM z$(-fvD^W|7kSeC@X*$295{Qh+mxJQ<+iZ8+*TKz=CX3q|5`j0$%G1@#sO)-e1YC(v z*}_MEmfwrd2BTcYeOi)_3qiM6V5NRy#nVy{s?@Hj2@D-4s*OvL%k)U<B`i};ZiK%FFkX5DQ0>2c|g+}ERwh4mLhMC@wC(xHG0~K1qp<77R#Z0<69c7{d=C!d(h?(9zmJ8j=^Z@osl)HK`?cp>M`?{FOfO_BEeVj`;t?=$) zE_inj)HSA1h^$Qfl90N!@M`5XNOVz^rZ)J5y%@A^w<3-H!%ixGPmF_V*Ny#iM7&n zb?Z26)%0BIX)ZmqM>SNde}L!GIp`R(Qnv@&t&!9a*k&@a;b!2unRsO}X=V0AWZ7Yz zjBAO`;cA`KBG}BdSYiPBTGsN&Hj;gvtldeAy4hf7Qauuhi08p-w`IC6!yAMu({KdQ zTVht==>8jx%FG^n^QjvZ+gH4o0CVtOkma>jS&qNc*9(H`AhL#aVd+98|U{_a5-xg01UQ$SEKo}z$rO{w59uv}TRd3uvywNJ} z?8vJ-?ya5Vv=+Cvne*kBjj*b639YP@b&k(v>O_j(*rd*dAkm}@OiUaf?Ysqx0rDnl z89{Q@*)cGH(U87lgtX53C3d##?Nl=F0aJTwd{n#{-jBsCwC#FKD#DFOwS^(p7HPUN zwQBp!_R7S>s?o}9W!1#^_VL*>Q$^gR50IQWy(<%qUCbf$G^~}gWe8l3+t&=-Zi&f@w zOeT|7(N2rhsxf*!corYoST$4SGt!Q6Efoi}7!|+mIDq{C=yjE7d4nSrVaCIKVZgO$ zJP09*RYpgr5spjVoLb{7ib}$Y(%!skD^qXs(lbPo(~2dP(Sm!|7Sc{?Fe!PoHNq>i z-RAm4NB9A&y54iR!~GZ%s4vVs`Cb8B_FqSjJl2%9(b8W#y5WPDmf8P%XMO^6PbSXYN<(ZEW?Olgln%GIc6L&X~|pyE3Tjs@Xy3$rHt$8exYSZS7X$ zNxOL@nhmc~a%E?ycUIX+ahrp9`3BKTCE8$N+=`U!%V;w@k8@}$RZdnX%L~GrXqFE9 zOJwni-ZheqMA#l%^w0-_x>*n)>bJsuPDvT+r?=P?LlC6naP;cT(=wOJ@F zo#013JNkRdSi^Lm6`~bPvJ~VQ`&a6cesa8j;_>I;eKapxtn20FI4Uv`V{c!m@Dr2C zhLBHfKyTrzKQvFKGyOyt-gnD-4im|HiA2G1FuGF(mUkhizoj@UWg z@%7F~Fesl!a1~5r70J0?bHDBixg+xx@9$wP6o1~u_MFUG^!Bu^XJ;{#X;Y+^Z_~&y zhDG;Dyd&wpUBt^2NE^G1te*Oz0BHfK?;Okv&x~*1F;V30Sz79A9P6>D}0a+pzvzdCLUj#ZxgPBR8Im zElH4ZeibHIW5&mJf2}M9OLq{9lGfJF%}FJa;e2mzCiL8kX;=<&{I2m-C0qU~(_GK7 z<*-hJ*+p)?=tTYjbr4UH&==l#ivX5q>7!@(o)~rqW|>CDsy(UY5PEw`UY3!$*jnK@&oKt{kdpuYZ$6bTSn6-($ z4!i~7UhBu~Ac>%;5PH4AzRYI&owS)eI#ErvguK^pt`!>&aI<$*G8+EEyRp8tYOCa` zB;AcC5?%DU_R1g{)z&6Xe6Heg*_epwHLNbVONHlnsu3XKIX1b9^zbeNr$NN_g*no= z$!&%DkucsROx9RlqtiuR7Bt#2wKonF#nb8PJqjt0mub5*W>~SAxZKm-NnZdVSu=g2 zLSuZ@ZJ2Q@lZv5#@S@01_X9%cg5<)cOw(U7QJv(M=cx;69Af*1%@?}{wV$1fx$mgw ztgD+Dl^Ky(+<4a(zX%j3LmTVcl(gH7W(vrc&?N3{FKija2Bf&n^;iDB}G=PX6cgs!u`AmLp(kS}L9oeN{vxk3AwoDe!*hAH20Bh>p+F2spW)(~H zU^f=2-J}kAj_61$!kgU2Y*d(wZ9cS<+@{4VxDr{ubP9z*Ux%diei9`}gzan$#ITss z-m-yqPVUxG9o=ni(UtT$SAs>~b-XyAWEXb#rCHNpRMqZ2%;ok@2+fi&Nym>(iq#x% z0l^!xNkJMO$D#&p&CTU@e8{Z@J7amYCL=)o016>LpGOT#4nDhx$uC^sJ&>eW;3Z0m z7QcOv48^{f-jck4fS$qf2jQ`_;*#2!~p)HCeI zH$#|K&P7MNVA7C#3|q|iMpq%)UZ^U02gJ-ZWCMAv!)@3|mHYWE4+q)VWe`ocNR1hEqJsLR+&vwmxKR zr04MNnA~<%37)X-33PjIXwFI(40(o$#Eg16c7NEvB$p3LTE9smRu&V_Y;4`EvuazO z1(7e{u*0E@rZ2-{Jv4=>P#(pRLql_mWq9^2TR19D8<^Kl_g=i|J1cIDSQnh>tw{Fn z^krHdtK_*^ee^zlohTI|KDU^&G+a0SEE0XEI-X{N2qY{V{SE#-gT#*>Tp zxREhU8yO#G^CEUFa)t1zUsc?VQ7i%C7t2V5qzHZNKHtlmB_7xDHrpv6Fy<>ueI>lV z-_7HLRC#7*{IV*)ZOz1V3o#-OX0{ai-q>HJl76O9W`08V%>}ih!wUf|=(0gIQqsm3LhAvn*`(YhG#3no56WyrDB5HV@otg?WpVCM#Jd zCB_{1WZ!OjS@v>@n&xu zAvvZ)^~3_xfRWcR(3tc^S@*4H7A3T!-~F#@QWgrNdg4aO6o>n!cz-YX)B_#uTQJPW z2bg#`y15^(uDhiXKif)8ob;rzg*7&rW>2{6zsH_zgqrDC+L$5pe0bGhpl^`gHWYh- z*$DKjNUI%6H}YB|Z+<6R6@ORLtPQj1LQdOyx9pAcD=}4#KF&~G#}8C#V<_n3cM9z*UIHZbLj>!LE6ggIHq<;_+?HEX>Q9e zipmy4e1LF{A-dg>q8oj)veB0^w>vTt3RARn&8#%Uj$T3{^{I)W`ixwF3p7TjIiH&E zO2ouyr`8l=V16Gyy3jr$v*KT&>UR6SHn(w+s2}onG#~2<*=Zf}C+Jv9QNh7)J9E7I zxWuZ&xct0W)za2h>c@T^v_HRCH?*EpU(LQ&SiKKn`-n;NSz`#n`-D`=t+9noxU83 z5faY_hS?+$liy$RElGL>-6^i~%SuPO@ z6o13U6uN(t2n)oL$8Fq%=x2Ic43lN@nPQ{;UXhl*+PiBi*JnNR_l|%dLBr7P{6v7LLPh!-Tc%`_1lPnJK z2mWFvp_QF*CgjqoW7d@NRSMRW&O$z}Gvwl^J0z2j{C16-@1jrjley=Sg;6=CC#l6T ztE4m1_|$^v8J#|q0=Om@5pzoh+(ck5+XORJ)0mGvex;5d+X+eW3NUFTXGck4+E+%P zM%~**d;e<orx*L&B>uKcNkvrQotMw4cy{T zgVd%8XP*Y9bGTgGqw%N&CP?}_zO$!sN@ASrMtvw5JNV+Sxh?op+jn3e!HoNPg_vCN z3cGx3nrp^}ll>#M1s`)%NSA+B3 z%W834<&%s7{M=XUCGYht0neH;`E+>Y7udLLX5jmTO`aG6CrJuFjU z9*1ETk$(P4i=#_7oxH^17B|d_O>zq#8~@X2E*XwLglsmz@Pt}69y(=)^(}tP4)yJg zo6E#kS$`Zamo{mU1tV)gle9V_Y9qS3i5S_|l?t)FM%ss5D*nYc>3+HS1h1>aX}lP) zU$+^JhUdrQUY*1;YL#^j8&m#KqIfKqFi1(8jwJ)^>ExHk*}U^Nl-;0_Tb7I}8da!% zn(TYyAN0Z}Cg3-8^7c!X9elS4MPz%LPa1s~t54;IresG7fj4?ZZ)QSw`4aD0i2`rz1_=RY;Pf1IhL_kDhB96}fM!ErUu zdurG}PtyD6@h_#v&#VuQuX)~6!~S`a-an6j3En*Kgqr6)HSC`!>HYIgh@V9l^}&fX z&wFavKTp#8=kc%G$Iq+}QZ>)}_h9^JvHO$!o(SXjjN|xvMQ8lDc1`*IJ=m8=@_Qoe z%eTZ959M20Q@(!>_T`cMo(TK$@ejzyWvmaD)s*kwgME1VqM!uhrjVFMN4x^=+*_ ztkqYw`b7Bd+gteOvB9$db&#pAEz zauPqZE`LM8_i$0z>hVu-xnt7fU*d8&7Mr2qkHD)B@!|i_OFo|z%!dPG`)eVv|2ru- z6xhqxNx|Yocw?|6flmq=YvQj4J|fPrF(?3^KA<;-f;EZs%Yt>lR-U?nKXay!zX>>Q z-k>ok*Q6fBlza_!Fz*FY=Uk85OJiP&VNTg2%4+8uAQ^C(_ z!hZwo^G^kj0>4P6*c5g!cgZ=baF21inAcpfNZf_z{Cgfq$0O8$-c%;NuOy zcLDpqvoo1F(Poaly-g>*F?W3|<9%tig8x9~rx)L%~~t{ok>{dw~7( zjtxFs6aGnH|GZ;^F90{0{J#R+ZtypO{}2nrQ1Ae-|63gV5AdS+#^T^%;4LQo?|^$^ zw{|G_D{xCJKtn-2WaW3U8#)vm0Q@2&KS$vD?lt;=q2Po#jP4yDoDA&idwj66COiY| z>wA1~I`Cztd@aB)GkAR>{YgO&u+RUbU}GYDS#UmZTpjp3qlxgP!9|JirNML}d`WO= zB78}3bs{_!T$cz>1uss7pBTIn*w^pG;I>5g3Bl_V;U@%lCc=*k-jxVHF8Dwq{Mg{5 ziST2CPbb0`2X_O<;(_t!R}$gJ2lpk?A0OPG2tPS^D1p<#qrjgqeEKKw6&=3+_d#PH zY~*E;Z+t|Gf)f)s8#E@S@ns8VW8e0@`0!5vr%ic24}6XBm%a>q zW;~5D6x;{=SWGC`M@s(;pWlPPDPy014m`Zlhd%;*TgKzZfWKh;D0^TR*!;c1D+3#@*_)lXVHv<3cFptx~yJAia1x4VG8+)+^_%~%Ae?9PhhkM)$ z{QFUlHv@m{JdZB`eo33h+kh`mdAtMopFJL50(_fk&#QsQW0@QZt_S|jSw8-az*m+$ zz6JPv7L@pv=vO{Tpr08X3y zw*i0C=z|@=?>6Z#A#CLPYT%FKpZuZ!as8{+9^VK&yUpWUfQLNON zehm059s3_c!6M+D6F&TC;2UBGWGF}hla7}^=xg9t7`~-}XN06b*$*EZl4&-CFtfG;)ecM0%y_$Plu z!PU54Wy*g&@FJs+ZUp}8K|cO1z*~nsz61FEt319Fc+}Y2_W*w^?ZZC;{CA^IKMOo- z?D?00=b7?<3;0@NZ+-}TlEDuFuQ2@kE$}-w_~$(a{HW>QI@scFBY*n?S4{gK27J{D zpZ+-D{~hu8WZ>tU_Gtos$mr_=@ICE5{u&B5^4|g6Yuc+1cw?iFe;)8xjJ_HLt{Qu| z9ry+3`}n(nk2U#S1^f?Fzw3cdHuCsV;LjQTb1QJ`sL$^Wz@3JV?*MKy_U?ng?=bTJ zN#K2qzPJbYDwE&Wfx8#^{J#gh)YzY&0DsKL_b-8G4)pQ=2z-;#_x}LC(9~xE^6ED6 z4+gF~!>2zQ_y>>y`5OwB0RPFFue`wHYT$a=;Qwr_)n&P_knKsvys0=z_aUp{Kddo^Zcd2Qzrgt zz^54fmj%AZ^v{{VA2I#Y4*Vz6UOm7^7`|)<{+bzℜMzKV1m?(+hq1W`I9u{DsSb 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 Kx!0+tMfwk<&u}&X literal 0 HcmV?d00001 diff --git a/tests/spim_flash_async/drivers/soc_eu.o b/tests/spim_flash_async/drivers/soc_eu.o new file mode 100644 index 0000000000000000000000000000000000000000..147433af60bee694dd7e22033607d4d2c530d1bc GIT binary patch literal 53420 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 literal 0 HcmV?d00001 diff --git a/tests/spim_flash_async/drivers/spi.o b/tests/spim_flash_async/drivers/spi.o new file mode 100644 index 0000000000000000000000000000000000000000..7827e0c9cd8315fec5e4b0347a157f5d1325fc64 GIT binary patch literal 350352 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

^+)-yN|PlMK(1u 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 SC%-qaPWjB?3=&K3=l(w{3}R^j literal 0 HcmV?d00001 diff --git a/tests/spim_flash_async/drivers/timer_irq.o b/tests/spim_flash_async/drivers/timer_irq.o new file mode 100644 index 0000000000000000000000000000000000000000..c4d35bb83b195372b70905ba0fb1c27cdc30592c GIT binary patch literal 58108 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μ8B)KO*?o z#E%MomiRHjFAzU2_+{ds3x0$67lQvv{Dj~SiGL~h6XGWYJNy4D!Os5wTClVKPYHJR z|7pR_{{Kd>v;WTscJ}|bf}Q<;Rw=zarS#|Gx-!_WxDE&i=n9*xCQr1v~ry zhG1v^-xTcZ|678c{eN4qv;Xf1cJ}{W!Os5wRWPSOvA+rC)Ft+wU`{z=?+fNsA@+e_ zx}mYZ3m%SL>_fq$h(8iMmiQlnw;}$g;4|tB%Zk3r@5T*If*AO_i656e1*glmwWl)8vgjn5>H(2({Me1{1k~NF867; zwm*KV#1ohMG{0s1G>IoJ_i6aert#Gh@4nyU(`=5Y*sc=KCXQiEhk?y8VVr{wPxA4* zAWGA-h_Njs4YQlDV}$t*D~2@wG(DRmR)!72?)aO)%n*ntl@a+ljxWy~@L0Kv4w|r= zFg?PPe0)$ja75o=dk6M|{jy)8Xt1z)FsSTmA8ZdQI|c@VN=C@Di20uW!{zzHp^^4u zwL^~;KWn(gQTxPUWq+Z!y;6Sk&$k?)9Oexhfj!*23~%8u$=l`C8bxtyiE{5KC`!av zaOic=20>-#vcA3oKCo_c@9uB!Ln`+v+RFC9!Tz3(75Lt6P`S8&*^1@T!0WMXgkAP3 z?^3g$H^$#?`1=p+7H$i;zoF@7B3{#d_BrX;-DuOovll7@Cg97-+sm;_ttun}#$)uS*-FL9bhb2%GLV;G1hA>^0rNL(;tt&N^z) zbVnk>=Jz(Z4yjD5=`Qi<7{~At{=AFtIP+jQAAh{gO#CtI@`E7wDJoC7r@7=Y%Fhk> z({ljbH~UU75en}al5Q7FOy~z{P~&v(lYKr8^12*K^}4?R)^h-ZV_~;*1U~4o zN5E}2DF9)SvpZ@*c6H)(8`<(m^Kzf_SA}$_-f~2_a5eJtF16#lE(7|@Me)O$ux__g5^YtK(Dg6HcT2N?l literal 0 HcmV?d00001 diff --git a/tests/spim_flash_async/drivers/uart.o b/tests/spim_flash_async/drivers/uart.o new file mode 100644 index 0000000000000000000000000000000000000000..ac3a12b238404eee6c22dd98351129850eb521f6 GIT binary patch literal 312296 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�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 vl?U{mucer)uxjS2o5UsqyN)3S~Gap7T8vm^e@ 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 N#f?>k{uz;W{|C+oTmb+8 literal 0 HcmV?d00001 diff --git a/tests/spim_flash_async/kernel/event_groups.o b/tests/spim_flash_async/kernel/event_groups.o new file mode 100644 index 0000000000000000000000000000000000000000..05ee55ce612188fdfa6bbc138c240b662246af83 GIT binary patch literal 162928 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

_nb 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%0Deui=V`!SQ_puU@Tsc*E(4x-mOcME;NL6y`z-MB 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 Dw3SZr literal 0 HcmV?d00001 diff --git a/tests/spim_flash_async/kernel/portable/GCC/RISC-V/portASM.o b/tests/spim_flash_async/kernel/portable/GCC/RISC-V/portASM.o new file mode 100644 index 0000000000000000000000000000000000000000..88dc227e0bcdb577edd80cc335b4106d78760824 GIT binary patch literal 15504 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 literal 0 HcmV?d00001 diff --git a/tests/spim_flash_async/kernel/portable/MemMang/heap_3.o b/tests/spim_flash_async/kernel/portable/MemMang/heap_3.o new file mode 100644 index 0000000000000000000000000000000000000000..290dbe5dde15c87a8e631f425c7e3b1959d993e5 GIT binary patch literal 109520 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 N$yn{QOCHu@_=CXF5)FR1R-y1F(Q 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 literal 0 HcmV?d00001 diff --git a/tests/spim_flash_async/kernel/stream_buffer.o b/tests/spim_flash_async/kernel/stream_buffer.o new file mode 100644 index 0000000000000000000000000000000000000000..f4a5261c40fb186b63c3c31d28ab465467865bb0 GIT binary patch literal 215780 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

Yw*bK!SiJ!8$(f* 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

AwM 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â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 M$?IwBl8mJHf3elX00000 literal 0 HcmV?d00001 diff --git a/tests/spim_flash_async/libc/pulp_malloc.o b/tests/spim_flash_async/libc/pulp_malloc.o new file mode 100644 index 0000000000000000000000000000000000000000..bab61f059482522fab2616d1949d0f35261fac62 GIT binary patch literal 61128 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 literal 0 HcmV?d00001 diff --git a/tests/spim_flash_async/libc/syscalls.o b/tests/spim_flash_async/libc/syscalls.o new file mode 100644 index 0000000000000000000000000000000000000000..d00078384070c047def3708e5123647357a93772 GIT binary patch literal 203828 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 lH+ZeYT*NQDrgd`T^plS_-!`>h#z*spim0_cs0", + "spiflash->cs" + ], + [ + "chip->spim0_cs0_data", + "spiflash->input" + ], + [ + "chip->uart0", + "dpi->uart0" + ], + [ + "chip->i2c1", + "dpi->i2c1" + ], + [ + "chip->spim0_cs1_data", + "dpi->spim0_cs1_data" + ], + [ + "chip->spim0_cs1", + "dpi->spim0_cs1" + ], + [ + "dpi_clock->out", + "dpi->clock" + ], + [ + "dpi->chip_reset", + "chip->reset" + ], + [ + "dpi->jtag0", + "chip->jtag0_pad" + ], + [ + "dpi->cpi0", + "chip->cpi0_pad" + ], + [ + "ref_clock_clock->out", + "ref_clock->clock" + ], + [ + "ref_clock->clock_sync", + "chip->ref_clock" + ], + [ + "spiflash_clock->out", + "spiflash->clock" + ] + ], + "tb_bindings": [ + [ + "chip->jtag0", + "jtag_proxy->jtag" + ], + [ + "chip->uart0", + "uart->uart" + ], + [ + "chip->ctrl", + "jtag_proxy->ctrl" + ], + [ + "chip->i2c1", + "camera->i2c" + ], + [ + "chip->spim0_cs1_data", + "spim->input" + ], + [ + "camera->cpi", + "chip->cpi0" + ] + ], + "chip": { + "name": "pulp", + "pulp_chip_family": "pulp", + "pulp_chip_version": 0, + "boot_from_rom": false, + "vp_class": "pulp/chip", + "hal_files": [ + "hal/chips/pulp/pulp.h" + ], + "archi_files": [ + "archi/chips/pulp/pulp.h", + "archi/chips/pulp/memory_map.h", + "archi/chips/pulp/properties.h", + "archi/chips/pulp/apb_soc.h" + ], + "vp_comps": [ + "padframe", + "soc_clock", + "soc", + "cluster", + "cluster_clock" + ], + "vp_ports": [ + "ref_clock", + "jtag0", + "cpi0", + "i2s0", + "i2s1", + "spim0_cs0", + "spim0_cs0_data", + "uart0", + "ctrl", + "jtag0_pad", + "cpi0_pad", + "i2c1", + "spim0_cs1_data", + "spim0_cs1", + "i2c0", + "gpio0", + "gpio1", + "gpio2", + "gpio3", + "gpio4", + "gpio5", + "gpio6", + "gpio7", + "gpio8", + "gpio9", + "gpio10", + "gpio11", + "gpio12", + "gpio13", + "gpio14", + "gpio15", + "gpio16", + "gpio17", + "gpio18", + "gpio19", + "gpio20", + "gpio21", + "gpio22", + "gpio23", + "gpio24", + "gpio25", + "gpio26", + "gpio27", + "gpio28", + "gpio29", + "gpio30", + "gpio31", + "reset" + ], + "vp_bindings": [ + [ + "self->ref_clock", + "padframe->ref_clock_pad" + ], + [ + "self->ref_clock", + "cluster->ref_clock" + ], + [ + "self->jtag0", + "padframe->jtag0_pad" + ], + [ + "self->cpi0", + "padframe->cpi0_pad" + ], + [ + "self->i2s0", + "padframe->i2s0_pad" + ], + [ + "self->i2s1", + "padframe->i2s1_pad" + ], + [ + "self->jtag0_pad", + "padframe->jtag0_pad" + ], + [ + "self->cpi0_pad", + "padframe->cpi0_pad" + ], + [ + "padframe->ref_clock", + "soc->ref_clock" + ], + [ + "padframe->spim0_cs0_data_pad", + "self->spim0_cs0_data" + ], + [ + "padframe->spim0_cs0_pad", + "self->spim0_cs0" + ], + [ + "padframe->spim0_cs1_data_pad", + "self->spim0_cs1_data" + ], + [ + "padframe->spim0_cs1_pad", + "self->spim0_cs1" + ], + [ + "padframe->uart0_pad", + "self->uart0" + ], + [ + "padframe->uart0_pad", + "self->uart0" + ], + [ + "padframe->jtag0", + "soc->jtag0" + ], + [ + "padframe->cpi0", + "soc->cpi0" + ], + [ + "padframe->i2c0_pad", + "self->i2c0" + ], + [ + "padframe->i2c1_pad", + "self->i2c1" + ], + [ + "padframe->i2s0", + "soc->i2s0" + ], + [ + "padframe->i2s1", + "soc->i2s1" + ], + [ + "padframe->gpio0_pad", + "soc->gpio0" + ], + [ + "padframe->gpio0_pad", + "self->gpio0" + ], + [ + "padframe->gpio1_pad", + "soc->gpio1" + ], + [ + "padframe->gpio1_pad", + "self->gpio1" + ], + [ + "padframe->gpio2_pad", + "soc->gpio2" + ], + [ + "padframe->gpio2_pad", + "self->gpio2" + ], + [ + "padframe->gpio3_pad", + "soc->gpio3" + ], + [ + "padframe->gpio3_pad", + "self->gpio3" + ], + [ + "padframe->gpio4_pad", + "soc->gpio4" + ], + [ + "padframe->gpio4_pad", + "self->gpio4" + ], + [ + "padframe->gpio5_pad", + "soc->gpio5" + ], + [ + "padframe->gpio5_pad", + "self->gpio5" + ], + [ + "padframe->gpio6_pad", + "soc->gpio6" + ], + [ + "padframe->gpio6_pad", + "self->gpio6" + ], + [ + "padframe->gpio7_pad", + "soc->gpio7" + ], + [ + "padframe->gpio7_pad", + "self->gpio7" + ], + [ + "padframe->gpio8_pad", + "soc->gpio8" + ], + [ + "padframe->gpio8_pad", + "self->gpio8" + ], + [ + "padframe->gpio9_pad", + "soc->gpio9" + ], + [ + "padframe->gpio9_pad", + "self->gpio9" + ], + [ + "padframe->gpio10_pad", + "soc->gpio10" + ], + [ + "padframe->gpio10_pad", + "self->gpio10" + ], + [ + "padframe->gpio11_pad", + "soc->gpio11" + ], + [ + "padframe->gpio11_pad", + "self->gpio11" + ], + [ + "padframe->gpio12_pad", + "soc->gpio12" + ], + [ + "padframe->gpio12_pad", + "self->gpio12" + ], + [ + "padframe->gpio13_pad", + "soc->gpio13" + ], + [ + "padframe->gpio13_pad", + "self->gpio13" + ], + [ + "padframe->gpio14_pad", + "soc->gpio14" + ], + [ + "padframe->gpio14_pad", + "self->gpio14" + ], + [ + "padframe->gpio15_pad", + "soc->gpio15" + ], + [ + "padframe->gpio15_pad", + "self->gpio15" + ], + [ + "padframe->gpio16_pad", + "soc->gpio16" + ], + [ + "padframe->gpio16_pad", + "self->gpio16" + ], + [ + "padframe->gpio17_pad", + "soc->gpio17" + ], + [ + "padframe->gpio17_pad", + "self->gpio17" + ], + [ + "padframe->gpio18_pad", + "soc->gpio18" + ], + [ + "padframe->gpio18_pad", + "self->gpio18" + ], + [ + "padframe->gpio19_pad", + "soc->gpio19" + ], + [ + "padframe->gpio19_pad", + "self->gpio19" + ], + [ + "padframe->gpio20_pad", + "soc->gpio20" + ], + [ + "padframe->gpio20_pad", + "self->gpio20" + ], + [ + "padframe->gpio21_pad", + "soc->gpio21" + ], + [ + "padframe->gpio21_pad", + "self->gpio21" + ], + [ + "padframe->gpio22_pad", + "soc->gpio22" + ], + [ + "padframe->gpio22_pad", + "self->gpio22" + ], + [ + "padframe->gpio23_pad", + "soc->gpio23" + ], + [ + "padframe->gpio23_pad", + "self->gpio23" + ], + [ + "padframe->gpio24_pad", + "soc->gpio24" + ], + [ + "padframe->gpio24_pad", + "self->gpio24" + ], + [ + "padframe->gpio25_pad", + "soc->gpio25" + ], + [ + "padframe->gpio25_pad", + "self->gpio25" + ], + [ + "padframe->gpio26_pad", + "soc->gpio26" + ], + [ + "padframe->gpio26_pad", + "self->gpio26" + ], + [ + "padframe->gpio27_pad", + "soc->gpio27" + ], + [ + "padframe->gpio27_pad", + "self->gpio27" + ], + [ + "padframe->gpio28_pad", + "soc->gpio28" + ], + [ + "padframe->gpio28_pad", + "self->gpio28" + ], + [ + "padframe->gpio29_pad", + "soc->gpio29" + ], + [ + "padframe->gpio29_pad", + "self->gpio29" + ], + [ + "padframe->gpio30_pad", + "soc->gpio30" + ], + [ + "padframe->gpio30_pad", + "self->gpio30" + ], + [ + "padframe->gpio31_pad", + "soc->gpio31" + ], + [ + "padframe->gpio31_pad", + "self->gpio31" + ], + [ + "soc_clock->out", + "padframe->clock" + ], + [ + "soc_clock->out", + "soc->clock" + ], + [ + "soc->cluster_fll", + "cluster_clock->clock_in" + ], + [ + "soc->cluster_input", + "cluster->input" + ], + [ + "soc->spim0", + "padframe->spim0" + ], + [ + "soc->uart0", + "padframe->uart0" + ], + [ + "soc->jtag0_out", + "padframe->jtag0_out" + ], + [ + "soc->i2c0", + "padframe->i2c0" + ], + [ + "soc->i2c1", + "padframe->i2c1" + ], + [ + "soc->fll_soc_clock", + "soc_clock->clock_in" + ], + [ + "cluster->dma_irq", + "soc->dma_irq" + ], + [ + "cluster->soc", + "soc->soc_input" + ], + [ + "cluster_clock->out", + "cluster->clock" + ] + ], + "padframe": { + "nb_alternate": 4, + "version": 1, + "default_profile": "default", + "vp_class": "pulp/padframe/padframe_v1", + "profiles": { + "default": { + "alternates": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + } + }, + "groups": { + "spim0": { + "type": "qspim", + "nb_cs": 2, + "is_master": true + }, + "uart0": { + "type": "uart", + "is_master": true + }, + "jtag0": { + "type": "jtag", + "is_slave": true, + "is_dual": true + }, + "cpi0": { + "type": "cpi", + "is_slave": true + }, + "i2c0": { + "type": "i2c", + "is_master": true + }, + "i2c1": { + "type": "i2c", + "is_master": true + }, + "i2s0": { + "type": "i2s", + "is_slave": true + }, + "i2s1": { + "type": "i2s", + "is_slave": true + }, + "gpio0": { + "type": "gpio", + "is_master": true + }, + "gpio1": { + "type": "gpio", + "is_master": true + }, + "gpio2": { + "type": "gpio", + "is_master": true + }, + "gpio3": { + "type": "gpio", + "is_master": true + }, + "gpio4": { + "type": "gpio", + "is_master": true + }, + "gpio5": { + "type": "gpio", + "is_master": true + }, + "gpio6": { + "type": "gpio", + "is_master": true + }, + "gpio7": { + "type": "gpio", + "is_master": true + }, + "gpio8": { + "type": "gpio", + "is_master": true + }, + "gpio9": { + "type": "gpio", + "is_master": true + }, + "gpio10": { + "type": "gpio", + "is_master": true + }, + "gpio11": { + "type": "gpio", + "is_master": true + }, + "gpio12": { + "type": "gpio", + "is_master": true + }, + "gpio13": { + "type": "gpio", + "is_master": true + }, + "gpio14": { + "type": "gpio", + "is_master": true + }, + "gpio15": { + "type": "gpio", + "is_master": true + }, + "gpio16": { + "type": "gpio", + "is_master": true + }, + "gpio17": { + "type": "gpio", + "is_master": true + }, + "gpio18": { + "type": "gpio", + "is_master": true + }, + "gpio19": { + "type": "gpio", + "is_master": true + }, + "gpio20": { + "type": "gpio", + "is_master": true + }, + "gpio21": { + "type": "gpio", + "is_master": true + }, + "gpio22": { + "type": "gpio", + "is_master": true + }, + "gpio23": { + "type": "gpio", + "is_master": true + }, + "gpio24": { + "type": "gpio", + "is_master": true + }, + "gpio25": { + "type": "gpio", + "is_master": true + }, + "gpio26": { + "type": "gpio", + "is_master": true + }, + "gpio27": { + "type": "gpio", + "is_master": true + }, + "gpio28": { + "type": "gpio", + "is_master": true + }, + "gpio29": { + "type": "gpio", + "is_master": true + }, + "gpio30": { + "type": "gpio", + "is_master": true + }, + "gpio31": { + "type": "gpio", + "is_master": true + } + }, + "pads": { + "pad_sdio_clk": { + "id": 0, + "position": null, + "alternates": [ + {}, + {}, + {}, + {} + ] + }, + "pad_sdio_cmd": { + "id": 0, + "position": null, + "alternates": [ + {}, + {}, + {}, + {} + ] + }, + "pad_sdio_data0": { + "id": 0, + "position": null, + "alternates": [ + {}, + {}, + {}, + {} + ] + }, + "pad_sdio_data1": { + "id": 0, + "position": null, + "alternates": [ + {}, + {}, + {}, + {} + ] + }, + "pad_sdio_data2": { + "id": 0, + "position": null, + "alternates": [ + {}, + {}, + {}, + {} + ] + }, + "pad_sdio_data3": { + "id": 0, + "position": null, + "alternates": [ + {}, + {}, + {}, + {} + ] + }, + "pad_spim_sdio0": { + "id": 0, + "position": null, + "alternates": [ + {}, + {}, + {}, + {} + ] + }, + "pad_spim_sdio1": { + "id": 0, + "position": null, + "alternates": [ + {}, + {}, + {}, + {} + ] + }, + "pad_spim_sdio2": { + "id": 0, + "position": null, + "alternates": [ + {}, + {}, + {}, + {} + ] + }, + "pad_spim_sdio3": { + "id": 0, + "position": null, + "alternates": [ + {}, + {}, + {}, + {} + ] + }, + "pad_spim_csn0": { + "id": 0, + "position": null, + "alternates": [ + {}, + {}, + {}, + {} + ] + }, + "pad_spim_csn1": { + "id": 0, + "position": null, + "alternates": [ + {}, + {}, + {}, + {} + ] + }, + "pad_spim_sck": { + "id": 0, + "position": null, + "alternates": [ + {}, + {}, + {}, + {} + ] + }, + "pad_i2s0_sck": { + "id": 0, + "position": null, + "alternates": [ + {}, + {}, + {}, + {} + ] + }, + "pad_i2s0_ws": { + "id": 0, + "position": null, + "alternates": [ + {}, + {}, + {}, + {} + ] + }, + "pad_i2s0_sdi": { + "id": 0, + "position": null, + "alternates": [ + {}, + {}, + {}, + {} + ] + }, + "pad_i2s1_sdi": { + "id": 0, + "position": null, + "alternates": [ + {}, + {}, + {}, + {} + ] + }, + "pad_cam_pclk": { + "id": 0, + "position": null, + "alternates": [ + {}, + {}, + {}, + {} + ] + }, + "pad_cam_hsync": { + "id": 0, + "position": null, + "alternates": [ + {}, + {}, + {}, + {} + ] + }, + "pad_cam_data0": { + "id": 0, + "position": null, + "alternates": [ + {}, + {}, + {}, + {} + ] + }, + "pad_cam_data1": { + "id": 0, + "position": null, + "alternates": [ + {}, + {}, + {}, + {} + ] + }, + "pad_cam_data2": { + "id": 0, + "position": null, + "alternates": [ + {}, + {}, + {}, + {} + ] + }, + "pad_cam_data3": { + "id": 0, + "position": null, + "alternates": [ + {}, + {}, + {}, + {} + ] + }, + "pad_cam_data4": { + "id": 0, + "position": null, + "alternates": [ + {}, + {}, + {}, + {} + ] + }, + "pad_cam_data5": { + "id": 0, + "position": null, + "alternates": [ + {}, + {}, + {}, + {} + ] + }, + "pad_cam_data6": { + "id": 0, + "position": null, + "alternates": [ + {}, + {}, + {}, + {} + ] + }, + "pad_cam_data7": { + "id": 0, + "position": null, + "alternates": [ + {}, + {}, + {}, + {} + ] + }, + "pad_cam_vsync": { + "id": 0, + "position": null, + "alternates": [ + {}, + {}, + {}, + {} + ] + }, + "pad_i2c0_sda": { + "id": 0, + "position": null, + "alternates": [ + {}, + {}, + {}, + {} + ] + }, + "pad_i2c0_scl": { + "id": 0, + "position": null, + "alternates": [ + {}, + {}, + {}, + {} + ] + }, + "pad_uart_rx": { + "id": 0, + "position": null, + "alternates": [ + {}, + {}, + {}, + {} + ] + }, + "pad_uart_tx": { + "id": 0, + "position": null, + "alternates": [ + {}, + {}, + {}, + {} + ] + }, + "pad_reset_n": { + "id": 0, + "position": null, + "alternates": [ + {}, + {}, + {}, + {} + ] + }, + "pad_bootsel": { + "id": 0, + "position": null, + "alternates": [ + {}, + {}, + {}, + {} + ] + }, + "pad_jtag_tck": { + "id": 0, + "position": null, + "alternates": [ + {}, + {}, + {}, + {} + ] + }, + "pad_jtag_tdi": { + "id": 0, + "position": null, + "alternates": [ + {}, + {}, + {}, + {} + ] + }, + "pad_jtag_tdo": { + "id": 0, + "position": null, + "alternates": [ + {}, + {}, + {}, + {} + ] + }, + "pad_jtag_tms": { + "id": 0, + "position": null, + "alternates": [ + {}, + {}, + {}, + {} + ] + }, + "pad_jtag_trst": { + "id": 0, + "position": null, + "alternates": [ + {}, + {}, + {}, + {} + ] + }, + "pad_xtal_in": { + "id": 0, + "position": null, + "alternates": [ + {}, + {}, + {}, + {} + ] + } + }, + "vp_ports": [ + "ref_clock", + "spim0_cs0_data_pad", + "spim0_cs0_pad", + "spim0_cs1_data_pad", + "spim0_cs1_pad", + "uart0_pad", + "jtag0", + "cpi0", + "i2c0_pad", + "i2c1_pad", + "i2s0", + "i2s1", + "gpio0_pad", + "gpio1_pad", + "gpio2_pad", + "gpio3_pad", + "gpio4_pad", + "gpio5_pad", + "gpio6_pad", + "gpio7_pad", + "gpio8_pad", + "gpio9_pad", + "gpio10_pad", + "gpio11_pad", + "gpio12_pad", + "gpio13_pad", + "gpio14_pad", + "gpio15_pad", + "gpio16_pad", + "gpio17_pad", + "gpio18_pad", + "gpio19_pad", + "gpio20_pad", + "gpio21_pad", + "gpio22_pad", + "gpio23_pad", + "gpio24_pad", + "gpio25_pad", + "gpio26_pad", + "gpio27_pad", + "gpio28_pad", + "gpio29_pad", + "gpio30_pad", + "gpio31_pad", + "ref_clock_pad", + "clock", + "spim0", + "uart0", + "jtag0_out", + "jtag0_pad", + "cpi0_pad", + "i2c0", + "i2c1", + "i2s0_pad", + "i2s1_pad" + ] + }, + "soc_clock": { + "vp_class": "vp/clock_domain", + "frequency": 50000000, + "vp_ports": [ + "out", + "clock_in" + ] + }, + "soc": { + "nb_cluster": 1, + "vp_class": "pulp/soc", + "peripherals_base": "0x1A100000", + "soc_events_ids": { + "soc_evt_spim0_rx": 0, + "soc_evt_spim0_tx": 1, + "soc_evt_spim1_rx": 2, + "soc_evt_spim1_tx": 3, + "soc_evt_hyper0_rx": 4, + "soc_evt_hyper0_tx": 5, + "soc_evt_uart0_rx": 6, + "soc_evt_uart0_tx": 7, + "soc_evt_i2c0_rx": 8, + "soc_evt_i2c0_tx": 9, + "soc_evt_i2c1_rx": 10, + "soc_evt_i2c1_tx": 11, + "soc_evt_i2s_ch0": 12, + "soc_evt_i2s_ch1": 13, + "soc_evt_cam0": 14, + "soc_evt_spim0_eot": 22, + "soc_evt_l2l2_eot": 23, + "soc_evt_uart_eot": 25, + "soc_evt_i2c0_extra": 26, + "soc_evt_i2c1_extra": 27, + "soc_evt_i2s_extra": 28, + "soc_evt_cam0_eot": 29, + "soc_evt_cluster_pok": 31, + "soc_evt_cluster_not_busy": 34, + "soc_evt_cluster_cg_ok": 35, + "soc_evt_picl_ok": 36, + "soc_evt_scu_ok": 37, + "soc_evt_adv_timer0": 38, + "soc_evt_adv_timer1": 39, + "soc_evt_adv_timer2": 40, + "soc_evt_adv_timer3": 41, + "soc_evt_gpio": 42, + "soc_evt_rtc_apb": 43, + "soc_evt_rtc": 44, + "soc_evt_ref_clock": 56, + "soc_evt_sw_first": 48, + "soc_evt_sw_nb": 8, + "soc_evt_pmu0": 31 + }, + "fc_events": { + "evt_sw_event0": 0, + "evt_sw_event2": 2, + "evt_sw_event1": 1, + "evt_sw_event3": 3, + "evt_sw_event4": 4, + "evt_sw_event5": 5, + "evt_sw_event6": 6, + "evt_sw_event7": 7, + "evt_timer0": 10, + "evt_timer1": 11, + "evt_clkref": 14, + "evt_gpio": 15, + "evt_rtc": 16, + "evt_adv_timer0": 17, + "evt_adv_timer1": 18, + "evt_adv_timer2": 19, + "evt_adv_timer3": 20, + "evt_cluster_not_busy": 21, + "evt_cluster_pok": 22, + "evt_cluster_cg_ok": 23, + "evt_picl_ok": 24, + "evt_scu_ok": 25, + "evt_soc_evt": 26, + "evt_queue_error": 29 + }, + "vp_comps": [ + "axi_ico", + "soc_ico", + "apb_ico", + "fc_ico", + "fc", + "l2", + "l2_priv0", + "l2_priv1", + "l2_shared", + "l2_shared_0", + "l2_shared_1", + "l2_shared_2", + "l2_shared_3", + "rom", + "plt_loader", + "fc_itc", + "fll", + "fll_periph", + "fll_cluster", + "fll_ctrl", + "apb_soc_ctrl", + "stdout", + "gpio", + "timer", + "hwme", + "soc_eu", + "udma", + "uart", + "fc_debug", + "riscv_tap", + "debug_rom", + "pulp_tap", + "periph_clock" + ], + "vp_ports": [ + "ref_clock", + "gpio0", + "gpio1", + "gpio2", + "gpio3", + "gpio4", + "gpio5", + "gpio6", + "gpio7", + "gpio8", + "gpio9", + "gpio10", + "gpio11", + "gpio12", + "gpio13", + "gpio14", + "gpio15", + "gpio16", + "gpio17", + "gpio18", + "gpio19", + "gpio20", + "gpio21", + "gpio22", + "gpio23", + "gpio24", + "gpio25", + "gpio26", + "gpio27", + "gpio28", + "gpio29", + "gpio30", + "gpio31", + "event", + "scu_ok", + "picl_ok", + "dma_irq", + "soc_input", + "i2s0", + "i2s1", + "cpi0", + "jtag0", + "cluster_fll", + "cluster_input", + "spim0", + "uart0", + "jtag0_out", + "i2c0", + "i2c1", + "fll_soc_clock", + "clock" + ], + "vp_bindings": [ + [ + "self->ref_clock", + "fll->ref_clock" + ], + [ + "self->ref_clock", + "fll_periph->ref_clock" + ], + [ + "self->ref_clock", + "fll_cluster->ref_clock" + ], + [ + "self->ref_clock", + "timer->ref_clock" + ], + [ + "self->ref_clock", + "soc_eu->ref_clock" + ], + [ + "self->gpio0", + "gpio->gpio0" + ], + [ + "self->gpio1", + "gpio->gpio1" + ], + [ + "self->gpio2", + "gpio->gpio2" + ], + [ + "self->gpio3", + "gpio->gpio3" + ], + [ + "self->gpio4", + "gpio->gpio4" + ], + [ + "self->gpio5", + "gpio->gpio5" + ], + [ + "self->gpio6", + "gpio->gpio6" + ], + [ + "self->gpio7", + "gpio->gpio7" + ], + [ + "self->gpio8", + "gpio->gpio8" + ], + [ + "self->gpio9", + "gpio->gpio9" + ], + [ + "self->gpio10", + "gpio->gpio10" + ], + [ + "self->gpio11", + "gpio->gpio11" + ], + [ + "self->gpio12", + "gpio->gpio12" + ], + [ + "self->gpio13", + "gpio->gpio13" + ], + [ + "self->gpio14", + "gpio->gpio14" + ], + [ + "self->gpio15", + "gpio->gpio15" + ], + [ + "self->gpio16", + "gpio->gpio16" + ], + [ + "self->gpio17", + "gpio->gpio17" + ], + [ + "self->gpio18", + "gpio->gpio18" + ], + [ + "self->gpio19", + "gpio->gpio19" + ], + [ + "self->gpio20", + "gpio->gpio20" + ], + [ + "self->gpio21", + "gpio->gpio21" + ], + [ + "self->gpio22", + "gpio->gpio22" + ], + [ + "self->gpio23", + "gpio->gpio23" + ], + [ + "self->gpio24", + "gpio->gpio24" + ], + [ + "self->gpio25", + "gpio->gpio25" + ], + [ + "self->gpio26", + "gpio->gpio26" + ], + [ + "self->gpio27", + "gpio->gpio27" + ], + [ + "self->gpio28", + "gpio->gpio28" + ], + [ + "self->gpio29", + "gpio->gpio29" + ], + [ + "self->gpio30", + "gpio->gpio30" + ], + [ + "self->gpio31", + "gpio->gpio31" + ], + [ + "self->event", + "soc_eu->event_in" + ], + [ + "self->scu_ok", + "fc_itc->in_event_25" + ], + [ + "self->picl_ok", + "fc_itc->in_event_24" + ], + [ + "self->dma_irq", + "fc_itc->in_event_8" + ], + [ + "self->soc_input", + "axi_ico->input" + ], + [ + "self->i2s0", + "udma->i2s0" + ], + [ + "self->i2s1", + "udma->i2s1" + ], + [ + "self->cpi0", + "udma->cpi0" + ], + [ + "self->jtag0", + "riscv_tap->jtag_in" + ], + [ + "axi_ico->cluster", + "self->cluster_input" + ], + [ + "axi_ico->soc", + "soc_ico->axi_slave" + ], + [ + "soc_ico->apb", + "apb_ico->input" + ], + [ + "soc_ico->axi_master", + "axi_ico->input" + ], + [ + "soc_ico->l2_shared_0", + "l2_shared_0->input" + ], + [ + "soc_ico->l2_shared_1", + "l2_shared_1->input" + ], + [ + "soc_ico->l2_shared_2", + "l2_shared_2->input" + ], + [ + "soc_ico->l2_shared_3", + "l2_shared_3->input" + ], + [ + "soc_ico->l2_priv0", + "l2_priv0->input" + ], + [ + "soc_ico->l2_priv1", + "l2_priv1->input" + ], + [ + "apb_ico->gpio", + "gpio->input" + ], + [ + "apb_ico->debug_rom", + "debug_rom->input" + ], + [ + "apb_ico->fc_dbg_unit", + "riscv_tap->input" + ], + [ + "apb_ico->fc_dbg_unit", + "fc->dbg_unit" + ], + [ + "apb_ico->stdout", + "stdout->input" + ], + [ + "apb_ico->fll", + "fll->input" + ], + [ + "apb_ico->fll_periph", + "fll_periph->input" + ], + [ + "apb_ico->fll_cluster", + "fll_cluster->input" + ], + [ + "apb_ico->udma", + "udma->input" + ], + [ + "apb_ico->soc_eu", + "soc_eu->input" + ], + [ + "apb_ico->apb_soc_ctrl", + "apb_soc_ctrl->input" + ], + [ + "apb_ico->fc_itc", + "fc_itc->input" + ], + [ + "apb_ico->fc_timer", + "timer->input" + ], + [ + "apb_ico->rom", + "rom->input" + ], + [ + "fc->fetch", + "soc_ico->fc_fetch" + ], + [ + "fc->data", + "soc_ico->fc_data" + ], + [ + "fc->irq_ack", + "fc_itc->irq_ack" + ], + [ + "plt_loader->out", + "soc_ico->debug" + ], + [ + "fc_itc->irq_req", + "fc->irq_req" + ], + [ + "fll->clock_out", + "self->fll_soc_clock" + ], + [ + "fll_periph->clock_out", + "periph_clock->clock_in" + ], + [ + "fll_cluster->clock_out", + "self->cluster_fll" + ], + [ + "apb_soc_ctrl->bootaddr", + "fc->bootaddr" + ], + [ + "apb_soc_ctrl->event", + "soc_eu->event_in" + ], + [ + "apb_soc_ctrl->confreg_soc", + "pulp_tap->confreg_soc" + ], + [ + "gpio->event", + "soc_eu->event_in" + ], + [ + "gpio->irq", + "fc_itc->in_event_15" + ], + [ + "timer->irq_itf_0", + "fc_itc->in_event_10" + ], + [ + "timer->irq_itf_1", + "fc_itc->in_event_11" + ], + [ + "soc_eu->ref_clock_event", + "fc_itc->in_event_14" + ], + [ + "soc_eu->fc_event_itf", + "fc_itc->soc_event" + ], + [ + "udma->l2_itf", + "soc_ico->udma_tx" + ], + [ + "udma->event_itf", + "soc_eu->event_in" + ], + [ + "udma->spim0", + "self->spim0" + ], + [ + "udma->i2c0", + "self->i2c0" + ], + [ + "udma->i2c1", + "self->i2c1" + ], + [ + "udma->uart0", + "self->uart0" + ], + [ + "riscv_tap->fc", + "fc->halt" + ], + [ + "riscv_tap->jtag_out", + "pulp_tap->jtag_in" + ], + [ + "pulp_tap->jtag_out", + "self->jtag0_out" + ], + [ + "pulp_tap->io", + "soc_ico->debug" + ], + [ + "pulp_tap->confreg_ext", + "apb_soc_ctrl->confreg_ext" + ], + [ + "periph_clock->out", + "udma->periph_clock" + ] + ], + "axi_ico": { + "vp_class": "interco/router", + "bandwidth": 4, + "latency": 9, + "id": 0, + "mappings": { + "soc": { + "base": "0x1A000000", + "size": "0x06000000" + }, + "cluster": { + "base": "0x10000000", + "size": "0x400000" + } + }, + "vp_ports": [ + "cluster", + "soc", + "input" + ] + }, + "soc_ico": { + "nb_l2_shared_banks": 4, + "gv_class": "pulp.Soc_Ico_v2.Soc_Ico", + "vp_class": null, + "vp_comps": [ + "ll_ico", + "hb_ico", + "fc_fetch_ico", + "fc_data_ico", + "udma_rx_ico", + "udma_tx_ico" + ], + "vp_ports": [ + "debug", + "axi_slave", + "fc_fetch", + "fc_data", + "udma_tx", + "apb", + "axi_master", + "l2_shared_0", + "l2_shared_1", + "l2_shared_2", + "l2_shared_3", + "l2_priv0", + "l2_priv1" + ], + "vp_bindings": [ + [ + "self->debug", + "ll_ico->input" + ], + [ + "self->axi_slave", + "ll_ico->input" + ], + [ + "self->fc_fetch", + "fc_fetch_ico->input" + ], + [ + "self->fc_data", + "fc_data_ico->input" + ], + [ + "self->udma_tx", + "udma_tx_ico->input" + ], + [ + "ll_ico->apb", + "self->apb" + ], + [ + "ll_ico->rom", + "self->apb" + ], + [ + "ll_ico->l2_priv0", + "self->l2_priv0" + ], + [ + "ll_ico->l2_priv0_alias", + "self->l2_priv0" + ], + [ + "ll_ico->l2_priv1", + "self->l2_priv1" + ], + [ + "ll_ico->l2_shared", + "hb_ico->input" + ], + [ + "ll_ico->axi_master", + "self->axi_master" + ], + [ + "hb_ico->out_0", + "self->l2_shared_0" + ], + [ + "hb_ico->out_1", + "self->l2_shared_1" + ], + [ + "hb_ico->out_2", + "self->l2_shared_2" + ], + [ + "hb_ico->out_3", + "self->l2_shared_3" + ], + [ + "fc_fetch_ico->l2_shared", + "hb_ico->input" + ], + [ + "fc_fetch_ico->ll_ico", + "ll_ico->input" + ], + [ + "fc_data_ico->l2_shared", + "hb_ico->input" + ], + [ + "fc_data_ico->ll_ico", + "ll_ico->input" + ], + [ + "udma_rx_ico->l2_shared", + "hb_ico->input" + ], + [ + "udma_rx_ico->ll_ico", + "ll_ico->input" + ], + [ + "udma_tx_ico->l2_shared", + "hb_ico->input" + ], + [ + "udma_tx_ico->ll_ico", + "ll_ico->input" + ] + ], + "ll_ico": { + "vp_class": "interco/router", + "bandwidth": 4, + "latency": 0, + "id": 0, + "mappings": { + "apb": { + "base": "0x1A100000", + "size": "0x00100000" + }, + "rom": { + "base": "0x1A000000", + "size": "0x00002000" + }, + "axi_master": { + "base": "0x10000000", + "size": "0x400000" + }, + "l2_priv0": { + "base": "0x1C000000", + "size": "0x00008000", + "remove_offset": "0x1C000000" + }, + "l2_priv0_alias": { + "base": "0x00000000", + "size": "0x00008000" + }, + "l2_priv1": { + "base": "0x1C008000", + "size": "0x00008000", + "remove_offset": "0x1C008000" + }, + "l2_shared": { + "base": "0x1C010000", + "size": "0x00070000" + } + }, + "vp_ports": [ + "apb", + "rom", + "l2_priv0", + "l2_priv0_alias", + "l2_priv1", + "l2_shared", + "axi_master", + "input" + ] + }, + "hb_ico": { + "vp_class": "interco/interleaver", + "nb_slaves": 4, + "nb_masters": 0, + "interleaving_bits": 2, + "stage_bits": 0, + "remove_offset": "0x1C010000", + "vp_ports": [ + "out_0", + "out_1", + "out_2", + "out_3", + "input" + ] + }, + "fc_fetch_ico": { + "vp_class": "interco/router", + "bandwidth": 4, + "latency": 0, + "id": 0, + "mappings": { + "l2_shared": { + "base": "0x1C010000", + "size": "0x00070000" + }, + "ll_ico": {} + }, + "vp_ports": [ + "l2_shared", + "ll_ico", + "input" + ] + }, + "fc_data_ico": { + "vp_class": "interco/router", + "bandwidth": 4, + "latency": 0, + "id": 0, + "mappings": { + "l2_shared": { + "base": "0x1C010000", + "size": "0x00070000" + }, + "ll_ico": {} + }, + "vp_ports": [ + "l2_shared", + "ll_ico", + "input" + ] + }, + "udma_rx_ico": { + "vp_class": "interco/router", + "bandwidth": 4, + "latency": 0, + "id": 0, + "mappings": { + "l2_shared": { + "base": "0x1C010000", + "size": "0x00070000" + }, + "ll_ico": {} + }, + "vp_ports": [ + "l2_shared", + "ll_ico" + ] + }, + "udma_tx_ico": { + "vp_class": "interco/router", + "bandwidth": 4, + "latency": 0, + "id": 0, + "mappings": { + "l2_shared": { + "base": "0x1C010000", + "size": "0x00070000" + }, + "ll_ico": {} + }, + "vp_ports": [ + "l2_shared", + "ll_ico", + "input" + ] + } + }, + "apb_ico": { + "vp_class": "interco/router", + "bandwidth": 4, + "latency": 8, + "id": 0, + "mappings": { + "stdout": { + "base": "0x1A10F000", + "size": "0x00001000", + "remove_offset": "0x1A10F000" + }, + "apb_soc_ctrl": { + "base": "0x1A104000", + "size": "0x00001000", + "remove_offset": "0x1A104000" + }, + "soc_eu": { + "base": "0x1A106000", + "size": "0x00001000", + "remove_offset": "0x1A106000" + }, + "gpio": { + "base": "0x1A101000", + "size": "0x00001000", + "remove_offset": "0x1A101000" + }, + "fll": { + "base": "0x1A100000", + "size": "0x00000010", + "remove_offset": "0x1A100000" + }, + "fll_periph": { + "base": "0x1A100010", + "size": "0x00000010", + "remove_offset": "0x1A100010" + }, + "fll_cluster": { + "base": "0x1A100020", + "size": "0x00000010", + "remove_offset": "0x1A100020" + }, + "udma": { + "base": "0x1A102000", + "size": "0x00002000", + "remove_offset": "0x1A102000" + }, + "fc_itc": { + "base": "0x1A109800", + "size": "0x00000800", + "remove_offset": "0x1A109800" + }, + "fc_debug": { + "base": "0x1A110000", + "size": "0x00008000", + "remove_offset": "0x1A110000" + }, + "fc_timer": { + "base": "0x1A10B000", + "size": "0x00001000", + "remove_offset": "0x1A10B000" + }, + "fc_dbg_unit": { + "base": "0x1A110000", + "size": "0x00008000", + "remove_offset": "0x1A110000" + }, + "rom": { + "base": "0x1A000000", + "size": "0x00002000", + "remove_offset": "0x1A000000" + }, + "debug_rom": { + "base": "0x1A190800", + "size": "0x00000800", + "remove_offset": "0x1A190800" + } + }, + "vp_ports": [ + "gpio", + "debug_rom", + "fc_dbg_unit", + "stdout", + "fll", + "fll_periph", + "fll_cluster", + "udma", + "soc_eu", + "apb_soc_ctrl", + "fc_itc", + "fc_timer", + "rom", + "input" + ] + }, + "fc_ico": { + "l2_alias": true + }, + "fc": { + "version": "ri5cyv2", + "bootaddr_offset": "0x00", + "archi": "riscv", + "implementation": "ri5cy", + "gv_isa": [ + "--pulp", + "--rv32m", + "--pulpv2", + "--pulp-perf-counters", + "--pulp-hw-loop", + "--itc-external-req", + "--fpu", + "--fpud", + "--shared-fpu" + ], + "isa": "rv32imfcXpulpv2Xf8Xf16XfvecXfauxXf16altXgap9", + "march": "imfcXpulpv2Xf8Xf16XfvecXfauxXf16alt", + "priv_version": 1.9, + "perf_counters": true, + "first_ext_counter": 12, + "features": [ + "misaligned", + "perf" + ], + "hal_files": [ + "hal/riscv/riscv_v5.h", + "hal/riscv/types.h" + ], + "archi_files": [ + "archi/riscv/priv_1_10.h", + "archi/riscv/builtins_v2.h", + "archi/riscv/builtins_v2_emu.h", + "archi/riscv/pcer_v2.h" + ], + "defines": [ + "ARCHI_CORE_HAS_PULPV2", + "CORE_PULP_BUILTINS", + "ARCHI_CORE_HAS_1_10" + ], + "vp_class": "cpu/iss/iss", + "first_external_pcer": 12, + "riscv_dbg_unit": true, + "debug_binaries": [], + "debug_handler": "0x1a190800", + "power_models": { + "clock_gated": { + "type": "linear", + "unit": "W", + "values": { + "25": { + "1.2": { + "any": "0.0000016" + } + } + } + }, + "insn": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.4854524" + }, + "1.1": { + "any": "1.2" + } + } + } + }, + "leakage": { + "type": "linear", + "unit": "W", + "values": { + "25": { + "1.2": { + "any": "0.000030" + } + } + } + } + }, + "iss_class": "iss_riscy_v2_5_single_regfile", + "cluster_id": 31, + "core_id": 0, + "fetch_enable": true, + "boot_addr": "0x1A000080", + "vp_ports": [ + "fetch", + "data", + "irq_ack", + "halt", + "dbg_unit", + "bootaddr", + "irq_req" + ] + }, + "l2": { + "is_partitioned": true, + "nb_shared_banks": 4, + "map_base": "0x1C000000", + "map_size": "0x00080000", + "size": "0x00080000" + }, + "l2_priv0": { + "size": 32768, + "map_base": "0x1C000000", + "map_size": "0x00008000", + "vp_class": "memory/memory", + "vp_ports": [ + "input" + ] + }, + "l2_priv1": { + "size": 32768, + "map_base": "0x1C008000", + "map_size": "0x00008000", + "vp_class": "memory/memory", + "vp_ports": [ + "input" + ] + }, + "l2_shared": { + "nb_banks": 4, + "size": 458752, + "map_base": "0x1C010000", + "map_size": "0x00070000" + }, + "l2_shared_0": { + "size": 114688, + "vp_class": "memory/memory", + "vp_ports": [ + "input" + ] + }, + "l2_shared_1": { + "size": 114688, + "vp_class": "memory/memory", + "vp_ports": [ + "input" + ] + }, + "l2_shared_2": { + "size": 114688, + "vp_class": "memory/memory", + "vp_ports": [ + "input" + ] + }, + "l2_shared_3": { + "size": 114688, + "vp_class": "memory/memory", + "vp_ports": [ + "input" + ] + }, + "rom": { + "version": 2, + "hal_files": [ + "hal/rom/rom_v2.h" + ], + "size": 8192, + "map_base": "0x1A000000", + "map_size": "0x00002000", + "vp_class": "memory/memory", + "vp_ports": [ + "input" + ] + }, + "plt_loader": { + "vp_class": "utils/loader", + "binaries": [], + "vp_ports": [ + "out" + ] + }, + "fc_itc": { + "version": 1, + "vp_class": "pulp/itc/itc_v1", + "nb_fifo_events": 8, + "fifo_irq": 26, + "regmap": { + "mask": { + "type": "register", + "offset": "0x00", + "width": 32, + "desc": "" + }, + "mask_set": { + "type": "register", + "offset": "0x04", + "width": 32, + "desc": "" + }, + "mask_clr": { + "type": "register", + "offset": "0x08", + "width": 32, + "desc": "" + }, + "status": { + "type": "register", + "offset": "0x0C", + "width": 32, + "desc": "" + }, + "status_set": { + "type": "register", + "offset": "0x10", + "width": 32, + "desc": "" + }, + "status_clr": { + "type": "register", + "offset": "0x14", + "width": 32, + "desc": "" + }, + "ack": { + "type": "register", + "offset": "0x18", + "width": 32, + "desc": "" + }, + "ack_set": { + "type": "register", + "offset": "0x1C", + "width": 32, + "desc": "" + }, + "ack_clr": { + "type": "register", + "offset": "0x20", + "width": 32, + "desc": "" + }, + "fifo": { + "type": "register", + "offset": "0x24", + "width": 32, + "desc": "" + } + }, + "vp_ports": [ + "irq_req", + "in_event_15", + "in_event_14", + "input", + "irq_ack", + "in_event_25", + "in_event_24", + "in_event_8", + "in_event_10", + "in_event_11", + "soc_event" + ] + }, + "fll": { + "version": 1, + "vp_class": "pulp/fll/fll_v1", + "hal_files": [ + "hal/fll/fll_v1.h" + ], + "archi_files": [ + "archi/fll/fll_v1.h" + ], + "regmap": { + "status": { + "desc": "Return the current status of the FLL", + "type": "register", + "offset": "0x00", + "width": 32, + "reset": "0x00000000", + "content": { + "actual_mult": { + "bit": 0, + "width": 16, + "access": "R/W", + "name": "Actual multiplication factor.", + "desc": "Returns the current multiplication factor (i.e., current frequency), which is measured out of the DCO at each clock ref cycle." + } + } + }, + "conf1": { + "desc": "Configuration register I", + "type": "register", + "offset": "0x00", + "width": 32, + "reset": "0x454C05F5", + "content": { + "mult_factor": { + "bit": 0, + "width": 16, + "access": "R/W", + "name": "Target clock multiplication factor for normal mode.", + "desc": "When using normal mode, this sets the target multiplication factor, i.e. the one that the feedback will try to reach by tuning the DCO input code." + }, + "dco_input": { + "bit": 16, + "width": 10, + "access": "R/W", + "name": "DCO input code for stand-alone mode.", + "desc": "When using the stand-alone mode, this sets the DCO input code, i.e. this sets the output frequency of the DCO. See the transfer function to get more details about the relationship between output frequency and DCO input code." + }, + "div": { + "bit": 26, + "width": 4, + "access": "R/W", + "name": "FLL output clock divider setting.", + "desc": "This sets the divider between the FLL output frequency and the DCO output frequency. 0 means no division." + }, + "lock_en": { + "bit": 30, + "width": 1, + "access": "R/W", + "name": "FLL output gated by LOCK signal (active high)", + "desc": "When active, the FLL is producing the output clock signal only if the produced frequency is within the lock tolerance." + }, + "mode": { + "bit": 31, + "width": 1, + "access": "R/W", + "name": "Operation mode select (0=stand-alone, 1=normal).", + "desc": "The normal mode is using a feedback loop to reach the requested frequency while the stand-alone mode is directly using the output of the DCO to get a frequency proportional to the given DCO input code." + } + } + }, + "conf2": { + "desc": "Configuration register II", + "type": "register", + "offset": "0x00", + "width": 32, + "reset": "0x02004109", + "content": { + "gain": { + "bit": 0, + "width": 4, + "access": "R/W", + "name": "FLL loop gain setting (default: 2^-8 = 1/256).", + "desc": "When using normal mode, this defines the gain applied to the difference between the specified multiplication factor and the actual one, before it is provided to the loop filter." + }, + "deassert_cycles": { + "bit": 4, + "width": 6, + "access": "R/W", + "name": "De-assert cycles", + "desc": "In normal mode, this gives the number of unstable ref-clock cycles (i.e. out of the tolerance) until the lock is de-asserted. In stand-alone mode, this gives the lower 6-bit of the LOCK assert counter target, after which the FLL starts producing a clock." + }, + "assert_cycles": { + "bit": 10, + "width": 6, + "access": "R/W", + "name": "Assert cycles", + "desc": "In normal mode, this gives the number of stable ref-clock cycles (i.e. within the tolerance) after which the lock is asserted. In stand-alone mode, this gives the upper 6-bit of LOCK assert counter target, after which the FLL starts producing a clock." + }, + "tolerance": { + "bit": 16, + "width": 12, + "access": "R/W", + "name": "Lock tolerance", + "desc": "this gives the margin around the target multiplication factor within which the output clock is considered stable." + }, + "reserved0": { + "bit": 28, + "width": 1, + "access": "R/W" + }, + "sta_clock": { + "bit": 29, + "width": 1, + "access": "R/W", + "name": "Config clock select in STA mode (0=DCOCLK, 1=REFCLK).", + "desc": "In stand-alone mode, this specifies the clock driving the configuration registers (either ref-clock or DCO clock)." + }, + "open_lock": { + "bit": 30, + "width": 1, + "access": "R/W", + "name": "Open-loop-when-locked (active high).", + "desc": "This switched to open loop mode when the output frequency is within the tolerance." + }, + "dithering": { + "bit": 31, + "width": 1, + "access": "R/W", + "name": "Dithering enable (active high).", + "desc": "Applies dither filter to the DCO input code to get one moe bit and improve the precision using noise generation." + } + } + }, + "integrator": { + "name": "Integrator register", + "type": "register", + "offset": "0x00", + "width": 32, + "reset": "0x00000000", + "content": { + "state_fract": { + "bit": 6, + "width": 10, + "access": "R/W", + "name": "Integrator state: fractional part (dither unit input)", + "desc": "This gives the fractional part of the integrator unit output used to compute the DCO input code. This corresponds to the input given to the dither unit." + }, + "state_int": { + "bit": 16, + "width": 10, + "access": "R/W", + "name": "Integrator state: integer part (DCO input bits)", + "desc": "This gives the integer part of the integrator unit output used to compute the DCO input code. This corresponds to the DCO input code before it is rounded with the dither unit output." + } + } + } + }, + "vp_ports": [ + "clock_out", + "ref_clock", + "input" + ] + }, + "fll_periph": { + "version": 1, + "vp_class": "pulp/fll/fll_v1", + "hal_files": [ + "hal/fll/fll_v1.h" + ], + "archi_files": [ + "archi/fll/fll_v1.h" + ], + "regmap": { + "status": { + "desc": "Return the current status of the FLL", + "type": "register", + "offset": "0x00", + "width": 32, + "reset": "0x00000000", + "content": { + "actual_mult": { + "bit": 0, + "width": 16, + "access": "R/W", + "name": "Actual multiplication factor.", + "desc": "Returns the current multiplication factor (i.e., current frequency), which is measured out of the DCO at each clock ref cycle." + } + } + }, + "conf1": { + "desc": "Configuration register I", + "type": "register", + "offset": "0x00", + "width": 32, + "reset": "0x454C05F5", + "content": { + "mult_factor": { + "bit": 0, + "width": 16, + "access": "R/W", + "name": "Target clock multiplication factor for normal mode.", + "desc": "When using normal mode, this sets the target multiplication factor, i.e. the one that the feedback will try to reach by tuning the DCO input code." + }, + "dco_input": { + "bit": 16, + "width": 10, + "access": "R/W", + "name": "DCO input code for stand-alone mode.", + "desc": "When using the stand-alone mode, this sets the DCO input code, i.e. this sets the output frequency of the DCO. See the transfer function to get more details about the relationship between output frequency and DCO input code." + }, + "div": { + "bit": 26, + "width": 4, + "access": "R/W", + "name": "FLL output clock divider setting.", + "desc": "This sets the divider between the FLL output frequency and the DCO output frequency. 0 means no division." + }, + "lock_en": { + "bit": 30, + "width": 1, + "access": "R/W", + "name": "FLL output gated by LOCK signal (active high)", + "desc": "When active, the FLL is producing the output clock signal only if the produced frequency is within the lock tolerance." + }, + "mode": { + "bit": 31, + "width": 1, + "access": "R/W", + "name": "Operation mode select (0=stand-alone, 1=normal).", + "desc": "The normal mode is using a feedback loop to reach the requested frequency while the stand-alone mode is directly using the output of the DCO to get a frequency proportional to the given DCO input code." + } + } + }, + "conf2": { + "desc": "Configuration register II", + "type": "register", + "offset": "0x00", + "width": 32, + "reset": "0x02004109", + "content": { + "gain": { + "bit": 0, + "width": 4, + "access": "R/W", + "name": "FLL loop gain setting (default: 2^-8 = 1/256).", + "desc": "When using normal mode, this defines the gain applied to the difference between the specified multiplication factor and the actual one, before it is provided to the loop filter." + }, + "deassert_cycles": { + "bit": 4, + "width": 6, + "access": "R/W", + "name": "De-assert cycles", + "desc": "In normal mode, this gives the number of unstable ref-clock cycles (i.e. out of the tolerance) until the lock is de-asserted. In stand-alone mode, this gives the lower 6-bit of the LOCK assert counter target, after which the FLL starts producing a clock." + }, + "assert_cycles": { + "bit": 10, + "width": 6, + "access": "R/W", + "name": "Assert cycles", + "desc": "In normal mode, this gives the number of stable ref-clock cycles (i.e. within the tolerance) after which the lock is asserted. In stand-alone mode, this gives the upper 6-bit of LOCK assert counter target, after which the FLL starts producing a clock." + }, + "tolerance": { + "bit": 16, + "width": 12, + "access": "R/W", + "name": "Lock tolerance", + "desc": "this gives the margin around the target multiplication factor within which the output clock is considered stable." + }, + "reserved0": { + "bit": 28, + "width": 1, + "access": "R/W" + }, + "sta_clock": { + "bit": 29, + "width": 1, + "access": "R/W", + "name": "Config clock select in STA mode (0=DCOCLK, 1=REFCLK).", + "desc": "In stand-alone mode, this specifies the clock driving the configuration registers (either ref-clock or DCO clock)." + }, + "open_lock": { + "bit": 30, + "width": 1, + "access": "R/W", + "name": "Open-loop-when-locked (active high).", + "desc": "This switched to open loop mode when the output frequency is within the tolerance." + }, + "dithering": { + "bit": 31, + "width": 1, + "access": "R/W", + "name": "Dithering enable (active high).", + "desc": "Applies dither filter to the DCO input code to get one moe bit and improve the precision using noise generation." + } + } + }, + "integrator": { + "name": "Integrator register", + "type": "register", + "offset": "0x00", + "width": 32, + "reset": "0x00000000", + "content": { + "state_fract": { + "bit": 6, + "width": 10, + "access": "R/W", + "name": "Integrator state: fractional part (dither unit input)", + "desc": "This gives the fractional part of the integrator unit output used to compute the DCO input code. This corresponds to the input given to the dither unit." + }, + "state_int": { + "bit": 16, + "width": 10, + "access": "R/W", + "name": "Integrator state: integer part (DCO input bits)", + "desc": "This gives the integer part of the integrator unit output used to compute the DCO input code. This corresponds to the DCO input code before it is rounded with the dither unit output." + } + } + } + }, + "vp_ports": [ + "clock_out", + "ref_clock", + "input" + ] + }, + "fll_cluster": { + "version": 1, + "vp_class": "pulp/fll/fll_v1", + "hal_files": [ + "hal/fll/fll_v1.h" + ], + "archi_files": [ + "archi/fll/fll_v1.h" + ], + "regmap": { + "status": { + "desc": "Return the current status of the FLL", + "type": "register", + "offset": "0x00", + "width": 32, + "reset": "0x00000000", + "content": { + "actual_mult": { + "bit": 0, + "width": 16, + "access": "R/W", + "name": "Actual multiplication factor.", + "desc": "Returns the current multiplication factor (i.e., current frequency), which is measured out of the DCO at each clock ref cycle." + } + } + }, + "conf1": { + "desc": "Configuration register I", + "type": "register", + "offset": "0x00", + "width": 32, + "reset": "0x454C05F5", + "content": { + "mult_factor": { + "bit": 0, + "width": 16, + "access": "R/W", + "name": "Target clock multiplication factor for normal mode.", + "desc": "When using normal mode, this sets the target multiplication factor, i.e. the one that the feedback will try to reach by tuning the DCO input code." + }, + "dco_input": { + "bit": 16, + "width": 10, + "access": "R/W", + "name": "DCO input code for stand-alone mode.", + "desc": "When using the stand-alone mode, this sets the DCO input code, i.e. this sets the output frequency of the DCO. See the transfer function to get more details about the relationship between output frequency and DCO input code." + }, + "div": { + "bit": 26, + "width": 4, + "access": "R/W", + "name": "FLL output clock divider setting.", + "desc": "This sets the divider between the FLL output frequency and the DCO output frequency. 0 means no division." + }, + "lock_en": { + "bit": 30, + "width": 1, + "access": "R/W", + "name": "FLL output gated by LOCK signal (active high)", + "desc": "When active, the FLL is producing the output clock signal only if the produced frequency is within the lock tolerance." + }, + "mode": { + "bit": 31, + "width": 1, + "access": "R/W", + "name": "Operation mode select (0=stand-alone, 1=normal).", + "desc": "The normal mode is using a feedback loop to reach the requested frequency while the stand-alone mode is directly using the output of the DCO to get a frequency proportional to the given DCO input code." + } + } + }, + "conf2": { + "desc": "Configuration register II", + "type": "register", + "offset": "0x00", + "width": 32, + "reset": "0x02004109", + "content": { + "gain": { + "bit": 0, + "width": 4, + "access": "R/W", + "name": "FLL loop gain setting (default: 2^-8 = 1/256).", + "desc": "When using normal mode, this defines the gain applied to the difference between the specified multiplication factor and the actual one, before it is provided to the loop filter." + }, + "deassert_cycles": { + "bit": 4, + "width": 6, + "access": "R/W", + "name": "De-assert cycles", + "desc": "In normal mode, this gives the number of unstable ref-clock cycles (i.e. out of the tolerance) until the lock is de-asserted. In stand-alone mode, this gives the lower 6-bit of the LOCK assert counter target, after which the FLL starts producing a clock." + }, + "assert_cycles": { + "bit": 10, + "width": 6, + "access": "R/W", + "name": "Assert cycles", + "desc": "In normal mode, this gives the number of stable ref-clock cycles (i.e. within the tolerance) after which the lock is asserted. In stand-alone mode, this gives the upper 6-bit of LOCK assert counter target, after which the FLL starts producing a clock." + }, + "tolerance": { + "bit": 16, + "width": 12, + "access": "R/W", + "name": "Lock tolerance", + "desc": "this gives the margin around the target multiplication factor within which the output clock is considered stable." + }, + "reserved0": { + "bit": 28, + "width": 1, + "access": "R/W" + }, + "sta_clock": { + "bit": 29, + "width": 1, + "access": "R/W", + "name": "Config clock select in STA mode (0=DCOCLK, 1=REFCLK).", + "desc": "In stand-alone mode, this specifies the clock driving the configuration registers (either ref-clock or DCO clock)." + }, + "open_lock": { + "bit": 30, + "width": 1, + "access": "R/W", + "name": "Open-loop-when-locked (active high).", + "desc": "This switched to open loop mode when the output frequency is within the tolerance." + }, + "dithering": { + "bit": 31, + "width": 1, + "access": "R/W", + "name": "Dithering enable (active high).", + "desc": "Applies dither filter to the DCO input code to get one moe bit and improve the precision using noise generation." + } + } + }, + "integrator": { + "name": "Integrator register", + "type": "register", + "offset": "0x00", + "width": 32, + "reset": "0x00000000", + "content": { + "state_fract": { + "bit": 6, + "width": 10, + "access": "R/W", + "name": "Integrator state: fractional part (dither unit input)", + "desc": "This gives the fractional part of the integrator unit output used to compute the DCO input code. This corresponds to the input given to the dither unit." + }, + "state_int": { + "bit": 16, + "width": 10, + "access": "R/W", + "name": "Integrator state: integer part (DCO input bits)", + "desc": "This gives the integer part of the integrator unit output used to compute the DCO input code. This corresponds to the DCO input code before it is rounded with the dither unit output." + } + } + } + }, + "vp_ports": [ + "clock_out", + "ref_clock", + "input" + ] + }, + "fll_ctrl": { + "version": 3, + "vp_class": "pulp/fll/fll_ctrl", + "gv_class": "pulp.Fll_ctrl.fll_ctrl" + }, + "apb_soc_ctrl": { + "version": 3, + "vp_class": "pulp/chips/pulp/apb_soc", + "hal_files": [ + "hal/apb_soc/apb_soc_v3.h" + ], + "regmap": { + "info": { + "offset": "0x000" + }, + "fcboot": { + "offset": "0x004" + }, + "fcfetch": { + "offset": "0x008" + }, + "clusiso": { + "offset": "0x000C" + }, + "padfun0": { + "offset": "0x010" + }, + "padfun1": { + "offset": "0x014" + }, + "padfun2": { + "offset": "0x018" + }, + "padfun3": { + "offset": "0x01C" + }, + "padcfg0": { + "offset": "0x020" + }, + "padcfg1": { + "offset": "0x024" + }, + "padcfg2": { + "offset": "0x028" + }, + "padcfg3": { + "offset": "0x02C" + }, + "padcfg4": { + "offset": "0x030" + }, + "padcfg5": { + "offset": "0x034" + }, + "padcfg6": { + "offset": "0x038" + }, + "padcfg7": { + "offset": "0x03C" + }, + "padcfg8": { + "offset": "0x040" + }, + "padcfg9": { + "offset": "0x044" + }, + "padcfg10": { + "offset": "0x048" + }, + "padcfg11": { + "offset": "0x04C" + }, + "padcfg12": { + "offset": "0x050" + }, + "padcfg13": { + "offset": "0x054" + }, + "padcfg14": { + "offset": "0x058" + }, + "padcfg15": { + "offset": "0x05C" + }, + "clusbusy": { + "offset": "0x6C" + }, + "jtagreg": { + "offset": "0x74" + }, + "l2_sleep": { + "offset": "0x78" + }, + "sleep_ctrl": { + "offset": "0x7C" + }, + "corestatus": { + "offset": "0xA0" + }, + "cs_ro": { + "offset": "0xC0" + }, + "bootsel": { + "offset": "0xC4" + }, + "clk_sel": { + "offset": "0xD0" + }, + "clk_div_soc": { + "offset": "0xD4" + }, + "clk_div_clu": { + "offset": "0xD8" + }, + "clk_div_per": { + "offset": "0xDC" + } + }, + "vp_ports": [ + "bootaddr", + "event", + "confreg_soc", + "input", + "confreg_ext" + ] + }, + "stdout": { + "version": 3, + "vp_class": "pulp/stdout/stdout_v3", + "archi_files": [ + "archi/stdout/stdout_v3.h" + ], + "max_cluster": 33, + "max_core_per_cluster": 16, + "vp_ports": [ + "input" + ] + }, + "gpio": { + "version": 3, + "nb_gpio": 32, + "vp_class": "pulp/gpio/gpio_v3", + "soc_event": 42, + "vp_ports": [ + "event", + "irq", + "input", + "gpio0", + "gpio1", + "gpio2", + "gpio3", + "gpio4", + "gpio5", + "gpio6", + "gpio7", + "gpio8", + "gpio9", + "gpio10", + "gpio11", + "gpio12", + "gpio13", + "gpio14", + "gpio15", + "gpio16", + "gpio17", + "gpio18", + "gpio19", + "gpio20", + "gpio21", + "gpio22", + "gpio23", + "gpio24", + "gpio25", + "gpio26", + "gpio27", + "gpio28", + "gpio29", + "gpio30", + "gpio31" + ] + }, + "timer": { + "version": 2, + "vp_class": "pulp/timer/timer_v2", + "hal_files": [ + "hal/timer/timer_v2.h" + ], + "archi_files": [ + "archi/timer/timer_v2.h" + ], + "vp_ports": [ + "irq_itf_0", + "irq_itf_1", + "ref_clock", + "input" + ] + }, + "hwme": { + "version": 1, + "hal_files": [ + "hal/hwme/hwme_v1.h" + ], + "archi_files": [ + "archi/hwme/hwme_v1.h" + ] + }, + "soc_eu": { + "version": 2, + "hal_files": [ + "hal/soc_eu/soc_eu_v2.h" + ], + "archi_files": [ + "archi/soc_eu/soc_eu_v2.h" + ], + "vp_class": "pulp/soc_eu/soc_eu_v2", + "properties": { + "nb_fc_events": 8, + "first_fc_event": 48 + }, + "ref_clock_event": 56, + "vp_ports": [ + "ref_clock_event", + "fc_event_itf", + "event_in", + "input", + "ref_clock" + ] + }, + "udma": { + "version": 3, + "archi": 3, + "vp_class": "pulp/udma/udma_v3", + "hal_files": [ + "hal/udma/udma_v3.h", + "hal/udma/cpi/udma_cpi_v1.h", + "hal/udma/i2c/udma_i2c_v2.h", + "hal/udma/spim/udma_spim_v3.h", + "hal/udma/uart/udma_uart_v1.h" + ], + "archi_files": [ + "archi/udma/udma_v3.h", + "archi/udma/cpi/udma_cpi_v1.h", + "archi/udma/i2c/udma_i2c_v2.h", + "archi/udma/i2s/udma_i2s_v2.h", + "archi/udma/spim/udma_spim_v3.h", + "archi/udma/uart/udma_uart_v1.h" + ], + "regmap": { + "channel": { + "type": "template", + "saddr": { + "type": "register", + "offset": "0x00", + "width": 32, + "desc": "uDMA start reg", + "content": { + "saddr": { + "bit": 0, + "width": 16, + "access": "R/W", + "reset": "0x0", + "desc": "Configure pointer to memory buffer:\n - Read: value of the pointer until transfer is over. Else returns 0\n - Write: set Address Pointer to memory buffer start address" + } + } + }, + "size": { + "type": "register", + "offset": "0x04", + "width": 32, + "desc": "uDMA size reg", + "content": { + "size": { + "bit": 0, + "width": 16, + "access": "R/W", + "reset": "0x0", + "desc": "Buffer size in DATASIZE. (128kBytes maximum)\n - Read: buffer size left\n - Write: set buffer size" + } + } + }, + "cfg": { + "type": "register", + "offset": "0x08", + "width": 32, + "desc": "uDMA config reg", + "content": { + "continuous": { + "bit": 0, + "width": 1, + "reset": "0x0", + "access": "R/W", + "desc": "Channel continuous mode:\n -1'b0: disable\n -1'b1: enable\nAt the end of the buffer the uDMA reloads the address and size and starts a new transfer." + }, + "datasize": { + "bit": 1, + "width": 2, + "reset": "0x0", + "access": "R/W", + "desc": "Channel transfer size used to increment uDMA buffer address pointer:\n - 2'b00: +1 (8 bits)\n - 2'b01: +2 (16 bits)\n - 2'b10: +4 (32 bits)\n - 2'b11: +0" + }, + "en": { + "bit": 4, + "width": 1, + "reset": "0x0", + "access": "R/W", + "desc": "Channel enable and start transfer:\n -1'b0: disable\n -1'b1: enable\nThis signal is used also to queue a transfer if one is already ongoing." + }, + "clr": { + "bit": 5, + "width": 1, + "reset": "0x0", + "access": "W", + "desc": "Channel clear and stop transfer:\n -1'b0: disable\n -1'b1: enable" + }, + "pending": { + "bit": 6, + "width": 1, + "reset": "0x0", + "access": "R", + "desc": "Transfer pending in queue status flag:\n -1'b0: free\n -1'b1: pending" + } + } + } + }, + "SPIM": { + "type": "template", + "RX": { + "type": "group", + "template": "channel", + "offset": "0x00", + "cfg": { + "content": { + "datasize": { + "access": "R", + "reset": "0x2" + } + } + } + }, + "TX": { + "type": "group", + "template": "channel", + "offset": "0x10" + } + }, + "SPIM0": { + "type": "group", + "template": "SPIM", + "offset": "0x100" + } + }, + "commands": { + "SPI_CMD_CFG": { + "desc": "Sets the configuration for the SPI Master IP", + "content": { + "CLKDIV": { + "bit": 0, + "width": 8, + "desc": "Sets the clock divider value" + }, + "CPHA": { + "bit": 8, + "width": 1, + "desc": "Sets the clock phase:\n - 1'b0: \n - 1'b1:" + }, + "CPOL": { + "bit": 9, + "width": 1, + "desc": "Sets the clock polarity:\n - 1'b0:\n - 1'b1:" + }, + "SPI_CMD": { + "bit": 28, + "width": 4, + "desc": "Select the SPIM command to be processed. Here CFG" + } + } + }, + "SPI_CMD_SOT": { + "desc": "Start of stream", + "content": { + "CS": { + "bit": 0, + "width": 2, + "desc": "Sets the Chip Select (CS):\n - 2'b00: select csn0\n - 2'b01: select csn1\n - 2'b10: select csn2\n - 2'b11: select csn3" + }, + "SPI_CMD": { + "bit": 28, + "width": 4, + "desc": "Select the SPIM command to be processed. Here SOT" + } + } + }, + "SPI_CMD_SEND_CMD": { + "desc": "Transmits a configurable size command", + "content": { + "CMD_VALUE": { + "bit": 0, + "width": 16, + "desc": "Sets the command to send. MSB must always be at bit15 also if cmd size is lower than 16" + }, + "CMD_SIZE": { + "bit": 16, + "width": 5, + "desc": "Size in bits of the command to send. The value written here is num bits - 1." + }, + "QPI": { + "bit": 27, + "width": 1, + "desc": "Sends the command using QuadSPI" + }, + "SPI_CMD": { + "bit": 28, + "width": 4, + "desc": "Select the SPIM command to be processed. Here SEND_CMD" + } + } + }, + "SPI_CMD_SEND_ADDR": { + "desc": "Transmits a configurable size address", + "content": { + "CMD_SIZE": { + "bit": 16, + "width": 5, + "desc": "Size in bits of the address to send. The value written here is num bits - 1." + }, + "QPI": { + "bit": 27, + "width": 1, + "desc": "Sends the command using QuadSPI" + }, + "SPI_CMD": { + "bit": 28, + "width": 4, + "desc": "Select the SPIM command to be processed. Here SEND_ADDR" + } + } + }, + "SPI_CMD_DUMMY": { + "desc": "Transmits a configurable size address", + "content": { + "DUMMY_CYCLE": { + "bit": 16, + "width": 5, + "desc": "Number of dummy cycles to perform" + }, + "SPI_CMD": { + "bit": 28, + "width": 4, + "desc": "Select the SPIM command to be processed. Here DUMMY" + } + } + }, + "SPI_CMD_WAIT": { + "desc": "Waits an external event to move to the next instruction", + "content": { + "EVENT_ID": { + "bit": 0, + "width": 2, + "desc": "External event id" + }, + "SPI_CMD": { + "bit": 28, + "width": 4, + "desc": "Select the SPIM command to be processed. Here WAIT" + } + } + }, + "SPI_CMD_TX_DATA": { + "desc": "Sends data (max 64Kbits)", + "content": { + "DATA_SIZE": { + "bit": 0, + "width": 16, + "desc": "Number of bits to send (Max 64Kbits). The value written here is num bits - 1." + }, + "BYTE_ALIGN": { + "bit": 26, + "width": 1, + "desc": "Disable byte alignment\n - 1'b0: enable byte alignment\n - 1'b1: disable byte alignment" + }, + "QPI": { + "bit": 27, + "width": 1, + "desc": "Sends the command using QuadSPI" + }, + "SPI_CMD": { + "bit": 28, + "width": 4, + "desc": "Select the SPIM command to be processed. Here TX_DATA" + } + } + }, + "SPI_CMD_RX_DATA": { + "desc": "Receives data (max 64Kbits)", + "content": { + "DATA_SIZE": { + "bit": 0, + "width": 16, + "desc": "Number of bits to receive (Max 64Kbits). The value written here is num bits - 1." + }, + "BYTE_ALIGN": { + "bit": 26, + "width": 1, + "desc": "Disable byte alignment\n - 1'b0: enable byte alignment\n - 1'b1: disable byte alignment" + }, + "QPI": { + "bit": 27, + "width": 1, + "desc": "Sends the command using QuadSPI" + }, + "SPI_CMD": { + "bit": 28, + "width": 4, + "desc": "Select the SPIM command to be processed. Here RX_DATA" + } + } + }, + "SPI_CMD_RPT": { + "desc": "Repeat the next transfer N times", + "content": { + "RPT_CNT": { + "bit": 0, + "width": 16, + "desc": "Number of transfers to repeat (Max 64K)" + }, + "SPI_CMD": { + "bit": 28, + "width": 4, + "desc": "Select the SPIM command to be processed. Here RPT" + } + } + }, + "SPI_CMD_EOT": { + "desc": "End of stream", + "content": { + "EVENT_GEN": { + "bit": 0, + "width": 1, + "desc": "Enable EOT event:\n - 1'b0: disable\n - 1'b1: enable" + }, + "SPI_CMD": { + "bit": 28, + "width": 4, + "desc": "Select the SPIM command to be processed. Here EOT" + } + } + }, + "SPI_CMD_RPT_END": { + "desc": "End of the repeat loop command", + "content": { + "SPI_CMD": { + "bit": 28, + "width": 4, + "desc": "Select the SPIM command to be processed. Here RPT_END" + } + } + }, + "SPI_CMD_RX_CHECK": { + "desc": "Check up ot 16 bits of data against an expected value", + "content": { + "COMP_DATA": { + "bit": 0, + "width": 16, + "desc": "Data to compare. Max 16bits" + }, + "STATUS_SIZE": { + "bit": 16, + "width": 4, + "desc": "Size in bits of the word to read. The value written here is num bits - 1." + }, + "CHECK_TYPE": { + "bit": 24, + "width": 2, + "desc": "Select check to process:\n - 2'b00: compare bit a bit\n - 2'b01: compare only ones\n - 2'b10: compare ony zeros" + }, + "BYTE_ALIGN": { + "bit": 26, + "width": 1, + "desc": "Disable byte alignment\n - 1'b0: enable byte alignment\n - 1'b1: disable byte alignment" + }, + "QPI": { + "bit": 27, + "width": 1, + "desc": "Sends the command using QuadSPI" + }, + "SPI_CMD": { + "bit": 28, + "width": 4, + "desc": "Select the SPIM command to be processed. Here RX_CHECK" + } + } + }, + "SPI_CMD_FULL_DUPL": { + "desc": "Activate full duplex mode", + "content": { + "DATA_SIZE": { + "bit": 0, + "width": 16, + "desc": "Number of bits to send (Max 64Kbits). The value written here is num bits - 1." + }, + "BYTE_ALIGN": { + "bit": 26, + "width": 1, + "desc": "Disable byte alignment\n - 1'b0: enable byte alignment\n - 1'b1: disable byte alignment" + }, + "SPI_CMD": { + "bit": 28, + "width": 4, + "desc": "Select the SPIM command to be processed. Here FULL_DUPLEX" + } + } + } + }, + "vp_impl": "pulp.udma.udma_v3_pulp_impl", + "nb_periphs": 7, + "interfaces": [ + "spim", + "i2c", + "i2s", + "uart", + "cpi" + ], + "properties": { + "l2_read_fifo_size": 8 + }, + "uart": { + "version": 1, + "nb_channels": 1, + "ids": [ + 0 + ], + "offsets": [ + "0x00" + ], + "is_master": true + }, + "spim": { + "version": 3, + "nb_channels": 1, + "ids": [ + 1 + ], + "offsets": [ + "0x80" + ], + "is_master": true, + "eot_events": [ + 7 + ] + }, + "i2c": { + "version": 2, + "nb_channels": 2, + "ids": [ + 2, + 3 + ], + "offsets": [ + "0x100", + "0x180" + ], + "is_master": true + }, + "sdio": { + "version": 0, + "nb_channels": 1, + "ids": [ + 4 + ], + "offsets": [ + "0x200" + ] + }, + "i2s": { + "version": 2, + "nb_channels": 1, + "ids": [ + 5 + ], + "offsets": [ + "0x280" + ], + "is_slave": true, + "is_dual": true + }, + "cpi": { + "version": 1, + "nb_channels": 1, + "ids": [ + 6 + ], + "offsets": [ + "0x300" + ], + "is_slave": true + }, + "vp_ports": [ + "l2_itf", + "event_itf", + "spim0", + "i2c0", + "i2c1", + "uart0", + "periph_clock", + "input", + "i2s0", + "i2s1", + "cpi0" + ] + }, + "uart": { + "version": 1 + }, + "fc_debug": { + "version": 1 + }, + "riscv_tap": { + "vp_class": "pulp/adv_dbg_unit/riscv_dtm", + "harts": [ + [ + 992, + "fc" + ] + ], + "vp_ports": [ + "fc", + "jtag_out", + "input", + "jtag_in" + ] + }, + "debug_rom": { + "version": 2, + "hal_files": [ + "hal/rom/rom_v2.h" + ], + "size": 2048, + "map_base": "0x1A190800", + "map_size": "0x00000800", + "vp_class": "memory/memory", + "stim_file": "os.path.join(os.environ.get('INSTALL_DIR'), 'python', 'pulp', 'chips', 'pulp', 'debug_rom.bin')", + "vp_ports": [ + "input" + ] + }, + "pulp_tap": { + "vp_class": "pulp/adv_dbg_unit/adv_dbg_unit", + "has_io_port": true, + "has_confreg": true, + "confreg_instr": 6, + "confreg_length": 8, + "vp_ports": [ + "jtag_out", + "io", + "confreg_ext", + "jtag_in", + "confreg_soc" + ] + }, + "periph_clock": { + "vp_class": "vp/clock_domain", + "frequency": 50000000, + "vp_ports": [ + "out", + "clock_in" + ] + } + }, + "cluster": { + "version": 5, + "nb_pe": 8, + "has_cc": null, + "vp_class": "pulp/cluster/cluster", + "vp_comps": [ + "cluster_ico", + "demux_periph_ico", + "periph_ico", + "l1_ico", + "l1", + "icache", + "dma", + "cluster_ctrl", + "event_unit", + "timer", + "icache_ctrl", + "pe0", + "pe1", + "pe2", + "pe3", + "pe4", + "pe5", + "pe6", + "pe7" + ], + "vp_ports": [ + "input", + "ref_clock", + "dma_irq", + "soc", + "clock" + ], + "vp_bindings": [ + [ + "self->input", + "cluster_ico->input" + ], + [ + "self->ref_clock", + "timer->ref_clock" + ], + [ + "cluster_ico->soc", + "self->soc" + ], + [ + "cluster_ico->l1", + "l1_ico->ext2loc_itf" + ], + [ + "cluster_ico->l1_ts", + "l1_ico->ext2loc_ts_itf" + ], + [ + "cluster_ico->periph_ico", + "periph_ico->input" + ], + [ + "cluster_ico->periph_ico_alias", + "periph_ico->input" + ], + [ + "periph_ico->icache_ctrl", + "icache_ctrl->input" + ], + [ + "periph_ico->event_unit", + "event_unit->input" + ], + [ + "periph_ico->cluster_ctrl", + "cluster_ctrl->input" + ], + [ + "periph_ico->timer", + "timer->input" + ], + [ + "periph_ico->dma", + "dma->in_8" + ], + [ + "periph_ico->dbg_unit_0", + "pe0->dbg_unit" + ], + [ + "periph_ico->dbg_unit_1", + "pe1->dbg_unit" + ], + [ + "periph_ico->dbg_unit_2", + "pe2->dbg_unit" + ], + [ + "periph_ico->dbg_unit_3", + "pe3->dbg_unit" + ], + [ + "periph_ico->dbg_unit_4", + "pe4->dbg_unit" + ], + [ + "periph_ico->dbg_unit_5", + "pe5->dbg_unit" + ], + [ + "periph_ico->dbg_unit_6", + "pe6->dbg_unit" + ], + [ + "periph_ico->dbg_unit_7", + "pe7->dbg_unit" + ], + [ + "periph_ico->cluster_ico", + "cluster_ico->input" + ], + [ + "l1_ico->event_unit_0", + "event_unit->demux_in_0" + ], + [ + "l1_ico->event_unit_1", + "event_unit->demux_in_1" + ], + [ + "l1_ico->event_unit_2", + "event_unit->demux_in_2" + ], + [ + "l1_ico->event_unit_3", + "event_unit->demux_in_3" + ], + [ + "l1_ico->event_unit_4", + "event_unit->demux_in_4" + ], + [ + "l1_ico->event_unit_5", + "event_unit->demux_in_5" + ], + [ + "l1_ico->event_unit_6", + "event_unit->demux_in_6" + ], + [ + "l1_ico->event_unit_7", + "event_unit->demux_in_7" + ], + [ + "l1_ico->event_unit_alias_0", + "event_unit->demux_in_0" + ], + [ + "l1_ico->event_unit_alias_1", + "event_unit->demux_in_1" + ], + [ + "l1_ico->event_unit_alias_2", + "event_unit->demux_in_2" + ], + [ + "l1_ico->event_unit_alias_3", + "event_unit->demux_in_3" + ], + [ + "l1_ico->event_unit_alias_4", + "event_unit->demux_in_4" + ], + [ + "l1_ico->event_unit_alias_5", + "event_unit->demux_in_5" + ], + [ + "l1_ico->event_unit_alias_6", + "event_unit->demux_in_6" + ], + [ + "l1_ico->event_unit_alias_7", + "event_unit->demux_in_7" + ], + [ + "l1_ico->dma_0", + "dma->in_0" + ], + [ + "l1_ico->dma_1", + "dma->in_1" + ], + [ + "l1_ico->dma_2", + "dma->in_2" + ], + [ + "l1_ico->dma_3", + "dma->in_3" + ], + [ + "l1_ico->dma_4", + "dma->in_4" + ], + [ + "l1_ico->dma_5", + "dma->in_5" + ], + [ + "l1_ico->dma_6", + "dma->in_6" + ], + [ + "l1_ico->dma_7", + "dma->in_7" + ], + [ + "l1_ico->dma_alias_0", + "dma->in_0" + ], + [ + "l1_ico->dma_alias_1", + "dma->in_1" + ], + [ + "l1_ico->dma_alias_2", + "dma->in_2" + ], + [ + "l1_ico->dma_alias_3", + "dma->in_3" + ], + [ + "l1_ico->dma_alias_4", + "dma->in_4" + ], + [ + "l1_ico->dma_alias_5", + "dma->in_5" + ], + [ + "l1_ico->dma_alias_6", + "dma->in_6" + ], + [ + "l1_ico->dma_alias_7", + "dma->in_7" + ], + [ + "l1_ico->out_0", + "l1->in_0" + ], + [ + "l1_ico->out_1", + "l1->in_1" + ], + [ + "l1_ico->out_2", + "l1->in_2" + ], + [ + "l1_ico->out_3", + "l1->in_3" + ], + [ + "l1_ico->out_4", + "l1->in_4" + ], + [ + "l1_ico->out_5", + "l1->in_5" + ], + [ + "l1_ico->out_6", + "l1->in_6" + ], + [ + "l1_ico->out_7", + "l1->in_7" + ], + [ + "l1_ico->out_8", + "l1->in_8" + ], + [ + "l1_ico->out_9", + "l1->in_9" + ], + [ + "l1_ico->out_10", + "l1->in_10" + ], + [ + "l1_ico->out_11", + "l1->in_11" + ], + [ + "l1_ico->out_12", + "l1->in_12" + ], + [ + "l1_ico->out_13", + "l1->in_13" + ], + [ + "l1_ico->out_14", + "l1->in_14" + ], + [ + "l1_ico->out_15", + "l1->in_15" + ], + [ + "l1_ico->cluster_ico", + "cluster_ico->input" + ], + [ + "icache->refill", + "cluster_ico->input" + ], + [ + "dma->ext_irq_itf", + "self->dma_irq" + ], + [ + "dma->ext_irq_itf", + "event_unit->in_event_22_pe_0" + ], + [ + "dma->ext_irq_itf", + "event_unit->in_event_22_pe_1" + ], + [ + "dma->ext_irq_itf", + "event_unit->in_event_22_pe_2" + ], + [ + "dma->ext_irq_itf", + "event_unit->in_event_22_pe_3" + ], + [ + "dma->ext_irq_itf", + "event_unit->in_event_22_pe_4" + ], + [ + "dma->ext_irq_itf", + "event_unit->in_event_22_pe_5" + ], + [ + "dma->ext_irq_itf", + "event_unit->in_event_22_pe_6" + ], + [ + "dma->ext_irq_itf", + "event_unit->in_event_22_pe_7" + ], + [ + "dma->event_itf_0", + "event_unit->in_event_8_pe_0" + ], + [ + "dma->event_itf_1", + "event_unit->in_event_8_pe_1" + ], + [ + "dma->event_itf_2", + "event_unit->in_event_8_pe_2" + ], + [ + "dma->event_itf_3", + "event_unit->in_event_8_pe_3" + ], + [ + "dma->event_itf_4", + "event_unit->in_event_8_pe_4" + ], + [ + "dma->event_itf_5", + "event_unit->in_event_8_pe_5" + ], + [ + "dma->event_itf_6", + "event_unit->in_event_8_pe_6" + ], + [ + "dma->event_itf_7", + "event_unit->in_event_8_pe_7" + ], + [ + "dma->irq_itf_0", + "event_unit->in_event_9_pe_0" + ], + [ + "dma->irq_itf_1", + "event_unit->in_event_9_pe_1" + ], + [ + "dma->irq_itf_2", + "event_unit->in_event_9_pe_2" + ], + [ + "dma->irq_itf_3", + "event_unit->in_event_9_pe_3" + ], + [ + "dma->irq_itf_4", + "event_unit->in_event_9_pe_4" + ], + [ + "dma->irq_itf_5", + "event_unit->in_event_9_pe_5" + ], + [ + "dma->irq_itf_6", + "event_unit->in_event_9_pe_6" + ], + [ + "dma->irq_itf_7", + "event_unit->in_event_9_pe_7" + ], + [ + "dma->ext_itf", + "cluster_ico->input" + ], + [ + "dma->loc_itf_0", + "l1_ico->dma_in_0" + ], + [ + "dma->loc_itf_1", + "l1_ico->dma_in_1" + ], + [ + "dma->loc_itf_2", + "l1_ico->dma_in_2" + ], + [ + "dma->loc_itf_3", + "l1_ico->dma_in_3" + ], + [ + "cluster_ctrl->bootaddr_0", + "pe0->bootaddr" + ], + [ + "cluster_ctrl->bootaddr_1", + "pe1->bootaddr" + ], + [ + "cluster_ctrl->bootaddr_2", + "pe2->bootaddr" + ], + [ + "cluster_ctrl->bootaddr_3", + "pe3->bootaddr" + ], + [ + "cluster_ctrl->bootaddr_4", + "pe4->bootaddr" + ], + [ + "cluster_ctrl->bootaddr_5", + "pe5->bootaddr" + ], + [ + "cluster_ctrl->bootaddr_6", + "pe6->bootaddr" + ], + [ + "cluster_ctrl->bootaddr_7", + "pe7->bootaddr" + ], + [ + "cluster_ctrl->fetchen_0", + "pe0->fetchen" + ], + [ + "cluster_ctrl->fetchen_1", + "pe1->fetchen" + ], + [ + "cluster_ctrl->fetchen_2", + "pe2->fetchen" + ], + [ + "cluster_ctrl->fetchen_3", + "pe3->fetchen" + ], + [ + "cluster_ctrl->fetchen_4", + "pe4->fetchen" + ], + [ + "cluster_ctrl->fetchen_5", + "pe5->fetchen" + ], + [ + "cluster_ctrl->fetchen_6", + "pe6->fetchen" + ], + [ + "cluster_ctrl->fetchen_7", + "pe7->fetchen" + ], + [ + "cluster_ctrl->halt_0", + "pe0->halt" + ], + [ + "cluster_ctrl->halt_1", + "pe1->halt" + ], + [ + "cluster_ctrl->halt_2", + "pe2->halt" + ], + [ + "cluster_ctrl->halt_3", + "pe3->halt" + ], + [ + "cluster_ctrl->halt_4", + "pe4->halt" + ], + [ + "cluster_ctrl->halt_5", + "pe5->halt" + ], + [ + "cluster_ctrl->halt_6", + "pe6->halt" + ], + [ + "cluster_ctrl->halt_7", + "pe7->halt" + ], + [ + "event_unit->irq_req_0", + "pe0->irq_req" + ], + [ + "event_unit->irq_req_1", + "pe1->irq_req" + ], + [ + "event_unit->irq_req_2", + "pe2->irq_req" + ], + [ + "event_unit->irq_req_3", + "pe3->irq_req" + ], + [ + "event_unit->irq_req_4", + "pe4->irq_req" + ], + [ + "event_unit->irq_req_5", + "pe5->irq_req" + ], + [ + "event_unit->irq_req_6", + "pe6->irq_req" + ], + [ + "event_unit->irq_req_7", + "pe7->irq_req" + ], + [ + "event_unit->clock_0", + "pe0->clock" + ], + [ + "event_unit->clock_1", + "pe1->clock" + ], + [ + "event_unit->clock_2", + "pe2->clock" + ], + [ + "event_unit->clock_3", + "pe3->clock" + ], + [ + "event_unit->clock_4", + "pe4->clock" + ], + [ + "event_unit->clock_5", + "pe5->clock" + ], + [ + "event_unit->clock_6", + "pe6->clock" + ], + [ + "event_unit->clock_7", + "pe7->clock" + ], + [ + "timer->irq_itf_0", + "event_unit->in_event_10_pe_0" + ], + [ + "timer->irq_itf_0", + "event_unit->in_event_10_pe_1" + ], + [ + "timer->irq_itf_0", + "event_unit->in_event_10_pe_2" + ], + [ + "timer->irq_itf_0", + "event_unit->in_event_10_pe_3" + ], + [ + "timer->irq_itf_0", + "event_unit->in_event_10_pe_4" + ], + [ + "timer->irq_itf_0", + "event_unit->in_event_10_pe_5" + ], + [ + "timer->irq_itf_0", + "event_unit->in_event_10_pe_6" + ], + [ + "timer->irq_itf_0", + "event_unit->in_event_10_pe_7" + ], + [ + "timer->irq_itf_1", + "event_unit->in_event_11_pe_0" + ], + [ + "timer->irq_itf_1", + "event_unit->in_event_11_pe_1" + ], + [ + "timer->irq_itf_1", + "event_unit->in_event_11_pe_2" + ], + [ + "timer->irq_itf_1", + "event_unit->in_event_11_pe_3" + ], + [ + "timer->irq_itf_1", + "event_unit->in_event_11_pe_4" + ], + [ + "timer->irq_itf_1", + "event_unit->in_event_11_pe_5" + ], + [ + "timer->irq_itf_1", + "event_unit->in_event_11_pe_6" + ], + [ + "timer->irq_itf_1", + "event_unit->in_event_11_pe_7" + ], + [ + "icache_ctrl->enable", + "icache->enable" + ], + [ + "icache_ctrl->flush", + "icache->flush" + ], + [ + "icache_ctrl->flush_line", + "icache->flush_line" + ], + [ + "icache_ctrl->flush_line_addr", + "icache->flush_line_addr" + ], + [ + "pe0->halt_status", + "cluster_ctrl->core_halt_0" + ], + [ + "pe0->data", + "l1_ico->data_pe_0" + ], + [ + "pe0->fetch", + "icache->input_0" + ], + [ + "pe0->irq_ack", + "event_unit->irq_ack_0" + ], + [ + "pe0->ext_counter[12]", + "l1_ico->ext_counter_0[12]" + ], + [ + "pe0->ext_counter[13]", + "l1_ico->ext_counter_0[13]" + ], + [ + "pe0->ext_counter[14]", + "l1_ico->ext_counter_0[14]" + ], + [ + "pe0->ext_counter[15]", + "l1_ico->ext_counter_0[15]" + ], + [ + "pe0->ext_counter[16]", + "l1_ico->ext_counter_0[16]" + ], + [ + "pe1->halt_status", + "cluster_ctrl->core_halt_1" + ], + [ + "pe1->data", + "l1_ico->data_pe_1" + ], + [ + "pe1->fetch", + "icache->input_1" + ], + [ + "pe1->irq_ack", + "event_unit->irq_ack_1" + ], + [ + "pe1->ext_counter[12]", + "l1_ico->ext_counter_1[12]" + ], + [ + "pe1->ext_counter[13]", + "l1_ico->ext_counter_1[13]" + ], + [ + "pe1->ext_counter[14]", + "l1_ico->ext_counter_1[14]" + ], + [ + "pe1->ext_counter[15]", + "l1_ico->ext_counter_1[15]" + ], + [ + "pe1->ext_counter[16]", + "l1_ico->ext_counter_1[16]" + ], + [ + "pe2->halt_status", + "cluster_ctrl->core_halt_2" + ], + [ + "pe2->data", + "l1_ico->data_pe_2" + ], + [ + "pe2->fetch", + "icache->input_2" + ], + [ + "pe2->irq_ack", + "event_unit->irq_ack_2" + ], + [ + "pe2->ext_counter[12]", + "l1_ico->ext_counter_2[12]" + ], + [ + "pe2->ext_counter[13]", + "l1_ico->ext_counter_2[13]" + ], + [ + "pe2->ext_counter[14]", + "l1_ico->ext_counter_2[14]" + ], + [ + "pe2->ext_counter[15]", + "l1_ico->ext_counter_2[15]" + ], + [ + "pe2->ext_counter[16]", + "l1_ico->ext_counter_2[16]" + ], + [ + "pe3->halt_status", + "cluster_ctrl->core_halt_3" + ], + [ + "pe3->data", + "l1_ico->data_pe_3" + ], + [ + "pe3->fetch", + "icache->input_3" + ], + [ + "pe3->irq_ack", + "event_unit->irq_ack_3" + ], + [ + "pe3->ext_counter[12]", + "l1_ico->ext_counter_3[12]" + ], + [ + "pe3->ext_counter[13]", + "l1_ico->ext_counter_3[13]" + ], + [ + "pe3->ext_counter[14]", + "l1_ico->ext_counter_3[14]" + ], + [ + "pe3->ext_counter[15]", + "l1_ico->ext_counter_3[15]" + ], + [ + "pe3->ext_counter[16]", + "l1_ico->ext_counter_3[16]" + ], + [ + "pe4->halt_status", + "cluster_ctrl->core_halt_4" + ], + [ + "pe4->data", + "l1_ico->data_pe_4" + ], + [ + "pe4->fetch", + "icache->input_4" + ], + [ + "pe4->irq_ack", + "event_unit->irq_ack_4" + ], + [ + "pe4->ext_counter[12]", + "l1_ico->ext_counter_4[12]" + ], + [ + "pe4->ext_counter[13]", + "l1_ico->ext_counter_4[13]" + ], + [ + "pe4->ext_counter[14]", + "l1_ico->ext_counter_4[14]" + ], + [ + "pe4->ext_counter[15]", + "l1_ico->ext_counter_4[15]" + ], + [ + "pe4->ext_counter[16]", + "l1_ico->ext_counter_4[16]" + ], + [ + "pe5->halt_status", + "cluster_ctrl->core_halt_5" + ], + [ + "pe5->data", + "l1_ico->data_pe_5" + ], + [ + "pe5->fetch", + "icache->input_5" + ], + [ + "pe5->irq_ack", + "event_unit->irq_ack_5" + ], + [ + "pe5->ext_counter[12]", + "l1_ico->ext_counter_5[12]" + ], + [ + "pe5->ext_counter[13]", + "l1_ico->ext_counter_5[13]" + ], + [ + "pe5->ext_counter[14]", + "l1_ico->ext_counter_5[14]" + ], + [ + "pe5->ext_counter[15]", + "l1_ico->ext_counter_5[15]" + ], + [ + "pe5->ext_counter[16]", + "l1_ico->ext_counter_5[16]" + ], + [ + "pe6->halt_status", + "cluster_ctrl->core_halt_6" + ], + [ + "pe6->data", + "l1_ico->data_pe_6" + ], + [ + "pe6->fetch", + "icache->input_6" + ], + [ + "pe6->irq_ack", + "event_unit->irq_ack_6" + ], + [ + "pe6->ext_counter[12]", + "l1_ico->ext_counter_6[12]" + ], + [ + "pe6->ext_counter[13]", + "l1_ico->ext_counter_6[13]" + ], + [ + "pe6->ext_counter[14]", + "l1_ico->ext_counter_6[14]" + ], + [ + "pe6->ext_counter[15]", + "l1_ico->ext_counter_6[15]" + ], + [ + "pe6->ext_counter[16]", + "l1_ico->ext_counter_6[16]" + ], + [ + "pe7->halt_status", + "cluster_ctrl->core_halt_7" + ], + [ + "pe7->data", + "l1_ico->data_pe_7" + ], + [ + "pe7->fetch", + "icache->input_7" + ], + [ + "pe7->irq_ack", + "event_unit->irq_ack_7" + ], + [ + "pe7->ext_counter[12]", + "l1_ico->ext_counter_7[12]" + ], + [ + "pe7->ext_counter[13]", + "l1_ico->ext_counter_7[13]" + ], + [ + "pe7->ext_counter[14]", + "l1_ico->ext_counter_7[14]" + ], + [ + "pe7->ext_counter[15]", + "l1_ico->ext_counter_7[15]" + ], + [ + "pe7->ext_counter[16]", + "l1_ico->ext_counter_7[16]" + ] + ], + "cluster_ico": { + "vp_class": "interco/router", + "bandwidth": 4, + "latency": 2, + "id": 0, + "mappings": { + "l1": { + "base": "0x10000000", + "size": "0x00010000", + "remove_offset": "0x10000000" + }, + "l1_ts": { + "base": "0x10100000", + "size": "0x00010000", + "remove_offset": "0x10100000" + }, + "periph_ico": { + "base": "0x10200000", + "size": "0x00200000" + }, + "periph_ico_alias": { + "base": "0x00200000", + "size": "0x00200000", + "add_offset": "268435456" + }, + "error": { + "base": "0x10000000", + "size": "0x400000" + }, + "soc": {} + }, + "vp_ports": [ + "soc", + "l1", + "l1_ts", + "periph_ico", + "periph_ico_alias", + "input" + ] + }, + "demux_periph_ico": { + "vp_class": "interco/router", + "bandwidth": 4, + "latency": 0, + "id": 0, + "mappings": { + "demux_event_unit": { + "base": "0x0", + "size": "0x00000400" + } + } + }, + "periph_ico": { + "vp_class": "interco/router", + "bandwidth": 4, + "latency": 0, + "id": 0, + "mappings": { + "dbg_unit_0": { + "base": "0x10300000", + "size": "0x8000", + "remove_offset": "0x10300000" + }, + "dbg_unit_1": { + "base": "0x10308000", + "size": "0x8000", + "remove_offset": "0x10308000" + }, + "dbg_unit_2": { + "base": "0x10310000", + "size": "0x8000", + "remove_offset": "0x10310000" + }, + "dbg_unit_3": { + "base": "0x10318000", + "size": "0x8000", + "remove_offset": "0x10318000" + }, + "dbg_unit_4": { + "base": "0x10320000", + "size": "0x8000", + "remove_offset": "0x10320000" + }, + "dbg_unit_5": { + "base": "0x10328000", + "size": "0x8000", + "remove_offset": "0x10328000" + }, + "dbg_unit_6": { + "base": "0x10330000", + "size": "0x8000", + "remove_offset": "0x10330000" + }, + "dbg_unit_7": { + "base": "0x10338000", + "size": "0x8000", + "remove_offset": "0x10338000" + }, + "cluster_ctrl": { + "base": "0x10200000", + "size": "0x00000400", + "remove_offset": "0x10200000" + }, + "timer": { + "base": "0x10200400", + "size": "0x00000400", + "remove_offset": "0x10200400" + }, + "event_unit": { + "base": "0x10200800", + "size": "0x00000800", + "remove_offset": "0x10200800" + }, + "icache_ctrl": { + "base": "0x10201400", + "size": "0x00000400", + "remove_offset": "0x10201400" + }, + "dma": { + "base": "0x10201800", + "size": "0x00000400", + "remove_offset": "0x10201800" + }, + "error": { + "base": "0x10200000", + "size": "0x10200000" + }, + "cluster_ico": {} + }, + "vp_ports": [ + "icache_ctrl", + "event_unit", + "cluster_ctrl", + "timer", + "dma", + "dbg_unit_0", + "dbg_unit_1", + "dbg_unit_2", + "dbg_unit_3", + "dbg_unit_4", + "dbg_unit_5", + "dbg_unit_6", + "dbg_unit_7", + "cluster_ico", + "input" + ] + }, + "l1_ico": { + "vp_class": null, + "vp_comps": [ + "pe0_ico", + "pe1_ico", + "pe2_ico", + "pe3_ico", + "pe4_ico", + "pe5_ico", + "pe6_ico", + "pe7_ico", + "interleaver", + "ext2loc", + "ext2loc_ts" + ], + "vp_ports": [ + "event_unit_0", + "event_unit_1", + "event_unit_2", + "event_unit_3", + "event_unit_4", + "event_unit_5", + "event_unit_6", + "event_unit_7", + "event_unit_alias_0", + "event_unit_alias_1", + "event_unit_alias_2", + "event_unit_alias_3", + "event_unit_alias_4", + "event_unit_alias_5", + "event_unit_alias_6", + "event_unit_alias_7", + "dma_0", + "dma_1", + "dma_2", + "dma_3", + "dma_4", + "dma_5", + "dma_6", + "dma_7", + "dma_alias_0", + "dma_alias_1", + "dma_alias_2", + "dma_alias_3", + "dma_alias_4", + "dma_alias_5", + "dma_alias_6", + "dma_alias_7", + "out_0", + "out_1", + "out_2", + "out_3", + "out_4", + "out_5", + "out_6", + "out_7", + "out_8", + "out_9", + "out_10", + "out_11", + "out_12", + "out_13", + "out_14", + "out_15", + "cluster_ico", + "dma_in_0", + "dma_in_1", + "dma_in_2", + "dma_in_3", + "ext2loc_itf", + "ext2loc_ts_itf", + "ext_counter_0[12]", + "ext_counter_1[12]", + "ext_counter_2[12]", + "ext_counter_3[12]", + "ext_counter_4[12]", + "ext_counter_5[12]", + "ext_counter_6[12]", + "ext_counter_7[12]", + "ext_counter_0[13]", + "ext_counter_1[13]", + "ext_counter_2[13]", + "ext_counter_3[13]", + "ext_counter_4[13]", + "ext_counter_5[13]", + "ext_counter_6[13]", + "ext_counter_7[13]", + "ext_counter_0[14]", + "ext_counter_1[14]", + "ext_counter_2[14]", + "ext_counter_3[14]", + "ext_counter_4[14]", + "ext_counter_5[14]", + "ext_counter_6[14]", + "ext_counter_7[14]", + "ext_counter_0[15]", + "ext_counter_1[15]", + "ext_counter_2[15]", + "ext_counter_3[15]", + "ext_counter_4[15]", + "ext_counter_5[15]", + "ext_counter_6[15]", + "ext_counter_7[15]", + "ext_counter_0[16]", + "ext_counter_1[16]", + "ext_counter_2[16]", + "ext_counter_3[16]", + "ext_counter_4[16]", + "ext_counter_5[16]", + "ext_counter_6[16]", + "ext_counter_7[16]", + "data_pe_0", + "data_pe_1", + "data_pe_2", + "data_pe_3", + "data_pe_4", + "data_pe_5", + "data_pe_6", + "data_pe_7" + ], + "vp_bindings": [ + [ + "self->dma_in_0", + "interleaver->in_8" + ], + [ + "self->dma_in_1", + "interleaver->in_9" + ], + [ + "self->dma_in_2", + "interleaver->in_10" + ], + [ + "self->dma_in_3", + "interleaver->in_11" + ], + [ + "self->ext2loc_itf", + "ext2loc->input" + ], + [ + "self->ext2loc_ts_itf", + "ext2loc_ts->input" + ], + [ + "self->ext_counter_0[12]", + "pe0_ico->nb_read[1]" + ], + [ + "self->ext_counter_1[12]", + "pe1_ico->nb_read[1]" + ], + [ + "self->ext_counter_2[12]", + "pe2_ico->nb_read[1]" + ], + [ + "self->ext_counter_3[12]", + "pe3_ico->nb_read[1]" + ], + [ + "self->ext_counter_4[12]", + "pe4_ico->nb_read[1]" + ], + [ + "self->ext_counter_5[12]", + "pe5_ico->nb_read[1]" + ], + [ + "self->ext_counter_6[12]", + "pe6_ico->nb_read[1]" + ], + [ + "self->ext_counter_7[12]", + "pe7_ico->nb_read[1]" + ], + [ + "self->ext_counter_0[13]", + "pe0_ico->nb_write[1]" + ], + [ + "self->ext_counter_1[13]", + "pe1_ico->nb_write[1]" + ], + [ + "self->ext_counter_2[13]", + "pe2_ico->nb_write[1]" + ], + [ + "self->ext_counter_3[13]", + "pe3_ico->nb_write[1]" + ], + [ + "self->ext_counter_4[13]", + "pe4_ico->nb_write[1]" + ], + [ + "self->ext_counter_5[13]", + "pe5_ico->nb_write[1]" + ], + [ + "self->ext_counter_6[13]", + "pe6_ico->nb_write[1]" + ], + [ + "self->ext_counter_7[13]", + "pe7_ico->nb_write[1]" + ], + [ + "self->ext_counter_0[14]", + "pe0_ico->read_stalls[1]" + ], + [ + "self->ext_counter_1[14]", + "pe1_ico->read_stalls[1]" + ], + [ + "self->ext_counter_2[14]", + "pe2_ico->read_stalls[1]" + ], + [ + "self->ext_counter_3[14]", + "pe3_ico->read_stalls[1]" + ], + [ + "self->ext_counter_4[14]", + "pe4_ico->read_stalls[1]" + ], + [ + "self->ext_counter_5[14]", + "pe5_ico->read_stalls[1]" + ], + [ + "self->ext_counter_6[14]", + "pe6_ico->read_stalls[1]" + ], + [ + "self->ext_counter_7[14]", + "pe7_ico->read_stalls[1]" + ], + [ + "self->ext_counter_0[15]", + "pe0_ico->write_stalls[1]" + ], + [ + "self->ext_counter_1[15]", + "pe1_ico->write_stalls[1]" + ], + [ + "self->ext_counter_2[15]", + "pe2_ico->write_stalls[1]" + ], + [ + "self->ext_counter_3[15]", + "pe3_ico->write_stalls[1]" + ], + [ + "self->ext_counter_4[15]", + "pe4_ico->write_stalls[1]" + ], + [ + "self->ext_counter_5[15]", + "pe5_ico->write_stalls[1]" + ], + [ + "self->ext_counter_6[15]", + "pe6_ico->write_stalls[1]" + ], + [ + "self->ext_counter_7[15]", + "pe7_ico->write_stalls[1]" + ], + [ + "self->ext_counter_0[16]", + "pe0_ico->stalls[0]" + ], + [ + "self->ext_counter_1[16]", + "pe1_ico->stalls[0]" + ], + [ + "self->ext_counter_2[16]", + "pe2_ico->stalls[0]" + ], + [ + "self->ext_counter_3[16]", + "pe3_ico->stalls[0]" + ], + [ + "self->ext_counter_4[16]", + "pe4_ico->stalls[0]" + ], + [ + "self->ext_counter_5[16]", + "pe5_ico->stalls[0]" + ], + [ + "self->ext_counter_6[16]", + "pe6_ico->stalls[0]" + ], + [ + "self->ext_counter_7[16]", + "pe7_ico->stalls[0]" + ], + [ + "self->data_pe_0", + "pe0_ico->input" + ], + [ + "self->data_pe_1", + "pe1_ico->input" + ], + [ + "self->data_pe_2", + "pe2_ico->input" + ], + [ + "self->data_pe_3", + "pe3_ico->input" + ], + [ + "self->data_pe_4", + "pe4_ico->input" + ], + [ + "self->data_pe_5", + "pe5_ico->input" + ], + [ + "self->data_pe_6", + "pe6_ico->input" + ], + [ + "self->data_pe_7", + "pe7_ico->input" + ], + [ + "pe0_ico->dma", + "self->dma_0" + ], + [ + "pe0_ico->dma_alias", + "self->dma_alias_0" + ], + [ + "pe0_ico->event_unit", + "self->event_unit_0" + ], + [ + "pe0_ico->event_unit_alias", + "self->event_unit_alias_0" + ], + [ + "pe0_ico->cluster_ico", + "self->cluster_ico" + ], + [ + "pe0_ico->l1", + "interleaver->in_0" + ], + [ + "pe0_ico->l1_alias", + "interleaver->in_0" + ], + [ + "pe0_ico->l1_ts", + "interleaver->ts_in_0" + ], + [ + "pe0_ico->l1_ts_alias", + "interleaver->ts_in_0" + ], + [ + "pe1_ico->dma", + "self->dma_1" + ], + [ + "pe1_ico->dma_alias", + "self->dma_alias_1" + ], + [ + "pe1_ico->event_unit", + "self->event_unit_1" + ], + [ + "pe1_ico->event_unit_alias", + "self->event_unit_alias_1" + ], + [ + "pe1_ico->cluster_ico", + "self->cluster_ico" + ], + [ + "pe1_ico->l1", + "interleaver->in_1" + ], + [ + "pe1_ico->l1_alias", + "interleaver->in_1" + ], + [ + "pe1_ico->l1_ts", + "interleaver->ts_in_1" + ], + [ + "pe1_ico->l1_ts_alias", + "interleaver->ts_in_1" + ], + [ + "pe2_ico->dma", + "self->dma_2" + ], + [ + "pe2_ico->dma_alias", + "self->dma_alias_2" + ], + [ + "pe2_ico->event_unit", + "self->event_unit_2" + ], + [ + "pe2_ico->event_unit_alias", + "self->event_unit_alias_2" + ], + [ + "pe2_ico->cluster_ico", + "self->cluster_ico" + ], + [ + "pe2_ico->l1", + "interleaver->in_2" + ], + [ + "pe2_ico->l1_alias", + "interleaver->in_2" + ], + [ + "pe2_ico->l1_ts", + "interleaver->ts_in_2" + ], + [ + "pe2_ico->l1_ts_alias", + "interleaver->ts_in_2" + ], + [ + "pe3_ico->dma", + "self->dma_3" + ], + [ + "pe3_ico->dma_alias", + "self->dma_alias_3" + ], + [ + "pe3_ico->event_unit", + "self->event_unit_3" + ], + [ + "pe3_ico->event_unit_alias", + "self->event_unit_alias_3" + ], + [ + "pe3_ico->cluster_ico", + "self->cluster_ico" + ], + [ + "pe3_ico->l1", + "interleaver->in_3" + ], + [ + "pe3_ico->l1_alias", + "interleaver->in_3" + ], + [ + "pe3_ico->l1_ts", + "interleaver->ts_in_3" + ], + [ + "pe3_ico->l1_ts_alias", + "interleaver->ts_in_3" + ], + [ + "pe4_ico->dma", + "self->dma_4" + ], + [ + "pe4_ico->dma_alias", + "self->dma_alias_4" + ], + [ + "pe4_ico->event_unit", + "self->event_unit_4" + ], + [ + "pe4_ico->event_unit_alias", + "self->event_unit_alias_4" + ], + [ + "pe4_ico->cluster_ico", + "self->cluster_ico" + ], + [ + "pe4_ico->l1", + "interleaver->in_4" + ], + [ + "pe4_ico->l1_alias", + "interleaver->in_4" + ], + [ + "pe4_ico->l1_ts", + "interleaver->ts_in_4" + ], + [ + "pe4_ico->l1_ts_alias", + "interleaver->ts_in_4" + ], + [ + "pe5_ico->dma", + "self->dma_5" + ], + [ + "pe5_ico->dma_alias", + "self->dma_alias_5" + ], + [ + "pe5_ico->event_unit", + "self->event_unit_5" + ], + [ + "pe5_ico->event_unit_alias", + "self->event_unit_alias_5" + ], + [ + "pe5_ico->cluster_ico", + "self->cluster_ico" + ], + [ + "pe5_ico->l1", + "interleaver->in_5" + ], + [ + "pe5_ico->l1_alias", + "interleaver->in_5" + ], + [ + "pe5_ico->l1_ts", + "interleaver->ts_in_5" + ], + [ + "pe5_ico->l1_ts_alias", + "interleaver->ts_in_5" + ], + [ + "pe6_ico->dma", + "self->dma_6" + ], + [ + "pe6_ico->dma_alias", + "self->dma_alias_6" + ], + [ + "pe6_ico->event_unit", + "self->event_unit_6" + ], + [ + "pe6_ico->event_unit_alias", + "self->event_unit_alias_6" + ], + [ + "pe6_ico->cluster_ico", + "self->cluster_ico" + ], + [ + "pe6_ico->l1", + "interleaver->in_6" + ], + [ + "pe6_ico->l1_alias", + "interleaver->in_6" + ], + [ + "pe6_ico->l1_ts", + "interleaver->ts_in_6" + ], + [ + "pe6_ico->l1_ts_alias", + "interleaver->ts_in_6" + ], + [ + "pe7_ico->dma", + "self->dma_7" + ], + [ + "pe7_ico->dma_alias", + "self->dma_alias_7" + ], + [ + "pe7_ico->event_unit", + "self->event_unit_7" + ], + [ + "pe7_ico->event_unit_alias", + "self->event_unit_alias_7" + ], + [ + "pe7_ico->cluster_ico", + "self->cluster_ico" + ], + [ + "pe7_ico->l1", + "interleaver->in_7" + ], + [ + "pe7_ico->l1_alias", + "interleaver->in_7" + ], + [ + "pe7_ico->l1_ts", + "interleaver->ts_in_7" + ], + [ + "pe7_ico->l1_ts_alias", + "interleaver->ts_in_7" + ], + [ + "interleaver->out_0", + "self->out_0" + ], + [ + "interleaver->out_1", + "self->out_1" + ], + [ + "interleaver->out_2", + "self->out_2" + ], + [ + "interleaver->out_3", + "self->out_3" + ], + [ + "interleaver->out_4", + "self->out_4" + ], + [ + "interleaver->out_5", + "self->out_5" + ], + [ + "interleaver->out_6", + "self->out_6" + ], + [ + "interleaver->out_7", + "self->out_7" + ], + [ + "interleaver->out_8", + "self->out_8" + ], + [ + "interleaver->out_9", + "self->out_9" + ], + [ + "interleaver->out_10", + "self->out_10" + ], + [ + "interleaver->out_11", + "self->out_11" + ], + [ + "interleaver->out_12", + "self->out_12" + ], + [ + "interleaver->out_13", + "self->out_13" + ], + [ + "interleaver->out_14", + "self->out_14" + ], + [ + "interleaver->out_15", + "self->out_15" + ], + [ + "ext2loc->out", + "interleaver->in_8" + ], + [ + "ext2loc_ts->out", + "interleaver->ts_in_8" + ] + ], + "pe0_ico": { + "vp_class": "interco/router", + "bandwidth": 4, + "latency": 0, + "id": 0, + "mappings": { + "l1": { + "base": "0x10000000", + "size": "0x00010000", + "remove_offset": "0x10000000", + "id": 0 + }, + "l1_ts": { + "base": "0x10100000", + "size": "0x00010000", + "remove_offset": "0x10100000", + "id": 0 + }, + "event_unit": { + "base": "0x10204000", + "size": "0x00000400", + "remove_offset": "0x10204000", + "id": 1 + }, + "dma": { + "base": "0x10204400", + "size": "0x00000400", + "remove_offset": "0x10204400", + "id": 1 + }, + "l1_alias": { + "base": "0x0", + "size": "0x00010000", + "remove_offset": "0x0", + "id": 0 + }, + "l1_ts_alias": { + "base": "0x100000", + "size": "0x00010000", + "remove_offset": "0x100000", + "id": 0 + }, + "event_unit_alias": { + "base": "0x204000", + "size": "0x00000400", + "remove_offset": "0x204000", + "id": 1 + }, + "dma_alias": { + "base": "0x204400", + "size": "0x00000400", + "remove_offset": "0x204400", + "id": 1 + }, + "cluster_ico": { + "id": 1 + } + }, + "vp_ports": [ + "dma", + "dma_alias", + "event_unit", + "event_unit_alias", + "cluster_ico", + "l1", + "l1_alias", + "l1_ts", + "l1_ts_alias", + "nb_read[1]", + "nb_write[1]", + "read_stalls[1]", + "write_stalls[1]", + "stalls[0]", + "input" + ] + }, + "pe1_ico": { + "vp_class": "interco/router", + "bandwidth": 4, + "latency": 0, + "id": 0, + "mappings": { + "l1": { + "base": "0x10000000", + "size": "0x00010000", + "remove_offset": "0x10000000", + "id": 0 + }, + "l1_ts": { + "base": "0x10100000", + "size": "0x00010000", + "remove_offset": "0x10100000", + "id": 0 + }, + "event_unit": { + "base": "0x10204000", + "size": "0x00000400", + "remove_offset": "0x10204000", + "id": 1 + }, + "dma": { + "base": "0x10204400", + "size": "0x00000400", + "remove_offset": "0x10204400", + "id": 1 + }, + "l1_alias": { + "base": "0x0", + "size": "0x00010000", + "remove_offset": "0x0", + "id": 0 + }, + "l1_ts_alias": { + "base": "0x100000", + "size": "0x00010000", + "remove_offset": "0x100000", + "id": 0 + }, + "event_unit_alias": { + "base": "0x204000", + "size": "0x00000400", + "remove_offset": "0x204000", + "id": 1 + }, + "dma_alias": { + "base": "0x204400", + "size": "0x00000400", + "remove_offset": "0x204400", + "id": 1 + }, + "cluster_ico": { + "id": 1 + } + }, + "vp_ports": [ + "dma", + "dma_alias", + "event_unit", + "event_unit_alias", + "cluster_ico", + "l1", + "l1_alias", + "l1_ts", + "l1_ts_alias", + "nb_read[1]", + "nb_write[1]", + "read_stalls[1]", + "write_stalls[1]", + "stalls[0]", + "input" + ] + }, + "pe2_ico": { + "vp_class": "interco/router", + "bandwidth": 4, + "latency": 0, + "id": 0, + "mappings": { + "l1": { + "base": "0x10000000", + "size": "0x00010000", + "remove_offset": "0x10000000", + "id": 0 + }, + "l1_ts": { + "base": "0x10100000", + "size": "0x00010000", + "remove_offset": "0x10100000", + "id": 0 + }, + "event_unit": { + "base": "0x10204000", + "size": "0x00000400", + "remove_offset": "0x10204000", + "id": 1 + }, + "dma": { + "base": "0x10204400", + "size": "0x00000400", + "remove_offset": "0x10204400", + "id": 1 + }, + "l1_alias": { + "base": "0x0", + "size": "0x00010000", + "remove_offset": "0x0", + "id": 0 + }, + "l1_ts_alias": { + "base": "0x100000", + "size": "0x00010000", + "remove_offset": "0x100000", + "id": 0 + }, + "event_unit_alias": { + "base": "0x204000", + "size": "0x00000400", + "remove_offset": "0x204000", + "id": 1 + }, + "dma_alias": { + "base": "0x204400", + "size": "0x00000400", + "remove_offset": "0x204400", + "id": 1 + }, + "cluster_ico": { + "id": 1 + } + }, + "vp_ports": [ + "dma", + "dma_alias", + "event_unit", + "event_unit_alias", + "cluster_ico", + "l1", + "l1_alias", + "l1_ts", + "l1_ts_alias", + "nb_read[1]", + "nb_write[1]", + "read_stalls[1]", + "write_stalls[1]", + "stalls[0]", + "input" + ] + }, + "pe3_ico": { + "vp_class": "interco/router", + "bandwidth": 4, + "latency": 0, + "id": 0, + "mappings": { + "l1": { + "base": "0x10000000", + "size": "0x00010000", + "remove_offset": "0x10000000", + "id": 0 + }, + "l1_ts": { + "base": "0x10100000", + "size": "0x00010000", + "remove_offset": "0x10100000", + "id": 0 + }, + "event_unit": { + "base": "0x10204000", + "size": "0x00000400", + "remove_offset": "0x10204000", + "id": 1 + }, + "dma": { + "base": "0x10204400", + "size": "0x00000400", + "remove_offset": "0x10204400", + "id": 1 + }, + "l1_alias": { + "base": "0x0", + "size": "0x00010000", + "remove_offset": "0x0", + "id": 0 + }, + "l1_ts_alias": { + "base": "0x100000", + "size": "0x00010000", + "remove_offset": "0x100000", + "id": 0 + }, + "event_unit_alias": { + "base": "0x204000", + "size": "0x00000400", + "remove_offset": "0x204000", + "id": 1 + }, + "dma_alias": { + "base": "0x204400", + "size": "0x00000400", + "remove_offset": "0x204400", + "id": 1 + }, + "cluster_ico": { + "id": 1 + } + }, + "vp_ports": [ + "dma", + "dma_alias", + "event_unit", + "event_unit_alias", + "cluster_ico", + "l1", + "l1_alias", + "l1_ts", + "l1_ts_alias", + "nb_read[1]", + "nb_write[1]", + "read_stalls[1]", + "write_stalls[1]", + "stalls[0]", + "input" + ] + }, + "pe4_ico": { + "vp_class": "interco/router", + "bandwidth": 4, + "latency": 0, + "id": 0, + "mappings": { + "l1": { + "base": "0x10000000", + "size": "0x00010000", + "remove_offset": "0x10000000", + "id": 0 + }, + "l1_ts": { + "base": "0x10100000", + "size": "0x00010000", + "remove_offset": "0x10100000", + "id": 0 + }, + "event_unit": { + "base": "0x10204000", + "size": "0x00000400", + "remove_offset": "0x10204000", + "id": 1 + }, + "dma": { + "base": "0x10204400", + "size": "0x00000400", + "remove_offset": "0x10204400", + "id": 1 + }, + "l1_alias": { + "base": "0x0", + "size": "0x00010000", + "remove_offset": "0x0", + "id": 0 + }, + "l1_ts_alias": { + "base": "0x100000", + "size": "0x00010000", + "remove_offset": "0x100000", + "id": 0 + }, + "event_unit_alias": { + "base": "0x204000", + "size": "0x00000400", + "remove_offset": "0x204000", + "id": 1 + }, + "dma_alias": { + "base": "0x204400", + "size": "0x00000400", + "remove_offset": "0x204400", + "id": 1 + }, + "cluster_ico": { + "id": 1 + } + }, + "vp_ports": [ + "dma", + "dma_alias", + "event_unit", + "event_unit_alias", + "cluster_ico", + "l1", + "l1_alias", + "l1_ts", + "l1_ts_alias", + "nb_read[1]", + "nb_write[1]", + "read_stalls[1]", + "write_stalls[1]", + "stalls[0]", + "input" + ] + }, + "pe5_ico": { + "vp_class": "interco/router", + "bandwidth": 4, + "latency": 0, + "id": 0, + "mappings": { + "l1": { + "base": "0x10000000", + "size": "0x00010000", + "remove_offset": "0x10000000", + "id": 0 + }, + "l1_ts": { + "base": "0x10100000", + "size": "0x00010000", + "remove_offset": "0x10100000", + "id": 0 + }, + "event_unit": { + "base": "0x10204000", + "size": "0x00000400", + "remove_offset": "0x10204000", + "id": 1 + }, + "dma": { + "base": "0x10204400", + "size": "0x00000400", + "remove_offset": "0x10204400", + "id": 1 + }, + "l1_alias": { + "base": "0x0", + "size": "0x00010000", + "remove_offset": "0x0", + "id": 0 + }, + "l1_ts_alias": { + "base": "0x100000", + "size": "0x00010000", + "remove_offset": "0x100000", + "id": 0 + }, + "event_unit_alias": { + "base": "0x204000", + "size": "0x00000400", + "remove_offset": "0x204000", + "id": 1 + }, + "dma_alias": { + "base": "0x204400", + "size": "0x00000400", + "remove_offset": "0x204400", + "id": 1 + }, + "cluster_ico": { + "id": 1 + } + }, + "vp_ports": [ + "dma", + "dma_alias", + "event_unit", + "event_unit_alias", + "cluster_ico", + "l1", + "l1_alias", + "l1_ts", + "l1_ts_alias", + "nb_read[1]", + "nb_write[1]", + "read_stalls[1]", + "write_stalls[1]", + "stalls[0]", + "input" + ] + }, + "pe6_ico": { + "vp_class": "interco/router", + "bandwidth": 4, + "latency": 0, + "id": 0, + "mappings": { + "l1": { + "base": "0x10000000", + "size": "0x00010000", + "remove_offset": "0x10000000", + "id": 0 + }, + "l1_ts": { + "base": "0x10100000", + "size": "0x00010000", + "remove_offset": "0x10100000", + "id": 0 + }, + "event_unit": { + "base": "0x10204000", + "size": "0x00000400", + "remove_offset": "0x10204000", + "id": 1 + }, + "dma": { + "base": "0x10204400", + "size": "0x00000400", + "remove_offset": "0x10204400", + "id": 1 + }, + "l1_alias": { + "base": "0x0", + "size": "0x00010000", + "remove_offset": "0x0", + "id": 0 + }, + "l1_ts_alias": { + "base": "0x100000", + "size": "0x00010000", + "remove_offset": "0x100000", + "id": 0 + }, + "event_unit_alias": { + "base": "0x204000", + "size": "0x00000400", + "remove_offset": "0x204000", + "id": 1 + }, + "dma_alias": { + "base": "0x204400", + "size": "0x00000400", + "remove_offset": "0x204400", + "id": 1 + }, + "cluster_ico": { + "id": 1 + } + }, + "vp_ports": [ + "dma", + "dma_alias", + "event_unit", + "event_unit_alias", + "cluster_ico", + "l1", + "l1_alias", + "l1_ts", + "l1_ts_alias", + "nb_read[1]", + "nb_write[1]", + "read_stalls[1]", + "write_stalls[1]", + "stalls[0]", + "input" + ] + }, + "pe7_ico": { + "vp_class": "interco/router", + "bandwidth": 4, + "latency": 0, + "id": 0, + "mappings": { + "l1": { + "base": "0x10000000", + "size": "0x00010000", + "remove_offset": "0x10000000", + "id": 0 + }, + "l1_ts": { + "base": "0x10100000", + "size": "0x00010000", + "remove_offset": "0x10100000", + "id": 0 + }, + "event_unit": { + "base": "0x10204000", + "size": "0x00000400", + "remove_offset": "0x10204000", + "id": 1 + }, + "dma": { + "base": "0x10204400", + "size": "0x00000400", + "remove_offset": "0x10204400", + "id": 1 + }, + "l1_alias": { + "base": "0x0", + "size": "0x00010000", + "remove_offset": "0x0", + "id": 0 + }, + "l1_ts_alias": { + "base": "0x100000", + "size": "0x00010000", + "remove_offset": "0x100000", + "id": 0 + }, + "event_unit_alias": { + "base": "0x204000", + "size": "0x00000400", + "remove_offset": "0x204000", + "id": 1 + }, + "dma_alias": { + "base": "0x204400", + "size": "0x00000400", + "remove_offset": "0x204400", + "id": 1 + }, + "cluster_ico": { + "id": 1 + } + }, + "vp_ports": [ + "dma", + "dma_alias", + "event_unit", + "event_unit_alias", + "cluster_ico", + "l1", + "l1_alias", + "l1_ts", + "l1_ts_alias", + "nb_read[1]", + "nb_write[1]", + "read_stalls[1]", + "write_stalls[1]", + "stalls[0]", + "input" + ] + }, + "interleaver": { + "vp_class": "pulp/cluster/l1_interleaver", + "nb_slaves": 16, + "nb_masters": 12, + "stage_bits": 0, + "interleaving_bits": 2, + "vp_ports": [ + "out_0", + "out_1", + "out_2", + "out_3", + "out_4", + "out_5", + "out_6", + "out_7", + "out_8", + "out_9", + "out_10", + "out_11", + "out_12", + "out_13", + "out_14", + "out_15", + "in_8", + "in_9", + "in_10", + "in_11", + "in_0", + "in_1", + "in_2", + "in_3", + "in_4", + "in_5", + "in_6", + "in_7", + "ts_in_0", + "ts_in_1", + "ts_in_2", + "ts_in_3", + "ts_in_4", + "ts_in_5", + "ts_in_6", + "ts_in_7", + "ts_in_8" + ] + }, + "ext2loc": { + "vp_class": "interco/converter", + "output_width": 4, + "output_align": 4, + "vp_ports": [ + "out", + "input" + ] + }, + "ext2loc_ts": { + "vp_class": "interco/converter", + "output_width": 4, + "output_align": 4, + "vp_ports": [ + "out", + "input" + ] + } + }, + "l1": { + "vp_class": null, + "size": 65536, + "alias": true, + "has_l1_alias": true, + "alias_base": "0x00000000", + "map_base": "0x10000000", + "nb_banks": 16, + "vp_comps": [ + "bank0", + "bank1", + "bank2", + "bank3", + "bank4", + "bank5", + "bank6", + "bank7", + "bank8", + "bank9", + "bank10", + "bank11", + "bank12", + "bank13", + "bank14", + "bank15" + ], + "vp_ports": [ + "in_0", + "in_1", + "in_2", + "in_3", + "in_4", + "in_5", + "in_6", + "in_7", + "in_8", + "in_9", + "in_10", + "in_11", + "in_12", + "in_13", + "in_14", + "in_15" + ], + "vp_bindings": [ + [ + "self->in_0", + "bank0->input" + ], + [ + "self->in_1", + "bank1->input" + ], + [ + "self->in_2", + "bank2->input" + ], + [ + "self->in_3", + "bank3->input" + ], + [ + "self->in_4", + "bank4->input" + ], + [ + "self->in_5", + "bank5->input" + ], + [ + "self->in_6", + "bank6->input" + ], + [ + "self->in_7", + "bank7->input" + ], + [ + "self->in_8", + "bank8->input" + ], + [ + "self->in_9", + "bank9->input" + ], + [ + "self->in_10", + "bank10->input" + ], + [ + "self->in_11", + "bank11->input" + ], + [ + "self->in_12", + "bank12->input" + ], + [ + "self->in_13", + "bank13->input" + ], + [ + "self->in_14", + "bank14->input" + ], + [ + "self->in_15", + "bank15->input" + ] + ], + "bank0": { + "size": 4096, + "width_bits": 2, + "vp_class": "memory/memory", + "power_models": { + "idle": { + "type": "linear", + "unit": "W", + "values": { + "25": { + "1.2": { + "any": "0.00000501264031" + } + } + } + }, + "leakage": { + "type": "linear", + "unit": "W", + "values": { + "25": { + "1.2": { + "any": "0.00001707210625" + } + } + } + }, + "read_8": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "read_16": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "read_32": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "write_8": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "write_16": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "write_32": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + } + }, + "power_trigger": true, + "vp_ports": [ + "input" + ] + }, + "bank1": { + "size": 4096, + "width_bits": 2, + "vp_class": "memory/memory", + "power_models": { + "idle": { + "type": "linear", + "unit": "W", + "values": { + "25": { + "1.2": { + "any": "0.00000501264031" + } + } + } + }, + "leakage": { + "type": "linear", + "unit": "W", + "values": { + "25": { + "1.2": { + "any": "0.00001707210625" + } + } + } + }, + "read_8": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "read_16": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "read_32": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "write_8": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "write_16": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "write_32": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + } + }, + "power_trigger": false, + "vp_ports": [ + "input" + ] + }, + "bank2": { + "size": 4096, + "width_bits": 2, + "vp_class": "memory/memory", + "power_models": { + "idle": { + "type": "linear", + "unit": "W", + "values": { + "25": { + "1.2": { + "any": "0.00000501264031" + } + } + } + }, + "leakage": { + "type": "linear", + "unit": "W", + "values": { + "25": { + "1.2": { + "any": "0.00001707210625" + } + } + } + }, + "read_8": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "read_16": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "read_32": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "write_8": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "write_16": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "write_32": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + } + }, + "power_trigger": false, + "vp_ports": [ + "input" + ] + }, + "bank3": { + "size": 4096, + "width_bits": 2, + "vp_class": "memory/memory", + "power_models": { + "idle": { + "type": "linear", + "unit": "W", + "values": { + "25": { + "1.2": { + "any": "0.00000501264031" + } + } + } + }, + "leakage": { + "type": "linear", + "unit": "W", + "values": { + "25": { + "1.2": { + "any": "0.00001707210625" + } + } + } + }, + "read_8": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "read_16": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "read_32": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "write_8": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "write_16": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "write_32": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + } + }, + "power_trigger": false, + "vp_ports": [ + "input" + ] + }, + "bank4": { + "size": 4096, + "width_bits": 2, + "vp_class": "memory/memory", + "power_models": { + "idle": { + "type": "linear", + "unit": "W", + "values": { + "25": { + "1.2": { + "any": "0.00000501264031" + } + } + } + }, + "leakage": { + "type": "linear", + "unit": "W", + "values": { + "25": { + "1.2": { + "any": "0.00001707210625" + } + } + } + }, + "read_8": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "read_16": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "read_32": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "write_8": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "write_16": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "write_32": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + } + }, + "power_trigger": false, + "vp_ports": [ + "input" + ] + }, + "bank5": { + "size": 4096, + "width_bits": 2, + "vp_class": "memory/memory", + "power_models": { + "idle": { + "type": "linear", + "unit": "W", + "values": { + "25": { + "1.2": { + "any": "0.00000501264031" + } + } + } + }, + "leakage": { + "type": "linear", + "unit": "W", + "values": { + "25": { + "1.2": { + "any": "0.00001707210625" + } + } + } + }, + "read_8": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "read_16": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "read_32": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "write_8": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "write_16": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "write_32": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + } + }, + "power_trigger": false, + "vp_ports": [ + "input" + ] + }, + "bank6": { + "size": 4096, + "width_bits": 2, + "vp_class": "memory/memory", + "power_models": { + "idle": { + "type": "linear", + "unit": "W", + "values": { + "25": { + "1.2": { + "any": "0.00000501264031" + } + } + } + }, + "leakage": { + "type": "linear", + "unit": "W", + "values": { + "25": { + "1.2": { + "any": "0.00001707210625" + } + } + } + }, + "read_8": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "read_16": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "read_32": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "write_8": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "write_16": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "write_32": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + } + }, + "power_trigger": false, + "vp_ports": [ + "input" + ] + }, + "bank7": { + "size": 4096, + "width_bits": 2, + "vp_class": "memory/memory", + "power_models": { + "idle": { + "type": "linear", + "unit": "W", + "values": { + "25": { + "1.2": { + "any": "0.00000501264031" + } + } + } + }, + "leakage": { + "type": "linear", + "unit": "W", + "values": { + "25": { + "1.2": { + "any": "0.00001707210625" + } + } + } + }, + "read_8": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "read_16": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "read_32": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "write_8": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "write_16": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "write_32": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + } + }, + "power_trigger": false, + "vp_ports": [ + "input" + ] + }, + "bank8": { + "size": 4096, + "width_bits": 2, + "vp_class": "memory/memory", + "power_models": { + "idle": { + "type": "linear", + "unit": "W", + "values": { + "25": { + "1.2": { + "any": "0.00000501264031" + } + } + } + }, + "leakage": { + "type": "linear", + "unit": "W", + "values": { + "25": { + "1.2": { + "any": "0.00001707210625" + } + } + } + }, + "read_8": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "read_16": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "read_32": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "write_8": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "write_16": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "write_32": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + } + }, + "power_trigger": false, + "vp_ports": [ + "input" + ] + }, + "bank9": { + "size": 4096, + "width_bits": 2, + "vp_class": "memory/memory", + "power_models": { + "idle": { + "type": "linear", + "unit": "W", + "values": { + "25": { + "1.2": { + "any": "0.00000501264031" + } + } + } + }, + "leakage": { + "type": "linear", + "unit": "W", + "values": { + "25": { + "1.2": { + "any": "0.00001707210625" + } + } + } + }, + "read_8": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "read_16": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "read_32": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "write_8": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "write_16": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "write_32": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + } + }, + "power_trigger": false, + "vp_ports": [ + "input" + ] + }, + "bank10": { + "size": 4096, + "width_bits": 2, + "vp_class": "memory/memory", + "power_models": { + "idle": { + "type": "linear", + "unit": "W", + "values": { + "25": { + "1.2": { + "any": "0.00000501264031" + } + } + } + }, + "leakage": { + "type": "linear", + "unit": "W", + "values": { + "25": { + "1.2": { + "any": "0.00001707210625" + } + } + } + }, + "read_8": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "read_16": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "read_32": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "write_8": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "write_16": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "write_32": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + } + }, + "power_trigger": false, + "vp_ports": [ + "input" + ] + }, + "bank11": { + "size": 4096, + "width_bits": 2, + "vp_class": "memory/memory", + "power_models": { + "idle": { + "type": "linear", + "unit": "W", + "values": { + "25": { + "1.2": { + "any": "0.00000501264031" + } + } + } + }, + "leakage": { + "type": "linear", + "unit": "W", + "values": { + "25": { + "1.2": { + "any": "0.00001707210625" + } + } + } + }, + "read_8": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "read_16": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "read_32": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "write_8": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "write_16": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "write_32": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + } + }, + "power_trigger": false, + "vp_ports": [ + "input" + ] + }, + "bank12": { + "size": 4096, + "width_bits": 2, + "vp_class": "memory/memory", + "power_models": { + "idle": { + "type": "linear", + "unit": "W", + "values": { + "25": { + "1.2": { + "any": "0.00000501264031" + } + } + } + }, + "leakage": { + "type": "linear", + "unit": "W", + "values": { + "25": { + "1.2": { + "any": "0.00001707210625" + } + } + } + }, + "read_8": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "read_16": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "read_32": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "write_8": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "write_16": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "write_32": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + } + }, + "power_trigger": false, + "vp_ports": [ + "input" + ] + }, + "bank13": { + "size": 4096, + "width_bits": 2, + "vp_class": "memory/memory", + "power_models": { + "idle": { + "type": "linear", + "unit": "W", + "values": { + "25": { + "1.2": { + "any": "0.00000501264031" + } + } + } + }, + "leakage": { + "type": "linear", + "unit": "W", + "values": { + "25": { + "1.2": { + "any": "0.00001707210625" + } + } + } + }, + "read_8": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "read_16": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "read_32": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "write_8": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "write_16": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "write_32": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + } + }, + "power_trigger": false, + "vp_ports": [ + "input" + ] + }, + "bank14": { + "size": 4096, + "width_bits": 2, + "vp_class": "memory/memory", + "power_models": { + "idle": { + "type": "linear", + "unit": "W", + "values": { + "25": { + "1.2": { + "any": "0.00000501264031" + } + } + } + }, + "leakage": { + "type": "linear", + "unit": "W", + "values": { + "25": { + "1.2": { + "any": "0.00001707210625" + } + } + } + }, + "read_8": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "read_16": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "read_32": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "write_8": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "write_16": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "write_32": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + } + }, + "power_trigger": false, + "vp_ports": [ + "input" + ] + }, + "bank15": { + "size": 4096, + "width_bits": 2, + "vp_class": "memory/memory", + "power_models": { + "idle": { + "type": "linear", + "unit": "W", + "values": { + "25": { + "1.2": { + "any": "0.00000501264031" + } + } + } + }, + "leakage": { + "type": "linear", + "unit": "W", + "values": { + "25": { + "1.2": { + "any": "0.00001707210625" + } + } + } + }, + "read_8": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "read_16": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "read_32": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "write_8": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "write_16": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + }, + "write_32": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.124280487" + } + } + } + } + }, + "power_trigger": false, + "vp_ports": [ + "input" + ] + } + }, + "icache": { + "vp_class": "cache/cache", + "nb_ports": 8, + "nb_sets_bits": 6, + "nb_ways_bits": 2, + "line_size_bits": 4, + "vp_ports": [ + "refill", + "enable", + "flush", + "flush_line", + "flush_line_addr", + "input_0", + "input_1", + "input_2", + "input_3", + "input_4", + "input_5", + "input_6", + "input_7" + ] + }, + "dma": { + "version": 7, + "hal_files": [ + "hal/dma/mchan_v7.h" + ], + "archi_files": [ + "archi/dma/mchan_v7.h" + ], + "vp_class": "pulp/mchan/mchan_v7", + "nb_channels": 9, + "core_queue_depth": 2, + "global_queue_depth": 8, + "is_64": false, + "max_nb_ext_read_req": 8, + "max_nb_ext_write_req": 8, + "max_burst_length": 256, + "nb_loc_ports": 4, + "tcdm_addr_width": 20, + "vp_ports": [ + "ext_irq_itf", + "event_itf_0", + "event_itf_1", + "event_itf_2", + "event_itf_3", + "event_itf_4", + "event_itf_5", + "event_itf_6", + "event_itf_7", + "irq_itf_0", + "irq_itf_1", + "irq_itf_2", + "irq_itf_3", + "irq_itf_4", + "irq_itf_5", + "irq_itf_6", + "irq_itf_7", + "ext_itf", + "loc_itf_0", + "loc_itf_1", + "loc_itf_2", + "loc_itf_3", + "in_8", + "in_0", + "in_1", + "in_2", + "in_3", + "in_4", + "in_5", + "in_6", + "in_7" + ] + }, + "cluster_ctrl": { + "version": 2, + "vp_class": "pulp/cluster/cluster_ctrl_v2", + "hal_files": [ + "hal/cluster_ctrl/cluster_ctrl_v2.h" + ], + "archi_files": [ + "archi/cluster_ctrl/cluster_ctrl_v2.h" + ], + "nb_core": 8, + "vp_ports": [ + "bootaddr_0", + "bootaddr_1", + "bootaddr_2", + "bootaddr_3", + "bootaddr_4", + "bootaddr_5", + "bootaddr_6", + "bootaddr_7", + "fetchen_0", + "fetchen_1", + "fetchen_2", + "fetchen_3", + "fetchen_4", + "fetchen_5", + "fetchen_6", + "fetchen_7", + "halt_0", + "halt_1", + "halt_2", + "halt_3", + "halt_4", + "halt_5", + "halt_6", + "halt_7", + "input", + "core_halt_0", + "core_halt_1", + "core_halt_2", + "core_halt_3", + "core_halt_4", + "core_halt_5", + "core_halt_6", + "core_halt_7" + ] + }, + "event_unit": { + "version": 3, + "nb_core": 8, + "vp_class": "pulp/event_unit/eu_v3", + "hal_files": [ + "hal/eu/eu_v3.h" + ], + "archi_files": [ + "archi/eu/eu_v3.h" + ], + "regmap": { + "areas": { + "global": { + "cores": { + "offset": "0x0000", + "size": "0x0400", + "areas": { + "core": { + "offset": "0x0000", + "size": "0x0040", + "number": 16 + } + } + }, + "barriers": { + "offset": "0x0400", + "size": "0x0200", + "areas": { + "barrier": { + "offset": "0x0000", + "size": "0x0020", + "number": 16 + } + } + }, + "sw_events": { + "offset": "0x0600", + "size": "0x0100" + }, + "soc_events": { + "offset": "0x0700", + "size": "0x0080" + }, + "ext_events": { + "offset": "0x0780", + "size": "0x0080" + }, + "mutex": { + "size": "0x0040" + }, + "dispatch": { + "size": "0x0040" + } + }, + "demux": { + "core": { + "offset": "0x0000", + "size": "0x0040" + }, + "dispatch": { + "offset": "0x0080", + "size": "0x0040" + }, + "mutex": { + "offset": "0x00C0", + "size": "0x0040" + }, + "sw_events": { + "offset": "0x0100", + "size": "0x0100" + }, + "barriers": { + "offset": "0x0200", + "size": "0x0200" + } + } + }, + "registers": { + "mask": { + "areas": [ + "demux/core", + "global/cores/core" + ], + "offset": "0x00", + "width": 32 + }, + "mask_and": { + "areas": [ + "demux/core", + "global/cores/core" + ], + "offset": "0x04", + "width": 32 + }, + "mask_or": { + "areas": [ + "demux/core", + "global/cores/core" + ], + "offset": "0x08", + "width": 32 + }, + "mask_irq": { + "areas": [ + "demux/core", + "global/cores/core" + ], + "offset": "0x0C", + "width": 32 + }, + "mask_irq_and": { + "areas": [ + "demux/core", + "global/cores/core" + ], + "offset": "0x10", + "width": 32 + }, + "mask_irq_or": { + "areas": [ + "demux/core", + "global/cores/core" + ], + "offset": "0x14", + "width": 32 + }, + "status": { + "areas": [ + "demux/core", + "global/cores/core" + ], + "offset": "0x18", + "width": 32 + }, + "buffer": { + "areas": [ + "demux/core", + "global/cores/core" + ], + "offset": "0x1C", + "width": 32 + }, + "buffer_masked": { + "areas": [ + "demux/core", + "global/cores/core" + ], + "offset": "0x20", + "width": 32 + }, + "buffer_irq_masked": { + "areas": [ + "demux/core", + "global/cores/core" + ], + "offset": "0x24", + "width": 32 + }, + "buffer_clear": { + "areas": [ + "demux/core", + "global/cores/core" + ], + "offset": "0x28", + "width": 32 + }, + "sw_events_mask": { + "areas": [ + "demux/core", + "global/cores/core" + ], + "offset": "0x2C", + "width": 32 + }, + "sw_events_mask_and": { + "areas": [ + "demux/core", + "global/cores/core" + ], + "offset": "0x30", + "width": 32 + }, + "sw_events_mask_or": { + "areas": [ + "demux/core", + "global/cores/core" + ], + "offset": "0x34", + "width": 32 + }, + "event_wait": { + "areas": [ + "demux/core", + "global/cores/core" + ], + "offset": "0x38", + "width": 32 + }, + "event_wait_clear": { + "areas": [ + "demux/core", + "global/cores/core" + ], + "offset": "0x3C", + "width": 32 + }, + "trigg_sw_event": { + "areas": [ + "demux/sw_events", + "global/sw_events" + ], + "offset": "0x00", + "width": 32, + "number": 16 + }, + "trigg_sw_event_wait": { + "areas": [ + "demux/sw_events", + "global/sw_events" + ], + "offset": "0x40", + "width": 32, + "number": 16 + }, + "trigg_sw_event_wait_clear": { + "areas": [ + "demux/sw_events", + "global/sw_events" + ], + "offset": "0x80", + "width": 32, + "number": 16 + }, + "soc_events_current_event": { + "areas": [ + "global/soc_events" + ], + "offset": "0x00", + "width": 32, + "bitfield": { + "event_id": { + "bit": 0, + "width": 9 + }, + "valid": { + "bit": 31, + "width": 1 + } + } + }, + "barr_trigger_mask": { + "areas": [ + "demux/barriers", + "global/barriers" + ], + "offset": "0x00", + "width": 32 + }, + "barr_status": { + "areas": [ + "demux/barriers", + "global/barriers" + ], + "offset": "0x04", + "width": 32 + }, + "barr_status_summary": { + "areas": [ + "demux/barriers", + "global/barriers" + ], + "offset": "0x08", + "width": 32 + }, + "barr_target_mask": { + "areas": [ + "demux/barriers", + "global/barriers" + ], + "offset": "0x0C", + "width": 32 + }, + "barr_trigger": { + "areas": [ + "demux/barriers", + "global/barriers" + ], + "offset": "0x10", + "width": 32 + }, + "barr_trigger_self": { + "areas": [ + "demux/barriers", + "global/barriers" + ], + "offset": "0x14", + "width": 32 + }, + "barr_trigger_wait": { + "areas": [ + "demux/barriers", + "global/barriers" + ], + "offset": "0x18", + "width": 32 + }, + "barr_trigger_wait_clear": { + "areas": [ + "demux/barriers", + "global/barriers" + ], + "offset": "0x1C", + "width": 32 + }, + "dispatch_fifo_access": { + "areas": [ + "demux/dispatch", + "global/dispatch" + ], + "offset": "0x00", + "width": 32 + }, + "dispatch_team_config": { + "areas": [ + "demux/dispatch", + "global/dispatch" + ], + "offset": "0x04", + "width": 32 + } + } + }, + "properties": { + "dispatch": { + "size": 8 + }, + "mutex": { + "nb_mutexes": 1 + }, + "barriers": { + "nb_barriers": 8 + }, + "soc_event": { + "nb_fifo_events": 8, + "fifo_event": 27 + }, + "events": { + "barrier": 16, + "mutex": 17, + "dispatch": 18 + } + }, + "vp_ports": [ + "irq_req_0", + "irq_req_1", + "irq_req_2", + "irq_req_3", + "irq_req_4", + "irq_req_5", + "irq_req_6", + "irq_req_7", + "clock_0", + "clock_1", + "clock_2", + "clock_3", + "clock_4", + "clock_5", + "clock_6", + "clock_7", + "input", + "demux_in_0", + "demux_in_1", + "demux_in_2", + "demux_in_3", + "demux_in_4", + "demux_in_5", + "demux_in_6", + "demux_in_7", + "in_event_8_pe_0", + "in_event_8_pe_1", + "in_event_8_pe_2", + "in_event_8_pe_3", + "in_event_8_pe_4", + "in_event_8_pe_5", + "in_event_8_pe_6", + "in_event_8_pe_7", + "in_event_9_pe_0", + "in_event_9_pe_1", + "in_event_9_pe_2", + "in_event_9_pe_3", + "in_event_9_pe_4", + "in_event_9_pe_5", + "in_event_9_pe_6", + "in_event_9_pe_7", + "in_event_22_pe_0", + "in_event_22_pe_1", + "in_event_22_pe_2", + "in_event_22_pe_3", + "in_event_22_pe_4", + "in_event_22_pe_5", + "in_event_22_pe_6", + "in_event_22_pe_7", + "in_event_10_pe_0", + "in_event_10_pe_1", + "in_event_10_pe_2", + "in_event_10_pe_3", + "in_event_10_pe_4", + "in_event_10_pe_5", + "in_event_10_pe_6", + "in_event_10_pe_7", + "in_event_11_pe_0", + "in_event_11_pe_1", + "in_event_11_pe_2", + "in_event_11_pe_3", + "in_event_11_pe_4", + "in_event_11_pe_5", + "in_event_11_pe_6", + "in_event_11_pe_7", + "irq_ack_0", + "irq_ack_1", + "irq_ack_2", + "irq_ack_3", + "irq_ack_4", + "irq_ack_5", + "irq_ack_6", + "irq_ack_7" + ] + }, + "timer": { + "version": 2, + "vp_class": "pulp/timer/timer_v2", + "hal_files": [ + "hal/timer/timer_v2.h" + ], + "archi_files": [ + "archi/timer/timer_v2.h" + ], + "vp_ports": [ + "irq_itf_0", + "irq_itf_1", + "input", + "ref_clock" + ] + }, + "icache_ctrl": { + "version": 2, + "vp_class": "pulp/icache_ctrl/icache_ctrl_v2", + "hal_files": [ + "hal/icache/icache_ctrl_v2.h" + ], + "vp_ports": [ + "enable", + "flush", + "flush_line", + "flush_line_addr", + "input" + ] + }, + "pe": { + "version": "ri5cyv2", + "bootaddr_offset": "0x00", + "archi": "riscv", + "implementation": "ri5cy", + "gv_isa": [ + "--pulp", + "--rv32m", + "--pulpv2", + "--pulp-perf-counters", + "--pulp-hw-loop", + "--itc-external-req", + "--fpu", + "--fpud", + "--shared-fpu" + ], + "isa": "rv32imfcXpulpv2Xf8Xf16XfvecXfauxXf16altXgap9", + "march": "imfcXpulpv2Xf8Xf16XfvecXfauxXf16alt", + "priv_version": 1.9, + "perf_counters": true, + "first_ext_counter": 12, + "features": [ + "misaligned", + "perf" + ], + "hal_files": [ + "hal/riscv/riscv_v5.h", + "hal/riscv/types.h" + ], + "archi_files": [ + "archi/riscv/priv_1_10.h", + "archi/riscv/builtins_v2.h", + "archi/riscv/builtins_v2_emu.h", + "archi/riscv/pcer_v2.h" + ], + "defines": [ + "ARCHI_CORE_HAS_PULPV2", + "CORE_PULP_BUILTINS", + "ARCHI_CORE_HAS_1_10" + ], + "vp_class": "cpu/iss/iss", + "first_external_pcer": 12, + "riscv_dbg_unit": true, + "debug_binaries": [], + "debug_handler": "0x1a190800", + "power_models": { + "clock_gated": { + "type": "linear", + "unit": "W", + "values": { + "25": { + "1.2": { + "any": "0.0000016" + } + } + } + }, + "insn": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.4854524" + }, + "1.1": { + "any": "1.2" + } + } + } + }, + "leakage": { + "type": "linear", + "unit": "W", + "values": { + "25": { + "1.2": { + "any": "0.000030" + } + } + } + } + }, + "iss_class": "iss_riscy_v2_5_single_regfile", + "cluster_id": 0, + "core_id": 0, + "boot_addr": "0x1C000000" + }, + "pe0": { + "version": "ri5cyv2", + "bootaddr_offset": "0x00", + "archi": "riscv", + "implementation": "ri5cy", + "gv_isa": [ + "--pulp", + "--rv32m", + "--pulpv2", + "--pulp-perf-counters", + "--pulp-hw-loop", + "--itc-external-req", + "--fpu", + "--fpud", + "--shared-fpu" + ], + "isa": "rv32imfcXpulpv2Xf8Xf16XfvecXfauxXf16altXgap9", + "march": "imfcXpulpv2Xf8Xf16XfvecXfauxXf16alt", + "priv_version": 1.9, + "perf_counters": true, + "first_ext_counter": 12, + "features": [ + "misaligned", + "perf" + ], + "hal_files": [ + "hal/riscv/riscv_v5.h", + "hal/riscv/types.h" + ], + "archi_files": [ + "archi/riscv/priv_1_10.h", + "archi/riscv/builtins_v2.h", + "archi/riscv/builtins_v2_emu.h", + "archi/riscv/pcer_v2.h" + ], + "defines": [ + "ARCHI_CORE_HAS_PULPV2", + "CORE_PULP_BUILTINS", + "ARCHI_CORE_HAS_1_10" + ], + "vp_class": "cpu/iss/iss", + "first_external_pcer": 12, + "riscv_dbg_unit": true, + "debug_binaries": [], + "debug_handler": "0x1a190800", + "power_models": { + "clock_gated": { + "type": "linear", + "unit": "W", + "values": { + "25": { + "1.2": { + "any": "0.0000016" + } + } + } + }, + "insn": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.4854524" + }, + "1.1": { + "any": "1.2" + } + } + } + }, + "leakage": { + "type": "linear", + "unit": "W", + "values": { + "25": { + "1.2": { + "any": "0.000030" + } + } + } + } + }, + "iss_class": "iss_riscy_v2_5_single_regfile", + "cluster_id": 0, + "core_id": 0, + "fetch_enable": null, + "boot_addr": null, + "vp_ports": [ + "halt_status", + "data", + "fetch", + "irq_ack", + "ext_counter[12]", + "ext_counter[13]", + "ext_counter[14]", + "ext_counter[15]", + "ext_counter[16]", + "dbg_unit", + "bootaddr", + "fetchen", + "halt", + "irq_req", + "clock" + ] + }, + "pe1": { + "version": "ri5cyv2", + "bootaddr_offset": "0x00", + "archi": "riscv", + "implementation": "ri5cy", + "gv_isa": [ + "--pulp", + "--rv32m", + "--pulpv2", + "--pulp-perf-counters", + "--pulp-hw-loop", + "--itc-external-req", + "--fpu", + "--fpud", + "--shared-fpu" + ], + "isa": "rv32imfcXpulpv2Xf8Xf16XfvecXfauxXf16altXgap9", + "march": "imfcXpulpv2Xf8Xf16XfvecXfauxXf16alt", + "priv_version": 1.9, + "perf_counters": true, + "first_ext_counter": 12, + "features": [ + "misaligned", + "perf" + ], + "hal_files": [ + "hal/riscv/riscv_v5.h", + "hal/riscv/types.h" + ], + "archi_files": [ + "archi/riscv/priv_1_10.h", + "archi/riscv/builtins_v2.h", + "archi/riscv/builtins_v2_emu.h", + "archi/riscv/pcer_v2.h" + ], + "defines": [ + "ARCHI_CORE_HAS_PULPV2", + "CORE_PULP_BUILTINS", + "ARCHI_CORE_HAS_1_10" + ], + "vp_class": "cpu/iss/iss", + "first_external_pcer": 12, + "riscv_dbg_unit": true, + "debug_binaries": [], + "debug_handler": "0x1a190800", + "power_models": { + "clock_gated": { + "type": "linear", + "unit": "W", + "values": { + "25": { + "1.2": { + "any": "0.0000016" + } + } + } + }, + "insn": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.4854524" + }, + "1.1": { + "any": "1.2" + } + } + } + }, + "leakage": { + "type": "linear", + "unit": "W", + "values": { + "25": { + "1.2": { + "any": "0.000030" + } + } + } + } + }, + "iss_class": "iss_riscy_v2_5_single_regfile", + "cluster_id": 0, + "core_id": 1, + "fetch_enable": null, + "boot_addr": null, + "vp_ports": [ + "halt_status", + "data", + "fetch", + "irq_ack", + "ext_counter[12]", + "ext_counter[13]", + "ext_counter[14]", + "ext_counter[15]", + "ext_counter[16]", + "dbg_unit", + "bootaddr", + "fetchen", + "halt", + "irq_req", + "clock" + ] + }, + "pe2": { + "version": "ri5cyv2", + "bootaddr_offset": "0x00", + "archi": "riscv", + "implementation": "ri5cy", + "gv_isa": [ + "--pulp", + "--rv32m", + "--pulpv2", + "--pulp-perf-counters", + "--pulp-hw-loop", + "--itc-external-req", + "--fpu", + "--fpud", + "--shared-fpu" + ], + "isa": "rv32imfcXpulpv2Xf8Xf16XfvecXfauxXf16altXgap9", + "march": "imfcXpulpv2Xf8Xf16XfvecXfauxXf16alt", + "priv_version": 1.9, + "perf_counters": true, + "first_ext_counter": 12, + "features": [ + "misaligned", + "perf" + ], + "hal_files": [ + "hal/riscv/riscv_v5.h", + "hal/riscv/types.h" + ], + "archi_files": [ + "archi/riscv/priv_1_10.h", + "archi/riscv/builtins_v2.h", + "archi/riscv/builtins_v2_emu.h", + "archi/riscv/pcer_v2.h" + ], + "defines": [ + "ARCHI_CORE_HAS_PULPV2", + "CORE_PULP_BUILTINS", + "ARCHI_CORE_HAS_1_10" + ], + "vp_class": "cpu/iss/iss", + "first_external_pcer": 12, + "riscv_dbg_unit": true, + "debug_binaries": [], + "debug_handler": "0x1a190800", + "power_models": { + "clock_gated": { + "type": "linear", + "unit": "W", + "values": { + "25": { + "1.2": { + "any": "0.0000016" + } + } + } + }, + "insn": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.4854524" + }, + "1.1": { + "any": "1.2" + } + } + } + }, + "leakage": { + "type": "linear", + "unit": "W", + "values": { + "25": { + "1.2": { + "any": "0.000030" + } + } + } + } + }, + "iss_class": "iss_riscy_v2_5_single_regfile", + "cluster_id": 0, + "core_id": 2, + "fetch_enable": null, + "boot_addr": null, + "vp_ports": [ + "halt_status", + "data", + "fetch", + "irq_ack", + "ext_counter[12]", + "ext_counter[13]", + "ext_counter[14]", + "ext_counter[15]", + "ext_counter[16]", + "dbg_unit", + "bootaddr", + "fetchen", + "halt", + "irq_req", + "clock" + ] + }, + "pe3": { + "version": "ri5cyv2", + "bootaddr_offset": "0x00", + "archi": "riscv", + "implementation": "ri5cy", + "gv_isa": [ + "--pulp", + "--rv32m", + "--pulpv2", + "--pulp-perf-counters", + "--pulp-hw-loop", + "--itc-external-req", + "--fpu", + "--fpud", + "--shared-fpu" + ], + "isa": "rv32imfcXpulpv2Xf8Xf16XfvecXfauxXf16altXgap9", + "march": "imfcXpulpv2Xf8Xf16XfvecXfauxXf16alt", + "priv_version": 1.9, + "perf_counters": true, + "first_ext_counter": 12, + "features": [ + "misaligned", + "perf" + ], + "hal_files": [ + "hal/riscv/riscv_v5.h", + "hal/riscv/types.h" + ], + "archi_files": [ + "archi/riscv/priv_1_10.h", + "archi/riscv/builtins_v2.h", + "archi/riscv/builtins_v2_emu.h", + "archi/riscv/pcer_v2.h" + ], + "defines": [ + "ARCHI_CORE_HAS_PULPV2", + "CORE_PULP_BUILTINS", + "ARCHI_CORE_HAS_1_10" + ], + "vp_class": "cpu/iss/iss", + "first_external_pcer": 12, + "riscv_dbg_unit": true, + "debug_binaries": [], + "debug_handler": "0x1a190800", + "power_models": { + "clock_gated": { + "type": "linear", + "unit": "W", + "values": { + "25": { + "1.2": { + "any": "0.0000016" + } + } + } + }, + "insn": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.4854524" + }, + "1.1": { + "any": "1.2" + } + } + } + }, + "leakage": { + "type": "linear", + "unit": "W", + "values": { + "25": { + "1.2": { + "any": "0.000030" + } + } + } + } + }, + "iss_class": "iss_riscy_v2_5_single_regfile", + "cluster_id": 0, + "core_id": 3, + "fetch_enable": null, + "boot_addr": null, + "vp_ports": [ + "halt_status", + "data", + "fetch", + "irq_ack", + "ext_counter[12]", + "ext_counter[13]", + "ext_counter[14]", + "ext_counter[15]", + "ext_counter[16]", + "dbg_unit", + "bootaddr", + "fetchen", + "halt", + "irq_req", + "clock" + ] + }, + "pe4": { + "version": "ri5cyv2", + "bootaddr_offset": "0x00", + "archi": "riscv", + "implementation": "ri5cy", + "gv_isa": [ + "--pulp", + "--rv32m", + "--pulpv2", + "--pulp-perf-counters", + "--pulp-hw-loop", + "--itc-external-req", + "--fpu", + "--fpud", + "--shared-fpu" + ], + "isa": "rv32imfcXpulpv2Xf8Xf16XfvecXfauxXf16altXgap9", + "march": "imfcXpulpv2Xf8Xf16XfvecXfauxXf16alt", + "priv_version": 1.9, + "perf_counters": true, + "first_ext_counter": 12, + "features": [ + "misaligned", + "perf" + ], + "hal_files": [ + "hal/riscv/riscv_v5.h", + "hal/riscv/types.h" + ], + "archi_files": [ + "archi/riscv/priv_1_10.h", + "archi/riscv/builtins_v2.h", + "archi/riscv/builtins_v2_emu.h", + "archi/riscv/pcer_v2.h" + ], + "defines": [ + "ARCHI_CORE_HAS_PULPV2", + "CORE_PULP_BUILTINS", + "ARCHI_CORE_HAS_1_10" + ], + "vp_class": "cpu/iss/iss", + "first_external_pcer": 12, + "riscv_dbg_unit": true, + "debug_binaries": [], + "debug_handler": "0x1a190800", + "power_models": { + "clock_gated": { + "type": "linear", + "unit": "W", + "values": { + "25": { + "1.2": { + "any": "0.0000016" + } + } + } + }, + "insn": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.4854524" + }, + "1.1": { + "any": "1.2" + } + } + } + }, + "leakage": { + "type": "linear", + "unit": "W", + "values": { + "25": { + "1.2": { + "any": "0.000030" + } + } + } + } + }, + "iss_class": "iss_riscy_v2_5_single_regfile", + "cluster_id": 0, + "core_id": 4, + "fetch_enable": null, + "boot_addr": null, + "vp_ports": [ + "halt_status", + "data", + "fetch", + "irq_ack", + "ext_counter[12]", + "ext_counter[13]", + "ext_counter[14]", + "ext_counter[15]", + "ext_counter[16]", + "dbg_unit", + "bootaddr", + "fetchen", + "halt", + "irq_req", + "clock" + ] + }, + "pe5": { + "version": "ri5cyv2", + "bootaddr_offset": "0x00", + "archi": "riscv", + "implementation": "ri5cy", + "gv_isa": [ + "--pulp", + "--rv32m", + "--pulpv2", + "--pulp-perf-counters", + "--pulp-hw-loop", + "--itc-external-req", + "--fpu", + "--fpud", + "--shared-fpu" + ], + "isa": "rv32imfcXpulpv2Xf8Xf16XfvecXfauxXf16altXgap9", + "march": "imfcXpulpv2Xf8Xf16XfvecXfauxXf16alt", + "priv_version": 1.9, + "perf_counters": true, + "first_ext_counter": 12, + "features": [ + "misaligned", + "perf" + ], + "hal_files": [ + "hal/riscv/riscv_v5.h", + "hal/riscv/types.h" + ], + "archi_files": [ + "archi/riscv/priv_1_10.h", + "archi/riscv/builtins_v2.h", + "archi/riscv/builtins_v2_emu.h", + "archi/riscv/pcer_v2.h" + ], + "defines": [ + "ARCHI_CORE_HAS_PULPV2", + "CORE_PULP_BUILTINS", + "ARCHI_CORE_HAS_1_10" + ], + "vp_class": "cpu/iss/iss", + "first_external_pcer": 12, + "riscv_dbg_unit": true, + "debug_binaries": [], + "debug_handler": "0x1a190800", + "power_models": { + "clock_gated": { + "type": "linear", + "unit": "W", + "values": { + "25": { + "1.2": { + "any": "0.0000016" + } + } + } + }, + "insn": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.4854524" + }, + "1.1": { + "any": "1.2" + } + } + } + }, + "leakage": { + "type": "linear", + "unit": "W", + "values": { + "25": { + "1.2": { + "any": "0.000030" + } + } + } + } + }, + "iss_class": "iss_riscy_v2_5_single_regfile", + "cluster_id": 0, + "core_id": 5, + "fetch_enable": null, + "boot_addr": null, + "vp_ports": [ + "halt_status", + "data", + "fetch", + "irq_ack", + "ext_counter[12]", + "ext_counter[13]", + "ext_counter[14]", + "ext_counter[15]", + "ext_counter[16]", + "dbg_unit", + "bootaddr", + "fetchen", + "halt", + "irq_req", + "clock" + ] + }, + "pe6": { + "version": "ri5cyv2", + "bootaddr_offset": "0x00", + "archi": "riscv", + "implementation": "ri5cy", + "gv_isa": [ + "--pulp", + "--rv32m", + "--pulpv2", + "--pulp-perf-counters", + "--pulp-hw-loop", + "--itc-external-req", + "--fpu", + "--fpud", + "--shared-fpu" + ], + "isa": "rv32imfcXpulpv2Xf8Xf16XfvecXfauxXf16altXgap9", + "march": "imfcXpulpv2Xf8Xf16XfvecXfauxXf16alt", + "priv_version": 1.9, + "perf_counters": true, + "first_ext_counter": 12, + "features": [ + "misaligned", + "perf" + ], + "hal_files": [ + "hal/riscv/riscv_v5.h", + "hal/riscv/types.h" + ], + "archi_files": [ + "archi/riscv/priv_1_10.h", + "archi/riscv/builtins_v2.h", + "archi/riscv/builtins_v2_emu.h", + "archi/riscv/pcer_v2.h" + ], + "defines": [ + "ARCHI_CORE_HAS_PULPV2", + "CORE_PULP_BUILTINS", + "ARCHI_CORE_HAS_1_10" + ], + "vp_class": "cpu/iss/iss", + "first_external_pcer": 12, + "riscv_dbg_unit": true, + "debug_binaries": [], + "debug_handler": "0x1a190800", + "power_models": { + "clock_gated": { + "type": "linear", + "unit": "W", + "values": { + "25": { + "1.2": { + "any": "0.0000016" + } + } + } + }, + "insn": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.4854524" + }, + "1.1": { + "any": "1.2" + } + } + } + }, + "leakage": { + "type": "linear", + "unit": "W", + "values": { + "25": { + "1.2": { + "any": "0.000030" + } + } + } + } + }, + "iss_class": "iss_riscy_v2_5_single_regfile", + "cluster_id": 0, + "core_id": 6, + "fetch_enable": null, + "boot_addr": null, + "vp_ports": [ + "halt_status", + "data", + "fetch", + "irq_ack", + "ext_counter[12]", + "ext_counter[13]", + "ext_counter[14]", + "ext_counter[15]", + "ext_counter[16]", + "dbg_unit", + "bootaddr", + "fetchen", + "halt", + "irq_req", + "clock" + ] + }, + "pe7": { + "version": "ri5cyv2", + "bootaddr_offset": "0x00", + "archi": "riscv", + "implementation": "ri5cy", + "gv_isa": [ + "--pulp", + "--rv32m", + "--pulpv2", + "--pulp-perf-counters", + "--pulp-hw-loop", + "--itc-external-req", + "--fpu", + "--fpud", + "--shared-fpu" + ], + "isa": "rv32imfcXpulpv2Xf8Xf16XfvecXfauxXf16altXgap9", + "march": "imfcXpulpv2Xf8Xf16XfvecXfauxXf16alt", + "priv_version": 1.9, + "perf_counters": true, + "first_ext_counter": 12, + "features": [ + "misaligned", + "perf" + ], + "hal_files": [ + "hal/riscv/riscv_v5.h", + "hal/riscv/types.h" + ], + "archi_files": [ + "archi/riscv/priv_1_10.h", + "archi/riscv/builtins_v2.h", + "archi/riscv/builtins_v2_emu.h", + "archi/riscv/pcer_v2.h" + ], + "defines": [ + "ARCHI_CORE_HAS_PULPV2", + "CORE_PULP_BUILTINS", + "ARCHI_CORE_HAS_1_10" + ], + "vp_class": "cpu/iss/iss", + "first_external_pcer": 12, + "riscv_dbg_unit": true, + "debug_binaries": [], + "debug_handler": "0x1a190800", + "power_models": { + "clock_gated": { + "type": "linear", + "unit": "W", + "values": { + "25": { + "1.2": { + "any": "0.0000016" + } + } + } + }, + "insn": { + "type": "linear", + "unit": "pJ", + "values": { + "25": { + "1.2": { + "any": "2.4854524" + }, + "1.1": { + "any": "1.2" + } + } + } + }, + "leakage": { + "type": "linear", + "unit": "W", + "values": { + "25": { + "1.2": { + "any": "0.000030" + } + } + } + } + }, + "iss_class": "iss_riscy_v2_5_single_regfile", + "cluster_id": 0, + "core_id": 7, + "fetch_enable": null, + "boot_addr": null, + "vp_ports": [ + "halt_status", + "data", + "fetch", + "irq_ack", + "ext_counter[12]", + "ext_counter[13]", + "ext_counter[14]", + "ext_counter[15]", + "ext_counter[16]", + "dbg_unit", + "bootaddr", + "fetchen", + "halt", + "irq_req", + "clock" + ] + } + }, + "cluster_clock": { + "vp_class": "vp/clock_domain", + "frequency": 50000000, + "vp_ports": [ + "out", + "clock_in" + ] + } + }, + "dpi_clock": { + "vp_class": "vp/clock_domain", + "frequency": 50000000, + "vp_ports": [ + "out" + ] + }, + "pulp_chip": { + "pulp": {} + }, + "dpi": { + "vp_class": "utils/dpi_wrapper", + "vp_ports": [ + "chip_reset", + "jtag0", + "cpi0", + "clock", + "uart0", + "i2c1", + "spim0_cs1_data", + "spim0_cs1" + ] + }, + "ref_clock_clock": { + "vp_class": "vp/clock_domain", + "frequency": 65536, + "vp_ports": [ + "out" + ] + }, + "ref_clock": { + "vp_class": "utils/clock", + "vp_ports": [ + "clock_sync", + "clock" + ] + }, + "spiflash": { + "vp_ports": [ + "cs", + "input", + "clock" + ], + "vp_class": "devices/spiflash/spiflash", + "type": "spiflash", + "size": "0x00800000", + "fs": { + "files": [], + "encrypt": false, + "aes_key": 0, + "aes_iv": 0 + } + }, + "spiflash_clock": { + "frequency": 50000000, + "vp_class": "vp/clock_domain", + "vp_ports": [ + "out" + ] + }, + "uart": { + "vp_ports": [ + "uart" + ], + "type": "dpi", + "module": "uart.so", + "verbose": false, + "baudrate": 115200, + "loopback": false, + "stdout": true, + "stdin": false, + "telnet": false, + "tx_file": "tx_uart.log" + }, + "jtag_proxy": { + "vp_ports": [ + "jtag", + "ctrl" + ], + "type": "dpi", + "active": false, + "module": "jtag_proxy.so", + "verbose": false, + "port": 37539 + }, + "camera": { + "name": "camera", + "vp_ports": [ + "cpi", + "i2c" + ], + "type": "dpi", + "model": "himax", + "module": "camera.so", + "color-mode": "gray" + }, + "spim": { + "name": "spim", + "vp_ports": [ + "input" + ], + "type": "dpi", + "module": "spim_tb.so", + "mem_size": 1048576, + "verbose": false, + "tx_file": { + "path": "mylog.txt" + } + } + } + }, + "rt": { + "version": "bench", + "type": "pulp-rt", + "mode": "rt", + "stack_size": 2048, + "cl_master_stack_size": 1024, + "cl_slave_stack_size": 1024, + "io": true, + "warnings": true, + "werror": true, + "assert": false, + "trace": false, + "trace-level": "trace", + "traces": "all", + "libc": false, + "no-rt": false, + "no-link-script": false, + "no-crt0": false, + "cluster-start": false, + "openmp": true, + "openmp-rt": "pulp-rt", + "iodev": "default", + "user-sections": [], + "cflags": [], + "bsp": false, + "iodevs": { + "default": { + "value": "0" + }, + "uart": { + "value": "1", + "channel": "0", + "baudrate": "115200" + } + } + }, + "srcdir": "/home/balasr/projects/control-pulp-subtree/tests/rt-tests/quick/periph/spim/send_1cs" +} diff --git a/tests/spim_flash_async/sim/CLUSTER_FLL.log b/tests/spim_flash_async/sim/CLUSTER_FLL.log new file mode 100644 index 00000000..4caff10f --- /dev/null +++ b/tests/spim_flash_async/sim/CLUSTER_FLL.log @@ -0,0 +1,343 @@ +[CLUSTER_FLL Frequecy] is 14.330585 [MHz] @ 286ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 519ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 751ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 984ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 1217ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 1450ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 1683ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 1915ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 2148ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 2381ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 2614ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 2847ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 3079ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 3312ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 3545ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 3778ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 4010ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 4243ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 4476ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 4709ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 4942ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 5174ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 5407ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 5640ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 5873ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 6105ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 6338ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 6571ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 6804ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 7037ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 7269ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 7502ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 7735ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 7968ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 8201ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 8433ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 8666ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 8899ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 9132ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 9364ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 9597ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 9830ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 10063ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 10296ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 10528ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 10761ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 10994ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 11227ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 11460ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 11692ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 11925ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 12158ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 12391ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 12623ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 12856ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 13089ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 13322ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 13555ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 13787ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 14020ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 14253ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 14486ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 14718ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 14951ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 15184ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 15417ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 15650ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 15882ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 16115ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 16348ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 16581ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 16814ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 17046ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 17279ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 17512ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 17745ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 17977ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 18210ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 18443ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 18676ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 18909ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 19141ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 19374ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 19607ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 19840ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 20073ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 20305ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 20538ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 20771ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 21004ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 21236ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 21469ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 21702ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 21935ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 22168ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 22400ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 22633ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 22866ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 23099ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 23331ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 23564ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 23797ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 24030ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 24263ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 24495ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 24728ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 24961ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 25194ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 25427ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 25659ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 25892ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 26125ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 26358ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 26590ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 26823ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 27056ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 27289ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 27522ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 27754ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 27987ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 28220ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 28453ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 28686ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 28918ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 29151ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 29384ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 29617ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 29849ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 30082ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 30315ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 30548ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 30781ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 31013ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 31246ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 31479ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 31712ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 31944ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 32177ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 32410ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 32643ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 32876ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 33108ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 33341ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 33574ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 33807ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 34040ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 34272ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 34505ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 34738ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 34971ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 35203ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 35436ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 35669ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 35902ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 36135ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 36367ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 36600ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 36833ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 37066ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 37299ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 37531ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 37764ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 37997ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 38230ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 38462ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 38695ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 38928ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 39161ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 39394ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 39626ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 39859ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 40092ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 40325ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 40557ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 40790ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 41023ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 41256ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 41489ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 41721ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 41954ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 42187ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 42420ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 42653ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 42885ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 43118ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 43351ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 43584ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 43816ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 44049ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 44282ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 44515ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 44748ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 44980ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 45213ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 45446ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 45679ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 45912ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 46144ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 46377ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 46610ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 46843ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 47075ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 47308ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 47541ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 47774ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 48007ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 48239ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 48472ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 48705ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 48938ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 49170ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 49403ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 49636ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 49869ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 50102ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 50334ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 50567ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 50800ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 51033ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 51266ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 51498ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 51731ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 51964ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 52197ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 52429ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 52662ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 52895ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 53128ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 53361ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 53593ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 53826ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 54059ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 54292ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 54525ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 54757ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 54990ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 55223ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 55456ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 55688ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 55921ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 56154ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 56387ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 56620ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 56852ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 57085ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 57318ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 57551ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 57783ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 58016ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 58249ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 58482ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 58715ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 58947ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 59180ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 59413ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 59646ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 59879ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 60111ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 60344ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 60577ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 60810ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 61042ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 61275ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 61508ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 61741ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 61974ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 62206ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 62439ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 62672ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 62905ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 63138ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 63370ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 63603ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 63836ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 64069ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 64301ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 64534ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 64767ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 65000ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 65233ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 65465ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 65698ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 65931ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 66164ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 66396ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 66629ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 66862ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 67095ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 67328ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 67560ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 67793ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 68026ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 68259ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 68492ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 68724ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 68957ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 69190ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 69423ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 69655ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 69888ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 70121ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 70354ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 70587ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 70819ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 71052ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 71285ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 71518ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 71751ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 71983ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 72216ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 72449ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 72682ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 72914ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 73147ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 73380ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 73613ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 73846ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 74078ns [ns] +[CLUSTER_FLL Frequecy] is 17.595721 [MHz] @ 74311ns [ns] +[CLUSTER_FLL Frequecy] is 4.087552 [MHz] @ 75313ns [ns] +[CLUSTER_FLL Frequecy] is 50.525465 [MHz] @ 75394ns [ns] +[CLUSTER_FLL Frequecy] is 50.525465 [MHz] @ 75475ns [ns] +[CLUSTER_FLL Frequecy] is 50.525465 [MHz] @ 75556ns [ns] +[CLUSTER_FLL Frequecy] is 50.525465 [MHz] @ 75637ns [ns] +[CLUSTER_FLL Frequecy] is 50.525465 [MHz] @ 75719ns [ns] +[CLUSTER_FLL Frequecy] is 50.525465 [MHz] @ 75800ns [ns] +[CLUSTER_FLL Frequecy] is 50.525465 [MHz] @ 75881ns [ns] +[CLUSTER_FLL Frequecy] is 50.525465 [MHz] @ 75962ns [ns] +[CLUSTER_FLL Frequecy] is 50.525465 [MHz] @ 76043ns [ns] +[CLUSTER_FLL Frequecy] is 50.525465 [MHz] @ 76124ns [ns] +[CLUSTER_FLL Frequecy] is 50.525465 [MHz] @ 76205ns [ns] +[CLUSTER_FLL Frequecy] is 50.525465 [MHz] @ 76286ns [ns] +[CLUSTER_FLL Frequecy] is 50.525465 [MHz] @ 76367ns [ns] +[CLUSTER_FLL Frequecy] is 50.525465 [MHz] @ 76448ns [ns] +[CLUSTER_FLL Frequecy] is 50.525465 [MHz] @ 76529ns [ns] +[CLUSTER_FLL Frequecy] is 50.525465 [MHz] @ 76610ns [ns] +[CLUSTER_FLL Frequecy] is 50.525465 [MHz] @ 76691ns [ns] +[CLUSTER_FLL Frequecy] is 50.525465 [MHz] @ 76772ns [ns] +[CLUSTER_FLL Frequecy] is 50.525465 [MHz] @ 76853ns [ns] +[CLUSTER_FLL Frequecy] is 50.525465 [MHz] @ 76935ns [ns] +[CLUSTER_FLL Frequecy] is 50.525465 [MHz] @ 77016ns [ns] +[CLUSTER_FLL Frequecy] is 50.525465 [MHz] @ 77097ns [ns] +[CLUSTER_FLL Frequecy] is 50.525465 [MHz] @ 77178ns [ns] diff --git a/tests/spim_flash_async/sim/CORE_0.txt b/tests/spim_flash_async/sim/CORE_0.txt new file mode 100644 index 00000000..e69de29b diff --git a/tests/spim_flash_async/sim/CORE_1.txt b/tests/spim_flash_async/sim/CORE_1.txt new file mode 100644 index 00000000..e69de29b diff --git a/tests/spim_flash_async/sim/CORE_2.txt b/tests/spim_flash_async/sim/CORE_2.txt new file mode 100644 index 00000000..e69de29b diff --git a/tests/spim_flash_async/sim/CORE_3.txt b/tests/spim_flash_async/sim/CORE_3.txt new file mode 100644 index 00000000..e69de29b diff --git a/tests/spim_flash_async/sim/CORE_4.txt b/tests/spim_flash_async/sim/CORE_4.txt new file mode 100644 index 00000000..e69de29b diff --git a/tests/spim_flash_async/sim/CORE_5.txt b/tests/spim_flash_async/sim/CORE_5.txt new file mode 100644 index 00000000..e69de29b diff --git a/tests/spim_flash_async/sim/CORE_6.txt b/tests/spim_flash_async/sim/CORE_6.txt new file mode 100644 index 00000000..e69de29b diff --git a/tests/spim_flash_async/sim/CORE_7.txt b/tests/spim_flash_async/sim/CORE_7.txt new file mode 100644 index 00000000..e69de29b diff --git a/tests/spim_flash_async/sim/FETCH_CORE_0.log b/tests/spim_flash_async/sim/FETCH_CORE_0.log new file mode 100644 index 00000000..e69de29b diff --git a/tests/spim_flash_async/sim/FETCH_CORE_1.log b/tests/spim_flash_async/sim/FETCH_CORE_1.log new file mode 100644 index 00000000..e69de29b diff --git a/tests/spim_flash_async/sim/FETCH_CORE_2.log b/tests/spim_flash_async/sim/FETCH_CORE_2.log new file mode 100644 index 00000000..e69de29b diff --git a/tests/spim_flash_async/sim/FETCH_CORE_3.log b/tests/spim_flash_async/sim/FETCH_CORE_3.log new file mode 100644 index 00000000..e69de29b diff --git a/tests/spim_flash_async/sim/FETCH_CORE_4.log b/tests/spim_flash_async/sim/FETCH_CORE_4.log new file mode 100644 index 00000000..e69de29b diff --git a/tests/spim_flash_async/sim/FETCH_CORE_5.log b/tests/spim_flash_async/sim/FETCH_CORE_5.log new file mode 100644 index 00000000..e69de29b diff --git a/tests/spim_flash_async/sim/FETCH_CORE_6.log b/tests/spim_flash_async/sim/FETCH_CORE_6.log new file mode 100644 index 00000000..e69de29b diff --git a/tests/spim_flash_async/sim/FETCH_CORE_7.log b/tests/spim_flash_async/sim/FETCH_CORE_7.log new file mode 100644 index 00000000..e69de29b diff --git a/tests/spim_flash_async/sim/PER_FLL.log b/tests/spim_flash_async/sim/PER_FLL.log new file mode 100644 index 00000000..a13d311f --- /dev/null +++ b/tests/spim_flash_async/sim/PER_FLL.log @@ -0,0 +1,344 @@ +[PER_FLL Frequecy] is 14.330585 [MHz] @ 286ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 519ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 751ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 984ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 1217ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 1450ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 1683ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 1915ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 2148ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 2381ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 2614ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 2847ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 3079ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 3312ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 3545ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 3778ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 4010ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 4243ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 4476ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 4709ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 4942ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 5174ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 5407ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 5640ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 5873ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 6105ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 6338ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 6571ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 6804ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 7037ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 7269ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 7502ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 7735ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 7968ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 8201ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 8433ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 8666ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 8899ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 9132ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 9364ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 9597ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 9830ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 10063ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 10296ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 10528ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 10761ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 10994ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 11227ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 11460ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 11692ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 11925ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 12158ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 12391ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 12623ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 12856ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 13089ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 13322ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 13555ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 13787ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 14020ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 14253ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 14486ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 14718ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 14951ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 15184ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 15417ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 15650ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 15882ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 16115ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 16348ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 16581ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 16814ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 17046ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 17279ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 17512ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 17745ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 17977ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 18210ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 18443ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 18676ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 18909ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 19141ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 19374ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 19607ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 19840ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 20073ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 20305ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 20538ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 20771ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 21004ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 21236ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 21469ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 21702ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 21935ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 22168ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 22400ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 22633ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 22866ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 23099ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 23331ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 23564ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 23797ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 24030ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 24263ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 24495ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 24728ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 24961ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 25194ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 25427ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 25659ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 25892ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 26125ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 26358ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 26590ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 26823ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 27056ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 27289ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 27522ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 27754ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 27987ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 28220ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 28453ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 28686ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 28918ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 29151ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 29384ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 29617ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 29849ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 30082ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 30315ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 30548ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 30781ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 31013ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 31246ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 31479ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 31712ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 31944ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 32177ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 32410ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 32643ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 32876ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 33108ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 33341ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 33574ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 33807ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 34040ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 34272ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 34505ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 34738ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 34971ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 35203ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 35436ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 35669ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 35902ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 36135ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 36367ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 36600ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 36833ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 37066ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 37299ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 37531ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 37764ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 37997ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 38230ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 38462ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 38695ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 38928ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 39161ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 39394ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 39626ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 39859ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 40092ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 40325ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 40557ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 40790ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 41023ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 41256ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 41489ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 41721ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 41954ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 42187ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 42420ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 42653ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 42885ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 43118ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 43351ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 43584ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 43816ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 44049ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 44282ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 44515ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 44748ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 44980ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 45213ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 45446ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 45679ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 45912ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 46144ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 46377ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 46610ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 46843ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 47075ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 47308ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 47541ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 47774ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 48007ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 48239ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 48472ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 48705ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 48938ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 49170ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 49403ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 49636ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 49869ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 50102ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 50334ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 50567ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 50800ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 51033ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 51266ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 51498ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 51731ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 51964ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 52197ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 52429ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 52662ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 52895ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 53128ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 53361ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 53593ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 53826ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 54059ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 54292ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 54525ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 54757ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 54990ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 55223ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 55456ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 55688ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 55921ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 56154ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 56387ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 56620ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 56852ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 57085ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 57318ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 57551ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 57783ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 58016ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 58249ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 58482ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 58715ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 58947ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 59180ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 59413ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 59646ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 59879ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 60111ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 60344ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 60577ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 60810ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 61042ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 61275ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 61508ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 61741ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 61974ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 62206ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 62439ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 62672ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 62905ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 63138ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 63370ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 63603ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 63836ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 64069ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 64301ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 64534ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 64767ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 65000ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 65233ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 65465ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 65698ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 65931ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 66164ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 66396ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 66629ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 66862ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 67095ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 67328ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 67560ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 67793ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 68026ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 68259ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 68492ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 68724ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 68957ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 69190ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 69423ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 69655ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 69888ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 70121ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 70354ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 70587ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 70819ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 71052ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 71285ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 71518ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 71751ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 71983ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 72216ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 72449ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 72682ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 72914ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 73147ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 73380ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 73613ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 73846ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 74078ns [ns] +[PER_FLL Frequecy] is 17.595721 [MHz] @ 74311ns [ns] +[PER_FLL Frequecy] is 4.537849 [MHz] @ 75214ns [ns] +[PER_FLL Frequecy] is 50.525465 [MHz] @ 75295ns [ns] +[PER_FLL Frequecy] is 50.525465 [MHz] @ 75376ns [ns] +[PER_FLL Frequecy] is 50.525465 [MHz] @ 75457ns [ns] +[PER_FLL Frequecy] is 50.525465 [MHz] @ 75538ns [ns] +[PER_FLL Frequecy] is 50.525465 [MHz] @ 75619ns [ns] +[PER_FLL Frequecy] is 50.525465 [MHz] @ 75700ns [ns] +[PER_FLL Frequecy] is 50.525465 [MHz] @ 75781ns [ns] +[PER_FLL Frequecy] is 50.525465 [MHz] @ 75862ns [ns] +[PER_FLL Frequecy] is 50.525465 [MHz] @ 75943ns [ns] +[PER_FLL Frequecy] is 50.525465 [MHz] @ 76024ns [ns] +[PER_FLL Frequecy] is 50.525465 [MHz] @ 76105ns [ns] +[PER_FLL Frequecy] is 50.525465 [MHz] @ 76187ns [ns] +[PER_FLL Frequecy] is 50.525465 [MHz] @ 76268ns [ns] +[PER_FLL Frequecy] is 50.525465 [MHz] @ 76349ns [ns] +[PER_FLL Frequecy] is 50.525465 [MHz] @ 76430ns [ns] +[PER_FLL Frequecy] is 50.525465 [MHz] @ 76511ns [ns] +[PER_FLL Frequecy] is 50.525465 [MHz] @ 76592ns [ns] +[PER_FLL Frequecy] is 50.525465 [MHz] @ 76673ns [ns] +[PER_FLL Frequecy] is 50.525465 [MHz] @ 76754ns [ns] +[PER_FLL Frequecy] is 50.525465 [MHz] @ 76835ns [ns] +[PER_FLL Frequecy] is 50.525465 [MHz] @ 76916ns [ns] +[PER_FLL Frequecy] is 50.525465 [MHz] @ 76997ns [ns] +[PER_FLL Frequecy] is 50.525465 [MHz] @ 77078ns [ns] +[PER_FLL Frequecy] is 50.525465 [MHz] @ 77159ns [ns] diff --git a/tests/spim_flash_async/sim/SOC_FLL.log b/tests/spim_flash_async/sim/SOC_FLL.log new file mode 100644 index 00000000..f802e417 --- /dev/null +++ b/tests/spim_flash_async/sim/SOC_FLL.log @@ -0,0 +1,352 @@ +[SOC_FLL Frequecy] is 14.330585 [MHz] @ 286ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 519ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 751ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 984ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 1217ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 1450ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 1683ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 1915ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 2148ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 2381ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 2614ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 2847ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 3079ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 3312ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 3545ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 3778ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 4010ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 4243ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 4476ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 4709ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 4942ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 5174ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 5407ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 5640ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 5873ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 6105ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 6338ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 6571ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 6804ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 7037ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 7269ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 7502ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 7735ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 7968ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 8201ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 8433ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 8666ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 8899ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 9132ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 9364ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 9597ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 9830ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 10063ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 10296ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 10528ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 10761ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 10994ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 11227ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 11460ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 11692ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 11925ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 12158ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 12391ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 12623ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 12856ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 13089ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 13322ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 13555ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 13787ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 14020ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 14253ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 14486ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 14718ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 14951ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 15184ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 15417ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 15650ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 15882ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 16115ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 16348ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 16581ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 16814ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 17046ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 17279ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 17512ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 17745ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 17977ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 18210ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 18443ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 18676ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 18909ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 19141ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 19374ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 19607ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 19840ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 20073ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 20305ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 20538ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 20771ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 21004ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 21236ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 21469ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 21702ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 21935ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 22168ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 22400ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 22633ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 22866ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 23099ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 23331ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 23564ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 23797ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 24030ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 24263ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 24495ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 24728ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 24961ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 25194ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 25427ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 25659ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 25892ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 26125ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 26358ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 26590ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 26823ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 27056ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 27289ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 27522ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 27754ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 27987ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 28220ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 28453ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 28686ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 28918ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 29151ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 29384ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 29617ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 29849ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 30082ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 30315ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 30548ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 30781ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 31013ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 31246ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 31479ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 31712ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 31944ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 32177ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 32410ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 32643ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 32876ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 33108ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 33341ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 33574ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 33807ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 34040ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 34272ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 34505ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 34738ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 34971ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 35203ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 35436ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 35669ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 35902ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 36135ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 36367ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 36600ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 36833ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 37066ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 37299ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 37531ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 37764ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 37997ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 38230ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 38462ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 38695ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 38928ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 39161ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 39394ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 39626ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 39859ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 40092ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 40325ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 40557ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 40790ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 41023ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 41256ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 41489ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 41721ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 41954ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 42187ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 42420ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 42653ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 42885ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 43118ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 43351ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 43584ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 43816ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 44049ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 44282ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 44515ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 44748ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 44980ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 45213ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 45446ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 45679ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 45912ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 46144ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 46377ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 46610ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 46843ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 47075ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 47308ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 47541ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 47774ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 48007ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 48239ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 48472ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 48705ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 48938ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 49170ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 49403ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 49636ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 49869ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 50102ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 50334ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 50567ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 50800ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 51033ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 51266ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 51498ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 51731ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 51964ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 52197ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 52429ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 52662ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 52895ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 53128ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 53361ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 53593ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 53826ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 54059ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 54292ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 54525ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 54757ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 54990ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 55223ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 55456ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 55688ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 55921ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 56154ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 56387ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 56620ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 56852ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 57085ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 57318ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 57551ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 57783ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 58016ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 58249ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 58482ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 58715ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 58947ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 59180ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 59413ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 59646ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 59879ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 60111ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 60344ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 60577ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 60810ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 61042ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 61275ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 61508ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 61741ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 61974ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 62206ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 62439ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 62672ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 62905ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 63138ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 63370ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 63603ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 63836ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 64069ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 64301ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 64534ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 64767ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 65000ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 65233ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 65465ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 65698ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 65931ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 66164ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 66396ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 66629ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 66862ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 67095ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 67328ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 67560ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 67793ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 68026ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 68259ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 68492ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 68724ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 68957ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 69190ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 69423ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 69655ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 69888ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 70121ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 70354ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 70587ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 70819ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 71052ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 71285ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 71518ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 71751ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 71983ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 72216ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 72449ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 72682ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 72914ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 73147ns [ns] +[SOC_FLL Frequecy] is 17.595721 [MHz] @ 73380ns [ns] +[SOC_FLL Frequecy] is 4.809300 [MHz] @ 74232ns [ns] +[SOC_FLL Frequecy] is 50.525465 [MHz] @ 74313ns [ns] +[SOC_FLL Frequecy] is 50.525465 [MHz] @ 74394ns [ns] +[SOC_FLL Frequecy] is 50.525465 [MHz] @ 74475ns [ns] +[SOC_FLL Frequecy] is 50.525465 [MHz] @ 74556ns [ns] +[SOC_FLL Frequecy] is 50.525465 [MHz] @ 74637ns [ns] +[SOC_FLL Frequecy] is 50.525465 [MHz] @ 74718ns [ns] +[SOC_FLL Frequecy] is 50.525465 [MHz] @ 74799ns [ns] +[SOC_FLL Frequecy] is 50.525465 [MHz] @ 74880ns [ns] +[SOC_FLL Frequecy] is 50.525465 [MHz] @ 74961ns [ns] +[SOC_FLL Frequecy] is 50.525465 [MHz] @ 75042ns [ns] +[SOC_FLL Frequecy] is 50.525465 [MHz] @ 75123ns [ns] +[SOC_FLL Frequecy] is 50.525465 [MHz] @ 75204ns [ns] +[SOC_FLL Frequecy] is 50.525465 [MHz] @ 75286ns [ns] +[SOC_FLL Frequecy] is 50.525465 [MHz] @ 75367ns [ns] +[SOC_FLL Frequecy] is 50.525465 [MHz] @ 75448ns [ns] +[SOC_FLL Frequecy] is 50.525465 [MHz] @ 75529ns [ns] +[SOC_FLL Frequecy] is 50.525465 [MHz] @ 75610ns [ns] +[SOC_FLL Frequecy] is 50.525465 [MHz] @ 75691ns [ns] +[SOC_FLL Frequecy] is 50.525465 [MHz] @ 75772ns [ns] +[SOC_FLL Frequecy] is 50.525465 [MHz] @ 75853ns [ns] +[SOC_FLL Frequecy] is 50.525465 [MHz] @ 75934ns [ns] +[SOC_FLL Frequecy] is 50.525465 [MHz] @ 76015ns [ns] +[SOC_FLL Frequecy] is 50.525465 [MHz] @ 76096ns [ns] +[SOC_FLL Frequecy] is 50.525465 [MHz] @ 76177ns [ns] +[SOC_FLL Frequecy] is 50.525465 [MHz] @ 76258ns [ns] +[SOC_FLL Frequecy] is 50.525465 [MHz] @ 76339ns [ns] +[SOC_FLL Frequecy] is 50.070820 [MHz] @ 76421ns [ns] +[SOC_FLL Frequecy] is 49.524564 [MHz] @ 76504ns [ns] +[SOC_FLL Frequecy] is 49.524564 [MHz] @ 76587ns [ns] +[SOC_FLL Frequecy] is 49.524564 [MHz] @ 76669ns [ns] +[SOC_FLL Frequecy] is 49.524564 [MHz] @ 76752ns [ns] +[SOC_FLL Frequecy] is 49.524564 [MHz] @ 76835ns [ns] +[SOC_FLL Frequecy] is 49.524564 [MHz] @ 76917ns [ns] +[SOC_FLL Frequecy] is 49.524564 [MHz] @ 77000ns [ns] +[SOC_FLL Frequecy] is 49.524564 [MHz] @ 77083ns [ns] +[SOC_FLL Frequecy] is 49.524564 [MHz] @ 77166ns [ns] diff --git a/tests/spim_flash_async/sim/boot b/tests/spim_flash_async/sim/boot new file mode 120000 index 00000000..56ca4fc5 --- /dev/null +++ b/tests/spim_flash_async/sim/boot @@ -0,0 +1 @@ +/scratch/norlando/pulp-open/sim/boot \ No newline at end of file diff --git a/tests/spim_flash_async/sim/fs/file_0_0.txt b/tests/spim_flash_async/sim/fs/file_0_0.txt new file mode 100644 index 00000000..e69de29b diff --git a/tests/spim_flash_async/sim/fs/file_0_1.txt b/tests/spim_flash_async/sim/fs/file_0_1.txt new file mode 100644 index 00000000..e69de29b diff --git a/tests/spim_flash_async/sim/fs/file_0_2.txt b/tests/spim_flash_async/sim/fs/file_0_2.txt new file mode 100644 index 00000000..e69de29b diff --git a/tests/spim_flash_async/sim/fs/file_0_3.txt b/tests/spim_flash_async/sim/fs/file_0_3.txt new file mode 100644 index 00000000..e69de29b diff --git a/tests/spim_flash_async/sim/fs/file_0_4.txt b/tests/spim_flash_async/sim/fs/file_0_4.txt new file mode 100644 index 00000000..e69de29b diff --git a/tests/spim_flash_async/sim/fs/file_0_5.txt b/tests/spim_flash_async/sim/fs/file_0_5.txt new file mode 100644 index 00000000..e69de29b diff --git a/tests/spim_flash_async/sim/fs/file_0_6.txt b/tests/spim_flash_async/sim/fs/file_0_6.txt new file mode 100644 index 00000000..e69de29b diff --git a/tests/spim_flash_async/sim/fs/file_0_7.txt b/tests/spim_flash_async/sim/fs/file_0_7.txt new file mode 100644 index 00000000..e69de29b diff --git a/tests/spim_flash_async/sim/fs/file_31_0.txt b/tests/spim_flash_async/sim/fs/file_31_0.txt new file mode 100644 index 00000000..e69de29b diff --git a/tests/spim_flash_async/sim/memory.map b/tests/spim_flash_async/sim/memory.map new file mode 100644 index 00000000..b1cfddf9 --- /dev/null +++ b/tests/spim_flash_async/sim/memory.map @@ -0,0 +1,4805 @@ +Archive member included to satisfy reference by file (symbol) + +/home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-abort.o) + target/pulp/system.o (abort) +/home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-assert.o) + kernel/event_groups.o (__assert_func) +/home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-atexit.o) + target/pulp/crt0.o (atexit) +/home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-exit.o) + target/pulp/crt0.o (exit) +/home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-fini.o) + target/pulp/crt0.o (__libc_fini_array) +/home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-fprintf.o) + /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-assert.o) (fiprintf) +/home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-impure.o) + /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-exit.o) (_global_impure_ptr) +/home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-init.o) + target/pulp/crt0.o (__libc_init_array) +/home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-malloc.o) + kernel/portable/MemMang/heap_3.o (malloc) +/home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-memcpy-asm.o) + kernel/queue.o (memcpy) +/home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-memset.o) + kernel/stream_buffer.o (memset) +/home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-nano-freer.o) + /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-malloc.o) (_free_r) +/home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-nano-mallocr.o) + /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-malloc.o) (_malloc_r) +/home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-nano-vfprintf.o) + /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-fprintf.o) (_vfprintf_r) +/home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-printf.o) + test_spi_async.o (printf) +/home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-puts.o) + target/pulp/vectors.o (puts) +/home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-reent.o) + kernel/tasks.o (_reclaim_reent) +/home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-sbrkr.o) + /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-nano-mallocr.o) (_sbrk_r) +/home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-signal.o) + /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-abort.o) (raise) +/home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-signalr.o) + /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-signal.o) (_kill_r) +/home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-strlen.o) + kernel/tasks.o (strlen) +/home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-wbuf.o) + /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-nano-vfprintf.o) (__swbuf_r) +/home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-wsetup.o) + /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-nano-vfprintf.o) (__swsetup_r) +/home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-__atexit.o) + /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-atexit.o) (__register_exitproc) +/home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-__call_atexit.o) + /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-__atexit.o) (__call_exitprocs) +/home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-fflush.o) + /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-wbuf.o) (_fflush_r) +/home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-findfp.o) + /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-nano-vfprintf.o) (__sinit) +/home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-fvwrite.o) + /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-nano-vfprintf.o) (__sfvwrite_r) +/home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-fwalk.o) + /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-findfp.o) (_fwalk) +/home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-makebuf.o) + /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-wsetup.o) (__smakebuf_r) +/home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-memchr.o) + /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-nano-vfprintf.o) (memchr) +/home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-memmove.o) + /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-fvwrite.o) (memmove) +/home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-nano-reallocr.o) + /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-fvwrite.o) (_realloc_r) +/home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-nano-vfprintf_i.o) + /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-nano-vfprintf.o) (_printf_i) +/home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-stdio.o) + /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-findfp.o) (__sread) +/home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-writer.o) + /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-stdio.o) (_write_r) +/home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-closer.o) + /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-stdio.o) (_close_r) +/home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-fstatr.o) + /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-makebuf.o) (_fstat_r) +/home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-isattyr.o) + /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-makebuf.o) (_isatty_r) +/home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-lseekr.o) + /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-stdio.o) (_lseek_r) +/home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-nano-msizer.o) + /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-nano-reallocr.o) (_malloc_usable_size_r) +/home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-readr.o) + /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-stdio.o) (_read_r) +/home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/rv32imac/ilp32/libgcc.a(_clzsi2.o) + kernel/tasks.o (__clzsi2) +/home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/rv32imac/ilp32/libgcc.a(_clz.o) + /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/rv32imac/ilp32/libgcc.a(_clzsi2.o) (__clz_tab) + +Sezioni di input scartate + + .group 0x0000000000000000 0xc kernel/event_groups.o + .group 0x0000000000000000 0xc kernel/event_groups.o + .group 0x0000000000000000 0xc kernel/event_groups.o + .group 0x0000000000000000 0xc kernel/event_groups.o + .group 0x0000000000000000 0xc kernel/event_groups.o + .group 0x0000000000000000 0xc kernel/event_groups.o + .group 0x0000000000000000 0xc kernel/event_groups.o + .group 0x0000000000000000 0xc kernel/event_groups.o + .group 0x0000000000000000 0xc kernel/event_groups.o + .group 0x0000000000000000 0xc kernel/event_groups.o + .group 0x0000000000000000 0xc kernel/event_groups.o + .group 0x0000000000000000 0xc kernel/event_groups.o + .group 0x0000000000000000 0xc kernel/event_groups.o + .group 0x0000000000000000 0xc kernel/event_groups.o + .group 0x0000000000000000 0xc kernel/event_groups.o + .group 0x0000000000000000 0xc kernel/event_groups.o + .group 0x0000000000000000 0xc kernel/event_groups.o + .group 0x0000000000000000 0xc kernel/event_groups.o + .group 0x0000000000000000 0xc kernel/event_groups.o + .group 0x0000000000000000 0xc kernel/event_groups.o + .group 0x0000000000000000 0xc kernel/event_groups.o + .group 0x0000000000000000 0xc kernel/event_groups.o + .group 0x0000000000000000 0xc kernel/event_groups.o + .group 0x0000000000000000 0xc kernel/event_groups.o + .group 0x0000000000000000 0xc kernel/event_groups.o + .group 0x0000000000000000 0xc kernel/event_groups.o + .group 0x0000000000000000 0xc kernel/event_groups.o + .group 0x0000000000000000 0xc kernel/event_groups.o + .group 0x0000000000000000 0xc kernel/event_groups.o + .group 0x0000000000000000 0xc kernel/event_groups.o + .group 0x0000000000000000 0xc kernel/event_groups.o + .group 0x0000000000000000 0xc kernel/event_groups.o + .group 0x0000000000000000 0xc kernel/event_groups.o + .group 0x0000000000000000 0xc kernel/event_groups.o + .group 0x0000000000000000 0xc kernel/event_groups.o + .group 0x0000000000000000 0xc kernel/event_groups.o + .text 0x0000000000000000 0x0 kernel/event_groups.o + .data 0x0000000000000000 0x0 kernel/event_groups.o + .bss 0x0000000000000000 0x0 kernel/event_groups.o + .text.xEventGroupCreate + 0x0000000000000000 0x2c kernel/event_groups.o + .rodata.xEventGroupWaitBits.str1.4 + 0x0000000000000000 0xeb kernel/event_groups.o + .text.xEventGroupWaitBits + 0x0000000000000000 0x164 kernel/event_groups.o + .rodata.xEventGroupClearBits.str1.4 + 0x0000000000000000 0x26 kernel/event_groups.o + .text.xEventGroupClearBits + 0x0000000000000000 0x78 kernel/event_groups.o + .text.vEventGroupClearBitsCallback + 0x0000000000000000 0x8 kernel/event_groups.o + .text.xEventGroupClearBitsFromISR + 0x0000000000000000 0x16 kernel/event_groups.o + .text.xEventGroupGetBitsFromISR + 0x0000000000000000 0x4 kernel/event_groups.o + .rodata.xEventGroupSetBits.str1.4 + 0x0000000000000000 0x24 kernel/event_groups.o + .text.xEventGroupSetBits + 0x0000000000000000 0xe6 kernel/event_groups.o + .text.xEventGroupSync + 0x0000000000000000 0x134 kernel/event_groups.o + .text.vEventGroupSetBitsCallback + 0x0000000000000000 0x8 kernel/event_groups.o + .rodata.vEventGroupDelete.str1.4 + 0x0000000000000000 0x66 kernel/event_groups.o + .text.vEventGroupDelete + 0x0000000000000000 0x6c kernel/event_groups.o + .text.xEventGroupSetBitsFromISR + 0x0000000000000000 0x16 kernel/event_groups.o + .text.uxEventGroupGetNumber + 0x0000000000000000 0xa kernel/event_groups.o + .text.vEventGroupSetNumber + 0x0000000000000000 0x4 kernel/event_groups.o + .rodata.__func__.0 + 0x0000000000000000 0x12 kernel/event_groups.o + .rodata.__func__.1 + 0x0000000000000000 0x13 kernel/event_groups.o + .rodata.__func__.2 + 0x0000000000000000 0x15 kernel/event_groups.o + .rodata.__func__.3 + 0x0000000000000000 0x14 kernel/event_groups.o + .rodata.__func__.4 + 0x0000000000000000 0x10 kernel/event_groups.o + .debug_info 0x0000000000000000 0xc71 kernel/event_groups.o + .debug_abbrev 0x0000000000000000 0x275 kernel/event_groups.o + .debug_loc 0x0000000000000000 0xd6c kernel/event_groups.o + .debug_aranges + 0x0000000000000000 0x80 kernel/event_groups.o + .debug_ranges 0x0000000000000000 0xb8 kernel/event_groups.o + .debug_macro 0x0000000000000000 0x1f7 kernel/event_groups.o + .debug_macro 0x0000000000000000 0x74e kernel/event_groups.o + .debug_macro 0x0000000000000000 0x19 kernel/event_groups.o + .debug_macro 0x0000000000000000 0x22 kernel/event_groups.o + .debug_macro 0x0000000000000000 0x4c kernel/event_groups.o + .debug_macro 0x0000000000000000 0x94 kernel/event_groups.o + .debug_macro 0x0000000000000000 0x34 kernel/event_groups.o + .debug_macro 0x0000000000000000 0x34 kernel/event_groups.o + .debug_macro 0x0000000000000000 0x16 kernel/event_groups.o + .debug_macro 0x0000000000000000 0x10e kernel/event_groups.o + .debug_macro 0x0000000000000000 0x8d kernel/event_groups.o + .debug_macro 0x0000000000000000 0x16 kernel/event_groups.o + .debug_macro 0x0000000000000000 0x43 kernel/event_groups.o + .debug_macro 0x0000000000000000 0x57 kernel/event_groups.o + .debug_macro 0x0000000000000000 0x34 kernel/event_groups.o + .debug_macro 0x0000000000000000 0x10 kernel/event_groups.o + .debug_macro 0x0000000000000000 0x52 kernel/event_groups.o + .debug_macro 0x0000000000000000 0x182 kernel/event_groups.o + .debug_macro 0x0000000000000000 0x333 kernel/event_groups.o + .debug_macro 0x0000000000000000 0x16 kernel/event_groups.o + .debug_macro 0x0000000000000000 0x29 kernel/event_groups.o + .debug_macro 0x0000000000000000 0x103 kernel/event_groups.o + .debug_macro 0x0000000000000000 0x6a kernel/event_groups.o + .debug_macro 0x0000000000000000 0x1df kernel/event_groups.o + .debug_macro 0x0000000000000000 0x10 kernel/event_groups.o + .debug_macro 0x0000000000000000 0x1c kernel/event_groups.o + .debug_macro 0x0000000000000000 0x114 kernel/event_groups.o + .debug_macro 0x0000000000000000 0x15a kernel/event_groups.o + .debug_macro 0x0000000000000000 0xe0 kernel/event_groups.o + .debug_macro 0x0000000000000000 0x1c kernel/event_groups.o + .debug_macro 0x0000000000000000 0x26 kernel/event_groups.o + .debug_macro 0x0000000000000000 0x16 kernel/event_groups.o + .debug_macro 0x0000000000000000 0x35 kernel/event_groups.o + .debug_macro 0x0000000000000000 0x4c6 kernel/event_groups.o + .debug_macro 0x0000000000000000 0xb5 kernel/event_groups.o + .debug_macro 0x0000000000000000 0xaa kernel/event_groups.o + .debug_macro 0x0000000000000000 0x91 kernel/event_groups.o + .debug_line 0x0000000000000000 0xf20 kernel/event_groups.o + .debug_str 0x0000000000000000 0xaa24 kernel/event_groups.o + .comment 0x0000000000000000 0x13 kernel/event_groups.o + .debug_frame 0x0000000000000000 0x19c kernel/event_groups.o + .riscv.attributes + 0x0000000000000000 0x2b kernel/event_groups.o + .group 0x0000000000000000 0xc kernel/list.o + .group 0x0000000000000000 0xc kernel/list.o + .group 0x0000000000000000 0xc kernel/list.o + .group 0x0000000000000000 0xc kernel/list.o + .group 0x0000000000000000 0xc kernel/list.o + .group 0x0000000000000000 0xc kernel/list.o + .group 0x0000000000000000 0xc kernel/list.o + .group 0x0000000000000000 0xc kernel/list.o + .group 0x0000000000000000 0xc kernel/list.o + .group 0x0000000000000000 0xc kernel/list.o + .group 0x0000000000000000 0xc kernel/list.o + .group 0x0000000000000000 0xc kernel/list.o + .group 0x0000000000000000 0xc kernel/list.o + .group 0x0000000000000000 0xc kernel/list.o + .group 0x0000000000000000 0xc kernel/list.o + .group 0x0000000000000000 0xc kernel/list.o + .group 0x0000000000000000 0xc kernel/list.o + .group 0x0000000000000000 0xc kernel/list.o + .group 0x0000000000000000 0xc kernel/list.o + .group 0x0000000000000000 0xc kernel/list.o + .group 0x0000000000000000 0xc kernel/list.o + .group 0x0000000000000000 0xc kernel/list.o + .group 0x0000000000000000 0xc kernel/list.o + .group 0x0000000000000000 0xc kernel/list.o + .group 0x0000000000000000 0xc kernel/list.o + .group 0x0000000000000000 0xc kernel/list.o + .group 0x0000000000000000 0xc kernel/list.o + .group 0x0000000000000000 0xc kernel/list.o + .group 0x0000000000000000 0xc kernel/list.o + .group 0x0000000000000000 0xc kernel/list.o + .group 0x0000000000000000 0xc kernel/list.o + .group 0x0000000000000000 0xc kernel/list.o + .group 0x0000000000000000 0xc kernel/list.o + .group 0x0000000000000000 0xc kernel/list.o + .text 0x0000000000000000 0x0 kernel/list.o + .data 0x0000000000000000 0x0 kernel/list.o + .bss 0x0000000000000000 0x0 kernel/list.o + .debug_macro 0x0000000000000000 0x74e kernel/list.o + .debug_macro 0x0000000000000000 0x19 kernel/list.o + .debug_macro 0x0000000000000000 0x22 kernel/list.o + .debug_macro 0x0000000000000000 0x4c kernel/list.o + .debug_macro 0x0000000000000000 0x94 kernel/list.o + .debug_macro 0x0000000000000000 0x34 kernel/list.o + .debug_macro 0x0000000000000000 0x34 kernel/list.o + .debug_macro 0x0000000000000000 0x16 kernel/list.o + .debug_macro 0x0000000000000000 0x10e kernel/list.o + .debug_macro 0x0000000000000000 0x8d kernel/list.o + .debug_macro 0x0000000000000000 0x16 kernel/list.o + .debug_macro 0x0000000000000000 0x43 kernel/list.o + .debug_macro 0x0000000000000000 0x57 kernel/list.o + .debug_macro 0x0000000000000000 0x34 kernel/list.o + .debug_macro 0x0000000000000000 0x10 kernel/list.o + .debug_macro 0x0000000000000000 0x52 kernel/list.o + .debug_macro 0x0000000000000000 0x182 kernel/list.o + .debug_macro 0x0000000000000000 0x333 kernel/list.o + .debug_macro 0x0000000000000000 0x16 kernel/list.o + .debug_macro 0x0000000000000000 0x29 kernel/list.o + .debug_macro 0x0000000000000000 0x103 kernel/list.o + .debug_macro 0x0000000000000000 0x6a kernel/list.o + .debug_macro 0x0000000000000000 0x1df kernel/list.o + .debug_macro 0x0000000000000000 0x10 kernel/list.o + .debug_macro 0x0000000000000000 0x1c kernel/list.o + .debug_macro 0x0000000000000000 0x114 kernel/list.o + .debug_macro 0x0000000000000000 0x15a kernel/list.o + .debug_macro 0x0000000000000000 0xe0 kernel/list.o + .debug_macro 0x0000000000000000 0x1c kernel/list.o + .debug_macro 0x0000000000000000 0x26 kernel/list.o + .debug_macro 0x0000000000000000 0x16 kernel/list.o + .debug_macro 0x0000000000000000 0x35 kernel/list.o + .debug_macro 0x0000000000000000 0x4c6 kernel/list.o + .debug_macro 0x0000000000000000 0xb5 kernel/list.o + .group 0x0000000000000000 0xc kernel/queue.o + .group 0x0000000000000000 0xc kernel/queue.o + .group 0x0000000000000000 0xc kernel/queue.o + .group 0x0000000000000000 0xc kernel/queue.o + .group 0x0000000000000000 0xc kernel/queue.o + .group 0x0000000000000000 0xc kernel/queue.o + .group 0x0000000000000000 0xc kernel/queue.o + .group 0x0000000000000000 0xc kernel/queue.o + .group 0x0000000000000000 0xc kernel/queue.o + .group 0x0000000000000000 0xc kernel/queue.o + .group 0x0000000000000000 0xc kernel/queue.o + .group 0x0000000000000000 0xc kernel/queue.o + .group 0x0000000000000000 0xc kernel/queue.o + .group 0x0000000000000000 0xc kernel/queue.o + .group 0x0000000000000000 0xc kernel/queue.o + .group 0x0000000000000000 0xc kernel/queue.o + .group 0x0000000000000000 0xc kernel/queue.o + .group 0x0000000000000000 0xc kernel/queue.o + .group 0x0000000000000000 0xc kernel/queue.o + .group 0x0000000000000000 0xc kernel/queue.o + .group 0x0000000000000000 0xc kernel/queue.o + .group 0x0000000000000000 0xc kernel/queue.o + .group 0x0000000000000000 0xc kernel/queue.o + .group 0x0000000000000000 0xc kernel/queue.o + .group 0x0000000000000000 0xc kernel/queue.o + .group 0x0000000000000000 0xc kernel/queue.o + .group 0x0000000000000000 0xc kernel/queue.o + .group 0x0000000000000000 0xc kernel/queue.o + .group 0x0000000000000000 0xc kernel/queue.o + .group 0x0000000000000000 0xc kernel/queue.o + .group 0x0000000000000000 0xc kernel/queue.o + .group 0x0000000000000000 0xc kernel/queue.o + .group 0x0000000000000000 0xc kernel/queue.o + .group 0x0000000000000000 0xc kernel/queue.o + .group 0x0000000000000000 0xc kernel/queue.o + .group 0x0000000000000000 0xc kernel/queue.o + .group 0x0000000000000000 0xc kernel/queue.o + .text 0x0000000000000000 0x0 kernel/queue.o + .data 0x0000000000000000 0x0 kernel/queue.o + .bss 0x0000000000000000 0x0 kernel/queue.o + .text.xQueueGetMutexHolder + 0x0000000000000000 0x2c kernel/queue.o + .rodata.xQueueGetMutexHolderFromISR.str1.4 + 0x0000000000000000 0xb kernel/queue.o + .text.xQueueGetMutexHolderFromISR + 0x0000000000000000 0x36 kernel/queue.o + .text.xQueueCreateMutex + 0x0000000000000000 0x3c kernel/queue.o + .rodata.xQueueGiveMutexRecursive.str1.4 + 0x0000000000000000 0x8 kernel/queue.o + .text.xQueueGiveMutexRecursive + 0x0000000000000000 0x6c kernel/queue.o + .text.xQueueTakeMutexRecursive + 0x0000000000000000 0x68 kernel/queue.o + .text.xQueuePeek + 0x0000000000000000 0x1a2 kernel/queue.o + .rodata.xQueuePeekFromISR.str1.4 + 0x0000000000000000 0x19 kernel/queue.o + .text.xQueuePeekFromISR + 0x0000000000000000 0x84 kernel/queue.o + .rodata.uxQueueMessagesWaiting.str1.4 + 0x0000000000000000 0x7 kernel/queue.o + .text.uxQueueMessagesWaiting + 0x0000000000000000 0x4c kernel/queue.o + .text.uxQueueSpacesAvailable + 0x0000000000000000 0x50 kernel/queue.o + .text.uxQueueMessagesWaitingFromISR + 0x0000000000000000 0x2e kernel/queue.o + .text.uxQueueGetQueueNumber + 0x0000000000000000 0x4 kernel/queue.o + .text.vQueueSetQueueNumber + 0x0000000000000000 0x4 kernel/queue.o + .text.ucQueueGetQueueType + 0x0000000000000000 0x6 kernel/queue.o + .text.xQueueIsQueueEmptyFromISR + 0x0000000000000000 0x34 kernel/queue.o + .text.xQueueIsQueueFullFromISR + 0x0000000000000000 0x38 kernel/queue.o + .text.pcQueueGetName + 0x0000000000000000 0x2a kernel/queue.o + .rodata.__func__.0 + 0x0000000000000000 0x19 kernel/queue.o + .rodata.__func__.1 + 0x0000000000000000 0x1a kernel/queue.o + .rodata.__func__.15 + 0x0000000000000000 0x19 kernel/queue.o + .rodata.__func__.16 + 0x0000000000000000 0x19 kernel/queue.o + .rodata.__func__.17 + 0x0000000000000000 0x1c kernel/queue.o + .rodata.__func__.3 + 0x0000000000000000 0x1e kernel/queue.o + .rodata.__func__.4 + 0x0000000000000000 0x17 kernel/queue.o + .rodata.__func__.5 + 0x0000000000000000 0x17 kernel/queue.o + .rodata.__func__.6 + 0x0000000000000000 0x12 kernel/queue.o + .rodata.__func__.8 + 0x0000000000000000 0xb kernel/queue.o + .debug_macro 0x0000000000000000 0x74e kernel/queue.o + .debug_macro 0x0000000000000000 0x19 kernel/queue.o + .debug_macro 0x0000000000000000 0x22 kernel/queue.o + .debug_macro 0x0000000000000000 0x4c kernel/queue.o + .debug_macro 0x0000000000000000 0x94 kernel/queue.o + .debug_macro 0x0000000000000000 0x34 kernel/queue.o + .debug_macro 0x0000000000000000 0x34 kernel/queue.o + .debug_macro 0x0000000000000000 0x16 kernel/queue.o + .debug_macro 0x0000000000000000 0x10e kernel/queue.o + .debug_macro 0x0000000000000000 0x8d kernel/queue.o + .debug_macro 0x0000000000000000 0x16 kernel/queue.o + .debug_macro 0x0000000000000000 0x43 kernel/queue.o + .debug_macro 0x0000000000000000 0x57 kernel/queue.o + .debug_macro 0x0000000000000000 0x34 kernel/queue.o + .debug_macro 0x0000000000000000 0x10 kernel/queue.o + .debug_macro 0x0000000000000000 0x52 kernel/queue.o + .debug_macro 0x0000000000000000 0x182 kernel/queue.o + .debug_macro 0x0000000000000000 0x333 kernel/queue.o + .debug_macro 0x0000000000000000 0x16 kernel/queue.o + .debug_macro 0x0000000000000000 0x29 kernel/queue.o + .debug_macro 0x0000000000000000 0x35 kernel/queue.o + .debug_macro 0x0000000000000000 0x103 kernel/queue.o + .debug_macro 0x0000000000000000 0x6a kernel/queue.o + .debug_macro 0x0000000000000000 0x1df kernel/queue.o + .debug_macro 0x0000000000000000 0x10 kernel/queue.o + .debug_macro 0x0000000000000000 0x1c kernel/queue.o + .debug_macro 0x0000000000000000 0x114 kernel/queue.o + .debug_macro 0x0000000000000000 0x15a kernel/queue.o + .debug_macro 0x0000000000000000 0xe0 kernel/queue.o + .debug_macro 0x0000000000000000 0x1c kernel/queue.o + .debug_macro 0x0000000000000000 0x26 kernel/queue.o + .debug_macro 0x0000000000000000 0x16 kernel/queue.o + .debug_macro 0x0000000000000000 0x4c6 kernel/queue.o + .debug_macro 0x0000000000000000 0xb5 kernel/queue.o + .debug_macro 0x0000000000000000 0xaa kernel/queue.o + .group 0x0000000000000000 0xc kernel/stream_buffer.o + .group 0x0000000000000000 0xc kernel/stream_buffer.o + .group 0x0000000000000000 0xc kernel/stream_buffer.o + .group 0x0000000000000000 0xc kernel/stream_buffer.o + .group 0x0000000000000000 0xc kernel/stream_buffer.o + .group 0x0000000000000000 0xc kernel/stream_buffer.o + .group 0x0000000000000000 0xc kernel/stream_buffer.o + .group 0x0000000000000000 0xc kernel/stream_buffer.o + .group 0x0000000000000000 0xc kernel/stream_buffer.o + .group 0x0000000000000000 0xc kernel/stream_buffer.o + .group 0x0000000000000000 0xc kernel/stream_buffer.o + .group 0x0000000000000000 0xc kernel/stream_buffer.o + .group 0x0000000000000000 0xc kernel/stream_buffer.o + .group 0x0000000000000000 0xc kernel/stream_buffer.o + .group 0x0000000000000000 0xc kernel/stream_buffer.o + .group 0x0000000000000000 0xc kernel/stream_buffer.o + .group 0x0000000000000000 0xc kernel/stream_buffer.o + .group 0x0000000000000000 0xc kernel/stream_buffer.o + .group 0x0000000000000000 0xc kernel/stream_buffer.o + .group 0x0000000000000000 0xc kernel/stream_buffer.o + .group 0x0000000000000000 0xc kernel/stream_buffer.o + .group 0x0000000000000000 0xc kernel/stream_buffer.o + .group 0x0000000000000000 0xc kernel/stream_buffer.o + .group 0x0000000000000000 0xc kernel/stream_buffer.o + .group 0x0000000000000000 0xc kernel/stream_buffer.o + .group 0x0000000000000000 0xc kernel/stream_buffer.o + .group 0x0000000000000000 0xc kernel/stream_buffer.o + .group 0x0000000000000000 0xc kernel/stream_buffer.o + .group 0x0000000000000000 0xc kernel/stream_buffer.o + .group 0x0000000000000000 0xc kernel/stream_buffer.o + .group 0x0000000000000000 0xc kernel/stream_buffer.o + .group 0x0000000000000000 0xc kernel/stream_buffer.o + .group 0x0000000000000000 0xc kernel/stream_buffer.o + .text 0x0000000000000000 0x0 kernel/stream_buffer.o + .data 0x0000000000000000 0x0 kernel/stream_buffer.o + .bss 0x0000000000000000 0x0 kernel/stream_buffer.o + .text.prvBytesInBuffer + 0x0000000000000000 0x14 kernel/stream_buffer.o + .rodata.prvWriteBytesToBuffer.str1.4 + 0x0000000000000000 0xd1 kernel/stream_buffer.o + .text.prvWriteBytesToBuffer + 0x0000000000000000 0xc6 kernel/stream_buffer.o + .rodata.prvReadBytesFromBuffer.str1.4 + 0x0000000000000000 0x68 kernel/stream_buffer.o + .text.prvReadBytesFromBuffer + 0x0000000000000000 0xda kernel/stream_buffer.o + .rodata.prvInitialiseNewStreamBuffer.str1.4 + 0x0000000000000000 0x48 kernel/stream_buffer.o + .text.prvInitialiseNewStreamBuffer + 0x0000000000000000 0x7e kernel/stream_buffer.o + .rodata.xStreamBufferGenericCreate.str1.4 + 0x0000000000000000 0x67 kernel/stream_buffer.o + .text.xStreamBufferGenericCreate + 0x0000000000000000 0xa8 kernel/stream_buffer.o + .rodata.vStreamBufferDelete.str1.4 + 0x0000000000000000 0xf kernel/stream_buffer.o + .text.vStreamBufferDelete + 0x0000000000000000 0x48 kernel/stream_buffer.o + .text.xStreamBufferReset + 0x0000000000000000 0x72 kernel/stream_buffer.o + .text.xStreamBufferSetTriggerLevel + 0x0000000000000000 0x3e kernel/stream_buffer.o + .text.xStreamBufferSpacesAvailable + 0x0000000000000000 0x40 kernel/stream_buffer.o + .text.xStreamBufferBytesAvailable + 0x0000000000000000 0x32 kernel/stream_buffer.o + .rodata.xStreamBufferSend.str1.4 + 0x0000000000000000 0x62 kernel/stream_buffer.o + .text.xStreamBufferSend + 0x0000000000000000 0x19c kernel/stream_buffer.o + .text.xStreamBufferSendFromISR + 0x0000000000000000 0xe6 kernel/stream_buffer.o + .rodata.xStreamBufferReceive.str1.4 + 0x0000000000000000 0x41 kernel/stream_buffer.o + .text.xStreamBufferReceive + 0x0000000000000000 0x158 kernel/stream_buffer.o + .rodata.xStreamBufferNextMessageLengthBytes.str1.4 + 0x0000000000000000 0x15 kernel/stream_buffer.o + .text.xStreamBufferNextMessageLengthBytes + 0x0000000000000000 0x82 kernel/stream_buffer.o + .text.xStreamBufferReceiveFromISR + 0x0000000000000000 0xda kernel/stream_buffer.o + .text.xStreamBufferIsEmpty + 0x0000000000000000 0x36 kernel/stream_buffer.o + .text.xStreamBufferIsFull + 0x0000000000000000 0x4c kernel/stream_buffer.o + .text.xStreamBufferSendCompletedFromISR + 0x0000000000000000 0x54 kernel/stream_buffer.o + .text.xStreamBufferReceiveCompletedFromISR + 0x0000000000000000 0x54 kernel/stream_buffer.o + .text.uxStreamBufferGetStreamBufferNumber + 0x0000000000000000 0x4 kernel/stream_buffer.o + .text.vStreamBufferSetStreamBufferNumber + 0x0000000000000000 0x4 kernel/stream_buffer.o + .text.ucStreamBufferGetStreamBufferType + 0x0000000000000000 0x8 kernel/stream_buffer.o + .rodata.__func__.0 + 0x0000000000000000 0x25 kernel/stream_buffer.o + .rodata.__func__.1 + 0x0000000000000000 0x22 kernel/stream_buffer.o + .rodata.__func__.10 + 0x0000000000000000 0x12 kernel/stream_buffer.o + .rodata.__func__.11 + 0x0000000000000000 0x1c kernel/stream_buffer.o + .rodata.__func__.12 + 0x0000000000000000 0x1d kernel/stream_buffer.o + .rodata.__func__.13 + 0x0000000000000000 0x1d kernel/stream_buffer.o + .rodata.__func__.14 + 0x0000000000000000 0x13 kernel/stream_buffer.o + .rodata.__func__.15 + 0x0000000000000000 0x14 kernel/stream_buffer.o + .rodata.__func__.16 + 0x0000000000000000 0x1d kernel/stream_buffer.o + .rodata.__func__.17 + 0x0000000000000000 0x1b kernel/stream_buffer.o + .rodata.__func__.2 + 0x0000000000000000 0x14 kernel/stream_buffer.o + .rodata.__func__.3 + 0x0000000000000000 0x15 kernel/stream_buffer.o + .rodata.__func__.4 + 0x0000000000000000 0x1c kernel/stream_buffer.o + .rodata.__func__.5 + 0x0000000000000000 0x24 kernel/stream_buffer.o + .rodata.__func__.6 + 0x0000000000000000 0x17 kernel/stream_buffer.o + .rodata.__func__.7 + 0x0000000000000000 0x15 kernel/stream_buffer.o + .rodata.__func__.8 + 0x0000000000000000 0x19 kernel/stream_buffer.o + .rodata.__func__.9 + 0x0000000000000000 0x16 kernel/stream_buffer.o + .debug_info 0x0000000000000000 0x18ef kernel/stream_buffer.o + .debug_abbrev 0x0000000000000000 0x347 kernel/stream_buffer.o + .debug_loc 0x0000000000000000 0x1be4 kernel/stream_buffer.o + .debug_aranges + 0x0000000000000000 0xc8 kernel/stream_buffer.o + .debug_ranges 0x0000000000000000 0x180 kernel/stream_buffer.o + .debug_macro 0x0000000000000000 0x1f6 kernel/stream_buffer.o + .debug_macro 0x0000000000000000 0x74e kernel/stream_buffer.o + .debug_macro 0x0000000000000000 0x22 kernel/stream_buffer.o + .debug_macro 0x0000000000000000 0x8e kernel/stream_buffer.o + .debug_macro 0x0000000000000000 0x51 kernel/stream_buffer.o + .debug_macro 0x0000000000000000 0x103 kernel/stream_buffer.o + .debug_macro 0x0000000000000000 0x6a kernel/stream_buffer.o + .debug_macro 0x0000000000000000 0x1df kernel/stream_buffer.o + .debug_macro 0x0000000000000000 0x52 kernel/stream_buffer.o + .debug_macro 0x0000000000000000 0x19 kernel/stream_buffer.o + .debug_macro 0x0000000000000000 0x34 kernel/stream_buffer.o + .debug_macro 0x0000000000000000 0x34 kernel/stream_buffer.o + .debug_macro 0x0000000000000000 0x174 kernel/stream_buffer.o + .debug_macro 0x0000000000000000 0x16 kernel/stream_buffer.o + .debug_macro 0x0000000000000000 0x43 kernel/stream_buffer.o + .debug_macro 0x0000000000000000 0x34 kernel/stream_buffer.o + .debug_macro 0x0000000000000000 0x10 kernel/stream_buffer.o + .debug_macro 0x0000000000000000 0x52 kernel/stream_buffer.o + .debug_macro 0x0000000000000000 0x182 kernel/stream_buffer.o + .debug_macro 0x0000000000000000 0x333 kernel/stream_buffer.o + .debug_macro 0x0000000000000000 0x10 kernel/stream_buffer.o + .debug_macro 0x0000000000000000 0x35 kernel/stream_buffer.o + .debug_macro 0x0000000000000000 0x10 kernel/stream_buffer.o + .debug_macro 0x0000000000000000 0x1c kernel/stream_buffer.o + .debug_macro 0x0000000000000000 0x114 kernel/stream_buffer.o + .debug_macro 0x0000000000000000 0x15a kernel/stream_buffer.o + .debug_macro 0x0000000000000000 0xe0 kernel/stream_buffer.o + .debug_macro 0x0000000000000000 0x1c kernel/stream_buffer.o + .debug_macro 0x0000000000000000 0x26 kernel/stream_buffer.o + .debug_macro 0x0000000000000000 0x16 kernel/stream_buffer.o + .debug_macro 0x0000000000000000 0x4c6 kernel/stream_buffer.o + .debug_macro 0x0000000000000000 0xb5 kernel/stream_buffer.o + .debug_macro 0x0000000000000000 0xaa kernel/stream_buffer.o + .debug_macro 0x0000000000000000 0x18 kernel/stream_buffer.o + .debug_line 0x0000000000000000 0x1ae2 kernel/stream_buffer.o + .debug_str 0x0000000000000000 0xab1b kernel/stream_buffer.o + .comment 0x0000000000000000 0x13 kernel/stream_buffer.o + .debug_frame 0x0000000000000000 0x314 kernel/stream_buffer.o + .riscv.attributes + 0x0000000000000000 0x2b kernel/stream_buffer.o + .group 0x0000000000000000 0xc kernel/tasks.o + .group 0x0000000000000000 0xc kernel/tasks.o + .group 0x0000000000000000 0xc kernel/tasks.o + .group 0x0000000000000000 0xc kernel/tasks.o + .group 0x0000000000000000 0xc kernel/tasks.o + .group 0x0000000000000000 0xc kernel/tasks.o + .group 0x0000000000000000 0xc kernel/tasks.o + .group 0x0000000000000000 0xc kernel/tasks.o + .group 0x0000000000000000 0xc kernel/tasks.o + .group 0x0000000000000000 0xc kernel/tasks.o + .group 0x0000000000000000 0xc kernel/tasks.o + .group 0x0000000000000000 0xc kernel/tasks.o + .group 0x0000000000000000 0xc kernel/tasks.o + .group 0x0000000000000000 0xc kernel/tasks.o + .group 0x0000000000000000 0xc kernel/tasks.o + .group 0x0000000000000000 0xc kernel/tasks.o + .group 0x0000000000000000 0xc kernel/tasks.o + .group 0x0000000000000000 0xc kernel/tasks.o + .group 0x0000000000000000 0xc kernel/tasks.o + .group 0x0000000000000000 0xc kernel/tasks.o + .group 0x0000000000000000 0xc kernel/tasks.o + .group 0x0000000000000000 0xc kernel/tasks.o + .group 0x0000000000000000 0xc kernel/tasks.o + .group 0x0000000000000000 0xc kernel/tasks.o + .group 0x0000000000000000 0xc kernel/tasks.o + .group 0x0000000000000000 0xc kernel/tasks.o + .group 0x0000000000000000 0xc kernel/tasks.o + .group 0x0000000000000000 0xc kernel/tasks.o + .group 0x0000000000000000 0xc kernel/tasks.o + .group 0x0000000000000000 0xc kernel/tasks.o + .group 0x0000000000000000 0xc kernel/tasks.o + .group 0x0000000000000000 0xc kernel/tasks.o + .group 0x0000000000000000 0xc kernel/tasks.o + .group 0x0000000000000000 0xc kernel/tasks.o + .group 0x0000000000000000 0xc kernel/tasks.o + .group 0x0000000000000000 0xc kernel/tasks.o + .group 0x0000000000000000 0xc kernel/tasks.o + .group 0x0000000000000000 0xc kernel/tasks.o + .text 0x0000000000000000 0x0 kernel/tasks.o + .data 0x0000000000000000 0x0 kernel/tasks.o + .bss 0x0000000000000000 0x0 kernel/tasks.o + .text.prvSearchForNameWithinSingleList + 0x0000000000000000 0x5a kernel/tasks.o + .text.prvTaskIsTaskSuspended + 0x0000000000000000 0x50 kernel/tasks.o + .text.uxTaskPriorityGetFromISR + 0x0000000000000000 0xe kernel/tasks.o + .rodata.xTaskResumeFromISR.str1.4 + 0x0000000000000000 0xe kernel/tasks.o + .text.xTaskResumeFromISR + 0x0000000000000000 0xbe kernel/tasks.o + .text.vTaskEndScheduler + 0x0000000000000000 0x14 kernel/tasks.o + .text.xTaskGetTickCountFromISR + 0x0000000000000000 0xa kernel/tasks.o + .text.uxTaskGetNumberOfTasks + 0x0000000000000000 0xa kernel/tasks.o + .rodata.pcTaskGetName.str1.4 + 0x0000000000000000 0x6 kernel/tasks.o + .text.pcTaskGetName + 0x0000000000000000 0x3c kernel/tasks.o + .rodata.vTaskPlaceOnUnorderedEventList.str1.4 + 0x0000000000000000 0x1a kernel/tasks.o + .text.vTaskPlaceOnUnorderedEventList + 0x0000000000000000 0x82 kernel/tasks.o + .rodata.vTaskRemoveFromUnorderedEventList.str1.4 + 0x0000000000000000 0x2d kernel/tasks.o + .text.vTaskRemoveFromUnorderedEventList + 0x0000000000000000 0xc6 kernel/tasks.o + .text.uxTaskGetTaskNumber + 0x0000000000000000 0xa kernel/tasks.o + .text.vTaskSetTaskNumber + 0x0000000000000000 0x6 kernel/tasks.o + .text.xTaskGetCurrentTaskHandle + 0x0000000000000000 0xa kernel/tasks.o + .rodata.vTaskDelete.str1.4 + 0x0000000000000000 0x1a kernel/tasks.o + .text.vTaskDelete + 0x0000000000000000 0x130 kernel/tasks.o + .text.eTaskGetState + 0x0000000000000000 0xb0 kernel/tasks.o + .text.uxTaskPriorityGet + 0x0000000000000000 0x30 kernel/tasks.o + .rodata.vTaskPrioritySet.str1.4 + 0x0000000000000000 0x18 kernel/tasks.o + .text.vTaskPrioritySet + 0x0000000000000000 0x11a kernel/tasks.o + .text.vTaskSuspend + 0x0000000000000000 0x140 kernel/tasks.o + .text.vTaskResume + 0x0000000000000000 0xba kernel/tasks.o + .rodata.vTaskDelayUntil.str1.4 + 0x0000000000000000 0x2c kernel/tasks.o + .text.vTaskDelayUntil + 0x0000000000000000 0xb8 kernel/tasks.o + .text.vTaskDelay + 0x0000000000000000 0x64 kernel/tasks.o + .rodata.xTaskGetHandle.str1.4 + 0x0000000000000000 0x1f kernel/tasks.o + .text.xTaskGetHandle + 0x0000000000000000 0xe2 kernel/tasks.o + .text.xTaskCatchUpTicks + 0x0000000000000000 0x5e kernel/tasks.o + .text.vTaskGetInfo + 0x0000000000000000 0xb0 kernel/tasks.o + .text.prvListTasksWithinSingleList + 0x0000000000000000 0x84 kernel/tasks.o + .text.uxTaskGetSystemState + 0x0000000000000000 0xf0 kernel/tasks.o + .text.xTaskAbortDelay + 0x0000000000000000 0xde kernel/tasks.o + .text.vTaskSetTimeOutState + 0x0000000000000000 0x5a kernel/tasks.o + .text.uxTaskResetEventItemValue + 0x0000000000000000 0x1a kernel/tasks.o + .text.ulTaskNotifyTake + 0x0000000000000000 0x8c kernel/tasks.o + .text.xTaskNotifyWait + 0x0000000000000000 0xc6 kernel/tasks.o + .rodata.xTaskGenericNotify.str1.4 + 0x0000000000000000 0x6f kernel/tasks.o + .text.xTaskGenericNotify + 0x0000000000000000 0x148 kernel/tasks.o + .rodata.xTaskGenericNotify + 0x0000000000000000 0x14 kernel/tasks.o + .text.xTaskGenericNotifyFromISR + 0x0000000000000000 0x150 kernel/tasks.o + .rodata.xTaskGenericNotifyFromISR + 0x0000000000000000 0x14 kernel/tasks.o + .text.vTaskNotifyGiveFromISR + 0x0000000000000000 0xf6 kernel/tasks.o + .text.xTaskNotifyStateClear + 0x0000000000000000 0x44 kernel/tasks.o + .text.ulTaskNotifyValueClear + 0x0000000000000000 0x52 kernel/tasks.o + .rodata.__func__.0 + 0x0000000000000000 0x17 kernel/tasks.o + .rodata.__func__.1 + 0x0000000000000000 0x1a kernel/tasks.o + .rodata.__func__.10 + 0x0000000000000000 0x1f kernel/tasks.o + .rodata.__func__.14 + 0x0000000000000000 0x10 kernel/tasks.o + .rodata.__func__.15 + 0x0000000000000000 0x12 kernel/tasks.o + .rodata.__func__.16 + 0x0000000000000000 0xf kernel/tasks.o + .rodata.__func__.17 + 0x0000000000000000 0xe kernel/tasks.o + .rodata.__func__.2 + 0x0000000000000000 0x13 kernel/tasks.o + .rodata.__func__.20 + 0x0000000000000000 0x13 kernel/tasks.o + .rodata.__func__.21 + 0x0000000000000000 0x17 kernel/tasks.o + .rodata.__func__.22 + 0x0000000000000000 0xc kernel/tasks.o + .rodata.__func__.23 + 0x0000000000000000 0xd kernel/tasks.o + .rodata.__func__.24 + 0x0000000000000000 0x11 kernel/tasks.o + .rodata.__func__.25 + 0x0000000000000000 0xe kernel/tasks.o + .rodata.__func__.26 + 0x0000000000000000 0xb kernel/tasks.o + .rodata.__func__.27 + 0x0000000000000000 0x10 kernel/tasks.o + .rodata.__func__.28 + 0x0000000000000000 0xc kernel/tasks.o + .rodata.__func__.6 + 0x0000000000000000 0x15 kernel/tasks.o + .rodata.__func__.7 + 0x0000000000000000 0x22 kernel/tasks.o + .debug_macro 0x0000000000000000 0x74e kernel/tasks.o + .debug_macro 0x0000000000000000 0x19 kernel/tasks.o + .debug_macro 0x0000000000000000 0x22 kernel/tasks.o + .debug_macro 0x0000000000000000 0x4c kernel/tasks.o + .debug_macro 0x0000000000000000 0x94 kernel/tasks.o + .debug_macro 0x0000000000000000 0x34 kernel/tasks.o + .debug_macro 0x0000000000000000 0x34 kernel/tasks.o + .debug_macro 0x0000000000000000 0x16 kernel/tasks.o + .debug_macro 0x0000000000000000 0x10e kernel/tasks.o + .debug_macro 0x0000000000000000 0x8d kernel/tasks.o + .debug_macro 0x0000000000000000 0x16 kernel/tasks.o + .debug_macro 0x0000000000000000 0x43 kernel/tasks.o + .debug_macro 0x0000000000000000 0x57 kernel/tasks.o + .debug_macro 0x0000000000000000 0x34 kernel/tasks.o + .debug_macro 0x0000000000000000 0x10 kernel/tasks.o + .debug_macro 0x0000000000000000 0x52 kernel/tasks.o + .debug_macro 0x0000000000000000 0x182 kernel/tasks.o + .debug_macro 0x0000000000000000 0x333 kernel/tasks.o + .debug_macro 0x0000000000000000 0x16 kernel/tasks.o + .debug_macro 0x0000000000000000 0x29 kernel/tasks.o + .debug_macro 0x0000000000000000 0x16 kernel/tasks.o + .debug_macro 0x0000000000000000 0x35 kernel/tasks.o + .debug_macro 0x0000000000000000 0x103 kernel/tasks.o + .debug_macro 0x0000000000000000 0x6a kernel/tasks.o + .debug_macro 0x0000000000000000 0x1df kernel/tasks.o + .debug_macro 0x0000000000000000 0x10 kernel/tasks.o + .debug_macro 0x0000000000000000 0x1c kernel/tasks.o + .debug_macro 0x0000000000000000 0x114 kernel/tasks.o + .debug_macro 0x0000000000000000 0x15a kernel/tasks.o + .debug_macro 0x0000000000000000 0xe0 kernel/tasks.o + .debug_macro 0x0000000000000000 0x1c kernel/tasks.o + .debug_macro 0x0000000000000000 0x26 kernel/tasks.o + .debug_macro 0x0000000000000000 0x16 kernel/tasks.o + .debug_macro 0x0000000000000000 0x4c6 kernel/tasks.o + .debug_macro 0x0000000000000000 0xb5 kernel/tasks.o + .debug_macro 0x0000000000000000 0xaa kernel/tasks.o + .debug_macro 0x0000000000000000 0x91 kernel/tasks.o + .group 0x0000000000000000 0xc kernel/timers.o + .group 0x0000000000000000 0xc kernel/timers.o + .group 0x0000000000000000 0xc kernel/timers.o + .group 0x0000000000000000 0xc kernel/timers.o + .group 0x0000000000000000 0xc kernel/timers.o + .group 0x0000000000000000 0xc kernel/timers.o + .group 0x0000000000000000 0xc kernel/timers.o + .group 0x0000000000000000 0xc kernel/timers.o + .group 0x0000000000000000 0xc kernel/timers.o + .group 0x0000000000000000 0xc kernel/timers.o + .group 0x0000000000000000 0xc kernel/timers.o + .group 0x0000000000000000 0xc kernel/timers.o + .group 0x0000000000000000 0xc kernel/timers.o + .group 0x0000000000000000 0xc kernel/timers.o + .group 0x0000000000000000 0xc kernel/timers.o + .group 0x0000000000000000 0xc kernel/timers.o + .group 0x0000000000000000 0xc kernel/timers.o + .group 0x0000000000000000 0xc kernel/timers.o + .group 0x0000000000000000 0xc kernel/timers.o + .group 0x0000000000000000 0xc kernel/timers.o + .group 0x0000000000000000 0xc kernel/timers.o + .group 0x0000000000000000 0xc kernel/timers.o + .group 0x0000000000000000 0xc kernel/timers.o + .group 0x0000000000000000 0xc kernel/timers.o + .group 0x0000000000000000 0xc kernel/timers.o + .group 0x0000000000000000 0xc kernel/timers.o + .group 0x0000000000000000 0xc kernel/timers.o + .group 0x0000000000000000 0xc kernel/timers.o + .group 0x0000000000000000 0xc kernel/timers.o + .group 0x0000000000000000 0xc kernel/timers.o + .group 0x0000000000000000 0xc kernel/timers.o + .group 0x0000000000000000 0xc kernel/timers.o + .group 0x0000000000000000 0xc kernel/timers.o + .group 0x0000000000000000 0xc kernel/timers.o + .group 0x0000000000000000 0xc kernel/timers.o + .group 0x0000000000000000 0xc kernel/timers.o + .group 0x0000000000000000 0xc kernel/timers.o + .text 0x0000000000000000 0x0 kernel/timers.o + .data 0x0000000000000000 0x0 kernel/timers.o + .bss 0x0000000000000000 0x0 kernel/timers.o + .rodata.xTimerCreate.str1.4 + 0x0000000000000000 0x1c kernel/timers.o + .text.xTimerCreate + 0x0000000000000000 0x9a kernel/timers.o + .rodata.xTimerGetTimerDaemonTaskHandle.str1.4 + 0x0000000000000000 0x24 kernel/timers.o + .text.xTimerGetTimerDaemonTaskHandle + 0x0000000000000000 0x34 kernel/timers.o + .text.xTimerGetPeriod + 0x0000000000000000 0x2e kernel/timers.o + .text.vTimerSetReloadMode + 0x0000000000000000 0x60 kernel/timers.o + .text.uxTimerGetReloadMode + 0x0000000000000000 0x52 kernel/timers.o + .text.xTimerGetExpiryTime + 0x0000000000000000 0x2e kernel/timers.o + .text.pcTimerGetName + 0x0000000000000000 0x2e kernel/timers.o + .text.xTimerIsTimerActive + 0x0000000000000000 0x50 kernel/timers.o + .text.pvTimerGetTimerID + 0x0000000000000000 0x4c kernel/timers.o + .text.vTimerSetTimerID + 0x0000000000000000 0x4c kernel/timers.o + .text.xTimerPendFunctionCallFromISR + 0x0000000000000000 0x2c kernel/timers.o + .rodata.xTimerPendFunctionCall.str1.4 + 0x0000000000000000 0xc kernel/timers.o + .text.xTimerPendFunctionCall + 0x0000000000000000 0x54 kernel/timers.o + .text.uxTimerGetTimerNumber + 0x0000000000000000 0x4 kernel/timers.o + .text.vTimerSetTimerNumber + 0x0000000000000000 0x4 kernel/timers.o + .rodata.__func__.0 + 0x0000000000000000 0x17 kernel/timers.o + .rodata.__func__.1 + 0x0000000000000000 0x11 kernel/timers.o + .rodata.__func__.11 + 0x0000000000000000 0x16 kernel/timers.o + .rodata.__func__.2 + 0x0000000000000000 0x12 kernel/timers.o + .rodata.__func__.3 + 0x0000000000000000 0x14 kernel/timers.o + .rodata.__func__.4 + 0x0000000000000000 0xf kernel/timers.o + .rodata.__func__.5 + 0x0000000000000000 0x14 kernel/timers.o + .rodata.__func__.6 + 0x0000000000000000 0x15 kernel/timers.o + .rodata.__func__.7 + 0x0000000000000000 0x14 kernel/timers.o + .rodata.__func__.8 + 0x0000000000000000 0x10 kernel/timers.o + .rodata.__func__.9 + 0x0000000000000000 0x1f kernel/timers.o + .debug_macro 0x0000000000000000 0x74e kernel/timers.o + .debug_macro 0x0000000000000000 0x19 kernel/timers.o + .debug_macro 0x0000000000000000 0x22 kernel/timers.o + .debug_macro 0x0000000000000000 0x4c kernel/timers.o + .debug_macro 0x0000000000000000 0x94 kernel/timers.o + .debug_macro 0x0000000000000000 0x34 kernel/timers.o + .debug_macro 0x0000000000000000 0x34 kernel/timers.o + .debug_macro 0x0000000000000000 0x16 kernel/timers.o + .debug_macro 0x0000000000000000 0x10e kernel/timers.o + .debug_macro 0x0000000000000000 0x8d kernel/timers.o + .debug_macro 0x0000000000000000 0x16 kernel/timers.o + .debug_macro 0x0000000000000000 0x43 kernel/timers.o + .debug_macro 0x0000000000000000 0x57 kernel/timers.o + .debug_macro 0x0000000000000000 0x34 kernel/timers.o + .debug_macro 0x0000000000000000 0x10 kernel/timers.o + .debug_macro 0x0000000000000000 0x52 kernel/timers.o + .debug_macro 0x0000000000000000 0x182 kernel/timers.o + .debug_macro 0x0000000000000000 0x333 kernel/timers.o + .debug_macro 0x0000000000000000 0x16 kernel/timers.o + .debug_macro 0x0000000000000000 0x29 kernel/timers.o + .debug_macro 0x0000000000000000 0x103 kernel/timers.o + .debug_macro 0x0000000000000000 0x6a kernel/timers.o + .debug_macro 0x0000000000000000 0x1df kernel/timers.o + .debug_macro 0x0000000000000000 0x10 kernel/timers.o + .debug_macro 0x0000000000000000 0x1c kernel/timers.o + .debug_macro 0x0000000000000000 0x114 kernel/timers.o + .debug_macro 0x0000000000000000 0x15a kernel/timers.o + .debug_macro 0x0000000000000000 0xe0 kernel/timers.o + .debug_macro 0x0000000000000000 0x1c kernel/timers.o + .debug_macro 0x0000000000000000 0x26 kernel/timers.o + .debug_macro 0x0000000000000000 0x16 kernel/timers.o + .debug_macro 0x0000000000000000 0x35 kernel/timers.o + .debug_macro 0x0000000000000000 0x4c6 kernel/timers.o + .debug_macro 0x0000000000000000 0xb5 kernel/timers.o + .debug_macro 0x0000000000000000 0xaa kernel/timers.o + .debug_macro 0x0000000000000000 0x80 kernel/timers.o + .group 0x0000000000000000 0xc kernel/portable/GCC/RISC-V/port.o + .group 0x0000000000000000 0xc kernel/portable/GCC/RISC-V/port.o + .group 0x0000000000000000 0xc kernel/portable/GCC/RISC-V/port.o + .group 0x0000000000000000 0xc kernel/portable/GCC/RISC-V/port.o + .group 0x0000000000000000 0xc kernel/portable/GCC/RISC-V/port.o + .group 0x0000000000000000 0xc kernel/portable/GCC/RISC-V/port.o + .group 0x0000000000000000 0xc kernel/portable/GCC/RISC-V/port.o + .group 0x0000000000000000 0xc kernel/portable/GCC/RISC-V/port.o + .group 0x0000000000000000 0xc kernel/portable/GCC/RISC-V/port.o + .group 0x0000000000000000 0xc kernel/portable/GCC/RISC-V/port.o + .group 0x0000000000000000 0xc kernel/portable/GCC/RISC-V/port.o + .group 0x0000000000000000 0xc kernel/portable/GCC/RISC-V/port.o + .group 0x0000000000000000 0xc kernel/portable/GCC/RISC-V/port.o + .group 0x0000000000000000 0xc kernel/portable/GCC/RISC-V/port.o + .group 0x0000000000000000 0xc kernel/portable/GCC/RISC-V/port.o + .group 0x0000000000000000 0xc kernel/portable/GCC/RISC-V/port.o + .group 0x0000000000000000 0xc kernel/portable/GCC/RISC-V/port.o + .group 0x0000000000000000 0xc kernel/portable/GCC/RISC-V/port.o + .group 0x0000000000000000 0xc kernel/portable/GCC/RISC-V/port.o + .group 0x0000000000000000 0xc kernel/portable/GCC/RISC-V/port.o + .group 0x0000000000000000 0xc kernel/portable/GCC/RISC-V/port.o + .group 0x0000000000000000 0xc kernel/portable/GCC/RISC-V/port.o + .group 0x0000000000000000 0xc kernel/portable/GCC/RISC-V/port.o + .group 0x0000000000000000 0xc kernel/portable/GCC/RISC-V/port.o + .group 0x0000000000000000 0xc kernel/portable/GCC/RISC-V/port.o + .group 0x0000000000000000 0xc kernel/portable/GCC/RISC-V/port.o + .group 0x0000000000000000 0xc kernel/portable/GCC/RISC-V/port.o + .group 0x0000000000000000 0xc kernel/portable/GCC/RISC-V/port.o + .group 0x0000000000000000 0xc kernel/portable/GCC/RISC-V/port.o + .group 0x0000000000000000 0xc kernel/portable/GCC/RISC-V/port.o + .group 0x0000000000000000 0xc kernel/portable/GCC/RISC-V/port.o + .group 0x0000000000000000 0xc kernel/portable/GCC/RISC-V/port.o + .text 0x0000000000000000 0x0 kernel/portable/GCC/RISC-V/port.o + .data 0x0000000000000000 0x0 kernel/portable/GCC/RISC-V/port.o + .bss 0x0000000000000000 0x0 kernel/portable/GCC/RISC-V/port.o + .text.vPortEndScheduler + 0x0000000000000000 0x2 kernel/portable/GCC/RISC-V/port.o + .sbss.pullMachineTimerCompareRegister + 0x0000000000000000 0x4 kernel/portable/GCC/RISC-V/port.o + .sbss.ullNextTime + 0x0000000000000000 0x8 kernel/portable/GCC/RISC-V/port.o + .sdata.pullNextTime + 0x0000000000000000 0x4 kernel/portable/GCC/RISC-V/port.o + .srodata.ullMachineTimerCompareRegisterBase + 0x0000000000000000 0x4 kernel/portable/GCC/RISC-V/port.o + .srodata.uxTimerIncrementsForOneTick + 0x0000000000000000 0x4 kernel/portable/GCC/RISC-V/port.o + .debug_macro 0x0000000000000000 0x74e kernel/portable/GCC/RISC-V/port.o + .debug_macro 0x0000000000000000 0x174 kernel/portable/GCC/RISC-V/port.o + .debug_macro 0x0000000000000000 0x22 kernel/portable/GCC/RISC-V/port.o + .debug_macro 0x0000000000000000 0x8e kernel/portable/GCC/RISC-V/port.o + .debug_macro 0x0000000000000000 0x51 kernel/portable/GCC/RISC-V/port.o + .debug_macro 0x0000000000000000 0x103 kernel/portable/GCC/RISC-V/port.o + .debug_macro 0x0000000000000000 0x6a kernel/portable/GCC/RISC-V/port.o + .debug_macro 0x0000000000000000 0x1df kernel/portable/GCC/RISC-V/port.o + .debug_macro 0x0000000000000000 0x10 kernel/portable/GCC/RISC-V/port.o + .debug_macro 0x0000000000000000 0x52 kernel/portable/GCC/RISC-V/port.o + .debug_macro 0x0000000000000000 0x19 kernel/portable/GCC/RISC-V/port.o + .debug_macro 0x0000000000000000 0x34 kernel/portable/GCC/RISC-V/port.o + .debug_macro 0x0000000000000000 0x34 kernel/portable/GCC/RISC-V/port.o + .debug_macro 0x0000000000000000 0x1c kernel/portable/GCC/RISC-V/port.o + .debug_macro 0x0000000000000000 0x114 kernel/portable/GCC/RISC-V/port.o + .debug_macro 0x0000000000000000 0x15a kernel/portable/GCC/RISC-V/port.o + .debug_macro 0x0000000000000000 0xe0 kernel/portable/GCC/RISC-V/port.o + .debug_macro 0x0000000000000000 0x1c kernel/portable/GCC/RISC-V/port.o + .debug_macro 0x0000000000000000 0x26 kernel/portable/GCC/RISC-V/port.o + .debug_macro 0x0000000000000000 0x16 kernel/portable/GCC/RISC-V/port.o + .debug_macro 0x0000000000000000 0x43 kernel/portable/GCC/RISC-V/port.o + .debug_macro 0x0000000000000000 0x34 kernel/portable/GCC/RISC-V/port.o + .debug_macro 0x0000000000000000 0x10 kernel/portable/GCC/RISC-V/port.o + .debug_macro 0x0000000000000000 0x52 kernel/portable/GCC/RISC-V/port.o + .debug_macro 0x0000000000000000 0x182 kernel/portable/GCC/RISC-V/port.o + .debug_macro 0x0000000000000000 0x35 kernel/portable/GCC/RISC-V/port.o + .debug_macro 0x0000000000000000 0x4c6 kernel/portable/GCC/RISC-V/port.o + .debug_macro 0x0000000000000000 0xb5 kernel/portable/GCC/RISC-V/port.o + .debug_macro 0x0000000000000000 0xaa kernel/portable/GCC/RISC-V/port.o + .debug_macro 0x0000000000000000 0x333 kernel/portable/GCC/RISC-V/port.o + .debug_macro 0x0000000000000000 0x10 kernel/portable/GCC/RISC-V/port.o + .data 0x0000000000000000 0x0 kernel/portable/GCC/RISC-V/portASM.o + .bss 0x0000000000000000 0x0 kernel/portable/GCC/RISC-V/portASM.o + .group 0x0000000000000000 0xc kernel/portable/MemMang/heap_3.o + .group 0x0000000000000000 0xc kernel/portable/MemMang/heap_3.o + .group 0x0000000000000000 0xc kernel/portable/MemMang/heap_3.o + .group 0x0000000000000000 0xc kernel/portable/MemMang/heap_3.o + .group 0x0000000000000000 0xc kernel/portable/MemMang/heap_3.o + .group 0x0000000000000000 0xc kernel/portable/MemMang/heap_3.o + .group 0x0000000000000000 0xc kernel/portable/MemMang/heap_3.o + .group 0x0000000000000000 0xc kernel/portable/MemMang/heap_3.o + .group 0x0000000000000000 0xc kernel/portable/MemMang/heap_3.o + .group 0x0000000000000000 0xc kernel/portable/MemMang/heap_3.o + .group 0x0000000000000000 0xc kernel/portable/MemMang/heap_3.o + .group 0x0000000000000000 0xc kernel/portable/MemMang/heap_3.o + .group 0x0000000000000000 0xc kernel/portable/MemMang/heap_3.o + .group 0x0000000000000000 0xc kernel/portable/MemMang/heap_3.o + .group 0x0000000000000000 0xc kernel/portable/MemMang/heap_3.o + .group 0x0000000000000000 0xc kernel/portable/MemMang/heap_3.o + .group 0x0000000000000000 0xc kernel/portable/MemMang/heap_3.o + .group 0x0000000000000000 0xc kernel/portable/MemMang/heap_3.o + .group 0x0000000000000000 0xc kernel/portable/MemMang/heap_3.o + .group 0x0000000000000000 0xc kernel/portable/MemMang/heap_3.o + .group 0x0000000000000000 0xc kernel/portable/MemMang/heap_3.o + .group 0x0000000000000000 0xc kernel/portable/MemMang/heap_3.o + .group 0x0000000000000000 0xc kernel/portable/MemMang/heap_3.o + .group 0x0000000000000000 0xc kernel/portable/MemMang/heap_3.o + .group 0x0000000000000000 0xc kernel/portable/MemMang/heap_3.o + .group 0x0000000000000000 0xc kernel/portable/MemMang/heap_3.o + .group 0x0000000000000000 0xc kernel/portable/MemMang/heap_3.o + .group 0x0000000000000000 0xc kernel/portable/MemMang/heap_3.o + .group 0x0000000000000000 0xc kernel/portable/MemMang/heap_3.o + .group 0x0000000000000000 0xc kernel/portable/MemMang/heap_3.o + .group 0x0000000000000000 0xc kernel/portable/MemMang/heap_3.o + .group 0x0000000000000000 0xc kernel/portable/MemMang/heap_3.o + .group 0x0000000000000000 0xc kernel/portable/MemMang/heap_3.o + .group 0x0000000000000000 0xc kernel/portable/MemMang/heap_3.o + .group 0x0000000000000000 0xc kernel/portable/MemMang/heap_3.o + .text 0x0000000000000000 0x0 kernel/portable/MemMang/heap_3.o + .data 0x0000000000000000 0x0 kernel/portable/MemMang/heap_3.o + .bss 0x0000000000000000 0x0 kernel/portable/MemMang/heap_3.o + .debug_macro 0x0000000000000000 0x74e kernel/portable/MemMang/heap_3.o + .debug_macro 0x0000000000000000 0x19 kernel/portable/MemMang/heap_3.o + .debug_macro 0x0000000000000000 0x22 kernel/portable/MemMang/heap_3.o + .debug_macro 0x0000000000000000 0x4c kernel/portable/MemMang/heap_3.o + .debug_macro 0x0000000000000000 0x94 kernel/portable/MemMang/heap_3.o + .debug_macro 0x0000000000000000 0x34 kernel/portable/MemMang/heap_3.o + .debug_macro 0x0000000000000000 0x34 kernel/portable/MemMang/heap_3.o + .debug_macro 0x0000000000000000 0x16 kernel/portable/MemMang/heap_3.o + .debug_macro 0x0000000000000000 0x10e kernel/portable/MemMang/heap_3.o + .debug_macro 0x0000000000000000 0x8d kernel/portable/MemMang/heap_3.o + .debug_macro 0x0000000000000000 0x16 kernel/portable/MemMang/heap_3.o + .debug_macro 0x0000000000000000 0x43 kernel/portable/MemMang/heap_3.o + .debug_macro 0x0000000000000000 0x57 kernel/portable/MemMang/heap_3.o + .debug_macro 0x0000000000000000 0x34 kernel/portable/MemMang/heap_3.o + .debug_macro 0x0000000000000000 0x10 kernel/portable/MemMang/heap_3.o + .debug_macro 0x0000000000000000 0x52 kernel/portable/MemMang/heap_3.o + .debug_macro 0x0000000000000000 0x182 kernel/portable/MemMang/heap_3.o + .debug_macro 0x0000000000000000 0x333 kernel/portable/MemMang/heap_3.o + .debug_macro 0x0000000000000000 0x16 kernel/portable/MemMang/heap_3.o + .debug_macro 0x0000000000000000 0x29 kernel/portable/MemMang/heap_3.o + .debug_macro 0x0000000000000000 0x103 kernel/portable/MemMang/heap_3.o + .debug_macro 0x0000000000000000 0x6a kernel/portable/MemMang/heap_3.o + .debug_macro 0x0000000000000000 0x1df kernel/portable/MemMang/heap_3.o + .debug_macro 0x0000000000000000 0x10 kernel/portable/MemMang/heap_3.o + .debug_macro 0x0000000000000000 0x1c kernel/portable/MemMang/heap_3.o + .debug_macro 0x0000000000000000 0x114 kernel/portable/MemMang/heap_3.o + .debug_macro 0x0000000000000000 0x15a kernel/portable/MemMang/heap_3.o + .debug_macro 0x0000000000000000 0xe0 kernel/portable/MemMang/heap_3.o + .debug_macro 0x0000000000000000 0x1c kernel/portable/MemMang/heap_3.o + .debug_macro 0x0000000000000000 0x26 kernel/portable/MemMang/heap_3.o + .debug_macro 0x0000000000000000 0x16 kernel/portable/MemMang/heap_3.o + .debug_macro 0x0000000000000000 0x35 kernel/portable/MemMang/heap_3.o + .debug_macro 0x0000000000000000 0x4c6 kernel/portable/MemMang/heap_3.o + .debug_macro 0x0000000000000000 0xb5 kernel/portable/MemMang/heap_3.o + .debug_macro 0x0000000000000000 0xaa kernel/portable/MemMang/heap_3.o + .group 0x0000000000000000 0xc libc/syscalls.o + .group 0x0000000000000000 0xc libc/syscalls.o + .group 0x0000000000000000 0xc libc/syscalls.o + .group 0x0000000000000000 0xc libc/syscalls.o + .group 0x0000000000000000 0xc libc/syscalls.o + .group 0x0000000000000000 0xc libc/syscalls.o + .group 0x0000000000000000 0xc libc/syscalls.o + .group 0x0000000000000000 0xc libc/syscalls.o + .group 0x0000000000000000 0xc libc/syscalls.o + .group 0x0000000000000000 0xc libc/syscalls.o + .group 0x0000000000000000 0xc libc/syscalls.o + .group 0x0000000000000000 0xc libc/syscalls.o + .group 0x0000000000000000 0xc libc/syscalls.o + .group 0x0000000000000000 0xc libc/syscalls.o + .group 0x0000000000000000 0xc libc/syscalls.o + .group 0x0000000000000000 0xc libc/syscalls.o + .group 0x0000000000000000 0xc libc/syscalls.o + .group 0x0000000000000000 0xc libc/syscalls.o + .group 0x0000000000000000 0xc libc/syscalls.o + .group 0x0000000000000000 0xc libc/syscalls.o + .group 0x0000000000000000 0xc libc/syscalls.o + .group 0x0000000000000000 0xc libc/syscalls.o + .group 0x0000000000000000 0xc libc/syscalls.o + .group 0x0000000000000000 0xc libc/syscalls.o + .group 0x0000000000000000 0xc libc/syscalls.o + .group 0x0000000000000000 0xc libc/syscalls.o + .group 0x0000000000000000 0xc libc/syscalls.o + .group 0x0000000000000000 0xc libc/syscalls.o + .group 0x0000000000000000 0xc libc/syscalls.o + .group 0x0000000000000000 0xc libc/syscalls.o + .group 0x0000000000000000 0xc libc/syscalls.o + .group 0x0000000000000000 0xc libc/syscalls.o + .group 0x0000000000000000 0xc libc/syscalls.o + .group 0x0000000000000000 0xc libc/syscalls.o + .group 0x0000000000000000 0xc libc/syscalls.o + .group 0x0000000000000000 0xc libc/syscalls.o + .group 0x0000000000000000 0xc libc/syscalls.o + .group 0x0000000000000000 0xc libc/syscalls.o + .group 0x0000000000000000 0xc libc/syscalls.o + .group 0x0000000000000000 0xc libc/syscalls.o + .group 0x0000000000000000 0xc libc/syscalls.o + .group 0x0000000000000000 0xc libc/syscalls.o + .group 0x0000000000000000 0xc libc/syscalls.o + .group 0x0000000000000000 0xc libc/syscalls.o + .group 0x0000000000000000 0xc libc/syscalls.o + .group 0x0000000000000000 0xc libc/syscalls.o + .group 0x0000000000000000 0xc libc/syscalls.o + .group 0x0000000000000000 0xc libc/syscalls.o + .group 0x0000000000000000 0xc libc/syscalls.o + .group 0x0000000000000000 0xc libc/syscalls.o + .group 0x0000000000000000 0xc libc/syscalls.o + .group 0x0000000000000000 0xc libc/syscalls.o + .group 0x0000000000000000 0xc libc/syscalls.o + .group 0x0000000000000000 0xc libc/syscalls.o + .group 0x0000000000000000 0xc libc/syscalls.o + .group 0x0000000000000000 0xc libc/syscalls.o + .group 0x0000000000000000 0xc libc/syscalls.o + .text 0x0000000000000000 0x0 libc/syscalls.o + .data 0x0000000000000000 0x0 libc/syscalls.o + .bss 0x0000000000000000 0x0 libc/syscalls.o + .text.nanosleep + 0x0000000000000000 0x10 libc/syscalls.o + .text._access 0x0000000000000000 0x10 libc/syscalls.o + .text._chdir 0x0000000000000000 0x10 libc/syscalls.o + .text._chmod 0x0000000000000000 0x10 libc/syscalls.o + .text._chown 0x0000000000000000 0x10 libc/syscalls.o + .text._execve 0x0000000000000000 0xe libc/syscalls.o + .text._faccessat + 0x0000000000000000 0x10 libc/syscalls.o + .text._fork 0x0000000000000000 0xe libc/syscalls.o + .text._fstatat + 0x0000000000000000 0x10 libc/syscalls.o + .text._ftime 0x0000000000000000 0x10 libc/syscalls.o + .text._getcwd 0x0000000000000000 0x10 libc/syscalls.o + .text._gettimeofday + 0x0000000000000000 0x10 libc/syscalls.o + .text._link 0x0000000000000000 0xe libc/syscalls.o + .text._lstat 0x0000000000000000 0x10 libc/syscalls.o + .text._open 0x0000000000000000 0x4 libc/syscalls.o + .text._openat 0x0000000000000000 0x10 libc/syscalls.o + .text._stat 0x0000000000000000 0x8 libc/syscalls.o + .text._sysconf + 0x0000000000000000 0x4 libc/syscalls.o + .text._times 0x0000000000000000 0x4 libc/syscalls.o + .text._unlink 0x0000000000000000 0xe libc/syscalls.o + .text._utime 0x0000000000000000 0x10 libc/syscalls.o + .text._wait 0x0000000000000000 0xe libc/syscalls.o + .rodata.unimplemented_syscall.str1.4 + 0x0000000000000000 0x23 libc/syscalls.o + .text.unimplemented_syscall + 0x0000000000000000 0x16 libc/syscalls.o + .text._brk 0x0000000000000000 0xc libc/syscalls.o + .debug_macro 0x0000000000000000 0x74e libc/syscalls.o + .debug_macro 0x0000000000000000 0x22 libc/syscalls.o + .debug_macro 0x0000000000000000 0x4c libc/syscalls.o + .debug_macro 0x0000000000000000 0x19 libc/syscalls.o + .debug_macro 0x0000000000000000 0x94 libc/syscalls.o + .debug_macro 0x0000000000000000 0x34 libc/syscalls.o + .debug_macro 0x0000000000000000 0x34 libc/syscalls.o + .debug_macro 0x0000000000000000 0x57 libc/syscalls.o + .debug_macro 0x0000000000000000 0x174 libc/syscalls.o + .debug_macro 0x0000000000000000 0x333 libc/syscalls.o + .debug_macro 0x0000000000000000 0x16 libc/syscalls.o + .debug_macro 0x0000000000000000 0x43 libc/syscalls.o + .debug_macro 0x0000000000000000 0x34 libc/syscalls.o + .debug_macro 0x0000000000000000 0x10 libc/syscalls.o + .debug_macro 0x0000000000000000 0x52 libc/syscalls.o + .debug_macro 0x0000000000000000 0x182 libc/syscalls.o + .debug_macro 0x0000000000000000 0x35 libc/syscalls.o + .debug_macro 0x0000000000000000 0x6a libc/syscalls.o + .debug_macro 0x0000000000000000 0x103 libc/syscalls.o + .debug_macro 0x0000000000000000 0x1df libc/syscalls.o + .debug_macro 0x0000000000000000 0x16 libc/syscalls.o + .debug_macro 0x0000000000000000 0x10 libc/syscalls.o + .debug_macro 0x0000000000000000 0x1c libc/syscalls.o + .debug_macro 0x0000000000000000 0x114 libc/syscalls.o + .debug_macro 0x0000000000000000 0x15a libc/syscalls.o + .debug_macro 0x0000000000000000 0xe0 libc/syscalls.o + .debug_macro 0x0000000000000000 0x1c libc/syscalls.o + .debug_macro 0x0000000000000000 0x26 libc/syscalls.o + .debug_macro 0x0000000000000000 0x16 libc/syscalls.o + .debug_macro 0x0000000000000000 0x4c6 libc/syscalls.o + .debug_macro 0x0000000000000000 0xb5 libc/syscalls.o + .debug_macro 0x0000000000000000 0xaa libc/syscalls.o + .group 0x0000000000000000 0xc libc/pulp_malloc.o + .group 0x0000000000000000 0xc libc/pulp_malloc.o + .group 0x0000000000000000 0xc libc/pulp_malloc.o + .group 0x0000000000000000 0xc libc/pulp_malloc.o + .group 0x0000000000000000 0xc libc/pulp_malloc.o + .group 0x0000000000000000 0xc libc/pulp_malloc.o + .group 0x0000000000000000 0xc libc/pulp_malloc.o + .group 0x0000000000000000 0xc libc/pulp_malloc.o + .group 0x0000000000000000 0xc libc/pulp_malloc.o + .group 0x0000000000000000 0xc libc/pulp_malloc.o + .group 0x0000000000000000 0xc libc/pulp_malloc.o + .group 0x0000000000000000 0xc libc/pulp_malloc.o + .group 0x0000000000000000 0xc libc/pulp_malloc.o + .group 0x0000000000000000 0xc libc/pulp_malloc.o + .group 0x0000000000000000 0xc libc/pulp_malloc.o + .group 0x0000000000000000 0xc libc/pulp_malloc.o + .group 0x0000000000000000 0xc libc/pulp_malloc.o + .group 0x0000000000000000 0xc libc/pulp_malloc.o + .group 0x0000000000000000 0xc libc/pulp_malloc.o + .group 0x0000000000000000 0xc libc/pulp_malloc.o + .text 0x0000000000000000 0x0 libc/pulp_malloc.o + .data 0x0000000000000000 0x0 libc/pulp_malloc.o + .bss 0x0000000000000000 0x0 libc/pulp_malloc.o + .text.pi_l2_free + 0x0000000000000000 0x8 libc/pulp_malloc.o + .debug_macro 0x0000000000000000 0x74e libc/pulp_malloc.o + .debug_macro 0x0000000000000000 0x19 libc/pulp_malloc.o + .debug_macro 0x0000000000000000 0x22 libc/pulp_malloc.o + .debug_macro 0x0000000000000000 0x4c libc/pulp_malloc.o + .debug_macro 0x0000000000000000 0x94 libc/pulp_malloc.o + .debug_macro 0x0000000000000000 0x34 libc/pulp_malloc.o + .debug_macro 0x0000000000000000 0x34 libc/pulp_malloc.o + .debug_macro 0x0000000000000000 0x16 libc/pulp_malloc.o + .debug_macro 0x0000000000000000 0x10e libc/pulp_malloc.o + .debug_macro 0x0000000000000000 0x8d libc/pulp_malloc.o + .debug_macro 0x0000000000000000 0x16 libc/pulp_malloc.o + .debug_macro 0x0000000000000000 0x43 libc/pulp_malloc.o + .debug_macro 0x0000000000000000 0x57 libc/pulp_malloc.o + .debug_macro 0x0000000000000000 0x34 libc/pulp_malloc.o + .debug_macro 0x0000000000000000 0x10 libc/pulp_malloc.o + .debug_macro 0x0000000000000000 0x52 libc/pulp_malloc.o + .debug_macro 0x0000000000000000 0x182 libc/pulp_malloc.o + .debug_macro 0x0000000000000000 0x333 libc/pulp_malloc.o + .debug_macro 0x0000000000000000 0x16 libc/pulp_malloc.o + .debug_macro 0x0000000000000000 0x29 libc/pulp_malloc.o + .text 0x0000000000000000 0x0 target/pulp/crt0.o + .data 0x0000000000000000 0x0 target/pulp/crt0.o + .bss 0x0000000000000000 0x0 target/pulp/crt0.o + .group 0x0000000000000000 0xc target/pulp/system.o + .group 0x0000000000000000 0xc target/pulp/system.o + .group 0x0000000000000000 0xc target/pulp/system.o + .group 0x0000000000000000 0xc target/pulp/system.o + .group 0x0000000000000000 0xc target/pulp/system.o + .group 0x0000000000000000 0xc target/pulp/system.o + .group 0x0000000000000000 0xc target/pulp/system.o + .group 0x0000000000000000 0xc target/pulp/system.o + .group 0x0000000000000000 0xc target/pulp/system.o + .group 0x0000000000000000 0xc target/pulp/system.o + .group 0x0000000000000000 0xc target/pulp/system.o + .group 0x0000000000000000 0xc target/pulp/system.o + .group 0x0000000000000000 0xc target/pulp/system.o + .group 0x0000000000000000 0xc target/pulp/system.o + .group 0x0000000000000000 0xc target/pulp/system.o + .group 0x0000000000000000 0xc target/pulp/system.o + .group 0x0000000000000000 0xc target/pulp/system.o + .group 0x0000000000000000 0xc target/pulp/system.o + .group 0x0000000000000000 0xc target/pulp/system.o + .group 0x0000000000000000 0xc target/pulp/system.o + .group 0x0000000000000000 0xc target/pulp/system.o + .group 0x0000000000000000 0xc target/pulp/system.o + .group 0x0000000000000000 0xc target/pulp/system.o + .group 0x0000000000000000 0xc target/pulp/system.o + .group 0x0000000000000000 0xc target/pulp/system.o + .group 0x0000000000000000 0xc target/pulp/system.o + .group 0x0000000000000000 0xc target/pulp/system.o + .group 0x0000000000000000 0xc target/pulp/system.o + .group 0x0000000000000000 0xc target/pulp/system.o + .group 0x0000000000000000 0xc target/pulp/system.o + .group 0x0000000000000000 0xc target/pulp/system.o + .group 0x0000000000000000 0xc target/pulp/system.o + .group 0x0000000000000000 0xc target/pulp/system.o + .group 0x0000000000000000 0xc target/pulp/system.o + .group 0x0000000000000000 0xc target/pulp/system.o + .group 0x0000000000000000 0xc target/pulp/system.o + .group 0x0000000000000000 0xc target/pulp/system.o + .group 0x0000000000000000 0xc target/pulp/system.o + .group 0x0000000000000000 0xc target/pulp/system.o + .group 0x0000000000000000 0xc target/pulp/system.o + .group 0x0000000000000000 0xc target/pulp/system.o + .group 0x0000000000000000 0xc target/pulp/system.o + .group 0x0000000000000000 0xc target/pulp/system.o + .group 0x0000000000000000 0xc target/pulp/system.o + .group 0x0000000000000000 0xc target/pulp/system.o + .group 0x0000000000000000 0xc target/pulp/system.o + .group 0x0000000000000000 0xc target/pulp/system.o + .group 0x0000000000000000 0xc target/pulp/system.o + .group 0x0000000000000000 0xc target/pulp/system.o + .group 0x0000000000000000 0xc target/pulp/system.o + .group 0x0000000000000000 0xc target/pulp/system.o + .group 0x0000000000000000 0xc target/pulp/system.o + .group 0x0000000000000000 0xc target/pulp/system.o + .group 0x0000000000000000 0xc target/pulp/system.o + .group 0x0000000000000000 0xc target/pulp/system.o + .group 0x0000000000000000 0xc target/pulp/system.o + .group 0x0000000000000000 0xc target/pulp/system.o + .group 0x0000000000000000 0xc target/pulp/system.o + .group 0x0000000000000000 0xc target/pulp/system.o + .group 0x0000000000000000 0xc target/pulp/system.o + .group 0x0000000000000000 0xc target/pulp/system.o + .text 0x0000000000000000 0x0 target/pulp/system.o + .data 0x0000000000000000 0x0 target/pulp/system.o + .bss 0x0000000000000000 0x0 target/pulp/system.o + .text.system_core_clock_get + 0x0000000000000000 0x1a target/pulp/system.o + .text.unlikely.undefined_handler + 0x0000000000000000 0xc target/pulp/system.o + .sdata.__heap_size + 0x0000000000000000 0x4 target/pulp/system.o + .debug_macro 0x0000000000000000 0x74e target/pulp/system.o + .debug_macro 0x0000000000000000 0x22 target/pulp/system.o + .debug_macro 0x0000000000000000 0x8e target/pulp/system.o + .debug_macro 0x0000000000000000 0x51 target/pulp/system.o + .debug_macro 0x0000000000000000 0x103 target/pulp/system.o + .debug_macro 0x0000000000000000 0x6a target/pulp/system.o + .debug_macro 0x0000000000000000 0x1df target/pulp/system.o + .debug_macro 0x0000000000000000 0x52 target/pulp/system.o + .debug_macro 0x0000000000000000 0x19 target/pulp/system.o + .debug_macro 0x0000000000000000 0x34 target/pulp/system.o + .debug_macro 0x0000000000000000 0x34 target/pulp/system.o + .debug_macro 0x0000000000000000 0x1c target/pulp/system.o + .debug_macro 0x0000000000000000 0x22 target/pulp/system.o + .debug_macro 0x0000000000000000 0x10 target/pulp/system.o + .debug_macro 0x0000000000000000 0x174 target/pulp/system.o + .debug_macro 0x0000000000000000 0x114 target/pulp/system.o + .debug_macro 0x0000000000000000 0x15a target/pulp/system.o + .debug_macro 0x0000000000000000 0xe0 target/pulp/system.o + .debug_macro 0x0000000000000000 0x1c target/pulp/system.o + .debug_macro 0x0000000000000000 0x26 target/pulp/system.o + .debug_macro 0x0000000000000000 0x16 target/pulp/system.o + .debug_macro 0x0000000000000000 0x43 target/pulp/system.o + .debug_macro 0x0000000000000000 0x34 target/pulp/system.o + .debug_macro 0x0000000000000000 0x10 target/pulp/system.o + .debug_macro 0x0000000000000000 0x52 target/pulp/system.o + .debug_macro 0x0000000000000000 0x182 target/pulp/system.o + .debug_macro 0x0000000000000000 0x10 target/pulp/system.o + .debug_macro 0x0000000000000000 0x35 target/pulp/system.o + .debug_macro 0x0000000000000000 0x4c6 target/pulp/system.o + .debug_macro 0x0000000000000000 0x333 target/pulp/system.o + .debug_macro 0x0000000000000000 0x10 target/pulp/system.o + .debug_macro 0x0000000000000000 0x1c target/pulp/system.o + .debug_macro 0x0000000000000000 0x52 target/pulp/system.o + .debug_macro 0x0000000000000000 0x22 target/pulp/system.o + .debug_macro 0x0000000000000000 0x10 target/pulp/system.o + .debug_macro 0x0000000000000000 0x40 target/pulp/system.o + .debug_macro 0x0000000000000000 0xd5 target/pulp/system.o + .debug_macro 0x0000000000000000 0x1c target/pulp/system.o + .debug_macro 0x0000000000000000 0x3d target/pulp/system.o + .debug_macro 0x0000000000000000 0x16 target/pulp/system.o + .debug_macro 0x0000000000000000 0x16 target/pulp/system.o + .debug_macro 0x0000000000000000 0x29 target/pulp/system.o + .debug_macro 0x0000000000000000 0x16 target/pulp/system.o + .debug_macro 0x0000000000000000 0x70 target/pulp/system.o + .text 0x0000000000000000 0x0 target/pulp/vectors.o + .data 0x0000000000000000 0x0 target/pulp/vectors.o + .bss 0x0000000000000000 0x0 target/pulp/vectors.o + .text.vecs 0x0000000000000000 0x88 target/pulp/vectors.o + .rodata 0x0000000000000000 0xb5 target/pulp/vectors.o + .group 0x0000000000000000 0xc drivers/uart.o + .group 0x0000000000000000 0xc drivers/uart.o + .group 0x0000000000000000 0xc drivers/uart.o + .group 0x0000000000000000 0xc drivers/uart.o + .group 0x0000000000000000 0xc drivers/uart.o + .group 0x0000000000000000 0xc drivers/uart.o + .group 0x0000000000000000 0xc drivers/uart.o + .group 0x0000000000000000 0xc drivers/uart.o + .group 0x0000000000000000 0xc drivers/uart.o + .group 0x0000000000000000 0xc drivers/uart.o + .group 0x0000000000000000 0xc drivers/uart.o + .group 0x0000000000000000 0xc drivers/uart.o + .group 0x0000000000000000 0xc drivers/uart.o + .group 0x0000000000000000 0xc drivers/uart.o + .group 0x0000000000000000 0xc drivers/uart.o + .group 0x0000000000000000 0xc drivers/uart.o + .group 0x0000000000000000 0xc drivers/uart.o + .group 0x0000000000000000 0xc drivers/uart.o + .group 0x0000000000000000 0xc drivers/uart.o + .group 0x0000000000000000 0xc drivers/uart.o + .group 0x0000000000000000 0xc drivers/uart.o + .group 0x0000000000000000 0xc drivers/uart.o + .group 0x0000000000000000 0xc drivers/uart.o + .group 0x0000000000000000 0xc drivers/uart.o + .group 0x0000000000000000 0xc drivers/uart.o + .group 0x0000000000000000 0xc drivers/uart.o + .group 0x0000000000000000 0xc drivers/uart.o + .group 0x0000000000000000 0xc drivers/uart.o + .group 0x0000000000000000 0xc drivers/uart.o + .group 0x0000000000000000 0xc drivers/uart.o + .group 0x0000000000000000 0xc drivers/uart.o + .group 0x0000000000000000 0xc drivers/uart.o + .group 0x0000000000000000 0xc drivers/uart.o + .group 0x0000000000000000 0xc drivers/uart.o + .group 0x0000000000000000 0xc drivers/uart.o + .group 0x0000000000000000 0xc drivers/uart.o + .group 0x0000000000000000 0xc drivers/uart.o + .group 0x0000000000000000 0xc drivers/uart.o + .group 0x0000000000000000 0xc drivers/uart.o + .group 0x0000000000000000 0xc drivers/uart.o + .group 0x0000000000000000 0xc drivers/uart.o + .group 0x0000000000000000 0xc drivers/uart.o + .group 0x0000000000000000 0xc drivers/uart.o + .group 0x0000000000000000 0xc drivers/uart.o + .group 0x0000000000000000 0xc drivers/uart.o + .group 0x0000000000000000 0xc drivers/uart.o + .group 0x0000000000000000 0xc drivers/uart.o + .group 0x0000000000000000 0xc drivers/uart.o + .group 0x0000000000000000 0xc drivers/uart.o + .group 0x0000000000000000 0xc drivers/uart.o + .group 0x0000000000000000 0xc drivers/uart.o + .group 0x0000000000000000 0xc drivers/uart.o + .group 0x0000000000000000 0xc drivers/uart.o + .group 0x0000000000000000 0xc drivers/uart.o + .group 0x0000000000000000 0xc drivers/uart.o + .group 0x0000000000000000 0xc drivers/uart.o + .group 0x0000000000000000 0xc drivers/uart.o + .group 0x0000000000000000 0xc drivers/uart.o + .group 0x0000000000000000 0xc drivers/uart.o + .group 0x0000000000000000 0xc drivers/uart.o + .group 0x0000000000000000 0xc drivers/uart.o + .group 0x0000000000000000 0xc drivers/uart.o + .group 0x0000000000000000 0xc drivers/uart.o + .group 0x0000000000000000 0xc drivers/uart.o + .group 0x0000000000000000 0xc drivers/uart.o + .group 0x0000000000000000 0xc drivers/uart.o + .group 0x0000000000000000 0xc drivers/uart.o + .group 0x0000000000000000 0xc drivers/uart.o + .text 0x0000000000000000 0x0 drivers/uart.o + .data 0x0000000000000000 0x0 drivers/uart.o + .bss 0x0000000000000000 0x0 drivers/uart.o + .text.hal_soc_eu_set_fc_mask + 0x0000000000000000 0x28 drivers/uart.o + .text.hal_soc_eu_clear_fc_mask + 0x0000000000000000 0x24 drivers/uart.o + .text.uart_setup_set + 0x0000000000000000 0x10 drivers/uart.o + .text.__pi_uart_conf_set.isra.0 + 0x0000000000000000 0x64 drivers/uart.o + .text.__pi_uart_copy_exec.isra.0 + 0x0000000000000000 0x4c drivers/uart.o + .text.__pi_uart_handler + 0x0000000000000000 0x96 drivers/uart.o + .text.__pi_uart_rx_abort + 0x0000000000000000 0x40 drivers/uart.o + .text.__pi_uart_tx_abort + 0x0000000000000000 0x40 drivers/uart.o + .text.pi_uart_conf_init + 0x0000000000000000 0x14 drivers/uart.o + .text.pi_uart_open + 0x0000000000000000 0xdc drivers/uart.o + .text.pi_uart_close + 0x0000000000000000 0xb4 drivers/uart.o + .text.pi_uart_ioctl + 0x0000000000000000 0x92 drivers/uart.o + .rodata.pi_uart_ioctl + 0x0000000000000000 0x14 drivers/uart.o + .text.pi_uart_write_async + 0x0000000000000000 0x6a drivers/uart.o + .text.pi_uart_write + 0x0000000000000000 0x5e drivers/uart.o + .text.pi_uart_write_byte + 0x0000000000000000 0x58 drivers/uart.o + .text.pi_uart_write_byte_async + 0x0000000000000000 0xc drivers/uart.o + .text.pi_uart_read_async + 0x0000000000000000 0x6a drivers/uart.o + .text.pi_uart_read + 0x0000000000000000 0x5e drivers/uart.o + .text.pi_uart_read_byte + 0x0000000000000000 0x58 drivers/uart.o + .sbss.g_uart_itf_data + 0x0000000000000000 0x4 drivers/uart.o + .debug_info 0x0000000000000000 0x2494 drivers/uart.o + .debug_abbrev 0x0000000000000000 0x4ab drivers/uart.o + .debug_loc 0x0000000000000000 0x2085 drivers/uart.o + .debug_aranges + 0x0000000000000000 0xb0 drivers/uart.o + .debug_ranges 0x0000000000000000 0x468 drivers/uart.o + .debug_macro 0x0000000000000000 0x40e drivers/uart.o + .debug_macro 0x0000000000000000 0x74e drivers/uart.o + .debug_macro 0x0000000000000000 0x174 drivers/uart.o + .debug_macro 0x0000000000000000 0x22 drivers/uart.o + .debug_macro 0x0000000000000000 0x4c drivers/uart.o + .debug_macro 0x0000000000000000 0x19 drivers/uart.o + .debug_macro 0x0000000000000000 0x94 drivers/uart.o + .debug_macro 0x0000000000000000 0x34 drivers/uart.o + .debug_macro 0x0000000000000000 0x34 drivers/uart.o + .debug_macro 0x0000000000000000 0x16 drivers/uart.o + .debug_macro 0x0000000000000000 0x43 drivers/uart.o + .debug_macro 0x0000000000000000 0x57 drivers/uart.o + .debug_macro 0x0000000000000000 0x34 drivers/uart.o + .debug_macro 0x0000000000000000 0x10 drivers/uart.o + .debug_macro 0x0000000000000000 0x52 drivers/uart.o + .debug_macro 0x0000000000000000 0x182 drivers/uart.o + .debug_macro 0x0000000000000000 0x333 drivers/uart.o + .debug_macro 0x0000000000000000 0x10 drivers/uart.o + .debug_macro 0x0000000000000000 0x35 drivers/uart.o + .debug_macro 0x0000000000000000 0x103 drivers/uart.o + .debug_macro 0x0000000000000000 0x6a drivers/uart.o + .debug_macro 0x0000000000000000 0x1df drivers/uart.o + .debug_macro 0x0000000000000000 0x4cc drivers/uart.o + .debug_macro 0x0000000000000000 0x10 drivers/uart.o + .debug_macro 0x0000000000000000 0x1c drivers/uart.o + .debug_macro 0x0000000000000000 0x52 drivers/uart.o + .debug_macro 0x0000000000000000 0x22 drivers/uart.o + .debug_macro 0x0000000000000000 0x10 drivers/uart.o + .debug_macro 0x0000000000000000 0x40 drivers/uart.o + .debug_macro 0x0000000000000000 0xd5 drivers/uart.o + .debug_macro 0x0000000000000000 0x1c drivers/uart.o + .debug_macro 0x0000000000000000 0x3d drivers/uart.o + .debug_macro 0x0000000000000000 0x1f drivers/uart.o + .debug_macro 0x0000000000000000 0x3a1 drivers/uart.o + .debug_macro 0x0000000000000000 0x1c drivers/uart.o + .debug_macro 0x0000000000000000 0x22 drivers/uart.o + .debug_macro 0x0000000000000000 0x64 drivers/uart.o + .debug_macro 0x0000000000000000 0x70 drivers/uart.o + .debug_macro 0x0000000000000000 0x20d drivers/uart.o + .debug_macro 0x0000000000000000 0x16 drivers/uart.o + .debug_macro 0x0000000000000000 0x16 drivers/uart.o + .debug_macro 0x0000000000000000 0x29 drivers/uart.o + .debug_macro 0x0000000000000000 0x1c drivers/uart.o + .debug_macro 0x0000000000000000 0x10 drivers/uart.o + .debug_macro 0x0000000000000000 0x10 drivers/uart.o + .debug_macro 0x0000000000000000 0x16 drivers/uart.o + .debug_macro 0x0000000000000000 0x16f drivers/uart.o + .debug_macro 0x0000000000000000 0x10 drivers/uart.o + .debug_macro 0x0000000000000000 0x16 drivers/uart.o + .debug_macro 0x0000000000000000 0x114 drivers/uart.o + .debug_macro 0x0000000000000000 0x15a drivers/uart.o + .debug_macro 0x0000000000000000 0xe0 drivers/uart.o + .debug_macro 0x0000000000000000 0x1c drivers/uart.o + .debug_macro 0x0000000000000000 0x26 drivers/uart.o + .debug_macro 0x0000000000000000 0x16 drivers/uart.o + .debug_macro 0x0000000000000000 0x4c6 drivers/uart.o + .debug_macro 0x0000000000000000 0xb5 drivers/uart.o + .debug_macro 0x0000000000000000 0xaa drivers/uart.o + .debug_macro 0x0000000000000000 0x80 drivers/uart.o + .debug_macro 0x0000000000000000 0x7e drivers/uart.o + .debug_macro 0x0000000000000000 0x164 drivers/uart.o + .debug_macro 0x0000000000000000 0x1c1 drivers/uart.o + .debug_macro 0x0000000000000000 0x1be drivers/uart.o + .debug_macro 0x0000000000000000 0x19a drivers/uart.o + .debug_macro 0x0000000000000000 0x1ac drivers/uart.o + .debug_macro 0x0000000000000000 0x4c drivers/uart.o + .debug_macro 0x0000000000000000 0x10 drivers/uart.o + .debug_macro 0x0000000000000000 0xe1 drivers/uart.o + .debug_macro 0x0000000000000000 0x40 drivers/uart.o + .debug_line 0x0000000000000000 0x1ef6 drivers/uart.o + .debug_str 0x0000000000000000 0x12a04 drivers/uart.o + .comment 0x0000000000000000 0x13 drivers/uart.o + .debug_frame 0x0000000000000000 0x278 drivers/uart.o + .riscv.attributes + 0x0000000000000000 0x2f drivers/uart.o + .group 0x0000000000000000 0xc ../pulpos/pulp/drivers/spim/spim-v3.o + .group 0x0000000000000000 0xc ../pulpos/pulp/drivers/spim/spim-v3.o + .group 0x0000000000000000 0xc ../pulpos/pulp/drivers/spim/spim-v3.o + .group 0x0000000000000000 0xc ../pulpos/pulp/drivers/spim/spim-v3.o + .group 0x0000000000000000 0xc ../pulpos/pulp/drivers/spim/spim-v3.o + .group 0x0000000000000000 0xc ../pulpos/pulp/drivers/spim/spim-v3.o + .group 0x0000000000000000 0xc ../pulpos/pulp/drivers/spim/spim-v3.o + .group 0x0000000000000000 0xc ../pulpos/pulp/drivers/spim/spim-v3.o + .group 0x0000000000000000 0xc ../pulpos/pulp/drivers/spim/spim-v3.o + .group 0x0000000000000000 0xc ../pulpos/pulp/drivers/spim/spim-v3.o + .group 0x0000000000000000 0xc ../pulpos/pulp/drivers/spim/spim-v3.o + .group 0x0000000000000000 0xc ../pulpos/pulp/drivers/spim/spim-v3.o + .group 0x0000000000000000 0xc ../pulpos/pulp/drivers/spim/spim-v3.o + .group 0x0000000000000000 0xc ../pulpos/pulp/drivers/spim/spim-v3.o + .group 0x0000000000000000 0xc ../pulpos/pulp/drivers/spim/spim-v3.o + .group 0x0000000000000000 0xc ../pulpos/pulp/drivers/spim/spim-v3.o + .group 0x0000000000000000 0xc ../pulpos/pulp/drivers/spim/spim-v3.o + .group 0x0000000000000000 0xc ../pulpos/pulp/drivers/spim/spim-v3.o + .group 0x0000000000000000 0xc ../pulpos/pulp/drivers/spim/spim-v3.o + .group 0x0000000000000000 0xc ../pulpos/pulp/drivers/spim/spim-v3.o + .group 0x0000000000000000 0xc ../pulpos/pulp/drivers/spim/spim-v3.o + .group 0x0000000000000000 0xc ../pulpos/pulp/drivers/spim/spim-v3.o + .group 0x0000000000000000 0xc ../pulpos/pulp/drivers/spim/spim-v3.o + .group 0x0000000000000000 0xc ../pulpos/pulp/drivers/spim/spim-v3.o + .group 0x0000000000000000 0xc ../pulpos/pulp/drivers/spim/spim-v3.o + .group 0x0000000000000000 0xc ../pulpos/pulp/drivers/spim/spim-v3.o + .group 0x0000000000000000 0xc ../pulpos/pulp/drivers/spim/spim-v3.o + .group 0x0000000000000000 0xc ../pulpos/pulp/drivers/spim/spim-v3.o + .group 0x0000000000000000 0xc ../pulpos/pulp/drivers/spim/spim-v3.o + .group 0x0000000000000000 0xc ../pulpos/pulp/drivers/spim/spim-v3.o + .group 0x0000000000000000 0xc ../pulpos/pulp/drivers/spim/spim-v3.o + .group 0x0000000000000000 0xc ../pulpos/pulp/drivers/spim/spim-v3.o + .group 0x0000000000000000 0xc ../pulpos/pulp/drivers/spim/spim-v3.o + .group 0x0000000000000000 0xc ../pulpos/pulp/drivers/spim/spim-v3.o + .group 0x0000000000000000 0xc ../pulpos/pulp/drivers/spim/spim-v3.o + .group 0x0000000000000000 0xc ../pulpos/pulp/drivers/spim/spim-v3.o + .group 0x0000000000000000 0xc ../pulpos/pulp/drivers/spim/spim-v3.o + .group 0x0000000000000000 0xc ../pulpos/pulp/drivers/spim/spim-v3.o + .group 0x0000000000000000 0xc ../pulpos/pulp/drivers/spim/spim-v3.o + .group 0x0000000000000000 0xc ../pulpos/pulp/drivers/spim/spim-v3.o + .group 0x0000000000000000 0xc ../pulpos/pulp/drivers/spim/spim-v3.o + .group 0x0000000000000000 0xc ../pulpos/pulp/drivers/spim/spim-v3.o + .group 0x0000000000000000 0xc ../pulpos/pulp/drivers/spim/spim-v3.o + .group 0x0000000000000000 0xc ../pulpos/pulp/drivers/spim/spim-v3.o + .group 0x0000000000000000 0xc ../pulpos/pulp/drivers/spim/spim-v3.o + .group 0x0000000000000000 0xc ../pulpos/pulp/drivers/spim/spim-v3.o + .group 0x0000000000000000 0xc ../pulpos/pulp/drivers/spim/spim-v3.o + .group 0x0000000000000000 0xc ../pulpos/pulp/drivers/spim/spim-v3.o + .group 0x0000000000000000 0xc ../pulpos/pulp/drivers/spim/spim-v3.o + .group 0x0000000000000000 0xc ../pulpos/pulp/drivers/spim/spim-v3.o + .group 0x0000000000000000 0xc ../pulpos/pulp/drivers/spim/spim-v3.o + .group 0x0000000000000000 0xc ../pulpos/pulp/drivers/spim/spim-v3.o + .group 0x0000000000000000 0xc ../pulpos/pulp/drivers/spim/spim-v3.o + .group 0x0000000000000000 0xc ../pulpos/pulp/drivers/spim/spim-v3.o + .group 0x0000000000000000 0xc ../pulpos/pulp/drivers/spim/spim-v3.o + .group 0x0000000000000000 0xc ../pulpos/pulp/drivers/spim/spim-v3.o + .group 0x0000000000000000 0xc ../pulpos/pulp/drivers/spim/spim-v3.o + .group 0x0000000000000000 0xc ../pulpos/pulp/drivers/spim/spim-v3.o + .group 0x0000000000000000 0xc ../pulpos/pulp/drivers/spim/spim-v3.o + .group 0x0000000000000000 0xc ../pulpos/pulp/drivers/spim/spim-v3.o + .group 0x0000000000000000 0xc ../pulpos/pulp/drivers/spim/spim-v3.o + .group 0x0000000000000000 0xc ../pulpos/pulp/drivers/spim/spim-v3.o + .group 0x0000000000000000 0xc ../pulpos/pulp/drivers/spim/spim-v3.o + .group 0x0000000000000000 0xc ../pulpos/pulp/drivers/spim/spim-v3.o + .group 0x0000000000000000 0xc ../pulpos/pulp/drivers/spim/spim-v3.o + .group 0x0000000000000000 0xc ../pulpos/pulp/drivers/spim/spim-v3.o + .group 0x0000000000000000 0xc ../pulpos/pulp/drivers/spim/spim-v3.o + .group 0x0000000000000000 0xc ../pulpos/pulp/drivers/spim/spim-v3.o + .group 0x0000000000000000 0xc ../pulpos/pulp/drivers/spim/spim-v3.o + .group 0x0000000000000000 0xc ../pulpos/pulp/drivers/spim/spim-v3.o + .group 0x0000000000000000 0xc ../pulpos/pulp/drivers/spim/spim-v3.o + .group 0x0000000000000000 0xc ../pulpos/pulp/drivers/spim/spim-v3.o + .group 0x0000000000000000 0xc ../pulpos/pulp/drivers/spim/spim-v3.o + .group 0x0000000000000000 0xc ../pulpos/pulp/drivers/spim/spim-v3.o + .text 0x0000000000000000 0x0 ../pulpos/pulp/drivers/spim/spim-v3.o + .data 0x0000000000000000 0x0 ../pulpos/pulp/drivers/spim/spim-v3.o + .bss 0x0000000000000000 0x0 ../pulpos/pulp/drivers/spim/spim-v3.o + .text.pi_spi_get_config + 0x0000000000000000 0xa ../pulpos/pulp/drivers/spim/spim-v3.o + .text.pi_spi_ioctl + 0x0000000000000000 0x2 ../pulpos/pulp/drivers/spim/spim-v3.o + .text.pi_spi_receive_with_ucode + 0x0000000000000000 0x50 ../pulpos/pulp/drivers/spim/spim-v3.o + .text.pi_spi_send_with_ucode + 0x0000000000000000 0x50 ../pulpos/pulp/drivers/spim/spim-v3.o + .text.pi_spi_transfer_async + 0x0000000000000000 0xa ../pulpos/pulp/drivers/spim/spim-v3.o + .text.pi_spi_transfer + 0x0000000000000000 0x4a ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x0000000000000000 0x74e ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x0000000000000000 0x22 ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x0000000000000000 0x4c ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x0000000000000000 0x19 ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x0000000000000000 0x94 ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x0000000000000000 0x34 ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x0000000000000000 0x103 ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x0000000000000000 0x57 ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x0000000000000000 0x6a ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x0000000000000000 0x1df ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x0000000000000000 0x4cc ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x0000000000000000 0x333 ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x0000000000000000 0x10 ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x0000000000000000 0x16 ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x0000000000000000 0x43 ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x0000000000000000 0x34 ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x0000000000000000 0x1c ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x0000000000000000 0x52 ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x0000000000000000 0x22 ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x0000000000000000 0x10 ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x0000000000000000 0x40 ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x0000000000000000 0xd5 ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x0000000000000000 0x1c ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x0000000000000000 0x3d ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x0000000000000000 0x1f ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x0000000000000000 0x3a1 ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x0000000000000000 0x1c ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x0000000000000000 0x22 ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x0000000000000000 0x64 ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x0000000000000000 0x70 ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x0000000000000000 0x20d ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x0000000000000000 0x16 ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x0000000000000000 0x35 ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x0000000000000000 0x10 ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x0000000000000000 0x52 ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x0000000000000000 0x182 ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x0000000000000000 0x16 ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x0000000000000000 0x29 ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x0000000000000000 0x1c ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x0000000000000000 0x10 ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x0000000000000000 0x10 ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x0000000000000000 0x16 ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x0000000000000000 0x16f ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x0000000000000000 0x10 ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x0000000000000000 0x16 ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x0000000000000000 0x114 ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x0000000000000000 0x15a ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x0000000000000000 0xe0 ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x0000000000000000 0x1c ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x0000000000000000 0x26 ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x0000000000000000 0x16 ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x0000000000000000 0x4c6 ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x0000000000000000 0xb5 ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x0000000000000000 0xaa ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x0000000000000000 0x80 ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x0000000000000000 0x7e ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x0000000000000000 0x16 ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x0000000000000000 0x58 ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x0000000000000000 0x164 ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x0000000000000000 0x1c1 ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x0000000000000000 0x1be ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x0000000000000000 0x19a ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x0000000000000000 0x18a ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x0000000000000000 0x1ac ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x0000000000000000 0x4c ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x0000000000000000 0x10 ../pulpos/pulp/drivers/spim/spim-v3.o + .group 0x0000000000000000 0xc ../common_function/common_file_spi/src/common_spi.o + .group 0x0000000000000000 0xc ../common_function/common_file_spi/src/common_spi.o + .group 0x0000000000000000 0xc ../common_function/common_file_spi/src/common_spi.o + .group 0x0000000000000000 0xc ../common_function/common_file_spi/src/common_spi.o + .group 0x0000000000000000 0xc ../common_function/common_file_spi/src/common_spi.o + .group 0x0000000000000000 0xc ../common_function/common_file_spi/src/common_spi.o + .group 0x0000000000000000 0xc ../common_function/common_file_spi/src/common_spi.o + .group 0x0000000000000000 0xc ../common_function/common_file_spi/src/common_spi.o + .group 0x0000000000000000 0xc ../common_function/common_file_spi/src/common_spi.o + .group 0x0000000000000000 0xc ../common_function/common_file_spi/src/common_spi.o + .group 0x0000000000000000 0xc ../common_function/common_file_spi/src/common_spi.o + .group 0x0000000000000000 0xc ../common_function/common_file_spi/src/common_spi.o + .group 0x0000000000000000 0xc ../common_function/common_file_spi/src/common_spi.o + .group 0x0000000000000000 0xc ../common_function/common_file_spi/src/common_spi.o + .group 0x0000000000000000 0xc ../common_function/common_file_spi/src/common_spi.o + .group 0x0000000000000000 0xc ../common_function/common_file_spi/src/common_spi.o + .group 0x0000000000000000 0xc ../common_function/common_file_spi/src/common_spi.o + .group 0x0000000000000000 0xc ../common_function/common_file_spi/src/common_spi.o + .group 0x0000000000000000 0xc ../common_function/common_file_spi/src/common_spi.o + .group 0x0000000000000000 0xc ../common_function/common_file_spi/src/common_spi.o + .group 0x0000000000000000 0xc ../common_function/common_file_spi/src/common_spi.o + .group 0x0000000000000000 0xc ../common_function/common_file_spi/src/common_spi.o + .group 0x0000000000000000 0xc ../common_function/common_file_spi/src/common_spi.o + .group 0x0000000000000000 0xc ../common_function/common_file_spi/src/common_spi.o + .group 0x0000000000000000 0xc ../common_function/common_file_spi/src/common_spi.o + .group 0x0000000000000000 0xc ../common_function/common_file_spi/src/common_spi.o + .group 0x0000000000000000 0xc ../common_function/common_file_spi/src/common_spi.o + .group 0x0000000000000000 0xc ../common_function/common_file_spi/src/common_spi.o + .group 0x0000000000000000 0xc ../common_function/common_file_spi/src/common_spi.o + .group 0x0000000000000000 0xc ../common_function/common_file_spi/src/common_spi.o + .group 0x0000000000000000 0xc ../common_function/common_file_spi/src/common_spi.o + .group 0x0000000000000000 0xc ../common_function/common_file_spi/src/common_spi.o + .group 0x0000000000000000 0xc ../common_function/common_file_spi/src/common_spi.o + .group 0x0000000000000000 0xc ../common_function/common_file_spi/src/common_spi.o + .group 0x0000000000000000 0xc ../common_function/common_file_spi/src/common_spi.o + .group 0x0000000000000000 0xc ../common_function/common_file_spi/src/common_spi.o + .group 0x0000000000000000 0xc ../common_function/common_file_spi/src/common_spi.o + .group 0x0000000000000000 0xc ../common_function/common_file_spi/src/common_spi.o + .group 0x0000000000000000 0xc ../common_function/common_file_spi/src/common_spi.o + .group 0x0000000000000000 0xc ../common_function/common_file_spi/src/common_spi.o + .group 0x0000000000000000 0xc ../common_function/common_file_spi/src/common_spi.o + .group 0x0000000000000000 0xc ../common_function/common_file_spi/src/common_spi.o + .group 0x0000000000000000 0xc ../common_function/common_file_spi/src/common_spi.o + .group 0x0000000000000000 0xc ../common_function/common_file_spi/src/common_spi.o + .group 0x0000000000000000 0xc ../common_function/common_file_spi/src/common_spi.o + .group 0x0000000000000000 0xc ../common_function/common_file_spi/src/common_spi.o + .group 0x0000000000000000 0xc ../common_function/common_file_spi/src/common_spi.o + .group 0x0000000000000000 0xc ../common_function/common_file_spi/src/common_spi.o + .group 0x0000000000000000 0xc ../common_function/common_file_spi/src/common_spi.o + .group 0x0000000000000000 0xc ../common_function/common_file_spi/src/common_spi.o + .group 0x0000000000000000 0xc ../common_function/common_file_spi/src/common_spi.o + .group 0x0000000000000000 0xc ../common_function/common_file_spi/src/common_spi.o + .group 0x0000000000000000 0xc ../common_function/common_file_spi/src/common_spi.o + .group 0x0000000000000000 0xc ../common_function/common_file_spi/src/common_spi.o + .group 0x0000000000000000 0xc ../common_function/common_file_spi/src/common_spi.o + .group 0x0000000000000000 0xc ../common_function/common_file_spi/src/common_spi.o + .group 0x0000000000000000 0xc ../common_function/common_file_spi/src/common_spi.o + .group 0x0000000000000000 0xc ../common_function/common_file_spi/src/common_spi.o + .group 0x0000000000000000 0xc ../common_function/common_file_spi/src/common_spi.o + .group 0x0000000000000000 0xc ../common_function/common_file_spi/src/common_spi.o + .group 0x0000000000000000 0xc ../common_function/common_file_spi/src/common_spi.o + .group 0x0000000000000000 0xc ../common_function/common_file_spi/src/common_spi.o + .group 0x0000000000000000 0xc ../common_function/common_file_spi/src/common_spi.o + .group 0x0000000000000000 0xc ../common_function/common_file_spi/src/common_spi.o + .group 0x0000000000000000 0xc ../common_function/common_file_spi/src/common_spi.o + .group 0x0000000000000000 0xc ../common_function/common_file_spi/src/common_spi.o + .group 0x0000000000000000 0xc ../common_function/common_file_spi/src/common_spi.o + .group 0x0000000000000000 0xc ../common_function/common_file_spi/src/common_spi.o + .group 0x0000000000000000 0xc ../common_function/common_file_spi/src/common_spi.o + .group 0x0000000000000000 0xc ../common_function/common_file_spi/src/common_spi.o + .group 0x0000000000000000 0xc ../common_function/common_file_spi/src/common_spi.o + .group 0x0000000000000000 0xc ../common_function/common_file_spi/src/common_spi.o + .group 0x0000000000000000 0xc ../common_function/common_file_spi/src/common_spi.o + .text 0x0000000000000000 0x0 ../common_function/common_file_spi/src/common_spi.o + .data 0x0000000000000000 0x0 ../common_function/common_file_spi/src/common_spi.o + .bss 0x0000000000000000 0x0 ../common_function/common_file_spi/src/common_spi.o + .text.__pi_spi_get_config + 0x0000000000000000 0x4 ../common_function/common_file_spi/src/common_spi.o + .debug_macro 0x0000000000000000 0x74e ../common_function/common_file_spi/src/common_spi.o + .debug_macro 0x0000000000000000 0x22 ../common_function/common_file_spi/src/common_spi.o + .debug_macro 0x0000000000000000 0x4c ../common_function/common_file_spi/src/common_spi.o + .debug_macro 0x0000000000000000 0x19 ../common_function/common_file_spi/src/common_spi.o + .debug_macro 0x0000000000000000 0x94 ../common_function/common_file_spi/src/common_spi.o + .debug_macro 0x0000000000000000 0x34 ../common_function/common_file_spi/src/common_spi.o + .debug_macro 0x0000000000000000 0x103 ../common_function/common_file_spi/src/common_spi.o + .debug_macro 0x0000000000000000 0x3a ../common_function/common_file_spi/src/common_spi.o + .debug_macro 0x0000000000000000 0x57 ../common_function/common_file_spi/src/common_spi.o + .debug_macro 0x0000000000000000 0x6a ../common_function/common_file_spi/src/common_spi.o + .debug_macro 0x0000000000000000 0x1df ../common_function/common_file_spi/src/common_spi.o + .debug_macro 0x0000000000000000 0x82 ../common_function/common_file_spi/src/common_spi.o + .debug_macro 0x0000000000000000 0x4cc ../common_function/common_file_spi/src/common_spi.o + .debug_macro 0x0000000000000000 0x104 ../common_function/common_file_spi/src/common_spi.o + .debug_macro 0x0000000000000000 0x333 ../common_function/common_file_spi/src/common_spi.o + .debug_macro 0x0000000000000000 0x10 ../common_function/common_file_spi/src/common_spi.o + .debug_macro 0x0000000000000000 0x16 ../common_function/common_file_spi/src/common_spi.o + .debug_macro 0x0000000000000000 0x43 ../common_function/common_file_spi/src/common_spi.o + .debug_macro 0x0000000000000000 0x34 ../common_function/common_file_spi/src/common_spi.o + .debug_macro 0x0000000000000000 0x1c ../common_function/common_file_spi/src/common_spi.o + .debug_macro 0x0000000000000000 0x52 ../common_function/common_file_spi/src/common_spi.o + .debug_macro 0x0000000000000000 0x22 ../common_function/common_file_spi/src/common_spi.o + .debug_macro 0x0000000000000000 0x10 ../common_function/common_file_spi/src/common_spi.o + .debug_macro 0x0000000000000000 0x40 ../common_function/common_file_spi/src/common_spi.o + .debug_macro 0x0000000000000000 0xd5 ../common_function/common_file_spi/src/common_spi.o + .debug_macro 0x0000000000000000 0x1c ../common_function/common_file_spi/src/common_spi.o + .debug_macro 0x0000000000000000 0x3d ../common_function/common_file_spi/src/common_spi.o + .debug_macro 0x0000000000000000 0x1f ../common_function/common_file_spi/src/common_spi.o + .debug_macro 0x0000000000000000 0x3a1 ../common_function/common_file_spi/src/common_spi.o + .debug_macro 0x0000000000000000 0x1c ../common_function/common_file_spi/src/common_spi.o + .debug_macro 0x0000000000000000 0x22 ../common_function/common_file_spi/src/common_spi.o + .debug_macro 0x0000000000000000 0x64 ../common_function/common_file_spi/src/common_spi.o + .debug_macro 0x0000000000000000 0x70 ../common_function/common_file_spi/src/common_spi.o + .debug_macro 0x0000000000000000 0x20d ../common_function/common_file_spi/src/common_spi.o + .debug_macro 0x0000000000000000 0x16 ../common_function/common_file_spi/src/common_spi.o + .debug_macro 0x0000000000000000 0x35 ../common_function/common_file_spi/src/common_spi.o + .debug_macro 0x0000000000000000 0x10 ../common_function/common_file_spi/src/common_spi.o + .debug_macro 0x0000000000000000 0x52 ../common_function/common_file_spi/src/common_spi.o + .debug_macro 0x0000000000000000 0x182 ../common_function/common_file_spi/src/common_spi.o + .debug_macro 0x0000000000000000 0x16 ../common_function/common_file_spi/src/common_spi.o + .debug_macro 0x0000000000000000 0x29 ../common_function/common_file_spi/src/common_spi.o + .debug_macro 0x0000000000000000 0x1c ../common_function/common_file_spi/src/common_spi.o + .debug_macro 0x0000000000000000 0x10 ../common_function/common_file_spi/src/common_spi.o + .debug_macro 0x0000000000000000 0x10 ../common_function/common_file_spi/src/common_spi.o + .debug_macro 0x0000000000000000 0x16 ../common_function/common_file_spi/src/common_spi.o + .debug_macro 0x0000000000000000 0x16f ../common_function/common_file_spi/src/common_spi.o + .debug_macro 0x0000000000000000 0x10 ../common_function/common_file_spi/src/common_spi.o + .debug_macro 0x0000000000000000 0x16 ../common_function/common_file_spi/src/common_spi.o + .debug_macro 0x0000000000000000 0x114 ../common_function/common_file_spi/src/common_spi.o + .debug_macro 0x0000000000000000 0x15a ../common_function/common_file_spi/src/common_spi.o + .debug_macro 0x0000000000000000 0xe0 ../common_function/common_file_spi/src/common_spi.o + .debug_macro 0x0000000000000000 0x1c ../common_function/common_file_spi/src/common_spi.o + .debug_macro 0x0000000000000000 0x26 ../common_function/common_file_spi/src/common_spi.o + .debug_macro 0x0000000000000000 0x16 ../common_function/common_file_spi/src/common_spi.o + .debug_macro 0x0000000000000000 0x4c6 ../common_function/common_file_spi/src/common_spi.o + .debug_macro 0x0000000000000000 0xb5 ../common_function/common_file_spi/src/common_spi.o + .debug_macro 0x0000000000000000 0xaa ../common_function/common_file_spi/src/common_spi.o + .debug_macro 0x0000000000000000 0x80 ../common_function/common_file_spi/src/common_spi.o + .debug_macro 0x0000000000000000 0x7e ../common_function/common_file_spi/src/common_spi.o + .debug_macro 0x0000000000000000 0x16 ../common_function/common_file_spi/src/common_spi.o + .debug_macro 0x0000000000000000 0x58 ../common_function/common_file_spi/src/common_spi.o + .debug_macro 0x0000000000000000 0x10 ../common_function/common_file_spi/src/common_spi.o + .debug_macro 0x0000000000000000 0x164 ../common_function/common_file_spi/src/common_spi.o + .debug_macro 0x0000000000000000 0x1c1 ../common_function/common_file_spi/src/common_spi.o + .debug_macro 0x0000000000000000 0x1be ../common_function/common_file_spi/src/common_spi.o + .debug_macro 0x0000000000000000 0x19a ../common_function/common_file_spi/src/common_spi.o + .debug_macro 0x0000000000000000 0x18a ../common_function/common_file_spi/src/common_spi.o + .debug_macro 0x0000000000000000 0x399 ../common_function/common_file_spi/src/common_spi.o + .debug_macro 0x0000000000000000 0x3d ../common_function/common_file_spi/src/common_spi.o + .debug_macro 0x0000000000000000 0x1ac ../common_function/common_file_spi/src/common_spi.o + .debug_macro 0x0000000000000000 0x4c ../common_function/common_file_spi/src/common_spi.o + .debug_macro 0x0000000000000000 0x10 ../common_function/common_file_spi/src/common_spi.o + .debug_macro 0x0000000000000000 0x10 ../common_function/common_file_spi/src/common_spi.o + .group 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .group 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .group 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .group 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .group 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .group 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .group 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .group 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .group 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .group 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .group 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .group 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .group 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .group 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .group 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .group 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .group 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .group 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .group 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .group 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .group 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .group 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .group 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .group 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .group 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .group 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .group 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .group 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .group 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .group 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .group 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .group 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .group 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .group 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .group 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .group 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .group 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .group 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .group 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .group 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .group 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .group 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .group 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .group 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .group 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .group 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .group 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .group 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .group 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .group 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .group 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .group 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .group 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .group 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .group 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .group 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .group 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .group 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .group 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .group 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .group 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .group 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .group 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .group 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .group 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .group 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .group 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .group 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .group 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .group 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .group 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .group 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .group 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .group 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .text 0x0000000000000000 0x0 drivers/abstraction_layer_spi.o + .data 0x0000000000000000 0x0 drivers/abstraction_layer_spi.o + .bss 0x0000000000000000 0x0 drivers/abstraction_layer_spi.o + .text.__pi_spim_execute_callback + 0x0000000000000000 0x2 drivers/abstraction_layer_spi.o + .text.unlikely.__pi_spi_xfer_async + 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .text.unlikely.__pi_spi_receive_async_with_ucode + 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .text.unlikely.__pi_spi_send_async_with_ucode + 0x0000000000000000 0xc drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000000000 0x74e drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000000000 0x22 drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000000000 0x4c drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000000000 0x19 drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000000000 0x94 drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000000000 0x34 drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000000000 0x103 drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000000000 0x3a drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000000000 0x57 drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000000000 0x6a drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000000000 0x1df drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000000000 0x82 drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000000000 0x4cc drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000000000 0x104 drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000000000 0x333 drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000000000 0x10 drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000000000 0x16 drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000000000 0x43 drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000000000 0x34 drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000000000 0x1c drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000000000 0x52 drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000000000 0x22 drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000000000 0x10 drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000000000 0x40 drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000000000 0xd5 drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000000000 0x1c drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000000000 0x3d drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000000000 0x1f drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000000000 0x3a1 drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000000000 0x1c drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000000000 0x22 drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000000000 0x64 drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000000000 0x70 drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000000000 0x20d drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000000000 0x16 drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000000000 0x35 drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000000000 0x10 drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000000000 0x52 drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000000000 0x182 drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000000000 0x16 drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000000000 0x29 drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000000000 0x1c drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000000000 0x10 drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000000000 0x10 drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000000000 0x16 drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000000000 0x16f drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000000000 0x10 drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000000000 0x16 drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000000000 0x114 drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000000000 0x15a drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000000000 0xe0 drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000000000 0x1c drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000000000 0x26 drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000000000 0x16 drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000000000 0x4c6 drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000000000 0xb5 drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000000000 0xaa drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000000000 0x80 drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000000000 0x7e drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000000000 0x16 drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000000000 0x58 drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000000000 0x10 drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000000000 0x164 drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000000000 0x1c1 drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000000000 0x1be drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000000000 0x19a drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000000000 0x18a drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000000000 0x399 drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000000000 0x3d drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000000000 0x1ac drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000000000 0x4c drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000000000 0x10 drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000000000 0x10 drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000000000 0x16 drivers/abstraction_layer_spi.o + .group 0x0000000000000000 0xc drivers/i2c.o + .group 0x0000000000000000 0xc drivers/i2c.o + .group 0x0000000000000000 0xc drivers/i2c.o + .group 0x0000000000000000 0xc drivers/i2c.o + .group 0x0000000000000000 0xc drivers/i2c.o + .group 0x0000000000000000 0xc drivers/i2c.o + .group 0x0000000000000000 0xc drivers/i2c.o + .group 0x0000000000000000 0xc drivers/i2c.o + .group 0x0000000000000000 0xc drivers/i2c.o + .group 0x0000000000000000 0xc drivers/i2c.o + .group 0x0000000000000000 0xc drivers/i2c.o + .group 0x0000000000000000 0xc drivers/i2c.o + .group 0x0000000000000000 0xc drivers/i2c.o + .group 0x0000000000000000 0xc drivers/i2c.o + .group 0x0000000000000000 0xc drivers/i2c.o + .group 0x0000000000000000 0xc drivers/i2c.o + .group 0x0000000000000000 0xc drivers/i2c.o + .group 0x0000000000000000 0xc drivers/i2c.o + .group 0x0000000000000000 0xc drivers/i2c.o + .group 0x0000000000000000 0xc drivers/i2c.o + .group 0x0000000000000000 0xc drivers/i2c.o + .group 0x0000000000000000 0xc drivers/i2c.o + .group 0x0000000000000000 0xc drivers/i2c.o + .group 0x0000000000000000 0xc drivers/i2c.o + .group 0x0000000000000000 0xc drivers/i2c.o + .group 0x0000000000000000 0xc drivers/i2c.o + .group 0x0000000000000000 0xc drivers/i2c.o + .group 0x0000000000000000 0xc drivers/i2c.o + .group 0x0000000000000000 0xc drivers/i2c.o + .group 0x0000000000000000 0xc drivers/i2c.o + .group 0x0000000000000000 0xc drivers/i2c.o + .group 0x0000000000000000 0xc drivers/i2c.o + .group 0x0000000000000000 0xc drivers/i2c.o + .group 0x0000000000000000 0xc drivers/i2c.o + .group 0x0000000000000000 0xc drivers/i2c.o + .group 0x0000000000000000 0xc drivers/i2c.o + .group 0x0000000000000000 0xc drivers/i2c.o + .group 0x0000000000000000 0xc drivers/i2c.o + .group 0x0000000000000000 0xc drivers/i2c.o + .group 0x0000000000000000 0xc drivers/i2c.o + .group 0x0000000000000000 0xc drivers/i2c.o + .group 0x0000000000000000 0xc drivers/i2c.o + .group 0x0000000000000000 0xc drivers/i2c.o + .group 0x0000000000000000 0xc drivers/i2c.o + .group 0x0000000000000000 0xc drivers/i2c.o + .group 0x0000000000000000 0xc drivers/i2c.o + .group 0x0000000000000000 0xc drivers/i2c.o + .group 0x0000000000000000 0xc drivers/i2c.o + .group 0x0000000000000000 0xc drivers/i2c.o + .group 0x0000000000000000 0xc drivers/i2c.o + .group 0x0000000000000000 0xc drivers/i2c.o + .group 0x0000000000000000 0xc drivers/i2c.o + .group 0x0000000000000000 0xc drivers/i2c.o + .group 0x0000000000000000 0xc drivers/i2c.o + .group 0x0000000000000000 0xc drivers/i2c.o + .group 0x0000000000000000 0xc drivers/i2c.o + .group 0x0000000000000000 0xc drivers/i2c.o + .group 0x0000000000000000 0xc drivers/i2c.o + .group 0x0000000000000000 0xc drivers/i2c.o + .group 0x0000000000000000 0xc drivers/i2c.o + .group 0x0000000000000000 0xc drivers/i2c.o + .group 0x0000000000000000 0xc drivers/i2c.o + .group 0x0000000000000000 0xc drivers/i2c.o + .group 0x0000000000000000 0xc drivers/i2c.o + .group 0x0000000000000000 0xc drivers/i2c.o + .group 0x0000000000000000 0xc drivers/i2c.o + .group 0x0000000000000000 0xc drivers/i2c.o + .group 0x0000000000000000 0xc drivers/i2c.o + .group 0x0000000000000000 0xc drivers/i2c.o + .text 0x0000000000000000 0x0 drivers/i2c.o + .data 0x0000000000000000 0x0 drivers/i2c.o + .bss 0x0000000000000000 0x0 drivers/i2c.o + .text.hal_soc_eu_set_fc_mask + 0x0000000000000000 0x28 drivers/i2c.o + .text.hal_soc_eu_clear_fc_mask + 0x0000000000000000 0x24 drivers/i2c.o + .text.__pi_i2c_rx_handler + 0x0000000000000000 0x2 drivers/i2c.o + .text.__pi_i2c_clk_div_get + 0x0000000000000000 0x3a drivers/i2c.o + .text.i2c_udma_channel_set.constprop.0 + 0x0000000000000000 0x28 drivers/i2c.o + .text.__pi_i2c_copy_exec_write + 0x0000000000000000 0xe4 drivers/i2c.o + .text.__pi_i2c_copy_exec_read + 0x0000000000000000 0xda drivers/i2c.o + .text.__pi_i2c_tx_handler + 0x0000000000000000 0xec drivers/i2c.o + .text.pi_i2c_conf_set_slave_addr + 0x0000000000000000 0xa drivers/i2c.o + .text.pi_i2c_get_request_status + 0x0000000000000000 0x4 drivers/i2c.o + .text.__pi_i2c_conf_init + 0x0000000000000000 0x22 drivers/i2c.o + .text.pi_i2c_conf_init + 0x0000000000000000 0x8 drivers/i2c.o + .text.__pi_i2c_open + 0x0000000000000000 0x17a drivers/i2c.o + .text.pi_i2c_open + 0x0000000000000000 0xe drivers/i2c.o + .text.__pi_i2c_close + 0x0000000000000000 0xe4 drivers/i2c.o + .text.pi_i2c_close + 0x0000000000000000 0x20 drivers/i2c.o + .text.__pi_i2c_ioctl + 0x0000000000000000 0x2e drivers/i2c.o + .text.pi_i2c_ioctl + 0x0000000000000000 0xe drivers/i2c.o + .text.__pi_i2c_copy + 0x0000000000000000 0x6e drivers/i2c.o + .text.pi_i2c_read_async + 0x0000000000000000 0xe drivers/i2c.o + .text.pi_i2c_read + 0x0000000000000000 0x48 drivers/i2c.o + .text.pi_i2c_write_async + 0x0000000000000000 0xe drivers/i2c.o + .text.pi_i2c_write + 0x0000000000000000 0x48 drivers/i2c.o + .text.__pi_i2c_detect + 0x0000000000000000 0xe2 drivers/i2c.o + .text.pi_i2c_detect + 0x0000000000000000 0x52 drivers/i2c.o + .sbss.g_i2c_itf_data + 0x0000000000000000 0x8 drivers/i2c.o + .debug_info 0x0000000000000000 0x2972 drivers/i2c.o + .debug_abbrev 0x0000000000000000 0x584 drivers/i2c.o + .debug_loc 0x0000000000000000 0x2127 drivers/i2c.o + .debug_aranges + 0x0000000000000000 0xe0 drivers/i2c.o + .debug_ranges 0x0000000000000000 0x4a0 drivers/i2c.o + .debug_macro 0x0000000000000000 0x40c drivers/i2c.o + .debug_macro 0x0000000000000000 0x74e drivers/i2c.o + .debug_macro 0x0000000000000000 0x22 drivers/i2c.o + .debug_macro 0x0000000000000000 0x4c drivers/i2c.o + .debug_macro 0x0000000000000000 0x19 drivers/i2c.o + .debug_macro 0x0000000000000000 0x94 drivers/i2c.o + .debug_macro 0x0000000000000000 0x34 drivers/i2c.o + .debug_macro 0x0000000000000000 0x103 drivers/i2c.o + .debug_macro 0x0000000000000000 0x3a drivers/i2c.o + .debug_macro 0x0000000000000000 0x57 drivers/i2c.o + .debug_macro 0x0000000000000000 0x6a drivers/i2c.o + .debug_macro 0x0000000000000000 0x1df drivers/i2c.o + .debug_macro 0x0000000000000000 0x82 drivers/i2c.o + .debug_macro 0x0000000000000000 0x4cc drivers/i2c.o + .debug_macro 0x0000000000000000 0x104 drivers/i2c.o + .debug_macro 0x0000000000000000 0x333 drivers/i2c.o + .debug_macro 0x0000000000000000 0x10 drivers/i2c.o + .debug_macro 0x0000000000000000 0x16 drivers/i2c.o + .debug_macro 0x0000000000000000 0x43 drivers/i2c.o + .debug_macro 0x0000000000000000 0x34 drivers/i2c.o + .debug_macro 0x0000000000000000 0x1c drivers/i2c.o + .debug_macro 0x0000000000000000 0x52 drivers/i2c.o + .debug_macro 0x0000000000000000 0x22 drivers/i2c.o + .debug_macro 0x0000000000000000 0x10 drivers/i2c.o + .debug_macro 0x0000000000000000 0x40 drivers/i2c.o + .debug_macro 0x0000000000000000 0xd5 drivers/i2c.o + .debug_macro 0x0000000000000000 0x1c drivers/i2c.o + .debug_macro 0x0000000000000000 0x3d drivers/i2c.o + .debug_macro 0x0000000000000000 0x1f drivers/i2c.o + .debug_macro 0x0000000000000000 0x19a drivers/i2c.o + .debug_macro 0x0000000000000000 0x3a1 drivers/i2c.o + .debug_macro 0x0000000000000000 0x1c drivers/i2c.o + .debug_macro 0x0000000000000000 0x22 drivers/i2c.o + .debug_macro 0x0000000000000000 0x64 drivers/i2c.o + .debug_macro 0x0000000000000000 0x70 drivers/i2c.o + .debug_macro 0x0000000000000000 0x20d drivers/i2c.o + .debug_macro 0x0000000000000000 0x1c1 drivers/i2c.o + .debug_macro 0x0000000000000000 0x16 drivers/i2c.o + .debug_macro 0x0000000000000000 0x35 drivers/i2c.o + .debug_macro 0x0000000000000000 0x10 drivers/i2c.o + .debug_macro 0x0000000000000000 0x52 drivers/i2c.o + .debug_macro 0x0000000000000000 0x182 drivers/i2c.o + .debug_macro 0x0000000000000000 0x16 drivers/i2c.o + .debug_macro 0x0000000000000000 0x29 drivers/i2c.o + .debug_macro 0x0000000000000000 0x1a6 drivers/i2c.o + .debug_macro 0x0000000000000000 0x4c drivers/i2c.o + .debug_macro 0x0000000000000000 0x10 drivers/i2c.o + .debug_macro 0x0000000000000000 0x88 drivers/i2c.o + .debug_macro 0x0000000000000000 0x4c drivers/i2c.o + .debug_macro 0x0000000000000000 0x1c drivers/i2c.o + .debug_macro 0x0000000000000000 0x10 drivers/i2c.o + .debug_macro 0x0000000000000000 0x10 drivers/i2c.o + .debug_macro 0x0000000000000000 0x16 drivers/i2c.o + .debug_macro 0x0000000000000000 0x16f drivers/i2c.o + .debug_macro 0x0000000000000000 0x10 drivers/i2c.o + .debug_macro 0x0000000000000000 0x16 drivers/i2c.o + .debug_macro 0x0000000000000000 0x114 drivers/i2c.o + .debug_macro 0x0000000000000000 0x15a drivers/i2c.o + .debug_macro 0x0000000000000000 0xe0 drivers/i2c.o + .debug_macro 0x0000000000000000 0x1c drivers/i2c.o + .debug_macro 0x0000000000000000 0x26 drivers/i2c.o + .debug_macro 0x0000000000000000 0x16 drivers/i2c.o + .debug_macro 0x0000000000000000 0x4c6 drivers/i2c.o + .debug_macro 0x0000000000000000 0xb5 drivers/i2c.o + .debug_macro 0x0000000000000000 0xaa drivers/i2c.o + .debug_macro 0x0000000000000000 0x80 drivers/i2c.o + .debug_macro 0x0000000000000000 0x7e drivers/i2c.o + .debug_macro 0x0000000000000000 0x164 drivers/i2c.o + .debug_macro 0x0000000000000000 0x1c4 drivers/i2c.o + .debug_macro 0x0000000000000000 0x40 drivers/i2c.o + .debug_line 0x0000000000000000 0x247b drivers/i2c.o + .debug_str 0x0000000000000000 0x13001 drivers/i2c.o + .comment 0x0000000000000000 0x13 drivers/i2c.o + .debug_frame 0x0000000000000000 0x2f8 drivers/i2c.o + .riscv.attributes + 0x0000000000000000 0x2f drivers/i2c.o + .group 0x0000000000000000 0xc drivers/fll.o + .group 0x0000000000000000 0xc drivers/fll.o + .group 0x0000000000000000 0xc drivers/fll.o + .group 0x0000000000000000 0xc drivers/fll.o + .group 0x0000000000000000 0xc drivers/fll.o + .group 0x0000000000000000 0xc drivers/fll.o + .group 0x0000000000000000 0xc drivers/fll.o + .group 0x0000000000000000 0xc drivers/fll.o + .group 0x0000000000000000 0xc drivers/fll.o + .group 0x0000000000000000 0xc drivers/fll.o + .group 0x0000000000000000 0xc drivers/fll.o + .group 0x0000000000000000 0xc drivers/fll.o + .group 0x0000000000000000 0xc drivers/fll.o + .group 0x0000000000000000 0xc drivers/fll.o + .group 0x0000000000000000 0xc drivers/fll.o + .group 0x0000000000000000 0xc drivers/fll.o + .group 0x0000000000000000 0xc drivers/fll.o + .group 0x0000000000000000 0xc drivers/fll.o + .group 0x0000000000000000 0xc drivers/fll.o + .group 0x0000000000000000 0xc drivers/fll.o + .group 0x0000000000000000 0xc drivers/fll.o + .group 0x0000000000000000 0xc drivers/fll.o + .group 0x0000000000000000 0xc drivers/fll.o + .group 0x0000000000000000 0xc drivers/fll.o + .group 0x0000000000000000 0xc drivers/fll.o + .group 0x0000000000000000 0xc drivers/fll.o + .group 0x0000000000000000 0xc drivers/fll.o + .group 0x0000000000000000 0xc drivers/fll.o + .group 0x0000000000000000 0xc drivers/fll.o + .group 0x0000000000000000 0xc drivers/fll.o + .group 0x0000000000000000 0xc drivers/fll.o + .group 0x0000000000000000 0xc drivers/fll.o + .text 0x0000000000000000 0x0 drivers/fll.o + .data 0x0000000000000000 0x0 drivers/fll.o + .bss 0x0000000000000000 0x0 drivers/fll.o + .text.pi_fll_deinit + 0x0000000000000000 0x14 drivers/fll.o + .text.pi_freq_set + 0x0000000000000000 0x34 drivers/fll.o + .debug_macro 0x0000000000000000 0x74e drivers/fll.o + .debug_macro 0x0000000000000000 0x19 drivers/fll.o + .debug_macro 0x0000000000000000 0x22 drivers/fll.o + .debug_macro 0x0000000000000000 0x4c drivers/fll.o + .debug_macro 0x0000000000000000 0x94 drivers/fll.o + .debug_macro 0x0000000000000000 0x34 drivers/fll.o + .debug_macro 0x0000000000000000 0x34 drivers/fll.o + .debug_macro 0x0000000000000000 0x16 drivers/fll.o + .debug_macro 0x0000000000000000 0x10e drivers/fll.o + .debug_macro 0x0000000000000000 0x8d drivers/fll.o + .debug_macro 0x0000000000000000 0x16 drivers/fll.o + .debug_macro 0x0000000000000000 0x43 drivers/fll.o + .debug_macro 0x0000000000000000 0x57 drivers/fll.o + .debug_macro 0x0000000000000000 0x34 drivers/fll.o + .debug_macro 0x0000000000000000 0x10 drivers/fll.o + .debug_macro 0x0000000000000000 0x52 drivers/fll.o + .debug_macro 0x0000000000000000 0x182 drivers/fll.o + .debug_macro 0x0000000000000000 0x333 drivers/fll.o + .debug_macro 0x0000000000000000 0x16 drivers/fll.o + .debug_macro 0x0000000000000000 0x29 drivers/fll.o + .debug_macro 0x0000000000000000 0x22 drivers/fll.o + .debug_macro 0x0000000000000000 0x64 drivers/fll.o + .debug_macro 0x0000000000000000 0x103 drivers/fll.o + .debug_macro 0x0000000000000000 0x6a drivers/fll.o + .debug_macro 0x0000000000000000 0x1df drivers/fll.o + .debug_macro 0x0000000000000000 0x3a1 drivers/fll.o + .debug_macro 0x0000000000000000 0x1bb drivers/fll.o + .debug_macro 0x0000000000000000 0x18a drivers/fll.o + .debug_macro 0x0000000000000000 0x1c drivers/fll.o + .debug_macro 0x0000000000000000 0x20d drivers/fll.o + .debug_macro 0x0000000000000000 0x1be drivers/fll.o + .group 0x0000000000000000 0xc drivers/timer_irq.o + .group 0x0000000000000000 0xc drivers/timer_irq.o + .group 0x0000000000000000 0xc drivers/timer_irq.o + .group 0x0000000000000000 0xc drivers/timer_irq.o + .group 0x0000000000000000 0xc drivers/timer_irq.o + .group 0x0000000000000000 0xc drivers/timer_irq.o + .group 0x0000000000000000 0xc drivers/timer_irq.o + .group 0x0000000000000000 0xc drivers/timer_irq.o + .group 0x0000000000000000 0xc drivers/timer_irq.o + .group 0x0000000000000000 0xc drivers/timer_irq.o + .group 0x0000000000000000 0xc drivers/timer_irq.o + .text 0x0000000000000000 0x0 drivers/timer_irq.o + .data 0x0000000000000000 0x0 drivers/timer_irq.o + .bss 0x0000000000000000 0x0 drivers/timer_irq.o + .text.timer_irq_set_timeout + 0x0000000000000000 0x14 drivers/timer_irq.o + .text.timer_irq_clock_elapsed + 0x0000000000000000 0x4 drivers/timer_irq.o + .text.timer_irq_cycle_get_32 + 0x0000000000000000 0xa drivers/timer_irq.o + .debug_macro 0x0000000000000000 0x74e drivers/timer_irq.o + .debug_macro 0x0000000000000000 0x22 drivers/timer_irq.o + .debug_macro 0x0000000000000000 0x8e drivers/timer_irq.o + .debug_macro 0x0000000000000000 0x51 drivers/timer_irq.o + .debug_macro 0x0000000000000000 0x103 drivers/timer_irq.o + .debug_macro 0x0000000000000000 0x6a drivers/timer_irq.o + .debug_macro 0x0000000000000000 0x1df drivers/timer_irq.o + .debug_macro 0x0000000000000000 0x22 drivers/timer_irq.o + .debug_macro 0x0000000000000000 0xc4 drivers/timer_irq.o + .debug_macro 0x0000000000000000 0x6a drivers/timer_irq.o + .group 0x0000000000000000 0xc drivers/irq.o + .group 0x0000000000000000 0xc drivers/irq.o + .group 0x0000000000000000 0xc drivers/irq.o + .group 0x0000000000000000 0xc drivers/irq.o + .group 0x0000000000000000 0xc drivers/irq.o + .group 0x0000000000000000 0xc drivers/irq.o + .group 0x0000000000000000 0xc drivers/irq.o + .group 0x0000000000000000 0xc drivers/irq.o + .group 0x0000000000000000 0xc drivers/irq.o + .group 0x0000000000000000 0xc drivers/irq.o + .group 0x0000000000000000 0xc drivers/irq.o + .group 0x0000000000000000 0xc drivers/irq.o + .group 0x0000000000000000 0xc drivers/irq.o + .group 0x0000000000000000 0xc drivers/irq.o + .group 0x0000000000000000 0xc drivers/irq.o + .group 0x0000000000000000 0xc drivers/irq.o + .group 0x0000000000000000 0xc drivers/irq.o + .group 0x0000000000000000 0xc drivers/irq.o + .group 0x0000000000000000 0xc drivers/irq.o + .group 0x0000000000000000 0xc drivers/irq.o + .group 0x0000000000000000 0xc drivers/irq.o + .text 0x0000000000000000 0x0 drivers/irq.o + .data 0x0000000000000000 0x0 drivers/irq.o + .bss 0x0000000000000000 0x0 drivers/irq.o + .text.irq_set_handler + 0x0000000000000000 0x10 drivers/irq.o + .text.irq_mask + 0x0000000000000000 0xc drivers/irq.o + .text.irq_disable + 0x0000000000000000 0xc drivers/irq.o + .text.irq_pend + 0x0000000000000000 0xc drivers/irq.o + .text.irq_clear + 0x0000000000000000 0xc drivers/irq.o + .text.irq_clint_global_disable + 0x0000000000000000 0x6 drivers/irq.o + .text.irq_clint_disable + 0x0000000000000000 0x6 drivers/irq.o + .text.irq_clint_enable + 0x0000000000000000 0x6 drivers/irq.o + .debug_macro 0x0000000000000000 0x74e drivers/irq.o + .debug_macro 0x0000000000000000 0x22 drivers/irq.o + .debug_macro 0x0000000000000000 0x8e drivers/irq.o + .debug_macro 0x0000000000000000 0x51 drivers/irq.o + .debug_macro 0x0000000000000000 0x103 drivers/irq.o + .debug_macro 0x0000000000000000 0x6a drivers/irq.o + .debug_macro 0x0000000000000000 0x1df drivers/irq.o + .debug_macro 0x0000000000000000 0x52 drivers/irq.o + .debug_macro 0x0000000000000000 0x19 drivers/irq.o + .debug_macro 0x0000000000000000 0x34 drivers/irq.o + .debug_macro 0x0000000000000000 0x34 drivers/irq.o + .debug_macro 0x0000000000000000 0x1c drivers/irq.o + .debug_macro 0x0000000000000000 0xc4 drivers/irq.o + .debug_macro 0x0000000000000000 0x22 drivers/irq.o + .debug_macro 0x0000000000000000 0x64 drivers/irq.o + .debug_macro 0x0000000000000000 0x3a1 drivers/irq.o + .debug_macro 0x0000000000000000 0x1bb drivers/irq.o + .debug_macro 0x0000000000000000 0x16 drivers/irq.o + .debug_macro 0x0000000000000000 0x70 drivers/irq.o + .debug_macro 0x0000000000000000 0x20d drivers/irq.o + .debug_macro 0x0000000000000000 0x1be drivers/irq.o + .group 0x0000000000000000 0xc drivers/soc_eu.o + .group 0x0000000000000000 0xc drivers/soc_eu.o + .group 0x0000000000000000 0xc drivers/soc_eu.o + .group 0x0000000000000000 0xc drivers/soc_eu.o + .group 0x0000000000000000 0xc drivers/soc_eu.o + .group 0x0000000000000000 0xc drivers/soc_eu.o + .group 0x0000000000000000 0xc drivers/soc_eu.o + .group 0x0000000000000000 0xc drivers/soc_eu.o + .group 0x0000000000000000 0xc drivers/soc_eu.o + .text 0x0000000000000000 0x0 drivers/soc_eu.o + .data 0x0000000000000000 0x0 drivers/soc_eu.o + .bss 0x0000000000000000 0x0 drivers/soc_eu.o + .text.soc_eu_mask_set + 0x0000000000000000 0xa drivers/soc_eu.o + .text.soc_eu_mask_get + 0x0000000000000000 0xa drivers/soc_eu.o + .debug_macro 0x0000000000000000 0x74e drivers/soc_eu.o + .debug_macro 0x0000000000000000 0x22 drivers/soc_eu.o + .debug_macro 0x0000000000000000 0x8e drivers/soc_eu.o + .debug_macro 0x0000000000000000 0x51 drivers/soc_eu.o + .debug_macro 0x0000000000000000 0x103 drivers/soc_eu.o + .debug_macro 0x0000000000000000 0x6a drivers/soc_eu.o + .debug_macro 0x0000000000000000 0x1df drivers/soc_eu.o + .debug_macro 0x0000000000000000 0xc4 drivers/soc_eu.o + .group 0x0000000000000000 0xc drivers/gpio.o + .group 0x0000000000000000 0xc drivers/gpio.o + .group 0x0000000000000000 0xc drivers/gpio.o + .group 0x0000000000000000 0xc drivers/gpio.o + .group 0x0000000000000000 0xc drivers/gpio.o + .group 0x0000000000000000 0xc drivers/gpio.o + .group 0x0000000000000000 0xc drivers/gpio.o + .group 0x0000000000000000 0xc drivers/gpio.o + .group 0x0000000000000000 0xc drivers/gpio.o + .group 0x0000000000000000 0xc drivers/gpio.o + .group 0x0000000000000000 0xc drivers/gpio.o + .group 0x0000000000000000 0xc drivers/gpio.o + .group 0x0000000000000000 0xc drivers/gpio.o + .group 0x0000000000000000 0xc drivers/gpio.o + .group 0x0000000000000000 0xc drivers/gpio.o + .group 0x0000000000000000 0xc drivers/gpio.o + .group 0x0000000000000000 0xc drivers/gpio.o + .group 0x0000000000000000 0xc drivers/gpio.o + .group 0x0000000000000000 0xc drivers/gpio.o + .text 0x0000000000000000 0x0 drivers/gpio.o + .data 0x0000000000000000 0x0 drivers/gpio.o + .bss 0x0000000000000000 0x0 drivers/gpio.o + .rodata.gpio_pin_conf_pad.str1.4 + 0x0000000000000000 0x5a drivers/gpio.o + .text.gpio_pin_conf_pad + 0x0000000000000000 0x58 drivers/gpio.o + .text.gpio_port_get_raw + 0x0000000000000000 0xe drivers/gpio.o + .text.gpio_port_set_masked_raw + 0x0000000000000000 0x14 drivers/gpio.o + .text.gpio_port_set_bits_raw + 0x0000000000000000 0x10 drivers/gpio.o + .text.gpio_port_clear_bits_raw + 0x0000000000000000 0x14 drivers/gpio.o + .text.gpio_port_toggle_bits + 0x0000000000000000 0x10 drivers/gpio.o + .text.gpio_pin_get_raw + 0x0000000000000000 0x3e drivers/gpio.o + .text.gpio_pin_set_raw + 0x0000000000000000 0x50 drivers/gpio.o + .rodata.gpio_pin_configure.str1.4 + 0x0000000000000000 0x31 drivers/gpio.o + .text.gpio_pin_configure + 0x0000000000000000 0xbc drivers/gpio.o + .text.gpio_pin_toggle + 0x0000000000000000 0x16 drivers/gpio.o + .rodata.__func__.0 + 0x0000000000000000 0x11 drivers/gpio.o + .rodata.__func__.1 + 0x0000000000000000 0x11 drivers/gpio.o + .rodata.__func__.2 + 0x0000000000000000 0x13 drivers/gpio.o + .rodata.__func__.3 + 0x0000000000000000 0x12 drivers/gpio.o + .debug_info 0x0000000000000000 0x8ab drivers/gpio.o + .debug_abbrev 0x0000000000000000 0x21e drivers/gpio.o + .debug_loc 0x0000000000000000 0x801 drivers/gpio.o + .debug_aranges + 0x0000000000000000 0x68 drivers/gpio.o + .debug_ranges 0x0000000000000000 0x138 drivers/gpio.o + .debug_macro 0x0000000000000000 0xfa drivers/gpio.o + .debug_macro 0x0000000000000000 0x74e drivers/gpio.o + .debug_macro 0x0000000000000000 0x22 drivers/gpio.o + .debug_macro 0x0000000000000000 0x8e drivers/gpio.o + .debug_macro 0x0000000000000000 0x51 drivers/gpio.o + .debug_macro 0x0000000000000000 0x103 drivers/gpio.o + .debug_macro 0x0000000000000000 0x6a drivers/gpio.o + .debug_macro 0x0000000000000000 0x1df drivers/gpio.o + .debug_macro 0x0000000000000000 0x52 drivers/gpio.o + .debug_macro 0x0000000000000000 0x19 drivers/gpio.o + .debug_macro 0x0000000000000000 0x34 drivers/gpio.o + .debug_macro 0x0000000000000000 0x34 drivers/gpio.o + .debug_macro 0x0000000000000000 0x1c drivers/gpio.o + .debug_macro 0x0000000000000000 0xc4 drivers/gpio.o + .debug_macro 0x0000000000000000 0x1ca drivers/gpio.o + .debug_macro 0x0000000000000000 0x34 drivers/gpio.o + .debug_macro 0x0000000000000000 0x22 drivers/gpio.o + .debug_macro 0x0000000000000000 0x64 drivers/gpio.o + .debug_macro 0x0000000000000000 0x16 drivers/gpio.o + .debug_macro 0x0000000000000000 0x3df drivers/gpio.o + .debug_line 0x0000000000000000 0x892 drivers/gpio.o + .debug_str 0x0000000000000000 0x5d0a drivers/gpio.o + .comment 0x0000000000000000 0x13 drivers/gpio.o + .debug_frame 0x0000000000000000 0xf4 drivers/gpio.o + .riscv.attributes + 0x0000000000000000 0x2b drivers/gpio.o + .group 0x0000000000000000 0xc drivers/pinmux.o + .group 0x0000000000000000 0xc drivers/pinmux.o + .group 0x0000000000000000 0xc drivers/pinmux.o + .group 0x0000000000000000 0xc drivers/pinmux.o + .group 0x0000000000000000 0xc drivers/pinmux.o + .group 0x0000000000000000 0xc drivers/pinmux.o + .group 0x0000000000000000 0xc drivers/pinmux.o + .group 0x0000000000000000 0xc drivers/pinmux.o + .group 0x0000000000000000 0xc drivers/pinmux.o + .group 0x0000000000000000 0xc drivers/pinmux.o + .group 0x0000000000000000 0xc drivers/pinmux.o + .group 0x0000000000000000 0xc drivers/pinmux.o + .group 0x0000000000000000 0xc drivers/pinmux.o + .group 0x0000000000000000 0xc drivers/pinmux.o + .group 0x0000000000000000 0xc drivers/pinmux.o + .text 0x0000000000000000 0x0 drivers/pinmux.o + .data 0x0000000000000000 0x0 drivers/pinmux.o + .bss 0x0000000000000000 0x0 drivers/pinmux.o + .rodata.pinmux_pin_set.str1.4 + 0x0000000000000000 0x5c drivers/pinmux.o + .text.pinmux_pin_set + 0x0000000000000000 0x44 drivers/pinmux.o + .text.pinmux_pin_get + 0x0000000000000000 0x46 drivers/pinmux.o + .rodata.__func__.0 + 0x0000000000000000 0xf drivers/pinmux.o + .rodata.__func__.1 + 0x0000000000000000 0xf drivers/pinmux.o + .debug_info 0x0000000000000000 0x2ac drivers/pinmux.o + .debug_abbrev 0x0000000000000000 0x182 drivers/pinmux.o + .debug_loc 0x0000000000000000 0x1fa drivers/pinmux.o + .debug_aranges + 0x0000000000000000 0x28 drivers/pinmux.o + .debug_ranges 0x0000000000000000 0x38 drivers/pinmux.o + .debug_macro 0x0000000000000000 0xc5 drivers/pinmux.o + .debug_macro 0x0000000000000000 0x74e drivers/pinmux.o + .debug_macro 0x0000000000000000 0x22 drivers/pinmux.o + .debug_macro 0x0000000000000000 0x8e drivers/pinmux.o + .debug_macro 0x0000000000000000 0x51 drivers/pinmux.o + .debug_macro 0x0000000000000000 0x103 drivers/pinmux.o + .debug_macro 0x0000000000000000 0x6a drivers/pinmux.o + .debug_macro 0x0000000000000000 0x1df drivers/pinmux.o + .debug_macro 0x0000000000000000 0x52 drivers/pinmux.o + .debug_macro 0x0000000000000000 0x19 drivers/pinmux.o + .debug_macro 0x0000000000000000 0x34 drivers/pinmux.o + .debug_macro 0x0000000000000000 0x34 drivers/pinmux.o + .debug_macro 0x0000000000000000 0x1c drivers/pinmux.o + .debug_macro 0x0000000000000000 0xc4 drivers/pinmux.o + .debug_macro 0x0000000000000000 0x1ca drivers/pinmux.o + .debug_macro 0x0000000000000000 0x34 drivers/pinmux.o + .debug_line 0x0000000000000000 0x469 drivers/pinmux.o + .debug_str 0x0000000000000000 0x4770 drivers/pinmux.o + .comment 0x0000000000000000 0x13 drivers/pinmux.o + .debug_frame 0x0000000000000000 0x48 drivers/pinmux.o + .riscv.attributes + 0x0000000000000000 0x2b drivers/pinmux.o + .group 0x0000000000000000 0xc drivers/fc_event.o + .group 0x0000000000000000 0xc drivers/fc_event.o + .group 0x0000000000000000 0xc drivers/fc_event.o + .group 0x0000000000000000 0xc drivers/fc_event.o + .group 0x0000000000000000 0xc drivers/fc_event.o + .group 0x0000000000000000 0xc drivers/fc_event.o + .group 0x0000000000000000 0xc drivers/fc_event.o + .group 0x0000000000000000 0xc drivers/fc_event.o + .group 0x0000000000000000 0xc drivers/fc_event.o + .group 0x0000000000000000 0xc drivers/fc_event.o + .group 0x0000000000000000 0xc drivers/fc_event.o + .group 0x0000000000000000 0xc drivers/fc_event.o + .group 0x0000000000000000 0xc drivers/fc_event.o + .group 0x0000000000000000 0xc drivers/fc_event.o + .group 0x0000000000000000 0xc drivers/fc_event.o + .group 0x0000000000000000 0xc drivers/fc_event.o + .group 0x0000000000000000 0xc drivers/fc_event.o + .group 0x0000000000000000 0xc drivers/fc_event.o + .group 0x0000000000000000 0xc drivers/fc_event.o + .group 0x0000000000000000 0xc drivers/fc_event.o + .group 0x0000000000000000 0xc drivers/fc_event.o + .data 0x0000000000000000 0x0 drivers/fc_event.o + .bss 0x0000000000000000 0x0 drivers/fc_event.o + .debug_macro 0x0000000000000000 0x74e drivers/fc_event.o + .debug_macro 0x0000000000000000 0x22 drivers/fc_event.o + .debug_macro 0x0000000000000000 0x8e drivers/fc_event.o + .debug_macro 0x0000000000000000 0x51 drivers/fc_event.o + .debug_macro 0x0000000000000000 0x103 drivers/fc_event.o + .debug_macro 0x0000000000000000 0x6a drivers/fc_event.o + .debug_macro 0x0000000000000000 0x1df drivers/fc_event.o + .debug_macro 0x0000000000000000 0x174 drivers/fc_event.o + .debug_macro 0x0000000000000000 0x3a1 drivers/fc_event.o + .debug_macro 0x0000000000000000 0x22 drivers/fc_event.o + .debug_macro 0x0000000000000000 0x64 drivers/fc_event.o + .debug_macro 0x0000000000000000 0x1c1 drivers/fc_event.o + .debug_macro 0x0000000000000000 0x52 drivers/fc_event.o + .debug_macro 0x0000000000000000 0x19 drivers/fc_event.o + .debug_macro 0x0000000000000000 0x34 drivers/fc_event.o + .debug_macro 0x0000000000000000 0x34 drivers/fc_event.o + .debug_macro 0x0000000000000000 0x1c drivers/fc_event.o + .debug_macro 0x0000000000000000 0x70 drivers/fc_event.o + .debug_macro 0x0000000000000000 0x20d drivers/fc_event.o + .debug_macro 0x0000000000000000 0x1be drivers/fc_event.o + .group 0x0000000000000000 0xc drivers/pmsis_task.o + .group 0x0000000000000000 0xc drivers/pmsis_task.o + .group 0x0000000000000000 0xc drivers/pmsis_task.o + .group 0x0000000000000000 0xc drivers/pmsis_task.o + .group 0x0000000000000000 0xc drivers/pmsis_task.o + .group 0x0000000000000000 0xc drivers/pmsis_task.o + .group 0x0000000000000000 0xc drivers/pmsis_task.o + .group 0x0000000000000000 0xc drivers/pmsis_task.o + .group 0x0000000000000000 0xc drivers/pmsis_task.o + .group 0x0000000000000000 0xc drivers/pmsis_task.o + .group 0x0000000000000000 0xc drivers/pmsis_task.o + .group 0x0000000000000000 0xc drivers/pmsis_task.o + .group 0x0000000000000000 0xc drivers/pmsis_task.o + .group 0x0000000000000000 0xc drivers/pmsis_task.o + .group 0x0000000000000000 0xc drivers/pmsis_task.o + .group 0x0000000000000000 0xc drivers/pmsis_task.o + .group 0x0000000000000000 0xc drivers/pmsis_task.o + .group 0x0000000000000000 0xc drivers/pmsis_task.o + .group 0x0000000000000000 0xc drivers/pmsis_task.o + .group 0x0000000000000000 0xc drivers/pmsis_task.o + .group 0x0000000000000000 0xc drivers/pmsis_task.o + .group 0x0000000000000000 0xc drivers/pmsis_task.o + .group 0x0000000000000000 0xc drivers/pmsis_task.o + .group 0x0000000000000000 0xc drivers/pmsis_task.o + .group 0x0000000000000000 0xc drivers/pmsis_task.o + .group 0x0000000000000000 0xc drivers/pmsis_task.o + .group 0x0000000000000000 0xc drivers/pmsis_task.o + .group 0x0000000000000000 0xc drivers/pmsis_task.o + .group 0x0000000000000000 0xc drivers/pmsis_task.o + .group 0x0000000000000000 0xc drivers/pmsis_task.o + .group 0x0000000000000000 0xc drivers/pmsis_task.o + .group 0x0000000000000000 0xc drivers/pmsis_task.o + .group 0x0000000000000000 0xc drivers/pmsis_task.o + .group 0x0000000000000000 0xc drivers/pmsis_task.o + .group 0x0000000000000000 0xc drivers/pmsis_task.o + .group 0x0000000000000000 0xc drivers/pmsis_task.o + .group 0x0000000000000000 0xc drivers/pmsis_task.o + .group 0x0000000000000000 0xc drivers/pmsis_task.o + .group 0x0000000000000000 0xc drivers/pmsis_task.o + .group 0x0000000000000000 0xc drivers/pmsis_task.o + .group 0x0000000000000000 0xc drivers/pmsis_task.o + .group 0x0000000000000000 0xc drivers/pmsis_task.o + .group 0x0000000000000000 0xc drivers/pmsis_task.o + .group 0x0000000000000000 0xc drivers/pmsis_task.o + .group 0x0000000000000000 0xc drivers/pmsis_task.o + .group 0x0000000000000000 0xc drivers/pmsis_task.o + .group 0x0000000000000000 0xc drivers/pmsis_task.o + .group 0x0000000000000000 0xc drivers/pmsis_task.o + .group 0x0000000000000000 0xc drivers/pmsis_task.o + .group 0x0000000000000000 0xc drivers/pmsis_task.o + .group 0x0000000000000000 0xc drivers/pmsis_task.o + .group 0x0000000000000000 0xc drivers/pmsis_task.o + .group 0x0000000000000000 0xc drivers/pmsis_task.o + .group 0x0000000000000000 0xc drivers/pmsis_task.o + .group 0x0000000000000000 0xc drivers/pmsis_task.o + .group 0x0000000000000000 0xc drivers/pmsis_task.o + .group 0x0000000000000000 0xc drivers/pmsis_task.o + .group 0x0000000000000000 0xc drivers/pmsis_task.o + .group 0x0000000000000000 0xc drivers/pmsis_task.o + .group 0x0000000000000000 0xc drivers/pmsis_task.o + .group 0x0000000000000000 0xc drivers/pmsis_task.o + .group 0x0000000000000000 0xc drivers/pmsis_task.o + .group 0x0000000000000000 0xc drivers/pmsis_task.o + .text 0x0000000000000000 0x0 drivers/pmsis_task.o + .data 0x0000000000000000 0x0 drivers/pmsis_task.o + .bss 0x0000000000000000 0x0 drivers/pmsis_task.o + .text.__pi_task_callback + 0x0000000000000000 0x1c drivers/pmsis_task.o + .text.pi_task_callback_no_mutex + 0x0000000000000000 0x1c drivers/pmsis_task.o + .text.pi_task_block_no_mutex + 0x0000000000000000 0x18 drivers/pmsis_task.o + .text.pi_cl_pi_task_wait + 0x0000000000000000 0x2 drivers/pmsis_task.o + .text.pi_cl_pi_task_notify_done + 0x0000000000000000 0x2 drivers/pmsis_task.o + .text.pi_task_wait_on_no_mutex + 0x0000000000000000 0x10 drivers/pmsis_task.o + .text.pi_task_push_delayed_us + 0x0000000000000000 0x3c drivers/pmsis_task.o + .text.__pi_task_push + 0x0000000000000000 0xa drivers/pmsis_task.o + .debug_macro 0x0000000000000000 0x74e drivers/pmsis_task.o + .debug_macro 0x0000000000000000 0x22 drivers/pmsis_task.o + .debug_macro 0x0000000000000000 0x8e drivers/pmsis_task.o + .debug_macro 0x0000000000000000 0x51 drivers/pmsis_task.o + .debug_macro 0x0000000000000000 0x103 drivers/pmsis_task.o + .debug_macro 0x0000000000000000 0x6a drivers/pmsis_task.o + .debug_macro 0x0000000000000000 0x1df drivers/pmsis_task.o + .debug_macro 0x0000000000000000 0x22 drivers/pmsis_task.o + .debug_macro 0x0000000000000000 0x64 drivers/pmsis_task.o + .debug_macro 0x0000000000000000 0x3a1 drivers/pmsis_task.o + .debug_macro 0x0000000000000000 0x1bb drivers/pmsis_task.o + .debug_macro 0x0000000000000000 0x52 drivers/pmsis_task.o + .debug_macro 0x0000000000000000 0x19 drivers/pmsis_task.o + .debug_macro 0x0000000000000000 0x34 drivers/pmsis_task.o + .debug_macro 0x0000000000000000 0x34 drivers/pmsis_task.o + .debug_macro 0x0000000000000000 0x1c drivers/pmsis_task.o + .debug_macro 0x0000000000000000 0x70 drivers/pmsis_task.o + .debug_macro 0x0000000000000000 0x20d drivers/pmsis_task.o + .debug_macro 0x0000000000000000 0x1be drivers/pmsis_task.o + .debug_macro 0x0000000000000000 0x10 drivers/pmsis_task.o + .debug_macro 0x0000000000000000 0x82 drivers/pmsis_task.o + .debug_macro 0x0000000000000000 0x4cc drivers/pmsis_task.o + .debug_macro 0x0000000000000000 0x104 drivers/pmsis_task.o + .debug_macro 0x0000000000000000 0x333 drivers/pmsis_task.o + .debug_macro 0x0000000000000000 0x10 drivers/pmsis_task.o + .debug_macro 0x0000000000000000 0x16 drivers/pmsis_task.o + .debug_macro 0x0000000000000000 0x43 drivers/pmsis_task.o + .debug_macro 0x0000000000000000 0x34 drivers/pmsis_task.o + .debug_macro 0x0000000000000000 0x1c drivers/pmsis_task.o + .debug_macro 0x0000000000000000 0x52 drivers/pmsis_task.o + .debug_macro 0x0000000000000000 0x22 drivers/pmsis_task.o + .debug_macro 0x0000000000000000 0x10 drivers/pmsis_task.o + .debug_macro 0x0000000000000000 0x40 drivers/pmsis_task.o + .debug_macro 0x0000000000000000 0xd5 drivers/pmsis_task.o + .debug_macro 0x0000000000000000 0x1c drivers/pmsis_task.o + .debug_macro 0x0000000000000000 0x3d drivers/pmsis_task.o + .debug_macro 0x0000000000000000 0x1f drivers/pmsis_task.o + .debug_macro 0x0000000000000000 0x16 drivers/pmsis_task.o + .debug_macro 0x0000000000000000 0x35 drivers/pmsis_task.o + .debug_macro 0x0000000000000000 0x10 drivers/pmsis_task.o + .debug_macro 0x0000000000000000 0x52 drivers/pmsis_task.o + .debug_macro 0x0000000000000000 0x182 drivers/pmsis_task.o + .debug_macro 0x0000000000000000 0x16 drivers/pmsis_task.o + .debug_macro 0x0000000000000000 0x29 drivers/pmsis_task.o + .debug_macro 0x0000000000000000 0x1c drivers/pmsis_task.o + .debug_macro 0x0000000000000000 0x10 drivers/pmsis_task.o + .debug_macro 0x0000000000000000 0x10 drivers/pmsis_task.o + .debug_macro 0x0000000000000000 0x16 drivers/pmsis_task.o + .debug_macro 0x0000000000000000 0x16f drivers/pmsis_task.o + .debug_macro 0x0000000000000000 0x10 drivers/pmsis_task.o + .debug_macro 0x0000000000000000 0x16 drivers/pmsis_task.o + .debug_macro 0x0000000000000000 0x114 drivers/pmsis_task.o + .debug_macro 0x0000000000000000 0x15a drivers/pmsis_task.o + .debug_macro 0x0000000000000000 0xe0 drivers/pmsis_task.o + .debug_macro 0x0000000000000000 0x1c drivers/pmsis_task.o + .debug_macro 0x0000000000000000 0x26 drivers/pmsis_task.o + .debug_macro 0x0000000000000000 0x16 drivers/pmsis_task.o + .debug_macro 0x0000000000000000 0x4c6 drivers/pmsis_task.o + .debug_macro 0x0000000000000000 0xb5 drivers/pmsis_task.o + .debug_macro 0x0000000000000000 0xaa drivers/pmsis_task.o + .debug_macro 0x0000000000000000 0x80 drivers/pmsis_task.o + .debug_macro 0x0000000000000000 0x7e drivers/pmsis_task.o + .debug_macro 0x0000000000000000 0x40 drivers/pmsis_task.o + .group 0x0000000000000000 0xc drivers/device.o + .group 0x0000000000000000 0xc drivers/device.o + .group 0x0000000000000000 0xc drivers/device.o + .group 0x0000000000000000 0xc drivers/device.o + .group 0x0000000000000000 0xc drivers/device.o + .group 0x0000000000000000 0xc drivers/device.o + .group 0x0000000000000000 0xc drivers/device.o + .group 0x0000000000000000 0xc drivers/device.o + .group 0x0000000000000000 0xc drivers/device.o + .group 0x0000000000000000 0xc drivers/device.o + .group 0x0000000000000000 0xc drivers/device.o + .group 0x0000000000000000 0xc drivers/device.o + .group 0x0000000000000000 0xc drivers/device.o + .group 0x0000000000000000 0xc drivers/device.o + .group 0x0000000000000000 0xc drivers/device.o + .group 0x0000000000000000 0xc drivers/device.o + .group 0x0000000000000000 0xc drivers/device.o + .group 0x0000000000000000 0xc drivers/device.o + .group 0x0000000000000000 0xc drivers/device.o + .group 0x0000000000000000 0xc drivers/device.o + .group 0x0000000000000000 0xc drivers/device.o + .group 0x0000000000000000 0xc drivers/device.o + .group 0x0000000000000000 0xc drivers/device.o + .group 0x0000000000000000 0xc drivers/device.o + .group 0x0000000000000000 0xc drivers/device.o + .group 0x0000000000000000 0xc drivers/device.o + .group 0x0000000000000000 0xc drivers/device.o + .group 0x0000000000000000 0xc drivers/device.o + .text 0x0000000000000000 0x0 drivers/device.o + .data 0x0000000000000000 0x0 drivers/device.o + .bss 0x0000000000000000 0x0 drivers/device.o + .debug_macro 0x0000000000000000 0x74e drivers/device.o + .debug_macro 0x0000000000000000 0x22 drivers/device.o + .debug_macro 0x0000000000000000 0x4c drivers/device.o + .debug_macro 0x0000000000000000 0x19 drivers/device.o + .debug_macro 0x0000000000000000 0x94 drivers/device.o + .debug_macro 0x0000000000000000 0x34 drivers/device.o + .debug_macro 0x0000000000000000 0x103 drivers/device.o + .debug_macro 0x0000000000000000 0x3a drivers/device.o + .debug_macro 0x0000000000000000 0x57 drivers/device.o + .debug_macro 0x0000000000000000 0x6a drivers/device.o + .debug_macro 0x0000000000000000 0x1df drivers/device.o + .debug_macro 0x0000000000000000 0x82 drivers/device.o + .debug_macro 0x0000000000000000 0x4cc drivers/device.o + .debug_macro 0x0000000000000000 0x104 drivers/device.o + .debug_macro 0x0000000000000000 0x333 drivers/device.o + .debug_macro 0x0000000000000000 0x10 drivers/device.o + .debug_macro 0x0000000000000000 0x16 drivers/device.o + .debug_macro 0x0000000000000000 0x43 drivers/device.o + .debug_macro 0x0000000000000000 0x34 drivers/device.o + .debug_macro 0x0000000000000000 0x1c drivers/device.o + .debug_macro 0x0000000000000000 0x52 drivers/device.o + .debug_macro 0x0000000000000000 0x22 drivers/device.o + .debug_macro 0x0000000000000000 0x10 drivers/device.o + .debug_macro 0x0000000000000000 0x40 drivers/device.o + .debug_macro 0x0000000000000000 0xd5 drivers/device.o + .debug_macro 0x0000000000000000 0x1c drivers/device.o + .debug_macro 0x0000000000000000 0x3d drivers/device.o + .debug_macro 0x0000000000000000 0x1f drivers/device.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .group 0x0000000000000000 0xc test_spi_async.o + .text 0x0000000000000000 0x0 test_spi_async.o + .data 0x0000000000000000 0x0 test_spi_async.o + .bss 0x0000000000000000 0x0 test_spi_async.o + .bss.cmd_buffer + 0x0000000000000000 0x20 test_spi_async.o + .bss.rx_cmd_buffer + 0x0000000000000000 0x20 test_spi_async.o + .debug_macro 0x0000000000000000 0x74e test_spi_async.o + .debug_macro 0x0000000000000000 0x174 test_spi_async.o + .debug_macro 0x0000000000000000 0x22 test_spi_async.o + .debug_macro 0x0000000000000000 0x8e test_spi_async.o + .debug_macro 0x0000000000000000 0x51 test_spi_async.o + .debug_macro 0x0000000000000000 0x103 test_spi_async.o + .debug_macro 0x0000000000000000 0x6a test_spi_async.o + .debug_macro 0x0000000000000000 0x1df test_spi_async.o + .debug_macro 0x0000000000000000 0x10 test_spi_async.o + .debug_macro 0x0000000000000000 0x52 test_spi_async.o + .debug_macro 0x0000000000000000 0x19 test_spi_async.o + .debug_macro 0x0000000000000000 0x34 test_spi_async.o + .debug_macro 0x0000000000000000 0x34 test_spi_async.o + .debug_macro 0x0000000000000000 0x1c test_spi_async.o + .debug_macro 0x0000000000000000 0x114 test_spi_async.o + .debug_macro 0x0000000000000000 0x15a test_spi_async.o + .debug_macro 0x0000000000000000 0xe0 test_spi_async.o + .debug_macro 0x0000000000000000 0x1c test_spi_async.o + .debug_macro 0x0000000000000000 0x26 test_spi_async.o + .debug_macro 0x0000000000000000 0x16 test_spi_async.o + .debug_macro 0x0000000000000000 0x43 test_spi_async.o + .debug_macro 0x0000000000000000 0x34 test_spi_async.o + .debug_macro 0x0000000000000000 0x10 test_spi_async.o + .debug_macro 0x0000000000000000 0x52 test_spi_async.o + .debug_macro 0x0000000000000000 0x182 test_spi_async.o + .debug_macro 0x0000000000000000 0x10 test_spi_async.o + .debug_macro 0x0000000000000000 0x35 test_spi_async.o + .debug_macro 0x0000000000000000 0x4c6 test_spi_async.o + .debug_macro 0x0000000000000000 0xb5 test_spi_async.o + .debug_macro 0x0000000000000000 0xaa test_spi_async.o + .debug_macro 0x0000000000000000 0x1c test_spi_async.o + .debug_macro 0x0000000000000000 0x333 test_spi_async.o + .debug_macro 0x0000000000000000 0x10 test_spi_async.o + .debug_macro 0x0000000000000000 0x10 test_spi_async.o + .debug_macro 0x0000000000000000 0x1c test_spi_async.o + .debug_macro 0x0000000000000000 0x52 test_spi_async.o + .debug_macro 0x0000000000000000 0x22 test_spi_async.o + .debug_macro 0x0000000000000000 0x10 test_spi_async.o + .debug_macro 0x0000000000000000 0x40 test_spi_async.o + .debug_macro 0x0000000000000000 0xd5 test_spi_async.o + .debug_macro 0x0000000000000000 0x1c test_spi_async.o + .debug_macro 0x0000000000000000 0x3d test_spi_async.o + .debug_macro 0x0000000000000000 0x16 test_spi_async.o + .debug_macro 0x0000000000000000 0x16f test_spi_async.o + .debug_macro 0x0000000000000000 0x16 test_spi_async.o + .debug_macro 0x0000000000000000 0x16 test_spi_async.o + .debug_macro 0x0000000000000000 0x29 test_spi_async.o + .debug_macro 0x0000000000000000 0x16 test_spi_async.o + .debug_macro 0x0000000000000000 0x16 test_spi_async.o + .debug_macro 0x0000000000000000 0x10 test_spi_async.o + .debug_macro 0x0000000000000000 0x4cc test_spi_async.o + .debug_macro 0x0000000000000000 0x3a1 test_spi_async.o + .debug_macro 0x0000000000000000 0x22 test_spi_async.o + .debug_macro 0x0000000000000000 0x64 test_spi_async.o + .debug_macro 0x0000000000000000 0x70 test_spi_async.o + .debug_macro 0x0000000000000000 0x20d test_spi_async.o + .debug_macro 0x0000000000000000 0x80 test_spi_async.o + .debug_macro 0x0000000000000000 0x7e test_spi_async.o + .debug_macro 0x0000000000000000 0x10 test_spi_async.o + .debug_macro 0x0000000000000000 0x1c1 test_spi_async.o + .debug_macro 0x0000000000000000 0x18a test_spi_async.o + .debug_macro 0x0000000000000000 0x1be test_spi_async.o + .debug_macro 0x0000000000000000 0xc4 test_spi_async.o + .debug_macro 0x0000000000000000 0x1ca test_spi_async.o + .debug_macro 0x0000000000000000 0x34 test_spi_async.o + .debug_macro 0x0000000000000000 0x3df test_spi_async.o + .debug_macro 0x0000000000000000 0x3d test_spi_async.o + .debug_macro 0x0000000000000000 0x164 test_spi_async.o + .debug_macro 0x0000000000000000 0x19a test_spi_async.o + .debug_macro 0x0000000000000000 0x399 test_spi_async.o + .debug_macro 0x0000000000000000 0x1ac test_spi_async.o + .debug_macro 0x0000000000000000 0x4c test_spi_async.o + .debug_macro 0x0000000000000000 0x10 test_spi_async.o + .debug_macro 0x0000000000000000 0x10 test_spi_async.o + .debug_macro 0x0000000000000000 0x16 test_spi_async.o + .text 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-abort.o) + .data 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-abort.o) + .bss 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-abort.o) + .text 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-assert.o) + .data 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-assert.o) + .bss 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-assert.o) + .text.__assert + 0x0000000000000000 0x10 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-assert.o) + .text 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-atexit.o) + .data 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-atexit.o) + .bss 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-atexit.o) + .text 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-exit.o) + .data 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-exit.o) + .bss 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-exit.o) + .text 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-fini.o) + .data 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-fini.o) + .bss 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-fini.o) + .text 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-fprintf.o) + .data 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-fprintf.o) + .bss 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-fprintf.o) + .text._fprintf_r + 0x0000000000000000 0x20 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-fprintf.o) + .text 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-impure.o) + .data 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-impure.o) + .bss 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-impure.o) + .text 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-init.o) + .data 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-init.o) + .bss 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-init.o) + .text 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-malloc.o) + .data 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-malloc.o) + .bss 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-malloc.o) + .data 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-memcpy-asm.o) + .bss 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-memcpy-asm.o) + .data 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-memset.o) + .bss 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-memset.o) + .text 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-nano-freer.o) + .data 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-nano-freer.o) + .bss 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-nano-freer.o) + .text 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-nano-mallocr.o) + .data 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-nano-mallocr.o) + .bss 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-nano-mallocr.o) + .text 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-nano-vfprintf.o) + .data 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-nano-vfprintf.o) + .bss 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-nano-vfprintf.o) + .text.__sprint_r + 0x0000000000000000 0x2c /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-nano-vfprintf.o) + .text.vfprintf + 0x0000000000000000 0x16 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-nano-vfprintf.o) + .text 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-printf.o) + .data 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-printf.o) + .bss 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-printf.o) + .text._printf_r + 0x0000000000000000 0x42 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-printf.o) + .text 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-puts.o) + .data 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-puts.o) + .bss 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-puts.o) + .text 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-reent.o) + .data 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-reent.o) + .bss 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-reent.o) + .text 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-sbrkr.o) + .data 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-sbrkr.o) + .bss 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-sbrkr.o) + .text 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-signal.o) + .data 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-signal.o) + .bss 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-signal.o) + .text._init_signal_r + 0x0000000000000000 0x3e /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-signal.o) + .text._signal_r + 0x0000000000000000 0x46 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-signal.o) + .text.__sigtramp_r + 0x0000000000000000 0x5a /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-signal.o) + .text.signal 0x0000000000000000 0x14 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-signal.o) + .text._init_signal + 0x0000000000000000 0x10 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-signal.o) + .text.__sigtramp + 0x0000000000000000 0x12 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-signal.o) + .text 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-signalr.o) + .data 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-signalr.o) + .bss 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-signalr.o) + .text 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-strlen.o) + .data 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-strlen.o) + .bss 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-strlen.o) + .text.strlen 0x0000000000000000 0x12 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-strlen.o) + .comment 0x0000000000000000 0x13 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-strlen.o) + .riscv.attributes + 0x0000000000000000 0x2b /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-strlen.o) + .text 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-wbuf.o) + .data 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-wbuf.o) + .bss 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-wbuf.o) + .text.__swbuf 0x0000000000000000 0x14 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-wbuf.o) + .text 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-wsetup.o) + .data 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-wsetup.o) + .bss 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-wsetup.o) + .text 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-__atexit.o) + .data 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-__atexit.o) + .bss 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-__atexit.o) + .sdata.__atexit_dummy + 0x0000000000000000 0x4 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-__atexit.o) + .text 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-__call_atexit.o) + .data 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-__call_atexit.o) + .bss 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-__call_atexit.o) + .text 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-fflush.o) + .data 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-fflush.o) + .bss 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-fflush.o) + .text.fflush 0x0000000000000000 0x2c /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-fflush.o) + .text 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-findfp.o) + .data 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-findfp.o) + .bss 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-findfp.o) + .text.__fp_lock + 0x0000000000000000 0x4 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-findfp.o) + .text.__fp_unlock + 0x0000000000000000 0x4 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-findfp.o) + .text._cleanup + 0x0000000000000000 0x10 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-findfp.o) + .text.__sfp_lock_acquire + 0x0000000000000000 0x2 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-findfp.o) + .text.__sfp_lock_release + 0x0000000000000000 0x2 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-findfp.o) + .text.__sinit_lock_acquire + 0x0000000000000000 0x2 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-findfp.o) + .text.__sinit_lock_release + 0x0000000000000000 0x2 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-findfp.o) + .text.__fp_lock_all + 0x0000000000000000 0x18 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-findfp.o) + .text.__fp_unlock_all + 0x0000000000000000 0x18 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-findfp.o) + .text 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-fvwrite.o) + .data 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-fvwrite.o) + .bss 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-fvwrite.o) + .text.__sfvwrite_r + 0x0000000000000000 0x314 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-fvwrite.o) + .comment 0x0000000000000000 0x13 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-fvwrite.o) + .riscv.attributes + 0x0000000000000000 0x2b /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-fvwrite.o) + .text 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-fwalk.o) + .data 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-fwalk.o) + .bss 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-fwalk.o) + .text._fwalk 0x0000000000000000 0x62 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-fwalk.o) + .text 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-makebuf.o) + .data 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-makebuf.o) + .bss 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-makebuf.o) + .text 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-memchr.o) + .data 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-memchr.o) + .bss 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-memchr.o) + .text 0x0000000000000000 0x26 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-memmove.o) + .data 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-memmove.o) + .bss 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-memmove.o) + .riscv.attributes + 0x0000000000000000 0x29 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-memmove.o) + .text 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-nano-reallocr.o) + .data 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-nano-reallocr.o) + .bss 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-nano-reallocr.o) + .text._realloc_r + 0x0000000000000000 0x7e /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-nano-reallocr.o) + .comment 0x0000000000000000 0x13 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-nano-reallocr.o) + .riscv.attributes + 0x0000000000000000 0x2b /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-nano-reallocr.o) + .text 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-nano-vfprintf_i.o) + .data 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-nano-vfprintf_i.o) + .bss 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-nano-vfprintf_i.o) + .text 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-stdio.o) + .data 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-stdio.o) + .bss 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-stdio.o) + .text.__seofread + 0x0000000000000000 0x4 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-stdio.o) + .text 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-writer.o) + .data 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-writer.o) + .bss 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-writer.o) + .text 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-closer.o) + .data 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-closer.o) + .bss 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-closer.o) + .text 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-fstatr.o) + .data 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-fstatr.o) + .bss 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-fstatr.o) + .text 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-isattyr.o) + .data 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-isattyr.o) + .bss 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-isattyr.o) + .text 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-lseekr.o) + .data 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-lseekr.o) + .bss 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-lseekr.o) + .text 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-nano-msizer.o) + .data 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-nano-msizer.o) + .bss 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-nano-msizer.o) + .text._malloc_usable_size_r + 0x0000000000000000 0x14 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-nano-msizer.o) + .comment 0x0000000000000000 0x13 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-nano-msizer.o) + .riscv.attributes + 0x0000000000000000 0x2b /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-nano-msizer.o) + .text 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-readr.o) + .data 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-readr.o) + .bss 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-readr.o) + .data 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/rv32imac/ilp32/libgcc.a(_clzsi2.o) + .bss 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/rv32imac/ilp32/libgcc.a(_clzsi2.o) + .text 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/rv32imac/ilp32/libgcc.a(_clz.o) + .data 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/rv32imac/ilp32/libgcc.a(_clz.o) + .bss 0x0000000000000000 0x0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/rv32imac/ilp32/libgcc.a(_clz.o) + +Configurazione della memoria + +Nome Origine Lunghezza Attributi +L2 0x000000001c000004 0x000000000007fffc +L2_aliased 0x0000000000000004 0x0000000000003ffc +L1 0x0000000010000004 0x000000000000fffc +L1_aliased 0x0000000000000004 0x000000000000fffc +*default* 0x0000000000000000 0xffffffffffffffff + +Script del linker e mappa della memoria + +LOAD kernel/event_groups.o +LOAD kernel/list.o +LOAD kernel/queue.o +LOAD kernel/stream_buffer.o +LOAD kernel/tasks.o +LOAD kernel/timers.o +LOAD kernel/portable/GCC/RISC-V/port.o +LOAD kernel/portable/GCC/RISC-V/portASM.o +LOAD kernel/portable/MemMang/heap_3.o +LOAD libc/syscalls.o +LOAD libc/pulp_malloc.o +LOAD target/pulp/crt0.o +LOAD target/pulp/system.o +LOAD target/pulp/vectors.o +LOAD drivers/uart.o +LOAD ../pulpos/pulp/drivers/spim/spim-v3.o +LOAD ../common_function/common_file_spi/src/common_spi.o +LOAD drivers/abstraction_layer_spi.o +LOAD drivers/i2c.o +LOAD drivers/fll.o +LOAD drivers/timer_irq.o +LOAD drivers/irq.o +LOAD drivers/soc_eu.o +LOAD drivers/gpio.o +LOAD drivers/pinmux.o +LOAD drivers/fc_event.o +LOAD drivers/pmsis_task.o +LOAD drivers/device.o +LOAD test_spi_async.o +LOAD /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a +LOAD /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libm_nano.a +LOAD /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/rv32imac/ilp32/libgcc.a + 0x000000001c000880 PROVIDE (__boot_address = 0x1c000880) + 0x0000000000000800 __stack_size = DEFINED (__stack_size)?__stack_size:0x800 + [!provide] PROVIDE (__stack_size = __stack_size) + [0x0000000000000000] __heap_size = DEFINED (__heap_size)?__heap_size:0x400 + [!provide] PROVIDE (__heap_size = __heap_size) + +.data_tiny_fc 0x0000000000000004 0xc indirizzo di caricamento 0x000000001c000004 + 0x0000000000000010 . = ALIGN (0x10) + *fill* 0x0000000000000004 0xc + *(.data_tiny_fc) + *(.data_tiny_fc.*) + 0x0000000000000010 . = ALIGN (0x10) + 0x0000000000000010 __l1FcShared_start = . + *(.l1FcTiny) + *(.l1FcTiny.*) + 0x0000000000000010 __l1FcShared_end = . + 0x0000000000000000 __l1FcShared_size = (__l1FcShared_end - __l1FcShared_start) + +.init + *(.init) + +.vectors 0x000000001c000800 0x80 + 0x000000001c000800 __irq_vector_base = . + 0x000000001c000800 __vector_start = . + *(.vectors) + .vectors 0x000000001c000800 0x80 target/pulp/vectors.o + +.text 0x000000001c000880 0x4580 + 0x000000001c000880 _stext = . + *(.text.start) + .text.start 0x000000001c000880 0x60 target/pulp/crt0.o + 0x000000001c000880 _start + 0x000000001c0008de _init + 0x000000001c0008de _fini + *(.text) + *fill* 0x000000001c0008e0 0x20 + .text 0x000000001c000900 0x542 kernel/portable/GCC/RISC-V/portASM.o + 0x000000001c000900 freertos_risc_v_trap_handler + 0x000000001c000b00 freertos_risc_v_ctxt_handler + 0x000000001c000d00 xPortStartFirstTask + 0x000000001c000e00 pxPortInitialiseStack + .text 0x000000001c000e42 0x22 drivers/fc_event.o + 0x000000001c000e42 fc_soc_event_handler + .text 0x000000001c000e64 0x16 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-memcpy-asm.o) + 0x000000001c000e64 memcpy + .text 0x000000001c000e7a 0x10 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-memset.o) + 0x000000001c000e7a memset + .text 0x000000001c000e8a 0x3c /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/rv32imac/ilp32/libgcc.a(_clzsi2.o) + 0x000000001c000e8a __clzsi2 + *(.text.*) + .text.vListInitialise + 0x000000001c000ec6 0x14 kernel/list.o + 0x000000001c000ec6 vListInitialise + .text.vListInitialiseItem + 0x000000001c000eda 0x6 kernel/list.o + 0x000000001c000eda vListInitialiseItem + .text.vListInsertEnd + 0x000000001c000ee0 0x18 kernel/list.o + 0x000000001c000ee0 vListInsertEnd + .text.vListInsert + 0x000000001c000ef8 0x2e kernel/list.o + 0x000000001c000ef8 vListInsert + .text.uxListRemove + 0x000000001c000f26 0x20 kernel/list.o + 0x000000001c000f26 uxListRemove + .text.prvIsQueueEmpty + 0x000000001c000f46 0x1e kernel/queue.o + .text.prvCopyDataToQueue + 0x000000001c000f64 0x86 kernel/queue.o + .text.prvCopyDataFromQueue + 0x000000001c000fea 0x1e kernel/queue.o + .text.prvUnlockQueue + 0x000000001c001008 0x82 kernel/queue.o + .text.xQueueGenericReset + 0x000000001c00108a 0x8a kernel/queue.o + 0x000000001c00108a xQueueGenericReset + .text.xQueueGenericCreate + 0x000000001c001114 0x6e kernel/queue.o + 0x000000001c001114 xQueueGenericCreate + .text.xQueueCreateCountingSemaphore + 0x000000001c001182 0x56 kernel/queue.o + 0x000000001c001182 xQueueCreateCountingSemaphore + .text.xQueueGenericSend + 0x000000001c0011d8 0x17e kernel/queue.o + 0x000000001c0011d8 xQueueGenericSend + .text.xQueueGenericSendFromISR + 0x000000001c001356 0xd0 kernel/queue.o + 0x000000001c001356 xQueueGenericSendFromISR + .text.xQueueGiveFromISR + 0x000000001c001426 0xae kernel/queue.o + 0x000000001c001426 xQueueGiveFromISR + .text.xQueueReceive + 0x000000001c0014d4 0x14a kernel/queue.o + 0x000000001c0014d4 xQueueReceive + .text.xQueueSemaphoreTake + 0x000000001c00161e 0x192 kernel/queue.o + 0x000000001c00161e xQueueSemaphoreTake + .text.xQueueReceiveFromISR + 0x000000001c0017b0 0xae kernel/queue.o + 0x000000001c0017b0 xQueueReceiveFromISR + .text.vQueueAddToRegistry + 0x000000001c00185e 0x2c kernel/queue.o + 0x000000001c00185e vQueueAddToRegistry + .text.vQueueUnregisterQueue + 0x000000001c00188a 0x2e kernel/queue.o + 0x000000001c00188a vQueueUnregisterQueue + .text.vQueueDelete + 0x000000001c0018b8 0x38 kernel/queue.o + 0x000000001c0018b8 vQueueDelete + .text.vQueueWaitForMessageRestricted + 0x000000001c0018f0 0x5a kernel/queue.o + 0x000000001c0018f0 vQueueWaitForMessageRestricted + .text.prvAddCurrentTaskToDelayedList + 0x000000001c00194a 0xae kernel/tasks.o + .text.prvResetNextTaskUnblockTime + 0x000000001c0019f8 0x1e kernel/tasks.o + .text.vTaskSuspendAll + 0x000000001c001a16 0xc kernel/tasks.o + 0x000000001c001a16 vTaskSuspendAll + .text.xTaskGetTickCount + 0x000000001c001a22 0x6 kernel/tasks.o + 0x000000001c001a22 xTaskGetTickCount + .text.xTaskIncrementTick + 0x000000001c001a28 0x14e kernel/tasks.o + 0x000000001c001a28 xTaskIncrementTick + .text.vTaskSwitchContext + 0x000000001c001b76 0xd0 kernel/tasks.o + 0x000000001c001b76 vTaskSwitchContext + .text.vTaskPlaceOnEventList + 0x000000001c001c46 0x42 kernel/tasks.o + 0x000000001c001c46 vTaskPlaceOnEventList + .text.vTaskPlaceOnEventListRestricted + 0x000000001c001c88 0x4c kernel/tasks.o + 0x000000001c001c88 vTaskPlaceOnEventListRestricted + .text.xTaskRemoveFromEventList + 0x000000001c001cd4 0x9a kernel/tasks.o + 0x000000001c001cd4 xTaskRemoveFromEventList + .text.vTaskInternalSetTimeOutState + 0x000000001c001d6e 0xe kernel/tasks.o + 0x000000001c001d6e vTaskInternalSetTimeOutState + .text.vTaskMissedYield + 0x000000001c001d7c 0x8 kernel/tasks.o + 0x000000001c001d7c vTaskMissedYield + .text.xTaskGetSchedulerState + 0x000000001c001d84 0x14 kernel/tasks.o + 0x000000001c001d84 xTaskGetSchedulerState + .text.xTaskPriorityInherit + 0x000000001c001d98 0xb4 kernel/tasks.o + 0x000000001c001d98 xTaskPriorityInherit + .text.xTaskPriorityDisinherit + 0x000000001c001e4c 0xd2 kernel/tasks.o + 0x000000001c001e4c xTaskPriorityDisinherit + .text.vTaskPriorityDisinheritAfterTimeout + 0x000000001c001f1e 0xee kernel/tasks.o + 0x000000001c001f1e vTaskPriorityDisinheritAfterTimeout + .text.vTaskEnterCritical + 0x000000001c00200c 0x1a kernel/tasks.o + 0x000000001c00200c vTaskEnterCritical + .text.vTaskExitCritical + 0x000000001c002026 0x24 kernel/tasks.o + 0x000000001c002026 vTaskExitCritical + .text.xTaskCreate + 0x000000001c00204a 0x220 kernel/tasks.o + 0x000000001c00204a xTaskCreate + .text.vTaskStartScheduler + 0x000000001c00226a 0x8c kernel/tasks.o + 0x000000001c00226a vTaskStartScheduler + .text.prvIdleTask + 0x000000001c0022f6 0x56 kernel/tasks.o + .text.xTaskResumeAll + 0x000000001c00234c 0x10c kernel/tasks.o + 0x000000001c00234c xTaskResumeAll + .text.xTaskCheckForTimeOut + 0x000000001c002458 0xb2 kernel/tasks.o + 0x000000001c002458 xTaskCheckForTimeOut + .text.pvTaskIncrementMutexHeldCount + 0x000000001c00250a 0x18 kernel/tasks.o + 0x000000001c00250a pvTaskIncrementMutexHeldCount + .text.prvCheckForValidListAndQueue + 0x000000001c002522 0x5e kernel/timers.o + .text.prvInsertTimerInActiveList + 0x000000001c002580 0x40 kernel/timers.o + .text.xTimerCreateTimerTask + 0x000000001c0025c0 0x54 kernel/timers.o + 0x000000001c0025c0 xTimerCreateTimerTask + .text.xTimerGenericCommand + 0x000000001c002614 0x78 kernel/timers.o + 0x000000001c002614 xTimerGenericCommand + .text.prvSampleTimeNow + 0x000000001c00268c 0xc8 kernel/timers.o + .text.prvTimerTask + 0x000000001c002754 0x1c6 kernel/timers.o + .text.xPortStartScheduler + 0x000000001c00291a 0x50 kernel/portable/GCC/RISC-V/port.o + 0x000000001c00291a xPortStartScheduler + .text.pvPortMalloc + 0x000000001c00296a 0x28 kernel/portable/MemMang/heap_3.o + 0x000000001c00296a pvPortMalloc + .text.vPortFree + 0x000000001c002992 0x20 kernel/portable/MemMang/heap_3.o + 0x000000001c002992 vPortFree + .text._close 0x000000001c0029b2 0x4 libc/syscalls.o + 0x000000001c0029b2 _close + .text._exit 0x000000001c0029b6 0x16 libc/syscalls.o + 0x000000001c0029b6 _exit + .text._fstat 0x000000001c0029cc 0x8 libc/syscalls.o + 0x000000001c0029cc _fstat + .text._getpid 0x000000001c0029d4 0x4 libc/syscalls.o + 0x000000001c0029d4 _getpid + .text._isatty 0x000000001c0029d8 0x8 libc/syscalls.o + 0x000000001c0029d8 _isatty + .text._kill 0x000000001c0029e0 0xa libc/syscalls.o + 0x000000001c0029e0 _kill + .text._lseek 0x000000001c0029ea 0x4 libc/syscalls.o + 0x000000001c0029ea _lseek + .text._read 0x000000001c0029ee 0x4 libc/syscalls.o + 0x000000001c0029ee _read + .text._write 0x000000001c0029f2 0x4c libc/syscalls.o + 0x000000001c0029f2 _write + .text._sbrk 0x000000001c002a3e 0x28 libc/syscalls.o + 0x000000001c002a3e _sbrk + .text.__malloc_lock + 0x000000001c002a66 0x4 libc/syscalls.o + 0x000000001c002a66 __malloc_lock + .text.__malloc_unlock + 0x000000001c002a6a 0x4 libc/syscalls.o + 0x000000001c002a6a __malloc_unlock + .text.pi_l2_malloc + 0x000000001c002a6e 0x4 libc/pulp_malloc.o + 0x000000001c002a6e pi_l2_malloc + .text.timer_irq_handler + 0x000000001c002a72 0x18 target/pulp/system.o + 0x000000001c002a72 timer_irq_handler + .text.system_init + 0x000000001c002a8a 0x4a target/pulp/system.o + 0x000000001c002a8a system_init + .text.system_core_clock_update + 0x000000001c002ad4 0x1a target/pulp/system.o + 0x000000001c002ad4 system_core_clock_update + .text.vPortSetupTimerInterrupt + 0x000000001c002aee 0x18 target/pulp/system.o + 0x000000001c002aee vPortSetupTimerInterrupt + .text.vSystemIrqHandler + 0x000000001c002b06 0x10 target/pulp/system.o + 0x000000001c002b06 vSystemIrqHandler + .text.pi_spi_conf_init + 0x000000001c002b16 0x20 ../pulpos/pulp/drivers/spim/spim-v3.o + 0x000000001c002b16 pi_spi_conf_init + .text.pi_spi_open + 0x000000001c002b36 0x6 ../pulpos/pulp/drivers/spim/spim-v3.o + 0x000000001c002b36 pi_spi_open + .text.pi_spi_close + 0x000000001c002b3c 0x6 ../pulpos/pulp/drivers/spim/spim-v3.o + 0x000000001c002b3c pi_spi_close + .text.pi_spi_send_async + 0x000000001c002b42 0x4 ../pulpos/pulp/drivers/spim/spim-v3.o + 0x000000001c002b42 pi_spi_send_async + .text.pi_spi_send + 0x000000001c002b46 0x34 ../pulpos/pulp/drivers/spim/spim-v3.o + 0x000000001c002b46 pi_spi_send + .text.pi_spi_receive_async + 0x000000001c002b7a 0x4 ../pulpos/pulp/drivers/spim/spim-v3.o + 0x000000001c002b7a pi_spi_receive_async + .text.pi_spi_receive + 0x000000001c002b7e 0x34 ../pulpos/pulp/drivers/spim/spim-v3.o + 0x000000001c002b7e pi_spi_receive + .text.deactive_irq + 0x000000001c002bb2 0x6 ../common_function/common_file_spi/src/common_spi.o + 0x000000001c002bb2 deactive_irq + .text.active_irq + 0x000000001c002bb8 0x6 ../common_function/common_file_spi/src/common_spi.o + 0x000000001c002bb8 active_irq + .text.__pi_spim_drv_fifo_enqueue + 0x000000001c002bbe 0x36 ../common_function/common_file_spi/src/common_spi.o + 0x000000001c002bbe __pi_spim_drv_fifo_enqueue + .text.__pi_spim_drv_fifo_pop + 0x000000001c002bf4 0x1e ../common_function/common_file_spi/src/common_spi.o + 0x000000001c002bf4 __pi_spim_drv_fifo_pop + .text.__pi_spim_get_cs_data + 0x000000001c002c12 0x12 ../common_function/common_file_spi/src/common_spi.o + 0x000000001c002c12 __pi_spim_get_cs_data + .text.__pi_spim_cs_data_del + 0x000000001c002c24 0x1e ../common_function/common_file_spi/src/common_spi.o + 0x000000001c002c24 __pi_spim_cs_data_del + .text.__pi_spim_cs_data_add + 0x000000001c002c42 0x8 ../common_function/common_file_spi/src/common_spi.o + 0x000000001c002c42 __pi_spim_cs_data_add + .text.__pi_spi_clk_div_get + 0x000000001c002c4a 0x32 ../common_function/common_file_spi/src/common_spi.o + 0x000000001c002c4a __pi_spi_clk_div_get + .text.hal_soc_eu_clear_fc_mask + 0x000000001c002c7c 0x24 drivers/abstraction_layer_spi.o + .text.__pi_spi_receive_async + 0x000000001c002ca0 0x126 drivers/abstraction_layer_spi.o + 0x000000001c002ca0 __pi_spi_receive_async + .text.__pi_spi_send_async + 0x000000001c002dc6 0x106 drivers/abstraction_layer_spi.o + 0x000000001c002dc6 __pi_spi_send_async + .text.__pi_spi_open + 0x000000001c002ecc 0x184 drivers/abstraction_layer_spi.o + 0x000000001c002ecc __pi_spi_open + .text.__pi_spi_close + 0x000000001c003050 0x88 drivers/abstraction_layer_spi.o + 0x000000001c003050 __pi_spi_close + .text.__pi_spim_exec_next_transfer + 0x000000001c0030d8 0x2e drivers/abstraction_layer_spi.o + 0x000000001c0030d8 __pi_spim_exec_next_transfer + .text.spim_eot_handler + 0x000000001c003106 0x42 drivers/abstraction_layer_spi.o + 0x000000001c003106 spim_eot_handler + .text.spim_tx_handler + 0x000000001c003148 0x1e drivers/abstraction_layer_spi.o + 0x000000001c003148 spim_tx_handler + .text.spim_rx_handler + 0x000000001c003166 0x1e drivers/abstraction_layer_spi.o + 0x000000001c003166 spim_rx_handler + .text.vApplicationMallocFailedHook + 0x000000001c003184 0x18 drivers/abstraction_layer_spi.o + 0x000000001c003184 vApplicationMallocFailedHook + .text.vApplicationStackOverflowHook + 0x000000001c00319c 0x18 drivers/abstraction_layer_spi.o + 0x000000001c00319c vApplicationStackOverflowHook + .text.pi_fll_set_frequency + 0x000000001c0031b4 0x78 drivers/fll.o + 0x000000001c0031b4 pi_fll_set_frequency + .text.pi_fll_get_frequency + 0x000000001c00322c 0x34 drivers/fll.o + 0x000000001c00322c pi_fll_get_frequency + .text.pi_fll_init + 0x000000001c003260 0x8e drivers/fll.o + 0x000000001c003260 pi_fll_init + .text.pi_freq_get + 0x000000001c0032ee 0x20 drivers/fll.o + 0x000000001c0032ee pi_freq_get + .text.timer_irq_init + 0x000000001c00330e 0x1c drivers/timer_irq.o + 0x000000001c00330e timer_irq_init + .text.irq_enable + 0x000000001c00332a 0xc drivers/irq.o + 0x000000001c00332a irq_enable + .text.irq_clint_global_enable + 0x000000001c003336 0x6 drivers/irq.o + 0x000000001c003336 irq_clint_global_enable + .text.pulp_irq_init + 0x000000001c00333c 0xe drivers/irq.o + 0x000000001c00333c pulp_irq_init + .text.soc_eu_event_init + 0x000000001c00334a 0x38 drivers/soc_eu.o + 0x000000001c00334a soc_eu_event_init + .text.fc_event_null_event + 0x000000001c003382 0x2 drivers/fc_event.o + .text.pi_fc_event_handler_init + 0x000000001c003384 0x32 drivers/fc_event.o + 0x000000001c003384 pi_fc_event_handler_init + .text.pi_fc_event_handler_set + 0x000000001c0033b6 0xe drivers/fc_event.o + 0x000000001c0033b6 pi_fc_event_handler_set + .text.pi_fc_event_handler_clear + 0x000000001c0033c4 0x16 drivers/fc_event.o + 0x000000001c0033c4 pi_fc_event_handler_clear + .text.__os_native_api_sem_give + 0x000000001c0033da 0x32 drivers/pmsis_task.o + .text.__os_native_api_sem_take + 0x000000001c00340c 0x2e drivers/pmsis_task.o + .text.__pi_task_block + 0x000000001c00343a 0x48 drivers/pmsis_task.o + 0x000000001c00343a __pi_task_block + .text.__pi_task_destroy + 0x000000001c003482 0x34 drivers/pmsis_task.o + 0x000000001c003482 __pi_task_destroy + .text.__pi_task_wait_on + 0x000000001c0034b6 0x2a drivers/pmsis_task.o + 0x000000001c0034b6 __pi_task_wait_on + .text.pi_task_release + 0x000000001c0034e0 0x1e drivers/pmsis_task.o + 0x000000001c0034e0 pi_task_release + .text.pi_open_from_conf + 0x000000001c0034fe 0x4 drivers/device.o + 0x000000001c0034fe pi_open_from_conf + .text.test_entry + 0x000000001c003502 0x252 test_spi_async.o + .text.test_kickoff + 0x000000001c003754 0xa test_spi_async.o + .text.startup.main + 0x000000001c00375e 0x5a test_spi_async.o + 0x000000001c00375e main + .text.abort 0x000000001c0037b8 0x10 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-abort.o) + 0x000000001c0037b8 abort + .text.__assert_func + 0x000000001c0037c8 0x40 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-assert.o) + 0x000000001c0037c8 __assert_func + .text.atexit 0x000000001c003808 0xc /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-atexit.o) + 0x000000001c003808 atexit + .text.exit 0x000000001c003814 0x2c /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-exit.o) + 0x000000001c003814 exit + .text.__libc_fini_array + 0x000000001c003840 0x3a /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-fini.o) + 0x000000001c003840 __libc_fini_array + .text.fprintf 0x000000001c00387a 0x28 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-fprintf.o) + 0x000000001c00387a fprintf + 0x000000001c00387a fiprintf + .text.__libc_init_array + 0x000000001c0038a2 0x66 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-init.o) + 0x000000001c0038a2 __libc_init_array + .text.malloc 0x000000001c003908 0xc /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-malloc.o) + 0x000000001c003908 malloc + .text.free 0x000000001c003914 0xc /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-malloc.o) + 0x000000001c003914 free + .text._free_r 0x000000001c003920 0xa8 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-nano-freer.o) + 0x000000001c003920 _free_r + .text._malloc_r + 0x000000001c0039c8 0xd8 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-nano-mallocr.o) + 0x000000001c0039c8 _malloc_r + .text.__sfputc_r + 0x000000001c003aa0 0x28 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-nano-vfprintf.o) + .text.__sfputs_r + 0x000000001c003ac8 0x44 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-nano-vfprintf.o) + 0x000000001c003ac8 __sfputs_r + .text._vfprintf_r + 0x000000001c003b0c 0x2a8 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-nano-vfprintf.o) + 0x000000001c003b0c _vfiprintf_r + 0x000000001c003b0c _vfprintf_r + .text.printf 0x000000001c003db4 0x40 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-printf.o) + 0x000000001c003db4 printf + 0x000000001c003db4 iprintf + .text._puts_r 0x000000001c003df4 0xde /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-puts.o) + 0x000000001c003df4 _puts_r + .text.puts 0x000000001c003ed2 0xe /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-puts.o) + 0x000000001c003ed2 puts + .text.cleanup_glue + 0x000000001c003ee0 0x22 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-reent.o) + 0x000000001c003ee0 cleanup_glue + .text._reclaim_reent + 0x000000001c003f02 0xda /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-reent.o) + 0x000000001c003f02 _reclaim_reent + .text._sbrk_r 0x000000001c003fdc 0x2c /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-sbrkr.o) + 0x000000001c003fdc _sbrk_r + .text._raise_r + 0x000000001c004008 0x62 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-signal.o) + 0x000000001c004008 _raise_r + .text.raise 0x000000001c00406a 0xe /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-signal.o) + 0x000000001c00406a raise + .text._kill_r 0x000000001c004078 0x2e /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-signalr.o) + 0x000000001c004078 _kill_r + .text._getpid_r + 0x000000001c0040a6 0x4 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-signalr.o) + 0x000000001c0040a6 _getpid_r + .text.__swbuf_r + 0x000000001c0040aa 0xc0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-wbuf.o) + 0x000000001c0040aa __swbuf_r + .text.__swsetup_r + 0x000000001c00416a 0x10c /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-wsetup.o) + 0x000000001c00416a __swsetup_r + .text.__register_exitproc + 0x000000001c004276 0x7c /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-__atexit.o) + 0x000000001c004276 __register_exitproc + .text.__call_exitprocs + 0x000000001c0042f2 0xc8 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-__call_atexit.o) + 0x000000001c0042f2 __call_exitprocs + .text.__sflush_r + 0x000000001c0043ba 0x148 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-fflush.o) + 0x000000001c0043ba __sflush_r + .text._fflush_r + 0x000000001c004502 0x66 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-fflush.o) + 0x000000001c004502 _fflush_r + .text.std 0x000000001c004568 0x6a /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-findfp.o) + .text._cleanup_r + 0x000000001c0045d2 0xa /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-findfp.o) + 0x000000001c0045d2 _cleanup_r + .text.__sfmoreglue + 0x000000001c0045dc 0x48 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-findfp.o) + 0x000000001c0045dc __sfmoreglue + .text.__sinit 0x000000001c004624 0x70 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-findfp.o) + 0x000000001c004624 __sinit + .text.__sfp 0x000000001c004694 0xa2 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-findfp.o) + 0x000000001c004694 __sfp + .text._fwalk_reent + 0x000000001c004736 0x6a /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-fwalk.o) + 0x000000001c004736 _fwalk_reent + .text.__swhatbuf_r + 0x000000001c0047a0 0x5a /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-makebuf.o) + 0x000000001c0047a0 __swhatbuf_r + .text.__smakebuf_r + 0x000000001c0047fa 0xa0 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-makebuf.o) + 0x000000001c0047fa __smakebuf_r + .text.memchr 0x000000001c00489a 0x1a /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-memchr.o) + 0x000000001c00489a memchr + .text._printf_common + 0x000000001c0048b4 0x10c /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-nano-vfprintf_i.o) + 0x000000001c0048b4 _printf_common + .text._printf_i + 0x000000001c0049c0 0x26e /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-nano-vfprintf_i.o) + 0x000000001c0049c0 _printf_i + .text.__sread 0x000000001c004c2e 0x30 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-stdio.o) + 0x000000001c004c2e __sread + .text.__swrite + 0x000000001c004c5e 0x4e /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-stdio.o) + 0x000000001c004c5e __swrite + .text.__sseek 0x000000001c004cac 0x36 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-stdio.o) + 0x000000001c004cac __sseek + .text.__sclose + 0x000000001c004ce2 0x6 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-stdio.o) + 0x000000001c004ce2 __sclose + .text._write_r + 0x000000001c004ce8 0x30 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-writer.o) + 0x000000001c004ce8 _write_r + .text._close_r + 0x000000001c004d18 0x2c /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-closer.o) + 0x000000001c004d18 _close_r + .text._fstat_r + 0x000000001c004d44 0x2e /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-fstatr.o) + 0x000000001c004d44 _fstat_r + .text._isatty_r + 0x000000001c004d72 0x2c /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-isattyr.o) + 0x000000001c004d72 _isatty_r + .text._lseek_r + 0x000000001c004d9e 0x30 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-lseekr.o) + 0x000000001c004d9e _lseek_r + .text._read_r 0x000000001c004dce 0x30 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-readr.o) + 0x000000001c004dce _read_r + 0x000000001c004dfe _etext = . + *(.lit) + *(.shdata) + 0x000000001c004dfe _endtext = . + 0x000000001c004e00 . = ALIGN (0x4) + *fill* 0x000000001c004dfe 0x2 + +.fini + *(.fini) + 0x000000001c004e00 __l2_priv0_end = ALIGN (0x4) + +.rodata 0x000000001c008000 0xbd4 + *(.rodata .rodata.* .gnu.linkonce.r.*) + .rodata.xQueueGenericReset.str1.4 + 0x000000001c008000 0x4a kernel/queue.o + *fill* 0x000000001c00804a 0x2 + .rodata.xQueueGenericCreate.str1.4 + 0x000000001c00804c 0x22 kernel/queue.o + *fill* 0x000000001c00806e 0x2 + .rodata.xQueueCreateCountingSemaphore.str1.4 + 0x000000001c008070 0x2d kernel/queue.o + *fill* 0x000000001c00809d 0x3 + .rodata.xQueueGenericSend.str1.4 + 0x000000001c0080a0 0xfb kernel/queue.o + *fill* 0x000000001c00819b 0x1 + .rodata.xQueueGiveFromISR.str1.4 + 0x000000001c00819c 0x7d kernel/queue.o + *fill* 0x000000001c008219 0x3 + .rodata.xQueueReceive.str1.4 + 0x000000001c00821c 0x66 kernel/queue.o + *fill* 0x000000001c008282 0x2 + .rodata.xQueueSemaphoreTake.str1.4 + 0x000000001c008284 0x2d kernel/queue.o + *fill* 0x000000001c0082b1 0x3 + .rodata.xQueueReceiveFromISR.str1.4 + 0x000000001c0082b4 0x52 kernel/queue.o + *fill* 0x000000001c008306 0x2 + .rodata.__func__.10 + 0x000000001c008308 0xe kernel/queue.o + *fill* 0x000000001c008316 0x2 + .rodata.__func__.11 + 0x000000001c008318 0x12 kernel/queue.o + *fill* 0x000000001c00832a 0x2 + .rodata.__func__.12 + 0x000000001c00832c 0x19 kernel/queue.o + *fill* 0x000000001c008345 0x3 + .rodata.__func__.13 + 0x000000001c008348 0x12 kernel/queue.o + *fill* 0x000000001c00835a 0x2 + .rodata.__func__.14 + 0x000000001c00835c 0x1e kernel/queue.o + *fill* 0x000000001c00837a 0x2 + .rodata.__func__.18 + 0x000000001c00837c 0x14 kernel/queue.o + .rodata.__func__.19 + 0x000000001c008390 0x13 kernel/queue.o + *fill* 0x000000001c0083a3 0x1 + .rodata.__func__.2 + 0x000000001c0083a4 0xd kernel/queue.o + *fill* 0x000000001c0083b1 0x3 + .rodata.__func__.7 + 0x000000001c0083b4 0x15 kernel/queue.o + *fill* 0x000000001c0083c9 0x3 + .rodata.__func__.9 + 0x000000001c0083cc 0x14 kernel/queue.o + .rodata.prvTaskIsTaskSuspended.str1.4 + 0x000000001c0083e0 0x4a kernel/tasks.o + *fill* 0x000000001c00842a 0x2 + .rodata.xTaskIncrementTick.str1.4 + 0x000000001c00842c 0x76 kernel/tasks.o + *fill* 0x000000001c0084a2 0x2 + .rodata.vTaskSwitchContext.str1.4 + 0x000000001c0084a4 0x45 kernel/tasks.o + *fill* 0x000000001c0084e9 0x3 + .rodata.vTaskPlaceOnEventList.str1.4 + 0x000000001c0084ec 0xc kernel/tasks.o + .rodata.xTaskRemoveFromEventList.str1.4 + 0x000000001c0084f8 0xf kernel/tasks.o + *fill* 0x000000001c008507 0x1 + .rodata.xTaskPriorityDisinherit.str1.4 + 0x000000001c008508 0x2d kernel/tasks.o + *fill* 0x000000001c008535 0x3 + .rodata.vTaskPriorityDisinheritAfterTimeout.str1.4 + 0x000000001c008538 0x16 kernel/tasks.o + *fill* 0x000000001c00854e 0x2 + .rodata.vTaskStartScheduler.str1.4 + 0x000000001c008550 0x1a kernel/tasks.o + *fill* 0x000000001c00856a 0x2 + .rodata.xTaskResumeAll.str1.4 + 0x000000001c00856c 0x15 kernel/tasks.o + *fill* 0x000000001c008581 0x3 + .rodata.vTaskSetTimeOutState.str1.4 + 0x000000001c008584 0xa kernel/tasks.o + *fill* 0x000000001c00858e 0x2 + .rodata.xTaskCheckForTimeOut.str1.4 + 0x000000001c008590 0xe kernel/tasks.o + *fill* 0x000000001c00859e 0x2 + .rodata.__func__.11 + 0x000000001c0085a0 0x16 kernel/tasks.o + *fill* 0x000000001c0085b6 0x2 + .rodata.__func__.12 + 0x000000001c0085b8 0x13 kernel/tasks.o + *fill* 0x000000001c0085cb 0x1 + .rodata.__func__.13 + 0x000000001c0085cc 0x13 kernel/tasks.o + *fill* 0x000000001c0085df 0x1 + .rodata.__func__.18 + 0x000000001c0085e0 0xf kernel/tasks.o + *fill* 0x000000001c0085ef 0x1 + .rodata.__func__.19 + 0x000000001c0085f0 0x14 kernel/tasks.o + .rodata.__func__.3 + 0x000000001c008604 0x24 kernel/tasks.o + .rodata.__func__.4 + 0x000000001c008628 0x18 kernel/tasks.o + .rodata.__func__.5 + 0x000000001c008640 0x15 kernel/tasks.o + *fill* 0x000000001c008655 0x3 + .rodata.__func__.8 + 0x000000001c008658 0x19 kernel/tasks.o + *fill* 0x000000001c008671 0x3 + .rodata.__func__.9 + 0x000000001c008674 0x20 kernel/tasks.o + .rodata.prvCheckForValidListAndQueue.str1.4 + 0x000000001c008694 0x5 kernel/timers.o + *fill* 0x000000001c008699 0x3 + .rodata.xTimerCreateTimerTask.str1.4 + 0x000000001c00869c 0x54 kernel/timers.o + .rodata.xTimerGenericCommand.str1.4 + 0x000000001c0086f0 0x7 kernel/timers.o + *fill* 0x000000001c0086f7 0x1 + .rodata.prvSampleTimeNow.str1.4 + 0x000000001c0086f8 0x8 kernel/timers.o + .rodata.prvTimerTask.str1.4 + 0x000000001c008700 0x25 kernel/timers.o + *fill* 0x000000001c008725 0x3 + .rodata.prvTimerTask + 0x000000001c008728 0x28 kernel/timers.o + .rodata.__func__.10 + 0x000000001c008750 0x15 kernel/timers.o + *fill* 0x000000001c008765 0x3 + .rodata.__func__.12 + 0x000000001c008768 0x1b kernel/timers.o + *fill* 0x000000001c008783 0x1 + .rodata.__func__.13 + 0x000000001c008784 0x17 kernel/timers.o + *fill* 0x000000001c00879b 0x1 + .rodata.__func__.14 + 0x000000001c00879c 0x14 kernel/timers.o + .rodata.__func__.16 + 0x000000001c0087b0 0x16 kernel/timers.o + *fill* 0x000000001c0087c6 0x2 + .rodata.xPortStartScheduler.str1.4 + 0x000000001c0087c8 0x79 kernel/portable/GCC/RISC-V/port.o + *fill* 0x000000001c008841 0x3 + .rodata.__func__.0 + 0x000000001c008844 0x14 kernel/portable/GCC/RISC-V/port.o + .rodata.vApplicationMallocFailedHook.str1.4 + 0x000000001c008858 0x21 drivers/abstraction_layer_spi.o + *fill* 0x000000001c008879 0x3 + .rodata.vApplicationStackOverflowHook.str1.4 + 0x000000001c00887c 0x16 drivers/abstraction_layer_spi.o + *fill* 0x000000001c008892 0x2 + .rodata.test_entry.str1.4 + 0x000000001c008894 0xcd test_spi_async.o + *fill* 0x000000001c008961 0x3 + .rodata.main.str1.4 + 0x000000001c008964 0x3b test_spi_async.o + *fill* 0x000000001c00899f 0x1 + .rodata.__assert_func.str1.4 + 0x000000001c0089a0 0x3f /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-assert.o) + 0x43 (dimensione prima del rilassamento) + *fill* 0x000000001c0089df 0x1 + .rodata._vfprintf_r.str1.4 + 0x000000001c0089e0 0x13 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-nano-vfprintf.o) + *fill* 0x000000001c0089f3 0x1 + .rodata.__sf_fake_stderr + 0x000000001c0089f4 0x20 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-findfp.o) + 0x000000001c0089f4 __sf_fake_stderr + .rodata.__sf_fake_stdin + 0x000000001c008a14 0x20 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-findfp.o) + 0x000000001c008a14 __sf_fake_stdin + .rodata.__sf_fake_stdout + 0x000000001c008a34 0x20 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-findfp.o) + 0x000000001c008a34 __sf_fake_stdout + .rodata._printf_i.str1.4 + 0x000000001c008a54 0x25 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-nano-vfprintf_i.o) + *fill* 0x000000001c008a79 0x3 + .rodata._printf_i + 0x000000001c008a7c 0x58 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-nano-vfprintf_i.o) + .rodata 0x000000001c008ad4 0x100 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/rv32imac/ilp32/libgcc.a(_clz.o) + 0x000000001c008ad4 __clz_tab + +.srodata.xISRStackTop + 0x000000001c008bd4 0x4 + .srodata.xISRStackTop + 0x000000001c008bd4 0x4 kernel/portable/GCC/RISC-V/port.o + 0x000000001c008bd4 xISRStackTop + +.srodata._global_impure_ptr + 0x000000001c008bd8 0x4 + .srodata._global_impure_ptr + 0x000000001c008bd8 0x4 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-impure.o) + 0x000000001c008bd8 _global_impure_ptr + +.rela.dyn 0x000000001c008bdc 0x0 + .rela.text.xPortStartScheduler + 0x000000001c008bdc 0x0 kernel/list.o + .rela.srodata.xISRStackTop + 0x000000001c008bdc 0x0 kernel/list.o + .rela.text._sbrk + 0x000000001c008bdc 0x0 kernel/list.o + .rela.sdata.brk + 0x000000001c008bdc 0x0 kernel/list.o + .rela.text.start + 0x000000001c008bdc 0x0 kernel/list.o + .rela.text.__libc_fini_array + 0x000000001c008bdc 0x0 kernel/list.o + .rela.text.__libc_init_array + 0x000000001c008bdc 0x0 kernel/list.o + .rela.text._vfprintf_r + 0x000000001c008bdc 0x0 kernel/list.o + .rela.text.__register_exitproc + 0x000000001c008bdc 0x0 kernel/list.o + +.rodata1 + *(.rodata1) + +.boot + *(.boot) + *(.boot.data) + +.talias + +.eh_frame_hdr + *(.eh_frame_hdr) + *(.eh_frame_entry .eh_frame_entry.*) + +.eh_frame + *(.eh_frame) + *(.eh_frame.*) + +.gcc_except_table + *(.gcc_except_table .gcc_except_table.*) + +.gnu_extab + *(.gnu_extab*) + +.eh_frame + *(.eh_frame) + *(.eh_frame.*) + +.gnu_extab + *(.gnu_extab) + +.gcc_except_table + *(.gcc_except_table .gcc_except_table.*) + +.exception_ranges + *(.exception_ranges .exception_ranges*) + +.tdata 0x000000001c008bdc 0x0 + [!provide] PROVIDE (__tdata_start = .) + *(.tdata .tdata.* .gnu.linkonce.td.*) + +.tbss + *(.tbss .tbss.* .gnu.linkonce.tb.*) + *(.tcommon) + +.preinit_array 0x000000001c008bdc 0x0 + 0x000000001c008bdc PROVIDE (__preinit_array_start = .) + *(.preinit_array) + 0x000000001c008bdc PROVIDE (__preinit_array_end = .) + +.init_array 0x000000001c008bdc 0x0 + 0x000000001c008bdc PROVIDE (__init_array_start = .) + *(SORT_BY_INIT_PRIORITY(.init_array.*) SORT_BY_INIT_PRIORITY(.ctors.*)) + *(.init_array EXCLUDE_FILE(*crtend?.o *crtend.o *crtbegin?.o *crtbegin.o) .ctors) + 0x000000001c008bdc PROVIDE (__init_array_end = .) + +.fini_array 0x000000001c008bdc 0x0 + 0x000000001c008bdc PROVIDE (__fini_array_start = .) + *(SORT_BY_INIT_PRIORITY(.fini_array.*) SORT_BY_INIT_PRIORITY(.dtors.*)) + *(.fini_array EXCLUDE_FILE(*crtend?.o *crtend.o *crtbegin?.o *crtbegin.o) .dtors) + 0x000000001c008bdc PROVIDE (__fini_array_end = .) + +.ctors + *crtbegin.o(.ctors) + *crtbegin?.o(.ctors) + *(EXCLUDE_FILE(*crtend?.o *crtend.o) .ctors) + *(SORT_BY_NAME(.ctors.*)) + *(.ctors) + +.dtors + *crtbegin.o(.dtors) + *crtbegin?.o(.dtors) + *(EXCLUDE_FILE(*crtend?.o *crtend.o) .dtors) + *(SORT_BY_NAME(.dtors.*)) + *(.dtors) + +.gnu.offload_funcs + *(.gnu.offload_funcs) + +.gnu.offload_vars + *(.gnu.offload_vars) + +.data 0x000000001c008bdc 0x6c + 0x000000001c008bdc sdata = . + 0x000000001c008bdc _sdata = . + 0x000000001c008bdc __data_begin = . + *(.data_fc) + *(.data_fc.*) + *(.data) + *(.data.*) + .data.impure_data + 0x000000001c008bdc 0x60 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-impure.o) + 0x000000001c008c3c __sdata_begin = . + *(.sdata) + *(.sdata.*) + .sdata.brk 0x000000001c008c3c 0x4 libc/syscalls.o + .sdata.system_core_clock + 0x000000001c008c40 0x4 target/pulp/system.o + 0x000000001c008c40 system_core_clock + .sdata._impure_ptr + 0x000000001c008c44 0x4 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-impure.o) + 0x000000001c008c44 _impure_ptr + *(.sdata2.*) + *(.heapl2ram) + *(.fcTcdm) + *(.fcTcdm.*) + *(.fcTcdm_g) + *(.fcTcdm_g.*) + 0x000000001c008c48 . = ALIGN (0x4) + 0x000000001c008c48 edata = . + 0x000000001c008c48 _edata = . + +.bss 0x000000001c008c48 0x55c + 0x000000001c008c48 _bss_start = . + 0x000000001c008c48 __bss_start = . + *(.shbss) + *(.bss) + *(.bss.*) + .bss.xQueueRegistry + 0x000000001c008c48 0x40 kernel/queue.o + 0x000000001c008c48 xQueueRegistry + .bss.pxReadyTasksLists + 0x000000001c008c88 0x64 kernel/tasks.o + .bss.xDelayedTaskList1 + 0x000000001c008cec 0x14 kernel/tasks.o + .bss.xDelayedTaskList2 + 0x000000001c008d00 0x14 kernel/tasks.o + .bss.xPendingReadyList + 0x000000001c008d14 0x14 kernel/tasks.o + .bss.xSuspendedTaskList + 0x000000001c008d28 0x14 kernel/tasks.o + .bss.xTasksWaitingTermination + 0x000000001c008d3c 0x14 kernel/tasks.o + .bss.xActiveTimerList1 + 0x000000001c008d50 0x14 kernel/timers.o + .bss.xActiveTimerList2 + 0x000000001c008d64 0x14 kernel/timers.o + .bss.isr_table + 0x000000001c008d78 0x80 target/pulp/system.o + 0x000000001c008d78 isr_table + .bss.flls_frequency + 0x000000001c008df8 0xc drivers/fll.o + .bss.fc_event_handlers + 0x000000001c008e04 0x2a0 drivers/fc_event.o + .bss._global_atexit0 + 0x000000001c0090a4 0x8c /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-__atexit.o) + *(.sbss) + *(.sbss.*) + .sbss.pxCurrentTCB + 0x000000001c009130 0x4 kernel/tasks.o + 0x000000001c009130 pxCurrentTCB + .sbss.pxDelayedTaskList + 0x000000001c009134 0x4 kernel/tasks.o + .sbss.pxOverflowDelayedTaskList + 0x000000001c009138 0x4 kernel/tasks.o + .sbss.uxCurrentNumberOfTasks + 0x000000001c00913c 0x4 kernel/tasks.o + .sbss.uxDeletedTasksWaitingCleanUp + 0x000000001c009140 0x4 kernel/tasks.o + .sbss.uxSchedulerSuspended + 0x000000001c009144 0x4 kernel/tasks.o + .sbss.uxTaskNumber + 0x000000001c009148 0x4 kernel/tasks.o + .sbss.uxTopReadyPriority + 0x000000001c00914c 0x4 kernel/tasks.o + .sbss.xIdleTaskHandle + 0x000000001c009150 0x4 kernel/tasks.o + .sbss.xNextTaskUnblockTime + 0x000000001c009154 0x4 kernel/tasks.o + .sbss.xNumOfOverflows + 0x000000001c009158 0x4 kernel/tasks.o + .sbss.xPendedTicks + 0x000000001c00915c 0x4 kernel/tasks.o + .sbss.xSchedulerRunning + 0x000000001c009160 0x4 kernel/tasks.o + .sbss.xTickCount + 0x000000001c009164 0x4 kernel/tasks.o + .sbss.xYieldPending + 0x000000001c009168 0x4 kernel/tasks.o + .sbss.pxCurrentTimerList + 0x000000001c00916c 0x4 kernel/timers.o + .sbss.pxOverflowTimerList + 0x000000001c009170 0x4 kernel/timers.o + .sbss.xLastTime.15 + 0x000000001c009174 0x4 kernel/timers.o + .sbss.xTimerQueue + 0x000000001c009178 0x4 kernel/timers.o + .sbss.xTimerTaskHandle + 0x000000001c00917c 0x4 kernel/timers.o + .sbss.__g_spim_drv_data + 0x000000001c009180 0x8 drivers/abstraction_layer_spi.o + 0x000000001c009180 __g_spim_drv_data + .sbss.rx_buffer_1 + 0x000000001c009188 0x4 test_spi_async.o + 0x000000001c009188 rx_buffer_1 + .sbss.rx_buffer_2 + 0x000000001c00918c 0x4 test_spi_async.o + 0x000000001c00918c rx_buffer_2 + .sbss.tx_buffer + 0x000000001c009190 0x4 test_spi_async.o + 0x000000001c009190 tx_buffer + .sbss.__malloc_free_list + 0x000000001c009194 0x4 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-nano-mallocr.o) + 0x000000001c009194 __malloc_free_list + .sbss.__malloc_sbrk_start + 0x000000001c009198 0x4 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-nano-mallocr.o) + 0x000000001c009198 __malloc_sbrk_start + .sbss.errno 0x000000001c00919c 0x4 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-reent.o) + 0x000000001c00919c errno + .sbss._global_atexit + 0x000000001c0091a0 0x4 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-__call_atexit.o) + 0x000000001c0091a0 _global_atexit + *(COMMON) + 0x000000001c0091a4 . = ALIGN (0x4) + 0x000000001c0091a4 __bss_end = . + 0x000000001c0091a4 _bss_end = . + 0x000000001c0091a4 _end = . + 0x000000001c0093dc PROVIDE (__global_pointer$ = MIN ((__sdata_begin + 0x800), MAX ((__data_begin + 0x800), (__bss_end - 0x800)))) + +.heap 0x000000001c0091b0 0x10000 + 0x000000001c0091b0 __heap_start = . + *(.heap) + .heap 0x000000001c0091b0 0x10000 target/pulp/system.o + 0x000000001c0091b0 ucHeap + 0x000000001c0191b0 __heap_end = . + 0x0000000000000001 ASSERT (((__heap_start + __heap_size) < __heap_end), Error (Linkerscript): Heap is too large) + +.stack 0x000000001c0191b0 0x800 + 0x000000001c0191b0 stack_start = . + 0x000000001c0191b0 __stack_bottom = . + 0x000000001c0199b0 . = (. + __stack_size) + *fill* 0x000000001c0191b0 0x800 + 0x000000001c0199b0 __stack_top = . + 0x000000001c0199b0 __freertos_irq_stack_top = . + 0x000000001c0199b0 stack = . + 0x000000001c0199b0 __l2_priv1_end = ALIGN (0x4) + +.l2_data 0x000000001c0199b0 0x0 + 0x000000001c0199b0 __cluster_text_start = . + *(.cluster.text) + *(.cluster.text.*) + 0x000000001c0199b0 . = ALIGN (0x4) + 0x000000001c0199b0 __cluster_text_end = . + *(.l2_data) + *(.l2_data.*) + *(.data_fc_shared) + *(.data_fc_shared.*) + 0x000000001c0199b0 . = ALIGN (0x4) + 0x000000001c0199b0 __l1_preload_start_inL2 = . + +.data_tiny_l1 0x0000000010000004 0xc indirizzo di caricamento 0x000000001c0199b0 + 0x0000000010000010 . = ALIGN (0x10) + *fill* 0x0000000010000004 0xc + 0x0000000010000010 __l1_preload_start = . + *(.data_tiny_l1) + *(.data_tiny_l1.*) + *(.data_alias_l1) + *(.data_alias_l1.*) + *(.l1clusterTiny) + *(.l1clusterTiny.*) + 0x0000000010000010 . = ALIGN (0x10) + 0x0000000010000010 __data_tiny_l1_end = . + +.l1cluster_g 0x0000000010000010 0x10 indirizzo di caricamento 0x000000001c0199b0 + 0x0000000010000010 . = ALIGN (0x10) + 0x0000000010000010 __printf_lock_ptr_l1 = . + 0x0000000010000014 . = (__printf_lock_ptr_l1 + 0x4) + *fill* 0x0000000010000010 0x4 + *(.l1cluster_g) + *(.l1cluster_g.*) + *(.data_l1) + *(.data_l1.*) + 0x0000000010000020 . = ALIGN (0x10) + *fill* 0x0000000010000014 0xc + 0x0000000010000020 __l1_cluster_g_end = . + +.heap_l1_cluster + 0x0000000010000020 0x0 + 0x0000000010000020 . = ALIGN (0x10) + *(.heap_l1_cluster) + *(.heap_l1_cluster.*) + *(.heapsram) + *(.heapsram.*) + 0x0000000010000020 . = ALIGN (0x10) + 0x0000000010000020 __heap_l1_cluster_start = . + 0x0000000010000020 __heapsram_start = . + 0x0000000010000020 __l1_heapsram_start = . + 0x000000000000ffe0 __heapsram_size = ((ORIGIN (L1) + LENGTH (L1)) - __heapsram_start) + 0x000000000000ffe0 __l1_heapsram_size = ((ORIGIN (L1) + LENGTH (L1)) - __l1_heapsram_start) + 0x000000000000ffe0 __heap_l1_cluster_size = ((ORIGIN (L1) + LENGTH (L1)) - __heap_l1_cluster_start) + 0x000000000000001c __l1_preload_size = (SIZEOF (.data_tiny_l1) + SIZEOF (.l1cluster_g)) + +.heap_l2_shared + 0x000000001c0199cc 0x4 + 0x000000001c0199d0 . = ALIGN (0x10) + *fill* 0x000000001c0199cc 0x4 + *(.heapl2ram) + *(.heapl2ram.*) + *(.heap_l2_shared) + *(.heap_l2_shared.*) + 0x000000001c0199d0 . = ALIGN (0x10) + 0x000000001c0199d0 __heapl2ram_start = . + 0x000000001c0199d0 __heap_l2_shared_start = . + 0x0000000000066630 __heapl2ram_size = ((ORIGIN (L2) + LENGTH (L2)) - __heapl2ram_start) + 0x0000000000066630 __heap_l2_shared_size = ((ORIGIN (L2) + LENGTH (L2)) - __heap_l2_shared_start) +OUTPUT(test_flash_async elf32-littleriscv) + +.debug_info 0x0000000000000000 0xf995 + .debug_info 0x0000000000000000 0x2cc kernel/list.o + .debug_info 0x00000000000002cc 0x2053 kernel/queue.o + .debug_info 0x000000000000231f 0x3a43 kernel/tasks.o + .debug_info 0x0000000000005d62 0x1729 kernel/timers.o + .debug_info 0x000000000000748b 0x280 kernel/portable/GCC/RISC-V/port.o + .debug_info 0x000000000000770b 0x26 kernel/portable/GCC/RISC-V/portASM.o + .debug_info 0x0000000000007731 0x198 kernel/portable/MemMang/heap_3.o + .debug_info 0x00000000000078c9 0x15c3 libc/syscalls.o + .debug_info 0x0000000000008e8c 0x11c libc/pulp_malloc.o + .debug_info 0x0000000000008fa8 0x26 target/pulp/crt0.o + .debug_info 0x0000000000008fce 0x3ab target/pulp/system.o + .debug_info 0x0000000000009379 0x22 target/pulp/vectors.o + .debug_info 0x000000000000939b 0xff2 ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_info 0x000000000000a38d 0x854 ../common_function/common_file_spi/src/common_spi.o + .debug_info 0x000000000000abe1 0x1980 drivers/abstraction_layer_spi.o + .debug_info 0x000000000000c561 0x70f drivers/fll.o + .debug_info 0x000000000000cc70 0x2ab drivers/timer_irq.o + .debug_info 0x000000000000cf1b 0x44f drivers/irq.o + .debug_info 0x000000000000d36a 0x21f drivers/soc_eu.o + .debug_info 0x000000000000d589 0x3b1 drivers/fc_event.o + .debug_info 0x000000000000d93a 0xb4e drivers/pmsis_task.o + .debug_info 0x000000000000e488 0x3d3 drivers/device.o + .debug_info 0x000000000000e85b 0xf1f test_spi_async.o + .debug_info 0x000000000000f77a 0x144 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/rv32imac/ilp32/libgcc.a(_clzsi2.o) + .debug_info 0x000000000000f8be 0xd7 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/rv32imac/ilp32/libgcc.a(_clz.o) + +.debug_abbrev 0x0000000000000000 0x31f1 + .debug_abbrev 0x0000000000000000 0x114 kernel/list.o + .debug_abbrev 0x0000000000000114 0x330 kernel/queue.o + .debug_abbrev 0x0000000000000444 0x540 kernel/tasks.o + .debug_abbrev 0x0000000000000984 0x339 kernel/timers.o + .debug_abbrev 0x0000000000000cbd 0x137 kernel/portable/GCC/RISC-V/port.o + .debug_abbrev 0x0000000000000df4 0x14 kernel/portable/GCC/RISC-V/portASM.o + .debug_abbrev 0x0000000000000e08 0x126 kernel/portable/MemMang/heap_3.o + .debug_abbrev 0x0000000000000f2e 0x4a4 libc/syscalls.o + .debug_abbrev 0x00000000000013d2 0xac libc/pulp_malloc.o + .debug_abbrev 0x000000000000147e 0x14 target/pulp/crt0.o + .debug_abbrev 0x0000000000001492 0x1ce target/pulp/system.o + .debug_abbrev 0x0000000000001660 0x12 target/pulp/vectors.o + .debug_abbrev 0x0000000000001672 0x220 ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_abbrev 0x0000000000001892 0x282 ../common_function/common_file_spi/src/common_spi.o + .debug_abbrev 0x0000000000001b14 0x463 drivers/abstraction_layer_spi.o + .debug_abbrev 0x0000000000001f77 0x2ea drivers/fll.o + .debug_abbrev 0x0000000000002261 0x183 drivers/timer_irq.o + .debug_abbrev 0x00000000000023e4 0x1db drivers/irq.o + .debug_abbrev 0x00000000000025bf 0x148 drivers/soc_eu.o + .debug_abbrev 0x0000000000002707 0x214 drivers/fc_event.o + .debug_abbrev 0x000000000000291b 0x382 drivers/pmsis_task.o + .debug_abbrev 0x0000000000002c9d 0xe3 drivers/device.o + .debug_abbrev 0x0000000000002d80 0x337 test_spi_async.o + .debug_abbrev 0x00000000000030b7 0xca /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/rv32imac/ilp32/libgcc.a(_clzsi2.o) + .debug_abbrev 0x0000000000003181 0x70 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/rv32imac/ilp32/libgcc.a(_clz.o) + +.debug_loc 0x0000000000000000 0x8ca6 + .debug_loc 0x0000000000000000 0x75 kernel/list.o + .debug_loc 0x0000000000000075 0x1c2c kernel/queue.o + .debug_loc 0x0000000000001ca1 0x22f1 kernel/tasks.o + .debug_loc 0x0000000000003f92 0xf0b kernel/timers.o + .debug_loc 0x0000000000004e9d 0x7f kernel/portable/MemMang/heap_3.o + .debug_loc 0x0000000000004f1c 0x49b libc/syscalls.o + .debug_loc 0x00000000000053b7 0x63 libc/pulp_malloc.o + .debug_loc 0x000000000000541a 0x59 target/pulp/system.o + .debug_loc 0x0000000000005473 0x9a0 ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_loc 0x0000000000005e13 0x232 ../common_function/common_file_spi/src/common_spi.o + .debug_loc 0x0000000000006045 0x199d drivers/abstraction_layer_spi.o + .debug_loc 0x00000000000079e2 0x587 drivers/fll.o + .debug_loc 0x0000000000007f69 0x15c drivers/timer_irq.o + .debug_loc 0x00000000000080c5 0x1a5 drivers/irq.o + .debug_loc 0x000000000000826a 0x22b drivers/soc_eu.o + .debug_loc 0x0000000000008495 0x113 drivers/fc_event.o + .debug_loc 0x00000000000085a8 0x3db drivers/pmsis_task.o + .debug_loc 0x0000000000008983 0x2b8 test_spi_async.o + .debug_loc 0x0000000000008c3b 0x6b /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/rv32imac/ilp32/libgcc.a(_clzsi2.o) + +.debug_aranges 0x0000000000000000 0xa08 + .debug_aranges + 0x0000000000000000 0x40 kernel/list.o + .debug_aranges + 0x0000000000000040 0x120 kernel/queue.o + .debug_aranges + 0x0000000000000160 0x1e8 kernel/tasks.o + .debug_aranges + 0x0000000000000348 0xb8 kernel/timers.o + .debug_aranges + 0x0000000000000400 0x28 kernel/portable/GCC/RISC-V/port.o + .debug_aranges + 0x0000000000000428 0x20 kernel/portable/GCC/RISC-V/portASM.o + .debug_aranges + 0x0000000000000448 0x28 kernel/portable/MemMang/heap_3.o + .debug_aranges + 0x0000000000000470 0x110 libc/syscalls.o + .debug_aranges + 0x0000000000000580 0x28 libc/pulp_malloc.o + .debug_aranges + 0x00000000000005a8 0x20 target/pulp/crt0.o + .debug_aranges + 0x00000000000005c8 0x50 target/pulp/system.o + .debug_aranges + 0x0000000000000618 0x28 target/pulp/vectors.o + .debug_aranges + 0x0000000000000640 0x80 ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_aranges + 0x00000000000006c0 0x60 ../common_function/common_file_spi/src/common_spi.o + .debug_aranges + 0x0000000000000720 0x88 drivers/abstraction_layer_spi.o + .debug_aranges + 0x00000000000007a8 0x48 drivers/fll.o + .debug_aranges + 0x00000000000007f0 0x38 drivers/timer_irq.o + .debug_aranges + 0x0000000000000828 0x70 drivers/irq.o + .debug_aranges + 0x0000000000000898 0x30 drivers/soc_eu.o + .debug_aranges + 0x00000000000008c8 0x40 drivers/fc_event.o + .debug_aranges + 0x0000000000000908 0x78 drivers/pmsis_task.o + .debug_aranges + 0x0000000000000980 0x20 drivers/device.o + .debug_aranges + 0x00000000000009a0 0x30 test_spi_async.o + .debug_aranges + 0x00000000000009d0 0x20 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/rv32imac/ilp32/libgcc.a(_clzsi2.o) + .debug_aranges + 0x00000000000009f0 0x18 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/rv32imac/ilp32/libgcc.a(_clz.o) + +.debug_ranges 0x0000000000000000 0x12e0 + .debug_ranges 0x0000000000000000 0x30 kernel/list.o + .debug_ranges 0x0000000000000030 0x258 kernel/queue.o + .debug_ranges 0x0000000000000288 0x408 kernel/tasks.o + .debug_ranges 0x0000000000000690 0x150 kernel/timers.o + .debug_ranges 0x00000000000007e0 0x30 kernel/portable/GCC/RISC-V/port.o + .debug_ranges 0x0000000000000810 0x18 kernel/portable/MemMang/heap_3.o + .debug_ranges 0x0000000000000828 0x130 libc/syscalls.o + .debug_ranges 0x0000000000000958 0x18 libc/pulp_malloc.o + .debug_ranges 0x0000000000000970 0x60 target/pulp/system.o + .debug_ranges 0x00000000000009d0 0x20 target/pulp/vectors.o + .debug_ranges 0x00000000000009f0 0x110 ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_ranges 0x0000000000000b00 0x50 ../common_function/common_file_spi/src/common_spi.o + .debug_ranges 0x0000000000000b50 0x308 drivers/abstraction_layer_spi.o + .debug_ranges 0x0000000000000e58 0xc0 drivers/fll.o + .debug_ranges 0x0000000000000f18 0x40 drivers/timer_irq.o + .debug_ranges 0x0000000000000f58 0x60 drivers/irq.o + .debug_ranges 0x0000000000000fb8 0xa0 drivers/soc_eu.o + .debug_ranges 0x0000000000001058 0x68 drivers/fc_event.o + .debug_ranges 0x00000000000010c0 0x118 drivers/pmsis_task.o + .debug_ranges 0x00000000000011d8 0x10 drivers/device.o + .debug_ranges 0x00000000000011e8 0xd8 test_spi_async.o + .debug_ranges 0x00000000000012c0 0x20 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/rv32imac/ilp32/libgcc.a(_clzsi2.o) + +.debug_macro 0x0000000000000000 0x6195 + .debug_macro 0x0000000000000000 0x19c kernel/list.o + .debug_macro 0x000000000000019c 0x22c kernel/queue.o + .debug_macro 0x00000000000003c8 0x16 kernel/queue.o + .debug_macro 0x00000000000003de 0x80 kernel/queue.o + .debug_macro 0x000000000000045e 0x28f kernel/tasks.o + .debug_macro 0x00000000000006ed 0x10 kernel/tasks.o + .debug_macro 0x00000000000006fd 0x1f1 kernel/timers.o + .debug_macro 0x00000000000008ee 0x97 kernel/timers.o + .debug_macro 0x0000000000000985 0x1ca kernel/portable/GCC/RISC-V/port.o + .debug_macro 0x0000000000000b4f 0x10 kernel/portable/GCC/RISC-V/port.o + .debug_macro 0x0000000000000b5f 0x1b7 kernel/portable/MemMang/heap_3.o + .debug_macro 0x0000000000000d16 0x31f libc/syscalls.o + .debug_macro 0x0000000000001035 0x10 libc/syscalls.o + .debug_macro 0x0000000000001045 0x10 libc/syscalls.o + .debug_macro 0x0000000000001055 0x10 libc/syscalls.o + .debug_macro 0x0000000000001065 0x10 libc/syscalls.o + .debug_macro 0x0000000000001075 0x1c libc/syscalls.o + .debug_macro 0x0000000000001091 0x52 libc/syscalls.o + .debug_macro 0x00000000000010e3 0x22 libc/syscalls.o + .debug_macro 0x0000000000001105 0x10 libc/syscalls.o + .debug_macro 0x0000000000001115 0x40 libc/syscalls.o + .debug_macro 0x0000000000001155 0xd5 libc/syscalls.o + .debug_macro 0x000000000000122a 0x1c libc/syscalls.o + .debug_macro 0x0000000000001246 0x3d libc/syscalls.o + .debug_macro 0x0000000000001283 0x35 libc/syscalls.o + .debug_macro 0x00000000000012b8 0x12c libc/syscalls.o + .debug_macro 0x00000000000013e4 0xce libc/syscalls.o + .debug_macro 0x00000000000014b2 0x16 libc/syscalls.o + .debug_macro 0x00000000000014c8 0x51a libc/syscalls.o + .debug_macro 0x00000000000019e2 0x10 libc/syscalls.o + .debug_macro 0x00000000000019f2 0x241 libc/syscalls.o + .debug_macro 0x0000000000001c33 0xc4 libc/syscalls.o + .debug_macro 0x0000000000001cf7 0x22 libc/syscalls.o + .debug_macro 0x0000000000001d19 0x64 libc/syscalls.o + .debug_macro 0x0000000000001d7d 0x70 libc/syscalls.o + .debug_macro 0x0000000000001ded 0x1ca libc/syscalls.o + .debug_macro 0x0000000000001fb7 0x22 libc/syscalls.o + .debug_macro 0x0000000000001fd9 0xf4 libc/pulp_malloc.o + .debug_macro 0x00000000000020cd 0x3d3 target/pulp/system.o + .debug_macro 0x00000000000024a0 0x16 target/pulp/system.o + .debug_macro 0x00000000000024b6 0x10 target/pulp/system.o + .debug_macro 0x00000000000024c6 0x4cc target/pulp/system.o + .debug_macro 0x0000000000002992 0x1f target/pulp/system.o + .debug_macro 0x00000000000029b1 0x58 target/pulp/system.o + .debug_macro 0x0000000000002a09 0x3a1 target/pulp/system.o + .debug_macro 0x0000000000002daa 0x1bb target/pulp/system.o + .debug_macro 0x0000000000002f65 0x18a target/pulp/system.o + .debug_macro 0x00000000000030ef 0x164 target/pulp/system.o + .debug_macro 0x0000000000003253 0x6a target/pulp/system.o + .debug_macro 0x00000000000032bd 0x20d target/pulp/system.o + .debug_macro 0x00000000000034ca 0x1be target/pulp/system.o + .debug_macro 0x0000000000003688 0x1a6 target/pulp/system.o + .debug_macro 0x000000000000382e 0x4c target/pulp/system.o + .debug_macro 0x000000000000387a 0x19a target/pulp/system.o + .debug_macro 0x0000000000003a14 0xdb target/pulp/system.o + .debug_macro 0x0000000000003aef 0x10 target/pulp/system.o + .debug_macro 0x0000000000003aff 0x421 ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x0000000000003f20 0x3a ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x0000000000003f5a 0x82 ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x0000000000003fdc 0x104 ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x00000000000040e0 0x10 ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x00000000000040f0 0x399 ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x0000000000004489 0x3d ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x00000000000044c6 0x10 ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x00000000000044d6 0x16 ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_macro 0x00000000000044ec 0x418 ../common_function/common_file_spi/src/common_spi.o + .debug_macro 0x0000000000004904 0x421 drivers/abstraction_layer_spi.o + .debug_macro 0x0000000000004d25 0x1d2 drivers/fll.o + .debug_macro 0x0000000000004ef7 0x76 drivers/fll.o + .debug_macro 0x0000000000004f6d 0xa5 drivers/timer_irq.o + .debug_macro 0x0000000000005012 0x241 drivers/timer_irq.o + .debug_macro 0x0000000000005253 0x121 drivers/irq.o + .debug_macro 0x0000000000005374 0x7f drivers/soc_eu.o + .debug_macro 0x00000000000053f3 0xb8 drivers/soc_eu.o + .debug_macro 0x00000000000054ab 0x12d drivers/fc_event.o + .debug_macro 0x00000000000055d8 0x15e drivers/fc_event.o + .debug_macro 0x0000000000005736 0x364 drivers/pmsis_task.o + .debug_macro 0x0000000000005a9a 0x18b drivers/device.o + .debug_macro 0x0000000000005c25 0x4ed test_spi_async.o + .debug_macro 0x0000000000006112 0x25 test_spi_async.o + .debug_macro 0x0000000000006137 0x5e test_spi_async.o + +.debug_line 0x0000000000000000 0x12860 + .debug_line 0x0000000000000000 0x72e kernel/list.o + .debug_line 0x000000000000072e 0x283c kernel/queue.o + .debug_line 0x0000000000002f6a 0x45e9 kernel/tasks.o + .debug_line 0x0000000000007553 0x141a kernel/timers.o + .debug_line 0x000000000000896d 0x443 kernel/portable/GCC/RISC-V/port.o + .debug_line 0x0000000000008db0 0x5d6 kernel/portable/GCC/RISC-V/portASM.o + .debug_line 0x0000000000009386 0x4d2 kernel/portable/MemMang/heap_3.o + .debug_line 0x0000000000009858 0xd6d libc/syscalls.o + .debug_line 0x000000000000a5c5 0x266 libc/pulp_malloc.o + .debug_line 0x000000000000a82b 0xfa target/pulp/crt0.o + .debug_line 0x000000000000a925 0x99c target/pulp/system.o + .debug_line 0x000000000000b2c1 0x1ec target/pulp/vectors.o + .debug_line 0x000000000000b4ad 0xc35 ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_line 0x000000000000c0e2 0xca7 ../common_function/common_file_spi/src/common_spi.o + .debug_line 0x000000000000cd89 0x1c79 drivers/abstraction_layer_spi.o + .debug_line 0x000000000000ea02 0x919 drivers/fll.o + .debug_line 0x000000000000f31b 0x3df drivers/timer_irq.o + .debug_line 0x000000000000f6fa 0x571 drivers/irq.o + .debug_line 0x000000000000fc6b 0x4c4 drivers/soc_eu.o + .debug_line 0x000000000001012f 0x511 drivers/fc_event.o + .debug_line 0x0000000000010640 0xe3c drivers/pmsis_task.o + .debug_line 0x000000000001147c 0x351 drivers/device.o + .debug_line 0x00000000000117cd 0xf55 test_spi_async.o + .debug_line 0x0000000000012722 0xe5 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/rv32imac/ilp32/libgcc.a(_clzsi2.o) + .debug_line 0x0000000000012807 0x59 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/rv32imac/ilp32/libgcc.a(_clz.o) + +.debug_str 0x0000000000000000 0x1e4fc + .debug_str 0x0000000000000000 0x94a7 kernel/list.o + 0x96df (dimensione prima del rilassamento) + .debug_str 0x00000000000094a7 0x189b kernel/queue.o + 0xaf7f (dimensione prima del rilassamento) + .debug_str 0x000000000000ad42 0x2038 kernel/tasks.o + 0xc14c (dimensione prima del rilassamento) + .debug_str 0x000000000000cd7a 0x5e4 kernel/timers.o + 0xb411 (dimensione prima del rilassamento) + .debug_str 0x000000000000d35e 0x165 kernel/portable/GCC/RISC-V/port.o + 0x9d25 (dimensione prima del rilassamento) + .debug_str 0x000000000000d4c3 0x64 kernel/portable/GCC/RISC-V/portASM.o + 0xa0 (dimensione prima del rilassamento) + .debug_str 0x000000000000d527 0x7d kernel/portable/MemMang/heap_3.o + 0x9ce1 (dimensione prima del rilassamento) + .debug_str 0x000000000000d5a4 0x403c libc/syscalls.o + 0xe1ba (dimensione prima del rilassamento) + .debug_str 0x00000000000115e0 0x4c libc/pulp_malloc.o + 0x53f2 (dimensione prima del rilassamento) + .debug_str 0x000000000001162c 0x46 target/pulp/crt0.o + 0x8e (dimensione prima del rilassamento) + .debug_str 0x0000000000011672 0x6b91 target/pulp/system.o + 0x10960 (dimensione prima del rilassamento) + .debug_str 0x0000000000018203 0x49 target/pulp/vectors.o + 0x91 (dimensione prima del rilassamento) + .debug_str 0x000000000001824c 0x3121 ../pulpos/pulp/drivers/spim/spim-v3.o + 0x14ac7 (dimensione prima del rilassamento) + .debug_str 0x000000000001b36d 0x1d3 ../common_function/common_file_spi/src/common_spi.o + 0x148b2 (dimensione prima del rilassamento) + .debug_str 0x000000000001b540 0x31d drivers/abstraction_layer_spi.o + 0x14d6e (dimensione prima del rilassamento) + .debug_str 0x000000000001b85d 0x258 drivers/fll.o + 0x9e23 (dimensione prima del rilassamento) + .debug_str 0x000000000001bab5 0xa29 drivers/timer_irq.o + 0x4798 (dimensione prima del rilassamento) + .debug_str 0x000000000001c4de 0xa9 drivers/irq.o + 0x713f (dimensione prima del rilassamento) + .debug_str 0x000000000001c587 0x3d9 drivers/soc_eu.o + 0x3e85 (dimensione prima del rilassamento) + .debug_str 0x000000000001c960 0x25e drivers/fc_event.o + 0x798f (dimensione prima del rilassamento) + .debug_str 0x000000000001cbbe 0x267 drivers/pmsis_task.o + 0x103dc (dimensione prima del rilassamento) + .debug_str 0x000000000001ce25 0x64 drivers/device.o + 0x6c9d (dimensione prima del rilassamento) + .debug_str 0x000000000001ce89 0x14df test_spi_async.o + 0x16c3b (dimensione prima del rilassamento) + .debug_str 0x000000000001e368 0x194 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/rv32imac/ilp32/libgcc.a(_clzsi2.o) + 0x246 (dimensione prima del rilassamento) + .debug_str 0x000000000001e4fc 0x229 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/rv32imac/ilp32/libgcc.a(_clz.o) + +.comment 0x0000000000000000 0x12 + .comment 0x0000000000000000 0x12 kernel/list.o + 0x13 (dimensione prima del rilassamento) + .comment 0x0000000000000012 0x13 kernel/queue.o + .comment 0x0000000000000012 0x13 kernel/tasks.o + .comment 0x0000000000000012 0x13 kernel/timers.o + .comment 0x0000000000000012 0x13 kernel/portable/GCC/RISC-V/port.o + .comment 0x0000000000000012 0x13 kernel/portable/MemMang/heap_3.o + .comment 0x0000000000000012 0x13 libc/syscalls.o + .comment 0x0000000000000012 0x13 libc/pulp_malloc.o + .comment 0x0000000000000012 0x13 target/pulp/system.o + .comment 0x0000000000000012 0x13 ../pulpos/pulp/drivers/spim/spim-v3.o + .comment 0x0000000000000012 0x13 ../common_function/common_file_spi/src/common_spi.o + .comment 0x0000000000000012 0x13 drivers/abstraction_layer_spi.o + .comment 0x0000000000000012 0x13 drivers/fll.o + .comment 0x0000000000000012 0x13 drivers/timer_irq.o + .comment 0x0000000000000012 0x13 drivers/irq.o + .comment 0x0000000000000012 0x13 drivers/soc_eu.o + .comment 0x0000000000000012 0x13 drivers/fc_event.o + .comment 0x0000000000000012 0x13 drivers/pmsis_task.o + .comment 0x0000000000000012 0x13 drivers/device.o + .comment 0x0000000000000012 0x13 test_spi_async.o + .comment 0x0000000000000012 0x13 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-abort.o) + .comment 0x0000000000000012 0x13 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-assert.o) + .comment 0x0000000000000012 0x13 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-atexit.o) + .comment 0x0000000000000012 0x13 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-exit.o) + .comment 0x0000000000000012 0x13 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-fini.o) + .comment 0x0000000000000012 0x13 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-fprintf.o) + .comment 0x0000000000000012 0x13 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-impure.o) + .comment 0x0000000000000012 0x13 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-init.o) + .comment 0x0000000000000012 0x13 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-malloc.o) + .comment 0x0000000000000012 0x13 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-nano-freer.o) + .comment 0x0000000000000012 0x13 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-nano-mallocr.o) + .comment 0x0000000000000012 0x13 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-nano-vfprintf.o) + .comment 0x0000000000000012 0x13 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-printf.o) + .comment 0x0000000000000012 0x13 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-puts.o) + .comment 0x0000000000000012 0x13 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-reent.o) + .comment 0x0000000000000012 0x13 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-sbrkr.o) + .comment 0x0000000000000012 0x13 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-signal.o) + .comment 0x0000000000000012 0x13 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-signalr.o) + .comment 0x0000000000000012 0x13 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-wbuf.o) + .comment 0x0000000000000012 0x13 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-wsetup.o) + .comment 0x0000000000000012 0x13 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-__atexit.o) + .comment 0x0000000000000012 0x13 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-__call_atexit.o) + .comment 0x0000000000000012 0x13 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-fflush.o) + .comment 0x0000000000000012 0x13 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-findfp.o) + .comment 0x0000000000000012 0x13 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-fwalk.o) + .comment 0x0000000000000012 0x13 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-makebuf.o) + .comment 0x0000000000000012 0x13 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-memchr.o) + .comment 0x0000000000000012 0x13 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-nano-vfprintf_i.o) + .comment 0x0000000000000012 0x13 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-stdio.o) + .comment 0x0000000000000012 0x13 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-writer.o) + .comment 0x0000000000000012 0x13 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-closer.o) + .comment 0x0000000000000012 0x13 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-fstatr.o) + .comment 0x0000000000000012 0x13 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-isattyr.o) + .comment 0x0000000000000012 0x13 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-lseekr.o) + .comment 0x0000000000000012 0x13 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-readr.o) + .comment 0x0000000000000012 0x13 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/rv32imac/ilp32/libgcc.a(_clzsi2.o) + .comment 0x0000000000000012 0x13 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/rv32imac/ilp32/libgcc.a(_clz.o) + +.riscv.attributes + 0x0000000000000000 0x2f + .riscv.attributes + 0x0000000000000000 0x2b kernel/list.o + .riscv.attributes + 0x000000000000002b 0x2b kernel/queue.o + .riscv.attributes + 0x0000000000000056 0x2f kernel/tasks.o + .riscv.attributes + 0x0000000000000085 0x2b kernel/timers.o + .riscv.attributes + 0x00000000000000b0 0x2f kernel/portable/GCC/RISC-V/port.o + .riscv.attributes + 0x00000000000000df 0x2d kernel/portable/GCC/RISC-V/portASM.o + .riscv.attributes + 0x000000000000010c 0x2b kernel/portable/MemMang/heap_3.o + .riscv.attributes + 0x0000000000000137 0x2f libc/syscalls.o + .riscv.attributes + 0x0000000000000166 0x2b libc/pulp_malloc.o + .riscv.attributes + 0x0000000000000191 0x2d target/pulp/crt0.o + .riscv.attributes + 0x00000000000001be 0x2b target/pulp/system.o + .riscv.attributes + 0x00000000000001e9 0x2d target/pulp/vectors.o + .riscv.attributes + 0x0000000000000216 0x2b ../pulpos/pulp/drivers/spim/spim-v3.o + .riscv.attributes + 0x0000000000000241 0x2f ../common_function/common_file_spi/src/common_spi.o + .riscv.attributes + 0x0000000000000270 0x2f drivers/abstraction_layer_spi.o + .riscv.attributes + 0x000000000000029f 0x2f drivers/fll.o + .riscv.attributes + 0x00000000000002ce 0x2b drivers/timer_irq.o + .riscv.attributes + 0x00000000000002f9 0x2f drivers/irq.o + .riscv.attributes + 0x0000000000000328 0x2b drivers/soc_eu.o + .riscv.attributes + 0x0000000000000353 0x2b drivers/fc_event.o + .riscv.attributes + 0x000000000000037e 0x2f drivers/pmsis_task.o + .riscv.attributes + 0x00000000000003ad 0x2b drivers/device.o + .riscv.attributes + 0x00000000000003d8 0x2f test_spi_async.o + .riscv.attributes + 0x0000000000000407 0x2b /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-abort.o) + .riscv.attributes + 0x0000000000000432 0x2b /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-assert.o) + .riscv.attributes + 0x000000000000045d 0x2b /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-atexit.o) + .riscv.attributes + 0x0000000000000488 0x2b /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-exit.o) + .riscv.attributes + 0x00000000000004b3 0x2b /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-fini.o) + .riscv.attributes + 0x00000000000004de 0x2b /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-fprintf.o) + .riscv.attributes + 0x0000000000000509 0x2b /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-impure.o) + .riscv.attributes + 0x0000000000000534 0x2b /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-init.o) + .riscv.attributes + 0x000000000000055f 0x2b /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-malloc.o) + .riscv.attributes + 0x000000000000058a 0x29 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-memcpy-asm.o) + .riscv.attributes + 0x00000000000005b3 0x29 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-memset.o) + .riscv.attributes + 0x00000000000005dc 0x2b /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-nano-freer.o) + .riscv.attributes + 0x0000000000000607 0x2b /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-nano-mallocr.o) + .riscv.attributes + 0x0000000000000632 0x2b /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-nano-vfprintf.o) + .riscv.attributes + 0x000000000000065d 0x2b /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-printf.o) + .riscv.attributes + 0x0000000000000688 0x2b /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-puts.o) + .riscv.attributes + 0x00000000000006b3 0x2b /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-reent.o) + .riscv.attributes + 0x00000000000006de 0x2b /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-sbrkr.o) + .riscv.attributes + 0x0000000000000709 0x2b /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-signal.o) + .riscv.attributes + 0x0000000000000734 0x2b /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-signalr.o) + .riscv.attributes + 0x000000000000075f 0x2b /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-wbuf.o) + .riscv.attributes + 0x000000000000078a 0x2b /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-wsetup.o) + .riscv.attributes + 0x00000000000007b5 0x2b /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-__atexit.o) + .riscv.attributes + 0x00000000000007e0 0x2b /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-__call_atexit.o) + .riscv.attributes + 0x000000000000080b 0x2b /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-fflush.o) + .riscv.attributes + 0x0000000000000836 0x2b /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-findfp.o) + .riscv.attributes + 0x0000000000000861 0x2b /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-fwalk.o) + .riscv.attributes + 0x000000000000088c 0x2b /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-makebuf.o) + .riscv.attributes + 0x00000000000008b7 0x2b /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-memchr.o) + .riscv.attributes + 0x00000000000008e2 0x2b /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-nano-vfprintf_i.o) + .riscv.attributes + 0x000000000000090d 0x2b /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-stdio.o) + .riscv.attributes + 0x0000000000000938 0x2b /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-writer.o) + .riscv.attributes + 0x0000000000000963 0x2b /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-closer.o) + .riscv.attributes + 0x000000000000098e 0x2b /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-fstatr.o) + .riscv.attributes + 0x00000000000009b9 0x2b /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-isattyr.o) + .riscv.attributes + 0x00000000000009e4 0x2b /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-lseekr.o) + .riscv.attributes + 0x0000000000000a0f 0x2b /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/../../../../riscv32-unknown-elf/lib/rv32imac/ilp32/libc_nano.a(lib_a-readr.o) + .riscv.attributes + 0x0000000000000a3a 0x2b /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/rv32imac/ilp32/libgcc.a(_clzsi2.o) + .riscv.attributes + 0x0000000000000a65 0x2b /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/rv32imac/ilp32/libgcc.a(_clz.o) + +.debug_frame 0x0000000000000000 0x1c18 + .debug_frame 0x0000000000000000 0x60 kernel/list.o + .debug_frame 0x0000000000000060 0x480 kernel/queue.o + .debug_frame 0x00000000000004e0 0x84c kernel/tasks.o + .debug_frame 0x0000000000000d2c 0x2a8 kernel/timers.o + .debug_frame 0x0000000000000fd4 0x3c kernel/portable/GCC/RISC-V/port.o + .debug_frame 0x0000000000001010 0x54 kernel/portable/MemMang/heap_3.o + .debug_frame 0x0000000000001064 0x250 libc/syscalls.o + .debug_frame 0x00000000000012b4 0x30 libc/pulp_malloc.o + .debug_frame 0x00000000000012e4 0xcc target/pulp/system.o + .debug_frame 0x00000000000013b0 0x138 ../pulpos/pulp/drivers/spim/spim-v3.o + .debug_frame 0x00000000000014e8 0xb4 ../common_function/common_file_spi/src/common_spi.o + .debug_frame 0x000000000000159c 0x1f8 drivers/abstraction_layer_spi.o + .debug_frame 0x0000000000001794 0xb0 drivers/fll.o + .debug_frame 0x0000000000001844 0x50 drivers/timer_irq.o + .debug_frame 0x0000000000001894 0xc0 drivers/irq.o + .debug_frame 0x0000000000001954 0x40 drivers/soc_eu.o + .debug_frame 0x0000000000001994 0x60 drivers/fc_event.o + .debug_frame 0x00000000000019f4 0x16c drivers/pmsis_task.o + .debug_frame 0x0000000000001b60 0x20 drivers/device.o + .debug_frame 0x0000000000001b80 0x78 test_spi_async.o + .debug_frame 0x0000000000001bf8 0x20 /home/balasr/.riscv-10.2/lib/gcc/riscv32-unknown-elf/10.2.0/rv32imac/ilp32/libgcc.a(_clzsi2.o) diff --git a/tests/spim_flash_async/sim/modelsim.ini b/tests/spim_flash_async/sim/modelsim.ini new file mode 120000 index 00000000..711b4170 --- /dev/null +++ b/tests/spim_flash_async/sim/modelsim.ini @@ -0,0 +1 @@ +/scratch/norlando/pulp-open/sim/modelsim.ini \ No newline at end of file diff --git a/tests/spim_flash_async/sim/stdout/stdout_fake_pe0_0 b/tests/spim_flash_async/sim/stdout/stdout_fake_pe0_0 new file mode 100644 index 00000000..e69de29b diff --git a/tests/spim_flash_async/sim/stdout/stdout_fake_pe0_1 b/tests/spim_flash_async/sim/stdout/stdout_fake_pe0_1 new file mode 100644 index 00000000..e69de29b diff --git a/tests/spim_flash_async/sim/stdout/stdout_fake_pe0_2 b/tests/spim_flash_async/sim/stdout/stdout_fake_pe0_2 new file mode 100644 index 00000000..e69de29b diff --git a/tests/spim_flash_async/sim/stdout/stdout_fake_pe0_3 b/tests/spim_flash_async/sim/stdout/stdout_fake_pe0_3 new file mode 100644 index 00000000..e69de29b diff --git a/tests/spim_flash_async/sim/stdout/stdout_fake_pe0_4 b/tests/spim_flash_async/sim/stdout/stdout_fake_pe0_4 new file mode 100644 index 00000000..e69de29b diff --git a/tests/spim_flash_async/sim/stdout/stdout_fake_pe0_5 b/tests/spim_flash_async/sim/stdout/stdout_fake_pe0_5 new file mode 100644 index 00000000..e69de29b diff --git a/tests/spim_flash_async/sim/stdout/stdout_fake_pe0_6 b/tests/spim_flash_async/sim/stdout/stdout_fake_pe0_6 new file mode 100644 index 00000000..e69de29b diff --git a/tests/spim_flash_async/sim/stdout/stdout_fake_pe0_7 b/tests/spim_flash_async/sim/stdout/stdout_fake_pe0_7 new file mode 100644 index 00000000..e69de29b diff --git a/tests/spim_flash_async/sim/stdout/stdout_fake_pe31_0 b/tests/spim_flash_async/sim/stdout/stdout_fake_pe31_0 new file mode 100644 index 00000000..6eb48507 --- /dev/null +++ b/tests/spim_flash_async/sim/stdout/stdout_fake_pe31_0 @@ -0,0 +1,13 @@ + + + *** FreeRTOS Hello World *** + +malloc tx buffer +malloc rx buffer 1 +malloc rx buffer 2 +tx buffer init +async cs auto +WIP Register: 3 +WIP Register: 0 +starting error check +Test success diff --git a/tests/spim_flash_async/sim/stdout/stdout_fake_pe31_1 b/tests/spim_flash_async/sim/stdout/stdout_fake_pe31_1 new file mode 100644 index 00000000..e69de29b diff --git a/tests/spim_flash_async/sim/stdout/stdout_fake_pe31_2 b/tests/spim_flash_async/sim/stdout/stdout_fake_pe31_2 new file mode 100644 index 00000000..e69de29b diff --git a/tests/spim_flash_async/sim/stdout/stdout_fake_pe31_3 b/tests/spim_flash_async/sim/stdout/stdout_fake_pe31_3 new file mode 100644 index 00000000..e69de29b diff --git a/tests/spim_flash_async/sim/stdout/stdout_fake_pe31_4 b/tests/spim_flash_async/sim/stdout/stdout_fake_pe31_4 new file mode 100644 index 00000000..e69de29b diff --git a/tests/spim_flash_async/sim/stdout/stdout_fake_pe31_5 b/tests/spim_flash_async/sim/stdout/stdout_fake_pe31_5 new file mode 100644 index 00000000..e69de29b diff --git a/tests/spim_flash_async/sim/stdout/stdout_fake_pe31_6 b/tests/spim_flash_async/sim/stdout/stdout_fake_pe31_6 new file mode 100644 index 00000000..e69de29b diff --git a/tests/spim_flash_async/sim/stdout/stdout_fake_pe31_7 b/tests/spim_flash_async/sim/stdout/stdout_fake_pe31_7 new file mode 100644 index 00000000..e69de29b diff --git a/tests/spim_flash_async/sim/stdout/uart b/tests/spim_flash_async/sim/stdout/uart new file mode 100644 index 00000000..e69de29b diff --git a/tests/spim_flash_async/sim/tcl_files b/tests/spim_flash_async/sim/tcl_files new file mode 120000 index 00000000..0a3e9dd1 --- /dev/null +++ b/tests/spim_flash_async/sim/tcl_files @@ -0,0 +1 @@ +/scratch/norlando/pulp-open/sim/tcl_files \ No newline at end of file diff --git a/tests/spim_flash_async/sim/test_flash_async b/tests/spim_flash_async/sim/test_flash_async new file mode 100755 index 0000000000000000000000000000000000000000..8854bd411df6b397755889ae9b1d4a474779792e GIT binary patch literal 456456 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

XWo0AI^NQGLpcWEjpGbJf=kXpxG1G)@gQB0 zC>VAWDTRrG7|zLpk|NC#fpjAFC7h)P@l-rWWL%yT4$6u{`HGT6`u5`>UtACmN`zWk zs@Oq|5PFv-l3Uh7EEUrUw6^n zR4jySV{tqfSsfJiOcZ?;=ZQgajg|{a0yjaT7z-7snb1p7gONx!y4IBlCiM*LAqSp21X|;T%HpS%EBrRDk`OIO3*e!E!7nm)Ci$>4{4jQrXpo*tafyx zZF)-E#H5T>HKuKJr3#}@ZE9D5>MNI=s(L5lzx^8Pv8FCjzvnuJzU%i%6d!RXg7HLS zatp+p>ZM6zXwtqxVS_Yjzpx@oTnpo-NgEYA7>Q(~3nNxf>K~?@QY1~(uEt+)ZMYuxF4NDbqsAl7-HhwZzmh)dWYT9pP0FYDFsG~iXRZhOQEU+{`BHHD zSAl*Pyug&(;y2-On8b6bSvLS>3tmI}B;G9eF7w$@_){A3wRAN^=)q?UcRaXHxp;8s zib1+kJh)0cxJRUp($(U@74YDmF3$-&9-I&lu5>+EH-+QDHT(47XggK*>gvI@#)HGY zudNB{OL9H9&UkPi>%sNLgZnEF9?;kI;D(^EpLno#QIsVdkaa%BgSDG#4~~qz!K8xF zq$$N+J=k^jVE-OGFfAS&9s65K6ZN0l2@f8S7H1zcF!dMQ$%-e3D_5R+*Te9K>9f9z z>*4dihwF@QK8ov{AAcX$qv!kp*JJkHhwHH=_u_hjN6CeQeu(R$FH!Que^JBYT|dJ0 zq-&nUb=jM^-?PJnb+wvpT_m@xBe5?8BhE|9673I}rS~1SimBcTHq*0jiI1nN?v39|AG;xO z(_=u_CeM2a=+)!~>iKqREbwOQPx0-tmip7V!nfmk^LJu6tpwO-)LJzQ>-JMrU8%z?fol+?S zO_gbSw*`Zf!m%AqU!7>bgNwkWC9HMiyYHqtj58JMA|1 z7B|9sgRJJTWc?Fxr9OJP3^Mh(W4n@aRv>-N_}yT~?|x?do_OOkXvyVY#8rs z;^XJ(mc8^Er)66L8DYYD3DQ__>*aMyMwoEimUbwV5e8-_BEzp!s-R3tSCN(qO=5%* zYN_^yphgJ2i)8{V(P~15E`4Kkl&dV0N{UPRDy%HS<#pKnT2100HJ=Ty6c>(TgsBP& zd&meAE)Ii|$Xssbv#|9?BH8HZ+Hg|XDg^>ny zPqpGteNl z)Qi19FKkKe1qS7yK|$eQ@x~!;>xmN%8>(BrT->GRAlvhYNzV_44-X1T60vuSVHRp< zL~3*$3otsCsCo2P42>C?s5yxhRy!(D`=dX>in`IMe^Mybs}HXi@fwUBllqGaj2oN! zVP8@X9q06(3FEajs!L38?F}X!tfRq{iP9w|nJzKe5e-f{M8`1lPEny?aZZ<*S|(lM zP$ywLIrDWcwmv=UU%1X$7eiU`?4@jr+cO?eB~@|(&aS8?5M5UyPF zM_j88dllE3Mev41udhIVqV^kTg2cf`{|)qsv*4JCNlTGWV)EwqLX8a<`~&d;%X)w} zWGBNz-$#E=jJzH>DfcI&mpv-@2{w{f5Sf!ZeC2=hTZuBt|LbO z3D=QVvt*;5`z@}c+hChYKe{(98}rTQL7ngeJPMaM_72`rkmC{b|&D zi~ps)h~4hr^1ncL_-g_Xzw7^m^?SE}$X|heaKZnsM@tB`x z8Gr8ojurX~eV0 z&#wC&uFIO}=I7k<9InfE(av*=N+5Ioh17Gw7P{VwT2d}t%lkU(fj=q2>tizreQ6cv;hLV!?0OoEC93rMq|tR2_7 zuD$nyYv0wi>sr^$df1WvW=Dlx16jArv|M&a&k(qnv&YU@I&YU?j_r7N2 z8_13`RiAq4bl*hz4x2<-4F3;@=7@92jgc1-&rwULHKVtaOJhExs;x6eQ^`&+1IUT> zraATaMAMMipJaxU(34Fj`E!bSpP;vx^Z4vk^BR@or6?j7UXEI@t5>2!>mz$Tx{M9p ziJl}!Ka0AMjsK47lMA0mce44{QO-BW*4fWV>go1$^5zWNiu!w|y&D)i$w&LOK$}cw zf*N>7i|T&*o2Yk{+0MSNHa8RSHRe$ojR&I_iPuBXhm`ok(I*7_`{)Fs_eeCGtbR0_ zL#_K`v>*F^GWv*^JQX>^_jE+dmv|w1oE^UyWl>HqMN2t$UXE^M^H-v+tn%mRb~5MH zs0F+IOZ5Kp$X<(Xpc=j&Eum!Jh+d#=cr&`4QvG}MJhA>q^jp?^J9?F3d?%_0)0KEP zI-k$pi;m{#`DfIdO7ebmCu@EXeMM1!7`;ss^-=VW8#&RlB>I!+Nk02DYDUfbSM(LD zd=||hX8(?kpvXUut|z)*L|aM2m(i!xhOeT7+0ob0aAw~`XOpmRqZvg0KhXxF^j-9f z!LwuSY7T|t?9&_<$J?99&$V_q8?3WeQC=t5XUT%~wjIgbV6(}(jkXb4u*n`pC@0!% z^7?7@V&)wU(pzq0p`%+u{6!aTz^Vz+17 zel%=n+4HE(XWOUP;2hhK>U^$!o2=Vrw@?Gmv!h7Luk95a^5@$Uj>Ze@bgIpT_C_Lj zk!?<%U2NBpXP4MAHvf&?ofKVaZ=(EuYj37XU1sZ(S(n>y$jB?~}l-wdV3k6++Yu9^Be7B?Di&GL^ZwHK1OA@#ok9Xz12QV zY2IcpBA&O~S2@J*u=f#{JMHuA_AYx8jp5yPPxijuPGaFbwmED5&b~v5-E03vJ9Hny z`N;0KcM_Ke>^$R4pHS@Tibl0E#<_F?aj z*=x!2$8Cb3pRgwp-6!oPnvlB|2vUdP`5ZvRFo|FFYoa^AA52<&ZZNaj2CW0Luprlbl1m@j8z`!e>>tV2kL?!n`g6MvVSZshBradtuSm*Q_8t=UwN0l+eq#?M z%fGcF2<$)hR`&3nokE@+o3?_(;<&UTD(&%UTd7%V)BZ!O*QI?)E}f9}9YL>8d+(pP z+mQAUt87eL!YZ56iaE45r`<~Ko|x7M9f`eMM1iJX2@$ya%(rosXtEzEZvPS)+;JYo z+No_a?Ad?s}oArlYO(qPxj_`+1B0on| zbEu4*L#~V(a15?Tm-j_F=2wI~_7hS)t{w;T_;X0}gstTJ#7oK3Nhffy&b)#X*j}9} zq@A5-d^%v9>mW|OxD*(v5UKHFlJ z4MldUxt~3pX6~g1ZZ%5@@7( z=PC*&?@bCI|DP-`=tMYOE}%u|){y1h*S?6f$GsfnJzJ1Py$1q%qR(+0GJQ{>2n!$P zQ0~8hY#H#~H%JE#BZMJqXlI6AOqj#6Ibud^C9lWrNtokLCpRaYO_krhgdCdMm*vy8 zzl3zgTJ+^;XnzMW>wF@6&09joEtz*{>11eZE9n!Qvj`*5OZV z-|=NCWv8*OzqzCcd(7E<7yzJ4Cpox4!3dEdN>G`}&Scgf__ zuE)KJ>uv)$K)avDwmr6UNDXXF{01MxAv?4i&BO3V*~`eLRPWIb@adRuI0VP15z7g` zr|p{9jCwQa74m8F;Y@eilXBf-EcrKe5c}G*9rbD2+q|AWgZ<8&O-%Mag%s}d8n5R> zoP+lNn3Mn9ZRE&-6~uY|Gc=S3_abK(yiGk@SV68WTF&}QN~pn0XR!YAdBnDSG_gIT zlANjTLcXs$i!wNDFmYQwj9fY*of10gVp4tdP-?+3TZq-MW+ur#-kiX}x7J+x9kTW2 zPD*^EnM|TLneo)=&E|RnJ<&YIyHiXrt~a)r&KxnPnrxDFn%SFor<=ZPeujC1GC9+H zON7rccY_|MIoaRPsc!oPb*|k%2{iX?+Wq!#0x#5v9=bFZ!fG99b6(I42@-3L>^P3k{Rfso&*qVGryN)TQtzfBf=p~w6v)Nr){f1$JCu~2h-;H zaHRBLTQ=3mW2OdUvasdiBabPOX&1KZaz%{htVTAou|~}!jhZ*nsCi0^)A!fd@1NJP z0n)0u%|zr+LV!NECR)uSMcFt9BPU~8c`za5o;4_FL1k=c_tWRFO+e7Q49S`AOjxUvt6az-XveKisFGfE42-(h5$?btAp z^_Trot@Wsk5BssSO-3T;#U3bWH(FzoxnnYB4{$BUCbBAbV>e#!Z1y+}SB_C(wH=+7 zv7Oa39vy@X_qz$q zNDS(6B+|hzEJZqG?~X`^u09&+u-k?s9lq@#q+|Bzgmmnpc}T}yMrh;P^+7se&pAk^ zyjzTP_XkEI-DB`Dq*E^*gmlllKxAUtCQz8zyUPHivnEVOI{UdjknVHOWTg8JDMEU{ zwE0NqzQBIx9m-w~EMxtHW*mTY{xzeJmb|k2GT`;g(fBzzrQEa<>z-t zx?;jyq~*60!pbYFkXB5C?j#PmiTGE)$ET~_I~3`mTS)t1UCWRjeohyptN+CG$PY-} zQGX)lM;}OR*PKhv9CHd`9&cV9jcl!HkE3<)cc&hS>;$uWIkNR;D#_Ylj$tpGO!X3E zo6QvVcA|NX9i3$EBb_Ik)2or4YWhJvF~4=qMz+=Dl_2|-d1WQC(@ka$vNO!9Y;cyz zBCxZ~bH^e($CQmlcCLAVxNI}C@{yfynsq~VftkBEvJ1^PR=LQ`Vn-L7J|y81)21J? zOU-KsBm1q{upHTCW_JqjazsmN|O=Mk4X%@aM5-DR4MM0U5iXc@BY z=40Y=kIA9d+-II4^7os&2O)dF97A*;G*=VBhskUeY~ky(E*YuV8wCLKdI@u<0i zO7TZ?*-&JUnO~EwPnmxb>!;1O!;w8}-Wq}IIn#pN{gX*2U!FGy6PK4vFKXG#W++Ac zifKsM{@Ik1zE{m*?C&q;E@rQrY2?{oP4gp={mo=?EWKftOhNXh*?Ty$w@sHd$lfu1 zsrB!gbp-vM`3I5sr`c41?0xfHe`Ft;Uc~w%Gj2ArkIiJ#_lf!S5M-a4A$uYF+wM2_7XqrE82o1%2G=jQ0lcF1mt7GhL6TXw`25_O`vlw7~u>`zhLY#KvF-QzAz zs7l?owMW{0IR``UH^`wrWi$zW9~ym{Ohnz$) zR~B)QSGAy~9ro%fq=&!8akR!!cZ{PBK?5RmoN-hhZx$@X9hL=zzRo;L({X~io!D+L z_fAB%(L7GYILSDYPd1L`Q;j3~G}D_BIm1jP5@(v<6YF!#eJniJ?6VZvdFDYPd!c!P zv|nV7Bw81n-6@Al%qzLbeq*+gBbS=a6zOlx7;@$^Gnl|GH&2n5SC}Jd#;!EmXd16F z9jPSOnS9FPdh_Z?WH*?#osivVp5%zW$y`JYxY?XZ!QO8A(8%0jo@Dbo&0_NPE;E?} z=5BK}iQaBbV}JLUQ)%9RXA;wp-D{Q>A-m6vrf}~!2en1^fO%;!vIosM{g6Fm+IB?t zu*oMyzc=$q${)~Zru8rUaHcaF>_%`qHyPnorCkUec~qOv?= z9_N61)^whZ?0GY95V9A{shyF%Y`T)kubK~t%U{eC3g?5;nF0zl!p5guuc`YZ zEi5F!e)9{E4t$4(Y>-o}!BeZwH-H=Xsf&$&63;DF?UL5Gt2h%Xjykrs5y&q$b`%IyU-*+}OV9pI3DEnV{ z0MfaSlh+4cKMrZ}HnOVZJIZ(A9^`E4ht$_a#}eA&=h*L(WB9b}6YAB{Bglr8d(1;x z(U`;JkUqquGIIse>b2C2RR_*Sdgy_(kREp8!AK8(fQqyF^Zk$>aS?U?$Qza*J?aQz zb@cmW^qPa29y5vbo?yP97OpoRO+mKNJXe8ivw52;c9OY)+H{KfJNa;`X|@pAR&yjJ zc&7Omwf-zKiBz3!_M??K$DB1E*}3Lhh{TDm-58>i`z=+V{Tn@ycBn_x26rX0LkcLU z;RUo!BW@(=qduXyMo*`B$G%8~8~0nXaKiGvkWTD%AkxXDv`4!gK)boe^<>i2o~%FZ z+tx^@Pa^YXzIGJSz3v-|bXIrLH2WpC-S=IV%=s(DxPMEE>wp=oIq$9!NDusyidJ+1 znSHP&vlm=M(n}VRk&9NhN4oe1Vp2Ax4br9iviI^=h)G3XQn%{Qc}Ned;P_d+ndNJ? zjYqo9+(s1Fn++q8Z7|oABHL)T6SGZbIICduV*J+TansshY+>yzou+@jHXKW+)iorUPx*OeLV>2h?y)I zX*pAkYQ=QiR1S?vTd7%7wyL)vvM<=cHe$6k*Plzz{{D6d|B;-K#{jfSG{r__hS zO>En*Go{==qC^G^;z%BJ+iIkPuO$2-LkM|z<6@*EHqSshdVP1KV;b*^bi&!IkWM^< z<77$~>cj3`=OCT>9iQ&GfkK&?K^@pDeJRpei&=m68p7YV1?$fl#NPLRixeHOh^B8| z7DaO4cU1oQCsX%|62!mwDZ*KBJ>|CWDhj{!(gLK5ODWeSzbDM4V=3HaZ_*^LIEOfw zpT)6S@!SBUhYV!>s%adf)t7MmAKHc(9`-i1cXhiVNRP-Te~#Lejr8a?#P*ma9Jj}s zz1U!#8ATmG!MxQ4*(TGJ)@!qQgJL<^T-FEKDJJ(AWT%=QqmZ3uN;@HY$xNJu>}9i@ z1ifMm`Tu9Lh$4B_*mlVNV#cw%*UaxJ@7K*q$9c8ubmlk|bUvD*$?Hwz^Z!F~3Nk3- zF2_?zy0#^0-JUoCY4@?ykoG7Uj)n*{l(S7$pI_B@he(Z(wkWMP0$R^)NvUY1oI;Q-(7t(#N zC24aXq-xEtI2dWsc8YRkL;>Am95J^VN6l@WE?!8pPmF^;lFjU(-k#?kheal}1t9Cc3^N8Xdh(f5>b1U_vXh0hpA z;zF-`cFB(VYOUBXpvT=m|!#GOcGmg{`jidD=90YUZ$pWt#*=JM=5n*O*7nM4u^Hm4OGuwLpZp5 z-_D`X=OOA#-``Oa3wNjV`aN5MwEs9N@4#DWXa`-!lEG7`K|`kVdg!Wskq&#Gb%wu4 z$&A=SEg1PZA&+{3LvVC)d!%C*9e{M)d8|2pJ~5o|!Ldju9?k(bX#=%<@|&FZb{n@J z(%rA%^&VZRr&IsUDRs~BG#Jymb97AaJ|5|eeF%BxKgS~7Ybt5n`v?x@+1aeQPrW0M z?)wdg;GDAwZNCS0L%RQP>em6Q4?{ZldZzQPCheD*QB=0eP5I%-t}yp6K!&IXYhPt< zBlv602pWT%%wTw{oyyqX5Bkg@04N#wbI6?})Chq<2 zBJKkQvChCAEFXL|&DoIo!*pgiGf7!2z-|}O~vC6M|Bdwan@pt$T_PDy^T%>DmqV64Y8=oF;1~Xf0W{^W0 z&C}%9Ci4hcda9X4)i}+xB8I1%s|n%^)0aAUp80|u{o1_U2HAz?95U@9b1t>wO0(!V zWLKGeNzIMs{E^6RGJhjIx0>7bM|PVzigWySa|B`DV@@U~9x%5rME0OrLcu&@o+m+% znj;A1adUk&vL{R>HR2g_97%ZAw5AR{Z{C=V>;*G|Fkdtq$g)?=7Z`mosCyI2U(F-H z+DSRT^+XgD>`oNBeYO&5_e(e$dY!;YsCPsL4BT`y(m`KwEHZ1t zX>7H7aYv+kyheLBBd-I}na!wy`=n8G_nmnJ(z#z0BAxdM^?LqYtXZ^T4$?)_$02)lCwv)=!^7t)0Km6t;y%eTyHMsqYdUtV!7EY1ifNr z4x)Z{YyzI*KDy@Sdi5kqU(eVc4QK2*q8>PMj zWLxOF5iMJ0bQ+5eZC30sd?Ve93#XP5%&w=eCrWVJwoYWsbuDvR>&}U*Wm{$7C0A^q zg!d~G8GmL)*@CdG{VQ&Mx1x`1?%C}4J`v95=ja|w${Q7S01ko6Vej0q$D%I>HS3^z zEFHgRk0o~4+u`fcdfg-sd;6lkQ6lU0)44s6FIx#VyTCun>7u(7U42P*H{GS^u7|37 z$fI~_+xGN39#V=ehF*!RZRc_8p|@`2_zfJ}Okc)m(MJ#3Cp_2k_y%s0r&)zzr>9@a zgEq2}WD7i~M7O)HMPJBnCu+c{o+Xy`uP*!uBt5=Ax*IBH&RL#czjeT+K$pw-u^(i@1xzAMEm!C1B~;>>N{4Wd>db* zLqQrgWeUgn?XaBj(m`|OUG{|J*4D(ZwI!O`Z&JqV5H(DXv6dgMi+2-i# z!N^XGE@yU9RJ8@!$-kA0A>H|rXBim@k zGTUUzCnDQyzF>nB&5V5kdz%@3B<^l8C-+5mtJ%^3*==U?T4cAID#E7b3gY+|RrF%=)&-?lo}tJ;$SPo83#L;5Oc6Ki%=9<#d>VME42XkoKCg z8ENln8<6(-%hgExUVA0d!n7Na_M3PW(*Dmd9Z(8YN(?-m>5%ELR*9j1+=z788D}6J zUPPE9w-U~%qEnELKI8(VV;;T^>DUWSLptGiCnBAADhxwn@+89Ft>b#6Q%)rgyMF`i zOYAwDt){KJ2I=(0tU2RJ!kjssZD;i-h;*O(FG9NStE@lg(kqZ2(2n)z{{04| z^HyJu^q?osLVEB#4D3YlSf&dfW?!YJor!eOTvEDtEBUab#ra6f&L&+;%YTb>S>7h3 z<;~dd%E9cVqKJGrq&MlUY{NQL!|SRoWm+7n(Ns3WOFe&af->f6xpd}8S&m~-XsyH zo2EA*JHxz5GH^nUd^*egi_On9Wv3$BX4doBc_yEj|Jv056|(cqW^&>J)0d=OXlApA zi;ZEGOUx1Ez_sQ(5_6sD!fvlO$1}UrJVelUnF~nt-DduJWcQg{DcbwZCFI`&<~b7k zn7NXg^tgGQP@XUkvcaEB2i`qzPGPq%m@2a9FXnzC_?lU9JhIo#Ilo5sck?KL{lhFH zMQ@pHeD;A^#AhFxho~kWnF(u=eP-5@%zvA%BVjow;^?6~NUMECgU32M&T=xEY#LezsjY>38QjO?UnGRfQ$y-yYU zRn(d7&WZ*R^tNcrNyyHRULawYM4wUTu8f**L3Ts*6>HucJwye)Bbt5=viqVJDaHq* zq3rgdXgH8}1GB{l$~=&f`H})pzxobRe zJGE%i0chav3!G=$)j763_JjaY8vX6wn6uZhzU`AxPcKtFy$0&(rMy&Yo8uKg`O1ku zwPX{iu3!s)oXECprk1oU%=DzUxl&F^vqV$(`&h_o}LHw<2*h1>%r5* z_0Q?)d3=5bPY*9v?#R4-z4RKM-k$2|WvHh&O+CHo>gmDdlS4=|f56jo#|Ae& z9_)g(9oyKBEo`60Y8tZDG~}phNL?y5$5Kg5gFkd<6Y(I4Bgqnd_J$uE2~ z^6zxpCMg!jzl^Gjz(#5s@@klde4Et~rlCMhL!(sF&?VJ0$k?*k{^J0C?Dg-ai@@%2 zZrK4ifG3NCl34e4qc{NX&C zQ(sMkUryQVfw~ABq>I3mlXo7+w)!fr++z`#p^Ly)x(Lkmd49(78Zf=)fbN2$@0qip$ zOBaEA*Dwvu)HF0#(~zd7A)%%L=PSiDm^k%vo!IdrFpAy{2Ey2u_*8=&1@(ubZ9{w; zO%4Uu;XX7B?gKu0mhdh_t?q3z?^DR~^GG_hU)VJ9*uI5Uyoe?_SMMwEwTZe-X9As{kULdIq65o0+cX)5BL? zGW2}<4o=+L#(IigMJV!8R_Ewk($3E%HdjrcZLfp0W8*~j!Uqu-X$u3_VlOhW6As1y zbvrmCtZCo;Zt$wppUAiTH}6H-b>F*?_IRHqy;q@TqOcyz2b^_3(!nG6blBE=kdC^B z>FCuDARRLW-6SStu+GHY2y;^B-yz-o8@AnJKI=@qhR|l*%j=m>vF2W%6WW{`SaZL0 zUhltx=|Okihjjj#EH8S2^-G>*$->6GE}hSQ%N`-Lr8l#$WpA?P%85)X&Sl9VHxmA; zbJ+W#li2F8%Lw_%5iCFI5Mq1u(X4r#Sxs=qn@89hA!XieFvHn$qj`c=HktQWc(Qqf zAWkvO*?Nn~V1qMEI`KHubmFtKOfegrXNIxx*Jd5DKHv0YgNx1Uta6FDl6Su`7x3BT z=0NO^l{atGov&wa5AL4wYna;bLOb_;Ovw4Swx0w#?=yvlipWR`8 z&vtj4PJFiAyu+IJn7vu$e)BJae!$FQM-Q4?DBnMrlZneCW-Qx1YR+JlCrp0=d(vzo zx=)$I3G6x3iiLkN?T9Xxwt&fH)>r?IX?g3PUCY}vu$lN&ml#~tYJ958dtoW-G8rG< zs^#be5*!1I&rHe@`P}Ae@lvg3`<807YJEo1uUB-;Ww%zRB%JqetDijd2;{bQBP?2m zm)Tqqzq#4!XJ=4rMX5~~{n-sOK1HO^5Af^@9)iHy|LONgI}CUPX~(U9K-%enhmm&P zz^8flFwK9PX_u>*cD;gix(#5f?iEaX+{d)%%WT!_5T?DKW6i$9d0n_4(|#u~?Y}qM z4oYV__${^?dN;3!ea>|FT9%BufHg<&L43weX34lFEE(Swb*NW`#w6L+GQ(!pSL>Ok zZ}()X_4F)Ak$+>gicNgfTAr%)%u-!yg;`GCq-dOI$>Tz{l`7SX2!g`Xi*%Z@VVY{H z`s25PyvW=8my~RW7V5>ew3+zYp{TE)c5U)Ihba?o3i{dEs$flZ{%nh{uDZ$AQz9>D z_zCX+9dUy4{4z(JqH*a#6|HUANYw#TE5H3?+cvS8O;tG)s+`SKIlWHAMQ0m(yJMTA z$IHEP!Y^*A3YKb!+P6{zmGY&jn9tP4W@f9t=^JDX@c~O&w5EK>t*kx$3`P9TTA3_&|HW&LY& z!WX1EU|A{aSKA-g15?b49qB(PWycKHW#x#ltc*LLw#2Vuv9~BISi8XE6KqlVNN8Pq zifX9p;1B?o*>VHnXi7FkMVG%vA%H z5^Rf&3DwJyIt0gbR2}aWbUgl@JRAQsslGLvuM6?EScv1z*`_io@Hrb#NV|f#!SZs< zOEF9S`;@+g;+2QtAfJWy5pNH$i+HIvzgtpuVspGLXpyESz?-&2VgL0Q8KcGL`9J&K zY+~Yd*tw~B)}bp7&`8Lnz2{K)ByOE=&vw(dXO+`gL;Vo5*~5}?rr{cAvfXuZ>)``& zt$j<+*xn;Gvgl)QHYZJeGHsfTH)Z9UePeXG^=2uqS+*_Sm31HalTv(Duwh1vV!DQX zt)C0pAwDNZDsVDFK3l8ruzP$ujN(hX45&@a80s4LpX476nCutib|7Ajb*}?wPw~%k z5Pp+)f1Os?L3^n8F%Dircz1X3)I_IuUxX;~m9{Q>dI;U7*&H8xlM-J(q>+!B4Q*mO z&amNJPPTPO;`{~

5sf4^Y@PdxW=w2kh;^4BRcv4w>a|hRxOh+&&tB+gAf{bKFf?KAl;`W zOZNTZIizzAe+}t=eOSK#t4t60mJsHh`?9H*UUmjsEq(hh8X9u1t|xxrEj;&Hc;c6M z7q2H+Ve4IQ>(w*n>n4qnV%>uq{4cC3sVuH8SyEWOvT}KG`NEZj6|0t4^jTR^S}s>r z3zrpERMoX*R+g78uUEKa<%-h61;xvYt11ioR+d$j9NMRUzrF(s-Q~am zeO8q(D_?n7d7skdiweuiOO~%%SX#KExMWFLdFie-u3BAHZLKP@lSh}cq)$;11>eUscRehJ#!y%-is_KPh<<+=>&X94C zTjfgJ;t-N+xujmAUOiL-!YECzSFfzJv~*F0Z(UqoRVKydrH6$oMRHSgXlZ3t*~)UM zP_nXoQQ2Z#qoYNo#nr1S9S*nybYO-jP+q8>ViV9rm2eG|m#-{YCSXd?jC2SL=^hn| zm!nEC%7N`}061%(nX_>xbO^ENDG-iYMJTOWMWO&on@m)M>jPv}6^4X>tf*YM)OQS! zs%+B1!qSS$(vsrp(uHJpS$SDC=qHM(xuRlK(P5Rv6&2u$lqj*lpk4xYB;s!d+b$*% z*|bay*+iFgi=TzZMF$k5A#Y)i%8Zal=_ueu2dxoG+Qv#utvZn_33d7r4gg!@x-sc; zfl4qP4kiA4u^mH{B3Grgf*q`JO?e=t_sUu8_Y$rsz>P-c+Gb%HS{lK+mx5oGsH~>i!$E z<&QD>|8K@!xNEM%Pn|6fSyj5KRHn-?EkRdmO`V*R!VCfhicg)e^?vGvVXrQ(;%tR0 z0qrisbb@&(Hi4khs0FLamRI*FE5|w5*u0B+Vcuoee%?iKn0Ikqd)`H1n0J9?Y~ID4 zPCvK|^K1MX9r?Kyr8?K*5_HR4iwa?`MNd`Lm1X6e;fV^T;N_*baSix@lU}?Q9_Umn z3<~@N!^1UUh1ogQBtARGW@NCi&N&#*YRthXQ6``tnS=TJ@%Gc^Iwk772NQX;Gk7#V z^99iweJdrpFSnLn+cV^VP;y6AbDlM)%_xti`ch9|r60)Hy+cPa08 zn$dd-KGHE>#zL&|Sf+X61LsocVLvJKQ0%F=v81!oO!uo-9=EA&k=I8*H_Y+d$9|ols*V4^r22Wq(FYge5lRj`FHT4L@VmDF-iZ6Xcqvs zvTeGeGs&aV#pfNo9!&x($i~*5&wagDHo)`06YBGMmam_Sg$0p^B%NXkX0_8qV1Lkx zxE^LW-s~i^$k)KEt{$Ptwj{H>5Q1o73l5_)0wbX5Ss7u;l+_%p{3uE>se*P;eyHA& zPN6MU8C2+2$Q?JyMPLE@$Uzbo5{@*lNWm02?eGkd`jKtnP?aI(TvuvFmMwN%0F<7N z$6Va-K`>)LNQ@!;UxDvRSf`f2DgVEimW*K&WWVkih1E zJ9HxK>G0y6qDh(#RUn52D*DNE(9)nORU(nW>3|}7lN2l@r zZ_@r%BD%;R^vEf>Os%ru@Wj+np71M0^eqH5PWN~wJf3daAZR@C+{FZm0{kgn$5U$_ z#SAM0P|YML@R(qjK+lo`&|R6#EKalaIN7m)ml#CkOY3-lz%6pJiw_O47GXLqU>!=l z7vxNAb;=1`OfI=zB(`rVwsBd8WjT;=Iu49l0GL;~6#O{{dHhjD@dpaHjFb{XO7xj< zfX}?cW8+UzmTZY{mo&@Fc4Tby)3|yi2RK&1zKSrQUlPmc=5r1PGN6kc<8n@gybnVG zwtAvd{4nb~7{DAgX|y`1P6#V;2dUs0Qzs!3ge#1FT-i{T7RtON@lCNgfiU2l<9=E(fH*x z?vZL~nx870D|*b?&q$z2I?0oc)GxMAxAzL;gZXjXqeN3CK>~n~L@AZ`={PpXnqerR zhB%|$&=0|Lx}>!HxD>9({f#FDH?Zwr4XA(6O*g_ldI|fbV}@@Scn2g`J3`Wc0toWY z6%iEaSavq3AW#Z|jQm`U`jiC&m~&dfQr()7A`4H4juN$0&PK_I zq|QS9K+%u4QAsOAt?!)4++PHppLPpO~ zM&D-cSVm%bz+x9p0Iki?O(b?ZMN(YjdyfEBVls-!!f`t06C}qQ#A^Ro&rSLXFc!3= z+qsT_+H-wRKNxhb$4oxjDG>C2vKvo7c5bI81=YgU&o#HpP)b?BP&4{cMJO(vvt8W8 zQ&nru#^{#Xxq>6Of1N0$YBIfTnvt+o0ec~Cky-``*RakY9nJ~Ah|41zW5^_u!2*s8 zwn;&WRRc;XmWK8tO!_*dckn9$7*97E#Eu048SAHXjJ>7wHa!=@v;a~vs0Y40Oo1pD zqHA&&80!Smp*0kHbHndZY(F@mY==7RoHq^zI}J=x?;kKkoGzU$QpHcIHj)2(z09`Y zPQrE&)!u$gif)reFk0Js7N@((r>3?C4uJQf7lD}&i*CSC&Fb=G0sa@!cJbwE$|I@m zI^~BNPFbj6^}Q_NXUe4Go=~4OfRgkGMHfh4idqs(P|M^wY6BXH;WS+3zc|^Tb56KNzf;vc_6nJi8 z;J5(}CD<9(Zqw!u4YIO9OQ18r{6ak_ub1mJKeMTyArbeA~dw@eB z2;JEsJV{9{F zrEK7li7UK>@kA}-HbzjW$zuRfCBME6=IbvTtDGGK4}XUXJ|8&)=CCYIJws5cP8Spw zS{HSKkBTO~9FYA75IxZGBw?pJGw4hLCz`N;O9Q7}fsc3(^d3`l1kh;hdQxbt-~*zb znlR4+qFCNk^FZsIqFsd5$aZotbrFXq`#EnsMW}2Fp~|EaV1Vg@N4{z{l%&nz&5(cE-wvzkg=&WsCytQCs#nwrUil};^0nVUz8gfYZkV7{e zE))@4hR`>79@i{LSrnnOA81a>Y=PcgOfIIOjuV@ks@5wus41adZ-tX|D{$2^^yW>2 zf8sj_1cy}3zRuOYYI9m9OK;5U?y-mV*yzXgeASM7j!Q-4>+x_H2&?NT*I6JeXfbaJ z>uXRSHXGh(%1Kcy2`a}q6zaSms{?cGxx3@KpU3LffX85klkUbADSECN_cPEPY$3Xq zZIT*v2ORJVq(XqwE`0h$aDciW<_3t7+1zU&`8z+G!J91Ac6CoWdnP+M(n;s^OS|Jn z4oy|un#lo&t|}SW9f`B&X$kxwb+|>+?LjBinvnK(*HsR|*}T?Po%M#bxYrY&L@@Bc z2F+8P#m|%u&(j@J!(s28iKGJZeMBf{IHc;bws#4M!1YETt$Zg+qRv6k5ilK+V3L_}`{hMaLDbY|?fDIk1Iu z2D?R=+hpe9!pq7p3(%sqdu|ajprmERPmTSEecYftO81Vs<0`jcp(86vgokgzY>-No zLgqUbry_MooOIH{%^QmOC%VhmjNENG5A=zR$N!T}xvRaWy-Ea6$qJHI|=R zBONUWlkpVi;^~sI9V8@2GlZk?7lhg#Uj6dVXYxq7mb6EJZkS!g)YU5vth5L+1BGf&{2)Wq*yKf(p4 z+j9+466}L~g#kgnXd&JN^jdh>RtkV+it~GN>f#-CLe3*V0mMFN;5MppkD8*oDoFI? zwo1Sw7yP5FrAp1f4kK1I;!u&qNxi-Yi}vT#Et*6hISUt@CSAho;@N8&b;cPWa)CEo z2E;9p*asd81Cl#jJbs+Y7lq?33%HX!>xT|v{q{+(g`@OViwhwTp{xui1F20!8;T%& z3d>iuTTQ)zs_#d7UH8g>`d&7OFX?eRCmW$ly7Qef{LaonqdRy=EMyxV5|%^Bc=Khr z@Kq%2xuVt!k5t3m!uck5?AKA^`52COqLVoLxf*EQ7K7p*G|BcelMiHo74(-egr$Y7 z;@BdOEsoX64@a22X4XI}d00sY+74hjgs*MEc#=Q~kupC@YZ7;B=-1;Jg7h(^aK{f- z7EW9A6uulx6q$$``8b(t?aD(tr98>r?xg%zx~lQQ6qWDpCpJHmBn=WxKP^-mRES%T zFco4P!=b?}Xh4c-535?#m6;|OcZ?rb5>%+STSUPYq6FO_g{4AD*>#XRM8QR^t)H*L znXyJVK*V!32^=V*fdlks#qg$#9-cI4g??#qp^Fj_NWYO`5WtYsUQXWDPp zWOhK!bUVPcKrhoAOA@F_5JBb~h~xx@fb4e#vkpJ1rGplZX`w{cejG0BFK~_VH5LGh zL^wi}7$w5bKpqBYBZrF){b15jS4Kdniynms!O?M>iVk6sJ~{?HNI5ZcV3T7R-aaFA zDkGgoe5euG0OyvZ>2`!GfLVQOjcbE(`WwGIRcnxm7${nSG9B!Pwu3fa(}rV5bTDwM zma`Bz;IxleVJwOpX>E7cWpi8XgaIJJSBpJzp$767)RE?*ZD-^-nE^ZM!m{BRR_C}L z5vvXIP$GIslF@6H>&@EbPDafTBjN*VE10VebrF~e&Z5*1d}hPtot1|?1wa|=tFz6d z8#okhZ~>NbX}4T(>5CYb(1}dZWE)uF?FOOs!Whj%4)%)*g^3^>r4IAqi8`&Dg6V@q}_5?Zm4=PS>P|ddFktiFff$eMcLz#apbTfyNDI@q^INV zQKrtwMsnp6U=@q%N*fkHrDI$v#1J7@pgV4OdS@)yq~_3Lau4qgOROaZ(<`y(5;@MA zjJbeoF)lqveD2RqakoK+NIht;@h`MCmv|B7BmhBqxuck;_t8TVd)6TGE=KBj!%Ldqav1>xwoa#km-2use)RYT2yNOUSwCENF~-NqM5sLD@?6|?xc}FBkONLn6K{9 zC#gg)&M5cNMoNjR6WGD}J>(9;5+zJw2P=SyGT#Qm`MMIG;7{o+Z%^^(P;&)JF!N5t ze&P}HNoJq`EYsFUvGu05$sraDbZXt;=bqL!Rnask7*yI#vw-h;0#8gVyKoW|iL>I6 zOHvZxU#{?>=|WFkkadNjgnOO@NXK;jz;>=TuGpr2oPGL>SCY_%)ryvyf$ z4-6W)3Yd3gdITt0yJFrI$-C*BK==+8XHI=>B*lT?Y4lK2ePkSAkvR*%B+$+SO&rHM zJo<-TKoT+Q4`tG!ytG}N;F^*L@mlsaZKv~acu1L0}9>PA2N*W!`jE4LS86IvlE>26=Cf{ z{2-AAIum%Akn&DqWKv7W6d4V?&*Mw7h{DV)#DT4b&S%b@&6gDX(r%=YRm`mVG-e;UHW^kT%6xqx#uhwuDN;`P|Ev8oxuD1 zI+N2fH;G{jmW~l5wgjKWO9`L)$ijM;$anLH+fYLa+IhR03mV8dQD5NVj41HYzPqyT z*OGlF>h3kHz)2c=gv%17|(MyaWhBho6C^J;f_x!gDdap#@O>kF2UJh7=hJ@XZ|6X!W!x zY*%g1H8TmtBbj{y#Q-RCf2A(fIaHiQp#rQGEH_nOR}B-CyeWSX&r*l39kiy;C9<>E62 zjzAs*9C1Oe?NF8TF*qY~iR*wE*)Y~YmXxH~uXK}pi}*ye(8MH+UA{a`spR-YOOQnv z!?Y>1a_CT?2G15HGC~8FNth!v-M-S&wF16MyYxJd1(aKNPdsXPg>otge7FX2DH!8K z9~4RyE1-s^GUo-xfnV1wci{D)MF?@|cxalO@kQrBvN)S%0%|`5MN4BYWG?4v#eZh!Bo$L??p{OtID+G3qRVt~*3<44g)Z zsBqweD`6cNg?vX|6MK+@f(VE7*A^Ti-Kr(1*~%5@91R$5^Gdx8>V<(G=3y-+Z#9Qi z%VvFtDX9~BxJ2D3H+I;c+IsKmvB>Wwh=s3@2dFF@xTdd`zjf+^r_RuE>z~{ks zYu%(@hhd?0Kkj{LuqV`Mhm@bJcL>+< zo|O2${P`H_$EPwUChW5THK_4IaPaPrb{$;!~MY6Lzy}hSe3@&}cGOPGMX* zHlt9z8W(eTw}JN*phVjpd$K-?#U+ zZbxr3?1ZdUu(^J&4nw;@PJ&M9jyJ_*$5EBap6LXszpGcqeD`;j478{y2do;;P~_!ZZArpAghuiD1JtpxeYvJkRtV!jhUn zfiP7%Hu}LAlqNP6NDDQAI!u#0b%H~1LSijN-BX+&3I;>NwE^3blZe<=HTn={juRs4 ziV+Kevtgbl9U6Kcqfv&0I#5(mp#f0+NR=ZCHTB>w-P(s92vukyXVtx_Bg(#i{h$Ll z7{;hvsPV_NCmaa4D~=eF@F-61p02(IClHjPjX@!s*fCWS+U_pn3^Z=Ud zgvX7!drcF=kOT#n26zj9-89BWZ6FWAKvRkS@$J!Cy|5+*mnc{`E6|x#5HoGl1YGgJ z9MRe$%nObd0!w)P4zM_4@qiFTL}C{>896llVgWZPGs-)l9XQSN}d3Wx$i3(6yYS)UMO) zVh0Lc%P{AsiU2OzoeoESmrgqM$5s7(I3t1qErizEFRDeb8rPbbZ)};eG70#jzFU)c zDtrfV90fNRVlmp*Q`5xfjr|e{n23GWi6#s|ut&I5kHF_efu7T}|@w2IsL8j4oCjyfbsbAl4-3w(1#c|LQ}ax1_a^fet=agiAY zP93|>UaFou!6@odxT&A+Yu;05jV`@ zmF8(3el>!Pz^ez`mDdL#86M1ZHM(huk7S}S#dzM@o}b_ptt*y)54ZX}^>ktdKO21WpK1 z38|sC4SjJ?)<``5ntXXgO|$dw$ZK%J*-}9z*lGY0aRpyNQEBG2pe>FG5P+_=nt9_q z!9!x~09Hc`HA4jcOi6;l5Ihixx(7bhS=#=@OIu3$T!TG+1}CT+meEtY(7z#kHG zi#G6))q~tnf3@3FQ;1kc>QdZ!XJ6&3N2Dj_f?uib8jlxpAfOKsM3A)84X>TtvuV%; zIZ;K~FEewQ66{b~6@_`;ZQ!AsNh-nY$vfOv;YwKAM z{d{c*@u|snoN@59r_eWe<&p5-Q^27>>tb;0N=YaQmQB4C@YezHpujVae!4$}P^hqc zJS!$wrzx-f{CwvN3&KLlL9tlje8r`!uaTh-{K^3}|9cV>=7Z@0OR?ct8%v4CMIl3( zFjH(2DQv8&r=CUa?n{*$(?^lP6YfAFEE-5Qt4>vZN z>e`bN|ERyi2YtEkjC+03z;m2S!nZI7a-@?I;4K7%&~uIl($?!YYQ%L_>xUT(gHh(p zFk_)xd5JApFV%ZI5x%wdaTWC|0;XNk@k>lZY{w%vK2mNMS%gVKU)%&Nw`HqSnirUy z;EX#Y4i({p=Z10x_JT;nAn1EsLCrKijozFBqJD~Hyr}CAkuQyJ7@j6%z<0h_|4HAKZ~erbG+X9fC^r~5h&0r)xY=<_vXVh zL(FSnUx6~TmQ0mJG3H~hQh1DKqRO?W?*Aj~2RTBQ?#ssw%Mz+pO~HJTDj0}F0HC4p z(7&J_8^bfV zR+FN$Qs0BGMUj`-PSGX2NZIdqTfK^!qece0tF(i1A4L;dQXs|o=l}@^YM*{+oy8Bm zJd1Bt{5O6i?*ILy>JR*|?Ek_~s`?M7{KOwsO@6LLe;E#66p4S6C49vNE4tXP#L4GP zXNMR#E!9a3~JH3y164zYB-L@Vju(?AY(Z;SL{6`CtD%*4Qt;fgQW{(H8JP ze(^1ji`r{4xCt#L2a9W25Vyn(>sH&|9P?gwtNkx>&~UOsn2MZZixSwP)OJ)kQtjGuHABTNZ$s5wy2Ga+o&3J;hk1R56v zE_gw&o*ToBY_X%o*aBA%kSZNx1Ef~4$@)G#H#`hhzk~=#F0_JJgOYMDNqHmoV_M=B zfd-lB_&r@PPMHJEX9+xS{G{k3Ea436`TFZqahFQs z6&<|C8>IxdwG?CvO9R=!Mb^jRAP`Dq_KNU96wvHjcuzqTR{f54UTpza+T<&(p(MZ! zC3!XL__lGJ1j~5a+hpFY;RaB%vbsVX-zrN2@&W=<@S!GPo)SF7``Ky2bK*m}gaA?_ z2$Gtg20>B>fVvzp@231~gJq?EBBFv5DnfQ-;?WKm9Xs&=zB+Q*ZBtZbZ+g@o7h(j0 zPigQ@2(=iZS>?u?uKy78RHZzLTsR-YNd(cnE?X~1IkvvMcZ{5oIW+D`s2-INpXUA)32$$|lW*0uvd2m< zPP**Z@)3cDl^Y&O+!GR&wSFV0c)*btcp}6@29NVc$zrGN8+r+H7ng+U5uBD#58|RC z_7Fl86oC*y)^FN_9jqSL)%s2(Av)&957EJLN%(=vPQqS!gtde#ykRQQpvap8LXjUe)ogSQjLZM z7xil5!_zvRgypOX2Fqv+4DJF(Q>e=57&J1{>4v@7q2ap^>tCJZfUis~VapY}HSTKz zVUiBg;W~#fftq`_kxOMSY2@MU8)6j5a$3Qu5`ms=^6PDA{^8M1cf!cPJm8PH0UH@x z4+#<}gNtwgP-f-8g@m86^pF^8WIH^AGNVMsS!e^b68b24ZPU-tL`2J;bREAaQlovAUiRA1)lX8;1PQZWI$qa5-!XSC^7y8 z?dI-;U+5Q4I=BwQ!WOtKb{&N}D3SN2#;MxqhJ|}Vb5P$w4GQPVX;Cx$pb7yP`ah)4 z;Rs&E%!7-tUvBAAg@Laf%4qkyYDwDwM~xO?2j#*O@I{S}gMNel2AaBUaa&O*tR443 zrjYGw#B26-XU)D?(_@+>P!+__174KSRB_R2{bFO#VK=?R`v*zRVARCp3B|+XtA-5N zBpnR^a#VVCO~pplnDe8H^LZ@mqWrBL_gI_PzJJ%VUst&6TIHVCKfv)%wBP@NbYD;X z1vl-HGOm-W;sxkT6z8g&xqg7FU+zMWVi>f?U{)bV_v8n9+^oNF7N@RG4NmPVuBY-u zwWWrhhBd;u+MAbhtw>)XtSA*;--;USIjtwY3;pP#t1IKA<32w6WGI9svEs{*Ca#YpT=T2ZR?%#vqlDg z+{cXn_dg5$i+zTBHUihQFC0$)wRb5qBRZ+I0XwmZGswG9m zRjbQO3j0d1Z709u96l}#U0{q(Kg?`mA7Ms>YBwM{YoD33`!1=66+>u*kX^V&tymZi z;A%(hP^GA>yt-;t1>m5DLY=s>d{NnAl;JzX8UjS!5CX(?i1wjbh!{e1V}Udv7K<|C zuFkL;p4IpkGD`GY$mmQjNkr^J*WnudCckv;!=QlRzhsT8@Re#}j#wnWs7zpJRlK}Z zZlsR?)^ccoS`yT2+XKt7GecBJ?JexIY*Xt{X|xK|fGJ74}wV;+~w_iKw#r}!i#F1n(JB%(fyT?_TDuIS!pvYYcmlJKt@rpZ zK-x=MRUl^&=D=gfZ);nakdR2u}CQdAzwa4s< zedg4wx1_YVqG+Iancf8wZ%{UNp*vw47TOeCHuwwb;h{?K@Niw*T|{AU``}c?yvvxo zhRfiW#jn{BJg?$a%d5k4lzG1mHPtV}B`_7NQK5J_oiw;;=w1C&+{Haz&=b5~A|6~? z_8*?$M%%~z+psB)mNDlQ@RiNdTb<6Uuc?kYytf*@EGno2i$1(libC-#m(s5s;g{F7 zLI+ry!iz+)n|`<$ccvy88^xBDhOxbSs7p)Kt+AV`@nN*!+L|8%f=Nn--`{L(h8YIW7F5MFb6TbBv`9@=-MThH%`Rm&@W+|oML3@)rJ zI}|@O^y5JMx9l(^f;HuG|GQ0PE5&-$GJUWFaeEv$iE1p8))7}pJH{KH>N&J{IbiEu zRYhru-0A`uPpYbmt9>CFERf4pZ0s+~%YcNhfghW~6-{Pwc~u!MvG@=30RsVYQ$*I6 ztt^)cVLm`_VNL;UvAF?He2)O4M&6;lx}ucJZB+Laa8+8qu&kKCaa|O@sVZGwTH>iG zsw!JtRT?8LNqtd8^^(fc;)QW8lq@M#B9mPv*ZxTa9ah2}biYcu1H4NsE6XX$*d;25 zxg|aWkyT*^a+NB}%6%{;8Dl`L5Mw|k6$*+uI*L}5uE1|UF)V}mq@=167nm^?lvR^q zu-@o-!OE3X0CZhkv7o4GCB-jKR<0szaINzl?shc$!QO}2j~yp}6%4gwvmfs2oc(-F zo&6ftn*C5g6&igcLozb^F?3-69-C;e(?!fNJ8Aef#6?imA2xEW-rJ>CAMaAD&v&WS zw?DSkjhuGZGT!5-=s-K99H)I_tj{dcP#kF!@W5aJN`UA)FvHOk6e8uM?K`AzqkStbE^3jeJ7HOek@w9)nz}n)ng>)npmr_Q|y$+`!sI<2(C#A z<8Fzy+9}344Db7~t)3%>zmK)5OOTJn>g*IgFB0-Iu~uOh*$3Oizj9~tUT57GVs%q{ zpkrAVUa!{Kieodh0(Vf6r?lQ>UpO@PgR1+%j_M@gd_Xu~?x;=;N&Y8RCsqC)Ly>@-@B}3_PD-Fe&ZC8+F%~8m5eS;#rLMzPVv|EkB)p08 zyM*6U1Exj}d%@J;ki=<1Y&)RAK6rwIIq#J=+&fc*<1;Ms@lI4zWpfOFErx`%Oqe!O zD!dhw2##3%@U$|fCnWNIOd>)025T6eCgJxWJZI!0Y)kVSNvy%wR$0UGnb@ato?;7U zRKQ<(c{de1HV-2#N%SIO_qD^$ZFzz>O72oVTIbG!2zM26sj~n;@YAvm)KA|Okj2(6 ztr&KpQ6W5wC1vHMyS6@a%cHt_{Sj+3@07V%MA*nfdpK6$YTWTv=NZMpdB$~Z=NW~; zd4?oo4m0k;(g3cZdQT`0tAzM99p##V6_h16#MI{&xPmn*gun_g5ofHNY83mqAXVL% zrn!-aZ;Dc-})4jNe@#XhIG#JYgcd#4f z5_wO?-*p#$zWamO9zd(TEM;%}IUb+iQmanR+F0I@- zQc^*ANw_FmJy_)G(iLJuYnd$?%CM$}i3(;Ari<%QU1f4rEpXhzwyg3H7-F}g_Hkn@ zninnS>X?NqONvTY$@L;!9$H$?<*`)9LLJv)8ReQyON*;lRcdUaw&_Ndg-^fsYFjk6Bz?%}5d!{V1+jQB_tI0H7?j0Q?4n zH7r9;F|O~B2Usm<5B_`xE<^l>iV?pF!5~yh27`E$jEv!qH$F6^&tkVVB1NcCLW$yxokzn^3oO1n&N82y^08-Y*86Gun3L`12S>dLxV80g31u&3D;~8Zg7pxAl3?K zP?-aUX#~-qm6fY~00{SsDoeeFJMAR|l)Bg=evZaRg@A;c74Q&+5;MYuj6P|xYT=6F zqLS)LKQi3ys$!?QXw9o4;89kw1l3u9>dC93l9iQ|HXew(P)T=TgIk8lSxq>ta^6w> zTK(dUbB4WJD-NpN(WZb~NNy(7KfndnlehXRd<*Zv>p8p78$X-kfcw>u-WPDsf-ZQ? zmIWw>6YzuO{+ANuRkP&BOj90J7xf%z#74Qg zQFQlZdxg6wLW`iDyqD!smR~N>3jql+n9eghF19ERFukum96+g`oGZ^gc#mdN1_! z+gMN1FubGE&@a9CgPAy1B`x2^=_FgP=$G(H4@EqBWo1>;F~zXXweHvH#I5{ssW_l+ zORk1{`s3g@MFCTHp_Q}9&v@K|MI7k4rDRiAnHmA5tAR}`uH%BIPU&foyT=}d7najy;| z>}OcSkY#Se5ry8hq@covBN*X4Pdr{pPgEXCSP5-)H31}&AtOtFmz3X2UxY}U05M;nUUPKL=DwzssDXzqWFRm6Gz=kB;e@}Q~|!57Ua z+?d6+esBYqKfGFS4Ev!yVTx0ixDZrq;fm&A6@VwQ_(fsLq5%)Q_l_sB6y}AjBXEVm zlyvoR@0J1_{-8&1y}uuBW!=EWx}wH)Y#aAcxPAIPUwwH>CT8c@x2F5{WU@}&8%X|u z7(eaLS0VYrF+3Q)6smDMOzSCa@Rp=F&3qZ2b({D${zSb5=Um@I*!Rmd`wpk5VtZzz zSo5#Rnz2XDDf$PHa6WO2vI%VSuVfp+Qk*H*{cfzl{c6u1sX!mudDYzP;8qLVWbBck zv^9Wp3nWwaUsxzV9U&gBe}Y8@o`69)q#iKwl7ZVdY2li)x0PIpxUvFY2IvQ|5UU5> zJvf5codmx+1-lsfYghp%`%^0HA2RKyc5oS3ZsrG1uYei0J8w z5GjKcVY5SCxWxY52S24}_r(3u0J$LF`$*y>Zefy0C%iLi5?Mn8ew%`UpaJz?H_3UL2&**4Othv5^!0Ys+|`Qg8@f_yY*uqI>oL@W&(?$zop`Loqx9 zj!)FY@xXv%mw==Dc^<*BB@1ifc(=o`<`{73U*#UfJbM!AUhov{xH5+R^GWoR#a2pV z=!a)O{}n;M)~ds4!i+%5Kwiakq$oVe;}vm=EgCLyi-!3y@;}p}!Fw``R{ekMy=!b` zS$5xdyV*U`Xgnj0BwMm1%SYAHnAO9o=Brq&ndy=FxU9O9NL+=TW@poPGA$d+oK?d#!zB(#w1CdjFs&8RotI>33+X;#EEc zbEI8IRIQtShm@Xcck%619WK+n5K-QHwzKozC_qe6M(p-v)L?!C)sOFF{UHVtVr%2sU%1atqjWS-+x@108B*!YUV|7wTJsPtsu(ah;o-G2uWF> z$#;gbP*eJVa8e$ioHgZv>tT(7bq*SXRxN1^04B!4n#SM{KRJydEQl0|e>yb=1K8_m z46IJ3G4OiQ7` z-0pwHofr-FgG7UcUh4077r~4kdvsAp$0Ha_0CRYWb_U|`Wfxpi4IafWd2G^8#5bc8 zCq#Uu`+Uj$FK>@MN$?r94rBkZe=^En`i2L#k;G!7%apCZFW~=8!vPaD9fUp`#;T#e zJ+_p-cO4`eb5Xd8zfv)IK{AWkiV1j<6X)a1e_Lo5AyAe6iWxO;r^>@XBV^r-Eu_(n zgvORlA_61ewL&Sse}bw1pEh;h8mYELTvX!Fd^LX}=9g<4KOB<51sfeKtG^7{aV`d( zaW`rlKdJBhi-_!Do4q~soq#;tcT6U%%(18T-S4sQI=1*25}JoW1msF*B_u$ms%jx3 zhqDK*G+#E#MU67|Me&YEpJre6L~Hdo;8b5hx9^kE?8{wH0h?PX{d z(ST9MupyzxPsRK4JE;eomEK4pxoV*s2~DC|L~Y$IRs~%~*fKIF7xK>~AK&?p$+yw} zgw&LeFP9^gd4-H`(F~r9|JT+C2ESa-BDzebA0^8N7tB9t-joD@kD~&ZUiR%&s;;w+ z|JeK(QSiX|8zs-t4uu_sU*tj!Z`frJYPd`yFqG58SMFtsjkk80hbKdN4zf?>CBe~w zSnTQoTe+_D*taYR3xQVMBF}QKCW84j58y4Cwq*@#vO5hk2~e*^6FfHRuRJ~9KRCO! zfAm$EZAL@Jy37){LTHOROx1hRqLE?=pT+Xae5cM3fQcZxm}*OJatuu*`Zv>^ZK?iBhEV0D`} zSLiR)4FbvH)g|r}T4e4Nt}b<_gqATrZ`hqegE$ig7n~^EOimPjM<)tDU+qLOI0co+ zrmNp_N2Lp&aB`vm_oM{z+m#@CsVPA`aMgzgkXr>^@ymT2zi8r8mQ#R5(xotyfWJH1 z99=qz(%;zcH!;H{Aas#0d}{1ZyZG|{*rEvspBekAi4VF)@G$k_S4Vt&@x z{~S%>GoKp!>)wyTUChcq_U~KKVktahe^Y2&c3Zd#QYZCP3(o-lOOmj(dKgp-{Hx?ECeE8OH3R2(akUJ&ADOo*8f1lHj z(O?1fLq~SQ*wI8M|%w zf7q8-J^K`5&nEAyRxO|eWOksdw~!Ey$obvUKm2%DR$8s>0r1fPew!MNUD)sNwlBLq zh^QT&xNxuI>FC#yK0I+{Cw$SKy!DoqtD+%iAL&ch(pTlJxBZ!q?JYku#E#pv(KsxB zd;Xbpeg-glOUK8&`6s0=K{T44cu!^fDiP$Mm6hSux3No-?7uHLlW;Och^-rBn{zBgBayn`D zfo$LBbn$H?0?dz5Ry5#mgo6g`rEir6NDO!-jr=yzfJg^@4o(OEs1x+SQT)P~NZ`5w z>c(9nNXGt(i8z6(+8QLP=tkq$;TnSVDd-JE+?aR5Y}bqjIX}!Pp9!*B8E@m~8z` zExsMp^w)1gP5)L#O`RMtO^Xv@1AIS2_|38E1Ng5Qk6<-EKlX1XBb=GZ zJg7X7F6+Y6V{-t_8rmKh#Em-5qp zD2zi)!%mBc#>^WLxJCG$A({jK2Z5JkLaLPiTWA#!*+*}6_(K9gV&cHuMf()!uY%4( z<9OJIt%?AX*qKbSVk0~;l3XbY3H4LSZSHve|99f(t&QNA^0IBm^U1K{ZZS@r{S6KU z(0F)n*Ut@zJ=uExyE8LdI*xr`Ak9C(wYt!CV#vCY8}S{sxl!BiC`&}Mju`{YI&@!8 zDGu`2#v~Nu&sCarm|Ub7Mk}Pg=tN`OOBp@+e+?$w{&C$F7_^a?jnkE98cmqk2)aVF+8^>|N;^lD6?k317AC|~ zUuc=`Yl7K*Uxjxg!_=E>IsP?3gpC({PIT;YosNgn2ZVSwXNMFoRZ_1^e`CLDMFV{4 zZCEq_RjXEiRcrI-t5!Z;|M%_0K12!h9q`N#(D^ifMH=e3K@;|}?!W0;oD>F&ljDX( zG1f--sVTnww==x3afT7Z9i@HcP)_o?3>VtIKkBln88S4wcpdRYUq9Ez!~^)5h#OuD zBT*9CM#^dpDlq8~Lw~Fs&=S`ho6oKR8yhWI22TloR(!-(=h- z3V}D@29%8@7q|c@hV^8ClvtsG5nO5CrJI{4_Gww z_-n`Z1yefSiYl-ux-c-rBv+C0WP(44+sWO;?_qZnHj2EZwKEn{f` zO*guV+#m6$we^)x5yCg18thT$KBxwN)76|>Se3^@{X6cFuq0V@kk6CuAo?TD<`mpI zg7o}*-tejQYc~f%L`0H*fY|YxZ3^*TA;EFks`eD6S$&kG zZ;;4Ucvr*y-e5Lh1b@)&*=Z_-BH8$ilNz8Hx||?X>VshxXfH3AM9)ao-yI z?;H_Q*qX#QddODUgq&Z?5Hq2A_zoK}V#NO@j2I|)=-3lgHDL3pAo%x;T-eEI6*+lh z><4Z3vAHL7={^Vyzys6eg+$VCGYuIExfU%T@NSIJ09nprBdhiyuk*5c2W) zKoKTBMfn902f2CU%{RtQbdUenB%$A)ckrHC1cB>~x9KMA8@id&qu}ImqO&&8-PaPK zbR|)0B=5W}pRNAJz5M3bhq}(jdmH-8X1r!g$#vK3^PldPaW$NVeb$7=Fa5>~jf3jR z$0$@)OYpgjAYGxHeTSsie2kHQQfg(Df#FoljJxnR(+#BuVxz8|hXx0%bVE=n%i!R( zTsus^k;yVmk#~kQMVeHaA}x5=jpGQEDI^|(R+IHA5z)UKbW2{TiHJ0dA|Vq>qN+Yw z)zC_Yd~PREm4PHtm3g}~NgqyDe@SHQ#}ieov^oi`G&gT`4RQMMUoM8TxU-&Cu$e(+ z)&Xt(Z%yx|<3HizDi*lEoZW&nii%^Y!i<>-uzyBVyIsw`W|B$*lR@D>QPY``P2c=9 zF*jMSi=U(Em((=a591UW)thEo#mwfg{O&5U!b8840ZyL&V4ZfeWEEP=6G1|(O9o?G zsd+5jV~x*%HlLst{Rvdza4+I@a@Ix`H2I_`#HE7Xx0kNI{=7rVVN3_gs|J1y)-ssD zco~iUj<7FWnzT478!*ekv(&;od2oo_i&`f_&K4O;2h2;O zUR9r2j85*`?L9qLb;p!W_t(X^{vY^7uwcL~?=XHv^%>*!e_hG>njV;|+G75L7css0 z#@GkmAXGo2cwp8AzcWJ#9m3lGjCr;R`wG$b!7=7WEB@sL__>_g{;CC_GD34%=biib zJf(Ad&yjBziF1K{;##E{+bIHBj!qxj5ygpAA$noC|q)QW9(N$ld-?*y<9zA z{Dptqr^^7%&FTXLd~a#EOv_634NvQ5ZT7tNO||3yF!2xq^(9RyJ1Pd5$G`D|bZ$2P z5V5FhlaB;q{YbH=(HjYv|E|r0)UJ3YUAR+~Es;~uk~2c}n=woX zR?u)D@{x_gW_WY#zmIGAFFTgLLFGsTMDp9mU{OYEE5}f^%j&B&@{Ugm6nty!-|}@# zkqotwKD8}G+Uuvr3jG9iDlq&RfgzOj(PYQMf_-;buymN5ima#s|Igc{@Yx=%VyV?wCnOS(3*MAFJR3l1HUKed# zBN&M`e@pQCJJmSCCuwVy9SHym=N)iuJCkeuWkqbqhegvoep-X%TDbDo*xz%VXl(4i ziYW6RILeHT{nw5%DICP+1%P<#Plh&v{$I9cHNs^3@$V%foa4Vea*pHEja77ND{c!L zP=YB~bgQAihfT3KV`G2YzUyj~J^Le$jU(Y_pZ&d6fC9_@fBA$BLH~fyM={9%z-MiM z(=g)rIH1#?q!5gx5Grt-ri=;@kxQcAZ%~C*f8UDPf^WoZ!8b3<7Sz`wA07*3oZg^N ztalSjh>rcbf9%b%Sv~PjrvWf|w|82U%m3jcz8ToUyKxFk&QO*Psx4_C`Y)?7_`@}< z0b}5v8h(NS7MCd--)Sn>kO}W&4Ez)EBvAI@#r{su;~IvP7}WeqiD9i$j3vLL(9X}g zZi8MBI<=C0nS77fpHu_sM}CnVIxW56_-Jom!X*7BeSvXg8jS{$0xxwDG!NcRIuK%Z z`tA3VS*%hkcsIs`s+%|?zLv^~2m<*Fe~T~VtF*3bu3bh+H_zdYK3g7Ke0)5(aMPD4aa8#K`h89C~Q(Iv9LqhN`F zxI|i^_O){_WJ0l$w(P{D|D#k~QHV(&ms(G&dhw=M!iQ&0&yr~*jTefLe)E1tB^lW; zfu%`BI%yHVuoS5-!gMm~sBs{z{7jUa--$@mMIzF`5&O{ZW{lwsvuIHC;a^%`h^Y3O&DD3J=JugP&AG~`d3^RU z&gzKEOc(rg!w>^XHJ+GiexO{%rtF1S0x56BgN(cKBv~Z==#1*zIi2DcGYl@V^(B*H zJo6(?@caUl z;_3Fu(-PmkUkp}E%lvCJO};R?xV-$D)q7+6>ZA-_^73zfGG4k&)!(Xi(0B6C zyop*PyU6#2vOkJ=mY$uiC7W|2^qr57I4;*PKg&an=X>~&{@Qr_9d(sL`laN{ra-{^ zUoyW?7)*+~f1^sd{1gAerwjY4!Vi)%_M7NIU4G6r49Xz{JDBuJJuv%)elUh;NKg+c z=1gzu`S*n$;x+B-J%sm71sduhm;mZ;41ROa`Ix2|b19X~XNsK-D03FReZwz2&HA1E z$rTPps}2)OJbe%AX>edYeQo?Ye$PRF^}kX5Lk;zr>Oga0WH{NKvq(&Ddkf(GYf)wW z>=N}jOS^_pV zp>nF0@M#u_)^0catS)#HSlKVj&#r#Gtwq%H@1utw)$gbYTQ82G+-9V~)9M#N(Cg==l-`n=TYqnazwy3$i{1#uAjIF6P9y>q&t38%eA7~G zL`xW(gWQI!3oT|?T6^*-=&(MiQ&Y9y6&>KaKsX;aF|VOCTExNTT{zf3s_a?fSq5P! zw37}42z_F1|91@=v$ubj-u}Io)9>Ho?O?m~4G>^LDix!khd*pR1PGI~=X_F0Z$F~Z z>V~G2()qX(3UJ4%8yRFW^daJ|@DC8PdSuU`qe`=)Hiu=OFp$*n$lBzi{I^ z($pJo{10&Uu|}JJhm>kgkgWaB4;HzlBSsMI_#|d;o`!tC}!i=$nOqu zdp`X%OwA)3J`2udBMuuUh2L{G@KE~|NfnQsRCt3i6EC#A-eN%nF7vnmBqp}?iA>Vw z6(?ySQH`>^zrMA!+WMebmSwlOwApH}7gO9`U0z%*mzztiwFUmR?w4gTGuL?3THh?! zTIYgrn z$1Hzpyt~qAHdP+AY<4>9?XubGF1I?xv<9@Yx;ZsHuaB2glV$Vq1|u53HG6Mn>SpYs z+&ehlJ}bAM?jv&Uo!LAPIZw7v%e|xWOj;!eM(-AllFu-a`_0Yeh0UfuR&I=+oSoh* z#=kIbKW=?hirMYb6`S%|4^`!?SN2X%Z}K^ReW44u)|zFv^)t<4dahC4Uu`b}ExLT% z+5|-5+FH{g9bD|6-E8Pw#op#Z_k*(gsI|HDpt)SO*2ix$tg^Yf!nCsK4y}LzVs5s4 zu+ZhLmDYM|^NGFU`d({!l>t3yZ>=tuPg>2@WfldnF06K&#W??6-0t@_sf=5m6*r5? zA`OQ1U)y5bOl@ha(``L$j-Ontoik#_RSkH(z1doMQa)N}ZTf&WHap9$m6dXB;W49_ zytupP|7nz~?e+WRa(hd7aBzI|tk^w1=dARGFle>8(A~7PWC=^=QQfkBZWUV8E$+`u zmzzSv)rC%Tx!~oc)ve`bd493UxtL&8_iTIT!w37%o<9P*r)%4%9~u_&rbaY4sxY{{ z)z!vEr}eP4+Pn|&SGLw2?^yt8tZ3i+XRQ3r`DuUuMQ>d9z>M)1$NRegjgbux%%R_0 zUtqfB;=!D)rD0xkecACMG;VHmTOfiE^!B~!JNKsV-J6}AnZG+db7%g} z%;cRr_wL@kH#>c2e)it<-I?j$t(n=Cx!H@x+QwG-sI#!K(d=}~2ih4Knc94^(QL2S zE-Pp>o~!R%fX>-oII36FA>FE6VaY*w|2CdP_ty z{uYrefmFBkI8n#x$;tW2dn2hHpoa`k-{l?pX7_-Od%e@%(N1r?|MGBR`(Pgv(96S{ z1rz9<9`R|JT?|EZH$Lb7_SxC#{!?}`i!jcJ?2&%IqxVJ4gwC4eqt^1~1D?#yaGhmHvs2yYe7pmGdnfS6PuFOfLrHBSY$*}S%`?;Ya6A=_-d=W8E9&xsF)FYG6d^4E-?%8Q?`*87m55O651t%dVb&7f~k(3vrDBW|6M&QO&!l?G6b-DyK zMx)jjE<-Lb&C!d$FWMg+^-c}X;wBnotblcMd8ypmTq&pK0PK{}$rZ>Xm&R}dos73C zI_aowCef{K3!9m@iQ3U5k@ue?)skq^$C6OEJ0_kG4y)=IEVqtgpwAb%X zobPv`b&=_GHy1j_X{_ zg7=`^{vdLk`Qpa&=QjXw9mNovfVlHKEv6HOfm@;vBiU@Z2z)+pqG~AepxxbsX$eK3 z5-Uh%Noe{2=Fwc`0bHftL&o{@|{@FI3A`(7@a(;Sxdj9U6$-DRF=I_qT-I=+|jp^AtbMx?z`IVXJMkbYr2xph+ z^EpCDoN;_`V2?tEN89^nE5|t@5y`Ch!u%*oWV0K<&&8KGMY*#s!bpNckyK%aI%n#VKgQ;9^ch-zkL8fodPEOBH z&&d(?&R#${LJk9?47AOIC1ZbK+1@m=yciIY_5slZ!WYTcY$}d z&U&ztiooew9Q5R3>Gr%%i|ZV{u(=b`&loe#Ue?<5&=**Ma%PkuiSaw+xf53vf=dsIS#e!s9D~}=%;epX3n0A9Xj{$+ zCoXaXM7)67q73kbMB+-hpJ2@WGvHonP0~s-T2PY~d~|iXHzn!Cx(aJqK98ydT2n_V zTnnLI@K;3ypy@vzY#;3&^a{J_zd-}TGFyoSNUs(GblqBq&1)50td=fhq~~Xvoi-i6 z5cU2>VSiD-%m-JzUxd~W(^ead%Hxv2*XYi z_3R9$jY^`3EOAoOSe3m?|QGPNqMm$Rik3Og_IQvKMw61hjL% zxxVzo;W&MVFGaQ-DG7|bEI;aPe>h6n2`Vh|=Z)KHQ`{)tF;#|*1>Nr-+LPYTpQi`K zjS2mhmP5Z{I3~tKIM#R$c8v#}_9N)i;i+sooswl+l^*YOXbBJSQ*^tPaHzB~rsvyz zG?lX+I?%B+FkJ`de&ggq+>-C+P#P&dr3SgElq@7-k5`cRz+rO&A4LM`>NODsQ<r25ZyQLOC*Cqxg^AtDrNfQ{8Sn>_uzfnFqs5~tU7=1?#$Hey*o2^ zuyst`okME9bN3D_FgG_nKRJ1Ka=Q0LEyxP5Hp=zmqoebK1NA05N4e2ycA8%wKivM^ z6NmdpvOR?dr7S;Fb2p1G7U2#vZ%f$z>ie|f1+xu#i*daR?r)ZlwB~{NI+59EHa}ou zN$zI02A|BDcXAvM8ewMezntx8`tIugWunRc9ccPg$n zU^N)Y3)7Ykro^zY$sS?00cIX)j6f?po_6fc!MWM>Zr{Ews$wR;?W3b($zhlr!ehT5 zPmyN<9xjv%o%@hLvzeI9x`Z$7?!N#oqNs~c5PBC@G47ePxQ2xn@;iAkIXSskXuuIf zPB2-t%3d1fUo4YB;>FTdGZL6MWwNjXzfPRZs#VD11!<}{iqW#Jt(!?=Xtez^c2iBN zTL<;FG0h4_afr#*VjA9hyS2WGW&pIR9pL7qqvQRf15^PA%X+B|)GcP@3J4oR`dgCR zQAsfE4il612Bf6BwXsp$6Cu&g7x8kNg?KRgwDDj8yQri*nY~$z&Vm_Ljiq3r*eu zX6NqQ>EUUan_F%4%u1%6g7LkuE4RX*$&mw8`)7syn@!PZDvp)~t%=jr60Zk9)Q&M2 z2XX+$4;cDQTUvO^?pp30Y`-*!i&eE!@tkjm1I=$J!lCKg&5N1^8e~9-Lf15%$|OB(kiKnf=Hd3i zd9Qf?{X!H)i?`fd1f?20g4Y4`k|A`xywVJ!X3N-xaQk$ZaB0CK1XtKYCMi^g%kEZp!!3HE z6Pw4uo^CR!$E?1R0eiEGO&cE`V84t&_~lYxyui+Ax{-FDd_iW@dbqHP8T3-~J^Xoi zBPP!f<Ez9qwAu{#0{7GINHa&~fR`riEP9Ln76JnM58>N#_F8sa%KJ%8`s)ZEkz z)boz)lDIw2FlxD_>D?&$tS#d5egtXS#A{GMt*=gfxD|tEaLd zpb_6}m?-Fw!-a3UfK5cxJ35ZS(DuR0{(iq06pmz%zM^w?Y8blXk) z{7lYe)0y~f)Ii8LLYWMLt_)nOY~@u+LkuC~wUNwc{8kXOSX_5iT;iyJ&HD4`tcau& zX|1C1CL0VW7H%1Q0Dma@@{2?mCnI@@&}?A>_6MUl zrx)(RSNOaTl7z=tDNUksWHw(EwA=_Ih&gd`VV3bqINz8PiQp=s(mwU&jheUVa58XRFK4NXRC!Pwb zGQlSK0m%@v*eKotw{LDDzDbX{Cp|ak^n>byi4o2Y+(0VZW#*%U3b?WySpUjudtsAX z5VM_(#=rI0_^=D_{y&`YYO} z`_J|v5t+L}t8AQ;C1-W(K?%Jbb~nDkFOQH77FH$lAn;F%PC)eQs%520@ic@*bemr< zm%5w9oe|x&);Bus`)2e*@Z}x%I!FMhWEdbnpt)c$e|Z?wQ_K~wp!8awZ6{u?h(6y~6t41_X zp-OY2IpHnklf|Q)Q(q|Mll|Vo?uIf;j-H8Zm@;XmjS!?Hnh@nbC|F$uOEPWHrO;!w z*TeQF;HsnTFZxFy+3E4wF>@?*1!_cENNln_1kCvI zMQ*BMFLn-oVVrgYuQHUt;&QpW?&uR#6McFuKctz2R&W~PJhpfrOm4W_FOVuc%&Ub* zsB?ZKxz=27Y_0QyOP?`}XqI4N6$cq*u~=JJdI0ls1E?mD2ympm>&?fTviz9n0Qr@% z&t<=v+cR_1Q;@*)>$8c6vte_4fCVQc zg;m`Af+cHJT^g)p{_z-!t&YL4)4Y!%#_VMl-MXo7$ZAvW92^s-q@S|JR*`@Xi0DK$ zbd^8%yzg?bLW=B?m8xdEyg;nlWPy~9ou%8j1_wr`Q7POd6i3BmI%{cP5 z-wvo7__et;T(OpDm#fxJP(Ow+8OB?b$RBc5ptkVQ%tfVLJ()|2bz*+*f!ji3LmWc# zKusc`Ua`fAu~tb<+vCIZuDj8~Ml~&YOMX=8g_%V&MkByU8|B&}=G%3{BnyTUWCB{T z)Zt1P<>*m8a`a2M7A1p)CnfO$tyPN{Ff6QxU}JW2uhad;kHt$kN71F&5SQD(dM2Gr;wekb#r}Kk_P!AiuP--uRdX2hj;t>nhdPP zytezs*6Kznc8{dB#9Ty80H{3eRg{D+Y7;T{bcyJ;eY8QOU6LYN%Yh-96DoLAB(1yW zDTF3S05Iv%cemTW+iPoh7O^xCXXx=o6Ub8*j@DXEKh4Bv|0sY|Tg!-EW*;+$X1LZS zbX%hhSjJZved}oN*yVL@=z>|hEnt-StG(E5%V^D(-h5CHZ=GL@t1b{mLl35SsDoOv zM+*6L@kQYniE_C0CGDyZx|t|P?gI(tmVlUb3xCTVfu@N zPnL2lJtU&w+C$&~nM59OY;P&fcLW#kE2H?2x z#5oJ{0d|5Ng|(kfoK3v!^(T&w5fSd^_lvVH6?#$xPWq*SHg4r|^i!CjVU{91hA<-^ zR0xU)vQ#e0Ira)=;4>M?3|I6YGasZgdFIZ|soU4}Osq0s?>m=egePYDfue3c0E|j; zNjEe3ICxu(ju96is;g!muccjHoFmdh1Vdcl=E89L(y;w12ypIs91!D}aH6EZAo{nqnxjlV*^2P{&tv_zH3-ap3H#&Ii7I71xe5{Z|V|zgO8*I(Fn>NN$XlTCm z#dmD`r*M6}>RgnrvQRJy80xc9dc#En{m9&fp7j&efwjeJx^8No8%az{QNR=qO-_Ll zc&MFquaQJ1Ti~nQK?l8~CJh@vhq4#o_c89SF5??_HUW1u z)Cwg)vug?w+C==n@N4LqjdtLKl+2nyqBZ7R{jC zg5E(N_Ax|$t$nRLw+Yz!-e6~Xd_W1@V6VF0#@9)%E*FX69@Ol5hz zx7Y8T9q)~wq5MstZ5&|Qt=}yCE{(NYS}+vSAhAQOZLBsQ0~r}FEgVp;&SFU2jt@Ny zO(SCOg`Hshq6*ZoA$c%Npjx(;QkBVJ)UxuE?_*kz@rrQaSfd%AsgEHg!da|%PNf%#;&ilQzu zK3m-lWW*O!Z2R8u64O1z$dlmmu$d9L zZ_I2Uq_%RkMNVr`i;7?+PXTTGs5b&{;}f$+WYR+j=NaXLL}rN2$EXp-n66Rs)p}cz zP}pk}L8$Z%8L zf{QDp;8)vR5x!pBVQNZxPR73#ej&<|g*{d9-G8P^arHa2>ow<53>TDOYjU3<^8aLE^=R}wrk0FLwdew1f>5_k+^z!@bQ1$WF1h5=SA zWpXa@=cmcoQdx${;!6cPy{`Z~6Ke&1lh?}$9>{J~+OHru2x1e(JL*GA8?b1A?O9$= zxv<`CNni){O$T(T$kj+0+0fpgJ8ox-;;Tz1yrFOuAfLe_>`$}r6j+vrA9dPLF^izq za%o*bbpL8s`O-nLQeB*vAF0PCtv1q86`)Rn4jG6W1g@8ddG(!LI0z*zn z<8Py)VJ~cAg#G}tz)+ouTrhL$op7(k2D)Vh zR`R_b%l%ZFJ;oL893JoX4mg`~_u%*=qq9t3s%O3@a^8w9lrWGAi9{eIdsx0v*xt^L zCNJ)6`+xC$XiKlOsX2n6VwP|>fEPKom*eA9|M+P8Wj~n5jlKbey)%L*4)#Cnjqe?* z1}VzPY5$DGSAN@OOo4WEf&Aprc9{RH1c|*Z3L0KUiK*U>Bs5U(jF}G!0fX^paUYs~ zt^~tq&}QQ`Z~@|AFkWgKWc#339zHGE8zoh7M{LwOW5b=^Y6$Z8E*d zW5V+wR2CyNe5x%E@E;{+iN!~m9Dhe8JzN@>fYd5c0M#`pXPGR3KxO<*Ll3b-(WtB7 z!HX2~z;nelR)w?}Ugdrq%yx_2x>+{^I#PgYWF+A$>eZPH<|w|l*tHQmEgNs z!FOXj!D7I3fp&LrdG6|{zxPjH%uMeeZtv*&>Hhos2PdS7Uj1xzZ%4dHP@iiNQ%EQ^ z=K)UaA}DQAsmx+zI*PPp$VyIFeL|Y*Z~(W|i)@!xmKfa!squGXVzmg~$Yq}pt{BaO zqhb|DMsxTcKPDBV$d6eZg9CSXkzT3s=T>NY01pSX~zK zz07YGTq(q~Mzzzuq=VL=T+Y| zxGHP&d0bCjx_0EQRe2Ln3!P>hE&Gh~vqbq^HN3tX(ukhD9ROd8HIfAGwhwbLF&Ooq zGouk4Y2~5k+@T)3yBrS{R5UX2Jb}^Y=B!yTjI)i*S|r_QuVfVE;8pueYT7EPV^(8I zCSgfN&gevVU3;jzAtxK>7whMTPkX26W{4ksT6L{^hnf^>ZpA^&*JV>~Pt6g5MB08Z ze|UWjnLlugtK3e?r4~EhfaPZx#2rH=sT4JhLY{paZH#O(N9^7d?O1I#Hy}7|CE|s6pAesSy(45tpO7Kgdd??OzSX}B z$sg5ag$W{m-S)~RE(Vo`j0Mu@!w9VjNP~_B&nJ1LDkawuBuuS0%)OQ)%Q08tlFH?| z69%G^M|w<*s@kN*3Yab=^d;(#4j%J|mwOl?j!LsKNT%3|ObWRqBBst}0_}aIC=>I} z;aOLYORCQ}T$qt34{#bqu^;a~crQJzVhiEQDIC?ze2lqCa9Vp}it<`uHV#_Vc`>)W zrT4`Gn*^MCrA?xt=Hws+qMa%^<{9x$$t6 zIkvq4n2qzxjHO6D(-2H1NsF)i;H5?Lw*`ZVbj4yowZxqftSP4Rfkrn>`S$?T zD!%3>;6X(Mbc=2{8_ck8HN25EGmQLZdvwt!}#{iXhZlRt$mgS?s0arjglXnxPTK zHHxk*yFUWW*yXYiaG=6-h6lzVz21PEgRh_Ks(}PMemo;jjFF)P~dcv7@zS)$e=Lm|T_ zc?{$biGiFJ*%Jj#L_?_1Kz6zr|7*>wdIiCS6CE11oy~ar$}$l(O+Gj=mFVkxXCf5R z)`Xa{VQr9MHS1)`&E)bxFdtjii4q4{;~2020eOwOHLB9L(0~GIJD$14jCBaeR=u&&*Nr&{V%~4z|EZVRtkwmRfuw5=ac4AihwZF4{ zwD&QsfO_>+CctPDevK-WFwRQyt%!iv1qp7KDD(Px0xj3HmPnajRH;Sg^)}a2xL|fe6K-nRvVG>N1ueKXc051&l!-hXdJIB z!D~4#mBfzCPKFUsYiZS-paLU0W0iBHSi-QK-Sa2N2Jf4@Ri%O$TnCH3J5*q4>zga` z3|&w0z{c8tPX)8>$A{GT?j3MyMgNSWDqM{lWj>YtCfPH{6hs{yuxjKtqmjrY!4#+L zf{{nhTlJV|G-l|DTqbi9fn8aRS}5v3+(M+tb$YzFX8_frMIU1=zC8;8ayuAnT19Eb zzSM_}HqS|w282fairUUFai$Xx7W`EGxu6fZdDjd9M$*j!#Ns8r!6f})5~93+Uch3Q zq+=gYILb&PFy^8eS&@@dP=#uXq5W>lFotrhyn(1_1fh*>V z2X2)wF~g}X9x%B?EMfaK`OsPUqa}^)8bi~-qJu;RfSBZhgSm@{OAa{Xe`ztwN;L%L zD3wt4J1c0EBD28U^gAy~ErHfNUpk5f`GJ!sU^oi$>pmi(a@Mw{&{+00)PhXc&Ubvs zmkHWes?M7-Wd@UG47JQ)X!NM+ctk9s03qBkQUgb*rFB%>8&9XC7PZXN2i#hAwWU@DG15tDX`5sHXaHN-r*B@}UU zR2gy?k90~A(jdRA`=v5(JOc+`Ro%-Xb(CTy5=ivSMu>8tMYfvxmJ@m8>2us9=#fXy z^nVI*Vu&}#vz_CbXj0oIR}j5uC{02yhF6e#D(X44Psl$_&rxE|fX=+~qh z8I@o?JSYoo=3=5hp(^m-D7Z^;zi8Mh;)x^U%-+Pzzr7pg09VUan@N#;y#j)q3AmAMImO6Gzg;{TE*(v zX$&S%FE){{k*j6;jTMPZElH|9!GPL3NESI31`x{=T&oKXQ`IR*Uof?fRVw>?KWq1X zF4T}+A^nICjl`iQGOEicA=cf??1VZziJ-`-=Gp*h53q;G7wS1Zm5J(glY6uiZEwZO z5VDDHw!gLd5XLt0X`x48MvQhn=l7hGGZf=o6Qtud7y&=XF7!tS;mA}WY8U-1rk4pD zU7h7XKaPgs2qJEW_^l@s`T43*?)a`9lhfO7f1@ z9Mgebr#gwOIhLHUG~mch-c2Px3&#zMmMB|N$i@_N%#e{iwmpPk7A1`0Y@a%87Lm!& zeC3ANRJ5Ne=pmGTcIDH}rco`WW}cIucX3yavlsct+nIu@W*COevzc3Voo~ZcKClX7 zm6%d@Y?|Z}=%V0iVVA6RaP|gk>?w8JI6dte!Fd$)yIum&75vmoc)UT;TpkAjy=(B=WPe*t(CZQ>X8Khn0Zk9>8S!QM?DRijM!i41v`vd|Aeo>zA zE8_>Gkyg%y>mOWZWJ+SVu-po)l;+@CMgDS!hXzpE+9Y8h|m1&Cr{jCzbD>jKHC z(h|c3D@HW=3o9B+^lGTnZ1O>iV61o}WS(T^hs$UW-an#3B!qS!?xOUGpq%9TeMEr ziEC9if|rIULfxK3u26jeTO@2F8SN~< zI^|Ym#wwK!J5>^NWLHZVJHWFT_GH`9$XQ`0hz8k`^C~!)KqU)mw%VFz7-PBsgq_(0 zPeeOM3X0w$=}BzS@)@zmgesIzU%K_h7ARGnA8a5>eDxc(r;%xeb6ndi_&PSj5s3j^ z)9G&}Bbb?V!0((nE8MRQ`M|BUI> zcwT_n)*N($$si*Ye%T=)VjhPIWbOP;lA9JDlPChoOJ}K#D}#ah7d3NW5$-0xb2^^T zs?;H**~yn!mO^xx4nPtuLx6fWh)@<5MuBqfS_Qx;M{&pxGS!l_JbPv*eYK?ggl3~2 z#ZwNyZ1oFcAvqJ$F6&GD*XnUemJ5U^qtku#|z;3UeD><5c0f3`m%BKc#g$C-5q5|#Cu#G)Ljb!FYBXeYdKa&U4 za-Y!$PR}MFx(MuS!R?<+N<#5A9h2e8Mk}Zy? zXN_&|pm(v&iD8_aWz5IP(S3s52`mp4aWe5Gz`L$qOBN0%0CYIau7g1tA*d+($(^9V zWLTWSWUe1UX=CN(ey-~>BQ%sKbNNpn#%h|XD7swdqlIfshYm-?4$9AH## zj+Mi{A~i=kN#HbA9@2~w2%?JF!~tv=DX##?IV|}T0A#izGY)cGu|gjc5sIO7M)pi? zMvSJy6E38~ZO$$d`^s+XX2D%LQBlGXzHK%*%*r?B3dX-tVSI*W6?cD9nZ-nfB<~Db z_6Sv^YCUQNr`(wNC)Q-F-M6XPNgf^>kC-_sJ#)R?-B>D6V}_~2dYkhrT3f_{&&c&q z6J96arIF$9 z!%QDk?O2P(RU}c#tmH+uJ0dlxA}*tyd6R?A$aB@T~c7CX9Hvg zPyRC{w|TLDmY1{}CMpjXuozh0h&EVto{Xzw!V-lAsrdNL@!`q#*~hCrUX>n?nXc~e z@#0pjPdL2IvL<);FdN`UkTWUKuGb9QSaI8}HYKYYe2!*NiprOrSmS&>y48X}6ns(g zs)ZtRI`%VVFT*DXT!>b|?Y+V~vzTa8-|#r+5=CBH$f(HXg3JA08P>xm2ErP|2Sl-o zp?%@!z!@(Inw4$z>$6ztycY87$mzBr3!O1`4i5uxXM8_byND%UcWqmnajR;c@Op?B zSBD&5#*l+I`8AoaTX?T7I~DTsvx1@nA^SCtfSUnha1EG46_}c_#U!?1jvW@-(*6;- zF>8pNNO5Zq08+&@ml3`nKYpB~vudTU6Z%d+6Fbz_yF#j*Zi@MCeyOYvR}Js zd5Esbr)_0gQpTc5{n%d=1M(^n%sBgy{AI#{@xhuM!Q|?Xz3L!BAjfKcv^VIXk8KuTuk(79sPB%-D2||i)i^_6FH&OLP zIFu7pQpFQJ0>#&Ia=^ReyC;un9>MsWG}FX{5~ z?<;35leVhdCbB-km*m{Sf~szU~|ee4#k$?uJjrJs^YIB{|-;~ImMjn2Zv9$Pm^<% z(*Hr{8oz;K^-K2O8#Ll10}6CFYDGst&XPl*mL$`MR2aLDa$n!1&Sq;4h}Sr?NZhtm z@~+3ng&?_c3!T#~gSj!7Ec@ar8+s;W2WP33pDU)73Tgx;YR)NaaRjZxQ>kMhpA`2H zbq1X;%>^AKhf-nwo0{)3^IDqqK7K2&KxV}MV>qb4WP{ zbhf>|IGZa2i9inP1EG|i8^o)EEmnUbmATWoG|4qcfL2IJe0tLl*;6D1fl6SqNj#Sj zXa9DMG&9;E87an&US_Z09Y_YwpUMvxE~;YzO(wuVgcWC&ZS9C|kpZK^09b3rMq~Y0 zrM^{sgM}P4(S4O>mzn51!UsWVzz=4@Nk%KY@+HK{84tu_7|&Xa;OpR-=%x!yHD(y+ zzC-GTr<7FMG-@ z9#4K##@Z^z$V`Zr+khBP9(?2`=x7P@!AeBf>?}}VWo2Q>YML2^tcsRGq*tx*gY)cM zpK+FPLU`P$7+$~chK(qSMoK3t?{-5s)|s@CjCI$iZDy>4I%=h>?S6gdn@7SMwQwAn z5kp~KoVX=U8B}dBGnY+aPDXSh;x6G1A_6;){jXWZYOYxN95|3n!k!Z9yx{1Sc?mLy zUYxOG_@I2ina{>9D@P%hmZj@0(iIbNpN`AR@xWLnEjF)N+03#i;Y7l5g;r-nhV`qn z;>g=#W|2|Jl$M1?Yt+X$a_|ET28FG8I9m?Mm_;EIhZ!jzz>oR7Kpw{$Nxw-Xp6Sso zjk(lh5jlIJpJz}Sv1$QXG%7Nlgu^0-IP zv2RJ2y6XAVE1pk#y48&vMg=Nz5#5#UwbUSj|8nrgH^LbGzWVuw$jQk6IjNbV3FN32 zprT12YEy-a#Iog*CbjEn(XDvLeKJ)GyUyP5Yzu>(LW&e2X*7P8llece+@WN*J5OMsA@XO20wPeX&c!O~G})ro zv1Nvuy{@G*DDczbqmX37S*D6->otD_jv^H;fu#T0cJ9-+LKiBsq2g0=0SUHz^YDCt~y#h*3X2!lV3P z|JidQDNgr~IiBOC8b3Pzu*X>$fymi_>s@N(d9Oa&(6wKL{&nFyQl#mUPXXvyu_b8M zVeH5w%BCZMxP~6on6af@?HxTkdroME@W|uWYfyG%5}a!-9bf(MHPJqUhUkhqG=oX~c}s_v_lX|;=#K)rv!&d@=C zf-(Hgn{6NM^rC-`q9cA>N^O3I=n1C`{v1D$?cgg>$=YY2iyaA*?3ph@t;2BZa;&*z zL(~>KuG;>Ko~5*bVCScOt{P{+E2KF?olx_(Ha3;BDI3O!`=O&&--f$FUF0x_#>wf6 zaJPAQa`v)e4VHU*azCqTnUP{NW6w47cE$mP8Rl+UzR>LZCk5eQx1VeFk#&PVEz6nj5{|hahEi zuVU`mIeF=z%IM{A`7ryId>773r}Z71e>x$$^!M#hcekvK8XvC(#0c|?D;&nBGc?&u zFGY*|0}27Nl1|oLt$5Kiy+v<+D88W28#RbW7>fdg-@chQj+q5#Z2DHt{eFRpo8A$knx~-#~Q;s@33Q4~lZ{Wx( z3Q4)C=JM7mv9ttCntMuL8Um@UYlaO>+F)NTzhSfcP4lzBjJ}CbZlfgjVy20};y1Hx zlXbt?T35N(gh&J5nlY3XG`i=U5O=h@0Oj;OYg;Jr=>eh49~FUeX4+7wSl_s4bHp>j zq#ya9ykSoIBS)~^gSEt4X#d0~enQ2w0ZEIqVx*u4nu;Vtdo)#xN50Doc7m&%*m!g^~^>;YfV(0mL z6mB@!KH5Eg@8ta8BY34)$7+uhnd-Ed z?d42sVHfE;@&KS}r+k>McY1zeD&Bd&;U|T6!ol1F>Lej&EzE<1>g22=o)%^R`R;@A zX-A99M7cXi(~az))q!srhTGwa3Bf1rJ7g7@I)mYB$s-?;?!Xa0)-bU=(d3b535#is zdeGR}bbUApQ^K;aee1*_PU&Rlk%-ggv7;b#k#j7Kglevy_@K5)nAIG^F}tzIx*Xw( zefBMymIp-NvLb+v;IgE;37Z zNFW7m2Y8ig7aArzpN;$KYJNL0h|Vv=VJ+5Ekj(<)=7ZnTPVufy@igGnwf&Lvv341A zH1X1=UeWX^aYR;03%G>E;`I1nQ4TTWIv3DJEFmXpa~w)>;~}+xXLOibZ9ql`hsI;V zu|5K3b$6ckcF%Dmx|zi>L2~+lBIXYgPmDBYByqordVO88^|wjKtnpRNFK$SY9%q5W zdjQLHyQ9NR+!6&yY>48iz&$KZqqZ+a)zp0?D3v0=u!jUH&Pup!BlqqjTw0J5E>#_m z&H0OVM#gp8;4Q1!)tZkf5I}CsI`O_8Feq@~X(Lc)3~MkB&U9r}ON^y3Y;W2u2MAZB zEsm#BTs2MKG$N<<9XN^?3D-t!Eii7P=p_->%}pSC*qdidgT=qFh+JZa3dBkrxplPo zk}{!aitW?=XZu(UWim-@AlTe27V+G>>z@U^GcFxO%D&S-i+9?4Q8g6;@!SB_#f{YK zFTB7qqYxklvDMsa#<3v$eMfGHNSA^*1YHNcD{PHZu3@cVkW4KZx&(7e{bnu?Mf)&c zkXhG2hR?(P-YiCS`DM)d`+Gu{&`jyX!78kXm7lNKdzDNxx}`T9vIdY&GNOBDve)T8 zw!EVIZ~DB3Hdd7C2KJUIp%nw{Zgo{+U=;fkc{a#JhAibXNm7XQ_AuCAEdI@n%d#{X z*nIm^zuK9MOuMcE=VPrjV8ZQ0BCbA|%_`xKpq>j~gL-mIj#+(HsG7yjO$ws%EeoQ| z#$|?EViUGHT^*1xiV@C=5h6ZplN5DMKv39(kv7MvA3jBP|7gc+Z8UnuD>2m>ZHApu z{5LW;A71llx4Ls4j6LTEo%17+Z2J_B1LTO!<1=W9-{#oy?IY{DW;i-YdZv||?CpwD z%4W#?S9C%LnNJPQ%pk7@0}xJ{9)ZX{wE8dx=}$&|n74Y3+mz|Uk`gWriegLybh`nYRy&r5pgRrKWH;<4A1f)i} z^WyBF$M;F6vuJo4)l|vYxwIvznwml4!@W}uQf}KJA!8&Pme(oOr z|MNbR+4*p}cXIZ;Q67=G*C3xjMY$4W*%qQM5+@aAtDri5V-WNsOd%RIr5UukP}=jU zEjBhqEz0?hE#bmbHUV8TFs9J;0KqkA>ces?g!&Ht?DO=MEncc?HEBr2A*j_m8?5L=Soa@3xMf zN?ZgNg?qUzP!`GZ;3=mopvRscxJVw^r>&plKhC)Ek{$4Q*822HXMwed7Te>)L)2?$ z{(4jFKAV$C`ibDkj~4Mw-Zxu|_+`9I=4ZQ%{p+z=sd|C}gJyTR-l#NVnTLfB*T4lS z89m7hF9B5_%z8?R3Ein|&JL3Z3}BLb3SWEvBd3k_#Dt>rE&qgR7Z8w~!a@5@sd>cO zCsCZe3&`cc#JGNb5kx8BP9z*gH9+&6KtT3m%)=dm<~>B8>*&oY?WkrO{B0Ev|kou$R? zZx}}#IgWvTv?|Q#m@)`_FG5UxON96)n`LqT4F9lEjX*F&x-5&Cdf*&E$DuQH!fAzf z#I{^#P<5P0tV*5HD+iL10*R~*!W#P=4pyStarjB^^fcbdDM1wUb#&5bMb13mX+8Yl zOy3fI(~PBN0FVe_sM9ES`^Qu$J0f&2QvG4)aoq^0Rj@^1dz>HXj5v@Wf@<@4i+y8! zX}`ZK{&xYgHd6^9vR^I^Z`D6JgBXms@+KN3m_MAE0|7($IdMdU3zN4+nS9b%LL z)e|a!$n~b$RK83K%jO*xiM39yj-&-AwL}}-IE#rDp}JwC{AiaiFc;6S9H`)mVy8pW zS^jyBYtVlvqF1X!kS{4^%hsuP>6tV(o*Io;*doc>K^bC}21%c^Z*xe}@kykWpE#A~ zw64hQEF?$!@DepF(P09S4}PJ)&w1i;;7$|Td$xIf9bdw7(_~mu48=%ibrB79?gjn@ z?G)#wECqW+iyOQec4!As`yG#e2Y@<1FnYG%+jYb?SXFkfEo{E*tln;A0E3!Vb$5jNbbiWfN#L(25%UawD|cq8 zXP{!#xe-EQK!)B&f=CP=Api&LtCzZxd zUv$~7JI`?vDK1OGMorMP!k%79L%koL#E~?5fpj?!@+Gq{Cn+_r!0}*i&ndJ-G(QqT z9iI0WPEUaeD8{sW^A4bP2ySZFQp$oSCVYs!hJ(Oe50jk2*5DlZTBEUcN(?~KWguI|P_Lo4M=MeymJaQKE!AjXVg^#DhT z>Z4vqVxNd*XT&Ek_|-YB?+P0~apA;OW6&RcR7xBkn9>*PGEy_j%239$CxNb!5A)>0 zG><>r2V1ftz|K5`@U`OBh$^mER!C7nB=8-y1Lsu@4-K!3Tbt^ywtq5h!ub>ik=nL0 zWOojku@KXshw(=gvNXO_5*u>*tar2nVs<~;hjk`DDy;0{3nc1k z_pFiZJd&!$ub_X3p~`s}d^zZZ5%VVsd#|=PwHrKlB@%ya`Pa~AYeOkqo&Bn!{l9EX zM8g_YV+z!-6a?E(BR1fOzD3PlVKB+?6R>KS`1^6J8ip<#9&0&DOn-K8F5T44EzVbP z(?pe3_9baSpTG=6lx0r3!UE$o-w^F%xWLOr`K8210>?J4B8`R;LQj&w*pa~K1;8rC zneBdq^ziOCSOYb_d_OMlj@ZhEgzC zkC`-+cEFh>EC$bd8w4vKSFSEIflbKV?+-pPd*NuJWT=)tCT4OS{nXqMup6u~;uJPt zTa2xvGs3K4Ack(1)30N$kr>fvsf>Ak(zr0$x)*A%%LVA{01K<@8+#<+0xxN^l}cgK zr#jYgaT3~5Or8taN5>&G&r4>a?( z)#Kxn#*Xw#P=YKA!vUixVQg_*UTQgz+gN+}nzrM*l0A~##4jUMUk@kFFKXsd_G8E$ zO*?YYR5%z-?oGg?X|<)?1yEU%Y#%<`#s+Sx5x-DRYO=P`kIND=jY+{u$dOc^@|RU5 z1A{HZO6X-zaoJ^TK(zpEk&Gqf{p1pKy$=%0uvq$kV-3M*dHGq`(9ab=@qSTzJroeA z8ckiN(e!m1&5Ud$ed|hBisWfY1I`;P87K$K#2}E8G%Y48>#k#>lRHC7^%m|rwT$R& z`vg0%G}+h0VE5>}g3sXCA_#V8e-C?>+lG3$@Aio9iWZ2#00#}y3ioVWcvxIWy%O!& z-N&RQrMvPhiQ8Qv;mwN&C38tM^x_G`r36)!95z~8sN`XHB#&-|2z9kMMd<3m_6aJQ z76Q@(JMwy%kWhIeryCaw2aurMmlmgrzGZ~b7cbb;2(>rqPzq?4JQf7k%+8JeClY|x zcS`IYl^Ru)luB2fwo^xs&av$rNxr$M2vRgW$@yVIk;Iz@!&~i@Ytp+K?;B=$m%55- z3r%3%6)P=&B}UC)&@4GI1m$3M-V8J`EFn?Ct|*}^$WiVD6HJ)ce%aeKfkq<0>i*MU zd<=1ay}r3N#fIdgOZGP{ki7-J({96VOduor|G_%xHgYbQrownmyv(Hp5j=}ECArd3aiM zU+moA4WLMSn6BPz*uQK%PZoZ(-S@;Ld#Vw#CSlN&gV@K=?XPjWbtL`Vzkj4ve&HTs z?>L)v1yF13Yw0hf8&hmM>muD@BeqWztGw-LieXEnWeT4$S+PZEg)Fn?{KABnjoSKa zpIT^zA%fjVqhsbDKYaU45R}$vW1&p0&-us5n3l_+YxU{@Y z)s!O*E(G(~azylrHLZmSZkFN<)N)~q>fB8#^bbl2oaZh7jzh;ncp%%LoU+O2!3HD| zoT$(AfB|}YjiIIi1+oX349EB=t37!vtYjhfnYmWDalHI^wj{KFXVM zd^YSj=sGN;;EMHl`|!l;lGsMFAt6Y+j=(S@8PQ5O%Ec!3w*q>Yum;sj!(!0s!`W`c zymNkra1~i_Cihrv+QDb?w9+gKQEVpBqLfP5?|G|Jr_W2 zieVj+ZLAOJAs9$>(!Mb9@RGA>u`4Ft%vXF9>h_9 zTq$AN?kh(ZvD?O=LUH4Gkf_!MI4WkUd3t($`fV5#2NB=yHYiP3EOd+M+thN+<$q5q zT_Fayw`-A9AD=-asBkLh8m5i+p7*v-${BHtN83Ps*X_id;mUzRo#qC045(RhcfQf( zRCxlh3wipfdI?T&ViAFtXRMb5`2P9R@w5KP1R-`4FZw4pi``?im~s8Q_0_W%az059 zqe*prs~D$wy8d$398O+uZ#VK6bVK@E!FkBB6KnJp%6$xe`qr(X&c8?{IZej?vubKl z@zHZYOt~l3Euet$!;J@2J=x%-PD)`>TuV@C-S;R{fn{pGv9Q6}jBQG(6A-hs+2J2Q zx>5&%63M4mLefcbH#J^t6ShYti80IB#>Up_2J+P6*8S4YQ9wgwR5m*6!74+~luMjR z&iRU6zGvlrsgu0P?+=*AJZ3P$BjpI;lVHERoEZ*Yk2dWHaWn=w=aiEIH z*q|k~pyKH#Lj3WaebrI7vBjq0aFput7mM2Syepr{%|@qef1vtB3~RdF;E>HVKl_v_ ziFbXl4=n2_<^a>saynIOboP!9)n&*WHj|UH;9%|J8kGaiR@C~|(s}hMv)56T9GodMQIPzZmS&B0a|%}JlOaRdO6)Geu~7&8wGV(`6x$c5YD6S zZx$3``Kc*YxV!QG=?#i@+V{9R{UE=JmG3weTrI$GN9#=ocz0oiqElPzR=&Pl%-(Y& zS-G&taiIw4KJUkEqP5GdttAdy!eLg?2`^Pp8*Ut$`9a*w4PpU-Djt> z8_$X8F>oy`KeQZrc0!J7I!W57Cm#`ZENpdJ%jb%IG*}U*#~V8U=HTy13Bk zv{VQ5&YZwzk-Cvw)vNF_`hdIs2U-FV=2Qf#A$_3ZaLDM>6hot>jV+t_{3Ofucyp11 z?x*Jx4W_hZJ6{lg)6B$$s*tr-jI>U2>Vg(Z{jPIb!q$d=bw+Ds3!=x9lhchAPK4|- zh;ho+2pr;Td%OMeDK74x9Y4DH-ulY2PKo}xfeCN5g#D)OYj)?;(us zZtHP5J(pOO9W_CJ9MHFJuH9~N*H-80!H2#;B##X(&ckd(RP`Pl5Ec6)w=@Q*)Bg%e zjPo6=c(yg!W%m~io7U_PFq(oH+cpx1&8Uo+?hpYA)J9ExuVvUbRibcY3=~{=daQ#w z7Wr40_lyk-+*>PcD8Dn`y%7y)DV^S8U^s8&(+IV2+O$pO@9-B;XnUU55hEJ^7B6(&2JY0l^| z$Q)YFE=zd0E20EwWZyzsBY}$}!YE{{^#SgOxNFW>TH8Biht*(Ph*+~JG{(n^-8Q8tE)U6IGEV(f{1&^_^QGjdPVqg+eKrSE1I10fKV|zl{N}T z5aQcc~w&E#s?(79)kSSS0TprU7;GJv_BM>C4yZE|^R>75IKo4NNVlO-?MO zK^SUzqyVR3B)p8ALms-T>mOXQ<~+G+1KC*HSX#M1sj+Mi0@2uovC512`3C3BspQM} z^9c#8-qZr&`uSWHoHyRe7FS1AcAE@u18s)tk0Qg1wmeK|HL z&kaGw%HNgk#jkNdQn$D_)c_|;f;+}3TC}=6@xngHzh5ZqM)A%&phfqCoBBk$(|yod z*}R$HzOk^(%n(GzPqw9<_#a-F_D>^WfD8}W`%qvc7CbV-wes58OsFN|1UK0P%;d9>CG#ZTLydc5l+G4eZ!g%8bBXd}&unOQZVPGr>8r+wedR{Mrh z&l}4dNz$u+TW>WXt(qm$(D~86Oq;60gO{%VvcH2J5UA;FANIM15=63M)}^`tvSnwv z0bC>0WoO~WGyKIM@#s)Gx6Bx2nw?2F@HGz4VB*NAk16^p{Wd*{VueWj);gi9%a#L; zo=ptmJ;V2xCib_oqF~4&iO0NXkqQT|0jL=O z1TdVT%B7DO-~$ID27vGwf{Lt?93?Ax9mmnbcDydH?8ak5#j?R8RK=i&YR&*{^*@BKauN2F^}66ZU&`}XZVecpY#o1>EQ8R5Dq zT+dAfURsdhkDMx`Px%a-7~^B6L}wvw9LPd0gAVG*s?8E)tMmXkxZX@Kr-!kc7h~ow zcb{CC#lMh4xT|cG-J$(kW=`v$Mj$C*wnc`();S2eT#@L=BNfpQwURq~X*6AnokcNG zErt}%PUrO4sCiz~le3F5!1;$U+r1EYG`{In*lJ3HMA`@ni@!(|^bUKgoH~U5Ky@>h z+)f3XkGPT`RepJvvquisN6?5!11Uf1U0#5wm*y|wvtTH3{;}ImIy8k{Jy$XNnXB39 zi5VH5GAMoO61yxd%=@h(T4=*qIzM9CKj~gfU43a`7R!J9$~2}_%wV!DrZA?(N@Lh( zcFz(wAJYoy-^D5^ z^Xr(Ag6tf?V7lQUlx;FKNi!HeoKAl(*T?Ce4keaMK69=ryIB7go6sD(0rJBbJKXPW z?Xg;?`vc^go+Kh8=Y@0$_GgnZf??RXUmLh~6qRxCB&qEfYHDCZW`Kex8(dYW7q^Ku z-cRd9YaV!j$0yU<4?N&Czt2cr1ktcb0@rM!UA%}tRns4iDHA|+VMHEh7NVBQDHm-S z)!8}iVX{%XCr;;_A^n-AC$Df9pVBw4GFPZD^MRQt$-W!g&$BI+YhO>jU|RO@!Y;HuriWEs-HNv!On@S`TWgAiG*pE?t3UO|UIp%)g#m zzLsU?5ps0Oq8bvD#?clezD1Cj|KAc{ryz0gva_b}2+@dev5Nwhg1%r%Xm)(LJAx`6 z+6%jU|Ky15&N1vc`NH95(@KrDk#4doQY2i_HxP}%qD+=+5cBr)WV|3P=ZI`9HXVd+ z*A_fjStTe0$#>3Z#9oY)}@W*wT7ao|0BIJ`(k0X|JB5v4>I83{+EvZ;!XB>Kpy1VMeFrHSX zxs1HRzH0^2jU2TCVUaIKe1y(1w&Yb_!K*`&BZ>HyN34d2&uYHS%9pXyvhtbKmQmkl z_*Z7eid1x}`zhjPrwG1?^zDWP&}yI}!1myS9aW_oJ_=j!{NXz~AIeWbS9fcF`^M%_ zmjERu-QM#nJ7c4QKnR*jo{FVCae#u{QpHLo3%dvD4j-MD%H0ZvzR-MQ_XT*eo8BG zEI-KXxUtVoo&$!cg$X~$@sDgx;`t+&BZmFLogui+xxdNh|rHhTjDE9jh}QK;xM}U`-&C3No}MdCLG+LwI}TFiFaGj+G8U4ihbOK ztuZ+(&kIw-y(|~COEX-uIXvdReG29^MBTK=ABt0e4Kpwlggap)wOBlVI+rEo;mr&^ z3$4dnUXo4g2Rf8W^b?8LAe}m@jYkZS7+?2d1OOE|?E2L}c3XoKfTDm$1P)Y`f~-fb z^bHZ{5`XhYKwwCVgZG=rk2fSWO3gH}`1HbZ=aI8jS}kMw*!XqKV-%NXiE7wgTZaQkX~XV**UprdjGUH~qZKr#>eM%_#tkMM#uRhx22Q5#;X}#Jz3aqB)vD47 za#gL<;OS4+Q-eb+-kzJEy&xK#b6;u8>{P7wIFVv|;fWEz5Wx(GiLH1tS8Y#C zBOVagS~eAeEb#&I(~YnaUFO1PcLuFN;C*rm#h}$0v}vdcTWUekaD+2dDI*1?{Pbm6 zDt5P)$E;g{*|Zvjwo5Jt%MLe5Kf&ARobL;T`9RyEL*c)`K^7f$B|3tsw$$!0=v!EI zAaC^so^|!^nfLgrADY#rFGV(a#y1|UBHl88Wlo0^xupOCAPwv?7D1#C#rhuqlr>^x zb5;h%{3T*sr?oVcm9&RIAX@W#aEQ(Asi&V*2!bh-WvuJ8(vNo7^0-SzIp*HNG^Ebe zVwi-IOH!mnN`(Upm0qtKix88D*yVuv{1Lr~3=9`YzVzc~WXzG-YQs36+~W7-C&@ZU zD_y#D1(S2M_QXSu&JqIAg+a7vw^4H6!yv2y-y>RZ*HR1luaqgSlB`PW;EbVLDgjvr@QND0ydv?)ixg!x(0D(@lv zI#?sBC)3wN8=>zxQh_@1sPlAmK_k>E$B?%D3h`jB-3}BmP0(VRrQ~X9DRJt`oi4ei+Aa}JR$IO2ec=ei>-JxwM|iGEfnXCZ zbTD%-Q)4QBcvqfZ+6A zE9If{h(B%zM9+nazrt1QBS{#`aaI>dx0EK5ws((luXLwI&YH)F<-Mo8S-Oip-b84! zbxEQVcu!PB>{6NKVd*Jz;EymHZ0|?|@Kt1k%}%pu*ck>N{F&fqNkXbQCUkC`)Bmvi z5R|$OK8b0fhtpJA+uPR$CG4X4$!5rN{{vdtByYn0b+(^kEo(;0*_|=BE|XiejObxK z#ukVnK}CnrH-&(elO2H|I$CY5Y;Est_If+Hm+mZChQ>L~ERbB&0)wFT;bSIH+ z{iNYn-l1XE@IsScwKTDKVVTg3oGb8*Enqw-=JPO6GET*BSYn~wCR|6VL3vgtLTBY7; z>16TB1UpK)T!6xeSQH^cOn%1!4shXiOwHiG)bS{^9!m2Te7L`R(34hlS=At@WfnIU zLnM1(#=0n3fGEXOVSTaV|Jd9m;e?CJ$^}wPU&(L6wXmt$4%s1 z6aQWbapB|K+4@!rcqk{?iMAYyP(M5Wl;QiV4CYvfC0%43R`xlGr3A2Cb@58u?B%I$ zj8~BWZ^W)7)m(SovK4ArJ)X8jX3%PU6f|QQ4tGeijdy~d!eheSzBD_5QRazmqZKEh z?$)Hqg8kz1B_xkDA2$~l<}+j~|6Q@amIxR#5kS~M$gy*c9E~RU>lH}z5KTjd#Wu)! zB=$jQn!vhd#ae8521QWSna#oindu*K;$l$@Twh+c_hmZT6?r~~O#>nGjO4T8tI(ar zuQ953>kyNvU0IT%cR1d88=EjCrYy6tV*)|^v(~mFV@8w@@zerlf5=EnkG{icZDv!m z!emEyD1!zCKWeIFg5**X&gSj9A#q4%kXDEj29)Kj*oh_B#o~bOYT0il?dWFr$l9rW zR#5s5`bEYgBoD=P(&t;FB*g2oW zI8dgYz9gTY6a<^$bB|1T~bJCfd~r@jU&fbTR?3Ft_6yf8jUatd6z7~tei+J z_VAnq;t7(kC{4GQyu^qsFsByPP*W%M-DpmFC;N<;cS^*l=`U)Tj^hdurJM2Pfr3~; z{L4keML}(rK5#&fAYV$9COeN0GNI(53;4I_D^Y3U6u%8|aJI_L1C9-9r>jJN>5G!o zGLi^vn$pMHIw!?uWVAFh#X+Jtw(+@iFZUBDN$-oqv>k4~=Px98IxJC4P7iW!9_V63 z#W^+kE(Y2;n9A-^A$f&!{Ks?El{yWJ%1@VREBD_u!r9Z|1Rrc{ay&u#)Lv1Hk=tDs z%OE3-SroVo8sWkl>)7WZE!&k5+3rld>3K2*D&(8OB=RPY%%)q+{9y~P#xu5A%ejZ< zEOS7)!AHzFC2k9*j2g=q#ZoGL6@0gP=Gf%rj+6#$0o4na2$Cs*xfTUP96RS-HW1v% z-UPu>vBC$ow|Yj33X>kuFG}baF)_Wcy{=PGeMQDXtI6WV%$i+%@*D75RoiKh#@(;+ zy$w!)F8pGLqJl+X{M9dFIf`H(;hbj^UsJ?}k&{8P^K;xzCI(^8CHIRDcfL($iwg-Mno zJH(j+gYIVJYzj~)3~FmrJ8NA+O374I(IP86#2RlQaI^5w(u9Y%*dXb0vq6ZoRm-2CK)n{c84afcnetv?M=++q8Os6#0)01{$`TSv?8s_ zUpC37G+`tk|3IPxqpG4@i(SON@*;L|RyL8O8G&)miN2*we{c}1NNfUPm69876*K9a z@%a6;EQk(1#OjR$+}>B}vY9pG;dQ*WSI`Q95p<~Ca{4ewI1h8I0v`UFs2a0=ah4xL zYv59|&$_&OV#XU5=w7_mT~f$HC{`-(l-oIPA1Yro_{^MGdumXDrHG7_jr_W6w9zvi_p^3+(ISZTY9&?G&Vha0mV zn2;IQ(N!M96P@&3F+*-@ef?y0d6u&Wz>ES(Ebnm;$d;@Xb{y-RB?hXaLFxxpjnidt zs{GgZ*EaRoDGOlin(#yj!O%B0YWTZm7~atDk+WVha@I;V=$$qzdQdXvXxKKB&HBZp zvzHgJAv?sBbhG!GZnEEg;hi>Rio0u;Fm0KONK9H{VBDR@eS+1(OpA)y`Suo18{*@*My?16TI+L%=v^& zWG!1hHAT9jLW3i0@;HqjciHx_L_KY0+1Zc;T+u}@&dTD5{LAS&?L2_r*p!ec!bwv! zOXi3X?Wn%dBIB{hBWn`Dh%!d{FvoTW?ftSl-VAr6!d-h>u)P$j>RuYLVUV;v%Q-B8 zO7MyGsj;(aAnqz6eR#Vyp)(j6!U{ykL^s5TXF{EH-XWIRWlc&~H$jzlu1@`=F_4+7 zepy_;GEP(M6u|mily-*BYa$s1W*j`P(-$ox(B|Gd$t^5%SWGVA3W8yH6LSYH(fB2a zW>jHs8Q}&29bQ6YnOuW7&Kn?J;-w8^ReoS&!lrI+Sp%MFz~;6gJ5uBvL3I5xCf}}! zacJAw-Wsj>-oHVM<=ispbZ$UUxJ$hdVZqzeL}0|)V}p3xSBAimBEP7*dLlzo6|)#5 z3MtSL(I~+uGFT>NM5vG{*ry;^GJ01aS!~JqA}6bvtE@pzIjPa%b1bqYzmAM;8gn#p zm;#$FnP7Ve(=A!JCK2z<1rnESU$joE(SB6ph7Pu}4WrE)thr{5AyV$s79(hjh09AE z^AN zXp8|$?-6_=+faO~Q zlgaET)72moJ$aR6f~Z+D18ZXLyi7Wx{rlV(YNx*@ouuu*d(TObkEH!%c3E&J_iO}Z zRt|QR9I?Oi60{g`5^JU{vu)?%&X(?yaaT~Yu_o&~*gQJ-$y`qqbu?e<=;EzQPqFq6 zR`KcVjp(OG5`4CrCFQ)8r!x(UyS%Eu9J44vZPpe)*b31Ss~Hc=AjZ5pc9!%a-?$tu5%2WJ#%tsG69% z?7Pq~^KBk1(&N)Gv~zQBWA9;|?f0--Xb*3WCadkC8%@j0KECWu1o5~UIfLz<+RS%_ zHykG7xd~Q3z;(mk0NYZkika(3;(B~+b+1JXrn)h7I-j6XfTBkea>=-plJl5i9I300 zIFpX>*m<+R&A6yd5Vtk3XQJV2_+%0wV}2e&@z}oR9CleGXWP+VA&b@x1eyZ zyVSd^JxXcUu8ZKYS_ESm6y=6WvB4@U=A6T`xqY2mwn*2~h2uU{7h>haDwryfBgcj4 zl{qZP7<2y6jg~P)uIbc-?!?6y)~?p1FoVtzNbVSv)OH#*OyUeaL)H#qfJHSEh{7Ae zTC~GuwrB@wkFksaX`7oBx~X=uQ1HpbDh!n5_{v2x8R-(J)GK#3+kReOvu>#ptUQ!L zjIku0puH@_l&Eo$+$$wvfhtTGUqO^UWio{UjK*3fX`cXw@Yo}XO599v)zve`d ztPD3AlR?ok2vT*69hk+~^Z`sRC;v`UDosE@OtUj8byawwx|qs$L;Ei#4FhTtqc+xg z%yJpN0zpB_crY;=M`-y_GDyB!QVlzE$TYXJt%lHvrA?R2Ii~jFMQwXGBZH0_Zk8sM zkC$Ae)7eGRWN^qFbo%b3&mB^tRuGzN)rq;Yr-RfiucD|H`0x; z9t+NOAMCIW$Vd*D{qu66Er^#%FpJbE$O2pia?UplQ#XgnAP)N>q;z0*0wzS3=LSgG zZPGUCQI`Dqk^*grv!gP*N}oheTC^3PX)4*lKFM-Z?3tCu$vMM1rGYtEGp$h@4z5Hn zNNdipewpTJcFZ2V%AV1KjfN)0rqcviB(QXBMs?z#{;bm?mAcPHICNQ4nBs-`s3(uN zn0-|nfN8NItS?12)HGC9*D1V@WD8(~iQa020ga71!k|2cvaO!92)bd2CG#(P<|Ekx z^ytcY`Y>n|!)CXPoP+f_W-H5U*7{d;|9RPOyDtI@w~og`WHyB+a#9c2G9R>yF~rS% z*;X_j2vcGCsmmr?MiDM`mDEPR0eTQxLjf2IhD$M;Ph)RGuTV1#ZK6flpr5)|<)po?*-=3`9$CVQ_L`i9Bxng!GkH)#r6MS8|FkK~><)U@r6$(QYif+v z8fVn@Z%H*omYoauP>yrgK82a5-E5NDLDU^2J5MCa+dL+@+a(92CvE2ls$h%VJN-n zI5G4{4Ys2&uSzj0SQqS&t>uVEXBx_}lnLPulwUJ}-}bs_YlBVFc4m96Rzn<{Wa4e{1YnbwjBffW=frW+R1 zjb$HK26aKe6Q#~FqivYOeOzUQ>2^_*Nvv9Hz_SxmW0`;46wiKct6sf+IX#WJUgFPW z40fi4W2N zuvN)gY?|Zrb&&GO8cM0K!8Xm)Pdw^oRh=Q<2TB<%udNJl25C5Ouw zFy_O*O48UQIuVW5N>oGR*0Gpu)&=<`!$HPj(L?w0S=V5;8|n#rOB?c7-nQL2(Qu2h zjD!mL={V5hvW7muY_YFrHcDK?s!fw>+7Y<)^-;HmZ0#iu`6X6or&J`bDLu{-yJSxk z#)x@CEN|eu*U|~-?CCuD))lkACM+0NcP(3UoI&FUX==-l?z20|p_=t?m0Ak&fLGm? zr1%}3L8T&3Lmpb*jzWX$mPmmCol{pxxwCg_f-vuHw0!EqMvkeB85@9`4LSm|UgF?L zK>IUHWIYKYl4^zt8sspl`v{5*hBPB1iVUn@vih*Toht-Vqw;;Lqpk-AqlFrea4rGM`Vc;##0tY z>BaQ?0Xo)-FtuJyItp5&7h&tqTqVykn)cwPk_8=awZ|lXU9v-gR1IQk@CS{uzhuivYpTE-eL0fMlM7PixI>Y##j1_gc z1U06W`-T&^bk)5-D!2TJ^H2aP4;M&m`HKIyH`O0B7izD4p(~)%Na$mOl+BA%7(PlNBP;tq9x0i zL)rw~GL9OaVJJwPU8zCqau9^`sj0yhWt)i+RGTfqv!)GY%JyrRi_W_s&o=TI4L~rvQ~v(PE*jY{GkNBfTa}#y}0L*F3hkvcEDgy`@DZ4Y3yr z>k)~^!eEl?IHEJJ`LmKF$U;(>WbYg;>q_%cs+*h|WhH2v$N4m=Vi1qB^0DBWXkVg+ zg)ssPGA`;6PO;8c%s&KXmbC{*^U~;n;mgBebx6@^gV<6FFE#fhq!40=ZuL)v`__cq zafMm`x65*TwM8UU&Ta}Um-p!u7(myDKrKC%NY_ZQS*fULvsp~`WkHVeHG-a)xx!u` z1#m}_Pg4W|;f~N;jN16jG&X6~S1<<8NM@Pt(Tqeer`Gv{osxtjUQO!-j@DYR^t;N; zl6ktVSwiBcm2x{7$4?qL*wMwwJ9i}=9`-&N3(x=BprL^ANBpJ8B15X5T4N3WufY_?}kn zICN)fZiyWuktUMXC@o7Q_@~y()>pTfL@&{z)>rV+sBg}p%_KP~R-4JFSv&a&IoMi= z)Y2hE0@&8zD8_Q#V_SiWppmrMTdh-F=p6Ri|e3y&|EjU_La ze(l-m@|Fo`drQg6IrF^J>O9+;447ZfKKaJo#r*0(cd;%N>A1X$Jn!04Pw`WukYPn; z6?8P=@)WCbws6jzWCwQmp%G5V8XG-#_S{J$@;WxcEYz`)Oiwa+MvU>b)0vAqva>g) z>(%&^ph(QpVyl~R#Ri0V!(dV9zP1xbEihXp4*S*sz zu}QR34-=v4IDm|ywUF>WQ#E&JIVl9QZ)_OV$>KFOYT8LyAP^RuL>7!p@R2hq9;0|> zILD-HJ&@9Q>4C&z9lorWo%P0@c->{o;U4x)x)HWTaxCH_J}*N(F>7_KCv!OVTfqm( z*sJZhfu^J^^K``zNX`1qFo!kSx77Tq@*1_&OmA&mbhiFnJ>jD3VUjOg`j`-G8{5dA z%#BzAeMuap#&+USrjgB?Hl}NgaX8sPlz4I|b-Y(bYjt?0mI?@C^@BF5g{zlG!<1pQ zruHzPyK*gvkVZ{++Hx{T7wNg_B1Gd(>aF&?7Fy?z(h zGOK;T(!O8{vSAZ}l#(MYR_ykIv!d-m@&L4QSaL2cF>a0^OR+5_3EHlXkcA3xvAlQW z4xSO6ZApYE?TybiMbb&lKE)(O<3qW_Ng5>*7!b>Ay=pRp5G_{D_9`Zv3>+vA=8=&N zty`X)ouHP&9Qjk!F>g}`b#g9&xtm&~k?u6U53IUTjP9hwlX>_-5)=FfEgqN_;0N2D z&;k^BdJjLy0A@1yvC;6{XepCHzcx?OV^sFO&p#dghCQSFPOzESF>r^c$OR(Fe~nRw z^^GVQ3sJ%nZ^WW%8!V%PJOP=!+LVUkeg8pkYxM>0VdIf*b18Db#xLmZfJUZxN))f{ zMk7;EpKPnVv~B)>iwks=LiUUmcCMuzHb;^3M689tiw170S=&Ti_VU!Y74l!oGF10R z6oLAYoX*ow;-009RP`U(he(TSrIX3^XWzZjV8wprXqg=~=@oLs8DYd^$(Tl2bF8hv zn@yt|H~FNGs*x9S`5Jqv2CU`jxyg1rbvQY{wlL!owl-;enxS7uzk4LMh09~W^r=O~ z*rS|03{xRHiqsnyRw=u}kI%~)1MH{Gjc6DKXqRQ;0trDIIa8*2HXo?q=|oh@A5Ilp zVtO=N$2p_Y$CLB?%+l4xA@w{r0<&m;*(f=M0+uG0fZli8x(xc(EhKYqpz#|9R67=~ z1+C6%I%#CTw{ny4=iYO+wbGpWngfkhQ6`zR;cPemMhN|yy*PMtQz3<$f;MSJx28#n z+DiGsj8q9yDOuQP#wEKx?M-;l*PcGmX`E%2+_P04fK4zO{zT78V*sUpsVc@mwQylfEadGm?N zVo;HGRm6{snIx|Y94t&53KYD_EGg~Ozl}OPn5>|RXoWGT4maSi90=#e%GTN@m&F9l zyB<}e9%x>!3AL~hhM1E{LudGG~^^N&P|)Z2*o0) zMml12#2jKJWLhY3@63kz#xb3UDJR6CJZ z($Xjkh{+zbi7O_5>FQaVbx1-KrRH6A=Bx*3s}IXT^~DZv(*|LN9|SBq*RZ3C8p5Jvq1wJh?iSWQ$VlAb7Fzm=$AMEB&IzYFE90koQ5VA zVq%G_rYCRcT48%IM~#JRrmdW!5X1w#zv49~-TE`~u6=av{m=;^g9{U0==VlJ3v$sS zoY9m$T19p%A@q=TdGfj~2I?8Volcl-5xlDl^B6%;!5FroM{CF(TslitEHy# zS;ZQ*mo4%Q_Ue;_J3#t`xq8b(p8Zy5{nNL!jU@$-OuD)g+A`l0L5yV++$@d|Kb+FV z9rf(MP1V3jOXyh~bXrxK%MDOIOdCr~+;Ff~$1jh&R$1Ny;F*81~WJBI|y3g^a`?%SpDDl2n#TQJFU3o6WTR?SJa4-3irvMFF9fwWbT`bo8$rvCt3oX0n!@T%)}h zEl9EqcFxwL!`b5Ew^OymBs%tzor*osVUBBGvX{r*FD{u2nT!mOcry=O$1=zl_avvt z5v=*fB?u;fwDO4DlhD>pq1tmxHD->BSZpHuxsM}&tF+u4Z&)fRIan`5Z5*Bozg8?M@ zb#6egXJOpokeaMxLg5#>C@L&Y0wTNeU@P5*mfcEpba9IM5iyCV6eG~g4iF;Dum_fG zXj<4#A)%xMEDzkWV8&|pam{Jr<=`6DMC~s)r`R1ibS5hun_zD_Haw2#`W8)UBi$sd z8n3IB7vl76+IQwU0;!2T^Pvs&;ZBwZi>}^gb+D;}aO-^JL#5dnN)1D0Vag9eCRYnD z5W574(N4i1w0<9kY2a0ZF|idvlg6T z$twV48!j%g_eQqjXlzdi1%b2MT(X`hWDV<%gQCDoJU16#$TG1}t2dV-AkCtSSCobf z2O0TkW2DlIh{-ADp2Ua8ok=)hw|5%bv>OlC28gF@_gKQU)&ItGNsDCdA}nF~ss&>? z!&^?i_*NS|xFei%C5wJ~=-aJDbcg8Wuqi-IQD{bd#wE`43R-Cr2fZeGI@4^WkfcfF zG6(eLX$$@jYuzb}W%0?&%IXvevGq}A3Uw*1U=xrxF4!Xy%NSVg;{znK3DFYwU2qp- z9ZmMg2Onrj8If6*+#;UmAufngN=eFt7naGm0c|B=s;gCwQ-G!Kxp|| zt=MJnGr>9YAep>*p3`(r<&|mrDzh+xejZO~<9Co%qV>4i*q9v5|8^=?a`j(+S128a zz6uh~RN$y_$$w<6bPzsN;y5=7%s9{9l-e5V-BJP`N9g+xmNB?xinGTgsKU;v&%X;b zb7YKA3pM!h^C|aJs{r49*r&eB9ak~g$@mS?CmF~oWmiHJn;f=<5-orF`UpRa227x*0q+t=UMTit)Bn<>n6eez(T z%_cZ9Eci~>M=~e1V`>v*&I6dvR5Y_dHm*Fe;tAQbW7sTQ5FN@|w?toQ95Oo0A)`#7 zyH&NAbTUO&^0jn6FTZ?oEd?{`RbqMbe8-H4mh;;@q~p~(zsl*7aN!U+ zcw5DZ2yC6v?}S~()Zd#~eK!X^UU9I3nETr~m&3y<_3+<*&Wl&2a2mg}nVPj=$(wO2- zycnw(QMudrF0M>h zx|t81vGYE1IUilS!3*X=mP2Lf$XuZ=f`JeMYgCh$BC0gbF-sSTfKIRm`tHtHT3Xh6 zd9e;wJmPbSX+4B&>4k$*ZRz>Hc$4kFEc z1y^X%B%EKgspZEojnjU+pp#(CI*#>?y9|vs!jP1ZYk1r6Qfz{g#*oM(z*_y~;t`1wq;>dwWqRuSYm792yG&pnCk>Z$it529DMahRI zcH;iNq0{G2Rz<>1SSW?eOtHdFIy+c0LD)coT;-S=`#@*xkrb*Zj)XX4*2Tan3rj9J z{}#^E>2V#cHHk@Nb($Dxnw^|!-={PKPq`p9nw}2`NSc`SVz)7C>qK6G$!psmk(!W1 z<4zA!9Sb`aL%Z)p_9UN3X^{8bAY$TevbkHjz+!%h;cRQANHYZdSzX(ZUuZbyji>U> zi`UNSA{7*(9rRIW`+B~w_dq!bnF?sjrHIlqI+m1X>lY2CG}EAc+H>kS(gYD`ODcvR zfFv|9s``Up>6GPQODqfZo(}6t5vz5Srz|ayuc!)=H5p>Lul@3Y#uvhZOY0nf>l36vPjg zgeq)Wun8M}Y@&=l6aH>l8u@^+BDogXQ>S@Z%1532U68It!$XfFxFA^_)8k%|u1f3o ziS{^UIy|BfC`w0f%9D|aBn^)ixq2DmR91e@d+|#;MhK!p>vq01|JwQ1B_p2EUC0y^ zQ5T@d1Vesg&%b%afL#Cd#8_j&lXME!z}L#sj+lzcv(k4kwQCy-Q{tmXSCjHE{e}_E zx!@+JG&^@<65A}c&S+~3@RR7M`cPTZX?}Wc|uMGyjABC0Azc}C6UK^5u0^Z=;mhUyT3b(5+9PS&Pe-) z&vMi`ArOe2E@5)-)+W63m&j-i%%jqnXtlz8cHd}5QuA@kRMJ#MgDKgDmQAqlOu8A2#o{H zi$#ZE0ge;3iL0jkSJpyvoDo4%MjnDn3=pd#np=S%ijg zyb3WEks}!g;MG?#-R#lq7|!I)YSPW*9q6Jh%+j!YG;Wp3A^VQ8Ps)aXN_}~oAFMii z{QTvPYoO6A%4@W6iK-oh+de#U#8xk46_g>cU>*DtHODX`Q3h|PHf3V!&59}V^mVob zqE?st%!t~G2Kzkzzs!Oiwi%L|VVDFXpy81dJdF37(>4=>z@(T=XX*I_M#v%gEE zxkTeGALdT$J9XH`Ln>&#GD(*K*@TxqKfO;W1krIYX<8zs4ea)~kp^L-2yywynI`jRNYHxq7x4YXJ!nP-k<-vDxGov1qXwb#5 z@~m zJiCWjgb7$aKH2#%9_tJv!(-e_x`mZhgQX$O@u}+@`+KL}zq6rM8dVGllgcQK$9S>M zq#(NRvgkdPChtdXS79Qxwd(dMRoNmE&s3pWVAHDm}x0qUtHi0 zH$7!TTbfWF4Q+5+Z#j}wt>|TI5dK0@t~XFKsYCkwREl_IV)rxwH&^ zpWQlG&CjD7m@CODVkLotl;XK^j%KE0&uR_C+t(TYqz&%z|JCiS^#PpH$Oo6FPd0UT znnWAUgzs;X6=XgPwIYq^#v<@{a|ag zy18=Ly}oj=wyP6tYPqKgE`v|6j4R3(j^u|%CFg`?4$(yqYyaE9;ZpDB%Fd1L-QLCC z{>1jd*8Wia=w#>M@X3STLGN;JZ*S$<-rm)f4Q^Y0b_hvt&u46h3h7mlOQ(Jhux1qz zvQHw&ys9huKxMf&9>}QWS=e-19Zz)W;_=;_*pP6g^9mi=`)u^`d#DrgMF^YQdo0SQ zmz!*YP+gwkM9PEJ?X_Na&sOh)`h&cT2HrEZIKRXN7rJV6V|`<_yRx%U)dHiG9#uW~ zi`+Oky}NyLc8Psc8M~);4rex=z0uoU*xlIP-PnI&nOd_S?`83OiW*0@ z*g$_moSk*yBR?;0F{JHFIc*>8HNrPS>h9m%*;={T(H-A$g|3ETaZ6N$D+nz+q9IBJ z@mS|WL#`t}sDBt(p(RB6G>4p+9OqUbJ4toup@$xlaJ9BDh6swx`pK6HFbb6>+Q2I$ z8rXJ$GYTy(sHbZiyPdZ^%#XJzNy945bLSPyP@|kPlHZCsDrIFY#Ih)@HI25`UE&m; z-tJ8z^u=sb*L|%*>eek`1eh)~I;drG?!0tmQ>E!c5|jMj6m7R>l5%(TR@bg*b*?;; zG(tYOkz{%enbJmAsE4|ves9~AiKU_a!`;K))~U6TsXT9>rHpke z+!Z2_*A}ml=3A)ap|!oiRk>5EsHVP@TD!)ew|t@KH+LU5lyvl4zQ-S3zd32=q`s7U z<;Fw^kaUBoC@vkLGNd`xIRYJ2R(@^%l3&tMHxy4&5Zc@e5#0cLFvV|SzK!kG{mt~TjBHcxV+7hb_W{=7 zVrs3EzGx>_KCMn(~kd%r81mK5%AClgZpb!E)si!eM=5og39xHa08l z2Euw57G{*1>KQY$x(L{>GehPNb>iU9lbkx)VJqOl{_2gD-R{Ab?yc{w4Ru#BaR)s` zb8WBJ^_rG&9(?esnT6!{F;Bu`5&%QbZ|}l0_FtPTvwQ{0`aQL|cYS?hcW=Msrw|>t zrOLJy952JmW9Y-wpQl^M=@(XOa0StDM{I;>#DAs=en;Eq=ck?K9G zhhE5xsC{W^e0p{fD=~ebR<9DBMO%fXD;lv$7%ps!<(21pi@nu@-91Qf=T z4rR~e(MQ=}U5^c=HMEM{D_kO2>$Y^D>IME>?e$~L`Dcbi&xHk0)~_eBDcLv~zP83D zc6%7);~QHmyDtm{)-Lw8db=B|UM5z%GQP6cTjn$lGjK;vb#Bj|r#hVCanN(NRhkmA zV2&hJ%!0(y@M}}uPe=$z)t8ejL$I(MTisjYTHcqpzfX1M@XW2p7iXWMC!V6h2}7xu zHpk@ZjI%gEw-9U++)21)wikKUOywqCEfh38Mxtb~B{{(hw~-Mwlhib!Pu!L!j^O!b z*GkTnqdbt`^~yKE>#APx=56>~HIL@;(gOE>GTqE#7jYa4FC#G2csE-Hx{f>08x~#b zWAfxQgT0%T?RZ(exmNAmfOunG4Zz5P`s!IHLFK7#-FCk1Vt`}<)~SW zS~2lPkJ%YxpDX@~?la%m>a8jEkjyIIn2N1sIH*6SRBMuhIjFM~%a(wBTOLfW6r$PQ zDOdUt{0esLK}UrNj|;`J-fDMu<@xR|j?&Kl?x}8fov%OmAmF+}ZM&UEJHwqn)1mIJ z)&Qd(52*M(9Nm z$maKd+c>_B{5s0UiP^a=4%;?PymW^)PE>ERnTw?(WnR42V&J5?O}4geoOtEVWM9;7 ziKM~~K!zBF58Wi*;-ON*yqS#GU)aZ%R;EHpk@3pyHA9-mf-3WSHql`?SfEuOZx|Q3 zuElyv1(FS#(iX|p`_NJjVNhTC7~7HGric82f*@*Rs^GU$4Y!OoO!Xmze6s5?Ms&`C1M=fBj%xa>$l!u$N5&9b!3C|FOq9 zgn1;F?)Ue0I*)ZoYN47ngM2z=YXuC1;iXIgQ??<^U6Wz@B~AHAr51+>?q^|SGD}SB z7M9R5pRR~aDqFE`-x^=rwKDu)N$e3nK~8PFitT&*@NSrwFBgQ|jWsY4%-Zg)u3X)g zMjqgxOI0dN@2QKBUh5UNs1{$j_Rb4!N2u*MAf}#=e)=ofP%iQ$Thg8$T77|#VZ-UM z=eHMR@m6bf$KRZInxiB`lnuf}VPmAoMkJEwAczo_tJV4BMQUiWMsjC|59@GRy%^)c z%rG+8>NY<&l}R=@u4$tL%^N`rPx^m0gQGNa#N5=yrZd#rH&1qEdy`eufo@Tw0;F5B zgZZ{@7)CGSWfisFzT!Z-~(73qdR~ItfJv z2bY*z@^QjNCUR}8BECPdeBn|*oi-GDo-)vK?=1(4jGeiTaN{={fc1%hsml0x)K zxwix1X>DuZvet-}wUi`B9s)iX`w52lkLS%bQWI*Ur-`e;B~+x1@TXw6=XyQETTyg- z^~-w=ZP`ze?jGm13mvSw&0uE{3<+Lub~$s3#k8WAIRNca#>K(qR*6-$xv=^Tb`tYwQ5qlP+H%fZB@MaXy5O6C5NOUshnbkTZ9 z$rcjUwT>k+hu<{o`lp$Sht4}mq;MGTyW3Um?#k->4>optTDeH8V(BfF7I+`&>yB+( zDN-+3`JBBl2O5?vXlk;T^jFDVlD}kVY9%^UrHdgy{XXMF#wpFf`n9E(o*hYUW^^ee zEEzvMS}9!GSkPrTxBuCIc}}8O)2tJ8VxB~eW<#@?B{_L0r$jF!l?X1yVrt9SMOI!s z{08LN;?%^I#U-scwI!SAB`dhLQ4|sA;ltWIH1;+N0|zH_K#ZYjngscsekE79J@nAS zI|rLcc>CvJx5D-wmPuy+dGOZQL#r8iwS+chQ>yAD^wJ`lW3^Ox#Qqi8D!D9W#3RDK7`yz+!3P;kg zc^U0^W;FXMGg*m9=HwIjxlG7v=4VwF%r3L}vNJ^N53FC`c$Tw9);3nQs@i*XQco+v zH3yvJ`r=k3;jzfm`~P8?_??}Nb%g-x4&m;Tf~-YdeyMME1O{Gv_EBxwxc$z_cXqz7 z^L;4t16{$Qy|DZA&M~lyz8S;b0`a0?E8fT!1CWBPDa0Y8N>+ON&>HUfENa ztV5TxPhPn&sa(a4t!AnshuuU3Ah>SOBBqOF7lRj?bZ_okVK&zC=X9UO7|qnzcB=}i zteZEU9WJ;y%dB#Bg7W4ZX0e;{J91^P=wcWq;D<@%ZYEH*aolStk4b#`ac*G0~JR^6=j7YCHo(NlIsS+4vGS z7v%Fd!+h#)ta+v0_I|EqZ>7<(c)YT;#V|0G({5wKFsaJQLu7Q%>eD{^Lb7K(xT9{Z z`)!o#tU1fq-n+4}zF)ncSE?H;o89eQR+v0T!oPzaY=HaPw`1D~c6-l~p|Q@!qgP^7 zgcY%JeGd|cG{NKM$_s>d=n9x(WyHR+bGR(4lC6rfa}4hK!Nw*T_FA6WGbU)Cg{4ckP5i6EC4&jcG7m6)V4ne35W ze#xp6lw4VRejsYBYr*r-na^uNLJ}d?W5{|365eHJ#_sM07i?$;HVl}FG^wtNRY0jh z+ai$0&&UlsEp(EI*IixN+`PWB`kc`#-=CQ0j6xZBex$nfnd_a_dbZ(PTlcgFl69GB zjv-6u66AB}t;}AL7+l-FxdK)6Y%gJbFpZG08Nx?9R@sS!@9}3lxAM7ye6b>*>N@7a$;!W0^<7WJm$tcA=U{W+MAY*)HdYa?o10cs z&9lgo_BKwlD$4+g-A#|Gc+Yz2mt0-ies=V7V8h5J-+yKD@YS#zpMtqUdx%+((!`am zH->J|M95p`fyDS?Kt8YJFAvPP$`55|pPQQ{h#ag#q_Tn|lSZN(+**7p!6w;9e z49J9xRu?BU%>zHi?qbHNA*Uv*VO`l7on1bVCbTyR{*K}HW-5*lQd=%vv| zpP@8S>052AJ1ZQCJw|afKeR@_k2e|8C}G|RRecIF?UPddxZ#uN!@+dSWH@#8zebVq zlfG8shUUDV179)HNT?yA>L|^f%-H70@WI5`->5KVw5X1Zz8YPYNfV9Mm}`@GYM$G2 z>Vg_?DmqsjFk|b#-QMQP&R%aV-f)`EBa8v2i7SUNc;xy>Aj}cW3?w;SmNjK$yQJnW z$7IcVPMAl{HiJEifijKgTUi3tOsB_Z0}Bln8PEld$#k0D%Ghp*v&N9T*Mpd`AxZ`_ zV;haBR(v+gl{{%9Ey6H%%WdOT*3`j3#Kn@lKZYw}P*rhe)PVjk{n+ygpRPEM8@1U7K+*cHU0S+&7Mf;v%ypa8~X_u0+u z>v#^~6nQ~!1y4u^Z17%qWUnA@5S}khA-L3_xr+Ls)18W5G(WF?C0ErBby-~WMT*dp zXYE81otDID+UyqaU!Hno129WPu|aAqs<1>MEaUMLb_F|i>~biDDMd4@ll+m8|26K z*LF@|eVh((tb*6(sK6!kYT0R)1FQ}wXBC~K(H0iY@F6JwRZOmbmHAbd@&HCP0DF{< zwaaJ&E_&2JTYh^?vtV!6lc?jzFm@w8(Z&XXR+|7(4b@z|7W z{j!hdn7Y<){0(cd~g`koxIwdTrlkY%an>|N&*n4 z2y%l22R!2<>bRqs1t(;?Xx_d)ETu4~vf{9KuVjZ~>P6x&emNNOL^ab1?x~iJUJ^A# zJNe|gbXf4KA^G?+M9+6~%jqOgJ+ncK^nZLb^=@zD=8i|P70QXzpwe;Byl;G6Ej_)o zJgeAO!bRW-@88bIO!d98A{~K|B(n*^=4s7my;U!DcCR_8bQ-gdjqch3tq%30%esK- zn_POzk);Ek$TgUlYMik^E`FuEd8|Zt!8A%K1cw&Szph2D?$$ODF1FR?$7$<%e?i3i z>XQ7K_9rY-Zy$-5Dm&q>zqjYJ-8 z2W(5!O-x75N1n#M;cF`Mt8E;o5vK5Jf-KZJ2od`v|AL{wqfjBd6sQ#%Sylo&RZN;^ zfKbh{CM+6iLHt*ND_^((PhE}>dTN%-7!CVI_?%OW4LNLFFk0eP?D)b!eqSe}xlMr@y&^qIa%Ob0 zHLn^$nwN=%E8XRpsm05jK)4VO(Fxs!s~~rIt}`;~t*9c-%7ulYIb!~!I%jfjzy}=h znQ*Xvyu&QJq>+M1?N&!|#Sfobd~xe;dfYvIUZ}{GqRA9d>L1#0gJf^pR`Y{S_XTNs zF@EqoS)Z2B&w$Txh*zMKIalDhm~(*zU8o`+tXD`tdjQHcI{hSh%^VNT5n&T70nc5& za*Z?YnD0rfml7M;Dvqt;@-u-dzH|CqT_X?AC8JNkbG=>GIUyP@oGHIFP0+%=G^o$H zC98pT#|q0FhcugATJ}#vr3*P!z>(Tzanb$UB!PQ(8{#6#T3;&m^IPT3U=%kZmd8O_U+- z2aceRWzC!@X3FqACg5C9t@;ABP)8(aY{Y8Hk*iI6l zW|CAYEw;FHS&7OcO~$xLL{{eE#unQ{ttI`3xo!yTf-&rl<`@r$9@{%58d&S)ae!P;TvH12xHUDMWMUqFpyiDRrS=aCaUlh<7vk#xX1!G z2?p~fPnYt*D>?FVduNhp^iVk8>^!1OtV^TS;f$R%xtl7;`oSW)$X-$^)w9{?<{*}L zrS%+ZRV4Q$YCpZR6U1IhDMv$~63fX@#uvnF7bccTbM6ck&q#wUpn@F-JWurbawbgX zbN16uOtYlO1~`%>Gx5?H$@7fAC`z5={GmJR=B4?ogL;2dFAcFR6RX6WoAWj1pm8Y9 zqq~-&XLu^#IGq`cZ4P~<&M}S*jDzicg4dRnLyU=2+NRlebX#^PB!}9DIMY8FzxK(D zHRPx;62b$wQ~6q?U72*u{cDPjW?PWATh)1P@ND`9=GIEly?&gOSo8);&hg(x1Npo8 zM>G&p#7(JkDE$q#-?5H+HUDqlV3R(qM;k6xvU8Qdl)K-swrDWH%|<~*6Tt&Jm1?Qx zz;e@Grwi)9RLGr7;w{a)Yx;r`2C;-H)%r85s6kjUeW%sK7RT0VyqGti_|dv=W9&KE zWl>~3Q%#MHJOC~~v;NvB&tSor;T+PfL2mgS4&*SA+6kg=Ir{pH{@*tnO$*nHlZ~J+ z)m+sa7T661tG%EC+cV|%rw$Pb?-q0nc(2)TR;Vs+yhF9k-)Euu+ocknVV%5zBmpjp z+O3J13$Lj?0&9ifq7KnBhg`Rnhd-X^%S4J*^aq2;i#oMV$OCkHc~F-Muf2&JJ|O{} zCAGgCK0WB|GvS*xJPxrqzr1|O2Q*TS$fuj?W_vy@;qBOCD8p!OKiGQs2=tSfBd1^Ac?=D#`J(Jq3MOFQ4ASGCEW`5$` z%m7zGC_uw?%|;N$pd7%p`$8TfQzg?Xe+~02Mql_feJJ$Ena6ij7_5_mMVLmjM2i}x zktibBx?)9v1H13j+dVzph#{~78~viob$@G=rjZn%aEGh?ksL5(6?$cF_u<`*z13R} zauWQ52Rr0T_f~E`tW4;&2cKPCeQ>My{N~2>2T8?zwm0fk$3`DK*m`bj`}wU0dz z#$)lW;OiTYSqlT|?jLOR9@}MsfO{zV-h8(6;QSu{XDLtru3O(Z{^LRK2~W1R)&JG! z9^Bd8-nT0vczA1LZ{zyLCa0G@c4K30jnmAOnY`IM?6CLMQ??J4@lGNsk>~5VbaQ*_ z*{Bk4uy=B0zq<0|tnzTHD@*<_IsA?P1)^716Oz(DqeNIPPE2s75lB0kFjif7sH!TP zn(D5%^YiZeUSrrA-5KuQ)PGj=pH==--E-F)-dI&{qS7Docf7jmgLi$?F@t$jeg59+ z#9R4S<@)8(tiLY5Yr*zeLUPH|kr@@c)04 z+KPAYxvx6${psD09h>?1@lV|Sk-Lt4&l_GEe{uYm#=pe7lW!Dq^zIK(_XoW0^hfUc z*s+fvKlVQR$S+Om6S+TceRFkU%j$KW@Oq!P`;)IZw*2DcOV;L>X*I@1HTxUCw==0; zKTfA0-fFxQR&6u^xk)VYjxri{@$hXz2j&7EyF~jm;P~fV$Q47ck5HM%_r;+ zTsPaUqPpX`?9b2s@fd5T@y@Z`0y|%^X{kE2{)~OW{{wzFAb4^aLP4`WQf04%x>x_O@%7l)ag;La^*!~_b=D{cX z-i+g|KUtk%+B5t?;Cl+#Td2!l4*n?bOYcesX{m%fzg=hAmpC%(ix)Ax2XRZy$M{7lkDRdp)0{hi-co%k(&Qv&~d)Z`msBk8t!tZ(X6C%%LFK|k*Remn4FYVQf)&N0o~Fbp*PBlj$eCqMnVAAP;L z@u}DT*c*<2r7g?<`M5~L$lCZ?V}9S;suMp*n@`+(-!=8?d*ATV@{7~z())ZUlt~7( zX+bjJapC89Wm?O1eLY@YvA>qyDuuaqBk8VqdcAk(r)kJ&(6z4u& z`fg-~>rck`lzJq?#tn)eef_aVMQLzO$* ze%!mLE>J65S5lenc|n#YT{vy_)c~5nYE0%|jb!Ur|C|hiBg`@3rx?ExQZaZFB8**n zsX6`*%&Av}LPwt_wirN|V_62#g#ESjzI~!S){u3NzX)|e6@mY2Z?8`L9IX_(;>XjJ z**Jq&)2A};zTr=~{XPI^NtZ&Mi8909?x(}ygx^oT#%kB3as=JB_@u0#Z0#0K3p+GX zmCW~Vux>vtn|68NGH?VgGu;@=CqW`ymbQd&cj}v}>TTfiz5Hg5;2~6wNbcB7aIxV+ zeNf#GQ}^*y_ak?$F(@03*$FED9OcWo{MaRx%SKjN{L#PhPrq)_N!z))$twR$6yh|Z z_ul%B>ck;%K_k~n9*y>Yka{m!z2RvW1BQMP^Rd%WCq8d7 zWMTXhcQ1ePHJ^T+_(*IZ;~lJ3-Lf1kd?Mzk=X3>yTw>1CqBvh6`|NvHbGSH8Kb zzT;$dVu9bHADDYuHkIC0S^TwWT;sg&K6Engirxdi?~!Cn<5c-4DDQYVZ7&#In+ZXk zcAJ9Ncqjh;sNkQY57KQ%wfFOsf9q|^+x__h_3!xx>bKwj%FFcUtF89G4*Z7OeDB}9 zOndF`x8dJUVyt?hoIZmdR_l(>t$ypgJLzX^%zl&wfj^=;eaHmHM4jU+`Jr z@C5}w+Jd8nXm6Zy;a>c&`qRMD6XW;pxQ<&xzJiOW|AAKh4;@jzliK4S`y0Ra!*_Xu zs4#2MWv9Lwe}n48ccV`9GvM4$3FOqzk_PntZ!#f2M?V8Ef`6d}M|)BK7b!o>!+?Je zSbl!MZ#h++&=d#!cHpvn99S}?!~gZYCxA!!Em|iw|Cw7lD(iR zX6Nb~UwEiG@lpGRd_^^k%OfL!0NwA`wzY>H-J~%eP46xYS0_Hkw=~9&A2*u<`)JEl z_@wMP{)8{pjXzLh@K<^FA%5R59(BJ@^7`6Cb`V`u-(Dqux`!Q=`tS@!m7QKSbHFXDq--6zj$J+CgH%0KT8^sqCoo zmwUfmewOw^Hr&bgAEmw!s_(b^zx?gdx|a`vpWyxTN4)*b&W+^JCO`PfqUGa5TkyoJpQ8o_f!8g4`)*SXObf5@J#i8p7Q(o9qkc;HPS^q^|g7_ zH@;3AwG4pA=W4xB_No1T8;(BH9s6@zy2%Ue_S&@Y%%7;L|4e_RU)6qDJ`DU}%8#9? zPApn1?Tg3X7C_sZa+GIx?Q2?@8!A2$<6Lx2)n=h zuKMx&)cpZye20Aq@Wbs(Bg54a){3*q!N4E;lh)eIdVJ zI7GB_+?!F8_IJE`bNo!OG=BYeyef*9-W60RDvn{wKii@DLuqj#vMR|HhyC^Sb~c-;Pl(d*tpPs!n_c(z>gfk?7Vwk6GX?x!;7bMke&B@y{s{1L0sjc_wF3Sb;O{NqzYF|K0smv* zwF3Sk@QnigHQ@LYef%rnh*N6*?`Gf;ixm7_z!Aq2dyq{I1a6&jL#ls{AJKW-*=*1Md{@r-1hh_@{sm z3;1sVf3Sdm5jg&YkADn2`LX)@Uu>2Cix&J9RLZ09haTTmy{`I=R{8I?;Q!EqU*jsz zx}fjBr3K#)9DbefJ<%$k1^#{TEj=xIz1Av!Zwp>)!8cp*2Y|!g)Av3J9JZa{zuBt) z-?!k;1BZ>G`u`L-><_`e)~f%1wBS`&`57O*7W{v=>c6E`{_k7m|GI_m|I{jP!*6P} zCqw@;-{bKo_5WL1<$t;bKh%QHw%~WQ;EOHz$rgOA1+TQ=P2j)!!@e%6`Tt<6{0Cd` zr(5t(0^gXbPP`9{YkWW5D*x*(__HneAGYBCtp)!|3;ucw{?{$|cU$m(Y{9Q_6EM?9 zTmOGktNdGmWj{W{8{*IMPyF__RPN7TSB%-#ZiKSlZO zWzTmJ{FA_6f0z4Tg8v3^#D@j{UEtq)tUB>)bWrd=0FHR3;Fo}ZlJ?{u2>z$QX3PTL z$B2Ie`0#P}%~bv%hQw!S@9|Xs-%|dyPrAK#ANcssz<=|S$FfxawKB1jy?7rK^2dPR zK3$#IN$>wj;IOan!`?mv%=fJe_hDbp0RMHq|G89u5jgU5)c*T{zXtuyr1B2|M?6>M zKLq@yj>l64{}gcKnF;>;z!8fT{CVI`{{FqyuL2JzdH-ex@~?m=!Pi6Sd%q3*6Gi#I z2ma5LQ_LWaSN{n(Vs~o)TW~QV{vr6g8=YYQie&q=X{$GJ3 zo-Ft`fFlkj`1e#FdX(oQ`2PitH5|dmX{elUH5_q9m5%{OJVEdbaOC0%ei8b*=MmRe zg1?vYd!Uc&>3cokSYJ{3Ch$x6sgI}f|A-+N{@;Bd{`2rx4Zp7X0QDmWRquZs_-ANe zYC!NOfu*kjnXlJXKLs3dF_r&3@E4Q6cVG3*)jt6)=kqIq|4hxlUjvR9xZeLw;9oBI z@wb5^M^@!`V=uVBdKcc}>#H{cM~fc-a zcfb)dQT@LM{0q#FDhU3Ez!AF^{3YO6zY+XZ;8-&h{2u1>*WeG#YYHPvyT0 z9685=k74M1{SVa}=eK>z%kjL0^2l#f{kH>u_066eEBGw%jd8bKE{0iYO4P{aP`K(AMzYH@~Tw-ZvvP7`$wvu{9VbDuL1w;U-o!}En0)@G0O}dr*6uz>g>U z_090Zhk$?Ydjg8v`jAD^k^`yT*D?uyF489~Ix(G!0y)&JwbpDD&m>>%gDss1~G>+!#_ zS^)mtanD~+`3)RR$>aB?_Esp5{799*A2`-i1s?)O{8aD{0}rpeQ6hQ&Q^1kauJXSP ze2edWFtz_b0>|2r%KxRxQ=X&X-v*AnM8WsL58sCTIF;W2cHmeuQ~3~ZteXfv2ORNe z!Slee#wYk0;K=h3d;t8u3!d90_#?ov&LH@|0sa*F{ioCS|6AaPum^?{++luV%~19K z7Ui)XEBGG($J&?RF99Dz|AhSc8gM;7Z>ate^AT%ns{emd{?;F;>F+-P*Yf?I>VDu@ zqg4IxM83uvqu|#eh&}-Qg*>{K9}(wN`L_Unte~Io0**ZjDt`bt*5U+T0RDBxuNfEo z1aRcy2!00mCFt|3sr-Gw)m$wfUI0G)i`9t_^H}oy&jEk2&@Z0`F7?Y#14pj7+W&jN zr9Am%;I|^rw$k^09XQsTRsTQe{VZQzU%i%)Wb7SK`P+*SrReu8aI6=od>;72;72Bn z`nv*L%IDL}S7|>!OL^o9>it{5Ut#_*J*zh#ySw@@aO7>O{8PXYw-@|f(EmNiGl@yT zKSTL%7WDRafU9q+@%cXie-?S6+(gy?5^$_52%bP6OcwI&*D0^@@rLSmfdBpk_GWtj zKLVHh{1)tq$kkPQ-whn=pn}f9Aq)OC;K+v%d_VAenV&gY6#Vai-^%=jycz>8_0yxkZ+a*4 zJGD0pe3tRQFTIZ~Uqyb4+WTH$`fFX5|FGSFzp45t@aaN6d>S~`eD(g%07tI0;C~1l zYx#oz7vRWm7W`Ylk^dt2_kbfGNbny3{{j8|OzQ9J2uw+T0Mg0h)xE&)0AFuU4tw*77I zq3z0lX=@vY(>`a%Aw9gay=(BpY)5-|k@Jlne9E3(Sh~y`ws~@6-LF==vAeys&B<~% z>|luQ-V0l+tw(lvP&{Mj-D+=-6Rf`2!m7BeM2qK&5@}Z2yd5HO$x3s%g z`Sw69OJgUJ?Uo+UShE7|6-3*cIUW+t#!8u6^%t>3~VwTI;RFdzD?ivv-wq{;0X!+r7D=(-N8U zJemR}1xC))70%PYR(E(Z&o$0$$b7zCa&VZ?F?VqDdT)1r-9}X%s0r>+x1L3RCb&Iq z>&gy=OWcaGcEEi#c?3Mvo8F3m?HwEF!tTa4SNFV79nL27%@}V~hl8+u$ouo_(O2*) zoY4t8#=rjR;=$Gy_yJoK*xmKj;nN$v&9#JLKWIM9_=GOBn%>@hYGrd{O?bbswU$Y9 zc5AP9~}4P7f7bdwEX&~qppS0?MvxI=jKgIez8sKCY^otTIZ?gLw4^KKN_cR zmPaWz&Hx=$U}s|H11bBCU@La6+s`;(8%j>a^0E91H4g-|XE)o$$!| zA06)6EoWRrxJ`*&1f?omu)xsyv99}q^n(lQ_V-`Vug$$)&xXOS_BAWIxpT1FQyu%^ z*S$krpsUM$R4XrVPR^RBt$skOyZby6MjLgw<*x5p@gUx7R!dL4i=bVEwso)r;tn_x z6+OMfb-kz12n5BO~B4JhnMtr-_8>V zqxT&DCWRl}+EZ7pEnU~g2KLkz&ntFBEyz2g|Xt?jCdNI%s0z@goArW4NM=0Be4rYXCekKURU zVJ8}Kf7JFiv&?0849iZ-Pp9Hrzh~8N*kP$>!fXCuf61<>N+sm2KeP9h-QS{2)w$h7Y49_(;EU+d~WyTQ(C zPs7k)f#D(^IFeX50r-ITxwtXVqkBSoy1>zlw!x=R`!wYnPnYcs-`$lB-7=c6PkSzh z%pj?5X=JWfF-A1N+Mqbx-yOyXtZUfV-_&sIauE}}Gf3HF4_9FLYBA#f-Czr#O z)x3C|XX&dD7iw^?Hwy_>2dguXPNFof@YGl{^enyPK#=;7OUU2(Gt09iEx1>cA;J%t zV|3#!Pd2Wv7V?27*Y_}E=~Nn<(S)I$G9TCo^LhY%bHkmnFg5pK4Mt%%w^k&t3z$+o;>Ei{2zP1| z!{hzUJ$(1}`S$La6oG?uqLl<}Ewq$?m4zr)f`W~OV2TtX+9}v5Dg6C@-}mj#ZW3@{ z@6GOfJ2N};&F}lo&fa`pqzxQaSp4NR>Tt~|x?fI}mF~PpWeKgLbSYy$Qw&x_Ja>0z2H_+b80HH+r|dIj5UB>VmofJxh?> zoe!5|&Wq$^b_bl#_@A~UsixR%DhNm*q-=SGAz;W&Hv_!@D-ItQuI7MKQF z3Ah$*eV;p4wbVY`4i675lt5=dzAkm~H8)Qp3=McV^wp)X$8tWg zb~noE=Ia8Swu1E|vp0Vz{V^?a~?X(knfKwJ^N@M~nP$L;XzDs|lL_KZfc6Uh(2 z=2o?dZj=qkYB*%W13JOh*G_N^)NKY>kUeJQg-=^pLR_t^N$g3@X}1gz)igzov)Y^$ z_D!p$zg}o{xznl40GMTQSPtX=0Gt$d28|=ks%l#X z!JJaD9CUN{l|c-%t`A(1#Xy+q_;9R20OhfbgG@!+R6rUnxR<{G&U(dX(WMP@xHw&6 zlB6a!!VW)6bO~(Tq`Nh1X9tPG49cUU@{p&Z+0qX)HjNeKv#Ca}Px(4Vb4kk(972ZF zIe@pFDUUHeyis_g+!Iv6UdoEpAVphZGz7{OFprwNchEmF)@T`K^bM36W6Wvk0N%>m zOi(W_<10XQcCBgPGp{bJ5NyuW8a(w@5oKd)p5o@M zN5-xCG-SXv+dE4REx;I1Wpzny1xlc>2wU!kIc#!G7l9P0Nz1dgA)CKuXsqVe1eSy2 zkr|_Ugb`vVOZ6!gYY+Pp=(vs4ntm^&al4oe7-2%egdTs2X;2t|he&hKGsh_rF;fy6 zCSx?R7S=s3CZhv7hDz15IRXZ{NQyk-^r5_tiqA)?r%wvN(*h7gHAM%k*`qM}SRP@? ztGa&3eYy%{WWNUy6VzxbGa07BUxB7V`1v7nOPAyGa!v3KexuxLh)26{ z?Puq0d=s2~*T^)68#q`$=EpUw+kHfIg}?q%AHO$oM1EW=yWPiKkx3@^KH|)e2iGVh zhj;{DXZQ$5bH>lB$MNs&uPeM;fI+Zgxu#I=lL^`dsw+&BR$IH|7`q# zkN2a^kW}aQV;1Li=6CBK#w-b?fJv z5+e43%boQszWQc8-TO6CEkB;U)RFu0(+#X8HGwibUdA8j-Xc=Ihun*C;xatF j 1c000900 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/vectors.S:33 + j freertos_risc_v_trap_handler +1c000804 <__irq_vector_base+0x4> j 1c000900 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/vectors.S:34 + j freertos_risc_v_trap_handler +1c000808 <__irq_vector_base+0x8> j 1c000900 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/vectors.S:35 + j freertos_risc_v_trap_handler +1c00080c <__irq_vector_base+0xc> j 1c000900 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/vectors.S:36 + j freertos_risc_v_trap_handler +1c000810 <__irq_vector_base+0x10> j 1c000900 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/vectors.S:37 + j freertos_risc_v_trap_handler +1c000814 <__irq_vector_base+0x14> j 1c000900 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/vectors.S:38 + j freertos_risc_v_trap_handler +1c000818 <__irq_vector_base+0x18> j 1c000900 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/vectors.S:39 + j freertos_risc_v_trap_handler +1c00081c <__irq_vector_base+0x1c> j 1c000900 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/vectors.S:40 + j freertos_risc_v_trap_handler +1c000820 <__irq_vector_base+0x20> j 1c000900 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/vectors.S:41 + j freertos_risc_v_trap_handler +1c000824 <__irq_vector_base+0x24> j 1c000900 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/vectors.S:45 +#ifdef PULP_FREERTOS_VECTORED_CONTEXT_SWITCH + j freertos_risc_v_ctxt_handler +#else + j freertos_risc_v_trap_handler +1c000828 <__irq_vector_base+0x28> j 1c000900 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/vectors.S:50 +#endif +#ifdef __HACK_FIRMWARE_OPT1 /* TODO: properly do this with weak symbols */ + j TIMER1_IRQ_handler +#else + j freertos_risc_v_trap_handler +1c00082c <__irq_vector_base+0x2c> j 1c000900 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/vectors.S:52 +#endif + j freertos_risc_v_trap_handler +1c000830 <__irq_vector_base+0x30> j 1c000900 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/vectors.S:53 + j freertos_risc_v_trap_handler +1c000834 <__irq_vector_base+0x34> j 1c000900 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/vectors.S:54 + j freertos_risc_v_trap_handler +1c000838 <__irq_vector_base+0x38> j 1c000900 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/vectors.S:55 + j freertos_risc_v_trap_handler +1c00083c <__irq_vector_base+0x3c> j 1c000900 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/vectors.S:56 + j freertos_risc_v_trap_handler +1c000840 <__irq_vector_base+0x40> j 1c000900 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/vectors.S:57 + j freertos_risc_v_trap_handler +1c000844 <__irq_vector_base+0x44> j 1c000900 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/vectors.S:58 + j freertos_risc_v_trap_handler +1c000848 <__irq_vector_base+0x48> j 1c000900 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/vectors.S:59 + j freertos_risc_v_trap_handler +1c00084c <__irq_vector_base+0x4c> j 1c000900 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/vectors.S:60 + j freertos_risc_v_trap_handler +1c000850 <__irq_vector_base+0x50> j 1c000900 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/vectors.S:61 + j freertos_risc_v_trap_handler +1c000854 <__irq_vector_base+0x54> j 1c000900 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/vectors.S:62 + j freertos_risc_v_trap_handler +1c000858 <__irq_vector_base+0x58> j 1c000900 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/vectors.S:63 + j freertos_risc_v_trap_handler +1c00085c <__irq_vector_base+0x5c> j 1c000900 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/vectors.S:64 + j freertos_risc_v_trap_handler +1c000860 <__irq_vector_base+0x60> j 1c000900 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/vectors.S:65 + j freertos_risc_v_trap_handler +1c000864 <__irq_vector_base+0x64> j 1c000900 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/vectors.S:66 + j freertos_risc_v_trap_handler +1c000868 <__irq_vector_base+0x68> j 1c000900 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/vectors.S:67 + j freertos_risc_v_trap_handler +1c00086c <__irq_vector_base+0x6c> j 1c000900 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/vectors.S:68 + j freertos_risc_v_trap_handler +1c000870 <__irq_vector_base+0x70> j 1c000900 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/vectors.S:69 + j freertos_risc_v_trap_handler +1c000874 <__irq_vector_base+0x74> j 1c000900 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/vectors.S:70 + j freertos_risc_v_trap_handler +1c000878 <__irq_vector_base+0x78> j 1c000900 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/vectors.S:71 + j freertos_risc_v_trap_handler +1c00087c <__irq_vector_base+0x7c> j 1c000900 + +Disassemblamento della sezione .text: +_start(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/crt0.S:39 + +_start: +/* initialize global pointer */ +.option push +.option norelax +1: auipc gp, %pcrel_hi(__global_pointer$) +1c000880 <_start> auipc gp,0x9 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/crt0.S:40 + addi gp, gp, %pcrel_lo(1b) +1c000884 <_start+0x4> addi gp,gp,-1188 # 1c0093dc <__global_pointer$> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/crt0.S:43 +.option pop + + csrr a0, 0xf14 /* Cluster ID */ +1c000888 <_start+0x8> csrr a0,mhartid +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/crt0.S:44 + andi a1, a0, 0x1f /* Core ID */ +1c00088c <_start+0xc> andi a1,a0,31 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/crt0.S:45 + srli a0, a0, 5 +1c000890 <_start+0x10> srli a0,a0,0x5 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/crt0.S:54 + //bne a2, a0, cl_cluster_exec_loop + .extern cluster_exec_loop + bne a2, a0, cluster_exec_loop +#endif +/* initialize stack pointer */ + la sp, __stack_top +1c000892 <_start+0x12> auipc sp,0x19 +1c000896 <_start+0x16> addi sp,sp,286 # 1c0199b0 <__cluster_text_end> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/crt0.S:57 + +/* set vector table address */ + la a0, __vector_start +1c00089a <_start+0x1a> auipc a0,0x0 +1c00089e <_start+0x1e> addi a0,a0,-154 # 1c000800 <__irq_vector_base> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/crt0.S:58 + or a0, a0, 1 /* enable vectored mode (hardcoded anyway for RI5CY) */ +1c0008a2 <_start+0x22> ori a0,a0,1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/crt0.S:59 + csrw mtvec, a0 +1c0008a6 <_start+0x26> csrw mtvec,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/crt0.S:62 + +/* clear the bss segment */ + la t0, __bss_start +1c0008aa <_start+0x2a> auipc t0,0x8 +1c0008ae <_start+0x2e> addi t0,t0,926 # 1c008c48 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/crt0.S:63 + la t1, __bss_end +1c0008b2 <_start+0x32> addi t1,gp,-568 # 1c0091a4 <__bss_end> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/crt0.S:65 +1: + sw zero,0(t0) +1c0008b6 <_start+0x36> sw zero,0(t0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/crt0.S:66 + addi t0, t0, 4 +1c0008ba <_start+0x3a> addi t0,t0,4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/crt0.S:67 + bltu t0, t1, 1b +1c0008bc <_start+0x3c> bltu t0,t1,1c0008b6 <_start+0x36> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/crt0.S:71 + +/* new-style constructors and destructors */ +#if defined(__PULP_USE_LIBC) + la a0, __libc_fini_array +1c0008c0 <_start+0x40> auipc a0,0x3 +1c0008c4 <_start+0x44> addi a0,a0,-128 # 1c003840 <__libc_fini_array> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/crt0.S:72 + call atexit +1c0008c8 <_start+0x48> jal ra,1c003808 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/crt0.S:73 + call __libc_init_array +1c0008cc <_start+0x4c> jal ra,1c0038a2 <__libc_init_array> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/crt0.S:77 +#endif + +/* call main */ + lw a0, 0(sp) /* a0 = argc */ +1c0008d0 <_start+0x50> lw a0,0(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/crt0.S:78 + addi a1, sp, __SIZEOF_POINTER__ /* a1 = argv */ +1c0008d2 <_start+0x52> addi a1,sp,4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/crt0.S:79 + li a2, 0 /* a2 = envp = NULL */ +1c0008d4 <_start+0x54> li a2,0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/crt0.S:80 + call main +1c0008d6 <_start+0x56> jal ra,1c00375e

+/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/crt0.S:81 + tail exit +1c0008da <_start+0x5a> j 1c003814 +_init(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/crt0.S:93 +.type _fini, @function +_init: +_fini: + /* These don't have to do anything since we use init_array/fini_array. Prevent + missing symbol error */ + ret +1c0008de <_fini> ret + ... +freertos_risc_v_trap_handler(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:124 +/*-----------------------------------------------------------*/ + +.align 8 +.func +freertos_risc_v_trap_handler: + addi sp, sp, -portCONTEXT_SIZE +1c000900 addi sp,sp,-120 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:125 + store_x x1, 1 * portWORD_SIZE( sp ) +1c000904 sw ra,4(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:126 + store_x x5, 2 * portWORD_SIZE( sp ) +1c000906 sw t0,8(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:127 + store_x x6, 3 * portWORD_SIZE( sp ) +1c000908 sw t1,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:128 + store_x x7, 4 * portWORD_SIZE( sp ) +1c00090a sw t2,16(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:129 + store_x x8, 5 * portWORD_SIZE( sp ) +1c00090c sw s0,20(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:130 + store_x x9, 6 * portWORD_SIZE( sp ) +1c00090e sw s1,24(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:131 + store_x x10, 7 * portWORD_SIZE( sp ) +1c000910 sw a0,28(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:132 + store_x x11, 8 * portWORD_SIZE( sp ) +1c000912 sw a1,32(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:133 + store_x x12, 9 * portWORD_SIZE( sp ) +1c000914 sw a2,36(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:134 + store_x x13, 10 * portWORD_SIZE( sp ) +1c000916 sw a3,40(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:135 + store_x x14, 11 * portWORD_SIZE( sp ) +1c000918 sw a4,44(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:136 + store_x x15, 12 * portWORD_SIZE( sp ) +1c00091a sw a5,48(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:138 +#ifndef __riscv_32e /* defined by gcc when -march=rv32e */ + store_x x16, 13 * portWORD_SIZE( sp ) +1c00091c sw a6,52(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:139 + store_x x17, 14 * portWORD_SIZE( sp ) +1c00091e sw a7,56(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:140 + store_x x18, 15 * portWORD_SIZE( sp ) +1c000920 sw s2,60(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:141 + store_x x19, 16 * portWORD_SIZE( sp ) +1c000922 sw s3,64(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:142 + store_x x20, 17 * portWORD_SIZE( sp ) +1c000924 sw s4,68(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:143 + store_x x21, 18 * portWORD_SIZE( sp ) +1c000926 sw s5,72(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:144 + store_x x22, 19 * portWORD_SIZE( sp ) +1c000928 sw s6,76(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:145 + store_x x23, 20 * portWORD_SIZE( sp ) +1c00092a sw s7,80(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:146 + store_x x24, 21 * portWORD_SIZE( sp ) +1c00092c sw s8,84(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:147 + store_x x25, 22 * portWORD_SIZE( sp ) +1c00092e sw s9,88(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:148 + store_x x26, 23 * portWORD_SIZE( sp ) +1c000930 sw s10,92(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:149 + store_x x27, 24 * portWORD_SIZE( sp ) +1c000932 sw s11,96(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:150 + store_x x28, 25 * portWORD_SIZE( sp ) +1c000934 sw t3,100(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:151 + store_x x29, 26 * portWORD_SIZE( sp ) +1c000936 sw t4,104(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:152 + store_x x30, 27 * portWORD_SIZE( sp ) +1c000938 sw t5,108(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:153 + store_x x31, 28 * portWORD_SIZE( sp ) +1c00093a sw t6,112(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:156 +#endif + + csrr t0, mstatus /* Required for MPIE bit. */ +1c00093c csrr t0,mstatus +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:157 + store_x t0, 29 * portWORD_SIZE( sp ) +1c000940 sw t0,116(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:159 +#ifndef portasmSKIP_ADDITIONAL_REGISTERS + portasmSAVE_ADDITIONAL_REGISTERS /* Defined in freertos_risc_v_chip_specific_extensions.h to save any registers unique to the RISC-V implementation. */ +1c000942 addi sp,sp,-24 +1c000944 csrr t0,0x7c0 +1c000948 csrr t1,0x7c1 +1c00094c csrr t2,0x7c2 +1c000950 csrr t3,0x7c4 +1c000954 csrr t4,0x7c5 +1c000958 csrr t5,0x7c6 +1c00095c sw t0,4(sp) +1c00095e sw t1,8(sp) +1c000960 sw t2,12(sp) +1c000962 sw t3,16(sp) +1c000964 sw t4,20(sp) +1c000966 sw t5,24(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:162 +#endif + + load_x t0, pxCurrentTCB /* Load pxCurrentTCB. */ +1c000968 lw t0,-684(gp) # 1c009130 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:163 + store_x sp, 0( t0 ) /* Write sp to first TCB member. */ +1c00096c sw sp,0(t0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:165 + + csrr a0, mcause +1c000970 csrr a0,mcause +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:166 + csrr a1, mepc +1c000974 csrr a1,mepc +test_if_asynchronous(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:169 + +test_if_asynchronous: + srli a2, a0, __riscv_xlen - 1 /* MSB of mcause is 1 if handing an asynchronous interrupt - shift to LSB to clear other bits. */ +1c000978 srli a2,a0,0x1f +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:170 + beq a2, x0, handle_synchronous /* Branch past interrupt handing if not asynchronous. */ +1c00097c beqz a2,1c00098e +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:171 + store_x a1, 0( sp ) /* Asynch so save unmodified exception return address. */ +1c00097e sw a1,0(sp) +handle_asynchronous(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:229 + addi t1, t1, 4 /* 0x80000007 + 4 = 0x8000000b == Machine external interrupt. */ + bne a0, t1, as_yet_unhandled /* Something as yet unhandled. */ + +#endif /* portasmHAS_MTIME */ + + load_x sp, xISRStackTop /* Switch to ISR stack before function call. */ +1c000980 auipc sp,0x8 +1c000984 lw sp,596(sp) # 1c008bd4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:230 + jal portasmHANDLE_INTERRUPT /* Jump to the interrupt handler if there is no CLINT or if there is a CLINT and it has been determined that an external interrupt is pending. */ +1c000988 jal ra,1c002b06 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:231 + j processed_source +1c00098c j 1c0009be +handle_synchronous(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:234 + +handle_synchronous: + addi a1, a1, 4 /* Synchronous so updated exception return address to the instruction after the instruction that generated the exeption. */ +1c00098e addi a1,a1,4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:235 + store_x a1, 0( sp ) /* Save updated exception return address. */ +1c000990 sw a1,0(sp) +test_if_environment_call(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:238 + +test_if_environment_call: + li t0, 11 /* 11 == environment call. */ +1c000992 li t0,11 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:239 + andi a0, a0, 0x7ff /* with the CLIC the lower 12 bits are the exception code and upper bits might be clobbered mpil, mie etc. */ +1c000994 andi a0,a0,2047 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:240 + bne a0, t0, is_exception /* Not an M environment call, so some other exception. */ +1c000998 bne a0,t0,1c0009aa +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:241 + load_x sp, xISRStackTop /* Switch to ISR stack before function call. */ +1c00099c auipc sp,0x8 +1c0009a0 lw sp,568(sp) # 1c008bd4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:242 + jal vTaskSwitchContext +1c0009a4 jal ra,1c001b76 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:243 + j processed_source +1c0009a8 j 1c0009be +is_exception(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:246 + +is_exception: + csrr t0, mcause /* For viewing in the debugger only. */ +1c0009aa csrr t0,mcause +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:247 + csrr t1, mepc /* For viewing in the debugger only */ +1c0009ae csrr t1,mepc +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:248 + csrr t2, mstatus +1c0009b2 csrr t2,mstatus +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:249 + j is_exception /* No other exceptions handled yet. */ +1c0009b6 j 1c0009aa +as_yet_unhandled(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:252 + +as_yet_unhandled: + csrr t0, mcause /* For viewing in the debugger only. */ +1c0009b8 csrr t0,mcause +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:253 + j as_yet_unhandled +1c0009bc j 1c0009b8 +processed_source(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:256 + +processed_source: + load_x t1, pxCurrentTCB /* Load pxCurrentTCB. */ +1c0009be lw t1,-684(gp) # 1c009130 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:257 + load_x sp, 0( t1 ) /* Read sp from first TCB member. */ +1c0009c2 lw sp,0(t1) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:260 + + /* Load mret with the address of the next instruction in the task to run next. */ + load_x t0, 0( sp ) +1c0009c6 lw t0,0(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:261 + csrw mepc, t0 +1c0009c8 csrw mepc,t0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:264 + +#ifndef portasmSKIP_ADDITIONAL_REGISTERS + portasmRESTORE_ADDITIONAL_REGISTERS /* Defined in freertos_risc_v_chip_specific_extensions.h to restore any registers unique to the RISC-V implementation. */ +1c0009cc lw t0,4(sp) +1c0009ce lw t1,8(sp) +1c0009d0 lw t2,12(sp) +1c0009d2 lw t3,16(sp) +1c0009d4 lw t4,20(sp) +1c0009d6 lw t5,24(sp) +1c0009d8 csrw 0x7c0,t0 +1c0009dc csrw 0x7c1,t1 +1c0009e0 csrw 0x7c2,t2 +1c0009e4 csrw 0x7c4,t3 +1c0009e8 csrw 0x7c5,t4 +1c0009ec csrw 0x7c6,t5 +1c0009f0 addi sp,sp,24 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:268 +#endif + + /* Load mstatus with the interrupt enable bits used by the task. */ + load_x t0, 29 * portWORD_SIZE( sp ) +1c0009f2 lw t0,116(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:269 + csrw mstatus, t0 /* Required for MPIE bit. */ +1c0009f4 csrw mstatus,t0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:271 + + load_x x1, 1 * portWORD_SIZE( sp ) +1c0009f8 lw ra,4(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:272 + load_x x5, 2 * portWORD_SIZE( sp ) /* t0 */ +1c0009fa lw t0,8(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:273 + load_x x6, 3 * portWORD_SIZE( sp ) /* t1 */ +1c0009fc lw t1,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:274 + load_x x7, 4 * portWORD_SIZE( sp ) /* t2 */ +1c0009fe lw t2,16(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:275 + load_x x8, 5 * portWORD_SIZE( sp ) /* s0/fp */ +1c000a00 lw s0,20(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:276 + load_x x9, 6 * portWORD_SIZE( sp ) /* s1 */ +1c000a02 lw s1,24(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:277 + load_x x10, 7 * portWORD_SIZE( sp ) /* a0 */ +1c000a04 lw a0,28(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:278 + load_x x11, 8 * portWORD_SIZE( sp ) /* a1 */ +1c000a06 lw a1,32(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:279 + load_x x12, 9 * portWORD_SIZE( sp ) /* a2 */ +1c000a08 lw a2,36(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:280 + load_x x13, 10 * portWORD_SIZE( sp ) /* a3 */ +1c000a0a lw a3,40(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:281 + load_x x14, 11 * portWORD_SIZE( sp ) /* a4 */ +1c000a0c lw a4,44(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:282 + load_x x15, 12 * portWORD_SIZE( sp ) /* a5 */ +1c000a0e lw a5,48(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:284 +#ifndef __riscv_32e /* defined by gcc when -march=rv32e */ + load_x x16, 13 * portWORD_SIZE( sp ) /* a6 */ +1c000a10 lw a6,52(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:285 + load_x x17, 14 * portWORD_SIZE( sp ) /* a7 */ +1c000a12 lw a7,56(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:286 + load_x x18, 15 * portWORD_SIZE( sp ) /* s2 */ +1c000a14 lw s2,60(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:287 + load_x x19, 16 * portWORD_SIZE( sp ) /* s3 */ +1c000a16 lw s3,64(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:288 + load_x x20, 17 * portWORD_SIZE( sp ) /* s4 */ +1c000a18 lw s4,68(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:289 + load_x x21, 18 * portWORD_SIZE( sp ) /* s5 */ +1c000a1a lw s5,72(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:290 + load_x x22, 19 * portWORD_SIZE( sp ) /* s6 */ +1c000a1c lw s6,76(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:291 + load_x x23, 20 * portWORD_SIZE( sp ) /* s7 */ +1c000a1e lw s7,80(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:292 + load_x x24, 21 * portWORD_SIZE( sp ) /* s8 */ +1c000a20 lw s8,84(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:293 + load_x x25, 22 * portWORD_SIZE( sp ) /* s9 */ +1c000a22 lw s9,88(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:294 + load_x x26, 23 * portWORD_SIZE( sp ) /* s10 */ +1c000a24 lw s10,92(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:295 + load_x x27, 24 * portWORD_SIZE( sp ) /* s11 */ +1c000a26 lw s11,96(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:296 + load_x x28, 25 * portWORD_SIZE( sp ) /* t3 */ +1c000a28 lw t3,100(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:297 + load_x x29, 26 * portWORD_SIZE( sp ) /* t4 */ +1c000a2a lw t4,104(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:298 + load_x x30, 27 * portWORD_SIZE( sp ) /* t5 */ +1c000a2c lw t5,108(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:299 + load_x x31, 28 * portWORD_SIZE( sp ) /* t6 */ +1c000a2e lw t6,112(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:301 +#endif + addi sp, sp, portCONTEXT_SIZE +1c000a30 addi sp,sp,120 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:303 + + mret +1c000a34 mret +1c000a38 nop +1c000a3c nop +1c000a40 nop +1c000a44 nop +1c000a48 nop +1c000a4c nop +1c000a50 nop +1c000a54 nop +1c000a58 nop +1c000a5c nop +1c000a60 nop +1c000a64 nop +1c000a68 nop +1c000a6c nop +1c000a70 nop +1c000a74 nop +1c000a78 nop +1c000a7c nop +1c000a80 nop +1c000a84 nop +1c000a88 nop +1c000a8c nop +1c000a90 nop +1c000a94 nop +1c000a98 nop +1c000a9c nop +1c000aa0 nop +1c000aa4 nop +1c000aa8 nop +1c000aac nop +1c000ab0 nop +1c000ab4 nop +1c000ab8 nop +1c000abc nop +1c000ac0 nop +1c000ac4 nop +1c000ac8 nop +1c000acc nop +1c000ad0 nop +1c000ad4 nop +1c000ad8 nop +1c000adc nop +1c000ae0 nop +1c000ae4 nop +1c000ae8 nop +1c000aec nop +1c000af0 nop +1c000af4 nop +1c000af8 nop +1c000afc nop +freertos_risc_v_ctxt_handler(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:311 + +/* for timer interrupt vectored context switches */ +.align 8 +.func +freertos_risc_v_ctxt_handler: + addi sp, sp, -portCONTEXT_SIZE +1c000b00 addi sp,sp,-120 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:312 + store_x x1, 1 * portWORD_SIZE( sp ) +1c000b04 sw ra,4(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:313 + store_x x5, 2 * portWORD_SIZE( sp ) +1c000b06 sw t0,8(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:314 + store_x x6, 3 * portWORD_SIZE( sp ) +1c000b08 sw t1,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:315 + store_x x7, 4 * portWORD_SIZE( sp ) +1c000b0a sw t2,16(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:316 + store_x x8, 5 * portWORD_SIZE( sp ) +1c000b0c sw s0,20(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:317 + store_x x9, 6 * portWORD_SIZE( sp ) +1c000b0e sw s1,24(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:318 + store_x x10, 7 * portWORD_SIZE( sp ) +1c000b10 sw a0,28(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:319 + store_x x11, 8 * portWORD_SIZE( sp ) +1c000b12 sw a1,32(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:320 + store_x x12, 9 * portWORD_SIZE( sp ) +1c000b14 sw a2,36(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:321 + store_x x13, 10 * portWORD_SIZE( sp ) +1c000b16 sw a3,40(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:322 + store_x x14, 11 * portWORD_SIZE( sp ) +1c000b18 sw a4,44(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:323 + store_x x15, 12 * portWORD_SIZE( sp ) +1c000b1a sw a5,48(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:325 +#ifndef __riscv_32e /* defined by gcc when -march=rv32e */ + store_x x16, 13 * portWORD_SIZE( sp ) +1c000b1c sw a6,52(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:326 + store_x x17, 14 * portWORD_SIZE( sp ) +1c000b1e sw a7,56(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:327 + store_x x18, 15 * portWORD_SIZE( sp ) +1c000b20 sw s2,60(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:328 + store_x x19, 16 * portWORD_SIZE( sp ) +1c000b22 sw s3,64(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:329 + store_x x20, 17 * portWORD_SIZE( sp ) +1c000b24 sw s4,68(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:330 + store_x x21, 18 * portWORD_SIZE( sp ) +1c000b26 sw s5,72(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:331 + store_x x22, 19 * portWORD_SIZE( sp ) +1c000b28 sw s6,76(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:332 + store_x x23, 20 * portWORD_SIZE( sp ) +1c000b2a sw s7,80(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:333 + store_x x24, 21 * portWORD_SIZE( sp ) +1c000b2c sw s8,84(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:334 + store_x x25, 22 * portWORD_SIZE( sp ) +1c000b2e sw s9,88(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:335 + store_x x26, 23 * portWORD_SIZE( sp ) +1c000b30 sw s10,92(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:336 + store_x x27, 24 * portWORD_SIZE( sp ) +1c000b32 sw s11,96(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:337 + store_x x28, 25 * portWORD_SIZE( sp ) +1c000b34 sw t3,100(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:338 + store_x x29, 26 * portWORD_SIZE( sp ) +1c000b36 sw t4,104(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:339 + store_x x30, 27 * portWORD_SIZE( sp ) +1c000b38 sw t5,108(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:340 + store_x x31, 28 * portWORD_SIZE( sp ) +1c000b3a sw t6,112(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:343 +#endif + + csrr t0, mstatus /* Required for MPIE bit. */ +1c000b3c csrr t0,mstatus +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:344 + store_x t0, 29 * portWORD_SIZE( sp ) +1c000b40 sw t0,116(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:346 +#ifndef portasmSKIP_ADDITIONAL_REGISTERS + portasmSAVE_ADDITIONAL_REGISTERS /* Defined in freertos_risc_v_chip_specific_extensions.h to save any registers unique to the RISC-V implementation. */ +1c000b42 addi sp,sp,-24 +1c000b44 csrr t0,0x7c0 +1c000b48 csrr t1,0x7c1 +1c000b4c csrr t2,0x7c2 +1c000b50 csrr t3,0x7c4 +1c000b54 csrr t4,0x7c5 +1c000b58 csrr t5,0x7c6 +1c000b5c sw t0,4(sp) +1c000b5e sw t1,8(sp) +1c000b60 sw t2,12(sp) +1c000b62 sw t3,16(sp) +1c000b64 sw t4,20(sp) +1c000b66 sw t5,24(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:349 +#endif + + load_x t0, pxCurrentTCB /* Load pxCurrentTCB. */ +1c000b68 lw t0,-684(gp) # 1c009130 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:350 + store_x sp, 0( t0 ) /* Write sp to first TCB member. */ +1c000b6c sw sp,0(t0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:352 + + csrr a0, mcause +1c000b70 csrr a0,mcause +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:353 + csrr a1, mepc +1c000b74 csrr a1,mepc +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:355 + + store_x a1, 0( sp ) /* Asynch so save unmodified exception return address. */ +1c000b78 sw a1,0(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:357 + + load_x sp, xISRStackTop /* Switch to ISR stack before function call. */ +1c000b7a auipc sp,0x8 +1c000b7e lw sp,90(sp) # 1c008bd4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:358 + jal xTaskIncrementTick +1c000b82 jal ra,1c001a28 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:359 + beqz a0, processed_source /* Don't switch context if incrementing tick didn't unblock a task. */ +1c000b86 beqz a0,1c0009be +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:360 + jal vTaskSwitchContext +1c000b8a jal ra,1c001b76 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:362 + + load_x t1, pxCurrentTCB /* Load pxCurrentTCB. */ +1c000b8e lw t1,-684(gp) # 1c009130 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:363 + load_x sp, 0( t1 ) /* Read sp from first TCB member. */ +1c000b92 lw sp,0(t1) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:366 + + /* Load mret with the address of the next instruction in the task to run next. */ + load_x t0, 0( sp ) +1c000b96 lw t0,0(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:367 + csrw mepc, t0 +1c000b98 csrw mepc,t0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:370 + +#ifndef portasmSKIP_ADDITIONAL_REGISTERS + portasmRESTORE_ADDITIONAL_REGISTERS /* Defined in freertos_risc_v_chip_specific_extensions.h to restore any registers unique to the RISC-V implementation. */ +1c000b9c lw t0,4(sp) +1c000b9e lw t1,8(sp) +1c000ba0 lw t2,12(sp) +1c000ba2 lw t3,16(sp) +1c000ba4 lw t4,20(sp) +1c000ba6 lw t5,24(sp) +1c000ba8 csrw 0x7c0,t0 +1c000bac csrw 0x7c1,t1 +1c000bb0 csrw 0x7c2,t2 +1c000bb4 csrw 0x7c4,t3 +1c000bb8 csrw 0x7c5,t4 +1c000bbc csrw 0x7c6,t5 +1c000bc0 addi sp,sp,24 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:374 +#endif + + /* Load mstatus with the interrupt enable bits used by the task. */ + load_x t0, 29 * portWORD_SIZE( sp ) +1c000bc2 lw t0,116(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:375 + csrw mstatus, t0 /* Required for MPIE bit. */ +1c000bc4 csrw mstatus,t0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:377 + + load_x x1, 1 * portWORD_SIZE( sp ) +1c000bc8 lw ra,4(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:378 + load_x x5, 2 * portWORD_SIZE( sp ) /* t0 */ +1c000bca lw t0,8(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:379 + load_x x6, 3 * portWORD_SIZE( sp ) /* t1 */ +1c000bcc lw t1,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:380 + load_x x7, 4 * portWORD_SIZE( sp ) /* t2 */ +1c000bce lw t2,16(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:381 + load_x x8, 5 * portWORD_SIZE( sp ) /* s0/fp */ +1c000bd0 lw s0,20(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:382 + load_x x9, 6 * portWORD_SIZE( sp ) /* s1 */ +1c000bd2 lw s1,24(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:383 + load_x x10, 7 * portWORD_SIZE( sp ) /* a0 */ +1c000bd4 lw a0,28(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:384 + load_x x11, 8 * portWORD_SIZE( sp ) /* a1 */ +1c000bd6 lw a1,32(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:385 + load_x x12, 9 * portWORD_SIZE( sp ) /* a2 */ +1c000bd8 lw a2,36(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:386 + load_x x13, 10 * portWORD_SIZE( sp ) /* a3 */ +1c000bda lw a3,40(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:387 + load_x x14, 11 * portWORD_SIZE( sp ) /* a4 */ +1c000bdc lw a4,44(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:388 + load_x x15, 12 * portWORD_SIZE( sp ) /* a5 */ +1c000bde lw a5,48(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:390 +#ifndef __riscv_32e /* defined by gcc when -march=rv32e */ + load_x x16, 13 * portWORD_SIZE( sp ) /* a6 */ +1c000be0 lw a6,52(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:391 + load_x x17, 14 * portWORD_SIZE( sp ) /* a7 */ +1c000be2 lw a7,56(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:392 + load_x x18, 15 * portWORD_SIZE( sp ) /* s2 */ +1c000be4 lw s2,60(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:393 + load_x x19, 16 * portWORD_SIZE( sp ) /* s3 */ +1c000be6 lw s3,64(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:394 + load_x x20, 17 * portWORD_SIZE( sp ) /* s4 */ +1c000be8 lw s4,68(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:395 + load_x x21, 18 * portWORD_SIZE( sp ) /* s5 */ +1c000bea lw s5,72(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:396 + load_x x22, 19 * portWORD_SIZE( sp ) /* s6 */ +1c000bec lw s6,76(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:397 + load_x x23, 20 * portWORD_SIZE( sp ) /* s7 */ +1c000bee lw s7,80(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:398 + load_x x24, 21 * portWORD_SIZE( sp ) /* s8 */ +1c000bf0 lw s8,84(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:399 + load_x x25, 22 * portWORD_SIZE( sp ) /* s9 */ +1c000bf2 lw s9,88(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:400 + load_x x26, 23 * portWORD_SIZE( sp ) /* s10 */ +1c000bf4 lw s10,92(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:401 + load_x x27, 24 * portWORD_SIZE( sp ) /* s11 */ +1c000bf6 lw s11,96(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:402 + load_x x28, 25 * portWORD_SIZE( sp ) /* t3 */ +1c000bf8 lw t3,100(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:403 + load_x x29, 26 * portWORD_SIZE( sp ) /* t4 */ +1c000bfa lw t4,104(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:404 + load_x x30, 27 * portWORD_SIZE( sp ) /* t5 */ +1c000bfc lw t5,108(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:405 + load_x x31, 28 * portWORD_SIZE( sp ) /* t6 */ +1c000bfe lw t6,112(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:407 +#endif + addi sp, sp, portCONTEXT_SIZE +1c000c00 addi sp,sp,120 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:409 + + mret +1c000c04 mret +1c000c08 nop +1c000c0c nop +1c000c10 nop +1c000c14 nop +1c000c18 nop +1c000c1c nop +1c000c20 nop +1c000c24 nop +1c000c28 nop +1c000c2c nop +1c000c30 nop +1c000c34 nop +1c000c38 nop +1c000c3c nop +1c000c40 nop +1c000c44 nop +1c000c48 nop +1c000c4c nop +1c000c50 nop +1c000c54 nop +1c000c58 nop +1c000c5c nop +1c000c60 nop +1c000c64 nop +1c000c68 nop +1c000c6c nop +1c000c70 nop +1c000c74 nop +1c000c78 nop +1c000c7c nop +1c000c80 nop +1c000c84 nop +1c000c88 nop +1c000c8c nop +1c000c90 nop +1c000c94 nop +1c000c98 nop +1c000c9c nop +1c000ca0 nop +1c000ca4 nop +1c000ca8 nop +1c000cac nop +1c000cb0 nop +1c000cb4 nop +1c000cb8 nop +1c000cbc nop +1c000cc0 nop +1c000cc4 nop +1c000cc8 nop +1c000ccc nop +1c000cd0 nop +1c000cd4 nop +1c000cd8 nop +1c000cdc nop +1c000ce0 nop +1c000ce4 nop +1c000ce8 nop +1c000cec nop +1c000cf0 nop +1c000cf4 nop +1c000cf8 nop +1c000cfc nop +xPortStartFirstTask(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:426 + outside of this file. */ + la t0, freertos_risc_v_trap_handler + csrw mtvec, t0 +#endif /* portasmHAS_CLILNT */ + + load_x sp, pxCurrentTCB /* Load pxCurrentTCB. */ +1c000d00 lw sp,-684(gp) # 1c009130 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:427 + load_x sp, 0( sp ) /* Read sp from first TCB member. */ +1c000d04 lw sp,0(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:429 + + load_x x1, 0( sp ) /* Note for starting the scheduler the exception return address is used as the function return address. */ +1c000d06 lw ra,0(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:432 + +#ifndef portasmSKIP_ADDITIONAL_REGISTERS + portasmRESTORE_ADDITIONAL_REGISTERS /* Defined in freertos_risc_v_chip_specific_extensions.h to restore any registers unique to the RISC-V implementation. */ +1c000d08 lw t0,4(sp) +1c000d0a lw t1,8(sp) +1c000d0c lw t2,12(sp) +1c000d0e lw t3,16(sp) +1c000d10 lw t4,20(sp) +1c000d12 lw t5,24(sp) +1c000d14 csrw 0x7c0,t0 +1c000d18 csrw 0x7c1,t1 +1c000d1c csrw 0x7c2,t2 +1c000d20 csrw 0x7c4,t3 +1c000d24 csrw 0x7c5,t4 +1c000d28 csrw 0x7c6,t5 +1c000d2c addi sp,sp,24 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:435 +#endif + + load_x x6, 3 * portWORD_SIZE( sp ) /* t1 */ +1c000d2e lw t1,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:436 + load_x x7, 4 * portWORD_SIZE( sp ) /* t2 */ +1c000d30 lw t2,16(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:437 + load_x x8, 5 * portWORD_SIZE( sp ) /* s0/fp */ +1c000d32 lw s0,20(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:438 + load_x x9, 6 * portWORD_SIZE( sp ) /* s1 */ +1c000d34 lw s1,24(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:439 + load_x x10, 7 * portWORD_SIZE( sp ) /* a0 */ +1c000d36 lw a0,28(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:440 + load_x x11, 8 * portWORD_SIZE( sp ) /* a1 */ +1c000d38 lw a1,32(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:441 + load_x x12, 9 * portWORD_SIZE( sp ) /* a2 */ +1c000d3a lw a2,36(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:442 + load_x x13, 10 * portWORD_SIZE( sp ) /* a3 */ +1c000d3c lw a3,40(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:443 + load_x x14, 11 * portWORD_SIZE( sp ) /* a4 */ +1c000d3e lw a4,44(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:444 + load_x x15, 12 * portWORD_SIZE( sp ) /* a5 */ +1c000d40 lw a5,48(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:446 +#ifndef __riscv_32e /* defined by gcc when -march=rv32e */ + load_x x16, 13 * portWORD_SIZE( sp ) /* a6 */ +1c000d42 lw a6,52(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:447 + load_x x17, 14 * portWORD_SIZE( sp ) /* a7 */ +1c000d44 lw a7,56(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:448 + load_x x18, 15 * portWORD_SIZE( sp ) /* s2 */ +1c000d46 lw s2,60(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:449 + load_x x19, 16 * portWORD_SIZE( sp ) /* s3 */ +1c000d48 lw s3,64(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:450 + load_x x20, 17 * portWORD_SIZE( sp ) /* s4 */ +1c000d4a lw s4,68(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:451 + load_x x21, 18 * portWORD_SIZE( sp ) /* s5 */ +1c000d4c lw s5,72(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:452 + load_x x22, 19 * portWORD_SIZE( sp ) /* s6 */ +1c000d4e lw s6,76(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:453 + load_x x23, 20 * portWORD_SIZE( sp ) /* s7 */ +1c000d50 lw s7,80(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:454 + load_x x24, 21 * portWORD_SIZE( sp ) /* s8 */ +1c000d52 lw s8,84(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:455 + load_x x25, 22 * portWORD_SIZE( sp ) /* s9 */ +1c000d54 lw s9,88(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:456 + load_x x26, 23 * portWORD_SIZE( sp ) /* s10 */ +1c000d56 lw s10,92(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:457 + load_x x27, 24 * portWORD_SIZE( sp ) /* s11 */ +1c000d58 lw s11,96(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:458 + load_x x28, 25 * portWORD_SIZE( sp ) /* t3 */ +1c000d5a lw t3,100(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:459 + load_x x29, 26 * portWORD_SIZE( sp ) /* t4 */ +1c000d5c lw t4,104(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:460 + load_x x30, 27 * portWORD_SIZE( sp ) /* t5 */ +1c000d5e lw t5,108(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:461 + load_x x31, 28 * portWORD_SIZE( sp ) /* t6 */ +1c000d60 lw t6,112(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:463 +#endif + load_x x5, 29 * portWORD_SIZE( sp ) /* Initial mstatus into x5 (t0) */ +1c000d62 lw t0,116(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:464 + addi x5, x5, 0x08 /* Set MIE bit so the first task starts with interrupts enabled - required as returns with ret not eret. */ +1c000d64 addi t0,t0,8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:465 + csrrw x0, mstatus, x5 /* Interrupts enabled from here! */ +1c000d66 csrw mstatus,t0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:466 + load_x x5, 2 * portWORD_SIZE( sp ) /* Initial x5 (t0) value. */ +1c000d6a lw t0,8(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:468 + + addi sp, sp, portCONTEXT_SIZE +1c000d6c addi sp,sp,120 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:469 + ret +1c000d70 ret +1c000d72 nop +1c000d76 nop +1c000d7a nop +1c000d7e nop +1c000d82 nop +1c000d86 nop +1c000d8a nop +1c000d8e nop +1c000d92 nop +1c000d96 nop +1c000d9a nop +1c000d9e nop +1c000da2 nop +1c000da6 nop +1c000daa nop +1c000dae nop +1c000db2 nop +1c000db6 nop +1c000dba nop +1c000dbe nop +1c000dc2 nop +1c000dc6 nop +1c000dca nop +1c000dce nop +1c000dd2 nop +1c000dd6 nop +1c000dda nop +1c000dde nop +1c000de2 nop +1c000de6 nop +1c000dea nop +1c000dee nop +1c000df2 nop +1c000df6 nop +1c000dfa nop +1c000dfe nop +pxPortInitialiseStack(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:539 + */ +.align 8 +.func +pxPortInitialiseStack: + + csrr t0, mstatus /* Obtain current mstatus value. */ +1c000e00 csrr t0,mstatus +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:540 + andi t0, t0, ~0x8 /* Ensure interrupts are disabled when the stack is restored within an ISR. Required when a task is created after the schedulre has been started, otherwise interrupts would be disabled anyway. */ +1c000e04 andi t0,t0,-9 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:541 + addi t1, x0, 0x188 /* Generate the value 0x1880, which are the MPIE and MPP bits to set in mstatus. */ +1c000e08 li t1,392 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:542 + slli t1, t1, 4 +1c000e0c slli t1,t1,0x4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:543 + or t0, t0, t1 /* Set MPIE and MPP bits in mstatus value. */ +1c000e0e or t0,t0,t1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:545 + + addi a0, a0, -portWORD_SIZE +1c000e12 addi a0,a0,-4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:546 + store_x t0, 0(a0) /* mstatus onto the stack. */ +1c000e14 sw t0,0(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:547 + addi a0, a0, -(22 * portWORD_SIZE) /* Space for registers x11-x31. */ +1c000e18 addi a0,a0,-88 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:548 + store_x a2, 0(a0) /* Task parameters (pvParameters parameter) goes into register X10/a0 on the stack. */ +1c000e1c sw a2,0(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:549 + addi a0, a0, -(6 * portWORD_SIZE) /* Space for registers x5-x9. */ +1c000e1e addi a0,a0,-24 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:550 + store_x x0, 0(a0) /* Return address onto the stack, could be portTASK_RETURN_ADDRESS */ +1c000e20 sw zero,0(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:551 + addi t0, x0, portasmADDITIONAL_CONTEXT_SIZE /* The number of chip specific additional registers. */ +1c000e24 li t0,6 +chip_specific_stack_frame(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:553 +chip_specific_stack_frame: /* First add any chip specific registers to the stack frame being created. */ + beq t0, x0, 1f /* No more chip specific registers to save. */ +1c000e26 beqz t0,1c000e34 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:554 + addi a0, a0, -portWORD_SIZE /* Make space for chip specific register. */ +1c000e2a addi a0,a0,-4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:555 + store_x x0, 0(a0) /* Give the chip specific register an initial value of zero. */ +1c000e2c sw zero,0(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:556 + addi t0, t0, -1 /* Decrement the count of chip specific registers remaining. */ +1c000e30 addi t0,t0,-1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:557 + j chip_specific_stack_frame /* Until no more chip specific registers. */ +1c000e32 j 1c000e26 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:559 +1: + addi a0, a0, -portWORD_SIZE +1c000e34 addi a0,a0,-4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:560 + store_x a1, 0(a0) /* mret value (pxCode parameter) onto the stack. */ +1c000e36 sw a1,0(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:561 + ret +1c000e38 ret + ... +fc_soc_event_handler(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fc_event.c:61 + +/* TODO: fix */ +__attribute__((section(".text"))) void fc_soc_event_handler(void) +{ + /* Pop one event element from the FIFO */ + uint32_t event = SIMPLE_IRQ->FIFO; +1c000e42 lui a5,0x1a10a +1c000e46 addi a5,a5,-2048 # 1a109800 <__heap_l1_cluster_start+0xa1097e0> +1c000e4a lw a0,36(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fc_event.c:66 + + event &= 0xFF; + + /* redirect to handler with jump table */ + if (fc_event_handlers[event] != NULL) { +1c000e4c addi a5,gp,-1496 # 1c008e04 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fc_event.c:63 + event &= 0xFF; +1c000e50 andi a0,a0,255 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fc_event.c:66 + if (fc_event_handlers[event] != NULL) { +1c000e54 slli a4,a0,0x2 +1c000e58 add a5,a5,a4 +1c000e5a lw a4,0(a5) +1c000e5c beqz a4,1c000e62 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fc_event.c:67 + fc_event_handlers[event]((void *)event); +1c000e5e lw a5,0(a5) +1c000e60 jr a5 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fc_event.c:69 + } +} +1c000e62 ret +memcpy(): +1c000e64 mv t1,a0 +1c000e66 beqz a2,1c000e78 +1c000e68 lb t2,0(a1) +1c000e6c sb t2,0(t1) +1c000e70 addi a2,a2,-1 +1c000e72 addi t1,t1,1 +1c000e74 addi a1,a1,1 +1c000e76 bnez a2,1c000e68 +1c000e78 ret +memset(): +1c000e7a mv t1,a0 +1c000e7c beqz a2,1c000e88 +1c000e7e sb a1,0(t1) +1c000e82 addi a2,a2,-1 +1c000e84 addi t1,t1,1 +1c000e86 bnez a2,1c000e7e +1c000e88 ret +__clzsi2(): +/scratch/balasr/riscv-gnu-upstream/build-gcc-newlib-stage2/riscv32-unknown-elf/rv32imac/ilp32/libgcc/../../../../.././riscv-gcc/libgcc/libgcc2.c:710 +1c000e8a <__clzsi2> lui a5,0x10 +1c000e8c <__clzsi2+0x2> bgeu a0,a5,1c000eb8 <__clzsi2+0x2e> +/scratch/balasr/riscv-gnu-upstream/build-gcc-newlib-stage2/riscv32-unknown-elf/rv32imac/ilp32/libgcc/../../../../.././riscv-gcc/libgcc/libgcc2.c:710 (discriminator 3) +1c000e90 <__clzsi2+0x6> li a5,255 +1c000e94 <__clzsi2+0xa> sltu a5,a5,a0 +1c000e98 <__clzsi2+0xe> slli a5,a5,0x3 +/scratch/balasr/riscv-gnu-upstream/build-gcc-newlib-stage2/riscv32-unknown-elf/rv32imac/ilp32/libgcc/../../../../.././riscv-gcc/libgcc/libgcc2.c:710 (discriminator 14) +1c000e9a <__clzsi2+0x10> lui a4,0x1c009 +1c000e9e <__clzsi2+0x14> li a3,32 +1c000ea2 <__clzsi2+0x18> sub a3,a3,a5 +1c000ea4 <__clzsi2+0x1a> srl a0,a0,a5 +1c000ea8 <__clzsi2+0x1e> addi a5,a4,-1324 # 1c008ad4 <__clz_tab> +1c000eac <__clzsi2+0x22> add a0,a0,a5 +1c000eae <__clzsi2+0x24> lbu a0,0(a0) +/scratch/balasr/riscv-gnu-upstream/build-gcc-newlib-stage2/riscv32-unknown-elf/rv32imac/ilp32/libgcc/../../../../.././riscv-gcc/libgcc/libgcc2.c:713 (discriminator 14) +1c000eb2 <__clzsi2+0x28> sub a0,a3,a0 +1c000eb6 <__clzsi2+0x2c> ret +/scratch/balasr/riscv-gnu-upstream/build-gcc-newlib-stage2/riscv32-unknown-elf/rv32imac/ilp32/libgcc/../../../../.././riscv-gcc/libgcc/libgcc2.c:710 (discriminator 4) +1c000eb8 <__clzsi2+0x2e> lui a4,0x1000 +1c000ebc <__clzsi2+0x32> li a5,16 +1c000ebe <__clzsi2+0x34> bltu a0,a4,1c000e9a <__clzsi2+0x10> +/scratch/balasr/riscv-gnu-upstream/build-gcc-newlib-stage2/riscv32-unknown-elf/rv32imac/ilp32/libgcc/../../../../.././riscv-gcc/libgcc/libgcc2.c:710 +1c000ec2 <__clzsi2+0x38> li a5,24 +1c000ec4 <__clzsi2+0x3a> j 1c000e9a <__clzsi2+0x10> +vListInitialise(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:42 +void vListInitialise( List_t * const pxList ) +{ + /* The list structure contains a list item which is used to mark the + end of the list. To initialise the list the list end is inserted + as the only list entry. */ + pxList->pxIndex = ( ListItem_t * ) &( pxList->xListEnd ); /*lint !e826 !e740 !e9087 The mini list structure is used as the list end to save RAM. This is checked and valid. */ +1c000ec6 addi a5,a0,8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:46 + + /* The list end value is the highest possible value in the list to + ensure it remains at the end of the list. */ + pxList->xListEnd.xItemValue = portMAX_DELAY; +1c000eca li a4,-1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:42 + pxList->pxIndex = ( ListItem_t * ) &( pxList->xListEnd ); /*lint !e826 !e740 !e9087 The mini list structure is used as the list end to save RAM. This is checked and valid. */ +1c000ecc sw a5,4(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:46 + pxList->xListEnd.xItemValue = portMAX_DELAY; +1c000ece sw a4,8(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:50 + + /* The list end next and previous pointers point to itself so we know + when the list is empty. */ + pxList->xListEnd.pxNext = ( ListItem_t * ) &( pxList->xListEnd ); /*lint !e826 !e740 !e9087 The mini list structure is used as the list end to save RAM. This is checked and valid. */ +1c000ed0 sw a5,12(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:51 + pxList->xListEnd.pxPrevious = ( ListItem_t * ) &( pxList->xListEnd );/*lint !e826 !e740 !e9087 The mini list structure is used as the list end to save RAM. This is checked and valid. */ +1c000ed2 sw a5,16(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:53 + + pxList->uxNumberOfItems = ( UBaseType_t ) 0U; +1c000ed4 sw zero,0(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:59 + + /* Write known values into the list if + configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES is set to 1. */ + listSET_LIST_INTEGRITY_CHECK_1_VALUE( pxList ); + listSET_LIST_INTEGRITY_CHECK_2_VALUE( pxList ); +} +1c000ed8 ret +vListInitialiseItem(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:65 +/*-----------------------------------------------------------*/ + +void vListInitialiseItem( ListItem_t * const pxItem ) +{ + /* Make sure the list item is not recorded as being on a list. */ + pxItem->pxContainer = NULL; +1c000eda sw zero,16(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:71 + + /* Write known values into the list item if + configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES is set to 1. */ + listSET_FIRST_LIST_ITEM_INTEGRITY_CHECK_VALUE( pxItem ); + listSET_SECOND_LIST_ITEM_INTEGRITY_CHECK_VALUE( pxItem ); +} +1c000ede ret +vListInsertEnd(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:76 +/*-----------------------------------------------------------*/ + +void vListInsertEnd( List_t * const pxList, ListItem_t * const pxNewListItem ) +{ +ListItem_t * const pxIndex = pxList->pxIndex; +1c000ee0 lw a5,4(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:88 + + /* Insert a new list item into pxList, but rather than sort the list, + makes the new list item the last item to be removed by a call to + listGET_OWNER_OF_NEXT_ENTRY(). */ + pxNewListItem->pxNext = pxIndex; + pxNewListItem->pxPrevious = pxIndex->pxPrevious; +1c000ee2 lw a4,8(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:87 + pxNewListItem->pxNext = pxIndex; +1c000ee4 sw a5,4(a1) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:88 + pxNewListItem->pxPrevious = pxIndex->pxPrevious; +1c000ee6 sw a4,8(a1) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:93 + + /* Only used during decision coverage testing. */ + mtCOVERAGE_TEST_DELAY(); + + pxIndex->pxPrevious->pxNext = pxNewListItem; +1c000ee8 lw a4,8(a5) +1c000eea sw a1,4(a4) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:94 + pxIndex->pxPrevious = pxNewListItem; +1c000eec sw a1,8(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:99 + + /* Remember which list the item is in. */ + pxNewListItem->pxContainer = pxList; + + ( pxList->uxNumberOfItems )++; +1c000eee lw a5,0(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:97 + pxNewListItem->pxContainer = pxList; +1c000ef0 sw a0,16(a1) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:99 + ( pxList->uxNumberOfItems )++; +1c000ef2 addi a5,a5,1 +1c000ef4 sw a5,0(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:100 +} +1c000ef6 ret +vListInsert(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:106 +/*-----------------------------------------------------------*/ + +void vListInsert( List_t * const pxList, ListItem_t * const pxNewListItem ) +{ +ListItem_t *pxIterator; +const TickType_t xValueOfInsertion = pxNewListItem->xItemValue; +1c000ef8 lw a3,0(a1) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:122 + new list item should be placed after it. This ensures that TCBs which are + stored in ready lists (all of which have the same xItemValue value) get a + share of the CPU. However, if the xItemValue is the same as the back marker + the iteration loop below will not end. Therefore the value is checked + first, and the algorithm slightly modified if necessary. */ + if( xValueOfInsertion == portMAX_DELAY ) +1c000efa li a5,-1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:150 + 4) Using a queue or semaphore before it has been initialised or + before the scheduler has been started (are interrupts firing + before vTaskStartScheduler() has been called?). + **********************************************************************/ + + for( pxIterator = ( ListItem_t * ) &( pxList->xListEnd ); pxIterator->pxNext->xItemValue <= xValueOfInsertion; pxIterator = pxIterator->pxNext ) /*lint !e826 !e740 !e9087 The mini list structure is used as the list end to save RAM. This is checked and valid. *//*lint !e440 The iterator moves to a different value, not xValueOfInsertion. */ +1c000efc addi a4,a0,8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:122 + if( xValueOfInsertion == portMAX_DELAY ) +1c000f00 bne a3,a5,1c000f1a +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:124 + pxIterator = pxList->xListEnd.pxPrevious; +1c000f04 lw a5,16(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:157 + /* There is nothing to do here, just iterating to the wanted + insertion position. */ + } + } + + pxNewListItem->pxNext = pxIterator->pxNext; +1c000f06 lw a4,4(a5) +1c000f08 sw a4,4(a1) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:158 + pxNewListItem->pxNext->pxPrevious = pxNewListItem; +1c000f0a sw a1,8(a4) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:159 + pxNewListItem->pxPrevious = pxIterator; +1c000f0c sw a5,8(a1) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:160 + pxIterator->pxNext = pxNewListItem; +1c000f0e sw a1,4(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:166 + + /* Remember which list the item is in. This allows fast removal of the + item later. */ + pxNewListItem->pxContainer = pxList; + + ( pxList->uxNumberOfItems )++; +1c000f10 lw a5,0(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:164 + pxNewListItem->pxContainer = pxList; +1c000f12 sw a0,16(a1) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:166 + ( pxList->uxNumberOfItems )++; +1c000f14 addi a5,a5,1 +1c000f16 sw a5,0(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:167 +} +1c000f18 ret +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:150 (discriminator 1) + for( pxIterator = ( ListItem_t * ) &( pxList->xListEnd ); pxIterator->pxNext->xItemValue <= xValueOfInsertion; pxIterator = pxIterator->pxNext ) /*lint !e826 !e740 !e9087 The mini list structure is used as the list end to save RAM. This is checked and valid. *//*lint !e440 The iterator moves to a different value, not xValueOfInsertion. */ +1c000f1a mv a5,a4 +1c000f1c lw a4,4(a4) +1c000f1e lw a2,0(a4) +1c000f20 bgeu a3,a2,1c000f1a +1c000f24 j 1c000f06 +uxListRemove(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:176 +{ +/* The list item knows which list it is in. Obtain the list from the list +item. */ +List_t * const pxList = pxItemToRemove->pxContainer; + + pxItemToRemove->pxNext->pxPrevious = pxItemToRemove->pxPrevious; +1c000f26 lw a3,4(a0) +1c000f28 lw a4,8(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:174 +List_t * const pxList = pxItemToRemove->pxContainer; +1c000f2a lw a5,16(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:176 + pxItemToRemove->pxNext->pxPrevious = pxItemToRemove->pxPrevious; +1c000f2c sw a4,8(a3) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:177 + pxItemToRemove->pxPrevious->pxNext = pxItemToRemove->pxNext; +1c000f2e sw a3,4(a4) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:183 + + /* Only used during decision coverage testing. */ + mtCOVERAGE_TEST_DELAY(); + + /* Make sure the index is left pointing to a valid item. */ + if( pxList->pxIndex == pxItemToRemove ) +1c000f30 lw a3,4(a5) +1c000f32 bne a3,a0,1c000f38 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:185 + { + pxList->pxIndex = pxItemToRemove->pxPrevious; +1c000f36 sw a4,4(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:193 + { + mtCOVERAGE_TEST_MARKER(); + } + + pxItemToRemove->pxContainer = NULL; + ( pxList->uxNumberOfItems )--; +1c000f38 lw a4,0(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:192 + pxItemToRemove->pxContainer = NULL; +1c000f3a sw zero,16(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:193 + ( pxList->uxNumberOfItems )--; +1c000f3e addi a4,a4,-1 +1c000f40 sw a4,0(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:195 + + return pxList->uxNumberOfItems; +1c000f42 lw a0,0(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:196 +} +1c000f44 ret +prvIsQueueEmpty(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2292 + taskEXIT_CRITICAL(); +} +/*-----------------------------------------------------------*/ + +static BaseType_t prvIsQueueEmpty( const Queue_t *pxQueue ) +{ +1c000f46 addi sp,sp,-16 +1c000f48 sw s0,8(sp) +1c000f4a mv s0,a0 +1c000f4c sw ra,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2295 +BaseType_t xReturn; + + taskENTER_CRITICAL(); +1c000f4e jal ra,1c00200c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2297 + { + if( pxQueue->uxMessagesWaiting == ( UBaseType_t ) 0 ) +1c000f52 lw s0,56(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2306 + else + { + xReturn = pdFALSE; + } + } + taskEXIT_CRITICAL(); +1c000f54 jal ra,1c002026 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2309 + + return xReturn; +} +1c000f58 lw ra,12(sp) +1c000f5a seqz a0,s0 +1c000f5e lw s0,8(sp) +1c000f60 addi sp,sp,16 +1c000f62 ret +prvCopyDataToQueue(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2075 +{ +1c000f64 addi sp,sp,-16 +1c000f66 sw s1,4(sp) +1c000f68 mv s1,a2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2083 + if( pxQueue->uxItemSize == ( UBaseType_t ) 0 ) +1c000f6a lw a2,64(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2075 +{ +1c000f6c sw s2,0(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2081 + uxMessagesWaiting = pxQueue->uxMessagesWaiting; +1c000f6e lw s2,56(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2075 +{ +1c000f72 sw s0,8(sp) +1c000f74 sw ra,12(sp) +1c000f76 mv s0,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2083 + if( pxQueue->uxItemSize == ( UBaseType_t ) 0 ) +1c000f78 bnez a2,1c000fa0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2087 + if( pxQueue->uxQueueType == queueQUEUE_IS_MUTEX ) +1c000f7a lw a5,0(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2076 +BaseType_t xReturn = pdFALSE; +1c000f7c li s1,0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2087 + if( pxQueue->uxQueueType == queueQUEUE_IS_MUTEX ) +1c000f7e bnez a5,1c000f8c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2090 + xReturn = xTaskPriorityDisinherit( pxQueue->u.xSemaphore.xMutexHolder ); +1c000f80 lw a0,8(a0) +1c000f82 jal ra,1c001e4c +1c000f86 mv s1,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2091 + pxQueue->u.xSemaphore.xMutexHolder = NULL; +1c000f88 sw zero,8(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2147 + pxQueue->uxMessagesWaiting = uxMessagesWaiting + ( UBaseType_t ) 1; +1c000f8c addi s2,s2,1 +1c000f8e sw s2,56(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2150 +} +1c000f92 lw ra,12(sp) +1c000f94 lw s0,8(sp) +1c000f96 lw s2,0(sp) +1c000f98 mv a0,s1 +1c000f9a lw s1,4(sp) +1c000f9c addi sp,sp,16 +1c000f9e ret +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2100 + else if( xPosition == queueSEND_TO_BACK ) +1c000fa0 bnez s1,1c000fba +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2102 + ( void ) memcpy( ( void * ) pxQueue->pcWriteTo, pvItemToQueue, ( size_t ) pxQueue->uxItemSize ); /*lint !e961 !e418 !e9087 MISRA exception as the casts are only redundant for some ports, plus previous logic ensures a null pointer can only be passed to memcpy() if the copy size is 0. Cast to void required by function signature and safe as no alignment requirement and copy length specified in bytes. */ +1c000fa2 lw a0,4(a0) +1c000fa4 jal 1c000e64 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2103 + pxQueue->pcWriteTo += pxQueue->uxItemSize; /*lint !e9016 Pointer arithmetic on char types ok, especially in this use case where it is the clearest way of conveying intent. */ +1c000fa6 lw a5,4(s0) +1c000fa8 lw a4,64(s0) +1c000faa add a5,a5,a4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2104 + if( pxQueue->pcWriteTo >= pxQueue->u.xQueue.pcTail ) /*lint !e946 MISRA exception justified as comparison of pointers is the cleanest solution. */ +1c000fac lw a4,8(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2103 + pxQueue->pcWriteTo += pxQueue->uxItemSize; /*lint !e9016 Pointer arithmetic on char types ok, especially in this use case where it is the clearest way of conveying intent. */ +1c000fae sw a5,4(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2104 + if( pxQueue->pcWriteTo >= pxQueue->u.xQueue.pcTail ) /*lint !e946 MISRA exception justified as comparison of pointers is the cleanest solution. */ +1c000fb0 bltu a5,a4,1c000f8c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2106 + pxQueue->pcWriteTo = pxQueue->pcHead; +1c000fb4 lw a5,0(s0) +1c000fb6 sw a5,4(s0) +1c000fb8 j 1c000f8c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2115 + ( void ) memcpy( ( void * ) pxQueue->u.xQueue.pcReadFrom, pvItemToQueue, ( size_t ) pxQueue->uxItemSize ); /*lint !e961 !e9087 !e418 MISRA exception as the casts are only redundant for some ports. Cast to void required by function signature and safe as no alignment requirement and copy length specified in bytes. Assert checks null pointer only used when length is 0. */ +1c000fba lw a0,12(a0) +1c000fbc jal 1c000e64 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2116 + pxQueue->u.xQueue.pcReadFrom -= pxQueue->uxItemSize; +1c000fbe lw a4,64(s0) +1c000fc0 lw a5,12(s0) +1c000fc2 neg a3,a4 +1c000fc6 sub a5,a5,a4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2117 + if( pxQueue->u.xQueue.pcReadFrom < pxQueue->pcHead ) /*lint !e946 MISRA exception justified as comparison of pointers is the cleanest solution. */ +1c000fc8 lw a4,0(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2116 + pxQueue->u.xQueue.pcReadFrom -= pxQueue->uxItemSize; +1c000fca sw a5,12(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2117 + if( pxQueue->u.xQueue.pcReadFrom < pxQueue->pcHead ) /*lint !e946 MISRA exception justified as comparison of pointers is the cleanest solution. */ +1c000fcc bgeu a5,a4,1c000fd6 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2119 + pxQueue->u.xQueue.pcReadFrom = ( pxQueue->u.xQueue.pcTail - pxQueue->uxItemSize ); +1c000fd0 lw a5,8(s0) +1c000fd2 add a5,a5,a3 +1c000fd4 sw a5,12(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2126 + if( xPosition == queueOVERWRITE ) +1c000fd6 li a5,2 +1c000fd8 bne s1,a5,1c000fe6 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2076 +BaseType_t xReturn = pdFALSE; +1c000fdc li s1,0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2128 + if( uxMessagesWaiting > ( UBaseType_t ) 0 ) +1c000fde beqz s2,1c000f8c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2134 + --uxMessagesWaiting; +1c000fe2 addi s2,s2,-1 +1c000fe4 j 1c000f8c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2076 +BaseType_t xReturn = pdFALSE; +1c000fe6 li s1,0 +1c000fe8 j 1c000f8c +prvCopyDataFromQueue(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2154 +{ +1c000fea mv a5,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2155 + if( pxQueue->uxItemSize != ( UBaseType_t ) 0 ) +1c000fec lw a2,64(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2154 +{ +1c000fee mv a0,a1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2155 + if( pxQueue->uxItemSize != ( UBaseType_t ) 0 ) +1c000ff0 beqz a2,1c001006 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2157 + pxQueue->u.xQueue.pcReadFrom += pxQueue->uxItemSize; /*lint !e9016 Pointer arithmetic on char types ok, especially in this use case where it is the clearest way of conveying intent. */ +1c000ff2 lw a4,12(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2158 + if( pxQueue->u.xQueue.pcReadFrom >= pxQueue->u.xQueue.pcTail ) /*lint !e946 MISRA exception justified as use of the relational operator is the cleanest solutions. */ +1c000ff4 lw a3,8(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2157 + pxQueue->u.xQueue.pcReadFrom += pxQueue->uxItemSize; /*lint !e9016 Pointer arithmetic on char types ok, especially in this use case where it is the clearest way of conveying intent. */ +1c000ff6 add a4,a4,a2 +1c000ff8 sw a4,12(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2158 + if( pxQueue->u.xQueue.pcReadFrom >= pxQueue->u.xQueue.pcTail ) /*lint !e946 MISRA exception justified as use of the relational operator is the cleanest solutions. */ +1c000ffa bltu a4,a3,1c001002 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2160 + pxQueue->u.xQueue.pcReadFrom = pxQueue->pcHead; +1c000ffe lw a4,0(a5) +1c001000 sw a4,12(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2166 + ( void ) memcpy( ( void * ) pvBuffer, ( void * ) pxQueue->u.xQueue.pcReadFrom, ( size_t ) pxQueue->uxItemSize ); /*lint !e961 !e418 !e9087 MISRA exception as the casts are only redundant for some ports. Also previous logic ensures a null pointer can only be passed to memcpy() when the count is 0. Cast to void required by function signature and safe as no alignment requirement and copy length specified in bytes. */ +1c001002 lw a1,12(a5) +1c001004 j 1c000e64 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2168 +} +1c001006 ret +prvUnlockQueue(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2172 +{ +1c001008 addi sp,sp,-16 +1c00100a sw s0,8(sp) +1c00100c mv s0,a0 +1c00100e sw s1,4(sp) +1c001010 sw s2,0(sp) +1c001012 sw ra,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2179 + taskENTER_CRITICAL(); +1c001014 jal ra,1c00200c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2181 + int8_t cTxLock = pxQueue->cTxLock; +1c001018 lbu s1,69(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2234 + if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE ) +1c00101c addi s2,s0,36 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2181 + int8_t cTxLock = pxQueue->cTxLock; +1c001020 slli s1,s1,0x18 +1c001022 srai s1,s1,0x18 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2184 + while( cTxLock > queueLOCKED_UNMODIFIED ) +1c001024 bgtz s1,1c00105a +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2255 + pxQueue->cTxLock = queueUNLOCKED; +1c001028 li a5,-1 +1c00102a sb a5,69(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2257 + taskEXIT_CRITICAL(); +1c00102e jal ra,1c002026 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2260 + taskENTER_CRITICAL(); +1c001032 jal ra,1c00200c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2262 + int8_t cRxLock = pxQueue->cRxLock; +1c001036 lbu s1,68(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2268 + if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToSend ) ) != pdFALSE ) +1c00103a addi s2,s0,16 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2262 + int8_t cRxLock = pxQueue->cRxLock; +1c00103e slli s1,s1,0x18 +1c001040 srai s1,s1,0x18 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2264 + while( cRxLock > queueLOCKED_UNMODIFIED ) +1c001042 bgtz s1,1c001072 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2285 + pxQueue->cRxLock = queueUNLOCKED; +1c001046 li a5,-1 +1c001048 sb a5,68(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2288 +} +1c00104c lw s0,8(sp) +1c00104e lw ra,12(sp) +1c001050 lw s1,4(sp) +1c001052 lw s2,0(sp) +1c001054 addi sp,sp,16 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2287 + taskEXIT_CRITICAL(); +1c001056 j 1c002026 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2232 + if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) +1c00105a lw a5,36(s0) +1c00105c beqz a5,1c001028 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2234 + if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE ) +1c00105e mv a0,s2 +1c001060 jal ra,1c001cd4 +1c001064 beqz a0,1c00106a +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2238 + vTaskMissedYield(); +1c001066 jal ra,1c001d7c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2252 + --cTxLock; +1c00106a addi s1,s1,-1 +1c00106c slli s1,s1,0x18 +1c00106e srai s1,s1,0x18 +1c001070 j 1c001024 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2266 + if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToSend ) ) == pdFALSE ) +1c001072 lw a5,16(s0) +1c001074 beqz a5,1c001046 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2268 + if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToSend ) ) != pdFALSE ) +1c001076 mv a0,s2 +1c001078 jal ra,1c001cd4 +1c00107c beqz a0,1c001082 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2270 + vTaskMissedYield(); +1c00107e jal ra,1c001d7c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2277 + --cRxLock; +1c001082 addi s1,s1,-1 +1c001084 slli s1,s1,0x18 +1c001086 srai s1,s1,0x18 +1c001088 j 1c001042 +xQueueGenericReset(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:256 +{ +1c00108a addi sp,sp,-16 +1c00108c sw ra,12(sp) +1c00108e sw s0,8(sp) +1c001090 sw s1,4(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:259 + configASSERT( pxQueue ); +1c001092 bnez a0,1c0010b4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:259 (discriminator 1) +1c001094 lui a3,0x1c008 +1c001098 lui a2,0x1c008 +1c00109c lui a0,0x1c008 +1c0010a0 mv a3,a3 +1c0010a4 addi a2,a2,912 # 1c008390 <__func__.19> +1c0010a8 li a1,259 +1c0010ac addi a0,a0,8 # 1c008008 <__l2_priv0_end+0x3208> +1c0010b0 jal ra,1c0037c8 <__assert_func> +1c0010b4 mv s0,a0 +1c0010b6 mv s1,a1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:261 + taskENTER_CRITICAL(); +1c0010b8 jal ra,1c00200c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:263 + pxQueue->u.xQueue.pcTail = pxQueue->pcHead + ( pxQueue->uxLength * pxQueue->uxItemSize ); /*lint !e9016 Pointer arithmetic allowed on char types, especially when it assists conveying intent. */ +1c0010bc lw a3,64(s0) +1c0010be lw a5,60(s0) +1c0010c0 lw a4,0(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:264 + pxQueue->uxMessagesWaiting = ( UBaseType_t ) 0U; +1c0010c2 sw zero,56(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:263 + pxQueue->u.xQueue.pcTail = pxQueue->pcHead + ( pxQueue->uxLength * pxQueue->uxItemSize ); /*lint !e9016 Pointer arithmetic allowed on char types, especially when it assists conveying intent. */ +1c0010c6 mul a5,a3,a5 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:265 + pxQueue->pcWriteTo = pxQueue->pcHead; +1c0010ca sw a4,4(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:263 + pxQueue->u.xQueue.pcTail = pxQueue->pcHead + ( pxQueue->uxLength * pxQueue->uxItemSize ); /*lint !e9016 Pointer arithmetic allowed on char types, especially when it assists conveying intent. */ +1c0010cc add a2,a4,a5 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:266 + pxQueue->u.xQueue.pcReadFrom = pxQueue->pcHead + ( ( pxQueue->uxLength - 1U ) * pxQueue->uxItemSize ); /*lint !e9016 Pointer arithmetic allowed on char types, especially when it assists conveying intent. */ +1c0010d0 sub a5,a5,a3 +1c0010d2 add a5,a5,a4 +1c0010d4 sw a5,12(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:267 + pxQueue->cRxLock = queueUNLOCKED; +1c0010d6 li a5,-1 +1c0010d8 sb a5,68(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:263 + pxQueue->u.xQueue.pcTail = pxQueue->pcHead + ( pxQueue->uxLength * pxQueue->uxItemSize ); /*lint !e9016 Pointer arithmetic allowed on char types, especially when it assists conveying intent. */ +1c0010dc sw a2,8(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:268 + pxQueue->cTxLock = queueUNLOCKED; +1c0010de sb a5,69(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:270 + if( xNewQueue == pdFALSE ) +1c0010e2 bnez s1,1c001106 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:277 + if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToSend ) ) == pdFALSE ) +1c0010e4 lw a5,16(s0) +1c0010e6 beqz a5,1c0010f6 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:279 + if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToSend ) ) != pdFALSE ) +1c0010e8 addi a0,s0,16 +1c0010ec jal ra,1c001cd4 +1c0010f0 beqz a0,1c0010f6 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:281 + queueYIELD_IF_USING_PREEMPTION(); +1c0010f2 ecall +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:300 + taskEXIT_CRITICAL(); +1c0010f6 jal ra,1c002026 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:305 +} +1c0010fa lw ra,12(sp) +1c0010fc lw s0,8(sp) +1c0010fe lw s1,4(sp) +1c001100 li a0,1 +1c001102 addi sp,sp,16 +1c001104 ret +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:296 + vListInitialise( &( pxQueue->xTasksWaitingToSend ) ); +1c001106 addi a0,s0,16 +1c00110a jal 1c000ec6 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:297 + vListInitialise( &( pxQueue->xTasksWaitingToReceive ) ); +1c00110c addi a0,s0,36 +1c001110 jal 1c000ec6 +1c001112 j 1c0010f6 +xQueueGenericCreate(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:369 + { +1c001114 addi sp,sp,-32 +1c001116 sw ra,28(sp) +1c001118 sw s0,24(sp) +1c00111a sw s1,20(sp) +1c00111c sw s2,16(sp) +1c00111e sw s3,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:374 + configASSERT( uxQueueLength > ( UBaseType_t ) 0 ); +1c001120 bnez a0,1c001142 +1c001122 lui a3,0x1c008 +1c001126 lui a2,0x1c008 +1c00112a lui a0,0x1c008 +1c00112e addi a3,a3,76 # 1c00804c <__l2_priv0_end+0x324c> +1c001132 addi a2,a2,892 # 1c00837c <__func__.18> +1c001136 li a1,374 +1c00113a addi a0,a0,8 # 1c008008 <__l2_priv0_end+0x3208> +1c00113e jal ra,1c0037c8 <__assert_func> +1c001142 mv s2,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:379 + xQueueSizeInBytes = ( size_t ) ( uxQueueLength * uxItemSize ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ +1c001144 mul a0,a0,a1 +1c001148 mv s1,a1 +1c00114a mv s3,a2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:390 + pxNewQueue = ( Queue_t * ) pvPortMalloc( sizeof( Queue_t ) + xQueueSizeInBytes ); /*lint !e9087 !e9079 see comment above. */ +1c00114c addi a0,a0,80 +1c001150 jal ra,1c00296a +1c001154 mv s0,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:392 + if( pxNewQueue != NULL ) +1c001156 beqz a0,1c001172 +prvInitialiseNewQueue(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:428 + if( uxItemSize == ( UBaseType_t ) 0 ) +1c001158 mv a5,a0 +1c00115a beqz s1,1c001160 +xQueueGenericCreate(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:397 + pucQueueStorage += sizeof( Queue_t ); /*lint !e9016 Pointer arithmetic allowed on char types, especially when it assists conveying intent. */ +1c00115c addi a5,a0,80 +prvInitialiseNewQueue(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:439 + pxNewQueue->pcHead = ( int8_t * ) pucQueueStorage; +1c001160 sw a5,0(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:444 + pxNewQueue->uxLength = uxQueueLength; +1c001162 sw s2,60(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:445 + pxNewQueue->uxItemSize = uxItemSize; +1c001166 sw s1,64(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:446 + ( void ) xQueueGenericReset( pxNewQueue, pdTRUE ); +1c001168 li a1,1 +1c00116a mv a0,s0 +1c00116c jal 1c00108a +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:450 + pxNewQueue->ucQueueType = ucQueueType; +1c00116e sb s3,76(s0) +xQueueGenericCreate(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:417 + } +1c001172 lw ra,28(sp) +1c001174 mv a0,s0 +1c001176 lw s0,24(sp) +1c001178 lw s1,20(sp) +1c00117a lw s2,16(sp) +1c00117c lw s3,12(sp) +1c00117e addi sp,sp,32 +1c001180 ret +xQueueCreateCountingSemaphore(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:715 + { +1c001182 addi sp,sp,-16 +1c001184 sw ra,12(sp) +1c001186 sw s0,8(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:718 + configASSERT( uxMaxCount != 0 ); +1c001188 bnez a0,1c0011aa +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:718 (discriminator 1) +1c00118a lui a3,0x1c008 +1c00118e lui a2,0x1c008 +1c001192 addi a3,a3,112 # 1c008070 <__l2_priv0_end+0x3270> +1c001196 addi a2,a2,860 # 1c00835c <__func__.14> +1c00119a li a1,718 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:719 (discriminator 1) + configASSERT( uxInitialCount <= uxMaxCount ); +1c00119e lui a0,0x1c008 +1c0011a2 addi a0,a0,8 # 1c008008 <__l2_priv0_end+0x3208> +1c0011a6 jal ra,1c0037c8 <__assert_func> +1c0011aa mv s0,a1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:719 +1c0011ac bgeu a0,a1,1c0011c6 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:719 (discriminator 1) +1c0011b0 lui a3,0x1c008 +1c0011b4 lui a2,0x1c008 +1c0011b8 addi a3,a3,128 # 1c008080 <__l2_priv0_end+0x3280> +1c0011bc addi a2,a2,860 # 1c00835c <__func__.14> +1c0011c0 li a1,719 +1c0011c4 j 1c00119e +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:721 + xHandle = xQueueGenericCreate( uxMaxCount, queueSEMAPHORE_QUEUE_ITEM_LENGTH, queueQUEUE_TYPE_COUNTING_SEMAPHORE ); +1c0011c6 li a2,2 +1c0011c8 li a1,0 +1c0011ca jal 1c001114 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:723 + if( xHandle != NULL ) +1c0011cc beqz a0,1c0011d0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:725 + ( ( Queue_t * ) xHandle )->uxMessagesWaiting = uxInitialCount; +1c0011ce sw s0,56(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:735 + } +1c0011d0 lw ra,12(sp) +1c0011d2 lw s0,8(sp) +1c0011d4 addi sp,sp,16 +1c0011d6 ret +xQueueGenericSend(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:741 +{ +1c0011d8 addi sp,sp,-64 +1c0011da sw ra,60(sp) +1c0011dc sw s0,56(sp) +1c0011de sw s1,52(sp) +1c0011e0 sw s2,48(sp) +1c0011e2 sw s3,44(sp) +1c0011e4 sw s4,40(sp) +1c0011e6 sw s5,36(sp) +1c0011e8 sw s6,32(sp) +1c0011ea sw a2,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:746 + configASSERT( pxQueue ); +1c0011ec bnez a0,1c00120e +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:746 (discriminator 1) +1c0011ee lui a3,0x1c008 +1c0011f2 lui a2,0x1c008 +1c0011f6 mv a3,a3 +1c0011fa addi a2,a2,840 # 1c008348 <__func__.13> +1c0011fe li a1,746 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:747 (discriminator 2) + configASSERT( !( ( pvItemToQueue == NULL ) && ( pxQueue->uxItemSize != ( UBaseType_t ) 0U ) ) ); +1c001202 lui a0,0x1c008 +1c001206 addi a0,a0,8 # 1c008008 <__l2_priv0_end+0x3208> +1c00120a jal ra,1c0037c8 <__assert_func> +1c00120e mv s0,a0 +1c001210 mv s3,a1 +1c001212 mv s2,a3 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:747 +1c001214 bnez a1,1c001230 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:747 (discriminator 1) +1c001216 lw a5,64(a0) +1c001218 beqz a5,1c001230 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:747 (discriminator 2) +1c00121a lui a3,0x1c008 +1c00121e lui a2,0x1c008 +1c001222 addi a3,a3,160 # 1c0080a0 <__l2_priv0_end+0x32a0> +1c001226 addi a2,a2,840 # 1c008348 <__func__.13> +1c00122a li a1,747 +1c00122e j 1c001202 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:748 + configASSERT( !( ( xCopyPosition == queueOVERWRITE ) && ( pxQueue->uxLength != 1 ) ) ); +1c001230 li a5,2 +1c001232 bne s2,a5,1c001254 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:748 (discriminator 1) +1c001236 lw a4,60(s0) +1c001238 li a5,1 +1c00123a beq a4,a5,1c001254 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:748 (discriminator 2) +1c00123e lui a3,0x1c008 +1c001242 lui a2,0x1c008 +1c001246 addi a3,a3,248 # 1c0080f8 <__l2_priv0_end+0x32f8> +1c00124a addi a2,a2,840 # 1c008348 <__func__.13> +1c00124e li a1,748 +1c001252 j 1c001202 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:751 + configASSERT( !( ( xTaskGetSchedulerState() == taskSCHEDULER_SUSPENDED ) && ( xTicksToWait != 0 ) ) ); +1c001254 jal ra,1c001d84 +1c001258 mv s1,a0 +1c00125a bnez a0,1c001276 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:751 (discriminator 1) +1c00125c lw a5,12(sp) +1c00125e beqz a5,1c001278 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:751 (discriminator 2) +1c001260 lui a3,0x1c008 +1c001264 lui a2,0x1c008 +1c001268 addi a3,a3,328 # 1c008148 <__l2_priv0_end+0x3348> +1c00126c addi a2,a2,840 # 1c008348 <__func__.13> +1c001270 li a1,751 +1c001274 j 1c001202 +1c001276 li s1,0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:767 + if( ( pxQueue->uxMessagesWaiting < pxQueue->uxLength ) || ( xCopyPosition == queueOVERWRITE ) ) +1c001278 li s5,2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:903 + prvLockQueue( pxQueue ); +1c00127a li s4,-1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:911 + vTaskPlaceOnEventList( &( pxQueue->xTasksWaitingToSend ), xTicksToWait ); +1c00127c addi s6,s0,16 +1c001280 j 1c0012f4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:872 + if( xTicksToWait == ( TickType_t ) 0 ) +1c001282 lw a5,12(sp) +1c001284 bnez a5,1c00128e +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:876 + taskEXIT_CRITICAL(); +1c001286 jal ra,1c002026 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:944 + return errQUEUE_FULL; +1c00128a li a0,0 +1c00128c j 1c001324 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:883 + else if( xEntryTimeSet == pdFALSE ) +1c00128e bnez s1,1c001296 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:887 + vTaskInternalSetTimeOutState( &xTimeOut ); +1c001290 addi a0,sp,24 +1c001292 jal ra,1c001d6e +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:897 + taskEXIT_CRITICAL(); +1c001296 jal ra,1c002026 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:902 + vTaskSuspendAll(); +1c00129a jal ra,1c001a16 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:903 + prvLockQueue( pxQueue ); +1c00129e jal ra,1c00200c +1c0012a2 lbu a5,68(s0) +1c0012a6 slli a5,a5,0x18 +1c0012a8 srai a5,a5,0x18 +1c0012aa bne a5,s4,1c0012b2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:903 (discriminator 1) +1c0012ae sb zero,68(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:903 (discriminator 3) +1c0012b2 lbu a5,69(s0) +1c0012b6 slli a5,a5,0x18 +1c0012b8 srai a5,a5,0x18 +1c0012ba bne a5,s4,1c0012c2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:903 (discriminator 4) +1c0012be sb zero,69(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:903 (discriminator 6) +1c0012c2 jal ra,1c002026 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:906 (discriminator 6) + if( xTaskCheckForTimeOut( &xTimeOut, &xTicksToWait ) == pdFALSE ) +1c0012c6 addi a1,sp,12 +1c0012c8 addi a0,sp,24 +1c0012ca jal ra,1c002458 +1c0012ce bnez a0,1c00134c +prvIsQueueFull(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2335 + +static BaseType_t prvIsQueueFull( const Queue_t *pxQueue ) +{ +BaseType_t xReturn; + + taskENTER_CRITICAL(); +1c0012d0 jal ra,1c00200c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2337 + { + if( pxQueue->uxMessagesWaiting == pxQueue->uxLength ) +1c0012d4 lw a4,56(s0) +1c0012d6 lw a5,60(s0) +1c0012d8 bne a4,a5,1c001338 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2346 + else + { + xReturn = pdFALSE; + } + } + taskEXIT_CRITICAL(); +1c0012dc jal ra,1c002026 +xQueueGenericSend(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:911 + vTaskPlaceOnEventList( &( pxQueue->xTasksWaitingToSend ), xTicksToWait ); +1c0012e0 lw a1,12(sp) +1c0012e2 mv a0,s6 +1c0012e4 jal ra,1c001c46 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:918 + prvUnlockQueue( pxQueue ); +1c0012e8 mv a0,s0 +1c0012ea jal 1c001008 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:925 + if( xTaskResumeAll() == pdFALSE ) +1c0012ec jal ra,1c00234c +1c0012f0 beqz a0,1c001346 +1c0012f2 li s1,1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:761 + taskENTER_CRITICAL(); +1c0012f4 jal ra,1c00200c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:767 + if( ( pxQueue->uxMessagesWaiting < pxQueue->uxLength ) || ( xCopyPosition == queueOVERWRITE ) ) +1c0012f8 lw a4,56(s0) +1c0012fa lw a5,60(s0) +1c0012fc bltu a4,a5,1c001304 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:767 (discriminator 1) +1c001300 bne s2,s5,1c001282 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:833 + xYieldRequired = prvCopyDataToQueue( pxQueue, pvItemToQueue, xCopyPosition ); +1c001304 mv a2,s2 +1c001306 mv a1,s3 +1c001308 mv a0,s0 +1c00130a jal 1c000f64 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:837 + if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) +1c00130c lw a5,36(s0) +1c00130e beqz a5,1c001318 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:839 + if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE ) +1c001310 addi a0,s0,36 +1c001314 jal ra,1c001cd4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:852 + else if( xYieldRequired != pdFALSE ) +1c001318 beqz a0,1c00131e +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:858 + queueYIELD_IF_USING_PREEMPTION(); +1c00131a ecall +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:867 + taskEXIT_CRITICAL(); +1c00131e jal ra,1c002026 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:868 + return pdPASS; +1c001322 li a0,1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:947 +} +1c001324 lw ra,60(sp) +1c001326 lw s0,56(sp) +1c001328 lw s1,52(sp) +1c00132a lw s2,48(sp) +1c00132c lw s3,44(sp) +1c00132e lw s4,40(sp) +1c001330 lw s5,36(sp) +1c001332 lw s6,32(sp) +1c001334 addi sp,sp,64 +1c001336 ret +prvIsQueueFull(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2346 + taskEXIT_CRITICAL(); +1c001338 jal ra,1c002026 +xQueueGenericSend(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:933 + prvUnlockQueue( pxQueue ); +1c00133c mv a0,s0 +1c00133e jal 1c001008 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:934 + ( void ) xTaskResumeAll(); +1c001340 jal ra,1c00234c +1c001344 j 1c0012f2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:927 + portYIELD_WITHIN_API(); +1c001346 ecall +1c00134a j 1c0012f2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:940 + prvUnlockQueue( pxQueue ); +1c00134c mv a0,s0 +1c00134e jal 1c001008 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:941 + ( void ) xTaskResumeAll(); +1c001350 jal ra,1c00234c +1c001354 j 1c00128a +xQueueGenericSendFromISR(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:951 +{ +1c001356 addi sp,sp,-32 +1c001358 sw ra,28(sp) +1c00135a sw s0,24(sp) +1c00135c sw s1,20(sp) +1c00135e sw s2,16(sp) +1c001360 sw s3,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:956 + configASSERT( pxQueue ); +1c001362 bnez a0,1c001384 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:956 (discriminator 1) +1c001364 lui a3,0x1c008 +1c001368 lui a2,0x1c008 +1c00136c mv a3,a3 +1c001370 addi a2,a2,812 # 1c00832c <__func__.12> +1c001374 li a1,956 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:957 (discriminator 2) + configASSERT( !( ( pvItemToQueue == NULL ) && ( pxQueue->uxItemSize != ( UBaseType_t ) 0U ) ) ); +1c001378 lui a0,0x1c008 +1c00137c addi a0,a0,8 # 1c008008 <__l2_priv0_end+0x3208> +1c001380 jal ra,1c0037c8 <__assert_func> +1c001384 mv s2,a2 +1c001386 mv s0,a0 +1c001388 mv a2,a3 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:957 +1c00138a bnez a1,1c0013a6 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:957 (discriminator 1) +1c00138c lw a5,64(a0) +1c00138e beqz a5,1c0013a6 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:957 (discriminator 2) +1c001390 lui a3,0x1c008 +1c001394 lui a2,0x1c008 +1c001398 addi a3,a3,160 # 1c0080a0 <__l2_priv0_end+0x32a0> +1c00139c addi a2,a2,812 # 1c00832c <__func__.12> +1c0013a0 li a1,957 +1c0013a4 j 1c001378 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:958 + configASSERT( !( ( xCopyPosition == queueOVERWRITE ) && ( pxQueue->uxLength != 1 ) ) ); +1c0013a6 li a4,2 +1c0013a8 lw a5,60(s0) +1c0013aa bne a2,a4,1c0013ca +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:958 (discriminator 1) +1c0013ae li a4,1 +1c0013b0 beq a5,a4,1c0013ca +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:958 (discriminator 2) +1c0013b4 lui a3,0x1c008 +1c0013b8 lui a2,0x1c008 +1c0013bc addi a3,a3,248 # 1c0080f8 <__l2_priv0_end+0x32f8> +1c0013c0 addi a2,a2,812 # 1c00832c <__func__.12> +1c0013c4 li a1,958 +1c0013c8 j 1c001378 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:983 + if( ( pxQueue->uxMessagesWaiting < pxQueue->uxLength ) || ( xCopyPosition == queueOVERWRITE ) ) +1c0013ca lw a4,56(s0) +1c0013cc bltu a4,a5,1c0013d8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:983 (discriminator 1) +1c0013d0 li a5,2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1103 (discriminator 1) + xReturn = errQUEUE_FULL; +1c0013d2 li a0,0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:983 (discriminator 1) + if( ( pxQueue->uxMessagesWaiting < pxQueue->uxLength ) || ( xCopyPosition == queueOVERWRITE ) ) +1c0013d4 bne a2,a5,1c0013f6 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:985 + const int8_t cTxLock = pxQueue->cTxLock; +1c0013d8 lbu s1,69(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:986 + const UBaseType_t uxPreviousMessagesWaiting = pxQueue->uxMessagesWaiting; +1c0013dc lw a5,56(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:995 + ( void ) prvCopyDataToQueue( pxQueue, pvItemToQueue, xCopyPosition ); +1c0013de mv a0,s0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:985 + const int8_t cTxLock = pxQueue->cTxLock; +1c0013e0 slli s3,s1,0x18 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:995 + ( void ) prvCopyDataToQueue( pxQueue, pvItemToQueue, xCopyPosition ); +1c0013e4 jal 1c000f64 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:985 + const int8_t cTxLock = pxQueue->cTxLock; +1c0013e6 srai s3,s3,0x18 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:999 + if( cTxLock == queueUNLOCKED ) +1c0013ea li a5,-1 +1c0013ec bne s3,a5,1c00141a +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1061 + if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) +1c0013f0 lw a5,36(s0) +1c0013f2 bnez a5,1c001404 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1098 + xReturn = pdPASS; +1c0013f4 li a0,1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1109 +} +1c0013f6 lw ra,28(sp) +1c0013f8 lw s0,24(sp) +1c0013fa lw s1,20(sp) +1c0013fc lw s2,16(sp) +1c0013fe lw s3,12(sp) +1c001400 addi sp,sp,32 +1c001402 ret +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1063 + if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE ) +1c001404 addi a0,s0,36 +1c001408 jal ra,1c001cd4 +1c00140c beqz a0,1c0013f4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1067 + if( pxHigherPriorityTaskWoken != NULL ) +1c00140e beqz s2,1c0013f4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1069 + *pxHigherPriorityTaskWoken = pdTRUE; +1c001412 li a5,1 +1c001414 sw a5,0(s2) +1c001418 j 1c0013f4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1095 + pxQueue->cTxLock = ( int8_t ) ( cTxLock + 1 ); +1c00141a addi s1,s1,1 +1c00141c slli s1,s1,0x18 +1c00141e srai s1,s1,0x18 +1c001420 sb s1,69(s0) +1c001424 j 1c0013f4 +xQueueGiveFromISR(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1113 +{ +1c001426 addi sp,sp,-16 +1c001428 sw ra,12(sp) +1c00142a sw s0,8(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1124 + configASSERT( pxQueue ); +1c00142c bnez a0,1c00144e +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1124 (discriminator 1) +1c00142e lui a3,0x1c008 +1c001432 lui a2,0x1c008 +1c001436 mv a3,a3 +1c00143a addi a2,a2,792 # 1c008318 <__func__.11> +1c00143e li a1,1124 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1128 (discriminator 1) + configASSERT( pxQueue->uxItemSize == 0 ); +1c001442 lui a0,0x1c008 +1c001446 addi a0,a0,8 # 1c008008 <__l2_priv0_end+0x3208> +1c00144a jal ra,1c0037c8 <__assert_func> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1128 +1c00144e lw a4,64(a0) +1c001450 mv a5,a0 +1c001452 beqz a4,1c00146a +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1128 (discriminator 1) +1c001454 lui a3,0x1c008 +1c001458 lui a2,0x1c008 +1c00145c addi a3,a3,412 # 1c00819c <__l2_priv0_end+0x339c> +1c001460 addi a2,a2,792 # 1c008318 <__func__.11> +1c001464 li a1,1128 +1c001468 j 1c001442 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1133 + configASSERT( !( ( pxQueue->uxQueueType == queueQUEUE_IS_MUTEX ) && ( pxQueue->u.xSemaphore.xMutexHolder != NULL ) ) ); +1c00146a lw a4,0(a0) +1c00146c mv s0,a1 +1c00146e bnez a4,1c00148a +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1133 (discriminator 1) +1c001470 lw a4,8(a0) +1c001472 beqz a4,1c00148a +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1133 (discriminator 2) +1c001474 lui a3,0x1c008 +1c001478 lui a2,0x1c008 +1c00147c addi a3,a3,440 # 1c0081b8 <__l2_priv0_end+0x33b8> +1c001480 addi a2,a2,792 # 1c008318 <__func__.11> +1c001484 li a1,1133 +1c001488 j 1c001442 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1153 + const UBaseType_t uxMessagesWaiting = pxQueue->uxMessagesWaiting; +1c00148a lw a3,56(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1158 + if( uxMessagesWaiting < pxQueue->uxLength ) +1c00148c lw a4,60(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1268 + xReturn = errQUEUE_FULL; +1c00148e li a0,0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1158 + if( uxMessagesWaiting < pxQueue->uxLength ) +1c001490 bgeu a3,a4,1c0014ae +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1160 + const int8_t cTxLock = pxQueue->cTxLock; +1c001494 lbu a4,69(a5) # 00010045 <__heap_l1_cluster_size+0x65> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1170 + pxQueue->uxMessagesWaiting = uxMessagesWaiting + ( UBaseType_t ) 1; +1c001498 addi a3,a3,1 +1c00149a sw a3,56(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1160 + const int8_t cTxLock = pxQueue->cTxLock; +1c00149c slli a2,a4,0x18 +1c0014a0 srai a2,a2,0x18 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1174 + if( cTxLock == queueUNLOCKED ) +1c0014a2 li a3,-1 +1c0014a4 bne a2,a3,1c0014c8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1229 + if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) +1c0014a8 lw a4,36(a5) +1c0014aa bnez a4,1c0014b6 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1263 + xReturn = pdPASS; +1c0014ac li a0,1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1274 +} +1c0014ae lw ra,12(sp) +1c0014b0 lw s0,8(sp) +1c0014b2 addi sp,sp,16 +1c0014b4 ret +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1231 + if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE ) +1c0014b6 addi a0,a5,36 +1c0014ba jal ra,1c001cd4 +1c0014be beqz a0,1c0014ac +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1235 + if( pxHigherPriorityTaskWoken != NULL ) +1c0014c0 beqz s0,1c0014ac +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1237 + *pxHigherPriorityTaskWoken = pdTRUE; +1c0014c2 li a5,1 +1c0014c4 sw a5,0(s0) +1c0014c6 j 1c0014ac +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1260 + pxQueue->cTxLock = ( int8_t ) ( cTxLock + 1 ); +1c0014c8 addi a4,a4,1 +1c0014ca slli a4,a4,0x18 +1c0014cc srai a4,a4,0x18 +1c0014ce sb a4,69(a5) +1c0014d2 j 1c0014ac +xQueueReceive(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1278 +{ +1c0014d4 addi sp,sp,-64 +1c0014d6 sw ra,60(sp) +1c0014d8 sw s0,56(sp) +1c0014da sw s1,52(sp) +1c0014dc sw s2,48(sp) +1c0014de sw s3,44(sp) +1c0014e0 sw s4,40(sp) +1c0014e2 sw s5,36(sp) +1c0014e4 sw a2,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1284 + configASSERT( ( pxQueue ) ); +1c0014e6 bnez a0,1c001508 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1284 (discriminator 1) +1c0014e8 lui a3,0x1c008 +1c0014ec lui a2,0x1c008 +1c0014f0 addi a3,a3,540 # 1c00821c <__l2_priv0_end+0x341c> +1c0014f4 addi a2,a2,776 # 1c008308 <__func__.10> +1c0014f8 li a1,1284 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1288 (discriminator 2) + configASSERT( !( ( ( pvBuffer ) == NULL ) && ( ( pxQueue )->uxItemSize != ( UBaseType_t ) 0U ) ) ); +1c0014fc lui a0,0x1c008 +1c001500 addi a0,a0,8 # 1c008008 <__l2_priv0_end+0x3208> +1c001504 jal ra,1c0037c8 <__assert_func> +1c001508 mv s0,a0 +1c00150a mv s2,a1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1288 +1c00150c bnez a1,1c001528 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1288 (discriminator 1) +1c00150e lw a5,64(a0) +1c001510 beqz a5,1c001528 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1288 (discriminator 2) +1c001512 lui a3,0x1c008 +1c001516 lui a2,0x1c008 +1c00151a addi a3,a3,552 # 1c008228 <__l2_priv0_end+0x3428> +1c00151e addi a2,a2,776 # 1c008308 <__func__.10> +1c001522 li a1,1288 +1c001526 j 1c0014fc +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1293 + configASSERT( !( ( xTaskGetSchedulerState() == taskSCHEDULER_SUSPENDED ) && ( xTicksToWait != 0 ) ) ); +1c001528 jal ra,1c001d84 +1c00152c mv s1,a0 +1c00152e bnez a0,1c00154a +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1293 (discriminator 1) +1c001530 lw a5,12(sp) +1c001532 beqz a5,1c00154c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1293 (discriminator 2) +1c001534 lui a3,0x1c008 +1c001538 lui a2,0x1c008 +1c00153c addi a3,a3,328 # 1c008148 <__l2_priv0_end+0x3348> +1c001540 addi a2,a2,776 # 1c008308 <__func__.10> +1c001544 li a1,1293 +1c001548 j 1c0014fc +1c00154a li s1,0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1368 + prvLockQueue( pxQueue ); +1c00154c li s4,-1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1378 + vTaskPlaceOnEventList( &( pxQueue->xTasksWaitingToReceive ), xTicksToWait ); +1c00154e addi s5,s0,36 +1c001552 j 1c0015c0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1340 + if( xTicksToWait == ( TickType_t ) 0 ) +1c001554 lw a5,12(sp) +1c001556 bnez a5,1c001560 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1344 + taskEXIT_CRITICAL(); +1c001558 jal ra,1c002026 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1407 + return errQUEUE_EMPTY; +1c00155c li a0,0 +1c00155e j 1c0015f0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1348 + else if( xEntryTimeSet == pdFALSE ) +1c001560 bnez s1,1c001568 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1352 + vTaskInternalSetTimeOutState( &xTimeOut ); +1c001562 addi a0,sp,24 +1c001564 jal ra,1c001d6e +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1362 + taskEXIT_CRITICAL(); +1c001568 jal ra,1c002026 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1367 + vTaskSuspendAll(); +1c00156c jal 1c001a16 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1368 + prvLockQueue( pxQueue ); +1c00156e jal ra,1c00200c +1c001572 lbu a5,68(s0) +1c001576 slli a5,a5,0x18 +1c001578 srai a5,a5,0x18 +1c00157a bne a5,s4,1c001582 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1368 (discriminator 1) +1c00157e sb zero,68(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1368 (discriminator 3) +1c001582 lbu a5,69(s0) +1c001586 slli a5,a5,0x18 +1c001588 srai a5,a5,0x18 +1c00158a bne a5,s4,1c001592 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1368 (discriminator 4) +1c00158e sb zero,69(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1368 (discriminator 6) +1c001592 jal ra,1c002026 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1371 (discriminator 6) + if( xTaskCheckForTimeOut( &xTimeOut, &xTicksToWait ) == pdFALSE ) +1c001596 addi a1,sp,12 +1c001598 addi a0,sp,24 +1c00159a jal ra,1c002458 +1c00159e bnez a0,1c00160c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1375 + if( prvIsQueueEmpty( pxQueue ) != pdFALSE ) +1c0015a0 mv a0,s0 +1c0015a2 jal ra,1c000f46 +1c0015a6 beqz a0,1c001602 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1378 + vTaskPlaceOnEventList( &( pxQueue->xTasksWaitingToReceive ), xTicksToWait ); +1c0015a8 lw a1,12(sp) +1c0015aa mv a0,s5 +1c0015ac jal ra,1c001c46 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1379 + prvUnlockQueue( pxQueue ); +1c0015b0 mv a0,s0 +1c0015b2 jal 1c001008 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1380 + if( xTaskResumeAll() == pdFALSE ) +1c0015b4 jal ra,1c00234c +1c0015b8 bnez a0,1c0015be +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1382 + portYIELD_WITHIN_API(); +1c0015ba ecall +1c0015be li s1,1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1303 + taskENTER_CRITICAL(); +1c0015c0 jal ra,1c00200c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1305 + const UBaseType_t uxMessagesWaiting = pxQueue->uxMessagesWaiting; +1c0015c4 lw s3,56(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1309 + if( uxMessagesWaiting > ( UBaseType_t ) 0 ) +1c0015c8 beqz s3,1c001554 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1312 + prvCopyDataFromQueue( pxQueue, pvBuffer ); +1c0015cc mv a1,s2 +1c0015ce mv a0,s0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1314 + pxQueue->uxMessagesWaiting = uxMessagesWaiting - ( UBaseType_t ) 1; +1c0015d0 addi s3,s3,-1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1312 + prvCopyDataFromQueue( pxQueue, pvBuffer ); +1c0015d2 jal 1c000fea +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1314 + pxQueue->uxMessagesWaiting = uxMessagesWaiting - ( UBaseType_t ) 1; +1c0015d4 sw s3,56(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1319 + if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToSend ) ) == pdFALSE ) +1c0015d8 lw a5,16(s0) +1c0015da beqz a5,1c0015ea +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1321 + if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToSend ) ) != pdFALSE ) +1c0015dc addi a0,s0,16 +1c0015e0 jal ra,1c001cd4 +1c0015e4 beqz a0,1c0015ea +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1323 + queueYIELD_IF_USING_PREEMPTION(); +1c0015e6 ecall +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1335 + taskEXIT_CRITICAL(); +1c0015ea jal ra,1c002026 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1336 + return pdPASS; +1c0015ee li a0,1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1415 +} +1c0015f0 lw ra,60(sp) +1c0015f2 lw s0,56(sp) +1c0015f4 lw s1,52(sp) +1c0015f6 lw s2,48(sp) +1c0015f8 lw s3,44(sp) +1c0015fa lw s4,40(sp) +1c0015fc lw s5,36(sp) +1c0015fe addi sp,sp,64 +1c001600 ret +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1393 + prvUnlockQueue( pxQueue ); +1c001602 mv a0,s0 +1c001604 jal 1c001008 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1394 + ( void ) xTaskResumeAll(); +1c001606 jal ra,1c00234c +1c00160a j 1c0015be +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1401 + prvUnlockQueue( pxQueue ); +1c00160c mv a0,s0 +1c00160e jal 1c001008 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1402 + ( void ) xTaskResumeAll(); +1c001610 jal ra,1c00234c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1404 + if( prvIsQueueEmpty( pxQueue ) != pdFALSE ) +1c001614 mv a0,s0 +1c001616 jal ra,1c000f46 +1c00161a beqz a0,1c0015be +1c00161c j 1c00155c +xQueueSemaphoreTake(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1419 +{ +1c00161e addi sp,sp,-64 +1c001620 sw ra,60(sp) +1c001622 sw s0,56(sp) +1c001624 sw s1,52(sp) +1c001626 sw s2,48(sp) +1c001628 sw s3,44(sp) +1c00162a sw s4,40(sp) +1c00162c sw a1,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1429 + configASSERT( ( pxQueue ) ); +1c00162e bnez a0,1c001650 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1429 (discriminator 1) +1c001630 lui a3,0x1c008 +1c001634 lui a2,0x1c008 +1c001638 addi a3,a3,540 # 1c00821c <__l2_priv0_end+0x341c> +1c00163c addi a2,a2,972 # 1c0083cc <__func__.9> +1c001640 li a1,1429 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1433 (discriminator 1) + configASSERT( pxQueue->uxItemSize == 0 ); +1c001644 lui a0,0x1c008 +1c001648 addi a0,a0,8 # 1c008008 <__l2_priv0_end+0x3208> +1c00164c jal ra,1c0037c8 <__assert_func> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1433 +1c001650 lw a5,64(a0) +1c001652 mv s0,a0 +1c001654 beqz a5,1c00166c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1433 (discriminator 1) +1c001656 lui a3,0x1c008 +1c00165a lui a2,0x1c008 +1c00165e addi a3,a3,412 # 1c00819c <__l2_priv0_end+0x339c> +1c001662 addi a2,a2,972 # 1c0083cc <__func__.9> +1c001666 li a1,1433 +1c00166a j 1c001644 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1438 + configASSERT( !( ( xTaskGetSchedulerState() == taskSCHEDULER_SUSPENDED ) && ( xTicksToWait != 0 ) ) ); +1c00166c jal ra,1c001d84 +1c001670 mv s2,a0 +1c001672 bnez a0,1c001690 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1438 (discriminator 1) +1c001674 lw a5,12(sp) +1c001676 li s1,0 +1c001678 beqz a5,1c001694 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1438 (discriminator 2) +1c00167a lui a3,0x1c008 +1c00167e lui a2,0x1c008 +1c001682 addi a3,a3,328 # 1c008148 <__l2_priv0_end+0x3348> +1c001686 addi a2,a2,972 # 1c0083cc <__func__.9> +1c00168a li a1,1438 +1c00168e j 1c001644 +1c001690 li s1,0 +1c001692 li s2,0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1539 + prvLockQueue( pxQueue ); +1c001694 li s3,-1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1569 + vTaskPlaceOnEventList( &( pxQueue->xTasksWaitingToReceive ), xTicksToWait ); +1c001696 addi s4,s0,36 +1c00169a j 1c001734 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1502 + if( xTicksToWait == ( TickType_t ) 0 ) +1c00169c lw a5,12(sp) +1c00169e bnez a5,1c0016be +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1509 + configASSERT( xInheritanceOccurred == pdFALSE ); +1c0016a0 beqz s1,1c0016b8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1509 (discriminator 1) +1c0016a2 lui a3,0x1c008 +1c0016a6 lui a2,0x1c008 +1c0016aa addi a3,a3,644 # 1c008284 <__l2_priv0_end+0x3484> +1c0016ae addi a2,a2,972 # 1c0083cc <__func__.9> +1c0016b2 li a1,1509 +1c0016b6 j 1c001644 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1515 + taskEXIT_CRITICAL(); +1c0016b8 jal ra,1c002026 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1517 + return errQUEUE_EMPTY; +1c0016bc j 1c001760 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1519 + else if( xEntryTimeSet == pdFALSE ) +1c0016be bnez s2,1c0016c8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1523 + vTaskInternalSetTimeOutState( &xTimeOut ); +1c0016c2 addi a0,sp,24 +1c0016c4 jal ra,1c001d6e +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1533 + taskEXIT_CRITICAL(); +1c0016c8 jal ra,1c002026 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1538 + vTaskSuspendAll(); +1c0016cc jal 1c001a16 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1539 + prvLockQueue( pxQueue ); +1c0016ce jal ra,1c00200c +1c0016d2 lbu a5,68(s0) +1c0016d6 slli a5,a5,0x18 +1c0016d8 srai a5,a5,0x18 +1c0016da bne a5,s3,1c0016e2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1539 (discriminator 1) +1c0016de sb zero,68(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1539 (discriminator 3) +1c0016e2 lbu a5,69(s0) +1c0016e6 slli a5,a5,0x18 +1c0016e8 srai a5,a5,0x18 +1c0016ea bne a5,s3,1c0016f2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1539 (discriminator 4) +1c0016ee sb zero,69(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1539 (discriminator 6) +1c0016f2 jal ra,1c002026 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1542 (discriminator 6) + if( xTaskCheckForTimeOut( &xTimeOut, &xTicksToWait ) == pdFALSE ) +1c0016f6 addi a1,sp,12 +1c0016f8 addi a0,sp,24 +1c0016fa jal ra,1c002458 +1c0016fe bnez a0,1c00177e +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1548 + if( prvIsQueueEmpty( pxQueue ) != pdFALSE ) +1c001700 mv a0,s0 +1c001702 jal ra,1c000f46 +1c001706 beqz a0,1c001772 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1554 + if( pxQueue->uxQueueType == queueQUEUE_IS_MUTEX ) +1c001708 lw a5,0(s0) +1c00170a bnez a5,1c00171c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1556 + taskENTER_CRITICAL(); +1c00170c jal ra,1c00200c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1558 + xInheritanceOccurred = xTaskPriorityInherit( pxQueue->u.xSemaphore.xMutexHolder ); +1c001710 lw a0,8(s0) +1c001712 jal ra,1c001d98 +1c001716 mv s1,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1560 + taskEXIT_CRITICAL(); +1c001718 jal ra,1c002026 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1569 + vTaskPlaceOnEventList( &( pxQueue->xTasksWaitingToReceive ), xTicksToWait ); +1c00171c lw a1,12(sp) +1c00171e mv a0,s4 +1c001720 jal 1c001c46 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1570 + prvUnlockQueue( pxQueue ); +1c001722 mv a0,s0 +1c001724 jal ra,1c001008 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1571 + if( xTaskResumeAll() == pdFALSE ) +1c001728 jal ra,1c00234c +1c00172c bnez a0,1c001732 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1573 + portYIELD_WITHIN_API(); +1c00172e ecall +1c001732 li s2,1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1448 + taskENTER_CRITICAL(); +1c001734 jal ra,1c00200c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1452 + const UBaseType_t uxSemaphoreCount = pxQueue->uxMessagesWaiting; +1c001738 lw a5,56(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1456 + if( uxSemaphoreCount > ( UBaseType_t ) 0 ) +1c00173a beqz a5,1c00169c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1462 + pxQueue->uxMessagesWaiting = uxSemaphoreCount - ( UBaseType_t ) 1; +1c00173c addi a5,a5,-1 +1c00173e sw a5,56(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1466 + if( pxQueue->uxQueueType == queueQUEUE_IS_MUTEX ) +1c001740 lw a5,0(s0) +1c001742 bnez a5,1c00174a +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1470 + pxQueue->u.xSemaphore.xMutexHolder = pvTaskIncrementMutexHeldCount(); +1c001744 jal ra,1c00250a +1c001748 sw a0,8(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1481 + if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToSend ) ) == pdFALSE ) +1c00174a lw a5,16(s0) +1c00174c beqz a5,1c00175a +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1483 + if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToSend ) ) != pdFALSE ) +1c00174e addi a0,s0,16 +1c001752 jal 1c001cd4 +1c001754 beqz a0,1c00175a +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1485 + queueYIELD_IF_USING_PREEMPTION(); +1c001756 ecall +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1497 + taskEXIT_CRITICAL(); +1c00175a jal ra,1c002026 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1498 + return pdPASS; +1c00175e li s1,1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1633 +} +1c001760 lw ra,60(sp) +1c001762 lw s0,56(sp) +1c001764 lw s2,48(sp) +1c001766 lw s3,44(sp) +1c001768 lw s4,40(sp) +1c00176a mv a0,s1 +1c00176c lw s1,52(sp) +1c00176e addi sp,sp,64 +1c001770 ret +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1584 + prvUnlockQueue( pxQueue ); +1c001772 mv a0,s0 +1c001774 jal ra,1c001008 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1585 + ( void ) xTaskResumeAll(); +1c001778 jal ra,1c00234c +1c00177c j 1c001732 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1591 + prvUnlockQueue( pxQueue ); +1c00177e mv a0,s0 +1c001780 jal ra,1c001008 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1592 + ( void ) xTaskResumeAll(); +1c001784 jal ra,1c00234c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1598 + if( prvIsQueueEmpty( pxQueue ) != pdFALSE ) +1c001788 mv a0,s0 +1c00178a jal ra,1c000f46 +1c00178e beqz a0,1c001732 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1605 + if( xInheritanceOccurred != pdFALSE ) +1c001790 beqz s1,1c001760 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1607 + taskENTER_CRITICAL(); +1c001792 jal ra,1c00200c +prvGetDisinheritPriorityAfterTimeout(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2059 + if( listCURRENT_LIST_LENGTH( &( pxQueue->xTasksWaitingToReceive ) ) > 0U ) +1c001796 lw a1,36(s0) +1c001798 beqz a1,1c0017a2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2061 + uxHighestPriorityOfWaitingTasks = ( UBaseType_t ) configMAX_PRIORITIES - ( UBaseType_t ) listGET_ITEM_VALUE_OF_HEAD_ENTRY( &( pxQueue->xTasksWaitingToReceive ) ); +1c00179a lw a5,48(s0) +1c00179c li a1,5 +1c00179e lw a5,0(a5) +1c0017a0 sub a1,a1,a5 +xQueueSemaphoreTake(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1617 + vTaskPriorityDisinheritAfterTimeout( pxQueue->u.xSemaphore.xMutexHolder, uxHighestWaitingPriority ); +1c0017a2 lw a0,8(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1625 + return errQUEUE_EMPTY; +1c0017a4 li s1,0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1617 + vTaskPriorityDisinheritAfterTimeout( pxQueue->u.xSemaphore.xMutexHolder, uxHighestWaitingPriority ); +1c0017a6 jal ra,1c001f1e +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1619 + taskEXIT_CRITICAL(); +1c0017aa jal ra,1c002026 +1c0017ae j 1c001760 +xQueueReceiveFromISR(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1786 +{ +1c0017b0 addi sp,sp,-32 +1c0017b2 sw ra,28(sp) +1c0017b4 sw s0,24(sp) +1c0017b6 sw s1,20(sp) +1c0017b8 sw s2,16(sp) +1c0017ba sw s3,12(sp) +1c0017bc sw s4,8(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1791 + configASSERT( pxQueue ); +1c0017be bnez a0,1c0017e0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1791 (discriminator 1) +1c0017c0 lui a3,0x1c008 +1c0017c4 lui a2,0x1c008 +1c0017c8 mv a3,a3 +1c0017cc addi a2,a2,948 # 1c0083b4 <__func__.7> +1c0017d0 li a1,1791 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1792 (discriminator 2) + configASSERT( !( ( pvBuffer == NULL ) && ( pxQueue->uxItemSize != ( UBaseType_t ) 0U ) ) ); +1c0017d4 lui a0,0x1c008 +1c0017d8 addi a0,a0,8 # 1c008008 <__l2_priv0_end+0x3208> +1c0017dc jal ra,1c0037c8 <__assert_func> +1c0017e0 mv s0,a0 +1c0017e2 mv s2,a2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1792 +1c0017e4 bnez a1,1c001800 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1792 (discriminator 1) +1c0017e6 lw a5,64(a0) +1c0017e8 beqz a5,1c001800 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1792 (discriminator 2) +1c0017ea lui a3,0x1c008 +1c0017ee lui a2,0x1c008 +1c0017f2 addi a3,a3,692 # 1c0082b4 <__l2_priv0_end+0x34b4> +1c0017f6 addi a2,a2,948 # 1c0083b4 <__func__.7> +1c0017fa li a1,1792 +1c0017fe j 1c0017d4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1812 + const UBaseType_t uxMessagesWaiting = pxQueue->uxMessagesWaiting; +1c001800 lw s3,56(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1866 + xReturn = pdFAIL; +1c001804 li a0,0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1815 + if( uxMessagesWaiting > ( UBaseType_t ) 0 ) +1c001806 beqz s3,1c00182e +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1817 + const int8_t cRxLock = pxQueue->cRxLock; +1c00180a lbu s1,68(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1821 + prvCopyDataFromQueue( pxQueue, pvBuffer ); +1c00180e mv a0,s0 +1c001810 jal ra,1c000fea +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1817 + const int8_t cRxLock = pxQueue->cRxLock; +1c001814 slli s4,s1,0x18 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1822 + pxQueue->uxMessagesWaiting = uxMessagesWaiting - ( UBaseType_t ) 1; +1c001818 addi s3,s3,-1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1817 + const int8_t cRxLock = pxQueue->cRxLock; +1c00181a srai s4,s4,0x18 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1822 + pxQueue->uxMessagesWaiting = uxMessagesWaiting - ( UBaseType_t ) 1; +1c00181e sw s3,56(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1828 + if( cRxLock == queueUNLOCKED ) +1c001822 li a5,-1 +1c001824 bne s4,a5,1c001852 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1830 + if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToSend ) ) == pdFALSE ) +1c001828 lw a5,16(s0) +1c00182a bnez a5,1c00183e +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1862 + xReturn = pdPASS; +1c00182c li a0,1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1873 +} +1c00182e lw ra,28(sp) +1c001830 lw s0,24(sp) +1c001832 lw s1,20(sp) +1c001834 lw s2,16(sp) +1c001836 lw s3,12(sp) +1c001838 lw s4,8(sp) +1c00183a addi sp,sp,32 +1c00183c ret +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1832 + if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToSend ) ) != pdFALSE ) +1c00183e addi a0,s0,16 +1c001842 jal 1c001cd4 +1c001844 beqz a0,1c00182c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1836 + if( pxHigherPriorityTaskWoken != NULL ) +1c001846 beqz s2,1c00182c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1838 + *pxHigherPriorityTaskWoken = pdTRUE; +1c00184a li a5,1 +1c00184c sw a5,0(s2) +1c001850 j 1c00182c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1859 + pxQueue->cRxLock = ( int8_t ) ( cRxLock + 1 ); +1c001852 addi s1,s1,1 +1c001854 slli s1,s1,0x18 +1c001856 srai s1,s1,0x18 +1c001858 sb s1,68(s0) +1c00185c j 1c00182c +vQueueAddToRegistry(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2654 + { + UBaseType_t ux; + + /* See if there is an empty space in the registry. A NULL name denotes + a free slot. */ + for( ux = ( UBaseType_t ) 0U; ux < ( UBaseType_t ) configQUEUE_REGISTRY_SIZE; ux++ ) +1c00185e lui a5,0x1c009 +1c001862 addi a3,a5,-952 # 1c008c48 +1c001866 li a4,0 +1c001868 addi a5,a5,-952 +1c00186c li a2,8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2656 + { + if( xQueueRegistry[ ux ].pcQueueName == NULL ) +1c00186e lw a6,0(a3) +1c001872 bnez a6,1c001880 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2659 + { + /* Store the information on this queue. */ + xQueueRegistry[ ux ].pcQueueName = pcQueueName; +1c001876 slli a4,a4,0x3 +1c001878 add a5,a5,a4 +1c00187a sw a1,0(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2660 + xQueueRegistry[ ux ].xHandle = xQueue; +1c00187c sw a0,4(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2663 + + traceQUEUE_REGISTRY_ADD( xQueue, pcQueueName ); + break; +1c00187e ret +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2654 (discriminator 2) + for( ux = ( UBaseType_t ) 0U; ux < ( UBaseType_t ) configQUEUE_REGISTRY_SIZE; ux++ ) +1c001880 addi a4,a4,1 +1c001882 addi a3,a3,8 +1c001884 bne a4,a2,1c00186e +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2670 + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + } +1c001888 ret +vQueueUnregisterQueue(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2711 + { + UBaseType_t ux; + + /* See if the handle of the queue being unregistered in actually in the + registry. */ + for( ux = ( UBaseType_t ) 0U; ux < ( UBaseType_t ) configQUEUE_REGISTRY_SIZE; ux++ ) +1c00188a lui a5,0x1c009 +1c00188e addi a3,a5,-952 # 1c008c48 +1c001892 li a4,0 +1c001894 addi a5,a5,-952 +1c001898 li a2,8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2713 + { + if( xQueueRegistry[ ux ].xHandle == xQueue ) +1c00189a lw a1,4(a3) +1c00189c bne a1,a0,1c0018ae +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2716 + { + /* Set the name to NULL to show that this slot if free again. */ + xQueueRegistry[ ux ].pcQueueName = NULL; +1c0018a0 slli a4,a4,0x3 +1c0018a2 add a5,a5,a4 +1c0018a4 sw zero,0(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2721 + + /* Set the handle to NULL to ensure the same queue handle cannot + appear in the registry twice if it is added, removed, then + added again. */ + xQueueRegistry[ ux ].xHandle = ( QueueHandle_t ) 0; +1c0018a8 sw zero,4(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2722 + break; +1c0018ac ret +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2711 (discriminator 2) + for( ux = ( UBaseType_t ) 0U; ux < ( UBaseType_t ) configQUEUE_REGISTRY_SIZE; ux++ ) +1c0018ae addi a4,a4,1 +1c0018b0 addi a3,a3,8 +1c0018b2 bne a4,a2,1c00189a +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2730 + { + mtCOVERAGE_TEST_MARKER(); + } + } + + } /*lint !e818 xQueue could not be pointer to const because it is a typedef. */ +1c0018b6 ret +vQueueDelete(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1976 +{ +1c0018b8 addi sp,sp,-16 +1c0018ba sw ra,12(sp) +1c0018bc sw s0,8(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1979 + configASSERT( pxQueue ); +1c0018be bnez a0,1c0018e0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1979 (discriminator 1) +1c0018c0 lui a3,0x1c008 +1c0018c4 lui a2,0x1c008 +1c0018c8 lui a0,0x1c008 +1c0018cc mv a3,a3 +1c0018d0 addi a2,a2,932 # 1c0083a4 <__func__.2> +1c0018d4 li a1,1979 +1c0018d8 addi a0,a0,8 # 1c008008 <__l2_priv0_end+0x3208> +1c0018dc jal ra,1c0037c8 <__assert_func> +1c0018e0 mv s0,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1984 + vQueueUnregisterQueue( pxQueue ); +1c0018e2 jal 1c00188a +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1992 + vPortFree( pxQueue ); +1c0018e4 mv a0,s0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2014 +} +1c0018e6 lw s0,8(sp) +1c0018e8 lw ra,12(sp) +1c0018ea addi sp,sp,16 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1992 + vPortFree( pxQueue ); +1c0018ec j 1c002992 +vQueueWaitForMessageRestricted(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2738 +/*-----------------------------------------------------------*/ + +#if ( configUSE_TIMERS == 1 ) + + void vQueueWaitForMessageRestricted( QueueHandle_t xQueue, TickType_t xTicksToWait, const BaseType_t xWaitIndefinitely ) + { +1c0018f0 addi sp,sp,-16 +1c0018f2 sw s0,8(sp) +1c0018f4 sw s1,4(sp) +1c0018f6 sw s2,0(sp) +1c0018f8 mv s0,a0 +1c0018fa sw ra,12(sp) +1c0018fc mv s1,a1 +1c0018fe mv s2,a2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2755 + will not actually cause the task to block, just place it on a blocked + list. It will not block until the scheduler is unlocked - at which + time a yield will be performed. If an item is added to the queue while + the queue is locked, and the calling task blocks on the queue, then the + calling task will be immediately unblocked when the queue is unlocked. */ + prvLockQueue( pxQueue ); +1c001900 jal ra,1c00200c +1c001904 lbu a5,68(s0) +1c001908 li a4,-1 +1c00190a slli a5,a5,0x18 +1c00190c srai a5,a5,0x18 +1c00190e bne a5,a4,1c001916 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2755 (discriminator 1) +1c001912 sb zero,68(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2755 (discriminator 3) +1c001916 lbu a5,69(s0) +1c00191a li a4,-1 +1c00191c slli a5,a5,0x18 +1c00191e srai a5,a5,0x18 +1c001920 bne a5,a4,1c001928 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2755 (discriminator 4) +1c001924 sb zero,69(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2755 (discriminator 6) +1c001928 jal ra,1c002026 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2756 (discriminator 6) + if( pxQueue->uxMessagesWaiting == ( UBaseType_t ) 0U ) +1c00192c lw a5,56(s0) +1c00192e bnez a5,1c00193a +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2759 + { + /* There is nothing in the queue, block for the specified period. */ + vTaskPlaceOnEventListRestricted( &( pxQueue->xTasksWaitingToReceive ), xTicksToWait, xWaitIndefinitely ); +1c001930 mv a2,s2 +1c001932 mv a1,s1 +1c001934 addi a0,s0,36 +1c001938 jal 1c001c88 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2765 + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + prvUnlockQueue( pxQueue ); +1c00193a mv a0,s0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2766 + } +1c00193c lw s0,8(sp) +1c00193e lw ra,12(sp) +1c001940 lw s1,4(sp) +1c001942 lw s2,0(sp) +1c001944 addi sp,sp,16 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2765 + prvUnlockQueue( pxQueue ); +1c001946 j 1c001008 +prvAddCurrentTaskToDelayedList(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:5178 + +#endif +/*-----------------------------------------------------------*/ + +static void prvAddCurrentTaskToDelayedList( TickType_t xTicksToWait, const BaseType_t xCanBlockIndefinitely ) +{ +1c00194a addi sp,sp,-32 +1c00194c sw s1,20(sp) +1c00194e sw s3,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:5180 +TickType_t xTimeToWake; +const TickType_t xConstTickCount = xTickCount; +1c001950 lw s3,-632(gp) # 1c009164 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:5187 + #if( INCLUDE_xTaskAbortDelay == 1 ) + { + /* About to enter a delayed list, so ensure the ucDelayAborted flag is + reset to pdFALSE so it can be detected as having been set to pdTRUE + when the task leaves the Blocked state. */ + pxCurrentTCB->ucDelayAborted = pdFALSE; +1c001954 addi a5,gp,-684 # 1c009130 +1c001958 lw a4,0(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:5178 +{ +1c00195a sw s0,24(sp) +1c00195c mv s0,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:5193 + } + #endif + + /* Remove the task from the ready list before adding it to the blocked list + as the same list item is used for both lists. */ + if( uxListRemove( &( pxCurrentTCB->xStateListItem ) ) == ( UBaseType_t ) 0 ) +1c00195e lw a0,0(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:5178 +{ +1c001960 sw s2,16(sp) +1c001962 sw ra,28(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:5187 + pxCurrentTCB->ucDelayAborted = pdFALSE; +1c001964 sb zero,1157(a4) # 01000485 <__heap_l2_shared_size+0xf99e55> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:5193 + if( uxListRemove( &( pxCurrentTCB->xStateListItem ) ) == ( UBaseType_t ) 0 ) +1c001968 addi a0,a0,4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:5178 +{ +1c00196a mv s2,a1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:5193 + if( uxListRemove( &( pxCurrentTCB->xStateListItem ) ) == ( UBaseType_t ) 0 ) +1c00196c jal ra,1c000f26 +1c001970 addi a5,gp,-684 # 1c009130 +1c001974 bnez a0,1c00198e +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:5197 + { + /* The current task must be in a ready list, so there is no need to + check, and the port reset macro can be called directly. */ + portRESET_READY_PRIORITY( pxCurrentTCB->uxPriority, uxTopReadyPriority ); /*lint !e931 pxCurrentTCB cannot change as it is the calling task. pxCurrentTCB->uxPriority and uxTopReadyPriority cannot change as called with scheduler suspended or in a critical section. */ +1c001976 lw a4,0(a5) +1c001978 addi a3,gp,-656 # 1c00914c +1c00197c lw a1,44(a4) +1c00197e lw a2,0(a3) +1c001980 li a4,1 +1c001982 sll a4,a4,a1 +1c001986 not a4,a4 +1c00198a and a4,a4,a2 +1c00198c sw a4,0(a3) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:5206 + mtCOVERAGE_TEST_MARKER(); + } + + #if ( INCLUDE_vTaskSuspend == 1 ) + { + if( ( xTicksToWait == portMAX_DELAY ) && ( xCanBlockIndefinitely != pdFALSE ) ) +1c00198e li a4,-1 +1c001990 bne s0,a4,1c0019b0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:5206 (discriminator 1) +1c001994 beqz s2,1c0019b0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:5211 + { + /* Add the task to the suspended task list instead of a delayed task + list to ensure it is not woken by a timing event. It will block + indefinitely. */ + vListInsertEnd( &xSuspendedTaskList, &( pxCurrentTCB->xStateListItem ) ); +1c001998 lw a1,0(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:5286 + + /* Avoid compiler warning when INCLUDE_vTaskSuspend is not 1. */ + ( void ) xCanBlockIndefinitely; + } + #endif /* INCLUDE_vTaskSuspend */ +} +1c00199a lw s0,24(sp) +1c00199c lw ra,28(sp) +1c00199e lw s1,20(sp) +1c0019a0 lw s2,16(sp) +1c0019a2 lw s3,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:5211 + vListInsertEnd( &xSuspendedTaskList, &( pxCurrentTCB->xStateListItem ) ); +1c0019a4 addi a1,a1,4 +1c0019a6 addi a0,gp,-1716 # 1c008d28 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:5286 +} +1c0019aa addi sp,sp,32 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:5211 + vListInsertEnd( &xSuspendedTaskList, &( pxCurrentTCB->xStateListItem ) ); +1c0019ac j 1c000ee0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:5221 + listSET_LIST_ITEM_VALUE( &( pxCurrentTCB->xStateListItem ), xTimeToWake ); +1c0019b0 lw a4,0(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:5218 + xTimeToWake = xConstTickCount + xTicksToWait; +1c0019b2 add s0,s0,s3 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:5221 + listSET_LIST_ITEM_VALUE( &( pxCurrentTCB->xStateListItem ), xTimeToWake ); +1c0019b4 sw s0,4(a4) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:5223 + if( xTimeToWake < xConstTickCount ) +1c0019b6 bgeu s0,s3,1c0019d2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:5227 + vListInsert( pxOverflowDelayedTaskList, &( pxCurrentTCB->xStateListItem ) ); +1c0019ba lw a0,-676(gp) # 1c009138 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:5286 +} +1c0019be lw s0,24(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:5227 + vListInsert( pxOverflowDelayedTaskList, &( pxCurrentTCB->xStateListItem ) ); +1c0019c0 lw a1,0(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:5286 +} +1c0019c2 lw ra,28(sp) +1c0019c4 lw s1,20(sp) +1c0019c6 lw s2,16(sp) +1c0019c8 lw s3,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:5227 + vListInsert( pxOverflowDelayedTaskList, &( pxCurrentTCB->xStateListItem ) ); +1c0019ca addi a1,a1,4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:5286 +} +1c0019cc addi sp,sp,32 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:5227 + vListInsert( pxOverflowDelayedTaskList, &( pxCurrentTCB->xStateListItem ) ); +1c0019ce j 1c000ef8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:5233 + vListInsert( pxDelayedTaskList, &( pxCurrentTCB->xStateListItem ) ); +1c0019d2 lw a0,-680(gp) # 1c009134 +1c0019d6 lw a1,0(a5) +1c0019d8 addi a1,a1,4 +1c0019da jal ra,1c000ef8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:5238 + if( xTimeToWake < xNextTaskUnblockTime ) +1c0019de addi a5,gp,-648 # 1c009154 +1c0019e2 lw a4,0(a5) +1c0019e4 bgeu s0,a4,1c0019ea +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:5240 + xNextTaskUnblockTime = xTimeToWake; +1c0019e8 sw s0,0(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:5286 +} +1c0019ea lw ra,28(sp) +1c0019ec lw s0,24(sp) +1c0019ee lw s1,20(sp) +1c0019f0 lw s2,16(sp) +1c0019f2 lw s3,12(sp) +1c0019f4 addi sp,sp,32 +1c0019f6 ret +prvResetNextTaskUnblockTime(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3947 + if( listLIST_IS_EMPTY( pxDelayedTaskList ) != pdFALSE ) +1c0019f8 addi a4,gp,-680 # 1c009134 +1c0019fc lw a5,0(a4) +1c0019fe lw a3,0(a5) +1c001a00 addi a5,gp,-648 # 1c009154 +1c001a04 bnez a3,1c001a0c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3953 + xNextTaskUnblockTime = portMAX_DELAY; +1c001a06 li a4,-1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3962 + xNextTaskUnblockTime = listGET_LIST_ITEM_VALUE( &( ( pxTCB )->xStateListItem ) ); +1c001a08 sw a4,0(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3964 +} +1c001a0a ret +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3961 + ( pxTCB ) = listGET_OWNER_OF_HEAD_ENTRY( pxDelayedTaskList ); /*lint !e9079 void * is used as this macro is used with timers and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ +1c001a0c lw a4,0(a4) +1c001a0e lw a4,12(a4) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3962 + xNextTaskUnblockTime = listGET_LIST_ITEM_VALUE( &( ( pxTCB )->xStateListItem ) ); +1c001a10 lw a4,12(a4) +1c001a12 lw a4,4(a4) +1c001a14 j 1c001a08 +vTaskSuspendAll(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2123 + ++uxSchedulerSuspended; +1c001a16 addi a5,gp,-664 # 1c009144 +1c001a1a lw a4,0(a5) +1c001a1c addi a4,a4,1 +1c001a1e sw a4,0(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2128 +} +1c001a20 ret +xTaskGetTickCount(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2311 + xTicks = xTickCount; +1c001a22 lw a0,-632(gp) # 1c009164 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2316 +} +1c001a26 ret +xTaskIncrementTick(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2717 + if( uxSchedulerSuspended == ( UBaseType_t ) pdFALSE ) +1c001a28 lw a5,-664(gp) # 1c009144 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2708 +{ +1c001a2c addi sp,sp,-48 +1c001a2e sw ra,44(sp) +1c001a30 sw s0,40(sp) +1c001a32 sw s1,36(sp) +1c001a34 sw s2,32(sp) +1c001a36 sw s3,28(sp) +1c001a38 sw s4,24(sp) +1c001a3a sw s5,20(sp) +1c001a3c sw s6,16(sp) +1c001a3e sw s7,12(sp) +1c001a40 sw s8,8(sp) +1c001a42 sw s9,4(sp) +1c001a44 sw s10,0(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2717 + if( uxSchedulerSuspended == ( UBaseType_t ) pdFALSE ) +1c001a46 bnez a5,1c001b68 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2721 + const TickType_t xConstTickCount = xTickCount + ( TickType_t ) 1; +1c001a4a addi a5,gp,-632 # 1c009164 +1c001a4e lw s4,0(a5) +1c001a52 addi s4,s4,1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2725 + xTickCount = xConstTickCount; +1c001a54 sw s4,0(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2727 + if( xConstTickCount == ( TickType_t ) 0U ) /*lint !e774 'if' does not always evaluate to false as it is looking for an overflow. */ +1c001a58 bnez s4,1c001aa0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2729 + taskSWITCH_DELAYED_LISTS(); +1c001a5c addi a5,gp,-680 # 1c009134 +1c001a60 lw a4,0(a5) +1c001a62 lw a4,0(a4) +1c001a64 beqz a4,1c001a88 +1c001a66 lui a3,0x1c008 +1c001a6a lui a2,0x1c008 +1c001a6e lui a1,0x1 +1c001a70 lui a0,0x1c008 +1c001a74 addi a3,a3,1068 # 1c00842c <__func__.9+0x60> +1c001a78 addi a2,a2,1484 # 1c0085cc <__func__.13> +1c001a7c addi a1,a1,-1367 # 00000aa9 <__stack_size+0x2a9> +1c001a80 addi a0,a0,1000 # 1c0083e8 <__func__.9+0x1c> +1c001a84 jal ra,1c0037c8 <__assert_func> +1c001a88 addi a4,gp,-676 # 1c009138 +1c001a8c lw a3,0(a5) +1c001a8e lw a2,0(a4) +1c001a90 sw a2,0(a5) +1c001a92 sw a3,0(a4) +1c001a94 addi a5,gp,-644 # 1c009158 +1c001a98 lw a4,0(a5) +1c001a9a addi a4,a4,1 +1c001a9c sw a4,0(a5) +1c001a9e jal 1c0019f8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2740 + if( xConstTickCount >= xNextTaskUnblockTime ) +1c001aa0 addi a5,gp,-648 # 1c009154 +1c001aa4 lw a5,0(a5) +1c001aa6 lui s1,0x1c009 +1c001aaa addi s3,gp,-648 # 1c009154 +1c001aae addi s1,s1,-888 # 1c008c88 +1c001ab2 addi s5,gp,-684 # 1c009130 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2711 +BaseType_t xSwitchRequired = pdFALSE; +1c001ab6 li s0,0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2740 + if( xConstTickCount >= xNextTaskUnblockTime ) +1c001ab8 bgeu s4,a5,1c001afa +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2823 + if( listCURRENT_LIST_LENGTH( &( pxReadyTasksLists[ pxCurrentTCB->uxPriority ] ) ) > ( UBaseType_t ) 1 ) +1c001abc lw a5,0(s5) +1c001ac0 li a4,20 +1c001ac2 lw a5,44(a5) +1c001ac4 mul a5,a5,a4 +1c001ac8 add s1,s1,a5 +1c001aca lw a4,0(s1) +1c001acc li a5,1 +1c001ace bgeu a5,a4,1c001ad4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2825 + xSwitchRequired = pdTRUE; +1c001ad2 li s0,1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2851 + if( xYieldPending != pdFALSE ) +1c001ad4 lw a5,-628(gp) # 1c009168 +1c001ad8 beqz a5,1c001adc +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2853 + xSwitchRequired = pdTRUE; +1c001ada li s0,1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2876 +} +1c001adc lw ra,44(sp) +1c001ade mv a0,s0 +1c001ae0 lw s0,40(sp) +1c001ae2 lw s1,36(sp) +1c001ae4 lw s2,32(sp) +1c001ae6 lw s3,28(sp) +1c001ae8 lw s4,24(sp) +1c001aea lw s5,20(sp) +1c001aec lw s6,16(sp) +1c001aee lw s7,12(sp) +1c001af0 lw s8,8(sp) +1c001af2 lw s9,4(sp) +1c001af4 lw s10,0(sp) +1c001af6 addi sp,sp,48 +1c001af8 ret +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2794 + prvAddTaskToReadyList( pxTCB ); +1c001afa li s8,1 +1c001afc li s9,20 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2744 + if( listLIST_IS_EMPTY( pxDelayedTaskList ) != pdFALSE ) +1c001afe addi a5,gp,-680 # 1c009134 +1c001b02 lw a4,0(a5) +1c001b04 lw a4,0(a4) +1c001b06 bnez a4,1c001b10 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2751 + xNextTaskUnblockTime = portMAX_DELAY; /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ +1c001b08 li a5,-1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2770 + xNextTaskUnblockTime = xItemValue; +1c001b0a sw a5,0(s3) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2771 + break; /*lint !e9011 Code structure here is deedmed easier to understand with multiple breaks. */ +1c001b0e j 1c001abc +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2760 + pxTCB = listGET_OWNER_OF_HEAD_ENTRY( pxDelayedTaskList ); /*lint !e9079 void * is used as this macro is used with timers and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ +1c001b10 lw a5,0(a5) +1c001b12 lw a5,12(a5) +1c001b14 lw s2,12(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2761 + xItemValue = listGET_LIST_ITEM_VALUE( &( pxTCB->xStateListItem ) ); +1c001b18 lw a5,4(s2) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2763 + if( xConstTickCount < xItemValue ) +1c001b1c bltu s4,a5,1c001b0a +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2779 + ( void ) uxListRemove( &( pxTCB->xStateListItem ) ); +1c001b20 addi s10,s2,4 +1c001b24 mv a0,s10 +1c001b26 jal ra,1c000f26 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2783 + if( listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) != NULL ) +1c001b2a lw a5,40(s2) +1c001b2e beqz a5,1c001b38 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2785 + ( void ) uxListRemove( &( pxTCB->xEventListItem ) ); +1c001b30 addi a0,s2,24 +1c001b34 jal ra,1c000f26 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2794 + prvAddTaskToReadyList( pxTCB ); +1c001b38 lw a0,44(s2) +1c001b3c addi a4,gp,-656 # 1c00914c +1c001b40 lw a3,0(a4) +1c001b42 sll a5,s8,a0 +1c001b46 mul a0,a0,s9 +1c001b4a or a5,a5,a3 +1c001b4c mv a1,s10 +1c001b4e sw a5,0(a4) +1c001b50 add a0,a0,s1 +1c001b52 jal ra,1c000ee0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2804 + if( pxTCB->uxPriority >= pxCurrentTCB->uxPriority ) +1c001b56 lw a5,0(s5) +1c001b5a lw a4,44(s2) +1c001b5e lw a5,44(a5) +1c001b60 bltu a4,a5,1c001afe +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2806 + xSwitchRequired = pdTRUE; +1c001b64 li s0,1 +1c001b66 j 1c001afe +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2864 + ++xPendedTicks; +1c001b68 addi a5,gp,-640 # 1c00915c +1c001b6c lw a4,0(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2711 +BaseType_t xSwitchRequired = pdFALSE; +1c001b6e li s0,0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2864 + ++xPendedTicks; +1c001b70 addi a4,a4,1 +1c001b72 sw a4,0(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2875 + return xSwitchRequired; +1c001b74 j 1c001adc +vTaskSwitchContext(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2991 + if( uxSchedulerSuspended != ( UBaseType_t ) pdFALSE ) +1c001b76 lw a4,-664(gp) # 1c009144 +1c001b7a addi a5,gp,-628 # 1c009168 +1c001b7e beqz a4,1c001b86 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2995 + xYieldPending = pdTRUE; +1c001b80 li a4,1 +1c001b82 sw a4,0(a5) +1c001b84 ret +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2990 +{ +1c001b86 addi sp,sp,-16 +1c001b88 sw s0,8(sp) +1c001b8a sw ra,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2999 + xYieldPending = pdFALSE; +1c001b8c sw zero,0(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3030 + taskCHECK_FOR_STACK_OVERFLOW(); +1c001b90 addi a5,gp,-684 # 1c009130 +1c001b94 lw a5,0(a5) +1c001b96 lui a4,0xa5a5a +1c001b9a addi a4,a4,1445 # a5a5a5a5 <__heap_l2_shared_start+0x89a40bd5> +1c001b9e lw a5,48(a5) +1c001ba0 addi s0,gp,-684 # 1c009130 +1c001ba4 lw a2,0(a5) +1c001ba6 bne a2,a4,1c001bbc +1c001baa lw a3,4(a5) +1c001bac bne a3,a2,1c001bbc +1c001bb0 lw a4,8(a5) +1c001bb2 bne a4,a3,1c001bbc +1c001bb6 lw a5,12(a5) +1c001bb8 beq a5,a4,1c001bc8 +1c001bbc lw a0,0(s0) +1c001bbe lw a1,0(s0) +1c001bc0 addi a1,a1,52 +1c001bc4 jal ra,1c00319c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3041 + taskSELECT_HIGHEST_PRIORITY_TASK(); /*lint !e9079 void * is used as this macro is used with timers and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ +1c001bc8 lw a0,-656(gp) # 1c00914c +1c001bcc jal ra,1c000e8a <__clzsi2> +1c001bd0 li a4,31 +1c001bd2 sub a0,a4,a0 +1c001bd6 li a5,20 +1c001bd8 mul a5,a0,a5 +1c001bdc lui a4,0x1c009 +1c001be0 addi a3,a4,-888 # 1c008c88 +1c001be4 addi a4,a4,-888 +1c001be8 add a3,a3,a5 +1c001bea lw a2,0(a3) +1c001bec bnez a2,1c001c10 +1c001bee lui a3,0x1c008 +1c001bf2 lui a2,0x1c008 +1c001bf6 lui a1,0x1 +1c001bf8 lui a0,0x1c008 +1c001bfc addi a3,a3,1188 # 1c0084a4 <__func__.9+0xd8> +1c001c00 addi a2,a2,1464 # 1c0085b8 <__func__.12> +1c001c04 addi a1,a1,-1055 # 00000be1 <__stack_size+0x3e1> +1c001c08 addi a0,a0,1000 # 1c0083e8 <__func__.9+0x1c> +1c001c0c jal ra,1c0037c8 <__assert_func> +1c001c10 lw a2,4(a3) +1c001c12 addi a5,a5,8 +1c001c14 add a5,a5,a4 +1c001c16 lw a2,4(a2) +1c001c18 sw a2,4(a3) +1c001c1a bne a2,a5,1c001c22 +1c001c1e lw a5,4(a2) +1c001c20 sw a5,4(a3) +1c001c22 li a5,20 +1c001c24 mul a0,a0,a5 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3061 +} +1c001c28 lw ra,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3041 + taskSELECT_HIGHEST_PRIORITY_TASK(); /*lint !e9079 void * is used as this macro is used with timers and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ +1c001c2a add a4,a4,a0 +1c001c2c lw a5,4(a4) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3057 + _impure_ptr = &( pxCurrentTCB->xNewLib_reent ); +1c001c2e lui a4,0x1c009 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3041 + taskSELECT_HIGHEST_PRIORITY_TASK(); /*lint !e9079 void * is used as this macro is used with timers and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ +1c001c32 lw a5,12(a5) +1c001c34 sw a5,0(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3057 + _impure_ptr = &( pxCurrentTCB->xNewLib_reent ); +1c001c36 lw a5,0(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3061 +} +1c001c38 lw s0,8(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3057 + _impure_ptr = &( pxCurrentTCB->xNewLib_reent ); +1c001c3a addi a5,a5,88 +1c001c3e sw a5,-956(a4) # 1c008c44 <_impure_ptr> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3061 +} +1c001c42 addi sp,sp,16 +1c001c44 ret +vTaskPlaceOnEventList(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3065 +{ +1c001c46 addi sp,sp,-16 +1c001c48 sw ra,12(sp) +1c001c4a sw s0,8(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3066 + configASSERT( pxEventList ); +1c001c4c bnez a0,1c001c70 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3066 (discriminator 1) +1c001c4e lui a3,0x1c008 +1c001c52 lui a2,0x1c008 +1c001c56 lui a1,0x1 +1c001c58 lui a0,0x1c008 +1c001c5c addi a3,a3,1260 # 1c0084ec <__func__.9+0x120> +1c001c60 addi a2,a2,1440 # 1c0085a0 <__func__.11> +1c001c64 addi a1,a1,-1030 # 00000bfa <__stack_size+0x3fa> +1c001c68 addi a0,a0,1000 # 1c0083e8 <__func__.9+0x1c> +1c001c6c jal ra,1c0037c8 <__assert_func> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3075 + vListInsert( pxEventList, &( pxCurrentTCB->xEventListItem ) ); +1c001c70 mv s0,a1 +1c001c72 lw a1,-684(gp) # 1c009130 +1c001c76 addi a1,a1,24 +1c001c78 jal ra,1c000ef8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3077 + prvAddCurrentTaskToDelayedList( xTicksToWait, pdTRUE ); +1c001c7c mv a0,s0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3078 +} +1c001c7e lw s0,8(sp) +1c001c80 lw ra,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3077 + prvAddCurrentTaskToDelayedList( xTicksToWait, pdTRUE ); +1c001c82 li a1,1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3078 +} +1c001c84 addi sp,sp,16 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3077 + prvAddCurrentTaskToDelayedList( xTicksToWait, pdTRUE ); +1c001c86 j 1c00194a +vTaskPlaceOnEventListRestricted(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3108 + { +1c001c88 addi sp,sp,-16 +1c001c8a sw ra,12(sp) +1c001c8c sw s0,8(sp) +1c001c8e sw s1,4(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3109 + configASSERT( pxEventList ); +1c001c90 bnez a0,1c001cb4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3109 (discriminator 1) +1c001c92 lui a3,0x1c008 +1c001c96 lui a2,0x1c008 +1c001c9a lui a1,0x1 +1c001c9c lui a0,0x1c008 +1c001ca0 addi a3,a3,1260 # 1c0084ec <__func__.9+0x120> +1c001ca4 addi a2,a2,1652 # 1c008674 <__func__.9> +1c001ca8 addi a1,a1,-987 # 00000c25 <__stack_size+0x425> +1c001cac addi a0,a0,1000 # 1c0083e8 <__func__.9+0x1c> +1c001cb0 jal ra,1c0037c8 <__assert_func> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3121 + vListInsertEnd( pxEventList, &( pxCurrentTCB->xEventListItem ) ); +1c001cb4 mv s0,a1 +1c001cb6 lw a1,-684(gp) # 1c009130 +1c001cba mv s1,a2 +1c001cbc addi a1,a1,24 +1c001cbe jal ra,1c000ee0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3126 + if( xWaitIndefinitely != pdFALSE ) +1c001cc2 beqz s1,1c001cc6 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3128 + xTicksToWait = portMAX_DELAY; +1c001cc4 li s0,-1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3132 + prvAddCurrentTaskToDelayedList( xTicksToWait, xWaitIndefinitely ); +1c001cc6 mv a0,s0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3133 + } +1c001cc8 lw s0,8(sp) +1c001cca lw ra,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3132 + prvAddCurrentTaskToDelayedList( xTicksToWait, xWaitIndefinitely ); +1c001ccc mv a1,s1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3133 + } +1c001cce lw s1,4(sp) +1c001cd0 addi sp,sp,16 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3132 + prvAddCurrentTaskToDelayedList( xTicksToWait, xWaitIndefinitely ); +1c001cd2 j 1c00194a +xTaskRemoveFromEventList(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3156 + pxUnblockedTCB = listGET_OWNER_OF_HEAD_ENTRY( pxEventList ); /*lint !e9079 void * is used as this macro is used with timers and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ +1c001cd4 lw a5,12(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3139 +{ +1c001cd6 addi sp,sp,-32 +1c001cd8 sw s0,24(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3156 + pxUnblockedTCB = listGET_OWNER_OF_HEAD_ENTRY( pxEventList ); /*lint !e9079 void * is used as this macro is used with timers and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ +1c001cda lw s0,12(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3139 +{ +1c001cdc sw ra,28(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3157 + configASSERT( pxUnblockedTCB ); +1c001cde bnez s0,1c001d02 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3157 (discriminator 1) +1c001ce0 lui a3,0x1c008 +1c001ce4 lui a2,0x1c008 +1c001ce8 lui a1,0x1 +1c001cea lui a0,0x1c008 +1c001cee addi a3,a3,1272 # 1c0084f8 <__func__.9+0x12c> +1c001cf2 addi a2,a2,1624 # 1c008658 <__func__.8> +1c001cf6 addi a1,a1,-939 # 00000c55 <__stack_size+0x455> +1c001cfa addi a0,a0,1000 # 1c0083e8 <__func__.9+0x1c> +1c001cfe jal ra,1c0037c8 <__assert_func> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3158 + ( void ) uxListRemove( &( pxUnblockedTCB->xEventListItem ) ); +1c001d02 addi a1,s0,24 +1c001d06 mv a0,a1 +1c001d08 sw a1,12(sp) +1c001d0a jal ra,1c000f26 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3160 + if( uxSchedulerSuspended == ( UBaseType_t ) pdFALSE ) +1c001d0e lw a5,-664(gp) # 1c009144 +1c001d12 lw a1,12(sp) +1c001d14 bnez a5,1c001d68 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3162 + ( void ) uxListRemove( &( pxUnblockedTCB->xStateListItem ) ); +1c001d16 addi a1,s0,4 +1c001d1a mv a0,a1 +1c001d1c sw a1,12(sp) +1c001d1e jal ra,1c000f26 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3163 + prvAddTaskToReadyList( pxUnblockedTCB ); +1c001d22 lw a0,44(s0) +1c001d24 addi a4,gp,-656 # 1c00914c +1c001d28 lw a3,0(a4) +1c001d2a li a5,1 +1c001d2c sll a5,a5,a0 +1c001d30 or a5,a5,a3 +1c001d32 sw a5,0(a4) +1c001d34 li a5,20 +1c001d36 mul a0,a0,a5 +1c001d3a lw a1,12(sp) +1c001d3c lui a5,0x1c009 +1c001d40 addi a5,a5,-888 # 1c008c88 +1c001d44 add a0,a0,a5 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3183 + vListInsertEnd( &( xPendingReadyList ), &( pxUnblockedTCB->xEventListItem ) ); +1c001d46 jal ra,1c000ee0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3186 + if( pxUnblockedTCB->uxPriority > pxCurrentTCB->uxPriority ) +1c001d4a lw a5,-684(gp) # 1c009130 +1c001d4e lw a4,44(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3199 + xReturn = pdFALSE; +1c001d50 li a0,0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3186 + if( pxUnblockedTCB->uxPriority > pxCurrentTCB->uxPriority ) +1c001d52 lw a5,44(a5) +1c001d54 bgeu a5,a4,1c001d60 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3195 + xYieldPending = pdTRUE; +1c001d58 li a4,1 +1c001d5a sw a4,-628(gp) # 1c009168 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3191 + xReturn = pdTRUE; +1c001d5e li a0,1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3203 +} +1c001d60 lw ra,28(sp) +1c001d62 lw s0,24(sp) +1c001d64 addi sp,sp,32 +1c001d66 ret +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3183 + vListInsertEnd( &( xPendingReadyList ), &( pxUnblockedTCB->xEventListItem ) ); +1c001d68 addi a0,gp,-1736 # 1c008d14 +1c001d6c j 1c001d46 +vTaskInternalSetTimeOutState(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3269 + pxTimeOut->xOverflowCount = xNumOfOverflows; +1c001d6e lw a5,-644(gp) # 1c009158 +1c001d72 sw a5,0(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3270 + pxTimeOut->xTimeOnEntering = xTickCount; +1c001d74 lw a5,-632(gp) # 1c009164 +1c001d78 sw a5,4(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3271 +} +1c001d7a ret +vTaskMissedYield(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3339 + xYieldPending = pdTRUE; +1c001d7c li a4,1 +1c001d7e sw a4,-628(gp) # 1c009168 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3340 +} +1c001d82 ret +xTaskGetSchedulerState(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3990 + if( xSchedulerRunning == pdFALSE ) +1c001d84 lw a5,-636(gp) # 1c009160 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3992 + xReturn = taskSCHEDULER_NOT_STARTED; +1c001d88 li a0,1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3990 + if( xSchedulerRunning == pdFALSE ) +1c001d8a beqz a5,1c001d96 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3996 + if( uxSchedulerSuspended == ( UBaseType_t ) pdFALSE ) +1c001d8c lw a0,-664(gp) # 1c009144 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4002 + xReturn = taskSCHEDULER_SUSPENDED; +1c001d90 seqz a0,a0 +1c001d94 slli a0,a0,0x1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4007 + } +1c001d96 ret +xTaskPriorityInherit(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4022 + if( pxMutexHolder != NULL ) +1c001d98 beqz a0,1c001e48 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4015 + { +1c001d9a addi sp,sp,-32 +1c001d9c sw s1,20(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4027 + if( pxMutexHolderTCB->uxPriority < pxCurrentTCB->uxPriority ) +1c001d9e addi a4,gp,-684 # 1c009130 +1c001da2 lw a3,0(a4) +1c001da4 lw a5,44(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4015 + { +1c001da6 sw s0,24(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4027 + if( pxMutexHolderTCB->uxPriority < pxCurrentTCB->uxPriority ) +1c001da8 lw a3,44(a3) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4015 + { +1c001daa sw ra,28(sp) +1c001dac sw s2,16(sp) +1c001dae mv s0,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4027 + if( pxMutexHolderTCB->uxPriority < pxCurrentTCB->uxPriority ) +1c001db0 addi s1,gp,-684 # 1c009130 +1c001db4 bgeu a5,a3,1c001e3c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4032 + if( ( listGET_LIST_ITEM_VALUE( &( pxMutexHolderTCB->xEventListItem ) ) & taskEVENT_LIST_ITEM_VALUE_IN_USE ) == 0UL ) +1c001db8 lw a4,24(a0) +1c001dba bltz a4,1c001dc8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4034 + listSET_LIST_ITEM_VALUE( &( pxMutexHolderTCB->xEventListItem ), ( TickType_t ) configMAX_PRIORITIES - ( TickType_t ) pxCurrentTCB->uxPriority ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ +1c001dbe lw a4,0(s1) +1c001dc0 lw a3,44(a4) +1c001dc2 li a4,5 +1c001dc4 sub a4,a4,a3 +1c001dc6 sw a4,24(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4043 + if( listIS_CONTAINED_WITHIN( &( pxReadyTasksLists[ pxMutexHolderTCB->uxPriority ] ), &( pxMutexHolderTCB->xStateListItem ) ) != pdFALSE ) +1c001dc8 li a3,20 +1c001dca mul a5,a5,a3 +1c001dce lui a0,0x1c009 +1c001dd2 addi a4,a0,-888 # 1c008c88 +1c001dd6 addi s2,a0,-888 +1c001dda add a5,a5,a4 +1c001ddc lw a4,20(s0) +1c001dde bne a4,a5,1c001e34 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4045 + if( uxListRemove( &( pxMutexHolderTCB->xStateListItem ) ) == ( UBaseType_t ) 0 ) +1c001de2 addi a1,s0,4 +1c001de6 mv a0,a1 +1c001de8 sw a1,12(sp) +1c001dea jal ra,1c000f26 +1c001dee lw a1,12(sp) +1c001df0 addi a4,gp,-656 # 1c00914c +1c001df4 bnez a0,1c001e08 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4050 + portRESET_READY_PRIORITY( pxMutexHolderTCB->uxPriority, uxTopReadyPriority ); +1c001df6 lw a2,44(s0) +1c001df8 lw a3,0(a4) +1c001dfa li a5,1 +1c001dfc sll a5,a5,a2 +1c001e00 not a5,a5 +1c001e04 and a5,a5,a3 +1c001e06 sw a5,0(a4) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4058 + pxMutexHolderTCB->uxPriority = pxCurrentTCB->uxPriority; +1c001e08 lw a5,0(s1) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4059 + prvAddTaskToReadyList( pxMutexHolderTCB ); +1c001e0a lw a3,0(a4) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4058 + pxMutexHolderTCB->uxPriority = pxCurrentTCB->uxPriority; +1c001e0c lw a0,44(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4059 + prvAddTaskToReadyList( pxMutexHolderTCB ); +1c001e0e li a5,1 +1c001e10 sll a5,a5,a0 +1c001e14 or a5,a5,a3 +1c001e16 sw a5,0(a4) +1c001e18 li a5,20 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4058 + pxMutexHolderTCB->uxPriority = pxCurrentTCB->uxPriority; +1c001e1a sw a0,44(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4059 + prvAddTaskToReadyList( pxMutexHolderTCB ); +1c001e1c mul a0,a0,a5 +1c001e20 add a0,a0,s2 +1c001e22 jal ra,1c000ee0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4070 + xReturn = pdTRUE; +1c001e26 li a0,1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4097 + } +1c001e28 lw ra,28(sp) +1c001e2a lw s0,24(sp) +1c001e2c lw s1,20(sp) +1c001e2e lw s2,16(sp) +1c001e30 addi sp,sp,32 +1c001e32 ret +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4064 + pxMutexHolderTCB->uxPriority = pxCurrentTCB->uxPriority; +1c001e34 lw a5,0(s1) +1c001e36 lw a5,44(a5) +1c001e38 sw a5,44(s0) +1c001e3a j 1c001e26 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4074 + if( pxMutexHolderTCB->uxBasePriority < pxCurrentTCB->uxPriority ) +1c001e3c lw a5,0(a4) +1c001e3e lw a0,80(a0) +1c001e40 lw a5,44(a5) +1c001e42 sltu a0,a0,a5 +1c001e46 j 1c001e28 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4017 + BaseType_t xReturn = pdFALSE; +1c001e48 li a0,0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4097 + } +1c001e4a ret +xTaskPriorityDisinherit(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4109 + if( pxMutexHolder != NULL ) +1c001e4c bnez a0,1c001e5c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4107 + BaseType_t xReturn = pdFALSE; +1c001e4e li a0,0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4177 + } +1c001e50 ret +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4107 + BaseType_t xReturn = pdFALSE; +1c001e52 li a0,0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4177 + } +1c001e54 lw ra,28(sp) +1c001e56 lw s0,24(sp) +1c001e58 addi sp,sp,32 +1c001e5a ret +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4115 + configASSERT( pxTCB == pxCurrentTCB ); +1c001e5c lw a5,-684(gp) # 1c009130 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4105 + { +1c001e60 addi sp,sp,-32 +1c001e62 sw s0,24(sp) +1c001e64 sw ra,28(sp) +1c001e66 mv s0,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4115 + configASSERT( pxTCB == pxCurrentTCB ); +1c001e68 beq a5,a0,1c001e8c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4115 (discriminator 1) +1c001e6c lui a3,0x1c008 +1c001e70 lui a2,0x1c008 +1c001e74 lui a1,0x1 +1c001e76 lui a0,0x1c008 +1c001e7a addi a3,a3,1288 # 1c008508 <__func__.9+0x13c> +1c001e7e addi a2,a2,1576 # 1c008628 <__func__.4> +1c001e82 addi a1,a1,19 +1c001e84 addi a0,a0,1000 # 1c0083e8 <__func__.9+0x1c> +1c001e88 jal ra,1c0037c8 <__assert_func> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4116 + configASSERT( pxTCB->uxMutexesHeld ); +1c001e8c lw a5,84(a5) +1c001e8e bnez a5,1c001eb0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4116 (discriminator 1) +1c001e90 lui a3,0x1c008 +1c001e94 lui a2,0x1c008 +1c001e98 lui a1,0x1 +1c001e9a lui a0,0x1c008 +1c001e9e addi a3,a3,1312 # 1c008520 <__func__.9+0x154> +1c001ea2 addi a2,a2,1576 # 1c008628 <__func__.4> +1c001ea6 addi a1,a1,20 +1c001ea8 addi a0,a0,1000 # 1c0083e8 <__func__.9+0x1c> +1c001eac jal ra,1c0037c8 <__assert_func> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4121 + if( pxTCB->uxPriority != pxTCB->uxBasePriority ) +1c001eb0 lw a3,44(a0) +1c001eb2 lw a4,80(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4117 + ( pxTCB->uxMutexesHeld )--; +1c001eb4 addi a5,a5,-1 +1c001eb6 sw a5,84(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4121 + if( pxTCB->uxPriority != pxTCB->uxBasePriority ) +1c001eb8 beq a3,a4,1c001e52 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4124 + if( pxTCB->uxMutexesHeld == ( UBaseType_t ) 0 ) +1c001ebc bnez a5,1c001e52 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4131 + if( uxListRemove( &( pxTCB->xStateListItem ) ) == ( UBaseType_t ) 0 ) +1c001ebe addi a1,a0,4 +1c001ec2 mv a0,a1 +1c001ec4 sw a1,12(sp) +1c001ec6 jal ra,1c000f26 +1c001eca lui a2,0x1c009 +1c001ece lw a1,12(sp) +1c001ed0 addi a2,a2,-888 # 1c008c88 +1c001ed4 addi a4,gp,-656 # 1c00914c +1c001ed8 bnez a0,1c001ef8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4133 + taskRESET_READY_PRIORITY( pxTCB->uxPriority ); +1c001eda lw a0,44(s0) +1c001edc li a3,20 +1c001ede mul a3,a0,a3 +1c001ee2 add a3,a3,a2 +1c001ee4 lw a5,0(a3) +1c001ee6 bnez a5,1c001ef8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4133 (discriminator 1) +1c001ee8 lw a3,0(a4) +1c001eea li a5,1 +1c001eec sll a5,a5,a0 +1c001ef0 not a5,a5 +1c001ef4 and a5,a5,a3 +1c001ef6 sw a5,0(a4) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4143 + pxTCB->uxPriority = pxTCB->uxBasePriority; +1c001ef8 lw a5,80(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4148 + listSET_LIST_ITEM_VALUE( &( pxTCB->xEventListItem ), ( TickType_t ) configMAX_PRIORITIES - ( TickType_t ) pxTCB->uxPriority ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ +1c001efa li a3,5 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4149 + prvAddTaskToReadyList( pxTCB ); +1c001efc lw a0,0(a4) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4148 + listSET_LIST_ITEM_VALUE( &( pxTCB->xEventListItem ), ( TickType_t ) configMAX_PRIORITIES - ( TickType_t ) pxTCB->uxPriority ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ +1c001efe sub a3,a3,a5 +1c001f00 sw a3,24(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4149 + prvAddTaskToReadyList( pxTCB ); +1c001f02 li a3,1 +1c001f04 sll a3,a3,a5 +1c001f08 or a3,a3,a0 +1c001f0a li a0,20 +1c001f0c mul a0,a5,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4143 + pxTCB->uxPriority = pxTCB->uxBasePriority; +1c001f10 sw a5,44(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4149 + prvAddTaskToReadyList( pxTCB ); +1c001f12 sw a3,0(a4) +1c001f14 add a0,a0,a2 +1c001f16 jal ra,1c000ee0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4159 + xReturn = pdTRUE; +1c001f1a li a0,1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4176 + return xReturn; +1c001f1c j 1c001e54 +vTaskPriorityDisinheritAfterTimeout(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4190 + if( pxMutexHolder != NULL ) +1c001f1e beqz a0,1c00200a +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4194 + configASSERT( pxTCB->uxMutexesHeld ); +1c001f22 lw a3,84(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4185 + { +1c001f24 addi sp,sp,-32 +1c001f26 sw s0,24(sp) +1c001f28 sw ra,28(sp) +1c001f2a sw s1,20(sp) +1c001f2c mv s0,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4194 + configASSERT( pxTCB->uxMutexesHeld ); +1c001f2e bnez a3,1c001f52 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4194 (discriminator 1) +1c001f30 lui a3,0x1c008 +1c001f34 lui a2,0x1c008 +1c001f38 lui a1,0x1 +1c001f3a lui a0,0x1c008 +1c001f3e addi a3,a3,1312 # 1c008520 <__func__.9+0x154> +1c001f42 addi a2,a2,1540 # 1c008604 <__func__.3> +1c001f46 addi a1,a1,98 # 00001062 <__stack_size+0x862> +1c001f4a addi a0,a0,1000 # 1c0083e8 <__func__.9+0x1c> +1c001f4e jal ra,1c0037c8 <__assert_func> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4200 + if( pxTCB->uxBasePriority < uxHighestPriorityWaitingTask ) +1c001f52 lw a5,80(a0) +1c001f54 bgeu a5,a1,1c001f5a +1c001f58 mv a5,a1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4210 + if( pxTCB->uxPriority != uxPriorityToUse ) +1c001f5a lw a4,44(s0) +1c001f5c beq a4,a5,1c002000 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4216 + if( pxTCB->uxMutexesHeld == uxOnlyOneMutexHeld ) +1c001f60 li a2,1 +1c001f62 bne a3,a2,1c002000 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4221 + configASSERT( pxTCB != pxCurrentTCB ); +1c001f66 lw a3,-684(gp) # 1c009130 +1c001f6a bne a3,s0,1c001f90 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4221 (discriminator 1) +1c001f6e lui a3,0x1c008 +1c001f72 lui a2,0x1c008 +1c001f76 lui a1,0x1 +1c001f78 lui a0,0x1c008 +1c001f7c addi a3,a3,1336 # 1c008538 <__func__.9+0x16c> +1c001f80 addi a2,a2,1540 # 1c008604 <__func__.3> +1c001f84 addi a1,a1,125 # 0000107d <__stack_size+0x87d> +1c001f88 addi a0,a0,1000 # 1c0083e8 <__func__.9+0x1c> +1c001f8c jal ra,1c0037c8 <__assert_func> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4232 + if( ( listGET_LIST_ITEM_VALUE( &( pxTCB->xEventListItem ) ) & taskEVENT_LIST_ITEM_VALUE_IN_USE ) == 0UL ) +1c001f90 lw a3,24(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4228 + pxTCB->uxPriority = uxPriorityToUse; +1c001f92 sw a5,44(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4232 + if( ( listGET_LIST_ITEM_VALUE( &( pxTCB->xEventListItem ) ) & taskEVENT_LIST_ITEM_VALUE_IN_USE ) == 0UL ) +1c001f94 bltz a3,1c001fa0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4234 + listSET_LIST_ITEM_VALUE( &( pxTCB->xEventListItem ), ( TickType_t ) configMAX_PRIORITIES - ( TickType_t ) uxPriorityToUse ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ +1c001f98 li a3,5 +1c001f9a sub a5,a3,a5 +1c001f9e sw a5,24(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4247 + if( listIS_CONTAINED_WITHIN( &( pxReadyTasksLists[ uxPriorityUsedOnEntry ] ), &( pxTCB->xStateListItem ) ) != pdFALSE ) +1c001fa0 li a3,20 +1c001fa2 mul a4,a4,a3 +1c001fa6 lui a0,0x1c009 +1c001faa addi a5,a0,-888 # 1c008c88 +1c001fae addi s1,a0,-888 +1c001fb2 add a4,a4,a5 +1c001fb4 lw a5,20(s0) +1c001fb6 bne a5,a4,1c002000 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4249 + if( uxListRemove( &( pxTCB->xStateListItem ) ) == ( UBaseType_t ) 0 ) +1c001fba addi a1,s0,4 +1c001fbe mv a0,a1 +1c001fc0 sw a1,12(sp) +1c001fc2 jal ra,1c000f26 +1c001fc6 lw a3,44(s0) +1c001fc8 lw a1,12(sp) +1c001fca addi a4,gp,-656 # 1c00914c +1c001fce bnez a0,1c001fe0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4254 + portRESET_READY_PRIORITY( pxTCB->uxPriority, uxTopReadyPriority ); +1c001fd0 lw a2,0(a4) +1c001fd2 li a5,1 +1c001fd4 sll a5,a5,a3 +1c001fd8 not a5,a5 +1c001fdc and a5,a5,a2 +1c001fde sw a5,0(a4) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4261 + prvAddTaskToReadyList( pxTCB ); +1c001fe0 li a0,20 +1c001fe2 mul a0,a3,a0 +1c001fe6 lw a2,0(a4) +1c001fe8 li a5,1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4282 + } +1c001fea lw s0,24(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4261 + prvAddTaskToReadyList( pxTCB ); +1c001fec sll a5,a5,a3 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4282 + } +1c001ff0 lw ra,28(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4261 + prvAddTaskToReadyList( pxTCB ); +1c001ff2 or a5,a5,a2 +1c001ff4 sw a5,0(a4) +1c001ff6 add a0,a0,s1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4282 + } +1c001ff8 lw s1,20(sp) +1c001ffa addi sp,sp,32 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4261 + prvAddTaskToReadyList( pxTCB ); +1c001ffc j 1c000ee0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4282 + } +1c002000 lw ra,28(sp) +1c002002 lw s0,24(sp) +1c002004 lw s1,20(sp) +1c002006 addi sp,sp,32 +1c002008 ret +1c00200a ret +vTaskEnterCritical(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4291 + portDISABLE_INTERRUPTS(); +1c00200c csrci mstatus,8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4293 + if( xSchedulerRunning != pdFALSE ) +1c002010 lw a5,-636(gp) # 1c009160 +1c002014 beqz a5,1c002024 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4295 + ( pxCurrentTCB->uxCriticalNesting )++; +1c002016 addi a5,gp,-684 # 1c009130 +1c00201a lw a3,0(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4303 + if( pxCurrentTCB->uxCriticalNesting == 1 ) +1c00201c lw a5,0(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4295 + ( pxCurrentTCB->uxCriticalNesting )++; +1c00201e lw a4,68(a3) +1c002020 addi a4,a4,1 +1c002022 sw a4,68(a3) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4312 + } +1c002024 ret +vTaskExitCritical(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4321 + if( xSchedulerRunning != pdFALSE ) +1c002026 lw a5,-636(gp) # 1c009160 +1c00202a beqz a5,1c002048 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4323 + if( pxCurrentTCB->uxCriticalNesting > 0U ) +1c00202c addi a5,gp,-684 # 1c009130 +1c002030 lw a4,0(a5) +1c002032 lw a4,68(a4) +1c002034 beqz a4,1c002048 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4325 + ( pxCurrentTCB->uxCriticalNesting )--; +1c002036 lw a3,0(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4327 + if( pxCurrentTCB->uxCriticalNesting == 0U ) +1c002038 lw a5,0(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4325 + ( pxCurrentTCB->uxCriticalNesting )--; +1c00203a lw a4,68(a3) +1c00203c addi a4,a4,-1 +1c00203e sw a4,68(a3) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4327 + if( pxCurrentTCB->uxCriticalNesting == 0U ) +1c002040 lw a5,68(a5) +1c002042 bnez a5,1c002048 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4329 + portENABLE_INTERRUPTS(); +1c002044 csrsi mstatus,8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4345 + } +1c002048 ret +xTaskCreate(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:739 + { +1c00204a addi sp,sp,-48 +1c00204c sw s3,28(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:773 + pxStack = pvPortMalloc( ( ( ( size_t ) usStackDepth ) * sizeof( StackType_t ) ) ); /*lint !e9079 All values returned by pvPortMalloc() have at least the alignment required by the MCU's stack and this allocation is the stack. */ +1c00204e slli s3,a2,0x2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:739 + { +1c002052 sw s6,16(sp) +1c002054 mv s6,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:773 + pxStack = pvPortMalloc( ( ( ( size_t ) usStackDepth ) * sizeof( StackType_t ) ) ); /*lint !e9079 All values returned by pvPortMalloc() have at least the alignment required by the MCU's stack and this allocation is the stack. */ +1c002056 mv a0,s3 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:739 + { +1c002058 sw s1,36(sp) +1c00205a sw s2,32(sp) +1c00205c sw s5,20(sp) +1c00205e sw s7,12(sp) +1c002060 sw ra,44(sp) +1c002062 sw s0,40(sp) +1c002064 sw s4,24(sp) +1c002066 sw s8,8(sp) +1c002068 mv s1,a1 +1c00206a mv s7,a3 +1c00206c mv s2,a4 +1c00206e mv s5,a5 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:773 + pxStack = pvPortMalloc( ( ( ( size_t ) usStackDepth ) * sizeof( StackType_t ) ) ); /*lint !e9079 All values returned by pvPortMalloc() have at least the alignment required by the MCU's stack and this allocation is the stack. */ +1c002070 jal ra,1c00296a +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:775 + if( pxStack != NULL ) +1c002074 beqz a0,1c0020a6 +1c002076 mv s4,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:778 + pxNewTCB = ( TCB_t * ) pvPortMalloc( sizeof( TCB_t ) ); /*lint !e9087 !e9079 All values returned by pvPortMalloc() have at least the alignment required by the MCU's stack, and the first member of TCB_t is always a pointer to the task's stack. */ +1c002078 li a0,1160 +1c00207c jal ra,1c00296a +1c002080 mv s0,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:780 + if( pxNewTCB != NULL ) +1c002082 beqz a0,1c0020a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:783 + pxNewTCB->pxStack = pxStack; +1c002084 sw s4,48(a0) +prvInitialiseNewTask(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:854 + ( void ) memset( pxNewTCB->pxStack, ( int ) tskSTACK_FILL_BYTE, ( size_t ) ulStackDepth * sizeof( StackType_t ) ); +1c002088 mv a2,s3 +1c00208a li a1,165 +1c00208e mv a0,s4 +1c002090 jal ra,1c000e7a +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:864 + pxTopOfStack = &( pxNewTCB->pxStack[ ulStackDepth - ( uint32_t ) 1 ] ); +1c002094 lw s8,48(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:892 + if( pcName != NULL ) +1c002098 bnez s1,1c0020aa +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:919 + pxNewTCB->pcTaskName[ 0 ] = 0x00; +1c00209a sb zero,52(s0) +1c00209e j 1c0020ca +xTaskCreate(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:789 + vPortFree( pxStack ); +1c0020a0 mv a0,s4 +1c0020a2 jal ra,1c002992 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:815 + xReturn = errCOULD_NOT_ALLOCATE_REQUIRED_MEMORY; +1c0020a6 li a0,-1 +1c0020a8 j 1c00223a +1c0020aa mv a1,s1 +1c0020ac addi a5,s0,52 +1c0020b0 addi a3,s1,16 +prvInitialiseNewTask(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:896 + pxNewTCB->pcTaskName[ x ] = pcName[ x ]; +1c0020b4 lb a4,0(a1) +1c0020b8 sb a4,0(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:901 + if( pcName[ x ] == ( char ) 0x00 ) +1c0020bc beqz a4,1c0020c6 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:894 + for( x = ( UBaseType_t ) 0; x < ( UBaseType_t ) configMAX_TASK_NAME_LEN; x++ ) +1c0020be addi a1,a1,1 +1c0020c0 addi a5,a5,1 +1c0020c2 bne a1,a3,1c0020b4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:913 + pxNewTCB->pcTaskName[ configMAX_TASK_NAME_LEN - 1 ] = '\0'; +1c0020c6 sb zero,67(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:924 + if( uxPriority >= ( UBaseType_t ) configMAX_PRIORITIES ) +1c0020ca li a5,4 +1c0020cc bgeu a5,s2,1c0020d2 +1c0020d0 li s2,4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:941 + vListInitialiseItem( &( pxNewTCB->xStateListItem ) ); +1c0020d2 addi s4,s0,4 +1c0020d6 mv a0,s4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:933 + pxNewTCB->uxPriority = uxPriority; +1c0020d8 sw s2,44(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:936 + pxNewTCB->uxBasePriority = uxPriority; +1c0020dc sw s2,80(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:937 + pxNewTCB->uxMutexesHeld = 0; +1c0020e0 sw zero,84(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:941 + vListInitialiseItem( &( pxNewTCB->xStateListItem ) ); +1c0020e4 jal ra,1c000eda +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:942 + vListInitialiseItem( &( pxNewTCB->xEventListItem ) ); +1c0020e8 addi a0,s0,24 +1c0020ec jal ra,1c000eda +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:949 + listSET_LIST_ITEM_VALUE( &( pxNewTCB->xEventListItem ), ( TickType_t ) configMAX_PRIORITIES - ( TickType_t ) uxPriority ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ +1c0020f0 li a4,5 +1c0020f2 sub s1,a4,s2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:992 + pxNewTCB->ulNotifiedValue = 0; +1c0020f6 sw zero,1152(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:1002 + _REENT_INIT_PTR( ( &( pxNewTCB->xNewLib_reent ) ) ); +1c0020fa li a2,1064 +1c0020fe li a1,0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:946 + listSET_LIST_ITEM_OWNER( &( pxNewTCB->xStateListItem ), pxNewTCB ); +1c002100 sw s0,16(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:949 + listSET_LIST_ITEM_VALUE( &( pxNewTCB->xEventListItem ), ( TickType_t ) configMAX_PRIORITIES - ( TickType_t ) uxPriority ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ +1c002102 sw s1,24(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:950 + listSET_LIST_ITEM_OWNER( &( pxNewTCB->xEventListItem ), pxNewTCB ); +1c002104 sw s0,36(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:954 + pxNewTCB->uxCriticalNesting = ( UBaseType_t ) 0U; +1c002106 sw zero,68(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:993 + pxNewTCB->ucNotifyState = taskNOT_WAITING_NOTIFICATION; +1c00210a sb zero,1156(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:1002 + _REENT_INIT_PTR( ( &( pxNewTCB->xNewLib_reent ) ) ); +1c00210e addi a0,s0,88 +1c002112 jal ra,1c000e7a +1c002116 addi a5,s0,836 +1c00211a sw a5,92(s0) +1c00211c addi a5,s0,940 +1c002120 sw a5,96(s0) +1c002122 li a4,1 +1c002124 addi a5,s0,1044 +1c002128 sw a5,100(s0) +1c00212a sw a4,256(s0) +1c00212e li a5,0 +1c002130 lui a4,0xabcd3 +1c002134 sw a5,260(s0) +1c002138 addi a4,a4,782 # abcd330e <__heap_l2_shared_start+0x8fcb993e> +1c00213c addi a5,s0,256 +1c002140 sw a4,8(a5) +1c002142 lui a4,0xe66d1 +1c002146 addi a4,a4,564 # e66d1234 <__heap_l2_shared_start+0xca6b7864> +1c00214a sw a4,12(a5) +1c00214c lui a4,0x5e +1c002150 addi a4,a4,-276 # 0005deec <__heap_l1_cluster_size+0x4df0c> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:864 + pxTopOfStack = &( pxNewTCB->pxStack[ ulStackDepth - ( uint32_t ) 1 ] ); +1c002154 addi s3,s3,-4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:1002 + _REENT_INIT_PTR( ( &( pxNewTCB->xNewLib_reent ) ) ); +1c002156 sw a4,16(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:864 + pxTopOfStack = &( pxNewTCB->pxStack[ ulStackDepth - ( uint32_t ) 1 ] ); +1c002158 add s3,s3,s8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:1002 + _REENT_INIT_PTR( ( &( pxNewTCB->xNewLib_reent ) ) ); +1c00215a li a5,11 +1c00215c sh a5,276(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:1008 + pxNewTCB->ucDelayAborted = pdFALSE; +1c002160 sb zero,1157(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:1058 + pxNewTCB->pxTopOfStack = pxPortInitialiseStack( pxTopOfStack, pxTaskCode, pvParameters ); +1c002164 mv a2,s7 +1c002166 mv a1,s6 +1c002168 andi a0,s3,-16 +1c00216c jal ra,1c000e00 +1c002170 sw a0,0(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:1064 + if( pxCreatedTask != NULL ) +1c002172 beqz s5,1c00217a +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:1068 + *pxCreatedTask = ( TaskHandle_t ) pxNewTCB; +1c002176 sw s0,0(s5) +prvAddNewTaskToReadyList(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:1081 + taskENTER_CRITICAL(); +1c00217a jal 1c00200c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:1083 + uxCurrentNumberOfTasks++; +1c00217c addi a5,gp,-672 # 1c00913c +1c002180 lw a4,0(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:1084 + if( pxCurrentTCB == NULL ) +1c002182 lui s1,0x1c009 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:1083 + uxCurrentNumberOfTasks++; +1c002186 addi a4,a4,1 +1c002188 sw a4,0(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:1084 + if( pxCurrentTCB == NULL ) +1c00218a addi a4,gp,-684 # 1c009130 +1c00218e lw a4,0(a4) +1c002190 addi s2,gp,-684 # 1c009130 +1c002194 addi s3,s1,-888 # 1c008c88 +1c002198 bnez a4,1c002252 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:1088 + pxCurrentTCB = pxNewTCB; +1c00219c sw s0,0(s2) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:1090 + if( uxCurrentNumberOfTasks == ( UBaseType_t ) 1 ) +1c0021a0 lw a4,0(a5) +1c0021a2 li a5,1 +1c0021a4 bne a4,a5,1c0021f4 +1c0021a8 addi s1,s1,-888 +1c0021ac addi s5,s3,100 +prvInitialiseTaskLists(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3613 + vListInitialise( &( pxReadyTasksLists[ uxPriority ] ) ); +1c0021b0 mv a0,s1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3611 + for( uxPriority = ( UBaseType_t ) 0U; uxPriority < ( UBaseType_t ) configMAX_PRIORITIES; uxPriority++ ) +1c0021b2 addi s1,s1,20 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3613 + vListInitialise( &( pxReadyTasksLists[ uxPriority ] ) ); +1c0021b4 jal ra,1c000ec6 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3611 + for( uxPriority = ( UBaseType_t ) 0U; uxPriority < ( UBaseType_t ) configMAX_PRIORITIES; uxPriority++ ) +1c0021b8 bne s5,s1,1c0021b0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3616 + vListInitialise( &xDelayedTaskList1 ); +1c0021bc addi s5,gp,-1776 # 1c008cec +1c0021c0 addi a0,gp,-1776 # 1c008cec +1c0021c4 jal ra,1c000ec6 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3617 + vListInitialise( &xDelayedTaskList2 ); +1c0021c8 addi s1,gp,-1756 # 1c008d00 +1c0021cc addi a0,gp,-1756 # 1c008d00 +1c0021d0 jal ra,1c000ec6 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3618 + vListInitialise( &xPendingReadyList ); +1c0021d4 addi a0,gp,-1736 # 1c008d14 +1c0021d8 jal ra,1c000ec6 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3622 + vListInitialise( &xTasksWaitingTermination ); +1c0021dc addi a0,gp,-1696 # 1c008d3c +1c0021e0 jal ra,1c000ec6 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3628 + vListInitialise( &xSuspendedTaskList ); +1c0021e4 addi a0,gp,-1716 # 1c008d28 +1c0021e8 jal ra,1c000ec6 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3634 + pxDelayedTaskList = &xDelayedTaskList1; +1c0021ec sw s5,-680(gp) # 1c009134 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3635 + pxOverflowDelayedTaskList = &xDelayedTaskList2; +1c0021f0 sw s1,-676(gp) # 1c009138 +prvAddNewTaskToReadyList(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:1124 + uxTaskNumber++; +1c0021f4 addi a4,gp,-660 # 1c009148 +1c0021f8 lw a5,0(a4) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:1134 + prvAddTaskToReadyList( pxNewTCB ); +1c0021fa lw a0,44(s0) +1c0021fc mv a1,s4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:1124 + uxTaskNumber++; +1c0021fe addi a5,a5,1 +1c002200 sw a5,0(a4) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:1134 + prvAddTaskToReadyList( pxNewTCB ); +1c002202 addi a4,gp,-656 # 1c00914c +1c002206 lw a3,0(a4) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:1129 + pxNewTCB->uxTCBNumber = uxTaskNumber; +1c002208 sw a5,72(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:1134 + prvAddTaskToReadyList( pxNewTCB ); +1c00220a li a5,1 +1c00220c sll a5,a5,a0 +1c002210 or a5,a5,a3 +1c002212 sw a5,0(a4) +1c002214 li a5,20 +1c002216 mul a0,a0,a5 +1c00221a add a0,a0,s3 +1c00221c jal ra,1c000ee0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:1138 + taskEXIT_CRITICAL(); +1c002220 jal 1c002026 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:1140 + if( xSchedulerRunning != pdFALSE ) +1c002222 lw a5,-636(gp) # 1c009160 +xTaskCreate(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:811 + xReturn = pdPASS; +1c002226 li a0,1 +prvAddNewTaskToReadyList(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:1140 + if( xSchedulerRunning != pdFALSE ) +1c002228 beqz a5,1c00223a +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:1144 + if( pxCurrentTCB->uxPriority < pxNewTCB->uxPriority ) +1c00222a lw a5,0(s2) +1c00222e lw a4,44(a5) +1c002230 lw a5,44(s0) +1c002232 bgeu a4,a5,1c00223a +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:1146 + taskYIELD_IF_USING_PREEMPTION(); +1c002236 ecall +xTaskCreate(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:819 + } +1c00223a lw ra,44(sp) +1c00223c lw s0,40(sp) +1c00223e lw s1,36(sp) +1c002240 lw s2,32(sp) +1c002242 lw s3,28(sp) +1c002244 lw s4,24(sp) +1c002246 lw s5,20(sp) +1c002248 lw s6,16(sp) +1c00224a lw s7,12(sp) +1c00224c lw s8,8(sp) +1c00224e addi sp,sp,48 +1c002250 ret +prvAddNewTaskToReadyList(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:1107 + if( xSchedulerRunning == pdFALSE ) +1c002252 lw a5,-636(gp) # 1c009160 +1c002256 bnez a5,1c0021f4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:1109 + if( pxCurrentTCB->uxPriority <= pxNewTCB->uxPriority ) +1c002258 lw a5,0(s2) +1c00225c lw a4,44(s0) +1c00225e lw a5,44(a5) +1c002260 bltu a4,a5,1c0021f4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:1111 + pxCurrentTCB = pxNewTCB; +1c002264 sw s0,0(s2) +1c002268 j 1c0021f4 +vTaskStartScheduler(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2009 + xReturn = xTaskCreate( prvIdleTask, +1c00226a lui a1,0x1c008 +1c00226e lui a0,0x1c002 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:1976 +{ +1c002272 addi sp,sp,-16 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2009 + xReturn = xTaskCreate( prvIdleTask, +1c002274 addi a5,gp,-652 # 1c009150 +1c002278 li a4,0 +1c00227a li a3,0 +1c00227c li a2,400 +1c002280 addi a1,a1,1360 # 1c008550 <__func__.9+0x184> +1c002284 addi a0,a0,758 # 1c0022f6 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:1976 +{ +1c002288 sw s0,8(sp) +1c00228a sw ra,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2020 + if( xReturn == pdPASS ) +1c00228c li s0,1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2009 + xReturn = xTaskCreate( prvIdleTask, +1c00228e jal 1c00204a +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2020 + if( xReturn == pdPASS ) +1c002290 bne a0,s0,1c0022c6 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2022 + xReturn = xTimerCreateTimerTask(); +1c002294 jal 1c0025c0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2031 + if( xReturn == pdPASS ) +1c002296 bne a0,s0,1c0022c6 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2047 + portDISABLE_INTERRUPTS(); +1c00229a csrci mstatus,8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2055 + _impure_ptr = &( pxCurrentTCB->xNewLib_reent ); +1c00229e lw a5,-684(gp) # 1c009130 +1c0022a2 lui a4,0x1c009 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2096 +} +1c0022a6 lw s0,8(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2055 + _impure_ptr = &( pxCurrentTCB->xNewLib_reent ); +1c0022a8 addi a5,a5,88 +1c0022ac sw a5,-956(a4) # 1c008c44 <_impure_ptr> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2059 + xNextTaskUnblockTime = portMAX_DELAY; +1c0022b0 li a4,-1 +1c0022b2 sw a4,-648(gp) # 1c009154 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2060 + xSchedulerRunning = pdTRUE; +1c0022b6 sw a0,-636(gp) # 1c009160 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2096 +} +1c0022ba lw ra,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2061 + xTickCount = ( TickType_t ) configINITIAL_TICK_COUNT; +1c0022bc sw zero,-632(gp) # 1c009164 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2096 +} +1c0022c0 addi sp,sp,16 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2075 + if( xPortStartScheduler() != pdFALSE ) +1c0022c2 j 1c00291a +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2090 + configASSERT( xReturn != errCOULD_NOT_ALLOCATE_REQUIRED_MEMORY ); +1c0022c6 li a5,-1 +1c0022c8 bne a0,a5,1c0022ee +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2090 (discriminator 1) +1c0022cc lui a3,0x1c008 +1c0022d0 lui a2,0x1c008 +1c0022d4 lui a1,0x1 +1c0022d6 lui a0,0x1c008 +1c0022da addi a3,a3,1368 # 1c008558 <__func__.9+0x18c> +1c0022de addi a2,a2,1520 # 1c0085f0 <__func__.19> +1c0022e2 addi a1,a1,-2006 # 0000082a <__stack_size+0x2a> +1c0022e6 addi a0,a0,1000 # 1c0083e8 <__func__.9+0x1c> +1c0022ea jal ra,1c0037c8 <__assert_func> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2096 +} +1c0022ee lw ra,12(sp) +1c0022f0 lw s0,8(sp) +1c0022f2 addi sp,sp,16 +1c0022f4 ret +prvIdleTask(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3393 +{ +1c0022f6 addi sp,sp,-32 +1c0022f8 sw s1,20(sp) +1c0022fa sw s3,12(sp) +1c0022fc sw s4,8(sp) +1c0022fe sw ra,28(sp) +1c002300 sw s0,24(sp) +1c002302 sw s2,16(sp) +prvCheckTasksWaitingTermination(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3654 + pxTCB = listGET_OWNER_OF_HEAD_ENTRY( ( &xTasksWaitingTermination ) ); /*lint !e9079 void * is used as this macro is used with timers and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ +1c002304 addi s1,gp,-1696 # 1c008d3c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3650 + while( uxDeletedTasksWaitingCleanUp > ( UBaseType_t ) 0U ) +1c002308 addi s2,gp,-668 # 1c009140 +1c00230c lw a5,0(s2) +1c002310 beqz a5,1c002308 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3652 + taskENTER_CRITICAL(); +1c002312 jal 1c00200c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3654 + pxTCB = listGET_OWNER_OF_HEAD_ENTRY( ( &xTasksWaitingTermination ) ); /*lint !e9079 void * is used as this macro is used with timers and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ +1c002314 lw a5,12(s1) +1c002316 lw s0,12(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3655 + ( void ) uxListRemove( &( pxTCB->xStateListItem ) ); +1c002318 addi a0,s0,4 +1c00231c jal ra,1c000f26 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3656 + --uxCurrentNumberOfTasks; +1c002320 addi a4,gp,-672 # 1c00913c +1c002324 lw a5,0(a4) +1c002326 addi a5,a5,-1 +1c002328 sw a5,0(a4) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3657 + --uxDeletedTasksWaitingCleanUp; +1c00232a lw a5,0(s2) +1c00232e addi a5,a5,-1 +1c002330 sw a5,0(s2) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3659 + taskEXIT_CRITICAL(); +1c002334 jal 1c002026 +prvDeleteTCB(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3900 + _reclaim_reent( &( pxTCB->xNewLib_reent ) ); +1c002336 addi a0,s0,88 +1c00233a jal ra,1c003f02 <_reclaim_reent> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3908 + vPortFree( pxTCB->pxStack ); +1c00233e lw a0,48(s0) +1c002340 jal ra,1c002992 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3909 + vPortFree( pxTCB ); +1c002344 mv a0,s0 +1c002346 jal ra,1c002992 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3938 + } +1c00234a j 1c002308 +xTaskResumeAll(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2195 +{ +1c00234c addi sp,sp,-64 +1c00234e sw s0,56(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2201 + configASSERT( uxSchedulerSuspended ); +1c002350 addi s0,gp,-664 # 1c009144 +1c002354 lw a5,0(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2195 +{ +1c002356 sw ra,60(sp) +1c002358 sw s1,52(sp) +1c00235a sw s2,48(sp) +1c00235c sw s3,44(sp) +1c00235e sw s4,40(sp) +1c002360 sw s5,36(sp) +1c002362 sw s6,32(sp) +1c002364 sw s7,28(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2201 + configASSERT( uxSchedulerSuspended ); +1c002366 bnez a5,1c00238a +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2201 (discriminator 1) +1c002368 lui a3,0x1c008 +1c00236c lui a2,0x1c008 +1c002370 lui a1,0x1 +1c002372 lui a0,0x1c008 +1c002376 addi a3,a3,1388 # 1c00856c <__func__.9+0x1a0> +1c00237a addi a2,a2,1504 # 1c0085e0 <__func__.18> +1c00237e addi a1,a1,-1895 # 00000899 <__stack_size+0x99> +1c002382 addi a0,a0,1000 # 1c0083e8 <__func__.9+0x1c> +1c002386 jal ra,1c0037c8 <__assert_func> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2208 + taskENTER_CRITICAL(); +1c00238a jal ra,1c00200c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2210 + --uxSchedulerSuspended; +1c00238e lw a5,0(s0) +1c002390 addi a5,a5,-1 +1c002392 sw a5,0(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2212 + if( uxSchedulerSuspended == ( UBaseType_t ) pdFALSE ) +1c002394 lw a5,0(s0) +1c002396 beqz a5,1c0023b8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2197 +BaseType_t xAlreadyYielded = pdFALSE; +1c002398 li a0,0 +1c00239a sw a0,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2298 + taskEXIT_CRITICAL(); +1c00239c jal ra,1c002026 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2301 +} +1c0023a0 lw ra,60(sp) +1c0023a2 lw s0,56(sp) +1c0023a4 lw a0,12(sp) +1c0023a6 lw s1,52(sp) +1c0023a8 lw s2,48(sp) +1c0023aa lw s3,44(sp) +1c0023ac lw s4,40(sp) +1c0023ae lw s5,36(sp) +1c0023b0 lw s6,32(sp) +1c0023b2 lw s7,28(sp) +1c0023b4 addi sp,sp,64 +1c0023b6 ret +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2214 + if( uxCurrentNumberOfTasks > ( UBaseType_t ) 0U ) +1c0023b8 lw a5,-672(gp) # 1c00913c +1c0023bc beqz a5,1c002398 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2223 + prvAddTaskToReadyList( pxTCB ); +1c0023be lui s2,0x1c009 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2196 +TCB_t *pxTCB = NULL; +1c0023c2 li s0,0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2218 + while( listLIST_IS_EMPTY( &xPendingReadyList ) == pdFALSE ) +1c0023c4 addi s1,gp,-1736 # 1c008d14 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2223 + prvAddTaskToReadyList( pxTCB ); +1c0023c8 li s3,1 +1c0023ca addi s2,s2,-888 # 1c008c88 +1c0023ce li s5,20 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2229 + xYieldPending = pdTRUE; +1c0023d0 j 1c00241c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2220 + pxTCB = listGET_OWNER_OF_HEAD_ENTRY( ( &xPendingReadyList ) ); /*lint !e9079 void * is used as this macro is used with timers and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ +1c0023d2 lw a5,12(s1) +1c0023d4 lw s0,12(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2221 + ( void ) uxListRemove( &( pxTCB->xEventListItem ) ); +1c0023d6 addi a0,s0,24 +1c0023da jal ra,1c000f26 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2222 + ( void ) uxListRemove( &( pxTCB->xStateListItem ) ); +1c0023de addi a1,s0,4 +1c0023e2 mv a0,a1 +1c0023e4 sw a1,12(sp) +1c0023e6 jal ra,1c000f26 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2223 + prvAddTaskToReadyList( pxTCB ); +1c0023ea lw a0,44(s0) +1c0023ec addi a4,gp,-656 # 1c00914c +1c0023f0 lw a3,0(a4) +1c0023f2 sll a5,s3,a0 +1c0023f6 mul a0,a0,s5 +1c0023fa lw a1,12(sp) +1c0023fc or a5,a5,a3 +1c0023fe sw a5,0(a4) +1c002400 add a0,a0,s2 +1c002402 jal ra,1c000ee0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2227 + if( pxTCB->uxPriority >= pxCurrentTCB->uxPriority ) +1c002406 addi a5,gp,-684 # 1c009130 +1c00240a lw a5,0(a5) +1c00240c lw a4,44(s0) +1c00240e lw a5,44(a5) +1c002410 bltu a4,a5,1c00241c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2229 + xYieldPending = pdTRUE; +1c002414 addi a5,gp,-628 # 1c009168 +1c002418 sw s3,0(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2218 + while( listLIST_IS_EMPTY( &xPendingReadyList ) == pdFALSE ) +1c00241c lw a5,0(s1) +1c00241e bnez a5,1c0023d2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2237 + if( pxTCB != NULL ) +1c002420 beqz s0,1c002426 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2245 + prvResetNextTaskUnblockTime(); +1c002422 jal ra,1c0019f8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2253 + TickType_t xPendedCounts = xPendedTicks; /* Non-volatile copy. */ +1c002426 addi a4,gp,-640 # 1c00915c +1c00242a lw s1,0(a4) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2255 + if( xPendedCounts > ( TickType_t ) 0U ) +1c00242c addi s0,gp,-640 # 1c00915c +1c002430 beqz s1,1c00244a +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2261 + xYieldPending = pdTRUE; +1c002432 li s3,1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2259 + if( xTaskIncrementTick() != pdFALSE ) +1c002434 jal ra,1c001a28 +1c002438 beqz a0,1c002442 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2261 + xYieldPending = pdTRUE; +1c00243a addi a5,gp,-628 # 1c009168 +1c00243e sw s3,0(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2267 + --xPendedCounts; +1c002442 addi s1,s1,-1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2268 + } while( xPendedCounts > ( TickType_t ) 0U ); +1c002444 bnez s1,1c002434 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2270 + xPendedTicks = 0; +1c002446 sw zero,0(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2278 + if( xYieldPending != pdFALSE ) +1c00244a lw a5,-628(gp) # 1c009168 +1c00244e beqz a5,1c002398 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2285 + taskYIELD_IF_USING_PREEMPTION(); +1c002450 ecall +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2282 + xAlreadyYielded = pdTRUE; +1c002454 li a0,1 +1c002456 j 1c00239a +xTaskCheckForTimeOut(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3275 +{ +1c002458 addi sp,sp,-32 +1c00245a sw ra,28(sp) +1c00245c sw s0,24(sp) +1c00245e sw s1,20(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3278 + configASSERT( pxTimeOut ); +1c002460 bnez a0,1c002484 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3278 (discriminator 1) +1c002462 lui a3,0x1c008 +1c002466 lui a2,0x1c008 +1c00246a lui a1,0x1 +1c00246c addi a3,a3,1412 # 1c008584 <__func__.9+0x1b8> +1c002470 addi a2,a2,1600 # 1c008640 <__func__.5> +1c002474 addi a1,a1,-818 # 00000cce <__stack_size+0x4ce> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3279 (discriminator 1) + configASSERT( pxTicksToWait ); +1c002478 lui a0,0x1c008 +1c00247c addi a0,a0,1000 # 1c0083e8 <__func__.9+0x1c> +1c002480 jal ra,1c0037c8 <__assert_func> +1c002484 mv s0,a1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3279 +1c002486 bnez a1,1c0024a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3279 (discriminator 1) +1c002488 lui a3,0x1c008 +1c00248c lui a2,0x1c008 +1c002490 lui a1,0x1 +1c002492 addi a3,a3,1424 # 1c008590 <__func__.9+0x1c4> +1c002496 addi a2,a2,1600 # 1c008640 <__func__.5> +1c00249a addi a1,a1,-817 # 00000ccf <__stack_size+0x4cf> +1c00249e j 1c002478 +1c0024a0 mv s1,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3281 + taskENTER_CRITICAL(); +1c0024a2 jal ra,1c00200c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3288 + if( pxCurrentTCB->ucDelayAborted != ( uint8_t ) pdFALSE ) +1c0024a6 addi a4,gp,-684 # 1c009130 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3284 + const TickType_t xConstTickCount = xTickCount; +1c0024aa lw a3,-632(gp) # 1c009164 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3288 + if( pxCurrentTCB->ucDelayAborted != ( uint8_t ) pdFALSE ) +1c0024ae lw a5,0(a4) +1c0024b0 lbu a5,1157(a5) +1c0024b4 beqz a5,1c0024c0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3292 + pxCurrentTCB->ucDelayAborted = pdFALSE; +1c0024b6 lw a5,0(a4) +1c0024b8 sb zero,1157(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3328 + xReturn = pdTRUE; +1c0024bc li a0,1 +1c0024be j 1c0024f2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3299 + if( *pxTicksToWait == portMAX_DELAY ) +1c0024c0 lw a5,0(s0) +1c0024c2 li a4,-1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3304 + xReturn = pdFALSE; +1c0024c4 li a0,0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3299 + if( *pxTicksToWait == portMAX_DELAY ) +1c0024c6 beq a5,a4,1c0024f2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3309 + if( ( xNumOfOverflows != pxTimeOut->xOverflowCount ) && ( xConstTickCount >= pxTimeOut->xTimeOnEntering ) ) /*lint !e525 Indentation preferred as is to make code within pre-processor directives clearer. */ +1c0024ca lw a2,-644(gp) # 1c009158 +1c0024ce lw a1,0(s1) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3285 + const TickType_t xElapsedTime = xConstTickCount - pxTimeOut->xTimeOnEntering; +1c0024d0 lw a4,4(s1) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3309 + if( ( xNumOfOverflows != pxTimeOut->xOverflowCount ) && ( xConstTickCount >= pxTimeOut->xTimeOnEntering ) ) /*lint !e525 Indentation preferred as is to make code within pre-processor directives clearer. */ +1c0024d2 beq a1,a2,1c0024dc +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3316 (discriminator 1) + xReturn = pdTRUE; +1c0024d6 li a0,1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3309 (discriminator 1) + if( ( xNumOfOverflows != pxTimeOut->xOverflowCount ) && ( xConstTickCount >= pxTimeOut->xTimeOnEntering ) ) /*lint !e525 Indentation preferred as is to make code within pre-processor directives clearer. */ +1c0024d8 bgeu a3,a4,1c0024f2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3285 + const TickType_t xElapsedTime = xConstTickCount - pxTimeOut->xTimeOnEntering; +1c0024dc sub a2,a3,a4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3318 + else if( xElapsedTime < *pxTicksToWait ) /*lint !e961 Explicit casting is only redundant with some compilers, whereas others require it to prevent integer conversion errors. */ +1c0024e0 bgeu a2,a5,1c002504 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3321 + *pxTicksToWait -= xElapsedTime; +1c0024e4 sub a5,a5,a3 +1c0024e6 add a5,a5,a4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3322 + vTaskInternalSetTimeOutState( pxTimeOut ); +1c0024e8 mv a0,s1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3321 + *pxTicksToWait -= xElapsedTime; +1c0024ea sw a5,0(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3322 + vTaskInternalSetTimeOutState( pxTimeOut ); +1c0024ec jal ra,1c001d6e +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3323 + xReturn = pdFALSE; +1c0024f0 li a0,0 +1c0024f2 sw a0,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3331 + taskEXIT_CRITICAL(); +1c0024f4 jal ra,1c002026 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3334 +} +1c0024f8 lw ra,28(sp) +1c0024fa lw s0,24(sp) +1c0024fc lw a0,12(sp) +1c0024fe lw s1,20(sp) +1c002500 addi sp,sp,32 +1c002502 ret +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3327 + *pxTicksToWait = 0; +1c002504 sw zero,0(s0) +1c002508 j 1c0024bc +pvTaskIncrementMutexHeldCount(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4622 + if( pxCurrentTCB != NULL ) +1c00250a addi a4,gp,-684 # 1c009130 +1c00250e lw a4,0(a4) +1c002510 addi a5,gp,-684 # 1c009130 +1c002514 beqz a4,1c00251e +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4624 + ( pxCurrentTCB->uxMutexesHeld )++; +1c002516 lw a3,0(a5) +1c002518 lw a4,84(a3) +1c00251a addi a4,a4,1 +1c00251c sw a4,84(a3) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4627 + return pxCurrentTCB; +1c00251e lw a0,0(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4628 + } +1c002520 ret +prvCheckForValidListAndQueue(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:942 + pxOverflowTimerList = pxTemp; +} +/*-----------------------------------------------------------*/ + +static void prvCheckForValidListAndQueue( void ) +{ +1c002522 addi sp,sp,-16 +1c002524 sw s0,8(sp) +1c002526 sw ra,12(sp) +1c002528 sw s1,4(sp) +1c00252a sw s2,0(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:948 + /* Check that the list from which active timers are referenced, and the + queue used to communicate with the timer service, have been + initialised. */ + taskENTER_CRITICAL(); + { + if( xTimerQueue == NULL ) +1c00252c addi s0,gp,-612 # 1c009178 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:946 + taskENTER_CRITICAL(); +1c002530 jal ra,1c00200c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:948 + if( xTimerQueue == NULL ) +1c002534 lw a5,0(s0) +1c002536 bnez a5,1c002572 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:950 + { + vListInitialise( &xActiveTimerList1 ); +1c002538 addi s2,gp,-1676 # 1c008d50 +1c00253c addi a0,gp,-1676 # 1c008d50 +1c002540 jal ra,1c000ec6 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:951 + vListInitialise( &xActiveTimerList2 ); +1c002544 addi s1,gp,-1656 # 1c008d64 +1c002548 addi a0,gp,-1656 # 1c008d64 +1c00254c jal ra,1c000ec6 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:952 + pxCurrentTimerList = &xActiveTimerList1; +1c002550 sw s2,-624(gp) # 1c00916c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:966 + + xTimerQueue = xQueueCreateStatic( ( UBaseType_t ) configTIMER_QUEUE_LENGTH, ( UBaseType_t ) sizeof( DaemonTaskMessage_t ), &( ucStaticTimerQueueStorage[ 0 ] ), &xStaticTimerQueue ); + } + #else + { + xTimerQueue = xQueueCreate( ( UBaseType_t ) configTIMER_QUEUE_LENGTH, sizeof( DaemonTaskMessage_t ) ); +1c002554 li a2,0 +1c002556 li a1,16 +1c002558 li a0,4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:953 + pxOverflowTimerList = &xActiveTimerList2; +1c00255a sw s1,-620(gp) # 1c009170 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:966 + xTimerQueue = xQueueCreate( ( UBaseType_t ) configTIMER_QUEUE_LENGTH, sizeof( DaemonTaskMessage_t ) ); +1c00255e jal ra,1c001114 +1c002562 sw a0,0(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:972 + } + #endif + + #if ( configQUEUE_REGISTRY_SIZE > 0 ) + { + if( xTimerQueue != NULL ) +1c002564 beqz a0,1c002572 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:974 + { + vQueueAddToRegistry( xTimerQueue, "TmrQ" ); +1c002566 lui a1,0x1c008 +1c00256a addi a1,a1,1684 # 1c008694 <__func__.9+0x20> +1c00256e jal ra,1c00185e +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:989 + { + mtCOVERAGE_TEST_MARKER(); + } + } + taskEXIT_CRITICAL(); +} +1c002572 lw s0,8(sp) +1c002574 lw ra,12(sp) +1c002576 lw s1,4(sp) +1c002578 lw s2,0(sp) +1c00257a addi sp,sp,16 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:988 + taskEXIT_CRITICAL(); +1c00257c j 1c002026 +prvInsertTimerInActiveList(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:694 +{ +1c002580 addi sp,sp,-16 +1c002582 sw ra,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:697 + listSET_LIST_ITEM_VALUE( &( pxTimer->xTimerListItem ), xNextExpiryTime ); +1c002584 sw a1,4(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:698 + listSET_LIST_ITEM_OWNER( &( pxTimer->xTimerListItem ), pxTimer ); +1c002586 sw a0,16(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:694 +{ +1c002588 mv a5,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:700 + if( xNextExpiryTime <= xTimeNow ) +1c00258a bltu a2,a1,1c0025ac +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:704 + if( ( ( TickType_t ) ( xTimeNow - xCommandTime ) ) >= pxTimer->xTimerPeriodInTicks ) /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ +1c00258e lw a4,24(a0) +1c002590 sub a2,a2,a3 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:708 + xProcessTimerNow = pdTRUE; +1c002592 li a0,1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:704 + if( ( ( TickType_t ) ( xTimeNow - xCommandTime ) ) >= pxTimer->xTimerPeriodInTicks ) /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ +1c002594 bgeu a2,a4,1c0025a6 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:712 + vListInsert( pxOverflowTimerList, &( pxTimer->xTimerListItem ) ); +1c002598 addi a1,a5,4 +1c00259c lw a0,-620(gp) # 1c009170 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:726 + vListInsert( pxCurrentTimerList, &( pxTimer->xTimerListItem ) ); +1c0025a0 jal ra,1c000ef8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:695 +BaseType_t xProcessTimerNow = pdFALSE; +1c0025a4 li a0,0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:731 +} +1c0025a6 lw ra,12(sp) +1c0025a8 addi sp,sp,16 +1c0025aa ret +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:717 + if( ( xTimeNow < xCommandTime ) && ( xNextExpiryTime >= xCommandTime ) ) +1c0025ac bgeu a2,a3,1c0025b6 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:708 (discriminator 1) + xProcessTimerNow = pdTRUE; +1c0025b0 li a0,1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:717 (discriminator 1) + if( ( xTimeNow < xCommandTime ) && ( xNextExpiryTime >= xCommandTime ) ) +1c0025b2 bgeu a1,a3,1c0025a6 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:726 + vListInsert( pxCurrentTimerList, &( pxTimer->xTimerListItem ) ); +1c0025b6 addi a1,a5,4 +1c0025ba lw a0,-624(gp) # 1c00916c +1c0025be j 1c0025a0 +xTimerCreateTimerTask(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:228 +{ +1c0025c0 addi sp,sp,-16 +1c0025c2 sw ra,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:235 + prvCheckForValidListAndQueue(); +1c0025c4 jal 1c002522 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:237 + if( xTimerQueue != NULL ) +1c0025c6 lw a5,-612(gp) # 1c009178 +1c0025ca bnez a5,1c0025ec +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:275 + configASSERT( xReturn ); +1c0025cc lui a3,0x1c008 +1c0025d0 lui a2,0x1c008 +1c0025d4 lui a0,0x1c008 +1c0025d8 addi a3,a3,1692 # 1c00869c <__func__.9+0x28> +1c0025dc addi a2,a2,1968 # 1c0087b0 <__func__.16> +1c0025e0 li a1,275 +1c0025e4 addi a0,a0,1700 # 1c0086a4 <__func__.9+0x30> +1c0025e8 jal ra,1c0037c8 <__assert_func> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:261 + xReturn = xTaskCreate( prvTimerTask, +1c0025ec lui a1,0x1c008 +1c0025f0 lui a0,0x1c002 +1c0025f4 addi a5,gp,-608 # 1c00917c +1c0025f8 li a4,4 +1c0025fa li a3,0 +1c0025fc li a2,400 +1c002600 addi a1,a1,1768 # 1c0086e8 <__func__.9+0x74> +1c002604 addi a0,a0,1876 # 1c002754 +1c002608 jal ra,1c00204a +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:275 + configASSERT( xReturn ); +1c00260c beqz a0,1c0025cc +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:277 +} +1c00260e lw ra,12(sp) +1c002610 addi sp,sp,16 +1c002612 ret +xTimerGenericCommand(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:382 +{ +1c002614 addi sp,sp,-32 +1c002616 sw ra,28(sp) +1c002618 sw s0,24(sp) +1c00261a sw s1,20(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:386 + configASSERT( xTimer ); +1c00261c bnez a0,1c00263e +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:386 (discriminator 1) +1c00261e lui a3,0x1c008 +1c002622 lui a2,0x1c008 +1c002626 lui a0,0x1c008 +1c00262a addi a3,a3,1776 # 1c0086f0 <__func__.9+0x7c> +1c00262e addi a2,a2,1872 # 1c008750 <__func__.10> +1c002632 li a1,386 +1c002636 addi a0,a0,1700 # 1c0086a4 <__func__.9+0x30> +1c00263a jal ra,1c0037c8 <__assert_func> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:390 + if( xTimerQueue != NULL ) +1c00263e addi s0,gp,-612 # 1c009178 +1c002642 mv s1,a4 +1c002644 lw a4,0(s0) +1c002646 mv a5,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:383 +BaseType_t xReturn = pdFAIL; +1c002648 li a0,0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:390 + if( xTimerQueue != NULL ) +1c00264a beqz a4,1c002672 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:395 + xMessage.u.xTimerParameters.pxTimer = xTimer; +1c00264c sw a5,8(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:393 + xMessage.xMessageID = xCommandID; +1c00264e sw a1,0(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:394 + xMessage.u.xTimerParameters.xMessageValue = xOptionalValue; +1c002650 sw a2,4(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:397 + if( xCommandID < tmrFIRST_FROM_ISR_COMMAND ) +1c002652 li a5,5 +1c002654 blt a5,a1,1c00267c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:399 + if( xTaskGetSchedulerState() == taskSCHEDULER_RUNNING ) +1c002658 jal ra,1c001d84 +1c00265c mv a4,a0 +1c00265e li a5,2 +1c002660 lw a0,0(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:401 + xReturn = xQueueSendToBack( xTimerQueue, &xMessage, xTicksToWait ); +1c002662 li a3,0 +1c002664 mv a2,s1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:399 + if( xTaskGetSchedulerState() == taskSCHEDULER_RUNNING ) +1c002666 beq a4,a5,1c00266c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:405 + xReturn = xQueueSendToBack( xTimerQueue, &xMessage, tmrNO_DELAY ); +1c00266a li a2,0 +1c00266c mv a1,sp +1c00266e jal ra,1c0011d8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:421 +} +1c002672 lw ra,28(sp) +1c002674 lw s0,24(sp) +1c002676 lw s1,20(sp) +1c002678 addi sp,sp,32 +1c00267a ret +1c00267c mv a6,a3 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:410 + xReturn = xQueueSendToBackFromISR( xTimerQueue, &xMessage, pxHigherPriorityTaskWoken ); +1c00267e mv a2,a6 +1c002680 li a3,0 +1c002682 mv a1,sp +1c002684 mv a0,a4 +1c002686 jal ra,1c001356 +1c00268a j 1c002672 +prvSampleTimeNow(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:671 +{ +1c00268c addi sp,sp,-48 +1c00268e sw s1,36(sp) +1c002690 sw s2,32(sp) +1c002692 sw s3,28(sp) +1c002694 sw ra,44(sp) +1c002696 sw s0,40(sp) +1c002698 sw s4,24(sp) +1c00269a sw s5,20(sp) +1c00269c mv s3,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:675 + xTimeNow = xTaskGetTickCount(); +1c00269e jal ra,1c001a22 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:677 + if( xTimeNow < xLastTime ) +1c0026a2 lw a5,-616(gp) # 1c009174 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:675 + xTimeNow = xTaskGetTickCount(); +1c0026a6 mv s1,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:677 + if( xTimeNow < xLastTime ) +1c0026a8 addi s2,gp,-616 # 1c009174 +1c0026ac bgeu a0,a5,1c00274e +prvSwitchTimerLists(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:893 + while( listLIST_IS_EMPTY( pxCurrentTimerList ) == pdFALSE ) +1c0026b0 addi s4,gp,-624 # 1c00916c +1c0026b4 lw a4,0(s4) +1c0026b8 lw a5,0(a4) +1c0026ba bnez a5,1c0026e6 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:936 + pxCurrentTimerList = pxOverflowTimerList; +1c0026bc addi a5,gp,-620 # 1c009170 +1c0026c0 lw a3,0(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:937 + pxOverflowTimerList = pxTemp; +1c0026c2 sw a4,0(a5) +prvSampleTimeNow(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:680 + *pxTimerListsWereSwitched = pdTRUE; +1c0026c4 li a5,1 +prvSwitchTimerLists(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:936 + pxCurrentTimerList = pxOverflowTimerList; +1c0026c6 sw a3,0(s4) +prvSampleTimeNow(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:680 + *pxTimerListsWereSwitched = pdTRUE; +1c0026ca sw a5,0(s3) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:690 +} +1c0026ce lw ra,44(sp) +1c0026d0 lw s0,40(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:687 + xLastTime = xTimeNow; +1c0026d2 sw s1,0(s2) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:690 +} +1c0026d6 lw s3,28(sp) +1c0026d8 lw s2,32(sp) +1c0026da lw s4,24(sp) +1c0026dc lw s5,20(sp) +1c0026de mv a0,s1 +1c0026e0 lw s1,36(sp) +1c0026e2 addi sp,sp,48 +1c0026e4 ret +prvSwitchTimerLists(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:895 + xNextExpireTime = listGET_ITEM_VALUE_OF_HEAD_ENTRY( pxCurrentTimerList ); +1c0026e6 lw a5,12(a4) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:898 + pxTimer = ( Timer_t * ) listGET_OWNER_OF_HEAD_ENTRY( pxCurrentTimerList ); /*lint !e9087 !e9079 void * is used as this macro is used with tasks and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ +1c0026e8 lw s0,12(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:895 + xNextExpireTime = listGET_ITEM_VALUE_OF_HEAD_ENTRY( pxCurrentTimerList ); +1c0026ea lw a2,0(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:899 + ( void ) uxListRemove( &( pxTimer->xTimerListItem ) ); +1c0026ec addi a1,s0,4 +1c0026f0 mv a0,a1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:895 + xNextExpireTime = listGET_ITEM_VALUE_OF_HEAD_ENTRY( pxCurrentTimerList ); +1c0026f2 sw a2,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:899 + ( void ) uxListRemove( &( pxTimer->xTimerListItem ) ); +1c0026f4 sw a1,8(sp) +1c0026f6 jal ra,1c000f26 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:905 + pxTimer->pxCallbackFunction( ( TimerHandle_t ) pxTimer ); +1c0026fa lw a5,32(s0) +1c0026fc mv a0,s0 +1c0026fe jalr a5 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:907 + if( ( pxTimer->ucStatus & tmrSTATUS_IS_AUTORELOAD ) != 0 ) +1c002700 lbu a5,40(s0) +1c002704 lw a1,8(sp) +1c002706 lw a2,12(sp) +1c002708 andi a5,a5,4 +1c00270a beqz a5,1c0026b0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:915 + xReloadTime = ( xNextExpireTime + pxTimer->xTimerPeriodInTicks ); +1c00270c lw a5,24(s0) +1c00270e add a5,a5,a2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:916 + if( xReloadTime > xNextExpireTime ) +1c002710 bgeu a2,a5,1c002722 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:920 + vListInsert( pxCurrentTimerList, &( pxTimer->xTimerListItem ) ); +1c002714 lw a0,0(s4) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:918 + listSET_LIST_ITEM_VALUE( &( pxTimer->xTimerListItem ), xReloadTime ); +1c002718 sw a5,4(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:919 + listSET_LIST_ITEM_OWNER( &( pxTimer->xTimerListItem ), pxTimer ); +1c00271a sw s0,16(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:920 + vListInsert( pxCurrentTimerList, &( pxTimer->xTimerListItem ) ); +1c00271c jal ra,1c000ef8 +1c002720 j 1c0026b0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:924 + xResult = xTimerGenericCommand( pxTimer, tmrCOMMAND_START_DONT_TRACE, xNextExpireTime, NULL, tmrNO_DELAY ); +1c002722 li a4,0 +1c002724 li a3,0 +1c002726 li a1,0 +1c002728 mv a0,s0 +1c00272a jal 1c002614 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:925 + configASSERT( xResult ); +1c00272c bnez a0,1c0026b0 +1c00272e lui a3,0x1c008 +1c002732 lui a2,0x1c008 +1c002736 lui a0,0x1c008 +1c00273a addi a3,a3,1784 # 1c0086f8 <__func__.9+0x84> +1c00273e addi a2,a2,1948 # 1c00879c <__func__.14> +1c002742 li a1,925 +1c002746 addi a0,a0,1700 # 1c0086a4 <__func__.9+0x30> +1c00274a jal ra,1c0037c8 <__assert_func> +prvSampleTimeNow(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:684 + *pxTimerListsWereSwitched = pdFALSE; +1c00274e sw zero,0(s3) +1c002752 j 1c0026ce +prvTimerTask(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:549 +{ +1c002754 addi sp,sp,-80 +1c002756 sw s2,64(sp) +1c002758 lui s2,0x1c008 +1c00275c sw s3,60(sp) +1c00275e sw s5,52(sp) +1c002760 sw ra,76(sp) +1c002762 sw s0,72(sp) +1c002764 sw s1,68(sp) +1c002766 sw s4,56(sp) +1c002768 sw s6,48(sp) +1c00276a sw s7,44(sp) +prvGetNextExpireTime(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:655 + *pxListWasEmpty = listLIST_IS_EMPTY( pxCurrentTimerList ); +1c00276c addi s2,s2,1832 # 1c008728 <__func__.9+0xb4> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:655 (discriminator 1) +1c002770 lw a5,-624(gp) # 1c00916c +1c002774 addi s7,gp,-624 # 1c00916c +1c002778 li s0,1 +1c00277a lw s1,0(a5) +1c00277c beqz s1,1c002784 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:658 + xNextExpireTime = listGET_ITEM_VALUE_OF_HEAD_ENTRY( pxCurrentTimerList ); +1c00277e lw a5,12(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:655 + *pxListWasEmpty = listLIST_IS_EMPTY( pxCurrentTimerList ); +1c002780 li s0,0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:658 + xNextExpireTime = listGET_ITEM_VALUE_OF_HEAD_ENTRY( pxCurrentTimerList ); +1c002782 lw s1,0(a5) +prvProcessTimerOrBlockTask(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:589 + vTaskSuspendAll(); +1c002784 jal ra,1c001a16 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:596 + xTimeNow = prvSampleTimeNow( &xTimerListsWereSwitched ); +1c002788 addi a0,sp,16 +1c00278a jal 1c00268c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:597 + if( xTimerListsWereSwitched == pdFALSE ) +1c00278c lw a5,16(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:596 + xTimeNow = prvSampleTimeNow( &xTimerListsWereSwitched ); +1c00278e mv s6,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:597 + if( xTimerListsWereSwitched == pdFALSE ) +1c002790 addi s4,gp,-612 # 1c009178 +1c002794 bnez a5,1c00285a +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:600 + if( ( xListWasEmpty == pdFALSE ) && ( xNextExpireTime <= xTimeNow ) ) +1c002796 bnez s0,1c002836 +1c002798 bltu a0,s1,1c002840 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:602 + ( void ) xTaskResumeAll(); +1c00279c jal ra,1c00234c +prvProcessExpiredTimer(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:510 +Timer_t * const pxTimer = ( Timer_t * ) listGET_OWNER_OF_HEAD_ENTRY( pxCurrentTimerList ); /*lint !e9087 !e9079 void * is used as this macro is used with tasks and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ +1c0027a0 lw a5,0(s7) +1c0027a4 lw a5,12(a5) +1c0027a6 lw s0,12(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:514 + ( void ) uxListRemove( &( pxTimer->xTimerListItem ) ); +1c0027a8 addi a0,s0,4 +1c0027ac jal ra,1c000f26 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:519 + if( ( pxTimer->ucStatus & tmrSTATUS_IS_AUTORELOAD ) != 0 ) +1c0027b0 lbu a5,40(s0) +1c0027b4 andi a4,a5,4 +1c0027b8 beqz a4,1c0027f8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:524 + if( prvInsertTimerInActiveList( pxTimer, ( xNextExpireTime + pxTimer->xTimerPeriodInTicks ), xTimeNow, xNextExpireTime ) != pdFALSE ) +1c0027ba lw a1,24(s0) +1c0027bc mv a3,s1 +1c0027be mv a2,s6 +1c0027c0 add a1,a1,s1 +1c0027c2 mv a0,s0 +1c0027c4 jal ra,1c002580 +1c0027c8 beqz a0,1c0027fe +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:528 + xResult = xTimerGenericCommand( pxTimer, tmrCOMMAND_START_DONT_TRACE, xNextExpireTime, NULL, tmrNO_DELAY ); +1c0027ca li a4,0 +1c0027cc li a3,0 +1c0027ce mv a2,s1 +1c0027d0 li a1,0 +1c0027d2 mv a0,s0 +1c0027d4 jal 1c002614 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:529 + configASSERT( xResult ); +1c0027d6 bnez a0,1c0027fe +1c0027d8 lui a3,0x1c008 +1c0027dc lui a2,0x1c008 +1c0027e0 addi a3,a3,1784 # 1c0086f8 <__func__.9+0x84> +1c0027e4 addi a2,a2,1924 # 1c008784 <__func__.13> +1c0027e8 li a1,529 +prvProcessReceivedCommands(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:812 + configASSERT( xResult ); +1c0027ec lui a0,0x1c008 +1c0027f0 addi a0,a0,1700 # 1c0086a4 <__func__.9+0x30> +1c0027f4 jal ra,1c0037c8 <__assert_func> +prvProcessExpiredTimer(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:539 + pxTimer->ucStatus &= ~tmrSTATUS_IS_ACTIVE; +1c0027f8 andi a5,a5,-2 +1c0027fa sb a5,40(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:544 + pxTimer->pxCallbackFunction( ( TimerHandle_t ) pxTimer ); +1c0027fe lw a5,32(s0) +1c002800 mv a0,s0 +1c002802 jalr a5 +1c002804 li s1,9 +prvProcessReceivedCommands(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:741 + while( xQueueReceive( xTimerQueue, &xMessage, tmrNO_DELAY ) != pdFAIL ) /*lint !e603 xMessage does not have to be initialised as it is passed out, not in, and it is not used unless xQueueReceive() returns pdTRUE. */ +1c002806 lw a0,0(s4) +1c00280a li a2,0 +1c00280c addi a1,sp,16 +1c00280e jal ra,1c0014d4 +1c002812 beqz a0,1c002770 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:747 + if( xMessage.xMessageID < ( BaseType_t ) 0 ) +1c002814 lw a5,16(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:756 + pxCallback->pxCallbackFunction( pxCallback->pvParameter1, pxCallback->ulParameter2 ); +1c002816 lw a0,24(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:747 + if( xMessage.xMessageID < ( BaseType_t ) 0 ) +1c002818 bltz a5,1c002860 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:771 + pxTimer = xMessage.u.xTimerParameters.pxTimer; +1c00281c lw s0,24(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:773 + if( listIS_CONTAINED_WITHIN( NULL, &( pxTimer->xTimerListItem ) ) == pdFALSE ) /*lint !e961. The cast is only redundant when NULL is passed into the macro. */ +1c00281e lw a5,20(s0) +1c002820 bnez a5,1c00286e +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:791 + xTimeNow = prvSampleTimeNow( &xTimerListsWereSwitched ); +1c002822 addi a0,sp,12 +1c002824 jal 1c00268c +1c002826 lw a5,16(sp) +1c002828 mv a2,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:793 + switch( xMessage.xMessageID ) +1c00282a bltu s1,a5,1c002806 +1c00282e slli a5,a5,0x2 +1c002830 add a5,a5,s2 +1c002832 lw a5,0(a5) +1c002834 jr a5 +prvProcessTimerOrBlockTask(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:617 + xListWasEmpty = listLIST_IS_EMPTY( pxOverflowTimerList ); +1c002836 lw a5,-620(gp) # 1c009170 +1c00283a lw s0,0(a5) +1c00283c seqz s0,s0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:620 + vQueueWaitForMessageRestricted( xTimerQueue, ( xNextExpireTime - xTimeNow ), xListWasEmpty ); +1c002840 lw a0,0(s4) +1c002844 mv a2,s0 +1c002846 sub a1,s1,s6 +1c00284a jal ra,1c0018f0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:622 + if( xTaskResumeAll() == pdFALSE ) +1c00284e jal ra,1c00234c +1c002852 bnez a0,1c002804 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:628 + portYIELD_WITHIN_API(); +1c002854 ecall +1c002858 j 1c002804 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:638 + ( void ) xTaskResumeAll(); +1c00285a jal ra,1c00234c +1c00285e j 1c002804 +prvProcessReceivedCommands(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:756 + pxCallback->pxCallbackFunction( pxCallback->pvParameter1, pxCallback->ulParameter2 ); +1c002860 lw a5,20(sp) +1c002862 lw a1,28(sp) +1c002864 jalr a5 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:767 + if( xMessage.xMessageID >= ( BaseType_t ) 0 ) +1c002866 lw a5,16(sp) +1c002868 bltz a5,1c002806 +1c00286c j 1c00281c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:776 + ( void ) uxListRemove( &( pxTimer->xTimerListItem ) ); +1c00286e addi a0,s0,4 +1c002872 jal ra,1c000f26 +1c002876 j 1c002822 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:801 + pxTimer->ucStatus |= tmrSTATUS_IS_ACTIVE; +1c002878 lbu a5,40(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:802 + if( prvInsertTimerInActiveList( pxTimer, xMessage.u.xTimerParameters.xMessageValue + pxTimer->xTimerPeriodInTicks, xTimeNow, xMessage.u.xTimerParameters.xMessageValue ) != pdFALSE ) +1c00287c lw a1,24(s0) +1c00287e mv a0,s0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:801 + pxTimer->ucStatus |= tmrSTATUS_IS_ACTIVE; +1c002880 ori a5,a5,1 +1c002884 sb a5,40(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:802 + if( prvInsertTimerInActiveList( pxTimer, xMessage.u.xTimerParameters.xMessageValue + pxTimer->xTimerPeriodInTicks, xTimeNow, xMessage.u.xTimerParameters.xMessageValue ) != pdFALSE ) +1c002888 lw a3,20(sp) +1c00288a add a1,a1,a3 +1c00288c jal ra,1c002580 +1c002890 beqz a0,1c002806 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:806 + pxTimer->pxCallbackFunction( ( TimerHandle_t ) pxTimer ); +1c002892 lw a5,32(s0) +1c002894 mv a0,s0 +1c002896 jalr a5 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:809 + if( ( pxTimer->ucStatus & tmrSTATUS_IS_AUTORELOAD ) != 0 ) +1c002898 lbu a5,40(s0) +1c00289c andi a5,a5,4 +1c00289e beqz a5,1c002806 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:811 + xResult = xTimerGenericCommand( pxTimer, tmrCOMMAND_START_DONT_TRACE, xMessage.u.xTimerParameters.xMessageValue + pxTimer->xTimerPeriodInTicks, NULL, tmrNO_DELAY ); +1c0028a0 lw a5,24(s0) +1c0028a2 lw a2,20(sp) +1c0028a4 li a4,0 +1c0028a6 li a3,0 +1c0028a8 add a2,a2,a5 +1c0028aa li a1,0 +1c0028ac mv a0,s0 +1c0028ae jal ra,1c002614 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:812 + configASSERT( xResult ); +1c0028b2 bnez a0,1c002806 +1c0028b4 lui a3,0x1c008 +1c0028b8 lui a2,0x1c008 +1c0028bc addi a3,a3,1784 # 1c0086f8 <__func__.9+0x84> +1c0028c0 addi a2,a2,1896 # 1c008768 <__func__.12> +1c0028c4 li a1,812 +1c0028c8 j 1c0027ec +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:829 + pxTimer->ucStatus &= ~tmrSTATUS_IS_ACTIVE; +1c0028ca lbu a5,40(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:859 + pxTimer->ucStatus &= ~tmrSTATUS_IS_ACTIVE; +1c0028ce andi a5,a5,-2 +1c0028d0 sb a5,40(s0) +1c0028d4 j 1c002806 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:834 + pxTimer->ucStatus |= tmrSTATUS_IS_ACTIVE; +1c0028d6 lbu a5,40(s0) +1c0028da ori a5,a5,1 +1c0028de sb a5,40(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:835 + pxTimer->xTimerPeriodInTicks = xMessage.u.xTimerParameters.xMessageValue; +1c0028e2 lw a1,20(sp) +1c0028e4 sw a1,24(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:836 + configASSERT( ( pxTimer->xTimerPeriodInTicks > 0 ) ); +1c0028e6 bnez a1,1c0028fe +1c0028e8 lui a3,0x1c008 +1c0028ec lui a2,0x1c008 +1c0028f0 addi a3,a3,1792 # 1c008700 <__func__.9+0x8c> +1c0028f4 addi a2,a2,1896 # 1c008768 <__func__.12> +1c0028f8 li a1,836 +1c0028fc j 1c0027ec +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:844 + ( void ) prvInsertTimerInActiveList( pxTimer, ( xTimeNow + pxTimer->xTimerPeriodInTicks ), xTimeNow, xTimeNow ); +1c0028fe mv a3,a0 +1c002900 add a1,a1,a0 +1c002902 mv a0,s0 +1c002904 jal ra,1c002580 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:845 + break; +1c002908 j 1c002806 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:853 + if( ( pxTimer->ucStatus & tmrSTATUS_IS_STATICALLY_ALLOCATED ) == ( uint8_t ) 0 ) +1c00290a lbu a5,40(s0) +1c00290e andi a4,a5,2 +1c002912 bnez a4,1c0028ce +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:855 + vPortFree( pxTimer ); +1c002914 mv a0,s0 +1c002916 jal 1c002992 +1c002918 j 1c002806 +xPortStartScheduler(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/port.c:151 + +#endif /* ( configMTIME_BASE_ADDRESS != 0 ) && ( configMTIME_BASE_ADDRESS != 0 ) */ +/*-----------------------------------------------------------*/ + +BaseType_t xPortStartScheduler( void ) +{ +1c00291a addi sp,sp,-32 +1c00291c sw ra,28(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/port.c:156 +extern void xPortStartFirstTask( void ); + + #if( configASSERT_DEFINED == 1 ) + { + volatile uint32_t mtvec = 0; +1c00291e sw zero,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/port.c:160 + + /* Check the least significant two bits of mtvec are 00 - indicating + single vector mode. */ + __asm volatile( "csrr %0, mtvec" : "=r"( mtvec ) ); +1c002920 csrr a5,mtvec +1c002924 sw a5,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/port.c:169 + + + /* Check alignment of the interrupt stack - which is the same as the + stack that was being used by main() prior to the scheduler being + started. */ + configASSERT( ( xISRStackTop & portBYTE_ALIGNMENT_MASK ) == 0 ); +1c002926 lui a5,0x1c01a +1c00292a addi a5,a5,-1616 # 1c0199b0 <__cluster_text_end> +1c00292e andi a5,a5,15 +1c002930 beqz a5,1c002952 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/port.c:169 (discriminator 1) +1c002932 lui a3,0x1c008 +1c002936 lui a2,0x1c009 +1c00293a lui a0,0x1c008 +1c00293e addi a3,a3,1992 # 1c0087c8 <__func__.16+0x18> +1c002942 addi a2,a2,-1980 # 1c008844 <__func__.0> +1c002946 li a1,169 +1c00294a addi a0,a0,2028 # 1c0087ec <__func__.16+0x3c> +1c00294e jal ra,1c0037c8 <__assert_func> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/port.c:182 + #endif /* configASSERT_DEFINED */ + + /* If there is a CLINT then it is ok to use the default implementation + in this file, otherwise vPortSetupTimerInterrupt() must be implemented to + configure whichever clock is to be used to generate the tick interrupt. */ + vPortSetupTimerInterrupt(); +1c002952 jal 1c002aee +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/port.c:194 + __asm volatile( "csrs mie, %0" :: "r"(0x880) ); + } + #else + { + /* Enable external interrupts. */ + __asm volatile( "csrs mie, %0" :: "r"(0x800) ); +1c002954 lui a5,0x1 +1c002956 addi a5,a5,-2048 # 00000800 <__stack_size> +1c00295a csrs mie,a5 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/port.c:198 + } + #endif /* ( configMTIME_BASE_ADDRESS != 0 ) && ( configMTIMECMP_BASE_ADDRESS != 0 ) */ + + xPortStartFirstTask(); +1c00295e jal ra,1c000d00 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/port.c:203 + + /* Should not get here as after calling xPortStartFirstTask() only tasks + should be executing. */ + return pdFAIL; +} +1c002962 lw ra,28(sp) +1c002964 li a0,0 +1c002966 addi sp,sp,32 +1c002968 ret +pvPortMalloc(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/MemMang/heap_3.c:59 +#endif + +/*-----------------------------------------------------------*/ + +void *pvPortMalloc( size_t xWantedSize ) +{ +1c00296a addi sp,sp,-32 +1c00296c sw ra,28(sp) +1c00296e sw s0,24(sp) +1c002970 sw a0,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/MemMang/heap_3.c:62 +void *pvReturn; + + vTaskSuspendAll(); +1c002972 jal ra,1c001a16 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/MemMang/heap_3.c:64 + { + pvReturn = malloc( xWantedSize ); +1c002976 lw a0,12(sp) +1c002978 jal ra,1c003908 +1c00297c mv s0,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/MemMang/heap_3.c:67 + traceMALLOC( pvReturn, xWantedSize ); + } + ( void ) xTaskResumeAll(); +1c00297e jal ra,1c00234c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/MemMang/heap_3.c:71 + + #if( configUSE_MALLOC_FAILED_HOOK == 1 ) + { + if( pvReturn == NULL ) +1c002982 bnez s0,1c002988 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/MemMang/heap_3.c:74 + { + extern void vApplicationMallocFailedHook( void ); + vApplicationMallocFailedHook(); +1c002984 jal ra,1c003184 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/MemMang/heap_3.c:80 + } + } + #endif + + return pvReturn; +} +1c002988 lw ra,28(sp) +1c00298a mv a0,s0 +1c00298c lw s0,24(sp) +1c00298e addi sp,sp,32 +1c002990 ret +vPortFree(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/MemMang/heap_3.c:84 +/*-----------------------------------------------------------*/ + +void vPortFree( void *pv ) +{ +1c002992 addi sp,sp,-32 +1c002994 sw ra,28(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/MemMang/heap_3.c:85 + if( pv ) +1c002996 sw a0,12(sp) +1c002998 beqz a0,1c0029ac +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/MemMang/heap_3.c:87 + { + vTaskSuspendAll(); +1c00299a jal ra,1c001a16 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/MemMang/heap_3.c:89 + { + free( pv ); +1c00299e lw a0,12(sp) +1c0029a0 jal ra,1c003914 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/MemMang/heap_3.c:94 + traceFREE( pv, 0 ); + } + ( void ) xTaskResumeAll(); + } +} +1c0029a4 lw ra,28(sp) +1c0029a6 addi sp,sp,32 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/MemMang/heap_3.c:92 + ( void ) xTaskResumeAll(); +1c0029a8 j 1c00234c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/MemMang/heap_3.c:94 +} +1c0029ac lw ra,28(sp) +1c0029ae addi sp,sp,32 +1c0029b0 ret +_close(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:134 +} + +int _close(int file) +{ + return -1; +} +1c0029b2 <_close> li a0,-1 +1c0029b4 <_close+0x2> ret +_exit(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:155 + /* there is no way to check when the udma output fifo is empty so we + * just wait a few cycles */ + for (volatile int i = 0; i < 1024 * 3; i++) + ; +#endif + writew(exit_status | (1 << APB_SOC_STATUS_EOC_BIT), +1c0029b6 <_exit> lui a5,0x80000 +1c0029ba <_exit+0x4> or a0,a0,a5 +writew(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/arch/io.h:45 + : "r"(val), "r"((volatile uint16_t *)addr)); +} + +static inline void writew(uint32_t val, uintptr_t addr) +{ + asm volatile("sw %0, 0(%1)" +1c0029bc <_exit+0x6> lui a5,0x1a104 +1c0029c0 <_exit+0xa> addi a5,a5,160 # 1a1040a0 <__heap_l1_cluster_start+0xa104080> +1c0029c4 <_exit+0xe> sw a0,0(a5) +_exit(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:158 (discriminator 1) + (uintptr_t)(PULP_APB_SOC_CTRL_ADDR + APB_SOC_CORESTATUS_OFFSET)); + for (;;) + asm volatile("wfi"); +1c0029c6 <_exit+0x10> wfi +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:157 (discriminator 1) + for (;;) +1c0029ca <_exit+0x14> j 1c0029c6 <_exit+0x10> +_fstat(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:175 + return -1; +} + +int _fstat(int file, struct stat *st) +{ + st->st_mode = S_IFCHR; +1c0029cc <_fstat> lui a5,0x2 +1c0029ce <_fstat+0x2> sw a5,4(a1) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:179 + return 0; + // errno = -ENOSYS; + // return -1; +} +1c0029d0 <_fstat+0x4> li a0,0 +1c0029d2 <_fstat+0x6> ret +_getpid(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:202 +} + +int _getpid() +{ + return 1; +} +1c0029d4 <_getpid> li a0,1 +1c0029d6 <_getpid+0x2> ret +_isatty(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:212 + return -1; +} + +int _isatty(int file) +{ + return (file == STDOUT_FILENO); +1c0029d8 <_isatty> addi a0,a0,-1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:213 +} +1c0029da <_isatty+0x2> seqz a0,a0 +1c0029de <_isatty+0x6> ret +_kill(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:217 + +int _kill(int pid, int sig) +{ + errno = EINVAL; +1c0029e0 <_kill> li a4,22 +1c0029e2 <_kill+0x2> sw a4,-576(gp) # 1c00919c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:219 + return -1; +} +1c0029e6 <_kill+0x6> li a0,-1 +1c0029e8 <_kill+0x8> ret +_lseek(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:230 +} + +off_t _lseek(int file, off_t ptr, int dir) +{ + return 0; +} +1c0029ea <_lseek> li a0,0 +1c0029ec <_lseek+0x2> ret +_read(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:252 +} + +ssize_t _read(int file, void *ptr, size_t len) +{ + return 0; +} +1c0029ee <_read> li a0,0 +1c0029f0 <_read+0x2> ret +_write(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:308 +} + +ssize_t _write(int file, const void *ptr, size_t len) +{ + /* fuse stout and stderr. remains to be seen if this is a good idea */ + if (file != STDOUT_FILENO && file != STDERR_FILENO) { +1c0029f2 <_write> addi a0,a0,-1 +1c0029f4 <_write+0x2> li a5,1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:314 + errno = ENOSYS; + return -1; + } + +#if CONFIG_STDIO == STDIO_FAKE + const void *eptr = ptr + len; +1c0029f6 <_write+0x4> add a6,a1,a2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:308 + if (file != STDOUT_FILENO && file != STDERR_FILENO) { +1c0029fa <_write+0x8> bltu a5,a0,1c002a10 <_write+0x1e> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:319 + while (ptr != eptr) + writew(*(unsigned char *)(ptr++), + (uintptr_t)(PULP_STDOUT_ADDR + STDOUT_PUTC_OFFSET + + (pulp_core_id() << 3) + + (pulp_cluster_id() << 7))); +1c0029fe <_write+0xc> lui a3,0x2 +1c002a00 <_write+0xe> addi a3,a3,-128 # 00001f80 <__stack_size+0x1780> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:318 + (pulp_core_id() << 3) + +1c002a04 <_write+0x12> lui a0,0x1a10f +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:315 + while (ptr != eptr) +1c002a08 <_write+0x16> bne a1,a6,1c002a1c <_write+0x2a> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:320 + return len; +1c002a0c <_write+0x1a> mv a0,a2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:353 + /* just nop */ + return len; +#else +#error "CONFIG_STDIO is undefined" +#endif +} +1c002a0e <_write+0x1c> ret +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:309 + errno = ENOSYS; +1c002a10 <_write+0x1e> li a4,88 +1c002a14 <_write+0x22> sw a4,-576(gp) # 1c00919c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:310 + return -1; +1c002a18 <_write+0x26> li a0,-1 +1c002a1a <_write+0x28> ret +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:316 + writew(*(unsigned char *)(ptr++), +1c002a1c <_write+0x2a> addi a1,a1,1 +1c002a1e <_write+0x2c> lbu a7,-1(a1) +pulp_core_id(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:294 + uint32_t mhartid = csr_read(CSR_MHARTID); +1c002a22 <_write+0x30> csrr a4,mhartid +pulp_cluster_id(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:301 + uint32_t mhartid = csr_read(CSR_MHARTID); +1c002a26 <_write+0x34> csrr a5,mhartid +_write(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:318 + (pulp_core_id() << 3) + +1c002a2a <_write+0x38> slli a4,a4,0x3 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:319 + (pulp_cluster_id() << 7))); +1c002a2c <_write+0x3a> slli a5,a5,0x2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:318 + (pulp_core_id() << 3) + +1c002a2e <_write+0x3c> andi a4,a4,255 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:319 + (pulp_cluster_id() << 7))); +1c002a32 <_write+0x40> and a5,a5,a3 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:318 + (pulp_core_id() << 3) + +1c002a34 <_write+0x42> add a4,a4,a0 +1c002a36 <_write+0x44> add a5,a5,a4 +writew(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/arch/io.h:45 +1c002a38 <_write+0x46> sw a7,0(a5) # 00002000 <__stack_size+0x1800> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/arch/io.h:48 + : + : "r"(val), "r"((volatile uint32_t *)addr)); +} +1c002a3c <_write+0x4a> j 1c002a08 <_write+0x16> +_sbrk(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:368 +} + +void *_sbrk(ptrdiff_t incr) +{ + /* TODO: Check for stack collision by reading sp */ + char *old_brk = brk; +1c002a3e <_sbrk> lui a5,0x1c009 +1c002a42 <_sbrk+0x4> addi a5,a5,-964 # 1c008c3c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:366 +{ +1c002a46 <_sbrk+0x8> mv a4,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:368 + char *old_brk = brk; +1c002a48 <_sbrk+0xa> lw a0,0(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:370 + + if (brk + incr >= __heap_end) { +1c002a4a <_sbrk+0xc> lui a3,0x1c019 +1c002a4e <_sbrk+0x10> addi a3,a3,432 # 1c0191b0 <__heap_end> +1c002a52 <_sbrk+0x14> add a4,a4,a0 +1c002a54 <_sbrk+0x16> bltu a4,a3,1c002a62 <_sbrk+0x24> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:371 + errno = ENOMEM; +1c002a58 <_sbrk+0x1a> li a4,12 +1c002a5a <_sbrk+0x1c> sw a4,-576(gp) # 1c00919c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:372 + return (void *)-1; +1c002a5e <_sbrk+0x20> li a0,-1 +1c002a60 <_sbrk+0x22> ret +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:375 + } + + brk += incr; +1c002a62 <_sbrk+0x24> sw a4,0(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:377 + return old_brk; +} +1c002a64 <_sbrk+0x26> ret +__malloc_lock(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:384 +void __malloc_lock(struct _reent *p) +{ + /* Make sure no mallocs inside ISRs */ + /* configASSERT(!xPortIsInsideInterrupt()); */ +#ifdef CONFIG_FREERTOS_KERNEL + vTaskSuspendAll(); +1c002a66 <__malloc_lock> j 1c001a16 +__malloc_unlock(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:391 +} + +void __malloc_unlock(struct _reent *p) +{ +#ifdef CONFIG_FREERTOS_KERNEL + (void)xTaskResumeAll(); +1c002a6a <__malloc_unlock> j 1c00234c +pi_l2_malloc(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/pulp_malloc.c:26 + +#include + +void *pi_l2_malloc(int size) +{ + return malloc(size); +1c002a6e j 1c003908 +timer_irq_handler(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/system.c:136 + system_core_clock_update(); + return system_core_clock; +} + +void timer_irq_handler(void) +{ +1c002a72 addi sp,sp,-16 +1c002a74 sw ra,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/system.c:139 +#warning requires critical section if interrupt nesting is used. + + if (xTaskIncrementTick() != 0) { +1c002a76 jal ra,1c001a28 +1c002a7a beqz a0,1c002a84 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/system.c:142 + vTaskSwitchContext(); + } +} +1c002a7c lw ra,12(sp) +1c002a7e addi sp,sp,16 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/system.c:140 + vTaskSwitchContext(); +1c002a80 j 1c001b76 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/system.c:142 +} +1c002a84 lw ra,12(sp) +1c002a86 addi sp,sp,16 +1c002a88 ret +system_init(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/system.c:73 +{ +1c002a8a addi sp,sp,-16 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/system.c:76 + pi_fll_init(i, 0); +1c002a8c li a1,0 +1c002a8e li a0,0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/system.c:73 +{ +1c002a90 sw ra,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/system.c:76 + pi_fll_init(i, 0); +1c002a92 jal ra,1c003260 +1c002a96 li a1,0 +1c002a98 li a0,1 +1c002a9a jal ra,1c003260 +1c002a9e li a1,0 +1c002aa0 li a0,2 +1c002aa2 jal ra,1c003260 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/system.c:80 + pulp_irq_init(); +1c002aa6 jal ra,1c00333c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/system.c:88 + isr_table[0xa] = timer_irq_handler; +1c002aaa lui a4,0x1c003 +1c002aae addi a5,gp,-1636 # 1c008d78 +1c002ab2 addi a4,a4,-1422 # 1c002a72 +1c002ab6 sw a4,40(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/system.c:89 + isr_table[0x1a] = fc_soc_event_handler; // 26 +1c002ab8 lui a4,0x1c001 +1c002abc addi a4,a4,-446 # 1c000e42 +1c002ac0 sw a4,104(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/system.c:94 + soc_eu_event_init(); +1c002ac2 jal ra,1c00334a +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/system.c:98 + pi_fc_event_handler_init(26); /* TODO: FIX THIS */ +1c002ac6 li a0,26 +1c002ac8 jal ra,1c003384 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/system.c:122 +} +1c002acc lw ra,12(sp) +1c002ace addi sp,sp,16 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/system.c:102 + irq_clint_global_enable(); +1c002ad0 j 1c003336 +system_core_clock_update(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/system.c:125 +{ +1c002ad4 addi sp,sp,-16 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/system.c:126 + system_core_clock = pi_fll_get_frequency(FLL_SOC, 0); +1c002ad6 li a1,0 +1c002ad8 li a0,0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/system.c:125 +{ +1c002ada sw ra,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/system.c:126 + system_core_clock = pi_fll_get_frequency(FLL_SOC, 0); +1c002adc jal ra,1c00322c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/system.c:127 +} +1c002ae0 lw ra,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/system.c:126 + system_core_clock = pi_fll_get_frequency(FLL_SOC, 0); +1c002ae2 lui a5,0x1c009 +1c002ae6 sw a0,-960(a5) # 1c008c40 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/system.c:127 +} +1c002aea addi sp,sp,16 +1c002aec ret +vPortSetupTimerInterrupt(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/system.c:156 + ; +#endif +} + +void vPortSetupTimerInterrupt(void) +{ +1c002aee addi sp,sp,-16 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/system.c:161 + extern int timer_irq_init(uint32_t ticks); + + /* No CLINT so use the PULP timer to generate the tick interrupt. */ + /* TODO: configKERNEL_INTERRUPT_PRIORITY - 1 ? */ + timer_irq_init(ARCHI_REF_CLOCK / configTICK_RATE_HZ); +1c002af0 li a0,32 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/system.c:156 +{ +1c002af4 sw ra,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/system.c:161 + timer_irq_init(ARCHI_REF_CLOCK / configTICK_RATE_HZ); +1c002af6 jal ra,1c00330e +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/system.c:164 + /* TODO: allow setting interrupt priority (to super high(?)) */ + irq_enable(IRQ_FC_EVT_TIMER0_LO); +} +1c002afa lw ra,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/system.c:163 + irq_enable(IRQ_FC_EVT_TIMER0_LO); +1c002afc li a0,1024 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/system.c:164 +} +1c002b00 addi sp,sp,16 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/system.c:163 + irq_enable(IRQ_FC_EVT_TIMER0_LO); +1c002b02 j 1c00332a +vSystemIrqHandler(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/system.c:169 + +void vSystemIrqHandler(uint32_t mcause) +{ + extern void (*isr_table[32])(void); + isr_table[mcause & 0x1f](); +1c002b06 andi a0,a0,31 +1c002b08 slli a5,a0,0x2 +1c002b0c addi a0,gp,-1636 # 1c008d78 +1c002b10 add a0,a0,a5 +1c002b12 lw a5,0(a0) +1c002b14 jr a5 +pi_spi_conf_init(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../pulpos/pulp/drivers/spim/spim-v3.c:83 + +void pi_spi_conf_init(struct pi_spi_conf *conf) +{ + conf->wordsize = PI_SPI_WORDSIZE_8; + conf->big_endian = 0; + conf->max_baudrate = 10000000; +1c002b16 lui a5,0x989 +1c002b1a addi a5,a5,1664 # 00989680 <__heap_l2_shared_size+0x923050> +1c002b1e sw a5,0(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../pulpos/pulp/drivers/spim/spim-v3.c:84 + conf->cs = -1; +1c002b20 li a5,255 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../pulpos/pulp/drivers/spim/spim-v3.c:81 + conf->wordsize = PI_SPI_WORDSIZE_8; +1c002b24 sh zero,4(a0) # 1a10f004 <__heap_l1_cluster_start+0xa10efe4> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../pulpos/pulp/drivers/spim/spim-v3.c:86 + conf->itf = 0; + conf->polarity = 0; +1c002b28 sw zero,8(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../pulpos/pulp/drivers/spim/spim-v3.c:87 + conf->phase = 0; +1c002b2c sw zero,12(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../pulpos/pulp/drivers/spim/spim-v3.c:84 + conf->cs = -1; +1c002b30 sh a5,16(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../pulpos/pulp/drivers/spim/spim-v3.c:88 +} +1c002b34 ret +pi_spi_open(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../pulpos/pulp/drivers/spim/spim-v3.c:93 + +int pi_spi_open(struct pi_device *device) +{ + int status = -1; + status = __pi_spi_open((struct spim_cs_data **)(&device->data), (struct pi_spi_conf *)device->config); +1c002b36 lw a1,4(a0) +1c002b38 addi a0,a0,8 +1c002b3a j 1c002ecc <__pi_spi_open> +pi_spi_close(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../pulpos/pulp/drivers/spim/spim-v3.c:99 + return status; +} + +void pi_spi_close(struct pi_device *device) +{ + __pi_spi_close((struct spim_cs_data *)(device->data), (struct pi_spi_conf *)device->config); +1c002b3c lw a1,4(a0) +1c002b3e lw a0,8(a0) +1c002b40 j 1c003050 <__pi_spi_close> +pi_spi_send_async(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../pulpos/pulp/drivers/spim/spim-v3.c:119 +} + +void pi_spi_send_async(struct pi_device *device, void *data, size_t len, pi_spi_flags_e flag, pi_task_t *task) +{ + DEBUG_PRINTF("...start -> pi_spi_send_async...\n"); + __pi_spi_send_async(device->data, data, len, flag, task); +1c002b42 lw a0,8(a0) +1c002b44 j 1c002dc6 <__pi_spi_send_async> +pi_spi_send(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../pulpos/pulp/drivers/spim/spim-v3.c:108 +{ +1c002b46 addi sp,sp,-112 +1c002b48 sw s0,104(sp) +1c002b4a mv s0,a0 +pi_task_block(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/pmsis_task.h:86 + */ +void __pi_task_destroy(pi_task_t *task); + +static inline pi_task_t *pi_task_block(pi_task_t *task) +{ + return __pi_task_block(task); +1c002b4c addi a0,sp,24 +pi_spi_send(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../pulpos/pulp/drivers/spim/spim-v3.c:108 +1c002b4e sw ra,108(sp) +1c002b50 sw a1,12(sp) +1c002b52 sw a2,8(sp) +1c002b54 sw a3,4(sp) +pi_task_block(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/pmsis_task.h:86 +1c002b56 jal ra,1c00343a <__pi_task_block> +pi_spi_send(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../pulpos/pulp/drivers/spim/spim-v3.c:111 + pi_spi_send_async(device, data, len, flag, &task_block); +1c002b5a lw a3,4(sp) +1c002b5c lw a2,8(sp) +1c002b5e lw a1,12(sp) +1c002b60 addi a4,sp,24 +1c002b62 mv a0,s0 +1c002b64 jal 1c002b42 +pi_task_wait_on(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/pmsis_task.h:130 + * \note The notification event is released just before returning from this call + * and must be reinitialized before it can be re-used. + */ +static inline void pi_task_wait_on(pi_task_t *task) +{ + __pi_task_wait_on(task); +1c002b66 addi a0,sp,24 +1c002b68 jal ra,1c0034b6 <__pi_task_wait_on> +pi_task_destroy(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/pmsis_task.h:149 + __pi_task_push(task); +} + +static inline void pi_task_destroy(pi_task_t *task) +{ + __pi_task_destroy(task); +1c002b6c addi a0,sp,24 +1c002b6e jal ra,1c003482 <__pi_task_destroy> +pi_spi_send(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../pulpos/pulp/drivers/spim/spim-v3.c:114 +} +1c002b72 lw ra,108(sp) +1c002b74 lw s0,104(sp) +1c002b76 addi sp,sp,112 +1c002b78 ret +pi_spi_receive_async(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../pulpos/pulp/drivers/spim/spim-v3.c:143 + +void pi_spi_receive_async(struct pi_device *device, void *data, size_t len, + pi_spi_flags_e flag, pi_task_t *task) +{ + DEBUG_PRINTF("...start -> pi_spi_receive_async...\n"); + __pi_spi_receive_async(device->data, data, len, flag, task); +1c002b7a lw a0,8(a0) +1c002b7c j 1c002ca0 <__pi_spi_receive_async> +pi_spi_receive(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../pulpos/pulp/drivers/spim/spim-v3.c:124 +{ +1c002b7e addi sp,sp,-112 +1c002b80 sw s0,104(sp) +1c002b82 mv s0,a0 +pi_task_block(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/pmsis_task.h:86 + return __pi_task_block(task); +1c002b84 addi a0,sp,24 +pi_spi_receive(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../pulpos/pulp/drivers/spim/spim-v3.c:124 +1c002b86 sw ra,108(sp) +1c002b88 sw a1,12(sp) +1c002b8a sw a2,8(sp) +1c002b8c sw a3,4(sp) +pi_task_block(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/pmsis_task.h:86 +1c002b8e jal ra,1c00343a <__pi_task_block> +pi_spi_receive(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../pulpos/pulp/drivers/spim/spim-v3.c:129 + pi_spi_receive_async(device, data, len, flag, &task_block); +1c002b92 lw a3,4(sp) +1c002b94 lw a2,8(sp) +1c002b96 lw a1,12(sp) +1c002b98 addi a4,sp,24 +1c002b9a mv a0,s0 +1c002b9c jal 1c002b7a +pi_task_wait_on(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/pmsis_task.h:130 + __pi_task_wait_on(task); +1c002b9e addi a0,sp,24 +1c002ba0 jal ra,1c0034b6 <__pi_task_wait_on> +pi_task_destroy(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/pmsis_task.h:149 + __pi_task_destroy(task); +1c002ba4 addi a0,sp,24 +1c002ba6 jal ra,1c003482 <__pi_task_destroy> +pi_spi_receive(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../pulpos/pulp/drivers/spim/spim-v3.c:137 +} +1c002baa lw ra,108(sp) +1c002bac lw s0,104(sp) +1c002bae addi sp,sp,112 +1c002bb0 ret +__disable_irq(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/arch/riscv.h:177 + \details Disables IRQ interrupts by clearing the MPIE-bit in the CPSR. + Can only be executed in Privileged modes. + */ +__attribute__((always_inline)) static inline uint32_t __disable_irq(void) +{ + uint32_t val = csr_read_clear(MSTATUS_ADDR, BIT(MSTATUS_MIE_Pos)); +1c002bb2 csrrci a0,mstatus,8 +deactive_irq(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:43 + return hal_irq_disable(); +#endif +#ifdef USE_FREERTOS_TEST + return __disable_irq(); +#endif +} +1c002bb6 ret +__restore_irq(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/arch/riscv.h:157 + csr_write(MSTATUS_ADDR, irq); +1c002bb8 csrw mstatus,a0 +active_irq(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:53 +#endif +#ifdef USE_FREERTOS_TEST + __restore_irq(irq); +#endif + +} +1c002bbc ret +__disable_irq(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/arch/riscv.h:177 + uint32_t val = csr_read_clear(MSTATUS_ADDR, BIT(MSTATUS_MIE_Pos)); +1c002bbe <__pi_spim_drv_fifo_enqueue> csrrci a4,mstatus,8 +__pi_spim_drv_fifo_enqueue(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:69 +{ + uint32_t irq = deactive_irq(); + struct spim_driver_data *drv_data = cs_data->drv_data; + /* Callback args. */ + end_task->data[0] = (uintptr_t)cs_data; + end_task->data[1] = (uintptr_t)transfer->data; +1c002bc2 <__pi_spim_drv_fifo_enqueue+0x4> lw a3,4(a1) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:66 + struct spim_driver_data *drv_data = cs_data->drv_data; +1c002bc4 <__pi_spim_drv_fifo_enqueue+0x6> lw a5,4(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:68 + end_task->data[0] = (uintptr_t)cs_data; +1c002bc6 <__pi_spim_drv_fifo_enqueue+0x8> sw a0,20(a2) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:69 + end_task->data[1] = (uintptr_t)transfer->data; +1c002bc8 <__pi_spim_drv_fifo_enqueue+0xa> sw a3,24(a2) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:70 + end_task->data[2] = (uintptr_t)transfer->len; +1c002bca <__pi_spim_drv_fifo_enqueue+0xc> lw a3,8(a1) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:76 + end_task->data[3] = (uintptr_t)transfer->flags; + end_task->data[4] = (uintptr_t)end_task; + end_task->data[5] = (uintptr_t)transfer->is_send; + end_task->next = NULL; + /* Enqueue transfer in drv fifo. */ + if (drv_data->drv_fifo->fifo_head == NULL) +1c002bcc <__pi_spim_drv_fifo_enqueue+0xe> lw a5,0(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:70 + end_task->data[2] = (uintptr_t)transfer->len; +1c002bce <__pi_spim_drv_fifo_enqueue+0x10> sw a3,28(a2) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:71 + end_task->data[3] = (uintptr_t)transfer->flags; +1c002bd0 <__pi_spim_drv_fifo_enqueue+0x12> lw a3,0(a1) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:72 + end_task->data[4] = (uintptr_t)end_task; +1c002bd2 <__pi_spim_drv_fifo_enqueue+0x14> sw a2,36(a2) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:71 + end_task->data[3] = (uintptr_t)transfer->flags; +1c002bd4 <__pi_spim_drv_fifo_enqueue+0x16> sw a3,32(a2) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:73 + end_task->data[5] = (uintptr_t)transfer->is_send; +1c002bd6 <__pi_spim_drv_fifo_enqueue+0x18> lw a3,20(a1) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:74 + end_task->next = NULL; +1c002bd8 <__pi_spim_drv_fifo_enqueue+0x1a> sw zero,64(a2) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:73 + end_task->data[5] = (uintptr_t)transfer->is_send; +1c002bdc <__pi_spim_drv_fifo_enqueue+0x1e> sw a3,40(a2) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:76 + if (drv_data->drv_fifo->fifo_head == NULL) +1c002bde <__pi_spim_drv_fifo_enqueue+0x20> lw a3,0(a5) +1c002be0 <__pi_spim_drv_fifo_enqueue+0x22> bnez a3,1c002bee <__pi_spim_drv_fifo_enqueue+0x30> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:79 + { + /* Empty fifo. */ + drv_data->drv_fifo->fifo_head = end_task; +1c002be2 <__pi_spim_drv_fifo_enqueue+0x24> sw a2,0(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:86 + } + else + { + /* Enqueue to tail. */ + drv_data->drv_fifo->fifo_tail->next = end_task; + drv_data->drv_fifo->fifo_tail = +1c002be4 <__pi_spim_drv_fifo_enqueue+0x26> sw a2,4(a5) +__restore_irq(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/arch/riscv.h:157 + csr_write(MSTATUS_ADDR, irq); +1c002be6 <__pi_spim_drv_fifo_enqueue+0x28> csrw mstatus,a4 +__pi_spim_drv_fifo_enqueue(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:91 + drv_data->drv_fifo->fifo_tail->next; + } + active_irq(irq); + return 0; +} +1c002bea <__pi_spim_drv_fifo_enqueue+0x2c> li a0,0 +1c002bec <__pi_spim_drv_fifo_enqueue+0x2e> ret +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:85 + drv_data->drv_fifo->fifo_tail->next = end_task; +1c002bee <__pi_spim_drv_fifo_enqueue+0x30> lw a3,4(a5) +1c002bf0 <__pi_spim_drv_fifo_enqueue+0x32> sw a2,64(a3) +1c002bf2 <__pi_spim_drv_fifo_enqueue+0x34> j 1c002be4 <__pi_spim_drv_fifo_enqueue+0x26> +__pi_spim_drv_fifo_pop(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:100 + // DBG_PRINTF("%s:%s:%d: \n", __FILE__, __func__, __LINE__); + pi_task_t *task_return = NULL; + // clean the value in the position 7 of regiter 0x300 + // irq = 1100010000000 + int check_300 = 0; + asm volatile("csrr %0, 0x300" +1c002bf4 <__pi_spim_drv_fifo_pop> csrr a5,mstatus +__disable_irq(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/arch/riscv.h:177 + uint32_t val = csr_read_clear(MSTATUS_ADDR, BIT(MSTATUS_MIE_Pos)); +1c002bf8 <__pi_spim_drv_fifo_pop+0x4> csrrci a3,mstatus,8 +__pi_spim_drv_fifo_pop(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:103 + : "=r"(check_300)); + uint32_t irq = deactive_irq(); + if (data->drv_fifo->fifo_head != NULL) +1c002bfc <__pi_spim_drv_fifo_pop+0x8> lw a5,0(a0) +1c002bfe <__pi_spim_drv_fifo_pop+0xa> lw a0,0(a5) +1c002c00 <__pi_spim_drv_fifo_pop+0xc> beqz a0,1c002c0c <__pi_spim_drv_fifo_pop+0x18> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:106 + { + task_return = data->drv_fifo->fifo_head; + data->drv_fifo->fifo_head = data->drv_fifo->fifo_head->next; +1c002c02 <__pi_spim_drv_fifo_pop+0xe> lw a4,64(a0) +1c002c04 <__pi_spim_drv_fifo_pop+0x10> sw a4,0(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:107 + if (data->drv_fifo->fifo_head == NULL) +1c002c06 <__pi_spim_drv_fifo_pop+0x12> bnez a4,1c002c0c <__pi_spim_drv_fifo_pop+0x18> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:109 + { + data->drv_fifo->fifo_tail = NULL; +1c002c08 <__pi_spim_drv_fifo_pop+0x14> sw zero,4(a5) +__restore_irq(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/arch/riscv.h:157 + csr_write(MSTATUS_ADDR, irq); +1c002c0c <__pi_spim_drv_fifo_pop+0x18> csrw mstatus,a3 +__pi_spim_drv_fifo_pop(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:115 + } + } + // write in the 0x300 register + active_irq(irq); + return task_return; +} +1c002c10 <__pi_spim_drv_fifo_pop+0x1c> ret +__pi_spim_get_cs_data(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:119 + +struct spim_cs_data *__pi_spim_get_cs_data(struct spim_driver_data *drv_data, int cs) +{ + struct spim_cs_data *cs_cur = drv_data->cs_list; +1c002c12 <__pi_spim_get_cs_data> lw a0,4(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:120 + while (cs_cur != NULL && cs_cur->cs != cs) +1c002c14 <__pi_spim_get_cs_data+0x2> beqz a0,1c002c1e <__pi_spim_get_cs_data+0xc> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:120 (discriminator 1) +1c002c16 <__pi_spim_get_cs_data+0x4> lbu a5,56(a0) +1c002c1a <__pi_spim_get_cs_data+0x8> bne a5,a1,1c002c20 <__pi_spim_get_cs_data+0xe> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:125 + { + cs_cur = cs_cur->next; + } + return cs_cur; +} +1c002c1e <__pi_spim_get_cs_data+0xc> ret +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:122 + cs_cur = cs_cur->next; +1c002c20 <__pi_spim_get_cs_data+0xe> lw a0,0(a0) +1c002c22 <__pi_spim_get_cs_data+0x10> j 1c002c14 <__pi_spim_get_cs_data+0x2> +__pi_spim_cs_data_del(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:130 + +void __pi_spim_cs_data_del(struct spim_driver_data *drv_data, + int cs) +{ + struct spim_cs_data *cs_cur = drv_data->cs_list; +1c002c24 <__pi_spim_cs_data_del> lw a5,4(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:131 + struct spim_cs_data *cs_prev = cs_cur; +1c002c26 <__pi_spim_cs_data_del+0x2> mv a4,a5 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:132 + while (cs_cur != NULL && cs_cur->cs != cs) +1c002c28 <__pi_spim_cs_data_del+0x4> beqz a5,1c002c3a <__pi_spim_cs_data_del+0x16> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:132 (discriminator 1) +1c002c2a <__pi_spim_cs_data_del+0x6> lbu a2,56(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:135 (discriminator 1) + { + cs_prev = cs_cur; + cs_cur = cs_cur->next; +1c002c2e <__pi_spim_cs_data_del+0xa> lw a3,0(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:132 (discriminator 1) + while (cs_cur != NULL && cs_cur->cs != cs) +1c002c30 <__pi_spim_cs_data_del+0xc> bne a2,a1,1c002c3c <__pi_spim_cs_data_del+0x18> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:139 + } + if (cs_cur) + { + cs_prev->next = cs_cur->next; +1c002c34 <__pi_spim_cs_data_del+0x10> sw a3,0(a4) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:140 + cs_cur->next = NULL; +1c002c36 <__pi_spim_cs_data_del+0x12> sw zero,0(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:142 + } +} +1c002c3a <__pi_spim_cs_data_del+0x16> ret +1c002c3c <__pi_spim_cs_data_del+0x18> mv a4,a5 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:135 + cs_cur = cs_cur->next; +1c002c3e <__pi_spim_cs_data_del+0x1a> mv a5,a3 +1c002c40 <__pi_spim_cs_data_del+0x1c> j 1c002c28 <__pi_spim_cs_data_del+0x4> +__pi_spim_cs_data_add(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:148 + +void __pi_spim_cs_data_add(struct spim_driver_data *drv_data, struct spim_cs_data *cs_data) +{ + // head insert, most recently allocated should be most recently used + cs_data->drv_data = drv_data; + cs_data->next = drv_data->cs_list; +1c002c42 <__pi_spim_cs_data_add> lw a5,4(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:147 + cs_data->drv_data = drv_data; +1c002c44 <__pi_spim_cs_data_add+0x2> sw a0,4(a1) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:148 + cs_data->next = drv_data->cs_list; +1c002c46 <__pi_spim_cs_data_add+0x4> sw a5,0(a1) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:149 +} +1c002c48 <__pi_spim_cs_data_add+0x6> ret +__pi_spi_clk_div_get(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:152 + +uint32_t __pi_spi_clk_div_get(uint32_t spi_freq) +{ +1c002c4a <__pi_spi_clk_div_get> addi sp,sp,-16 +1c002c4c <__pi_spi_clk_div_get+0x2> sw s0,8(sp) +1c002c4e <__pi_spi_clk_div_get+0x4> mv s0,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:153 + uint32_t periph_freq = pi_freq_get(PI_FREQ_DOMAIN_PERIPH); +1c002c50 <__pi_spi_clk_div_get+0x6> li a0,2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:152 +{ +1c002c52 <__pi_spi_clk_div_get+0x8> sw ra,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:153 + uint32_t periph_freq = pi_freq_get(PI_FREQ_DOMAIN_PERIPH); +1c002c54 <__pi_spi_clk_div_get+0xa> jal ra,1c0032ee +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:154 + if (spi_freq < periph_freq) +1c002c58 <__pi_spi_clk_div_get+0xe> bgeu s0,a0,1c002c78 <__pi_spi_clk_div_get+0x2e> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:157 + { + uint32_t clk_div = 0; + clk_div = (periph_freq + spi_freq - 1) / spi_freq; +1c002c5c <__pi_spi_clk_div_get+0x12> addi a5,s0,-1 +1c002c60 <__pi_spi_clk_div_get+0x16> add a5,a5,a0 +1c002c62 <__pi_spi_clk_div_get+0x18> divu a0,a5,s0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:158 + if (clk_div & 1) +1c002c66 <__pi_spi_clk_div_get+0x1c> andi a5,a0,1 +1c002c6a <__pi_spi_clk_div_get+0x20> beqz a5,1c002c6e <__pi_spi_clk_div_get+0x24> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:160 + { + clk_div += 1; +1c002c6c <__pi_spi_clk_div_get+0x22> addi a0,a0,1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:165 + } + /* The SPIM always divide by 2 once we activate the divider, + thus increase by 1 in case it is even to not go above the max + frequency. */ + clk_div = clk_div >> 1; +1c002c6e <__pi_spi_clk_div_get+0x24> srli a0,a0,0x1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:169 + return clk_div; + } + return 0; +1c002c70 <__pi_spi_clk_div_get+0x26> lw ra,12(sp) +1c002c72 <__pi_spi_clk_div_get+0x28> lw s0,8(sp) +1c002c74 <__pi_spi_clk_div_get+0x2a> addi sp,sp,16 +1c002c76 <__pi_spi_clk_div_get+0x2c> ret +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:168 + return 0; +1c002c78 <__pi_spi_clk_div_get+0x2e> li a0,0 +1c002c7a <__pi_spi_clk_div_get+0x30> j 1c002c70 <__pi_spi_clk_div_get+0x26> +hal_soc_eu_clear_fc_mask(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/soc_eu.h:258 + reg_offset); +} + +static inline void hal_soc_eu_clear_fc_mask(int evt) +{ + if (evt >= 256 || evt < 0) +1c002c7c li a5,255 +1c002c80 bltu a5,a0,1c002c9e +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/soc_eu.h:262 + return; + + int shift = evt % 32; + uint32_t reg_offset = (uint32_t)evt / 32 * 4; +1c002c84 srli a5,a0,0x5 +soc_eu_fc_read(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/soc_eu.h:200 + return readw((uintptr_t)(SOC_EU_ADDR + SOC_FC_MASK0_OFFSET + reg)); +1c002c88 lui a4,0x1a106 +1c002c8c addi a4,a4,4 +hal_soc_eu_clear_fc_mask(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/soc_eu.h:262 + uint32_t reg_offset = (uint32_t)evt / 32 * 4; +1c002c8e slli a5,a5,0x2 +soc_eu_fc_read(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/soc_eu.h:200 + return readw((uintptr_t)(SOC_EU_ADDR + SOC_FC_MASK0_OFFSET + reg)); +1c002c90 add a5,a5,a4 +readw(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/arch/io.h:82 + +static inline uint32_t readw(const uintptr_t addr) +{ + uint32_t val; + + asm volatile("lw %0, 0(%1)" +1c002c92 lw a3,0(a5) +hal_soc_eu_clear_fc_mask(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/soc_eu.h:263 + soc_eu_fc_write(soc_eu_fc_read(reg_offset) | (1u << shift), reg_offset); +1c002c94 li a4,1 +1c002c96 sll a0,a4,a0 +1c002c9a or a0,a0,a3 +writew(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/arch/io.h:45 + asm volatile("sw %0, 0(%1)" +1c002c9c sw a0,0(a5) +hal_soc_eu_clear_fc_mask(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/soc_eu.h:264 +} +1c002c9e ret +__pi_spi_receive_async(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:43 +/**================================================================================================ + ** FUNCTION + *================================================================================================**/ +void __pi_spi_receive_async(struct spim_cs_data *cs_data, void *data, size_t len, + pi_spi_flags_e flags, pi_task_t *task) +{ +1c002ca0 <__pi_spi_receive_async> addi sp,sp,-96 +1c002ca2 <__pi_spi_receive_async+0x2> sw s6,64(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:46 + DBG_PRINTF("...start -> __pi_spi_receive_async...\n"); + // SPIM_CS_DATA_GET_DRV_DATA(cs_data) = (cs_data->drv_data) + struct spim_driver_data *drv_data = SPIM_CS_DATA_GET_DRV_DATA(cs_data); +1c002ca4 <__pi_spi_receive_async+0x4> lw s6,4(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:43 +{ +1c002ca8 <__pi_spi_receive_async+0x8> sw s2,80(sp) +1c002caa <__pi_spi_receive_async+0xa> sw s7,60(sp) +1c002cac <__pi_spi_receive_async+0xc> sw ra,92(sp) +1c002cae <__pi_spi_receive_async+0xe> sw s0,88(sp) +1c002cb0 <__pi_spi_receive_async+0x10> sw s1,84(sp) +1c002cb2 <__pi_spi_receive_async+0x12> sw s3,76(sp) +1c002cb4 <__pi_spi_receive_async+0x14> sw s4,72(sp) +1c002cb6 <__pi_spi_receive_async+0x16> sw s5,68(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:60 + __FILE__, __func__, __LINE__, system_core_clock_get(), cs_data->max_baudrate, + system_core_clock_get() / cs_data->max_baudrate, cfg, qspi); + + int buffer_size = (len + 7) >> 3; + + if (len > 8192 * 8) { +1c002cb8 <__pi_spi_receive_async+0x18> lui a5,0x10 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:51 + int device_id = drv_data->device_id; +1c002cba <__pi_spi_receive_async+0x1a> lbu s1,20(s6) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:52 + uint32_t cfg = cs_data->cfg; +1c002cbe <__pi_spi_receive_async+0x1e> lw s7,8(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:43 +{ +1c002cc2 <__pi_spi_receive_async+0x22> mv s2,a2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:60 + if (len > 8192 * 8) { +1c002cc4 <__pi_spi_receive_async+0x24> bgeu a5,a2,1c002ccc <__pi_spi_receive_async+0x2c> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:63 + DBG_PRINTF("%s:%s:%d: Transaction splitting unimplemented, too large", __FILE__, + __func__, __LINE__); + abort(); /* TODO: unimplemented transaction splitting */ +1c002cc8 <__pi_spi_receive_async+0x28> jal ra,1c0037b8 +1c002ccc <__pi_spi_receive_async+0x2c> mv s0,a0 +1c002cce <__pi_spi_receive_async+0x2e> mv s4,a1 +1c002cd0 <__pi_spi_receive_async+0x30> mv s3,a3 +1c002cd2 <__pi_spi_receive_async+0x32> sw a4,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:68 + } + + DBG_PRINTF("%s:%s:%d: udma_cmd = %p\n", __FILE__, __func__, __LINE__, + &(cs_data->udma_cmd[0])); + uint32_t irq = deactive_irq(); +1c002cd4 <__pi_spi_receive_async+0x34> jal ra,1c002bb2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:74 + + uint8_t bitsword = 0; + uint8_t UDMA_CORE_CFG = 0; + uint32_t byte_align = 0; + + if (cs_data->wordsize == PI_SPI_WORDSIZE_8) { +1c002cd8 <__pi_spi_receive_async+0x38> lbu a6,57(s0) +1c002cdc <__pi_spi_receive_async+0x3c> lw a2,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:68 + uint32_t irq = deactive_irq(); +1c002cde <__pi_spi_receive_async+0x3e> mv s5,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:74 + if (cs_data->wordsize == PI_SPI_WORDSIZE_8) { +1c002ce0 <__pi_spi_receive_async+0x40> beqz a6,1c002cfc <__pi_spi_receive_async+0x5c> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:82 + byte_align = (cs_data->wordsize) && cs_data->big_endian; + + } else if (cs_data->wordsize == PI_SPI_WORDSIZE_16) { + bitsword = 16; + UDMA_CORE_CFG = UDMA_CORE_CFG_DATASIZE_16; // 0x1 + byte_align = (cs_data->wordsize) && cs_data->big_endian; +1c002ce4 <__pi_spi_receive_async+0x44> lbu a5,58(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:79 + } else if (cs_data->wordsize == PI_SPI_WORDSIZE_16) { +1c002ce8 <__pi_spi_receive_async+0x48> li a4,1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:80 + bitsword = 16; +1c002cea <__pi_spi_receive_async+0x4a> li a7,16 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:82 + byte_align = (cs_data->wordsize) && cs_data->big_endian; +1c002cec <__pi_spi_receive_async+0x4c> snez a5,a5 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:79 + } else if (cs_data->wordsize == PI_SPI_WORDSIZE_16) { +1c002cf0 <__pi_spi_receive_async+0x50> beq a6,a4,1c002d00 <__pi_spi_receive_async+0x60> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:85 + } else { + bitsword = 32; + UDMA_CORE_CFG = UDMA_CORE_CFG_DATASIZE_32; // 0x2 +1c002cf4 <__pi_spi_receive_async+0x54> li a6,2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:84 + bitsword = 32; +1c002cf6 <__pi_spi_receive_async+0x56> li a7,32 +1c002cfa <__pi_spi_receive_async+0x5a> j 1c002d00 <__pi_spi_receive_async+0x60> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:77 + byte_align = (cs_data->wordsize) && cs_data->big_endian; +1c002cfc <__pi_spi_receive_async+0x5c> li a5,0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:75 + bitsword = 8; +1c002cfe <__pi_spi_receive_async+0x5e> li a7,8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:92 + } + + DBG_PRINTF("%s:%s:%d: bitsword = %u\n", __FILE__, __func__, __LINE__, bitsword); + DBG_PRINTF("%s:%s:%d: UDMA_CORE_CFG = %u\n", __FILE__, __func__, __LINE__, UDMA_CORE_CFG); + + if (!drv_data->end_of_transfer) { +1c002d00 <__pi_spi_receive_async+0x60> lw a4,12(s6) +1c002d04 <__pi_spi_receive_async+0x64> bnez a4,1c002db0 <__pi_spi_receive_async+0x110> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:94 + cs_data->udma_cmd[0] = cfg; + cs_data->udma_cmd[1] = SPI_CMD_SOT(cs_data->cs); +1c002d06 <__pi_spi_receive_async+0x66> lbu a5,56(s0) +1c002d0a <__pi_spi_receive_async+0x6a> lui a4,0x10000 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:93 + cs_data->udma_cmd[0] = cfg; +1c002d0e <__pi_spi_receive_async+0x6e> sw s7,12(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:94 + cs_data->udma_cmd[1] = SPI_CMD_SOT(cs_data->cs); +1c002d12 <__pi_spi_receive_async+0x72> or a5,a5,a4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:95 + cs_data->udma_cmd[2] = SPI_CMD_RX_DATA(len / bitsword, SPI_CMD_1_WORD_PER_TRANSF, +1c002d14 <__pi_spi_receive_async+0x74> addi a4,a7,-1 +1c002d18 <__pi_spi_receive_async+0x78> divu a7,s2,a7 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:94 + cs_data->udma_cmd[1] = SPI_CMD_SOT(cs_data->cs); +1c002d1c <__pi_spi_receive_async+0x7c> sw a5,16(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:47 + int qspi = (flags & (0x3 << 2)) == PI_SPI_LINES_QUAD; +1c002d1e <__pi_spi_receive_async+0x7e> andi a5,s3,12 +1c002d22 <__pi_spi_receive_async+0x82> addi a5,a5,-4 +1c002d24 <__pi_spi_receive_async+0x84> seqz a5,a5 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:95 + cs_data->udma_cmd[2] = SPI_CMD_RX_DATA(len / bitsword, SPI_CMD_1_WORD_PER_TRANSF, +1c002d28 <__pi_spi_receive_async+0x88> slli a4,a4,0x10 +1c002d2a <__pi_spi_receive_async+0x8a> slli a5,a5,0x1b +1c002d2c <__pi_spi_receive_async+0x8c> or a5,a5,a4 +1c002d2e <__pi_spi_receive_async+0x8e> lui a4,0x70000 +1c002d32 <__pi_spi_receive_async+0x92> or a5,a5,a4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:49 + int cs_mode = (flags >> 0) & 0x3; +1c002d34 <__pi_spi_receive_async+0x94> andi s3,s3,3 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:95 + cs_data->udma_cmd[2] = SPI_CMD_RX_DATA(len / bitsword, SPI_CMD_1_WORD_PER_TRANSF, +1c002d38 <__pi_spi_receive_async+0x98> addi a7,a7,-1 +1c002d3a <__pi_spi_receive_async+0x9a> or a5,a5,a7 +1c002d3e <__pi_spi_receive_async+0x9e> sw a5,20(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:97 + bitsword, qspi, SPI_CMD_MSB_FIRST); + cs_data->udma_cmd[3] = SPI_CMD_EOT(1, cs_mode == PI_SPI_CS_KEEP); +1c002d40 <__pi_spi_receive_async+0xa0> li a5,1 +1c002d42 <__pi_spi_receive_async+0xa2> beq s3,a5,1c002da8 <__pi_spi_receive_async+0x108> +1c002d46 <__pi_spi_receive_async+0xa6> lui a5,0x90000 +1c002d4a <__pi_spi_receive_async+0xaa> addi a5,a5,1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:97 (discriminator 4) +1c002d4c <__pi_spi_receive_async+0xac> sw a5,24(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:107 (discriminator 4) + // number of byteword + uint32_t rx_conf = + UDMA_CORE_TX_CFG_EN(1) | UDMA_CORE_TX_CFG_DATASIZE(UDMA_CORE_CFG); + + /* receive data stream with 32-bit data size */ + spim_enqueue_channel(SPIM(device_id), (uint32_t)data, buffer_size, rx_conf, +1c002d4e <__pi_spi_receive_async+0xae> lui a4,0x1a102 +1c002d52 <__pi_spi_receive_async+0xb2> addi a5,s1,1 +1c002d56 <__pi_spi_receive_async+0xb6> addi a4,a4,128 # 1a102080 <__heap_l1_cluster_start+0xa102060> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:104 (discriminator 4) + UDMA_CORE_TX_CFG_EN(1) | UDMA_CORE_TX_CFG_DATASIZE(UDMA_CORE_CFG); +1c002d5a <__pi_spi_receive_async+0xba> slli a6,a6,0x1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:107 (discriminator 4) + spim_enqueue_channel(SPIM(device_id), (uint32_t)data, buffer_size, rx_conf, +1c002d5c <__pi_spi_receive_async+0xbc> slli a5,a5,0x7 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:99 (discriminator 4) + drv_data->end_of_transfer = task; +1c002d5e <__pi_spi_receive_async+0xbe> sw a2,12(s6) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:100 (discriminator 4) + drv_data->repeat_transfer = NULL; +1c002d62 <__pi_spi_receive_async+0xc2> sw zero,8(s6) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:103 (discriminator 4) + uint32_t rx_conf = +1c002d66 <__pi_spi_receive_async+0xc6> ori a6,a6,16 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:107 (discriminator 4) + spim_enqueue_channel(SPIM(device_id), (uint32_t)data, buffer_size, rx_conf, +1c002d6a <__pi_spi_receive_async+0xca> add a5,a5,a4 +hal_write32(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/include/target.h:35 (discriminator 4) +} + +static inline void hal_write32(volatile void *addr, uint32_t value) +{ + asm volatile("" : : : "memory"); + *((volatile uint32_t *)addr) = value; +1c002d6c <__pi_spi_receive_async+0xcc> sw s4,0(a5) # 90000000 <__heap_l2_shared_start+0x73fe6630> +__pi_spi_receive_async(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:58 (discriminator 4) + int buffer_size = (len + 7) >> 3; +1c002d70 <__pi_spi_receive_async+0xd0> addi s2,s2,7 +1c002d72 <__pi_spi_receive_async+0xd2> srli s2,s2,0x3 +hal_write32(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/include/target.h:35 (discriminator 4) +1c002d76 <__pi_spi_receive_async+0xd6> mv a5,a5 +1c002d7a <__pi_spi_receive_async+0xda> sw s2,4(a5) +1c002d7e <__pi_spi_receive_async+0xde> sw a6,8(a5) +__pi_spi_receive_async(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:113 (discriminator 4) + RX_CHANNEL); + // number of byteword + uint32_t cmd_conf = UDMA_CORE_TX_CFG_EN(1) | + UDMA_CORE_TX_CFG_DATASIZE(UDMA_CORE_CFG_DATASIZE_32); + /* send command stream with 32-bit data size */ + spim_enqueue_channel(SPIM(device_id), (uint32_t)cs_data->udma_cmd, +1c002d82 <__pi_spi_receive_async+0xe2> addi s0,s0,12 +hal_write32(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/include/target.h:35 (discriminator 4) +1c002d84 <__pi_spi_receive_async+0xe4> sw s0,32(a5) +1c002d86 <__pi_spi_receive_async+0xe6> li a4,16 +1c002d88 <__pi_spi_receive_async+0xe8> sw a4,36(a5) +1c002d8a <__pi_spi_receive_async+0xea> li a4,20 +1c002d8c <__pi_spi_receive_async+0xec> sw a4,40(a5) +__pi_spi_receive_async(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:129 + transfer.is_send = 0; + __pi_spim_drv_fifo_enqueue(cs_data, &transfer, task); + } + active_irq(irq); + DBG_PRINTF("...end -> __pi_spi_receive_async...\n"); +} +1c002d8e <__pi_spi_receive_async+0xee> lw s0,88(sp) +1c002d90 <__pi_spi_receive_async+0xf0> lw ra,92(sp) +1c002d92 <__pi_spi_receive_async+0xf2> lw s1,84(sp) +1c002d94 <__pi_spi_receive_async+0xf4> lw s2,80(sp) +1c002d96 <__pi_spi_receive_async+0xf6> lw s3,76(sp) +1c002d98 <__pi_spi_receive_async+0xf8> lw s4,72(sp) +1c002d9a <__pi_spi_receive_async+0xfa> lw s6,64(sp) +1c002d9c <__pi_spi_receive_async+0xfc> lw s7,60(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:127 + active_irq(irq); +1c002d9e <__pi_spi_receive_async+0xfe> mv a0,s5 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:129 +} +1c002da0 <__pi_spi_receive_async+0x100> lw s5,68(sp) +1c002da2 <__pi_spi_receive_async+0x102> addi sp,sp,96 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:127 + active_irq(irq); +1c002da4 <__pi_spi_receive_async+0x104> j 1c002bb8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:97 + cs_data->udma_cmd[3] = SPI_CMD_EOT(1, cs_mode == PI_SPI_CS_KEEP); +1c002da8 <__pi_spi_receive_async+0x108> lui a5,0x90000 +1c002dac <__pi_spi_receive_async+0x10c> addi a5,a5,3 +1c002dae <__pi_spi_receive_async+0x10e> j 1c002d4c <__pi_spi_receive_async+0xac> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:125 + __pi_spim_drv_fifo_enqueue(cs_data, &transfer, task); +1c002db0 <__pi_spi_receive_async+0x110> addi a1,sp,24 +1c002db2 <__pi_spi_receive_async+0x112> mv a0,s0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:119 + transfer.data = data; +1c002db4 <__pi_spi_receive_async+0x114> sw s4,28(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:120 + transfer.flags = flags; +1c002db6 <__pi_spi_receive_async+0x116> sw s3,24(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:121 + transfer.len = len; +1c002db8 <__pi_spi_receive_async+0x118> sw s2,32(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:122 + transfer.cfg_cmd = cfg; +1c002dba <__pi_spi_receive_async+0x11a> sw s7,36(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:123 + transfer.byte_align = byte_align; +1c002dbc <__pi_spi_receive_async+0x11c> sw a5,40(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:124 + transfer.is_send = 0; +1c002dbe <__pi_spi_receive_async+0x11e> sw zero,44(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:125 + __pi_spim_drv_fifo_enqueue(cs_data, &transfer, task); +1c002dc0 <__pi_spi_receive_async+0x120> jal ra,1c002bbe <__pi_spim_drv_fifo_enqueue> +1c002dc4 <__pi_spi_receive_async+0x124> j 1c002d8e <__pi_spi_receive_async+0xee> +__pi_spi_send_async(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:135 + +void __pi_spi_send_async(struct spim_cs_data *cs_data, void *data, size_t len, pi_spi_flags_e flags, + pi_task_t *task) +{ + DBG_PRINTF("...start -> __pi_spi_send_async...\n"); + struct spim_driver_data *drv_data = SPIM_CS_DATA_GET_DRV_DATA(cs_data); +1c002dc6 <__pi_spi_send_async> lw t4,4(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:133 +{ +1c002dca <__pi_spi_send_async+0x4> addi sp,sp,-48 +1c002dcc <__pi_spi_send_async+0x6> sw ra,44(sp) +1c002dce <__pi_spi_send_async+0x8> sw s0,40(sp) +1c002dd0 <__pi_spi_send_async+0xa> mv a7,a2 +1c002dd2 <__pi_spi_send_async+0xc> mv a2,a4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:151 + system_core_clock_get() / cs_data->max_baudrate, cfg, qspi); + + /* buffer size */ + int buffer_size = (len + 7) >> 3; + + if (len > 8192 * 8) { +1c002dd4 <__pi_spi_send_async+0xe> lui a4,0x10 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:141 + int device_id = drv_data->device_id; +1c002dd6 <__pi_spi_send_async+0x10> lbu a5,20(t4) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:142 + uint32_t cfg = cs_data->cfg; // SPI_CMD_CFG(...) +1c002dda <__pi_spi_send_async+0x14> lw a6,8(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:151 + if (len > 8192 * 8) { +1c002dde <__pi_spi_send_async+0x18> bgeu a4,a7,1c002de6 <__pi_spi_send_async+0x20> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:154 + DBG_PRINTF("%s:%s:%d: Transaction splitting unimplemented, too large", __FILE__, + __func__, __LINE__); + abort(); /* TODO: unimplemented transaction splitting */ +1c002de2 <__pi_spi_send_async+0x1c> jal ra,1c0037b8 +__disable_irq(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/arch/riscv.h:177 + uint32_t val = csr_read_clear(MSTATUS_ADDR, BIT(MSTATUS_MIE_Pos)); +1c002de6 <__pi_spi_send_async+0x20> csrrci s0,mstatus,8 +__pi_spi_send_async(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:168 + uint8_t bitsword = 0; + uint8_t UDMA_CORE_CFG = 0; + uint32_t byte_align = 0; + // uint32_t byte_align = (cs_data->wordsize == PI_SPI_WORDSIZE_32) && cs_data->big_endian; + + if (cs_data->wordsize == PI_SPI_WORDSIZE_8) { +1c002dea <__pi_spi_send_async+0x24> lbu t1,57(a0) +1c002dee <__pi_spi_send_async+0x28> beqz t1,1c002ea0 <__pi_spi_send_async+0xda> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:176 + byte_align = (cs_data->wordsize) && cs_data->big_endian; + + } else if (cs_data->wordsize == PI_SPI_WORDSIZE_16) { + bitsword = 16; + UDMA_CORE_CFG = UDMA_CORE_CFG_DATASIZE_16; // 0x1 + byte_align = (cs_data->wordsize) && cs_data->big_endian; +1c002df2 <__pi_spi_send_async+0x2c> lbu a4,58(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:173 + } else if (cs_data->wordsize == PI_SPI_WORDSIZE_16) { +1c002df6 <__pi_spi_send_async+0x30> li t3,1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:176 + byte_align = (cs_data->wordsize) && cs_data->big_endian; +1c002df8 <__pi_spi_send_async+0x32> snez a4,a4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:173 + } else if (cs_data->wordsize == PI_SPI_WORDSIZE_16) { +1c002dfc <__pi_spi_send_async+0x36> bne t1,t3,1c002ea6 <__pi_spi_send_async+0xe0> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:174 + bitsword = 16; +1c002e00 <__pi_spi_send_async+0x3a> li t3,16 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:187 + + DBG_PRINTF("%s:%s:%d: bitsword = %u\n", __FILE__, __func__, __LINE__, bitsword); + DBG_PRINTF("%s:%s:%d: UDMA_CORE_CFG = %u\n", __FILE__, __func__, __LINE__, UDMA_CORE_CFG); + DBG_PRINTF("%s:%s:%d: device_id = %d\n", __FILE__, __func__, __LINE__, device_id); + + if (!drv_data->end_of_transfer) { /* enqueue the transfer */ +1c002e02 <__pi_spi_send_async+0x3c> lw t5,12(t4) +1c002e06 <__pi_spi_send_async+0x40> bnez t5,1c002eb6 <__pi_spi_send_async+0xf0> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:189 + cs_data->udma_cmd[0] = cfg; + cs_data->udma_cmd[1] = SPI_CMD_SOT(cs_data->cs); +1c002e0a <__pi_spi_send_async+0x44> lbu a4,56(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:188 + cs_data->udma_cmd[0] = cfg; +1c002e0e <__pi_spi_send_async+0x48> sw a6,12(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:189 + cs_data->udma_cmd[1] = SPI_CMD_SOT(cs_data->cs); +1c002e12 <__pi_spi_send_async+0x4c> lui a6,0x10000 +1c002e16 <__pi_spi_send_async+0x50> or a4,a4,a6 +1c002e1a <__pi_spi_send_async+0x54> sw a4,16(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:190 + cs_data->udma_cmd[2] = SPI_CMD_TX_DATA((len / bitsword), SPI_CMD_1_WORD_PER_TRANSF, +1c002e1c <__pi_spi_send_async+0x56> addi a4,t3,-1 +1c002e20 <__pi_spi_send_async+0x5a> divu t3,a7,t3 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:136 + int qspi = (flags & (0x3 << 2)) == PI_SPI_LINES_QUAD; +1c002e24 <__pi_spi_send_async+0x5e> andi a6,a3,12 +1c002e28 <__pi_spi_send_async+0x62> addi a6,a6,-4 +1c002e2a <__pi_spi_send_async+0x64> seqz a6,a6 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:190 + cs_data->udma_cmd[2] = SPI_CMD_TX_DATA((len / bitsword), SPI_CMD_1_WORD_PER_TRANSF, +1c002e2e <__pi_spi_send_async+0x68> slli a4,a4,0x10 +1c002e30 <__pi_spi_send_async+0x6a> slli a6,a6,0x1b +1c002e32 <__pi_spi_send_async+0x6c> or a6,a6,a4 +1c002e36 <__pi_spi_send_async+0x70> lui a4,0x60000 +1c002e3a <__pi_spi_send_async+0x74> or a6,a6,a4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:138 + int cs_mode = (flags >> 0) & 0x3; +1c002e3e <__pi_spi_send_async+0x78> andi a3,a3,3 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:192 + bitsword, qspi, SPI_CMD_MSB_FIRST); + cs_data->udma_cmd[3] = SPI_CMD_EOT(1, cs_mode == PI_SPI_CS_KEEP); +1c002e40 <__pi_spi_send_async+0x7a> li a4,1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:190 + cs_data->udma_cmd[2] = SPI_CMD_TX_DATA((len / bitsword), SPI_CMD_1_WORD_PER_TRANSF, +1c002e42 <__pi_spi_send_async+0x7c> addi t3,t3,-1 +1c002e44 <__pi_spi_send_async+0x7e> or a6,a6,t3 +1c002e48 <__pi_spi_send_async+0x82> sw a6,20(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:192 + cs_data->udma_cmd[3] = SPI_CMD_EOT(1, cs_mode == PI_SPI_CS_KEEP); +1c002e4c <__pi_spi_send_async+0x86> beq a3,a4,1c002eae <__pi_spi_send_async+0xe8> +1c002e50 <__pi_spi_send_async+0x8a> lui a3,0x90000 +1c002e54 <__pi_spi_send_async+0x8e> addi a3,a3,1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:200 (discriminator 4) + drv_data->repeat_transfer = NULL; + + uint32_t cmd_conf = UDMA_CORE_TX_CFG_EN(1) | + UDMA_CORE_TX_CFG_DATASIZE(UDMA_CORE_CFG_DATASIZE_32); + /* send command stream with 32-bit data size */ + spim_enqueue_channel(SPIM(device_id), (uint32_t)cs_data->udma_cmd, +1c002e56 <__pi_spi_send_async+0x90> addi a5,a5,1 +1c002e58 <__pi_spi_send_async+0x92> lui a4,0x1a102 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:192 (discriminator 4) + cs_data->udma_cmd[3] = SPI_CMD_EOT(1, cs_mode == PI_SPI_CS_KEEP); +1c002e5c <__pi_spi_send_async+0x96> sw a3,24(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:200 (discriminator 4) + spim_enqueue_channel(SPIM(device_id), (uint32_t)cs_data->udma_cmd, +1c002e5e <__pi_spi_send_async+0x98> addi a4,a4,128 # 1a102080 <__heap_l1_cluster_start+0xa102060> +1c002e62 <__pi_spi_send_async+0x9c> slli a5,a5,0x7 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:194 (discriminator 4) + drv_data->end_of_transfer = task; +1c002e64 <__pi_spi_send_async+0x9e> sw a2,12(t4) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:195 (discriminator 4) + drv_data->repeat_transfer = NULL; +1c002e68 <__pi_spi_send_async+0xa2> sw zero,8(t4) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:200 (discriminator 4) + spim_enqueue_channel(SPIM(device_id), (uint32_t)cs_data->udma_cmd, +1c002e6c <__pi_spi_send_async+0xa6> add a5,a5,a4 +1c002e6e <__pi_spi_send_async+0xa8> addi a0,a0,12 +hal_write32(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/include/target.h:35 (discriminator 4) +1c002e70 <__pi_spi_send_async+0xaa> mv a5,a5 +1c002e74 <__pi_spi_send_async+0xae> sw a0,32(a5) +1c002e76 <__pi_spi_send_async+0xb0> li a4,16 +1c002e78 <__pi_spi_send_async+0xb2> sw a4,36(a5) +1c002e7a <__pi_spi_send_async+0xb4> li a4,20 +1c002e7c <__pi_spi_send_async+0xb6> sw a4,40(a5) +__pi_spi_send_async(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:204 (discriminator 4) + 4 * sizeof(uint32_t), cmd_conf, COMMAND_CHANNEL); + + uint32_t tx_conf = + UDMA_CORE_TX_CFG_EN(1) | UDMA_CORE_TX_CFG_DATASIZE(UDMA_CORE_CFG); +1c002e7e <__pi_spi_send_async+0xb8> slli t1,t1,0x1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:203 (discriminator 4) + uint32_t tx_conf = +1c002e80 <__pi_spi_send_async+0xba> ori t1,t1,16 +hal_write32(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/include/target.h:35 (discriminator 4) +1c002e84 <__pi_spi_send_async+0xbe> sw a1,16(a5) +__pi_spi_send_async(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:149 (discriminator 4) + int buffer_size = (len + 7) >> 3; +1c002e86 <__pi_spi_send_async+0xc0> addi a7,a7,7 +1c002e88 <__pi_spi_send_async+0xc2> srli a7,a7,0x3 +hal_write32(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/include/target.h:35 (discriminator 4) +1c002e8c <__pi_spi_send_async+0xc6> sw a7,20(a5) # 90000014 <__heap_l2_shared_start+0x73fe6644> +1c002e90 <__pi_spi_send_async+0xca> sw t1,24(a5) +__pi_spi_send_async(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:220 + transfer.cfg_cmd = cfg; + transfer.byte_align = byte_align; + transfer.is_send = 1; + __pi_spim_drv_fifo_enqueue(cs_data, &transfer, task); + } + active_irq(irq); +1c002e94 <__pi_spi_send_async+0xce> mv a0,s0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:222 + DBG_PRINTF("...end -> __pi_spi_send_async...\n"); +} +1c002e96 <__pi_spi_send_async+0xd0> lw s0,40(sp) +1c002e98 <__pi_spi_send_async+0xd2> lw ra,44(sp) +1c002e9a <__pi_spi_send_async+0xd4> addi sp,sp,48 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:220 + active_irq(irq); +1c002e9c <__pi_spi_send_async+0xd6> j 1c002bb8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:171 + byte_align = (cs_data->wordsize) && cs_data->big_endian; +1c002ea0 <__pi_spi_send_async+0xda> li a4,0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:169 + bitsword = 8; +1c002ea2 <__pi_spi_send_async+0xdc> li t3,8 +1c002ea4 <__pi_spi_send_async+0xde> j 1c002e02 <__pi_spi_send_async+0x3c> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:179 + UDMA_CORE_CFG = UDMA_CORE_CFG_DATASIZE_32; // 0x2 +1c002ea6 <__pi_spi_send_async+0xe0> li t1,2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:178 + bitsword = 32; +1c002ea8 <__pi_spi_send_async+0xe2> li t3,32 +1c002eac <__pi_spi_send_async+0xe6> j 1c002e02 <__pi_spi_send_async+0x3c> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:192 + cs_data->udma_cmd[3] = SPI_CMD_EOT(1, cs_mode == PI_SPI_CS_KEEP); +1c002eae <__pi_spi_send_async+0xe8> lui a3,0x90000 +1c002eb2 <__pi_spi_send_async+0xec> addi a3,a3,3 +1c002eb4 <__pi_spi_send_async+0xee> j 1c002e56 <__pi_spi_send_async+0x90> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:212 + transfer.data = data; +1c002eb6 <__pi_spi_send_async+0xf0> sw a1,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:217 + transfer.is_send = 1; +1c002eb8 <__pi_spi_send_async+0xf2> li a5,1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:218 + __pi_spim_drv_fifo_enqueue(cs_data, &transfer, task); +1c002eba <__pi_spi_send_async+0xf4> addi a1,sp,8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:213 + transfer.flags = flags; +1c002ebc <__pi_spi_send_async+0xf6> sw a3,8(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:214 + transfer.len = len; +1c002ebe <__pi_spi_send_async+0xf8> sw a7,16(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:215 + transfer.cfg_cmd = cfg; +1c002ec0 <__pi_spi_send_async+0xfa> sw a6,20(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:216 + transfer.byte_align = byte_align; +1c002ec2 <__pi_spi_send_async+0xfc> sw a4,24(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:217 + transfer.is_send = 1; +1c002ec4 <__pi_spi_send_async+0xfe> sw a5,28(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:218 + __pi_spim_drv_fifo_enqueue(cs_data, &transfer, task); +1c002ec6 <__pi_spi_send_async+0x100> jal ra,1c002bbe <__pi_spim_drv_fifo_enqueue> +1c002eca <__pi_spi_send_async+0x104> j 1c002e94 <__pi_spi_send_async+0xce> +__pi_spi_open(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:225 + +int __pi_spi_open(struct spim_cs_data **cs_data, struct pi_spi_conf *conf) +{ +1c002ecc <__pi_spi_open> addi sp,sp,-32 +1c002ece <__pi_spi_open+0x2> sw s0,24(sp) +1c002ed0 <__pi_spi_open+0x4> sw s3,12(sp) +1c002ed2 <__pi_spi_open+0x6> sw s4,8(sp) +1c002ed4 <__pi_spi_open+0x8> mv s0,a1 +1c002ed6 <__pi_spi_open+0xa> sw ra,28(sp) +1c002ed8 <__pi_spi_open+0xc> sw s1,20(sp) +1c002eda <__pi_spi_open+0xe> sw s2,16(sp) +1c002edc <__pi_spi_open+0x10> sw s5,4(sp) +1c002ede <__pi_spi_open+0x12> mv s4,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:228 + DBG_PRINTF("...start -> pi_spi_open...\n"); + + uint32_t irq = deactive_irq(); +1c002ee0 <__pi_spi_open+0x14> jal ra,1c002bb2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:242 + unsigned char spi_id = conf->itf; + int periph_id = UDMA_SPIM_ID(spi_id); + + DBG_PRINTF("%s:%s:%d: periph_id = %u\n", __FILE__, __func__, __LINE__, periph_id); + + udma_ctrl_cg_disable(UDMA_SPIM_ID(conf->itf)); +1c002ee4 <__pi_spi_open+0x18> lb a5,17(s0) +udma_ctrl_cg_disable(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/udma_ctrl.h:75 + return hal_read32(&UDMA_GC->EVTIN); +} + +static inline void udma_ctrl_cg_disable(uint32_t udma_device_id) +{ + hal_or32(&UDMA_GC->CG, 1 << udma_device_id); +1c002ee8 <__pi_spi_open+0x1c> li a4,1 +__pi_spi_open(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:228 + uint32_t irq = deactive_irq(); +1c002eea <__pi_spi_open+0x1e> mv s3,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:242 + udma_ctrl_cg_disable(UDMA_SPIM_ID(conf->itf)); +1c002eec <__pi_spi_open+0x20> addi a5,a5,1 +udma_ctrl_cg_disable(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/udma_ctrl.h:75 +1c002eee <__pi_spi_open+0x22> sll a5,a4,a5 +hal_or32(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/include/target.h:49 +} + +static inline void hal_or32(volatile void *addr, uint32_t value) +{ + asm volatile("" : : : "memory"); + *((volatile uint32_t *)addr) |= value; +1c002ef2 <__pi_spi_open+0x26> lui a3,0x1a102 +1c002ef6 <__pi_spi_open+0x2a> lw a2,0(a3) +1c002ef8 <__pi_spi_open+0x2c> or a5,a5,a2 +1c002efa <__pi_spi_open+0x2e> sw a5,0(a3) +__pi_spi_open(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:244 + + hal_soc_eu_set_fc_mask(SOC_EVENT_UDMA_SPIM_EOT(conf->itf)); +1c002efc <__pi_spi_open+0x30> lb a0,17(s0) +1c002f00 <__pi_spi_open+0x34> slli a5,a0,0x2 +1c002f04 <__pi_spi_open+0x38> addi a0,a5,7 +hal_soc_eu_set_fc_mask(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/soc_eu.h:225 + if (evt >= 256 || evt < 0) +1c002f08 <__pi_spi_open+0x3c> li a5,255 +1c002f0c <__pi_spi_open+0x40> bltu a5,a0,1c002f2c <__pi_spi_open+0x60> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/soc_eu.h:229 + uint32_t reg_offset = (uint32_t)evt / 32 * 4; +1c002f10 <__pi_spi_open+0x44> srli a5,a0,0x5 +soc_eu_fc_read(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/soc_eu.h:200 + return readw((uintptr_t)(SOC_EU_ADDR + SOC_FC_MASK0_OFFSET + reg)); +1c002f14 <__pi_spi_open+0x48> lui a3,0x1a106 +1c002f18 <__pi_spi_open+0x4c> addi a3,a3,4 +hal_soc_eu_set_fc_mask(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/soc_eu.h:229 + uint32_t reg_offset = (uint32_t)evt / 32 * 4; +1c002f1a <__pi_spi_open+0x4e> slli a5,a5,0x2 +soc_eu_fc_read(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/soc_eu.h:200 + return readw((uintptr_t)(SOC_EU_ADDR + SOC_FC_MASK0_OFFSET + reg)); +1c002f1c <__pi_spi_open+0x50> add a5,a5,a3 +readw(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/arch/io.h:82 + asm volatile("lw %0, 0(%1)" +1c002f1e <__pi_spi_open+0x52> lw a3,0(a5) +hal_soc_eu_set_fc_mask(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/soc_eu.h:230 + soc_eu_fc_write(soc_eu_fc_read(reg_offset) & ~(1u << shift), +1c002f20 <__pi_spi_open+0x54> sll a4,a4,a0 +1c002f24 <__pi_spi_open+0x58> not a4,a4 +1c002f28 <__pi_spi_open+0x5c> and a4,a4,a3 +writew(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/arch/io.h:45 + asm volatile("sw %0, 0(%1)" +1c002f2a <__pi_spi_open+0x5e> sw a4,0(a5) +__pi_spi_open(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:246 + + pi_fc_event_handler_set(SOC_EVENT_UDMA_SPIM_EOT(conf->itf), spim_eot_handler); +1c002f2c <__pi_spi_open+0x60> lui a1,0x1c003 +1c002f30 <__pi_spi_open+0x64> addi a1,a1,262 # 1c003106 +1c002f34 <__pi_spi_open+0x68> jal 1c0033b6 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:247 + pi_fc_event_handler_set(SOC_EVENT_UDMA_SPIM_TX(conf->itf), spim_tx_handler); +1c002f36 <__pi_spi_open+0x6a> lb a0,17(s0) +1c002f3a <__pi_spi_open+0x6e> lui a1,0x1c003 +1c002f3e <__pi_spi_open+0x72> addi a1,a1,328 # 1c003148 +1c002f42 <__pi_spi_open+0x76> slli a0,a0,0x2 +1c002f44 <__pi_spi_open+0x78> addi a0,a0,5 +1c002f46 <__pi_spi_open+0x7a> jal 1c0033b6 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:248 + pi_fc_event_handler_set(SOC_EVENT_UDMA_SPIM_RX(conf->itf), spim_rx_handler); +1c002f48 <__pi_spi_open+0x7c> lb a0,17(s0) +1c002f4c <__pi_spi_open+0x80> lui a1,0x1c003 +1c002f50 <__pi_spi_open+0x84> addi a1,a1,358 # 1c003166 +1c002f54 <__pi_spi_open+0x88> addi a0,a0,1 +1c002f56 <__pi_spi_open+0x8a> slli a0,a0,0x2 +1c002f58 <__pi_spi_open+0x8c> jal 1c0033b6 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:255 + /* + ** spim_driver_data keeps information for each spi interface. + */ + // Take care of driver data + struct spim_driver_data *drv_data; + if (__g_spim_drv_data[conf->itf]) { +1c002f5a <__pi_spi_open+0x8e> lb s5,17(s0) +1c002f5e <__pi_spi_open+0x92> addi s2,gp,-604 # 1c009180 <__g_spim_drv_data> +1c002f62 <__pi_spi_open+0x96> slli a5,s5,0x2 +1c002f66 <__pi_spi_open+0x9a> add s2,s2,a5 +1c002f68 <__pi_spi_open+0x9c> lw s1,0(s2) +1c002f6c <__pi_spi_open+0xa0> bnez s1,1c002fa2 <__pi_spi_open+0xd6> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:260 + drv_data = __g_spim_drv_data[conf->itf]; + } else { + + // Do this to define a node in a list. The list is a dynamic object. + __g_spim_drv_data[conf->itf] = pi_default_malloc(sizeof(struct spim_driver_data)); +1c002f6e <__pi_spi_open+0xa2> li a0,24 +1c002f70 <__pi_spi_open+0xa4> jal ra,1c003908 +1c002f74 <__pi_spi_open+0xa8> mv s1,a0 +1c002f76 <__pi_spi_open+0xaa> sw a0,0(s2) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:261 + memset(__g_spim_drv_data[conf->itf], 0, sizeof(struct spim_driver_data)); +1c002f7a <__pi_spi_open+0xae> sw zero,4(a0) +1c002f7e <__pi_spi_open+0xb2> sw zero,8(a0) +1c002f82 <__pi_spi_open+0xb6> sw zero,12(a0) +1c002f86 <__pi_spi_open+0xba> sw zero,16(a0) +1c002f8a <__pi_spi_open+0xbe> sw zero,20(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:264 + drv_data = __g_spim_drv_data[conf->itf]; + // Do this to define a node in a list. The list is a dynamic object. + drv_data->drv_fifo = pi_default_malloc(sizeof(struct spim_drv_fifo)); +1c002f8e <__pi_spi_open+0xc2> li a0,8 +1c002f90 <__pi_spi_open+0xc4> jal ra,1c003908 +1c002f94 <__pi_spi_open+0xc8> sw a0,0(s1) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:265 + memset(drv_data->drv_fifo, 0, sizeof(struct spim_drv_fifo)); +1c002f96 <__pi_spi_open+0xca> sw zero,0(a0) +1c002f9a <__pi_spi_open+0xce> sw zero,4(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:271 + // controllo che il puntatore sia = 0 + if (!drv_data->drv_fifo) { + active_irq(irq); + return -1; + } + drv_data->device_id = conf->itf; +1c002f9e <__pi_spi_open+0xd2> sb s5,20(s1) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:276 + } + /* + ** Number of open SPI interfaces + */ + drv_data->nb_open++; +1c002fa2 <__pi_spi_open+0xd6> lw a5,16(s1) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:279 + + // Take care of cs data + *cs_data = __pi_spim_get_cs_data(drv_data, conf->cs); +1c002fa4 <__pi_spi_open+0xd8> mv a0,s1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:276 + drv_data->nb_open++; +1c002fa6 <__pi_spi_open+0xda> addi a5,a5,1 +1c002fa8 <__pi_spi_open+0xdc> sw a5,16(s1) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:279 + *cs_data = __pi_spim_get_cs_data(drv_data, conf->cs); +1c002faa <__pi_spi_open+0xde> lb a1,16(s0) +1c002fae <__pi_spi_open+0xe2> jal ra,1c002c12 <__pi_spim_get_cs_data> +1c002fb2 <__pi_spi_open+0xe6> sw a0,0(s4) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:281 + + if (!*cs_data) { // if (*cs_data == 0) +1c002fb6 <__pi_spi_open+0xea> bnez a0,1c003046 <__pi_spi_open+0x17a> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:282 + uint32_t clk_div = __pi_spi_clk_div_get(conf->max_baudrate); +1c002fb8 <__pi_spi_open+0xec> lw a0,0(s0) +1c002fba <__pi_spi_open+0xee> jal ra,1c002c4a <__pi_spi_clk_div_get> +1c002fbe <__pi_spi_open+0xf2> mv s5,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:284 + // alloc a cs data, need to be in udma reachable ram + struct spim_cs_data *_cs_data = pi_data_malloc(sizeof(struct spim_cs_data)); +1c002fc0 <__pi_spi_open+0xf4> li a0,60 +1c002fc4 <__pi_spi_open+0xf8> jal ra,1c003908 +1c002fc8 <__pi_spi_open+0xfc> mv s2,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:285 + if (_cs_data == NULL) { +1c002fca <__pi_spi_open+0xfe> bnez a0,1c002fe6 <__pi_spi_open+0x11a> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:287 + DBG_PRINTF("[%s] _cs_data alloc failed\n", __func__); + active_irq(irq); +1c002fcc <__pi_spi_open+0x100> mv a0,s3 +1c002fce <__pi_spi_open+0x102> jal ra,1c002bb8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:288 + return -2; +1c002fd2 <__pi_spi_open+0x106> li a0,-2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:318 + /* TODO: paste end */ + + active_irq(irq); + DBG_PRINTF("...end -> pi_spi_open...\n"); + return status; +} +1c002fd4 <__pi_spi_open+0x108> lw ra,28(sp) +1c002fd6 <__pi_spi_open+0x10a> lw s0,24(sp) +1c002fd8 <__pi_spi_open+0x10c> lw s1,20(sp) +1c002fda <__pi_spi_open+0x10e> lw s2,16(sp) +1c002fdc <__pi_spi_open+0x110> lw s3,12(sp) +1c002fde <__pi_spi_open+0x112> lw s4,8(sp) +1c002fe0 <__pi_spi_open+0x114> lw s5,4(sp) +1c002fe2 <__pi_spi_open+0x116> addi sp,sp,32 +1c002fe4 <__pi_spi_open+0x118> ret +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:290 + if (clk_div > 0xFF) { +1c002fe6 <__pi_spi_open+0x11a> li a5,255 +1c002fea <__pi_spi_open+0x11e> bgeu a5,s5,1c002ff8 <__pi_spi_open+0x12c> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:294 + active_irq(irq); +1c002fee <__pi_spi_open+0x122> mv a0,s3 +1c002ff0 <__pi_spi_open+0x124> jal ra,1c002bb8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:295 + return -3; +1c002ff4 <__pi_spi_open+0x128> li a0,-3 +1c002ff6 <__pi_spi_open+0x12a> j 1c002fd4 <__pi_spi_open+0x108> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:298 + memset(_cs_data, 0, sizeof(struct spim_cs_data)); +1c002ff8 <__pi_spi_open+0x12c> li a1,0 +1c002ffa <__pi_spi_open+0x12e> li a2,60 +1c002ffe <__pi_spi_open+0x132> jal ra,1c000e7a +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:299 + _cs_data->max_baudrate = conf->max_baudrate; +1c003002 <__pi_spi_open+0x136> lw a5,0(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:302 + _cs_data->big_endian = conf->big_endian; +1c003004 <__pi_spi_open+0x138> lbu a3,5(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:300 + _cs_data->polarity = conf->polarity; +1c003008 <__pi_spi_open+0x13c> lw a4,8(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:299 + _cs_data->max_baudrate = conf->max_baudrate; +1c00300a <__pi_spi_open+0x13e> sw a5,44(s2) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:302 + _cs_data->big_endian = conf->big_endian; +1c00300e <__pi_spi_open+0x142> sb a3,58(s2) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:301 + _cs_data->phase = conf->phase; +1c003012 <__pi_spi_open+0x146> lw a5,12(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:303 + _cs_data->wordsize = conf->wordsize; +1c003014 <__pi_spi_open+0x148> lbu a3,4(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:300 + _cs_data->polarity = conf->polarity; +1c003018 <__pi_spi_open+0x14c> sw a4,48(s2) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:301 + _cs_data->phase = conf->phase; +1c00301c <__pi_spi_open+0x150> sw a5,52(s2) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:303 + _cs_data->wordsize = conf->wordsize; +1c003020 <__pi_spi_open+0x154> sb a3,57(s2) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:305 + _cs_data->cfg = SPI_CMD_CFG(clk_div, _cs_data->phase, _cs_data->polarity); +1c003024 <__pi_spi_open+0x158> slli a5,a5,0x9 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:304 + _cs_data->cs = conf->cs; +1c003026 <__pi_spi_open+0x15a> lbu a3,16(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:305 + _cs_data->cfg = SPI_CMD_CFG(clk_div, _cs_data->phase, _cs_data->polarity); +1c00302a <__pi_spi_open+0x15e> slli a4,a4,0x8 +1c00302c <__pi_spi_open+0x160> or a5,a5,a4 +1c00302e <__pi_spi_open+0x162> or a5,a5,s5 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:304 + _cs_data->cs = conf->cs; +1c003032 <__pi_spi_open+0x166> sb a3,56(s2) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:305 + _cs_data->cfg = SPI_CMD_CFG(clk_div, _cs_data->phase, _cs_data->polarity); +1c003036 <__pi_spi_open+0x16a> sw a5,8(s2) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:307 + *cs_data = _cs_data; +1c00303a <__pi_spi_open+0x16e> sw s2,0(s4) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:309 + __pi_spim_cs_data_add(drv_data, _cs_data); +1c00303e <__pi_spi_open+0x172> mv a1,s2 +1c003040 <__pi_spi_open+0x174> mv a0,s1 +1c003042 <__pi_spi_open+0x176> jal ra,1c002c42 <__pi_spim_cs_data_add> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:315 + active_irq(irq); +1c003046 <__pi_spi_open+0x17a> mv a0,s3 +1c003048 <__pi_spi_open+0x17c> jal ra,1c002bb8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:317 + return status; +1c00304c <__pi_spi_open+0x180> li a0,0 +1c00304e <__pi_spi_open+0x182> j 1c002fd4 <__pi_spi_open+0x108> +__pi_spi_close(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:321 + +void __pi_spi_close(struct spim_cs_data *cs_data, struct pi_spi_conf *conf) +{ +1c003050 <__pi_spi_close> addi sp,sp,-16 +1c003052 <__pi_spi_close+0x2> sw s1,4(sp) +1c003054 <__pi_spi_close+0x4> mv s1,a0 +1c003056 <__pi_spi_close+0x6> sw ra,12(sp) +1c003058 <__pi_spi_close+0x8> sw s0,8(sp) +1c00305a <__pi_spi_close+0xa> sw s2,0(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:324 + DBG_PRINTF("...start -> pi_spi_close...\n"); + + uint32_t irq = deactive_irq(); +1c00305c <__pi_spi_close+0xc> jal ra,1c002bb2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:326 + /* TODO: paste beg */ + struct spim_driver_data *drv_data = cs_data->drv_data; +1c003060 <__pi_spi_close+0x10> lw s0,4(s1) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:327 + __pi_spim_cs_data_del(drv_data, cs_data->cs); +1c003062 <__pi_spi_close+0x12> lbu a1,56(s1) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:324 + uint32_t irq = deactive_irq(); +1c003066 <__pi_spi_close+0x16> mv s2,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:327 + __pi_spim_cs_data_del(drv_data, cs_data->cs); +1c003068 <__pi_spi_close+0x18> mv a0,s0 +1c00306a <__pi_spi_close+0x1a> jal ra,1c002c24 <__pi_spim_cs_data_del> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:331 + /* + ** Number of open SPI interfaces + */ + drv_data->nb_open--; +1c00306e <__pi_spi_close+0x1e> lw a5,16(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:345 + pi_default_free(drv_data, sizeof(drv_data)); + + active_irq(irq); + return; + } + pi_data_free(cs_data, sizeof(cs_data)); +1c003070 <__pi_spi_close+0x20> mv a0,s1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:331 + drv_data->nb_open--; +1c003072 <__pi_spi_close+0x22> addi a5,a5,-1 +1c003074 <__pi_spi_close+0x24> sw a5,16(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:333 + if (drv_data->nb_open == 0) { +1c003076 <__pi_spi_close+0x26> bnez a5,1c0030c4 <__pi_spi_close+0x74> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:335 + udma_ctrl_cg_enable(UDMA_SPIM_ID(drv_data->device_id)); +1c003078 <__pi_spi_close+0x28> lbu a5,20(s0) +1c00307c <__pi_spi_close+0x2c> addi a4,a5,1 +udma_ctrl_cg_enable(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/udma_ctrl.h:80 +} + +static inline void udma_ctrl_cg_enable(uint32_t udma_device_id) +{ + hal_and32(&UDMA_GC->CG, ~(1 << udma_device_id)); +1c003080 <__pi_spi_close+0x30> li a5,1 +1c003082 <__pi_spi_close+0x32> sll a5,a5,a4 +1c003086 <__pi_spi_close+0x36> not a5,a5 +hal_and32(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/include/target.h:56 +} + +static inline void hal_and32(volatile void *addr, uint32_t value) +{ + asm volatile("" : : : "memory"); + *((volatile uint32_t *)addr) &= value; +1c00308a <__pi_spi_close+0x3a> lui a4,0x1a102 +1c00308e <__pi_spi_close+0x3e> lw a3,0(a4) +1c003090 <__pi_spi_close+0x40> and a5,a5,a3 +1c003092 <__pi_spi_close+0x42> sw a5,0(a4) +__pi_spi_close(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:336 + hal_soc_eu_clear_fc_mask(SOC_EVENT_UDMA_SPIM_EOT(drv_data->device_id)); +1c003094 <__pi_spi_close+0x44> lbu a0,20(s0) +1c003098 <__pi_spi_close+0x48> slli a0,a0,0x2 +1c00309a <__pi_spi_close+0x4a> addi a0,a0,7 +1c00309c <__pi_spi_close+0x4c> jal ra,1c002c7c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:337 + pi_fc_event_handler_clear(SOC_EVENT_UDMA_SPIM_EOT(drv_data->device_id)); +1c0030a0 <__pi_spi_close+0x50> lbu a0,20(s0) +1c0030a4 <__pi_spi_close+0x54> slli a0,a0,0x2 +1c0030a6 <__pi_spi_close+0x56> addi a0,a0,7 +1c0030a8 <__pi_spi_close+0x58> jal 1c0033c4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:338 + __g_spim_drv_data[drv_data->device_id] = NULL; +1c0030aa <__pi_spi_close+0x5a> lbu a5,20(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:339 + pi_default_free(drv_data->drv_fifo, sizeof(drv_data->drv_fifo)); +1c0030ae <__pi_spi_close+0x5e> lw a0,0(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:338 + __g_spim_drv_data[drv_data->device_id] = NULL; +1c0030b0 <__pi_spi_close+0x60> slli a4,a5,0x2 +1c0030b4 <__pi_spi_close+0x64> addi a5,gp,-604 # 1c009180 <__g_spim_drv_data> +1c0030b8 <__pi_spi_close+0x68> add a5,a5,a4 +1c0030ba <__pi_spi_close+0x6a> sw zero,0(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:339 + pi_default_free(drv_data->drv_fifo, sizeof(drv_data->drv_fifo)); +1c0030be <__pi_spi_close+0x6e> jal ra,1c003914 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:340 + pi_default_free(drv_data, sizeof(drv_data)); +1c0030c2 <__pi_spi_close+0x72> mv a0,s0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:345 + pi_data_free(cs_data, sizeof(cs_data)); +1c0030c4 <__pi_spi_close+0x74> jal ra,1c003914 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:352 + /* TODO: paste end */ + + active_irq(irq); + DBG_PRINTF("...end -> pi_spi_close...\n"); + return; +} +1c0030c8 <__pi_spi_close+0x78> lw s0,8(sp) +1c0030ca <__pi_spi_close+0x7a> lw ra,12(sp) +1c0030cc <__pi_spi_close+0x7c> lw s1,4(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:349 + active_irq(irq); +1c0030ce <__pi_spi_close+0x7e> mv a0,s2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:352 +} +1c0030d0 <__pi_spi_close+0x80> lw s2,0(sp) +1c0030d2 <__pi_spi_close+0x82> addi sp,sp,16 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:349 + active_irq(irq); +1c0030d4 <__pi_spi_close+0x84> j 1c002bb8 +__pi_spim_exec_next_transfer(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:455 + +void __pi_spim_exec_next_transfer(pi_task_t *task) +{ + DBG_PRINTF("...start -> __pi_spim_exec_next_transfer...\n"); + DBG_PRINTF("%s:%s:%d\n", __FILE__, __func__, __LINE__); + if (task->data[5] == 1) { // if is send +1c0030d8 <__pi_spim_exec_next_transfer> lw a5,40(a0) +1c0030da <__pi_spim_exec_next_transfer+0x2> li a4,1 +1c0030dc <__pi_spim_exec_next_transfer+0x4> bne a5,a4,1c0030ee <__pi_spim_exec_next_transfer+0x16> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:457 + // cs data | data buffer | len | flags | end of transfer task + __pi_spi_send_async((struct spim_cs_data *)task->data[0], (void *)task->data[1], +1c0030e0 <__pi_spim_exec_next_transfer+0x8> lw a4,36(a0) +1c0030e2 <__pi_spim_exec_next_transfer+0xa> lw a3,32(a0) +1c0030e4 <__pi_spim_exec_next_transfer+0xc> lw a2,28(a0) +1c0030e6 <__pi_spim_exec_next_transfer+0xe> lw a1,24(a0) +1c0030e8 <__pi_spim_exec_next_transfer+0x10> lw a0,20(a0) +1c0030ea <__pi_spim_exec_next_transfer+0x12> j 1c002dc6 <__pi_spi_send_async> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:459 + task->data[2], task->data[3], (pi_task_t *)task->data[4]); + } else if (task->data[5] == 0) { +1c0030ee <__pi_spim_exec_next_transfer+0x16> bnez a5,1c0030fe <__pi_spim_exec_next_transfer+0x26> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:461 + // cs data | data buffer | len | flags | end of transfer task + __pi_spi_receive_async((struct spim_cs_data *)task->data[0], (void *)task->data[1], +1c0030f0 <__pi_spim_exec_next_transfer+0x18> lw a4,36(a0) +1c0030f2 <__pi_spim_exec_next_transfer+0x1a> lw a3,32(a0) +1c0030f4 <__pi_spim_exec_next_transfer+0x1c> lw a2,28(a0) +1c0030f6 <__pi_spim_exec_next_transfer+0x1e> lw a1,24(a0) +1c0030f8 <__pi_spim_exec_next_transfer+0x20> lw a0,20(a0) +1c0030fa <__pi_spim_exec_next_transfer+0x22> j 1c002ca0 <__pi_spi_receive_async> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:452 +{ +1c0030fe <__pi_spim_exec_next_transfer+0x26> addi sp,sp,-16 +1c003100 <__pi_spim_exec_next_transfer+0x28> sw ra,12(sp) +__pi_spi_xfer_async(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:477 + +void __pi_spi_xfer_async(struct spim_cs_data *cs_data, void *tx_data, void *rx_data, size_t len, + pi_spi_flags_e flags, pi_task_t *task) +{ + /* TODO: port spi_xfer async */ + abort(); +1c003102 <__pi_spim_exec_next_transfer+0x2a> jal ra,1c0037b8 +spim_eot_handler(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:364 + struct spim_driver_data *drv_data = __g_spim_drv_data[periph_id]; +1c003106 addi a0,a0,-7 +1c003108 slli a5,a0,0x2 +1c00310c addi a0,gp,-604 # 1c009180 <__g_spim_drv_data> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:355 +{ +1c003110 addi sp,sp,-16 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:364 + struct spim_driver_data *drv_data = __g_spim_drv_data[periph_id]; +1c003112 add a0,a0,a5 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:355 +{ +1c003114 sw s0,8(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:364 + struct spim_driver_data *drv_data = __g_spim_drv_data[periph_id]; +1c003116 lw s0,0(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:355 +{ +1c003118 sw ra,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:366 + if (drv_data->repeat_transfer) { +1c00311a lw a5,8(s0) +1c00311c bnez a5,1c003140 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:372 + pi_task_t *task = drv_data->end_of_transfer; +1c00311e lw a0,12(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:374 + if (task != NULL) { +1c003120 beqz a0,1c003130 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:375 + if (task->id == PI_TASK_NONE_ID) { +1c003122 lw a4,16(a0) +1c003124 li a5,1 +1c003126 bne a4,a5,1c00312c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:378 + pi_task_release(task); +1c00312a jal 1c0034e0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:391 + drv_data->end_of_transfer = NULL; +1c00312c sw zero,12(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:400 + task = __pi_spim_drv_fifo_pop(drv_data); +1c003130 mv a0,s0 +1c003132 jal ra,1c002bf4 <__pi_spim_drv_fifo_pop> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:405 + if (task) { +1c003136 beqz a0,1c003140 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:411 +} +1c003138 lw s0,8(sp) +1c00313a lw ra,12(sp) +1c00313c addi sp,sp,16 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:406 + __pi_spim_exec_next_transfer(task); +1c00313e j 1c0030d8 <__pi_spim_exec_next_transfer> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:411 +} +1c003140 lw ra,12(sp) +1c003142 lw s0,8(sp) +1c003144 addi sp,sp,16 +1c003146 ret +spim_tx_handler(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:415 +{ // if we're here, it's cs keep related +1c003148 addi sp,sp,-16 +1c00314a sw s0,8(sp) +1c00314c mv s0,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:420 + hal_soc_eu_clear_fc_mask(SOC_EVENT_UDMA_SPIM_TX(periph_id)); +1c00314e andi a0,a0,-4 +1c003150 addi a0,a0,1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:415 +{ // if we're here, it's cs keep related +1c003152 sw ra,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:420 + hal_soc_eu_clear_fc_mask(SOC_EVENT_UDMA_SPIM_TX(periph_id)); +1c003154 jal ra,1c002c7c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:419 + uint32_t periph_id = (event >> UDMA_CHANNEL_NB_EVENTS_LOG2) - UDMA_SPIM_ID(0); +1c003158 srli a0,s0,0x2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:427 +} +1c00315c lw s0,8(sp) +1c00315e lw ra,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:424 + spim_eot_handler(arg); +1c003160 addi a0,a0,6 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:427 +} +1c003162 addi sp,sp,16 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:424 + spim_eot_handler(arg); +1c003164 j 1c003106 +spim_rx_handler(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:431 +{ // if we're here, it's cs keep related +1c003166 addi sp,sp,-16 +1c003168 sw s0,8(sp) +1c00316a mv s0,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:436 + hal_soc_eu_clear_fc_mask(SOC_EVENT_UDMA_SPIM_RX(periph_id)); +1c00316c andi a0,a0,-4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:431 +{ // if we're here, it's cs keep related +1c00316e sw ra,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:436 + hal_soc_eu_clear_fc_mask(SOC_EVENT_UDMA_SPIM_RX(periph_id)); +1c003170 jal ra,1c002c7c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:435 + uint32_t periph_id = (event >> UDMA_CHANNEL_NB_EVENTS_LOG2) - UDMA_SPIM_ID(0); +1c003174 srli a0,s0,0x2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:443 +} +1c003178 lw s0,8(sp) +1c00317a lw ra,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:440 + spim_eot_handler(arg); +1c00317c addi a0,a0,6 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:443 +} +1c00317e addi sp,sp,16 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:440 + spim_eot_handler(arg); +1c003180 j 1c003106 +vApplicationMallocFailedHook(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:697 + active_irq(irq); +#endif +} + +void vApplicationMallocFailedHook(void) +{ +1c003184 addi sp,sp,-16 +1c003186 sw ra,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:709 + the size of the heap available to pvPortMalloc() is defined by + configTOTAL_HEAP_SIZE in FreeRTOSConfig.h, and the + xPortGetFreeHeapSize() API function can be used to query the size of + free heap space that remains (although it does not provide information + on how the remaining heap might be fragmented). */ + taskDISABLE_INTERRUPTS(); +1c003188 csrci mstatus,8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:710 + printf("error: application malloc failed\n"); +1c00318c lui a0,0x1c009 +1c003190 addi a0,a0,-1960 # 1c008858 <__func__.0+0x14> +1c003194 jal ra,1c003ed2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:711 + __asm volatile("ebreak"); +1c003198 ebreak +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:712 (discriminator 1) + for (;;) +1c00319a j 1c00319a +vApplicationStackOverflowHook(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:717 + ; +} + +void vApplicationStackOverflowHook(TaskHandle_t pxTask, char *pcTaskName) +{ +1c00319c addi sp,sp,-16 +1c00319e sw ra,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:724 + (void)pxTask; + + /* Run time stack overflow checking is performed if + configCHECK_FOR_STACK_OVERFLOW is defined to 1 or 2. This hook + function is called if a stack overflow is detected. */ + taskDISABLE_INTERRUPTS(); +1c0031a0 csrci mstatus,8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:725 + printf("error: stack overflow\n"); +1c0031a4 lui a0,0x1c009 +1c0031a8 addi a0,a0,-1924 # 1c00887c <__func__.0+0x38> +1c0031ac jal ra,1c003ed2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:726 + __asm volatile("ebreak"); +1c0031b0 ebreak +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:727 (discriminator 1) + for (;;) +1c0031b2 j 1c0031b2 +pi_fll_set_frequency(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:80 + uint32_t fres = (div == 0) ? (fref * mult) : (fref * mult) >> (div - 1); + return fres; +} + +int pi_fll_set_frequency(fll_type_t which_fll, uint32_t frequency, int check) +{ +1c0031b4 addi sp,sp,-16 +1c0031b6 sw s1,4(sp) +1c0031b8 sw s2,0(sp) +1c0031ba sw ra,12(sp) +1c0031bc sw s0,8(sp) +1c0031be mv s1,a0 +1c0031c0 mv s2,a1 +__disable_irq(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/arch/riscv.h:177 +1c0031c2 csrrci s0,mstatus,8 +fll_get_mult_div_from_frequency(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:58 + unsigned int Log2M = __FL1(freq) - __FL1(fref); +1c0031c6 mv a0,a1 +1c0031c8 jal ra,1c000e8a <__clzsi2> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:59 + unsigned int D = __MAX(1, (FLL_LOG2_MAXM - Log2M) >> 1); +1c0031cc addi a5,a0,-2 +1c0031d0 srli a5,a5,0x1 +1c0031d2 bnez a5,1c0031d6 +1c0031d4 li a5,1 +pi_fll_set_frequency(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:91 + /* Frequency calculation from theory */ + fll_get_mult_div_from_frequency(frequency, &mult, &div); + + /* update mult and div */ + /* TODO: check if fll is on */ + reg1 = FLL_CTRL[which_fll].FLL_CONF1; +1c0031d6 slli a4,s1,0x4 +1c0031da lui a3,0x1a100 +1c0031de add a3,a3,a4 +1c0031e0 lw a4,4(a3) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:93 + + reg1 &= ~FLL_CTRL_CONF1_MULTI_FACTOR_MASK; +1c0031e2 lui a2,0xffff0 +1c0031e4 and a2,a2,a4 +fll_get_mult_div_from_frequency(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:60 + unsigned int M = (freq << D) / fref; +1c0031e6 sll a4,s2,a5 +1c0031ea srli a4,a4,0xf +pi_fll_set_frequency(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:94 + reg1 |= REG_SET(FLL_CTRL_CONF1_MULTI_FACTOR, mult); +1c0031ec slli a4,a4,0x10 +1c0031ee srli a4,a4,0x10 +1c0031f0 or a4,a4,a2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:95 + reg1 &= ~FLL_CTRL_CONF1_CLK_OUT_DIV_MASK; +1c0031f2 lui a2,0xc4000 +1c0031f6 addi a2,a2,-1 +fll_get_mult_div_from_frequency(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:66 + *div = D + 1; +1c0031f8 addi a5,a5,1 +pi_fll_set_frequency(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:95 + reg1 &= ~FLL_CTRL_CONF1_CLK_OUT_DIV_MASK; +1c0031fa and a4,a4,a2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:96 + reg1 |= REG_SET(FLL_CTRL_CONF1_CLK_OUT_DIV, div); +1c0031fc slli a5,a5,0x1a +1c0031fe lui a2,0x3c000 +1c003202 and a5,a5,a2 +1c003204 or a5,a5,a4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:98 + + FLL_CTRL[which_fll].FLL_CONF1 = reg1; +1c003206 sw a5,4(a3) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:101 + + /* finalize */ + if (which_fll == FLL_SOC) +1c003208 bnez s1,1c00320e +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:102 + system_core_clock_update(); +1c00320a jal ra,1c002ad4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:104 + + flls_frequency[which_fll] = frequency; +1c00320e addi a0,gp,-1508 # 1c008df8 +1c003212 slli s1,s1,0x2 +1c003214 add s1,s1,a0 +1c003216 sw s2,0(s1) +__restore_irq(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/arch/riscv.h:157 + csr_write(MSTATUS_ADDR, irq); +1c00321a csrw mstatus,s0 +pi_fll_set_frequency(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:109 + + __restore_irq(irq); + + return frequency; +} +1c00321e lw ra,12(sp) +1c003220 lw s0,8(sp) +1c003222 lw s1,4(sp) +1c003224 mv a0,s2 +1c003226 lw s2,0(sp) +1c003228 addi sp,sp,16 +1c00322a ret +pi_fll_get_frequency(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:180 + } +} + +int pi_fll_get_frequency(fll_type_t which_fll, uint8_t real) +{ + if (real) { +1c00322c addi a3,gp,-1508 # 1c008df8 +1c003230 slli a2,a0,0x2 +1c003234 beqz a1,1c003252 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:184 + /* Frequency calculation from real world */ + int real_freq = 0; + real_freq = fll_get_frequency_from_mult_div( + FLL_CTRL[which_fll].FLL_STATUS, +1c003236 lui a5,0x1a100 +1c00323a slli a0,a0,0x4 +1c00323c add a0,a0,a5 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:183 + real_freq = fll_get_frequency_from_mult_div( +1c00323e lw a4,0(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:185 + REG_GET(FLL_CTRL_CONF1_CLK_OUT_DIV, +1c003240 lw a5,4(a0) +1c003242 slli a4,a4,0xf +1c003244 srli a5,a5,0x1a +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:183 + real_freq = fll_get_frequency_from_mult_div( +1c003246 andi a5,a5,15 +fll_get_frequency_from_mult_div(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:75 + uint32_t fres = (div == 0) ? (fref * mult) : (fref * mult) >> (div - 1); +1c003248 bnez a5,1c003258 +1c00324a mv a5,a4 +pi_fll_get_frequency(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:189 + FLL_CTRL[which_fll].FLL_CONF1)); + + /* Update Frequency */ + flls_frequency[which_fll] = real_freq; +1c00324c add a4,a3,a2 +1c003250 sw a5,0(a4) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:191 + } + return flls_frequency[which_fll]; +1c003252 add a3,a3,a2 +1c003254 lw a0,0(a3) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:192 +} +1c003256 ret +fll_get_frequency_from_mult_div(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:75 + uint32_t fres = (div == 0) ? (fref * mult) : (fref * mult) >> (div - 1); +1c003258 addi a5,a5,-1 +1c00325a srl a5,a4,a5 +1c00325e j 1c00324c +pi_fll_init(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:115 + if (ret_state) { +1c003260 beqz a1,1c003268 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:116 + pi_fll_get_frequency(which_fll, 1); +1c003262 li a1,1 +1c003264 j 1c00322c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:118 + reg1 = FLL_CTRL[which_fll].FLL_CONF1; +1c003268 slli a5,a0,0x4 +1c00326c lui a4,0x1a100 +1c003270 add a4,a4,a5 +1c003272 lw a5,4(a4) +1c003274 mv a3,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:126 + if (!REG_GET(FLL_CTRL_CONF1_MODE, reg1)) { +1c003276 bltz a5,1c0032ac +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:128 + uint32_t reg2 = FLL_CTRL[which_fll].FLL_CONF2; +1c00327a lw a2,8(a4) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:131 + reg2 &= ~FLL_CTRL_CONF2_LOCK_TOLERANCE_MASK; +1c00327c lui a1,0xf0000 +1c003280 addi a1,a1,1023 # f00003ff <__heap_l2_shared_start+0xd3fe6a2f> +1c003284 and a2,a2,a1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:132 + reg2 |= REG_SET(FLL_CTRL_CONF2_LOCK_TOLERANCE, 0x50); +1c003286 lui a1,0x502 +1c00328a addi a1,a1,-2048 # 00501800 <__heap_l2_shared_size+0x49b1d0> +1c00328e or a2,a2,a1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:133 + FLL_CTRL[which_fll].FLL_CONF2 = reg2; +1c003290 sw a2,8(a4) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:143 + uint32_t regint = FLL_CTRL[which_fll].FLL_INTEGRATOR; +1c003292 lw a2,12(a4) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:144 + regint &= ~FLL_CTRL_INTEGRATOR_INT_PART_MASK; +1c003294 lui a1,0xfc010 +1c003298 addi a1,a1,-1 +1c00329a and a2,a2,a1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:145 + regint |= REG_SET(FLL_CTRL_INTEGRATOR_INT_PART, 332); +1c00329c lui a1,0x14c0 +1c0032a0 or a2,a2,a1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:146 + FLL_CTRL[which_fll].FLL_INTEGRATOR = regint; +1c0032a2 sw a2,12(a4) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:152 + reg1 |= REG_SET(FLL_CTRL_CONF1_MODE, 1); +1c0032a4 lui a2,0xc0000 +1c0032a8 or a5,a5,a2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:153 + FLL_CTRL[which_fll].FLL_CONF1 = reg1; +1c0032aa sw a5,4(a4) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:160 + uint32_t freq = flls_frequency[which_fll]; +1c0032ac addi a2,gp,-1508 # 1c008df8 +1c0032b0 slli a0,a3,0x2 +1c0032b4 add a2,a2,a0 +1c0032b6 lw a1,0(a2) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:161 + if (freq) { +1c0032b8 addi a4,gp,-1508 # 1c008df8 +1c0032bc beqz a1,1c0032ce +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:112 +{ +1c0032be addi sp,sp,-16 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:162 + if (pi_fll_set_frequency(which_fll, freq, 0)) +1c0032c0 li a2,0 +1c0032c2 mv a0,a3 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:112 +{ +1c0032c4 sw ra,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:162 + if (pi_fll_set_frequency(which_fll, freq, 0)) +1c0032c6 jal ra,1c0031b4 +1c0032ca beqz a0,1c0032e8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:163 + abort(); +1c0032cc jal 1c0037b8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:167 + REG_GET(FLL_CTRL_CONF1_CLK_OUT_DIV, reg1)); +1c0032ce srli a3,a5,0x1a +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:165 + freq = fll_get_frequency_from_mult_div( +1c0032d2 slli a5,a5,0x10 +1c0032d4 srli a5,a5,0x10 +1c0032d6 andi a3,a3,15 +fll_get_frequency_from_mult_div(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:75 + uint32_t fres = (div == 0) ? (fref * mult) : (fref * mult) >> (div - 1); +1c0032d8 slli a5,a5,0xf +1c0032da beqz a3,1c0032e2 +1c0032dc addi a3,a3,-1 +1c0032de srl a5,a5,a3 +pi_fll_init(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:168 + flls_frequency[which_fll] = freq; +1c0032e2 add a4,a4,a0 +1c0032e4 sw a5,0(a4) +1c0032e6 ret +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:176 +} +1c0032e8 lw ra,12(sp) +1c0032ea addi sp,sp,16 +1c0032ec ret +pi_freq_get(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:201 + flls_frequency[which_fll] = 0; +} + +uint32_t pi_freq_get(pi_freq_domain_e domain) +{ + switch (domain) { +1c0032ee li a4,1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:200 +{ +1c0032f0 mv a5,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:201 + switch (domain) { +1c0032f2 beq a0,a4,1c003306 +1c0032f6 li a4,2 +1c0032f8 beq a0,a4,1c003300 +1c0032fc li a0,0 +1c0032fe bnez a5,1c003304 +pi_fll_get_frequency(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:191 + return flls_frequency[which_fll]; +1c003300 lw a0,-1508(gp) # 1c008df8 +pi_freq_get(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:211 + case PI_FREQ_DOMAIN_PERIPH: + return pi_fll_get_frequency(FLL_SOC, 0); + default: + return 0; + } +} +1c003304 ret +pi_fll_get_frequency(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:191 + return flls_frequency[which_fll]; +1c003306 addi a5,gp,-1508 # 1c008df8 +1c00330a lw a0,8(a5) +pi_freq_get(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:205 + return pi_fll_get_frequency(FLL_CLUSTER, 0); +1c00330c ret +writew(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/arch/io.h:45 +1c00330e lui a5,0x1a10b +1c003312 addi a3,a5,32 # 1a10b020 <__heap_l1_cluster_start+0xa10b000> +1c003316 li a4,1 +1c003318 sw a4,0(a3) +1c00331a addi a4,a5,16 +1c00331e sw a0,0(a4) +1c003320 li a4,151 +1c003324 sw a4,0(a5) +timer_irq_init(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/timer_irq.c:57 + TIMER_CFG_LO_CCFG_MASK | TIMER_CFG_LO_MODE_MASK | + TIMER_CFG_LO_IRQEN_MASK, + (uintptr_t)(PULP_FC_TIMER_ADDR + TIMER_CFG_LO_OFFSET)); + + return 0; +} +1c003326 li a0,0 +1c003328 ret +writew(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/arch/io.h:45 +1c00332a lui a5,0x1a10a +1c00332e addi a5,a5,-2044 # 1a109804 <__heap_l1_cluster_start+0xa1097e4> +1c003332 sw a0,0(a5) +irq_enable(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/irq.c:48 +} + +void irq_enable(uint32_t mask) +{ + writew(mask, (uintptr_t)(PULP_FC_IRQ_ADDR + IRQ_REG_MASK_SET_OFFSET)); +} +1c003334 ret +irq_clint_global_enable(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/irq.c:77 + return val; +} + +uint32_t irq_clint_global_enable() +{ + uint32_t val = csr_read_set(CSR_MSTATUS, MSTATUS_IE); +1c003336 csrrsi a0,mstatus,8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/irq.c:79 + return val; +} +1c00333a ret +writew(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/arch/io.h:45 +1c00333c lui a5,0x1a10a +1c003340 li a4,-1 +1c003342 addi a5,a5,-2040 # 1a109808 <__heap_l1_cluster_start+0xa1097e8> +1c003346 sw a4,0(a5) +pulp_irq_init(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/irq.c:102 +{ + /* the debug module could have enabled irq so we disable it during + * initialization + */ + irq_disable(0xffffffff); +} +1c003348 ret +writew(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/arch/io.h:45 +1c00334a lui a5,0x1a106 +1c00334e li a4,-1 +1c003350 addi a3,a5,4 # 1a106004 <__heap_l1_cluster_start+0xa105fe4> +1c003354 sw a4,0(a3) +1c003356 addi a3,a5,8 +1c00335a sw a4,0(a3) +1c00335c addi a3,a5,12 +1c003360 sw a4,0(a3) +1c003362 addi a3,a5,16 +1c003366 sw a4,0(a3) +1c003368 addi a3,a5,20 +1c00336c sw a4,0(a3) +1c00336e addi a3,a5,24 +1c003372 sw a4,0(a3) +1c003374 addi a3,a5,28 +1c003378 sw a4,0(a3) +1c00337a addi a5,a5,32 +1c00337e sw a4,0(a5) +soc_eu_event_init(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/soc_eu.c:51 +{ + /* deactivate all soc events */ + for (unsigned i = 0; i < SOC_NB_EVENT_REGS; i++) { + soc_eu_mask_set(SOC_FC_FIRST_MASK + i * 4, 0xffffffff); + } +} +1c003380 ret +fc_event_null_event(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fc_event.c:33 +} +1c003382 ret +pi_fc_event_handler_clear(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fc_event.c:53 + fc_event_handlers[event_id] = +1c003384 lui a3,0x1c003 +pi_fc_event_handler_init(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fc_event.c:39 + for (int i = 0; i < NB_SOC_EVENTS; i++) { +1c003388 li a5,0 +pi_fc_event_handler_clear(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fc_event.c:53 + fc_event_handlers[event_id] = +1c00338a addi a2,gp,-1496 # 1c008e04 +1c00338e addi a3,a3,898 # 1c003382 +pi_fc_event_handler_init(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fc_event.c:39 + for (int i = 0; i < NB_SOC_EVENTS; i++) { +1c003392 li a1,168 +pi_fc_event_handler_clear(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fc_event.c:53 (discriminator 3) + fc_event_handlers[event_id] = +1c003396 slli a4,a5,0x2 +1c00339a add a4,a4,a2 +1c00339c sw a3,0(a4) +pi_fc_event_handler_init(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fc_event.c:39 (discriminator 3) + for (int i = 0; i < NB_SOC_EVENTS; i++) { +1c00339e addi a5,a5,1 +1c0033a0 bne a5,a1,1c003396 +__irq_enable(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/irq.h:256 + */ +static inline void __irq_enable(simple_irqn_e IRQn) +{ + /* U mode does not has the right */ + /* NVIC->MASK_SET = (1UL << IRQn); */ + writew(1UL << IRQn, (uintptr_t)(FC_IRQ_ADDR + IRQ_REG_MASK_SET_OFFSET)); +1c0033a4 li a5,1 +1c0033a6 sll a0,a5,a0 +writew(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/arch/io.h:45 +1c0033aa lui a5,0x1a10a +1c0033ae addi a5,a5,-2044 # 1a109804 <__heap_l1_cluster_start+0xa1097e4> +1c0033b2 sw a0,0(a5) +pi_fc_event_handler_init(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fc_event.c:43 +} +1c0033b4 ret +pi_fc_event_handler_set(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fc_event.c:48 + fc_event_handlers[event_id] = event_handler; +1c0033b6 slli a5,a0,0x2 +1c0033ba addi a0,gp,-1496 # 1c008e04 +1c0033be add a0,a0,a5 +1c0033c0 sw a1,0(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fc_event.c:49 +} +1c0033c2 ret +pi_fc_event_handler_clear(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fc_event.c:53 + fc_event_handlers[event_id] = +1c0033c4 slli a5,a0,0x2 +1c0033c8 addi a0,gp,-1496 # 1c008e04 +1c0033cc add a0,a0,a5 +1c0033ce lui a5,0x1c003 +1c0033d2 addi a5,a5,898 # 1c003382 +1c0033d6 sw a5,0(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fc_event.c:55 +} +1c0033d8 ret +__os_native_api_sem_give(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/os.h:123 + } + __restore_irq(irq); +} + +static inline void __os_native_api_sem_give(void *sem_object) +{ +1c0033da <__os_native_api_sem_give> addi sp,sp,-32 +1c0033dc <__os_native_api_sem_give+0x2> sw ra,28(sp) +1c0033de <__os_native_api_sem_give+0x4> sw s0,24(sp) +__disable_irq(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/arch/riscv.h:177 + uint32_t val = csr_read_clear(MSTATUS_ADDR, BIT(MSTATUS_MIE_Pos)); +1c0033e0 <__os_native_api_sem_give+0x6> csrrci s0,mstatus,8 +__get_mcause(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/arch/riscv.h:200 + \details Returns the content of the MCAUSE Register. + \return MCAUSE Register value + */ +__attribute__((always_inline)) static inline uint32_t __get_mcause(void) +{ + uint32_t result = csr_read(MCAUSE_ADDR); +1c0033e4 <__os_native_api_sem_give+0xa> csrr a5,mcause +__os_native_api_sem_give(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/os.h:127 + uint32_t irq = __disable_irq(); + if (__get_mcause() & MCAUSE_IRQ_Msk) { + BaseType_t ret; + xSemaphoreGiveFromISR(sem_object, &ret); +1c0033e8 <__os_native_api_sem_give+0xe> addi a1,sp,12 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/os.h:125 + if (__get_mcause() & MCAUSE_IRQ_Msk) { +1c0033ea <__os_native_api_sem_give+0x10> bgez a5,1c003406 <__os_native_api_sem_give+0x2c> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/os.h:127 + xSemaphoreGiveFromISR(sem_object, &ret); +1c0033ee <__os_native_api_sem_give+0x14> jal ra,1c001426 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/os.h:128 + portYIELD_FROM_ISR(ret); +1c0033f2 <__os_native_api_sem_give+0x18> lw a5,12(sp) +1c0033f4 <__os_native_api_sem_give+0x1a> beqz a5,1c0033fa <__os_native_api_sem_give+0x20> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/os.h:128 (discriminator 1) +1c0033f6 <__os_native_api_sem_give+0x1c> jal ra,1c001b76 +__restore_irq(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/arch/riscv.h:157 + csr_write(MSTATUS_ADDR, irq); +1c0033fa <__os_native_api_sem_give+0x20> csrw mstatus,s0 +__os_native_api_sem_give(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/os.h:134 + } else { + BaseType_t ret; + xSemaphoreGiveFromISR(sem_object, &ret); + } + __restore_irq(irq); +} +1c0033fe <__os_native_api_sem_give+0x24> lw ra,28(sp) +1c003400 <__os_native_api_sem_give+0x26> lw s0,24(sp) +1c003402 <__os_native_api_sem_give+0x28> addi sp,sp,32 +1c003404 <__os_native_api_sem_give+0x2a> ret +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/os.h:131 + xSemaphoreGiveFromISR(sem_object, &ret); +1c003406 <__os_native_api_sem_give+0x2c> jal ra,1c001426 +1c00340a <__os_native_api_sem_give+0x30> j 1c0033fa <__os_native_api_sem_give+0x20> +__os_native_api_sem_take(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/os.h:110 +{ +1c00340c <__os_native_api_sem_take> addi sp,sp,-32 +1c00340e <__os_native_api_sem_take+0x2> sw ra,28(sp) +1c003410 <__os_native_api_sem_take+0x4> sw s0,24(sp) +__disable_irq(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/arch/riscv.h:177 + uint32_t val = csr_read_clear(MSTATUS_ADDR, BIT(MSTATUS_MIE_Pos)); +1c003412 <__os_native_api_sem_take+0x6> csrrci s0,mstatus,8 +__get_mcause(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/arch/riscv.h:200 + uint32_t result = csr_read(MCAUSE_ADDR); +1c003416 <__os_native_api_sem_take+0xa> csrr a5,mcause +__os_native_api_sem_take(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/os.h:112 + if (__get_mcause() & MCAUSE_IRQ_Msk) { +1c00341a <__os_native_api_sem_take+0xe> bgez a5,1c003432 <__os_native_api_sem_take+0x26> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/os.h:115 + xSemaphoreTakeFromISR(sem_object, &ret); +1c00341e <__os_native_api_sem_take+0x12> addi a2,sp,12 +1c003420 <__os_native_api_sem_take+0x14> li a1,0 +1c003422 <__os_native_api_sem_take+0x16> jal ra,1c0017b0 +__restore_irq(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/arch/riscv.h:157 + csr_write(MSTATUS_ADDR, irq); +1c003426 <__os_native_api_sem_take+0x1a> csrw mstatus,s0 +__os_native_api_sem_take(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/os.h:120 +} +1c00342a <__os_native_api_sem_take+0x1e> lw ra,28(sp) +1c00342c <__os_native_api_sem_take+0x20> lw s0,24(sp) +1c00342e <__os_native_api_sem_take+0x22> addi sp,sp,32 +1c003430 <__os_native_api_sem_take+0x24> ret +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/os.h:117 + xSemaphoreTake(sem_object, portMAX_DELAY); +1c003432 <__os_native_api_sem_take+0x26> li a1,-1 +1c003434 <__os_native_api_sem_take+0x28> jal ra,1c00161e +1c003438 <__os_native_api_sem_take+0x2c> j 1c003426 <__os_native_api_sem_take+0x1a> +__pi_task_block(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/pmsis_task.c:25 +#include "pmsis_task.h" +#include "debug.h" +#include "os.h" + +pi_task_t *__pi_task_block(pi_task_t *callback_task) +{ +1c00343a <__pi_task_block> addi sp,sp,-16 +1c00343c <__pi_task_block+0x2> sw s0,8(sp) +1c00343e <__pi_task_block+0x4> sw ra,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/pmsis_task.c:26 + callback_task->id = PI_TASK_NONE_ID; +1c003440 <__pi_task_block+0x6> li a5,1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/pmsis_task.c:25 +{ +1c003442 <__pi_task_block+0x8> mv s0,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/pmsis_task.c:26 + callback_task->id = PI_TASK_NONE_ID; +1c003444 <__pi_task_block+0xa> sw a5,16(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/pmsis_task.c:27 + callback_task->done = 0; +1c003446 <__pi_task_block+0xc> sb zero,68(a0) +pi_sem_init(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/os.h:140 + + +static inline int pi_sem_init(pi_sem_t *sem) +{ + hal_compiler_barrier(); + sem->sem_object = xSemaphoreCreateCounting(0xFFu, 0); +1c00344a <__pi_task_block+0x10> li a1,0 +1c00344c <__pi_task_block+0x12> li a0,255 +1c003450 <__pi_task_block+0x16> jal ra,1c001182 +1c003454 <__pi_task_block+0x1a> sw a0,52(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/os.h:141 + if (sem->sem_object == NULL) { +1c003456 <__pi_task_block+0x1c> beqz a0,1c00346c <__pi_task_block+0x32> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/os.h:144 + return -1; + } + sem->take = __os_native_api_sem_take; +1c003458 <__pi_task_block+0x1e> lui a5,0x1c003 +1c00345c <__pi_task_block+0x22> addi a5,a5,1036 # 1c00340c <__os_native_api_sem_take> +1c003460 <__pi_task_block+0x26> sw a5,56(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/os.h:145 + sem->give = __os_native_api_sem_give; +1c003462 <__pi_task_block+0x28> lui a5,0x1c003 +1c003466 <__pi_task_block+0x2c> addi a5,a5,986 # 1c0033da <__os_native_api_sem_give> +1c00346a <__pi_task_block+0x30> sw a5,60(s0) +__pi_task_block(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/pmsis_task.c:30 + pi_sem_init(&(callback_task->wait_on)); + /* lock the mutex so that task may be descheduled while waiting on it */ + callback_task->destroy = 1; +1c00346c <__pi_task_block+0x32> li a5,1 +1c00346e <__pi_task_block+0x34> sb a5,71(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/pmsis_task.c:31 + callback_task->core_id = -1; +1c003472 <__pi_task_block+0x38> li a5,-1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/pmsis_task.c:33 + return callback_task; +} +1c003474 <__pi_task_block+0x3a> lw ra,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/pmsis_task.c:31 + callback_task->core_id = -1; +1c003476 <__pi_task_block+0x3c> sb a5,69(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/pmsis_task.c:33 +} +1c00347a <__pi_task_block+0x40> mv a0,s0 +1c00347c <__pi_task_block+0x42> lw s0,8(sp) +1c00347e <__pi_task_block+0x44> addi sp,sp,16 +1c003480 <__pi_task_block+0x46> ret +__pi_task_destroy(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/pmsis_task.c:50 + return callback_task; +} + +void __pi_task_destroy(pi_task_t *task) +{ + if (task->destroy) { +1c003482 <__pi_task_destroy> lb a5,71(a0) +1c003486 <__pi_task_destroy+0x4> beqz a5,1c0034b4 <__pi_task_destroy+0x32> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/pmsis_task.c:49 +{ +1c003488 <__pi_task_destroy+0x6> addi sp,sp,-16 +1c00348a <__pi_task_destroy+0x8> sw s0,8(sp) +1c00348c <__pi_task_destroy+0xa> sw ra,12(sp) +1c00348e <__pi_task_destroy+0xc> mv s0,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/pmsis_task.c:51 + task->destroy = 0; +1c003490 <__pi_task_destroy+0xe> sb zero,71(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/pmsis_task.c:55 + /* if the mutex is only virtual (e.g. wait on soc event) */ + hal_compiler_barrier(); + /* if the sched support semaphore/mutexes */ + if (task->wait_on.sem_object) { +1c003494 <__pi_task_destroy+0x12> lw a5,52(a0) +1c003496 <__pi_task_destroy+0x14> beqz a5,1c0034ac <__pi_task_destroy+0x2a> +pi_sem_deinit(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/os.h:152 +} + +static inline int pi_sem_deinit(pi_sem_t *sem) +{ + hal_compiler_barrier(); + if (sem->sem_object == NULL) { +1c003498 <__pi_task_destroy+0x16> lw a0,52(a0) +1c00349a <__pi_task_destroy+0x18> beqz a0,1c0034a8 <__pi_task_destroy+0x26> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/os.h:155 + return -1; + } + vSemaphoreDelete(sem->sem_object); +1c00349c <__pi_task_destroy+0x1a> jal ra,1c0018b8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/os.h:156 + sem->take = NULL; +1c0034a0 <__pi_task_destroy+0x1e> sw zero,56(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/os.h:157 + sem->give = NULL; +1c0034a4 <__pi_task_destroy+0x22> sw zero,60(s0) +__pi_task_destroy(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/pmsis_task.c:57 + pi_sem_deinit(&task->wait_on); + task->wait_on.sem_object = (void *)NULL; +1c0034a8 <__pi_task_destroy+0x26> sw zero,52(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/pmsis_task.c:61 + } + hal_compiler_barrier(); + } +} +1c0034ac <__pi_task_destroy+0x2a> lw ra,12(sp) +1c0034ae <__pi_task_destroy+0x2c> lw s0,8(sp) +1c0034b0 <__pi_task_destroy+0x2e> addi sp,sp,16 +1c0034b2 <__pi_task_destroy+0x30> ret +1c0034b4 <__pi_task_destroy+0x32> ret +__pi_task_wait_on(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/pmsis_task.c:64 + +void __pi_task_wait_on(pi_task_t *task) +{ +1c0034b6 <__pi_task_wait_on> addi sp,sp,-16 +1c0034b8 <__pi_task_wait_on+0x2> sw s0,8(sp) +1c0034ba <__pi_task_wait_on+0x4> sw ra,12(sp) +1c0034bc <__pi_task_wait_on+0x6> mv s0,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/pmsis_task.c:65 + while (!task->done) { +1c0034be <__pi_task_wait_on+0x8> lbu a5,68(s0) +1c0034c2 <__pi_task_wait_on+0xc> slli a5,a5,0x18 +1c0034c4 <__pi_task_wait_on+0xe> srai a5,a5,0x18 +1c0034c6 <__pi_task_wait_on+0x10> beqz a5,1c0034d4 <__pi_task_wait_on+0x1e> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/pmsis_task.c:75 + } + DEBUG_PRINTF("[%s] waited on sem %p\n", __func__, + &(task->wait_on)); + } + hal_compiler_barrier(); + __pi_task_destroy(task); +1c0034c8 <__pi_task_wait_on+0x12> mv a0,s0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/pmsis_task.c:76 +} +1c0034ca <__pi_task_wait_on+0x14> lw s0,8(sp) +1c0034cc <__pi_task_wait_on+0x16> lw ra,12(sp) +1c0034ce <__pi_task_wait_on+0x18> addi sp,sp,16 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/pmsis_task.c:75 + __pi_task_destroy(task); +1c0034d0 <__pi_task_wait_on+0x1a> j 1c003482 <__pi_task_destroy> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/pmsis_task.c:68 + if (task->wait_on.sem_object != NULL) { +1c0034d4 <__pi_task_wait_on+0x1e> lw a5,52(s0) +1c0034d6 <__pi_task_wait_on+0x20> beqz a5,1c0034be <__pi_task_wait_on+0x8> +pi_sem_take(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/os.h:165 +} + +static inline void pi_sem_take(pi_sem_t *sem) +{ + hal_compiler_barrier(); + sem->take(sem->sem_object); +1c0034d8 <__pi_task_wait_on+0x22> lw a5,56(s0) +1c0034da <__pi_task_wait_on+0x24> lw a0,52(s0) +1c0034dc <__pi_task_wait_on+0x26> jalr a5 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/os.h:166 +} +1c0034de <__pi_task_wait_on+0x28> j 1c0034be <__pi_task_wait_on+0x8> +pi_task_release(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/pmsis_task.c:101 + /* lock the mutex so that task may be descheduled while waiting on it */ + return callback_task; +} + +void pi_task_release(pi_task_t *task) +{ +1c0034e0 addi sp,sp,-16 +1c0034e2 sw s0,8(sp) +1c0034e4 mv s0,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/pmsis_task.c:105 + DEBUG_PRINTF("[%s] releasing task %p\n", __func__, task); + /* if the mutex is only virtual (e.g. wait on soc event) + * if the sched support semaphore/mutexes */ + if (task->wait_on.sem_object) { +1c0034e6 lw a0,52(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/pmsis_task.c:101 +{ +1c0034e8 sw ra,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/pmsis_task.c:105 + if (task->wait_on.sem_object) { +1c0034ea beqz a0,1c0034f0 +pi_sem_give(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/os.h:170 + +static inline void pi_sem_give(pi_sem_t *sem) +{ + sem->give(sem->sem_object); +1c0034ec lw a5,60(s0) +1c0034ee jalr a5 +pi_task_release(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/pmsis_task.c:110 + DEBUG_PRINTF("[%s] sem give %p\n", __func__, &task->wait_on); + pi_sem_give(&(task->wait_on)); + } + hal_compiler_barrier(); + task->done = 1; +1c0034f0 li a5,1 +1c0034f2 sb a5,68(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/pmsis_task.c:112 + hal_compiler_barrier(); +} +1c0034f6 lw ra,12(sp) +1c0034f8 lw s0,8(sp) +1c0034fa addi sp,sp,16 +1c0034fc ret +pi_open_from_conf(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/device.c:52 + device->config = conf; + // TODO: add debug warning here + break; + } +#else + device->config = conf; +1c0034fe sw a1,4(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/device.c:54 +#endif +} +1c003500 ret +test_entry(): +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:145 + else + pi_spi_send(spim, cmd_buffer, 8 * 8, PI_SPI_CS_AUTO); +} + +static int test_entry() +{ +1c003502 addi sp,sp,-464 +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:155 + + int total_size; + get_info(&total_size); + int buffer_size = total_size / NB_BUFFERS; + + pi_spi_conf_init(&conf); +1c003504 addi a0,sp,44 +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:145 +{ +1c003506 sw ra,460(sp) +1c00350a sw s0,456(sp) +1c00350e sw s1,452(sp) +1c003512 sw s2,448(sp) +1c003516 sw s3,444(sp) +1c00351a sw s4,440(sp) +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:149 + PI_L2 uint8_t add_buffer[] = {0x00, 0x00, 0x00, 0x00, 0x00}; +1c00351e sw zero,24(sp) +1c003520 sb zero,28(sp) +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:155 + pi_spi_conf_init(&conf); +1c003524 jal ra,1c002b16 +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:159 + + conf.wordsize = PI_SPI_WORDSIZE_8; + conf.big_endian = 1; + conf.max_baudrate = 10000000; +1c003528 lui a5,0x989 +1c00352c addi a5,a5,1664 # 00989680 <__heap_l2_shared_size+0x923050> +1c003530 sw a5,44(sp) +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:165 + conf.polarity = 0; + conf.phase = 0; + conf.itf = 0; + conf.cs = 0; + + pi_open_from_conf(&spim0, &conf); +1c003532 addi a1,sp,44 +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:157 + conf.wordsize = PI_SPI_WORDSIZE_8; +1c003534 li a5,256 +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:165 + pi_open_from_conf(&spim0, &conf); +1c003538 addi a0,sp,32 +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:157 + conf.wordsize = PI_SPI_WORDSIZE_8; +1c00353a sh a5,48(sp) +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:160 + conf.polarity = 0; +1c00353e sw zero,52(sp) +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:161 + conf.phase = 0; +1c003540 sw zero,56(sp) +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:163 + conf.cs = 0; +1c003542 sh zero,60(sp) +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:165 + pi_open_from_conf(&spim0, &conf); +1c003546 jal ra,1c0034fe +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:166 + if (pi_spi_open(&spim0)) +1c00354a addi a0,sp,32 +1c00354c jal ra,1c002b36 +1c003550 beqz a0,1c003572 +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:241 + if (error == 0) + printf("First error at index %d, expected 0x%x, got 0x%x at %p\n", + i, tx_buffer[i], rx_buffer_1[i], + &rx_buffer_1[i]); + error++; + return -1; +1c003552 li s0,-1 +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:252 + } else { + printf("Test success\n"); + } + pi_spi_close(&spim0); + return error; +} +1c003554 lw ra,460(sp) +1c003558 mv a0,s0 +1c00355a lw s0,456(sp) +1c00355e lw s1,452(sp) +1c003562 lw s2,448(sp) +1c003566 lw s3,444(sp) +1c00356a lw s4,440(sp) +1c00356e addi sp,sp,464 +1c003570 ret +1c003572 mv s0,a0 +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:169 + printf("malloc tx buffer\n"); +1c003574 lui a0,0x1c009 +1c003578 addi a0,a0,-1900 # 1c008894 <__func__.0+0x50> +1c00357c jal ra,1c003ed2 +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:170 + tx_buffer = pmsis_l2_malloc(total_size); +1c003580 li a0,256 +1c003584 jal ra,1c002a6e +1c003588 sw a0,-588(gp) # 1c009190 +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:171 + if (tx_buffer == NULL) +1c00358c addi s1,gp,-588 # 1c009190 +1c003590 beqz a0,1c003552 +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:174 + printf("malloc rx buffer 1\n"); +1c003592 lui a0,0x1c009 +1c003596 addi a0,a0,-1880 # 1c0088a8 <__func__.0+0x64> +1c00359a jal ra,1c003ed2 +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:175 + rx_buffer_1 = pmsis_l2_malloc(total_size); +1c00359e li a0,256 +1c0035a2 jal ra,1c002a6e +1c0035a6 sw a0,-596(gp) # 1c009188 +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:176 + if (rx_buffer_1 == NULL) +1c0035aa addi s2,gp,-596 # 1c009188 +1c0035ae beqz a0,1c003552 +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:179 + printf("malloc rx buffer 2\n"); +1c0035b0 lui a0,0x1c009 +1c0035b4 addi a0,a0,-1860 # 1c0088bc <__func__.0+0x78> +1c0035b8 jal ra,1c003ed2 +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:180 + rx_buffer_2 = pmsis_l2_malloc(total_size); +1c0035bc li a0,256 +1c0035c0 jal ra,1c002a6e +1c0035c4 sw a0,-592(gp) # 1c00918c +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:181 + if (rx_buffer_2 == NULL) +1c0035c8 addi s4,gp,-592 # 1c00918c +1c0035cc beqz a0,1c003552 +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:184 + printf("tx buffer init\n"); +1c0035ce lui a0,0x1c009 +1c0035d2 addi a0,a0,-1840 # 1c0088d0 <__func__.0+0x8c> +1c0035d6 jal ra,1c003ed2 +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:185 + for (int i = 0; i < total_size; i++) { +1c0035da li a5,0 +1c0035dc li a3,256 +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:186 (discriminator 3) + tx_buffer[i] = i; +1c0035e0 lw a4,0(s1) +1c0035e2 add a4,a4,a5 +1c0035e4 sb a5,0(a4) # 1a100000 <__heap_l1_cluster_start+0xa0fffe0> +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:185 (discriminator 3) + for (int i = 0; i < total_size; i++) { +1c0035e8 addi a5,a5,1 +1c0035ea bne a5,a3,1c0035e0 +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:197 + printf("async cs auto\n"); +1c0035ee lui a0,0x1c009 +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:189 + uint8_t cmd = CMD_WREN; +1c0035f2 li s3,6 +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:197 + printf("async cs auto\n"); +1c0035f4 addi a0,a0,-1824 # 1c0088e0 <__func__.0+0x9c> +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:189 + uint8_t cmd = CMD_WREN; +1c0035f8 sb s3,22(sp) +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:197 + printf("async cs auto\n"); +1c0035fc jal ra,1c003ed2 +pi_task_block(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/pmsis_task.h:86 + return __pi_task_block(task); +1c003600 addi a0,sp,72 +test_entry(): +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:201 + cmd = CMD_WREN; +1c003602 sb s3,22(sp) +pi_task_block(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/pmsis_task.h:86 +1c003606 jal ra,1c00343a <__pi_task_block> +1c00360a mv a4,a0 +test_entry(): +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:202 + pi_spi_send_async(&spim0, &cmd, (1*8), PI_SPI_CS_AUTO, pi_task_block(&event_wren_1)); +1c00360c li a3,0 +1c00360e li a2,8 +1c003610 addi a1,sp,22 +1c003614 addi a0,sp,32 +1c003616 jal ra,1c002b42 +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:204 + add_buffer[0] = CMD_4PP; +1c00361a li a5,18 +pi_task_block(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/pmsis_task.h:86 +1c00361c addi a0,sp,144 +test_entry(): +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:204 +1c00361e sb a5,24(sp) +pi_task_block(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/pmsis_task.h:86 +1c003622 jal ra,1c00343a <__pi_task_block> +1c003626 mv a4,a0 +test_entry(): +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:205 + pi_spi_send_async(&spim0, add_buffer, (sizeof(add_buffer)*8), PI_SPI_CS_KEEP, pi_task_block(&event_4pp_1)); +1c003628 li a3,1 +1c00362a li a2,40 +1c00362e addi a1,sp,24 +1c003630 addi a0,sp,32 +1c003632 jal ra,1c002b42 +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:207 + pi_spi_send_async(&spim0, tx_buffer + buffer_size * i, (buffer_size*8), PI_SPI_CS_AUTO, pi_task_block(&event_tx_1)); +1c003636 lw a1,0(s1) +pi_task_block(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/pmsis_task.h:86 +1c003638 addi a0,sp,216 +test_entry(): +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:216 + printf("WIP Register: %d\n", status); +1c00363a lui s3,0x1c009 +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:207 + pi_spi_send_async(&spim0, tx_buffer + buffer_size * i, (buffer_size*8), PI_SPI_CS_AUTO, pi_task_block(&event_tx_1)); +1c00363e sw a1,12(sp) +pi_task_block(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/pmsis_task.h:86 +1c003640 jal ra,1c00343a <__pi_task_block> +test_entry(): +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:207 +1c003644 lw a1,12(sp) +1c003646 lui a2,0x1 +pi_task_block(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/pmsis_task.h:86 +1c003648 mv a4,a0 +test_entry(): +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:207 +1c00364a li a3,0 +1c00364c addi a2,a2,-2048 # 00000800 <__stack_size> +1c003650 addi a0,sp,32 +1c003652 jal ra,1c002b42 +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:210 + cmd = CMD_RDSR1; // command to read status register 1 +1c003656 li a5,5 +1c003658 sb a5,22(sp) +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:211 + volatile uint8_t status = 0xFF; +1c00365c li a5,-1 +1c00365e sb a5,23(sp) +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:214 (discriminator 1) + pi_spi_send(&spim0, &cmd, (1*8), PI_SPI_CS_KEEP); +1c003662 li a3,1 +1c003664 li a2,8 +1c003666 addi a1,sp,22 +1c00366a addi a0,sp,32 +1c00366c jal ra,1c002b46 +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:215 (discriminator 1) + pi_spi_receive(&spim0, &status, (1*8), PI_SPI_CS_AUTO); +1c003670 li a3,0 +1c003672 li a2,8 +1c003674 addi a1,sp,23 +1c003678 addi a0,sp,32 +1c00367a jal ra,1c002b7e +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:216 (discriminator 1) + printf("WIP Register: %d\n", status); +1c00367e lbu a1,23(sp) +1c003682 addi a0,s3,-1808 # 1c0088f0 <__func__.0+0xac> +1c003686 andi a1,a1,255 +1c00368a jal ra,1c003db4 +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:218 (discriminator 1) + } while ((status & 0x01) != 0);// flash is buzy if status != 0 +1c00368e lbu a5,23(sp) +1c003692 andi a5,a5,1 +1c003694 bnez a5,1c003662 +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:221 (discriminator 2) + add_buffer[0] = CMD_4READ; +1c003696 li a5,19 +pi_task_block(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/pmsis_task.h:86 (discriminator 2) +1c003698 addi a0,sp,288 +test_entry(): +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:221 (discriminator 2) +1c00369a sb a5,24(sp) +pi_task_block(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/pmsis_task.h:86 (discriminator 2) +1c00369e jal ra,1c00343a <__pi_task_block> +1c0036a2 mv a4,a0 +test_entry(): +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:222 (discriminator 2) + pi_spi_send_async(&spim0, add_buffer, (sizeof(add_buffer)*8), PI_SPI_CS_KEEP, pi_task_block(&event_4read_1)); +1c0036a4 li a3,1 +1c0036a6 li a2,40 +1c0036aa addi a1,sp,24 +1c0036ac addi a0,sp,32 +1c0036ae jal ra,1c002b42 +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:223 (discriminator 2) + pi_spi_receive_async(&spim0, rx_buffer_1 + buffer_size * i, (buffer_size*8), PI_SPI_CS_AUTO, pi_task_block(&event_rx_1)); +1c0036b2 lw a1,0(s2) +pi_task_block(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/pmsis_task.h:86 (discriminator 2) +1c0036b6 addi a0,sp,360 +test_entry(): +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:223 (discriminator 2) +1c0036b8 sw a1,12(sp) +pi_task_block(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/pmsis_task.h:86 (discriminator 2) +1c0036ba jal ra,1c00343a <__pi_task_block> +test_entry(): +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:223 (discriminator 2) +1c0036be lw a1,12(sp) +1c0036c0 lui a2,0x1 +pi_task_block(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/pmsis_task.h:86 (discriminator 2) +1c0036c2 mv a4,a0 +test_entry(): +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:223 (discriminator 2) +1c0036c4 li a3,0 +1c0036c6 addi a2,a2,-2048 # 00000800 <__stack_size> +1c0036ca addi a0,sp,32 +1c0036cc jal ra,1c002b7a +pi_task_wait_on(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/pmsis_task.h:130 (discriminator 2) + __pi_task_wait_on(task); +1c0036d0 addi a0,sp,72 +1c0036d2 jal ra,1c0034b6 <__pi_task_wait_on> +1c0036d6 addi a0,sp,144 +1c0036d8 jal ra,1c0034b6 <__pi_task_wait_on> +1c0036dc addi a0,sp,216 +1c0036de jal ra,1c0034b6 <__pi_task_wait_on> +1c0036e2 addi a0,sp,288 +1c0036e4 jal ra,1c0034b6 <__pi_task_wait_on> +1c0036e8 addi a0,sp,360 +1c0036ea jal ra,1c0034b6 <__pi_task_wait_on> +test_entry(): +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:232 (discriminator 2) + printf("starting error check\n"); +1c0036ee lui a0,0x1c009 +1c0036f2 addi a0,a0,-1788 # 1c008904 <__func__.0+0xc0> +1c0036f6 jal ra,1c003ed2 +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:235 (discriminator 2) + if (rx_buffer_1[i] != tx_buffer[i] && rx_buffer_2[i] != tx_buffer[i]) { +1c0036fa lw a0,0(s2) +1c0036fe lw a6,0(s1) +1c003702 lw a7,0(s4) +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:234 (discriminator 2) + for (int i = 0; i < total_size; i++) { +1c003706 li a1,0 +1c003708 li a5,256 +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:235 + if (rx_buffer_1[i] != tx_buffer[i] && rx_buffer_2[i] != tx_buffer[i]) { +1c00370c add a4,a0,a1 +1c003710 add a2,a6,a1 +1c003714 lbu a3,0(a4) +1c003718 lbu a2,0(a2) +1c00371c beq a3,a2,1c00373a +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:235 (discriminator 1) +1c003720 add t1,a7,a1 +1c003724 lbu t1,0(t1) +1c003728 beq t1,a2,1c00373a +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:237 + printf("First error at index %d, expected 0x%x, got 0x%x at %p\n", +1c00372c lui a0,0x1c009 +1c003730 addi a0,a0,-1764 # 1c00891c <__func__.0+0xd8> +1c003734 jal ra,1c003db4 +1c003738 j 1c003552 +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:234 (discriminator 2) + for (int i = 0; i < total_size; i++) { +1c00373a addi a1,a1,1 +1c00373c bne a1,a5,1c00370c +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:248 + printf("Test success\n"); +1c003740 lui a0,0x1c009 +1c003744 addi a0,a0,-1708 # 1c008954 <__func__.0+0x110> +1c003748 jal ra,1c003ed2 +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:250 + pi_spi_close(&spim0); +1c00374c addi a0,sp,32 +1c00374e jal ra,1c002b3c +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:251 + return error; +1c003752 j 1c003554 +test_kickoff(): +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:255 + +static void test_kickoff(void *arg) +{ +1c003754 addi sp,sp,-16 +1c003756 sw ra,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:256 + int ret = test_entry(); +1c003758 jal ra,1c003502 +pmsis_exit(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/os.h:36 + exit(err); +1c00375c jal 1c003814 +main(): +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:262 + pmsis_exit(ret); +} + +/* Program Entry. */ +int main(void) +{ +1c00375e
addi sp,sp,-32 +1c003760 sw ra,28(sp) +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:265 + #ifdef USE_FREERTOS_TEST + /* Init board hardware. */ + system_init(); +1c003762 jal ra,1c002a8a +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:266 + printf("\n\n\t *** FreeRTOS Hello World *** \n\n"); +1c003766 lui a0,0x1c009 +1c00376a addi a0,a0,-1692 # 1c008964 <__func__.0+0x120> +1c00376e jal ra,1c003ed2 +pmsis_kickoff(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/os.h:44 + xTask = xTaskCreate(arg, "main", +1c003772 lui a1,0x1c009 +1c003776 lui a0,0x1c003 +1c00377a addi a5,sp,12 +1c00377c li a4,1 +1c00377e li a3,0 +1c003780 li a2,400 +1c003784 addi a1,a1,-1656 # 1c008988 <__func__.0+0x144> +1c003788 addi a0,a0,1876 # 1c003754 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/os.h:42 + TaskHandle_t xHandler0 = NULL; +1c00378c sw zero,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/os.h:44 + xTask = xTaskCreate(arg, "main", +1c00378e jal ra,1c00204a +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/os.h:48 + if (xTask != pdPASS) { +1c003792 li a5,1 +1c003794 beq a0,a5,1c0037a8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/os.h:49 + printf("main is NULL !\n"); +1c003798 lui a0,0x1c009 +1c00379c addi a0,a0,-1648 # 1c008990 <__func__.0+0x14c> +1c0037a0 jal ra,1c003ed2 +pmsis_exit(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/os.h:36 + exit(err); +1c0037a4 li a0,-1 +1c0037a6 jal 1c003814 +__enable_irq(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/arch/riscv.h:167 + csr_read_set(MSTATUS_ADDR, BIT(MSTATUS_MIE_Pos)); +1c0037a8 csrrsi a5,mstatus,8 +pmsis_kickoff(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/os.h:66 + vTaskStartScheduler(); +1c0037ac jal ra,1c00226a +main(): +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:274 +#ifdef USE_PULPOS_TEST + printf("\n\n\t *** Pulp OS Hello World *** \n\n"); + #endif + + return pmsis_kickoff((void *)test_kickoff); +} +1c0037b0 lw ra,28(sp) +1c0037b2 li a0,0 +1c0037b4 addi sp,sp,32 +1c0037b6 ret +abort(): +1c0037b8 addi sp,sp,-16 +1c0037ba li a0,6 +1c0037bc sw ra,12(sp) +1c0037be jal ra,1c00406a +1c0037c2 li a0,1 +1c0037c4 jal ra,1c0029b6 <_exit> +__assert_func(): +1c0037c8 <__assert_func> lui a5,0x1c009 +1c0037cc <__assert_func+0x4> lw a5,-956(a5) # 1c008c44 <_impure_ptr> +1c0037d0 <__assert_func+0x8> addi sp,sp,-16 +1c0037d2 <__assert_func+0xa> mv a6,a2 +1c0037d4 <__assert_func+0xc> sw ra,12(sp) +1c0037d6 <__assert_func+0xe> mv a7,a0 +1c0037d8 <__assert_func+0x10> mv a4,a1 +1c0037da <__assert_func+0x12> lw a0,12(a5) +1c0037dc <__assert_func+0x14> mv a2,a3 +1c0037de <__assert_func+0x16> beqz a6,1c0037fa <__assert_func+0x32> +1c0037e2 <__assert_func+0x1a> lui a5,0x1c009 +1c0037e6 <__assert_func+0x1e> addi a5,a5,-1632 # 1c0089a0 <__func__.0+0x15c> +1c0037ea <__assert_func+0x22> lui a1,0x1c009 +1c0037ee <__assert_func+0x26> mv a3,a7 +1c0037f0 <__assert_func+0x28> addi a1,a1,-1616 # 1c0089b0 <__func__.0+0x16c> +1c0037f4 <__assert_func+0x2c> jal 1c00387a +1c0037f6 <__assert_func+0x2e> jal ra,1c0037b8 +1c0037fa <__assert_func+0x32> lui a6,0x1c009 +1c0037fe <__assert_func+0x36> addi a5,a6,-1620 # 1c0089ac <__func__.0+0x168> +1c003802 <__assert_func+0x3a> addi a6,a6,-1620 +1c003806 <__assert_func+0x3e> j 1c0037ea <__assert_func+0x22> +atexit(): +1c003808 mv a1,a0 +1c00380a li a3,0 +1c00380c li a2,0 +1c00380e li a0,0 +1c003810 j 1c004276 <__register_exitproc> +exit(): +1c003814 addi sp,sp,-16 +1c003816 lui a5,0x1c004 +1c00381a sw s0,8(sp) +1c00381c sw ra,12(sp) +1c00381e addi a5,a5,754 # 1c0042f2 <__call_exitprocs> +1c003822 mv s0,a0 +1c003824 beqz a5,1c00382c +1c003826 li a1,0 +1c003828 jal ra,1c0042f2 <__call_exitprocs> +1c00382c lui a5,0x1c009 +1c003830 lw a0,-1064(a5) # 1c008bd8 <_global_impure_ptr> +1c003834 lw a5,40(a0) +1c003836 beqz a5,1c00383a +1c003838 jalr a5 +1c00383a mv a0,s0 +1c00383c jal ra,1c0029b6 <_exit> +__libc_fini_array(): +1c003840 <__libc_fini_array> addi sp,sp,-16 +1c003842 <__libc_fini_array+0x2> lui a5,0x1c009 +1c003846 <__libc_fini_array+0x6> sw s0,8(sp) +1c003848 <__libc_fini_array+0x8> lui s0,0x1c009 +1c00384c <__libc_fini_array+0xc> addi a4,a5,-1060 # 1c008bdc +1c003850 <__libc_fini_array+0x10> addi s0,s0,-1060 # 1c008bdc +1c003854 <__libc_fini_array+0x14> sub s0,s0,a4 +1c003856 <__libc_fini_array+0x16> sw s1,4(sp) +1c003858 <__libc_fini_array+0x18> sw ra,12(sp) +1c00385a <__libc_fini_array+0x1a> srai s0,s0,0x2 +1c00385c <__libc_fini_array+0x1c> addi s1,a5,-1060 +1c003860 <__libc_fini_array+0x20> bnez s0,1c00386c <__libc_fini_array+0x2c> +1c003862 <__libc_fini_array+0x22> lw ra,12(sp) +1c003864 <__libc_fini_array+0x24> lw s0,8(sp) +1c003866 <__libc_fini_array+0x26> lw s1,4(sp) +1c003868 <__libc_fini_array+0x28> addi sp,sp,16 +1c00386a <__libc_fini_array+0x2a> ret +1c00386c <__libc_fini_array+0x2c> addi s0,s0,-1 +1c00386e <__libc_fini_array+0x2e> slli a5,s0,0x2 +1c003872 <__libc_fini_array+0x32> add a5,a5,s1 +1c003874 <__libc_fini_array+0x34> lw a5,0(a5) +1c003876 <__libc_fini_array+0x36> jalr a5 +1c003878 <__libc_fini_array+0x38> j 1c003860 <__libc_fini_array+0x20> +fprintf(): +1c00387a addi sp,sp,-64 +1c00387c sw a5,52(sp) +1c00387e lui a5,0x1c009 +1c003882 sw a2,40(sp) +1c003884 mv a2,a1 +1c003886 mv a1,a0 +1c003888 lw a0,-956(a5) # 1c008c44 <_impure_ptr> +1c00388c sw a3,44(sp) +1c00388e addi a3,sp,40 +1c003890 sw ra,28(sp) +1c003892 sw a4,48(sp) +1c003894 sw a6,56(sp) +1c003896 sw a7,60(sp) +1c003898 sw a3,12(sp) +1c00389a jal 1c003b0c <_vfiprintf_r> +1c00389c lw ra,28(sp) +1c00389e addi sp,sp,64 +1c0038a0 ret +__libc_init_array(): +1c0038a2 <__libc_init_array> addi sp,sp,-16 +1c0038a4 <__libc_init_array+0x2> sw s0,8(sp) +1c0038a6 <__libc_init_array+0x4> sw s1,4(sp) +1c0038a8 <__libc_init_array+0x6> lui s0,0x1c009 +1c0038ac <__libc_init_array+0xa> lui s1,0x1c009 +1c0038b0 <__libc_init_array+0xe> addi a5,s1,-1060 # 1c008bdc +1c0038b4 <__libc_init_array+0x12> addi s0,s0,-1060 # 1c008bdc +1c0038b8 <__libc_init_array+0x16> sub s0,s0,a5 +1c0038ba <__libc_init_array+0x18> sw s2,0(sp) +1c0038bc <__libc_init_array+0x1a> sw ra,12(sp) +1c0038be <__libc_init_array+0x1c> srai s0,s0,0x2 +1c0038c0 <__libc_init_array+0x1e> addi s1,s1,-1060 +1c0038c4 <__libc_init_array+0x22> li s2,0 +1c0038c6 <__libc_init_array+0x24> bne s2,s0,1c0038f4 <__libc_init_array+0x52> +1c0038ca <__libc_init_array+0x28> lui s1,0x1c009 +1c0038ce <__libc_init_array+0x2c> lui s0,0x1c009 +1c0038d2 <__libc_init_array+0x30> addi a5,s1,-1060 # 1c008bdc +1c0038d6 <__libc_init_array+0x34> addi s0,s0,-1060 # 1c008bdc +1c0038da <__libc_init_array+0x38> sub s0,s0,a5 +1c0038dc <__libc_init_array+0x3a> srai s0,s0,0x2 +1c0038de <__libc_init_array+0x3c> addi s1,s1,-1060 +1c0038e2 <__libc_init_array+0x40> li s2,0 +1c0038e4 <__libc_init_array+0x42> bne s2,s0,1c0038fe <__libc_init_array+0x5c> +1c0038e8 <__libc_init_array+0x46> lw ra,12(sp) +1c0038ea <__libc_init_array+0x48> lw s0,8(sp) +1c0038ec <__libc_init_array+0x4a> lw s1,4(sp) +1c0038ee <__libc_init_array+0x4c> lw s2,0(sp) +1c0038f0 <__libc_init_array+0x4e> addi sp,sp,16 +1c0038f2 <__libc_init_array+0x50> ret +1c0038f4 <__libc_init_array+0x52> lw a5,0(s1) +1c0038f6 <__libc_init_array+0x54> addi s2,s2,1 +1c0038f8 <__libc_init_array+0x56> addi s1,s1,4 +1c0038fa <__libc_init_array+0x58> jalr a5 +1c0038fc <__libc_init_array+0x5a> j 1c0038c6 <__libc_init_array+0x24> +1c0038fe <__libc_init_array+0x5c> lw a5,0(s1) +1c003900 <__libc_init_array+0x5e> addi s2,s2,1 +1c003902 <__libc_init_array+0x60> addi s1,s1,4 +1c003904 <__libc_init_array+0x62> jalr a5 +1c003906 <__libc_init_array+0x64> j 1c0038e4 <__libc_init_array+0x42> +malloc(): +1c003908 lui a5,0x1c009 +1c00390c mv a1,a0 +1c00390e lw a0,-956(a5) # 1c008c44 <_impure_ptr> +1c003912 j 1c0039c8 <_malloc_r> +free(): +1c003914 lui a5,0x1c009 +1c003918 mv a1,a0 +1c00391a lw a0,-956(a5) # 1c008c44 <_impure_ptr> +1c00391e j 1c003920 <_free_r> +_free_r(): +1c003920 <_free_r> beqz a1,1c0039c6 <_free_r+0xa6> +1c003922 <_free_r+0x2> lw a5,-4(a1) +1c003926 <_free_r+0x6> addi sp,sp,-32 +1c003928 <_free_r+0x8> sw s0,24(sp) +1c00392a <_free_r+0xa> sw ra,28(sp) +1c00392c <_free_r+0xc> addi s0,a1,-4 +1c003930 <_free_r+0x10> bgez a5,1c003936 <_free_r+0x16> +1c003934 <_free_r+0x14> add s0,s0,a5 +1c003936 <_free_r+0x16> sw a0,12(sp) +1c003938 <_free_r+0x18> jal ra,1c002a66 <__malloc_lock> +1c00393c <_free_r+0x1c> lw a5,-584(gp) # 1c009194 <__malloc_free_list> +1c003940 <_free_r+0x20> lw a0,12(sp) +1c003942 <_free_r+0x22> mv a2,a4 +1c003944 <_free_r+0x24> bnez a5,1c003958 <_free_r+0x38> +1c003946 <_free_r+0x26> sw zero,4(s0) +1c00394a <_free_r+0x2a> sw s0,-584(gp) # 1c009194 <__malloc_free_list> +1c00394e <_free_r+0x2e> lw s0,24(sp) +1c003950 <_free_r+0x30> lw ra,28(sp) +1c003952 <_free_r+0x32> addi sp,sp,32 +1c003954 <_free_r+0x34> j 1c002a6a <__malloc_unlock> +1c003958 <_free_r+0x38> bgeu s0,a5,1c003976 <_free_r+0x56> +1c00395c <_free_r+0x3c> lw a3,0(s0) +1c00395e <_free_r+0x3e> add a4,s0,a3 +1c003962 <_free_r+0x42> bne a5,a4,1c00396e <_free_r+0x4e> +1c003966 <_free_r+0x46> lw a4,0(a5) +1c003968 <_free_r+0x48> lw a5,4(a5) +1c00396a <_free_r+0x4a> add a4,a4,a3 +1c00396c <_free_r+0x4c> sw a4,0(s0) +1c00396e <_free_r+0x4e> sw a5,4(s0) +1c003970 <_free_r+0x50> sw s0,-584(gp) # 1c009194 <__malloc_free_list> +1c003974 <_free_r+0x54> j 1c00394e <_free_r+0x2e> +1c003976 <_free_r+0x56> mv a4,a5 +1c003978 <_free_r+0x58> lw a5,4(a5) +1c00397a <_free_r+0x5a> beqz a5,1c003980 <_free_r+0x60> +1c00397c <_free_r+0x5c> bgeu s0,a5,1c003976 <_free_r+0x56> +1c003980 <_free_r+0x60> lw a3,0(a4) +1c003982 <_free_r+0x62> add a2,a4,a3 +1c003986 <_free_r+0x66> bne a2,s0,1c0039a4 <_free_r+0x84> +1c00398a <_free_r+0x6a> lw a2,0(s0) +1c00398c <_free_r+0x6c> add a3,a3,a2 +1c00398e <_free_r+0x6e> sw a3,0(a4) +1c003990 <_free_r+0x70> add a2,a4,a3 +1c003994 <_free_r+0x74> bne a5,a2,1c00394e <_free_r+0x2e> +1c003998 <_free_r+0x78> lw a2,0(a5) +1c00399a <_free_r+0x7a> lw a5,4(a5) +1c00399c <_free_r+0x7c> add a3,a3,a2 +1c00399e <_free_r+0x7e> sw a3,0(a4) +1c0039a0 <_free_r+0x80> sw a5,4(a4) +1c0039a2 <_free_r+0x82> j 1c00394e <_free_r+0x2e> +1c0039a4 <_free_r+0x84> bgeu s0,a2,1c0039ae <_free_r+0x8e> +1c0039a8 <_free_r+0x88> li a5,12 +1c0039aa <_free_r+0x8a> sw a5,0(a0) +1c0039ac <_free_r+0x8c> j 1c00394e <_free_r+0x2e> +1c0039ae <_free_r+0x8e> lw a2,0(s0) +1c0039b0 <_free_r+0x90> add a3,s0,a2 +1c0039b4 <_free_r+0x94> bne a5,a3,1c0039c0 <_free_r+0xa0> +1c0039b8 <_free_r+0x98> lw a3,0(a5) +1c0039ba <_free_r+0x9a> lw a5,4(a5) +1c0039bc <_free_r+0x9c> add a3,a3,a2 +1c0039be <_free_r+0x9e> sw a3,0(s0) +1c0039c0 <_free_r+0xa0> sw a5,4(s0) +1c0039c2 <_free_r+0xa2> sw s0,4(a4) +1c0039c4 <_free_r+0xa4> j 1c00394e <_free_r+0x2e> +1c0039c6 <_free_r+0xa6> ret +_malloc_r(): +1c0039c8 <_malloc_r> addi sp,sp,-32 +1c0039ca <_malloc_r+0x2> sw s1,20(sp) +1c0039cc <_malloc_r+0x4> addi s1,a1,3 +1c0039d0 <_malloc_r+0x8> andi s1,s1,-4 +1c0039d2 <_malloc_r+0xa> sw s2,16(sp) +1c0039d4 <_malloc_r+0xc> sw ra,28(sp) +1c0039d6 <_malloc_r+0xe> sw s0,24(sp) +1c0039d8 <_malloc_r+0x10> sw s3,12(sp) +1c0039da <_malloc_r+0x12> addi s1,s1,8 +1c0039dc <_malloc_r+0x14> li a5,12 +1c0039de <_malloc_r+0x16> mv s2,a0 +1c0039e0 <_malloc_r+0x18> bgeu s1,a5,1c003a26 <_malloc_r+0x5e> +1c0039e4 <_malloc_r+0x1c> li s1,12 +1c0039e6 <_malloc_r+0x1e> bltu s1,a1,1c003a2a <_malloc_r+0x62> +1c0039ea <_malloc_r+0x22> mv a0,s2 +1c0039ec <_malloc_r+0x24> jal ra,1c002a66 <__malloc_lock> +1c0039f0 <_malloc_r+0x28> lw a4,-584(gp) # 1c009194 <__malloc_free_list> +1c0039f4 <_malloc_r+0x2c> addi a3,gp,-584 # 1c009194 <__malloc_free_list> +1c0039f8 <_malloc_r+0x30> mv s0,a4 +1c0039fa <_malloc_r+0x32> bnez s0,1c003a40 <_malloc_r+0x78> +1c0039fc <_malloc_r+0x34> addi s0,gp,-580 # 1c009198 <__malloc_sbrk_start> +1c003a00 <_malloc_r+0x38> lw a5,0(s0) +1c003a02 <_malloc_r+0x3a> bnez a5,1c003a0c <_malloc_r+0x44> +1c003a04 <_malloc_r+0x3c> li a1,0 +1c003a06 <_malloc_r+0x3e> mv a0,s2 +1c003a08 <_malloc_r+0x40> jal 1c003fdc <_sbrk_r> +1c003a0a <_malloc_r+0x42> sw a0,0(s0) +1c003a0c <_malloc_r+0x44> mv a1,s1 +1c003a0e <_malloc_r+0x46> mv a0,s2 +1c003a10 <_malloc_r+0x48> jal 1c003fdc <_sbrk_r> +1c003a12 <_malloc_r+0x4a> li s3,-1 +1c003a14 <_malloc_r+0x4c> bne a0,s3,1c003a88 <_malloc_r+0xc0> +1c003a18 <_malloc_r+0x50> li a5,12 +1c003a1a <_malloc_r+0x52> sw a5,0(s2) +1c003a1e <_malloc_r+0x56> mv a0,s2 +1c003a20 <_malloc_r+0x58> jal ra,1c002a6a <__malloc_unlock> +1c003a24 <_malloc_r+0x5c> j 1c003a30 <_malloc_r+0x68> +1c003a26 <_malloc_r+0x5e> bgez s1,1c0039e6 <_malloc_r+0x1e> +1c003a2a <_malloc_r+0x62> li a5,12 +1c003a2c <_malloc_r+0x64> sw a5,0(s2) +1c003a30 <_malloc_r+0x68> li a0,0 +1c003a32 <_malloc_r+0x6a> lw ra,28(sp) +1c003a34 <_malloc_r+0x6c> lw s0,24(sp) +1c003a36 <_malloc_r+0x6e> lw s1,20(sp) +1c003a38 <_malloc_r+0x70> lw s2,16(sp) +1c003a3a <_malloc_r+0x72> lw s3,12(sp) +1c003a3c <_malloc_r+0x74> addi sp,sp,32 +1c003a3e <_malloc_r+0x76> ret +1c003a40 <_malloc_r+0x78> lw a5,0(s0) +1c003a42 <_malloc_r+0x7a> sub a5,a5,s1 +1c003a44 <_malloc_r+0x7c> bltz a5,1c003a82 <_malloc_r+0xba> +1c003a48 <_malloc_r+0x80> li a2,11 +1c003a4a <_malloc_r+0x82> bgeu a2,a5,1c003a56 <_malloc_r+0x8e> +1c003a4e <_malloc_r+0x86> sw a5,0(s0) +1c003a50 <_malloc_r+0x88> add s0,s0,a5 +1c003a52 <_malloc_r+0x8a> sw s1,0(s0) +1c003a54 <_malloc_r+0x8c> j 1c003a5e <_malloc_r+0x96> +1c003a56 <_malloc_r+0x8e> lw a5,4(s0) +1c003a58 <_malloc_r+0x90> bne a4,s0,1c003a7e <_malloc_r+0xb6> +1c003a5c <_malloc_r+0x94> sw a5,0(a3) +1c003a5e <_malloc_r+0x96> mv a0,s2 +1c003a60 <_malloc_r+0x98> jal ra,1c002a6a <__malloc_unlock> +1c003a64 <_malloc_r+0x9c> addi a0,s0,11 +1c003a68 <_malloc_r+0xa0> addi a5,s0,4 +1c003a6c <_malloc_r+0xa4> andi a0,a0,-8 +1c003a6e <_malloc_r+0xa6> sub a4,a0,a5 +1c003a72 <_malloc_r+0xaa> beq a0,a5,1c003a32 <_malloc_r+0x6a> +1c003a76 <_malloc_r+0xae> add s0,s0,a4 +1c003a78 <_malloc_r+0xb0> sub a5,a5,a0 +1c003a7a <_malloc_r+0xb2> sw a5,0(s0) +1c003a7c <_malloc_r+0xb4> j 1c003a32 <_malloc_r+0x6a> +1c003a7e <_malloc_r+0xb6> sw a5,4(a4) +1c003a80 <_malloc_r+0xb8> j 1c003a5e <_malloc_r+0x96> +1c003a82 <_malloc_r+0xba> mv a4,s0 +1c003a84 <_malloc_r+0xbc> lw s0,4(s0) +1c003a86 <_malloc_r+0xbe> j 1c0039fa <_malloc_r+0x32> +1c003a88 <_malloc_r+0xc0> addi s0,a0,3 +1c003a8c <_malloc_r+0xc4> andi s0,s0,-4 +1c003a8e <_malloc_r+0xc6> beq a0,s0,1c003a52 <_malloc_r+0x8a> +1c003a92 <_malloc_r+0xca> sub a1,s0,a0 +1c003a96 <_malloc_r+0xce> mv a0,s2 +1c003a98 <_malloc_r+0xd0> jal 1c003fdc <_sbrk_r> +1c003a9a <_malloc_r+0xd2> bne a0,s3,1c003a52 <_malloc_r+0x8a> +1c003a9e <_malloc_r+0xd6> j 1c003a18 <_malloc_r+0x50> +__sfputc_r(): +1c003aa0 <__sfputc_r> lw a5,8(a2) +1c003aa2 <__sfputc_r+0x2> addi a5,a5,-1 +1c003aa4 <__sfputc_r+0x4> sw a5,8(a2) +1c003aa6 <__sfputc_r+0x6> bgez a5,1c003ab8 <__sfputc_r+0x18> +1c003aaa <__sfputc_r+0xa> lw a4,24(a2) +1c003aac <__sfputc_r+0xc> blt a5,a4,1c003ab6 <__sfputc_r+0x16> +1c003ab0 <__sfputc_r+0x10> li a5,10 +1c003ab2 <__sfputc_r+0x12> bne a1,a5,1c003ab8 <__sfputc_r+0x18> +1c003ab6 <__sfputc_r+0x16> j 1c0040aa <__swbuf_r> +1c003ab8 <__sfputc_r+0x18> lw a5,0(a2) +1c003aba <__sfputc_r+0x1a> mv a0,a1 +1c003abc <__sfputc_r+0x1c> addi a4,a5,1 +1c003ac0 <__sfputc_r+0x20> sw a4,0(a2) +1c003ac2 <__sfputc_r+0x22> sb a1,0(a5) +1c003ac6 <__sfputc_r+0x26> ret +__sfputs_r(): +1c003ac8 <__sfputs_r> addi sp,sp,-32 +1c003aca <__sfputs_r+0x2> sw s0,24(sp) +1c003acc <__sfputs_r+0x4> sw s1,20(sp) +1c003ace <__sfputs_r+0x6> sw s2,16(sp) +1c003ad0 <__sfputs_r+0x8> sw s3,12(sp) +1c003ad2 <__sfputs_r+0xa> sw s4,8(sp) +1c003ad4 <__sfputs_r+0xc> sw ra,28(sp) +1c003ad6 <__sfputs_r+0xe> mv s2,a0 +1c003ad8 <__sfputs_r+0x10> mv s3,a1 +1c003ada <__sfputs_r+0x12> mv s0,a2 +1c003adc <__sfputs_r+0x14> add s1,a2,a3 +1c003ae0 <__sfputs_r+0x18> li s4,-1 +1c003ae2 <__sfputs_r+0x1a> bne s0,s1,1c003aea <__sfputs_r+0x22> +1c003ae6 <__sfputs_r+0x1e> li a0,0 +1c003ae8 <__sfputs_r+0x20> j 1c003afc <__sfputs_r+0x34> +1c003aea <__sfputs_r+0x22> lbu a1,0(s0) +1c003aee <__sfputs_r+0x26> mv a2,s3 +1c003af0 <__sfputs_r+0x28> mv a0,s2 +1c003af2 <__sfputs_r+0x2a> jal ra,1c003aa0 <__sfputc_r> +1c003af6 <__sfputs_r+0x2e> addi s0,s0,1 +1c003af8 <__sfputs_r+0x30> bne a0,s4,1c003ae2 <__sfputs_r+0x1a> +1c003afc <__sfputs_r+0x34> lw ra,28(sp) +1c003afe <__sfputs_r+0x36> lw s0,24(sp) +1c003b00 <__sfputs_r+0x38> lw s1,20(sp) +1c003b02 <__sfputs_r+0x3a> lw s2,16(sp) +1c003b04 <__sfputs_r+0x3c> lw s3,12(sp) +1c003b06 <__sfputs_r+0x3e> lw s4,8(sp) +1c003b08 <__sfputs_r+0x40> addi sp,sp,32 +1c003b0a <__sfputs_r+0x42> ret +_vfiprintf_r(): +1c003b0c <_vfiprintf_r> addi sp,sp,-176 +1c003b0e <_vfiprintf_r+0x2> sw s0,168(sp) +1c003b10 <_vfiprintf_r+0x4> sw s1,164(sp) +1c003b12 <_vfiprintf_r+0x6> sw s2,160(sp) +1c003b14 <_vfiprintf_r+0x8> sw s3,156(sp) +1c003b16 <_vfiprintf_r+0xa> sw ra,172(sp) +1c003b18 <_vfiprintf_r+0xc> sw s4,152(sp) +1c003b1a <_vfiprintf_r+0xe> sw s5,148(sp) +1c003b1c <_vfiprintf_r+0x10> sw s6,144(sp) +1c003b1e <_vfiprintf_r+0x12> sw s7,140(sp) +1c003b20 <_vfiprintf_r+0x14> sw s8,136(sp) +1c003b22 <_vfiprintf_r+0x16> sw s9,132(sp) +1c003b24 <_vfiprintf_r+0x18> sw s10,128(sp) +1c003b26 <_vfiprintf_r+0x1a> sw s11,124(sp) +1c003b28 <_vfiprintf_r+0x1c> mv s3,a0 +1c003b2a <_vfiprintf_r+0x1e> mv s1,a1 +1c003b2c <_vfiprintf_r+0x20> mv s2,a2 +1c003b2e <_vfiprintf_r+0x22> mv s0,a3 +1c003b30 <_vfiprintf_r+0x24> beqz a0,1c003b3a <_vfiprintf_r+0x2e> +1c003b32 <_vfiprintf_r+0x26> lw a5,24(a0) +1c003b34 <_vfiprintf_r+0x28> bnez a5,1c003b3a <_vfiprintf_r+0x2e> +1c003b36 <_vfiprintf_r+0x2a> jal ra,1c004624 <__sinit> +1c003b3a <_vfiprintf_r+0x2e> lui a5,0x1c009 +1c003b3e <_vfiprintf_r+0x32> addi a5,a5,-1516 # 1c008a14 <__sf_fake_stdin> +1c003b42 <_vfiprintf_r+0x36> bne s1,a5,1c003c2e <_vfiprintf_r+0x122> +1c003b46 <_vfiprintf_r+0x3a> lw s1,4(s3) +1c003b4a <_vfiprintf_r+0x3e> lhu a5,12(s1) +1c003b4e <_vfiprintf_r+0x42> andi a5,a5,8 +1c003b50 <_vfiprintf_r+0x44> beqz a5,1c003c52 <_vfiprintf_r+0x146> +1c003b54 <_vfiprintf_r+0x48> lw a5,16(s1) +1c003b56 <_vfiprintf_r+0x4a> beqz a5,1c003c52 <_vfiprintf_r+0x146> +1c003b5a <_vfiprintf_r+0x4e> li a5,32 +1c003b5e <_vfiprintf_r+0x52> sb a5,41(sp) +1c003b62 <_vfiprintf_r+0x56> li a5,48 +1c003b66 <_vfiprintf_r+0x5a> sw zero,36(sp) +1c003b68 <_vfiprintf_r+0x5c> sb a5,42(sp) +1c003b6c <_vfiprintf_r+0x60> sw s0,12(sp) +1c003b6e <_vfiprintf_r+0x62> li s9,37 +1c003b72 <_vfiprintf_r+0x66> lui s6,0x1c009 +1c003b76 <_vfiprintf_r+0x6a> lui s7,0x1c009 +1c003b7a <_vfiprintf_r+0x6e> lui s10,0x1c009 +1c003b7e <_vfiprintf_r+0x72> lui s8,0x1c004 +1c003b82 <_vfiprintf_r+0x76> li s5,0 +1c003b86 <_vfiprintf_r+0x7a> mv s0,s2 +1c003b88 <_vfiprintf_r+0x7c> lbu a5,0(s0) +1c003b8c <_vfiprintf_r+0x80> beqz a5,1c003b92 <_vfiprintf_r+0x86> +1c003b8e <_vfiprintf_r+0x82> bne a5,s9,1c003c7c <_vfiprintf_r+0x170> +1c003b92 <_vfiprintf_r+0x86> sub s11,s0,s2 +1c003b96 <_vfiprintf_r+0x8a> beq s0,s2,1c003bb2 <_vfiprintf_r+0xa6> +1c003b9a <_vfiprintf_r+0x8e> mv a3,s11 +1c003b9c <_vfiprintf_r+0x90> mv a2,s2 +1c003b9e <_vfiprintf_r+0x92> mv a1,s1 +1c003ba0 <_vfiprintf_r+0x94> mv a0,s3 +1c003ba2 <_vfiprintf_r+0x96> jal ra,1c003ac8 <__sfputs_r> +1c003ba6 <_vfiprintf_r+0x9a> li a5,-1 +1c003ba8 <_vfiprintf_r+0x9c> beq a0,a5,1c003d92 <_vfiprintf_r+0x286> +1c003bac <_vfiprintf_r+0xa0> lw a5,36(sp) +1c003bae <_vfiprintf_r+0xa2> add a5,a5,s11 +1c003bb0 <_vfiprintf_r+0xa4> sw a5,36(sp) +1c003bb2 <_vfiprintf_r+0xa6> lbu a5,0(s0) +1c003bb6 <_vfiprintf_r+0xaa> beqz a5,1c003d92 <_vfiprintf_r+0x286> +1c003bba <_vfiprintf_r+0xae> li a5,-1 +1c003bbc <_vfiprintf_r+0xb0> addi s2,s0,1 +1c003bc0 <_vfiprintf_r+0xb4> sw zero,16(sp) +1c003bc2 <_vfiprintf_r+0xb6> sw zero,28(sp) +1c003bc4 <_vfiprintf_r+0xb8> sw a5,20(sp) +1c003bc6 <_vfiprintf_r+0xba> sw zero,24(sp) +1c003bc8 <_vfiprintf_r+0xbc> sb zero,83(sp) +1c003bcc <_vfiprintf_r+0xc0> sw zero,104(sp) +1c003bce <_vfiprintf_r+0xc2> li s11,1 +1c003bd0 <_vfiprintf_r+0xc4> lbu a1,0(s2) +1c003bd4 <_vfiprintf_r+0xc8> li a2,5 +1c003bd6 <_vfiprintf_r+0xca> addi a0,s6,-1568 # 1c0089e0 <__func__.0+0x19c> +1c003bda <_vfiprintf_r+0xce> jal ra,1c00489a +1c003bde <_vfiprintf_r+0xd2> lw a5,16(sp) +1c003be0 <_vfiprintf_r+0xd4> addi s0,s2,1 +1c003be4 <_vfiprintf_r+0xd8> bnez a0,1c003c80 <_vfiprintf_r+0x174> +1c003be6 <_vfiprintf_r+0xda> andi a4,a5,16 +1c003bea <_vfiprintf_r+0xde> beqz a4,1c003bf4 <_vfiprintf_r+0xe8> +1c003bec <_vfiprintf_r+0xe0> li a4,32 +1c003bf0 <_vfiprintf_r+0xe4> sb a4,83(sp) +1c003bf4 <_vfiprintf_r+0xe8> andi a4,a5,8 +1c003bf8 <_vfiprintf_r+0xec> beqz a4,1c003c02 <_vfiprintf_r+0xf6> +1c003bfa <_vfiprintf_r+0xee> li a4,43 +1c003bfe <_vfiprintf_r+0xf2> sb a4,83(sp) +1c003c02 <_vfiprintf_r+0xf6> lbu a3,0(s2) +1c003c06 <_vfiprintf_r+0xfa> li a4,42 +1c003c0a <_vfiprintf_r+0xfe> beq a3,a4,1c003c92 <_vfiprintf_r+0x186> +1c003c0e <_vfiprintf_r+0x102> lw a5,28(sp) +1c003c10 <_vfiprintf_r+0x104> mv s0,s2 +1c003c12 <_vfiprintf_r+0x106> li a3,0 +1c003c14 <_vfiprintf_r+0x108> li a2,9 +1c003c16 <_vfiprintf_r+0x10a> li a0,10 +1c003c18 <_vfiprintf_r+0x10c> lbu a4,0(s0) +1c003c1c <_vfiprintf_r+0x110> addi a1,s0,1 +1c003c20 <_vfiprintf_r+0x114> addi a4,a4,-48 +1c003c24 <_vfiprintf_r+0x118> bgeu a2,a4,1c003cdc <_vfiprintf_r+0x1d0> +1c003c28 <_vfiprintf_r+0x11c> beqz a3,1c003ca2 <_vfiprintf_r+0x196> +1c003c2a <_vfiprintf_r+0x11e> sw a5,28(sp) +1c003c2c <_vfiprintf_r+0x120> j 1c003ca2 <_vfiprintf_r+0x196> +1c003c2e <_vfiprintf_r+0x122> lui a5,0x1c009 +1c003c32 <_vfiprintf_r+0x126> addi a5,a5,-1484 # 1c008a34 <__sf_fake_stdout> +1c003c36 <_vfiprintf_r+0x12a> bne s1,a5,1c003c40 <_vfiprintf_r+0x134> +1c003c3a <_vfiprintf_r+0x12e> lw s1,8(s3) +1c003c3e <_vfiprintf_r+0x132> j 1c003b4a <_vfiprintf_r+0x3e> +1c003c40 <_vfiprintf_r+0x134> lui a5,0x1c009 +1c003c44 <_vfiprintf_r+0x138> addi a5,a5,-1548 # 1c0089f4 <__sf_fake_stderr> +1c003c48 <_vfiprintf_r+0x13c> bne s1,a5,1c003b4a <_vfiprintf_r+0x3e> +1c003c4c <_vfiprintf_r+0x140> lw s1,12(s3) +1c003c50 <_vfiprintf_r+0x144> j 1c003b4a <_vfiprintf_r+0x3e> +1c003c52 <_vfiprintf_r+0x146> mv a1,s1 +1c003c54 <_vfiprintf_r+0x148> mv a0,s3 +1c003c56 <_vfiprintf_r+0x14a> jal 1c00416a <__swsetup_r> +1c003c58 <_vfiprintf_r+0x14c> beqz a0,1c003b5a <_vfiprintf_r+0x4e> +1c003c5c <_vfiprintf_r+0x150> li a0,-1 +1c003c5e <_vfiprintf_r+0x152> lw ra,172(sp) +1c003c60 <_vfiprintf_r+0x154> lw s0,168(sp) +1c003c62 <_vfiprintf_r+0x156> lw s1,164(sp) +1c003c64 <_vfiprintf_r+0x158> lw s2,160(sp) +1c003c66 <_vfiprintf_r+0x15a> lw s3,156(sp) +1c003c68 <_vfiprintf_r+0x15c> lw s4,152(sp) +1c003c6a <_vfiprintf_r+0x15e> lw s5,148(sp) +1c003c6c <_vfiprintf_r+0x160> lw s6,144(sp) +1c003c6e <_vfiprintf_r+0x162> lw s7,140(sp) +1c003c70 <_vfiprintf_r+0x164> lw s8,136(sp) +1c003c72 <_vfiprintf_r+0x166> lw s9,132(sp) +1c003c74 <_vfiprintf_r+0x168> lw s10,128(sp) +1c003c76 <_vfiprintf_r+0x16a> lw s11,124(sp) +1c003c78 <_vfiprintf_r+0x16c> addi sp,sp,176 +1c003c7a <_vfiprintf_r+0x16e> ret +1c003c7c <_vfiprintf_r+0x170> addi s0,s0,1 +1c003c7e <_vfiprintf_r+0x172> j 1c003b88 <_vfiprintf_r+0x7c> +1c003c80 <_vfiprintf_r+0x174> addi a4,s6,-1568 +1c003c84 <_vfiprintf_r+0x178> sub a0,a0,a4 +1c003c86 <_vfiprintf_r+0x17a> sll a0,s11,a0 +1c003c8a <_vfiprintf_r+0x17e> or a5,a5,a0 +1c003c8c <_vfiprintf_r+0x180> sw a5,16(sp) +1c003c8e <_vfiprintf_r+0x182> mv s2,s0 +1c003c90 <_vfiprintf_r+0x184> j 1c003bd0 <_vfiprintf_r+0xc4> +1c003c92 <_vfiprintf_r+0x186> lw a4,12(sp) +1c003c94 <_vfiprintf_r+0x188> addi a3,a4,4 +1c003c98 <_vfiprintf_r+0x18c> lw a4,0(a4) +1c003c9a <_vfiprintf_r+0x18e> sw a3,12(sp) +1c003c9c <_vfiprintf_r+0x190> bltz a4,1c003cce <_vfiprintf_r+0x1c2> +1c003ca0 <_vfiprintf_r+0x194> sw a4,28(sp) +1c003ca2 <_vfiprintf_r+0x196> lbu a4,0(s0) +1c003ca6 <_vfiprintf_r+0x19a> li a5,46 +1c003caa <_vfiprintf_r+0x19e> bne a4,a5,1c003d0a <_vfiprintf_r+0x1fe> +1c003cae <_vfiprintf_r+0x1a2> lbu a4,1(s0) +1c003cb2 <_vfiprintf_r+0x1a6> li a5,42 +1c003cb6 <_vfiprintf_r+0x1aa> bne a4,a5,1c003cec <_vfiprintf_r+0x1e0> +1c003cba <_vfiprintf_r+0x1ae> lw a5,12(sp) +1c003cbc <_vfiprintf_r+0x1b0> addi s0,s0,2 +1c003cbe <_vfiprintf_r+0x1b2> addi a4,a5,4 +1c003cc2 <_vfiprintf_r+0x1b6> lw a5,0(a5) +1c003cc4 <_vfiprintf_r+0x1b8> sw a4,12(sp) +1c003cc6 <_vfiprintf_r+0x1ba> bltz a5,1c003ce8 <_vfiprintf_r+0x1dc> +1c003cca <_vfiprintf_r+0x1be> sw a5,20(sp) +1c003ccc <_vfiprintf_r+0x1c0> j 1c003d0a <_vfiprintf_r+0x1fe> +1c003cce <_vfiprintf_r+0x1c2> neg a4,a4 +1c003cd2 <_vfiprintf_r+0x1c6> ori a5,a5,2 +1c003cd6 <_vfiprintf_r+0x1ca> sw a4,28(sp) +1c003cd8 <_vfiprintf_r+0x1cc> sw a5,16(sp) +1c003cda <_vfiprintf_r+0x1ce> j 1c003ca2 <_vfiprintf_r+0x196> +1c003cdc <_vfiprintf_r+0x1d0> mul a5,a5,a0 +1c003ce0 <_vfiprintf_r+0x1d4> mv s0,a1 +1c003ce2 <_vfiprintf_r+0x1d6> li a3,1 +1c003ce4 <_vfiprintf_r+0x1d8> add a5,a5,a4 +1c003ce6 <_vfiprintf_r+0x1da> j 1c003c18 <_vfiprintf_r+0x10c> +1c003ce8 <_vfiprintf_r+0x1dc> li a5,-1 +1c003cea <_vfiprintf_r+0x1de> j 1c003cca <_vfiprintf_r+0x1be> +1c003cec <_vfiprintf_r+0x1e0> addi s0,s0,1 +1c003cee <_vfiprintf_r+0x1e2> sw zero,20(sp) +1c003cf0 <_vfiprintf_r+0x1e4> li a3,0 +1c003cf2 <_vfiprintf_r+0x1e6> li a5,0 +1c003cf4 <_vfiprintf_r+0x1e8> li a2,9 +1c003cf6 <_vfiprintf_r+0x1ea> li a0,10 +1c003cf8 <_vfiprintf_r+0x1ec> lbu a4,0(s0) +1c003cfc <_vfiprintf_r+0x1f0> addi a1,s0,1 +1c003d00 <_vfiprintf_r+0x1f4> addi a4,a4,-48 +1c003d04 <_vfiprintf_r+0x1f8> bgeu a2,a4,1c003d62 <_vfiprintf_r+0x256> +1c003d08 <_vfiprintf_r+0x1fc> bnez a3,1c003cca <_vfiprintf_r+0x1be> +1c003d0a <_vfiprintf_r+0x1fe> lbu a1,0(s0) +1c003d0e <_vfiprintf_r+0x202> li a2,3 +1c003d10 <_vfiprintf_r+0x204> addi a0,s7,-1560 # 1c0089e8 <__func__.0+0x1a4> +1c003d14 <_vfiprintf_r+0x208> jal ra,1c00489a +1c003d18 <_vfiprintf_r+0x20c> beqz a0,1c003d30 <_vfiprintf_r+0x224> +1c003d1a <_vfiprintf_r+0x20e> addi a5,s7,-1560 +1c003d1e <_vfiprintf_r+0x212> sub a0,a0,a5 +1c003d20 <_vfiprintf_r+0x214> li a5,64 +1c003d24 <_vfiprintf_r+0x218> sll a5,a5,a0 +1c003d28 <_vfiprintf_r+0x21c> lw a0,16(sp) +1c003d2a <_vfiprintf_r+0x21e> addi s0,s0,1 +1c003d2c <_vfiprintf_r+0x220> or a0,a0,a5 +1c003d2e <_vfiprintf_r+0x222> sw a0,16(sp) +1c003d30 <_vfiprintf_r+0x224> lbu a1,0(s0) +1c003d34 <_vfiprintf_r+0x228> li a2,6 +1c003d36 <_vfiprintf_r+0x22a> addi a0,s10,-1556 # 1c0089ec <__func__.0+0x1a8> +1c003d3a <_vfiprintf_r+0x22e> addi s2,s0,1 +1c003d3e <_vfiprintf_r+0x232> sb a1,40(sp) +1c003d42 <_vfiprintf_r+0x236> jal ra,1c00489a +1c003d46 <_vfiprintf_r+0x23a> beqz a0,1c003da2 <_vfiprintf_r+0x296> +1c003d48 <_vfiprintf_r+0x23c> bnez s5,1c003d76 <_vfiprintf_r+0x26a> +1c003d4c <_vfiprintf_r+0x240> lw a4,16(sp) +1c003d4e <_vfiprintf_r+0x242> lw a5,12(sp) +1c003d50 <_vfiprintf_r+0x244> andi a4,a4,256 +1c003d54 <_vfiprintf_r+0x248> beqz a4,1c003d6e <_vfiprintf_r+0x262> +1c003d56 <_vfiprintf_r+0x24a> addi a5,a5,4 +1c003d58 <_vfiprintf_r+0x24c> sw a5,12(sp) +1c003d5a <_vfiprintf_r+0x24e> lw a5,36(sp) +1c003d5c <_vfiprintf_r+0x250> add a5,a5,s4 +1c003d5e <_vfiprintf_r+0x252> sw a5,36(sp) +1c003d60 <_vfiprintf_r+0x254> j 1c003b86 <_vfiprintf_r+0x7a> +1c003d62 <_vfiprintf_r+0x256> mul a5,a5,a0 +1c003d66 <_vfiprintf_r+0x25a> mv s0,a1 +1c003d68 <_vfiprintf_r+0x25c> li a3,1 +1c003d6a <_vfiprintf_r+0x25e> add a5,a5,a4 +1c003d6c <_vfiprintf_r+0x260> j 1c003cf8 <_vfiprintf_r+0x1ec> +1c003d6e <_vfiprintf_r+0x262> addi a5,a5,7 +1c003d70 <_vfiprintf_r+0x264> andi a5,a5,-8 +1c003d72 <_vfiprintf_r+0x266> addi a5,a5,8 +1c003d74 <_vfiprintf_r+0x268> j 1c003d58 <_vfiprintf_r+0x24c> +1c003d76 <_vfiprintf_r+0x26a> addi a4,sp,12 +1c003d78 <_vfiprintf_r+0x26c> addi a3,s8,-1336 # 1c003ac8 <__sfputs_r> +1c003d7c <_vfiprintf_r+0x270> mv a2,s1 +1c003d7e <_vfiprintf_r+0x272> addi a1,sp,16 +1c003d80 <_vfiprintf_r+0x274> mv a0,s3 +1c003d82 <_vfiprintf_r+0x276> auipc ra,0x0 +1c003d86 <_vfiprintf_r+0x27a> jalr zero # 00000000 <__heap_size> +1c003d8a <_vfiprintf_r+0x27e> li a5,-1 +1c003d8c <_vfiprintf_r+0x280> mv s4,a0 +1c003d8e <_vfiprintf_r+0x282> bne a0,a5,1c003d5a <_vfiprintf_r+0x24e> +1c003d92 <_vfiprintf_r+0x286> lhu a5,12(s1) +1c003d96 <_vfiprintf_r+0x28a> andi a5,a5,64 +1c003d9a <_vfiprintf_r+0x28e> bnez a5,1c003c5c <_vfiprintf_r+0x150> +1c003d9e <_vfiprintf_r+0x292> lw a0,36(sp) +1c003da0 <_vfiprintf_r+0x294> j 1c003c5e <_vfiprintf_r+0x152> +1c003da2 <_vfiprintf_r+0x296> addi a4,sp,12 +1c003da4 <_vfiprintf_r+0x298> addi a3,s8,-1336 +1c003da8 <_vfiprintf_r+0x29c> mv a2,s1 +1c003daa <_vfiprintf_r+0x29e> addi a1,sp,16 +1c003dac <_vfiprintf_r+0x2a0> mv a0,s3 +1c003dae <_vfiprintf_r+0x2a2> jal ra,1c0049c0 <_printf_i> +1c003db2 <_vfiprintf_r+0x2a6> j 1c003d8a <_vfiprintf_r+0x27e> +printf(): +1c003db4 addi sp,sp,-80 +1c003db6 sw a5,68(sp) +1c003db8 lui a5,0x1c009 +1c003dbc sw s0,40(sp) +1c003dbe mv s0,a0 +1c003dc0 lw a0,-956(a5) # 1c008c44 <_impure_ptr> +1c003dc4 sw ra,44(sp) +1c003dc6 sw a1,52(sp) +1c003dc8 sw a2,56(sp) +1c003dca sw a3,60(sp) +1c003dcc sw a4,64(sp) +1c003dce sw a6,72(sp) +1c003dd0 sw a7,76(sp) +1c003dd2 beqz a0,1c003de0 +1c003dd4 lw a5,24(a0) +1c003dd6 bnez a5,1c003de0 +1c003dd8 sw a0,12(sp) +1c003dda jal ra,1c004624 <__sinit> +1c003dde lw a0,12(sp) +1c003de0 lw a1,8(a0) +1c003de2 addi a3,sp,52 +1c003de4 mv a2,s0 +1c003de6 sw a3,28(sp) +1c003de8 jal ra,1c003b0c <_vfiprintf_r> +1c003dec lw ra,44(sp) +1c003dee lw s0,40(sp) +1c003df0 addi sp,sp,80 +1c003df2 ret +_puts_r(): +1c003df4 <_puts_r> addi sp,sp,-32 +1c003df6 <_puts_r+0x2> sw s1,20(sp) +1c003df8 <_puts_r+0x4> sw s2,16(sp) +1c003dfa <_puts_r+0x6> sw ra,28(sp) +1c003dfc <_puts_r+0x8> sw s0,24(sp) +1c003dfe <_puts_r+0xa> sw s3,12(sp) +1c003e00 <_puts_r+0xc> sw s4,8(sp) +1c003e02 <_puts_r+0xe> mv s1,a0 +1c003e04 <_puts_r+0x10> mv s2,a1 +1c003e06 <_puts_r+0x12> beqz a0,1c003e10 <_puts_r+0x1c> +1c003e08 <_puts_r+0x14> lw a5,24(a0) +1c003e0a <_puts_r+0x16> bnez a5,1c003e10 <_puts_r+0x1c> +1c003e0c <_puts_r+0x18> jal ra,1c004624 <__sinit> +1c003e10 <_puts_r+0x1c> lw a5,24(s1) +1c003e12 <_puts_r+0x1e> lw s0,8(s1) +1c003e14 <_puts_r+0x20> bnez a5,1c003e1c <_puts_r+0x28> +1c003e16 <_puts_r+0x22> mv a0,s1 +1c003e18 <_puts_r+0x24> jal ra,1c004624 <__sinit> +1c003e1c <_puts_r+0x28> lui a5,0x1c009 +1c003e20 <_puts_r+0x2c> addi a5,a5,-1516 # 1c008a14 <__sf_fake_stdin> +1c003e24 <_puts_r+0x30> bne s0,a5,1c003e5c <_puts_r+0x68> +1c003e28 <_puts_r+0x34> lw s0,4(s1) +1c003e2a <_puts_r+0x36> lhu a5,12(s0) +1c003e2e <_puts_r+0x3a> andi a5,a5,8 +1c003e30 <_puts_r+0x3c> beqz a5,1c003e7c <_puts_r+0x88> +1c003e32 <_puts_r+0x3e> lw a5,16(s0) +1c003e34 <_puts_r+0x40> beqz a5,1c003e7c <_puts_r+0x88> +1c003e36 <_puts_r+0x42> li s3,-1 +1c003e38 <_puts_r+0x44> li s4,10 +1c003e3a <_puts_r+0x46> lw a5,8(s0) +1c003e3c <_puts_r+0x48> lbu a1,0(s2) +1c003e40 <_puts_r+0x4c> addi a5,a5,-1 +1c003e42 <_puts_r+0x4e> bnez a1,1c003e96 <_puts_r+0xa2> +1c003e44 <_puts_r+0x50> sw a5,8(s0) +1c003e46 <_puts_r+0x52> bgez a5,1c003ec2 <_puts_r+0xce> +1c003e4a <_puts_r+0x56> mv a2,s0 +1c003e4c <_puts_r+0x58> li a1,10 +1c003e4e <_puts_r+0x5a> mv a0,s1 +1c003e50 <_puts_r+0x5c> jal 1c0040aa <__swbuf_r> +1c003e52 <_puts_r+0x5e> li a5,-1 +1c003e54 <_puts_r+0x60> beq a0,a5,1c003e84 <_puts_r+0x90> +1c003e58 <_puts_r+0x64> li a0,10 +1c003e5a <_puts_r+0x66> j 1c003e86 <_puts_r+0x92> +1c003e5c <_puts_r+0x68> lui a5,0x1c009 +1c003e60 <_puts_r+0x6c> addi a5,a5,-1484 # 1c008a34 <__sf_fake_stdout> +1c003e64 <_puts_r+0x70> bne s0,a5,1c003e6c <_puts_r+0x78> +1c003e68 <_puts_r+0x74> lw s0,8(s1) +1c003e6a <_puts_r+0x76> j 1c003e2a <_puts_r+0x36> +1c003e6c <_puts_r+0x78> lui a5,0x1c009 +1c003e70 <_puts_r+0x7c> addi a5,a5,-1548 # 1c0089f4 <__sf_fake_stderr> +1c003e74 <_puts_r+0x80> bne s0,a5,1c003e2a <_puts_r+0x36> +1c003e78 <_puts_r+0x84> lw s0,12(s1) +1c003e7a <_puts_r+0x86> j 1c003e2a <_puts_r+0x36> +1c003e7c <_puts_r+0x88> mv a1,s0 +1c003e7e <_puts_r+0x8a> mv a0,s1 +1c003e80 <_puts_r+0x8c> jal 1c00416a <__swsetup_r> +1c003e82 <_puts_r+0x8e> beqz a0,1c003e36 <_puts_r+0x42> +1c003e84 <_puts_r+0x90> li a0,-1 +1c003e86 <_puts_r+0x92> lw ra,28(sp) +1c003e88 <_puts_r+0x94> lw s0,24(sp) +1c003e8a <_puts_r+0x96> lw s1,20(sp) +1c003e8c <_puts_r+0x98> lw s2,16(sp) +1c003e8e <_puts_r+0x9a> lw s3,12(sp) +1c003e90 <_puts_r+0x9c> lw s4,8(sp) +1c003e92 <_puts_r+0x9e> addi sp,sp,32 +1c003e94 <_puts_r+0xa0> ret +1c003e96 <_puts_r+0xa2> sw a5,8(s0) +1c003e98 <_puts_r+0xa4> addi s2,s2,1 +1c003e9a <_puts_r+0xa6> bgez a5,1c003ea8 <_puts_r+0xb4> +1c003e9e <_puts_r+0xaa> lw a4,24(s0) +1c003ea0 <_puts_r+0xac> blt a5,a4,1c003eb6 <_puts_r+0xc2> +1c003ea4 <_puts_r+0xb0> beq a1,s4,1c003eb6 <_puts_r+0xc2> +1c003ea8 <_puts_r+0xb4> lw a5,0(s0) +1c003eaa <_puts_r+0xb6> addi a4,a5,1 +1c003eae <_puts_r+0xba> sw a4,0(s0) +1c003eb0 <_puts_r+0xbc> sb a1,0(a5) +1c003eb4 <_puts_r+0xc0> j 1c003e3a <_puts_r+0x46> +1c003eb6 <_puts_r+0xc2> mv a2,s0 +1c003eb8 <_puts_r+0xc4> mv a0,s1 +1c003eba <_puts_r+0xc6> jal 1c0040aa <__swbuf_r> +1c003ebc <_puts_r+0xc8> bne a0,s3,1c003e3a <_puts_r+0x46> +1c003ec0 <_puts_r+0xcc> j 1c003e84 <_puts_r+0x90> +1c003ec2 <_puts_r+0xce> lw a5,0(s0) +1c003ec4 <_puts_r+0xd0> addi a4,a5,1 +1c003ec8 <_puts_r+0xd4> sw a4,0(s0) +1c003eca <_puts_r+0xd6> li a4,10 +1c003ecc <_puts_r+0xd8> sb a4,0(a5) +1c003ed0 <_puts_r+0xdc> j 1c003e58 <_puts_r+0x64> +puts(): +1c003ed2 lui a5,0x1c009 +1c003ed6 mv a1,a0 +1c003ed8 lw a0,-956(a5) # 1c008c44 <_impure_ptr> +1c003edc j 1c003df4 <_puts_r> +cleanup_glue(): +1c003ee0 addi sp,sp,-16 +1c003ee2 sw s0,8(sp) +1c003ee4 mv s0,a1 +1c003ee6 lw a1,0(a1) +1c003ee8 sw s1,4(sp) +1c003eea sw ra,12(sp) +1c003eec mv s1,a0 +1c003eee beqz a1,1c003ef2 +1c003ef0 jal 1c003ee0 +1c003ef2 mv a1,s0 +1c003ef4 lw s0,8(sp) +1c003ef6 lw ra,12(sp) +1c003ef8 mv a0,s1 +1c003efa lw s1,4(sp) +1c003efc addi sp,sp,16 +1c003efe j 1c003920 <_free_r> +_reclaim_reent(): +1c003f02 <_reclaim_reent> lui a5,0x1c009 +1c003f06 <_reclaim_reent+0x4> lw a5,-956(a5) # 1c008c44 <_impure_ptr> +1c003f0a <_reclaim_reent+0x8> beq a5,a0,1c003fda <_reclaim_reent+0xd8> +1c003f0e <_reclaim_reent+0xc> lw a5,36(a0) +1c003f10 <_reclaim_reent+0xe> addi sp,sp,-32 +1c003f12 <_reclaim_reent+0x10> sw s0,24(sp) +1c003f14 <_reclaim_reent+0x12> sw ra,28(sp) +1c003f16 <_reclaim_reent+0x14> sw s1,20(sp) +1c003f18 <_reclaim_reent+0x16> sw s2,16(sp) +1c003f1a <_reclaim_reent+0x18> sw s3,12(sp) +1c003f1c <_reclaim_reent+0x1a> mv s0,a0 +1c003f1e <_reclaim_reent+0x1c> beqz a5,1c003f36 <_reclaim_reent+0x34> +1c003f20 <_reclaim_reent+0x1e> lw a5,12(a5) +1c003f22 <_reclaim_reent+0x20> li s1,0 +1c003f24 <_reclaim_reent+0x22> li s2,128 +1c003f28 <_reclaim_reent+0x26> bnez a5,1c003fae <_reclaim_reent+0xac> +1c003f2a <_reclaim_reent+0x28> lw a5,36(s0) +1c003f2c <_reclaim_reent+0x2a> lw a1,0(a5) +1c003f2e <_reclaim_reent+0x2c> beqz a1,1c003f36 <_reclaim_reent+0x34> +1c003f30 <_reclaim_reent+0x2e> mv a0,s0 +1c003f32 <_reclaim_reent+0x30> jal ra,1c003920 <_free_r> +1c003f36 <_reclaim_reent+0x34> lw a1,20(s0) +1c003f38 <_reclaim_reent+0x36> beqz a1,1c003f40 <_reclaim_reent+0x3e> +1c003f3a <_reclaim_reent+0x38> mv a0,s0 +1c003f3c <_reclaim_reent+0x3a> jal ra,1c003920 <_free_r> +1c003f40 <_reclaim_reent+0x3e> lw a1,36(s0) +1c003f42 <_reclaim_reent+0x40> beqz a1,1c003f4a <_reclaim_reent+0x48> +1c003f44 <_reclaim_reent+0x42> mv a0,s0 +1c003f46 <_reclaim_reent+0x44> jal ra,1c003920 <_free_r> +1c003f4a <_reclaim_reent+0x48> lw a1,56(s0) +1c003f4c <_reclaim_reent+0x4a> beqz a1,1c003f54 <_reclaim_reent+0x52> +1c003f4e <_reclaim_reent+0x4c> mv a0,s0 +1c003f50 <_reclaim_reent+0x4e> jal ra,1c003920 <_free_r> +1c003f54 <_reclaim_reent+0x52> lw a1,60(s0) +1c003f56 <_reclaim_reent+0x54> beqz a1,1c003f5e <_reclaim_reent+0x5c> +1c003f58 <_reclaim_reent+0x56> mv a0,s0 +1c003f5a <_reclaim_reent+0x58> jal ra,1c003920 <_free_r> +1c003f5e <_reclaim_reent+0x5c> lw a1,64(s0) +1c003f60 <_reclaim_reent+0x5e> beqz a1,1c003f68 <_reclaim_reent+0x66> +1c003f62 <_reclaim_reent+0x60> mv a0,s0 +1c003f64 <_reclaim_reent+0x62> jal ra,1c003920 <_free_r> +1c003f68 <_reclaim_reent+0x66> lw a1,92(s0) +1c003f6a <_reclaim_reent+0x68> beqz a1,1c003f72 <_reclaim_reent+0x70> +1c003f6c <_reclaim_reent+0x6a> mv a0,s0 +1c003f6e <_reclaim_reent+0x6c> jal ra,1c003920 <_free_r> +1c003f72 <_reclaim_reent+0x70> lw a1,88(s0) +1c003f74 <_reclaim_reent+0x72> beqz a1,1c003f7c <_reclaim_reent+0x7a> +1c003f76 <_reclaim_reent+0x74> mv a0,s0 +1c003f78 <_reclaim_reent+0x76> jal ra,1c003920 <_free_r> +1c003f7c <_reclaim_reent+0x7a> lw a1,52(s0) +1c003f7e <_reclaim_reent+0x7c> beqz a1,1c003f86 <_reclaim_reent+0x84> +1c003f80 <_reclaim_reent+0x7e> mv a0,s0 +1c003f82 <_reclaim_reent+0x80> jal ra,1c003920 <_free_r> +1c003f86 <_reclaim_reent+0x84> lw a5,24(s0) +1c003f88 <_reclaim_reent+0x86> beqz a5,1c003fcc <_reclaim_reent+0xca> +1c003f8a <_reclaim_reent+0x88> lw a5,40(s0) +1c003f8c <_reclaim_reent+0x8a> mv a0,s0 +1c003f8e <_reclaim_reent+0x8c> jalr a5 +1c003f90 <_reclaim_reent+0x8e> lw a1,72(s0) +1c003f92 <_reclaim_reent+0x90> beqz a1,1c003fcc <_reclaim_reent+0xca> +1c003f94 <_reclaim_reent+0x92> mv a0,s0 +1c003f96 <_reclaim_reent+0x94> lw s0,24(sp) +1c003f98 <_reclaim_reent+0x96> lw ra,28(sp) +1c003f9a <_reclaim_reent+0x98> lw s1,20(sp) +1c003f9c <_reclaim_reent+0x9a> lw s2,16(sp) +1c003f9e <_reclaim_reent+0x9c> lw s3,12(sp) +1c003fa0 <_reclaim_reent+0x9e> addi sp,sp,32 +1c003fa2 <_reclaim_reent+0xa0> j 1c003ee0 +1c003fa6 <_reclaim_reent+0xa4> add a1,a1,s1 +1c003fa8 <_reclaim_reent+0xa6> lw a1,0(a1) +1c003faa <_reclaim_reent+0xa8> bnez a1,1c003fbe <_reclaim_reent+0xbc> +1c003fac <_reclaim_reent+0xaa> addi s1,s1,4 +1c003fae <_reclaim_reent+0xac> lw a5,36(s0) +1c003fb0 <_reclaim_reent+0xae> lw a1,12(a5) +1c003fb2 <_reclaim_reent+0xb0> bne s1,s2,1c003fa6 <_reclaim_reent+0xa4> +1c003fb6 <_reclaim_reent+0xb4> mv a0,s0 +1c003fb8 <_reclaim_reent+0xb6> jal ra,1c003920 <_free_r> +1c003fbc <_reclaim_reent+0xba> j 1c003f2a <_reclaim_reent+0x28> +1c003fbe <_reclaim_reent+0xbc> lw s3,0(a1) +1c003fc2 <_reclaim_reent+0xc0> mv a0,s0 +1c003fc4 <_reclaim_reent+0xc2> jal ra,1c003920 <_free_r> +1c003fc8 <_reclaim_reent+0xc6> mv a1,s3 +1c003fca <_reclaim_reent+0xc8> j 1c003faa <_reclaim_reent+0xa8> +1c003fcc <_reclaim_reent+0xca> lw ra,28(sp) +1c003fce <_reclaim_reent+0xcc> lw s0,24(sp) +1c003fd0 <_reclaim_reent+0xce> lw s1,20(sp) +1c003fd2 <_reclaim_reent+0xd0> lw s2,16(sp) +1c003fd4 <_reclaim_reent+0xd2> lw s3,12(sp) +1c003fd6 <_reclaim_reent+0xd4> addi sp,sp,32 +1c003fd8 <_reclaim_reent+0xd6> ret +1c003fda <_reclaim_reent+0xd8> ret +_sbrk_r(): +1c003fdc <_sbrk_r> addi sp,sp,-16 +1c003fde <_sbrk_r+0x2> sw s0,8(sp) +1c003fe0 <_sbrk_r+0x4> sw s1,4(sp) +1c003fe2 <_sbrk_r+0x6> mv s0,a0 +1c003fe4 <_sbrk_r+0x8> mv a0,a1 +1c003fe6 <_sbrk_r+0xa> sw ra,12(sp) +1c003fe8 <_sbrk_r+0xc> sw zero,-576(gp) # 1c00919c +1c003fec <_sbrk_r+0x10> jal ra,1c002a3e <_sbrk> +1c003ff0 <_sbrk_r+0x14> li a5,-1 +1c003ff2 <_sbrk_r+0x16> bne a0,a5,1c003ffe <_sbrk_r+0x22> +1c003ff6 <_sbrk_r+0x1a> lw a5,-576(gp) # 1c00919c +1c003ffa <_sbrk_r+0x1e> beqz a5,1c003ffe <_sbrk_r+0x22> +1c003ffc <_sbrk_r+0x20> sw a5,0(s0) +1c003ffe <_sbrk_r+0x22> lw ra,12(sp) +1c004000 <_sbrk_r+0x24> lw s0,8(sp) +1c004002 <_sbrk_r+0x26> lw s1,4(sp) +1c004004 <_sbrk_r+0x28> addi sp,sp,16 +1c004006 <_sbrk_r+0x2a> ret +_raise_r(): +1c004008 <_raise_r> addi sp,sp,-32 +1c00400a <_raise_r+0x2> sw s0,24(sp) +1c00400c <_raise_r+0x4> sw ra,28(sp) +1c00400e <_raise_r+0x6> li a5,31 +1c004010 <_raise_r+0x8> mv s0,a0 +1c004012 <_raise_r+0xa> bgeu a5,a1,1c004024 <_raise_r+0x1c> +1c004016 <_raise_r+0xe> li a5,22 +1c004018 <_raise_r+0x10> sw a5,0(a0) +1c00401a <_raise_r+0x12> li a0,-1 +1c00401c <_raise_r+0x14> lw ra,28(sp) +1c00401e <_raise_r+0x16> lw s0,24(sp) +1c004020 <_raise_r+0x18> addi sp,sp,32 +1c004022 <_raise_r+0x1a> ret +1c004024 <_raise_r+0x1c> lw a5,68(a0) +1c004026 <_raise_r+0x1e> mv a2,a1 +1c004028 <_raise_r+0x20> beqz a5,1c004034 <_raise_r+0x2c> +1c00402a <_raise_r+0x22> slli a4,a1,0x2 +1c00402e <_raise_r+0x26> add a5,a5,a4 +1c004030 <_raise_r+0x28> lw a4,0(a5) +1c004032 <_raise_r+0x2a> bnez a4,1c004048 <_raise_r+0x40> +1c004034 <_raise_r+0x2c> mv a0,s0 +1c004036 <_raise_r+0x2e> sw a2,12(sp) +1c004038 <_raise_r+0x30> jal 1c0040a6 <_getpid_r> +1c00403a <_raise_r+0x32> mv a1,a0 +1c00403c <_raise_r+0x34> mv a0,s0 +1c00403e <_raise_r+0x36> lw s0,24(sp) +1c004040 <_raise_r+0x38> lw a2,12(sp) +1c004042 <_raise_r+0x3a> lw ra,28(sp) +1c004044 <_raise_r+0x3c> addi sp,sp,32 +1c004046 <_raise_r+0x3e> j 1c004078 <_kill_r> +1c004048 <_raise_r+0x40> li a3,1 +1c00404a <_raise_r+0x42> li a0,0 +1c00404c <_raise_r+0x44> beq a4,a3,1c00401c <_raise_r+0x14> +1c004050 <_raise_r+0x48> li a3,-1 +1c004052 <_raise_r+0x4a> bne a4,a3,1c00405e <_raise_r+0x56> +1c004056 <_raise_r+0x4e> li a5,22 +1c004058 <_raise_r+0x50> sw a5,0(s0) +1c00405a <_raise_r+0x52> li a0,1 +1c00405c <_raise_r+0x54> j 1c00401c <_raise_r+0x14> +1c00405e <_raise_r+0x56> mv a0,a1 +1c004060 <_raise_r+0x58> sw zero,0(a5) +1c004064 <_raise_r+0x5c> jalr a4 +1c004066 <_raise_r+0x5e> li a0,0 +1c004068 <_raise_r+0x60> j 1c00401c <_raise_r+0x14> +raise(): +1c00406a lui a5,0x1c009 +1c00406e mv a1,a0 +1c004070 lw a0,-956(a5) # 1c008c44 <_impure_ptr> +1c004074 j 1c004008 <_raise_r> +_kill_r(): +1c004078 <_kill_r> addi sp,sp,-16 +1c00407a <_kill_r+0x2> sw s0,8(sp) +1c00407c <_kill_r+0x4> sw s1,4(sp) +1c00407e <_kill_r+0x6> mv s0,a0 +1c004080 <_kill_r+0x8> mv a0,a1 +1c004082 <_kill_r+0xa> mv a1,a2 +1c004084 <_kill_r+0xc> sw ra,12(sp) +1c004086 <_kill_r+0xe> sw zero,-576(gp) # 1c00919c +1c00408a <_kill_r+0x12> jal ra,1c0029e0 <_kill> +1c00408e <_kill_r+0x16> li a5,-1 +1c004090 <_kill_r+0x18> bne a0,a5,1c00409c <_kill_r+0x24> +1c004094 <_kill_r+0x1c> lw a5,-576(gp) # 1c00919c +1c004098 <_kill_r+0x20> beqz a5,1c00409c <_kill_r+0x24> +1c00409a <_kill_r+0x22> sw a5,0(s0) +1c00409c <_kill_r+0x24> lw ra,12(sp) +1c00409e <_kill_r+0x26> lw s0,8(sp) +1c0040a0 <_kill_r+0x28> lw s1,4(sp) +1c0040a2 <_kill_r+0x2a> addi sp,sp,16 +1c0040a4 <_kill_r+0x2c> ret +_getpid_r(): +1c0040a6 <_getpid_r> j 1c0029d4 <_getpid> +__swbuf_r(): +1c0040aa <__swbuf_r> addi sp,sp,-32 +1c0040ac <__swbuf_r+0x2> sw s0,24(sp) +1c0040ae <__swbuf_r+0x4> sw s1,20(sp) +1c0040b0 <__swbuf_r+0x6> sw s2,16(sp) +1c0040b2 <__swbuf_r+0x8> sw ra,28(sp) +1c0040b4 <__swbuf_r+0xa> sw s3,12(sp) +1c0040b6 <__swbuf_r+0xc> mv s1,a0 +1c0040b8 <__swbuf_r+0xe> mv s2,a1 +1c0040ba <__swbuf_r+0x10> mv s0,a2 +1c0040bc <__swbuf_r+0x12> beqz a0,1c0040c4 <__swbuf_r+0x1a> +1c0040be <__swbuf_r+0x14> lw a5,24(a0) +1c0040c0 <__swbuf_r+0x16> bnez a5,1c0040c4 <__swbuf_r+0x1a> +1c0040c2 <__swbuf_r+0x18> jal 1c004624 <__sinit> +1c0040c4 <__swbuf_r+0x1a> lui a5,0x1c009 +1c0040c8 <__swbuf_r+0x1e> addi a5,a5,-1516 # 1c008a14 <__sf_fake_stdin> +1c0040cc <__swbuf_r+0x22> bne s0,a5,1c00413e <__swbuf_r+0x94> +1c0040d0 <__swbuf_r+0x26> lw s0,4(s1) +1c0040d2 <__swbuf_r+0x28> lw a5,24(s0) +1c0040d4 <__swbuf_r+0x2a> sw a5,8(s0) +1c0040d6 <__swbuf_r+0x2c> lhu a5,12(s0) +1c0040da <__swbuf_r+0x30> andi a5,a5,8 +1c0040dc <__swbuf_r+0x32> beqz a5,1c00415e <__swbuf_r+0xb4> +1c0040de <__swbuf_r+0x34> lw a5,16(s0) +1c0040e0 <__swbuf_r+0x36> beqz a5,1c00415e <__swbuf_r+0xb4> +1c0040e2 <__swbuf_r+0x38> lw a5,16(s0) +1c0040e4 <__swbuf_r+0x3a> lw a0,0(s0) +1c0040e6 <__swbuf_r+0x3c> andi s3,s2,255 +1c0040ea <__swbuf_r+0x40> andi s2,s2,255 +1c0040ee <__swbuf_r+0x44> sub a0,a0,a5 +1c0040f0 <__swbuf_r+0x46> lw a5,20(s0) +1c0040f2 <__swbuf_r+0x48> blt a0,a5,1c0040fe <__swbuf_r+0x54> +1c0040f6 <__swbuf_r+0x4c> mv a1,s0 +1c0040f8 <__swbuf_r+0x4e> mv a0,s1 +1c0040fa <__swbuf_r+0x50> jal 1c004502 <_fflush_r> +1c0040fc <__swbuf_r+0x52> bnez a0,1c004166 <__swbuf_r+0xbc> +1c0040fe <__swbuf_r+0x54> lw a5,8(s0) +1c004100 <__swbuf_r+0x56> addi a0,a0,1 +1c004102 <__swbuf_r+0x58> addi a5,a5,-1 +1c004104 <__swbuf_r+0x5a> sw a5,8(s0) +1c004106 <__swbuf_r+0x5c> lw a5,0(s0) +1c004108 <__swbuf_r+0x5e> addi a4,a5,1 +1c00410c <__swbuf_r+0x62> sw a4,0(s0) +1c00410e <__swbuf_r+0x64> sb s3,0(a5) +1c004112 <__swbuf_r+0x68> lw a5,20(s0) +1c004114 <__swbuf_r+0x6a> beq a5,a0,1c004126 <__swbuf_r+0x7c> +1c004118 <__swbuf_r+0x6e> lhu a5,12(s0) +1c00411c <__swbuf_r+0x72> andi a5,a5,1 +1c00411e <__swbuf_r+0x74> beqz a5,1c00412e <__swbuf_r+0x84> +1c004120 <__swbuf_r+0x76> li a5,10 +1c004122 <__swbuf_r+0x78> bne s2,a5,1c00412e <__swbuf_r+0x84> +1c004126 <__swbuf_r+0x7c> mv a1,s0 +1c004128 <__swbuf_r+0x7e> mv a0,s1 +1c00412a <__swbuf_r+0x80> jal 1c004502 <_fflush_r> +1c00412c <__swbuf_r+0x82> bnez a0,1c004166 <__swbuf_r+0xbc> +1c00412e <__swbuf_r+0x84> lw ra,28(sp) +1c004130 <__swbuf_r+0x86> lw s0,24(sp) +1c004132 <__swbuf_r+0x88> lw s1,20(sp) +1c004134 <__swbuf_r+0x8a> lw s3,12(sp) +1c004136 <__swbuf_r+0x8c> mv a0,s2 +1c004138 <__swbuf_r+0x8e> lw s2,16(sp) +1c00413a <__swbuf_r+0x90> addi sp,sp,32 +1c00413c <__swbuf_r+0x92> ret +1c00413e <__swbuf_r+0x94> lui a5,0x1c009 +1c004142 <__swbuf_r+0x98> addi a5,a5,-1484 # 1c008a34 <__sf_fake_stdout> +1c004146 <__swbuf_r+0x9c> bne s0,a5,1c00414e <__swbuf_r+0xa4> +1c00414a <__swbuf_r+0xa0> lw s0,8(s1) +1c00414c <__swbuf_r+0xa2> j 1c0040d2 <__swbuf_r+0x28> +1c00414e <__swbuf_r+0xa4> lui a5,0x1c009 +1c004152 <__swbuf_r+0xa8> addi a5,a5,-1548 # 1c0089f4 <__sf_fake_stderr> +1c004156 <__swbuf_r+0xac> bne s0,a5,1c0040d2 <__swbuf_r+0x28> +1c00415a <__swbuf_r+0xb0> lw s0,12(s1) +1c00415c <__swbuf_r+0xb2> j 1c0040d2 <__swbuf_r+0x28> +1c00415e <__swbuf_r+0xb4> mv a1,s0 +1c004160 <__swbuf_r+0xb6> mv a0,s1 +1c004162 <__swbuf_r+0xb8> jal 1c00416a <__swsetup_r> +1c004164 <__swbuf_r+0xba> beqz a0,1c0040e2 <__swbuf_r+0x38> +1c004166 <__swbuf_r+0xbc> li s2,-1 +1c004168 <__swbuf_r+0xbe> j 1c00412e <__swbuf_r+0x84> +__swsetup_r(): +1c00416a <__swsetup_r> addi sp,sp,-16 +1c00416c <__swsetup_r+0x2> lui a5,0x1c009 +1c004170 <__swsetup_r+0x6> sw s1,4(sp) +1c004172 <__swsetup_r+0x8> lw s1,-956(a5) # 1c008c44 <_impure_ptr> +1c004176 <__swsetup_r+0xc> sw s0,8(sp) +1c004178 <__swsetup_r+0xe> sw s2,0(sp) +1c00417a <__swsetup_r+0x10> sw ra,12(sp) +1c00417c <__swsetup_r+0x12> mv s2,a0 +1c00417e <__swsetup_r+0x14> mv s0,a1 +1c004180 <__swsetup_r+0x16> beqz s1,1c00418a <__swsetup_r+0x20> +1c004182 <__swsetup_r+0x18> lw a5,24(s1) +1c004184 <__swsetup_r+0x1a> bnez a5,1c00418a <__swsetup_r+0x20> +1c004186 <__swsetup_r+0x1c> mv a0,s1 +1c004188 <__swsetup_r+0x1e> jal 1c004624 <__sinit> +1c00418a <__swsetup_r+0x20> lui a5,0x1c009 +1c00418e <__swsetup_r+0x24> addi a5,a5,-1516 # 1c008a14 <__sf_fake_stdin> +1c004192 <__swsetup_r+0x28> bne s0,a5,1c0041c0 <__swsetup_r+0x56> +1c004196 <__swsetup_r+0x2c> lw s0,4(s1) +1c004198 <__swsetup_r+0x2e> lh a5,12(s0) +1c00419c <__swsetup_r+0x32> slli a4,a5,0x10 +1c0041a0 <__swsetup_r+0x36> andi a3,a5,8 +1c0041a4 <__swsetup_r+0x3a> srli a4,a4,0x10 +1c0041a6 <__swsetup_r+0x3c> bnez a3,1c00421a <__swsetup_r+0xb0> +1c0041a8 <__swsetup_r+0x3e> andi a3,a4,16 +1c0041ac <__swsetup_r+0x42> bnez a3,1c0041e0 <__swsetup_r+0x76> +1c0041ae <__swsetup_r+0x44> li a4,9 +1c0041b0 <__swsetup_r+0x46> sw a4,0(s2) +1c0041b4 <__swsetup_r+0x4a> ori a5,a5,64 +1c0041b8 <__swsetup_r+0x4e> sh a5,12(s0) +1c0041bc <__swsetup_r+0x52> li a0,-1 +1c0041be <__swsetup_r+0x54> j 1c00425c <__swsetup_r+0xf2> +1c0041c0 <__swsetup_r+0x56> lui a5,0x1c009 +1c0041c4 <__swsetup_r+0x5a> addi a5,a5,-1484 # 1c008a34 <__sf_fake_stdout> +1c0041c8 <__swsetup_r+0x5e> bne s0,a5,1c0041d0 <__swsetup_r+0x66> +1c0041cc <__swsetup_r+0x62> lw s0,8(s1) +1c0041ce <__swsetup_r+0x64> j 1c004198 <__swsetup_r+0x2e> +1c0041d0 <__swsetup_r+0x66> lui a5,0x1c009 +1c0041d4 <__swsetup_r+0x6a> addi a5,a5,-1548 # 1c0089f4 <__sf_fake_stderr> +1c0041d8 <__swsetup_r+0x6e> bne s0,a5,1c004198 <__swsetup_r+0x2e> +1c0041dc <__swsetup_r+0x72> lw s0,12(s1) +1c0041de <__swsetup_r+0x74> j 1c004198 <__swsetup_r+0x2e> +1c0041e0 <__swsetup_r+0x76> andi a4,a4,4 +1c0041e2 <__swsetup_r+0x78> beqz a4,1c00420e <__swsetup_r+0xa4> +1c0041e4 <__swsetup_r+0x7a> lw a1,52(s0) +1c0041e6 <__swsetup_r+0x7c> beqz a1,1c0041fa <__swsetup_r+0x90> +1c0041e8 <__swsetup_r+0x7e> addi a5,s0,68 +1c0041ec <__swsetup_r+0x82> beq a1,a5,1c0041f6 <__swsetup_r+0x8c> +1c0041f0 <__swsetup_r+0x86> mv a0,s2 +1c0041f2 <__swsetup_r+0x88> jal ra,1c003920 <_free_r> +1c0041f6 <__swsetup_r+0x8c> sw zero,52(s0) +1c0041fa <__swsetup_r+0x90> lhu a5,12(s0) +1c0041fe <__swsetup_r+0x94> sw zero,4(s0) +1c004202 <__swsetup_r+0x98> andi a5,a5,-37 +1c004206 <__swsetup_r+0x9c> sh a5,12(s0) +1c00420a <__swsetup_r+0xa0> lw a5,16(s0) +1c00420c <__swsetup_r+0xa2> sw a5,0(s0) +1c00420e <__swsetup_r+0xa4> lhu a5,12(s0) +1c004212 <__swsetup_r+0xa8> ori a5,a5,8 +1c004216 <__swsetup_r+0xac> sh a5,12(s0) +1c00421a <__swsetup_r+0xb0> lw a5,16(s0) +1c00421c <__swsetup_r+0xb2> bnez a5,1c004234 <__swsetup_r+0xca> +1c00421e <__swsetup_r+0xb4> lhu a5,12(s0) +1c004222 <__swsetup_r+0xb8> li a4,512 +1c004226 <__swsetup_r+0xbc> andi a5,a5,640 +1c00422a <__swsetup_r+0xc0> beq a5,a4,1c004234 <__swsetup_r+0xca> +1c00422e <__swsetup_r+0xc4> mv a1,s0 +1c004230 <__swsetup_r+0xc6> mv a0,s2 +1c004232 <__swsetup_r+0xc8> jal 1c0047fa <__smakebuf_r> +1c004234 <__swsetup_r+0xca> lh a5,12(s0) +1c004238 <__swsetup_r+0xce> slli a4,a5,0x10 +1c00423c <__swsetup_r+0xd2> andi a3,a5,1 +1c004240 <__swsetup_r+0xd6> srli a4,a4,0x10 +1c004242 <__swsetup_r+0xd8> beqz a3,1c004268 <__swsetup_r+0xfe> +1c004244 <__swsetup_r+0xda> lw a3,20(s0) +1c004246 <__swsetup_r+0xdc> sw zero,8(s0) +1c00424a <__swsetup_r+0xe0> neg a3,a3 +1c00424e <__swsetup_r+0xe4> sw a3,24(s0) +1c004250 <__swsetup_r+0xe6> lw a3,16(s0) +1c004252 <__swsetup_r+0xe8> li a0,0 +1c004254 <__swsetup_r+0xea> bnez a3,1c00425c <__swsetup_r+0xf2> +1c004256 <__swsetup_r+0xec> andi a4,a4,128 +1c00425a <__swsetup_r+0xf0> bnez a4,1c0041b4 <__swsetup_r+0x4a> +1c00425c <__swsetup_r+0xf2> lw ra,12(sp) +1c00425e <__swsetup_r+0xf4> lw s0,8(sp) +1c004260 <__swsetup_r+0xf6> lw s1,4(sp) +1c004262 <__swsetup_r+0xf8> lw s2,0(sp) +1c004264 <__swsetup_r+0xfa> addi sp,sp,16 +1c004266 <__swsetup_r+0xfc> ret +1c004268 <__swsetup_r+0xfe> andi a3,a4,2 +1c00426c <__swsetup_r+0x102> li a2,0 +1c00426e <__swsetup_r+0x104> bnez a3,1c004272 <__swsetup_r+0x108> +1c004270 <__swsetup_r+0x106> lw a2,20(s0) +1c004272 <__swsetup_r+0x108> sw a2,8(s0) +1c004274 <__swsetup_r+0x10a> j 1c004250 <__swsetup_r+0xe6> +__register_exitproc(): +1c004276 <__register_exitproc> lw a5,-572(gp) # 1c0091a0 <_global_atexit> +1c00427a <__register_exitproc+0x4> mv a7,a0 +1c00427c <__register_exitproc+0x6> bnez a5,1c00429e <__register_exitproc+0x28> +1c00427e <__register_exitproc+0x8> addi a0,gp,-824 # 1c0090a4 <_global_atexit0> +1c004282 <__register_exitproc+0xc> sw a0,-572(gp) # 1c0091a0 <_global_atexit> +1c004286 <__register_exitproc+0x10> li t1,0 +1c00428a <__register_exitproc+0x14> addi a5,gp,-824 # 1c0090a4 <_global_atexit0> +1c00428e <__register_exitproc+0x18> beqz t1,1c00429e <__register_exitproc+0x28> +1c004292 <__register_exitproc+0x1c> lw a5,0(zero) # 00000000 <__heap_size> +1c004296 <__register_exitproc+0x20> sw a5,136(a0) +1c00429a <__register_exitproc+0x24> addi a5,gp,-824 # 1c0090a4 <_global_atexit0> +1c00429e <__register_exitproc+0x28> lw a4,4(a5) +1c0042a0 <__register_exitproc+0x2a> li a6,31 +1c0042a2 <__register_exitproc+0x2c> li a0,-1 +1c0042a4 <__register_exitproc+0x2e> blt a6,a4,1c0042f0 <__register_exitproc+0x7a> +1c0042a8 <__register_exitproc+0x32> beqz a7,1c0042e2 <__register_exitproc+0x6c> +1c0042ac <__register_exitproc+0x36> lw a6,136(a5) +1c0042b0 <__register_exitproc+0x3a> beqz a6,1c0042f0 <__register_exitproc+0x7a> +1c0042b4 <__register_exitproc+0x3e> slli a0,a4,0x2 +1c0042b8 <__register_exitproc+0x42> add a0,a0,a6 +1c0042ba <__register_exitproc+0x44> sw a2,0(a0) +1c0042bc <__register_exitproc+0x46> lw t1,256(a6) +1c0042c0 <__register_exitproc+0x4a> li a2,1 +1c0042c2 <__register_exitproc+0x4c> sll a2,a2,a4 +1c0042c6 <__register_exitproc+0x50> or t1,t1,a2 +1c0042ca <__register_exitproc+0x54> sw t1,256(a6) +1c0042ce <__register_exitproc+0x58> sw a3,128(a0) +1c0042d2 <__register_exitproc+0x5c> li a3,2 +1c0042d4 <__register_exitproc+0x5e> bne a7,a3,1c0042e2 <__register_exitproc+0x6c> +1c0042d8 <__register_exitproc+0x62> lw a3,260(a6) +1c0042dc <__register_exitproc+0x66> or a2,a2,a3 +1c0042de <__register_exitproc+0x68> sw a2,260(a6) +1c0042e2 <__register_exitproc+0x6c> addi a3,a4,1 +1c0042e6 <__register_exitproc+0x70> slli a4,a4,0x2 +1c0042e8 <__register_exitproc+0x72> sw a3,4(a5) +1c0042ea <__register_exitproc+0x74> add a5,a5,a4 +1c0042ec <__register_exitproc+0x76> sw a1,8(a5) +1c0042ee <__register_exitproc+0x78> li a0,0 +1c0042f0 <__register_exitproc+0x7a> ret +__call_exitprocs(): +1c0042f2 <__call_exitprocs> addi sp,sp,-48 +1c0042f4 <__call_exitprocs+0x2> sw s5,20(sp) +1c0042f6 <__call_exitprocs+0x4> sw s6,16(sp) +1c0042f8 <__call_exitprocs+0x6> sw s7,12(sp) +1c0042fa <__call_exitprocs+0x8> sw s9,4(sp) +1c0042fc <__call_exitprocs+0xa> sw ra,44(sp) +1c0042fe <__call_exitprocs+0xc> sw s0,40(sp) +1c004300 <__call_exitprocs+0xe> sw s1,36(sp) +1c004302 <__call_exitprocs+0x10> sw s2,32(sp) +1c004304 <__call_exitprocs+0x12> sw s3,28(sp) +1c004306 <__call_exitprocs+0x14> sw s4,24(sp) +1c004308 <__call_exitprocs+0x16> sw s8,8(sp) +1c00430a <__call_exitprocs+0x18> sw s10,0(sp) +1c00430c <__call_exitprocs+0x1a> mv s6,a0 +1c00430e <__call_exitprocs+0x1c> mv s5,a1 +1c004310 <__call_exitprocs+0x1e> li s9,1 +1c004312 <__call_exitprocs+0x20> lw s1,-572(gp) # 1c0091a0 <_global_atexit> +1c004316 <__call_exitprocs+0x24> addi s8,gp,-572 # 1c0091a0 <_global_atexit> +1c00431a <__call_exitprocs+0x28> beqz s1,1c004332 <__call_exitprocs+0x40> +1c00431c <__call_exitprocs+0x2a> lw s0,4(s1) +1c00431e <__call_exitprocs+0x2c> lw s3,136(s1) +1c004322 <__call_exitprocs+0x30> addi s2,s0,-1 +1c004326 <__call_exitprocs+0x34> slli s0,s0,0x2 +1c004328 <__call_exitprocs+0x36> add s4,s3,s0 +1c00432c <__call_exitprocs+0x3a> add s0,s0,s1 +1c00432e <__call_exitprocs+0x3c> bgez s2,1c00434e <__call_exitprocs+0x5c> +1c004332 <__call_exitprocs+0x40> lw ra,44(sp) +1c004334 <__call_exitprocs+0x42> lw s0,40(sp) +1c004336 <__call_exitprocs+0x44> lw s1,36(sp) +1c004338 <__call_exitprocs+0x46> lw s2,32(sp) +1c00433a <__call_exitprocs+0x48> lw s3,28(sp) +1c00433c <__call_exitprocs+0x4a> lw s4,24(sp) +1c00433e <__call_exitprocs+0x4c> lw s5,20(sp) +1c004340 <__call_exitprocs+0x4e> lw s6,16(sp) +1c004342 <__call_exitprocs+0x50> lw s7,12(sp) +1c004344 <__call_exitprocs+0x52> lw s8,8(sp) +1c004346 <__call_exitprocs+0x54> lw s9,4(sp) +1c004348 <__call_exitprocs+0x56> lw s10,0(sp) +1c00434a <__call_exitprocs+0x58> addi sp,sp,48 +1c00434c <__call_exitprocs+0x5a> ret +1c00434e <__call_exitprocs+0x5c> beqz s5,1c004366 <__call_exitprocs+0x74> +1c004352 <__call_exitprocs+0x60> bnez s3,1c00435e <__call_exitprocs+0x6c> +1c004356 <__call_exitprocs+0x64> addi s2,s2,-1 +1c004358 <__call_exitprocs+0x66> addi s4,s4,-4 +1c00435a <__call_exitprocs+0x68> addi s0,s0,-4 +1c00435c <__call_exitprocs+0x6a> j 1c00432e <__call_exitprocs+0x3c> +1c00435e <__call_exitprocs+0x6c> lw a5,124(s4) +1c004362 <__call_exitprocs+0x70> bne a5,s5,1c004356 <__call_exitprocs+0x64> +1c004366 <__call_exitprocs+0x74> lw a4,4(s1) +1c004368 <__call_exitprocs+0x76> lw a5,4(s0) +1c00436a <__call_exitprocs+0x78> addi a4,a4,-1 +1c00436c <__call_exitprocs+0x7a> bne a4,s2,1c00439c <__call_exitprocs+0xaa> +1c004370 <__call_exitprocs+0x7e> sw s2,4(s1) +1c004374 <__call_exitprocs+0x82> beqz a5,1c004356 <__call_exitprocs+0x64> +1c004376 <__call_exitprocs+0x84> lw s10,4(s1) +1c00437a <__call_exitprocs+0x88> beqz s3,1c00438a <__call_exitprocs+0x98> +1c00437e <__call_exitprocs+0x8c> lw a3,256(s3) +1c004382 <__call_exitprocs+0x90> sll a4,s9,s2 +1c004386 <__call_exitprocs+0x94> and a3,a3,a4 +1c004388 <__call_exitprocs+0x96> bnez a3,1c0043a2 <__call_exitprocs+0xb0> +1c00438a <__call_exitprocs+0x98> jalr a5 +1c00438c <__call_exitprocs+0x9a> lw a4,4(s1) +1c00438e <__call_exitprocs+0x9c> lw a5,0(s8) +1c004392 <__call_exitprocs+0xa0> bne a4,s10,1c004312 <__call_exitprocs+0x20> +1c004396 <__call_exitprocs+0xa4> beq s1,a5,1c004356 <__call_exitprocs+0x64> +1c00439a <__call_exitprocs+0xa8> j 1c004312 <__call_exitprocs+0x20> +1c00439c <__call_exitprocs+0xaa> sw zero,4(s0) +1c0043a0 <__call_exitprocs+0xae> j 1c004374 <__call_exitprocs+0x82> +1c0043a2 <__call_exitprocs+0xb0> lw a3,260(s3) +1c0043a6 <__call_exitprocs+0xb4> lw a1,-4(s4) +1c0043aa <__call_exitprocs+0xb8> and a4,a4,a3 +1c0043ac <__call_exitprocs+0xba> bnez a4,1c0043b4 <__call_exitprocs+0xc2> +1c0043ae <__call_exitprocs+0xbc> mv a0,s6 +1c0043b0 <__call_exitprocs+0xbe> jalr a5 +1c0043b2 <__call_exitprocs+0xc0> j 1c00438c <__call_exitprocs+0x9a> +1c0043b4 <__call_exitprocs+0xc2> mv a0,a1 +1c0043b6 <__call_exitprocs+0xc4> jalr a5 +1c0043b8 <__call_exitprocs+0xc6> j 1c00438c <__call_exitprocs+0x9a> +__sflush_r(): +1c0043ba <__sflush_r> lhu a5,12(a1) +1c0043be <__sflush_r+0x4> addi sp,sp,-32 +1c0043c0 <__sflush_r+0x6> sw s0,24(sp) +1c0043c2 <__sflush_r+0x8> sw s1,20(sp) +1c0043c4 <__sflush_r+0xa> sw ra,28(sp) +1c0043c6 <__sflush_r+0xc> sw s2,16(sp) +1c0043c8 <__sflush_r+0xe> sw s3,12(sp) +1c0043ca <__sflush_r+0x10> andi a4,a5,8 +1c0043ce <__sflush_r+0x14> mv s1,a0 +1c0043d0 <__sflush_r+0x16> mv s0,a1 +1c0043d2 <__sflush_r+0x18> bnez a4,1c0044b8 <__sflush_r+0xfe> +1c0043d4 <__sflush_r+0x1a> lw a4,4(a1) +1c0043d6 <__sflush_r+0x1c> bgtz a4,1c0043e4 <__sflush_r+0x2a> +1c0043da <__sflush_r+0x20> lw a4,64(a1) +1c0043dc <__sflush_r+0x22> bgtz a4,1c0043e4 <__sflush_r+0x2a> +1c0043e0 <__sflush_r+0x26> li a0,0 +1c0043e2 <__sflush_r+0x28> j 1c0044a0 <__sflush_r+0xe6> +1c0043e4 <__sflush_r+0x2a> lw a4,44(s0) +1c0043e6 <__sflush_r+0x2c> beqz a4,1c0043e0 <__sflush_r+0x26> +1c0043e8 <__sflush_r+0x2e> lui a3,0x1 +1c0043ea <__sflush_r+0x30> lw s2,0(s1) +1c0043ee <__sflush_r+0x34> and a5,a5,a3 +1c0043f0 <__sflush_r+0x36> sw zero,0(s1) +1c0043f4 <__sflush_r+0x3a> beqz a5,1c00446e <__sflush_r+0xb4> +1c0043f6 <__sflush_r+0x3c> lw a0,84(s0) +1c0043f8 <__sflush_r+0x3e> lhu a5,12(s0) +1c0043fc <__sflush_r+0x42> andi a5,a5,4 +1c0043fe <__sflush_r+0x44> beqz a5,1c00440c <__sflush_r+0x52> +1c004400 <__sflush_r+0x46> lw a5,4(s0) +1c004402 <__sflush_r+0x48> sub a0,a0,a5 +1c004404 <__sflush_r+0x4a> lw a5,52(s0) +1c004406 <__sflush_r+0x4c> beqz a5,1c00440c <__sflush_r+0x52> +1c004408 <__sflush_r+0x4e> lw a5,64(s0) +1c00440a <__sflush_r+0x50> sub a0,a0,a5 +1c00440c <__sflush_r+0x52> lw a5,44(s0) +1c00440e <__sflush_r+0x54> lw a1,32(s0) +1c004410 <__sflush_r+0x56> mv a2,a0 +1c004412 <__sflush_r+0x58> li a3,0 +1c004414 <__sflush_r+0x5a> mv a0,s1 +1c004416 <__sflush_r+0x5c> jalr a5 +1c004418 <__sflush_r+0x5e> li a5,-1 +1c00441a <__sflush_r+0x60> lhu a4,12(s0) +1c00441e <__sflush_r+0x64> bne a0,a5,1c004438 <__sflush_r+0x7e> +1c004422 <__sflush_r+0x68> lw a3,0(s1) +1c004424 <__sflush_r+0x6a> li a5,29 +1c004426 <__sflush_r+0x6c> bltu a5,a3,1c0044ae <__sflush_r+0xf4> +1c00442a <__sflush_r+0x70> lui a5,0x20400 +1c00442e <__sflush_r+0x74> addi a5,a5,1 +1c004430 <__sflush_r+0x76> srl a5,a5,a3 +1c004434 <__sflush_r+0x7a> andi a5,a5,1 +1c004436 <__sflush_r+0x7c> beqz a5,1c0044ae <__sflush_r+0xf4> +1c004438 <__sflush_r+0x7e> lw a5,16(s0) +1c00443a <__sflush_r+0x80> sw zero,4(s0) +1c00443e <__sflush_r+0x84> sw a5,0(s0) +1c004440 <__sflush_r+0x86> lui a5,0x1 +1c004442 <__sflush_r+0x88> and a4,a4,a5 +1c004444 <__sflush_r+0x8a> beqz a4,1c004452 <__sflush_r+0x98> +1c004446 <__sflush_r+0x8c> li a5,-1 +1c004448 <__sflush_r+0x8e> bne a0,a5,1c004450 <__sflush_r+0x96> +1c00444c <__sflush_r+0x92> lw a5,0(s1) +1c00444e <__sflush_r+0x94> bnez a5,1c004452 <__sflush_r+0x98> +1c004450 <__sflush_r+0x96> sw a0,84(s0) +1c004452 <__sflush_r+0x98> lw a1,52(s0) +1c004454 <__sflush_r+0x9a> sw s2,0(s1) +1c004458 <__sflush_r+0x9e> beqz a1,1c0043e0 <__sflush_r+0x26> +1c00445a <__sflush_r+0xa0> addi a5,s0,68 +1c00445e <__sflush_r+0xa4> beq a1,a5,1c004468 <__sflush_r+0xae> +1c004462 <__sflush_r+0xa8> mv a0,s1 +1c004464 <__sflush_r+0xaa> jal ra,1c003920 <_free_r> +1c004468 <__sflush_r+0xae> sw zero,52(s0) +1c00446c <__sflush_r+0xb2> j 1c0043e0 <__sflush_r+0x26> +1c00446e <__sflush_r+0xb4> lw a1,32(s0) +1c004470 <__sflush_r+0xb6> li a3,1 +1c004472 <__sflush_r+0xb8> li a2,0 +1c004474 <__sflush_r+0xba> mv a0,s1 +1c004476 <__sflush_r+0xbc> jalr a4 +1c004478 <__sflush_r+0xbe> li a5,-1 +1c00447a <__sflush_r+0xc0> bne a0,a5,1c0043f8 <__sflush_r+0x3e> +1c00447e <__sflush_r+0xc4> lw a5,0(s1) +1c004480 <__sflush_r+0xc6> beqz a5,1c0043f8 <__sflush_r+0x3e> +1c004482 <__sflush_r+0xc8> li a4,29 +1c004484 <__sflush_r+0xca> beq a5,a4,1c00448e <__sflush_r+0xd4> +1c004488 <__sflush_r+0xce> li a4,22 +1c00448a <__sflush_r+0xd0> bne a5,a4,1c004494 <__sflush_r+0xda> +1c00448e <__sflush_r+0xd4> sw s2,0(s1) +1c004492 <__sflush_r+0xd8> j 1c0043e0 <__sflush_r+0x26> +1c004494 <__sflush_r+0xda> lhu a5,12(s0) +1c004498 <__sflush_r+0xde> ori a5,a5,64 +1c00449c <__sflush_r+0xe2> sh a5,12(s0) +1c0044a0 <__sflush_r+0xe6> lw ra,28(sp) +1c0044a2 <__sflush_r+0xe8> lw s0,24(sp) +1c0044a4 <__sflush_r+0xea> lw s1,20(sp) +1c0044a6 <__sflush_r+0xec> lw s2,16(sp) +1c0044a8 <__sflush_r+0xee> lw s3,12(sp) +1c0044aa <__sflush_r+0xf0> addi sp,sp,32 +1c0044ac <__sflush_r+0xf2> ret +1c0044ae <__sflush_r+0xf4> ori a4,a4,64 +1c0044b2 <__sflush_r+0xf8> sh a4,12(s0) +1c0044b6 <__sflush_r+0xfc> j 1c0044a0 <__sflush_r+0xe6> +1c0044b8 <__sflush_r+0xfe> lw s3,16(a1) +1c0044bc <__sflush_r+0x102> beqz s3,1c0043e0 <__sflush_r+0x26> +1c0044c0 <__sflush_r+0x106> lw s2,0(a1) +1c0044c4 <__sflush_r+0x10a> andi a5,a5,3 +1c0044c6 <__sflush_r+0x10c> sw s3,0(a1) +1c0044ca <__sflush_r+0x110> sub s2,s2,s3 +1c0044ce <__sflush_r+0x114> li a4,0 +1c0044d0 <__sflush_r+0x116> bnez a5,1c0044d4 <__sflush_r+0x11a> +1c0044d2 <__sflush_r+0x118> lw a4,20(a1) +1c0044d4 <__sflush_r+0x11a> sw a4,8(s0) +1c0044d6 <__sflush_r+0x11c> blez s2,1c0043e0 <__sflush_r+0x26> +1c0044da <__sflush_r+0x120> lw a5,40(s0) +1c0044dc <__sflush_r+0x122> lw a1,32(s0) +1c0044de <__sflush_r+0x124> mv a3,s2 +1c0044e0 <__sflush_r+0x126> mv a2,s3 +1c0044e2 <__sflush_r+0x128> mv a0,s1 +1c0044e4 <__sflush_r+0x12a> jalr a5 +1c0044e6 <__sflush_r+0x12c> bgtz a0,1c0044fa <__sflush_r+0x140> +1c0044ea <__sflush_r+0x130> lhu a5,12(s0) +1c0044ee <__sflush_r+0x134> li a0,-1 +1c0044f0 <__sflush_r+0x136> ori a5,a5,64 +1c0044f4 <__sflush_r+0x13a> sh a5,12(s0) +1c0044f8 <__sflush_r+0x13e> j 1c0044a0 <__sflush_r+0xe6> +1c0044fa <__sflush_r+0x140> add s3,s3,a0 +1c0044fc <__sflush_r+0x142> sub s2,s2,a0 +1c004500 <__sflush_r+0x146> j 1c0044d6 <__sflush_r+0x11c> +_fflush_r(): +1c004502 <_fflush_r> lw a5,16(a1) +1c004504 <_fflush_r+0x2> beqz a5,1c004564 <_fflush_r+0x62> +1c004506 <_fflush_r+0x4> addi sp,sp,-32 +1c004508 <_fflush_r+0x6> sw s0,24(sp) +1c00450a <_fflush_r+0x8> sw ra,28(sp) +1c00450c <_fflush_r+0xa> mv s0,a0 +1c00450e <_fflush_r+0xc> beqz a0,1c00451a <_fflush_r+0x18> +1c004510 <_fflush_r+0xe> lw a5,24(a0) +1c004512 <_fflush_r+0x10> bnez a5,1c00451a <_fflush_r+0x18> +1c004514 <_fflush_r+0x12> sw a1,12(sp) +1c004516 <_fflush_r+0x14> jal 1c004624 <__sinit> +1c004518 <_fflush_r+0x16> lw a1,12(sp) +1c00451a <_fflush_r+0x18> lui a5,0x1c009 +1c00451e <_fflush_r+0x1c> addi a5,a5,-1516 # 1c008a14 <__sf_fake_stdin> +1c004522 <_fflush_r+0x20> bne a1,a5,1c00453a <_fflush_r+0x38> +1c004526 <_fflush_r+0x24> lw a1,4(s0) +1c004528 <_fflush_r+0x26> lh a5,12(a1) +1c00452c <_fflush_r+0x2a> beqz a5,1c00455a <_fflush_r+0x58> +1c00452e <_fflush_r+0x2c> mv a0,s0 +1c004530 <_fflush_r+0x2e> lw s0,24(sp) +1c004532 <_fflush_r+0x30> lw ra,28(sp) +1c004534 <_fflush_r+0x32> addi sp,sp,32 +1c004536 <_fflush_r+0x34> j 1c0043ba <__sflush_r> +1c00453a <_fflush_r+0x38> lui a5,0x1c009 +1c00453e <_fflush_r+0x3c> addi a5,a5,-1484 # 1c008a34 <__sf_fake_stdout> +1c004542 <_fflush_r+0x40> bne a1,a5,1c00454a <_fflush_r+0x48> +1c004546 <_fflush_r+0x44> lw a1,8(s0) +1c004548 <_fflush_r+0x46> j 1c004528 <_fflush_r+0x26> +1c00454a <_fflush_r+0x48> lui a5,0x1c009 +1c00454e <_fflush_r+0x4c> addi a5,a5,-1548 # 1c0089f4 <__sf_fake_stderr> +1c004552 <_fflush_r+0x50> bne a1,a5,1c004528 <_fflush_r+0x26> +1c004556 <_fflush_r+0x54> lw a1,12(s0) +1c004558 <_fflush_r+0x56> j 1c004528 <_fflush_r+0x26> +1c00455a <_fflush_r+0x58> lw ra,28(sp) +1c00455c <_fflush_r+0x5a> lw s0,24(sp) +1c00455e <_fflush_r+0x5c> li a0,0 +1c004560 <_fflush_r+0x5e> addi sp,sp,32 +1c004562 <_fflush_r+0x60> ret +1c004564 <_fflush_r+0x62> li a0,0 +1c004566 <_fflush_r+0x64> ret +std(): +1c004568 addi sp,sp,-16 +1c00456a sw s0,8(sp) +1c00456c sw ra,12(sp) +1c00456e mv s0,a0 +1c004570 sh a1,12(a0) +1c004574 sh a2,14(a0) +1c004578 sw zero,0(a0) +1c00457c sw zero,4(a0) +1c004580 sw zero,8(a0) +1c004584 sw zero,100(a0) +1c004588 sw zero,16(a0) +1c00458c sw zero,20(a0) +1c004590 sw zero,24(a0) +1c004594 li a2,8 +1c004596 li a1,0 +1c004598 addi a0,a0,92 +1c00459c jal ra,1c000e7a +1c0045a0 lui a5,0x1c005 +1c0045a4 addi a5,a5,-978 # 1c004c2e <__sread> +1c0045a8 sw a5,36(s0) +1c0045aa lui a5,0x1c005 +1c0045ae addi a5,a5,-930 # 1c004c5e <__swrite> +1c0045b2 sw a5,40(s0) +1c0045b4 lui a5,0x1c005 +1c0045b8 addi a5,a5,-852 # 1c004cac <__sseek> +1c0045bc sw a5,44(s0) +1c0045be lui a5,0x1c005 +1c0045c2 addi a5,a5,-798 # 1c004ce2 <__sclose> +1c0045c6 lw ra,12(sp) +1c0045c8 sw s0,32(s0) +1c0045ca sw a5,48(s0) +1c0045cc lw s0,8(sp) +1c0045ce addi sp,sp,16 +1c0045d0 ret +_cleanup_r(): +1c0045d2 <_cleanup_r> lui a1,0x1c004 +1c0045d6 <_cleanup_r+0x4> addi a1,a1,1282 # 1c004502 <_fflush_r> +1c0045da <_cleanup_r+0x8> j 1c004736 <_fwalk_reent> +__sfmoreglue(): +1c0045dc <__sfmoreglue> addi sp,sp,-16 +1c0045de <__sfmoreglue+0x2> sw s1,4(sp) +1c0045e0 <__sfmoreglue+0x4> li a2,104 +1c0045e4 <__sfmoreglue+0x8> addi s1,a1,-1 +1c0045e8 <__sfmoreglue+0xc> mul s1,s1,a2 +1c0045ec <__sfmoreglue+0x10> sw s2,0(sp) +1c0045ee <__sfmoreglue+0x12> mv s2,a1 +1c0045f0 <__sfmoreglue+0x14> sw s0,8(sp) +1c0045f2 <__sfmoreglue+0x16> sw ra,12(sp) +1c0045f4 <__sfmoreglue+0x18> addi a1,s1,116 +1c0045f8 <__sfmoreglue+0x1c> jal ra,1c0039c8 <_malloc_r> +1c0045fc <__sfmoreglue+0x20> mv s0,a0 +1c0045fe <__sfmoreglue+0x22> beqz a0,1c004616 <__sfmoreglue+0x3a> +1c004600 <__sfmoreglue+0x24> sw zero,0(a0) +1c004604 <__sfmoreglue+0x28> sw s2,4(a0) +1c004608 <__sfmoreglue+0x2c> addi a0,a0,12 +1c00460a <__sfmoreglue+0x2e> sw a0,8(s0) +1c00460c <__sfmoreglue+0x30> addi a2,s1,104 +1c004610 <__sfmoreglue+0x34> li a1,0 +1c004612 <__sfmoreglue+0x36> jal ra,1c000e7a +1c004616 <__sfmoreglue+0x3a> lw ra,12(sp) +1c004618 <__sfmoreglue+0x3c> mv a0,s0 +1c00461a <__sfmoreglue+0x3e> lw s0,8(sp) +1c00461c <__sfmoreglue+0x40> lw s1,4(sp) +1c00461e <__sfmoreglue+0x42> lw s2,0(sp) +1c004620 <__sfmoreglue+0x44> addi sp,sp,16 +1c004622 <__sfmoreglue+0x46> ret +__sinit(): +1c004624 <__sinit> lw a5,24(a0) +1c004626 <__sinit+0x2> bnez a5,1c004692 <__sinit+0x6e> +1c004628 <__sinit+0x4> addi sp,sp,-16 +1c00462a <__sinit+0x6> lui a5,0x1c004 +1c00462e <__sinit+0xa> sw s0,8(sp) +1c004630 <__sinit+0xc> sw ra,12(sp) +1c004632 <__sinit+0xe> addi a5,a5,1490 # 1c0045d2 <_cleanup_r> +1c004636 <__sinit+0x12> sw a5,40(a0) +1c004638 <__sinit+0x14> lui a5,0x1c009 +1c00463c <__sinit+0x18> lw a5,-1064(a5) # 1c008bd8 <_global_impure_ptr> +1c004640 <__sinit+0x1c> sw zero,72(a0) +1c004644 <__sinit+0x20> sw zero,76(a0) +1c004648 <__sinit+0x24> sw zero,80(a0) +1c00464c <__sinit+0x28> mv s0,a0 +1c00464e <__sinit+0x2a> bne a0,a5,1c004656 <__sinit+0x32> +1c004652 <__sinit+0x2e> li a5,1 +1c004654 <__sinit+0x30> sw a5,24(a0) +1c004656 <__sinit+0x32> mv a0,s0 +1c004658 <__sinit+0x34> jal 1c004694 <__sfp> +1c00465a <__sinit+0x36> sw a0,4(s0) +1c00465c <__sinit+0x38> mv a0,s0 +1c00465e <__sinit+0x3a> jal 1c004694 <__sfp> +1c004660 <__sinit+0x3c> sw a0,8(s0) +1c004662 <__sinit+0x3e> mv a0,s0 +1c004664 <__sinit+0x40> jal 1c004694 <__sfp> +1c004666 <__sinit+0x42> sw a0,12(s0) +1c004668 <__sinit+0x44> lw a0,4(s0) +1c00466a <__sinit+0x46> li a2,0 +1c00466c <__sinit+0x48> li a1,4 +1c00466e <__sinit+0x4a> jal ra,1c004568 +1c004672 <__sinit+0x4e> lw a0,8(s0) +1c004674 <__sinit+0x50> li a2,1 +1c004676 <__sinit+0x52> li a1,9 +1c004678 <__sinit+0x54> jal ra,1c004568 +1c00467c <__sinit+0x58> lw a0,12(s0) +1c00467e <__sinit+0x5a> li a2,2 +1c004680 <__sinit+0x5c> li a1,18 +1c004682 <__sinit+0x5e> jal ra,1c004568 +1c004686 <__sinit+0x62> li a5,1 +1c004688 <__sinit+0x64> lw ra,12(sp) +1c00468a <__sinit+0x66> sw a5,24(s0) +1c00468c <__sinit+0x68> lw s0,8(sp) +1c00468e <__sinit+0x6a> addi sp,sp,16 +1c004690 <__sinit+0x6c> ret +1c004692 <__sinit+0x6e> ret +__sfp(): +1c004694 <__sfp> addi sp,sp,-16 +1c004696 <__sfp+0x2> lui a5,0x1c009 +1c00469a <__sfp+0x6> sw s1,4(sp) +1c00469c <__sfp+0x8> lw s1,-1064(a5) # 1c008bd8 <_global_impure_ptr> +1c0046a0 <__sfp+0xc> sw s2,0(sp) +1c0046a2 <__sfp+0xe> sw ra,12(sp) +1c0046a4 <__sfp+0x10> lw a5,24(s1) +1c0046a6 <__sfp+0x12> sw s0,8(sp) +1c0046a8 <__sfp+0x14> mv s2,a0 +1c0046aa <__sfp+0x16> bnez a5,1c0046b2 <__sfp+0x1e> +1c0046ac <__sfp+0x18> mv a0,s1 +1c0046ae <__sfp+0x1a> jal ra,1c004624 <__sinit> +1c0046b2 <__sfp+0x1e> addi s1,s1,72 +1c0046b6 <__sfp+0x22> lw s0,8(s1) +1c0046b8 <__sfp+0x24> lw a5,4(s1) +1c0046ba <__sfp+0x26> addi a5,a5,-1 +1c0046bc <__sfp+0x28> bgez a5,1c0046c8 <__sfp+0x34> +1c0046c0 <__sfp+0x2c> lw a5,0(s1) +1c0046c2 <__sfp+0x2e> beqz a5,1c004720 <__sfp+0x8c> +1c0046c4 <__sfp+0x30> lw s1,0(s1) +1c0046c6 <__sfp+0x32> j 1c0046b6 <__sfp+0x22> +1c0046c8 <__sfp+0x34> lh a4,12(s0) +1c0046cc <__sfp+0x38> bnez a4,1c00471a <__sfp+0x86> +1c0046ce <__sfp+0x3a> lui a5,0xffff0 +1c0046d0 <__sfp+0x3c> addi a5,a5,1 +1c0046d2 <__sfp+0x3e> sw zero,100(s0) +1c0046d6 <__sfp+0x42> sw zero,0(s0) +1c0046da <__sfp+0x46> sw zero,4(s0) +1c0046de <__sfp+0x4a> sw zero,8(s0) +1c0046e2 <__sfp+0x4e> sw a5,12(s0) +1c0046e4 <__sfp+0x50> sw zero,16(s0) +1c0046e8 <__sfp+0x54> sw zero,20(s0) +1c0046ec <__sfp+0x58> sw zero,24(s0) +1c0046f0 <__sfp+0x5c> li a2,8 +1c0046f2 <__sfp+0x5e> li a1,0 +1c0046f4 <__sfp+0x60> addi a0,s0,92 +1c0046f8 <__sfp+0x64> jal ra,1c000e7a +1c0046fc <__sfp+0x68> sw zero,52(s0) +1c004700 <__sfp+0x6c> sw zero,56(s0) +1c004704 <__sfp+0x70> sw zero,72(s0) +1c004708 <__sfp+0x74> sw zero,76(s0) +1c00470c <__sfp+0x78> lw ra,12(sp) +1c00470e <__sfp+0x7a> mv a0,s0 +1c004710 <__sfp+0x7c> lw s0,8(sp) +1c004712 <__sfp+0x7e> lw s1,4(sp) +1c004714 <__sfp+0x80> lw s2,0(sp) +1c004716 <__sfp+0x82> addi sp,sp,16 +1c004718 <__sfp+0x84> ret +1c00471a <__sfp+0x86> addi s0,s0,104 +1c00471e <__sfp+0x8a> j 1c0046ba <__sfp+0x26> +1c004720 <__sfp+0x8c> li a1,4 +1c004722 <__sfp+0x8e> mv a0,s2 +1c004724 <__sfp+0x90> jal ra,1c0045dc <__sfmoreglue> +1c004728 <__sfp+0x94> sw a0,0(s1) +1c00472a <__sfp+0x96> mv s0,a0 +1c00472c <__sfp+0x98> bnez a0,1c0046c4 <__sfp+0x30> +1c00472e <__sfp+0x9a> li a5,12 +1c004730 <__sfp+0x9c> sw a5,0(s2) +1c004734 <__sfp+0xa0> j 1c00470c <__sfp+0x78> +_fwalk_reent(): +1c004736 <_fwalk_reent> addi sp,sp,-48 +1c004738 <_fwalk_reent+0x2> sw s0,40(sp) +1c00473a <_fwalk_reent+0x4> sw s2,32(sp) +1c00473c <_fwalk_reent+0x6> sw s3,28(sp) +1c00473e <_fwalk_reent+0x8> sw s4,24(sp) +1c004740 <_fwalk_reent+0xa> sw s6,16(sp) +1c004742 <_fwalk_reent+0xc> sw s7,12(sp) +1c004744 <_fwalk_reent+0xe> sw ra,44(sp) +1c004746 <_fwalk_reent+0x10> sw s1,36(sp) +1c004748 <_fwalk_reent+0x12> sw s5,20(sp) +1c00474a <_fwalk_reent+0x14> mv s2,a0 +1c00474c <_fwalk_reent+0x16> mv s4,a1 +1c00474e <_fwalk_reent+0x18> addi s0,a0,72 +1c004752 <_fwalk_reent+0x1c> li s3,0 +1c004754 <_fwalk_reent+0x1e> li s6,1 +1c004756 <_fwalk_reent+0x20> li s7,-1 +1c004758 <_fwalk_reent+0x22> lw s1,8(s0) +1c00475a <_fwalk_reent+0x24> lw s5,4(s0) +1c00475e <_fwalk_reent+0x28> addi s5,s5,-1 +1c004760 <_fwalk_reent+0x2a> bgez s5,1c004780 <_fwalk_reent+0x4a> +1c004764 <_fwalk_reent+0x2e> lw s0,0(s0) +1c004766 <_fwalk_reent+0x30> bnez s0,1c004758 <_fwalk_reent+0x22> +1c004768 <_fwalk_reent+0x32> lw ra,44(sp) +1c00476a <_fwalk_reent+0x34> lw s0,40(sp) +1c00476c <_fwalk_reent+0x36> lw s1,36(sp) +1c00476e <_fwalk_reent+0x38> lw s2,32(sp) +1c004770 <_fwalk_reent+0x3a> lw s4,24(sp) +1c004772 <_fwalk_reent+0x3c> lw s5,20(sp) +1c004774 <_fwalk_reent+0x3e> lw s6,16(sp) +1c004776 <_fwalk_reent+0x40> lw s7,12(sp) +1c004778 <_fwalk_reent+0x42> mv a0,s3 +1c00477a <_fwalk_reent+0x44> lw s3,28(sp) +1c00477c <_fwalk_reent+0x46> addi sp,sp,48 +1c00477e <_fwalk_reent+0x48> ret +1c004780 <_fwalk_reent+0x4a> lhu a5,12(s1) +1c004784 <_fwalk_reent+0x4e> bgeu s6,a5,1c00479a <_fwalk_reent+0x64> +1c004788 <_fwalk_reent+0x52> lh a5,14(s1) +1c00478c <_fwalk_reent+0x56> beq a5,s7,1c00479a <_fwalk_reent+0x64> +1c004790 <_fwalk_reent+0x5a> mv a1,s1 +1c004792 <_fwalk_reent+0x5c> mv a0,s2 +1c004794 <_fwalk_reent+0x5e> jalr s4 +1c004796 <_fwalk_reent+0x60> or s3,s3,a0 +1c00479a <_fwalk_reent+0x64> addi s1,s1,104 +1c00479e <_fwalk_reent+0x68> j 1c00475e <_fwalk_reent+0x28> +__swhatbuf_r(): +1c0047a0 <__swhatbuf_r> addi sp,sp,-112 +1c0047a2 <__swhatbuf_r+0x2> sw s2,96(sp) +1c0047a4 <__swhatbuf_r+0x4> mv s2,a1 +1c0047a6 <__swhatbuf_r+0x6> lh a1,14(a1) +1c0047aa <__swhatbuf_r+0xa> sw s0,104(sp) +1c0047ac <__swhatbuf_r+0xc> sw s1,100(sp) +1c0047ae <__swhatbuf_r+0xe> sw ra,108(sp) +1c0047b0 <__swhatbuf_r+0x10> mv s0,a2 +1c0047b2 <__swhatbuf_r+0x12> mv s1,a3 +1c0047b4 <__swhatbuf_r+0x14> bgez a1,1c0047cc <__swhatbuf_r+0x2c> +1c0047b8 <__swhatbuf_r+0x18> lh a5,12(s2) +1c0047bc <__swhatbuf_r+0x1c> sw zero,0(s1) +1c0047c0 <__swhatbuf_r+0x20> andi a5,a5,128 +1c0047c4 <__swhatbuf_r+0x24> bnez a5,1c0047e6 <__swhatbuf_r+0x46> +1c0047c6 <__swhatbuf_r+0x26> li a5,1024 +1c0047ca <__swhatbuf_r+0x2a> j 1c0047ea <__swhatbuf_r+0x4a> +1c0047cc <__swhatbuf_r+0x2c> addi a2,sp,8 +1c0047ce <__swhatbuf_r+0x2e> jal 1c004d44 <_fstat_r> +1c0047d0 <__swhatbuf_r+0x30> bltz a0,1c0047b8 <__swhatbuf_r+0x18> +1c0047d4 <__swhatbuf_r+0x34> lw a4,12(sp) +1c0047d6 <__swhatbuf_r+0x36> lui a5,0xf +1c0047d8 <__swhatbuf_r+0x38> and a5,a5,a4 +1c0047da <__swhatbuf_r+0x3a> lui a4,0xffffe +1c0047dc <__swhatbuf_r+0x3c> add a5,a5,a4 +1c0047de <__swhatbuf_r+0x3e> seqz a5,a5 +1c0047e2 <__swhatbuf_r+0x42> sw a5,0(s1) +1c0047e4 <__swhatbuf_r+0x44> j 1c0047c6 <__swhatbuf_r+0x26> +1c0047e6 <__swhatbuf_r+0x46> li a5,64 +1c0047ea <__swhatbuf_r+0x4a> lw ra,108(sp) +1c0047ec <__swhatbuf_r+0x4c> sw a5,0(s0) +1c0047ee <__swhatbuf_r+0x4e> lw s0,104(sp) +1c0047f0 <__swhatbuf_r+0x50> lw s1,100(sp) +1c0047f2 <__swhatbuf_r+0x52> lw s2,96(sp) +1c0047f4 <__swhatbuf_r+0x54> li a0,0 +1c0047f6 <__swhatbuf_r+0x56> addi sp,sp,112 +1c0047f8 <__swhatbuf_r+0x58> ret +__smakebuf_r(): +1c0047fa <__smakebuf_r> lhu a5,12(a1) +1c0047fe <__smakebuf_r+0x4> addi sp,sp,-32 +1c004800 <__smakebuf_r+0x6> sw s0,24(sp) +1c004802 <__smakebuf_r+0x8> sw ra,28(sp) +1c004804 <__smakebuf_r+0xa> sw s1,20(sp) +1c004806 <__smakebuf_r+0xc> sw s2,16(sp) +1c004808 <__smakebuf_r+0xe> andi a5,a5,2 +1c00480a <__smakebuf_r+0x10> mv s0,a1 +1c00480c <__smakebuf_r+0x12> beqz a5,1c004826 <__smakebuf_r+0x2c> +1c00480e <__smakebuf_r+0x14> addi a5,s0,71 +1c004812 <__smakebuf_r+0x18> sw a5,0(s0) +1c004814 <__smakebuf_r+0x1a> sw a5,16(s0) +1c004816 <__smakebuf_r+0x1c> li a5,1 +1c004818 <__smakebuf_r+0x1e> sw a5,20(s0) +1c00481a <__smakebuf_r+0x20> lw ra,28(sp) +1c00481c <__smakebuf_r+0x22> lw s0,24(sp) +1c00481e <__smakebuf_r+0x24> lw s1,20(sp) +1c004820 <__smakebuf_r+0x26> lw s2,16(sp) +1c004822 <__smakebuf_r+0x28> addi sp,sp,32 +1c004824 <__smakebuf_r+0x2a> ret +1c004826 <__smakebuf_r+0x2c> addi a3,sp,12 +1c004828 <__smakebuf_r+0x2e> addi a2,sp,8 +1c00482a <__smakebuf_r+0x30> mv s2,a0 +1c00482c <__smakebuf_r+0x32> jal ra,1c0047a0 <__swhatbuf_r> +1c004830 <__smakebuf_r+0x36> lw a1,8(sp) +1c004832 <__smakebuf_r+0x38> mv s1,a0 +1c004834 <__smakebuf_r+0x3a> mv a0,s2 +1c004836 <__smakebuf_r+0x3c> jal ra,1c0039c8 <_malloc_r> +1c00483a <__smakebuf_r+0x40> bnez a0,1c004852 <__smakebuf_r+0x58> +1c00483c <__smakebuf_r+0x42> lh a5,12(s0) +1c004840 <__smakebuf_r+0x46> andi a4,a5,512 +1c004844 <__smakebuf_r+0x4a> bnez a4,1c00481a <__smakebuf_r+0x20> +1c004846 <__smakebuf_r+0x4c> andi a5,a5,-4 +1c004848 <__smakebuf_r+0x4e> ori a5,a5,2 +1c00484c <__smakebuf_r+0x52> sh a5,12(s0) +1c004850 <__smakebuf_r+0x56> j 1c00480e <__smakebuf_r+0x14> +1c004852 <__smakebuf_r+0x58> lui a5,0x1c004 +1c004856 <__smakebuf_r+0x5c> addi a5,a5,1490 # 1c0045d2 <_cleanup_r> +1c00485a <__smakebuf_r+0x60> sw a5,40(s2) +1c00485e <__smakebuf_r+0x64> lhu a5,12(s0) +1c004862 <__smakebuf_r+0x68> sw a0,0(s0) +1c004864 <__smakebuf_r+0x6a> sw a0,16(s0) +1c004866 <__smakebuf_r+0x6c> ori a5,a5,128 +1c00486a <__smakebuf_r+0x70> sh a5,12(s0) +1c00486e <__smakebuf_r+0x74> lw a5,8(sp) +1c004870 <__smakebuf_r+0x76> sw a5,20(s0) +1c004872 <__smakebuf_r+0x78> lw a5,12(sp) +1c004874 <__smakebuf_r+0x7a> beqz a5,1c00488e <__smakebuf_r+0x94> +1c004876 <__smakebuf_r+0x7c> lh a1,14(s0) +1c00487a <__smakebuf_r+0x80> mv a0,s2 +1c00487c <__smakebuf_r+0x82> jal 1c004d72 <_isatty_r> +1c00487e <__smakebuf_r+0x84> beqz a0,1c00488e <__smakebuf_r+0x94> +1c004880 <__smakebuf_r+0x86> lhu a5,12(s0) +1c004884 <__smakebuf_r+0x8a> andi a5,a5,-4 +1c004886 <__smakebuf_r+0x8c> ori a5,a5,1 +1c00488a <__smakebuf_r+0x90> sh a5,12(s0) +1c00488e <__smakebuf_r+0x94> lhu a0,12(s0) +1c004892 <__smakebuf_r+0x98> or s1,s1,a0 +1c004894 <__smakebuf_r+0x9a> sh s1,12(s0) +1c004898 <__smakebuf_r+0x9e> j 1c00481a <__smakebuf_r+0x20> +memchr(): +1c00489a andi a1,a1,255 +1c00489e add a2,a2,a0 +1c0048a0 bne a0,a2,1c0048a8 +1c0048a4 li a0,0 +1c0048a6 ret +1c0048a8 lbu a5,0(a0) +1c0048ac beq a5,a1,1c0048a6 +1c0048b0 addi a0,a0,1 +1c0048b2 j 1c0048a0 +_printf_common(): +1c0048b4 <_printf_common> addi sp,sp,-48 +1c0048b6 <_printf_common+0x2> sw s4,24(sp) +1c0048b8 <_printf_common+0x4> lw a5,16(a1) +1c0048ba <_printf_common+0x6> mv s4,a4 +1c0048bc <_printf_common+0x8> lw a4,8(a1) +1c0048be <_printf_common+0xa> sw s0,40(sp) +1c0048c0 <_printf_common+0xc> sw s1,36(sp) +1c0048c2 <_printf_common+0xe> sw s3,28(sp) +1c0048c4 <_printf_common+0x10> sw s5,20(sp) +1c0048c6 <_printf_common+0x12> sw ra,44(sp) +1c0048c8 <_printf_common+0x14> sw s2,32(sp) +1c0048ca <_printf_common+0x16> sw s6,16(sp) +1c0048cc <_printf_common+0x18> sw s7,12(sp) +1c0048ce <_printf_common+0x1a> mv s3,a0 +1c0048d0 <_printf_common+0x1c> mv s0,a1 +1c0048d2 <_printf_common+0x1e> mv s1,a2 +1c0048d4 <_printf_common+0x20> mv s5,a3 +1c0048d6 <_printf_common+0x22> bge a5,a4,1c0048dc <_printf_common+0x28> +1c0048da <_printf_common+0x26> mv a5,a4 +1c0048dc <_printf_common+0x28> sw a5,0(s1) +1c0048de <_printf_common+0x2a> lbu a4,67(s0) +1c0048e2 <_printf_common+0x2e> beqz a4,1c0048e8 <_printf_common+0x34> +1c0048e4 <_printf_common+0x30> addi a5,a5,1 +1c0048e6 <_printf_common+0x32> sw a5,0(s1) +1c0048e8 <_printf_common+0x34> lw a5,0(s0) +1c0048ea <_printf_common+0x36> andi a5,a5,32 +1c0048ee <_printf_common+0x3a> beqz a5,1c0048f6 <_printf_common+0x42> +1c0048f0 <_printf_common+0x3c> lw a5,0(s1) +1c0048f2 <_printf_common+0x3e> addi a5,a5,2 +1c0048f4 <_printf_common+0x40> sw a5,0(s1) +1c0048f6 <_printf_common+0x42> lw s2,0(s0) +1c0048fa <_printf_common+0x46> andi s2,s2,6 +1c0048fe <_printf_common+0x4a> bnez s2,1c004912 <_printf_common+0x5e> +1c004902 <_printf_common+0x4e> addi s6,s0,25 +1c004906 <_printf_common+0x52> li s7,-1 +1c004908 <_printf_common+0x54> lw a5,12(s0) +1c00490a <_printf_common+0x56> lw a4,0(s1) +1c00490c <_printf_common+0x58> sub a5,a5,a4 +1c00490e <_printf_common+0x5a> blt s2,a5,1c004966 <_printf_common+0xb2> +1c004912 <_printf_common+0x5e> lbu a5,67(s0) +1c004916 <_printf_common+0x62> snez a3,a5 +1c00491a <_printf_common+0x66> lw a5,0(s0) +1c00491c <_printf_common+0x68> andi a5,a5,32 +1c004920 <_printf_common+0x6c> bnez a5,1c004990 <_printf_common+0xdc> +1c004922 <_printf_common+0x6e> addi a2,s0,67 +1c004926 <_printf_common+0x72> mv a1,s5 +1c004928 <_printf_common+0x74> mv a0,s3 +1c00492a <_printf_common+0x76> jalr s4 +1c00492c <_printf_common+0x78> li a5,-1 +1c00492e <_printf_common+0x7a> beq a0,a5,1c004974 <_printf_common+0xc0> +1c004932 <_printf_common+0x7e> lw a5,0(s0) +1c004934 <_printf_common+0x80> li a2,4 +1c004936 <_printf_common+0x82> lw a4,0(s1) +1c004938 <_printf_common+0x84> andi a5,a5,6 +1c00493a <_printf_common+0x86> lw a3,12(s0) +1c00493c <_printf_common+0x88> li s1,0 +1c00493e <_printf_common+0x8a> bne a5,a2,1c00494c <_printf_common+0x98> +1c004942 <_printf_common+0x8e> sub s1,a3,a4 +1c004946 <_printf_common+0x92> bgez s1,1c00494c <_printf_common+0x98> +1c00494a <_printf_common+0x96> li s1,0 +1c00494c <_printf_common+0x98> lw a5,8(s0) +1c00494e <_printf_common+0x9a> lw a4,16(s0) +1c004950 <_printf_common+0x9c> bge a4,a5,1c004958 <_printf_common+0xa4> +1c004954 <_printf_common+0xa0> sub a5,a5,a4 +1c004956 <_printf_common+0xa2> add s1,s1,a5 +1c004958 <_printf_common+0xa4> li s2,0 +1c00495a <_printf_common+0xa6> addi s0,s0,26 +1c00495c <_printf_common+0xa8> li s6,-1 +1c00495e <_printf_common+0xaa> bne s1,s2,1c0049ae <_printf_common+0xfa> +1c004962 <_printf_common+0xae> li a0,0 +1c004964 <_printf_common+0xb0> j 1c004976 <_printf_common+0xc2> +1c004966 <_printf_common+0xb2> li a3,1 +1c004968 <_printf_common+0xb4> mv a2,s6 +1c00496a <_printf_common+0xb6> mv a1,s5 +1c00496c <_printf_common+0xb8> mv a0,s3 +1c00496e <_printf_common+0xba> jalr s4 +1c004970 <_printf_common+0xbc> bne a0,s7,1c00498c <_printf_common+0xd8> +1c004974 <_printf_common+0xc0> li a0,-1 +1c004976 <_printf_common+0xc2> lw ra,44(sp) +1c004978 <_printf_common+0xc4> lw s0,40(sp) +1c00497a <_printf_common+0xc6> lw s1,36(sp) +1c00497c <_printf_common+0xc8> lw s2,32(sp) +1c00497e <_printf_common+0xca> lw s3,28(sp) +1c004980 <_printf_common+0xcc> lw s4,24(sp) +1c004982 <_printf_common+0xce> lw s5,20(sp) +1c004984 <_printf_common+0xd0> lw s6,16(sp) +1c004986 <_printf_common+0xd2> lw s7,12(sp) +1c004988 <_printf_common+0xd4> addi sp,sp,48 +1c00498a <_printf_common+0xd6> ret +1c00498c <_printf_common+0xd8> addi s2,s2,1 +1c00498e <_printf_common+0xda> j 1c004908 <_printf_common+0x54> +1c004990 <_printf_common+0xdc> add a4,s0,a3 +1c004994 <_printf_common+0xe0> li a2,48 +1c004998 <_printf_common+0xe4> sb a2,67(a4) # ffffe043 <__heap_l2_shared_start+0xe3fe4673> +1c00499c <_printf_common+0xe8> lbu a4,69(s0) +1c0049a0 <_printf_common+0xec> addi a5,a3,1 # 00001001 <__stack_size+0x801> +1c0049a4 <_printf_common+0xf0> add a5,a5,s0 +1c0049a6 <_printf_common+0xf2> addi a3,a3,2 +1c0049a8 <_printf_common+0xf4> sb a4,67(a5) +1c0049ac <_printf_common+0xf8> j 1c004922 <_printf_common+0x6e> +1c0049ae <_printf_common+0xfa> li a3,1 +1c0049b0 <_printf_common+0xfc> mv a2,s0 +1c0049b2 <_printf_common+0xfe> mv a1,s5 +1c0049b4 <_printf_common+0x100> mv a0,s3 +1c0049b6 <_printf_common+0x102> jalr s4 +1c0049b8 <_printf_common+0x104> beq a0,s6,1c004974 <_printf_common+0xc0> +1c0049bc <_printf_common+0x108> addi s2,s2,1 +1c0049be <_printf_common+0x10a> j 1c00495e <_printf_common+0xaa> +_printf_i(): +1c0049c0 <_printf_i> addi sp,sp,-48 +1c0049c2 <_printf_i+0x2> sw s0,40(sp) +1c0049c4 <_printf_i+0x4> sw s1,36(sp) +1c0049c6 <_printf_i+0x6> sw s2,32(sp) +1c0049c8 <_printf_i+0x8> sw s3,28(sp) +1c0049ca <_printf_i+0xa> sw ra,44(sp) +1c0049cc <_printf_i+0xc> sw s4,24(sp) +1c0049ce <_printf_i+0xe> sw s5,20(sp) +1c0049d0 <_printf_i+0x10> sw s6,16(sp) +1c0049d2 <_printf_i+0x12> lbu a7,24(a1) +1c0049d6 <_printf_i+0x16> li a5,120 +1c0049da <_printf_i+0x1a> mv s1,a0 +1c0049dc <_printf_i+0x1c> mv s0,a1 +1c0049de <_printf_i+0x1e> mv s2,a2 +1c0049e0 <_printf_i+0x20> mv s3,a3 +1c0049e2 <_printf_i+0x22> bltu a5,a7,1c0049fe <_printf_i+0x3e> +1c0049e6 <_printf_i+0x26> li a5,98 +1c0049ea <_printf_i+0x2a> addi a3,a1,67 +1c0049ee <_printf_i+0x2e> bltu a5,a7,1c004a08 <_printf_i+0x48> +1c0049f2 <_printf_i+0x32> beqz a7,1c004bb8 <_printf_i+0x1f8> +1c0049f6 <_printf_i+0x36> li a5,88 +1c0049fa <_printf_i+0x3a> beq a7,a5,1c004b2e <_printf_i+0x16e> +1c0049fe <_printf_i+0x3e> addi s5,s0,66 +1c004a02 <_printf_i+0x42> sb a7,66(s0) +1c004a06 <_printf_i+0x46> j 1c004a38 <_printf_i+0x78> +1c004a08 <_printf_i+0x48> addi a5,a7,-99 +1c004a0c <_printf_i+0x4c> andi a5,a5,255 +1c004a10 <_printf_i+0x50> li a2,21 +1c004a12 <_printf_i+0x52> bltu a2,a5,1c0049fe <_printf_i+0x3e> +1c004a16 <_printf_i+0x56> lui a2,0x1c009 +1c004a1a <_printf_i+0x5a> slli a5,a5,0x2 +1c004a1c <_printf_i+0x5c> addi a2,a2,-1412 # 1c008a7c <__sf_fake_stdout+0x48> +1c004a20 <_printf_i+0x60> add a5,a5,a2 +1c004a22 <_printf_i+0x62> lw a5,0(a5) +1c004a24 <_printf_i+0x64> jr a5 +1c004a26 <_printf_i+0x66> lw a5,0(a4) +1c004a28 <_printf_i+0x68> addi s5,a1,66 +1c004a2c <_printf_i+0x6c> addi a3,a5,4 +1c004a30 <_printf_i+0x70> lw a5,0(a5) +1c004a32 <_printf_i+0x72> sw a3,0(a4) +1c004a34 <_printf_i+0x74> sb a5,66(a1) +1c004a38 <_printf_i+0x78> li a5,1 +1c004a3a <_printf_i+0x7a> j 1c004be0 <_printf_i+0x220> +1c004a3c <_printf_i+0x7c> lw a5,0(a1) +1c004a3e <_printf_i+0x7e> lw a0,0(a4) +1c004a40 <_printf_i+0x80> andi a2,a5,128 +1c004a44 <_printf_i+0x84> addi a1,a0,4 +1c004a48 <_printf_i+0x88> beqz a2,1c004a6a <_printf_i+0xaa> +1c004a4a <_printf_i+0x8a> lw a5,0(a0) +1c004a4c <_printf_i+0x8c> sw a1,0(a4) +1c004a4e <_printf_i+0x8e> lui a6,0x1c009 +1c004a52 <_printf_i+0x92> bgez a5,1c004a62 <_printf_i+0xa2> +1c004a56 <_printf_i+0x96> li a4,45 +1c004a5a <_printf_i+0x9a> neg a5,a5 +1c004a5e <_printf_i+0x9e> sb a4,67(s0) +1c004a62 <_printf_i+0xa2> addi a6,a6,-1452 # 1c008a54 <__sf_fake_stdout+0x20> +1c004a66 <_printf_i+0xa6> li a4,10 +1c004a68 <_printf_i+0xa8> j 1c004ab0 <_printf_i+0xf0> +1c004a6a <_printf_i+0xaa> andi a2,a5,64 +1c004a6e <_printf_i+0xae> lw a5,0(a0) +1c004a70 <_printf_i+0xb0> sw a1,0(a4) +1c004a72 <_printf_i+0xb2> beqz a2,1c004a4e <_printf_i+0x8e> +1c004a74 <_printf_i+0xb4> slli a5,a5,0x10 +1c004a76 <_printf_i+0xb6> srai a5,a5,0x10 +1c004a78 <_printf_i+0xb8> j 1c004a4e <_printf_i+0x8e> +1c004a7a <_printf_i+0xba> lw a2,0(a1) +1c004a7c <_printf_i+0xbc> lw a5,0(a4) +1c004a7e <_printf_i+0xbe> andi a0,a2,128 +1c004a82 <_printf_i+0xc2> addi a1,a5,4 +1c004a86 <_printf_i+0xc6> beqz a0,1c004a8e <_printf_i+0xce> +1c004a88 <_printf_i+0xc8> sw a1,0(a4) +1c004a8a <_printf_i+0xca> lw a5,0(a5) +1c004a8c <_printf_i+0xcc> j 1c004a9a <_printf_i+0xda> +1c004a8e <_printf_i+0xce> andi a2,a2,64 +1c004a92 <_printf_i+0xd2> sw a1,0(a4) +1c004a94 <_printf_i+0xd4> beqz a2,1c004a8a <_printf_i+0xca> +1c004a96 <_printf_i+0xd6> lhu a5,0(a5) +1c004a9a <_printf_i+0xda> lui a6,0x1c009 +1c004a9e <_printf_i+0xde> li a4,111 +1c004aa2 <_printf_i+0xe2> addi a6,a6,-1452 # 1c008a54 <__sf_fake_stdout+0x20> +1c004aa6 <_printf_i+0xe6> beq a7,a4,1c004b8c <_printf_i+0x1cc> +1c004aaa <_printf_i+0xea> li a4,10 +1c004aac <_printf_i+0xec> sb zero,67(s0) +1c004ab0 <_printf_i+0xf0> lw a2,4(s0) +1c004ab2 <_printf_i+0xf2> sw a2,8(s0) +1c004ab4 <_printf_i+0xf4> bltz a2,1c004abe <_printf_i+0xfe> +1c004ab8 <_printf_i+0xf8> lw a1,0(s0) +1c004aba <_printf_i+0xfa> andi a1,a1,-5 +1c004abc <_printf_i+0xfc> sw a1,0(s0) +1c004abe <_printf_i+0xfe> bnez a5,1c004ac4 <_printf_i+0x104> +1c004ac0 <_printf_i+0x100> mv s5,a3 +1c004ac2 <_printf_i+0x102> beqz a2,1c004ae0 <_printf_i+0x120> +1c004ac4 <_printf_i+0x104> mv s5,a3 +1c004ac6 <_printf_i+0x106> remu a2,a5,a4 +1c004aca <_printf_i+0x10a> addi s5,s5,-1 +1c004acc <_printf_i+0x10c> add a2,a2,a6 +1c004ace <_printf_i+0x10e> lbu a2,0(a2) +1c004ad2 <_printf_i+0x112> sb a2,0(s5) +1c004ad6 <_printf_i+0x116> mv a2,a5 +1c004ad8 <_printf_i+0x118> divu a5,a5,a4 +1c004adc <_printf_i+0x11c> bgeu a2,a4,1c004ac6 <_printf_i+0x106> +1c004ae0 <_printf_i+0x120> li a5,8 +1c004ae2 <_printf_i+0x122> bne a4,a5,1c004afe <_printf_i+0x13e> +1c004ae6 <_printf_i+0x126> lw a5,0(s0) +1c004ae8 <_printf_i+0x128> andi a5,a5,1 +1c004aea <_printf_i+0x12a> beqz a5,1c004afe <_printf_i+0x13e> +1c004aec <_printf_i+0x12c> lw a4,4(s0) +1c004aee <_printf_i+0x12e> lw a5,16(s0) +1c004af0 <_printf_i+0x130> blt a5,a4,1c004afe <_printf_i+0x13e> +1c004af4 <_printf_i+0x134> li a5,48 +1c004af8 <_printf_i+0x138> sb a5,-1(s5) +1c004afc <_printf_i+0x13c> addi s5,s5,-1 +1c004afe <_printf_i+0x13e> sub a3,a3,s5 +1c004b02 <_printf_i+0x142> sw a3,16(s0) +1c004b04 <_printf_i+0x144> mv a4,s3 +1c004b06 <_printf_i+0x146> mv a3,s2 +1c004b08 <_printf_i+0x148> addi a2,sp,12 +1c004b0a <_printf_i+0x14a> mv a1,s0 +1c004b0c <_printf_i+0x14c> mv a0,s1 +1c004b0e <_printf_i+0x14e> jal ra,1c0048b4 <_printf_common> +1c004b12 <_printf_i+0x152> li s4,-1 +1c004b14 <_printf_i+0x154> bne a0,s4,1c004be8 <_printf_i+0x228> +1c004b18 <_printf_i+0x158> li a0,-1 +1c004b1a <_printf_i+0x15a> lw ra,44(sp) +1c004b1c <_printf_i+0x15c> lw s0,40(sp) +1c004b1e <_printf_i+0x15e> lw s1,36(sp) +1c004b20 <_printf_i+0x160> lw s2,32(sp) +1c004b22 <_printf_i+0x162> lw s3,28(sp) +1c004b24 <_printf_i+0x164> lw s4,24(sp) +1c004b26 <_printf_i+0x166> lw s5,20(sp) +1c004b28 <_printf_i+0x168> lw s6,16(sp) +1c004b2a <_printf_i+0x16a> addi sp,sp,48 +1c004b2c <_printf_i+0x16c> ret +1c004b2e <_printf_i+0x16e> lui a6,0x1c009 +1c004b32 <_printf_i+0x172> sb a7,69(a1) +1c004b36 <_printf_i+0x176> addi a6,a6,-1452 # 1c008a54 <__sf_fake_stdout+0x20> +1c004b3a <_printf_i+0x17a> lw a2,0(s0) +1c004b3c <_printf_i+0x17c> lw a1,0(a4) +1c004b3e <_printf_i+0x17e> andi a0,a2,128 +1c004b42 <_printf_i+0x182> lw a5,0(a1) +1c004b44 <_printf_i+0x184> addi a1,a1,4 +1c004b46 <_printf_i+0x186> beqz a0,1c004b7e <_printf_i+0x1be> +1c004b48 <_printf_i+0x188> sw a1,0(a4) +1c004b4a <_printf_i+0x18a> andi a4,a2,1 +1c004b4e <_printf_i+0x18e> beqz a4,1c004b56 <_printf_i+0x196> +1c004b50 <_printf_i+0x190> ori a2,a2,32 +1c004b54 <_printf_i+0x194> sw a2,0(s0) +1c004b56 <_printf_i+0x196> li a4,16 +1c004b58 <_printf_i+0x198> bnez a5,1c004aac <_printf_i+0xec> +1c004b5a <_printf_i+0x19a> lw a2,0(s0) +1c004b5c <_printf_i+0x19c> andi a2,a2,-33 +1c004b60 <_printf_i+0x1a0> sw a2,0(s0) +1c004b62 <_printf_i+0x1a2> j 1c004aac <_printf_i+0xec> +1c004b64 <_printf_i+0x1a4> lw a5,0(a1) +1c004b66 <_printf_i+0x1a6> ori a5,a5,32 +1c004b6a <_printf_i+0x1aa> sw a5,0(a1) +1c004b6c <_printf_i+0x1ac> li a5,120 +1c004b70 <_printf_i+0x1b0> lui a6,0x1c009 +1c004b74 <_printf_i+0x1b4> sb a5,69(s0) +1c004b78 <_printf_i+0x1b8> addi a6,a6,-1432 # 1c008a68 <__sf_fake_stdout+0x34> +1c004b7c <_printf_i+0x1bc> j 1c004b3a <_printf_i+0x17a> +1c004b7e <_printf_i+0x1be> andi a0,a2,64 +1c004b82 <_printf_i+0x1c2> sw a1,0(a4) +1c004b84 <_printf_i+0x1c4> beqz a0,1c004b4a <_printf_i+0x18a> +1c004b86 <_printf_i+0x1c6> slli a5,a5,0x10 +1c004b88 <_printf_i+0x1c8> srli a5,a5,0x10 +1c004b8a <_printf_i+0x1ca> j 1c004b4a <_printf_i+0x18a> +1c004b8c <_printf_i+0x1cc> li a4,8 +1c004b8e <_printf_i+0x1ce> j 1c004aac <_printf_i+0xec> +1c004b90 <_printf_i+0x1d0> lw a2,0(a1) +1c004b92 <_printf_i+0x1d2> lw a5,0(a4) +1c004b94 <_printf_i+0x1d4> lw a1,20(a1) +1c004b96 <_printf_i+0x1d6> andi a6,a2,128 +1c004b9a <_printf_i+0x1da> addi a0,a5,4 +1c004b9e <_printf_i+0x1de> beqz a6,1c004baa <_printf_i+0x1ea> +1c004ba2 <_printf_i+0x1e2> sw a0,0(a4) +1c004ba4 <_printf_i+0x1e4> lw a5,0(a5) +1c004ba6 <_printf_i+0x1e6> sw a1,0(a5) +1c004ba8 <_printf_i+0x1e8> j 1c004bb8 <_printf_i+0x1f8> +1c004baa <_printf_i+0x1ea> sw a0,0(a4) +1c004bac <_printf_i+0x1ec> andi a2,a2,64 +1c004bb0 <_printf_i+0x1f0> lw a5,0(a5) +1c004bb2 <_printf_i+0x1f2> beqz a2,1c004ba6 <_printf_i+0x1e6> +1c004bb4 <_printf_i+0x1f4> sh a1,0(a5) +1c004bb8 <_printf_i+0x1f8> sw zero,16(s0) +1c004bbc <_printf_i+0x1fc> mv s5,a3 +1c004bbe <_printf_i+0x1fe> j 1c004b04 <_printf_i+0x144> +1c004bc0 <_printf_i+0x200> lw a5,0(a4) +1c004bc2 <_printf_i+0x202> lw a2,4(a1) +1c004bc4 <_printf_i+0x204> li a1,0 +1c004bc6 <_printf_i+0x206> addi a3,a5,4 +1c004bca <_printf_i+0x20a> sw a3,0(a4) +1c004bcc <_printf_i+0x20c> lw s5,0(a5) +1c004bd0 <_printf_i+0x210> mv a0,s5 +1c004bd2 <_printf_i+0x212> jal ra,1c00489a +1c004bd6 <_printf_i+0x216> beqz a0,1c004bde <_printf_i+0x21e> +1c004bd8 <_printf_i+0x218> sub a0,a0,s5 +1c004bdc <_printf_i+0x21c> sw a0,4(s0) +1c004bde <_printf_i+0x21e> lw a5,4(s0) +1c004be0 <_printf_i+0x220> sw a5,16(s0) +1c004be2 <_printf_i+0x222> sb zero,67(s0) +1c004be6 <_printf_i+0x226> j 1c004b04 <_printf_i+0x144> +1c004be8 <_printf_i+0x228> lw a3,16(s0) +1c004bea <_printf_i+0x22a> mv a2,s5 +1c004bec <_printf_i+0x22c> mv a1,s2 +1c004bee <_printf_i+0x22e> mv a0,s1 +1c004bf0 <_printf_i+0x230> jalr s3 +1c004bf2 <_printf_i+0x232> beq a0,s4,1c004b18 <_printf_i+0x158> +1c004bf6 <_printf_i+0x236> lw a5,0(s0) +1c004bf8 <_printf_i+0x238> andi a5,a5,2 +1c004bfa <_printf_i+0x23a> bnez a5,1c004c24 <_printf_i+0x264> +1c004bfc <_printf_i+0x23c> lw a5,12(sp) +1c004bfe <_printf_i+0x23e> lw a0,12(s0) +1c004c00 <_printf_i+0x240> bge a0,a5,1c004b1a <_printf_i+0x15a> +1c004c04 <_printf_i+0x244> mv a0,a5 +1c004c06 <_printf_i+0x246> j 1c004b1a <_printf_i+0x15a> +1c004c08 <_printf_i+0x248> li a3,1 +1c004c0a <_printf_i+0x24a> mv a2,s5 +1c004c0c <_printf_i+0x24c> mv a1,s2 +1c004c0e <_printf_i+0x24e> mv a0,s1 +1c004c10 <_printf_i+0x250> jalr s3 +1c004c12 <_printf_i+0x252> beq a0,s6,1c004b18 <_printf_i+0x158> +1c004c16 <_printf_i+0x256> addi s4,s4,1 +1c004c18 <_printf_i+0x258> lw a5,12(s0) +1c004c1a <_printf_i+0x25a> lw a4,12(sp) +1c004c1c <_printf_i+0x25c> sub a5,a5,a4 +1c004c1e <_printf_i+0x25e> blt s4,a5,1c004c08 <_printf_i+0x248> +1c004c22 <_printf_i+0x262> j 1c004bfc <_printf_i+0x23c> +1c004c24 <_printf_i+0x264> li s4,0 +1c004c26 <_printf_i+0x266> addi s5,s0,25 +1c004c2a <_printf_i+0x26a> li s6,-1 +1c004c2c <_printf_i+0x26c> j 1c004c18 <_printf_i+0x258> +__sread(): +1c004c2e <__sread> addi sp,sp,-16 +1c004c30 <__sread+0x2> sw s0,8(sp) +1c004c32 <__sread+0x4> mv s0,a1 +1c004c34 <__sread+0x6> lh a1,14(a1) +1c004c38 <__sread+0xa> sw ra,12(sp) +1c004c3a <__sread+0xc> jal 1c004dce <_read_r> +1c004c3c <__sread+0xe> bltz a0,1c004c4e <__sread+0x20> +1c004c40 <__sread+0x12> lw a5,84(s0) +1c004c42 <__sread+0x14> add a5,a5,a0 +1c004c44 <__sread+0x16> sw a5,84(s0) +1c004c46 <__sread+0x18> lw ra,12(sp) +1c004c48 <__sread+0x1a> lw s0,8(sp) +1c004c4a <__sread+0x1c> addi sp,sp,16 +1c004c4c <__sread+0x1e> ret +1c004c4e <__sread+0x20> lhu a5,12(s0) +1c004c52 <__sread+0x24> lui a4,0xfffff +1c004c54 <__sread+0x26> addi a4,a4,-1 +1c004c56 <__sread+0x28> and a5,a5,a4 +1c004c58 <__sread+0x2a> sh a5,12(s0) +1c004c5c <__sread+0x2e> j 1c004c46 <__sread+0x18> +__swrite(): +1c004c5e <__swrite> lhu a5,12(a1) +1c004c62 <__swrite+0x4> addi sp,sp,-32 +1c004c64 <__swrite+0x6> sw s0,24(sp) +1c004c66 <__swrite+0x8> sw s1,20(sp) +1c004c68 <__swrite+0xa> sw s2,16(sp) +1c004c6a <__swrite+0xc> sw s3,12(sp) +1c004c6c <__swrite+0xe> sw ra,28(sp) +1c004c6e <__swrite+0x10> andi a5,a5,256 +1c004c72 <__swrite+0x14> mv s1,a0 +1c004c74 <__swrite+0x16> mv s0,a1 +1c004c76 <__swrite+0x18> mv s2,a2 +1c004c78 <__swrite+0x1a> mv s3,a3 +1c004c7a <__swrite+0x1c> beqz a5,1c004c86 <__swrite+0x28> +1c004c7c <__swrite+0x1e> lh a1,14(a1) +1c004c80 <__swrite+0x22> li a3,2 +1c004c82 <__swrite+0x24> li a2,0 +1c004c84 <__swrite+0x26> jal 1c004d9e <_lseek_r> +1c004c86 <__swrite+0x28> lhu a5,12(s0) +1c004c8a <__swrite+0x2c> lui a4,0xfffff +1c004c8c <__swrite+0x2e> addi a4,a4,-1 +1c004c8e <__swrite+0x30> and a5,a5,a4 +1c004c90 <__swrite+0x32> lh a1,14(s0) +1c004c94 <__swrite+0x36> sh a5,12(s0) +1c004c98 <__swrite+0x3a> lw s0,24(sp) +1c004c9a <__swrite+0x3c> lw ra,28(sp) +1c004c9c <__swrite+0x3e> mv a3,s3 +1c004c9e <__swrite+0x40> mv a2,s2 +1c004ca0 <__swrite+0x42> lw s3,12(sp) +1c004ca2 <__swrite+0x44> lw s2,16(sp) +1c004ca4 <__swrite+0x46> mv a0,s1 +1c004ca6 <__swrite+0x48> lw s1,20(sp) +1c004ca8 <__swrite+0x4a> addi sp,sp,32 +1c004caa <__swrite+0x4c> j 1c004ce8 <_write_r> +__sseek(): +1c004cac <__sseek> addi sp,sp,-16 +1c004cae <__sseek+0x2> sw s0,8(sp) +1c004cb0 <__sseek+0x4> mv s0,a1 +1c004cb2 <__sseek+0x6> lh a1,14(a1) +1c004cb6 <__sseek+0xa> sw ra,12(sp) +1c004cb8 <__sseek+0xc> jal 1c004d9e <_lseek_r> +1c004cba <__sseek+0xe> li a5,-1 +1c004cbc <__sseek+0x10> lhu a4,12(s0) +1c004cc0 <__sseek+0x14> bne a0,a5,1c004cd6 <__sseek+0x2a> +1c004cc4 <__sseek+0x18> lui a5,0xfffff +1c004cc6 <__sseek+0x1a> addi a5,a5,-1 +1c004cc8 <__sseek+0x1c> and a5,a5,a4 +1c004cca <__sseek+0x1e> sh a5,12(s0) +1c004cce <__sseek+0x22> lw ra,12(sp) +1c004cd0 <__sseek+0x24> lw s0,8(sp) +1c004cd2 <__sseek+0x26> addi sp,sp,16 +1c004cd4 <__sseek+0x28> ret +1c004cd6 <__sseek+0x2a> lui a5,0x1 +1c004cd8 <__sseek+0x2c> or a5,a5,a4 +1c004cda <__sseek+0x2e> sh a5,12(s0) +1c004cde <__sseek+0x32> sw a0,84(s0) +1c004ce0 <__sseek+0x34> j 1c004cce <__sseek+0x22> +__sclose(): +1c004ce2 <__sclose> lh a1,14(a1) +1c004ce6 <__sclose+0x4> j 1c004d18 <_close_r> +_write_r(): +1c004ce8 <_write_r> addi sp,sp,-16 +1c004cea <_write_r+0x2> sw s0,8(sp) +1c004cec <_write_r+0x4> sw s1,4(sp) +1c004cee <_write_r+0x6> mv s0,a0 +1c004cf0 <_write_r+0x8> mv a0,a1 +1c004cf2 <_write_r+0xa> mv a1,a2 +1c004cf4 <_write_r+0xc> mv a2,a3 +1c004cf6 <_write_r+0xe> sw ra,12(sp) +1c004cf8 <_write_r+0x10> sw zero,-576(gp) # 1c00919c +1c004cfc <_write_r+0x14> jal ra,1c0029f2 <_write> +1c004d00 <_write_r+0x18> li a5,-1 +1c004d02 <_write_r+0x1a> bne a0,a5,1c004d0e <_write_r+0x26> +1c004d06 <_write_r+0x1e> lw a5,-576(gp) # 1c00919c +1c004d0a <_write_r+0x22> beqz a5,1c004d0e <_write_r+0x26> +1c004d0c <_write_r+0x24> sw a5,0(s0) +1c004d0e <_write_r+0x26> lw ra,12(sp) +1c004d10 <_write_r+0x28> lw s0,8(sp) +1c004d12 <_write_r+0x2a> lw s1,4(sp) +1c004d14 <_write_r+0x2c> addi sp,sp,16 +1c004d16 <_write_r+0x2e> ret +_close_r(): +1c004d18 <_close_r> addi sp,sp,-16 +1c004d1a <_close_r+0x2> sw s0,8(sp) +1c004d1c <_close_r+0x4> sw s1,4(sp) +1c004d1e <_close_r+0x6> mv s0,a0 +1c004d20 <_close_r+0x8> mv a0,a1 +1c004d22 <_close_r+0xa> sw ra,12(sp) +1c004d24 <_close_r+0xc> sw zero,-576(gp) # 1c00919c +1c004d28 <_close_r+0x10> jal ra,1c0029b2 <_close> +1c004d2c <_close_r+0x14> li a5,-1 +1c004d2e <_close_r+0x16> bne a0,a5,1c004d3a <_close_r+0x22> +1c004d32 <_close_r+0x1a> lw a5,-576(gp) # 1c00919c +1c004d36 <_close_r+0x1e> beqz a5,1c004d3a <_close_r+0x22> +1c004d38 <_close_r+0x20> sw a5,0(s0) +1c004d3a <_close_r+0x22> lw ra,12(sp) +1c004d3c <_close_r+0x24> lw s0,8(sp) +1c004d3e <_close_r+0x26> lw s1,4(sp) +1c004d40 <_close_r+0x28> addi sp,sp,16 +1c004d42 <_close_r+0x2a> ret +_fstat_r(): +1c004d44 <_fstat_r> addi sp,sp,-16 +1c004d46 <_fstat_r+0x2> sw s0,8(sp) +1c004d48 <_fstat_r+0x4> sw s1,4(sp) +1c004d4a <_fstat_r+0x6> mv s0,a0 +1c004d4c <_fstat_r+0x8> mv a0,a1 +1c004d4e <_fstat_r+0xa> mv a1,a2 +1c004d50 <_fstat_r+0xc> sw ra,12(sp) +1c004d52 <_fstat_r+0xe> sw zero,-576(gp) # 1c00919c +1c004d56 <_fstat_r+0x12> jal ra,1c0029cc <_fstat> +1c004d5a <_fstat_r+0x16> li a5,-1 +1c004d5c <_fstat_r+0x18> bne a0,a5,1c004d68 <_fstat_r+0x24> +1c004d60 <_fstat_r+0x1c> lw a5,-576(gp) # 1c00919c +1c004d64 <_fstat_r+0x20> beqz a5,1c004d68 <_fstat_r+0x24> +1c004d66 <_fstat_r+0x22> sw a5,0(s0) +1c004d68 <_fstat_r+0x24> lw ra,12(sp) +1c004d6a <_fstat_r+0x26> lw s0,8(sp) +1c004d6c <_fstat_r+0x28> lw s1,4(sp) +1c004d6e <_fstat_r+0x2a> addi sp,sp,16 +1c004d70 <_fstat_r+0x2c> ret +_isatty_r(): +1c004d72 <_isatty_r> addi sp,sp,-16 +1c004d74 <_isatty_r+0x2> sw s0,8(sp) +1c004d76 <_isatty_r+0x4> sw s1,4(sp) +1c004d78 <_isatty_r+0x6> mv s0,a0 +1c004d7a <_isatty_r+0x8> mv a0,a1 +1c004d7c <_isatty_r+0xa> sw ra,12(sp) +1c004d7e <_isatty_r+0xc> sw zero,-576(gp) # 1c00919c +1c004d82 <_isatty_r+0x10> jal ra,1c0029d8 <_isatty> +1c004d86 <_isatty_r+0x14> li a5,-1 +1c004d88 <_isatty_r+0x16> bne a0,a5,1c004d94 <_isatty_r+0x22> +1c004d8c <_isatty_r+0x1a> lw a5,-576(gp) # 1c00919c +1c004d90 <_isatty_r+0x1e> beqz a5,1c004d94 <_isatty_r+0x22> +1c004d92 <_isatty_r+0x20> sw a5,0(s0) +1c004d94 <_isatty_r+0x22> lw ra,12(sp) +1c004d96 <_isatty_r+0x24> lw s0,8(sp) +1c004d98 <_isatty_r+0x26> lw s1,4(sp) +1c004d9a <_isatty_r+0x28> addi sp,sp,16 +1c004d9c <_isatty_r+0x2a> ret +_lseek_r(): +1c004d9e <_lseek_r> addi sp,sp,-16 +1c004da0 <_lseek_r+0x2> sw s0,8(sp) +1c004da2 <_lseek_r+0x4> sw s1,4(sp) +1c004da4 <_lseek_r+0x6> mv s0,a0 +1c004da6 <_lseek_r+0x8> mv a0,a1 +1c004da8 <_lseek_r+0xa> mv a1,a2 +1c004daa <_lseek_r+0xc> mv a2,a3 +1c004dac <_lseek_r+0xe> sw ra,12(sp) +1c004dae <_lseek_r+0x10> sw zero,-576(gp) # 1c00919c +1c004db2 <_lseek_r+0x14> jal ra,1c0029ea <_lseek> +1c004db6 <_lseek_r+0x18> li a5,-1 +1c004db8 <_lseek_r+0x1a> bne a0,a5,1c004dc4 <_lseek_r+0x26> +1c004dbc <_lseek_r+0x1e> lw a5,-576(gp) # 1c00919c +1c004dc0 <_lseek_r+0x22> beqz a5,1c004dc4 <_lseek_r+0x26> +1c004dc2 <_lseek_r+0x24> sw a5,0(s0) +1c004dc4 <_lseek_r+0x26> lw ra,12(sp) +1c004dc6 <_lseek_r+0x28> lw s0,8(sp) +1c004dc8 <_lseek_r+0x2a> lw s1,4(sp) +1c004dca <_lseek_r+0x2c> addi sp,sp,16 +1c004dcc <_lseek_r+0x2e> ret +_read_r(): +1c004dce <_read_r> addi sp,sp,-16 +1c004dd0 <_read_r+0x2> sw s0,8(sp) +1c004dd2 <_read_r+0x4> sw s1,4(sp) +1c004dd4 <_read_r+0x6> mv s0,a0 +1c004dd6 <_read_r+0x8> mv a0,a1 +1c004dd8 <_read_r+0xa> mv a1,a2 +1c004dda <_read_r+0xc> mv a2,a3 +1c004ddc <_read_r+0xe> sw ra,12(sp) +1c004dde <_read_r+0x10> sw zero,-576(gp) # 1c00919c +1c004de2 <_read_r+0x14> jal ra,1c0029ee <_read> +1c004de6 <_read_r+0x18> li a5,-1 +1c004de8 <_read_r+0x1a> bne a0,a5,1c004df4 <_read_r+0x26> +1c004dec <_read_r+0x1e> lw a5,-576(gp) # 1c00919c +1c004df0 <_read_r+0x22> beqz a5,1c004df4 <_read_r+0x26> +1c004df2 <_read_r+0x24> sw a5,0(s0) +1c004df4 <_read_r+0x26> lw ra,12(sp) +1c004df6 <_read_r+0x28> lw s0,8(sp) +1c004df8 <_read_r+0x2a> lw s1,4(sp) +1c004dfa <_read_r+0x2c> addi sp,sp,16 +1c004dfc <_read_r+0x2e> ret + ... diff --git a/tests/spim_flash_async/sim/trace_core_00_0.log b/tests/spim_flash_async/sim/trace_core_00_0.log new file mode 100644 index 00000000..a60a9a8e --- /dev/null +++ b/tests/spim_flash_async/sim/trace_core_00_0.log @@ -0,0 +1 @@ + Time Cycles PC Instr Mnemonic diff --git a/tests/spim_flash_async/sim/trace_core_00_1.log b/tests/spim_flash_async/sim/trace_core_00_1.log new file mode 100644 index 00000000..a60a9a8e --- /dev/null +++ b/tests/spim_flash_async/sim/trace_core_00_1.log @@ -0,0 +1 @@ + Time Cycles PC Instr Mnemonic diff --git a/tests/spim_flash_async/sim/trace_core_00_2.log b/tests/spim_flash_async/sim/trace_core_00_2.log new file mode 100644 index 00000000..a60a9a8e --- /dev/null +++ b/tests/spim_flash_async/sim/trace_core_00_2.log @@ -0,0 +1 @@ + Time Cycles PC Instr Mnemonic diff --git a/tests/spim_flash_async/sim/trace_core_00_3.log b/tests/spim_flash_async/sim/trace_core_00_3.log new file mode 100644 index 00000000..a60a9a8e --- /dev/null +++ b/tests/spim_flash_async/sim/trace_core_00_3.log @@ -0,0 +1 @@ + Time Cycles PC Instr Mnemonic diff --git a/tests/spim_flash_async/sim/trace_core_00_4.log b/tests/spim_flash_async/sim/trace_core_00_4.log new file mode 100644 index 00000000..a60a9a8e --- /dev/null +++ b/tests/spim_flash_async/sim/trace_core_00_4.log @@ -0,0 +1 @@ + Time Cycles PC Instr Mnemonic diff --git a/tests/spim_flash_async/sim/trace_core_00_5.log b/tests/spim_flash_async/sim/trace_core_00_5.log new file mode 100644 index 00000000..a60a9a8e --- /dev/null +++ b/tests/spim_flash_async/sim/trace_core_00_5.log @@ -0,0 +1 @@ + Time Cycles PC Instr Mnemonic diff --git a/tests/spim_flash_async/sim/trace_core_00_6.log b/tests/spim_flash_async/sim/trace_core_00_6.log new file mode 100644 index 00000000..a60a9a8e --- /dev/null +++ b/tests/spim_flash_async/sim/trace_core_00_6.log @@ -0,0 +1 @@ + Time Cycles PC Instr Mnemonic diff --git a/tests/spim_flash_async/sim/trace_core_00_7.log b/tests/spim_flash_async/sim/trace_core_00_7.log new file mode 100644 index 00000000..a60a9a8e --- /dev/null +++ b/tests/spim_flash_async/sim/trace_core_00_7.log @@ -0,0 +1 @@ + Time Cycles PC Instr Mnemonic diff --git a/tests/spim_flash_async/sim/trace_core_1f_0.log b/tests/spim_flash_async/sim/trace_core_1f_0.log new file mode 100644 index 00000000..4e9d835c --- /dev/null +++ b/tests/spim_flash_async/sim/trace_core_1f_0.log @@ -0,0 +1,329674 @@ + Time Cycles PC Instr Mnemonic + 53578ns 5 1a000080 3590006f jal x0, 2904 + 53692ns 7 1a000bd8 02000197 auipc x3, 0x2000000 x3=1c000bd8 + 53749ns 8 1a000bdc c2c18193 addi x3, x3, -980 x3=1c000804 x3:1c000bd8 + 53806ns 9 1a000be0 02003117 auipc x2, 0x2003000 x2=1c003be0 + 53862ns 10 1a000be4 95010113 addi x2, x2, -1712 x2=1c003530 x2:1c003be0 + 53919ns 11 1a000be8 02001297 auipc x5, 0x2001000 x5=1c001be8 + 53976ns 12 1a000bec d4828293 addi x5, x5, -696 x5=1c001930 x5:1c001be8 + 54033ns 13 1a000bf0 02002317 auipc x6, 0x2002000 x6=1c002bf0 + 54090ns 14 1a000bf4 13c30313 addi x6, x6, 316 x6=1c002d2c x6:1c002bf0 + 54147ns 15 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001930 PA:1c001930 + 54203ns 16 1a000bfc 00428293 addi x5, x5, 4 x5=1c001934 x5:1c001930 + 54260ns 17 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001934 x6:1c002d2c + 54431ns 20 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001934 PA:1c001934 + 54488ns 21 1a000bfc 00428293 addi x5, x5, 4 x5=1c001938 x5:1c001934 + 54544ns 22 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001938 x6:1c002d2c + 54715ns 25 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001938 PA:1c001938 + 54772ns 26 1a000bfc 00428293 addi x5, x5, 4 x5=1c00193c x5:1c001938 + 54829ns 27 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c00193c x6:1c002d2c + 54999ns 30 1a000bf8 0002a023 sw x0, 0(x5) x5:1c00193c PA:1c00193c + 55056ns 31 1a000bfc 00428293 addi x5, x5, 4 x5=1c001940 x5:1c00193c + 55113ns 32 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001940 x6:1c002d2c + 55283ns 35 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001940 PA:1c001940 + 55340ns 36 1a000bfc 00428293 addi x5, x5, 4 x5=1c001944 x5:1c001940 + 55397ns 37 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001944 x6:1c002d2c + 55567ns 40 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001944 PA:1c001944 + 55624ns 41 1a000bfc 00428293 addi x5, x5, 4 x5=1c001948 x5:1c001944 + 55681ns 42 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001948 x6:1c002d2c + 55852ns 45 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001948 PA:1c001948 + 55908ns 46 1a000bfc 00428293 addi x5, x5, 4 x5=1c00194c x5:1c001948 + 55965ns 47 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c00194c x6:1c002d2c + 56136ns 50 1a000bf8 0002a023 sw x0, 0(x5) x5:1c00194c PA:1c00194c + 56193ns 51 1a000bfc 00428293 addi x5, x5, 4 x5=1c001950 x5:1c00194c + 56249ns 52 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001950 x6:1c002d2c + 56420ns 55 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001950 PA:1c001950 + 56477ns 56 1a000bfc 00428293 addi x5, x5, 4 x5=1c001954 x5:1c001950 + 56534ns 57 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001954 x6:1c002d2c + 56704ns 60 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001954 PA:1c001954 + 56761ns 61 1a000bfc 00428293 addi x5, x5, 4 x5=1c001958 x5:1c001954 + 56818ns 62 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001958 x6:1c002d2c + 56988ns 65 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001958 PA:1c001958 + 57045ns 66 1a000bfc 00428293 addi x5, x5, 4 x5=1c00195c x5:1c001958 + 57102ns 67 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c00195c x6:1c002d2c + 57272ns 70 1a000bf8 0002a023 sw x0, 0(x5) x5:1c00195c PA:1c00195c + 57329ns 71 1a000bfc 00428293 addi x5, x5, 4 x5=1c001960 x5:1c00195c + 57386ns 72 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001960 x6:1c002d2c + 57557ns 75 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001960 PA:1c001960 + 57613ns 76 1a000bfc 00428293 addi x5, x5, 4 x5=1c001964 x5:1c001960 + 57670ns 77 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001964 x6:1c002d2c + 57841ns 80 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001964 PA:1c001964 + 57898ns 81 1a000bfc 00428293 addi x5, x5, 4 x5=1c001968 x5:1c001964 + 57954ns 82 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001968 x6:1c002d2c + 58125ns 85 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001968 PA:1c001968 + 58182ns 86 1a000bfc 00428293 addi x5, x5, 4 x5=1c00196c x5:1c001968 + 58239ns 87 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c00196c x6:1c002d2c + 58409ns 90 1a000bf8 0002a023 sw x0, 0(x5) x5:1c00196c PA:1c00196c + 58466ns 91 1a000bfc 00428293 addi x5, x5, 4 x5=1c001970 x5:1c00196c + 58523ns 92 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001970 x6:1c002d2c + 58693ns 95 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001970 PA:1c001970 + 58750ns 96 1a000bfc 00428293 addi x5, x5, 4 x5=1c001974 x5:1c001970 + 58807ns 97 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001974 x6:1c002d2c + 58977ns 100 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001974 PA:1c001974 + 59034ns 101 1a000bfc 00428293 addi x5, x5, 4 x5=1c001978 x5:1c001974 + 59091ns 102 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001978 x6:1c002d2c + 59261ns 105 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001978 PA:1c001978 + 59318ns 106 1a000bfc 00428293 addi x5, x5, 4 x5=1c00197c x5:1c001978 + 59375ns 107 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c00197c x6:1c002d2c + 59546ns 110 1a000bf8 0002a023 sw x0, 0(x5) x5:1c00197c PA:1c00197c + 59602ns 111 1a000bfc 00428293 addi x5, x5, 4 x5=1c001980 x5:1c00197c + 59659ns 112 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001980 x6:1c002d2c + 59830ns 115 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001980 PA:1c001980 + 59887ns 116 1a000bfc 00428293 addi x5, x5, 4 x5=1c001984 x5:1c001980 + 59943ns 117 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001984 x6:1c002d2c + 60114ns 120 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001984 PA:1c001984 + 60171ns 121 1a000bfc 00428293 addi x5, x5, 4 x5=1c001988 x5:1c001984 + 60228ns 122 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001988 x6:1c002d2c + 60398ns 125 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001988 PA:1c001988 + 60455ns 126 1a000bfc 00428293 addi x5, x5, 4 x5=1c00198c x5:1c001988 + 60512ns 127 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c00198c x6:1c002d2c + 60682ns 130 1a000bf8 0002a023 sw x0, 0(x5) x5:1c00198c PA:1c00198c + 60739ns 131 1a000bfc 00428293 addi x5, x5, 4 x5=1c001990 x5:1c00198c + 60796ns 132 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001990 x6:1c002d2c + 60966ns 135 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001990 PA:1c001990 + 61023ns 136 1a000bfc 00428293 addi x5, x5, 4 x5=1c001994 x5:1c001990 + 61080ns 137 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001994 x6:1c002d2c + 61251ns 140 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001994 PA:1c001994 + 61307ns 141 1a000bfc 00428293 addi x5, x5, 4 x5=1c001998 x5:1c001994 + 61364ns 142 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001998 x6:1c002d2c + 61535ns 145 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001998 PA:1c001998 + 61592ns 146 1a000bfc 00428293 addi x5, x5, 4 x5=1c00199c x5:1c001998 + 61648ns 147 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c00199c x6:1c002d2c + 61819ns 150 1a000bf8 0002a023 sw x0, 0(x5) x5:1c00199c PA:1c00199c + 61876ns 151 1a000bfc 00428293 addi x5, x5, 4 x5=1c0019a0 x5:1c00199c + 61933ns 152 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c0019a0 x6:1c002d2c + 62103ns 155 1a000bf8 0002a023 sw x0, 0(x5) x5:1c0019a0 PA:1c0019a0 + 62160ns 156 1a000bfc 00428293 addi x5, x5, 4 x5=1c0019a4 x5:1c0019a0 + 62217ns 157 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c0019a4 x6:1c002d2c + 62387ns 160 1a000bf8 0002a023 sw x0, 0(x5) x5:1c0019a4 PA:1c0019a4 + 62444ns 161 1a000bfc 00428293 addi x5, x5, 4 x5=1c0019a8 x5:1c0019a4 + 62501ns 162 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c0019a8 x6:1c002d2c + 62671ns 165 1a000bf8 0002a023 sw x0, 0(x5) x5:1c0019a8 PA:1c0019a8 + 62728ns 166 1a000bfc 00428293 addi x5, x5, 4 x5=1c0019ac x5:1c0019a8 + 62785ns 167 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c0019ac x6:1c002d2c + 62956ns 170 1a000bf8 0002a023 sw x0, 0(x5) x5:1c0019ac PA:1c0019ac + 63012ns 171 1a000bfc 00428293 addi x5, x5, 4 x5=1c0019b0 x5:1c0019ac + 63069ns 172 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c0019b0 x6:1c002d2c + 63240ns 175 1a000bf8 0002a023 sw x0, 0(x5) x5:1c0019b0 PA:1c0019b0 + 63297ns 176 1a000bfc 00428293 addi x5, x5, 4 x5=1c0019b4 x5:1c0019b0 + 63353ns 177 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c0019b4 x6:1c002d2c + 63524ns 180 1a000bf8 0002a023 sw x0, 0(x5) x5:1c0019b4 PA:1c0019b4 + 63581ns 181 1a000bfc 00428293 addi x5, x5, 4 x5=1c0019b8 x5:1c0019b4 + 63638ns 182 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c0019b8 x6:1c002d2c + 63808ns 185 1a000bf8 0002a023 sw x0, 0(x5) x5:1c0019b8 PA:1c0019b8 + 63865ns 186 1a000bfc 00428293 addi x5, x5, 4 x5=1c0019bc x5:1c0019b8 + 63922ns 187 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c0019bc x6:1c002d2c + 64092ns 190 1a000bf8 0002a023 sw x0, 0(x5) x5:1c0019bc PA:1c0019bc + 64149ns 191 1a000bfc 00428293 addi x5, x5, 4 x5=1c0019c0 x5:1c0019bc + 64206ns 192 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c0019c0 x6:1c002d2c + 64376ns 195 1a000bf8 0002a023 sw x0, 0(x5) x5:1c0019c0 PA:1c0019c0 + 64433ns 196 1a000bfc 00428293 addi x5, x5, 4 x5=1c0019c4 x5:1c0019c0 + 64490ns 197 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c0019c4 x6:1c002d2c + 64661ns 200 1a000bf8 0002a023 sw x0, 0(x5) x5:1c0019c4 PA:1c0019c4 + 64717ns 201 1a000bfc 00428293 addi x5, x5, 4 x5=1c0019c8 x5:1c0019c4 + 64774ns 202 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c0019c8 x6:1c002d2c + 64945ns 205 1a000bf8 0002a023 sw x0, 0(x5) x5:1c0019c8 PA:1c0019c8 + 65002ns 206 1a000bfc 00428293 addi x5, x5, 4 x5=1c0019cc x5:1c0019c8 + 65058ns 207 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c0019cc x6:1c002d2c + 65229ns 210 1a000bf8 0002a023 sw x0, 0(x5) x5:1c0019cc PA:1c0019cc + 65286ns 211 1a000bfc 00428293 addi x5, x5, 4 x5=1c0019d0 x5:1c0019cc + 65343ns 212 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c0019d0 x6:1c002d2c + 65513ns 215 1a000bf8 0002a023 sw x0, 0(x5) x5:1c0019d0 PA:1c0019d0 + 65570ns 216 1a000bfc 00428293 addi x5, x5, 4 x5=1c0019d4 x5:1c0019d0 + 65627ns 217 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c0019d4 x6:1c002d2c + 65797ns 220 1a000bf8 0002a023 sw x0, 0(x5) x5:1c0019d4 PA:1c0019d4 + 65854ns 221 1a000bfc 00428293 addi x5, x5, 4 x5=1c0019d8 x5:1c0019d4 + 65911ns 222 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c0019d8 x6:1c002d2c + 66081ns 225 1a000bf8 0002a023 sw x0, 0(x5) x5:1c0019d8 PA:1c0019d8 + 66138ns 226 1a000bfc 00428293 addi x5, x5, 4 x5=1c0019dc x5:1c0019d8 + 66195ns 227 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c0019dc x6:1c002d2c + 66365ns 230 1a000bf8 0002a023 sw x0, 0(x5) x5:1c0019dc PA:1c0019dc + 66422ns 231 1a000bfc 00428293 addi x5, x5, 4 x5=1c0019e0 x5:1c0019dc + 66479ns 232 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c0019e0 x6:1c002d2c + 66650ns 235 1a000bf8 0002a023 sw x0, 0(x5) x5:1c0019e0 PA:1c0019e0 + 66706ns 236 1a000bfc 00428293 addi x5, x5, 4 x5=1c0019e4 x5:1c0019e0 + 66763ns 237 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c0019e4 x6:1c002d2c + 66934ns 240 1a000bf8 0002a023 sw x0, 0(x5) x5:1c0019e4 PA:1c0019e4 + 66991ns 241 1a000bfc 00428293 addi x5, x5, 4 x5=1c0019e8 x5:1c0019e4 + 67047ns 242 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c0019e8 x6:1c002d2c + 67218ns 245 1a000bf8 0002a023 sw x0, 0(x5) x5:1c0019e8 PA:1c0019e8 + 67275ns 246 1a000bfc 00428293 addi x5, x5, 4 x5=1c0019ec x5:1c0019e8 + 67332ns 247 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c0019ec x6:1c002d2c + 67502ns 250 1a000bf8 0002a023 sw x0, 0(x5) x5:1c0019ec PA:1c0019ec + 67559ns 251 1a000bfc 00428293 addi x5, x5, 4 x5=1c0019f0 x5:1c0019ec + 67616ns 252 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c0019f0 x6:1c002d2c + 67786ns 255 1a000bf8 0002a023 sw x0, 0(x5) x5:1c0019f0 PA:1c0019f0 + 67843ns 256 1a000bfc 00428293 addi x5, x5, 4 x5=1c0019f4 x5:1c0019f0 + 67900ns 257 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c0019f4 x6:1c002d2c + 68070ns 260 1a000bf8 0002a023 sw x0, 0(x5) x5:1c0019f4 PA:1c0019f4 + 68127ns 261 1a000bfc 00428293 addi x5, x5, 4 x5=1c0019f8 x5:1c0019f4 + 68184ns 262 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c0019f8 x6:1c002d2c + 68355ns 265 1a000bf8 0002a023 sw x0, 0(x5) x5:1c0019f8 PA:1c0019f8 + 68411ns 266 1a000bfc 00428293 addi x5, x5, 4 x5=1c0019fc x5:1c0019f8 + 68468ns 267 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c0019fc x6:1c002d2c + 68639ns 270 1a000bf8 0002a023 sw x0, 0(x5) x5:1c0019fc PA:1c0019fc + 68696ns 271 1a000bfc 00428293 addi x5, x5, 4 x5=1c001a00 x5:1c0019fc + 68752ns 272 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001a00 x6:1c002d2c + 68923ns 275 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001a00 PA:1c001a00 + 68980ns 276 1a000bfc 00428293 addi x5, x5, 4 x5=1c001a04 x5:1c001a00 + 69037ns 277 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001a04 x6:1c002d2c + 69207ns 280 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001a04 PA:1c001a04 + 69264ns 281 1a000bfc 00428293 addi x5, x5, 4 x5=1c001a08 x5:1c001a04 + 69321ns 282 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001a08 x6:1c002d2c + 69491ns 285 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001a08 PA:1c001a08 + 69548ns 286 1a000bfc 00428293 addi x5, x5, 4 x5=1c001a0c x5:1c001a08 + 69605ns 287 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001a0c x6:1c002d2c + 69775ns 290 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001a0c PA:1c001a0c + 69832ns 291 1a000bfc 00428293 addi x5, x5, 4 x5=1c001a10 x5:1c001a0c + 69889ns 292 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001a10 x6:1c002d2c + 70060ns 295 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001a10 PA:1c001a10 + 70116ns 296 1a000bfc 00428293 addi x5, x5, 4 x5=1c001a14 x5:1c001a10 + 70173ns 297 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001a14 x6:1c002d2c + 70344ns 300 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001a14 PA:1c001a14 + 70401ns 301 1a000bfc 00428293 addi x5, x5, 4 x5=1c001a18 x5:1c001a14 + 70457ns 302 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001a18 x6:1c002d2c + 70628ns 305 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001a18 PA:1c001a18 + 70685ns 306 1a000bfc 00428293 addi x5, x5, 4 x5=1c001a1c x5:1c001a18 + 70742ns 307 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001a1c x6:1c002d2c + 70912ns 310 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001a1c PA:1c001a1c + 70969ns 311 1a000bfc 00428293 addi x5, x5, 4 x5=1c001a20 x5:1c001a1c + 71026ns 312 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001a20 x6:1c002d2c + 71196ns 315 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001a20 PA:1c001a20 + 71253ns 316 1a000bfc 00428293 addi x5, x5, 4 x5=1c001a24 x5:1c001a20 + 71310ns 317 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001a24 x6:1c002d2c + 71480ns 320 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001a24 PA:1c001a24 + 71537ns 321 1a000bfc 00428293 addi x5, x5, 4 x5=1c001a28 x5:1c001a24 + 71594ns 322 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001a28 x6:1c002d2c + 71765ns 325 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001a28 PA:1c001a28 + 71821ns 326 1a000bfc 00428293 addi x5, x5, 4 x5=1c001a2c x5:1c001a28 + 71878ns 327 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001a2c x6:1c002d2c + 72049ns 330 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001a2c PA:1c001a2c + 72106ns 331 1a000bfc 00428293 addi x5, x5, 4 x5=1c001a30 x5:1c001a2c + 72162ns 332 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001a30 x6:1c002d2c + 72333ns 335 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001a30 PA:1c001a30 + 72390ns 336 1a000bfc 00428293 addi x5, x5, 4 x5=1c001a34 x5:1c001a30 + 72447ns 337 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001a34 x6:1c002d2c + 72617ns 340 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001a34 PA:1c001a34 + 72674ns 341 1a000bfc 00428293 addi x5, x5, 4 x5=1c001a38 x5:1c001a34 + 72731ns 342 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001a38 x6:1c002d2c + 72901ns 345 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001a38 PA:1c001a38 + 72958ns 346 1a000bfc 00428293 addi x5, x5, 4 x5=1c001a3c x5:1c001a38 + 73015ns 347 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001a3c x6:1c002d2c + 73185ns 350 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001a3c PA:1c001a3c + 73242ns 351 1a000bfc 00428293 addi x5, x5, 4 x5=1c001a40 x5:1c001a3c + 73299ns 352 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001a40 x6:1c002d2c + 73469ns 355 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001a40 PA:1c001a40 + 73526ns 356 1a000bfc 00428293 addi x5, x5, 4 x5=1c001a44 x5:1c001a40 + 73583ns 357 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001a44 x6:1c002d2c + 73754ns 360 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001a44 PA:1c001a44 + 73810ns 361 1a000bfc 00428293 addi x5, x5, 4 x5=1c001a48 x5:1c001a44 + 73867ns 362 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001a48 x6:1c002d2c + 74038ns 365 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001a48 PA:1c001a48 + 74095ns 366 1a000bfc 00428293 addi x5, x5, 4 x5=1c001a4c x5:1c001a48 + 74151ns 367 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001a4c x6:1c002d2c + 74322ns 370 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001a4c PA:1c001a4c + 74379ns 371 1a000bfc 00428293 addi x5, x5, 4 x5=1c001a50 x5:1c001a4c + 74436ns 372 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001a50 x6:1c002d2c + 74606ns 375 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001a50 PA:1c001a50 + 74663ns 376 1a000bfc 00428293 addi x5, x5, 4 x5=1c001a54 x5:1c001a50 + 74720ns 377 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001a54 x6:1c002d2c + 74890ns 380 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001a54 PA:1c001a54 + 74947ns 381 1a000bfc 00428293 addi x5, x5, 4 x5=1c001a58 x5:1c001a54 + 75004ns 382 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001a58 x6:1c002d2c + 75174ns 385 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001a58 PA:1c001a58 + 75231ns 386 1a000bfc 00428293 addi x5, x5, 4 x5=1c001a5c x5:1c001a58 + 75288ns 387 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001a5c x6:1c002d2c + 75459ns 390 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001a5c PA:1c001a5c + 75515ns 391 1a000bfc 00428293 addi x5, x5, 4 x5=1c001a60 x5:1c001a5c + 75572ns 392 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001a60 x6:1c002d2c + 75743ns 395 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001a60 PA:1c001a60 + 75800ns 396 1a000bfc 00428293 addi x5, x5, 4 x5=1c001a64 x5:1c001a60 + 75856ns 397 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001a64 x6:1c002d2c + 76027ns 400 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001a64 PA:1c001a64 + 76084ns 401 1a000bfc 00428293 addi x5, x5, 4 x5=1c001a68 x5:1c001a64 + 76141ns 402 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001a68 x6:1c002d2c + 76311ns 405 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001a68 PA:1c001a68 + 76368ns 406 1a000bfc 00428293 addi x5, x5, 4 x5=1c001a6c x5:1c001a68 + 76425ns 407 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001a6c x6:1c002d2c + 76595ns 410 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001a6c PA:1c001a6c + 76652ns 411 1a000bfc 00428293 addi x5, x5, 4 x5=1c001a70 x5:1c001a6c + 76709ns 412 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001a70 x6:1c002d2c + 76879ns 415 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001a70 PA:1c001a70 + 76936ns 416 1a000bfc 00428293 addi x5, x5, 4 x5=1c001a74 x5:1c001a70 + 76993ns 417 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001a74 x6:1c002d2c + 77164ns 420 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001a74 PA:1c001a74 + 77220ns 421 1a000bfc 00428293 addi x5, x5, 4 x5=1c001a78 x5:1c001a74 + 77277ns 422 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001a78 x6:1c002d2c + 77448ns 425 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001a78 PA:1c001a78 + 77505ns 426 1a000bfc 00428293 addi x5, x5, 4 x5=1c001a7c x5:1c001a78 + 77561ns 427 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001a7c x6:1c002d2c + 77732ns 430 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001a7c PA:1c001a7c + 77789ns 431 1a000bfc 00428293 addi x5, x5, 4 x5=1c001a80 x5:1c001a7c + 77846ns 432 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001a80 x6:1c002d2c + 78016ns 435 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001a80 PA:1c001a80 + 78073ns 436 1a000bfc 00428293 addi x5, x5, 4 x5=1c001a84 x5:1c001a80 + 78130ns 437 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001a84 x6:1c002d2c + 78300ns 440 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001a84 PA:1c001a84 + 78357ns 441 1a000bfc 00428293 addi x5, x5, 4 x5=1c001a88 x5:1c001a84 + 78414ns 442 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001a88 x6:1c002d2c + 78584ns 445 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001a88 PA:1c001a88 + 78641ns 446 1a000bfc 00428293 addi x5, x5, 4 x5=1c001a8c x5:1c001a88 + 78698ns 447 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001a8c x6:1c002d2c + 78869ns 450 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001a8c PA:1c001a8c + 78925ns 451 1a000bfc 00428293 addi x5, x5, 4 x5=1c001a90 x5:1c001a8c + 78982ns 452 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001a90 x6:1c002d2c + 79153ns 455 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001a90 PA:1c001a90 + 79210ns 456 1a000bfc 00428293 addi x5, x5, 4 x5=1c001a94 x5:1c001a90 + 79266ns 457 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001a94 x6:1c002d2c + 79437ns 460 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001a94 PA:1c001a94 + 79494ns 461 1a000bfc 00428293 addi x5, x5, 4 x5=1c001a98 x5:1c001a94 + 79551ns 462 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001a98 x6:1c002d2c + 79721ns 465 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001a98 PA:1c001a98 + 79778ns 466 1a000bfc 00428293 addi x5, x5, 4 x5=1c001a9c x5:1c001a98 + 79835ns 467 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001a9c x6:1c002d2c + 80005ns 470 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001a9c PA:1c001a9c + 80062ns 471 1a000bfc 00428293 addi x5, x5, 4 x5=1c001aa0 x5:1c001a9c + 80119ns 472 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001aa0 x6:1c002d2c + 80289ns 475 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001aa0 PA:1c001aa0 + 80346ns 476 1a000bfc 00428293 addi x5, x5, 4 x5=1c001aa4 x5:1c001aa0 + 80403ns 477 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001aa4 x6:1c002d2c + 80573ns 480 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001aa4 PA:1c001aa4 + 80630ns 481 1a000bfc 00428293 addi x5, x5, 4 x5=1c001aa8 x5:1c001aa4 + 80687ns 482 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001aa8 x6:1c002d2c + 80858ns 485 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001aa8 PA:1c001aa8 + 80914ns 486 1a000bfc 00428293 addi x5, x5, 4 x5=1c001aac x5:1c001aa8 + 80971ns 487 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001aac x6:1c002d2c + 81142ns 490 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001aac PA:1c001aac + 81199ns 491 1a000bfc 00428293 addi x5, x5, 4 x5=1c001ab0 x5:1c001aac + 81255ns 492 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001ab0 x6:1c002d2c + 81426ns 495 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001ab0 PA:1c001ab0 + 81483ns 496 1a000bfc 00428293 addi x5, x5, 4 x5=1c001ab4 x5:1c001ab0 + 81540ns 497 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001ab4 x6:1c002d2c + 81710ns 500 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001ab4 PA:1c001ab4 + 81767ns 501 1a000bfc 00428293 addi x5, x5, 4 x5=1c001ab8 x5:1c001ab4 + 81824ns 502 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001ab8 x6:1c002d2c + 81994ns 505 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001ab8 PA:1c001ab8 + 82051ns 506 1a000bfc 00428293 addi x5, x5, 4 x5=1c001abc x5:1c001ab8 + 82108ns 507 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001abc x6:1c002d2c + 82278ns 510 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001abc PA:1c001abc + 82335ns 511 1a000bfc 00428293 addi x5, x5, 4 x5=1c001ac0 x5:1c001abc + 82392ns 512 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001ac0 x6:1c002d2c + 82563ns 515 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001ac0 PA:1c001ac0 + 82619ns 516 1a000bfc 00428293 addi x5, x5, 4 x5=1c001ac4 x5:1c001ac0 + 82676ns 517 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001ac4 x6:1c002d2c + 82847ns 520 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001ac4 PA:1c001ac4 + 82904ns 521 1a000bfc 00428293 addi x5, x5, 4 x5=1c001ac8 x5:1c001ac4 + 82960ns 522 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001ac8 x6:1c002d2c + 83131ns 525 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001ac8 PA:1c001ac8 + 83188ns 526 1a000bfc 00428293 addi x5, x5, 4 x5=1c001acc x5:1c001ac8 + 83245ns 527 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001acc x6:1c002d2c + 83415ns 530 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001acc PA:1c001acc + 83472ns 531 1a000bfc 00428293 addi x5, x5, 4 x5=1c001ad0 x5:1c001acc + 83529ns 532 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001ad0 x6:1c002d2c + 83699ns 535 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001ad0 PA:1c001ad0 + 83756ns 536 1a000bfc 00428293 addi x5, x5, 4 x5=1c001ad4 x5:1c001ad0 + 83813ns 537 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001ad4 x6:1c002d2c + 83983ns 540 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001ad4 PA:1c001ad4 + 84040ns 541 1a000bfc 00428293 addi x5, x5, 4 x5=1c001ad8 x5:1c001ad4 + 84097ns 542 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001ad8 x6:1c002d2c + 84268ns 545 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001ad8 PA:1c001ad8 + 84324ns 546 1a000bfc 00428293 addi x5, x5, 4 x5=1c001adc x5:1c001ad8 + 84381ns 547 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001adc x6:1c002d2c + 84552ns 550 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001adc PA:1c001adc + 84609ns 551 1a000bfc 00428293 addi x5, x5, 4 x5=1c001ae0 x5:1c001adc + 84665ns 552 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001ae0 x6:1c002d2c + 84836ns 555 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001ae0 PA:1c001ae0 + 84893ns 556 1a000bfc 00428293 addi x5, x5, 4 x5=1c001ae4 x5:1c001ae0 + 84950ns 557 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001ae4 x6:1c002d2c + 85120ns 560 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001ae4 PA:1c001ae4 + 85177ns 561 1a000bfc 00428293 addi x5, x5, 4 x5=1c001ae8 x5:1c001ae4 + 85234ns 562 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001ae8 x6:1c002d2c + 85404ns 565 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001ae8 PA:1c001ae8 + 85461ns 566 1a000bfc 00428293 addi x5, x5, 4 x5=1c001aec x5:1c001ae8 + 85518ns 567 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001aec x6:1c002d2c + 85688ns 570 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001aec PA:1c001aec + 85745ns 571 1a000bfc 00428293 addi x5, x5, 4 x5=1c001af0 x5:1c001aec + 85802ns 572 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001af0 x6:1c002d2c + 85973ns 575 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001af0 PA:1c001af0 + 86029ns 576 1a000bfc 00428293 addi x5, x5, 4 x5=1c001af4 x5:1c001af0 + 86086ns 577 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001af4 x6:1c002d2c + 86257ns 580 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001af4 PA:1c001af4 + 86314ns 581 1a000bfc 00428293 addi x5, x5, 4 x5=1c001af8 x5:1c001af4 + 86370ns 582 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001af8 x6:1c002d2c + 86541ns 585 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001af8 PA:1c001af8 + 86598ns 586 1a000bfc 00428293 addi x5, x5, 4 x5=1c001afc x5:1c001af8 + 86655ns 587 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001afc x6:1c002d2c + 86825ns 590 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001afc PA:1c001afc + 86882ns 591 1a000bfc 00428293 addi x5, x5, 4 x5=1c001b00 x5:1c001afc + 86939ns 592 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001b00 x6:1c002d2c + 87109ns 595 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001b00 PA:1c001b00 + 87166ns 596 1a000bfc 00428293 addi x5, x5, 4 x5=1c001b04 x5:1c001b00 + 87223ns 597 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001b04 x6:1c002d2c + 87393ns 600 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001b04 PA:1c001b04 + 87450ns 601 1a000bfc 00428293 addi x5, x5, 4 x5=1c001b08 x5:1c001b04 + 87507ns 602 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001b08 x6:1c002d2c + 87677ns 605 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001b08 PA:1c001b08 + 87734ns 606 1a000bfc 00428293 addi x5, x5, 4 x5=1c001b0c x5:1c001b08 + 87791ns 607 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001b0c x6:1c002d2c + 87962ns 610 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001b0c PA:1c001b0c + 88018ns 611 1a000bfc 00428293 addi x5, x5, 4 x5=1c001b10 x5:1c001b0c + 88075ns 612 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001b10 x6:1c002d2c + 88246ns 615 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001b10 PA:1c001b10 + 88303ns 616 1a000bfc 00428293 addi x5, x5, 4 x5=1c001b14 x5:1c001b10 + 88359ns 617 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001b14 x6:1c002d2c + 88530ns 620 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001b14 PA:1c001b14 + 88587ns 621 1a000bfc 00428293 addi x5, x5, 4 x5=1c001b18 x5:1c001b14 + 88644ns 622 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001b18 x6:1c002d2c + 88814ns 625 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001b18 PA:1c001b18 + 88871ns 626 1a000bfc 00428293 addi x5, x5, 4 x5=1c001b1c x5:1c001b18 + 88928ns 627 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001b1c x6:1c002d2c + 89098ns 630 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001b1c PA:1c001b1c + 89155ns 631 1a000bfc 00428293 addi x5, x5, 4 x5=1c001b20 x5:1c001b1c + 89212ns 632 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001b20 x6:1c002d2c + 89382ns 635 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001b20 PA:1c001b20 + 89439ns 636 1a000bfc 00428293 addi x5, x5, 4 x5=1c001b24 x5:1c001b20 + 89496ns 637 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001b24 x6:1c002d2c + 89667ns 640 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001b24 PA:1c001b24 + 89723ns 641 1a000bfc 00428293 addi x5, x5, 4 x5=1c001b28 x5:1c001b24 + 89780ns 642 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001b28 x6:1c002d2c + 89951ns 645 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001b28 PA:1c001b28 + 90008ns 646 1a000bfc 00428293 addi x5, x5, 4 x5=1c001b2c x5:1c001b28 + 90064ns 647 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001b2c x6:1c002d2c + 90235ns 650 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001b2c PA:1c001b2c + 90292ns 651 1a000bfc 00428293 addi x5, x5, 4 x5=1c001b30 x5:1c001b2c + 90349ns 652 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001b30 x6:1c002d2c + 90519ns 655 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001b30 PA:1c001b30 + 90576ns 656 1a000bfc 00428293 addi x5, x5, 4 x5=1c001b34 x5:1c001b30 + 90633ns 657 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001b34 x6:1c002d2c + 90803ns 660 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001b34 PA:1c001b34 + 90860ns 661 1a000bfc 00428293 addi x5, x5, 4 x5=1c001b38 x5:1c001b34 + 90917ns 662 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001b38 x6:1c002d2c + 91087ns 665 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001b38 PA:1c001b38 + 91144ns 666 1a000bfc 00428293 addi x5, x5, 4 x5=1c001b3c x5:1c001b38 + 91201ns 667 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001b3c x6:1c002d2c + 91372ns 670 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001b3c PA:1c001b3c + 91428ns 671 1a000bfc 00428293 addi x5, x5, 4 x5=1c001b40 x5:1c001b3c + 91485ns 672 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001b40 x6:1c002d2c + 91656ns 675 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001b40 PA:1c001b40 + 91713ns 676 1a000bfc 00428293 addi x5, x5, 4 x5=1c001b44 x5:1c001b40 + 91769ns 677 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001b44 x6:1c002d2c + 91940ns 680 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001b44 PA:1c001b44 + 91997ns 681 1a000bfc 00428293 addi x5, x5, 4 x5=1c001b48 x5:1c001b44 + 92054ns 682 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001b48 x6:1c002d2c + 92224ns 685 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001b48 PA:1c001b48 + 92281ns 686 1a000bfc 00428293 addi x5, x5, 4 x5=1c001b4c x5:1c001b48 + 92338ns 687 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001b4c x6:1c002d2c + 92508ns 690 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001b4c PA:1c001b4c + 92565ns 691 1a000bfc 00428293 addi x5, x5, 4 x5=1c001b50 x5:1c001b4c + 92622ns 692 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001b50 x6:1c002d2c + 92792ns 695 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001b50 PA:1c001b50 + 92849ns 696 1a000bfc 00428293 addi x5, x5, 4 x5=1c001b54 x5:1c001b50 + 92906ns 697 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001b54 x6:1c002d2c + 93077ns 700 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001b54 PA:1c001b54 + 93133ns 701 1a000bfc 00428293 addi x5, x5, 4 x5=1c001b58 x5:1c001b54 + 93190ns 702 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001b58 x6:1c002d2c + 93361ns 705 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001b58 PA:1c001b58 + 93418ns 706 1a000bfc 00428293 addi x5, x5, 4 x5=1c001b5c x5:1c001b58 + 93474ns 707 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001b5c x6:1c002d2c + 93645ns 710 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001b5c PA:1c001b5c + 93702ns 711 1a000bfc 00428293 addi x5, x5, 4 x5=1c001b60 x5:1c001b5c + 93759ns 712 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001b60 x6:1c002d2c + 93929ns 715 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001b60 PA:1c001b60 + 93986ns 716 1a000bfc 00428293 addi x5, x5, 4 x5=1c001b64 x5:1c001b60 + 94043ns 717 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001b64 x6:1c002d2c + 94213ns 720 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001b64 PA:1c001b64 + 94270ns 721 1a000bfc 00428293 addi x5, x5, 4 x5=1c001b68 x5:1c001b64 + 94327ns 722 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001b68 x6:1c002d2c + 94497ns 725 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001b68 PA:1c001b68 + 94554ns 726 1a000bfc 00428293 addi x5, x5, 4 x5=1c001b6c x5:1c001b68 + 94611ns 727 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001b6c x6:1c002d2c + 94781ns 730 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001b6c PA:1c001b6c + 94838ns 731 1a000bfc 00428293 addi x5, x5, 4 x5=1c001b70 x5:1c001b6c + 94895ns 732 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001b70 x6:1c002d2c + 95066ns 735 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001b70 PA:1c001b70 + 95122ns 736 1a000bfc 00428293 addi x5, x5, 4 x5=1c001b74 x5:1c001b70 + 95179ns 737 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001b74 x6:1c002d2c + 95350ns 740 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001b74 PA:1c001b74 + 95407ns 741 1a000bfc 00428293 addi x5, x5, 4 x5=1c001b78 x5:1c001b74 + 95463ns 742 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001b78 x6:1c002d2c + 95634ns 745 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001b78 PA:1c001b78 + 95691ns 746 1a000bfc 00428293 addi x5, x5, 4 x5=1c001b7c x5:1c001b78 + 95748ns 747 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001b7c x6:1c002d2c + 95918ns 750 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001b7c PA:1c001b7c + 95975ns 751 1a000bfc 00428293 addi x5, x5, 4 x5=1c001b80 x5:1c001b7c + 96032ns 752 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001b80 x6:1c002d2c + 96202ns 755 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001b80 PA:1c001b80 + 96259ns 756 1a000bfc 00428293 addi x5, x5, 4 x5=1c001b84 x5:1c001b80 + 96316ns 757 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001b84 x6:1c002d2c + 96486ns 760 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001b84 PA:1c001b84 + 96543ns 761 1a000bfc 00428293 addi x5, x5, 4 x5=1c001b88 x5:1c001b84 + 96600ns 762 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001b88 x6:1c002d2c + 96771ns 765 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001b88 PA:1c001b88 + 96827ns 766 1a000bfc 00428293 addi x5, x5, 4 x5=1c001b8c x5:1c001b88 + 96884ns 767 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001b8c x6:1c002d2c + 97055ns 770 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001b8c PA:1c001b8c + 97112ns 771 1a000bfc 00428293 addi x5, x5, 4 x5=1c001b90 x5:1c001b8c + 97168ns 772 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001b90 x6:1c002d2c + 97339ns 775 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001b90 PA:1c001b90 + 97396ns 776 1a000bfc 00428293 addi x5, x5, 4 x5=1c001b94 x5:1c001b90 + 97453ns 777 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001b94 x6:1c002d2c + 97623ns 780 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001b94 PA:1c001b94 + 97680ns 781 1a000bfc 00428293 addi x5, x5, 4 x5=1c001b98 x5:1c001b94 + 97737ns 782 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001b98 x6:1c002d2c + 97907ns 785 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001b98 PA:1c001b98 + 97964ns 786 1a000bfc 00428293 addi x5, x5, 4 x5=1c001b9c x5:1c001b98 + 98021ns 787 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001b9c x6:1c002d2c + 98191ns 790 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001b9c PA:1c001b9c + 98248ns 791 1a000bfc 00428293 addi x5, x5, 4 x5=1c001ba0 x5:1c001b9c + 98305ns 792 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001ba0 x6:1c002d2c + 98476ns 795 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001ba0 PA:1c001ba0 + 98532ns 796 1a000bfc 00428293 addi x5, x5, 4 x5=1c001ba4 x5:1c001ba0 + 98589ns 797 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001ba4 x6:1c002d2c + 98760ns 800 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001ba4 PA:1c001ba4 + 98817ns 801 1a000bfc 00428293 addi x5, x5, 4 x5=1c001ba8 x5:1c001ba4 + 98873ns 802 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001ba8 x6:1c002d2c + 99044ns 805 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001ba8 PA:1c001ba8 + 99101ns 806 1a000bfc 00428293 addi x5, x5, 4 x5=1c001bac x5:1c001ba8 + 99158ns 807 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001bac x6:1c002d2c + 99328ns 810 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001bac PA:1c001bac + 99385ns 811 1a000bfc 00428293 addi x5, x5, 4 x5=1c001bb0 x5:1c001bac + 99442ns 812 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001bb0 x6:1c002d2c + 99612ns 815 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001bb0 PA:1c001bb0 + 99669ns 816 1a000bfc 00428293 addi x5, x5, 4 x5=1c001bb4 x5:1c001bb0 + 99726ns 817 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001bb4 x6:1c002d2c + 99896ns 820 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001bb4 PA:1c001bb4 + 99953ns 821 1a000bfc 00428293 addi x5, x5, 4 x5=1c001bb8 x5:1c001bb4 + 100010ns 822 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001bb8 x6:1c002d2c + 100181ns 825 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001bb8 PA:1c001bb8 + 100237ns 826 1a000bfc 00428293 addi x5, x5, 4 x5=1c001bbc x5:1c001bb8 + 100294ns 827 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001bbc x6:1c002d2c + 100465ns 830 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001bbc PA:1c001bbc + 100522ns 831 1a000bfc 00428293 addi x5, x5, 4 x5=1c001bc0 x5:1c001bbc + 100578ns 832 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001bc0 x6:1c002d2c + 100749ns 835 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001bc0 PA:1c001bc0 + 100806ns 836 1a000bfc 00428293 addi x5, x5, 4 x5=1c001bc4 x5:1c001bc0 + 100863ns 837 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001bc4 x6:1c002d2c + 101033ns 840 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001bc4 PA:1c001bc4 + 101090ns 841 1a000bfc 00428293 addi x5, x5, 4 x5=1c001bc8 x5:1c001bc4 + 101147ns 842 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001bc8 x6:1c002d2c + 101317ns 845 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001bc8 PA:1c001bc8 + 101374ns 846 1a000bfc 00428293 addi x5, x5, 4 x5=1c001bcc x5:1c001bc8 + 101431ns 847 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001bcc x6:1c002d2c + 101601ns 850 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001bcc PA:1c001bcc + 101658ns 851 1a000bfc 00428293 addi x5, x5, 4 x5=1c001bd0 x5:1c001bcc + 101715ns 852 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001bd0 x6:1c002d2c + 101885ns 855 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001bd0 PA:1c001bd0 + 101942ns 856 1a000bfc 00428293 addi x5, x5, 4 x5=1c001bd4 x5:1c001bd0 + 101999ns 857 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001bd4 x6:1c002d2c + 102170ns 860 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001bd4 PA:1c001bd4 + 102226ns 861 1a000bfc 00428293 addi x5, x5, 4 x5=1c001bd8 x5:1c001bd4 + 102283ns 862 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001bd8 x6:1c002d2c + 102454ns 865 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001bd8 PA:1c001bd8 + 102511ns 866 1a000bfc 00428293 addi x5, x5, 4 x5=1c001bdc x5:1c001bd8 + 102567ns 867 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001bdc x6:1c002d2c + 102738ns 870 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001bdc PA:1c001bdc + 102795ns 871 1a000bfc 00428293 addi x5, x5, 4 x5=1c001be0 x5:1c001bdc + 102852ns 872 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001be0 x6:1c002d2c + 103022ns 875 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001be0 PA:1c001be0 + 103079ns 876 1a000bfc 00428293 addi x5, x5, 4 x5=1c001be4 x5:1c001be0 + 103136ns 877 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001be4 x6:1c002d2c + 103306ns 880 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001be4 PA:1c001be4 + 103363ns 881 1a000bfc 00428293 addi x5, x5, 4 x5=1c001be8 x5:1c001be4 + 103420ns 882 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001be8 x6:1c002d2c + 103590ns 885 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001be8 PA:1c001be8 + 103647ns 886 1a000bfc 00428293 addi x5, x5, 4 x5=1c001bec x5:1c001be8 + 103704ns 887 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001bec x6:1c002d2c + 103875ns 890 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001bec PA:1c001bec + 103931ns 891 1a000bfc 00428293 addi x5, x5, 4 x5=1c001bf0 x5:1c001bec + 103988ns 892 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001bf0 x6:1c002d2c + 104159ns 895 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001bf0 PA:1c001bf0 + 104216ns 896 1a000bfc 00428293 addi x5, x5, 4 x5=1c001bf4 x5:1c001bf0 + 104272ns 897 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001bf4 x6:1c002d2c + 104443ns 900 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001bf4 PA:1c001bf4 + 104500ns 901 1a000bfc 00428293 addi x5, x5, 4 x5=1c001bf8 x5:1c001bf4 + 104557ns 902 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001bf8 x6:1c002d2c + 104727ns 905 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001bf8 PA:1c001bf8 + 104784ns 906 1a000bfc 00428293 addi x5, x5, 4 x5=1c001bfc x5:1c001bf8 + 104841ns 907 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001bfc x6:1c002d2c + 105011ns 910 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001bfc PA:1c001bfc + 105068ns 911 1a000bfc 00428293 addi x5, x5, 4 x5=1c001c00 x5:1c001bfc + 105125ns 912 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001c00 x6:1c002d2c + 105295ns 915 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001c00 PA:1c001c00 + 105352ns 916 1a000bfc 00428293 addi x5, x5, 4 x5=1c001c04 x5:1c001c00 + 105409ns 917 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001c04 x6:1c002d2c + 105580ns 920 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001c04 PA:1c001c04 + 105636ns 921 1a000bfc 00428293 addi x5, x5, 4 x5=1c001c08 x5:1c001c04 + 105693ns 922 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001c08 x6:1c002d2c + 105864ns 925 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001c08 PA:1c001c08 + 105921ns 926 1a000bfc 00428293 addi x5, x5, 4 x5=1c001c0c x5:1c001c08 + 105977ns 927 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001c0c x6:1c002d2c + 106148ns 930 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001c0c PA:1c001c0c + 106205ns 931 1a000bfc 00428293 addi x5, x5, 4 x5=1c001c10 x5:1c001c0c + 106262ns 932 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001c10 x6:1c002d2c + 106432ns 935 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001c10 PA:1c001c10 + 106489ns 936 1a000bfc 00428293 addi x5, x5, 4 x5=1c001c14 x5:1c001c10 + 106546ns 937 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001c14 x6:1c002d2c + 106716ns 940 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001c14 PA:1c001c14 + 106773ns 941 1a000bfc 00428293 addi x5, x5, 4 x5=1c001c18 x5:1c001c14 + 106830ns 942 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001c18 x6:1c002d2c + 107000ns 945 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001c18 PA:1c001c18 + 107057ns 946 1a000bfc 00428293 addi x5, x5, 4 x5=1c001c1c x5:1c001c18 + 107114ns 947 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001c1c x6:1c002d2c + 107285ns 950 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001c1c PA:1c001c1c + 107341ns 951 1a000bfc 00428293 addi x5, x5, 4 x5=1c001c20 x5:1c001c1c + 107398ns 952 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001c20 x6:1c002d2c + 107569ns 955 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001c20 PA:1c001c20 + 107626ns 956 1a000bfc 00428293 addi x5, x5, 4 x5=1c001c24 x5:1c001c20 + 107682ns 957 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001c24 x6:1c002d2c + 107853ns 960 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001c24 PA:1c001c24 + 107910ns 961 1a000bfc 00428293 addi x5, x5, 4 x5=1c001c28 x5:1c001c24 + 107967ns 962 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001c28 x6:1c002d2c + 108137ns 965 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001c28 PA:1c001c28 + 108194ns 966 1a000bfc 00428293 addi x5, x5, 4 x5=1c001c2c x5:1c001c28 + 108251ns 967 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001c2c x6:1c002d2c + 108421ns 970 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001c2c PA:1c001c2c + 108478ns 971 1a000bfc 00428293 addi x5, x5, 4 x5=1c001c30 x5:1c001c2c + 108535ns 972 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001c30 x6:1c002d2c + 108705ns 975 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001c30 PA:1c001c30 + 108762ns 976 1a000bfc 00428293 addi x5, x5, 4 x5=1c001c34 x5:1c001c30 + 108819ns 977 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001c34 x6:1c002d2c + 108989ns 980 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001c34 PA:1c001c34 + 109046ns 981 1a000bfc 00428293 addi x5, x5, 4 x5=1c001c38 x5:1c001c34 + 109103ns 982 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001c38 x6:1c002d2c + 109274ns 985 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001c38 PA:1c001c38 + 109330ns 986 1a000bfc 00428293 addi x5, x5, 4 x5=1c001c3c x5:1c001c38 + 109387ns 987 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001c3c x6:1c002d2c + 109558ns 990 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001c3c PA:1c001c3c + 109615ns 991 1a000bfc 00428293 addi x5, x5, 4 x5=1c001c40 x5:1c001c3c + 109671ns 992 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001c40 x6:1c002d2c + 109842ns 995 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001c40 PA:1c001c40 + 109899ns 996 1a000bfc 00428293 addi x5, x5, 4 x5=1c001c44 x5:1c001c40 + 109956ns 997 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001c44 x6:1c002d2c + 110126ns 1000 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001c44 PA:1c001c44 + 110183ns 1001 1a000bfc 00428293 addi x5, x5, 4 x5=1c001c48 x5:1c001c44 + 110240ns 1002 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001c48 x6:1c002d2c + 110410ns 1005 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001c48 PA:1c001c48 + 110467ns 1006 1a000bfc 00428293 addi x5, x5, 4 x5=1c001c4c x5:1c001c48 + 110524ns 1007 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001c4c x6:1c002d2c + 110694ns 1010 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001c4c PA:1c001c4c + 110751ns 1011 1a000bfc 00428293 addi x5, x5, 4 x5=1c001c50 x5:1c001c4c + 110808ns 1012 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001c50 x6:1c002d2c + 110979ns 1015 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001c50 PA:1c001c50 + 111035ns 1016 1a000bfc 00428293 addi x5, x5, 4 x5=1c001c54 x5:1c001c50 + 111092ns 1017 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001c54 x6:1c002d2c + 111263ns 1020 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001c54 PA:1c001c54 + 111320ns 1021 1a000bfc 00428293 addi x5, x5, 4 x5=1c001c58 x5:1c001c54 + 111376ns 1022 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001c58 x6:1c002d2c + 111547ns 1025 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001c58 PA:1c001c58 + 111604ns 1026 1a000bfc 00428293 addi x5, x5, 4 x5=1c001c5c x5:1c001c58 + 111661ns 1027 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001c5c x6:1c002d2c + 111831ns 1030 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001c5c PA:1c001c5c + 111888ns 1031 1a000bfc 00428293 addi x5, x5, 4 x5=1c001c60 x5:1c001c5c + 111945ns 1032 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001c60 x6:1c002d2c + 112115ns 1035 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001c60 PA:1c001c60 + 112172ns 1036 1a000bfc 00428293 addi x5, x5, 4 x5=1c001c64 x5:1c001c60 + 112229ns 1037 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001c64 x6:1c002d2c + 112399ns 1040 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001c64 PA:1c001c64 + 112456ns 1041 1a000bfc 00428293 addi x5, x5, 4 x5=1c001c68 x5:1c001c64 + 112513ns 1042 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001c68 x6:1c002d2c + 112684ns 1045 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001c68 PA:1c001c68 + 112740ns 1046 1a000bfc 00428293 addi x5, x5, 4 x5=1c001c6c x5:1c001c68 + 112797ns 1047 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001c6c x6:1c002d2c + 112968ns 1050 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001c6c PA:1c001c6c + 113025ns 1051 1a000bfc 00428293 addi x5, x5, 4 x5=1c001c70 x5:1c001c6c + 113081ns 1052 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001c70 x6:1c002d2c + 113252ns 1055 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001c70 PA:1c001c70 + 113309ns 1056 1a000bfc 00428293 addi x5, x5, 4 x5=1c001c74 x5:1c001c70 + 113366ns 1057 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001c74 x6:1c002d2c + 113536ns 1060 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001c74 PA:1c001c74 + 113593ns 1061 1a000bfc 00428293 addi x5, x5, 4 x5=1c001c78 x5:1c001c74 + 113650ns 1062 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001c78 x6:1c002d2c + 113820ns 1065 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001c78 PA:1c001c78 + 113877ns 1066 1a000bfc 00428293 addi x5, x5, 4 x5=1c001c7c x5:1c001c78 + 113934ns 1067 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001c7c x6:1c002d2c + 114104ns 1070 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001c7c PA:1c001c7c + 114161ns 1071 1a000bfc 00428293 addi x5, x5, 4 x5=1c001c80 x5:1c001c7c + 114218ns 1072 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001c80 x6:1c002d2c + 114389ns 1075 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001c80 PA:1c001c80 + 114445ns 1076 1a000bfc 00428293 addi x5, x5, 4 x5=1c001c84 x5:1c001c80 + 114502ns 1077 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001c84 x6:1c002d2c + 114673ns 1080 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001c84 PA:1c001c84 + 114730ns 1081 1a000bfc 00428293 addi x5, x5, 4 x5=1c001c88 x5:1c001c84 + 114786ns 1082 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001c88 x6:1c002d2c + 114957ns 1085 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001c88 PA:1c001c88 + 115014ns 1086 1a000bfc 00428293 addi x5, x5, 4 x5=1c001c8c x5:1c001c88 + 115071ns 1087 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001c8c x6:1c002d2c + 115241ns 1090 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001c8c PA:1c001c8c + 115298ns 1091 1a000bfc 00428293 addi x5, x5, 4 x5=1c001c90 x5:1c001c8c + 115355ns 1092 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001c90 x6:1c002d2c + 115525ns 1095 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001c90 PA:1c001c90 + 115582ns 1096 1a000bfc 00428293 addi x5, x5, 4 x5=1c001c94 x5:1c001c90 + 115639ns 1097 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001c94 x6:1c002d2c + 115809ns 1100 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001c94 PA:1c001c94 + 115866ns 1101 1a000bfc 00428293 addi x5, x5, 4 x5=1c001c98 x5:1c001c94 + 115923ns 1102 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001c98 x6:1c002d2c + 116093ns 1105 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001c98 PA:1c001c98 + 116150ns 1106 1a000bfc 00428293 addi x5, x5, 4 x5=1c001c9c x5:1c001c98 + 116207ns 1107 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001c9c x6:1c002d2c + 116378ns 1110 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001c9c PA:1c001c9c + 116434ns 1111 1a000bfc 00428293 addi x5, x5, 4 x5=1c001ca0 x5:1c001c9c + 116491ns 1112 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001ca0 x6:1c002d2c + 116662ns 1115 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001ca0 PA:1c001ca0 + 116719ns 1116 1a000bfc 00428293 addi x5, x5, 4 x5=1c001ca4 x5:1c001ca0 + 116775ns 1117 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001ca4 x6:1c002d2c + 116946ns 1120 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001ca4 PA:1c001ca4 + 117003ns 1121 1a000bfc 00428293 addi x5, x5, 4 x5=1c001ca8 x5:1c001ca4 + 117060ns 1122 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001ca8 x6:1c002d2c + 117230ns 1125 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001ca8 PA:1c001ca8 + 117287ns 1126 1a000bfc 00428293 addi x5, x5, 4 x5=1c001cac x5:1c001ca8 + 117344ns 1127 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001cac x6:1c002d2c + 117514ns 1130 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001cac PA:1c001cac + 117571ns 1131 1a000bfc 00428293 addi x5, x5, 4 x5=1c001cb0 x5:1c001cac + 117628ns 1132 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001cb0 x6:1c002d2c + 117798ns 1135 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001cb0 PA:1c001cb0 + 117855ns 1136 1a000bfc 00428293 addi x5, x5, 4 x5=1c001cb4 x5:1c001cb0 + 117912ns 1137 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001cb4 x6:1c002d2c + 118083ns 1140 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001cb4 PA:1c001cb4 + 118139ns 1141 1a000bfc 00428293 addi x5, x5, 4 x5=1c001cb8 x5:1c001cb4 + 118196ns 1142 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001cb8 x6:1c002d2c + 118367ns 1145 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001cb8 PA:1c001cb8 + 118424ns 1146 1a000bfc 00428293 addi x5, x5, 4 x5=1c001cbc x5:1c001cb8 + 118480ns 1147 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001cbc x6:1c002d2c + 118651ns 1150 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001cbc PA:1c001cbc + 118708ns 1151 1a000bfc 00428293 addi x5, x5, 4 x5=1c001cc0 x5:1c001cbc + 118765ns 1152 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001cc0 x6:1c002d2c + 118935ns 1155 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001cc0 PA:1c001cc0 + 118992ns 1156 1a000bfc 00428293 addi x5, x5, 4 x5=1c001cc4 x5:1c001cc0 + 119049ns 1157 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001cc4 x6:1c002d2c + 119219ns 1160 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001cc4 PA:1c001cc4 + 119276ns 1161 1a000bfc 00428293 addi x5, x5, 4 x5=1c001cc8 x5:1c001cc4 + 119333ns 1162 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001cc8 x6:1c002d2c + 119503ns 1165 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001cc8 PA:1c001cc8 + 119560ns 1166 1a000bfc 00428293 addi x5, x5, 4 x5=1c001ccc x5:1c001cc8 + 119617ns 1167 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001ccc x6:1c002d2c + 119788ns 1170 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001ccc PA:1c001ccc + 119844ns 1171 1a000bfc 00428293 addi x5, x5, 4 x5=1c001cd0 x5:1c001ccc + 119901ns 1172 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001cd0 x6:1c002d2c + 120072ns 1175 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001cd0 PA:1c001cd0 + 120129ns 1176 1a000bfc 00428293 addi x5, x5, 4 x5=1c001cd4 x5:1c001cd0 + 120185ns 1177 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001cd4 x6:1c002d2c + 120356ns 1180 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001cd4 PA:1c001cd4 + 120413ns 1181 1a000bfc 00428293 addi x5, x5, 4 x5=1c001cd8 x5:1c001cd4 + 120470ns 1182 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001cd8 x6:1c002d2c + 120640ns 1185 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001cd8 PA:1c001cd8 + 120697ns 1186 1a000bfc 00428293 addi x5, x5, 4 x5=1c001cdc x5:1c001cd8 + 120754ns 1187 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001cdc x6:1c002d2c + 120924ns 1190 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001cdc PA:1c001cdc + 120981ns 1191 1a000bfc 00428293 addi x5, x5, 4 x5=1c001ce0 x5:1c001cdc + 121038ns 1192 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001ce0 x6:1c002d2c + 121208ns 1195 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001ce0 PA:1c001ce0 + 121265ns 1196 1a000bfc 00428293 addi x5, x5, 4 x5=1c001ce4 x5:1c001ce0 + 121322ns 1197 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001ce4 x6:1c002d2c + 121493ns 1200 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001ce4 PA:1c001ce4 + 121549ns 1201 1a000bfc 00428293 addi x5, x5, 4 x5=1c001ce8 x5:1c001ce4 + 121606ns 1202 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001ce8 x6:1c002d2c + 121777ns 1205 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001ce8 PA:1c001ce8 + 121834ns 1206 1a000bfc 00428293 addi x5, x5, 4 x5=1c001cec x5:1c001ce8 + 121890ns 1207 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001cec x6:1c002d2c + 122061ns 1210 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001cec PA:1c001cec + 122118ns 1211 1a000bfc 00428293 addi x5, x5, 4 x5=1c001cf0 x5:1c001cec + 122175ns 1212 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001cf0 x6:1c002d2c + 122345ns 1215 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001cf0 PA:1c001cf0 + 122402ns 1216 1a000bfc 00428293 addi x5, x5, 4 x5=1c001cf4 x5:1c001cf0 + 122459ns 1217 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001cf4 x6:1c002d2c + 122629ns 1220 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001cf4 PA:1c001cf4 + 122686ns 1221 1a000bfc 00428293 addi x5, x5, 4 x5=1c001cf8 x5:1c001cf4 + 122743ns 1222 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001cf8 x6:1c002d2c + 122913ns 1225 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001cf8 PA:1c001cf8 + 122970ns 1226 1a000bfc 00428293 addi x5, x5, 4 x5=1c001cfc x5:1c001cf8 + 123027ns 1227 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001cfc x6:1c002d2c + 123197ns 1230 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001cfc PA:1c001cfc + 123254ns 1231 1a000bfc 00428293 addi x5, x5, 4 x5=1c001d00 x5:1c001cfc + 123311ns 1232 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001d00 x6:1c002d2c + 123482ns 1235 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001d00 PA:1c001d00 + 123538ns 1236 1a000bfc 00428293 addi x5, x5, 4 x5=1c001d04 x5:1c001d00 + 123595ns 1237 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001d04 x6:1c002d2c + 123766ns 1240 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001d04 PA:1c001d04 + 123823ns 1241 1a000bfc 00428293 addi x5, x5, 4 x5=1c001d08 x5:1c001d04 + 123879ns 1242 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001d08 x6:1c002d2c + 124050ns 1245 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001d08 PA:1c001d08 + 124107ns 1246 1a000bfc 00428293 addi x5, x5, 4 x5=1c001d0c x5:1c001d08 + 124164ns 1247 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001d0c x6:1c002d2c + 124334ns 1250 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001d0c PA:1c001d0c + 124391ns 1251 1a000bfc 00428293 addi x5, x5, 4 x5=1c001d10 x5:1c001d0c + 124448ns 1252 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001d10 x6:1c002d2c + 124618ns 1255 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001d10 PA:1c001d10 + 124675ns 1256 1a000bfc 00428293 addi x5, x5, 4 x5=1c001d14 x5:1c001d10 + 124732ns 1257 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001d14 x6:1c002d2c + 124902ns 1260 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001d14 PA:1c001d14 + 124959ns 1261 1a000bfc 00428293 addi x5, x5, 4 x5=1c001d18 x5:1c001d14 + 125016ns 1262 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001d18 x6:1c002d2c + 125187ns 1265 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001d18 PA:1c001d18 + 125243ns 1266 1a000bfc 00428293 addi x5, x5, 4 x5=1c001d1c x5:1c001d18 + 125300ns 1267 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001d1c x6:1c002d2c + 125471ns 1270 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001d1c PA:1c001d1c + 125528ns 1271 1a000bfc 00428293 addi x5, x5, 4 x5=1c001d20 x5:1c001d1c + 125584ns 1272 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001d20 x6:1c002d2c + 125755ns 1275 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001d20 PA:1c001d20 + 125812ns 1276 1a000bfc 00428293 addi x5, x5, 4 x5=1c001d24 x5:1c001d20 + 125869ns 1277 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001d24 x6:1c002d2c + 126039ns 1280 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001d24 PA:1c001d24 + 126096ns 1281 1a000bfc 00428293 addi x5, x5, 4 x5=1c001d28 x5:1c001d24 + 126153ns 1282 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001d28 x6:1c002d2c + 126323ns 1285 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001d28 PA:1c001d28 + 126380ns 1286 1a000bfc 00428293 addi x5, x5, 4 x5=1c001d2c x5:1c001d28 + 126437ns 1287 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001d2c x6:1c002d2c + 126607ns 1290 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001d2c PA:1c001d2c + 126664ns 1291 1a000bfc 00428293 addi x5, x5, 4 x5=1c001d30 x5:1c001d2c + 126721ns 1292 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001d30 x6:1c002d2c + 126892ns 1295 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001d30 PA:1c001d30 + 126948ns 1296 1a000bfc 00428293 addi x5, x5, 4 x5=1c001d34 x5:1c001d30 + 127005ns 1297 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001d34 x6:1c002d2c + 127176ns 1300 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001d34 PA:1c001d34 + 127233ns 1301 1a000bfc 00428293 addi x5, x5, 4 x5=1c001d38 x5:1c001d34 + 127289ns 1302 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001d38 x6:1c002d2c + 127460ns 1305 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001d38 PA:1c001d38 + 127517ns 1306 1a000bfc 00428293 addi x5, x5, 4 x5=1c001d3c x5:1c001d38 + 127574ns 1307 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001d3c x6:1c002d2c + 127744ns 1310 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001d3c PA:1c001d3c + 127801ns 1311 1a000bfc 00428293 addi x5, x5, 4 x5=1c001d40 x5:1c001d3c + 127858ns 1312 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001d40 x6:1c002d2c + 128028ns 1315 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001d40 PA:1c001d40 + 128085ns 1316 1a000bfc 00428293 addi x5, x5, 4 x5=1c001d44 x5:1c001d40 + 128142ns 1317 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001d44 x6:1c002d2c + 128312ns 1320 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001d44 PA:1c001d44 + 128369ns 1321 1a000bfc 00428293 addi x5, x5, 4 x5=1c001d48 x5:1c001d44 + 128426ns 1322 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001d48 x6:1c002d2c + 128597ns 1325 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001d48 PA:1c001d48 + 128653ns 1326 1a000bfc 00428293 addi x5, x5, 4 x5=1c001d4c x5:1c001d48 + 128710ns 1327 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001d4c x6:1c002d2c + 128881ns 1330 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001d4c PA:1c001d4c + 128938ns 1331 1a000bfc 00428293 addi x5, x5, 4 x5=1c001d50 x5:1c001d4c + 128994ns 1332 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001d50 x6:1c002d2c + 129165ns 1335 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001d50 PA:1c001d50 + 129222ns 1336 1a000bfc 00428293 addi x5, x5, 4 x5=1c001d54 x5:1c001d50 + 129279ns 1337 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001d54 x6:1c002d2c + 129449ns 1340 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001d54 PA:1c001d54 + 129506ns 1341 1a000bfc 00428293 addi x5, x5, 4 x5=1c001d58 x5:1c001d54 + 129563ns 1342 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001d58 x6:1c002d2c + 129733ns 1345 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001d58 PA:1c001d58 + 129790ns 1346 1a000bfc 00428293 addi x5, x5, 4 x5=1c001d5c x5:1c001d58 + 129847ns 1347 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001d5c x6:1c002d2c + 130017ns 1350 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001d5c PA:1c001d5c + 130074ns 1351 1a000bfc 00428293 addi x5, x5, 4 x5=1c001d60 x5:1c001d5c + 130131ns 1352 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001d60 x6:1c002d2c + 130301ns 1355 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001d60 PA:1c001d60 + 130358ns 1356 1a000bfc 00428293 addi x5, x5, 4 x5=1c001d64 x5:1c001d60 + 130415ns 1357 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001d64 x6:1c002d2c + 130586ns 1360 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001d64 PA:1c001d64 + 130642ns 1361 1a000bfc 00428293 addi x5, x5, 4 x5=1c001d68 x5:1c001d64 + 130699ns 1362 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001d68 x6:1c002d2c + 130870ns 1365 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001d68 PA:1c001d68 + 130927ns 1366 1a000bfc 00428293 addi x5, x5, 4 x5=1c001d6c x5:1c001d68 + 130983ns 1367 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001d6c x6:1c002d2c + 131154ns 1370 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001d6c PA:1c001d6c + 131211ns 1371 1a000bfc 00428293 addi x5, x5, 4 x5=1c001d70 x5:1c001d6c + 131268ns 1372 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001d70 x6:1c002d2c + 131438ns 1375 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001d70 PA:1c001d70 + 131495ns 1376 1a000bfc 00428293 addi x5, x5, 4 x5=1c001d74 x5:1c001d70 + 131552ns 1377 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001d74 x6:1c002d2c + 131722ns 1380 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001d74 PA:1c001d74 + 131779ns 1381 1a000bfc 00428293 addi x5, x5, 4 x5=1c001d78 x5:1c001d74 + 131836ns 1382 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001d78 x6:1c002d2c + 132006ns 1385 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001d78 PA:1c001d78 + 132063ns 1386 1a000bfc 00428293 addi x5, x5, 4 x5=1c001d7c x5:1c001d78 + 132120ns 1387 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001d7c x6:1c002d2c + 132291ns 1390 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001d7c PA:1c001d7c + 132347ns 1391 1a000bfc 00428293 addi x5, x5, 4 x5=1c001d80 x5:1c001d7c + 132404ns 1392 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001d80 x6:1c002d2c + 132575ns 1395 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001d80 PA:1c001d80 + 132632ns 1396 1a000bfc 00428293 addi x5, x5, 4 x5=1c001d84 x5:1c001d80 + 132688ns 1397 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001d84 x6:1c002d2c + 132859ns 1400 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001d84 PA:1c001d84 + 132916ns 1401 1a000bfc 00428293 addi x5, x5, 4 x5=1c001d88 x5:1c001d84 + 132973ns 1402 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001d88 x6:1c002d2c + 133143ns 1405 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001d88 PA:1c001d88 + 133200ns 1406 1a000bfc 00428293 addi x5, x5, 4 x5=1c001d8c x5:1c001d88 + 133257ns 1407 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001d8c x6:1c002d2c + 133427ns 1410 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001d8c PA:1c001d8c + 133484ns 1411 1a000bfc 00428293 addi x5, x5, 4 x5=1c001d90 x5:1c001d8c + 133541ns 1412 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001d90 x6:1c002d2c + 133711ns 1415 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001d90 PA:1c001d90 + 133768ns 1416 1a000bfc 00428293 addi x5, x5, 4 x5=1c001d94 x5:1c001d90 + 133825ns 1417 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001d94 x6:1c002d2c + 133996ns 1420 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001d94 PA:1c001d94 + 134052ns 1421 1a000bfc 00428293 addi x5, x5, 4 x5=1c001d98 x5:1c001d94 + 134109ns 1422 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001d98 x6:1c002d2c + 134280ns 1425 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001d98 PA:1c001d98 + 134337ns 1426 1a000bfc 00428293 addi x5, x5, 4 x5=1c001d9c x5:1c001d98 + 134393ns 1427 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001d9c x6:1c002d2c + 134564ns 1430 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001d9c PA:1c001d9c + 134621ns 1431 1a000bfc 00428293 addi x5, x5, 4 x5=1c001da0 x5:1c001d9c + 134678ns 1432 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001da0 x6:1c002d2c + 134848ns 1435 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001da0 PA:1c001da0 + 134905ns 1436 1a000bfc 00428293 addi x5, x5, 4 x5=1c001da4 x5:1c001da0 + 134962ns 1437 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001da4 x6:1c002d2c + 135132ns 1440 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001da4 PA:1c001da4 + 135189ns 1441 1a000bfc 00428293 addi x5, x5, 4 x5=1c001da8 x5:1c001da4 + 135246ns 1442 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001da8 x6:1c002d2c + 135416ns 1445 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001da8 PA:1c001da8 + 135473ns 1446 1a000bfc 00428293 addi x5, x5, 4 x5=1c001dac x5:1c001da8 + 135530ns 1447 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001dac x6:1c002d2c + 135701ns 1450 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001dac PA:1c001dac + 135757ns 1451 1a000bfc 00428293 addi x5, x5, 4 x5=1c001db0 x5:1c001dac + 135814ns 1452 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001db0 x6:1c002d2c + 135985ns 1455 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001db0 PA:1c001db0 + 136042ns 1456 1a000bfc 00428293 addi x5, x5, 4 x5=1c001db4 x5:1c001db0 + 136098ns 1457 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001db4 x6:1c002d2c + 136269ns 1460 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001db4 PA:1c001db4 + 136326ns 1461 1a000bfc 00428293 addi x5, x5, 4 x5=1c001db8 x5:1c001db4 + 136383ns 1462 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001db8 x6:1c002d2c + 136553ns 1465 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001db8 PA:1c001db8 + 136610ns 1466 1a000bfc 00428293 addi x5, x5, 4 x5=1c001dbc x5:1c001db8 + 136667ns 1467 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001dbc x6:1c002d2c + 136837ns 1470 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001dbc PA:1c001dbc + 136894ns 1471 1a000bfc 00428293 addi x5, x5, 4 x5=1c001dc0 x5:1c001dbc + 136951ns 1472 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001dc0 x6:1c002d2c + 137121ns 1475 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001dc0 PA:1c001dc0 + 137178ns 1476 1a000bfc 00428293 addi x5, x5, 4 x5=1c001dc4 x5:1c001dc0 + 137235ns 1477 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001dc4 x6:1c002d2c + 137405ns 1480 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001dc4 PA:1c001dc4 + 137462ns 1481 1a000bfc 00428293 addi x5, x5, 4 x5=1c001dc8 x5:1c001dc4 + 137519ns 1482 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001dc8 x6:1c002d2c + 137690ns 1485 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001dc8 PA:1c001dc8 + 137746ns 1486 1a000bfc 00428293 addi x5, x5, 4 x5=1c001dcc x5:1c001dc8 + 137803ns 1487 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001dcc x6:1c002d2c + 137974ns 1490 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001dcc PA:1c001dcc + 138031ns 1491 1a000bfc 00428293 addi x5, x5, 4 x5=1c001dd0 x5:1c001dcc + 138087ns 1492 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001dd0 x6:1c002d2c + 138258ns 1495 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001dd0 PA:1c001dd0 + 138315ns 1496 1a000bfc 00428293 addi x5, x5, 4 x5=1c001dd4 x5:1c001dd0 + 138372ns 1497 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001dd4 x6:1c002d2c + 138542ns 1500 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001dd4 PA:1c001dd4 + 138599ns 1501 1a000bfc 00428293 addi x5, x5, 4 x5=1c001dd8 x5:1c001dd4 + 138656ns 1502 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001dd8 x6:1c002d2c + 138826ns 1505 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001dd8 PA:1c001dd8 + 138883ns 1506 1a000bfc 00428293 addi x5, x5, 4 x5=1c001ddc x5:1c001dd8 + 138940ns 1507 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001ddc x6:1c002d2c + 139110ns 1510 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001ddc PA:1c001ddc + 139167ns 1511 1a000bfc 00428293 addi x5, x5, 4 x5=1c001de0 x5:1c001ddc + 139224ns 1512 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001de0 x6:1c002d2c + 139395ns 1515 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001de0 PA:1c001de0 + 139451ns 1516 1a000bfc 00428293 addi x5, x5, 4 x5=1c001de4 x5:1c001de0 + 139508ns 1517 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001de4 x6:1c002d2c + 139679ns 1520 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001de4 PA:1c001de4 + 139736ns 1521 1a000bfc 00428293 addi x5, x5, 4 x5=1c001de8 x5:1c001de4 + 139792ns 1522 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001de8 x6:1c002d2c + 139963ns 1525 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001de8 PA:1c001de8 + 140020ns 1526 1a000bfc 00428293 addi x5, x5, 4 x5=1c001dec x5:1c001de8 + 140077ns 1527 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001dec x6:1c002d2c + 140247ns 1530 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001dec PA:1c001dec + 140304ns 1531 1a000bfc 00428293 addi x5, x5, 4 x5=1c001df0 x5:1c001dec + 140361ns 1532 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001df0 x6:1c002d2c + 140531ns 1535 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001df0 PA:1c001df0 + 140588ns 1536 1a000bfc 00428293 addi x5, x5, 4 x5=1c001df4 x5:1c001df0 + 140645ns 1537 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001df4 x6:1c002d2c + 140815ns 1540 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001df4 PA:1c001df4 + 140872ns 1541 1a000bfc 00428293 addi x5, x5, 4 x5=1c001df8 x5:1c001df4 + 140929ns 1542 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001df8 x6:1c002d2c + 141100ns 1545 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001df8 PA:1c001df8 + 141156ns 1546 1a000bfc 00428293 addi x5, x5, 4 x5=1c001dfc x5:1c001df8 + 141213ns 1547 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001dfc x6:1c002d2c + 141384ns 1550 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001dfc PA:1c001dfc + 141441ns 1551 1a000bfc 00428293 addi x5, x5, 4 x5=1c001e00 x5:1c001dfc + 141497ns 1552 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001e00 x6:1c002d2c + 141668ns 1555 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001e00 PA:1c001e00 + 141725ns 1556 1a000bfc 00428293 addi x5, x5, 4 x5=1c001e04 x5:1c001e00 + 141782ns 1557 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001e04 x6:1c002d2c + 141952ns 1560 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001e04 PA:1c001e04 + 142009ns 1561 1a000bfc 00428293 addi x5, x5, 4 x5=1c001e08 x5:1c001e04 + 142066ns 1562 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001e08 x6:1c002d2c + 142236ns 1565 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001e08 PA:1c001e08 + 142293ns 1566 1a000bfc 00428293 addi x5, x5, 4 x5=1c001e0c x5:1c001e08 + 142350ns 1567 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001e0c x6:1c002d2c + 142520ns 1570 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001e0c PA:1c001e0c + 142577ns 1571 1a000bfc 00428293 addi x5, x5, 4 x5=1c001e10 x5:1c001e0c + 142634ns 1572 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001e10 x6:1c002d2c + 142805ns 1575 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001e10 PA:1c001e10 + 142861ns 1576 1a000bfc 00428293 addi x5, x5, 4 x5=1c001e14 x5:1c001e10 + 142918ns 1577 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001e14 x6:1c002d2c + 143089ns 1580 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001e14 PA:1c001e14 + 143146ns 1581 1a000bfc 00428293 addi x5, x5, 4 x5=1c001e18 x5:1c001e14 + 143202ns 1582 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001e18 x6:1c002d2c + 143373ns 1585 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001e18 PA:1c001e18 + 143430ns 1586 1a000bfc 00428293 addi x5, x5, 4 x5=1c001e1c x5:1c001e18 + 143487ns 1587 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001e1c x6:1c002d2c + 143657ns 1590 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001e1c PA:1c001e1c + 143714ns 1591 1a000bfc 00428293 addi x5, x5, 4 x5=1c001e20 x5:1c001e1c + 143771ns 1592 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001e20 x6:1c002d2c + 143941ns 1595 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001e20 PA:1c001e20 + 143998ns 1596 1a000bfc 00428293 addi x5, x5, 4 x5=1c001e24 x5:1c001e20 + 144055ns 1597 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001e24 x6:1c002d2c + 144225ns 1600 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001e24 PA:1c001e24 + 144282ns 1601 1a000bfc 00428293 addi x5, x5, 4 x5=1c001e28 x5:1c001e24 + 144339ns 1602 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001e28 x6:1c002d2c + 144509ns 1605 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001e28 PA:1c001e28 + 144566ns 1606 1a000bfc 00428293 addi x5, x5, 4 x5=1c001e2c x5:1c001e28 + 144623ns 1607 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001e2c x6:1c002d2c + 144794ns 1610 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001e2c PA:1c001e2c + 144850ns 1611 1a000bfc 00428293 addi x5, x5, 4 x5=1c001e30 x5:1c001e2c + 144907ns 1612 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001e30 x6:1c002d2c + 145078ns 1615 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001e30 PA:1c001e30 + 145135ns 1616 1a000bfc 00428293 addi x5, x5, 4 x5=1c001e34 x5:1c001e30 + 145191ns 1617 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001e34 x6:1c002d2c + 145362ns 1620 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001e34 PA:1c001e34 + 145419ns 1621 1a000bfc 00428293 addi x5, x5, 4 x5=1c001e38 x5:1c001e34 + 145476ns 1622 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001e38 x6:1c002d2c + 145646ns 1625 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001e38 PA:1c001e38 + 145703ns 1626 1a000bfc 00428293 addi x5, x5, 4 x5=1c001e3c x5:1c001e38 + 145760ns 1627 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001e3c x6:1c002d2c + 145930ns 1630 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001e3c PA:1c001e3c + 145987ns 1631 1a000bfc 00428293 addi x5, x5, 4 x5=1c001e40 x5:1c001e3c + 146044ns 1632 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001e40 x6:1c002d2c + 146214ns 1635 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001e40 PA:1c001e40 + 146271ns 1636 1a000bfc 00428293 addi x5, x5, 4 x5=1c001e44 x5:1c001e40 + 146328ns 1637 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001e44 x6:1c002d2c + 146499ns 1640 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001e44 PA:1c001e44 + 146555ns 1641 1a000bfc 00428293 addi x5, x5, 4 x5=1c001e48 x5:1c001e44 + 146612ns 1642 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001e48 x6:1c002d2c + 146783ns 1645 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001e48 PA:1c001e48 + 146840ns 1646 1a000bfc 00428293 addi x5, x5, 4 x5=1c001e4c x5:1c001e48 + 146896ns 1647 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001e4c x6:1c002d2c + 147067ns 1650 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001e4c PA:1c001e4c + 147124ns 1651 1a000bfc 00428293 addi x5, x5, 4 x5=1c001e50 x5:1c001e4c + 147181ns 1652 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001e50 x6:1c002d2c + 147351ns 1655 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001e50 PA:1c001e50 + 147408ns 1656 1a000bfc 00428293 addi x5, x5, 4 x5=1c001e54 x5:1c001e50 + 147465ns 1657 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001e54 x6:1c002d2c + 147635ns 1660 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001e54 PA:1c001e54 + 147692ns 1661 1a000bfc 00428293 addi x5, x5, 4 x5=1c001e58 x5:1c001e54 + 147749ns 1662 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001e58 x6:1c002d2c + 147919ns 1665 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001e58 PA:1c001e58 + 147976ns 1666 1a000bfc 00428293 addi x5, x5, 4 x5=1c001e5c x5:1c001e58 + 148033ns 1667 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001e5c x6:1c002d2c + 148204ns 1670 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001e5c PA:1c001e5c + 148260ns 1671 1a000bfc 00428293 addi x5, x5, 4 x5=1c001e60 x5:1c001e5c + 148317ns 1672 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001e60 x6:1c002d2c + 148488ns 1675 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001e60 PA:1c001e60 + 148545ns 1676 1a000bfc 00428293 addi x5, x5, 4 x5=1c001e64 x5:1c001e60 + 148601ns 1677 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001e64 x6:1c002d2c + 148772ns 1680 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001e64 PA:1c001e64 + 148829ns 1681 1a000bfc 00428293 addi x5, x5, 4 x5=1c001e68 x5:1c001e64 + 148886ns 1682 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001e68 x6:1c002d2c + 149056ns 1685 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001e68 PA:1c001e68 + 149113ns 1686 1a000bfc 00428293 addi x5, x5, 4 x5=1c001e6c x5:1c001e68 + 149170ns 1687 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001e6c x6:1c002d2c + 149340ns 1690 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001e6c PA:1c001e6c + 149397ns 1691 1a000bfc 00428293 addi x5, x5, 4 x5=1c001e70 x5:1c001e6c + 149454ns 1692 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001e70 x6:1c002d2c + 149624ns 1695 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001e70 PA:1c001e70 + 149681ns 1696 1a000bfc 00428293 addi x5, x5, 4 x5=1c001e74 x5:1c001e70 + 149738ns 1697 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001e74 x6:1c002d2c + 149909ns 1700 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001e74 PA:1c001e74 + 149965ns 1701 1a000bfc 00428293 addi x5, x5, 4 x5=1c001e78 x5:1c001e74 + 150022ns 1702 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001e78 x6:1c002d2c + 150193ns 1705 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001e78 PA:1c001e78 + 150250ns 1706 1a000bfc 00428293 addi x5, x5, 4 x5=1c001e7c x5:1c001e78 + 150306ns 1707 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001e7c x6:1c002d2c + 150477ns 1710 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001e7c PA:1c001e7c + 150534ns 1711 1a000bfc 00428293 addi x5, x5, 4 x5=1c001e80 x5:1c001e7c + 150591ns 1712 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001e80 x6:1c002d2c + 150761ns 1715 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001e80 PA:1c001e80 + 150818ns 1716 1a000bfc 00428293 addi x5, x5, 4 x5=1c001e84 x5:1c001e80 + 150875ns 1717 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001e84 x6:1c002d2c + 151045ns 1720 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001e84 PA:1c001e84 + 151102ns 1721 1a000bfc 00428293 addi x5, x5, 4 x5=1c001e88 x5:1c001e84 + 151159ns 1722 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001e88 x6:1c002d2c + 151329ns 1725 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001e88 PA:1c001e88 + 151386ns 1726 1a000bfc 00428293 addi x5, x5, 4 x5=1c001e8c x5:1c001e88 + 151443ns 1727 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001e8c x6:1c002d2c + 151613ns 1730 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001e8c PA:1c001e8c + 151670ns 1731 1a000bfc 00428293 addi x5, x5, 4 x5=1c001e90 x5:1c001e8c + 151727ns 1732 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001e90 x6:1c002d2c + 151898ns 1735 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001e90 PA:1c001e90 + 151954ns 1736 1a000bfc 00428293 addi x5, x5, 4 x5=1c001e94 x5:1c001e90 + 152011ns 1737 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001e94 x6:1c002d2c + 152182ns 1740 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001e94 PA:1c001e94 + 152239ns 1741 1a000bfc 00428293 addi x5, x5, 4 x5=1c001e98 x5:1c001e94 + 152295ns 1742 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001e98 x6:1c002d2c + 152466ns 1745 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001e98 PA:1c001e98 + 152523ns 1746 1a000bfc 00428293 addi x5, x5, 4 x5=1c001e9c x5:1c001e98 + 152580ns 1747 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001e9c x6:1c002d2c + 152750ns 1750 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001e9c PA:1c001e9c + 152807ns 1751 1a000bfc 00428293 addi x5, x5, 4 x5=1c001ea0 x5:1c001e9c + 152864ns 1752 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001ea0 x6:1c002d2c + 153034ns 1755 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001ea0 PA:1c001ea0 + 153091ns 1756 1a000bfc 00428293 addi x5, x5, 4 x5=1c001ea4 x5:1c001ea0 + 153148ns 1757 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001ea4 x6:1c002d2c + 153318ns 1760 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001ea4 PA:1c001ea4 + 153375ns 1761 1a000bfc 00428293 addi x5, x5, 4 x5=1c001ea8 x5:1c001ea4 + 153432ns 1762 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001ea8 x6:1c002d2c + 153603ns 1765 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001ea8 PA:1c001ea8 + 153659ns 1766 1a000bfc 00428293 addi x5, x5, 4 x5=1c001eac x5:1c001ea8 + 153716ns 1767 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001eac x6:1c002d2c + 153887ns 1770 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001eac PA:1c001eac + 153944ns 1771 1a000bfc 00428293 addi x5, x5, 4 x5=1c001eb0 x5:1c001eac + 154000ns 1772 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001eb0 x6:1c002d2c + 154171ns 1775 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001eb0 PA:1c001eb0 + 154228ns 1776 1a000bfc 00428293 addi x5, x5, 4 x5=1c001eb4 x5:1c001eb0 + 154285ns 1777 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001eb4 x6:1c002d2c + 154455ns 1780 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001eb4 PA:1c001eb4 + 154512ns 1781 1a000bfc 00428293 addi x5, x5, 4 x5=1c001eb8 x5:1c001eb4 + 154569ns 1782 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001eb8 x6:1c002d2c + 154739ns 1785 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001eb8 PA:1c001eb8 + 154796ns 1786 1a000bfc 00428293 addi x5, x5, 4 x5=1c001ebc x5:1c001eb8 + 154853ns 1787 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001ebc x6:1c002d2c + 155023ns 1790 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001ebc PA:1c001ebc + 155080ns 1791 1a000bfc 00428293 addi x5, x5, 4 x5=1c001ec0 x5:1c001ebc + 155137ns 1792 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001ec0 x6:1c002d2c + 155308ns 1795 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001ec0 PA:1c001ec0 + 155364ns 1796 1a000bfc 00428293 addi x5, x5, 4 x5=1c001ec4 x5:1c001ec0 + 155421ns 1797 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001ec4 x6:1c002d2c + 155592ns 1800 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001ec4 PA:1c001ec4 + 155649ns 1801 1a000bfc 00428293 addi x5, x5, 4 x5=1c001ec8 x5:1c001ec4 + 155705ns 1802 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001ec8 x6:1c002d2c + 155876ns 1805 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001ec8 PA:1c001ec8 + 155933ns 1806 1a000bfc 00428293 addi x5, x5, 4 x5=1c001ecc x5:1c001ec8 + 155990ns 1807 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001ecc x6:1c002d2c + 156160ns 1810 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001ecc PA:1c001ecc + 156217ns 1811 1a000bfc 00428293 addi x5, x5, 4 x5=1c001ed0 x5:1c001ecc + 156274ns 1812 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001ed0 x6:1c002d2c + 156444ns 1815 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001ed0 PA:1c001ed0 + 156501ns 1816 1a000bfc 00428293 addi x5, x5, 4 x5=1c001ed4 x5:1c001ed0 + 156558ns 1817 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001ed4 x6:1c002d2c + 156728ns 1820 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001ed4 PA:1c001ed4 + 156785ns 1821 1a000bfc 00428293 addi x5, x5, 4 x5=1c001ed8 x5:1c001ed4 + 156842ns 1822 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001ed8 x6:1c002d2c + 157013ns 1825 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001ed8 PA:1c001ed8 + 157069ns 1826 1a000bfc 00428293 addi x5, x5, 4 x5=1c001edc x5:1c001ed8 + 157126ns 1827 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001edc x6:1c002d2c + 157297ns 1830 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001edc PA:1c001edc + 157354ns 1831 1a000bfc 00428293 addi x5, x5, 4 x5=1c001ee0 x5:1c001edc + 157410ns 1832 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001ee0 x6:1c002d2c + 157581ns 1835 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001ee0 PA:1c001ee0 + 157638ns 1836 1a000bfc 00428293 addi x5, x5, 4 x5=1c001ee4 x5:1c001ee0 + 157695ns 1837 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001ee4 x6:1c002d2c + 157865ns 1840 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001ee4 PA:1c001ee4 + 157922ns 1841 1a000bfc 00428293 addi x5, x5, 4 x5=1c001ee8 x5:1c001ee4 + 157979ns 1842 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001ee8 x6:1c002d2c + 158149ns 1845 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001ee8 PA:1c001ee8 + 158206ns 1846 1a000bfc 00428293 addi x5, x5, 4 x5=1c001eec x5:1c001ee8 + 158263ns 1847 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001eec x6:1c002d2c + 158433ns 1850 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001eec PA:1c001eec + 158490ns 1851 1a000bfc 00428293 addi x5, x5, 4 x5=1c001ef0 x5:1c001eec + 158547ns 1852 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001ef0 x6:1c002d2c + 158717ns 1855 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001ef0 PA:1c001ef0 + 158774ns 1856 1a000bfc 00428293 addi x5, x5, 4 x5=1c001ef4 x5:1c001ef0 + 158831ns 1857 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001ef4 x6:1c002d2c + 159002ns 1860 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001ef4 PA:1c001ef4 + 159058ns 1861 1a000bfc 00428293 addi x5, x5, 4 x5=1c001ef8 x5:1c001ef4 + 159115ns 1862 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001ef8 x6:1c002d2c + 159286ns 1865 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001ef8 PA:1c001ef8 + 159343ns 1866 1a000bfc 00428293 addi x5, x5, 4 x5=1c001efc x5:1c001ef8 + 159399ns 1867 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001efc x6:1c002d2c + 159570ns 1870 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001efc PA:1c001efc + 159627ns 1871 1a000bfc 00428293 addi x5, x5, 4 x5=1c001f00 x5:1c001efc + 159684ns 1872 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001f00 x6:1c002d2c + 159854ns 1875 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001f00 PA:1c001f00 + 159911ns 1876 1a000bfc 00428293 addi x5, x5, 4 x5=1c001f04 x5:1c001f00 + 159968ns 1877 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001f04 x6:1c002d2c + 160138ns 1880 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001f04 PA:1c001f04 + 160195ns 1881 1a000bfc 00428293 addi x5, x5, 4 x5=1c001f08 x5:1c001f04 + 160252ns 1882 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001f08 x6:1c002d2c + 160422ns 1885 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001f08 PA:1c001f08 + 160479ns 1886 1a000bfc 00428293 addi x5, x5, 4 x5=1c001f0c x5:1c001f08 + 160536ns 1887 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001f0c x6:1c002d2c + 160707ns 1890 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001f0c PA:1c001f0c + 160763ns 1891 1a000bfc 00428293 addi x5, x5, 4 x5=1c001f10 x5:1c001f0c + 160820ns 1892 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001f10 x6:1c002d2c + 160991ns 1895 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001f10 PA:1c001f10 + 161048ns 1896 1a000bfc 00428293 addi x5, x5, 4 x5=1c001f14 x5:1c001f10 + 161104ns 1897 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001f14 x6:1c002d2c + 161275ns 1900 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001f14 PA:1c001f14 + 161332ns 1901 1a000bfc 00428293 addi x5, x5, 4 x5=1c001f18 x5:1c001f14 + 161389ns 1902 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001f18 x6:1c002d2c + 161559ns 1905 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001f18 PA:1c001f18 + 161616ns 1906 1a000bfc 00428293 addi x5, x5, 4 x5=1c001f1c x5:1c001f18 + 161673ns 1907 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001f1c x6:1c002d2c + 161843ns 1910 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001f1c PA:1c001f1c + 161900ns 1911 1a000bfc 00428293 addi x5, x5, 4 x5=1c001f20 x5:1c001f1c + 161957ns 1912 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001f20 x6:1c002d2c + 162127ns 1915 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001f20 PA:1c001f20 + 162184ns 1916 1a000bfc 00428293 addi x5, x5, 4 x5=1c001f24 x5:1c001f20 + 162241ns 1917 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001f24 x6:1c002d2c + 162412ns 1920 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001f24 PA:1c001f24 + 162468ns 1921 1a000bfc 00428293 addi x5, x5, 4 x5=1c001f28 x5:1c001f24 + 162525ns 1922 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001f28 x6:1c002d2c + 162696ns 1925 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001f28 PA:1c001f28 + 162753ns 1926 1a000bfc 00428293 addi x5, x5, 4 x5=1c001f2c x5:1c001f28 + 162809ns 1927 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001f2c x6:1c002d2c + 162980ns 1930 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001f2c PA:1c001f2c + 163037ns 1931 1a000bfc 00428293 addi x5, x5, 4 x5=1c001f30 x5:1c001f2c + 163094ns 1932 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001f30 x6:1c002d2c + 163264ns 1935 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001f30 PA:1c001f30 + 163321ns 1936 1a000bfc 00428293 addi x5, x5, 4 x5=1c001f34 x5:1c001f30 + 163378ns 1937 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001f34 x6:1c002d2c + 163548ns 1940 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001f34 PA:1c001f34 + 163605ns 1941 1a000bfc 00428293 addi x5, x5, 4 x5=1c001f38 x5:1c001f34 + 163662ns 1942 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001f38 x6:1c002d2c + 163832ns 1945 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001f38 PA:1c001f38 + 163889ns 1946 1a000bfc 00428293 addi x5, x5, 4 x5=1c001f3c x5:1c001f38 + 163946ns 1947 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001f3c x6:1c002d2c + 164117ns 1950 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001f3c PA:1c001f3c + 164173ns 1951 1a000bfc 00428293 addi x5, x5, 4 x5=1c001f40 x5:1c001f3c + 164230ns 1952 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001f40 x6:1c002d2c + 164401ns 1955 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001f40 PA:1c001f40 + 164458ns 1956 1a000bfc 00428293 addi x5, x5, 4 x5=1c001f44 x5:1c001f40 + 164514ns 1957 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001f44 x6:1c002d2c + 164685ns 1960 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001f44 PA:1c001f44 + 164742ns 1961 1a000bfc 00428293 addi x5, x5, 4 x5=1c001f48 x5:1c001f44 + 164799ns 1962 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001f48 x6:1c002d2c + 164969ns 1965 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001f48 PA:1c001f48 + 165026ns 1966 1a000bfc 00428293 addi x5, x5, 4 x5=1c001f4c x5:1c001f48 + 165083ns 1967 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001f4c x6:1c002d2c + 165253ns 1970 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001f4c PA:1c001f4c + 165310ns 1971 1a000bfc 00428293 addi x5, x5, 4 x5=1c001f50 x5:1c001f4c + 165367ns 1972 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001f50 x6:1c002d2c + 165537ns 1975 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001f50 PA:1c001f50 + 165594ns 1976 1a000bfc 00428293 addi x5, x5, 4 x5=1c001f54 x5:1c001f50 + 165651ns 1977 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001f54 x6:1c002d2c + 165821ns 1980 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001f54 PA:1c001f54 + 165878ns 1981 1a000bfc 00428293 addi x5, x5, 4 x5=1c001f58 x5:1c001f54 + 165935ns 1982 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001f58 x6:1c002d2c + 166106ns 1985 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001f58 PA:1c001f58 + 166162ns 1986 1a000bfc 00428293 addi x5, x5, 4 x5=1c001f5c x5:1c001f58 + 166219ns 1987 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001f5c x6:1c002d2c + 166390ns 1990 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001f5c PA:1c001f5c + 166447ns 1991 1a000bfc 00428293 addi x5, x5, 4 x5=1c001f60 x5:1c001f5c + 166503ns 1992 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001f60 x6:1c002d2c + 166674ns 1995 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001f60 PA:1c001f60 + 166731ns 1996 1a000bfc 00428293 addi x5, x5, 4 x5=1c001f64 x5:1c001f60 + 166788ns 1997 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001f64 x6:1c002d2c + 166958ns 2000 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001f64 PA:1c001f64 + 167015ns 2001 1a000bfc 00428293 addi x5, x5, 4 x5=1c001f68 x5:1c001f64 + 167072ns 2002 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001f68 x6:1c002d2c + 167242ns 2005 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001f68 PA:1c001f68 + 167299ns 2006 1a000bfc 00428293 addi x5, x5, 4 x5=1c001f6c x5:1c001f68 + 167356ns 2007 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001f6c x6:1c002d2c + 167526ns 2010 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001f6c PA:1c001f6c + 167583ns 2011 1a000bfc 00428293 addi x5, x5, 4 x5=1c001f70 x5:1c001f6c + 167640ns 2012 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001f70 x6:1c002d2c + 167811ns 2015 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001f70 PA:1c001f70 + 167867ns 2016 1a000bfc 00428293 addi x5, x5, 4 x5=1c001f74 x5:1c001f70 + 167924ns 2017 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001f74 x6:1c002d2c + 168095ns 2020 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001f74 PA:1c001f74 + 168152ns 2021 1a000bfc 00428293 addi x5, x5, 4 x5=1c001f78 x5:1c001f74 + 168208ns 2022 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001f78 x6:1c002d2c + 168379ns 2025 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001f78 PA:1c001f78 + 168436ns 2026 1a000bfc 00428293 addi x5, x5, 4 x5=1c001f7c x5:1c001f78 + 168493ns 2027 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001f7c x6:1c002d2c + 168663ns 2030 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001f7c PA:1c001f7c + 168720ns 2031 1a000bfc 00428293 addi x5, x5, 4 x5=1c001f80 x5:1c001f7c + 168777ns 2032 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001f80 x6:1c002d2c + 168947ns 2035 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001f80 PA:1c001f80 + 169004ns 2036 1a000bfc 00428293 addi x5, x5, 4 x5=1c001f84 x5:1c001f80 + 169061ns 2037 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001f84 x6:1c002d2c + 169231ns 2040 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001f84 PA:1c001f84 + 169288ns 2041 1a000bfc 00428293 addi x5, x5, 4 x5=1c001f88 x5:1c001f84 + 169345ns 2042 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001f88 x6:1c002d2c + 169516ns 2045 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001f88 PA:1c001f88 + 169572ns 2046 1a000bfc 00428293 addi x5, x5, 4 x5=1c001f8c x5:1c001f88 + 169629ns 2047 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001f8c x6:1c002d2c + 169800ns 2050 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001f8c PA:1c001f8c + 169857ns 2051 1a000bfc 00428293 addi x5, x5, 4 x5=1c001f90 x5:1c001f8c + 169913ns 2052 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001f90 x6:1c002d2c + 170084ns 2055 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001f90 PA:1c001f90 + 170141ns 2056 1a000bfc 00428293 addi x5, x5, 4 x5=1c001f94 x5:1c001f90 + 170198ns 2057 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001f94 x6:1c002d2c + 170368ns 2060 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001f94 PA:1c001f94 + 170425ns 2061 1a000bfc 00428293 addi x5, x5, 4 x5=1c001f98 x5:1c001f94 + 170482ns 2062 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001f98 x6:1c002d2c + 170652ns 2065 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001f98 PA:1c001f98 + 170709ns 2066 1a000bfc 00428293 addi x5, x5, 4 x5=1c001f9c x5:1c001f98 + 170766ns 2067 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001f9c x6:1c002d2c + 170936ns 2070 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001f9c PA:1c001f9c + 170993ns 2071 1a000bfc 00428293 addi x5, x5, 4 x5=1c001fa0 x5:1c001f9c + 171050ns 2072 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001fa0 x6:1c002d2c + 171221ns 2075 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001fa0 PA:1c001fa0 + 171277ns 2076 1a000bfc 00428293 addi x5, x5, 4 x5=1c001fa4 x5:1c001fa0 + 171334ns 2077 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001fa4 x6:1c002d2c + 171505ns 2080 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001fa4 PA:1c001fa4 + 171562ns 2081 1a000bfc 00428293 addi x5, x5, 4 x5=1c001fa8 x5:1c001fa4 + 171618ns 2082 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001fa8 x6:1c002d2c + 171789ns 2085 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001fa8 PA:1c001fa8 + 171846ns 2086 1a000bfc 00428293 addi x5, x5, 4 x5=1c001fac x5:1c001fa8 + 171903ns 2087 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001fac x6:1c002d2c + 172073ns 2090 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001fac PA:1c001fac + 172130ns 2091 1a000bfc 00428293 addi x5, x5, 4 x5=1c001fb0 x5:1c001fac + 172187ns 2092 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001fb0 x6:1c002d2c + 172357ns 2095 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001fb0 PA:1c001fb0 + 172414ns 2096 1a000bfc 00428293 addi x5, x5, 4 x5=1c001fb4 x5:1c001fb0 + 172471ns 2097 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001fb4 x6:1c002d2c + 172641ns 2100 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001fb4 PA:1c001fb4 + 172698ns 2101 1a000bfc 00428293 addi x5, x5, 4 x5=1c001fb8 x5:1c001fb4 + 172755ns 2102 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001fb8 x6:1c002d2c + 172925ns 2105 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001fb8 PA:1c001fb8 + 172982ns 2106 1a000bfc 00428293 addi x5, x5, 4 x5=1c001fbc x5:1c001fb8 + 173039ns 2107 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001fbc x6:1c002d2c + 173210ns 2110 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001fbc PA:1c001fbc + 173266ns 2111 1a000bfc 00428293 addi x5, x5, 4 x5=1c001fc0 x5:1c001fbc + 173323ns 2112 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001fc0 x6:1c002d2c + 173494ns 2115 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001fc0 PA:1c001fc0 + 173551ns 2116 1a000bfc 00428293 addi x5, x5, 4 x5=1c001fc4 x5:1c001fc0 + 173607ns 2117 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001fc4 x6:1c002d2c + 173778ns 2120 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001fc4 PA:1c001fc4 + 173835ns 2121 1a000bfc 00428293 addi x5, x5, 4 x5=1c001fc8 x5:1c001fc4 + 173892ns 2122 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001fc8 x6:1c002d2c + 174062ns 2125 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001fc8 PA:1c001fc8 + 174119ns 2126 1a000bfc 00428293 addi x5, x5, 4 x5=1c001fcc x5:1c001fc8 + 174176ns 2127 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001fcc x6:1c002d2c + 174346ns 2130 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001fcc PA:1c001fcc + 174403ns 2131 1a000bfc 00428293 addi x5, x5, 4 x5=1c001fd0 x5:1c001fcc + 174460ns 2132 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001fd0 x6:1c002d2c + 174630ns 2135 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001fd0 PA:1c001fd0 + 174687ns 2136 1a000bfc 00428293 addi x5, x5, 4 x5=1c001fd4 x5:1c001fd0 + 174744ns 2137 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001fd4 x6:1c002d2c + 174915ns 2140 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001fd4 PA:1c001fd4 + 174971ns 2141 1a000bfc 00428293 addi x5, x5, 4 x5=1c001fd8 x5:1c001fd4 + 175028ns 2142 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001fd8 x6:1c002d2c + 175199ns 2145 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001fd8 PA:1c001fd8 + 175256ns 2146 1a000bfc 00428293 addi x5, x5, 4 x5=1c001fdc x5:1c001fd8 + 175312ns 2147 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001fdc x6:1c002d2c + 175483ns 2150 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001fdc PA:1c001fdc + 175540ns 2151 1a000bfc 00428293 addi x5, x5, 4 x5=1c001fe0 x5:1c001fdc + 175597ns 2152 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001fe0 x6:1c002d2c + 175767ns 2155 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001fe0 PA:1c001fe0 + 175824ns 2156 1a000bfc 00428293 addi x5, x5, 4 x5=1c001fe4 x5:1c001fe0 + 175881ns 2157 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001fe4 x6:1c002d2c + 176051ns 2160 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001fe4 PA:1c001fe4 + 176108ns 2161 1a000bfc 00428293 addi x5, x5, 4 x5=1c001fe8 x5:1c001fe4 + 176165ns 2162 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001fe8 x6:1c002d2c + 176335ns 2165 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001fe8 PA:1c001fe8 + 176392ns 2166 1a000bfc 00428293 addi x5, x5, 4 x5=1c001fec x5:1c001fe8 + 176449ns 2167 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001fec x6:1c002d2c + 176620ns 2170 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001fec PA:1c001fec + 176676ns 2171 1a000bfc 00428293 addi x5, x5, 4 x5=1c001ff0 x5:1c001fec + 176733ns 2172 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001ff0 x6:1c002d2c + 176904ns 2175 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001ff0 PA:1c001ff0 + 176961ns 2176 1a000bfc 00428293 addi x5, x5, 4 x5=1c001ff4 x5:1c001ff0 + 177017ns 2177 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001ff4 x6:1c002d2c + 177188ns 2180 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001ff4 PA:1c001ff4 + 177245ns 2181 1a000bfc 00428293 addi x5, x5, 4 x5=1c001ff8 x5:1c001ff4 + 177302ns 2182 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001ff8 x6:1c002d2c + 177472ns 2185 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001ff8 PA:1c001ff8 + 177529ns 2186 1a000bfc 00428293 addi x5, x5, 4 x5=1c001ffc x5:1c001ff8 + 177586ns 2187 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c001ffc x6:1c002d2c + 177756ns 2190 1a000bf8 0002a023 sw x0, 0(x5) x5:1c001ffc PA:1c001ffc + 177813ns 2191 1a000bfc 00428293 addi x5, x5, 4 x5=1c002000 x5:1c001ffc + 177870ns 2192 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c002000 x6:1c002d2c + 178040ns 2195 1a000bf8 0002a023 sw x0, 0(x5) x5:1c002000 PA:1c002000 + 178097ns 2196 1a000bfc 00428293 addi x5, x5, 4 x5=1c002004 x5:1c002000 + 178154ns 2197 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c002004 x6:1c002d2c + 178325ns 2200 1a000bf8 0002a023 sw x0, 0(x5) x5:1c002004 PA:1c002004 + 178381ns 2201 1a000bfc 00428293 addi x5, x5, 4 x5=1c002008 x5:1c002004 + 178438ns 2202 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c002008 x6:1c002d2c + 178609ns 2205 1a000bf8 0002a023 sw x0, 0(x5) x5:1c002008 PA:1c002008 + 178666ns 2206 1a000bfc 00428293 addi x5, x5, 4 x5=1c00200c x5:1c002008 + 178722ns 2207 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c00200c x6:1c002d2c + 178893ns 2210 1a000bf8 0002a023 sw x0, 0(x5) x5:1c00200c PA:1c00200c + 178950ns 2211 1a000bfc 00428293 addi x5, x5, 4 x5=1c002010 x5:1c00200c + 179007ns 2212 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c002010 x6:1c002d2c + 179177ns 2215 1a000bf8 0002a023 sw x0, 0(x5) x5:1c002010 PA:1c002010 + 179234ns 2216 1a000bfc 00428293 addi x5, x5, 4 x5=1c002014 x5:1c002010 + 179291ns 2217 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c002014 x6:1c002d2c + 179461ns 2220 1a000bf8 0002a023 sw x0, 0(x5) x5:1c002014 PA:1c002014 + 179518ns 2221 1a000bfc 00428293 addi x5, x5, 4 x5=1c002018 x5:1c002014 + 179575ns 2222 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c002018 x6:1c002d2c + 179745ns 2225 1a000bf8 0002a023 sw x0, 0(x5) x5:1c002018 PA:1c002018 + 179802ns 2226 1a000bfc 00428293 addi x5, x5, 4 x5=1c00201c x5:1c002018 + 179859ns 2227 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c00201c x6:1c002d2c + 180029ns 2230 1a000bf8 0002a023 sw x0, 0(x5) x5:1c00201c PA:1c00201c + 180086ns 2231 1a000bfc 00428293 addi x5, x5, 4 x5=1c002020 x5:1c00201c + 180143ns 2232 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c002020 x6:1c002d2c + 180314ns 2235 1a000bf8 0002a023 sw x0, 0(x5) x5:1c002020 PA:1c002020 + 180370ns 2236 1a000bfc 00428293 addi x5, x5, 4 x5=1c002024 x5:1c002020 + 180427ns 2237 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c002024 x6:1c002d2c + 180598ns 2240 1a000bf8 0002a023 sw x0, 0(x5) x5:1c002024 PA:1c002024 + 180655ns 2241 1a000bfc 00428293 addi x5, x5, 4 x5=1c002028 x5:1c002024 + 180711ns 2242 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c002028 x6:1c002d2c + 180882ns 2245 1a000bf8 0002a023 sw x0, 0(x5) x5:1c002028 PA:1c002028 + 180939ns 2246 1a000bfc 00428293 addi x5, x5, 4 x5=1c00202c x5:1c002028 + 180996ns 2247 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c00202c x6:1c002d2c + 181166ns 2250 1a000bf8 0002a023 sw x0, 0(x5) x5:1c00202c PA:1c00202c + 181223ns 2251 1a000bfc 00428293 addi x5, x5, 4 x5=1c002030 x5:1c00202c + 181280ns 2252 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c002030 x6:1c002d2c + 181450ns 2255 1a000bf8 0002a023 sw x0, 0(x5) x5:1c002030 PA:1c002030 + 181507ns 2256 1a000bfc 00428293 addi x5, x5, 4 x5=1c002034 x5:1c002030 + 181564ns 2257 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c002034 x6:1c002d2c + 181734ns 2260 1a000bf8 0002a023 sw x0, 0(x5) x5:1c002034 PA:1c002034 + 181791ns 2261 1a000bfc 00428293 addi x5, x5, 4 x5=1c002038 x5:1c002034 + 181848ns 2262 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c002038 x6:1c002d2c + 182019ns 2265 1a000bf8 0002a023 sw x0, 0(x5) x5:1c002038 PA:1c002038 + 182075ns 2266 1a000bfc 00428293 addi x5, x5, 4 x5=1c00203c x5:1c002038 + 182132ns 2267 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c00203c x6:1c002d2c + 182303ns 2270 1a000bf8 0002a023 sw x0, 0(x5) x5:1c00203c PA:1c00203c + 182360ns 2271 1a000bfc 00428293 addi x5, x5, 4 x5=1c002040 x5:1c00203c + 182416ns 2272 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c002040 x6:1c002d2c + 182587ns 2275 1a000bf8 0002a023 sw x0, 0(x5) x5:1c002040 PA:1c002040 + 182644ns 2276 1a000bfc 00428293 addi x5, x5, 4 x5=1c002044 x5:1c002040 + 182701ns 2277 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c002044 x6:1c002d2c + 182871ns 2280 1a000bf8 0002a023 sw x0, 0(x5) x5:1c002044 PA:1c002044 + 182928ns 2281 1a000bfc 00428293 addi x5, x5, 4 x5=1c002048 x5:1c002044 + 182985ns 2282 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c002048 x6:1c002d2c + 183155ns 2285 1a000bf8 0002a023 sw x0, 0(x5) x5:1c002048 PA:1c002048 + 183212ns 2286 1a000bfc 00428293 addi x5, x5, 4 x5=1c00204c x5:1c002048 + 183269ns 2287 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c00204c x6:1c002d2c + 183439ns 2290 1a000bf8 0002a023 sw x0, 0(x5) x5:1c00204c PA:1c00204c + 183496ns 2291 1a000bfc 00428293 addi x5, x5, 4 x5=1c002050 x5:1c00204c + 183553ns 2292 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c002050 x6:1c002d2c + 183724ns 2295 1a000bf8 0002a023 sw x0, 0(x5) x5:1c002050 PA:1c002050 + 183780ns 2296 1a000bfc 00428293 addi x5, x5, 4 x5=1c002054 x5:1c002050 + 183837ns 2297 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c002054 x6:1c002d2c + 184008ns 2300 1a000bf8 0002a023 sw x0, 0(x5) x5:1c002054 PA:1c002054 + 184065ns 2301 1a000bfc 00428293 addi x5, x5, 4 x5=1c002058 x5:1c002054 + 184121ns 2302 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c002058 x6:1c002d2c + 184292ns 2305 1a000bf8 0002a023 sw x0, 0(x5) x5:1c002058 PA:1c002058 + 184349ns 2306 1a000bfc 00428293 addi x5, x5, 4 x5=1c00205c x5:1c002058 + 184406ns 2307 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c00205c x6:1c002d2c + 184576ns 2310 1a000bf8 0002a023 sw x0, 0(x5) x5:1c00205c PA:1c00205c + 184633ns 2311 1a000bfc 00428293 addi x5, x5, 4 x5=1c002060 x5:1c00205c + 184690ns 2312 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c002060 x6:1c002d2c + 184860ns 2315 1a000bf8 0002a023 sw x0, 0(x5) x5:1c002060 PA:1c002060 + 184917ns 2316 1a000bfc 00428293 addi x5, x5, 4 x5=1c002064 x5:1c002060 + 184974ns 2317 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c002064 x6:1c002d2c + 185144ns 2320 1a000bf8 0002a023 sw x0, 0(x5) x5:1c002064 PA:1c002064 + 185201ns 2321 1a000bfc 00428293 addi x5, x5, 4 x5=1c002068 x5:1c002064 + 185258ns 2322 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c002068 x6:1c002d2c + 185429ns 2325 1a000bf8 0002a023 sw x0, 0(x5) x5:1c002068 PA:1c002068 + 185485ns 2326 1a000bfc 00428293 addi x5, x5, 4 x5=1c00206c x5:1c002068 + 185542ns 2327 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c00206c x6:1c002d2c + 185713ns 2330 1a000bf8 0002a023 sw x0, 0(x5) x5:1c00206c PA:1c00206c + 185770ns 2331 1a000bfc 00428293 addi x5, x5, 4 x5=1c002070 x5:1c00206c + 185826ns 2332 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c002070 x6:1c002d2c + 185997ns 2335 1a000bf8 0002a023 sw x0, 0(x5) x5:1c002070 PA:1c002070 + 186054ns 2336 1a000bfc 00428293 addi x5, x5, 4 x5=1c002074 x5:1c002070 + 186111ns 2337 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c002074 x6:1c002d2c + 186281ns 2340 1a000bf8 0002a023 sw x0, 0(x5) x5:1c002074 PA:1c002074 + 186338ns 2341 1a000bfc 00428293 addi x5, x5, 4 x5=1c002078 x5:1c002074 + 186395ns 2342 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c002078 x6:1c002d2c + 186565ns 2345 1a000bf8 0002a023 sw x0, 0(x5) x5:1c002078 PA:1c002078 + 186622ns 2346 1a000bfc 00428293 addi x5, x5, 4 x5=1c00207c x5:1c002078 + 186679ns 2347 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c00207c x6:1c002d2c + 186849ns 2350 1a000bf8 0002a023 sw x0, 0(x5) x5:1c00207c PA:1c00207c + 186906ns 2351 1a000bfc 00428293 addi x5, x5, 4 x5=1c002080 x5:1c00207c + 186963ns 2352 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c002080 x6:1c002d2c + 187133ns 2355 1a000bf8 0002a023 sw x0, 0(x5) x5:1c002080 PA:1c002080 + 187190ns 2356 1a000bfc 00428293 addi x5, x5, 4 x5=1c002084 x5:1c002080 + 187247ns 2357 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c002084 x6:1c002d2c + 187418ns 2360 1a000bf8 0002a023 sw x0, 0(x5) x5:1c002084 PA:1c002084 + 187474ns 2361 1a000bfc 00428293 addi x5, x5, 4 x5=1c002088 x5:1c002084 + 187531ns 2362 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c002088 x6:1c002d2c + 187702ns 2365 1a000bf8 0002a023 sw x0, 0(x5) x5:1c002088 PA:1c002088 + 187759ns 2366 1a000bfc 00428293 addi x5, x5, 4 x5=1c00208c x5:1c002088 + 187815ns 2367 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c00208c x6:1c002d2c + 187986ns 2370 1a000bf8 0002a023 sw x0, 0(x5) x5:1c00208c PA:1c00208c + 188043ns 2371 1a000bfc 00428293 addi x5, x5, 4 x5=1c002090 x5:1c00208c + 188100ns 2372 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c002090 x6:1c002d2c + 188270ns 2375 1a000bf8 0002a023 sw x0, 0(x5) x5:1c002090 PA:1c002090 + 188327ns 2376 1a000bfc 00428293 addi x5, x5, 4 x5=1c002094 x5:1c002090 + 188384ns 2377 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c002094 x6:1c002d2c + 188554ns 2380 1a000bf8 0002a023 sw x0, 0(x5) x5:1c002094 PA:1c002094 + 188611ns 2381 1a000bfc 00428293 addi x5, x5, 4 x5=1c002098 x5:1c002094 + 188668ns 2382 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c002098 x6:1c002d2c + 188838ns 2385 1a000bf8 0002a023 sw x0, 0(x5) x5:1c002098 PA:1c002098 + 188895ns 2386 1a000bfc 00428293 addi x5, x5, 4 x5=1c00209c x5:1c002098 + 188952ns 2387 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c00209c x6:1c002d2c + 189123ns 2390 1a000bf8 0002a023 sw x0, 0(x5) x5:1c00209c PA:1c00209c + 189179ns 2391 1a000bfc 00428293 addi x5, x5, 4 x5=1c0020a0 x5:1c00209c + 189236ns 2392 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c0020a0 x6:1c002d2c + 189407ns 2395 1a000bf8 0002a023 sw x0, 0(x5) x5:1c0020a0 PA:1c0020a0 + 189464ns 2396 1a000bfc 00428293 addi x5, x5, 4 x5=1c0020a4 x5:1c0020a0 + 189520ns 2397 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c0020a4 x6:1c002d2c + 189691ns 2400 1a000bf8 0002a023 sw x0, 0(x5) x5:1c0020a4 PA:1c0020a4 + 189748ns 2401 1a000bfc 00428293 addi x5, x5, 4 x5=1c0020a8 x5:1c0020a4 + 189805ns 2402 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c0020a8 x6:1c002d2c + 189975ns 2405 1a000bf8 0002a023 sw x0, 0(x5) x5:1c0020a8 PA:1c0020a8 + 190032ns 2406 1a000bfc 00428293 addi x5, x5, 4 x5=1c0020ac x5:1c0020a8 + 190089ns 2407 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c0020ac x6:1c002d2c + 190259ns 2410 1a000bf8 0002a023 sw x0, 0(x5) x5:1c0020ac PA:1c0020ac + 190316ns 2411 1a000bfc 00428293 addi x5, x5, 4 x5=1c0020b0 x5:1c0020ac + 190373ns 2412 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c0020b0 x6:1c002d2c + 190543ns 2415 1a000bf8 0002a023 sw x0, 0(x5) x5:1c0020b0 PA:1c0020b0 + 190600ns 2416 1a000bfc 00428293 addi x5, x5, 4 x5=1c0020b4 x5:1c0020b0 + 190657ns 2417 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c0020b4 x6:1c002d2c + 190828ns 2420 1a000bf8 0002a023 sw x0, 0(x5) x5:1c0020b4 PA:1c0020b4 + 190884ns 2421 1a000bfc 00428293 addi x5, x5, 4 x5=1c0020b8 x5:1c0020b4 + 190941ns 2422 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c0020b8 x6:1c002d2c + 191112ns 2425 1a000bf8 0002a023 sw x0, 0(x5) x5:1c0020b8 PA:1c0020b8 + 191169ns 2426 1a000bfc 00428293 addi x5, x5, 4 x5=1c0020bc x5:1c0020b8 + 191225ns 2427 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c0020bc x6:1c002d2c + 191396ns 2430 1a000bf8 0002a023 sw x0, 0(x5) x5:1c0020bc PA:1c0020bc + 191453ns 2431 1a000bfc 00428293 addi x5, x5, 4 x5=1c0020c0 x5:1c0020bc + 191510ns 2432 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c0020c0 x6:1c002d2c + 191680ns 2435 1a000bf8 0002a023 sw x0, 0(x5) x5:1c0020c0 PA:1c0020c0 + 191737ns 2436 1a000bfc 00428293 addi x5, x5, 4 x5=1c0020c4 x5:1c0020c0 + 191794ns 2437 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c0020c4 x6:1c002d2c + 191964ns 2440 1a000bf8 0002a023 sw x0, 0(x5) x5:1c0020c4 PA:1c0020c4 + 192021ns 2441 1a000bfc 00428293 addi x5, x5, 4 x5=1c0020c8 x5:1c0020c4 + 192078ns 2442 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c0020c8 x6:1c002d2c + 192248ns 2445 1a000bf8 0002a023 sw x0, 0(x5) x5:1c0020c8 PA:1c0020c8 + 192305ns 2446 1a000bfc 00428293 addi x5, x5, 4 x5=1c0020cc x5:1c0020c8 + 192362ns 2447 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c0020cc x6:1c002d2c + 192533ns 2450 1a000bf8 0002a023 sw x0, 0(x5) x5:1c0020cc PA:1c0020cc + 192589ns 2451 1a000bfc 00428293 addi x5, x5, 4 x5=1c0020d0 x5:1c0020cc + 192646ns 2452 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c0020d0 x6:1c002d2c + 192817ns 2455 1a000bf8 0002a023 sw x0, 0(x5) x5:1c0020d0 PA:1c0020d0 + 192874ns 2456 1a000bfc 00428293 addi x5, x5, 4 x5=1c0020d4 x5:1c0020d0 + 192930ns 2457 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c0020d4 x6:1c002d2c + 193101ns 2460 1a000bf8 0002a023 sw x0, 0(x5) x5:1c0020d4 PA:1c0020d4 + 193158ns 2461 1a000bfc 00428293 addi x5, x5, 4 x5=1c0020d8 x5:1c0020d4 + 193215ns 2462 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c0020d8 x6:1c002d2c + 193385ns 2465 1a000bf8 0002a023 sw x0, 0(x5) x5:1c0020d8 PA:1c0020d8 + 193442ns 2466 1a000bfc 00428293 addi x5, x5, 4 x5=1c0020dc x5:1c0020d8 + 193499ns 2467 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c0020dc x6:1c002d2c + 193669ns 2470 1a000bf8 0002a023 sw x0, 0(x5) x5:1c0020dc PA:1c0020dc + 193726ns 2471 1a000bfc 00428293 addi x5, x5, 4 x5=1c0020e0 x5:1c0020dc + 193783ns 2472 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c0020e0 x6:1c002d2c + 193953ns 2475 1a000bf8 0002a023 sw x0, 0(x5) x5:1c0020e0 PA:1c0020e0 + 194010ns 2476 1a000bfc 00428293 addi x5, x5, 4 x5=1c0020e4 x5:1c0020e0 + 194067ns 2477 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c0020e4 x6:1c002d2c + 194237ns 2480 1a000bf8 0002a023 sw x0, 0(x5) x5:1c0020e4 PA:1c0020e4 + 194294ns 2481 1a000bfc 00428293 addi x5, x5, 4 x5=1c0020e8 x5:1c0020e4 + 194351ns 2482 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c0020e8 x6:1c002d2c + 194522ns 2485 1a000bf8 0002a023 sw x0, 0(x5) x5:1c0020e8 PA:1c0020e8 + 194578ns 2486 1a000bfc 00428293 addi x5, x5, 4 x5=1c0020ec x5:1c0020e8 + 194635ns 2487 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c0020ec x6:1c002d2c + 194806ns 2490 1a000bf8 0002a023 sw x0, 0(x5) x5:1c0020ec PA:1c0020ec + 194863ns 2491 1a000bfc 00428293 addi x5, x5, 4 x5=1c0020f0 x5:1c0020ec + 194919ns 2492 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c0020f0 x6:1c002d2c + 195090ns 2495 1a000bf8 0002a023 sw x0, 0(x5) x5:1c0020f0 PA:1c0020f0 + 195147ns 2496 1a000bfc 00428293 addi x5, x5, 4 x5=1c0020f4 x5:1c0020f0 + 195204ns 2497 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c0020f4 x6:1c002d2c + 195374ns 2500 1a000bf8 0002a023 sw x0, 0(x5) x5:1c0020f4 PA:1c0020f4 + 195431ns 2501 1a000bfc 00428293 addi x5, x5, 4 x5=1c0020f8 x5:1c0020f4 + 195488ns 2502 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c0020f8 x6:1c002d2c + 195658ns 2505 1a000bf8 0002a023 sw x0, 0(x5) x5:1c0020f8 PA:1c0020f8 + 195715ns 2506 1a000bfc 00428293 addi x5, x5, 4 x5=1c0020fc x5:1c0020f8 + 195772ns 2507 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c0020fc x6:1c002d2c + 195942ns 2510 1a000bf8 0002a023 sw x0, 0(x5) x5:1c0020fc PA:1c0020fc + 195999ns 2511 1a000bfc 00428293 addi x5, x5, 4 x5=1c002100 x5:1c0020fc + 196056ns 2512 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c002100 x6:1c002d2c + 196227ns 2515 1a000bf8 0002a023 sw x0, 0(x5) x5:1c002100 PA:1c002100 + 196283ns 2516 1a000bfc 00428293 addi x5, x5, 4 x5=1c002104 x5:1c002100 + 196340ns 2517 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c002104 x6:1c002d2c + 196511ns 2520 1a000bf8 0002a023 sw x0, 0(x5) x5:1c002104 PA:1c002104 + 196568ns 2521 1a000bfc 00428293 addi x5, x5, 4 x5=1c002108 x5:1c002104 + 196624ns 2522 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c002108 x6:1c002d2c + 196795ns 2525 1a000bf8 0002a023 sw x0, 0(x5) x5:1c002108 PA:1c002108 + 196852ns 2526 1a000bfc 00428293 addi x5, x5, 4 x5=1c00210c x5:1c002108 + 196909ns 2527 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c00210c x6:1c002d2c + 197079ns 2530 1a000bf8 0002a023 sw x0, 0(x5) x5:1c00210c PA:1c00210c + 197136ns 2531 1a000bfc 00428293 addi x5, x5, 4 x5=1c002110 x5:1c00210c + 197193ns 2532 1a000bfe fe62ede3 bltu x5, x6, -6 x5:1c002110 x6:1c002d2c + 197761ns 2542 1a110800 00c0006f jal x0, 12 + 198614ns 2557 1a110810 7b241073 csrrw x0, x8, 0x7b2 x8:xxxxxxxx + 198898ns 2562 1a110814 7b351073 csrrw x0, x10, 0x7b3 x10:xxxxxxxx + 199182ns 2567 1a110818 00000517 auipc x10, 0x0 x10=1a110818 + 199466ns 2572 1a11081c 00c55513 srli x10, x10, 0xc x10=0001a110 x10:1a110818 + 199750ns 2577 1a110820 00c51513 slli x10, x10, 0xc x10=1a110000 x10:0001a110 + 200034ns 2582 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 200319ns 2587 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 200716ns 2594 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 200887ns 2597 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 201341ns 2605 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 201512ns 2608 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 201796ns 2613 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 202080ns 2618 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 202364ns 2623 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 202819ns 2631 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 202990ns 2634 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 203274ns 2639 1a110850 fd5ff06f jal x0, -44 + 203558ns 2644 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 203842ns 2649 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 204240ns 2656 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 204410ns 2659 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 204865ns 2667 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 205036ns 2670 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 205320ns 2675 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 205604ns 2680 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 205888ns 2685 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 206343ns 2693 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 206513ns 2696 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 206797ns 2701 1a110850 fd5ff06f jal x0, -44 + 207082ns 2706 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 207366ns 2711 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 207763ns 2718 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 207934ns 2721 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 208389ns 2729 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 208559ns 2732 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 208843ns 2737 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 209127ns 2742 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 209412ns 2747 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 209866ns 2755 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 210037ns 2758 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 210321ns 2763 1a110850 fd5ff06f jal x0, -44 + 210605ns 2768 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 210889ns 2773 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 211287ns 2780 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 211458ns 2783 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 211912ns 2791 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 212083ns 2794 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 212367ns 2799 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 212651ns 2804 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 212935ns 2809 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 213390ns 2817 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 213560ns 2820 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 213845ns 2825 1a110850 fd5ff06f jal x0, -44 + 214129ns 2830 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 214413ns 2835 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 214811ns 2842 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 214981ns 2845 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 215436ns 2853 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 215606ns 2856 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 215890ns 2861 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 216175ns 2866 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 216459ns 2871 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 216913ns 2879 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 217084ns 2882 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 217368ns 2887 1a110850 fd5ff06f jal x0, -44 + 217652ns 2892 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 217936ns 2897 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 218334ns 2904 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 218505ns 2907 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 218959ns 2915 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 219130ns 2918 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 219414ns 2923 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 219698ns 2928 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 219982ns 2933 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 220437ns 2941 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 220608ns 2944 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 220892ns 2949 1a110850 fd5ff06f jal x0, -44 + 221176ns 2954 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 221460ns 2959 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 221858ns 2966 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 222028ns 2969 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 222483ns 2977 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 222653ns 2980 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 222938ns 2985 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 223222ns 2990 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 223506ns 2995 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 223961ns 3003 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 224131ns 3006 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 224415ns 3011 1a110850 fd5ff06f jal x0, -44 + 224699ns 3016 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 224984ns 3021 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 225381ns 3028 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 225552ns 3031 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 226007ns 3039 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 226177ns 3042 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 226461ns 3047 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 226745ns 3052 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 227030ns 3057 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 227484ns 3065 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 227655ns 3068 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 227939ns 3073 1a110850 fd5ff06f jal x0, -44 + 228223ns 3078 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 228507ns 3083 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 228905ns 3090 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 229075ns 3093 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 229530ns 3101 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 229701ns 3104 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 229985ns 3109 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 230269ns 3114 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 230553ns 3119 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 231008ns 3127 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 231178ns 3130 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 231462ns 3135 1a110850 fd5ff06f jal x0, -44 + 231747ns 3140 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 232031ns 3145 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 232429ns 3152 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 232599ns 3155 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 233054ns 3163 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 233224ns 3166 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 233508ns 3171 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 233793ns 3176 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 234077ns 3181 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 234531ns 3189 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 234702ns 3192 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 234986ns 3197 1a110850 fd5ff06f jal x0, -44 + 235270ns 3202 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 235554ns 3207 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 235952ns 3214 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 236123ns 3217 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 236577ns 3225 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 236748ns 3228 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 237032ns 3233 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 237316ns 3238 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 237600ns 3243 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 238055ns 3251 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 238225ns 3254 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 238510ns 3259 1a110850 fd5ff06f jal x0, -44 + 238794ns 3264 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 239078ns 3269 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 239476ns 3276 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 239646ns 3279 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 240101ns 3287 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 240271ns 3290 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 240556ns 3295 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 240840ns 3300 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 241124ns 3305 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 241579ns 3313 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 241749ns 3316 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 242033ns 3321 1a110850 fd5ff06f jal x0, -44 + 242317ns 3326 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 242602ns 3331 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 242999ns 3338 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 243170ns 3341 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 243624ns 3349 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 243795ns 3352 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 244079ns 3357 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 244363ns 3362 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 244647ns 3367 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 245102ns 3375 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 245273ns 3378 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 245557ns 3383 1a110850 fd5ff06f jal x0, -44 + 245841ns 3388 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 246125ns 3393 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 246523ns 3400 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 246693ns 3403 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 247148ns 3411 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 247319ns 3414 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 247603ns 3419 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 247887ns 3424 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 248171ns 3429 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 248626ns 3437 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 248796ns 3440 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 249080ns 3445 1a110850 fd5ff06f jal x0, -44 + 249365ns 3450 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 249649ns 3455 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 250047ns 3462 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 250217ns 3465 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 250672ns 3473 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 250842ns 3476 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 251126ns 3481 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 251410ns 3486 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 251695ns 3491 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 252149ns 3499 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 252320ns 3502 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 252604ns 3507 1a110850 fd5ff06f jal x0, -44 + 252888ns 3512 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 253172ns 3517 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 253570ns 3524 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 253741ns 3527 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 254195ns 3535 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 254366ns 3538 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 254650ns 3543 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 254934ns 3548 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 255218ns 3553 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 255673ns 3561 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 255843ns 3564 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 256128ns 3569 1a110850 fd5ff06f jal x0, -44 + 256412ns 3574 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 256696ns 3579 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 257094ns 3586 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 257264ns 3589 1a110830 40044403 lbu x8, 1024(x8) x8=00000001 x8:1a1103e0 PA:1a1107e0 + 257719ns 3597 1a110834 00147413 andi x8, x8, 1 x8=00000001 x8:00000001 + 257889ns 3600 1a110838 02041c63 bne x8, x0, 56 x8:00000001 + 258458ns 3610 1a110870 10052223 sw x0, 260(x10) x10:1a110000 PA:1a110104 + 258855ns 3617 1a110874 7b302573 csrrs x10, x0, 0x7b3 x10=xxxxxxxx + 259083ns 3621 1a110878 7b202473 csrrs x8, x0, 0x7b2 x8=xxxxxxxx + 259310ns 3625 1a11087c a85ff06f jal x0, -1404 + 259594ns 3630 1a110300 0380006f jal x0, 56 + 259878ns 3635 1a110338 7b351073 csrrw x0, x10, 0x7b3 x10:xxxxxxxx + 260163ns 3640 1a11033c 00000517 auipc x10, 0x0 x10=1a11033c + 260447ns 3645 1a110340 00c55513 srli x10, x10, 0xc x10=0001a110 x10:1a11033c + 260731ns 3650 1a110344 00c51513 slli x10, x10, 0xc x10=1a110000 x10:0001a110 + 261015ns 3655 1a110348 7b241073 csrrw x0, x8, 0x7b2 x8:xxxxxxxx + 261299ns 3660 1a11034c 38052403 lw x8, 896(x10) x8=1c000880 x10:1a110000 PA:1a110380 + 261754ns 3668 1a110350 7b141073 csrrw x0, x8, 0x7b1 x8:1c000880 + 261981ns 3672 1a110354 7b202473 csrrs x8, x0, 0x7b2 x8=xxxxxxxx + 262209ns 3676 1a110358 7b302573 csrrs x10, x0, 0x7b3 x10=xxxxxxxx + 262493ns 3681 1a11035c 00100073 ebreak + 263061ns 3691 1a110800 00c0006f jal x0, 12 + 263914ns 3706 1a110810 7b241073 csrrw x0, x8, 0x7b2 x8:xxxxxxxx + 264198ns 3711 1a110814 7b351073 csrrw x0, x10, 0x7b3 x10:xxxxxxxx + 264482ns 3716 1a110818 00000517 auipc x10, 0x0 x10=1a110818 + 264766ns 3721 1a11081c 00c55513 srli x10, x10, 0xc x10=0001a110 x10:1a110818 + 265050ns 3726 1a110820 00c51513 slli x10, x10, 0xc x10=1a110000 x10:0001a110 + 265334ns 3731 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 265618ns 3736 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 266016ns 3743 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 266187ns 3746 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 266641ns 3754 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 266812ns 3757 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 267096ns 3762 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 267380ns 3767 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 267664ns 3772 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 268119ns 3780 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 268290ns 3783 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 268574ns 3788 1a110850 fd5ff06f jal x0, -44 + 268858ns 3793 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 269142ns 3798 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 269540ns 3805 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 269710ns 3808 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 270165ns 3816 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 270336ns 3819 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 270620ns 3824 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 270904ns 3829 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 271188ns 3834 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 271643ns 3842 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 271813ns 3845 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 272097ns 3850 1a110850 fd5ff06f jal x0, -44 + 272381ns 3855 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 272666ns 3860 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 273063ns 3867 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 273234ns 3870 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 273689ns 3878 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 273859ns 3881 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 274143ns 3886 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 274427ns 3891 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 274712ns 3896 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 275166ns 3904 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 275337ns 3907 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 275621ns 3912 1a110850 fd5ff06f jal x0, -44 + 275905ns 3917 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 276189ns 3922 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 276587ns 3929 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 276758ns 3932 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 277212ns 3940 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 277383ns 3943 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 277667ns 3948 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 277951ns 3953 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 278235ns 3958 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 278690ns 3966 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 278860ns 3969 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 279144ns 3974 1a110850 fd5ff06f jal x0, -44 + 279429ns 3979 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 279713ns 3984 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 280111ns 3991 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 280281ns 3994 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 280736ns 4002 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 280906ns 4005 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 281190ns 4010 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 281475ns 4015 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 281759ns 4020 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 282213ns 4028 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 282384ns 4031 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 282668ns 4036 1a110850 fd5ff06f jal x0, -44 + 282952ns 4041 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 283236ns 4046 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 283634ns 4053 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 283805ns 4056 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 284259ns 4064 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 284430ns 4067 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 284714ns 4072 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 284998ns 4077 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 285282ns 4082 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 285737ns 4090 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 285907ns 4093 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 286192ns 4098 1a110850 fd5ff06f jal x0, -44 + 286476ns 4103 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 286760ns 4108 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 287158ns 4115 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 287328ns 4118 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 287783ns 4126 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 287953ns 4129 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 288238ns 4134 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 288522ns 4139 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 288806ns 4144 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 289261ns 4152 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 289431ns 4155 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 289715ns 4160 1a110850 fd5ff06f jal x0, -44 + 289999ns 4165 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 290284ns 4170 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 290681ns 4177 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 290852ns 4180 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 291307ns 4188 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 291477ns 4191 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 291761ns 4196 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 292045ns 4201 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 292330ns 4206 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 292784ns 4214 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 292955ns 4217 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 293239ns 4222 1a110850 fd5ff06f jal x0, -44 + 293523ns 4227 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 293807ns 4232 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 294205ns 4239 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 294375ns 4242 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 294830ns 4250 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 295001ns 4253 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 295285ns 4258 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 295569ns 4263 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 295853ns 4268 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 296308ns 4276 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 296478ns 4279 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 296762ns 4284 1a110850 fd5ff06f jal x0, -44 + 297047ns 4289 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 297331ns 4294 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 297729ns 4301 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 297899ns 4304 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 298354ns 4312 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 298524ns 4315 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 298808ns 4320 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 299093ns 4325 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 299377ns 4330 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 299831ns 4338 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 300002ns 4341 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 300286ns 4346 1a110850 fd5ff06f jal x0, -44 + 300570ns 4351 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 300854ns 4356 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 301252ns 4363 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 301423ns 4366 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 301877ns 4374 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 302048ns 4377 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 302332ns 4382 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 302616ns 4387 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 302900ns 4392 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 303355ns 4400 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 303525ns 4403 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 303810ns 4408 1a110850 fd5ff06f jal x0, -44 + 304094ns 4413 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 304378ns 4418 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 304776ns 4425 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 304946ns 4428 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 305401ns 4436 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 305571ns 4439 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 305856ns 4444 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 306140ns 4449 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 306424ns 4454 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 306879ns 4462 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 307049ns 4465 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 307333ns 4470 1a110850 fd5ff06f jal x0, -44 + 307617ns 4475 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 307901ns 4480 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 308299ns 4487 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 308470ns 4490 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 308924ns 4498 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 309095ns 4501 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 309379ns 4506 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 309663ns 4511 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 309947ns 4516 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 310402ns 4524 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 310573ns 4527 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 310857ns 4532 1a110850 fd5ff06f jal x0, -44 + 311141ns 4537 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 311425ns 4542 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 311823ns 4549 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 311993ns 4552 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 312448ns 4560 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 312619ns 4563 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 312903ns 4568 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 313187ns 4573 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 313471ns 4578 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 313926ns 4586 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 314096ns 4589 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 314380ns 4594 1a110850 fd5ff06f jal x0, -44 + 314664ns 4599 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 314949ns 4604 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 315346ns 4611 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 315517ns 4614 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 315972ns 4622 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 316142ns 4625 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 316426ns 4630 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 316710ns 4635 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 316995ns 4640 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 317449ns 4648 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 317620ns 4651 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 317904ns 4656 1a110850 fd5ff06f jal x0, -44 + 318188ns 4661 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 318472ns 4666 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 318870ns 4673 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 319041ns 4676 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 319495ns 4684 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 319666ns 4687 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 319950ns 4692 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 320234ns 4697 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 320518ns 4702 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 320973ns 4710 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 321143ns 4713 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 321427ns 4718 1a110850 fd5ff06f jal x0, -44 + 321712ns 4723 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 321996ns 4728 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 322394ns 4735 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 322564ns 4738 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 323019ns 4746 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 323189ns 4749 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 323473ns 4754 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 323758ns 4759 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 324042ns 4764 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 324496ns 4772 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 324667ns 4775 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 324951ns 4780 1a110850 fd5ff06f jal x0, -44 + 325235ns 4785 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 325519ns 4790 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 325917ns 4797 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 326088ns 4800 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 326542ns 4808 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 326713ns 4811 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 326997ns 4816 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 327281ns 4821 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 327565ns 4826 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 328020ns 4834 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 328191ns 4837 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 328475ns 4842 1a110850 fd5ff06f jal x0, -44 + 328759ns 4847 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 329043ns 4852 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 329441ns 4859 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 329611ns 4862 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 330066ns 4870 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 330236ns 4873 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 330521ns 4878 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 330805ns 4883 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 331089ns 4888 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 331544ns 4896 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 331714ns 4899 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 331998ns 4904 1a110850 fd5ff06f jal x0, -44 + 332282ns 4909 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 332567ns 4914 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 332964ns 4921 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 333135ns 4924 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 333590ns 4932 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 333760ns 4935 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 334044ns 4940 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 334328ns 4945 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 334613ns 4950 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 335067ns 4958 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 335238ns 4961 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 335522ns 4966 1a110850 fd5ff06f jal x0, -44 + 335806ns 4971 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 336090ns 4976 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 336488ns 4983 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 336658ns 4986 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 337113ns 4994 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 337284ns 4997 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 337568ns 5002 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 337852ns 5007 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 338136ns 5012 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 338591ns 5020 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 338761ns 5023 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 339045ns 5028 1a110850 fd5ff06f jal x0, -44 + 339330ns 5033 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 339614ns 5038 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 340012ns 5045 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 340182ns 5048 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 340637ns 5056 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 340807ns 5059 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 341091ns 5064 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 341376ns 5069 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 341660ns 5074 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 342114ns 5082 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 342285ns 5085 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 342569ns 5090 1a110850 fd5ff06f jal x0, -44 + 342853ns 5095 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 343137ns 5100 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 343535ns 5107 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 343706ns 5110 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 344160ns 5118 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 344331ns 5121 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 344615ns 5126 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 344899ns 5131 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 345183ns 5136 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 345638ns 5144 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 345808ns 5147 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 346093ns 5152 1a110850 fd5ff06f jal x0, -44 + 346377ns 5157 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 346661ns 5162 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 347059ns 5169 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 347229ns 5172 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 347684ns 5180 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 347854ns 5183 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 348139ns 5188 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 348423ns 5193 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 348707ns 5198 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 349162ns 5206 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 349332ns 5209 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 349616ns 5214 1a110850 fd5ff06f jal x0, -44 + 349900ns 5219 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 350184ns 5224 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 350582ns 5231 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 350753ns 5234 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 351207ns 5242 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 351378ns 5245 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 351662ns 5250 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 351946ns 5255 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 352230ns 5260 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 352685ns 5268 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 352856ns 5271 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 353140ns 5276 1a110850 fd5ff06f jal x0, -44 + 353424ns 5281 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 353708ns 5286 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 354106ns 5293 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 354276ns 5296 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 354731ns 5304 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 354902ns 5307 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 355186ns 5312 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 355470ns 5317 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 355754ns 5322 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 356209ns 5330 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 356379ns 5333 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 356663ns 5338 1a110850 fd5ff06f jal x0, -44 + 356947ns 5343 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 357232ns 5348 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 357629ns 5355 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 357800ns 5358 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 358255ns 5366 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 358425ns 5369 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 358709ns 5374 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 358993ns 5379 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 359278ns 5384 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 359732ns 5392 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 359903ns 5395 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 360187ns 5400 1a110850 fd5ff06f jal x0, -44 + 360471ns 5405 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 360755ns 5410 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 361153ns 5417 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 361324ns 5420 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 361778ns 5428 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 361949ns 5431 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 362233ns 5436 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 362517ns 5441 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 362801ns 5446 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 363256ns 5454 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 363426ns 5457 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 363711ns 5462 1a110850 fd5ff06f jal x0, -44 + 363995ns 5467 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 364279ns 5472 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 364677ns 5479 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 364847ns 5482 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 365302ns 5490 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 365472ns 5493 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 365756ns 5498 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 366041ns 5503 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 366325ns 5508 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 366779ns 5516 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 366950ns 5519 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 367234ns 5524 1a110850 fd5ff06f jal x0, -44 + 367518ns 5529 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 367802ns 5534 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 368200ns 5541 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 368371ns 5544 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 368825ns 5552 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 368996ns 5555 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 369280ns 5560 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 369564ns 5565 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 369848ns 5570 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 370303ns 5578 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 370474ns 5581 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 370758ns 5586 1a110850 fd5ff06f jal x0, -44 + 371042ns 5591 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 371326ns 5596 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 371724ns 5603 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 371894ns 5606 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 372349ns 5614 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 372519ns 5617 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 372804ns 5622 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 373088ns 5627 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 373372ns 5632 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 373827ns 5640 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 373997ns 5643 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 374281ns 5648 1a110850 fd5ff06f jal x0, -44 + 374565ns 5653 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 374850ns 5658 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 375247ns 5665 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 375418ns 5668 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 375873ns 5676 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 376043ns 5679 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 376327ns 5684 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 376611ns 5689 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 376896ns 5694 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 377350ns 5702 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 377521ns 5705 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 377805ns 5710 1a110850 fd5ff06f jal x0, -44 + 378089ns 5715 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 378373ns 5720 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 378771ns 5727 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 378941ns 5730 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 379396ns 5738 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 379567ns 5741 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 379851ns 5746 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 380135ns 5751 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 380419ns 5756 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 380874ns 5764 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 381044ns 5767 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 381328ns 5772 1a110850 fd5ff06f jal x0, -44 + 381613ns 5777 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 381897ns 5782 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 382295ns 5789 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 382465ns 5792 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 382920ns 5800 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 383090ns 5803 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 383374ns 5808 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 383659ns 5813 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 383943ns 5818 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 384397ns 5826 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 384568ns 5829 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 384852ns 5834 1a110850 fd5ff06f jal x0, -44 + 385136ns 5839 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 385420ns 5844 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 385818ns 5851 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 385989ns 5854 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 386443ns 5862 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 386614ns 5865 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 386898ns 5870 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 387182ns 5875 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 387466ns 5880 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 387921ns 5888 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 388091ns 5891 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 388376ns 5896 1a110850 fd5ff06f jal x0, -44 + 388660ns 5901 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 388944ns 5906 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 389342ns 5913 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 389512ns 5916 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 389967ns 5924 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 390137ns 5927 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 390422ns 5932 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 390706ns 5937 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 390990ns 5942 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 391445ns 5950 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 391615ns 5953 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 391899ns 5958 1a110850 fd5ff06f jal x0, -44 + 392183ns 5963 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 392467ns 5968 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 392865ns 5975 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 393036ns 5978 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 393490ns 5986 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 393661ns 5989 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 393945ns 5994 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 394229ns 5999 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 394513ns 6004 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 394968ns 6012 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 395139ns 6015 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 395423ns 6020 1a110850 fd5ff06f jal x0, -44 + 395707ns 6025 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 395991ns 6030 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 396389ns 6037 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 396559ns 6040 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 397014ns 6048 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 397185ns 6051 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 397469ns 6056 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 397753ns 6061 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 398037ns 6066 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 398492ns 6074 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 398662ns 6077 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 398946ns 6082 1a110850 fd5ff06f jal x0, -44 + 399231ns 6087 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 399515ns 6092 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 399912ns 6099 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 400083ns 6102 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 400538ns 6110 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 400708ns 6113 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 400992ns 6118 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 401276ns 6123 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 401561ns 6128 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 402015ns 6136 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 402186ns 6139 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 402470ns 6144 1a110850 fd5ff06f jal x0, -44 + 402754ns 6149 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 403038ns 6154 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 403436ns 6161 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 403607ns 6164 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 404061ns 6172 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 404232ns 6175 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 404516ns 6180 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 404800ns 6185 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 405084ns 6190 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 405539ns 6198 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 405709ns 6201 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 405994ns 6206 1a110850 fd5ff06f jal x0, -44 + 406278ns 6211 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 406562ns 6216 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 406960ns 6223 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 407130ns 6226 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 407585ns 6234 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 407755ns 6237 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 408039ns 6242 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 408324ns 6247 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 408608ns 6252 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 409062ns 6260 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 409233ns 6263 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 409517ns 6268 1a110850 fd5ff06f jal x0, -44 + 409801ns 6273 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 410085ns 6278 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 410483ns 6285 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 410654ns 6288 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 411108ns 6296 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 411279ns 6299 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 411563ns 6304 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 411847ns 6309 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 412131ns 6314 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 412586ns 6322 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 412757ns 6325 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 413041ns 6330 1a110850 fd5ff06f jal x0, -44 + 413325ns 6335 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 413609ns 6340 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 414007ns 6347 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 414177ns 6350 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 414632ns 6358 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 414802ns 6361 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 415087ns 6366 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 415371ns 6371 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 415655ns 6376 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 416110ns 6384 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 416280ns 6387 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 416564ns 6392 1a110850 fd5ff06f jal x0, -44 + 416848ns 6397 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 417133ns 6402 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 417530ns 6409 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 417701ns 6412 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 418156ns 6420 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 418326ns 6423 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 418610ns 6428 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 418894ns 6433 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 419179ns 6438 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 419633ns 6446 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 419804ns 6449 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 420088ns 6454 1a110850 fd5ff06f jal x0, -44 + 420372ns 6459 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 420656ns 6464 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 421054ns 6471 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 421224ns 6474 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 421679ns 6482 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 421850ns 6485 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 422134ns 6490 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 422418ns 6495 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 422702ns 6500 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 423157ns 6508 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 423327ns 6511 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 423611ns 6516 1a110850 fd5ff06f jal x0, -44 + 423896ns 6521 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 424180ns 6526 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 424578ns 6533 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 424748ns 6536 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 425203ns 6544 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 425373ns 6547 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 425657ns 6552 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 425942ns 6557 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 426226ns 6562 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 426680ns 6570 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 426851ns 6573 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 427135ns 6578 1a110850 fd5ff06f jal x0, -44 + 427419ns 6583 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 427703ns 6588 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 428101ns 6595 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 428272ns 6598 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 428726ns 6606 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 428897ns 6609 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 429181ns 6614 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 429465ns 6619 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 429749ns 6624 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 430204ns 6632 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 430374ns 6635 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 430659ns 6640 1a110850 fd5ff06f jal x0, -44 + 430943ns 6645 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 431227ns 6650 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 431625ns 6657 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 431795ns 6660 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 432250ns 6668 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 432420ns 6671 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 432705ns 6676 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 432989ns 6681 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 433273ns 6686 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 433728ns 6694 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 433898ns 6697 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 434182ns 6702 1a110850 fd5ff06f jal x0, -44 + 434466ns 6707 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 434751ns 6712 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 435148ns 6719 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 435319ns 6722 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 435773ns 6730 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 435944ns 6733 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 436228ns 6738 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 436512ns 6743 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 436796ns 6748 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 437251ns 6756 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 437422ns 6759 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 437706ns 6764 1a110850 fd5ff06f jal x0, -44 + 437990ns 6769 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 438274ns 6774 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 438672ns 6781 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 438842ns 6784 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 439297ns 6792 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 439468ns 6795 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 439752ns 6800 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 440036ns 6805 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 440320ns 6810 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 440775ns 6818 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 440945ns 6821 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 441229ns 6826 1a110850 fd5ff06f jal x0, -44 + 441514ns 6831 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 441798ns 6836 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 442195ns 6843 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 442366ns 6846 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 442821ns 6854 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 442991ns 6857 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 443275ns 6862 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 443559ns 6867 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 443844ns 6872 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 444298ns 6880 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 444469ns 6883 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 444753ns 6888 1a110850 fd5ff06f jal x0, -44 + 445037ns 6893 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 445321ns 6898 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 445719ns 6905 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 445890ns 6908 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 446344ns 6916 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 446515ns 6919 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 446799ns 6924 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 447083ns 6929 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 447367ns 6934 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 447822ns 6942 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 447992ns 6945 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 448277ns 6950 1a110850 fd5ff06f jal x0, -44 + 448561ns 6955 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 448845ns 6960 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 449243ns 6967 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 449413ns 6970 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 449868ns 6978 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 450038ns 6981 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 450322ns 6986 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 450607ns 6991 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 450891ns 6996 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 451345ns 7004 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 451516ns 7007 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 451800ns 7012 1a110850 fd5ff06f jal x0, -44 + 452084ns 7017 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 452368ns 7022 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 452766ns 7029 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 452937ns 7032 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 453391ns 7040 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 453562ns 7043 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 453846ns 7048 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 454130ns 7053 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 454414ns 7058 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 454869ns 7066 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 455040ns 7069 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 455324ns 7074 1a110850 fd5ff06f jal x0, -44 + 455608ns 7079 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 455892ns 7084 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 456290ns 7091 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 456460ns 7094 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 456915ns 7102 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 457085ns 7105 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 457370ns 7110 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 457654ns 7115 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 457938ns 7120 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 458393ns 7128 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 458563ns 7131 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 458847ns 7136 1a110850 fd5ff06f jal x0, -44 + 459131ns 7141 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 459416ns 7146 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 459813ns 7153 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 459984ns 7156 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 460439ns 7164 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 460609ns 7167 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 460893ns 7172 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 461177ns 7177 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 461462ns 7182 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 461916ns 7190 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 462087ns 7193 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 462371ns 7198 1a110850 fd5ff06f jal x0, -44 + 462655ns 7203 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 462939ns 7208 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 463337ns 7215 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 463507ns 7218 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 463962ns 7226 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 464133ns 7229 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 464417ns 7234 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 464701ns 7239 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 464985ns 7244 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 465440ns 7252 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 465610ns 7255 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 465894ns 7260 1a110850 fd5ff06f jal x0, -44 + 466179ns 7265 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 466463ns 7270 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 466861ns 7277 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 467031ns 7280 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 467486ns 7288 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 467656ns 7291 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 467940ns 7296 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 468225ns 7301 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 468509ns 7306 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 468963ns 7314 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 469134ns 7317 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 469418ns 7322 1a110850 fd5ff06f jal x0, -44 + 469702ns 7327 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 469986ns 7332 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 470384ns 7339 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 470555ns 7342 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 471009ns 7350 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 471180ns 7353 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 471464ns 7358 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 471748ns 7363 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 472032ns 7368 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 472487ns 7376 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 472657ns 7379 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 472942ns 7384 1a110850 fd5ff06f jal x0, -44 + 473226ns 7389 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 473510ns 7394 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 473908ns 7401 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 474078ns 7404 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 474533ns 7412 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 474703ns 7415 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 474988ns 7420 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 475272ns 7425 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 475556ns 7430 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 476011ns 7438 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 476181ns 7441 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 476465ns 7446 1a110850 fd5ff06f jal x0, -44 + 476749ns 7451 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 477034ns 7456 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 477431ns 7463 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 477602ns 7466 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 478056ns 7474 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 478227ns 7477 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 478511ns 7482 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 478795ns 7487 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 479079ns 7492 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 479534ns 7500 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 479705ns 7503 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 479989ns 7508 1a110850 fd5ff06f jal x0, -44 + 480273ns 7513 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 480557ns 7518 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 480955ns 7525 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 481125ns 7528 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 481580ns 7536 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 481751ns 7539 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 482035ns 7544 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 482319ns 7549 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 482603ns 7554 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 483058ns 7562 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 483228ns 7565 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 483512ns 7570 1a110850 fd5ff06f jal x0, -44 + 483797ns 7575 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 484081ns 7580 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 484479ns 7587 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 484649ns 7590 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 485104ns 7598 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 485274ns 7601 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 485558ns 7606 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 485842ns 7611 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 486127ns 7616 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 486581ns 7624 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 486752ns 7627 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 487036ns 7632 1a110850 fd5ff06f jal x0, -44 + 487320ns 7637 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 487604ns 7642 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 488002ns 7649 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 488173ns 7652 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 488627ns 7660 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 488798ns 7663 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 489082ns 7668 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 489366ns 7673 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 489650ns 7678 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 490105ns 7686 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 490275ns 7689 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 490560ns 7694 1a110850 fd5ff06f jal x0, -44 + 490844ns 7699 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 491128ns 7704 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 491526ns 7711 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 491696ns 7714 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 492151ns 7722 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 492321ns 7725 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 492605ns 7730 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 492890ns 7735 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 493174ns 7740 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 493628ns 7748 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 493799ns 7751 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 494083ns 7756 1a110850 fd5ff06f jal x0, -44 + 494367ns 7761 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 494651ns 7766 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 495049ns 7773 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 495220ns 7776 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 495674ns 7784 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 495845ns 7787 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 496129ns 7792 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 496413ns 7797 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 496697ns 7802 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 497152ns 7810 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 497323ns 7813 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 497607ns 7818 1a110850 fd5ff06f jal x0, -44 + 497891ns 7823 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 498175ns 7828 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 498573ns 7835 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 498743ns 7838 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 499198ns 7846 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 499368ns 7849 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 499653ns 7854 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 499937ns 7859 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 500221ns 7864 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 500676ns 7872 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 500846ns 7875 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 501130ns 7880 1a110850 fd5ff06f jal x0, -44 + 501414ns 7885 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 501699ns 7890 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 502096ns 7897 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 502267ns 7900 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 502722ns 7908 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 502892ns 7911 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 503176ns 7916 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 503460ns 7921 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 503745ns 7926 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 504199ns 7934 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 504370ns 7937 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 504654ns 7942 1a110850 fd5ff06f jal x0, -44 + 504938ns 7947 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 505222ns 7952 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 505620ns 7959 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 505791ns 7962 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 506245ns 7970 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 506416ns 7973 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 506700ns 7978 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 506984ns 7983 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 507268ns 7988 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 507723ns 7996 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 507893ns 7999 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 508177ns 8004 1a110850 fd5ff06f jal x0, -44 + 508462ns 8009 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 508746ns 8014 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 509144ns 8021 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 509314ns 8024 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 509769ns 8032 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 509939ns 8035 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 510223ns 8040 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 510508ns 8045 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 510792ns 8050 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 511246ns 8058 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 511417ns 8061 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 511701ns 8066 1a110850 fd5ff06f jal x0, -44 + 511985ns 8071 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 512269ns 8076 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 512667ns 8083 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 512838ns 8086 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 513292ns 8094 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 513463ns 8097 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 513747ns 8102 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 514031ns 8107 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 514315ns 8112 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 514770ns 8120 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 514940ns 8123 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 515225ns 8128 1a110850 fd5ff06f jal x0, -44 + 515509ns 8133 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 515793ns 8138 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 516191ns 8145 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 516361ns 8148 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 516816ns 8156 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 516986ns 8159 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 517271ns 8164 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 517555ns 8169 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 517839ns 8174 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 518294ns 8182 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 518464ns 8185 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 518748ns 8190 1a110850 fd5ff06f jal x0, -44 + 519032ns 8195 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 519317ns 8200 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 519714ns 8207 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 519885ns 8210 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 520339ns 8218 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 520510ns 8221 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 520794ns 8226 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 521078ns 8231 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 521362ns 8236 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 521817ns 8244 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 521988ns 8247 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 522272ns 8252 1a110850 fd5ff06f jal x0, -44 + 522556ns 8257 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 522840ns 8262 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 523238ns 8269 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 523408ns 8272 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 523863ns 8280 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 524034ns 8283 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 524318ns 8288 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 524602ns 8293 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 524886ns 8298 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 525341ns 8306 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 525511ns 8309 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 525795ns 8314 1a110850 fd5ff06f jal x0, -44 + 526080ns 8319 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 526364ns 8324 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 526762ns 8331 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 526932ns 8334 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 527387ns 8342 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 527557ns 8345 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 527841ns 8350 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 528125ns 8355 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 528410ns 8360 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 528864ns 8368 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 529035ns 8371 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 529319ns 8376 1a110850 fd5ff06f jal x0, -44 + 529603ns 8381 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 529887ns 8386 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 530285ns 8393 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 530456ns 8396 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 530910ns 8404 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 531081ns 8407 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 531365ns 8412 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 531649ns 8417 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 531933ns 8422 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 532388ns 8430 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 532558ns 8433 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 532843ns 8438 1a110850 fd5ff06f jal x0, -44 + 533127ns 8443 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 533411ns 8448 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 533809ns 8455 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 533979ns 8458 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 534434ns 8466 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 534604ns 8469 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 534888ns 8474 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 535173ns 8479 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 535457ns 8484 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 535911ns 8492 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 536082ns 8495 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 536366ns 8500 1a110850 fd5ff06f jal x0, -44 + 536650ns 8505 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 536934ns 8510 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 537332ns 8517 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 537503ns 8520 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 537957ns 8528 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 538128ns 8531 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 538412ns 8536 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 538696ns 8541 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 538980ns 8546 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 539435ns 8554 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 539606ns 8557 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 539890ns 8562 1a110850 fd5ff06f jal x0, -44 + 540174ns 8567 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 540458ns 8572 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 540856ns 8579 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 541026ns 8582 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 541481ns 8590 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 541651ns 8593 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 541936ns 8598 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 542220ns 8603 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 542504ns 8608 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 542959ns 8616 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 543129ns 8619 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 543413ns 8624 1a110850 fd5ff06f jal x0, -44 + 543697ns 8629 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 543982ns 8634 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 544379ns 8641 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 544550ns 8644 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 545005ns 8652 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 545175ns 8655 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 545459ns 8660 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 545743ns 8665 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 546028ns 8670 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 546482ns 8678 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 546653ns 8681 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 546937ns 8686 1a110850 fd5ff06f jal x0, -44 + 547221ns 8691 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 547505ns 8696 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 547903ns 8703 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 548074ns 8706 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 548528ns 8714 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 548699ns 8717 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 548983ns 8722 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 549267ns 8727 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 549551ns 8732 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 550006ns 8740 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 550176ns 8743 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 550460ns 8748 1a110850 fd5ff06f jal x0, -44 + 550745ns 8753 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 551029ns 8758 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 551427ns 8765 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 551597ns 8768 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 552052ns 8776 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 552222ns 8779 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 552506ns 8784 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 552791ns 8789 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 553075ns 8794 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 553529ns 8802 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 553700ns 8805 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 553984ns 8810 1a110850 fd5ff06f jal x0, -44 + 554268ns 8815 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 554552ns 8820 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 554950ns 8827 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 555121ns 8830 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 555575ns 8838 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 555746ns 8841 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 556030ns 8846 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 556314ns 8851 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 556598ns 8856 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 557053ns 8864 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 557223ns 8867 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 557508ns 8872 1a110850 fd5ff06f jal x0, -44 + 557792ns 8877 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 558076ns 8882 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 558474ns 8889 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 558644ns 8892 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 559099ns 8900 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 559269ns 8903 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 559554ns 8908 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 559838ns 8913 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 560122ns 8918 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 560577ns 8926 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 560747ns 8929 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 561031ns 8934 1a110850 fd5ff06f jal x0, -44 + 561315ns 8939 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 561600ns 8944 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 561997ns 8951 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 562168ns 8954 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 562623ns 8962 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 562793ns 8965 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 563077ns 8970 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 563361ns 8975 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 563645ns 8980 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 564100ns 8988 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 564271ns 8991 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 564555ns 8996 1a110850 fd5ff06f jal x0, -44 + 564839ns 9001 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 565123ns 9006 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 565521ns 9013 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 565691ns 9016 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 566146ns 9024 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 566317ns 9027 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 566601ns 9032 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 566885ns 9037 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 567169ns 9042 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 567624ns 9050 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 567794ns 9053 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 568078ns 9058 1a110850 fd5ff06f jal x0, -44 + 568363ns 9063 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 568647ns 9068 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 569045ns 9075 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 569215ns 9078 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 569670ns 9086 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 569840ns 9089 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 570124ns 9094 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 570408ns 9099 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 570693ns 9104 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 571147ns 9112 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 571318ns 9115 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 571602ns 9120 1a110850 fd5ff06f jal x0, -44 + 571886ns 9125 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 572170ns 9130 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 572568ns 9137 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 572739ns 9140 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 573193ns 9148 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 573364ns 9151 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 573648ns 9156 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 573932ns 9161 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 574216ns 9166 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 574671ns 9174 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 574841ns 9177 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 575126ns 9182 1a110850 fd5ff06f jal x0, -44 + 575410ns 9187 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 575694ns 9192 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 576092ns 9199 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 576262ns 9202 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 576717ns 9210 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 576887ns 9213 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 577171ns 9218 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 577456ns 9223 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 577740ns 9228 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 578194ns 9236 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 578365ns 9239 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 578649ns 9244 1a110850 fd5ff06f jal x0, -44 + 578933ns 9249 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 579217ns 9254 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 579615ns 9261 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 579786ns 9264 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 580240ns 9272 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 580411ns 9275 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 580695ns 9280 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 580979ns 9285 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 581263ns 9290 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 581718ns 9298 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 581889ns 9301 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 582173ns 9306 1a110850 fd5ff06f jal x0, -44 + 582457ns 9311 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 582741ns 9316 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 583139ns 9323 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 583309ns 9326 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 583764ns 9334 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 583935ns 9337 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 584219ns 9342 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 584503ns 9347 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 584787ns 9352 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 585242ns 9360 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 585412ns 9363 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 585696ns 9368 1a110850 fd5ff06f jal x0, -44 + 585980ns 9373 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 586265ns 9378 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 586662ns 9385 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 586833ns 9388 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 587288ns 9396 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 587458ns 9399 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 587742ns 9404 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 588026ns 9409 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 588311ns 9414 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 588765ns 9422 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 588936ns 9425 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 589220ns 9430 1a110850 fd5ff06f jal x0, -44 + 589504ns 9435 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 589788ns 9440 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 590186ns 9447 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 590357ns 9450 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 590811ns 9458 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 590982ns 9461 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 591266ns 9466 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 591550ns 9471 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 591834ns 9476 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 592289ns 9484 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 592459ns 9487 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 592743ns 9492 1a110850 fd5ff06f jal x0, -44 + 593028ns 9497 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 593312ns 9502 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 593710ns 9509 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 593880ns 9512 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 594335ns 9520 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 594505ns 9523 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 594789ns 9528 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 595074ns 9533 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 595358ns 9538 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 595812ns 9546 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 595983ns 9549 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 596267ns 9554 1a110850 fd5ff06f jal x0, -44 + 596551ns 9559 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 596835ns 9564 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 597233ns 9571 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 597404ns 9574 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 597858ns 9582 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 598029ns 9585 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 598313ns 9590 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 598597ns 9595 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 598881ns 9600 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 599336ns 9608 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 599506ns 9611 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 599791ns 9616 1a110850 fd5ff06f jal x0, -44 + 600075ns 9621 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 600359ns 9626 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 600757ns 9633 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 600927ns 9636 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 601382ns 9644 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 601552ns 9647 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 601837ns 9652 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 602121ns 9657 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 602405ns 9662 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 602860ns 9670 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 603030ns 9673 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 603314ns 9678 1a110850 fd5ff06f jal x0, -44 + 603598ns 9683 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 603883ns 9688 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 604280ns 9695 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 604451ns 9698 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 604906ns 9706 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 605076ns 9709 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 605360ns 9714 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 605644ns 9719 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 605928ns 9724 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 606383ns 9732 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 606554ns 9735 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 606838ns 9740 1a110850 fd5ff06f jal x0, -44 + 607122ns 9745 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 607406ns 9750 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 607804ns 9757 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 607974ns 9760 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 608429ns 9768 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 608600ns 9771 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 608884ns 9776 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 609168ns 9781 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 609452ns 9786 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 609907ns 9794 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 610077ns 9797 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 610361ns 9802 1a110850 fd5ff06f jal x0, -44 + 610646ns 9807 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 610930ns 9812 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 611328ns 9819 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 611498ns 9822 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 611953ns 9830 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 612123ns 9833 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 612407ns 9838 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 612691ns 9843 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 612976ns 9848 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 613430ns 9856 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 613601ns 9859 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 613885ns 9864 1a110850 fd5ff06f jal x0, -44 + 614169ns 9869 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 614453ns 9874 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 614851ns 9881 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 615022ns 9884 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 615476ns 9892 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 615647ns 9895 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 615931ns 9900 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 616215ns 9905 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 616499ns 9910 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 616954ns 9918 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 617124ns 9921 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 617409ns 9926 1a110850 fd5ff06f jal x0, -44 + 617693ns 9931 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 617977ns 9936 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 618375ns 9943 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 618545ns 9946 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 619000ns 9954 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 619170ns 9957 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 619455ns 9962 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 619739ns 9967 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 620023ns 9972 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 620477ns 9980 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 620648ns 9983 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 620932ns 9988 1a110850 fd5ff06f jal x0, -44 + 621216ns 9993 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 621500ns 9998 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 621898ns 10005 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 622069ns 10008 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 622523ns 10016 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 622694ns 10019 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 622978ns 10024 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 623262ns 10029 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 623546ns 10034 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 624001ns 10042 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 624172ns 10045 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 624456ns 10050 1a110850 fd5ff06f jal x0, -44 + 624740ns 10055 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 625024ns 10060 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 625422ns 10067 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 625592ns 10070 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 626047ns 10078 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 626218ns 10081 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 626502ns 10086 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 626786ns 10091 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 627070ns 10096 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 627525ns 10104 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 627695ns 10107 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 627979ns 10112 1a110850 fd5ff06f jal x0, -44 + 628263ns 10117 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 628548ns 10122 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 628945ns 10129 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 629116ns 10132 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 629571ns 10140 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 629741ns 10143 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 630025ns 10148 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 630309ns 10153 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 630594ns 10158 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 631048ns 10166 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 631219ns 10169 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 631503ns 10174 1a110850 fd5ff06f jal x0, -44 + 631787ns 10179 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 632071ns 10184 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 632469ns 10191 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 632640ns 10194 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 633094ns 10202 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 633265ns 10205 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 633549ns 10210 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 633833ns 10215 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 634117ns 10220 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 634572ns 10228 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 634742ns 10231 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 635026ns 10236 1a110850 fd5ff06f jal x0, -44 + 635311ns 10241 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 635595ns 10246 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 635993ns 10253 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 636163ns 10256 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 636618ns 10264 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 636788ns 10267 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 637072ns 10272 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 637357ns 10277 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 637641ns 10282 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 638095ns 10290 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 638266ns 10293 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 638550ns 10298 1a110850 fd5ff06f jal x0, -44 + 638834ns 10303 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 639118ns 10308 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 639516ns 10315 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 639687ns 10318 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 640141ns 10326 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 640312ns 10329 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 640596ns 10334 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 640880ns 10339 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 641164ns 10344 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 641619ns 10352 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 641789ns 10355 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 642074ns 10360 1a110850 fd5ff06f jal x0, -44 + 642358ns 10365 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 642642ns 10370 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 643040ns 10377 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 643210ns 10380 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 643665ns 10388 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 643835ns 10391 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 644120ns 10396 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 644404ns 10401 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 644688ns 10406 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 645143ns 10414 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 645313ns 10417 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 645597ns 10422 1a110850 fd5ff06f jal x0, -44 + 645881ns 10427 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 646166ns 10432 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 646563ns 10439 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 646734ns 10442 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 647189ns 10450 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 647359ns 10453 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 647643ns 10458 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 647927ns 10463 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 648211ns 10468 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 648666ns 10476 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 648837ns 10479 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 649121ns 10484 1a110850 fd5ff06f jal x0, -44 + 649405ns 10489 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 649689ns 10494 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 650087ns 10501 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 650257ns 10504 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 650712ns 10512 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 650883ns 10515 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 651167ns 10520 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 651451ns 10525 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 651735ns 10530 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 652190ns 10538 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 652360ns 10541 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 652644ns 10546 1a110850 fd5ff06f jal x0, -44 + 652929ns 10551 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 653213ns 10556 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 653611ns 10563 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 653781ns 10566 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 654236ns 10574 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 654406ns 10577 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 654690ns 10582 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 654975ns 10587 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 655259ns 10592 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 655713ns 10600 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 655884ns 10603 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 656168ns 10608 1a110850 fd5ff06f jal x0, -44 + 656452ns 10613 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 656736ns 10618 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 657134ns 10625 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 657305ns 10628 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 657759ns 10636 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 657930ns 10639 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 658214ns 10644 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 658498ns 10649 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 658782ns 10654 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 659237ns 10662 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 659407ns 10665 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 659692ns 10670 1a110850 fd5ff06f jal x0, -44 + 659976ns 10675 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 660260ns 10680 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 660658ns 10687 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 660828ns 10690 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 661283ns 10698 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 661453ns 10701 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 661738ns 10706 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 662022ns 10711 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 662306ns 10716 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 662760ns 10724 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 662931ns 10727 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 663215ns 10732 1a110850 fd5ff06f jal x0, -44 + 663499ns 10737 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 663783ns 10742 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 664181ns 10749 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 664352ns 10752 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 664806ns 10760 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 664977ns 10763 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 665261ns 10768 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 665545ns 10773 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 665829ns 10778 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 666284ns 10786 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 666455ns 10789 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 666739ns 10794 1a110850 fd5ff06f jal x0, -44 + 667023ns 10799 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 667307ns 10804 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 667705ns 10811 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 667875ns 10814 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 668330ns 10822 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 668501ns 10825 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 668785ns 10830 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 669069ns 10835 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 669353ns 10840 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 669808ns 10848 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 669978ns 10851 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 670262ns 10856 1a110850 fd5ff06f jal x0, -44 + 670546ns 10861 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 670831ns 10866 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 671228ns 10873 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 671399ns 10876 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 671854ns 10884 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 672024ns 10887 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 672308ns 10892 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 672592ns 10897 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 672877ns 10902 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 673331ns 10910 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 673502ns 10913 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 673786ns 10918 1a110850 fd5ff06f jal x0, -44 + 674070ns 10923 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 674354ns 10928 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 674752ns 10935 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 674923ns 10938 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 675377ns 10946 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 675548ns 10949 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 675832ns 10954 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 676116ns 10959 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 676400ns 10964 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 676855ns 10972 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 677025ns 10975 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 677309ns 10980 1a110850 fd5ff06f jal x0, -44 + 677594ns 10985 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 677878ns 10990 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 678276ns 10997 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 678446ns 11000 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 678901ns 11008 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 679071ns 11011 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 679355ns 11016 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 679640ns 11021 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 679924ns 11026 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 680378ns 11034 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 680549ns 11037 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 680833ns 11042 1a110850 fd5ff06f jal x0, -44 + 681117ns 11047 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 681401ns 11052 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 681799ns 11059 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 681970ns 11062 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 682424ns 11070 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 682595ns 11073 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 682879ns 11078 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 683163ns 11083 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 683447ns 11088 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 683902ns 11096 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 684072ns 11099 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 684357ns 11104 1a110850 fd5ff06f jal x0, -44 + 684641ns 11109 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 684925ns 11114 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 685323ns 11121 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 685493ns 11124 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 685948ns 11132 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 686118ns 11135 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 686403ns 11140 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 686687ns 11145 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 686971ns 11150 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 687426ns 11158 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 687596ns 11161 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 687880ns 11166 1a110850 fd5ff06f jal x0, -44 + 688164ns 11171 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 688449ns 11176 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 688846ns 11183 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 689017ns 11186 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 689472ns 11194 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 689642ns 11197 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 689926ns 11202 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 690210ns 11207 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 690495ns 11212 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 690949ns 11220 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 691120ns 11223 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 691404ns 11228 1a110850 fd5ff06f jal x0, -44 + 691688ns 11233 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 691972ns 11238 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 692370ns 11245 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 692540ns 11248 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 692995ns 11256 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 693166ns 11259 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 693450ns 11264 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 693734ns 11269 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 694018ns 11274 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 694473ns 11282 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 694643ns 11285 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 694927ns 11290 1a110850 fd5ff06f jal x0, -44 + 695212ns 11295 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 695496ns 11300 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 695894ns 11307 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 696064ns 11310 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 696519ns 11318 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 696689ns 11321 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 696973ns 11326 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 697258ns 11331 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 697542ns 11336 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 697996ns 11344 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 698167ns 11347 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 698451ns 11352 1a110850 fd5ff06f jal x0, -44 + 698735ns 11357 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 699019ns 11362 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 699417ns 11369 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 699588ns 11372 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 700042ns 11380 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 700213ns 11383 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 700497ns 11388 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 700781ns 11393 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 701065ns 11398 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 701520ns 11406 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 701690ns 11409 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 701975ns 11414 1a110850 fd5ff06f jal x0, -44 + 702259ns 11419 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 702543ns 11424 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 702941ns 11431 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 703111ns 11434 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 703566ns 11442 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 703736ns 11445 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 704021ns 11450 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 704305ns 11455 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 704589ns 11460 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 705043ns 11468 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 705214ns 11471 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 705498ns 11476 1a110850 fd5ff06f jal x0, -44 + 705782ns 11481 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 706066ns 11486 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 706464ns 11493 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 706635ns 11496 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 707089ns 11504 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 707260ns 11507 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 707544ns 11512 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 707828ns 11517 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 708112ns 11522 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 708567ns 11530 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 708738ns 11533 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 709022ns 11538 1a110850 fd5ff06f jal x0, -44 + 709306ns 11543 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 709590ns 11548 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 709988ns 11555 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 710158ns 11558 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 710613ns 11566 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 710784ns 11569 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 711068ns 11574 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 711352ns 11579 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 711636ns 11584 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 712091ns 11592 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 712261ns 11595 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 712545ns 11600 1a110850 fd5ff06f jal x0, -44 + 712829ns 11605 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 713114ns 11610 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 713511ns 11617 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 713682ns 11620 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 714137ns 11628 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 714307ns 11631 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 714591ns 11636 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 714875ns 11641 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 715160ns 11646 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 715614ns 11654 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 715785ns 11657 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 716069ns 11662 1a110850 fd5ff06f jal x0, -44 + 716353ns 11667 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 716637ns 11672 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 717035ns 11679 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 717206ns 11682 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 717660ns 11690 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 717831ns 11693 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 718115ns 11698 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 718399ns 11703 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 718683ns 11708 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 719138ns 11716 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 719308ns 11719 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 719592ns 11724 1a110850 fd5ff06f jal x0, -44 + 719877ns 11729 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 720161ns 11734 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 720559ns 11741 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 720729ns 11744 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 721184ns 11752 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 721354ns 11755 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 721638ns 11760 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 721923ns 11765 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 722207ns 11770 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 722661ns 11778 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 722832ns 11781 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 723116ns 11786 1a110850 fd5ff06f jal x0, -44 + 723400ns 11791 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 723684ns 11796 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 724082ns 11803 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 724253ns 11806 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 724707ns 11814 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 724878ns 11817 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 725162ns 11822 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 725446ns 11827 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 725730ns 11832 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 726185ns 11840 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 726355ns 11843 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 726640ns 11848 1a110850 fd5ff06f jal x0, -44 + 726924ns 11853 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 727208ns 11858 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 727606ns 11865 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 727776ns 11868 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 728231ns 11876 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 728401ns 11879 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 728686ns 11884 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 728970ns 11889 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 729254ns 11894 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 729709ns 11902 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 729879ns 11905 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 730163ns 11910 1a110850 fd5ff06f jal x0, -44 + 730447ns 11915 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 730732ns 11920 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 731129ns 11927 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 731300ns 11930 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 731755ns 11938 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 731925ns 11941 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 732209ns 11946 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 732493ns 11951 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 732778ns 11956 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 733232ns 11964 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 733403ns 11967 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 733687ns 11972 1a110850 fd5ff06f jal x0, -44 + 733971ns 11977 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 734255ns 11982 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 734653ns 11989 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 734823ns 11992 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 735278ns 12000 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 735449ns 12003 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 735733ns 12008 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 736017ns 12013 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 736301ns 12018 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 736756ns 12026 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 736926ns 12029 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 737210ns 12034 1a110850 fd5ff06f jal x0, -44 + 737495ns 12039 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 737779ns 12044 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 738177ns 12051 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 738347ns 12054 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 738802ns 12062 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 738972ns 12065 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 739256ns 12070 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 739541ns 12075 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 739825ns 12080 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 740279ns 12088 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 740450ns 12091 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 740734ns 12096 1a110850 fd5ff06f jal x0, -44 + 741018ns 12101 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 741302ns 12106 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 741700ns 12113 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 741871ns 12116 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 742325ns 12124 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 742496ns 12127 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 742780ns 12132 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 743064ns 12137 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 743348ns 12142 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 743803ns 12150 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 743973ns 12153 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 744258ns 12158 1a110850 fd5ff06f jal x0, -44 + 744542ns 12163 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 744826ns 12168 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 745224ns 12175 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 745394ns 12178 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 745849ns 12186 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 746019ns 12189 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 746304ns 12194 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 746588ns 12199 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 746872ns 12204 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 747327ns 12212 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 747497ns 12215 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 747781ns 12220 1a110850 fd5ff06f jal x0, -44 + 748065ns 12225 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 748349ns 12230 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 748747ns 12237 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 748918ns 12240 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 749372ns 12248 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 749543ns 12251 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 749827ns 12256 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 750111ns 12261 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 750395ns 12266 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 750850ns 12274 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 751021ns 12277 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 751305ns 12282 1a110850 fd5ff06f jal x0, -44 + 751589ns 12287 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 751873ns 12292 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 752271ns 12299 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 752441ns 12302 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 752896ns 12310 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 753067ns 12313 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 753351ns 12318 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 753635ns 12323 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 753919ns 12328 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 754374ns 12336 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 754544ns 12339 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 754828ns 12344 1a110850 fd5ff06f jal x0, -44 + 755112ns 12349 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 755397ns 12354 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 755794ns 12361 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 755965ns 12364 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 756420ns 12372 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 756590ns 12375 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 756874ns 12380 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 757158ns 12385 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 757443ns 12390 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 757897ns 12398 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 758068ns 12401 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 758352ns 12406 1a110850 fd5ff06f jal x0, -44 + 758636ns 12411 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 758920ns 12416 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 759318ns 12423 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 759489ns 12426 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 759943ns 12434 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 760114ns 12437 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 760398ns 12442 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 760682ns 12447 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 760966ns 12452 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 761421ns 12460 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 761591ns 12463 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 761875ns 12468 1a110850 fd5ff06f jal x0, -44 + 762160ns 12473 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 762444ns 12478 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 762842ns 12485 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 763012ns 12488 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 763467ns 12496 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 763637ns 12499 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 763921ns 12504 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 764206ns 12509 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 764490ns 12514 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 764944ns 12522 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 765115ns 12525 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 765399ns 12530 1a110850 fd5ff06f jal x0, -44 + 765683ns 12535 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 765967ns 12540 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 766365ns 12547 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 766536ns 12550 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 766990ns 12558 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 767161ns 12561 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 767445ns 12566 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 767729ns 12571 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 768013ns 12576 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 768468ns 12584 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 768639ns 12587 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 768923ns 12592 1a110850 fd5ff06f jal x0, -44 + 769207ns 12597 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 769491ns 12602 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 769889ns 12609 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 770059ns 12612 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 770514ns 12620 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 770684ns 12623 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 770969ns 12628 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 771253ns 12633 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 771537ns 12638 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 771992ns 12646 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 772162ns 12649 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 772446ns 12654 1a110850 fd5ff06f jal x0, -44 + 772730ns 12659 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 773015ns 12664 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 773412ns 12671 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 773583ns 12674 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 774038ns 12682 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 774208ns 12685 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 774492ns 12690 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 774776ns 12695 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 775061ns 12700 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 775515ns 12708 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 775686ns 12711 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 775970ns 12716 1a110850 fd5ff06f jal x0, -44 + 776254ns 12721 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 776538ns 12726 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 776936ns 12733 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 777106ns 12736 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 777561ns 12744 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 777732ns 12747 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 778016ns 12752 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 778300ns 12757 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 778584ns 12762 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 779039ns 12770 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 779209ns 12773 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 779493ns 12778 1a110850 fd5ff06f jal x0, -44 + 779778ns 12783 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 780062ns 12788 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 780460ns 12795 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 780630ns 12798 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 781085ns 12806 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 781255ns 12809 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 781539ns 12814 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 781824ns 12819 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 782108ns 12824 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 782562ns 12832 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 782733ns 12835 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 783017ns 12840 1a110850 fd5ff06f jal x0, -44 + 783301ns 12845 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 783585ns 12850 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 783983ns 12857 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 784154ns 12860 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 784608ns 12868 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 784779ns 12871 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 785063ns 12876 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 785347ns 12881 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 785631ns 12886 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 786086ns 12894 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 786256ns 12897 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 786541ns 12902 1a110850 fd5ff06f jal x0, -44 + 786825ns 12907 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 787109ns 12912 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 787507ns 12919 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 787677ns 12922 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 788132ns 12930 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 788302ns 12933 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 788587ns 12938 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 788871ns 12943 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 789155ns 12948 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 789610ns 12956 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 789780ns 12959 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 790064ns 12964 1a110850 fd5ff06f jal x0, -44 + 790348ns 12969 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 790632ns 12974 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 791030ns 12981 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 791201ns 12984 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 791655ns 12992 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 791826ns 12995 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 792110ns 13000 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 792394ns 13005 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 792678ns 13010 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 793133ns 13018 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 793304ns 13021 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 793588ns 13026 1a110850 fd5ff06f jal x0, -44 + 793872ns 13031 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 794156ns 13036 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 794554ns 13043 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 794724ns 13046 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 795179ns 13054 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 795350ns 13057 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 795634ns 13062 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 795918ns 13067 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 796202ns 13072 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 796657ns 13080 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 796827ns 13083 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 797111ns 13088 1a110850 fd5ff06f jal x0, -44 + 797395ns 13093 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 797680ns 13098 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 798077ns 13105 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 798248ns 13108 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 798703ns 13116 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 798873ns 13119 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 799157ns 13124 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 799441ns 13129 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 799726ns 13134 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 800180ns 13142 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 800351ns 13145 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 800635ns 13150 1a110850 fd5ff06f jal x0, -44 + 800919ns 13155 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 801203ns 13160 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 801601ns 13167 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 801772ns 13170 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 802226ns 13178 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 802397ns 13181 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 802681ns 13186 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 802965ns 13191 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 803249ns 13196 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 803704ns 13204 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 803874ns 13207 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 804159ns 13212 1a110850 fd5ff06f jal x0, -44 + 804443ns 13217 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 804727ns 13222 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 805125ns 13229 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 805295ns 13232 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 805750ns 13240 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 805920ns 13243 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 806204ns 13248 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 806489ns 13253 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 806773ns 13258 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 807227ns 13266 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 807398ns 13269 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 807682ns 13274 1a110850 fd5ff06f jal x0, -44 + 807966ns 13279 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 808250ns 13284 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 808648ns 13291 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 808819ns 13294 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 809273ns 13302 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 809444ns 13305 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 809728ns 13310 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 810012ns 13315 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 810296ns 13320 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 810751ns 13328 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 810922ns 13331 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 811206ns 13336 1a110850 fd5ff06f jal x0, -44 + 811490ns 13341 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 811774ns 13346 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 812172ns 13353 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 812342ns 13356 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 812797ns 13364 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 812967ns 13367 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 813252ns 13372 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 813536ns 13377 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 813820ns 13382 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 814275ns 13390 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 814445ns 13393 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 814729ns 13398 1a110850 fd5ff06f jal x0, -44 + 815013ns 13403 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 815298ns 13408 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 815695ns 13415 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 815866ns 13418 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 816321ns 13426 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 816491ns 13429 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 816775ns 13434 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 817059ns 13439 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 817344ns 13444 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 817798ns 13452 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 817969ns 13455 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 818253ns 13460 1a110850 fd5ff06f jal x0, -44 + 818537ns 13465 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 818821ns 13470 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 819219ns 13477 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 819389ns 13480 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 819844ns 13488 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 820015ns 13491 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 820299ns 13496 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 820583ns 13501 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 820867ns 13506 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 821322ns 13514 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 821492ns 13517 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 821776ns 13522 1a110850 fd5ff06f jal x0, -44 + 822061ns 13527 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 822345ns 13532 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 822743ns 13539 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 822913ns 13542 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 823368ns 13550 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 823538ns 13553 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 823822ns 13558 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 824107ns 13563 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 824391ns 13568 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 824845ns 13576 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 825016ns 13579 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 825300ns 13584 1a110850 fd5ff06f jal x0, -44 + 825584ns 13589 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 825868ns 13594 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 826266ns 13601 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 826437ns 13604 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 826891ns 13612 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 827062ns 13615 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 827346ns 13620 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 827630ns 13625 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 827914ns 13630 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 828369ns 13638 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 828539ns 13641 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 828824ns 13646 1a110850 fd5ff06f jal x0, -44 + 829108ns 13651 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 829392ns 13656 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 829790ns 13663 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 829960ns 13666 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 830415ns 13674 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 830585ns 13677 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 830870ns 13682 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 831154ns 13687 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 831438ns 13692 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 831893ns 13700 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 832063ns 13703 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 832347ns 13708 1a110850 fd5ff06f jal x0, -44 + 832631ns 13713 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 832915ns 13718 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 833313ns 13725 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 833484ns 13728 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 833938ns 13736 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 834109ns 13739 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 834393ns 13744 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 834677ns 13749 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 834961ns 13754 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 835416ns 13762 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 835587ns 13765 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 835871ns 13770 1a110850 fd5ff06f jal x0, -44 + 836155ns 13775 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 836439ns 13780 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 836837ns 13787 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 837007ns 13790 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 837462ns 13798 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 837633ns 13801 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 837917ns 13806 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 838201ns 13811 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 838485ns 13816 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 838940ns 13824 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 839110ns 13827 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 839394ns 13832 1a110850 fd5ff06f jal x0, -44 + 839679ns 13837 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 839963ns 13842 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 840360ns 13849 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 840531ns 13852 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 840986ns 13860 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 841156ns 13863 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 841440ns 13868 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 841724ns 13873 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 842009ns 13878 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 842463ns 13886 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 842634ns 13889 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 842918ns 13894 1a110850 fd5ff06f jal x0, -44 + 843202ns 13899 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 843486ns 13904 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 843884ns 13911 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 844055ns 13914 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 844509ns 13922 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 844680ns 13925 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 844964ns 13930 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 845248ns 13935 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 845532ns 13940 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 845987ns 13948 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 846157ns 13951 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 846442ns 13956 1a110850 fd5ff06f jal x0, -44 + 846726ns 13961 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 847010ns 13966 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 847408ns 13973 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 847578ns 13976 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 848033ns 13984 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 848203ns 13987 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 848487ns 13992 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 848772ns 13997 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 849056ns 14002 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 849510ns 14010 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 849681ns 14013 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 849965ns 14018 1a110850 fd5ff06f jal x0, -44 + 850249ns 14023 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 850533ns 14028 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 850931ns 14035 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 851102ns 14038 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 851556ns 14046 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 851727ns 14049 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 852011ns 14054 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 852295ns 14059 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 852579ns 14064 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 853034ns 14072 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 853205ns 14075 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 853489ns 14080 1a110850 fd5ff06f jal x0, -44 + 853773ns 14085 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 854057ns 14090 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 854455ns 14097 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 854625ns 14100 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 855080ns 14108 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 855250ns 14111 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 855535ns 14116 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 855819ns 14121 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 856103ns 14126 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 856558ns 14134 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 856728ns 14137 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 857012ns 14142 1a110850 fd5ff06f jal x0, -44 + 857296ns 14147 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 857581ns 14152 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 857978ns 14159 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 858149ns 14162 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 858604ns 14170 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 858774ns 14173 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 859058ns 14178 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 859342ns 14183 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 859627ns 14188 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 860081ns 14196 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 860252ns 14199 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 860536ns 14204 1a110850 fd5ff06f jal x0, -44 + 860820ns 14209 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 861104ns 14214 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 861502ns 14221 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 861672ns 14224 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 862127ns 14232 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 862298ns 14235 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 862582ns 14240 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 862866ns 14245 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 863150ns 14250 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 863605ns 14258 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 863775ns 14261 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 864059ns 14266 1a110850 fd5ff06f jal x0, -44 + 864344ns 14271 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 864628ns 14276 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 865026ns 14283 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 865196ns 14286 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 865651ns 14294 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 865821ns 14297 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 866105ns 14302 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 866390ns 14307 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 866674ns 14312 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 867128ns 14320 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 867299ns 14323 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 867583ns 14328 1a110850 fd5ff06f jal x0, -44 + 867867ns 14333 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 868151ns 14338 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 868549ns 14345 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 868720ns 14348 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 869174ns 14356 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 869345ns 14359 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 869629ns 14364 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 869913ns 14369 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 870197ns 14374 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 870652ns 14382 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 870822ns 14385 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 871107ns 14390 1a110850 fd5ff06f jal x0, -44 + 871391ns 14395 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 871675ns 14400 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 872073ns 14407 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 872243ns 14410 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 872698ns 14418 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 872868ns 14421 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 873153ns 14426 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 873437ns 14431 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 873721ns 14436 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 874176ns 14444 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 874346ns 14447 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 874630ns 14452 1a110850 fd5ff06f jal x0, -44 + 874914ns 14457 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 875199ns 14462 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 875596ns 14469 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 875767ns 14472 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 876221ns 14480 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 876392ns 14483 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 876676ns 14488 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 876960ns 14493 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 877244ns 14498 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 877699ns 14506 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 877870ns 14509 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 878154ns 14514 1a110850 fd5ff06f jal x0, -44 + 878438ns 14519 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 878722ns 14524 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 879120ns 14531 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 879290ns 14534 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 879745ns 14542 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 879916ns 14545 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 880200ns 14550 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 880484ns 14555 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 880768ns 14560 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 881223ns 14568 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 881393ns 14571 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 881677ns 14576 1a110850 fd5ff06f jal x0, -44 + 881962ns 14581 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 882246ns 14586 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 882643ns 14593 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 882814ns 14596 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 883269ns 14604 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 883439ns 14607 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 883723ns 14612 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 884007ns 14617 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 884292ns 14622 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 884746ns 14630 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 884917ns 14633 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 885201ns 14638 1a110850 fd5ff06f jal x0, -44 + 885485ns 14643 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 885769ns 14648 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 886167ns 14655 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 886338ns 14658 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 886792ns 14666 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 886963ns 14669 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 887247ns 14674 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 887531ns 14679 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 887815ns 14684 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 888270ns 14692 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 888440ns 14695 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 888725ns 14700 1a110850 fd5ff06f jal x0, -44 + 889009ns 14705 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 889293ns 14710 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 889691ns 14717 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 889861ns 14720 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 890316ns 14728 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 890486ns 14731 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 890770ns 14736 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 891055ns 14741 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 891339ns 14746 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 891793ns 14754 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 891964ns 14757 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 892248ns 14762 1a110850 fd5ff06f jal x0, -44 + 892532ns 14767 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 892816ns 14772 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 893214ns 14779 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 893385ns 14782 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 893839ns 14790 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 894010ns 14793 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 894294ns 14798 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 894578ns 14803 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 894862ns 14808 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 895317ns 14816 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 895488ns 14819 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 895772ns 14824 1a110850 fd5ff06f jal x0, -44 + 896056ns 14829 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 896340ns 14834 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 896738ns 14841 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 896908ns 14844 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 897363ns 14852 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 897533ns 14855 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 897818ns 14860 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 898102ns 14865 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 898386ns 14870 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 898841ns 14878 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 899011ns 14881 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 899295ns 14886 1a110850 fd5ff06f jal x0, -44 + 899579ns 14891 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 899864ns 14896 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 900261ns 14903 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 900432ns 14906 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 900887ns 14914 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 901057ns 14917 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 901341ns 14922 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 901625ns 14927 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 901910ns 14932 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 902364ns 14940 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 902535ns 14943 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 902819ns 14948 1a110850 fd5ff06f jal x0, -44 + 903103ns 14953 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 903387ns 14958 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 903785ns 14965 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 903955ns 14968 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 904410ns 14976 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 904581ns 14979 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 904865ns 14984 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 905149ns 14989 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 905433ns 14994 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 905888ns 15002 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 906058ns 15005 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 906342ns 15010 1a110850 fd5ff06f jal x0, -44 + 906627ns 15015 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 906911ns 15020 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 907309ns 15027 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 907479ns 15030 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 907934ns 15038 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 908104ns 15041 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 908388ns 15046 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 908673ns 15051 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 908957ns 15056 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 909411ns 15064 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 909582ns 15067 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 909866ns 15072 1a110850 fd5ff06f jal x0, -44 + 910150ns 15077 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 910434ns 15082 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 910832ns 15089 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 911003ns 15092 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 911457ns 15100 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 911628ns 15103 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 911912ns 15108 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 912196ns 15113 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 912480ns 15118 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 912935ns 15126 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 913105ns 15129 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 913390ns 15134 1a110850 fd5ff06f jal x0, -44 + 913674ns 15139 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 913958ns 15144 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 914356ns 15151 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 914526ns 15154 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 914981ns 15162 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 915151ns 15165 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 915436ns 15170 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 915720ns 15175 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 916004ns 15180 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 916459ns 15188 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 916629ns 15191 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 916913ns 15196 1a110850 fd5ff06f jal x0, -44 + 917197ns 15201 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 917482ns 15206 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 917879ns 15213 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 918050ns 15216 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 918504ns 15224 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 918675ns 15227 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 918959ns 15232 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 919243ns 15237 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 919527ns 15242 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 919982ns 15250 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 920153ns 15253 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 920437ns 15258 1a110850 fd5ff06f jal x0, -44 + 920721ns 15263 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 921005ns 15268 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 921403ns 15275 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 921573ns 15278 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 922028ns 15286 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 922199ns 15289 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 922483ns 15294 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 922767ns 15299 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 923051ns 15304 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 923506ns 15312 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 923676ns 15315 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 923960ns 15320 1a110850 fd5ff06f jal x0, -44 + 924245ns 15325 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 924529ns 15330 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 924927ns 15337 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 925097ns 15340 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 925552ns 15348 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 925722ns 15351 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 926006ns 15356 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 926290ns 15361 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 926575ns 15366 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 927029ns 15374 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 927200ns 15377 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 927484ns 15382 1a110850 fd5ff06f jal x0, -44 + 927768ns 15387 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 928052ns 15392 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 928450ns 15399 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 928621ns 15402 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 929075ns 15410 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 929246ns 15413 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 929530ns 15418 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 929814ns 15423 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 930098ns 15428 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 930553ns 15436 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 930723ns 15439 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 931008ns 15444 1a110850 fd5ff06f jal x0, -44 + 931292ns 15449 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 931576ns 15454 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 931974ns 15461 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 932144ns 15464 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 932599ns 15472 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 932769ns 15475 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 933053ns 15480 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 933338ns 15485 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 933622ns 15490 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 934076ns 15498 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 934247ns 15501 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 934531ns 15506 1a110850 fd5ff06f jal x0, -44 + 934815ns 15511 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 935099ns 15516 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 935497ns 15523 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 935668ns 15526 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 936122ns 15534 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 936293ns 15537 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 936577ns 15542 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 936861ns 15547 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 937145ns 15552 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 937600ns 15560 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 937771ns 15563 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 938055ns 15568 1a110850 fd5ff06f jal x0, -44 + 938339ns 15573 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 938623ns 15578 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 939021ns 15585 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 939191ns 15588 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 939646ns 15596 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 939816ns 15599 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 940101ns 15604 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 940385ns 15609 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 940669ns 15614 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 941124ns 15622 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 941294ns 15625 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 941578ns 15630 1a110850 fd5ff06f jal x0, -44 + 941862ns 15635 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 942147ns 15640 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 942544ns 15647 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 942715ns 15650 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 943170ns 15658 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 943340ns 15661 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 943624ns 15666 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 943908ns 15671 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 944193ns 15676 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 944647ns 15684 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 944818ns 15687 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 945102ns 15692 1a110850 fd5ff06f jal x0, -44 + 945386ns 15697 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 945670ns 15702 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 946068ns 15709 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 946239ns 15712 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 946693ns 15720 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 946864ns 15723 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 947148ns 15728 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 947432ns 15733 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 947716ns 15738 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 948171ns 15746 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 948341ns 15749 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 948625ns 15754 1a110850 fd5ff06f jal x0, -44 + 948910ns 15759 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 949194ns 15764 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 949592ns 15771 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 949762ns 15774 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 950217ns 15782 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 950387ns 15785 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 950671ns 15790 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 950956ns 15795 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 951240ns 15800 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 951694ns 15808 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 951865ns 15811 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 952149ns 15816 1a110850 fd5ff06f jal x0, -44 + 952433ns 15821 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 952717ns 15826 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 953115ns 15833 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 953286ns 15836 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 953740ns 15844 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 953911ns 15847 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 954195ns 15852 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 954479ns 15857 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 954763ns 15862 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 955218ns 15870 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 955388ns 15873 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 955673ns 15878 1a110850 fd5ff06f jal x0, -44 + 955957ns 15883 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 956241ns 15888 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 956639ns 15895 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 956809ns 15898 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 957264ns 15906 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 957434ns 15909 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 957719ns 15914 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 958003ns 15919 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 958287ns 15924 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 958742ns 15932 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 958912ns 15935 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 959196ns 15940 1a110850 fd5ff06f jal x0, -44 + 959480ns 15945 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 959765ns 15950 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 960162ns 15957 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 960333ns 15960 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 960787ns 15968 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 960958ns 15971 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 961242ns 15976 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 961526ns 15981 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 961810ns 15986 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 962265ns 15994 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 962436ns 15997 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 962720ns 16002 1a110850 fd5ff06f jal x0, -44 + 963004ns 16007 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 963288ns 16012 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 963686ns 16019 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 963856ns 16022 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 964311ns 16030 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 964482ns 16033 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 964766ns 16038 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 965050ns 16043 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 965334ns 16048 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 965789ns 16056 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 965959ns 16059 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 966243ns 16064 1a110850 fd5ff06f jal x0, -44 + 966528ns 16069 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 966812ns 16074 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 967210ns 16081 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 967380ns 16084 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 967835ns 16092 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 968005ns 16095 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 968289ns 16100 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 968573ns 16105 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 968858ns 16110 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 969312ns 16118 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 969483ns 16121 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 969767ns 16126 1a110850 fd5ff06f jal x0, -44 + 970051ns 16131 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 970335ns 16136 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 970733ns 16143 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 970904ns 16146 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 971358ns 16154 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 971529ns 16157 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 971813ns 16162 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 972097ns 16167 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 972381ns 16172 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 972836ns 16180 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 973006ns 16183 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 973291ns 16188 1a110850 fd5ff06f jal x0, -44 + 973575ns 16193 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 973859ns 16198 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 974257ns 16205 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 974427ns 16208 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 974882ns 16216 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 975052ns 16219 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 975336ns 16224 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 975621ns 16229 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 975905ns 16234 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 976359ns 16242 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 976530ns 16245 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 976814ns 16250 1a110850 fd5ff06f jal x0, -44 + 977098ns 16255 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 977382ns 16260 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 977780ns 16267 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 977951ns 16270 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 978405ns 16278 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 978576ns 16281 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 978860ns 16286 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 979144ns 16291 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 979428ns 16296 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 979883ns 16304 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 980054ns 16307 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 980338ns 16312 1a110850 fd5ff06f jal x0, -44 + 980622ns 16317 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 980906ns 16322 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 981304ns 16329 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 981474ns 16332 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 981929ns 16340 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 982099ns 16343 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 982384ns 16348 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 982668ns 16353 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 982952ns 16358 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 983407ns 16366 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 983577ns 16369 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 983861ns 16374 1a110850 fd5ff06f jal x0, -44 + 984145ns 16379 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 984430ns 16384 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 984827ns 16391 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 984998ns 16394 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 985453ns 16402 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 985623ns 16405 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 985907ns 16410 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 986191ns 16415 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 986476ns 16420 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 986930ns 16428 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 987101ns 16431 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 987385ns 16436 1a110850 fd5ff06f jal x0, -44 + 987669ns 16441 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 987953ns 16446 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 988351ns 16453 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 988522ns 16456 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 988976ns 16464 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 989147ns 16467 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 989431ns 16472 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 989715ns 16477 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 989999ns 16482 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 990454ns 16490 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 990624ns 16493 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 990908ns 16498 1a110850 fd5ff06f jal x0, -44 + 991193ns 16503 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 991477ns 16508 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 991875ns 16515 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 992045ns 16518 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 992500ns 16526 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 992670ns 16529 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 992954ns 16534 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 993239ns 16539 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 993523ns 16544 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 993977ns 16552 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 994148ns 16555 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 994432ns 16560 1a110850 fd5ff06f jal x0, -44 + 994716ns 16565 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 995000ns 16570 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 995398ns 16577 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 995569ns 16580 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 996023ns 16588 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 996194ns 16591 1a110838 02041c63 bne x8, x0, 56 x8:00000000 + 996478ns 16596 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 996762ns 16601 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 997046ns 16606 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 997501ns 16614 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 + 997671ns 16617 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 + 997956ns 16622 1a110850 fd5ff06f jal x0, -44 + 998240ns 16627 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 + 998524ns 16632 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 + 998922ns 16639 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 + 999092ns 16642 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 + 999547ns 16650 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 + 999717ns 16653 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1000002ns 16658 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1000286ns 16663 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1000570ns 16668 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1001025ns 16676 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1001195ns 16679 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1001479ns 16684 1a110850 fd5ff06f jal x0, -44 +1001763ns 16689 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1002048ns 16694 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1002445ns 16701 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1002616ns 16704 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1003071ns 16712 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1003241ns 16715 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1003525ns 16720 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1003809ns 16725 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1004093ns 16730 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1004548ns 16738 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1004719ns 16741 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1005003ns 16746 1a110850 fd5ff06f jal x0, -44 +1005287ns 16751 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1005571ns 16756 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1005969ns 16763 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1006139ns 16766 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1006594ns 16774 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1006765ns 16777 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1007049ns 16782 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1007333ns 16787 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1007617ns 16792 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1008072ns 16800 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1008242ns 16803 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1008526ns 16808 1a110850 fd5ff06f jal x0, -44 +1008811ns 16813 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1009095ns 16818 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1009493ns 16825 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1009663ns 16828 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1010118ns 16836 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1010288ns 16839 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1010572ns 16844 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1010856ns 16849 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1011141ns 16854 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1011595ns 16862 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1011766ns 16865 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1012050ns 16870 1a110850 fd5ff06f jal x0, -44 +1012334ns 16875 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1012618ns 16880 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1013016ns 16887 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1013187ns 16890 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1013641ns 16898 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1013812ns 16901 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1014096ns 16906 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1014380ns 16911 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1014664ns 16916 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1015119ns 16924 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1015289ns 16927 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1015574ns 16932 1a110850 fd5ff06f jal x0, -44 +1015858ns 16937 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1016142ns 16942 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1016540ns 16949 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1016710ns 16952 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1017165ns 16960 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1017335ns 16963 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1017619ns 16968 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1017904ns 16973 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1018188ns 16978 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1018642ns 16986 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1018813ns 16989 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1019097ns 16994 1a110850 fd5ff06f jal x0, -44 +1019381ns 16999 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1019665ns 17004 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1020063ns 17011 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1020234ns 17014 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1020688ns 17022 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1020859ns 17025 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1021143ns 17030 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1021427ns 17035 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1021711ns 17040 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1022166ns 17048 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1022337ns 17051 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1022621ns 17056 1a110850 fd5ff06f jal x0, -44 +1022905ns 17061 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1023189ns 17066 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1023587ns 17073 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1023757ns 17076 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1024212ns 17084 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1024383ns 17087 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1024667ns 17092 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1024951ns 17097 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1025235ns 17102 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1025690ns 17110 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1025860ns 17113 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1026144ns 17118 1a110850 fd5ff06f jal x0, -44 +1026428ns 17123 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1026713ns 17128 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1027110ns 17135 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1027281ns 17138 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1027736ns 17146 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1027906ns 17149 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1028190ns 17154 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1028474ns 17159 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1028759ns 17164 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1029213ns 17172 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1029384ns 17175 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1029668ns 17180 1a110850 fd5ff06f jal x0, -44 +1029952ns 17185 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1030236ns 17190 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1030634ns 17197 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1030805ns 17200 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1031259ns 17208 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1031430ns 17211 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1031714ns 17216 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1031998ns 17221 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1032282ns 17226 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1032737ns 17234 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1032907ns 17237 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1033191ns 17242 1a110850 fd5ff06f jal x0, -44 +1033476ns 17247 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1033760ns 17252 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1034158ns 17259 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1034328ns 17262 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1034783ns 17270 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1034953ns 17273 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1035237ns 17278 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1035522ns 17283 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1035806ns 17288 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1036260ns 17296 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1036431ns 17299 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1036715ns 17304 1a110850 fd5ff06f jal x0, -44 +1036999ns 17309 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1037283ns 17314 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1037681ns 17321 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1037852ns 17324 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1038306ns 17332 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1038477ns 17335 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1038761ns 17340 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1039045ns 17345 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1039329ns 17350 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1039784ns 17358 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1039954ns 17361 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1040239ns 17366 1a110850 fd5ff06f jal x0, -44 +1040523ns 17371 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1040807ns 17376 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1041205ns 17383 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1041375ns 17386 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1041830ns 17394 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1042000ns 17397 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1042285ns 17402 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1042569ns 17407 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1042853ns 17412 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1043308ns 17420 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1043478ns 17423 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1043762ns 17428 1a110850 fd5ff06f jal x0, -44 +1044046ns 17433 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1044331ns 17438 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1044728ns 17445 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1044899ns 17448 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1045354ns 17456 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1045524ns 17459 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1045808ns 17464 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1046092ns 17469 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1046376ns 17474 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1046831ns 17482 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1047002ns 17485 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1047286ns 17490 1a110850 fd5ff06f jal x0, -44 +1047570ns 17495 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1047854ns 17500 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1048252ns 17507 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1048422ns 17510 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1048877ns 17518 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1049048ns 17521 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1049332ns 17526 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1049616ns 17531 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1049900ns 17536 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1050355ns 17544 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1050525ns 17547 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1050809ns 17552 1a110850 fd5ff06f jal x0, -44 +1051094ns 17557 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1051378ns 17562 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1051776ns 17569 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1051946ns 17572 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1052401ns 17580 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1052571ns 17583 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1052855ns 17588 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1053139ns 17593 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1053424ns 17598 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1053878ns 17606 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1054049ns 17609 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1054333ns 17614 1a110850 fd5ff06f jal x0, -44 +1054617ns 17619 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1054901ns 17624 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1055299ns 17631 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1055470ns 17634 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1055924ns 17642 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1056095ns 17645 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1056379ns 17650 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1056663ns 17655 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1056947ns 17660 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1057402ns 17668 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1057572ns 17671 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1057857ns 17676 1a110850 fd5ff06f jal x0, -44 +1058141ns 17681 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1058425ns 17686 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1058823ns 17693 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1058993ns 17696 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1059448ns 17704 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1059618ns 17707 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1059903ns 17712 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1060187ns 17717 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1060471ns 17722 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1060925ns 17730 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1061096ns 17733 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1061380ns 17738 1a110850 fd5ff06f jal x0, -44 +1061664ns 17743 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1061948ns 17748 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1062346ns 17755 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1062517ns 17758 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1062971ns 17766 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1063142ns 17769 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1063426ns 17774 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1063710ns 17779 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1063994ns 17784 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1064449ns 17792 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1064620ns 17795 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1064904ns 17800 1a110850 fd5ff06f jal x0, -44 +1065188ns 17805 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1065472ns 17810 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1065870ns 17817 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1066040ns 17820 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1066495ns 17828 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1066666ns 17831 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1066950ns 17836 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1067234ns 17841 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1067518ns 17846 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1067973ns 17854 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1068143ns 17857 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1068427ns 17862 1a110850 fd5ff06f jal x0, -44 +1068711ns 17867 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1068996ns 17872 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1069393ns 17879 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1069564ns 17882 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1070019ns 17890 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1070189ns 17893 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1070473ns 17898 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1070757ns 17903 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1071042ns 17908 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1071496ns 17916 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1071667ns 17919 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1071951ns 17924 1a110850 fd5ff06f jal x0, -44 +1072235ns 17929 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1072519ns 17934 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1072917ns 17941 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1073088ns 17944 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1073542ns 17952 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1073713ns 17955 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1073997ns 17960 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1074281ns 17965 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1074565ns 17970 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1075020ns 17978 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1075190ns 17981 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1075474ns 17986 1a110850 fd5ff06f jal x0, -44 +1075759ns 17991 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1076043ns 17996 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1076441ns 18003 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1076611ns 18006 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1077066ns 18014 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1077236ns 18017 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1077520ns 18022 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1077805ns 18027 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1078089ns 18032 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1078543ns 18040 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1078714ns 18043 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1078998ns 18048 1a110850 fd5ff06f jal x0, -44 +1079282ns 18053 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1079566ns 18058 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1079964ns 18065 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1080135ns 18068 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1080589ns 18076 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1080760ns 18079 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1081044ns 18084 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1081328ns 18089 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1081612ns 18094 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1082067ns 18102 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1082237ns 18105 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1082522ns 18110 1a110850 fd5ff06f jal x0, -44 +1082806ns 18115 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1083090ns 18120 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1083488ns 18127 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1083658ns 18130 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1084113ns 18138 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1084283ns 18141 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1084568ns 18146 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1084852ns 18151 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1085136ns 18156 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1085591ns 18164 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1085761ns 18167 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1086045ns 18172 1a110850 fd5ff06f jal x0, -44 +1086329ns 18177 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1086614ns 18182 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1087011ns 18189 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1087182ns 18192 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1087637ns 18200 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1087807ns 18203 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1088091ns 18208 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1088375ns 18213 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1088659ns 18218 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1089114ns 18226 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1089285ns 18229 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1089569ns 18234 1a110850 fd5ff06f jal x0, -44 +1089853ns 18239 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1090137ns 18244 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1090535ns 18251 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1090705ns 18254 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1091160ns 18262 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1091331ns 18265 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1091615ns 18270 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1091899ns 18275 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1092183ns 18280 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1092638ns 18288 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1092808ns 18291 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1093092ns 18296 1a110850 fd5ff06f jal x0, -44 +1093377ns 18301 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1093661ns 18306 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1094059ns 18313 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1094229ns 18316 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1094684ns 18324 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1094854ns 18327 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1095138ns 18332 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1095423ns 18337 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1095707ns 18342 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1096161ns 18350 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1096332ns 18353 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1096616ns 18358 1a110850 fd5ff06f jal x0, -44 +1096900ns 18363 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1097184ns 18368 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1097582ns 18375 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1097753ns 18378 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1098207ns 18386 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1098378ns 18389 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1098662ns 18394 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1098946ns 18399 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1099230ns 18404 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1099685ns 18412 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1099855ns 18415 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1100140ns 18420 1a110850 fd5ff06f jal x0, -44 +1100424ns 18425 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1100708ns 18430 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1101106ns 18437 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1101276ns 18440 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1101731ns 18448 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1101901ns 18451 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1102186ns 18456 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1102470ns 18461 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1102754ns 18466 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1103208ns 18474 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1103379ns 18477 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1103663ns 18482 1a110850 fd5ff06f jal x0, -44 +1103947ns 18487 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1104231ns 18492 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1104629ns 18499 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1104800ns 18502 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1105254ns 18510 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1105425ns 18513 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1105709ns 18518 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1105993ns 18523 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1106277ns 18528 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1106732ns 18536 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1106903ns 18539 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1107187ns 18544 1a110850 fd5ff06f jal x0, -44 +1107471ns 18549 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1107755ns 18554 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1108153ns 18561 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1108323ns 18564 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1108778ns 18572 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1108949ns 18575 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1109233ns 18580 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1109517ns 18585 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1109801ns 18590 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1110256ns 18598 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1110426ns 18601 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1110710ns 18606 1a110850 fd5ff06f jal x0, -44 +1110994ns 18611 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1111279ns 18616 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1111676ns 18623 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1111847ns 18626 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1112302ns 18634 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1112472ns 18637 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1112756ns 18642 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1113040ns 18647 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1113325ns 18652 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1113779ns 18660 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1113950ns 18663 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1114234ns 18668 1a110850 fd5ff06f jal x0, -44 +1114518ns 18673 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1114802ns 18678 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1115200ns 18685 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1115371ns 18688 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1115825ns 18696 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1115996ns 18699 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1116280ns 18704 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1116564ns 18709 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1116848ns 18714 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1117303ns 18722 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1117473ns 18725 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1117757ns 18730 1a110850 fd5ff06f jal x0, -44 +1118042ns 18735 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1118326ns 18740 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1118724ns 18747 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1118894ns 18750 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1119349ns 18758 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1119519ns 18761 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1119803ns 18766 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1120088ns 18771 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1120372ns 18776 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1120826ns 18784 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1120997ns 18787 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1121281ns 18792 1a110850 fd5ff06f jal x0, -44 +1121565ns 18797 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1121849ns 18802 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1122247ns 18809 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1122418ns 18812 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1122872ns 18820 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1123043ns 18823 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1123327ns 18828 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1123611ns 18833 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1123895ns 18838 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1124350ns 18846 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1124520ns 18849 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1124805ns 18854 1a110850 fd5ff06f jal x0, -44 +1125089ns 18859 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1125373ns 18864 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1125771ns 18871 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1125941ns 18874 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1126396ns 18882 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1126566ns 18885 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1126851ns 18890 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1127135ns 18895 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1127419ns 18900 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1127874ns 18908 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1128044ns 18911 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1128328ns 18916 1a110850 fd5ff06f jal x0, -44 +1128612ns 18921 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1128897ns 18926 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1129294ns 18933 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1129465ns 18936 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1129920ns 18944 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1130090ns 18947 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1130374ns 18952 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1130658ns 18957 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1130943ns 18962 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1131397ns 18970 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1131568ns 18973 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1131852ns 18978 1a110850 fd5ff06f jal x0, -44 +1132136ns 18983 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1132420ns 18988 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1132818ns 18995 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1132988ns 18998 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1133443ns 19006 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1133614ns 19009 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1133898ns 19014 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1134182ns 19019 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1134466ns 19024 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1134921ns 19032 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1135091ns 19035 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1135375ns 19040 1a110850 fd5ff06f jal x0, -44 +1135660ns 19045 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1135944ns 19050 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1136342ns 19057 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1136512ns 19060 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1136967ns 19068 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1137137ns 19071 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1137421ns 19076 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1137706ns 19081 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1137990ns 19086 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1138444ns 19094 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1138615ns 19097 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1138899ns 19102 1a110850 fd5ff06f jal x0, -44 +1139183ns 19107 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1139467ns 19112 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1139865ns 19119 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1140036ns 19122 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1140490ns 19130 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1140661ns 19133 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1140945ns 19138 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1141229ns 19143 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1141513ns 19148 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1141968ns 19156 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1142138ns 19159 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1142423ns 19164 1a110850 fd5ff06f jal x0, -44 +1142707ns 19169 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1142991ns 19174 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1143389ns 19181 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1143559ns 19184 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1144014ns 19192 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1144184ns 19195 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1144469ns 19200 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1144753ns 19205 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1145037ns 19210 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1145491ns 19218 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1145662ns 19221 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1145946ns 19226 1a110850 fd5ff06f jal x0, -44 +1146230ns 19231 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1146514ns 19236 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1146912ns 19243 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1147083ns 19246 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1147537ns 19254 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1147708ns 19257 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1147992ns 19262 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1148276ns 19267 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1148560ns 19272 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1149015ns 19280 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1149186ns 19283 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1149470ns 19288 1a110850 fd5ff06f jal x0, -44 +1149754ns 19293 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1150038ns 19298 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1150436ns 19305 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1150606ns 19308 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1151061ns 19316 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1151232ns 19319 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1151516ns 19324 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1151800ns 19329 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1152084ns 19334 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1152539ns 19342 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1152709ns 19345 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1152993ns 19350 1a110850 fd5ff06f jal x0, -44 +1153277ns 19355 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1153562ns 19360 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1153959ns 19367 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1154130ns 19370 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1154585ns 19378 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1154755ns 19381 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1155039ns 19386 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1155323ns 19391 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1155608ns 19396 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1156062ns 19404 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1156233ns 19407 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1156517ns 19412 1a110850 fd5ff06f jal x0, -44 +1156801ns 19417 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1157085ns 19422 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1157483ns 19429 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1157654ns 19432 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1158108ns 19440 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1158279ns 19443 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1158563ns 19448 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1158847ns 19453 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1159131ns 19458 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1159586ns 19466 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1159756ns 19469 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1160040ns 19474 1a110850 fd5ff06f jal x0, -44 +1160325ns 19479 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1160609ns 19484 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1161007ns 19491 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1161177ns 19494 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1161632ns 19502 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1161802ns 19505 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1162086ns 19510 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1162371ns 19515 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1162655ns 19520 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1163109ns 19528 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1163280ns 19531 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1163564ns 19536 1a110850 fd5ff06f jal x0, -44 +1163848ns 19541 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1164132ns 19546 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1164530ns 19553 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1164701ns 19556 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1165155ns 19564 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1165326ns 19567 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1165610ns 19572 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1165894ns 19577 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1166178ns 19582 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1166633ns 19590 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1166803ns 19593 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1167088ns 19598 1a110850 fd5ff06f jal x0, -44 +1167372ns 19603 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1167656ns 19608 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1168054ns 19615 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1168224ns 19618 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1168679ns 19626 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1168849ns 19629 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1169134ns 19634 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1169418ns 19639 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1169702ns 19644 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1170157ns 19652 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1170327ns 19655 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1170611ns 19660 1a110850 fd5ff06f jal x0, -44 +1170895ns 19665 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1171180ns 19670 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1171577ns 19677 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1171748ns 19680 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1172203ns 19688 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1172373ns 19691 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1172657ns 19696 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1172941ns 19701 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1173226ns 19706 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1173680ns 19714 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1173851ns 19717 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1174135ns 19722 1a110850 fd5ff06f jal x0, -44 +1174419ns 19727 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1174703ns 19732 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1175101ns 19739 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1175271ns 19742 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1175726ns 19750 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1175897ns 19753 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1176181ns 19758 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1176465ns 19763 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1176749ns 19768 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1177204ns 19776 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1177374ns 19779 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1177658ns 19784 1a110850 fd5ff06f jal x0, -44 +1177943ns 19789 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1178227ns 19794 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1178625ns 19801 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1178795ns 19804 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1179250ns 19812 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1179420ns 19815 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1179704ns 19820 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1179989ns 19825 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1180273ns 19830 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1180727ns 19838 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1180898ns 19841 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1181182ns 19846 1a110850 fd5ff06f jal x0, -44 +1181466ns 19851 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1181750ns 19856 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1182148ns 19863 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1182319ns 19866 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1182773ns 19874 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1182944ns 19877 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1183228ns 19882 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1183512ns 19887 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1183796ns 19892 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1184251ns 19900 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1184421ns 19903 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1184706ns 19908 1a110850 fd5ff06f jal x0, -44 +1184990ns 19913 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1185274ns 19918 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1185672ns 19925 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1185842ns 19928 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1186297ns 19936 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1186467ns 19939 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1186752ns 19944 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1187036ns 19949 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1187320ns 19954 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1187775ns 19962 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1187945ns 19965 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1188229ns 19970 1a110850 fd5ff06f jal x0, -44 +1188513ns 19975 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1188797ns 19980 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1189195ns 19987 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1189366ns 19990 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1189820ns 19998 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1189991ns 20001 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1190275ns 20006 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1190559ns 20011 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1190843ns 20016 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1191298ns 20024 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1191469ns 20027 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1191753ns 20032 1a110850 fd5ff06f jal x0, -44 +1192037ns 20037 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1192321ns 20042 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1192719ns 20049 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1192889ns 20052 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1193344ns 20060 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1193515ns 20063 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1193799ns 20068 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1194083ns 20073 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1194367ns 20078 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1194822ns 20086 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1194992ns 20089 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1195276ns 20094 1a110850 fd5ff06f jal x0, -44 +1195560ns 20099 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1195845ns 20104 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1196242ns 20111 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1196413ns 20114 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1196868ns 20122 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1197038ns 20125 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1197322ns 20130 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1197606ns 20135 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1197891ns 20140 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1198345ns 20148 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1198516ns 20151 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1198800ns 20156 1a110850 fd5ff06f jal x0, -44 +1199084ns 20161 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1199368ns 20166 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1199766ns 20173 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1199937ns 20176 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1200391ns 20184 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1200562ns 20187 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1200846ns 20192 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1201130ns 20197 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1201414ns 20202 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1201869ns 20210 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1202039ns 20213 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1202323ns 20218 1a110850 fd5ff06f jal x0, -44 +1202608ns 20223 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1202892ns 20228 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1203290ns 20235 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1203460ns 20238 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1203915ns 20246 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1204085ns 20249 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1204369ns 20254 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1204654ns 20259 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1204938ns 20264 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1205392ns 20272 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1205563ns 20275 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1205847ns 20280 1a110850 fd5ff06f jal x0, -44 +1206131ns 20285 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1206415ns 20290 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1206813ns 20297 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1206984ns 20300 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1207438ns 20308 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1207609ns 20311 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1207893ns 20316 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1208177ns 20321 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1208461ns 20326 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1208916ns 20334 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1209087ns 20337 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1209371ns 20342 1a110850 fd5ff06f jal x0, -44 +1209655ns 20347 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1209939ns 20352 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1210337ns 20359 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1210507ns 20362 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1210962ns 20370 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1211132ns 20373 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1211417ns 20378 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1211701ns 20383 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1211985ns 20388 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1212440ns 20396 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1212610ns 20399 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1212894ns 20404 1a110850 fd5ff06f jal x0, -44 +1213178ns 20409 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1213463ns 20414 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1213860ns 20421 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1214031ns 20424 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1214486ns 20432 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1214656ns 20435 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1214940ns 20440 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1215224ns 20445 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1215509ns 20450 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1215963ns 20458 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1216134ns 20461 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1216418ns 20466 1a110850 fd5ff06f jal x0, -44 +1216702ns 20471 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1216986ns 20476 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1217384ns 20483 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1217554ns 20486 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1218009ns 20494 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1218180ns 20497 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1218464ns 20502 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1218748ns 20507 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1219032ns 20512 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1219487ns 20520 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1219657ns 20523 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1219941ns 20528 1a110850 fd5ff06f jal x0, -44 +1220226ns 20533 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1220510ns 20538 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1220908ns 20545 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1221078ns 20548 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1221533ns 20556 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1221703ns 20559 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1221987ns 20564 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1222272ns 20569 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1222556ns 20574 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1223010ns 20582 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1223181ns 20585 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1223465ns 20590 1a110850 fd5ff06f jal x0, -44 +1223749ns 20595 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1224033ns 20600 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1224431ns 20607 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1224602ns 20610 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1225056ns 20618 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1225227ns 20621 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1225511ns 20626 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1225795ns 20631 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1226079ns 20636 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1226534ns 20644 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1226704ns 20647 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1226989ns 20652 1a110850 fd5ff06f jal x0, -44 +1227273ns 20657 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1227557ns 20662 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1227955ns 20669 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1228125ns 20672 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1228580ns 20680 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1228750ns 20683 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1229035ns 20688 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1229319ns 20693 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1229603ns 20698 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1230058ns 20706 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1230228ns 20709 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1230512ns 20714 1a110850 fd5ff06f jal x0, -44 +1230796ns 20719 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1231080ns 20724 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1231478ns 20731 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1231649ns 20734 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1232103ns 20742 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1232274ns 20745 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1232558ns 20750 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1232842ns 20755 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1233126ns 20760 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1233581ns 20768 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1233752ns 20771 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1234036ns 20776 1a110850 fd5ff06f jal x0, -44 +1234320ns 20781 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1234604ns 20786 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1235002ns 20793 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1235172ns 20796 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1235627ns 20804 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1235798ns 20807 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1236082ns 20812 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1236366ns 20817 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1236650ns 20822 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1237105ns 20830 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1237275ns 20833 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1237559ns 20838 1a110850 fd5ff06f jal x0, -44 +1237843ns 20843 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1238128ns 20848 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1238525ns 20855 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1238696ns 20858 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1239151ns 20866 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1239321ns 20869 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1239605ns 20874 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1239889ns 20879 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1240174ns 20884 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1240628ns 20892 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1240799ns 20895 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1241083ns 20900 1a110850 fd5ff06f jal x0, -44 +1241367ns 20905 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1241651ns 20910 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1242049ns 20917 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1242220ns 20920 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1242674ns 20928 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1242845ns 20931 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1243129ns 20936 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1243413ns 20941 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1243697ns 20946 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1244152ns 20954 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1244322ns 20957 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1244607ns 20962 1a110850 fd5ff06f jal x0, -44 +1244891ns 20967 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1245175ns 20972 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1245573ns 20979 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1245743ns 20982 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1246198ns 20990 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1246368ns 20993 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1246652ns 20998 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1246937ns 21003 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1247221ns 21008 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1247675ns 21016 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1247846ns 21019 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1248130ns 21024 1a110850 fd5ff06f jal x0, -44 +1248414ns 21029 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1248698ns 21034 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1249096ns 21041 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1249267ns 21044 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1249721ns 21052 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1249892ns 21055 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1250176ns 21060 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1250460ns 21065 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1250744ns 21070 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1251199ns 21078 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1251370ns 21081 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1251654ns 21086 1a110850 fd5ff06f jal x0, -44 +1251938ns 21091 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1252222ns 21096 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1252620ns 21103 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1252790ns 21106 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1253245ns 21114 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1253415ns 21117 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1253700ns 21122 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1253984ns 21127 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1254268ns 21132 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1254723ns 21140 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1254893ns 21143 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1255177ns 21148 1a110850 fd5ff06f jal x0, -44 +1255461ns 21153 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1255746ns 21158 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1256143ns 21165 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1256314ns 21168 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1256769ns 21176 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1256939ns 21179 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1257223ns 21184 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1257507ns 21189 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1257792ns 21194 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1258246ns 21202 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1258417ns 21205 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1258701ns 21210 1a110850 fd5ff06f jal x0, -44 +1258985ns 21215 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1259269ns 21220 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1259667ns 21227 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1259837ns 21230 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1260292ns 21238 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1260463ns 21241 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1260747ns 21246 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1261031ns 21251 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1261315ns 21256 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1261770ns 21264 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1261940ns 21267 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1262224ns 21272 1a110850 fd5ff06f jal x0, -44 +1262509ns 21277 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1262793ns 21282 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1263191ns 21289 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1263361ns 21292 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1263816ns 21300 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1263986ns 21303 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1264270ns 21308 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1264555ns 21313 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1264839ns 21318 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1265293ns 21326 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1265464ns 21329 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1265748ns 21334 1a110850 fd5ff06f jal x0, -44 +1266032ns 21339 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1266316ns 21344 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1266714ns 21351 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1266885ns 21354 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1267339ns 21362 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1267510ns 21365 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1267794ns 21370 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1268078ns 21375 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1268362ns 21380 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1268817ns 21388 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1268987ns 21391 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1269272ns 21396 1a110850 fd5ff06f jal x0, -44 +1269556ns 21401 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1269840ns 21406 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1270238ns 21413 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1270408ns 21416 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1270863ns 21424 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1271033ns 21427 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1271318ns 21432 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1271602ns 21437 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1271886ns 21442 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1272341ns 21450 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1272511ns 21453 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1272795ns 21458 1a110850 fd5ff06f jal x0, -44 +1273079ns 21463 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1273363ns 21468 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1273761ns 21475 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1273932ns 21478 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1274386ns 21486 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1274557ns 21489 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1274841ns 21494 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1275125ns 21499 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1275409ns 21504 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1275864ns 21512 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1276035ns 21515 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1276319ns 21520 1a110850 fd5ff06f jal x0, -44 +1276603ns 21525 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1276887ns 21530 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1277285ns 21537 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1277455ns 21540 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1277910ns 21548 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1278081ns 21551 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1278365ns 21556 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1278649ns 21561 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1278933ns 21566 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1279388ns 21574 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1279558ns 21577 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1279842ns 21582 1a110850 fd5ff06f jal x0, -44 +1280127ns 21587 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1280411ns 21592 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1280808ns 21599 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1280979ns 21602 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1281434ns 21610 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1281604ns 21613 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1281888ns 21618 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1282172ns 21623 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1282457ns 21628 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1282911ns 21636 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1283082ns 21639 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1283366ns 21644 1a110850 fd5ff06f jal x0, -44 +1283650ns 21649 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1283934ns 21654 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1284332ns 21661 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1284503ns 21664 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1284957ns 21672 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1285128ns 21675 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1285412ns 21680 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1285696ns 21685 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1285980ns 21690 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1286435ns 21698 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1286605ns 21701 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1286890ns 21706 1a110850 fd5ff06f jal x0, -44 +1287174ns 21711 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1287458ns 21716 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1287856ns 21723 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1288026ns 21726 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1288481ns 21734 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1288651ns 21737 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1288935ns 21742 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1289220ns 21747 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1289504ns 21752 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1289958ns 21760 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1290129ns 21763 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1290413ns 21768 1a110850 fd5ff06f jal x0, -44 +1290697ns 21773 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1290981ns 21778 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1291379ns 21785 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1291550ns 21788 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1292004ns 21796 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1292175ns 21799 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1292459ns 21804 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1292743ns 21809 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1293027ns 21814 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1293482ns 21822 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1293653ns 21825 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1293937ns 21830 1a110850 fd5ff06f jal x0, -44 +1294221ns 21835 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1294505ns 21840 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1294903ns 21847 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1295073ns 21850 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1295528ns 21858 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1295698ns 21861 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1295983ns 21866 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1296267ns 21871 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1296551ns 21876 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1297006ns 21884 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1297176ns 21887 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1297460ns 21892 1a110850 fd5ff06f jal x0, -44 +1297744ns 21897 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1298029ns 21902 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1298426ns 21909 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1298597ns 21912 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1299052ns 21920 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1299222ns 21923 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1299506ns 21928 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1299790ns 21933 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1300075ns 21938 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1300529ns 21946 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1300700ns 21949 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1300984ns 21954 1a110850 fd5ff06f jal x0, -44 +1301268ns 21959 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1301552ns 21964 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1301950ns 21971 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1302120ns 21974 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1302575ns 21982 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1302746ns 21985 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1303030ns 21990 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1303314ns 21995 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1303598ns 22000 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1304053ns 22008 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1304223ns 22011 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1304507ns 22016 1a110850 fd5ff06f jal x0, -44 +1304792ns 22021 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1305076ns 22026 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1305474ns 22033 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1305644ns 22036 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1306099ns 22044 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1306269ns 22047 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1306553ns 22052 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1306838ns 22057 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1307122ns 22062 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1307576ns 22070 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1307747ns 22073 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1308031ns 22078 1a110850 fd5ff06f jal x0, -44 +1308315ns 22083 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1308599ns 22088 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1308997ns 22095 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1309168ns 22098 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1309622ns 22106 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1309793ns 22109 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1310077ns 22114 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1310361ns 22119 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1310645ns 22124 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1311100ns 22132 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1311270ns 22135 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1311555ns 22140 1a110850 fd5ff06f jal x0, -44 +1311839ns 22145 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1312123ns 22150 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1312521ns 22157 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1312691ns 22160 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1313146ns 22168 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1313316ns 22171 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1313601ns 22176 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1313885ns 22181 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1314169ns 22186 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1314624ns 22194 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1314794ns 22197 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1315078ns 22202 1a110850 fd5ff06f jal x0, -44 +1315362ns 22207 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1315647ns 22212 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1316044ns 22219 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1316215ns 22222 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1316669ns 22230 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1316840ns 22233 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1317124ns 22238 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1317408ns 22243 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1317692ns 22248 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1318147ns 22256 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1318318ns 22259 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1318602ns 22264 1a110850 fd5ff06f jal x0, -44 +1318886ns 22269 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1319170ns 22274 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1319568ns 22281 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1319738ns 22284 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1320193ns 22292 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1320364ns 22295 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1320648ns 22300 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1320932ns 22305 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1321216ns 22310 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1321671ns 22318 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1321841ns 22321 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1322125ns 22326 1a110850 fd5ff06f jal x0, -44 +1322410ns 22331 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1322694ns 22336 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1323091ns 22343 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1323262ns 22346 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1323717ns 22354 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1323887ns 22357 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1324171ns 22362 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1324455ns 22367 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1324740ns 22372 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1325194ns 22380 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1325365ns 22383 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1325649ns 22388 1a110850 fd5ff06f jal x0, -44 +1325933ns 22393 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1326217ns 22398 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1326615ns 22405 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1326786ns 22408 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1327240ns 22416 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1327411ns 22419 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1327695ns 22424 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1327979ns 22429 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1328263ns 22434 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1328718ns 22442 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1328888ns 22445 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1329173ns 22450 1a110850 fd5ff06f jal x0, -44 +1329457ns 22455 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1329741ns 22460 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1330139ns 22467 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1330309ns 22470 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1330764ns 22478 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1330934ns 22481 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1331218ns 22486 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1331503ns 22491 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1331787ns 22496 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1332241ns 22504 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1332412ns 22507 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1332696ns 22512 1a110850 fd5ff06f jal x0, -44 +1332980ns 22517 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1333264ns 22522 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1333662ns 22529 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1333833ns 22532 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1334287ns 22540 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1334458ns 22543 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1334742ns 22548 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1335026ns 22553 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1335310ns 22558 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1335765ns 22566 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1335936ns 22569 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1336220ns 22574 1a110850 fd5ff06f jal x0, -44 +1336504ns 22579 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1336788ns 22584 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1337186ns 22591 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1337356ns 22594 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1337811ns 22602 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1337981ns 22605 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1338266ns 22610 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1338550ns 22615 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1338834ns 22620 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1339289ns 22628 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1339459ns 22631 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1339743ns 22636 1a110850 fd5ff06f jal x0, -44 +1340027ns 22641 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1340312ns 22646 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1340709ns 22653 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1340880ns 22656 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1341335ns 22664 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1341505ns 22667 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1341789ns 22672 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1342073ns 22677 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1342358ns 22682 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1342812ns 22690 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1342983ns 22693 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1343267ns 22698 1a110850 fd5ff06f jal x0, -44 +1343551ns 22703 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1343835ns 22708 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1344233ns 22715 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1344403ns 22718 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1344858ns 22726 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1345029ns 22729 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1345313ns 22734 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1345597ns 22739 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1345881ns 22744 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1346336ns 22752 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1346506ns 22755 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1346790ns 22760 1a110850 fd5ff06f jal x0, -44 +1347075ns 22765 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1347359ns 22770 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1347757ns 22777 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1347927ns 22780 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1348382ns 22788 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1348552ns 22791 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1348836ns 22796 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1349121ns 22801 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1349405ns 22806 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1349859ns 22814 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1350030ns 22817 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1350314ns 22822 1a110850 fd5ff06f jal x0, -44 +1350598ns 22827 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1350882ns 22832 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1351280ns 22839 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1351451ns 22842 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1351905ns 22850 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1352076ns 22853 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1352360ns 22858 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1352644ns 22863 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1352928ns 22868 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1353383ns 22876 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1353553ns 22879 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1353838ns 22884 1a110850 fd5ff06f jal x0, -44 +1354122ns 22889 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1354406ns 22894 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1354804ns 22901 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1354974ns 22904 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1355429ns 22912 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1355599ns 22915 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1355884ns 22920 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1356168ns 22925 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1356452ns 22930 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1356907ns 22938 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1357077ns 22941 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1357361ns 22946 1a110850 fd5ff06f jal x0, -44 +1357645ns 22951 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1357930ns 22956 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1358327ns 22963 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1358498ns 22966 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1358952ns 22974 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1359123ns 22977 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1359407ns 22982 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1359691ns 22987 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1359975ns 22992 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1360430ns 23000 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1360601ns 23003 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1360885ns 23008 1a110850 fd5ff06f jal x0, -44 +1361169ns 23013 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1361453ns 23018 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1361851ns 23025 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1362021ns 23028 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1362476ns 23036 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1362647ns 23039 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1362931ns 23044 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1363215ns 23049 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1363499ns 23054 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1363954ns 23062 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1364124ns 23065 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1364408ns 23070 1a110850 fd5ff06f jal x0, -44 +1364693ns 23075 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1364977ns 23080 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1365375ns 23087 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1365545ns 23090 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1366000ns 23098 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1366170ns 23101 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1366454ns 23106 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1366738ns 23111 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1367023ns 23116 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1367477ns 23124 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1367648ns 23127 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1367932ns 23132 1a110850 fd5ff06f jal x0, -44 +1368216ns 23137 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1368500ns 23142 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1368898ns 23149 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1369069ns 23152 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1369523ns 23160 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1369694ns 23163 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1369978ns 23168 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1370262ns 23173 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1370546ns 23178 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1371001ns 23186 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1371171ns 23189 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1371456ns 23194 1a110850 fd5ff06f jal x0, -44 +1371740ns 23199 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1372024ns 23204 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1372422ns 23211 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1372592ns 23214 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1373047ns 23222 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1373217ns 23225 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1373501ns 23230 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1373786ns 23235 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1374070ns 23240 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1374524ns 23248 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1374695ns 23251 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1374979ns 23256 1a110850 fd5ff06f jal x0, -44 +1375263ns 23261 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1375547ns 23266 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1375945ns 23273 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1376116ns 23276 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1376570ns 23284 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1376741ns 23287 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1377025ns 23292 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1377309ns 23297 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1377593ns 23302 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1378048ns 23310 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1378219ns 23313 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1378503ns 23318 1a110850 fd5ff06f jal x0, -44 +1378787ns 23323 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1379071ns 23328 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1379469ns 23335 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1379639ns 23338 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1380094ns 23346 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1380264ns 23349 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1380549ns 23354 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1380833ns 23359 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1381117ns 23364 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1381572ns 23372 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1381742ns 23375 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1382026ns 23380 1a110850 fd5ff06f jal x0, -44 +1382310ns 23385 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1382595ns 23390 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1382992ns 23397 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1383163ns 23400 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1383618ns 23408 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1383788ns 23411 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1384072ns 23416 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1384356ns 23421 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1384641ns 23426 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1385095ns 23434 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1385266ns 23437 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1385550ns 23442 1a110850 fd5ff06f jal x0, -44 +1385834ns 23447 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1386118ns 23452 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1386516ns 23459 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1386687ns 23462 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1387141ns 23470 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1387312ns 23473 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1387596ns 23478 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1387880ns 23483 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1388164ns 23488 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1388619ns 23496 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1388789ns 23499 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1389073ns 23504 1a110850 fd5ff06f jal x0, -44 +1389358ns 23509 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1389642ns 23514 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1390040ns 23521 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1390210ns 23524 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1390665ns 23532 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1390835ns 23535 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1391119ns 23540 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1391404ns 23545 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1391688ns 23550 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1392142ns 23558 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1392313ns 23561 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1392597ns 23566 1a110850 fd5ff06f jal x0, -44 +1392881ns 23571 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1393165ns 23576 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1393563ns 23583 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1393734ns 23586 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1394188ns 23594 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1394359ns 23597 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1394643ns 23602 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1394927ns 23607 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1395211ns 23612 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1395666ns 23620 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1395836ns 23623 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1396121ns 23628 1a110850 fd5ff06f jal x0, -44 +1396405ns 23633 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1396689ns 23638 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1397087ns 23645 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1397257ns 23648 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1397712ns 23656 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1397882ns 23659 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1398167ns 23664 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1398451ns 23669 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1398735ns 23674 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1399190ns 23682 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1399360ns 23685 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1399644ns 23690 1a110850 fd5ff06f jal x0, -44 +1399928ns 23695 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1400213ns 23700 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1400610ns 23707 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1400781ns 23710 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1401235ns 23718 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1401406ns 23721 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1401690ns 23726 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1401974ns 23731 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1402258ns 23736 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1402713ns 23744 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1402884ns 23747 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1403168ns 23752 1a110850 fd5ff06f jal x0, -44 +1403452ns 23757 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1403736ns 23762 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1404134ns 23769 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1404304ns 23772 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1404759ns 23780 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1404930ns 23783 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1405214ns 23788 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1405498ns 23793 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1405782ns 23798 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1406237ns 23806 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1406407ns 23809 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1406691ns 23814 1a110850 fd5ff06f jal x0, -44 +1406976ns 23819 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1407260ns 23824 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1407658ns 23831 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1407828ns 23834 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1408283ns 23842 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1408453ns 23845 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1408737ns 23850 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1409021ns 23855 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1409306ns 23860 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1409760ns 23868 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1409931ns 23871 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1410215ns 23876 1a110850 fd5ff06f jal x0, -44 +1410499ns 23881 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1410783ns 23886 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1411181ns 23893 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1411352ns 23896 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1411806ns 23904 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1411977ns 23907 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1412261ns 23912 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1412545ns 23917 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1412829ns 23922 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1413284ns 23930 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1413454ns 23933 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1413739ns 23938 1a110850 fd5ff06f jal x0, -44 +1414023ns 23943 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1414307ns 23948 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1414705ns 23955 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1414875ns 23958 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1415330ns 23966 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1415500ns 23969 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1415784ns 23974 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1416069ns 23979 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1416353ns 23984 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1416807ns 23992 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1416978ns 23995 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1417262ns 24000 1a110850 fd5ff06f jal x0, -44 +1417546ns 24005 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1417830ns 24010 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1418228ns 24017 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1418399ns 24020 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1418853ns 24028 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1419024ns 24031 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1419308ns 24036 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1419592ns 24041 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1419876ns 24046 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1420331ns 24054 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1420502ns 24057 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1420786ns 24062 1a110850 fd5ff06f jal x0, -44 +1421070ns 24067 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1421354ns 24072 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1421752ns 24079 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1421922ns 24082 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1422377ns 24090 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1422547ns 24093 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1422832ns 24098 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1423116ns 24103 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1423400ns 24108 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1423855ns 24116 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1424025ns 24119 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1424309ns 24124 1a110850 fd5ff06f jal x0, -44 +1424593ns 24129 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1424878ns 24134 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1425275ns 24141 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1425446ns 24144 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1425901ns 24152 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1426071ns 24155 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1426355ns 24160 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1426639ns 24165 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1426924ns 24170 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1427378ns 24178 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1427549ns 24181 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1427833ns 24186 1a110850 fd5ff06f jal x0, -44 +1428117ns 24191 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1428401ns 24196 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1428799ns 24203 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1428970ns 24206 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1429424ns 24214 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1429595ns 24217 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1429879ns 24222 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1430163ns 24227 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1430447ns 24232 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1430902ns 24240 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1431072ns 24243 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1431356ns 24248 1a110850 fd5ff06f jal x0, -44 +1431641ns 24253 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1431925ns 24258 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1432323ns 24265 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1432493ns 24268 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1432948ns 24276 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1433118ns 24279 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1433402ns 24284 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1433687ns 24289 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1433971ns 24294 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1434425ns 24302 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1434596ns 24305 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1434880ns 24310 1a110850 fd5ff06f jal x0, -44 +1435164ns 24315 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1435448ns 24320 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1435846ns 24327 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1436017ns 24330 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1436471ns 24338 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1436642ns 24341 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1436926ns 24346 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1437210ns 24351 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1437494ns 24356 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1437949ns 24364 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1438119ns 24367 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1438404ns 24372 1a110850 fd5ff06f jal x0, -44 +1438688ns 24377 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1438972ns 24382 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1439370ns 24389 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1439540ns 24392 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1439995ns 24400 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1440165ns 24403 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1440450ns 24408 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1440734ns 24413 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1441018ns 24418 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1441473ns 24426 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1441643ns 24429 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1441927ns 24434 1a110850 fd5ff06f jal x0, -44 +1442211ns 24439 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1442496ns 24444 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1442893ns 24451 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1443064ns 24454 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1443519ns 24462 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1443689ns 24465 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1443973ns 24470 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1444257ns 24475 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1444541ns 24480 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1444996ns 24488 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1445167ns 24491 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1445451ns 24496 1a110850 fd5ff06f jal x0, -44 +1445735ns 24501 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1446019ns 24506 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1446417ns 24513 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1446587ns 24516 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1447042ns 24524 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1447213ns 24527 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1447497ns 24532 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1447781ns 24537 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1448065ns 24542 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1448520ns 24550 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1448690ns 24553 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1448974ns 24558 1a110850 fd5ff06f jal x0, -44 +1449259ns 24563 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1449543ns 24568 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1449941ns 24575 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1450111ns 24578 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1450566ns 24586 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1450736ns 24589 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1451020ns 24594 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1451304ns 24599 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1451589ns 24604 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1452043ns 24612 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1452214ns 24615 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1452498ns 24620 1a110850 fd5ff06f jal x0, -44 +1452782ns 24625 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1453066ns 24630 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1453464ns 24637 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1453635ns 24640 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1454089ns 24648 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1454260ns 24651 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1454544ns 24656 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1454828ns 24661 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1455112ns 24666 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1455567ns 24674 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1455737ns 24677 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1456022ns 24682 1a110850 fd5ff06f jal x0, -44 +1456306ns 24687 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1456590ns 24692 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1456988ns 24699 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1457158ns 24702 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1457613ns 24710 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1457783ns 24713 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1458067ns 24718 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1458352ns 24723 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1458636ns 24728 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1459090ns 24736 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1459261ns 24739 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1459545ns 24744 1a110850 fd5ff06f jal x0, -44 +1459829ns 24749 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1460113ns 24754 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1460511ns 24761 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1460682ns 24764 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1461136ns 24772 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1461307ns 24775 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1461591ns 24780 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1461875ns 24785 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1462159ns 24790 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1462614ns 24798 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1462785ns 24801 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1463069ns 24806 1a110850 fd5ff06f jal x0, -44 +1463353ns 24811 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1463637ns 24816 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1464035ns 24823 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1464205ns 24826 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1464660ns 24834 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1464831ns 24837 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1465115ns 24842 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1465399ns 24847 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1465683ns 24852 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1466138ns 24860 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1466308ns 24863 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1466592ns 24868 1a110850 fd5ff06f jal x0, -44 +1466876ns 24873 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1467161ns 24878 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1467558ns 24885 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1467729ns 24888 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1468184ns 24896 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1468354ns 24899 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1468638ns 24904 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1468922ns 24909 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1469207ns 24914 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1469661ns 24922 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1469832ns 24925 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1470116ns 24930 1a110850 fd5ff06f jal x0, -44 +1470400ns 24935 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1470684ns 24940 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1471082ns 24947 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1471253ns 24950 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1471707ns 24958 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1471878ns 24961 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1472162ns 24966 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1472446ns 24971 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1472730ns 24976 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1473185ns 24984 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1473355ns 24987 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1473639ns 24992 1a110850 fd5ff06f jal x0, -44 +1473924ns 24997 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1474208ns 25002 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1474606ns 25009 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1474776ns 25012 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1475231ns 25020 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1475401ns 25023 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1475685ns 25028 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1475970ns 25033 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1476254ns 25038 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1476708ns 25046 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1476879ns 25049 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1477163ns 25054 1a110850 fd5ff06f jal x0, -44 +1477447ns 25059 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1477731ns 25064 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1478129ns 25071 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1478300ns 25074 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1478754ns 25082 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1478925ns 25085 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1479209ns 25090 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1479493ns 25095 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1479777ns 25100 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1480232ns 25108 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1480402ns 25111 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1480687ns 25116 1a110850 fd5ff06f jal x0, -44 +1480971ns 25121 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1481255ns 25126 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1481653ns 25133 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1481823ns 25136 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1482278ns 25144 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1482448ns 25147 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1482733ns 25152 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1483017ns 25157 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1483301ns 25162 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1483756ns 25170 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1483926ns 25173 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1484210ns 25178 1a110850 fd5ff06f jal x0, -44 +1484494ns 25183 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1484779ns 25188 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1485176ns 25195 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1485347ns 25198 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1485802ns 25206 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1485972ns 25209 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1486256ns 25214 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1486540ns 25219 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1486824ns 25224 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1487279ns 25232 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1487450ns 25235 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1487734ns 25240 1a110850 fd5ff06f jal x0, -44 +1488018ns 25245 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1488302ns 25250 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1488700ns 25257 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1488870ns 25260 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1489325ns 25268 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1489496ns 25271 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1489780ns 25276 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1490064ns 25281 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1490348ns 25286 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1490803ns 25294 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1490973ns 25297 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1491257ns 25302 1a110850 fd5ff06f jal x0, -44 +1491542ns 25307 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1491826ns 25312 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1492224ns 25319 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1492394ns 25322 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1492849ns 25330 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1493019ns 25333 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1493303ns 25338 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1493587ns 25343 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1493872ns 25348 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1494326ns 25356 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1494497ns 25359 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1494781ns 25364 1a110850 fd5ff06f jal x0, -44 +1495065ns 25369 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1495349ns 25374 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1495747ns 25381 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1495918ns 25384 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1496372ns 25392 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1496543ns 25395 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1496827ns 25400 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1497111ns 25405 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1497395ns 25410 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1497850ns 25418 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1498020ns 25421 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1498305ns 25426 1a110850 fd5ff06f jal x0, -44 +1498589ns 25431 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1498873ns 25436 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1499271ns 25443 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1499441ns 25446 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1499896ns 25454 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1500066ns 25457 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1500351ns 25462 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1500635ns 25467 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1500919ns 25472 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1501373ns 25480 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1501544ns 25483 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1501828ns 25488 1a110850 fd5ff06f jal x0, -44 +1502112ns 25493 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1502396ns 25498 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1502794ns 25505 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1502965ns 25508 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1503419ns 25516 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1503590ns 25519 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1503874ns 25524 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1504158ns 25529 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1504442ns 25534 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1504897ns 25542 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1505068ns 25545 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1505352ns 25550 1a110850 fd5ff06f jal x0, -44 +1505636ns 25555 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1505920ns 25560 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1506318ns 25567 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1506488ns 25570 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1506943ns 25578 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1507114ns 25581 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1507398ns 25586 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1507682ns 25591 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1507966ns 25596 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1508421ns 25604 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1508591ns 25607 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1508875ns 25612 1a110850 fd5ff06f jal x0, -44 +1509159ns 25617 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1509444ns 25622 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1509841ns 25629 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1510012ns 25632 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1510467ns 25640 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1510637ns 25643 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1510921ns 25648 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1511205ns 25653 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1511490ns 25658 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1511944ns 25666 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1512115ns 25669 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1512399ns 25674 1a110850 fd5ff06f jal x0, -44 +1512683ns 25679 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1512967ns 25684 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1513365ns 25691 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1513536ns 25694 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1513990ns 25702 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1514161ns 25705 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1514445ns 25710 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1514729ns 25715 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1515013ns 25720 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1515468ns 25728 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1515638ns 25731 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1515922ns 25736 1a110850 fd5ff06f jal x0, -44 +1516207ns 25741 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1516491ns 25746 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1516889ns 25753 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1517059ns 25756 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1517514ns 25764 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1517684ns 25767 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1517968ns 25772 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1518253ns 25777 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1518537ns 25782 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1518991ns 25790 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1519162ns 25793 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1519446ns 25798 1a110850 fd5ff06f jal x0, -44 +1519730ns 25803 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1520014ns 25808 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1520412ns 25815 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1520583ns 25818 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1521037ns 25826 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1521208ns 25829 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1521492ns 25834 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1521776ns 25839 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1522060ns 25844 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1522515ns 25852 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1522685ns 25855 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1522970ns 25860 1a110850 fd5ff06f jal x0, -44 +1523254ns 25865 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1523538ns 25870 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1523936ns 25877 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1524106ns 25880 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1524561ns 25888 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1524731ns 25891 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1525016ns 25896 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1525300ns 25901 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1525584ns 25906 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1526039ns 25914 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1526209ns 25917 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1526493ns 25922 1a110850 fd5ff06f jal x0, -44 +1526777ns 25927 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1527062ns 25932 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1527459ns 25939 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1527630ns 25942 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1528085ns 25950 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1528255ns 25953 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1528539ns 25958 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1528823ns 25963 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1529107ns 25968 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1529562ns 25976 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1529733ns 25979 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1530017ns 25984 1a110850 fd5ff06f jal x0, -44 +1530301ns 25989 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1530585ns 25994 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1530983ns 26001 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1531153ns 26004 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1531608ns 26012 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1531779ns 26015 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1532063ns 26020 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1532347ns 26025 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1532631ns 26030 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1533086ns 26038 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1533256ns 26041 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1533540ns 26046 1a110850 fd5ff06f jal x0, -44 +1533825ns 26051 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1534109ns 26056 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1534507ns 26063 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1534677ns 26066 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1535132ns 26074 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1535302ns 26077 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1535586ns 26082 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1535871ns 26087 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1536155ns 26092 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1536609ns 26100 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1536780ns 26103 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1537064ns 26108 1a110850 fd5ff06f jal x0, -44 +1537348ns 26113 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1537632ns 26118 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1538030ns 26125 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1538201ns 26128 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1538655ns 26136 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1538826ns 26139 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1539110ns 26144 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1539394ns 26149 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1539678ns 26154 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1540133ns 26162 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1540303ns 26165 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1540588ns 26170 1a110850 fd5ff06f jal x0, -44 +1540872ns 26175 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1541156ns 26180 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1541554ns 26187 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1541724ns 26190 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1542179ns 26198 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1542349ns 26201 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1542634ns 26206 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1542918ns 26211 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1543202ns 26216 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1543656ns 26224 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1543827ns 26227 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1544111ns 26232 1a110850 fd5ff06f jal x0, -44 +1544395ns 26237 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1544679ns 26242 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1545077ns 26249 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1545248ns 26252 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1545702ns 26260 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1545873ns 26263 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1546157ns 26268 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1546441ns 26273 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1546725ns 26278 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1547180ns 26286 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1547351ns 26289 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1547635ns 26294 1a110850 fd5ff06f jal x0, -44 +1547919ns 26299 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1548203ns 26304 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1548601ns 26311 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1548771ns 26314 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1549226ns 26322 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1549397ns 26325 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1549681ns 26330 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1549965ns 26335 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1550249ns 26340 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1550704ns 26348 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1550874ns 26351 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1551158ns 26356 1a110850 fd5ff06f jal x0, -44 +1551442ns 26361 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1551727ns 26366 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1552124ns 26373 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1552295ns 26376 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1552750ns 26384 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1552920ns 26387 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1553204ns 26392 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1553488ns 26397 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1553773ns 26402 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1554227ns 26410 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1554398ns 26413 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1554682ns 26418 1a110850 fd5ff06f jal x0, -44 +1554966ns 26423 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1555250ns 26428 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1555648ns 26435 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1555819ns 26438 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1556273ns 26446 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1556444ns 26449 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1556728ns 26454 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1557012ns 26459 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1557296ns 26464 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1557751ns 26472 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1557921ns 26475 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1558205ns 26480 1a110850 fd5ff06f jal x0, -44 +1558490ns 26485 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1558774ns 26490 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1559172ns 26497 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1559342ns 26500 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1559797ns 26508 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1559967ns 26511 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1560251ns 26516 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1560536ns 26521 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1560820ns 26526 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1561274ns 26534 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1561445ns 26537 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1561729ns 26542 1a110850 fd5ff06f jal x0, -44 +1562013ns 26547 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1562297ns 26552 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1562695ns 26559 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1562866ns 26562 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1563320ns 26570 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1563491ns 26573 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1563775ns 26578 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1564059ns 26583 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1564343ns 26588 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1564798ns 26596 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1564968ns 26599 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1565253ns 26604 1a110850 fd5ff06f jal x0, -44 +1565537ns 26609 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1565821ns 26614 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1566219ns 26621 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1566389ns 26624 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1566844ns 26632 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1567014ns 26635 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1567299ns 26640 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1567583ns 26645 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1567867ns 26650 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1568322ns 26658 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1568492ns 26661 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1568776ns 26666 1a110850 fd5ff06f jal x0, -44 +1569060ns 26671 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1569345ns 26676 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1569742ns 26683 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1569913ns 26686 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1570368ns 26694 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1570538ns 26697 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1570822ns 26702 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1571106ns 26707 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1571391ns 26712 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1571845ns 26720 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1572016ns 26723 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1572300ns 26728 1a110850 fd5ff06f jal x0, -44 +1572584ns 26733 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1572868ns 26738 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1573266ns 26745 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1573436ns 26748 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1573891ns 26756 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1574062ns 26759 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1574346ns 26764 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1574630ns 26769 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1574914ns 26774 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1575369ns 26782 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1575539ns 26785 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1575823ns 26790 1a110850 fd5ff06f jal x0, -44 +1576108ns 26795 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1576392ns 26800 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1576790ns 26807 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1576960ns 26810 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1577415ns 26818 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1577585ns 26821 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1577869ns 26826 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1578154ns 26831 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1578438ns 26836 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1578892ns 26844 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1579063ns 26847 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1579347ns 26852 1a110850 fd5ff06f jal x0, -44 +1579631ns 26857 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1579915ns 26862 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1580313ns 26869 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1580484ns 26872 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1580938ns 26880 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1581109ns 26883 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1581393ns 26888 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1581677ns 26893 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1581961ns 26898 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1582416ns 26906 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1582586ns 26909 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1582871ns 26914 1a110850 fd5ff06f jal x0, -44 +1583155ns 26919 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1583439ns 26924 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1583837ns 26931 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1584007ns 26934 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1584462ns 26942 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1584632ns 26945 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1584917ns 26950 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1585201ns 26955 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1585485ns 26960 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1585939ns 26968 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1586110ns 26971 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1586394ns 26976 1a110850 fd5ff06f jal x0, -44 +1586678ns 26981 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1586962ns 26986 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1587360ns 26993 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1587531ns 26996 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1587985ns 27004 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1588156ns 27007 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1588440ns 27012 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1588724ns 27017 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1589008ns 27022 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1589463ns 27030 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1589634ns 27033 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1589918ns 27038 1a110850 fd5ff06f jal x0, -44 +1590202ns 27043 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1590486ns 27048 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1590884ns 27055 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1591054ns 27058 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1591509ns 27066 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1591680ns 27069 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1591964ns 27074 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1592248ns 27079 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1592532ns 27084 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1592987ns 27092 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1593157ns 27095 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1593441ns 27100 1a110850 fd5ff06f jal x0, -44 +1593725ns 27105 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1594010ns 27110 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1594407ns 27117 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1594578ns 27120 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1595033ns 27128 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1595203ns 27131 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1595487ns 27136 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1595771ns 27141 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1596056ns 27146 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1596510ns 27154 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1596681ns 27157 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1596965ns 27162 1a110850 fd5ff06f jal x0, -44 +1597249ns 27167 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1597533ns 27172 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1597931ns 27179 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1598102ns 27182 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1598556ns 27190 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1598727ns 27193 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1599011ns 27198 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1599295ns 27203 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1599579ns 27208 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1600034ns 27216 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1600204ns 27219 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1600488ns 27224 1a110850 fd5ff06f jal x0, -44 +1600773ns 27229 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1601057ns 27234 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1601455ns 27241 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1601625ns 27244 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1602080ns 27252 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1602250ns 27255 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1602534ns 27260 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1602819ns 27265 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1603103ns 27270 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1603557ns 27278 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1603728ns 27281 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1604012ns 27286 1a110850 fd5ff06f jal x0, -44 +1604296ns 27291 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1604580ns 27296 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1604978ns 27303 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1605149ns 27306 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1605603ns 27314 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1605774ns 27317 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1606058ns 27322 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1606342ns 27327 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1606626ns 27332 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1607081ns 27340 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1607251ns 27343 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1607536ns 27348 1a110850 fd5ff06f jal x0, -44 +1607820ns 27353 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1608104ns 27358 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1608502ns 27365 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1608672ns 27368 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1609127ns 27376 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1609297ns 27379 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1609582ns 27384 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1609866ns 27389 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1610150ns 27394 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1610605ns 27402 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1610775ns 27405 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1611059ns 27410 1a110850 fd5ff06f jal x0, -44 +1611343ns 27415 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1611628ns 27420 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1612025ns 27427 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1612196ns 27430 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1612651ns 27438 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1612821ns 27441 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1613105ns 27446 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1613389ns 27451 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1613674ns 27456 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1614128ns 27464 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1614299ns 27467 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1614583ns 27472 1a110850 fd5ff06f jal x0, -44 +1614867ns 27477 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1615151ns 27482 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1615549ns 27489 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1615719ns 27492 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1616174ns 27500 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1616345ns 27503 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1616629ns 27508 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1616913ns 27513 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1617197ns 27518 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1617652ns 27526 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1617822ns 27529 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1618106ns 27534 1a110850 fd5ff06f jal x0, -44 +1618391ns 27539 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1618675ns 27544 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1619073ns 27551 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1619243ns 27554 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1619698ns 27562 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1619868ns 27565 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1620152ns 27570 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1620437ns 27575 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1620721ns 27580 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1621175ns 27588 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1621346ns 27591 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1621630ns 27596 1a110850 fd5ff06f jal x0, -44 +1621914ns 27601 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1622198ns 27606 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1622596ns 27613 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1622767ns 27616 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1623221ns 27624 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1623392ns 27627 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1623676ns 27632 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1623960ns 27637 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1624244ns 27642 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1624699ns 27650 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1624869ns 27653 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1625154ns 27658 1a110850 fd5ff06f jal x0, -44 +1625438ns 27663 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1625722ns 27668 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1626120ns 27675 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1626290ns 27678 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1626745ns 27686 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1626915ns 27689 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1627200ns 27694 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1627484ns 27699 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1627768ns 27704 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1628223ns 27712 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1628393ns 27715 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1628677ns 27720 1a110850 fd5ff06f jal x0, -44 +1628961ns 27725 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1629245ns 27730 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1629643ns 27737 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1629814ns 27740 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1630268ns 27748 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1630439ns 27751 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1630723ns 27756 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1631007ns 27761 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1631291ns 27766 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1631746ns 27774 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1631917ns 27777 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1632201ns 27782 1a110850 fd5ff06f jal x0, -44 +1632485ns 27787 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1632769ns 27792 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1633167ns 27799 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1633337ns 27802 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1633792ns 27810 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1633963ns 27813 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1634247ns 27818 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1634531ns 27823 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1634815ns 27828 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1635270ns 27836 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1635440ns 27839 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1635724ns 27844 1a110850 fd5ff06f jal x0, -44 +1636008ns 27849 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1636293ns 27854 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1636690ns 27861 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1636861ns 27864 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1637316ns 27872 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1637486ns 27875 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1637770ns 27880 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1638054ns 27885 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1638339ns 27890 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1638793ns 27898 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1638964ns 27901 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1639248ns 27906 1a110850 fd5ff06f jal x0, -44 +1639532ns 27911 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1639816ns 27916 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1640214ns 27923 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1640385ns 27926 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1640839ns 27934 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1641010ns 27937 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1641294ns 27942 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1641578ns 27947 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1641862ns 27952 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1642317ns 27960 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1642487ns 27963 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1642771ns 27968 1a110850 fd5ff06f jal x0, -44 +1643056ns 27973 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1643340ns 27978 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1643738ns 27985 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1643908ns 27988 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1644363ns 27996 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1644533ns 27999 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1644817ns 28004 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1645102ns 28009 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1645386ns 28014 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1645840ns 28022 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1646011ns 28025 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1646295ns 28030 1a110850 fd5ff06f jal x0, -44 +1646579ns 28035 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1646863ns 28040 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1647261ns 28047 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1647432ns 28050 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1647886ns 28058 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1648057ns 28061 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1648341ns 28066 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1648625ns 28071 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1648909ns 28076 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1649364ns 28084 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1649535ns 28087 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1649819ns 28092 1a110850 fd5ff06f jal x0, -44 +1650103ns 28097 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1650387ns 28102 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1650785ns 28109 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1650955ns 28112 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1651410ns 28120 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1651580ns 28123 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1651865ns 28128 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1652149ns 28133 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1652433ns 28138 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1652888ns 28146 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1653058ns 28149 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1653342ns 28154 1a110850 fd5ff06f jal x0, -44 +1653626ns 28159 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1653911ns 28164 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1654308ns 28171 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1654479ns 28174 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1654934ns 28182 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1655104ns 28185 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1655388ns 28190 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1655672ns 28195 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1655957ns 28200 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1656411ns 28208 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1656582ns 28211 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1656866ns 28216 1a110850 fd5ff06f jal x0, -44 +1657150ns 28221 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1657434ns 28226 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1657832ns 28233 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1658002ns 28236 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1658457ns 28244 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1658628ns 28247 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1658912ns 28252 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1659196ns 28257 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1659480ns 28262 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1659935ns 28270 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1660105ns 28273 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1660389ns 28278 1a110850 fd5ff06f jal x0, -44 +1660674ns 28283 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1660958ns 28288 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1661356ns 28295 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1661526ns 28298 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1661981ns 28306 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1662151ns 28309 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1662435ns 28314 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1662720ns 28319 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1663004ns 28324 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1663458ns 28332 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1663629ns 28335 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1663913ns 28340 1a110850 fd5ff06f jal x0, -44 +1664197ns 28345 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1664481ns 28350 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1664879ns 28357 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1665050ns 28360 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1665504ns 28368 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1665675ns 28371 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1665959ns 28376 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1666243ns 28381 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1666527ns 28386 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1666982ns 28394 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1667152ns 28397 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1667437ns 28402 1a110850 fd5ff06f jal x0, -44 +1667721ns 28407 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1668005ns 28412 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1668403ns 28419 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1668573ns 28422 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1669028ns 28430 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1669198ns 28433 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1669483ns 28438 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1669767ns 28443 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1670051ns 28448 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1670506ns 28456 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1670676ns 28459 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1670960ns 28464 1a110850 fd5ff06f jal x0, -44 +1671244ns 28469 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1671528ns 28474 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1671926ns 28481 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1672097ns 28484 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1672551ns 28492 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1672722ns 28495 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1673006ns 28500 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1673290ns 28505 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1673574ns 28510 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1674029ns 28518 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1674200ns 28521 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1674484ns 28526 1a110850 fd5ff06f jal x0, -44 +1674768ns 28531 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1675052ns 28536 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1675450ns 28543 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1675620ns 28546 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1676075ns 28554 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1676246ns 28557 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1676530ns 28562 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1676814ns 28567 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1677098ns 28572 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1677553ns 28580 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1677723ns 28583 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1678007ns 28588 1a110850 fd5ff06f jal x0, -44 +1678291ns 28593 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1678576ns 28598 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1678973ns 28605 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1679144ns 28608 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1679599ns 28616 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1679769ns 28619 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1680053ns 28624 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1680337ns 28629 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1680622ns 28634 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1681076ns 28642 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1681247ns 28645 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1681531ns 28650 1a110850 fd5ff06f jal x0, -44 +1681815ns 28655 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1682099ns 28660 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1682497ns 28667 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1682668ns 28670 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1683122ns 28678 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1683293ns 28681 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1683577ns 28686 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1683861ns 28691 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1684145ns 28696 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1684600ns 28704 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1684770ns 28707 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1685055ns 28712 1a110850 fd5ff06f jal x0, -44 +1685339ns 28717 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1685623ns 28722 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1686021ns 28729 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1686191ns 28732 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1686646ns 28740 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1686816ns 28743 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1687100ns 28748 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1687385ns 28753 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1687669ns 28758 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1688123ns 28766 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1688294ns 28769 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1688578ns 28774 1a110850 fd5ff06f jal x0, -44 +1688862ns 28779 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1689146ns 28784 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1689544ns 28791 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1689715ns 28794 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1690169ns 28802 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1690340ns 28805 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1690624ns 28810 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1690908ns 28815 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1691192ns 28820 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1691647ns 28828 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1691818ns 28831 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1692102ns 28836 1a110850 fd5ff06f jal x0, -44 +1692386ns 28841 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1692670ns 28846 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1693068ns 28853 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1693238ns 28856 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1693693ns 28864 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1693863ns 28867 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1694148ns 28872 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1694432ns 28877 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1694716ns 28882 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1695171ns 28890 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1695341ns 28893 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1695625ns 28898 1a110850 fd5ff06f jal x0, -44 +1695909ns 28903 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1696194ns 28908 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1696591ns 28915 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1696762ns 28918 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1697217ns 28926 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1697387ns 28929 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1697671ns 28934 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1697955ns 28939 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1698240ns 28944 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1698694ns 28952 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1698865ns 28955 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1699149ns 28960 1a110850 fd5ff06f jal x0, -44 +1699433ns 28965 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1699717ns 28970 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1700115ns 28977 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1700285ns 28980 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1700740ns 28988 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1700911ns 28991 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1701195ns 28996 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1701479ns 29001 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1701763ns 29006 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1702218ns 29014 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1702388ns 29017 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1702672ns 29022 1a110850 fd5ff06f jal x0, -44 +1702957ns 29027 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1703241ns 29032 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1703639ns 29039 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1703809ns 29042 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1704264ns 29050 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1704434ns 29053 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1704718ns 29058 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1705003ns 29063 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1705287ns 29068 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1705741ns 29076 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1705912ns 29079 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1706196ns 29084 1a110850 fd5ff06f jal x0, -44 +1706480ns 29089 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1706764ns 29094 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1707162ns 29101 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1707333ns 29104 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1707787ns 29112 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1707958ns 29115 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1708242ns 29120 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1708526ns 29125 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1708810ns 29130 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1709265ns 29138 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1709435ns 29141 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1709720ns 29146 1a110850 fd5ff06f jal x0, -44 +1710004ns 29151 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1710288ns 29156 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1710686ns 29163 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1710856ns 29166 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1711311ns 29174 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1711481ns 29177 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1711766ns 29182 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1712050ns 29187 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1712334ns 29192 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1712789ns 29200 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1712959ns 29203 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1713243ns 29208 1a110850 fd5ff06f jal x0, -44 +1713527ns 29213 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1713811ns 29218 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1714209ns 29225 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1714380ns 29228 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1714834ns 29236 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1715005ns 29239 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1715289ns 29244 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1715573ns 29249 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1715857ns 29254 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1716312ns 29262 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1716483ns 29265 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1716767ns 29270 1a110850 fd5ff06f jal x0, -44 +1717051ns 29275 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1717335ns 29280 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1717733ns 29287 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1717903ns 29290 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1718358ns 29298 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1718529ns 29301 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1718813ns 29306 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1719097ns 29311 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1719381ns 29316 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1719836ns 29324 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1720006ns 29327 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1720290ns 29332 1a110850 fd5ff06f jal x0, -44 +1720575ns 29337 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1720859ns 29342 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1721256ns 29349 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1721427ns 29352 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1721882ns 29360 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1722052ns 29363 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1722336ns 29368 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1722620ns 29373 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1722905ns 29378 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1723359ns 29386 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1723530ns 29389 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1723814ns 29394 1a110850 fd5ff06f jal x0, -44 +1724098ns 29399 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1724382ns 29404 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1724780ns 29411 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1724951ns 29414 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1725405ns 29422 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1725576ns 29425 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1725860ns 29430 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1726144ns 29435 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1726428ns 29440 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1726883ns 29448 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1727053ns 29451 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1727338ns 29456 1a110850 fd5ff06f jal x0, -44 +1727622ns 29461 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1727906ns 29466 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1728304ns 29473 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1728474ns 29476 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1728929ns 29484 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1729099ns 29487 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1729383ns 29492 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1729668ns 29497 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1729952ns 29502 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1730406ns 29510 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1730577ns 29513 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1730861ns 29518 1a110850 fd5ff06f jal x0, -44 +1731145ns 29523 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1731429ns 29528 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1731827ns 29535 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1731998ns 29538 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1732452ns 29546 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1732623ns 29549 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1732907ns 29554 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1733191ns 29559 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1733475ns 29564 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1733930ns 29572 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1734101ns 29575 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1734385ns 29580 1a110850 fd5ff06f jal x0, -44 +1734669ns 29585 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1734953ns 29590 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1735351ns 29597 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1735521ns 29600 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1735976ns 29608 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1736146ns 29611 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1736431ns 29616 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1736715ns 29621 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1736999ns 29626 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1737454ns 29634 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1737624ns 29637 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1737908ns 29642 1a110850 fd5ff06f jal x0, -44 +1738192ns 29647 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1738477ns 29652 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1738874ns 29659 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1739045ns 29662 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1739500ns 29670 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1739670ns 29673 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1739954ns 29678 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1740238ns 29683 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1740523ns 29688 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1740977ns 29696 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1741148ns 29699 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1741432ns 29704 1a110850 fd5ff06f jal x0, -44 +1741716ns 29709 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1742000ns 29714 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1742398ns 29721 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1742568ns 29724 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1743023ns 29732 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1743194ns 29735 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1743478ns 29740 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1743762ns 29745 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1744046ns 29750 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1744501ns 29758 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1744671ns 29761 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1744955ns 29766 1a110850 fd5ff06f jal x0, -44 +1745240ns 29771 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1745524ns 29776 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1745922ns 29783 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1746092ns 29786 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1746547ns 29794 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1746717ns 29797 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1747001ns 29802 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1747286ns 29807 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1747570ns 29812 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1748024ns 29820 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1748195ns 29823 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1748479ns 29828 1a110850 fd5ff06f jal x0, -44 +1748763ns 29833 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1749047ns 29838 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1749445ns 29845 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1749616ns 29848 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1750070ns 29856 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1750241ns 29859 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1750525ns 29864 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1750809ns 29869 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1751093ns 29874 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1751548ns 29882 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1751718ns 29885 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1752003ns 29890 1a110850 fd5ff06f jal x0, -44 +1752287ns 29895 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1752571ns 29900 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1752969ns 29907 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1753139ns 29910 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1753594ns 29918 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1753764ns 29921 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1754049ns 29926 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1754333ns 29931 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1754617ns 29936 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1755072ns 29944 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1755242ns 29947 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1755526ns 29952 1a110850 fd5ff06f jal x0, -44 +1755810ns 29957 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1756095ns 29962 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1756492ns 29969 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1756663ns 29972 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1757117ns 29980 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1757288ns 29983 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1757572ns 29988 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1757856ns 29993 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1758140ns 29998 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1758595ns 30006 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1758766ns 30009 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1759050ns 30014 1a110850 fd5ff06f jal x0, -44 +1759334ns 30019 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1759618ns 30024 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1760016ns 30031 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1760186ns 30034 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1760641ns 30042 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1760812ns 30045 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1761096ns 30050 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1761380ns 30055 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1761664ns 30060 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1762119ns 30068 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1762289ns 30071 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1762573ns 30076 1a110850 fd5ff06f jal x0, -44 +1762858ns 30081 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1763142ns 30086 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1763539ns 30093 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1763710ns 30096 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1764165ns 30104 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1764335ns 30107 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1764619ns 30112 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1764903ns 30117 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1765188ns 30122 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1765642ns 30130 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1765813ns 30133 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1766097ns 30138 1a110850 fd5ff06f jal x0, -44 +1766381ns 30143 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1766665ns 30148 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1767063ns 30155 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1767234ns 30158 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1767688ns 30166 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1767859ns 30169 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1768143ns 30174 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1768427ns 30179 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1768711ns 30184 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1769166ns 30192 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1769336ns 30195 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1769621ns 30200 1a110850 fd5ff06f jal x0, -44 +1769905ns 30205 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1770189ns 30210 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1770587ns 30217 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1770757ns 30220 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1771212ns 30228 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1771382ns 30231 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1771666ns 30236 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1771951ns 30241 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1772235ns 30246 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1772689ns 30254 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1772860ns 30257 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1773144ns 30262 1a110850 fd5ff06f jal x0, -44 +1773428ns 30267 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1773712ns 30272 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1774110ns 30279 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1774281ns 30282 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1774735ns 30290 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1774906ns 30293 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1775190ns 30298 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1775474ns 30303 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1775758ns 30308 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1776213ns 30316 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1776384ns 30319 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1776668ns 30324 1a110850 fd5ff06f jal x0, -44 +1776952ns 30329 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1777236ns 30334 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1777634ns 30341 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1777804ns 30344 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1778259ns 30352 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1778429ns 30355 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1778714ns 30360 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1778998ns 30365 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1779282ns 30370 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1779737ns 30378 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1779907ns 30381 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1780191ns 30386 1a110850 fd5ff06f jal x0, -44 +1780475ns 30391 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1780760ns 30396 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1781157ns 30403 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1781328ns 30406 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1781783ns 30414 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1781953ns 30417 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1782237ns 30422 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1782521ns 30427 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1782806ns 30432 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1783260ns 30440 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1783431ns 30443 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1783715ns 30448 1a110850 fd5ff06f jal x0, -44 +1783999ns 30453 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1784283ns 30458 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1784681ns 30465 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1784851ns 30468 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1785306ns 30476 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1785477ns 30479 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1785761ns 30484 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1786045ns 30489 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1786329ns 30494 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1786784ns 30502 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1786954ns 30505 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1787238ns 30510 1a110850 fd5ff06f jal x0, -44 +1787523ns 30515 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1787807ns 30520 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1788205ns 30527 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1788375ns 30530 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1788830ns 30538 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1789000ns 30541 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1789284ns 30546 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1789569ns 30551 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1789853ns 30556 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1790307ns 30564 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1790478ns 30567 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1790762ns 30572 1a110850 fd5ff06f jal x0, -44 +1791046ns 30577 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1791330ns 30582 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1791728ns 30589 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1791899ns 30592 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1792353ns 30600 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1792524ns 30603 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1792808ns 30608 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1793092ns 30613 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1793376ns 30618 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1793831ns 30626 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1794001ns 30629 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1794286ns 30634 1a110850 fd5ff06f jal x0, -44 +1794570ns 30639 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1794854ns 30644 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1795252ns 30651 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1795422ns 30654 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1795877ns 30662 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1796047ns 30665 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1796332ns 30670 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1796616ns 30675 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1796900ns 30680 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1797355ns 30688 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1797525ns 30691 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1797809ns 30696 1a110850 fd5ff06f jal x0, -44 +1798093ns 30701 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1798378ns 30706 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1798775ns 30713 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1798946ns 30716 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1799400ns 30724 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1799571ns 30727 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1799855ns 30732 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1800139ns 30737 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1800423ns 30742 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1800878ns 30750 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1801049ns 30753 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1801333ns 30758 1a110850 fd5ff06f jal x0, -44 +1801617ns 30763 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1801901ns 30768 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1802299ns 30775 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1802469ns 30778 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1802924ns 30786 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1803095ns 30789 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1803379ns 30794 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1803663ns 30799 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1803947ns 30804 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1804402ns 30812 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1804572ns 30815 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1804856ns 30820 1a110850 fd5ff06f jal x0, -44 +1805141ns 30825 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1805425ns 30830 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1805823ns 30837 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1805993ns 30840 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1806448ns 30848 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1806618ns 30851 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1806902ns 30856 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1807186ns 30861 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1807471ns 30866 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1807925ns 30874 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1808096ns 30877 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1808380ns 30882 1a110850 fd5ff06f jal x0, -44 +1808664ns 30887 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1808948ns 30892 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1809346ns 30899 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1809517ns 30902 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1809971ns 30910 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1810142ns 30913 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1810426ns 30918 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1810710ns 30923 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1810994ns 30928 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1811449ns 30936 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1811619ns 30939 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1811904ns 30944 1a110850 fd5ff06f jal x0, -44 +1812188ns 30949 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1812472ns 30954 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1812870ns 30961 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1813040ns 30964 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1813495ns 30972 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1813665ns 30975 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1813949ns 30980 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1814234ns 30985 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1814518ns 30990 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1814972ns 30998 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1815143ns 31001 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1815427ns 31006 1a110850 fd5ff06f jal x0, -44 +1815711ns 31011 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1815995ns 31016 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1816393ns 31023 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1816564ns 31026 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1817018ns 31034 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1817189ns 31037 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1817473ns 31042 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1817757ns 31047 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1818041ns 31052 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1818496ns 31060 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1818667ns 31063 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1818951ns 31068 1a110850 fd5ff06f jal x0, -44 +1819235ns 31073 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1819519ns 31078 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1819917ns 31085 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1820087ns 31088 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1820542ns 31096 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1820712ns 31099 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1820997ns 31104 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1821281ns 31109 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1821565ns 31114 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1822020ns 31122 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1822190ns 31125 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1822474ns 31130 1a110850 fd5ff06f jal x0, -44 +1822758ns 31135 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1823043ns 31140 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1823440ns 31147 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1823611ns 31150 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1824066ns 31158 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1824236ns 31161 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1824520ns 31166 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1824804ns 31171 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1825089ns 31176 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1825543ns 31184 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1825714ns 31187 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1825998ns 31192 1a110850 fd5ff06f jal x0, -44 +1826282ns 31197 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1826566ns 31202 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1826964ns 31209 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1827135ns 31212 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1827589ns 31220 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1827760ns 31223 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1828044ns 31228 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1828328ns 31233 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1828612ns 31238 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1829067ns 31246 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1829237ns 31249 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1829521ns 31254 1a110850 fd5ff06f jal x0, -44 +1829806ns 31259 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1830090ns 31264 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1830488ns 31271 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1830658ns 31274 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1831113ns 31282 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1831283ns 31285 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1831567ns 31290 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1831852ns 31295 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1832136ns 31300 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1832590ns 31308 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1832761ns 31311 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1833045ns 31316 1a110850 fd5ff06f jal x0, -44 +1833329ns 31321 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1833613ns 31326 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1834011ns 31333 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1834182ns 31336 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1834636ns 31344 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1834807ns 31347 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1835091ns 31352 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1835375ns 31357 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1835659ns 31362 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1836114ns 31370 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1836284ns 31373 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1836569ns 31378 1a110850 fd5ff06f jal x0, -44 +1836853ns 31383 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1837137ns 31388 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1837535ns 31395 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1837705ns 31398 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1838160ns 31406 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1838330ns 31409 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1838615ns 31414 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1838899ns 31419 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1839183ns 31424 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1839638ns 31432 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1839808ns 31435 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1840092ns 31440 1a110850 fd5ff06f jal x0, -44 +1840376ns 31445 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1840661ns 31450 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1841058ns 31457 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1841229ns 31460 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1841683ns 31468 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1841854ns 31471 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1842138ns 31476 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1842422ns 31481 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1842706ns 31486 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1843161ns 31494 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1843332ns 31497 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1843616ns 31502 1a110850 fd5ff06f jal x0, -44 +1843900ns 31507 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1844184ns 31512 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1844582ns 31519 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1844752ns 31522 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1845207ns 31530 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1845378ns 31533 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1845662ns 31538 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1845946ns 31543 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1846230ns 31548 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1846685ns 31556 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1846855ns 31559 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1847139ns 31564 1a110850 fd5ff06f jal x0, -44 +1847424ns 31569 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1847708ns 31574 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1848106ns 31581 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1848276ns 31584 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1848731ns 31592 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1848901ns 31595 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1849185ns 31600 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1849469ns 31605 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1849754ns 31610 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1850208ns 31618 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1850379ns 31621 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1850663ns 31626 1a110850 fd5ff06f jal x0, -44 +1850947ns 31631 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1851231ns 31636 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1851629ns 31643 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1851800ns 31646 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1852254ns 31654 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1852425ns 31657 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1852709ns 31662 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1852993ns 31667 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1853277ns 31672 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1853732ns 31680 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1853902ns 31683 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1854187ns 31688 1a110850 fd5ff06f jal x0, -44 +1854471ns 31693 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1854755ns 31698 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1855153ns 31705 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1855323ns 31708 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1855778ns 31716 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1855948ns 31719 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1856232ns 31724 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1856517ns 31729 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1856801ns 31734 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1857255ns 31742 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1857426ns 31745 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1857710ns 31750 1a110850 fd5ff06f jal x0, -44 +1857994ns 31755 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1858278ns 31760 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1858676ns 31767 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1858847ns 31770 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1859301ns 31778 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1859472ns 31781 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1859756ns 31786 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1860040ns 31791 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1860324ns 31796 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1860779ns 31804 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1860950ns 31807 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1861234ns 31812 1a110850 fd5ff06f jal x0, -44 +1861518ns 31817 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1861802ns 31822 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1862200ns 31829 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1862370ns 31832 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1862825ns 31840 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1862995ns 31843 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1863280ns 31848 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1863564ns 31853 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1863848ns 31858 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1864303ns 31866 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1864473ns 31869 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1864757ns 31874 1a110850 fd5ff06f jal x0, -44 +1865041ns 31879 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1865326ns 31884 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1865723ns 31891 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1865894ns 31894 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1866349ns 31902 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1866519ns 31905 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1866803ns 31910 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1867087ns 31915 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1867372ns 31920 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1867826ns 31928 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1867997ns 31931 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1868281ns 31936 1a110850 fd5ff06f jal x0, -44 +1868565ns 31941 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1868849ns 31946 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1869247ns 31953 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1869418ns 31956 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1869872ns 31964 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1870043ns 31967 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1870327ns 31972 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1870611ns 31977 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1870895ns 31982 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1871350ns 31990 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1871520ns 31993 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1871804ns 31998 1a110850 fd5ff06f jal x0, -44 +1872089ns 32003 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1872373ns 32008 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1872771ns 32015 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1872941ns 32018 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1873396ns 32026 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1873566ns 32029 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1873850ns 32034 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1874135ns 32039 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1874419ns 32044 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1874873ns 32052 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1875044ns 32055 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1875328ns 32060 1a110850 fd5ff06f jal x0, -44 +1875612ns 32065 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1875896ns 32070 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1876294ns 32077 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1876465ns 32080 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1876919ns 32088 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1877090ns 32091 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1877374ns 32096 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1877658ns 32101 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1877942ns 32106 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1878397ns 32114 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1878567ns 32117 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1878852ns 32122 1a110850 fd5ff06f jal x0, -44 +1879136ns 32127 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1879420ns 32132 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1879818ns 32139 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1879988ns 32142 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1880443ns 32150 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1880613ns 32153 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1880898ns 32158 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1881182ns 32163 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1881466ns 32168 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1881921ns 32176 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1882091ns 32179 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1882375ns 32184 1a110850 fd5ff06f jal x0, -44 +1882659ns 32189 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1882944ns 32194 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1883341ns 32201 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1883512ns 32204 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1883967ns 32212 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1884137ns 32215 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1884421ns 32220 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1884705ns 32225 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1884989ns 32230 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1885444ns 32238 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1885615ns 32241 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1885899ns 32246 1a110850 fd5ff06f jal x0, -44 +1886183ns 32251 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1886467ns 32256 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1886865ns 32263 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1887035ns 32266 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1887490ns 32274 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1887661ns 32277 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1887945ns 32282 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1888229ns 32287 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1888513ns 32292 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1888968ns 32300 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1889138ns 32303 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1889422ns 32308 1a110850 fd5ff06f jal x0, -44 +1889707ns 32313 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1889991ns 32318 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1890389ns 32325 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1890559ns 32328 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1891014ns 32336 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1891184ns 32339 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1891468ns 32344 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1891752ns 32349 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1892037ns 32354 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1892491ns 32362 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1892662ns 32365 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1892946ns 32370 1a110850 fd5ff06f jal x0, -44 +1893230ns 32375 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1893514ns 32380 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1893912ns 32387 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1894083ns 32390 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1894537ns 32398 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1894708ns 32401 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1894992ns 32406 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1895276ns 32411 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1895560ns 32416 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1896015ns 32424 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1896185ns 32427 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1896470ns 32432 1a110850 fd5ff06f jal x0, -44 +1896754ns 32437 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1897038ns 32442 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1897436ns 32449 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1897606ns 32452 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1898061ns 32460 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1898231ns 32463 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1898515ns 32468 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1898800ns 32473 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1899084ns 32478 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1899538ns 32486 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1899709ns 32489 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1899993ns 32494 1a110850 fd5ff06f jal x0, -44 +1900277ns 32499 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1900561ns 32504 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1900959ns 32511 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1901130ns 32514 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1901584ns 32522 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1901755ns 32525 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1902039ns 32530 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1902323ns 32535 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1902607ns 32540 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1903062ns 32548 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1903233ns 32551 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1903517ns 32556 1a110850 fd5ff06f jal x0, -44 +1903801ns 32561 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1904085ns 32566 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1904483ns 32573 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1904653ns 32576 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1905108ns 32584 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1905279ns 32587 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1905563ns 32592 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1905847ns 32597 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1906131ns 32602 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1906586ns 32610 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1906756ns 32613 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1907040ns 32618 1a110850 fd5ff06f jal x0, -44 +1907324ns 32623 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1907609ns 32628 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1908006ns 32635 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1908177ns 32638 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1908632ns 32646 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1908802ns 32649 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1909086ns 32654 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1909370ns 32659 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1909655ns 32664 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1910109ns 32672 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1910280ns 32675 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1910564ns 32680 1a110850 fd5ff06f jal x0, -44 +1910848ns 32685 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1911132ns 32690 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1911530ns 32697 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1911701ns 32700 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1912155ns 32708 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1912326ns 32711 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1912610ns 32716 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1912894ns 32721 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1913178ns 32726 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1913633ns 32734 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1913803ns 32737 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1914087ns 32742 1a110850 fd5ff06f jal x0, -44 +1914372ns 32747 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1914656ns 32752 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1915054ns 32759 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1915224ns 32762 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1915679ns 32770 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1915849ns 32773 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1916133ns 32778 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1916418ns 32783 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1916702ns 32788 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1917156ns 32796 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1917327ns 32799 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1917611ns 32804 1a110850 fd5ff06f jal x0, -44 +1917895ns 32809 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1918179ns 32814 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1918577ns 32821 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1918748ns 32824 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1919202ns 32832 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1919373ns 32835 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1919657ns 32840 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1919941ns 32845 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1920225ns 32850 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1920680ns 32858 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1920850ns 32861 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1921135ns 32866 1a110850 fd5ff06f jal x0, -44 +1921419ns 32871 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1921703ns 32876 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1922101ns 32883 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1922271ns 32886 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1922726ns 32894 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1922896ns 32897 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1923181ns 32902 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1923465ns 32907 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1923749ns 32912 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1924204ns 32920 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1924374ns 32923 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1924658ns 32928 1a110850 fd5ff06f jal x0, -44 +1924942ns 32933 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1925227ns 32938 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1925624ns 32945 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1925795ns 32948 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1926250ns 32956 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1926420ns 32959 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1926704ns 32964 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1926988ns 32969 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1927272ns 32974 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1927727ns 32982 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1927898ns 32985 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1928182ns 32990 1a110850 fd5ff06f jal x0, -44 +1928466ns 32995 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1928750ns 33000 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1929148ns 33007 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1929318ns 33010 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1929773ns 33018 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1929944ns 33021 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1930228ns 33026 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1930512ns 33031 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1930796ns 33036 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1931251ns 33044 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1931421ns 33047 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1931705ns 33052 1a110850 fd5ff06f jal x0, -44 +1931990ns 33057 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1932274ns 33062 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1932672ns 33069 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1932842ns 33072 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1933297ns 33080 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1933467ns 33083 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1933751ns 33088 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1934035ns 33093 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1934320ns 33098 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1934774ns 33106 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1934945ns 33109 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1935229ns 33114 1a110850 fd5ff06f jal x0, -44 +1935513ns 33119 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1935797ns 33124 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1936195ns 33131 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1936366ns 33134 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1936820ns 33142 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1936991ns 33145 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1937275ns 33150 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1937559ns 33155 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1937843ns 33160 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1938298ns 33168 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1938468ns 33171 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1938753ns 33176 1a110850 fd5ff06f jal x0, -44 +1939037ns 33181 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1939321ns 33186 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1939719ns 33193 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1939889ns 33196 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1940344ns 33204 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1940514ns 33207 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1940799ns 33212 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1941083ns 33217 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1941367ns 33222 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1941821ns 33230 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1941992ns 33233 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1942276ns 33238 1a110850 fd5ff06f jal x0, -44 +1942560ns 33243 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1942844ns 33248 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1943242ns 33255 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1943413ns 33258 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1943867ns 33266 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1944038ns 33269 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1944322ns 33274 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1944606ns 33279 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1944890ns 33284 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1945345ns 33292 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1945516ns 33295 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1945800ns 33300 1a110850 fd5ff06f jal x0, -44 +1946084ns 33305 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1946368ns 33310 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1946766ns 33317 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1946936ns 33320 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1947391ns 33328 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1947562ns 33331 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1947846ns 33336 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1948130ns 33341 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1948414ns 33346 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1948869ns 33354 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1949039ns 33357 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1949323ns 33362 1a110850 fd5ff06f jal x0, -44 +1949607ns 33367 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1949892ns 33372 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1950289ns 33379 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1950460ns 33382 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1950915ns 33390 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1951085ns 33393 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1951369ns 33398 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1951653ns 33403 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1951938ns 33408 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1952392ns 33416 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1952563ns 33419 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1952847ns 33424 1a110850 fd5ff06f jal x0, -44 +1953131ns 33429 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1953415ns 33434 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1953813ns 33441 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1953984ns 33444 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1954438ns 33452 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1954609ns 33455 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1954893ns 33460 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1955177ns 33465 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1955461ns 33470 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1955916ns 33478 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1956086ns 33481 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1956370ns 33486 1a110850 fd5ff06f jal x0, -44 +1956655ns 33491 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1956939ns 33496 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1957337ns 33503 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1957507ns 33506 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1957962ns 33514 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1958132ns 33517 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1958416ns 33522 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1958701ns 33527 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1958985ns 33532 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1959439ns 33540 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1959610ns 33543 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1959894ns 33548 1a110850 fd5ff06f jal x0, -44 +1960178ns 33553 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1960462ns 33558 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1960860ns 33565 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1961031ns 33568 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1961485ns 33576 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1961656ns 33579 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1961940ns 33584 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1962224ns 33589 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1962508ns 33594 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1962963ns 33602 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1963133ns 33605 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1963418ns 33610 1a110850 fd5ff06f jal x0, -44 +1963702ns 33615 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1963986ns 33620 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1964384ns 33627 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1964554ns 33630 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1965009ns 33638 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1965179ns 33641 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1965464ns 33646 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1965748ns 33651 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1966032ns 33656 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1966487ns 33664 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1966657ns 33667 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1966941ns 33672 1a110850 fd5ff06f jal x0, -44 +1967225ns 33677 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1967510ns 33682 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1967907ns 33689 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1968078ns 33692 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1968533ns 33700 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1968703ns 33703 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1968987ns 33708 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1969271ns 33713 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1969555ns 33718 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1970010ns 33726 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1970181ns 33729 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1970465ns 33734 1a110850 fd5ff06f jal x0, -44 +1970749ns 33739 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1971033ns 33744 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1971431ns 33751 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1971601ns 33754 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1972056ns 33762 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1972227ns 33765 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1972511ns 33770 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1972795ns 33775 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1973079ns 33780 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1973534ns 33788 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1973704ns 33791 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1973988ns 33796 1a110850 fd5ff06f jal x0, -44 +1974273ns 33801 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1974557ns 33806 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1974955ns 33813 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1975125ns 33816 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1975580ns 33824 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1975750ns 33827 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1976034ns 33832 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1976319ns 33837 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1976603ns 33842 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1977057ns 33850 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1977228ns 33853 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1977512ns 33858 1a110850 fd5ff06f jal x0, -44 +1977796ns 33863 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1978080ns 33868 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1978478ns 33875 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1978649ns 33878 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1979103ns 33886 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1979274ns 33889 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1979558ns 33894 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1979842ns 33899 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1980126ns 33904 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1980581ns 33912 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1980751ns 33915 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1981036ns 33920 1a110850 fd5ff06f jal x0, -44 +1981320ns 33925 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1981604ns 33930 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1982002ns 33937 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1982172ns 33940 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1982627ns 33948 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1982797ns 33951 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1983082ns 33956 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1983366ns 33961 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1983650ns 33966 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1984104ns 33974 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1984275ns 33977 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1984559ns 33982 1a110850 fd5ff06f jal x0, -44 +1984843ns 33987 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1985127ns 33992 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1985525ns 33999 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1985696ns 34002 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1986150ns 34010 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1986321ns 34013 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1986605ns 34018 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1986889ns 34023 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1987173ns 34028 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1987628ns 34036 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1987799ns 34039 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1988083ns 34044 1a110850 fd5ff06f jal x0, -44 +1988367ns 34049 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1988651ns 34054 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1989049ns 34061 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1989219ns 34064 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1989674ns 34072 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1989845ns 34075 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1990129ns 34080 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1990413ns 34085 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1990697ns 34090 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1991152ns 34098 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1991322ns 34101 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1991606ns 34106 1a110850 fd5ff06f jal x0, -44 +1991890ns 34111 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1992175ns 34116 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1992572ns 34123 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1992743ns 34126 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1993198ns 34134 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1993368ns 34137 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1993652ns 34142 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1993936ns 34147 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1994221ns 34152 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1994675ns 34160 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1994846ns 34163 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1995130ns 34168 1a110850 fd5ff06f jal x0, -44 +1995414ns 34173 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1995698ns 34178 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1996096ns 34185 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1996267ns 34188 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1996721ns 34196 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +1996892ns 34199 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +1997176ns 34204 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1997460ns 34209 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1997744ns 34214 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +1998199ns 34222 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +1998369ns 34225 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +1998653ns 34230 1a110850 fd5ff06f jal x0, -44 +1998938ns 34235 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +1999222ns 34240 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +1999620ns 34247 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +1999790ns 34250 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2000245ns 34258 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2000415ns 34261 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2000699ns 34266 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2000984ns 34271 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2001268ns 34276 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2001722ns 34284 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2001893ns 34287 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2002177ns 34292 1a110850 fd5ff06f jal x0, -44 +2002461ns 34297 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2002745ns 34302 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2003143ns 34309 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2003314ns 34312 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2003768ns 34320 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2003939ns 34323 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2004223ns 34328 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2004507ns 34333 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2004791ns 34338 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2005246ns 34346 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2005416ns 34349 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2005701ns 34354 1a110850 fd5ff06f jal x0, -44 +2005985ns 34359 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2006269ns 34364 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2006667ns 34371 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2006837ns 34374 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2007292ns 34382 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2007462ns 34385 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2007747ns 34390 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2008031ns 34395 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2008315ns 34400 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2008770ns 34408 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2008940ns 34411 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2009224ns 34416 1a110850 fd5ff06f jal x0, -44 +2009508ns 34421 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2009793ns 34426 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2010190ns 34433 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2010361ns 34436 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2010816ns 34444 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2010986ns 34447 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2011270ns 34452 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2011554ns 34457 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2011839ns 34462 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2012293ns 34470 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2012464ns 34473 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2012748ns 34478 1a110850 fd5ff06f jal x0, -44 +2013032ns 34483 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2013316ns 34488 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2013714ns 34495 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2013884ns 34498 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2014339ns 34506 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2014510ns 34509 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2014794ns 34514 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2015078ns 34519 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2015362ns 34524 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2015817ns 34532 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2015987ns 34535 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2016271ns 34540 1a110850 fd5ff06f jal x0, -44 +2016556ns 34545 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2016840ns 34550 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2017238ns 34557 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2017408ns 34560 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2017863ns 34568 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2018033ns 34571 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2018317ns 34576 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2018602ns 34581 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2018886ns 34586 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2019340ns 34594 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2019511ns 34597 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2019795ns 34602 1a110850 fd5ff06f jal x0, -44 +2020079ns 34607 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2020363ns 34612 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2020761ns 34619 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2020932ns 34622 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2021386ns 34630 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2021557ns 34633 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2021841ns 34638 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2022125ns 34643 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2022409ns 34648 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2022864ns 34656 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2023034ns 34659 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2023319ns 34664 1a110850 fd5ff06f jal x0, -44 +2023603ns 34669 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2023887ns 34674 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2024285ns 34681 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2024455ns 34684 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2024910ns 34692 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2025080ns 34695 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2025365ns 34700 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2025649ns 34705 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2025933ns 34710 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2026387ns 34718 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2026558ns 34721 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2026842ns 34726 1a110850 fd5ff06f jal x0, -44 +2027126ns 34731 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2027410ns 34736 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2027808ns 34743 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2027979ns 34746 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2028433ns 34754 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2028604ns 34757 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2028888ns 34762 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2029172ns 34767 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2029456ns 34772 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2029911ns 34780 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2030082ns 34783 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2030366ns 34788 1a110850 fd5ff06f jal x0, -44 +2030650ns 34793 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2030934ns 34798 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2031332ns 34805 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2031502ns 34808 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2031957ns 34816 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2032128ns 34819 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2032412ns 34824 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2032696ns 34829 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2032980ns 34834 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2033435ns 34842 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2033605ns 34845 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2033889ns 34850 1a110850 fd5ff06f jal x0, -44 +2034173ns 34855 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2034458ns 34860 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2034855ns 34867 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2035026ns 34870 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2035481ns 34878 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2035651ns 34881 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2035935ns 34886 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2036219ns 34891 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2036504ns 34896 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2036958ns 34904 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2037129ns 34907 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2037413ns 34912 1a110850 fd5ff06f jal x0, -44 +2037697ns 34917 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2037981ns 34922 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2038379ns 34929 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2038550ns 34932 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2039004ns 34940 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2039175ns 34943 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2039459ns 34948 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2039743ns 34953 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2040027ns 34958 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2040482ns 34966 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2040652ns 34969 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2040936ns 34974 1a110850 fd5ff06f jal x0, -44 +2041221ns 34979 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2041505ns 34984 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2041903ns 34991 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2042073ns 34994 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2042528ns 35002 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2042698ns 35005 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2042982ns 35010 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2043267ns 35015 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2043551ns 35020 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2044005ns 35028 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2044176ns 35031 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2044460ns 35036 1a110850 fd5ff06f jal x0, -44 +2044744ns 35041 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2045028ns 35046 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2045426ns 35053 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2045597ns 35056 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2046051ns 35064 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2046222ns 35067 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2046506ns 35072 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2046790ns 35077 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2047074ns 35082 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2047529ns 35090 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2047699ns 35093 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2047984ns 35098 1a110850 fd5ff06f jal x0, -44 +2048268ns 35103 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2048552ns 35108 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2048950ns 35115 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2049120ns 35118 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2049575ns 35126 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2049745ns 35129 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2050030ns 35134 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2050314ns 35139 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2050598ns 35144 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2051053ns 35152 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2051223ns 35155 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2051507ns 35160 1a110850 fd5ff06f jal x0, -44 +2051791ns 35165 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2052076ns 35170 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2052473ns 35177 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2052644ns 35180 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2053099ns 35188 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2053269ns 35191 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2053553ns 35196 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2053837ns 35201 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2054122ns 35206 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2054576ns 35214 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2054747ns 35217 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2055031ns 35222 1a110850 fd5ff06f jal x0, -44 +2055315ns 35227 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2055599ns 35232 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2055997ns 35239 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2056167ns 35242 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2056622ns 35250 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2056793ns 35253 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2057077ns 35258 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2057361ns 35263 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2057645ns 35268 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2058100ns 35276 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2058270ns 35279 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2058554ns 35284 1a110850 fd5ff06f jal x0, -44 +2058839ns 35289 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2059123ns 35294 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2059521ns 35301 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2059691ns 35304 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2060146ns 35312 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2060316ns 35315 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2060600ns 35320 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2060885ns 35325 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2061169ns 35330 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2061623ns 35338 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2061794ns 35341 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2062078ns 35346 1a110850 fd5ff06f jal x0, -44 +2062362ns 35351 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2062646ns 35356 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2063044ns 35363 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2063215ns 35366 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2063669ns 35374 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2063840ns 35377 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2064124ns 35382 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2064408ns 35387 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2064692ns 35392 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2065147ns 35400 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2065317ns 35403 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2065602ns 35408 1a110850 fd5ff06f jal x0, -44 +2065886ns 35413 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2066170ns 35418 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2066568ns 35425 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2066738ns 35428 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2067193ns 35436 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2067363ns 35439 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2067648ns 35444 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2067932ns 35449 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2068216ns 35454 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2068671ns 35462 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2068841ns 35465 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2069125ns 35470 1a110850 fd5ff06f jal x0, -44 +2069409ns 35475 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2069693ns 35480 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2070091ns 35487 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2070262ns 35490 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2070716ns 35498 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2070887ns 35501 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2071171ns 35506 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2071455ns 35511 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2071739ns 35516 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2072194ns 35524 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2072365ns 35527 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2072649ns 35532 1a110850 fd5ff06f jal x0, -44 +2072933ns 35537 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2073217ns 35542 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2073615ns 35549 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2073785ns 35552 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2074240ns 35560 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2074411ns 35563 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2074695ns 35568 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2074979ns 35573 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2075263ns 35578 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2075718ns 35586 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2075888ns 35589 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2076172ns 35594 1a110850 fd5ff06f jal x0, -44 +2076456ns 35599 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2076741ns 35604 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2077138ns 35611 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2077309ns 35614 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2077764ns 35622 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2077934ns 35625 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2078218ns 35630 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2078502ns 35635 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2078787ns 35640 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2079241ns 35648 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2079412ns 35651 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2079696ns 35656 1a110850 fd5ff06f jal x0, -44 +2079980ns 35661 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2080264ns 35666 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2080662ns 35673 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2080833ns 35676 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2081287ns 35684 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2081458ns 35687 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2081742ns 35692 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2082026ns 35697 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2082310ns 35702 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2082765ns 35710 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2082935ns 35713 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2083219ns 35718 1a110850 fd5ff06f jal x0, -44 +2083504ns 35723 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2083788ns 35728 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2084186ns 35735 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2084356ns 35738 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2084811ns 35746 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2084981ns 35749 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2085265ns 35754 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2085550ns 35759 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2085834ns 35764 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2086288ns 35772 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2086459ns 35775 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2086743ns 35780 1a110850 fd5ff06f jal x0, -44 +2087027ns 35785 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2087311ns 35790 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2087709ns 35797 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2087880ns 35800 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2088334ns 35808 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2088505ns 35811 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2088789ns 35816 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2089073ns 35821 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2089357ns 35826 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2089812ns 35834 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2089983ns 35837 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2090267ns 35842 1a110850 fd5ff06f jal x0, -44 +2090551ns 35847 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2090835ns 35852 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2091233ns 35859 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2091403ns 35862 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2091858ns 35870 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2092028ns 35873 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2092313ns 35878 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2092597ns 35883 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2092881ns 35888 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2093336ns 35896 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2093506ns 35899 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2093790ns 35904 1a110850 fd5ff06f jal x0, -44 +2094074ns 35909 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2094359ns 35914 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2094756ns 35921 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2094927ns 35924 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2095382ns 35932 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2095552ns 35935 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2095836ns 35940 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2096120ns 35945 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2096405ns 35950 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2096859ns 35958 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2097030ns 35961 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2097314ns 35966 1a110850 fd5ff06f jal x0, -44 +2097598ns 35971 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2097882ns 35976 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2098280ns 35983 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2098450ns 35986 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2098905ns 35994 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2099076ns 35997 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2099360ns 36002 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2099644ns 36007 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2099928ns 36012 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2100383ns 36020 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2100553ns 36023 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2100837ns 36028 1a110850 fd5ff06f jal x0, -44 +2101122ns 36033 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2101406ns 36038 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2101804ns 36045 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2101974ns 36048 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2102429ns 36056 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2102599ns 36059 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2102883ns 36064 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2103168ns 36069 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2103452ns 36074 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2103906ns 36082 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2104077ns 36085 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2104361ns 36090 1a110850 fd5ff06f jal x0, -44 +2104645ns 36095 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2104929ns 36100 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2105327ns 36107 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2105498ns 36110 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2105952ns 36118 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2106123ns 36121 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2106407ns 36126 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2106691ns 36131 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2106975ns 36136 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2107430ns 36144 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2107600ns 36147 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2107885ns 36152 1a110850 fd5ff06f jal x0, -44 +2108169ns 36157 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2108453ns 36162 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2108851ns 36169 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2109021ns 36172 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2109476ns 36180 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2109646ns 36183 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2109931ns 36188 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2110215ns 36193 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2110499ns 36198 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2110954ns 36206 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2111124ns 36209 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2111408ns 36214 1a110850 fd5ff06f jal x0, -44 +2111692ns 36219 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2111976ns 36224 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2112374ns 36231 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2112545ns 36234 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2112999ns 36242 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2113170ns 36245 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2113454ns 36250 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2113738ns 36255 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2114022ns 36260 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2114477ns 36268 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2114648ns 36271 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2114932ns 36276 1a110850 fd5ff06f jal x0, -44 +2115216ns 36281 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2115500ns 36286 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2115898ns 36293 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2116068ns 36296 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2116523ns 36304 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2116694ns 36307 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2116978ns 36312 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2117262ns 36317 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2117546ns 36322 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2118001ns 36330 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2118171ns 36333 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2118455ns 36338 1a110850 fd5ff06f jal x0, -44 +2118739ns 36343 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2119024ns 36348 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2119421ns 36355 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2119592ns 36358 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2120047ns 36366 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2120217ns 36369 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2120501ns 36374 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2120785ns 36379 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2121070ns 36384 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2121524ns 36392 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2121695ns 36395 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2121979ns 36400 1a110850 fd5ff06f jal x0, -44 +2122263ns 36405 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2122547ns 36410 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2122945ns 36417 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2123116ns 36420 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2123570ns 36428 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2123741ns 36431 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2124025ns 36436 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2124309ns 36441 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2124593ns 36446 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2125048ns 36454 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2125218ns 36457 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2125503ns 36462 1a110850 fd5ff06f jal x0, -44 +2125787ns 36467 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2126071ns 36472 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2126469ns 36479 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2126639ns 36482 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2127094ns 36490 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2127264ns 36493 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2127548ns 36498 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2127833ns 36503 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2128117ns 36508 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2128571ns 36516 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2128742ns 36519 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2129026ns 36524 1a110850 fd5ff06f jal x0, -44 +2129310ns 36529 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2129594ns 36534 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2129992ns 36541 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2130163ns 36544 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2130617ns 36552 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2130788ns 36555 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2131072ns 36560 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2131356ns 36565 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2131640ns 36570 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2132095ns 36578 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2132266ns 36581 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2132550ns 36586 1a110850 fd5ff06f jal x0, -44 +2132834ns 36591 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2133118ns 36596 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2133516ns 36603 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2133686ns 36606 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2134141ns 36614 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2134311ns 36617 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2134596ns 36622 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2134880ns 36627 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2135164ns 36632 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2135619ns 36640 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2135789ns 36643 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2136073ns 36648 1a110850 fd5ff06f jal x0, -44 +2136357ns 36653 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2136642ns 36658 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2137039ns 36665 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2137210ns 36668 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2137665ns 36676 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2137835ns 36679 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2138119ns 36684 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2138403ns 36689 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2138688ns 36694 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2139142ns 36702 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2139313ns 36705 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2139597ns 36710 1a110850 fd5ff06f jal x0, -44 +2139881ns 36715 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2140165ns 36720 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2140563ns 36727 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2140733ns 36730 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2141188ns 36738 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2141359ns 36741 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2141643ns 36746 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2141927ns 36751 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2142211ns 36756 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2142666ns 36764 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2142836ns 36767 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2143120ns 36772 1a110850 fd5ff06f jal x0, -44 +2143405ns 36777 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2143689ns 36782 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2144087ns 36789 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2144257ns 36792 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2144712ns 36800 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2144882ns 36803 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2145166ns 36808 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2145451ns 36813 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2145735ns 36818 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2146189ns 36826 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2146360ns 36829 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2146644ns 36834 1a110850 fd5ff06f jal x0, -44 +2146928ns 36839 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2147212ns 36844 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2147610ns 36851 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2147781ns 36854 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2148235ns 36862 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2148406ns 36865 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2148690ns 36870 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2148974ns 36875 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2149258ns 36880 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2149713ns 36888 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2149883ns 36891 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2150168ns 36896 1a110850 fd5ff06f jal x0, -44 +2150452ns 36901 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2150736ns 36906 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2151134ns 36913 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2151304ns 36916 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2151759ns 36924 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2151929ns 36927 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2152214ns 36932 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2152498ns 36937 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2152782ns 36942 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2153237ns 36950 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2153407ns 36953 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2153691ns 36958 1a110850 fd5ff06f jal x0, -44 +2153975ns 36963 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2154259ns 36968 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2154657ns 36975 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2154828ns 36978 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2155282ns 36986 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2155453ns 36989 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2155737ns 36994 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2156021ns 36999 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2156305ns 37004 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2156760ns 37012 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2156931ns 37015 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2157215ns 37020 1a110850 fd5ff06f jal x0, -44 +2157499ns 37025 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2157783ns 37030 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2158181ns 37037 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2158351ns 37040 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2158806ns 37048 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2158977ns 37051 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2159261ns 37056 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2159545ns 37061 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2159829ns 37066 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2160284ns 37074 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2160454ns 37077 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2160738ns 37082 1a110850 fd5ff06f jal x0, -44 +2161023ns 37087 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2161307ns 37092 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2161704ns 37099 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2161875ns 37102 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2162330ns 37110 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2162500ns 37113 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2162784ns 37118 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2163068ns 37123 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2163353ns 37128 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2163807ns 37136 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2163978ns 37139 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2164262ns 37144 1a110850 fd5ff06f jal x0, -44 +2164546ns 37149 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2164830ns 37154 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2165228ns 37161 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2165399ns 37164 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2165853ns 37172 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2166024ns 37175 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2166308ns 37180 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2166592ns 37185 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2166876ns 37190 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2167331ns 37198 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2167501ns 37201 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2167786ns 37206 1a110850 fd5ff06f jal x0, -44 +2168070ns 37211 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2168354ns 37216 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2168752ns 37223 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2168922ns 37226 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2169377ns 37234 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2169547ns 37237 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2169831ns 37242 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2170116ns 37247 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2170400ns 37252 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2170854ns 37260 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2171025ns 37263 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2171309ns 37268 1a110850 fd5ff06f jal x0, -44 +2171593ns 37273 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2171877ns 37278 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2172275ns 37285 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2172446ns 37288 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2172900ns 37296 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2173071ns 37299 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2173355ns 37304 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2173639ns 37309 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2173923ns 37314 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2174378ns 37322 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2174549ns 37325 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2174833ns 37330 1a110850 fd5ff06f jal x0, -44 +2175117ns 37335 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2175401ns 37340 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2175799ns 37347 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2175969ns 37350 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2176424ns 37358 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2176594ns 37361 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2176879ns 37366 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2177163ns 37371 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2177447ns 37376 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2177902ns 37384 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2178072ns 37387 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2178356ns 37392 1a110850 fd5ff06f jal x0, -44 +2178640ns 37397 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2178925ns 37402 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2179322ns 37409 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2179493ns 37412 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2179948ns 37420 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2180118ns 37423 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2180402ns 37428 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2180686ns 37433 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2180971ns 37438 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2181425ns 37446 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2181596ns 37449 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2181880ns 37454 1a110850 fd5ff06f jal x0, -44 +2182164ns 37459 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2182448ns 37464 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2182846ns 37471 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2183016ns 37474 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2183471ns 37482 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2183642ns 37485 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2183926ns 37490 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2184210ns 37495 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2184494ns 37500 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2184949ns 37508 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2185119ns 37511 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2185403ns 37516 1a110850 fd5ff06f jal x0, -44 +2185688ns 37521 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2185972ns 37526 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2186370ns 37533 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2186540ns 37536 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2186995ns 37544 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2187165ns 37547 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2187449ns 37552 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2187734ns 37557 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2188018ns 37562 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2188472ns 37570 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2188643ns 37573 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2188927ns 37578 1a110850 fd5ff06f jal x0, -44 +2189211ns 37583 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2189495ns 37588 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2189893ns 37595 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2190064ns 37598 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2190518ns 37606 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2190689ns 37609 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2190973ns 37614 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2191257ns 37619 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2191541ns 37624 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2191996ns 37632 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2192166ns 37635 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2192451ns 37640 1a110850 fd5ff06f jal x0, -44 +2192735ns 37645 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2193019ns 37650 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2193417ns 37657 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2193587ns 37660 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2194042ns 37668 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2194212ns 37671 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2194497ns 37676 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2194781ns 37681 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2195065ns 37686 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2195520ns 37694 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2195690ns 37697 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2195974ns 37702 1a110850 fd5ff06f jal x0, -44 +2196258ns 37707 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2196543ns 37712 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2196940ns 37719 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2197111ns 37722 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2197565ns 37730 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2197736ns 37733 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2198020ns 37738 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2198304ns 37743 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2198588ns 37748 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2199043ns 37756 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2199214ns 37759 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2199498ns 37764 1a110850 fd5ff06f jal x0, -44 +2199782ns 37769 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2200066ns 37774 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2200464ns 37781 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2200634ns 37784 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2201089ns 37792 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2201260ns 37795 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2201544ns 37800 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2201828ns 37805 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2202112ns 37810 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2202567ns 37818 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2202737ns 37821 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2203021ns 37826 1a110850 fd5ff06f jal x0, -44 +2203306ns 37831 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2203590ns 37836 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2203987ns 37843 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2204158ns 37846 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2204613ns 37854 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2204783ns 37857 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2205067ns 37862 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2205351ns 37867 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2205636ns 37872 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2206090ns 37880 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2206261ns 37883 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2206545ns 37888 1a110850 fd5ff06f jal x0, -44 +2206829ns 37893 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2207113ns 37898 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2207511ns 37905 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2207682ns 37908 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2208136ns 37916 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2208307ns 37919 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2208591ns 37924 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2208875ns 37929 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2209159ns 37934 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2209614ns 37942 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2209784ns 37945 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2210069ns 37950 1a110850 fd5ff06f jal x0, -44 +2210353ns 37955 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2210637ns 37960 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2211035ns 37967 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2211205ns 37970 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2211660ns 37978 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2211830ns 37981 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2212114ns 37986 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2212399ns 37991 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2212683ns 37996 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2213137ns 38004 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2213308ns 38007 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2213592ns 38012 1a110850 fd5ff06f jal x0, -44 +2213876ns 38017 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2214160ns 38022 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2214558ns 38029 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2214729ns 38032 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2215183ns 38040 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2215354ns 38043 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2215638ns 38048 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2215922ns 38053 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2216206ns 38058 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2216661ns 38066 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2216832ns 38069 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2217116ns 38074 1a110850 fd5ff06f jal x0, -44 +2217400ns 38079 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2217684ns 38084 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2218082ns 38091 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2218252ns 38094 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2218707ns 38102 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2218877ns 38105 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2219162ns 38110 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2219446ns 38115 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2219730ns 38120 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2220185ns 38128 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2220355ns 38131 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2220639ns 38136 1a110850 fd5ff06f jal x0, -44 +2220923ns 38141 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2221208ns 38146 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2221605ns 38153 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2221776ns 38156 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2222231ns 38164 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2222401ns 38167 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2222685ns 38172 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2222969ns 38177 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2223254ns 38182 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2223708ns 38190 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2223879ns 38193 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2224163ns 38198 1a110850 fd5ff06f jal x0, -44 +2224447ns 38203 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2224731ns 38208 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2225129ns 38215 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2225299ns 38218 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2225754ns 38226 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2225925ns 38229 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2226209ns 38234 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2226493ns 38239 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2226777ns 38244 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2227232ns 38252 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2227402ns 38255 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2227686ns 38260 1a110850 fd5ff06f jal x0, -44 +2227971ns 38265 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2228255ns 38270 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2228653ns 38277 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2228823ns 38280 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2229278ns 38288 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2229448ns 38291 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2229732ns 38296 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2230017ns 38301 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2230301ns 38306 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2230755ns 38314 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2230926ns 38317 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2231210ns 38322 1a110850 fd5ff06f jal x0, -44 +2231494ns 38327 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2231778ns 38332 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2232176ns 38339 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2232347ns 38342 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2232801ns 38350 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2232972ns 38353 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2233256ns 38358 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2233540ns 38363 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2233824ns 38368 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2234279ns 38376 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2234449ns 38379 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2234734ns 38384 1a110850 fd5ff06f jal x0, -44 +2235018ns 38389 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2235302ns 38394 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2235700ns 38401 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2235870ns 38404 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2236325ns 38412 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2236495ns 38415 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2236780ns 38420 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2237064ns 38425 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2237348ns 38430 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2237803ns 38438 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2237973ns 38441 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2238257ns 38446 1a110850 fd5ff06f jal x0, -44 +2238541ns 38451 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2238826ns 38456 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2239223ns 38463 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2239394ns 38466 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2239848ns 38474 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2240019ns 38477 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2240303ns 38482 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2240587ns 38487 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2240871ns 38492 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2241326ns 38500 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2241497ns 38503 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2241781ns 38508 1a110850 fd5ff06f jal x0, -44 +2242065ns 38513 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2242349ns 38518 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2242747ns 38525 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2242917ns 38528 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2243372ns 38536 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2243543ns 38539 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2243827ns 38544 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2244111ns 38549 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2244395ns 38554 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2244850ns 38562 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2245020ns 38565 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2245304ns 38570 1a110850 fd5ff06f jal x0, -44 +2245589ns 38575 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2245873ns 38580 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2246271ns 38587 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2246441ns 38590 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2246896ns 38598 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2247066ns 38601 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2247350ns 38606 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2247634ns 38611 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2247919ns 38616 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2248373ns 38624 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2248544ns 38627 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2248828ns 38632 1a110850 fd5ff06f jal x0, -44 +2249112ns 38637 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2249396ns 38642 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2249794ns 38649 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2249965ns 38652 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2250419ns 38660 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2250590ns 38663 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2250874ns 38668 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2251158ns 38673 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2251442ns 38678 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2251897ns 38686 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2252067ns 38689 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2252352ns 38694 1a110850 fd5ff06f jal x0, -44 +2252636ns 38699 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2252920ns 38704 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2253318ns 38711 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2253488ns 38714 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2253943ns 38722 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2254113ns 38725 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2254397ns 38730 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2254682ns 38735 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2254966ns 38740 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2255420ns 38748 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2255591ns 38751 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2255875ns 38756 1a110850 fd5ff06f jal x0, -44 +2256159ns 38761 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2256443ns 38766 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2256841ns 38773 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2257012ns 38776 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2257466ns 38784 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2257637ns 38787 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2257921ns 38792 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2258205ns 38797 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2258489ns 38802 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2258944ns 38810 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2259115ns 38813 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2259399ns 38818 1a110850 fd5ff06f jal x0, -44 +2259683ns 38823 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2259967ns 38828 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2260365ns 38835 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2260535ns 38838 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2260990ns 38846 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2261160ns 38849 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2261445ns 38854 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2261729ns 38859 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2262013ns 38864 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2262468ns 38872 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2262638ns 38875 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2262922ns 38880 1a110850 fd5ff06f jal x0, -44 +2263206ns 38885 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2263491ns 38890 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2263888ns 38897 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2264059ns 38900 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2264514ns 38908 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2264684ns 38911 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2264968ns 38916 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2265252ns 38921 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2265537ns 38926 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2265991ns 38934 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2266162ns 38937 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2266446ns 38942 1a110850 fd5ff06f jal x0, -44 +2266730ns 38947 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2267014ns 38952 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2267412ns 38959 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2267583ns 38962 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2268037ns 38970 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2268208ns 38973 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2268492ns 38978 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2268776ns 38983 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2269060ns 38988 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2269515ns 38996 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2269685ns 38999 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2269969ns 39004 1a110850 fd5ff06f jal x0, -44 +2270254ns 39009 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2270538ns 39014 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2270936ns 39021 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2271106ns 39024 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2271561ns 39032 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2271731ns 39035 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2272015ns 39040 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2272300ns 39045 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2272584ns 39050 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2273038ns 39058 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2273209ns 39061 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2273493ns 39066 1a110850 fd5ff06f jal x0, -44 +2273777ns 39071 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2274061ns 39076 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2274459ns 39083 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2274630ns 39086 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2275084ns 39094 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2275255ns 39097 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2275539ns 39102 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2275823ns 39107 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2276107ns 39112 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2276562ns 39120 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2276732ns 39123 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2277017ns 39128 1a110850 fd5ff06f jal x0, -44 +2277301ns 39133 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2277585ns 39138 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2277983ns 39145 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2278153ns 39148 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2278608ns 39156 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2278778ns 39159 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2279063ns 39164 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2279347ns 39169 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2279631ns 39174 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2280086ns 39182 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2280256ns 39185 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2280540ns 39190 1a110850 fd5ff06f jal x0, -44 +2280824ns 39195 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2281109ns 39200 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2281506ns 39207 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2281677ns 39210 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2282131ns 39218 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2282302ns 39221 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2282586ns 39226 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2282870ns 39231 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2283154ns 39236 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2283609ns 39244 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2283780ns 39247 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2284064ns 39252 1a110850 fd5ff06f jal x0, -44 +2284348ns 39257 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2284632ns 39262 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2285030ns 39269 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2285200ns 39272 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2285655ns 39280 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2285826ns 39283 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2286110ns 39288 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2286394ns 39293 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2286678ns 39298 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2287133ns 39306 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2287303ns 39309 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2287587ns 39314 1a110850 fd5ff06f jal x0, -44 +2287872ns 39319 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2288156ns 39324 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2288554ns 39331 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2288724ns 39334 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2289179ns 39342 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2289349ns 39345 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2289633ns 39350 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2289917ns 39355 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2290202ns 39360 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2290656ns 39368 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2290827ns 39371 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2291111ns 39376 1a110850 fd5ff06f jal x0, -44 +2291395ns 39381 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2291679ns 39386 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2292077ns 39393 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2292248ns 39396 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2292702ns 39404 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2292873ns 39407 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2293157ns 39412 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2293441ns 39417 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2293725ns 39422 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2294180ns 39430 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2294350ns 39433 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2294635ns 39438 1a110850 fd5ff06f jal x0, -44 +2294919ns 39443 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2295203ns 39448 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2295601ns 39455 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2295771ns 39458 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2296226ns 39466 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2296396ns 39469 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2296680ns 39474 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2296965ns 39479 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2297249ns 39484 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2297703ns 39492 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2297874ns 39495 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2298158ns 39500 1a110850 fd5ff06f jal x0, -44 +2298442ns 39505 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2298726ns 39510 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2299124ns 39517 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2299295ns 39520 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2299749ns 39528 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2299920ns 39531 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2300204ns 39536 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2300488ns 39541 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2300772ns 39546 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2301227ns 39554 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2301398ns 39557 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2301682ns 39562 1a110850 fd5ff06f jal x0, -44 +2301966ns 39567 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2302250ns 39572 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2302648ns 39579 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2302818ns 39582 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2303273ns 39590 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2303443ns 39593 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2303728ns 39598 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2304012ns 39603 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2304296ns 39608 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2304751ns 39616 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2304921ns 39619 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2305205ns 39624 1a110850 fd5ff06f jal x0, -44 +2305489ns 39629 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2305774ns 39634 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2306171ns 39641 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2306342ns 39644 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2306797ns 39652 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2306967ns 39655 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2307251ns 39660 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2307535ns 39665 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2307820ns 39670 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2308274ns 39678 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2308445ns 39681 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2308729ns 39686 1a110850 fd5ff06f jal x0, -44 +2309013ns 39691 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2309297ns 39696 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2309695ns 39703 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2309866ns 39706 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2310320ns 39714 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2310491ns 39717 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2310775ns 39722 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2311059ns 39727 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2311343ns 39732 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2311798ns 39740 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2311968ns 39743 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2312252ns 39748 1a110850 fd5ff06f jal x0, -44 +2312537ns 39753 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2312821ns 39758 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2313219ns 39765 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2313389ns 39768 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2313844ns 39776 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2314014ns 39779 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2314298ns 39784 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2314583ns 39789 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2314867ns 39794 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2315321ns 39802 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2315492ns 39805 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2315776ns 39810 1a110850 fd5ff06f jal x0, -44 +2316060ns 39815 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2316344ns 39820 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2316742ns 39827 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2316913ns 39830 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2317367ns 39838 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2317538ns 39841 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2317822ns 39846 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2318106ns 39851 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2318390ns 39856 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2318845ns 39864 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2319015ns 39867 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2319300ns 39872 1a110850 fd5ff06f jal x0, -44 +2319584ns 39877 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2319868ns 39882 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2320266ns 39889 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2320436ns 39892 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2320891ns 39900 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2321061ns 39903 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2321346ns 39908 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2321630ns 39913 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2321914ns 39918 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2322369ns 39926 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2322539ns 39929 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2322823ns 39934 1a110850 fd5ff06f jal x0, -44 +2323107ns 39939 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2323392ns 39944 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2323789ns 39951 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2323960ns 39954 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2324415ns 39962 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2324585ns 39965 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2324869ns 39970 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2325153ns 39975 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2325437ns 39980 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2325892ns 39988 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2326063ns 39991 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2326347ns 39996 1a110850 fd5ff06f jal x0, -44 +2326631ns 40001 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2326915ns 40006 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2327313ns 40013 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2327483ns 40016 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2327938ns 40024 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2328109ns 40027 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2328393ns 40032 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2328677ns 40037 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2328961ns 40042 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2329416ns 40050 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2329586ns 40053 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2329870ns 40058 1a110850 fd5ff06f jal x0, -44 +2330155ns 40063 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2330439ns 40068 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2330837ns 40075 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2331007ns 40078 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2331462ns 40086 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2331632ns 40089 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2331916ns 40094 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2332200ns 40099 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2332485ns 40104 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2332939ns 40112 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2333110ns 40115 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2333394ns 40120 1a110850 fd5ff06f jal x0, -44 +2333678ns 40125 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2333962ns 40130 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2334360ns 40137 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2334531ns 40140 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2334985ns 40148 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2335156ns 40151 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2335440ns 40156 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2335724ns 40161 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2336008ns 40166 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2336463ns 40174 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2336633ns 40177 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2336918ns 40182 1a110850 fd5ff06f jal x0, -44 +2337202ns 40187 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2337486ns 40192 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2337884ns 40199 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2338054ns 40202 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2338509ns 40210 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2338679ns 40213 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2338963ns 40218 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2339248ns 40223 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2339532ns 40228 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2339986ns 40236 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2340157ns 40239 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2340441ns 40244 1a110850 fd5ff06f jal x0, -44 +2340725ns 40249 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2341009ns 40254 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2341407ns 40261 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2341578ns 40264 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2342032ns 40272 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2342203ns 40275 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2342487ns 40280 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2342771ns 40285 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2343055ns 40290 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2343510ns 40298 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2343681ns 40301 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2343965ns 40306 1a110850 fd5ff06f jal x0, -44 +2344249ns 40311 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2344533ns 40316 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2344931ns 40323 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2345101ns 40326 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2345556ns 40334 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2345727ns 40337 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2346011ns 40342 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2346295ns 40347 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2346579ns 40352 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2347034ns 40360 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2347204ns 40363 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2347488ns 40368 1a110850 fd5ff06f jal x0, -44 +2347772ns 40373 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2348057ns 40378 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2348454ns 40385 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2348625ns 40388 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2349080ns 40396 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2349250ns 40399 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2349534ns 40404 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2349818ns 40409 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2350103ns 40414 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2350557ns 40422 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2350728ns 40425 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2351012ns 40430 1a110850 fd5ff06f jal x0, -44 +2351296ns 40435 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2351580ns 40440 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2351978ns 40447 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2352149ns 40450 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2352603ns 40458 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2352774ns 40461 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2353058ns 40466 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2353342ns 40471 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2353626ns 40476 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2354081ns 40484 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2354251ns 40487 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2354535ns 40492 1a110850 fd5ff06f jal x0, -44 +2354820ns 40497 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2355104ns 40502 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2355502ns 40509 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2355672ns 40512 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2356127ns 40520 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2356297ns 40523 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2356581ns 40528 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2356866ns 40533 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2357150ns 40538 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2357604ns 40546 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2357775ns 40549 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2358059ns 40554 1a110850 fd5ff06f jal x0, -44 +2358343ns 40559 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2358627ns 40564 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2359025ns 40571 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2359196ns 40574 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2359650ns 40582 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2359821ns 40585 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2360105ns 40590 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2360389ns 40595 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2360673ns 40600 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2361128ns 40608 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2361298ns 40611 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2361583ns 40616 1a110850 fd5ff06f jal x0, -44 +2361867ns 40621 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2362151ns 40626 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2362549ns 40633 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2362719ns 40636 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2363174ns 40644 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2363344ns 40647 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2363629ns 40652 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2363913ns 40657 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2364197ns 40662 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2364652ns 40670 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2364822ns 40673 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2365106ns 40678 1a110850 fd5ff06f jal x0, -44 +2365390ns 40683 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2365675ns 40688 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2366072ns 40695 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2366243ns 40698 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2366698ns 40706 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2366868ns 40709 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2367152ns 40714 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2367436ns 40719 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2367720ns 40724 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2368175ns 40732 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2368346ns 40735 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2368630ns 40740 1a110850 fd5ff06f jal x0, -44 +2368914ns 40745 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2369198ns 40750 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2369596ns 40757 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2369766ns 40760 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2370221ns 40768 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2370392ns 40771 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2370676ns 40776 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2370960ns 40781 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2371244ns 40786 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2371699ns 40794 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2371869ns 40797 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2372153ns 40802 1a110850 fd5ff06f jal x0, -44 +2372438ns 40807 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2372722ns 40812 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2373120ns 40819 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2373290ns 40822 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2373745ns 40830 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2373915ns 40833 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2374199ns 40838 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2374483ns 40843 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2374768ns 40848 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2375222ns 40856 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2375393ns 40859 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2375677ns 40864 1a110850 fd5ff06f jal x0, -44 +2375961ns 40869 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2376245ns 40874 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2376643ns 40881 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2376814ns 40884 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2377268ns 40892 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2377439ns 40895 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2377723ns 40900 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2378007ns 40905 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2378291ns 40910 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2378746ns 40918 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2378916ns 40921 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2379201ns 40926 1a110850 fd5ff06f jal x0, -44 +2379485ns 40931 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2379769ns 40936 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2380167ns 40943 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2380337ns 40946 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2380792ns 40954 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2380962ns 40957 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2381247ns 40962 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2381531ns 40967 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2381815ns 40972 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2382269ns 40980 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2382440ns 40983 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2382724ns 40988 1a110850 fd5ff06f jal x0, -44 +2383008ns 40993 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2383292ns 40998 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2383690ns 41005 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2383861ns 41008 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2384315ns 41016 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2384486ns 41019 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2384770ns 41024 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2385054ns 41029 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2385338ns 41034 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2385793ns 41042 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2385964ns 41045 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2386248ns 41050 1a110850 fd5ff06f jal x0, -44 +2386532ns 41055 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2386816ns 41060 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2387214ns 41067 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2387384ns 41070 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2387839ns 41078 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2388010ns 41081 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2388294ns 41086 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2388578ns 41091 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2388862ns 41096 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2389317ns 41104 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2389487ns 41107 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2389771ns 41112 1a110850 fd5ff06f jal x0, -44 +2390055ns 41117 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2390340ns 41122 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2390737ns 41129 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2390908ns 41132 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2391363ns 41140 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2391533ns 41143 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2391817ns 41148 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2392101ns 41153 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2392386ns 41158 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2392840ns 41166 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2393011ns 41169 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2393295ns 41174 1a110850 fd5ff06f jal x0, -44 +2393579ns 41179 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2393863ns 41184 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2394261ns 41191 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2394432ns 41194 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2394886ns 41202 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2395057ns 41205 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2395341ns 41210 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2395625ns 41215 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2395909ns 41220 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2396364ns 41228 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2396534ns 41231 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2396818ns 41236 1a110850 fd5ff06f jal x0, -44 +2397103ns 41241 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2397387ns 41246 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2397785ns 41253 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2397955ns 41256 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2398410ns 41264 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2398580ns 41267 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2398864ns 41272 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2399149ns 41277 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2399433ns 41282 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2399887ns 41290 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2400058ns 41293 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2400342ns 41298 1a110850 fd5ff06f jal x0, -44 +2400626ns 41303 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2400910ns 41308 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2401308ns 41315 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2401479ns 41318 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2401933ns 41326 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2402104ns 41329 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2402388ns 41334 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2402672ns 41339 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2402956ns 41344 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2403411ns 41352 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2403581ns 41355 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2403866ns 41360 1a110850 fd5ff06f jal x0, -44 +2404150ns 41365 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2404434ns 41370 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2404832ns 41377 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2405002ns 41380 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2405457ns 41388 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2405627ns 41391 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2405912ns 41396 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2406196ns 41401 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2406480ns 41406 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2406935ns 41414 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2407105ns 41417 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2407389ns 41422 1a110850 fd5ff06f jal x0, -44 +2407673ns 41427 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2407958ns 41432 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2408355ns 41439 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2408526ns 41442 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2408981ns 41450 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2409151ns 41453 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2409435ns 41458 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2409719ns 41463 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2410003ns 41468 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2410458ns 41476 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2410629ns 41479 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2410913ns 41484 1a110850 fd5ff06f jal x0, -44 +2411197ns 41489 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2411481ns 41494 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2411879ns 41501 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2412049ns 41504 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2412504ns 41512 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2412675ns 41515 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2412959ns 41520 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2413243ns 41525 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2413527ns 41530 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2413982ns 41538 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2414152ns 41541 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2414436ns 41546 1a110850 fd5ff06f jal x0, -44 +2414721ns 41551 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2415005ns 41556 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2415403ns 41563 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2415573ns 41566 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2416028ns 41574 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2416198ns 41577 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2416482ns 41582 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2416767ns 41587 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2417051ns 41592 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2417505ns 41600 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2417676ns 41603 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2417960ns 41608 1a110850 fd5ff06f jal x0, -44 +2418244ns 41613 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2418528ns 41618 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2418926ns 41625 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2419097ns 41628 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2419551ns 41636 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2419722ns 41639 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2420006ns 41644 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2420290ns 41649 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2420574ns 41654 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2421029ns 41662 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2421199ns 41665 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2421484ns 41670 1a110850 fd5ff06f jal x0, -44 +2421768ns 41675 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2422052ns 41680 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2422450ns 41687 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2422620ns 41690 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2423075ns 41698 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2423245ns 41701 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2423530ns 41706 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2423814ns 41711 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2424098ns 41716 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2424552ns 41724 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2424723ns 41727 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2425007ns 41732 1a110850 fd5ff06f jal x0, -44 +2425291ns 41737 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2425575ns 41742 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2425973ns 41749 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2426144ns 41752 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2426598ns 41760 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2426769ns 41763 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2427053ns 41768 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2427337ns 41773 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2427621ns 41778 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2428076ns 41786 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2428247ns 41789 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2428531ns 41794 1a110850 fd5ff06f jal x0, -44 +2428815ns 41799 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2429099ns 41804 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2429497ns 41811 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2429667ns 41814 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2430122ns 41822 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2430293ns 41825 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2430577ns 41830 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2430861ns 41835 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2431145ns 41840 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2431600ns 41848 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2431770ns 41851 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2432054ns 41856 1a110850 fd5ff06f jal x0, -44 +2432338ns 41861 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2432623ns 41866 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2433020ns 41873 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2433191ns 41876 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2433646ns 41884 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2433816ns 41887 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2434100ns 41892 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2434384ns 41897 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2434669ns 41902 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2435123ns 41910 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2435294ns 41913 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2435578ns 41918 1a110850 fd5ff06f jal x0, -44 +2435862ns 41923 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2436146ns 41928 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2436544ns 41935 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2436715ns 41938 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2437169ns 41946 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2437340ns 41949 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2437624ns 41954 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2437908ns 41959 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2438192ns 41964 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2438647ns 41972 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2438817ns 41975 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2439101ns 41980 1a110850 fd5ff06f jal x0, -44 +2439386ns 41985 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2439670ns 41990 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2440068ns 41997 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2440238ns 42000 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2440693ns 42008 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2440863ns 42011 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2441147ns 42016 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2441432ns 42021 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2441716ns 42026 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2442170ns 42034 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2442341ns 42037 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2442625ns 42042 1a110850 fd5ff06f jal x0, -44 +2442909ns 42047 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2443193ns 42052 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2443591ns 42059 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2443762ns 42062 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2444216ns 42070 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2444387ns 42073 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2444671ns 42078 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2444955ns 42083 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2445239ns 42088 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2445694ns 42096 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2445864ns 42099 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2446149ns 42104 1a110850 fd5ff06f jal x0, -44 +2446433ns 42109 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2446717ns 42114 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2447115ns 42121 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2447285ns 42124 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2447740ns 42132 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2447910ns 42135 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2448195ns 42140 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2448479ns 42145 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2448763ns 42150 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2449218ns 42158 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2449388ns 42161 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2449672ns 42166 1a110850 fd5ff06f jal x0, -44 +2449956ns 42171 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2450241ns 42176 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2450638ns 42183 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2450809ns 42186 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2451264ns 42194 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2451434ns 42197 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2451718ns 42202 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2452002ns 42207 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2452287ns 42212 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2452741ns 42220 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2452912ns 42223 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2453196ns 42228 1a110850 fd5ff06f jal x0, -44 +2453480ns 42233 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2453764ns 42238 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2454162ns 42245 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2454332ns 42248 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2454787ns 42256 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2454958ns 42259 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2455242ns 42264 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2455526ns 42269 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2455810ns 42274 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2456265ns 42282 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2456435ns 42285 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2456719ns 42290 1a110850 fd5ff06f jal x0, -44 +2457004ns 42295 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2457288ns 42300 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2457686ns 42307 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2457856ns 42310 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2458311ns 42318 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2458481ns 42321 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2458765ns 42326 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2459050ns 42331 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2459334ns 42336 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2459788ns 42344 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2459959ns 42347 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2460243ns 42352 1a110850 fd5ff06f jal x0, -44 +2460527ns 42357 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2460811ns 42362 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2461209ns 42369 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2461380ns 42372 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2461834ns 42380 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2462005ns 42383 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2462289ns 42388 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2462573ns 42393 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2462857ns 42398 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2463312ns 42406 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2463482ns 42409 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2463767ns 42414 1a110850 fd5ff06f jal x0, -44 +2464051ns 42419 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2464335ns 42424 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2464733ns 42431 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2464903ns 42434 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2465358ns 42442 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2465528ns 42445 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2465813ns 42450 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2466097ns 42455 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2466381ns 42460 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2466835ns 42468 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2467006ns 42471 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2467290ns 42476 1a110850 fd5ff06f jal x0, -44 +2467574ns 42481 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2467858ns 42486 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2468256ns 42493 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2468427ns 42496 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2468881ns 42504 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2469052ns 42507 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2469336ns 42512 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2469620ns 42517 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2469904ns 42522 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2470359ns 42530 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2470530ns 42533 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2470814ns 42538 1a110850 fd5ff06f jal x0, -44 +2471098ns 42543 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2471382ns 42548 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2471780ns 42555 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2471950ns 42558 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2472405ns 42566 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2472576ns 42569 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2472860ns 42574 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2473144ns 42579 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2473428ns 42584 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2473883ns 42592 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2474053ns 42595 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2474337ns 42600 1a110850 fd5ff06f jal x0, -44 +2474621ns 42605 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2474906ns 42610 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2475303ns 42617 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2475474ns 42620 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2475929ns 42628 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2476099ns 42631 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2476383ns 42636 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2476667ns 42641 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2476952ns 42646 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2477406ns 42654 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2477577ns 42657 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2477861ns 42662 1a110850 fd5ff06f jal x0, -44 +2478145ns 42667 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2478429ns 42672 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2478827ns 42679 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2478998ns 42682 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2479452ns 42690 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2479623ns 42693 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2479907ns 42698 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2480191ns 42703 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2480475ns 42708 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2480930ns 42716 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2481100ns 42719 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2481384ns 42724 1a110850 fd5ff06f jal x0, -44 +2481669ns 42729 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2481953ns 42734 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2482351ns 42741 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2482521ns 42744 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2482976ns 42752 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2483146ns 42755 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2483430ns 42760 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2483715ns 42765 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2483999ns 42770 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2484453ns 42778 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2484624ns 42781 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2484908ns 42786 1a110850 fd5ff06f jal x0, -44 +2485192ns 42791 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2485476ns 42796 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2485874ns 42803 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2486045ns 42806 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2486499ns 42814 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2486670ns 42817 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2486954ns 42822 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2487238ns 42827 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2487522ns 42832 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2487977ns 42840 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2488147ns 42843 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2488432ns 42848 1a110850 fd5ff06f jal x0, -44 +2488716ns 42853 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2489000ns 42858 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2489398ns 42865 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2489568ns 42868 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2490023ns 42876 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2490193ns 42879 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2490478ns 42884 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2490762ns 42889 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2491046ns 42894 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2491501ns 42902 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2491671ns 42905 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2491955ns 42910 1a110850 fd5ff06f jal x0, -44 +2492239ns 42915 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2492524ns 42920 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2492921ns 42927 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2493092ns 42930 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2493547ns 42938 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2493717ns 42941 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2494001ns 42946 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2494285ns 42951 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2494570ns 42956 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2495024ns 42964 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2495195ns 42967 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2495479ns 42972 1a110850 fd5ff06f jal x0, -44 +2495763ns 42977 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2496047ns 42982 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2496445ns 42989 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2496615ns 42992 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2497070ns 43000 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2497241ns 43003 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2497525ns 43008 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2497809ns 43013 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2498093ns 43018 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2498548ns 43026 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2498718ns 43029 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2499002ns 43034 1a110850 fd5ff06f jal x0, -44 +2499287ns 43039 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2499571ns 43044 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2499969ns 43051 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2500139ns 43054 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2500594ns 43062 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2500764ns 43065 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2501048ns 43070 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2501333ns 43075 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2501617ns 43080 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2502071ns 43088 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2502242ns 43091 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2502526ns 43096 1a110850 fd5ff06f jal x0, -44 +2502810ns 43101 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2503094ns 43106 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2503492ns 43113 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2503663ns 43116 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2504117ns 43124 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2504288ns 43127 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2504572ns 43132 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2504856ns 43137 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2505140ns 43142 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2505595ns 43150 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2505765ns 43153 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2506050ns 43158 1a110850 fd5ff06f jal x0, -44 +2506334ns 43163 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2506618ns 43168 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2507016ns 43175 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2507186ns 43178 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2507641ns 43186 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2507811ns 43189 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2508096ns 43194 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2508380ns 43199 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2508664ns 43204 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2509119ns 43212 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2509289ns 43215 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2509573ns 43220 1a110850 fd5ff06f jal x0, -44 +2509857ns 43225 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2510141ns 43230 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2510539ns 43237 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2510710ns 43240 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2511164ns 43248 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2511335ns 43251 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2511619ns 43256 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2511903ns 43261 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2512187ns 43266 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2512642ns 43274 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2512813ns 43277 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2513097ns 43282 1a110850 fd5ff06f jal x0, -44 +2513381ns 43287 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2513665ns 43292 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2514063ns 43299 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2514233ns 43302 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2514688ns 43310 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2514859ns 43313 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2515143ns 43318 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2515427ns 43323 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2515711ns 43328 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2516166ns 43336 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2516336ns 43339 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2516620ns 43344 1a110850 fd5ff06f jal x0, -44 +2516904ns 43349 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2517189ns 43354 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2517586ns 43361 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2517757ns 43364 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2518212ns 43372 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2518382ns 43375 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2518666ns 43380 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2518950ns 43385 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2519235ns 43390 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2519689ns 43398 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2519860ns 43401 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2520144ns 43406 1a110850 fd5ff06f jal x0, -44 +2520428ns 43411 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2520712ns 43416 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2521110ns 43423 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2521281ns 43426 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2521735ns 43434 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2521906ns 43437 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2522190ns 43442 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2522474ns 43447 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2522758ns 43452 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2523213ns 43460 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2523383ns 43463 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2523667ns 43468 1a110850 fd5ff06f jal x0, -44 +2523952ns 43473 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2524236ns 43478 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2524634ns 43485 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2524804ns 43488 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2525259ns 43496 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2525429ns 43499 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2525713ns 43504 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2525998ns 43509 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2526282ns 43514 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2526736ns 43522 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2526907ns 43525 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2527191ns 43530 1a110850 fd5ff06f jal x0, -44 +2527475ns 43535 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2527759ns 43540 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2528157ns 43547 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2528328ns 43550 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2528782ns 43558 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2528953ns 43561 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2529237ns 43566 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2529521ns 43571 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2529805ns 43576 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2530260ns 43584 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2530431ns 43587 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2530715ns 43592 1a110850 fd5ff06f jal x0, -44 +2530999ns 43597 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2531283ns 43602 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2531681ns 43609 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2531851ns 43612 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2532306ns 43620 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2532476ns 43623 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2532761ns 43628 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2533045ns 43633 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2533329ns 43638 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2533784ns 43646 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2533954ns 43649 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2534238ns 43654 1a110850 fd5ff06f jal x0, -44 +2534522ns 43659 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2534807ns 43664 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2535204ns 43671 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2535375ns 43674 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2535830ns 43682 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2536000ns 43685 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2536284ns 43690 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2536568ns 43695 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2536853ns 43700 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2537307ns 43708 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2537478ns 43711 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2537762ns 43716 1a110850 fd5ff06f jal x0, -44 +2538046ns 43721 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2538330ns 43726 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2538728ns 43733 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2538898ns 43736 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2539353ns 43744 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2539524ns 43747 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2539808ns 43752 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2540092ns 43757 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2540376ns 43762 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2540831ns 43770 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2541001ns 43773 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2541285ns 43778 1a110850 fd5ff06f jal x0, -44 +2541570ns 43783 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2541854ns 43788 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2542252ns 43795 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2542422ns 43798 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2542877ns 43806 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2543047ns 43809 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2543331ns 43814 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2543616ns 43819 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2543900ns 43824 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2544354ns 43832 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2544525ns 43835 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2544809ns 43840 1a110850 fd5ff06f jal x0, -44 +2545093ns 43845 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2545377ns 43850 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2545775ns 43857 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2545946ns 43860 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2546400ns 43868 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2546571ns 43871 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2546855ns 43876 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2547139ns 43881 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2547423ns 43886 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2547878ns 43894 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2548048ns 43897 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2548333ns 43902 1a110850 fd5ff06f jal x0, -44 +2548617ns 43907 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2548901ns 43912 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2549299ns 43919 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2549469ns 43922 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2549924ns 43930 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2550094ns 43933 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2550379ns 43938 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2550663ns 43943 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2550947ns 43948 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2551402ns 43956 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2551572ns 43959 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2551856ns 43964 1a110850 fd5ff06f jal x0, -44 +2552140ns 43969 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2552424ns 43974 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2552822ns 43981 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2552993ns 43984 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2553447ns 43992 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2553618ns 43995 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2553902ns 44000 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2554186ns 44005 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2554470ns 44010 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2554925ns 44018 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2555096ns 44021 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2555380ns 44026 1a110850 fd5ff06f jal x0, -44 +2555664ns 44031 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2555948ns 44036 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2556346ns 44043 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2556516ns 44046 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2556971ns 44054 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2557142ns 44057 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2557426ns 44062 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2557710ns 44067 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2557994ns 44072 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2558449ns 44080 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2558619ns 44083 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2558903ns 44088 1a110850 fd5ff06f jal x0, -44 +2559187ns 44093 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2559472ns 44098 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2559869ns 44105 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2560040ns 44108 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2560495ns 44116 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2560665ns 44119 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2560949ns 44124 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2561233ns 44129 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2561518ns 44134 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2561972ns 44142 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2562143ns 44145 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2562427ns 44150 1a110850 fd5ff06f jal x0, -44 +2562711ns 44155 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2562995ns 44160 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2563393ns 44167 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2563564ns 44170 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2564018ns 44178 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2564189ns 44181 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2564473ns 44186 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2564757ns 44191 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2565041ns 44196 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2565496ns 44204 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2565666ns 44207 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2565951ns 44212 1a110850 fd5ff06f jal x0, -44 +2566235ns 44217 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2566519ns 44222 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2566917ns 44229 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2567087ns 44232 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2567542ns 44240 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2567712ns 44243 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2567996ns 44248 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2568281ns 44253 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2568565ns 44258 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2569019ns 44266 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2569190ns 44269 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2569474ns 44274 1a110850 fd5ff06f jal x0, -44 +2569758ns 44279 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2570042ns 44284 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2570440ns 44291 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2570611ns 44294 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2571065ns 44302 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2571236ns 44305 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2571520ns 44310 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2571804ns 44315 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2572088ns 44320 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2572543ns 44328 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2572714ns 44331 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2572998ns 44336 1a110850 fd5ff06f jal x0, -44 +2573282ns 44341 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2573566ns 44346 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2573964ns 44353 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2574134ns 44356 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2574589ns 44364 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2574759ns 44367 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2575044ns 44372 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2575328ns 44377 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2575612ns 44382 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2576067ns 44390 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2576237ns 44393 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2576521ns 44398 1a110850 fd5ff06f jal x0, -44 +2576805ns 44403 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2577090ns 44408 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2577487ns 44415 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2577658ns 44418 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2578113ns 44426 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2578283ns 44429 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2578567ns 44434 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2578851ns 44439 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2579136ns 44444 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2579590ns 44452 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2579761ns 44455 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2580045ns 44460 1a110850 fd5ff06f jal x0, -44 +2580329ns 44465 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2580613ns 44470 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2581011ns 44477 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2581181ns 44480 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2581636ns 44488 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2581807ns 44491 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2582091ns 44496 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2582375ns 44501 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2582659ns 44506 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2583114ns 44514 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2583284ns 44517 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2583568ns 44522 1a110850 fd5ff06f jal x0, -44 +2583853ns 44527 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2584137ns 44532 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2584535ns 44539 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2584705ns 44542 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2585160ns 44550 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2585330ns 44553 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2585614ns 44558 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2585899ns 44563 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2586183ns 44568 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2586637ns 44576 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2586808ns 44579 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2587092ns 44584 1a110850 fd5ff06f jal x0, -44 +2587376ns 44589 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2587660ns 44594 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2588058ns 44601 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2588229ns 44604 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2588683ns 44612 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2588854ns 44615 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2589138ns 44620 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2589422ns 44625 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2589706ns 44630 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2590161ns 44638 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2590331ns 44641 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2590616ns 44646 1a110850 fd5ff06f jal x0, -44 +2590900ns 44651 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2591184ns 44656 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2591582ns 44663 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2591752ns 44666 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2592207ns 44674 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2592377ns 44677 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2592662ns 44682 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2592946ns 44687 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2593230ns 44692 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2593685ns 44700 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2593855ns 44703 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2594139ns 44708 1a110850 fd5ff06f jal x0, -44 +2594423ns 44713 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2594707ns 44718 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2595105ns 44725 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2595276ns 44728 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2595730ns 44736 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2595901ns 44739 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2596185ns 44744 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2596469ns 44749 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2596753ns 44754 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2597208ns 44762 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2597379ns 44765 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2597663ns 44770 1a110850 fd5ff06f jal x0, -44 +2597947ns 44775 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2598231ns 44780 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2598629ns 44787 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2598799ns 44790 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2599254ns 44798 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2599425ns 44801 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2599709ns 44806 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2599993ns 44811 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2600277ns 44816 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2600732ns 44824 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2600902ns 44827 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2601186ns 44832 1a110850 fd5ff06f jal x0, -44 +2601471ns 44837 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2601755ns 44842 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2602152ns 44849 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2602323ns 44852 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2602778ns 44860 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2602948ns 44863 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2603232ns 44868 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2603516ns 44873 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2603801ns 44878 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2604255ns 44886 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2604426ns 44889 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2604710ns 44894 1a110850 fd5ff06f jal x0, -44 +2604994ns 44899 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2605278ns 44904 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2605676ns 44911 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2605847ns 44914 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2606301ns 44922 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2606472ns 44925 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2606756ns 44930 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2607040ns 44935 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2607324ns 44940 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2607779ns 44948 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2607949ns 44951 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2608234ns 44956 1a110850 fd5ff06f jal x0, -44 +2608518ns 44961 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2608802ns 44966 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2609200ns 44973 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2609370ns 44976 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2609825ns 44984 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2609995ns 44987 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2610279ns 44992 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2610564ns 44997 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2610848ns 45002 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2611302ns 45010 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2611473ns 45013 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2611757ns 45018 1a110850 fd5ff06f jal x0, -44 +2612041ns 45023 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2612325ns 45028 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2612723ns 45035 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2612894ns 45038 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2613348ns 45046 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2613519ns 45049 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2613803ns 45054 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2614087ns 45059 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2614371ns 45064 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2614826ns 45072 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2614997ns 45075 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2615281ns 45080 1a110850 fd5ff06f jal x0, -44 +2615565ns 45085 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2615849ns 45090 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2616247ns 45097 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2616417ns 45100 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2616872ns 45108 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2617042ns 45111 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2617327ns 45116 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2617611ns 45121 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2617895ns 45126 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2618350ns 45134 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2618520ns 45137 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2618804ns 45142 1a110850 fd5ff06f jal x0, -44 +2619088ns 45147 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2619373ns 45152 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2619770ns 45159 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2619941ns 45162 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2620396ns 45170 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2620566ns 45173 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2620850ns 45178 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2621134ns 45183 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2621419ns 45188 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2621873ns 45196 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2622044ns 45199 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2622328ns 45204 1a110850 fd5ff06f jal x0, -44 +2622612ns 45209 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2622896ns 45214 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2623294ns 45221 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2623464ns 45224 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2623919ns 45232 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2624090ns 45235 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2624374ns 45240 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2624658ns 45245 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2624942ns 45250 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2625397ns 45258 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2625567ns 45261 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2625851ns 45266 1a110850 fd5ff06f jal x0, -44 +2626136ns 45271 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2626420ns 45276 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2626818ns 45283 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2626988ns 45286 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2627443ns 45294 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2627613ns 45297 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2627897ns 45302 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2628182ns 45307 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2628466ns 45312 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2628920ns 45320 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2629091ns 45323 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2629375ns 45328 1a110850 fd5ff06f jal x0, -44 +2629659ns 45333 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2629943ns 45338 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2630341ns 45345 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2630512ns 45348 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2630966ns 45356 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2631137ns 45359 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2631421ns 45364 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2631705ns 45369 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2631989ns 45374 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2632444ns 45382 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2632614ns 45385 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2632899ns 45390 1a110850 fd5ff06f jal x0, -44 +2633183ns 45395 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2633467ns 45400 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2633865ns 45407 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2634035ns 45410 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2634490ns 45418 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2634660ns 45421 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2634945ns 45426 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2635229ns 45431 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2635513ns 45436 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2635968ns 45444 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2636138ns 45447 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2636422ns 45452 1a110850 fd5ff06f jal x0, -44 +2636706ns 45457 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2636991ns 45462 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2637388ns 45469 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2637559ns 45472 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2638013ns 45480 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2638184ns 45483 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2638468ns 45488 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2638752ns 45493 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2639036ns 45498 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2639491ns 45506 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2639662ns 45509 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2639946ns 45514 1a110850 fd5ff06f jal x0, -44 +2640230ns 45519 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2640514ns 45524 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2640912ns 45531 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2641082ns 45534 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2641537ns 45542 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2641708ns 45545 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2641992ns 45550 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2642276ns 45555 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2642560ns 45560 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2643015ns 45568 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2643185ns 45571 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2643469ns 45576 1a110850 fd5ff06f jal x0, -44 +2643754ns 45581 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2644038ns 45586 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2644435ns 45593 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2644606ns 45596 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2645061ns 45604 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2645231ns 45607 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2645515ns 45612 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2645799ns 45617 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2646084ns 45622 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2646538ns 45630 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2646709ns 45633 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2646993ns 45638 1a110850 fd5ff06f jal x0, -44 +2647277ns 45643 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2647561ns 45648 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2647959ns 45655 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2648130ns 45658 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2648584ns 45666 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2648755ns 45669 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2649039ns 45674 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2649323ns 45679 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2649607ns 45684 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2650062ns 45692 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2650232ns 45695 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2650517ns 45700 1a110850 fd5ff06f jal x0, -44 +2650801ns 45705 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2651085ns 45710 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2651483ns 45717 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2651653ns 45720 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2652108ns 45728 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2652278ns 45731 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2652562ns 45736 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2652847ns 45741 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2653131ns 45746 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2653585ns 45754 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2653756ns 45757 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2654040ns 45762 1a110850 fd5ff06f jal x0, -44 +2654324ns 45767 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2654608ns 45772 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2655006ns 45779 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2655177ns 45782 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2655631ns 45790 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2655802ns 45793 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2656086ns 45798 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2656370ns 45803 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2656654ns 45808 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2657109ns 45816 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2657280ns 45819 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2657564ns 45824 1a110850 fd5ff06f jal x0, -44 +2657848ns 45829 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2658132ns 45834 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2658530ns 45841 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2658700ns 45844 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2659155ns 45852 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2659325ns 45855 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2659610ns 45860 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2659894ns 45865 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2660178ns 45870 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2660633ns 45878 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2660803ns 45881 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2661087ns 45886 1a110850 fd5ff06f jal x0, -44 +2661371ns 45891 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2661656ns 45896 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2662053ns 45903 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2662224ns 45906 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2662679ns 45914 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2662849ns 45917 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2663133ns 45922 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2663417ns 45927 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2663702ns 45932 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2664156ns 45940 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2664327ns 45943 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2664611ns 45948 1a110850 fd5ff06f jal x0, -44 +2664895ns 45953 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2665179ns 45958 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2665577ns 45965 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2665747ns 45968 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2666202ns 45976 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2666373ns 45979 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2666657ns 45984 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2666941ns 45989 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2667225ns 45994 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2667680ns 46002 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2667850ns 46005 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2668134ns 46010 1a110850 fd5ff06f jal x0, -44 +2668419ns 46015 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2668703ns 46020 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2669101ns 46027 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2669271ns 46030 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2669726ns 46038 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2669896ns 46041 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2670180ns 46046 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2670465ns 46051 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2670749ns 46056 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2671203ns 46064 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2671374ns 46067 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2671658ns 46072 1a110850 fd5ff06f jal x0, -44 +2671942ns 46077 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2672226ns 46082 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2672624ns 46089 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2672795ns 46092 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2673249ns 46100 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2673420ns 46103 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2673704ns 46108 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2673988ns 46113 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2674272ns 46118 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2674727ns 46126 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2674897ns 46129 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2675182ns 46134 1a110850 fd5ff06f jal x0, -44 +2675466ns 46139 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2675750ns 46144 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2676148ns 46151 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2676318ns 46154 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2676773ns 46162 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2676943ns 46165 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2677228ns 46170 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2677512ns 46175 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2677796ns 46180 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2678251ns 46188 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2678421ns 46191 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2678705ns 46196 1a110850 fd5ff06f jal x0, -44 +2678989ns 46201 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2679274ns 46206 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2679671ns 46213 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2679842ns 46216 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2680296ns 46224 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2680467ns 46227 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2680751ns 46232 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2681035ns 46237 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2681319ns 46242 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2681774ns 46250 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2681945ns 46253 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2682229ns 46258 1a110850 fd5ff06f jal x0, -44 +2682513ns 46263 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2682797ns 46268 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2683195ns 46275 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2683365ns 46278 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2683820ns 46286 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2683991ns 46289 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2684275ns 46294 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2684559ns 46299 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2684843ns 46304 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2685298ns 46312 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2685468ns 46315 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2685752ns 46320 1a110850 fd5ff06f jal x0, -44 +2686037ns 46325 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2686321ns 46330 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2686719ns 46337 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2686889ns 46340 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2687344ns 46348 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2687514ns 46351 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2687798ns 46356 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2688082ns 46361 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2688367ns 46366 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2688821ns 46374 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2688992ns 46377 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2689276ns 46382 1a110850 fd5ff06f jal x0, -44 +2689560ns 46387 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2689844ns 46392 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2690242ns 46399 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2690413ns 46402 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2690867ns 46410 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2691038ns 46413 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2691322ns 46418 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2691606ns 46423 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2691890ns 46428 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2692345ns 46436 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2692515ns 46439 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2692800ns 46444 1a110850 fd5ff06f jal x0, -44 +2693084ns 46449 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2693368ns 46454 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2693766ns 46461 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2693936ns 46464 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2694391ns 46472 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2694561ns 46475 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2694845ns 46480 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2695130ns 46485 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2695414ns 46490 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2695868ns 46498 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2696039ns 46501 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2696323ns 46506 1a110850 fd5ff06f jal x0, -44 +2696607ns 46511 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2696891ns 46516 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2697289ns 46523 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2697460ns 46526 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2697914ns 46534 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2698085ns 46537 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2698369ns 46542 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2698653ns 46547 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2698937ns 46552 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2699392ns 46560 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2699563ns 46563 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2699847ns 46568 1a110850 fd5ff06f jal x0, -44 +2700131ns 46573 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2700415ns 46578 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2700813ns 46585 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2700983ns 46588 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2701438ns 46596 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2701608ns 46599 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2701893ns 46604 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2702177ns 46609 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2702461ns 46614 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2702916ns 46622 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2703086ns 46625 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2703370ns 46630 1a110850 fd5ff06f jal x0, -44 +2703654ns 46635 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2703939ns 46640 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2704336ns 46647 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2704507ns 46650 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2704962ns 46658 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2705132ns 46661 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2705416ns 46666 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2705700ns 46671 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2705985ns 46676 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2706439ns 46684 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2706610ns 46687 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2706894ns 46692 1a110850 fd5ff06f jal x0, -44 +2707178ns 46697 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2707462ns 46702 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2707860ns 46709 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2708031ns 46712 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2708485ns 46720 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2708656ns 46723 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2708940ns 46728 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2709224ns 46733 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2709508ns 46738 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2709963ns 46746 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2710133ns 46749 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2710417ns 46754 1a110850 fd5ff06f jal x0, -44 +2710702ns 46759 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2710986ns 46764 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2711384ns 46771 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2711554ns 46774 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2712009ns 46782 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2712179ns 46785 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2712463ns 46790 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2712748ns 46795 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2713032ns 46800 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2713486ns 46808 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2713657ns 46811 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2713941ns 46816 1a110850 fd5ff06f jal x0, -44 +2714225ns 46821 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2714509ns 46826 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2714907ns 46833 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2715078ns 46836 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2715532ns 46844 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2715703ns 46847 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2715987ns 46852 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2716271ns 46857 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2716555ns 46862 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2717010ns 46870 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2717180ns 46873 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2717465ns 46878 1a110850 fd5ff06f jal x0, -44 +2717749ns 46883 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2718033ns 46888 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2718431ns 46895 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2718601ns 46898 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2719056ns 46906 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2719226ns 46909 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2719511ns 46914 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2719795ns 46919 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2720079ns 46924 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2720534ns 46932 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2720704ns 46935 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2720988ns 46940 1a110850 fd5ff06f jal x0, -44 +2721272ns 46945 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2721557ns 46950 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2721954ns 46957 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2722125ns 46960 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2722579ns 46968 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2722750ns 46971 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2723034ns 46976 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2723318ns 46981 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2723602ns 46986 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2724057ns 46994 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2724228ns 46997 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2724512ns 47002 1a110850 fd5ff06f jal x0, -44 +2724796ns 47007 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2725080ns 47012 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2725478ns 47019 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2725648ns 47022 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2726103ns 47030 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2726274ns 47033 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2726558ns 47038 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2726842ns 47043 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2727126ns 47048 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2727581ns 47056 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2727751ns 47059 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2728035ns 47064 1a110850 fd5ff06f jal x0, -44 +2728320ns 47069 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2728604ns 47074 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2729002ns 47081 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2729172ns 47084 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2729627ns 47092 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2729797ns 47095 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2730081ns 47100 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2730365ns 47105 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2730650ns 47110 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2731104ns 47118 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2731275ns 47121 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2731559ns 47126 1a110850 fd5ff06f jal x0, -44 +2731843ns 47131 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2732127ns 47136 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2732525ns 47143 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2732696ns 47146 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2733150ns 47154 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2733321ns 47157 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2733605ns 47162 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2733889ns 47167 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2734173ns 47172 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2734628ns 47180 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2734798ns 47183 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2735083ns 47188 1a110850 fd5ff06f jal x0, -44 +2735367ns 47193 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2735651ns 47198 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2736049ns 47205 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2736219ns 47208 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2736674ns 47216 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2736844ns 47219 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2737128ns 47224 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2737413ns 47229 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2737697ns 47234 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2738151ns 47242 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2738322ns 47245 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2738606ns 47250 1a110850 fd5ff06f jal x0, -44 +2738890ns 47255 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2739174ns 47260 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2739572ns 47267 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2739743ns 47270 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2740197ns 47278 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2740368ns 47281 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2740652ns 47286 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2740936ns 47291 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2741220ns 47296 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2741675ns 47304 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2741846ns 47307 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2742130ns 47312 1a110850 fd5ff06f jal x0, -44 +2742414ns 47317 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2742698ns 47322 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2743096ns 47329 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2743266ns 47332 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2743721ns 47340 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2743891ns 47343 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2744176ns 47348 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2744460ns 47353 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2744744ns 47358 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2745199ns 47366 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2745369ns 47369 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2745653ns 47374 1a110850 fd5ff06f jal x0, -44 +2745937ns 47379 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2746222ns 47384 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2746619ns 47391 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2746790ns 47394 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2747245ns 47402 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2747415ns 47405 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2747699ns 47410 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2747983ns 47415 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2748268ns 47420 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2748722ns 47428 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2748893ns 47431 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2749177ns 47436 1a110850 fd5ff06f jal x0, -44 +2749461ns 47441 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2749745ns 47446 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2750143ns 47453 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2750314ns 47456 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2750768ns 47464 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2750939ns 47467 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2751223ns 47472 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2751507ns 47477 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2751791ns 47482 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2752246ns 47490 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2752416ns 47493 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2752700ns 47498 1a110850 fd5ff06f jal x0, -44 +2752985ns 47503 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2753269ns 47508 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2753667ns 47515 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2753837ns 47518 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2754292ns 47526 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2754462ns 47529 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2754746ns 47534 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2755031ns 47539 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2755315ns 47544 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2755769ns 47552 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2755940ns 47555 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2756224ns 47560 1a110850 fd5ff06f jal x0, -44 +2756508ns 47565 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2756792ns 47570 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2757190ns 47577 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2757361ns 47580 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2757815ns 47588 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2757986ns 47591 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2758270ns 47596 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2758554ns 47601 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2758838ns 47606 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2759293ns 47614 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2759463ns 47617 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2759748ns 47622 1a110850 fd5ff06f jal x0, -44 +2760032ns 47627 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2760316ns 47632 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2760714ns 47639 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2760884ns 47642 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2761339ns 47650 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2761509ns 47653 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2761794ns 47658 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2762078ns 47663 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2762362ns 47668 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2762817ns 47676 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2762987ns 47679 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2763271ns 47684 1a110850 fd5ff06f jal x0, -44 +2763555ns 47689 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2763840ns 47694 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2764237ns 47701 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2764408ns 47704 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2764863ns 47712 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2765033ns 47715 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2765317ns 47720 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2765601ns 47725 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2765885ns 47730 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2766340ns 47738 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2766511ns 47741 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2766795ns 47746 1a110850 fd5ff06f jal x0, -44 +2767079ns 47751 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2767363ns 47756 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2767761ns 47763 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2767931ns 47766 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2768386ns 47774 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2768557ns 47777 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2768841ns 47782 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2769125ns 47787 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2769409ns 47792 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2769864ns 47800 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2770034ns 47803 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2770318ns 47808 1a110850 fd5ff06f jal x0, -44 +2770603ns 47813 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2770887ns 47818 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2771285ns 47825 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2771455ns 47828 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2771910ns 47836 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2772080ns 47839 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2772364ns 47844 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2772648ns 47849 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2772933ns 47854 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2773387ns 47862 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2773558ns 47865 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2773842ns 47870 1a110850 fd5ff06f jal x0, -44 +2774126ns 47875 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2774410ns 47880 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2774808ns 47887 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2774979ns 47890 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2775433ns 47898 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2775604ns 47901 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2775888ns 47906 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2776172ns 47911 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2776456ns 47916 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2776911ns 47924 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2777081ns 47927 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2777366ns 47932 1a110850 fd5ff06f jal x0, -44 +2777650ns 47937 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2777934ns 47942 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2778332ns 47949 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2778502ns 47952 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2778957ns 47960 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2779127ns 47963 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2779411ns 47968 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2779696ns 47973 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2779980ns 47978 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2780434ns 47986 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2780605ns 47989 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2780889ns 47994 1a110850 fd5ff06f jal x0, -44 +2781173ns 47999 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2781457ns 48004 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2781855ns 48011 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2782026ns 48014 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2782480ns 48022 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2782651ns 48025 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2782935ns 48030 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2783219ns 48035 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2783503ns 48040 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2783958ns 48048 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2784129ns 48051 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2784413ns 48056 1a110850 fd5ff06f jal x0, -44 +2784697ns 48061 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2784981ns 48066 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2785379ns 48073 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2785549ns 48076 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2786004ns 48084 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2786175ns 48087 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2786459ns 48092 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2786743ns 48097 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2787027ns 48102 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2787482ns 48110 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2787652ns 48113 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2787936ns 48118 1a110850 fd5ff06f jal x0, -44 +2788220ns 48123 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2788505ns 48128 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2788902ns 48135 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2789073ns 48138 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2789528ns 48146 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2789698ns 48149 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2789982ns 48154 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2790266ns 48159 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2790551ns 48164 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2791005ns 48172 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2791176ns 48175 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2791460ns 48180 1a110850 fd5ff06f jal x0, -44 +2791744ns 48185 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2792028ns 48190 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2792426ns 48197 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2792597ns 48200 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2793051ns 48208 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2793222ns 48211 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2793506ns 48216 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2793790ns 48221 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2794074ns 48226 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2794529ns 48234 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2794699ns 48237 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2794983ns 48242 1a110850 fd5ff06f jal x0, -44 +2795268ns 48247 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2795552ns 48252 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2795950ns 48259 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2796120ns 48262 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2796575ns 48270 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2796745ns 48273 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2797029ns 48278 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2797314ns 48283 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2797598ns 48288 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2798052ns 48296 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2798223ns 48299 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2798507ns 48304 1a110850 fd5ff06f jal x0, -44 +2798791ns 48309 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2799075ns 48314 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2799473ns 48321 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2799644ns 48324 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2800098ns 48332 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2800269ns 48335 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2800553ns 48340 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2800837ns 48345 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2801121ns 48350 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2801576ns 48358 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2801746ns 48361 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2802031ns 48366 1a110850 fd5ff06f jal x0, -44 +2802315ns 48371 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2802599ns 48376 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2802997ns 48383 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2803167ns 48386 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2803622ns 48394 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2803792ns 48397 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2804077ns 48402 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2804361ns 48407 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2804645ns 48412 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2805100ns 48420 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2805270ns 48423 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2805554ns 48428 1a110850 fd5ff06f jal x0, -44 +2805838ns 48433 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2806123ns 48438 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2806520ns 48445 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2806691ns 48448 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2807146ns 48456 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2807316ns 48459 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2807600ns 48464 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2807884ns 48469 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2808168ns 48474 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2808623ns 48482 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2808794ns 48485 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2809078ns 48490 1a110850 fd5ff06f jal x0, -44 +2809362ns 48495 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2809646ns 48500 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2810044ns 48507 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2810214ns 48510 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2810669ns 48518 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2810840ns 48521 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2811124ns 48526 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2811408ns 48531 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2811692ns 48536 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2812147ns 48544 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2812317ns 48547 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2812601ns 48552 1a110850 fd5ff06f jal x0, -44 +2812886ns 48557 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2813170ns 48562 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2813568ns 48569 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2813738ns 48572 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2814193ns 48580 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2814363ns 48583 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2814647ns 48588 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2814931ns 48593 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2815216ns 48598 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2815670ns 48606 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2815841ns 48609 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2816125ns 48614 1a110850 fd5ff06f jal x0, -44 +2816409ns 48619 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2816693ns 48624 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2817091ns 48631 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2817262ns 48634 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2817716ns 48642 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2817887ns 48645 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2818171ns 48650 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2818455ns 48655 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2818739ns 48660 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2819194ns 48668 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2819364ns 48671 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2819649ns 48676 1a110850 fd5ff06f jal x0, -44 +2819933ns 48681 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2820217ns 48686 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2820615ns 48693 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2820785ns 48696 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2821240ns 48704 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2821410ns 48707 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2821695ns 48712 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2821979ns 48717 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2822263ns 48722 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2822717ns 48730 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2822888ns 48733 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2823172ns 48738 1a110850 fd5ff06f jal x0, -44 +2823456ns 48743 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2823740ns 48748 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2824138ns 48755 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2824309ns 48758 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2824763ns 48766 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2824934ns 48769 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2825218ns 48774 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2825502ns 48779 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2825786ns 48784 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2826241ns 48792 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2826412ns 48795 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2826696ns 48800 1a110850 fd5ff06f jal x0, -44 +2826980ns 48805 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2827264ns 48810 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2827662ns 48817 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2827832ns 48820 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2828287ns 48828 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2828458ns 48831 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2828742ns 48836 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2829026ns 48841 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2829310ns 48846 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2829765ns 48854 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2829935ns 48857 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2830219ns 48862 1a110850 fd5ff06f jal x0, -44 +2830503ns 48867 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2830788ns 48872 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2831185ns 48879 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2831356ns 48882 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2831811ns 48890 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2831981ns 48893 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2832265ns 48898 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2832549ns 48903 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2832834ns 48908 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2833288ns 48916 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2833459ns 48919 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2833743ns 48924 1a110850 fd5ff06f jal x0, -44 +2834027ns 48929 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2834311ns 48934 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2834709ns 48941 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2834880ns 48944 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2835334ns 48952 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2835505ns 48955 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2835789ns 48960 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2836073ns 48965 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2836357ns 48970 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2836812ns 48978 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2836982ns 48981 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2837266ns 48986 1a110850 fd5ff06f jal x0, -44 +2837551ns 48991 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2837835ns 48996 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2838233ns 49003 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2838403ns 49006 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2838858ns 49014 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2839028ns 49017 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2839312ns 49022 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2839597ns 49027 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2839881ns 49032 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2840335ns 49040 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2840506ns 49043 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2840790ns 49048 1a110850 fd5ff06f jal x0, -44 +2841074ns 49053 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2841358ns 49058 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2841756ns 49065 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2841927ns 49068 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2842381ns 49076 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2842552ns 49079 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2842836ns 49084 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2843120ns 49089 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2843404ns 49094 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2843859ns 49102 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2844029ns 49105 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2844314ns 49110 1a110850 fd5ff06f jal x0, -44 +2844598ns 49115 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2844882ns 49120 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2845280ns 49127 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2845450ns 49130 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2845905ns 49138 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2846075ns 49141 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2846360ns 49146 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2846644ns 49151 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2846928ns 49156 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2847383ns 49164 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2847553ns 49167 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2847837ns 49172 1a110850 fd5ff06f jal x0, -44 +2848121ns 49177 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2848406ns 49182 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2848803ns 49189 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2848974ns 49192 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2849429ns 49200 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2849599ns 49203 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2849883ns 49208 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2850167ns 49213 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2850451ns 49218 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2850906ns 49226 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2851077ns 49229 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2851361ns 49234 1a110850 fd5ff06f jal x0, -44 +2851645ns 49239 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2851929ns 49244 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2852327ns 49251 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2852497ns 49254 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2852952ns 49262 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2853123ns 49265 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2853407ns 49270 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2853691ns 49275 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2853975ns 49280 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2854430ns 49288 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2854600ns 49291 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2854884ns 49296 1a110850 fd5ff06f jal x0, -44 +2855169ns 49301 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2855453ns 49306 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2855851ns 49313 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2856021ns 49316 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2856476ns 49324 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2856646ns 49327 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2856930ns 49332 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2857215ns 49337 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2857499ns 49342 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2857953ns 49350 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2858124ns 49353 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2858408ns 49358 1a110850 fd5ff06f jal x0, -44 +2858692ns 49363 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2858976ns 49368 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2859374ns 49375 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2859545ns 49378 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2859999ns 49386 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2860170ns 49389 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2860454ns 49394 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2860738ns 49399 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2861022ns 49404 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2861477ns 49412 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2861647ns 49415 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2861932ns 49420 1a110850 fd5ff06f jal x0, -44 +2862216ns 49425 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2862500ns 49430 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2862898ns 49437 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2863068ns 49440 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2863523ns 49448 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2863693ns 49451 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2863978ns 49456 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2864262ns 49461 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2864546ns 49466 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2865000ns 49474 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2865171ns 49477 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2865455ns 49482 1a110850 fd5ff06f jal x0, -44 +2865739ns 49487 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2866023ns 49492 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2866421ns 49499 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2866592ns 49502 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2867046ns 49510 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2867217ns 49513 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2867501ns 49518 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2867785ns 49523 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2868069ns 49528 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2868524ns 49536 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2868695ns 49539 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2868979ns 49544 1a110850 fd5ff06f jal x0, -44 +2869263ns 49549 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2869547ns 49554 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2869945ns 49561 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2870115ns 49564 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2870570ns 49572 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2870741ns 49575 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2871025ns 49580 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2871309ns 49585 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2871593ns 49590 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2872048ns 49598 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2872218ns 49601 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2872502ns 49606 1a110850 fd5ff06f jal x0, -44 +2872786ns 49611 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2873071ns 49616 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2873468ns 49623 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2873639ns 49626 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2874094ns 49634 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2874264ns 49637 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2874548ns 49642 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2874832ns 49647 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2875117ns 49652 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2875571ns 49660 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2875742ns 49663 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2876026ns 49668 1a110850 fd5ff06f jal x0, -44 +2876310ns 49673 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2876594ns 49678 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2876992ns 49685 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2877163ns 49688 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2877617ns 49696 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2877788ns 49699 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2878072ns 49704 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2878356ns 49709 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2878640ns 49714 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2879095ns 49722 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2879265ns 49725 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2879549ns 49730 1a110850 fd5ff06f jal x0, -44 +2879834ns 49735 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2880118ns 49740 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2880516ns 49747 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2880686ns 49750 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2881141ns 49758 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2881311ns 49761 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2881595ns 49766 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2881880ns 49771 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2882164ns 49776 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2882618ns 49784 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2882789ns 49787 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2883073ns 49792 1a110850 fd5ff06f jal x0, -44 +2883357ns 49797 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2883641ns 49802 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2884039ns 49809 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2884210ns 49812 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2884664ns 49820 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2884835ns 49823 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2885119ns 49828 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2885403ns 49833 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2885687ns 49838 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2886142ns 49846 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2886312ns 49849 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2886597ns 49854 1a110850 fd5ff06f jal x0, -44 +2886881ns 49859 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2887165ns 49864 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2887563ns 49871 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2887733ns 49874 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2888188ns 49882 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2888358ns 49885 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2888643ns 49890 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2888927ns 49895 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2889211ns 49900 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2889666ns 49908 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2889836ns 49911 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2890120ns 49916 1a110850 fd5ff06f jal x0, -44 +2890404ns 49921 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2890689ns 49926 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2891086ns 49933 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2891257ns 49936 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2891712ns 49944 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2891882ns 49947 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2892166ns 49952 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2892450ns 49957 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2892735ns 49962 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2893189ns 49970 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2893360ns 49973 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2893644ns 49978 1a110850 fd5ff06f jal x0, -44 +2893928ns 49983 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2894212ns 49988 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2894610ns 49995 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2894780ns 49998 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2895235ns 50006 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2895406ns 50009 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2895690ns 50014 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2895974ns 50019 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2896258ns 50024 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2896713ns 50032 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2896883ns 50035 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2897167ns 50040 1a110850 fd5ff06f jal x0, -44 +2897452ns 50045 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2897736ns 50050 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2898134ns 50057 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2898304ns 50060 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2898759ns 50068 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2898929ns 50071 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2899213ns 50076 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2899498ns 50081 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2899782ns 50086 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2900236ns 50094 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2900407ns 50097 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2900691ns 50102 1a110850 fd5ff06f jal x0, -44 +2900975ns 50107 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2901259ns 50112 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2901657ns 50119 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2901828ns 50122 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2902282ns 50130 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2902453ns 50133 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2902737ns 50138 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2903021ns 50143 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2903305ns 50148 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2903760ns 50156 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2903930ns 50159 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2904215ns 50164 1a110850 fd5ff06f jal x0, -44 +2904499ns 50169 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2904783ns 50174 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2905181ns 50181 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2905351ns 50184 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2905806ns 50192 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2905976ns 50195 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2906261ns 50200 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2906545ns 50205 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2906829ns 50210 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2907283ns 50218 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2907454ns 50221 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2907738ns 50226 1a110850 fd5ff06f jal x0, -44 +2908022ns 50231 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2908306ns 50236 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2908704ns 50243 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2908875ns 50246 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2909329ns 50254 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2909500ns 50257 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2909784ns 50262 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2910068ns 50267 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2910352ns 50272 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2910807ns 50280 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2910978ns 50283 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2911262ns 50288 1a110850 fd5ff06f jal x0, -44 +2911546ns 50293 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2911830ns 50298 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2912228ns 50305 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2912398ns 50308 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2912853ns 50316 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2913024ns 50319 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2913308ns 50324 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2913592ns 50329 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2913876ns 50334 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2914331ns 50342 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2914501ns 50345 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2914785ns 50350 1a110850 fd5ff06f jal x0, -44 +2915069ns 50355 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2915354ns 50360 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2915751ns 50367 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2915922ns 50370 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2916377ns 50378 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2916547ns 50381 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2916831ns 50386 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2917115ns 50391 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2917400ns 50396 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2917854ns 50404 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2918025ns 50407 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2918309ns 50412 1a110850 fd5ff06f jal x0, -44 +2918593ns 50417 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2918877ns 50422 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2919275ns 50429 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2919446ns 50432 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2919900ns 50440 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2920071ns 50443 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2920355ns 50448 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2920639ns 50453 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2920923ns 50458 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2921378ns 50466 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2921548ns 50469 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2921832ns 50474 1a110850 fd5ff06f jal x0, -44 +2922117ns 50479 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2922401ns 50484 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2922799ns 50491 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2922969ns 50494 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2923424ns 50502 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2923594ns 50505 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2923878ns 50510 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2924163ns 50515 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2924447ns 50520 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2924901ns 50528 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2925072ns 50531 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2925356ns 50536 1a110850 fd5ff06f jal x0, -44 +2925640ns 50541 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2925924ns 50546 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2926322ns 50553 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2926493ns 50556 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2926947ns 50564 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2927118ns 50567 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2927402ns 50572 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2927686ns 50577 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2927970ns 50582 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2928425ns 50590 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2928595ns 50593 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2928880ns 50598 1a110850 fd5ff06f jal x0, -44 +2929164ns 50603 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2929448ns 50608 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2929846ns 50615 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2930016ns 50618 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2930471ns 50626 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2930641ns 50629 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2930926ns 50634 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2931210ns 50639 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2931494ns 50644 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2931949ns 50652 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2932119ns 50655 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2932403ns 50660 1a110850 fd5ff06f jal x0, -44 +2932687ns 50665 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2932972ns 50670 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2933369ns 50677 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2933540ns 50680 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2933995ns 50688 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2934165ns 50691 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2934449ns 50696 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2934733ns 50701 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2935018ns 50706 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2935472ns 50714 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2935643ns 50717 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2935927ns 50722 1a110850 fd5ff06f jal x0, -44 +2936211ns 50727 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2936495ns 50732 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2936893ns 50739 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2937063ns 50742 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2937518ns 50750 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2937689ns 50753 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2937973ns 50758 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2938257ns 50763 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2938541ns 50768 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2938996ns 50776 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2939166ns 50779 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2939450ns 50784 1a110850 fd5ff06f jal x0, -44 +2939735ns 50789 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2940019ns 50794 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2940417ns 50801 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2940587ns 50804 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2941042ns 50812 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2941212ns 50815 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2941496ns 50820 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2941781ns 50825 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2942065ns 50830 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2942519ns 50838 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2942690ns 50841 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2942974ns 50846 1a110850 fd5ff06f jal x0, -44 +2943258ns 50851 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2943542ns 50856 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2943940ns 50863 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2944111ns 50866 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2944565ns 50874 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2944736ns 50877 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2945020ns 50882 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2945304ns 50887 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2945588ns 50892 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2946043ns 50900 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2946213ns 50903 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2946498ns 50908 1a110850 fd5ff06f jal x0, -44 +2946782ns 50913 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2947066ns 50918 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2947464ns 50925 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2947634ns 50928 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2948089ns 50936 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2948259ns 50939 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2948544ns 50944 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2948828ns 50949 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2949112ns 50954 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2949567ns 50962 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2949737ns 50965 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2950021ns 50970 1a110850 fd5ff06f jal x0, -44 +2950305ns 50975 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2950589ns 50980 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2950987ns 50987 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2951158ns 50990 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2951612ns 50998 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2951783ns 51001 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2952067ns 51006 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2952351ns 51011 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2952635ns 51016 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2953090ns 51024 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2953261ns 51027 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2953545ns 51032 1a110850 fd5ff06f jal x0, -44 +2953829ns 51037 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2954113ns 51042 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2954511ns 51049 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2954681ns 51052 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2955136ns 51060 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2955307ns 51063 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2955591ns 51068 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2955875ns 51073 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2956159ns 51078 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2956614ns 51086 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2956784ns 51089 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2957068ns 51094 1a110850 fd5ff06f jal x0, -44 +2957352ns 51099 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2957637ns 51104 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2958034ns 51111 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2958205ns 51114 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2958660ns 51122 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2958830ns 51125 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2959114ns 51130 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2959398ns 51135 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2959683ns 51140 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2960137ns 51148 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2960308ns 51151 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2960592ns 51156 1a110850 fd5ff06f jal x0, -44 +2960876ns 51161 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2961160ns 51166 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2961558ns 51173 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2961729ns 51176 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2962183ns 51184 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2962354ns 51187 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2962638ns 51192 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2962922ns 51197 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2963206ns 51202 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2963661ns 51210 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2963831ns 51213 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2964115ns 51218 1a110850 fd5ff06f jal x0, -44 +2964400ns 51223 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2964684ns 51228 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2965082ns 51235 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2965252ns 51238 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2965707ns 51246 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2965877ns 51249 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2966161ns 51254 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2966446ns 51259 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2966730ns 51264 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2967184ns 51272 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2967355ns 51275 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2967639ns 51280 1a110850 fd5ff06f jal x0, -44 +2967923ns 51285 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2968207ns 51290 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2968605ns 51297 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2968776ns 51300 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2969230ns 51308 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2969401ns 51311 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2969685ns 51316 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2969969ns 51321 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2970253ns 51326 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2970708ns 51334 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2970879ns 51337 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2971163ns 51342 1a110850 fd5ff06f jal x0, -44 +2971447ns 51347 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2971731ns 51352 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2972129ns 51359 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2972299ns 51362 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2972754ns 51370 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2972924ns 51373 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2973209ns 51378 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2973493ns 51383 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2973777ns 51388 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2974232ns 51396 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2974402ns 51399 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2974686ns 51404 1a110850 fd5ff06f jal x0, -44 +2974970ns 51409 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2975255ns 51414 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2975652ns 51421 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2975823ns 51424 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2976278ns 51432 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2976448ns 51435 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2976732ns 51440 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2977016ns 51445 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2977301ns 51450 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2977755ns 51458 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2977926ns 51461 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2978210ns 51466 1a110850 fd5ff06f jal x0, -44 +2978494ns 51471 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2978778ns 51476 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2979176ns 51483 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2979346ns 51486 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2979801ns 51494 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2979972ns 51497 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2980256ns 51502 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2980540ns 51507 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2980824ns 51512 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2981279ns 51520 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2981449ns 51523 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2981733ns 51528 1a110850 fd5ff06f jal x0, -44 +2982018ns 51533 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2982302ns 51538 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2982700ns 51545 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2982870ns 51548 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2983325ns 51556 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2983495ns 51559 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2983779ns 51564 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2984064ns 51569 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2984348ns 51574 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2984802ns 51582 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2984973ns 51585 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2985257ns 51590 1a110850 fd5ff06f jal x0, -44 +2985541ns 51595 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2985825ns 51600 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2986223ns 51607 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2986394ns 51610 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2986848ns 51618 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2987019ns 51621 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2987303ns 51626 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2987587ns 51631 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2987871ns 51636 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2988326ns 51644 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2988496ns 51647 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2988781ns 51652 1a110850 fd5ff06f jal x0, -44 +2989065ns 51657 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2989349ns 51662 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2989747ns 51669 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2989917ns 51672 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2990372ns 51680 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2990542ns 51683 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2990827ns 51688 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2991111ns 51693 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2991395ns 51698 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2991850ns 51706 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2992020ns 51709 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2992304ns 51714 1a110850 fd5ff06f jal x0, -44 +2992588ns 51719 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2992872ns 51724 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2993270ns 51731 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2993441ns 51734 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2993895ns 51742 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2994066ns 51745 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2994350ns 51750 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2994634ns 51755 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2994918ns 51760 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2995373ns 51768 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2995544ns 51771 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2995828ns 51776 1a110850 fd5ff06f jal x0, -44 +2996112ns 51781 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2996396ns 51786 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +2996794ns 51793 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2996964ns 51796 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2997419ns 51804 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +2997590ns 51807 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +2997874ns 51812 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2998158ns 51817 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +2998442ns 51822 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +2998897ns 51830 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +2999067ns 51833 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +2999351ns 51838 1a110850 fd5ff06f jal x0, -44 +2999635ns 51843 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +2999920ns 51848 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3000317ns 51855 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3000488ns 51858 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3000943ns 51866 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3001113ns 51869 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3001397ns 51874 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3001681ns 51879 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3001966ns 51884 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3002420ns 51892 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3002591ns 51895 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3002875ns 51900 1a110850 fd5ff06f jal x0, -44 +3003159ns 51905 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3003443ns 51910 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3003841ns 51917 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3004012ns 51920 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3004466ns 51928 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3004637ns 51931 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3004921ns 51936 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3005205ns 51941 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3005489ns 51946 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3005944ns 51954 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3006114ns 51957 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3006399ns 51962 1a110850 fd5ff06f jal x0, -44 +3006683ns 51967 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3006967ns 51972 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3007365ns 51979 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3007535ns 51982 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3007990ns 51990 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3008160ns 51993 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3008444ns 51998 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3008729ns 52003 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3009013ns 52008 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3009467ns 52016 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3009638ns 52019 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3009922ns 52024 1a110850 fd5ff06f jal x0, -44 +3010206ns 52029 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3010490ns 52034 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3010888ns 52041 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3011059ns 52044 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3011513ns 52052 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3011684ns 52055 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3011968ns 52060 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3012252ns 52065 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3012536ns 52070 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3012991ns 52078 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3013162ns 52081 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3013446ns 52086 1a110850 fd5ff06f jal x0, -44 +3013730ns 52091 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3014014ns 52096 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3014412ns 52103 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3014582ns 52106 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3015037ns 52114 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3015207ns 52117 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3015492ns 52122 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3015776ns 52127 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3016060ns 52132 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3016515ns 52140 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3016685ns 52143 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3016969ns 52148 1a110850 fd5ff06f jal x0, -44 +3017253ns 52153 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3017538ns 52158 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3017935ns 52165 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3018106ns 52168 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3018561ns 52176 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3018731ns 52179 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3019015ns 52184 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3019299ns 52189 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3019584ns 52194 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3020038ns 52202 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3020209ns 52205 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3020493ns 52210 1a110850 fd5ff06f jal x0, -44 +3020777ns 52215 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3021061ns 52220 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3021459ns 52227 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3021629ns 52230 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3022084ns 52238 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3022255ns 52241 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3022539ns 52246 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3022823ns 52251 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3023107ns 52256 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3023562ns 52264 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3023732ns 52267 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3024016ns 52272 1a110850 fd5ff06f jal x0, -44 +3024301ns 52277 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3024585ns 52282 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3024983ns 52289 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3025153ns 52292 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3025608ns 52300 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3025778ns 52303 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3026062ns 52308 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3026347ns 52313 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3026631ns 52318 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3027085ns 52326 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3027256ns 52329 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3027540ns 52334 1a110850 fd5ff06f jal x0, -44 +3027824ns 52339 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3028108ns 52344 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3028506ns 52351 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3028677ns 52354 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3029131ns 52362 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3029302ns 52365 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3029586ns 52370 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3029870ns 52375 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3030154ns 52380 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3030609ns 52388 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3030779ns 52391 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3031064ns 52396 1a110850 fd5ff06f jal x0, -44 +3031348ns 52401 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3031632ns 52406 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3032030ns 52413 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3032200ns 52416 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3032655ns 52424 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3032825ns 52427 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3033110ns 52432 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3033394ns 52437 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3033678ns 52442 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3034133ns 52450 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3034303ns 52453 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3034587ns 52458 1a110850 fd5ff06f jal x0, -44 +3034871ns 52463 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3035155ns 52468 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3035553ns 52475 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3035724ns 52478 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3036178ns 52486 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3036349ns 52489 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3036633ns 52494 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3036917ns 52499 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3037201ns 52504 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3037656ns 52512 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3037827ns 52515 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3038111ns 52520 1a110850 fd5ff06f jal x0, -44 +3038395ns 52525 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3038679ns 52530 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3039077ns 52537 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3039247ns 52540 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3039702ns 52548 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3039873ns 52551 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3040157ns 52556 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3040441ns 52561 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3040725ns 52566 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3041180ns 52574 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3041350ns 52577 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3041634ns 52582 1a110850 fd5ff06f jal x0, -44 +3041919ns 52587 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3042203ns 52592 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3042600ns 52599 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3042771ns 52602 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3043226ns 52610 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3043396ns 52613 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3043680ns 52618 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3043964ns 52623 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3044249ns 52628 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3044703ns 52636 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3044874ns 52639 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3045158ns 52644 1a110850 fd5ff06f jal x0, -44 +3045442ns 52649 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3045726ns 52654 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3046124ns 52661 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3046295ns 52664 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3046749ns 52672 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3046920ns 52675 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3047204ns 52680 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3047488ns 52685 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3047772ns 52690 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3048227ns 52698 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3048397ns 52701 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3048682ns 52706 1a110850 fd5ff06f jal x0, -44 +3048966ns 52711 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3049250ns 52716 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3049648ns 52723 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3049818ns 52726 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3050273ns 52734 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3050443ns 52737 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3050727ns 52742 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3051012ns 52747 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3051296ns 52752 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3051750ns 52760 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3051921ns 52763 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3052205ns 52768 1a110850 fd5ff06f jal x0, -44 +3052489ns 52773 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3052773ns 52778 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3053171ns 52785 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3053342ns 52788 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3053796ns 52796 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3053967ns 52799 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3054251ns 52804 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3054535ns 52809 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3054819ns 52814 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3055274ns 52822 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3055445ns 52825 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3055729ns 52830 1a110850 fd5ff06f jal x0, -44 +3056013ns 52835 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3056297ns 52840 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3056695ns 52847 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3056865ns 52850 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3057320ns 52858 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3057490ns 52861 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3057775ns 52866 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3058059ns 52871 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3058343ns 52876 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3058798ns 52884 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3058968ns 52887 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3059252ns 52892 1a110850 fd5ff06f jal x0, -44 +3059536ns 52897 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3059821ns 52902 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3060218ns 52909 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3060389ns 52912 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3060844ns 52920 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3061014ns 52923 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3061298ns 52928 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3061582ns 52933 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3061867ns 52938 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3062321ns 52946 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3062492ns 52949 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3062776ns 52954 1a110850 fd5ff06f jal x0, -44 +3063060ns 52959 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3063344ns 52964 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3063742ns 52971 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3063912ns 52974 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3064367ns 52982 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3064538ns 52985 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3064822ns 52990 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3065106ns 52995 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3065390ns 53000 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3065845ns 53008 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3066015ns 53011 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3066299ns 53016 1a110850 fd5ff06f jal x0, -44 +3066584ns 53021 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3066868ns 53026 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3067266ns 53033 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3067436ns 53036 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3067891ns 53044 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3068061ns 53047 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3068345ns 53052 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3068630ns 53057 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3068914ns 53062 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3069368ns 53070 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3069539ns 53073 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3069823ns 53078 1a110850 fd5ff06f jal x0, -44 +3070107ns 53083 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3070391ns 53088 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3070789ns 53095 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3070960ns 53098 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3071414ns 53106 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3071585ns 53109 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3071869ns 53114 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3072153ns 53119 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3072437ns 53124 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3072892ns 53132 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3073062ns 53135 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3073347ns 53140 1a110850 fd5ff06f jal x0, -44 +3073631ns 53145 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3073915ns 53150 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3074313ns 53157 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3074483ns 53160 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3074938ns 53168 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3075108ns 53171 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3075393ns 53176 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3075677ns 53181 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3075961ns 53186 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3076416ns 53194 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3076586ns 53197 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3076870ns 53202 1a110850 fd5ff06f jal x0, -44 +3077154ns 53207 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3077439ns 53212 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3077836ns 53219 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3078007ns 53222 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3078461ns 53230 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3078632ns 53233 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3078916ns 53238 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3079200ns 53243 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3079484ns 53248 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3079939ns 53256 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3080110ns 53259 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3080394ns 53264 1a110850 fd5ff06f jal x0, -44 +3080678ns 53269 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3080962ns 53274 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3081360ns 53281 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3081530ns 53284 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3081985ns 53292 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3082156ns 53295 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3082440ns 53300 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3082724ns 53305 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3083008ns 53310 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3083463ns 53318 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3083633ns 53321 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3083917ns 53326 1a110850 fd5ff06f jal x0, -44 +3084202ns 53331 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3084486ns 53336 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3084883ns 53343 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3085054ns 53346 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3085509ns 53354 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3085679ns 53357 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3085963ns 53362 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3086247ns 53367 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3086532ns 53372 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3086986ns 53380 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3087157ns 53383 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3087441ns 53388 1a110850 fd5ff06f jal x0, -44 +3087725ns 53393 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3088009ns 53398 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3088407ns 53405 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3088578ns 53408 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3089032ns 53416 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3089203ns 53419 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3089487ns 53424 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3089771ns 53429 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3090055ns 53434 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3090510ns 53442 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3090680ns 53445 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3090965ns 53450 1a110850 fd5ff06f jal x0, -44 +3091249ns 53455 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3091533ns 53460 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3091931ns 53467 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3092101ns 53470 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3092556ns 53478 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3092726ns 53481 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3093010ns 53486 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3093295ns 53491 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3093579ns 53496 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3094033ns 53504 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3094204ns 53507 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3094488ns 53512 1a110850 fd5ff06f jal x0, -44 +3094772ns 53517 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3095056ns 53522 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3095454ns 53529 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3095625ns 53532 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3096079ns 53540 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3096250ns 53543 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3096534ns 53548 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3096818ns 53553 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3097102ns 53558 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3097557ns 53566 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3097728ns 53569 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3098012ns 53574 1a110850 fd5ff06f jal x0, -44 +3098296ns 53579 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3098580ns 53584 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3098978ns 53591 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3099148ns 53594 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3099603ns 53602 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3099773ns 53605 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3100058ns 53610 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3100342ns 53615 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3100626ns 53620 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3101081ns 53628 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3101251ns 53631 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3101535ns 53636 1a110850 fd5ff06f jal x0, -44 +3101819ns 53641 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3102104ns 53646 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3102501ns 53653 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3102672ns 53656 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3103127ns 53664 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3103297ns 53667 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3103581ns 53672 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3103865ns 53677 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3104150ns 53682 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3104604ns 53690 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3104775ns 53693 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3105059ns 53698 1a110850 fd5ff06f jal x0, -44 +3105343ns 53703 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3105627ns 53708 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3106025ns 53715 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3106195ns 53718 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3106650ns 53726 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3106821ns 53729 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3107105ns 53734 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3107389ns 53739 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3107673ns 53744 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3108128ns 53752 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3108298ns 53755 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3108582ns 53760 1a110850 fd5ff06f jal x0, -44 +3108867ns 53765 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3109151ns 53770 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3109549ns 53777 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3109719ns 53780 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3110174ns 53788 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3110344ns 53791 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3110628ns 53796 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3110913ns 53801 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3111197ns 53806 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3111651ns 53814 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3111822ns 53817 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3112106ns 53822 1a110850 fd5ff06f jal x0, -44 +3112390ns 53827 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3112674ns 53832 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3113072ns 53839 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3113243ns 53842 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3113697ns 53850 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3113868ns 53853 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3114152ns 53858 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3114436ns 53863 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3114720ns 53868 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3115175ns 53876 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3115345ns 53879 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3115630ns 53884 1a110850 fd5ff06f jal x0, -44 +3115914ns 53889 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3116198ns 53894 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3116596ns 53901 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3116766ns 53904 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3117221ns 53912 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3117391ns 53915 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3117676ns 53920 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3117960ns 53925 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3118244ns 53930 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3118699ns 53938 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3118869ns 53941 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3119153ns 53946 1a110850 fd5ff06f jal x0, -44 +3119437ns 53951 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3119722ns 53956 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3120119ns 53963 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3120290ns 53966 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3120744ns 53974 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3120915ns 53977 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3121199ns 53982 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3121483ns 53987 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3121767ns 53992 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3122222ns 54000 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3122393ns 54003 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3122677ns 54008 1a110850 fd5ff06f jal x0, -44 +3122961ns 54013 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3123245ns 54018 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3123643ns 54025 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3123813ns 54028 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3124268ns 54036 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3124439ns 54039 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3124723ns 54044 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3125007ns 54049 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3125291ns 54054 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3125746ns 54062 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3125916ns 54065 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3126200ns 54070 1a110850 fd5ff06f jal x0, -44 +3126485ns 54075 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3126769ns 54080 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3127167ns 54087 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3127337ns 54090 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3127792ns 54098 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3127962ns 54101 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3128246ns 54106 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3128530ns 54111 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3128815ns 54116 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3129269ns 54124 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3129440ns 54127 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3129724ns 54132 1a110850 fd5ff06f jal x0, -44 +3130008ns 54137 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3130292ns 54142 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3130690ns 54149 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3130861ns 54152 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3131315ns 54160 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3131486ns 54163 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3131770ns 54168 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3132054ns 54173 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3132338ns 54178 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3132793ns 54186 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3132963ns 54189 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3133248ns 54194 1a110850 fd5ff06f jal x0, -44 +3133532ns 54199 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3133816ns 54204 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3134214ns 54211 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3134384ns 54214 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3134839ns 54222 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3135009ns 54225 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3135293ns 54230 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3135578ns 54235 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3135862ns 54240 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3136316ns 54248 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3136487ns 54251 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3136771ns 54256 1a110850 fd5ff06f jal x0, -44 +3137055ns 54261 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3137339ns 54266 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3137737ns 54273 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3137908ns 54276 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3138362ns 54284 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3138533ns 54287 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3138817ns 54292 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3139101ns 54297 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3139385ns 54302 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3139840ns 54310 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3140011ns 54313 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3140295ns 54318 1a110850 fd5ff06f jal x0, -44 +3140579ns 54323 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3140863ns 54328 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3141261ns 54335 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3141431ns 54338 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3141886ns 54346 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3142056ns 54349 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3142341ns 54354 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3142625ns 54359 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3142909ns 54364 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3143364ns 54372 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3143534ns 54375 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3143818ns 54380 1a110850 fd5ff06f jal x0, -44 +3144102ns 54385 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3144387ns 54390 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3144784ns 54397 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3144955ns 54400 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3145410ns 54408 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3145580ns 54411 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3145864ns 54416 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3146148ns 54421 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3146433ns 54426 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3146887ns 54434 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3147058ns 54437 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3147342ns 54442 1a110850 fd5ff06f jal x0, -44 +3147626ns 54447 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3147910ns 54452 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3148308ns 54459 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3148479ns 54462 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3148933ns 54470 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3149104ns 54473 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3149388ns 54478 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3149672ns 54483 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3149956ns 54488 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3150411ns 54496 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3150581ns 54499 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3150865ns 54504 1a110850 fd5ff06f jal x0, -44 +3151150ns 54509 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3151434ns 54514 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3151832ns 54521 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3152002ns 54524 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3152457ns 54532 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3152627ns 54535 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3152911ns 54540 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3153196ns 54545 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3153480ns 54550 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3153934ns 54558 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3154105ns 54561 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3154389ns 54566 1a110850 fd5ff06f jal x0, -44 +3154673ns 54571 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3154957ns 54576 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3155355ns 54583 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3155526ns 54586 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3155980ns 54594 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3156151ns 54597 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3156435ns 54602 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3156719ns 54607 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3157003ns 54612 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3157458ns 54620 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3157628ns 54623 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3157913ns 54628 1a110850 fd5ff06f jal x0, -44 +3158197ns 54633 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3158481ns 54638 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3158879ns 54645 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3159049ns 54648 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3159504ns 54656 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3159674ns 54659 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3159959ns 54664 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3160243ns 54669 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3160527ns 54674 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3160982ns 54682 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3161152ns 54685 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3161436ns 54690 1a110850 fd5ff06f jal x0, -44 +3161720ns 54695 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3162005ns 54700 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3162402ns 54707 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3162573ns 54710 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3163027ns 54718 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3163198ns 54721 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3163482ns 54726 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3163766ns 54731 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3164050ns 54736 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3164505ns 54744 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3164676ns 54747 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3164960ns 54752 1a110850 fd5ff06f jal x0, -44 +3165244ns 54757 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3165528ns 54762 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3165926ns 54769 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3166096ns 54772 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3166551ns 54780 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3166722ns 54783 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3167006ns 54788 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3167290ns 54793 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3167574ns 54798 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3168029ns 54806 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3168199ns 54809 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3168483ns 54814 1a110850 fd5ff06f jal x0, -44 +3168768ns 54819 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3169052ns 54824 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3169450ns 54831 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3169620ns 54834 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3170075ns 54842 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3170245ns 54845 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3170529ns 54850 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3170813ns 54855 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3171098ns 54860 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3171552ns 54868 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3171723ns 54871 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3172007ns 54876 1a110850 fd5ff06f jal x0, -44 +3172291ns 54881 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3172575ns 54886 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3172973ns 54893 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3173144ns 54896 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3173598ns 54904 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3173769ns 54907 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3174053ns 54912 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3174337ns 54917 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3174621ns 54922 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3175076ns 54930 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3175246ns 54933 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3175531ns 54938 1a110850 fd5ff06f jal x0, -44 +3175815ns 54943 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3176099ns 54948 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3176497ns 54955 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3176667ns 54958 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3177122ns 54966 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3177292ns 54969 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3177576ns 54974 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3177861ns 54979 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3178145ns 54984 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3178599ns 54992 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3178770ns 54995 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3179054ns 55000 1a110850 fd5ff06f jal x0, -44 +3179338ns 55005 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3179622ns 55010 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3180020ns 55017 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3180191ns 55020 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3180645ns 55028 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3180816ns 55031 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3181100ns 55036 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3181384ns 55041 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3181668ns 55046 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3182123ns 55054 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3182294ns 55057 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3182578ns 55062 1a110850 fd5ff06f jal x0, -44 +3182862ns 55067 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3183146ns 55072 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3183544ns 55079 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3183714ns 55082 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3184169ns 55090 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3184339ns 55093 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3184624ns 55098 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3184908ns 55103 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3185192ns 55108 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3185647ns 55116 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3185817ns 55119 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3186101ns 55124 1a110850 fd5ff06f jal x0, -44 +3186385ns 55129 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3186670ns 55134 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3187067ns 55141 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3187238ns 55144 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3187693ns 55152 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3187863ns 55155 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3188147ns 55160 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3188431ns 55165 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3188716ns 55170 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3189170ns 55178 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3189341ns 55181 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3189625ns 55186 1a110850 fd5ff06f jal x0, -44 +3189909ns 55191 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3190193ns 55196 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3190591ns 55203 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3190762ns 55206 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3191216ns 55214 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3191387ns 55217 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3191671ns 55222 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3191955ns 55227 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3192239ns 55232 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3192694ns 55240 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3192864ns 55243 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3193148ns 55248 1a110850 fd5ff06f jal x0, -44 +3193433ns 55253 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3193717ns 55258 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3194115ns 55265 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3194285ns 55268 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3194740ns 55276 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3194910ns 55279 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3195194ns 55284 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3195479ns 55289 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3195763ns 55294 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3196217ns 55302 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3196388ns 55305 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3196672ns 55310 1a110850 fd5ff06f jal x0, -44 +3196956ns 55315 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3197240ns 55320 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3197638ns 55327 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3197809ns 55330 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3198263ns 55338 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3198434ns 55341 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3198718ns 55346 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3199002ns 55351 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3199286ns 55356 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3199741ns 55364 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3199911ns 55367 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3200196ns 55372 1a110850 fd5ff06f jal x0, -44 +3200480ns 55377 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3200764ns 55382 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3201162ns 55389 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3201332ns 55392 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3201787ns 55400 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3201957ns 55403 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3202242ns 55408 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3202526ns 55413 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3202810ns 55418 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3203265ns 55426 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3203435ns 55429 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3203719ns 55434 1a110850 fd5ff06f jal x0, -44 +3204003ns 55439 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3204288ns 55444 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3204685ns 55451 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3204856ns 55454 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3205311ns 55462 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3205481ns 55465 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3205765ns 55470 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3206049ns 55475 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3206333ns 55480 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3206788ns 55488 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3206959ns 55491 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3207243ns 55496 1a110850 fd5ff06f jal x0, -44 +3207527ns 55501 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3207811ns 55506 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3208209ns 55513 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3208379ns 55516 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3208834ns 55524 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3209005ns 55527 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3209289ns 55532 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3209573ns 55537 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3209857ns 55542 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3210312ns 55550 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3210482ns 55553 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3210766ns 55558 1a110850 fd5ff06f jal x0, -44 +3211051ns 55563 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3211335ns 55568 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3211733ns 55575 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3211903ns 55578 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3212358ns 55586 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3212528ns 55589 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3212812ns 55594 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3213096ns 55599 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3213381ns 55604 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3213835ns 55612 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3214006ns 55615 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3214290ns 55620 1a110850 fd5ff06f jal x0, -44 +3214574ns 55625 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3214858ns 55630 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3215256ns 55637 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3215427ns 55640 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3215881ns 55648 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3216052ns 55651 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3216336ns 55656 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3216620ns 55661 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3216904ns 55666 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3217359ns 55674 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3217529ns 55677 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3217814ns 55682 1a110850 fd5ff06f jal x0, -44 +3218098ns 55687 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3218382ns 55692 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3218780ns 55699 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3218950ns 55702 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3219405ns 55710 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3219575ns 55713 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3219859ns 55718 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3220144ns 55723 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3220428ns 55728 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3220882ns 55736 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3221053ns 55739 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3221337ns 55744 1a110850 fd5ff06f jal x0, -44 +3221621ns 55749 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3221905ns 55754 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3222303ns 55761 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3222474ns 55764 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3222928ns 55772 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3223099ns 55775 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3223383ns 55780 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3223667ns 55785 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3223951ns 55790 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3224406ns 55798 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3224577ns 55801 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3224861ns 55806 1a110850 fd5ff06f jal x0, -44 +3225145ns 55811 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3225429ns 55816 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3225827ns 55823 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3225997ns 55826 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3226452ns 55834 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3226623ns 55837 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3226907ns 55842 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3227191ns 55847 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3227475ns 55852 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3227930ns 55860 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3228100ns 55863 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3228384ns 55868 1a110850 fd5ff06f jal x0, -44 +3228668ns 55873 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3228953ns 55878 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3229350ns 55885 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3229521ns 55888 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3229976ns 55896 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3230146ns 55899 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3230430ns 55904 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3230714ns 55909 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3230999ns 55914 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3231453ns 55922 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3231624ns 55925 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3231908ns 55930 1a110850 fd5ff06f jal x0, -44 +3232192ns 55935 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3232476ns 55940 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3232874ns 55947 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3233045ns 55950 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3233499ns 55958 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3233670ns 55961 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3233954ns 55966 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3234238ns 55971 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3234522ns 55976 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3234977ns 55984 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3235147ns 55987 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3235431ns 55992 1a110850 fd5ff06f jal x0, -44 +3235716ns 55997 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3236000ns 56002 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3236398ns 56009 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3236568ns 56012 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3237023ns 56020 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3237193ns 56023 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3237477ns 56028 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3237762ns 56033 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3238046ns 56038 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3238500ns 56046 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3238671ns 56049 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3238955ns 56054 1a110850 fd5ff06f jal x0, -44 +3239239ns 56059 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3239523ns 56064 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3239921ns 56071 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3240092ns 56074 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3240546ns 56082 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3240717ns 56085 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3241001ns 56090 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3241285ns 56095 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3241569ns 56100 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3242024ns 56108 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3242194ns 56111 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3242479ns 56116 1a110850 fd5ff06f jal x0, -44 +3242763ns 56121 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3243047ns 56126 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3243445ns 56133 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3243615ns 56136 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3244070ns 56144 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3244240ns 56147 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3244525ns 56152 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3244809ns 56157 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3245093ns 56162 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3245548ns 56170 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3245718ns 56173 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3246002ns 56178 1a110850 fd5ff06f jal x0, -44 +3246286ns 56183 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3246571ns 56188 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3246968ns 56195 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3247139ns 56198 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3247594ns 56206 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3247764ns 56209 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3248048ns 56214 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3248332ns 56219 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3248616ns 56224 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3249071ns 56232 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3249242ns 56235 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3249526ns 56240 1a110850 fd5ff06f jal x0, -44 +3249810ns 56245 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3250094ns 56250 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3250492ns 56257 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3250662ns 56260 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3251117ns 56268 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3251288ns 56271 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3251572ns 56276 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3251856ns 56281 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3252140ns 56286 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3252595ns 56294 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3252765ns 56297 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3253049ns 56302 1a110850 fd5ff06f jal x0, -44 +3253334ns 56307 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3253618ns 56312 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3254016ns 56319 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3254186ns 56322 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3254641ns 56330 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3254811ns 56333 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3255095ns 56338 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3255379ns 56343 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3255664ns 56348 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3256118ns 56356 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3256289ns 56359 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3256573ns 56364 1a110850 fd5ff06f jal x0, -44 +3256857ns 56369 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3257141ns 56374 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3257539ns 56381 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3257710ns 56384 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3258164ns 56392 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3258335ns 56395 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3258619ns 56400 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3258903ns 56405 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3259187ns 56410 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3259642ns 56418 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3259812ns 56421 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3260097ns 56426 1a110850 fd5ff06f jal x0, -44 +3260381ns 56431 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3260665ns 56436 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3261063ns 56443 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3261233ns 56446 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3261688ns 56454 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3261858ns 56457 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3262143ns 56462 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3262427ns 56467 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3262711ns 56472 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3263165ns 56480 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3263336ns 56483 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3263620ns 56488 1a110850 fd5ff06f jal x0, -44 +3263904ns 56493 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3264188ns 56498 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3264586ns 56505 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3264757ns 56508 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3265211ns 56516 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3265382ns 56519 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3265666ns 56524 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3265950ns 56529 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3266234ns 56534 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3266689ns 56542 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3266860ns 56545 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3267144ns 56550 1a110850 fd5ff06f jal x0, -44 +3267428ns 56555 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3267712ns 56560 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3268110ns 56567 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3268280ns 56570 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3268735ns 56578 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3268906ns 56581 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3269190ns 56586 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3269474ns 56591 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3269758ns 56596 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3270213ns 56604 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3270383ns 56607 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3270667ns 56612 1a110850 fd5ff06f jal x0, -44 +3270951ns 56617 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3271236ns 56622 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3271633ns 56629 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3271804ns 56632 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3272259ns 56640 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3272429ns 56643 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3272713ns 56648 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3272997ns 56653 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3273282ns 56658 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3273736ns 56666 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3273907ns 56669 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3274191ns 56674 1a110850 fd5ff06f jal x0, -44 +3274475ns 56679 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3274759ns 56684 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3275157ns 56691 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3275328ns 56694 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3275782ns 56702 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3275953ns 56705 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3276237ns 56710 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3276521ns 56715 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3276805ns 56720 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3277260ns 56728 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3277430ns 56731 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3277714ns 56736 1a110850 fd5ff06f jal x0, -44 +3277999ns 56741 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3278283ns 56746 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3278681ns 56753 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3278851ns 56756 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3279306ns 56764 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3279476ns 56767 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3279760ns 56772 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3280045ns 56777 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3280329ns 56782 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3280783ns 56790 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3280954ns 56793 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3281238ns 56798 1a110850 fd5ff06f jal x0, -44 +3281522ns 56803 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3281806ns 56808 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3282204ns 56815 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3282375ns 56818 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3282829ns 56826 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3283000ns 56829 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3283284ns 56834 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3283568ns 56839 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3283852ns 56844 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3284307ns 56852 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3284477ns 56855 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3284762ns 56860 1a110850 fd5ff06f jal x0, -44 +3285046ns 56865 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3285330ns 56870 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3285728ns 56877 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3285898ns 56880 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3286353ns 56888 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3286523ns 56891 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3286808ns 56896 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3287092ns 56901 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3287376ns 56906 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3287831ns 56914 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3288001ns 56917 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3288285ns 56922 1a110850 fd5ff06f jal x0, -44 +3288569ns 56927 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3288854ns 56932 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3289251ns 56939 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3289422ns 56942 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3289877ns 56950 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3290047ns 56953 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3290331ns 56958 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3290615ns 56963 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3290899ns 56968 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3291354ns 56976 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3291525ns 56979 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3291809ns 56984 1a110850 fd5ff06f jal x0, -44 +3292093ns 56989 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3292377ns 56994 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3292775ns 57001 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3292945ns 57004 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3293400ns 57012 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3293571ns 57015 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3293855ns 57020 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3294139ns 57025 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3294423ns 57030 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3294878ns 57038 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3295048ns 57041 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3295332ns 57046 1a110850 fd5ff06f jal x0, -44 +3295617ns 57051 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3295901ns 57056 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3296299ns 57063 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3296469ns 57066 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3296924ns 57074 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3297094ns 57077 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3297378ns 57082 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3297663ns 57087 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3297947ns 57092 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3298401ns 57100 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3298572ns 57103 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3298856ns 57108 1a110850 fd5ff06f jal x0, -44 +3299140ns 57113 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3299424ns 57118 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3299822ns 57125 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3299993ns 57128 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3300447ns 57136 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3300618ns 57139 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3300902ns 57144 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3301186ns 57149 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3301470ns 57154 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3301925ns 57162 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3302095ns 57165 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3302380ns 57170 1a110850 fd5ff06f jal x0, -44 +3302664ns 57175 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3302948ns 57180 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3303346ns 57187 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3303516ns 57190 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3303971ns 57198 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3304141ns 57201 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3304426ns 57206 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3304710ns 57211 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3304994ns 57216 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3305448ns 57224 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3305619ns 57227 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3305903ns 57232 1a110850 fd5ff06f jal x0, -44 +3306187ns 57237 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3306471ns 57242 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3306869ns 57249 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3307040ns 57252 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3307494ns 57260 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3307665ns 57263 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3307949ns 57268 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3308233ns 57273 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3308517ns 57278 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3308972ns 57286 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3309143ns 57289 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3309427ns 57294 1a110850 fd5ff06f jal x0, -44 +3309711ns 57299 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3309995ns 57304 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3310393ns 57311 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3310563ns 57314 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3311018ns 57322 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3311189ns 57325 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3311473ns 57330 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3311757ns 57335 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3312041ns 57340 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3312496ns 57348 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3312666ns 57351 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3312950ns 57356 1a110850 fd5ff06f jal x0, -44 +3313234ns 57361 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3313519ns 57366 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3313916ns 57373 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3314087ns 57376 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3314542ns 57384 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3314712ns 57387 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3314996ns 57392 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3315280ns 57397 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3315565ns 57402 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3316019ns 57410 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3316190ns 57413 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3316474ns 57418 1a110850 fd5ff06f jal x0, -44 +3316758ns 57423 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3317042ns 57428 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3317440ns 57435 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3317611ns 57438 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3318065ns 57446 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3318236ns 57449 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3318520ns 57454 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3318804ns 57459 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3319088ns 57464 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3319543ns 57472 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3319713ns 57475 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3319997ns 57480 1a110850 fd5ff06f jal x0, -44 +3320282ns 57485 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3320566ns 57490 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3320964ns 57497 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3321134ns 57500 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3321589ns 57508 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3321759ns 57511 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3322043ns 57516 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3322328ns 57521 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3322612ns 57526 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3323066ns 57534 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3323237ns 57537 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3323521ns 57542 1a110850 fd5ff06f jal x0, -44 +3323805ns 57547 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3324089ns 57552 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3324487ns 57559 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3324658ns 57562 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3325112ns 57570 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3325283ns 57573 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3325567ns 57578 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3325851ns 57583 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3326135ns 57588 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3326590ns 57596 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3326760ns 57599 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3327045ns 57604 1a110850 fd5ff06f jal x0, -44 +3327329ns 57609 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3327613ns 57614 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3328011ns 57621 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3328181ns 57624 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3328636ns 57632 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3328806ns 57635 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3329091ns 57640 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3329375ns 57645 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3329659ns 57650 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3330114ns 57658 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3330284ns 57661 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3330568ns 57666 1a110850 fd5ff06f jal x0, -44 +3330852ns 57671 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3331137ns 57676 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3331534ns 57683 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3331705ns 57686 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3332160ns 57694 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3332330ns 57697 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3332614ns 57702 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3332898ns 57707 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3333183ns 57712 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3333637ns 57720 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3333808ns 57723 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3334092ns 57728 1a110850 fd5ff06f jal x0, -44 +3334376ns 57733 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3334660ns 57738 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3335058ns 57745 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3335228ns 57748 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3335683ns 57756 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3335854ns 57759 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3336138ns 57764 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3336422ns 57769 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3336706ns 57774 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3337161ns 57782 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3337331ns 57785 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3337615ns 57790 1a110850 fd5ff06f jal x0, -44 +3337900ns 57795 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3338184ns 57800 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3338582ns 57807 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3338752ns 57810 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3339207ns 57818 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3339377ns 57821 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3339661ns 57826 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3339946ns 57831 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3340230ns 57836 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3340684ns 57844 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3340855ns 57847 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3341139ns 57852 1a110850 fd5ff06f jal x0, -44 +3341423ns 57857 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3341707ns 57862 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3342105ns 57869 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3342276ns 57872 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3342730ns 57880 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3342901ns 57883 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3343185ns 57888 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3343469ns 57893 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3343753ns 57898 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3344208ns 57906 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3344378ns 57909 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3344663ns 57914 1a110850 fd5ff06f jal x0, -44 +3344947ns 57919 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3345231ns 57924 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3345629ns 57931 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3345799ns 57934 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3346254ns 57942 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3346424ns 57945 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3346709ns 57950 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3346993ns 57955 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3347277ns 57960 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3347731ns 57968 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3347902ns 57971 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3348186ns 57976 1a110850 fd5ff06f jal x0, -44 +3348470ns 57981 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3348754ns 57986 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3349152ns 57993 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3349323ns 57996 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3349777ns 58004 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3349948ns 58007 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3350232ns 58012 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3350516ns 58017 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3350800ns 58022 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3351255ns 58030 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3351426ns 58033 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3351710ns 58038 1a110850 fd5ff06f jal x0, -44 +3351994ns 58043 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3352278ns 58048 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3352676ns 58055 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3352846ns 58058 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3353301ns 58066 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3353472ns 58069 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3353756ns 58074 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3354040ns 58079 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3354324ns 58084 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3354779ns 58092 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3354949ns 58095 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3355233ns 58100 1a110850 fd5ff06f jal x0, -44 +3355517ns 58105 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3355802ns 58110 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3356199ns 58117 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3356370ns 58120 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3356825ns 58128 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3356995ns 58131 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3357279ns 58136 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3357563ns 58141 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3357848ns 58146 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3358302ns 58154 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3358473ns 58157 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3358757ns 58162 1a110850 fd5ff06f jal x0, -44 +3359041ns 58167 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3359325ns 58172 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3359723ns 58179 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3359894ns 58182 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3360348ns 58190 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3360519ns 58193 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3360803ns 58198 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3361087ns 58203 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3361371ns 58208 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3361826ns 58216 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3361996ns 58219 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3362280ns 58224 1a110850 fd5ff06f jal x0, -44 +3362565ns 58229 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3362849ns 58234 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3363247ns 58241 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3363417ns 58244 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3363872ns 58252 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3364042ns 58255 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3364326ns 58260 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3364611ns 58265 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3364895ns 58270 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3365349ns 58278 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3365520ns 58281 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3365804ns 58286 1a110850 fd5ff06f jal x0, -44 +3366088ns 58291 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3366372ns 58296 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3366770ns 58303 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3366941ns 58306 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3367395ns 58314 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3367566ns 58317 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3367850ns 58322 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3368134ns 58327 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3368418ns 58332 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3368873ns 58340 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3369043ns 58343 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3369328ns 58348 1a110850 fd5ff06f jal x0, -44 +3369612ns 58353 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3369896ns 58358 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3370294ns 58365 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3370464ns 58368 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3370919ns 58376 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3371089ns 58379 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3371374ns 58384 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3371658ns 58389 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3371942ns 58394 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3372397ns 58402 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3372567ns 58405 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3372851ns 58410 1a110850 fd5ff06f jal x0, -44 +3373135ns 58415 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3373420ns 58420 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3373817ns 58427 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3373988ns 58430 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3374443ns 58438 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3374613ns 58441 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3374897ns 58446 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3375181ns 58451 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3375466ns 58456 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3375920ns 58464 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3376091ns 58467 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3376375ns 58472 1a110850 fd5ff06f jal x0, -44 +3376659ns 58477 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3376943ns 58482 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3377341ns 58489 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3377511ns 58492 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3377966ns 58500 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3378137ns 58503 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3378421ns 58508 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3378705ns 58513 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3378989ns 58518 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3379444ns 58526 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3379614ns 58529 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3379898ns 58534 1a110850 fd5ff06f jal x0, -44 +3380183ns 58539 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3380467ns 58544 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3380865ns 58551 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3381035ns 58554 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3381490ns 58562 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3381660ns 58565 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3381944ns 58570 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3382229ns 58575 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3382513ns 58580 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3382967ns 58588 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3383138ns 58591 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3383422ns 58596 1a110850 fd5ff06f jal x0, -44 +3383706ns 58601 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3383990ns 58606 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3384388ns 58613 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3384559ns 58616 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3385013ns 58624 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3385184ns 58627 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3385468ns 58632 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3385752ns 58637 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3386036ns 58642 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3386491ns 58650 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3386661ns 58653 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3386946ns 58658 1a110850 fd5ff06f jal x0, -44 +3387230ns 58663 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3387514ns 58668 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3387912ns 58675 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3388082ns 58678 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3388537ns 58686 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3388707ns 58689 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3388992ns 58694 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3389276ns 58699 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3389560ns 58704 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3390015ns 58712 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3390185ns 58715 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3390469ns 58720 1a110850 fd5ff06f jal x0, -44 +3390753ns 58725 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3391037ns 58730 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3391435ns 58737 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3391606ns 58740 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3392060ns 58748 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3392231ns 58751 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3392515ns 58756 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3392799ns 58761 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3393083ns 58766 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3393538ns 58774 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3393709ns 58777 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3393993ns 58782 1a110850 fd5ff06f jal x0, -44 +3394277ns 58787 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3394561ns 58792 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3394959ns 58799 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3395129ns 58802 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3395584ns 58810 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3395755ns 58813 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3396039ns 58818 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3396323ns 58823 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3396607ns 58828 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3397062ns 58836 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3397232ns 58839 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3397516ns 58844 1a110850 fd5ff06f jal x0, -44 +3397800ns 58849 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3398085ns 58854 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3398482ns 58861 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3398653ns 58864 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3399108ns 58872 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3399278ns 58875 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3399562ns 58880 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3399846ns 58885 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3400131ns 58890 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3400585ns 58898 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3400756ns 58901 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3401040ns 58906 1a110850 fd5ff06f jal x0, -44 +3401324ns 58911 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3401608ns 58916 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3402006ns 58923 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3402177ns 58926 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3402631ns 58934 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3402802ns 58937 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3403086ns 58942 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3403370ns 58947 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3403654ns 58952 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3404109ns 58960 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3404279ns 58963 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3404563ns 58968 1a110850 fd5ff06f jal x0, -44 +3404848ns 58973 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3405132ns 58978 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3405530ns 58985 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3405700ns 58988 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3406155ns 58996 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3406325ns 58999 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3406609ns 59004 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3406894ns 59009 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3407178ns 59014 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3407632ns 59022 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3407803ns 59025 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3408087ns 59030 1a110850 fd5ff06f jal x0, -44 +3408371ns 59035 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3408655ns 59040 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3409053ns 59047 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3409224ns 59050 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3409678ns 59058 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3409849ns 59061 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3410133ns 59066 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3410417ns 59071 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3410701ns 59076 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3411156ns 59084 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3411327ns 59087 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3411611ns 59092 1a110850 fd5ff06f jal x0, -44 +3411895ns 59097 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3412179ns 59102 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3412577ns 59109 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3412747ns 59112 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3413202ns 59120 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3413372ns 59123 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3413657ns 59128 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3413941ns 59133 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3414225ns 59138 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3414680ns 59146 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3414850ns 59149 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3415134ns 59154 1a110850 fd5ff06f jal x0, -44 +3415418ns 59159 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3415703ns 59164 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3416100ns 59171 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3416271ns 59174 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3416726ns 59182 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3416896ns 59185 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3417180ns 59190 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3417464ns 59195 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3417749ns 59200 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3418203ns 59208 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3418374ns 59211 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3418658ns 59216 1a110850 fd5ff06f jal x0, -44 +3418942ns 59221 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3419226ns 59226 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3419624ns 59233 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3419794ns 59236 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3420249ns 59244 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3420420ns 59247 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3420704ns 59252 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3420988ns 59257 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3421272ns 59262 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3421727ns 59270 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3421897ns 59273 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3422181ns 59278 1a110850 fd5ff06f jal x0, -44 +3422466ns 59283 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3422750ns 59288 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3423148ns 59295 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3423318ns 59298 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3423773ns 59306 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3423943ns 59309 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3424227ns 59314 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3424512ns 59319 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3424796ns 59324 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3425250ns 59332 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3425421ns 59335 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3425705ns 59340 1a110850 fd5ff06f jal x0, -44 +3425989ns 59345 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3426273ns 59350 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3426671ns 59357 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3426842ns 59360 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3427296ns 59368 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3427467ns 59371 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3427751ns 59376 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3428035ns 59381 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3428319ns 59386 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3428774ns 59394 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3428944ns 59397 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3429229ns 59402 1a110850 fd5ff06f jal x0, -44 +3429513ns 59407 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3429797ns 59412 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3430195ns 59419 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3430365ns 59422 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3430820ns 59430 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3430990ns 59433 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3431275ns 59438 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3431559ns 59443 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3431843ns 59448 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3432298ns 59456 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3432468ns 59459 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3432752ns 59464 1a110850 fd5ff06f jal x0, -44 +3433036ns 59469 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3433320ns 59474 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3433718ns 59481 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3433889ns 59484 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3434343ns 59492 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3434514ns 59495 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3434798ns 59500 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3435082ns 59505 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3435366ns 59510 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3435821ns 59518 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3435992ns 59521 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3436276ns 59526 1a110850 fd5ff06f jal x0, -44 +3436560ns 59531 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3436844ns 59536 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3437242ns 59543 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3437412ns 59546 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3437867ns 59554 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3438038ns 59557 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3438322ns 59562 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3438606ns 59567 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3438890ns 59572 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3439345ns 59580 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3439515ns 59583 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3439799ns 59588 1a110850 fd5ff06f jal x0, -44 +3440083ns 59593 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3440368ns 59598 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3440765ns 59605 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3440936ns 59608 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3441391ns 59616 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3441561ns 59619 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3441845ns 59624 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3442129ns 59629 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3442414ns 59634 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3442868ns 59642 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3443039ns 59645 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3443323ns 59650 1a110850 fd5ff06f jal x0, -44 +3443607ns 59655 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3443891ns 59660 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3444289ns 59667 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3444460ns 59670 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3444914ns 59678 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3445085ns 59681 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3445369ns 59686 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3445653ns 59691 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3445937ns 59696 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3446392ns 59704 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3446562ns 59707 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3446847ns 59712 1a110850 fd5ff06f jal x0, -44 +3447131ns 59717 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3447415ns 59722 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3447813ns 59729 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3447983ns 59732 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3448438ns 59740 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3448608ns 59743 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3448892ns 59748 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3449177ns 59753 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3449461ns 59758 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3449915ns 59766 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3450086ns 59769 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3450370ns 59774 1a110850 fd5ff06f jal x0, -44 +3450654ns 59779 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3450938ns 59784 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3451336ns 59791 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3451507ns 59794 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3451961ns 59802 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3452132ns 59805 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3452416ns 59810 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3452700ns 59815 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3452984ns 59820 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3453439ns 59828 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3453610ns 59831 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3453894ns 59836 1a110850 fd5ff06f jal x0, -44 +3454178ns 59841 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3454462ns 59846 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3454860ns 59853 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3455030ns 59856 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3455485ns 59864 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3455655ns 59867 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3455940ns 59872 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3456224ns 59877 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3456508ns 59882 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3456963ns 59890 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3457133ns 59893 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3457417ns 59898 1a110850 fd5ff06f jal x0, -44 +3457701ns 59903 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3457986ns 59908 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3458383ns 59915 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3458554ns 59918 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3459009ns 59926 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3459179ns 59929 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3459463ns 59934 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3459747ns 59939 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3460032ns 59944 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3460486ns 59952 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3460657ns 59955 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3460941ns 59960 1a110850 fd5ff06f jal x0, -44 +3461225ns 59965 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3461509ns 59970 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3461907ns 59977 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3462077ns 59980 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3462532ns 59988 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3462703ns 59991 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3462987ns 59996 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3463271ns 60001 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3463555ns 60006 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3464010ns 60014 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3464180ns 60017 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3464464ns 60022 1a110850 fd5ff06f jal x0, -44 +3464749ns 60027 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3465033ns 60032 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3465431ns 60039 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3465601ns 60042 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3466056ns 60050 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3466226ns 60053 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3466510ns 60058 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3466795ns 60063 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3467079ns 60068 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3467533ns 60076 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3467704ns 60079 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3467988ns 60084 1a110850 fd5ff06f jal x0, -44 +3468272ns 60089 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3468556ns 60094 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3468954ns 60101 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3469125ns 60104 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3469579ns 60112 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3469750ns 60115 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3470034ns 60120 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3470318ns 60125 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3470602ns 60130 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3471057ns 60138 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3471227ns 60141 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3471512ns 60146 1a110850 fd5ff06f jal x0, -44 +3471796ns 60151 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3472080ns 60156 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3472478ns 60163 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3472648ns 60166 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3473103ns 60174 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3473273ns 60177 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3473558ns 60182 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3473842ns 60187 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3474126ns 60192 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3474581ns 60200 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3474751ns 60203 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3475035ns 60208 1a110850 fd5ff06f jal x0, -44 +3475319ns 60213 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3475603ns 60218 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3476001ns 60225 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3476172ns 60228 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3476626ns 60236 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3476797ns 60239 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3477081ns 60244 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3477365ns 60249 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3477649ns 60254 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3478104ns 60262 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3478275ns 60265 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3478559ns 60270 1a110850 fd5ff06f jal x0, -44 +3478843ns 60275 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3479127ns 60280 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3479525ns 60287 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3479695ns 60290 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3480150ns 60298 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3480321ns 60301 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3480605ns 60306 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3480889ns 60311 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3481173ns 60316 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3481628ns 60324 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3481798ns 60327 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3482082ns 60332 1a110850 fd5ff06f jal x0, -44 +3482367ns 60337 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3482651ns 60342 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3483048ns 60349 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3483219ns 60352 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3483674ns 60360 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3483844ns 60363 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3484128ns 60368 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3484412ns 60373 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3484697ns 60378 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3485151ns 60386 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3485322ns 60389 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3485606ns 60394 1a110850 fd5ff06f jal x0, -44 +3485890ns 60399 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3486174ns 60404 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3486572ns 60411 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3486743ns 60414 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3487197ns 60422 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3487368ns 60425 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3487652ns 60430 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3487936ns 60435 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3488220ns 60440 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3488675ns 60448 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3488845ns 60451 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3489130ns 60456 1a110850 fd5ff06f jal x0, -44 +3489414ns 60461 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3489698ns 60466 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3490096ns 60473 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3490266ns 60476 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3490721ns 60484 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3490891ns 60487 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3491175ns 60492 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3491460ns 60497 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3491744ns 60502 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3492198ns 60510 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3492369ns 60513 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3492653ns 60518 1a110850 fd5ff06f jal x0, -44 +3492937ns 60523 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3493221ns 60528 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3493619ns 60535 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3493790ns 60538 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3494244ns 60546 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3494415ns 60549 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3494699ns 60554 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3494983ns 60559 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3495267ns 60564 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3495722ns 60572 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3495893ns 60575 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3496177ns 60580 1a110850 fd5ff06f jal x0, -44 +3496461ns 60585 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3496745ns 60590 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3497143ns 60597 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3497313ns 60600 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3497768ns 60608 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3497938ns 60611 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3498223ns 60616 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3498507ns 60621 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3498791ns 60626 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3499246ns 60634 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3499416ns 60637 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3499700ns 60642 1a110850 fd5ff06f jal x0, -44 +3499984ns 60647 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3500269ns 60652 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3500666ns 60659 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3500837ns 60662 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3501292ns 60670 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3501462ns 60673 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3501746ns 60678 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3502030ns 60683 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3502315ns 60688 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3502769ns 60696 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3502940ns 60699 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3503224ns 60704 1a110850 fd5ff06f jal x0, -44 +3503508ns 60709 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3503792ns 60714 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3504190ns 60721 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3504360ns 60724 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3504815ns 60732 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3504986ns 60735 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3505270ns 60740 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3505554ns 60745 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3505838ns 60750 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3506293ns 60758 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3506463ns 60761 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3506747ns 60766 1a110850 fd5ff06f jal x0, -44 +3507032ns 60771 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3507316ns 60776 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3507714ns 60783 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3507884ns 60786 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3508339ns 60794 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3508509ns 60797 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3508793ns 60802 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3509078ns 60807 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3509362ns 60812 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3509816ns 60820 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3509987ns 60823 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3510271ns 60828 1a110850 fd5ff06f jal x0, -44 +3510555ns 60833 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3510839ns 60838 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3511237ns 60845 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3511408ns 60848 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3511862ns 60856 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3512033ns 60859 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3512317ns 60864 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3512601ns 60869 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3512885ns 60874 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3513340ns 60882 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3513510ns 60885 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3513795ns 60890 1a110850 fd5ff06f jal x0, -44 +3514079ns 60895 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3514363ns 60900 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3514761ns 60907 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3514931ns 60910 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3515386ns 60918 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3515556ns 60921 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3515841ns 60926 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3516125ns 60931 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3516409ns 60936 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3516864ns 60944 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3517034ns 60947 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3517318ns 60952 1a110850 fd5ff06f jal x0, -44 +3517602ns 60957 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3517887ns 60962 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3518284ns 60969 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3518455ns 60972 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3518909ns 60980 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3519080ns 60983 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3519364ns 60988 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3519648ns 60993 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3519932ns 60998 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3520387ns 61006 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3520558ns 61009 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3520842ns 61014 1a110850 fd5ff06f jal x0, -44 +3521126ns 61019 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3521410ns 61024 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3521808ns 61031 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3521978ns 61034 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3522433ns 61042 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3522604ns 61045 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3522888ns 61050 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3523172ns 61055 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3523456ns 61060 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3523911ns 61068 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3524081ns 61071 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3524365ns 61076 1a110850 fd5ff06f jal x0, -44 +3524650ns 61081 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3524934ns 61086 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3525331ns 61093 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3525502ns 61096 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3525957ns 61104 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3526127ns 61107 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3526411ns 61112 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3526695ns 61117 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3526980ns 61122 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3527434ns 61130 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3527605ns 61133 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3527889ns 61138 1a110850 fd5ff06f jal x0, -44 +3528173ns 61143 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3528457ns 61148 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3528855ns 61155 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3529026ns 61158 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3529480ns 61166 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3529651ns 61169 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3529935ns 61174 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3530219ns 61179 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3530503ns 61184 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3530958ns 61192 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3531128ns 61195 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3531413ns 61200 1a110850 fd5ff06f jal x0, -44 +3531697ns 61205 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3531981ns 61210 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3532379ns 61217 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3532549ns 61220 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3533004ns 61228 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3533174ns 61231 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3533458ns 61236 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3533743ns 61241 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3534027ns 61246 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3534481ns 61254 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3534652ns 61257 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3534936ns 61262 1a110850 fd5ff06f jal x0, -44 +3535220ns 61267 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3535504ns 61272 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3535902ns 61279 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3536073ns 61282 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3536527ns 61290 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3536698ns 61293 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3536982ns 61298 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3537266ns 61303 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3537550ns 61308 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3538005ns 61316 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3538176ns 61319 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3538460ns 61324 1a110850 fd5ff06f jal x0, -44 +3538744ns 61329 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3539028ns 61334 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3539426ns 61341 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3539596ns 61344 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3540051ns 61352 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3540221ns 61355 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3540506ns 61360 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3540790ns 61365 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3541074ns 61370 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3541529ns 61378 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3541699ns 61381 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3541983ns 61386 1a110850 fd5ff06f jal x0, -44 +3542267ns 61391 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3542552ns 61396 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3542949ns 61403 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3543120ns 61406 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3543575ns 61414 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3543745ns 61417 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3544029ns 61422 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3544313ns 61427 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3544598ns 61432 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3545052ns 61440 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3545223ns 61443 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3545507ns 61448 1a110850 fd5ff06f jal x0, -44 +3545791ns 61453 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3546075ns 61458 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3546473ns 61465 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3546643ns 61468 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3547098ns 61476 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3547269ns 61479 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3547553ns 61484 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3547837ns 61489 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3548121ns 61494 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3548576ns 61502 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3548746ns 61505 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3549030ns 61510 1a110850 fd5ff06f jal x0, -44 +3549315ns 61515 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3549599ns 61520 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3549997ns 61527 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3550167ns 61530 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3550622ns 61538 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3550792ns 61541 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3551076ns 61546 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3551361ns 61551 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3551645ns 61556 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3552099ns 61564 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3552270ns 61567 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3552554ns 61572 1a110850 fd5ff06f jal x0, -44 +3552838ns 61577 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3553122ns 61582 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3553520ns 61589 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3553691ns 61592 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3554145ns 61600 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3554316ns 61603 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3554600ns 61608 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3554884ns 61613 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3555168ns 61618 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3555623ns 61626 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3555793ns 61629 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3556078ns 61634 1a110850 fd5ff06f jal x0, -44 +3556362ns 61639 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3556646ns 61644 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3557044ns 61651 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3557214ns 61654 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3557669ns 61662 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3557839ns 61665 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3558124ns 61670 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3558408ns 61675 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3558692ns 61680 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3559147ns 61688 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3559317ns 61691 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3559601ns 61696 1a110850 fd5ff06f jal x0, -44 +3559885ns 61701 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3560170ns 61706 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3560567ns 61713 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3560738ns 61716 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3561192ns 61724 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3561363ns 61727 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3561647ns 61732 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3561931ns 61737 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3562215ns 61742 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3562670ns 61750 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3562841ns 61753 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3563125ns 61758 1a110850 fd5ff06f jal x0, -44 +3563409ns 61763 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3563693ns 61768 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3564091ns 61775 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3564261ns 61778 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3564716ns 61786 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3564887ns 61789 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3565171ns 61794 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3565455ns 61799 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3565739ns 61804 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3566194ns 61812 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3566364ns 61815 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3566648ns 61820 1a110850 fd5ff06f jal x0, -44 +3566933ns 61825 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3567217ns 61830 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3567615ns 61837 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3567785ns 61840 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3568240ns 61848 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3568410ns 61851 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3568694ns 61856 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3568978ns 61861 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3569263ns 61866 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3569717ns 61874 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3569888ns 61877 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3570172ns 61882 1a110850 fd5ff06f jal x0, -44 +3570456ns 61887 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3570740ns 61892 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3571138ns 61899 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3571309ns 61902 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3571763ns 61910 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3571934ns 61913 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3572218ns 61918 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3572502ns 61923 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3572786ns 61928 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3573241ns 61936 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3573411ns 61939 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3573696ns 61944 1a110850 fd5ff06f jal x0, -44 +3573980ns 61949 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3574264ns 61954 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3574662ns 61961 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3574832ns 61964 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3575287ns 61972 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3575457ns 61975 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3575741ns 61980 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3576026ns 61985 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3576310ns 61990 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3576764ns 61998 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3576935ns 62001 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3577219ns 62006 1a110850 fd5ff06f jal x0, -44 +3577503ns 62011 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3577787ns 62016 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3578185ns 62023 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3578356ns 62026 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3578810ns 62034 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3578981ns 62037 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3579265ns 62042 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3579549ns 62047 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3579833ns 62052 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3580288ns 62060 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3580459ns 62063 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3580743ns 62068 1a110850 fd5ff06f jal x0, -44 +3581027ns 62073 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3581311ns 62078 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3581709ns 62085 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3581879ns 62088 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3582334ns 62096 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3582504ns 62099 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3582789ns 62104 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3583073ns 62109 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3583357ns 62114 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3583812ns 62122 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3583982ns 62125 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3584266ns 62130 1a110850 fd5ff06f jal x0, -44 +3584550ns 62135 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3584835ns 62140 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3585232ns 62147 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3585403ns 62150 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3585858ns 62158 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3586028ns 62161 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3586312ns 62166 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3586596ns 62171 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3586881ns 62176 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3587335ns 62184 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3587506ns 62187 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3587790ns 62192 1a110850 fd5ff06f jal x0, -44 +3588074ns 62197 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3588358ns 62202 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3588756ns 62209 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3588927ns 62212 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3589381ns 62220 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3589552ns 62223 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3589836ns 62228 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3590120ns 62233 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3590404ns 62238 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3590859ns 62246 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3591029ns 62249 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3591313ns 62254 1a110850 fd5ff06f jal x0, -44 +3591598ns 62259 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3591882ns 62264 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3592280ns 62271 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3592450ns 62274 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3592905ns 62282 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3593075ns 62285 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3593359ns 62290 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3593644ns 62295 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3593928ns 62300 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3594382ns 62308 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3594553ns 62311 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3594837ns 62316 1a110850 fd5ff06f jal x0, -44 +3595121ns 62321 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3595405ns 62326 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3595803ns 62333 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3595974ns 62336 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3596428ns 62344 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3596599ns 62347 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3596883ns 62352 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3597167ns 62357 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3597451ns 62362 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3597906ns 62370 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3598076ns 62373 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3598361ns 62378 1a110850 fd5ff06f jal x0, -44 +3598645ns 62383 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3598929ns 62388 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3599327ns 62395 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3599497ns 62398 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3599952ns 62406 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3600122ns 62409 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3600407ns 62414 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3600691ns 62419 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3600975ns 62424 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3601430ns 62432 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3601600ns 62435 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3601884ns 62440 1a110850 fd5ff06f jal x0, -44 +3602168ns 62445 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3602453ns 62450 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3602850ns 62457 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3603021ns 62460 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3603475ns 62468 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3603646ns 62471 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3603930ns 62476 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3604214ns 62481 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3604498ns 62486 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3604953ns 62494 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3605124ns 62497 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3605408ns 62502 1a110850 fd5ff06f jal x0, -44 +3605692ns 62507 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3605976ns 62512 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3606374ns 62519 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3606544ns 62522 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3606999ns 62530 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3607170ns 62533 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3607454ns 62538 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3607738ns 62543 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3608022ns 62548 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3608477ns 62556 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3608647ns 62559 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3608931ns 62564 1a110850 fd5ff06f jal x0, -44 +3609216ns 62569 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3609500ns 62574 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3609898ns 62581 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3610068ns 62584 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3610523ns 62592 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3610693ns 62595 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3610977ns 62600 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3611261ns 62605 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3611546ns 62610 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3612000ns 62618 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3612171ns 62621 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3612455ns 62626 1a110850 fd5ff06f jal x0, -44 +3612739ns 62631 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3613023ns 62636 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3613421ns 62643 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3613592ns 62646 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3614046ns 62654 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3614217ns 62657 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3614501ns 62662 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3614785ns 62667 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3615069ns 62672 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3615524ns 62680 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3615694ns 62683 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3615979ns 62688 1a110850 fd5ff06f jal x0, -44 +3616263ns 62693 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3616547ns 62698 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3616945ns 62705 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3617115ns 62708 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3617570ns 62716 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3617740ns 62719 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3618024ns 62724 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3618309ns 62729 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3618593ns 62734 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3619047ns 62742 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3619218ns 62745 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3619502ns 62750 1a110850 fd5ff06f jal x0, -44 +3619786ns 62755 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3620070ns 62760 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3620468ns 62767 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3620639ns 62770 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3621093ns 62778 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3621264ns 62781 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3621548ns 62786 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3621832ns 62791 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3622116ns 62796 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3622571ns 62804 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3622742ns 62807 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3623026ns 62812 1a110850 fd5ff06f jal x0, -44 +3623310ns 62817 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3623594ns 62822 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3623992ns 62829 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3624162ns 62832 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3624617ns 62840 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3624787ns 62843 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3625072ns 62848 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3625356ns 62853 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3625640ns 62858 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3626095ns 62866 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3626265ns 62869 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3626549ns 62874 1a110850 fd5ff06f jal x0, -44 +3626833ns 62879 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3627118ns 62884 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3627515ns 62891 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3627686ns 62894 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3628141ns 62902 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3628311ns 62905 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3628595ns 62910 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3628879ns 62915 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3629164ns 62920 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3629618ns 62928 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3629789ns 62931 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3630073ns 62936 1a110850 fd5ff06f jal x0, -44 +3630357ns 62941 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3630641ns 62946 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3631039ns 62953 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3631210ns 62956 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3631664ns 62964 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3631835ns 62967 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3632119ns 62972 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3632403ns 62977 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3632687ns 62982 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3633142ns 62990 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3633312ns 62993 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3633596ns 62998 1a110850 fd5ff06f jal x0, -44 +3633881ns 63003 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3634165ns 63008 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3634563ns 63015 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3634733ns 63018 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3635188ns 63026 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3635358ns 63029 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3635642ns 63034 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3635927ns 63039 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3636211ns 63044 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3636665ns 63052 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3636836ns 63055 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3637120ns 63060 1a110850 fd5ff06f jal x0, -44 +3637404ns 63065 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3637688ns 63070 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3638086ns 63077 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3638257ns 63080 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3638711ns 63088 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3638882ns 63091 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3639166ns 63096 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3639450ns 63101 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3639734ns 63106 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3640189ns 63114 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3640359ns 63117 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3640644ns 63122 1a110850 fd5ff06f jal x0, -44 +3640928ns 63127 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3641212ns 63132 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3641610ns 63139 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3641780ns 63142 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3642235ns 63150 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3642405ns 63153 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3642690ns 63158 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3642974ns 63163 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3643258ns 63168 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3643713ns 63176 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3643883ns 63179 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3644167ns 63184 1a110850 fd5ff06f jal x0, -44 +3644451ns 63189 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3644736ns 63194 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3645133ns 63201 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3645304ns 63204 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3645759ns 63212 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3645929ns 63215 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3646213ns 63220 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3646497ns 63225 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3646781ns 63230 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3647236ns 63238 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3647407ns 63241 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3647691ns 63246 1a110850 fd5ff06f jal x0, -44 +3647975ns 63251 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3648259ns 63256 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3648657ns 63263 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3648827ns 63266 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3649282ns 63274 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3649453ns 63277 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3649737ns 63282 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3650021ns 63287 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3650305ns 63292 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3650760ns 63300 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3650930ns 63303 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3651214ns 63308 1a110850 fd5ff06f jal x0, -44 +3651499ns 63313 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3651783ns 63318 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3652181ns 63325 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3652351ns 63328 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3652806ns 63336 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3652976ns 63339 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3653260ns 63344 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3653544ns 63349 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3653829ns 63354 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3654283ns 63362 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3654454ns 63365 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3654738ns 63370 1a110850 fd5ff06f jal x0, -44 +3655022ns 63375 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3655306ns 63380 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3655704ns 63387 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3655875ns 63390 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3656329ns 63398 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3656500ns 63401 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3656784ns 63406 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3657068ns 63411 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3657352ns 63416 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3657807ns 63424 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3657977ns 63427 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3658262ns 63432 1a110850 fd5ff06f jal x0, -44 +3658546ns 63437 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3658830ns 63442 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3659228ns 63449 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3659398ns 63452 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3659853ns 63460 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3660023ns 63463 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3660307ns 63468 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3660592ns 63473 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3660876ns 63478 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3661330ns 63486 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3661501ns 63489 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3661785ns 63494 1a110850 fd5ff06f jal x0, -44 +3662069ns 63499 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3662353ns 63504 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3662751ns 63511 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3662922ns 63514 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3663376ns 63522 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3663547ns 63525 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3663831ns 63530 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3664115ns 63535 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3664399ns 63540 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3664854ns 63548 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3665025ns 63551 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3665309ns 63556 1a110850 fd5ff06f jal x0, -44 +3665593ns 63561 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3665877ns 63566 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3666275ns 63573 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3666445ns 63576 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3666900ns 63584 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3667071ns 63587 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3667355ns 63592 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3667639ns 63597 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3667923ns 63602 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3668378ns 63610 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3668548ns 63613 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3668832ns 63618 1a110850 fd5ff06f jal x0, -44 +3669116ns 63623 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3669401ns 63628 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3669798ns 63635 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3669969ns 63638 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3670424ns 63646 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3670594ns 63649 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3670878ns 63654 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3671162ns 63659 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3671447ns 63664 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3671901ns 63672 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3672072ns 63675 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3672356ns 63680 1a110850 fd5ff06f jal x0, -44 +3672640ns 63685 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3672924ns 63690 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3673322ns 63697 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3673493ns 63700 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3673947ns 63708 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3674118ns 63711 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3674402ns 63716 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3674686ns 63721 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3674970ns 63726 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3675425ns 63734 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3675595ns 63737 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3675879ns 63742 1a110850 fd5ff06f jal x0, -44 +3676164ns 63747 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3676448ns 63752 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3676846ns 63759 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3677016ns 63762 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3677471ns 63770 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3677641ns 63773 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3677925ns 63778 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3678210ns 63783 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3678494ns 63788 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3678948ns 63796 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3679119ns 63799 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3679403ns 63804 1a110850 fd5ff06f jal x0, -44 +3679687ns 63809 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3679971ns 63814 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3680369ns 63821 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3680540ns 63824 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3680994ns 63832 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3681165ns 63835 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3681449ns 63840 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3681733ns 63845 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3682017ns 63850 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3682472ns 63858 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3682642ns 63861 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3682927ns 63866 1a110850 fd5ff06f jal x0, -44 +3683211ns 63871 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3683495ns 63876 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3683893ns 63883 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3684063ns 63886 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3684518ns 63894 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3684688ns 63897 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3684973ns 63902 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3685257ns 63907 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3685541ns 63912 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3685996ns 63920 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3686166ns 63923 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3686450ns 63928 1a110850 fd5ff06f jal x0, -44 +3686734ns 63933 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3687019ns 63938 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3687416ns 63945 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3687587ns 63948 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3688042ns 63956 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3688212ns 63959 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3688496ns 63964 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3688780ns 63969 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3689064ns 63974 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3689519ns 63982 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3689690ns 63985 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3689974ns 63990 1a110850 fd5ff06f jal x0, -44 +3690258ns 63995 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3690542ns 64000 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3690940ns 64007 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3691110ns 64010 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3691565ns 64018 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3691736ns 64021 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3692020ns 64026 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3692304ns 64031 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3692588ns 64036 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3693043ns 64044 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3693213ns 64047 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3693497ns 64052 1a110850 fd5ff06f jal x0, -44 +3693782ns 64057 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3694066ns 64062 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3694464ns 64069 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3694634ns 64072 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3695089ns 64080 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3695259ns 64083 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3695543ns 64088 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3695827ns 64093 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3696112ns 64098 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3696566ns 64106 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3696737ns 64109 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3697021ns 64114 1a110850 fd5ff06f jal x0, -44 +3697305ns 64119 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3697589ns 64124 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3697987ns 64131 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3698158ns 64134 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3698612ns 64142 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3698783ns 64145 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3699067ns 64150 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3699351ns 64155 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3699635ns 64160 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3700090ns 64168 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3700260ns 64171 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3700545ns 64176 1a110850 fd5ff06f jal x0, -44 +3700829ns 64181 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3701113ns 64186 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3701511ns 64193 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3701681ns 64196 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3702136ns 64204 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3702306ns 64207 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3702591ns 64212 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3702875ns 64217 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3703159ns 64222 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3703613ns 64230 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3703784ns 64233 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3704068ns 64238 1a110850 fd5ff06f jal x0, -44 +3704352ns 64243 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3704636ns 64248 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3705034ns 64255 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3705205ns 64258 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3705659ns 64266 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3705830ns 64269 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3706114ns 64274 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3706398ns 64279 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3706682ns 64284 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3707137ns 64292 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3707308ns 64295 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3707592ns 64300 1a110850 fd5ff06f jal x0, -44 +3707876ns 64305 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3708160ns 64310 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3708558ns 64317 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3708728ns 64320 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3709183ns 64328 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3709354ns 64331 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3709638ns 64336 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3709922ns 64341 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3710206ns 64346 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3710661ns 64354 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3710831ns 64357 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3711115ns 64362 1a110850 fd5ff06f jal x0, -44 +3711399ns 64367 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3711684ns 64372 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3712081ns 64379 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3712252ns 64382 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3712707ns 64390 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3712877ns 64393 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3713161ns 64398 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3713445ns 64403 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3713730ns 64408 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3714184ns 64416 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3714355ns 64419 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3714639ns 64424 1a110850 fd5ff06f jal x0, -44 +3714923ns 64429 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3715207ns 64434 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3715605ns 64441 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3715776ns 64444 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3716230ns 64452 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3716401ns 64455 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3716685ns 64460 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3716969ns 64465 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3717253ns 64470 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3717708ns 64478 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3717878ns 64481 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3718162ns 64486 1a110850 fd5ff06f jal x0, -44 +3718447ns 64491 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3718731ns 64496 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3719129ns 64503 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3719299ns 64506 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3719754ns 64514 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3719924ns 64517 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3720208ns 64522 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3720493ns 64527 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3720777ns 64532 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3721231ns 64540 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3721402ns 64543 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3721686ns 64548 1a110850 fd5ff06f jal x0, -44 +3721970ns 64553 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3722254ns 64558 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3722652ns 64565 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3722823ns 64568 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3723277ns 64576 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3723448ns 64579 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3723732ns 64584 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3724016ns 64589 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3724300ns 64594 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3724755ns 64602 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3724925ns 64605 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3725210ns 64610 1a110850 fd5ff06f jal x0, -44 +3725494ns 64615 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3725778ns 64620 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3726176ns 64627 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3726346ns 64630 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3726801ns 64638 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3726971ns 64641 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3727256ns 64646 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3727540ns 64651 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3727824ns 64656 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3728279ns 64664 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3728449ns 64667 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3728733ns 64672 1a110850 fd5ff06f jal x0, -44 +3729017ns 64677 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3729302ns 64682 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3729699ns 64689 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3729870ns 64692 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3730325ns 64700 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3730495ns 64703 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3730779ns 64708 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3731063ns 64713 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3731347ns 64718 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3731802ns 64726 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3731973ns 64729 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3732257ns 64734 1a110850 fd5ff06f jal x0, -44 +3732541ns 64739 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3732825ns 64744 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3733223ns 64751 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3733393ns 64754 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3733848ns 64762 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3734019ns 64765 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3734303ns 64770 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3734587ns 64775 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3734871ns 64780 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3735326ns 64788 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3735496ns 64791 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3735780ns 64796 1a110850 fd5ff06f jal x0, -44 +3736065ns 64801 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3736349ns 64806 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3736747ns 64813 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3736917ns 64816 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3737372ns 64824 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3737542ns 64827 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3737826ns 64832 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3738111ns 64837 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3738395ns 64842 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3738849ns 64850 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3739020ns 64853 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3739304ns 64858 1a110850 fd5ff06f jal x0, -44 +3739588ns 64863 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3739872ns 64868 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3740270ns 64875 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3740441ns 64878 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3740895ns 64886 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3741066ns 64889 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3741350ns 64894 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3741634ns 64899 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3741918ns 64904 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3742373ns 64912 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3742543ns 64915 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3742828ns 64920 1a110850 fd5ff06f jal x0, -44 +3743112ns 64925 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3743396ns 64930 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3743794ns 64937 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3743964ns 64940 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3744419ns 64948 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3744589ns 64951 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3744874ns 64956 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3745158ns 64961 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3745442ns 64966 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3745896ns 64974 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3746067ns 64977 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3746351ns 64982 1a110850 fd5ff06f jal x0, -44 +3746635ns 64987 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3746919ns 64992 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3747317ns 64999 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3747488ns 65002 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3747942ns 65010 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3748113ns 65013 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3748397ns 65018 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3748681ns 65023 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3748965ns 65028 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3749420ns 65036 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3749591ns 65039 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3749875ns 65044 1a110850 fd5ff06f jal x0, -44 +3750159ns 65049 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3750443ns 65054 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3750841ns 65061 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3751011ns 65064 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3751466ns 65072 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3751637ns 65075 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3751921ns 65080 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3752205ns 65085 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3752489ns 65090 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3752944ns 65098 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3753114ns 65101 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3753398ns 65106 1a110850 fd5ff06f jal x0, -44 +3753682ns 65111 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3753967ns 65116 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3754364ns 65123 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3754535ns 65126 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3754990ns 65134 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3755160ns 65137 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3755444ns 65142 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3755728ns 65147 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3756013ns 65152 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3756467ns 65160 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3756638ns 65163 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3756922ns 65168 1a110850 fd5ff06f jal x0, -44 +3757206ns 65173 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3757490ns 65178 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3757888ns 65185 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3758059ns 65188 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3758513ns 65196 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3758684ns 65199 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3758968ns 65204 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3759252ns 65209 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3759536ns 65214 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3759991ns 65222 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3760161ns 65225 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3760445ns 65230 1a110850 fd5ff06f jal x0, -44 +3760730ns 65235 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3761014ns 65240 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3761412ns 65247 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3761582ns 65250 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3762037ns 65258 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3762207ns 65261 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3762491ns 65266 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3762776ns 65271 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3763060ns 65276 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3763514ns 65284 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3763685ns 65287 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3763969ns 65292 1a110850 fd5ff06f jal x0, -44 +3764253ns 65297 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3764537ns 65302 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3764935ns 65309 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3765106ns 65312 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3765560ns 65320 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3765731ns 65323 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3766015ns 65328 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3766299ns 65333 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3766583ns 65338 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3767038ns 65346 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3767208ns 65349 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3767493ns 65354 1a110850 fd5ff06f jal x0, -44 +3767777ns 65359 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3768061ns 65364 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3768459ns 65371 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3768629ns 65374 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3769084ns 65382 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3769254ns 65385 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3769539ns 65390 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3769823ns 65395 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3770107ns 65400 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3770562ns 65408 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3770732ns 65411 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3771016ns 65416 1a110850 fd5ff06f jal x0, -44 +3771300ns 65421 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3771585ns 65426 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3771982ns 65433 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3772153ns 65436 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3772608ns 65444 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3772778ns 65447 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3773062ns 65452 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3773346ns 65457 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3773631ns 65462 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3774085ns 65470 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3774256ns 65473 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3774540ns 65478 1a110850 fd5ff06f jal x0, -44 +3774824ns 65483 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3775108ns 65488 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3775506ns 65495 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3775676ns 65498 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3776131ns 65506 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3776302ns 65509 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3776586ns 65514 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3776870ns 65519 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3777154ns 65524 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3777609ns 65532 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3777779ns 65535 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3778063ns 65540 1a110850 fd5ff06f jal x0, -44 +3778348ns 65545 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3778632ns 65550 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3779030ns 65557 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3779200ns 65560 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3779655ns 65568 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3779825ns 65571 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3780109ns 65576 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3780394ns 65581 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3780678ns 65586 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3781132ns 65594 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3781303ns 65597 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3781587ns 65602 1a110850 fd5ff06f jal x0, -44 +3781871ns 65607 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3782155ns 65612 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3782553ns 65619 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3782724ns 65622 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3783178ns 65630 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3783349ns 65633 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3783633ns 65638 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3783917ns 65643 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3784201ns 65648 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3784656ns 65656 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3784826ns 65659 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3785111ns 65664 1a110850 fd5ff06f jal x0, -44 +3785395ns 65669 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3785679ns 65674 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3786077ns 65681 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3786247ns 65684 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3786702ns 65692 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3786872ns 65695 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3787157ns 65700 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3787441ns 65705 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3787725ns 65710 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3788179ns 65718 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3788350ns 65721 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3788634ns 65726 1a110850 fd5ff06f jal x0, -44 +3788918ns 65731 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3789202ns 65736 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3789600ns 65743 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3789771ns 65746 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3790225ns 65754 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3790396ns 65757 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3790680ns 65762 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3790964ns 65767 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3791248ns 65772 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3791703ns 65780 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3791874ns 65783 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3792158ns 65788 1a110850 fd5ff06f jal x0, -44 +3792442ns 65793 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3792726ns 65798 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3793124ns 65805 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3793294ns 65808 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3793749ns 65816 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3793920ns 65819 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3794204ns 65824 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3794488ns 65829 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3794772ns 65834 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3795227ns 65842 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3795397ns 65845 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3795681ns 65850 1a110850 fd5ff06f jal x0, -44 +3795965ns 65855 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3796250ns 65860 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3796647ns 65867 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3796818ns 65870 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3797273ns 65878 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3797443ns 65881 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3797727ns 65886 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3798011ns 65891 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3798296ns 65896 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3798750ns 65904 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3798921ns 65907 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3799205ns 65912 1a110850 fd5ff06f jal x0, -44 +3799489ns 65917 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3799773ns 65922 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3800171ns 65929 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3800342ns 65932 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3800796ns 65940 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3800967ns 65943 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3801251ns 65948 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3801535ns 65953 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3801819ns 65958 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3802274ns 65966 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3802444ns 65969 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3802728ns 65974 1a110850 fd5ff06f jal x0, -44 +3803013ns 65979 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3803297ns 65984 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3803695ns 65991 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3803865ns 65994 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3804320ns 66002 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3804490ns 66005 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3804774ns 66010 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3805059ns 66015 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3805343ns 66020 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3805797ns 66028 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3805968ns 66031 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3806252ns 66036 1a110850 fd5ff06f jal x0, -44 +3806536ns 66041 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3806820ns 66046 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3807218ns 66053 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3807389ns 66056 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3807843ns 66064 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3808014ns 66067 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3808298ns 66072 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3808582ns 66077 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3808866ns 66082 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3809321ns 66090 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3809491ns 66093 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3809776ns 66098 1a110850 fd5ff06f jal x0, -44 +3810060ns 66103 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3810344ns 66108 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3810742ns 66115 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3810912ns 66118 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3811367ns 66126 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3811537ns 66129 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3811822ns 66134 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3812106ns 66139 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3812390ns 66144 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3812845ns 66152 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3813015ns 66155 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3813299ns 66160 1a110850 fd5ff06f jal x0, -44 +3813583ns 66165 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3813868ns 66170 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3814265ns 66177 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3814436ns 66180 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3814891ns 66188 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3815061ns 66191 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3815345ns 66196 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3815629ns 66201 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3815914ns 66206 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3816368ns 66214 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3816539ns 66217 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3816823ns 66222 1a110850 fd5ff06f jal x0, -44 +3817107ns 66227 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3817391ns 66232 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3817789ns 66239 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3817959ns 66242 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3818414ns 66250 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3818585ns 66253 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3818869ns 66258 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3819153ns 66263 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3819437ns 66268 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3819892ns 66276 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3820062ns 66279 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3820346ns 66284 1a110850 fd5ff06f jal x0, -44 +3820631ns 66289 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3820915ns 66294 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3821313ns 66301 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3821483ns 66304 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3821938ns 66312 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3822108ns 66315 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3822392ns 66320 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3822677ns 66325 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3822961ns 66330 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3823415ns 66338 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3823586ns 66341 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3823870ns 66346 1a110850 fd5ff06f jal x0, -44 +3824154ns 66351 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3824438ns 66356 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3824836ns 66363 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3825007ns 66366 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3825461ns 66374 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3825632ns 66377 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3825916ns 66382 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3826200ns 66387 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3826484ns 66392 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3826939ns 66400 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3827109ns 66403 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3827394ns 66408 1a110850 fd5ff06f jal x0, -44 +3827678ns 66413 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3827962ns 66418 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3828360ns 66425 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3828530ns 66428 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3828985ns 66436 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3829155ns 66439 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3829440ns 66444 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3829724ns 66449 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3830008ns 66454 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3830463ns 66462 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3830633ns 66465 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3830917ns 66470 1a110850 fd5ff06f jal x0, -44 +3831201ns 66475 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3831485ns 66480 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3831883ns 66487 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3832054ns 66490 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3832508ns 66498 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3832679ns 66501 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3832963ns 66506 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3833247ns 66511 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3833531ns 66516 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3833986ns 66524 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3834157ns 66527 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3834441ns 66532 1a110850 fd5ff06f jal x0, -44 +3834725ns 66537 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3835009ns 66542 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3835407ns 66549 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3835577ns 66552 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3836032ns 66560 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3836203ns 66563 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3836487ns 66568 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3836771ns 66573 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3837055ns 66578 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3837510ns 66586 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3837680ns 66589 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3837964ns 66594 1a110850 fd5ff06f jal x0, -44 +3838248ns 66599 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3838533ns 66604 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3838930ns 66611 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3839101ns 66614 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3839556ns 66622 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3839726ns 66625 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3840010ns 66630 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3840294ns 66635 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3840579ns 66640 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3841033ns 66648 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3841204ns 66651 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3841488ns 66656 1a110850 fd5ff06f jal x0, -44 +3841772ns 66661 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3842056ns 66666 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3842454ns 66673 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3842625ns 66676 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3843079ns 66684 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3843250ns 66687 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3843534ns 66692 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3843818ns 66697 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3844102ns 66702 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3844557ns 66710 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3844727ns 66713 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3845011ns 66718 1a110850 fd5ff06f jal x0, -44 +3845296ns 66723 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3845580ns 66728 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3845978ns 66735 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3846148ns 66738 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3846603ns 66746 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3846773ns 66749 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3847057ns 66754 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3847342ns 66759 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3847626ns 66764 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3848080ns 66772 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3848251ns 66775 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3848535ns 66780 1a110850 fd5ff06f jal x0, -44 +3848819ns 66785 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3849103ns 66790 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3849501ns 66797 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3849672ns 66800 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3850126ns 66808 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3850297ns 66811 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3850581ns 66816 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3850865ns 66821 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3851149ns 66826 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3851604ns 66834 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3851775ns 66837 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3852059ns 66842 1a110850 fd5ff06f jal x0, -44 +3852343ns 66847 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3852627ns 66852 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3853025ns 66859 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3853195ns 66862 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3853650ns 66870 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3853820ns 66873 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3854105ns 66878 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3854389ns 66883 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3854673ns 66888 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3855128ns 66896 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3855298ns 66899 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3855582ns 66904 1a110850 fd5ff06f jal x0, -44 +3855866ns 66909 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3856151ns 66914 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3856548ns 66921 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3856719ns 66924 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3857174ns 66932 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3857344ns 66935 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3857628ns 66940 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3857912ns 66945 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3858197ns 66950 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3858651ns 66958 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3858822ns 66961 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3859106ns 66966 1a110850 fd5ff06f jal x0, -44 +3859390ns 66971 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3859674ns 66976 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3860072ns 66983 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3860242ns 66986 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3860697ns 66994 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3860868ns 66997 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3861152ns 67002 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3861436ns 67007 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3861720ns 67012 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3862175ns 67020 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3862345ns 67023 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3862629ns 67028 1a110850 fd5ff06f jal x0, -44 +3862914ns 67033 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3863198ns 67038 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3863596ns 67045 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3863766ns 67048 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3864221ns 67056 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3864391ns 67059 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3864675ns 67064 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3864960ns 67069 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3865244ns 67074 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3865698ns 67082 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3865869ns 67085 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3866153ns 67090 1a110850 fd5ff06f jal x0, -44 +3866437ns 67095 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3866721ns 67100 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3867119ns 67107 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3867290ns 67110 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3867744ns 67118 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3867915ns 67121 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3868199ns 67126 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3868483ns 67131 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3868767ns 67136 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3869222ns 67144 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3869392ns 67147 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3869677ns 67152 1a110850 fd5ff06f jal x0, -44 +3869961ns 67157 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3870245ns 67162 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3870643ns 67169 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3870813ns 67172 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3871268ns 67180 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3871438ns 67183 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3871723ns 67188 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3872007ns 67193 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3872291ns 67198 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3872746ns 67206 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3872916ns 67209 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3873200ns 67214 1a110850 fd5ff06f jal x0, -44 +3873484ns 67219 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3873768ns 67224 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3874166ns 67231 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3874337ns 67234 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3874791ns 67242 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3874962ns 67245 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3875246ns 67250 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3875530ns 67255 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3875814ns 67260 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3876269ns 67268 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3876440ns 67271 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3876724ns 67276 1a110850 fd5ff06f jal x0, -44 +3877008ns 67281 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3877292ns 67286 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3877690ns 67293 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3877860ns 67296 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3878315ns 67304 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3878486ns 67307 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3878770ns 67312 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3879054ns 67317 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3879338ns 67322 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3879793ns 67330 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3879963ns 67333 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3880247ns 67338 1a110850 fd5ff06f jal x0, -44 +3880531ns 67343 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3880816ns 67348 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3881213ns 67355 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3881384ns 67358 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3881839ns 67366 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3882009ns 67369 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3882293ns 67374 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3882577ns 67379 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3882862ns 67384 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3883316ns 67392 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3883487ns 67395 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3883771ns 67400 1a110850 fd5ff06f jal x0, -44 +3884055ns 67405 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3884339ns 67410 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3884737ns 67417 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3884908ns 67420 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3885362ns 67428 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3885533ns 67431 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3885817ns 67436 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3886101ns 67441 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3886385ns 67446 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3886840ns 67454 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3887010ns 67457 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3887295ns 67462 1a110850 fd5ff06f jal x0, -44 +3887579ns 67467 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3887863ns 67472 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3888261ns 67479 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3888431ns 67482 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3888886ns 67490 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3889056ns 67493 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3889340ns 67498 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3889625ns 67503 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3889909ns 67508 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3890363ns 67516 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3890534ns 67519 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3890818ns 67524 1a110850 fd5ff06f jal x0, -44 +3891102ns 67529 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3891386ns 67534 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3891784ns 67541 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3891955ns 67544 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3892409ns 67552 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3892580ns 67555 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3892864ns 67560 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3893148ns 67565 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3893432ns 67570 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3893887ns 67578 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3894058ns 67581 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3894342ns 67586 1a110850 fd5ff06f jal x0, -44 +3894626ns 67591 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3894910ns 67596 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3895308ns 67603 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3895478ns 67606 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3895933ns 67614 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3896103ns 67617 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3896388ns 67622 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3896672ns 67627 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3896956ns 67632 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3897411ns 67640 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3897581ns 67643 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3897865ns 67648 1a110850 fd5ff06f jal x0, -44 +3898149ns 67653 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3898434ns 67658 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3898831ns 67665 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3899002ns 67668 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3899457ns 67676 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3899627ns 67679 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3899911ns 67684 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3900195ns 67689 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3900480ns 67694 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3900934ns 67702 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3901105ns 67705 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3901389ns 67710 1a110850 fd5ff06f jal x0, -44 +3901673ns 67715 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3901957ns 67720 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3902355ns 67727 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3902525ns 67730 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3902980ns 67738 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3903151ns 67741 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3903435ns 67746 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3903719ns 67751 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3904003ns 67756 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3904458ns 67764 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3904628ns 67767 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3904912ns 67772 1a110850 fd5ff06f jal x0, -44 +3905197ns 67777 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3905481ns 67782 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3905879ns 67789 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3906049ns 67792 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3906504ns 67800 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3906674ns 67803 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3906958ns 67808 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3907243ns 67813 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3907527ns 67818 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3907981ns 67826 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3908152ns 67829 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3908436ns 67834 1a110850 fd5ff06f jal x0, -44 +3908720ns 67839 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3909004ns 67844 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3909402ns 67851 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3909573ns 67854 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3910027ns 67862 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3910198ns 67865 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3910482ns 67870 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3910766ns 67875 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3911050ns 67880 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3911505ns 67888 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3911675ns 67891 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3911960ns 67896 1a110850 fd5ff06f jal x0, -44 +3912244ns 67901 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3912528ns 67906 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3912926ns 67913 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3913096ns 67916 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3913551ns 67924 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3913721ns 67927 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3914006ns 67932 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3914290ns 67937 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3914574ns 67942 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3915029ns 67950 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3915199ns 67953 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3915483ns 67958 1a110850 fd5ff06f jal x0, -44 +3915767ns 67963 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3916051ns 67968 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3916449ns 67975 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3916620ns 67978 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3917074ns 67986 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3917245ns 67989 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3917529ns 67994 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3917813ns 67999 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3918097ns 68004 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3918552ns 68012 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3918723ns 68015 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3919007ns 68020 1a110850 fd5ff06f jal x0, -44 +3919291ns 68025 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3919575ns 68030 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3919973ns 68037 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3920143ns 68040 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3920598ns 68048 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3920769ns 68051 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3921053ns 68056 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3921337ns 68061 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3921621ns 68066 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3922076ns 68074 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3922246ns 68077 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3922530ns 68082 1a110850 fd5ff06f jal x0, -44 +3922815ns 68087 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3923099ns 68092 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3923496ns 68099 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3923667ns 68102 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3924122ns 68110 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3924292ns 68113 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3924576ns 68118 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3924860ns 68123 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3925145ns 68128 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3925599ns 68136 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3925770ns 68139 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3926054ns 68144 1a110850 fd5ff06f jal x0, -44 +3926338ns 68149 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3926622ns 68154 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3927020ns 68161 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3927191ns 68164 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3927645ns 68172 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3927816ns 68175 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3928100ns 68180 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3928384ns 68185 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3928668ns 68190 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3929123ns 68198 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3929293ns 68201 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3929578ns 68206 1a110850 fd5ff06f jal x0, -44 +3929862ns 68211 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3930146ns 68216 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3930544ns 68223 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3930714ns 68226 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3931169ns 68234 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3931339ns 68237 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3931623ns 68242 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3931908ns 68247 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3932192ns 68252 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3932646ns 68260 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3932817ns 68263 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3933101ns 68268 1a110850 fd5ff06f jal x0, -44 +3933385ns 68273 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3933669ns 68278 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3934067ns 68285 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3934238ns 68288 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3934692ns 68296 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3934863ns 68299 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3935147ns 68304 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3935431ns 68309 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3935715ns 68314 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3936170ns 68322 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3936341ns 68325 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3936625ns 68330 1a110850 fd5ff06f jal x0, -44 +3936909ns 68335 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3937193ns 68340 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3937591ns 68347 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3937761ns 68350 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3938216ns 68358 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3938386ns 68361 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3938671ns 68366 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3938955ns 68371 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3939239ns 68376 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3939694ns 68384 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3939864ns 68387 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3940148ns 68392 1a110850 fd5ff06f jal x0, -44 +3940432ns 68397 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3940717ns 68402 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3941114ns 68409 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3941285ns 68412 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3941740ns 68420 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3941910ns 68423 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3942194ns 68428 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3942478ns 68433 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3942763ns 68438 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3943217ns 68446 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3943388ns 68449 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3943672ns 68454 1a110850 fd5ff06f jal x0, -44 +3943956ns 68459 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3944240ns 68464 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3944638ns 68471 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3944808ns 68474 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3945263ns 68482 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3945434ns 68485 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3945718ns 68490 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3946002ns 68495 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3946286ns 68500 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3946741ns 68508 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3946911ns 68511 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3947195ns 68516 1a110850 fd5ff06f jal x0, -44 +3947480ns 68521 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3947764ns 68526 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3948162ns 68533 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3948332ns 68536 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3948787ns 68544 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3948957ns 68547 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3949241ns 68552 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3949526ns 68557 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3949810ns 68562 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3950264ns 68570 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3950435ns 68573 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3950719ns 68578 1a110850 fd5ff06f jal x0, -44 +3951003ns 68583 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3951287ns 68588 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3951685ns 68595 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3951856ns 68598 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3952310ns 68606 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3952481ns 68609 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3952765ns 68614 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3953049ns 68619 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3953333ns 68624 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3953788ns 68632 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3953958ns 68635 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3954243ns 68640 1a110850 fd5ff06f jal x0, -44 +3954527ns 68645 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3954811ns 68650 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3955209ns 68657 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3955379ns 68660 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3955834ns 68668 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3956004ns 68671 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3956289ns 68676 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3956573ns 68681 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3956857ns 68686 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3957312ns 68694 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3957482ns 68697 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3957766ns 68702 1a110850 fd5ff06f jal x0, -44 +3958050ns 68707 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3958335ns 68712 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3958732ns 68719 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3958903ns 68722 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3959357ns 68730 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3959528ns 68733 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3959812ns 68738 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3960096ns 68743 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3960380ns 68748 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3960835ns 68756 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3961006ns 68759 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3961290ns 68764 1a110850 fd5ff06f jal x0, -44 +3961574ns 68769 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3961858ns 68774 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3962256ns 68781 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3962426ns 68784 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3962881ns 68792 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3963052ns 68795 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3963336ns 68800 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3963620ns 68805 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3963904ns 68810 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3964359ns 68818 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3964529ns 68821 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3964813ns 68826 1a110850 fd5ff06f jal x0, -44 +3965098ns 68831 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3965382ns 68836 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3965779ns 68843 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3965950ns 68846 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3966405ns 68854 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3966575ns 68857 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3966859ns 68862 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3967143ns 68867 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3967428ns 68872 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3967882ns 68880 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3968053ns 68883 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3968337ns 68888 1a110850 fd5ff06f jal x0, -44 +3968621ns 68893 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3968905ns 68898 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3969303ns 68905 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3969474ns 68908 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3969928ns 68916 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3970099ns 68919 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3970383ns 68924 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3970667ns 68929 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3970951ns 68934 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3971406ns 68942 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3971576ns 68945 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3971861ns 68950 1a110850 fd5ff06f jal x0, -44 +3972145ns 68955 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3972429ns 68960 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3972827ns 68967 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3972997ns 68970 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3973452ns 68978 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3973622ns 68981 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3973906ns 68986 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3974191ns 68991 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3974475ns 68996 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3974929ns 69004 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3975100ns 69007 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3975384ns 69012 1a110850 fd5ff06f jal x0, -44 +3975668ns 69017 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3975952ns 69022 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3976350ns 69029 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3976521ns 69032 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3976975ns 69040 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3977146ns 69043 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3977430ns 69048 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3977714ns 69053 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3977998ns 69058 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3978453ns 69066 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3978624ns 69069 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3978908ns 69074 1a110850 fd5ff06f jal x0, -44 +3979192ns 69079 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3979476ns 69084 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3979874ns 69091 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3980044ns 69094 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3980499ns 69102 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3980669ns 69105 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3980954ns 69110 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3981238ns 69115 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3981522ns 69120 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3981977ns 69128 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3982147ns 69131 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3982431ns 69136 1a110850 fd5ff06f jal x0, -44 +3982715ns 69141 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3983000ns 69146 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3983397ns 69153 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3983568ns 69156 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3984023ns 69164 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3984193ns 69167 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3984477ns 69172 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3984761ns 69177 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3985046ns 69182 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3985500ns 69190 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3985671ns 69193 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3985955ns 69198 1a110850 fd5ff06f jal x0, -44 +3986239ns 69203 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3986523ns 69208 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3986921ns 69215 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3987091ns 69218 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3987546ns 69226 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3987717ns 69229 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3988001ns 69234 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3988285ns 69239 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3988569ns 69244 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3989024ns 69252 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3989194ns 69255 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3989478ns 69260 1a110850 fd5ff06f jal x0, -44 +3989763ns 69265 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3990047ns 69270 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3990445ns 69277 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3990615ns 69280 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3991070ns 69288 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3991240ns 69291 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3991524ns 69296 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3991809ns 69301 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3992093ns 69306 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3992547ns 69314 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3992718ns 69317 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3993002ns 69322 1a110850 fd5ff06f jal x0, -44 +3993286ns 69327 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3993570ns 69332 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3993968ns 69339 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3994139ns 69342 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3994593ns 69350 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3994764ns 69353 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3995048ns 69358 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3995332ns 69363 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3995616ns 69368 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3996071ns 69376 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3996241ns 69379 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +3996526ns 69384 1a110850 fd5ff06f jal x0, -44 +3996810ns 69389 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3997094ns 69394 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +3997492ns 69401 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3997662ns 69404 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3998117ns 69412 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +3998287ns 69415 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +3998572ns 69420 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +3998856ns 69425 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +3999140ns 69430 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +3999595ns 69438 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +3999765ns 69441 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4000049ns 69446 1a110850 fd5ff06f jal x0, -44 +4000333ns 69451 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4000618ns 69456 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4001015ns 69463 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4001186ns 69466 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4001640ns 69474 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4001811ns 69477 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4002095ns 69482 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4002379ns 69487 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4002663ns 69492 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4003118ns 69500 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4003289ns 69503 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4003573ns 69508 1a110850 fd5ff06f jal x0, -44 +4003857ns 69513 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4004141ns 69518 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4004539ns 69525 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4004709ns 69528 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4005164ns 69536 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4005335ns 69539 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4005619ns 69544 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4005903ns 69549 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4006187ns 69554 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4006642ns 69562 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4006812ns 69565 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4007096ns 69570 1a110850 fd5ff06f jal x0, -44 +4007381ns 69575 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4007665ns 69580 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4008063ns 69587 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4008233ns 69590 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4008688ns 69598 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4008858ns 69601 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4009142ns 69606 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4009426ns 69611 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4009711ns 69616 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4010165ns 69624 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4010336ns 69627 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4010620ns 69632 1a110850 fd5ff06f jal x0, -44 +4010904ns 69637 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4011188ns 69642 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4011586ns 69649 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4011757ns 69652 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4012211ns 69660 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4012382ns 69663 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4012666ns 69668 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4012950ns 69673 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4013234ns 69678 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4013689ns 69686 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4013859ns 69689 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4014144ns 69694 1a110850 fd5ff06f jal x0, -44 +4014428ns 69699 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4014712ns 69704 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4015110ns 69711 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4015280ns 69714 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4015735ns 69722 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4015905ns 69725 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4016189ns 69730 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4016474ns 69735 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4016758ns 69740 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4017212ns 69748 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4017383ns 69751 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4017667ns 69756 1a110850 fd5ff06f jal x0, -44 +4017951ns 69761 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4018235ns 69766 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4018633ns 69773 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4018804ns 69776 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4019258ns 69784 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4019429ns 69787 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4019713ns 69792 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4019997ns 69797 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4020281ns 69802 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4020736ns 69810 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4020907ns 69813 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4021191ns 69818 1a110850 fd5ff06f jal x0, -44 +4021475ns 69823 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4021759ns 69828 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4022157ns 69835 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4022327ns 69838 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4022782ns 69846 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4022952ns 69849 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4023237ns 69854 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4023521ns 69859 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4023805ns 69864 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4024260ns 69872 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4024430ns 69875 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4024714ns 69880 1a110850 fd5ff06f jal x0, -44 +4024998ns 69885 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4025283ns 69890 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4025680ns 69897 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4025851ns 69900 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4026306ns 69908 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4026476ns 69911 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4026760ns 69916 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4027044ns 69921 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4027329ns 69926 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4027783ns 69934 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4027954ns 69937 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4028238ns 69942 1a110850 fd5ff06f jal x0, -44 +4028522ns 69947 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4028806ns 69952 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4029204ns 69959 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4029375ns 69962 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4029829ns 69970 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4030000ns 69973 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4030284ns 69978 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4030568ns 69983 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4030852ns 69988 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4031307ns 69996 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4031477ns 69999 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4031761ns 70004 1a110850 fd5ff06f jal x0, -44 +4032046ns 70009 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4032330ns 70014 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4032728ns 70021 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4032898ns 70024 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4033353ns 70032 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4033523ns 70035 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4033807ns 70040 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4034092ns 70045 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4034376ns 70050 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4034830ns 70058 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4035001ns 70061 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4035285ns 70066 1a110850 fd5ff06f jal x0, -44 +4035569ns 70071 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4035853ns 70076 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4036251ns 70083 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4036422ns 70086 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4036876ns 70094 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4037047ns 70097 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4037331ns 70102 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4037615ns 70107 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4037899ns 70112 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4038354ns 70120 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4038524ns 70123 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4038809ns 70128 1a110850 fd5ff06f jal x0, -44 +4039093ns 70133 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4039377ns 70138 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4039775ns 70145 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4039945ns 70148 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4040400ns 70156 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4040570ns 70159 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4040855ns 70164 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4041139ns 70169 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4041423ns 70174 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4041878ns 70182 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4042048ns 70185 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4042332ns 70190 1a110850 fd5ff06f jal x0, -44 +4042616ns 70195 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4042901ns 70200 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4043298ns 70207 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4043469ns 70210 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4043923ns 70218 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4044094ns 70221 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4044378ns 70226 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4044662ns 70231 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4044946ns 70236 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4045401ns 70244 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4045572ns 70247 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4045856ns 70252 1a110850 fd5ff06f jal x0, -44 +4046140ns 70257 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4046424ns 70262 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4046822ns 70269 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4046992ns 70272 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4047447ns 70280 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4047618ns 70283 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4047902ns 70288 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4048186ns 70293 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4048470ns 70298 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4048925ns 70306 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4049095ns 70309 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4049379ns 70314 1a110850 fd5ff06f jal x0, -44 +4049664ns 70319 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4049948ns 70324 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4050346ns 70331 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4050516ns 70334 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4050971ns 70342 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4051141ns 70345 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4051425ns 70350 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4051709ns 70355 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4051994ns 70360 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4052448ns 70368 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4052619ns 70371 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4052903ns 70376 1a110850 fd5ff06f jal x0, -44 +4053187ns 70381 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4053471ns 70386 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4053869ns 70393 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4054040ns 70396 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4054494ns 70404 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4054665ns 70407 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4054949ns 70412 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4055233ns 70417 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4055517ns 70422 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4055972ns 70430 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4056142ns 70433 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4056427ns 70438 1a110850 fd5ff06f jal x0, -44 +4056711ns 70443 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4056995ns 70448 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4057393ns 70455 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4057563ns 70458 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4058018ns 70466 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4058188ns 70469 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4058472ns 70474 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4058757ns 70479 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4059041ns 70484 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4059495ns 70492 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4059666ns 70495 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4059950ns 70500 1a110850 fd5ff06f jal x0, -44 +4060234ns 70505 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4060518ns 70510 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4060916ns 70517 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4061087ns 70520 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4061541ns 70528 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4061712ns 70531 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4061996ns 70536 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4062280ns 70541 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4062564ns 70546 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4063019ns 70554 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4063190ns 70557 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4063474ns 70562 1a110850 fd5ff06f jal x0, -44 +4063758ns 70567 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4064042ns 70572 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4064440ns 70579 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4064610ns 70582 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4065065ns 70590 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4065235ns 70593 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4065520ns 70598 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4065804ns 70603 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4066088ns 70608 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4066543ns 70616 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4066713ns 70619 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4066997ns 70624 1a110850 fd5ff06f jal x0, -44 +4067281ns 70629 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4067566ns 70634 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4067963ns 70641 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4068134ns 70644 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4068589ns 70652 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4068759ns 70655 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4069043ns 70660 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4069327ns 70665 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4069612ns 70670 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4070066ns 70678 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4070237ns 70681 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4070521ns 70686 1a110850 fd5ff06f jal x0, -44 +4070805ns 70691 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4071089ns 70696 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4071487ns 70703 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4071658ns 70706 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4072112ns 70714 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4072283ns 70717 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4072567ns 70722 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4072851ns 70727 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4073135ns 70732 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4073590ns 70740 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4073760ns 70743 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4074044ns 70748 1a110850 fd5ff06f jal x0, -44 +4074329ns 70753 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4074613ns 70758 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4075011ns 70765 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4075181ns 70768 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4075636ns 70776 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4075806ns 70779 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4076090ns 70784 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4076375ns 70789 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4076659ns 70794 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4077113ns 70802 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4077284ns 70805 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4077568ns 70810 1a110850 fd5ff06f jal x0, -44 +4077852ns 70815 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4078136ns 70820 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4078534ns 70827 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4078705ns 70830 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4079159ns 70838 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4079330ns 70841 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4079614ns 70846 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4079898ns 70851 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4080182ns 70856 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4080637ns 70864 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4080807ns 70867 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4081092ns 70872 1a110850 fd5ff06f jal x0, -44 +4081376ns 70877 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4081660ns 70882 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4082058ns 70889 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4082228ns 70892 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4082683ns 70900 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4082853ns 70903 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4083138ns 70908 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4083422ns 70913 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4083706ns 70918 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4084161ns 70926 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4084331ns 70929 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4084615ns 70934 1a110850 fd5ff06f jal x0, -44 +4084899ns 70939 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4085184ns 70944 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4085581ns 70951 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4085752ns 70954 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4086207ns 70962 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4086377ns 70965 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4086661ns 70970 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4086945ns 70975 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4087229ns 70980 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4087684ns 70988 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4087855ns 70991 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4088139ns 70996 1a110850 fd5ff06f jal x0, -44 +4088423ns 71001 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4088707ns 71006 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4089105ns 71013 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4089275ns 71016 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4089730ns 71024 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4089901ns 71027 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4090185ns 71032 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4090469ns 71037 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4090753ns 71042 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4091208ns 71050 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4091378ns 71053 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4091662ns 71058 1a110850 fd5ff06f jal x0, -44 +4091947ns 71063 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4092231ns 71068 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4092629ns 71075 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4092799ns 71078 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4093254ns 71086 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4093424ns 71089 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4093708ns 71094 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4093992ns 71099 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4094277ns 71104 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4094731ns 71112 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4094902ns 71115 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4095186ns 71120 1a110850 fd5ff06f jal x0, -44 +4095470ns 71125 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4095754ns 71130 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4096152ns 71137 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4096323ns 71140 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4096777ns 71148 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4096948ns 71151 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4097232ns 71156 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4097516ns 71161 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4097800ns 71166 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4098255ns 71174 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4098425ns 71177 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4098710ns 71182 1a110850 fd5ff06f jal x0, -44 +4098994ns 71187 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4099278ns 71192 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4099676ns 71199 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4099846ns 71202 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4100301ns 71210 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4100471ns 71213 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4100755ns 71218 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4101040ns 71223 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4101324ns 71228 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4101778ns 71236 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4101949ns 71239 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4102233ns 71244 1a110850 fd5ff06f jal x0, -44 +4102517ns 71249 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4102801ns 71254 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4103199ns 71261 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4103370ns 71264 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4103824ns 71272 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4103995ns 71275 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4104279ns 71280 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4104563ns 71285 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4104847ns 71290 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4105302ns 71298 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4105473ns 71301 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4105757ns 71306 1a110850 fd5ff06f jal x0, -44 +4106041ns 71311 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4106325ns 71316 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4106723ns 71323 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4106893ns 71326 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4107348ns 71334 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4107519ns 71337 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4107803ns 71342 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4108087ns 71347 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4108371ns 71352 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4108826ns 71360 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4108996ns 71363 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4109280ns 71368 1a110850 fd5ff06f jal x0, -44 +4109564ns 71373 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4109849ns 71378 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4110246ns 71385 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4110417ns 71388 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4110872ns 71396 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4111042ns 71399 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4111326ns 71404 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4111610ns 71409 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4111895ns 71414 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4112349ns 71422 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4112520ns 71425 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4112804ns 71430 1a110850 fd5ff06f jal x0, -44 +4113088ns 71435 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4113372ns 71440 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4113770ns 71447 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4113941ns 71450 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4114395ns 71458 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4114566ns 71461 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4114850ns 71466 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4115134ns 71471 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4115418ns 71476 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4115873ns 71484 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4116043ns 71487 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4116327ns 71492 1a110850 fd5ff06f jal x0, -44 +4116612ns 71497 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4116896ns 71502 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4117294ns 71509 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4117464ns 71512 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4117919ns 71520 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4118089ns 71523 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4118373ns 71528 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4118658ns 71533 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4118942ns 71538 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4119396ns 71546 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4119567ns 71549 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4119851ns 71554 1a110850 fd5ff06f jal x0, -44 +4120135ns 71559 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4120419ns 71564 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4120817ns 71571 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4120988ns 71574 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4121442ns 71582 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4121613ns 71585 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4121897ns 71590 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4122181ns 71595 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4122465ns 71600 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4122920ns 71608 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4123090ns 71611 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4123375ns 71616 1a110850 fd5ff06f jal x0, -44 +4123659ns 71621 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4123943ns 71626 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4124341ns 71633 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4124511ns 71636 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4124966ns 71644 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4125136ns 71647 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4125421ns 71652 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4125705ns 71657 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4125989ns 71662 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4126444ns 71670 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4126614ns 71673 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4126898ns 71678 1a110850 fd5ff06f jal x0, -44 +4127182ns 71683 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4127467ns 71688 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4127864ns 71695 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4128035ns 71698 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4128490ns 71706 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4128660ns 71709 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4128944ns 71714 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4129228ns 71719 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4129512ns 71724 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4129967ns 71732 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4130138ns 71735 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4130422ns 71740 1a110850 fd5ff06f jal x0, -44 +4130706ns 71745 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4130990ns 71750 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4131388ns 71757 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4131558ns 71760 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4132013ns 71768 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4132184ns 71771 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4132468ns 71776 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4132752ns 71781 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4133036ns 71786 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4133491ns 71794 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4133661ns 71797 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4133945ns 71802 1a110850 fd5ff06f jal x0, -44 +4134230ns 71807 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4134514ns 71812 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4134912ns 71819 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4135082ns 71822 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4135537ns 71830 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4135707ns 71833 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4135991ns 71838 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4136275ns 71843 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4136560ns 71848 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4137014ns 71856 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4137185ns 71859 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4137469ns 71864 1a110850 fd5ff06f jal x0, -44 +4137753ns 71869 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4138037ns 71874 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4138435ns 71881 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4138606ns 71884 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4139060ns 71892 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4139231ns 71895 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4139515ns 71900 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4139799ns 71905 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4140083ns 71910 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4140538ns 71918 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4140708ns 71921 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4140993ns 71926 1a110850 fd5ff06f jal x0, -44 +4141277ns 71931 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4141561ns 71936 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4141959ns 71943 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4142129ns 71946 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4142584ns 71954 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4142754ns 71957 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4143039ns 71962 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4143323ns 71967 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4143607ns 71972 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4144061ns 71980 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4144232ns 71983 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4144516ns 71988 1a110850 fd5ff06f jal x0, -44 +4144800ns 71993 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4145084ns 71998 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4145482ns 72005 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4145653ns 72008 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4146107ns 72016 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4146278ns 72019 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4146562ns 72024 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4146846ns 72029 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4147130ns 72034 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4147585ns 72042 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4147756ns 72045 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4148040ns 72050 1a110850 fd5ff06f jal x0, -44 +4148324ns 72055 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4148608ns 72060 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4149006ns 72067 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4149176ns 72070 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4149631ns 72078 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4149802ns 72081 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4150086ns 72086 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4150370ns 72091 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4150654ns 72096 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4151109ns 72104 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4151279ns 72107 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4151563ns 72112 1a110850 fd5ff06f jal x0, -44 +4151847ns 72117 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4152132ns 72122 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4152529ns 72129 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4152700ns 72132 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4153155ns 72140 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4153325ns 72143 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4153609ns 72148 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4153893ns 72153 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4154178ns 72158 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4154632ns 72166 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4154803ns 72169 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4155087ns 72174 1a110850 fd5ff06f jal x0, -44 +4155371ns 72179 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4155655ns 72184 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4156053ns 72191 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4156224ns 72194 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4156678ns 72202 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4156849ns 72205 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4157133ns 72210 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4157417ns 72215 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4157701ns 72220 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4158156ns 72228 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4158326ns 72231 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4158610ns 72236 1a110850 fd5ff06f jal x0, -44 +4158895ns 72241 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4159179ns 72246 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4159577ns 72253 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4159747ns 72256 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4160202ns 72264 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4160372ns 72267 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4160656ns 72272 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4160941ns 72277 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4161225ns 72282 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4161679ns 72290 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4161850ns 72293 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4162134ns 72298 1a110850 fd5ff06f jal x0, -44 +4162418ns 72303 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4162702ns 72308 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4163100ns 72315 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4163271ns 72318 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4163725ns 72326 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4163896ns 72329 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4164180ns 72334 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4164464ns 72339 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4164748ns 72344 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4165203ns 72352 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4165373ns 72355 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4165658ns 72360 1a110850 fd5ff06f jal x0, -44 +4165942ns 72365 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4166226ns 72370 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4166624ns 72377 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4166794ns 72380 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4167249ns 72388 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4167419ns 72391 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4167704ns 72396 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4167988ns 72401 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4168272ns 72406 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4168727ns 72414 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4168897ns 72417 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4169181ns 72422 1a110850 fd5ff06f jal x0, -44 +4169465ns 72427 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4169750ns 72432 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4170147ns 72439 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4170318ns 72442 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4170773ns 72450 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4170943ns 72453 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4171227ns 72458 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4171511ns 72463 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4171795ns 72468 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4172250ns 72476 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4172421ns 72479 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4172705ns 72484 1a110850 fd5ff06f jal x0, -44 +4172989ns 72489 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4173273ns 72494 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4173671ns 72501 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4173841ns 72504 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4174296ns 72512 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4174467ns 72515 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4174751ns 72520 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4175035ns 72525 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4175319ns 72530 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4175774ns 72538 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4175944ns 72541 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4176228ns 72546 1a110850 fd5ff06f jal x0, -44 +4176513ns 72551 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4176797ns 72556 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4177195ns 72563 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4177365ns 72566 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4177820ns 72574 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4177990ns 72577 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4178274ns 72582 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4178559ns 72587 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4178843ns 72592 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4179297ns 72600 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4179468ns 72603 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4179752ns 72608 1a110850 fd5ff06f jal x0, -44 +4180036ns 72613 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4180320ns 72618 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4180718ns 72625 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4180889ns 72628 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4181343ns 72636 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4181514ns 72639 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4181798ns 72644 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4182082ns 72649 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4182366ns 72654 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4182821ns 72662 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4182991ns 72665 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4183276ns 72670 1a110850 fd5ff06f jal x0, -44 +4183560ns 72675 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4183844ns 72680 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4184242ns 72687 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4184412ns 72690 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4184867ns 72698 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4185037ns 72701 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4185322ns 72706 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4185606ns 72711 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4185890ns 72716 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4186344ns 72724 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4186515ns 72727 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4186799ns 72732 1a110850 fd5ff06f jal x0, -44 +4187083ns 72737 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4187367ns 72742 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4187765ns 72749 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4187936ns 72752 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4188390ns 72760 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4188561ns 72763 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4188845ns 72768 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4189129ns 72773 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4189413ns 72778 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4189868ns 72786 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4190039ns 72789 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4190323ns 72794 1a110850 fd5ff06f jal x0, -44 +4190607ns 72799 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4190891ns 72804 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4191289ns 72811 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4191459ns 72814 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4191914ns 72822 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4192085ns 72825 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4192369ns 72830 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4192653ns 72835 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4192937ns 72840 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4193392ns 72848 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4193562ns 72851 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4193846ns 72856 1a110850 fd5ff06f jal x0, -44 +4194130ns 72861 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4194415ns 72866 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4194812ns 72873 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4194983ns 72876 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4195438ns 72884 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4195608ns 72887 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4195892ns 72892 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4196176ns 72897 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4196461ns 72902 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4196915ns 72910 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4197086ns 72913 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4197370ns 72918 1a110850 fd5ff06f jal x0, -44 +4197654ns 72923 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4197938ns 72928 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4198336ns 72935 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4198507ns 72938 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4198961ns 72946 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4199132ns 72949 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4199416ns 72954 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4199700ns 72959 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4199984ns 72964 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4200439ns 72972 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4200609ns 72975 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4200893ns 72980 1a110850 fd5ff06f jal x0, -44 +4201178ns 72985 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4201462ns 72990 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4201860ns 72997 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4202030ns 73000 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4202485ns 73008 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4202655ns 73011 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4202939ns 73016 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4203224ns 73021 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4203508ns 73026 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4203962ns 73034 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4204133ns 73037 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4204417ns 73042 1a110850 fd5ff06f jal x0, -44 +4204701ns 73047 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4204985ns 73052 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4205383ns 73059 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4205554ns 73062 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4206008ns 73070 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4206179ns 73073 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4206463ns 73078 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4206747ns 73083 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4207031ns 73088 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4207486ns 73096 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4207656ns 73099 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4207941ns 73104 1a110850 fd5ff06f jal x0, -44 +4208225ns 73109 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4208509ns 73114 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4208907ns 73121 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4209077ns 73124 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4209532ns 73132 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4209702ns 73135 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4209987ns 73140 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4210271ns 73145 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4210555ns 73150 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4211010ns 73158 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4211180ns 73161 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4211464ns 73166 1a110850 fd5ff06f jal x0, -44 +4211748ns 73171 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4212033ns 73176 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4212430ns 73183 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4212601ns 73186 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4213056ns 73194 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4213226ns 73197 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4213510ns 73202 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4213794ns 73207 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4214079ns 73212 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4214533ns 73220 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4214704ns 73223 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4214988ns 73228 1a110850 fd5ff06f jal x0, -44 +4215272ns 73233 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4215556ns 73238 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4215954ns 73245 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4216124ns 73248 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4216579ns 73256 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4216750ns 73259 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4217034ns 73264 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4217318ns 73269 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4217602ns 73274 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4218057ns 73282 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4218227ns 73285 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4218511ns 73290 1a110850 fd5ff06f jal x0, -44 +4218796ns 73295 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4219080ns 73300 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4219478ns 73307 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4219648ns 73310 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4220103ns 73318 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4220273ns 73321 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4220557ns 73326 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4220842ns 73331 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4221126ns 73336 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4221580ns 73344 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4221751ns 73347 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4222035ns 73352 1a110850 fd5ff06f jal x0, -44 +4222319ns 73357 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4222603ns 73362 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4223001ns 73369 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4223172ns 73372 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4223626ns 73380 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4223797ns 73383 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4224081ns 73388 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4224365ns 73393 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4224649ns 73398 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4225104ns 73406 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4225274ns 73409 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4225559ns 73414 1a110850 fd5ff06f jal x0, -44 +4225843ns 73419 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4226127ns 73424 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4226525ns 73431 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4226695ns 73434 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4227150ns 73442 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4227320ns 73445 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4227605ns 73450 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4227889ns 73455 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4228173ns 73460 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4228627ns 73468 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4228798ns 73471 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4229082ns 73476 1a110850 fd5ff06f jal x0, -44 +4229366ns 73481 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4229650ns 73486 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4230048ns 73493 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4230219ns 73496 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4230673ns 73504 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4230844ns 73507 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4231128ns 73512 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4231412ns 73517 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4231696ns 73522 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4232151ns 73530 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4232322ns 73533 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4232606ns 73538 1a110850 fd5ff06f jal x0, -44 +4232890ns 73543 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4233174ns 73548 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4233572ns 73555 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4233742ns 73558 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4234197ns 73566 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4234368ns 73569 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4234652ns 73574 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4234936ns 73579 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4235220ns 73584 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4235675ns 73592 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4235845ns 73595 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4236129ns 73600 1a110850 fd5ff06f jal x0, -44 +4236413ns 73605 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4236698ns 73610 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4237095ns 73617 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4237266ns 73620 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4237721ns 73628 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4237891ns 73631 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4238175ns 73636 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4238459ns 73641 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4238744ns 73646 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4239198ns 73654 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4239369ns 73657 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4239653ns 73662 1a110850 fd5ff06f jal x0, -44 +4239937ns 73667 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4240221ns 73672 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4240619ns 73679 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4240790ns 73682 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4241244ns 73690 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4241415ns 73693 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4241699ns 73698 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4241983ns 73703 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4242267ns 73708 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4242722ns 73716 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4242892ns 73719 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4243176ns 73724 1a110850 fd5ff06f jal x0, -44 +4243461ns 73729 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4243745ns 73734 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4244143ns 73741 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4244313ns 73744 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4244768ns 73752 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4244938ns 73755 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4245222ns 73760 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4245507ns 73765 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4245791ns 73770 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4246245ns 73778 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4246416ns 73781 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4246700ns 73786 1a110850 fd5ff06f jal x0, -44 +4246984ns 73791 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4247268ns 73796 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4247666ns 73803 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4247837ns 73806 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4248291ns 73814 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4248462ns 73817 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4248746ns 73822 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4249030ns 73827 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4249314ns 73832 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4249769ns 73840 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4249939ns 73843 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4250224ns 73848 1a110850 fd5ff06f jal x0, -44 +4250508ns 73853 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4250792ns 73858 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4251190ns 73865 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4251360ns 73868 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4251815ns 73876 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4251985ns 73879 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4252270ns 73884 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4252554ns 73889 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4252838ns 73894 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4253293ns 73902 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4253463ns 73905 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4253747ns 73910 1a110850 fd5ff06f jal x0, -44 +4254031ns 73915 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4254316ns 73920 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4254713ns 73927 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4254884ns 73930 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4255339ns 73938 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4255509ns 73941 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4255793ns 73946 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4256077ns 73951 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4256362ns 73956 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4256816ns 73964 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4256987ns 73967 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4257271ns 73972 1a110850 fd5ff06f jal x0, -44 +4257555ns 73977 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4257839ns 73982 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4258237ns 73989 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4258407ns 73992 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4258862ns 74000 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4259033ns 74003 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4259317ns 74008 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4259601ns 74013 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4259885ns 74018 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4260340ns 74026 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4260510ns 74029 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4260794ns 74034 1a110850 fd5ff06f jal x0, -44 +4261079ns 74039 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4261363ns 74044 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4261761ns 74051 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4261931ns 74054 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4262386ns 74062 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4262556ns 74065 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4262840ns 74070 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4263125ns 74075 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4263409ns 74080 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4263863ns 74088 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4264034ns 74091 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4264318ns 74096 1a110850 fd5ff06f jal x0, -44 +4264602ns 74101 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4264886ns 74106 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4265284ns 74113 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4265455ns 74116 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4265909ns 74124 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4266080ns 74127 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4266364ns 74132 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4266648ns 74137 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4266932ns 74142 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4267387ns 74150 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4267557ns 74153 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4267842ns 74158 1a110850 fd5ff06f jal x0, -44 +4268126ns 74163 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4268410ns 74168 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4268808ns 74175 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4268978ns 74178 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4269433ns 74186 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4269603ns 74189 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4269888ns 74194 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4270172ns 74199 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4270456ns 74204 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4270911ns 74212 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4271081ns 74215 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4271365ns 74220 1a110850 fd5ff06f jal x0, -44 +4271649ns 74225 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4271933ns 74230 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4272331ns 74237 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4272502ns 74240 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4272956ns 74248 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4273127ns 74251 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4273411ns 74256 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4273695ns 74261 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4273979ns 74266 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4274434ns 74274 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4274605ns 74277 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4274889ns 74282 1a110850 fd5ff06f jal x0, -44 +4275173ns 74287 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4275457ns 74292 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4275855ns 74299 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4276025ns 74302 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4276480ns 74310 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4276651ns 74313 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4276935ns 74318 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4277219ns 74323 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4277503ns 74328 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4277958ns 74336 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4278128ns 74339 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4278412ns 74344 1a110850 fd5ff06f jal x0, -44 +4278696ns 74349 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4278981ns 74354 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4279378ns 74361 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4279549ns 74364 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4280004ns 74372 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4280174ns 74375 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4280458ns 74380 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4280742ns 74385 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4281027ns 74390 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4281481ns 74398 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4281652ns 74401 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4281936ns 74406 1a110850 fd5ff06f jal x0, -44 +4282220ns 74411 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4282504ns 74416 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4282902ns 74423 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4283073ns 74426 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4283527ns 74434 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4283698ns 74437 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4283982ns 74442 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4284266ns 74447 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4284550ns 74452 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4285005ns 74460 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4285175ns 74463 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4285459ns 74468 1a110850 fd5ff06f jal x0, -44 +4285744ns 74473 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4286028ns 74478 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4286426ns 74485 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4286596ns 74488 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4287051ns 74496 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4287221ns 74499 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4287505ns 74504 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4287790ns 74509 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4288074ns 74514 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4288528ns 74522 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4288699ns 74525 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4288983ns 74530 1a110850 fd5ff06f jal x0, -44 +4289267ns 74535 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4289551ns 74540 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4289949ns 74547 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4290120ns 74550 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4290574ns 74558 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4290745ns 74561 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4291029ns 74566 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4291313ns 74571 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4291597ns 74576 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4292052ns 74584 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4292223ns 74587 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4292507ns 74592 1a110850 fd5ff06f jal x0, -44 +4292791ns 74597 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4293075ns 74602 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4293473ns 74609 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4293643ns 74612 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4294098ns 74620 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4294268ns 74623 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4294553ns 74628 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4294837ns 74633 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4295121ns 74638 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4295576ns 74646 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4295746ns 74649 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4296030ns 74654 1a110850 fd5ff06f jal x0, -44 +4296314ns 74659 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4296599ns 74664 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4296996ns 74671 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4297167ns 74674 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4297622ns 74682 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4297792ns 74685 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4298076ns 74690 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4298360ns 74695 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4298645ns 74700 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4299099ns 74708 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4299270ns 74711 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4299554ns 74716 1a110850 fd5ff06f jal x0, -44 +4299838ns 74721 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4300122ns 74726 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4300520ns 74733 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4300690ns 74736 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4301145ns 74744 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4301316ns 74747 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4301600ns 74752 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4301884ns 74757 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4302168ns 74762 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4302623ns 74770 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4302793ns 74773 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4303077ns 74778 1a110850 fd5ff06f jal x0, -44 +4303362ns 74783 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4303646ns 74788 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4304044ns 74795 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4304214ns 74798 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4304669ns 74806 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4304839ns 74809 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4305123ns 74814 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4305408ns 74819 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4305692ns 74824 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4306146ns 74832 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4306317ns 74835 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4306601ns 74840 1a110850 fd5ff06f jal x0, -44 +4306885ns 74845 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4307169ns 74850 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4307567ns 74857 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4307738ns 74860 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4308192ns 74868 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4308363ns 74871 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4308647ns 74876 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4308931ns 74881 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4309215ns 74886 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4309670ns 74894 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4309840ns 74897 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4310125ns 74902 1a110850 fd5ff06f jal x0, -44 +4310409ns 74907 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4310693ns 74912 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4311091ns 74919 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4311261ns 74922 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4311716ns 74930 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4311886ns 74933 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4312171ns 74938 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4312455ns 74943 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4312739ns 74948 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4313194ns 74956 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4313364ns 74959 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4313648ns 74964 1a110850 fd5ff06f jal x0, -44 +4313932ns 74969 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4314216ns 74974 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4314614ns 74981 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4314785ns 74984 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4315239ns 74992 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4315410ns 74995 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4315694ns 75000 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4315978ns 75005 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4316262ns 75010 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4316717ns 75018 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4316888ns 75021 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4317172ns 75026 1a110850 fd5ff06f jal x0, -44 +4317456ns 75031 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4317740ns 75036 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4318138ns 75043 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4318308ns 75046 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4318763ns 75054 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4318934ns 75057 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4319218ns 75062 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4319502ns 75067 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4319786ns 75072 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4320241ns 75080 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4320411ns 75083 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4320695ns 75088 1a110850 fd5ff06f jal x0, -44 +4320979ns 75093 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4321264ns 75098 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4321661ns 75105 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4321832ns 75108 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4322287ns 75116 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4322457ns 75119 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4322741ns 75124 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4323025ns 75129 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4323310ns 75134 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4323764ns 75142 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4323935ns 75145 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4324219ns 75150 1a110850 fd5ff06f jal x0, -44 +4324503ns 75155 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4324787ns 75160 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4325185ns 75167 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4325356ns 75170 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4325810ns 75178 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4325981ns 75181 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4326265ns 75186 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4326549ns 75191 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4326833ns 75196 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4327288ns 75204 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4327458ns 75207 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4327743ns 75212 1a110850 fd5ff06f jal x0, -44 +4328027ns 75217 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4328311ns 75222 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4328709ns 75229 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4328879ns 75232 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4329334ns 75240 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4329504ns 75243 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4329788ns 75248 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4330073ns 75253 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4330357ns 75258 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4330811ns 75266 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4330982ns 75269 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4331266ns 75274 1a110850 fd5ff06f jal x0, -44 +4331550ns 75279 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4331834ns 75284 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4332232ns 75291 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4332403ns 75294 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4332857ns 75302 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4333028ns 75305 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4333312ns 75310 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4333596ns 75315 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4333880ns 75320 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4334335ns 75328 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4334506ns 75331 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4334790ns 75336 1a110850 fd5ff06f jal x0, -44 +4335074ns 75341 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4335358ns 75346 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4335756ns 75353 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4335926ns 75356 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4336381ns 75364 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4336551ns 75367 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4336836ns 75372 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4337120ns 75377 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4337404ns 75382 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4337859ns 75390 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4338029ns 75393 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4338313ns 75398 1a110850 fd5ff06f jal x0, -44 +4338597ns 75403 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4338882ns 75408 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4339279ns 75415 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4339450ns 75418 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4339905ns 75426 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4340075ns 75429 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4340359ns 75434 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4340643ns 75439 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4340928ns 75444 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4341382ns 75452 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4341553ns 75455 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4341837ns 75460 1a110850 fd5ff06f jal x0, -44 +4342121ns 75465 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4342405ns 75470 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4342803ns 75477 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4342973ns 75480 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4343428ns 75488 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4343599ns 75491 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4343883ns 75496 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4344167ns 75501 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4344451ns 75506 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4344906ns 75514 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4345076ns 75517 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4345360ns 75522 1a110850 fd5ff06f jal x0, -44 +4345645ns 75527 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4345929ns 75532 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4346327ns 75539 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4346497ns 75542 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4346952ns 75550 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4347122ns 75553 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4347406ns 75558 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4347691ns 75563 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4347975ns 75568 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4348429ns 75576 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4348600ns 75579 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4348884ns 75584 1a110850 fd5ff06f jal x0, -44 +4349168ns 75589 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4349452ns 75594 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4349850ns 75601 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4350021ns 75604 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4350475ns 75612 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4350646ns 75615 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4350930ns 75620 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4351214ns 75625 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4351498ns 75630 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4351953ns 75638 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4352123ns 75641 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4352408ns 75646 1a110850 fd5ff06f jal x0, -44 +4352692ns 75651 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4352976ns 75656 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4353374ns 75663 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4353544ns 75666 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4353999ns 75674 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4354169ns 75677 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4354454ns 75682 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4354738ns 75687 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4355022ns 75692 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4355477ns 75700 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4355647ns 75703 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4355931ns 75708 1a110850 fd5ff06f jal x0, -44 +4356215ns 75713 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4356499ns 75718 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4356897ns 75725 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4357068ns 75728 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4357522ns 75736 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4357693ns 75739 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4357977ns 75744 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4358261ns 75749 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4358545ns 75754 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4359000ns 75762 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4359171ns 75765 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4359455ns 75770 1a110850 fd5ff06f jal x0, -44 +4359739ns 75775 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4360023ns 75780 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4360421ns 75787 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4360591ns 75790 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4361046ns 75798 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4361217ns 75801 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4361501ns 75806 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4361785ns 75811 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4362069ns 75816 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4362524ns 75824 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4362694ns 75827 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4362978ns 75832 1a110850 fd5ff06f jal x0, -44 +4363263ns 75837 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4363547ns 75842 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4363944ns 75849 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4364115ns 75852 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4364570ns 75860 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4364740ns 75863 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4365024ns 75868 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4365308ns 75873 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4365593ns 75878 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4366047ns 75886 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4366218ns 75889 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4366502ns 75894 1a110850 fd5ff06f jal x0, -44 +4366786ns 75899 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4367070ns 75904 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4367468ns 75911 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4367639ns 75914 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4368093ns 75922 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4368264ns 75925 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4368548ns 75930 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4368832ns 75935 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4369116ns 75940 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4369571ns 75948 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4369741ns 75951 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4370026ns 75956 1a110850 fd5ff06f jal x0, -44 +4370310ns 75961 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4370594ns 75966 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4370992ns 75973 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4371162ns 75976 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4371617ns 75984 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4371787ns 75987 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4372071ns 75992 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4372356ns 75997 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4372640ns 76002 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4373094ns 76010 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4373265ns 76013 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4373549ns 76018 1a110850 fd5ff06f jal x0, -44 +4373833ns 76023 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4374117ns 76028 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4374515ns 76035 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4374686ns 76038 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4375140ns 76046 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4375311ns 76049 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4375595ns 76054 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4375879ns 76059 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4376163ns 76064 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4376618ns 76072 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4376789ns 76075 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4377073ns 76080 1a110850 fd5ff06f jal x0, -44 +4377357ns 76085 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4377641ns 76090 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4378039ns 76097 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4378209ns 76100 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4378664ns 76108 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4378834ns 76111 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4379119ns 76116 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4379403ns 76121 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4379687ns 76126 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4380142ns 76134 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4380312ns 76137 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4380596ns 76142 1a110850 fd5ff06f jal x0, -44 +4380880ns 76147 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4381165ns 76152 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4381562ns 76159 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4381733ns 76162 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4382188ns 76170 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4382358ns 76173 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4382642ns 76178 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4382926ns 76183 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4383211ns 76188 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4383665ns 76196 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4383836ns 76199 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4384120ns 76204 1a110850 fd5ff06f jal x0, -44 +4384404ns 76209 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4384688ns 76214 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4385086ns 76221 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4385256ns 76224 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4385711ns 76232 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4385882ns 76235 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4386166ns 76240 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4386450ns 76245 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4386734ns 76250 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4387189ns 76258 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4387359ns 76261 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4387643ns 76266 1a110850 fd5ff06f jal x0, -44 +4387928ns 76271 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4388212ns 76276 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4388610ns 76283 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4388780ns 76286 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4389235ns 76294 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4389405ns 76297 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4389689ns 76302 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4389974ns 76307 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4390258ns 76312 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4390712ns 76320 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4390883ns 76323 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4391167ns 76328 1a110850 fd5ff06f jal x0, -44 +4391451ns 76333 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4391735ns 76338 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4392133ns 76345 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4392304ns 76348 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4392758ns 76356 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4392929ns 76359 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4393213ns 76364 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4393497ns 76369 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4393781ns 76374 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4394236ns 76382 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4394406ns 76385 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4394691ns 76390 1a110850 fd5ff06f jal x0, -44 +4394975ns 76395 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4395259ns 76400 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4395657ns 76407 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4395827ns 76410 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4396282ns 76418 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4396452ns 76421 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4396737ns 76426 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4397021ns 76431 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4397305ns 76436 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4397760ns 76444 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4397930ns 76447 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4398214ns 76452 1a110850 fd5ff06f jal x0, -44 +4398498ns 76457 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4398783ns 76462 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4399180ns 76469 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4399351ns 76472 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4399805ns 76480 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4399976ns 76483 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4400260ns 76488 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4400544ns 76493 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4400828ns 76498 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4401283ns 76506 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4401454ns 76509 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4401738ns 76514 1a110850 fd5ff06f jal x0, -44 +4402022ns 76519 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4402306ns 76524 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4402704ns 76531 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4402874ns 76534 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4403329ns 76542 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4403500ns 76545 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4403784ns 76550 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4404068ns 76555 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4404352ns 76560 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4404807ns 76568 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4404977ns 76571 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4405261ns 76576 1a110850 fd5ff06f jal x0, -44 +4405546ns 76581 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4405830ns 76586 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4406227ns 76593 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4406398ns 76596 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4406853ns 76604 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4407023ns 76607 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4407307ns 76612 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4407591ns 76617 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4407876ns 76622 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4408330ns 76630 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4408501ns 76633 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4408785ns 76638 1a110850 fd5ff06f jal x0, -44 +4409069ns 76643 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4409353ns 76648 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4409751ns 76655 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4409922ns 76658 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4410376ns 76666 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4410547ns 76669 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4410831ns 76674 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4411115ns 76679 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4411399ns 76684 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4411854ns 76692 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4412024ns 76695 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4412309ns 76700 1a110850 fd5ff06f jal x0, -44 +4412593ns 76705 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4412877ns 76710 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4413275ns 76717 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4413445ns 76720 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4413900ns 76728 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4414070ns 76731 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4414354ns 76736 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4414639ns 76741 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4414923ns 76746 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4415377ns 76754 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4415548ns 76757 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4415832ns 76762 1a110850 fd5ff06f jal x0, -44 +4416116ns 76767 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4416400ns 76772 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4416798ns 76779 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4416969ns 76782 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4417423ns 76790 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4417594ns 76793 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4417878ns 76798 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4418162ns 76803 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4418446ns 76808 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4418901ns 76816 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4419072ns 76819 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4419356ns 76824 1a110850 fd5ff06f jal x0, -44 +4419640ns 76829 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4419924ns 76834 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4420322ns 76841 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4420492ns 76844 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4420947ns 76852 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4421117ns 76855 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4421402ns 76860 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4421686ns 76865 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4421970ns 76870 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4422425ns 76878 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4422595ns 76881 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4422879ns 76886 1a110850 fd5ff06f jal x0, -44 +4423163ns 76891 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4423448ns 76896 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4423845ns 76903 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4424016ns 76906 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4424471ns 76914 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4424641ns 76917 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4424925ns 76922 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4425209ns 76927 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4425494ns 76932 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4425948ns 76940 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4426119ns 76943 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4426403ns 76948 1a110850 fd5ff06f jal x0, -44 +4426687ns 76953 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4426971ns 76958 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4427369ns 76965 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4427539ns 76968 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4427994ns 76976 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4428165ns 76979 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4428449ns 76984 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4428733ns 76989 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4429017ns 76994 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4429472ns 77002 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4429642ns 77005 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4429926ns 77010 1a110850 fd5ff06f jal x0, -44 +4430211ns 77015 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4430495ns 77020 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4430893ns 77027 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4431063ns 77030 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4431518ns 77038 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4431688ns 77041 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4431972ns 77046 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4432257ns 77051 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4432541ns 77056 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4432995ns 77064 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4433166ns 77067 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4433450ns 77072 1a110850 fd5ff06f jal x0, -44 +4433734ns 77077 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4434018ns 77082 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4434416ns 77089 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4434587ns 77092 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4435041ns 77100 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4435212ns 77103 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4435496ns 77108 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4435780ns 77113 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4436064ns 77118 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4436519ns 77126 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4436689ns 77129 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4436974ns 77134 1a110850 fd5ff06f jal x0, -44 +4437258ns 77139 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4437542ns 77144 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4437940ns 77151 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4438110ns 77154 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4438565ns 77162 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4438735ns 77165 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4439020ns 77170 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4439304ns 77175 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4439588ns 77180 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4440043ns 77188 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4440213ns 77191 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4440497ns 77196 1a110850 fd5ff06f jal x0, -44 +4440781ns 77201 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4441066ns 77206 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4441463ns 77213 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4441634ns 77216 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4442088ns 77224 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4442259ns 77227 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4442543ns 77232 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4442827ns 77237 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4443111ns 77242 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4443566ns 77250 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4443737ns 77253 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4444021ns 77258 1a110850 fd5ff06f jal x0, -44 +4444305ns 77263 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4444589ns 77268 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4444987ns 77275 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4445157ns 77278 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4445612ns 77286 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4445783ns 77289 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4446067ns 77294 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4446351ns 77299 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4446635ns 77304 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4447090ns 77312 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4447260ns 77315 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4447544ns 77320 1a110850 fd5ff06f jal x0, -44 +4447829ns 77325 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4448113ns 77330 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4448511ns 77337 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4448681ns 77340 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4449136ns 77348 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4449306ns 77351 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4449590ns 77356 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4449874ns 77361 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4450159ns 77366 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4450613ns 77374 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4450784ns 77377 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4451068ns 77382 1a110850 fd5ff06f jal x0, -44 +4451352ns 77387 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4451636ns 77392 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4452034ns 77399 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4452205ns 77402 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4452659ns 77410 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4452830ns 77413 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4453114ns 77418 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4453398ns 77423 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4453682ns 77428 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4454137ns 77436 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4454307ns 77439 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4454592ns 77444 1a110850 fd5ff06f jal x0, -44 +4454876ns 77449 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4455160ns 77454 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4455558ns 77461 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4455728ns 77464 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4456183ns 77472 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4456353ns 77475 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4456637ns 77480 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4456922ns 77485 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4457206ns 77490 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4457660ns 77498 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4457831ns 77501 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4458115ns 77506 1a110850 fd5ff06f jal x0, -44 +4458399ns 77511 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4458683ns 77516 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4459081ns 77523 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4459252ns 77526 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4459706ns 77534 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4459877ns 77537 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4460161ns 77542 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4460445ns 77547 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4460729ns 77552 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4461184ns 77560 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4461355ns 77563 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4461639ns 77568 1a110850 fd5ff06f jal x0, -44 +4461923ns 77573 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4462207ns 77578 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4462605ns 77585 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4462775ns 77588 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4463230ns 77596 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4463400ns 77599 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4463685ns 77604 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4463969ns 77609 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4464253ns 77614 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4464708ns 77622 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4464878ns 77625 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4465162ns 77630 1a110850 fd5ff06f jal x0, -44 +4465446ns 77635 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4465731ns 77640 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4466128ns 77647 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4466299ns 77650 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4466754ns 77658 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4466924ns 77661 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4467208ns 77666 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4467492ns 77671 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4467777ns 77676 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4468231ns 77684 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4468402ns 77687 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4468686ns 77692 1a110850 fd5ff06f jal x0, -44 +4468970ns 77697 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4469254ns 77702 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4469652ns 77709 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4469823ns 77712 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4470277ns 77720 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4470448ns 77723 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4470732ns 77728 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4471016ns 77733 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4471300ns 77738 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4471755ns 77746 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4471925ns 77749 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4472209ns 77754 1a110850 fd5ff06f jal x0, -44 +4472494ns 77759 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4472778ns 77764 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4473176ns 77771 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4473346ns 77774 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4473801ns 77782 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4473971ns 77785 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4474255ns 77790 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4474540ns 77795 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4474824ns 77800 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4475278ns 77808 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4475449ns 77811 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4475733ns 77816 1a110850 fd5ff06f jal x0, -44 +4476017ns 77821 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4476301ns 77826 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4476699ns 77833 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4476870ns 77836 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4477324ns 77844 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4477495ns 77847 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4477779ns 77852 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4478063ns 77857 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4478347ns 77862 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4478802ns 77870 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4478972ns 77873 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4479257ns 77878 1a110850 fd5ff06f jal x0, -44 +4479541ns 77883 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4479825ns 77888 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4480223ns 77895 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4480393ns 77898 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4480848ns 77906 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4481018ns 77909 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4481303ns 77914 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4481587ns 77919 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4481871ns 77924 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4482326ns 77932 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4482496ns 77935 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4482780ns 77940 1a110850 fd5ff06f jal x0, -44 +4483064ns 77945 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4483349ns 77950 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4483746ns 77957 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4483917ns 77960 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4484371ns 77968 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4484542ns 77971 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4484826ns 77976 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4485110ns 77981 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4485394ns 77986 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4485849ns 77994 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4486020ns 77997 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4486304ns 78002 1a110850 fd5ff06f jal x0, -44 +4486588ns 78007 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4486872ns 78012 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4487270ns 78019 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4487440ns 78022 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4487895ns 78030 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4488066ns 78033 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4488350ns 78038 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4488634ns 78043 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4488918ns 78048 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4489373ns 78056 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4489543ns 78059 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4489827ns 78064 1a110850 fd5ff06f jal x0, -44 +4490112ns 78069 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4490396ns 78074 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4490794ns 78081 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4490964ns 78084 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4491419ns 78092 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4491589ns 78095 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4491873ns 78100 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4492157ns 78105 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4492442ns 78110 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4492896ns 78118 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4493067ns 78121 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4493351ns 78126 1a110850 fd5ff06f jal x0, -44 +4493635ns 78131 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4493919ns 78136 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4494317ns 78143 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4494488ns 78146 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4494942ns 78154 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4495113ns 78157 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4495397ns 78162 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4495681ns 78167 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4495965ns 78172 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4496420ns 78180 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4496590ns 78183 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4496875ns 78188 1a110850 fd5ff06f jal x0, -44 +4497159ns 78193 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4497443ns 78198 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4497841ns 78205 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4498011ns 78208 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4498466ns 78216 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4498636ns 78219 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4498920ns 78224 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4499205ns 78229 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4499489ns 78234 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4499943ns 78242 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4500114ns 78245 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4500398ns 78250 1a110850 fd5ff06f jal x0, -44 +4500682ns 78255 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4500966ns 78260 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4501364ns 78267 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4501535ns 78270 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4501989ns 78278 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4502160ns 78281 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4502444ns 78286 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4502728ns 78291 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4503012ns 78296 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4503467ns 78304 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4503638ns 78307 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4503922ns 78312 1a110850 fd5ff06f jal x0, -44 +4504206ns 78317 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4504490ns 78322 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4504888ns 78329 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4505058ns 78332 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4505513ns 78340 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4505683ns 78343 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4505968ns 78348 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4506252ns 78353 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4506536ns 78358 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4506991ns 78366 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4507161ns 78369 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4507445ns 78374 1a110850 fd5ff06f jal x0, -44 +4507729ns 78379 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4508014ns 78384 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4508411ns 78391 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4508582ns 78394 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4509037ns 78402 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4509207ns 78405 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4509491ns 78410 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4509775ns 78415 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4510060ns 78420 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4510514ns 78428 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4510685ns 78431 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4510969ns 78436 1a110850 fd5ff06f jal x0, -44 +4511253ns 78441 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4511537ns 78446 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4511935ns 78453 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4512106ns 78456 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4512560ns 78464 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4512731ns 78467 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4513015ns 78472 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4513299ns 78477 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4513583ns 78482 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4514038ns 78490 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4514208ns 78493 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4514492ns 78498 1a110850 fd5ff06f jal x0, -44 +4514777ns 78503 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4515061ns 78508 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4515459ns 78515 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4515629ns 78518 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4516084ns 78526 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4516254ns 78529 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4516538ns 78534 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4516823ns 78539 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4517107ns 78544 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4517561ns 78552 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4517732ns 78555 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4518016ns 78560 1a110850 fd5ff06f jal x0, -44 +4518300ns 78565 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4518584ns 78570 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4518982ns 78577 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4519153ns 78580 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4519607ns 78588 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4519778ns 78591 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4520062ns 78596 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4520346ns 78601 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4520630ns 78606 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4521085ns 78614 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4521255ns 78617 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4521540ns 78622 1a110850 fd5ff06f jal x0, -44 +4521824ns 78627 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4522108ns 78632 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4522506ns 78639 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4522676ns 78642 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4523131ns 78650 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4523301ns 78653 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4523586ns 78658 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4523870ns 78663 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4524154ns 78668 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4524609ns 78676 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4524779ns 78679 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4525063ns 78684 1a110850 fd5ff06f jal x0, -44 +4525347ns 78689 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4525632ns 78694 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4526029ns 78701 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4526200ns 78704 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4526655ns 78712 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4526825ns 78715 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4527109ns 78720 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4527393ns 78725 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4527677ns 78730 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4528132ns 78738 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4528303ns 78741 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4528587ns 78746 1a110850 fd5ff06f jal x0, -44 +4528871ns 78751 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4529155ns 78756 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4529553ns 78763 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4529723ns 78766 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4530178ns 78774 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4530349ns 78777 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4530633ns 78782 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4530917ns 78787 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4531201ns 78792 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4531656ns 78800 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4531826ns 78803 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4532110ns 78808 1a110850 fd5ff06f jal x0, -44 +4532395ns 78813 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4532679ns 78818 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4533077ns 78825 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4533247ns 78828 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4533702ns 78836 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4533872ns 78839 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4534156ns 78844 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4534440ns 78849 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4534725ns 78854 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4535179ns 78862 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4535350ns 78865 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4535634ns 78870 1a110850 fd5ff06f jal x0, -44 +4535918ns 78875 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4536202ns 78880 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4536600ns 78887 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4536771ns 78890 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4537225ns 78898 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4537396ns 78901 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4537680ns 78906 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4537964ns 78911 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4538248ns 78916 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4538703ns 78924 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4538873ns 78927 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4539158ns 78932 1a110850 fd5ff06f jal x0, -44 +4539442ns 78937 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4539726ns 78942 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4540124ns 78949 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4540294ns 78952 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4540749ns 78960 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4540919ns 78963 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4541203ns 78968 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4541488ns 78973 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4541772ns 78978 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4542226ns 78986 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4542397ns 78989 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4542681ns 78994 1a110850 fd5ff06f jal x0, -44 +4542965ns 78999 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4543249ns 79004 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4543647ns 79011 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4543818ns 79014 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4544272ns 79022 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4544443ns 79025 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4544727ns 79030 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4545011ns 79035 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4545295ns 79040 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4545750ns 79048 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4545921ns 79051 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4546205ns 79056 1a110850 fd5ff06f jal x0, -44 +4546489ns 79061 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4546773ns 79066 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4547171ns 79073 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4547341ns 79076 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4547796ns 79084 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4547967ns 79087 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4548251ns 79092 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4548535ns 79097 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4548819ns 79102 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4549274ns 79110 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4549444ns 79113 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4549728ns 79118 1a110850 fd5ff06f jal x0, -44 +4550012ns 79123 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4550297ns 79128 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4550694ns 79135 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4550865ns 79138 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4551320ns 79146 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4551490ns 79149 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4551774ns 79154 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4552058ns 79159 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4552343ns 79164 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4552797ns 79172 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4552968ns 79175 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4553252ns 79180 1a110850 fd5ff06f jal x0, -44 +4553536ns 79185 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4553820ns 79190 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4554218ns 79197 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4554389ns 79200 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4554843ns 79208 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4555014ns 79211 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4555298ns 79216 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4555582ns 79221 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4555866ns 79226 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4556321ns 79234 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4556491ns 79237 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4556775ns 79242 1a110850 fd5ff06f jal x0, -44 +4557060ns 79247 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4557344ns 79252 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4557742ns 79259 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4557912ns 79262 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4558367ns 79270 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4558537ns 79273 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4558821ns 79278 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4559106ns 79283 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4559390ns 79288 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4559844ns 79296 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4560015ns 79299 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4560299ns 79304 1a110850 fd5ff06f jal x0, -44 +4560583ns 79309 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4560867ns 79314 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4561265ns 79321 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4561436ns 79324 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4561890ns 79332 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4562061ns 79335 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4562345ns 79340 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4562629ns 79345 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4562913ns 79350 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4563368ns 79358 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4563538ns 79361 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4563823ns 79366 1a110850 fd5ff06f jal x0, -44 +4564107ns 79371 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4564391ns 79376 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4564789ns 79383 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4564959ns 79386 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4565414ns 79394 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4565584ns 79397 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4565869ns 79402 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4566153ns 79407 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4566437ns 79412 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4566892ns 79420 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4567062ns 79423 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4567346ns 79428 1a110850 fd5ff06f jal x0, -44 +4567630ns 79433 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4567915ns 79438 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4568312ns 79445 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4568483ns 79448 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4568938ns 79456 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4569108ns 79459 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4569392ns 79464 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4569676ns 79469 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4569960ns 79474 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4570415ns 79482 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4570586ns 79485 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4570870ns 79490 1a110850 fd5ff06f jal x0, -44 +4571154ns 79495 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4571438ns 79500 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4571836ns 79507 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4572006ns 79510 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4572461ns 79518 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4572632ns 79521 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4572916ns 79526 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4573200ns 79531 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4573484ns 79536 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4573939ns 79544 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4574109ns 79547 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4574393ns 79552 1a110850 fd5ff06f jal x0, -44 +4574678ns 79557 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4574962ns 79562 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4575360ns 79569 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4575530ns 79572 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4575985ns 79580 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4576155ns 79583 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4576439ns 79588 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4576723ns 79593 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4577008ns 79598 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4577462ns 79606 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4577633ns 79609 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4577917ns 79614 1a110850 fd5ff06f jal x0, -44 +4578201ns 79619 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4578485ns 79624 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4578883ns 79631 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4579054ns 79634 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4579508ns 79642 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4579679ns 79645 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4579963ns 79650 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4580247ns 79655 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4580531ns 79660 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4580986ns 79668 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4581156ns 79671 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4581441ns 79676 1a110850 fd5ff06f jal x0, -44 +4581725ns 79681 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4582009ns 79686 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4582407ns 79693 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4582577ns 79696 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4583032ns 79704 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4583202ns 79707 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4583487ns 79712 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4583771ns 79717 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4584055ns 79722 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4584509ns 79730 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4584680ns 79733 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4584964ns 79738 1a110850 fd5ff06f jal x0, -44 +4585248ns 79743 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4585532ns 79748 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4585930ns 79755 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4586101ns 79758 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4586555ns 79766 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4586726ns 79769 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4587010ns 79774 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4587294ns 79779 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4587578ns 79784 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4588033ns 79792 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4588204ns 79795 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4588488ns 79800 1a110850 fd5ff06f jal x0, -44 +4588772ns 79805 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4589056ns 79810 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4589454ns 79817 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4589624ns 79820 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4590079ns 79828 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4590250ns 79831 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4590534ns 79836 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4590818ns 79841 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4591102ns 79846 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4591557ns 79854 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4591727ns 79857 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4592011ns 79862 1a110850 fd5ff06f jal x0, -44 +4592295ns 79867 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4592580ns 79872 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4592977ns 79879 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4593148ns 79882 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4593603ns 79890 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4593773ns 79893 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4594057ns 79898 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4594341ns 79903 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4594626ns 79908 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4595080ns 79916 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4595251ns 79919 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4595535ns 79924 1a110850 fd5ff06f jal x0, -44 +4595819ns 79929 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4596103ns 79934 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4596501ns 79941 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4596672ns 79944 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4597126ns 79952 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4597297ns 79955 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4597581ns 79960 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4597865ns 79965 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4598149ns 79970 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4598604ns 79978 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4598774ns 79981 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4599058ns 79986 1a110850 fd5ff06f jal x0, -44 +4599343ns 79991 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4599627ns 79996 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4600025ns 80003 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4600195ns 80006 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4600650ns 80014 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4600820ns 80017 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4601104ns 80022 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4601389ns 80027 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4601673ns 80032 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4602127ns 80040 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4602298ns 80043 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4602582ns 80048 1a110850 fd5ff06f jal x0, -44 +4602866ns 80053 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4603150ns 80058 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4603548ns 80065 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4603719ns 80068 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4604173ns 80076 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4604344ns 80079 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4604628ns 80084 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4604912ns 80089 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4605196ns 80094 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4605651ns 80102 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4605821ns 80105 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4606106ns 80110 1a110850 fd5ff06f jal x0, -44 +4606390ns 80115 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4606674ns 80120 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4607072ns 80127 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4607242ns 80130 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4607697ns 80138 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4607867ns 80141 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4608152ns 80146 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4608436ns 80151 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4608720ns 80156 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4609175ns 80164 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4609345ns 80167 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4609629ns 80172 1a110850 fd5ff06f jal x0, -44 +4609913ns 80177 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4610198ns 80182 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4610595ns 80189 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4610766ns 80192 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4611221ns 80200 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4611391ns 80203 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4611675ns 80208 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4611959ns 80213 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4612243ns 80218 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4612698ns 80226 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4612869ns 80229 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4613153ns 80234 1a110850 fd5ff06f jal x0, -44 +4613437ns 80239 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4613721ns 80244 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4614119ns 80251 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4614289ns 80254 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4614744ns 80262 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4614915ns 80265 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4615199ns 80270 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4615483ns 80275 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4615767ns 80280 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4616222ns 80288 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4616392ns 80291 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4616676ns 80296 1a110850 fd5ff06f jal x0, -44 +4616961ns 80301 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4617245ns 80306 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4617643ns 80313 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4617813ns 80316 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4618268ns 80324 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4618438ns 80327 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4618722ns 80332 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4619007ns 80337 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4619291ns 80342 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4619745ns 80350 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4619916ns 80353 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4620200ns 80358 1a110850 fd5ff06f jal x0, -44 +4620484ns 80363 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4620768ns 80368 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4621166ns 80375 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4621337ns 80378 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4621791ns 80386 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4621962ns 80389 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4622246ns 80394 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4622530ns 80399 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4622814ns 80404 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4623269ns 80412 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4623439ns 80415 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4623724ns 80420 1a110850 fd5ff06f jal x0, -44 +4624008ns 80425 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4624292ns 80430 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4624690ns 80437 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4624860ns 80440 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4625315ns 80448 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4625485ns 80451 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4625770ns 80456 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4626054ns 80461 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4626338ns 80466 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4626792ns 80474 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4626963ns 80477 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4627247ns 80482 1a110850 fd5ff06f jal x0, -44 +4627531ns 80487 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4627815ns 80492 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4628213ns 80499 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4628384ns 80502 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4628838ns 80510 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4629009ns 80513 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4629293ns 80518 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4629577ns 80523 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4629861ns 80528 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4630316ns 80536 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4630487ns 80539 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4630771ns 80544 1a110850 fd5ff06f jal x0, -44 +4631055ns 80549 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4631339ns 80554 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4631737ns 80561 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4631907ns 80564 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4632362ns 80572 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4632533ns 80575 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4632817ns 80580 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4633101ns 80585 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4633385ns 80590 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4633840ns 80598 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4634010ns 80601 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4634294ns 80606 1a110850 fd5ff06f jal x0, -44 +4634578ns 80611 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4634863ns 80616 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4635260ns 80623 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4635431ns 80626 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4635886ns 80634 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4636056ns 80637 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4636340ns 80642 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4636624ns 80647 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4636909ns 80652 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4637363ns 80660 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4637534ns 80663 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4637818ns 80668 1a110850 fd5ff06f jal x0, -44 +4638102ns 80673 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4638386ns 80678 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4638784ns 80685 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4638955ns 80688 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4639409ns 80696 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4639580ns 80699 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4639864ns 80704 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4640148ns 80709 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4640432ns 80714 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4640887ns 80722 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4641057ns 80725 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4641341ns 80730 1a110850 fd5ff06f jal x0, -44 +4641626ns 80735 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4641910ns 80740 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4642308ns 80747 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4642478ns 80750 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4642933ns 80758 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4643103ns 80761 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4643387ns 80766 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4643672ns 80771 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4643956ns 80776 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4644410ns 80784 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4644581ns 80787 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4644865ns 80792 1a110850 fd5ff06f jal x0, -44 +4645149ns 80797 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4645433ns 80802 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4645831ns 80809 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4646002ns 80812 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4646456ns 80820 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4646627ns 80823 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4646911ns 80828 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4647195ns 80833 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4647479ns 80838 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4647934ns 80846 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4648104ns 80849 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4648389ns 80854 1a110850 fd5ff06f jal x0, -44 +4648673ns 80859 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4648957ns 80864 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4649355ns 80871 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4649525ns 80874 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4649980ns 80882 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4650150ns 80885 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4650435ns 80890 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4650719ns 80895 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4651003ns 80900 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4651458ns 80908 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4651628ns 80911 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4651912ns 80916 1a110850 fd5ff06f jal x0, -44 +4652196ns 80921 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4652481ns 80926 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4652878ns 80933 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4653049ns 80936 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4653504ns 80944 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4653674ns 80947 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4653958ns 80952 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4654242ns 80957 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4654527ns 80962 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4654981ns 80970 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4655152ns 80973 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4655436ns 80978 1a110850 fd5ff06f jal x0, -44 +4655720ns 80983 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4656004ns 80988 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4656402ns 80995 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4656572ns 80998 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4657027ns 81006 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4657198ns 81009 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4657482ns 81014 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4657766ns 81019 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4658050ns 81024 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4658505ns 81032 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4658675ns 81035 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4658959ns 81040 1a110850 fd5ff06f jal x0, -44 +4659244ns 81045 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4659528ns 81050 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4659926ns 81057 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4660096ns 81060 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4660551ns 81068 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4660721ns 81071 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4661005ns 81076 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4661290ns 81081 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4661574ns 81086 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4662028ns 81094 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4662199ns 81097 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4662483ns 81102 1a110850 fd5ff06f jal x0, -44 +4662767ns 81107 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4663051ns 81112 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4663449ns 81119 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4663620ns 81122 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4664074ns 81130 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4664245ns 81133 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4664529ns 81138 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4664813ns 81143 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4665097ns 81148 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4665552ns 81156 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4665722ns 81159 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4666007ns 81164 1a110850 fd5ff06f jal x0, -44 +4666291ns 81169 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4666575ns 81174 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4666973ns 81181 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4667143ns 81184 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4667598ns 81192 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4667768ns 81195 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4668053ns 81200 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4668337ns 81205 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4668621ns 81210 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4669075ns 81218 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4669246ns 81221 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4669530ns 81226 1a110850 fd5ff06f jal x0, -44 +4669814ns 81231 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4670098ns 81236 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4670496ns 81243 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4670667ns 81246 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4671121ns 81254 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4671292ns 81257 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4671576ns 81262 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4671860ns 81267 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4672144ns 81272 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4672599ns 81280 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4672770ns 81283 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4673054ns 81288 1a110850 fd5ff06f jal x0, -44 +4673338ns 81293 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4673622ns 81298 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4674020ns 81305 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4674190ns 81308 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4674645ns 81316 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4674816ns 81319 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4675100ns 81324 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4675384ns 81329 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4675668ns 81334 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4676123ns 81342 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4676293ns 81345 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4676577ns 81350 1a110850 fd5ff06f jal x0, -44 +4676861ns 81355 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4677146ns 81360 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4677543ns 81367 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4677714ns 81370 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4678169ns 81378 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4678339ns 81381 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4678623ns 81386 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4678907ns 81391 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4679192ns 81396 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4679646ns 81404 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4679817ns 81407 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4680101ns 81412 1a110850 fd5ff06f jal x0, -44 +4680385ns 81417 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4680669ns 81422 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4681067ns 81429 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4681238ns 81432 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4681692ns 81440 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4681863ns 81443 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4682147ns 81448 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4682431ns 81453 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4682715ns 81458 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4683170ns 81466 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4683340ns 81469 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4683624ns 81474 1a110850 fd5ff06f jal x0, -44 +4683909ns 81479 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4684193ns 81484 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4684591ns 81491 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4684761ns 81494 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4685216ns 81502 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4685386ns 81505 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4685670ns 81510 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4685955ns 81515 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4686239ns 81520 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4686693ns 81528 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4686864ns 81531 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4687148ns 81536 1a110850 fd5ff06f jal x0, -44 +4687432ns 81541 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4687716ns 81546 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4688114ns 81553 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4688285ns 81556 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4688739ns 81564 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4688910ns 81567 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4689194ns 81572 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4689478ns 81577 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4689762ns 81582 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4690217ns 81590 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4690387ns 81593 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4690672ns 81598 1a110850 fd5ff06f jal x0, -44 +4690956ns 81603 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4691240ns 81608 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4691638ns 81615 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4691808ns 81618 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4692263ns 81626 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4692433ns 81629 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4692718ns 81634 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4693002ns 81639 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4693286ns 81644 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4693741ns 81652 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4693911ns 81655 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4694195ns 81660 1a110850 fd5ff06f jal x0, -44 +4694479ns 81665 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4694764ns 81670 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4695161ns 81677 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4695332ns 81680 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4695787ns 81688 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4695957ns 81691 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4696241ns 81696 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4696525ns 81701 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4696810ns 81706 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4697264ns 81714 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4697435ns 81717 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4697719ns 81722 1a110850 fd5ff06f jal x0, -44 +4698003ns 81727 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4698287ns 81732 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4698685ns 81739 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4698855ns 81742 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4699310ns 81750 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4699481ns 81753 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4699765ns 81758 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4700049ns 81763 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4700333ns 81768 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4700788ns 81776 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4700958ns 81779 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4701242ns 81784 1a110850 fd5ff06f jal x0, -44 +4701527ns 81789 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4701811ns 81794 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4702209ns 81801 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4702379ns 81804 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4702834ns 81812 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4703004ns 81815 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4703288ns 81820 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4703573ns 81825 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4703857ns 81830 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4704311ns 81838 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4704482ns 81841 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4704766ns 81846 1a110850 fd5ff06f jal x0, -44 +4705050ns 81851 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4705334ns 81856 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4705732ns 81863 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4705903ns 81866 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4706357ns 81874 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4706528ns 81877 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4706812ns 81882 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4707096ns 81887 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4707380ns 81892 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4707835ns 81900 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4708005ns 81903 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4708290ns 81908 1a110850 fd5ff06f jal x0, -44 +4708574ns 81913 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4708858ns 81918 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4709256ns 81925 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4709426ns 81928 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4709881ns 81936 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4710051ns 81939 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4710336ns 81944 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4710620ns 81949 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4710904ns 81954 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4711359ns 81962 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4711529ns 81965 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4711813ns 81970 1a110850 fd5ff06f jal x0, -44 +4712097ns 81975 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4712381ns 81980 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4712779ns 81987 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4712950ns 81990 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4713404ns 81998 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4713575ns 82001 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4713859ns 82006 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4714143ns 82011 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4714427ns 82016 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4714882ns 82024 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4715053ns 82027 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4715337ns 82032 1a110850 fd5ff06f jal x0, -44 +4715621ns 82037 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4715905ns 82042 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4716303ns 82049 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4716473ns 82052 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4716928ns 82060 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4717099ns 82063 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4717383ns 82068 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4717667ns 82073 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4717951ns 82078 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4718406ns 82086 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4718576ns 82089 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4718860ns 82094 1a110850 fd5ff06f jal x0, -44 +4719144ns 82099 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4719429ns 82104 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4719826ns 82111 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4719997ns 82114 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4720452ns 82122 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4720622ns 82125 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4720906ns 82130 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4721190ns 82135 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4721475ns 82140 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4721929ns 82148 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4722100ns 82151 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4722384ns 82156 1a110850 fd5ff06f jal x0, -44 +4722668ns 82161 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4722952ns 82166 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4723350ns 82173 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4723521ns 82176 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4723975ns 82184 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4724146ns 82187 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4724430ns 82192 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4724714ns 82197 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4724998ns 82202 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4725453ns 82210 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4725623ns 82213 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4725907ns 82218 1a110850 fd5ff06f jal x0, -44 +4726192ns 82223 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4726476ns 82228 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4726874ns 82235 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4727044ns 82238 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4727499ns 82246 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4727669ns 82249 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4727953ns 82254 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4728238ns 82259 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4728522ns 82264 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4728976ns 82272 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4729147ns 82275 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4729431ns 82280 1a110850 fd5ff06f jal x0, -44 +4729715ns 82285 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4729999ns 82290 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4730397ns 82297 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4730568ns 82300 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4731022ns 82308 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4731193ns 82311 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4731477ns 82316 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4731761ns 82321 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4732045ns 82326 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4732500ns 82334 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4732671ns 82337 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4732955ns 82342 1a110850 fd5ff06f jal x0, -44 +4733239ns 82347 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4733523ns 82352 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4733921ns 82359 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4734091ns 82362 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4734546ns 82370 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4734716ns 82373 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4735001ns 82378 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4735285ns 82383 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4735569ns 82388 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4736024ns 82396 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4736194ns 82399 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4736478ns 82404 1a110850 fd5ff06f jal x0, -44 +4736762ns 82409 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4737047ns 82414 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4737444ns 82421 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4737615ns 82424 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4738070ns 82432 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4738240ns 82435 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4738524ns 82440 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4738808ns 82445 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4739093ns 82450 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4739547ns 82458 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4739718ns 82461 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4740002ns 82466 1a110850 fd5ff06f jal x0, -44 +4740286ns 82471 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4740570ns 82476 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4740968ns 82483 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4741138ns 82486 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4741593ns 82494 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4741764ns 82497 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4742048ns 82502 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4742332ns 82507 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4742616ns 82512 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4743071ns 82520 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4743241ns 82523 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4743525ns 82528 1a110850 fd5ff06f jal x0, -44 +4743810ns 82533 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4744094ns 82538 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4744492ns 82545 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4744662ns 82548 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4745117ns 82556 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4745287ns 82559 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4745571ns 82564 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4745856ns 82569 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4746140ns 82574 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4746594ns 82582 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4746765ns 82585 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4747049ns 82590 1a110850 fd5ff06f jal x0, -44 +4747333ns 82595 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4747617ns 82600 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4748015ns 82607 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4748186ns 82610 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4748640ns 82618 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4748811ns 82621 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4749095ns 82626 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4749379ns 82631 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4749663ns 82636 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4750118ns 82644 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4750288ns 82647 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4750573ns 82652 1a110850 fd5ff06f jal x0, -44 +4750857ns 82657 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4751141ns 82662 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4751539ns 82669 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4751709ns 82672 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4752164ns 82680 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4752334ns 82683 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4752619ns 82688 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4752903ns 82693 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4753187ns 82698 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4753642ns 82706 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4753812ns 82709 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4754096ns 82714 1a110850 fd5ff06f jal x0, -44 +4754380ns 82719 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4754664ns 82724 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4755062ns 82731 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4755233ns 82734 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4755687ns 82742 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4755858ns 82745 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4756142ns 82750 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4756426ns 82755 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4756710ns 82760 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4757165ns 82768 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4757336ns 82771 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4757620ns 82776 1a110850 fd5ff06f jal x0, -44 +4757904ns 82781 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4758188ns 82786 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4758586ns 82793 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4758756ns 82796 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4759211ns 82804 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4759382ns 82807 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4759666ns 82812 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4759950ns 82817 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4760234ns 82822 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4760689ns 82830 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4760859ns 82833 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4761143ns 82838 1a110850 fd5ff06f jal x0, -44 +4761427ns 82843 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4761712ns 82848 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4762109ns 82855 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4762280ns 82858 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4762735ns 82866 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4762905ns 82869 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4763189ns 82874 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4763473ns 82879 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4763758ns 82884 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4764212ns 82892 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4764383ns 82895 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4764667ns 82900 1a110850 fd5ff06f jal x0, -44 +4764951ns 82905 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4765235ns 82910 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4765633ns 82917 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4765804ns 82920 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4766258ns 82928 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4766429ns 82931 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4766713ns 82936 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4766997ns 82941 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4767281ns 82946 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4767736ns 82954 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4767906ns 82957 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4768191ns 82962 1a110850 fd5ff06f jal x0, -44 +4768475ns 82967 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4768759ns 82972 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4769157ns 82979 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4769327ns 82982 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4769782ns 82990 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4769952ns 82993 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4770236ns 82998 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4770521ns 83003 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4770805ns 83008 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4771259ns 83016 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4771430ns 83019 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4771714ns 83024 1a110850 fd5ff06f jal x0, -44 +4771998ns 83029 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4772282ns 83034 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4772680ns 83041 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4772851ns 83044 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4773305ns 83052 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4773476ns 83055 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4773760ns 83060 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4774044ns 83065 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4774328ns 83070 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4774783ns 83078 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4774954ns 83081 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4775238ns 83086 1a110850 fd5ff06f jal x0, -44 +4775522ns 83091 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4775806ns 83096 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4776204ns 83103 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4776374ns 83106 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4776829ns 83114 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4776999ns 83117 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4777284ns 83122 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4777568ns 83127 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4777852ns 83132 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4778307ns 83140 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4778477ns 83143 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4778761ns 83148 1a110850 fd5ff06f jal x0, -44 +4779045ns 83153 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4779330ns 83158 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4779727ns 83165 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4779898ns 83168 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4780353ns 83176 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4780523ns 83179 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4780807ns 83184 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4781091ns 83189 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4781376ns 83194 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4781830ns 83202 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4782001ns 83205 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4782285ns 83210 1a110850 fd5ff06f jal x0, -44 +4782569ns 83215 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4782853ns 83220 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4783251ns 83227 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4783421ns 83230 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4783876ns 83238 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4784047ns 83241 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4784331ns 83246 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4784615ns 83251 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4784899ns 83256 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4785354ns 83264 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4785524ns 83267 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4785808ns 83272 1a110850 fd5ff06f jal x0, -44 +4786093ns 83277 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4786377ns 83282 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4786775ns 83289 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4786945ns 83292 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4787400ns 83300 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4787570ns 83303 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4787854ns 83308 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4788139ns 83313 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4788423ns 83318 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4788877ns 83326 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4789048ns 83329 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4789332ns 83334 1a110850 fd5ff06f jal x0, -44 +4789616ns 83339 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4789900ns 83344 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4790298ns 83351 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4790469ns 83354 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4790923ns 83362 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4791094ns 83365 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4791378ns 83370 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4791662ns 83375 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4791946ns 83380 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4792401ns 83388 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4792571ns 83391 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4792856ns 83396 1a110850 fd5ff06f jal x0, -44 +4793140ns 83401 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4793424ns 83406 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4793822ns 83413 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4793992ns 83416 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4794447ns 83424 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4794617ns 83427 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4794902ns 83432 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4795186ns 83437 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4795470ns 83442 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4795925ns 83450 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4796095ns 83453 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4796379ns 83458 1a110850 fd5ff06f jal x0, -44 +4796663ns 83463 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4796947ns 83468 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4797345ns 83475 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4797516ns 83478 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4797970ns 83486 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4798141ns 83489 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4798425ns 83494 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4798709ns 83499 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4798993ns 83504 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4799448ns 83512 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4799619ns 83515 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4799903ns 83520 1a110850 fd5ff06f jal x0, -44 +4800187ns 83525 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4800471ns 83530 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4800869ns 83537 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4801039ns 83540 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4801494ns 83548 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4801665ns 83551 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4801949ns 83556 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4802233ns 83561 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4802517ns 83566 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4802972ns 83574 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4803142ns 83577 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4803426ns 83582 1a110850 fd5ff06f jal x0, -44 +4803711ns 83587 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4803995ns 83592 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4804392ns 83599 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4804563ns 83602 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4805018ns 83610 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4805188ns 83613 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4805472ns 83618 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4805756ns 83623 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4806041ns 83628 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4806495ns 83636 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4806666ns 83639 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4806950ns 83644 1a110850 fd5ff06f jal x0, -44 +4807234ns 83649 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4807518ns 83654 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4807916ns 83661 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4808087ns 83664 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4808541ns 83672 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4808712ns 83675 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4808996ns 83680 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4809280ns 83685 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4809564ns 83690 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4810019ns 83698 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4810189ns 83701 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4810474ns 83706 1a110850 fd5ff06f jal x0, -44 +4810758ns 83711 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4811042ns 83716 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4811440ns 83723 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4811610ns 83726 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4812065ns 83734 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4812235ns 83737 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4812519ns 83742 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4812804ns 83747 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4813088ns 83752 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4813542ns 83760 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4813713ns 83763 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4813997ns 83768 1a110850 fd5ff06f jal x0, -44 +4814281ns 83773 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4814565ns 83778 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4814963ns 83785 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4815134ns 83788 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4815588ns 83796 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4815759ns 83799 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4816043ns 83804 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4816327ns 83809 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4816611ns 83814 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4817066ns 83822 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4817237ns 83825 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4817521ns 83830 1a110850 fd5ff06f jal x0, -44 +4817805ns 83835 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4818089ns 83840 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4818487ns 83847 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4818657ns 83850 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4819112ns 83858 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4819282ns 83861 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4819567ns 83866 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4819851ns 83871 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4820135ns 83876 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4820590ns 83884 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4820760ns 83887 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4821044ns 83892 1a110850 fd5ff06f jal x0, -44 +4821328ns 83897 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4821613ns 83902 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4822010ns 83909 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4822181ns 83912 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4822636ns 83920 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4822806ns 83923 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4823090ns 83928 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4823374ns 83933 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4823659ns 83938 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4824113ns 83946 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4824284ns 83949 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4824568ns 83954 1a110850 fd5ff06f jal x0, -44 +4824852ns 83959 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4825136ns 83964 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4825534ns 83971 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4825704ns 83974 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4826159ns 83982 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4826330ns 83985 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4826614ns 83990 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4826898ns 83995 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4827182ns 84000 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4827637ns 84008 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4827807ns 84011 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4828091ns 84016 1a110850 fd5ff06f jal x0, -44 +4828376ns 84021 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4828660ns 84026 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4829058ns 84033 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4829228ns 84036 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4829683ns 84044 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4829853ns 84047 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4830137ns 84052 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4830422ns 84057 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4830706ns 84062 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4831160ns 84070 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4831331ns 84073 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4831615ns 84078 1a110850 fd5ff06f jal x0, -44 +4831899ns 84083 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4832183ns 84088 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4832581ns 84095 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4832752ns 84098 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4833206ns 84106 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4833377ns 84109 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4833661ns 84114 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4833945ns 84119 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4834229ns 84124 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4834684ns 84132 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4834854ns 84135 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4835139ns 84140 1a110850 fd5ff06f jal x0, -44 +4835423ns 84145 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4835707ns 84150 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4836105ns 84157 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4836275ns 84160 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4836730ns 84168 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4836900ns 84171 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4837185ns 84176 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4837469ns 84181 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4837753ns 84186 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4838208ns 84194 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4838378ns 84197 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4838662ns 84202 1a110850 fd5ff06f jal x0, -44 +4838946ns 84207 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4839231ns 84212 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4839628ns 84219 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4839799ns 84222 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4840253ns 84230 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4840424ns 84233 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4840708ns 84238 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4840992ns 84243 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4841276ns 84248 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4841731ns 84256 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4841902ns 84259 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4842186ns 84264 1a110850 fd5ff06f jal x0, -44 +4842470ns 84269 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4842754ns 84274 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4843152ns 84281 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4843322ns 84284 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4843777ns 84292 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4843948ns 84295 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4844232ns 84300 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4844516ns 84305 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4844800ns 84310 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4845255ns 84318 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4845425ns 84321 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4845709ns 84326 1a110850 fd5ff06f jal x0, -44 +4845994ns 84331 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4846278ns 84336 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4846675ns 84343 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4846846ns 84346 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4847301ns 84354 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4847471ns 84357 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4847755ns 84362 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4848039ns 84367 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4848324ns 84372 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4848778ns 84380 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4848949ns 84383 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4849233ns 84388 1a110850 fd5ff06f jal x0, -44 +4849517ns 84393 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4849801ns 84398 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4850199ns 84405 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4850370ns 84408 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4850824ns 84416 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4850995ns 84419 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4851279ns 84424 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4851563ns 84429 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4851847ns 84434 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4852302ns 84442 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4852472ns 84445 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4852757ns 84450 1a110850 fd5ff06f jal x0, -44 +4853041ns 84455 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4853325ns 84460 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4853723ns 84467 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4853893ns 84470 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4854348ns 84478 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4854518ns 84481 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4854802ns 84486 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4855087ns 84491 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4855371ns 84496 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4855825ns 84504 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4855996ns 84507 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4856280ns 84512 1a110850 fd5ff06f jal x0, -44 +4856564ns 84517 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4856848ns 84522 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4857246ns 84529 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4857417ns 84532 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4857871ns 84540 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4858042ns 84543 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4858326ns 84548 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4858610ns 84553 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4858894ns 84558 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4859349ns 84566 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4859520ns 84569 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4859804ns 84574 1a110850 fd5ff06f jal x0, -44 +4860088ns 84579 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4860372ns 84584 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4860770ns 84591 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4860940ns 84594 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4861395ns 84602 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4861565ns 84605 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4861850ns 84610 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4862134ns 84615 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4862418ns 84620 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4862873ns 84628 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4863043ns 84631 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4863327ns 84636 1a110850 fd5ff06f jal x0, -44 +4863611ns 84641 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4863896ns 84646 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4864293ns 84653 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4864464ns 84656 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4864919ns 84664 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4865089ns 84667 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4865373ns 84672 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4865657ns 84677 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4865942ns 84682 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4866396ns 84690 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4866567ns 84693 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4866851ns 84698 1a110850 fd5ff06f jal x0, -44 +4867135ns 84703 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4867419ns 84708 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4867817ns 84715 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4867987ns 84718 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4868442ns 84726 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4868613ns 84729 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4868897ns 84734 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4869181ns 84739 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4869465ns 84744 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4869920ns 84752 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4870090ns 84755 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4870374ns 84760 1a110850 fd5ff06f jal x0, -44 +4870659ns 84765 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4870943ns 84770 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4871341ns 84777 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4871511ns 84780 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4871966ns 84788 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4872136ns 84791 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4872420ns 84796 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4872705ns 84801 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4872989ns 84806 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4873443ns 84814 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4873614ns 84817 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4873898ns 84822 1a110850 fd5ff06f jal x0, -44 +4874182ns 84827 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4874466ns 84832 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4874864ns 84839 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4875035ns 84842 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4875489ns 84850 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4875660ns 84853 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4875944ns 84858 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4876228ns 84863 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4876512ns 84868 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4876967ns 84876 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4877137ns 84879 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4877422ns 84884 1a110850 fd5ff06f jal x0, -44 +4877706ns 84889 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4877990ns 84894 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4878388ns 84901 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4878558ns 84904 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4879013ns 84912 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4879183ns 84915 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4879468ns 84920 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4879752ns 84925 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4880036ns 84930 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4880491ns 84938 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4880661ns 84941 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4880945ns 84946 1a110850 fd5ff06f jal x0, -44 +4881229ns 84951 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4881514ns 84956 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4881911ns 84963 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4882082ns 84966 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4882536ns 84974 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4882707ns 84977 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4882991ns 84982 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4883275ns 84987 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4883559ns 84992 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4884014ns 85000 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4884185ns 85003 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4884469ns 85008 1a110850 fd5ff06f jal x0, -44 +4884753ns 85013 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4885037ns 85018 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4885435ns 85025 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4885605ns 85028 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4886060ns 85036 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4886231ns 85039 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4886515ns 85044 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4886799ns 85049 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4887083ns 85054 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4887538ns 85062 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4887708ns 85065 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4887992ns 85070 1a110850 fd5ff06f jal x0, -44 +4888277ns 85075 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4888561ns 85080 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4888959ns 85087 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4889129ns 85090 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4889584ns 85098 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4889754ns 85101 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4890038ns 85106 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4890322ns 85111 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4890607ns 85116 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4891061ns 85124 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4891232ns 85127 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4891516ns 85132 1a110850 fd5ff06f jal x0, -44 +4891800ns 85137 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4892084ns 85142 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4892482ns 85149 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4892653ns 85152 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4893107ns 85160 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4893278ns 85163 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4893562ns 85168 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4893846ns 85173 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4894130ns 85178 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4894585ns 85186 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4894755ns 85189 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4895040ns 85194 1a110850 fd5ff06f jal x0, -44 +4895324ns 85199 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4895608ns 85204 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4896006ns 85211 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4896176ns 85214 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4896631ns 85222 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4896801ns 85225 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4897085ns 85230 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4897370ns 85235 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4897654ns 85240 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4898108ns 85248 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4898279ns 85251 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4898563ns 85256 1a110850 fd5ff06f jal x0, -44 +4898847ns 85261 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4899131ns 85266 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4899529ns 85273 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4899700ns 85276 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4900154ns 85284 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4900325ns 85287 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4900609ns 85292 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4900893ns 85297 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4901177ns 85302 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4901632ns 85310 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4901803ns 85313 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4902087ns 85318 1a110850 fd5ff06f jal x0, -44 +4902371ns 85323 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4902655ns 85328 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4903053ns 85335 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4903223ns 85338 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4903678ns 85346 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4903848ns 85349 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4904133ns 85354 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4904417ns 85359 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4904701ns 85364 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4905156ns 85372 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4905326ns 85375 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4905610ns 85380 1a110850 fd5ff06f jal x0, -44 +4905894ns 85385 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4906179ns 85390 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4906576ns 85397 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4906747ns 85400 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4907202ns 85408 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4907372ns 85411 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4907656ns 85416 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4907940ns 85421 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4908225ns 85426 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4908679ns 85434 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4908850ns 85437 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4909134ns 85442 1a110850 fd5ff06f jal x0, -44 +4909418ns 85447 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4909702ns 85452 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4910100ns 85459 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4910271ns 85462 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4910725ns 85470 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4910896ns 85473 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4911180ns 85478 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4911464ns 85483 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4911748ns 85488 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4912203ns 85496 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4912373ns 85499 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4912657ns 85504 1a110850 fd5ff06f jal x0, -44 +4912942ns 85509 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4913226ns 85514 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4913624ns 85521 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4913794ns 85524 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4914249ns 85532 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4914419ns 85535 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4914703ns 85540 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4914988ns 85545 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4915272ns 85550 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4915726ns 85558 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4915897ns 85561 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4916181ns 85566 1a110850 fd5ff06f jal x0, -44 +4916465ns 85571 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4916749ns 85576 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4917147ns 85583 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4917318ns 85586 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4917772ns 85594 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4917943ns 85597 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4918227ns 85602 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4918511ns 85607 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4918795ns 85612 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4919250ns 85620 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4919420ns 85623 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4919705ns 85628 1a110850 fd5ff06f jal x0, -44 +4919989ns 85633 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4920273ns 85638 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4920671ns 85645 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4920841ns 85648 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4921296ns 85656 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4921466ns 85659 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4921751ns 85664 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4922035ns 85669 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4922319ns 85674 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4922774ns 85682 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4922944ns 85685 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4923228ns 85690 1a110850 fd5ff06f jal x0, -44 +4923512ns 85695 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4923797ns 85700 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4924194ns 85707 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4924365ns 85710 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4924819ns 85718 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4924990ns 85721 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4925274ns 85726 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4925558ns 85731 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4925842ns 85736 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4926297ns 85744 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4926468ns 85747 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4926752ns 85752 1a110850 fd5ff06f jal x0, -44 +4927036ns 85757 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4927320ns 85762 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4927718ns 85769 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4927888ns 85772 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4928343ns 85780 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4928514ns 85783 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4928798ns 85788 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4929082ns 85793 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4929366ns 85798 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4929821ns 85806 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4929991ns 85809 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4930275ns 85814 1a110850 fd5ff06f jal x0, -44 +4930560ns 85819 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4930844ns 85824 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4931242ns 85831 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4931412ns 85834 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4931867ns 85842 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4932037ns 85845 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4932321ns 85850 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4932605ns 85855 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4932890ns 85860 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4933344ns 85868 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4933515ns 85871 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4933799ns 85876 1a110850 fd5ff06f jal x0, -44 +4934083ns 85881 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4934367ns 85886 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4934765ns 85893 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4934936ns 85896 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4935390ns 85904 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4935561ns 85907 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4935845ns 85912 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4936129ns 85917 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4936413ns 85922 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4936868ns 85930 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4937038ns 85933 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4937323ns 85938 1a110850 fd5ff06f jal x0, -44 +4937607ns 85943 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4937891ns 85948 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4938289ns 85955 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4938459ns 85958 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4938914ns 85966 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4939084ns 85969 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4939368ns 85974 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4939653ns 85979 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4939937ns 85984 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4940391ns 85992 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4940562ns 85995 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4940846ns 86000 1a110850 fd5ff06f jal x0, -44 +4941130ns 86005 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4941414ns 86010 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4941812ns 86017 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4941983ns 86020 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4942437ns 86028 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4942608ns 86031 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4942892ns 86036 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4943176ns 86041 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4943460ns 86046 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4943915ns 86054 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4944086ns 86057 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4944370ns 86062 1a110850 fd5ff06f jal x0, -44 +4944654ns 86067 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4944938ns 86072 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4945336ns 86079 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4945506ns 86082 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4945961ns 86090 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4946131ns 86093 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4946416ns 86098 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4946700ns 86103 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4946984ns 86108 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4947439ns 86116 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4947609ns 86119 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4947893ns 86124 1a110850 fd5ff06f jal x0, -44 +4948177ns 86129 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4948462ns 86134 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4948859ns 86141 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4949030ns 86144 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4949485ns 86152 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4949655ns 86155 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4949939ns 86160 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4950223ns 86165 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4950508ns 86170 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4950962ns 86178 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4951133ns 86181 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4951417ns 86186 1a110850 fd5ff06f jal x0, -44 +4951701ns 86191 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4951985ns 86196 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4952383ns 86203 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4952554ns 86206 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4953008ns 86214 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4953179ns 86217 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4953463ns 86222 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4953747ns 86227 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4954031ns 86232 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4954486ns 86240 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4954656ns 86243 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4954940ns 86248 1a110850 fd5ff06f jal x0, -44 +4955225ns 86253 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4955509ns 86258 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4955907ns 86265 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4956077ns 86268 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4956532ns 86276 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4956702ns 86279 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4956986ns 86284 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4957271ns 86289 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4957555ns 86294 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4958009ns 86302 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4958180ns 86305 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4958464ns 86310 1a110850 fd5ff06f jal x0, -44 +4958748ns 86315 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4959032ns 86320 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4959430ns 86327 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4959601ns 86330 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4960055ns 86338 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4960226ns 86341 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4960510ns 86346 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4960794ns 86351 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4961078ns 86356 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4961533ns 86364 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4961703ns 86367 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4961988ns 86372 1a110850 fd5ff06f jal x0, -44 +4962272ns 86377 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4962556ns 86382 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4962954ns 86389 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4963124ns 86392 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4963579ns 86400 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4963749ns 86403 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4964034ns 86408 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4964318ns 86413 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4964602ns 86418 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4965057ns 86426 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4965227ns 86429 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4965511ns 86434 1a110850 fd5ff06f jal x0, -44 +4965795ns 86439 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4966080ns 86444 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4966477ns 86451 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4966648ns 86454 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4967103ns 86462 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4967273ns 86465 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4967557ns 86470 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4967841ns 86475 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4968125ns 86480 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4968580ns 86488 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4968751ns 86491 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4969035ns 86496 1a110850 fd5ff06f jal x0, -44 +4969319ns 86501 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4969603ns 86506 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4970001ns 86513 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4970171ns 86516 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4970626ns 86524 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4970797ns 86527 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4971081ns 86532 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4971365ns 86537 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4971649ns 86542 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4972104ns 86550 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4972274ns 86553 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4972558ns 86558 1a110850 fd5ff06f jal x0, -44 +4972843ns 86563 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4973127ns 86568 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4973525ns 86575 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4973695ns 86578 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4974150ns 86586 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4974320ns 86589 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4974604ns 86594 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4974888ns 86599 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4975173ns 86604 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4975627ns 86612 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4975798ns 86615 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4976082ns 86620 1a110850 fd5ff06f jal x0, -44 +4976366ns 86625 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4976650ns 86630 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4977048ns 86637 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4977219ns 86640 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4977673ns 86648 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4977844ns 86651 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4978128ns 86656 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4978412ns 86661 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4978696ns 86666 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4979151ns 86674 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4979321ns 86677 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4979606ns 86682 1a110850 fd5ff06f jal x0, -44 +4979890ns 86687 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4980174ns 86692 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4980572ns 86699 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4980742ns 86702 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4981197ns 86710 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4981367ns 86713 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4981651ns 86718 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4981936ns 86723 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4982220ns 86728 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4982674ns 86736 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4982845ns 86739 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4983129ns 86744 1a110850 fd5ff06f jal x0, -44 +4983413ns 86749 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4983697ns 86754 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4984095ns 86761 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4984266ns 86764 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4984720ns 86772 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4984891ns 86775 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4985175ns 86780 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4985459ns 86785 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4985743ns 86790 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4986198ns 86798 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4986369ns 86801 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4986653ns 86806 1a110850 fd5ff06f jal x0, -44 +4986937ns 86811 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4987221ns 86816 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4987619ns 86823 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4987789ns 86826 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4988244ns 86834 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4988415ns 86837 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4988699ns 86842 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4988983ns 86847 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4989267ns 86852 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4989722ns 86860 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4989892ns 86863 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4990176ns 86868 1a110850 fd5ff06f jal x0, -44 +4990460ns 86873 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4990745ns 86878 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4991142ns 86885 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4991313ns 86888 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4991768ns 86896 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4991938ns 86899 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4992222ns 86904 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4992506ns 86909 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4992791ns 86914 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4993245ns 86922 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4993416ns 86925 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4993700ns 86930 1a110850 fd5ff06f jal x0, -44 +4993984ns 86935 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4994268ns 86940 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4994666ns 86947 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4994837ns 86950 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4995291ns 86958 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4995462ns 86961 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4995746ns 86966 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4996030ns 86971 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4996314ns 86976 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4996769ns 86984 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +4996939ns 86987 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +4997223ns 86992 1a110850 fd5ff06f jal x0, -44 +4997508ns 86997 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4997792ns 87002 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +4998190ns 87009 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4998360ns 87012 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +4998815ns 87020 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +4998985ns 87023 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +4999269ns 87028 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +4999554ns 87033 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +4999838ns 87038 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5000292ns 87046 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5000463ns 87049 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5000747ns 87054 1a110850 fd5ff06f jal x0, -44 +5001031ns 87059 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5001315ns 87064 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5001713ns 87071 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5001884ns 87074 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5002338ns 87082 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5002509ns 87085 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5002793ns 87090 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5003077ns 87095 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5003361ns 87100 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5003816ns 87108 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5003986ns 87111 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5004271ns 87116 1a110850 fd5ff06f jal x0, -44 +5004555ns 87121 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5004839ns 87126 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5005237ns 87133 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5005407ns 87136 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5005862ns 87144 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5006032ns 87147 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5006317ns 87152 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5006601ns 87157 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5006885ns 87162 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5007340ns 87170 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5007510ns 87173 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5007794ns 87178 1a110850 fd5ff06f jal x0, -44 +5008078ns 87183 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5008363ns 87188 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5008760ns 87195 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5008931ns 87198 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5009386ns 87206 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5009556ns 87209 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5009840ns 87214 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5010124ns 87219 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5010408ns 87224 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5010863ns 87232 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5011034ns 87235 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5011318ns 87240 1a110850 fd5ff06f jal x0, -44 +5011602ns 87245 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5011886ns 87250 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5012284ns 87257 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5012454ns 87260 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5012909ns 87268 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5013080ns 87271 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5013364ns 87276 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5013648ns 87281 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5013932ns 87286 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5014387ns 87294 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5014557ns 87297 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5014841ns 87302 1a110850 fd5ff06f jal x0, -44 +5015126ns 87307 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5015410ns 87312 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5015808ns 87319 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5015978ns 87322 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5016433ns 87330 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5016603ns 87333 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5016887ns 87338 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5017171ns 87343 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5017456ns 87348 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5017910ns 87356 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5018081ns 87359 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5018365ns 87364 1a110850 fd5ff06f jal x0, -44 +5018649ns 87369 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5018933ns 87374 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5019331ns 87381 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5019502ns 87384 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5019956ns 87392 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5020127ns 87395 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5020411ns 87400 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5020695ns 87405 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5020979ns 87410 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5021434ns 87418 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5021604ns 87421 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5021889ns 87426 1a110850 fd5ff06f jal x0, -44 +5022173ns 87431 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5022457ns 87436 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5022855ns 87443 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5023025ns 87446 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5023480ns 87454 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5023650ns 87457 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5023935ns 87462 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5024219ns 87467 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5024503ns 87472 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5024957ns 87480 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5025128ns 87483 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5025412ns 87488 1a110850 fd5ff06f jal x0, -44 +5025696ns 87493 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5025980ns 87498 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5026378ns 87505 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5026549ns 87508 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5027003ns 87516 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5027174ns 87519 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5027458ns 87524 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5027742ns 87529 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5028026ns 87534 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5028481ns 87542 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5028652ns 87545 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5028936ns 87550 1a110850 fd5ff06f jal x0, -44 +5029220ns 87555 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5029504ns 87560 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5029902ns 87567 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5030072ns 87570 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5030527ns 87578 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5030698ns 87581 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5030982ns 87586 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5031266ns 87591 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5031550ns 87596 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5032005ns 87604 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5032175ns 87607 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5032459ns 87612 1a110850 fd5ff06f jal x0, -44 +5032743ns 87617 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5033028ns 87622 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5033425ns 87629 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5033596ns 87632 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5034051ns 87640 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5034221ns 87643 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5034505ns 87648 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5034789ns 87653 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5035074ns 87658 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5035528ns 87666 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5035699ns 87669 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5035983ns 87674 1a110850 fd5ff06f jal x0, -44 +5036267ns 87679 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5036551ns 87684 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5036949ns 87691 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5037120ns 87694 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5037574ns 87702 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5037745ns 87705 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5038029ns 87710 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5038313ns 87715 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5038597ns 87720 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5039052ns 87728 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5039222ns 87731 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5039506ns 87736 1a110850 fd5ff06f jal x0, -44 +5039791ns 87741 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5040075ns 87746 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5040473ns 87753 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5040643ns 87756 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5041098ns 87764 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5041268ns 87767 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5041552ns 87772 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5041837ns 87777 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5042121ns 87782 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5042575ns 87790 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5042746ns 87793 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5043030ns 87798 1a110850 fd5ff06f jal x0, -44 +5043314ns 87803 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5043598ns 87808 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5043996ns 87815 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5044167ns 87818 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5044621ns 87826 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5044792ns 87829 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5045076ns 87834 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5045360ns 87839 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5045644ns 87844 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5046099ns 87852 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5046269ns 87855 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5046554ns 87860 1a110850 fd5ff06f jal x0, -44 +5046838ns 87865 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5047122ns 87870 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5047520ns 87877 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5047690ns 87880 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5048145ns 87888 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5048315ns 87891 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5048600ns 87896 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5048884ns 87901 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5049168ns 87906 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5049623ns 87914 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5049793ns 87917 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5050077ns 87922 1a110850 fd5ff06f jal x0, -44 +5050361ns 87927 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5050646ns 87932 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5051043ns 87939 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5051214ns 87942 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5051669ns 87950 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5051839ns 87953 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5052123ns 87958 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5052407ns 87963 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5052691ns 87968 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5053146ns 87976 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5053317ns 87979 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5053601ns 87984 1a110850 fd5ff06f jal x0, -44 +5053885ns 87989 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5054169ns 87994 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5054567ns 88001 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5054737ns 88004 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5055192ns 88012 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5055363ns 88015 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5055647ns 88020 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5055931ns 88025 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5056215ns 88030 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5056670ns 88038 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5056840ns 88041 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5057124ns 88046 1a110850 fd5ff06f jal x0, -44 +5057409ns 88051 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5057693ns 88056 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5058091ns 88063 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5058261ns 88066 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5058716ns 88074 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5058886ns 88077 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5059170ns 88082 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5059455ns 88087 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5059739ns 88092 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5060193ns 88100 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5060364ns 88103 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5060648ns 88108 1a110850 fd5ff06f jal x0, -44 +5060932ns 88113 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5061216ns 88118 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5061614ns 88125 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5061785ns 88128 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5062239ns 88136 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5062410ns 88139 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5062694ns 88144 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5062978ns 88149 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5063262ns 88154 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5063717ns 88162 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5063887ns 88165 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5064172ns 88170 1a110850 fd5ff06f jal x0, -44 +5064456ns 88175 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5064740ns 88180 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5065138ns 88187 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5065308ns 88190 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5065763ns 88198 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5065933ns 88201 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5066218ns 88206 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5066502ns 88211 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5066786ns 88216 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5067240ns 88224 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5067411ns 88227 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5067695ns 88232 1a110850 fd5ff06f jal x0, -44 +5067979ns 88237 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5068263ns 88242 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5068661ns 88249 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5068832ns 88252 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5069286ns 88260 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5069457ns 88263 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5069741ns 88268 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5070025ns 88273 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5070309ns 88278 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5070764ns 88286 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5070935ns 88289 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5071219ns 88294 1a110850 fd5ff06f jal x0, -44 +5071503ns 88299 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5071787ns 88304 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5072185ns 88311 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5072355ns 88314 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5072810ns 88322 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5072981ns 88325 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5073265ns 88330 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5073549ns 88335 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5073833ns 88340 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5074288ns 88348 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5074458ns 88351 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5074742ns 88356 1a110850 fd5ff06f jal x0, -44 +5075026ns 88361 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5075311ns 88366 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5075708ns 88373 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5075879ns 88376 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5076334ns 88384 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5076504ns 88387 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5076788ns 88392 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5077072ns 88397 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5077357ns 88402 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5077811ns 88410 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5077982ns 88413 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5078266ns 88418 1a110850 fd5ff06f jal x0, -44 +5078550ns 88423 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5078834ns 88428 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5079232ns 88435 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5079403ns 88438 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5079857ns 88446 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5080028ns 88449 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5080312ns 88454 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5080596ns 88459 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5080880ns 88464 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5081335ns 88472 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5081505ns 88475 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5081789ns 88480 1a110850 fd5ff06f jal x0, -44 +5082074ns 88485 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5082358ns 88490 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5082756ns 88497 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5082926ns 88500 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5083381ns 88508 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5083551ns 88511 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5083835ns 88516 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5084120ns 88521 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5084404ns 88526 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5084858ns 88534 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5085029ns 88537 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5085313ns 88542 1a110850 fd5ff06f jal x0, -44 +5085597ns 88547 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5085881ns 88552 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5086279ns 88559 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5086450ns 88562 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5086904ns 88570 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5087075ns 88573 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5087359ns 88578 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5087643ns 88583 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5087927ns 88588 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5088382ns 88596 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5088552ns 88599 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5088837ns 88604 1a110850 fd5ff06f jal x0, -44 +5089121ns 88609 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5089405ns 88614 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5089803ns 88621 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5089973ns 88624 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5090428ns 88632 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5090598ns 88635 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5090883ns 88640 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5091167ns 88645 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5091451ns 88650 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5091906ns 88658 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5092076ns 88661 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5092360ns 88666 1a110850 fd5ff06f jal x0, -44 +5092644ns 88671 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5092929ns 88676 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5093326ns 88683 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5093497ns 88686 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5093952ns 88694 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5094122ns 88697 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5094406ns 88702 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5094690ns 88707 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5094975ns 88712 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5095429ns 88720 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5095600ns 88723 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5095884ns 88728 1a110850 fd5ff06f jal x0, -44 +5096168ns 88733 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5096452ns 88738 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5096850ns 88745 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5097020ns 88748 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5097475ns 88756 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5097646ns 88759 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5097930ns 88764 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5098214ns 88769 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5098498ns 88774 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5098953ns 88782 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5099123ns 88785 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5099407ns 88790 1a110850 fd5ff06f jal x0, -44 +5099692ns 88795 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5099976ns 88800 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5100374ns 88807 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5100544ns 88810 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5100999ns 88818 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5101169ns 88821 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5101453ns 88826 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5101738ns 88831 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5102022ns 88836 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5102476ns 88844 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5102647ns 88847 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5102931ns 88852 1a110850 fd5ff06f jal x0, -44 +5103215ns 88857 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5103499ns 88862 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5103897ns 88869 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5104068ns 88872 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5104522ns 88880 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5104693ns 88883 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5104977ns 88888 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5105261ns 88893 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5105545ns 88898 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5106000ns 88906 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5106170ns 88909 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5106455ns 88914 1a110850 fd5ff06f jal x0, -44 +5106739ns 88919 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5107023ns 88924 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5107421ns 88931 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5107591ns 88934 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5108046ns 88942 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5108216ns 88945 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5108501ns 88950 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5108785ns 88955 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5109069ns 88960 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5109523ns 88968 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5109694ns 88971 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5109978ns 88976 1a110850 fd5ff06f jal x0, -44 +5110262ns 88981 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5110546ns 88986 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5110944ns 88993 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5111115ns 88996 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5111569ns 89004 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5111740ns 89007 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5112024ns 89012 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5112308ns 89017 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5112592ns 89022 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5113047ns 89030 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5113218ns 89033 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5113502ns 89038 1a110850 fd5ff06f jal x0, -44 +5113786ns 89043 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5114070ns 89048 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5114468ns 89055 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5114638ns 89058 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5115093ns 89066 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5115264ns 89069 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5115548ns 89074 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5115832ns 89079 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5116116ns 89084 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5116571ns 89092 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5116741ns 89095 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5117025ns 89100 1a110850 fd5ff06f jal x0, -44 +5117309ns 89105 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5117594ns 89110 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5117991ns 89117 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5118162ns 89120 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5118617ns 89128 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5118787ns 89131 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5119071ns 89136 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5119355ns 89141 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5119640ns 89146 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5120094ns 89154 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5120265ns 89157 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5120549ns 89162 1a110850 fd5ff06f jal x0, -44 +5120833ns 89167 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5121117ns 89172 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5121515ns 89179 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5121686ns 89182 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5122140ns 89190 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5122311ns 89193 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5122595ns 89198 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5122879ns 89203 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5123163ns 89208 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5123618ns 89216 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5123788ns 89219 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5124072ns 89224 1a110850 fd5ff06f jal x0, -44 +5124357ns 89229 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5124641ns 89234 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5125039ns 89241 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5125209ns 89244 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5125664ns 89252 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5125834ns 89255 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5126118ns 89260 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5126403ns 89265 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5126687ns 89270 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5127141ns 89278 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5127312ns 89281 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5127596ns 89286 1a110850 fd5ff06f jal x0, -44 +5127880ns 89291 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5128164ns 89296 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5128562ns 89303 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5128733ns 89306 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5129187ns 89314 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5129358ns 89317 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5129642ns 89322 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5129926ns 89327 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5130210ns 89332 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5130665ns 89340 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5130835ns 89343 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5131120ns 89348 1a110850 fd5ff06f jal x0, -44 +5131404ns 89353 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5131688ns 89358 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5132086ns 89365 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5132256ns 89368 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5132711ns 89376 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5132881ns 89379 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5133166ns 89384 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5133450ns 89389 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5133734ns 89394 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5134189ns 89402 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5134359ns 89405 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5134643ns 89410 1a110850 fd5ff06f jal x0, -44 +5134927ns 89415 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5135212ns 89420 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5135609ns 89427 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5135780ns 89430 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5136235ns 89438 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5136405ns 89441 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5136689ns 89446 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5136973ns 89451 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5137258ns 89456 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5137712ns 89464 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5137883ns 89467 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5138167ns 89472 1a110850 fd5ff06f jal x0, -44 +5138451ns 89477 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5138735ns 89482 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5139133ns 89489 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5139303ns 89492 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5139758ns 89500 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5139929ns 89503 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5140213ns 89508 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5140497ns 89513 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5140781ns 89518 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5141236ns 89526 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5141406ns 89529 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5141690ns 89534 1a110850 fd5ff06f jal x0, -44 +5141975ns 89539 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5142259ns 89544 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5142657ns 89551 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5142827ns 89554 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5143282ns 89562 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5143452ns 89565 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5143736ns 89570 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5144021ns 89575 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5144305ns 89580 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5144759ns 89588 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5144930ns 89591 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5145214ns 89596 1a110850 fd5ff06f jal x0, -44 +5145498ns 89601 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5145782ns 89606 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5146180ns 89613 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5146351ns 89616 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5146805ns 89624 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5146976ns 89627 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5147260ns 89632 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5147544ns 89637 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5147828ns 89642 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5148283ns 89650 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5148453ns 89653 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5148738ns 89658 1a110850 fd5ff06f jal x0, -44 +5149022ns 89663 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5149306ns 89668 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5149704ns 89675 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5149874ns 89678 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5150329ns 89686 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5150499ns 89689 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5150784ns 89694 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5151068ns 89699 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5151352ns 89704 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5151807ns 89712 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5151977ns 89715 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5152261ns 89720 1a110850 fd5ff06f jal x0, -44 +5152545ns 89725 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5152829ns 89730 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5153227ns 89737 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5153398ns 89740 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5153852ns 89748 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5154023ns 89751 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5154307ns 89756 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5154591ns 89761 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5154875ns 89766 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5155330ns 89774 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5155501ns 89777 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5155785ns 89782 1a110850 fd5ff06f jal x0, -44 +5156069ns 89787 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5156353ns 89792 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5156751ns 89799 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5156921ns 89802 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5157376ns 89810 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5157547ns 89813 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5157831ns 89818 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5158115ns 89823 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5158399ns 89828 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5158854ns 89836 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5159024ns 89839 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5159308ns 89844 1a110850 fd5ff06f jal x0, -44 +5159592ns 89849 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5159877ns 89854 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5160274ns 89861 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5160445ns 89864 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5160900ns 89872 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5161070ns 89875 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5161354ns 89880 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5161638ns 89885 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5161923ns 89890 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5162377ns 89898 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5162548ns 89901 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5162832ns 89906 1a110850 fd5ff06f jal x0, -44 +5163116ns 89911 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5163400ns 89916 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5163798ns 89923 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5163969ns 89926 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5164423ns 89934 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5164594ns 89937 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5164878ns 89942 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5165162ns 89947 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5165446ns 89952 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5165901ns 89960 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5166071ns 89963 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5166355ns 89968 1a110850 fd5ff06f jal x0, -44 +5166640ns 89973 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5166924ns 89978 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5167322ns 89985 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5167492ns 89988 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5167947ns 89996 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5168117ns 89999 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5168401ns 90004 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5168686ns 90009 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5168970ns 90014 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5169424ns 90022 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5169595ns 90025 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5169879ns 90030 1a110850 fd5ff06f jal x0, -44 +5170163ns 90035 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5170447ns 90040 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5170845ns 90047 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5171016ns 90050 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5171470ns 90058 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5171641ns 90061 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5171925ns 90066 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5172209ns 90071 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5172493ns 90076 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5172948ns 90084 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5173119ns 90087 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5173403ns 90092 1a110850 fd5ff06f jal x0, -44 +5173687ns 90097 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5173971ns 90102 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5174369ns 90109 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5174539ns 90112 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5174994ns 90120 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5175164ns 90123 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5175449ns 90128 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5175733ns 90133 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5176017ns 90138 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5176472ns 90146 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5176642ns 90149 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5176926ns 90154 1a110850 fd5ff06f jal x0, -44 +5177210ns 90159 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5177495ns 90164 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5177892ns 90171 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5178063ns 90174 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5178518ns 90182 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5178688ns 90185 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5178972ns 90190 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5179256ns 90195 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5179541ns 90200 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5179995ns 90208 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5180166ns 90211 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5180450ns 90216 1a110850 fd5ff06f jal x0, -44 +5180734ns 90221 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5181018ns 90226 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5181416ns 90233 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5181586ns 90236 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5182041ns 90244 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5182212ns 90247 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5182496ns 90252 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5182780ns 90257 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5183064ns 90262 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5183519ns 90270 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5183689ns 90273 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5183973ns 90278 1a110850 fd5ff06f jal x0, -44 +5184258ns 90283 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5184542ns 90288 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5184940ns 90295 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5185110ns 90298 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5185565ns 90306 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5185735ns 90309 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5186019ns 90314 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5186304ns 90319 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5186588ns 90324 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5187042ns 90332 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5187213ns 90335 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5187497ns 90340 1a110850 fd5ff06f jal x0, -44 +5187781ns 90345 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5188065ns 90350 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5188463ns 90357 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5188634ns 90360 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5189088ns 90368 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5189259ns 90371 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5189543ns 90376 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5189827ns 90381 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5190111ns 90386 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5190566ns 90394 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5190736ns 90397 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5191021ns 90402 1a110850 fd5ff06f jal x0, -44 +5191305ns 90407 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5191589ns 90412 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5191987ns 90419 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5192157ns 90422 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5192612ns 90430 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5192782ns 90433 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5193067ns 90438 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5193351ns 90443 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5193635ns 90448 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5194090ns 90456 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5194260ns 90459 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5194544ns 90464 1a110850 fd5ff06f jal x0, -44 +5194828ns 90469 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5195112ns 90474 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5195510ns 90481 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5195681ns 90484 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5196135ns 90492 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5196306ns 90495 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5196590ns 90500 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5196874ns 90505 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5197158ns 90510 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5197613ns 90518 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5197784ns 90521 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5198068ns 90526 1a110850 fd5ff06f jal x0, -44 +5198352ns 90531 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5198636ns 90536 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5199034ns 90543 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5199204ns 90546 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5199659ns 90554 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5199830ns 90557 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5200114ns 90562 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5200398ns 90567 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5200682ns 90572 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5201137ns 90580 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5201307ns 90583 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5201591ns 90588 1a110850 fd5ff06f jal x0, -44 +5201875ns 90593 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5202160ns 90598 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5202557ns 90605 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5202728ns 90608 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5203183ns 90616 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5203353ns 90619 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5203637ns 90624 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5203921ns 90629 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5204206ns 90634 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5204660ns 90642 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5204831ns 90645 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5205115ns 90650 1a110850 fd5ff06f jal x0, -44 +5205399ns 90655 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5205683ns 90660 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5206081ns 90667 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5206252ns 90670 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5206706ns 90678 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5206877ns 90681 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5207161ns 90686 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5207445ns 90691 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5207729ns 90696 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5208184ns 90704 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5208354ns 90707 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5208639ns 90712 1a110850 fd5ff06f jal x0, -44 +5208923ns 90717 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5209207ns 90722 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5209605ns 90729 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5209775ns 90732 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5210230ns 90740 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5210400ns 90743 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5210684ns 90748 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5210969ns 90753 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5211253ns 90758 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5211707ns 90766 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5211878ns 90769 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5212162ns 90774 1a110850 fd5ff06f jal x0, -44 +5212446ns 90779 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5212730ns 90784 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5213128ns 90791 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5213299ns 90794 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5213753ns 90802 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5213924ns 90805 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5214208ns 90810 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5214492ns 90815 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5214776ns 90820 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5215231ns 90828 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5215402ns 90831 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5215686ns 90836 1a110850 fd5ff06f jal x0, -44 +5215970ns 90841 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5216254ns 90846 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5216652ns 90853 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5216822ns 90856 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5217277ns 90864 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5217447ns 90867 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5217732ns 90872 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5218016ns 90877 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5218300ns 90882 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5218755ns 90890 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5218925ns 90893 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5219209ns 90898 1a110850 fd5ff06f jal x0, -44 +5219493ns 90903 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5219778ns 90908 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5220175ns 90915 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5220346ns 90918 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5220801ns 90926 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5220971ns 90929 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5221255ns 90934 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5221539ns 90939 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5221824ns 90944 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5222278ns 90952 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5222449ns 90955 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5222733ns 90960 1a110850 fd5ff06f jal x0, -44 +5223017ns 90965 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5223301ns 90970 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5223699ns 90977 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5223869ns 90980 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5224324ns 90988 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5224495ns 90991 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5224779ns 90996 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5225063ns 91001 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5225347ns 91006 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5225802ns 91014 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5225972ns 91017 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5226256ns 91022 1a110850 fd5ff06f jal x0, -44 +5226541ns 91027 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5226825ns 91032 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5227223ns 91039 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5227393ns 91042 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5227848ns 91050 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5228018ns 91053 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5228302ns 91058 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5228587ns 91063 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5228871ns 91068 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5229325ns 91076 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5229496ns 91079 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5229780ns 91084 1a110850 fd5ff06f jal x0, -44 +5230064ns 91089 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5230348ns 91094 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5230746ns 91101 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5230917ns 91104 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5231371ns 91112 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5231542ns 91115 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5231826ns 91120 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5232110ns 91125 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5232394ns 91130 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5232849ns 91138 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5233019ns 91141 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5233304ns 91146 1a110850 fd5ff06f jal x0, -44 +5233588ns 91151 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5233872ns 91156 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5234270ns 91163 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5234440ns 91166 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5234895ns 91174 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5235065ns 91177 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5235350ns 91182 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5235634ns 91187 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5235918ns 91192 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5236373ns 91200 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5236543ns 91203 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5236827ns 91208 1a110850 fd5ff06f jal x0, -44 +5237111ns 91213 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5237395ns 91218 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5237793ns 91225 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5237964ns 91228 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5238418ns 91236 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5238589ns 91239 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5238873ns 91244 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5239157ns 91249 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5239441ns 91254 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5239896ns 91262 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5240067ns 91265 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5240351ns 91270 1a110850 fd5ff06f jal x0, -44 +5240635ns 91275 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5240919ns 91280 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5241317ns 91287 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5241487ns 91290 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5241942ns 91298 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5242113ns 91301 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5242397ns 91306 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5242681ns 91311 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5242965ns 91316 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5243420ns 91324 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5243590ns 91327 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5243874ns 91332 1a110850 fd5ff06f jal x0, -44 +5244159ns 91337 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5244443ns 91342 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5244840ns 91349 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5245011ns 91352 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5245466ns 91360 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5245636ns 91363 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5245920ns 91368 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5246204ns 91373 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5246489ns 91378 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5246943ns 91386 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5247114ns 91389 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5247398ns 91394 1a110850 fd5ff06f jal x0, -44 +5247682ns 91399 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5247966ns 91404 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5248364ns 91411 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5248535ns 91414 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5248989ns 91422 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5249160ns 91425 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5249444ns 91430 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5249728ns 91435 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5250012ns 91440 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5250467ns 91448 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5250637ns 91451 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5250922ns 91456 1a110850 fd5ff06f jal x0, -44 +5251206ns 91461 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5251490ns 91466 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5251888ns 91473 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5252058ns 91476 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5252513ns 91484 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5252683ns 91487 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5252967ns 91492 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5253252ns 91497 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5253536ns 91502 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5253990ns 91510 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5254161ns 91513 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5254445ns 91518 1a110850 fd5ff06f jal x0, -44 +5254729ns 91523 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5255013ns 91528 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5255411ns 91535 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5255582ns 91538 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5256036ns 91546 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5256207ns 91549 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5256491ns 91554 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5256775ns 91559 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5257059ns 91564 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5257514ns 91572 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5257685ns 91575 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5257969ns 91580 1a110850 fd5ff06f jal x0, -44 +5258253ns 91585 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5258537ns 91590 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5258935ns 91597 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5259105ns 91600 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5259560ns 91608 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5259730ns 91611 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5260015ns 91616 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5260299ns 91621 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5260583ns 91626 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5261038ns 91634 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5261208ns 91637 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5261492ns 91642 1a110850 fd5ff06f jal x0, -44 +5261776ns 91647 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5262061ns 91652 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5262458ns 91659 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5262629ns 91662 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5263084ns 91670 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5263254ns 91673 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5263538ns 91678 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5263822ns 91683 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5264107ns 91688 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5264561ns 91696 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5264732ns 91699 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5265016ns 91704 1a110850 fd5ff06f jal x0, -44 +5265300ns 91709 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5265584ns 91714 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5265982ns 91721 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5266152ns 91724 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5266607ns 91732 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5266778ns 91735 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5267062ns 91740 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5267346ns 91745 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5267630ns 91750 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5268085ns 91758 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5268255ns 91761 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5268539ns 91766 1a110850 fd5ff06f jal x0, -44 +5268824ns 91771 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5269108ns 91776 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5269506ns 91783 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5269676ns 91786 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5270131ns 91794 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5270301ns 91797 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5270585ns 91802 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5270870ns 91807 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5271154ns 91812 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5271608ns 91820 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5271779ns 91823 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5272063ns 91828 1a110850 fd5ff06f jal x0, -44 +5272347ns 91833 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5272631ns 91838 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5273029ns 91845 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5273200ns 91848 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5273654ns 91856 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5273825ns 91859 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5274109ns 91864 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5274393ns 91869 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5274677ns 91874 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5275132ns 91882 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5275302ns 91885 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5275587ns 91890 1a110850 fd5ff06f jal x0, -44 +5275871ns 91895 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5276155ns 91900 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5276553ns 91907 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5276723ns 91910 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5277178ns 91918 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5277348ns 91921 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5277633ns 91926 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5277917ns 91931 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5278201ns 91936 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5278656ns 91944 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5278826ns 91947 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5279110ns 91952 1a110850 fd5ff06f jal x0, -44 +5279394ns 91957 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5279679ns 91962 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5280076ns 91969 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5280247ns 91972 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5280701ns 91980 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5280872ns 91983 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5281156ns 91988 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5281440ns 91993 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5281724ns 91998 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5282179ns 92006 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5282350ns 92009 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5282634ns 92014 1a110850 fd5ff06f jal x0, -44 +5282918ns 92019 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5283202ns 92024 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5283600ns 92031 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5283770ns 92034 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5284225ns 92042 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5284396ns 92045 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5284680ns 92050 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5284964ns 92055 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5285248ns 92060 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5285703ns 92068 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5285873ns 92071 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5286157ns 92076 1a110850 fd5ff06f jal x0, -44 +5286442ns 92081 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5286726ns 92086 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5287123ns 92093 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5287294ns 92096 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5287749ns 92104 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5287919ns 92107 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5288203ns 92112 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5288487ns 92117 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5288772ns 92122 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5289226ns 92130 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5289397ns 92133 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5289681ns 92138 1a110850 fd5ff06f jal x0, -44 +5289965ns 92143 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5290249ns 92148 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5290647ns 92155 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5290818ns 92158 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5291272ns 92166 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5291443ns 92169 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5291727ns 92174 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5292011ns 92179 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5292295ns 92184 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5292750ns 92192 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5292920ns 92195 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5293205ns 92200 1a110850 fd5ff06f jal x0, -44 +5293489ns 92205 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5293773ns 92210 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5294171ns 92217 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5294341ns 92220 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5294796ns 92228 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5294966ns 92231 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5295250ns 92236 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5295535ns 92241 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5295819ns 92246 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5296273ns 92254 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5296444ns 92257 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5296728ns 92262 1a110850 fd5ff06f jal x0, -44 +5297012ns 92267 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5297296ns 92272 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5297694ns 92279 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5297865ns 92282 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5298319ns 92290 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5298490ns 92293 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5298774ns 92298 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5299058ns 92303 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5299342ns 92308 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5299797ns 92316 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5299968ns 92319 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5300252ns 92324 1a110850 fd5ff06f jal x0, -44 +5300536ns 92329 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5300820ns 92334 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5301218ns 92341 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5301388ns 92344 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5301843ns 92352 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5302013ns 92355 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5302298ns 92360 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5302582ns 92365 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5302866ns 92370 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5303321ns 92378 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5303491ns 92381 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5303775ns 92386 1a110850 fd5ff06f jal x0, -44 +5304059ns 92391 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5304344ns 92396 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5304741ns 92403 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5304912ns 92406 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5305367ns 92414 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5305537ns 92417 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5305821ns 92422 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5306105ns 92427 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5306390ns 92432 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5306844ns 92440 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5307015ns 92443 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5307299ns 92448 1a110850 fd5ff06f jal x0, -44 +5307583ns 92453 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5307867ns 92458 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5308265ns 92465 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5308435ns 92468 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5308890ns 92476 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5309061ns 92479 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5309345ns 92484 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5309629ns 92489 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5309913ns 92494 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5310368ns 92502 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5310538ns 92505 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5310822ns 92510 1a110850 fd5ff06f jal x0, -44 +5311107ns 92515 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5311391ns 92520 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5311789ns 92527 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5311959ns 92530 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5312414ns 92538 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5312584ns 92541 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5312868ns 92546 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5313153ns 92551 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5313437ns 92556 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5313891ns 92564 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5314062ns 92567 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5314346ns 92572 1a110850 fd5ff06f jal x0, -44 +5314630ns 92577 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5314914ns 92582 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5315312ns 92589 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5315483ns 92592 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5315937ns 92600 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5316108ns 92603 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5316392ns 92608 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5316676ns 92613 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5316960ns 92618 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5317415ns 92626 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5317585ns 92629 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5317870ns 92634 1a110850 fd5ff06f jal x0, -44 +5318154ns 92639 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5318438ns 92644 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5318836ns 92651 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5319006ns 92654 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5319461ns 92662 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5319631ns 92665 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5319916ns 92670 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5320200ns 92675 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5320484ns 92680 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5320939ns 92688 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5321109ns 92691 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5321393ns 92696 1a110850 fd5ff06f jal x0, -44 +5321677ns 92701 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5321962ns 92706 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5322359ns 92713 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5322530ns 92716 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5322984ns 92724 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5323155ns 92727 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5323439ns 92732 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5323723ns 92737 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5324007ns 92742 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5324462ns 92750 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5324633ns 92753 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5324917ns 92758 1a110850 fd5ff06f jal x0, -44 +5325201ns 92763 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5325485ns 92768 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5325883ns 92775 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5326053ns 92778 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5326508ns 92786 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5326679ns 92789 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5326963ns 92794 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5327247ns 92799 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5327531ns 92804 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5327986ns 92812 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5328156ns 92815 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5328440ns 92820 1a110850 fd5ff06f jal x0, -44 +5328725ns 92825 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5329009ns 92830 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5329407ns 92837 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5329577ns 92840 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5330032ns 92848 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5330202ns 92851 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5330486ns 92856 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5330770ns 92861 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5331055ns 92866 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5331509ns 92874 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5331680ns 92877 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5331964ns 92882 1a110850 fd5ff06f jal x0, -44 +5332248ns 92887 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5332532ns 92892 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5332930ns 92899 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5333101ns 92902 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5333555ns 92910 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5333726ns 92913 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5334010ns 92918 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5334294ns 92923 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5334578ns 92928 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5335033ns 92936 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5335203ns 92939 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5335488ns 92944 1a110850 fd5ff06f jal x0, -44 +5335772ns 92949 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5336056ns 92954 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5336454ns 92961 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5336624ns 92964 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5337079ns 92972 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5337249ns 92975 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5337533ns 92980 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5337818ns 92985 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5338102ns 92990 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5338556ns 92998 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5338727ns 93001 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5339011ns 93006 1a110850 fd5ff06f jal x0, -44 +5339295ns 93011 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5339579ns 93016 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5339977ns 93023 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5340148ns 93026 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5340602ns 93034 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5340773ns 93037 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5341057ns 93042 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5341341ns 93047 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5341625ns 93052 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5342080ns 93060 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5342251ns 93063 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5342535ns 93068 1a110850 fd5ff06f jal x0, -44 +5342819ns 93073 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5343103ns 93078 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5343501ns 93085 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5343671ns 93088 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5344126ns 93096 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5344296ns 93099 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5344581ns 93104 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5344865ns 93109 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5345149ns 93114 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5345604ns 93122 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5345774ns 93125 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5346058ns 93130 1a110850 fd5ff06f jal x0, -44 +5346342ns 93135 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5346627ns 93140 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5347024ns 93147 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5347195ns 93150 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5347650ns 93158 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5347820ns 93161 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5348104ns 93166 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5348388ns 93171 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5348673ns 93176 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5349127ns 93184 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5349298ns 93187 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5349582ns 93192 1a110850 fd5ff06f jal x0, -44 +5349866ns 93197 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5350150ns 93202 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5350548ns 93209 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5350719ns 93212 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5351173ns 93220 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5351344ns 93223 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5351628ns 93228 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5351912ns 93233 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5352196ns 93238 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5352651ns 93246 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5352821ns 93249 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5353105ns 93254 1a110850 fd5ff06f jal x0, -44 +5353390ns 93259 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5353674ns 93264 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5354072ns 93271 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5354242ns 93274 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5354697ns 93282 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5354867ns 93285 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5355151ns 93290 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5355436ns 93295 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5355720ns 93300 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5356174ns 93308 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5356345ns 93311 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5356629ns 93316 1a110850 fd5ff06f jal x0, -44 +5356913ns 93321 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5357197ns 93326 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5357595ns 93333 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5357766ns 93336 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5358220ns 93344 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5358391ns 93347 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5358675ns 93352 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5358959ns 93357 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5359243ns 93362 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5359698ns 93370 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5359868ns 93373 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5360153ns 93378 1a110850 fd5ff06f jal x0, -44 +5360437ns 93383 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5360721ns 93388 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5361119ns 93395 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5361289ns 93398 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5361744ns 93406 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5361914ns 93409 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5362199ns 93414 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5362483ns 93419 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5362767ns 93424 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5363222ns 93432 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5363392ns 93435 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5363676ns 93440 1a110850 fd5ff06f jal x0, -44 +5363960ns 93445 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5364245ns 93450 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5364642ns 93457 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5364813ns 93460 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5365267ns 93468 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5365438ns 93471 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5365722ns 93476 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5366006ns 93481 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5366290ns 93486 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5366745ns 93494 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5366916ns 93497 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5367200ns 93502 1a110850 fd5ff06f jal x0, -44 +5367484ns 93507 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5367768ns 93512 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5368166ns 93519 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5368336ns 93522 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5368791ns 93530 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5368962ns 93533 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5369246ns 93538 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5369530ns 93543 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5369814ns 93548 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5370269ns 93556 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5370439ns 93559 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5370723ns 93564 1a110850 fd5ff06f jal x0, -44 +5371008ns 93569 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5371292ns 93574 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5371690ns 93581 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5371860ns 93584 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5372315ns 93592 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5372485ns 93595 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5372769ns 93600 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5373053ns 93605 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5373338ns 93610 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5373792ns 93618 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5373963ns 93621 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5374247ns 93626 1a110850 fd5ff06f jal x0, -44 +5374531ns 93631 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5374815ns 93636 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5375213ns 93643 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5375384ns 93646 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5375838ns 93654 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5376009ns 93657 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5376293ns 93662 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5376577ns 93667 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5376861ns 93672 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5377316ns 93680 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5377486ns 93683 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5377771ns 93688 1a110850 fd5ff06f jal x0, -44 +5378055ns 93693 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5378339ns 93698 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5378737ns 93705 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5378907ns 93708 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5379362ns 93716 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5379532ns 93719 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5379816ns 93724 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5380101ns 93729 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5380385ns 93734 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5380839ns 93742 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5381010ns 93745 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5381294ns 93750 1a110850 fd5ff06f jal x0, -44 +5381578ns 93755 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5381862ns 93760 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5382260ns 93767 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5382431ns 93770 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5382885ns 93778 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5383056ns 93781 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5383340ns 93786 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5383624ns 93791 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5383908ns 93796 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5384363ns 93804 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5384534ns 93807 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5384818ns 93812 1a110850 fd5ff06f jal x0, -44 +5385102ns 93817 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5385386ns 93822 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5385784ns 93829 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5385954ns 93832 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5386409ns 93840 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5386579ns 93843 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5386864ns 93848 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5387148ns 93853 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5387432ns 93858 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5387887ns 93866 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5388057ns 93869 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5388341ns 93874 1a110850 fd5ff06f jal x0, -44 +5388625ns 93879 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5388910ns 93884 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5389307ns 93891 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5389478ns 93894 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5389933ns 93902 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5390103ns 93905 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5390387ns 93910 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5390671ns 93915 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5390956ns 93920 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5391410ns 93928 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5391581ns 93931 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5391865ns 93936 1a110850 fd5ff06f jal x0, -44 +5392149ns 93941 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5392433ns 93946 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5392831ns 93953 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5393002ns 93956 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5393456ns 93964 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5393627ns 93967 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5393911ns 93972 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5394195ns 93977 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5394479ns 93982 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5394934ns 93990 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5395104ns 93993 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5395388ns 93998 1a110850 fd5ff06f jal x0, -44 +5395673ns 94003 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5395957ns 94008 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5396355ns 94015 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5396525ns 94018 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5396980ns 94026 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5397150ns 94029 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5397434ns 94034 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5397719ns 94039 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5398003ns 94044 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5398457ns 94052 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5398628ns 94055 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5398912ns 94060 1a110850 fd5ff06f jal x0, -44 +5399196ns 94065 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5399480ns 94070 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5399878ns 94077 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5400049ns 94080 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5400503ns 94088 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5400674ns 94091 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5400958ns 94096 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5401242ns 94101 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5401526ns 94106 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5401981ns 94114 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5402151ns 94117 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5402436ns 94122 1a110850 fd5ff06f jal x0, -44 +5402720ns 94127 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5403004ns 94132 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5403402ns 94139 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5403572ns 94142 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5404027ns 94150 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5404197ns 94153 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5404482ns 94158 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5404766ns 94163 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5405050ns 94168 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5405505ns 94176 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5405675ns 94179 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5405959ns 94184 1a110850 fd5ff06f jal x0, -44 +5406243ns 94189 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5406528ns 94194 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5406925ns 94201 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5407096ns 94204 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5407551ns 94212 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5407721ns 94215 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5408005ns 94220 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5408289ns 94225 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5408573ns 94230 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5409028ns 94238 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5409199ns 94241 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5409483ns 94246 1a110850 fd5ff06f jal x0, -44 +5409767ns 94251 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5410051ns 94256 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5410449ns 94263 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5410619ns 94266 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5411074ns 94274 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5411245ns 94277 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5411529ns 94282 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5411813ns 94287 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5412097ns 94292 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5412552ns 94300 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5412722ns 94303 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5413006ns 94308 1a110850 fd5ff06f jal x0, -44 +5413291ns 94313 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5413575ns 94318 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5413973ns 94325 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5414143ns 94328 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5414598ns 94336 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5414768ns 94339 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5415052ns 94344 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5415336ns 94349 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5415621ns 94354 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5416075ns 94362 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5416246ns 94365 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5416530ns 94370 1a110850 fd5ff06f jal x0, -44 +5416814ns 94375 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5417098ns 94380 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5417496ns 94387 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5417667ns 94390 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5418121ns 94398 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5418292ns 94401 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5418576ns 94406 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5418860ns 94411 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5419144ns 94416 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5419599ns 94424 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5419769ns 94427 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5420054ns 94432 1a110850 fd5ff06f jal x0, -44 +5420338ns 94437 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5420622ns 94442 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5421020ns 94449 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5421190ns 94452 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5421645ns 94460 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5421815ns 94463 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5422099ns 94468 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5422384ns 94473 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5422668ns 94478 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5423122ns 94486 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5423293ns 94489 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5423577ns 94494 1a110850 fd5ff06f jal x0, -44 +5423861ns 94499 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5424145ns 94504 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5424543ns 94511 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5424714ns 94514 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5425168ns 94522 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5425339ns 94525 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5425623ns 94530 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5425907ns 94535 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5426191ns 94540 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5426646ns 94548 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5426817ns 94551 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5427101ns 94556 1a110850 fd5ff06f jal x0, -44 +5427385ns 94561 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5427669ns 94566 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5428067ns 94573 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5428237ns 94576 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5428692ns 94584 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5428863ns 94587 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5429147ns 94592 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5429431ns 94597 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5429715ns 94602 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5430170ns 94610 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5430340ns 94613 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5430624ns 94618 1a110850 fd5ff06f jal x0, -44 +5430908ns 94623 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5431193ns 94628 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5431590ns 94635 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5431761ns 94638 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5432216ns 94646 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5432386ns 94649 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5432670ns 94654 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5432954ns 94659 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5433239ns 94664 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5433693ns 94672 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5433864ns 94675 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5434148ns 94680 1a110850 fd5ff06f jal x0, -44 +5434432ns 94685 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5434716ns 94690 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5435114ns 94697 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5435285ns 94700 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5435739ns 94708 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5435910ns 94711 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5436194ns 94716 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5436478ns 94721 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5436762ns 94726 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5437217ns 94734 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5437387ns 94737 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5437671ns 94742 1a110850 fd5ff06f jal x0, -44 +5437956ns 94747 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5438240ns 94752 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5438638ns 94759 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5438808ns 94762 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5439263ns 94770 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5439433ns 94773 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5439717ns 94778 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5440002ns 94783 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5440286ns 94788 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5440740ns 94796 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5440911ns 94799 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5441195ns 94804 1a110850 fd5ff06f jal x0, -44 +5441479ns 94809 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5441763ns 94814 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5442161ns 94821 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5442332ns 94824 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5442786ns 94832 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5442957ns 94835 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5443241ns 94840 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5443525ns 94845 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5443809ns 94850 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5444264ns 94858 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5444434ns 94861 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5444719ns 94866 1a110850 fd5ff06f jal x0, -44 +5445003ns 94871 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5445287ns 94876 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5445685ns 94883 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5445855ns 94886 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5446310ns 94894 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5446480ns 94897 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5446765ns 94902 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5447049ns 94907 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5447333ns 94912 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5447788ns 94920 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5447958ns 94923 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5448242ns 94928 1a110850 fd5ff06f jal x0, -44 +5448526ns 94933 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5448811ns 94938 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5449208ns 94945 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5449379ns 94948 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5449834ns 94956 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5450004ns 94959 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5450288ns 94964 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5450572ns 94969 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5450856ns 94974 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5451311ns 94982 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5451482ns 94985 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5451766ns 94990 1a110850 fd5ff06f jal x0, -44 +5452050ns 94995 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5452334ns 95000 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5452732ns 95007 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5452902ns 95010 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5453357ns 95018 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5453528ns 95021 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5453812ns 95026 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5454096ns 95031 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5454380ns 95036 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5454835ns 95044 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5455005ns 95047 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5455289ns 95052 1a110850 fd5ff06f jal x0, -44 +5455574ns 95057 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5455858ns 95062 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5456256ns 95069 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5456426ns 95072 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5456881ns 95080 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5457051ns 95083 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5457335ns 95088 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5457619ns 95093 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5457904ns 95098 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5458358ns 95106 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5458529ns 95109 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5458813ns 95114 1a110850 fd5ff06f jal x0, -44 +5459097ns 95119 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5459381ns 95124 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5459779ns 95131 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5459950ns 95134 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5460404ns 95142 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5460575ns 95145 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5460859ns 95150 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5461143ns 95155 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5461427ns 95160 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5461882ns 95168 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5462052ns 95171 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5462337ns 95176 1a110850 fd5ff06f jal x0, -44 +5462621ns 95181 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5462905ns 95186 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5463303ns 95193 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5463473ns 95196 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5463928ns 95204 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5464098ns 95207 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5464383ns 95212 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5464667ns 95217 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5464951ns 95222 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5465405ns 95230 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5465576ns 95233 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5465860ns 95238 1a110850 fd5ff06f jal x0, -44 +5466144ns 95243 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5466428ns 95248 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5466826ns 95255 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5466997ns 95258 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5467451ns 95266 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5467622ns 95269 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5467906ns 95274 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5468190ns 95279 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5468474ns 95284 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5468929ns 95292 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5469100ns 95295 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5469384ns 95300 1a110850 fd5ff06f jal x0, -44 +5469668ns 95305 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5469952ns 95310 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5470350ns 95317 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5470520ns 95320 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5470975ns 95328 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5471146ns 95331 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5471430ns 95336 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5471714ns 95341 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5471998ns 95346 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5472453ns 95354 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5472623ns 95357 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5472907ns 95362 1a110850 fd5ff06f jal x0, -44 +5473191ns 95367 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5473476ns 95372 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5473873ns 95379 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5474044ns 95382 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5474499ns 95390 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5474669ns 95393 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5474953ns 95398 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5475237ns 95403 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5475522ns 95408 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5475976ns 95416 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5476147ns 95419 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5476431ns 95424 1a110850 fd5ff06f jal x0, -44 +5476715ns 95429 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5476999ns 95434 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5477397ns 95441 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5477568ns 95444 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5478022ns 95452 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5478193ns 95455 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5478477ns 95460 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5478761ns 95465 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5479045ns 95470 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5479500ns 95478 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5479670ns 95481 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5479954ns 95486 1a110850 fd5ff06f jal x0, -44 +5480239ns 95491 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5480523ns 95496 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5480921ns 95503 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5481091ns 95506 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5481546ns 95514 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5481716ns 95517 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5482000ns 95522 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5482285ns 95527 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5482569ns 95532 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5483023ns 95540 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5483194ns 95543 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5483478ns 95548 1a110850 fd5ff06f jal x0, -44 +5483762ns 95553 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5484046ns 95558 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5484444ns 95565 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5484615ns 95568 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5485069ns 95576 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5485240ns 95579 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5485524ns 95584 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5485808ns 95589 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5486092ns 95594 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5486547ns 95602 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5486717ns 95605 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5487002ns 95610 1a110850 fd5ff06f jal x0, -44 +5487286ns 95615 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5487570ns 95620 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5487968ns 95627 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5488138ns 95630 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5488593ns 95638 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5488763ns 95641 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5489048ns 95646 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5489332ns 95651 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5489616ns 95656 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5490071ns 95664 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5490241ns 95667 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5490525ns 95672 1a110850 fd5ff06f jal x0, -44 +5490809ns 95677 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5491094ns 95682 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5491491ns 95689 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5491662ns 95692 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5492117ns 95700 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5492287ns 95703 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5492571ns 95708 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5492855ns 95713 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5493139ns 95718 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5493594ns 95726 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5493765ns 95729 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5494049ns 95734 1a110850 fd5ff06f jal x0, -44 +5494333ns 95739 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5494617ns 95744 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5495015ns 95751 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5495185ns 95754 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5495640ns 95762 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5495811ns 95765 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5496095ns 95770 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5496379ns 95775 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5496663ns 95780 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5497118ns 95788 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5497288ns 95791 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5497572ns 95796 1a110850 fd5ff06f jal x0, -44 +5497857ns 95801 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5498141ns 95806 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5498539ns 95813 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5498709ns 95816 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5499164ns 95824 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5499334ns 95827 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5499618ns 95832 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5499903ns 95837 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5500187ns 95842 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5500641ns 95850 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5500812ns 95853 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5501096ns 95858 1a110850 fd5ff06f jal x0, -44 +5501380ns 95863 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5501664ns 95868 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5502062ns 95875 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5502233ns 95878 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5502687ns 95886 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5502858ns 95889 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5503142ns 95894 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5503426ns 95899 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5503710ns 95904 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5504165ns 95912 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5504335ns 95915 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5504620ns 95920 1a110850 fd5ff06f jal x0, -44 +5504904ns 95925 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5505188ns 95930 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5505586ns 95937 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5505756ns 95940 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5506211ns 95948 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5506381ns 95951 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5506666ns 95956 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5506950ns 95961 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5507234ns 95966 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5507688ns 95974 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5507859ns 95977 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5508143ns 95982 1a110850 fd5ff06f jal x0, -44 +5508427ns 95987 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5508711ns 95992 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5509109ns 95999 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5509280ns 96002 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5509734ns 96010 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5509905ns 96013 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5510189ns 96018 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5510473ns 96023 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5510757ns 96028 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5511212ns 96036 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5511383ns 96039 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5511667ns 96044 1a110850 fd5ff06f jal x0, -44 +5511951ns 96049 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5512235ns 96054 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5512633ns 96061 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5512803ns 96064 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5513258ns 96072 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5513429ns 96075 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5513713ns 96080 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5513997ns 96085 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5514281ns 96090 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5514736ns 96098 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5514906ns 96101 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5515190ns 96106 1a110850 fd5ff06f jal x0, -44 +5515474ns 96111 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5515759ns 96116 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5516156ns 96123 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5516327ns 96126 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5516782ns 96134 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5516952ns 96137 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5517236ns 96142 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5517520ns 96147 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5517805ns 96152 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5518259ns 96160 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5518430ns 96163 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5518714ns 96168 1a110850 fd5ff06f jal x0, -44 +5518998ns 96173 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5519282ns 96178 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5519680ns 96185 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5519851ns 96188 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5520305ns 96196 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5520476ns 96199 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5520760ns 96204 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5521044ns 96209 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5521328ns 96214 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5521783ns 96222 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5521953ns 96225 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5522237ns 96230 1a110850 fd5ff06f jal x0, -44 +5522522ns 96235 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5522806ns 96240 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5523204ns 96247 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5523374ns 96250 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5523829ns 96258 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5523999ns 96261 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5524283ns 96266 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5524568ns 96271 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5524852ns 96276 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5525306ns 96284 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5525477ns 96287 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5525761ns 96292 1a110850 fd5ff06f jal x0, -44 +5526045ns 96297 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5526329ns 96302 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5526727ns 96309 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5526898ns 96312 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5527352ns 96320 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5527523ns 96323 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5527807ns 96328 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5528091ns 96333 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5528375ns 96338 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5528830ns 96346 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5529000ns 96349 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5529285ns 96354 1a110850 fd5ff06f jal x0, -44 +5529569ns 96359 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5529853ns 96364 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5530251ns 96371 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5530421ns 96374 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5530876ns 96382 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5531046ns 96385 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5531331ns 96390 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5531615ns 96395 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5531899ns 96400 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5532354ns 96408 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5532524ns 96411 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5532808ns 96416 1a110850 fd5ff06f jal x0, -44 +5533092ns 96421 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5533377ns 96426 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5533774ns 96433 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5533945ns 96436 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5534400ns 96444 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5534570ns 96447 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5534854ns 96452 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5535138ns 96457 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5535423ns 96462 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5535877ns 96470 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5536048ns 96473 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5536332ns 96478 1a110850 fd5ff06f jal x0, -44 +5536616ns 96483 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5536900ns 96488 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5537298ns 96495 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5537468ns 96498 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5537923ns 96506 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5538094ns 96509 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5538378ns 96514 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5538662ns 96519 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5538946ns 96524 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5539401ns 96532 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5539571ns 96535 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5539855ns 96540 1a110850 fd5ff06f jal x0, -44 +5540140ns 96545 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5540424ns 96550 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5540822ns 96557 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5540992ns 96560 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5541447ns 96568 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5541617ns 96571 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5541901ns 96576 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5542186ns 96581 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5542470ns 96586 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5542924ns 96594 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5543095ns 96597 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5543379ns 96602 1a110850 fd5ff06f jal x0, -44 +5543663ns 96607 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5543947ns 96612 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5544345ns 96619 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5544516ns 96622 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5544970ns 96630 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5545141ns 96633 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5545425ns 96638 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5545709ns 96643 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5545993ns 96648 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5546448ns 96656 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5546618ns 96659 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5546903ns 96664 1a110850 fd5ff06f jal x0, -44 +5547187ns 96669 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5547471ns 96674 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5547869ns 96681 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5548039ns 96684 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5548494ns 96692 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5548664ns 96695 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5548949ns 96700 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5549233ns 96705 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5549517ns 96710 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5549971ns 96718 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5550142ns 96721 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5550426ns 96726 1a110850 fd5ff06f jal x0, -44 +5550710ns 96731 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5550994ns 96736 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5551392ns 96743 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5551563ns 96746 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5552017ns 96754 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5552188ns 96757 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5552472ns 96762 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5552756ns 96767 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5553040ns 96772 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5553495ns 96780 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5553666ns 96783 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5553950ns 96788 1a110850 fd5ff06f jal x0, -44 +5554234ns 96793 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5554518ns 96798 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5554916ns 96805 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5555086ns 96808 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5555541ns 96816 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5555712ns 96819 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5555996ns 96824 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5556280ns 96829 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5556564ns 96834 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5557019ns 96842 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5557189ns 96845 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5557473ns 96850 1a110850 fd5ff06f jal x0, -44 +5557757ns 96855 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5558042ns 96860 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5558439ns 96867 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5558610ns 96870 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5559065ns 96878 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5559235ns 96881 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5559519ns 96886 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5559803ns 96891 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5560088ns 96896 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5560542ns 96904 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5560713ns 96907 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5560997ns 96912 1a110850 fd5ff06f jal x0, -44 +5561281ns 96917 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5561565ns 96922 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5561963ns 96929 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5562134ns 96932 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5562588ns 96940 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5562759ns 96943 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5563043ns 96948 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5563327ns 96953 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5563611ns 96958 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5564066ns 96966 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5564236ns 96969 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5564520ns 96974 1a110850 fd5ff06f jal x0, -44 +5564805ns 96979 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5565089ns 96984 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5565487ns 96991 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5565657ns 96994 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5566112ns 97002 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5566282ns 97005 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5566566ns 97010 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5566851ns 97015 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5567135ns 97020 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5567589ns 97028 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5567760ns 97031 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5568044ns 97036 1a110850 fd5ff06f jal x0, -44 +5568328ns 97041 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5568612ns 97046 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5569010ns 97053 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5569181ns 97056 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5569635ns 97064 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5569806ns 97067 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5570090ns 97072 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5570374ns 97077 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5570658ns 97082 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5571113ns 97090 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5571283ns 97093 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5571568ns 97098 1a110850 fd5ff06f jal x0, -44 +5571852ns 97103 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5572136ns 97108 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5572534ns 97115 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5572704ns 97118 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5573159ns 97126 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5573329ns 97129 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5573614ns 97134 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5573898ns 97139 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5574182ns 97144 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5574637ns 97152 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5574807ns 97155 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5575091ns 97160 1a110850 fd5ff06f jal x0, -44 +5575375ns 97165 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5575660ns 97170 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5576057ns 97177 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5576228ns 97180 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5576683ns 97188 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5576853ns 97191 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5577137ns 97196 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5577421ns 97201 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5577706ns 97206 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5578160ns 97214 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5578331ns 97217 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5578615ns 97222 1a110850 fd5ff06f jal x0, -44 +5578899ns 97227 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5579183ns 97232 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5579581ns 97239 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5579751ns 97242 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5580206ns 97250 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5580377ns 97253 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5580661ns 97258 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5580945ns 97263 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5581229ns 97268 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5581684ns 97276 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5581854ns 97279 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5582138ns 97284 1a110850 fd5ff06f jal x0, -44 +5582423ns 97289 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5582707ns 97294 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5583105ns 97301 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5583275ns 97304 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5583730ns 97312 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5583900ns 97315 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5584184ns 97320 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5584469ns 97325 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5584753ns 97330 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5585207ns 97338 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5585378ns 97341 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5585662ns 97346 1a110850 fd5ff06f jal x0, -44 +5585946ns 97351 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5586230ns 97356 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5586628ns 97363 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5586799ns 97366 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5587253ns 97374 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5587424ns 97377 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5587708ns 97382 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5587992ns 97387 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5588276ns 97392 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5588731ns 97400 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5588901ns 97403 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5589186ns 97408 1a110850 fd5ff06f jal x0, -44 +5589470ns 97413 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5589754ns 97418 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5590152ns 97425 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5590322ns 97428 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5590777ns 97436 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5590947ns 97439 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5591232ns 97444 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5591516ns 97449 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5591800ns 97454 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5592255ns 97462 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5592425ns 97465 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5592709ns 97470 1a110850 fd5ff06f jal x0, -44 +5592993ns 97475 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5593277ns 97480 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5593675ns 97487 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5593846ns 97490 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5594300ns 97498 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5594471ns 97501 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5594755ns 97506 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5595039ns 97511 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5595323ns 97516 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5595778ns 97524 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5595949ns 97527 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5596233ns 97532 1a110850 fd5ff06f jal x0, -44 +5596517ns 97537 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5596801ns 97542 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5597199ns 97549 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5597369ns 97552 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5597824ns 97560 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5597995ns 97563 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5598279ns 97568 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5598563ns 97573 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5598847ns 97578 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5599302ns 97586 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5599472ns 97589 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5599756ns 97594 1a110850 fd5ff06f jal x0, -44 +5600040ns 97599 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5600325ns 97604 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5600722ns 97611 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5600893ns 97614 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5601348ns 97622 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5601518ns 97625 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5601802ns 97630 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5602086ns 97635 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5602371ns 97640 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5602825ns 97648 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5602996ns 97651 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5603280ns 97656 1a110850 fd5ff06f jal x0, -44 +5603564ns 97661 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5603848ns 97666 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5604246ns 97673 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5604417ns 97676 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5604871ns 97684 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5605042ns 97687 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5605326ns 97692 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5605610ns 97697 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5605894ns 97702 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5606349ns 97710 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5606519ns 97713 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5606803ns 97718 1a110850 fd5ff06f jal x0, -44 +5607088ns 97723 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5607372ns 97728 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5607770ns 97735 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5607940ns 97738 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5608395ns 97746 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5608565ns 97749 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5608849ns 97754 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5609134ns 97759 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5609418ns 97764 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5609872ns 97772 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5610043ns 97775 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5610327ns 97780 1a110850 fd5ff06f jal x0, -44 +5610611ns 97785 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5610895ns 97790 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5611293ns 97797 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5611464ns 97800 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5611918ns 97808 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5612089ns 97811 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5612373ns 97816 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5612657ns 97821 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5612941ns 97826 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5613396ns 97834 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5613567ns 97837 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5613851ns 97842 1a110850 fd5ff06f jal x0, -44 +5614135ns 97847 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5614419ns 97852 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5614817ns 97859 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5614987ns 97862 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5615442ns 97870 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5615612ns 97873 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5615897ns 97878 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5616181ns 97883 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5616465ns 97888 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5616920ns 97896 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5617090ns 97899 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5617374ns 97904 1a110850 fd5ff06f jal x0, -44 +5617658ns 97909 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5617943ns 97914 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5618340ns 97921 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5618511ns 97924 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5618966ns 97932 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5619136ns 97935 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5619420ns 97940 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5619704ns 97945 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5619989ns 97950 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5620443ns 97958 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5620614ns 97961 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5620898ns 97966 1a110850 fd5ff06f jal x0, -44 +5621182ns 97971 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5621466ns 97976 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5621864ns 97983 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5622034ns 97986 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5622489ns 97994 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5622660ns 97997 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5622944ns 98002 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5623228ns 98007 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5623512ns 98012 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5623967ns 98020 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5624137ns 98023 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5624421ns 98028 1a110850 fd5ff06f jal x0, -44 +5624706ns 98033 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5624990ns 98038 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5625388ns 98045 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5625558ns 98048 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5626013ns 98056 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5626183ns 98059 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5626467ns 98064 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5626752ns 98069 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5627036ns 98074 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5627490ns 98082 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5627661ns 98085 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5627945ns 98090 1a110850 fd5ff06f jal x0, -44 +5628229ns 98095 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5628513ns 98100 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5628911ns 98107 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5629082ns 98110 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5629536ns 98118 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5629707ns 98121 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5629991ns 98126 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5630275ns 98131 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5630559ns 98136 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5631014ns 98144 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5631184ns 98147 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5631469ns 98152 1a110850 fd5ff06f jal x0, -44 +5631753ns 98157 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5632037ns 98162 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5632435ns 98169 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5632605ns 98172 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5633060ns 98180 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5633230ns 98183 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5633515ns 98188 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5633799ns 98193 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5634083ns 98198 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5634538ns 98206 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5634708ns 98209 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5634992ns 98214 1a110850 fd5ff06f jal x0, -44 +5635276ns 98219 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5635560ns 98224 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5635958ns 98231 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5636129ns 98234 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5636583ns 98242 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5636754ns 98245 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5637038ns 98250 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5637322ns 98255 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5637606ns 98260 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5638061ns 98268 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5638232ns 98271 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5638516ns 98276 1a110850 fd5ff06f jal x0, -44 +5638800ns 98281 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5639084ns 98286 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5639482ns 98293 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5639652ns 98296 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5640107ns 98304 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5640278ns 98307 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5640562ns 98312 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5640846ns 98317 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5641130ns 98322 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5641585ns 98330 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5641755ns 98333 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5642039ns 98338 1a110850 fd5ff06f jal x0, -44 +5642323ns 98343 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5642608ns 98348 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5643005ns 98355 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5643176ns 98358 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5643631ns 98366 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5643801ns 98369 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5644085ns 98374 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5644369ns 98379 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5644654ns 98384 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5645108ns 98392 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5645279ns 98395 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5645563ns 98400 1a110850 fd5ff06f jal x0, -44 +5645847ns 98405 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5646131ns 98410 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5646529ns 98417 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5646700ns 98420 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5647154ns 98428 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5647325ns 98431 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5647609ns 98436 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5647893ns 98441 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5648177ns 98446 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5648632ns 98454 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5648802ns 98457 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5649087ns 98462 1a110850 fd5ff06f jal x0, -44 +5649371ns 98467 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5649655ns 98472 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5650053ns 98479 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5650223ns 98482 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5650678ns 98490 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5650848ns 98493 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5651132ns 98498 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5651417ns 98503 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5651701ns 98508 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5652155ns 98516 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5652326ns 98519 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5652610ns 98524 1a110850 fd5ff06f jal x0, -44 +5652894ns 98529 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5653178ns 98534 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5653576ns 98541 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5653747ns 98544 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5654201ns 98552 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5654372ns 98555 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5654656ns 98560 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5654940ns 98565 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5655224ns 98570 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5655679ns 98578 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5655850ns 98581 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5656134ns 98586 1a110850 fd5ff06f jal x0, -44 +5656418ns 98591 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5656702ns 98596 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5657100ns 98603 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5657270ns 98606 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5657725ns 98614 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5657895ns 98617 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5658180ns 98622 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5658464ns 98627 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5658748ns 98632 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5659203ns 98640 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5659373ns 98643 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5659657ns 98648 1a110850 fd5ff06f jal x0, -44 +5659941ns 98653 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5660226ns 98658 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5660623ns 98665 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5660794ns 98668 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5661249ns 98676 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5661419ns 98679 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5661703ns 98684 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5661987ns 98689 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5662272ns 98694 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5662726ns 98702 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5662897ns 98705 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5663181ns 98710 1a110850 fd5ff06f jal x0, -44 +5663465ns 98715 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5663749ns 98720 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5664147ns 98727 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5664317ns 98730 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5664772ns 98738 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5664943ns 98741 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5665227ns 98746 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5665511ns 98751 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5665795ns 98756 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5666250ns 98764 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5666420ns 98767 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5666704ns 98772 1a110850 fd5ff06f jal x0, -44 +5666989ns 98777 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5667273ns 98782 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5667671ns 98789 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5667841ns 98792 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5668296ns 98800 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5668466ns 98803 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5668750ns 98808 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5669035ns 98813 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5669319ns 98818 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5669773ns 98826 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5669944ns 98829 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5670228ns 98834 1a110850 fd5ff06f jal x0, -44 +5670512ns 98839 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5670796ns 98844 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5671194ns 98851 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5671365ns 98854 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5671819ns 98862 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5671990ns 98865 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5672274ns 98870 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5672558ns 98875 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5672842ns 98880 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5673297ns 98888 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5673467ns 98891 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5673752ns 98896 1a110850 fd5ff06f jal x0, -44 +5674036ns 98901 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5674320ns 98906 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5674718ns 98913 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5674888ns 98916 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5675343ns 98924 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5675513ns 98927 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5675798ns 98932 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5676082ns 98937 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5676366ns 98942 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5676821ns 98950 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5676991ns 98953 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5677275ns 98958 1a110850 fd5ff06f jal x0, -44 +5677559ns 98963 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5677843ns 98968 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5678241ns 98975 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5678412ns 98978 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5678866ns 98986 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5679037ns 98989 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5679321ns 98994 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5679605ns 98999 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5679889ns 99004 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5680344ns 99012 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5680515ns 99015 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5680799ns 99020 1a110850 fd5ff06f jal x0, -44 +5681083ns 99025 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5681367ns 99030 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5681765ns 99037 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5681935ns 99040 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5682390ns 99048 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5682561ns 99051 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5682845ns 99056 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5683129ns 99061 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5683413ns 99066 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5683868ns 99074 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5684038ns 99077 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5684322ns 99082 1a110850 fd5ff06f jal x0, -44 +5684607ns 99087 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5684891ns 99092 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5685288ns 99099 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5685459ns 99102 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5685914ns 99110 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5686084ns 99113 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5686368ns 99118 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5686652ns 99123 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5686937ns 99128 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5687391ns 99136 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5687562ns 99139 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5687846ns 99144 1a110850 fd5ff06f jal x0, -44 +5688130ns 99149 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5688414ns 99154 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5688812ns 99161 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5688983ns 99164 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5689437ns 99172 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5689608ns 99175 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5689892ns 99180 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5690176ns 99185 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5690460ns 99190 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5690915ns 99198 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5691085ns 99201 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5691370ns 99206 1a110850 fd5ff06f jal x0, -44 +5691654ns 99211 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5691938ns 99216 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5692336ns 99223 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5692506ns 99226 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5692961ns 99234 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5693131ns 99237 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5693415ns 99242 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5693700ns 99247 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5693984ns 99252 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5694438ns 99260 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5694609ns 99263 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5694893ns 99268 1a110850 fd5ff06f jal x0, -44 +5695177ns 99273 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5695461ns 99278 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5695859ns 99285 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5696030ns 99288 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5696484ns 99296 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5696655ns 99299 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5696939ns 99304 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5697223ns 99309 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5697507ns 99314 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5697962ns 99322 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5698133ns 99325 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5698417ns 99330 1a110850 fd5ff06f jal x0, -44 +5698701ns 99335 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5698985ns 99340 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5699383ns 99347 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5699553ns 99350 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5700008ns 99358 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5700178ns 99361 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5700463ns 99366 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5700747ns 99371 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5701031ns 99376 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5701486ns 99384 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5701656ns 99387 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5701940ns 99392 1a110850 fd5ff06f jal x0, -44 +5702224ns 99397 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5702509ns 99402 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5702906ns 99409 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5703077ns 99412 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5703532ns 99420 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5703702ns 99423 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5703986ns 99428 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5704270ns 99433 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5704555ns 99438 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5705009ns 99446 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5705180ns 99449 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5705464ns 99454 1a110850 fd5ff06f jal x0, -44 +5705748ns 99459 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5706032ns 99464 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5706430ns 99471 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5706600ns 99474 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5707055ns 99482 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5707226ns 99485 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5707510ns 99490 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5707794ns 99495 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5708078ns 99500 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5708533ns 99508 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5708703ns 99511 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5708987ns 99516 1a110850 fd5ff06f jal x0, -44 +5709272ns 99521 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5709556ns 99526 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5709954ns 99533 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5710124ns 99536 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5710579ns 99544 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5710749ns 99547 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5711033ns 99552 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5711318ns 99557 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5711602ns 99562 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5712056ns 99570 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5712227ns 99573 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5712511ns 99578 1a110850 fd5ff06f jal x0, -44 +5712795ns 99583 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5713079ns 99588 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5713477ns 99595 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5713648ns 99598 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5714102ns 99606 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5714273ns 99609 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5714557ns 99614 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5714841ns 99619 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5715125ns 99624 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5715580ns 99632 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5715750ns 99635 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5716035ns 99640 1a110850 fd5ff06f jal x0, -44 +5716319ns 99645 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5716603ns 99650 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5717001ns 99657 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5717171ns 99660 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5717626ns 99668 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5717796ns 99671 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5718081ns 99676 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5718365ns 99681 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5718649ns 99686 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5719104ns 99694 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5719274ns 99697 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5719558ns 99702 1a110850 fd5ff06f jal x0, -44 +5719842ns 99707 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5720127ns 99712 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5720524ns 99719 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5720695ns 99722 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5721149ns 99730 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5721320ns 99733 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5721604ns 99738 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5721888ns 99743 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5722172ns 99748 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5722627ns 99756 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5722798ns 99759 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5723082ns 99764 1a110850 fd5ff06f jal x0, -44 +5723366ns 99769 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5723650ns 99774 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5724048ns 99781 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5724218ns 99784 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5724673ns 99792 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5724844ns 99795 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5725128ns 99800 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5725412ns 99805 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5725696ns 99810 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5726151ns 99818 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5726321ns 99821 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5726605ns 99826 1a110850 fd5ff06f jal x0, -44 +5726890ns 99831 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5727174ns 99836 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5727571ns 99843 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5727742ns 99846 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5728197ns 99854 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5728367ns 99857 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5728651ns 99862 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5728935ns 99867 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5729220ns 99872 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5729674ns 99880 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5729845ns 99883 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5730129ns 99888 1a110850 fd5ff06f jal x0, -44 +5730413ns 99893 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5730697ns 99898 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5731095ns 99905 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5731266ns 99908 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5731720ns 99916 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5731891ns 99919 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5732175ns 99924 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5732459ns 99929 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5732743ns 99934 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5733198ns 99942 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5733368ns 99945 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5733653ns 99950 1a110850 fd5ff06f jal x0, -44 +5733937ns 99955 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5734221ns 99960 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5734619ns 99967 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5734789ns 99970 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5735244ns 99978 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5735414ns 99981 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5735698ns 99986 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5735983ns 99991 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5736267ns 99996 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5736721ns 100004 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5736892ns 100007 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5737176ns 100012 1a110850 fd5ff06f jal x0, -44 +5737460ns 100017 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5737744ns 100022 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5738142ns 100029 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5738313ns 100032 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5738767ns 100040 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5738938ns 100043 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5739222ns 100048 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5739506ns 100053 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5739790ns 100058 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5740245ns 100066 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5740416ns 100069 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5740700ns 100074 1a110850 fd5ff06f jal x0, -44 +5740984ns 100079 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5741268ns 100084 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5741666ns 100091 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5741836ns 100094 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5742291ns 100102 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5742461ns 100105 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5742746ns 100110 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5743030ns 100115 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5743314ns 100120 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5743769ns 100128 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5743939ns 100131 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5744223ns 100136 1a110850 fd5ff06f jal x0, -44 +5744507ns 100141 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5744792ns 100146 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5745189ns 100153 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5745360ns 100156 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5745815ns 100164 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5745985ns 100167 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5746269ns 100172 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5746553ns 100177 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5746838ns 100182 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5747292ns 100190 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5747463ns 100193 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5747747ns 100198 1a110850 fd5ff06f jal x0, -44 +5748031ns 100203 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5748315ns 100208 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5748713ns 100215 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5748883ns 100218 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5749338ns 100226 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5749509ns 100229 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5749793ns 100234 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5750077ns 100239 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5750361ns 100244 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5750816ns 100252 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5750986ns 100255 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5751270ns 100260 1a110850 fd5ff06f jal x0, -44 +5751555ns 100265 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5751839ns 100270 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5752237ns 100277 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5752407ns 100280 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5752862ns 100288 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5753032ns 100291 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5753316ns 100296 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5753601ns 100301 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5753885ns 100306 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5754339ns 100314 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5754510ns 100317 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5754794ns 100322 1a110850 fd5ff06f jal x0, -44 +5755078ns 100327 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5755362ns 100332 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5755760ns 100339 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5755931ns 100342 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5756385ns 100350 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5756556ns 100353 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5756840ns 100358 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5757124ns 100363 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5757408ns 100368 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5757863ns 100376 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5758033ns 100379 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5758318ns 100384 1a110850 fd5ff06f jal x0, -44 +5758602ns 100389 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5758886ns 100394 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5759284ns 100401 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5759454ns 100404 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5759909ns 100412 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5760079ns 100415 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5760364ns 100420 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5760648ns 100425 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5760932ns 100430 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5761387ns 100438 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5761557ns 100441 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5761841ns 100446 1a110850 fd5ff06f jal x0, -44 +5762125ns 100451 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5762410ns 100456 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5762807ns 100463 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5762978ns 100466 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5763432ns 100474 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5763603ns 100477 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5763887ns 100482 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5764171ns 100487 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5764455ns 100492 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5764910ns 100500 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5765081ns 100503 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5765365ns 100508 1a110850 fd5ff06f jal x0, -44 +5765649ns 100513 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5765933ns 100518 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5766331ns 100525 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5766501ns 100528 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5766956ns 100536 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5767127ns 100539 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5767411ns 100544 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5767695ns 100549 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5767979ns 100554 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5768434ns 100562 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5768604ns 100565 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5768888ns 100570 1a110850 fd5ff06f jal x0, -44 +5769173ns 100575 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5769457ns 100580 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5769855ns 100587 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5770025ns 100590 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5770480ns 100598 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5770650ns 100601 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5770934ns 100606 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5771218ns 100611 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5771503ns 100616 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5771957ns 100624 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5772128ns 100627 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5772412ns 100632 1a110850 fd5ff06f jal x0, -44 +5772696ns 100637 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5772980ns 100642 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5773378ns 100649 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5773549ns 100652 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5774003ns 100660 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5774174ns 100663 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5774458ns 100668 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5774742ns 100673 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5775026ns 100678 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5775481ns 100686 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5775651ns 100689 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5775936ns 100694 1a110850 fd5ff06f jal x0, -44 +5776220ns 100699 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5776504ns 100704 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5776902ns 100711 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5777072ns 100714 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5777527ns 100722 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5777697ns 100725 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5777981ns 100730 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5778266ns 100735 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5778550ns 100740 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5779004ns 100748 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5779175ns 100751 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5779459ns 100756 1a110850 fd5ff06f jal x0, -44 +5779743ns 100761 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5780027ns 100766 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5780425ns 100773 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5780596ns 100776 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5781050ns 100784 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5781221ns 100787 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5781505ns 100792 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5781789ns 100797 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5782073ns 100802 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5782528ns 100810 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5782699ns 100813 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5782983ns 100818 1a110850 fd5ff06f jal x0, -44 +5783267ns 100823 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5783551ns 100828 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5783949ns 100835 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5784119ns 100838 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5784574ns 100846 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5784744ns 100849 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5785029ns 100854 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5785313ns 100859 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5785597ns 100864 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5786052ns 100872 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5786222ns 100875 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5786506ns 100880 1a110850 fd5ff06f jal x0, -44 +5786790ns 100885 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5787075ns 100890 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5787472ns 100897 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5787643ns 100900 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5788098ns 100908 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5788268ns 100911 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5788552ns 100916 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5788836ns 100921 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5789121ns 100926 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5789575ns 100934 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5789746ns 100937 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5790030ns 100942 1a110850 fd5ff06f jal x0, -44 +5790314ns 100947 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5790598ns 100952 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5790996ns 100959 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5791167ns 100962 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5791621ns 100970 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5791792ns 100973 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5792076ns 100978 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5792360ns 100983 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5792644ns 100988 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5793099ns 100996 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5793269ns 100999 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5793553ns 101004 1a110850 fd5ff06f jal x0, -44 +5793838ns 101009 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5794122ns 101014 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5794520ns 101021 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5794690ns 101024 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5795145ns 101032 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5795315ns 101035 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5795599ns 101040 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5795884ns 101045 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5796168ns 101050 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5796622ns 101058 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5796793ns 101061 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5797077ns 101066 1a110850 fd5ff06f jal x0, -44 +5797361ns 101071 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5797645ns 101076 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5798043ns 101083 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5798214ns 101086 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5798668ns 101094 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5798839ns 101097 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5799123ns 101102 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5799407ns 101107 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5799691ns 101112 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5800146ns 101120 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5800316ns 101123 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5800601ns 101128 1a110850 fd5ff06f jal x0, -44 +5800885ns 101133 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5801169ns 101138 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5801567ns 101145 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5801737ns 101148 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5802192ns 101156 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5802362ns 101159 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5802647ns 101164 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5802931ns 101169 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5803215ns 101174 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5803670ns 101182 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5803840ns 101185 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5804124ns 101190 1a110850 fd5ff06f jal x0, -44 +5804408ns 101195 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5804693ns 101200 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5805090ns 101207 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5805261ns 101210 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5805715ns 101218 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5805886ns 101221 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5806170ns 101226 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5806454ns 101231 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5806738ns 101236 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5807193ns 101244 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5807364ns 101247 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5807648ns 101252 1a110850 fd5ff06f jal x0, -44 +5807932ns 101257 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5808216ns 101262 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5808614ns 101269 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5808784ns 101272 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5809239ns 101280 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5809410ns 101283 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5809694ns 101288 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5809978ns 101293 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5810262ns 101298 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5810717ns 101306 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5810887ns 101309 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5811171ns 101314 1a110850 fd5ff06f jal x0, -44 +5811456ns 101319 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5811740ns 101324 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5812138ns 101331 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5812308ns 101334 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5812763ns 101342 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5812933ns 101345 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5813217ns 101350 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5813501ns 101355 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5813786ns 101360 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5814240ns 101368 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5814411ns 101371 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5814695ns 101376 1a110850 fd5ff06f jal x0, -44 +5814979ns 101381 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5815263ns 101386 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5815661ns 101393 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5815832ns 101396 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5816286ns 101404 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5816457ns 101407 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5816741ns 101412 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5817025ns 101417 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5817309ns 101422 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5817764ns 101430 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5817934ns 101433 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5818219ns 101438 1a110850 fd5ff06f jal x0, -44 +5818503ns 101443 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5818787ns 101448 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5819185ns 101455 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5819355ns 101458 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5819810ns 101466 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5819980ns 101469 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5820264ns 101474 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5820549ns 101479 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5820833ns 101484 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5821287ns 101492 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5821458ns 101495 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5821742ns 101500 1a110850 fd5ff06f jal x0, -44 +5822026ns 101505 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5822310ns 101510 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5822708ns 101517 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5822879ns 101520 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5823333ns 101528 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5823504ns 101531 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5823788ns 101536 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5824072ns 101541 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5824356ns 101546 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5824811ns 101554 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5824982ns 101557 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5825266ns 101562 1a110850 fd5ff06f jal x0, -44 +5825550ns 101567 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5825834ns 101572 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5826232ns 101579 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5826402ns 101582 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5826857ns 101590 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5827027ns 101593 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5827312ns 101598 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5827596ns 101603 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5827880ns 101608 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5828335ns 101616 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5828505ns 101619 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5828789ns 101624 1a110850 fd5ff06f jal x0, -44 +5829073ns 101629 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5829358ns 101634 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5829755ns 101641 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5829926ns 101644 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5830381ns 101652 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5830551ns 101655 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5830835ns 101660 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5831119ns 101665 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5831404ns 101670 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5831858ns 101678 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5832029ns 101681 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5832313ns 101686 1a110850 fd5ff06f jal x0, -44 +5832597ns 101691 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5832881ns 101696 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5833279ns 101703 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5833450ns 101706 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5833904ns 101714 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5834075ns 101717 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5834359ns 101722 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5834643ns 101727 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5834927ns 101732 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5835382ns 101740 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5835552ns 101743 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5835836ns 101748 1a110850 fd5ff06f jal x0, -44 +5836121ns 101753 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5836405ns 101758 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5836803ns 101765 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5836973ns 101768 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5837428ns 101776 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5837598ns 101779 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5837882ns 101784 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5838167ns 101789 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5838451ns 101794 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5838905ns 101802 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5839076ns 101805 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5839360ns 101810 1a110850 fd5ff06f jal x0, -44 +5839644ns 101815 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5839928ns 101820 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5840326ns 101827 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5840497ns 101830 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5840951ns 101838 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5841122ns 101841 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5841406ns 101846 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5841690ns 101851 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5841974ns 101856 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5842429ns 101864 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5842599ns 101867 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5842884ns 101872 1a110850 fd5ff06f jal x0, -44 +5843168ns 101877 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5843452ns 101882 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5843850ns 101889 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5844020ns 101892 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5844475ns 101900 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5844645ns 101903 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5844930ns 101908 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5845214ns 101913 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5845498ns 101918 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5845953ns 101926 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5846123ns 101929 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5846407ns 101934 1a110850 fd5ff06f jal x0, -44 +5846691ns 101939 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5846976ns 101944 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5847373ns 101951 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5847544ns 101954 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5847999ns 101962 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5848169ns 101965 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5848453ns 101970 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5848737ns 101975 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5849021ns 101980 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5849476ns 101988 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5849647ns 101991 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5849931ns 101996 1a110850 fd5ff06f jal x0, -44 +5850215ns 102001 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5850499ns 102006 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5850897ns 102013 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5851067ns 102016 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5851522ns 102024 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5851693ns 102027 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5851977ns 102032 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5852261ns 102037 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5852545ns 102042 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5853000ns 102050 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5853170ns 102053 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5853454ns 102058 1a110850 fd5ff06f jal x0, -44 +5853739ns 102063 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5854023ns 102068 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5854421ns 102075 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5854591ns 102078 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5855046ns 102086 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5855216ns 102089 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5855500ns 102094 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5855784ns 102099 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5856069ns 102104 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5856523ns 102112 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5856694ns 102115 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5856978ns 102120 1a110850 fd5ff06f jal x0, -44 +5857262ns 102125 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5857546ns 102130 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5857944ns 102137 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5858115ns 102140 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5858569ns 102148 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5858740ns 102151 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5859024ns 102156 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5859308ns 102161 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5859592ns 102166 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5860047ns 102174 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5860217ns 102177 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5860502ns 102182 1a110850 fd5ff06f jal x0, -44 +5860786ns 102187 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5861070ns 102192 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5861468ns 102199 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5861638ns 102202 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5862093ns 102210 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5862263ns 102213 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5862547ns 102218 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5862832ns 102223 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5863116ns 102228 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5863570ns 102236 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5863741ns 102239 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5864025ns 102244 1a110850 fd5ff06f jal x0, -44 +5864309ns 102249 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5864593ns 102254 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5864991ns 102261 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5865162ns 102264 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5865616ns 102272 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5865787ns 102275 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5866071ns 102280 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5866355ns 102285 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5866639ns 102290 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5867094ns 102298 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5867265ns 102301 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5867549ns 102306 1a110850 fd5ff06f jal x0, -44 +5867833ns 102311 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5868117ns 102316 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5868515ns 102323 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5868685ns 102326 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5869140ns 102334 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5869311ns 102337 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5869595ns 102342 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5869879ns 102347 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5870163ns 102352 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5870618ns 102360 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5870788ns 102363 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5871072ns 102368 1a110850 fd5ff06f jal x0, -44 +5871356ns 102373 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5871641ns 102378 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5872038ns 102385 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5872209ns 102388 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5872664ns 102396 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5872834ns 102399 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5873118ns 102404 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5873402ns 102409 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5873687ns 102414 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5874141ns 102422 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5874312ns 102425 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5874596ns 102430 1a110850 fd5ff06f jal x0, -44 +5874880ns 102435 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5875164ns 102440 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5875562ns 102447 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5875733ns 102450 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5876187ns 102458 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5876358ns 102461 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5876642ns 102466 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5876926ns 102471 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5877210ns 102476 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5877665ns 102484 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5877835ns 102487 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5878119ns 102492 1a110850 fd5ff06f jal x0, -44 +5878404ns 102497 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5878688ns 102502 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5879086ns 102509 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5879256ns 102512 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5879711ns 102520 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5879881ns 102523 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5880165ns 102528 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5880450ns 102533 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5880734ns 102538 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5881188ns 102546 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5881359ns 102549 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5881643ns 102554 1a110850 fd5ff06f jal x0, -44 +5881927ns 102559 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5882211ns 102564 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5882609ns 102571 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5882780ns 102574 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5883234ns 102582 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5883405ns 102585 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5883689ns 102590 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5883973ns 102595 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5884257ns 102600 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5884712ns 102608 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5884882ns 102611 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5885167ns 102616 1a110850 fd5ff06f jal x0, -44 +5885451ns 102621 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5885735ns 102626 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5886133ns 102633 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5886303ns 102636 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5886758ns 102644 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5886928ns 102647 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5887213ns 102652 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5887497ns 102657 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5887781ns 102662 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5888236ns 102670 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5888406ns 102673 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5888690ns 102678 1a110850 fd5ff06f jal x0, -44 +5888974ns 102683 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5889259ns 102688 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5889656ns 102695 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5889827ns 102698 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5890282ns 102706 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5890452ns 102709 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5890736ns 102714 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5891020ns 102719 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5891304ns 102724 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5891759ns 102732 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5891930ns 102735 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5892214ns 102740 1a110850 fd5ff06f jal x0, -44 +5892498ns 102745 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5892782ns 102750 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5893180ns 102757 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5893350ns 102760 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5893805ns 102768 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5893976ns 102771 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5894260ns 102776 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5894544ns 102781 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5894828ns 102786 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5895283ns 102794 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5895453ns 102797 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5895737ns 102802 1a110850 fd5ff06f jal x0, -44 +5896022ns 102807 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5896306ns 102812 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5896704ns 102819 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5896874ns 102822 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5897329ns 102830 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5897499ns 102833 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5897783ns 102838 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5898067ns 102843 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5898352ns 102848 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5898806ns 102856 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5898977ns 102859 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5899261ns 102864 1a110850 fd5ff06f jal x0, -44 +5899545ns 102869 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5899829ns 102874 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5900227ns 102881 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5900398ns 102884 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5900852ns 102892 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5901023ns 102895 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5901307ns 102900 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5901591ns 102905 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5901875ns 102910 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5902330ns 102918 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5902500ns 102921 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5902785ns 102926 1a110850 fd5ff06f jal x0, -44 +5903069ns 102931 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5903353ns 102936 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5903751ns 102943 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5903921ns 102946 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5904376ns 102954 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5904546ns 102957 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5904831ns 102962 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5905115ns 102967 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5905399ns 102972 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5905853ns 102980 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5906024ns 102983 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5906308ns 102988 1a110850 fd5ff06f jal x0, -44 +5906592ns 102993 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5906876ns 102998 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5907274ns 103005 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5907445ns 103008 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5907899ns 103016 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5908070ns 103019 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5908354ns 103024 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5908638ns 103029 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5908922ns 103034 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5909377ns 103042 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5909548ns 103045 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5909832ns 103050 1a110850 fd5ff06f jal x0, -44 +5910116ns 103055 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5910400ns 103060 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5910798ns 103067 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5910968ns 103070 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5911423ns 103078 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5911594ns 103081 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5911878ns 103086 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5912162ns 103091 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5912446ns 103096 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5912901ns 103104 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5913071ns 103107 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5913355ns 103112 1a110850 fd5ff06f jal x0, -44 +5913639ns 103117 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5913924ns 103122 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5914321ns 103129 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5914492ns 103132 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5914947ns 103140 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5915117ns 103143 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5915401ns 103148 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5915685ns 103153 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5915970ns 103158 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5916424ns 103166 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5916595ns 103169 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5916879ns 103174 1a110850 fd5ff06f jal x0, -44 +5917163ns 103179 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5917447ns 103184 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5917845ns 103191 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5918016ns 103194 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5918470ns 103202 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5918641ns 103205 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5918925ns 103210 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5919209ns 103215 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5919493ns 103220 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5919948ns 103228 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5920118ns 103231 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5920402ns 103236 1a110850 fd5ff06f jal x0, -44 +5920687ns 103241 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5920971ns 103246 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5921369ns 103253 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5921539ns 103256 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5921994ns 103264 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5922164ns 103267 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5922448ns 103272 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5922733ns 103277 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5923017ns 103282 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5923471ns 103290 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5923642ns 103293 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5923926ns 103298 1a110850 fd5ff06f jal x0, -44 +5924210ns 103303 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5924494ns 103308 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5924892ns 103315 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5925063ns 103318 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5925517ns 103326 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5925688ns 103329 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5925972ns 103334 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5926256ns 103339 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5926540ns 103344 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5926995ns 103352 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5927165ns 103355 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5927450ns 103360 1a110850 fd5ff06f jal x0, -44 +5927734ns 103365 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5928018ns 103370 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5928416ns 103377 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5928586ns 103380 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5929041ns 103388 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5929211ns 103391 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5929496ns 103396 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5929780ns 103401 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5930064ns 103406 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5930519ns 103414 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5930689ns 103417 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5930973ns 103422 1a110850 fd5ff06f jal x0, -44 +5931257ns 103427 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5931542ns 103432 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5931939ns 103439 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5932110ns 103442 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5932565ns 103450 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5932735ns 103453 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5933019ns 103458 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5933303ns 103463 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5933587ns 103468 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5934042ns 103476 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5934213ns 103479 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5934497ns 103484 1a110850 fd5ff06f jal x0, -44 +5934781ns 103489 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5935065ns 103494 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5935463ns 103501 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5935633ns 103504 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5936088ns 103512 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5936259ns 103515 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5936543ns 103520 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5936827ns 103525 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5937111ns 103530 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5937566ns 103538 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5937736ns 103541 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5938020ns 103546 1a110850 fd5ff06f jal x0, -44 +5938305ns 103551 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5938589ns 103556 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5938987ns 103563 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5939157ns 103566 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5939612ns 103574 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5939782ns 103577 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5940066ns 103582 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5940351ns 103587 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5940635ns 103592 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5941089ns 103600 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5941260ns 103603 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5941544ns 103608 1a110850 fd5ff06f jal x0, -44 +5941828ns 103613 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5942112ns 103618 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5942510ns 103625 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5942681ns 103628 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5943135ns 103636 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5943306ns 103639 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5943590ns 103644 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5943874ns 103649 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5944158ns 103654 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5944613ns 103662 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5944783ns 103665 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5945068ns 103670 1a110850 fd5ff06f jal x0, -44 +5945352ns 103675 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5945636ns 103680 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5946034ns 103687 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5946204ns 103690 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5946659ns 103698 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5946829ns 103701 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5947114ns 103706 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5947398ns 103711 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5947682ns 103716 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5948136ns 103724 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5948307ns 103727 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5948591ns 103732 1a110850 fd5ff06f jal x0, -44 +5948875ns 103737 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5949159ns 103742 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5949557ns 103749 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5949728ns 103752 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5950182ns 103760 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5950353ns 103763 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5950637ns 103768 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5950921ns 103773 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5951205ns 103778 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5951660ns 103786 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5951831ns 103789 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5952115ns 103794 1a110850 fd5ff06f jal x0, -44 +5952399ns 103799 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5952683ns 103804 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5953081ns 103811 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5953251ns 103814 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5953706ns 103822 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5953877ns 103825 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5954161ns 103830 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5954445ns 103835 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5954729ns 103840 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5955184ns 103848 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5955354ns 103851 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5955638ns 103856 1a110850 fd5ff06f jal x0, -44 +5955922ns 103861 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5956207ns 103866 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5956604ns 103873 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5956775ns 103876 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5957230ns 103884 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5957400ns 103887 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5957684ns 103892 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5957968ns 103897 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5958253ns 103902 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5958707ns 103910 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5958878ns 103913 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5959162ns 103918 1a110850 fd5ff06f jal x0, -44 +5959446ns 103923 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5959730ns 103928 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5960128ns 103935 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5960299ns 103938 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5960753ns 103946 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5960924ns 103949 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5961208ns 103954 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5961492ns 103959 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5961776ns 103964 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5962231ns 103972 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5962401ns 103975 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5962685ns 103980 1a110850 fd5ff06f jal x0, -44 +5962970ns 103985 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5963254ns 103990 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5963652ns 103997 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5963822ns 104000 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5964277ns 104008 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5964447ns 104011 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5964731ns 104016 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5965016ns 104021 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5965300ns 104026 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5965754ns 104034 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5965925ns 104037 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5966209ns 104042 1a110850 fd5ff06f jal x0, -44 +5966493ns 104047 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5966777ns 104052 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5967175ns 104059 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5967346ns 104062 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5967800ns 104070 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5967971ns 104073 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5968255ns 104078 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5968539ns 104083 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5968823ns 104088 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5969278ns 104096 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5969448ns 104099 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5969733ns 104104 1a110850 fd5ff06f jal x0, -44 +5970017ns 104109 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5970301ns 104114 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5970699ns 104121 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5970869ns 104124 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5971324ns 104132 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5971494ns 104135 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5971779ns 104140 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5972063ns 104145 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5972347ns 104150 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5972802ns 104158 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5972972ns 104161 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5973256ns 104166 1a110850 fd5ff06f jal x0, -44 +5973540ns 104171 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5973825ns 104176 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5974222ns 104183 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5974393ns 104186 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5974848ns 104194 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5975018ns 104197 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5975302ns 104202 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5975586ns 104207 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5975871ns 104212 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5976325ns 104220 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5976496ns 104223 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5976780ns 104228 1a110850 fd5ff06f jal x0, -44 +5977064ns 104233 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5977348ns 104238 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5977746ns 104245 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5977916ns 104248 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5978371ns 104256 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5978542ns 104259 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5978826ns 104264 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5979110ns 104269 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5979394ns 104274 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5979849ns 104282 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5980019ns 104285 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5980303ns 104290 1a110850 fd5ff06f jal x0, -44 +5980588ns 104295 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5980872ns 104300 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5981270ns 104307 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5981440ns 104310 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5981895ns 104318 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5982065ns 104321 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5982349ns 104326 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5982634ns 104331 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5982918ns 104336 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5983372ns 104344 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5983543ns 104347 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5983827ns 104352 1a110850 fd5ff06f jal x0, -44 +5984111ns 104357 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5984395ns 104362 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5984793ns 104369 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5984964ns 104372 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5985418ns 104380 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5985589ns 104383 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5985873ns 104388 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5986157ns 104393 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5986441ns 104398 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5986896ns 104406 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5987066ns 104409 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5987351ns 104414 1a110850 fd5ff06f jal x0, -44 +5987635ns 104419 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5987919ns 104424 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5988317ns 104431 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5988487ns 104434 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5988942ns 104442 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5989112ns 104445 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5989397ns 104450 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5989681ns 104455 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5989965ns 104460 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5990419ns 104468 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5990590ns 104471 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5990874ns 104476 1a110850 fd5ff06f jal x0, -44 +5991158ns 104481 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5991442ns 104486 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5991840ns 104493 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5992011ns 104496 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5992465ns 104504 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5992636ns 104507 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5992920ns 104512 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5993204ns 104517 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5993488ns 104522 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5993943ns 104530 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5994114ns 104533 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5994398ns 104538 1a110850 fd5ff06f jal x0, -44 +5994682ns 104543 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5994966ns 104548 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5995364ns 104555 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5995534ns 104558 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5995989ns 104566 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5996160ns 104569 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5996444ns 104574 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5996728ns 104579 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5997012ns 104584 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5997467ns 104592 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +5997637ns 104595 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +5997921ns 104600 1a110850 fd5ff06f jal x0, -44 +5998205ns 104605 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +5998490ns 104610 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +5998887ns 104617 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +5999058ns 104620 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +5999513ns 104628 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +5999683ns 104631 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +5999967ns 104636 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6000251ns 104641 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6000536ns 104646 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6000990ns 104654 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6001161ns 104657 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6001445ns 104662 1a110850 fd5ff06f jal x0, -44 +6001729ns 104667 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6002013ns 104672 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6002411ns 104679 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6002582ns 104682 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6003036ns 104690 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6003207ns 104693 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6003491ns 104698 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6003775ns 104703 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6004059ns 104708 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6004514ns 104716 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6004684ns 104719 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6004968ns 104724 1a110850 fd5ff06f jal x0, -44 +6005253ns 104729 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6005537ns 104734 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6005935ns 104741 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6006105ns 104744 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6006560ns 104752 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6006730ns 104755 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6007014ns 104760 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6007299ns 104765 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6007583ns 104770 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6008037ns 104778 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6008208ns 104781 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6008492ns 104786 1a110850 fd5ff06f jal x0, -44 +6008776ns 104791 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6009060ns 104796 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6009458ns 104803 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6009629ns 104806 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6010083ns 104814 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6010254ns 104817 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6010538ns 104822 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6010822ns 104827 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6011106ns 104832 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6011561ns 104840 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6011731ns 104843 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6012016ns 104848 1a110850 fd5ff06f jal x0, -44 +6012300ns 104853 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6012584ns 104858 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6012982ns 104865 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6013152ns 104868 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6013607ns 104876 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6013777ns 104879 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6014062ns 104884 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6014346ns 104889 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6014630ns 104894 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6015085ns 104902 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6015255ns 104905 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6015539ns 104910 1a110850 fd5ff06f jal x0, -44 +6015823ns 104915 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6016108ns 104920 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6016505ns 104927 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6016676ns 104930 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6017131ns 104938 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6017301ns 104941 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6017585ns 104946 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6017869ns 104951 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6018154ns 104956 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6018608ns 104964 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6018779ns 104967 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6019063ns 104972 1a110850 fd5ff06f jal x0, -44 +6019347ns 104977 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6019631ns 104982 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6020029ns 104989 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6020199ns 104992 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6020654ns 105000 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6020825ns 105003 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6021109ns 105008 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6021393ns 105013 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6021677ns 105018 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6022132ns 105026 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6022302ns 105029 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6022586ns 105034 1a110850 fd5ff06f jal x0, -44 +6022871ns 105039 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6023155ns 105044 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6023553ns 105051 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6023723ns 105054 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6024178ns 105062 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6024348ns 105065 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6024632ns 105070 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6024917ns 105075 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6025201ns 105080 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6025655ns 105088 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6025826ns 105091 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6026110ns 105096 1a110850 fd5ff06f jal x0, -44 +6026394ns 105101 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6026678ns 105106 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6027076ns 105113 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6027247ns 105116 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6027701ns 105124 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6027872ns 105127 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6028156ns 105132 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6028440ns 105137 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6028724ns 105142 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6029179ns 105150 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6029349ns 105153 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6029634ns 105158 1a110850 fd5ff06f jal x0, -44 +6029918ns 105163 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6030202ns 105168 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6030600ns 105175 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6030770ns 105178 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6031225ns 105186 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6031395ns 105189 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6031680ns 105194 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6031964ns 105199 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6032248ns 105204 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6032703ns 105212 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6032873ns 105215 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6033157ns 105220 1a110850 fd5ff06f jal x0, -44 +6033441ns 105225 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6033725ns 105230 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6034123ns 105237 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6034294ns 105240 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6034748ns 105248 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6034919ns 105251 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6035203ns 105256 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6035487ns 105261 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6035771ns 105266 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6036226ns 105274 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6036397ns 105277 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6036681ns 105282 1a110850 fd5ff06f jal x0, -44 +6036965ns 105287 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6037249ns 105292 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6037647ns 105299 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6037817ns 105302 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6038272ns 105310 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6038443ns 105313 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6038727ns 105318 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6039011ns 105323 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6039295ns 105328 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6039750ns 105336 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6039920ns 105339 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6040204ns 105344 1a110850 fd5ff06f jal x0, -44 +6040488ns 105349 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6040773ns 105354 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6041170ns 105361 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6041341ns 105364 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6041796ns 105372 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6041966ns 105375 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6042250ns 105380 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6042534ns 105385 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6042819ns 105390 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6043273ns 105398 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6043444ns 105401 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6043728ns 105406 1a110850 fd5ff06f jal x0, -44 +6044012ns 105411 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6044296ns 105416 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6044694ns 105423 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6044865ns 105426 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6045319ns 105434 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6045490ns 105437 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6045774ns 105442 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6046058ns 105447 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6046342ns 105452 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6046797ns 105460 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6046967ns 105463 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6047251ns 105468 1a110850 fd5ff06f jal x0, -44 +6047536ns 105473 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6047820ns 105478 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6048218ns 105485 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6048388ns 105488 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6048843ns 105496 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6049013ns 105499 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6049297ns 105504 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6049582ns 105509 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6049866ns 105514 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6050320ns 105522 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6050491ns 105525 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6050775ns 105530 1a110850 fd5ff06f jal x0, -44 +6051059ns 105535 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6051343ns 105540 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6051741ns 105547 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6051912ns 105550 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6052366ns 105558 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6052537ns 105561 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6052821ns 105566 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6053105ns 105571 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6053389ns 105576 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6053844ns 105584 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6054015ns 105587 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6054299ns 105592 1a110850 fd5ff06f jal x0, -44 +6054583ns 105597 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6054867ns 105602 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6055265ns 105609 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6055435ns 105612 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6055890ns 105620 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6056060ns 105623 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6056345ns 105628 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6056629ns 105633 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6056913ns 105638 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6057368ns 105646 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6057538ns 105649 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6057822ns 105654 1a110850 fd5ff06f jal x0, -44 +6058106ns 105659 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6058391ns 105664 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6058788ns 105671 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6058959ns 105674 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6059414ns 105682 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6059584ns 105685 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6059868ns 105690 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6060152ns 105695 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6060437ns 105700 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6060891ns 105708 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6061062ns 105711 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6061346ns 105716 1a110850 fd5ff06f jal x0, -44 +6061630ns 105721 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6061914ns 105726 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6062312ns 105733 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6062482ns 105736 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6062937ns 105744 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6063108ns 105747 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6063392ns 105752 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6063676ns 105757 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6063960ns 105762 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6064415ns 105770 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6064585ns 105773 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6064869ns 105778 1a110850 fd5ff06f jal x0, -44 +6065154ns 105783 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6065438ns 105788 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6065836ns 105795 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6066006ns 105798 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6066461ns 105806 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6066631ns 105809 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6066915ns 105814 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6067200ns 105819 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6067484ns 105824 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6067938ns 105832 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6068109ns 105835 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6068393ns 105840 1a110850 fd5ff06f jal x0, -44 +6068677ns 105845 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6068961ns 105850 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6069359ns 105857 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6069530ns 105860 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6069984ns 105868 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6070155ns 105871 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6070439ns 105876 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6070723ns 105881 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6071007ns 105886 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6071462ns 105894 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6071632ns 105897 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6071917ns 105902 1a110850 fd5ff06f jal x0, -44 +6072201ns 105907 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6072485ns 105912 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6072883ns 105919 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6073053ns 105922 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6073508ns 105930 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6073678ns 105933 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6073963ns 105938 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6074247ns 105943 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6074531ns 105948 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6074986ns 105956 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6075156ns 105959 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6075440ns 105964 1a110850 fd5ff06f jal x0, -44 +6075724ns 105969 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6076008ns 105974 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6076406ns 105981 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6076577ns 105984 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6077031ns 105992 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6077202ns 105995 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6077486ns 106000 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6077770ns 106005 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6078054ns 106010 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6078509ns 106018 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6078680ns 106021 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6078964ns 106026 1a110850 fd5ff06f jal x0, -44 +6079248ns 106031 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6079532ns 106036 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6079930ns 106043 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6080100ns 106046 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6080555ns 106054 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6080726ns 106057 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6081010ns 106062 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6081294ns 106067 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6081578ns 106072 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6082033ns 106080 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6082203ns 106083 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6082487ns 106088 1a110850 fd5ff06f jal x0, -44 +6082771ns 106093 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6083056ns 106098 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6083453ns 106105 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6083624ns 106108 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6084079ns 106116 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6084249ns 106119 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6084533ns 106124 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6084817ns 106129 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6085102ns 106134 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6085556ns 106142 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6085727ns 106145 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6086011ns 106150 1a110850 fd5ff06f jal x0, -44 +6086295ns 106155 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6086579ns 106160 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6086977ns 106167 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6087148ns 106170 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6087602ns 106178 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6087773ns 106181 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6088057ns 106186 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6088341ns 106191 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6088625ns 106196 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6089080ns 106204 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6089250ns 106207 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6089535ns 106212 1a110850 fd5ff06f jal x0, -44 +6089819ns 106217 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6090103ns 106222 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6090501ns 106229 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6090671ns 106232 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6091126ns 106240 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6091296ns 106243 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6091580ns 106248 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6091865ns 106253 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6092149ns 106258 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6092603ns 106266 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6092774ns 106269 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6093058ns 106274 1a110850 fd5ff06f jal x0, -44 +6093342ns 106279 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6093626ns 106284 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6094024ns 106291 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6094195ns 106294 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6094649ns 106302 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6094820ns 106305 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6095104ns 106310 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6095388ns 106315 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6095672ns 106320 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6096127ns 106328 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6096298ns 106331 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6096582ns 106336 1a110850 fd5ff06f jal x0, -44 +6096866ns 106341 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6097150ns 106346 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6097548ns 106353 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6097718ns 106356 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6098173ns 106364 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6098343ns 106367 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6098628ns 106372 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6098912ns 106377 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6099196ns 106382 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6099651ns 106390 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6099821ns 106393 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6100105ns 106398 1a110850 fd5ff06f jal x0, -44 +6100389ns 106403 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6100674ns 106408 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6101071ns 106415 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6101242ns 106418 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6101697ns 106426 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6101867ns 106429 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6102151ns 106434 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6102435ns 106439 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6102720ns 106444 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6103174ns 106452 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6103345ns 106455 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6103629ns 106460 1a110850 fd5ff06f jal x0, -44 +6103913ns 106465 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6104197ns 106470 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6104595ns 106477 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6104765ns 106480 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6105220ns 106488 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6105391ns 106491 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6105675ns 106496 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6105959ns 106501 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6106243ns 106506 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6106698ns 106514 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6106868ns 106517 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6107152ns 106522 1a110850 fd5ff06f jal x0, -44 +6107437ns 106527 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6107721ns 106532 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6108119ns 106539 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6108289ns 106542 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6108744ns 106550 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6108914ns 106553 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6109198ns 106558 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6109483ns 106563 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6109767ns 106568 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6110221ns 106576 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6110392ns 106579 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6110676ns 106584 1a110850 fd5ff06f jal x0, -44 +6110960ns 106589 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6111244ns 106594 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6111642ns 106601 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6111813ns 106604 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6112267ns 106612 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6112438ns 106615 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6112722ns 106620 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6113006ns 106625 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6113290ns 106630 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6113745ns 106638 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6113915ns 106641 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6114200ns 106646 1a110850 fd5ff06f jal x0, -44 +6114484ns 106651 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6114768ns 106656 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6115166ns 106663 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6115336ns 106666 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6115791ns 106674 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6115961ns 106677 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6116246ns 106682 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6116530ns 106687 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6116814ns 106692 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6117269ns 106700 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6117439ns 106703 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6117723ns 106708 1a110850 fd5ff06f jal x0, -44 +6118007ns 106713 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6118291ns 106718 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6118689ns 106725 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6118860ns 106728 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6119314ns 106736 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6119485ns 106739 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6119769ns 106744 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6120053ns 106749 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6120337ns 106754 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6120792ns 106762 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6120963ns 106765 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6121247ns 106770 1a110850 fd5ff06f jal x0, -44 +6121531ns 106775 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6121815ns 106780 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6122213ns 106787 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6122383ns 106790 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6122838ns 106798 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6123009ns 106801 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6123293ns 106806 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6123577ns 106811 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6123861ns 106816 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6124316ns 106824 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6124486ns 106827 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6124770ns 106832 1a110850 fd5ff06f jal x0, -44 +6125055ns 106837 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6125339ns 106842 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6125736ns 106849 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6125907ns 106852 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6126362ns 106860 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6126532ns 106863 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6126816ns 106868 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6127100ns 106873 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6127385ns 106878 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6127839ns 106886 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6128010ns 106889 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6128294ns 106894 1a110850 fd5ff06f jal x0, -44 +6128578ns 106899 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6128862ns 106904 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6129260ns 106911 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6129431ns 106914 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6129885ns 106922 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6130056ns 106925 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6130340ns 106930 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6130624ns 106935 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6130908ns 106940 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6131363ns 106948 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6131533ns 106951 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6131818ns 106956 1a110850 fd5ff06f jal x0, -44 +6132102ns 106961 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6132386ns 106966 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6132784ns 106973 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6132954ns 106976 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6133409ns 106984 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6133579ns 106987 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6133863ns 106992 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6134148ns 106997 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6134432ns 107002 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6134886ns 107010 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6135057ns 107013 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6135341ns 107018 1a110850 fd5ff06f jal x0, -44 +6135625ns 107023 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6135909ns 107028 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6136307ns 107035 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6136478ns 107038 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6136932ns 107046 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6137103ns 107049 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6137387ns 107054 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6137671ns 107059 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6137955ns 107064 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6138410ns 107072 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6138581ns 107075 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6138865ns 107080 1a110850 fd5ff06f jal x0, -44 +6139149ns 107085 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6139433ns 107090 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6139831ns 107097 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6140001ns 107100 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6140456ns 107108 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6140626ns 107111 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6140911ns 107116 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6141195ns 107121 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6141479ns 107126 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6141934ns 107134 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6142104ns 107137 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6142388ns 107142 1a110850 fd5ff06f jal x0, -44 +6142672ns 107147 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6142957ns 107152 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6143354ns 107159 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6143525ns 107162 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6143980ns 107170 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6144150ns 107173 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6144434ns 107178 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6144718ns 107183 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6145003ns 107188 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6145457ns 107196 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6145628ns 107199 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6145912ns 107204 1a110850 fd5ff06f jal x0, -44 +6146196ns 107209 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6146480ns 107214 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6146878ns 107221 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6147048ns 107224 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6147503ns 107232 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6147674ns 107235 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6147958ns 107240 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6148242ns 107245 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6148526ns 107250 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6148981ns 107258 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6149151ns 107261 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6149435ns 107266 1a110850 fd5ff06f jal x0, -44 +6149720ns 107271 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6150004ns 107276 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6150402ns 107283 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6150572ns 107286 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6151027ns 107294 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6151197ns 107297 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6151481ns 107302 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6151766ns 107307 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6152050ns 107312 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6152504ns 107320 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6152675ns 107323 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6152959ns 107328 1a110850 fd5ff06f jal x0, -44 +6153243ns 107333 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6153527ns 107338 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6153925ns 107345 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6154096ns 107348 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6154550ns 107356 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6154721ns 107359 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6155005ns 107364 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6155289ns 107369 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6155573ns 107374 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6156028ns 107382 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6156198ns 107385 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6156483ns 107390 1a110850 fd5ff06f jal x0, -44 +6156767ns 107395 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6157051ns 107400 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6157449ns 107407 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6157619ns 107410 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6158074ns 107418 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6158244ns 107421 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6158529ns 107426 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6158813ns 107431 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6159097ns 107436 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6159552ns 107444 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6159722ns 107447 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6160006ns 107452 1a110850 fd5ff06f jal x0, -44 +6160290ns 107457 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6160575ns 107462 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6160972ns 107469 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6161143ns 107472 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6161597ns 107480 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6161768ns 107483 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6162052ns 107488 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6162336ns 107493 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6162620ns 107498 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6163075ns 107506 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6163246ns 107509 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6163530ns 107514 1a110850 fd5ff06f jal x0, -44 +6163814ns 107519 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6164098ns 107524 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6164496ns 107531 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6164666ns 107534 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6165121ns 107542 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6165292ns 107545 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6165576ns 107550 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6165860ns 107555 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6166144ns 107560 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6166599ns 107568 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6166769ns 107571 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6167053ns 107576 1a110850 fd5ff06f jal x0, -44 +6167338ns 107581 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6167622ns 107586 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6168019ns 107593 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6168190ns 107596 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6168645ns 107604 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6168815ns 107607 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6169099ns 107612 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6169383ns 107617 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6169668ns 107622 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6170122ns 107630 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6170293ns 107633 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6170577ns 107638 1a110850 fd5ff06f jal x0, -44 +6170861ns 107643 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6171145ns 107648 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6171543ns 107655 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6171714ns 107658 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6172168ns 107666 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6172339ns 107669 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6172623ns 107674 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6172907ns 107679 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6173191ns 107684 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6173646ns 107692 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6173816ns 107695 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6174101ns 107700 1a110850 fd5ff06f jal x0, -44 +6174385ns 107705 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6174669ns 107710 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6175067ns 107717 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6175237ns 107720 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6175692ns 107728 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6175862ns 107731 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6176146ns 107736 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6176431ns 107741 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6176715ns 107746 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6177169ns 107754 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6177340ns 107757 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6177624ns 107762 1a110850 fd5ff06f jal x0, -44 +6177908ns 107767 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6178192ns 107772 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6178590ns 107779 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6178761ns 107782 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6179215ns 107790 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6179386ns 107793 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6179670ns 107798 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6179954ns 107803 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6180238ns 107808 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6180693ns 107816 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6180864ns 107819 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6181148ns 107824 1a110850 fd5ff06f jal x0, -44 +6181432ns 107829 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6181716ns 107834 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6182114ns 107841 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6182284ns 107844 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6182739ns 107852 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6182909ns 107855 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6183194ns 107860 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6183478ns 107865 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6183762ns 107870 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6184217ns 107878 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6184387ns 107881 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6184671ns 107886 1a110850 fd5ff06f jal x0, -44 +6184955ns 107891 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6185240ns 107896 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6185637ns 107903 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6185808ns 107906 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6186263ns 107914 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6186433ns 107917 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6186717ns 107922 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6187001ns 107927 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6187286ns 107932 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6187740ns 107940 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6187911ns 107943 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6188195ns 107948 1a110850 fd5ff06f jal x0, -44 +6188479ns 107953 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6188763ns 107958 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6189161ns 107965 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6189331ns 107968 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6189786ns 107976 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6189957ns 107979 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6190241ns 107984 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6190525ns 107989 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6190809ns 107994 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6191264ns 108002 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6191434ns 108005 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6191718ns 108010 1a110850 fd5ff06f jal x0, -44 +6192003ns 108015 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6192287ns 108020 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6192685ns 108027 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6192855ns 108030 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6193310ns 108038 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6193480ns 108041 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6193764ns 108046 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6194049ns 108051 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6194333ns 108056 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6194787ns 108064 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6194958ns 108067 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6195242ns 108072 1a110850 fd5ff06f jal x0, -44 +6195526ns 108077 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6195810ns 108082 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6196208ns 108089 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6196379ns 108092 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6196833ns 108100 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6197004ns 108103 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6197288ns 108108 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6197572ns 108113 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6197856ns 108118 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6198311ns 108126 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6198481ns 108129 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6198766ns 108134 1a110850 fd5ff06f jal x0, -44 +6199050ns 108139 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6199334ns 108144 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6199732ns 108151 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6199902ns 108154 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6200357ns 108162 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6200527ns 108165 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6200812ns 108170 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6201096ns 108175 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6201380ns 108180 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6201835ns 108188 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6202005ns 108191 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6202289ns 108196 1a110850 fd5ff06f jal x0, -44 +6202573ns 108201 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6202858ns 108206 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6203255ns 108213 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6203426ns 108216 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6203880ns 108224 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6204051ns 108227 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6204335ns 108232 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6204619ns 108237 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6204903ns 108242 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6205358ns 108250 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6205529ns 108253 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6205813ns 108258 1a110850 fd5ff06f jal x0, -44 +6206097ns 108263 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6206381ns 108268 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6206779ns 108275 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6206949ns 108278 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6207404ns 108286 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6207575ns 108289 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6207859ns 108294 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6208143ns 108299 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6208427ns 108304 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6208882ns 108312 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6209052ns 108315 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6209336ns 108320 1a110850 fd5ff06f jal x0, -44 +6209621ns 108325 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6209905ns 108330 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6210303ns 108337 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6210473ns 108340 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6210928ns 108348 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6211098ns 108351 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6211382ns 108356 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6211666ns 108361 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6211951ns 108366 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6212405ns 108374 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6212576ns 108377 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6212860ns 108382 1a110850 fd5ff06f jal x0, -44 +6213144ns 108387 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6213428ns 108392 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6213826ns 108399 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6213997ns 108402 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6214451ns 108410 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6214622ns 108413 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6214906ns 108418 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6215190ns 108423 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6215474ns 108428 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6215929ns 108436 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6216099ns 108439 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6216384ns 108444 1a110850 fd5ff06f jal x0, -44 +6216668ns 108449 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6216952ns 108454 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6217350ns 108461 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6217520ns 108464 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6217975ns 108472 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6218145ns 108475 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6218429ns 108480 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6218714ns 108485 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6218998ns 108490 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6219452ns 108498 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6219623ns 108501 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6219907ns 108506 1a110850 fd5ff06f jal x0, -44 +6220191ns 108511 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6220475ns 108516 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6220873ns 108523 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6221044ns 108526 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6221498ns 108534 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6221669ns 108537 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6221953ns 108542 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6222237ns 108547 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6222521ns 108552 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6222976ns 108560 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6223147ns 108563 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6223431ns 108568 1a110850 fd5ff06f jal x0, -44 +6223715ns 108573 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6223999ns 108578 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6224397ns 108585 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6224567ns 108588 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6225022ns 108596 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6225192ns 108599 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6225477ns 108604 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6225761ns 108609 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6226045ns 108614 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6226500ns 108622 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6226670ns 108625 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6226954ns 108630 1a110850 fd5ff06f jal x0, -44 +6227238ns 108635 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6227523ns 108640 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6227920ns 108647 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6228091ns 108650 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6228546ns 108658 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6228716ns 108661 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6229000ns 108666 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6229284ns 108671 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6229569ns 108676 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6230023ns 108684 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6230194ns 108687 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6230478ns 108692 1a110850 fd5ff06f jal x0, -44 +6230762ns 108697 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6231046ns 108702 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6231444ns 108709 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6231615ns 108712 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6232069ns 108720 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6232240ns 108723 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6232524ns 108728 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6232808ns 108733 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6233092ns 108738 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6233547ns 108746 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6233717ns 108749 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6234001ns 108754 1a110850 fd5ff06f jal x0, -44 +6234286ns 108759 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6234570ns 108764 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6234968ns 108771 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6235138ns 108774 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6235593ns 108782 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6235763ns 108785 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6236047ns 108790 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6236332ns 108795 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6236616ns 108800 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6237070ns 108808 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6237241ns 108811 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6237525ns 108816 1a110850 fd5ff06f jal x0, -44 +6237809ns 108821 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6238093ns 108826 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6238491ns 108833 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6238662ns 108836 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6239116ns 108844 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6239287ns 108847 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6239571ns 108852 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6239855ns 108857 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6240139ns 108862 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6240594ns 108870 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6240764ns 108873 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6241049ns 108878 1a110850 fd5ff06f jal x0, -44 +6241333ns 108883 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6241617ns 108888 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6242015ns 108895 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6242185ns 108898 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6242640ns 108906 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6242810ns 108909 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6243095ns 108914 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6243379ns 108919 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6243663ns 108924 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6244118ns 108932 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6244288ns 108935 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6244572ns 108940 1a110850 fd5ff06f jal x0, -44 +6244856ns 108945 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6245141ns 108950 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6245538ns 108957 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6245709ns 108960 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6246163ns 108968 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6246334ns 108971 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6246618ns 108976 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6246902ns 108981 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6247186ns 108986 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6247641ns 108994 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6247812ns 108997 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6248096ns 109002 1a110850 fd5ff06f jal x0, -44 +6248380ns 109007 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6248664ns 109012 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6249062ns 109019 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6249232ns 109022 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6249687ns 109030 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6249858ns 109033 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6250142ns 109038 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6250426ns 109043 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6250710ns 109048 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6251165ns 109056 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6251335ns 109059 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6251619ns 109064 1a110850 fd5ff06f jal x0, -44 +6251904ns 109069 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6252188ns 109074 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6252586ns 109081 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6252756ns 109084 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6253211ns 109092 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6253381ns 109095 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6253665ns 109100 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6253949ns 109105 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6254234ns 109110 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6254688ns 109118 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6254859ns 109121 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6255143ns 109126 1a110850 fd5ff06f jal x0, -44 +6255427ns 109131 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6255711ns 109136 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6256109ns 109143 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6256280ns 109146 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6256734ns 109154 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6256905ns 109157 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6257189ns 109162 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6257473ns 109167 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6257757ns 109172 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6258212ns 109180 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6258382ns 109183 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6258667ns 109188 1a110850 fd5ff06f jal x0, -44 +6258951ns 109193 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6259235ns 109198 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6259633ns 109205 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6259803ns 109208 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6260258ns 109216 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6260428ns 109219 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6260712ns 109224 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6260997ns 109229 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6261281ns 109234 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6261735ns 109242 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6261906ns 109245 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6262190ns 109250 1a110850 fd5ff06f jal x0, -44 +6262474ns 109255 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6262758ns 109260 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6263156ns 109267 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6263327ns 109270 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6263781ns 109278 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6263952ns 109281 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6264236ns 109286 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6264520ns 109291 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6264804ns 109296 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6265259ns 109304 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6265430ns 109307 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6265714ns 109312 1a110850 fd5ff06f jal x0, -44 +6265998ns 109317 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6266282ns 109322 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6266680ns 109329 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6266850ns 109332 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6267305ns 109340 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6267475ns 109343 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6267760ns 109348 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6268044ns 109353 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6268328ns 109358 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6268783ns 109366 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6268953ns 109369 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6269237ns 109374 1a110850 fd5ff06f jal x0, -44 +6269521ns 109379 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6269806ns 109384 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6270203ns 109391 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6270374ns 109394 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6270829ns 109402 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6270999ns 109405 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6271283ns 109410 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6271567ns 109415 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6271852ns 109420 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6272306ns 109428 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6272477ns 109431 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6272761ns 109436 1a110850 fd5ff06f jal x0, -44 +6273045ns 109441 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6273329ns 109446 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6273727ns 109453 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6273898ns 109456 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6274352ns 109464 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6274523ns 109467 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6274807ns 109472 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6275091ns 109477 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6275375ns 109482 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6275830ns 109490 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6276000ns 109493 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6276284ns 109498 1a110850 fd5ff06f jal x0, -44 +6276569ns 109503 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6276853ns 109508 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6277251ns 109515 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6277421ns 109518 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6277876ns 109526 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6278046ns 109529 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6278330ns 109534 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6278615ns 109539 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6278899ns 109544 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6279353ns 109552 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6279524ns 109555 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6279808ns 109560 1a110850 fd5ff06f jal x0, -44 +6280092ns 109565 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6280376ns 109570 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6280774ns 109577 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6280945ns 109580 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6281399ns 109588 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6281570ns 109591 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6281854ns 109596 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6282138ns 109601 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6282422ns 109606 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6282877ns 109614 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6283047ns 109617 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6283332ns 109622 1a110850 fd5ff06f jal x0, -44 +6283616ns 109627 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6283900ns 109632 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6284298ns 109639 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6284468ns 109642 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6284923ns 109650 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6285093ns 109653 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6285378ns 109658 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6285662ns 109663 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6285946ns 109668 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6286401ns 109676 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6286571ns 109679 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6286855ns 109684 1a110850 fd5ff06f jal x0, -44 +6287139ns 109689 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6287424ns 109694 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6287821ns 109701 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6287992ns 109704 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6288447ns 109712 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6288617ns 109715 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6288901ns 109720 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6289185ns 109725 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6289469ns 109730 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6289924ns 109738 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6290095ns 109741 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6290379ns 109746 1a110850 fd5ff06f jal x0, -44 +6290663ns 109751 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6290947ns 109756 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6291345ns 109763 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6291515ns 109766 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6291970ns 109774 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6292141ns 109777 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6292425ns 109782 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6292709ns 109787 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6292993ns 109792 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6293448ns 109800 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6293618ns 109803 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6293902ns 109808 1a110850 fd5ff06f jal x0, -44 +6294187ns 109813 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6294471ns 109818 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6294869ns 109825 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6295039ns 109828 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6295494ns 109836 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6295664ns 109839 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6295948ns 109844 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6296232ns 109849 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6296517ns 109854 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6296971ns 109862 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6297142ns 109865 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6297426ns 109870 1a110850 fd5ff06f jal x0, -44 +6297710ns 109875 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6297994ns 109880 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6298392ns 109887 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6298563ns 109890 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6299017ns 109898 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6299188ns 109901 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6299472ns 109906 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6299756ns 109911 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6300040ns 109916 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6300495ns 109924 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6300665ns 109927 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6300950ns 109932 1a110850 fd5ff06f jal x0, -44 +6301234ns 109937 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6301518ns 109942 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6301916ns 109949 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6302086ns 109952 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6302541ns 109960 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6302711ns 109963 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6302995ns 109968 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6303280ns 109973 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6303564ns 109978 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6304018ns 109986 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6304189ns 109989 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6304473ns 109994 1a110850 fd5ff06f jal x0, -44 +6304757ns 109999 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6305041ns 110004 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6305439ns 110011 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6305610ns 110014 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6306064ns 110022 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6306235ns 110025 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6306519ns 110030 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6306803ns 110035 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6307087ns 110040 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6307542ns 110048 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6307713ns 110051 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6307997ns 110056 1a110850 fd5ff06f jal x0, -44 +6308281ns 110061 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6308565ns 110066 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6308963ns 110073 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6309133ns 110076 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6309588ns 110084 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6309759ns 110087 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6310043ns 110092 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6310327ns 110097 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6310611ns 110102 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6311066ns 110110 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6311236ns 110113 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6311520ns 110118 1a110850 fd5ff06f jal x0, -44 +6311804ns 110123 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6312089ns 110128 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6312486ns 110135 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6312657ns 110138 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6313112ns 110146 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6313282ns 110149 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6313566ns 110154 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6313850ns 110159 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6314135ns 110164 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6314589ns 110172 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6314760ns 110175 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6315044ns 110180 1a110850 fd5ff06f jal x0, -44 +6315328ns 110185 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6315612ns 110190 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6316010ns 110197 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6316181ns 110200 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6316635ns 110208 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6316806ns 110211 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6317090ns 110216 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6317374ns 110221 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6317658ns 110226 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6318113ns 110234 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6318283ns 110237 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6318567ns 110242 1a110850 fd5ff06f jal x0, -44 +6318852ns 110247 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6319136ns 110252 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6319534ns 110259 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6319704ns 110262 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6320159ns 110270 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6320329ns 110273 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6320613ns 110278 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6320898ns 110283 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6321182ns 110288 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6321636ns 110296 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6321807ns 110299 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6322091ns 110304 1a110850 fd5ff06f jal x0, -44 +6322375ns 110309 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6322659ns 110314 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6323057ns 110321 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6323228ns 110324 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6323682ns 110332 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6323853ns 110335 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6324137ns 110340 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6324421ns 110345 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6324705ns 110350 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6325160ns 110358 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6325330ns 110361 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6325615ns 110366 1a110850 fd5ff06f jal x0, -44 +6325899ns 110371 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6326183ns 110376 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6326581ns 110383 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6326751ns 110386 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6327206ns 110394 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6327376ns 110397 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6327661ns 110402 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6327945ns 110407 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6328229ns 110412 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6328684ns 110420 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6328854ns 110423 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6329138ns 110428 1a110850 fd5ff06f jal x0, -44 +6329422ns 110433 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6329707ns 110438 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6330104ns 110445 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6330275ns 110448 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6330730ns 110456 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6330900ns 110459 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6331184ns 110464 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6331468ns 110469 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6331752ns 110474 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6332207ns 110482 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6332378ns 110485 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6332662ns 110490 1a110850 fd5ff06f jal x0, -44 +6332946ns 110495 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6333230ns 110500 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6333628ns 110507 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6333798ns 110510 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6334253ns 110518 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6334424ns 110521 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6334708ns 110526 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6334992ns 110531 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6335276ns 110536 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6335731ns 110544 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6335901ns 110547 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6336185ns 110552 1a110850 fd5ff06f jal x0, -44 +6336470ns 110557 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6336754ns 110562 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6337152ns 110569 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6337322ns 110572 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6337777ns 110580 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6337947ns 110583 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6338231ns 110588 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6338515ns 110593 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6338800ns 110598 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6339254ns 110606 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6339425ns 110609 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6339709ns 110614 1a110850 fd5ff06f jal x0, -44 +6339993ns 110619 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6340277ns 110624 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6340675ns 110631 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6340846ns 110634 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6341300ns 110642 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6341471ns 110645 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6341755ns 110650 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6342039ns 110655 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6342323ns 110660 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6342778ns 110668 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6342948ns 110671 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6343233ns 110676 1a110850 fd5ff06f jal x0, -44 +6343517ns 110681 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6343801ns 110686 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6344199ns 110693 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6344369ns 110696 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6344824ns 110704 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6344994ns 110707 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6345279ns 110712 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6345563ns 110717 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6345847ns 110722 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6346301ns 110730 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6346472ns 110733 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6346756ns 110738 1a110850 fd5ff06f jal x0, -44 +6347040ns 110743 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6347324ns 110748 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6347722ns 110755 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6347893ns 110758 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6348347ns 110766 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6348518ns 110769 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6348802ns 110774 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6349086ns 110779 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6349370ns 110784 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6349825ns 110792 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6349996ns 110795 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6350280ns 110800 1a110850 fd5ff06f jal x0, -44 +6350564ns 110805 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6350848ns 110810 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6351246ns 110817 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6351416ns 110820 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6351871ns 110828 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6352042ns 110831 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6352326ns 110836 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6352610ns 110841 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6352894ns 110846 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6353349ns 110854 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6353519ns 110857 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6353803ns 110862 1a110850 fd5ff06f jal x0, -44 +6354087ns 110867 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6354372ns 110872 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6354769ns 110879 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6354940ns 110882 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6355395ns 110890 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6355565ns 110893 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6355849ns 110898 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6356133ns 110903 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6356418ns 110908 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6356872ns 110916 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6357043ns 110919 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6357327ns 110924 1a110850 fd5ff06f jal x0, -44 +6357611ns 110929 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6357895ns 110934 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6358293ns 110941 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6358464ns 110944 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6358918ns 110952 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6359089ns 110955 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6359373ns 110960 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6359657ns 110965 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6359941ns 110970 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6360396ns 110978 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6360566ns 110981 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6360850ns 110986 1a110850 fd5ff06f jal x0, -44 +6361135ns 110991 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6361419ns 110996 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6361817ns 111003 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6361987ns 111006 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6362442ns 111014 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6362612ns 111017 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6362896ns 111022 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6363181ns 111027 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6363465ns 111032 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6363919ns 111040 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6364090ns 111043 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6364374ns 111048 1a110850 fd5ff06f jal x0, -44 +6364658ns 111053 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6364942ns 111058 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6365340ns 111065 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6365511ns 111068 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6365965ns 111076 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6366136ns 111079 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6366420ns 111084 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6366704ns 111089 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6366988ns 111094 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6367443ns 111102 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6367613ns 111105 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6367898ns 111110 1a110850 fd5ff06f jal x0, -44 +6368182ns 111115 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6368466ns 111120 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6368864ns 111127 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6369034ns 111130 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6369489ns 111138 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6369659ns 111141 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6369944ns 111146 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6370228ns 111151 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6370512ns 111156 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6370967ns 111164 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6371137ns 111167 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6371421ns 111172 1a110850 fd5ff06f jal x0, -44 +6371705ns 111177 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6371990ns 111182 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6372387ns 111189 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6372558ns 111192 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6373013ns 111200 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6373183ns 111203 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6373467ns 111208 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6373751ns 111213 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6374035ns 111218 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6374490ns 111226 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6374661ns 111229 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6374945ns 111234 1a110850 fd5ff06f jal x0, -44 +6375229ns 111239 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6375513ns 111244 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6375911ns 111251 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6376081ns 111254 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6376536ns 111262 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6376707ns 111265 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6376991ns 111270 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6377275ns 111275 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6377559ns 111280 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6378014ns 111288 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6378184ns 111291 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6378468ns 111296 1a110850 fd5ff06f jal x0, -44 +6378753ns 111301 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6379037ns 111306 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6379435ns 111313 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6379605ns 111316 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6380060ns 111324 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6380230ns 111327 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6380514ns 111332 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6380799ns 111337 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6381083ns 111342 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6381537ns 111350 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6381708ns 111353 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6381992ns 111358 1a110850 fd5ff06f jal x0, -44 +6382276ns 111363 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6382560ns 111368 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6382958ns 111375 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6383129ns 111378 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6383583ns 111386 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6383754ns 111389 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6384038ns 111394 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6384322ns 111399 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6384606ns 111404 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6385061ns 111412 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6385231ns 111415 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6385516ns 111420 1a110850 fd5ff06f jal x0, -44 +6385800ns 111425 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6386084ns 111430 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6386482ns 111437 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6386652ns 111440 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6387107ns 111448 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6387277ns 111451 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6387562ns 111456 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6387846ns 111461 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6388130ns 111466 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6388584ns 111474 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6388755ns 111477 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6389039ns 111482 1a110850 fd5ff06f jal x0, -44 +6389323ns 111487 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6389607ns 111492 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6390005ns 111499 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6390176ns 111502 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6390630ns 111510 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6390801ns 111513 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6391085ns 111518 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6391369ns 111523 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6391653ns 111528 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6392108ns 111536 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6392279ns 111539 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6392563ns 111544 1a110850 fd5ff06f jal x0, -44 +6392847ns 111549 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6393131ns 111554 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6393529ns 111561 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6393699ns 111564 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6394154ns 111572 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6394325ns 111575 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6394609ns 111580 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6394893ns 111585 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6395177ns 111590 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6395632ns 111598 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6395802ns 111601 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6396086ns 111606 1a110850 fd5ff06f jal x0, -44 +6396370ns 111611 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6396655ns 111616 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6397052ns 111623 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6397223ns 111626 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6397678ns 111634 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6397848ns 111637 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6398132ns 111642 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6398416ns 111647 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6398701ns 111652 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6399155ns 111660 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6399326ns 111663 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6399610ns 111668 1a110850 fd5ff06f jal x0, -44 +6399894ns 111673 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6400178ns 111678 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6400576ns 111685 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6400747ns 111688 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6401201ns 111696 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6401372ns 111699 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6401656ns 111704 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6401940ns 111709 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6402224ns 111714 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6402679ns 111722 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6402849ns 111725 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6403133ns 111730 1a110850 fd5ff06f jal x0, -44 +6403418ns 111735 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6403702ns 111740 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6404100ns 111747 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6404270ns 111750 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6404725ns 111758 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6404895ns 111761 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6405179ns 111766 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6405464ns 111771 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6405748ns 111776 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6406202ns 111784 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6406373ns 111787 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6406657ns 111792 1a110850 fd5ff06f jal x0, -44 +6406941ns 111797 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6407225ns 111802 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6407623ns 111809 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6407794ns 111812 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6408248ns 111820 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6408419ns 111823 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6408703ns 111828 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6408987ns 111833 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6409271ns 111838 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6409726ns 111846 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6409896ns 111849 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6410181ns 111854 1a110850 fd5ff06f jal x0, -44 +6410465ns 111859 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6410749ns 111864 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6411147ns 111871 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6411317ns 111874 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6411772ns 111882 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6411942ns 111885 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6412227ns 111890 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6412511ns 111895 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6412795ns 111900 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6413250ns 111908 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6413420ns 111911 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6413704ns 111916 1a110850 fd5ff06f jal x0, -44 +6413988ns 111921 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6414273ns 111926 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6414670ns 111933 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6414841ns 111936 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6415296ns 111944 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6415466ns 111947 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6415750ns 111952 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6416034ns 111957 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6416319ns 111962 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6416773ns 111970 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6416944ns 111973 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6417228ns 111978 1a110850 fd5ff06f jal x0, -44 +6417512ns 111983 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6417796ns 111988 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6418194ns 111995 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6418364ns 111998 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6418819ns 112006 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6418990ns 112009 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6419274ns 112014 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6419558ns 112019 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6419842ns 112024 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6420297ns 112032 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6420467ns 112035 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6420751ns 112040 1a110850 fd5ff06f jal x0, -44 +6421036ns 112045 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6421320ns 112050 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6421718ns 112057 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6421888ns 112060 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6422343ns 112068 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6422513ns 112071 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6422797ns 112076 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6423082ns 112081 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6423366ns 112086 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6423820ns 112094 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6423991ns 112097 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6424275ns 112102 1a110850 fd5ff06f jal x0, -44 +6424559ns 112107 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6424843ns 112112 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6425241ns 112119 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6425412ns 112122 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6425866ns 112130 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6426037ns 112133 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6426321ns 112138 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6426605ns 112143 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6426889ns 112148 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6427344ns 112156 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6427514ns 112159 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6427799ns 112164 1a110850 fd5ff06f jal x0, -44 +6428083ns 112169 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6428367ns 112174 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6428765ns 112181 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6428935ns 112184 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6429390ns 112192 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6429560ns 112195 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6429845ns 112200 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6430129ns 112205 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6430413ns 112210 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6430867ns 112218 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6431038ns 112221 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6431322ns 112226 1a110850 fd5ff06f jal x0, -44 +6431606ns 112231 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6431890ns 112236 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6432288ns 112243 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6432459ns 112246 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6432913ns 112254 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6433084ns 112257 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6433368ns 112262 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6433652ns 112267 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6433936ns 112272 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6434391ns 112280 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6434562ns 112283 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6434846ns 112288 1a110850 fd5ff06f jal x0, -44 +6435130ns 112293 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6435414ns 112298 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6435812ns 112305 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6435982ns 112308 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6436437ns 112316 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6436608ns 112319 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6436892ns 112324 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6437176ns 112329 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6437460ns 112334 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6437915ns 112342 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6438085ns 112345 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6438369ns 112350 1a110850 fd5ff06f jal x0, -44 +6438653ns 112355 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6438938ns 112360 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6439335ns 112367 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6439506ns 112370 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6439961ns 112378 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6440131ns 112381 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6440415ns 112386 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6440699ns 112391 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6440984ns 112396 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6441438ns 112404 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6441609ns 112407 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6441893ns 112412 1a110850 fd5ff06f jal x0, -44 +6442177ns 112417 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6442461ns 112422 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6442859ns 112429 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6443030ns 112432 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6443484ns 112440 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6443655ns 112443 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6443939ns 112448 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6444223ns 112453 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6444507ns 112458 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6444962ns 112466 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6445132ns 112469 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6445416ns 112474 1a110850 fd5ff06f jal x0, -44 +6445701ns 112479 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6445985ns 112484 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6446383ns 112491 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6446553ns 112494 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6447008ns 112502 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6447178ns 112505 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6447462ns 112510 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6447747ns 112515 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6448031ns 112520 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6448485ns 112528 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6448656ns 112531 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6448940ns 112536 1a110850 fd5ff06f jal x0, -44 +6449224ns 112541 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6449508ns 112546 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6449906ns 112553 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6450077ns 112556 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6450531ns 112564 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6450702ns 112567 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6450986ns 112572 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6451270ns 112577 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6451554ns 112582 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6452009ns 112590 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6452179ns 112593 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6452464ns 112598 1a110850 fd5ff06f jal x0, -44 +6452748ns 112603 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6453032ns 112608 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6453430ns 112615 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6453600ns 112618 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6454055ns 112626 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6454225ns 112629 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6454510ns 112634 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6454794ns 112639 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6455078ns 112644 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6455533ns 112652 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6455703ns 112655 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6455987ns 112660 1a110850 fd5ff06f jal x0, -44 +6456271ns 112665 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6456556ns 112670 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6456953ns 112677 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6457124ns 112680 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6457579ns 112688 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6457749ns 112691 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6458033ns 112696 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6458317ns 112701 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6458602ns 112706 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6459056ns 112714 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6459227ns 112717 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6459511ns 112722 1a110850 fd5ff06f jal x0, -44 +6459795ns 112727 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6460079ns 112732 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6460477ns 112739 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6460647ns 112742 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6461102ns 112750 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6461273ns 112753 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6461557ns 112758 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6461841ns 112763 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6462125ns 112768 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6462580ns 112776 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6462750ns 112779 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6463034ns 112784 1a110850 fd5ff06f jal x0, -44 +6463319ns 112789 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6463603ns 112794 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6464001ns 112801 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6464171ns 112804 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6464626ns 112812 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6464796ns 112815 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6465080ns 112820 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6465365ns 112825 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6465649ns 112830 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6466103ns 112838 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6466274ns 112841 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6466558ns 112846 1a110850 fd5ff06f jal x0, -44 +6466842ns 112851 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6467126ns 112856 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6467524ns 112863 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6467695ns 112866 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6468149ns 112874 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6468320ns 112877 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6468604ns 112882 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6468888ns 112887 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6469172ns 112892 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6469627ns 112900 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6469797ns 112903 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6470082ns 112908 1a110850 fd5ff06f jal x0, -44 +6470366ns 112913 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6470650ns 112918 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6471048ns 112925 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6471218ns 112928 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6471673ns 112936 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6471843ns 112939 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6472128ns 112944 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6472412ns 112949 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6472696ns 112954 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6473151ns 112962 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6473321ns 112965 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6473605ns 112970 1a110850 fd5ff06f jal x0, -44 +6473889ns 112975 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6474173ns 112980 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6474571ns 112987 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6474742ns 112990 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6475196ns 112998 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6475367ns 113001 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6475651ns 113006 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6475935ns 113011 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6476219ns 113016 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6476674ns 113024 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6476845ns 113027 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6477129ns 113032 1a110850 fd5ff06f jal x0, -44 +6477413ns 113037 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6477697ns 113042 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6478095ns 113049 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6478265ns 113052 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6478720ns 113060 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6478891ns 113063 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6479175ns 113068 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6479459ns 113073 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6479743ns 113078 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6480198ns 113086 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6480368ns 113089 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6480652ns 113094 1a110850 fd5ff06f jal x0, -44 +6480936ns 113099 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6481221ns 113104 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6481618ns 113111 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6481789ns 113114 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6482244ns 113122 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6482414ns 113125 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6482698ns 113130 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6482982ns 113135 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6483267ns 113140 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6483721ns 113148 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6483892ns 113151 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6484176ns 113156 1a110850 fd5ff06f jal x0, -44 +6484460ns 113161 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6484744ns 113166 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6485142ns 113173 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6485313ns 113176 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6485767ns 113184 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6485938ns 113187 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6486222ns 113192 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6486506ns 113197 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6486790ns 113202 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6487245ns 113210 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6487415ns 113213 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6487699ns 113218 1a110850 fd5ff06f jal x0, -44 +6487984ns 113223 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6488268ns 113228 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6488666ns 113235 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6488836ns 113238 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6489291ns 113246 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6489461ns 113249 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6489745ns 113254 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6490030ns 113259 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6490314ns 113264 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6490768ns 113272 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6490939ns 113275 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6491223ns 113280 1a110850 fd5ff06f jal x0, -44 +6491507ns 113285 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6491791ns 113290 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6492189ns 113297 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6492360ns 113300 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6492814ns 113308 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6492985ns 113311 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6493269ns 113316 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6493553ns 113321 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6493837ns 113326 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6494292ns 113334 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6494463ns 113337 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6494747ns 113342 1a110850 fd5ff06f jal x0, -44 +6495031ns 113347 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6495315ns 113352 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6495713ns 113359 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6495883ns 113362 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6496338ns 113370 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6496508ns 113373 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6496793ns 113378 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6497077ns 113383 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6497361ns 113388 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6497816ns 113396 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6497986ns 113399 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6498270ns 113404 1a110850 fd5ff06f jal x0, -44 +6498554ns 113409 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6498839ns 113414 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6499236ns 113421 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6499407ns 113424 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6499862ns 113432 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6500032ns 113435 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6500316ns 113440 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6500600ns 113445 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6500885ns 113450 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6501339ns 113458 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6501510ns 113461 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6501794ns 113466 1a110850 fd5ff06f jal x0, -44 +6502078ns 113471 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6502362ns 113476 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6502760ns 113483 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6502930ns 113486 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6503385ns 113494 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6503556ns 113497 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6503840ns 113502 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6504124ns 113507 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6504408ns 113512 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6504863ns 113520 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6505033ns 113523 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6505317ns 113528 1a110850 fd5ff06f jal x0, -44 +6505602ns 113533 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6505886ns 113538 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6506284ns 113545 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6506454ns 113548 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6506909ns 113556 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6507079ns 113559 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6507363ns 113564 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6507648ns 113569 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6507932ns 113574 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6508386ns 113582 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6508557ns 113585 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6508841ns 113590 1a110850 fd5ff06f jal x0, -44 +6509125ns 113595 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6509409ns 113600 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6509807ns 113607 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6509978ns 113610 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6510432ns 113618 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6510603ns 113621 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6510887ns 113626 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6511171ns 113631 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6511455ns 113636 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6511910ns 113644 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6512080ns 113647 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6512365ns 113652 1a110850 fd5ff06f jal x0, -44 +6512649ns 113657 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6512933ns 113662 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6513331ns 113669 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6513501ns 113672 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6513956ns 113680 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6514126ns 113683 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6514411ns 113688 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6514695ns 113693 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6514979ns 113698 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6515434ns 113706 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6515604ns 113709 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6515888ns 113714 1a110850 fd5ff06f jal x0, -44 +6516172ns 113719 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6516456ns 113724 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6516854ns 113731 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6517025ns 113734 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6517479ns 113742 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6517650ns 113745 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6517934ns 113750 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6518218ns 113755 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6518502ns 113760 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6518957ns 113768 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6519128ns 113771 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6519412ns 113776 1a110850 fd5ff06f jal x0, -44 +6519696ns 113781 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6519980ns 113786 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6520378ns 113793 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6520548ns 113796 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6521003ns 113804 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6521174ns 113807 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6521458ns 113812 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6521742ns 113817 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6522026ns 113822 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6522481ns 113830 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6522651ns 113833 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6522935ns 113838 1a110850 fd5ff06f jal x0, -44 +6523219ns 113843 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6523504ns 113848 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6523901ns 113855 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6524072ns 113858 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6524527ns 113866 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6524697ns 113869 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6524981ns 113874 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6525265ns 113879 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6525550ns 113884 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6526004ns 113892 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6526175ns 113895 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6526459ns 113900 1a110850 fd5ff06f jal x0, -44 +6526743ns 113905 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6527027ns 113910 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6527425ns 113917 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6527596ns 113920 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6528050ns 113928 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6528221ns 113931 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6528505ns 113936 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6528789ns 113941 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6529073ns 113946 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6529528ns 113954 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6529698ns 113957 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6529983ns 113962 1a110850 fd5ff06f jal x0, -44 +6530267ns 113967 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6530551ns 113972 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6530949ns 113979 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6531119ns 113982 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6531574ns 113990 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6531744ns 113993 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6532028ns 113998 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6532313ns 114003 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6532597ns 114008 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6533051ns 114016 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6533222ns 114019 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6533506ns 114024 1a110850 fd5ff06f jal x0, -44 +6533790ns 114029 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6534074ns 114034 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6534472ns 114041 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6534643ns 114044 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6535097ns 114052 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6535268ns 114055 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6535552ns 114060 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6535836ns 114065 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6536120ns 114070 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6536575ns 114078 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6536746ns 114081 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6537030ns 114086 1a110850 fd5ff06f jal x0, -44 +6537314ns 114091 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6537598ns 114096 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6537996ns 114103 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6538166ns 114106 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6538621ns 114114 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6538791ns 114117 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6539076ns 114122 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6539360ns 114127 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6539644ns 114132 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6540099ns 114140 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6540269ns 114143 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6540553ns 114148 1a110850 fd5ff06f jal x0, -44 +6540837ns 114153 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6541122ns 114158 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6541519ns 114165 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6541690ns 114168 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6542145ns 114176 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6542315ns 114179 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6542599ns 114184 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6542883ns 114189 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6543168ns 114194 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6543622ns 114202 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6543793ns 114205 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6544077ns 114210 1a110850 fd5ff06f jal x0, -44 +6544361ns 114215 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6544645ns 114220 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6545043ns 114227 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6545213ns 114230 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6545668ns 114238 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6545839ns 114241 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6546123ns 114246 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6546407ns 114251 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6546691ns 114256 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6547146ns 114264 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6547316ns 114267 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6547600ns 114272 1a110850 fd5ff06f jal x0, -44 +6547885ns 114277 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6548169ns 114282 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6548567ns 114289 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6548737ns 114292 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6549192ns 114300 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6549362ns 114303 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6549646ns 114308 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6549931ns 114313 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6550215ns 114318 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6550669ns 114326 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6550840ns 114329 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6551124ns 114334 1a110850 fd5ff06f jal x0, -44 +6551408ns 114339 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6551692ns 114344 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6552090ns 114351 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6552261ns 114354 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6552715ns 114362 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6552886ns 114365 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6553170ns 114370 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6553454ns 114375 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6553738ns 114380 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6554193ns 114388 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6554363ns 114391 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6554648ns 114396 1a110850 fd5ff06f jal x0, -44 +6554932ns 114401 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6555216ns 114406 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6555614ns 114413 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6555784ns 114416 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6556239ns 114424 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6556409ns 114427 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6556694ns 114432 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6556978ns 114437 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6557262ns 114442 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6557717ns 114450 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6557887ns 114453 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6558171ns 114458 1a110850 fd5ff06f jal x0, -44 +6558455ns 114463 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6558739ns 114468 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6559137ns 114475 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6559308ns 114478 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6559762ns 114486 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6559933ns 114489 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6560217ns 114494 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6560501ns 114499 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6560785ns 114504 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6561240ns 114512 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6561411ns 114515 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6561695ns 114520 1a110850 fd5ff06f jal x0, -44 +6561979ns 114525 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6562263ns 114530 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6562661ns 114537 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6562831ns 114540 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6563286ns 114548 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6563457ns 114551 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6563741ns 114556 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6564025ns 114561 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6564309ns 114566 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6564764ns 114574 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6564934ns 114577 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6565218ns 114582 1a110850 fd5ff06f jal x0, -44 +6565503ns 114587 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6565787ns 114592 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6566184ns 114599 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6566355ns 114602 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6566810ns 114610 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6566980ns 114613 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6567264ns 114618 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6567548ns 114623 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6567833ns 114628 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6568287ns 114636 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6568458ns 114639 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6568742ns 114644 1a110850 fd5ff06f jal x0, -44 +6569026ns 114649 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6569310ns 114654 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6569708ns 114661 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6569879ns 114664 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6570333ns 114672 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6570504ns 114675 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6570788ns 114680 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6571072ns 114685 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6571356ns 114690 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6571811ns 114698 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6571981ns 114701 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6572266ns 114706 1a110850 fd5ff06f jal x0, -44 +6572550ns 114711 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6572834ns 114716 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6573232ns 114723 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6573402ns 114726 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6573857ns 114734 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6574027ns 114737 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6574311ns 114742 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6574596ns 114747 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6574880ns 114752 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6575334ns 114760 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6575505ns 114763 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6575789ns 114768 1a110850 fd5ff06f jal x0, -44 +6576073ns 114773 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6576357ns 114778 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6576755ns 114785 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6576926ns 114788 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6577380ns 114796 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6577551ns 114799 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6577835ns 114804 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6578119ns 114809 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6578403ns 114814 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6578858ns 114822 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6579029ns 114825 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6579313ns 114830 1a110850 fd5ff06f jal x0, -44 +6579597ns 114835 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6579881ns 114840 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6580279ns 114847 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6580449ns 114850 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6580904ns 114858 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6581074ns 114861 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6581359ns 114866 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6581643ns 114871 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6581927ns 114876 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6582382ns 114884 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6582552ns 114887 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6582836ns 114892 1a110850 fd5ff06f jal x0, -44 +6583120ns 114897 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6583405ns 114902 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6583802ns 114909 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6583973ns 114912 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6584428ns 114920 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6584598ns 114923 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6584882ns 114928 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6585166ns 114933 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6585451ns 114938 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6585905ns 114946 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6586076ns 114949 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6586360ns 114954 1a110850 fd5ff06f jal x0, -44 +6586644ns 114959 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6586928ns 114964 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6587326ns 114971 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6587496ns 114974 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6587951ns 114982 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6588122ns 114985 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6588406ns 114990 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6588690ns 114995 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6588974ns 115000 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6589429ns 115008 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6589599ns 115011 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6589883ns 115016 1a110850 fd5ff06f jal x0, -44 +6590168ns 115021 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6590452ns 115026 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6590850ns 115033 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6591020ns 115036 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6591475ns 115044 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6591645ns 115047 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6591929ns 115052 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6592214ns 115057 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6592498ns 115062 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6592952ns 115070 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6593123ns 115073 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6593407ns 115078 1a110850 fd5ff06f jal x0, -44 +6593691ns 115083 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6593975ns 115088 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6594373ns 115095 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6594544ns 115098 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6594998ns 115106 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6595169ns 115109 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6595453ns 115114 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6595737ns 115119 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6596021ns 115124 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6596476ns 115132 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6596646ns 115135 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6596931ns 115140 1a110850 fd5ff06f jal x0, -44 +6597215ns 115145 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6597499ns 115150 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6597897ns 115157 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6598067ns 115160 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6598522ns 115168 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6598692ns 115171 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6598977ns 115176 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6599261ns 115181 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6599545ns 115186 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6600000ns 115194 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6600170ns 115197 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6600454ns 115202 1a110850 fd5ff06f jal x0, -44 +6600738ns 115207 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6601023ns 115212 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6601420ns 115219 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6601591ns 115222 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6602045ns 115230 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6602216ns 115233 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6602500ns 115238 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6602784ns 115243 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6603068ns 115248 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6603523ns 115256 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6603694ns 115259 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6603978ns 115264 1a110850 fd5ff06f jal x0, -44 +6604262ns 115269 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6604546ns 115274 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6604944ns 115281 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6605114ns 115284 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6605569ns 115292 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6605740ns 115295 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6606024ns 115300 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6606308ns 115305 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6606592ns 115310 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6607047ns 115318 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6607217ns 115321 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6607501ns 115326 1a110850 fd5ff06f jal x0, -44 +6607786ns 115331 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6608070ns 115336 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6608467ns 115343 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6608638ns 115346 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6609093ns 115354 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6609263ns 115357 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6609547ns 115362 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6609831ns 115367 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6610116ns 115372 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6610570ns 115380 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6610741ns 115383 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6611025ns 115388 1a110850 fd5ff06f jal x0, -44 +6611309ns 115393 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6611593ns 115398 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6611991ns 115405 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6612162ns 115408 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6612616ns 115416 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6612787ns 115419 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6613071ns 115424 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6613355ns 115429 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6613639ns 115434 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6614094ns 115442 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6614264ns 115445 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6614549ns 115450 1a110850 fd5ff06f jal x0, -44 +6614833ns 115455 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6615117ns 115460 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6615515ns 115467 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6615685ns 115470 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6616140ns 115478 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6616310ns 115481 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6616594ns 115486 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6616879ns 115491 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6617163ns 115496 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6617617ns 115504 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6617788ns 115507 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6618072ns 115512 1a110850 fd5ff06f jal x0, -44 +6618356ns 115517 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6618640ns 115522 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6619038ns 115529 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6619209ns 115532 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6619663ns 115540 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6619834ns 115543 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6620118ns 115548 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6620402ns 115553 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6620686ns 115558 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6621141ns 115566 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6621312ns 115569 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6621596ns 115574 1a110850 fd5ff06f jal x0, -44 +6621880ns 115579 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6622164ns 115584 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6622562ns 115591 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6622732ns 115594 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6623187ns 115602 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6623357ns 115605 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6623642ns 115610 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6623926ns 115615 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6624210ns 115620 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6624665ns 115628 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6624835ns 115631 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6625119ns 115636 1a110850 fd5ff06f jal x0, -44 +6625403ns 115641 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6625688ns 115646 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6626085ns 115653 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6626256ns 115656 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6626711ns 115664 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6626881ns 115667 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6627165ns 115672 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6627449ns 115677 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6627734ns 115682 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6628188ns 115690 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6628359ns 115693 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6628643ns 115698 1a110850 fd5ff06f jal x0, -44 +6628927ns 115703 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6629211ns 115708 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6629609ns 115715 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6629779ns 115718 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6630234ns 115726 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6630405ns 115729 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6630689ns 115734 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6630973ns 115739 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6631257ns 115744 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6631712ns 115752 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6631882ns 115755 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6632166ns 115760 1a110850 fd5ff06f jal x0, -44 +6632451ns 115765 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6632735ns 115770 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6633133ns 115777 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6633303ns 115780 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6633758ns 115788 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6633928ns 115791 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6634212ns 115796 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6634497ns 115801 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6634781ns 115806 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6635235ns 115814 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6635406ns 115817 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6635690ns 115822 1a110850 fd5ff06f jal x0, -44 +6635974ns 115827 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6636258ns 115832 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6636656ns 115839 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6636827ns 115842 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6637281ns 115850 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6637452ns 115853 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6637736ns 115858 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6638020ns 115863 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6638304ns 115868 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6638759ns 115876 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6638929ns 115879 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6639214ns 115884 1a110850 fd5ff06f jal x0, -44 +6639498ns 115889 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6639782ns 115894 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6640180ns 115901 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6640350ns 115904 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6640805ns 115912 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6640975ns 115915 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6641260ns 115920 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6641544ns 115925 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6641828ns 115930 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6642283ns 115938 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6642453ns 115941 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6642737ns 115946 1a110850 fd5ff06f jal x0, -44 +6643021ns 115951 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6643306ns 115956 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6643703ns 115963 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6643874ns 115966 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6644328ns 115974 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6644499ns 115977 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6644783ns 115982 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6645067ns 115987 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6645351ns 115992 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6645806ns 116000 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6645977ns 116003 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6646261ns 116008 1a110850 fd5ff06f jal x0, -44 +6646545ns 116013 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6646829ns 116018 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6647227ns 116025 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6647397ns 116028 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6647852ns 116036 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6648023ns 116039 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6648307ns 116044 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6648591ns 116049 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6648875ns 116054 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6649330ns 116062 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6649500ns 116065 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6649784ns 116070 1a110850 fd5ff06f jal x0, -44 +6650069ns 116075 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6650353ns 116080 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6650751ns 116087 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6650921ns 116090 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6651376ns 116098 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6651546ns 116101 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6651830ns 116106 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6652114ns 116111 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6652399ns 116116 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6652853ns 116124 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6653024ns 116127 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6653308ns 116132 1a110850 fd5ff06f jal x0, -44 +6653592ns 116137 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6653876ns 116142 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6654274ns 116149 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6654445ns 116152 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6654899ns 116160 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6655070ns 116163 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6655354ns 116168 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6655638ns 116173 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6655922ns 116178 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6656377ns 116186 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6656547ns 116189 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6656832ns 116194 1a110850 fd5ff06f jal x0, -44 +6657116ns 116199 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6657400ns 116204 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6657798ns 116211 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6657968ns 116214 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6658423ns 116222 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6658593ns 116225 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6658877ns 116230 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6659162ns 116235 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6659446ns 116240 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6659900ns 116248 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6660071ns 116251 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6660355ns 116256 1a110850 fd5ff06f jal x0, -44 +6660639ns 116261 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6660923ns 116266 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6661321ns 116273 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6661492ns 116276 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6661946ns 116284 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6662117ns 116287 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6662401ns 116292 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6662685ns 116297 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6662969ns 116302 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6663424ns 116310 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6663595ns 116313 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6663879ns 116318 1a110850 fd5ff06f jal x0, -44 +6664163ns 116323 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6664447ns 116328 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6664845ns 116335 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6665015ns 116338 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6665470ns 116346 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6665640ns 116349 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6665925ns 116354 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6666209ns 116359 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6666493ns 116364 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6666948ns 116372 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6667118ns 116375 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6667402ns 116380 1a110850 fd5ff06f jal x0, -44 +6667686ns 116385 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6667971ns 116390 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6668368ns 116397 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6668539ns 116400 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6668994ns 116408 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6669164ns 116411 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6669448ns 116416 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6669732ns 116421 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6670017ns 116426 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6670471ns 116434 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6670642ns 116437 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6670926ns 116442 1a110850 fd5ff06f jal x0, -44 +6671210ns 116447 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6671494ns 116452 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6671892ns 116459 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6672063ns 116462 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6672517ns 116470 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6672688ns 116473 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6672972ns 116478 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6673256ns 116483 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6673540ns 116488 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6673995ns 116496 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6674165ns 116499 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6674449ns 116504 1a110850 fd5ff06f jal x0, -44 +6674734ns 116509 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6675018ns 116514 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6675416ns 116521 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6675586ns 116524 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6676041ns 116532 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6676211ns 116535 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6676495ns 116540 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6676780ns 116545 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6677064ns 116550 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6677518ns 116558 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6677689ns 116561 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6677973ns 116566 1a110850 fd5ff06f jal x0, -44 +6678257ns 116571 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6678541ns 116576 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6678939ns 116583 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6679110ns 116586 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6679564ns 116594 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6679735ns 116597 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6680019ns 116602 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6680303ns 116607 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6680587ns 116612 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6681042ns 116620 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6681212ns 116623 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6681497ns 116628 1a110850 fd5ff06f jal x0, -44 +6681781ns 116633 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6682065ns 116638 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6682463ns 116645 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6682633ns 116648 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6683088ns 116656 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6683258ns 116659 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6683543ns 116664 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6683827ns 116669 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6684111ns 116674 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6684566ns 116682 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6684736ns 116685 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6685020ns 116690 1a110850 fd5ff06f jal x0, -44 +6685304ns 116695 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6685589ns 116700 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6685986ns 116707 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6686157ns 116710 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6686611ns 116718 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6686782ns 116721 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6687066ns 116726 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6687350ns 116731 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6687634ns 116736 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6688089ns 116744 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6688260ns 116747 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6688544ns 116752 1a110850 fd5ff06f jal x0, -44 +6688828ns 116757 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6689112ns 116762 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6689510ns 116769 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6689680ns 116772 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6690135ns 116780 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6690306ns 116783 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6690590ns 116788 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6690874ns 116793 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6691158ns 116798 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6691613ns 116806 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6691783ns 116809 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6692067ns 116814 1a110850 fd5ff06f jal x0, -44 +6692352ns 116819 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6692636ns 116824 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6693034ns 116831 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6693204ns 116834 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6693659ns 116842 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6693829ns 116845 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6694113ns 116850 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6694397ns 116855 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6694682ns 116860 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6695136ns 116868 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6695307ns 116871 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6695591ns 116876 1a110850 fd5ff06f jal x0, -44 +6695875ns 116881 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6696159ns 116886 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6696557ns 116893 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6696728ns 116896 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6697182ns 116904 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6697353ns 116907 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6697637ns 116912 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6697921ns 116917 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6698205ns 116922 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6698660ns 116930 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6698830ns 116933 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6699115ns 116938 1a110850 fd5ff06f jal x0, -44 +6699399ns 116943 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6699683ns 116948 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6700081ns 116955 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6700251ns 116958 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6700706ns 116966 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6700876ns 116969 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6701160ns 116974 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6701445ns 116979 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6701729ns 116984 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6702183ns 116992 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6702354ns 116995 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6702638ns 117000 1a110850 fd5ff06f jal x0, -44 +6702922ns 117005 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6703206ns 117010 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6703604ns 117017 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6703775ns 117020 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6704229ns 117028 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6704400ns 117031 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6704684ns 117036 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6704968ns 117041 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6705252ns 117046 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6705707ns 117054 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6705878ns 117057 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6706162ns 117062 1a110850 fd5ff06f jal x0, -44 +6706446ns 117067 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6706730ns 117072 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6707128ns 117079 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6707298ns 117082 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6707753ns 117090 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6707923ns 117093 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6708208ns 117098 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6708492ns 117103 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6708776ns 117108 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6709231ns 117116 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6709401ns 117119 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6709685ns 117124 1a110850 fd5ff06f jal x0, -44 +6709969ns 117129 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6710254ns 117134 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6710651ns 117141 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6710822ns 117144 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6711277ns 117152 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6711447ns 117155 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6711731ns 117160 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6712015ns 117165 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6712300ns 117170 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6712754ns 117178 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6712925ns 117181 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6713209ns 117186 1a110850 fd5ff06f jal x0, -44 +6713493ns 117191 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6713777ns 117196 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6714175ns 117203 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6714346ns 117206 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6714800ns 117214 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6714971ns 117217 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6715255ns 117222 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6715539ns 117227 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6715823ns 117232 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6716278ns 117240 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6716448ns 117243 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6716732ns 117248 1a110850 fd5ff06f jal x0, -44 +6717017ns 117253 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6717301ns 117258 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6717699ns 117265 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6717869ns 117268 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6718324ns 117276 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6718494ns 117279 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6718778ns 117284 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6719063ns 117289 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6719347ns 117294 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6719801ns 117302 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6719972ns 117305 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6720256ns 117310 1a110850 fd5ff06f jal x0, -44 +6720540ns 117315 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6720824ns 117320 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6721222ns 117327 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6721393ns 117330 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6721847ns 117338 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6722018ns 117341 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6722302ns 117346 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6722586ns 117351 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6722870ns 117356 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6723325ns 117364 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6723495ns 117367 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6723780ns 117372 1a110850 fd5ff06f jal x0, -44 +6724064ns 117377 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6724348ns 117382 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6724746ns 117389 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6724916ns 117392 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6725371ns 117400 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6725541ns 117403 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6725826ns 117408 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6726110ns 117413 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6726394ns 117418 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6726849ns 117426 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6727019ns 117429 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6727303ns 117434 1a110850 fd5ff06f jal x0, -44 +6727587ns 117439 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6727872ns 117444 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6728269ns 117451 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6728440ns 117454 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6728895ns 117462 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6729065ns 117465 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6729349ns 117470 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6729633ns 117475 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6729917ns 117480 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6730372ns 117488 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6730543ns 117491 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6730827ns 117496 1a110850 fd5ff06f jal x0, -44 +6731111ns 117501 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6731395ns 117506 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6731793ns 117513 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6731963ns 117516 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6732418ns 117524 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6732589ns 117527 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6732873ns 117532 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6733157ns 117537 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6733441ns 117542 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6733896ns 117550 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6734066ns 117553 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6734350ns 117558 1a110850 fd5ff06f jal x0, -44 +6734635ns 117563 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6734919ns 117568 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6735317ns 117575 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6735487ns 117578 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6735942ns 117586 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6736112ns 117589 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6736396ns 117594 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6736680ns 117599 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6736965ns 117604 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6737419ns 117612 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6737590ns 117615 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6737874ns 117620 1a110850 fd5ff06f jal x0, -44 +6738158ns 117625 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6738442ns 117630 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6738840ns 117637 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6739011ns 117640 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6739465ns 117648 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6739636ns 117651 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6739920ns 117656 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6740204ns 117661 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6740488ns 117666 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6740943ns 117674 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6741113ns 117677 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6741398ns 117682 1a110850 fd5ff06f jal x0, -44 +6741682ns 117687 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6741966ns 117692 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6742364ns 117699 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6742534ns 117702 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6742989ns 117710 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6743159ns 117713 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6743443ns 117718 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6743728ns 117723 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6744012ns 117728 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6744466ns 117736 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6744637ns 117739 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6744921ns 117744 1a110850 fd5ff06f jal x0, -44 +6745205ns 117749 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6745489ns 117754 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6745887ns 117761 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6746058ns 117764 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6746512ns 117772 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6746683ns 117775 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6746967ns 117780 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6747251ns 117785 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6747535ns 117790 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6747990ns 117798 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6748161ns 117801 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6748445ns 117806 1a110850 fd5ff06f jal x0, -44 +6748729ns 117811 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6749013ns 117816 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6749411ns 117823 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6749581ns 117826 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6750036ns 117834 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6750207ns 117837 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6750491ns 117842 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6750775ns 117847 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6751059ns 117852 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6751514ns 117860 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6751684ns 117863 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6751968ns 117868 1a110850 fd5ff06f jal x0, -44 +6752252ns 117873 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6752537ns 117878 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6752934ns 117885 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6753105ns 117888 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6753560ns 117896 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6753730ns 117899 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6754014ns 117904 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6754298ns 117909 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6754583ns 117914 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6755037ns 117922 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6755208ns 117925 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6755492ns 117930 1a110850 fd5ff06f jal x0, -44 +6755776ns 117935 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6756060ns 117940 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6756458ns 117947 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6756629ns 117950 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6757083ns 117958 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6757254ns 117961 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6757538ns 117966 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6757822ns 117971 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6758106ns 117976 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6758561ns 117984 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6758731ns 117987 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6759015ns 117992 1a110850 fd5ff06f jal x0, -44 +6759300ns 117997 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6759584ns 118002 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6759982ns 118009 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6760152ns 118012 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6760607ns 118020 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6760777ns 118023 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6761061ns 118028 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6761346ns 118033 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6761630ns 118038 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6762084ns 118046 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6762255ns 118049 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6762539ns 118054 1a110850 fd5ff06f jal x0, -44 +6762823ns 118059 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6763107ns 118064 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6763505ns 118071 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6763676ns 118074 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6764130ns 118082 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6764301ns 118085 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6764585ns 118090 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6764869ns 118095 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6765153ns 118100 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6765608ns 118108 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6765778ns 118111 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6766063ns 118116 1a110850 fd5ff06f jal x0, -44 +6766347ns 118121 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6766631ns 118126 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6767029ns 118133 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6767199ns 118136 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6767654ns 118144 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6767824ns 118147 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6768109ns 118152 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6768393ns 118157 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6768677ns 118162 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6769132ns 118170 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6769302ns 118173 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6769586ns 118178 1a110850 fd5ff06f jal x0, -44 +6769870ns 118183 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6770155ns 118188 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6770552ns 118195 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6770723ns 118198 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6771178ns 118206 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6771348ns 118209 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6771632ns 118214 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6771916ns 118219 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6772200ns 118224 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6772655ns 118232 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6772826ns 118235 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6773110ns 118240 1a110850 fd5ff06f jal x0, -44 +6773394ns 118245 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6773678ns 118250 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6774076ns 118257 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6774246ns 118260 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6774701ns 118268 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6774872ns 118271 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6775156ns 118276 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6775440ns 118281 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6775724ns 118286 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6776179ns 118294 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6776349ns 118297 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6776633ns 118302 1a110850 fd5ff06f jal x0, -44 +6776918ns 118307 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6777202ns 118312 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6777600ns 118319 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6777770ns 118322 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6778225ns 118330 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6778395ns 118333 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6778679ns 118338 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6778963ns 118343 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6779248ns 118348 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6779702ns 118356 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6779873ns 118359 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6780157ns 118364 1a110850 fd5ff06f jal x0, -44 +6780441ns 118369 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6780725ns 118374 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6781123ns 118381 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6781294ns 118384 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6781748ns 118392 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6781919ns 118395 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6782203ns 118400 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6782487ns 118405 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6782771ns 118410 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6783226ns 118418 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6783396ns 118421 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6783681ns 118426 1a110850 fd5ff06f jal x0, -44 +6783965ns 118431 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6784249ns 118436 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6784647ns 118443 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6784817ns 118446 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6785272ns 118454 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6785442ns 118457 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6785727ns 118462 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6786011ns 118467 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6786295ns 118472 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6786749ns 118480 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6786920ns 118483 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6787204ns 118488 1a110850 fd5ff06f jal x0, -44 +6787488ns 118493 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6787772ns 118498 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6788170ns 118505 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6788341ns 118508 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6788795ns 118516 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6788966ns 118519 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6789250ns 118524 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6789534ns 118529 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6789818ns 118534 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6790273ns 118542 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6790444ns 118545 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6790728ns 118550 1a110850 fd5ff06f jal x0, -44 +6791012ns 118555 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6791296ns 118560 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6791694ns 118567 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6791864ns 118570 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6792319ns 118578 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6792490ns 118581 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6792774ns 118586 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6793058ns 118591 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6793342ns 118596 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6793797ns 118604 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6793967ns 118607 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6794251ns 118612 1a110850 fd5ff06f jal x0, -44 +6794535ns 118617 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6794820ns 118622 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6795217ns 118629 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6795388ns 118632 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6795843ns 118640 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6796013ns 118643 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6796297ns 118648 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6796581ns 118653 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6796866ns 118658 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6797320ns 118666 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6797491ns 118669 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6797775ns 118674 1a110850 fd5ff06f jal x0, -44 +6798059ns 118679 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6798343ns 118684 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6798741ns 118691 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6798912ns 118694 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6799366ns 118702 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6799537ns 118705 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6799821ns 118710 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6800105ns 118715 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6800389ns 118720 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6800844ns 118728 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6801014ns 118731 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6801298ns 118736 1a110850 fd5ff06f jal x0, -44 +6801583ns 118741 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6801867ns 118746 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6802265ns 118753 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6802435ns 118756 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6802890ns 118764 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6803060ns 118767 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6803344ns 118772 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6803629ns 118777 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6803913ns 118782 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6804367ns 118790 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6804538ns 118793 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6804822ns 118798 1a110850 fd5ff06f jal x0, -44 +6805106ns 118803 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6805390ns 118808 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6805788ns 118815 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6805959ns 118818 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6806413ns 118826 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6806584ns 118829 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6806868ns 118834 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6807152ns 118839 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6807436ns 118844 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6807891ns 118852 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6808061ns 118855 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6808346ns 118860 1a110850 fd5ff06f jal x0, -44 +6808630ns 118865 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6808914ns 118870 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6809312ns 118877 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6809482ns 118880 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6809937ns 118888 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6810107ns 118891 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6810392ns 118896 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6810676ns 118901 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6810960ns 118906 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6811415ns 118914 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6811585ns 118917 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6811869ns 118922 1a110850 fd5ff06f jal x0, -44 +6812153ns 118927 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6812438ns 118932 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6812835ns 118939 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6813006ns 118942 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6813461ns 118950 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6813631ns 118953 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6813915ns 118958 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6814199ns 118963 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6814483ns 118968 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6814938ns 118976 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6815109ns 118979 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6815393ns 118984 1a110850 fd5ff06f jal x0, -44 +6815677ns 118989 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6815961ns 118994 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6816359ns 119001 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6816529ns 119004 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6816984ns 119012 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6817155ns 119015 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6817439ns 119020 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6817723ns 119025 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6818007ns 119030 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6818462ns 119038 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6818632ns 119041 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6818916ns 119046 1a110850 fd5ff06f jal x0, -44 +6819201ns 119051 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6819485ns 119056 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6819883ns 119063 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6820053ns 119066 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6820508ns 119074 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6820678ns 119077 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6820962ns 119082 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6821247ns 119087 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6821531ns 119092 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6821985ns 119100 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6822156ns 119103 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6822440ns 119108 1a110850 fd5ff06f jal x0, -44 +6822724ns 119113 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6823008ns 119118 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6823406ns 119125 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6823577ns 119128 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6824031ns 119136 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6824202ns 119139 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6824486ns 119144 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6824770ns 119149 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6825054ns 119154 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6825509ns 119162 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6825679ns 119165 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6825964ns 119170 1a110850 fd5ff06f jal x0, -44 +6826248ns 119175 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6826532ns 119180 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6826930ns 119187 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6827100ns 119190 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6827555ns 119198 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6827725ns 119201 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6828010ns 119206 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6828294ns 119211 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6828578ns 119216 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6829032ns 119224 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6829203ns 119227 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6829487ns 119232 1a110850 fd5ff06f jal x0, -44 +6829771ns 119237 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6830055ns 119242 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6830453ns 119249 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6830624ns 119252 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6831078ns 119260 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6831249ns 119263 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6831533ns 119268 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6831817ns 119273 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6832101ns 119278 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6832556ns 119286 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6832727ns 119289 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6833011ns 119294 1a110850 fd5ff06f jal x0, -44 +6833295ns 119299 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6833579ns 119304 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6833977ns 119311 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6834147ns 119314 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6834602ns 119322 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6834773ns 119325 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6835057ns 119330 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6835341ns 119335 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6835625ns 119340 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6836080ns 119348 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6836250ns 119351 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6836534ns 119356 1a110850 fd5ff06f jal x0, -44 +6836818ns 119361 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6837103ns 119366 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6837500ns 119373 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6837671ns 119376 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6838126ns 119384 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6838296ns 119387 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6838580ns 119392 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6838864ns 119397 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6839149ns 119402 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6839603ns 119410 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6839774ns 119413 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6840058ns 119418 1a110850 fd5ff06f jal x0, -44 +6840342ns 119423 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6840626ns 119428 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6841024ns 119435 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6841195ns 119438 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6841649ns 119446 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6841820ns 119449 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6842104ns 119454 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6842388ns 119459 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6842672ns 119464 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6843127ns 119472 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6843297ns 119475 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6843581ns 119480 1a110850 fd5ff06f jal x0, -44 +6843866ns 119485 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6844150ns 119490 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6844548ns 119497 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6844718ns 119500 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6845173ns 119508 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6845343ns 119511 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6845627ns 119516 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6845912ns 119521 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6846196ns 119526 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6846650ns 119534 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6846821ns 119537 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6847105ns 119542 1a110850 fd5ff06f jal x0, -44 +6847389ns 119547 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6847673ns 119552 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6848071ns 119559 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6848242ns 119562 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6848696ns 119570 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6848867ns 119573 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6849151ns 119578 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6849435ns 119583 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6849719ns 119588 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6850174ns 119596 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6850344ns 119599 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6850629ns 119604 1a110850 fd5ff06f jal x0, -44 +6850913ns 119609 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6851197ns 119614 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6851595ns 119621 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6851765ns 119624 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6852220ns 119632 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6852390ns 119635 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6852675ns 119640 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6852959ns 119645 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6853243ns 119650 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6853698ns 119658 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6853868ns 119661 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6854152ns 119666 1a110850 fd5ff06f jal x0, -44 +6854436ns 119671 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6854721ns 119676 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6855118ns 119683 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6855289ns 119686 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6855744ns 119694 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6855914ns 119697 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6856198ns 119702 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6856482ns 119707 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6856767ns 119712 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6857221ns 119720 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6857392ns 119723 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6857676ns 119728 1a110850 fd5ff06f jal x0, -44 +6857960ns 119733 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6858244ns 119738 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6858642ns 119745 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6858812ns 119748 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6859267ns 119756 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6859438ns 119759 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6859722ns 119764 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6860006ns 119769 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6860290ns 119774 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6860745ns 119782 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6860915ns 119785 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6861199ns 119790 1a110850 fd5ff06f jal x0, -44 +6861484ns 119795 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6861768ns 119800 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6862166ns 119807 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6862336ns 119810 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6862791ns 119818 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6862961ns 119821 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6863245ns 119826 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6863530ns 119831 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6863814ns 119836 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6864268ns 119844 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6864439ns 119847 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6864723ns 119852 1a110850 fd5ff06f jal x0, -44 +6865007ns 119857 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6865291ns 119862 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6865689ns 119869 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6865860ns 119872 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6866314ns 119880 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6866485ns 119883 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6866769ns 119888 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6867053ns 119893 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6867337ns 119898 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6867792ns 119906 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6867962ns 119909 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6868247ns 119914 1a110850 fd5ff06f jal x0, -44 +6868531ns 119919 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6868815ns 119924 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6869213ns 119931 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6869383ns 119934 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6869838ns 119942 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6870008ns 119945 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6870293ns 119950 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6870577ns 119955 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6870861ns 119960 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6871315ns 119968 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6871486ns 119971 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6871770ns 119976 1a110850 fd5ff06f jal x0, -44 +6872054ns 119981 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6872338ns 119986 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6872736ns 119993 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6872907ns 119996 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6873361ns 120004 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6873532ns 120007 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6873816ns 120012 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6874100ns 120017 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6874384ns 120022 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6874839ns 120030 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6875010ns 120033 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6875294ns 120038 1a110850 fd5ff06f jal x0, -44 +6875578ns 120043 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6875862ns 120048 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6876260ns 120055 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6876430ns 120058 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6876885ns 120066 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6877056ns 120069 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6877340ns 120074 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6877624ns 120079 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6877908ns 120084 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6878363ns 120092 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6878533ns 120095 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6878817ns 120100 1a110850 fd5ff06f jal x0, -44 +6879101ns 120105 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6879386ns 120110 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6879783ns 120117 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6879954ns 120120 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6880409ns 120128 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6880579ns 120131 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6880863ns 120136 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6881147ns 120141 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6881432ns 120146 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6881886ns 120154 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6882057ns 120157 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6882341ns 120162 1a110850 fd5ff06f jal x0, -44 +6882625ns 120167 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6882909ns 120172 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6883307ns 120179 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6883478ns 120182 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6883932ns 120190 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6884103ns 120193 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6884387ns 120198 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6884671ns 120203 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6884955ns 120208 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6885410ns 120216 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6885580ns 120219 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6885864ns 120224 1a110850 fd5ff06f jal x0, -44 +6886149ns 120229 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6886433ns 120234 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6886831ns 120241 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6887001ns 120244 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6887456ns 120252 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6887626ns 120255 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6887910ns 120260 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6888195ns 120265 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6888479ns 120270 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6888933ns 120278 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6889104ns 120281 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6889388ns 120286 1a110850 fd5ff06f jal x0, -44 +6889672ns 120291 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6889956ns 120296 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6890354ns 120303 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6890525ns 120306 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6890979ns 120314 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6891150ns 120317 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6891434ns 120322 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6891718ns 120327 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6892002ns 120332 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6892457ns 120340 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6892627ns 120343 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6892912ns 120348 1a110850 fd5ff06f jal x0, -44 +6893196ns 120353 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6893480ns 120358 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6893878ns 120365 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6894048ns 120368 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6894503ns 120376 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6894673ns 120379 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6894958ns 120384 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6895242ns 120389 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6895526ns 120394 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6895981ns 120402 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6896151ns 120405 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6896435ns 120410 1a110850 fd5ff06f jal x0, -44 +6896719ns 120415 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6897004ns 120420 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6897401ns 120427 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6897572ns 120430 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6898027ns 120438 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6898197ns 120441 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6898481ns 120446 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6898765ns 120451 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6899050ns 120456 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6899504ns 120464 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6899675ns 120467 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6899959ns 120472 1a110850 fd5ff06f jal x0, -44 +6900243ns 120477 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6900527ns 120482 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6900925ns 120489 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6901095ns 120492 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6901550ns 120500 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6901721ns 120503 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6902005ns 120508 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6902289ns 120513 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6902573ns 120518 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6903028ns 120526 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6903198ns 120529 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6903482ns 120534 1a110850 fd5ff06f jal x0, -44 +6903767ns 120539 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6904051ns 120544 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6904449ns 120551 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6904619ns 120554 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6905074ns 120562 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6905244ns 120565 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6905528ns 120570 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6905813ns 120575 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6906097ns 120580 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6906551ns 120588 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6906722ns 120591 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6907006ns 120596 1a110850 fd5ff06f jal x0, -44 +6907290ns 120601 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6907574ns 120606 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6907972ns 120613 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6908143ns 120616 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6908597ns 120624 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6908768ns 120627 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6909052ns 120632 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6909336ns 120637 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6909620ns 120642 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6910075ns 120650 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6910245ns 120653 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6910530ns 120658 1a110850 fd5ff06f jal x0, -44 +6910814ns 120663 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6911098ns 120668 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6911496ns 120675 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6911666ns 120678 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6912121ns 120686 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6912291ns 120689 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6912576ns 120694 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6912860ns 120699 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6913144ns 120704 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6913599ns 120712 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6913769ns 120715 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6914053ns 120720 1a110850 fd5ff06f jal x0, -44 +6914337ns 120725 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6914621ns 120730 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6915019ns 120737 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6915190ns 120740 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6915644ns 120748 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6915815ns 120751 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6916099ns 120756 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6916383ns 120761 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6916667ns 120766 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6917122ns 120774 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6917293ns 120777 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6917577ns 120782 1a110850 fd5ff06f jal x0, -44 +6917861ns 120787 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6918145ns 120792 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6918543ns 120799 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6918713ns 120802 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6919168ns 120810 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6919339ns 120813 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6919623ns 120818 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6919907ns 120823 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6920191ns 120828 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6920646ns 120836 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6920816ns 120839 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6921100ns 120844 1a110850 fd5ff06f jal x0, -44 +6921384ns 120849 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6921669ns 120854 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6922066ns 120861 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6922237ns 120864 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6922692ns 120872 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6922862ns 120875 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6923146ns 120880 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6923430ns 120885 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6923715ns 120890 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6924169ns 120898 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6924340ns 120901 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6924624ns 120906 1a110850 fd5ff06f jal x0, -44 +6924908ns 120911 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6925192ns 120916 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6925590ns 120923 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6925761ns 120926 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6926215ns 120934 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6926386ns 120937 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6926670ns 120942 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6926954ns 120947 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6927238ns 120952 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6927693ns 120960 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6927863ns 120963 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6928147ns 120968 1a110850 fd5ff06f jal x0, -44 +6928432ns 120973 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6928716ns 120978 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6929114ns 120985 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6929284ns 120988 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6929739ns 120996 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6929909ns 120999 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6930193ns 121004 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6930478ns 121009 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6930762ns 121014 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6931216ns 121022 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6931387ns 121025 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6931671ns 121030 1a110850 fd5ff06f jal x0, -44 +6931955ns 121035 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6932239ns 121040 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6932637ns 121047 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6932808ns 121050 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6933262ns 121058 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6933433ns 121061 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6933717ns 121066 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6934001ns 121071 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6934285ns 121076 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6934740ns 121084 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6934911ns 121087 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6935195ns 121092 1a110850 fd5ff06f jal x0, -44 +6935479ns 121097 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6935763ns 121102 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6936161ns 121109 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6936331ns 121112 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6936786ns 121120 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6936956ns 121123 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6937241ns 121128 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6937525ns 121133 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6937809ns 121138 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6938264ns 121146 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6938434ns 121149 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6938718ns 121154 1a110850 fd5ff06f jal x0, -44 +6939002ns 121159 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6939287ns 121164 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6939684ns 121171 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6939855ns 121174 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6940310ns 121182 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6940480ns 121185 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6940764ns 121190 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6941048ns 121195 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6941333ns 121200 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6941787ns 121208 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6941958ns 121211 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6942242ns 121216 1a110850 fd5ff06f jal x0, -44 +6942526ns 121221 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6942810ns 121226 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6943208ns 121233 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6943378ns 121236 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6943833ns 121244 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6944004ns 121247 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6944288ns 121252 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6944572ns 121257 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6944856ns 121262 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6945311ns 121270 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6945481ns 121273 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6945765ns 121278 1a110850 fd5ff06f jal x0, -44 +6946050ns 121283 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6946334ns 121288 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6946732ns 121295 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6946902ns 121298 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6947357ns 121306 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6947527ns 121309 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6947811ns 121314 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6948096ns 121319 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6948380ns 121324 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6948834ns 121332 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6949005ns 121335 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6949289ns 121340 1a110850 fd5ff06f jal x0, -44 +6949573ns 121345 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6949857ns 121350 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6950255ns 121357 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6950426ns 121360 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6950880ns 121368 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6951051ns 121371 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6951335ns 121376 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6951619ns 121381 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6951903ns 121386 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6952358ns 121394 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6952528ns 121397 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6952813ns 121402 1a110850 fd5ff06f jal x0, -44 +6953097ns 121407 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6953381ns 121412 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6953779ns 121419 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6953949ns 121422 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6954404ns 121430 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6954574ns 121433 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6954859ns 121438 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6955143ns 121443 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6955427ns 121448 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6955882ns 121456 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6956052ns 121459 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6956336ns 121464 1a110850 fd5ff06f jal x0, -44 +6956620ns 121469 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6956904ns 121474 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6957302ns 121481 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6957473ns 121484 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6957927ns 121492 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6958098ns 121495 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6958382ns 121500 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6958666ns 121505 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6958950ns 121510 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6959405ns 121518 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6959576ns 121521 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6959860ns 121526 1a110850 fd5ff06f jal x0, -44 +6960144ns 121531 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6960428ns 121536 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6960826ns 121543 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6960996ns 121546 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6961451ns 121554 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6961622ns 121557 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6961906ns 121562 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6962190ns 121567 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6962474ns 121572 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6962929ns 121580 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6963099ns 121583 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6963383ns 121588 1a110850 fd5ff06f jal x0, -44 +6963667ns 121593 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6963952ns 121598 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6964349ns 121605 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6964520ns 121608 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6964975ns 121616 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6965145ns 121619 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6965429ns 121624 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6965713ns 121629 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6965998ns 121634 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6966452ns 121642 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6966623ns 121645 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6966907ns 121650 1a110850 fd5ff06f jal x0, -44 +6967191ns 121655 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6967475ns 121660 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6967873ns 121667 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6968044ns 121670 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6968498ns 121678 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6968669ns 121681 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6968953ns 121686 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6969237ns 121691 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6969521ns 121696 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6969976ns 121704 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6970146ns 121707 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6970431ns 121712 1a110850 fd5ff06f jal x0, -44 +6970715ns 121717 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6970999ns 121722 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6971397ns 121729 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6971567ns 121732 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6972022ns 121740 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6972192ns 121743 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6972476ns 121748 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6972761ns 121753 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6973045ns 121758 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6973499ns 121766 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6973670ns 121769 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6973954ns 121774 1a110850 fd5ff06f jal x0, -44 +6974238ns 121779 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6974522ns 121784 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6974920ns 121791 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6975091ns 121794 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6975545ns 121802 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6975716ns 121805 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6976000ns 121810 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6976284ns 121815 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6976568ns 121820 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6977023ns 121828 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6977194ns 121831 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6977478ns 121836 1a110850 fd5ff06f jal x0, -44 +6977762ns 121841 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6978046ns 121846 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6978444ns 121853 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6978614ns 121856 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6979069ns 121864 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6979239ns 121867 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6979524ns 121872 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6979808ns 121877 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6980092ns 121882 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6980547ns 121890 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6980717ns 121893 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6981001ns 121898 1a110850 fd5ff06f jal x0, -44 +6981285ns 121903 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6981570ns 121908 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6981967ns 121915 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6982138ns 121918 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6982593ns 121926 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6982763ns 121929 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6983047ns 121934 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6983331ns 121939 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6983616ns 121944 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6984070ns 121952 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6984241ns 121955 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6984525ns 121960 1a110850 fd5ff06f jal x0, -44 +6984809ns 121965 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6985093ns 121970 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6985491ns 121977 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6985661ns 121980 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6986116ns 121988 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6986287ns 121991 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6986571ns 121996 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6986855ns 122001 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6987139ns 122006 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6987594ns 122014 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6987764ns 122017 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6988048ns 122022 1a110850 fd5ff06f jal x0, -44 +6988333ns 122027 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6988617ns 122032 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6989015ns 122039 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6989185ns 122042 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6989640ns 122050 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6989810ns 122053 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6990094ns 122058 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6990379ns 122063 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6990663ns 122068 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6991117ns 122076 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6991288ns 122079 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6991572ns 122084 1a110850 fd5ff06f jal x0, -44 +6991856ns 122089 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6992140ns 122094 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6992538ns 122101 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6992709ns 122104 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6993163ns 122112 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6993334ns 122115 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6993618ns 122120 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6993902ns 122125 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6994186ns 122130 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6994641ns 122138 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6994811ns 122141 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6995096ns 122146 1a110850 fd5ff06f jal x0, -44 +6995380ns 122151 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6995664ns 122156 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6996062ns 122163 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6996232ns 122166 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6996687ns 122174 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +6996857ns 122177 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +6997142ns 122182 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6997426ns 122187 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6997710ns 122192 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +6998165ns 122200 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +6998335ns 122203 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +6998619ns 122208 1a110850 fd5ff06f jal x0, -44 +6998903ns 122213 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +6999187ns 122218 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +6999585ns 122225 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +6999756ns 122228 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7000210ns 122236 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7000381ns 122239 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7000665ns 122244 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7000949ns 122249 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7001233ns 122254 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7001688ns 122262 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7001859ns 122265 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7002143ns 122270 1a110850 fd5ff06f jal x0, -44 +7002427ns 122275 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7002711ns 122280 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7003109ns 122287 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7003279ns 122290 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7003734ns 122298 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7003905ns 122301 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7004189ns 122306 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7004473ns 122311 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7004757ns 122316 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7005212ns 122324 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7005382ns 122327 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7005666ns 122332 1a110850 fd5ff06f jal x0, -44 +7005951ns 122337 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7006235ns 122342 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7006632ns 122349 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7006803ns 122352 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7007258ns 122360 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7007428ns 122363 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7007712ns 122368 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7007996ns 122373 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7008281ns 122378 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7008735ns 122386 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7008906ns 122389 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7009190ns 122394 1a110850 fd5ff06f jal x0, -44 +7009474ns 122399 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7009758ns 122404 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7010156ns 122411 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7010327ns 122414 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7010781ns 122422 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7010952ns 122425 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7011236ns 122430 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7011520ns 122435 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7011804ns 122440 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7012259ns 122448 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7012429ns 122451 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7012714ns 122456 1a110850 fd5ff06f jal x0, -44 +7012998ns 122461 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7013282ns 122466 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7013680ns 122473 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7013850ns 122476 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7014305ns 122484 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7014475ns 122487 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7014759ns 122492 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7015044ns 122497 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7015328ns 122502 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7015782ns 122510 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7015953ns 122513 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7016237ns 122518 1a110850 fd5ff06f jal x0, -44 +7016521ns 122523 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7016805ns 122528 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7017203ns 122535 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7017374ns 122538 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7017828ns 122546 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7017999ns 122549 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7018283ns 122554 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7018567ns 122559 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7018851ns 122564 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7019306ns 122572 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7019477ns 122575 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7019761ns 122580 1a110850 fd5ff06f jal x0, -44 +7020045ns 122585 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7020329ns 122590 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7020727ns 122597 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7020897ns 122600 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7021352ns 122608 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7021522ns 122611 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7021807ns 122616 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7022091ns 122621 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7022375ns 122626 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7022830ns 122634 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7023000ns 122637 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7023284ns 122642 1a110850 fd5ff06f jal x0, -44 +7023568ns 122647 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7023853ns 122652 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7024250ns 122659 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7024421ns 122662 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7024876ns 122670 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7025046ns 122673 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7025330ns 122678 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7025614ns 122683 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7025899ns 122688 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7026353ns 122696 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7026524ns 122699 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7026808ns 122704 1a110850 fd5ff06f jal x0, -44 +7027092ns 122709 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7027376ns 122714 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7027774ns 122721 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7027944ns 122724 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7028399ns 122732 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7028570ns 122735 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7028854ns 122740 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7029138ns 122745 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7029422ns 122750 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7029877ns 122758 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7030047ns 122761 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7030331ns 122766 1a110850 fd5ff06f jal x0, -44 +7030616ns 122771 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7030900ns 122776 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7031298ns 122783 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7031468ns 122786 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7031923ns 122794 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7032093ns 122797 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7032377ns 122802 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7032662ns 122807 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7032946ns 122812 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7033400ns 122820 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7033571ns 122823 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7033855ns 122828 1a110850 fd5ff06f jal x0, -44 +7034139ns 122833 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7034423ns 122838 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7034821ns 122845 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7034992ns 122848 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7035446ns 122856 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7035617ns 122859 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7035901ns 122864 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7036185ns 122869 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7036469ns 122874 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7036924ns 122882 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7037094ns 122885 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7037379ns 122890 1a110850 fd5ff06f jal x0, -44 +7037663ns 122895 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7037947ns 122900 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7038345ns 122907 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7038515ns 122910 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7038970ns 122918 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7039140ns 122921 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7039425ns 122926 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7039709ns 122931 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7039993ns 122936 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7040448ns 122944 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7040618ns 122947 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7040902ns 122952 1a110850 fd5ff06f jal x0, -44 +7041186ns 122957 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7041471ns 122962 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7041868ns 122969 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7042039ns 122972 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7042493ns 122980 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7042664ns 122983 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7042948ns 122988 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7043232ns 122993 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7043516ns 122998 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7043971ns 123006 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7044142ns 123009 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7044426ns 123014 1a110850 fd5ff06f jal x0, -44 +7044710ns 123019 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7044994ns 123024 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7045392ns 123031 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7045562ns 123034 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7046017ns 123042 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7046188ns 123045 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7046472ns 123050 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7046756ns 123055 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7047040ns 123060 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7047495ns 123068 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7047665ns 123071 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7047949ns 123076 1a110850 fd5ff06f jal x0, -44 +7048234ns 123081 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7048518ns 123086 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7048915ns 123093 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7049086ns 123096 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7049541ns 123104 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7049711ns 123107 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7049995ns 123112 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7050279ns 123117 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7050564ns 123122 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7051018ns 123130 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7051189ns 123133 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7051473ns 123138 1a110850 fd5ff06f jal x0, -44 +7051757ns 123143 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7052041ns 123148 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7052439ns 123155 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7052610ns 123158 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7053064ns 123166 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7053235ns 123169 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7053519ns 123174 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7053803ns 123179 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7054087ns 123184 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7054542ns 123192 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7054712ns 123195 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7054997ns 123200 1a110850 fd5ff06f jal x0, -44 +7055281ns 123205 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7055565ns 123210 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7055963ns 123217 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7056133ns 123220 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7056588ns 123228 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7056758ns 123231 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7057042ns 123236 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7057327ns 123241 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7057611ns 123246 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7058065ns 123254 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7058236ns 123257 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7058520ns 123262 1a110850 fd5ff06f jal x0, -44 +7058804ns 123267 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7059088ns 123272 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7059486ns 123279 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7059657ns 123282 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7060111ns 123290 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7060282ns 123293 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7060566ns 123298 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7060850ns 123303 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7061134ns 123308 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7061589ns 123316 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7061760ns 123319 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7062044ns 123324 1a110850 fd5ff06f jal x0, -44 +7062328ns 123329 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7062612ns 123334 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7063010ns 123341 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7063180ns 123344 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7063635ns 123352 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7063805ns 123355 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7064090ns 123360 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7064374ns 123365 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7064658ns 123370 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7065113ns 123378 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7065283ns 123381 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7065567ns 123386 1a110850 fd5ff06f jal x0, -44 +7065851ns 123391 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7066136ns 123396 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7066533ns 123403 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7066704ns 123406 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7067159ns 123414 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7067329ns 123417 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7067613ns 123422 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7067897ns 123427 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7068182ns 123432 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7068636ns 123440 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7068807ns 123443 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7069091ns 123448 1a110850 fd5ff06f jal x0, -44 +7069375ns 123453 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7069659ns 123458 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7070057ns 123465 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7070227ns 123468 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7070682ns 123476 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7070853ns 123479 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7071137ns 123484 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7071421ns 123489 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7071705ns 123494 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7072160ns 123502 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7072330ns 123505 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7072614ns 123510 1a110850 fd5ff06f jal x0, -44 +7072899ns 123515 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7073183ns 123520 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7073581ns 123527 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7073751ns 123530 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7074206ns 123538 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7074376ns 123541 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7074660ns 123546 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7074945ns 123551 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7075229ns 123556 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7075683ns 123564 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7075854ns 123567 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7076138ns 123572 1a110850 fd5ff06f jal x0, -44 +7076422ns 123577 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7076706ns 123582 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7077104ns 123589 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7077275ns 123592 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7077729ns 123600 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7077900ns 123603 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7078184ns 123608 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7078468ns 123613 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7078752ns 123618 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7079207ns 123626 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7079377ns 123629 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7079662ns 123634 1a110850 fd5ff06f jal x0, -44 +7079946ns 123639 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7080230ns 123644 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7080628ns 123651 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7080798ns 123654 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7081253ns 123662 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7081423ns 123665 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7081708ns 123670 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7081992ns 123675 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7082276ns 123680 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7082731ns 123688 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7082901ns 123691 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7083185ns 123696 1a110850 fd5ff06f jal x0, -44 +7083469ns 123701 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7083754ns 123706 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7084151ns 123713 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7084322ns 123716 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7084776ns 123724 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7084947ns 123727 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7085231ns 123732 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7085515ns 123737 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7085799ns 123742 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7086254ns 123750 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7086425ns 123753 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7086709ns 123758 1a110850 fd5ff06f jal x0, -44 +7086993ns 123763 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7087277ns 123768 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7087675ns 123775 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7087845ns 123778 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7088300ns 123786 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7088471ns 123789 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7088755ns 123794 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7089039ns 123799 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7089323ns 123804 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7089778ns 123812 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7089948ns 123815 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7090232ns 123820 1a110850 fd5ff06f jal x0, -44 +7090517ns 123825 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7090801ns 123830 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7091199ns 123837 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7091369ns 123840 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7091824ns 123848 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7091994ns 123851 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7092278ns 123856 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7092562ns 123861 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7092847ns 123866 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7093301ns 123874 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7093472ns 123877 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7093756ns 123882 1a110850 fd5ff06f jal x0, -44 +7094040ns 123887 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7094324ns 123892 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7094722ns 123899 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7094893ns 123902 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7095347ns 123910 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7095518ns 123913 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7095802ns 123918 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7096086ns 123923 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7096370ns 123928 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7096825ns 123936 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7096995ns 123939 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7097280ns 123944 1a110850 fd5ff06f jal x0, -44 +7097564ns 123949 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7097848ns 123954 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7098246ns 123961 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7098416ns 123964 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7098871ns 123972 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7099041ns 123975 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7099325ns 123980 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7099610ns 123985 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7099894ns 123990 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7100348ns 123998 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7100519ns 124001 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7100803ns 124006 1a110850 fd5ff06f jal x0, -44 +7101087ns 124011 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7101371ns 124016 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7101769ns 124023 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7101940ns 124026 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7102394ns 124034 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7102565ns 124037 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7102849ns 124042 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7103133ns 124047 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7103417ns 124052 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7103872ns 124060 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7104043ns 124063 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7104327ns 124068 1a110850 fd5ff06f jal x0, -44 +7104611ns 124073 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7104895ns 124078 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7105293ns 124085 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7105463ns 124088 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7105918ns 124096 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7106088ns 124099 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7106373ns 124104 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7106657ns 124109 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7106941ns 124114 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7107396ns 124122 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7107566ns 124125 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7107850ns 124130 1a110850 fd5ff06f jal x0, -44 +7108134ns 124135 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7108419ns 124140 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7108816ns 124147 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7108987ns 124150 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7109442ns 124158 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7109612ns 124161 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7109896ns 124166 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7110180ns 124171 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7110465ns 124176 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7110919ns 124184 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7111090ns 124187 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7111374ns 124192 1a110850 fd5ff06f jal x0, -44 +7111658ns 124197 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7111942ns 124202 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7112340ns 124209 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7112511ns 124212 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7112965ns 124220 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7113136ns 124223 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7113420ns 124228 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7113704ns 124233 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7113988ns 124238 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7114443ns 124246 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7114613ns 124249 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7114897ns 124254 1a110850 fd5ff06f jal x0, -44 +7115182ns 124259 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7115466ns 124264 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7115864ns 124271 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7116034ns 124274 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7116489ns 124282 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7116659ns 124285 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7116943ns 124290 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7117228ns 124295 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7117512ns 124300 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7117966ns 124308 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7118137ns 124311 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7118421ns 124316 1a110850 fd5ff06f jal x0, -44 +7118705ns 124321 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7118989ns 124326 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7119387ns 124333 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7119558ns 124336 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7120012ns 124344 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7120183ns 124347 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7120467ns 124352 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7120751ns 124357 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7121035ns 124362 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7121490ns 124370 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7121660ns 124373 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7121945ns 124378 1a110850 fd5ff06f jal x0, -44 +7122229ns 124383 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7122513ns 124388 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7122911ns 124395 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7123081ns 124398 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7123536ns 124406 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7123706ns 124409 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7123991ns 124414 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7124275ns 124419 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7124559ns 124424 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7125014ns 124432 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7125184ns 124435 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7125468ns 124440 1a110850 fd5ff06f jal x0, -44 +7125752ns 124445 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7126037ns 124450 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7126434ns 124457 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7126605ns 124460 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7127059ns 124468 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7127230ns 124471 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7127514ns 124476 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7127798ns 124481 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7128082ns 124486 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7128537ns 124494 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7128708ns 124497 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7128992ns 124502 1a110850 fd5ff06f jal x0, -44 +7129276ns 124507 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7129560ns 124512 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7129958ns 124519 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7130128ns 124522 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7130583ns 124530 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7130754ns 124533 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7131038ns 124538 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7131322ns 124543 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7131606ns 124548 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7132061ns 124556 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7132231ns 124559 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7132515ns 124564 1a110850 fd5ff06f jal x0, -44 +7132800ns 124569 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7133084ns 124574 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7133482ns 124581 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7133652ns 124584 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7134107ns 124592 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7134277ns 124595 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7134561ns 124600 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7134845ns 124605 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7135130ns 124610 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7135584ns 124618 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7135755ns 124621 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7136039ns 124626 1a110850 fd5ff06f jal x0, -44 +7136323ns 124631 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7136607ns 124636 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7137005ns 124643 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7137176ns 124646 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7137630ns 124654 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7137801ns 124657 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7138085ns 124662 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7138369ns 124667 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7138653ns 124672 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7139108ns 124680 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7139278ns 124683 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7139563ns 124688 1a110850 fd5ff06f jal x0, -44 +7139847ns 124693 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7140131ns 124698 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7140529ns 124705 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7140699ns 124708 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7141154ns 124716 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7141324ns 124719 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7141608ns 124724 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7141893ns 124729 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7142177ns 124734 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7142631ns 124742 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7142802ns 124745 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7143086ns 124750 1a110850 fd5ff06f jal x0, -44 +7143370ns 124755 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7143654ns 124760 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7144052ns 124767 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7144223ns 124770 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7144677ns 124778 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7144848ns 124781 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7145132ns 124786 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7145416ns 124791 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7145700ns 124796 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7146155ns 124804 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7146326ns 124807 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7146610ns 124812 1a110850 fd5ff06f jal x0, -44 +7146894ns 124817 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7147178ns 124822 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7147576ns 124829 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7147746ns 124832 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7148201ns 124840 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7148371ns 124843 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7148656ns 124848 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7148940ns 124853 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7149224ns 124858 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7149679ns 124866 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7149849ns 124869 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7150133ns 124874 1a110850 fd5ff06f jal x0, -44 +7150417ns 124879 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7150702ns 124884 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7151099ns 124891 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7151270ns 124894 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7151725ns 124902 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7151895ns 124905 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7152179ns 124910 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7152463ns 124915 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7152748ns 124920 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7153202ns 124928 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7153373ns 124931 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7153657ns 124936 1a110850 fd5ff06f jal x0, -44 +7153941ns 124941 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7154225ns 124946 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7154623ns 124953 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7154794ns 124956 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7155248ns 124964 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7155419ns 124967 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7155703ns 124972 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7155987ns 124977 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7156271ns 124982 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7156726ns 124990 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7156896ns 124993 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7157180ns 124998 1a110850 fd5ff06f jal x0, -44 +7157465ns 125003 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7157749ns 125008 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7158147ns 125015 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7158317ns 125018 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7158772ns 125026 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7158942ns 125029 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7159226ns 125034 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7159511ns 125039 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7159795ns 125044 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7160249ns 125052 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7160420ns 125055 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7160704ns 125060 1a110850 fd5ff06f jal x0, -44 +7160988ns 125065 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7161272ns 125070 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7161670ns 125077 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7161841ns 125080 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7162295ns 125088 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7162466ns 125091 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7162750ns 125096 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7163034ns 125101 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7163318ns 125106 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7163773ns 125114 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7163943ns 125117 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7164228ns 125122 1a110850 fd5ff06f jal x0, -44 +7164512ns 125127 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7164796ns 125132 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7165194ns 125139 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7165364ns 125142 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7165819ns 125150 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7165989ns 125153 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7166274ns 125158 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7166558ns 125163 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7166842ns 125168 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7167297ns 125176 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7167467ns 125179 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7167751ns 125184 1a110850 fd5ff06f jal x0, -44 +7168035ns 125189 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7168320ns 125194 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7168717ns 125201 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7168888ns 125204 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7169343ns 125212 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7169513ns 125215 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7169797ns 125220 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7170081ns 125225 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7170365ns 125230 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7170820ns 125238 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7170991ns 125241 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7171275ns 125246 1a110850 fd5ff06f jal x0, -44 +7171559ns 125251 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7171843ns 125256 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7172241ns 125263 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7172411ns 125266 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7172866ns 125274 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7173037ns 125277 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7173321ns 125282 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7173605ns 125287 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7173889ns 125292 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7174344ns 125300 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7174514ns 125303 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7174798ns 125308 1a110850 fd5ff06f jal x0, -44 +7175083ns 125313 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7175367ns 125318 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7175765ns 125325 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7175935ns 125328 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7176390ns 125336 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7176560ns 125339 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7176844ns 125344 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7177128ns 125349 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7177413ns 125354 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7177867ns 125362 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7178038ns 125365 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7178322ns 125370 1a110850 fd5ff06f jal x0, -44 +7178606ns 125375 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7178890ns 125380 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7179288ns 125387 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7179459ns 125390 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7179913ns 125398 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7180084ns 125401 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7180368ns 125406 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7180652ns 125411 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7180936ns 125416 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7181391ns 125424 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7181561ns 125427 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7181846ns 125432 1a110850 fd5ff06f jal x0, -44 +7182130ns 125437 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7182414ns 125442 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7182812ns 125449 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7182982ns 125452 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7183437ns 125460 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7183607ns 125463 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7183891ns 125468 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7184176ns 125473 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7184460ns 125478 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7184914ns 125486 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7185085ns 125489 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7185369ns 125494 1a110850 fd5ff06f jal x0, -44 +7185653ns 125499 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7185937ns 125504 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7186335ns 125511 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7186506ns 125514 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7186960ns 125522 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7187131ns 125525 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7187415ns 125530 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7187699ns 125535 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7187983ns 125540 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7188438ns 125548 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7188609ns 125551 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7188893ns 125556 1a110850 fd5ff06f jal x0, -44 +7189177ns 125561 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7189461ns 125566 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7189859ns 125573 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7190029ns 125576 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7190484ns 125584 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7190655ns 125587 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7190939ns 125592 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7191223ns 125597 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7191507ns 125602 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7191962ns 125610 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7192132ns 125613 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7192416ns 125618 1a110850 fd5ff06f jal x0, -44 +7192700ns 125623 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7192985ns 125628 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7193382ns 125635 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7193553ns 125638 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7194008ns 125646 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7194178ns 125649 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7194462ns 125654 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7194746ns 125659 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7195031ns 125664 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7195485ns 125672 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7195656ns 125675 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7195940ns 125680 1a110850 fd5ff06f jal x0, -44 +7196224ns 125685 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7196508ns 125690 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7196906ns 125697 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7197077ns 125700 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7197531ns 125708 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7197702ns 125711 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7197986ns 125716 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7198270ns 125721 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7198554ns 125726 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7199009ns 125734 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7199179ns 125737 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7199463ns 125742 1a110850 fd5ff06f jal x0, -44 +7199748ns 125747 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7200032ns 125752 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7200430ns 125759 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7200600ns 125762 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7201055ns 125770 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7201225ns 125773 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7201509ns 125778 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7201794ns 125783 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7202078ns 125788 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7202532ns 125796 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7202703ns 125799 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7202987ns 125804 1a110850 fd5ff06f jal x0, -44 +7203271ns 125809 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7203555ns 125814 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7203953ns 125821 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7204124ns 125824 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7204578ns 125832 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7204749ns 125835 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7205033ns 125840 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7205317ns 125845 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7205601ns 125850 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7206056ns 125858 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7206226ns 125861 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7206511ns 125866 1a110850 fd5ff06f jal x0, -44 +7206795ns 125871 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7207079ns 125876 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7207477ns 125883 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7207647ns 125886 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7208102ns 125894 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7208272ns 125897 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7208557ns 125902 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7208841ns 125907 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7209125ns 125912 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7209580ns 125920 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7209750ns 125923 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7210034ns 125928 1a110850 fd5ff06f jal x0, -44 +7210318ns 125933 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7210603ns 125938 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7211000ns 125945 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7211171ns 125948 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7211626ns 125956 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7211796ns 125959 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7212080ns 125964 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7212364ns 125969 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7212648ns 125974 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7213103ns 125982 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7213274ns 125985 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7213558ns 125990 1a110850 fd5ff06f jal x0, -44 +7213842ns 125995 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7214126ns 126000 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7214524ns 126007 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7214694ns 126010 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7215149ns 126018 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7215320ns 126021 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7215604ns 126026 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7215888ns 126031 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7216172ns 126036 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7216627ns 126044 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7216797ns 126047 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7217081ns 126052 1a110850 fd5ff06f jal x0, -44 +7217366ns 126057 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7217650ns 126062 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7218048ns 126069 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7218218ns 126072 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7218673ns 126080 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7218843ns 126083 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7219127ns 126088 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7219411ns 126093 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7219696ns 126098 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7220150ns 126106 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7220321ns 126109 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7220605ns 126114 1a110850 fd5ff06f jal x0, -44 +7220889ns 126119 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7221173ns 126124 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7221571ns 126131 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7221742ns 126134 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7222196ns 126142 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7222367ns 126145 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7222651ns 126150 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7222935ns 126155 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7223219ns 126160 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7223674ns 126168 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7223844ns 126171 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7224129ns 126176 1a110850 fd5ff06f jal x0, -44 +7224413ns 126181 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7224697ns 126186 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7225095ns 126193 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7225265ns 126196 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7225720ns 126204 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7225890ns 126207 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7226175ns 126212 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7226459ns 126217 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7226743ns 126222 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7227197ns 126230 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7227368ns 126233 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7227652ns 126238 1a110850 fd5ff06f jal x0, -44 +7227936ns 126243 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7228220ns 126248 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7228618ns 126255 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7228789ns 126258 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7229243ns 126266 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7229414ns 126269 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7229698ns 126274 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7229982ns 126279 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7230266ns 126284 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7230721ns 126292 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7230892ns 126295 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7231176ns 126300 1a110850 fd5ff06f jal x0, -44 +7231460ns 126305 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7231744ns 126310 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7232142ns 126317 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7232312ns 126320 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7232767ns 126328 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7232938ns 126331 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7233222ns 126336 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7233506ns 126341 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7233790ns 126346 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7234245ns 126354 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7234415ns 126357 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7234699ns 126362 1a110850 fd5ff06f jal x0, -44 +7234983ns 126367 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7235268ns 126372 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7235665ns 126379 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7235836ns 126382 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7236291ns 126390 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7236461ns 126393 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7236745ns 126398 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7237029ns 126403 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7237314ns 126408 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7237768ns 126416 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7237939ns 126419 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7238223ns 126424 1a110850 fd5ff06f jal x0, -44 +7238507ns 126429 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7238791ns 126434 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7239189ns 126441 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7239360ns 126444 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7239814ns 126452 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7239985ns 126455 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7240269ns 126460 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7240553ns 126465 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7240837ns 126470 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7241292ns 126478 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7241462ns 126481 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7241746ns 126486 1a110850 fd5ff06f jal x0, -44 +7242031ns 126491 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7242315ns 126496 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7242713ns 126503 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7242883ns 126506 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7243338ns 126514 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7243508ns 126517 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7243792ns 126522 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7244077ns 126527 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7244361ns 126532 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7244815ns 126540 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7244986ns 126543 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7245270ns 126548 1a110850 fd5ff06f jal x0, -44 +7245554ns 126553 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7245838ns 126558 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7246236ns 126565 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7246407ns 126568 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7246861ns 126576 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7247032ns 126579 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7247316ns 126584 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7247600ns 126589 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7247884ns 126594 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7248339ns 126602 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7248509ns 126605 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7248794ns 126610 1a110850 fd5ff06f jal x0, -44 +7249078ns 126615 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7249362ns 126620 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7249760ns 126627 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7249930ns 126630 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7250385ns 126638 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7250555ns 126641 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7250840ns 126646 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7251124ns 126651 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7251408ns 126656 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7251863ns 126664 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7252033ns 126667 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7252317ns 126672 1a110850 fd5ff06f jal x0, -44 +7252601ns 126677 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7252886ns 126682 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7253283ns 126689 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7253454ns 126692 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7253909ns 126700 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7254079ns 126703 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7254363ns 126708 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7254647ns 126713 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7254931ns 126718 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7255386ns 126726 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7255557ns 126729 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7255841ns 126734 1a110850 fd5ff06f jal x0, -44 +7256125ns 126739 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7256409ns 126744 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7256807ns 126751 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7256977ns 126754 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7257432ns 126762 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7257603ns 126765 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7257887ns 126770 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7258171ns 126775 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7258455ns 126780 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7258910ns 126788 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7259080ns 126791 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7259364ns 126796 1a110850 fd5ff06f jal x0, -44 +7259649ns 126801 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7259933ns 126806 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7260331ns 126813 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7260501ns 126816 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7260956ns 126824 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7261126ns 126827 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7261410ns 126832 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7261695ns 126837 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7261979ns 126842 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7262433ns 126850 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7262604ns 126853 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7262888ns 126858 1a110850 fd5ff06f jal x0, -44 +7263172ns 126863 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7263456ns 126868 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7263854ns 126875 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7264025ns 126878 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7264479ns 126886 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7264650ns 126889 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7264934ns 126894 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7265218ns 126899 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7265502ns 126904 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7265957ns 126912 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7266127ns 126915 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7266412ns 126920 1a110850 fd5ff06f jal x0, -44 +7266696ns 126925 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7266980ns 126930 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7267378ns 126937 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7267548ns 126940 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7268003ns 126948 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7268173ns 126951 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7268458ns 126956 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7268742ns 126961 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7269026ns 126966 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7269480ns 126974 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7269651ns 126977 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7269935ns 126982 1a110850 fd5ff06f jal x0, -44 +7270219ns 126987 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7270503ns 126992 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7270901ns 126999 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7271072ns 127002 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7271526ns 127010 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7271697ns 127013 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7271981ns 127018 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7272265ns 127023 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7272549ns 127028 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7273004ns 127036 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7273175ns 127039 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7273459ns 127044 1a110850 fd5ff06f jal x0, -44 +7273743ns 127049 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7274027ns 127054 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7274425ns 127061 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7274595ns 127064 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7275050ns 127072 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7275221ns 127075 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7275505ns 127080 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7275789ns 127085 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7276073ns 127090 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7276528ns 127098 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7276698ns 127101 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7276982ns 127106 1a110850 fd5ff06f jal x0, -44 +7277266ns 127111 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7277551ns 127116 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7277948ns 127123 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7278119ns 127126 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7278574ns 127134 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7278744ns 127137 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7279028ns 127142 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7279312ns 127147 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7279597ns 127152 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7280051ns 127160 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7280222ns 127163 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7280506ns 127168 1a110850 fd5ff06f jal x0, -44 +7280790ns 127173 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7281074ns 127178 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7281472ns 127185 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7281643ns 127188 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7282097ns 127196 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7282268ns 127199 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7282552ns 127204 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7282836ns 127209 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7283120ns 127214 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7283575ns 127222 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7283745ns 127225 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7284029ns 127230 1a110850 fd5ff06f jal x0, -44 +7284314ns 127235 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7284598ns 127240 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7284996ns 127247 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7285166ns 127250 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7285621ns 127258 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7285791ns 127261 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7286075ns 127266 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7286360ns 127271 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7286644ns 127276 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7287098ns 127284 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7287269ns 127287 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7287553ns 127292 1a110850 fd5ff06f jal x0, -44 +7287837ns 127297 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7288121ns 127302 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7288519ns 127309 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7288690ns 127312 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7289144ns 127320 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7289315ns 127323 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7289599ns 127328 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7289883ns 127333 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7290167ns 127338 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7290622ns 127346 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7290792ns 127349 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7291077ns 127354 1a110850 fd5ff06f jal x0, -44 +7291361ns 127359 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7291645ns 127364 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7292043ns 127371 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7292213ns 127374 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7292668ns 127382 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7292838ns 127385 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7293123ns 127390 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7293407ns 127395 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7293691ns 127400 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7294146ns 127408 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7294316ns 127411 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7294600ns 127416 1a110850 fd5ff06f jal x0, -44 +7294884ns 127421 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7295169ns 127426 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7295566ns 127433 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7295737ns 127436 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7296192ns 127444 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7296362ns 127447 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7296646ns 127452 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7296930ns 127457 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7297215ns 127462 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7297669ns 127470 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7297840ns 127473 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7298124ns 127478 1a110850 fd5ff06f jal x0, -44 +7298408ns 127483 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7298692ns 127488 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7299090ns 127495 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7299260ns 127498 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7299715ns 127506 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7299886ns 127509 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7300170ns 127514 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7300454ns 127519 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7300738ns 127524 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7301193ns 127532 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7301363ns 127535 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7301647ns 127540 1a110850 fd5ff06f jal x0, -44 +7301932ns 127545 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7302216ns 127550 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7302614ns 127557 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7302784ns 127560 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7303239ns 127568 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7303409ns 127571 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7303693ns 127576 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7303978ns 127581 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7304262ns 127586 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7304716ns 127594 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7304887ns 127597 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7305171ns 127602 1a110850 fd5ff06f jal x0, -44 +7305455ns 127607 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7305739ns 127612 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7306137ns 127619 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7306308ns 127622 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7306762ns 127630 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7306933ns 127633 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7307217ns 127638 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7307501ns 127643 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7307785ns 127648 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7308240ns 127656 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7308410ns 127659 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7308695ns 127664 1a110850 fd5ff06f jal x0, -44 +7308979ns 127669 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7309263ns 127674 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7309661ns 127681 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7309831ns 127684 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7310286ns 127692 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7310456ns 127695 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7310741ns 127700 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7311025ns 127705 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7311309ns 127710 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7311763ns 127718 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7311934ns 127721 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7312218ns 127726 1a110850 fd5ff06f jal x0, -44 +7312502ns 127731 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7312786ns 127736 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7313184ns 127743 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7313355ns 127746 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7313809ns 127754 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7313980ns 127757 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7314264ns 127762 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7314548ns 127767 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7314832ns 127772 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7315287ns 127780 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7315458ns 127783 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7315742ns 127788 1a110850 fd5ff06f jal x0, -44 +7316026ns 127793 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7316310ns 127798 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7316708ns 127805 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7316878ns 127808 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7317333ns 127816 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7317504ns 127819 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7317788ns 127824 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7318072ns 127829 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7318356ns 127834 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7318811ns 127842 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7318981ns 127845 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7319265ns 127850 1a110850 fd5ff06f jal x0, -44 +7319549ns 127855 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7319834ns 127860 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7320231ns 127867 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7320402ns 127870 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7320857ns 127878 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7321027ns 127881 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7321311ns 127886 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7321595ns 127891 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7321880ns 127896 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7322334ns 127904 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7322505ns 127907 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7322789ns 127912 1a110850 fd5ff06f jal x0, -44 +7323073ns 127917 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7323357ns 127922 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7323755ns 127929 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7323926ns 127932 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7324380ns 127940 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7324551ns 127943 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7324835ns 127948 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7325119ns 127953 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7325403ns 127958 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7325858ns 127966 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7326028ns 127969 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7326312ns 127974 1a110850 fd5ff06f jal x0, -44 +7326597ns 127979 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7326881ns 127984 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7327279ns 127991 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7327449ns 127994 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7327904ns 128002 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7328074ns 128005 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7328358ns 128010 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7328643ns 128015 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7328927ns 128020 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7329381ns 128028 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7329552ns 128031 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7329836ns 128036 1a110850 fd5ff06f jal x0, -44 +7330120ns 128041 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7330404ns 128046 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7330802ns 128053 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7330973ns 128056 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7331427ns 128064 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7331598ns 128067 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7331882ns 128072 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7332166ns 128077 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7332450ns 128082 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7332905ns 128090 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7333075ns 128093 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7333360ns 128098 1a110850 fd5ff06f jal x0, -44 +7333644ns 128103 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7333928ns 128108 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7334326ns 128115 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7334496ns 128118 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7334951ns 128126 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7335121ns 128129 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7335406ns 128134 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7335690ns 128139 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7335974ns 128144 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7336429ns 128152 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7336599ns 128155 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7336883ns 128160 1a110850 fd5ff06f jal x0, -44 +7337167ns 128165 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7337452ns 128170 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7337849ns 128177 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7338020ns 128180 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7338475ns 128188 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7338645ns 128191 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7338929ns 128196 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7339213ns 128201 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7339498ns 128206 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7339952ns 128214 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7340123ns 128217 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7340407ns 128222 1a110850 fd5ff06f jal x0, -44 +7340691ns 128227 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7340975ns 128232 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7341373ns 128239 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7341543ns 128242 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7341998ns 128250 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7342169ns 128253 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7342453ns 128258 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7342737ns 128263 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7343021ns 128268 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7343476ns 128276 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7343646ns 128279 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7343930ns 128284 1a110850 fd5ff06f jal x0, -44 +7344215ns 128289 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7344499ns 128294 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7344897ns 128301 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7345067ns 128304 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7345522ns 128312 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7345692ns 128315 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7345976ns 128320 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7346261ns 128325 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7346545ns 128330 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7346999ns 128338 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7347170ns 128341 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7347454ns 128346 1a110850 fd5ff06f jal x0, -44 +7347738ns 128351 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7348022ns 128356 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7348420ns 128363 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7348591ns 128366 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7349045ns 128374 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7349216ns 128377 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7349500ns 128382 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7349784ns 128387 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7350068ns 128392 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7350523ns 128400 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7350693ns 128403 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7350978ns 128408 1a110850 fd5ff06f jal x0, -44 +7351262ns 128413 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7351546ns 128418 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7351944ns 128425 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7352114ns 128428 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7352569ns 128436 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7352739ns 128439 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7353024ns 128444 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7353308ns 128449 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7353592ns 128454 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7354047ns 128462 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7354217ns 128465 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7354501ns 128470 1a110850 fd5ff06f jal x0, -44 +7354785ns 128475 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7355069ns 128480 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7355467ns 128487 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7355638ns 128490 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7356092ns 128498 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7356263ns 128501 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7356547ns 128506 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7356831ns 128511 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7357115ns 128516 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7357570ns 128524 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7357741ns 128527 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7358025ns 128532 1a110850 fd5ff06f jal x0, -44 +7358309ns 128537 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7358593ns 128542 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7358991ns 128549 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7359161ns 128552 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7359616ns 128560 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7359787ns 128563 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7360071ns 128568 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7360355ns 128573 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7360639ns 128578 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7361094ns 128586 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7361264ns 128589 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7361548ns 128594 1a110850 fd5ff06f jal x0, -44 +7361832ns 128599 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7362117ns 128604 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7362514ns 128611 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7362685ns 128614 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7363140ns 128622 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7363310ns 128625 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7363594ns 128630 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7363878ns 128635 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7364163ns 128640 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7364617ns 128648 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7364788ns 128651 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7365072ns 128656 1a110850 fd5ff06f jal x0, -44 +7365356ns 128661 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7365640ns 128666 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7366038ns 128673 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7366209ns 128676 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7366663ns 128684 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7366834ns 128687 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7367118ns 128692 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7367402ns 128697 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7367686ns 128702 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7368141ns 128710 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7368311ns 128713 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7368595ns 128718 1a110850 fd5ff06f jal x0, -44 +7368880ns 128723 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7369164ns 128728 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7369562ns 128735 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7369732ns 128738 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7370187ns 128746 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7370357ns 128749 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7370641ns 128754 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7370926ns 128759 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7371210ns 128764 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7371664ns 128772 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7371835ns 128775 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7372119ns 128780 1a110850 fd5ff06f jal x0, -44 +7372403ns 128785 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7372687ns 128790 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7373085ns 128797 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7373256ns 128800 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7373710ns 128808 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7373881ns 128811 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7374165ns 128816 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7374449ns 128821 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7374733ns 128826 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7375188ns 128834 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7375359ns 128837 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7375643ns 128842 1a110850 fd5ff06f jal x0, -44 +7375927ns 128847 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7376211ns 128852 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7376609ns 128859 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7376779ns 128862 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7377234ns 128870 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7377404ns 128873 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7377689ns 128878 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7377973ns 128883 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7378257ns 128888 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7378712ns 128896 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7378882ns 128899 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7379166ns 128904 1a110850 fd5ff06f jal x0, -44 +7379450ns 128909 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7379735ns 128914 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7380132ns 128921 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7380303ns 128924 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7380758ns 128932 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7380928ns 128935 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7381212ns 128940 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7381496ns 128945 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7381781ns 128950 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7382235ns 128958 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7382406ns 128961 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7382690ns 128966 1a110850 fd5ff06f jal x0, -44 +7382974ns 128971 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7383258ns 128976 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7383656ns 128983 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7383826ns 128986 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7384281ns 128994 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7384452ns 128997 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7384736ns 129002 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7385020ns 129007 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7385304ns 129012 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7385759ns 129020 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7385929ns 129023 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7386213ns 129028 1a110850 fd5ff06f jal x0, -44 +7386498ns 129033 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7386782ns 129038 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7387180ns 129045 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7387350ns 129048 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7387805ns 129056 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7387975ns 129059 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7388259ns 129064 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7388544ns 129069 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7388828ns 129074 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7389282ns 129082 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7389453ns 129085 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7389737ns 129090 1a110850 fd5ff06f jal x0, -44 +7390021ns 129095 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7390305ns 129100 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7390703ns 129107 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7390874ns 129110 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7391328ns 129118 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7391499ns 129121 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7391783ns 129126 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7392067ns 129131 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7392351ns 129136 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7392806ns 129144 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7392976ns 129147 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7393261ns 129152 1a110850 fd5ff06f jal x0, -44 +7393545ns 129157 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7393829ns 129162 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7394227ns 129169 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7394397ns 129172 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7394852ns 129180 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7395022ns 129183 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7395307ns 129188 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7395591ns 129193 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7395875ns 129198 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7396330ns 129206 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7396500ns 129209 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7396784ns 129214 1a110850 fd5ff06f jal x0, -44 +7397068ns 129219 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7397352ns 129224 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7397750ns 129231 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7397921ns 129234 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7398375ns 129242 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7398546ns 129245 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7398830ns 129250 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7399114ns 129255 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7399398ns 129260 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7399853ns 129268 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7400024ns 129271 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7400308ns 129276 1a110850 fd5ff06f jal x0, -44 +7400592ns 129281 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7400876ns 129286 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7401274ns 129293 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7401444ns 129296 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7401899ns 129304 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7402070ns 129307 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7402354ns 129312 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7402638ns 129317 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7402922ns 129322 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7403377ns 129330 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7403547ns 129333 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7403831ns 129338 1a110850 fd5ff06f jal x0, -44 +7404115ns 129343 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7404400ns 129348 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7404797ns 129355 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7404968ns 129358 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7405423ns 129366 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7405593ns 129369 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7405877ns 129374 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7406161ns 129379 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7406446ns 129384 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7406900ns 129392 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7407071ns 129395 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7407355ns 129400 1a110850 fd5ff06f jal x0, -44 +7407639ns 129405 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7407923ns 129410 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7408321ns 129417 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7408492ns 129420 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7408946ns 129428 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7409117ns 129431 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7409401ns 129436 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7409685ns 129441 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7409969ns 129446 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7410424ns 129454 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7410594ns 129457 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7410879ns 129462 1a110850 fd5ff06f jal x0, -44 +7411163ns 129467 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7411447ns 129472 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7411845ns 129479 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7412015ns 129482 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7412470ns 129490 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7412640ns 129493 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7412924ns 129498 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7413209ns 129503 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7413493ns 129508 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7413947ns 129516 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7414118ns 129519 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7414402ns 129524 1a110850 fd5ff06f jal x0, -44 +7414686ns 129529 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7414970ns 129534 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7415368ns 129541 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7415539ns 129544 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7415993ns 129552 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7416164ns 129555 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7416448ns 129560 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7416732ns 129565 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7417016ns 129570 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7417471ns 129578 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7417642ns 129581 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7417926ns 129586 1a110850 fd5ff06f jal x0, -44 +7418210ns 129591 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7418494ns 129596 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7418892ns 129603 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7419062ns 129606 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7419517ns 129614 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7419687ns 129617 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7419972ns 129622 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7420256ns 129627 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7420540ns 129632 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7420995ns 129640 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7421165ns 129643 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7421449ns 129648 1a110850 fd5ff06f jal x0, -44 +7421733ns 129653 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7422018ns 129658 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7422415ns 129665 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7422586ns 129668 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7423041ns 129676 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7423211ns 129679 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7423495ns 129684 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7423779ns 129689 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7424064ns 129694 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7424518ns 129702 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7424689ns 129705 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7424973ns 129710 1a110850 fd5ff06f jal x0, -44 +7425257ns 129715 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7425541ns 129720 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7425939ns 129727 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7426109ns 129730 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7426564ns 129738 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7426735ns 129741 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7427019ns 129746 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7427303ns 129751 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7427587ns 129756 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7428042ns 129764 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7428212ns 129767 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7428496ns 129772 1a110850 fd5ff06f jal x0, -44 +7428781ns 129777 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7429065ns 129782 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7429463ns 129789 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7429633ns 129792 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7430088ns 129800 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7430258ns 129803 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7430542ns 129808 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7430827ns 129813 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7431111ns 129818 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7431565ns 129826 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7431736ns 129829 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7432020ns 129834 1a110850 fd5ff06f jal x0, -44 +7432304ns 129839 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7432588ns 129844 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7432986ns 129851 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7433157ns 129854 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7433611ns 129862 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7433782ns 129865 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7434066ns 129870 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7434350ns 129875 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7434634ns 129880 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7435089ns 129888 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7435259ns 129891 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7435544ns 129896 1a110850 fd5ff06f jal x0, -44 +7435828ns 129901 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7436112ns 129906 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7436510ns 129913 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7436680ns 129916 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7437135ns 129924 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7437305ns 129927 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7437590ns 129932 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7437874ns 129937 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7438158ns 129942 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7438613ns 129950 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7438783ns 129953 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7439067ns 129958 1a110850 fd5ff06f jal x0, -44 +7439351ns 129963 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7439635ns 129968 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7440033ns 129975 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7440204ns 129978 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7440658ns 129986 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7440829ns 129989 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7441113ns 129994 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7441397ns 129999 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7441681ns 130004 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7442136ns 130012 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7442307ns 130015 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7442591ns 130020 1a110850 fd5ff06f jal x0, -44 +7442875ns 130025 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7443159ns 130030 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7443557ns 130037 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7443727ns 130040 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7444182ns 130048 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7444353ns 130051 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7444637ns 130056 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7444921ns 130061 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7445205ns 130066 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7445660ns 130074 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7445830ns 130077 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7446114ns 130082 1a110850 fd5ff06f jal x0, -44 +7446399ns 130087 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7446683ns 130092 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7447080ns 130099 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7447251ns 130102 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7447706ns 130110 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7447876ns 130113 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7448160ns 130118 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7448444ns 130123 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7448729ns 130128 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7449183ns 130136 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7449354ns 130139 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7449638ns 130144 1a110850 fd5ff06f jal x0, -44 +7449922ns 130149 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7450206ns 130154 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7450604ns 130161 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7450775ns 130164 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7451229ns 130172 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7451400ns 130175 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7451684ns 130180 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7451968ns 130185 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7452252ns 130190 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7452707ns 130198 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7452877ns 130201 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7453162ns 130206 1a110850 fd5ff06f jal x0, -44 +7453446ns 130211 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7453730ns 130216 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7454128ns 130223 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7454298ns 130226 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7454753ns 130234 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7454923ns 130237 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7455207ns 130242 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7455492ns 130247 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7455776ns 130252 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7456230ns 130260 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7456401ns 130263 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7456685ns 130268 1a110850 fd5ff06f jal x0, -44 +7456969ns 130273 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7457253ns 130278 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7457651ns 130285 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7457822ns 130288 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7458276ns 130296 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7458447ns 130299 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7458731ns 130304 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7459015ns 130309 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7459299ns 130314 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7459754ns 130322 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7459925ns 130325 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7460209ns 130330 1a110850 fd5ff06f jal x0, -44 +7460493ns 130335 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7460777ns 130340 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7461175ns 130347 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7461345ns 130350 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7461800ns 130358 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7461970ns 130361 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7462255ns 130366 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7462539ns 130371 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7462823ns 130376 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7463278ns 130384 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7463448ns 130387 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7463732ns 130392 1a110850 fd5ff06f jal x0, -44 +7464016ns 130397 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7464301ns 130402 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7464698ns 130409 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7464869ns 130412 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7465324ns 130420 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7465494ns 130423 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7465778ns 130428 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7466062ns 130433 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7466347ns 130438 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7466801ns 130446 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7466972ns 130449 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7467256ns 130454 1a110850 fd5ff06f jal x0, -44 +7467540ns 130459 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7467824ns 130464 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7468222ns 130471 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7468392ns 130474 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7468847ns 130482 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7469018ns 130485 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7469302ns 130490 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7469586ns 130495 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7469870ns 130500 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7470325ns 130508 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7470495ns 130511 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7470779ns 130516 1a110850 fd5ff06f jal x0, -44 +7471064ns 130521 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7471348ns 130526 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7471746ns 130533 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7471916ns 130536 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7472371ns 130544 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7472541ns 130547 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7472825ns 130552 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7473110ns 130557 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7473394ns 130562 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7473848ns 130570 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7474019ns 130573 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7474303ns 130578 1a110850 fd5ff06f jal x0, -44 +7474587ns 130583 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7474871ns 130588 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7475269ns 130595 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7475440ns 130598 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7475894ns 130606 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7476065ns 130609 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7476349ns 130614 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7476633ns 130619 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7476917ns 130624 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7477372ns 130632 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7477542ns 130635 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7477827ns 130640 1a110850 fd5ff06f jal x0, -44 +7478111ns 130645 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7478395ns 130650 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7478793ns 130657 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7478963ns 130660 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7479418ns 130668 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7479588ns 130671 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7479873ns 130676 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7480157ns 130681 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7480441ns 130686 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7480896ns 130694 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7481066ns 130697 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7481350ns 130702 1a110850 fd5ff06f jal x0, -44 +7481634ns 130707 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7481919ns 130712 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7482316ns 130719 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7482487ns 130722 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7482941ns 130730 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7483112ns 130733 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7483396ns 130738 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7483680ns 130743 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7483964ns 130748 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7484419ns 130756 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7484590ns 130759 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7484874ns 130764 1a110850 fd5ff06f jal x0, -44 +7485158ns 130769 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7485442ns 130774 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7485840ns 130781 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7486010ns 130784 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7486465ns 130792 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7486636ns 130795 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7486920ns 130800 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7487204ns 130805 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7487488ns 130810 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7487943ns 130818 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7488113ns 130821 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7488397ns 130826 1a110850 fd5ff06f jal x0, -44 +7488682ns 130831 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7488966ns 130836 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7489363ns 130843 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7489534ns 130846 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7489989ns 130854 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7490159ns 130857 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7490443ns 130862 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7490727ns 130867 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7491012ns 130872 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7491466ns 130880 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7491637ns 130883 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7491921ns 130888 1a110850 fd5ff06f jal x0, -44 +7492205ns 130893 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7492489ns 130898 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7492887ns 130905 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7493058ns 130908 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7493512ns 130916 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7493683ns 130919 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7493967ns 130924 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7494251ns 130929 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7494535ns 130934 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7494990ns 130942 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7495160ns 130945 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7495445ns 130950 1a110850 fd5ff06f jal x0, -44 +7495729ns 130955 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7496013ns 130960 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7496411ns 130967 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7496581ns 130970 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7497036ns 130978 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7497206ns 130981 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7497490ns 130986 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7497775ns 130991 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7498059ns 130996 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7498513ns 131004 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7498684ns 131007 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7498968ns 131012 1a110850 fd5ff06f jal x0, -44 +7499252ns 131017 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7499536ns 131022 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7499934ns 131029 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7500105ns 131032 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7500559ns 131040 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7500730ns 131043 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7501014ns 131048 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7501298ns 131053 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7501582ns 131058 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7502037ns 131066 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7502208ns 131069 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7502492ns 131074 1a110850 fd5ff06f jal x0, -44 +7502776ns 131079 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7503060ns 131084 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7503458ns 131091 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7503628ns 131094 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7504083ns 131102 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7504253ns 131105 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7504538ns 131110 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7504822ns 131115 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7505106ns 131120 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7505561ns 131128 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7505731ns 131131 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7506015ns 131136 1a110850 fd5ff06f jal x0, -44 +7506299ns 131141 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7506584ns 131146 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7506981ns 131153 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7507152ns 131156 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7507607ns 131164 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7507777ns 131167 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7508061ns 131172 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7508345ns 131177 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7508630ns 131182 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7509084ns 131190 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7509255ns 131193 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7509539ns 131198 1a110850 fd5ff06f jal x0, -44 +7509823ns 131203 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7510107ns 131208 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7510505ns 131215 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7510675ns 131218 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7511130ns 131226 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7511301ns 131229 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7511585ns 131234 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7511869ns 131239 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7512153ns 131244 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7512608ns 131252 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7512778ns 131255 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7513062ns 131260 1a110850 fd5ff06f jal x0, -44 +7513347ns 131265 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7513631ns 131270 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7514029ns 131277 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7514199ns 131280 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7514654ns 131288 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7514824ns 131291 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7515108ns 131296 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7515393ns 131301 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7515677ns 131306 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7516131ns 131314 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7516302ns 131317 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7516586ns 131322 1a110850 fd5ff06f jal x0, -44 +7516870ns 131327 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7517154ns 131332 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7517552ns 131339 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7517723ns 131342 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7518177ns 131350 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7518348ns 131353 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7518632ns 131358 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7518916ns 131363 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7519200ns 131368 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7519655ns 131376 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7519825ns 131379 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7520110ns 131384 1a110850 fd5ff06f jal x0, -44 +7520394ns 131389 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7520678ns 131394 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7521076ns 131401 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7521246ns 131404 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7521701ns 131412 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7521871ns 131415 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7522156ns 131420 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7522440ns 131425 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7522724ns 131430 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7523179ns 131438 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7523349ns 131441 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7523633ns 131446 1a110850 fd5ff06f jal x0, -44 +7523917ns 131451 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7524202ns 131456 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7524599ns 131463 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7524770ns 131466 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7525224ns 131474 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7525395ns 131477 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7525679ns 131482 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7525963ns 131487 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7526247ns 131492 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7526702ns 131500 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7526873ns 131503 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7527157ns 131508 1a110850 fd5ff06f jal x0, -44 +7527441ns 131513 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7527725ns 131518 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7528123ns 131525 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7528293ns 131528 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7528748ns 131536 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7528919ns 131539 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7529203ns 131544 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7529487ns 131549 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7529771ns 131554 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7530226ns 131562 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7530396ns 131565 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7530680ns 131570 1a110850 fd5ff06f jal x0, -44 +7530965ns 131575 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7531249ns 131580 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7531647ns 131587 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7531817ns 131590 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7532272ns 131598 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7532442ns 131601 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7532726ns 131606 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7533010ns 131611 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7533295ns 131616 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7533749ns 131624 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7533920ns 131627 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7534204ns 131632 1a110850 fd5ff06f jal x0, -44 +7534488ns 131637 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7534772ns 131642 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7535170ns 131649 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7535341ns 131652 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7535795ns 131660 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7535966ns 131663 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7536250ns 131668 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7536534ns 131673 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7536818ns 131678 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7537273ns 131686 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7537443ns 131689 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7537728ns 131694 1a110850 fd5ff06f jal x0, -44 +7538012ns 131699 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7538296ns 131704 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7538694ns 131711 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7538864ns 131714 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7539319ns 131722 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7539489ns 131725 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7539773ns 131730 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7540058ns 131735 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7540342ns 131740 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7540796ns 131748 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7540967ns 131751 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7541251ns 131756 1a110850 fd5ff06f jal x0, -44 +7541535ns 131761 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7541819ns 131766 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7542217ns 131773 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7542388ns 131776 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7542842ns 131784 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7543013ns 131787 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7543297ns 131792 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7543581ns 131797 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7543865ns 131802 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7544320ns 131810 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7544491ns 131813 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7544775ns 131818 1a110850 fd5ff06f jal x0, -44 +7545059ns 131823 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7545343ns 131828 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7545741ns 131835 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7545911ns 131838 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7546366ns 131846 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7546536ns 131849 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7546821ns 131854 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7547105ns 131859 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7547389ns 131864 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7547844ns 131872 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7548014ns 131875 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7548298ns 131880 1a110850 fd5ff06f jal x0, -44 +7548582ns 131885 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7548867ns 131890 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7549264ns 131897 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7549435ns 131900 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7549890ns 131908 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7550060ns 131911 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7550344ns 131916 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7550628ns 131921 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7550913ns 131926 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7551367ns 131934 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7551538ns 131937 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7551822ns 131942 1a110850 fd5ff06f jal x0, -44 +7552106ns 131947 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7552390ns 131952 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7552788ns 131959 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7552959ns 131962 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7553413ns 131970 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7553584ns 131973 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7553868ns 131978 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7554152ns 131983 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7554436ns 131988 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7554891ns 131996 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7555061ns 131999 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7555345ns 132004 1a110850 fd5ff06f jal x0, -44 +7555630ns 132009 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7555914ns 132014 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7556312ns 132021 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7556482ns 132024 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7556937ns 132032 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7557107ns 132035 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7557391ns 132040 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7557676ns 132045 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7557960ns 132050 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7558414ns 132058 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7558585ns 132061 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7558869ns 132066 1a110850 fd5ff06f jal x0, -44 +7559153ns 132071 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7559437ns 132076 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7559835ns 132083 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7560006ns 132086 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7560460ns 132094 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7560631ns 132097 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7560915ns 132102 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7561199ns 132107 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7561483ns 132112 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7561938ns 132120 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7562108ns 132123 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7562393ns 132128 1a110850 fd5ff06f jal x0, -44 +7562677ns 132133 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7562961ns 132138 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7563359ns 132145 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7563529ns 132148 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7563984ns 132156 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7564154ns 132159 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7564439ns 132164 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7564723ns 132169 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7565007ns 132174 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7565462ns 132182 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7565632ns 132185 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7565916ns 132190 1a110850 fd5ff06f jal x0, -44 +7566200ns 132195 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7566485ns 132200 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7566882ns 132207 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7567053ns 132210 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7567507ns 132218 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7567678ns 132221 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7567962ns 132226 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7568246ns 132231 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7568530ns 132236 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7568985ns 132244 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7569156ns 132247 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7569440ns 132252 1a110850 fd5ff06f jal x0, -44 +7569724ns 132257 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7570008ns 132262 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7570406ns 132269 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7570576ns 132272 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7571031ns 132280 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7571202ns 132283 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7571486ns 132288 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7571770ns 132293 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7572054ns 132298 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7572509ns 132306 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7572679ns 132309 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7572963ns 132314 1a110850 fd5ff06f jal x0, -44 +7573248ns 132319 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7573532ns 132324 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7573930ns 132331 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7574100ns 132334 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7574555ns 132342 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7574725ns 132345 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7575009ns 132350 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7575293ns 132355 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7575578ns 132360 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7576032ns 132368 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7576203ns 132371 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7576487ns 132376 1a110850 fd5ff06f jal x0, -44 +7576771ns 132381 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7577055ns 132386 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7577453ns 132393 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7577624ns 132396 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7578078ns 132404 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7578249ns 132407 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7578533ns 132412 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7578817ns 132417 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7579101ns 132422 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7579556ns 132430 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7579726ns 132433 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7580011ns 132438 1a110850 fd5ff06f jal x0, -44 +7580295ns 132443 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7580579ns 132448 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7580977ns 132455 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7581147ns 132458 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7581602ns 132466 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7581772ns 132469 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7582056ns 132474 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7582341ns 132479 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7582625ns 132484 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7583079ns 132492 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7583250ns 132495 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7583534ns 132500 1a110850 fd5ff06f jal x0, -44 +7583818ns 132505 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7584102ns 132510 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7584500ns 132517 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7584671ns 132520 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7585125ns 132528 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7585296ns 132531 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7585580ns 132536 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7585864ns 132541 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7586148ns 132546 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7586603ns 132554 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7586774ns 132557 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7587058ns 132562 1a110850 fd5ff06f jal x0, -44 +7587342ns 132567 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7587626ns 132572 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7588024ns 132579 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7588194ns 132582 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7588649ns 132590 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7588819ns 132593 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7589104ns 132598 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7589388ns 132603 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7589672ns 132608 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7590127ns 132616 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7590297ns 132619 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7590581ns 132624 1a110850 fd5ff06f jal x0, -44 +7590865ns 132629 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7591150ns 132634 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7591547ns 132641 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7591718ns 132644 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7592173ns 132652 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7592343ns 132655 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7592627ns 132660 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7592911ns 132665 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7593196ns 132670 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7593650ns 132678 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7593821ns 132681 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7594105ns 132686 1a110850 fd5ff06f jal x0, -44 +7594389ns 132691 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7594673ns 132696 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7595071ns 132703 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7595242ns 132706 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7595696ns 132714 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7595867ns 132717 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7596151ns 132722 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7596435ns 132727 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7596719ns 132732 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7597174ns 132740 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7597344ns 132743 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7597628ns 132748 1a110850 fd5ff06f jal x0, -44 +7597913ns 132753 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7598197ns 132758 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7598595ns 132765 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7598765ns 132768 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7599220ns 132776 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7599390ns 132779 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7599674ns 132784 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7599959ns 132789 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7600243ns 132794 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7600697ns 132802 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7600868ns 132805 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7601152ns 132810 1a110850 fd5ff06f jal x0, -44 +7601436ns 132815 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7601720ns 132820 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7602118ns 132827 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7602289ns 132830 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7602743ns 132838 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7602914ns 132841 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7603198ns 132846 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7603482ns 132851 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7603766ns 132856 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7604221ns 132864 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7604391ns 132867 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7604676ns 132872 1a110850 fd5ff06f jal x0, -44 +7604960ns 132877 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7605244ns 132882 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7605642ns 132889 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7605812ns 132892 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7606267ns 132900 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7606437ns 132903 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7606722ns 132908 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7607006ns 132913 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7607290ns 132918 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7607745ns 132926 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7607915ns 132929 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7608199ns 132934 1a110850 fd5ff06f jal x0, -44 +7608483ns 132939 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7608768ns 132944 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7609165ns 132951 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7609336ns 132954 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7609791ns 132962 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7609961ns 132965 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7610245ns 132970 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7610529ns 132975 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7610813ns 132980 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7611268ns 132988 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7611439ns 132991 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7611723ns 132996 1a110850 fd5ff06f jal x0, -44 +7612007ns 133001 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7612291ns 133006 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7612689ns 133013 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7612859ns 133016 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7613314ns 133024 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7613485ns 133027 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7613769ns 133032 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7614053ns 133037 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7614337ns 133042 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7614792ns 133050 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7614962ns 133053 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7615246ns 133058 1a110850 fd5ff06f jal x0, -44 +7615531ns 133063 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7615815ns 133068 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7616213ns 133075 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7616383ns 133078 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7616838ns 133086 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7617008ns 133089 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7617292ns 133094 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7617576ns 133099 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7617861ns 133104 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7618315ns 133112 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7618486ns 133115 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7618770ns 133120 1a110850 fd5ff06f jal x0, -44 +7619054ns 133125 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7619338ns 133130 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7619736ns 133137 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7619907ns 133140 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7620361ns 133148 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7620532ns 133151 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7620816ns 133156 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7621100ns 133161 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7621384ns 133166 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7621839ns 133174 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7622009ns 133177 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7622294ns 133182 1a110850 fd5ff06f jal x0, -44 +7622578ns 133187 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7622862ns 133192 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7623260ns 133199 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7623430ns 133202 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7623885ns 133210 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7624055ns 133213 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7624339ns 133218 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7624624ns 133223 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7624908ns 133228 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7625362ns 133236 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7625533ns 133239 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7625817ns 133244 1a110850 fd5ff06f jal x0, -44 +7626101ns 133249 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7626385ns 133254 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7626783ns 133261 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7626954ns 133264 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7627408ns 133272 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7627579ns 133275 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7627863ns 133280 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7628147ns 133285 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7628431ns 133290 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7628886ns 133298 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7629057ns 133301 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7629341ns 133306 1a110850 fd5ff06f jal x0, -44 +7629625ns 133311 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7629909ns 133316 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7630307ns 133323 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7630477ns 133326 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7630932ns 133334 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7631103ns 133337 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7631387ns 133342 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7631671ns 133347 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7631955ns 133352 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7632410ns 133360 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7632580ns 133363 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7632864ns 133368 1a110850 fd5ff06f jal x0, -44 +7633148ns 133373 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7633433ns 133378 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7633830ns 133385 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7634001ns 133388 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7634456ns 133396 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7634626ns 133399 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7634910ns 133404 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7635194ns 133409 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7635479ns 133414 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7635933ns 133422 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7636104ns 133425 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7636388ns 133430 1a110850 fd5ff06f jal x0, -44 +7636672ns 133435 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7636956ns 133440 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7637354ns 133447 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7637525ns 133450 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7637979ns 133458 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7638150ns 133461 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7638434ns 133466 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7638718ns 133471 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7639002ns 133476 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7639457ns 133484 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7639627ns 133487 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7639911ns 133492 1a110850 fd5ff06f jal x0, -44 +7640196ns 133497 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7640480ns 133502 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7640878ns 133509 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7641048ns 133512 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7641503ns 133520 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7641673ns 133523 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7641957ns 133528 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7642242ns 133533 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7642526ns 133538 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7642980ns 133546 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7643151ns 133549 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7643435ns 133554 1a110850 fd5ff06f jal x0, -44 +7643719ns 133559 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7644003ns 133564 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7644401ns 133571 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7644572ns 133574 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7645026ns 133582 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7645197ns 133585 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7645481ns 133590 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7645765ns 133595 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7646049ns 133600 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7646504ns 133608 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7646674ns 133611 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7646959ns 133616 1a110850 fd5ff06f jal x0, -44 +7647243ns 133621 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7647527ns 133626 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7647925ns 133633 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7648095ns 133636 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7648550ns 133644 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7648720ns 133647 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7649005ns 133652 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7649289ns 133657 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7649573ns 133662 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7650028ns 133670 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7650198ns 133673 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7650482ns 133678 1a110850 fd5ff06f jal x0, -44 +7650766ns 133683 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7651051ns 133688 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7651448ns 133695 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7651619ns 133698 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7652074ns 133706 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7652244ns 133709 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7652528ns 133714 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7652812ns 133719 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7653096ns 133724 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7653551ns 133732 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7653722ns 133735 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7654006ns 133740 1a110850 fd5ff06f jal x0, -44 +7654290ns 133745 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7654574ns 133750 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7654972ns 133757 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7655142ns 133760 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7655597ns 133768 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7655768ns 133771 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7656052ns 133776 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7656336ns 133781 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7656620ns 133786 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7657075ns 133794 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7657245ns 133797 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7657529ns 133802 1a110850 fd5ff06f jal x0, -44 +7657814ns 133807 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7658098ns 133812 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7658496ns 133819 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7658666ns 133822 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7659121ns 133830 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7659291ns 133833 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7659575ns 133838 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7659859ns 133843 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7660144ns 133848 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7660598ns 133856 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7660769ns 133859 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7661053ns 133864 1a110850 fd5ff06f jal x0, -44 +7661337ns 133869 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7661621ns 133874 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7662019ns 133881 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7662190ns 133884 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7662644ns 133892 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7662815ns 133895 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7663099ns 133900 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7663383ns 133905 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7663667ns 133910 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7664122ns 133918 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7664292ns 133921 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7664577ns 133926 1a110850 fd5ff06f jal x0, -44 +7664861ns 133931 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7665145ns 133936 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7665543ns 133943 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7665713ns 133946 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7666168ns 133954 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7666338ns 133957 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7666623ns 133962 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7666907ns 133967 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7667191ns 133972 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7667645ns 133980 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7667816ns 133983 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7668100ns 133988 1a110850 fd5ff06f jal x0, -44 +7668384ns 133993 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7668668ns 133998 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7669066ns 134005 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7669237ns 134008 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7669691ns 134016 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7669862ns 134019 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7670146ns 134024 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7670430ns 134029 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7670714ns 134034 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7671169ns 134042 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7671340ns 134045 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7671624ns 134050 1a110850 fd5ff06f jal x0, -44 +7671908ns 134055 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7672192ns 134060 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7672590ns 134067 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7672760ns 134070 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7673215ns 134078 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7673386ns 134081 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7673670ns 134086 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7673954ns 134091 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7674238ns 134096 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7674693ns 134104 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7674863ns 134107 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7675147ns 134112 1a110850 fd5ff06f jal x0, -44 +7675431ns 134117 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7675716ns 134122 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7676113ns 134129 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7676284ns 134132 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7676739ns 134140 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7676909ns 134143 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7677193ns 134148 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7677477ns 134153 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7677762ns 134158 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7678216ns 134166 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7678387ns 134169 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7678671ns 134174 1a110850 fd5ff06f jal x0, -44 +7678955ns 134179 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7679239ns 134184 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7679637ns 134191 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7679808ns 134194 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7680262ns 134202 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7680433ns 134205 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7680717ns 134210 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7681001ns 134215 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7681285ns 134220 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7681740ns 134228 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7681910ns 134231 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7682194ns 134236 1a110850 fd5ff06f jal x0, -44 +7682479ns 134241 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7682763ns 134246 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7683161ns 134253 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7683331ns 134256 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7683786ns 134264 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7683956ns 134267 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7684240ns 134272 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7684525ns 134277 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7684809ns 134282 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7685263ns 134290 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7685434ns 134293 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7685718ns 134298 1a110850 fd5ff06f jal x0, -44 +7686002ns 134303 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7686286ns 134308 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7686684ns 134315 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7686855ns 134318 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7687309ns 134326 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7687480ns 134329 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7687764ns 134334 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7688048ns 134339 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7688332ns 134344 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7688787ns 134352 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7688957ns 134355 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7689242ns 134360 1a110850 fd5ff06f jal x0, -44 +7689526ns 134365 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7689810ns 134370 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7690208ns 134377 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7690378ns 134380 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7690833ns 134388 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7691003ns 134391 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7691288ns 134396 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7691572ns 134401 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7691856ns 134406 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7692311ns 134414 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7692481ns 134417 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7692765ns 134422 1a110850 fd5ff06f jal x0, -44 +7693049ns 134427 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7693334ns 134432 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7693731ns 134439 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7693902ns 134442 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7694357ns 134450 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7694527ns 134453 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7694811ns 134458 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7695095ns 134463 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7695379ns 134468 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7695834ns 134476 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7696005ns 134479 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7696289ns 134484 1a110850 fd5ff06f jal x0, -44 +7696573ns 134489 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7696857ns 134494 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7697255ns 134501 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7697425ns 134504 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7697880ns 134512 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7698051ns 134515 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7698335ns 134520 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7698619ns 134525 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7698903ns 134530 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7699358ns 134538 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7699528ns 134541 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7699812ns 134546 1a110850 fd5ff06f jal x0, -44 +7700097ns 134551 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7700381ns 134556 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7700779ns 134563 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7700949ns 134566 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7701404ns 134574 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7701574ns 134577 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7701858ns 134582 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7702143ns 134587 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7702427ns 134592 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7702881ns 134600 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7703052ns 134603 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7703336ns 134608 1a110850 fd5ff06f jal x0, -44 +7703620ns 134613 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7703904ns 134618 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7704302ns 134625 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7704473ns 134628 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7704927ns 134636 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7705098ns 134639 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7705382ns 134644 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7705666ns 134649 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7705950ns 134654 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7706405ns 134662 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7706575ns 134665 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7706860ns 134670 1a110850 fd5ff06f jal x0, -44 +7707144ns 134675 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7707428ns 134680 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7707826ns 134687 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7707996ns 134690 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7708451ns 134698 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7708621ns 134701 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7708906ns 134706 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7709190ns 134711 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7709474ns 134716 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7709928ns 134724 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7710099ns 134727 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7710383ns 134732 1a110850 fd5ff06f jal x0, -44 +7710667ns 134737 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7710951ns 134742 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7711349ns 134749 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7711520ns 134752 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7711974ns 134760 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7712145ns 134763 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7712429ns 134768 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7712713ns 134773 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7712997ns 134778 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7713452ns 134786 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7713623ns 134789 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7713907ns 134794 1a110850 fd5ff06f jal x0, -44 +7714191ns 134799 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7714475ns 134804 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7714873ns 134811 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7715043ns 134814 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7715498ns 134822 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7715669ns 134825 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7715953ns 134830 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7716237ns 134835 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7716521ns 134840 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7716976ns 134848 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7717146ns 134851 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7717430ns 134856 1a110850 fd5ff06f jal x0, -44 +7717714ns 134861 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7717999ns 134866 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7718396ns 134873 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7718567ns 134876 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7719022ns 134884 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7719192ns 134887 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7719476ns 134892 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7719760ns 134897 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7720045ns 134902 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7720499ns 134910 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7720670ns 134913 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7720954ns 134918 1a110850 fd5ff06f jal x0, -44 +7721238ns 134923 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7721522ns 134928 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7721920ns 134935 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7722091ns 134938 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7722545ns 134946 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7722716ns 134949 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7723000ns 134954 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7723284ns 134959 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7723568ns 134964 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7724023ns 134972 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7724193ns 134975 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7724477ns 134980 1a110850 fd5ff06f jal x0, -44 +7724762ns 134985 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7725046ns 134990 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7725444ns 134997 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7725614ns 135000 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7726069ns 135008 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7726239ns 135011 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7726523ns 135016 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7726808ns 135021 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7727092ns 135026 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7727546ns 135034 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7727717ns 135037 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7728001ns 135042 1a110850 fd5ff06f jal x0, -44 +7728285ns 135047 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7728569ns 135052 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7728967ns 135059 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7729138ns 135062 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7729592ns 135070 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7729763ns 135073 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7730047ns 135078 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7730331ns 135083 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7730615ns 135088 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7731070ns 135096 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7731240ns 135099 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7731525ns 135104 1a110850 fd5ff06f jal x0, -44 +7731809ns 135109 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7732093ns 135114 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7732491ns 135121 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7732661ns 135124 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7733116ns 135132 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7733286ns 135135 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7733571ns 135140 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7733855ns 135145 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7734139ns 135150 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7734594ns 135158 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7734764ns 135161 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7735048ns 135166 1a110850 fd5ff06f jal x0, -44 +7735332ns 135171 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7735617ns 135176 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7736014ns 135183 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7736185ns 135186 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7736640ns 135194 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7736810ns 135197 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7737094ns 135202 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7737378ns 135207 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7737663ns 135212 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7738117ns 135220 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7738288ns 135223 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7738572ns 135228 1a110850 fd5ff06f jal x0, -44 +7738856ns 135233 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7739140ns 135238 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7739538ns 135245 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7739708ns 135248 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7740163ns 135256 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7740334ns 135259 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7740618ns 135264 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7740902ns 135269 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7741186ns 135274 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7741641ns 135282 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7741811ns 135285 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7742095ns 135290 1a110850 fd5ff06f jal x0, -44 +7742380ns 135295 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7742664ns 135300 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7743062ns 135307 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7743232ns 135310 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7743687ns 135318 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7743857ns 135321 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7744141ns 135326 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7744426ns 135331 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7744710ns 135336 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7745164ns 135344 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7745335ns 135347 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7745619ns 135352 1a110850 fd5ff06f jal x0, -44 +7745903ns 135357 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7746187ns 135362 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7746585ns 135369 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7746756ns 135372 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7747210ns 135380 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7747381ns 135383 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7747665ns 135388 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7747949ns 135393 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7748233ns 135398 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7748688ns 135406 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7748858ns 135409 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7749143ns 135414 1a110850 fd5ff06f jal x0, -44 +7749427ns 135419 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7749711ns 135424 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7750109ns 135431 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7750279ns 135434 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7750734ns 135442 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7750904ns 135445 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7751189ns 135450 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7751473ns 135455 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7751757ns 135460 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7752211ns 135468 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7752382ns 135471 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7752666ns 135476 1a110850 fd5ff06f jal x0, -44 +7752950ns 135481 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7753234ns 135486 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7753632ns 135493 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7753803ns 135496 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7754257ns 135504 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7754428ns 135507 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7754712ns 135512 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7754996ns 135517 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7755280ns 135522 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7755735ns 135530 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7755906ns 135533 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7756190ns 135538 1a110850 fd5ff06f jal x0, -44 +7756474ns 135543 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7756758ns 135548 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7757156ns 135555 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7757326ns 135558 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7757781ns 135566 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7757952ns 135569 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7758236ns 135574 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7758520ns 135579 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7758804ns 135584 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7759259ns 135592 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7759429ns 135595 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7759713ns 135600 1a110850 fd5ff06f jal x0, -44 +7759997ns 135605 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7760282ns 135610 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7760679ns 135617 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7760850ns 135620 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7761305ns 135628 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7761475ns 135631 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7761759ns 135636 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7762043ns 135641 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7762328ns 135646 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7762782ns 135654 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7762953ns 135657 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7763237ns 135662 1a110850 fd5ff06f jal x0, -44 +7763521ns 135667 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7763805ns 135672 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7764203ns 135679 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7764374ns 135682 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7764828ns 135690 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7764999ns 135693 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7765283ns 135698 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7765567ns 135703 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7765851ns 135708 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7766306ns 135716 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7766476ns 135719 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7766760ns 135724 1a110850 fd5ff06f jal x0, -44 +7767045ns 135729 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7767329ns 135734 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7767727ns 135741 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7767897ns 135744 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7768352ns 135752 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7768522ns 135755 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7768806ns 135760 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7769091ns 135765 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7769375ns 135770 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7769829ns 135778 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7770000ns 135781 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7770284ns 135786 1a110850 fd5ff06f jal x0, -44 +7770568ns 135791 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7770852ns 135796 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7771250ns 135803 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7771421ns 135806 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7771875ns 135814 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7772046ns 135817 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7772330ns 135822 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7772614ns 135827 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7772898ns 135832 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7773353ns 135840 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7773523ns 135843 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7773808ns 135848 1a110850 fd5ff06f jal x0, -44 +7774092ns 135853 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7774376ns 135858 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7774774ns 135865 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7774944ns 135868 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7775399ns 135876 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7775569ns 135879 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7775854ns 135884 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7776138ns 135889 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7776422ns 135894 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7776877ns 135902 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7777047ns 135905 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7777331ns 135910 1a110850 fd5ff06f jal x0, -44 +7777615ns 135915 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7777900ns 135920 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7778297ns 135927 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7778468ns 135930 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7778923ns 135938 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7779093ns 135941 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7779377ns 135946 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7779661ns 135951 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7779946ns 135956 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7780400ns 135964 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7780571ns 135967 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7780855ns 135972 1a110850 fd5ff06f jal x0, -44 +7781139ns 135977 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7781423ns 135982 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7781821ns 135989 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7781991ns 135992 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7782446ns 136000 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7782617ns 136003 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7782901ns 136008 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7783185ns 136013 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7783469ns 136018 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7783924ns 136026 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7784094ns 136029 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7784378ns 136034 1a110850 fd5ff06f jal x0, -44 +7784663ns 136039 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7784947ns 136044 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7785345ns 136051 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7785515ns 136054 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7785970ns 136062 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7786140ns 136065 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7786424ns 136070 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7786709ns 136075 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7786993ns 136080 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7787447ns 136088 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7787618ns 136091 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7787902ns 136096 1a110850 fd5ff06f jal x0, -44 +7788186ns 136101 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7788470ns 136106 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7788868ns 136113 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7789039ns 136116 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7789493ns 136124 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7789664ns 136127 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7789948ns 136132 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7790232ns 136137 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7790516ns 136142 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7790971ns 136150 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7791141ns 136153 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7791426ns 136158 1a110850 fd5ff06f jal x0, -44 +7791710ns 136163 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7791994ns 136168 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7792392ns 136175 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7792562ns 136178 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7793017ns 136186 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7793187ns 136189 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7793472ns 136194 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7793756ns 136199 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7794040ns 136204 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7794495ns 136212 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7794665ns 136215 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7794949ns 136220 1a110850 fd5ff06f jal x0, -44 +7795233ns 136225 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7795517ns 136230 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7795915ns 136237 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7796086ns 136240 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7796540ns 136248 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7796711ns 136251 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7796995ns 136256 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7797279ns 136261 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7797563ns 136266 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7798018ns 136274 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7798189ns 136277 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7798473ns 136282 1a110850 fd5ff06f jal x0, -44 +7798757ns 136287 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7799041ns 136292 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7799439ns 136299 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7799609ns 136302 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7800064ns 136310 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7800235ns 136313 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7800519ns 136318 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7800803ns 136323 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7801087ns 136328 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7801542ns 136336 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7801712ns 136339 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7801996ns 136344 1a110850 fd5ff06f jal x0, -44 +7802280ns 136349 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7802565ns 136354 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7802962ns 136361 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7803133ns 136364 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7803588ns 136372 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7803758ns 136375 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7804042ns 136380 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7804326ns 136385 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7804611ns 136390 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7805065ns 136398 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7805236ns 136401 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7805520ns 136406 1a110850 fd5ff06f jal x0, -44 +7805804ns 136411 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7806088ns 136416 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7806486ns 136423 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7806657ns 136426 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7807111ns 136434 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7807282ns 136437 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7807566ns 136442 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7807850ns 136447 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7808134ns 136452 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7808589ns 136460 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7808759ns 136463 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7809043ns 136468 1a110850 fd5ff06f jal x0, -44 +7809328ns 136473 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7809612ns 136478 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7810010ns 136485 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7810180ns 136488 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7810635ns 136496 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7810805ns 136499 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7811089ns 136504 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7811374ns 136509 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7811658ns 136514 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7812112ns 136522 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7812283ns 136525 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7812567ns 136530 1a110850 fd5ff06f jal x0, -44 +7812851ns 136535 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7813135ns 136540 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7813533ns 136547 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7813704ns 136550 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7814158ns 136558 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7814329ns 136561 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7814613ns 136566 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7814897ns 136571 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7815181ns 136576 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7815636ns 136584 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7815807ns 136587 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7816091ns 136592 1a110850 fd5ff06f jal x0, -44 +7816375ns 136597 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7816659ns 136602 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7817057ns 136609 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7817227ns 136612 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7817682ns 136620 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7817852ns 136623 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7818137ns 136628 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7818421ns 136633 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7818705ns 136638 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7819160ns 136646 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7819330ns 136649 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7819614ns 136654 1a110850 fd5ff06f jal x0, -44 +7819898ns 136659 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7820183ns 136664 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7820580ns 136671 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7820751ns 136674 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7821206ns 136682 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7821376ns 136685 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7821660ns 136690 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7821944ns 136695 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7822229ns 136700 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7822683ns 136708 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7822854ns 136711 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7823138ns 136716 1a110850 fd5ff06f jal x0, -44 +7823422ns 136721 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7823706ns 136726 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7824104ns 136733 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7824274ns 136736 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7824729ns 136744 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7824900ns 136747 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7825184ns 136752 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7825468ns 136757 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7825752ns 136762 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7826207ns 136770 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7826377ns 136773 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7826661ns 136778 1a110850 fd5ff06f jal x0, -44 +7826946ns 136783 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7827230ns 136788 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7827628ns 136795 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7827798ns 136798 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7828253ns 136806 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7828423ns 136809 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7828707ns 136814 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7828992ns 136819 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7829276ns 136824 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7829730ns 136832 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7829901ns 136835 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7830185ns 136840 1a110850 fd5ff06f jal x0, -44 +7830469ns 136845 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7830753ns 136850 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7831151ns 136857 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7831322ns 136860 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7831776ns 136868 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7831947ns 136871 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7832231ns 136876 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7832515ns 136881 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7832799ns 136886 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7833254ns 136894 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7833424ns 136897 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7833709ns 136902 1a110850 fd5ff06f jal x0, -44 +7833993ns 136907 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7834277ns 136912 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7834675ns 136919 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7834845ns 136922 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7835300ns 136930 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7835470ns 136933 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7835755ns 136938 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7836039ns 136943 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7836323ns 136948 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7836778ns 136956 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7836948ns 136959 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7837232ns 136964 1a110850 fd5ff06f jal x0, -44 +7837516ns 136969 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7837800ns 136974 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7838198ns 136981 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7838369ns 136984 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7838823ns 136992 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7838994ns 136995 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7839278ns 137000 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7839562ns 137005 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7839846ns 137010 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7840301ns 137018 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7840472ns 137021 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7840756ns 137026 1a110850 fd5ff06f jal x0, -44 +7841040ns 137031 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7841324ns 137036 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7841722ns 137043 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7841892ns 137046 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7842347ns 137054 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7842518ns 137057 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7842802ns 137062 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7843086ns 137067 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7843370ns 137072 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7843825ns 137080 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7843995ns 137083 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7844279ns 137088 1a110850 fd5ff06f jal x0, -44 +7844563ns 137093 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7844848ns 137098 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7845245ns 137105 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7845416ns 137108 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7845871ns 137116 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7846041ns 137119 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7846325ns 137124 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7846609ns 137129 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7846894ns 137134 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7847348ns 137142 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7847519ns 137145 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7847803ns 137150 1a110850 fd5ff06f jal x0, -44 +7848087ns 137155 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7848371ns 137160 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7848769ns 137167 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7848940ns 137170 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7849394ns 137178 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7849565ns 137181 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7849849ns 137186 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7850133ns 137191 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7850417ns 137196 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7850872ns 137204 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7851042ns 137207 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7851327ns 137212 1a110850 fd5ff06f jal x0, -44 +7851611ns 137217 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7851895ns 137222 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7852293ns 137229 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7852463ns 137232 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7852918ns 137240 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7853088ns 137243 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7853372ns 137248 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7853657ns 137253 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7853941ns 137258 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7854395ns 137266 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7854566ns 137269 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7854850ns 137274 1a110850 fd5ff06f jal x0, -44 +7855134ns 137279 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7855418ns 137284 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7855816ns 137291 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7855987ns 137294 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7856441ns 137302 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7856612ns 137305 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7856896ns 137310 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7857180ns 137315 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7857464ns 137320 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7857919ns 137328 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7858090ns 137331 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7858374ns 137336 1a110850 fd5ff06f jal x0, -44 +7858658ns 137341 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7858942ns 137346 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7859340ns 137353 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7859510ns 137356 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7859965ns 137364 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7860135ns 137367 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7860420ns 137372 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7860704ns 137377 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7860988ns 137382 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7861443ns 137390 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7861613ns 137393 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7861897ns 137398 1a110850 fd5ff06f jal x0, -44 +7862181ns 137403 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7862466ns 137408 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7862863ns 137415 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7863034ns 137418 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7863489ns 137426 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7863659ns 137429 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7863943ns 137434 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7864227ns 137439 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7864512ns 137444 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7864966ns 137452 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7865137ns 137455 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7865421ns 137460 1a110850 fd5ff06f jal x0, -44 +7865705ns 137465 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7865989ns 137470 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7866387ns 137477 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7866557ns 137480 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7867012ns 137488 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7867183ns 137491 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7867467ns 137496 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7867751ns 137501 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7868035ns 137506 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7868490ns 137514 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7868660ns 137517 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7868944ns 137522 1a110850 fd5ff06f jal x0, -44 +7869229ns 137527 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7869513ns 137532 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7869911ns 137539 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7870081ns 137542 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7870536ns 137550 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7870706ns 137553 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7870990ns 137558 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7871275ns 137563 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7871559ns 137568 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7872013ns 137576 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7872184ns 137579 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7872468ns 137584 1a110850 fd5ff06f jal x0, -44 +7872752ns 137589 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7873036ns 137594 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7873434ns 137601 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7873605ns 137604 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7874059ns 137612 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7874230ns 137615 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7874514ns 137620 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7874798ns 137625 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7875082ns 137630 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7875537ns 137638 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7875707ns 137641 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7875992ns 137646 1a110850 fd5ff06f jal x0, -44 +7876276ns 137651 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7876560ns 137656 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7876958ns 137663 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7877128ns 137666 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7877583ns 137674 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7877753ns 137677 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7878038ns 137682 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7878322ns 137687 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7878606ns 137692 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7879061ns 137700 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7879231ns 137703 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7879515ns 137708 1a110850 fd5ff06f jal x0, -44 +7879799ns 137713 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7880083ns 137718 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7880481ns 137725 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7880652ns 137728 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7881106ns 137736 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7881277ns 137739 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7881561ns 137744 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7881845ns 137749 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7882129ns 137754 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7882584ns 137762 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7882755ns 137765 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7883039ns 137770 1a110850 fd5ff06f jal x0, -44 +7883323ns 137775 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7883607ns 137780 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7884005ns 137787 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7884175ns 137790 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7884630ns 137798 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7884801ns 137801 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7885085ns 137806 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7885369ns 137811 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7885653ns 137816 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7886108ns 137824 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7886278ns 137827 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7886562ns 137832 1a110850 fd5ff06f jal x0, -44 +7886847ns 137837 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7887131ns 137842 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7887528ns 137849 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7887699ns 137852 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7888154ns 137860 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7888324ns 137863 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7888608ns 137868 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7888892ns 137873 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7889177ns 137878 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7889631ns 137886 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7889802ns 137889 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7890086ns 137894 1a110850 fd5ff06f jal x0, -44 +7890370ns 137899 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7890654ns 137904 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7891052ns 137911 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7891223ns 137914 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7891677ns 137922 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7891848ns 137925 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7892132ns 137930 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7892416ns 137935 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7892700ns 137940 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7893155ns 137948 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7893325ns 137951 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7893610ns 137956 1a110850 fd5ff06f jal x0, -44 +7893894ns 137961 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7894178ns 137966 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7894576ns 137973 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7894746ns 137976 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7895201ns 137984 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7895371ns 137987 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7895655ns 137992 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7895940ns 137997 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7896224ns 138002 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7896678ns 138010 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7896849ns 138013 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7897133ns 138018 1a110850 fd5ff06f jal x0, -44 +7897417ns 138023 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7897701ns 138028 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7898099ns 138035 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7898270ns 138038 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7898724ns 138046 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7898895ns 138049 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7899179ns 138054 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7899463ns 138059 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7899747ns 138064 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7900202ns 138072 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7900373ns 138075 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7900657ns 138080 1a110850 fd5ff06f jal x0, -44 +7900941ns 138085 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7901225ns 138090 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7901623ns 138097 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7901793ns 138100 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7902248ns 138108 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7902418ns 138111 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7902703ns 138116 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7902987ns 138121 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7903271ns 138126 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7903726ns 138134 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7903896ns 138137 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7904180ns 138142 1a110850 fd5ff06f jal x0, -44 +7904464ns 138147 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7904749ns 138152 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7905146ns 138159 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7905317ns 138162 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7905772ns 138170 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7905942ns 138173 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7906226ns 138178 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7906510ns 138183 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7906795ns 138188 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7907249ns 138196 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7907420ns 138199 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7907704ns 138204 1a110850 fd5ff06f jal x0, -44 +7907988ns 138209 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7908272ns 138214 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7908670ns 138221 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7908840ns 138224 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7909295ns 138232 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7909466ns 138235 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7909750ns 138240 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7910034ns 138245 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7910318ns 138250 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7910773ns 138258 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7910943ns 138261 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7911227ns 138266 1a110850 fd5ff06f jal x0, -44 +7911512ns 138271 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7911796ns 138276 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7912194ns 138283 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7912364ns 138286 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7912819ns 138294 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7912989ns 138297 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7913273ns 138302 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7913558ns 138307 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7913842ns 138312 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7914296ns 138320 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7914467ns 138323 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7914751ns 138328 1a110850 fd5ff06f jal x0, -44 +7915035ns 138333 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7915319ns 138338 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7915717ns 138345 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7915888ns 138348 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7916342ns 138356 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7916513ns 138359 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7916797ns 138364 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7917081ns 138369 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7917365ns 138374 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7917820ns 138382 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7917990ns 138385 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7918275ns 138390 1a110850 fd5ff06f jal x0, -44 +7918559ns 138395 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7918843ns 138400 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7919241ns 138407 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7919411ns 138410 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7919866ns 138418 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7920036ns 138421 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7920321ns 138426 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7920605ns 138431 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7920889ns 138436 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7921344ns 138444 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7921514ns 138447 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7921798ns 138452 1a110850 fd5ff06f jal x0, -44 +7922082ns 138457 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7922367ns 138462 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7922764ns 138469 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7922935ns 138472 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7923389ns 138480 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7923560ns 138483 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7923844ns 138488 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7924128ns 138493 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7924412ns 138498 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7924867ns 138506 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7925038ns 138509 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7925322ns 138514 1a110850 fd5ff06f jal x0, -44 +7925606ns 138519 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7925890ns 138524 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7926288ns 138531 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7926458ns 138534 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7926913ns 138542 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7927084ns 138545 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7927368ns 138550 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7927652ns 138555 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7927936ns 138560 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7928391ns 138568 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7928561ns 138571 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7928845ns 138576 1a110850 fd5ff06f jal x0, -44 +7929130ns 138581 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7929414ns 138586 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7929811ns 138593 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7929982ns 138596 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7930437ns 138604 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7930607ns 138607 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7930891ns 138612 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7931175ns 138617 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7931460ns 138622 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7931914ns 138630 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7932085ns 138633 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7932369ns 138638 1a110850 fd5ff06f jal x0, -44 +7932653ns 138643 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7932937ns 138648 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7933335ns 138655 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7933506ns 138658 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7933960ns 138666 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7934131ns 138669 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7934415ns 138674 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7934699ns 138679 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7934983ns 138684 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7935438ns 138692 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7935608ns 138695 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7935893ns 138700 1a110850 fd5ff06f jal x0, -44 +7936177ns 138705 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7936461ns 138710 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7936859ns 138717 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7937029ns 138720 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7937484ns 138728 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7937654ns 138731 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7937938ns 138736 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7938223ns 138741 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7938507ns 138746 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7938961ns 138754 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7939132ns 138757 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7939416ns 138762 1a110850 fd5ff06f jal x0, -44 +7939700ns 138767 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7939984ns 138772 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7940382ns 138779 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7940553ns 138782 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7941007ns 138790 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7941178ns 138793 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7941462ns 138798 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7941746ns 138803 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7942030ns 138808 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7942485ns 138816 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7942656ns 138819 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7942940ns 138824 1a110850 fd5ff06f jal x0, -44 +7943224ns 138829 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7943508ns 138834 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7943906ns 138841 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7944076ns 138844 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7944531ns 138852 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7944701ns 138855 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7944986ns 138860 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7945270ns 138865 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7945554ns 138870 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7946009ns 138878 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7946179ns 138881 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7946463ns 138886 1a110850 fd5ff06f jal x0, -44 +7946747ns 138891 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7947032ns 138896 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7947429ns 138903 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7947600ns 138906 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7948055ns 138914 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7948225ns 138917 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7948509ns 138922 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7948793ns 138927 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7949078ns 138932 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7949532ns 138940 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7949703ns 138943 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7949987ns 138948 1a110850 fd5ff06f jal x0, -44 +7950271ns 138953 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7950555ns 138958 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7950953ns 138965 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7951123ns 138968 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7951578ns 138976 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7951749ns 138979 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7952033ns 138984 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7952317ns 138989 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7952601ns 138994 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7953056ns 139002 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7953226ns 139005 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7953510ns 139010 1a110850 fd5ff06f jal x0, -44 +7953795ns 139015 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7954079ns 139020 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7954477ns 139027 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7954647ns 139030 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7955102ns 139038 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7955272ns 139041 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7955556ns 139046 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7955841ns 139051 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7956125ns 139056 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7956579ns 139064 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7956750ns 139067 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7957034ns 139072 1a110850 fd5ff06f jal x0, -44 +7957318ns 139077 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7957602ns 139082 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7958000ns 139089 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7958171ns 139092 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7958625ns 139100 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7958796ns 139103 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7959080ns 139108 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7959364ns 139113 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7959648ns 139118 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7960103ns 139126 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7960273ns 139129 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7960558ns 139134 1a110850 fd5ff06f jal x0, -44 +7960842ns 139139 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7961126ns 139144 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7961524ns 139151 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7961694ns 139154 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7962149ns 139162 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7962319ns 139165 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7962604ns 139170 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7962888ns 139175 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7963172ns 139180 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7963627ns 139188 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7963797ns 139191 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7964081ns 139196 1a110850 fd5ff06f jal x0, -44 +7964365ns 139201 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7964650ns 139206 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7965047ns 139213 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7965218ns 139216 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7965672ns 139224 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7965843ns 139227 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7966127ns 139232 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7966411ns 139237 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7966695ns 139242 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7967150ns 139250 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7967321ns 139253 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7967605ns 139258 1a110850 fd5ff06f jal x0, -44 +7967889ns 139263 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7968173ns 139268 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7968571ns 139275 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7968741ns 139278 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7969196ns 139286 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7969367ns 139289 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7969651ns 139294 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7969935ns 139299 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7970219ns 139304 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7970674ns 139312 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7970844ns 139315 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7971128ns 139320 1a110850 fd5ff06f jal x0, -44 +7971413ns 139325 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7971697ns 139330 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7972095ns 139337 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7972265ns 139340 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7972720ns 139348 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7972890ns 139351 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7973174ns 139356 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7973458ns 139361 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7973743ns 139366 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7974197ns 139374 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7974368ns 139377 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7974652ns 139382 1a110850 fd5ff06f jal x0, -44 +7974936ns 139387 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7975220ns 139392 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7975618ns 139399 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7975789ns 139402 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7976243ns 139410 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7976414ns 139413 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7976698ns 139418 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7976982ns 139423 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7977266ns 139428 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7977721ns 139436 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7977891ns 139439 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7978176ns 139444 1a110850 fd5ff06f jal x0, -44 +7978460ns 139449 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7978744ns 139454 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7979142ns 139461 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7979312ns 139464 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7979767ns 139472 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7979937ns 139475 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7980221ns 139480 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7980506ns 139485 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7980790ns 139490 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7981244ns 139498 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7981415ns 139501 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7981699ns 139506 1a110850 fd5ff06f jal x0, -44 +7981983ns 139511 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7982267ns 139516 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7982665ns 139523 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7982836ns 139526 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7983290ns 139534 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7983461ns 139537 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7983745ns 139542 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7984029ns 139547 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7984313ns 139552 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7984768ns 139560 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7984939ns 139563 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7985223ns 139568 1a110850 fd5ff06f jal x0, -44 +7985507ns 139573 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7985791ns 139578 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7986189ns 139585 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7986359ns 139588 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7986814ns 139596 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7986984ns 139599 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7987269ns 139604 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7987553ns 139609 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7987837ns 139614 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7988292ns 139622 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7988462ns 139625 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7988746ns 139630 1a110850 fd5ff06f jal x0, -44 +7989030ns 139635 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7989315ns 139640 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7989712ns 139647 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7989883ns 139650 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7990338ns 139658 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7990508ns 139661 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7990792ns 139666 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7991076ns 139671 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7991361ns 139676 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7991815ns 139684 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7991986ns 139687 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7992270ns 139692 1a110850 fd5ff06f jal x0, -44 +7992554ns 139697 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7992838ns 139702 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7993236ns 139709 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7993407ns 139712 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7993861ns 139720 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7994032ns 139723 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7994316ns 139728 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7994600ns 139733 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7994884ns 139738 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7995339ns 139746 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7995509ns 139749 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7995793ns 139754 1a110850 fd5ff06f jal x0, -44 +7996078ns 139759 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7996362ns 139764 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +7996760ns 139771 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7996930ns 139774 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7997385ns 139782 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +7997555ns 139785 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +7997839ns 139790 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7998124ns 139795 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +7998408ns 139800 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +7998862ns 139808 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +7999033ns 139811 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +7999317ns 139816 1a110850 fd5ff06f jal x0, -44 +7999601ns 139821 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +7999885ns 139826 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8000283ns 139833 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8000454ns 139836 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8000908ns 139844 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8001079ns 139847 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8001363ns 139852 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8001647ns 139857 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8001931ns 139862 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8002386ns 139870 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8002556ns 139873 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8002841ns 139878 1a110850 fd5ff06f jal x0, -44 +8003125ns 139883 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8003409ns 139888 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8003807ns 139895 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8003977ns 139898 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8004432ns 139906 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8004602ns 139909 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8004887ns 139914 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8005171ns 139919 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8005455ns 139924 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8005910ns 139932 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8006080ns 139935 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8006364ns 139940 1a110850 fd5ff06f jal x0, -44 +8006648ns 139945 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8006933ns 139950 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8007330ns 139957 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8007501ns 139960 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8007955ns 139968 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8008126ns 139971 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8008410ns 139976 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8008694ns 139981 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8008978ns 139986 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8009433ns 139994 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8009604ns 139997 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8009888ns 140002 1a110850 fd5ff06f jal x0, -44 +8010172ns 140007 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8010456ns 140012 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8010854ns 140019 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8011024ns 140022 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8011479ns 140030 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8011650ns 140033 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8011934ns 140038 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8012218ns 140043 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8012502ns 140048 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8012957ns 140056 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8013127ns 140059 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8013411ns 140064 1a110850 fd5ff06f jal x0, -44 +8013696ns 140069 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8013980ns 140074 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8014378ns 140081 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8014548ns 140084 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8015003ns 140092 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8015173ns 140095 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8015457ns 140100 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8015741ns 140105 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8016026ns 140110 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8016480ns 140118 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8016651ns 140121 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8016935ns 140126 1a110850 fd5ff06f jal x0, -44 +8017219ns 140131 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8017503ns 140136 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8017901ns 140143 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8018072ns 140146 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8018526ns 140154 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8018697ns 140157 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8018981ns 140162 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8019265ns 140167 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8019549ns 140172 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8020004ns 140180 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8020174ns 140183 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8020459ns 140188 1a110850 fd5ff06f jal x0, -44 +8020743ns 140193 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8021027ns 140198 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8021425ns 140205 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8021595ns 140208 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8022050ns 140216 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8022220ns 140219 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8022504ns 140224 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8022789ns 140229 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8023073ns 140234 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8023527ns 140242 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8023698ns 140245 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8023982ns 140250 1a110850 fd5ff06f jal x0, -44 +8024266ns 140255 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8024550ns 140260 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8024948ns 140267 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8025119ns 140270 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8025573ns 140278 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8025744ns 140281 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8026028ns 140286 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8026312ns 140291 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8026596ns 140296 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8027051ns 140304 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8027222ns 140307 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8027506ns 140312 1a110850 fd5ff06f jal x0, -44 +8027790ns 140317 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8028074ns 140322 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8028472ns 140329 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8028642ns 140332 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8029097ns 140340 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8029267ns 140343 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8029552ns 140348 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8029836ns 140353 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8030120ns 140358 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8030575ns 140366 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8030745ns 140369 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8031029ns 140374 1a110850 fd5ff06f jal x0, -44 +8031313ns 140379 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8031598ns 140384 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8031995ns 140391 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8032166ns 140394 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8032621ns 140402 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8032791ns 140405 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8033075ns 140410 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8033359ns 140415 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8033644ns 140420 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8034098ns 140428 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8034269ns 140431 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8034553ns 140436 1a110850 fd5ff06f jal x0, -44 +8034837ns 140441 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8035121ns 140446 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8035519ns 140453 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8035690ns 140456 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8036144ns 140464 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8036315ns 140467 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8036599ns 140472 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8036883ns 140477 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8037167ns 140482 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8037622ns 140490 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8037792ns 140493 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8038076ns 140498 1a110850 fd5ff06f jal x0, -44 +8038361ns 140503 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8038645ns 140508 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8039043ns 140515 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8039213ns 140518 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8039668ns 140526 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8039838ns 140529 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8040122ns 140534 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8040407ns 140539 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8040691ns 140544 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8041145ns 140552 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8041316ns 140555 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8041600ns 140560 1a110850 fd5ff06f jal x0, -44 +8041884ns 140565 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8042168ns 140570 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8042566ns 140577 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8042737ns 140580 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8043191ns 140588 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8043362ns 140591 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8043646ns 140596 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8043930ns 140601 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8044214ns 140606 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8044669ns 140614 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8044839ns 140617 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8045124ns 140622 1a110850 fd5ff06f jal x0, -44 +8045408ns 140627 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8045692ns 140632 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8046090ns 140639 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8046260ns 140642 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8046715ns 140650 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8046885ns 140653 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8047170ns 140658 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8047454ns 140663 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8047738ns 140668 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8048193ns 140676 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8048363ns 140679 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8048647ns 140684 1a110850 fd5ff06f jal x0, -44 +8048931ns 140689 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8049216ns 140694 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8049613ns 140701 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8049784ns 140704 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8050239ns 140712 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8050409ns 140715 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8050693ns 140720 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8050977ns 140725 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8051261ns 140730 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8051716ns 140738 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8051887ns 140741 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8052171ns 140746 1a110850 fd5ff06f jal x0, -44 +8052455ns 140751 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8052739ns 140756 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8053137ns 140763 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8053307ns 140766 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8053762ns 140774 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8053933ns 140777 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8054217ns 140782 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8054501ns 140787 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8054785ns 140792 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8055240ns 140800 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8055410ns 140803 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8055694ns 140808 1a110850 fd5ff06f jal x0, -44 +8055979ns 140813 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8056263ns 140818 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8056661ns 140825 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8056831ns 140828 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8057286ns 140836 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8057456ns 140839 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8057740ns 140844 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8058024ns 140849 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8058309ns 140854 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8058763ns 140862 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8058934ns 140865 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8059218ns 140870 1a110850 fd5ff06f jal x0, -44 +8059502ns 140875 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8059786ns 140880 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8060184ns 140887 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8060355ns 140890 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8060809ns 140898 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8060980ns 140901 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8061264ns 140906 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8061548ns 140911 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8061832ns 140916 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8062287ns 140924 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8062457ns 140927 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8062742ns 140932 1a110850 fd5ff06f jal x0, -44 +8063026ns 140937 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8063310ns 140942 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8063708ns 140949 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8063878ns 140952 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8064333ns 140960 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8064503ns 140963 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8064787ns 140968 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8065072ns 140973 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8065356ns 140978 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8065810ns 140986 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8065981ns 140989 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8066265ns 140994 1a110850 fd5ff06f jal x0, -44 +8066549ns 140999 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8066833ns 141004 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8067231ns 141011 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8067402ns 141014 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8067856ns 141022 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8068027ns 141025 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8068311ns 141030 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8068595ns 141035 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8068879ns 141040 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8069334ns 141048 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8069505ns 141051 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8069789ns 141056 1a110850 fd5ff06f jal x0, -44 +8070073ns 141061 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8070357ns 141066 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8070755ns 141073 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8070925ns 141076 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8071380ns 141084 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8071551ns 141087 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8071835ns 141092 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8072119ns 141097 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8072403ns 141102 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8072858ns 141110 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8073028ns 141113 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8073312ns 141118 1a110850 fd5ff06f jal x0, -44 +8073596ns 141123 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8073881ns 141128 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8074278ns 141135 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8074449ns 141138 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8074904ns 141146 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8075074ns 141149 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8075358ns 141154 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8075642ns 141159 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8075927ns 141164 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8076381ns 141172 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8076552ns 141175 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8076836ns 141180 1a110850 fd5ff06f jal x0, -44 +8077120ns 141185 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8077404ns 141190 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8077802ns 141197 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8077973ns 141200 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8078427ns 141208 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8078598ns 141211 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8078882ns 141216 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8079166ns 141221 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8079450ns 141226 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8079905ns 141234 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8080075ns 141237 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8080359ns 141242 1a110850 fd5ff06f jal x0, -44 +8080644ns 141247 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8080928ns 141252 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8081326ns 141259 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8081496ns 141262 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8081951ns 141270 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8082121ns 141273 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8082405ns 141278 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8082690ns 141283 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8082974ns 141288 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8083428ns 141296 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8083599ns 141299 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8083883ns 141304 1a110850 fd5ff06f jal x0, -44 +8084167ns 141309 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8084451ns 141314 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8084849ns 141321 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8085020ns 141324 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8085474ns 141332 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8085645ns 141335 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8085929ns 141340 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8086213ns 141345 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8086497ns 141350 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8086952ns 141358 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8087122ns 141361 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8087407ns 141366 1a110850 fd5ff06f jal x0, -44 +8087691ns 141371 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8087975ns 141376 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8088373ns 141383 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8088543ns 141386 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8088998ns 141394 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8089168ns 141397 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8089453ns 141402 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8089737ns 141407 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8090021ns 141412 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8090476ns 141420 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8090646ns 141423 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8090930ns 141428 1a110850 fd5ff06f jal x0, -44 +8091214ns 141433 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8091499ns 141438 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8091896ns 141445 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8092067ns 141448 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8092522ns 141456 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8092692ns 141459 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8092976ns 141464 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8093260ns 141469 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8093544ns 141474 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8093999ns 141482 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8094170ns 141485 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8094454ns 141490 1a110850 fd5ff06f jal x0, -44 +8094738ns 141495 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8095022ns 141500 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8095420ns 141507 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8095590ns 141510 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8096045ns 141518 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8096216ns 141521 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8096500ns 141526 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8096784ns 141531 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8097068ns 141536 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8097523ns 141544 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8097693ns 141547 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8097977ns 141552 1a110850 fd5ff06f jal x0, -44 +8098262ns 141557 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8098546ns 141562 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8098944ns 141569 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8099114ns 141572 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8099569ns 141580 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8099739ns 141583 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8100023ns 141588 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8100307ns 141593 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8100592ns 141598 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8101046ns 141606 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8101217ns 141609 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8101501ns 141614 1a110850 fd5ff06f jal x0, -44 +8101785ns 141619 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8102069ns 141624 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8102467ns 141631 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8102638ns 141634 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8103092ns 141642 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8103263ns 141645 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8103547ns 141650 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8103831ns 141655 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8104115ns 141660 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8104570ns 141668 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8104740ns 141671 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8105025ns 141676 1a110850 fd5ff06f jal x0, -44 +8105309ns 141681 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8105593ns 141686 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8105991ns 141693 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8106161ns 141696 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8106616ns 141704 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8106786ns 141707 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8107071ns 141712 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8107355ns 141717 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8107639ns 141722 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8108093ns 141730 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8108264ns 141733 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8108548ns 141738 1a110850 fd5ff06f jal x0, -44 +8108832ns 141743 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8109116ns 141748 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8109514ns 141755 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8109685ns 141758 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8110139ns 141766 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8110310ns 141769 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8110594ns 141774 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8110878ns 141779 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8111162ns 141784 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8111617ns 141792 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8111788ns 141795 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8112072ns 141800 1a110850 fd5ff06f jal x0, -44 +8112356ns 141805 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8112640ns 141810 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8113038ns 141817 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8113208ns 141820 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8113663ns 141828 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8113834ns 141831 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8114118ns 141836 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8114402ns 141841 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8114686ns 141846 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8115141ns 141854 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8115311ns 141857 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8115595ns 141862 1a110850 fd5ff06f jal x0, -44 +8115879ns 141867 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8116164ns 141872 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8116561ns 141879 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8116732ns 141882 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8117187ns 141890 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8117357ns 141893 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8117641ns 141898 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8117925ns 141903 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8118210ns 141908 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8118664ns 141916 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8118835ns 141919 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8119119ns 141924 1a110850 fd5ff06f jal x0, -44 +8119403ns 141929 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8119687ns 141934 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8120085ns 141941 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8120256ns 141944 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8120710ns 141952 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8120881ns 141955 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8121165ns 141960 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8121449ns 141965 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8121733ns 141970 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8122188ns 141978 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8122358ns 141981 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8122642ns 141986 1a110850 fd5ff06f jal x0, -44 +8122927ns 141991 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8123211ns 141996 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8123609ns 142003 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8123779ns 142006 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8124234ns 142014 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8124404ns 142017 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8124688ns 142022 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8124973ns 142027 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8125257ns 142032 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8125711ns 142040 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8125882ns 142043 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8126166ns 142048 1a110850 fd5ff06f jal x0, -44 +8126450ns 142053 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8126734ns 142058 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8127132ns 142065 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8127303ns 142068 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8127757ns 142076 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8127928ns 142079 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8128212ns 142084 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8128496ns 142089 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8128780ns 142094 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8129235ns 142102 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8129405ns 142105 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8129690ns 142110 1a110850 fd5ff06f jal x0, -44 +8129974ns 142115 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8130258ns 142120 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8130656ns 142127 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8130826ns 142130 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8131281ns 142138 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8131451ns 142141 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8131736ns 142146 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8132020ns 142151 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8132304ns 142156 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8132759ns 142164 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8132929ns 142167 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8133213ns 142172 1a110850 fd5ff06f jal x0, -44 +8133497ns 142177 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8133782ns 142182 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8134179ns 142189 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8134350ns 142192 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8134805ns 142200 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8134975ns 142203 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8135259ns 142208 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8135543ns 142213 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8135827ns 142218 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8136282ns 142226 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8136453ns 142229 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8136737ns 142234 1a110850 fd5ff06f jal x0, -44 +8137021ns 142239 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8137305ns 142244 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8137703ns 142251 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8137873ns 142254 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8138328ns 142262 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8138499ns 142265 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8138783ns 142270 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8139067ns 142275 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8139351ns 142280 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8139806ns 142288 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8139976ns 142291 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8140260ns 142296 1a110850 fd5ff06f jal x0, -44 +8140545ns 142301 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8140829ns 142306 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8141227ns 142313 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8141397ns 142316 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8141852ns 142324 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8142022ns 142327 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8142306ns 142332 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8142591ns 142337 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8142875ns 142342 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8143329ns 142350 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8143500ns 142353 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8143784ns 142358 1a110850 fd5ff06f jal x0, -44 +8144068ns 142363 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8144352ns 142368 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8144750ns 142375 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8144921ns 142378 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8145375ns 142386 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8145546ns 142389 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8145830ns 142394 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8146114ns 142399 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8146398ns 142404 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8146853ns 142412 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8147023ns 142415 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8147308ns 142420 1a110850 fd5ff06f jal x0, -44 +8147592ns 142425 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8147876ns 142430 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8148274ns 142437 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8148444ns 142440 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8148899ns 142448 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8149069ns 142451 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8149354ns 142456 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8149638ns 142461 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8149922ns 142466 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8150376ns 142474 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8150547ns 142477 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8150831ns 142482 1a110850 fd5ff06f jal x0, -44 +8151115ns 142487 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8151399ns 142492 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8151797ns 142499 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8151968ns 142502 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8152422ns 142510 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8152593ns 142513 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8152877ns 142518 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8153161ns 142523 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8153445ns 142528 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8153900ns 142536 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8154071ns 142539 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8154355ns 142544 1a110850 fd5ff06f jal x0, -44 +8154639ns 142549 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8154923ns 142554 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8155321ns 142561 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8155491ns 142564 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8155946ns 142572 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8156117ns 142575 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8156401ns 142580 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8156685ns 142585 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8156969ns 142590 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8157424ns 142598 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8157594ns 142601 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8157878ns 142606 1a110850 fd5ff06f jal x0, -44 +8158162ns 142611 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8158447ns 142616 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8158844ns 142623 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8159015ns 142626 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8159470ns 142634 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8159640ns 142637 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8159924ns 142642 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8160208ns 142647 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8160493ns 142652 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8160947ns 142660 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8161118ns 142663 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8161402ns 142668 1a110850 fd5ff06f jal x0, -44 +8161686ns 142673 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8161970ns 142678 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8162368ns 142685 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8162539ns 142688 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8162993ns 142696 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8163164ns 142699 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8163448ns 142704 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8163732ns 142709 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8164016ns 142714 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8164471ns 142722 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8164641ns 142725 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8164925ns 142730 1a110850 fd5ff06f jal x0, -44 +8165210ns 142735 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8165494ns 142740 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8165892ns 142747 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8166062ns 142750 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8166517ns 142758 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8166687ns 142761 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8166971ns 142766 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8167256ns 142771 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8167540ns 142776 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8167994ns 142784 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8168165ns 142787 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8168449ns 142792 1a110850 fd5ff06f jal x0, -44 +8168733ns 142797 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8169017ns 142802 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8169415ns 142809 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8169586ns 142812 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8170040ns 142820 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8170211ns 142823 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8170495ns 142828 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8170779ns 142833 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8171063ns 142838 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8171518ns 142846 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8171688ns 142849 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8171973ns 142854 1a110850 fd5ff06f jal x0, -44 +8172257ns 142859 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8172541ns 142864 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8172939ns 142871 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8173109ns 142874 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8173564ns 142882 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8173734ns 142885 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8174019ns 142890 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8174303ns 142895 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8174587ns 142900 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8175042ns 142908 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8175212ns 142911 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8175496ns 142916 1a110850 fd5ff06f jal x0, -44 +8175780ns 142921 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8176065ns 142926 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8176462ns 142933 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8176633ns 142936 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8177088ns 142944 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8177258ns 142947 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8177542ns 142952 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8177826ns 142957 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8178111ns 142962 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8178565ns 142970 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8178736ns 142973 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8179020ns 142978 1a110850 fd5ff06f jal x0, -44 +8179304ns 142983 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8179588ns 142988 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8179986ns 142995 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8180156ns 142998 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8180611ns 143006 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8180782ns 143009 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8181066ns 143014 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8181350ns 143019 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8181634ns 143024 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8182089ns 143032 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8182259ns 143035 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8182543ns 143040 1a110850 fd5ff06f jal x0, -44 +8182828ns 143045 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8183112ns 143050 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8183510ns 143057 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8183680ns 143060 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8184135ns 143068 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8184305ns 143071 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8184589ns 143076 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8184874ns 143081 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8185158ns 143086 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8185612ns 143094 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8185783ns 143097 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8186067ns 143102 1a110850 fd5ff06f jal x0, -44 +8186351ns 143107 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8186635ns 143112 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8187033ns 143119 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8187204ns 143122 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8187658ns 143130 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8187829ns 143133 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8188113ns 143138 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8188397ns 143143 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8188681ns 143148 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8189136ns 143156 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8189306ns 143159 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8189591ns 143164 1a110850 fd5ff06f jal x0, -44 +8189875ns 143169 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8190159ns 143174 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8190557ns 143181 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8190727ns 143184 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8191182ns 143192 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8191352ns 143195 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8191637ns 143200 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8191921ns 143205 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8192205ns 143210 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8192659ns 143218 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8192830ns 143221 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8193114ns 143226 1a110850 fd5ff06f jal x0, -44 +8193398ns 143231 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8193682ns 143236 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8194080ns 143243 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8194251ns 143246 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8194705ns 143254 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8194876ns 143257 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8195160ns 143262 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8195444ns 143267 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8195728ns 143272 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8196183ns 143280 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8196354ns 143283 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8196638ns 143288 1a110850 fd5ff06f jal x0, -44 +8196922ns 143293 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8197206ns 143298 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8197604ns 143305 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8197774ns 143308 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8198229ns 143316 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8198400ns 143319 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8198684ns 143324 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8198968ns 143329 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8199252ns 143334 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8199707ns 143342 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8199877ns 143345 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8200161ns 143350 1a110850 fd5ff06f jal x0, -44 +8200445ns 143355 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8200730ns 143360 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8201127ns 143367 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8201298ns 143370 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8201753ns 143378 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8201923ns 143381 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8202207ns 143386 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8202491ns 143391 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8202776ns 143396 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8203230ns 143404 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8203401ns 143407 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8203685ns 143412 1a110850 fd5ff06f jal x0, -44 +8203969ns 143417 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8204253ns 143422 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8204651ns 143429 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8204822ns 143432 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8205276ns 143440 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8205447ns 143443 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8205731ns 143448 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8206015ns 143453 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8206299ns 143458 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8206754ns 143466 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8206924ns 143469 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8207208ns 143474 1a110850 fd5ff06f jal x0, -44 +8207493ns 143479 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8207777ns 143484 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8208175ns 143491 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8208345ns 143494 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8208800ns 143502 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8208970ns 143505 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8209254ns 143510 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8209539ns 143515 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8209823ns 143520 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8210277ns 143528 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8210448ns 143531 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8210732ns 143536 1a110850 fd5ff06f jal x0, -44 +8211016ns 143541 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8211300ns 143546 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8211698ns 143553 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8211869ns 143556 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8212323ns 143564 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8212494ns 143567 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8212778ns 143572 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8213062ns 143577 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8213346ns 143582 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8213801ns 143590 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8213971ns 143593 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8214256ns 143598 1a110850 fd5ff06f jal x0, -44 +8214540ns 143603 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8214824ns 143608 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8215222ns 143615 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8215392ns 143618 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8215847ns 143626 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8216017ns 143629 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8216302ns 143634 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8216586ns 143639 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8216870ns 143644 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8217325ns 143652 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8217495ns 143655 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8217779ns 143660 1a110850 fd5ff06f jal x0, -44 +8218063ns 143665 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8218348ns 143670 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8218745ns 143677 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8218916ns 143680 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8219371ns 143688 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8219541ns 143691 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8219825ns 143696 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8220109ns 143701 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8220394ns 143706 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8220848ns 143714 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8221019ns 143717 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8221303ns 143722 1a110850 fd5ff06f jal x0, -44 +8221587ns 143727 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8221871ns 143732 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8222269ns 143739 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8222439ns 143742 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8222894ns 143750 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8223065ns 143753 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8223349ns 143758 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8223633ns 143763 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8223917ns 143768 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8224372ns 143776 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8224542ns 143779 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8224826ns 143784 1a110850 fd5ff06f jal x0, -44 +8225111ns 143789 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8225395ns 143794 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8225793ns 143801 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8225963ns 143804 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8226418ns 143812 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8226588ns 143815 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8226872ns 143820 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8227157ns 143825 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8227441ns 143830 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8227895ns 143838 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8228066ns 143841 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8228350ns 143846 1a110850 fd5ff06f jal x0, -44 +8228634ns 143851 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8228918ns 143856 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8229316ns 143863 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8229487ns 143866 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8229941ns 143874 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8230112ns 143877 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8230396ns 143882 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8230680ns 143887 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8230964ns 143892 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8231419ns 143900 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8231589ns 143903 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8231874ns 143908 1a110850 fd5ff06f jal x0, -44 +8232158ns 143913 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8232442ns 143918 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8232840ns 143925 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8233010ns 143928 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8233465ns 143936 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8233635ns 143939 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8233920ns 143944 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8234204ns 143949 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8234488ns 143954 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8234943ns 143962 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8235113ns 143965 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8235397ns 143970 1a110850 fd5ff06f jal x0, -44 +8235681ns 143975 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8235965ns 143980 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8236363ns 143987 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8236534ns 143990 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8236988ns 143998 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8237159ns 144001 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8237443ns 144006 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8237727ns 144011 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8238011ns 144016 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8238466ns 144024 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8238637ns 144027 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8238921ns 144032 1a110850 fd5ff06f jal x0, -44 +8239205ns 144037 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8239489ns 144042 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8239887ns 144049 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8240057ns 144052 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8240512ns 144060 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8240683ns 144063 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8240967ns 144068 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8241251ns 144073 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8241535ns 144078 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8241990ns 144086 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8242160ns 144089 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8242444ns 144094 1a110850 fd5ff06f jal x0, -44 +8242728ns 144099 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8243013ns 144104 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8243410ns 144111 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8243581ns 144114 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8244036ns 144122 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8244206ns 144125 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8244490ns 144130 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8244774ns 144135 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8245059ns 144140 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8245513ns 144148 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8245684ns 144151 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8245968ns 144156 1a110850 fd5ff06f jal x0, -44 +8246252ns 144161 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8246536ns 144166 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8246934ns 144173 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8247105ns 144176 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8247559ns 144184 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8247730ns 144187 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8248014ns 144192 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8248298ns 144197 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8248582ns 144202 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8249037ns 144210 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8249207ns 144213 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8249491ns 144218 1a110850 fd5ff06f jal x0, -44 +8249776ns 144223 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8250060ns 144228 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8250458ns 144235 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8250628ns 144238 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8251083ns 144246 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8251253ns 144249 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8251537ns 144254 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8251822ns 144259 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8252106ns 144264 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8252560ns 144272 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8252731ns 144275 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8253015ns 144280 1a110850 fd5ff06f jal x0, -44 +8253299ns 144285 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8253583ns 144290 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8253981ns 144297 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8254152ns 144300 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8254606ns 144308 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8254777ns 144311 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8255061ns 144316 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8255345ns 144321 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8255629ns 144326 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8256084ns 144334 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8256255ns 144337 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8256539ns 144342 1a110850 fd5ff06f jal x0, -44 +8256823ns 144347 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8257107ns 144352 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8257505ns 144359 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8257675ns 144362 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8258130ns 144370 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8258300ns 144373 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8258585ns 144378 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8258869ns 144383 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8259153ns 144388 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8259608ns 144396 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8259778ns 144399 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8260062ns 144404 1a110850 fd5ff06f jal x0, -44 +8260346ns 144409 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8260631ns 144414 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8261028ns 144421 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8261199ns 144424 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8261654ns 144432 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8261824ns 144435 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8262108ns 144440 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8262392ns 144445 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8262677ns 144450 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8263131ns 144458 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8263302ns 144461 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8263586ns 144466 1a110850 fd5ff06f jal x0, -44 +8263870ns 144471 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8264154ns 144476 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8264552ns 144483 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8264722ns 144486 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8265177ns 144494 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8265348ns 144497 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8265632ns 144502 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8265916ns 144507 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8266200ns 144512 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8266655ns 144520 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8266825ns 144523 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8267109ns 144528 1a110850 fd5ff06f jal x0, -44 +8267394ns 144533 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8267678ns 144538 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8268076ns 144545 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8268246ns 144548 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8268701ns 144556 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8268871ns 144559 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8269155ns 144564 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8269440ns 144569 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8269724ns 144574 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8270178ns 144582 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8270349ns 144585 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8270633ns 144590 1a110850 fd5ff06f jal x0, -44 +8270917ns 144595 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8271201ns 144600 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8271599ns 144607 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8271770ns 144610 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8272224ns 144618 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8272395ns 144621 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8272679ns 144626 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8272963ns 144631 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8273247ns 144636 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8273702ns 144644 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8273872ns 144647 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8274157ns 144652 1a110850 fd5ff06f jal x0, -44 +8274441ns 144657 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8274725ns 144662 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8275123ns 144669 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8275293ns 144672 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8275748ns 144680 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8275918ns 144683 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8276203ns 144688 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8276487ns 144693 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8276771ns 144698 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8277226ns 144706 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8277396ns 144709 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8277680ns 144714 1a110850 fd5ff06f jal x0, -44 +8277964ns 144719 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8278248ns 144724 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8278646ns 144731 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8278817ns 144734 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8279271ns 144742 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8279442ns 144745 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8279726ns 144750 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8280010ns 144755 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8280294ns 144760 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8280749ns 144768 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8280920ns 144771 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8281204ns 144776 1a110850 fd5ff06f jal x0, -44 +8281488ns 144781 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8281772ns 144786 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8282170ns 144793 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8282340ns 144796 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8282795ns 144804 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8282966ns 144807 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8283250ns 144812 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8283534ns 144817 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8283818ns 144822 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8284273ns 144830 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8284443ns 144833 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8284727ns 144838 1a110850 fd5ff06f jal x0, -44 +8285011ns 144843 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8285296ns 144848 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8285693ns 144855 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8285864ns 144858 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8286319ns 144866 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8286489ns 144869 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8286773ns 144874 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8287057ns 144879 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8287342ns 144884 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8287796ns 144892 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8287967ns 144895 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8288251ns 144900 1a110850 fd5ff06f jal x0, -44 +8288535ns 144905 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8288819ns 144910 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8289217ns 144917 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8289388ns 144920 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8289842ns 144928 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8290013ns 144931 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8290297ns 144936 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8290581ns 144941 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8290865ns 144946 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8291320ns 144954 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8291490ns 144957 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8291775ns 144962 1a110850 fd5ff06f jal x0, -44 +8292059ns 144967 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8292343ns 144972 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8292741ns 144979 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8292911ns 144982 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8293366ns 144990 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8293536ns 144993 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8293820ns 144998 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8294105ns 145003 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8294389ns 145008 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8294843ns 145016 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8295014ns 145019 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8295298ns 145024 1a110850 fd5ff06f jal x0, -44 +8295582ns 145029 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8295866ns 145034 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8296264ns 145041 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8296435ns 145044 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8296889ns 145052 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8297060ns 145055 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8297344ns 145060 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8297628ns 145065 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8297912ns 145070 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8298367ns 145078 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8298538ns 145081 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8298822ns 145086 1a110850 fd5ff06f jal x0, -44 +8299106ns 145091 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8299390ns 145096 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8299788ns 145103 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8299958ns 145106 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8300413ns 145114 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8300583ns 145117 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8300868ns 145122 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8301152ns 145127 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8301436ns 145132 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8301891ns 145140 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8302061ns 145143 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8302345ns 145148 1a110850 fd5ff06f jal x0, -44 +8302629ns 145153 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8302914ns 145158 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8303311ns 145165 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8303482ns 145168 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8303937ns 145176 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8304107ns 145179 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8304391ns 145184 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8304675ns 145189 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8304960ns 145194 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8305414ns 145202 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8305585ns 145205 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8305869ns 145210 1a110850 fd5ff06f jal x0, -44 +8306153ns 145215 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8306437ns 145220 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8306835ns 145227 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8307005ns 145230 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8307460ns 145238 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8307631ns 145241 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8307915ns 145246 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8308199ns 145251 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8308483ns 145256 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8308938ns 145264 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8309108ns 145267 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8309392ns 145272 1a110850 fd5ff06f jal x0, -44 +8309677ns 145277 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8309961ns 145282 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8310359ns 145289 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8310529ns 145292 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8310984ns 145300 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8311154ns 145303 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8311438ns 145308 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8311723ns 145313 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8312007ns 145318 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8312461ns 145326 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8312632ns 145329 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8312916ns 145334 1a110850 fd5ff06f jal x0, -44 +8313200ns 145339 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8313484ns 145344 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8313882ns 145351 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8314053ns 145354 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8314507ns 145362 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8314678ns 145365 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8314962ns 145370 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8315246ns 145375 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8315530ns 145380 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8315985ns 145388 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8316155ns 145391 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8316440ns 145396 1a110850 fd5ff06f jal x0, -44 +8316724ns 145401 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8317008ns 145406 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8317406ns 145413 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8317576ns 145416 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8318031ns 145424 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8318201ns 145427 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8318486ns 145432 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8318770ns 145437 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8319054ns 145442 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8319509ns 145450 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8319679ns 145453 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8319963ns 145458 1a110850 fd5ff06f jal x0, -44 +8320247ns 145463 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8320531ns 145468 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8320929ns 145475 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8321100ns 145478 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8321554ns 145486 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8321725ns 145489 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8322009ns 145494 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8322293ns 145499 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8322577ns 145504 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8323032ns 145512 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8323203ns 145515 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8323487ns 145520 1a110850 fd5ff06f jal x0, -44 +8323771ns 145525 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8324055ns 145530 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8324453ns 145537 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8324623ns 145540 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8325078ns 145548 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8325249ns 145551 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8325533ns 145556 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8325817ns 145561 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8326101ns 145566 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8326556ns 145574 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8326726ns 145577 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8327010ns 145582 1a110850 fd5ff06f jal x0, -44 +8327295ns 145587 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8327579ns 145592 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8327976ns 145599 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8328147ns 145602 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8328602ns 145610 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8328772ns 145613 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8329056ns 145618 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8329340ns 145623 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8329625ns 145628 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8330079ns 145636 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8330250ns 145639 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8330534ns 145644 1a110850 fd5ff06f jal x0, -44 +8330818ns 145649 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8331102ns 145654 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8331500ns 145661 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8331671ns 145664 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8332125ns 145672 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8332296ns 145675 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8332580ns 145680 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8332864ns 145685 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8333148ns 145690 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8333603ns 145698 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8333773ns 145701 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8334058ns 145706 1a110850 fd5ff06f jal x0, -44 +8334342ns 145711 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8334626ns 145716 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8335024ns 145723 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8335194ns 145726 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8335649ns 145734 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8335819ns 145737 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8336103ns 145742 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8336388ns 145747 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8336672ns 145752 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8337126ns 145760 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8337297ns 145763 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8337581ns 145768 1a110850 fd5ff06f jal x0, -44 +8337865ns 145773 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8338149ns 145778 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8338547ns 145785 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8338718ns 145788 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8339172ns 145796 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8339343ns 145799 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8339627ns 145804 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8339911ns 145809 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8340195ns 145814 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8340650ns 145822 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8340821ns 145825 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8341105ns 145830 1a110850 fd5ff06f jal x0, -44 +8341389ns 145835 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8341673ns 145840 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8342071ns 145847 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8342241ns 145850 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8342696ns 145858 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8342866ns 145861 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8343151ns 145866 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8343435ns 145871 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8343719ns 145876 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8344174ns 145884 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8344344ns 145887 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8344628ns 145892 1a110850 fd5ff06f jal x0, -44 +8344912ns 145897 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8345197ns 145902 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8345594ns 145909 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8345765ns 145912 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8346220ns 145920 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8346390ns 145923 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8346674ns 145928 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8346958ns 145933 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8347243ns 145938 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8347697ns 145946 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8347868ns 145949 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8348152ns 145954 1a110850 fd5ff06f jal x0, -44 +8348436ns 145959 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8348720ns 145964 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8349118ns 145971 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8349288ns 145974 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8349743ns 145982 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8349914ns 145985 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8350198ns 145990 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8350482ns 145995 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8350766ns 146000 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8351221ns 146008 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8351391ns 146011 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8351675ns 146016 1a110850 fd5ff06f jal x0, -44 +8351960ns 146021 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8352244ns 146026 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8352642ns 146033 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8352812ns 146036 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8353267ns 146044 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8353437ns 146047 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8353721ns 146052 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8354006ns 146057 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8354290ns 146062 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8354744ns 146070 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8354915ns 146073 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8355199ns 146078 1a110850 fd5ff06f jal x0, -44 +8355483ns 146083 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8355767ns 146088 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8356165ns 146095 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8356336ns 146098 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8356790ns 146106 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8356961ns 146109 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8357245ns 146114 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8357529ns 146119 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8357813ns 146124 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8358268ns 146132 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8358438ns 146135 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8358723ns 146140 1a110850 fd5ff06f jal x0, -44 +8359007ns 146145 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8359291ns 146150 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8359689ns 146157 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8359859ns 146160 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8360314ns 146168 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8360484ns 146171 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8360769ns 146176 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8361053ns 146181 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8361337ns 146186 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8361792ns 146194 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8361962ns 146197 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8362246ns 146202 1a110850 fd5ff06f jal x0, -44 +8362530ns 146207 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8362815ns 146212 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8363212ns 146219 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8363383ns 146222 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8363837ns 146230 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8364008ns 146233 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8364292ns 146238 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8364576ns 146243 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8364860ns 146248 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8365315ns 146256 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8365486ns 146259 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8365770ns 146264 1a110850 fd5ff06f jal x0, -44 +8366054ns 146269 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8366338ns 146274 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8366736ns 146281 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8366906ns 146284 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8367361ns 146292 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8367532ns 146295 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8367816ns 146300 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8368100ns 146305 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8368384ns 146310 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8368839ns 146318 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8369009ns 146321 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8369293ns 146326 1a110850 fd5ff06f jal x0, -44 +8369578ns 146331 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8369862ns 146336 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8370259ns 146343 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8370430ns 146346 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8370885ns 146354 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8371055ns 146357 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8371339ns 146362 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8371623ns 146367 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8371908ns 146372 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8372362ns 146380 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8372533ns 146383 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8372817ns 146388 1a110850 fd5ff06f jal x0, -44 +8373101ns 146393 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8373385ns 146398 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8373783ns 146405 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8373954ns 146408 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8374408ns 146416 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8374579ns 146419 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8374863ns 146424 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8375147ns 146429 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8375431ns 146434 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8375886ns 146442 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8376056ns 146445 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8376341ns 146450 1a110850 fd5ff06f jal x0, -44 +8376625ns 146455 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8376909ns 146460 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8377307ns 146467 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8377477ns 146470 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8377932ns 146478 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8378102ns 146481 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8378386ns 146486 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8378671ns 146491 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8378955ns 146496 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8379409ns 146504 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8379580ns 146507 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8379864ns 146512 1a110850 fd5ff06f jal x0, -44 +8380148ns 146517 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8380432ns 146522 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8380830ns 146529 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8381001ns 146532 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8381455ns 146540 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8381626ns 146543 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8381910ns 146548 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8382194ns 146553 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8382478ns 146558 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8382933ns 146566 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8383104ns 146569 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8383388ns 146574 1a110850 fd5ff06f jal x0, -44 +8383672ns 146579 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8383956ns 146584 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8384354ns 146591 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8384524ns 146594 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8384979ns 146602 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8385149ns 146605 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8385434ns 146610 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8385718ns 146615 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8386002ns 146620 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8386457ns 146628 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8386627ns 146631 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8386911ns 146636 1a110850 fd5ff06f jal x0, -44 +8387195ns 146641 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8387480ns 146646 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8387877ns 146653 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8388048ns 146656 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8388503ns 146664 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8388673ns 146667 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8388957ns 146672 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8389241ns 146677 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8389526ns 146682 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8389980ns 146690 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8390151ns 146693 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8390435ns 146698 1a110850 fd5ff06f jal x0, -44 +8390719ns 146703 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8391003ns 146708 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8391401ns 146715 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8391571ns 146718 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8392026ns 146726 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8392197ns 146729 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8392481ns 146734 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8392765ns 146739 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8393049ns 146744 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8393504ns 146752 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8393674ns 146755 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8393958ns 146760 1a110850 fd5ff06f jal x0, -44 +8394243ns 146765 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8394527ns 146770 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8394925ns 146777 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8395095ns 146780 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8395550ns 146788 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8395720ns 146791 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8396004ns 146796 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8396289ns 146801 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8396573ns 146806 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8397027ns 146814 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8397198ns 146817 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8397482ns 146822 1a110850 fd5ff06f jal x0, -44 +8397766ns 146827 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8398050ns 146832 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8398448ns 146839 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8398619ns 146842 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8399073ns 146850 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8399244ns 146853 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8399528ns 146858 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8399812ns 146863 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8400096ns 146868 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8400551ns 146876 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8400721ns 146879 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8401006ns 146884 1a110850 fd5ff06f jal x0, -44 +8401290ns 146889 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8401574ns 146894 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8401972ns 146901 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8402142ns 146904 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8402597ns 146912 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8402767ns 146915 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8403052ns 146920 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8403336ns 146925 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8403620ns 146930 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8404075ns 146938 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8404245ns 146941 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8404529ns 146946 1a110850 fd5ff06f jal x0, -44 +8404813ns 146951 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8405098ns 146956 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8405495ns 146963 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8405666ns 146966 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8406120ns 146974 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8406291ns 146977 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8406575ns 146982 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8406859ns 146987 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8407143ns 146992 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8407598ns 147000 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8407769ns 147003 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8408053ns 147008 1a110850 fd5ff06f jal x0, -44 +8408337ns 147013 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8408621ns 147018 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8409019ns 147025 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8409189ns 147028 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8409644ns 147036 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8409815ns 147039 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8410099ns 147044 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8410383ns 147049 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8410667ns 147054 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8411122ns 147062 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8411292ns 147065 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8411576ns 147070 1a110850 fd5ff06f jal x0, -44 +8411861ns 147075 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8412145ns 147080 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8412543ns 147087 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8412713ns 147090 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8413168ns 147098 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8413338ns 147101 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8413622ns 147106 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8413906ns 147111 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8414191ns 147116 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8414645ns 147124 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8414816ns 147127 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8415100ns 147132 1a110850 fd5ff06f jal x0, -44 +8415384ns 147137 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8415668ns 147142 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8416066ns 147149 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8416237ns 147152 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8416691ns 147160 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8416862ns 147163 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8417146ns 147168 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8417430ns 147173 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8417714ns 147178 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8418169ns 147186 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8418339ns 147189 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8418624ns 147194 1a110850 fd5ff06f jal x0, -44 +8418908ns 147199 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8419192ns 147204 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8419590ns 147211 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8419760ns 147214 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8420215ns 147222 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8420385ns 147225 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8420669ns 147230 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8420954ns 147235 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8421238ns 147240 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8421692ns 147248 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8421863ns 147251 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8422147ns 147256 1a110850 fd5ff06f jal x0, -44 +8422431ns 147261 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8422715ns 147266 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8423113ns 147273 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8423284ns 147276 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8423738ns 147284 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8423909ns 147287 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8424193ns 147292 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8424477ns 147297 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8424761ns 147302 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8425216ns 147310 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8425387ns 147313 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8425671ns 147318 1a110850 fd5ff06f jal x0, -44 +8425955ns 147323 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8426239ns 147328 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8426637ns 147335 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8426807ns 147338 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8427262ns 147346 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8427432ns 147349 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8427717ns 147354 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8428001ns 147359 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8428285ns 147364 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8428740ns 147372 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8428910ns 147375 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8429194ns 147380 1a110850 fd5ff06f jal x0, -44 +8429478ns 147385 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8429763ns 147390 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8430160ns 147397 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8430331ns 147400 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8430786ns 147408 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8430956ns 147411 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8431240ns 147416 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8431524ns 147421 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8431809ns 147426 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8432263ns 147434 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8432434ns 147437 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8432718ns 147442 1a110850 fd5ff06f jal x0, -44 +8433002ns 147447 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8433286ns 147452 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8433684ns 147459 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8433855ns 147462 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8434309ns 147470 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8434480ns 147473 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8434764ns 147478 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8435048ns 147483 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8435332ns 147488 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8435787ns 147496 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8435957ns 147499 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8436241ns 147504 1a110850 fd5ff06f jal x0, -44 +8436526ns 147509 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8436810ns 147514 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8437208ns 147521 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8437378ns 147524 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8437833ns 147532 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8438003ns 147535 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8438287ns 147540 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8438572ns 147545 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8438856ns 147550 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8439310ns 147558 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8439481ns 147561 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8439765ns 147566 1a110850 fd5ff06f jal x0, -44 +8440049ns 147571 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8440333ns 147576 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8440731ns 147583 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8440902ns 147586 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8441356ns 147594 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8441527ns 147597 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8441811ns 147602 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8442095ns 147607 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8442379ns 147612 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8442834ns 147620 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8443004ns 147623 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8443289ns 147628 1a110850 fd5ff06f jal x0, -44 +8443573ns 147633 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8443857ns 147638 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8444255ns 147645 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8444425ns 147648 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8444880ns 147656 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8445050ns 147659 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8445335ns 147664 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8445619ns 147669 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8445903ns 147674 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8446358ns 147682 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8446528ns 147685 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8446812ns 147690 1a110850 fd5ff06f jal x0, -44 +8447096ns 147695 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8447381ns 147700 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8447778ns 147707 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8447949ns 147710 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8448403ns 147718 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8448574ns 147721 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8448858ns 147726 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8449142ns 147731 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8449426ns 147736 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8449881ns 147744 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8450052ns 147747 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8450336ns 147752 1a110850 fd5ff06f jal x0, -44 +8450620ns 147757 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8450904ns 147762 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8451302ns 147769 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8451472ns 147772 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8451927ns 147780 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8452098ns 147783 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8452382ns 147788 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8452666ns 147793 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8452950ns 147798 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8453405ns 147806 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8453575ns 147809 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8453859ns 147814 1a110850 fd5ff06f jal x0, -44 +8454144ns 147819 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8454428ns 147824 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8454826ns 147831 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8454996ns 147834 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8455451ns 147842 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8455621ns 147845 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8455905ns 147850 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8456189ns 147855 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8456474ns 147860 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8456928ns 147868 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8457099ns 147871 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8457383ns 147876 1a110850 fd5ff06f jal x0, -44 +8457667ns 147881 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8457951ns 147886 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8458349ns 147893 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8458520ns 147896 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8458974ns 147904 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8459145ns 147907 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8459429ns 147912 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8459713ns 147917 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8459997ns 147922 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8460452ns 147930 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8460622ns 147933 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8460907ns 147938 1a110850 fd5ff06f jal x0, -44 +8461191ns 147943 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8461475ns 147948 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8461873ns 147955 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8462043ns 147958 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8462498ns 147966 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8462668ns 147969 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8462952ns 147974 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8463237ns 147979 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8463521ns 147984 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8463975ns 147992 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8464146ns 147995 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8464430ns 148000 1a110850 fd5ff06f jal x0, -44 +8464714ns 148005 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8464998ns 148010 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8465396ns 148017 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8465567ns 148020 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8466021ns 148028 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8466192ns 148031 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8466476ns 148036 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8466760ns 148041 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8467044ns 148046 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8467499ns 148054 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8467670ns 148057 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8467954ns 148062 1a110850 fd5ff06f jal x0, -44 +8468238ns 148067 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8468522ns 148072 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8468920ns 148079 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8469090ns 148082 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8469545ns 148090 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8469715ns 148093 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8470000ns 148098 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8470284ns 148103 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8470568ns 148108 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8471023ns 148116 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8471193ns 148119 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8471477ns 148124 1a110850 fd5ff06f jal x0, -44 +8471761ns 148129 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8472046ns 148134 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8472443ns 148141 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8472614ns 148144 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8473069ns 148152 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8473239ns 148155 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8473523ns 148160 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8473807ns 148165 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8474092ns 148170 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8474546ns 148178 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8474717ns 148181 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8475001ns 148186 1a110850 fd5ff06f jal x0, -44 +8475285ns 148191 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8475569ns 148196 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8475967ns 148203 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8476138ns 148206 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8476592ns 148214 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8476763ns 148217 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8477047ns 148222 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8477331ns 148227 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8477615ns 148232 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8478070ns 148240 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8478240ns 148243 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8478524ns 148248 1a110850 fd5ff06f jal x0, -44 +8478809ns 148253 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8479093ns 148258 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8479491ns 148265 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8479661ns 148268 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8480116ns 148276 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8480286ns 148279 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8480570ns 148284 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8480855ns 148289 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8481139ns 148294 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8481593ns 148302 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8481764ns 148305 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8482048ns 148310 1a110850 fd5ff06f jal x0, -44 +8482332ns 148315 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8482616ns 148320 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8483014ns 148327 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8483185ns 148330 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8483639ns 148338 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8483810ns 148341 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8484094ns 148346 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8484378ns 148351 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8484662ns 148356 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8485117ns 148364 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8485287ns 148367 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8485572ns 148372 1a110850 fd5ff06f jal x0, -44 +8485856ns 148377 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8486140ns 148382 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8486538ns 148389 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8486708ns 148392 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8487163ns 148400 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8487333ns 148403 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8487618ns 148408 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8487902ns 148413 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8488186ns 148418 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8488641ns 148426 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8488811ns 148429 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8489095ns 148434 1a110850 fd5ff06f jal x0, -44 +8489379ns 148439 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8489664ns 148444 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8490061ns 148451 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8490232ns 148454 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8490687ns 148462 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8490857ns 148465 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8491141ns 148470 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8491425ns 148475 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8491709ns 148480 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8492164ns 148488 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8492335ns 148491 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8492619ns 148496 1a110850 fd5ff06f jal x0, -44 +8492903ns 148501 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8493187ns 148506 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8493585ns 148513 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8493755ns 148516 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8494210ns 148524 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8494381ns 148527 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8494665ns 148532 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8494949ns 148537 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8495233ns 148542 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8495688ns 148550 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8495858ns 148553 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8496142ns 148558 1a110850 fd5ff06f jal x0, -44 +8496427ns 148563 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8496711ns 148568 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8497109ns 148575 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8497279ns 148578 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8497734ns 148586 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8497904ns 148589 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8498188ns 148594 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8498472ns 148599 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8498757ns 148604 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8499211ns 148612 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8499382ns 148615 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8499666ns 148620 1a110850 fd5ff06f jal x0, -44 +8499950ns 148625 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8500234ns 148630 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8500632ns 148637 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8500803ns 148640 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8501257ns 148648 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8501428ns 148651 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8501712ns 148656 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8501996ns 148661 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8502280ns 148666 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8502735ns 148674 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8502905ns 148677 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8503190ns 148682 1a110850 fd5ff06f jal x0, -44 +8503474ns 148687 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8503758ns 148692 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8504156ns 148699 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8504326ns 148702 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8504781ns 148710 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8504951ns 148713 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8505235ns 148718 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8505520ns 148723 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8505804ns 148728 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8506258ns 148736 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8506429ns 148739 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8506713ns 148744 1a110850 fd5ff06f jal x0, -44 +8506997ns 148749 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8507281ns 148754 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8507679ns 148761 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8507850ns 148764 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8508304ns 148772 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8508475ns 148775 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8508759ns 148780 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8509043ns 148785 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8509327ns 148790 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8509782ns 148798 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8509953ns 148801 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8510237ns 148806 1a110850 fd5ff06f jal x0, -44 +8510521ns 148811 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8510805ns 148816 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8511203ns 148823 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8511373ns 148826 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8511828ns 148834 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8511999ns 148837 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8512283ns 148842 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8512567ns 148847 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8512851ns 148852 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8513306ns 148860 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8513476ns 148863 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8513760ns 148868 1a110850 fd5ff06f jal x0, -44 +8514044ns 148873 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8514329ns 148878 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8514726ns 148885 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8514897ns 148888 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8515352ns 148896 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8515522ns 148899 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8515806ns 148904 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8516090ns 148909 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8516375ns 148914 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8516829ns 148922 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8517000ns 148925 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8517284ns 148930 1a110850 fd5ff06f jal x0, -44 +8517568ns 148935 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8517852ns 148940 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8518250ns 148947 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8518421ns 148950 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8518875ns 148958 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8519046ns 148961 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8519330ns 148966 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8519614ns 148971 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8519898ns 148976 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8520353ns 148984 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8520523ns 148987 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8520807ns 148992 1a110850 fd5ff06f jal x0, -44 +8521092ns 148997 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8521376ns 149002 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8521774ns 149009 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8521944ns 149012 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8522399ns 149020 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8522569ns 149023 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8522853ns 149028 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8523138ns 149033 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8523422ns 149038 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8523876ns 149046 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8524047ns 149049 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8524331ns 149054 1a110850 fd5ff06f jal x0, -44 +8524615ns 149059 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8524899ns 149064 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8525297ns 149071 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8525468ns 149074 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8525922ns 149082 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8526093ns 149085 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8526377ns 149090 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8526661ns 149095 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8526945ns 149100 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8527400ns 149108 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8527570ns 149111 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8527855ns 149116 1a110850 fd5ff06f jal x0, -44 +8528139ns 149121 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8528423ns 149126 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8528821ns 149133 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8528991ns 149136 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8529446ns 149144 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8529616ns 149147 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8529901ns 149152 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8530185ns 149157 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8530469ns 149162 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8530924ns 149170 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8531094ns 149173 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8531378ns 149178 1a110850 fd5ff06f jal x0, -44 +8531662ns 149183 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8531947ns 149188 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8532344ns 149195 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8532515ns 149198 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8532970ns 149206 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8533140ns 149209 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8533424ns 149214 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8533708ns 149219 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8533992ns 149224 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8534447ns 149232 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8534618ns 149235 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8534902ns 149240 1a110850 fd5ff06f jal x0, -44 +8535186ns 149245 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8535470ns 149250 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8535868ns 149257 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8536038ns 149260 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8536493ns 149268 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8536664ns 149271 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8536948ns 149276 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8537232ns 149281 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8537516ns 149286 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8537971ns 149294 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8538141ns 149297 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8538425ns 149302 1a110850 fd5ff06f jal x0, -44 +8538710ns 149307 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8538994ns 149312 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8539392ns 149319 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8539562ns 149322 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8540017ns 149330 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8540187ns 149333 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8540471ns 149338 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8540755ns 149343 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8541040ns 149348 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8541494ns 149356 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8541665ns 149359 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8541949ns 149364 1a110850 fd5ff06f jal x0, -44 +8542233ns 149369 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8542517ns 149374 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8542915ns 149381 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8543086ns 149384 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8543540ns 149392 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8543711ns 149395 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8543995ns 149400 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8544279ns 149405 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8544563ns 149410 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8545018ns 149418 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8545188ns 149421 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8545473ns 149426 1a110850 fd5ff06f jal x0, -44 +8545757ns 149431 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8546041ns 149436 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8546439ns 149443 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8546609ns 149446 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8547064ns 149454 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8547234ns 149457 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8547519ns 149462 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8547803ns 149467 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8548087ns 149472 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8548541ns 149480 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8548712ns 149483 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8548996ns 149488 1a110850 fd5ff06f jal x0, -44 +8549280ns 149493 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8549564ns 149498 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8549962ns 149505 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8550133ns 149508 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8550587ns 149516 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8550758ns 149519 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8551042ns 149524 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8551326ns 149529 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8551610ns 149534 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8552065ns 149542 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8552236ns 149545 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8552520ns 149550 1a110850 fd5ff06f jal x0, -44 +8552804ns 149555 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8553088ns 149560 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8553486ns 149567 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8553656ns 149570 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8554111ns 149578 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8554282ns 149581 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8554566ns 149586 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8554850ns 149591 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8555134ns 149596 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8555589ns 149604 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8555759ns 149607 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8556043ns 149612 1a110850 fd5ff06f jal x0, -44 +8556327ns 149617 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8556612ns 149622 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8557009ns 149629 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8557180ns 149632 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8557635ns 149640 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8557805ns 149643 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8558089ns 149648 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8558373ns 149653 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8558658ns 149658 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8559112ns 149666 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8559283ns 149669 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8559567ns 149674 1a110850 fd5ff06f jal x0, -44 +8559851ns 149679 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8560135ns 149684 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8560533ns 149691 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8560704ns 149694 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8561158ns 149702 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8561329ns 149705 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8561613ns 149710 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8561897ns 149715 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8562181ns 149720 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8562636ns 149728 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8562806ns 149731 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8563090ns 149736 1a110850 fd5ff06f jal x0, -44 +8563375ns 149741 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8563659ns 149746 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8564057ns 149753 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8564227ns 149756 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8564682ns 149764 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8564852ns 149767 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8565136ns 149772 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8565421ns 149777 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8565705ns 149782 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8566159ns 149790 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8566330ns 149793 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8566614ns 149798 1a110850 fd5ff06f jal x0, -44 +8566898ns 149803 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8567182ns 149808 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8567580ns 149815 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8567751ns 149818 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8568205ns 149826 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8568376ns 149829 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8568660ns 149834 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8568944ns 149839 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8569228ns 149844 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8569683ns 149852 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8569853ns 149855 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8570138ns 149860 1a110850 fd5ff06f jal x0, -44 +8570422ns 149865 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8570706ns 149870 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8571104ns 149877 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8571274ns 149880 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8571729ns 149888 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8571899ns 149891 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8572184ns 149896 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8572468ns 149901 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8572752ns 149906 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8573207ns 149914 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8573377ns 149917 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8573661ns 149922 1a110850 fd5ff06f jal x0, -44 +8573945ns 149927 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8574230ns 149932 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8574627ns 149939 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8574798ns 149942 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8575253ns 149950 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8575423ns 149953 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8575707ns 149958 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8575991ns 149963 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8576275ns 149968 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8576730ns 149976 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8576901ns 149979 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8577185ns 149984 1a110850 fd5ff06f jal x0, -44 +8577469ns 149989 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8577753ns 149994 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8578151ns 150001 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8578321ns 150004 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8578776ns 150012 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8578947ns 150015 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8579231ns 150020 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8579515ns 150025 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8579799ns 150030 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8580254ns 150038 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8580424ns 150041 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8580708ns 150046 1a110850 fd5ff06f jal x0, -44 +8580993ns 150051 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8581277ns 150056 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8581675ns 150063 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8581845ns 150066 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8582300ns 150074 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8582470ns 150077 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8582754ns 150082 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8583039ns 150087 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8583323ns 150092 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8583777ns 150100 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8583948ns 150103 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8584232ns 150108 1a110850 fd5ff06f jal x0, -44 +8584516ns 150113 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8584800ns 150118 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8585198ns 150125 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8585369ns 150128 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8585823ns 150136 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8585994ns 150139 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8586278ns 150144 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8586562ns 150149 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8586846ns 150154 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8587301ns 150162 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8587471ns 150165 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8587756ns 150170 1a110850 fd5ff06f jal x0, -44 +8588040ns 150175 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8588324ns 150180 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8588722ns 150187 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8588892ns 150190 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8589347ns 150198 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8589517ns 150201 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8589802ns 150206 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8590086ns 150211 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8590370ns 150216 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8590824ns 150224 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8590995ns 150227 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8591279ns 150232 1a110850 fd5ff06f jal x0, -44 +8591563ns 150237 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8591847ns 150242 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8592245ns 150249 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8592416ns 150252 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8592870ns 150260 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8593041ns 150263 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8593325ns 150268 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8593609ns 150273 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8593893ns 150278 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8594348ns 150286 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8594519ns 150289 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8594803ns 150294 1a110850 fd5ff06f jal x0, -44 +8595087ns 150299 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8595371ns 150304 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8595769ns 150311 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8595939ns 150314 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8596394ns 150322 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8596565ns 150325 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8596849ns 150330 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8597133ns 150335 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8597417ns 150340 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8597872ns 150348 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8598042ns 150351 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8598326ns 150356 1a110850 fd5ff06f jal x0, -44 +8598610ns 150361 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8598895ns 150366 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8599292ns 150373 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8599463ns 150376 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8599918ns 150384 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8600088ns 150387 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8600372ns 150392 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8600656ns 150397 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8600941ns 150402 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8601395ns 150410 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8601566ns 150413 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8601850ns 150418 1a110850 fd5ff06f jal x0, -44 +8602134ns 150423 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8602418ns 150428 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8602816ns 150435 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8602987ns 150438 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8603441ns 150446 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8603612ns 150449 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8603896ns 150454 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8604180ns 150459 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8604464ns 150464 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8604919ns 150472 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8605089ns 150475 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8605373ns 150480 1a110850 fd5ff06f jal x0, -44 +8605658ns 150485 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8605942ns 150490 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8606340ns 150497 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8606510ns 150500 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8606965ns 150508 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8607135ns 150511 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8607419ns 150516 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8607704ns 150521 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8607988ns 150526 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8608442ns 150534 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8608613ns 150537 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8608897ns 150542 1a110850 fd5ff06f jal x0, -44 +8609181ns 150547 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8609465ns 150552 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8609863ns 150559 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8610034ns 150562 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8610488ns 150570 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8610659ns 150573 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8610943ns 150578 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8611227ns 150583 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8611511ns 150588 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8611966ns 150596 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8612136ns 150599 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8612421ns 150604 1a110850 fd5ff06f jal x0, -44 +8612705ns 150609 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8612989ns 150614 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8613387ns 150621 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8613557ns 150624 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8614012ns 150632 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8614182ns 150635 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8614467ns 150640 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8614751ns 150645 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8615035ns 150650 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8615490ns 150658 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8615660ns 150661 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8615944ns 150666 1a110850 fd5ff06f jal x0, -44 +8616228ns 150671 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8616513ns 150676 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8616910ns 150683 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8617081ns 150686 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8617536ns 150694 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8617706ns 150697 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8617990ns 150702 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8618274ns 150707 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8618559ns 150712 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8619013ns 150720 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8619184ns 150723 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8619468ns 150728 1a110850 fd5ff06f jal x0, -44 +8619752ns 150733 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8620036ns 150738 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8620434ns 150745 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8620604ns 150748 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8621059ns 150756 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8621230ns 150759 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8621514ns 150764 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8621798ns 150769 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8622082ns 150774 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8622537ns 150782 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8622707ns 150785 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8622991ns 150790 1a110850 fd5ff06f jal x0, -44 +8623276ns 150795 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8623560ns 150800 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8623958ns 150807 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8624128ns 150810 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8624583ns 150818 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8624753ns 150821 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8625037ns 150826 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8625322ns 150831 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8625606ns 150836 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8626060ns 150844 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8626231ns 150847 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8626515ns 150852 1a110850 fd5ff06f jal x0, -44 +8626799ns 150857 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8627083ns 150862 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8627481ns 150869 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8627652ns 150872 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8628106ns 150880 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8628277ns 150883 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8628561ns 150888 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8628845ns 150893 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8629129ns 150898 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8629584ns 150906 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8629754ns 150909 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8630039ns 150914 1a110850 fd5ff06f jal x0, -44 +8630323ns 150919 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8630607ns 150924 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8631005ns 150931 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8631175ns 150934 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8631630ns 150942 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8631800ns 150945 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8632085ns 150950 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8632369ns 150955 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8632653ns 150960 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8633107ns 150968 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8633278ns 150971 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8633562ns 150976 1a110850 fd5ff06f jal x0, -44 +8633846ns 150981 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8634130ns 150986 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8634528ns 150993 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8634699ns 150996 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8635153ns 151004 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8635324ns 151007 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8635608ns 151012 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8635892ns 151017 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8636176ns 151022 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8636631ns 151030 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8636802ns 151033 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8637086ns 151038 1a110850 fd5ff06f jal x0, -44 +8637370ns 151043 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8637654ns 151048 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8638052ns 151055 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8638222ns 151058 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8638677ns 151066 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8638848ns 151069 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8639132ns 151074 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8639416ns 151079 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8639700ns 151084 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8640155ns 151092 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8640325ns 151095 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8640609ns 151100 1a110850 fd5ff06f jal x0, -44 +8640893ns 151105 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8641178ns 151110 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8641575ns 151117 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8641746ns 151120 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8642201ns 151128 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8642371ns 151131 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8642655ns 151136 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8642939ns 151141 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8643224ns 151146 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8643678ns 151154 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8643849ns 151157 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8644133ns 151162 1a110850 fd5ff06f jal x0, -44 +8644417ns 151167 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8644701ns 151172 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8645099ns 151179 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8645270ns 151182 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8645724ns 151190 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8645895ns 151193 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8646179ns 151198 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8646463ns 151203 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8646747ns 151208 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8647202ns 151216 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8647372ns 151219 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8647656ns 151224 1a110850 fd5ff06f jal x0, -44 +8647941ns 151229 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8648225ns 151234 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8648623ns 151241 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8648793ns 151244 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8649248ns 151252 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8649418ns 151255 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8649702ns 151260 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8649987ns 151265 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8650271ns 151270 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8650725ns 151278 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8650896ns 151281 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8651180ns 151286 1a110850 fd5ff06f jal x0, -44 +8651464ns 151291 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8651748ns 151296 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8652146ns 151303 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8652317ns 151306 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8652771ns 151314 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8652942ns 151317 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8653226ns 151322 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8653510ns 151327 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8653794ns 151332 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8654249ns 151340 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8654419ns 151343 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8654704ns 151348 1a110850 fd5ff06f jal x0, -44 +8654988ns 151353 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8655272ns 151358 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8655670ns 151365 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8655840ns 151368 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8656295ns 151376 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8656465ns 151379 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8656750ns 151384 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8657034ns 151389 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8657318ns 151394 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8657773ns 151402 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8657943ns 151405 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8658227ns 151410 1a110850 fd5ff06f jal x0, -44 +8658511ns 151415 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8658796ns 151420 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8659193ns 151427 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8659364ns 151430 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8659819ns 151438 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8659989ns 151441 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8660273ns 151446 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8660557ns 151451 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8660842ns 151456 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8661296ns 151464 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8661467ns 151467 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8661751ns 151472 1a110850 fd5ff06f jal x0, -44 +8662035ns 151477 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8662319ns 151482 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8662717ns 151489 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8662887ns 151492 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8663342ns 151500 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8663513ns 151503 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8663797ns 151508 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8664081ns 151513 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8664365ns 151518 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8664820ns 151526 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8664990ns 151529 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8665274ns 151534 1a110850 fd5ff06f jal x0, -44 +8665559ns 151539 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8665843ns 151544 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8666241ns 151551 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8666411ns 151554 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8666866ns 151562 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8667036ns 151565 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8667320ns 151570 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8667605ns 151575 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8667889ns 151580 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8668343ns 151588 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8668514ns 151591 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8668798ns 151596 1a110850 fd5ff06f jal x0, -44 +8669082ns 151601 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8669366ns 151606 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8669764ns 151613 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8669935ns 151616 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8670389ns 151624 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8670560ns 151627 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8670844ns 151632 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8671128ns 151637 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8671412ns 151642 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8671867ns 151650 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8672037ns 151653 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8672322ns 151658 1a110850 fd5ff06f jal x0, -44 +8672606ns 151663 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8672890ns 151668 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8673288ns 151675 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8673458ns 151678 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8673913ns 151686 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8674083ns 151689 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8674368ns 151694 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8674652ns 151699 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8674936ns 151704 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8675391ns 151712 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8675561ns 151715 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8675845ns 151720 1a110850 fd5ff06f jal x0, -44 +8676129ns 151725 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8676413ns 151730 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8676811ns 151737 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8676982ns 151740 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8677436ns 151748 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8677607ns 151751 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8677891ns 151756 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8678175ns 151761 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8678459ns 151766 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8678914ns 151774 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8679085ns 151777 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8679369ns 151782 1a110850 fd5ff06f jal x0, -44 +8679653ns 151787 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8679937ns 151792 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8680335ns 151799 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8680505ns 151802 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8680960ns 151810 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8681131ns 151813 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8681415ns 151818 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8681699ns 151823 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8681983ns 151828 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8682438ns 151836 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8682608ns 151839 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8682892ns 151844 1a110850 fd5ff06f jal x0, -44 +8683176ns 151849 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8683461ns 151854 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8683858ns 151861 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8684029ns 151864 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8684484ns 151872 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8684654ns 151875 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8684938ns 151880 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8685222ns 151885 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8685507ns 151890 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8685961ns 151898 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8686132ns 151901 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8686416ns 151906 1a110850 fd5ff06f jal x0, -44 +8686700ns 151911 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8686984ns 151916 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8687382ns 151923 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8687553ns 151926 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8688007ns 151934 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8688178ns 151937 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8688462ns 151942 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8688746ns 151947 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8689030ns 151952 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8689485ns 151960 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8689655ns 151963 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8689939ns 151968 1a110850 fd5ff06f jal x0, -44 +8690224ns 151973 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8690508ns 151978 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8690906ns 151985 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8691076ns 151988 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8691531ns 151996 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8691701ns 151999 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8691985ns 152004 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8692270ns 152009 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8692554ns 152014 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8693008ns 152022 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8693179ns 152025 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8693463ns 152030 1a110850 fd5ff06f jal x0, -44 +8693747ns 152035 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8694031ns 152040 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8694429ns 152047 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8694600ns 152050 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8695054ns 152058 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8695225ns 152061 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8695509ns 152066 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8695793ns 152071 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8696077ns 152076 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8696532ns 152084 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8696703ns 152087 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8696987ns 152092 1a110850 fd5ff06f jal x0, -44 +8697271ns 152097 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8697555ns 152102 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8697953ns 152109 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8698123ns 152112 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8698578ns 152120 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8698748ns 152123 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8699033ns 152128 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8699317ns 152133 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8699601ns 152138 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8700056ns 152146 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8700226ns 152149 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8700510ns 152154 1a110850 fd5ff06f jal x0, -44 +8700794ns 152159 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8701079ns 152164 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8701476ns 152171 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8701647ns 152174 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8702102ns 152182 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8702272ns 152185 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8702556ns 152190 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8702840ns 152195 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8703125ns 152200 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8703579ns 152208 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8703750ns 152211 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8704034ns 152216 1a110850 fd5ff06f jal x0, -44 +8704318ns 152221 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8704602ns 152226 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8705000ns 152233 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8705170ns 152236 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8705625ns 152244 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8705796ns 152247 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8706080ns 152252 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8706364ns 152257 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8706648ns 152262 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8707103ns 152270 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8707273ns 152273 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8707557ns 152278 1a110850 fd5ff06f jal x0, -44 +8707842ns 152283 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8708126ns 152288 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8708524ns 152295 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8708694ns 152298 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8709149ns 152306 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8709319ns 152309 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8709603ns 152314 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8709888ns 152319 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8710172ns 152324 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8710626ns 152332 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8710797ns 152335 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8711081ns 152340 1a110850 fd5ff06f jal x0, -44 +8711365ns 152345 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8711649ns 152350 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8712047ns 152357 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8712218ns 152360 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8712672ns 152368 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8712843ns 152371 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8713127ns 152376 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8713411ns 152381 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8713695ns 152386 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8714150ns 152394 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8714320ns 152397 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8714605ns 152402 1a110850 fd5ff06f jal x0, -44 +8714889ns 152407 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8715173ns 152412 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8715571ns 152419 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8715741ns 152422 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8716196ns 152430 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8716366ns 152433 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8716651ns 152438 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8716935ns 152443 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8717219ns 152448 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8717674ns 152456 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8717844ns 152459 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8718128ns 152464 1a110850 fd5ff06f jal x0, -44 +8718412ns 152469 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8718696ns 152474 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8719094ns 152481 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8719265ns 152484 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8719719ns 152492 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8719890ns 152495 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8720174ns 152500 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8720458ns 152505 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8720742ns 152510 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8721197ns 152518 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8721368ns 152521 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8721652ns 152526 1a110850 fd5ff06f jal x0, -44 +8721936ns 152531 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8722220ns 152536 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8722618ns 152543 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8722788ns 152546 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8723243ns 152554 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8723414ns 152557 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8723698ns 152562 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8723982ns 152567 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8724266ns 152572 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8724721ns 152580 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8724891ns 152583 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8725175ns 152588 1a110850 fd5ff06f jal x0, -44 +8725459ns 152593 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8725744ns 152598 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8726141ns 152605 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8726312ns 152608 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8726767ns 152616 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8726937ns 152619 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8727221ns 152624 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8727505ns 152629 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8727790ns 152634 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8728244ns 152642 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8728415ns 152645 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8728699ns 152650 1a110850 fd5ff06f jal x0, -44 +8728983ns 152655 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8729267ns 152660 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8729665ns 152667 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8729836ns 152670 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8730290ns 152678 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8730461ns 152681 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8730745ns 152686 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8731029ns 152691 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8731313ns 152696 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8731768ns 152704 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8731938ns 152707 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8732223ns 152712 1a110850 fd5ff06f jal x0, -44 +8732507ns 152717 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8732791ns 152722 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8733189ns 152729 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8733359ns 152732 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8733814ns 152740 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8733984ns 152743 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8734268ns 152748 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8734553ns 152753 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8734837ns 152758 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8735291ns 152766 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8735462ns 152769 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8735746ns 152774 1a110850 fd5ff06f jal x0, -44 +8736030ns 152779 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8736314ns 152784 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8736712ns 152791 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8736883ns 152794 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8737337ns 152802 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8737508ns 152805 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8737792ns 152810 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8738076ns 152815 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8738360ns 152820 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8738815ns 152828 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8738986ns 152831 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8739270ns 152836 1a110850 fd5ff06f jal x0, -44 +8739554ns 152841 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8739838ns 152846 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8740236ns 152853 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8740406ns 152856 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8740861ns 152864 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8741031ns 152867 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8741316ns 152872 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8741600ns 152877 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8741884ns 152882 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8742339ns 152890 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8742509ns 152893 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8742793ns 152898 1a110850 fd5ff06f jal x0, -44 +8743077ns 152903 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8743362ns 152908 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8743759ns 152915 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8743930ns 152918 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8744385ns 152926 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8744555ns 152929 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8744839ns 152934 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8745123ns 152939 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8745408ns 152944 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8745862ns 152952 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8746033ns 152955 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8746317ns 152960 1a110850 fd5ff06f jal x0, -44 +8746601ns 152965 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8746885ns 152970 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8747283ns 152977 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8747453ns 152980 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8747908ns 152988 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8748079ns 152991 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8748363ns 152996 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8748647ns 153001 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8748931ns 153006 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8749386ns 153014 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8749556ns 153017 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8749840ns 153022 1a110850 fd5ff06f jal x0, -44 +8750125ns 153027 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8750409ns 153032 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8750807ns 153039 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8750977ns 153042 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8751432ns 153050 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8751602ns 153053 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8751886ns 153058 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8752171ns 153063 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8752455ns 153068 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8752909ns 153076 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8753080ns 153079 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8753364ns 153084 1a110850 fd5ff06f jal x0, -44 +8753648ns 153089 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8753932ns 153094 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8754330ns 153101 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8754501ns 153104 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8754955ns 153112 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8755126ns 153115 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8755410ns 153120 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8755694ns 153125 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8755978ns 153130 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8756433ns 153138 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8756603ns 153141 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8756888ns 153146 1a110850 fd5ff06f jal x0, -44 +8757172ns 153151 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8757456ns 153156 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8757854ns 153163 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8758024ns 153166 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8758479ns 153174 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8758649ns 153177 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8758934ns 153182 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8759218ns 153187 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8759502ns 153192 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8759957ns 153200 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8760127ns 153203 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8760411ns 153208 1a110850 fd5ff06f jal x0, -44 +8760695ns 153213 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8760979ns 153218 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8761377ns 153225 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8761548ns 153228 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8762002ns 153236 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8762173ns 153239 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8762457ns 153244 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8762741ns 153249 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8763025ns 153254 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8763480ns 153262 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8763651ns 153265 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8763935ns 153270 1a110850 fd5ff06f jal x0, -44 +8764219ns 153275 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8764503ns 153280 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8764901ns 153287 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8765071ns 153290 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8765526ns 153298 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8765697ns 153301 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8765981ns 153306 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8766265ns 153311 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8766549ns 153316 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8767004ns 153324 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8767174ns 153327 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8767458ns 153332 1a110850 fd5ff06f jal x0, -44 +8767743ns 153337 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8768027ns 153342 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8768424ns 153349 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8768595ns 153352 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8769050ns 153360 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8769220ns 153363 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8769504ns 153368 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8769788ns 153373 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8770073ns 153378 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8770527ns 153386 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8770698ns 153389 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8770982ns 153394 1a110850 fd5ff06f jal x0, -44 +8771266ns 153399 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8771550ns 153404 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8771948ns 153411 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8772119ns 153414 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8772573ns 153422 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8772744ns 153425 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8773028ns 153430 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8773312ns 153435 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8773596ns 153440 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8774051ns 153448 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8774221ns 153451 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8774506ns 153456 1a110850 fd5ff06f jal x0, -44 +8774790ns 153461 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8775074ns 153466 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8775472ns 153473 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8775642ns 153476 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8776097ns 153484 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8776267ns 153487 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8776551ns 153492 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8776836ns 153497 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8777120ns 153502 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8777574ns 153510 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8777745ns 153513 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8778029ns 153518 1a110850 fd5ff06f jal x0, -44 +8778313ns 153523 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8778597ns 153528 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8778995ns 153535 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8779166ns 153538 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8779620ns 153546 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8779791ns 153549 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8780075ns 153554 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8780359ns 153559 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8780643ns 153564 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8781098ns 153572 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8781269ns 153575 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8781553ns 153580 1a110850 fd5ff06f jal x0, -44 +8781837ns 153585 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8782121ns 153590 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8782519ns 153597 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8782689ns 153600 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8783144ns 153608 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8783314ns 153611 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8783599ns 153616 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8783883ns 153621 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8784167ns 153626 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8784622ns 153634 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8784792ns 153637 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8785076ns 153642 1a110850 fd5ff06f jal x0, -44 +8785360ns 153647 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8785645ns 153652 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8786042ns 153659 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8786213ns 153662 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8786668ns 153670 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8786838ns 153673 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8787122ns 153678 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8787406ns 153683 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8787691ns 153688 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8788145ns 153696 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8788316ns 153699 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8788600ns 153704 1a110850 fd5ff06f jal x0, -44 +8788884ns 153709 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8789168ns 153714 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8789566ns 153721 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8789736ns 153724 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8790191ns 153732 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8790362ns 153735 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8790646ns 153740 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8790930ns 153745 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8791214ns 153750 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8791669ns 153758 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8791839ns 153761 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8792123ns 153766 1a110850 fd5ff06f jal x0, -44 +8792408ns 153771 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8792692ns 153776 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8793090ns 153783 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8793260ns 153786 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8793715ns 153794 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8793885ns 153797 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8794169ns 153802 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8794454ns 153807 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8794738ns 153812 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8795192ns 153820 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8795363ns 153823 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8795647ns 153828 1a110850 fd5ff06f jal x0, -44 +8795931ns 153833 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8796215ns 153838 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8796613ns 153845 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8796784ns 153848 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8797238ns 153856 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8797409ns 153859 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8797693ns 153864 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8797977ns 153869 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8798261ns 153874 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8798716ns 153882 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8798886ns 153885 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8799171ns 153890 1a110850 fd5ff06f jal x0, -44 +8799455ns 153895 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8799739ns 153900 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8800137ns 153907 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8800307ns 153910 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8800762ns 153918 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8800932ns 153921 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8801217ns 153926 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8801501ns 153931 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8801785ns 153936 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8802240ns 153944 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8802410ns 153947 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8802694ns 153952 1a110850 fd5ff06f jal x0, -44 +8802978ns 153957 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8803263ns 153962 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8803660ns 153969 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8803831ns 153972 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8804285ns 153980 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8804456ns 153983 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8804740ns 153988 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8805024ns 153993 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8805308ns 153998 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8805763ns 154006 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8805934ns 154009 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8806218ns 154014 1a110850 fd5ff06f jal x0, -44 +8806502ns 154019 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8806786ns 154024 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8807184ns 154031 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8807354ns 154034 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8807809ns 154042 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8807980ns 154045 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8808264ns 154050 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8808548ns 154055 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8808832ns 154060 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8809287ns 154068 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8809457ns 154071 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8809741ns 154076 1a110850 fd5ff06f jal x0, -44 +8810026ns 154081 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8810310ns 154086 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8810707ns 154093 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8810878ns 154096 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8811333ns 154104 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8811503ns 154107 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8811787ns 154112 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8812071ns 154117 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8812356ns 154122 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8812810ns 154130 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8812981ns 154133 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8813265ns 154138 1a110850 fd5ff06f jal x0, -44 +8813549ns 154143 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8813833ns 154148 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8814231ns 154155 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8814402ns 154158 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8814856ns 154166 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8815027ns 154169 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8815311ns 154174 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8815595ns 154179 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8815879ns 154184 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8816334ns 154192 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8816504ns 154195 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8816789ns 154200 1a110850 fd5ff06f jal x0, -44 +8817073ns 154205 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8817357ns 154210 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8817755ns 154217 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8817925ns 154220 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8818380ns 154228 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8818550ns 154231 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8818834ns 154236 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8819119ns 154241 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8819403ns 154246 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8819857ns 154254 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8820028ns 154257 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8820312ns 154262 1a110850 fd5ff06f jal x0, -44 +8820596ns 154267 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8820880ns 154272 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8821278ns 154279 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8821449ns 154282 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8821903ns 154290 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8822074ns 154293 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8822358ns 154298 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8822642ns 154303 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8822926ns 154308 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8823381ns 154316 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8823552ns 154319 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8823836ns 154324 1a110850 fd5ff06f jal x0, -44 +8824120ns 154329 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8824404ns 154334 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8824802ns 154341 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8824972ns 154344 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8825427ns 154352 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8825597ns 154355 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8825882ns 154360 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8826166ns 154365 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8826450ns 154370 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8826905ns 154378 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8827075ns 154381 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8827359ns 154386 1a110850 fd5ff06f jal x0, -44 +8827643ns 154391 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8827928ns 154396 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8828325ns 154403 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8828496ns 154406 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8828951ns 154414 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8829121ns 154417 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8829405ns 154422 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8829689ns 154427 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8829974ns 154432 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8830428ns 154440 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8830599ns 154443 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8830883ns 154448 1a110850 fd5ff06f jal x0, -44 +8831167ns 154453 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8831451ns 154458 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8831849ns 154465 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8832019ns 154468 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8832474ns 154476 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8832645ns 154479 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8832929ns 154484 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8833213ns 154489 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8833497ns 154494 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8833952ns 154502 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8834122ns 154505 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8834406ns 154510 1a110850 fd5ff06f jal x0, -44 +8834691ns 154515 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8834975ns 154520 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8835373ns 154527 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8835543ns 154530 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8835998ns 154538 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8836168ns 154541 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8836452ns 154546 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8836737ns 154551 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8837021ns 154556 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8837475ns 154564 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8837646ns 154567 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8837930ns 154572 1a110850 fd5ff06f jal x0, -44 +8838214ns 154577 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8838498ns 154582 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8838896ns 154589 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8839067ns 154592 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8839521ns 154600 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8839692ns 154603 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8839976ns 154608 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8840260ns 154613 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8840544ns 154618 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8840999ns 154626 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8841169ns 154629 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8841454ns 154634 1a110850 fd5ff06f jal x0, -44 +8841738ns 154639 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8842022ns 154644 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8842420ns 154651 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8842590ns 154654 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8843045ns 154662 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8843215ns 154665 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8843500ns 154670 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8843784ns 154675 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8844068ns 154680 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8844523ns 154688 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8844693ns 154691 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8844977ns 154696 1a110850 fd5ff06f jal x0, -44 +8845261ns 154701 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8845546ns 154706 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8845943ns 154713 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8846114ns 154716 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8846568ns 154724 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8846739ns 154727 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8847023ns 154732 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8847307ns 154737 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8847591ns 154742 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8848046ns 154750 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8848217ns 154753 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8848501ns 154758 1a110850 fd5ff06f jal x0, -44 +8848785ns 154763 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8849069ns 154768 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8849467ns 154775 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8849637ns 154778 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8850092ns 154786 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8850263ns 154789 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8850547ns 154794 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8850831ns 154799 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8851115ns 154804 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8851570ns 154812 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8851740ns 154815 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8852024ns 154820 1a110850 fd5ff06f jal x0, -44 +8852309ns 154825 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8852593ns 154830 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8852991ns 154837 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8853161ns 154840 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8853616ns 154848 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8853786ns 154851 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8854070ns 154856 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8854354ns 154861 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8854639ns 154866 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8855093ns 154874 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8855264ns 154877 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8855548ns 154882 1a110850 fd5ff06f jal x0, -44 +8855832ns 154887 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8856116ns 154892 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8856514ns 154899 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8856685ns 154902 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8857139ns 154910 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8857310ns 154913 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8857594ns 154918 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8857878ns 154923 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8858162ns 154928 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8858617ns 154936 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8858787ns 154939 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8859072ns 154944 1a110850 fd5ff06f jal x0, -44 +8859356ns 154949 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8859640ns 154954 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8860038ns 154961 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8860208ns 154964 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8860663ns 154972 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8860833ns 154975 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8861117ns 154980 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8861402ns 154985 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8861686ns 154990 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8862140ns 154998 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8862311ns 155001 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8862595ns 155006 1a110850 fd5ff06f jal x0, -44 +8862879ns 155011 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8863163ns 155016 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8863561ns 155023 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8863732ns 155026 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8864186ns 155034 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8864357ns 155037 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8864641ns 155042 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8864925ns 155047 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8865209ns 155052 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8865664ns 155060 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8865835ns 155063 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8866119ns 155068 1a110850 fd5ff06f jal x0, -44 +8866403ns 155073 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8866687ns 155078 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8867085ns 155085 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8867255ns 155088 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8867710ns 155096 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8867880ns 155099 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8868165ns 155104 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8868449ns 155109 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8868733ns 155114 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8869188ns 155122 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8869358ns 155125 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8869642ns 155130 1a110850 fd5ff06f jal x0, -44 +8869926ns 155135 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8870211ns 155140 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8870608ns 155147 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8870779ns 155150 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8871234ns 155158 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8871404ns 155161 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8871688ns 155166 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8871972ns 155171 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8872257ns 155176 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8872711ns 155184 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8872882ns 155187 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8873166ns 155192 1a110850 fd5ff06f jal x0, -44 +8873450ns 155197 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8873734ns 155202 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8874132ns 155209 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8874303ns 155212 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8874757ns 155220 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8874928ns 155223 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8875212ns 155228 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8875496ns 155233 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8875780ns 155238 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8876235ns 155246 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8876405ns 155249 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8876689ns 155254 1a110850 fd5ff06f jal x0, -44 +8876974ns 155259 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8877258ns 155264 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8877656ns 155271 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8877826ns 155274 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8878281ns 155282 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8878451ns 155285 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8878735ns 155290 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8879020ns 155295 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8879304ns 155300 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8879758ns 155308 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8879929ns 155311 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8880213ns 155316 1a110850 fd5ff06f jal x0, -44 +8880497ns 155321 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8880781ns 155326 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8881179ns 155333 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8881350ns 155336 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8881804ns 155344 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8881975ns 155347 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8882259ns 155352 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8882543ns 155357 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8882827ns 155362 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8883282ns 155370 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8883452ns 155373 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8883737ns 155378 1a110850 fd5ff06f jal x0, -44 +8884021ns 155383 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8884305ns 155388 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8884703ns 155395 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8884873ns 155398 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8885328ns 155406 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8885498ns 155409 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8885783ns 155414 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8886067ns 155419 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8886351ns 155424 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8886806ns 155432 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8886976ns 155435 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8887260ns 155440 1a110850 fd5ff06f jal x0, -44 +8887544ns 155445 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8887829ns 155450 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8888226ns 155457 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8888397ns 155460 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8888851ns 155468 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8889022ns 155471 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8889306ns 155476 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8889590ns 155481 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8889874ns 155486 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8890329ns 155494 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8890500ns 155497 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8890784ns 155502 1a110850 fd5ff06f jal x0, -44 +8891068ns 155507 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8891352ns 155512 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8891750ns 155519 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8891920ns 155522 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8892375ns 155530 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8892546ns 155533 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8892830ns 155538 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8893114ns 155543 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8893398ns 155548 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8893853ns 155556 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8894023ns 155559 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8894307ns 155564 1a110850 fd5ff06f jal x0, -44 +8894592ns 155569 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8894876ns 155574 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8895274ns 155581 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8895444ns 155584 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8895899ns 155592 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8896069ns 155595 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8896353ns 155600 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8896637ns 155605 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8896922ns 155610 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8897376ns 155618 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8897547ns 155621 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8897831ns 155626 1a110850 fd5ff06f jal x0, -44 +8898115ns 155631 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8898399ns 155636 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8898797ns 155643 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8898968ns 155646 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8899422ns 155654 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8899593ns 155657 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8899877ns 155662 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8900161ns 155667 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8900445ns 155672 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8900900ns 155680 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8901070ns 155683 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8901355ns 155688 1a110850 fd5ff06f jal x0, -44 +8901639ns 155693 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8901923ns 155698 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8902321ns 155705 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8902491ns 155708 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8902946ns 155716 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8903116ns 155719 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8903400ns 155724 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8903685ns 155729 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8903969ns 155734 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8904423ns 155742 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8904594ns 155745 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8904878ns 155750 1a110850 fd5ff06f jal x0, -44 +8905162ns 155755 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8905446ns 155760 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8905844ns 155767 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8906015ns 155770 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8906469ns 155778 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8906640ns 155781 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8906924ns 155786 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8907208ns 155791 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8907492ns 155796 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8907947ns 155804 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8908118ns 155807 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8908402ns 155812 1a110850 fd5ff06f jal x0, -44 +8908686ns 155817 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8908970ns 155822 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8909368ns 155829 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8909538ns 155832 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8909993ns 155840 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8910163ns 155843 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8910448ns 155848 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8910732ns 155853 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8911016ns 155858 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8911471ns 155866 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8911641ns 155869 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8911925ns 155874 1a110850 fd5ff06f jal x0, -44 +8912209ns 155879 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8912494ns 155884 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8912891ns 155891 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8913062ns 155894 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8913517ns 155902 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8913687ns 155905 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8913971ns 155910 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8914255ns 155915 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8914540ns 155920 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8914994ns 155928 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8915165ns 155931 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8915449ns 155936 1a110850 fd5ff06f jal x0, -44 +8915733ns 155941 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8916017ns 155946 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8916415ns 155953 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8916586ns 155956 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8917040ns 155964 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8917211ns 155967 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8917495ns 155972 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8917779ns 155977 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8918063ns 155982 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8918518ns 155990 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8918688ns 155993 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8918972ns 155998 1a110850 fd5ff06f jal x0, -44 +8919257ns 156003 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8919541ns 156008 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8919939ns 156015 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8920109ns 156018 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8920564ns 156026 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8920734ns 156029 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8921018ns 156034 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8921303ns 156039 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8921587ns 156044 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8922041ns 156052 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8922212ns 156055 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8922496ns 156060 1a110850 fd5ff06f jal x0, -44 +8922780ns 156065 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8923064ns 156070 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8923462ns 156077 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8923633ns 156080 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8924087ns 156088 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8924258ns 156091 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8924542ns 156096 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8924826ns 156101 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8925110ns 156106 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8925565ns 156114 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8925735ns 156117 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8926020ns 156122 1a110850 fd5ff06f jal x0, -44 +8926304ns 156127 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8926588ns 156132 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8926986ns 156139 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8927156ns 156142 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8927611ns 156150 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8927781ns 156153 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8928066ns 156158 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8928350ns 156163 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8928634ns 156168 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8929089ns 156176 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8929259ns 156179 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8929543ns 156184 1a110850 fd5ff06f jal x0, -44 +8929827ns 156189 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8930112ns 156194 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8930509ns 156201 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8930680ns 156204 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8931135ns 156212 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8931305ns 156215 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8931589ns 156220 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8931873ns 156225 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8932157ns 156230 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8932612ns 156238 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8932783ns 156241 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8933067ns 156246 1a110850 fd5ff06f jal x0, -44 +8933351ns 156251 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8933635ns 156256 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8934033ns 156263 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8934203ns 156266 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8934658ns 156274 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8934829ns 156277 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8935113ns 156282 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8935397ns 156287 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8935681ns 156292 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8936136ns 156300 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8936306ns 156303 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8936590ns 156308 1a110850 fd5ff06f jal x0, -44 +8936875ns 156313 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8937159ns 156318 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8937557ns 156325 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8937727ns 156328 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8938182ns 156336 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8938352ns 156339 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8938636ns 156344 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8938920ns 156349 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8939205ns 156354 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8939659ns 156362 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8939830ns 156365 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8940114ns 156370 1a110850 fd5ff06f jal x0, -44 +8940398ns 156375 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8940682ns 156380 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8941080ns 156387 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8941251ns 156390 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8941705ns 156398 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8941876ns 156401 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8942160ns 156406 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8942444ns 156411 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8942728ns 156416 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8943183ns 156424 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8943353ns 156427 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8943638ns 156432 1a110850 fd5ff06f jal x0, -44 +8943922ns 156437 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8944206ns 156442 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8944604ns 156449 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8944774ns 156452 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8945229ns 156460 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8945399ns 156463 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8945683ns 156468 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8945968ns 156473 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8946252ns 156478 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8946706ns 156486 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8946877ns 156489 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8947161ns 156494 1a110850 fd5ff06f jal x0, -44 +8947445ns 156499 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8947729ns 156504 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8948127ns 156511 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8948298ns 156514 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8948752ns 156522 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8948923ns 156525 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8949207ns 156530 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8949491ns 156535 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8949775ns 156540 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8950230ns 156548 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8950401ns 156551 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8950685ns 156556 1a110850 fd5ff06f jal x0, -44 +8950969ns 156561 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8951253ns 156566 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8951651ns 156573 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8951821ns 156576 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8952276ns 156584 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8952447ns 156587 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8952731ns 156592 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8953015ns 156597 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8953299ns 156602 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8953754ns 156610 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8953924ns 156613 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8954208ns 156618 1a110850 fd5ff06f jal x0, -44 +8954492ns 156623 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8954777ns 156628 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8955174ns 156635 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8955345ns 156638 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8955800ns 156646 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8955970ns 156649 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8956254ns 156654 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8956538ns 156659 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8956823ns 156664 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8957277ns 156672 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8957448ns 156675 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8957732ns 156680 1a110850 fd5ff06f jal x0, -44 +8958016ns 156685 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8958300ns 156690 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8958698ns 156697 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8958869ns 156700 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8959323ns 156708 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8959494ns 156711 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8959778ns 156716 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8960062ns 156721 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8960346ns 156726 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8960801ns 156734 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8960971ns 156737 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8961255ns 156742 1a110850 fd5ff06f jal x0, -44 +8961540ns 156747 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8961824ns 156752 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8962222ns 156759 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8962392ns 156762 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8962847ns 156770 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8963017ns 156773 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8963301ns 156778 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8963586ns 156783 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8963870ns 156788 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8964324ns 156796 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8964495ns 156799 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8964779ns 156804 1a110850 fd5ff06f jal x0, -44 +8965063ns 156809 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8965347ns 156814 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8965745ns 156821 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8965916ns 156824 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8966370ns 156832 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8966541ns 156835 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8966825ns 156840 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8967109ns 156845 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8967393ns 156850 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8967848ns 156858 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8968018ns 156861 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8968303ns 156866 1a110850 fd5ff06f jal x0, -44 +8968587ns 156871 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8968871ns 156876 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8969269ns 156883 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8969439ns 156886 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8969894ns 156894 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8970064ns 156897 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8970349ns 156902 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8970633ns 156907 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8970917ns 156912 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8971372ns 156920 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8971542ns 156923 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8971826ns 156928 1a110850 fd5ff06f jal x0, -44 +8972110ns 156933 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8972395ns 156938 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8972792ns 156945 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8972963ns 156948 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8973418ns 156956 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8973588ns 156959 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8973872ns 156964 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8974156ns 156969 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8974440ns 156974 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8974895ns 156982 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8975066ns 156985 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8975350ns 156990 1a110850 fd5ff06f jal x0, -44 +8975634ns 156995 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8975918ns 157000 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8976316ns 157007 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8976486ns 157010 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8976941ns 157018 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8977112ns 157021 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8977396ns 157026 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8977680ns 157031 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8977964ns 157036 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8978419ns 157044 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8978589ns 157047 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8978873ns 157052 1a110850 fd5ff06f jal x0, -44 +8979158ns 157057 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8979442ns 157062 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8979840ns 157069 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8980010ns 157072 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8980465ns 157080 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8980635ns 157083 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8980919ns 157088 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8981203ns 157093 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8981488ns 157098 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8981942ns 157106 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8982113ns 157109 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8982397ns 157114 1a110850 fd5ff06f jal x0, -44 +8982681ns 157119 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8982965ns 157124 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8983363ns 157131 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8983534ns 157134 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8983988ns 157142 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8984159ns 157145 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8984443ns 157150 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8984727ns 157155 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8985011ns 157160 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8985466ns 157168 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8985636ns 157171 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8985921ns 157176 1a110850 fd5ff06f jal x0, -44 +8986205ns 157181 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8986489ns 157186 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8986887ns 157193 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8987057ns 157196 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8987512ns 157204 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8987682ns 157207 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8987967ns 157212 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8988251ns 157217 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8988535ns 157222 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8988989ns 157230 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8989160ns 157233 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8989444ns 157238 1a110850 fd5ff06f jal x0, -44 +8989728ns 157243 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8990012ns 157248 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8990410ns 157255 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8990581ns 157258 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8991035ns 157266 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8991206ns 157269 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8991490ns 157274 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8991774ns 157279 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8992058ns 157284 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8992513ns 157292 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8992684ns 157295 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8992968ns 157300 1a110850 fd5ff06f jal x0, -44 +8993252ns 157305 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8993536ns 157310 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8993934ns 157317 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8994104ns 157320 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8994559ns 157328 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8994730ns 157331 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8995014ns 157336 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8995298ns 157341 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8995582ns 157346 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8996037ns 157354 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8996207ns 157357 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +8996491ns 157362 1a110850 fd5ff06f jal x0, -44 +8996775ns 157367 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8997060ns 157372 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +8997457ns 157379 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8997628ns 157382 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8998083ns 157390 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +8998253ns 157393 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +8998537ns 157398 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +8998821ns 157403 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +8999106ns 157408 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +8999560ns 157416 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +8999731ns 157419 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9000015ns 157424 1a110850 fd5ff06f jal x0, -44 +9000299ns 157429 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9000583ns 157434 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9000981ns 157441 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9001152ns 157444 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9001606ns 157452 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9001777ns 157455 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9002061ns 157460 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9002345ns 157465 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9002629ns 157470 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9003084ns 157478 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9003254ns 157481 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9003538ns 157486 1a110850 fd5ff06f jal x0, -44 +9003823ns 157491 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9004107ns 157496 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9004505ns 157503 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9004675ns 157506 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9005130ns 157514 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9005300ns 157517 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9005584ns 157522 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9005869ns 157527 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9006153ns 157532 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9006607ns 157540 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9006778ns 157543 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9007062ns 157548 1a110850 fd5ff06f jal x0, -44 +9007346ns 157553 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9007630ns 157558 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9008028ns 157565 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9008199ns 157568 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9008653ns 157576 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9008824ns 157579 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9009108ns 157584 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9009392ns 157589 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9009676ns 157594 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9010131ns 157602 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9010301ns 157605 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9010586ns 157610 1a110850 fd5ff06f jal x0, -44 +9010870ns 157615 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9011154ns 157620 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9011552ns 157627 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9011722ns 157630 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9012177ns 157638 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9012347ns 157641 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9012632ns 157646 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9012916ns 157651 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9013200ns 157656 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9013655ns 157664 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9013825ns 157667 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9014109ns 157672 1a110850 fd5ff06f jal x0, -44 +9014393ns 157677 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9014678ns 157682 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9015075ns 157689 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9015246ns 157692 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9015701ns 157700 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9015871ns 157703 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9016155ns 157708 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9016439ns 157713 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9016723ns 157718 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9017178ns 157726 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9017349ns 157729 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9017633ns 157734 1a110850 fd5ff06f jal x0, -44 +9017917ns 157739 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9018201ns 157744 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9018599ns 157751 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9018769ns 157754 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9019224ns 157762 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9019395ns 157765 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9019679ns 157770 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9019963ns 157775 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9020247ns 157780 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9020702ns 157788 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9020872ns 157791 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9021156ns 157796 1a110850 fd5ff06f jal x0, -44 +9021441ns 157801 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9021725ns 157806 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9022123ns 157813 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9022293ns 157816 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9022748ns 157824 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9022918ns 157827 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9023202ns 157832 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9023487ns 157837 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9023771ns 157842 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9024225ns 157850 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9024396ns 157853 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9024680ns 157858 1a110850 fd5ff06f jal x0, -44 +9024964ns 157863 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9025248ns 157868 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9025646ns 157875 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9025817ns 157878 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9026271ns 157886 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9026442ns 157889 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9026726ns 157894 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9027010ns 157899 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9027294ns 157904 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9027749ns 157912 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9027919ns 157915 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9028204ns 157920 1a110850 fd5ff06f jal x0, -44 +9028488ns 157925 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9028772ns 157930 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9029170ns 157937 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9029340ns 157940 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9029795ns 157948 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9029965ns 157951 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9030250ns 157956 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9030534ns 157961 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9030818ns 157966 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9031272ns 157974 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9031443ns 157977 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9031727ns 157982 1a110850 fd5ff06f jal x0, -44 +9032011ns 157987 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9032295ns 157992 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9032693ns 157999 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9032864ns 158002 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9033318ns 158010 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9033489ns 158013 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9033773ns 158018 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9034057ns 158023 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9034341ns 158028 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9034796ns 158036 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9034967ns 158039 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9035251ns 158044 1a110850 fd5ff06f jal x0, -44 +9035535ns 158049 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9035819ns 158054 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9036217ns 158061 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9036387ns 158064 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9036842ns 158072 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9037013ns 158075 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9037297ns 158080 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9037581ns 158085 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9037865ns 158090 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9038320ns 158098 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9038490ns 158101 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9038774ns 158106 1a110850 fd5ff06f jal x0, -44 +9039058ns 158111 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9039343ns 158116 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9039740ns 158123 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9039911ns 158126 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9040366ns 158134 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9040536ns 158137 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9040820ns 158142 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9041104ns 158147 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9041389ns 158152 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9041843ns 158160 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9042014ns 158163 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9042298ns 158168 1a110850 fd5ff06f jal x0, -44 +9042582ns 158173 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9042866ns 158178 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9043264ns 158185 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9043435ns 158188 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9043889ns 158196 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9044060ns 158199 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9044344ns 158204 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9044628ns 158209 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9044912ns 158214 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9045367ns 158222 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9045537ns 158225 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9045821ns 158230 1a110850 fd5ff06f jal x0, -44 +9046106ns 158235 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9046390ns 158240 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9046788ns 158247 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9046958ns 158250 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9047413ns 158258 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9047583ns 158261 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9047867ns 158266 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9048152ns 158271 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9048436ns 158276 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9048890ns 158284 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9049061ns 158287 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9049345ns 158292 1a110850 fd5ff06f jal x0, -44 +9049629ns 158297 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9049913ns 158302 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9050311ns 158309 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9050482ns 158312 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9050936ns 158320 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9051107ns 158323 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9051391ns 158328 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9051675ns 158333 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9051959ns 158338 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9052414ns 158346 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9052584ns 158349 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9052869ns 158354 1a110850 fd5ff06f jal x0, -44 +9053153ns 158359 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9053437ns 158364 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9053835ns 158371 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9054005ns 158374 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9054460ns 158382 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9054630ns 158385 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9054915ns 158390 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9055199ns 158395 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9055483ns 158400 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9055938ns 158408 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9056108ns 158411 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9056392ns 158416 1a110850 fd5ff06f jal x0, -44 +9056676ns 158421 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9056961ns 158426 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9057358ns 158433 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9057529ns 158436 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9057984ns 158444 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9058154ns 158447 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9058438ns 158452 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9058722ns 158457 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9059007ns 158462 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9059461ns 158470 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9059632ns 158473 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9059916ns 158478 1a110850 fd5ff06f jal x0, -44 +9060200ns 158483 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9060484ns 158488 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9060882ns 158495 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9061052ns 158498 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9061507ns 158506 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9061678ns 158509 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9061962ns 158514 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9062246ns 158519 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9062530ns 158524 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9062985ns 158532 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9063155ns 158535 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9063439ns 158540 1a110850 fd5ff06f jal x0, -44 +9063724ns 158545 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9064008ns 158550 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9064406ns 158557 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9064576ns 158560 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9065031ns 158568 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9065201ns 158571 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9065485ns 158576 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9065770ns 158581 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9066054ns 158586 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9066508ns 158594 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9066679ns 158597 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9066963ns 158602 1a110850 fd5ff06f jal x0, -44 +9067247ns 158607 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9067531ns 158612 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9067929ns 158619 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9068100ns 158622 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9068554ns 158630 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9068725ns 158633 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9069009ns 158638 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9069293ns 158643 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9069577ns 158648 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9070032ns 158656 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9070202ns 158659 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9070487ns 158664 1a110850 fd5ff06f jal x0, -44 +9070771ns 158669 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9071055ns 158674 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9071453ns 158681 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9071623ns 158684 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9072078ns 158692 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9072248ns 158695 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9072533ns 158700 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9072817ns 158705 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9073101ns 158710 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9073555ns 158718 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9073726ns 158721 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9074010ns 158726 1a110850 fd5ff06f jal x0, -44 +9074294ns 158731 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9074578ns 158736 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9074976ns 158743 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9075147ns 158746 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9075601ns 158754 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9075772ns 158757 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9076056ns 158762 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9076340ns 158767 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9076624ns 158772 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9077079ns 158780 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9077250ns 158783 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9077534ns 158788 1a110850 fd5ff06f jal x0, -44 +9077818ns 158793 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9078102ns 158798 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9078500ns 158805 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9078670ns 158808 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9079125ns 158816 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9079296ns 158819 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9079580ns 158824 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9079864ns 158829 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9080148ns 158834 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9080603ns 158842 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9080773ns 158845 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9081057ns 158850 1a110850 fd5ff06f jal x0, -44 +9081341ns 158855 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9081626ns 158860 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9082023ns 158867 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9082194ns 158870 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9082649ns 158878 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9082819ns 158881 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9083103ns 158886 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9083387ns 158891 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9083672ns 158896 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9084126ns 158904 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9084297ns 158907 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9084581ns 158912 1a110850 fd5ff06f jal x0, -44 +9084865ns 158917 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9085149ns 158922 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9085547ns 158929 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9085718ns 158932 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9086172ns 158940 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9086343ns 158943 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9086627ns 158948 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9086911ns 158953 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9087195ns 158958 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9087650ns 158966 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9087820ns 158969 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9088104ns 158974 1a110850 fd5ff06f jal x0, -44 +9088389ns 158979 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9088673ns 158984 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9089071ns 158991 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9089241ns 158994 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9089696ns 159002 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9089866ns 159005 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9090150ns 159010 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9090435ns 159015 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9090719ns 159020 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9091173ns 159028 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9091344ns 159031 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9091628ns 159036 1a110850 fd5ff06f jal x0, -44 +9091912ns 159041 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9092196ns 159046 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9092594ns 159053 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9092765ns 159056 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9093219ns 159064 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9093390ns 159067 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9093674ns 159072 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9093958ns 159077 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9094242ns 159082 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9094697ns 159090 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9094867ns 159093 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9095152ns 159098 1a110850 fd5ff06f jal x0, -44 +9095436ns 159103 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9095720ns 159108 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9096118ns 159115 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9096288ns 159118 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9096743ns 159126 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9096913ns 159129 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9097198ns 159134 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9097482ns 159139 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9097766ns 159144 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9098221ns 159152 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9098391ns 159155 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9098675ns 159160 1a110850 fd5ff06f jal x0, -44 +9098959ns 159165 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9099244ns 159170 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9099641ns 159177 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9099812ns 159180 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9100267ns 159188 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9100437ns 159191 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9100721ns 159196 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9101005ns 159201 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9101290ns 159206 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9101744ns 159214 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9101915ns 159217 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9102199ns 159222 1a110850 fd5ff06f jal x0, -44 +9102483ns 159227 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9102767ns 159232 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9103165ns 159239 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9103335ns 159242 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9103790ns 159250 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9103961ns 159253 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9104245ns 159258 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9104529ns 159263 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9104813ns 159268 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9105268ns 159276 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9105438ns 159279 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9105722ns 159284 1a110850 fd5ff06f jal x0, -44 +9106007ns 159289 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9106291ns 159294 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9106689ns 159301 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9106859ns 159304 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9107314ns 159312 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9107484ns 159315 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9107768ns 159320 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9108053ns 159325 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9108337ns 159330 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9108791ns 159338 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9108962ns 159341 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9109246ns 159346 1a110850 fd5ff06f jal x0, -44 +9109530ns 159351 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9109814ns 159356 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9110212ns 159363 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9110383ns 159366 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9110837ns 159374 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9111008ns 159377 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9111292ns 159382 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9111576ns 159387 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9111860ns 159392 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9112315ns 159400 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9112485ns 159403 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9112770ns 159408 1a110850 fd5ff06f jal x0, -44 +9113054ns 159413 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9113338ns 159418 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9113736ns 159425 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9113906ns 159428 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9114361ns 159436 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9114531ns 159439 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9114816ns 159444 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9115100ns 159449 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9115384ns 159454 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9115839ns 159462 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9116009ns 159465 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9116293ns 159470 1a110850 fd5ff06f jal x0, -44 +9116577ns 159475 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9116861ns 159480 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9117259ns 159487 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9117430ns 159490 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9117884ns 159498 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9118055ns 159501 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9118339ns 159506 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9118623ns 159511 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9118907ns 159516 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9119362ns 159524 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9119533ns 159527 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9119817ns 159532 1a110850 fd5ff06f jal x0, -44 +9120101ns 159537 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9120385ns 159542 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9120783ns 159549 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9120953ns 159552 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9121408ns 159560 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9121579ns 159563 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9121863ns 159568 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9122147ns 159573 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9122431ns 159578 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9122886ns 159586 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9123056ns 159589 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9123340ns 159594 1a110850 fd5ff06f jal x0, -44 +9123624ns 159599 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9123909ns 159604 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9124306ns 159611 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9124477ns 159614 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9124932ns 159622 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9125102ns 159625 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9125386ns 159630 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9125670ns 159635 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9125955ns 159640 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9126409ns 159648 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9126580ns 159651 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9126864ns 159656 1a110850 fd5ff06f jal x0, -44 +9127148ns 159661 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9127432ns 159666 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9127830ns 159673 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9128001ns 159676 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9128455ns 159684 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9128626ns 159687 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9128910ns 159692 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9129194ns 159697 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9129478ns 159702 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9129933ns 159710 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9130103ns 159713 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9130387ns 159718 1a110850 fd5ff06f jal x0, -44 +9130672ns 159723 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9130956ns 159728 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9131354ns 159735 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9131524ns 159738 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9131979ns 159746 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9132149ns 159749 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9132433ns 159754 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9132718ns 159759 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9133002ns 159764 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9133456ns 159772 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9133627ns 159775 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9133911ns 159780 1a110850 fd5ff06f jal x0, -44 +9134195ns 159785 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9134479ns 159790 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9134877ns 159797 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9135048ns 159800 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9135502ns 159808 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9135673ns 159811 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9135957ns 159816 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9136241ns 159821 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9136525ns 159826 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9136980ns 159834 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9137151ns 159837 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9137435ns 159842 1a110850 fd5ff06f jal x0, -44 +9137719ns 159847 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9138003ns 159852 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9138401ns 159859 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9138571ns 159862 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9139026ns 159870 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9139196ns 159873 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9139481ns 159878 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9139765ns 159883 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9140049ns 159888 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9140504ns 159896 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9140674ns 159899 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9140958ns 159904 1a110850 fd5ff06f jal x0, -44 +9141242ns 159909 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9141527ns 159914 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9141924ns 159921 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9142095ns 159924 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9142550ns 159932 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9142720ns 159935 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9143004ns 159940 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9143288ns 159945 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9143573ns 159950 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9144027ns 159958 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9144198ns 159961 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9144482ns 159966 1a110850 fd5ff06f jal x0, -44 +9144766ns 159971 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9145050ns 159976 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9145448ns 159983 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9145618ns 159986 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9146073ns 159994 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9146244ns 159997 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9146528ns 160002 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9146812ns 160007 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9147096ns 160012 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9147551ns 160020 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9147721ns 160023 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9148005ns 160028 1a110850 fd5ff06f jal x0, -44 +9148290ns 160033 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9148574ns 160038 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9148972ns 160045 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9149142ns 160048 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9149597ns 160056 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9149767ns 160059 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9150051ns 160064 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9150336ns 160069 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9150620ns 160074 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9151074ns 160082 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9151245ns 160085 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9151529ns 160090 1a110850 fd5ff06f jal x0, -44 +9151813ns 160095 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9152097ns 160100 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9152495ns 160107 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9152666ns 160110 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9153120ns 160118 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9153291ns 160121 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9153575ns 160126 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9153859ns 160131 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9154143ns 160136 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9154598ns 160144 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9154768ns 160147 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9155053ns 160152 1a110850 fd5ff06f jal x0, -44 +9155337ns 160157 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9155621ns 160162 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9156019ns 160169 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9156189ns 160172 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9156644ns 160180 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9156814ns 160183 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9157099ns 160188 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9157383ns 160193 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9157667ns 160198 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9158122ns 160206 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9158292ns 160209 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9158576ns 160214 1a110850 fd5ff06f jal x0, -44 +9158860ns 160219 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9159144ns 160224 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9159542ns 160231 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9159713ns 160234 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9160167ns 160242 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9160338ns 160245 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9160622ns 160250 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9160906ns 160255 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9161190ns 160260 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9161645ns 160268 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9161816ns 160271 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9162100ns 160276 1a110850 fd5ff06f jal x0, -44 +9162384ns 160281 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9162668ns 160286 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9163066ns 160293 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9163236ns 160296 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9163691ns 160304 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9163862ns 160307 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9164146ns 160312 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9164430ns 160317 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9164714ns 160322 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9165169ns 160330 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9165339ns 160333 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9165623ns 160338 1a110850 fd5ff06f jal x0, -44 +9165907ns 160343 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9166192ns 160348 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9166589ns 160355 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9166760ns 160358 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9167215ns 160366 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9167385ns 160369 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9167669ns 160374 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9167953ns 160379 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9168238ns 160384 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9168692ns 160392 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9168863ns 160395 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9169147ns 160400 1a110850 fd5ff06f jal x0, -44 +9169431ns 160405 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9169715ns 160410 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9170113ns 160417 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9170284ns 160420 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9170738ns 160428 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9170909ns 160431 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9171193ns 160436 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9171477ns 160441 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9171761ns 160446 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9172216ns 160454 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9172386ns 160457 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9172671ns 160462 1a110850 fd5ff06f jal x0, -44 +9172955ns 160467 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9173239ns 160472 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9173637ns 160479 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9173807ns 160482 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9174262ns 160490 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9174432ns 160493 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9174716ns 160498 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9175001ns 160503 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9175285ns 160508 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9175739ns 160516 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9175910ns 160519 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9176194ns 160524 1a110850 fd5ff06f jal x0, -44 +9176478ns 160529 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9176762ns 160534 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9177160ns 160541 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9177331ns 160544 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9177785ns 160552 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9177956ns 160555 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9178240ns 160560 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9178524ns 160565 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9178808ns 160570 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9179263ns 160578 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9179434ns 160581 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9179718ns 160586 1a110850 fd5ff06f jal x0, -44 +9180002ns 160591 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9180286ns 160596 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9180684ns 160603 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9180854ns 160606 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9181309ns 160614 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9181479ns 160617 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9181764ns 160622 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9182048ns 160627 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9182332ns 160632 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9182787ns 160640 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9182957ns 160643 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9183241ns 160648 1a110850 fd5ff06f jal x0, -44 +9183525ns 160653 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9183810ns 160658 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9184207ns 160665 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9184378ns 160668 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9184833ns 160676 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9185003ns 160679 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9185287ns 160684 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9185571ns 160689 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9185856ns 160694 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9186310ns 160702 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9186481ns 160705 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9186765ns 160710 1a110850 fd5ff06f jal x0, -44 +9187049ns 160715 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9187333ns 160720 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9187731ns 160727 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9187901ns 160730 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9188356ns 160738 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9188527ns 160741 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9188811ns 160746 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9189095ns 160751 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9189379ns 160756 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9189834ns 160764 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9190004ns 160767 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9190288ns 160772 1a110850 fd5ff06f jal x0, -44 +9190573ns 160777 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9190857ns 160782 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9191255ns 160789 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9191425ns 160792 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9191880ns 160800 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9192050ns 160803 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9192334ns 160808 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9192619ns 160813 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9192903ns 160818 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9193357ns 160826 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9193528ns 160829 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9193812ns 160834 1a110850 fd5ff06f jal x0, -44 +9194096ns 160839 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9194380ns 160844 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9194778ns 160851 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9194949ns 160854 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9195403ns 160862 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9195574ns 160865 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9195858ns 160870 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9196142ns 160875 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9196426ns 160880 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9196881ns 160888 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9197051ns 160891 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9197336ns 160896 1a110850 fd5ff06f jal x0, -44 +9197620ns 160901 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9197904ns 160906 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9198302ns 160913 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9198472ns 160916 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9198927ns 160924 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9199097ns 160927 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9199382ns 160932 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9199666ns 160937 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9199950ns 160942 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9200405ns 160950 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9200575ns 160953 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9200859ns 160958 1a110850 fd5ff06f jal x0, -44 +9201143ns 160963 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9201427ns 160968 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9201825ns 160975 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9201996ns 160978 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9202450ns 160986 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9202621ns 160989 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9202905ns 160994 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9203189ns 160999 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9203473ns 161004 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9203928ns 161012 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9204099ns 161015 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9204383ns 161020 1a110850 fd5ff06f jal x0, -44 +9204667ns 161025 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9204951ns 161030 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9205349ns 161037 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9205519ns 161040 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9205974ns 161048 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9206145ns 161051 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9206429ns 161056 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9206713ns 161061 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9206997ns 161066 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9207452ns 161074 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9207622ns 161077 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9207906ns 161082 1a110850 fd5ff06f jal x0, -44 +9208191ns 161087 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9208475ns 161092 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9208872ns 161099 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9209043ns 161102 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9209498ns 161110 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9209668ns 161113 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9209952ns 161118 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9210236ns 161123 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9210521ns 161128 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9210975ns 161136 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9211146ns 161139 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9211430ns 161144 1a110850 fd5ff06f jal x0, -44 +9211714ns 161149 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9211998ns 161154 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9212396ns 161161 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9212567ns 161164 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9213021ns 161172 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9213192ns 161175 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9213476ns 161180 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9213760ns 161185 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9214044ns 161190 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9214499ns 161198 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9214669ns 161201 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9214954ns 161206 1a110850 fd5ff06f jal x0, -44 +9215238ns 161211 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9215522ns 161216 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9215920ns 161223 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9216090ns 161226 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9216545ns 161234 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9216715ns 161237 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9216999ns 161242 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9217284ns 161247 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9217568ns 161252 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9218022ns 161260 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9218193ns 161263 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9218477ns 161268 1a110850 fd5ff06f jal x0, -44 +9218761ns 161273 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9219045ns 161278 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9219443ns 161285 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9219614ns 161288 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9220068ns 161296 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9220239ns 161299 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9220523ns 161304 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9220807ns 161309 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9221091ns 161314 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9221546ns 161322 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9221717ns 161325 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9222001ns 161330 1a110850 fd5ff06f jal x0, -44 +9222285ns 161335 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9222569ns 161340 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9222967ns 161347 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9223137ns 161350 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9223592ns 161358 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9223762ns 161361 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9224047ns 161366 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9224331ns 161371 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9224615ns 161376 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9225070ns 161384 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9225240ns 161387 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9225524ns 161392 1a110850 fd5ff06f jal x0, -44 +9225808ns 161397 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9226093ns 161402 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9226490ns 161409 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9226661ns 161412 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9227116ns 161420 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9227286ns 161423 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9227570ns 161428 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9227854ns 161433 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9228139ns 161438 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9228593ns 161446 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9228764ns 161449 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9229048ns 161454 1a110850 fd5ff06f jal x0, -44 +9229332ns 161459 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9229616ns 161464 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9230014ns 161471 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9230184ns 161474 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9230639ns 161482 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9230810ns 161485 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9231094ns 161490 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9231378ns 161495 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9231662ns 161500 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9232117ns 161508 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9232287ns 161511 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9232571ns 161516 1a110850 fd5ff06f jal x0, -44 +9232856ns 161521 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9233140ns 161526 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9233538ns 161533 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9233708ns 161536 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9234163ns 161544 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9234333ns 161547 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9234617ns 161552 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9234902ns 161557 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9235186ns 161562 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9235640ns 161570 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9235811ns 161573 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9236095ns 161578 1a110850 fd5ff06f jal x0, -44 +9236379ns 161583 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9236663ns 161588 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9237061ns 161595 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9237232ns 161598 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9237686ns 161606 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9237857ns 161609 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9238141ns 161614 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9238425ns 161619 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9238709ns 161624 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9239164ns 161632 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9239334ns 161635 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9239619ns 161640 1a110850 fd5ff06f jal x0, -44 +9239903ns 161645 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9240187ns 161650 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9240585ns 161657 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9240755ns 161660 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9241210ns 161668 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9241380ns 161671 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9241665ns 161676 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9241949ns 161681 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9242233ns 161686 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9242688ns 161694 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9242858ns 161697 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9243142ns 161702 1a110850 fd5ff06f jal x0, -44 +9243426ns 161707 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9243711ns 161712 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9244108ns 161719 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9244279ns 161722 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9244733ns 161730 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9244904ns 161733 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9245188ns 161738 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9245472ns 161743 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9245756ns 161748 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9246211ns 161756 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9246382ns 161759 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9246666ns 161764 1a110850 fd5ff06f jal x0, -44 +9246950ns 161769 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9247234ns 161774 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9247632ns 161781 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9247802ns 161784 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9248257ns 161792 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9248428ns 161795 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9248712ns 161800 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9248996ns 161805 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9249280ns 161810 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9249735ns 161818 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9249905ns 161821 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9250189ns 161826 1a110850 fd5ff06f jal x0, -44 +9250474ns 161831 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9250758ns 161836 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9251155ns 161843 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9251326ns 161846 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9251781ns 161854 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9251951ns 161857 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9252235ns 161862 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9252519ns 161867 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9252804ns 161872 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9253258ns 161880 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9253429ns 161883 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9253713ns 161888 1a110850 fd5ff06f jal x0, -44 +9253997ns 161893 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9254281ns 161898 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9254679ns 161905 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9254850ns 161908 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9255304ns 161916 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9255475ns 161919 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9255759ns 161924 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9256043ns 161929 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9256327ns 161934 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9256782ns 161942 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9256952ns 161945 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9257237ns 161950 1a110850 fd5ff06f jal x0, -44 +9257521ns 161955 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9257805ns 161960 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9258203ns 161967 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9258373ns 161970 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9258828ns 161978 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9258998ns 161981 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9259282ns 161986 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9259567ns 161991 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9259851ns 161996 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9260305ns 162004 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9260476ns 162007 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9260760ns 162012 1a110850 fd5ff06f jal x0, -44 +9261044ns 162017 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9261328ns 162022 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9261726ns 162029 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9261897ns 162032 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9262351ns 162040 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9262522ns 162043 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9262806ns 162048 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9263090ns 162053 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9263374ns 162058 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9263829ns 162066 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9264000ns 162069 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9264284ns 162074 1a110850 fd5ff06f jal x0, -44 +9264568ns 162079 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9264852ns 162084 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9265250ns 162091 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9265420ns 162094 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9265875ns 162102 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9266045ns 162105 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9266330ns 162110 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9266614ns 162115 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9266898ns 162120 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9267353ns 162128 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9267523ns 162131 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9267807ns 162136 1a110850 fd5ff06f jal x0, -44 +9268091ns 162141 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9268376ns 162146 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9268773ns 162153 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9268944ns 162156 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9269399ns 162164 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9269569ns 162167 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9269853ns 162172 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9270137ns 162177 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9270422ns 162182 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9270876ns 162190 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9271047ns 162193 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9271331ns 162198 1a110850 fd5ff06f jal x0, -44 +9271615ns 162203 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9271899ns 162208 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9272297ns 162215 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9272467ns 162218 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9272922ns 162226 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9273093ns 162229 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9273377ns 162234 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9273661ns 162239 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9273945ns 162244 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9274400ns 162252 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9274570ns 162255 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9274854ns 162260 1a110850 fd5ff06f jal x0, -44 +9275139ns 162265 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9275423ns 162270 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9275821ns 162277 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9275991ns 162280 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9276446ns 162288 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9276616ns 162291 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9276900ns 162296 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9277185ns 162301 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9277469ns 162306 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9277923ns 162314 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9278094ns 162317 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9278378ns 162322 1a110850 fd5ff06f jal x0, -44 +9278662ns 162327 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9278946ns 162332 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9279344ns 162339 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9279515ns 162342 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9279969ns 162350 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9280140ns 162353 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9280424ns 162358 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9280708ns 162363 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9280992ns 162368 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9281447ns 162376 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9281617ns 162379 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9281902ns 162384 1a110850 fd5ff06f jal x0, -44 +9282186ns 162389 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9282470ns 162394 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9282868ns 162401 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9283038ns 162404 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9283493ns 162412 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9283663ns 162415 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9283948ns 162420 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9284232ns 162425 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9284516ns 162430 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9284971ns 162438 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9285141ns 162441 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9285425ns 162446 1a110850 fd5ff06f jal x0, -44 +9285709ns 162451 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9285994ns 162456 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9286391ns 162463 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9286562ns 162466 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9287016ns 162474 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9287187ns 162477 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9287471ns 162482 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9287755ns 162487 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9288039ns 162492 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9288494ns 162500 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9288665ns 162503 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9288949ns 162508 1a110850 fd5ff06f jal x0, -44 +9289233ns 162513 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9289517ns 162518 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9289915ns 162525 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9290085ns 162528 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9290540ns 162536 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9290711ns 162539 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9290995ns 162544 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9291279ns 162549 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9291563ns 162554 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9292018ns 162562 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9292188ns 162565 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9292472ns 162570 1a110850 fd5ff06f jal x0, -44 +9292757ns 162575 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9293041ns 162580 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9293439ns 162587 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9293609ns 162590 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9294064ns 162598 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9294234ns 162601 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9294518ns 162606 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9294802ns 162611 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9295087ns 162616 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9295541ns 162624 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9295712ns 162627 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9295996ns 162632 1a110850 fd5ff06f jal x0, -44 +9296280ns 162637 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9296564ns 162642 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9296962ns 162649 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9297133ns 162652 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9297587ns 162660 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9297758ns 162663 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9298042ns 162668 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9298326ns 162673 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9298610ns 162678 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9299065ns 162686 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9299235ns 162689 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9299520ns 162694 1a110850 fd5ff06f jal x0, -44 +9299804ns 162699 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9300088ns 162704 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9300486ns 162711 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9300656ns 162714 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9301111ns 162722 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9301281ns 162725 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9301565ns 162730 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9301850ns 162735 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9302134ns 162740 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9302588ns 162748 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9302759ns 162751 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9303043ns 162756 1a110850 fd5ff06f jal x0, -44 +9303327ns 162761 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9303611ns 162766 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9304009ns 162773 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9304180ns 162776 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9304634ns 162784 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9304805ns 162787 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9305089ns 162792 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9305373ns 162797 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9305657ns 162802 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9306112ns 162810 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9306283ns 162813 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9306567ns 162818 1a110850 fd5ff06f jal x0, -44 +9306851ns 162823 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9307135ns 162828 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9307533ns 162835 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9307703ns 162838 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9308158ns 162846 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9308328ns 162849 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9308613ns 162854 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9308897ns 162859 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9309181ns 162864 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9309636ns 162872 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9309806ns 162875 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9310090ns 162880 1a110850 fd5ff06f jal x0, -44 +9310374ns 162885 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9310659ns 162890 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9311056ns 162897 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9311227ns 162900 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9311682ns 162908 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9311852ns 162911 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9312136ns 162916 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9312420ns 162921 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9312705ns 162926 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9313159ns 162934 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9313330ns 162937 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9313614ns 162942 1a110850 fd5ff06f jal x0, -44 +9313898ns 162947 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9314182ns 162952 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9314580ns 162959 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9314751ns 162962 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9315205ns 162970 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9315376ns 162973 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9315660ns 162978 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9315944ns 162983 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9316228ns 162988 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9316683ns 162996 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9316853ns 162999 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9317137ns 163004 1a110850 fd5ff06f jal x0, -44 +9317422ns 163009 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9317706ns 163014 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9318104ns 163021 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9318274ns 163024 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9318729ns 163032 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9318899ns 163035 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9319183ns 163040 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9319468ns 163045 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9319752ns 163050 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9320206ns 163058 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9320377ns 163061 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9320661ns 163066 1a110850 fd5ff06f jal x0, -44 +9320945ns 163071 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9321229ns 163076 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9321627ns 163083 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9321798ns 163086 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9322252ns 163094 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9322423ns 163097 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9322707ns 163102 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9322991ns 163107 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9323275ns 163112 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9323730ns 163120 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9323900ns 163123 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9324185ns 163128 1a110850 fd5ff06f jal x0, -44 +9324469ns 163133 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9324753ns 163138 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9325151ns 163145 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9325321ns 163148 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9325776ns 163156 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9325946ns 163159 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9326231ns 163164 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9326515ns 163169 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9326799ns 163174 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9327254ns 163182 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9327424ns 163185 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9327708ns 163190 1a110850 fd5ff06f jal x0, -44 +9327992ns 163195 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9328277ns 163200 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9328674ns 163207 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9328845ns 163210 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9329299ns 163218 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9329470ns 163221 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9329754ns 163226 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9330038ns 163231 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9330322ns 163236 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9330777ns 163244 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9330948ns 163247 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9331232ns 163252 1a110850 fd5ff06f jal x0, -44 +9331516ns 163257 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9331800ns 163262 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9332198ns 163269 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9332368ns 163272 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9332823ns 163280 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9332994ns 163283 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9333278ns 163288 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9333562ns 163293 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9333846ns 163298 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9334301ns 163306 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9334471ns 163309 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9334755ns 163314 1a110850 fd5ff06f jal x0, -44 +9335040ns 163319 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9335324ns 163324 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9335722ns 163331 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9335892ns 163334 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9336347ns 163342 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9336517ns 163345 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9336801ns 163350 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9337085ns 163355 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9337370ns 163360 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9337824ns 163368 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9337995ns 163371 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9338279ns 163376 1a110850 fd5ff06f jal x0, -44 +9338563ns 163381 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9338847ns 163386 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9339245ns 163393 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9339416ns 163396 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9339870ns 163404 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9340041ns 163407 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9340325ns 163412 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9340609ns 163417 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9340893ns 163422 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9341348ns 163430 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9341518ns 163433 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9341803ns 163438 1a110850 fd5ff06f jal x0, -44 +9342087ns 163443 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9342371ns 163448 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9342769ns 163455 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9342939ns 163458 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9343394ns 163466 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9343564ns 163469 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9343848ns 163474 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9344133ns 163479 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9344417ns 163484 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9344871ns 163492 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9345042ns 163495 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9345326ns 163500 1a110850 fd5ff06f jal x0, -44 +9345610ns 163505 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9345894ns 163510 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9346292ns 163517 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9346463ns 163520 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9346917ns 163528 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9347088ns 163531 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9347372ns 163536 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9347656ns 163541 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9347940ns 163546 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9348395ns 163554 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9348566ns 163557 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9348850ns 163562 1a110850 fd5ff06f jal x0, -44 +9349134ns 163567 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9349418ns 163572 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9349816ns 163579 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9349986ns 163582 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9350441ns 163590 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9350611ns 163593 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9350896ns 163598 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9351180ns 163603 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9351464ns 163608 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9351919ns 163616 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9352089ns 163619 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9352373ns 163624 1a110850 fd5ff06f jal x0, -44 +9352657ns 163629 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9352942ns 163634 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9353339ns 163641 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9353510ns 163644 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9353965ns 163652 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9354135ns 163655 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9354419ns 163660 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9354703ns 163665 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9354988ns 163670 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9355442ns 163678 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9355613ns 163681 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9355897ns 163686 1a110850 fd5ff06f jal x0, -44 +9356181ns 163691 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9356465ns 163696 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9356863ns 163703 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9357034ns 163706 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9357488ns 163714 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9357659ns 163717 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9357943ns 163722 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9358227ns 163727 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9358511ns 163732 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9358966ns 163740 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9359136ns 163743 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9359420ns 163748 1a110850 fd5ff06f jal x0, -44 +9359705ns 163753 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9359989ns 163758 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9360387ns 163765 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9360557ns 163768 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9361012ns 163776 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9361182ns 163779 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9361466ns 163784 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9361751ns 163789 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9362035ns 163794 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9362489ns 163802 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9362660ns 163805 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9362944ns 163810 1a110850 fd5ff06f jal x0, -44 +9363228ns 163815 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9363512ns 163820 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9363910ns 163827 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9364081ns 163830 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9364535ns 163838 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9364706ns 163841 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9364990ns 163846 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9365274ns 163851 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9365558ns 163856 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9366013ns 163864 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9366183ns 163867 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9366468ns 163872 1a110850 fd5ff06f jal x0, -44 +9366752ns 163877 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9367036ns 163882 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9367434ns 163889 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9367604ns 163892 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9368059ns 163900 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9368229ns 163903 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9368514ns 163908 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9368798ns 163913 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9369082ns 163918 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9369537ns 163926 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9369707ns 163929 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9369991ns 163934 1a110850 fd5ff06f jal x0, -44 +9370275ns 163939 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9370560ns 163944 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9370957ns 163951 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9371128ns 163954 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9371583ns 163962 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9371753ns 163965 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9372037ns 163970 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9372321ns 163975 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9372605ns 163980 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9373060ns 163988 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9373231ns 163991 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9373515ns 163996 1a110850 fd5ff06f jal x0, -44 +9373799ns 164001 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9374083ns 164006 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9374481ns 164013 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9374651ns 164016 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9375106ns 164024 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9375277ns 164027 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9375561ns 164032 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9375845ns 164037 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9376129ns 164042 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9376584ns 164050 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9376754ns 164053 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9377038ns 164058 1a110850 fd5ff06f jal x0, -44 +9377323ns 164063 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9377607ns 164068 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9378005ns 164075 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9378175ns 164078 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9378630ns 164086 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9378800ns 164089 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9379084ns 164094 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9379368ns 164099 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9379653ns 164104 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9380107ns 164112 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9380278ns 164115 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9380562ns 164120 1a110850 fd5ff06f jal x0, -44 +9380846ns 164125 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9381130ns 164130 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9381528ns 164137 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9381699ns 164140 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9382153ns 164148 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9382324ns 164151 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9382608ns 164156 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9382892ns 164161 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9383176ns 164166 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9383631ns 164174 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9383801ns 164177 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9384086ns 164182 1a110850 fd5ff06f jal x0, -44 +9384370ns 164187 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9384654ns 164192 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9385052ns 164199 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9385222ns 164202 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9385677ns 164210 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9385847ns 164213 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9386131ns 164218 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9386416ns 164223 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9386700ns 164228 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9387154ns 164236 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9387325ns 164239 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9387609ns 164244 1a110850 fd5ff06f jal x0, -44 +9387893ns 164249 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9388177ns 164254 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9388575ns 164261 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9388746ns 164264 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9389200ns 164272 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9389371ns 164275 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9389655ns 164280 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9389939ns 164285 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9390223ns 164290 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9390678ns 164298 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9390849ns 164301 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9391133ns 164306 1a110850 fd5ff06f jal x0, -44 +9391417ns 164311 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9391701ns 164316 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9392099ns 164323 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9392269ns 164326 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9392724ns 164334 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9392895ns 164337 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9393179ns 164342 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9393463ns 164347 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9393747ns 164352 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9394202ns 164360 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9394372ns 164363 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9394656ns 164368 1a110850 fd5ff06f jal x0, -44 +9394940ns 164373 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9395225ns 164378 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9395622ns 164385 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9395793ns 164388 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9396248ns 164396 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9396418ns 164399 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9396702ns 164404 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9396986ns 164409 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9397271ns 164414 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9397725ns 164422 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9397896ns 164425 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9398180ns 164430 1a110850 fd5ff06f jal x0, -44 +9398464ns 164435 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9398748ns 164440 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9399146ns 164447 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9399317ns 164450 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9399771ns 164458 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9399942ns 164461 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9400226ns 164466 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9400510ns 164471 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9400794ns 164476 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9401249ns 164484 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9401419ns 164487 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9401703ns 164492 1a110850 fd5ff06f jal x0, -44 +9401988ns 164497 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9402272ns 164502 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9402670ns 164509 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9402840ns 164512 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9403295ns 164520 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9403465ns 164523 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9403749ns 164528 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9404034ns 164533 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9404318ns 164538 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9404772ns 164546 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9404943ns 164549 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9405227ns 164554 1a110850 fd5ff06f jal x0, -44 +9405511ns 164559 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9405795ns 164564 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9406193ns 164571 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9406364ns 164574 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9406818ns 164582 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9406989ns 164585 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9407273ns 164590 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9407557ns 164595 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9407841ns 164600 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9408296ns 164608 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9408466ns 164611 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9408751ns 164616 1a110850 fd5ff06f jal x0, -44 +9409035ns 164621 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9409319ns 164626 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9409717ns 164633 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9409887ns 164636 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9410342ns 164644 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9410512ns 164647 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9410797ns 164652 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9411081ns 164657 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9411365ns 164662 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9411820ns 164670 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9411990ns 164673 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9412274ns 164678 1a110850 fd5ff06f jal x0, -44 +9412558ns 164683 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9412843ns 164688 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9413240ns 164695 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9413411ns 164698 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9413866ns 164706 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9414036ns 164709 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9414320ns 164714 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9414604ns 164719 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9414888ns 164724 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9415343ns 164732 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9415514ns 164735 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9415798ns 164740 1a110850 fd5ff06f jal x0, -44 +9416082ns 164745 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9416366ns 164750 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9416764ns 164757 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9416934ns 164760 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9417389ns 164768 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9417560ns 164771 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9417844ns 164776 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9418128ns 164781 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9418412ns 164786 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9418867ns 164794 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9419037ns 164797 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9419321ns 164802 1a110850 fd5ff06f jal x0, -44 +9419606ns 164807 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9419890ns 164812 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9420288ns 164819 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9420458ns 164822 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9420913ns 164830 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9421083ns 164833 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9421367ns 164838 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9421651ns 164843 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9421936ns 164848 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9422390ns 164856 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9422561ns 164859 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9422845ns 164864 1a110850 fd5ff06f jal x0, -44 +9423129ns 164869 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9423413ns 164874 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9423811ns 164881 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9423982ns 164884 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9424436ns 164892 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9424607ns 164895 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9424891ns 164900 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9425175ns 164905 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9425459ns 164910 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9425914ns 164918 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9426084ns 164921 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9426369ns 164926 1a110850 fd5ff06f jal x0, -44 +9426653ns 164931 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9426937ns 164936 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9427335ns 164943 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9427505ns 164946 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9427960ns 164954 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9428130ns 164957 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9428415ns 164962 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9428699ns 164967 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9428983ns 164972 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9429437ns 164980 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9429608ns 164983 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9429892ns 164988 1a110850 fd5ff06f jal x0, -44 +9430176ns 164993 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9430460ns 164998 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9430858ns 165005 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9431029ns 165008 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9431483ns 165016 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9431654ns 165019 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9431938ns 165024 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9432222ns 165029 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9432506ns 165034 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9432961ns 165042 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9433132ns 165045 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9433416ns 165050 1a110850 fd5ff06f jal x0, -44 +9433700ns 165055 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9433984ns 165060 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9434382ns 165067 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9434552ns 165070 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9435007ns 165078 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9435178ns 165081 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9435462ns 165086 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9435746ns 165091 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9436030ns 165096 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9436485ns 165104 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9436655ns 165107 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9436939ns 165112 1a110850 fd5ff06f jal x0, -44 +9437223ns 165117 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9437508ns 165122 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9437905ns 165129 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9438076ns 165132 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9438531ns 165140 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9438701ns 165143 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9438985ns 165148 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9439269ns 165153 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9439554ns 165158 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9440008ns 165166 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9440179ns 165169 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9440463ns 165174 1a110850 fd5ff06f jal x0, -44 +9440747ns 165179 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9441031ns 165184 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9441429ns 165191 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9441600ns 165194 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9442054ns 165202 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9442225ns 165205 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9442509ns 165210 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9442793ns 165215 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9443077ns 165220 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9443532ns 165228 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9443702ns 165231 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9443986ns 165236 1a110850 fd5ff06f jal x0, -44 +9444271ns 165241 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9444555ns 165246 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9444953ns 165253 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9445123ns 165256 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9445578ns 165264 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9445748ns 165267 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9446032ns 165272 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9446317ns 165277 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9446601ns 165282 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9447055ns 165290 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9447226ns 165293 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9447510ns 165298 1a110850 fd5ff06f jal x0, -44 +9447794ns 165303 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9448078ns 165308 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9448476ns 165315 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9448647ns 165318 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9449101ns 165326 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9449272ns 165329 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9449556ns 165334 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9449840ns 165339 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9450124ns 165344 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9450579ns 165352 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9450749ns 165355 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9451034ns 165360 1a110850 fd5ff06f jal x0, -44 +9451318ns 165365 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9451602ns 165370 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9452000ns 165377 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9452170ns 165380 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9452625ns 165388 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9452795ns 165391 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9453080ns 165396 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9453364ns 165401 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9453648ns 165406 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9454103ns 165414 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9454273ns 165417 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9454557ns 165422 1a110850 fd5ff06f jal x0, -44 +9454841ns 165427 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9455126ns 165432 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9455523ns 165439 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9455694ns 165442 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9456149ns 165450 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9456319ns 165453 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9456603ns 165458 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9456887ns 165463 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9457171ns 165468 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9457626ns 165476 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9457797ns 165479 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9458081ns 165484 1a110850 fd5ff06f jal x0, -44 +9458365ns 165489 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9458649ns 165494 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9459047ns 165501 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9459217ns 165504 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9459672ns 165512 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9459843ns 165515 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9460127ns 165520 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9460411ns 165525 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9460695ns 165530 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9461150ns 165538 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9461320ns 165541 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9461604ns 165546 1a110850 fd5ff06f jal x0, -44 +9461889ns 165551 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9462173ns 165556 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9462571ns 165563 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9462741ns 165566 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9463196ns 165574 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9463366ns 165577 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9463650ns 165582 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9463935ns 165587 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9464219ns 165592 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9464673ns 165600 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9464844ns 165603 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9465128ns 165608 1a110850 fd5ff06f jal x0, -44 +9465412ns 165613 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9465696ns 165618 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9466094ns 165625 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9466265ns 165628 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9466719ns 165636 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9466890ns 165639 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9467174ns 165644 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9467458ns 165649 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9467742ns 165654 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9468197ns 165662 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9468367ns 165665 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9468652ns 165670 1a110850 fd5ff06f jal x0, -44 +9468936ns 165675 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9469220ns 165680 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9469618ns 165687 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9469788ns 165690 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9470243ns 165698 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9470413ns 165701 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9470698ns 165706 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9470982ns 165711 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9471266ns 165716 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9471720ns 165724 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9471891ns 165727 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9472175ns 165732 1a110850 fd5ff06f jal x0, -44 +9472459ns 165737 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9472743ns 165742 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9473141ns 165749 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9473312ns 165752 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9473766ns 165760 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9473937ns 165763 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9474221ns 165768 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9474505ns 165773 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9474789ns 165778 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9475244ns 165786 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9475415ns 165789 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9475699ns 165794 1a110850 fd5ff06f jal x0, -44 +9475983ns 165799 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9476267ns 165804 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9476665ns 165811 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9476835ns 165814 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9477290ns 165822 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9477461ns 165825 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9477745ns 165830 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9478029ns 165835 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9478313ns 165840 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9478768ns 165848 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9478938ns 165851 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9479222ns 165856 1a110850 fd5ff06f jal x0, -44 +9479506ns 165861 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9479791ns 165866 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9480188ns 165873 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9480359ns 165876 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9480814ns 165884 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9480984ns 165887 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9481268ns 165892 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9481552ns 165897 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9481837ns 165902 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9482291ns 165910 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9482462ns 165913 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9482746ns 165918 1a110850 fd5ff06f jal x0, -44 +9483030ns 165923 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9483314ns 165928 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9483712ns 165935 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9483883ns 165938 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9484337ns 165946 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9484508ns 165949 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9484792ns 165954 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9485076ns 165959 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9485360ns 165964 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9485815ns 165972 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9485985ns 165975 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9486269ns 165980 1a110850 fd5ff06f jal x0, -44 +9486554ns 165985 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9486838ns 165990 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9487236ns 165997 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9487406ns 166000 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9487861ns 166008 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9488031ns 166011 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9488315ns 166016 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9488600ns 166021 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9488884ns 166026 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9489338ns 166034 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9489509ns 166037 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9489793ns 166042 1a110850 fd5ff06f jal x0, -44 +9490077ns 166047 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9490361ns 166052 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9490759ns 166059 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9490930ns 166062 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9491384ns 166070 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9491555ns 166073 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9491839ns 166078 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9492123ns 166083 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9492407ns 166088 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9492862ns 166096 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9493032ns 166099 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9493317ns 166104 1a110850 fd5ff06f jal x0, -44 +9493601ns 166109 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9493885ns 166114 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9494283ns 166121 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9494453ns 166124 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9494908ns 166132 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9495078ns 166135 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9495363ns 166140 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9495647ns 166145 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9495931ns 166150 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9496386ns 166158 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9496556ns 166161 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9496840ns 166166 1a110850 fd5ff06f jal x0, -44 +9497124ns 166171 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9497409ns 166176 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9497806ns 166183 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9497977ns 166186 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9498432ns 166194 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9498602ns 166197 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9498886ns 166202 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9499170ns 166207 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9499455ns 166212 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9499909ns 166220 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9500080ns 166223 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9500364ns 166228 1a110850 fd5ff06f jal x0, -44 +9500648ns 166233 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9500932ns 166238 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9501330ns 166245 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9501500ns 166248 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9501955ns 166256 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9502126ns 166259 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9502410ns 166264 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9502694ns 166269 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9502978ns 166274 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9503433ns 166282 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9503603ns 166285 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9503887ns 166290 1a110850 fd5ff06f jal x0, -44 +9504172ns 166295 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9504456ns 166300 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9504854ns 166307 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9505024ns 166310 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9505479ns 166318 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9505649ns 166321 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9505933ns 166326 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9506218ns 166331 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9506502ns 166336 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9506956ns 166344 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9507127ns 166347 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9507411ns 166352 1a110850 fd5ff06f jal x0, -44 +9507695ns 166357 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9507979ns 166362 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9508377ns 166369 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9508548ns 166372 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9509002ns 166380 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9509173ns 166383 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9509457ns 166388 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9509741ns 166393 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9510025ns 166398 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9510480ns 166406 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9510650ns 166409 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9510935ns 166414 1a110850 fd5ff06f jal x0, -44 +9511219ns 166419 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9511503ns 166424 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9511901ns 166431 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9512071ns 166434 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9512526ns 166442 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9512696ns 166445 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9512981ns 166450 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9513265ns 166455 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9513549ns 166460 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9514003ns 166468 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9514174ns 166471 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9514458ns 166476 1a110850 fd5ff06f jal x0, -44 +9514742ns 166481 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9515026ns 166486 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9515424ns 166493 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9515595ns 166496 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9516049ns 166504 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9516220ns 166507 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9516504ns 166512 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9516788ns 166517 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9517072ns 166522 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9517527ns 166530 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9517698ns 166533 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9517982ns 166538 1a110850 fd5ff06f jal x0, -44 +9518266ns 166543 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9518550ns 166548 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9518948ns 166555 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9519118ns 166558 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9519573ns 166566 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9519744ns 166569 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9520028ns 166574 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9520312ns 166579 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9520596ns 166584 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9521051ns 166592 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9521221ns 166595 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9521505ns 166600 1a110850 fd5ff06f jal x0, -44 +9521789ns 166605 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9522074ns 166610 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9522471ns 166617 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9522642ns 166620 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9523097ns 166628 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9523267ns 166631 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9523551ns 166636 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9523835ns 166641 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9524120ns 166646 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9524574ns 166654 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9524745ns 166657 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9525029ns 166662 1a110850 fd5ff06f jal x0, -44 +9525313ns 166667 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9525597ns 166672 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9525995ns 166679 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9526166ns 166682 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9526620ns 166690 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9526791ns 166693 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9527075ns 166698 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9527359ns 166703 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9527643ns 166708 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9528098ns 166716 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9528268ns 166719 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9528552ns 166724 1a110850 fd5ff06f jal x0, -44 +9528837ns 166729 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9529121ns 166734 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9529519ns 166741 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9529689ns 166744 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9530144ns 166752 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9530314ns 166755 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9530598ns 166760 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9530883ns 166765 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9531167ns 166770 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9531621ns 166778 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9531792ns 166781 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9532076ns 166786 1a110850 fd5ff06f jal x0, -44 +9532360ns 166791 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9532644ns 166796 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9533042ns 166803 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9533213ns 166806 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9533667ns 166814 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9533838ns 166817 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9534122ns 166822 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9534406ns 166827 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9534690ns 166832 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9535145ns 166840 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9535315ns 166843 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9535600ns 166848 1a110850 fd5ff06f jal x0, -44 +9535884ns 166853 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9536168ns 166858 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9536566ns 166865 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9536736ns 166868 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9537191ns 166876 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9537361ns 166879 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9537646ns 166884 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9537930ns 166889 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9538214ns 166894 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9538669ns 166902 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9538839ns 166905 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9539123ns 166910 1a110850 fd5ff06f jal x0, -44 +9539407ns 166915 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9539692ns 166920 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9540089ns 166927 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9540260ns 166930 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9540715ns 166938 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9540885ns 166941 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9541169ns 166946 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9541453ns 166951 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9541738ns 166956 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9542192ns 166964 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9542363ns 166967 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9542647ns 166972 1a110850 fd5ff06f jal x0, -44 +9542931ns 166977 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9543215ns 166982 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9543613ns 166989 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9543783ns 166992 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9544238ns 167000 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9544409ns 167003 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9544693ns 167008 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9544977ns 167013 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9545261ns 167018 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9545716ns 167026 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9545886ns 167029 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9546170ns 167034 1a110850 fd5ff06f jal x0, -44 +9546455ns 167039 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9546739ns 167044 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9547137ns 167051 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9547307ns 167054 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9547762ns 167062 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9547932ns 167065 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9548216ns 167070 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9548501ns 167075 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9548785ns 167080 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9549239ns 167088 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9549410ns 167091 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9549694ns 167096 1a110850 fd5ff06f jal x0, -44 +9549978ns 167101 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9550262ns 167106 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9550660ns 167113 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9550831ns 167116 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9551285ns 167124 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9551456ns 167127 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9551740ns 167132 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9552024ns 167137 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9552308ns 167142 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9552763ns 167150 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9552933ns 167153 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9553218ns 167158 1a110850 fd5ff06f jal x0, -44 +9553502ns 167163 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9553786ns 167168 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9554184ns 167175 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9554354ns 167178 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9554809ns 167186 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9554979ns 167189 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9555264ns 167194 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9555548ns 167199 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9555832ns 167204 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9556287ns 167212 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9556457ns 167215 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9556741ns 167220 1a110850 fd5ff06f jal x0, -44 +9557025ns 167225 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9557309ns 167230 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9557707ns 167237 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9557878ns 167240 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9558332ns 167248 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9558503ns 167251 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9558787ns 167256 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9559071ns 167261 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9559355ns 167266 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9559810ns 167274 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9559981ns 167277 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9560265ns 167282 1a110850 fd5ff06f jal x0, -44 +9560549ns 167287 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9560833ns 167292 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9561231ns 167299 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9561401ns 167302 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9561856ns 167310 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9562027ns 167313 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9562311ns 167318 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9562595ns 167323 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9562879ns 167328 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9563334ns 167336 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9563504ns 167339 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9563788ns 167344 1a110850 fd5ff06f jal x0, -44 +9564072ns 167349 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9564357ns 167354 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9564754ns 167361 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9564925ns 167364 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9565380ns 167372 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9565550ns 167375 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9565834ns 167380 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9566118ns 167385 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9566403ns 167390 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9566857ns 167398 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9567028ns 167401 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9567312ns 167406 1a110850 fd5ff06f jal x0, -44 +9567596ns 167411 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9567880ns 167416 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9568278ns 167423 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9568449ns 167426 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9568903ns 167434 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9569074ns 167437 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9569358ns 167442 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9569642ns 167447 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9569926ns 167452 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9570381ns 167460 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9570551ns 167463 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9570835ns 167468 1a110850 fd5ff06f jal x0, -44 +9571120ns 167473 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9571404ns 167478 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9571802ns 167485 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9571972ns 167488 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9572427ns 167496 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9572597ns 167499 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9572881ns 167504 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9573166ns 167509 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9573450ns 167514 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9573904ns 167522 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9574075ns 167525 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9574359ns 167530 1a110850 fd5ff06f jal x0, -44 +9574643ns 167535 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9574927ns 167540 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9575325ns 167547 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9575496ns 167550 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9575950ns 167558 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9576121ns 167561 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9576405ns 167566 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9576689ns 167571 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9576973ns 167576 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9577428ns 167584 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9577599ns 167587 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9577883ns 167592 1a110850 fd5ff06f jal x0, -44 +9578167ns 167597 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9578451ns 167602 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9578849ns 167609 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9579019ns 167612 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9579474ns 167620 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9579644ns 167623 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9579929ns 167628 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9580213ns 167633 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9580497ns 167638 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9580952ns 167646 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9581122ns 167649 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9581406ns 167654 1a110850 fd5ff06f jal x0, -44 +9581690ns 167659 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9581975ns 167664 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9582372ns 167671 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9582543ns 167674 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9582998ns 167682 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9583168ns 167685 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9583452ns 167690 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9583736ns 167695 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9584021ns 167700 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9584475ns 167708 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9584646ns 167711 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9584930ns 167716 1a110850 fd5ff06f jal x0, -44 +9585214ns 167721 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9585498ns 167726 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9585896ns 167733 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9586066ns 167736 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9586521ns 167744 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9586692ns 167747 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9586976ns 167752 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9587260ns 167757 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9587544ns 167762 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9587999ns 167770 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9588169ns 167773 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9588453ns 167778 1a110850 fd5ff06f jal x0, -44 +9588738ns 167783 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9589022ns 167788 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9589420ns 167795 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9589590ns 167798 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9590045ns 167806 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9590215ns 167809 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9590499ns 167814 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9590784ns 167819 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9591068ns 167824 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9591522ns 167832 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9591693ns 167835 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9591977ns 167840 1a110850 fd5ff06f jal x0, -44 +9592261ns 167845 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9592545ns 167850 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9592943ns 167857 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9593114ns 167860 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9593568ns 167868 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9593739ns 167871 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9594023ns 167876 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9594307ns 167881 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9594591ns 167886 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9595046ns 167894 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9595216ns 167897 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9595501ns 167902 1a110850 fd5ff06f jal x0, -44 +9595785ns 167907 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9596069ns 167912 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9596467ns 167919 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9596637ns 167922 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9597092ns 167930 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9597262ns 167933 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9597547ns 167938 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9597831ns 167943 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9598115ns 167948 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9598570ns 167956 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9598740ns 167959 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9599024ns 167964 1a110850 fd5ff06f jal x0, -44 +9599308ns 167969 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9599592ns 167974 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9599990ns 167981 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9600161ns 167984 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9600615ns 167992 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9600786ns 167995 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9601070ns 168000 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9601354ns 168005 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9601638ns 168010 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9602093ns 168018 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9602264ns 168021 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9602548ns 168026 1a110850 fd5ff06f jal x0, -44 +9602832ns 168031 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9603116ns 168036 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9603514ns 168043 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9603684ns 168046 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9604139ns 168054 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9604310ns 168057 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9604594ns 168062 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9604878ns 168067 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9605162ns 168072 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9605617ns 168080 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9605787ns 168083 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9606071ns 168088 1a110850 fd5ff06f jal x0, -44 +9606355ns 168093 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9606640ns 168098 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9607037ns 168105 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9607208ns 168108 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9607663ns 168116 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9607833ns 168119 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9608117ns 168124 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9608401ns 168129 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9608686ns 168134 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9609140ns 168142 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9609311ns 168145 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9609595ns 168150 1a110850 fd5ff06f jal x0, -44 +9609879ns 168155 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9610163ns 168160 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9610561ns 168167 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9610732ns 168170 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9611186ns 168178 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9611357ns 168181 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9611641ns 168186 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9611925ns 168191 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9612209ns 168196 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9612664ns 168204 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9612834ns 168207 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9613119ns 168212 1a110850 fd5ff06f jal x0, -44 +9613403ns 168217 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9613687ns 168222 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9614085ns 168229 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9614255ns 168232 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9614710ns 168240 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9614880ns 168243 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9615164ns 168248 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9615449ns 168253 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9615733ns 168258 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9616187ns 168266 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9616358ns 168269 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9616642ns 168274 1a110850 fd5ff06f jal x0, -44 +9616926ns 168279 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9617210ns 168284 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9617608ns 168291 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9617779ns 168294 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9618233ns 168302 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9618404ns 168305 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9618688ns 168310 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9618972ns 168315 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9619256ns 168320 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9619711ns 168328 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9619882ns 168331 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9620166ns 168336 1a110850 fd5ff06f jal x0, -44 +9620450ns 168341 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9620734ns 168346 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9621132ns 168353 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9621302ns 168356 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9621757ns 168364 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9621927ns 168367 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9622212ns 168372 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9622496ns 168377 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9622780ns 168382 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9623235ns 168390 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9623405ns 168393 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9623689ns 168398 1a110850 fd5ff06f jal x0, -44 +9623973ns 168403 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9624258ns 168408 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9624655ns 168415 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9624826ns 168418 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9625281ns 168426 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9625451ns 168429 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9625735ns 168434 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9626019ns 168439 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9626304ns 168444 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9626758ns 168452 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9626929ns 168455 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9627213ns 168460 1a110850 fd5ff06f jal x0, -44 +9627497ns 168465 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9627781ns 168470 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9628179ns 168477 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9628349ns 168480 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9628804ns 168488 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9628975ns 168491 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9629259ns 168496 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9629543ns 168501 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9629827ns 168506 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9630282ns 168514 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9630452ns 168517 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9630736ns 168522 1a110850 fd5ff06f jal x0, -44 +9631021ns 168527 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9631305ns 168532 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9631703ns 168539 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9631873ns 168542 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9632328ns 168550 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9632498ns 168553 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9632782ns 168558 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9633067ns 168563 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9633351ns 168568 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9633805ns 168576 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9633976ns 168579 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9634260ns 168584 1a110850 fd5ff06f jal x0, -44 +9634544ns 168589 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9634828ns 168594 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9635226ns 168601 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9635397ns 168604 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9635851ns 168612 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9636022ns 168615 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9636306ns 168620 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9636590ns 168625 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9636874ns 168630 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9637329ns 168638 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9637499ns 168641 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9637784ns 168646 1a110850 fd5ff06f jal x0, -44 +9638068ns 168651 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9638352ns 168656 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9638750ns 168663 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9638920ns 168666 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9639375ns 168674 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9639545ns 168677 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9639830ns 168682 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9640114ns 168687 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9640398ns 168692 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9640853ns 168700 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9641023ns 168703 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9641307ns 168708 1a110850 fd5ff06f jal x0, -44 +9641591ns 168713 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9641875ns 168718 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9642273ns 168725 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9642444ns 168728 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9642898ns 168736 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9643069ns 168739 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9643353ns 168744 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9643637ns 168749 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9643921ns 168754 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9644376ns 168762 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9644547ns 168765 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9644831ns 168770 1a110850 fd5ff06f jal x0, -44 +9645115ns 168775 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9645399ns 168780 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9645797ns 168787 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9645967ns 168790 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9646422ns 168798 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9646593ns 168801 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9646877ns 168806 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9647161ns 168811 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9647445ns 168816 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9647900ns 168824 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9648070ns 168827 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9648354ns 168832 1a110850 fd5ff06f jal x0, -44 +9648639ns 168837 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9648923ns 168842 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9649320ns 168849 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9649491ns 168852 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9649946ns 168860 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9650116ns 168863 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9650400ns 168868 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9650684ns 168873 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9650969ns 168878 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9651423ns 168886 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9651594ns 168889 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9651878ns 168894 1a110850 fd5ff06f jal x0, -44 +9652162ns 168899 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9652446ns 168904 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9652844ns 168911 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9653015ns 168914 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9653469ns 168922 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9653640ns 168925 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9653924ns 168930 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9654208ns 168935 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9654492ns 168940 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9654947ns 168948 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9655117ns 168951 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9655402ns 168956 1a110850 fd5ff06f jal x0, -44 +9655686ns 168961 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9655970ns 168966 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9656368ns 168973 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9656538ns 168976 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9656993ns 168984 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9657163ns 168987 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9657447ns 168992 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9657732ns 168997 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9658016ns 169002 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9658470ns 169010 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9658641ns 169013 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9658925ns 169018 1a110850 fd5ff06f jal x0, -44 +9659209ns 169023 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9659493ns 169028 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9659891ns 169035 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9660062ns 169038 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9660516ns 169046 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9660687ns 169049 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9660971ns 169054 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9661255ns 169059 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9661539ns 169064 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9661994ns 169072 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9662165ns 169075 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9662449ns 169080 1a110850 fd5ff06f jal x0, -44 +9662733ns 169085 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9663017ns 169090 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9663415ns 169097 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9663585ns 169100 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9664040ns 169108 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9664210ns 169111 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9664495ns 169116 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9664779ns 169121 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9665063ns 169126 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9665518ns 169134 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9665688ns 169137 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9665972ns 169142 1a110850 fd5ff06f jal x0, -44 +9666256ns 169147 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9666541ns 169152 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9666938ns 169159 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9667109ns 169162 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9667564ns 169170 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9667734ns 169173 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9668018ns 169178 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9668302ns 169183 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9668587ns 169188 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9669041ns 169196 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9669212ns 169199 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9669496ns 169204 1a110850 fd5ff06f jal x0, -44 +9669780ns 169209 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9670064ns 169214 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9670462ns 169221 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9670632ns 169224 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9671087ns 169232 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9671258ns 169235 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9671542ns 169240 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9671826ns 169245 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9672110ns 169250 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9672565ns 169258 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9672735ns 169261 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9673019ns 169266 1a110850 fd5ff06f jal x0, -44 +9673304ns 169271 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9673588ns 169276 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9673986ns 169283 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9674156ns 169286 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9674611ns 169294 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9674781ns 169297 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9675065ns 169302 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9675350ns 169307 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9675634ns 169312 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9676088ns 169320 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9676259ns 169323 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9676543ns 169328 1a110850 fd5ff06f jal x0, -44 +9676827ns 169333 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9677111ns 169338 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9677509ns 169345 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9677680ns 169348 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9678134ns 169356 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9678305ns 169359 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9678589ns 169364 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9678873ns 169369 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9679157ns 169374 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9679612ns 169382 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9679782ns 169385 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9680067ns 169390 1a110850 fd5ff06f jal x0, -44 +9680351ns 169395 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9680635ns 169400 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9681033ns 169407 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9681203ns 169410 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9681658ns 169418 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9681828ns 169421 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9682113ns 169426 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9682397ns 169431 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9682681ns 169436 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9683136ns 169444 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9683306ns 169447 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9683590ns 169452 1a110850 fd5ff06f jal x0, -44 +9683874ns 169457 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9684159ns 169462 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9684556ns 169469 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9684727ns 169472 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9685181ns 169480 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9685352ns 169483 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9685636ns 169488 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9685920ns 169493 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9686204ns 169498 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9686659ns 169506 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9686830ns 169509 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9687114ns 169514 1a110850 fd5ff06f jal x0, -44 +9687398ns 169519 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9687682ns 169524 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9688080ns 169531 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9688250ns 169534 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9688705ns 169542 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9688876ns 169545 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9689160ns 169550 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9689444ns 169555 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9689728ns 169560 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9690183ns 169568 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9690353ns 169571 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9690637ns 169576 1a110850 fd5ff06f jal x0, -44 +9690922ns 169581 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9691206ns 169586 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9691603ns 169593 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9691774ns 169596 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9692229ns 169604 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9692399ns 169607 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9692683ns 169612 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9692967ns 169617 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9693252ns 169622 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9693706ns 169630 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9693877ns 169633 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9694161ns 169638 1a110850 fd5ff06f jal x0, -44 +9694445ns 169643 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9694729ns 169648 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9695127ns 169655 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9695298ns 169658 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9695752ns 169666 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9695923ns 169669 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9696207ns 169674 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9696491ns 169679 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9696775ns 169684 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9697230ns 169692 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9697400ns 169695 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9697685ns 169700 1a110850 fd5ff06f jal x0, -44 +9697969ns 169705 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9698253ns 169710 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9698651ns 169717 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9698821ns 169720 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9699276ns 169728 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9699446ns 169731 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9699730ns 169736 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9700015ns 169741 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9700299ns 169746 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9700753ns 169754 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9700924ns 169757 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9701208ns 169762 1a110850 fd5ff06f jal x0, -44 +9701492ns 169767 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9701776ns 169772 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9702174ns 169779 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9702345ns 169782 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9702799ns 169790 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9702970ns 169793 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9703254ns 169798 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9703538ns 169803 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9703822ns 169808 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9704277ns 169816 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9704448ns 169819 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9704732ns 169824 1a110850 fd5ff06f jal x0, -44 +9705016ns 169829 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9705300ns 169834 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9705698ns 169841 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9705868ns 169844 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9706323ns 169852 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9706493ns 169855 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9706778ns 169860 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9707062ns 169865 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9707346ns 169870 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9707801ns 169878 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9707971ns 169881 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9708255ns 169886 1a110850 fd5ff06f jal x0, -44 +9708539ns 169891 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9708824ns 169896 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9709221ns 169903 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9709392ns 169906 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9709847ns 169914 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9710017ns 169917 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9710301ns 169922 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9710585ns 169927 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9710870ns 169932 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9711324ns 169940 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9711495ns 169943 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9711779ns 169948 1a110850 fd5ff06f jal x0, -44 +9712063ns 169953 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9712347ns 169958 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9712745ns 169965 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9712915ns 169968 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9713370ns 169976 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9713541ns 169979 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9713825ns 169984 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9714109ns 169989 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9714393ns 169994 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9714848ns 170002 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9715018ns 170005 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9715302ns 170010 1a110850 fd5ff06f jal x0, -44 +9715587ns 170015 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9715871ns 170020 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9716269ns 170027 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9716439ns 170030 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9716894ns 170038 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9717064ns 170041 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9717348ns 170046 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9717633ns 170051 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9717917ns 170056 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9718371ns 170064 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9718542ns 170067 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9718826ns 170072 1a110850 fd5ff06f jal x0, -44 +9719110ns 170077 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9719394ns 170082 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9719792ns 170089 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9719963ns 170092 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9720417ns 170100 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9720588ns 170103 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9720872ns 170108 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9721156ns 170113 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9721440ns 170118 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9721895ns 170126 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9722065ns 170129 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9722350ns 170134 1a110850 fd5ff06f jal x0, -44 +9722634ns 170139 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9722918ns 170144 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9723316ns 170151 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9723486ns 170154 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9723941ns 170162 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9724111ns 170165 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9724396ns 170170 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9724680ns 170175 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9724964ns 170180 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9725419ns 170188 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9725589ns 170191 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9725873ns 170196 1a110850 fd5ff06f jal x0, -44 +9726157ns 170201 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9726442ns 170206 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9726839ns 170213 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9727010ns 170216 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9727464ns 170224 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9727635ns 170227 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9727919ns 170232 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9728203ns 170237 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9728487ns 170242 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9728942ns 170250 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9729113ns 170253 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9729397ns 170258 1a110850 fd5ff06f jal x0, -44 +9729681ns 170263 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9729965ns 170268 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9730363ns 170275 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9730533ns 170278 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9730988ns 170286 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9731159ns 170289 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9731443ns 170294 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9731727ns 170299 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9732011ns 170304 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9732466ns 170312 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9732636ns 170315 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9732920ns 170320 1a110850 fd5ff06f jal x0, -44 +9733205ns 170325 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9733489ns 170330 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9733887ns 170337 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9734057ns 170340 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9734512ns 170348 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9734682ns 170351 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9734966ns 170356 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9735250ns 170361 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9735535ns 170366 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9735989ns 170374 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9736160ns 170377 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9736444ns 170382 1a110850 fd5ff06f jal x0, -44 +9736728ns 170387 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9737012ns 170392 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9737410ns 170399 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9737581ns 170402 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9738035ns 170410 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9738206ns 170413 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9738490ns 170418 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9738774ns 170423 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9739058ns 170428 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9739513ns 170436 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9739683ns 170439 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9739968ns 170444 1a110850 fd5ff06f jal x0, -44 +9740252ns 170449 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9740536ns 170454 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9740934ns 170461 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9741104ns 170464 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9741559ns 170472 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9741729ns 170475 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9742013ns 170480 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9742298ns 170485 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9742582ns 170490 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9743036ns 170498 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9743207ns 170501 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9743491ns 170506 1a110850 fd5ff06f jal x0, -44 +9743775ns 170511 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9744059ns 170516 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9744457ns 170523 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9744628ns 170526 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9745082ns 170534 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9745253ns 170537 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9745537ns 170542 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9745821ns 170547 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9746105ns 170552 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9746560ns 170560 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9746731ns 170563 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9747015ns 170568 1a110850 fd5ff06f jal x0, -44 +9747299ns 170573 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9747583ns 170578 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9747981ns 170585 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9748151ns 170588 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9748606ns 170596 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9748776ns 170599 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9749061ns 170604 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9749345ns 170609 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9749629ns 170614 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9750084ns 170622 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9750254ns 170625 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9750538ns 170630 1a110850 fd5ff06f jal x0, -44 +9750822ns 170635 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9751107ns 170640 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9751504ns 170647 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9751675ns 170650 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9752130ns 170658 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9752300ns 170661 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9752584ns 170666 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9752868ns 170671 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9753153ns 170676 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9753607ns 170684 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9753778ns 170687 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9754062ns 170692 1a110850 fd5ff06f jal x0, -44 +9754346ns 170697 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9754630ns 170702 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9755028ns 170709 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9755199ns 170712 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9755653ns 170720 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9755824ns 170723 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9756108ns 170728 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9756392ns 170733 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9756676ns 170738 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9757131ns 170746 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9757301ns 170749 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9757585ns 170754 1a110850 fd5ff06f jal x0, -44 +9757870ns 170759 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9758154ns 170764 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9758552ns 170771 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9758722ns 170774 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9759177ns 170782 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9759347ns 170785 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9759631ns 170790 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9759916ns 170795 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9760200ns 170800 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9760654ns 170808 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9760825ns 170811 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9761109ns 170816 1a110850 fd5ff06f jal x0, -44 +9761393ns 170821 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9761677ns 170826 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9762075ns 170833 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9762246ns 170836 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9762700ns 170844 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9762871ns 170847 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9763155ns 170852 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9763439ns 170857 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9763723ns 170862 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9764178ns 170870 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9764348ns 170873 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9764633ns 170878 1a110850 fd5ff06f jal x0, -44 +9764917ns 170883 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9765201ns 170888 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9765599ns 170895 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9765769ns 170898 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9766224ns 170906 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9766394ns 170909 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9766679ns 170914 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9766963ns 170919 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9767247ns 170924 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9767702ns 170932 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9767872ns 170935 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9768156ns 170940 1a110850 fd5ff06f jal x0, -44 +9768440ns 170945 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9768725ns 170950 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9769122ns 170957 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9769293ns 170960 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9769747ns 170968 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9769918ns 170971 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9770202ns 170976 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9770486ns 170981 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9770770ns 170986 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9771225ns 170994 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9771396ns 170997 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9771680ns 171002 1a110850 fd5ff06f jal x0, -44 +9771964ns 171007 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9772248ns 171012 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9772646ns 171019 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9772816ns 171022 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9773271ns 171030 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9773442ns 171033 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9773726ns 171038 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9774010ns 171043 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9774294ns 171048 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9774749ns 171056 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9774919ns 171059 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9775203ns 171064 1a110850 fd5ff06f jal x0, -44 +9775488ns 171069 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9775772ns 171074 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9776170ns 171081 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9776340ns 171084 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9776795ns 171092 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9776965ns 171095 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9777249ns 171100 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9777533ns 171105 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9777818ns 171110 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9778272ns 171118 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9778443ns 171121 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9778727ns 171126 1a110850 fd5ff06f jal x0, -44 +9779011ns 171131 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9779295ns 171136 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9779693ns 171143 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9779864ns 171146 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9780318ns 171154 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9780489ns 171157 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9780773ns 171162 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9781057ns 171167 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9781341ns 171172 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9781796ns 171180 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9781966ns 171183 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9782251ns 171188 1a110850 fd5ff06f jal x0, -44 +9782535ns 171193 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9782819ns 171198 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9783217ns 171205 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9783387ns 171208 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9783842ns 171216 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9784012ns 171219 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9784296ns 171224 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9784581ns 171229 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9784865ns 171234 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9785319ns 171242 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9785490ns 171245 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9785774ns 171250 1a110850 fd5ff06f jal x0, -44 +9786058ns 171255 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9786342ns 171260 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9786740ns 171267 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9786911ns 171270 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9787365ns 171278 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9787536ns 171281 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9787820ns 171286 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9788104ns 171291 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9788388ns 171296 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9788843ns 171304 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9789014ns 171307 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9789298ns 171312 1a110850 fd5ff06f jal x0, -44 +9789582ns 171317 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9789866ns 171322 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9790264ns 171329 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9790434ns 171332 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9790889ns 171340 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9791059ns 171343 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9791344ns 171348 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9791628ns 171353 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9791912ns 171358 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9792367ns 171366 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9792537ns 171369 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9792821ns 171374 1a110850 fd5ff06f jal x0, -44 +9793105ns 171379 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9793390ns 171384 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9793787ns 171391 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9793958ns 171394 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9794413ns 171402 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9794583ns 171405 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9794867ns 171410 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9795151ns 171415 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9795436ns 171420 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9795890ns 171428 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9796061ns 171431 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9796345ns 171436 1a110850 fd5ff06f jal x0, -44 +9796629ns 171441 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9796913ns 171446 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9797311ns 171453 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9797482ns 171456 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9797936ns 171464 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9798107ns 171467 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9798391ns 171472 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9798675ns 171477 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9798959ns 171482 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9799414ns 171490 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9799584ns 171493 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9799868ns 171498 1a110850 fd5ff06f jal x0, -44 +9800153ns 171503 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9800437ns 171508 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9800835ns 171515 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9801005ns 171518 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9801460ns 171526 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9801630ns 171529 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9801914ns 171534 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9802199ns 171539 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9802483ns 171544 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9802937ns 171552 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9803108ns 171555 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9803392ns 171560 1a110850 fd5ff06f jal x0, -44 +9803676ns 171565 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9803960ns 171570 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9804358ns 171577 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9804529ns 171580 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9804983ns 171588 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9805154ns 171591 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9805438ns 171596 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9805722ns 171601 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9806006ns 171606 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9806461ns 171614 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9806631ns 171617 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9806916ns 171622 1a110850 fd5ff06f jal x0, -44 +9807200ns 171627 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9807484ns 171632 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9807882ns 171639 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9808052ns 171642 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9808507ns 171650 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9808677ns 171653 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9808962ns 171658 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9809246ns 171663 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9809530ns 171668 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9809985ns 171676 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9810155ns 171679 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9810439ns 171684 1a110850 fd5ff06f jal x0, -44 +9810723ns 171689 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9811008ns 171694 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9811405ns 171701 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9811576ns 171704 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9812031ns 171712 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9812201ns 171715 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9812485ns 171720 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9812769ns 171725 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9813053ns 171730 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9813508ns 171738 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9813679ns 171741 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9813963ns 171746 1a110850 fd5ff06f jal x0, -44 +9814247ns 171751 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9814531ns 171756 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9814929ns 171763 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9815099ns 171766 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9815554ns 171774 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9815725ns 171777 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9816009ns 171782 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9816293ns 171787 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9816577ns 171792 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9817032ns 171800 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9817202ns 171803 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9817486ns 171808 1a110850 fd5ff06f jal x0, -44 +9817771ns 171813 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9818055ns 171818 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9818453ns 171825 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9818623ns 171828 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9819078ns 171836 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9819248ns 171839 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9819532ns 171844 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9819816ns 171849 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9820101ns 171854 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9820555ns 171862 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9820726ns 171865 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9821010ns 171870 1a110850 fd5ff06f jal x0, -44 +9821294ns 171875 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9821578ns 171880 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9821976ns 171887 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9822147ns 171890 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9822601ns 171898 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9822772ns 171901 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9823056ns 171906 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9823340ns 171911 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9823624ns 171916 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9824079ns 171924 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9824249ns 171927 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9824534ns 171932 1a110850 fd5ff06f jal x0, -44 +9824818ns 171937 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9825102ns 171942 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9825500ns 171949 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9825670ns 171952 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9826125ns 171960 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9826295ns 171963 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9826579ns 171968 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9826864ns 171973 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9827148ns 171978 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9827602ns 171986 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9827773ns 171989 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9828057ns 171994 1a110850 fd5ff06f jal x0, -44 +9828341ns 171999 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9828625ns 172004 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9829023ns 172011 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9829194ns 172014 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9829648ns 172022 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9829819ns 172025 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9830103ns 172030 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9830387ns 172035 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9830671ns 172040 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9831126ns 172048 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9831297ns 172051 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9831581ns 172056 1a110850 fd5ff06f jal x0, -44 +9831865ns 172061 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9832149ns 172066 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9832547ns 172073 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9832717ns 172076 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9833172ns 172084 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9833343ns 172087 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9833627ns 172092 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9833911ns 172097 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9834195ns 172102 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9834650ns 172110 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9834820ns 172113 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9835104ns 172118 1a110850 fd5ff06f jal x0, -44 +9835388ns 172123 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9835673ns 172128 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9836070ns 172135 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9836241ns 172138 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9836696ns 172146 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9836866ns 172149 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9837150ns 172154 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9837434ns 172159 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9837719ns 172164 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9838173ns 172172 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9838344ns 172175 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9838628ns 172180 1a110850 fd5ff06f jal x0, -44 +9838912ns 172185 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9839196ns 172190 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9839594ns 172197 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9839765ns 172200 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9840219ns 172208 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9840390ns 172211 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9840674ns 172216 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9840958ns 172221 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9841242ns 172226 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9841697ns 172234 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9841867ns 172237 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9842151ns 172242 1a110850 fd5ff06f jal x0, -44 +9842436ns 172247 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9842720ns 172252 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9843118ns 172259 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9843288ns 172262 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9843743ns 172270 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9843913ns 172273 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9844197ns 172278 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9844482ns 172283 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9844766ns 172288 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9845220ns 172296 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9845391ns 172299 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9845675ns 172304 1a110850 fd5ff06f jal x0, -44 +9845959ns 172309 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9846243ns 172314 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9846641ns 172321 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9846812ns 172324 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9847266ns 172332 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9847437ns 172335 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9847721ns 172340 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9848005ns 172345 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9848289ns 172350 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9848744ns 172358 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9848914ns 172361 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9849199ns 172366 1a110850 fd5ff06f jal x0, -44 +9849483ns 172371 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9849767ns 172376 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9850165ns 172383 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9850335ns 172386 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9850790ns 172394 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9850960ns 172397 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9851245ns 172402 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9851529ns 172407 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9851813ns 172412 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9852268ns 172420 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9852438ns 172423 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9852722ns 172428 1a110850 fd5ff06f jal x0, -44 +9853006ns 172433 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9853291ns 172438 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9853688ns 172445 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9853859ns 172448 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9854314ns 172456 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9854484ns 172459 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9854768ns 172464 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9855052ns 172469 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9855336ns 172474 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9855791ns 172482 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9855962ns 172485 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9856246ns 172490 1a110850 fd5ff06f jal x0, -44 +9856530ns 172495 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9856814ns 172500 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9857212ns 172507 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9857382ns 172510 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9857837ns 172518 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9858008ns 172521 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9858292ns 172526 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9858576ns 172531 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9858860ns 172536 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9859315ns 172544 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9859485ns 172547 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9859769ns 172552 1a110850 fd5ff06f jal x0, -44 +9860054ns 172557 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9860338ns 172562 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9860736ns 172569 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9860906ns 172572 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9861361ns 172580 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9861531ns 172583 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9861815ns 172588 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9862099ns 172593 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9862384ns 172598 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9862838ns 172606 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9863009ns 172609 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9863293ns 172614 1a110850 fd5ff06f jal x0, -44 +9863577ns 172619 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9863861ns 172624 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9864259ns 172631 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9864430ns 172634 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9864884ns 172642 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9865055ns 172645 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9865339ns 172650 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9865623ns 172655 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9865907ns 172660 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9866362ns 172668 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9866532ns 172671 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9866817ns 172676 1a110850 fd5ff06f jal x0, -44 +9867101ns 172681 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9867385ns 172686 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9867783ns 172693 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9867953ns 172696 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9868408ns 172704 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9868578ns 172707 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9868863ns 172712 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9869147ns 172717 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9869431ns 172722 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9869885ns 172730 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9870056ns 172733 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9870340ns 172738 1a110850 fd5ff06f jal x0, -44 +9870624ns 172743 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9870908ns 172748 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9871306ns 172755 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9871477ns 172758 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9871931ns 172766 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9872102ns 172769 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9872386ns 172774 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9872670ns 172779 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9872954ns 172784 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9873409ns 172792 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9873580ns 172795 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9873864ns 172800 1a110850 fd5ff06f jal x0, -44 +9874148ns 172805 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9874432ns 172810 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9874830ns 172817 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9875000ns 172820 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9875455ns 172828 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9875626ns 172831 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9875910ns 172836 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9876194ns 172841 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9876478ns 172846 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9876933ns 172854 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9877103ns 172857 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9877387ns 172862 1a110850 fd5ff06f jal x0, -44 +9877671ns 172867 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9877956ns 172872 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9878353ns 172879 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9878524ns 172882 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9878979ns 172890 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9879149ns 172893 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9879433ns 172898 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9879717ns 172903 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9880002ns 172908 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9880456ns 172916 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9880627ns 172919 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9880911ns 172924 1a110850 fd5ff06f jal x0, -44 +9881195ns 172929 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9881479ns 172934 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9881877ns 172941 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9882048ns 172944 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9882502ns 172952 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9882673ns 172955 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9882957ns 172960 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9883241ns 172965 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9883525ns 172970 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9883980ns 172978 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9884150ns 172981 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9884434ns 172986 1a110850 fd5ff06f jal x0, -44 +9884719ns 172991 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9885003ns 172996 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9885401ns 173003 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9885571ns 173006 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9886026ns 173014 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9886196ns 173017 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9886480ns 173022 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9886765ns 173027 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9887049ns 173032 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9887503ns 173040 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9887674ns 173043 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9887958ns 173048 1a110850 fd5ff06f jal x0, -44 +9888242ns 173053 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9888526ns 173058 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9888924ns 173065 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9889095ns 173068 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9889549ns 173076 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9889720ns 173079 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9890004ns 173084 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9890288ns 173089 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9890572ns 173094 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9891027ns 173102 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9891197ns 173105 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9891482ns 173110 1a110850 fd5ff06f jal x0, -44 +9891766ns 173115 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9892050ns 173120 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9892448ns 173127 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9892618ns 173130 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9893073ns 173138 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9893243ns 173141 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9893528ns 173146 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9893812ns 173151 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9894096ns 173156 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9894551ns 173164 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9894721ns 173167 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9895005ns 173172 1a110850 fd5ff06f jal x0, -44 +9895289ns 173177 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9895574ns 173182 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9895971ns 173189 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9896142ns 173192 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9896597ns 173200 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9896767ns 173203 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9897051ns 173208 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9897335ns 173213 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9897619ns 173218 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9898074ns 173226 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9898245ns 173229 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9898529ns 173234 1a110850 fd5ff06f jal x0, -44 +9898813ns 173239 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9899097ns 173244 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9899495ns 173251 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9899665ns 173254 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9900120ns 173262 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9900291ns 173265 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9900575ns 173270 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9900859ns 173275 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9901143ns 173280 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9901598ns 173288 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9901768ns 173291 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9902052ns 173296 1a110850 fd5ff06f jal x0, -44 +9902337ns 173301 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9902621ns 173306 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9903019ns 173313 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9903189ns 173316 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9903644ns 173324 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9903814ns 173327 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9904098ns 173332 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9904383ns 173337 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9904667ns 173342 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9905121ns 173350 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9905292ns 173353 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9905576ns 173358 1a110850 fd5ff06f jal x0, -44 +9905860ns 173363 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9906144ns 173368 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9906542ns 173375 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9906713ns 173378 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9907167ns 173386 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9907338ns 173389 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9907622ns 173394 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9907906ns 173399 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9908190ns 173404 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9908645ns 173412 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9908815ns 173415 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9909100ns 173420 1a110850 fd5ff06f jal x0, -44 +9909384ns 173425 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9909668ns 173430 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9910066ns 173437 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9910236ns 173440 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9910691ns 173448 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9910861ns 173451 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9911146ns 173456 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9911430ns 173461 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9911714ns 173466 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9912168ns 173474 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9912339ns 173477 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9912623ns 173482 1a110850 fd5ff06f jal x0, -44 +9912907ns 173487 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9913191ns 173492 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9913589ns 173499 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9913760ns 173502 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9914214ns 173510 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9914385ns 173513 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9914669ns 173518 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9914953ns 173523 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9915237ns 173528 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9915692ns 173536 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9915863ns 173539 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9916147ns 173544 1a110850 fd5ff06f jal x0, -44 +9916431ns 173549 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9916715ns 173554 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9917113ns 173561 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9917283ns 173564 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9917738ns 173572 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9917909ns 173575 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9918193ns 173580 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9918477ns 173585 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9918761ns 173590 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9919216ns 173598 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9919386ns 173601 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9919670ns 173606 1a110850 fd5ff06f jal x0, -44 +9919954ns 173611 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9920239ns 173616 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9920636ns 173623 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9920807ns 173626 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9921262ns 173634 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9921432ns 173637 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9921716ns 173642 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9922000ns 173647 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9922285ns 173652 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9922739ns 173660 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9922910ns 173663 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9923194ns 173668 1a110850 fd5ff06f jal x0, -44 +9923478ns 173673 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9923762ns 173678 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9924160ns 173685 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9924331ns 173688 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9924785ns 173696 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9924956ns 173699 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9925240ns 173704 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9925524ns 173709 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9925808ns 173714 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9926263ns 173722 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9926433ns 173725 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9926717ns 173730 1a110850 fd5ff06f jal x0, -44 +9927002ns 173735 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9927286ns 173740 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9927684ns 173747 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9927854ns 173750 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9928309ns 173758 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9928479ns 173761 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9928763ns 173766 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9929048ns 173771 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9929332ns 173776 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9929786ns 173784 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9929957ns 173787 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9930241ns 173792 1a110850 fd5ff06f jal x0, -44 +9930525ns 173797 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9930809ns 173802 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9931207ns 173809 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9931378ns 173812 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9931832ns 173820 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9932003ns 173823 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9932287ns 173828 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9932571ns 173833 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9932855ns 173838 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9933310ns 173846 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9933480ns 173849 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9933765ns 173854 1a110850 fd5ff06f jal x0, -44 +9934049ns 173859 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9934333ns 173864 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9934731ns 173871 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9934901ns 173874 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9935356ns 173882 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9935526ns 173885 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9935811ns 173890 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9936095ns 173895 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9936379ns 173900 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9936834ns 173908 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9937004ns 173911 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9937288ns 173916 1a110850 fd5ff06f jal x0, -44 +9937572ns 173921 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9937857ns 173926 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9938254ns 173933 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9938425ns 173936 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9938880ns 173944 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9939050ns 173947 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9939334ns 173952 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9939618ns 173957 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9939903ns 173962 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9940357ns 173970 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9940528ns 173973 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9940812ns 173978 1a110850 fd5ff06f jal x0, -44 +9941096ns 173983 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9941380ns 173988 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9941778ns 173995 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9941948ns 173998 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9942403ns 174006 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9942574ns 174009 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9942858ns 174014 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9943142ns 174019 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9943426ns 174024 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9943881ns 174032 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9944051ns 174035 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9944335ns 174040 1a110850 fd5ff06f jal x0, -44 +9944620ns 174045 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9944904ns 174050 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9945302ns 174057 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9945472ns 174060 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9945927ns 174068 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9946097ns 174071 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9946381ns 174076 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9946666ns 174081 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9946950ns 174086 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9947404ns 174094 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9947575ns 174097 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9947859ns 174102 1a110850 fd5ff06f jal x0, -44 +9948143ns 174107 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9948427ns 174112 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9948825ns 174119 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9948996ns 174122 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9949450ns 174130 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9949621ns 174133 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9949905ns 174138 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9950189ns 174143 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9950473ns 174148 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9950928ns 174156 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9951098ns 174159 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9951383ns 174164 1a110850 fd5ff06f jal x0, -44 +9951667ns 174169 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9951951ns 174174 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9952349ns 174181 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9952519ns 174184 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9952974ns 174192 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9953144ns 174195 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9953429ns 174200 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9953713ns 174205 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9953997ns 174210 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9954451ns 174218 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9954622ns 174221 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9954906ns 174226 1a110850 fd5ff06f jal x0, -44 +9955190ns 174231 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9955474ns 174236 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9955872ns 174243 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9956043ns 174246 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9956497ns 174254 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9956668ns 174257 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9956952ns 174262 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9957236ns 174267 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9957520ns 174272 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9957975ns 174280 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9958146ns 174283 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9958430ns 174288 1a110850 fd5ff06f jal x0, -44 +9958714ns 174293 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9958998ns 174298 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9959396ns 174305 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9959566ns 174308 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9960021ns 174316 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9960192ns 174319 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9960476ns 174324 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9960760ns 174329 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9961044ns 174334 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9961499ns 174342 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9961669ns 174345 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9961953ns 174350 1a110850 fd5ff06f jal x0, -44 +9962237ns 174355 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9962522ns 174360 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9962919ns 174367 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9963090ns 174370 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9963545ns 174378 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9963715ns 174381 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9963999ns 174386 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9964283ns 174391 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9964568ns 174396 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9965022ns 174404 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9965193ns 174407 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9965477ns 174412 1a110850 fd5ff06f jal x0, -44 +9965761ns 174417 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9966045ns 174422 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9966443ns 174429 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9966614ns 174432 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9967068ns 174440 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9967239ns 174443 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9967523ns 174448 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9967807ns 174453 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9968091ns 174458 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9968546ns 174466 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9968716ns 174469 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9969000ns 174474 1a110850 fd5ff06f jal x0, -44 +9969285ns 174479 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9969569ns 174484 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9969967ns 174491 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9970137ns 174494 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9970592ns 174502 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9970762ns 174505 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9971046ns 174510 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9971331ns 174515 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9971615ns 174520 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9972069ns 174528 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9972240ns 174531 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9972524ns 174536 1a110850 fd5ff06f jal x0, -44 +9972808ns 174541 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9973092ns 174546 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9973490ns 174553 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9973661ns 174556 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9974115ns 174564 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9974286ns 174567 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9974570ns 174572 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9974854ns 174577 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9975138ns 174582 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9975593ns 174590 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9975763ns 174593 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9976048ns 174598 1a110850 fd5ff06f jal x0, -44 +9976332ns 174603 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9976616ns 174608 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9977014ns 174615 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9977184ns 174618 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9977639ns 174626 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9977809ns 174629 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9978094ns 174634 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9978378ns 174639 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9978662ns 174644 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9979117ns 174652 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9979287ns 174655 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9979571ns 174660 1a110850 fd5ff06f jal x0, -44 +9979855ns 174665 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9980140ns 174670 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9980537ns 174677 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9980708ns 174680 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9981163ns 174688 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9981333ns 174691 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9981617ns 174696 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9981901ns 174701 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9982186ns 174706 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9982640ns 174714 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9982811ns 174717 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9983095ns 174722 1a110850 fd5ff06f jal x0, -44 +9983379ns 174727 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9983663ns 174732 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9984061ns 174739 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9984231ns 174742 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9984686ns 174750 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9984857ns 174753 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9985141ns 174758 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9985425ns 174763 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9985709ns 174768 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9986164ns 174776 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9986334ns 174779 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9986618ns 174784 1a110850 fd5ff06f jal x0, -44 +9986903ns 174789 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9987187ns 174794 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9987585ns 174801 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9987755ns 174804 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9988210ns 174812 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9988380ns 174815 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9988664ns 174820 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9988949ns 174825 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9989233ns 174830 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9989687ns 174838 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9989858ns 174841 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9990142ns 174846 1a110850 fd5ff06f jal x0, -44 +9990426ns 174851 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9990710ns 174856 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9991108ns 174863 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9991279ns 174866 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9991733ns 174874 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9991904ns 174877 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9992188ns 174882 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9992472ns 174887 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9992756ns 174892 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9993211ns 174900 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9993381ns 174903 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9993666ns 174908 1a110850 fd5ff06f jal x0, -44 +9993950ns 174913 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9994234ns 174918 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9994632ns 174925 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9994802ns 174928 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9995257ns 174936 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9995427ns 174939 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9995712ns 174944 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9995996ns 174949 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9996280ns 174954 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9996735ns 174962 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +9996905ns 174965 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +9997189ns 174970 1a110850 fd5ff06f jal x0, -44 +9997473ns 174975 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9997757ns 174980 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +9998155ns 174987 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9998326ns 174990 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +9998780ns 174998 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +9998951ns 175001 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +9999235ns 175006 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +9999519ns 175011 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +9999803ns 175016 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10000258ns 175024 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10000429ns 175027 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10000713ns 175032 1a110850 fd5ff06f jal x0, -44 +10000997ns 175037 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10001281ns 175042 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10001679ns 175049 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10001849ns 175052 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10002304ns 175060 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10002475ns 175063 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10002759ns 175068 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10003043ns 175073 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10003327ns 175078 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10003782ns 175086 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10003952ns 175089 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10004236ns 175094 1a110850 fd5ff06f jal x0, -44 +10004520ns 175099 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10004805ns 175104 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10005202ns 175111 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10005373ns 175114 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10005828ns 175122 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10005998ns 175125 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10006282ns 175130 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10006566ns 175135 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10006851ns 175140 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10007305ns 175148 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10007476ns 175151 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10007760ns 175156 1a110850 fd5ff06f jal x0, -44 +10008044ns 175161 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10008328ns 175166 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10008726ns 175173 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10008897ns 175176 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10009351ns 175184 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10009522ns 175187 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10009806ns 175192 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10010090ns 175197 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10010374ns 175202 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10010829ns 175210 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10010999ns 175213 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10011283ns 175218 1a110850 fd5ff06f jal x0, -44 +10011568ns 175223 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10011852ns 175228 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10012250ns 175235 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10012420ns 175238 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10012875ns 175246 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10013045ns 175249 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10013329ns 175254 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10013614ns 175259 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10013898ns 175264 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10014352ns 175272 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10014523ns 175275 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10014807ns 175280 1a110850 fd5ff06f jal x0, -44 +10015091ns 175285 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10015375ns 175290 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10015773ns 175297 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10015944ns 175300 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10016398ns 175308 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10016569ns 175311 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10016853ns 175316 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10017137ns 175321 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10017421ns 175326 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10017876ns 175334 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10018047ns 175337 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10018331ns 175342 1a110850 fd5ff06f jal x0, -44 +10018615ns 175347 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10018899ns 175352 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10019297ns 175359 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10019467ns 175362 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10019922ns 175370 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10020092ns 175373 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10020377ns 175378 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10020661ns 175383 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10020945ns 175388 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10021400ns 175396 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10021570ns 175399 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10021854ns 175404 1a110850 fd5ff06f jal x0, -44 +10022138ns 175409 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10022423ns 175414 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10022820ns 175421 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10022991ns 175424 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10023446ns 175432 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10023616ns 175435 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10023900ns 175440 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10024184ns 175445 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10024469ns 175450 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10024923ns 175458 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10025094ns 175461 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10025378ns 175466 1a110850 fd5ff06f jal x0, -44 +10025662ns 175471 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10025946ns 175476 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10026344ns 175483 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10026514ns 175486 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10026969ns 175494 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10027140ns 175497 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10027424ns 175502 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10027708ns 175507 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10027992ns 175512 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10028447ns 175520 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10028617ns 175523 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10028901ns 175528 1a110850 fd5ff06f jal x0, -44 +10029186ns 175533 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10029470ns 175538 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10029868ns 175545 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10030038ns 175548 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10030493ns 175556 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10030663ns 175559 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10030947ns 175564 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10031232ns 175569 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10031516ns 175574 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10031970ns 175582 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10032141ns 175585 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10032425ns 175590 1a110850 fd5ff06f jal x0, -44 +10032709ns 175595 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10032993ns 175600 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10033391ns 175607 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10033562ns 175610 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10034016ns 175618 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10034187ns 175621 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10034471ns 175626 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10034755ns 175631 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10035039ns 175636 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10035494ns 175644 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10035664ns 175647 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10035949ns 175652 1a110850 fd5ff06f jal x0, -44 +10036233ns 175657 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10036517ns 175662 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10036915ns 175669 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10037085ns 175672 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10037540ns 175680 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10037710ns 175683 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10037995ns 175688 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10038279ns 175693 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10038563ns 175698 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10039018ns 175706 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10039188ns 175709 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10039472ns 175714 1a110850 fd5ff06f jal x0, -44 +10039756ns 175719 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10040040ns 175724 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10040438ns 175731 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10040609ns 175734 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10041063ns 175742 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10041234ns 175745 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10041518ns 175750 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10041802ns 175755 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10042086ns 175760 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10042541ns 175768 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10042712ns 175771 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10042996ns 175776 1a110850 fd5ff06f jal x0, -44 +10043280ns 175781 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10043564ns 175786 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10043962ns 175793 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10044132ns 175796 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10044587ns 175804 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10044758ns 175807 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10045042ns 175812 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10045326ns 175817 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10045610ns 175822 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10046065ns 175830 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10046235ns 175833 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10046519ns 175838 1a110850 fd5ff06f jal x0, -44 +10046803ns 175843 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10047088ns 175848 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10047485ns 175855 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10047656ns 175858 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10048111ns 175866 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10048281ns 175869 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10048565ns 175874 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10048849ns 175879 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10049134ns 175884 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10049588ns 175892 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10049759ns 175895 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10050043ns 175900 1a110850 fd5ff06f jal x0, -44 +10050327ns 175905 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10050611ns 175910 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10051009ns 175917 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10051180ns 175920 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10051634ns 175928 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10051805ns 175931 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10052089ns 175936 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10052373ns 175941 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10052657ns 175946 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10053112ns 175954 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10053282ns 175957 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10053567ns 175962 1a110850 fd5ff06f jal x0, -44 +10053851ns 175967 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10054135ns 175972 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10054533ns 175979 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10054703ns 175982 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10055158ns 175990 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10055328ns 175993 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10055612ns 175998 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10055897ns 176003 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10056181ns 176008 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10056635ns 176016 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10056806ns 176019 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10057090ns 176024 1a110850 fd5ff06f jal x0, -44 +10057374ns 176029 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10057658ns 176034 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10058056ns 176041 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10058227ns 176044 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10058681ns 176052 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10058852ns 176055 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10059136ns 176060 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10059420ns 176065 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10059704ns 176070 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10060159ns 176078 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10060330ns 176081 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10060614ns 176086 1a110850 fd5ff06f jal x0, -44 +10060898ns 176091 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10061182ns 176096 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10061580ns 176103 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10061750ns 176106 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10062205ns 176114 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10062375ns 176117 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10062660ns 176122 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10062944ns 176127 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10063228ns 176132 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10063683ns 176140 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10063853ns 176143 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10064137ns 176148 1a110850 fd5ff06f jal x0, -44 +10064421ns 176153 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10064706ns 176158 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10065103ns 176165 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10065274ns 176168 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10065729ns 176176 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10065899ns 176179 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10066183ns 176184 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10066467ns 176189 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10066752ns 176194 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10067206ns 176202 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10067377ns 176205 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10067661ns 176210 1a110850 fd5ff06f jal x0, -44 +10067945ns 176215 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10068229ns 176220 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10068627ns 176227 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10068797ns 176230 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10069252ns 176238 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10069423ns 176241 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10069707ns 176246 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10069991ns 176251 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10070275ns 176256 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10070730ns 176264 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10070900ns 176267 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10071184ns 176272 1a110850 fd5ff06f jal x0, -44 +10071469ns 176277 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10071753ns 176282 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10072151ns 176289 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10072321ns 176292 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10072776ns 176300 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10072946ns 176303 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10073230ns 176308 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10073515ns 176313 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10073799ns 176318 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10074253ns 176326 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10074424ns 176329 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10074708ns 176334 1a110850 fd5ff06f jal x0, -44 +10074992ns 176339 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10075276ns 176344 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10075674ns 176351 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10075845ns 176354 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10076299ns 176362 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10076470ns 176365 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10076754ns 176370 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10077038ns 176375 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10077322ns 176380 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10077777ns 176388 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10077947ns 176391 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10078232ns 176396 1a110850 fd5ff06f jal x0, -44 +10078516ns 176401 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10078800ns 176406 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10079198ns 176413 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10079368ns 176416 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10079823ns 176424 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10079993ns 176427 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10080278ns 176432 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10080562ns 176437 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10080846ns 176442 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10081301ns 176450 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10081471ns 176453 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10081755ns 176458 1a110850 fd5ff06f jal x0, -44 +10082039ns 176463 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10082323ns 176468 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10082721ns 176475 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10082892ns 176478 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10083346ns 176486 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10083517ns 176489 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10083801ns 176494 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10084085ns 176499 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10084369ns 176504 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10084824ns 176512 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10084995ns 176515 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10085279ns 176520 1a110850 fd5ff06f jal x0, -44 +10085563ns 176525 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10085847ns 176530 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10086245ns 176537 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10086415ns 176540 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10086870ns 176548 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10087041ns 176551 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10087325ns 176556 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10087609ns 176561 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10087893ns 176566 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10088348ns 176574 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10088518ns 176577 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10088802ns 176582 1a110850 fd5ff06f jal x0, -44 +10089087ns 176587 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10089371ns 176592 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10089768ns 176599 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10089939ns 176602 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10090394ns 176610 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10090564ns 176613 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10090848ns 176618 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10091132ns 176623 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10091417ns 176628 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10091871ns 176636 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10092042ns 176639 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10092326ns 176644 1a110850 fd5ff06f jal x0, -44 +10092610ns 176649 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10092894ns 176654 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10093292ns 176661 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10093463ns 176664 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10093917ns 176672 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10094088ns 176675 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10094372ns 176680 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10094656ns 176685 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10094940ns 176690 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10095395ns 176698 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10095565ns 176701 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10095850ns 176706 1a110850 fd5ff06f jal x0, -44 +10096134ns 176711 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10096418ns 176716 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10096816ns 176723 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10096986ns 176726 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10097441ns 176734 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10097611ns 176737 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10097895ns 176742 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10098180ns 176747 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10098464ns 176752 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10098918ns 176760 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10099089ns 176763 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10099373ns 176768 1a110850 fd5ff06f jal x0, -44 +10099657ns 176773 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10099941ns 176778 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10100339ns 176785 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10100510ns 176788 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10100964ns 176796 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10101135ns 176799 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10101419ns 176804 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10101703ns 176809 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10101987ns 176814 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10102442ns 176822 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10102613ns 176825 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10102897ns 176830 1a110850 fd5ff06f jal x0, -44 +10103181ns 176835 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10103465ns 176840 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10103863ns 176847 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10104033ns 176850 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10104488ns 176858 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10104658ns 176861 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10104943ns 176866 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10105227ns 176871 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10105511ns 176876 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10105966ns 176884 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10106136ns 176887 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10106420ns 176892 1a110850 fd5ff06f jal x0, -44 +10106704ns 176897 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10106989ns 176902 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10107386ns 176909 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10107557ns 176912 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10108012ns 176920 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10108182ns 176923 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10108466ns 176928 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10108750ns 176933 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10109035ns 176938 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10109489ns 176946 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10109660ns 176949 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10109944ns 176954 1a110850 fd5ff06f jal x0, -44 +10110228ns 176959 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10110512ns 176964 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10110910ns 176971 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10111080ns 176974 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10111535ns 176982 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10111706ns 176985 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10111990ns 176990 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10112274ns 176995 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10112558ns 177000 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10113013ns 177008 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10113183ns 177011 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10113467ns 177016 1a110850 fd5ff06f jal x0, -44 +10113752ns 177021 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10114036ns 177026 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10114434ns 177033 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10114604ns 177036 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10115059ns 177044 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10115229ns 177047 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10115513ns 177052 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10115798ns 177057 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10116082ns 177062 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10116536ns 177070 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10116707ns 177073 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10116991ns 177078 1a110850 fd5ff06f jal x0, -44 +10117275ns 177083 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10117559ns 177088 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10117957ns 177095 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10118128ns 177098 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10118582ns 177106 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10118753ns 177109 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10119037ns 177114 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10119321ns 177119 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10119605ns 177124 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10120060ns 177132 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10120230ns 177135 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10120515ns 177140 1a110850 fd5ff06f jal x0, -44 +10120799ns 177145 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10121083ns 177150 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10121481ns 177157 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10121651ns 177160 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10122106ns 177168 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10122276ns 177171 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10122561ns 177176 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10122845ns 177181 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10123129ns 177186 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10123584ns 177194 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10123754ns 177197 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10124038ns 177202 1a110850 fd5ff06f jal x0, -44 +10124322ns 177207 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10124607ns 177212 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10125004ns 177219 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10125175ns 177222 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10125629ns 177230 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10125800ns 177233 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10126084ns 177238 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10126368ns 177243 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10126652ns 177248 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10127107ns 177256 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10127278ns 177259 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10127562ns 177264 1a110850 fd5ff06f jal x0, -44 +10127846ns 177269 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10128130ns 177274 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10128528ns 177281 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10128698ns 177284 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10129153ns 177292 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10129324ns 177295 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10129608ns 177300 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10129892ns 177305 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10130176ns 177310 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10130631ns 177318 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10130801ns 177321 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10131085ns 177326 1a110850 fd5ff06f jal x0, -44 +10131370ns 177331 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10131654ns 177336 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10132051ns 177343 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10132222ns 177346 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10132677ns 177354 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10132847ns 177357 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10133131ns 177362 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10133415ns 177367 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10133700ns 177372 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10134154ns 177380 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10134325ns 177383 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10134609ns 177388 1a110850 fd5ff06f jal x0, -44 +10134893ns 177393 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10135177ns 177398 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10135575ns 177405 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10135746ns 177408 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10136200ns 177416 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10136371ns 177419 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10136655ns 177424 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10136939ns 177429 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10137223ns 177434 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10137678ns 177442 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10137848ns 177445 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10138133ns 177450 1a110850 fd5ff06f jal x0, -44 +10138417ns 177455 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10138701ns 177460 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10139099ns 177467 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10139269ns 177470 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10139724ns 177478 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10139894ns 177481 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10140178ns 177486 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10140463ns 177491 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10140747ns 177496 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10141201ns 177504 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10141372ns 177507 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10141656ns 177512 1a110850 fd5ff06f jal x0, -44 +10141940ns 177517 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10142224ns 177522 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10142622ns 177529 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10142793ns 177532 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10143247ns 177540 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10143418ns 177543 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10143702ns 177548 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10143986ns 177553 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10144270ns 177558 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10144725ns 177566 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10144896ns 177569 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10145180ns 177574 1a110850 fd5ff06f jal x0, -44 +10145464ns 177579 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10145748ns 177584 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10146146ns 177591 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10146316ns 177594 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10146771ns 177602 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10146941ns 177605 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10147226ns 177610 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10147510ns 177615 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10147794ns 177620 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10148249ns 177628 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10148419ns 177631 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10148703ns 177636 1a110850 fd5ff06f jal x0, -44 +10148987ns 177641 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10149272ns 177646 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10149669ns 177653 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10149840ns 177656 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10150295ns 177664 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10150465ns 177667 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10150749ns 177672 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10151033ns 177677 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10151318ns 177682 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10151772ns 177690 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10151943ns 177693 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10152227ns 177698 1a110850 fd5ff06f jal x0, -44 +10152511ns 177703 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10152795ns 177708 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10153193ns 177715 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10153363ns 177718 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10153818ns 177726 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10153989ns 177729 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10154273ns 177734 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10154557ns 177739 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10154841ns 177744 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10155296ns 177752 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10155466ns 177755 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10155750ns 177760 1a110850 fd5ff06f jal x0, -44 +10156035ns 177765 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10156319ns 177770 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10156717ns 177777 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10156887ns 177780 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10157342ns 177788 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10157512ns 177791 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10157796ns 177796 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10158081ns 177801 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10158365ns 177806 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10158819ns 177814 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10158990ns 177817 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10159274ns 177822 1a110850 fd5ff06f jal x0, -44 +10159558ns 177827 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10159842ns 177832 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10160240ns 177839 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10160411ns 177842 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10160865ns 177850 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10161036ns 177853 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10161320ns 177858 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10161604ns 177863 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10161888ns 177868 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10162343ns 177876 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10162513ns 177879 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10162798ns 177884 1a110850 fd5ff06f jal x0, -44 +10163082ns 177889 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10163366ns 177894 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10163764ns 177901 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10163934ns 177904 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10164389ns 177912 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10164559ns 177915 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10164844ns 177920 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10165128ns 177925 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10165412ns 177930 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10165867ns 177938 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10166037ns 177941 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10166321ns 177946 1a110850 fd5ff06f jal x0, -44 +10166605ns 177951 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10166890ns 177956 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10167287ns 177963 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10167458ns 177966 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10167912ns 177974 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10168083ns 177977 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10168367ns 177982 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10168651ns 177987 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10168935ns 177992 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10169390ns 178000 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10169561ns 178003 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10169845ns 178008 1a110850 fd5ff06f jal x0, -44 +10170129ns 178013 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10170413ns 178018 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10170811ns 178025 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10170981ns 178028 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10171436ns 178036 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10171607ns 178039 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10171891ns 178044 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10172175ns 178049 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10172459ns 178054 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10172914ns 178062 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10173084ns 178065 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10173368ns 178070 1a110850 fd5ff06f jal x0, -44 +10173653ns 178075 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10173937ns 178080 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10174335ns 178087 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10174505ns 178090 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10174960ns 178098 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10175130ns 178101 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10175414ns 178106 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10175698ns 178111 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10175983ns 178116 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10176437ns 178124 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10176608ns 178127 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10176892ns 178132 1a110850 fd5ff06f jal x0, -44 +10177176ns 178137 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10177460ns 178142 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10177858ns 178149 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10178029ns 178152 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10178483ns 178160 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10178654ns 178163 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10178938ns 178168 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10179222ns 178173 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10179506ns 178178 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10179961ns 178186 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10180131ns 178189 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10180416ns 178194 1a110850 fd5ff06f jal x0, -44 +10180700ns 178199 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10180984ns 178204 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10181382ns 178211 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10181552ns 178214 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10182007ns 178222 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10182177ns 178225 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10182461ns 178230 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10182746ns 178235 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10183030ns 178240 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10183484ns 178248 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10183655ns 178251 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10183939ns 178256 1a110850 fd5ff06f jal x0, -44 +10184223ns 178261 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10184507ns 178266 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10184905ns 178273 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10185076ns 178276 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10185530ns 178284 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10185701ns 178287 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10185985ns 178292 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10186269ns 178297 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10186553ns 178302 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10187008ns 178310 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10187179ns 178313 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10187463ns 178318 1a110850 fd5ff06f jal x0, -44 +10187747ns 178323 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10188031ns 178328 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10188429ns 178335 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10188599ns 178338 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10189054ns 178346 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10189224ns 178349 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10189509ns 178354 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10189793ns 178359 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10190077ns 178364 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10190532ns 178372 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10190702ns 178375 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10190986ns 178380 1a110850 fd5ff06f jal x0, -44 +10191270ns 178385 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10191555ns 178390 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10191952ns 178397 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10192123ns 178400 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10192578ns 178408 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10192748ns 178411 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10193032ns 178416 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10193316ns 178421 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10193601ns 178426 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10194055ns 178434 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10194226ns 178437 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10194510ns 178442 1a110850 fd5ff06f jal x0, -44 +10194794ns 178447 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10195078ns 178452 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10195476ns 178459 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10195647ns 178462 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10196101ns 178470 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10196272ns 178473 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10196556ns 178478 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10196840ns 178483 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10197124ns 178488 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10197579ns 178496 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10197749ns 178499 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10198033ns 178504 1a110850 fd5ff06f jal x0, -44 +10198318ns 178509 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10198602ns 178514 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10199000ns 178521 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10199170ns 178524 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10199625ns 178532 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10199795ns 178535 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10200079ns 178540 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10200364ns 178545 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10200648ns 178550 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10201102ns 178558 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10201273ns 178561 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10201557ns 178566 1a110850 fd5ff06f jal x0, -44 +10201841ns 178571 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10202125ns 178576 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10202523ns 178583 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10202694ns 178586 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10203148ns 178594 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10203319ns 178597 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10203603ns 178602 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10203887ns 178607 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10204171ns 178612 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10204626ns 178620 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10204796ns 178623 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10205081ns 178628 1a110850 fd5ff06f jal x0, -44 +10205365ns 178633 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10205649ns 178638 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10206047ns 178645 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10206217ns 178648 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10206672ns 178656 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10206842ns 178659 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10207127ns 178664 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10207411ns 178669 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10207695ns 178674 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10208150ns 178682 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10208320ns 178685 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10208604ns 178690 1a110850 fd5ff06f jal x0, -44 +10208888ns 178695 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10209173ns 178700 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10209570ns 178707 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10209741ns 178710 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10210195ns 178718 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10210366ns 178721 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10210650ns 178726 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10210934ns 178731 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10211218ns 178736 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10211673ns 178744 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10211844ns 178747 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10212128ns 178752 1a110850 fd5ff06f jal x0, -44 +10212412ns 178757 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10212696ns 178762 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10213094ns 178769 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10213264ns 178772 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10213719ns 178780 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10213890ns 178783 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10214174ns 178788 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10214458ns 178793 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10214742ns 178798 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10215197ns 178806 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10215367ns 178809 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10215651ns 178814 1a110850 fd5ff06f jal x0, -44 +10215936ns 178819 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10216220ns 178824 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10216618ns 178831 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10216788ns 178834 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10217243ns 178842 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10217413ns 178845 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10217697ns 178850 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10217981ns 178855 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10218266ns 178860 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10218720ns 178868 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10218891ns 178871 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10219175ns 178876 1a110850 fd5ff06f jal x0, -44 +10219459ns 178881 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10219743ns 178886 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10220141ns 178893 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10220312ns 178896 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10220766ns 178904 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10220937ns 178907 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10221221ns 178912 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10221505ns 178917 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10221789ns 178922 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10222244ns 178930 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10222414ns 178933 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10222699ns 178938 1a110850 fd5ff06f jal x0, -44 +10222983ns 178943 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10223267ns 178948 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10223665ns 178955 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10223835ns 178958 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10224290ns 178966 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10224460ns 178969 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10224744ns 178974 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10225029ns 178979 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10225313ns 178984 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10225767ns 178992 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10225938ns 178995 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10226222ns 179000 1a110850 fd5ff06f jal x0, -44 +10226506ns 179005 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10226790ns 179010 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10227188ns 179017 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10227359ns 179020 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10227813ns 179028 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10227984ns 179031 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10228268ns 179036 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10228552ns 179041 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10228836ns 179046 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10229291ns 179054 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10229462ns 179057 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10229746ns 179062 1a110850 fd5ff06f jal x0, -44 +10230030ns 179067 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10230314ns 179072 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10230712ns 179079 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10230882ns 179082 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10231337ns 179090 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10231507ns 179093 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10231792ns 179098 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10232076ns 179103 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10232360ns 179108 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10232815ns 179116 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10232985ns 179119 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10233269ns 179124 1a110850 fd5ff06f jal x0, -44 +10233553ns 179129 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10233838ns 179134 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10234235ns 179141 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10234406ns 179144 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10234861ns 179152 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10235031ns 179155 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10235315ns 179160 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10235599ns 179165 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10235884ns 179170 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10236338ns 179178 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10236509ns 179181 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10236793ns 179186 1a110850 fd5ff06f jal x0, -44 +10237077ns 179191 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10237361ns 179196 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10237759ns 179203 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10237930ns 179206 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10238384ns 179214 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10238555ns 179217 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10238839ns 179222 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10239123ns 179227 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10239407ns 179232 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10239862ns 179240 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10240032ns 179243 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10240316ns 179248 1a110850 fd5ff06f jal x0, -44 +10240601ns 179253 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10240885ns 179258 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10241283ns 179265 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10241453ns 179268 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10241908ns 179276 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10242078ns 179279 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10242362ns 179284 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10242647ns 179289 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10242931ns 179294 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10243385ns 179302 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10243556ns 179305 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10243840ns 179310 1a110850 fd5ff06f jal x0, -44 +10244124ns 179315 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10244408ns 179320 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10244806ns 179327 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10244977ns 179330 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10245431ns 179338 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10245602ns 179341 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10245886ns 179346 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10246170ns 179351 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10246454ns 179356 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10246909ns 179364 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10247079ns 179367 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10247364ns 179372 1a110850 fd5ff06f jal x0, -44 +10247648ns 179377 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10247932ns 179382 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10248330ns 179389 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10248500ns 179392 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10248955ns 179400 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10249125ns 179403 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10249410ns 179408 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10249694ns 179413 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10249978ns 179418 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10250433ns 179426 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10250603ns 179429 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10250887ns 179434 1a110850 fd5ff06f jal x0, -44 +10251171ns 179439 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10251456ns 179444 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10251853ns 179451 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10252024ns 179454 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10252479ns 179462 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10252649ns 179465 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10252933ns 179470 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10253217ns 179475 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10253501ns 179480 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10253956ns 179488 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10254127ns 179491 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10254411ns 179496 1a110850 fd5ff06f jal x0, -44 +10254695ns 179501 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10254979ns 179506 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10255377ns 179513 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10255547ns 179516 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10256002ns 179524 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10256173ns 179527 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10256457ns 179532 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10256741ns 179537 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10257025ns 179542 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10257480ns 179550 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10257650ns 179553 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10257934ns 179558 1a110850 fd5ff06f jal x0, -44 +10258219ns 179563 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10258503ns 179568 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10258901ns 179575 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10259071ns 179578 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10259526ns 179586 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10259696ns 179589 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10259980ns 179594 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10260264ns 179599 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10260549ns 179604 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10261003ns 179612 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10261174ns 179615 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10261458ns 179620 1a110850 fd5ff06f jal x0, -44 +10261742ns 179625 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10262026ns 179630 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10262424ns 179637 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10262595ns 179640 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10263049ns 179648 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10263220ns 179651 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10263504ns 179656 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10263788ns 179661 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10264072ns 179666 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10264527ns 179674 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10264697ns 179677 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10264982ns 179682 1a110850 fd5ff06f jal x0, -44 +10265266ns 179687 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10265550ns 179692 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10265948ns 179699 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10266118ns 179702 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10266573ns 179710 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10266743ns 179713 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10267027ns 179718 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10267312ns 179723 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10267596ns 179728 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10268050ns 179736 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10268221ns 179739 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10268505ns 179744 1a110850 fd5ff06f jal x0, -44 +10268789ns 179749 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10269073ns 179754 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10269471ns 179761 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10269642ns 179764 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10270096ns 179772 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10270267ns 179775 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10270551ns 179780 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10270835ns 179785 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10271119ns 179790 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10271574ns 179798 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10271745ns 179801 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10272029ns 179806 1a110850 fd5ff06f jal x0, -44 +10272313ns 179811 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10272597ns 179816 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10272995ns 179823 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10273165ns 179826 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10273620ns 179834 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10273791ns 179837 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10274075ns 179842 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10274359ns 179847 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10274643ns 179852 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10275098ns 179860 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10275268ns 179863 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10275552ns 179868 1a110850 fd5ff06f jal x0, -44 +10275836ns 179873 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10276121ns 179878 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10276518ns 179885 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10276689ns 179888 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10277144ns 179896 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10277314ns 179899 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10277598ns 179904 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10277882ns 179909 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10278167ns 179914 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10278621ns 179922 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10278792ns 179925 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10279076ns 179930 1a110850 fd5ff06f jal x0, -44 +10279360ns 179935 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10279644ns 179940 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10280042ns 179947 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10280213ns 179950 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10280667ns 179958 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10280838ns 179961 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10281122ns 179966 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10281406ns 179971 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10281690ns 179976 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10282145ns 179984 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10282315ns 179987 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10282599ns 179992 1a110850 fd5ff06f jal x0, -44 +10282884ns 179997 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10283168ns 180002 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10283566ns 180009 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10283736ns 180012 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10284191ns 180020 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10284361ns 180023 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10284645ns 180028 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10284930ns 180033 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10285214ns 180038 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10285668ns 180046 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10285839ns 180049 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10286123ns 180054 1a110850 fd5ff06f jal x0, -44 +10286407ns 180059 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10286691ns 180064 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10287089ns 180071 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10287260ns 180074 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10287714ns 180082 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10287885ns 180085 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10288169ns 180090 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10288453ns 180095 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10288737ns 180100 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10289192ns 180108 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10289362ns 180111 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10289647ns 180116 1a110850 fd5ff06f jal x0, -44 +10289931ns 180121 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10290215ns 180126 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10290613ns 180133 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10290783ns 180136 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10291238ns 180144 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10291408ns 180147 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10291693ns 180152 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10291977ns 180157 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10292261ns 180162 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10292716ns 180170 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10292886ns 180173 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10293170ns 180178 1a110850 fd5ff06f jal x0, -44 +10293454ns 180183 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10293739ns 180188 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10294136ns 180195 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10294307ns 180198 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10294762ns 180206 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10294932ns 180209 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10295216ns 180214 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10295500ns 180219 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10295784ns 180224 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10296239ns 180232 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10296410ns 180235 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10296694ns 180240 1a110850 fd5ff06f jal x0, -44 +10296978ns 180245 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10297262ns 180250 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10297660ns 180257 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10297830ns 180260 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10298285ns 180268 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10298456ns 180271 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10298740ns 180276 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10299024ns 180281 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10299308ns 180286 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10299763ns 180294 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10299933ns 180297 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10300217ns 180302 1a110850 fd5ff06f jal x0, -44 +10300502ns 180307 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10300786ns 180312 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10301184ns 180319 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10301354ns 180322 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10301809ns 180330 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10301979ns 180333 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10302263ns 180338 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10302547ns 180343 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10302832ns 180348 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10303286ns 180356 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10303457ns 180359 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10303741ns 180364 1a110850 fd5ff06f jal x0, -44 +10304025ns 180369 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10304309ns 180374 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10304707ns 180381 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10304878ns 180384 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10305332ns 180392 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10305503ns 180395 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10305787ns 180400 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10306071ns 180405 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10306355ns 180410 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10306810ns 180418 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10306980ns 180421 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10307265ns 180426 1a110850 fd5ff06f jal x0, -44 +10307549ns 180431 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10307833ns 180436 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10308231ns 180443 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10308401ns 180446 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10308856ns 180454 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10309026ns 180457 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10309311ns 180462 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10309595ns 180467 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10309879ns 180472 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10310333ns 180480 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10310504ns 180483 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10310788ns 180488 1a110850 fd5ff06f jal x0, -44 +10311072ns 180493 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10311356ns 180498 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10311754ns 180505 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10311925ns 180508 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10312379ns 180516 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10312550ns 180519 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10312834ns 180524 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10313118ns 180529 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10313402ns 180534 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10313857ns 180542 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10314028ns 180545 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10314312ns 180550 1a110850 fd5ff06f jal x0, -44 +10314596ns 180555 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10314880ns 180560 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10315278ns 180567 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10315448ns 180570 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10315903ns 180578 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10316074ns 180581 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10316358ns 180586 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10316642ns 180591 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10316926ns 180596 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10317381ns 180604 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10317551ns 180607 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10317835ns 180612 1a110850 fd5ff06f jal x0, -44 +10318119ns 180617 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10318404ns 180622 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10318801ns 180629 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10318972ns 180632 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10319427ns 180640 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10319597ns 180643 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10319881ns 180648 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10320165ns 180653 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10320450ns 180658 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10320904ns 180666 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10321075ns 180669 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10321359ns 180674 1a110850 fd5ff06f jal x0, -44 +10321643ns 180679 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10321927ns 180684 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10322325ns 180691 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10322496ns 180694 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10322950ns 180702 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10323121ns 180705 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10323405ns 180710 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10323689ns 180715 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10323973ns 180720 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10324428ns 180728 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10324598ns 180731 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10324882ns 180736 1a110850 fd5ff06f jal x0, -44 +10325167ns 180741 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10325451ns 180746 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10325849ns 180753 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10326019ns 180756 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10326474ns 180764 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10326644ns 180767 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10326928ns 180772 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10327213ns 180777 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10327497ns 180782 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10327951ns 180790 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10328122ns 180793 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10328406ns 180798 1a110850 fd5ff06f jal x0, -44 +10328690ns 180803 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10328974ns 180808 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10329372ns 180815 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10329543ns 180818 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10329997ns 180826 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10330168ns 180829 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10330452ns 180834 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10330736ns 180839 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10331020ns 180844 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10331475ns 180852 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10331645ns 180855 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10331930ns 180860 1a110850 fd5ff06f jal x0, -44 +10332214ns 180865 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10332498ns 180870 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10332896ns 180877 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10333066ns 180880 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10333521ns 180888 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10333691ns 180891 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10333976ns 180896 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10334260ns 180901 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10334544ns 180906 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10334999ns 180914 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10335169ns 180917 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10335453ns 180922 1a110850 fd5ff06f jal x0, -44 +10335737ns 180927 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10336022ns 180932 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10336419ns 180939 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10336590ns 180942 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10337045ns 180950 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10337215ns 180953 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10337499ns 180958 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10337783ns 180963 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10338067ns 180968 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10338522ns 180976 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10338693ns 180979 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10338977ns 180984 1a110850 fd5ff06f jal x0, -44 +10339261ns 180989 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10339545ns 180994 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10339943ns 181001 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10340113ns 181004 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10340568ns 181012 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10340739ns 181015 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10341023ns 181020 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10341307ns 181025 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10341591ns 181030 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10342046ns 181038 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10342216ns 181041 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10342500ns 181046 1a110850 fd5ff06f jal x0, -44 +10342785ns 181051 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10343069ns 181056 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10343467ns 181063 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10343637ns 181066 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10344092ns 181074 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10344262ns 181077 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10344546ns 181082 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10344831ns 181087 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10345115ns 181092 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10345569ns 181100 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10345740ns 181103 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10346024ns 181108 1a110850 fd5ff06f jal x0, -44 +10346308ns 181113 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10346592ns 181118 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10346990ns 181125 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10347161ns 181128 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10347615ns 181136 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10347786ns 181139 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10348070ns 181144 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10348354ns 181149 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10348638ns 181154 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10349093ns 181162 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10349263ns 181165 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10349548ns 181170 1a110850 fd5ff06f jal x0, -44 +10349832ns 181175 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10350116ns 181180 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10350514ns 181187 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10350684ns 181190 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10351139ns 181198 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10351309ns 181201 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10351594ns 181206 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10351878ns 181211 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10352162ns 181216 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10352616ns 181224 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10352787ns 181227 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10353071ns 181232 1a110850 fd5ff06f jal x0, -44 +10353355ns 181237 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10353639ns 181242 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10354037ns 181249 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10354208ns 181252 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10354662ns 181260 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10354833ns 181263 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10355117ns 181268 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10355401ns 181273 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10355685ns 181278 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10356140ns 181286 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10356311ns 181289 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10356595ns 181294 1a110850 fd5ff06f jal x0, -44 +10356879ns 181299 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10357163ns 181304 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10357561ns 181311 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10357731ns 181314 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10358186ns 181322 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10358357ns 181325 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10358641ns 181330 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10358925ns 181335 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10359209ns 181340 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10359664ns 181348 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10359834ns 181351 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10360118ns 181356 1a110850 fd5ff06f jal x0, -44 +10360402ns 181361 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10360687ns 181366 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10361084ns 181373 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10361255ns 181376 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10361710ns 181384 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10361880ns 181387 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10362164ns 181392 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10362448ns 181397 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10362733ns 181402 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10363187ns 181410 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10363358ns 181413 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10363642ns 181418 1a110850 fd5ff06f jal x0, -44 +10363926ns 181423 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10364210ns 181428 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10364608ns 181435 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10364779ns 181438 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10365233ns 181446 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10365404ns 181449 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10365688ns 181454 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10365972ns 181459 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10366256ns 181464 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10366711ns 181472 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10366881ns 181475 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10367165ns 181480 1a110850 fd5ff06f jal x0, -44 +10367450ns 181485 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10367734ns 181490 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10368132ns 181497 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10368302ns 181500 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10368757ns 181508 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10368927ns 181511 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10369211ns 181516 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10369496ns 181521 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10369780ns 181526 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10370234ns 181534 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10370405ns 181537 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10370689ns 181542 1a110850 fd5ff06f jal x0, -44 +10370973ns 181547 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10371257ns 181552 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10371655ns 181559 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10371826ns 181562 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10372280ns 181570 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10372451ns 181573 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10372735ns 181578 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10373019ns 181583 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10373303ns 181588 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10373758ns 181596 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10373928ns 181599 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10374213ns 181604 1a110850 fd5ff06f jal x0, -44 +10374497ns 181609 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10374781ns 181614 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10375179ns 181621 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10375349ns 181624 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10375804ns 181632 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10375974ns 181635 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10376259ns 181640 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10376543ns 181645 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10376827ns 181650 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10377282ns 181658 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10377452ns 181661 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10377736ns 181666 1a110850 fd5ff06f jal x0, -44 +10378020ns 181671 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10378305ns 181676 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10378702ns 181683 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10378873ns 181686 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10379328ns 181694 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10379498ns 181697 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10379782ns 181702 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10380066ns 181707 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10380351ns 181712 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10380805ns 181720 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10380976ns 181723 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10381260ns 181728 1a110850 fd5ff06f jal x0, -44 +10381544ns 181733 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10381828ns 181738 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10382226ns 181745 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10382396ns 181748 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10382851ns 181756 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10383022ns 181759 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10383306ns 181764 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10383590ns 181769 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10383874ns 181774 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10384329ns 181782 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10384499ns 181785 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10384783ns 181790 1a110850 fd5ff06f jal x0, -44 +10385068ns 181795 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10385352ns 181800 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10385750ns 181807 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10385920ns 181810 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10386375ns 181818 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10386545ns 181821 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10386829ns 181826 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10387114ns 181831 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10387398ns 181836 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10387852ns 181844 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10388023ns 181847 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10388307ns 181852 1a110850 fd5ff06f jal x0, -44 +10388591ns 181857 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10388875ns 181862 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10389273ns 181869 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10389444ns 181872 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10389898ns 181880 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10390069ns 181883 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10390353ns 181888 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10390637ns 181893 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10390921ns 181898 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10391376ns 181906 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10391546ns 181909 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10391831ns 181914 1a110850 fd5ff06f jal x0, -44 +10392115ns 181919 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10392399ns 181924 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10392797ns 181931 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10392967ns 181934 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10393422ns 181942 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10393592ns 181945 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10393877ns 181950 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10394161ns 181955 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10394445ns 181960 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10394899ns 181968 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10395070ns 181971 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10395354ns 181976 1a110850 fd5ff06f jal x0, -44 +10395638ns 181981 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10395922ns 181986 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10396320ns 181993 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10396491ns 181996 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10396945ns 182004 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10397116ns 182007 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10397400ns 182012 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10397684ns 182017 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10397968ns 182022 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10398423ns 182030 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10398594ns 182033 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10398878ns 182038 1a110850 fd5ff06f jal x0, -44 +10399162ns 182043 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10399446ns 182048 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10399844ns 182055 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10400014ns 182058 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10400469ns 182066 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10400640ns 182069 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10400924ns 182074 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10401208ns 182079 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10401492ns 182084 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10401947ns 182092 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10402117ns 182095 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10402401ns 182100 1a110850 fd5ff06f jal x0, -44 +10402685ns 182105 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10402970ns 182110 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10403367ns 182117 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10403538ns 182120 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10403993ns 182128 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10404163ns 182131 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10404447ns 182136 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10404731ns 182141 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10405016ns 182146 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10405470ns 182154 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10405641ns 182157 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10405925ns 182162 1a110850 fd5ff06f jal x0, -44 +10406209ns 182167 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10406493ns 182172 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10406891ns 182179 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10407062ns 182182 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10407516ns 182190 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10407687ns 182193 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10407971ns 182198 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10408255ns 182203 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10408539ns 182208 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10408994ns 182216 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10409164ns 182219 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10409448ns 182224 1a110850 fd5ff06f jal x0, -44 +10409733ns 182229 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10410017ns 182234 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10410415ns 182241 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10410585ns 182244 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10411040ns 182252 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10411210ns 182255 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10411494ns 182260 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10411779ns 182265 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10412063ns 182270 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10412517ns 182278 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10412688ns 182281 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10412972ns 182286 1a110850 fd5ff06f jal x0, -44 +10413256ns 182291 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10413540ns 182296 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10413938ns 182303 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10414109ns 182306 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10414563ns 182314 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10414734ns 182317 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10415018ns 182322 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10415302ns 182327 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10415586ns 182332 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10416041ns 182340 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10416211ns 182343 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10416496ns 182348 1a110850 fd5ff06f jal x0, -44 +10416780ns 182353 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10417064ns 182358 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10417462ns 182365 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10417632ns 182368 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10418087ns 182376 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10418257ns 182379 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10418542ns 182384 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10418826ns 182389 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10419110ns 182394 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10419565ns 182402 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10419735ns 182405 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10420019ns 182410 1a110850 fd5ff06f jal x0, -44 +10420303ns 182415 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10420588ns 182420 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10420985ns 182427 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10421156ns 182430 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10421611ns 182438 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10421781ns 182441 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10422065ns 182446 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10422349ns 182451 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10422634ns 182456 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10423088ns 182464 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10423259ns 182467 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10423543ns 182472 1a110850 fd5ff06f jal x0, -44 +10423827ns 182477 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10424111ns 182482 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10424509ns 182489 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10424679ns 182492 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10425134ns 182500 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10425305ns 182503 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10425589ns 182508 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10425873ns 182513 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10426157ns 182518 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10426612ns 182526 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10426782ns 182529 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10427066ns 182534 1a110850 fd5ff06f jal x0, -44 +10427351ns 182539 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10427635ns 182544 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10428033ns 182551 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10428203ns 182554 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10428658ns 182562 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10428828ns 182565 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10429112ns 182570 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10429397ns 182575 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10429681ns 182580 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10430135ns 182588 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10430306ns 182591 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10430590ns 182596 1a110850 fd5ff06f jal x0, -44 +10430874ns 182601 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10431158ns 182606 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10431556ns 182613 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10431727ns 182616 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10432181ns 182624 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10432352ns 182627 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10432636ns 182632 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10432920ns 182637 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10433204ns 182642 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10433659ns 182650 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10433829ns 182653 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10434114ns 182658 1a110850 fd5ff06f jal x0, -44 +10434398ns 182663 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10434682ns 182668 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10435080ns 182675 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10435250ns 182678 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10435705ns 182686 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10435875ns 182689 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10436160ns 182694 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10436444ns 182699 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10436728ns 182704 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10437183ns 182712 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10437353ns 182715 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10437637ns 182720 1a110850 fd5ff06f jal x0, -44 +10437921ns 182725 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10438205ns 182730 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10438603ns 182737 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10438774ns 182740 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10439228ns 182748 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10439399ns 182751 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10439683ns 182756 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10439967ns 182761 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10440251ns 182766 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10440706ns 182774 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10440877ns 182777 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10441161ns 182782 1a110850 fd5ff06f jal x0, -44 +10441445ns 182787 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10441729ns 182792 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10442127ns 182799 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10442297ns 182802 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10442752ns 182810 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10442923ns 182813 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10443207ns 182818 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10443491ns 182823 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10443775ns 182828 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10444230ns 182836 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10444400ns 182839 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10444684ns 182844 1a110850 fd5ff06f jal x0, -44 +10444968ns 182849 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10445253ns 182854 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10445650ns 182861 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10445821ns 182864 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10446276ns 182872 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10446446ns 182875 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10446730ns 182880 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10447014ns 182885 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10447299ns 182890 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10447753ns 182898 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10447924ns 182901 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10448208ns 182906 1a110850 fd5ff06f jal x0, -44 +10448492ns 182911 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10448776ns 182916 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10449174ns 182923 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10449345ns 182926 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10449799ns 182934 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10449970ns 182937 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10450254ns 182942 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10450538ns 182947 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10450822ns 182952 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10451277ns 182960 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10451447ns 182963 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10451731ns 182968 1a110850 fd5ff06f jal x0, -44 +10452016ns 182973 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10452300ns 182978 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10452698ns 182985 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10452868ns 182988 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10453323ns 182996 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10453493ns 182999 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10453777ns 183004 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10454062ns 183009 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10454346ns 183014 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10454800ns 183022 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10454971ns 183025 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10455255ns 183030 1a110850 fd5ff06f jal x0, -44 +10455539ns 183035 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10455823ns 183040 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10456221ns 183047 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10456392ns 183050 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10456846ns 183058 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10457017ns 183061 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10457301ns 183066 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10457585ns 183071 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10457869ns 183076 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10458324ns 183084 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10458495ns 183087 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10458779ns 183092 1a110850 fd5ff06f jal x0, -44 +10459063ns 183097 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10459347ns 183102 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10459745ns 183109 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10459915ns 183112 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10460370ns 183120 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10460540ns 183123 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10460825ns 183128 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10461109ns 183133 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10461393ns 183138 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10461848ns 183146 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10462018ns 183149 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10462302ns 183154 1a110850 fd5ff06f jal x0, -44 +10462586ns 183159 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10462871ns 183164 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10463268ns 183171 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10463439ns 183174 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10463894ns 183182 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10464064ns 183185 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10464348ns 183190 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10464632ns 183195 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10464917ns 183200 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10465371ns 183208 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10465542ns 183211 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10465826ns 183216 1a110850 fd5ff06f jal x0, -44 +10466110ns 183221 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10466394ns 183226 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10466792ns 183233 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10466962ns 183236 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10467417ns 183244 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10467588ns 183247 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10467872ns 183252 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10468156ns 183257 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10468440ns 183262 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10468895ns 183270 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10469065ns 183273 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10469349ns 183278 1a110850 fd5ff06f jal x0, -44 +10469634ns 183283 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10469918ns 183288 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10470316ns 183295 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10470486ns 183298 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10470941ns 183306 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10471111ns 183309 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10471395ns 183314 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10471680ns 183319 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10471964ns 183324 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10472418ns 183332 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10472589ns 183335 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10472873ns 183340 1a110850 fd5ff06f jal x0, -44 +10473157ns 183345 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10473441ns 183350 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10473839ns 183357 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10474010ns 183360 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10474464ns 183368 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10474635ns 183371 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10474919ns 183376 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10475203ns 183381 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10475487ns 183386 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10475942ns 183394 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10476112ns 183397 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10476397ns 183402 1a110850 fd5ff06f jal x0, -44 +10476681ns 183407 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10476965ns 183412 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10477363ns 183419 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10477533ns 183422 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10477988ns 183430 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10478158ns 183433 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10478443ns 183438 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10478727ns 183443 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10479011ns 183448 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10479466ns 183456 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10479636ns 183459 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10479920ns 183464 1a110850 fd5ff06f jal x0, -44 +10480204ns 183469 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10480488ns 183474 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10480886ns 183481 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10481057ns 183484 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10481511ns 183492 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10481682ns 183495 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10481966ns 183500 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10482250ns 183505 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10482534ns 183510 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10482989ns 183518 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10483160ns 183521 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10483444ns 183526 1a110850 fd5ff06f jal x0, -44 +10483728ns 183531 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10484012ns 183536 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10484410ns 183543 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10484580ns 183546 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10485035ns 183554 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10485206ns 183557 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10485490ns 183562 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10485774ns 183567 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10486058ns 183572 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10486513ns 183580 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10486683ns 183583 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10486967ns 183588 1a110850 fd5ff06f jal x0, -44 +10487251ns 183593 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10487536ns 183598 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10487933ns 183605 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10488104ns 183608 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10488559ns 183616 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10488729ns 183619 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10489013ns 183624 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10489297ns 183629 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10489582ns 183634 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10490036ns 183642 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10490207ns 183645 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10490491ns 183650 1a110850 fd5ff06f jal x0, -44 +10490775ns 183655 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10491059ns 183660 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10491457ns 183667 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10491628ns 183670 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10492082ns 183678 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10492253ns 183681 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10492537ns 183686 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10492821ns 183691 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10493105ns 183696 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10493560ns 183704 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10493730ns 183707 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10494015ns 183712 1a110850 fd5ff06f jal x0, -44 +10494299ns 183717 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10494583ns 183722 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10494981ns 183729 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10495151ns 183732 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10495606ns 183740 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10495776ns 183743 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10496060ns 183748 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10496345ns 183753 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10496629ns 183758 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10497083ns 183766 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10497254ns 183769 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10497538ns 183774 1a110850 fd5ff06f jal x0, -44 +10497822ns 183779 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10498106ns 183784 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10498504ns 183791 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10498675ns 183794 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10499129ns 183802 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10499300ns 183805 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10499584ns 183810 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10499868ns 183815 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10500152ns 183820 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10500607ns 183828 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10500778ns 183831 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10501062ns 183836 1a110850 fd5ff06f jal x0, -44 +10501346ns 183841 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10501630ns 183846 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10502028ns 183853 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10502198ns 183856 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10502653ns 183864 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10502823ns 183867 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10503108ns 183872 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10503392ns 183877 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10503676ns 183882 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10504131ns 183890 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10504301ns 183893 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10504585ns 183898 1a110850 fd5ff06f jal x0, -44 +10504869ns 183903 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10505154ns 183908 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10505551ns 183915 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10505722ns 183918 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10506177ns 183926 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10506347ns 183929 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10506631ns 183934 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10506915ns 183939 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10507200ns 183944 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10507654ns 183952 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10507825ns 183955 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10508109ns 183960 1a110850 fd5ff06f jal x0, -44 +10508393ns 183965 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10508677ns 183970 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10509075ns 183977 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10509245ns 183980 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10509700ns 183988 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10509871ns 183991 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10510155ns 183996 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10510439ns 184001 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10510723ns 184006 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10511178ns 184014 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10511348ns 184017 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10511632ns 184022 1a110850 fd5ff06f jal x0, -44 +10511917ns 184027 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10512201ns 184032 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10512599ns 184039 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10512769ns 184042 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10513224ns 184050 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10513394ns 184053 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10513678ns 184058 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10513963ns 184063 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10514247ns 184068 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10514701ns 184076 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10514872ns 184079 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10515156ns 184084 1a110850 fd5ff06f jal x0, -44 +10515440ns 184089 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10515724ns 184094 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10516122ns 184101 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10516293ns 184104 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10516747ns 184112 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10516918ns 184115 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10517202ns 184120 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10517486ns 184125 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10517770ns 184130 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10518225ns 184138 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10518395ns 184141 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10518680ns 184146 1a110850 fd5ff06f jal x0, -44 +10518964ns 184151 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10519248ns 184156 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10519646ns 184163 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10519816ns 184166 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10520271ns 184174 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10520441ns 184177 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10520726ns 184182 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10521010ns 184187 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10521294ns 184192 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10521749ns 184200 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10521919ns 184203 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10522203ns 184208 1a110850 fd5ff06f jal x0, -44 +10522487ns 184213 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10522771ns 184218 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10523169ns 184225 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10523340ns 184228 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10523794ns 184236 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10523965ns 184239 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10524249ns 184244 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10524533ns 184249 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10524817ns 184254 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10525272ns 184262 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10525443ns 184265 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10525727ns 184270 1a110850 fd5ff06f jal x0, -44 +10526011ns 184275 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10526295ns 184280 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10526693ns 184287 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10526863ns 184290 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10527318ns 184298 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10527489ns 184301 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10527773ns 184306 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10528057ns 184311 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10528341ns 184316 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10528796ns 184324 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10528966ns 184327 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10529250ns 184332 1a110850 fd5ff06f jal x0, -44 +10529535ns 184337 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10529819ns 184342 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10530216ns 184349 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10530387ns 184352 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10530842ns 184360 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10531012ns 184363 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10531296ns 184368 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10531580ns 184373 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10531865ns 184378 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10532319ns 184386 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10532490ns 184389 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10532774ns 184394 1a110850 fd5ff06f jal x0, -44 +10533058ns 184399 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10533342ns 184404 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10533740ns 184411 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10533911ns 184414 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10534365ns 184422 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10534536ns 184425 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10534820ns 184430 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10535104ns 184435 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10535388ns 184440 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10535843ns 184448 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10536013ns 184451 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10536298ns 184456 1a110850 fd5ff06f jal x0, -44 +10536582ns 184461 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10536866ns 184466 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10537264ns 184473 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10537434ns 184476 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10537889ns 184484 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10538059ns 184487 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10538343ns 184492 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10538628ns 184497 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10538912ns 184502 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10539366ns 184510 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10539537ns 184513 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10539821ns 184518 1a110850 fd5ff06f jal x0, -44 +10540105ns 184523 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10540389ns 184528 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10540787ns 184535 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10540958ns 184538 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10541412ns 184546 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10541583ns 184549 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10541867ns 184554 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10542151ns 184559 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10542435ns 184564 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10542890ns 184572 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10543061ns 184575 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10543345ns 184580 1a110850 fd5ff06f jal x0, -44 +10543629ns 184585 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10543913ns 184590 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10544311ns 184597 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10544481ns 184600 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10544936ns 184608 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10545106ns 184611 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10545391ns 184616 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10545675ns 184621 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10545959ns 184626 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10546414ns 184634 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10546584ns 184637 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10546868ns 184642 1a110850 fd5ff06f jal x0, -44 +10547152ns 184647 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10547437ns 184652 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10547834ns 184659 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10548005ns 184662 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10548460ns 184670 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10548630ns 184673 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10548914ns 184678 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10549198ns 184683 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10549483ns 184688 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10549937ns 184696 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10550108ns 184699 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10550392ns 184704 1a110850 fd5ff06f jal x0, -44 +10550676ns 184709 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10550960ns 184714 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10551358ns 184721 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10551528ns 184724 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10551983ns 184732 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10552154ns 184735 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10552438ns 184740 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10552722ns 184745 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10553006ns 184750 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10553461ns 184758 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10553631ns 184761 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10553915ns 184766 1a110850 fd5ff06f jal x0, -44 +10554200ns 184771 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10554484ns 184776 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10554882ns 184783 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10555052ns 184786 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10555507ns 184794 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10555677ns 184797 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10555961ns 184802 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10556246ns 184807 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10556530ns 184812 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10556984ns 184820 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10557155ns 184823 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10557439ns 184828 1a110850 fd5ff06f jal x0, -44 +10557723ns 184833 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10558007ns 184838 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10558405ns 184845 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10558576ns 184848 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10559030ns 184856 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10559201ns 184859 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10559485ns 184864 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10559769ns 184869 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10560053ns 184874 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10560508ns 184882 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10560678ns 184885 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10560963ns 184890 1a110850 fd5ff06f jal x0, -44 +10561247ns 184895 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10561531ns 184900 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10561929ns 184907 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10562099ns 184910 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10562554ns 184918 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10562724ns 184921 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10563009ns 184926 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10563293ns 184931 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10563577ns 184936 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10564032ns 184944 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10564202ns 184947 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10564486ns 184952 1a110850 fd5ff06f jal x0, -44 +10564770ns 184957 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10565055ns 184962 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10565452ns 184969 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10565623ns 184972 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10566077ns 184980 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10566248ns 184983 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10566532ns 184988 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10566816ns 184993 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10567100ns 184998 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10567555ns 185006 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10567726ns 185009 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10568010ns 185014 1a110850 fd5ff06f jal x0, -44 +10568294ns 185019 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10568578ns 185024 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10568976ns 185031 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10569146ns 185034 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10569601ns 185042 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10569772ns 185045 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10570056ns 185050 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10570340ns 185055 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10570624ns 185060 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10571079ns 185068 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10571249ns 185071 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10571533ns 185076 1a110850 fd5ff06f jal x0, -44 +10571818ns 185081 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10572102ns 185086 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10572499ns 185093 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10572670ns 185096 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10573125ns 185104 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10573295ns 185107 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10573579ns 185112 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10573863ns 185117 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10574148ns 185122 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10574602ns 185130 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10574773ns 185133 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10575057ns 185138 1a110850 fd5ff06f jal x0, -44 +10575341ns 185143 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10575625ns 185148 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10576023ns 185155 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10576194ns 185158 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10576648ns 185166 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10576819ns 185169 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10577103ns 185174 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10577387ns 185179 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10577671ns 185184 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10578126ns 185192 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10578296ns 185195 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10578581ns 185200 1a110850 fd5ff06f jal x0, -44 +10578865ns 185205 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10579149ns 185210 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10579547ns 185217 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10579717ns 185220 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10580172ns 185228 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10580342ns 185231 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10580626ns 185236 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10580911ns 185241 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10581195ns 185246 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10581649ns 185254 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10581820ns 185257 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10582104ns 185262 1a110850 fd5ff06f jal x0, -44 +10582388ns 185267 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10582672ns 185272 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10583070ns 185279 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10583241ns 185282 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10583695ns 185290 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10583866ns 185293 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10584150ns 185298 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10584434ns 185303 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10584718ns 185308 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10585173ns 185316 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10585344ns 185319 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10585628ns 185324 1a110850 fd5ff06f jal x0, -44 +10585912ns 185329 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10586196ns 185334 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10586594ns 185341 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10586764ns 185344 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10587219ns 185352 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10587389ns 185355 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10587674ns 185360 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10587958ns 185365 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10588242ns 185370 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10588697ns 185378 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10588867ns 185381 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10589151ns 185386 1a110850 fd5ff06f jal x0, -44 +10589435ns 185391 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10589720ns 185396 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10590117ns 185403 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10590288ns 185406 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10590743ns 185414 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10590913ns 185417 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10591197ns 185422 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10591481ns 185427 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10591766ns 185432 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10592220ns 185440 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10592391ns 185443 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10592675ns 185448 1a110850 fd5ff06f jal x0, -44 +10592959ns 185453 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10593243ns 185458 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10593641ns 185465 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10593811ns 185468 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10594266ns 185476 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10594437ns 185479 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10594721ns 185484 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10595005ns 185489 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10595289ns 185494 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10595744ns 185502 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10595914ns 185505 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10596198ns 185510 1a110850 fd5ff06f jal x0, -44 +10596483ns 185515 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10596767ns 185520 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10597165ns 185527 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10597335ns 185530 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10597790ns 185538 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10597960ns 185541 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10598244ns 185546 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10598529ns 185551 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10598813ns 185556 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10599267ns 185564 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10599438ns 185567 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10599722ns 185572 1a110850 fd5ff06f jal x0, -44 +10600006ns 185577 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10600290ns 185582 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10600688ns 185589 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10600859ns 185592 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10601313ns 185600 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10601484ns 185603 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10601768ns 185608 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10602052ns 185613 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10602336ns 185618 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10602791ns 185626 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10602961ns 185629 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10603246ns 185634 1a110850 fd5ff06f jal x0, -44 +10603530ns 185639 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10603814ns 185644 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10604212ns 185651 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10604382ns 185654 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10604837ns 185662 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10605007ns 185665 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10605292ns 185670 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10605576ns 185675 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10605860ns 185680 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10606315ns 185688 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10606485ns 185691 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10606769ns 185696 1a110850 fd5ff06f jal x0, -44 +10607053ns 185701 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10607338ns 185706 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10607735ns 185713 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10607906ns 185716 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10608360ns 185724 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10608531ns 185727 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10608815ns 185732 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10609099ns 185737 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10609383ns 185742 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10609838ns 185750 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10610009ns 185753 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10610293ns 185758 1a110850 fd5ff06f jal x0, -44 +10610577ns 185763 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10610861ns 185768 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10611259ns 185775 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10611429ns 185778 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10611884ns 185786 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10612055ns 185789 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10612339ns 185794 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10612623ns 185799 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10612907ns 185804 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10613362ns 185812 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10613532ns 185815 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10613816ns 185820 1a110850 fd5ff06f jal x0, -44 +10614101ns 185825 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10614385ns 185830 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10614783ns 185837 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10614953ns 185840 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10615408ns 185848 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10615578ns 185851 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10615862ns 185856 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10616146ns 185861 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10616431ns 185866 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10616885ns 185874 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10617056ns 185877 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10617340ns 185882 1a110850 fd5ff06f jal x0, -44 +10617624ns 185887 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10617908ns 185892 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10618306ns 185899 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10618477ns 185902 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10618931ns 185910 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10619102ns 185913 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10619386ns 185918 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10619670ns 185923 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10619954ns 185928 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10620409ns 185936 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10620579ns 185939 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10620864ns 185944 1a110850 fd5ff06f jal x0, -44 +10621148ns 185949 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10621432ns 185954 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10621830ns 185961 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10622000ns 185964 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10622455ns 185972 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10622625ns 185975 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10622909ns 185980 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10623194ns 185985 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10623478ns 185990 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10623932ns 185998 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10624103ns 186001 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10624387ns 186006 1a110850 fd5ff06f jal x0, -44 +10624671ns 186011 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10624955ns 186016 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10625353ns 186023 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10625524ns 186026 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10625978ns 186034 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10626149ns 186037 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10626433ns 186042 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10626717ns 186047 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10627001ns 186052 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10627456ns 186060 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10627627ns 186063 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10627911ns 186068 1a110850 fd5ff06f jal x0, -44 +10628195ns 186073 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10628479ns 186078 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10628877ns 186085 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10629047ns 186088 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10629502ns 186096 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10629672ns 186099 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10629957ns 186104 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10630241ns 186109 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10630525ns 186114 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10630980ns 186122 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10631150ns 186125 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10631434ns 186130 1a110850 fd5ff06f jal x0, -44 +10631718ns 186135 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10632003ns 186140 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10632400ns 186147 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10632571ns 186150 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10633026ns 186158 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10633196ns 186161 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10633480ns 186166 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10633764ns 186171 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10634049ns 186176 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10634503ns 186184 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10634674ns 186187 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10634958ns 186192 1a110850 fd5ff06f jal x0, -44 +10635242ns 186197 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10635526ns 186202 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10635924ns 186209 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10636095ns 186212 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10636549ns 186220 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10636720ns 186223 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10637004ns 186228 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10637288ns 186233 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10637572ns 186238 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10638027ns 186246 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10638197ns 186249 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10638481ns 186254 1a110850 fd5ff06f jal x0, -44 +10638766ns 186259 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10639050ns 186264 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10639448ns 186271 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10639618ns 186274 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10640073ns 186282 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10640243ns 186285 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10640527ns 186290 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10640812ns 186295 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10641096ns 186300 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10641550ns 186308 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10641721ns 186311 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10642005ns 186316 1a110850 fd5ff06f jal x0, -44 +10642289ns 186321 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10642573ns 186326 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10642971ns 186333 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10643142ns 186336 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10643596ns 186344 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10643767ns 186347 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10644051ns 186352 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10644335ns 186357 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10644619ns 186362 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10645074ns 186370 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10645244ns 186373 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10645529ns 186378 1a110850 fd5ff06f jal x0, -44 +10645813ns 186383 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10646097ns 186388 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10646495ns 186395 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10646665ns 186398 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10647120ns 186406 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10647290ns 186409 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10647575ns 186414 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10647859ns 186419 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10648143ns 186424 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10648598ns 186432 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10648768ns 186435 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10649052ns 186440 1a110850 fd5ff06f jal x0, -44 +10649336ns 186445 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10649621ns 186450 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10650018ns 186457 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10650189ns 186460 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10650643ns 186468 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10650814ns 186471 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10651098ns 186476 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10651382ns 186481 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10651666ns 186486 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10652121ns 186494 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10652292ns 186497 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10652576ns 186502 1a110850 fd5ff06f jal x0, -44 +10652860ns 186507 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10653144ns 186512 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10653542ns 186519 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10653712ns 186522 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10654167ns 186530 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10654338ns 186533 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10654622ns 186538 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10654906ns 186543 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10655190ns 186548 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10655645ns 186556 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10655815ns 186559 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10656099ns 186564 1a110850 fd5ff06f jal x0, -44 +10656384ns 186569 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10656668ns 186574 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10657066ns 186581 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10657236ns 186584 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10657691ns 186592 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10657861ns 186595 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10658145ns 186600 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10658429ns 186605 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10658714ns 186610 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10659168ns 186618 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10659339ns 186621 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10659623ns 186626 1a110850 fd5ff06f jal x0, -44 +10659907ns 186631 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10660191ns 186636 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10660589ns 186643 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10660760ns 186646 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10661214ns 186654 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10661385ns 186657 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10661669ns 186662 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10661953ns 186667 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10662237ns 186672 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10662692ns 186680 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10662862ns 186683 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10663147ns 186688 1a110850 fd5ff06f jal x0, -44 +10663431ns 186693 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10663715ns 186698 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10664113ns 186705 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10664283ns 186708 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10664738ns 186716 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10664908ns 186719 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10665192ns 186724 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10665477ns 186729 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10665761ns 186734 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10666215ns 186742 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10666386ns 186745 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10666670ns 186750 1a110850 fd5ff06f jal x0, -44 +10666954ns 186755 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10667238ns 186760 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10667636ns 186767 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10667807ns 186770 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10668261ns 186778 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10668432ns 186781 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10668716ns 186786 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10669000ns 186791 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10669284ns 186796 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10669739ns 186804 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10669910ns 186807 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10670194ns 186812 1a110850 fd5ff06f jal x0, -44 +10670478ns 186817 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10670762ns 186822 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10671160ns 186829 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10671330ns 186832 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10671785ns 186840 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10671955ns 186843 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10672240ns 186848 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10672524ns 186853 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10672808ns 186858 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10673263ns 186866 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10673433ns 186869 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10673717ns 186874 1a110850 fd5ff06f jal x0, -44 +10674001ns 186879 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10674286ns 186884 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10674683ns 186891 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10674854ns 186894 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10675309ns 186902 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10675479ns 186905 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10675763ns 186910 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10676047ns 186915 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10676332ns 186920 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10676786ns 186928 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10676957ns 186931 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10677241ns 186936 1a110850 fd5ff06f jal x0, -44 +10677525ns 186941 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10677809ns 186946 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10678207ns 186953 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10678378ns 186956 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10678832ns 186964 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10679003ns 186967 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10679287ns 186972 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10679571ns 186977 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10679855ns 186982 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10680310ns 186990 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10680480ns 186993 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10680764ns 186998 1a110850 fd5ff06f jal x0, -44 +10681049ns 187003 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10681333ns 187008 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10681731ns 187015 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10681901ns 187018 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10682356ns 187026 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10682526ns 187029 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10682810ns 187034 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10683095ns 187039 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10683379ns 187044 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10683833ns 187052 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10684004ns 187055 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10684288ns 187060 1a110850 fd5ff06f jal x0, -44 +10684572ns 187065 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10684856ns 187070 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10685254ns 187077 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10685425ns 187080 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10685879ns 187088 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10686050ns 187091 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10686334ns 187096 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10686618ns 187101 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10686902ns 187106 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10687357ns 187114 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10687527ns 187117 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10687812ns 187122 1a110850 fd5ff06f jal x0, -44 +10688096ns 187127 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10688380ns 187132 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10688778ns 187139 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10688948ns 187142 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10689403ns 187150 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10689573ns 187153 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10689858ns 187158 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10690142ns 187163 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10690426ns 187168 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10690881ns 187176 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10691051ns 187179 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10691335ns 187184 1a110850 fd5ff06f jal x0, -44 +10691619ns 187189 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10691904ns 187194 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10692301ns 187201 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10692472ns 187204 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10692927ns 187212 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10693097ns 187215 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10693381ns 187220 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10693665ns 187225 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10693949ns 187230 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10694404ns 187238 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10694575ns 187241 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10694859ns 187246 1a110850 fd5ff06f jal x0, -44 +10695143ns 187251 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10695427ns 187256 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10695825ns 187263 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10695995ns 187266 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10696450ns 187274 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10696621ns 187277 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10696905ns 187282 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10697189ns 187287 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10697473ns 187292 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10697928ns 187300 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10698098ns 187303 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10698382ns 187308 1a110850 fd5ff06f jal x0, -44 +10698667ns 187313 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10698951ns 187318 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10699349ns 187325 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10699519ns 187328 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10699974ns 187336 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10700144ns 187339 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10700428ns 187344 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10700712ns 187349 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10700997ns 187354 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10701451ns 187362 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10701622ns 187365 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10701906ns 187370 1a110850 fd5ff06f jal x0, -44 +10702190ns 187375 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10702474ns 187380 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10702872ns 187387 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10703043ns 187390 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10703497ns 187398 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10703668ns 187401 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10703952ns 187406 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10704236ns 187411 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10704520ns 187416 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10704975ns 187424 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10705145ns 187427 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10705430ns 187432 1a110850 fd5ff06f jal x0, -44 +10705714ns 187437 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10705998ns 187442 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10706396ns 187449 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10706566ns 187452 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10707021ns 187460 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10707191ns 187463 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10707475ns 187468 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10707760ns 187473 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10708044ns 187478 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10708498ns 187486 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10708669ns 187489 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10708953ns 187494 1a110850 fd5ff06f jal x0, -44 +10709237ns 187499 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10709521ns 187504 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10709919ns 187511 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10710090ns 187514 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10710544ns 187522 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10710715ns 187525 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10710999ns 187530 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10711283ns 187535 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10711567ns 187540 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10712022ns 187548 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10712193ns 187551 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10712477ns 187556 1a110850 fd5ff06f jal x0, -44 +10712761ns 187561 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10713045ns 187566 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10713443ns 187573 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10713613ns 187576 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10714068ns 187584 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10714239ns 187587 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10714523ns 187592 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10714807ns 187597 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10715091ns 187602 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10715546ns 187610 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10715716ns 187613 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10716000ns 187618 1a110850 fd5ff06f jal x0, -44 +10716284ns 187623 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10716569ns 187628 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10716966ns 187635 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10717137ns 187638 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10717592ns 187646 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10717762ns 187649 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10718046ns 187654 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10718330ns 187659 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10718615ns 187664 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10719069ns 187672 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10719240ns 187675 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10719524ns 187680 1a110850 fd5ff06f jal x0, -44 +10719808ns 187685 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10720092ns 187690 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10720490ns 187697 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10720661ns 187700 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10721115ns 187708 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10721286ns 187711 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10721570ns 187716 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10721854ns 187721 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10722138ns 187726 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10722593ns 187734 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10722763ns 187737 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10723047ns 187742 1a110850 fd5ff06f jal x0, -44 +10723332ns 187747 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10723616ns 187752 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10724014ns 187759 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10724184ns 187762 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10724639ns 187770 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10724809ns 187773 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10725093ns 187778 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10725378ns 187783 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10725662ns 187788 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10726116ns 187796 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10726287ns 187799 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10726571ns 187804 1a110850 fd5ff06f jal x0, -44 +10726855ns 187809 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10727139ns 187814 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10727537ns 187821 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10727708ns 187824 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10728162ns 187832 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10728333ns 187835 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10728617ns 187840 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10728901ns 187845 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10729185ns 187850 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10729640ns 187858 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10729810ns 187861 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10730095ns 187866 1a110850 fd5ff06f jal x0, -44 +10730379ns 187871 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10730663ns 187876 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10731061ns 187883 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10731231ns 187886 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10731686ns 187894 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10731856ns 187897 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10732141ns 187902 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10732425ns 187907 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10732709ns 187912 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10733164ns 187920 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10733334ns 187923 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10733618ns 187928 1a110850 fd5ff06f jal x0, -44 +10733902ns 187933 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10734187ns 187938 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10734584ns 187945 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10734755ns 187948 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10735210ns 187956 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10735380ns 187959 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10735664ns 187964 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10735948ns 187969 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10736232ns 187974 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10736687ns 187982 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10736858ns 187985 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10737142ns 187990 1a110850 fd5ff06f jal x0, -44 +10737426ns 187995 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10737710ns 188000 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10738108ns 188007 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10738278ns 188010 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10738733ns 188018 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10738904ns 188021 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10739188ns 188026 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10739472ns 188031 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10739756ns 188036 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10740211ns 188044 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10740381ns 188047 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10740665ns 188052 1a110850 fd5ff06f jal x0, -44 +10740950ns 188057 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10741234ns 188062 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10741632ns 188069 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10741802ns 188072 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10742257ns 188080 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10742427ns 188083 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10742711ns 188088 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10742995ns 188093 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10743280ns 188098 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10743734ns 188106 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10743905ns 188109 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10744189ns 188114 1a110850 fd5ff06f jal x0, -44 +10744473ns 188119 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10744757ns 188124 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10745155ns 188131 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10745326ns 188134 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10745780ns 188142 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10745951ns 188145 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10746235ns 188150 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10746519ns 188155 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10746803ns 188160 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10747258ns 188168 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10747428ns 188171 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10747713ns 188176 1a110850 fd5ff06f jal x0, -44 +10747997ns 188181 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10748281ns 188186 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10748679ns 188193 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10748849ns 188196 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10749304ns 188204 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10749474ns 188207 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10749759ns 188212 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10750043ns 188217 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10750327ns 188222 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10750781ns 188230 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10750952ns 188233 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10751236ns 188238 1a110850 fd5ff06f jal x0, -44 +10751520ns 188243 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10751804ns 188248 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10752202ns 188255 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10752373ns 188258 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10752827ns 188266 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10752998ns 188269 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10753282ns 188274 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10753566ns 188279 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10753850ns 188284 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10754305ns 188292 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10754476ns 188295 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10754760ns 188300 1a110850 fd5ff06f jal x0, -44 +10755044ns 188305 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10755328ns 188310 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10755726ns 188317 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10755896ns 188320 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10756351ns 188328 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10756522ns 188331 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10756806ns 188336 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10757090ns 188341 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10757374ns 188346 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10757829ns 188354 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10757999ns 188357 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10758283ns 188362 1a110850 fd5ff06f jal x0, -44 +10758567ns 188367 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10758852ns 188372 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10759249ns 188379 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10759420ns 188382 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10759875ns 188390 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10760045ns 188393 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10760329ns 188398 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10760613ns 188403 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10760898ns 188408 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10761352ns 188416 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10761523ns 188419 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10761807ns 188424 1a110850 fd5ff06f jal x0, -44 +10762091ns 188429 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10762375ns 188434 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10762773ns 188441 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10762944ns 188444 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10763398ns 188452 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10763569ns 188455 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10763853ns 188460 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10764137ns 188465 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10764421ns 188470 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10764876ns 188478 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10765046ns 188481 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10765330ns 188486 1a110850 fd5ff06f jal x0, -44 +10765615ns 188491 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10765899ns 188496 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10766297ns 188503 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10766467ns 188506 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10766922ns 188514 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10767092ns 188517 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10767376ns 188522 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10767661ns 188527 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10767945ns 188532 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10768399ns 188540 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10768570ns 188543 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10768854ns 188548 1a110850 fd5ff06f jal x0, -44 +10769138ns 188553 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10769422ns 188558 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10769820ns 188565 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10769991ns 188568 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10770445ns 188576 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10770616ns 188579 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10770900ns 188584 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10771184ns 188589 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10771468ns 188594 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10771923ns 188602 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10772093ns 188605 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10772378ns 188610 1a110850 fd5ff06f jal x0, -44 +10772662ns 188615 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10772946ns 188620 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10773344ns 188627 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10773514ns 188630 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10773969ns 188638 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10774139ns 188641 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10774424ns 188646 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10774708ns 188651 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10774992ns 188656 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10775447ns 188664 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10775617ns 188667 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10775901ns 188672 1a110850 fd5ff06f jal x0, -44 +10776185ns 188677 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10776470ns 188682 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10776867ns 188689 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10777038ns 188692 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10777493ns 188700 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10777663ns 188703 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10777947ns 188708 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10778231ns 188713 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10778515ns 188718 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10778970ns 188726 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10779141ns 188729 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10779425ns 188734 1a110850 fd5ff06f jal x0, -44 +10779709ns 188739 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10779993ns 188744 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10780391ns 188751 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10780561ns 188754 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10781016ns 188762 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10781187ns 188765 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10781471ns 188770 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10781755ns 188775 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10782039ns 188780 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10782494ns 188788 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10782664ns 188791 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10782948ns 188796 1a110850 fd5ff06f jal x0, -44 +10783233ns 188801 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10783517ns 188806 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10783915ns 188813 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10784085ns 188816 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10784540ns 188824 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10784710ns 188827 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10784994ns 188832 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10785279ns 188837 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10785563ns 188842 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10786017ns 188850 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10786188ns 188853 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10786472ns 188858 1a110850 fd5ff06f jal x0, -44 +10786756ns 188863 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10787040ns 188868 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10787438ns 188875 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10787609ns 188878 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10788063ns 188886 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10788234ns 188889 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10788518ns 188894 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10788802ns 188899 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10789086ns 188904 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10789541ns 188912 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10789711ns 188915 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10789996ns 188920 1a110850 fd5ff06f jal x0, -44 +10790280ns 188925 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10790564ns 188930 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10790962ns 188937 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10791132ns 188940 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10791587ns 188948 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10791757ns 188951 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10792042ns 188956 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10792326ns 188961 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10792610ns 188966 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10793064ns 188974 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10793235ns 188977 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10793519ns 188982 1a110850 fd5ff06f jal x0, -44 +10793803ns 188987 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10794087ns 188992 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10794485ns 188999 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10794656ns 189002 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10795110ns 189010 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10795281ns 189013 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10795565ns 189018 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10795849ns 189023 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10796133ns 189028 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10796588ns 189036 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10796759ns 189039 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10797043ns 189044 1a110850 fd5ff06f jal x0, -44 +10797327ns 189049 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10797611ns 189054 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10798009ns 189061 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10798179ns 189064 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10798634ns 189072 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10798805ns 189075 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10799089ns 189080 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10799373ns 189085 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10799657ns 189090 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10800112ns 189098 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10800282ns 189101 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10800566ns 189106 1a110850 fd5ff06f jal x0, -44 +10800850ns 189111 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10801135ns 189116 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10801532ns 189123 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10801703ns 189126 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10802158ns 189134 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10802328ns 189137 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10802612ns 189142 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10802896ns 189147 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10803181ns 189152 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10803635ns 189160 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10803806ns 189163 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10804090ns 189168 1a110850 fd5ff06f jal x0, -44 +10804374ns 189173 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10804658ns 189178 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10805056ns 189185 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10805227ns 189188 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10805681ns 189196 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10805852ns 189199 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10806136ns 189204 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10806420ns 189209 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10806704ns 189214 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10807159ns 189222 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10807329ns 189225 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10807613ns 189230 1a110850 fd5ff06f jal x0, -44 +10807898ns 189235 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10808182ns 189240 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10808580ns 189247 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10808750ns 189250 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10809205ns 189258 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10809375ns 189261 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10809659ns 189266 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10809944ns 189271 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10810228ns 189276 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10810682ns 189284 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10810853ns 189287 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10811137ns 189292 1a110850 fd5ff06f jal x0, -44 +10811421ns 189297 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10811705ns 189302 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10812103ns 189309 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10812274ns 189312 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10812728ns 189320 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10812899ns 189323 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10813183ns 189328 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10813467ns 189333 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10813751ns 189338 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10814206ns 189346 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10814376ns 189349 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10814661ns 189354 1a110850 fd5ff06f jal x0, -44 +10814945ns 189359 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10815229ns 189364 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10815627ns 189371 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10815797ns 189374 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10816252ns 189382 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10816422ns 189385 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10816707ns 189390 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10816991ns 189395 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10817275ns 189400 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10817730ns 189408 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10817900ns 189411 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10818184ns 189416 1a110850 fd5ff06f jal x0, -44 +10818468ns 189421 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10818753ns 189426 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10819150ns 189433 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10819321ns 189436 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10819776ns 189444 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10819946ns 189447 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10820230ns 189452 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10820514ns 189457 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10820799ns 189462 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10821253ns 189470 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10821424ns 189473 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10821708ns 189478 1a110850 fd5ff06f jal x0, -44 +10821992ns 189483 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10822276ns 189488 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10822674ns 189495 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10822844ns 189498 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10823299ns 189506 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10823470ns 189509 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10823754ns 189514 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10824038ns 189519 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10824322ns 189524 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10824777ns 189532 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10824947ns 189535 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10825231ns 189540 1a110850 fd5ff06f jal x0, -44 +10825516ns 189545 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10825800ns 189550 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10826198ns 189557 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10826368ns 189560 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10826823ns 189568 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10826993ns 189571 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10827277ns 189576 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10827562ns 189581 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10827846ns 189586 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10828300ns 189594 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10828471ns 189597 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10828755ns 189602 1a110850 fd5ff06f jal x0, -44 +10829039ns 189607 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10829323ns 189612 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10829721ns 189619 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10829892ns 189622 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10830346ns 189630 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10830517ns 189633 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10830801ns 189638 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10831085ns 189643 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10831369ns 189648 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10831824ns 189656 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10831994ns 189659 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10832279ns 189664 1a110850 fd5ff06f jal x0, -44 +10832563ns 189669 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10832847ns 189674 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10833245ns 189681 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10833415ns 189684 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10833870ns 189692 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10834040ns 189695 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10834325ns 189700 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10834609ns 189705 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10834893ns 189710 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10835347ns 189718 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10835518ns 189721 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10835802ns 189726 1a110850 fd5ff06f jal x0, -44 +10836086ns 189731 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10836370ns 189736 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10836768ns 189743 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10836939ns 189746 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10837393ns 189754 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10837564ns 189757 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10837848ns 189762 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10838132ns 189767 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10838416ns 189772 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10838871ns 189780 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10839042ns 189783 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10839326ns 189788 1a110850 fd5ff06f jal x0, -44 +10839610ns 189793 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10839894ns 189798 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10840292ns 189805 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10840462ns 189808 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10840917ns 189816 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10841088ns 189819 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10841372ns 189824 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10841656ns 189829 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10841940ns 189834 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10842395ns 189842 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10842565ns 189845 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10842849ns 189850 1a110850 fd5ff06f jal x0, -44 +10843133ns 189855 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10843418ns 189860 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10843815ns 189867 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10843986ns 189870 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10844441ns 189878 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10844611ns 189881 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10844895ns 189886 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10845179ns 189891 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10845464ns 189896 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10845918ns 189904 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10846089ns 189907 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10846373ns 189912 1a110850 fd5ff06f jal x0, -44 +10846657ns 189917 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10846941ns 189922 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10847339ns 189929 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10847510ns 189932 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10847964ns 189940 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10848135ns 189943 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10848419ns 189948 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10848703ns 189953 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10848987ns 189958 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10849442ns 189966 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10849612ns 189969 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10849896ns 189974 1a110850 fd5ff06f jal x0, -44 +10850181ns 189979 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10850465ns 189984 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10850863ns 189991 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10851033ns 189994 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10851488ns 190002 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10851658ns 190005 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10851942ns 190010 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10852227ns 190015 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10852511ns 190020 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10852965ns 190028 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10853136ns 190031 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10853420ns 190036 1a110850 fd5ff06f jal x0, -44 +10853704ns 190041 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10853988ns 190046 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10854386ns 190053 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10854557ns 190056 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10855011ns 190064 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10855182ns 190067 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10855466ns 190072 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10855750ns 190077 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10856034ns 190082 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10856489ns 190090 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10856659ns 190093 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10856944ns 190098 1a110850 fd5ff06f jal x0, -44 +10857228ns 190103 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10857512ns 190108 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10857910ns 190115 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10858080ns 190118 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10858535ns 190126 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10858705ns 190129 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10858990ns 190134 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10859274ns 190139 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10859558ns 190144 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10860013ns 190152 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10860183ns 190155 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10860467ns 190160 1a110850 fd5ff06f jal x0, -44 +10860751ns 190165 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10861036ns 190170 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10861433ns 190177 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10861604ns 190180 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10862059ns 190188 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10862229ns 190191 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10862513ns 190196 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10862797ns 190201 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10863082ns 190206 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10863536ns 190214 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10863707ns 190217 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10863991ns 190222 1a110850 fd5ff06f jal x0, -44 +10864275ns 190227 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10864559ns 190232 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10864957ns 190239 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10865127ns 190242 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10865582ns 190250 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10865753ns 190253 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10866037ns 190258 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10866321ns 190263 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10866605ns 190268 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10867060ns 190276 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10867230ns 190279 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10867514ns 190284 1a110850 fd5ff06f jal x0, -44 +10867799ns 190289 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10868083ns 190294 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10868481ns 190301 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10868651ns 190304 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10869106ns 190312 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10869276ns 190315 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10869560ns 190320 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10869845ns 190325 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10870129ns 190330 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10870583ns 190338 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10870754ns 190341 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10871038ns 190346 1a110850 fd5ff06f jal x0, -44 +10871322ns 190351 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10871606ns 190356 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10872004ns 190363 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10872175ns 190366 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10872629ns 190374 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10872800ns 190377 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10873084ns 190382 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10873368ns 190387 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10873652ns 190392 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10874107ns 190400 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10874277ns 190403 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10874562ns 190408 1a110850 fd5ff06f jal x0, -44 +10874846ns 190413 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10875130ns 190418 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10875528ns 190425 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10875698ns 190428 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10876153ns 190436 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10876323ns 190439 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10876608ns 190444 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10876892ns 190449 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10877176ns 190454 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10877631ns 190462 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10877801ns 190465 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10878085ns 190470 1a110850 fd5ff06f jal x0, -44 +10878369ns 190475 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10878653ns 190480 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10879051ns 190487 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10879222ns 190490 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10879676ns 190498 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10879847ns 190501 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10880131ns 190506 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10880415ns 190511 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10880699ns 190516 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10881154ns 190524 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10881325ns 190527 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10881609ns 190532 1a110850 fd5ff06f jal x0, -44 +10881893ns 190537 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10882177ns 190542 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10882575ns 190549 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10882745ns 190552 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10883200ns 190560 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10883371ns 190563 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10883655ns 190568 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10883939ns 190573 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10884223ns 190578 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10884678ns 190586 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10884848ns 190589 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10885132ns 190594 1a110850 fd5ff06f jal x0, -44 +10885416ns 190599 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10885701ns 190604 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10886098ns 190611 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10886269ns 190614 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10886724ns 190622 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10886894ns 190625 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10887178ns 190630 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10887462ns 190635 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10887747ns 190640 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10888201ns 190648 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10888372ns 190651 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10888656ns 190656 1a110850 fd5ff06f jal x0, -44 +10888940ns 190661 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10889224ns 190666 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10889622ns 190673 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10889793ns 190676 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10890247ns 190684 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10890418ns 190687 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10890702ns 190692 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10890986ns 190697 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10891270ns 190702 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10891725ns 190710 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10891895ns 190713 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10892179ns 190718 1a110850 fd5ff06f jal x0, -44 +10892464ns 190723 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10892748ns 190728 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10893146ns 190735 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10893316ns 190738 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10893771ns 190746 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10893941ns 190749 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10894225ns 190754 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10894510ns 190759 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10894794ns 190764 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10895248ns 190772 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10895419ns 190775 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10895703ns 190780 1a110850 fd5ff06f jal x0, -44 +10895987ns 190785 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10896271ns 190790 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10896669ns 190797 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10896840ns 190800 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10897294ns 190808 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10897465ns 190811 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10897749ns 190816 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10898033ns 190821 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10898317ns 190826 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10898772ns 190834 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10898943ns 190837 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10899227ns 190842 1a110850 fd5ff06f jal x0, -44 +10899511ns 190847 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10899795ns 190852 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10900193ns 190859 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10900363ns 190862 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10900818ns 190870 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10900988ns 190873 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10901273ns 190878 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10901557ns 190883 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10901841ns 190888 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10902296ns 190896 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10902466ns 190899 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10902750ns 190904 1a110850 fd5ff06f jal x0, -44 +10903034ns 190909 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10903319ns 190914 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10903716ns 190921 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10903887ns 190924 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10904342ns 190932 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10904512ns 190935 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10904796ns 190940 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10905080ns 190945 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10905365ns 190950 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10905819ns 190958 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10905990ns 190961 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10906274ns 190966 1a110850 fd5ff06f jal x0, -44 +10906558ns 190971 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10906842ns 190976 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10907240ns 190983 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10907410ns 190986 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10907865ns 190994 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10908036ns 190997 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10908320ns 191002 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10908604ns 191007 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10908888ns 191012 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10909343ns 191020 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10909513ns 191023 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10909797ns 191028 1a110850 fd5ff06f jal x0, -44 +10910082ns 191033 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10910366ns 191038 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10910764ns 191045 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10910934ns 191048 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10911389ns 191056 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10911559ns 191059 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10911843ns 191064 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10912128ns 191069 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10912412ns 191074 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10912866ns 191082 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10913037ns 191085 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10913321ns 191090 1a110850 fd5ff06f jal x0, -44 +10913605ns 191095 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10913889ns 191100 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10914287ns 191107 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10914458ns 191110 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10914912ns 191118 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10915083ns 191121 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10915367ns 191126 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10915651ns 191131 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10915935ns 191136 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10916390ns 191144 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10916560ns 191147 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10916845ns 191152 1a110850 fd5ff06f jal x0, -44 +10917129ns 191157 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10917413ns 191162 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10917811ns 191169 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10917981ns 191172 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10918436ns 191180 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10918606ns 191183 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10918891ns 191188 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10919175ns 191193 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10919459ns 191198 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10919914ns 191206 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10920084ns 191209 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10920368ns 191214 1a110850 fd5ff06f jal x0, -44 +10920652ns 191219 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10920936ns 191224 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10921334ns 191231 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10921505ns 191234 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10921959ns 191242 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10922130ns 191245 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10922414ns 191250 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10922698ns 191255 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10922982ns 191260 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10923437ns 191268 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10923608ns 191271 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10923892ns 191276 1a110850 fd5ff06f jal x0, -44 +10924176ns 191281 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10924460ns 191286 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10924858ns 191293 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10925028ns 191296 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10925483ns 191304 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10925654ns 191307 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10925938ns 191312 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10926222ns 191317 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10926506ns 191322 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10926961ns 191330 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10927131ns 191333 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10927415ns 191338 1a110850 fd5ff06f jal x0, -44 +10927699ns 191343 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10927984ns 191348 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10928381ns 191355 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10928552ns 191358 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10929007ns 191366 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10929177ns 191369 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10929461ns 191374 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10929745ns 191379 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10930030ns 191384 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10930484ns 191392 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10930655ns 191395 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10930939ns 191400 1a110850 fd5ff06f jal x0, -44 +10931223ns 191405 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10931507ns 191410 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10931905ns 191417 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10932076ns 191420 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10932530ns 191428 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10932701ns 191431 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10932985ns 191436 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10933269ns 191441 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10933553ns 191446 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10934008ns 191454 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10934178ns 191457 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10934463ns 191462 1a110850 fd5ff06f jal x0, -44 +10934747ns 191467 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10935031ns 191472 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10935429ns 191479 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10935599ns 191482 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10936054ns 191490 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10936224ns 191493 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10936508ns 191498 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10936793ns 191503 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10937077ns 191508 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10937531ns 191516 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10937702ns 191519 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10937986ns 191524 1a110850 fd5ff06f jal x0, -44 +10938270ns 191529 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10938554ns 191534 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10938952ns 191541 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10939123ns 191544 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10939577ns 191552 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10939748ns 191555 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10940032ns 191560 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10940316ns 191565 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10940600ns 191570 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10941055ns 191578 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10941226ns 191581 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10941510ns 191586 1a110850 fd5ff06f jal x0, -44 +10941794ns 191591 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10942078ns 191596 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10942476ns 191603 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10942646ns 191606 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10943101ns 191614 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10943271ns 191617 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10943556ns 191622 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10943840ns 191627 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10944124ns 191632 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10944579ns 191640 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10944749ns 191643 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10945033ns 191648 1a110850 fd5ff06f jal x0, -44 +10945317ns 191653 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10945602ns 191658 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10945999ns 191665 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10946170ns 191668 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10946625ns 191676 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10946795ns 191679 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10947079ns 191684 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10947363ns 191689 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10947648ns 191694 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10948102ns 191702 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10948273ns 191705 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10948557ns 191710 1a110850 fd5ff06f jal x0, -44 +10948841ns 191715 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10949125ns 191720 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10949523ns 191727 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10949693ns 191730 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10950148ns 191738 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10950319ns 191741 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10950603ns 191746 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10950887ns 191751 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10951171ns 191756 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10951626ns 191764 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10951796ns 191767 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10952080ns 191772 1a110850 fd5ff06f jal x0, -44 +10952365ns 191777 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10952649ns 191782 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10953047ns 191789 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10953217ns 191792 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10953672ns 191800 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10953842ns 191803 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10954126ns 191808 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10954411ns 191813 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10954695ns 191818 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10955149ns 191826 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10955320ns 191829 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10955604ns 191834 1a110850 fd5ff06f jal x0, -44 +10955888ns 191839 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10956172ns 191844 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10956570ns 191851 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10956741ns 191854 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10957195ns 191862 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10957366ns 191865 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10957650ns 191870 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10957934ns 191875 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10958218ns 191880 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10958673ns 191888 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10958843ns 191891 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10959128ns 191896 1a110850 fd5ff06f jal x0, -44 +10959412ns 191901 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10959696ns 191906 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10960094ns 191913 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10960264ns 191916 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10960719ns 191924 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10960889ns 191927 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10961174ns 191932 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10961458ns 191937 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10961742ns 191942 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10962197ns 191950 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10962367ns 191953 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10962651ns 191958 1a110850 fd5ff06f jal x0, -44 +10962935ns 191963 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10963219ns 191968 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10963617ns 191975 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10963788ns 191978 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10964242ns 191986 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10964413ns 191989 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10964697ns 191994 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10964981ns 191999 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10965265ns 192004 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10965720ns 192012 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10965891ns 192015 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10966175ns 192020 1a110850 fd5ff06f jal x0, -44 +10966459ns 192025 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10966743ns 192030 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10967141ns 192037 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10967311ns 192040 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10967766ns 192048 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10967937ns 192051 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10968221ns 192056 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10968505ns 192061 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10968789ns 192066 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10969244ns 192074 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10969414ns 192077 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10969698ns 192082 1a110850 fd5ff06f jal x0, -44 +10969983ns 192087 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10970267ns 192092 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10970664ns 192099 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10970835ns 192102 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10971290ns 192110 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10971460ns 192113 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10971744ns 192118 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10972028ns 192123 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10972313ns 192128 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10972767ns 192136 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10972938ns 192139 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10973222ns 192144 1a110850 fd5ff06f jal x0, -44 +10973506ns 192149 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10973790ns 192154 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10974188ns 192161 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10974359ns 192164 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10974813ns 192172 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10974984ns 192175 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10975268ns 192180 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10975552ns 192185 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10975836ns 192190 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10976291ns 192198 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10976461ns 192201 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10976746ns 192206 1a110850 fd5ff06f jal x0, -44 +10977030ns 192211 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10977314ns 192216 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10977712ns 192223 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10977882ns 192226 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10978337ns 192234 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10978507ns 192237 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10978791ns 192242 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10979076ns 192247 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10979360ns 192252 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10979814ns 192260 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10979985ns 192263 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10980269ns 192268 1a110850 fd5ff06f jal x0, -44 +10980553ns 192273 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10980837ns 192278 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10981235ns 192285 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10981406ns 192288 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10981860ns 192296 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10982031ns 192299 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10982315ns 192304 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10982599ns 192309 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10982883ns 192314 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10983338ns 192322 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10983509ns 192325 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10983793ns 192330 1a110850 fd5ff06f jal x0, -44 +10984077ns 192335 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10984361ns 192340 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10984759ns 192347 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10984929ns 192350 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10985384ns 192358 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10985554ns 192361 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10985839ns 192366 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10986123ns 192371 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10986407ns 192376 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10986862ns 192384 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10987032ns 192387 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10987316ns 192392 1a110850 fd5ff06f jal x0, -44 +10987600ns 192397 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10987885ns 192402 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10988282ns 192409 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10988453ns 192412 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10988908ns 192420 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10989078ns 192423 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10989362ns 192428 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10989646ns 192433 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10989931ns 192438 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10990385ns 192446 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10990556ns 192449 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10990840ns 192454 1a110850 fd5ff06f jal x0, -44 +10991124ns 192459 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10991408ns 192464 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10991806ns 192471 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10991976ns 192474 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10992431ns 192482 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10992602ns 192485 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10992886ns 192490 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10993170ns 192495 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10993454ns 192500 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10993909ns 192508 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10994079ns 192511 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10994363ns 192516 1a110850 fd5ff06f jal x0, -44 +10994648ns 192521 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10994932ns 192526 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10995330ns 192533 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10995500ns 192536 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10995955ns 192544 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10996125ns 192547 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10996409ns 192552 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10996694ns 192557 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10996978ns 192562 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10997432ns 192570 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +10997603ns 192573 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +10997887ns 192578 1a110850 fd5ff06f jal x0, -44 +10998171ns 192583 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +10998455ns 192588 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +10998853ns 192595 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +10999024ns 192598 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +10999478ns 192606 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +10999649ns 192609 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +10999933ns 192614 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11000217ns 192619 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11000501ns 192624 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11000956ns 192632 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11001126ns 192635 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11001411ns 192640 1a110850 fd5ff06f jal x0, -44 +11001695ns 192645 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11001979ns 192650 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11002377ns 192657 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11002547ns 192660 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11003002ns 192668 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11003172ns 192671 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11003457ns 192676 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11003741ns 192681 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11004025ns 192686 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11004480ns 192694 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11004650ns 192697 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11004934ns 192702 1a110850 fd5ff06f jal x0, -44 +11005218ns 192707 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11005503ns 192712 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11005900ns 192719 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11006071ns 192722 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11006525ns 192730 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11006696ns 192733 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11006980ns 192738 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11007264ns 192743 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11007548ns 192748 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11008003ns 192756 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11008174ns 192759 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11008458ns 192764 1a110850 fd5ff06f jal x0, -44 +11008742ns 192769 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11009026ns 192774 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11009424ns 192781 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11009594ns 192784 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11010049ns 192792 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11010220ns 192795 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11010504ns 192800 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11010788ns 192805 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11011072ns 192810 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11011527ns 192818 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11011697ns 192821 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11011981ns 192826 1a110850 fd5ff06f jal x0, -44 +11012266ns 192831 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11012550ns 192836 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11012947ns 192843 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11013118ns 192846 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11013573ns 192854 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11013743ns 192857 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11014027ns 192862 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11014311ns 192867 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11014596ns 192872 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11015050ns 192880 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11015221ns 192883 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11015505ns 192888 1a110850 fd5ff06f jal x0, -44 +11015789ns 192893 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11016073ns 192898 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11016471ns 192905 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11016642ns 192908 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11017096ns 192916 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11017267ns 192919 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11017551ns 192924 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11017835ns 192929 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11018119ns 192934 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11018574ns 192942 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11018744ns 192945 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11019029ns 192950 1a110850 fd5ff06f jal x0, -44 +11019313ns 192955 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11019597ns 192960 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11019995ns 192967 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11020165ns 192970 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11020620ns 192978 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11020790ns 192981 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11021074ns 192986 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11021359ns 192991 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11021643ns 192996 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11022097ns 193004 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11022268ns 193007 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11022552ns 193012 1a110850 fd5ff06f jal x0, -44 +11022836ns 193017 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11023120ns 193022 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11023518ns 193029 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11023689ns 193032 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11024143ns 193040 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11024314ns 193043 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11024598ns 193048 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11024882ns 193053 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11025166ns 193058 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11025621ns 193066 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11025792ns 193069 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11026076ns 193074 1a110850 fd5ff06f jal x0, -44 +11026360ns 193079 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11026644ns 193084 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11027042ns 193091 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11027212ns 193094 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11027667ns 193102 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11027837ns 193105 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11028122ns 193110 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11028406ns 193115 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11028690ns 193120 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11029145ns 193128 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11029315ns 193131 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11029599ns 193136 1a110850 fd5ff06f jal x0, -44 +11029883ns 193141 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11030168ns 193146 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11030565ns 193153 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11030736ns 193156 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11031191ns 193164 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11031361ns 193167 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11031645ns 193172 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11031929ns 193177 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11032214ns 193182 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11032668ns 193190 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11032839ns 193193 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11033123ns 193198 1a110850 fd5ff06f jal x0, -44 +11033407ns 193203 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11033691ns 193208 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11034089ns 193215 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11034259ns 193218 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11034714ns 193226 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11034885ns 193229 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11035169ns 193234 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11035453ns 193239 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11035737ns 193244 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11036192ns 193252 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11036362ns 193255 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11036646ns 193260 1a110850 fd5ff06f jal x0, -44 +11036931ns 193265 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11037215ns 193270 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11037613ns 193277 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11037783ns 193280 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11038238ns 193288 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11038408ns 193291 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11038692ns 193296 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11038977ns 193301 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11039261ns 193306 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11039715ns 193314 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11039886ns 193317 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11040170ns 193322 1a110850 fd5ff06f jal x0, -44 +11040454ns 193327 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11040738ns 193332 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11041136ns 193339 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11041307ns 193342 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11041761ns 193350 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11041932ns 193353 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11042216ns 193358 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11042500ns 193363 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11042784ns 193368 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11043239ns 193376 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11043409ns 193379 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11043694ns 193384 1a110850 fd5ff06f jal x0, -44 +11043978ns 193389 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11044262ns 193394 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11044660ns 193401 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11044830ns 193404 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11045285ns 193412 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11045455ns 193415 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11045740ns 193420 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11046024ns 193425 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11046308ns 193430 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11046763ns 193438 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11046933ns 193441 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11047217ns 193446 1a110850 fd5ff06f jal x0, -44 +11047501ns 193451 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11047786ns 193456 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11048183ns 193463 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11048354ns 193466 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11048808ns 193474 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11048979ns 193477 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11049263ns 193482 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11049547ns 193487 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11049831ns 193492 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11050286ns 193500 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11050457ns 193503 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11050741ns 193508 1a110850 fd5ff06f jal x0, -44 +11051025ns 193513 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11051309ns 193518 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11051707ns 193525 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11051877ns 193528 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11052332ns 193536 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11052503ns 193539 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11052787ns 193544 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11053071ns 193549 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11053355ns 193554 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11053810ns 193562 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11053980ns 193565 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11054264ns 193570 1a110850 fd5ff06f jal x0, -44 +11054549ns 193575 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11054833ns 193580 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11055231ns 193587 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11055401ns 193590 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11055856ns 193598 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11056026ns 193601 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11056310ns 193606 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11056594ns 193611 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11056879ns 193616 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11057333ns 193624 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11057504ns 193627 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11057788ns 193632 1a110850 fd5ff06f jal x0, -44 +11058072ns 193637 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11058356ns 193642 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11058754ns 193649 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11058925ns 193652 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11059379ns 193660 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11059550ns 193663 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11059834ns 193668 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11060118ns 193673 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11060402ns 193678 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11060857ns 193686 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11061027ns 193689 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11061312ns 193694 1a110850 fd5ff06f jal x0, -44 +11061596ns 193699 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11061880ns 193704 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11062278ns 193711 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11062448ns 193714 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11062903ns 193722 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11063073ns 193725 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11063357ns 193730 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11063642ns 193735 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11063926ns 193740 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11064380ns 193748 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11064551ns 193751 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11064835ns 193756 1a110850 fd5ff06f jal x0, -44 +11065119ns 193761 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11065403ns 193766 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11065801ns 193773 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11065972ns 193776 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11066426ns 193784 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11066597ns 193787 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11066881ns 193792 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11067165ns 193797 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11067449ns 193802 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11067904ns 193810 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11068075ns 193813 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11068359ns 193818 1a110850 fd5ff06f jal x0, -44 +11068643ns 193823 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11068927ns 193828 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11069325ns 193835 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11069495ns 193838 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11069950ns 193846 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11070120ns 193849 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11070405ns 193854 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11070689ns 193859 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11070973ns 193864 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11071428ns 193872 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11071598ns 193875 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11071882ns 193880 1a110850 fd5ff06f jal x0, -44 +11072166ns 193885 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11072451ns 193890 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11072848ns 193897 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11073019ns 193900 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11073474ns 193908 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11073644ns 193911 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11073928ns 193916 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11074212ns 193921 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11074497ns 193926 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11074951ns 193934 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11075122ns 193937 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11075406ns 193942 1a110850 fd5ff06f jal x0, -44 +11075690ns 193947 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11075974ns 193952 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11076372ns 193959 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11076543ns 193962 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11076997ns 193970 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11077168ns 193973 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11077452ns 193978 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11077736ns 193983 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11078020ns 193988 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11078475ns 193996 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11078645ns 193999 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11078929ns 194004 1a110850 fd5ff06f jal x0, -44 +11079214ns 194009 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11079498ns 194014 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11079896ns 194021 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11080066ns 194024 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11080521ns 194032 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11080691ns 194035 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11080975ns 194040 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11081260ns 194045 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11081544ns 194050 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11081998ns 194058 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11082169ns 194061 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11082453ns 194066 1a110850 fd5ff06f jal x0, -44 +11082737ns 194071 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11083021ns 194076 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11083419ns 194083 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11083590ns 194086 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11084044ns 194094 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11084215ns 194097 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11084499ns 194102 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11084783ns 194107 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11085067ns 194112 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11085522ns 194120 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11085692ns 194123 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11085977ns 194128 1a110850 fd5ff06f jal x0, -44 +11086261ns 194133 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11086545ns 194138 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11086943ns 194145 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11087113ns 194148 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11087568ns 194156 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11087738ns 194159 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11088023ns 194164 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11088307ns 194169 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11088591ns 194174 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11089046ns 194182 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11089216ns 194185 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11089500ns 194190 1a110850 fd5ff06f jal x0, -44 +11089784ns 194195 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11090069ns 194200 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11090466ns 194207 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11090637ns 194210 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11091091ns 194218 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11091262ns 194221 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11091546ns 194226 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11091830ns 194231 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11092114ns 194236 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11092569ns 194244 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11092740ns 194247 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11093024ns 194252 1a110850 fd5ff06f jal x0, -44 +11093308ns 194257 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11093592ns 194262 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11093990ns 194269 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11094160ns 194272 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11094615ns 194280 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11094786ns 194283 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11095070ns 194288 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11095354ns 194293 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11095638ns 194298 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11096093ns 194306 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11096263ns 194309 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11096547ns 194314 1a110850 fd5ff06f jal x0, -44 +11096832ns 194319 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11097116ns 194324 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11097514ns 194331 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11097684ns 194334 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11098139ns 194342 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11098309ns 194345 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11098593ns 194350 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11098877ns 194355 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11099162ns 194360 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11099616ns 194368 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11099787ns 194371 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11100071ns 194376 1a110850 fd5ff06f jal x0, -44 +11100355ns 194381 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11100639ns 194386 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11101037ns 194393 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11101208ns 194396 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11101662ns 194404 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11101833ns 194407 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11102117ns 194412 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11102401ns 194417 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11102685ns 194422 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11103140ns 194430 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11103310ns 194433 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11103595ns 194438 1a110850 fd5ff06f jal x0, -44 +11103879ns 194443 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11104163ns 194448 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11104561ns 194455 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11104731ns 194458 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11105186ns 194466 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11105356ns 194469 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11105640ns 194474 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11105925ns 194479 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11106209ns 194484 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11106663ns 194492 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11106834ns 194495 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11107118ns 194500 1a110850 fd5ff06f jal x0, -44 +11107402ns 194505 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11107686ns 194510 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11108084ns 194517 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11108255ns 194520 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11108709ns 194528 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11108880ns 194531 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11109164ns 194536 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11109448ns 194541 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11109732ns 194546 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11110187ns 194554 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11110358ns 194557 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11110642ns 194562 1a110850 fd5ff06f jal x0, -44 +11110926ns 194567 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11111210ns 194572 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11111608ns 194579 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11111778ns 194582 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11112233ns 194590 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11112403ns 194593 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11112688ns 194598 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11112972ns 194603 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11113256ns 194608 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11113711ns 194616 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11113881ns 194619 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11114165ns 194624 1a110850 fd5ff06f jal x0, -44 +11114449ns 194629 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11114734ns 194634 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11115131ns 194641 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11115302ns 194644 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11115757ns 194652 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11115927ns 194655 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11116211ns 194660 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11116495ns 194665 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11116780ns 194670 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11117234ns 194678 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11117405ns 194681 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11117689ns 194686 1a110850 fd5ff06f jal x0, -44 +11117973ns 194691 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11118257ns 194696 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11118655ns 194703 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11118826ns 194706 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11119280ns 194714 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11119451ns 194717 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11119735ns 194722 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11120019ns 194727 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11120303ns 194732 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11120758ns 194740 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11120928ns 194743 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11121212ns 194748 1a110850 fd5ff06f jal x0, -44 +11121497ns 194753 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11121781ns 194758 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11122179ns 194765 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11122349ns 194768 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11122804ns 194776 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11122974ns 194779 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11123258ns 194784 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11123543ns 194789 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11123827ns 194794 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11124281ns 194802 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11124452ns 194805 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11124736ns 194810 1a110850 fd5ff06f jal x0, -44 +11125020ns 194815 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11125304ns 194820 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11125702ns 194827 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11125873ns 194830 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11126327ns 194838 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11126498ns 194841 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11126782ns 194846 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11127066ns 194851 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11127350ns 194856 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11127805ns 194864 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11127975ns 194867 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11128260ns 194872 1a110850 fd5ff06f jal x0, -44 +11128544ns 194877 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11128828ns 194882 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11129226ns 194889 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11129396ns 194892 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11129851ns 194900 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11130021ns 194903 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11130306ns 194908 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11130590ns 194913 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11130874ns 194918 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11131329ns 194926 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11131499ns 194929 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11131783ns 194934 1a110850 fd5ff06f jal x0, -44 +11132067ns 194939 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11132352ns 194944 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11132749ns 194951 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11132920ns 194954 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11133375ns 194962 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11133545ns 194965 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11133829ns 194970 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11134113ns 194975 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11134397ns 194980 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11134852ns 194988 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11135023ns 194991 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11135307ns 194996 1a110850 fd5ff06f jal x0, -44 +11135591ns 195001 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11135875ns 195006 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11136273ns 195013 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11136443ns 195016 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11136898ns 195024 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11137069ns 195027 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11137353ns 195032 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11137637ns 195037 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11137921ns 195042 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11138376ns 195050 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11138546ns 195053 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11138830ns 195058 1a110850 fd5ff06f jal x0, -44 +11139115ns 195063 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11139399ns 195068 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11139797ns 195075 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11139967ns 195078 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11140422ns 195086 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11140592ns 195089 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11140876ns 195094 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11141160ns 195099 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11141445ns 195104 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11141899ns 195112 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11142070ns 195115 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11142354ns 195120 1a110850 fd5ff06f jal x0, -44 +11142638ns 195125 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11142922ns 195130 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11143320ns 195137 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11143491ns 195140 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11143945ns 195148 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11144116ns 195151 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11144400ns 195156 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11144684ns 195161 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11144968ns 195166 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11145423ns 195174 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11145593ns 195177 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11145878ns 195182 1a110850 fd5ff06f jal x0, -44 +11146162ns 195187 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11146446ns 195192 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11146844ns 195199 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11147014ns 195202 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11147469ns 195210 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11147639ns 195213 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11147923ns 195218 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11148208ns 195223 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11148492ns 195228 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11148946ns 195236 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11149117ns 195239 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11149401ns 195244 1a110850 fd5ff06f jal x0, -44 +11149685ns 195249 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11149969ns 195254 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11150367ns 195261 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11150538ns 195264 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11150992ns 195272 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11151163ns 195275 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11151447ns 195280 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11151731ns 195285 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11152015ns 195290 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11152470ns 195298 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11152641ns 195301 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11152925ns 195306 1a110850 fd5ff06f jal x0, -44 +11153209ns 195311 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11153493ns 195316 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11153891ns 195323 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11154061ns 195326 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11154516ns 195334 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11154687ns 195337 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11154971ns 195342 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11155255ns 195347 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11155539ns 195352 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11155994ns 195360 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11156164ns 195363 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11156448ns 195368 1a110850 fd5ff06f jal x0, -44 +11156732ns 195373 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11157017ns 195378 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11157414ns 195385 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11157585ns 195388 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11158040ns 195396 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11158210ns 195399 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11158494ns 195404 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11158778ns 195409 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11159063ns 195414 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11159517ns 195422 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11159688ns 195425 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11159972ns 195430 1a110850 fd5ff06f jal x0, -44 +11160256ns 195435 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11160540ns 195440 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11160938ns 195447 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11161109ns 195450 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11161563ns 195458 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11161734ns 195461 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11162018ns 195466 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11162302ns 195471 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11162586ns 195476 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11163041ns 195484 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11163211ns 195487 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11163495ns 195492 1a110850 fd5ff06f jal x0, -44 +11163780ns 195497 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11164064ns 195502 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11164462ns 195509 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11164632ns 195512 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11165087ns 195520 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11165257ns 195523 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11165541ns 195528 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11165826ns 195533 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11166110ns 195538 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11166564ns 195546 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11166735ns 195549 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11167019ns 195554 1a110850 fd5ff06f jal x0, -44 +11167303ns 195559 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11167587ns 195564 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11167985ns 195571 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11168156ns 195574 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11168610ns 195582 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11168781ns 195585 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11169065ns 195590 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11169349ns 195595 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11169633ns 195600 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11170088ns 195608 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11170258ns 195611 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11170543ns 195616 1a110850 fd5ff06f jal x0, -44 +11170827ns 195621 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11171111ns 195626 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11171509ns 195633 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11171679ns 195636 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11172134ns 195644 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11172304ns 195647 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11172589ns 195652 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11172873ns 195657 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11173157ns 195662 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11173612ns 195670 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11173782ns 195673 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11174066ns 195678 1a110850 fd5ff06f jal x0, -44 +11174350ns 195683 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11174635ns 195688 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11175032ns 195695 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11175203ns 195698 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11175658ns 195706 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11175828ns 195709 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11176112ns 195714 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11176396ns 195719 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11176680ns 195724 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11177135ns 195732 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11177306ns 195735 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11177590ns 195740 1a110850 fd5ff06f jal x0, -44 +11177874ns 195745 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11178158ns 195750 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11178556ns 195757 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11178726ns 195760 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11179181ns 195768 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11179352ns 195771 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11179636ns 195776 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11179920ns 195781 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11180204ns 195786 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11180659ns 195794 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11180829ns 195797 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11181113ns 195802 1a110850 fd5ff06f jal x0, -44 +11181398ns 195807 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11181682ns 195812 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11182080ns 195819 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11182250ns 195822 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11182705ns 195830 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11182875ns 195833 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11183159ns 195838 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11183443ns 195843 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11183728ns 195848 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11184182ns 195856 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11184353ns 195859 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11184637ns 195864 1a110850 fd5ff06f jal x0, -44 +11184921ns 195869 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11185205ns 195874 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11185603ns 195881 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11185774ns 195884 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11186228ns 195892 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11186399ns 195895 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11186683ns 195900 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11186967ns 195905 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11187251ns 195910 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11187706ns 195918 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11187876ns 195921 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11188161ns 195926 1a110850 fd5ff06f jal x0, -44 +11188445ns 195931 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11188729ns 195936 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11189127ns 195943 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11189297ns 195946 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11189752ns 195954 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11189922ns 195957 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11190207ns 195962 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11190491ns 195967 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11190775ns 195972 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11191229ns 195980 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11191400ns 195983 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11191684ns 195988 1a110850 fd5ff06f jal x0, -44 +11191968ns 195993 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11192252ns 195998 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11192650ns 196005 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11192821ns 196008 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11193275ns 196016 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11193446ns 196019 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11193730ns 196024 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11194014ns 196029 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11194298ns 196034 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11194753ns 196042 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11194924ns 196045 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11195208ns 196050 1a110850 fd5ff06f jal x0, -44 +11195492ns 196055 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11195776ns 196060 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11196174ns 196067 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11196344ns 196070 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11196799ns 196078 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11196970ns 196081 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11197254ns 196086 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11197538ns 196091 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11197822ns 196096 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11198277ns 196104 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11198447ns 196107 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11198731ns 196112 1a110850 fd5ff06f jal x0, -44 +11199015ns 196117 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11199300ns 196122 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11199697ns 196129 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11199868ns 196132 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11200323ns 196140 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11200493ns 196143 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11200777ns 196148 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11201061ns 196153 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11201346ns 196158 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11201800ns 196166 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11201971ns 196169 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11202255ns 196174 1a110850 fd5ff06f jal x0, -44 +11202539ns 196179 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11202823ns 196184 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11203221ns 196191 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11203392ns 196194 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11203846ns 196202 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11204017ns 196205 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11204301ns 196210 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11204585ns 196215 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11204869ns 196220 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11205324ns 196228 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11205494ns 196231 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11205778ns 196236 1a110850 fd5ff06f jal x0, -44 +11206063ns 196241 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11206347ns 196246 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11206745ns 196253 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11206915ns 196256 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11207370ns 196264 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11207540ns 196267 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11207824ns 196272 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11208109ns 196277 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11208393ns 196282 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11208847ns 196290 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11209018ns 196293 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11209302ns 196298 1a110850 fd5ff06f jal x0, -44 +11209586ns 196303 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11209870ns 196308 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11210268ns 196315 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11210439ns 196318 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11210893ns 196326 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11211064ns 196329 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11211348ns 196334 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11211632ns 196339 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11211916ns 196344 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11212371ns 196352 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11212541ns 196355 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11212826ns 196360 1a110850 fd5ff06f jal x0, -44 +11213110ns 196365 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11213394ns 196370 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11213792ns 196377 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11213962ns 196380 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11214417ns 196388 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11214587ns 196391 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11214872ns 196396 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11215156ns 196401 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11215440ns 196406 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11215895ns 196414 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11216065ns 196417 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11216349ns 196422 1a110850 fd5ff06f jal x0, -44 +11216633ns 196427 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11216918ns 196432 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11217315ns 196439 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11217486ns 196442 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11217941ns 196450 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11218111ns 196453 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11218395ns 196458 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11218679ns 196463 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11218963ns 196468 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11219418ns 196476 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11219589ns 196479 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11219873ns 196484 1a110850 fd5ff06f jal x0, -44 +11220157ns 196489 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11220441ns 196494 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11220839ns 196501 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11221009ns 196504 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11221464ns 196512 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11221635ns 196515 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11221919ns 196520 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11222203ns 196525 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11222487ns 196530 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11222942ns 196538 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11223112ns 196541 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11223396ns 196546 1a110850 fd5ff06f jal x0, -44 +11223681ns 196551 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11223965ns 196556 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11224363ns 196563 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11224533ns 196566 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11224988ns 196574 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11225158ns 196577 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11225442ns 196582 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11225727ns 196587 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11226011ns 196592 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11226465ns 196600 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11226636ns 196603 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11226920ns 196608 1a110850 fd5ff06f jal x0, -44 +11227204ns 196613 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11227488ns 196618 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11227886ns 196625 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11228057ns 196628 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11228511ns 196636 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11228682ns 196639 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11228966ns 196644 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11229250ns 196649 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11229534ns 196654 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11229989ns 196662 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11230159ns 196665 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11230444ns 196670 1a110850 fd5ff06f jal x0, -44 +11230728ns 196675 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11231012ns 196680 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11231410ns 196687 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11231580ns 196690 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11232035ns 196698 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11232205ns 196701 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11232490ns 196706 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11232774ns 196711 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11233058ns 196716 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11233512ns 196724 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11233683ns 196727 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11233967ns 196732 1a110850 fd5ff06f jal x0, -44 +11234251ns 196737 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11234535ns 196742 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11234933ns 196749 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11235104ns 196752 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11235558ns 196760 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11235729ns 196763 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11236013ns 196768 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11236297ns 196773 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11236581ns 196778 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11237036ns 196786 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11237207ns 196789 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11237491ns 196794 1a110850 fd5ff06f jal x0, -44 +11237775ns 196799 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11238059ns 196804 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11238457ns 196811 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11238627ns 196814 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11239082ns 196822 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11239253ns 196825 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11239537ns 196830 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11239821ns 196835 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11240105ns 196840 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11240560ns 196848 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11240730ns 196851 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11241014ns 196856 1a110850 fd5ff06f jal x0, -44 +11241298ns 196861 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11241583ns 196866 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11241980ns 196873 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11242151ns 196876 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11242606ns 196884 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11242776ns 196887 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11243060ns 196892 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11243344ns 196897 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11243629ns 196902 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11244083ns 196910 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11244254ns 196913 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11244538ns 196918 1a110850 fd5ff06f jal x0, -44 +11244822ns 196923 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11245106ns 196928 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11245504ns 196935 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11245675ns 196938 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11246129ns 196946 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11246300ns 196949 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11246584ns 196954 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11246868ns 196959 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11247152ns 196964 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11247607ns 196972 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11247777ns 196975 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11248061ns 196980 1a110850 fd5ff06f jal x0, -44 +11248346ns 196985 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11248630ns 196990 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11249028ns 196997 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11249198ns 197000 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11249653ns 197008 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11249823ns 197011 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11250107ns 197016 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11250392ns 197021 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11250676ns 197026 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11251130ns 197034 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11251301ns 197037 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11251585ns 197042 1a110850 fd5ff06f jal x0, -44 +11251869ns 197047 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11252153ns 197052 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11252551ns 197059 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11252722ns 197062 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11253176ns 197070 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11253347ns 197073 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11253631ns 197078 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11253915ns 197083 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11254199ns 197088 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11254654ns 197096 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11254824ns 197099 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11255109ns 197104 1a110850 fd5ff06f jal x0, -44 +11255393ns 197109 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11255677ns 197114 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11256075ns 197121 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11256245ns 197124 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11256700ns 197132 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11256870ns 197135 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11257155ns 197140 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11257439ns 197145 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11257723ns 197150 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11258178ns 197158 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11258348ns 197161 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11258632ns 197166 1a110850 fd5ff06f jal x0, -44 +11258916ns 197171 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11259201ns 197176 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11259598ns 197183 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11259769ns 197186 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11260224ns 197194 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11260394ns 197197 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11260678ns 197202 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11260962ns 197207 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11261247ns 197212 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11261701ns 197220 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11261872ns 197223 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11262156ns 197228 1a110850 fd5ff06f jal x0, -44 +11262440ns 197233 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11262724ns 197238 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11263122ns 197245 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11263292ns 197248 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11263747ns 197256 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11263918ns 197259 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11264202ns 197264 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11264486ns 197269 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11264770ns 197274 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11265225ns 197282 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11265395ns 197285 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11265679ns 197290 1a110850 fd5ff06f jal x0, -44 +11265964ns 197295 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11266248ns 197300 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11266646ns 197307 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11266816ns 197310 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11267271ns 197318 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11267441ns 197321 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11267725ns 197326 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11268010ns 197331 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11268294ns 197336 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11268748ns 197344 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11268919ns 197347 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11269203ns 197352 1a110850 fd5ff06f jal x0, -44 +11269487ns 197357 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11269771ns 197362 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11270169ns 197369 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11270340ns 197372 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11270794ns 197380 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11270965ns 197383 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11271249ns 197388 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11271533ns 197393 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11271817ns 197398 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11272272ns 197406 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11272442ns 197409 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11272727ns 197414 1a110850 fd5ff06f jal x0, -44 +11273011ns 197419 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11273295ns 197424 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11273693ns 197431 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11273863ns 197434 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11274318ns 197442 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11274488ns 197445 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11274773ns 197450 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11275057ns 197455 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11275341ns 197460 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11275795ns 197468 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11275966ns 197471 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11276250ns 197476 1a110850 fd5ff06f jal x0, -44 +11276534ns 197481 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11276818ns 197486 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11277216ns 197493 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11277387ns 197496 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11277841ns 197504 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11278012ns 197507 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11278296ns 197512 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11278580ns 197517 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11278864ns 197522 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11279319ns 197530 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11279490ns 197533 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11279774ns 197538 1a110850 fd5ff06f jal x0, -44 +11280058ns 197543 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11280342ns 197548 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11280740ns 197555 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11280910ns 197558 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11281365ns 197566 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11281536ns 197569 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11281820ns 197574 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11282104ns 197579 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11282388ns 197584 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11282843ns 197592 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11283013ns 197595 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11283297ns 197600 1a110850 fd5ff06f jal x0, -44 +11283581ns 197605 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11283866ns 197610 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11284263ns 197617 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11284434ns 197620 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11284889ns 197628 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11285059ns 197631 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11285343ns 197636 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11285627ns 197641 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11285912ns 197646 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11286366ns 197654 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11286537ns 197657 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11286821ns 197662 1a110850 fd5ff06f jal x0, -44 +11287105ns 197667 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11287389ns 197672 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11287787ns 197679 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11287958ns 197682 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11288412ns 197690 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11288583ns 197693 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11288867ns 197698 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11289151ns 197703 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11289435ns 197708 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11289890ns 197716 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11290060ns 197719 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11290344ns 197724 1a110850 fd5ff06f jal x0, -44 +11290629ns 197729 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11290913ns 197734 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11291311ns 197741 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11291481ns 197744 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11291936ns 197752 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11292106ns 197755 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11292390ns 197760 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11292675ns 197765 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11292959ns 197770 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11293413ns 197778 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11293584ns 197781 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11293868ns 197786 1a110850 fd5ff06f jal x0, -44 +11294152ns 197791 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11294436ns 197796 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11294834ns 197803 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11295005ns 197806 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11295459ns 197814 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11295630ns 197817 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11295914ns 197822 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11296198ns 197827 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11296482ns 197832 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11296937ns 197840 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11297107ns 197843 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11297392ns 197848 1a110850 fd5ff06f jal x0, -44 +11297676ns 197853 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11297960ns 197858 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11298358ns 197865 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11298528ns 197868 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11298983ns 197876 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11299153ns 197879 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11299438ns 197884 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11299722ns 197889 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11300006ns 197894 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11300461ns 197902 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11300631ns 197905 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11300915ns 197910 1a110850 fd5ff06f jal x0, -44 +11301199ns 197915 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11301484ns 197920 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11301881ns 197927 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11302052ns 197930 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11302507ns 197938 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11302677ns 197941 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11302961ns 197946 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11303245ns 197951 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11303530ns 197956 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11303984ns 197964 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11304155ns 197967 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11304439ns 197972 1a110850 fd5ff06f jal x0, -44 +11304723ns 197977 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11305007ns 197982 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11305405ns 197989 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11305575ns 197992 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11306030ns 198000 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11306201ns 198003 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11306485ns 198008 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11306769ns 198013 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11307053ns 198018 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11307508ns 198026 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11307678ns 198029 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11307962ns 198034 1a110850 fd5ff06f jal x0, -44 +11308247ns 198039 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11308531ns 198044 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11308929ns 198051 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11309099ns 198054 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11309554ns 198062 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11309724ns 198065 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11310008ns 198070 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11310293ns 198075 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11310577ns 198080 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11311031ns 198088 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11311202ns 198091 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11311486ns 198096 1a110850 fd5ff06f jal x0, -44 +11311770ns 198101 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11312054ns 198106 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11312452ns 198113 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11312623ns 198116 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11313077ns 198124 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11313248ns 198127 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11313532ns 198132 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11313816ns 198137 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11314100ns 198142 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11314555ns 198150 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11314725ns 198153 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11315010ns 198158 1a110850 fd5ff06f jal x0, -44 +11315294ns 198163 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11315578ns 198168 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11315976ns 198175 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11316146ns 198178 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11316601ns 198186 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11316771ns 198189 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11317056ns 198194 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11317340ns 198199 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11317624ns 198204 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11318079ns 198212 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11318249ns 198215 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11318533ns 198220 1a110850 fd5ff06f jal x0, -44 +11318817ns 198225 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11319101ns 198230 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11319499ns 198237 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11319670ns 198240 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11320124ns 198248 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11320295ns 198251 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11320579ns 198256 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11320863ns 198261 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11321147ns 198266 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11321602ns 198274 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11321773ns 198277 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11322057ns 198282 1a110850 fd5ff06f jal x0, -44 +11322341ns 198287 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11322625ns 198292 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11323023ns 198299 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11323193ns 198302 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11323648ns 198310 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11323819ns 198313 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11324103ns 198318 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11324387ns 198323 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11324671ns 198328 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11325126ns 198336 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11325296ns 198339 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11325580ns 198344 1a110850 fd5ff06f jal x0, -44 +11325864ns 198349 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11326149ns 198354 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11326546ns 198361 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11326717ns 198364 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11327172ns 198372 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11327342ns 198375 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11327626ns 198380 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11327910ns 198385 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11328195ns 198390 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11328649ns 198398 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11328820ns 198401 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11329104ns 198406 1a110850 fd5ff06f jal x0, -44 +11329388ns 198411 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11329672ns 198416 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11330070ns 198423 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11330241ns 198426 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11330695ns 198434 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11330866ns 198437 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11331150ns 198442 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11331434ns 198447 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11331718ns 198452 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11332173ns 198460 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11332343ns 198463 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11332627ns 198468 1a110850 fd5ff06f jal x0, -44 +11332912ns 198473 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11333196ns 198478 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11333594ns 198485 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11333764ns 198488 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11334219ns 198496 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11334389ns 198499 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11334673ns 198504 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11334958ns 198509 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11335242ns 198514 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11335696ns 198522 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11335867ns 198525 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11336151ns 198530 1a110850 fd5ff06f jal x0, -44 +11336435ns 198535 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11336719ns 198540 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11337117ns 198547 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11337288ns 198550 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11337742ns 198558 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11337913ns 198561 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11338197ns 198566 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11338481ns 198571 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11338765ns 198576 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11339220ns 198584 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11339391ns 198587 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11339675ns 198592 1a110850 fd5ff06f jal x0, -44 +11339959ns 198597 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11340243ns 198602 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11340641ns 198609 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11340811ns 198612 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11341266ns 198620 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11341436ns 198623 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11341721ns 198628 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11342005ns 198633 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11342289ns 198638 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11342744ns 198646 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11342914ns 198649 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11343198ns 198654 1a110850 fd5ff06f jal x0, -44 +11343482ns 198659 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11343767ns 198664 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11344164ns 198671 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11344335ns 198674 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11344790ns 198682 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11344960ns 198685 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11345244ns 198690 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11345528ns 198695 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11345813ns 198700 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11346267ns 198708 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11346438ns 198711 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11346722ns 198716 1a110850 fd5ff06f jal x0, -44 +11347006ns 198721 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11347290ns 198726 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11347688ns 198733 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11347858ns 198736 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11348313ns 198744 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11348484ns 198747 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11348768ns 198752 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11349052ns 198757 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11349336ns 198762 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11349791ns 198770 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11349961ns 198773 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11350245ns 198778 1a110850 fd5ff06f jal x0, -44 +11350530ns 198783 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11350814ns 198788 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11351212ns 198795 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11351382ns 198798 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11351837ns 198806 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11352007ns 198809 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11352291ns 198814 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11352576ns 198819 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11352860ns 198824 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11353314ns 198832 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11353485ns 198835 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11353769ns 198840 1a110850 fd5ff06f jal x0, -44 +11354053ns 198845 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11354337ns 198850 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11354735ns 198857 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11354906ns 198860 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11355360ns 198868 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11355531ns 198871 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11355815ns 198876 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11356099ns 198881 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11356383ns 198886 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11356838ns 198894 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11357008ns 198897 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11357293ns 198902 1a110850 fd5ff06f jal x0, -44 +11357577ns 198907 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11357861ns 198912 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11358259ns 198919 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11358429ns 198922 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11358884ns 198930 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11359054ns 198933 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11359339ns 198938 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11359623ns 198943 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11359907ns 198948 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11360362ns 198956 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11360532ns 198959 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11360816ns 198964 1a110850 fd5ff06f jal x0, -44 +11361100ns 198969 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11361384ns 198974 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11361782ns 198981 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11361953ns 198984 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11362407ns 198992 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11362578ns 198995 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11362862ns 199000 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11363146ns 199005 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11363430ns 199010 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11363885ns 199018 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11364056ns 199021 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11364340ns 199026 1a110850 fd5ff06f jal x0, -44 +11364624ns 199031 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11364908ns 199036 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11365306ns 199043 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11365476ns 199046 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11365931ns 199054 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11366102ns 199057 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11366386ns 199062 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11366670ns 199067 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11366954ns 199072 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11367409ns 199080 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11367579ns 199083 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11367863ns 199088 1a110850 fd5ff06f jal x0, -44 +11368147ns 199093 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11368432ns 199098 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11368829ns 199105 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11369000ns 199108 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11369455ns 199116 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11369625ns 199119 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11369909ns 199124 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11370193ns 199129 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11370478ns 199134 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11370932ns 199142 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11371103ns 199145 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11371387ns 199150 1a110850 fd5ff06f jal x0, -44 +11371671ns 199155 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11371955ns 199160 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11372353ns 199167 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11372524ns 199170 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11372978ns 199178 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11373149ns 199181 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11373433ns 199186 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11373717ns 199191 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11374001ns 199196 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11374456ns 199204 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11374626ns 199207 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11374911ns 199212 1a110850 fd5ff06f jal x0, -44 +11375195ns 199217 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11375479ns 199222 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11375877ns 199229 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11376047ns 199232 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11376502ns 199240 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11376672ns 199243 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11376956ns 199248 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11377241ns 199253 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11377525ns 199258 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11377979ns 199266 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11378150ns 199269 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11378434ns 199274 1a110850 fd5ff06f jal x0, -44 +11378718ns 199279 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11379002ns 199284 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11379400ns 199291 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11379571ns 199294 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11380025ns 199302 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11380196ns 199305 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11380480ns 199310 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11380764ns 199315 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11381048ns 199320 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11381503ns 199328 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11381674ns 199331 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11381958ns 199336 1a110850 fd5ff06f jal x0, -44 +11382242ns 199341 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11382526ns 199346 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11382924ns 199353 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11383094ns 199356 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11383549ns 199364 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11383719ns 199367 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11384004ns 199372 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11384288ns 199377 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11384572ns 199382 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11385027ns 199390 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11385197ns 199393 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11385481ns 199398 1a110850 fd5ff06f jal x0, -44 +11385765ns 199403 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11386050ns 199408 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11386447ns 199415 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11386618ns 199418 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11387073ns 199426 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11387243ns 199429 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11387527ns 199434 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11387811ns 199439 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11388096ns 199444 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11388550ns 199452 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11388721ns 199455 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11389005ns 199460 1a110850 fd5ff06f jal x0, -44 +11389289ns 199465 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11389573ns 199470 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11389971ns 199477 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11390141ns 199480 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11390596ns 199488 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11390767ns 199491 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11391051ns 199496 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11391335ns 199501 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11391619ns 199506 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11392074ns 199514 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11392244ns 199517 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11392528ns 199522 1a110850 fd5ff06f jal x0, -44 +11392813ns 199527 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11393097ns 199532 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11393495ns 199539 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11393665ns 199542 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11394120ns 199550 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11394290ns 199553 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11394574ns 199558 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11394859ns 199563 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11395143ns 199568 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11395597ns 199576 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11395768ns 199579 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11396052ns 199584 1a110850 fd5ff06f jal x0, -44 +11396336ns 199589 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11396620ns 199594 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11397018ns 199601 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11397189ns 199604 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11397643ns 199612 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11397814ns 199615 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11398098ns 199620 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11398382ns 199625 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11398666ns 199630 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11399121ns 199638 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11399291ns 199641 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11399576ns 199646 1a110850 fd5ff06f jal x0, -44 +11399860ns 199651 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11400144ns 199656 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11400542ns 199663 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11400712ns 199666 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11401167ns 199674 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11401337ns 199677 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11401622ns 199682 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11401906ns 199687 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11402190ns 199692 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11402645ns 199700 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11402815ns 199703 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11403099ns 199708 1a110850 fd5ff06f jal x0, -44 +11403383ns 199713 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11403667ns 199718 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11404065ns 199725 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11404236ns 199728 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11404690ns 199736 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11404861ns 199739 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11405145ns 199744 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11405429ns 199749 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11405713ns 199754 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11406168ns 199762 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11406339ns 199765 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11406623ns 199770 1a110850 fd5ff06f jal x0, -44 +11406907ns 199775 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11407191ns 199780 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11407589ns 199787 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11407759ns 199790 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11408214ns 199798 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11408385ns 199801 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11408669ns 199806 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11408953ns 199811 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11409237ns 199816 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11409692ns 199824 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11409862ns 199827 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11410146ns 199832 1a110850 fd5ff06f jal x0, -44 +11410431ns 199837 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11410715ns 199842 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11411112ns 199849 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11411283ns 199852 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11411738ns 199860 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11411908ns 199863 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11412192ns 199868 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11412476ns 199873 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11412761ns 199878 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11413215ns 199886 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11413386ns 199889 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11413670ns 199894 1a110850 fd5ff06f jal x0, -44 +11413954ns 199899 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11414238ns 199904 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11414636ns 199911 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11414807ns 199914 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11415261ns 199922 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11415432ns 199925 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11415716ns 199930 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11416000ns 199935 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11416284ns 199940 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11416739ns 199948 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11416909ns 199951 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11417194ns 199956 1a110850 fd5ff06f jal x0, -44 +11417478ns 199961 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11417762ns 199966 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11418160ns 199973 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11418330ns 199976 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11418785ns 199984 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11418955ns 199987 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11419239ns 199992 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11419524ns 199997 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11419808ns 200002 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11420262ns 200010 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11420433ns 200013 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11420717ns 200018 1a110850 fd5ff06f jal x0, -44 +11421001ns 200023 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11421285ns 200028 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11421683ns 200035 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11421854ns 200038 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11422308ns 200046 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11422479ns 200049 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11422763ns 200054 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11423047ns 200059 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11423331ns 200064 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11423786ns 200072 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11423957ns 200075 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11424241ns 200080 1a110850 fd5ff06f jal x0, -44 +11424525ns 200085 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11424809ns 200090 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11425207ns 200097 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11425377ns 200100 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11425832ns 200108 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11426002ns 200111 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11426287ns 200116 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11426571ns 200121 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11426855ns 200126 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11427310ns 200134 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11427480ns 200137 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11427764ns 200142 1a110850 fd5ff06f jal x0, -44 +11428048ns 200147 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11428333ns 200152 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11428730ns 200159 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11428901ns 200162 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11429356ns 200170 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11429526ns 200173 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11429810ns 200178 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11430094ns 200183 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11430379ns 200188 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11430833ns 200196 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11431004ns 200199 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11431288ns 200204 1a110850 fd5ff06f jal x0, -44 +11431572ns 200209 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11431856ns 200214 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11432254ns 200221 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11432424ns 200224 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11432879ns 200232 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11433050ns 200235 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11433334ns 200240 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11433618ns 200245 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11433902ns 200250 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11434357ns 200258 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11434527ns 200261 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11434811ns 200266 1a110850 fd5ff06f jal x0, -44 +11435096ns 200271 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11435380ns 200276 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11435778ns 200283 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11435948ns 200286 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11436403ns 200294 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11436573ns 200297 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11436857ns 200302 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11437142ns 200307 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11437426ns 200312 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11437880ns 200320 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11438051ns 200323 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11438335ns 200328 1a110850 fd5ff06f jal x0, -44 +11438619ns 200333 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11438903ns 200338 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11439301ns 200345 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11439472ns 200348 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11439926ns 200356 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11440097ns 200359 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11440381ns 200364 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11440665ns 200369 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11440949ns 200374 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11441404ns 200382 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11441574ns 200385 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11441859ns 200390 1a110850 fd5ff06f jal x0, -44 +11442143ns 200395 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11442427ns 200400 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11442825ns 200407 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11442995ns 200410 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11443450ns 200418 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11443620ns 200421 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11443905ns 200426 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11444189ns 200431 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11444473ns 200436 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11444928ns 200444 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11445098ns 200447 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11445382ns 200452 1a110850 fd5ff06f jal x0, -44 +11445666ns 200457 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11445951ns 200462 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11446348ns 200469 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11446519ns 200472 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11446973ns 200480 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11447144ns 200483 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11447428ns 200488 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11447712ns 200493 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11447996ns 200498 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11448451ns 200506 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11448622ns 200509 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11448906ns 200514 1a110850 fd5ff06f jal x0, -44 +11449190ns 200519 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11449474ns 200524 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11449872ns 200531 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11450042ns 200534 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11450497ns 200542 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11450668ns 200545 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11450952ns 200550 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11451236ns 200555 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11451520ns 200560 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11451975ns 200568 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11452145ns 200571 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11452429ns 200576 1a110850 fd5ff06f jal x0, -44 +11452714ns 200581 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11452998ns 200586 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11453395ns 200593 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11453566ns 200596 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11454021ns 200604 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11454191ns 200607 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11454475ns 200612 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11454759ns 200617 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11455044ns 200622 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11455498ns 200630 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11455669ns 200633 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11455953ns 200638 1a110850 fd5ff06f jal x0, -44 +11456237ns 200643 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11456521ns 200648 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11456919ns 200655 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11457090ns 200658 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11457544ns 200666 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11457715ns 200669 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11457999ns 200674 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11458283ns 200679 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11458567ns 200684 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11459022ns 200692 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11459192ns 200695 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11459477ns 200700 1a110850 fd5ff06f jal x0, -44 +11459761ns 200705 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11460045ns 200710 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11460443ns 200717 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11460613ns 200720 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11461068ns 200728 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11461238ns 200731 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11461522ns 200736 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11461807ns 200741 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11462091ns 200746 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11462545ns 200754 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11462716ns 200757 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11463000ns 200762 1a110850 fd5ff06f jal x0, -44 +11463284ns 200767 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11463568ns 200772 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11463966ns 200779 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11464137ns 200782 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11464591ns 200790 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11464762ns 200793 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11465046ns 200798 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11465330ns 200803 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11465614ns 200808 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11466069ns 200816 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11466240ns 200819 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11466524ns 200824 1a110850 fd5ff06f jal x0, -44 +11466808ns 200829 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11467092ns 200834 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11467490ns 200841 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11467660ns 200844 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11468115ns 200852 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11468285ns 200855 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11468570ns 200860 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11468854ns 200865 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11469138ns 200870 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11469593ns 200878 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11469763ns 200881 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11470047ns 200886 1a110850 fd5ff06f jal x0, -44 +11470331ns 200891 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11470616ns 200896 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11471013ns 200903 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11471184ns 200906 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11471639ns 200914 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11471809ns 200917 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11472093ns 200922 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11472377ns 200927 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11472662ns 200932 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11473116ns 200940 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11473287ns 200943 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11473571ns 200948 1a110850 fd5ff06f jal x0, -44 +11473855ns 200953 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11474139ns 200958 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11474537ns 200965 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11474707ns 200968 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11475162ns 200976 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11475333ns 200979 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11475617ns 200984 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11475901ns 200989 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11476185ns 200994 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11476640ns 201002 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11476810ns 201005 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11477094ns 201010 1a110850 fd5ff06f jal x0, -44 +11477379ns 201015 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11477663ns 201020 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11478061ns 201027 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11478231ns 201030 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11478686ns 201038 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11478856ns 201041 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11479140ns 201046 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11479425ns 201051 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11479709ns 201056 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11480163ns 201064 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11480334ns 201067 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11480618ns 201072 1a110850 fd5ff06f jal x0, -44 +11480902ns 201077 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11481186ns 201082 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11481584ns 201089 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11481755ns 201092 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11482209ns 201100 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11482380ns 201103 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11482664ns 201108 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11482948ns 201113 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11483232ns 201118 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11483687ns 201126 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11483857ns 201129 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11484142ns 201134 1a110850 fd5ff06f jal x0, -44 +11484426ns 201139 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11484710ns 201144 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11485108ns 201151 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11485278ns 201154 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11485733ns 201162 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11485903ns 201165 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11486188ns 201170 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11486472ns 201175 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11486756ns 201180 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11487211ns 201188 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11487381ns 201191 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11487665ns 201196 1a110850 fd5ff06f jal x0, -44 +11487949ns 201201 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11488234ns 201206 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11488631ns 201213 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11488802ns 201216 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11489256ns 201224 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11489427ns 201227 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11489711ns 201232 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11489995ns 201237 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11490279ns 201242 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11490734ns 201250 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11490905ns 201253 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11491189ns 201258 1a110850 fd5ff06f jal x0, -44 +11491473ns 201263 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11491757ns 201268 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11492155ns 201275 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11492325ns 201278 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11492780ns 201286 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11492951ns 201289 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11493235ns 201294 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11493519ns 201299 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11493803ns 201304 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11494258ns 201312 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11494428ns 201315 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11494712ns 201320 1a110850 fd5ff06f jal x0, -44 +11494997ns 201325 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11495281ns 201330 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11495679ns 201337 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11495849ns 201340 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11496304ns 201348 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11496474ns 201351 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11496758ns 201356 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11497042ns 201361 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11497327ns 201366 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11497781ns 201374 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11497952ns 201377 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11498236ns 201382 1a110850 fd5ff06f jal x0, -44 +11498520ns 201387 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11498804ns 201392 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11499202ns 201399 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11499373ns 201402 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11499827ns 201410 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11499998ns 201413 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11500282ns 201418 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11500566ns 201423 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11500850ns 201428 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11501305ns 201436 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11501475ns 201439 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11501760ns 201444 1a110850 fd5ff06f jal x0, -44 +11502044ns 201449 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11502328ns 201454 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11502726ns 201461 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11502896ns 201464 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11503351ns 201472 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11503521ns 201475 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11503805ns 201480 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11504090ns 201485 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11504374ns 201490 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11504828ns 201498 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11504999ns 201501 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11505283ns 201506 1a110850 fd5ff06f jal x0, -44 +11505567ns 201511 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11505851ns 201516 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11506249ns 201523 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11506420ns 201526 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11506874ns 201534 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11507045ns 201537 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11507329ns 201542 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11507613ns 201547 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11507897ns 201552 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11508352ns 201560 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11508523ns 201563 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11508807ns 201568 1a110850 fd5ff06f jal x0, -44 +11509091ns 201573 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11509375ns 201578 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11509773ns 201585 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11509943ns 201588 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11510398ns 201596 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11510568ns 201599 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11510853ns 201604 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11511137ns 201609 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11511421ns 201614 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11511876ns 201622 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11512046ns 201625 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11512330ns 201630 1a110850 fd5ff06f jal x0, -44 +11512614ns 201635 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11512899ns 201640 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11513296ns 201647 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11513467ns 201650 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11513922ns 201658 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11514092ns 201661 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11514376ns 201666 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11514660ns 201671 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11514945ns 201676 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11515399ns 201684 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11515570ns 201687 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11515854ns 201692 1a110850 fd5ff06f jal x0, -44 +11516138ns 201697 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11516422ns 201702 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11516820ns 201709 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11516991ns 201712 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11517445ns 201720 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11517616ns 201723 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11517900ns 201728 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11518184ns 201733 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11518468ns 201738 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11518923ns 201746 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11519093ns 201749 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11519377ns 201754 1a110850 fd5ff06f jal x0, -44 +11519662ns 201759 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11519946ns 201764 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11520344ns 201771 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11520514ns 201774 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11520969ns 201782 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11521139ns 201785 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11521423ns 201790 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11521708ns 201795 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11521992ns 201800 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11522446ns 201808 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11522617ns 201811 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11522901ns 201816 1a110850 fd5ff06f jal x0, -44 +11523185ns 201821 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11523469ns 201826 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11523867ns 201833 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11524038ns 201836 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11524492ns 201844 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11524663ns 201847 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11524947ns 201852 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11525231ns 201857 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11525515ns 201862 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11525970ns 201870 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11526140ns 201873 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11526425ns 201878 1a110850 fd5ff06f jal x0, -44 +11526709ns 201883 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11526993ns 201888 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11527391ns 201895 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11527561ns 201898 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11528016ns 201906 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11528186ns 201909 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11528471ns 201914 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11528755ns 201919 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11529039ns 201924 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11529494ns 201932 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11529664ns 201935 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11529948ns 201940 1a110850 fd5ff06f jal x0, -44 +11530232ns 201945 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11530517ns 201950 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11530914ns 201957 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11531085ns 201960 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11531539ns 201968 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11531710ns 201971 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11531994ns 201976 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11532278ns 201981 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11532562ns 201986 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11533017ns 201994 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11533188ns 201997 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11533472ns 202002 1a110850 fd5ff06f jal x0, -44 +11533756ns 202007 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11534040ns 202012 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11534438ns 202019 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11534608ns 202022 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11535063ns 202030 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11535234ns 202033 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11535518ns 202038 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11535802ns 202043 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11536086ns 202048 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11536541ns 202056 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11536711ns 202059 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11536995ns 202064 1a110850 fd5ff06f jal x0, -44 +11537280ns 202069 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11537564ns 202074 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11537962ns 202081 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11538132ns 202084 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11538587ns 202092 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11538757ns 202095 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11539041ns 202100 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11539325ns 202105 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11539610ns 202110 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11540064ns 202118 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11540235ns 202121 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11540519ns 202126 1a110850 fd5ff06f jal x0, -44 +11540803ns 202131 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11541087ns 202136 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11541485ns 202143 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11541656ns 202146 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11542110ns 202154 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11542281ns 202157 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11542565ns 202162 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11542849ns 202167 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11543133ns 202172 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11543588ns 202180 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11543758ns 202183 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11544043ns 202188 1a110850 fd5ff06f jal x0, -44 +11544327ns 202193 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11544611ns 202198 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11545009ns 202205 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11545179ns 202208 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11545634ns 202216 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11545804ns 202219 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11546088ns 202224 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11546373ns 202229 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11546657ns 202234 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11547111ns 202242 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11547282ns 202245 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11547566ns 202250 1a110850 fd5ff06f jal x0, -44 +11547850ns 202255 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11548134ns 202260 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11548532ns 202267 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11548703ns 202270 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11549157ns 202278 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11549328ns 202281 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11549612ns 202286 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11549896ns 202291 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11550180ns 202296 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11550635ns 202304 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11550806ns 202307 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11551090ns 202312 1a110850 fd5ff06f jal x0, -44 +11551374ns 202317 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11551658ns 202322 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11552056ns 202329 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11552226ns 202332 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11552681ns 202340 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11552851ns 202343 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11553136ns 202348 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11553420ns 202353 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11553704ns 202358 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11554159ns 202366 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11554329ns 202369 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11554613ns 202374 1a110850 fd5ff06f jal x0, -44 +11554897ns 202379 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11555182ns 202384 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11555579ns 202391 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11555750ns 202394 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11556205ns 202402 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11556375ns 202405 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11556659ns 202410 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11556943ns 202415 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11557228ns 202420 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11557682ns 202428 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11557853ns 202431 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11558137ns 202436 1a110850 fd5ff06f jal x0, -44 +11558421ns 202441 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11558705ns 202446 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11559103ns 202453 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11559274ns 202456 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11559728ns 202464 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11559899ns 202467 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11560183ns 202472 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11560467ns 202477 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11560751ns 202482 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11561206ns 202490 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11561376ns 202493 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11561660ns 202498 1a110850 fd5ff06f jal x0, -44 +11561945ns 202503 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11562229ns 202508 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11562627ns 202515 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11562797ns 202518 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11563252ns 202526 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11563422ns 202529 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11563706ns 202534 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11563991ns 202539 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11564275ns 202544 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11564729ns 202552 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11564900ns 202555 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11565184ns 202560 1a110850 fd5ff06f jal x0, -44 +11565468ns 202565 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11565752ns 202570 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11566150ns 202577 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11566321ns 202580 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11566775ns 202588 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11566946ns 202591 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11567230ns 202596 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11567514ns 202601 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11567798ns 202606 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11568253ns 202614 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11568423ns 202617 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11568708ns 202622 1a110850 fd5ff06f jal x0, -44 +11568992ns 202627 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11569276ns 202632 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11569674ns 202639 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11569844ns 202642 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11570299ns 202650 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11570469ns 202653 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11570754ns 202658 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11571038ns 202663 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11571322ns 202668 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11571777ns 202676 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11571947ns 202679 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11572231ns 202684 1a110850 fd5ff06f jal x0, -44 +11572515ns 202689 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11572800ns 202694 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11573197ns 202701 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11573368ns 202704 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11573823ns 202712 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11573993ns 202715 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11574277ns 202720 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11574561ns 202725 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11574845ns 202730 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11575300ns 202738 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11575471ns 202741 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11575755ns 202746 1a110850 fd5ff06f jal x0, -44 +11576039ns 202751 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11576323ns 202756 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11576721ns 202763 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11576891ns 202766 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11577346ns 202774 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11577517ns 202777 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11577801ns 202782 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11578085ns 202787 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11578369ns 202792 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11578824ns 202800 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11578994ns 202803 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11579278ns 202808 1a110850 fd5ff06f jal x0, -44 +11579563ns 202813 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11579847ns 202818 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11580245ns 202825 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11580415ns 202828 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11580870ns 202836 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11581040ns 202839 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11581324ns 202844 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11581608ns 202849 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11581893ns 202854 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11582347ns 202862 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11582518ns 202865 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11582802ns 202870 1a110850 fd5ff06f jal x0, -44 +11583086ns 202875 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11583370ns 202880 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11583768ns 202887 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11583939ns 202890 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11584393ns 202898 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11584564ns 202901 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11584848ns 202906 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11585132ns 202911 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11585416ns 202916 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11585871ns 202924 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11586041ns 202927 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11586326ns 202932 1a110850 fd5ff06f jal x0, -44 +11586610ns 202937 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11586894ns 202942 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11587292ns 202949 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11587462ns 202952 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11587917ns 202960 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11588087ns 202963 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11588371ns 202968 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11588656ns 202973 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11588940ns 202978 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11589394ns 202986 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11589565ns 202989 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11589849ns 202994 1a110850 fd5ff06f jal x0, -44 +11590133ns 202999 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11590417ns 203004 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11590815ns 203011 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11590986ns 203014 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11591440ns 203022 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11591611ns 203025 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11591895ns 203030 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11592179ns 203035 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11592463ns 203040 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11592918ns 203048 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11593089ns 203051 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11593373ns 203056 1a110850 fd5ff06f jal x0, -44 +11593657ns 203061 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11593941ns 203066 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11594339ns 203073 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11594509ns 203076 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11594964ns 203084 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11595135ns 203087 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11595419ns 203092 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11595703ns 203097 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11595987ns 203102 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11596442ns 203110 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11596612ns 203113 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11596896ns 203118 1a110850 fd5ff06f jal x0, -44 +11597180ns 203123 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11597465ns 203128 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11597862ns 203135 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11598033ns 203138 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11598488ns 203146 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11598658ns 203149 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11598942ns 203154 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11599226ns 203159 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11599511ns 203164 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11599965ns 203172 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11600136ns 203175 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11600420ns 203180 1a110850 fd5ff06f jal x0, -44 +11600704ns 203185 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11600988ns 203190 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11601386ns 203197 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11601557ns 203200 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11602011ns 203208 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11602182ns 203211 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11602466ns 203216 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11602750ns 203221 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11603034ns 203226 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11603489ns 203234 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11603659ns 203237 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11603943ns 203242 1a110850 fd5ff06f jal x0, -44 +11604228ns 203247 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11604512ns 203252 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11604910ns 203259 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11605080ns 203262 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11605535ns 203270 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11605705ns 203273 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11605989ns 203278 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11606274ns 203283 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11606558ns 203288 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11607012ns 203296 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11607183ns 203299 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11607467ns 203304 1a110850 fd5ff06f jal x0, -44 +11607751ns 203309 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11608035ns 203314 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11608433ns 203321 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11608604ns 203324 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11609058ns 203332 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11609229ns 203335 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11609513ns 203340 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11609797ns 203345 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11610081ns 203350 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11610536ns 203358 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11610706ns 203361 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11610991ns 203366 1a110850 fd5ff06f jal x0, -44 +11611275ns 203371 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11611559ns 203376 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11611957ns 203383 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11612127ns 203386 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11612582ns 203394 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11612752ns 203397 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11613037ns 203402 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11613321ns 203407 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11613605ns 203412 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11614060ns 203420 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11614230ns 203423 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11614514ns 203428 1a110850 fd5ff06f jal x0, -44 +11614798ns 203433 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11615083ns 203438 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11615480ns 203445 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11615651ns 203448 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11616106ns 203456 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11616276ns 203459 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11616560ns 203464 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11616844ns 203469 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11617128ns 203474 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11617583ns 203482 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11617754ns 203485 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11618038ns 203490 1a110850 fd5ff06f jal x0, -44 +11618322ns 203495 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11618606ns 203500 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11619004ns 203507 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11619174ns 203510 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11619629ns 203518 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11619800ns 203521 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11620084ns 203526 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11620368ns 203531 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11620652ns 203536 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11621107ns 203544 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11621277ns 203547 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11621561ns 203552 1a110850 fd5ff06f jal x0, -44 +11621846ns 203557 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11622130ns 203562 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11622528ns 203569 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11622698ns 203572 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11623153ns 203580 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11623323ns 203583 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11623607ns 203588 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11623891ns 203593 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11624176ns 203598 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11624630ns 203606 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11624801ns 203609 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11625085ns 203614 1a110850 fd5ff06f jal x0, -44 +11625369ns 203619 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11625653ns 203624 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11626051ns 203631 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11626222ns 203634 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11626676ns 203642 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11626847ns 203645 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11627131ns 203650 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11627415ns 203655 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11627699ns 203660 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11628154ns 203668 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11628324ns 203671 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11628609ns 203676 1a110850 fd5ff06f jal x0, -44 +11628893ns 203681 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11629177ns 203686 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11629575ns 203693 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11629745ns 203696 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11630200ns 203704 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11630370ns 203707 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11630655ns 203712 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11630939ns 203717 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11631223ns 203722 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11631677ns 203730 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11631848ns 203733 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11632132ns 203738 1a110850 fd5ff06f jal x0, -44 +11632416ns 203743 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11632700ns 203748 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11633098ns 203755 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11633269ns 203758 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11633723ns 203766 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11633894ns 203769 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11634178ns 203774 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11634462ns 203779 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11634746ns 203784 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11635201ns 203792 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11635372ns 203795 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11635656ns 203800 1a110850 fd5ff06f jal x0, -44 +11635940ns 203805 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11636224ns 203810 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11636622ns 203817 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11636792ns 203820 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11637247ns 203828 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11637418ns 203831 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11637702ns 203836 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11637986ns 203841 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11638270ns 203846 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11638725ns 203854 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11638895ns 203857 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11639179ns 203862 1a110850 fd5ff06f jal x0, -44 +11639463ns 203867 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11639748ns 203872 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11640145ns 203879 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11640316ns 203882 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11640771ns 203890 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11640941ns 203893 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11641225ns 203898 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11641509ns 203903 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11641794ns 203908 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11642248ns 203916 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11642419ns 203919 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11642703ns 203924 1a110850 fd5ff06f jal x0, -44 +11642987ns 203929 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11643271ns 203934 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11643669ns 203941 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11643840ns 203944 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11644294ns 203952 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11644465ns 203955 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11644749ns 203960 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11645033ns 203965 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11645317ns 203970 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11645772ns 203978 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11645942ns 203981 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11646226ns 203986 1a110850 fd5ff06f jal x0, -44 +11646511ns 203991 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11646795ns 203996 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11647193ns 204003 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11647363ns 204006 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11647818ns 204014 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11647988ns 204017 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11648272ns 204022 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11648557ns 204027 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11648841ns 204032 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11649295ns 204040 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11649466ns 204043 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11649750ns 204048 1a110850 fd5ff06f jal x0, -44 +11650034ns 204053 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11650318ns 204058 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11650716ns 204065 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11650887ns 204068 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11651341ns 204076 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11651512ns 204079 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11651796ns 204084 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11652080ns 204089 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11652364ns 204094 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11652819ns 204102 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11652989ns 204105 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11653274ns 204110 1a110850 fd5ff06f jal x0, -44 +11653558ns 204115 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11653842ns 204120 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11654240ns 204127 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11654410ns 204130 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11654865ns 204138 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11655035ns 204141 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11655320ns 204146 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11655604ns 204151 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11655888ns 204156 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11656343ns 204164 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11656513ns 204167 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11656797ns 204172 1a110850 fd5ff06f jal x0, -44 +11657081ns 204177 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11657366ns 204182 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11657763ns 204189 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11657934ns 204192 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11658389ns 204200 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11658559ns 204203 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11658843ns 204208 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11659127ns 204213 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11659411ns 204218 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11659866ns 204226 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11660037ns 204229 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11660321ns 204234 1a110850 fd5ff06f jal x0, -44 +11660605ns 204239 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11660889ns 204244 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11661287ns 204251 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11661457ns 204254 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11661912ns 204262 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11662083ns 204265 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11662367ns 204270 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11662651ns 204275 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11662935ns 204280 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11663390ns 204288 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11663560ns 204291 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11663844ns 204296 1a110850 fd5ff06f jal x0, -44 +11664129ns 204301 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11664413ns 204306 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11664811ns 204313 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11664981ns 204316 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11665436ns 204324 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11665606ns 204327 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11665890ns 204332 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11666175ns 204337 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11666459ns 204342 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11666913ns 204350 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11667084ns 204353 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11667368ns 204358 1a110850 fd5ff06f jal x0, -44 +11667652ns 204363 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11667936ns 204368 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11668334ns 204375 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11668505ns 204378 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11668959ns 204386 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11669130ns 204389 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11669414ns 204394 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11669698ns 204399 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11669982ns 204404 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11670437ns 204412 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11670607ns 204415 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11670892ns 204420 1a110850 fd5ff06f jal x0, -44 +11671176ns 204425 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11671460ns 204430 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11671858ns 204437 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11672028ns 204440 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11672483ns 204448 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11672653ns 204451 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11672938ns 204456 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11673222ns 204461 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11673506ns 204466 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11673960ns 204474 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11674131ns 204477 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11674415ns 204482 1a110850 fd5ff06f jal x0, -44 +11674699ns 204487 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11674983ns 204492 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11675381ns 204499 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11675552ns 204502 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11676006ns 204510 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11676177ns 204513 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11676461ns 204518 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11676745ns 204523 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11677029ns 204528 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11677484ns 204536 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11677655ns 204539 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11677939ns 204544 1a110850 fd5ff06f jal x0, -44 +11678223ns 204549 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11678507ns 204554 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11678905ns 204561 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11679075ns 204564 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11679530ns 204572 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11679701ns 204575 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11679985ns 204580 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11680269ns 204585 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11680553ns 204590 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11681008ns 204598 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11681178ns 204601 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11681462ns 204606 1a110850 fd5ff06f jal x0, -44 +11681746ns 204611 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11682031ns 204616 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11682428ns 204623 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11682599ns 204626 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11683054ns 204634 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11683224ns 204637 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11683508ns 204642 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11683792ns 204647 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11684077ns 204652 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11684531ns 204660 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11684702ns 204663 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11684986ns 204668 1a110850 fd5ff06f jal x0, -44 +11685270ns 204673 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11685554ns 204678 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11685952ns 204685 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11686123ns 204688 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11686577ns 204696 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11686748ns 204699 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11687032ns 204704 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11687316ns 204709 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11687600ns 204714 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11688055ns 204722 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11688225ns 204725 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11688509ns 204730 1a110850 fd5ff06f jal x0, -44 +11688794ns 204735 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11689078ns 204740 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11689476ns 204747 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11689646ns 204750 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11690101ns 204758 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11690271ns 204761 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11690555ns 204766 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11690840ns 204771 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11691124ns 204776 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11691578ns 204784 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11691749ns 204787 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11692033ns 204792 1a110850 fd5ff06f jal x0, -44 +11692317ns 204797 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11692601ns 204802 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11692999ns 204809 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11693170ns 204812 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11693624ns 204820 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11693795ns 204823 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11694079ns 204828 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11694363ns 204833 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11694647ns 204838 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11695102ns 204846 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11695272ns 204849 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11695557ns 204854 1a110850 fd5ff06f jal x0, -44 +11695841ns 204859 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11696125ns 204864 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11696523ns 204871 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11696693ns 204874 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11697148ns 204882 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11697318ns 204885 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11697603ns 204890 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11697887ns 204895 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11698171ns 204900 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11698626ns 204908 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11698796ns 204911 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11699080ns 204916 1a110850 fd5ff06f jal x0, -44 +11699364ns 204921 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11699649ns 204926 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11700046ns 204933 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11700217ns 204936 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11700672ns 204944 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11700842ns 204947 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11701126ns 204952 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11701410ns 204957 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11701695ns 204962 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11702149ns 204970 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11702320ns 204973 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11702604ns 204978 1a110850 fd5ff06f jal x0, -44 +11702888ns 204983 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11703172ns 204988 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11703570ns 204995 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11703740ns 204998 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11704195ns 205006 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11704366ns 205009 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11704650ns 205014 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11704934ns 205019 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11705218ns 205024 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11705673ns 205032 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11705843ns 205035 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11706127ns 205040 1a110850 fd5ff06f jal x0, -44 +11706412ns 205045 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11706696ns 205050 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11707094ns 205057 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11707264ns 205060 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11707719ns 205068 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11707889ns 205071 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11708173ns 205076 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11708458ns 205081 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11708742ns 205086 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11709196ns 205094 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11709367ns 205097 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11709651ns 205102 1a110850 fd5ff06f jal x0, -44 +11709935ns 205107 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11710219ns 205112 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11710617ns 205119 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11710788ns 205122 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11711242ns 205130 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11711413ns 205133 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11711697ns 205138 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11711981ns 205143 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11712265ns 205148 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11712720ns 205156 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11712890ns 205159 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11713175ns 205164 1a110850 fd5ff06f jal x0, -44 +11713459ns 205169 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11713743ns 205174 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11714141ns 205181 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11714311ns 205184 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11714766ns 205192 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11714936ns 205195 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11715221ns 205200 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11715505ns 205205 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11715789ns 205210 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11716243ns 205218 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11716414ns 205221 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11716698ns 205226 1a110850 fd5ff06f jal x0, -44 +11716982ns 205231 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11717266ns 205236 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11717664ns 205243 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11717835ns 205246 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11718289ns 205254 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11718460ns 205257 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11718744ns 205262 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11719028ns 205267 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11719312ns 205272 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11719767ns 205280 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11719938ns 205283 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11720222ns 205288 1a110850 fd5ff06f jal x0, -44 +11720506ns 205293 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11720790ns 205298 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11721188ns 205305 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11721358ns 205308 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11721813ns 205316 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11721984ns 205319 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11722268ns 205324 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11722552ns 205329 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11722836ns 205334 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11723291ns 205342 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11723461ns 205345 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11723745ns 205350 1a110850 fd5ff06f jal x0, -44 +11724029ns 205355 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11724314ns 205360 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11724711ns 205367 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11724882ns 205370 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11725337ns 205378 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11725507ns 205381 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11725791ns 205386 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11726075ns 205391 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11726360ns 205396 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11726814ns 205404 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11726985ns 205407 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11727269ns 205412 1a110850 fd5ff06f jal x0, -44 +11727553ns 205417 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11727837ns 205422 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11728235ns 205429 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11728406ns 205432 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11728860ns 205440 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11729031ns 205443 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11729315ns 205448 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11729599ns 205453 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11729883ns 205458 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11730338ns 205466 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11730508ns 205469 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11730792ns 205474 1a110850 fd5ff06f jal x0, -44 +11731077ns 205479 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11731361ns 205484 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11731759ns 205491 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11731929ns 205494 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11732384ns 205502 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11732554ns 205505 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11732838ns 205510 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11733123ns 205515 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11733407ns 205520 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11733861ns 205528 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11734032ns 205531 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11734316ns 205536 1a110850 fd5ff06f jal x0, -44 +11734600ns 205541 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11734884ns 205546 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11735282ns 205553 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11735453ns 205556 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11735907ns 205564 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11736078ns 205567 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11736362ns 205572 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11736646ns 205577 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11736930ns 205582 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11737385ns 205590 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11737555ns 205593 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11737840ns 205598 1a110850 fd5ff06f jal x0, -44 +11738124ns 205603 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11738408ns 205608 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11738806ns 205615 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11738976ns 205618 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11739431ns 205626 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11739601ns 205629 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11739886ns 205634 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11740170ns 205639 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11740454ns 205644 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11740909ns 205652 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11741079ns 205655 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11741363ns 205660 1a110850 fd5ff06f jal x0, -44 +11741647ns 205665 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11741932ns 205670 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11742329ns 205677 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11742500ns 205680 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11742955ns 205688 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11743125ns 205691 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11743409ns 205696 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11743693ns 205701 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11743978ns 205706 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11744432ns 205714 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11744603ns 205717 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11744887ns 205722 1a110850 fd5ff06f jal x0, -44 +11745171ns 205727 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11745455ns 205732 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11745853ns 205739 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11746023ns 205742 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11746478ns 205750 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11746649ns 205753 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11746933ns 205758 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11747217ns 205763 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11747501ns 205768 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11747956ns 205776 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11748126ns 205779 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11748410ns 205784 1a110850 fd5ff06f jal x0, -44 +11748695ns 205789 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11748979ns 205794 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11749377ns 205801 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11749547ns 205804 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11750002ns 205812 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11750172ns 205815 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11750456ns 205820 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11750741ns 205825 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11751025ns 205830 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11751479ns 205838 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11751650ns 205841 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11751934ns 205846 1a110850 fd5ff06f jal x0, -44 +11752218ns 205851 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11752502ns 205856 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11752900ns 205863 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11753071ns 205866 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11753525ns 205874 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11753696ns 205877 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11753980ns 205882 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11754264ns 205887 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11754548ns 205892 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11755003ns 205900 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11755173ns 205903 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11755458ns 205908 1a110850 fd5ff06f jal x0, -44 +11755742ns 205913 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11756026ns 205918 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11756424ns 205925 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11756594ns 205928 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11757049ns 205936 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11757219ns 205939 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11757504ns 205944 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11757788ns 205949 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11758072ns 205954 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11758527ns 205962 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11758697ns 205965 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11758981ns 205970 1a110850 fd5ff06f jal x0, -44 +11759265ns 205975 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11759549ns 205980 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11759947ns 205987 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11760118ns 205990 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11760572ns 205998 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11760743ns 206001 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11761027ns 206006 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11761311ns 206011 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11761595ns 206016 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11762050ns 206024 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11762221ns 206027 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11762505ns 206032 1a110850 fd5ff06f jal x0, -44 +11762789ns 206037 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11763073ns 206042 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11763471ns 206049 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11763641ns 206052 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11764096ns 206060 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11764267ns 206063 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11764551ns 206068 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11764835ns 206073 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11765119ns 206078 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11765574ns 206086 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11765744ns 206089 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11766028ns 206094 1a110850 fd5ff06f jal x0, -44 +11766312ns 206099 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11766597ns 206104 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11766994ns 206111 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11767165ns 206114 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11767620ns 206122 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11767790ns 206125 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11768074ns 206130 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11768358ns 206135 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11768643ns 206140 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11769097ns 206148 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11769268ns 206151 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11769552ns 206156 1a110850 fd5ff06f jal x0, -44 +11769836ns 206161 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11770120ns 206166 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11770518ns 206173 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11770689ns 206176 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11771143ns 206184 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11771314ns 206187 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11771598ns 206192 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11771882ns 206197 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11772166ns 206202 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11772621ns 206210 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11772791ns 206213 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11773075ns 206218 1a110850 fd5ff06f jal x0, -44 +11773360ns 206223 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11773644ns 206228 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11774042ns 206235 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11774212ns 206238 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11774667ns 206246 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11774837ns 206249 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11775121ns 206254 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11775406ns 206259 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11775690ns 206264 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11776144ns 206272 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11776315ns 206275 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11776599ns 206280 1a110850 fd5ff06f jal x0, -44 +11776883ns 206285 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11777167ns 206290 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11777565ns 206297 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11777736ns 206300 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11778190ns 206308 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11778361ns 206311 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11778645ns 206316 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11778929ns 206321 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11779213ns 206326 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11779668ns 206334 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11779839ns 206337 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11780123ns 206342 1a110850 fd5ff06f jal x0, -44 +11780407ns 206347 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11780691ns 206352 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11781089ns 206359 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11781259ns 206362 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11781714ns 206370 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11781884ns 206373 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11782169ns 206378 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11782453ns 206383 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11782737ns 206388 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11783192ns 206396 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11783362ns 206399 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11783646ns 206404 1a110850 fd5ff06f jal x0, -44 +11783930ns 206409 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11784215ns 206414 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11784612ns 206421 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11784783ns 206424 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11785238ns 206432 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11785408ns 206435 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11785692ns 206440 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11785976ns 206445 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11786261ns 206450 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11786715ns 206458 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11786886ns 206461 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11787170ns 206466 1a110850 fd5ff06f jal x0, -44 +11787454ns 206471 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11787738ns 206476 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11788136ns 206483 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11788306ns 206486 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11788761ns 206494 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11788932ns 206497 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11789216ns 206502 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11789500ns 206507 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11789784ns 206512 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11790239ns 206520 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11790409ns 206523 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11790693ns 206528 1a110850 fd5ff06f jal x0, -44 +11790978ns 206533 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11791262ns 206538 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11791660ns 206545 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11791830ns 206548 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11792285ns 206556 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11792455ns 206559 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11792739ns 206564 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11793024ns 206569 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11793308ns 206574 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11793762ns 206582 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11793933ns 206585 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11794217ns 206590 1a110850 fd5ff06f jal x0, -44 +11794501ns 206595 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11794785ns 206600 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11795183ns 206607 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11795354ns 206610 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11795808ns 206618 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11795979ns 206621 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11796263ns 206626 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11796547ns 206631 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11796831ns 206636 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11797286ns 206644 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11797456ns 206647 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11797741ns 206652 1a110850 fd5ff06f jal x0, -44 +11798025ns 206657 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11798309ns 206662 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11798707ns 206669 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11798877ns 206672 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11799332ns 206680 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11799502ns 206683 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11799787ns 206688 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11800071ns 206693 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11800355ns 206698 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11800810ns 206706 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11800980ns 206709 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11801264ns 206714 1a110850 fd5ff06f jal x0, -44 +11801548ns 206719 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11801832ns 206724 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11802230ns 206731 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11802401ns 206734 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11802855ns 206742 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11803026ns 206745 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11803310ns 206750 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11803594ns 206755 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11803878ns 206760 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11804333ns 206768 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11804504ns 206771 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11804788ns 206776 1a110850 fd5ff06f jal x0, -44 +11805072ns 206781 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11805356ns 206786 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11805754ns 206793 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11805924ns 206796 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11806379ns 206804 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11806550ns 206807 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11806834ns 206812 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11807118ns 206817 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11807402ns 206822 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11807857ns 206830 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11808027ns 206833 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11808311ns 206838 1a110850 fd5ff06f jal x0, -44 +11808595ns 206843 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11808880ns 206848 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11809277ns 206855 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11809448ns 206858 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11809903ns 206866 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11810073ns 206869 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11810357ns 206874 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11810641ns 206879 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11810926ns 206884 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11811380ns 206892 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11811551ns 206895 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11811835ns 206900 1a110850 fd5ff06f jal x0, -44 +11812119ns 206905 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11812403ns 206910 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11812801ns 206917 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11812972ns 206920 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11813426ns 206928 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11813597ns 206931 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11813881ns 206936 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11814165ns 206941 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11814449ns 206946 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11814904ns 206954 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11815074ns 206957 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11815359ns 206962 1a110850 fd5ff06f jal x0, -44 +11815643ns 206967 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11815927ns 206972 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11816325ns 206979 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11816495ns 206982 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11816950ns 206990 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11817120ns 206993 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11817404ns 206998 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11817689ns 207003 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11817973ns 207008 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11818427ns 207016 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11818598ns 207019 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11818882ns 207024 1a110850 fd5ff06f jal x0, -44 +11819166ns 207029 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11819450ns 207034 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11819848ns 207041 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11820019ns 207044 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11820473ns 207052 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11820644ns 207055 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11820928ns 207060 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11821212ns 207065 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11821496ns 207070 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11821951ns 207078 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11822122ns 207081 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11822406ns 207086 1a110850 fd5ff06f jal x0, -44 +11822690ns 207091 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11822974ns 207096 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11823372ns 207103 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11823542ns 207106 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11823997ns 207114 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11824167ns 207117 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11824452ns 207122 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11824736ns 207127 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11825020ns 207132 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11825475ns 207140 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11825645ns 207143 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11825929ns 207148 1a110850 fd5ff06f jal x0, -44 +11826213ns 207153 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11826498ns 207158 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11826895ns 207165 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11827066ns 207168 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11827521ns 207176 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11827691ns 207179 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11827975ns 207184 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11828259ns 207189 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11828544ns 207194 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11828998ns 207202 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11829169ns 207205 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11829453ns 207210 1a110850 fd5ff06f jal x0, -44 +11829737ns 207215 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11830021ns 207220 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11830419ns 207227 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11830589ns 207230 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11831044ns 207238 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11831215ns 207241 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11831499ns 207246 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11831783ns 207251 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11832067ns 207256 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11832522ns 207264 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11832692ns 207267 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11832976ns 207272 1a110850 fd5ff06f jal x0, -44 +11833261ns 207277 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11833545ns 207282 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11833943ns 207289 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11834113ns 207292 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11834568ns 207300 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11834738ns 207303 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11835022ns 207308 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11835307ns 207313 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11835591ns 207318 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11836045ns 207326 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11836216ns 207329 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11836500ns 207334 1a110850 fd5ff06f jal x0, -44 +11836784ns 207339 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11837068ns 207344 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11837466ns 207351 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11837637ns 207354 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11838091ns 207362 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11838262ns 207365 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11838546ns 207370 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11838830ns 207375 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11839114ns 207380 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11839569ns 207388 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11839739ns 207391 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11840024ns 207396 1a110850 fd5ff06f jal x0, -44 +11840308ns 207401 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11840592ns 207406 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11840990ns 207413 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11841160ns 207416 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11841615ns 207424 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11841785ns 207427 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11842070ns 207432 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11842354ns 207437 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11842638ns 207442 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11843093ns 207450 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11843263ns 207453 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11843547ns 207458 1a110850 fd5ff06f jal x0, -44 +11843831ns 207463 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11844115ns 207468 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11844513ns 207475 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11844684ns 207478 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11845138ns 207486 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11845309ns 207489 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11845593ns 207494 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11845877ns 207499 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11846161ns 207504 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11846616ns 207512 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11846787ns 207515 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11847071ns 207520 1a110850 fd5ff06f jal x0, -44 +11847355ns 207525 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11847639ns 207530 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11848037ns 207537 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11848207ns 207540 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11848662ns 207548 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11848833ns 207551 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11849117ns 207556 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11849401ns 207561 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11849685ns 207566 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11850140ns 207574 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11850310ns 207577 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11850594ns 207582 1a110850 fd5ff06f jal x0, -44 +11850879ns 207587 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11851163ns 207592 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11851560ns 207599 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11851731ns 207602 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11852186ns 207610 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11852356ns 207613 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11852640ns 207618 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11852924ns 207623 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11853209ns 207628 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11853663ns 207636 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11853834ns 207639 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11854118ns 207644 1a110850 fd5ff06f jal x0, -44 +11854402ns 207649 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11854686ns 207654 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11855084ns 207661 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11855255ns 207664 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11855709ns 207672 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11855880ns 207675 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11856164ns 207680 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11856448ns 207685 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11856732ns 207690 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11857187ns 207698 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11857357ns 207701 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11857642ns 207706 1a110850 fd5ff06f jal x0, -44 +11857926ns 207711 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11858210ns 207716 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11858608ns 207723 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11858778ns 207726 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11859233ns 207734 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11859403ns 207737 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11859687ns 207742 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11859972ns 207747 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11860256ns 207752 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11860710ns 207760 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11860881ns 207763 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11861165ns 207768 1a110850 fd5ff06f jal x0, -44 +11861449ns 207773 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11861733ns 207778 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11862131ns 207785 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11862302ns 207788 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11862756ns 207796 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11862927ns 207799 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11863211ns 207804 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11863495ns 207809 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11863779ns 207814 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11864234ns 207822 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11864405ns 207825 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11864689ns 207830 1a110850 fd5ff06f jal x0, -44 +11864973ns 207835 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11865257ns 207840 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11865655ns 207847 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11865825ns 207850 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11866280ns 207858 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11866450ns 207861 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11866735ns 207866 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11867019ns 207871 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11867303ns 207876 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11867758ns 207884 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11867928ns 207887 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11868212ns 207892 1a110850 fd5ff06f jal x0, -44 +11868496ns 207897 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11868781ns 207902 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11869178ns 207909 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11869349ns 207912 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11869804ns 207920 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11869974ns 207923 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11870258ns 207928 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11870542ns 207933 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11870827ns 207938 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11871281ns 207946 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11871452ns 207949 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11871736ns 207954 1a110850 fd5ff06f jal x0, -44 +11872020ns 207959 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11872304ns 207964 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11872702ns 207971 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11872872ns 207974 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11873327ns 207982 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11873498ns 207985 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11873782ns 207990 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11874066ns 207995 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11874350ns 208000 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11874805ns 208008 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11874975ns 208011 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11875259ns 208016 1a110850 fd5ff06f jal x0, -44 +11875544ns 208021 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11875828ns 208026 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11876226ns 208033 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11876396ns 208036 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11876851ns 208044 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11877021ns 208047 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11877305ns 208052 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11877590ns 208057 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11877874ns 208062 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11878328ns 208070 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11878499ns 208073 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11878783ns 208078 1a110850 fd5ff06f jal x0, -44 +11879067ns 208083 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11879351ns 208088 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11879749ns 208095 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11879920ns 208098 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11880374ns 208106 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11880545ns 208109 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11880829ns 208114 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11881113ns 208119 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11881397ns 208124 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11881852ns 208132 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11882022ns 208135 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11882307ns 208140 1a110850 fd5ff06f jal x0, -44 +11882591ns 208145 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11882875ns 208150 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11883273ns 208157 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11883443ns 208160 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11883898ns 208168 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11884068ns 208171 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11884353ns 208176 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11884637ns 208181 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11884921ns 208186 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11885376ns 208194 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11885546ns 208197 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11885830ns 208202 1a110850 fd5ff06f jal x0, -44 +11886114ns 208207 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11886399ns 208212 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11886796ns 208219 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11886967ns 208222 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11887421ns 208230 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11887592ns 208233 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11887876ns 208238 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11888160ns 208243 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11888444ns 208248 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11888899ns 208256 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11889070ns 208259 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11889354ns 208264 1a110850 fd5ff06f jal x0, -44 +11889638ns 208269 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11889922ns 208274 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11890320ns 208281 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11890490ns 208284 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11890945ns 208292 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11891116ns 208295 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11891400ns 208300 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11891684ns 208305 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11891968ns 208310 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11892423ns 208318 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11892593ns 208321 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11892877ns 208326 1a110850 fd5ff06f jal x0, -44 +11893162ns 208331 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11893446ns 208336 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11893843ns 208343 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11894014ns 208346 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11894469ns 208354 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11894639ns 208357 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11894923ns 208362 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11895207ns 208367 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11895492ns 208372 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11895946ns 208380 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11896117ns 208383 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11896401ns 208388 1a110850 fd5ff06f jal x0, -44 +11896685ns 208393 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11896969ns 208398 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11897367ns 208405 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11897538ns 208408 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11897992ns 208416 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11898163ns 208419 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11898447ns 208424 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11898731ns 208429 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11899015ns 208434 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11899470ns 208442 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11899640ns 208445 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11899925ns 208450 1a110850 fd5ff06f jal x0, -44 +11900209ns 208455 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11900493ns 208460 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11900891ns 208467 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11901061ns 208470 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11901516ns 208478 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11901686ns 208481 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11901970ns 208486 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11902255ns 208491 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11902539ns 208496 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11902993ns 208504 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11903164ns 208507 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11903448ns 208512 1a110850 fd5ff06f jal x0, -44 +11903732ns 208517 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11904016ns 208522 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11904414ns 208529 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11904585ns 208532 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11905039ns 208540 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11905210ns 208543 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11905494ns 208548 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11905778ns 208553 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11906062ns 208558 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11906517ns 208566 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11906688ns 208569 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11906972ns 208574 1a110850 fd5ff06f jal x0, -44 +11907256ns 208579 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11907540ns 208584 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11907938ns 208591 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11908108ns 208594 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11908563ns 208602 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11908733ns 208605 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11909018ns 208610 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11909302ns 208615 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11909586ns 208620 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11910041ns 208628 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11910211ns 208631 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11910495ns 208636 1a110850 fd5ff06f jal x0, -44 +11910779ns 208641 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11911064ns 208646 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11911461ns 208653 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11911632ns 208656 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11912087ns 208664 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11912257ns 208667 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11912541ns 208672 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11912825ns 208677 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11913110ns 208682 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11913564ns 208690 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11913735ns 208693 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11914019ns 208698 1a110850 fd5ff06f jal x0, -44 +11914303ns 208703 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11914587ns 208708 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11914985ns 208715 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11915155ns 208718 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11915610ns 208726 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11915781ns 208729 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11916065ns 208734 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11916349ns 208739 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11916633ns 208744 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11917088ns 208752 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11917258ns 208755 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11917542ns 208760 1a110850 fd5ff06f jal x0, -44 +11917827ns 208765 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11918111ns 208770 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11918509ns 208777 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11918679ns 208780 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11919134ns 208788 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11919304ns 208791 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11919588ns 208796 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11919873ns 208801 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11920157ns 208806 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11920611ns 208814 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11920782ns 208817 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11921066ns 208822 1a110850 fd5ff06f jal x0, -44 +11921350ns 208827 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11921634ns 208832 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11922032ns 208839 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11922203ns 208842 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11922657ns 208850 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11922828ns 208853 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11923112ns 208858 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11923396ns 208863 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11923680ns 208868 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11924135ns 208876 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11924305ns 208879 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11924590ns 208884 1a110850 fd5ff06f jal x0, -44 +11924874ns 208889 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11925158ns 208894 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11925556ns 208901 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11925726ns 208904 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11926181ns 208912 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11926351ns 208915 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11926636ns 208920 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11926920ns 208925 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11927204ns 208930 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11927659ns 208938 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11927829ns 208941 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11928113ns 208946 1a110850 fd5ff06f jal x0, -44 +11928397ns 208951 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11928682ns 208956 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11929079ns 208963 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11929250ns 208966 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11929704ns 208974 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11929875ns 208977 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11930159ns 208982 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11930443ns 208987 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11930727ns 208992 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11931182ns 209000 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11931353ns 209003 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11931637ns 209008 1a110850 fd5ff06f jal x0, -44 +11931921ns 209013 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11932205ns 209018 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11932603ns 209025 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11932773ns 209028 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11933228ns 209036 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11933399ns 209039 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11933683ns 209044 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11933967ns 209049 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11934251ns 209054 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11934706ns 209062 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11934876ns 209065 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11935160ns 209070 1a110850 fd5ff06f jal x0, -44 +11935445ns 209075 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11935729ns 209080 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11936127ns 209087 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11936297ns 209090 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11936752ns 209098 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11936922ns 209101 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11937206ns 209106 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11937490ns 209111 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11937775ns 209116 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11938229ns 209124 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11938400ns 209127 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11938684ns 209132 1a110850 fd5ff06f jal x0, -44 +11938968ns 209137 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11939252ns 209142 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11939650ns 209149 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11939821ns 209152 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11940275ns 209160 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11940446ns 209163 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11940730ns 209168 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11941014ns 209173 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11941298ns 209178 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11941753ns 209186 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11941923ns 209189 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11942208ns 209194 1a110850 fd5ff06f jal x0, -44 +11942492ns 209199 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11942776ns 209204 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11943174ns 209211 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11943344ns 209214 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11943799ns 209222 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11943969ns 209225 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11944253ns 209230 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11944538ns 209235 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11944822ns 209240 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11945276ns 209248 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11945447ns 209251 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11945731ns 209256 1a110850 fd5ff06f jal x0, -44 +11946015ns 209261 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11946299ns 209266 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11946697ns 209273 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11946868ns 209276 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11947322ns 209284 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11947493ns 209287 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11947777ns 209292 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11948061ns 209297 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11948345ns 209302 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11948800ns 209310 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11948971ns 209313 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11949255ns 209318 1a110850 fd5ff06f jal x0, -44 +11949539ns 209323 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11949823ns 209328 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11950221ns 209335 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11950391ns 209338 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11950846ns 209346 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11951016ns 209349 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11951301ns 209354 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11951585ns 209359 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11951869ns 209364 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11952324ns 209372 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11952494ns 209375 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11952778ns 209380 1a110850 fd5ff06f jal x0, -44 +11953062ns 209385 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11953347ns 209390 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11953744ns 209397 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11953915ns 209400 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11954370ns 209408 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11954540ns 209411 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11954824ns 209416 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11955108ns 209421 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11955393ns 209426 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11955847ns 209434 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11956018ns 209437 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11956302ns 209442 1a110850 fd5ff06f jal x0, -44 +11956586ns 209447 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11956870ns 209452 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11957268ns 209459 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11957439ns 209462 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11957893ns 209470 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11958064ns 209473 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11958348ns 209478 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11958632ns 209483 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11958916ns 209488 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11959371ns 209496 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11959541ns 209499 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11959825ns 209504 1a110850 fd5ff06f jal x0, -44 +11960110ns 209509 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11960394ns 209514 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11960792ns 209521 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11960962ns 209524 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11961417ns 209532 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11961587ns 209535 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11961871ns 209540 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11962156ns 209545 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11962440ns 209550 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11962894ns 209558 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11963065ns 209561 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11963349ns 209566 1a110850 fd5ff06f jal x0, -44 +11963633ns 209571 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11963917ns 209576 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11964315ns 209583 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11964486ns 209586 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11964940ns 209594 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11965111ns 209597 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11965395ns 209602 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11965679ns 209607 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11965963ns 209612 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11966418ns 209620 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11966588ns 209623 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11966873ns 209628 1a110850 fd5ff06f jal x0, -44 +11967157ns 209633 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11967441ns 209638 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11967839ns 209645 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11968009ns 209648 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11968464ns 209656 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11968634ns 209659 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11968919ns 209664 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11969203ns 209669 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11969487ns 209674 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11969942ns 209682 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11970112ns 209685 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11970396ns 209690 1a110850 fd5ff06f jal x0, -44 +11970680ns 209695 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11970965ns 209700 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11971362ns 209707 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11971533ns 209710 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11971987ns 209718 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11972158ns 209721 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11972442ns 209726 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11972726ns 209731 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11973010ns 209736 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11973465ns 209744 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11973636ns 209747 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11973920ns 209752 1a110850 fd5ff06f jal x0, -44 +11974204ns 209757 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11974488ns 209762 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11974886ns 209769 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11975056ns 209772 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11975511ns 209780 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11975682ns 209783 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11975966ns 209788 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11976250ns 209793 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11976534ns 209798 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11976989ns 209806 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11977159ns 209809 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11977443ns 209814 1a110850 fd5ff06f jal x0, -44 +11977728ns 209819 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11978012ns 209824 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11978410ns 209831 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11978580ns 209834 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11979035ns 209842 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11979205ns 209845 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11979489ns 209850 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11979773ns 209855 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11980058ns 209860 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11980512ns 209868 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11980683ns 209871 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11980967ns 209876 1a110850 fd5ff06f jal x0, -44 +11981251ns 209881 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11981535ns 209886 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11981933ns 209893 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11982104ns 209896 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11982558ns 209904 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11982729ns 209907 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11983013ns 209912 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11983297ns 209917 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11983581ns 209922 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11984036ns 209930 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11984206ns 209933 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11984491ns 209938 1a110850 fd5ff06f jal x0, -44 +11984775ns 209943 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11985059ns 209948 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11985457ns 209955 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11985627ns 209958 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11986082ns 209966 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11986252ns 209969 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11986536ns 209974 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11986821ns 209979 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11987105ns 209984 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11987559ns 209992 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11987730ns 209995 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11988014ns 210000 1a110850 fd5ff06f jal x0, -44 +11988298ns 210005 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11988582ns 210010 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11988980ns 210017 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11989151ns 210020 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11989605ns 210028 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11989776ns 210031 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11990060ns 210036 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11990344ns 210041 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11990628ns 210046 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11991083ns 210054 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11991254ns 210057 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11991538ns 210062 1a110850 fd5ff06f jal x0, -44 +11991822ns 210067 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11992106ns 210072 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11992504ns 210079 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11992674ns 210082 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11993129ns 210090 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11993299ns 210093 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11993584ns 210098 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11993868ns 210103 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11994152ns 210108 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11994607ns 210116 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11994777ns 210119 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11995061ns 210124 1a110850 fd5ff06f jal x0, -44 +11995345ns 210129 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11995630ns 210134 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11996027ns 210141 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11996198ns 210144 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11996653ns 210152 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +11996823ns 210155 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +11997107ns 210160 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11997391ns 210165 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11997676ns 210170 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +11998130ns 210178 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +11998301ns 210181 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +11998585ns 210186 1a110850 fd5ff06f jal x0, -44 +11998869ns 210191 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +11999153ns 210196 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +11999551ns 210203 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +11999722ns 210206 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12000176ns 210214 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12000347ns 210217 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12000631ns 210222 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12000915ns 210227 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12001199ns 210232 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12001654ns 210240 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12001824ns 210243 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12002108ns 210248 1a110850 fd5ff06f jal x0, -44 +12002393ns 210253 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12002677ns 210258 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12003075ns 210265 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12003245ns 210268 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12003700ns 210276 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12003870ns 210279 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12004154ns 210284 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12004439ns 210289 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12004723ns 210294 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12005177ns 210302 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12005348ns 210305 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12005632ns 210310 1a110850 fd5ff06f jal x0, -44 +12005916ns 210315 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12006200ns 210320 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12006598ns 210327 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12006769ns 210330 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12007223ns 210338 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12007394ns 210341 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12007678ns 210346 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12007962ns 210351 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12008246ns 210356 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12008701ns 210364 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12008871ns 210367 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12009156ns 210372 1a110850 fd5ff06f jal x0, -44 +12009440ns 210377 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12009724ns 210382 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12010122ns 210389 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12010292ns 210392 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12010747ns 210400 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12010917ns 210403 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12011202ns 210408 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12011486ns 210413 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12011770ns 210418 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12012225ns 210426 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12012395ns 210429 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12012679ns 210434 1a110850 fd5ff06f jal x0, -44 +12012963ns 210439 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12013248ns 210444 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12013645ns 210451 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12013816ns 210454 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12014271ns 210462 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12014441ns 210465 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12014725ns 210470 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12015009ns 210475 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12015293ns 210480 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12015748ns 210488 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12015919ns 210491 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12016203ns 210496 1a110850 fd5ff06f jal x0, -44 +12016487ns 210501 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12016771ns 210506 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12017169ns 210513 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12017339ns 210516 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12017794ns 210524 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12017965ns 210527 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12018249ns 210532 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12018533ns 210537 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12018817ns 210542 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12019272ns 210550 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12019442ns 210553 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12019726ns 210558 1a110850 fd5ff06f jal x0, -44 +12020011ns 210563 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12020295ns 210568 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12020693ns 210575 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12020863ns 210578 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12021318ns 210586 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12021488ns 210589 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12021772ns 210594 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12022056ns 210599 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12022341ns 210604 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12022795ns 210612 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12022966ns 210615 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12023250ns 210620 1a110850 fd5ff06f jal x0, -44 +12023534ns 210625 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12023818ns 210630 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12024216ns 210637 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12024387ns 210640 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12024841ns 210648 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12025012ns 210651 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12025296ns 210656 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12025580ns 210661 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12025864ns 210666 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12026319ns 210674 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12026489ns 210677 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12026774ns 210682 1a110850 fd5ff06f jal x0, -44 +12027058ns 210687 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12027342ns 210692 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12027740ns 210699 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12027910ns 210702 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12028365ns 210710 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12028535ns 210713 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12028819ns 210718 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12029104ns 210723 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12029388ns 210728 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12029842ns 210736 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12030013ns 210739 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12030297ns 210744 1a110850 fd5ff06f jal x0, -44 +12030581ns 210749 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12030865ns 210754 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12031263ns 210761 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12031434ns 210764 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12031888ns 210772 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12032059ns 210775 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12032343ns 210780 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12032627ns 210785 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12032911ns 210790 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12033366ns 210798 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12033537ns 210801 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12033821ns 210806 1a110850 fd5ff06f jal x0, -44 +12034105ns 210811 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12034389ns 210816 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12034787ns 210823 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12034957ns 210826 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12035412ns 210834 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12035583ns 210837 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12035867ns 210842 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12036151ns 210847 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12036435ns 210852 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12036890ns 210860 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12037060ns 210863 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12037344ns 210868 1a110850 fd5ff06f jal x0, -44 +12037628ns 210873 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12037913ns 210878 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12038310ns 210885 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12038481ns 210888 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12038936ns 210896 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12039106ns 210899 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12039390ns 210904 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12039674ns 210909 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12039959ns 210914 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12040413ns 210922 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12040584ns 210925 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12040868ns 210930 1a110850 fd5ff06f jal x0, -44 +12041152ns 210935 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12041436ns 210940 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12041834ns 210947 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12042005ns 210950 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12042459ns 210958 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12042630ns 210961 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12042914ns 210966 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12043198ns 210971 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12043482ns 210976 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12043937ns 210984 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12044107ns 210987 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12044391ns 210992 1a110850 fd5ff06f jal x0, -44 +12044676ns 210997 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12044960ns 211002 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12045358ns 211009 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12045528ns 211012 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12045983ns 211020 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12046153ns 211023 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12046437ns 211028 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12046722ns 211033 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12047006ns 211038 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12047460ns 211046 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12047631ns 211049 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12047915ns 211054 1a110850 fd5ff06f jal x0, -44 +12048199ns 211059 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12048483ns 211064 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12048881ns 211071 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12049052ns 211074 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12049506ns 211082 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12049677ns 211085 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12049961ns 211090 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12050245ns 211095 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12050529ns 211100 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12050984ns 211108 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12051154ns 211111 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12051439ns 211116 1a110850 fd5ff06f jal x0, -44 +12051723ns 211121 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12052007ns 211126 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12052405ns 211133 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12052575ns 211136 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12053030ns 211144 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12053200ns 211147 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12053485ns 211152 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12053769ns 211157 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12054053ns 211162 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12054508ns 211170 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12054678ns 211173 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12054962ns 211178 1a110850 fd5ff06f jal x0, -44 +12055246ns 211183 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12055531ns 211188 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12055928ns 211195 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12056099ns 211198 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12056554ns 211206 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12056724ns 211209 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12057008ns 211214 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12057292ns 211219 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12057576ns 211224 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12058031ns 211232 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12058202ns 211235 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12058486ns 211240 1a110850 fd5ff06f jal x0, -44 +12058770ns 211245 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12059054ns 211250 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12059452ns 211257 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12059622ns 211260 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12060077ns 211268 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12060248ns 211271 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12060532ns 211276 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12060816ns 211281 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12061100ns 211286 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12061555ns 211294 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12061725ns 211297 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12062009ns 211302 1a110850 fd5ff06f jal x0, -44 +12062294ns 211307 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12062578ns 211312 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12062976ns 211319 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12063146ns 211322 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12063601ns 211330 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12063771ns 211333 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12064055ns 211338 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12064339ns 211343 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12064624ns 211348 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12065078ns 211356 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12065249ns 211359 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12065533ns 211364 1a110850 fd5ff06f jal x0, -44 +12065817ns 211369 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12066101ns 211374 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12066499ns 211381 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12066670ns 211384 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12067124ns 211392 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12067295ns 211395 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12067579ns 211400 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12067863ns 211405 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12068147ns 211410 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12068602ns 211418 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12068772ns 211421 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12069057ns 211426 1a110850 fd5ff06f jal x0, -44 +12069341ns 211431 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12069625ns 211436 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12070023ns 211443 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12070193ns 211446 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12070648ns 211454 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12070818ns 211457 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12071103ns 211462 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12071387ns 211467 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12071671ns 211472 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12072125ns 211480 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12072296ns 211483 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12072580ns 211488 1a110850 fd5ff06f jal x0, -44 +12072864ns 211493 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12073148ns 211498 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12073546ns 211505 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12073717ns 211508 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12074171ns 211516 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12074342ns 211519 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12074626ns 211524 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12074910ns 211529 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12075194ns 211534 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12075649ns 211542 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12075820ns 211545 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12076104ns 211550 1a110850 fd5ff06f jal x0, -44 +12076388ns 211555 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12076672ns 211560 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12077070ns 211567 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12077240ns 211570 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12077695ns 211578 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12077866ns 211581 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12078150ns 211586 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12078434ns 211591 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12078718ns 211596 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12079173ns 211604 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12079343ns 211607 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12079627ns 211612 1a110850 fd5ff06f jal x0, -44 +12079911ns 211617 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12080196ns 211622 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12080593ns 211629 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12080764ns 211632 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12081219ns 211640 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12081389ns 211643 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12081673ns 211648 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12081957ns 211653 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12082242ns 211658 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12082696ns 211666 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12082867ns 211669 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12083151ns 211674 1a110850 fd5ff06f jal x0, -44 +12083435ns 211679 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12083719ns 211684 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12084117ns 211691 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12084288ns 211694 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12084742ns 211702 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12084913ns 211705 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12085197ns 211710 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12085481ns 211715 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12085765ns 211720 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12086220ns 211728 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12086390ns 211731 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12086674ns 211736 1a110850 fd5ff06f jal x0, -44 +12086959ns 211741 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12087243ns 211746 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12087641ns 211753 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12087811ns 211756 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12088266ns 211764 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12088436ns 211767 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12088720ns 211772 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12089005ns 211777 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12089289ns 211782 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12089743ns 211790 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12089914ns 211793 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12090198ns 211798 1a110850 fd5ff06f jal x0, -44 +12090482ns 211803 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12090766ns 211808 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12091164ns 211815 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12091335ns 211818 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12091789ns 211826 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12091960ns 211829 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12092244ns 211834 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12092528ns 211839 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12092812ns 211844 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12093267ns 211852 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12093437ns 211855 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12093722ns 211860 1a110850 fd5ff06f jal x0, -44 +12094006ns 211865 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12094290ns 211870 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12094688ns 211877 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12094858ns 211880 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12095313ns 211888 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12095483ns 211891 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12095768ns 211896 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12096052ns 211901 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12096336ns 211906 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12096791ns 211914 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12096961ns 211917 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12097245ns 211922 1a110850 fd5ff06f jal x0, -44 +12097529ns 211927 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12097814ns 211932 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12098211ns 211939 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12098382ns 211942 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12098837ns 211950 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12099007ns 211953 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12099291ns 211958 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12099575ns 211963 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12099859ns 211968 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12100314ns 211976 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12100485ns 211979 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12100769ns 211984 1a110850 fd5ff06f jal x0, -44 +12101053ns 211989 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12101337ns 211994 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12101735ns 212001 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12101905ns 212004 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12102360ns 212012 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12102531ns 212015 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12102815ns 212020 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12103099ns 212025 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12103383ns 212030 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12103838ns 212038 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12104008ns 212041 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12104292ns 212046 1a110850 fd5ff06f jal x0, -44 +12104577ns 212051 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12104861ns 212056 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12105259ns 212063 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12105429ns 212066 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12105884ns 212074 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12106054ns 212077 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12106338ns 212082 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12106623ns 212087 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12106907ns 212092 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12107361ns 212100 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12107532ns 212103 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12107816ns 212108 1a110850 fd5ff06f jal x0, -44 +12108100ns 212113 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12108384ns 212118 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12108782ns 212125 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12108953ns 212128 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12109407ns 212136 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12109578ns 212139 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12109862ns 212144 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12110146ns 212149 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12110430ns 212154 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12110885ns 212162 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12111055ns 212165 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12111340ns 212170 1a110850 fd5ff06f jal x0, -44 +12111624ns 212175 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12111908ns 212180 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12112306ns 212187 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12112476ns 212190 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12112931ns 212198 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12113101ns 212201 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12113386ns 212206 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12113670ns 212211 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12113954ns 212216 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12114408ns 212224 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12114579ns 212227 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12114863ns 212232 1a110850 fd5ff06f jal x0, -44 +12115147ns 212237 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12115431ns 212242 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12115829ns 212249 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12116000ns 212252 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12116454ns 212260 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12116625ns 212263 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12116909ns 212268 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12117193ns 212273 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12117477ns 212278 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12117932ns 212286 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12118103ns 212289 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12118387ns 212294 1a110850 fd5ff06f jal x0, -44 +12118671ns 212299 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12118955ns 212304 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12119353ns 212311 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12119523ns 212314 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12119978ns 212322 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12120149ns 212325 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12120433ns 212330 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12120717ns 212335 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12121001ns 212340 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12121456ns 212348 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12121626ns 212351 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12121910ns 212356 1a110850 fd5ff06f jal x0, -44 +12122194ns 212361 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12122479ns 212366 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12122876ns 212373 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12123047ns 212376 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12123502ns 212384 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12123672ns 212387 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12123956ns 212392 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12124240ns 212397 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12124525ns 212402 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12124979ns 212410 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12125150ns 212413 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12125434ns 212418 1a110850 fd5ff06f jal x0, -44 +12125718ns 212423 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12126002ns 212428 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12126400ns 212435 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12126571ns 212438 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12127025ns 212446 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12127196ns 212449 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12127480ns 212454 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12127764ns 212459 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12128048ns 212464 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12128503ns 212472 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12128673ns 212475 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12128957ns 212480 1a110850 fd5ff06f jal x0, -44 +12129242ns 212485 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12129526ns 212490 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12129924ns 212497 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12130094ns 212500 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12130549ns 212508 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12130719ns 212511 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12131003ns 212516 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12131288ns 212521 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12131572ns 212526 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12132026ns 212534 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12132197ns 212537 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12132481ns 212542 1a110850 fd5ff06f jal x0, -44 +12132765ns 212547 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12133049ns 212552 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12133447ns 212559 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12133618ns 212562 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12134072ns 212570 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12134243ns 212573 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12134527ns 212578 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12134811ns 212583 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12135095ns 212588 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12135550ns 212596 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12135720ns 212599 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12136005ns 212604 1a110850 fd5ff06f jal x0, -44 +12136289ns 212609 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12136573ns 212614 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12136971ns 212621 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12137141ns 212624 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12137596ns 212632 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12137766ns 212635 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12138051ns 212640 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12138335ns 212645 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12138619ns 212650 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12139074ns 212658 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12139244ns 212661 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12139528ns 212666 1a110850 fd5ff06f jal x0, -44 +12139812ns 212671 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12140097ns 212676 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12140494ns 212683 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12140665ns 212686 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12141120ns 212694 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12141290ns 212697 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12141574ns 212702 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12141858ns 212707 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12142143ns 212712 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12142597ns 212720 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12142768ns 212723 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12143052ns 212728 1a110850 fd5ff06f jal x0, -44 +12143336ns 212733 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12143620ns 212738 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12144018ns 212745 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12144188ns 212748 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12144643ns 212756 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12144814ns 212759 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12145098ns 212764 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12145382ns 212769 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12145666ns 212774 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12146121ns 212782 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12146291ns 212785 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12146575ns 212790 1a110850 fd5ff06f jal x0, -44 +12146860ns 212795 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12147144ns 212800 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12147542ns 212807 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12147712ns 212810 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12148167ns 212818 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12148337ns 212821 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12148621ns 212826 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12148906ns 212831 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12149190ns 212836 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12149644ns 212844 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12149815ns 212847 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12150099ns 212852 1a110850 fd5ff06f jal x0, -44 +12150383ns 212857 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12150667ns 212862 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12151065ns 212869 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12151236ns 212872 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12151690ns 212880 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12151861ns 212883 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12152145ns 212888 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12152429ns 212893 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12152713ns 212898 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12153168ns 212906 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12153338ns 212909 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12153623ns 212914 1a110850 fd5ff06f jal x0, -44 +12153907ns 212919 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12154191ns 212924 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12154589ns 212931 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12154759ns 212934 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12155214ns 212942 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12155384ns 212945 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12155669ns 212950 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12155953ns 212955 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12156237ns 212960 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12156691ns 212968 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12156862ns 212971 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12157146ns 212976 1a110850 fd5ff06f jal x0, -44 +12157430ns 212981 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12157714ns 212986 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12158112ns 212993 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12158283ns 212996 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12158737ns 213004 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12158908ns 213007 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12159192ns 213012 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12159476ns 213017 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12159760ns 213022 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12160215ns 213030 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12160386ns 213033 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12160670ns 213038 1a110850 fd5ff06f jal x0, -44 +12160954ns 213043 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12161238ns 213048 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12161636ns 213055 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12161806ns 213058 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12162261ns 213066 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12162432ns 213069 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12162716ns 213074 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12163000ns 213079 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12163284ns 213084 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12163739ns 213092 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12163909ns 213095 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12164193ns 213100 1a110850 fd5ff06f jal x0, -44 +12164477ns 213105 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12164762ns 213110 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12165159ns 213117 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12165330ns 213120 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12165785ns 213128 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12165955ns 213131 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12166239ns 213136 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12166523ns 213141 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12166808ns 213146 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12167262ns 213154 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12167433ns 213157 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12167717ns 213162 1a110850 fd5ff06f jal x0, -44 +12168001ns 213167 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12168285ns 213172 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12168683ns 213179 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12168854ns 213182 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12169308ns 213190 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12169479ns 213193 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12169763ns 213198 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12170047ns 213203 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12170331ns 213208 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12170786ns 213216 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12170956ns 213219 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12171240ns 213224 1a110850 fd5ff06f jal x0, -44 +12171525ns 213229 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12171809ns 213234 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12172207ns 213241 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12172377ns 213244 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12172832ns 213252 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12173002ns 213255 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12173286ns 213260 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12173571ns 213265 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12173855ns 213270 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12174309ns 213278 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12174480ns 213281 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12174764ns 213286 1a110850 fd5ff06f jal x0, -44 +12175048ns 213291 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12175332ns 213296 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12175730ns 213303 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12175901ns 213306 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12176355ns 213314 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12176526ns 213317 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12176810ns 213322 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12177094ns 213327 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12177378ns 213332 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12177833ns 213340 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12178003ns 213343 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12178288ns 213348 1a110850 fd5ff06f jal x0, -44 +12178572ns 213353 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12178856ns 213358 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12179254ns 213365 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12179424ns 213368 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12179879ns 213376 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12180049ns 213379 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12180334ns 213384 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12180618ns 213389 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12180902ns 213394 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12181357ns 213402 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12181527ns 213405 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12181811ns 213410 1a110850 fd5ff06f jal x0, -44 +12182095ns 213415 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12182380ns 213420 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12182777ns 213427 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12182948ns 213430 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12183403ns 213438 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12183573ns 213441 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12183857ns 213446 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12184141ns 213451 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12184426ns 213456 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12184880ns 213464 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12185051ns 213467 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12185335ns 213472 1a110850 fd5ff06f jal x0, -44 +12185619ns 213477 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12185903ns 213482 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12186301ns 213489 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12186471ns 213492 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12186926ns 213500 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12187097ns 213503 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12187381ns 213508 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12187665ns 213513 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12187949ns 213518 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12188404ns 213526 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12188574ns 213529 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12188858ns 213534 1a110850 fd5ff06f jal x0, -44 +12189143ns 213539 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12189427ns 213544 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12189825ns 213551 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12189995ns 213554 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12190450ns 213562 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12190620ns 213565 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12190904ns 213570 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12191189ns 213575 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12191473ns 213580 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12191927ns 213588 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12192098ns 213591 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12192382ns 213596 1a110850 fd5ff06f jal x0, -44 +12192666ns 213601 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12192950ns 213606 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12193348ns 213613 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12193519ns 213616 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12193973ns 213624 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12194144ns 213627 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12194428ns 213632 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12194712ns 213637 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12194996ns 213642 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12195451ns 213650 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12195621ns 213653 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12195906ns 213658 1a110850 fd5ff06f jal x0, -44 +12196190ns 213663 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12196474ns 213668 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12196872ns 213675 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12197042ns 213678 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12197497ns 213686 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12197667ns 213689 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12197952ns 213694 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12198236ns 213699 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12198520ns 213704 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12198975ns 213712 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12199145ns 213715 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12199429ns 213720 1a110850 fd5ff06f jal x0, -44 +12199713ns 213725 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12199997ns 213730 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12200395ns 213737 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12200566ns 213740 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12201020ns 213748 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12201191ns 213751 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12201475ns 213756 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12201759ns 213761 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12202043ns 213766 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12202498ns 213774 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12202669ns 213777 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12202953ns 213782 1a110850 fd5ff06f jal x0, -44 +12203237ns 213787 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12203521ns 213792 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12203919ns 213799 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12204089ns 213802 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12204544ns 213810 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12204715ns 213813 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12204999ns 213818 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12205283ns 213823 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12205567ns 213828 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12206022ns 213836 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12206192ns 213839 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12206476ns 213844 1a110850 fd5ff06f jal x0, -44 +12206760ns 213849 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12207045ns 213854 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12207442ns 213861 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12207613ns 213864 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12208068ns 213872 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12208238ns 213875 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12208522ns 213880 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12208806ns 213885 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12209091ns 213890 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12209545ns 213898 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12209716ns 213901 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12210000ns 213906 1a110850 fd5ff06f jal x0, -44 +12210284ns 213911 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12210568ns 213916 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12210966ns 213923 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12211137ns 213926 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12211591ns 213934 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12211762ns 213937 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12212046ns 213942 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12212330ns 213947 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12212614ns 213952 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12213069ns 213960 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12213239ns 213963 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12213523ns 213968 1a110850 fd5ff06f jal x0, -44 +12213808ns 213973 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12214092ns 213978 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12214490ns 213985 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12214660ns 213988 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12215115ns 213996 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12215285ns 213999 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12215569ns 214004 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12215854ns 214009 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12216138ns 214014 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12216592ns 214022 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12216763ns 214025 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12217047ns 214030 1a110850 fd5ff06f jal x0, -44 +12217331ns 214035 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12217615ns 214040 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12218013ns 214047 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12218184ns 214050 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12218638ns 214058 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12218809ns 214061 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12219093ns 214066 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12219377ns 214071 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12219661ns 214076 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12220116ns 214084 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12220287ns 214087 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12220571ns 214092 1a110850 fd5ff06f jal x0, -44 +12220855ns 214097 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12221139ns 214102 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12221537ns 214109 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12221707ns 214112 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12222162ns 214120 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12222332ns 214123 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12222617ns 214128 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12222901ns 214133 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12223185ns 214138 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12223640ns 214146 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12223810ns 214149 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12224094ns 214154 1a110850 fd5ff06f jal x0, -44 +12224378ns 214159 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12224663ns 214164 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12225060ns 214171 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12225231ns 214174 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12225686ns 214182 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12225856ns 214185 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12226140ns 214190 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12226424ns 214195 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12226709ns 214200 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12227163ns 214208 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12227334ns 214211 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12227618ns 214216 1a110850 fd5ff06f jal x0, -44 +12227902ns 214221 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12228186ns 214226 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12228584ns 214233 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12228754ns 214236 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12229209ns 214244 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12229380ns 214247 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12229664ns 214252 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12229948ns 214257 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12230232ns 214262 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12230687ns 214270 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12230857ns 214273 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12231141ns 214278 1a110850 fd5ff06f jal x0, -44 +12231426ns 214283 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12231710ns 214288 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12232108ns 214295 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12232278ns 214298 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12232733ns 214306 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12232903ns 214309 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12233187ns 214314 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12233472ns 214319 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12233756ns 214324 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12234210ns 214332 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12234381ns 214335 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12234665ns 214340 1a110850 fd5ff06f jal x0, -44 +12234949ns 214345 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12235233ns 214350 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12235631ns 214357 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12235802ns 214360 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12236256ns 214368 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12236427ns 214371 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12236711ns 214376 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12236995ns 214381 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12237279ns 214386 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12237734ns 214394 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12237904ns 214397 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12238189ns 214402 1a110850 fd5ff06f jal x0, -44 +12238473ns 214407 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12238757ns 214412 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12239155ns 214419 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12239325ns 214422 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12239780ns 214430 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12239950ns 214433 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12240235ns 214438 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12240519ns 214443 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12240803ns 214448 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12241258ns 214456 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12241428ns 214459 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12241712ns 214464 1a110850 fd5ff06f jal x0, -44 +12241996ns 214469 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12242280ns 214474 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12242678ns 214481 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12242849ns 214484 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12243303ns 214492 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12243474ns 214495 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12243758ns 214500 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12244042ns 214505 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12244326ns 214510 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12244781ns 214518 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12244952ns 214521 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12245236ns 214526 1a110850 fd5ff06f jal x0, -44 +12245520ns 214531 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12245804ns 214536 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12246202ns 214543 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12246372ns 214546 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12246827ns 214554 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12246998ns 214557 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12247282ns 214562 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12247566ns 214567 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12247850ns 214572 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12248305ns 214580 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12248475ns 214583 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12248759ns 214588 1a110850 fd5ff06f jal x0, -44 +12249043ns 214593 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12249328ns 214598 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12249725ns 214605 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12249896ns 214608 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12250351ns 214616 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12250521ns 214619 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12250805ns 214624 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12251089ns 214629 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12251374ns 214634 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12251828ns 214642 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12251999ns 214645 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12252283ns 214650 1a110850 fd5ff06f jal x0, -44 +12252567ns 214655 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12252851ns 214660 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12253249ns 214667 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12253420ns 214670 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12253874ns 214678 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12254045ns 214681 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12254329ns 214686 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12254613ns 214691 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12254897ns 214696 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12255352ns 214704 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12255522ns 214707 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12255807ns 214712 1a110850 fd5ff06f jal x0, -44 +12256091ns 214717 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12256375ns 214722 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12256773ns 214729 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12256943ns 214732 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12257398ns 214740 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12257568ns 214743 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12257852ns 214748 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12258137ns 214753 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12258421ns 214758 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12258875ns 214766 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12259046ns 214769 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12259330ns 214774 1a110850 fd5ff06f jal x0, -44 +12259614ns 214779 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12259898ns 214784 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12260296ns 214791 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12260467ns 214794 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12260921ns 214802 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12261092ns 214805 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12261376ns 214810 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12261660ns 214815 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12261944ns 214820 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12262399ns 214828 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12262570ns 214831 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12262854ns 214836 1a110850 fd5ff06f jal x0, -44 +12263138ns 214841 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12263422ns 214846 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12263820ns 214853 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12263990ns 214856 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12264445ns 214864 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12264615ns 214867 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12264900ns 214872 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12265184ns 214877 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12265468ns 214882 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12265923ns 214890 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12266093ns 214893 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12266377ns 214898 1a110850 fd5ff06f jal x0, -44 +12266661ns 214903 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12266946ns 214908 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12267343ns 214915 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12267514ns 214918 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12267969ns 214926 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12268139ns 214929 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12268423ns 214934 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12268707ns 214939 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12268992ns 214944 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12269446ns 214952 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12269617ns 214955 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12269901ns 214960 1a110850 fd5ff06f jal x0, -44 +12270185ns 214965 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12270469ns 214970 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12270867ns 214977 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12271037ns 214980 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12271492ns 214988 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12271663ns 214991 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12271947ns 214996 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12272231ns 215001 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12272515ns 215006 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12272970ns 215014 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12273140ns 215017 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12273424ns 215022 1a110850 fd5ff06f jal x0, -44 +12273709ns 215027 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12273993ns 215032 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12274391ns 215039 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12274561ns 215042 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12275016ns 215050 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12275186ns 215053 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12275470ns 215058 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12275755ns 215063 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12276039ns 215068 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12276493ns 215076 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12276664ns 215079 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12276948ns 215084 1a110850 fd5ff06f jal x0, -44 +12277232ns 215089 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12277516ns 215094 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12277914ns 215101 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12278085ns 215104 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12278539ns 215112 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12278710ns 215115 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12278994ns 215120 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12279278ns 215125 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12279562ns 215130 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12280017ns 215138 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12280187ns 215141 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12280472ns 215146 1a110850 fd5ff06f jal x0, -44 +12280756ns 215151 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12281040ns 215156 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12281438ns 215163 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12281608ns 215166 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12282063ns 215174 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12282233ns 215177 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12282518ns 215182 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12282802ns 215187 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12283086ns 215192 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12283541ns 215200 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12283711ns 215203 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12283995ns 215208 1a110850 fd5ff06f jal x0, -44 +12284279ns 215213 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12284563ns 215218 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12284961ns 215225 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12285132ns 215228 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12285586ns 215236 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12285757ns 215239 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12286041ns 215244 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12286325ns 215249 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12286609ns 215254 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12287064ns 215262 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12287235ns 215265 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12287519ns 215270 1a110850 fd5ff06f jal x0, -44 +12287803ns 215275 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12288087ns 215280 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12288485ns 215287 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12288655ns 215290 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12289110ns 215298 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12289281ns 215301 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12289565ns 215306 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12289849ns 215311 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12290133ns 215316 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12290588ns 215324 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12290758ns 215327 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12291042ns 215332 1a110850 fd5ff06f jal x0, -44 +12291327ns 215337 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12291611ns 215342 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12292008ns 215349 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12292179ns 215352 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12292634ns 215360 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12292804ns 215363 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12293088ns 215368 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12293372ns 215373 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12293657ns 215378 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12294111ns 215386 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12294282ns 215389 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12294566ns 215394 1a110850 fd5ff06f jal x0, -44 +12294850ns 215399 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12295134ns 215404 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12295532ns 215411 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12295703ns 215414 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12296157ns 215422 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12296328ns 215425 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12296612ns 215430 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12296896ns 215435 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12297180ns 215440 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12297635ns 215448 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12297805ns 215451 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12298090ns 215456 1a110850 fd5ff06f jal x0, -44 +12298374ns 215461 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12298658ns 215466 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12299056ns 215473 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12299226ns 215476 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12299681ns 215484 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12299851ns 215487 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12300135ns 215492 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12300420ns 215497 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12300704ns 215502 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12301158ns 215510 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12301329ns 215513 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12301613ns 215518 1a110850 fd5ff06f jal x0, -44 +12301897ns 215523 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12302181ns 215528 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12302579ns 215535 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12302750ns 215538 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12303204ns 215546 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12303375ns 215549 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12303659ns 215554 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12303943ns 215559 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12304227ns 215564 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12304682ns 215572 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12304853ns 215575 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12305137ns 215580 1a110850 fd5ff06f jal x0, -44 +12305421ns 215585 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12305705ns 215590 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12306103ns 215597 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12306273ns 215600 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12306728ns 215608 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12306898ns 215611 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12307183ns 215616 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12307467ns 215621 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12307751ns 215626 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12308206ns 215634 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12308376ns 215637 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12308660ns 215642 1a110850 fd5ff06f jal x0, -44 +12308944ns 215647 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12309229ns 215652 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12309626ns 215659 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12309797ns 215662 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12310252ns 215670 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12310422ns 215673 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12310706ns 215678 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12310990ns 215683 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12311275ns 215688 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12311729ns 215696 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12311900ns 215699 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12312184ns 215704 1a110850 fd5ff06f jal x0, -44 +12312468ns 215709 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12312752ns 215714 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12313150ns 215721 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12313320ns 215724 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12313775ns 215732 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12313946ns 215735 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12314230ns 215740 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12314514ns 215745 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12314798ns 215750 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12315253ns 215758 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12315423ns 215761 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12315707ns 215766 1a110850 fd5ff06f jal x0, -44 +12315992ns 215771 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12316276ns 215776 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12316674ns 215783 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12316844ns 215786 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12317299ns 215794 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12317469ns 215797 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12317753ns 215802 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12318038ns 215807 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12318322ns 215812 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12318776ns 215820 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12318947ns 215823 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12319231ns 215828 1a110850 fd5ff06f jal x0, -44 +12319515ns 215833 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12319799ns 215838 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12320197ns 215845 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12320368ns 215848 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12320822ns 215856 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12320993ns 215859 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12321277ns 215864 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12321561ns 215869 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12321845ns 215874 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12322300ns 215882 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12322470ns 215885 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12322755ns 215890 1a110850 fd5ff06f jal x0, -44 +12323039ns 215895 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12323323ns 215900 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12323721ns 215907 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12323891ns 215910 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12324346ns 215918 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12324516ns 215921 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12324801ns 215926 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12325085ns 215931 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12325369ns 215936 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12325824ns 215944 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12325994ns 215947 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12326278ns 215952 1a110850 fd5ff06f jal x0, -44 +12326562ns 215957 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12326847ns 215962 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12327244ns 215969 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12327415ns 215972 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12327869ns 215980 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12328040ns 215983 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12328324ns 215988 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12328608ns 215993 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12328892ns 215998 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12329347ns 216006 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12329518ns 216009 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12329802ns 216014 1a110850 fd5ff06f jal x0, -44 +12330086ns 216019 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12330370ns 216024 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12330768ns 216031 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12330938ns 216034 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12331393ns 216042 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12331564ns 216045 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12331848ns 216050 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12332132ns 216055 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12332416ns 216060 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12332871ns 216068 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12333041ns 216071 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12333325ns 216076 1a110850 fd5ff06f jal x0, -44 +12333610ns 216081 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12333894ns 216086 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12334291ns 216093 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12334462ns 216096 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12334917ns 216104 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12335087ns 216107 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12335371ns 216112 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12335655ns 216117 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12335940ns 216122 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12336394ns 216130 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12336565ns 216133 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12336849ns 216138 1a110850 fd5ff06f jal x0, -44 +12337133ns 216143 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12337417ns 216148 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12337815ns 216155 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12337986ns 216158 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12338440ns 216166 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12338611ns 216169 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12338895ns 216174 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12339179ns 216179 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12339463ns 216184 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12339918ns 216192 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12340088ns 216195 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12340373ns 216200 1a110850 fd5ff06f jal x0, -44 +12340657ns 216205 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12340941ns 216210 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12341339ns 216217 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12341509ns 216220 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12341964ns 216228 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12342134ns 216231 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12342418ns 216236 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12342703ns 216241 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12342987ns 216246 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12343441ns 216254 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12343612ns 216257 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12343896ns 216262 1a110850 fd5ff06f jal x0, -44 +12344180ns 216267 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12344464ns 216272 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12344862ns 216279 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12345033ns 216282 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12345487ns 216290 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12345658ns 216293 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12345942ns 216298 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12346226ns 216303 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12346510ns 216308 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12346965ns 216316 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12347136ns 216319 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12347420ns 216324 1a110850 fd5ff06f jal x0, -44 +12347704ns 216329 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12347988ns 216334 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12348386ns 216341 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12348556ns 216344 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12349011ns 216352 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12349181ns 216355 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12349466ns 216360 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12349750ns 216365 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12350034ns 216370 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12350489ns 216378 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12350659ns 216381 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12350943ns 216386 1a110850 fd5ff06f jal x0, -44 +12351227ns 216391 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12351512ns 216396 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12351909ns 216403 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12352080ns 216406 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12352535ns 216414 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12352705ns 216417 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12352989ns 216422 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12353273ns 216427 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12353558ns 216432 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12354012ns 216440 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12354183ns 216443 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12354467ns 216448 1a110850 fd5ff06f jal x0, -44 +12354751ns 216453 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12355035ns 216458 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12355433ns 216465 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12355603ns 216468 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12356058ns 216476 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12356229ns 216479 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12356513ns 216484 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12356797ns 216489 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12357081ns 216494 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12357536ns 216502 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12357706ns 216505 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12357990ns 216510 1a110850 fd5ff06f jal x0, -44 +12358275ns 216515 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12358559ns 216520 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12358957ns 216527 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12359127ns 216530 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12359582ns 216538 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12359752ns 216541 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12360036ns 216546 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12360321ns 216551 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12360605ns 216556 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12361059ns 216564 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12361230ns 216567 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12361514ns 216572 1a110850 fd5ff06f jal x0, -44 +12361798ns 216577 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12362082ns 216582 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12362480ns 216589 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12362651ns 216592 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12363105ns 216600 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12363276ns 216603 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12363560ns 216608 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12363844ns 216613 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12364128ns 216618 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12364583ns 216626 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12364753ns 216629 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12365038ns 216634 1a110850 fd5ff06f jal x0, -44 +12365322ns 216639 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12365606ns 216644 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12366004ns 216651 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12366174ns 216654 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12366629ns 216662 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12366799ns 216665 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12367084ns 216670 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12367368ns 216675 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12367652ns 216680 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12368107ns 216688 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12368277ns 216691 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12368561ns 216696 1a110850 fd5ff06f jal x0, -44 +12368845ns 216701 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12369130ns 216706 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12369527ns 216713 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12369698ns 216716 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12370152ns 216724 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12370323ns 216727 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12370607ns 216732 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12370891ns 216737 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12371175ns 216742 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12371630ns 216750 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12371801ns 216753 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12372085ns 216758 1a110850 fd5ff06f jal x0, -44 +12372369ns 216763 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12372653ns 216768 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12373051ns 216775 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12373221ns 216778 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12373676ns 216786 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12373847ns 216789 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12374131ns 216794 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12374415ns 216799 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12374699ns 216804 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12375154ns 216812 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12375324ns 216815 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12375608ns 216820 1a110850 fd5ff06f jal x0, -44 +12375893ns 216825 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12376177ns 216830 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12376575ns 216837 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12376745ns 216840 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12377200ns 216848 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12377370ns 216851 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12377654ns 216856 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12377938ns 216861 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12378223ns 216866 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12378677ns 216874 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12378848ns 216877 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12379132ns 216882 1a110850 fd5ff06f jal x0, -44 +12379416ns 216887 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12379700ns 216892 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12380098ns 216899 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12380269ns 216902 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12380723ns 216910 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12380894ns 216913 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12381178ns 216918 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12381462ns 216923 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12381746ns 216928 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12382201ns 216936 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12382371ns 216939 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12382656ns 216944 1a110850 fd5ff06f jal x0, -44 +12382940ns 216949 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12383224ns 216954 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12383622ns 216961 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12383792ns 216964 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12384247ns 216972 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12384417ns 216975 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12384701ns 216980 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12384986ns 216985 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12385270ns 216990 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12385724ns 216998 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12385895ns 217001 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12386179ns 217006 1a110850 fd5ff06f jal x0, -44 +12386463ns 217011 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12386747ns 217016 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12387145ns 217023 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12387316ns 217026 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12387770ns 217034 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12387941ns 217037 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12388225ns 217042 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12388509ns 217047 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12388793ns 217052 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12389248ns 217060 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12389419ns 217063 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12389703ns 217068 1a110850 fd5ff06f jal x0, -44 +12389987ns 217073 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12390271ns 217078 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12390669ns 217085 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12390839ns 217088 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12391294ns 217096 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12391464ns 217099 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12391749ns 217104 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12392033ns 217109 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12392317ns 217114 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12392772ns 217122 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12392942ns 217125 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12393226ns 217130 1a110850 fd5ff06f jal x0, -44 +12393510ns 217135 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12393795ns 217140 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12394192ns 217147 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12394363ns 217150 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12394818ns 217158 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12394988ns 217161 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12395272ns 217166 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12395556ns 217171 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12395841ns 217176 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12396295ns 217184 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12396466ns 217187 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12396750ns 217192 1a110850 fd5ff06f jal x0, -44 +12397034ns 217197 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12397318ns 217202 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12397716ns 217209 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12397887ns 217212 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12398341ns 217220 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12398512ns 217223 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12398796ns 217228 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12399080ns 217233 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12399364ns 217238 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12399819ns 217246 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12399989ns 217249 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12400273ns 217254 1a110850 fd5ff06f jal x0, -44 +12400558ns 217259 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12400842ns 217264 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12401240ns 217271 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12401410ns 217274 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12401865ns 217282 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12402035ns 217285 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12402319ns 217290 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12402604ns 217295 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12402888ns 217300 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12403342ns 217308 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12403513ns 217311 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12403797ns 217316 1a110850 fd5ff06f jal x0, -44 +12404081ns 217321 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12404365ns 217326 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12404763ns 217333 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12404934ns 217336 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12405388ns 217344 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12405559ns 217347 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12405843ns 217352 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12406127ns 217357 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12406411ns 217362 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12406866ns 217370 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12407036ns 217373 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12407321ns 217378 1a110850 fd5ff06f jal x0, -44 +12407605ns 217383 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12407889ns 217388 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12408287ns 217395 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12408457ns 217398 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12408912ns 217406 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12409082ns 217409 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12409367ns 217414 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12409651ns 217419 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12409935ns 217424 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12410390ns 217432 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12410560ns 217435 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12410844ns 217440 1a110850 fd5ff06f jal x0, -44 +12411128ns 217445 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12411413ns 217450 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12411810ns 217457 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12411981ns 217460 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12412435ns 217468 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12412606ns 217471 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12412890ns 217476 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12413174ns 217481 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12413458ns 217486 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12413913ns 217494 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12414084ns 217497 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12414368ns 217502 1a110850 fd5ff06f jal x0, -44 +12414652ns 217507 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12414936ns 217512 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12415334ns 217519 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12415504ns 217522 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12415959ns 217530 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12416130ns 217533 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12416414ns 217538 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12416698ns 217543 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12416982ns 217548 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12417437ns 217556 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12417607ns 217559 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12417891ns 217564 1a110850 fd5ff06f jal x0, -44 +12418176ns 217569 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12418460ns 217574 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12418858ns 217581 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12419028ns 217584 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12419483ns 217592 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12419653ns 217595 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12419937ns 217600 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12420221ns 217605 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12420506ns 217610 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12420960ns 217618 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12421131ns 217621 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12421415ns 217626 1a110850 fd5ff06f jal x0, -44 +12421699ns 217631 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12421983ns 217636 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12422381ns 217643 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12422552ns 217646 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12423006ns 217654 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12423177ns 217657 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12423461ns 217662 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12423745ns 217667 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12424029ns 217672 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12424484ns 217680 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12424654ns 217683 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12424939ns 217688 1a110850 fd5ff06f jal x0, -44 +12425223ns 217693 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12425507ns 217698 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12425905ns 217705 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12426075ns 217708 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12426530ns 217716 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12426700ns 217719 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12426984ns 217724 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12427269ns 217729 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12427553ns 217734 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12428007ns 217742 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12428178ns 217745 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12428462ns 217750 1a110850 fd5ff06f jal x0, -44 +12428746ns 217755 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12429030ns 217760 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12429428ns 217767 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12429599ns 217770 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12430053ns 217778 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12430224ns 217781 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12430508ns 217786 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12430792ns 217791 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12431076ns 217796 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12431531ns 217804 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12431702ns 217807 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12431986ns 217812 1a110850 fd5ff06f jal x0, -44 +12432270ns 217817 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12432554ns 217822 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12432952ns 217829 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12433122ns 217832 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12433577ns 217840 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12433747ns 217843 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12434032ns 217848 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12434316ns 217853 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12434600ns 217858 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12435055ns 217866 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12435225ns 217869 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12435509ns 217874 1a110850 fd5ff06f jal x0, -44 +12435793ns 217879 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12436078ns 217884 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12436475ns 217891 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12436646ns 217894 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12437101ns 217902 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12437271ns 217905 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12437555ns 217910 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12437839ns 217915 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12438124ns 217920 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12438578ns 217928 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12438749ns 217931 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12439033ns 217936 1a110850 fd5ff06f jal x0, -44 +12439317ns 217941 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12439601ns 217946 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12439999ns 217953 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12440170ns 217956 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12440624ns 217964 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12440795ns 217967 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12441079ns 217972 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12441363ns 217977 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12441647ns 217982 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12442102ns 217990 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12442272ns 217993 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12442556ns 217998 1a110850 fd5ff06f jal x0, -44 +12442841ns 218003 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12443125ns 218008 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12443523ns 218015 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12443693ns 218018 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12444148ns 218026 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12444318ns 218029 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12444602ns 218034 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12444887ns 218039 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12445171ns 218044 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12445625ns 218052 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12445796ns 218055 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12446080ns 218060 1a110850 fd5ff06f jal x0, -44 +12446364ns 218065 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12446648ns 218070 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12447046ns 218077 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12447217ns 218080 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12447671ns 218088 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12447842ns 218091 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12448126ns 218096 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12448410ns 218101 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12448694ns 218106 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12449149ns 218114 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12449319ns 218117 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12449604ns 218122 1a110850 fd5ff06f jal x0, -44 +12449888ns 218127 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12450172ns 218132 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12450570ns 218139 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12450740ns 218142 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12451195ns 218150 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12451365ns 218153 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12451650ns 218158 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12451934ns 218163 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12452218ns 218168 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12452673ns 218176 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12452843ns 218179 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12453127ns 218184 1a110850 fd5ff06f jal x0, -44 +12453411ns 218189 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12453696ns 218194 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12454093ns 218201 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12454264ns 218204 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12454719ns 218212 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12454889ns 218215 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12455173ns 218220 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12455457ns 218225 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12455741ns 218230 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12456196ns 218238 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12456367ns 218241 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12456651ns 218246 1a110850 fd5ff06f jal x0, -44 +12456935ns 218251 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12457219ns 218256 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12457617ns 218263 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12457787ns 218266 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12458242ns 218274 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12458413ns 218277 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12458697ns 218282 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12458981ns 218287 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12459265ns 218292 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12459720ns 218300 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12459890ns 218303 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12460174ns 218308 1a110850 fd5ff06f jal x0, -44 +12460459ns 218313 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12460743ns 218318 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12461141ns 218325 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12461311ns 218328 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12461766ns 218336 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12461936ns 218339 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12462220ns 218344 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12462504ns 218349 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12462789ns 218354 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12463243ns 218362 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12463414ns 218365 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12463698ns 218370 1a110850 fd5ff06f jal x0, -44 +12463982ns 218375 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12464266ns 218380 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12464664ns 218387 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12464835ns 218390 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12465289ns 218398 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12465460ns 218401 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12465744ns 218406 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12466028ns 218411 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12466312ns 218416 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12466767ns 218424 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12466937ns 218427 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12467222ns 218432 1a110850 fd5ff06f jal x0, -44 +12467506ns 218437 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12467790ns 218442 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12468188ns 218449 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12468358ns 218452 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12468813ns 218460 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12468983ns 218463 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12469267ns 218468 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12469552ns 218473 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12469836ns 218478 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12470290ns 218486 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12470461ns 218489 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12470745ns 218494 1a110850 fd5ff06f jal x0, -44 +12471029ns 218499 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12471313ns 218504 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12471711ns 218511 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12471882ns 218514 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12472336ns 218522 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12472507ns 218525 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12472791ns 218530 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12473075ns 218535 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12473359ns 218540 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12473814ns 218548 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12473985ns 218551 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12474269ns 218556 1a110850 fd5ff06f jal x0, -44 +12474553ns 218561 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12474837ns 218566 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12475235ns 218573 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12475405ns 218576 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12475860ns 218584 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12476031ns 218587 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12476315ns 218592 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12476599ns 218597 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12476883ns 218602 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12477338ns 218610 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12477508ns 218613 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12477792ns 218618 1a110850 fd5ff06f jal x0, -44 +12478076ns 218623 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12478361ns 218628 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12478758ns 218635 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12478929ns 218638 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12479384ns 218646 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12479554ns 218649 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12479838ns 218654 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12480122ns 218659 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12480407ns 218664 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12480861ns 218672 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12481032ns 218675 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12481316ns 218680 1a110850 fd5ff06f jal x0, -44 +12481600ns 218685 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12481884ns 218690 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12482282ns 218697 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12482453ns 218700 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12482907ns 218708 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12483078ns 218711 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12483362ns 218716 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12483646ns 218721 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12483930ns 218726 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12484385ns 218734 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12484555ns 218737 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12484839ns 218742 1a110850 fd5ff06f jal x0, -44 +12485124ns 218747 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12485408ns 218752 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12485806ns 218759 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12485976ns 218762 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12486431ns 218770 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12486601ns 218773 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12486885ns 218778 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12487170ns 218783 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12487454ns 218788 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12487908ns 218796 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12488079ns 218799 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12488363ns 218804 1a110850 fd5ff06f jal x0, -44 +12488647ns 218809 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12488931ns 218814 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12489329ns 218821 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12489500ns 218824 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12489954ns 218832 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12490125ns 218835 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12490409ns 218840 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12490693ns 218845 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12490977ns 218850 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12491432ns 218858 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12491602ns 218861 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12491887ns 218866 1a110850 fd5ff06f jal x0, -44 +12492171ns 218871 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12492455ns 218876 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12492853ns 218883 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12493023ns 218886 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12493478ns 218894 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12493648ns 218897 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12493933ns 218902 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12494217ns 218907 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12494501ns 218912 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12494956ns 218920 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12495126ns 218923 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12495410ns 218928 1a110850 fd5ff06f jal x0, -44 +12495694ns 218933 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12495979ns 218938 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12496376ns 218945 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12496547ns 218948 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12497002ns 218956 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12497172ns 218959 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12497456ns 218964 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12497740ns 218969 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12498024ns 218974 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12498479ns 218982 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12498650ns 218985 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12498934ns 218990 1a110850 fd5ff06f jal x0, -44 +12499218ns 218995 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12499502ns 219000 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12499900ns 219007 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12500070ns 219010 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12500525ns 219018 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12500696ns 219021 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12500980ns 219026 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12501264ns 219031 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12501548ns 219036 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12502003ns 219044 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12502173ns 219047 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12502457ns 219052 1a110850 fd5ff06f jal x0, -44 +12502742ns 219057 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12503026ns 219062 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12503424ns 219069 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12503594ns 219072 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12504049ns 219080 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12504219ns 219083 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12504503ns 219088 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12504787ns 219093 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12505072ns 219098 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12505526ns 219106 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12505697ns 219109 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12505981ns 219114 1a110850 fd5ff06f jal x0, -44 +12506265ns 219119 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12506549ns 219124 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12506947ns 219131 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12507118ns 219134 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12507572ns 219142 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12507743ns 219145 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12508027ns 219150 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12508311ns 219155 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12508595ns 219160 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12509050ns 219168 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12509220ns 219171 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12509505ns 219176 1a110850 fd5ff06f jal x0, -44 +12509789ns 219181 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12510073ns 219186 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12510471ns 219193 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12510641ns 219196 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12511096ns 219204 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12511266ns 219207 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12511551ns 219212 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12511835ns 219217 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12512119ns 219222 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12512573ns 219230 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12512744ns 219233 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12513028ns 219238 1a110850 fd5ff06f jal x0, -44 +12513312ns 219243 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12513596ns 219248 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12513994ns 219255 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12514165ns 219258 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12514619ns 219266 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12514790ns 219269 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12515074ns 219274 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12515358ns 219279 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12515642ns 219284 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12516097ns 219292 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12516268ns 219295 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12516552ns 219300 1a110850 fd5ff06f jal x0, -44 +12516836ns 219305 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12517120ns 219310 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12517518ns 219317 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12517688ns 219320 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12518143ns 219328 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12518314ns 219331 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12518598ns 219336 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12518882ns 219341 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12519166ns 219346 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12519621ns 219354 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12519791ns 219357 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12520075ns 219362 1a110850 fd5ff06f jal x0, -44 +12520359ns 219367 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12520644ns 219372 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12521041ns 219379 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12521212ns 219382 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12521667ns 219390 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12521837ns 219393 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12522121ns 219398 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12522405ns 219403 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12522690ns 219408 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12523144ns 219416 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12523315ns 219419 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12523599ns 219424 1a110850 fd5ff06f jal x0, -44 +12523883ns 219429 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12524167ns 219434 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12524565ns 219441 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12524736ns 219444 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12525190ns 219452 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12525361ns 219455 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12525645ns 219460 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12525929ns 219465 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12526213ns 219470 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12526668ns 219478 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12526838ns 219481 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12527122ns 219486 1a110850 fd5ff06f jal x0, -44 +12527407ns 219491 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12527691ns 219496 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12528089ns 219503 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12528259ns 219506 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12528714ns 219514 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12528884ns 219517 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12529168ns 219522 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12529453ns 219527 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12529737ns 219532 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12530191ns 219540 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12530362ns 219543 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12530646ns 219548 1a110850 fd5ff06f jal x0, -44 +12530930ns 219553 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12531214ns 219558 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12531612ns 219565 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12531783ns 219568 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12532237ns 219576 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12532408ns 219579 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12532692ns 219584 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12532976ns 219589 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12533260ns 219594 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12533715ns 219602 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12533885ns 219605 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12534170ns 219610 1a110850 fd5ff06f jal x0, -44 +12534454ns 219615 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12534738ns 219620 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12535136ns 219627 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12535306ns 219630 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12535761ns 219638 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12535931ns 219641 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12536216ns 219646 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12536500ns 219651 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12536784ns 219656 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12537239ns 219664 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12537409ns 219667 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12537693ns 219672 1a110850 fd5ff06f jal x0, -44 +12537977ns 219677 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12538262ns 219682 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12538659ns 219689 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12538830ns 219692 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12539285ns 219700 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12539455ns 219703 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12539739ns 219708 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12540023ns 219713 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12540307ns 219718 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12540762ns 219726 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12540933ns 219729 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12541217ns 219734 1a110850 fd5ff06f jal x0, -44 +12541501ns 219739 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12541785ns 219744 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12542183ns 219751 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12542353ns 219754 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12542808ns 219762 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12542979ns 219765 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12543263ns 219770 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12543547ns 219775 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12543831ns 219780 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12544286ns 219788 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12544456ns 219791 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12544740ns 219796 1a110850 fd5ff06f jal x0, -44 +12545025ns 219801 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12545309ns 219806 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12545707ns 219813 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12545877ns 219816 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12546332ns 219824 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12546502ns 219827 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12546786ns 219832 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12547071ns 219837 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12547355ns 219842 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12547809ns 219850 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12547980ns 219853 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12548264ns 219858 1a110850 fd5ff06f jal x0, -44 +12548548ns 219863 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12548832ns 219868 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12549230ns 219875 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12549401ns 219878 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12549855ns 219886 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12550026ns 219889 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12550310ns 219894 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12550594ns 219899 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12550878ns 219904 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12551333ns 219912 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12551503ns 219915 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12551788ns 219920 1a110850 fd5ff06f jal x0, -44 +12552072ns 219925 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12552356ns 219930 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12552754ns 219937 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12552924ns 219940 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12553379ns 219948 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12553549ns 219951 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12553834ns 219956 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12554118ns 219961 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12554402ns 219966 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12554856ns 219974 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12555027ns 219977 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12555311ns 219982 1a110850 fd5ff06f jal x0, -44 +12555595ns 219987 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12555879ns 219992 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12556277ns 219999 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12556448ns 220002 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12556902ns 220010 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12557073ns 220013 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12557357ns 220018 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12557641ns 220023 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12557925ns 220028 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12558380ns 220036 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12558551ns 220039 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12558835ns 220044 1a110850 fd5ff06f jal x0, -44 +12559119ns 220049 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12559403ns 220054 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12559801ns 220061 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12559971ns 220064 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12560426ns 220072 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12560597ns 220075 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12560881ns 220080 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12561165ns 220085 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12561449ns 220090 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12561904ns 220098 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12562074ns 220101 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12562358ns 220106 1a110850 fd5ff06f jal x0, -44 +12562642ns 220111 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12562927ns 220116 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12563324ns 220123 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12563495ns 220126 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12563950ns 220134 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12564120ns 220137 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12564404ns 220142 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12564688ns 220147 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12564973ns 220152 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12565427ns 220160 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12565598ns 220163 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12565882ns 220168 1a110850 fd5ff06f jal x0, -44 +12566166ns 220173 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12566450ns 220178 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12566848ns 220185 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12567019ns 220188 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12567473ns 220196 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12567644ns 220199 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12567928ns 220204 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12568212ns 220209 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12568496ns 220214 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12568951ns 220222 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12569121ns 220225 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12569405ns 220230 1a110850 fd5ff06f jal x0, -44 +12569690ns 220235 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12569974ns 220240 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12570372ns 220247 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12570542ns 220250 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12570997ns 220258 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12571167ns 220261 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12571451ns 220266 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12571736ns 220271 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12572020ns 220276 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12572474ns 220284 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12572645ns 220287 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12572929ns 220292 1a110850 fd5ff06f jal x0, -44 +12573213ns 220297 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12573497ns 220302 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12573895ns 220309 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12574066ns 220312 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12574520ns 220320 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12574691ns 220323 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12574975ns 220328 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12575259ns 220333 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12575543ns 220338 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12575998ns 220346 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12576168ns 220349 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12576453ns 220354 1a110850 fd5ff06f jal x0, -44 +12576737ns 220359 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12577021ns 220364 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12577419ns 220371 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12577589ns 220374 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12578044ns 220382 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12578214ns 220385 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12578499ns 220390 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12578783ns 220395 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12579067ns 220400 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12579522ns 220408 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12579692ns 220411 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12579976ns 220416 1a110850 fd5ff06f jal x0, -44 +12580260ns 220421 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12580545ns 220426 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12580942ns 220433 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12581113ns 220436 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12581568ns 220444 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12581738ns 220447 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12582022ns 220452 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12582306ns 220457 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12582591ns 220462 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12583045ns 220470 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12583216ns 220473 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12583500ns 220478 1a110850 fd5ff06f jal x0, -44 +12583784ns 220483 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12584068ns 220488 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12584466ns 220495 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12584636ns 220498 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12585091ns 220506 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12585262ns 220509 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12585546ns 220514 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12585830ns 220519 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12586114ns 220524 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12586569ns 220532 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12586739ns 220535 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12587023ns 220540 1a110850 fd5ff06f jal x0, -44 +12587308ns 220545 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12587592ns 220550 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12587990ns 220557 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12588160ns 220560 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12588615ns 220568 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12588785ns 220571 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12589069ns 220576 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12589354ns 220581 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12589638ns 220586 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12590092ns 220594 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12590263ns 220597 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12590547ns 220602 1a110850 fd5ff06f jal x0, -44 +12590831ns 220607 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12591115ns 220612 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12591513ns 220619 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12591684ns 220622 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12592138ns 220630 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12592309ns 220633 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12592593ns 220638 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12592877ns 220643 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12593161ns 220648 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12593616ns 220656 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12593786ns 220659 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12594071ns 220664 1a110850 fd5ff06f jal x0, -44 +12594355ns 220669 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12594639ns 220674 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12595037ns 220681 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12595207ns 220684 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12595662ns 220692 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12595832ns 220695 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12596117ns 220700 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12596401ns 220705 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12596685ns 220710 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12597139ns 220718 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12597310ns 220721 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12597594ns 220726 1a110850 fd5ff06f jal x0, -44 +12597878ns 220731 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12598162ns 220736 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12598560ns 220743 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12598731ns 220746 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12599185ns 220754 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12599356ns 220757 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12599640ns 220762 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12599924ns 220767 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12600208ns 220772 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12600663ns 220780 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12600834ns 220783 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12601118ns 220788 1a110850 fd5ff06f jal x0, -44 +12601402ns 220793 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12601686ns 220798 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12602084ns 220805 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12602254ns 220808 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12602709ns 220816 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12602880ns 220819 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12603164ns 220824 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12603448ns 220829 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12603732ns 220834 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12604187ns 220842 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12604357ns 220845 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12604641ns 220850 1a110850 fd5ff06f jal x0, -44 +12604925ns 220855 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12605210ns 220860 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12605607ns 220867 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12605778ns 220870 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12606233ns 220878 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12606403ns 220881 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12606687ns 220886 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12606971ns 220891 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12607256ns 220896 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12607710ns 220904 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12607881ns 220907 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12608165ns 220912 1a110850 fd5ff06f jal x0, -44 +12608449ns 220917 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12608733ns 220922 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12609131ns 220929 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12609302ns 220932 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12609756ns 220940 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12609927ns 220943 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12610211ns 220948 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12610495ns 220953 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12610779ns 220958 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12611234ns 220966 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12611404ns 220969 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12611688ns 220974 1a110850 fd5ff06f jal x0, -44 +12611973ns 220979 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12612257ns 220984 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12612655ns 220991 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12612825ns 220994 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12613280ns 221002 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12613450ns 221005 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12613734ns 221010 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12614019ns 221015 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12614303ns 221020 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12614757ns 221028 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12614928ns 221031 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12615212ns 221036 1a110850 fd5ff06f jal x0, -44 +12615496ns 221041 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12615780ns 221046 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12616178ns 221053 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12616349ns 221056 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12616803ns 221064 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12616974ns 221067 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12617258ns 221072 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12617542ns 221077 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12617826ns 221082 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12618281ns 221090 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12618451ns 221093 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12618736ns 221098 1a110850 fd5ff06f jal x0, -44 +12619020ns 221103 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12619304ns 221108 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12619702ns 221115 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12619872ns 221118 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12620327ns 221126 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12620497ns 221129 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12620782ns 221134 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12621066ns 221139 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12621350ns 221144 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12621805ns 221152 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12621975ns 221155 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12622259ns 221160 1a110850 fd5ff06f jal x0, -44 +12622543ns 221165 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12622828ns 221170 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12623225ns 221177 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12623396ns 221180 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12623851ns 221188 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12624021ns 221191 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12624305ns 221196 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12624589ns 221201 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12624874ns 221206 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12625328ns 221214 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12625499ns 221217 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12625783ns 221222 1a110850 fd5ff06f jal x0, -44 +12626067ns 221227 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12626351ns 221232 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12626749ns 221239 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12626919ns 221242 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12627374ns 221250 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12627545ns 221253 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12627829ns 221258 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12628113ns 221263 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12628397ns 221268 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12628852ns 221276 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12629022ns 221279 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12629306ns 221284 1a110850 fd5ff06f jal x0, -44 +12629591ns 221289 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12629875ns 221294 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12630273ns 221301 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12630443ns 221304 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12630898ns 221312 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12631068ns 221315 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12631352ns 221320 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12631637ns 221325 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12631921ns 221330 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12632375ns 221338 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12632546ns 221341 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12632830ns 221346 1a110850 fd5ff06f jal x0, -44 +12633114ns 221351 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12633398ns 221356 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12633796ns 221363 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12633967ns 221366 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12634421ns 221374 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12634592ns 221377 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12634876ns 221382 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12635160ns 221387 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12635444ns 221392 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12635899ns 221400 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12636069ns 221403 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12636354ns 221408 1a110850 fd5ff06f jal x0, -44 +12636638ns 221413 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12636922ns 221418 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12637320ns 221425 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12637490ns 221428 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12637945ns 221436 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12638115ns 221439 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12638400ns 221444 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12638684ns 221449 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12638968ns 221454 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12639423ns 221462 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12639593ns 221465 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12639877ns 221470 1a110850 fd5ff06f jal x0, -44 +12640161ns 221475 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12640445ns 221480 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12640843ns 221487 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12641014ns 221490 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12641468ns 221498 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12641639ns 221501 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12641923ns 221506 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12642207ns 221511 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12642491ns 221516 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12642946ns 221524 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12643117ns 221527 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12643401ns 221532 1a110850 fd5ff06f jal x0, -44 +12643685ns 221537 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12643969ns 221542 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12644367ns 221549 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12644537ns 221552 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12644992ns 221560 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12645163ns 221563 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12645447ns 221568 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12645731ns 221573 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12646015ns 221578 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12646470ns 221586 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12646640ns 221589 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12646924ns 221594 1a110850 fd5ff06f jal x0, -44 +12647208ns 221599 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12647493ns 221604 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12647890ns 221611 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12648061ns 221614 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12648516ns 221622 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12648686ns 221625 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12648970ns 221630 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12649254ns 221635 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12649539ns 221640 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12649993ns 221648 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12650164ns 221651 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12650448ns 221656 1a110850 fd5ff06f jal x0, -44 +12650732ns 221661 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12651016ns 221666 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12651414ns 221673 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12651585ns 221676 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12652039ns 221684 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12652210ns 221687 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12652494ns 221692 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12652778ns 221697 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12653062ns 221702 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12653517ns 221710 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12653687ns 221713 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12653971ns 221718 1a110850 fd5ff06f jal x0, -44 +12654256ns 221723 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12654540ns 221728 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12654938ns 221735 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12655108ns 221738 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12655563ns 221746 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12655733ns 221749 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12656017ns 221754 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12656302ns 221759 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12656586ns 221764 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12657040ns 221772 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12657211ns 221775 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12657495ns 221780 1a110850 fd5ff06f jal x0, -44 +12657779ns 221785 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12658063ns 221790 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12658461ns 221797 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12658632ns 221800 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12659086ns 221808 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12659257ns 221811 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12659541ns 221816 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12659825ns 221821 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12660109ns 221826 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12660564ns 221834 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12660735ns 221837 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12661019ns 221842 1a110850 fd5ff06f jal x0, -44 +12661303ns 221847 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12661587ns 221852 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12661985ns 221859 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12662155ns 221862 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12662610ns 221870 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12662780ns 221873 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12663065ns 221878 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12663349ns 221883 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12663633ns 221888 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12664088ns 221896 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12664258ns 221899 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12664542ns 221904 1a110850 fd5ff06f jal x0, -44 +12664826ns 221909 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12665111ns 221914 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12665508ns 221921 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12665679ns 221924 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12666134ns 221932 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12666304ns 221935 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12666588ns 221940 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12666872ns 221945 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12667157ns 221950 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12667611ns 221958 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12667782ns 221961 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12668066ns 221966 1a110850 fd5ff06f jal x0, -44 +12668350ns 221971 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12668634ns 221976 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12669032ns 221983 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12669202ns 221986 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12669657ns 221994 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12669828ns 221997 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12670112ns 222002 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12670396ns 222007 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12670680ns 222012 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12671135ns 222020 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12671305ns 222023 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12671589ns 222028 1a110850 fd5ff06f jal x0, -44 +12671874ns 222033 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12672158ns 222038 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12672556ns 222045 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12672726ns 222048 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12673181ns 222056 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12673351ns 222059 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12673635ns 222064 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12673920ns 222069 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12674204ns 222074 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12674658ns 222082 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12674829ns 222085 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12675113ns 222090 1a110850 fd5ff06f jal x0, -44 +12675397ns 222095 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12675681ns 222100 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12676079ns 222107 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12676250ns 222110 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12676704ns 222118 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12676875ns 222121 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12677159ns 222126 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12677443ns 222131 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12677727ns 222136 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12678182ns 222144 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12678352ns 222147 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12678637ns 222152 1a110850 fd5ff06f jal x0, -44 +12678921ns 222157 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12679205ns 222162 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12679603ns 222169 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12679773ns 222172 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12680228ns 222180 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12680398ns 222183 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12680683ns 222188 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12680967ns 222193 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12681251ns 222198 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12681706ns 222206 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12681876ns 222209 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12682160ns 222214 1a110850 fd5ff06f jal x0, -44 +12682444ns 222219 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12682728ns 222224 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12683126ns 222231 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12683297ns 222234 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12683751ns 222242 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12683922ns 222245 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12684206ns 222250 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12684490ns 222255 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12684774ns 222260 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12685229ns 222268 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12685400ns 222271 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12685684ns 222276 1a110850 fd5ff06f jal x0, -44 +12685968ns 222281 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12686252ns 222286 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12686650ns 222293 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12686820ns 222296 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12687275ns 222304 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12687446ns 222307 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12687730ns 222312 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12688014ns 222317 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12688298ns 222322 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12688753ns 222330 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12688923ns 222333 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12689207ns 222338 1a110850 fd5ff06f jal x0, -44 +12689491ns 222343 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12689776ns 222348 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12690173ns 222355 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12690344ns 222358 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12690799ns 222366 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12690969ns 222369 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12691253ns 222374 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12691537ns 222379 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12691822ns 222384 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12692276ns 222392 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12692447ns 222395 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12692731ns 222400 1a110850 fd5ff06f jal x0, -44 +12693015ns 222405 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12693299ns 222410 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12693697ns 222417 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12693868ns 222420 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12694322ns 222428 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12694493ns 222431 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12694777ns 222436 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12695061ns 222441 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12695345ns 222446 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12695800ns 222454 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12695970ns 222457 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12696255ns 222462 1a110850 fd5ff06f jal x0, -44 +12696539ns 222467 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12696823ns 222472 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12697221ns 222479 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12697391ns 222482 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12697846ns 222490 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12698016ns 222493 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12698300ns 222498 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12698585ns 222503 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12698869ns 222508 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12699323ns 222516 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12699494ns 222519 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12699778ns 222524 1a110850 fd5ff06f jal x0, -44 +12700062ns 222529 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12700346ns 222534 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12700744ns 222541 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12700915ns 222544 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12701369ns 222552 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12701540ns 222555 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12701824ns 222560 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12702108ns 222565 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12702392ns 222570 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12702847ns 222578 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12703018ns 222581 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12703302ns 222586 1a110850 fd5ff06f jal x0, -44 +12703586ns 222591 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12703870ns 222596 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12704268ns 222603 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12704438ns 222606 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12704893ns 222614 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12705063ns 222617 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12705348ns 222622 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12705632ns 222627 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12705916ns 222632 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12706371ns 222640 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12706541ns 222643 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12706825ns 222648 1a110850 fd5ff06f jal x0, -44 +12707109ns 222653 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12707394ns 222658 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12707791ns 222665 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12707962ns 222668 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12708417ns 222676 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12708587ns 222679 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12708871ns 222684 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12709155ns 222689 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12709440ns 222694 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12709894ns 222702 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12710065ns 222705 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12710349ns 222710 1a110850 fd5ff06f jal x0, -44 +12710633ns 222715 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12710917ns 222720 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12711315ns 222727 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12711485ns 222730 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12711940ns 222738 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12712111ns 222741 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12712395ns 222746 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12712679ns 222751 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12712963ns 222756 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12713418ns 222764 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12713588ns 222767 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12713872ns 222772 1a110850 fd5ff06f jal x0, -44 +12714157ns 222777 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12714441ns 222782 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12714839ns 222789 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12715009ns 222792 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12715464ns 222800 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12715634ns 222803 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12715918ns 222808 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12716203ns 222813 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12716487ns 222818 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12716941ns 222826 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12717112ns 222829 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12717396ns 222834 1a110850 fd5ff06f jal x0, -44 +12717680ns 222839 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12717964ns 222844 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12718362ns 222851 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12718533ns 222854 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12718987ns 222862 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12719158ns 222865 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12719442ns 222870 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12719726ns 222875 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12720010ns 222880 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12720465ns 222888 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12720635ns 222891 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12720920ns 222896 1a110850 fd5ff06f jal x0, -44 +12721204ns 222901 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12721488ns 222906 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12721886ns 222913 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12722056ns 222916 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12722511ns 222924 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12722681ns 222927 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12722966ns 222932 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12723250ns 222937 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12723534ns 222942 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12723989ns 222950 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12724159ns 222953 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12724443ns 222958 1a110850 fd5ff06f jal x0, -44 +12724727ns 222963 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12725011ns 222968 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12725409ns 222975 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12725580ns 222978 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12726034ns 222986 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12726205ns 222989 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12726489ns 222994 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12726773ns 222999 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12727057ns 223004 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12727512ns 223012 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12727683ns 223015 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12727967ns 223020 1a110850 fd5ff06f jal x0, -44 +12728251ns 223025 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12728535ns 223030 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12728933ns 223037 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12729103ns 223040 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12729558ns 223048 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12729729ns 223051 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12730013ns 223056 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12730297ns 223061 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12730581ns 223066 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12731036ns 223074 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12731206ns 223077 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12731490ns 223082 1a110850 fd5ff06f jal x0, -44 +12731775ns 223087 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12732059ns 223092 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12732456ns 223099 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12732627ns 223102 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12733082ns 223110 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12733252ns 223113 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12733536ns 223118 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12733820ns 223123 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12734105ns 223128 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12734559ns 223136 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12734730ns 223139 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12735014ns 223144 1a110850 fd5ff06f jal x0, -44 +12735298ns 223149 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12735582ns 223154 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12735980ns 223161 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12736151ns 223164 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12736605ns 223172 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12736776ns 223175 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12737060ns 223180 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12737344ns 223185 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12737628ns 223190 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12738083ns 223198 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12738253ns 223201 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12738538ns 223206 1a110850 fd5ff06f jal x0, -44 +12738822ns 223211 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12739106ns 223216 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12739504ns 223223 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12739674ns 223226 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12740129ns 223234 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12740299ns 223237 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12740583ns 223242 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12740868ns 223247 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12741152ns 223252 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12741606ns 223260 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12741777ns 223263 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12742061ns 223268 1a110850 fd5ff06f jal x0, -44 +12742345ns 223273 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12742629ns 223278 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12743027ns 223285 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12743198ns 223288 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12743652ns 223296 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12743823ns 223299 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12744107ns 223304 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12744391ns 223309 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12744675ns 223314 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12745130ns 223322 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12745301ns 223325 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12745585ns 223330 1a110850 fd5ff06f jal x0, -44 +12745869ns 223335 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12746153ns 223340 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12746551ns 223347 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12746721ns 223350 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12747176ns 223358 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12747346ns 223361 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12747631ns 223366 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12747915ns 223371 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12748199ns 223376 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12748654ns 223384 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12748824ns 223387 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12749108ns 223392 1a110850 fd5ff06f jal x0, -44 +12749392ns 223397 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12749677ns 223402 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12750074ns 223409 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12750245ns 223412 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12750700ns 223420 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12750870ns 223423 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12751154ns 223428 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12751438ns 223433 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12751723ns 223438 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12752177ns 223446 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12752348ns 223449 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12752632ns 223454 1a110850 fd5ff06f jal x0, -44 +12752916ns 223459 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12753200ns 223464 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12753598ns 223471 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12753768ns 223474 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12754223ns 223482 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12754394ns 223485 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12754678ns 223490 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12754962ns 223495 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12755246ns 223500 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12755701ns 223508 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12755871ns 223511 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12756155ns 223516 1a110850 fd5ff06f jal x0, -44 +12756440ns 223521 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12756724ns 223526 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12757122ns 223533 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12757292ns 223536 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12757747ns 223544 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12757917ns 223547 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12758201ns 223552 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12758486ns 223557 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12758770ns 223562 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12759224ns 223570 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12759395ns 223573 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12759679ns 223578 1a110850 fd5ff06f jal x0, -44 +12759963ns 223583 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12760247ns 223588 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12760645ns 223595 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12760816ns 223598 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12761270ns 223606 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12761441ns 223609 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12761725ns 223614 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12762009ns 223619 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12762293ns 223624 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12762748ns 223632 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12762918ns 223635 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12763203ns 223640 1a110850 fd5ff06f jal x0, -44 +12763487ns 223645 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12763771ns 223650 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12764169ns 223657 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12764339ns 223660 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12764794ns 223668 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12764964ns 223671 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12765249ns 223676 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12765533ns 223681 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12765817ns 223686 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12766272ns 223694 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12766442ns 223697 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12766726ns 223702 1a110850 fd5ff06f jal x0, -44 +12767010ns 223707 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12767295ns 223712 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12767692ns 223719 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12767863ns 223722 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12768317ns 223730 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12768488ns 223733 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12768772ns 223738 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12769056ns 223743 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12769340ns 223748 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12769795ns 223756 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12769966ns 223759 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12770250ns 223764 1a110850 fd5ff06f jal x0, -44 +12770534ns 223769 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12770818ns 223774 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12771216ns 223781 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12771386ns 223784 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12771841ns 223792 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12772012ns 223795 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12772296ns 223800 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12772580ns 223805 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12772864ns 223810 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12773319ns 223818 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12773489ns 223821 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12773773ns 223826 1a110850 fd5ff06f jal x0, -44 +12774058ns 223831 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12774342ns 223836 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12774739ns 223843 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12774910ns 223846 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12775365ns 223854 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12775535ns 223857 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12775819ns 223862 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12776103ns 223867 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12776388ns 223872 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12776842ns 223880 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12777013ns 223883 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12777297ns 223888 1a110850 fd5ff06f jal x0, -44 +12777581ns 223893 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12777865ns 223898 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12778263ns 223905 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12778434ns 223908 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12778888ns 223916 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12779059ns 223919 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12779343ns 223924 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12779627ns 223929 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12779911ns 223934 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12780366ns 223942 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12780536ns 223945 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12780821ns 223950 1a110850 fd5ff06f jal x0, -44 +12781105ns 223955 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12781389ns 223960 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12781787ns 223967 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12781957ns 223970 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12782412ns 223978 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12782582ns 223981 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12782866ns 223986 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12783151ns 223991 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12783435ns 223996 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12783889ns 224004 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12784060ns 224007 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12784344ns 224012 1a110850 fd5ff06f jal x0, -44 +12784628ns 224017 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12784912ns 224022 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12785310ns 224029 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12785481ns 224032 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12785935ns 224040 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12786106ns 224043 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12786390ns 224048 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12786674ns 224053 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12786958ns 224058 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12787413ns 224066 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12787584ns 224069 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12787868ns 224074 1a110850 fd5ff06f jal x0, -44 +12788152ns 224079 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12788436ns 224084 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12788834ns 224091 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12789004ns 224094 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12789459ns 224102 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12789629ns 224105 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12789914ns 224110 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12790198ns 224115 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12790482ns 224120 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12790937ns 224128 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12791107ns 224131 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12791391ns 224136 1a110850 fd5ff06f jal x0, -44 +12791675ns 224141 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12791960ns 224146 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12792357ns 224153 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12792528ns 224156 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12792983ns 224164 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12793153ns 224167 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12793437ns 224172 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12793721ns 224177 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12794006ns 224182 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12794460ns 224190 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12794631ns 224193 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12794915ns 224198 1a110850 fd5ff06f jal x0, -44 +12795199ns 224203 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12795483ns 224208 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12795881ns 224215 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12796051ns 224218 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12796506ns 224226 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12796677ns 224229 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12796961ns 224234 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12797245ns 224239 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12797529ns 224244 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12797984ns 224252 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12798154ns 224255 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12798438ns 224260 1a110850 fd5ff06f jal x0, -44 +12798723ns 224265 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12799007ns 224270 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12799405ns 224277 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12799575ns 224280 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12800030ns 224288 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12800200ns 224291 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12800484ns 224296 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12800769ns 224301 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12801053ns 224306 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12801507ns 224314 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12801678ns 224317 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12801962ns 224322 1a110850 fd5ff06f jal x0, -44 +12802246ns 224327 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12802530ns 224332 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12802928ns 224339 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12803099ns 224342 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12803553ns 224350 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12803724ns 224353 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12804008ns 224358 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12804292ns 224363 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12804576ns 224368 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12805031ns 224376 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12805201ns 224379 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12805486ns 224384 1a110850 fd5ff06f jal x0, -44 +12805770ns 224389 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12806054ns 224394 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12806452ns 224401 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12806622ns 224404 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12807077ns 224412 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12807247ns 224415 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12807532ns 224420 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12807816ns 224425 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12808100ns 224430 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12808555ns 224438 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12808725ns 224441 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12809009ns 224446 1a110850 fd5ff06f jal x0, -44 +12809293ns 224451 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12809578ns 224456 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12809975ns 224463 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12810146ns 224466 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12810600ns 224474 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12810771ns 224477 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12811055ns 224482 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12811339ns 224487 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12811623ns 224492 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12812078ns 224500 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12812249ns 224503 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12812533ns 224508 1a110850 fd5ff06f jal x0, -44 +12812817ns 224513 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12813101ns 224518 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12813499ns 224525 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12813669ns 224528 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12814124ns 224536 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12814295ns 224539 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12814579ns 224544 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12814863ns 224549 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12815147ns 224554 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12815602ns 224562 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12815772ns 224565 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12816056ns 224570 1a110850 fd5ff06f jal x0, -44 +12816341ns 224575 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12816625ns 224580 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12817023ns 224587 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12817193ns 224590 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12817648ns 224598 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12817818ns 224601 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12818102ns 224606 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12818386ns 224611 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12818671ns 224616 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12819125ns 224624 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12819296ns 224627 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12819580ns 224632 1a110850 fd5ff06f jal x0, -44 +12819864ns 224637 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12820148ns 224642 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12820546ns 224649 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12820717ns 224652 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12821171ns 224660 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12821342ns 224663 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12821626ns 224668 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12821910ns 224673 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12822194ns 224678 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12822649ns 224686 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12822819ns 224689 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12823104ns 224694 1a110850 fd5ff06f jal x0, -44 +12823388ns 224699 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12823672ns 224704 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12824070ns 224711 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12824240ns 224714 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12824695ns 224722 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12824865ns 224725 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12825149ns 224730 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12825434ns 224735 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12825718ns 224740 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12826172ns 224748 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12826343ns 224751 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12826627ns 224756 1a110850 fd5ff06f jal x0, -44 +12826911ns 224761 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12827195ns 224766 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12827593ns 224773 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12827764ns 224776 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12828218ns 224784 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12828389ns 224787 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12828673ns 224792 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12828957ns 224797 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12829241ns 224802 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12829696ns 224810 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12829867ns 224813 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12830151ns 224818 1a110850 fd5ff06f jal x0, -44 +12830435ns 224823 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12830719ns 224828 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12831117ns 224835 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12831287ns 224838 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12831742ns 224846 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12831912ns 224849 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12832197ns 224854 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12832481ns 224859 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12832765ns 224864 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12833220ns 224872 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12833390ns 224875 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12833674ns 224880 1a110850 fd5ff06f jal x0, -44 +12833958ns 224885 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12834243ns 224890 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12834640ns 224897 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12834811ns 224900 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12835266ns 224908 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12835436ns 224911 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12835720ns 224916 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12836004ns 224921 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12836289ns 224926 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12836743ns 224934 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12836914ns 224937 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12837198ns 224942 1a110850 fd5ff06f jal x0, -44 +12837482ns 224947 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12837766ns 224952 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12838164ns 224959 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12838335ns 224962 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12838789ns 224970 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12838960ns 224973 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12839244ns 224978 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12839528ns 224983 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12839812ns 224988 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12840267ns 224996 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12840437ns 224999 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12840721ns 225004 1a110850 fd5ff06f jal x0, -44 +12841006ns 225009 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12841290ns 225014 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12841688ns 225021 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12841858ns 225024 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12842313ns 225032 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12842483ns 225035 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12842767ns 225040 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12843052ns 225045 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12843336ns 225050 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12843790ns 225058 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12843961ns 225061 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12844245ns 225066 1a110850 fd5ff06f jal x0, -44 +12844529ns 225071 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12844813ns 225076 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12845211ns 225083 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12845382ns 225086 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12845836ns 225094 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12846007ns 225097 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12846291ns 225102 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12846575ns 225107 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12846859ns 225112 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12847314ns 225120 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12847484ns 225123 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12847769ns 225128 1a110850 fd5ff06f jal x0, -44 +12848053ns 225133 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12848337ns 225138 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12848735ns 225145 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12848905ns 225148 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12849360ns 225156 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12849530ns 225159 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12849815ns 225164 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12850099ns 225169 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12850383ns 225174 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12850838ns 225182 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12851008ns 225185 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12851292ns 225190 1a110850 fd5ff06f jal x0, -44 +12851576ns 225195 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12851861ns 225200 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12852258ns 225207 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12852429ns 225210 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12852883ns 225218 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12853054ns 225221 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12853338ns 225226 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12853622ns 225231 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12853906ns 225236 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12854361ns 225244 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12854532ns 225247 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12854816ns 225252 1a110850 fd5ff06f jal x0, -44 +12855100ns 225257 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12855384ns 225262 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12855782ns 225269 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12855952ns 225272 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12856407ns 225280 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12856578ns 225283 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12856862ns 225288 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12857146ns 225293 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12857430ns 225298 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12857885ns 225306 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12858055ns 225309 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12858339ns 225314 1a110850 fd5ff06f jal x0, -44 +12858624ns 225319 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12858908ns 225324 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12859306ns 225331 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12859476ns 225334 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12859931ns 225342 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12860101ns 225345 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12860385ns 225350 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12860669ns 225355 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12860954ns 225360 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12861408ns 225368 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12861579ns 225371 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12861863ns 225376 1a110850 fd5ff06f jal x0, -44 +12862147ns 225381 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12862431ns 225386 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12862829ns 225393 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12863000ns 225396 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12863454ns 225404 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12863625ns 225407 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12863909ns 225412 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12864193ns 225417 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12864477ns 225422 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12864932ns 225430 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12865102ns 225433 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12865387ns 225438 1a110850 fd5ff06f jal x0, -44 +12865671ns 225443 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12865955ns 225448 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12866353ns 225455 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12866523ns 225458 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12866978ns 225466 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12867148ns 225469 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12867432ns 225474 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12867717ns 225479 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12868001ns 225484 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12868455ns 225492 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12868626ns 225495 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12868910ns 225500 1a110850 fd5ff06f jal x0, -44 +12869194ns 225505 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12869478ns 225510 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12869876ns 225517 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12870047ns 225520 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12870501ns 225528 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12870672ns 225531 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12870956ns 225536 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12871240ns 225541 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12871524ns 225546 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12871979ns 225554 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12872150ns 225557 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12872434ns 225562 1a110850 fd5ff06f jal x0, -44 +12872718ns 225567 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12873002ns 225572 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12873400ns 225579 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12873570ns 225582 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12874025ns 225590 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12874195ns 225593 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12874480ns 225598 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12874764ns 225603 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12875048ns 225608 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12875503ns 225616 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12875673ns 225619 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12875957ns 225624 1a110850 fd5ff06f jal x0, -44 +12876241ns 225629 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12876526ns 225634 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12876923ns 225641 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12877094ns 225644 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12877549ns 225652 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12877719ns 225655 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12878003ns 225660 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12878287ns 225665 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12878572ns 225670 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12879026ns 225678 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12879197ns 225681 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12879481ns 225686 1a110850 fd5ff06f jal x0, -44 +12879765ns 225691 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12880049ns 225696 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12880447ns 225703 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12880618ns 225706 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12881072ns 225714 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12881243ns 225717 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12881527ns 225722 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12881811ns 225727 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12882095ns 225732 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12882550ns 225740 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12882720ns 225743 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12883004ns 225748 1a110850 fd5ff06f jal x0, -44 +12883289ns 225753 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12883573ns 225758 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12883971ns 225765 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12884141ns 225768 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12884596ns 225776 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12884766ns 225779 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12885050ns 225784 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12885335ns 225789 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12885619ns 225794 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12886073ns 225802 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12886244ns 225805 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12886528ns 225810 1a110850 fd5ff06f jal x0, -44 +12886812ns 225815 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12887096ns 225820 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12887494ns 225827 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12887665ns 225830 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12888119ns 225838 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12888290ns 225841 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12888574ns 225846 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12888858ns 225851 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12889142ns 225856 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12889597ns 225864 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12889767ns 225867 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12890052ns 225872 1a110850 fd5ff06f jal x0, -44 +12890336ns 225877 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12890620ns 225882 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12891018ns 225889 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12891188ns 225892 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12891643ns 225900 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12891813ns 225903 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12892098ns 225908 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12892382ns 225913 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12892666ns 225918 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12893121ns 225926 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12893291ns 225929 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12893575ns 225934 1a110850 fd5ff06f jal x0, -44 +12893859ns 225939 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12894144ns 225944 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12894541ns 225951 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12894712ns 225954 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12895167ns 225962 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12895337ns 225965 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12895621ns 225970 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12895905ns 225975 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12896189ns 225980 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12896644ns 225988 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12896815ns 225991 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12897099ns 225996 1a110850 fd5ff06f jal x0, -44 +12897383ns 226001 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12897667ns 226006 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12898065ns 226013 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12898235ns 226016 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12898690ns 226024 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12898861ns 226027 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12899145ns 226032 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12899429ns 226037 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12899713ns 226042 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12900168ns 226050 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12900338ns 226053 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12900622ns 226058 1a110850 fd5ff06f jal x0, -44 +12900907ns 226063 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12901191ns 226068 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12901589ns 226075 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12901759ns 226078 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12902214ns 226086 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12902384ns 226089 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12902668ns 226094 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12902952ns 226099 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12903237ns 226104 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12903691ns 226112 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12903862ns 226115 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12904146ns 226120 1a110850 fd5ff06f jal x0, -44 +12904430ns 226125 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12904714ns 226130 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12905112ns 226137 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12905283ns 226140 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12905737ns 226148 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12905908ns 226151 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12906192ns 226156 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12906476ns 226161 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12906760ns 226166 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12907215ns 226174 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12907385ns 226177 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12907670ns 226182 1a110850 fd5ff06f jal x0, -44 +12907954ns 226187 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12908238ns 226192 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12908636ns 226199 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12908806ns 226202 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12909261ns 226210 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12909431ns 226213 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12909715ns 226218 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12910000ns 226223 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12910284ns 226228 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12910738ns 226236 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12910909ns 226239 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12911193ns 226244 1a110850 fd5ff06f jal x0, -44 +12911477ns 226249 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12911761ns 226254 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12912159ns 226261 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12912330ns 226264 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12912784ns 226272 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12912955ns 226275 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12913239ns 226280 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12913523ns 226285 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12913807ns 226290 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12914262ns 226298 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12914433ns 226301 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12914717ns 226306 1a110850 fd5ff06f jal x0, -44 +12915001ns 226311 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12915285ns 226316 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12915683ns 226323 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12915853ns 226326 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12916308ns 226334 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12916479ns 226337 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12916763ns 226342 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12917047ns 226347 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12917331ns 226352 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12917786ns 226360 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12917956ns 226363 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12918240ns 226368 1a110850 fd5ff06f jal x0, -44 +12918524ns 226373 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12918809ns 226378 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12919206ns 226385 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12919377ns 226388 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12919832ns 226396 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12920002ns 226399 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12920286ns 226404 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12920570ns 226409 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12920855ns 226414 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12921309ns 226422 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12921480ns 226425 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12921764ns 226430 1a110850 fd5ff06f jal x0, -44 +12922048ns 226435 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12922332ns 226440 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12922730ns 226447 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12922901ns 226450 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12923355ns 226458 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12923526ns 226461 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12923810ns 226466 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12924094ns 226471 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12924378ns 226476 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12924833ns 226484 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12925003ns 226487 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12925287ns 226492 1a110850 fd5ff06f jal x0, -44 +12925572ns 226497 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12925856ns 226502 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12926254ns 226509 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12926424ns 226512 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12926879ns 226520 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12927049ns 226523 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12927333ns 226528 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12927618ns 226533 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12927902ns 226538 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12928356ns 226546 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12928527ns 226549 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12928811ns 226554 1a110850 fd5ff06f jal x0, -44 +12929095ns 226559 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12929379ns 226564 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12929777ns 226571 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12929948ns 226574 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12930402ns 226582 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12930573ns 226585 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12930857ns 226590 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12931141ns 226595 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12931425ns 226600 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12931880ns 226608 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12932050ns 226611 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12932335ns 226616 1a110850 fd5ff06f jal x0, -44 +12932619ns 226621 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12932903ns 226626 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12933301ns 226633 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12933471ns 226636 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12933926ns 226644 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12934096ns 226647 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12934381ns 226652 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12934665ns 226657 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12934949ns 226662 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12935404ns 226670 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12935574ns 226673 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12935858ns 226678 1a110850 fd5ff06f jal x0, -44 +12936142ns 226683 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12936427ns 226688 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12936824ns 226695 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12936995ns 226698 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12937450ns 226706 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12937620ns 226709 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12937904ns 226714 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12938188ns 226719 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12938472ns 226724 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12938927ns 226732 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12939098ns 226735 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12939382ns 226740 1a110850 fd5ff06f jal x0, -44 +12939666ns 226745 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12939950ns 226750 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12940348ns 226757 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12940518ns 226760 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12940973ns 226768 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12941144ns 226771 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12941428ns 226776 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12941712ns 226781 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12941996ns 226786 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12942451ns 226794 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12942621ns 226797 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12942905ns 226802 1a110850 fd5ff06f jal x0, -44 +12943190ns 226807 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12943474ns 226812 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12943872ns 226819 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12944042ns 226822 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12944497ns 226830 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12944667ns 226833 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12944951ns 226838 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12945235ns 226843 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12945520ns 226848 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12945974ns 226856 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12946145ns 226859 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12946429ns 226864 1a110850 fd5ff06f jal x0, -44 +12946713ns 226869 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12946997ns 226874 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12947395ns 226881 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12947566ns 226884 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12948020ns 226892 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12948191ns 226895 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12948475ns 226900 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12948759ns 226905 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12949043ns 226910 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12949498ns 226918 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12949668ns 226921 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12949953ns 226926 1a110850 fd5ff06f jal x0, -44 +12950237ns 226931 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12950521ns 226936 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12950919ns 226943 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12951089ns 226946 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12951544ns 226954 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12951714ns 226957 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12951999ns 226962 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12952283ns 226967 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12952567ns 226972 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12953021ns 226980 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12953192ns 226983 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12953476ns 226988 1a110850 fd5ff06f jal x0, -44 +12953760ns 226993 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12954044ns 226998 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12954442ns 227005 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12954613ns 227008 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12955067ns 227016 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12955238ns 227019 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12955522ns 227024 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12955806ns 227029 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12956090ns 227034 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12956545ns 227042 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12956716ns 227045 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12957000ns 227050 1a110850 fd5ff06f jal x0, -44 +12957284ns 227055 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12957568ns 227060 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12957966ns 227067 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12958136ns 227070 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12958591ns 227078 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12958762ns 227081 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12959046ns 227086 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12959330ns 227091 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12959614ns 227096 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12960069ns 227104 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12960239ns 227107 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12960523ns 227112 1a110850 fd5ff06f jal x0, -44 +12960807ns 227117 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12961092ns 227122 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12961489ns 227129 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12961660ns 227132 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12962115ns 227140 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12962285ns 227143 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12962569ns 227148 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12962853ns 227153 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12963138ns 227158 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12963592ns 227166 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12963763ns 227169 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12964047ns 227174 1a110850 fd5ff06f jal x0, -44 +12964331ns 227179 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12964615ns 227184 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12965013ns 227191 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12965184ns 227194 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12965638ns 227202 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12965809ns 227205 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12966093ns 227210 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12966377ns 227215 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12966661ns 227220 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12967116ns 227228 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12967286ns 227231 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12967570ns 227236 1a110850 fd5ff06f jal x0, -44 +12967855ns 227241 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12968139ns 227246 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12968537ns 227253 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12968707ns 227256 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12969162ns 227264 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12969332ns 227267 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12969616ns 227272 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12969901ns 227277 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12970185ns 227282 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12970639ns 227290 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12970810ns 227293 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12971094ns 227298 1a110850 fd5ff06f jal x0, -44 +12971378ns 227303 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12971662ns 227308 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12972060ns 227315 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12972231ns 227318 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12972685ns 227326 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12972856ns 227329 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12973140ns 227334 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12973424ns 227339 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12973708ns 227344 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12974163ns 227352 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12974333ns 227355 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12974618ns 227360 1a110850 fd5ff06f jal x0, -44 +12974902ns 227365 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12975186ns 227370 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12975584ns 227377 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12975754ns 227380 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12976209ns 227388 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12976379ns 227391 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12976664ns 227396 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12976948ns 227401 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12977232ns 227406 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12977687ns 227414 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12977857ns 227417 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12978141ns 227422 1a110850 fd5ff06f jal x0, -44 +12978425ns 227427 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12978710ns 227432 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12979107ns 227439 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12979278ns 227442 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12979733ns 227450 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12979903ns 227453 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12980187ns 227458 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12980471ns 227463 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12980755ns 227468 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12981210ns 227476 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12981381ns 227479 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12981665ns 227484 1a110850 fd5ff06f jal x0, -44 +12981949ns 227489 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12982233ns 227494 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12982631ns 227501 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12982801ns 227504 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12983256ns 227512 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12983427ns 227515 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12983711ns 227520 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12983995ns 227525 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12984279ns 227530 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12984734ns 227538 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12984904ns 227541 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12985188ns 227546 1a110850 fd5ff06f jal x0, -44 +12985473ns 227551 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12985757ns 227556 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12986155ns 227563 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12986325ns 227566 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12986780ns 227574 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12986950ns 227577 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12987234ns 227582 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12987519ns 227587 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12987803ns 227592 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12988257ns 227600 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12988428ns 227603 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12988712ns 227608 1a110850 fd5ff06f jal x0, -44 +12988996ns 227613 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12989280ns 227618 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12989678ns 227625 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12989849ns 227628 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12990303ns 227636 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12990474ns 227639 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12990758ns 227644 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12991042ns 227649 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12991326ns 227654 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12991781ns 227662 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12991951ns 227665 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12992236ns 227670 1a110850 fd5ff06f jal x0, -44 +12992520ns 227675 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12992804ns 227680 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12993202ns 227687 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12993372ns 227690 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12993827ns 227698 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12993997ns 227701 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12994282ns 227706 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12994566ns 227711 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12994850ns 227716 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12995304ns 227724 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12995475ns 227727 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12995759ns 227732 1a110850 fd5ff06f jal x0, -44 +12996043ns 227737 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12996327ns 227742 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +12996725ns 227749 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12996896ns 227752 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12997350ns 227760 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +12997521ns 227763 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +12997805ns 227768 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12998089ns 227773 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +12998373ns 227778 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +12998828ns 227786 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +12998999ns 227789 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +12999283ns 227794 1a110850 fd5ff06f jal x0, -44 +12999567ns 227799 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +12999851ns 227804 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13000249ns 227811 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13000419ns 227814 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13000874ns 227822 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13001045ns 227825 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13001329ns 227830 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13001613ns 227835 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13001897ns 227840 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13002352ns 227848 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13002522ns 227851 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13002806ns 227856 1a110850 fd5ff06f jal x0, -44 +13003090ns 227861 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13003375ns 227866 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13003772ns 227873 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13003943ns 227876 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13004398ns 227884 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13004568ns 227887 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13004852ns 227892 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13005136ns 227897 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13005421ns 227902 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13005875ns 227910 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13006046ns 227913 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13006330ns 227918 1a110850 fd5ff06f jal x0, -44 +13006614ns 227923 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13006898ns 227928 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13007296ns 227935 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13007467ns 227938 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13007921ns 227946 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13008092ns 227949 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13008376ns 227954 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13008660ns 227959 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13008944ns 227964 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13009399ns 227972 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13009569ns 227975 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13009853ns 227980 1a110850 fd5ff06f jal x0, -44 +13010138ns 227985 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13010422ns 227990 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13010820ns 227997 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13010990ns 228000 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13011445ns 228008 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13011615ns 228011 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13011899ns 228016 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13012184ns 228021 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13012468ns 228026 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13012922ns 228034 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13013093ns 228037 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13013377ns 228042 1a110850 fd5ff06f jal x0, -44 +13013661ns 228047 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13013945ns 228052 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13014343ns 228059 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13014514ns 228062 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13014968ns 228070 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13015139ns 228073 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13015423ns 228078 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13015707ns 228083 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13015991ns 228088 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13016446ns 228096 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13016616ns 228099 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13016901ns 228104 1a110850 fd5ff06f jal x0, -44 +13017185ns 228109 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13017469ns 228114 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13017867ns 228121 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13018037ns 228124 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13018492ns 228132 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13018662ns 228135 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13018947ns 228140 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13019231ns 228145 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13019515ns 228150 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13019970ns 228158 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13020140ns 228161 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13020424ns 228166 1a110850 fd5ff06f jal x0, -44 +13020708ns 228171 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13020993ns 228176 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13021390ns 228183 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13021561ns 228186 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13022016ns 228194 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13022186ns 228197 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13022470ns 228202 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13022754ns 228207 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13023039ns 228212 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13023493ns 228220 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13023664ns 228223 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13023948ns 228228 1a110850 fd5ff06f jal x0, -44 +13024232ns 228233 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13024516ns 228238 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13024914ns 228245 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13025084ns 228248 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13025539ns 228256 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13025710ns 228259 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13025994ns 228264 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13026278ns 228269 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13026562ns 228274 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13027017ns 228282 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13027187ns 228285 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13027471ns 228290 1a110850 fd5ff06f jal x0, -44 +13027756ns 228295 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13028040ns 228300 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13028438ns 228307 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13028608ns 228310 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13029063ns 228318 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13029233ns 228321 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13029517ns 228326 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13029802ns 228331 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13030086ns 228336 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13030540ns 228344 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13030711ns 228347 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13030995ns 228352 1a110850 fd5ff06f jal x0, -44 +13031279ns 228357 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13031563ns 228362 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13031961ns 228369 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13032132ns 228372 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13032586ns 228380 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13032757ns 228383 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13033041ns 228388 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13033325ns 228393 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13033609ns 228398 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13034064ns 228406 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13034234ns 228409 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13034519ns 228414 1a110850 fd5ff06f jal x0, -44 +13034803ns 228419 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13035087ns 228424 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13035485ns 228431 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13035655ns 228434 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13036110ns 228442 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13036280ns 228445 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13036565ns 228450 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13036849ns 228455 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13037133ns 228460 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13037587ns 228468 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13037758ns 228471 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13038042ns 228476 1a110850 fd5ff06f jal x0, -44 +13038326ns 228481 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13038610ns 228486 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13039008ns 228493 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13039179ns 228496 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13039633ns 228504 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13039804ns 228507 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13040088ns 228512 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13040372ns 228517 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13040656ns 228522 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13041111ns 228530 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13041282ns 228533 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13041566ns 228538 1a110850 fd5ff06f jal x0, -44 +13041850ns 228543 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13042134ns 228548 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13042532ns 228555 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13042702ns 228558 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13043157ns 228566 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13043328ns 228569 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13043612ns 228574 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13043896ns 228579 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13044180ns 228584 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13044635ns 228592 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13044805ns 228595 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13045089ns 228600 1a110850 fd5ff06f jal x0, -44 +13045373ns 228605 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13045658ns 228610 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13046055ns 228617 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13046226ns 228620 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13046681ns 228628 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13046851ns 228631 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13047135ns 228636 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13047419ns 228641 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13047704ns 228646 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13048158ns 228654 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13048329ns 228657 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13048613ns 228662 1a110850 fd5ff06f jal x0, -44 +13048897ns 228667 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13049181ns 228672 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13049579ns 228679 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13049750ns 228682 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13050204ns 228690 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13050375ns 228693 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13050659ns 228698 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13050943ns 228703 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13051227ns 228708 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13051682ns 228716 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13051852ns 228719 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13052136ns 228724 1a110850 fd5ff06f jal x0, -44 +13052421ns 228729 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13052705ns 228734 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13053103ns 228741 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13053273ns 228744 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13053728ns 228752 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13053898ns 228755 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13054182ns 228760 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13054467ns 228765 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13054751ns 228770 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13055205ns 228778 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13055376ns 228781 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13055660ns 228786 1a110850 fd5ff06f jal x0, -44 +13055944ns 228791 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13056228ns 228796 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13056626ns 228803 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13056797ns 228806 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13057251ns 228814 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13057422ns 228817 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13057706ns 228822 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13057990ns 228827 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13058274ns 228832 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13058729ns 228840 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13058899ns 228843 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13059184ns 228848 1a110850 fd5ff06f jal x0, -44 +13059468ns 228853 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13059752ns 228858 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13060150ns 228865 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13060320ns 228868 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13060775ns 228876 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13060945ns 228879 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13061230ns 228884 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13061514ns 228889 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13061798ns 228894 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13062253ns 228902 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13062423ns 228905 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13062707ns 228910 1a110850 fd5ff06f jal x0, -44 +13062991ns 228915 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13063276ns 228920 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13063673ns 228927 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13063844ns 228930 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13064299ns 228938 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13064469ns 228941 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13064753ns 228946 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13065037ns 228951 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13065322ns 228956 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13065776ns 228964 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13065947ns 228967 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13066231ns 228972 1a110850 fd5ff06f jal x0, -44 +13066515ns 228977 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13066799ns 228982 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13067197ns 228989 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13067367ns 228992 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13067822ns 229000 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13067993ns 229003 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13068277ns 229008 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13068561ns 229013 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13068845ns 229018 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13069300ns 229026 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13069470ns 229029 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13069754ns 229034 1a110850 fd5ff06f jal x0, -44 +13070039ns 229039 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13070323ns 229044 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13070721ns 229051 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13070891ns 229054 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13071346ns 229062 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13071516ns 229065 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13071800ns 229070 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13072085ns 229075 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13072369ns 229080 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13072823ns 229088 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13072994ns 229091 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13073278ns 229096 1a110850 fd5ff06f jal x0, -44 +13073562ns 229101 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13073846ns 229106 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13074244ns 229113 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13074415ns 229116 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13074869ns 229124 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13075040ns 229127 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13075324ns 229132 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13075608ns 229137 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13075892ns 229142 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13076347ns 229150 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13076517ns 229153 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13076802ns 229158 1a110850 fd5ff06f jal x0, -44 +13077086ns 229163 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13077370ns 229168 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13077768ns 229175 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13077938ns 229178 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13078393ns 229186 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13078563ns 229189 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13078848ns 229194 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13079132ns 229199 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13079416ns 229204 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13079871ns 229212 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13080041ns 229215 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13080325ns 229220 1a110850 fd5ff06f jal x0, -44 +13080609ns 229225 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13080893ns 229230 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13081291ns 229237 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13081462ns 229240 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13081916ns 229248 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13082087ns 229251 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13082371ns 229256 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13082655ns 229261 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13082939ns 229266 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13083394ns 229274 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13083565ns 229277 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13083849ns 229282 1a110850 fd5ff06f jal x0, -44 +13084133ns 229287 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13084417ns 229292 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13084815ns 229299 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13084985ns 229302 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13085440ns 229310 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13085611ns 229313 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13085895ns 229318 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13086179ns 229323 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13086463ns 229328 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13086918ns 229336 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13087088ns 229339 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13087372ns 229344 1a110850 fd5ff06f jal x0, -44 +13087656ns 229349 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13087941ns 229354 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13088338ns 229361 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13088509ns 229364 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13088964ns 229372 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13089134ns 229375 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13089418ns 229380 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13089702ns 229385 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13089987ns 229390 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13090441ns 229398 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13090612ns 229401 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13090896ns 229406 1a110850 fd5ff06f jal x0, -44 +13091180ns 229411 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13091464ns 229416 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13091862ns 229423 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13092033ns 229426 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13092487ns 229434 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13092658ns 229437 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13092942ns 229442 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13093226ns 229447 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13093510ns 229452 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13093965ns 229460 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13094135ns 229463 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13094419ns 229468 1a110850 fd5ff06f jal x0, -44 +13094704ns 229473 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13094988ns 229478 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13095386ns 229485 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13095556ns 229488 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13096011ns 229496 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13096181ns 229499 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13096465ns 229504 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13096750ns 229509 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13097034ns 229514 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13097488ns 229522 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13097659ns 229525 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13097943ns 229530 1a110850 fd5ff06f jal x0, -44 +13098227ns 229535 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13098511ns 229540 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13098909ns 229547 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13099080ns 229550 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13099534ns 229558 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13099705ns 229561 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13099989ns 229566 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13100273ns 229571 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13100557ns 229576 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13101012ns 229584 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13101183ns 229587 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13101467ns 229592 1a110850 fd5ff06f jal x0, -44 +13101751ns 229597 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13102035ns 229602 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13102433ns 229609 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13102603ns 229612 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13103058ns 229620 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13103228ns 229623 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13103513ns 229628 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13103797ns 229633 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13104081ns 229638 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13104536ns 229646 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13104706ns 229649 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13104990ns 229654 1a110850 fd5ff06f jal x0, -44 +13105274ns 229659 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13105559ns 229664 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13105956ns 229671 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13106127ns 229674 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13106582ns 229682 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13106752ns 229685 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13107036ns 229690 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13107320ns 229695 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13107605ns 229700 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13108059ns 229708 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13108230ns 229711 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13108514ns 229716 1a110850 fd5ff06f jal x0, -44 +13108798ns 229721 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13109082ns 229726 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13109480ns 229733 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13109650ns 229736 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13110105ns 229744 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13110276ns 229747 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13110560ns 229752 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13110844ns 229757 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13111128ns 229762 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13111583ns 229770 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13111753ns 229773 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13112037ns 229778 1a110850 fd5ff06f jal x0, -44 +13112322ns 229783 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13112606ns 229788 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13113004ns 229795 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13113174ns 229798 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13113629ns 229806 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13113799ns 229809 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13114083ns 229814 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13114368ns 229819 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13114652ns 229824 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13115106ns 229832 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13115277ns 229835 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13115561ns 229840 1a110850 fd5ff06f jal x0, -44 +13115845ns 229845 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13116129ns 229850 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13116527ns 229857 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13116698ns 229860 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13117152ns 229868 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13117323ns 229871 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13117607ns 229876 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13117891ns 229881 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13118175ns 229886 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13118630ns 229894 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13118800ns 229897 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13119085ns 229902 1a110850 fd5ff06f jal x0, -44 +13119369ns 229907 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13119653ns 229912 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13120051ns 229919 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13120221ns 229922 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13120676ns 229930 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13120846ns 229933 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13121131ns 229938 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13121415ns 229943 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13121699ns 229948 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13122154ns 229956 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13122324ns 229959 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13122608ns 229964 1a110850 fd5ff06f jal x0, -44 +13122892ns 229969 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13123176ns 229974 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13123574ns 229981 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13123745ns 229984 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13124199ns 229992 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13124370ns 229995 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13124654ns 230000 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13124938ns 230005 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13125222ns 230010 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13125677ns 230018 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13125848ns 230021 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13126132ns 230026 1a110850 fd5ff06f jal x0, -44 +13126416ns 230031 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13126700ns 230036 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13127098ns 230043 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13127268ns 230046 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13127723ns 230054 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13127894ns 230057 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13128178ns 230062 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13128462ns 230067 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13128746ns 230072 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13129201ns 230080 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13129371ns 230083 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13129655ns 230088 1a110850 fd5ff06f jal x0, -44 +13129939ns 230093 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13130224ns 230098 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13130621ns 230105 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13130792ns 230108 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13131247ns 230116 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13131417ns 230119 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13131701ns 230124 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13131985ns 230129 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13132270ns 230134 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13132724ns 230142 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13132895ns 230145 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13133179ns 230150 1a110850 fd5ff06f jal x0, -44 +13133463ns 230155 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13133747ns 230160 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13134145ns 230167 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13134316ns 230170 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13134770ns 230178 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13134941ns 230181 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13135225ns 230186 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13135509ns 230191 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13135793ns 230196 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13136248ns 230204 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13136418ns 230207 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13136703ns 230212 1a110850 fd5ff06f jal x0, -44 +13136987ns 230217 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13137271ns 230222 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13137669ns 230229 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13137839ns 230232 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13138294ns 230240 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13138464ns 230243 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13138748ns 230248 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13139033ns 230253 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13139317ns 230258 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13139771ns 230266 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13139942ns 230269 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13140226ns 230274 1a110850 fd5ff06f jal x0, -44 +13140510ns 230279 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13140794ns 230284 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13141192ns 230291 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13141363ns 230294 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13141817ns 230302 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13141988ns 230305 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13142272ns 230310 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13142556ns 230315 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13142840ns 230320 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13143295ns 230328 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13143466ns 230331 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13143750ns 230336 1a110850 fd5ff06f jal x0, -44 +13144034ns 230341 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13144318ns 230346 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13144716ns 230353 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13144886ns 230356 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13145341ns 230364 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13145511ns 230367 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13145796ns 230372 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13146080ns 230377 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13146364ns 230382 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13146819ns 230390 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13146989ns 230393 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13147273ns 230398 1a110850 fd5ff06f jal x0, -44 +13147557ns 230403 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13147842ns 230408 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13148239ns 230415 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13148410ns 230418 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13148865ns 230426 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13149035ns 230429 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13149319ns 230434 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13149603ns 230439 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13149888ns 230444 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13150342ns 230452 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13150513ns 230455 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13150797ns 230460 1a110850 fd5ff06f jal x0, -44 +13151081ns 230465 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13151365ns 230470 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13151763ns 230477 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13151933ns 230480 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13152388ns 230488 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13152559ns 230491 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13152843ns 230496 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13153127ns 230501 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13153411ns 230506 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13153866ns 230514 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13154036ns 230517 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13154320ns 230522 1a110850 fd5ff06f jal x0, -44 +13154605ns 230527 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13154889ns 230532 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13155287ns 230539 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13155457ns 230542 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13155912ns 230550 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13156082ns 230553 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13156366ns 230558 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13156651ns 230563 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13156935ns 230568 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13157389ns 230576 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13157560ns 230579 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13157844ns 230584 1a110850 fd5ff06f jal x0, -44 +13158128ns 230589 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13158412ns 230594 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13158810ns 230601 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13158981ns 230604 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13159435ns 230612 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13159606ns 230615 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13159890ns 230620 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13160174ns 230625 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13160458ns 230630 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13160913ns 230638 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13161083ns 230641 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13161368ns 230646 1a110850 fd5ff06f jal x0, -44 +13161652ns 230651 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13161936ns 230656 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13162334ns 230663 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13162504ns 230666 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13162959ns 230674 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13163129ns 230677 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13163414ns 230682 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13163698ns 230687 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13163982ns 230692 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13164437ns 230700 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13164607ns 230703 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13164891ns 230708 1a110850 fd5ff06f jal x0, -44 +13165175ns 230713 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13165459ns 230718 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13165857ns 230725 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13166028ns 230728 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13166482ns 230736 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13166653ns 230739 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13166937ns 230744 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13167221ns 230749 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13167505ns 230754 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13167960ns 230762 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13168131ns 230765 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13168415ns 230770 1a110850 fd5ff06f jal x0, -44 +13168699ns 230775 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13168983ns 230780 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13169381ns 230787 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13169551ns 230790 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13170006ns 230798 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13170177ns 230801 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13170461ns 230806 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13170745ns 230811 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13171029ns 230816 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13171484ns 230824 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13171654ns 230827 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13171938ns 230832 1a110850 fd5ff06f jal x0, -44 +13172223ns 230837 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13172507ns 230842 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13172904ns 230849 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13173075ns 230852 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13173530ns 230860 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13173700ns 230863 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13173984ns 230868 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13174268ns 230873 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13174553ns 230878 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13175007ns 230886 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13175178ns 230889 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13175462ns 230894 1a110850 fd5ff06f jal x0, -44 +13175746ns 230899 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13176030ns 230904 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13176428ns 230911 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13176599ns 230914 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13177053ns 230922 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13177224ns 230925 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13177508ns 230930 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13177792ns 230935 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13178076ns 230940 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13178531ns 230948 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13178701ns 230951 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13178986ns 230956 1a110850 fd5ff06f jal x0, -44 +13179270ns 230961 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13179554ns 230966 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13179952ns 230973 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13180122ns 230976 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13180577ns 230984 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13180747ns 230987 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13181031ns 230992 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13181316ns 230997 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13181600ns 231002 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13182054ns 231010 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13182225ns 231013 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13182509ns 231018 1a110850 fd5ff06f jal x0, -44 +13182793ns 231023 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13183077ns 231028 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13183475ns 231035 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13183646ns 231038 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13184100ns 231046 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13184271ns 231049 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13184555ns 231054 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13184839ns 231059 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13185123ns 231064 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13185578ns 231072 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13185749ns 231075 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13186033ns 231080 1a110850 fd5ff06f jal x0, -44 +13186317ns 231085 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13186601ns 231090 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13186999ns 231097 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13187169ns 231100 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13187624ns 231108 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13187794ns 231111 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13188079ns 231116 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13188363ns 231121 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13188647ns 231126 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13189102ns 231134 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13189272ns 231137 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13189556ns 231142 1a110850 fd5ff06f jal x0, -44 +13189840ns 231147 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13190125ns 231152 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13190522ns 231159 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13190693ns 231162 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13191148ns 231170 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13191318ns 231173 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13191602ns 231178 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13191886ns 231183 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13192171ns 231188 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13192625ns 231196 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13192796ns 231199 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13193080ns 231204 1a110850 fd5ff06f jal x0, -44 +13193364ns 231209 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13193648ns 231214 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13194046ns 231221 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13194216ns 231224 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13194671ns 231232 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13194842ns 231235 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13195126ns 231240 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13195410ns 231245 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13195694ns 231250 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13196149ns 231258 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13196319ns 231261 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13196603ns 231266 1a110850 fd5ff06f jal x0, -44 +13196888ns 231271 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13197172ns 231276 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13197570ns 231283 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13197740ns 231286 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13198195ns 231294 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13198365ns 231297 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13198649ns 231302 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13198934ns 231307 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13199218ns 231312 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13199672ns 231320 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13199843ns 231323 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13200127ns 231328 1a110850 fd5ff06f jal x0, -44 +13200411ns 231333 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13200695ns 231338 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13201093ns 231345 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13201264ns 231348 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13201718ns 231356 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13201889ns 231359 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13202173ns 231364 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13202457ns 231369 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13202741ns 231374 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13203196ns 231382 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13203366ns 231385 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13203651ns 231390 1a110850 fd5ff06f jal x0, -44 +13203935ns 231395 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13204219ns 231400 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13204617ns 231407 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13204787ns 231410 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13205242ns 231418 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13205412ns 231421 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13205697ns 231426 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13205981ns 231431 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13206265ns 231436 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13206720ns 231444 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13206890ns 231447 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13207174ns 231452 1a110850 fd5ff06f jal x0, -44 +13207458ns 231457 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13207743ns 231462 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13208140ns 231469 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13208311ns 231472 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13208765ns 231480 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13208936ns 231483 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13209220ns 231488 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13209504ns 231493 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13209788ns 231498 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13210243ns 231506 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13210414ns 231509 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13210698ns 231514 1a110850 fd5ff06f jal x0, -44 +13210982ns 231519 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13211266ns 231524 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13211664ns 231531 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13211834ns 231534 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13212289ns 231542 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13212460ns 231545 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13212744ns 231550 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13213028ns 231555 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13213312ns 231560 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13213767ns 231568 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13213937ns 231571 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13214221ns 231576 1a110850 fd5ff06f jal x0, -44 +13214506ns 231581 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13214790ns 231586 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13215187ns 231593 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13215358ns 231596 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13215813ns 231604 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13215983ns 231607 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13216267ns 231612 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13216551ns 231617 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13216836ns 231622 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13217290ns 231630 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13217461ns 231633 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13217745ns 231638 1a110850 fd5ff06f jal x0, -44 +13218029ns 231643 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13218313ns 231648 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13218711ns 231655 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13218882ns 231658 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13219336ns 231666 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13219507ns 231669 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13219791ns 231674 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13220075ns 231679 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13220359ns 231684 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13220814ns 231692 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13220984ns 231695 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13221269ns 231700 1a110850 fd5ff06f jal x0, -44 +13221553ns 231705 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13221837ns 231710 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13222235ns 231717 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13222405ns 231720 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13222860ns 231728 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13223030ns 231731 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13223314ns 231736 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13223599ns 231741 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13223883ns 231746 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13224337ns 231754 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13224508ns 231757 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13224792ns 231762 1a110850 fd5ff06f jal x0, -44 +13225076ns 231767 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13225360ns 231772 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13225758ns 231779 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13225929ns 231782 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13226383ns 231790 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13226554ns 231793 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13226838ns 231798 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13227122ns 231803 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13227406ns 231808 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13227861ns 231816 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13228032ns 231819 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13228316ns 231824 1a110850 fd5ff06f jal x0, -44 +13228600ns 231829 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13228884ns 231834 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13229282ns 231841 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13229452ns 231844 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13229907ns 231852 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13230077ns 231855 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13230362ns 231860 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13230646ns 231865 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13230930ns 231870 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13231385ns 231878 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13231555ns 231881 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13231839ns 231886 1a110850 fd5ff06f jal x0, -44 +13232123ns 231891 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13232408ns 231896 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13232805ns 231903 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13232976ns 231906 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13233431ns 231914 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13233601ns 231917 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13233885ns 231922 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13234169ns 231927 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13234454ns 231932 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13234908ns 231940 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13235079ns 231943 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13235363ns 231948 1a110850 fd5ff06f jal x0, -44 +13235647ns 231953 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13235931ns 231958 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13236329ns 231965 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13236499ns 231968 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13236954ns 231976 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13237125ns 231979 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13237409ns 231984 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13237693ns 231989 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13237977ns 231994 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13238432ns 232002 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13238602ns 232005 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13238886ns 232010 1a110850 fd5ff06f jal x0, -44 +13239171ns 232015 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13239455ns 232020 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13239853ns 232027 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13240023ns 232030 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13240478ns 232038 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13240648ns 232041 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13240932ns 232046 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13241217ns 232051 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13241501ns 232056 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13241955ns 232064 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13242126ns 232067 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13242410ns 232072 1a110850 fd5ff06f jal x0, -44 +13242694ns 232077 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13242978ns 232082 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13243376ns 232089 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13243547ns 232092 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13244001ns 232100 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13244172ns 232103 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13244456ns 232108 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13244740ns 232113 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13245024ns 232118 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13245479ns 232126 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13245649ns 232129 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13245934ns 232134 1a110850 fd5ff06f jal x0, -44 +13246218ns 232139 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13246502ns 232144 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13246900ns 232151 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13247070ns 232154 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13247525ns 232162 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13247695ns 232165 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13247980ns 232170 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13248264ns 232175 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13248548ns 232180 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13249003ns 232188 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13249173ns 232191 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13249457ns 232196 1a110850 fd5ff06f jal x0, -44 +13249741ns 232201 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13250026ns 232206 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13250423ns 232213 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13250594ns 232216 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13251048ns 232224 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13251219ns 232227 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13251503ns 232232 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13251787ns 232237 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13252071ns 232242 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13252526ns 232250 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13252697ns 232253 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13252981ns 232258 1a110850 fd5ff06f jal x0, -44 +13253265ns 232263 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13253549ns 232268 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13253947ns 232275 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13254117ns 232278 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13254572ns 232286 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13254743ns 232289 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13255027ns 232294 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13255311ns 232299 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13255595ns 232304 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13256050ns 232312 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13256220ns 232315 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13256504ns 232320 1a110850 fd5ff06f jal x0, -44 +13256789ns 232325 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13257073ns 232330 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13257471ns 232337 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13257641ns 232340 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13258096ns 232348 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13258266ns 232351 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13258550ns 232356 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13258834ns 232361 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13259119ns 232366 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13259573ns 232374 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13259744ns 232377 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13260028ns 232382 1a110850 fd5ff06f jal x0, -44 +13260312ns 232387 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13260596ns 232392 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13260994ns 232399 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13261165ns 232402 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13261619ns 232410 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13261790ns 232413 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13262074ns 232418 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13262358ns 232423 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13262642ns 232428 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13263097ns 232436 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13263267ns 232439 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13263552ns 232444 1a110850 fd5ff06f jal x0, -44 +13263836ns 232449 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13264120ns 232454 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13264518ns 232461 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13264688ns 232464 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13265143ns 232472 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13265313ns 232475 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13265597ns 232480 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13265882ns 232485 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13266166ns 232490 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13266620ns 232498 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13266791ns 232501 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13267075ns 232506 1a110850 fd5ff06f jal x0, -44 +13267359ns 232511 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13267643ns 232516 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13268041ns 232523 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13268212ns 232526 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13268666ns 232534 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13268837ns 232537 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13269121ns 232542 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13269405ns 232547 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13269689ns 232552 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13270144ns 232560 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13270315ns 232563 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13270599ns 232568 1a110850 fd5ff06f jal x0, -44 +13270883ns 232573 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13271167ns 232578 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13271565ns 232585 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13271735ns 232588 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13272190ns 232596 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13272360ns 232599 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13272645ns 232604 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13272929ns 232609 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13273213ns 232614 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13273668ns 232622 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13273838ns 232625 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13274122ns 232630 1a110850 fd5ff06f jal x0, -44 +13274406ns 232635 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13274691ns 232640 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13275088ns 232647 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13275259ns 232650 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13275714ns 232658 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13275884ns 232661 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13276168ns 232666 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13276452ns 232671 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13276737ns 232676 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13277191ns 232684 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13277362ns 232687 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13277646ns 232692 1a110850 fd5ff06f jal x0, -44 +13277930ns 232697 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13278214ns 232702 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13278612ns 232709 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13278783ns 232712 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13279237ns 232720 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13279408ns 232723 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13279692ns 232728 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13279976ns 232733 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13280260ns 232738 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13280715ns 232746 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13280885ns 232749 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13281169ns 232754 1a110850 fd5ff06f jal x0, -44 +13281454ns 232759 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13281738ns 232764 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13282136ns 232771 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13282306ns 232774 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13282761ns 232782 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13282931ns 232785 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13283215ns 232790 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13283500ns 232795 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13283784ns 232800 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13284238ns 232808 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13284409ns 232811 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13284693ns 232816 1a110850 fd5ff06f jal x0, -44 +13284977ns 232821 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13285261ns 232826 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13285659ns 232833 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13285830ns 232836 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13286284ns 232844 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13286455ns 232847 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13286739ns 232852 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13287023ns 232857 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13287307ns 232862 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13287762ns 232870 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13287932ns 232873 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13288217ns 232878 1a110850 fd5ff06f jal x0, -44 +13288501ns 232883 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13288785ns 232888 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13289183ns 232895 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13289353ns 232898 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13289808ns 232906 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13289978ns 232909 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13290263ns 232914 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13290547ns 232919 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13290831ns 232924 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13291286ns 232932 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13291456ns 232935 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13291740ns 232940 1a110850 fd5ff06f jal x0, -44 +13292024ns 232945 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13292309ns 232950 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13292706ns 232957 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13292877ns 232960 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13293331ns 232968 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13293502ns 232971 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13293786ns 232976 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13294070ns 232981 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13294354ns 232986 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13294809ns 232994 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13294980ns 232997 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13295264ns 233002 1a110850 fd5ff06f jal x0, -44 +13295548ns 233007 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13295832ns 233012 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13296230ns 233019 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13296400ns 233022 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13296855ns 233030 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13297026ns 233033 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13297310ns 233038 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13297594ns 233043 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13297878ns 233048 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13298333ns 233056 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13298503ns 233059 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13298787ns 233064 1a110850 fd5ff06f jal x0, -44 +13299072ns 233069 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13299356ns 233074 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13299754ns 233081 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13299924ns 233084 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13300379ns 233092 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13300549ns 233095 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13300833ns 233100 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13301117ns 233105 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13301402ns 233110 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13301856ns 233118 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13302027ns 233121 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13302311ns 233126 1a110850 fd5ff06f jal x0, -44 +13302595ns 233131 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13302879ns 233136 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13303277ns 233143 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13303448ns 233146 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13303902ns 233154 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13304073ns 233157 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13304357ns 233162 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13304641ns 233167 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13304925ns 233172 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13305380ns 233180 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13305550ns 233183 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13305835ns 233188 1a110850 fd5ff06f jal x0, -44 +13306119ns 233193 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13306403ns 233198 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13306801ns 233205 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13306971ns 233208 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13307426ns 233216 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13307596ns 233219 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13307880ns 233224 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13308165ns 233229 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13308449ns 233234 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13308903ns 233242 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13309074ns 233245 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13309358ns 233250 1a110850 fd5ff06f jal x0, -44 +13309642ns 233255 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13309926ns 233260 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13310324ns 233267 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13310495ns 233270 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13310949ns 233278 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13311120ns 233281 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13311404ns 233286 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13311688ns 233291 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13311972ns 233296 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13312427ns 233304 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13312598ns 233307 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13312882ns 233312 1a110850 fd5ff06f jal x0, -44 +13313166ns 233317 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13313450ns 233322 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13313848ns 233329 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13314018ns 233332 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13314473ns 233340 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13314643ns 233343 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13314928ns 233348 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13315212ns 233353 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13315496ns 233358 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13315951ns 233366 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13316121ns 233369 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13316405ns 233374 1a110850 fd5ff06f jal x0, -44 +13316689ns 233379 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13316974ns 233384 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13317371ns 233391 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13317542ns 233394 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13317997ns 233402 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13318167ns 233405 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13318451ns 233410 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13318735ns 233415 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13319020ns 233420 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13319474ns 233428 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13319645ns 233431 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13319929ns 233436 1a110850 fd5ff06f jal x0, -44 +13320213ns 233441 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13320497ns 233446 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13320895ns 233453 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13321066ns 233456 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13321520ns 233464 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13321691ns 233467 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13321975ns 233472 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13322259ns 233477 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13322543ns 233482 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13322998ns 233490 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13323168ns 233493 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13323452ns 233498 1a110850 fd5ff06f jal x0, -44 +13323737ns 233503 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13324021ns 233508 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13324419ns 233515 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13324589ns 233518 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13325044ns 233526 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13325214ns 233529 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13325498ns 233534 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13325783ns 233539 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13326067ns 233544 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13326521ns 233552 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13326692ns 233555 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13326976ns 233560 1a110850 fd5ff06f jal x0, -44 +13327260ns 233565 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13327544ns 233570 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13327942ns 233577 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13328113ns 233580 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13328567ns 233588 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13328738ns 233591 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13329022ns 233596 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13329306ns 233601 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13329590ns 233606 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13330045ns 233614 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13330215ns 233617 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13330500ns 233622 1a110850 fd5ff06f jal x0, -44 +13330784ns 233627 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13331068ns 233632 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13331466ns 233639 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13331636ns 233642 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13332091ns 233650 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13332261ns 233653 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13332546ns 233658 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13332830ns 233663 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13333114ns 233668 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13333569ns 233676 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13333739ns 233679 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13334023ns 233684 1a110850 fd5ff06f jal x0, -44 +13334307ns 233689 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13334592ns 233694 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13334989ns 233701 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13335160ns 233704 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13335615ns 233712 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13335785ns 233715 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13336069ns 233720 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13336353ns 233725 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13336637ns 233730 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13337092ns 233738 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13337263ns 233741 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13337547ns 233746 1a110850 fd5ff06f jal x0, -44 +13337831ns 233751 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13338115ns 233756 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13338513ns 233763 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13338683ns 233766 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13339138ns 233774 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13339309ns 233777 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13339593ns 233782 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13339877ns 233787 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13340161ns 233792 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13340616ns 233800 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13340786ns 233803 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13341070ns 233808 1a110850 fd5ff06f jal x0, -44 +13341355ns 233813 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13341639ns 233818 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13342037ns 233825 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13342207ns 233828 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13342662ns 233836 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13342832ns 233839 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13343116ns 233844 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13343400ns 233849 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13343685ns 233854 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13344139ns 233862 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13344310ns 233865 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13344594ns 233870 1a110850 fd5ff06f jal x0, -44 +13344878ns 233875 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13345162ns 233880 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13345560ns 233887 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13345731ns 233890 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13346185ns 233898 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13346356ns 233901 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13346640ns 233906 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13346924ns 233911 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13347208ns 233916 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13347663ns 233924 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13347833ns 233927 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13348118ns 233932 1a110850 fd5ff06f jal x0, -44 +13348402ns 233937 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13348686ns 233942 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13349084ns 233949 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13349254ns 233952 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13349709ns 233960 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13349879ns 233963 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13350163ns 233968 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13350448ns 233973 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13350732ns 233978 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13351186ns 233986 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13351357ns 233989 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13351641ns 233994 1a110850 fd5ff06f jal x0, -44 +13351925ns 233999 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13352209ns 234004 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13352607ns 234011 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13352778ns 234014 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13353232ns 234022 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13353403ns 234025 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13353687ns 234030 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13353971ns 234035 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13354255ns 234040 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13354710ns 234048 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13354881ns 234051 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13355165ns 234056 1a110850 fd5ff06f jal x0, -44 +13355449ns 234061 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13355733ns 234066 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13356131ns 234073 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13356301ns 234076 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13356756ns 234084 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13356927ns 234087 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13357211ns 234092 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13357495ns 234097 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13357779ns 234102 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13358234ns 234110 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13358404ns 234113 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13358688ns 234118 1a110850 fd5ff06f jal x0, -44 +13358972ns 234123 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13359257ns 234128 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13359654ns 234135 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13359825ns 234138 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13360280ns 234146 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13360450ns 234149 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13360734ns 234154 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13361018ns 234159 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13361303ns 234164 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13361757ns 234172 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13361928ns 234175 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13362212ns 234180 1a110850 fd5ff06f jal x0, -44 +13362496ns 234185 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13362780ns 234190 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13363178ns 234197 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13363349ns 234200 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13363803ns 234208 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13363974ns 234211 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13364258ns 234216 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13364542ns 234221 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13364826ns 234226 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13365281ns 234234 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13365451ns 234237 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13365735ns 234242 1a110850 fd5ff06f jal x0, -44 +13366020ns 234247 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13366304ns 234252 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13366702ns 234259 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13366872ns 234262 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13367327ns 234270 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13367497ns 234273 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13367781ns 234278 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13368066ns 234283 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13368350ns 234288 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13368804ns 234296 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13368975ns 234299 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13369259ns 234304 1a110850 fd5ff06f jal x0, -44 +13369543ns 234309 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13369827ns 234314 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13370225ns 234321 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13370396ns 234324 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13370850ns 234332 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13371021ns 234335 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13371305ns 234340 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13371589ns 234345 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13371873ns 234350 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13372328ns 234358 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13372498ns 234361 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13372783ns 234366 1a110850 fd5ff06f jal x0, -44 +13373067ns 234371 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13373351ns 234376 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13373749ns 234383 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13373919ns 234386 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13374374ns 234394 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13374544ns 234397 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13374829ns 234402 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13375113ns 234407 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13375397ns 234412 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13375852ns 234420 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13376022ns 234423 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13376306ns 234428 1a110850 fd5ff06f jal x0, -44 +13376590ns 234433 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13376875ns 234438 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13377272ns 234445 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13377443ns 234448 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13377898ns 234456 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13378068ns 234459 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13378352ns 234464 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13378636ns 234469 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13378920ns 234474 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13379375ns 234482 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13379546ns 234485 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13379830ns 234490 1a110850 fd5ff06f jal x0, -44 +13380114ns 234495 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13380398ns 234500 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13380796ns 234507 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13380966ns 234510 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13381421ns 234518 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13381592ns 234521 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13381876ns 234526 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13382160ns 234531 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13382444ns 234536 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13382899ns 234544 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13383069ns 234547 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13383353ns 234552 1a110850 fd5ff06f jal x0, -44 +13383638ns 234557 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13383922ns 234562 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13384320ns 234569 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13384490ns 234572 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13384945ns 234580 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13385115ns 234583 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13385399ns 234588 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13385683ns 234593 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13385968ns 234598 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13386422ns 234606 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13386593ns 234609 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13386877ns 234614 1a110850 fd5ff06f jal x0, -44 +13387161ns 234619 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13387445ns 234624 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13387843ns 234631 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13388014ns 234634 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13388468ns 234642 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13388639ns 234645 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13388923ns 234650 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13389207ns 234655 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13389491ns 234660 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13389946ns 234668 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13390116ns 234671 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13390401ns 234676 1a110850 fd5ff06f jal x0, -44 +13390685ns 234681 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13390969ns 234686 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13391367ns 234693 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13391537ns 234696 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13391992ns 234704 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13392162ns 234707 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13392447ns 234712 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13392731ns 234717 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13393015ns 234722 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13393469ns 234730 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13393640ns 234733 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13393924ns 234738 1a110850 fd5ff06f jal x0, -44 +13394208ns 234743 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13394492ns 234748 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13394890ns 234755 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13395061ns 234758 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13395515ns 234766 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13395686ns 234769 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13395970ns 234774 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13396254ns 234779 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13396538ns 234784 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13396993ns 234792 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13397164ns 234795 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13397448ns 234800 1a110850 fd5ff06f jal x0, -44 +13397732ns 234805 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13398016ns 234810 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13398414ns 234817 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13398584ns 234820 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13399039ns 234828 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13399210ns 234831 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13399494ns 234836 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13399778ns 234841 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13400062ns 234846 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13400517ns 234854 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13400687ns 234857 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13400971ns 234862 1a110850 fd5ff06f jal x0, -44 +13401255ns 234867 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13401540ns 234872 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13401937ns 234879 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13402108ns 234882 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13402563ns 234890 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13402733ns 234893 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13403017ns 234898 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13403301ns 234903 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13403586ns 234908 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13404040ns 234916 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13404211ns 234919 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13404495ns 234924 1a110850 fd5ff06f jal x0, -44 +13404779ns 234929 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13405063ns 234934 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13405461ns 234941 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13405632ns 234944 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13406086ns 234952 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13406257ns 234955 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13406541ns 234960 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13406825ns 234965 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13407109ns 234970 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13407564ns 234978 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13407734ns 234981 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13408018ns 234986 1a110850 fd5ff06f jal x0, -44 +13408303ns 234991 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13408587ns 234996 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13408985ns 235003 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13409155ns 235006 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13409610ns 235014 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13409780ns 235017 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13410064ns 235022 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13410349ns 235027 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13410633ns 235032 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13411087ns 235040 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13411258ns 235043 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13411542ns 235048 1a110850 fd5ff06f jal x0, -44 +13411826ns 235053 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13412110ns 235058 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13412508ns 235065 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13412679ns 235068 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13413133ns 235076 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13413304ns 235079 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13413588ns 235084 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13413872ns 235089 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13414156ns 235094 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13414611ns 235102 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13414781ns 235105 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13415066ns 235110 1a110850 fd5ff06f jal x0, -44 +13415350ns 235115 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13415634ns 235120 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13416032ns 235127 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13416202ns 235130 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13416657ns 235138 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13416827ns 235141 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13417112ns 235146 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13417396ns 235151 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13417680ns 235156 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13418135ns 235164 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13418305ns 235167 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13418589ns 235172 1a110850 fd5ff06f jal x0, -44 +13418873ns 235177 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13419158ns 235182 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13419555ns 235189 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13419726ns 235192 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13420181ns 235200 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13420351ns 235203 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13420635ns 235208 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13420919ns 235213 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13421203ns 235218 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13421658ns 235226 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13421829ns 235229 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13422113ns 235234 1a110850 fd5ff06f jal x0, -44 +13422397ns 235239 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13422681ns 235244 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13423079ns 235251 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13423249ns 235254 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13423704ns 235262 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13423875ns 235265 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13424159ns 235270 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13424443ns 235275 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13424727ns 235280 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13425182ns 235288 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13425352ns 235291 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13425636ns 235296 1a110850 fd5ff06f jal x0, -44 +13425921ns 235301 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13426205ns 235306 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13426603ns 235313 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13426773ns 235316 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13427228ns 235324 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13427398ns 235327 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13427682ns 235332 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13427967ns 235337 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13428251ns 235342 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13428705ns 235350 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13428876ns 235353 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13429160ns 235358 1a110850 fd5ff06f jal x0, -44 +13429444ns 235363 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13429728ns 235368 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13430126ns 235375 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13430297ns 235378 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13430751ns 235386 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13430922ns 235389 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13431206ns 235394 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13431490ns 235399 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13431774ns 235404 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13432229ns 235412 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13432399ns 235415 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13432684ns 235420 1a110850 fd5ff06f jal x0, -44 +13432968ns 235425 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13433252ns 235430 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13433650ns 235437 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13433820ns 235440 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13434275ns 235448 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13434445ns 235451 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13434730ns 235456 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13435014ns 235461 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13435298ns 235466 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13435752ns 235474 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13435923ns 235477 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13436207ns 235482 1a110850 fd5ff06f jal x0, -44 +13436491ns 235487 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13436775ns 235492 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13437173ns 235499 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13437344ns 235502 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13437798ns 235510 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13437969ns 235513 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13438253ns 235518 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13438537ns 235523 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13438821ns 235528 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13439276ns 235536 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13439447ns 235539 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13439731ns 235544 1a110850 fd5ff06f jal x0, -44 +13440015ns 235549 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13440299ns 235554 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13440697ns 235561 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13440867ns 235564 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13441322ns 235572 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13441493ns 235575 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13441777ns 235580 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13442061ns 235585 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13442345ns 235590 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13442800ns 235598 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13442970ns 235601 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13443254ns 235606 1a110850 fd5ff06f jal x0, -44 +13443538ns 235611 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13443823ns 235616 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13444220ns 235623 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13444391ns 235626 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13444846ns 235634 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13445016ns 235637 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13445300ns 235642 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13445584ns 235647 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13445869ns 235652 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13446323ns 235660 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13446494ns 235663 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13446778ns 235668 1a110850 fd5ff06f jal x0, -44 +13447062ns 235673 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13447346ns 235678 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13447744ns 235685 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13447915ns 235688 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13448369ns 235696 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13448540ns 235699 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13448824ns 235704 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13449108ns 235709 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13449392ns 235714 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13449847ns 235722 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13450017ns 235725 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13450301ns 235730 1a110850 fd5ff06f jal x0, -44 +13450586ns 235735 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13450870ns 235740 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13451268ns 235747 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13451438ns 235750 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13451893ns 235758 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13452063ns 235761 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13452347ns 235766 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13452632ns 235771 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13452916ns 235776 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13453370ns 235784 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13453541ns 235787 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13453825ns 235792 1a110850 fd5ff06f jal x0, -44 +13454109ns 235797 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13454393ns 235802 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13454791ns 235809 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13454962ns 235812 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13455416ns 235820 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13455587ns 235823 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13455871ns 235828 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13456155ns 235833 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13456439ns 235838 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13456894ns 235846 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13457064ns 235849 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13457349ns 235854 1a110850 fd5ff06f jal x0, -44 +13457633ns 235859 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13457917ns 235864 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13458315ns 235871 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13458485ns 235874 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13458940ns 235882 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13459110ns 235885 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13459395ns 235890 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13459679ns 235895 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13459963ns 235900 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13460418ns 235908 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13460588ns 235911 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13460872ns 235916 1a110850 fd5ff06f jal x0, -44 +13461156ns 235921 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13461441ns 235926 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13461838ns 235933 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13462009ns 235936 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13462464ns 235944 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13462634ns 235947 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13462918ns 235952 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13463202ns 235957 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13463487ns 235962 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13463941ns 235970 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13464112ns 235973 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13464396ns 235978 1a110850 fd5ff06f jal x0, -44 +13464680ns 235983 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13464964ns 235988 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13465362ns 235995 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13465532ns 235998 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13465987ns 236006 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13466158ns 236009 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13466442ns 236014 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13466726ns 236019 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13467010ns 236024 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13467465ns 236032 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13467635ns 236035 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13467919ns 236040 1a110850 fd5ff06f jal x0, -44 +13468204ns 236045 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13468488ns 236050 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13468886ns 236057 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13469056ns 236060 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13469511ns 236068 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13469681ns 236071 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13469965ns 236076 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13470250ns 236081 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13470534ns 236086 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13470988ns 236094 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13471159ns 236097 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13471443ns 236102 1a110850 fd5ff06f jal x0, -44 +13471727ns 236107 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13472011ns 236112 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13472409ns 236119 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13472580ns 236122 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13473034ns 236130 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13473205ns 236133 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13473489ns 236138 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13473773ns 236143 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13474057ns 236148 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13474512ns 236156 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13474682ns 236159 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13474967ns 236164 1a110850 fd5ff06f jal x0, -44 +13475251ns 236169 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13475535ns 236174 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13475933ns 236181 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13476103ns 236184 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13476558ns 236192 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13476728ns 236195 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13477013ns 236200 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13477297ns 236205 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13477581ns 236210 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13478035ns 236218 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13478206ns 236221 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13478490ns 236226 1a110850 fd5ff06f jal x0, -44 +13478774ns 236231 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13479058ns 236236 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13479456ns 236243 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13479627ns 236246 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13480081ns 236254 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13480252ns 236257 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13480536ns 236262 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13480820ns 236267 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13481104ns 236272 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13481559ns 236280 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13481730ns 236283 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13482014ns 236288 1a110850 fd5ff06f jal x0, -44 +13482298ns 236293 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13482582ns 236298 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13482980ns 236305 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13483150ns 236308 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13483605ns 236316 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13483776ns 236319 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13484060ns 236324 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13484344ns 236329 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13484628ns 236334 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13485083ns 236342 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13485253ns 236345 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13485537ns 236350 1a110850 fd5ff06f jal x0, -44 +13485821ns 236355 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13486106ns 236360 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13486503ns 236367 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13486674ns 236370 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13487129ns 236378 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13487299ns 236381 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13487583ns 236386 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13487867ns 236391 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13488152ns 236396 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13488606ns 236404 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13488777ns 236407 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13489061ns 236412 1a110850 fd5ff06f jal x0, -44 +13489345ns 236417 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13489629ns 236422 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13490027ns 236429 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13490198ns 236432 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13490652ns 236440 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13490823ns 236443 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13491107ns 236448 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13491391ns 236453 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13491675ns 236458 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13492130ns 236466 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13492300ns 236469 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13492584ns 236474 1a110850 fd5ff06f jal x0, -44 +13492869ns 236479 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13493153ns 236484 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13493551ns 236491 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13493721ns 236494 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13494176ns 236502 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13494346ns 236505 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13494630ns 236510 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13494915ns 236515 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13495199ns 236520 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13495653ns 236528 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13495824ns 236531 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13496108ns 236536 1a110850 fd5ff06f jal x0, -44 +13496392ns 236541 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13496676ns 236546 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13497074ns 236553 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13497245ns 236556 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13497699ns 236564 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13497870ns 236567 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13498154ns 236572 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13498438ns 236577 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13498722ns 236582 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13499177ns 236590 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13499347ns 236593 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13499632ns 236598 1a110850 fd5ff06f jal x0, -44 +13499916ns 236603 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13500200ns 236608 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13500598ns 236615 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13500768ns 236618 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13501223ns 236626 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13501393ns 236629 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13501678ns 236634 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13501962ns 236639 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13502246ns 236644 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13502701ns 236652 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13502871ns 236655 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13503155ns 236660 1a110850 fd5ff06f jal x0, -44 +13503439ns 236665 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13503724ns 236670 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13504121ns 236677 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13504292ns 236680 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13504747ns 236688 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13504917ns 236691 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13505201ns 236696 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13505485ns 236701 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13505770ns 236706 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13506224ns 236714 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13506395ns 236717 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13506679ns 236722 1a110850 fd5ff06f jal x0, -44 +13506963ns 236727 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13507247ns 236732 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13507645ns 236739 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13507815ns 236742 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13508270ns 236750 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13508441ns 236753 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13508725ns 236758 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13509009ns 236763 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13509293ns 236768 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13509748ns 236776 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13509918ns 236779 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13510202ns 236784 1a110850 fd5ff06f jal x0, -44 +13510487ns 236789 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13510771ns 236794 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13511169ns 236801 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13511339ns 236804 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13511794ns 236812 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13511964ns 236815 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13512248ns 236820 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13512533ns 236825 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13512817ns 236830 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13513271ns 236838 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13513442ns 236841 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13513726ns 236846 1a110850 fd5ff06f jal x0, -44 +13514010ns 236851 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13514294ns 236856 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13514692ns 236863 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13514863ns 236866 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13515317ns 236874 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13515488ns 236877 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13515772ns 236882 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13516056ns 236887 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13516340ns 236892 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13516795ns 236900 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13516965ns 236903 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13517250ns 236908 1a110850 fd5ff06f jal x0, -44 +13517534ns 236913 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13517818ns 236918 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13518216ns 236925 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13518386ns 236928 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13518841ns 236936 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13519011ns 236939 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13519296ns 236944 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13519580ns 236949 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13519864ns 236954 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13520319ns 236962 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13520489ns 236965 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13520773ns 236970 1a110850 fd5ff06f jal x0, -44 +13521057ns 236975 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13521341ns 236980 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13521739ns 236987 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13521910ns 236990 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13522364ns 236998 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13522535ns 237001 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13522819ns 237006 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13523103ns 237011 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13523387ns 237016 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13523842ns 237024 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13524013ns 237027 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13524297ns 237032 1a110850 fd5ff06f jal x0, -44 +13524581ns 237037 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13524865ns 237042 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13525263ns 237049 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13525433ns 237052 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13525888ns 237060 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13526059ns 237063 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13526343ns 237068 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13526627ns 237073 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13526911ns 237078 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13527366ns 237086 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13527536ns 237089 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13527820ns 237094 1a110850 fd5ff06f jal x0, -44 +13528104ns 237099 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13528389ns 237104 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13528786ns 237111 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13528957ns 237114 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13529412ns 237122 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13529582ns 237125 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13529866ns 237130 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13530150ns 237135 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13530435ns 237140 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13530889ns 237148 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13531060ns 237151 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13531344ns 237156 1a110850 fd5ff06f jal x0, -44 +13531628ns 237161 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13531912ns 237166 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13532310ns 237173 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13532481ns 237176 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13532935ns 237184 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13533106ns 237187 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13533390ns 237192 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13533674ns 237197 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13533958ns 237202 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13534413ns 237210 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13534583ns 237213 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13534867ns 237218 1a110850 fd5ff06f jal x0, -44 +13535152ns 237223 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13535436ns 237228 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13535834ns 237235 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13536004ns 237238 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13536459ns 237246 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13536629ns 237249 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13536913ns 237254 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13537198ns 237259 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13537482ns 237264 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13537936ns 237272 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13538107ns 237275 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13538391ns 237280 1a110850 fd5ff06f jal x0, -44 +13538675ns 237285 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13538959ns 237290 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13539357ns 237297 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13539528ns 237300 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13539982ns 237308 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13540153ns 237311 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13540437ns 237316 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13540721ns 237321 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13541005ns 237326 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13541460ns 237334 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13541631ns 237337 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13541915ns 237342 1a110850 fd5ff06f jal x0, -44 +13542199ns 237347 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13542483ns 237352 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13542881ns 237359 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13543051ns 237362 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13543506ns 237370 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13543676ns 237373 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13543961ns 237378 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13544245ns 237383 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13544529ns 237388 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13544984ns 237396 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13545154ns 237399 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13545438ns 237404 1a110850 fd5ff06f jal x0, -44 +13545722ns 237409 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13546007ns 237414 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13546404ns 237421 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13546575ns 237424 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13547030ns 237432 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13547200ns 237435 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13547484ns 237440 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13547768ns 237445 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13548053ns 237450 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13548507ns 237458 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13548678ns 237461 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13548962ns 237466 1a110850 fd5ff06f jal x0, -44 +13549246ns 237471 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13549530ns 237476 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13549928ns 237483 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13550098ns 237486 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13550553ns 237494 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13550724ns 237497 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13551008ns 237502 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13551292ns 237507 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13551576ns 237512 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13552031ns 237520 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13552201ns 237523 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13552485ns 237528 1a110850 fd5ff06f jal x0, -44 +13552770ns 237533 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13553054ns 237538 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13553452ns 237545 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13553622ns 237548 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13554077ns 237556 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13554247ns 237559 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13554531ns 237564 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13554816ns 237569 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13555100ns 237574 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13555554ns 237582 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13555725ns 237585 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13556009ns 237590 1a110850 fd5ff06f jal x0, -44 +13556293ns 237595 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13556577ns 237600 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13556975ns 237607 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13557146ns 237610 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13557600ns 237618 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13557771ns 237621 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13558055ns 237626 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13558339ns 237631 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13558623ns 237636 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13559078ns 237644 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13559248ns 237647 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13559533ns 237652 1a110850 fd5ff06f jal x0, -44 +13559817ns 237657 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13560101ns 237662 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13560499ns 237669 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13560669ns 237672 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13561124ns 237680 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13561294ns 237683 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13561579ns 237688 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13561863ns 237693 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13562147ns 237698 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13562602ns 237706 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13562772ns 237709 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13563056ns 237714 1a110850 fd5ff06f jal x0, -44 +13563340ns 237719 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13563624ns 237724 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13564022ns 237731 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13564193ns 237734 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13564647ns 237742 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13564818ns 237745 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13565102ns 237750 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13565386ns 237755 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13565670ns 237760 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13566125ns 237768 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13566296ns 237771 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13566580ns 237776 1a110850 fd5ff06f jal x0, -44 +13566864ns 237781 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13567148ns 237786 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13567546ns 237793 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13567716ns 237796 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13568171ns 237804 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13568342ns 237807 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13568626ns 237812 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13568910ns 237817 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13569194ns 237822 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13569649ns 237830 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13569819ns 237833 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13570103ns 237838 1a110850 fd5ff06f jal x0, -44 +13570387ns 237843 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13570672ns 237848 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13571069ns 237855 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13571240ns 237858 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13571695ns 237866 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13571865ns 237869 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13572149ns 237874 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13572433ns 237879 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13572718ns 237884 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13573172ns 237892 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13573343ns 237895 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13573627ns 237900 1a110850 fd5ff06f jal x0, -44 +13573911ns 237905 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13574195ns 237910 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13574593ns 237917 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13574764ns 237920 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13575218ns 237928 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13575389ns 237931 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13575673ns 237936 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13575957ns 237941 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13576241ns 237946 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13576696ns 237954 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13576866ns 237957 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13577151ns 237962 1a110850 fd5ff06f jal x0, -44 +13577435ns 237967 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13577719ns 237972 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13578117ns 237979 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13578287ns 237982 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13578742ns 237990 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13578912ns 237993 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13579196ns 237998 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13579481ns 238003 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13579765ns 238008 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13580219ns 238016 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13580390ns 238019 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13580674ns 238024 1a110850 fd5ff06f jal x0, -44 +13580958ns 238029 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13581242ns 238034 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13581640ns 238041 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13581811ns 238044 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13582265ns 238052 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13582436ns 238055 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13582720ns 238060 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13583004ns 238065 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13583288ns 238070 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13583743ns 238078 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13583914ns 238081 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13584198ns 238086 1a110850 fd5ff06f jal x0, -44 +13584482ns 238091 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13584766ns 238096 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13585164ns 238103 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13585334ns 238106 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13585789ns 238114 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13585959ns 238117 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13586244ns 238122 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13586528ns 238127 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13586812ns 238132 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13587267ns 238140 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13587437ns 238143 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13587721ns 238148 1a110850 fd5ff06f jal x0, -44 +13588005ns 238153 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13588290ns 238158 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13588687ns 238165 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13588858ns 238168 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13589313ns 238176 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13589483ns 238179 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13589767ns 238184 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13590051ns 238189 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13590336ns 238194 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13590790ns 238202 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13590961ns 238205 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13591245ns 238210 1a110850 fd5ff06f jal x0, -44 +13591529ns 238215 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13591813ns 238220 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13592211ns 238227 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13592381ns 238230 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13592836ns 238238 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13593007ns 238241 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13593291ns 238246 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13593575ns 238251 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13593859ns 238256 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13594314ns 238264 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13594484ns 238267 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13594768ns 238272 1a110850 fd5ff06f jal x0, -44 +13595053ns 238277 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13595337ns 238282 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13595735ns 238289 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13595905ns 238292 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13596360ns 238300 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13596530ns 238303 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13596814ns 238308 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13597099ns 238313 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13597383ns 238318 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13597837ns 238326 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13598008ns 238329 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13598292ns 238334 1a110850 fd5ff06f jal x0, -44 +13598576ns 238339 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13598860ns 238344 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13599258ns 238351 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13599429ns 238354 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13599883ns 238362 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13600054ns 238365 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13600338ns 238370 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13600622ns 238375 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13600906ns 238380 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13601361ns 238388 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13601531ns 238391 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13601816ns 238396 1a110850 fd5ff06f jal x0, -44 +13602100ns 238401 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13602384ns 238406 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13602782ns 238413 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13602952ns 238416 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13603407ns 238424 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13603577ns 238427 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13603862ns 238432 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13604146ns 238437 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13604430ns 238442 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13604885ns 238450 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13605055ns 238453 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13605339ns 238458 1a110850 fd5ff06f jal x0, -44 +13605623ns 238463 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13605907ns 238468 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13606305ns 238475 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13606476ns 238478 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13606930ns 238486 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13607101ns 238489 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13607385ns 238494 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13607669ns 238499 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13607953ns 238504 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13608408ns 238512 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13608579ns 238515 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13608863ns 238520 1a110850 fd5ff06f jal x0, -44 +13609147ns 238525 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13609431ns 238530 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13609829ns 238537 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13609999ns 238540 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13610454ns 238548 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13610625ns 238551 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13610909ns 238556 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13611193ns 238561 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13611477ns 238566 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13611932ns 238574 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13612102ns 238577 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13612386ns 238582 1a110850 fd5ff06f jal x0, -44 +13612671ns 238587 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13612955ns 238592 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13613352ns 238599 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13613523ns 238602 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13613978ns 238610 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13614148ns 238613 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13614432ns 238618 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13614716ns 238623 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13615001ns 238628 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13615455ns 238636 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13615626ns 238639 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13615910ns 238644 1a110850 fd5ff06f jal x0, -44 +13616194ns 238649 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13616478ns 238654 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13616876ns 238661 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13617047ns 238664 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13617501ns 238672 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13617672ns 238675 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13617956ns 238680 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13618240ns 238685 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13618524ns 238690 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13618979ns 238698 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13619149ns 238701 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13619434ns 238706 1a110850 fd5ff06f jal x0, -44 +13619718ns 238711 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13620002ns 238716 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13620400ns 238723 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13620570ns 238726 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13621025ns 238734 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13621195ns 238737 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13621479ns 238742 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13621764ns 238747 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13622048ns 238752 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13622502ns 238760 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13622673ns 238763 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13622957ns 238768 1a110850 fd5ff06f jal x0, -44 +13623241ns 238773 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13623525ns 238778 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13623923ns 238785 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13624094ns 238788 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13624548ns 238796 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13624719ns 238799 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13625003ns 238804 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13625287ns 238809 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13625571ns 238814 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13626026ns 238822 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13626197ns 238825 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13626481ns 238830 1a110850 fd5ff06f jal x0, -44 +13626765ns 238835 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13627049ns 238840 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13627447ns 238847 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13627617ns 238850 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13628072ns 238858 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13628242ns 238861 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13628527ns 238866 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13628811ns 238871 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13629095ns 238876 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13629550ns 238884 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13629720ns 238887 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13630004ns 238892 1a110850 fd5ff06f jal x0, -44 +13630288ns 238897 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13630573ns 238902 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13630970ns 238909 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13631141ns 238912 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13631596ns 238920 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13631766ns 238923 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13632050ns 238928 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13632334ns 238933 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13632619ns 238938 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13633073ns 238946 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13633244ns 238949 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13633528ns 238954 1a110850 fd5ff06f jal x0, -44 +13633812ns 238959 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13634096ns 238964 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13634494ns 238971 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13634664ns 238974 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13635119ns 238982 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13635290ns 238985 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13635574ns 238990 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13635858ns 238995 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13636142ns 239000 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13636597ns 239008 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13636767ns 239011 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13637051ns 239016 1a110850 fd5ff06f jal x0, -44 +13637336ns 239021 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13637620ns 239026 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13638018ns 239033 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13638188ns 239036 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13638643ns 239044 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13638813ns 239047 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13639097ns 239052 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13639382ns 239057 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13639666ns 239062 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13640120ns 239070 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13640291ns 239073 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13640575ns 239078 1a110850 fd5ff06f jal x0, -44 +13640859ns 239083 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13641143ns 239088 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13641541ns 239095 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13641712ns 239098 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13642166ns 239106 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13642337ns 239109 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13642621ns 239114 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13642905ns 239119 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13643189ns 239124 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13643644ns 239132 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13643814ns 239135 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13644099ns 239140 1a110850 fd5ff06f jal x0, -44 +13644383ns 239145 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13644667ns 239150 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13645065ns 239157 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13645235ns 239160 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13645690ns 239168 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13645860ns 239171 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13646145ns 239176 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13646429ns 239181 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13646713ns 239186 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13647168ns 239194 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13647338ns 239197 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13647622ns 239202 1a110850 fd5ff06f jal x0, -44 +13647906ns 239207 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13648191ns 239212 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13648588ns 239219 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13648759ns 239222 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13649213ns 239230 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13649384ns 239233 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13649668ns 239238 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13649952ns 239243 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13650236ns 239248 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13650691ns 239256 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13650862ns 239259 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13651146ns 239264 1a110850 fd5ff06f jal x0, -44 +13651430ns 239269 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13651714ns 239274 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13652112ns 239281 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13652282ns 239284 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13652737ns 239292 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13652908ns 239295 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13653192ns 239300 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13653476ns 239305 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13653760ns 239310 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13654215ns 239318 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13654385ns 239321 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13654669ns 239326 1a110850 fd5ff06f jal x0, -44 +13654954ns 239331 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13655238ns 239336 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13655635ns 239343 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13655806ns 239346 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13656261ns 239354 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13656431ns 239357 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13656715ns 239362 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13656999ns 239367 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13657284ns 239372 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13657738ns 239380 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13657909ns 239383 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13658193ns 239388 1a110850 fd5ff06f jal x0, -44 +13658477ns 239393 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13658761ns 239398 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13659159ns 239405 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13659330ns 239408 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13659784ns 239416 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13659955ns 239419 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13660239ns 239424 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13660523ns 239429 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13660807ns 239434 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13661262ns 239442 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13661432ns 239445 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13661717ns 239450 1a110850 fd5ff06f jal x0, -44 +13662001ns 239455 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13662285ns 239460 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13662683ns 239467 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13662853ns 239470 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13663308ns 239478 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13663478ns 239481 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13663762ns 239486 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13664047ns 239491 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13664331ns 239496 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13664785ns 239504 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13664956ns 239507 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13665240ns 239512 1a110850 fd5ff06f jal x0, -44 +13665524ns 239517 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13665808ns 239522 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13666206ns 239529 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13666377ns 239532 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13666831ns 239540 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13667002ns 239543 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13667286ns 239548 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13667570ns 239553 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13667854ns 239558 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13668309ns 239566 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13668480ns 239569 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13668764ns 239574 1a110850 fd5ff06f jal x0, -44 +13669048ns 239579 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13669332ns 239584 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13669730ns 239591 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13669900ns 239594 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13670355ns 239602 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13670525ns 239605 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13670810ns 239610 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13671094ns 239615 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13671378ns 239620 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13671833ns 239628 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13672003ns 239631 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13672287ns 239636 1a110850 fd5ff06f jal x0, -44 +13672571ns 239641 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13672856ns 239646 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13673253ns 239653 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13673424ns 239656 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13673879ns 239664 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13674049ns 239667 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13674333ns 239672 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13674617ns 239677 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13674902ns 239682 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13675356ns 239690 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13675527ns 239693 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13675811ns 239698 1a110850 fd5ff06f jal x0, -44 +13676095ns 239703 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13676379ns 239708 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13676777ns 239715 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13676947ns 239718 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13677402ns 239726 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13677573ns 239729 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13677857ns 239734 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13678141ns 239739 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13678425ns 239744 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13678880ns 239752 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13679050ns 239755 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13679334ns 239760 1a110850 fd5ff06f jal x0, -44 +13679619ns 239765 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13679903ns 239770 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13680301ns 239777 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13680471ns 239780 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13680926ns 239788 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13681096ns 239791 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13681380ns 239796 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13681665ns 239801 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13681949ns 239806 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13682403ns 239814 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13682574ns 239817 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13682858ns 239822 1a110850 fd5ff06f jal x0, -44 +13683142ns 239827 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13683426ns 239832 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13683824ns 239839 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13683995ns 239842 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13684449ns 239850 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13684620ns 239853 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13684904ns 239858 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13685188ns 239863 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13685472ns 239868 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13685927ns 239876 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13686097ns 239879 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13686382ns 239884 1a110850 fd5ff06f jal x0, -44 +13686666ns 239889 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13686950ns 239894 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13687348ns 239901 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13687518ns 239904 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13687973ns 239912 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13688143ns 239915 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13688428ns 239920 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13688712ns 239925 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13688996ns 239930 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13689451ns 239938 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13689621ns 239941 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13689905ns 239946 1a110850 fd5ff06f jal x0, -44 +13690189ns 239951 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13690474ns 239956 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13690871ns 239963 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13691042ns 239966 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13691496ns 239974 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13691667ns 239977 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13691951ns 239982 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13692235ns 239987 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13692519ns 239992 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13692974ns 240000 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13693145ns 240003 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13693429ns 240008 1a110850 fd5ff06f jal x0, -44 +13693713ns 240013 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13693997ns 240018 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13694395ns 240025 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13694565ns 240028 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13695020ns 240036 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13695191ns 240039 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13695475ns 240044 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13695759ns 240049 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13696043ns 240054 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13696498ns 240062 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13696668ns 240065 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13696952ns 240070 1a110850 fd5ff06f jal x0, -44 +13697237ns 240075 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13697521ns 240080 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13697919ns 240087 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13698089ns 240090 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13698544ns 240098 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13698714ns 240101 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13698998ns 240106 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13699282ns 240111 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13699567ns 240116 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13700021ns 240124 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13700192ns 240127 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13700476ns 240132 1a110850 fd5ff06f jal x0, -44 +13700760ns 240137 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13701044ns 240142 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13701442ns 240149 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13701613ns 240152 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13702067ns 240160 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13702238ns 240163 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13702522ns 240168 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13702806ns 240173 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13703090ns 240178 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13703545ns 240186 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13703715ns 240189 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13704000ns 240194 1a110850 fd5ff06f jal x0, -44 +13704284ns 240199 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13704568ns 240204 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13704966ns 240211 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13705136ns 240214 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13705591ns 240222 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13705761ns 240225 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13706045ns 240230 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13706330ns 240235 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13706614ns 240240 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13707068ns 240248 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13707239ns 240251 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13707523ns 240256 1a110850 fd5ff06f jal x0, -44 +13707807ns 240261 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13708091ns 240266 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13708489ns 240273 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13708660ns 240276 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13709114ns 240284 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13709285ns 240287 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13709569ns 240292 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13709853ns 240297 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13710137ns 240302 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13710592ns 240310 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13710763ns 240313 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13711047ns 240318 1a110850 fd5ff06f jal x0, -44 +13711331ns 240323 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13711615ns 240328 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13712013ns 240335 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13712183ns 240338 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13712638ns 240346 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13712808ns 240349 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13713093ns 240354 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13713377ns 240359 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13713661ns 240364 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13714116ns 240372 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13714286ns 240375 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13714570ns 240380 1a110850 fd5ff06f jal x0, -44 +13714854ns 240385 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13715139ns 240390 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13715536ns 240397 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13715707ns 240400 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13716162ns 240408 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13716332ns 240411 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13716616ns 240416 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13716900ns 240421 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13717185ns 240426 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13717639ns 240434 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13717810ns 240437 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13718094ns 240442 1a110850 fd5ff06f jal x0, -44 +13718378ns 240447 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13718662ns 240452 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13719060ns 240459 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13719231ns 240462 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13719685ns 240470 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13719856ns 240473 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13720140ns 240478 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13720424ns 240483 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13720708ns 240488 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13721163ns 240496 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13721333ns 240499 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13721617ns 240504 1a110850 fd5ff06f jal x0, -44 +13721902ns 240509 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13722186ns 240514 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13722584ns 240521 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13722754ns 240524 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13723209ns 240532 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13723379ns 240535 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13723663ns 240540 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13723948ns 240545 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13724232ns 240550 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13724686ns 240558 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13724857ns 240561 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13725141ns 240566 1a110850 fd5ff06f jal x0, -44 +13725425ns 240571 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13725709ns 240576 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13726107ns 240583 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13726278ns 240586 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13726732ns 240594 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13726903ns 240597 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13727187ns 240602 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13727471ns 240607 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13727755ns 240612 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13728210ns 240620 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13728380ns 240623 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13728665ns 240628 1a110850 fd5ff06f jal x0, -44 +13728949ns 240633 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13729233ns 240638 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13729631ns 240645 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13729801ns 240648 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13730256ns 240656 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13730426ns 240659 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13730711ns 240664 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13730995ns 240669 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13731279ns 240674 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13731734ns 240682 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13731904ns 240685 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13732188ns 240690 1a110850 fd5ff06f jal x0, -44 +13732472ns 240695 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13732757ns 240700 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13733154ns 240707 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13733325ns 240710 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13733779ns 240718 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13733950ns 240721 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13734234ns 240726 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13734518ns 240731 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13734802ns 240736 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13735257ns 240744 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13735428ns 240747 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13735712ns 240752 1a110850 fd5ff06f jal x0, -44 +13735996ns 240757 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13736280ns 240762 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13736678ns 240769 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13736848ns 240772 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13737303ns 240780 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13737474ns 240783 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13737758ns 240788 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13738042ns 240793 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13738326ns 240798 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13738781ns 240806 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13738951ns 240809 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13739235ns 240814 1a110850 fd5ff06f jal x0, -44 +13739520ns 240819 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13739804ns 240824 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13740202ns 240831 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13740372ns 240834 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13740827ns 240842 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13740997ns 240845 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13741281ns 240850 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13741565ns 240855 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13741850ns 240860 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13742304ns 240868 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13742475ns 240871 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13742759ns 240876 1a110850 fd5ff06f jal x0, -44 +13743043ns 240881 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13743327ns 240886 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13743725ns 240893 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13743896ns 240896 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13744350ns 240904 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13744521ns 240907 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13744805ns 240912 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13745089ns 240917 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13745373ns 240922 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13745828ns 240930 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13745998ns 240933 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13746283ns 240938 1a110850 fd5ff06f jal x0, -44 +13746567ns 240943 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13746851ns 240948 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13747249ns 240955 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13747419ns 240958 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13747874ns 240966 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13748044ns 240969 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13748328ns 240974 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13748613ns 240979 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13748897ns 240984 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13749351ns 240992 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13749522ns 240995 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13749806ns 241000 1a110850 fd5ff06f jal x0, -44 +13750090ns 241005 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13750374ns 241010 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13750772ns 241017 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13750943ns 241020 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13751397ns 241028 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13751568ns 241031 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13751852ns 241036 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13752136ns 241041 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13752420ns 241046 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13752875ns 241054 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13753046ns 241057 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13753330ns 241062 1a110850 fd5ff06f jal x0, -44 +13753614ns 241067 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13753898ns 241072 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13754296ns 241079 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13754466ns 241082 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13754921ns 241090 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13755091ns 241093 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13755376ns 241098 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13755660ns 241103 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13755944ns 241108 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13756399ns 241116 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13756569ns 241119 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13756853ns 241124 1a110850 fd5ff06f jal x0, -44 +13757137ns 241129 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13757422ns 241134 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13757819ns 241141 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13757990ns 241144 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13758445ns 241152 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13758615ns 241155 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13758899ns 241160 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13759183ns 241165 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13759468ns 241170 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13759922ns 241178 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13760093ns 241181 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13760377ns 241186 1a110850 fd5ff06f jal x0, -44 +13760661ns 241191 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13760945ns 241196 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13761343ns 241203 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13761514ns 241206 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13761968ns 241214 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13762139ns 241217 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13762423ns 241222 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13762707ns 241227 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13762991ns 241232 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13763446ns 241240 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13763616ns 241243 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13763900ns 241248 1a110850 fd5ff06f jal x0, -44 +13764185ns 241253 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13764469ns 241258 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13764867ns 241265 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13765037ns 241268 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13765492ns 241276 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13765662ns 241279 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13765946ns 241284 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13766231ns 241289 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13766515ns 241294 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13766969ns 241302 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13767140ns 241305 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13767424ns 241310 1a110850 fd5ff06f jal x0, -44 +13767708ns 241315 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13767992ns 241320 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13768390ns 241327 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13768561ns 241330 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13769015ns 241338 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13769186ns 241341 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13769470ns 241346 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13769754ns 241351 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13770038ns 241356 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13770493ns 241364 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13770663ns 241367 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13770948ns 241372 1a110850 fd5ff06f jal x0, -44 +13771232ns 241377 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13771516ns 241382 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13771914ns 241389 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13772084ns 241392 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13772539ns 241400 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13772709ns 241403 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13772994ns 241408 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13773278ns 241413 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13773562ns 241418 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13774017ns 241426 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13774187ns 241429 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13774471ns 241434 1a110850 fd5ff06f jal x0, -44 +13774755ns 241439 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13775040ns 241444 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13775437ns 241451 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13775608ns 241454 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13776063ns 241462 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13776233ns 241465 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13776517ns 241470 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13776801ns 241475 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13777085ns 241480 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13777540ns 241488 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13777711ns 241491 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13777995ns 241496 1a110850 fd5ff06f jal x0, -44 +13778279ns 241501 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13778563ns 241506 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13778961ns 241513 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13779131ns 241516 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13779586ns 241524 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13779757ns 241527 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13780041ns 241532 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13780325ns 241537 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13780609ns 241542 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13781064ns 241550 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13781234ns 241553 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13781518ns 241558 1a110850 fd5ff06f jal x0, -44 +13781803ns 241563 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13782087ns 241568 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13782485ns 241575 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13782655ns 241578 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13783110ns 241586 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13783280ns 241589 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13783564ns 241594 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13783848ns 241599 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13784133ns 241604 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13784587ns 241612 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13784758ns 241615 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13785042ns 241620 1a110850 fd5ff06f jal x0, -44 +13785326ns 241625 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13785610ns 241630 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13786008ns 241637 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13786179ns 241640 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13786633ns 241648 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13786804ns 241651 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13787088ns 241656 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13787372ns 241661 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13787656ns 241666 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13788111ns 241674 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13788281ns 241677 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13788566ns 241682 1a110850 fd5ff06f jal x0, -44 +13788850ns 241687 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13789134ns 241692 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13789532ns 241699 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13789702ns 241702 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13790157ns 241710 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13790327ns 241713 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13790611ns 241718 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13790896ns 241723 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13791180ns 241728 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13791634ns 241736 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13791805ns 241739 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13792089ns 241744 1a110850 fd5ff06f jal x0, -44 +13792373ns 241749 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13792657ns 241754 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13793055ns 241761 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13793226ns 241764 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13793680ns 241772 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13793851ns 241775 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13794135ns 241780 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13794419ns 241785 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13794703ns 241790 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13795158ns 241798 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13795329ns 241801 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13795613ns 241806 1a110850 fd5ff06f jal x0, -44 +13795897ns 241811 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13796181ns 241816 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13796579ns 241823 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13796749ns 241826 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13797204ns 241834 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13797375ns 241837 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13797659ns 241842 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13797943ns 241847 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13798227ns 241852 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13798682ns 241860 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13798852ns 241863 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13799136ns 241868 1a110850 fd5ff06f jal x0, -44 +13799420ns 241873 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13799705ns 241878 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13800102ns 241885 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13800273ns 241888 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13800728ns 241896 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13800898ns 241899 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13801182ns 241904 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13801466ns 241909 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13801751ns 241914 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13802205ns 241922 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13802376ns 241925 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13802660ns 241930 1a110850 fd5ff06f jal x0, -44 +13802944ns 241935 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13803228ns 241940 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13803626ns 241947 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13803797ns 241950 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13804251ns 241958 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13804422ns 241961 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13804706ns 241966 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13804990ns 241971 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13805274ns 241976 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13805729ns 241984 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13805899ns 241987 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13806183ns 241992 1a110850 fd5ff06f jal x0, -44 +13806468ns 241997 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13806752ns 242002 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13807150ns 242009 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13807320ns 242012 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13807775ns 242020 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13807945ns 242023 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13808229ns 242028 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13808514ns 242033 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13808798ns 242038 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13809252ns 242046 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13809423ns 242049 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13809707ns 242054 1a110850 fd5ff06f jal x0, -44 +13809991ns 242059 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13810275ns 242064 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13810673ns 242071 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13810844ns 242074 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13811298ns 242082 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13811469ns 242085 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13811753ns 242090 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13812037ns 242095 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13812321ns 242100 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13812776ns 242108 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13812946ns 242111 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13813231ns 242116 1a110850 fd5ff06f jal x0, -44 +13813515ns 242121 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13813799ns 242126 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13814197ns 242133 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13814367ns 242136 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13814822ns 242144 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13814992ns 242147 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13815277ns 242152 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13815561ns 242157 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13815845ns 242162 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13816300ns 242170 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13816470ns 242173 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13816754ns 242178 1a110850 fd5ff06f jal x0, -44 +13817038ns 242183 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13817323ns 242188 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13817720ns 242195 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13817891ns 242198 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13818346ns 242206 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13818516ns 242209 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13818800ns 242214 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13819084ns 242219 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13819368ns 242224 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13819823ns 242232 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13819994ns 242235 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13820278ns 242240 1a110850 fd5ff06f jal x0, -44 +13820562ns 242245 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13820846ns 242250 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13821244ns 242257 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13821414ns 242260 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13821869ns 242268 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13822040ns 242271 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13822324ns 242276 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13822608ns 242281 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13822892ns 242286 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13823347ns 242294 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13823517ns 242297 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13823801ns 242302 1a110850 fd5ff06f jal x0, -44 +13824086ns 242307 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13824370ns 242312 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13824768ns 242319 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13824938ns 242322 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13825393ns 242330 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13825563ns 242333 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13825847ns 242338 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13826131ns 242343 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13826416ns 242348 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13826870ns 242356 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13827041ns 242359 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13827325ns 242364 1a110850 fd5ff06f jal x0, -44 +13827609ns 242369 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13827893ns 242374 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13828291ns 242381 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13828462ns 242384 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13828916ns 242392 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13829087ns 242395 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13829371ns 242400 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13829655ns 242405 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13829939ns 242410 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13830394ns 242418 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13830564ns 242421 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13830849ns 242426 1a110850 fd5ff06f jal x0, -44 +13831133ns 242431 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13831417ns 242436 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13831815ns 242443 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13831985ns 242446 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13832440ns 242454 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13832610ns 242457 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13832895ns 242462 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13833179ns 242467 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13833463ns 242472 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13833917ns 242480 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13834088ns 242483 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13834372ns 242488 1a110850 fd5ff06f jal x0, -44 +13834656ns 242493 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13834940ns 242498 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13835338ns 242505 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13835509ns 242508 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13835963ns 242516 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13836134ns 242519 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13836418ns 242524 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13836702ns 242529 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13836986ns 242534 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13837441ns 242542 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13837612ns 242545 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13837896ns 242550 1a110850 fd5ff06f jal x0, -44 +13838180ns 242555 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13838464ns 242560 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13838862ns 242567 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13839032ns 242570 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13839487ns 242578 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13839658ns 242581 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13839942ns 242586 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13840226ns 242591 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13840510ns 242596 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13840965ns 242604 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13841135ns 242607 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13841419ns 242612 1a110850 fd5ff06f jal x0, -44 +13841703ns 242617 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13841988ns 242622 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13842385ns 242629 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13842556ns 242632 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13843011ns 242640 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13843181ns 242643 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13843465ns 242648 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13843749ns 242653 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13844034ns 242658 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13844488ns 242666 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13844659ns 242669 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13844943ns 242674 1a110850 fd5ff06f jal x0, -44 +13845227ns 242679 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13845511ns 242684 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13845909ns 242691 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13846080ns 242694 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13846534ns 242702 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13846705ns 242705 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13846989ns 242710 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13847273ns 242715 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13847557ns 242720 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13848012ns 242728 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13848182ns 242731 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13848466ns 242736 1a110850 fd5ff06f jal x0, -44 +13848751ns 242741 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13849035ns 242746 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13849433ns 242753 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13849603ns 242756 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13850058ns 242764 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13850228ns 242767 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13850512ns 242772 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13850797ns 242777 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13851081ns 242782 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13851535ns 242790 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13851706ns 242793 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13851990ns 242798 1a110850 fd5ff06f jal x0, -44 +13852274ns 242803 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13852558ns 242808 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13852956ns 242815 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13853127ns 242818 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13853581ns 242826 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13853752ns 242829 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13854036ns 242834 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13854320ns 242839 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13854604ns 242844 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13855059ns 242852 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13855229ns 242855 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13855514ns 242860 1a110850 fd5ff06f jal x0, -44 +13855798ns 242865 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13856082ns 242870 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13856480ns 242877 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13856650ns 242880 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13857105ns 242888 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13857275ns 242891 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13857560ns 242896 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13857844ns 242901 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13858128ns 242906 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13858583ns 242914 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13858753ns 242917 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13859037ns 242922 1a110850 fd5ff06f jal x0, -44 +13859321ns 242927 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13859606ns 242932 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13860003ns 242939 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13860174ns 242942 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13860629ns 242950 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13860799ns 242953 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13861083ns 242958 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13861367ns 242963 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13861651ns 242968 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13862106ns 242976 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13862277ns 242979 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13862561ns 242984 1a110850 fd5ff06f jal x0, -44 +13862845ns 242989 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13863129ns 242994 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13863527ns 243001 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13863697ns 243004 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13864152ns 243012 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13864323ns 243015 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13864607ns 243020 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13864891ns 243025 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13865175ns 243030 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13865630ns 243038 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13865800ns 243041 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13866084ns 243046 1a110850 fd5ff06f jal x0, -44 +13866369ns 243051 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13866653ns 243056 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13867051ns 243063 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13867221ns 243066 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13867676ns 243074 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13867846ns 243077 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13868130ns 243082 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13868415ns 243087 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13868699ns 243092 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13869153ns 243100 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13869324ns 243103 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13869608ns 243108 1a110850 fd5ff06f jal x0, -44 +13869892ns 243113 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13870176ns 243118 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13870574ns 243125 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13870745ns 243128 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13871199ns 243136 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13871370ns 243139 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13871654ns 243144 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13871938ns 243149 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13872222ns 243154 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13872677ns 243162 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13872847ns 243165 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13873132ns 243170 1a110850 fd5ff06f jal x0, -44 +13873416ns 243175 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13873700ns 243180 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13874098ns 243187 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13874268ns 243190 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13874723ns 243198 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13874893ns 243201 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13875178ns 243206 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13875462ns 243211 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13875746ns 243216 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13876200ns 243224 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13876371ns 243227 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13876655ns 243232 1a110850 fd5ff06f jal x0, -44 +13876939ns 243237 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13877223ns 243242 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13877621ns 243249 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13877792ns 243252 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13878246ns 243260 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13878417ns 243263 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13878701ns 243268 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13878985ns 243273 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13879269ns 243278 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13879724ns 243286 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13879895ns 243289 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13880179ns 243294 1a110850 fd5ff06f jal x0, -44 +13880463ns 243299 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13880747ns 243304 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13881145ns 243311 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13881315ns 243314 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13881770ns 243322 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13881941ns 243325 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13882225ns 243330 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13882509ns 243335 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13882793ns 243340 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13883248ns 243348 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13883418ns 243351 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13883702ns 243356 1a110850 fd5ff06f jal x0, -44 +13883986ns 243361 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13884271ns 243366 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13884668ns 243373 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13884839ns 243376 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13885294ns 243384 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13885464ns 243387 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13885748ns 243392 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13886032ns 243397 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13886317ns 243402 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13886771ns 243410 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13886942ns 243413 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13887226ns 243418 1a110850 fd5ff06f jal x0, -44 +13887510ns 243423 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13887794ns 243428 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13888192ns 243435 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13888363ns 243438 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13888817ns 243446 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13888988ns 243449 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13889272ns 243454 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13889556ns 243459 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13889840ns 243464 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13890295ns 243472 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13890465ns 243475 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13890749ns 243480 1a110850 fd5ff06f jal x0, -44 +13891034ns 243485 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13891318ns 243490 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13891716ns 243497 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13891886ns 243500 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13892341ns 243508 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13892511ns 243511 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13892795ns 243516 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13893080ns 243521 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13893364ns 243526 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13893818ns 243534 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13893989ns 243537 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13894273ns 243542 1a110850 fd5ff06f jal x0, -44 +13894557ns 243547 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13894841ns 243552 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13895239ns 243559 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13895410ns 243562 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13895864ns 243570 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13896035ns 243573 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13896319ns 243578 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13896603ns 243583 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13896887ns 243588 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13897342ns 243596 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13897512ns 243599 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13897797ns 243604 1a110850 fd5ff06f jal x0, -44 +13898081ns 243609 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13898365ns 243614 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13898763ns 243621 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13898933ns 243624 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13899388ns 243632 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13899558ns 243635 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13899843ns 243640 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13900127ns 243645 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13900411ns 243650 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13900866ns 243658 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13901036ns 243661 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13901320ns 243666 1a110850 fd5ff06f jal x0, -44 +13901604ns 243671 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13901889ns 243676 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13902286ns 243683 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13902457ns 243686 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13902912ns 243694 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13903082ns 243697 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13903366ns 243702 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13903650ns 243707 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13903935ns 243712 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13904389ns 243720 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13904560ns 243723 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13904844ns 243728 1a110850 fd5ff06f jal x0, -44 +13905128ns 243733 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13905412ns 243738 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13905810ns 243745 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13905980ns 243748 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13906435ns 243756 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13906606ns 243759 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13906890ns 243764 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13907174ns 243769 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13907458ns 243774 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13907913ns 243782 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13908083ns 243785 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13908367ns 243790 1a110850 fd5ff06f jal x0, -44 +13908652ns 243795 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13908936ns 243800 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13909334ns 243807 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13909504ns 243810 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13909959ns 243818 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13910129ns 243821 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13910413ns 243826 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13910698ns 243831 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13910982ns 243836 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13911436ns 243844 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13911607ns 243847 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13911891ns 243852 1a110850 fd5ff06f jal x0, -44 +13912175ns 243857 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13912459ns 243862 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13912857ns 243869 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13913028ns 243872 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13913482ns 243880 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13913653ns 243883 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13913937ns 243888 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13914221ns 243893 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13914505ns 243898 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13914960ns 243906 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13915130ns 243909 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13915415ns 243914 1a110850 fd5ff06f jal x0, -44 +13915699ns 243919 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13915983ns 243924 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13916381ns 243931 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13916551ns 243934 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13917006ns 243942 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13917176ns 243945 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13917461ns 243950 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13917745ns 243955 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13918029ns 243960 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13918483ns 243968 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13918654ns 243971 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13918938ns 243976 1a110850 fd5ff06f jal x0, -44 +13919222ns 243981 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13919506ns 243986 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13919904ns 243993 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13920075ns 243996 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13920529ns 244004 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13920700ns 244007 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13920984ns 244012 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13921268ns 244017 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13921552ns 244022 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13922007ns 244030 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13922178ns 244033 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13922462ns 244038 1a110850 fd5ff06f jal x0, -44 +13922746ns 244043 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13923030ns 244048 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13923428ns 244055 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13923598ns 244058 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13924053ns 244066 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13924224ns 244069 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13924508ns 244074 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13924792ns 244079 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13925076ns 244084 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13925531ns 244092 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13925701ns 244095 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13925985ns 244100 1a110850 fd5ff06f jal x0, -44 +13926269ns 244105 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13926554ns 244110 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13926951ns 244117 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13927122ns 244120 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13927577ns 244128 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13927747ns 244131 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13928031ns 244136 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13928315ns 244141 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13928600ns 244146 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13929054ns 244154 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13929225ns 244157 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13929509ns 244162 1a110850 fd5ff06f jal x0, -44 +13929793ns 244167 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13930077ns 244172 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13930475ns 244179 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13930646ns 244182 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13931100ns 244190 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13931271ns 244193 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13931555ns 244198 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13931839ns 244203 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13932123ns 244208 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13932578ns 244216 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13932748ns 244219 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13933032ns 244224 1a110850 fd5ff06f jal x0, -44 +13933317ns 244229 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13933601ns 244234 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13933999ns 244241 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13934169ns 244244 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13934624ns 244252 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13934794ns 244255 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13935078ns 244260 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13935363ns 244265 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13935647ns 244270 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13936101ns 244278 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13936272ns 244281 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13936556ns 244286 1a110850 fd5ff06f jal x0, -44 +13936840ns 244291 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13937124ns 244296 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13937522ns 244303 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13937693ns 244306 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13938147ns 244314 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13938318ns 244317 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13938602ns 244322 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13938886ns 244327 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13939170ns 244332 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13939625ns 244340 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13939795ns 244343 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13940080ns 244348 1a110850 fd5ff06f jal x0, -44 +13940364ns 244353 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13940648ns 244358 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13941046ns 244365 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13941216ns 244368 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13941671ns 244376 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13941841ns 244379 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13942126ns 244384 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13942410ns 244389 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13942694ns 244394 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13943149ns 244402 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13943319ns 244405 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13943603ns 244410 1a110850 fd5ff06f jal x0, -44 +13943887ns 244415 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13944172ns 244420 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13944569ns 244427 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13944740ns 244430 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13945195ns 244438 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13945365ns 244441 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13945649ns 244446 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13945933ns 244451 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13946218ns 244456 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13946672ns 244464 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13946843ns 244467 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13947127ns 244472 1a110850 fd5ff06f jal x0, -44 +13947411ns 244477 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13947695ns 244482 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13948093ns 244489 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13948263ns 244492 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13948718ns 244500 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13948889ns 244503 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13949173ns 244508 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13949457ns 244513 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13949741ns 244518 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13950196ns 244526 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13950366ns 244529 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13950650ns 244534 1a110850 fd5ff06f jal x0, -44 +13950935ns 244539 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13951219ns 244544 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13951617ns 244551 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13951787ns 244554 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13952242ns 244562 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13952412ns 244565 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13952696ns 244570 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13952981ns 244575 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13953265ns 244580 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13953719ns 244588 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13953890ns 244591 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13954174ns 244596 1a110850 fd5ff06f jal x0, -44 +13954458ns 244601 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13954742ns 244606 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13955140ns 244613 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13955311ns 244616 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13955765ns 244624 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13955936ns 244627 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13956220ns 244632 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13956504ns 244637 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13956788ns 244642 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13957243ns 244650 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13957413ns 244653 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13957698ns 244658 1a110850 fd5ff06f jal x0, -44 +13957982ns 244663 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13958266ns 244668 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13958664ns 244675 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13958834ns 244678 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13959289ns 244686 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13959459ns 244689 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13959744ns 244694 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13960028ns 244699 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13960312ns 244704 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13960767ns 244712 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13960937ns 244715 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13961221ns 244720 1a110850 fd5ff06f jal x0, -44 +13961505ns 244725 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13961789ns 244730 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13962187ns 244737 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13962358ns 244740 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13962812ns 244748 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13962983ns 244751 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13963267ns 244756 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13963551ns 244761 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13963835ns 244766 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13964290ns 244774 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13964461ns 244777 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13964745ns 244782 1a110850 fd5ff06f jal x0, -44 +13965029ns 244787 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13965313ns 244792 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13965711ns 244799 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13965881ns 244802 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13966336ns 244810 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13966507ns 244813 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13966791ns 244818 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13967075ns 244823 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13967359ns 244828 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13967814ns 244836 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13967984ns 244839 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13968268ns 244844 1a110850 fd5ff06f jal x0, -44 +13968552ns 244849 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13968837ns 244854 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13969234ns 244861 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13969405ns 244864 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13969860ns 244872 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13970030ns 244875 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13970314ns 244880 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13970598ns 244885 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13970883ns 244890 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13971337ns 244898 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13971508ns 244901 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13971792ns 244906 1a110850 fd5ff06f jal x0, -44 +13972076ns 244911 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13972360ns 244916 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13972758ns 244923 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13972929ns 244926 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13973383ns 244934 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13973554ns 244937 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13973838ns 244942 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13974122ns 244947 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13974406ns 244952 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13974861ns 244960 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13975031ns 244963 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13975315ns 244968 1a110850 fd5ff06f jal x0, -44 +13975600ns 244973 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13975884ns 244978 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13976282ns 244985 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13976452ns 244988 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13976907ns 244996 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13977077ns 244999 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13977361ns 245004 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13977646ns 245009 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13977930ns 245014 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13978384ns 245022 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13978555ns 245025 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13978839ns 245030 1a110850 fd5ff06f jal x0, -44 +13979123ns 245035 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13979407ns 245040 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13979805ns 245047 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13979976ns 245050 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13980430ns 245058 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13980601ns 245061 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13980885ns 245066 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13981169ns 245071 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13981453ns 245076 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13981908ns 245084 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13982079ns 245087 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13982363ns 245092 1a110850 fd5ff06f jal x0, -44 +13982647ns 245097 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13982931ns 245102 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13983329ns 245109 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13983499ns 245112 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13983954ns 245120 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13984124ns 245123 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13984409ns 245128 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13984693ns 245133 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13984977ns 245138 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13985432ns 245146 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13985602ns 245149 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13985886ns 245154 1a110850 fd5ff06f jal x0, -44 +13986170ns 245159 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13986455ns 245164 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13986852ns 245171 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13987023ns 245174 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13987478ns 245182 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13987648ns 245185 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13987932ns 245190 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13988216ns 245195 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13988501ns 245200 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13988955ns 245208 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13989126ns 245211 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13989410ns 245216 1a110850 fd5ff06f jal x0, -44 +13989694ns 245221 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13989978ns 245226 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13990376ns 245233 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13990546ns 245236 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13991001ns 245244 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13991172ns 245247 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13991456ns 245252 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13991740ns 245257 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13992024ns 245262 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13992479ns 245270 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13992649ns 245273 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13992933ns 245278 1a110850 fd5ff06f jal x0, -44 +13993218ns 245283 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13993502ns 245288 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13993900ns 245295 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13994070ns 245298 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13994525ns 245306 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13994695ns 245309 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13994979ns 245314 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13995264ns 245319 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13995548ns 245324 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13996002ns 245332 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13996173ns 245335 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13996457ns 245340 1a110850 fd5ff06f jal x0, -44 +13996741ns 245345 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13997025ns 245350 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +13997423ns 245357 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13997594ns 245360 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13998048ns 245368 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +13998219ns 245371 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +13998503ns 245376 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +13998787ns 245381 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +13999071ns 245386 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +13999526ns 245394 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +13999696ns 245397 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +13999981ns 245402 1a110850 fd5ff06f jal x0, -44 +14000265ns 245407 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14000549ns 245412 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14000947ns 245419 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14001117ns 245422 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14001572ns 245430 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14001742ns 245433 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14002027ns 245438 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14002311ns 245443 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14002595ns 245448 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14003050ns 245456 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14003220ns 245459 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14003504ns 245464 1a110850 fd5ff06f jal x0, -44 +14003788ns 245469 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14004072ns 245474 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14004470ns 245481 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14004641ns 245484 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14005095ns 245492 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14005266ns 245495 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14005550ns 245500 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14005834ns 245505 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14006118ns 245510 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14006573ns 245518 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14006744ns 245521 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14007028ns 245526 1a110850 fd5ff06f jal x0, -44 +14007312ns 245531 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14007596ns 245536 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14007994ns 245543 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14008164ns 245546 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14008619ns 245554 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14008790ns 245557 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14009074ns 245562 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14009358ns 245567 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14009642ns 245572 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14010097ns 245580 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14010267ns 245583 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14010551ns 245588 1a110850 fd5ff06f jal x0, -44 +14010835ns 245593 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14011120ns 245598 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14011517ns 245605 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14011688ns 245608 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14012143ns 245616 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14012313ns 245619 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14012597ns 245624 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14012881ns 245629 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14013166ns 245634 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14013620ns 245642 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14013791ns 245645 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14014075ns 245650 1a110850 fd5ff06f jal x0, -44 +14014359ns 245655 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14014643ns 245660 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14015041ns 245667 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14015212ns 245670 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14015666ns 245678 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14015837ns 245681 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14016121ns 245686 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14016405ns 245691 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14016689ns 245696 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14017144ns 245704 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14017314ns 245707 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14017599ns 245712 1a110850 fd5ff06f jal x0, -44 +14017883ns 245717 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14018167ns 245722 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14018565ns 245729 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14018735ns 245732 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14019190ns 245740 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14019360ns 245743 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14019644ns 245748 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14019929ns 245753 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14020213ns 245758 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14020667ns 245766 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14020838ns 245769 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14021122ns 245774 1a110850 fd5ff06f jal x0, -44 +14021406ns 245779 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14021690ns 245784 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14022088ns 245791 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14022259ns 245794 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14022713ns 245802 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14022884ns 245805 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14023168ns 245810 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14023452ns 245815 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14023736ns 245820 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14024191ns 245828 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14024362ns 245831 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14024646ns 245836 1a110850 fd5ff06f jal x0, -44 +14024930ns 245841 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14025214ns 245846 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14025612ns 245853 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14025782ns 245856 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14026237ns 245864 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14026407ns 245867 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14026692ns 245872 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14026976ns 245877 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14027260ns 245882 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14027715ns 245890 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14027885ns 245893 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14028169ns 245898 1a110850 fd5ff06f jal x0, -44 +14028453ns 245903 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14028738ns 245908 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14029135ns 245915 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14029306ns 245918 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14029761ns 245926 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14029931ns 245929 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14030215ns 245934 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14030499ns 245939 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14030784ns 245944 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14031238ns 245952 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14031409ns 245955 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14031693ns 245960 1a110850 fd5ff06f jal x0, -44 +14031977ns 245965 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14032261ns 245970 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14032659ns 245977 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14032829ns 245980 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14033284ns 245988 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14033455ns 245991 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14033739ns 245996 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14034023ns 246001 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14034307ns 246006 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14034762ns 246014 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14034932ns 246017 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14035216ns 246022 1a110850 fd5ff06f jal x0, -44 +14035501ns 246027 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14035785ns 246032 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14036183ns 246039 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14036353ns 246042 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14036808ns 246050 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14036978ns 246053 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14037262ns 246058 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14037547ns 246063 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14037831ns 246068 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14038285ns 246076 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14038456ns 246079 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14038740ns 246084 1a110850 fd5ff06f jal x0, -44 +14039024ns 246089 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14039308ns 246094 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14039706ns 246101 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14039877ns 246104 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14040331ns 246112 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14040502ns 246115 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14040786ns 246120 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14041070ns 246125 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14041354ns 246130 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14041809ns 246138 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14041979ns 246141 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14042264ns 246146 1a110850 fd5ff06f jal x0, -44 +14042548ns 246151 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14042832ns 246156 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14043230ns 246163 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14043400ns 246166 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14043855ns 246174 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14044025ns 246177 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14044310ns 246182 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14044594ns 246187 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14044878ns 246192 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14045333ns 246200 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14045503ns 246203 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14045787ns 246208 1a110850 fd5ff06f jal x0, -44 +14046071ns 246213 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14046355ns 246218 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14046753ns 246225 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14046924ns 246228 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14047378ns 246236 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14047549ns 246239 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14047833ns 246244 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14048117ns 246249 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14048401ns 246254 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14048856ns 246262 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14049027ns 246265 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14049311ns 246270 1a110850 fd5ff06f jal x0, -44 +14049595ns 246275 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14049879ns 246280 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14050277ns 246287 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14050447ns 246290 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14050902ns 246298 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14051073ns 246301 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14051357ns 246306 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14051641ns 246311 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14051925ns 246316 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14052380ns 246324 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14052550ns 246327 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14052834ns 246332 1a110850 fd5ff06f jal x0, -44 +14053119ns 246337 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14053403ns 246342 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14053800ns 246349 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14053971ns 246352 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14054426ns 246360 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14054596ns 246363 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14054880ns 246368 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14055164ns 246373 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14055449ns 246378 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14055903ns 246386 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14056074ns 246389 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14056358ns 246394 1a110850 fd5ff06f jal x0, -44 +14056642ns 246399 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14056926ns 246404 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14057324ns 246411 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14057495ns 246414 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14057949ns 246422 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14058120ns 246425 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14058404ns 246430 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14058688ns 246435 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14058972ns 246440 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14059427ns 246448 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14059597ns 246451 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14059882ns 246456 1a110850 fd5ff06f jal x0, -44 +14060166ns 246461 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14060450ns 246466 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14060848ns 246473 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14061018ns 246476 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14061473ns 246484 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14061643ns 246487 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14061927ns 246492 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14062212ns 246497 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14062496ns 246502 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14062950ns 246510 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14063121ns 246513 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14063405ns 246518 1a110850 fd5ff06f jal x0, -44 +14063689ns 246523 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14063973ns 246528 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14064371ns 246535 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14064542ns 246538 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14064996ns 246546 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14065167ns 246549 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14065451ns 246554 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14065735ns 246559 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14066019ns 246564 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14066474ns 246572 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14066645ns 246575 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14066929ns 246580 1a110850 fd5ff06f jal x0, -44 +14067213ns 246585 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14067497ns 246590 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14067895ns 246597 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14068065ns 246600 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14068520ns 246608 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14068690ns 246611 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14068975ns 246616 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14069259ns 246621 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14069543ns 246626 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14069998ns 246634 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14070168ns 246637 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14070452ns 246642 1a110850 fd5ff06f jal x0, -44 +14070736ns 246647 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14071021ns 246652 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14071418ns 246659 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14071589ns 246662 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14072044ns 246670 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14072214ns 246673 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14072498ns 246678 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14072782ns 246683 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14073067ns 246688 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14073521ns 246696 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14073692ns 246699 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14073976ns 246704 1a110850 fd5ff06f jal x0, -44 +14074260ns 246709 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14074544ns 246714 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14074942ns 246721 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14075112ns 246724 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14075567ns 246732 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14075738ns 246735 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14076022ns 246740 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14076306ns 246745 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14076590ns 246750 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14077045ns 246758 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14077215ns 246761 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14077499ns 246766 1a110850 fd5ff06f jal x0, -44 +14077784ns 246771 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14078068ns 246776 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14078466ns 246783 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14078636ns 246786 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14079091ns 246794 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14079261ns 246797 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14079545ns 246802 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14079830ns 246807 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14080114ns 246812 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14080568ns 246820 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14080739ns 246823 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14081023ns 246828 1a110850 fd5ff06f jal x0, -44 +14081307ns 246833 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14081591ns 246838 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14081989ns 246845 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14082160ns 246848 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14082614ns 246856 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14082785ns 246859 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14083069ns 246864 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14083353ns 246869 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14083637ns 246874 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14084092ns 246882 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14084262ns 246885 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14084547ns 246890 1a110850 fd5ff06f jal x0, -44 +14084831ns 246895 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14085115ns 246900 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14085513ns 246907 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14085683ns 246910 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14086138ns 246918 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14086308ns 246921 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14086593ns 246926 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14086877ns 246931 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14087161ns 246936 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14087616ns 246944 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14087786ns 246947 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14088070ns 246952 1a110850 fd5ff06f jal x0, -44 +14088354ns 246957 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14088639ns 246962 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14089036ns 246969 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14089207ns 246972 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14089661ns 246980 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14089832ns 246983 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14090116ns 246988 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14090400ns 246993 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14090684ns 246998 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14091139ns 247006 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14091310ns 247009 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14091594ns 247014 1a110850 fd5ff06f jal x0, -44 +14091878ns 247019 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14092162ns 247024 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14092560ns 247031 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14092730ns 247034 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14093185ns 247042 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14093356ns 247045 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14093640ns 247050 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14093924ns 247055 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14094208ns 247060 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14094663ns 247068 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14094833ns 247071 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14095117ns 247076 1a110850 fd5ff06f jal x0, -44 +14095402ns 247081 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14095686ns 247086 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14096083ns 247093 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14096254ns 247096 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14096709ns 247104 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14096879ns 247107 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14097163ns 247112 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14097447ns 247117 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14097732ns 247122 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14098186ns 247130 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14098357ns 247133 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14098641ns 247138 1a110850 fd5ff06f jal x0, -44 +14098925ns 247143 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14099209ns 247148 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14099607ns 247155 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14099778ns 247158 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14100232ns 247166 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14100403ns 247169 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14100687ns 247174 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14100971ns 247179 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14101255ns 247184 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14101710ns 247192 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14101880ns 247195 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14102165ns 247200 1a110850 fd5ff06f jal x0, -44 +14102449ns 247205 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14102733ns 247210 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14103131ns 247217 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14103301ns 247220 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14103756ns 247228 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14103926ns 247231 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14104210ns 247236 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14104495ns 247241 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14104779ns 247246 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14105233ns 247254 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14105404ns 247257 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14105688ns 247262 1a110850 fd5ff06f jal x0, -44 +14105972ns 247267 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14106256ns 247272 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14106654ns 247279 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14106825ns 247282 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14107279ns 247290 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14107450ns 247293 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14107734ns 247298 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14108018ns 247303 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14108302ns 247308 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14108757ns 247316 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14108928ns 247319 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14109212ns 247324 1a110850 fd5ff06f jal x0, -44 +14109496ns 247329 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14109780ns 247334 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14110178ns 247341 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14110348ns 247344 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14110803ns 247352 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14110973ns 247355 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14111258ns 247360 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14111542ns 247365 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14111826ns 247370 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14112281ns 247378 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14112451ns 247381 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14112735ns 247386 1a110850 fd5ff06f jal x0, -44 +14113019ns 247391 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14113304ns 247396 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14113701ns 247403 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14113872ns 247406 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14114327ns 247414 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14114497ns 247417 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14114781ns 247422 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14115065ns 247427 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14115350ns 247432 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14115804ns 247440 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14115975ns 247443 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14116259ns 247448 1a110850 fd5ff06f jal x0, -44 +14116543ns 247453 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14116827ns 247458 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14117225ns 247465 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14117395ns 247468 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14117850ns 247476 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14118021ns 247479 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14118305ns 247484 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14118589ns 247489 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14118873ns 247494 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14119328ns 247502 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14119498ns 247505 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14119782ns 247510 1a110850 fd5ff06f jal x0, -44 +14120067ns 247515 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14120351ns 247520 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14120749ns 247527 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14120919ns 247530 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14121374ns 247538 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14121544ns 247541 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14121828ns 247546 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14122113ns 247551 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14122397ns 247556 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14122851ns 247564 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14123022ns 247567 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14123306ns 247572 1a110850 fd5ff06f jal x0, -44 +14123590ns 247577 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14123874ns 247582 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14124272ns 247589 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14124443ns 247592 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14124897ns 247600 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14125068ns 247603 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14125352ns 247608 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14125636ns 247613 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14125920ns 247618 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14126375ns 247626 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14126545ns 247629 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14126830ns 247634 1a110850 fd5ff06f jal x0, -44 +14127114ns 247639 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14127398ns 247644 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14127796ns 247651 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14127966ns 247654 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14128421ns 247662 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14128591ns 247665 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14128876ns 247670 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14129160ns 247675 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14129444ns 247680 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14129899ns 247688 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14130069ns 247691 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14130353ns 247696 1a110850 fd5ff06f jal x0, -44 +14130637ns 247701 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14130922ns 247706 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14131319ns 247713 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14131490ns 247716 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14131944ns 247724 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14132115ns 247727 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14132399ns 247732 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14132683ns 247737 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14132967ns 247742 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14133422ns 247750 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14133593ns 247753 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14133877ns 247758 1a110850 fd5ff06f jal x0, -44 +14134161ns 247763 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14134445ns 247768 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14134843ns 247775 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14135013ns 247778 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14135468ns 247786 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14135639ns 247789 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14135923ns 247794 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14136207ns 247799 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14136491ns 247804 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14136946ns 247812 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14137116ns 247815 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14137400ns 247820 1a110850 fd5ff06f jal x0, -44 +14137685ns 247825 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14137969ns 247830 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14138367ns 247837 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14138537ns 247840 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14138992ns 247848 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14139162ns 247851 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14139446ns 247856 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14139730ns 247861 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14140015ns 247866 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14140469ns 247874 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14140640ns 247877 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14140924ns 247882 1a110850 fd5ff06f jal x0, -44 +14141208ns 247887 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14141492ns 247892 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14141890ns 247899 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14142061ns 247902 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14142515ns 247910 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14142686ns 247913 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14142970ns 247918 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14143254ns 247923 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14143538ns 247928 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14143993ns 247936 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14144163ns 247939 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14144448ns 247944 1a110850 fd5ff06f jal x0, -44 +14144732ns 247949 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14145016ns 247954 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14145414ns 247961 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14145584ns 247964 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14146039ns 247972 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14146209ns 247975 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14146493ns 247980 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14146778ns 247985 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14147062ns 247990 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14147516ns 247998 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14147687ns 248001 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14147971ns 248006 1a110850 fd5ff06f jal x0, -44 +14148255ns 248011 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14148539ns 248016 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14148937ns 248023 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14149108ns 248026 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14149562ns 248034 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14149733ns 248037 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14150017ns 248042 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14150301ns 248047 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14150585ns 248052 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14151040ns 248060 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14151211ns 248063 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14151495ns 248068 1a110850 fd5ff06f jal x0, -44 +14151779ns 248073 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14152063ns 248078 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14152461ns 248085 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14152631ns 248088 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14153086ns 248096 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14153256ns 248099 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14153541ns 248104 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14153825ns 248109 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14154109ns 248114 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14154564ns 248122 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14154734ns 248125 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14155018ns 248130 1a110850 fd5ff06f jal x0, -44 +14155302ns 248135 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14155587ns 248140 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14155984ns 248147 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14156155ns 248150 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14156610ns 248158 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14156780ns 248161 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14157064ns 248166 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14157348ns 248171 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14157633ns 248176 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14158087ns 248184 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14158258ns 248187 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14158542ns 248192 1a110850 fd5ff06f jal x0, -44 +14158826ns 248197 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14159110ns 248202 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14159508ns 248209 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14159679ns 248212 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14160133ns 248220 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14160304ns 248223 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14160588ns 248228 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14160872ns 248233 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14161156ns 248238 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14161611ns 248246 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14161781ns 248249 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14162065ns 248254 1a110850 fd5ff06f jal x0, -44 +14162350ns 248259 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14162634ns 248264 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14163032ns 248271 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14163202ns 248274 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14163657ns 248282 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14163827ns 248285 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14164111ns 248290 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14164396ns 248295 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14164680ns 248300 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14165134ns 248308 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14165305ns 248311 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14165589ns 248316 1a110850 fd5ff06f jal x0, -44 +14165873ns 248321 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14166157ns 248326 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14166555ns 248333 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14166726ns 248336 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14167180ns 248344 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14167351ns 248347 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14167635ns 248352 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14167919ns 248357 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14168203ns 248362 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14168658ns 248370 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14168828ns 248373 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14169113ns 248378 1a110850 fd5ff06f jal x0, -44 +14169397ns 248383 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14169681ns 248388 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14170079ns 248395 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14170249ns 248398 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14170704ns 248406 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14170874ns 248409 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14171159ns 248414 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14171443ns 248419 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14171727ns 248424 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14172182ns 248432 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14172352ns 248435 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14172636ns 248440 1a110850 fd5ff06f jal x0, -44 +14172920ns 248445 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14173205ns 248450 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14173602ns 248457 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14173773ns 248460 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14174227ns 248468 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14174398ns 248471 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14174682ns 248476 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14174966ns 248481 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14175250ns 248486 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14175705ns 248494 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14175876ns 248497 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14176160ns 248502 1a110850 fd5ff06f jal x0, -44 +14176444ns 248507 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14176728ns 248512 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14177126ns 248519 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14177296ns 248522 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14177751ns 248530 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14177922ns 248533 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14178206ns 248538 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14178490ns 248543 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14178774ns 248548 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14179229ns 248556 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14179399ns 248559 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14179683ns 248564 1a110850 fd5ff06f jal x0, -44 +14179968ns 248569 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14180252ns 248574 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14180650ns 248581 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14180820ns 248584 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14181275ns 248592 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14181445ns 248595 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14181729ns 248600 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14182013ns 248605 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14182298ns 248610 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14182752ns 248618 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14182923ns 248621 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14183207ns 248626 1a110850 fd5ff06f jal x0, -44 +14183491ns 248631 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14183775ns 248636 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14184173ns 248643 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14184344ns 248646 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14184798ns 248654 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14184969ns 248657 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14185253ns 248662 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14185537ns 248667 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14185821ns 248672 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14186276ns 248680 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14186446ns 248683 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14186731ns 248688 1a110850 fd5ff06f jal x0, -44 +14187015ns 248693 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14187299ns 248698 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14187697ns 248705 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14187867ns 248708 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14188322ns 248716 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14188492ns 248719 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14188776ns 248724 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14189061ns 248729 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14189345ns 248734 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14189799ns 248742 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14189970ns 248745 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14190254ns 248750 1a110850 fd5ff06f jal x0, -44 +14190538ns 248755 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14190822ns 248760 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14191220ns 248767 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14191391ns 248770 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14191845ns 248778 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14192016ns 248781 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14192300ns 248786 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14192584ns 248791 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14192868ns 248796 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14193323ns 248804 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14193494ns 248807 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14193778ns 248812 1a110850 fd5ff06f jal x0, -44 +14194062ns 248817 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14194346ns 248822 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14194744ns 248829 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14194914ns 248832 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14195369ns 248840 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14195539ns 248843 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14195824ns 248848 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14196108ns 248853 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14196392ns 248858 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14196847ns 248866 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14197017ns 248869 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14197301ns 248874 1a110850 fd5ff06f jal x0, -44 +14197585ns 248879 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14197870ns 248884 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14198267ns 248891 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14198438ns 248894 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14198893ns 248902 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14199063ns 248905 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14199347ns 248910 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14199631ns 248915 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14199916ns 248920 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14200370ns 248928 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14200541ns 248931 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14200825ns 248936 1a110850 fd5ff06f jal x0, -44 +14201109ns 248941 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14201393ns 248946 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14201791ns 248953 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14201962ns 248956 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14202416ns 248964 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14202587ns 248967 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14202871ns 248972 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14203155ns 248977 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14203439ns 248982 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14203894ns 248990 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14204064ns 248993 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14204348ns 248998 1a110850 fd5ff06f jal x0, -44 +14204633ns 249003 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14204917ns 249008 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14205315ns 249015 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14205485ns 249018 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14205940ns 249026 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14206110ns 249029 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14206394ns 249034 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14206679ns 249039 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14206963ns 249044 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14207417ns 249052 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14207588ns 249055 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14207872ns 249060 1a110850 fd5ff06f jal x0, -44 +14208156ns 249065 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14208440ns 249070 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14208838ns 249077 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14209009ns 249080 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14209463ns 249088 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14209634ns 249091 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14209918ns 249096 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14210202ns 249101 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14210486ns 249106 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14210941ns 249114 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14211111ns 249117 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14211396ns 249122 1a110850 fd5ff06f jal x0, -44 +14211680ns 249127 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14211964ns 249132 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14212362ns 249139 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14212532ns 249142 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14212987ns 249150 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14213157ns 249153 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14213442ns 249158 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14213726ns 249163 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14214010ns 249168 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14214465ns 249176 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14214635ns 249179 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14214919ns 249184 1a110850 fd5ff06f jal x0, -44 +14215203ns 249189 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14215488ns 249194 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14215885ns 249201 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14216056ns 249204 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14216511ns 249212 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14216681ns 249215 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14216965ns 249220 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14217249ns 249225 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14217533ns 249230 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14217988ns 249238 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14218159ns 249241 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14218443ns 249246 1a110850 fd5ff06f jal x0, -44 +14218727ns 249251 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14219011ns 249256 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14219409ns 249263 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14219579ns 249266 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14220034ns 249274 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14220205ns 249277 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14220489ns 249282 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14220773ns 249287 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14221057ns 249292 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14221512ns 249300 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14221682ns 249303 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14221966ns 249308 1a110850 fd5ff06f jal x0, -44 +14222251ns 249313 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14222535ns 249318 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14222933ns 249325 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14223103ns 249328 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14223558ns 249336 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14223728ns 249339 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14224012ns 249344 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14224296ns 249349 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14224581ns 249354 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14225035ns 249362 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14225206ns 249365 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14225490ns 249370 1a110850 fd5ff06f jal x0, -44 +14225774ns 249375 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14226058ns 249380 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14226456ns 249387 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14226627ns 249390 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14227081ns 249398 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14227252ns 249401 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14227536ns 249406 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14227820ns 249411 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14228104ns 249416 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14228559ns 249424 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14228729ns 249427 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14229014ns 249432 1a110850 fd5ff06f jal x0, -44 +14229298ns 249437 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14229582ns 249442 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14229980ns 249449 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14230150ns 249452 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14230605ns 249460 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14230775ns 249463 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14231059ns 249468 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14231344ns 249473 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14231628ns 249478 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14232082ns 249486 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14232253ns 249489 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14232537ns 249494 1a110850 fd5ff06f jal x0, -44 +14232821ns 249499 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14233105ns 249504 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14233503ns 249511 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14233674ns 249514 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14234128ns 249522 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14234299ns 249525 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14234583ns 249530 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14234867ns 249535 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14235151ns 249540 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14235606ns 249548 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14235777ns 249551 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14236061ns 249556 1a110850 fd5ff06f jal x0, -44 +14236345ns 249561 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14236629ns 249566 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14237027ns 249573 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14237197ns 249576 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14237652ns 249584 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14237823ns 249587 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14238107ns 249592 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14238391ns 249597 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14238675ns 249602 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14239130ns 249610 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14239300ns 249613 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14239584ns 249618 1a110850 fd5ff06f jal x0, -44 +14239868ns 249623 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14240153ns 249628 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14240550ns 249635 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14240721ns 249638 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14241176ns 249646 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14241346ns 249649 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14241630ns 249654 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14241914ns 249659 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14242199ns 249664 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14242653ns 249672 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14242824ns 249675 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14243108ns 249680 1a110850 fd5ff06f jal x0, -44 +14243392ns 249685 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14243676ns 249690 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14244074ns 249697 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14244245ns 249700 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14244699ns 249708 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14244870ns 249711 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14245154ns 249716 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14245438ns 249721 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14245722ns 249726 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14246177ns 249734 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14246347ns 249737 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14246631ns 249742 1a110850 fd5ff06f jal x0, -44 +14246916ns 249747 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14247200ns 249752 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14247598ns 249759 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14247768ns 249762 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14248223ns 249770 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14248393ns 249773 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14248677ns 249778 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14248962ns 249783 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14249246ns 249788 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14249700ns 249796 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14249871ns 249799 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14250155ns 249804 1a110850 fd5ff06f jal x0, -44 +14250439ns 249809 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14250723ns 249814 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14251121ns 249821 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14251292ns 249824 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14251746ns 249832 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14251917ns 249835 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14252201ns 249840 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14252485ns 249845 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14252769ns 249850 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14253224ns 249858 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14253394ns 249861 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14253679ns 249866 1a110850 fd5ff06f jal x0, -44 +14253963ns 249871 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14254247ns 249876 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14254645ns 249883 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14254815ns 249886 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14255270ns 249894 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14255440ns 249897 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14255725ns 249902 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14256009ns 249907 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14256293ns 249912 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14256748ns 249920 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14256918ns 249923 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14257202ns 249928 1a110850 fd5ff06f jal x0, -44 +14257486ns 249933 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14257771ns 249938 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14258168ns 249945 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14258339ns 249948 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14258794ns 249956 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14258964ns 249959 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14259248ns 249964 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14259532ns 249969 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14259816ns 249974 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14260271ns 249982 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14260442ns 249985 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14260726ns 249990 1a110850 fd5ff06f jal x0, -44 +14261010ns 249995 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14261294ns 250000 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14261692ns 250007 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14261862ns 250010 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14262317ns 250018 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14262488ns 250021 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14262772ns 250026 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14263056ns 250031 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14263340ns 250036 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14263795ns 250044 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14263965ns 250047 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14264249ns 250052 1a110850 fd5ff06f jal x0, -44 +14264534ns 250057 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14264818ns 250062 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14265216ns 250069 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14265386ns 250072 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14265841ns 250080 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14266011ns 250083 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14266295ns 250088 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14266579ns 250093 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14266864ns 250098 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14267318ns 250106 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14267489ns 250109 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14267773ns 250114 1a110850 fd5ff06f jal x0, -44 +14268057ns 250119 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14268341ns 250124 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14268739ns 250131 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14268910ns 250134 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14269364ns 250142 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14269535ns 250145 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14269819ns 250150 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14270103ns 250155 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14270387ns 250160 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14270842ns 250168 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14271012ns 250171 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14271297ns 250176 1a110850 fd5ff06f jal x0, -44 +14271581ns 250181 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14271865ns 250186 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14272263ns 250193 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14272433ns 250196 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14272888ns 250204 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14273058ns 250207 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14273343ns 250212 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14273627ns 250217 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14273911ns 250222 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14274365ns 250230 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14274536ns 250233 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14274820ns 250238 1a110850 fd5ff06f jal x0, -44 +14275104ns 250243 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14275388ns 250248 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14275786ns 250255 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14275957ns 250258 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14276411ns 250266 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14276582ns 250269 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14276866ns 250274 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14277150ns 250279 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14277434ns 250284 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14277889ns 250292 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14278060ns 250295 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14278344ns 250300 1a110850 fd5ff06f jal x0, -44 +14278628ns 250305 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14278912ns 250310 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14279310ns 250317 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14279480ns 250320 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14279935ns 250328 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14280106ns 250331 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14280390ns 250336 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14280674ns 250341 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14280958ns 250346 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14281413ns 250354 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14281583ns 250357 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14281867ns 250362 1a110850 fd5ff06f jal x0, -44 +14282151ns 250367 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14282436ns 250372 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14282833ns 250379 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14283004ns 250382 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14283459ns 250390 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14283629ns 250393 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14283913ns 250398 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14284197ns 250403 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14284482ns 250408 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14284936ns 250416 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14285107ns 250419 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14285391ns 250424 1a110850 fd5ff06f jal x0, -44 +14285675ns 250429 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14285959ns 250434 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14286357ns 250441 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14286528ns 250444 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14286982ns 250452 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14287153ns 250455 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14287437ns 250460 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14287721ns 250465 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14288005ns 250470 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14288460ns 250478 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14288630ns 250481 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14288914ns 250486 1a110850 fd5ff06f jal x0, -44 +14289199ns 250491 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14289483ns 250496 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14289881ns 250503 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14290051ns 250506 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14290506ns 250514 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14290676ns 250517 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14290960ns 250522 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14291245ns 250527 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14291529ns 250532 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14291983ns 250540 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14292154ns 250543 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14292438ns 250548 1a110850 fd5ff06f jal x0, -44 +14292722ns 250553 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14293006ns 250558 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14293404ns 250565 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14293575ns 250568 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14294029ns 250576 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14294200ns 250579 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14294484ns 250584 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14294768ns 250589 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14295052ns 250594 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14295507ns 250602 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14295677ns 250605 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14295962ns 250610 1a110850 fd5ff06f jal x0, -44 +14296246ns 250615 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14296530ns 250620 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14296928ns 250627 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14297098ns 250630 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14297553ns 250638 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14297723ns 250641 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14298008ns 250646 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14298292ns 250651 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14298576ns 250656 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14299031ns 250664 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14299201ns 250667 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14299485ns 250672 1a110850 fd5ff06f jal x0, -44 +14299769ns 250677 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14300054ns 250682 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14300451ns 250689 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14300622ns 250692 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14301077ns 250700 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14301247ns 250703 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14301531ns 250708 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14301815ns 250713 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14302099ns 250718 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14302554ns 250726 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14302725ns 250729 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14303009ns 250734 1a110850 fd5ff06f jal x0, -44 +14303293ns 250739 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14303577ns 250744 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14303975ns 250751 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14304145ns 250754 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14304600ns 250762 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14304771ns 250765 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14305055ns 250770 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14305339ns 250775 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14305623ns 250780 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14306078ns 250788 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14306248ns 250791 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14306532ns 250796 1a110850 fd5ff06f jal x0, -44 +14306817ns 250801 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14307101ns 250806 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14307499ns 250813 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14307669ns 250816 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14308124ns 250824 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14308294ns 250827 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14308578ns 250832 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14308863ns 250837 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14309147ns 250842 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14309601ns 250850 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14309772ns 250853 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14310056ns 250858 1a110850 fd5ff06f jal x0, -44 +14310340ns 250863 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14310624ns 250868 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14311022ns 250875 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14311193ns 250878 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14311647ns 250886 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14311818ns 250889 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14312102ns 250894 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14312386ns 250899 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14312670ns 250904 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14313125ns 250912 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14313295ns 250915 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14313580ns 250920 1a110850 fd5ff06f jal x0, -44 +14313864ns 250925 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14314148ns 250930 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14314546ns 250937 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14314716ns 250940 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14315171ns 250948 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14315341ns 250951 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14315626ns 250956 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14315910ns 250961 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14316194ns 250966 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14316648ns 250974 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14316819ns 250977 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14317103ns 250982 1a110850 fd5ff06f jal x0, -44 +14317387ns 250987 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14317671ns 250992 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14318069ns 250999 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14318240ns 251002 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14318694ns 251010 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14318865ns 251013 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14319149ns 251018 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14319433ns 251023 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14319717ns 251028 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14320172ns 251036 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14320343ns 251039 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14320627ns 251044 1a110850 fd5ff06f jal x0, -44 +14320911ns 251049 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14321195ns 251054 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14321593ns 251061 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14321763ns 251064 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14322218ns 251072 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14322389ns 251075 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14322673ns 251080 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14322957ns 251085 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14323241ns 251090 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14323696ns 251098 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14323866ns 251101 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14324150ns 251106 1a110850 fd5ff06f jal x0, -44 +14324434ns 251111 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14324719ns 251116 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14325116ns 251123 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14325287ns 251126 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14325742ns 251134 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14325912ns 251137 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14326196ns 251142 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14326480ns 251147 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14326765ns 251152 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14327219ns 251160 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14327390ns 251163 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14327674ns 251168 1a110850 fd5ff06f jal x0, -44 +14327958ns 251173 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14328242ns 251178 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14328640ns 251185 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14328811ns 251188 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14329265ns 251196 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14329436ns 251199 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14329720ns 251204 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14330004ns 251209 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14330288ns 251214 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14330743ns 251222 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14330913ns 251225 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14331197ns 251230 1a110850 fd5ff06f jal x0, -44 +14331482ns 251235 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14331766ns 251240 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14332164ns 251247 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14332334ns 251250 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14332789ns 251258 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14332959ns 251261 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14333243ns 251266 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14333528ns 251271 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14333812ns 251276 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14334266ns 251284 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14334437ns 251287 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14334721ns 251292 1a110850 fd5ff06f jal x0, -44 +14335005ns 251297 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14335289ns 251302 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14335687ns 251309 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14335858ns 251312 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14336312ns 251320 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14336483ns 251323 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14336767ns 251328 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14337051ns 251333 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14337335ns 251338 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14337790ns 251346 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14337960ns 251349 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14338245ns 251354 1a110850 fd5ff06f jal x0, -44 +14338529ns 251359 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14338813ns 251364 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14339211ns 251371 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14339381ns 251374 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14339836ns 251382 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14340006ns 251385 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14340291ns 251390 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14340575ns 251395 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14340859ns 251400 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14341314ns 251408 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14341484ns 251411 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14341768ns 251416 1a110850 fd5ff06f jal x0, -44 +14342052ns 251421 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14342337ns 251426 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14342734ns 251433 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14342905ns 251436 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14343360ns 251444 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14343530ns 251447 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14343814ns 251452 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14344098ns 251457 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14344383ns 251462 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14344837ns 251470 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14345008ns 251473 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14345292ns 251478 1a110850 fd5ff06f jal x0, -44 +14345576ns 251483 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14345860ns 251488 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14346258ns 251495 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14346428ns 251498 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14346883ns 251506 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14347054ns 251509 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14347338ns 251514 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14347622ns 251519 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14347906ns 251524 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14348361ns 251532 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14348531ns 251535 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14348815ns 251540 1a110850 fd5ff06f jal x0, -44 +14349100ns 251545 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14349384ns 251550 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14349782ns 251557 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14349952ns 251560 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14350407ns 251568 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14350577ns 251571 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14350861ns 251576 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14351146ns 251581 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14351430ns 251586 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14351884ns 251594 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14352055ns 251597 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14352339ns 251602 1a110850 fd5ff06f jal x0, -44 +14352623ns 251607 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14352907ns 251612 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14353305ns 251619 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14353476ns 251622 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14353930ns 251630 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14354101ns 251633 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14354385ns 251638 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14354669ns 251643 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14354953ns 251648 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14355408ns 251656 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14355578ns 251659 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14355863ns 251664 1a110850 fd5ff06f jal x0, -44 +14356147ns 251669 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14356431ns 251674 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14356829ns 251681 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14356999ns 251684 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14357454ns 251692 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14357624ns 251695 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14357909ns 251700 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14358193ns 251705 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14358477ns 251710 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14358931ns 251718 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14359102ns 251721 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14359386ns 251726 1a110850 fd5ff06f jal x0, -44 +14359670ns 251731 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14359954ns 251736 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14360352ns 251743 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14360523ns 251746 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14360977ns 251754 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14361148ns 251757 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14361432ns 251762 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14361716ns 251767 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14362000ns 251772 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14362455ns 251780 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14362626ns 251783 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14362910ns 251788 1a110850 fd5ff06f jal x0, -44 +14363194ns 251793 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14363478ns 251798 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14363876ns 251805 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14364046ns 251808 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14364501ns 251816 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14364672ns 251819 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14364956ns 251824 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14365240ns 251829 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14365524ns 251834 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14365979ns 251842 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14366149ns 251845 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14366433ns 251850 1a110850 fd5ff06f jal x0, -44 +14366717ns 251855 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14367002ns 251860 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14367399ns 251867 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14367570ns 251870 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14368025ns 251878 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14368195ns 251881 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14368479ns 251886 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14368763ns 251891 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14369048ns 251896 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14369502ns 251904 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14369673ns 251907 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14369957ns 251912 1a110850 fd5ff06f jal x0, -44 +14370241ns 251917 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14370525ns 251922 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14370923ns 251929 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14371094ns 251932 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14371548ns 251940 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14371719ns 251943 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14372003ns 251948 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14372287ns 251953 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14372571ns 251958 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14373026ns 251966 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14373196ns 251969 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14373480ns 251974 1a110850 fd5ff06f jal x0, -44 +14373765ns 251979 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14374049ns 251984 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14374447ns 251991 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14374617ns 251994 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14375072ns 252002 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14375242ns 252005 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14375526ns 252010 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14375811ns 252015 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14376095ns 252020 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14376549ns 252028 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14376720ns 252031 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14377004ns 252036 1a110850 fd5ff06f jal x0, -44 +14377288ns 252041 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14377572ns 252046 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14377970ns 252053 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14378141ns 252056 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14378595ns 252064 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14378766ns 252067 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14379050ns 252072 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14379334ns 252077 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14379618ns 252082 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14380073ns 252090 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14380243ns 252093 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14380528ns 252098 1a110850 fd5ff06f jal x0, -44 +14380812ns 252103 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14381096ns 252108 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14381494ns 252115 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14381664ns 252118 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14382119ns 252126 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14382289ns 252129 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14382574ns 252134 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14382858ns 252139 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14383142ns 252144 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14383597ns 252152 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14383767ns 252155 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14384051ns 252160 1a110850 fd5ff06f jal x0, -44 +14384335ns 252165 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14384620ns 252170 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14385017ns 252177 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14385188ns 252180 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14385643ns 252188 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14385813ns 252191 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14386097ns 252196 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14386381ns 252201 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14386666ns 252206 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14387120ns 252214 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14387291ns 252217 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14387575ns 252222 1a110850 fd5ff06f jal x0, -44 +14387859ns 252227 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14388143ns 252232 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14388541ns 252239 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14388711ns 252242 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14389166ns 252250 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14389337ns 252253 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14389621ns 252258 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14389905ns 252263 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14390189ns 252268 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14390644ns 252276 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14390814ns 252279 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14391098ns 252284 1a110850 fd5ff06f jal x0, -44 +14391383ns 252289 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14391667ns 252294 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14392065ns 252301 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14392235ns 252304 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14392690ns 252312 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14392860ns 252315 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14393144ns 252320 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14393429ns 252325 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14393713ns 252330 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14394167ns 252338 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14394338ns 252341 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14394622ns 252346 1a110850 fd5ff06f jal x0, -44 +14394906ns 252351 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14395190ns 252356 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14395588ns 252363 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14395759ns 252366 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14396213ns 252374 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14396384ns 252377 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14396668ns 252382 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14396952ns 252387 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14397236ns 252392 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14397691ns 252400 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14397861ns 252403 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14398146ns 252408 1a110850 fd5ff06f jal x0, -44 +14398430ns 252413 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14398714ns 252418 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14399112ns 252425 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14399282ns 252428 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14399737ns 252436 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14399907ns 252439 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14400192ns 252444 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14400476ns 252449 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14400760ns 252454 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14401215ns 252462 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14401385ns 252465 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14401669ns 252470 1a110850 fd5ff06f jal x0, -44 +14401953ns 252475 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14402237ns 252480 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14402635ns 252487 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14402806ns 252490 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14403260ns 252498 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14403431ns 252501 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14403715ns 252506 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14403999ns 252511 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14404283ns 252516 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14404738ns 252524 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14404909ns 252527 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14405193ns 252532 1a110850 fd5ff06f jal x0, -44 +14405477ns 252537 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14405761ns 252542 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14406159ns 252549 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14406329ns 252552 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14406784ns 252560 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14406955ns 252563 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14407239ns 252568 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14407523ns 252573 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14407807ns 252578 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14408262ns 252586 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14408432ns 252589 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14408716ns 252594 1a110850 fd5ff06f jal x0, -44 +14409000ns 252599 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14409285ns 252604 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14409682ns 252611 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14409853ns 252614 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14410308ns 252622 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14410478ns 252625 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14410762ns 252630 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14411046ns 252635 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14411331ns 252640 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14411785ns 252648 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14411956ns 252651 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14412240ns 252656 1a110850 fd5ff06f jal x0, -44 +14412524ns 252661 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14412808ns 252666 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14413206ns 252673 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14413377ns 252676 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14413831ns 252684 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14414002ns 252687 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14414286ns 252692 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14414570ns 252697 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14414854ns 252702 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14415309ns 252710 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14415479ns 252713 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14415763ns 252718 1a110850 fd5ff06f jal x0, -44 +14416048ns 252723 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14416332ns 252728 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14416730ns 252735 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14416900ns 252738 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14417355ns 252746 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14417525ns 252749 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14417809ns 252754 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14418094ns 252759 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14418378ns 252764 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14418832ns 252772 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14419003ns 252775 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14419287ns 252780 1a110850 fd5ff06f jal x0, -44 +14419571ns 252785 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14419855ns 252790 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14420253ns 252797 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14420424ns 252800 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14420878ns 252808 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14421049ns 252811 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14421333ns 252816 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14421617ns 252821 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14421901ns 252826 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14422356ns 252834 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14422527ns 252837 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14422811ns 252842 1a110850 fd5ff06f jal x0, -44 +14423095ns 252847 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14423379ns 252852 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14423777ns 252859 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14423947ns 252862 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14424402ns 252870 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14424572ns 252873 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14424857ns 252878 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14425141ns 252883 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14425425ns 252888 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14425880ns 252896 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14426050ns 252899 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14426334ns 252904 1a110850 fd5ff06f jal x0, -44 +14426618ns 252909 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14426903ns 252914 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14427300ns 252921 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14427471ns 252924 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14427926ns 252932 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14428096ns 252935 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14428380ns 252940 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14428664ns 252945 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14428949ns 252950 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14429403ns 252958 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14429574ns 252961 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14429858ns 252966 1a110850 fd5ff06f jal x0, -44 +14430142ns 252971 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14430426ns 252976 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14430824ns 252983 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14430994ns 252986 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14431449ns 252994 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14431620ns 252997 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14431904ns 253002 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14432188ns 253007 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14432472ns 253012 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14432927ns 253020 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14433097ns 253023 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14433381ns 253028 1a110850 fd5ff06f jal x0, -44 +14433666ns 253033 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14433950ns 253038 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14434348ns 253045 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14434518ns 253048 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14434973ns 253056 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14435143ns 253059 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14435427ns 253064 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14435712ns 253069 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14435996ns 253074 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14436450ns 253082 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14436621ns 253085 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14436905ns 253090 1a110850 fd5ff06f jal x0, -44 +14437189ns 253095 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14437473ns 253100 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14437871ns 253107 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14438042ns 253110 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14438496ns 253118 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14438667ns 253121 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14438951ns 253126 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14439235ns 253131 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14439519ns 253136 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14439974ns 253144 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14440144ns 253147 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14440429ns 253152 1a110850 fd5ff06f jal x0, -44 +14440713ns 253157 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14440997ns 253162 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14441395ns 253169 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14441565ns 253172 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14442020ns 253180 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14442190ns 253183 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14442475ns 253188 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14442759ns 253193 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14443043ns 253198 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14443498ns 253206 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14443668ns 253209 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14443952ns 253214 1a110850 fd5ff06f jal x0, -44 +14444236ns 253219 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14444520ns 253224 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14444918ns 253231 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14445089ns 253234 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14445543ns 253242 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14445714ns 253245 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14445998ns 253250 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14446282ns 253255 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14446566ns 253260 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14447021ns 253268 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14447192ns 253271 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14447476ns 253276 1a110850 fd5ff06f jal x0, -44 +14447760ns 253281 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14448044ns 253286 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14448442ns 253293 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14448612ns 253296 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14449067ns 253304 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14449238ns 253307 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14449522ns 253312 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14449806ns 253317 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14450090ns 253322 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14450545ns 253330 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14450715ns 253333 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14450999ns 253338 1a110850 fd5ff06f jal x0, -44 +14451283ns 253343 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14451568ns 253348 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14451965ns 253355 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14452136ns 253358 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14452591ns 253366 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14452761ns 253369 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14453045ns 253374 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14453329ns 253379 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14453614ns 253384 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14454068ns 253392 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14454239ns 253395 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14454523ns 253400 1a110850 fd5ff06f jal x0, -44 +14454807ns 253405 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14455091ns 253410 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14455489ns 253417 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14455660ns 253420 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14456114ns 253428 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14456285ns 253431 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14456569ns 253436 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14456853ns 253441 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14457137ns 253446 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14457592ns 253454 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14457762ns 253457 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14458047ns 253462 1a110850 fd5ff06f jal x0, -44 +14458331ns 253467 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14458615ns 253472 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14459013ns 253479 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14459183ns 253482 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14459638ns 253490 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14459808ns 253493 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14460092ns 253498 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14460377ns 253503 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14460661ns 253508 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14461115ns 253516 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14461286ns 253519 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14461570ns 253524 1a110850 fd5ff06f jal x0, -44 +14461854ns 253529 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14462138ns 253534 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14462536ns 253541 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14462707ns 253544 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14463161ns 253552 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14463332ns 253555 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14463616ns 253560 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14463900ns 253565 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14464184ns 253570 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14464639ns 253578 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14464810ns 253581 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14465094ns 253586 1a110850 fd5ff06f jal x0, -44 +14465378ns 253591 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14465662ns 253596 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14466060ns 253603 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14466230ns 253606 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14466685ns 253614 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14466855ns 253617 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14467140ns 253622 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14467424ns 253627 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14467708ns 253632 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14468163ns 253640 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14468333ns 253643 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14468617ns 253648 1a110850 fd5ff06f jal x0, -44 +14468901ns 253653 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14469186ns 253658 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14469583ns 253665 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14469754ns 253668 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14470209ns 253676 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14470379ns 253679 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14470663ns 253684 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14470947ns 253689 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14471232ns 253694 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14471686ns 253702 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14471857ns 253705 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14472141ns 253710 1a110850 fd5ff06f jal x0, -44 +14472425ns 253715 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14472709ns 253720 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14473107ns 253727 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14473277ns 253730 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14473732ns 253738 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14473903ns 253741 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14474187ns 253746 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14474471ns 253751 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14474755ns 253756 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14475210ns 253764 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14475380ns 253767 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14475664ns 253772 1a110850 fd5ff06f jal x0, -44 +14475949ns 253777 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14476233ns 253782 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14476631ns 253789 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14476801ns 253792 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14477256ns 253800 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14477426ns 253803 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14477710ns 253808 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14477995ns 253813 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14478279ns 253818 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14478733ns 253826 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14478904ns 253829 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14479188ns 253834 1a110850 fd5ff06f jal x0, -44 +14479472ns 253839 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14479756ns 253844 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14480154ns 253851 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14480325ns 253854 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14480779ns 253862 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14480950ns 253865 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14481234ns 253870 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14481518ns 253875 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14481802ns 253880 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14482257ns 253888 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14482427ns 253891 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14482712ns 253896 1a110850 fd5ff06f jal x0, -44 +14482996ns 253901 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14483280ns 253906 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14483678ns 253913 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14483848ns 253916 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14484303ns 253924 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14484473ns 253927 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14484758ns 253932 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14485042ns 253937 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14485326ns 253942 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14485781ns 253950 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14485951ns 253953 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14486235ns 253958 1a110850 fd5ff06f jal x0, -44 +14486519ns 253963 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14486803ns 253968 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14487201ns 253975 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14487372ns 253978 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14487826ns 253986 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14487997ns 253989 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14488281ns 253994 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14488565ns 253999 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14488849ns 254004 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14489304ns 254012 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14489475ns 254015 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14489759ns 254020 1a110850 fd5ff06f jal x0, -44 +14490043ns 254025 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14490327ns 254030 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14490725ns 254037 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14490895ns 254040 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14491350ns 254048 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14491521ns 254051 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14491805ns 254056 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14492089ns 254061 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14492373ns 254066 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14492828ns 254074 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14492998ns 254077 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14493282ns 254082 1a110850 fd5ff06f jal x0, -44 +14493567ns 254087 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14493851ns 254092 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14494248ns 254099 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14494419ns 254102 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14494874ns 254110 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14495044ns 254113 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14495328ns 254118 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14495612ns 254123 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14495897ns 254128 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14496351ns 254136 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14496522ns 254139 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14496806ns 254144 1a110850 fd5ff06f jal x0, -44 +14497090ns 254149 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14497374ns 254154 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14497772ns 254161 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14497943ns 254164 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14498397ns 254172 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14498568ns 254175 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14498852ns 254180 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14499136ns 254185 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14499420ns 254190 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14499875ns 254198 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14500045ns 254201 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14500330ns 254206 1a110850 fd5ff06f jal x0, -44 +14500614ns 254211 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14500898ns 254216 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14501296ns 254223 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14501466ns 254226 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14501921ns 254234 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14502091ns 254237 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14502375ns 254242 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14502660ns 254247 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14502944ns 254252 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14503398ns 254260 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14503569ns 254263 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14503853ns 254268 1a110850 fd5ff06f jal x0, -44 +14504137ns 254273 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14504421ns 254278 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14504819ns 254285 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14504990ns 254288 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14505444ns 254296 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14505615ns 254299 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14505899ns 254304 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14506183ns 254309 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14506467ns 254314 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14506922ns 254322 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14507093ns 254325 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14507377ns 254330 1a110850 fd5ff06f jal x0, -44 +14507661ns 254335 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14507945ns 254340 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14508343ns 254347 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14508513ns 254350 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14508968ns 254358 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14509138ns 254361 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14509423ns 254366 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14509707ns 254371 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14509991ns 254376 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14510446ns 254384 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14510616ns 254387 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14510900ns 254392 1a110850 fd5ff06f jal x0, -44 +14511184ns 254397 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14511469ns 254402 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14511866ns 254409 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14512037ns 254412 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14512492ns 254420 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14512662ns 254423 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14512946ns 254428 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14513230ns 254433 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14513515ns 254438 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14513969ns 254446 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14514140ns 254449 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14514424ns 254454 1a110850 fd5ff06f jal x0, -44 +14514708ns 254459 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14514992ns 254464 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14515390ns 254471 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14515560ns 254474 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14516015ns 254482 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14516186ns 254485 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14516470ns 254490 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14516754ns 254495 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14517038ns 254500 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14517493ns 254508 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14517663ns 254511 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14517947ns 254516 1a110850 fd5ff06f jal x0, -44 +14518232ns 254521 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14518516ns 254526 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14518914ns 254533 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14519084ns 254536 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14519539ns 254544 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14519709ns 254547 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14519993ns 254552 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14520278ns 254557 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14520562ns 254562 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14521016ns 254570 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14521187ns 254573 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14521471ns 254578 1a110850 fd5ff06f jal x0, -44 +14521755ns 254583 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14522039ns 254588 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14522437ns 254595 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14522608ns 254598 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14523062ns 254606 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14523233ns 254609 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14523517ns 254614 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14523801ns 254619 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14524085ns 254624 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14524540ns 254632 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14524710ns 254635 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14524995ns 254640 1a110850 fd5ff06f jal x0, -44 +14525279ns 254645 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14525563ns 254650 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14525961ns 254657 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14526131ns 254660 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14526586ns 254668 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14526756ns 254671 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14527041ns 254676 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14527325ns 254681 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14527609ns 254686 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14528064ns 254694 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14528234ns 254697 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14528518ns 254702 1a110850 fd5ff06f jal x0, -44 +14528802ns 254707 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14529087ns 254712 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14529484ns 254719 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14529655ns 254722 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14530109ns 254730 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14530280ns 254733 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14530564ns 254738 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14530848ns 254743 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14531132ns 254748 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14531587ns 254756 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14531758ns 254759 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14532042ns 254764 1a110850 fd5ff06f jal x0, -44 +14532326ns 254769 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14532610ns 254774 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14533008ns 254781 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14533178ns 254784 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14533633ns 254792 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14533804ns 254795 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14534088ns 254800 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14534372ns 254805 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14534656ns 254810 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14535111ns 254818 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14535281ns 254821 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14535565ns 254826 1a110850 fd5ff06f jal x0, -44 +14535850ns 254831 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14536134ns 254836 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14536531ns 254843 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14536702ns 254846 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14537157ns 254854 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14537327ns 254857 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14537611ns 254862 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14537895ns 254867 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14538180ns 254872 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14538634ns 254880 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14538805ns 254883 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14539089ns 254888 1a110850 fd5ff06f jal x0, -44 +14539373ns 254893 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14539657ns 254898 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14540055ns 254905 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14540226ns 254908 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14540680ns 254916 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14540851ns 254919 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14541135ns 254924 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14541419ns 254929 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14541703ns 254934 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14542158ns 254942 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14542328ns 254945 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14542613ns 254950 1a110850 fd5ff06f jal x0, -44 +14542897ns 254955 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14543181ns 254960 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14543579ns 254967 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14543749ns 254970 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14544204ns 254978 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14544374ns 254981 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14544658ns 254986 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14544943ns 254991 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14545227ns 254996 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14545681ns 255004 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14545852ns 255007 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14546136ns 255012 1a110850 fd5ff06f jal x0, -44 +14546420ns 255017 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14546704ns 255022 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14547102ns 255029 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14547273ns 255032 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14547727ns 255040 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14547898ns 255043 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14548182ns 255048 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14548466ns 255053 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14548750ns 255058 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14549205ns 255066 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14549376ns 255069 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14549660ns 255074 1a110850 fd5ff06f jal x0, -44 +14549944ns 255079 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14550228ns 255084 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14550626ns 255091 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14550796ns 255094 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14551251ns 255102 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14551421ns 255105 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14551706ns 255110 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14551990ns 255115 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14552274ns 255120 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14552729ns 255128 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14552899ns 255131 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14553183ns 255136 1a110850 fd5ff06f jal x0, -44 +14553467ns 255141 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14553752ns 255146 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14554149ns 255153 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14554320ns 255156 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14554775ns 255164 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14554945ns 255167 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14555229ns 255172 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14555513ns 255177 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14555798ns 255182 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14556252ns 255190 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14556423ns 255193 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14556707ns 255198 1a110850 fd5ff06f jal x0, -44 +14556991ns 255203 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14557275ns 255208 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14557673ns 255215 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14557843ns 255218 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14558298ns 255226 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14558469ns 255229 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14558753ns 255234 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14559037ns 255239 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14559321ns 255244 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14559776ns 255252 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14559946ns 255255 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14560230ns 255260 1a110850 fd5ff06f jal x0, -44 +14560515ns 255265 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14560799ns 255270 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14561197ns 255277 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14561367ns 255280 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14561822ns 255288 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14561992ns 255291 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14562276ns 255296 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14562561ns 255301 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14562845ns 255306 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14563299ns 255314 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14563470ns 255317 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14563754ns 255322 1a110850 fd5ff06f jal x0, -44 +14564038ns 255327 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14564322ns 255332 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14564720ns 255339 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14564891ns 255342 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14565345ns 255350 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14565516ns 255353 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14565800ns 255358 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14566084ns 255363 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14566368ns 255368 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14566823ns 255376 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14566993ns 255379 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14567278ns 255384 1a110850 fd5ff06f jal x0, -44 +14567562ns 255389 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14567846ns 255394 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14568244ns 255401 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14568414ns 255404 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14568869ns 255412 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14569039ns 255415 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14569324ns 255420 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14569608ns 255425 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14569892ns 255430 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14570347ns 255438 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14570517ns 255441 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14570801ns 255446 1a110850 fd5ff06f jal x0, -44 +14571085ns 255451 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14571370ns 255456 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14571767ns 255463 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14571938ns 255466 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14572392ns 255474 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14572563ns 255477 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14572847ns 255482 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14573131ns 255487 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14573415ns 255492 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14573870ns 255500 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14574041ns 255503 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14574325ns 255508 1a110850 fd5ff06f jal x0, -44 +14574609ns 255513 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14574893ns 255518 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14575291ns 255525 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14575461ns 255528 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14575916ns 255536 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14576087ns 255539 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14576371ns 255544 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14576655ns 255549 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14576939ns 255554 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14577394ns 255562 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14577564ns 255565 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14577848ns 255570 1a110850 fd5ff06f jal x0, -44 +14578133ns 255575 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14578417ns 255580 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14578815ns 255587 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14578985ns 255590 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14579440ns 255598 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14579610ns 255601 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14579894ns 255606 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14580178ns 255611 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14580463ns 255616 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14580917ns 255624 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14581088ns 255627 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14581372ns 255632 1a110850 fd5ff06f jal x0, -44 +14581656ns 255637 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14581940ns 255642 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14582338ns 255649 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14582509ns 255652 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14582963ns 255660 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14583134ns 255663 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14583418ns 255668 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14583702ns 255673 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14583986ns 255678 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14584441ns 255686 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14584611ns 255689 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14584896ns 255694 1a110850 fd5ff06f jal x0, -44 +14585180ns 255699 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14585464ns 255704 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14585862ns 255711 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14586032ns 255714 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14586487ns 255722 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14586657ns 255725 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14586941ns 255730 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14587226ns 255735 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14587510ns 255740 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14587964ns 255748 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14588135ns 255751 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14588419ns 255756 1a110850 fd5ff06f jal x0, -44 +14588703ns 255761 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14588987ns 255766 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14589385ns 255773 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14589556ns 255776 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14590010ns 255784 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14590181ns 255787 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14590465ns 255792 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14590749ns 255797 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14591033ns 255802 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14591488ns 255810 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14591659ns 255813 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14591943ns 255818 1a110850 fd5ff06f jal x0, -44 +14592227ns 255823 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14592511ns 255828 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14592909ns 255835 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14593079ns 255838 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14593534ns 255846 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14593704ns 255849 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14593989ns 255854 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14594273ns 255859 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14594557ns 255864 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14595012ns 255872 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14595182ns 255875 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14595466ns 255880 1a110850 fd5ff06f jal x0, -44 +14595750ns 255885 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14596035ns 255890 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14596432ns 255897 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14596603ns 255900 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14597058ns 255908 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14597228ns 255911 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14597512ns 255916 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14597796ns 255921 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14598081ns 255926 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14598535ns 255934 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14598706ns 255937 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14598990ns 255942 1a110850 fd5ff06f jal x0, -44 +14599274ns 255947 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14599558ns 255952 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14599956ns 255959 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14600127ns 255962 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14600581ns 255970 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14600752ns 255973 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14601036ns 255978 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14601320ns 255983 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14601604ns 255988 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14602059ns 255996 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14602229ns 255999 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14602513ns 256004 1a110850 fd5ff06f jal x0, -44 +14602798ns 256009 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14603082ns 256014 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14603480ns 256021 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14603650ns 256024 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14604105ns 256032 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14604275ns 256035 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14604559ns 256040 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14604844ns 256045 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14605128ns 256050 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14605582ns 256058 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14605753ns 256061 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14606037ns 256066 1a110850 fd5ff06f jal x0, -44 +14606321ns 256071 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14606605ns 256076 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14607003ns 256083 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14607174ns 256086 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14607628ns 256094 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14607799ns 256097 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14608083ns 256102 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14608367ns 256107 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14608651ns 256112 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14609106ns 256120 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14609276ns 256123 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14609561ns 256128 1a110850 fd5ff06f jal x0, -44 +14609845ns 256133 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14610129ns 256138 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14610527ns 256145 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14610697ns 256148 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14611152ns 256156 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14611322ns 256159 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14611607ns 256164 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14611891ns 256169 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14612175ns 256174 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14612630ns 256182 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14612800ns 256185 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14613084ns 256190 1a110850 fd5ff06f jal x0, -44 +14613368ns 256195 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14613653ns 256200 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14614050ns 256207 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14614221ns 256210 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14614675ns 256218 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14614846ns 256221 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14615130ns 256226 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14615414ns 256231 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14615698ns 256236 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14616153ns 256244 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14616324ns 256247 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14616608ns 256252 1a110850 fd5ff06f jal x0, -44 +14616892ns 256257 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14617176ns 256262 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14617574ns 256269 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14617744ns 256272 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14618199ns 256280 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14618370ns 256283 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14618654ns 256288 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14618938ns 256293 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14619222ns 256298 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14619677ns 256306 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14619847ns 256309 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14620131ns 256314 1a110850 fd5ff06f jal x0, -44 +14620416ns 256319 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14620700ns 256324 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14621098ns 256331 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14621268ns 256334 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14621723ns 256342 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14621893ns 256345 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14622177ns 256350 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14622461ns 256355 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14622746ns 256360 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14623200ns 256368 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14623371ns 256371 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14623655ns 256376 1a110850 fd5ff06f jal x0, -44 +14623939ns 256381 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14624223ns 256386 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14624621ns 256393 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14624792ns 256396 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14625246ns 256404 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14625417ns 256407 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14625701ns 256412 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14625985ns 256417 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14626269ns 256422 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14626724ns 256430 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14626894ns 256433 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14627179ns 256438 1a110850 fd5ff06f jal x0, -44 +14627463ns 256443 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14627747ns 256448 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14628145ns 256455 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14628315ns 256458 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14628770ns 256466 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14628940ns 256469 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14629224ns 256474 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14629509ns 256479 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14629793ns 256484 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14630247ns 256492 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14630418ns 256495 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14630702ns 256500 1a110850 fd5ff06f jal x0, -44 +14630986ns 256505 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14631270ns 256510 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14631668ns 256517 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14631839ns 256520 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14632293ns 256528 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14632464ns 256531 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14632748ns 256536 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14633032ns 256541 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14633316ns 256546 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14633771ns 256554 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14633942ns 256557 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14634226ns 256562 1a110850 fd5ff06f jal x0, -44 +14634510ns 256567 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14634794ns 256572 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14635192ns 256579 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14635362ns 256582 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14635817ns 256590 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14635987ns 256593 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14636272ns 256598 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14636556ns 256603 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14636840ns 256608 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14637295ns 256616 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14637465ns 256619 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14637749ns 256624 1a110850 fd5ff06f jal x0, -44 +14638033ns 256629 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14638318ns 256634 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14638715ns 256641 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14638886ns 256644 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14639341ns 256652 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14639511ns 256655 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14639795ns 256660 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14640079ns 256665 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14640364ns 256670 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14640818ns 256678 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14640989ns 256681 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14641273ns 256686 1a110850 fd5ff06f jal x0, -44 +14641557ns 256691 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14641841ns 256696 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14642239ns 256703 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14642410ns 256706 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14642864ns 256714 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14643035ns 256717 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14643319ns 256722 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14643603ns 256727 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14643887ns 256732 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14644342ns 256740 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14644512ns 256743 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14644796ns 256748 1a110850 fd5ff06f jal x0, -44 +14645081ns 256753 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14645365ns 256758 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14645763ns 256765 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14645933ns 256768 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14646388ns 256776 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14646558ns 256779 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14646842ns 256784 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14647127ns 256789 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14647411ns 256794 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14647865ns 256802 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14648036ns 256805 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14648320ns 256810 1a110850 fd5ff06f jal x0, -44 +14648604ns 256815 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14648888ns 256820 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14649286ns 256827 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14649457ns 256830 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14649911ns 256838 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14650082ns 256841 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14650366ns 256846 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14650650ns 256851 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14650934ns 256856 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14651389ns 256864 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14651559ns 256867 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14651844ns 256872 1a110850 fd5ff06f jal x0, -44 +14652128ns 256877 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14652412ns 256882 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14652810ns 256889 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14652980ns 256892 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14653435ns 256900 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14653605ns 256903 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14653890ns 256908 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14654174ns 256913 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14654458ns 256918 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14654913ns 256926 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14655083ns 256929 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14655367ns 256934 1a110850 fd5ff06f jal x0, -44 +14655651ns 256939 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14655936ns 256944 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14656333ns 256951 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14656504ns 256954 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14656959ns 256962 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14657129ns 256965 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14657413ns 256970 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14657697ns 256975 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14657981ns 256980 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14658436ns 256988 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14658607ns 256991 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14658891ns 256996 1a110850 fd5ff06f jal x0, -44 +14659175ns 257001 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14659459ns 257006 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14659857ns 257013 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14660027ns 257016 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14660482ns 257024 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14660653ns 257027 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14660937ns 257032 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14661221ns 257037 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14661505ns 257042 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14661960ns 257050 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14662130ns 257053 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14662414ns 257058 1a110850 fd5ff06f jal x0, -44 +14662699ns 257063 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14662983ns 257068 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14663381ns 257075 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14663551ns 257078 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14664006ns 257086 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14664176ns 257089 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14664460ns 257094 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14664744ns 257099 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14665029ns 257104 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14665483ns 257112 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14665654ns 257115 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14665938ns 257120 1a110850 fd5ff06f jal x0, -44 +14666222ns 257125 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14666506ns 257130 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14666904ns 257137 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14667075ns 257140 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14667529ns 257148 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14667700ns 257151 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14667984ns 257156 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14668268ns 257161 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14668552ns 257166 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14669007ns 257174 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14669177ns 257177 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14669462ns 257182 1a110850 fd5ff06f jal x0, -44 +14669746ns 257187 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14670030ns 257192 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14670428ns 257199 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14670598ns 257202 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14671053ns 257210 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14671223ns 257213 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14671507ns 257218 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14671792ns 257223 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14672076ns 257228 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14672530ns 257236 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14672701ns 257239 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14672985ns 257244 1a110850 fd5ff06f jal x0, -44 +14673269ns 257249 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14673553ns 257254 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14673951ns 257261 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14674122ns 257264 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14674576ns 257272 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14674747ns 257275 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14675031ns 257280 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14675315ns 257285 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14675599ns 257290 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14676054ns 257298 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14676225ns 257301 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14676509ns 257306 1a110850 fd5ff06f jal x0, -44 +14676793ns 257311 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14677077ns 257316 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14677475ns 257323 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14677645ns 257326 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14678100ns 257334 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14678271ns 257337 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14678555ns 257342 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14678839ns 257347 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14679123ns 257352 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14679578ns 257360 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14679748ns 257363 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14680032ns 257368 1a110850 fd5ff06f jal x0, -44 +14680316ns 257373 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14680601ns 257378 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14680998ns 257385 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14681169ns 257388 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14681624ns 257396 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14681794ns 257399 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14682078ns 257404 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14682362ns 257409 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14682647ns 257414 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14683101ns 257422 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14683272ns 257425 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14683556ns 257430 1a110850 fd5ff06f jal x0, -44 +14683840ns 257435 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14684124ns 257440 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14684522ns 257447 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14684693ns 257450 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14685147ns 257458 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14685318ns 257461 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14685602ns 257466 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14685886ns 257471 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14686170ns 257476 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14686625ns 257484 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14686795ns 257487 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14687079ns 257492 1a110850 fd5ff06f jal x0, -44 +14687364ns 257497 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14687648ns 257502 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14688046ns 257509 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14688216ns 257512 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14688671ns 257520 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14688841ns 257523 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14689125ns 257528 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14689410ns 257533 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14689694ns 257538 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14690148ns 257546 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14690319ns 257549 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14690603ns 257554 1a110850 fd5ff06f jal x0, -44 +14690887ns 257559 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14691171ns 257564 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14691569ns 257571 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14691740ns 257574 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14692194ns 257582 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14692365ns 257585 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14692649ns 257590 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14692933ns 257595 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14693217ns 257600 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14693672ns 257608 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14693842ns 257611 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14694127ns 257616 1a110850 fd5ff06f jal x0, -44 +14694411ns 257621 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14694695ns 257626 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14695093ns 257633 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14695263ns 257636 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14695718ns 257644 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14695888ns 257647 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14696173ns 257652 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14696457ns 257657 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14696741ns 257662 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14697196ns 257670 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14697366ns 257673 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14697650ns 257678 1a110850 fd5ff06f jal x0, -44 +14697934ns 257683 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14698219ns 257688 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14698616ns 257695 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14698787ns 257698 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14699242ns 257706 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14699412ns 257709 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14699696ns 257714 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14699980ns 257719 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14700264ns 257724 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14700719ns 257732 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14700890ns 257735 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14701174ns 257740 1a110850 fd5ff06f jal x0, -44 +14701458ns 257745 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14701742ns 257750 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14702140ns 257757 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14702310ns 257760 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14702765ns 257768 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14702936ns 257771 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14703220ns 257776 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14703504ns 257781 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14703788ns 257786 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14704243ns 257794 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14704413ns 257797 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14704697ns 257802 1a110850 fd5ff06f jal x0, -44 +14704982ns 257807 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14705266ns 257812 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14705664ns 257819 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14705834ns 257822 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14706289ns 257830 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14706459ns 257833 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14706743ns 257838 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14707027ns 257843 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14707312ns 257848 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14707766ns 257856 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14707937ns 257859 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14708221ns 257864 1a110850 fd5ff06f jal x0, -44 +14708505ns 257869 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14708789ns 257874 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14709187ns 257881 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14709358ns 257884 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14709812ns 257892 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14709983ns 257895 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14710267ns 257900 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14710551ns 257905 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14710835ns 257910 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14711290ns 257918 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14711460ns 257921 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14711745ns 257926 1a110850 fd5ff06f jal x0, -44 +14712029ns 257931 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14712313ns 257936 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14712711ns 257943 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14712881ns 257946 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14713336ns 257954 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14713506ns 257957 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14713791ns 257962 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14714075ns 257967 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14714359ns 257972 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14714813ns 257980 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14714984ns 257983 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14715268ns 257988 1a110850 fd5ff06f jal x0, -44 +14715552ns 257993 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14715836ns 257998 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14716234ns 258005 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14716405ns 258008 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14716859ns 258016 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14717030ns 258019 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14717314ns 258024 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14717598ns 258029 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14717882ns 258034 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14718337ns 258042 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14718508ns 258045 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14718792ns 258050 1a110850 fd5ff06f jal x0, -44 +14719076ns 258055 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14719360ns 258060 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14719758ns 258067 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14719928ns 258070 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14720383ns 258078 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14720554ns 258081 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14720838ns 258086 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14721122ns 258091 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14721406ns 258096 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14721861ns 258104 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14722031ns 258107 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14722315ns 258112 1a110850 fd5ff06f jal x0, -44 +14722599ns 258117 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14722884ns 258122 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14723281ns 258129 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14723452ns 258132 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14723907ns 258140 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14724077ns 258143 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14724361ns 258148 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14724645ns 258153 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14724930ns 258158 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14725384ns 258166 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14725555ns 258169 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14725839ns 258174 1a110850 fd5ff06f jal x0, -44 +14726123ns 258179 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14726407ns 258184 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14726805ns 258191 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14726976ns 258194 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14727430ns 258202 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14727601ns 258205 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14727885ns 258210 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14728169ns 258215 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14728453ns 258220 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14728908ns 258228 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14729078ns 258231 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14729362ns 258236 1a110850 fd5ff06f jal x0, -44 +14729647ns 258241 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14729931ns 258246 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14730329ns 258253 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14730499ns 258256 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14730954ns 258264 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14731124ns 258267 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14731408ns 258272 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14731693ns 258277 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14731977ns 258282 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14732431ns 258290 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14732602ns 258293 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14732886ns 258298 1a110850 fd5ff06f jal x0, -44 +14733170ns 258303 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14733454ns 258308 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14733852ns 258315 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14734023ns 258318 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14734477ns 258326 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14734648ns 258329 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14734932ns 258334 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14735216ns 258339 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14735500ns 258344 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14735955ns 258352 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14736125ns 258355 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14736410ns 258360 1a110850 fd5ff06f jal x0, -44 +14736694ns 258365 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14736978ns 258370 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14737376ns 258377 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14737546ns 258380 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14738001ns 258388 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14738171ns 258391 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14738456ns 258396 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14738740ns 258401 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14739024ns 258406 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14739479ns 258414 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14739649ns 258417 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14739933ns 258422 1a110850 fd5ff06f jal x0, -44 +14740217ns 258427 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14740502ns 258432 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14740899ns 258439 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14741070ns 258442 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14741525ns 258450 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14741695ns 258453 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14741979ns 258458 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14742263ns 258463 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14742547ns 258468 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14743002ns 258476 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14743173ns 258479 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14743457ns 258484 1a110850 fd5ff06f jal x0, -44 +14743741ns 258489 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14744025ns 258494 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14744423ns 258501 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14744593ns 258504 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14745048ns 258512 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14745219ns 258515 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14745503ns 258520 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14745787ns 258525 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14746071ns 258530 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14746526ns 258538 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14746696ns 258541 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14746980ns 258546 1a110850 fd5ff06f jal x0, -44 +14747265ns 258551 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14747549ns 258556 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14747947ns 258563 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14748117ns 258566 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14748572ns 258574 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14748742ns 258577 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14749026ns 258582 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14749311ns 258587 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14749595ns 258592 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14750049ns 258600 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14750220ns 258603 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14750504ns 258608 1a110850 fd5ff06f jal x0, -44 +14750788ns 258613 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14751072ns 258618 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14751470ns 258625 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14751641ns 258628 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14752095ns 258636 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14752266ns 258639 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14752550ns 258644 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14752834ns 258649 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14753118ns 258654 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14753573ns 258662 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14753743ns 258665 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14754028ns 258670 1a110850 fd5ff06f jal x0, -44 +14754312ns 258675 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14754596ns 258680 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14754994ns 258687 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14755164ns 258690 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14755619ns 258698 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14755789ns 258701 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14756074ns 258706 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14756358ns 258711 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14756642ns 258716 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14757096ns 258724 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14757267ns 258727 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14757551ns 258732 1a110850 fd5ff06f jal x0, -44 +14757835ns 258737 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14758119ns 258742 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14758517ns 258749 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14758688ns 258752 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14759142ns 258760 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14759313ns 258763 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14759597ns 258768 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14759881ns 258773 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14760165ns 258778 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14760620ns 258786 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14760791ns 258789 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14761075ns 258794 1a110850 fd5ff06f jal x0, -44 +14761359ns 258799 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14761643ns 258804 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14762041ns 258811 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14762211ns 258814 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14762666ns 258822 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14762837ns 258825 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14763121ns 258830 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14763405ns 258835 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14763689ns 258840 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14764144ns 258848 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14764314ns 258851 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14764598ns 258856 1a110850 fd5ff06f jal x0, -44 +14764882ns 258861 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14765167ns 258866 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14765564ns 258873 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14765735ns 258876 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14766190ns 258884 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14766360ns 258887 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14766644ns 258892 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14766928ns 258897 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14767213ns 258902 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14767667ns 258910 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14767838ns 258913 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14768122ns 258918 1a110850 fd5ff06f jal x0, -44 +14768406ns 258923 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14768690ns 258928 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14769088ns 258935 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14769259ns 258938 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14769713ns 258946 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14769884ns 258949 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14770168ns 258954 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14770452ns 258959 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14770736ns 258964 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14771191ns 258972 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14771361ns 258975 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14771645ns 258980 1a110850 fd5ff06f jal x0, -44 +14771930ns 258985 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14772214ns 258990 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14772612ns 258997 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14772782ns 259000 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14773237ns 259008 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14773407ns 259011 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14773691ns 259016 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14773976ns 259021 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14774260ns 259026 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14774714ns 259034 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14774885ns 259037 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14775169ns 259042 1a110850 fd5ff06f jal x0, -44 +14775453ns 259047 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14775737ns 259052 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14776135ns 259059 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14776306ns 259062 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14776760ns 259070 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14776931ns 259073 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14777215ns 259078 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14777499ns 259083 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14777783ns 259088 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14778238ns 259096 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14778408ns 259099 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14778693ns 259104 1a110850 fd5ff06f jal x0, -44 +14778977ns 259109 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14779261ns 259114 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14779659ns 259121 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14779829ns 259124 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14780284ns 259132 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14780454ns 259135 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14780739ns 259140 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14781023ns 259145 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14781307ns 259150 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14781762ns 259158 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14781932ns 259161 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14782216ns 259166 1a110850 fd5ff06f jal x0, -44 +14782500ns 259171 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14782785ns 259176 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14783182ns 259183 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14783353ns 259186 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14783808ns 259194 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14783978ns 259197 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14784262ns 259202 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14784546ns 259207 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14784831ns 259212 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14785285ns 259220 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14785456ns 259223 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14785740ns 259228 1a110850 fd5ff06f jal x0, -44 +14786024ns 259233 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14786308ns 259238 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14786706ns 259245 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14786876ns 259248 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14787331ns 259256 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14787502ns 259259 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14787786ns 259264 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14788070ns 259269 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14788354ns 259274 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14788809ns 259282 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14788979ns 259285 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14789263ns 259290 1a110850 fd5ff06f jal x0, -44 +14789548ns 259295 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14789832ns 259300 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14790230ns 259307 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14790400ns 259310 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14790855ns 259318 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14791025ns 259321 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14791309ns 259326 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14791594ns 259331 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14791878ns 259336 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14792332ns 259344 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14792503ns 259347 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14792787ns 259352 1a110850 fd5ff06f jal x0, -44 +14793071ns 259357 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14793355ns 259362 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14793753ns 259369 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14793924ns 259372 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14794378ns 259380 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14794549ns 259383 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14794833ns 259388 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14795117ns 259393 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14795401ns 259398 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14795856ns 259406 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14796026ns 259409 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14796311ns 259414 1a110850 fd5ff06f jal x0, -44 +14796595ns 259419 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14796879ns 259424 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14797277ns 259431 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14797447ns 259434 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14797902ns 259442 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14798072ns 259445 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14798357ns 259450 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14798641ns 259455 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14798925ns 259460 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14799379ns 259468 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14799550ns 259471 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14799834ns 259476 1a110850 fd5ff06f jal x0, -44 +14800118ns 259481 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14800402ns 259486 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14800800ns 259493 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14800971ns 259496 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14801425ns 259504 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14801596ns 259507 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14801880ns 259512 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14802164ns 259517 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14802448ns 259522 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14802903ns 259530 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14803074ns 259533 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14803358ns 259538 1a110850 fd5ff06f jal x0, -44 +14803642ns 259543 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14803926ns 259548 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14804324ns 259555 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14804494ns 259558 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14804949ns 259566 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14805120ns 259569 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14805404ns 259574 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14805688ns 259579 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14805972ns 259584 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14806427ns 259592 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14806597ns 259595 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14806881ns 259600 1a110850 fd5ff06f jal x0, -44 +14807165ns 259605 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14807450ns 259610 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14807847ns 259617 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14808018ns 259620 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14808473ns 259628 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14808643ns 259631 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14808927ns 259636 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14809211ns 259641 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14809496ns 259646 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14809950ns 259654 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14810121ns 259657 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14810405ns 259662 1a110850 fd5ff06f jal x0, -44 +14810689ns 259667 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14810973ns 259672 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14811371ns 259679 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14811542ns 259682 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14811996ns 259690 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14812167ns 259693 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14812451ns 259698 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14812735ns 259703 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14813019ns 259708 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14813474ns 259716 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14813644ns 259719 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14813928ns 259724 1a110850 fd5ff06f jal x0, -44 +14814213ns 259729 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14814497ns 259734 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14814895ns 259741 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14815065ns 259744 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14815520ns 259752 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14815690ns 259755 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14815974ns 259760 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14816259ns 259765 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14816543ns 259770 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14816997ns 259778 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14817168ns 259781 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14817452ns 259786 1a110850 fd5ff06f jal x0, -44 +14817736ns 259791 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14818020ns 259796 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14818418ns 259803 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14818589ns 259806 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14819043ns 259814 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14819214ns 259817 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14819498ns 259822 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14819782ns 259827 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14820066ns 259832 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14820521ns 259840 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14820691ns 259843 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14820976ns 259848 1a110850 fd5ff06f jal x0, -44 +14821260ns 259853 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14821544ns 259858 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14821942ns 259865 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14822112ns 259868 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14822567ns 259876 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14822737ns 259879 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14823022ns 259884 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14823306ns 259889 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14823590ns 259894 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14824045ns 259902 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14824215ns 259905 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14824499ns 259910 1a110850 fd5ff06f jal x0, -44 +14824783ns 259915 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14825068ns 259920 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14825465ns 259927 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14825636ns 259930 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14826091ns 259938 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14826261ns 259941 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14826545ns 259946 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14826829ns 259951 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14827114ns 259956 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14827568ns 259964 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14827739ns 259967 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14828023ns 259972 1a110850 fd5ff06f jal x0, -44 +14828307ns 259977 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14828591ns 259982 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14828989ns 259989 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14829159ns 259992 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14829614ns 260000 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14829785ns 260003 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14830069ns 260008 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14830353ns 260013 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14830637ns 260018 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14831092ns 260026 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14831262ns 260029 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14831546ns 260034 1a110850 fd5ff06f jal x0, -44 +14831831ns 260039 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14832115ns 260044 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14832513ns 260051 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14832683ns 260054 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14833138ns 260062 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14833308ns 260065 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14833592ns 260070 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14833877ns 260075 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14834161ns 260080 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14834615ns 260088 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14834786ns 260091 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14835070ns 260096 1a110850 fd5ff06f jal x0, -44 +14835354ns 260101 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14835638ns 260106 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14836036ns 260113 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14836207ns 260116 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14836661ns 260124 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14836832ns 260127 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14837116ns 260132 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14837400ns 260137 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14837684ns 260142 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14838139ns 260150 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14838309ns 260153 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14838594ns 260158 1a110850 fd5ff06f jal x0, -44 +14838878ns 260163 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14839162ns 260168 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14839560ns 260175 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14839730ns 260178 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14840185ns 260186 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14840355ns 260189 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14840640ns 260194 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14840924ns 260199 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14841208ns 260204 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14841663ns 260212 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14841833ns 260215 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14842117ns 260220 1a110850 fd5ff06f jal x0, -44 +14842401ns 260225 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14842685ns 260230 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14843083ns 260237 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14843254ns 260240 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14843708ns 260248 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14843879ns 260251 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14844163ns 260256 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14844447ns 260261 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14844731ns 260266 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14845186ns 260274 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14845357ns 260277 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14845641ns 260282 1a110850 fd5ff06f jal x0, -44 +14845925ns 260287 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14846209ns 260292 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14846607ns 260299 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14846777ns 260302 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14847232ns 260310 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14847403ns 260313 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14847687ns 260318 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14847971ns 260323 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14848255ns 260328 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14848710ns 260336 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14848880ns 260339 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14849164ns 260344 1a110850 fd5ff06f jal x0, -44 +14849448ns 260349 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14849733ns 260354 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14850130ns 260361 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14850301ns 260364 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14850756ns 260372 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14850926ns 260375 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14851210ns 260380 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14851494ns 260385 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14851779ns 260390 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14852233ns 260398 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14852404ns 260401 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14852688ns 260406 1a110850 fd5ff06f jal x0, -44 +14852972ns 260411 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14853256ns 260416 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14853654ns 260423 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14853825ns 260426 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14854279ns 260434 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14854450ns 260437 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14854734ns 260442 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14855018ns 260447 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14855302ns 260452 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14855757ns 260460 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14855927ns 260463 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14856211ns 260468 1a110850 fd5ff06f jal x0, -44 +14856496ns 260473 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14856780ns 260478 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14857178ns 260485 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14857348ns 260488 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14857803ns 260496 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14857973ns 260499 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14858257ns 260504 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14858542ns 260509 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14858826ns 260514 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14859280ns 260522 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14859451ns 260525 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14859735ns 260530 1a110850 fd5ff06f jal x0, -44 +14860019ns 260535 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14860303ns 260540 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14860701ns 260547 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14860872ns 260550 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14861326ns 260558 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14861497ns 260561 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14861781ns 260566 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14862065ns 260571 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14862349ns 260576 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14862804ns 260584 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14862975ns 260587 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14863259ns 260592 1a110850 fd5ff06f jal x0, -44 +14863543ns 260597 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14863827ns 260602 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14864225ns 260609 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14864395ns 260612 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14864850ns 260620 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14865020ns 260623 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14865305ns 260628 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14865589ns 260633 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14865873ns 260638 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14866328ns 260646 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14866498ns 260649 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14866782ns 260654 1a110850 fd5ff06f jal x0, -44 +14867066ns 260659 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14867351ns 260664 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14867748ns 260671 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14867919ns 260674 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14868374ns 260682 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14868544ns 260685 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14868828ns 260690 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14869112ns 260695 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14869397ns 260700 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14869851ns 260708 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14870022ns 260711 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14870306ns 260716 1a110850 fd5ff06f jal x0, -44 +14870590ns 260721 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14870874ns 260726 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14871272ns 260733 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14871442ns 260736 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14871897ns 260744 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14872068ns 260747 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14872352ns 260752 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14872636ns 260757 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14872920ns 260762 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14873375ns 260770 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14873545ns 260773 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14873829ns 260778 1a110850 fd5ff06f jal x0, -44 +14874114ns 260783 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14874398ns 260788 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14874796ns 260795 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14874966ns 260798 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14875421ns 260806 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14875591ns 260809 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14875875ns 260814 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14876160ns 260819 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14876444ns 260824 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14876898ns 260832 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14877069ns 260835 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14877353ns 260840 1a110850 fd5ff06f jal x0, -44 +14877637ns 260845 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14877921ns 260850 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14878319ns 260857 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14878490ns 260860 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14878944ns 260868 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14879115ns 260871 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14879399ns 260876 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14879683ns 260881 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14879967ns 260886 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14880422ns 260894 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14880592ns 260897 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14880877ns 260902 1a110850 fd5ff06f jal x0, -44 +14881161ns 260907 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14881445ns 260912 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14881843ns 260919 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14882013ns 260922 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14882468ns 260930 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14882638ns 260933 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14882923ns 260938 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14883207ns 260943 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14883491ns 260948 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14883946ns 260956 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14884116ns 260959 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14884400ns 260964 1a110850 fd5ff06f jal x0, -44 +14884684ns 260969 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14884968ns 260974 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14885366ns 260981 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14885537ns 260984 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14885991ns 260992 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14886162ns 260995 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14886446ns 261000 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14886730ns 261005 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14887014ns 261010 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14887469ns 261018 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14887640ns 261021 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14887924ns 261026 1a110850 fd5ff06f jal x0, -44 +14888208ns 261031 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14888492ns 261036 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14888890ns 261043 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14889060ns 261046 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14889515ns 261054 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14889686ns 261057 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14889970ns 261062 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14890254ns 261067 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14890538ns 261072 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14890993ns 261080 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14891163ns 261083 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14891447ns 261088 1a110850 fd5ff06f jal x0, -44 +14891731ns 261093 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14892016ns 261098 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14892413ns 261105 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14892584ns 261108 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14893039ns 261116 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14893209ns 261119 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14893493ns 261124 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14893777ns 261129 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14894062ns 261134 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14894516ns 261142 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14894687ns 261145 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14894971ns 261150 1a110850 fd5ff06f jal x0, -44 +14895255ns 261155 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14895539ns 261160 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14895937ns 261167 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14896108ns 261170 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14896562ns 261178 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14896733ns 261181 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14897017ns 261186 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14897301ns 261191 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14897585ns 261196 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14898040ns 261204 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14898210ns 261207 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14898495ns 261212 1a110850 fd5ff06f jal x0, -44 +14898779ns 261217 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14899063ns 261222 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14899461ns 261229 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14899631ns 261232 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14900086ns 261240 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14900256ns 261243 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14900540ns 261248 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14900825ns 261253 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14901109ns 261258 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14901563ns 261266 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14901734ns 261269 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14902018ns 261274 1a110850 fd5ff06f jal x0, -44 +14902302ns 261279 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14902586ns 261284 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14902984ns 261291 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14903155ns 261294 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14903609ns 261302 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14903780ns 261305 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14904064ns 261310 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14904348ns 261315 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14904632ns 261320 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14905087ns 261328 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14905258ns 261331 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14905542ns 261336 1a110850 fd5ff06f jal x0, -44 +14905826ns 261341 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14906110ns 261346 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14906508ns 261353 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14906678ns 261356 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14907133ns 261364 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14907303ns 261367 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14907588ns 261372 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14907872ns 261377 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14908156ns 261382 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14908611ns 261390 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14908781ns 261393 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14909065ns 261398 1a110850 fd5ff06f jal x0, -44 +14909349ns 261403 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14909634ns 261408 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14910031ns 261415 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14910202ns 261418 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14910657ns 261426 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14910827ns 261429 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14911111ns 261434 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14911395ns 261439 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14911680ns 261444 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14912134ns 261452 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14912305ns 261455 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14912589ns 261460 1a110850 fd5ff06f jal x0, -44 +14912873ns 261465 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14913157ns 261470 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14913555ns 261477 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14913725ns 261480 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14914180ns 261488 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14914351ns 261491 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14914635ns 261496 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14914919ns 261501 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14915203ns 261506 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14915658ns 261514 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14915828ns 261517 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14916112ns 261522 1a110850 fd5ff06f jal x0, -44 +14916397ns 261527 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14916681ns 261532 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14917079ns 261539 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14917249ns 261542 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14917704ns 261550 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14917874ns 261553 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14918158ns 261558 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14918443ns 261563 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14918727ns 261568 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14919181ns 261576 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14919352ns 261579 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14919636ns 261584 1a110850 fd5ff06f jal x0, -44 +14919920ns 261589 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14920204ns 261594 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14920602ns 261601 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14920773ns 261604 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14921227ns 261612 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14921398ns 261615 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14921682ns 261620 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14921966ns 261625 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14922250ns 261630 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14922705ns 261638 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14922875ns 261641 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14923160ns 261646 1a110850 fd5ff06f jal x0, -44 +14923444ns 261651 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14923728ns 261656 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14924126ns 261663 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14924296ns 261666 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14924751ns 261674 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14924921ns 261677 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14925206ns 261682 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14925490ns 261687 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14925774ns 261692 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14926229ns 261700 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14926399ns 261703 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14926683ns 261708 1a110850 fd5ff06f jal x0, -44 +14926967ns 261713 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14927251ns 261718 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14927649ns 261725 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14927820ns 261728 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14928274ns 261736 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14928445ns 261739 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14928729ns 261744 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14929013ns 261749 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14929297ns 261754 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14929752ns 261762 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14929923ns 261765 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14930207ns 261770 1a110850 fd5ff06f jal x0, -44 +14930491ns 261775 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14930775ns 261780 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14931173ns 261787 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14931343ns 261790 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14931798ns 261798 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14931969ns 261801 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14932253ns 261806 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14932537ns 261811 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14932821ns 261816 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14933276ns 261824 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14933446ns 261827 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14933730ns 261832 1a110850 fd5ff06f jal x0, -44 +14934015ns 261837 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14934299ns 261842 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14934696ns 261849 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14934867ns 261852 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14935322ns 261860 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14935492ns 261863 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14935776ns 261868 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14936060ns 261873 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14936345ns 261878 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14936799ns 261886 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14936970ns 261889 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14937254ns 261894 1a110850 fd5ff06f jal x0, -44 +14937538ns 261899 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14937822ns 261904 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14938220ns 261911 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14938391ns 261914 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14938845ns 261922 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14939016ns 261925 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14939300ns 261930 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14939584ns 261935 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14939868ns 261940 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14940323ns 261948 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14940493ns 261951 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14940778ns 261956 1a110850 fd5ff06f jal x0, -44 +14941062ns 261961 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14941346ns 261966 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14941744ns 261973 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14941914ns 261976 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14942369ns 261984 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14942539ns 261987 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14942823ns 261992 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14943108ns 261997 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14943392ns 262002 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14943846ns 262010 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14944017ns 262013 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14944301ns 262018 1a110850 fd5ff06f jal x0, -44 +14944585ns 262023 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14944869ns 262028 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14945267ns 262035 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14945438ns 262038 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14945892ns 262046 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14946063ns 262049 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14946347ns 262054 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14946631ns 262059 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14946915ns 262064 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14947370ns 262072 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14947541ns 262075 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14947825ns 262080 1a110850 fd5ff06f jal x0, -44 +14948109ns 262085 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14948393ns 262090 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14948791ns 262097 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14948961ns 262100 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14949416ns 262108 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14949586ns 262111 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14949871ns 262116 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14950155ns 262121 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14950439ns 262126 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14950894ns 262134 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14951064ns 262137 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14951348ns 262142 1a110850 fd5ff06f jal x0, -44 +14951632ns 262147 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14951917ns 262152 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14952314ns 262159 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14952485ns 262162 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14952940ns 262170 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14953110ns 262173 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14953394ns 262178 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14953678ns 262183 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14953963ns 262188 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14954417ns 262196 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14954588ns 262199 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14954872ns 262204 1a110850 fd5ff06f jal x0, -44 +14955156ns 262209 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14955440ns 262214 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14955838ns 262221 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14956008ns 262224 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14956463ns 262232 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14956634ns 262235 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14956918ns 262240 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14957202ns 262245 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14957486ns 262250 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14957941ns 262258 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14958111ns 262261 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14958395ns 262266 1a110850 fd5ff06f jal x0, -44 +14958680ns 262271 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14958964ns 262276 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14959362ns 262283 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14959532ns 262286 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14959987ns 262294 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14960157ns 262297 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14960441ns 262302 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14960726ns 262307 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14961010ns 262312 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14961464ns 262320 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14961635ns 262323 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14961919ns 262328 1a110850 fd5ff06f jal x0, -44 +14962203ns 262333 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14962487ns 262338 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14962885ns 262345 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14963056ns 262348 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14963510ns 262356 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14963681ns 262359 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14963965ns 262364 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14964249ns 262369 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14964533ns 262374 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14964988ns 262382 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14965158ns 262385 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14965443ns 262390 1a110850 fd5ff06f jal x0, -44 +14965727ns 262395 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14966011ns 262400 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14966409ns 262407 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14966579ns 262410 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14967034ns 262418 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14967204ns 262421 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14967489ns 262426 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14967773ns 262431 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14968057ns 262436 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14968512ns 262444 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14968682ns 262447 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14968966ns 262452 1a110850 fd5ff06f jal x0, -44 +14969250ns 262457 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14969535ns 262462 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14969932ns 262469 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14970103ns 262472 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14970557ns 262480 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14970728ns 262483 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14971012ns 262488 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14971296ns 262493 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14971580ns 262498 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14972035ns 262506 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14972206ns 262509 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14972490ns 262514 1a110850 fd5ff06f jal x0, -44 +14972774ns 262519 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14973058ns 262524 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14973456ns 262531 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14973626ns 262534 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14974081ns 262542 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14974252ns 262545 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14974536ns 262550 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14974820ns 262555 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14975104ns 262560 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14975559ns 262568 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14975729ns 262571 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14976013ns 262576 1a110850 fd5ff06f jal x0, -44 +14976298ns 262581 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14976582ns 262586 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14976979ns 262593 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14977150ns 262596 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14977605ns 262604 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14977775ns 262607 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14978059ns 262612 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14978343ns 262617 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14978628ns 262622 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14979082ns 262630 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14979253ns 262633 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14979537ns 262638 1a110850 fd5ff06f jal x0, -44 +14979821ns 262643 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14980105ns 262648 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14980503ns 262655 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14980674ns 262658 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14981128ns 262666 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14981299ns 262669 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14981583ns 262674 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14981867ns 262679 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14982151ns 262684 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14982606ns 262692 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14982776ns 262695 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14983061ns 262700 1a110850 fd5ff06f jal x0, -44 +14983345ns 262705 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14983629ns 262710 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14984027ns 262717 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14984197ns 262720 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14984652ns 262728 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14984822ns 262731 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14985106ns 262736 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14985391ns 262741 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14985675ns 262746 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14986129ns 262754 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14986300ns 262757 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14986584ns 262762 1a110850 fd5ff06f jal x0, -44 +14986868ns 262767 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14987152ns 262772 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14987550ns 262779 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14987721ns 262782 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14988175ns 262790 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14988346ns 262793 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14988630ns 262798 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14988914ns 262803 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14989198ns 262808 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14989653ns 262816 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14989824ns 262819 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14990108ns 262824 1a110850 fd5ff06f jal x0, -44 +14990392ns 262829 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14990676ns 262834 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14991074ns 262841 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14991244ns 262844 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14991699ns 262852 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14991869ns 262855 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14992154ns 262860 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14992438ns 262865 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14992722ns 262870 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14993177ns 262878 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14993347ns 262881 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14993631ns 262886 1a110850 fd5ff06f jal x0, -44 +14993915ns 262891 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14994200ns 262896 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14994597ns 262903 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14994768ns 262906 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14995223ns 262914 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14995393ns 262917 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14995677ns 262922 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14995961ns 262927 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14996246ns 262932 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14996700ns 262940 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +14996871ns 262943 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +14997155ns 262948 1a110850 fd5ff06f jal x0, -44 +14997439ns 262953 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14997723ns 262958 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +14998121ns 262965 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14998291ns 262968 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +14998746ns 262976 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +14998917ns 262979 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +14999201ns 262984 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +14999485ns 262989 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +14999769ns 262994 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15000224ns 263002 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15000394ns 263005 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15000678ns 263010 1a110850 fd5ff06f jal x0, -44 +15000963ns 263015 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15001247ns 263020 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15001645ns 263027 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15001815ns 263030 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15002270ns 263038 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15002440ns 263041 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15002724ns 263046 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15003009ns 263051 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15003293ns 263056 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15003747ns 263064 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15003918ns 263067 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15004202ns 263072 1a110850 fd5ff06f jal x0, -44 +15004486ns 263077 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15004770ns 263082 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15005168ns 263089 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15005339ns 263092 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15005793ns 263100 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15005964ns 263103 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15006248ns 263108 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15006532ns 263113 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15006816ns 263118 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15007271ns 263126 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15007441ns 263129 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15007726ns 263134 1a110850 fd5ff06f jal x0, -44 +15008010ns 263139 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15008294ns 263144 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15008692ns 263151 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15008862ns 263154 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15009317ns 263162 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15009487ns 263165 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15009772ns 263170 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15010056ns 263175 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15010340ns 263180 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15010795ns 263188 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15010965ns 263191 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15011249ns 263196 1a110850 fd5ff06f jal x0, -44 +15011533ns 263201 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15011818ns 263206 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15012215ns 263213 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15012386ns 263216 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15012840ns 263224 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15013011ns 263227 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15013295ns 263232 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15013579ns 263237 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15013863ns 263242 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15014318ns 263250 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15014489ns 263253 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15014773ns 263258 1a110850 fd5ff06f jal x0, -44 +15015057ns 263263 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15015341ns 263268 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15015739ns 263275 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15015909ns 263278 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15016364ns 263286 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15016535ns 263289 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15016819ns 263294 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15017103ns 263299 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15017387ns 263304 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15017842ns 263312 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15018012ns 263315 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15018296ns 263320 1a110850 fd5ff06f jal x0, -44 +15018581ns 263325 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15018865ns 263330 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15019263ns 263337 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15019433ns 263340 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15019888ns 263348 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15020058ns 263351 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15020342ns 263356 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15020626ns 263361 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15020911ns 263366 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15021365ns 263374 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15021536ns 263377 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15021820ns 263382 1a110850 fd5ff06f jal x0, -44 +15022104ns 263387 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15022388ns 263392 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15022786ns 263399 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15022957ns 263402 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15023411ns 263410 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15023582ns 263413 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15023866ns 263418 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15024150ns 263423 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15024434ns 263428 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15024889ns 263436 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15025059ns 263439 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15025344ns 263444 1a110850 fd5ff06f jal x0, -44 +15025628ns 263449 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15025912ns 263454 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15026310ns 263461 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15026480ns 263464 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15026935ns 263472 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15027105ns 263475 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15027389ns 263480 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15027674ns 263485 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15027958ns 263490 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15028412ns 263498 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15028583ns 263501 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15028867ns 263506 1a110850 fd5ff06f jal x0, -44 +15029151ns 263511 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15029435ns 263516 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15029833ns 263523 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15030004ns 263526 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15030458ns 263534 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15030629ns 263537 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15030913ns 263542 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15031197ns 263547 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15031481ns 263552 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15031936ns 263560 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15032107ns 263563 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15032391ns 263568 1a110850 fd5ff06f jal x0, -44 +15032675ns 263573 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15032959ns 263578 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15033357ns 263585 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15033527ns 263588 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15033982ns 263596 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15034152ns 263599 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15034437ns 263604 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15034721ns 263609 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15035005ns 263614 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15035460ns 263622 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15035630ns 263625 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15035914ns 263630 1a110850 fd5ff06f jal x0, -44 +15036198ns 263635 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15036483ns 263640 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15036880ns 263647 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15037051ns 263650 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15037506ns 263658 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15037676ns 263661 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15037960ns 263666 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15038244ns 263671 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15038529ns 263676 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15038983ns 263684 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15039154ns 263687 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15039438ns 263692 1a110850 fd5ff06f jal x0, -44 +15039722ns 263697 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15040006ns 263702 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15040404ns 263709 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15040575ns 263712 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15041029ns 263720 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15041200ns 263723 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15041484ns 263728 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15041768ns 263733 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15042052ns 263738 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15042507ns 263746 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15042677ns 263749 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15042961ns 263754 1a110850 fd5ff06f jal x0, -44 +15043246ns 263759 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15043530ns 263764 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15043928ns 263771 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15044098ns 263774 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15044553ns 263782 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15044723ns 263785 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15045007ns 263790 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15045292ns 263795 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15045576ns 263800 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15046030ns 263808 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15046201ns 263811 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15046485ns 263816 1a110850 fd5ff06f jal x0, -44 +15046769ns 263821 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15047053ns 263826 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15047451ns 263833 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15047622ns 263836 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15048076ns 263844 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15048247ns 263847 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15048531ns 263852 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15048815ns 263857 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15049099ns 263862 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15049554ns 263870 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15049724ns 263873 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15050009ns 263878 1a110850 fd5ff06f jal x0, -44 +15050293ns 263883 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15050577ns 263888 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15050975ns 263895 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15051145ns 263898 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15051600ns 263906 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15051770ns 263909 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15052055ns 263914 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15052339ns 263919 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15052623ns 263924 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15053078ns 263932 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15053248ns 263935 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15053532ns 263940 1a110850 fd5ff06f jal x0, -44 +15053816ns 263945 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15054101ns 263950 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15054498ns 263957 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15054669ns 263960 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15055123ns 263968 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15055294ns 263971 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15055578ns 263976 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15055862ns 263981 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15056146ns 263986 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15056601ns 263994 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15056772ns 263997 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15057056ns 264002 1a110850 fd5ff06f jal x0, -44 +15057340ns 264007 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15057624ns 264012 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15058022ns 264019 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15058192ns 264022 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15058647ns 264030 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15058818ns 264033 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15059102ns 264038 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15059386ns 264043 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15059670ns 264048 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15060125ns 264056 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15060295ns 264059 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15060579ns 264064 1a110850 fd5ff06f jal x0, -44 +15060864ns 264069 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15061148ns 264074 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15061546ns 264081 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15061716ns 264084 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15062171ns 264092 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15062341ns 264095 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15062625ns 264100 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15062909ns 264105 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15063194ns 264110 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15063648ns 264118 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15063819ns 264121 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15064103ns 264126 1a110850 fd5ff06f jal x0, -44 +15064387ns 264131 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15064671ns 264136 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15065069ns 264143 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15065240ns 264146 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15065694ns 264154 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15065865ns 264157 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15066149ns 264162 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15066433ns 264167 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15066717ns 264172 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15067172ns 264180 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15067342ns 264183 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15067627ns 264188 1a110850 fd5ff06f jal x0, -44 +15067911ns 264193 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15068195ns 264198 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15068593ns 264205 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15068763ns 264208 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15069218ns 264216 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15069388ns 264219 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15069672ns 264224 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15069957ns 264229 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15070241ns 264234 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15070695ns 264242 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15070866ns 264245 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15071150ns 264250 1a110850 fd5ff06f jal x0, -44 +15071434ns 264255 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15071718ns 264260 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15072116ns 264267 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15072287ns 264270 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15072741ns 264278 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15072912ns 264281 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15073196ns 264286 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15073480ns 264291 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15073764ns 264296 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15074219ns 264304 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15074390ns 264307 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15074674ns 264312 1a110850 fd5ff06f jal x0, -44 +15074958ns 264317 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15075242ns 264322 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15075640ns 264329 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15075810ns 264332 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15076265ns 264340 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15076435ns 264343 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15076720ns 264348 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15077004ns 264353 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15077288ns 264358 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15077743ns 264366 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15077913ns 264369 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15078197ns 264374 1a110850 fd5ff06f jal x0, -44 +15078481ns 264379 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15078766ns 264384 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15079163ns 264391 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15079334ns 264394 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15079789ns 264402 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15079959ns 264405 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15080243ns 264410 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15080527ns 264415 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15080812ns 264420 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15081266ns 264428 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15081437ns 264431 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15081721ns 264436 1a110850 fd5ff06f jal x0, -44 +15082005ns 264441 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15082289ns 264446 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15082687ns 264453 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15082858ns 264456 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15083312ns 264464 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15083483ns 264467 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15083767ns 264472 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15084051ns 264477 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15084335ns 264482 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15084790ns 264490 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15084960ns 264493 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15085244ns 264498 1a110850 fd5ff06f jal x0, -44 +15085529ns 264503 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15085813ns 264508 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15086211ns 264515 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15086381ns 264518 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15086836ns 264526 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15087006ns 264529 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15087290ns 264534 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15087575ns 264539 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15087859ns 264544 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15088313ns 264552 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15088484ns 264555 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15088768ns 264560 1a110850 fd5ff06f jal x0, -44 +15089052ns 264565 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15089336ns 264570 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15089734ns 264577 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15089905ns 264580 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15090359ns 264588 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15090530ns 264591 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15090814ns 264596 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15091098ns 264601 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15091382ns 264606 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15091837ns 264614 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15092007ns 264617 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15092292ns 264622 1a110850 fd5ff06f jal x0, -44 +15092576ns 264627 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15092860ns 264632 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15093258ns 264639 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15093428ns 264642 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15093883ns 264650 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15094053ns 264653 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15094338ns 264658 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15094622ns 264663 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15094906ns 264668 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15095361ns 264676 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15095531ns 264679 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15095815ns 264684 1a110850 fd5ff06f jal x0, -44 +15096099ns 264689 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15096384ns 264694 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15096781ns 264701 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15096952ns 264704 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15097407ns 264712 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15097577ns 264715 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15097861ns 264720 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15098145ns 264725 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15098429ns 264730 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15098884ns 264738 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15099055ns 264741 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15099339ns 264746 1a110850 fd5ff06f jal x0, -44 +15099623ns 264751 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15099907ns 264756 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15100305ns 264763 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15100475ns 264766 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15100930ns 264774 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15101101ns 264777 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15101385ns 264782 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15101669ns 264787 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15101953ns 264792 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15102408ns 264800 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15102578ns 264803 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15102862ns 264808 1a110850 fd5ff06f jal x0, -44 +15103147ns 264813 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15103431ns 264818 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15103829ns 264825 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15103999ns 264828 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15104454ns 264836 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15104624ns 264839 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15104908ns 264844 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15105192ns 264849 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15105477ns 264854 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15105931ns 264862 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15106102ns 264865 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15106386ns 264870 1a110850 fd5ff06f jal x0, -44 +15106670ns 264875 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15106954ns 264880 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15107352ns 264887 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15107523ns 264890 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15107977ns 264898 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15108148ns 264901 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15108432ns 264906 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15108716ns 264911 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15109000ns 264916 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15109455ns 264924 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15109625ns 264927 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15109910ns 264932 1a110850 fd5ff06f jal x0, -44 +15110194ns 264937 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15110478ns 264942 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15110876ns 264949 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15111046ns 264952 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15111501ns 264960 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15111671ns 264963 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15111955ns 264968 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15112240ns 264973 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15112524ns 264978 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15112978ns 264986 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15113149ns 264989 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15113433ns 264994 1a110850 fd5ff06f jal x0, -44 +15113717ns 264999 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15114001ns 265004 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15114399ns 265011 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15114570ns 265014 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15115024ns 265022 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15115195ns 265025 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15115479ns 265030 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15115763ns 265035 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15116047ns 265040 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15116502ns 265048 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15116673ns 265051 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15116957ns 265056 1a110850 fd5ff06f jal x0, -44 +15117241ns 265061 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15117525ns 265066 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15117923ns 265073 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15118093ns 265076 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15118548ns 265084 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15118719ns 265087 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15119003ns 265092 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15119287ns 265097 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15119571ns 265102 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15120026ns 265110 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15120196ns 265113 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15120480ns 265118 1a110850 fd5ff06f jal x0, -44 +15120764ns 265123 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15121049ns 265128 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15121446ns 265135 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15121617ns 265138 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15122072ns 265146 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15122242ns 265149 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15122526ns 265154 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15122810ns 265159 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15123095ns 265164 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15123549ns 265172 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15123720ns 265175 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15124004ns 265180 1a110850 fd5ff06f jal x0, -44 +15124288ns 265185 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15124572ns 265190 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15124970ns 265197 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15125141ns 265200 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15125595ns 265208 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15125766ns 265211 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15126050ns 265216 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15126334ns 265221 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15126618ns 265226 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15127073ns 265234 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15127243ns 265237 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15127527ns 265242 1a110850 fd5ff06f jal x0, -44 +15127812ns 265247 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15128096ns 265252 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15128494ns 265259 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15128664ns 265262 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15129119ns 265270 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15129289ns 265273 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15129573ns 265278 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15129858ns 265283 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15130142ns 265288 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15130596ns 265296 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15130767ns 265299 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15131051ns 265304 1a110850 fd5ff06f jal x0, -44 +15131335ns 265309 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15131619ns 265314 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15132017ns 265321 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15132188ns 265324 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15132642ns 265332 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15132813ns 265335 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15133097ns 265340 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15133381ns 265345 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15133665ns 265350 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15134120ns 265358 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15134290ns 265361 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15134575ns 265366 1a110850 fd5ff06f jal x0, -44 +15134859ns 265371 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15135143ns 265376 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15135541ns 265383 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15135711ns 265386 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15136166ns 265394 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15136336ns 265397 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15136621ns 265402 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15136905ns 265407 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15137189ns 265412 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15137644ns 265420 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15137814ns 265423 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15138098ns 265428 1a110850 fd5ff06f jal x0, -44 +15138382ns 265433 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15138667ns 265438 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15139064ns 265445 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15139235ns 265448 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15139690ns 265456 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15139860ns 265459 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15140144ns 265464 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15140428ns 265469 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15140712ns 265474 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15141167ns 265482 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15141338ns 265485 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15141622ns 265490 1a110850 fd5ff06f jal x0, -44 +15141906ns 265495 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15142190ns 265500 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15142588ns 265507 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15142758ns 265510 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15143213ns 265518 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15143384ns 265521 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15143668ns 265526 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15143952ns 265531 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15144236ns 265536 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15144691ns 265544 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15144861ns 265547 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15145145ns 265552 1a110850 fd5ff06f jal x0, -44 +15145430ns 265557 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15145714ns 265562 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15146112ns 265569 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15146282ns 265572 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15146737ns 265580 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15146907ns 265583 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15147191ns 265588 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15147475ns 265593 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15147760ns 265598 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15148214ns 265606 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15148385ns 265609 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15148669ns 265614 1a110850 fd5ff06f jal x0, -44 +15148953ns 265619 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15149237ns 265624 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15149635ns 265631 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15149806ns 265634 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15150260ns 265642 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15150431ns 265645 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15150715ns 265650 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15150999ns 265655 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15151283ns 265660 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15151738ns 265668 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15151908ns 265671 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15152193ns 265676 1a110850 fd5ff06f jal x0, -44 +15152477ns 265681 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15152761ns 265686 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15153159ns 265693 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15153329ns 265696 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15153784ns 265704 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15153954ns 265707 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15154239ns 265712 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15154523ns 265717 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15154807ns 265722 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15155261ns 265730 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15155432ns 265733 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15155716ns 265738 1a110850 fd5ff06f jal x0, -44 +15156000ns 265743 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15156284ns 265748 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15156682ns 265755 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15156853ns 265758 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15157307ns 265766 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15157478ns 265769 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15157762ns 265774 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15158046ns 265779 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15158330ns 265784 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15158785ns 265792 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15158956ns 265795 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15159240ns 265800 1a110850 fd5ff06f jal x0, -44 +15159524ns 265805 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15159808ns 265810 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15160206ns 265817 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15160376ns 265820 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15160831ns 265828 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15161002ns 265831 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15161286ns 265836 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15161570ns 265841 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15161854ns 265846 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15162309ns 265854 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15162479ns 265857 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15162763ns 265862 1a110850 fd5ff06f jal x0, -44 +15163047ns 265867 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15163332ns 265872 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15163729ns 265879 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15163900ns 265882 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15164355ns 265890 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15164525ns 265893 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15164809ns 265898 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15165093ns 265903 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15165378ns 265908 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15165832ns 265916 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15166003ns 265919 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15166287ns 265924 1a110850 fd5ff06f jal x0, -44 +15166571ns 265929 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15166855ns 265934 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15167253ns 265941 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15167424ns 265944 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15167878ns 265952 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15168049ns 265955 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15168333ns 265960 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15168617ns 265965 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15168901ns 265970 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15169356ns 265978 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15169526ns 265981 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15169810ns 265986 1a110850 fd5ff06f jal x0, -44 +15170095ns 265991 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15170379ns 265996 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15170777ns 266003 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15170947ns 266006 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15171402ns 266014 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15171572ns 266017 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15171856ns 266022 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15172141ns 266027 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15172425ns 266032 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15172879ns 266040 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15173050ns 266043 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15173334ns 266048 1a110850 fd5ff06f jal x0, -44 +15173618ns 266053 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15173902ns 266058 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15174300ns 266065 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15174471ns 266068 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15174925ns 266076 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15175096ns 266079 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15175380ns 266084 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15175664ns 266089 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15175948ns 266094 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15176403ns 266102 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15176573ns 266105 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15176858ns 266110 1a110850 fd5ff06f jal x0, -44 +15177142ns 266115 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15177426ns 266120 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15177824ns 266127 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15177994ns 266130 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15178449ns 266138 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15178619ns 266141 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15178904ns 266146 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15179188ns 266151 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15179472ns 266156 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15179927ns 266164 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15180097ns 266167 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15180381ns 266172 1a110850 fd5ff06f jal x0, -44 +15180665ns 266177 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15180950ns 266182 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15181347ns 266189 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15181518ns 266192 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15181973ns 266200 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15182143ns 266203 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15182427ns 266208 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15182711ns 266213 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15182995ns 266218 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15183450ns 266226 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15183621ns 266229 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15183905ns 266234 1a110850 fd5ff06f jal x0, -44 +15184189ns 266239 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15184473ns 266244 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15184871ns 266251 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15185041ns 266254 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15185496ns 266262 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15185667ns 266265 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15185951ns 266270 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15186235ns 266275 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15186519ns 266280 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15186974ns 266288 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15187144ns 266291 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15187428ns 266296 1a110850 fd5ff06f jal x0, -44 +15187713ns 266301 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15187997ns 266306 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15188395ns 266313 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15188565ns 266316 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15189020ns 266324 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15189190ns 266327 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15189474ns 266332 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15189759ns 266337 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15190043ns 266342 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15190497ns 266350 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15190668ns 266353 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15190952ns 266358 1a110850 fd5ff06f jal x0, -44 +15191236ns 266363 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15191520ns 266368 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15191918ns 266375 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15192089ns 266378 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15192543ns 266386 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15192714ns 266389 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15192998ns 266394 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15193282ns 266399 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15193566ns 266404 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15194021ns 266412 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15194191ns 266415 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15194476ns 266420 1a110850 fd5ff06f jal x0, -44 +15194760ns 266425 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15195044ns 266430 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15195442ns 266437 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15195612ns 266440 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15196067ns 266448 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15196237ns 266451 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15196522ns 266456 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15196806ns 266461 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15197090ns 266466 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15197544ns 266474 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15197715ns 266477 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15197999ns 266482 1a110850 fd5ff06f jal x0, -44 +15198283ns 266487 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15198567ns 266492 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15198965ns 266499 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15199136ns 266502 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15199590ns 266510 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15199761ns 266513 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15200045ns 266518 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15200329ns 266523 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15200613ns 266528 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15201068ns 266536 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15201239ns 266539 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15201523ns 266544 1a110850 fd5ff06f jal x0, -44 +15201807ns 266549 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15202091ns 266554 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15202489ns 266561 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15202659ns 266564 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15203114ns 266572 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15203285ns 266575 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15203569ns 266580 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15203853ns 266585 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15204137ns 266590 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15204592ns 266598 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15204762ns 266601 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15205046ns 266606 1a110850 fd5ff06f jal x0, -44 +15205330ns 266611 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15205615ns 266616 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15206012ns 266623 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15206183ns 266626 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15206638ns 266634 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15206808ns 266637 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15207092ns 266642 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15207376ns 266647 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15207661ns 266652 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15208115ns 266660 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15208286ns 266663 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15208570ns 266668 1a110850 fd5ff06f jal x0, -44 +15208854ns 266673 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15209138ns 266678 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15209536ns 266685 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15209707ns 266688 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15210161ns 266696 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15210332ns 266699 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15210616ns 266704 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15210900ns 266709 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15211184ns 266714 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15211639ns 266722 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15211809ns 266725 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15212093ns 266730 1a110850 fd5ff06f jal x0, -44 +15212378ns 266735 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15212662ns 266740 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15213060ns 266747 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15213230ns 266750 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15213685ns 266758 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15213855ns 266761 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15214139ns 266766 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15214424ns 266771 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15214708ns 266776 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15215162ns 266784 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15215333ns 266787 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15215617ns 266792 1a110850 fd5ff06f jal x0, -44 +15215901ns 266797 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15216185ns 266802 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15216583ns 266809 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15216754ns 266812 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15217208ns 266820 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15217379ns 266823 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15217663ns 266828 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15217947ns 266833 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15218231ns 266838 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15218686ns 266846 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15218856ns 266849 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15219141ns 266854 1a110850 fd5ff06f jal x0, -44 +15219425ns 266859 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15219709ns 266864 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15220107ns 266871 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15220277ns 266874 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15220732ns 266882 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15220902ns 266885 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15221187ns 266890 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15221471ns 266895 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15221755ns 266900 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15222210ns 266908 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15222380ns 266911 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15222664ns 266916 1a110850 fd5ff06f jal x0, -44 +15222948ns 266921 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15223233ns 266926 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15223630ns 266933 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15223801ns 266936 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15224256ns 266944 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15224426ns 266947 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15224710ns 266952 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15224994ns 266957 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15225279ns 266962 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15225733ns 266970 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15225904ns 266973 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15226188ns 266978 1a110850 fd5ff06f jal x0, -44 +15226472ns 266983 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15226756ns 266988 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15227154ns 266995 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15227324ns 266998 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15227779ns 267006 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15227950ns 267009 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15228234ns 267014 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15228518ns 267019 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15228802ns 267024 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15229257ns 267032 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15229427ns 267035 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15229711ns 267040 1a110850 fd5ff06f jal x0, -44 +15229996ns 267045 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15230280ns 267050 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15230678ns 267057 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15230848ns 267060 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15231303ns 267068 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15231473ns 267071 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15231757ns 267076 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15232042ns 267081 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15232326ns 267086 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15232780ns 267094 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15232951ns 267097 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15233235ns 267102 1a110850 fd5ff06f jal x0, -44 +15233519ns 267107 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15233803ns 267112 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15234201ns 267119 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15234372ns 267122 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15234826ns 267130 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15234997ns 267133 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15235281ns 267138 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15235565ns 267143 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15235849ns 267148 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15236304ns 267156 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15236474ns 267159 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15236759ns 267164 1a110850 fd5ff06f jal x0, -44 +15237043ns 267169 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15237327ns 267174 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15237725ns 267181 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15237895ns 267184 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15238350ns 267192 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15238520ns 267195 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15238805ns 267200 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15239089ns 267205 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15239373ns 267210 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15239827ns 267218 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15239998ns 267221 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15240282ns 267226 1a110850 fd5ff06f jal x0, -44 +15240566ns 267231 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15240850ns 267236 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15241248ns 267243 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15241419ns 267246 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15241873ns 267254 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15242044ns 267257 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15242328ns 267262 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15242612ns 267267 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15242896ns 267272 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15243351ns 267280 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15243522ns 267283 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15243806ns 267288 1a110850 fd5ff06f jal x0, -44 +15244090ns 267293 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15244374ns 267298 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15244772ns 267305 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15244942ns 267308 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15245397ns 267316 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15245568ns 267319 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15245852ns 267324 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15246136ns 267329 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15246420ns 267334 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15246875ns 267342 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15247045ns 267345 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15247329ns 267350 1a110850 fd5ff06f jal x0, -44 +15247613ns 267355 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15247898ns 267360 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15248295ns 267367 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15248466ns 267370 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15248921ns 267378 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15249091ns 267381 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15249375ns 267386 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15249659ns 267391 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15249944ns 267396 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15250398ns 267404 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15250569ns 267407 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15250853ns 267412 1a110850 fd5ff06f jal x0, -44 +15251137ns 267417 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15251421ns 267422 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15251819ns 267429 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15251990ns 267432 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15252444ns 267440 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15252615ns 267443 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15252899ns 267448 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15253183ns 267453 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15253467ns 267458 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15253922ns 267466 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15254092ns 267469 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15254376ns 267474 1a110850 fd5ff06f jal x0, -44 +15254661ns 267479 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15254945ns 267484 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15255343ns 267491 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15255513ns 267494 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15255968ns 267502 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15256138ns 267505 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15256422ns 267510 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15256707ns 267515 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15256991ns 267520 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15257445ns 267528 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15257616ns 267531 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15257900ns 267536 1a110850 fd5ff06f jal x0, -44 +15258184ns 267541 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15258468ns 267546 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15258866ns 267553 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15259037ns 267556 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15259491ns 267564 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15259662ns 267567 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15259946ns 267572 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15260230ns 267577 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15260514ns 267582 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15260969ns 267590 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15261139ns 267593 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15261424ns 267598 1a110850 fd5ff06f jal x0, -44 +15261708ns 267603 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15261992ns 267608 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15262390ns 267615 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15262560ns 267618 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15263015ns 267626 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15263185ns 267629 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15263470ns 267634 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15263754ns 267639 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15264038ns 267644 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15264493ns 267652 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15264663ns 267655 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15264947ns 267660 1a110850 fd5ff06f jal x0, -44 +15265231ns 267665 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15265516ns 267670 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15265913ns 267677 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15266084ns 267680 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15266539ns 267688 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15266709ns 267691 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15266993ns 267696 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15267277ns 267701 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15267562ns 267706 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15268016ns 267714 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15268187ns 267717 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15268471ns 267722 1a110850 fd5ff06f jal x0, -44 +15268755ns 267727 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15269039ns 267732 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15269437ns 267739 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15269607ns 267742 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15270062ns 267750 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15270233ns 267753 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15270517ns 267758 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15270801ns 267763 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15271085ns 267768 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15271540ns 267776 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15271710ns 267779 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15271994ns 267784 1a110850 fd5ff06f jal x0, -44 +15272279ns 267789 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15272563ns 267794 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15272961ns 267801 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15273131ns 267804 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15273586ns 267812 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15273756ns 267815 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15274040ns 267820 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15274325ns 267825 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15274609ns 267830 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15275063ns 267838 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15275234ns 267841 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15275518ns 267846 1a110850 fd5ff06f jal x0, -44 +15275802ns 267851 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15276086ns 267856 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15276484ns 267863 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15276655ns 267866 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15277109ns 267874 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15277280ns 267877 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15277564ns 267882 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15277848ns 267887 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15278132ns 267892 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15278587ns 267900 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15278757ns 267903 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15279042ns 267908 1a110850 fd5ff06f jal x0, -44 +15279326ns 267913 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15279610ns 267918 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15280008ns 267925 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15280178ns 267928 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15280633ns 267936 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15280803ns 267939 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15281088ns 267944 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15281372ns 267949 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15281656ns 267954 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15282111ns 267962 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15282281ns 267965 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15282565ns 267970 1a110850 fd5ff06f jal x0, -44 +15282849ns 267975 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15283133ns 267980 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15283531ns 267987 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15283702ns 267990 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15284156ns 267998 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15284327ns 268001 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15284611ns 268006 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15284895ns 268011 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15285179ns 268016 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15285634ns 268024 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15285805ns 268027 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15286089ns 268032 1a110850 fd5ff06f jal x0, -44 +15286373ns 268037 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15286657ns 268042 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15287055ns 268049 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15287225ns 268052 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15287680ns 268060 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15287851ns 268063 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15288135ns 268068 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15288419ns 268073 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15288703ns 268078 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15289158ns 268086 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15289328ns 268089 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15289612ns 268094 1a110850 fd5ff06f jal x0, -44 +15289896ns 268099 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15290181ns 268104 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15290578ns 268111 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15290749ns 268114 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15291204ns 268122 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15291374ns 268125 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15291658ns 268130 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15291942ns 268135 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15292227ns 268140 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15292681ns 268148 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15292852ns 268151 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15293136ns 268156 1a110850 fd5ff06f jal x0, -44 +15293420ns 268161 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15293704ns 268166 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15294102ns 268173 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15294273ns 268176 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15294727ns 268184 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15294898ns 268187 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15295182ns 268192 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15295466ns 268197 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15295750ns 268202 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15296205ns 268210 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15296375ns 268213 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15296659ns 268218 1a110850 fd5ff06f jal x0, -44 +15296944ns 268223 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15297228ns 268228 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15297626ns 268235 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15297796ns 268238 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15298251ns 268246 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15298421ns 268249 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15298705ns 268254 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15298990ns 268259 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15299274ns 268264 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15299728ns 268272 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15299899ns 268275 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15300183ns 268280 1a110850 fd5ff06f jal x0, -44 +15300467ns 268285 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15300751ns 268290 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15301149ns 268297 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15301320ns 268300 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15301774ns 268308 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15301945ns 268311 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15302229ns 268316 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15302513ns 268321 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15302797ns 268326 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15303252ns 268334 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15303423ns 268337 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15303707ns 268342 1a110850 fd5ff06f jal x0, -44 +15303991ns 268347 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15304275ns 268352 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15304673ns 268359 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15304843ns 268362 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15305298ns 268370 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15305468ns 268373 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15305753ns 268378 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15306037ns 268383 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15306321ns 268388 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15306776ns 268396 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15306946ns 268399 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15307230ns 268404 1a110850 fd5ff06f jal x0, -44 +15307514ns 268409 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15307799ns 268414 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15308196ns 268421 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15308367ns 268424 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15308822ns 268432 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15308992ns 268435 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15309276ns 268440 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15309560ns 268445 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15309845ns 268450 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15310299ns 268458 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15310470ns 268461 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15310754ns 268466 1a110850 fd5ff06f jal x0, -44 +15311038ns 268471 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15311322ns 268476 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15311720ns 268483 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15311890ns 268486 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15312345ns 268494 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15312516ns 268497 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15312800ns 268502 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15313084ns 268507 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15313368ns 268512 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15313823ns 268520 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15313993ns 268523 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15314277ns 268528 1a110850 fd5ff06f jal x0, -44 +15314562ns 268533 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15314846ns 268538 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15315244ns 268545 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15315414ns 268548 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15315869ns 268556 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15316039ns 268559 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15316323ns 268564 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15316608ns 268569 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15316892ns 268574 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15317346ns 268582 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15317517ns 268585 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15317801ns 268590 1a110850 fd5ff06f jal x0, -44 +15318085ns 268595 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15318369ns 268600 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15318767ns 268607 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15318938ns 268610 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15319392ns 268618 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15319563ns 268621 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15319847ns 268626 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15320131ns 268631 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15320415ns 268636 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15320870ns 268644 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15321040ns 268647 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15321325ns 268652 1a110850 fd5ff06f jal x0, -44 +15321609ns 268657 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15321893ns 268662 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15322291ns 268669 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15322461ns 268672 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15322916ns 268680 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15323086ns 268683 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15323371ns 268688 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15323655ns 268693 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15323939ns 268698 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15324394ns 268706 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15324564ns 268709 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15324848ns 268714 1a110850 fd5ff06f jal x0, -44 +15325132ns 268719 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15325416ns 268724 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15325814ns 268731 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15325985ns 268734 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15326439ns 268742 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15326610ns 268745 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15326894ns 268750 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15327178ns 268755 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15327462ns 268760 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15327917ns 268768 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15328088ns 268771 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15328372ns 268776 1a110850 fd5ff06f jal x0, -44 +15328656ns 268781 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15328940ns 268786 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15329338ns 268793 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15329508ns 268796 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15329963ns 268804 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15330134ns 268807 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15330418ns 268812 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15330702ns 268817 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15330986ns 268822 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15331441ns 268830 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15331611ns 268833 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15331895ns 268838 1a110850 fd5ff06f jal x0, -44 +15332179ns 268843 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15332464ns 268848 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15332861ns 268855 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15333032ns 268858 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15333487ns 268866 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15333657ns 268869 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15333941ns 268874 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15334225ns 268879 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15334510ns 268884 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15334964ns 268892 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15335135ns 268895 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15335419ns 268900 1a110850 fd5ff06f jal x0, -44 +15335703ns 268905 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15335987ns 268910 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15336385ns 268917 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15336556ns 268920 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15337010ns 268928 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15337181ns 268931 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15337465ns 268936 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15337749ns 268941 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15338033ns 268946 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15338488ns 268954 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15338658ns 268957 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15338943ns 268962 1a110850 fd5ff06f jal x0, -44 +15339227ns 268967 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15339511ns 268972 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15339909ns 268979 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15340079ns 268982 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15340534ns 268990 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15340704ns 268993 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15340988ns 268998 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15341273ns 269003 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15341557ns 269008 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15342011ns 269016 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15342182ns 269019 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15342466ns 269024 1a110850 fd5ff06f jal x0, -44 +15342750ns 269029 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15343034ns 269034 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15343432ns 269041 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15343603ns 269044 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15344057ns 269052 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15344228ns 269055 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15344512ns 269060 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15344796ns 269065 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15345080ns 269070 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15345535ns 269078 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15345706ns 269081 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15345990ns 269086 1a110850 fd5ff06f jal x0, -44 +15346274ns 269091 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15346558ns 269096 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15346956ns 269103 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15347126ns 269106 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15347581ns 269114 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15347751ns 269117 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15348036ns 269122 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15348320ns 269127 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15348604ns 269132 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15349059ns 269140 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15349229ns 269143 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15349513ns 269148 1a110850 fd5ff06f jal x0, -44 +15349797ns 269153 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15350082ns 269158 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15350479ns 269165 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15350650ns 269168 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15351105ns 269176 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15351275ns 269179 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15351559ns 269184 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15351843ns 269189 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15352128ns 269194 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15352582ns 269202 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15352753ns 269205 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15353037ns 269210 1a110850 fd5ff06f jal x0, -44 +15353321ns 269215 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15353605ns 269220 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15354003ns 269227 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15354173ns 269230 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15354628ns 269238 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15354799ns 269241 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15355083ns 269246 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15355367ns 269251 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15355651ns 269256 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15356106ns 269264 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15356276ns 269267 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15356560ns 269272 1a110850 fd5ff06f jal x0, -44 +15356845ns 269277 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15357129ns 269282 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15357527ns 269289 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15357697ns 269292 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15358152ns 269300 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15358322ns 269303 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15358606ns 269308 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15358891ns 269313 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15359175ns 269318 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15359629ns 269326 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15359800ns 269329 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15360084ns 269334 1a110850 fd5ff06f jal x0, -44 +15360368ns 269339 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15360652ns 269344 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15361050ns 269351 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15361221ns 269354 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15361675ns 269362 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15361846ns 269365 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15362130ns 269370 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15362414ns 269375 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15362698ns 269380 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15363153ns 269388 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15363323ns 269391 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15363608ns 269396 1a110850 fd5ff06f jal x0, -44 +15363892ns 269401 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15364176ns 269406 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15364574ns 269413 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15364744ns 269416 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15365199ns 269424 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15365369ns 269427 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15365654ns 269432 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15365938ns 269437 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15366222ns 269442 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15366677ns 269450 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15366847ns 269453 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15367131ns 269458 1a110850 fd5ff06f jal x0, -44 +15367415ns 269463 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15367699ns 269468 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15368097ns 269475 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15368268ns 269478 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15368722ns 269486 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15368893ns 269489 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15369177ns 269494 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15369461ns 269499 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15369745ns 269504 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15370200ns 269512 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15370371ns 269515 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15370655ns 269520 1a110850 fd5ff06f jal x0, -44 +15370939ns 269525 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15371223ns 269530 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15371621ns 269537 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15371791ns 269540 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15372246ns 269548 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15372417ns 269551 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15372701ns 269556 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15372985ns 269561 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15373269ns 269566 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15373724ns 269574 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15373894ns 269577 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15374178ns 269582 1a110850 fd5ff06f jal x0, -44 +15374463ns 269587 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15374747ns 269592 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15375144ns 269599 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15375315ns 269602 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15375770ns 269610 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15375940ns 269613 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15376224ns 269618 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15376508ns 269623 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15376793ns 269628 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15377247ns 269636 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15377418ns 269639 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15377702ns 269644 1a110850 fd5ff06f jal x0, -44 +15377986ns 269649 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15378270ns 269654 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15378668ns 269661 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15378839ns 269664 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15379293ns 269672 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15379464ns 269675 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15379748ns 269680 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15380032ns 269685 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15380316ns 269690 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15380771ns 269698 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15380941ns 269701 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15381226ns 269706 1a110850 fd5ff06f jal x0, -44 +15381510ns 269711 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15381794ns 269716 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15382192ns 269723 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15382362ns 269726 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15382817ns 269734 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15382987ns 269737 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15383271ns 269742 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15383556ns 269747 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15383840ns 269752 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15384294ns 269760 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15384465ns 269763 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15384749ns 269768 1a110850 fd5ff06f jal x0, -44 +15385033ns 269773 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15385317ns 269778 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15385715ns 269785 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15385886ns 269788 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15386340ns 269796 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15386511ns 269799 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15386795ns 269804 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15387079ns 269809 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15387363ns 269814 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15387818ns 269822 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15387989ns 269825 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15388273ns 269830 1a110850 fd5ff06f jal x0, -44 +15388557ns 269835 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15388841ns 269840 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15389239ns 269847 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15389409ns 269850 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15389864ns 269858 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15390034ns 269861 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15390319ns 269866 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15390603ns 269871 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15390887ns 269876 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15391342ns 269884 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15391512ns 269887 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15391796ns 269892 1a110850 fd5ff06f jal x0, -44 +15392080ns 269897 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15392365ns 269902 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15392762ns 269909 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15392933ns 269912 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15393388ns 269920 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15393558ns 269923 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15393842ns 269928 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15394126ns 269933 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15394411ns 269938 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15394865ns 269946 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15395036ns 269949 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15395320ns 269954 1a110850 fd5ff06f jal x0, -44 +15395604ns 269959 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15395888ns 269964 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15396286ns 269971 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15396456ns 269974 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15396911ns 269982 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15397082ns 269985 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15397366ns 269990 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15397650ns 269995 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15397934ns 270000 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15398389ns 270008 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15398559ns 270011 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15398843ns 270016 1a110850 fd5ff06f jal x0, -44 +15399128ns 270021 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15399412ns 270026 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15399810ns 270033 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15399980ns 270036 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15400435ns 270044 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15400605ns 270047 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15400889ns 270052 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15401174ns 270057 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15401458ns 270062 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15401912ns 270070 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15402083ns 270073 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15402367ns 270078 1a110850 fd5ff06f jal x0, -44 +15402651ns 270083 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15402935ns 270088 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15403333ns 270095 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15403504ns 270098 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15403958ns 270106 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15404129ns 270109 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15404413ns 270114 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15404697ns 270119 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15404981ns 270124 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15405436ns 270132 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15405606ns 270135 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15405891ns 270140 1a110850 fd5ff06f jal x0, -44 +15406175ns 270145 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15406459ns 270150 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15406857ns 270157 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15407027ns 270160 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15407482ns 270168 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15407652ns 270171 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15407937ns 270176 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15408221ns 270181 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15408505ns 270186 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15408960ns 270194 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15409130ns 270197 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15409414ns 270202 1a110850 fd5ff06f jal x0, -44 +15409698ns 270207 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15409983ns 270212 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15410380ns 270219 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15410551ns 270222 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15411005ns 270230 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15411176ns 270233 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15411460ns 270238 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15411744ns 270243 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15412028ns 270248 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15412483ns 270256 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15412654ns 270259 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15412938ns 270264 1a110850 fd5ff06f jal x0, -44 +15413222ns 270269 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15413506ns 270274 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15413904ns 270281 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15414074ns 270284 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15414529ns 270292 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15414700ns 270295 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15414984ns 270300 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15415268ns 270305 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15415552ns 270310 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15416007ns 270318 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15416177ns 270321 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15416461ns 270326 1a110850 fd5ff06f jal x0, -44 +15416746ns 270331 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15417030ns 270336 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15417427ns 270343 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15417598ns 270346 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15418053ns 270354 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15418223ns 270357 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15418507ns 270362 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15418791ns 270367 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15419076ns 270372 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15419530ns 270380 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15419701ns 270383 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15419985ns 270388 1a110850 fd5ff06f jal x0, -44 +15420269ns 270393 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15420553ns 270398 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15420951ns 270405 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15421122ns 270408 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15421576ns 270416 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15421747ns 270419 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15422031ns 270424 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15422315ns 270429 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15422599ns 270434 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15423054ns 270442 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15423224ns 270445 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15423509ns 270450 1a110850 fd5ff06f jal x0, -44 +15423793ns 270455 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15424077ns 270460 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15424475ns 270467 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15424645ns 270470 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15425100ns 270478 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15425270ns 270481 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15425554ns 270486 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15425839ns 270491 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15426123ns 270496 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15426577ns 270504 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15426748ns 270507 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15427032ns 270512 1a110850 fd5ff06f jal x0, -44 +15427316ns 270517 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15427600ns 270522 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15427998ns 270529 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15428169ns 270532 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15428623ns 270540 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15428794ns 270543 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15429078ns 270548 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15429362ns 270553 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15429646ns 270558 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15430101ns 270566 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15430272ns 270569 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15430556ns 270574 1a110850 fd5ff06f jal x0, -44 +15430840ns 270579 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15431124ns 270584 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15431522ns 270591 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15431692ns 270594 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15432147ns 270602 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15432317ns 270605 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15432602ns 270610 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15432886ns 270615 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15433170ns 270620 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15433625ns 270628 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15433795ns 270631 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15434079ns 270636 1a110850 fd5ff06f jal x0, -44 +15434363ns 270641 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15434648ns 270646 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15435045ns 270653 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15435216ns 270656 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15435671ns 270664 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15435841ns 270667 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15436125ns 270672 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15436409ns 270677 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15436694ns 270682 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15437148ns 270690 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15437319ns 270693 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15437603ns 270698 1a110850 fd5ff06f jal x0, -44 +15437887ns 270703 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15438171ns 270708 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15438569ns 270715 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15438739ns 270718 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15439194ns 270726 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15439365ns 270729 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15439649ns 270734 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15439933ns 270739 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15440217ns 270744 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15440672ns 270752 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15440842ns 270755 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15441126ns 270760 1a110850 fd5ff06f jal x0, -44 +15441411ns 270765 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15441695ns 270770 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15442093ns 270777 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15442263ns 270780 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15442718ns 270788 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15442888ns 270791 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15443172ns 270796 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15443457ns 270801 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15443741ns 270806 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15444195ns 270814 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15444366ns 270817 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15444650ns 270822 1a110850 fd5ff06f jal x0, -44 +15444934ns 270827 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15445218ns 270832 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15445616ns 270839 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15445787ns 270842 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15446241ns 270850 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15446412ns 270853 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15446696ns 270858 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15446980ns 270863 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15447264ns 270868 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15447719ns 270876 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15447889ns 270879 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15448174ns 270884 1a110850 fd5ff06f jal x0, -44 +15448458ns 270889 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15448742ns 270894 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15449140ns 270901 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15449310ns 270904 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15449765ns 270912 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15449935ns 270915 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15450220ns 270920 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15450504ns 270925 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15450788ns 270930 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15451243ns 270938 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15451413ns 270941 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15451697ns 270946 1a110850 fd5ff06f jal x0, -44 +15451981ns 270951 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15452266ns 270956 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15452663ns 270963 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15452834ns 270966 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15453288ns 270974 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15453459ns 270977 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15453743ns 270982 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15454027ns 270987 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15454311ns 270992 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15454766ns 271000 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15454937ns 271003 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15455221ns 271008 1a110850 fd5ff06f jal x0, -44 +15455505ns 271013 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15455789ns 271018 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15456187ns 271025 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15456357ns 271028 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15456812ns 271036 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15456983ns 271039 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15457267ns 271044 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15457551ns 271049 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15457835ns 271054 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15458290ns 271062 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15458460ns 271065 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15458744ns 271070 1a110850 fd5ff06f jal x0, -44 +15459029ns 271075 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15459313ns 271080 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15459711ns 271087 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15459881ns 271090 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15460336ns 271098 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15460506ns 271101 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15460790ns 271106 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15461074ns 271111 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15461359ns 271116 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15461813ns 271124 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15461984ns 271127 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15462268ns 271132 1a110850 fd5ff06f jal x0, -44 +15462552ns 271137 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15462836ns 271142 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15463234ns 271149 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15463405ns 271152 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15463859ns 271160 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15464030ns 271163 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15464314ns 271168 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15464598ns 271173 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15464882ns 271178 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15465337ns 271186 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15465507ns 271189 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15465792ns 271194 1a110850 fd5ff06f jal x0, -44 +15466076ns 271199 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15466360ns 271204 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15466758ns 271211 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15466928ns 271214 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15467383ns 271222 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15467553ns 271225 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15467837ns 271230 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15468122ns 271235 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15468406ns 271240 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15468860ns 271248 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15469031ns 271251 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15469315ns 271256 1a110850 fd5ff06f jal x0, -44 +15469599ns 271261 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15469883ns 271266 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15470281ns 271273 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15470452ns 271276 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15470906ns 271284 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15471077ns 271287 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15471361ns 271292 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15471645ns 271297 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15471929ns 271302 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15472384ns 271310 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15472555ns 271313 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15472839ns 271318 1a110850 fd5ff06f jal x0, -44 +15473123ns 271323 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15473407ns 271328 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15473805ns 271335 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15473975ns 271338 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15474430ns 271346 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15474600ns 271349 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15474885ns 271354 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15475169ns 271359 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15475453ns 271364 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15475908ns 271372 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15476078ns 271375 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15476362ns 271380 1a110850 fd5ff06f jal x0, -44 +15476646ns 271385 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15476931ns 271390 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15477328ns 271397 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15477499ns 271400 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15477954ns 271408 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15478124ns 271411 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15478408ns 271416 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15478692ns 271421 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15478977ns 271426 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15479431ns 271434 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15479602ns 271437 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15479886ns 271442 1a110850 fd5ff06f jal x0, -44 +15480170ns 271447 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15480454ns 271452 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15480852ns 271459 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15481023ns 271462 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15481477ns 271470 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15481648ns 271473 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15481932ns 271478 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15482216ns 271483 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15482500ns 271488 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15482955ns 271496 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15483125ns 271499 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15483409ns 271504 1a110850 fd5ff06f jal x0, -44 +15483694ns 271509 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15483978ns 271514 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15484376ns 271521 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15484546ns 271524 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15485001ns 271532 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15485171ns 271535 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15485455ns 271540 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15485740ns 271545 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15486024ns 271550 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15486478ns 271558 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15486649ns 271561 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15486933ns 271566 1a110850 fd5ff06f jal x0, -44 +15487217ns 271571 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15487501ns 271576 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15487899ns 271583 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15488070ns 271586 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15488524ns 271594 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15488695ns 271597 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15488979ns 271602 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15489263ns 271607 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15489547ns 271612 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15490002ns 271620 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15490172ns 271623 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15490457ns 271628 1a110850 fd5ff06f jal x0, -44 +15490741ns 271633 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15491025ns 271638 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15491423ns 271645 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15491593ns 271648 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15492048ns 271656 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15492218ns 271659 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15492503ns 271664 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15492787ns 271669 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15493071ns 271674 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15493526ns 271682 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15493696ns 271685 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15493980ns 271690 1a110850 fd5ff06f jal x0, -44 +15494264ns 271695 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15494549ns 271700 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15494946ns 271707 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15495117ns 271710 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15495571ns 271718 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15495742ns 271721 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15496026ns 271726 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15496310ns 271731 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15496594ns 271736 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15497049ns 271744 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15497220ns 271747 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15497504ns 271752 1a110850 fd5ff06f jal x0, -44 +15497788ns 271757 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15498072ns 271762 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15498470ns 271769 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15498640ns 271772 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15499095ns 271780 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15499266ns 271783 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15499550ns 271788 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15499834ns 271793 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15500118ns 271798 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15500573ns 271806 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15500743ns 271809 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15501027ns 271814 1a110850 fd5ff06f jal x0, -44 +15501312ns 271819 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15501596ns 271824 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15501994ns 271831 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15502164ns 271834 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15502619ns 271842 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15502789ns 271845 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15503073ns 271850 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15503357ns 271855 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15503642ns 271860 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15504096ns 271868 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15504267ns 271871 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15504551ns 271876 1a110850 fd5ff06f jal x0, -44 +15504835ns 271881 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15505119ns 271886 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15505517ns 271893 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15505688ns 271896 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15506142ns 271904 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15506313ns 271907 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15506597ns 271912 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15506881ns 271917 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15507165ns 271922 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15507620ns 271930 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15507790ns 271933 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15508075ns 271938 1a110850 fd5ff06f jal x0, -44 +15508359ns 271943 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15508643ns 271948 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15509041ns 271955 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15509211ns 271958 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15509666ns 271966 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15509836ns 271969 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15510120ns 271974 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15510405ns 271979 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15510689ns 271984 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15511143ns 271992 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15511314ns 271995 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15511598ns 272000 1a110850 fd5ff06f jal x0, -44 +15511882ns 272005 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15512166ns 272010 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15512564ns 272017 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15512735ns 272020 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15513189ns 272028 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15513360ns 272031 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15513644ns 272036 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15513928ns 272041 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15514212ns 272046 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15514667ns 272054 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15514838ns 272057 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15515122ns 272062 1a110850 fd5ff06f jal x0, -44 +15515406ns 272067 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15515690ns 272072 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15516088ns 272079 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15516258ns 272082 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15516713ns 272090 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15516883ns 272093 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15517168ns 272098 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15517452ns 272103 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15517736ns 272108 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15518191ns 272116 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15518361ns 272119 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15518645ns 272124 1a110850 fd5ff06f jal x0, -44 +15518929ns 272129 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15519214ns 272134 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15519611ns 272141 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15519782ns 272144 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15520237ns 272152 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15520407ns 272155 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15520691ns 272160 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15520975ns 272165 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15521260ns 272170 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15521714ns 272178 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15521885ns 272181 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15522169ns 272186 1a110850 fd5ff06f jal x0, -44 +15522453ns 272191 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15522737ns 272196 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15523135ns 272203 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15523306ns 272206 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15523760ns 272214 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15523931ns 272217 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15524215ns 272222 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15524499ns 272227 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15524783ns 272232 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15525238ns 272240 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15525408ns 272243 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15525692ns 272248 1a110850 fd5ff06f jal x0, -44 +15525977ns 272253 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15526261ns 272258 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15526659ns 272265 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15526829ns 272268 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15527284ns 272276 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15527454ns 272279 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15527738ns 272284 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15528023ns 272289 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15528307ns 272294 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15528761ns 272302 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15528932ns 272305 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15529216ns 272310 1a110850 fd5ff06f jal x0, -44 +15529500ns 272315 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15529784ns 272320 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15530182ns 272327 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15530353ns 272330 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15530807ns 272338 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15530978ns 272341 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15531262ns 272346 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15531546ns 272351 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15531830ns 272356 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15532285ns 272364 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15532455ns 272367 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15532740ns 272372 1a110850 fd5ff06f jal x0, -44 +15533024ns 272377 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15533308ns 272382 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15533706ns 272389 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15533876ns 272392 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15534331ns 272400 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15534501ns 272403 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15534786ns 272408 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15535070ns 272413 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15535354ns 272418 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15535809ns 272426 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15535979ns 272429 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15536263ns 272434 1a110850 fd5ff06f jal x0, -44 +15536547ns 272439 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15536832ns 272444 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15537229ns 272451 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15537400ns 272454 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15537855ns 272462 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15538025ns 272465 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15538309ns 272470 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15538593ns 272475 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15538877ns 272480 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15539332ns 272488 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15539503ns 272491 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15539787ns 272496 1a110850 fd5ff06f jal x0, -44 +15540071ns 272501 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15540355ns 272506 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15540753ns 272513 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15540923ns 272516 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15541378ns 272524 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15541549ns 272527 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15541833ns 272532 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15542117ns 272537 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15542401ns 272542 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15542856ns 272550 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15543026ns 272553 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15543310ns 272558 1a110850 fd5ff06f jal x0, -44 +15543595ns 272563 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15543879ns 272568 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15544277ns 272575 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15544447ns 272578 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15544902ns 272586 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15545072ns 272589 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15545356ns 272594 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15545640ns 272599 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15545925ns 272604 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15546379ns 272612 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15546550ns 272615 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15546834ns 272620 1a110850 fd5ff06f jal x0, -44 +15547118ns 272625 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15547402ns 272630 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15547800ns 272637 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15547971ns 272640 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15548425ns 272648 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15548596ns 272651 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15548880ns 272656 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15549164ns 272661 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15549448ns 272666 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15549903ns 272674 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15550073ns 272677 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15550358ns 272682 1a110850 fd5ff06f jal x0, -44 +15550642ns 272687 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15550926ns 272692 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15551324ns 272699 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15551494ns 272702 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15551949ns 272710 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15552119ns 272713 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15552403ns 272718 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15552688ns 272723 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15552972ns 272728 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15553426ns 272736 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15553597ns 272739 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15553881ns 272744 1a110850 fd5ff06f jal x0, -44 +15554165ns 272749 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15554449ns 272754 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15554847ns 272761 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15555018ns 272764 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15555472ns 272772 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15555643ns 272775 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15555927ns 272780 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15556211ns 272785 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15556495ns 272790 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15556950ns 272798 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15557121ns 272801 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15557405ns 272806 1a110850 fd5ff06f jal x0, -44 +15557689ns 272811 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15557973ns 272816 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15558371ns 272823 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15558541ns 272826 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15558996ns 272834 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15559167ns 272837 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15559451ns 272842 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15559735ns 272847 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15560019ns 272852 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15560474ns 272860 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15560644ns 272863 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15560928ns 272868 1a110850 fd5ff06f jal x0, -44 +15561212ns 272873 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15561497ns 272878 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15561894ns 272885 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15562065ns 272888 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15562520ns 272896 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15562690ns 272899 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15562974ns 272904 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15563258ns 272909 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15563543ns 272914 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15563997ns 272922 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15564168ns 272925 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15564452ns 272930 1a110850 fd5ff06f jal x0, -44 +15564736ns 272935 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15565020ns 272940 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15565418ns 272947 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15565589ns 272950 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15566043ns 272958 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15566214ns 272961 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15566498ns 272966 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15566782ns 272971 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15567066ns 272976 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15567521ns 272984 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15567691ns 272987 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15567975ns 272992 1a110850 fd5ff06f jal x0, -44 +15568260ns 272997 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15568544ns 273002 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15568942ns 273009 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15569112ns 273012 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15569567ns 273020 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15569737ns 273023 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15570021ns 273028 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15570306ns 273033 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15570590ns 273038 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15571044ns 273046 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15571215ns 273049 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15571499ns 273054 1a110850 fd5ff06f jal x0, -44 +15571783ns 273059 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15572067ns 273064 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15572465ns 273071 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15572636ns 273074 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15573090ns 273082 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15573261ns 273085 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15573545ns 273090 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15573829ns 273095 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15574113ns 273100 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15574568ns 273108 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15574738ns 273111 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15575023ns 273116 1a110850 fd5ff06f jal x0, -44 +15575307ns 273121 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15575591ns 273126 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15575989ns 273133 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15576159ns 273136 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15576614ns 273144 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15576784ns 273147 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15577069ns 273152 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15577353ns 273157 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15577637ns 273162 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15578092ns 273170 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15578262ns 273173 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15578546ns 273178 1a110850 fd5ff06f jal x0, -44 +15578830ns 273183 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15579115ns 273188 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15579512ns 273195 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15579683ns 273198 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15580138ns 273206 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15580308ns 273209 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15580592ns 273214 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15580876ns 273219 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15581160ns 273224 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15581615ns 273232 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15581786ns 273235 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15582070ns 273240 1a110850 fd5ff06f jal x0, -44 +15582354ns 273245 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15582638ns 273250 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15583036ns 273257 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15583206ns 273260 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15583661ns 273268 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15583832ns 273271 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15584116ns 273276 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15584400ns 273281 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15584684ns 273286 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15585139ns 273294 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15585309ns 273297 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15585593ns 273302 1a110850 fd5ff06f jal x0, -44 +15585878ns 273307 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15586162ns 273312 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15586560ns 273319 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15586730ns 273322 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15587185ns 273330 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15587355ns 273333 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15587639ns 273338 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15587923ns 273343 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15588208ns 273348 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15588662ns 273356 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15588833ns 273359 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15589117ns 273364 1a110850 fd5ff06f jal x0, -44 +15589401ns 273369 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15589685ns 273374 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15590083ns 273381 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15590254ns 273384 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15590708ns 273392 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15590879ns 273395 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15591163ns 273400 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15591447ns 273405 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15591731ns 273410 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15592186ns 273418 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15592356ns 273421 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15592641ns 273426 1a110850 fd5ff06f jal x0, -44 +15592925ns 273431 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15593209ns 273436 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15593607ns 273443 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15593777ns 273446 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15594232ns 273454 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15594402ns 273457 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15594687ns 273462 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15594971ns 273467 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15595255ns 273472 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15595709ns 273480 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15595880ns 273483 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15596164ns 273488 1a110850 fd5ff06f jal x0, -44 +15596448ns 273493 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15596732ns 273498 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15597130ns 273505 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15597301ns 273508 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15597755ns 273516 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15597926ns 273519 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15598210ns 273524 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15598494ns 273529 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15598778ns 273534 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15599233ns 273542 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15599404ns 273545 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15599688ns 273550 1a110850 fd5ff06f jal x0, -44 +15599972ns 273555 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15600256ns 273560 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15600654ns 273567 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15600824ns 273570 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15601279ns 273578 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15601450ns 273581 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15601734ns 273586 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15602018ns 273591 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15602302ns 273596 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15602757ns 273604 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15602927ns 273607 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15603211ns 273612 1a110850 fd5ff06f jal x0, -44 +15603495ns 273617 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15603780ns 273622 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15604177ns 273629 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15604348ns 273632 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15604803ns 273640 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15604973ns 273643 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15605257ns 273648 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15605541ns 273653 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15605826ns 273658 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15606280ns 273666 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15606451ns 273669 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15606735ns 273674 1a110850 fd5ff06f jal x0, -44 +15607019ns 273679 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15607303ns 273684 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15607701ns 273691 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15607872ns 273694 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15608326ns 273702 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15608497ns 273705 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15608781ns 273710 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15609065ns 273715 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15609349ns 273720 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15609804ns 273728 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15609974ns 273731 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15610258ns 273736 1a110850 fd5ff06f jal x0, -44 +15610543ns 273741 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15610827ns 273746 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15611225ns 273753 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15611395ns 273756 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15611850ns 273764 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15612020ns 273767 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15612304ns 273772 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15612589ns 273777 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15612873ns 273782 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15613327ns 273790 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15613498ns 273793 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15613782ns 273798 1a110850 fd5ff06f jal x0, -44 +15614066ns 273803 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15614350ns 273808 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15614748ns 273815 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15614919ns 273818 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15615373ns 273826 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15615544ns 273829 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15615828ns 273834 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15616112ns 273839 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15616396ns 273844 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15616851ns 273852 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15617021ns 273855 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15617306ns 273860 1a110850 fd5ff06f jal x0, -44 +15617590ns 273865 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15617874ns 273870 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15618272ns 273877 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15618442ns 273880 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15618897ns 273888 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15619067ns 273891 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15619352ns 273896 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15619636ns 273901 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15619920ns 273906 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15620375ns 273914 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15620545ns 273917 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15620829ns 273922 1a110850 fd5ff06f jal x0, -44 +15621113ns 273927 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15621398ns 273932 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15621795ns 273939 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15621966ns 273942 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15622421ns 273950 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15622591ns 273953 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15622875ns 273958 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15623159ns 273963 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15623443ns 273968 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15623898ns 273976 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15624069ns 273979 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15624353ns 273984 1a110850 fd5ff06f jal x0, -44 +15624637ns 273989 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15624921ns 273994 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15625319ns 274001 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15625489ns 274004 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15625944ns 274012 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15626115ns 274015 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15626399ns 274020 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15626683ns 274025 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15626967ns 274030 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15627422ns 274038 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15627592ns 274041 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15627876ns 274046 1a110850 fd5ff06f jal x0, -44 +15628161ns 274051 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15628445ns 274056 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15628843ns 274063 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15629013ns 274066 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15629468ns 274074 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15629638ns 274077 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15629922ns 274082 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15630207ns 274087 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15630491ns 274092 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15630945ns 274100 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15631116ns 274103 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15631400ns 274108 1a110850 fd5ff06f jal x0, -44 +15631684ns 274113 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15631968ns 274118 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15632366ns 274125 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15632537ns 274128 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15632991ns 274136 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15633162ns 274139 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15633446ns 274144 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15633730ns 274149 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15634014ns 274154 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15634469ns 274162 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15634639ns 274165 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15634924ns 274170 1a110850 fd5ff06f jal x0, -44 +15635208ns 274175 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15635492ns 274180 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15635890ns 274187 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15636060ns 274190 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15636515ns 274198 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15636685ns 274201 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15636970ns 274206 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15637254ns 274211 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15637538ns 274216 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15637992ns 274224 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15638163ns 274227 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15638447ns 274232 1a110850 fd5ff06f jal x0, -44 +15638731ns 274237 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15639015ns 274242 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15639413ns 274249 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15639584ns 274252 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15640038ns 274260 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15640209ns 274263 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15640493ns 274268 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15640777ns 274273 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15641061ns 274278 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15641516ns 274286 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15641687ns 274289 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15641971ns 274294 1a110850 fd5ff06f jal x0, -44 +15642255ns 274299 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15642539ns 274304 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15642937ns 274311 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15643107ns 274314 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15643562ns 274322 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15643733ns 274325 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15644017ns 274330 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15644301ns 274335 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15644585ns 274340 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15645040ns 274348 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15645210ns 274351 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15645494ns 274356 1a110850 fd5ff06f jal x0, -44 +15645778ns 274361 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15646063ns 274366 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15646460ns 274373 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15646631ns 274376 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15647086ns 274384 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15647256ns 274387 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15647540ns 274392 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15647824ns 274397 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15648109ns 274402 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15648563ns 274410 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15648734ns 274413 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15649018ns 274418 1a110850 fd5ff06f jal x0, -44 +15649302ns 274423 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15649586ns 274428 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15649984ns 274435 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15650155ns 274438 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15650609ns 274446 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15650780ns 274449 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15651064ns 274454 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15651348ns 274459 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15651632ns 274464 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15652087ns 274472 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15652257ns 274475 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15652541ns 274480 1a110850 fd5ff06f jal x0, -44 +15652826ns 274485 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15653110ns 274490 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15653508ns 274497 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15653678ns 274500 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15654133ns 274508 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15654303ns 274511 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15654587ns 274516 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15654872ns 274521 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15655156ns 274526 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15655610ns 274534 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15655781ns 274537 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15656065ns 274542 1a110850 fd5ff06f jal x0, -44 +15656349ns 274547 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15656633ns 274552 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15657031ns 274559 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15657202ns 274562 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15657656ns 274570 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15657827ns 274573 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15658111ns 274578 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15658395ns 274583 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15658679ns 274588 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15659134ns 274596 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15659304ns 274599 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15659589ns 274604 1a110850 fd5ff06f jal x0, -44 +15659873ns 274609 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15660157ns 274614 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15660555ns 274621 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15660725ns 274624 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15661180ns 274632 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15661350ns 274635 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15661635ns 274640 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15661919ns 274645 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15662203ns 274650 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15662658ns 274658 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15662828ns 274661 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15663112ns 274666 1a110850 fd5ff06f jal x0, -44 +15663396ns 274671 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15663681ns 274676 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15664078ns 274683 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15664249ns 274686 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15664704ns 274694 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15664874ns 274697 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15665158ns 274702 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15665442ns 274707 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15665727ns 274712 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15666181ns 274720 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15666352ns 274723 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15666636ns 274728 1a110850 fd5ff06f jal x0, -44 +15666920ns 274733 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15667204ns 274738 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15667602ns 274745 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15667772ns 274748 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15668227ns 274756 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15668398ns 274759 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15668682ns 274764 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15668966ns 274769 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15669250ns 274774 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15669705ns 274782 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15669875ns 274785 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15670159ns 274790 1a110850 fd5ff06f jal x0, -44 +15670444ns 274795 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15670728ns 274800 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15671126ns 274807 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15671296ns 274810 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15671751ns 274818 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15671921ns 274821 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15672205ns 274826 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15672490ns 274831 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15672774ns 274836 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15673228ns 274844 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15673399ns 274847 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15673683ns 274852 1a110850 fd5ff06f jal x0, -44 +15673967ns 274857 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15674251ns 274862 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15674649ns 274869 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15674820ns 274872 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15675274ns 274880 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15675445ns 274883 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15675729ns 274888 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15676013ns 274893 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15676297ns 274898 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15676752ns 274906 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15676922ns 274909 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15677207ns 274914 1a110850 fd5ff06f jal x0, -44 +15677491ns 274919 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15677775ns 274924 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15678173ns 274931 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15678343ns 274934 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15678798ns 274942 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15678968ns 274945 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15679253ns 274950 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15679537ns 274955 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15679821ns 274960 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15680275ns 274968 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15680446ns 274971 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15680730ns 274976 1a110850 fd5ff06f jal x0, -44 +15681014ns 274981 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15681298ns 274986 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15681696ns 274993 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15681867ns 274996 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15682321ns 275004 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15682492ns 275007 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15682776ns 275012 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15683060ns 275017 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15683344ns 275022 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15683799ns 275030 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15683970ns 275033 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15684254ns 275038 1a110850 fd5ff06f jal x0, -44 +15684538ns 275043 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15684822ns 275048 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15685220ns 275055 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15685390ns 275058 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15685845ns 275066 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15686016ns 275069 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15686300ns 275074 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15686584ns 275079 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15686868ns 275084 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15687323ns 275092 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15687493ns 275095 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15687777ns 275100 1a110850 fd5ff06f jal x0, -44 +15688061ns 275105 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15688346ns 275110 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15688743ns 275117 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15688914ns 275120 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15689369ns 275128 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15689539ns 275131 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15689823ns 275136 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15690107ns 275141 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15690392ns 275146 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15690846ns 275154 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15691017ns 275157 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15691301ns 275162 1a110850 fd5ff06f jal x0, -44 +15691585ns 275167 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15691869ns 275172 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15692267ns 275179 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15692438ns 275182 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15692892ns 275190 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15693063ns 275193 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15693347ns 275198 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15693631ns 275203 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15693915ns 275208 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15694370ns 275216 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15694540ns 275219 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15694824ns 275224 1a110850 fd5ff06f jal x0, -44 +15695109ns 275229 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15695393ns 275234 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15695791ns 275241 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15695961ns 275244 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15696416ns 275252 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15696586ns 275255 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15696870ns 275260 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15697155ns 275265 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15697439ns 275270 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15697893ns 275278 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15698064ns 275281 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15698348ns 275286 1a110850 fd5ff06f jal x0, -44 +15698632ns 275291 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15698916ns 275296 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15699314ns 275303 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15699485ns 275306 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15699939ns 275314 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15700110ns 275317 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15700394ns 275322 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15700678ns 275327 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15700962ns 275332 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15701417ns 275340 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15701587ns 275343 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15701872ns 275348 1a110850 fd5ff06f jal x0, -44 +15702156ns 275353 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15702440ns 275358 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15702838ns 275365 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15703008ns 275368 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15703463ns 275376 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15703633ns 275379 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15703918ns 275384 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15704202ns 275389 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15704486ns 275394 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15704941ns 275402 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15705111ns 275405 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15705395ns 275410 1a110850 fd5ff06f jal x0, -44 +15705679ns 275415 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15705964ns 275420 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15706361ns 275427 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15706532ns 275430 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15706987ns 275438 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15707157ns 275441 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15707441ns 275446 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15707725ns 275451 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15708010ns 275456 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15708464ns 275464 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15708635ns 275467 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15708919ns 275472 1a110850 fd5ff06f jal x0, -44 +15709203ns 275477 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15709487ns 275482 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15709885ns 275489 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15710055ns 275492 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15710510ns 275500 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15710681ns 275503 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15710965ns 275508 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15711249ns 275513 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15711533ns 275518 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15711988ns 275526 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15712158ns 275529 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15712442ns 275534 1a110850 fd5ff06f jal x0, -44 +15712727ns 275539 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15713011ns 275544 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15713409ns 275551 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15713579ns 275554 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15714034ns 275562 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15714204ns 275565 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15714488ns 275570 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15714773ns 275575 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15715057ns 275580 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15715511ns 275588 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15715682ns 275591 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15715966ns 275596 1a110850 fd5ff06f jal x0, -44 +15716250ns 275601 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15716534ns 275606 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15716932ns 275613 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15717103ns 275616 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15717557ns 275624 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15717728ns 275627 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15718012ns 275632 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15718296ns 275637 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15718580ns 275642 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15719035ns 275650 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15719205ns 275653 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15719490ns 275658 1a110850 fd5ff06f jal x0, -44 +15719774ns 275663 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15720058ns 275668 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15720456ns 275675 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15720626ns 275678 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15721081ns 275686 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15721251ns 275689 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15721536ns 275694 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15721820ns 275699 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15722104ns 275704 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15722559ns 275712 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15722729ns 275715 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15723013ns 275720 1a110850 fd5ff06f jal x0, -44 +15723297ns 275725 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15723581ns 275730 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15723979ns 275737 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15724150ns 275740 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15724604ns 275748 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15724775ns 275751 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15725059ns 275756 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15725343ns 275761 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15725627ns 275766 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15726082ns 275774 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15726253ns 275777 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15726537ns 275782 1a110850 fd5ff06f jal x0, -44 +15726821ns 275787 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15727105ns 275792 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15727503ns 275799 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15727673ns 275802 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15728128ns 275810 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15728299ns 275813 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15728583ns 275818 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15728867ns 275823 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15729151ns 275828 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15729606ns 275836 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15729776ns 275839 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15730060ns 275844 1a110850 fd5ff06f jal x0, -44 +15730344ns 275849 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15730629ns 275854 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15731026ns 275861 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15731197ns 275864 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15731652ns 275872 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15731822ns 275875 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15732106ns 275880 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15732390ns 275885 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15732675ns 275890 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15733129ns 275898 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15733300ns 275901 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15733584ns 275906 1a110850 fd5ff06f jal x0, -44 +15733868ns 275911 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15734152ns 275916 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15734550ns 275923 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15734721ns 275926 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15735175ns 275934 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15735346ns 275937 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15735630ns 275942 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15735914ns 275947 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15736198ns 275952 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15736653ns 275960 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15736823ns 275963 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15737107ns 275968 1a110850 fd5ff06f jal x0, -44 +15737392ns 275973 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15737676ns 275978 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15738074ns 275985 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15738244ns 275988 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15738699ns 275996 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15738869ns 275999 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15739153ns 276004 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15739438ns 276009 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15739722ns 276014 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15740176ns 276022 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15740347ns 276025 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15740631ns 276030 1a110850 fd5ff06f jal x0, -44 +15740915ns 276035 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15741199ns 276040 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15741597ns 276047 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15741768ns 276050 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15742222ns 276058 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15742393ns 276061 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15742677ns 276066 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15742961ns 276071 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15743245ns 276076 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15743700ns 276084 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15743871ns 276087 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15744155ns 276092 1a110850 fd5ff06f jal x0, -44 +15744439ns 276097 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15744723ns 276102 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15745121ns 276109 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15745291ns 276112 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15745746ns 276120 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15745916ns 276123 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15746201ns 276128 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15746485ns 276133 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15746769ns 276138 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15747224ns 276146 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15747394ns 276149 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15747678ns 276154 1a110850 fd5ff06f jal x0, -44 +15747962ns 276159 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15748247ns 276164 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15748644ns 276171 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15748815ns 276174 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15749270ns 276182 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15749440ns 276185 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15749724ns 276190 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15750008ns 276195 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15750293ns 276200 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15750747ns 276208 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15750918ns 276211 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15751202ns 276216 1a110850 fd5ff06f jal x0, -44 +15751486ns 276221 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15751770ns 276226 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15752168ns 276233 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15752338ns 276236 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15752793ns 276244 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15752964ns 276247 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15753248ns 276252 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15753532ns 276257 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15753816ns 276262 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15754271ns 276270 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15754441ns 276273 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15754725ns 276278 1a110850 fd5ff06f jal x0, -44 +15755010ns 276283 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15755294ns 276288 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15755692ns 276295 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15755862ns 276298 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15756317ns 276306 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15756487ns 276309 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15756771ns 276314 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15757056ns 276319 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15757340ns 276324 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15757794ns 276332 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15757965ns 276335 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15758249ns 276340 1a110850 fd5ff06f jal x0, -44 +15758533ns 276345 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15758817ns 276350 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15759215ns 276357 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15759386ns 276360 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15759840ns 276368 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15760011ns 276371 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15760295ns 276376 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15760579ns 276381 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15760863ns 276386 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15761318ns 276394 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15761488ns 276397 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15761773ns 276402 1a110850 fd5ff06f jal x0, -44 +15762057ns 276407 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15762341ns 276412 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15762739ns 276419 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15762909ns 276422 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15763364ns 276430 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15763534ns 276433 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15763819ns 276438 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15764103ns 276443 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15764387ns 276448 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15764842ns 276456 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15765012ns 276459 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15765296ns 276464 1a110850 fd5ff06f jal x0, -44 +15765580ns 276469 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15765864ns 276474 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15766262ns 276481 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15766433ns 276484 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15766887ns 276492 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15767058ns 276495 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15767342ns 276500 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15767626ns 276505 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15767910ns 276510 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15768365ns 276518 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15768536ns 276521 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15768820ns 276526 1a110850 fd5ff06f jal x0, -44 +15769104ns 276531 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15769388ns 276536 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15769786ns 276543 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15769956ns 276546 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15770411ns 276554 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15770582ns 276557 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15770866ns 276562 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15771150ns 276567 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15771434ns 276572 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15771889ns 276580 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15772059ns 276583 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15772343ns 276588 1a110850 fd5ff06f jal x0, -44 +15772627ns 276593 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15772912ns 276598 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15773309ns 276605 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15773480ns 276608 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15773935ns 276616 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15774105ns 276619 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15774389ns 276624 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15774673ns 276629 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15774958ns 276634 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15775412ns 276642 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15775583ns 276645 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15775867ns 276650 1a110850 fd5ff06f jal x0, -44 +15776151ns 276655 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15776435ns 276660 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15776833ns 276667 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15777004ns 276670 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15777458ns 276678 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15777629ns 276681 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15777913ns 276686 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15778197ns 276691 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15778481ns 276696 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15778936ns 276704 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15779106ns 276707 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15779391ns 276712 1a110850 fd5ff06f jal x0, -44 +15779675ns 276717 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15779959ns 276722 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15780357ns 276729 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15780527ns 276732 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15780982ns 276740 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15781152ns 276743 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15781436ns 276748 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15781721ns 276753 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15782005ns 276758 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15782459ns 276766 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15782630ns 276769 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15782914ns 276774 1a110850 fd5ff06f jal x0, -44 +15783198ns 276779 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15783482ns 276784 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15783880ns 276791 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15784051ns 276794 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15784505ns 276802 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15784676ns 276805 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15784960ns 276810 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15785244ns 276815 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15785528ns 276820 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15785983ns 276828 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15786154ns 276831 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15786438ns 276836 1a110850 fd5ff06f jal x0, -44 +15786722ns 276841 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15787006ns 276846 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15787404ns 276853 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15787574ns 276856 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15788029ns 276864 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15788199ns 276867 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15788484ns 276872 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15788768ns 276877 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15789052ns 276882 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15789507ns 276890 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15789677ns 276893 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15789961ns 276898 1a110850 fd5ff06f jal x0, -44 +15790245ns 276903 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15790530ns 276908 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15790927ns 276915 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15791098ns 276918 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15791553ns 276926 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15791723ns 276929 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15792007ns 276934 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15792291ns 276939 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15792576ns 276944 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15793030ns 276952 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15793201ns 276955 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15793485ns 276960 1a110850 fd5ff06f jal x0, -44 +15793769ns 276965 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15794053ns 276970 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15794451ns 276977 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15794621ns 276980 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15795076ns 276988 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15795247ns 276991 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15795531ns 276996 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15795815ns 277001 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15796099ns 277006 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15796554ns 277014 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15796724ns 277017 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15797008ns 277022 1a110850 fd5ff06f jal x0, -44 +15797293ns 277027 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15797577ns 277032 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15797975ns 277039 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15798145ns 277042 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15798600ns 277050 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15798770ns 277053 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15799054ns 277058 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15799339ns 277063 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15799623ns 277068 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15800077ns 277076 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15800248ns 277079 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15800532ns 277084 1a110850 fd5ff06f jal x0, -44 +15800816ns 277089 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15801100ns 277094 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15801498ns 277101 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15801669ns 277104 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15802123ns 277112 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15802294ns 277115 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15802578ns 277120 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15802862ns 277125 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15803146ns 277130 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15803601ns 277138 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15803771ns 277141 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15804056ns 277146 1a110850 fd5ff06f jal x0, -44 +15804340ns 277151 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15804624ns 277156 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15805022ns 277163 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15805192ns 277166 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15805647ns 277174 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15805817ns 277177 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15806102ns 277182 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15806386ns 277187 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15806670ns 277192 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15807125ns 277200 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15807295ns 277203 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15807579ns 277208 1a110850 fd5ff06f jal x0, -44 +15807863ns 277213 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15808147ns 277218 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15808545ns 277225 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15808716ns 277228 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15809170ns 277236 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15809341ns 277239 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15809625ns 277244 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15809909ns 277249 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15810193ns 277254 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15810648ns 277262 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15810819ns 277265 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15811103ns 277270 1a110850 fd5ff06f jal x0, -44 +15811387ns 277275 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15811671ns 277280 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15812069ns 277287 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15812239ns 277290 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15812694ns 277298 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15812865ns 277301 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15813149ns 277306 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15813433ns 277311 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15813717ns 277316 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15814172ns 277324 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15814342ns 277327 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15814626ns 277332 1a110850 fd5ff06f jal x0, -44 +15814911ns 277337 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15815195ns 277342 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15815592ns 277349 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15815763ns 277352 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15816218ns 277360 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15816388ns 277363 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15816672ns 277368 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15816956ns 277373 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15817241ns 277378 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15817695ns 277386 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15817866ns 277389 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15818150ns 277394 1a110850 fd5ff06f jal x0, -44 +15818434ns 277399 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15818718ns 277404 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15819116ns 277411 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15819287ns 277414 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15819741ns 277422 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15819912ns 277425 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15820196ns 277430 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15820480ns 277435 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15820764ns 277440 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15821219ns 277448 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15821389ns 277451 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15821674ns 277456 1a110850 fd5ff06f jal x0, -44 +15821958ns 277461 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15822242ns 277466 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15822640ns 277473 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15822810ns 277476 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15823265ns 277484 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15823435ns 277487 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15823719ns 277492 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15824004ns 277497 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15824288ns 277502 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15824742ns 277510 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15824913ns 277513 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15825197ns 277518 1a110850 fd5ff06f jal x0, -44 +15825481ns 277523 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15825765ns 277528 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15826163ns 277535 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15826334ns 277538 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15826788ns 277546 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15826959ns 277549 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15827243ns 277554 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15827527ns 277559 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15827811ns 277564 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15828266ns 277572 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15828437ns 277575 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15828721ns 277580 1a110850 fd5ff06f jal x0, -44 +15829005ns 277585 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15829289ns 277590 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15829687ns 277597 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15829857ns 277600 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15830312ns 277608 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15830482ns 277611 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15830767ns 277616 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15831051ns 277621 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15831335ns 277626 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15831790ns 277634 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15831960ns 277637 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15832244ns 277642 1a110850 fd5ff06f jal x0, -44 +15832528ns 277647 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15832813ns 277652 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15833210ns 277659 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15833381ns 277662 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15833836ns 277670 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15834006ns 277673 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15834290ns 277678 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15834574ns 277683 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15834859ns 277688 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15835313ns 277696 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15835484ns 277699 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15835768ns 277704 1a110850 fd5ff06f jal x0, -44 +15836052ns 277709 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15836336ns 277714 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15836734ns 277721 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15836904ns 277724 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15837359ns 277732 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15837530ns 277735 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15837814ns 277740 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15838098ns 277745 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15838382ns 277750 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15838837ns 277758 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15839007ns 277761 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15839291ns 277766 1a110850 fd5ff06f jal x0, -44 +15839576ns 277771 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15839860ns 277776 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15840258ns 277783 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15840428ns 277786 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15840883ns 277794 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15841053ns 277797 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15841337ns 277802 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15841622ns 277807 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15841906ns 277812 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15842360ns 277820 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15842531ns 277823 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15842815ns 277828 1a110850 fd5ff06f jal x0, -44 +15843099ns 277833 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15843383ns 277838 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15843781ns 277845 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15843952ns 277848 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15844406ns 277856 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15844577ns 277859 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15844861ns 277864 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15845145ns 277869 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15845429ns 277874 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15845884ns 277882 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15846054ns 277885 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15846339ns 277890 1a110850 fd5ff06f jal x0, -44 +15846623ns 277895 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15846907ns 277900 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15847305ns 277907 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15847475ns 277910 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15847930ns 277918 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15848100ns 277921 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15848385ns 277926 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15848669ns 277931 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15848953ns 277936 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15849408ns 277944 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15849578ns 277947 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15849862ns 277952 1a110850 fd5ff06f jal x0, -44 +15850146ns 277957 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15850431ns 277962 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15850828ns 277969 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15850999ns 277972 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15851453ns 277980 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15851624ns 277983 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15851908ns 277988 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15852192ns 277993 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15852476ns 277998 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15852931ns 278006 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15853102ns 278009 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15853386ns 278014 1a110850 fd5ff06f jal x0, -44 +15853670ns 278019 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15853954ns 278024 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15854352ns 278031 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15854522ns 278034 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15854977ns 278042 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15855148ns 278045 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15855432ns 278050 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15855716ns 278055 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15856000ns 278060 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15856455ns 278068 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15856625ns 278071 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15856909ns 278076 1a110850 fd5ff06f jal x0, -44 +15857194ns 278081 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15857478ns 278086 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15857875ns 278093 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15858046ns 278096 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15858501ns 278104 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15858671ns 278107 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15858955ns 278112 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15859239ns 278117 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15859524ns 278122 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15859978ns 278130 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15860149ns 278133 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15860433ns 278138 1a110850 fd5ff06f jal x0, -44 +15860717ns 278143 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15861001ns 278148 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15861399ns 278155 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15861570ns 278158 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15862024ns 278166 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15862195ns 278169 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15862479ns 278174 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15862763ns 278179 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15863047ns 278184 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15863502ns 278192 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15863672ns 278195 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15863957ns 278200 1a110850 fd5ff06f jal x0, -44 +15864241ns 278205 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15864525ns 278210 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15864923ns 278217 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15865093ns 278220 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15865548ns 278228 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15865718ns 278231 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15866002ns 278236 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15866287ns 278241 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15866571ns 278246 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15867025ns 278254 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15867196ns 278257 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15867480ns 278262 1a110850 fd5ff06f jal x0, -44 +15867764ns 278267 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15868048ns 278272 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15868446ns 278279 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15868617ns 278282 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15869071ns 278290 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15869242ns 278293 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15869526ns 278298 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15869810ns 278303 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15870094ns 278308 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15870549ns 278316 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15870720ns 278319 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15871004ns 278324 1a110850 fd5ff06f jal x0, -44 +15871288ns 278329 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15871572ns 278334 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15871970ns 278341 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15872140ns 278344 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15872595ns 278352 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15872765ns 278355 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15873050ns 278360 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15873334ns 278365 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15873618ns 278370 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15874073ns 278378 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15874243ns 278381 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15874527ns 278386 1a110850 fd5ff06f jal x0, -44 +15874811ns 278391 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15875096ns 278396 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15875493ns 278403 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15875664ns 278406 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15876119ns 278414 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15876289ns 278417 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15876573ns 278422 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15876857ns 278427 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15877142ns 278432 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15877596ns 278440 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15877767ns 278443 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15878051ns 278448 1a110850 fd5ff06f jal x0, -44 +15878335ns 278453 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15878619ns 278458 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15879017ns 278465 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15879187ns 278468 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15879642ns 278476 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15879813ns 278479 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15880097ns 278484 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15880381ns 278489 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15880665ns 278494 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15881120ns 278502 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15881290ns 278505 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15881574ns 278510 1a110850 fd5ff06f jal x0, -44 +15881859ns 278515 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15882143ns 278520 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15882541ns 278527 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15882711ns 278530 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15883166ns 278538 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15883336ns 278541 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15883620ns 278546 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15883905ns 278551 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15884189ns 278556 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15884643ns 278564 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15884814ns 278567 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15885098ns 278572 1a110850 fd5ff06f jal x0, -44 +15885382ns 278577 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15885666ns 278582 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15886064ns 278589 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15886235ns 278592 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15886689ns 278600 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15886860ns 278603 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15887144ns 278608 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15887428ns 278613 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15887712ns 278618 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15888167ns 278626 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15888337ns 278629 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15888622ns 278634 1a110850 fd5ff06f jal x0, -44 +15888906ns 278639 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15889190ns 278644 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15889588ns 278651 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15889758ns 278654 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15890213ns 278662 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15890383ns 278665 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15890668ns 278670 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15890952ns 278675 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15891236ns 278680 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15891691ns 278688 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15891861ns 278691 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15892145ns 278696 1a110850 fd5ff06f jal x0, -44 +15892429ns 278701 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15892714ns 278706 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15893111ns 278713 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15893282ns 278716 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15893736ns 278724 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15893907ns 278727 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15894191ns 278732 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15894475ns 278737 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15894759ns 278742 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15895214ns 278750 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15895385ns 278753 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15895669ns 278758 1a110850 fd5ff06f jal x0, -44 +15895953ns 278763 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15896237ns 278768 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15896635ns 278775 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15896805ns 278778 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15897260ns 278786 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15897431ns 278789 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15897715ns 278794 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15897999ns 278799 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15898283ns 278804 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15898738ns 278812 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15898908ns 278815 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15899192ns 278820 1a110850 fd5ff06f jal x0, -44 +15899477ns 278825 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15899761ns 278830 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15900159ns 278837 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15900329ns 278840 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15900784ns 278848 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15900954ns 278851 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15901238ns 278856 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15901522ns 278861 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15901807ns 278866 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15902261ns 278874 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15902432ns 278877 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15902716ns 278882 1a110850 fd5ff06f jal x0, -44 +15903000ns 278887 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15903284ns 278892 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15903682ns 278899 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15903853ns 278902 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15904307ns 278910 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15904478ns 278913 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15904762ns 278918 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15905046ns 278923 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15905330ns 278928 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15905785ns 278936 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15905955ns 278939 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15906240ns 278944 1a110850 fd5ff06f jal x0, -44 +15906524ns 278949 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15906808ns 278954 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15907206ns 278961 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15907376ns 278964 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15907831ns 278972 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15908001ns 278975 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15908285ns 278980 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15908570ns 278985 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15908854ns 278990 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15909308ns 278998 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15909479ns 279001 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15909763ns 279006 1a110850 fd5ff06f jal x0, -44 +15910047ns 279011 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15910331ns 279016 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15910729ns 279023 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15910900ns 279026 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15911354ns 279034 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15911525ns 279037 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15911809ns 279042 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15912093ns 279047 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15912377ns 279052 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15912832ns 279060 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15913003ns 279063 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15913287ns 279068 1a110850 fd5ff06f jal x0, -44 +15913571ns 279073 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15913855ns 279078 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15914253ns 279085 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15914423ns 279088 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15914878ns 279096 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15915048ns 279099 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15915333ns 279104 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15915617ns 279109 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15915901ns 279114 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15916356ns 279122 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15916526ns 279125 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15916810ns 279130 1a110850 fd5ff06f jal x0, -44 +15917094ns 279135 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15917379ns 279140 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15917776ns 279147 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15917947ns 279150 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15918402ns 279158 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15918572ns 279161 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15918856ns 279166 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15919140ns 279171 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15919425ns 279176 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15919879ns 279184 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15920050ns 279187 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15920334ns 279192 1a110850 fd5ff06f jal x0, -44 +15920618ns 279197 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15920902ns 279202 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15921300ns 279209 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15921471ns 279212 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15921925ns 279220 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15922096ns 279223 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15922380ns 279228 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15922664ns 279233 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15922948ns 279238 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15923403ns 279246 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15923573ns 279249 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15923857ns 279254 1a110850 fd5ff06f jal x0, -44 +15924142ns 279259 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15924426ns 279264 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15924824ns 279271 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15924994ns 279274 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15925449ns 279282 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15925619ns 279285 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15925903ns 279290 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15926188ns 279295 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15926472ns 279300 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15926926ns 279308 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15927097ns 279311 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15927381ns 279316 1a110850 fd5ff06f jal x0, -44 +15927665ns 279321 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15927949ns 279326 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15928347ns 279333 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15928518ns 279336 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15928972ns 279344 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15929143ns 279347 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15929427ns 279352 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15929711ns 279357 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15929995ns 279362 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15930450ns 279370 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15930620ns 279373 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15930905ns 279378 1a110850 fd5ff06f jal x0, -44 +15931189ns 279383 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15931473ns 279388 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15931871ns 279395 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15932041ns 279398 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15932496ns 279406 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15932666ns 279409 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15932951ns 279414 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15933235ns 279419 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15933519ns 279424 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15933974ns 279432 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15934144ns 279435 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15934428ns 279440 1a110850 fd5ff06f jal x0, -44 +15934712ns 279445 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15934997ns 279450 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15935394ns 279457 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15935565ns 279460 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15936019ns 279468 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15936190ns 279471 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15936474ns 279476 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15936758ns 279481 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15937042ns 279486 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15937497ns 279494 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15937668ns 279497 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15937952ns 279502 1a110850 fd5ff06f jal x0, -44 +15938236ns 279507 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15938520ns 279512 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15938918ns 279519 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15939088ns 279522 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15939543ns 279530 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15939714ns 279533 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15939998ns 279538 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15940282ns 279543 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15940566ns 279548 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15941021ns 279556 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15941191ns 279559 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15941475ns 279564 1a110850 fd5ff06f jal x0, -44 +15941760ns 279569 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15942044ns 279574 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15942442ns 279581 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15942612ns 279584 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15943067ns 279592 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15943237ns 279595 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15943521ns 279600 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15943805ns 279605 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15944090ns 279610 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15944544ns 279618 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15944715ns 279621 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15944999ns 279626 1a110850 fd5ff06f jal x0, -44 +15945283ns 279631 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15945567ns 279636 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15945965ns 279643 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15946136ns 279646 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15946590ns 279654 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15946761ns 279657 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15947045ns 279662 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15947329ns 279667 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15947613ns 279672 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15948068ns 279680 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15948238ns 279683 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15948523ns 279688 1a110850 fd5ff06f jal x0, -44 +15948807ns 279693 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15949091ns 279698 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15949489ns 279705 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15949659ns 279708 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15950114ns 279716 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15950284ns 279719 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15950568ns 279724 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15950853ns 279729 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15951137ns 279734 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15951591ns 279742 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15951762ns 279745 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15952046ns 279750 1a110850 fd5ff06f jal x0, -44 +15952330ns 279755 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15952614ns 279760 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15953012ns 279767 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15953183ns 279770 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15953637ns 279778 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15953808ns 279781 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15954092ns 279786 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15954376ns 279791 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15954660ns 279796 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15955115ns 279804 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15955286ns 279807 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15955570ns 279812 1a110850 fd5ff06f jal x0, -44 +15955854ns 279817 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15956138ns 279822 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15956536ns 279829 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15956706ns 279832 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15957161ns 279840 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15957331ns 279843 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15957616ns 279848 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15957900ns 279853 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15958184ns 279858 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15958639ns 279866 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15958809ns 279869 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15959093ns 279874 1a110850 fd5ff06f jal x0, -44 +15959377ns 279879 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15959662ns 279884 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15960059ns 279891 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15960230ns 279894 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15960685ns 279902 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15960855ns 279905 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15961139ns 279910 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15961423ns 279915 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15961708ns 279920 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15962162ns 279928 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15962333ns 279931 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15962617ns 279936 1a110850 fd5ff06f jal x0, -44 +15962901ns 279941 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15963185ns 279946 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15963583ns 279953 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15963754ns 279956 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15964208ns 279964 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15964379ns 279967 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15964663ns 279972 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15964947ns 279977 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15965231ns 279982 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15965686ns 279990 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15965856ns 279993 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15966140ns 279998 1a110850 fd5ff06f jal x0, -44 +15966425ns 280003 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15966709ns 280008 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15967107ns 280015 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15967277ns 280018 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15967732ns 280026 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15967902ns 280029 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15968186ns 280034 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15968471ns 280039 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15968755ns 280044 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15969209ns 280052 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15969380ns 280055 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15969664ns 280060 1a110850 fd5ff06f jal x0, -44 +15969948ns 280065 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15970232ns 280070 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15970630ns 280077 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15970801ns 280080 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15971255ns 280088 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15971426ns 280091 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15971710ns 280096 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15971994ns 280101 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15972278ns 280106 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15972733ns 280114 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15972903ns 280117 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15973188ns 280122 1a110850 fd5ff06f jal x0, -44 +15973472ns 280127 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15973756ns 280132 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15974154ns 280139 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15974324ns 280142 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15974779ns 280150 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15974949ns 280153 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15975234ns 280158 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15975518ns 280163 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15975802ns 280168 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15976257ns 280176 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15976427ns 280179 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15976711ns 280184 1a110850 fd5ff06f jal x0, -44 +15976995ns 280189 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15977280ns 280194 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15977677ns 280201 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15977848ns 280204 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15978303ns 280212 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15978473ns 280215 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15978757ns 280220 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15979041ns 280225 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15979325ns 280230 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15979780ns 280238 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15979951ns 280241 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15980235ns 280246 1a110850 fd5ff06f jal x0, -44 +15980519ns 280251 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15980803ns 280256 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15981201ns 280263 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15981371ns 280266 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15981826ns 280274 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15981997ns 280277 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15982281ns 280282 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15982565ns 280287 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15982849ns 280292 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15983304ns 280300 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15983474ns 280303 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15983758ns 280308 1a110850 fd5ff06f jal x0, -44 +15984043ns 280313 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15984327ns 280318 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15984725ns 280325 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15984895ns 280328 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15985350ns 280336 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15985520ns 280339 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15985804ns 280344 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15986088ns 280349 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15986373ns 280354 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15986827ns 280362 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15986998ns 280365 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15987282ns 280370 1a110850 fd5ff06f jal x0, -44 +15987566ns 280375 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15987850ns 280380 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15988248ns 280387 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15988419ns 280390 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15988873ns 280398 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15989044ns 280401 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15989328ns 280406 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15989612ns 280411 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15989896ns 280416 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15990351ns 280424 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15990521ns 280427 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15990806ns 280432 1a110850 fd5ff06f jal x0, -44 +15991090ns 280437 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15991374ns 280442 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15991772ns 280449 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15991942ns 280452 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15992397ns 280460 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15992567ns 280463 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15992851ns 280468 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15993136ns 280473 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15993420ns 280478 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15993874ns 280486 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15994045ns 280489 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15994329ns 280494 1a110850 fd5ff06f jal x0, -44 +15994613ns 280499 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15994897ns 280504 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15995295ns 280511 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15995466ns 280514 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15995920ns 280522 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15996091ns 280525 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15996375ns 280530 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15996659ns 280535 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15996943ns 280540 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15997398ns 280548 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +15997569ns 280551 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +15997853ns 280556 1a110850 fd5ff06f jal x0, -44 +15998137ns 280561 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +15998421ns 280566 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +15998819ns 280573 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +15998989ns 280576 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +15999444ns 280584 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +15999615ns 280587 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +15999899ns 280592 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16000183ns 280597 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16000467ns 280602 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16000922ns 280610 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16001092ns 280613 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16001376ns 280618 1a110850 fd5ff06f jal x0, -44 +16001660ns 280623 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16001945ns 280628 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16002342ns 280635 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16002513ns 280638 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16002968ns 280646 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16003138ns 280649 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16003422ns 280654 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16003706ns 280659 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16003991ns 280664 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16004445ns 280672 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16004616ns 280675 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16004900ns 280680 1a110850 fd5ff06f jal x0, -44 +16005184ns 280685 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16005468ns 280690 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16005866ns 280697 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16006037ns 280700 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16006491ns 280708 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16006662ns 280711 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16006946ns 280716 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16007230ns 280721 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16007514ns 280726 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16007969ns 280734 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16008139ns 280737 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16008423ns 280742 1a110850 fd5ff06f jal x0, -44 +16008708ns 280747 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16008992ns 280752 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16009390ns 280759 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16009560ns 280762 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16010015ns 280770 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16010185ns 280773 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16010469ns 280778 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16010754ns 280783 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16011038ns 280788 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16011492ns 280796 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16011663ns 280799 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16011947ns 280804 1a110850 fd5ff06f jal x0, -44 +16012231ns 280809 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16012515ns 280814 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16012913ns 280821 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16013084ns 280824 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16013538ns 280832 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16013709ns 280835 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16013993ns 280840 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16014277ns 280845 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16014561ns 280850 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16015016ns 280858 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16015186ns 280861 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16015471ns 280866 1a110850 fd5ff06f jal x0, -44 +16015755ns 280871 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16016039ns 280876 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16016437ns 280883 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16016607ns 280886 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16017062ns 280894 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16017232ns 280897 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16017517ns 280902 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16017801ns 280907 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16018085ns 280912 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16018540ns 280920 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16018710ns 280923 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16018994ns 280928 1a110850 fd5ff06f jal x0, -44 +16019278ns 280933 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16019563ns 280938 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16019960ns 280945 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16020131ns 280948 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16020586ns 280956 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16020756ns 280959 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16021040ns 280964 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16021324ns 280969 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16021608ns 280974 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16022063ns 280982 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16022234ns 280985 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16022518ns 280990 1a110850 fd5ff06f jal x0, -44 +16022802ns 280995 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16023086ns 281000 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16023484ns 281007 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16023654ns 281010 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16024109ns 281018 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16024280ns 281021 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16024564ns 281026 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16024848ns 281031 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16025132ns 281036 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16025587ns 281044 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16025757ns 281047 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16026041ns 281052 1a110850 fd5ff06f jal x0, -44 +16026326ns 281057 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16026610ns 281062 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16027008ns 281069 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16027178ns 281072 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16027633ns 281080 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16027803ns 281083 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16028087ns 281088 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16028371ns 281093 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16028656ns 281098 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16029110ns 281106 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16029281ns 281109 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16029565ns 281114 1a110850 fd5ff06f jal x0, -44 +16029849ns 281119 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16030133ns 281124 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16030531ns 281131 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16030702ns 281134 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16031156ns 281142 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16031327ns 281145 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16031611ns 281150 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16031895ns 281155 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16032179ns 281160 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16032634ns 281168 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16032804ns 281171 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16033089ns 281176 1a110850 fd5ff06f jal x0, -44 +16033373ns 281181 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16033657ns 281186 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16034055ns 281193 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16034225ns 281196 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16034680ns 281204 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16034850ns 281207 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16035135ns 281212 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16035419ns 281217 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16035703ns 281222 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16036157ns 281230 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16036328ns 281233 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16036612ns 281238 1a110850 fd5ff06f jal x0, -44 +16036896ns 281243 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16037180ns 281248 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16037578ns 281255 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16037749ns 281258 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16038203ns 281266 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16038374ns 281269 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16038658ns 281274 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16038942ns 281279 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16039226ns 281284 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16039681ns 281292 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16039852ns 281295 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16040136ns 281300 1a110850 fd5ff06f jal x0, -44 +16040420ns 281305 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16040704ns 281310 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16041102ns 281317 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16041272ns 281320 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16041727ns 281328 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16041898ns 281331 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16042182ns 281336 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16042466ns 281341 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16042750ns 281346 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16043205ns 281354 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16043375ns 281357 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16043659ns 281362 1a110850 fd5ff06f jal x0, -44 +16043943ns 281367 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16044228ns 281372 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16044625ns 281379 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16044796ns 281382 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16045251ns 281390 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16045421ns 281393 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16045705ns 281398 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16045989ns 281403 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16046274ns 281408 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16046728ns 281416 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16046899ns 281419 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16047183ns 281424 1a110850 fd5ff06f jal x0, -44 +16047467ns 281429 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16047751ns 281434 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16048149ns 281441 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16048320ns 281444 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16048774ns 281452 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16048945ns 281455 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16049229ns 281460 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16049513ns 281465 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16049797ns 281470 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16050252ns 281478 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16050422ns 281481 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16050706ns 281486 1a110850 fd5ff06f jal x0, -44 +16050991ns 281491 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16051275ns 281496 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16051673ns 281503 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16051843ns 281506 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16052298ns 281514 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16052468ns 281517 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16052752ns 281522 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16053037ns 281527 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16053321ns 281532 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16053775ns 281540 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16053946ns 281543 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16054230ns 281548 1a110850 fd5ff06f jal x0, -44 +16054514ns 281553 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16054798ns 281558 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16055196ns 281565 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16055367ns 281568 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16055821ns 281576 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16055992ns 281579 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16056276ns 281584 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16056560ns 281589 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16056844ns 281594 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16057299ns 281602 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16057469ns 281605 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16057754ns 281610 1a110850 fd5ff06f jal x0, -44 +16058038ns 281615 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16058322ns 281620 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16058720ns 281627 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16058890ns 281630 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16059345ns 281638 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16059515ns 281641 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16059800ns 281646 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16060084ns 281651 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16060368ns 281656 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16060823ns 281664 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16060993ns 281667 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16061277ns 281672 1a110850 fd5ff06f jal x0, -44 +16061561ns 281677 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16061846ns 281682 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16062243ns 281689 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16062414ns 281692 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16062869ns 281700 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16063039ns 281703 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16063323ns 281708 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16063607ns 281713 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16063891ns 281718 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16064346ns 281726 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16064517ns 281729 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16064801ns 281734 1a110850 fd5ff06f jal x0, -44 +16065085ns 281739 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16065369ns 281744 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16065767ns 281751 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16065937ns 281754 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16066392ns 281762 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16066563ns 281765 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16066847ns 281770 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16067131ns 281775 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16067415ns 281780 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16067870ns 281788 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16068040ns 281791 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16068324ns 281796 1a110850 fd5ff06f jal x0, -44 +16068609ns 281801 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16068893ns 281806 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16069291ns 281813 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16069461ns 281816 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16069916ns 281824 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16070086ns 281827 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16070370ns 281832 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16070655ns 281837 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16070939ns 281842 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16071393ns 281850 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16071564ns 281853 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16071848ns 281858 1a110850 fd5ff06f jal x0, -44 +16072132ns 281863 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16072416ns 281868 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16072814ns 281875 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16072985ns 281878 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16073439ns 281886 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16073610ns 281889 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16073894ns 281894 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16074178ns 281899 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16074462ns 281904 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16074917ns 281912 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16075087ns 281915 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16075372ns 281920 1a110850 fd5ff06f jal x0, -44 +16075656ns 281925 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16075940ns 281930 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16076338ns 281937 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16076508ns 281940 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16076963ns 281948 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16077133ns 281951 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16077418ns 281956 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16077702ns 281961 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16077986ns 281966 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16078440ns 281974 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16078611ns 281977 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16078895ns 281982 1a110850 fd5ff06f jal x0, -44 +16079179ns 281987 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16079463ns 281992 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16079861ns 281999 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16080032ns 282002 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16080486ns 282010 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16080657ns 282013 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16080941ns 282018 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16081225ns 282023 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16081509ns 282028 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16081964ns 282036 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16082135ns 282039 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16082419ns 282044 1a110850 fd5ff06f jal x0, -44 +16082703ns 282049 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16082987ns 282054 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16083385ns 282061 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16083555ns 282064 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16084010ns 282072 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16084181ns 282075 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16084465ns 282080 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16084749ns 282085 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16085033ns 282090 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16085488ns 282098 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16085658ns 282101 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16085942ns 282106 1a110850 fd5ff06f jal x0, -44 +16086226ns 282111 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16086511ns 282116 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16086908ns 282123 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16087079ns 282126 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16087534ns 282134 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16087704ns 282137 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16087988ns 282142 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16088272ns 282147 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16088557ns 282152 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16089011ns 282160 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16089182ns 282163 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16089466ns 282168 1a110850 fd5ff06f jal x0, -44 +16089750ns 282173 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16090034ns 282178 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16090432ns 282185 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16090603ns 282188 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16091057ns 282196 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16091228ns 282199 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16091512ns 282204 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16091796ns 282209 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16092080ns 282214 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16092535ns 282222 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16092705ns 282225 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16092989ns 282230 1a110850 fd5ff06f jal x0, -44 +16093274ns 282235 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16093558ns 282240 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16093956ns 282247 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16094126ns 282250 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16094581ns 282258 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16094751ns 282261 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16095035ns 282266 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16095320ns 282271 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16095604ns 282276 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16096058ns 282284 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16096229ns 282287 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16096513ns 282292 1a110850 fd5ff06f jal x0, -44 +16096797ns 282297 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16097081ns 282302 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16097479ns 282309 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16097650ns 282312 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16098104ns 282320 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16098275ns 282323 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16098559ns 282328 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16098843ns 282333 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16099127ns 282338 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16099582ns 282346 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16099752ns 282349 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16100037ns 282354 1a110850 fd5ff06f jal x0, -44 +16100321ns 282359 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16100605ns 282364 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16101003ns 282371 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16101173ns 282374 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16101628ns 282382 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16101798ns 282385 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16102083ns 282390 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16102367ns 282395 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16102651ns 282400 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16103106ns 282408 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16103276ns 282411 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16103560ns 282416 1a110850 fd5ff06f jal x0, -44 +16103844ns 282421 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16104129ns 282426 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16104526ns 282433 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16104697ns 282436 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16105152ns 282444 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16105322ns 282447 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16105606ns 282452 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16105890ns 282457 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16106175ns 282462 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16106629ns 282470 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16106800ns 282473 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16107084ns 282478 1a110850 fd5ff06f jal x0, -44 +16107368ns 282483 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16107652ns 282488 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16108050ns 282495 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16108220ns 282498 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16108675ns 282506 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16108846ns 282509 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16109130ns 282514 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16109414ns 282519 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16109698ns 282524 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16110153ns 282532 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16110323ns 282535 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16110607ns 282540 1a110850 fd5ff06f jal x0, -44 +16110892ns 282545 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16111176ns 282550 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16111574ns 282557 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16111744ns 282560 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16112199ns 282568 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16112369ns 282571 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16112653ns 282576 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16112938ns 282581 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16113222ns 282586 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16113676ns 282594 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16113847ns 282597 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16114131ns 282602 1a110850 fd5ff06f jal x0, -44 +16114415ns 282607 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16114699ns 282612 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16115097ns 282619 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16115268ns 282622 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16115722ns 282630 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16115893ns 282633 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16116177ns 282638 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16116461ns 282643 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16116745ns 282648 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16117200ns 282656 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16117370ns 282659 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16117655ns 282664 1a110850 fd5ff06f jal x0, -44 +16117939ns 282669 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16118223ns 282674 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16118621ns 282681 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16118791ns 282684 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16119246ns 282692 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16119416ns 282695 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16119701ns 282700 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16119985ns 282705 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16120269ns 282710 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16120723ns 282718 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16120894ns 282721 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16121178ns 282726 1a110850 fd5ff06f jal x0, -44 +16121462ns 282731 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16121746ns 282736 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16122144ns 282743 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16122315ns 282746 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16122769ns 282754 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16122940ns 282757 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16123224ns 282762 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16123508ns 282767 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16123792ns 282772 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16124247ns 282780 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16124418ns 282783 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16124702ns 282788 1a110850 fd5ff06f jal x0, -44 +16124986ns 282793 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16125270ns 282798 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16125668ns 282805 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16125838ns 282808 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16126293ns 282816 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16126464ns 282819 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16126748ns 282824 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16127032ns 282829 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16127316ns 282834 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16127771ns 282842 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16127941ns 282845 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16128225ns 282850 1a110850 fd5ff06f jal x0, -44 +16128509ns 282855 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16128794ns 282860 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16129191ns 282867 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16129362ns 282870 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16129817ns 282878 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16129987ns 282881 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16130271ns 282886 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16130555ns 282891 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16130840ns 282896 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16131294ns 282904 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16131465ns 282907 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16131749ns 282912 1a110850 fd5ff06f jal x0, -44 +16132033ns 282917 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16132317ns 282922 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16132715ns 282929 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16132886ns 282932 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16133340ns 282940 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16133511ns 282943 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16133795ns 282948 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16134079ns 282953 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16134363ns 282958 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16134818ns 282966 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16134988ns 282969 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16135272ns 282974 1a110850 fd5ff06f jal x0, -44 +16135557ns 282979 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16135841ns 282984 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16136239ns 282991 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16136409ns 282994 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16136864ns 283002 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16137034ns 283005 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16137318ns 283010 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16137603ns 283015 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16137887ns 283020 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16138341ns 283028 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16138512ns 283031 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16138796ns 283036 1a110850 fd5ff06f jal x0, -44 +16139080ns 283041 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16139364ns 283046 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16139762ns 283053 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16139933ns 283056 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16140387ns 283064 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16140558ns 283067 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16140842ns 283072 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16141126ns 283077 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16141410ns 283082 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16141865ns 283090 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16142035ns 283093 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16142320ns 283098 1a110850 fd5ff06f jal x0, -44 +16142604ns 283103 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16142888ns 283108 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16143286ns 283115 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16143456ns 283118 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16143911ns 283126 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16144081ns 283129 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16144366ns 283134 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16144650ns 283139 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16144934ns 283144 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16145389ns 283152 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16145559ns 283155 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16145843ns 283160 1a110850 fd5ff06f jal x0, -44 +16146127ns 283165 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16146412ns 283170 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16146809ns 283177 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16146980ns 283180 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16147435ns 283188 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16147605ns 283191 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16147889ns 283196 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16148173ns 283201 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16148458ns 283206 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16148912ns 283214 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16149083ns 283217 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16149367ns 283222 1a110850 fd5ff06f jal x0, -44 +16149651ns 283227 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16149935ns 283232 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16150333ns 283239 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16150503ns 283242 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16150958ns 283250 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16151129ns 283253 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16151413ns 283258 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16151697ns 283263 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16151981ns 283268 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16152436ns 283276 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16152606ns 283279 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16152890ns 283284 1a110850 fd5ff06f jal x0, -44 +16153175ns 283289 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16153459ns 283294 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16153857ns 283301 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16154027ns 283304 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16154482ns 283312 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16154652ns 283315 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16154936ns 283320 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16155221ns 283325 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16155505ns 283330 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16155959ns 283338 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16156130ns 283341 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16156414ns 283346 1a110850 fd5ff06f jal x0, -44 +16156698ns 283351 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16156982ns 283356 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16157380ns 283363 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16157551ns 283366 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16158005ns 283374 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16158176ns 283377 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16158460ns 283382 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16158744ns 283387 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16159028ns 283392 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16159483ns 283400 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16159653ns 283403 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16159938ns 283408 1a110850 fd5ff06f jal x0, -44 +16160222ns 283413 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16160506ns 283418 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16160904ns 283425 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16161074ns 283428 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16161529ns 283436 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16161699ns 283439 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16161984ns 283444 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16162268ns 283449 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16162552ns 283454 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16163007ns 283462 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16163177ns 283465 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16163461ns 283470 1a110850 fd5ff06f jal x0, -44 +16163745ns 283475 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16164029ns 283480 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16164427ns 283487 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16164598ns 283490 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16165052ns 283498 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16165223ns 283501 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16165507ns 283506 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16165791ns 283511 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16166075ns 283516 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16166530ns 283524 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16166701ns 283527 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16166985ns 283532 1a110850 fd5ff06f jal x0, -44 +16167269ns 283537 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16167553ns 283542 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16167951ns 283549 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16168121ns 283552 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16168576ns 283560 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16168747ns 283563 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16169031ns 283568 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16169315ns 283573 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16169599ns 283578 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16170054ns 283586 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16170224ns 283589 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16170508ns 283594 1a110850 fd5ff06f jal x0, -44 +16170792ns 283599 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16171077ns 283604 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16171474ns 283611 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16171645ns 283614 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16172100ns 283622 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16172270ns 283625 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16172554ns 283630 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16172838ns 283635 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16173123ns 283640 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16173577ns 283648 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16173748ns 283651 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16174032ns 283656 1a110850 fd5ff06f jal x0, -44 +16174316ns 283661 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16174600ns 283666 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16174998ns 283673 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16175169ns 283676 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16175623ns 283684 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16175794ns 283687 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16176078ns 283692 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16176362ns 283697 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16176646ns 283702 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16177101ns 283710 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16177271ns 283713 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16177555ns 283718 1a110850 fd5ff06f jal x0, -44 +16177840ns 283723 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16178124ns 283728 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16178522ns 283735 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16178692ns 283738 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16179147ns 283746 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16179317ns 283749 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16179601ns 283754 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16179886ns 283759 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16180170ns 283764 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16180624ns 283772 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16180795ns 283775 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16181079ns 283780 1a110850 fd5ff06f jal x0, -44 +16181363ns 283785 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16181647ns 283790 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16182045ns 283797 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16182216ns 283800 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16182670ns 283808 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16182841ns 283811 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16183125ns 283816 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16183409ns 283821 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16183693ns 283826 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16184148ns 283834 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16184319ns 283837 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16184603ns 283842 1a110850 fd5ff06f jal x0, -44 +16184887ns 283847 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16185171ns 283852 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16185569ns 283859 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16185739ns 283862 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16186194ns 283870 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16186364ns 283873 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16186649ns 283878 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16186933ns 283883 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16187217ns 283888 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16187672ns 283896 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16187842ns 283899 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16188126ns 283904 1a110850 fd5ff06f jal x0, -44 +16188410ns 283909 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16188695ns 283914 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16189092ns 283921 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16189263ns 283924 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16189718ns 283932 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16189888ns 283935 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16190172ns 283940 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16190456ns 283945 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16190741ns 283950 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16191195ns 283958 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16191366ns 283961 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16191650ns 283966 1a110850 fd5ff06f jal x0, -44 +16191934ns 283971 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16192218ns 283976 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16192616ns 283983 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16192786ns 283986 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16193241ns 283994 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16193412ns 283997 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16193696ns 284002 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16193980ns 284007 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16194264ns 284012 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16194719ns 284020 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16194889ns 284023 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16195173ns 284028 1a110850 fd5ff06f jal x0, -44 +16195458ns 284033 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16195742ns 284038 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16196140ns 284045 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16196310ns 284048 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16196765ns 284056 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16196935ns 284059 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16197219ns 284064 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16197504ns 284069 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16197788ns 284074 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16198242ns 284082 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16198413ns 284085 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16198697ns 284090 1a110850 fd5ff06f jal x0, -44 +16198981ns 284095 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16199265ns 284100 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16199663ns 284107 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16199834ns 284110 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16200288ns 284118 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16200459ns 284121 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16200743ns 284126 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16201027ns 284131 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16201311ns 284136 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16201766ns 284144 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16201936ns 284147 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16202221ns 284152 1a110850 fd5ff06f jal x0, -44 +16202505ns 284157 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16202789ns 284162 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16203187ns 284169 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16203357ns 284172 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16203812ns 284180 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16203982ns 284183 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16204267ns 284188 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16204551ns 284193 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16204835ns 284198 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16205290ns 284206 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16205460ns 284209 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16205744ns 284214 1a110850 fd5ff06f jal x0, -44 +16206028ns 284219 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16206312ns 284224 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16206710ns 284231 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16206881ns 284234 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16207335ns 284242 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16207506ns 284245 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16207790ns 284250 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16208074ns 284255 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16208358ns 284260 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16208813ns 284268 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16208984ns 284271 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16209268ns 284276 1a110850 fd5ff06f jal x0, -44 +16209552ns 284281 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16209836ns 284286 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16210234ns 284293 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16210404ns 284296 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16210859ns 284304 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16211030ns 284307 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16211314ns 284312 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16211598ns 284317 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16211882ns 284322 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16212337ns 284330 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16212507ns 284333 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16212791ns 284338 1a110850 fd5ff06f jal x0, -44 +16213075ns 284343 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16213360ns 284348 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16213757ns 284355 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16213928ns 284358 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16214383ns 284366 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16214553ns 284369 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16214837ns 284374 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16215121ns 284379 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16215406ns 284384 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16215860ns 284392 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16216031ns 284395 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16216315ns 284400 1a110850 fd5ff06f jal x0, -44 +16216599ns 284405 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16216883ns 284410 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16217281ns 284417 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16217452ns 284420 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16217906ns 284428 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16218077ns 284431 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16218361ns 284436 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16218645ns 284441 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16218929ns 284446 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16219384ns 284454 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16219554ns 284457 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16219839ns 284462 1a110850 fd5ff06f jal x0, -44 +16220123ns 284467 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16220407ns 284472 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16220805ns 284479 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16220975ns 284482 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16221430ns 284490 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16221600ns 284493 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16221884ns 284498 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16222169ns 284503 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16222453ns 284508 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16222907ns 284516 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16223078ns 284519 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16223362ns 284524 1a110850 fd5ff06f jal x0, -44 +16223646ns 284529 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16223930ns 284534 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16224328ns 284541 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16224499ns 284544 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16224953ns 284552 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16225124ns 284555 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16225408ns 284560 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16225692ns 284565 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16225976ns 284570 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16226431ns 284578 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16226602ns 284581 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16226886ns 284586 1a110850 fd5ff06f jal x0, -44 +16227170ns 284591 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16227454ns 284596 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16227852ns 284603 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16228022ns 284606 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16228477ns 284614 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16228647ns 284617 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16228932ns 284622 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16229216ns 284627 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16229500ns 284632 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16229955ns 284640 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16230125ns 284643 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16230409ns 284648 1a110850 fd5ff06f jal x0, -44 +16230693ns 284653 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16230978ns 284658 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16231375ns 284665 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16231546ns 284668 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16232001ns 284676 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16232171ns 284679 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16232455ns 284684 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16232739ns 284689 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16233024ns 284694 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16233478ns 284702 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16233649ns 284705 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16233933ns 284710 1a110850 fd5ff06f jal x0, -44 +16234217ns 284715 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16234501ns 284720 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16234899ns 284727 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16235069ns 284730 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16235524ns 284738 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16235695ns 284741 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16235979ns 284746 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16236263ns 284751 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16236547ns 284756 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16237002ns 284764 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16237172ns 284767 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16237456ns 284772 1a110850 fd5ff06f jal x0, -44 +16237741ns 284777 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16238025ns 284782 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16238423ns 284789 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16238593ns 284792 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16239048ns 284800 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16239218ns 284803 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16239502ns 284808 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16239787ns 284813 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16240071ns 284818 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16240525ns 284826 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16240696ns 284829 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16240980ns 284834 1a110850 fd5ff06f jal x0, -44 +16241264ns 284839 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16241548ns 284844 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16241946ns 284851 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16242117ns 284854 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16242571ns 284862 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16242742ns 284865 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16243026ns 284870 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16243310ns 284875 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16243594ns 284880 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16244049ns 284888 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16244219ns 284891 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16244504ns 284896 1a110850 fd5ff06f jal x0, -44 +16244788ns 284901 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16245072ns 284906 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16245470ns 284913 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16245640ns 284916 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16246095ns 284924 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16246265ns 284927 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16246550ns 284932 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16246834ns 284937 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16247118ns 284942 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16247573ns 284950 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16247743ns 284953 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16248027ns 284958 1a110850 fd5ff06f jal x0, -44 +16248311ns 284963 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16248595ns 284968 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16248993ns 284975 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16249164ns 284978 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16249618ns 284986 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16249789ns 284989 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16250073ns 284994 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16250357ns 284999 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16250641ns 285004 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16251096ns 285012 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16251267ns 285015 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16251551ns 285020 1a110850 fd5ff06f jal x0, -44 +16251835ns 285025 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16252119ns 285030 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16252517ns 285037 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16252687ns 285040 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16253142ns 285048 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16253313ns 285051 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16253597ns 285056 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16253881ns 285061 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16254165ns 285066 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16254620ns 285074 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16254790ns 285077 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16255074ns 285082 1a110850 fd5ff06f jal x0, -44 +16255359ns 285087 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16255643ns 285092 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16256040ns 285099 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16256211ns 285102 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16256666ns 285110 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16256836ns 285113 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16257120ns 285118 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16257404ns 285123 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16257689ns 285128 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16258143ns 285136 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16258314ns 285139 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16258598ns 285144 1a110850 fd5ff06f jal x0, -44 +16258882ns 285149 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16259166ns 285154 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16259564ns 285161 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16259735ns 285164 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16260189ns 285172 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16260360ns 285175 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16260644ns 285180 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16260928ns 285185 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16261212ns 285190 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16261667ns 285198 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16261837ns 285201 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16262122ns 285206 1a110850 fd5ff06f jal x0, -44 +16262406ns 285211 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16262690ns 285216 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16263088ns 285223 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16263258ns 285226 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16263713ns 285234 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16263883ns 285237 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16264167ns 285242 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16264452ns 285247 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16264736ns 285252 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16265190ns 285260 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16265361ns 285263 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16265645ns 285268 1a110850 fd5ff06f jal x0, -44 +16265929ns 285273 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16266213ns 285278 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16266611ns 285285 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16266782ns 285288 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16267236ns 285296 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16267407ns 285299 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16267691ns 285304 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16267975ns 285309 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16268259ns 285314 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16268714ns 285322 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16268885ns 285325 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16269169ns 285330 1a110850 fd5ff06f jal x0, -44 +16269453ns 285335 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16269737ns 285340 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16270135ns 285347 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16270305ns 285350 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16270760ns 285358 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16270930ns 285361 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16271215ns 285366 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16271499ns 285371 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16271783ns 285376 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16272238ns 285384 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16272408ns 285387 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16272692ns 285392 1a110850 fd5ff06f jal x0, -44 +16272976ns 285397 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16273261ns 285402 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16273658ns 285409 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16273829ns 285412 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16274284ns 285420 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16274454ns 285423 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16274738ns 285428 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16275022ns 285433 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16275307ns 285438 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16275761ns 285446 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16275932ns 285449 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16276216ns 285454 1a110850 fd5ff06f jal x0, -44 +16276500ns 285459 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16276784ns 285464 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16277182ns 285471 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16277352ns 285474 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16277807ns 285482 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16277978ns 285485 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16278262ns 285490 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16278546ns 285495 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16278830ns 285500 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16279285ns 285508 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16279455ns 285511 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16279739ns 285516 1a110850 fd5ff06f jal x0, -44 +16280024ns 285521 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16280308ns 285526 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16280706ns 285533 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16280876ns 285536 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16281331ns 285544 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16281501ns 285547 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16281785ns 285552 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16282070ns 285557 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16282354ns 285562 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16282808ns 285570 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16282979ns 285573 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16283263ns 285578 1a110850 fd5ff06f jal x0, -44 +16283547ns 285583 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16283831ns 285588 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16284229ns 285595 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16284400ns 285598 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16284854ns 285606 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16285025ns 285609 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16285309ns 285614 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16285593ns 285619 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16285877ns 285624 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16286332ns 285632 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16286502ns 285635 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16286787ns 285640 1a110850 fd5ff06f jal x0, -44 +16287071ns 285645 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16287355ns 285650 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16287753ns 285657 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16287923ns 285660 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16288378ns 285668 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16288548ns 285671 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16288833ns 285676 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16289117ns 285681 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16289401ns 285686 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16289856ns 285694 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16290026ns 285697 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16290310ns 285702 1a110850 fd5ff06f jal x0, -44 +16290594ns 285707 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16290879ns 285712 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16291276ns 285719 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16291447ns 285722 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16291901ns 285730 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16292072ns 285733 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16292356ns 285738 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16292640ns 285743 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16292924ns 285748 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16293379ns 285756 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16293550ns 285759 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16293834ns 285764 1a110850 fd5ff06f jal x0, -44 +16294118ns 285769 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16294402ns 285774 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16294800ns 285781 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16294970ns 285784 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16295425ns 285792 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16295596ns 285795 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16295880ns 285800 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16296164ns 285805 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16296448ns 285810 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16296903ns 285818 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16297073ns 285821 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16297357ns 285826 1a110850 fd5ff06f jal x0, -44 +16297642ns 285831 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16297926ns 285836 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16298323ns 285843 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16298494ns 285846 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16298949ns 285854 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16299119ns 285857 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16299403ns 285862 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16299687ns 285867 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16299972ns 285872 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16300426ns 285880 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16300597ns 285883 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16300881ns 285888 1a110850 fd5ff06f jal x0, -44 +16301165ns 285893 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16301449ns 285898 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16301847ns 285905 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16302018ns 285908 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16302472ns 285916 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16302643ns 285919 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16302927ns 285924 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16303211ns 285929 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16303495ns 285934 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16303950ns 285942 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16304120ns 285945 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16304405ns 285950 1a110850 fd5ff06f jal x0, -44 +16304689ns 285955 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16304973ns 285960 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16305371ns 285967 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16305541ns 285970 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16305996ns 285978 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16306166ns 285981 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16306450ns 285986 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16306735ns 285991 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16307019ns 285996 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16307473ns 286004 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16307644ns 286007 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16307928ns 286012 1a110850 fd5ff06f jal x0, -44 +16308212ns 286017 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16308496ns 286022 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16308894ns 286029 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16309065ns 286032 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16309519ns 286040 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16309690ns 286043 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16309974ns 286048 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16310258ns 286053 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16310542ns 286058 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16310997ns 286066 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16311168ns 286069 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16311452ns 286074 1a110850 fd5ff06f jal x0, -44 +16311736ns 286079 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16312020ns 286084 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16312418ns 286091 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16312588ns 286094 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16313043ns 286102 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16313213ns 286105 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16313498ns 286110 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16313782ns 286115 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16314066ns 286120 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16314521ns 286128 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16314691ns 286131 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16314975ns 286136 1a110850 fd5ff06f jal x0, -44 +16315259ns 286141 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16315544ns 286146 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16315941ns 286153 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16316112ns 286156 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16316567ns 286164 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16316737ns 286167 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16317021ns 286172 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16317305ns 286177 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16317590ns 286182 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16318044ns 286190 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16318215ns 286193 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16318499ns 286198 1a110850 fd5ff06f jal x0, -44 +16318783ns 286203 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16319067ns 286208 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16319465ns 286215 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16319635ns 286218 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16320090ns 286226 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16320261ns 286229 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16320545ns 286234 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16320829ns 286239 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16321113ns 286244 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16321568ns 286252 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16321738ns 286255 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16322022ns 286260 1a110850 fd5ff06f jal x0, -44 +16322307ns 286265 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16322591ns 286270 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16322989ns 286277 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16323159ns 286280 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16323614ns 286288 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16323784ns 286291 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16324068ns 286296 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16324353ns 286301 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16324637ns 286306 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16325091ns 286314 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16325262ns 286317 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16325546ns 286322 1a110850 fd5ff06f jal x0, -44 +16325830ns 286327 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16326114ns 286332 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16326512ns 286339 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16326683ns 286342 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16327137ns 286350 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16327308ns 286353 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16327592ns 286358 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16327876ns 286363 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16328160ns 286368 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16328615ns 286376 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16328785ns 286379 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16329070ns 286384 1a110850 fd5ff06f jal x0, -44 +16329354ns 286389 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16329638ns 286394 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16330036ns 286401 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16330206ns 286404 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16330661ns 286412 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16330831ns 286415 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16331116ns 286420 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16331400ns 286425 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16331684ns 286430 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16332139ns 286438 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16332309ns 286441 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16332593ns 286446 1a110850 fd5ff06f jal x0, -44 +16332877ns 286451 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16333162ns 286456 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16333559ns 286463 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16333730ns 286466 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16334184ns 286474 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16334355ns 286477 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16334639ns 286482 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16334923ns 286487 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16335207ns 286492 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16335662ns 286500 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16335833ns 286503 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16336117ns 286508 1a110850 fd5ff06f jal x0, -44 +16336401ns 286513 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16336685ns 286518 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16337083ns 286525 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16337253ns 286528 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16337708ns 286536 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16337879ns 286539 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16338163ns 286544 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16338447ns 286549 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16338731ns 286554 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16339186ns 286562 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16339356ns 286565 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16339640ns 286570 1a110850 fd5ff06f jal x0, -44 +16339925ns 286575 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16340209ns 286580 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16340607ns 286587 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16340777ns 286590 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16341232ns 286598 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16341402ns 286601 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16341686ns 286606 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16341970ns 286611 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16342255ns 286616 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16342709ns 286624 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16342880ns 286627 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16343164ns 286632 1a110850 fd5ff06f jal x0, -44 +16343448ns 286637 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16343732ns 286642 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16344130ns 286649 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16344301ns 286652 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16344755ns 286660 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16344926ns 286663 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16345210ns 286668 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16345494ns 286673 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16345778ns 286678 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16346233ns 286686 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16346403ns 286689 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16346688ns 286694 1a110850 fd5ff06f jal x0, -44 +16346972ns 286699 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16347256ns 286704 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16347654ns 286711 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16347824ns 286714 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16348279ns 286722 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16348449ns 286725 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16348733ns 286730 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16349018ns 286735 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16349302ns 286740 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16349756ns 286748 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16349927ns 286751 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16350211ns 286756 1a110850 fd5ff06f jal x0, -44 +16350495ns 286761 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16350779ns 286766 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16351177ns 286773 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16351348ns 286776 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16351802ns 286784 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16351973ns 286787 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16352257ns 286792 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16352541ns 286797 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16352825ns 286802 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16353280ns 286810 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16353451ns 286813 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16353735ns 286818 1a110850 fd5ff06f jal x0, -44 +16354019ns 286823 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16354303ns 286828 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16354701ns 286835 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16354871ns 286838 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16355326ns 286846 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16355496ns 286849 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16355781ns 286854 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16356065ns 286859 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16356349ns 286864 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16356804ns 286872 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16356974ns 286875 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16357258ns 286880 1a110850 fd5ff06f jal x0, -44 +16357542ns 286885 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16357827ns 286890 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16358224ns 286897 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16358395ns 286900 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16358850ns 286908 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16359020ns 286911 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16359304ns 286916 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16359588ns 286921 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16359873ns 286926 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16360327ns 286934 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16360498ns 286937 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16360782ns 286942 1a110850 fd5ff06f jal x0, -44 +16361066ns 286947 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16361350ns 286952 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16361748ns 286959 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16361919ns 286962 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16362373ns 286970 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16362544ns 286973 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16362828ns 286978 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16363112ns 286983 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16363396ns 286988 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16363851ns 286996 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16364021ns 286999 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16364305ns 287004 1a110850 fd5ff06f jal x0, -44 +16364590ns 287009 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16364874ns 287014 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16365272ns 287021 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16365442ns 287024 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16365897ns 287032 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16366067ns 287035 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16366351ns 287040 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16366636ns 287045 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16366920ns 287050 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16367374ns 287058 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16367545ns 287061 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16367829ns 287066 1a110850 fd5ff06f jal x0, -44 +16368113ns 287071 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16368397ns 287076 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16368795ns 287083 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16368966ns 287086 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16369420ns 287094 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16369591ns 287097 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16369875ns 287102 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16370159ns 287107 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16370443ns 287112 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16370898ns 287120 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16371068ns 287123 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16371353ns 287128 1a110850 fd5ff06f jal x0, -44 +16371637ns 287133 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16371921ns 287138 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16372319ns 287145 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16372489ns 287148 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16372944ns 287156 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16373114ns 287159 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16373399ns 287164 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16373683ns 287169 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16373967ns 287174 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16374422ns 287182 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16374592ns 287185 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16374876ns 287190 1a110850 fd5ff06f jal x0, -44 +16375160ns 287195 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16375445ns 287200 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16375842ns 287207 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16376013ns 287210 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16376467ns 287218 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16376638ns 287221 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16376922ns 287226 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16377206ns 287231 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16377490ns 287236 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16377945ns 287244 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16378116ns 287247 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16378400ns 287252 1a110850 fd5ff06f jal x0, -44 +16378684ns 287257 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16378968ns 287262 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16379366ns 287269 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16379536ns 287272 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16379991ns 287280 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16380162ns 287283 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16380446ns 287288 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16380730ns 287293 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16381014ns 287298 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16381469ns 287306 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16381639ns 287309 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16381923ns 287314 1a110850 fd5ff06f jal x0, -44 +16382208ns 287319 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16382492ns 287324 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16382890ns 287331 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16383060ns 287334 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16383515ns 287342 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16383685ns 287345 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16383969ns 287350 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16384253ns 287355 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16384538ns 287360 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16384992ns 287368 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16385163ns 287371 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16385447ns 287376 1a110850 fd5ff06f jal x0, -44 +16385731ns 287381 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16386015ns 287386 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16386413ns 287393 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16386584ns 287396 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16387038ns 287404 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16387209ns 287407 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16387493ns 287412 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16387777ns 287417 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16388061ns 287422 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16388516ns 287430 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16388686ns 287433 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16388971ns 287438 1a110850 fd5ff06f jal x0, -44 +16389255ns 287443 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16389539ns 287448 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16389937ns 287455 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16390107ns 287458 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16390562ns 287466 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16390732ns 287469 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16391016ns 287474 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16391301ns 287479 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16391585ns 287484 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16392039ns 287492 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16392210ns 287495 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16392494ns 287500 1a110850 fd5ff06f jal x0, -44 +16392778ns 287505 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16393062ns 287510 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16393460ns 287517 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16393631ns 287520 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16394085ns 287528 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16394256ns 287531 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16394540ns 287536 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16394824ns 287541 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16395108ns 287546 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16395563ns 287554 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16395734ns 287557 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16396018ns 287562 1a110850 fd5ff06f jal x0, -44 +16396302ns 287567 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16396586ns 287572 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16396984ns 287579 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16397154ns 287582 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16397609ns 287590 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16397779ns 287593 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16398064ns 287598 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16398348ns 287603 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16398632ns 287608 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16399087ns 287616 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16399257ns 287619 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16399541ns 287624 1a110850 fd5ff06f jal x0, -44 +16399825ns 287629 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16400110ns 287634 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16400507ns 287641 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16400678ns 287644 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16401133ns 287652 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16401303ns 287655 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16401587ns 287660 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16401871ns 287665 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16402156ns 287670 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16402610ns 287678 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16402781ns 287681 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16403065ns 287686 1a110850 fd5ff06f jal x0, -44 +16403349ns 287691 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16403633ns 287696 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16404031ns 287703 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16404202ns 287706 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16404656ns 287714 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16404827ns 287717 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16405111ns 287722 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16405395ns 287727 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16405679ns 287732 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16406134ns 287740 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16406304ns 287743 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16406588ns 287748 1a110850 fd5ff06f jal x0, -44 +16406873ns 287753 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16407157ns 287758 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16407555ns 287765 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16407725ns 287768 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16408180ns 287776 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16408350ns 287779 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16408634ns 287784 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16408919ns 287789 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16409203ns 287794 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16409657ns 287802 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16409828ns 287805 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16410112ns 287810 1a110850 fd5ff06f jal x0, -44 +16410396ns 287815 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16410680ns 287820 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16411078ns 287827 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16411249ns 287830 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16411703ns 287838 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16411874ns 287841 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16412158ns 287846 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16412442ns 287851 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16412726ns 287856 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16413181ns 287864 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16413351ns 287867 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16413636ns 287872 1a110850 fd5ff06f jal x0, -44 +16413920ns 287877 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16414204ns 287882 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16414602ns 287889 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16414772ns 287892 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16415227ns 287900 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16415397ns 287903 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16415682ns 287908 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16415966ns 287913 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16416250ns 287918 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16416705ns 287926 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16416875ns 287929 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16417159ns 287934 1a110850 fd5ff06f jal x0, -44 +16417443ns 287939 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16417728ns 287944 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16418125ns 287951 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16418296ns 287954 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16418751ns 287962 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16418921ns 287965 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16419205ns 287970 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16419489ns 287975 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16419773ns 287980 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16420228ns 287988 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16420399ns 287991 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16420683ns 287996 1a110850 fd5ff06f jal x0, -44 +16420967ns 288001 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16421251ns 288006 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16421649ns 288013 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16421819ns 288016 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16422274ns 288024 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16422445ns 288027 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16422729ns 288032 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16423013ns 288037 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16423297ns 288042 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16423752ns 288050 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16423922ns 288053 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16424206ns 288058 1a110850 fd5ff06f jal x0, -44 +16424491ns 288063 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16424775ns 288068 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16425173ns 288075 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16425343ns 288078 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16425798ns 288086 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16425968ns 288089 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16426252ns 288094 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16426536ns 288099 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16426821ns 288104 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16427275ns 288112 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16427446ns 288115 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16427730ns 288120 1a110850 fd5ff06f jal x0, -44 +16428014ns 288125 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16428298ns 288130 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16428696ns 288137 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16428867ns 288140 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16429321ns 288148 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16429492ns 288151 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16429776ns 288156 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16430060ns 288161 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16430344ns 288166 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16430799ns 288174 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16430969ns 288177 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16431254ns 288182 1a110850 fd5ff06f jal x0, -44 +16431538ns 288187 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16431822ns 288192 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16432220ns 288199 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16432390ns 288202 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16432845ns 288210 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16433015ns 288213 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16433299ns 288218 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16433584ns 288223 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16433868ns 288228 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16434322ns 288236 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16434493ns 288239 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16434777ns 288244 1a110850 fd5ff06f jal x0, -44 +16435061ns 288249 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16435345ns 288254 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16435743ns 288261 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16435914ns 288264 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16436368ns 288272 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16436539ns 288275 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16436823ns 288280 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16437107ns 288285 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16437391ns 288290 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16437846ns 288298 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16438017ns 288301 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16438301ns 288306 1a110850 fd5ff06f jal x0, -44 +16438585ns 288311 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16438869ns 288316 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16439267ns 288323 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16439437ns 288326 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16439892ns 288334 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16440063ns 288337 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16440347ns 288342 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16440631ns 288347 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16440915ns 288352 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16441370ns 288360 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16441540ns 288363 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16441824ns 288368 1a110850 fd5ff06f jal x0, -44 +16442108ns 288373 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16442393ns 288378 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16442790ns 288385 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16442961ns 288388 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16443416ns 288396 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16443586ns 288399 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16443870ns 288404 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16444154ns 288409 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16444439ns 288414 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16444893ns 288422 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16445064ns 288425 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16445348ns 288430 1a110850 fd5ff06f jal x0, -44 +16445632ns 288435 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16445916ns 288440 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16446314ns 288447 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16446485ns 288450 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16446939ns 288458 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16447110ns 288461 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16447394ns 288466 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16447678ns 288471 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16447962ns 288476 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16448417ns 288484 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16448587ns 288487 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16448871ns 288492 1a110850 fd5ff06f jal x0, -44 +16449156ns 288497 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16449440ns 288502 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16449838ns 288509 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16450008ns 288512 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16450463ns 288520 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16450633ns 288523 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16450917ns 288528 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16451202ns 288533 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16451486ns 288538 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16451940ns 288546 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16452111ns 288549 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16452395ns 288554 1a110850 fd5ff06f jal x0, -44 +16452679ns 288559 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16452963ns 288564 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16453361ns 288571 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16453532ns 288574 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16453986ns 288582 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16454157ns 288585 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16454441ns 288590 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16454725ns 288595 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16455009ns 288600 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16455464ns 288608 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16455634ns 288611 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16455919ns 288616 1a110850 fd5ff06f jal x0, -44 +16456203ns 288621 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16456487ns 288626 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16456885ns 288633 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16457055ns 288636 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16457510ns 288644 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16457680ns 288647 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16457965ns 288652 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16458249ns 288657 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16458533ns 288662 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16458988ns 288670 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16459158ns 288673 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16459442ns 288678 1a110850 fd5ff06f jal x0, -44 +16459726ns 288683 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16460011ns 288688 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16460408ns 288695 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16460579ns 288698 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16461034ns 288706 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16461204ns 288709 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16461488ns 288714 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16461772ns 288719 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16462056ns 288724 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16462511ns 288732 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16462682ns 288735 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16462966ns 288740 1a110850 fd5ff06f jal x0, -44 +16463250ns 288745 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16463534ns 288750 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16463932ns 288757 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16464102ns 288760 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16464557ns 288768 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16464728ns 288771 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16465012ns 288776 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16465296ns 288781 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16465580ns 288786 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16466035ns 288794 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16466205ns 288797 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16466489ns 288802 1a110850 fd5ff06f jal x0, -44 +16466774ns 288807 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16467058ns 288812 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16467456ns 288819 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16467626ns 288822 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16468081ns 288830 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16468251ns 288833 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16468535ns 288838 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16468819ns 288843 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16469104ns 288848 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16469558ns 288856 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16469729ns 288859 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16470013ns 288864 1a110850 fd5ff06f jal x0, -44 +16470297ns 288869 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16470581ns 288874 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16470979ns 288881 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16471150ns 288884 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16471604ns 288892 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16471775ns 288895 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16472059ns 288900 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16472343ns 288905 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16472627ns 288910 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16473082ns 288918 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16473252ns 288921 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16473537ns 288926 1a110850 fd5ff06f jal x0, -44 +16473821ns 288931 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16474105ns 288936 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16474503ns 288943 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16474673ns 288946 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16475128ns 288954 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16475298ns 288957 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16475583ns 288962 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16475867ns 288967 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16476151ns 288972 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16476605ns 288980 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16476776ns 288983 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16477060ns 288988 1a110850 fd5ff06f jal x0, -44 +16477344ns 288993 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16477628ns 288998 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16478026ns 289005 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16478197ns 289008 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16478651ns 289016 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16478822ns 289019 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16479106ns 289024 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16479390ns 289029 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16479674ns 289034 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16480129ns 289042 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16480300ns 289045 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16480584ns 289050 1a110850 fd5ff06f jal x0, -44 +16480868ns 289055 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16481152ns 289060 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16481550ns 289067 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16481720ns 289070 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16482175ns 289078 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16482346ns 289081 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16482630ns 289086 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16482914ns 289091 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16483198ns 289096 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16483653ns 289104 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16483823ns 289107 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16484107ns 289112 1a110850 fd5ff06f jal x0, -44 +16484391ns 289117 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16484676ns 289122 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16485073ns 289129 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16485244ns 289132 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16485699ns 289140 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16485869ns 289143 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16486153ns 289148 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16486437ns 289153 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16486722ns 289158 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16487176ns 289166 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16487347ns 289169 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16487631ns 289174 1a110850 fd5ff06f jal x0, -44 +16487915ns 289179 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16488199ns 289184 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16488597ns 289191 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16488768ns 289194 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16489222ns 289202 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16489393ns 289205 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16489677ns 289210 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16489961ns 289215 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16490245ns 289220 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16490700ns 289228 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16490870ns 289231 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16491154ns 289236 1a110850 fd5ff06f jal x0, -44 +16491439ns 289241 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16491723ns 289246 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16492121ns 289253 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16492291ns 289256 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16492746ns 289264 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16492916ns 289267 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16493200ns 289272 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16493485ns 289277 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16493769ns 289282 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16494223ns 289290 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16494394ns 289293 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16494678ns 289298 1a110850 fd5ff06f jal x0, -44 +16494962ns 289303 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16495246ns 289308 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16495644ns 289315 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16495815ns 289318 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16496269ns 289326 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16496440ns 289329 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16496724ns 289334 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16497008ns 289339 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16497292ns 289344 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16497747ns 289352 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16497917ns 289355 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16498202ns 289360 1a110850 fd5ff06f jal x0, -44 +16498486ns 289365 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16498770ns 289370 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16499168ns 289377 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16499338ns 289380 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16499793ns 289388 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16499963ns 289391 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16500248ns 289396 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16500532ns 289401 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16500816ns 289406 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16501271ns 289414 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16501441ns 289417 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16501725ns 289422 1a110850 fd5ff06f jal x0, -44 +16502009ns 289427 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16502294ns 289432 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16502691ns 289439 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16502862ns 289442 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16503317ns 289450 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16503487ns 289453 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16503771ns 289458 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16504055ns 289463 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16504339ns 289468 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16504794ns 289476 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16504965ns 289479 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16505249ns 289484 1a110850 fd5ff06f jal x0, -44 +16505533ns 289489 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16505817ns 289494 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16506215ns 289501 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16506385ns 289504 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16506840ns 289512 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16507011ns 289515 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16507295ns 289520 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16507579ns 289525 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16507863ns 289530 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16508318ns 289538 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16508488ns 289541 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16508772ns 289546 1a110850 fd5ff06f jal x0, -44 +16509057ns 289551 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16509341ns 289556 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16509739ns 289563 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16509909ns 289566 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16510364ns 289574 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16510534ns 289577 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16510818ns 289582 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16511103ns 289587 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16511387ns 289592 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16511841ns 289600 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16512012ns 289603 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16512296ns 289608 1a110850 fd5ff06f jal x0, -44 +16512580ns 289613 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16512864ns 289618 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16513262ns 289625 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16513433ns 289628 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16513887ns 289636 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16514058ns 289639 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16514342ns 289644 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16514626ns 289649 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16514910ns 289654 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16515365ns 289662 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16515535ns 289665 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16515820ns 289670 1a110850 fd5ff06f jal x0, -44 +16516104ns 289675 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16516388ns 289680 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16516786ns 289687 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16516956ns 289690 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16517411ns 289698 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16517581ns 289701 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16517866ns 289706 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16518150ns 289711 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16518434ns 289716 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16518888ns 289724 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16519059ns 289727 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16519343ns 289732 1a110850 fd5ff06f jal x0, -44 +16519627ns 289737 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16519911ns 289742 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16520309ns 289749 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16520480ns 289752 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16520934ns 289760 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16521105ns 289763 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16521389ns 289768 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16521673ns 289773 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16521957ns 289778 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16522412ns 289786 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16522583ns 289789 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16522867ns 289794 1a110850 fd5ff06f jal x0, -44 +16523151ns 289799 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16523435ns 289804 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16523833ns 289811 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16524003ns 289814 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16524458ns 289822 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16524629ns 289825 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16524913ns 289830 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16525197ns 289835 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16525481ns 289840 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16525936ns 289848 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16526106ns 289851 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16526390ns 289856 1a110850 fd5ff06f jal x0, -44 +16526674ns 289861 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16526959ns 289866 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16527356ns 289873 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16527527ns 289876 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16527982ns 289884 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16528152ns 289887 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16528436ns 289892 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16528720ns 289897 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16529005ns 289902 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16529459ns 289910 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16529630ns 289913 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16529914ns 289918 1a110850 fd5ff06f jal x0, -44 +16530198ns 289923 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16530482ns 289928 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16530880ns 289935 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16531051ns 289938 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16531505ns 289946 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16531676ns 289949 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16531960ns 289954 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16532244ns 289959 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16532528ns 289964 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16532983ns 289972 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16533153ns 289975 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16533437ns 289980 1a110850 fd5ff06f jal x0, -44 +16533722ns 289985 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16534006ns 289990 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16534404ns 289997 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16534574ns 290000 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16535029ns 290008 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16535199ns 290011 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16535483ns 290016 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16535768ns 290021 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16536052ns 290026 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16536506ns 290034 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16536677ns 290037 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16536961ns 290042 1a110850 fd5ff06f jal x0, -44 +16537245ns 290047 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16537529ns 290052 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16537927ns 290059 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16538098ns 290062 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16538552ns 290070 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16538723ns 290073 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16539007ns 290078 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16539291ns 290083 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16539575ns 290088 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16540030ns 290096 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16540200ns 290099 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16540485ns 290104 1a110850 fd5ff06f jal x0, -44 +16540769ns 290109 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16541053ns 290114 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16541451ns 290121 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16541621ns 290124 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16542076ns 290132 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16542246ns 290135 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16542531ns 290140 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16542815ns 290145 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16543099ns 290150 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16543554ns 290158 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16543724ns 290161 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16544008ns 290166 1a110850 fd5ff06f jal x0, -44 +16544292ns 290171 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16544577ns 290176 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16544974ns 290183 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16545145ns 290186 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16545600ns 290194 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16545770ns 290197 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16546054ns 290202 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16546338ns 290207 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16546623ns 290212 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16547077ns 290220 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16547248ns 290223 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16547532ns 290228 1a110850 fd5ff06f jal x0, -44 +16547816ns 290233 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16548100ns 290238 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16548498ns 290245 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16548668ns 290248 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16549123ns 290256 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16549294ns 290259 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16549578ns 290264 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16549862ns 290269 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16550146ns 290274 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16550601ns 290282 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16550771ns 290285 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16551055ns 290290 1a110850 fd5ff06f jal x0, -44 +16551340ns 290295 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16551624ns 290300 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16552022ns 290307 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16552192ns 290310 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16552647ns 290318 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16552817ns 290321 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16553101ns 290326 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16553386ns 290331 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16553670ns 290336 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16554124ns 290344 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16554295ns 290347 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16554579ns 290352 1a110850 fd5ff06f jal x0, -44 +16554863ns 290357 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16555147ns 290362 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16555545ns 290369 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16555716ns 290372 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16556170ns 290380 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16556341ns 290383 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16556625ns 290388 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16556909ns 290393 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16557193ns 290398 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16557648ns 290406 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16557818ns 290409 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16558103ns 290414 1a110850 fd5ff06f jal x0, -44 +16558387ns 290419 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16558671ns 290424 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16559069ns 290431 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16559239ns 290434 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16559694ns 290442 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16559864ns 290445 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16560149ns 290450 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16560433ns 290455 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16560717ns 290460 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16561171ns 290468 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16561342ns 290471 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16561626ns 290476 1a110850 fd5ff06f jal x0, -44 +16561910ns 290481 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16562194ns 290486 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16562592ns 290493 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16562763ns 290496 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16563217ns 290504 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16563388ns 290507 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16563672ns 290512 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16563956ns 290517 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16564240ns 290522 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16564695ns 290530 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16564866ns 290533 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16565150ns 290538 1a110850 fd5ff06f jal x0, -44 +16565434ns 290543 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16565718ns 290548 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16566116ns 290555 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16566286ns 290558 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16566741ns 290566 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16566912ns 290569 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16567196ns 290574 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16567480ns 290579 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16567764ns 290584 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16568219ns 290592 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16568389ns 290595 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16568673ns 290600 1a110850 fd5ff06f jal x0, -44 +16568957ns 290605 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16569242ns 290610 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16569639ns 290617 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16569810ns 290620 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16570265ns 290628 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16570435ns 290631 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16570719ns 290636 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16571003ns 290641 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16571288ns 290646 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16571742ns 290654 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16571913ns 290657 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16572197ns 290662 1a110850 fd5ff06f jal x0, -44 +16572481ns 290667 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16572765ns 290672 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16573163ns 290679 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16573334ns 290682 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16573788ns 290690 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16573959ns 290693 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16574243ns 290698 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16574527ns 290703 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16574811ns 290708 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16575266ns 290716 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16575436ns 290719 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16575720ns 290724 1a110850 fd5ff06f jal x0, -44 +16576005ns 290729 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16576289ns 290734 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16576687ns 290741 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16576857ns 290744 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16577312ns 290752 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16577482ns 290755 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16577766ns 290760 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16578051ns 290765 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16578335ns 290770 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16578789ns 290778 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16578960ns 290781 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16579244ns 290786 1a110850 fd5ff06f jal x0, -44 +16579528ns 290791 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16579812ns 290796 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16580210ns 290803 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16580381ns 290806 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16580835ns 290814 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16581006ns 290817 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16581290ns 290822 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16581574ns 290827 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16581858ns 290832 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16582313ns 290840 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16582483ns 290843 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16582768ns 290848 1a110850 fd5ff06f jal x0, -44 +16583052ns 290853 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16583336ns 290858 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16583734ns 290865 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16583904ns 290868 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16584359ns 290876 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16584529ns 290879 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16584814ns 290884 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16585098ns 290889 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16585382ns 290894 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16585837ns 290902 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16586007ns 290905 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16586291ns 290910 1a110850 fd5ff06f jal x0, -44 +16586575ns 290915 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16586860ns 290920 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16587257ns 290927 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16587428ns 290930 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16587883ns 290938 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16588053ns 290941 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16588337ns 290946 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16588621ns 290951 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16588906ns 290956 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16589360ns 290964 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16589531ns 290967 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16589815ns 290972 1a110850 fd5ff06f jal x0, -44 +16590099ns 290977 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16590383ns 290982 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16590781ns 290989 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16590951ns 290992 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16591406ns 291000 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16591577ns 291003 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16591861ns 291008 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16592145ns 291013 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16592429ns 291018 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16592884ns 291026 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16593054ns 291029 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16593338ns 291034 1a110850 fd5ff06f jal x0, -44 +16593623ns 291039 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16593907ns 291044 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16594305ns 291051 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16594475ns 291054 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16594930ns 291062 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16595100ns 291065 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16595384ns 291070 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16595669ns 291075 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16595953ns 291080 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16596407ns 291088 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16596578ns 291091 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16596862ns 291096 1a110850 fd5ff06f jal x0, -44 +16597146ns 291101 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16597430ns 291106 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16597828ns 291113 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16597999ns 291116 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16598453ns 291124 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16598624ns 291127 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16598908ns 291132 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16599192ns 291137 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16599476ns 291142 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16599931ns 291150 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16600101ns 291153 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16600386ns 291158 1a110850 fd5ff06f jal x0, -44 +16600670ns 291163 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16600954ns 291168 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16601352ns 291175 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16601522ns 291178 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16601977ns 291186 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16602147ns 291189 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16602432ns 291194 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16602716ns 291199 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16603000ns 291204 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16603455ns 291212 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16603625ns 291215 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16603909ns 291220 1a110850 fd5ff06f jal x0, -44 +16604193ns 291225 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16604477ns 291230 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16604875ns 291237 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16605046ns 291240 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16605500ns 291248 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16605671ns 291251 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16605955ns 291256 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16606239ns 291261 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16606523ns 291266 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16606978ns 291274 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16607149ns 291277 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16607433ns 291282 1a110850 fd5ff06f jal x0, -44 +16607717ns 291287 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16608001ns 291292 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16608399ns 291299 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16608569ns 291302 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16609024ns 291310 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16609195ns 291313 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16609479ns 291318 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16609763ns 291323 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16610047ns 291328 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16610502ns 291336 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16610672ns 291339 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16610956ns 291344 1a110850 fd5ff06f jal x0, -44 +16611240ns 291349 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16611525ns 291354 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16611922ns 291361 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16612093ns 291364 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16612548ns 291372 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16612718ns 291375 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16613002ns 291380 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16613286ns 291385 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16613571ns 291390 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16614025ns 291398 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16614196ns 291401 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16614480ns 291406 1a110850 fd5ff06f jal x0, -44 +16614764ns 291411 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16615048ns 291416 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16615446ns 291423 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16615617ns 291426 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16616071ns 291434 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16616242ns 291437 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16616526ns 291442 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16616810ns 291447 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16617094ns 291452 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16617549ns 291460 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16617719ns 291463 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16618003ns 291468 1a110850 fd5ff06f jal x0, -44 +16618288ns 291473 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16618572ns 291478 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16618970ns 291485 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16619140ns 291488 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16619595ns 291496 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16619765ns 291499 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16620049ns 291504 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16620334ns 291509 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16620618ns 291514 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16621072ns 291522 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16621243ns 291525 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16621527ns 291530 1a110850 fd5ff06f jal x0, -44 +16621811ns 291535 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16622095ns 291540 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16622493ns 291547 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16622664ns 291550 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16623118ns 291558 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16623289ns 291561 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16623573ns 291566 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16623857ns 291571 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16624141ns 291576 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16624596ns 291584 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16624767ns 291587 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16625051ns 291592 1a110850 fd5ff06f jal x0, -44 +16625335ns 291597 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16625619ns 291602 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16626017ns 291609 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16626187ns 291612 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16626642ns 291620 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16626812ns 291623 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16627097ns 291628 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16627381ns 291633 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16627665ns 291638 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16628120ns 291646 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16628290ns 291649 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16628574ns 291654 1a110850 fd5ff06f jal x0, -44 +16628858ns 291659 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16629143ns 291664 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16629540ns 291671 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16629711ns 291674 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16630166ns 291682 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16630336ns 291685 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16630620ns 291690 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16630904ns 291695 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16631189ns 291700 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16631643ns 291708 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16631814ns 291711 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16632098ns 291716 1a110850 fd5ff06f jal x0, -44 +16632382ns 291721 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16632666ns 291726 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16633064ns 291733 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16633234ns 291736 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16633689ns 291744 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16633860ns 291747 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16634144ns 291752 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16634428ns 291757 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16634712ns 291762 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16635167ns 291770 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16635337ns 291773 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16635621ns 291778 1a110850 fd5ff06f jal x0, -44 +16635906ns 291783 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16636190ns 291788 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16636588ns 291795 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16636758ns 291798 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16637213ns 291806 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16637383ns 291809 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16637667ns 291814 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16637952ns 291819 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16638236ns 291824 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16638690ns 291832 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16638861ns 291835 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16639145ns 291840 1a110850 fd5ff06f jal x0, -44 +16639429ns 291845 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16639713ns 291850 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16640111ns 291857 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16640282ns 291860 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16640736ns 291868 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16640907ns 291871 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16641191ns 291876 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16641475ns 291881 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16641759ns 291886 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16642214ns 291894 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16642384ns 291897 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16642669ns 291902 1a110850 fd5ff06f jal x0, -44 +16642953ns 291907 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16643237ns 291912 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16643635ns 291919 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16643805ns 291922 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16644260ns 291930 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16644430ns 291933 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16644715ns 291938 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16644999ns 291943 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16645283ns 291948 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16645738ns 291956 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16645908ns 291959 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16646192ns 291964 1a110850 fd5ff06f jal x0, -44 +16646476ns 291969 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16646760ns 291974 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16647158ns 291981 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16647329ns 291984 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16647783ns 291992 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16647954ns 291995 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16648238ns 292000 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16648522ns 292005 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16648806ns 292010 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16649261ns 292018 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16649432ns 292021 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16649716ns 292026 1a110850 fd5ff06f jal x0, -44 +16650000ns 292031 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16650284ns 292036 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16650682ns 292043 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16650852ns 292046 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16651307ns 292054 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16651478ns 292057 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16651762ns 292062 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16652046ns 292067 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16652330ns 292072 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16652785ns 292080 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16652955ns 292083 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16653239ns 292088 1a110850 fd5ff06f jal x0, -44 +16653523ns 292093 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16653808ns 292098 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16654205ns 292105 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16654376ns 292108 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16654831ns 292116 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16655001ns 292119 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16655285ns 292124 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16655569ns 292129 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16655854ns 292134 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16656308ns 292142 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16656479ns 292145 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16656763ns 292150 1a110850 fd5ff06f jal x0, -44 +16657047ns 292155 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16657331ns 292160 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16657729ns 292167 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16657900ns 292170 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16658354ns 292178 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16658525ns 292181 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16658809ns 292186 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16659093ns 292191 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16659377ns 292196 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16659832ns 292204 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16660002ns 292207 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16660287ns 292212 1a110850 fd5ff06f jal x0, -44 +16660571ns 292217 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16660855ns 292222 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16661253ns 292229 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16661423ns 292232 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16661878ns 292240 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16662048ns 292243 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16662332ns 292248 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16662617ns 292253 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16662901ns 292258 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16663355ns 292266 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16663526ns 292269 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16663810ns 292274 1a110850 fd5ff06f jal x0, -44 +16664094ns 292279 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16664378ns 292284 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16664776ns 292291 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16664947ns 292294 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16665401ns 292302 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16665572ns 292305 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16665856ns 292310 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16666140ns 292315 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16666424ns 292320 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16666879ns 292328 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16667050ns 292331 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16667334ns 292336 1a110850 fd5ff06f jal x0, -44 +16667618ns 292341 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16667902ns 292346 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16668300ns 292353 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16668470ns 292356 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16668925ns 292364 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16669095ns 292367 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16669380ns 292372 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16669664ns 292377 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16669948ns 292382 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16670403ns 292390 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16670573ns 292393 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16670857ns 292398 1a110850 fd5ff06f jal x0, -44 +16671141ns 292403 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16671426ns 292408 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16671823ns 292415 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16671994ns 292418 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16672449ns 292426 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16672619ns 292429 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16672903ns 292434 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16673187ns 292439 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16673472ns 292444 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16673926ns 292452 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16674097ns 292455 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16674381ns 292460 1a110850 fd5ff06f jal x0, -44 +16674665ns 292465 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16674949ns 292470 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16675347ns 292477 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16675517ns 292480 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16675972ns 292488 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16676143ns 292491 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16676427ns 292496 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16676711ns 292501 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16676995ns 292506 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16677450ns 292514 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16677620ns 292517 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16677904ns 292522 1a110850 fd5ff06f jal x0, -44 +16678189ns 292527 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16678473ns 292532 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16678871ns 292539 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16679041ns 292542 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16679496ns 292550 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16679666ns 292553 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16679950ns 292558 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16680235ns 292563 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16680519ns 292568 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16680973ns 292576 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16681144ns 292579 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16681428ns 292584 1a110850 fd5ff06f jal x0, -44 +16681712ns 292589 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16681996ns 292594 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16682394ns 292601 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16682565ns 292604 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16683019ns 292612 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16683190ns 292615 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16683474ns 292620 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16683758ns 292625 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16684042ns 292630 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16684497ns 292638 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16684667ns 292641 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16684952ns 292646 1a110850 fd5ff06f jal x0, -44 +16685236ns 292651 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16685520ns 292656 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16685918ns 292663 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16686088ns 292666 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16686543ns 292674 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16686713ns 292677 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16686998ns 292682 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16687282ns 292687 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16687566ns 292692 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16688021ns 292700 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16688191ns 292703 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16688475ns 292708 1a110850 fd5ff06f jal x0, -44 +16688759ns 292713 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16689043ns 292718 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16689441ns 292725 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16689612ns 292728 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16690066ns 292736 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16690237ns 292739 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16690521ns 292744 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16690805ns 292749 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16691089ns 292754 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16691544ns 292762 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16691715ns 292765 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16691999ns 292770 1a110850 fd5ff06f jal x0, -44 +16692283ns 292775 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16692567ns 292780 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16692965ns 292787 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16693135ns 292790 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16693590ns 292798 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16693761ns 292801 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16694045ns 292806 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16694329ns 292811 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16694613ns 292816 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16695068ns 292824 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16695238ns 292827 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16695522ns 292832 1a110850 fd5ff06f jal x0, -44 +16695807ns 292837 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16696091ns 292842 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16696488ns 292849 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16696659ns 292852 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16697114ns 292860 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16697284ns 292863 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16697568ns 292868 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16697852ns 292873 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16698137ns 292878 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16698591ns 292886 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16698762ns 292889 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16699046ns 292894 1a110850 fd5ff06f jal x0, -44 +16699330ns 292899 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16699614ns 292904 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16700012ns 292911 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16700183ns 292914 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16700637ns 292922 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16700808ns 292925 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16701092ns 292930 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16701376ns 292935 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16701660ns 292940 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16702115ns 292948 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16702285ns 292951 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16702570ns 292956 1a110850 fd5ff06f jal x0, -44 +16702854ns 292961 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16703138ns 292966 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16703536ns 292973 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16703706ns 292976 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16704161ns 292984 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16704331ns 292987 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16704615ns 292992 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16704900ns 292997 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16705184ns 293002 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16705638ns 293010 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16705809ns 293013 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16706093ns 293018 1a110850 fd5ff06f jal x0, -44 +16706377ns 293023 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16706661ns 293028 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16707059ns 293035 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16707230ns 293038 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16707684ns 293046 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16707855ns 293049 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16708139ns 293054 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16708423ns 293059 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16708707ns 293064 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16709162ns 293072 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16709333ns 293075 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16709617ns 293080 1a110850 fd5ff06f jal x0, -44 +16709901ns 293085 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16710185ns 293090 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16710583ns 293097 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16710753ns 293100 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16711208ns 293108 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16711378ns 293111 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16711663ns 293116 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16711947ns 293121 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16712231ns 293126 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16712686ns 293134 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16712856ns 293137 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16713140ns 293142 1a110850 fd5ff06f jal x0, -44 +16713424ns 293147 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16713709ns 293152 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16714106ns 293159 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16714277ns 293162 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16714732ns 293170 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16714902ns 293173 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16715186ns 293178 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16715470ns 293183 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16715755ns 293188 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16716209ns 293196 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16716380ns 293199 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16716664ns 293204 1a110850 fd5ff06f jal x0, -44 +16716948ns 293209 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16717232ns 293214 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16717630ns 293221 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16717800ns 293224 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16718255ns 293232 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16718426ns 293235 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16718710ns 293240 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16718994ns 293245 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16719278ns 293250 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16719733ns 293258 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16719903ns 293261 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16720187ns 293266 1a110850 fd5ff06f jal x0, -44 +16720472ns 293271 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16720756ns 293276 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16721154ns 293283 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16721324ns 293286 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16721779ns 293294 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16721949ns 293297 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16722233ns 293302 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16722518ns 293307 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16722802ns 293312 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16723256ns 293320 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16723427ns 293323 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16723711ns 293328 1a110850 fd5ff06f jal x0, -44 +16723995ns 293333 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16724279ns 293338 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16724677ns 293345 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16724848ns 293348 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16725302ns 293356 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16725473ns 293359 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16725757ns 293364 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16726041ns 293369 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16726325ns 293374 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16726780ns 293382 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16726950ns 293385 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16727235ns 293390 1a110850 fd5ff06f jal x0, -44 +16727519ns 293395 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16727803ns 293400 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16728201ns 293407 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16728371ns 293410 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16728826ns 293418 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16728996ns 293421 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16729281ns 293426 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16729565ns 293431 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16729849ns 293436 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16730304ns 293444 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16730474ns 293447 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16730758ns 293452 1a110850 fd5ff06f jal x0, -44 +16731042ns 293457 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16731327ns 293462 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16731724ns 293469 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16731895ns 293472 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16732349ns 293480 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16732520ns 293483 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16732804ns 293488 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16733088ns 293493 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16733372ns 293498 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16733827ns 293506 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16733998ns 293509 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16734282ns 293514 1a110850 fd5ff06f jal x0, -44 +16734566ns 293519 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16734850ns 293524 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16735248ns 293531 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16735418ns 293534 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16735873ns 293542 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16736044ns 293545 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16736328ns 293550 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16736612ns 293555 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16736896ns 293560 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16737351ns 293568 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16737521ns 293571 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16737805ns 293576 1a110850 fd5ff06f jal x0, -44 +16738090ns 293581 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16738374ns 293586 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16738771ns 293593 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16738942ns 293596 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16739397ns 293604 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16739567ns 293607 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16739851ns 293612 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16740135ns 293617 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16740420ns 293622 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16740874ns 293630 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16741045ns 293633 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16741329ns 293638 1a110850 fd5ff06f jal x0, -44 +16741613ns 293643 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16741897ns 293648 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16742295ns 293655 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16742466ns 293658 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16742920ns 293666 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16743091ns 293669 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16743375ns 293674 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16743659ns 293679 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16743943ns 293684 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16744398ns 293692 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16744568ns 293695 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16744853ns 293700 1a110850 fd5ff06f jal x0, -44 +16745137ns 293705 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16745421ns 293710 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16745819ns 293717 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16745989ns 293720 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16746444ns 293728 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16746614ns 293731 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16746898ns 293736 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16747183ns 293741 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16747467ns 293746 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16747921ns 293754 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16748092ns 293757 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16748376ns 293762 1a110850 fd5ff06f jal x0, -44 +16748660ns 293767 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16748944ns 293772 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16749342ns 293779 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16749513ns 293782 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16749967ns 293790 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16750138ns 293793 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16750422ns 293798 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16750706ns 293803 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16750990ns 293808 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16751445ns 293816 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16751616ns 293819 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16751900ns 293824 1a110850 fd5ff06f jal x0, -44 +16752184ns 293829 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16752468ns 293834 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16752866ns 293841 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16753036ns 293844 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16753491ns 293852 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16753661ns 293855 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16753946ns 293860 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16754230ns 293865 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16754514ns 293870 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16754969ns 293878 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16755139ns 293881 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16755423ns 293886 1a110850 fd5ff06f jal x0, -44 +16755707ns 293891 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16755992ns 293896 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16756389ns 293903 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16756560ns 293906 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16757015ns 293914 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16757185ns 293917 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16757469ns 293922 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16757753ns 293927 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16758038ns 293932 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16758492ns 293940 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16758663ns 293943 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16758947ns 293948 1a110850 fd5ff06f jal x0, -44 +16759231ns 293953 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16759515ns 293958 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16759913ns 293965 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16760083ns 293968 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16760538ns 293976 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16760709ns 293979 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16760993ns 293984 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16761277ns 293989 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16761561ns 293994 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16762016ns 294002 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16762186ns 294005 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16762470ns 294010 1a110850 fd5ff06f jal x0, -44 +16762755ns 294015 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16763039ns 294020 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16763437ns 294027 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16763607ns 294030 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16764062ns 294038 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16764232ns 294041 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16764516ns 294046 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16764801ns 294051 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16765085ns 294056 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16765539ns 294064 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16765710ns 294067 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16765994ns 294072 1a110850 fd5ff06f jal x0, -44 +16766278ns 294077 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16766562ns 294082 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16766960ns 294089 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16767131ns 294092 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16767585ns 294100 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16767756ns 294103 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16768040ns 294108 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16768324ns 294113 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16768608ns 294118 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16769063ns 294126 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16769233ns 294129 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16769518ns 294134 1a110850 fd5ff06f jal x0, -44 +16769802ns 294139 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16770086ns 294144 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16770484ns 294151 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16770654ns 294154 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16771109ns 294162 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16771279ns 294165 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16771564ns 294170 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16771848ns 294175 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16772132ns 294180 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16772587ns 294188 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16772757ns 294191 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16773041ns 294196 1a110850 fd5ff06f jal x0, -44 +16773325ns 294201 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16773610ns 294206 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16774007ns 294213 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16774178ns 294216 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16774632ns 294224 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16774803ns 294227 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16775087ns 294232 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16775371ns 294237 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16775655ns 294242 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16776110ns 294250 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16776281ns 294253 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16776565ns 294258 1a110850 fd5ff06f jal x0, -44 +16776849ns 294263 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16777133ns 294268 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16777531ns 294275 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16777701ns 294278 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16778156ns 294286 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16778327ns 294289 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16778611ns 294294 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16778895ns 294299 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16779179ns 294304 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16779634ns 294312 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16779804ns 294315 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16780088ns 294320 1a110850 fd5ff06f jal x0, -44 +16780373ns 294325 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16780657ns 294330 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16781055ns 294337 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16781225ns 294340 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16781680ns 294348 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16781850ns 294351 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16782134ns 294356 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16782418ns 294361 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16782703ns 294366 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16783157ns 294374 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16783328ns 294377 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16783612ns 294382 1a110850 fd5ff06f jal x0, -44 +16783896ns 294387 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16784180ns 294392 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16784578ns 294399 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16784749ns 294402 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16785203ns 294410 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16785374ns 294413 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16785658ns 294418 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16785942ns 294423 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16786226ns 294428 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16786681ns 294436 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16786851ns 294439 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16787136ns 294444 1a110850 fd5ff06f jal x0, -44 +16787420ns 294449 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16787704ns 294454 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16788102ns 294461 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16788272ns 294464 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16788727ns 294472 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16788897ns 294475 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16789181ns 294480 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16789466ns 294485 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16789750ns 294490 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16790204ns 294498 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16790375ns 294501 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16790659ns 294506 1a110850 fd5ff06f jal x0, -44 +16790943ns 294511 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16791227ns 294516 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16791625ns 294523 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16791796ns 294526 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16792250ns 294534 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16792421ns 294537 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16792705ns 294542 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16792989ns 294547 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16793273ns 294552 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16793728ns 294560 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16793899ns 294563 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16794183ns 294568 1a110850 fd5ff06f jal x0, -44 +16794467ns 294573 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16794751ns 294578 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16795149ns 294585 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16795319ns 294588 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16795774ns 294596 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16795944ns 294599 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16796229ns 294604 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16796513ns 294609 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16796797ns 294614 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16797252ns 294622 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16797422ns 294625 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16797706ns 294630 1a110850 fd5ff06f jal x0, -44 +16797990ns 294635 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16798275ns 294640 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16798672ns 294647 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16798843ns 294650 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16799298ns 294658 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16799468ns 294661 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16799752ns 294666 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16800036ns 294671 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16800321ns 294676 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16800775ns 294684 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16800946ns 294687 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16801230ns 294692 1a110850 fd5ff06f jal x0, -44 +16801514ns 294697 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16801798ns 294702 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16802196ns 294709 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16802367ns 294712 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16802821ns 294720 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16802992ns 294723 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16803276ns 294728 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16803560ns 294733 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16803844ns 294738 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16804299ns 294746 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16804469ns 294749 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16804753ns 294754 1a110850 fd5ff06f jal x0, -44 +16805038ns 294759 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16805322ns 294764 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16805720ns 294771 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16805890ns 294774 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16806345ns 294782 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16806515ns 294785 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16806799ns 294790 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16807084ns 294795 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16807368ns 294800 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16807822ns 294808 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16807993ns 294811 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16808277ns 294816 1a110850 fd5ff06f jal x0, -44 +16808561ns 294821 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16808845ns 294826 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16809243ns 294833 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16809414ns 294836 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16809868ns 294844 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16810039ns 294847 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16810323ns 294852 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16810607ns 294857 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16810891ns 294862 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16811346ns 294870 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16811516ns 294873 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16811801ns 294878 1a110850 fd5ff06f jal x0, -44 +16812085ns 294883 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16812369ns 294888 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16812767ns 294895 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16812937ns 294898 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16813392ns 294906 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16813562ns 294909 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16813847ns 294914 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16814131ns 294919 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16814415ns 294924 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16814870ns 294932 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16815040ns 294935 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16815324ns 294940 1a110850 fd5ff06f jal x0, -44 +16815608ns 294945 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16815893ns 294950 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16816290ns 294957 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16816461ns 294960 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16816915ns 294968 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16817086ns 294971 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16817370ns 294976 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16817654ns 294981 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16817938ns 294986 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16818393ns 294994 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16818564ns 294997 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16818848ns 295002 1a110850 fd5ff06f jal x0, -44 +16819132ns 295007 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16819416ns 295012 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16819814ns 295019 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16819984ns 295022 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16820439ns 295030 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16820610ns 295033 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16820894ns 295038 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16821178ns 295043 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16821462ns 295048 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16821917ns 295056 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16822087ns 295059 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16822371ns 295064 1a110850 fd5ff06f jal x0, -44 +16822656ns 295069 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16822940ns 295074 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16823338ns 295081 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16823508ns 295084 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16823963ns 295092 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16824133ns 295095 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16824417ns 295100 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16824701ns 295105 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16824986ns 295110 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16825440ns 295118 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16825611ns 295121 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16825895ns 295126 1a110850 fd5ff06f jal x0, -44 +16826179ns 295131 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16826463ns 295136 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16826861ns 295143 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16827032ns 295146 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16827486ns 295154 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16827657ns 295157 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16827941ns 295162 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16828225ns 295167 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16828509ns 295172 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16828964ns 295180 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16829134ns 295183 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16829419ns 295188 1a110850 fd5ff06f jal x0, -44 +16829703ns 295193 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16829987ns 295198 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16830385ns 295205 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16830555ns 295208 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16831010ns 295216 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16831180ns 295219 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16831464ns 295224 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16831749ns 295229 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16832033ns 295234 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16832487ns 295242 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16832658ns 295245 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16832942ns 295250 1a110850 fd5ff06f jal x0, -44 +16833226ns 295255 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16833510ns 295260 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16833908ns 295267 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16834079ns 295270 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16834533ns 295278 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16834704ns 295281 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16834988ns 295286 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16835272ns 295291 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16835556ns 295296 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16836011ns 295304 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16836182ns 295307 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16836466ns 295312 1a110850 fd5ff06f jal x0, -44 +16836750ns 295317 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16837034ns 295322 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16837432ns 295329 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16837602ns 295332 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16838057ns 295340 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16838227ns 295343 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16838512ns 295348 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16838796ns 295353 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16839080ns 295358 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16839535ns 295366 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16839705ns 295369 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16839989ns 295374 1a110850 fd5ff06f jal x0, -44 +16840273ns 295379 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16840558ns 295384 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16840955ns 295391 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16841126ns 295394 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16841581ns 295402 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16841751ns 295405 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16842035ns 295410 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16842319ns 295415 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16842604ns 295420 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16843058ns 295428 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16843229ns 295431 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16843513ns 295436 1a110850 fd5ff06f jal x0, -44 +16843797ns 295441 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16844081ns 295446 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16844479ns 295453 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16844650ns 295456 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16845104ns 295464 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16845275ns 295467 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16845559ns 295472 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16845843ns 295477 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16846127ns 295482 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16846582ns 295490 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16846752ns 295493 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16847036ns 295498 1a110850 fd5ff06f jal x0, -44 +16847321ns 295503 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16847605ns 295508 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16848003ns 295515 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16848173ns 295518 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16848628ns 295526 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16848798ns 295529 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16849082ns 295534 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16849367ns 295539 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16849651ns 295544 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16850105ns 295552 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16850276ns 295555 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16850560ns 295560 1a110850 fd5ff06f jal x0, -44 +16850844ns 295565 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16851128ns 295570 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16851526ns 295577 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16851697ns 295580 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16852151ns 295588 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16852322ns 295591 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16852606ns 295596 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16852890ns 295601 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16853174ns 295606 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16853629ns 295614 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16853799ns 295617 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16854084ns 295622 1a110850 fd5ff06f jal x0, -44 +16854368ns 295627 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16854652ns 295632 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16855050ns 295639 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16855220ns 295642 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16855675ns 295650 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16855845ns 295653 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16856130ns 295658 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16856414ns 295663 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16856698ns 295668 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16857153ns 295676 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16857323ns 295679 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16857607ns 295684 1a110850 fd5ff06f jal x0, -44 +16857891ns 295689 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16858176ns 295694 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16858573ns 295701 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16858744ns 295704 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16859199ns 295712 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16859369ns 295715 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16859653ns 295720 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16859937ns 295725 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16860221ns 295730 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16860676ns 295738 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16860847ns 295741 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16861131ns 295746 1a110850 fd5ff06f jal x0, -44 +16861415ns 295751 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16861699ns 295756 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16862097ns 295763 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16862267ns 295766 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16862722ns 295774 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16862893ns 295777 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16863177ns 295782 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16863461ns 295787 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16863745ns 295792 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16864200ns 295800 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16864370ns 295803 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16864654ns 295808 1a110850 fd5ff06f jal x0, -44 +16864939ns 295813 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16865223ns 295818 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16865621ns 295825 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16865791ns 295828 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16866246ns 295836 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16866416ns 295839 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16866700ns 295844 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16866984ns 295849 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16867269ns 295854 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16867723ns 295862 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16867894ns 295865 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16868178ns 295870 1a110850 fd5ff06f jal x0, -44 +16868462ns 295875 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16868746ns 295880 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16869144ns 295887 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16869315ns 295890 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16869769ns 295898 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16869940ns 295901 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16870224ns 295906 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16870508ns 295911 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16870792ns 295916 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16871247ns 295924 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16871417ns 295927 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16871702ns 295932 1a110850 fd5ff06f jal x0, -44 +16871986ns 295937 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16872270ns 295942 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16872668ns 295949 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16872838ns 295952 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16873293ns 295960 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16873463ns 295963 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16873747ns 295968 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16874032ns 295973 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16874316ns 295978 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16874770ns 295986 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16874941ns 295989 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16875225ns 295994 1a110850 fd5ff06f jal x0, -44 +16875509ns 295999 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16875793ns 296004 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16876191ns 296011 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16876362ns 296014 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16876816ns 296022 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16876987ns 296025 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16877271ns 296030 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16877555ns 296035 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16877839ns 296040 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16878294ns 296048 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16878465ns 296051 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16878749ns 296056 1a110850 fd5ff06f jal x0, -44 +16879033ns 296061 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16879317ns 296066 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16879715ns 296073 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16879885ns 296076 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16880340ns 296084 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16880511ns 296087 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16880795ns 296092 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16881079ns 296097 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16881363ns 296102 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16881818ns 296110 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16881988ns 296113 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16882272ns 296118 1a110850 fd5ff06f jal x0, -44 +16882556ns 296123 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16882841ns 296128 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16883238ns 296135 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16883409ns 296138 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16883864ns 296146 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16884034ns 296149 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16884318ns 296154 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16884602ns 296159 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16884887ns 296164 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16885341ns 296172 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16885512ns 296175 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16885796ns 296180 1a110850 fd5ff06f jal x0, -44 +16886080ns 296185 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16886364ns 296190 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16886762ns 296197 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16886933ns 296200 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16887387ns 296208 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16887558ns 296211 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16887842ns 296216 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16888126ns 296221 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16888410ns 296226 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16888865ns 296234 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16889035ns 296237 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16889319ns 296242 1a110850 fd5ff06f jal x0, -44 +16889604ns 296247 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16889888ns 296252 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16890286ns 296259 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16890456ns 296262 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16890911ns 296270 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16891081ns 296273 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16891365ns 296278 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16891650ns 296283 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16891934ns 296288 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16892388ns 296296 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16892559ns 296299 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16892843ns 296304 1a110850 fd5ff06f jal x0, -44 +16893127ns 296309 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16893411ns 296314 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16893809ns 296321 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16893980ns 296324 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16894434ns 296332 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16894605ns 296335 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16894889ns 296340 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16895173ns 296345 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16895457ns 296350 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16895912ns 296358 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16896082ns 296361 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16896367ns 296366 1a110850 fd5ff06f jal x0, -44 +16896651ns 296371 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16896935ns 296376 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16897333ns 296383 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16897503ns 296386 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16897958ns 296394 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16898128ns 296397 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16898413ns 296402 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16898697ns 296407 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16898981ns 296412 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16899436ns 296420 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16899606ns 296423 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16899890ns 296428 1a110850 fd5ff06f jal x0, -44 +16900174ns 296433 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16900459ns 296438 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16900856ns 296445 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16901027ns 296448 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16901482ns 296456 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16901652ns 296459 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16901936ns 296464 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16902220ns 296469 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16902504ns 296474 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16902959ns 296482 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16903130ns 296485 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16903414ns 296490 1a110850 fd5ff06f jal x0, -44 +16903698ns 296495 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16903982ns 296500 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16904380ns 296507 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16904550ns 296510 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16905005ns 296518 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16905176ns 296521 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16905460ns 296526 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16905744ns 296531 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16906028ns 296536 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16906483ns 296544 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16906653ns 296547 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16906937ns 296552 1a110850 fd5ff06f jal x0, -44 +16907222ns 296557 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16907506ns 296562 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16907904ns 296569 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16908074ns 296572 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16908529ns 296580 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16908699ns 296583 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16908983ns 296588 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16909267ns 296593 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16909552ns 296598 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16910006ns 296606 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16910177ns 296609 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16910461ns 296614 1a110850 fd5ff06f jal x0, -44 +16910745ns 296619 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16911029ns 296624 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16911427ns 296631 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16911598ns 296634 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16912052ns 296642 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16912223ns 296645 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16912507ns 296650 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16912791ns 296655 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16913075ns 296660 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16913530ns 296668 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16913700ns 296671 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16913985ns 296676 1a110850 fd5ff06f jal x0, -44 +16914269ns 296681 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16914553ns 296686 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16914951ns 296693 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16915121ns 296696 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16915576ns 296704 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16915746ns 296707 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16916031ns 296712 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16916315ns 296717 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16916599ns 296722 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16917053ns 296730 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16917224ns 296733 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16917508ns 296738 1a110850 fd5ff06f jal x0, -44 +16917792ns 296743 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16918076ns 296748 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16918474ns 296755 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16918645ns 296758 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16919099ns 296766 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16919270ns 296769 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16919554ns 296774 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16919838ns 296779 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16920122ns 296784 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16920577ns 296792 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16920748ns 296795 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16921032ns 296800 1a110850 fd5ff06f jal x0, -44 +16921316ns 296805 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16921600ns 296810 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16921998ns 296817 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16922168ns 296820 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16922623ns 296828 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16922794ns 296831 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16923078ns 296836 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16923362ns 296841 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16923646ns 296846 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16924101ns 296854 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16924271ns 296857 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16924555ns 296862 1a110850 fd5ff06f jal x0, -44 +16924839ns 296867 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16925124ns 296872 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16925521ns 296879 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16925692ns 296882 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16926147ns 296890 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16926317ns 296893 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16926601ns 296898 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16926885ns 296903 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16927170ns 296908 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16927624ns 296916 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16927795ns 296919 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16928079ns 296924 1a110850 fd5ff06f jal x0, -44 +16928363ns 296929 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16928647ns 296934 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16929045ns 296941 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16929216ns 296944 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16929670ns 296952 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16929841ns 296955 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16930125ns 296960 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16930409ns 296965 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16930693ns 296970 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16931148ns 296978 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16931318ns 296981 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16931602ns 296986 1a110850 fd5ff06f jal x0, -44 +16931887ns 296991 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16932171ns 296996 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16932569ns 297003 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16932739ns 297006 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16933194ns 297014 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16933364ns 297017 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16933648ns 297022 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16933933ns 297027 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16934217ns 297032 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16934671ns 297040 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16934842ns 297043 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16935126ns 297048 1a110850 fd5ff06f jal x0, -44 +16935410ns 297053 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16935694ns 297058 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16936092ns 297065 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16936263ns 297068 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16936717ns 297076 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16936888ns 297079 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16937172ns 297084 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16937456ns 297089 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16937740ns 297094 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16938195ns 297102 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16938365ns 297105 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16938650ns 297110 1a110850 fd5ff06f jal x0, -44 +16938934ns 297115 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16939218ns 297120 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16939616ns 297127 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16939786ns 297130 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16940241ns 297138 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16940411ns 297141 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16940696ns 297146 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16940980ns 297151 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16941264ns 297156 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16941719ns 297164 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16941889ns 297167 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16942173ns 297172 1a110850 fd5ff06f jal x0, -44 +16942457ns 297177 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16942742ns 297182 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16943139ns 297189 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16943310ns 297192 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16943765ns 297200 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16943935ns 297203 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16944219ns 297208 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16944503ns 297213 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16944787ns 297218 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16945242ns 297226 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16945413ns 297229 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16945697ns 297234 1a110850 fd5ff06f jal x0, -44 +16945981ns 297239 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16946265ns 297244 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16946663ns 297251 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16946833ns 297254 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16947288ns 297262 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16947459ns 297265 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16947743ns 297270 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16948027ns 297275 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16948311ns 297280 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16948766ns 297288 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16948936ns 297291 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16949220ns 297296 1a110850 fd5ff06f jal x0, -44 +16949505ns 297301 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16949789ns 297306 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16950187ns 297313 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16950357ns 297316 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16950812ns 297324 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16950982ns 297327 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16951266ns 297332 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16951551ns 297337 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16951835ns 297342 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16952289ns 297350 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16952460ns 297353 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16952744ns 297358 1a110850 fd5ff06f jal x0, -44 +16953028ns 297363 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16953312ns 297368 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16953710ns 297375 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16953881ns 297378 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16954335ns 297386 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16954506ns 297389 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16954790ns 297394 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16955074ns 297399 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16955358ns 297404 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16955813ns 297412 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16955983ns 297415 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16956268ns 297420 1a110850 fd5ff06f jal x0, -44 +16956552ns 297425 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16956836ns 297430 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16957234ns 297437 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16957404ns 297440 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16957859ns 297448 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16958029ns 297451 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16958314ns 297456 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16958598ns 297461 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16958882ns 297466 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16959336ns 297474 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16959507ns 297477 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16959791ns 297482 1a110850 fd5ff06f jal x0, -44 +16960075ns 297487 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16960359ns 297492 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16960757ns 297499 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16960928ns 297502 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16961382ns 297510 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16961553ns 297513 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16961837ns 297518 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16962121ns 297523 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16962405ns 297528 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16962860ns 297536 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16963031ns 297539 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16963315ns 297544 1a110850 fd5ff06f jal x0, -44 +16963599ns 297549 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16963883ns 297554 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16964281ns 297561 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16964451ns 297564 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16964906ns 297572 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16965077ns 297575 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16965361ns 297580 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16965645ns 297585 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16965929ns 297590 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16966384ns 297598 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16966554ns 297601 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16966838ns 297606 1a110850 fd5ff06f jal x0, -44 +16967122ns 297611 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16967407ns 297616 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16967804ns 297623 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16967975ns 297626 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16968430ns 297634 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16968600ns 297637 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16968884ns 297642 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16969168ns 297647 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16969453ns 297652 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16969907ns 297660 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16970078ns 297663 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16970362ns 297668 1a110850 fd5ff06f jal x0, -44 +16970646ns 297673 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16970930ns 297678 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16971328ns 297685 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16971499ns 297688 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16971953ns 297696 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16972124ns 297699 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16972408ns 297704 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16972692ns 297709 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16972976ns 297714 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16973431ns 297722 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16973601ns 297725 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16973885ns 297730 1a110850 fd5ff06f jal x0, -44 +16974170ns 297735 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16974454ns 297740 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16974852ns 297747 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16975022ns 297750 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16975477ns 297758 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16975647ns 297761 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16975931ns 297766 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16976216ns 297771 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16976500ns 297776 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16976954ns 297784 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16977125ns 297787 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16977409ns 297792 1a110850 fd5ff06f jal x0, -44 +16977693ns 297797 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16977977ns 297802 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16978375ns 297809 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16978546ns 297812 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16979000ns 297820 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16979171ns 297823 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16979455ns 297828 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16979739ns 297833 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16980023ns 297838 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16980478ns 297846 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16980648ns 297849 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16980933ns 297854 1a110850 fd5ff06f jal x0, -44 +16981217ns 297859 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16981501ns 297864 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16981899ns 297871 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16982069ns 297874 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16982524ns 297882 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16982694ns 297885 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16982979ns 297890 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16983263ns 297895 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16983547ns 297900 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16984002ns 297908 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16984172ns 297911 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16984456ns 297916 1a110850 fd5ff06f jal x0, -44 +16984740ns 297921 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16985025ns 297926 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16985422ns 297933 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16985593ns 297936 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16986048ns 297944 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16986218ns 297947 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16986502ns 297952 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16986786ns 297957 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16987071ns 297962 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16987525ns 297970 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16987696ns 297973 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16987980ns 297978 1a110850 fd5ff06f jal x0, -44 +16988264ns 297983 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16988548ns 297988 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16988946ns 297995 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16989116ns 297998 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16989571ns 298006 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16989742ns 298009 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16990026ns 298014 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16990310ns 298019 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16990594ns 298024 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16991049ns 298032 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16991219ns 298035 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16991503ns 298040 1a110850 fd5ff06f jal x0, -44 +16991788ns 298045 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16992072ns 298050 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16992470ns 298057 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16992640ns 298060 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16993095ns 298068 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16993265ns 298071 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16993549ns 298076 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16993834ns 298081 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16994118ns 298086 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16994572ns 298094 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16994743ns 298097 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16995027ns 298102 1a110850 fd5ff06f jal x0, -44 +16995311ns 298107 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16995595ns 298112 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16995993ns 298119 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16996164ns 298122 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16996618ns 298130 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +16996789ns 298133 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +16997073ns 298138 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16997357ns 298143 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16997641ns 298148 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +16998096ns 298156 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +16998266ns 298159 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +16998551ns 298164 1a110850 fd5ff06f jal x0, -44 +16998835ns 298169 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +16999119ns 298174 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +16999517ns 298181 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +16999687ns 298184 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17000142ns 298192 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17000312ns 298195 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17000597ns 298200 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17000881ns 298205 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17001165ns 298210 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17001619ns 298218 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17001790ns 298221 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17002074ns 298226 1a110850 fd5ff06f jal x0, -44 +17002358ns 298231 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17002642ns 298236 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17003040ns 298243 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17003211ns 298246 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17003665ns 298254 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17003836ns 298257 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17004120ns 298262 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17004404ns 298267 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17004688ns 298272 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17005143ns 298280 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17005314ns 298283 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17005598ns 298288 1a110850 fd5ff06f jal x0, -44 +17005882ns 298293 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17006166ns 298298 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17006564ns 298305 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17006734ns 298308 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17007189ns 298316 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17007360ns 298319 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17007644ns 298324 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17007928ns 298329 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17008212ns 298334 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17008667ns 298342 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17008837ns 298345 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17009121ns 298350 1a110850 fd5ff06f jal x0, -44 +17009405ns 298355 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17009690ns 298360 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17010087ns 298367 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17010258ns 298370 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17010713ns 298378 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17010883ns 298381 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17011167ns 298386 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17011451ns 298391 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17011736ns 298396 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17012190ns 298404 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17012361ns 298407 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17012645ns 298412 1a110850 fd5ff06f jal x0, -44 +17012929ns 298417 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17013213ns 298422 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17013611ns 298429 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17013782ns 298432 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17014236ns 298440 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17014407ns 298443 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17014691ns 298448 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17014975ns 298453 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17015259ns 298458 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17015714ns 298466 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17015884ns 298469 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17016168ns 298474 1a110850 fd5ff06f jal x0, -44 +17016453ns 298479 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17016737ns 298484 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17017135ns 298491 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17017305ns 298494 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17017760ns 298502 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17017930ns 298505 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17018214ns 298510 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17018499ns 298515 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17018783ns 298520 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17019237ns 298528 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17019408ns 298531 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17019692ns 298536 1a110850 fd5ff06f jal x0, -44 +17019976ns 298541 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17020260ns 298546 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17020658ns 298553 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17020829ns 298556 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17021283ns 298564 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17021454ns 298567 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17021738ns 298572 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17022022ns 298577 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17022306ns 298582 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17022761ns 298590 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17022931ns 298593 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17023216ns 298598 1a110850 fd5ff06f jal x0, -44 +17023500ns 298603 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17023784ns 298608 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17024182ns 298615 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17024352ns 298618 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17024807ns 298626 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17024977ns 298629 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17025262ns 298634 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17025546ns 298639 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17025830ns 298644 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17026285ns 298652 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17026455ns 298655 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17026739ns 298660 1a110850 fd5ff06f jal x0, -44 +17027023ns 298665 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17027308ns 298670 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17027705ns 298677 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17027876ns 298680 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17028331ns 298688 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17028501ns 298691 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17028785ns 298696 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17029069ns 298701 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17029354ns 298706 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17029808ns 298714 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17029979ns 298717 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17030263ns 298722 1a110850 fd5ff06f jal x0, -44 +17030547ns 298727 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17030831ns 298732 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17031229ns 298739 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17031399ns 298742 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17031854ns 298750 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17032025ns 298753 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17032309ns 298758 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17032593ns 298763 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17032877ns 298768 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17033332ns 298776 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17033502ns 298779 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17033786ns 298784 1a110850 fd5ff06f jal x0, -44 +17034071ns 298789 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17034355ns 298794 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17034753ns 298801 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17034923ns 298804 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17035378ns 298812 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17035548ns 298815 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17035832ns 298820 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17036117ns 298825 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17036401ns 298830 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17036855ns 298838 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17037026ns 298841 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17037310ns 298846 1a110850 fd5ff06f jal x0, -44 +17037594ns 298851 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17037878ns 298856 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17038276ns 298863 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17038447ns 298866 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17038901ns 298874 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17039072ns 298877 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17039356ns 298882 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17039640ns 298887 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17039924ns 298892 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17040379ns 298900 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17040549ns 298903 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17040834ns 298908 1a110850 fd5ff06f jal x0, -44 +17041118ns 298913 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17041402ns 298918 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17041800ns 298925 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17041970ns 298928 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17042425ns 298936 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17042595ns 298939 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17042880ns 298944 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17043164ns 298949 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17043448ns 298954 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17043903ns 298962 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17044073ns 298965 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17044357ns 298970 1a110850 fd5ff06f jal x0, -44 +17044641ns 298975 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17044925ns 298980 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17045323ns 298987 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17045494ns 298990 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17045948ns 298998 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17046119ns 299001 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17046403ns 299006 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17046687ns 299011 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17046971ns 299016 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17047426ns 299024 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17047597ns 299027 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17047881ns 299032 1a110850 fd5ff06f jal x0, -44 +17048165ns 299037 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17048449ns 299042 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17048847ns 299049 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17049017ns 299052 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17049472ns 299060 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17049643ns 299063 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17049927ns 299068 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17050211ns 299073 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17050495ns 299078 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17050950ns 299086 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17051120ns 299089 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17051404ns 299094 1a110850 fd5ff06f jal x0, -44 +17051688ns 299099 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17051973ns 299104 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17052370ns 299111 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17052541ns 299114 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17052996ns 299122 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17053166ns 299125 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17053450ns 299130 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17053734ns 299135 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17054019ns 299140 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17054473ns 299148 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17054644ns 299151 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17054928ns 299156 1a110850 fd5ff06f jal x0, -44 +17055212ns 299161 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17055496ns 299166 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17055894ns 299173 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17056065ns 299176 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17056519ns 299184 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17056690ns 299187 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17056974ns 299192 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17057258ns 299197 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17057542ns 299202 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17057997ns 299210 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17058167ns 299213 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17058451ns 299218 1a110850 fd5ff06f jal x0, -44 +17058736ns 299223 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17059020ns 299228 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17059418ns 299235 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17059588ns 299238 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17060043ns 299246 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17060213ns 299249 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17060497ns 299254 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17060782ns 299259 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17061066ns 299264 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17061520ns 299272 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17061691ns 299275 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17061975ns 299280 1a110850 fd5ff06f jal x0, -44 +17062259ns 299285 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17062543ns 299290 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17062941ns 299297 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17063112ns 299300 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17063566ns 299308 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17063737ns 299311 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17064021ns 299316 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17064305ns 299321 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17064589ns 299326 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17065044ns 299334 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17065215ns 299337 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17065499ns 299342 1a110850 fd5ff06f jal x0, -44 +17065783ns 299347 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17066067ns 299352 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17066465ns 299359 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17066635ns 299362 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17067090ns 299370 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17067260ns 299373 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17067545ns 299378 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17067829ns 299383 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17068113ns 299388 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17068568ns 299396 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17068738ns 299399 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17069022ns 299404 1a110850 fd5ff06f jal x0, -44 +17069306ns 299409 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17069591ns 299414 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17069988ns 299421 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17070159ns 299424 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17070614ns 299432 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17070784ns 299435 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17071068ns 299440 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17071352ns 299445 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17071637ns 299450 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17072091ns 299458 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17072262ns 299461 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17072546ns 299466 1a110850 fd5ff06f jal x0, -44 +17072830ns 299471 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17073114ns 299476 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17073512ns 299483 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17073682ns 299486 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17074137ns 299494 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17074308ns 299497 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17074592ns 299502 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17074876ns 299507 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17075160ns 299512 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17075615ns 299520 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17075785ns 299523 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17076069ns 299528 1a110850 fd5ff06f jal x0, -44 +17076354ns 299533 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17076638ns 299538 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17077036ns 299545 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17077206ns 299548 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17077661ns 299556 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17077831ns 299559 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17078115ns 299564 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17078400ns 299569 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17078684ns 299574 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17079138ns 299582 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17079309ns 299585 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17079593ns 299590 1a110850 fd5ff06f jal x0, -44 +17079877ns 299595 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17080161ns 299600 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17080559ns 299607 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17080730ns 299610 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17081184ns 299618 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17081355ns 299621 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17081639ns 299626 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17081923ns 299631 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17082207ns 299636 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17082662ns 299644 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17082832ns 299647 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17083117ns 299652 1a110850 fd5ff06f jal x0, -44 +17083401ns 299657 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17083685ns 299662 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17084083ns 299669 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17084253ns 299672 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17084708ns 299680 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17084878ns 299683 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17085163ns 299688 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17085447ns 299693 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17085731ns 299698 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17086186ns 299706 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17086356ns 299709 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17086640ns 299714 1a110850 fd5ff06f jal x0, -44 +17086924ns 299719 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17087208ns 299724 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17087606ns 299731 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17087777ns 299734 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17088231ns 299742 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17088402ns 299745 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17088686ns 299750 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17088970ns 299755 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17089254ns 299760 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17089709ns 299768 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17089880ns 299771 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17090164ns 299776 1a110850 fd5ff06f jal x0, -44 +17090448ns 299781 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17090732ns 299786 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17091130ns 299793 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17091300ns 299796 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17091755ns 299804 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17091926ns 299807 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17092210ns 299812 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17092494ns 299817 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17092778ns 299822 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17093233ns 299830 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17093403ns 299833 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17093687ns 299838 1a110850 fd5ff06f jal x0, -44 +17093971ns 299843 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17094256ns 299848 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17094653ns 299855 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17094824ns 299858 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17095279ns 299866 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17095449ns 299869 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17095733ns 299874 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17096017ns 299879 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17096302ns 299884 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17096756ns 299892 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17096927ns 299895 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17097211ns 299900 1a110850 fd5ff06f jal x0, -44 +17097495ns 299905 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17097779ns 299910 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17098177ns 299917 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17098348ns 299920 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17098802ns 299928 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17098973ns 299931 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17099257ns 299936 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17099541ns 299941 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17099825ns 299946 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17100280ns 299954 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17100450ns 299957 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17100735ns 299962 1a110850 fd5ff06f jal x0, -44 +17101019ns 299967 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17101303ns 299972 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17101701ns 299979 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17101871ns 299982 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17102326ns 299990 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17102496ns 299993 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17102780ns 299998 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17103065ns 300003 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17103349ns 300008 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17103803ns 300016 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17103974ns 300019 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17104258ns 300024 1a110850 fd5ff06f jal x0, -44 +17104542ns 300029 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17104826ns 300034 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17105224ns 300041 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17105395ns 300044 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17105849ns 300052 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17106020ns 300055 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17106304ns 300060 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17106588ns 300065 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17106872ns 300070 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17107327ns 300078 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17107498ns 300081 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17107782ns 300086 1a110850 fd5ff06f jal x0, -44 +17108066ns 300091 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17108350ns 300096 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17108748ns 300103 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17108918ns 300106 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17109373ns 300114 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17109543ns 300117 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17109828ns 300122 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17110112ns 300127 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17110396ns 300132 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17110851ns 300140 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17111021ns 300143 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17111305ns 300148 1a110850 fd5ff06f jal x0, -44 +17111589ns 300153 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17111874ns 300158 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17112271ns 300165 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17112442ns 300168 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17112897ns 300176 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17113067ns 300179 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17113351ns 300184 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17113635ns 300189 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17113920ns 300194 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17114374ns 300202 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17114545ns 300205 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17114829ns 300210 1a110850 fd5ff06f jal x0, -44 +17115113ns 300215 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17115397ns 300220 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17115795ns 300227 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17115965ns 300230 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17116420ns 300238 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17116591ns 300241 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17116875ns 300246 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17117159ns 300251 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17117443ns 300256 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17117898ns 300264 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17118068ns 300267 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17118352ns 300272 1a110850 fd5ff06f jal x0, -44 +17118637ns 300277 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17118921ns 300282 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17119319ns 300289 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17119489ns 300292 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17119944ns 300300 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17120114ns 300303 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17120398ns 300308 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17120683ns 300313 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17120967ns 300318 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17121421ns 300326 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17121592ns 300329 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17121876ns 300334 1a110850 fd5ff06f jal x0, -44 +17122160ns 300339 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17122444ns 300344 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17122842ns 300351 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17123013ns 300354 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17123467ns 300362 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17123638ns 300365 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17123922ns 300370 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17124206ns 300375 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17124490ns 300380 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17124945ns 300388 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17125115ns 300391 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17125400ns 300396 1a110850 fd5ff06f jal x0, -44 +17125684ns 300401 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17125968ns 300406 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17126366ns 300413 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17126536ns 300416 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17126991ns 300424 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17127161ns 300427 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17127446ns 300432 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17127730ns 300437 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17128014ns 300442 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17128469ns 300450 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17128639ns 300453 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17128923ns 300458 1a110850 fd5ff06f jal x0, -44 +17129207ns 300463 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17129491ns 300468 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17129889ns 300475 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17130060ns 300478 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17130514ns 300486 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17130685ns 300489 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17130969ns 300494 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17131253ns 300499 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17131537ns 300504 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17131992ns 300512 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17132163ns 300515 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17132447ns 300520 1a110850 fd5ff06f jal x0, -44 +17132731ns 300525 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17133015ns 300530 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17133413ns 300537 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17133583ns 300540 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17134038ns 300548 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17134209ns 300551 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17134493ns 300556 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17134777ns 300561 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17135061ns 300566 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17135516ns 300574 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17135686ns 300577 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17135970ns 300582 1a110850 fd5ff06f jal x0, -44 +17136255ns 300587 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17136539ns 300592 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17136936ns 300599 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17137107ns 300602 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17137562ns 300610 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17137732ns 300613 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17138016ns 300618 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17138300ns 300623 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17138585ns 300628 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17139039ns 300636 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17139210ns 300639 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17139494ns 300644 1a110850 fd5ff06f jal x0, -44 +17139778ns 300649 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17140062ns 300654 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17140460ns 300661 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17140631ns 300664 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17141085ns 300672 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17141256ns 300675 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17141540ns 300680 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17141824ns 300685 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17142108ns 300690 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17142563ns 300698 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17142733ns 300701 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17143018ns 300706 1a110850 fd5ff06f jal x0, -44 +17143302ns 300711 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17143586ns 300716 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17143984ns 300723 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17144154ns 300726 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17144609ns 300734 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17144779ns 300737 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17145063ns 300742 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17145348ns 300747 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17145632ns 300752 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17146086ns 300760 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17146257ns 300763 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17146541ns 300768 1a110850 fd5ff06f jal x0, -44 +17146825ns 300773 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17147109ns 300778 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17147507ns 300785 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17147678ns 300788 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17148132ns 300796 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17148303ns 300799 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17148587ns 300804 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17148871ns 300809 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17149155ns 300814 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17149610ns 300822 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17149781ns 300825 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17150065ns 300830 1a110850 fd5ff06f jal x0, -44 +17150349ns 300835 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17150633ns 300840 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17151031ns 300847 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17151201ns 300850 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17151656ns 300858 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17151826ns 300861 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17152111ns 300866 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17152395ns 300871 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17152679ns 300876 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17153134ns 300884 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17153304ns 300887 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17153588ns 300892 1a110850 fd5ff06f jal x0, -44 +17153872ns 300897 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17154157ns 300902 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17154554ns 300909 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17154725ns 300912 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17155180ns 300920 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17155350ns 300923 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17155634ns 300928 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17155918ns 300933 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17156203ns 300938 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17156657ns 300946 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17156828ns 300949 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17157112ns 300954 1a110850 fd5ff06f jal x0, -44 +17157396ns 300959 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17157680ns 300964 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17158078ns 300971 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17158248ns 300974 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17158703ns 300982 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17158874ns 300985 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17159158ns 300990 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17159442ns 300995 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17159726ns 301000 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17160181ns 301008 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17160351ns 301011 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17160635ns 301016 1a110850 fd5ff06f jal x0, -44 +17160920ns 301021 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17161204ns 301026 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17161602ns 301033 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17161772ns 301036 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17162227ns 301044 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17162397ns 301047 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17162681ns 301052 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17162966ns 301057 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17163250ns 301062 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17163704ns 301070 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17163875ns 301073 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17164159ns 301078 1a110850 fd5ff06f jal x0, -44 +17164443ns 301083 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17164727ns 301088 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17165125ns 301095 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17165296ns 301098 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17165750ns 301106 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17165921ns 301109 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17166205ns 301114 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17166489ns 301119 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17166773ns 301124 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17167228ns 301132 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17167398ns 301135 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17167683ns 301140 1a110850 fd5ff06f jal x0, -44 +17167967ns 301145 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17168251ns 301150 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17168649ns 301157 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17168819ns 301160 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17169274ns 301168 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17169444ns 301171 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17169729ns 301176 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17170013ns 301181 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17170297ns 301186 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17170752ns 301194 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17170922ns 301197 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17171206ns 301202 1a110850 fd5ff06f jal x0, -44 +17171490ns 301207 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17171775ns 301212 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17172172ns 301219 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17172343ns 301222 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17172797ns 301230 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17172968ns 301233 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17173252ns 301238 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17173536ns 301243 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17173820ns 301248 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17174275ns 301256 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17174446ns 301259 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17174730ns 301264 1a110850 fd5ff06f jal x0, -44 +17175014ns 301269 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17175298ns 301274 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17175696ns 301281 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17175866ns 301284 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17176321ns 301292 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17176492ns 301295 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17176776ns 301300 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17177060ns 301305 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17177344ns 301310 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17177799ns 301318 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17177969ns 301321 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17178253ns 301326 1a110850 fd5ff06f jal x0, -44 +17178538ns 301331 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17178822ns 301336 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17179219ns 301343 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17179390ns 301346 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17179845ns 301354 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17180015ns 301357 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17180299ns 301362 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17180583ns 301367 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17180868ns 301372 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17181322ns 301380 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17181493ns 301383 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17181777ns 301388 1a110850 fd5ff06f jal x0, -44 +17182061ns 301393 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17182345ns 301398 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17182743ns 301405 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17182914ns 301408 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17183368ns 301416 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17183539ns 301419 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17183823ns 301424 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17184107ns 301429 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17184391ns 301434 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17184846ns 301442 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17185016ns 301445 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17185301ns 301450 1a110850 fd5ff06f jal x0, -44 +17185585ns 301455 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17185869ns 301460 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17186267ns 301467 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17186437ns 301470 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17186892ns 301478 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17187062ns 301481 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17187346ns 301486 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17187631ns 301491 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17187915ns 301496 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17188369ns 301504 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17188540ns 301507 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17188824ns 301512 1a110850 fd5ff06f jal x0, -44 +17189108ns 301517 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17189392ns 301522 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17189790ns 301529 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17189961ns 301532 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17190415ns 301540 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17190586ns 301543 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17190870ns 301548 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17191154ns 301553 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17191438ns 301558 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17191893ns 301566 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17192064ns 301569 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17192348ns 301574 1a110850 fd5ff06f jal x0, -44 +17192632ns 301579 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17192916ns 301584 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17193314ns 301591 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17193484ns 301594 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17193939ns 301602 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17194109ns 301605 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17194394ns 301610 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17194678ns 301615 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17194962ns 301620 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17195417ns 301628 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17195587ns 301631 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17195871ns 301636 1a110850 fd5ff06f jal x0, -44 +17196155ns 301641 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17196440ns 301646 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17196837ns 301653 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17197008ns 301656 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17197463ns 301664 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17197633ns 301667 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17197917ns 301672 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17198201ns 301677 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17198486ns 301682 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17198940ns 301690 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17199111ns 301693 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17199395ns 301698 1a110850 fd5ff06f jal x0, -44 +17199679ns 301703 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17199963ns 301708 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17200361ns 301715 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17200531ns 301718 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17200986ns 301726 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17201157ns 301729 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17201441ns 301734 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17201725ns 301739 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17202009ns 301744 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17202464ns 301752 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17202634ns 301755 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17202918ns 301760 1a110850 fd5ff06f jal x0, -44 +17203203ns 301765 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17203487ns 301770 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17203885ns 301777 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17204055ns 301780 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17204510ns 301788 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17204680ns 301791 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17204964ns 301796 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17205249ns 301801 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17205533ns 301806 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17205987ns 301814 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17206158ns 301817 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17206442ns 301822 1a110850 fd5ff06f jal x0, -44 +17206726ns 301827 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17207010ns 301832 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17207408ns 301839 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17207579ns 301842 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17208033ns 301850 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17208204ns 301853 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17208488ns 301858 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17208772ns 301863 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17209056ns 301868 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17209511ns 301876 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17209681ns 301879 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17209966ns 301884 1a110850 fd5ff06f jal x0, -44 +17210250ns 301889 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17210534ns 301894 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17210932ns 301901 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17211102ns 301904 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17211557ns 301912 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17211727ns 301915 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17212012ns 301920 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17212296ns 301925 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17212580ns 301930 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17213035ns 301938 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17213205ns 301941 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17213489ns 301946 1a110850 fd5ff06f jal x0, -44 +17213773ns 301951 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17214058ns 301956 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17214455ns 301963 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17214626ns 301966 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17215080ns 301974 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17215251ns 301977 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17215535ns 301982 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17215819ns 301987 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17216103ns 301992 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17216558ns 302000 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17216729ns 302003 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17217013ns 302008 1a110850 fd5ff06f jal x0, -44 +17217297ns 302013 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17217581ns 302018 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17217979ns 302025 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17218149ns 302028 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17218604ns 302036 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17218775ns 302039 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17219059ns 302044 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17219343ns 302049 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17219627ns 302054 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17220082ns 302062 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17220252ns 302065 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17220536ns 302070 1a110850 fd5ff06f jal x0, -44 +17220821ns 302075 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17221105ns 302080 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17221503ns 302087 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17221673ns 302090 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17222128ns 302098 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17222298ns 302101 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17222582ns 302106 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17222866ns 302111 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17223151ns 302116 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17223605ns 302124 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17223776ns 302127 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17224060ns 302132 1a110850 fd5ff06f jal x0, -44 +17224344ns 302137 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17224628ns 302142 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17225026ns 302149 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17225197ns 302152 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17225651ns 302160 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17225822ns 302163 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17226106ns 302168 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17226390ns 302173 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17226674ns 302178 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17227129ns 302186 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17227299ns 302189 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17227584ns 302194 1a110850 fd5ff06f jal x0, -44 +17227868ns 302199 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17228152ns 302204 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17228550ns 302211 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17228720ns 302214 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17229175ns 302222 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17229345ns 302225 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17229629ns 302230 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17229914ns 302235 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17230198ns 302240 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17230652ns 302248 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17230823ns 302251 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17231107ns 302256 1a110850 fd5ff06f jal x0, -44 +17231391ns 302261 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17231675ns 302266 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17232073ns 302273 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17232244ns 302276 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17232698ns 302284 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17232869ns 302287 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17233153ns 302292 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17233437ns 302297 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17233721ns 302302 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17234176ns 302310 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17234347ns 302313 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17234631ns 302318 1a110850 fd5ff06f jal x0, -44 +17234915ns 302323 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17235199ns 302328 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17235597ns 302335 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17235767ns 302338 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17236222ns 302346 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17236392ns 302349 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17236677ns 302354 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17236961ns 302359 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17237245ns 302364 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17237700ns 302372 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17237870ns 302375 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17238154ns 302380 1a110850 fd5ff06f jal x0, -44 +17238438ns 302385 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17238723ns 302390 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17239120ns 302397 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17239291ns 302400 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17239746ns 302408 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17239916ns 302411 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17240200ns 302416 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17240484ns 302421 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17240769ns 302426 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17241223ns 302434 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17241394ns 302437 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17241678ns 302442 1a110850 fd5ff06f jal x0, -44 +17241962ns 302447 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17242246ns 302452 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17242644ns 302459 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17242815ns 302462 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17243269ns 302470 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17243440ns 302473 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17243724ns 302478 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17244008ns 302483 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17244292ns 302488 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17244747ns 302496 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17244917ns 302499 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17245201ns 302504 1a110850 fd5ff06f jal x0, -44 +17245486ns 302509 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17245770ns 302514 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17246168ns 302521 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17246338ns 302524 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17246793ns 302532 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17246963ns 302535 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17247247ns 302540 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17247532ns 302545 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17247816ns 302550 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17248270ns 302558 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17248441ns 302561 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17248725ns 302566 1a110850 fd5ff06f jal x0, -44 +17249009ns 302571 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17249293ns 302576 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17249691ns 302583 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17249862ns 302586 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17250316ns 302594 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17250487ns 302597 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17250771ns 302602 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17251055ns 302607 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17251339ns 302612 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17251794ns 302620 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17251964ns 302623 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17252249ns 302628 1a110850 fd5ff06f jal x0, -44 +17252533ns 302633 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17252817ns 302638 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17253215ns 302645 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17253385ns 302648 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17253840ns 302656 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17254010ns 302659 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17254295ns 302664 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17254579ns 302669 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17254863ns 302674 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17255318ns 302682 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17255488ns 302685 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17255772ns 302690 1a110850 fd5ff06f jal x0, -44 +17256056ns 302695 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17256341ns 302700 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17256738ns 302707 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17256909ns 302710 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17257363ns 302718 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17257534ns 302721 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17257818ns 302726 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17258102ns 302731 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17258386ns 302736 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17258841ns 302744 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17259012ns 302747 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17259296ns 302752 1a110850 fd5ff06f jal x0, -44 +17259580ns 302757 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17259864ns 302762 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17260262ns 302769 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17260432ns 302772 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17260887ns 302780 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17261058ns 302783 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17261342ns 302788 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17261626ns 302793 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17261910ns 302798 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17262365ns 302806 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17262535ns 302809 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17262819ns 302814 1a110850 fd5ff06f jal x0, -44 +17263104ns 302819 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17263388ns 302824 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17263786ns 302831 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17263956ns 302834 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17264411ns 302842 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17264581ns 302845 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17264865ns 302850 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17265149ns 302855 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17265434ns 302860 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17265888ns 302868 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17266059ns 302871 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17266343ns 302876 1a110850 fd5ff06f jal x0, -44 +17266627ns 302881 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17266911ns 302886 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17267309ns 302893 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17267480ns 302896 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17267934ns 302904 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17268105ns 302907 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17268389ns 302912 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17268673ns 302917 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17268957ns 302922 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17269412ns 302930 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17269582ns 302933 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17269867ns 302938 1a110850 fd5ff06f jal x0, -44 +17270151ns 302943 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17270435ns 302948 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17270833ns 302955 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17271003ns 302958 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17271458ns 302966 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17271628ns 302969 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17271912ns 302974 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17272197ns 302979 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17272481ns 302984 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17272935ns 302992 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17273106ns 302995 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17273390ns 303000 1a110850 fd5ff06f jal x0, -44 +17273674ns 303005 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17273958ns 303010 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17274356ns 303017 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17274527ns 303020 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17274981ns 303028 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17275152ns 303031 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17275436ns 303036 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17275720ns 303041 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17276004ns 303046 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17276459ns 303054 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17276630ns 303057 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17276914ns 303062 1a110850 fd5ff06f jal x0, -44 +17277198ns 303067 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17277482ns 303072 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17277880ns 303079 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17278050ns 303082 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17278505ns 303090 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17278675ns 303093 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17278960ns 303098 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17279244ns 303103 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17279528ns 303108 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17279983ns 303116 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17280153ns 303119 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17280437ns 303124 1a110850 fd5ff06f jal x0, -44 +17280721ns 303129 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17281006ns 303134 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17281403ns 303141 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17281574ns 303144 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17282029ns 303152 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17282199ns 303155 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17282483ns 303160 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17282767ns 303165 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17283052ns 303170 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17283506ns 303178 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17283677ns 303181 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17283961ns 303186 1a110850 fd5ff06f jal x0, -44 +17284245ns 303191 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17284529ns 303196 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17284927ns 303203 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17285098ns 303206 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17285552ns 303214 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17285723ns 303217 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17286007ns 303222 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17286291ns 303227 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17286575ns 303232 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17287030ns 303240 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17287200ns 303243 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17287484ns 303248 1a110850 fd5ff06f jal x0, -44 +17287769ns 303253 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17288053ns 303258 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17288451ns 303265 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17288621ns 303268 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17289076ns 303276 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17289246ns 303279 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17289530ns 303284 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17289815ns 303289 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17290099ns 303294 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17290553ns 303302 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17290724ns 303305 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17291008ns 303310 1a110850 fd5ff06f jal x0, -44 +17291292ns 303315 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17291576ns 303320 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17291974ns 303327 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17292145ns 303330 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17292599ns 303338 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17292770ns 303341 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17293054ns 303346 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17293338ns 303351 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17293622ns 303356 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17294077ns 303364 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17294247ns 303367 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17294532ns 303372 1a110850 fd5ff06f jal x0, -44 +17294816ns 303377 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17295100ns 303382 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17295498ns 303389 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17295668ns 303392 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17296123ns 303400 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17296293ns 303403 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17296578ns 303408 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17296862ns 303413 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17297146ns 303418 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17297601ns 303426 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17297771ns 303429 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17298055ns 303434 1a110850 fd5ff06f jal x0, -44 +17298339ns 303439 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17298624ns 303444 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17299021ns 303451 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17299192ns 303454 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17299647ns 303462 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17299817ns 303465 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17300101ns 303470 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17300385ns 303475 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17300669ns 303480 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17301124ns 303488 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17301295ns 303491 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17301579ns 303496 1a110850 fd5ff06f jal x0, -44 +17301863ns 303501 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17302147ns 303506 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17302545ns 303513 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17302715ns 303516 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17303170ns 303524 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17303341ns 303527 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17303625ns 303532 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17303909ns 303537 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17304193ns 303542 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17304648ns 303550 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17304818ns 303553 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17305102ns 303558 1a110850 fd5ff06f jal x0, -44 +17305387ns 303563 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17305671ns 303568 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17306069ns 303575 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17306239ns 303578 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17306694ns 303586 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17306864ns 303589 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17307148ns 303594 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17307432ns 303599 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17307717ns 303604 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17308171ns 303612 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17308342ns 303615 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17308626ns 303620 1a110850 fd5ff06f jal x0, -44 +17308910ns 303625 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17309194ns 303630 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17309592ns 303637 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17309763ns 303640 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17310217ns 303648 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17310388ns 303651 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17310672ns 303656 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17310956ns 303661 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17311240ns 303666 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17311695ns 303674 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17311865ns 303677 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17312150ns 303682 1a110850 fd5ff06f jal x0, -44 +17312434ns 303687 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17312718ns 303692 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17313116ns 303699 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17313286ns 303702 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17313741ns 303710 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17313911ns 303713 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17314195ns 303718 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17314480ns 303723 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17314764ns 303728 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17315218ns 303736 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17315389ns 303739 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17315673ns 303744 1a110850 fd5ff06f jal x0, -44 +17315957ns 303749 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17316241ns 303754 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17316639ns 303761 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17316810ns 303764 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17317264ns 303772 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17317435ns 303775 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17317719ns 303780 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17318003ns 303785 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17318287ns 303790 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17318742ns 303798 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17318913ns 303801 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17319197ns 303806 1a110850 fd5ff06f jal x0, -44 +17319481ns 303811 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17319765ns 303816 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17320163ns 303823 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17320333ns 303826 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17320788ns 303834 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17320959ns 303837 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17321243ns 303842 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17321527ns 303847 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17321811ns 303852 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17322266ns 303860 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17322436ns 303863 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17322720ns 303868 1a110850 fd5ff06f jal x0, -44 +17323004ns 303873 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17323289ns 303878 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17323686ns 303885 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17323857ns 303888 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17324312ns 303896 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17324482ns 303899 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17324766ns 303904 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17325050ns 303909 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17325335ns 303914 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17325789ns 303922 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17325960ns 303925 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17326244ns 303930 1a110850 fd5ff06f jal x0, -44 +17326528ns 303935 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17326812ns 303940 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17327210ns 303947 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17327381ns 303950 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17327835ns 303958 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17328006ns 303961 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17328290ns 303966 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17328574ns 303971 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17328858ns 303976 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17329313ns 303984 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17329483ns 303987 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17329767ns 303992 1a110850 fd5ff06f jal x0, -44 +17330052ns 303997 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17330336ns 304002 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17330734ns 304009 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17330904ns 304012 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17331359ns 304020 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17331529ns 304023 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17331813ns 304028 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17332098ns 304033 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17332382ns 304038 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17332836ns 304046 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17333007ns 304049 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17333291ns 304054 1a110850 fd5ff06f jal x0, -44 +17333575ns 304059 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17333859ns 304064 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17334257ns 304071 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17334428ns 304074 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17334882ns 304082 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17335053ns 304085 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17335337ns 304090 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17335621ns 304095 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17335905ns 304100 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17336360ns 304108 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17336530ns 304111 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17336815ns 304116 1a110850 fd5ff06f jal x0, -44 +17337099ns 304121 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17337383ns 304126 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17337781ns 304133 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17337951ns 304136 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17338406ns 304144 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17338576ns 304147 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17338861ns 304152 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17339145ns 304157 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17339429ns 304162 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17339884ns 304170 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17340054ns 304173 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17340338ns 304178 1a110850 fd5ff06f jal x0, -44 +17340622ns 304183 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17340907ns 304188 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17341304ns 304195 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17341475ns 304198 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17341930ns 304206 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17342100ns 304209 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17342384ns 304214 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17342668ns 304219 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17342952ns 304224 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17343407ns 304232 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17343578ns 304235 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17343862ns 304240 1a110850 fd5ff06f jal x0, -44 +17344146ns 304245 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17344430ns 304250 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17344828ns 304257 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17344998ns 304260 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17345453ns 304268 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17345624ns 304271 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17345908ns 304276 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17346192ns 304281 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17346476ns 304286 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17346931ns 304294 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17347101ns 304297 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17347385ns 304302 1a110850 fd5ff06f jal x0, -44 +17347670ns 304307 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17347954ns 304312 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17348352ns 304319 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17348522ns 304322 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17348977ns 304330 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17349147ns 304333 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17349431ns 304338 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17349715ns 304343 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17350000ns 304348 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17350454ns 304356 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17350625ns 304359 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17350909ns 304364 1a110850 fd5ff06f jal x0, -44 +17351193ns 304369 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17351477ns 304374 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17351875ns 304381 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17352046ns 304384 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17352500ns 304392 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17352671ns 304395 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17352955ns 304400 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17353239ns 304405 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17353523ns 304410 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17353978ns 304418 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17354148ns 304421 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17354433ns 304426 1a110850 fd5ff06f jal x0, -44 +17354717ns 304431 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17355001ns 304436 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17355399ns 304443 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17355569ns 304446 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17356024ns 304454 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17356194ns 304457 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17356479ns 304462 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17356763ns 304467 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17357047ns 304472 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17357501ns 304480 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17357672ns 304483 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17357956ns 304488 1a110850 fd5ff06f jal x0, -44 +17358240ns 304493 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17358524ns 304498 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17358922ns 304505 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17359093ns 304508 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17359547ns 304516 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17359718ns 304519 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17360002ns 304524 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17360286ns 304529 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17360570ns 304534 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17361025ns 304542 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17361196ns 304545 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17361480ns 304550 1a110850 fd5ff06f jal x0, -44 +17361764ns 304555 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17362048ns 304560 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17362446ns 304567 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17362616ns 304570 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17363071ns 304578 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17363242ns 304581 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17363526ns 304586 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17363810ns 304591 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17364094ns 304596 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17364549ns 304604 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17364719ns 304607 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17365003ns 304612 1a110850 fd5ff06f jal x0, -44 +17365287ns 304617 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17365572ns 304622 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17365969ns 304629 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17366140ns 304632 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17366595ns 304640 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17366765ns 304643 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17367049ns 304648 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17367333ns 304653 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17367618ns 304658 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17368072ns 304666 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17368243ns 304669 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17368527ns 304674 1a110850 fd5ff06f jal x0, -44 +17368811ns 304679 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17369095ns 304684 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17369493ns 304691 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17369664ns 304694 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17370118ns 304702 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17370289ns 304705 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17370573ns 304710 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17370857ns 304715 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17371141ns 304720 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17371596ns 304728 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17371766ns 304731 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17372050ns 304736 1a110850 fd5ff06f jal x0, -44 +17372335ns 304741 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17372619ns 304746 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17373017ns 304753 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17373187ns 304756 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17373642ns 304764 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17373812ns 304767 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17374096ns 304772 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17374381ns 304777 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17374665ns 304782 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17375119ns 304790 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17375290ns 304793 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17375574ns 304798 1a110850 fd5ff06f jal x0, -44 +17375858ns 304803 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17376142ns 304808 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17376540ns 304815 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17376711ns 304818 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17377165ns 304826 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17377336ns 304829 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17377620ns 304834 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17377904ns 304839 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17378188ns 304844 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17378643ns 304852 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17378813ns 304855 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17379098ns 304860 1a110850 fd5ff06f jal x0, -44 +17379382ns 304865 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17379666ns 304870 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17380064ns 304877 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17380234ns 304880 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17380689ns 304888 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17380859ns 304891 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17381144ns 304896 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17381428ns 304901 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17381712ns 304906 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17382167ns 304914 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17382337ns 304917 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17382621ns 304922 1a110850 fd5ff06f jal x0, -44 +17382905ns 304927 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17383190ns 304932 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17383587ns 304939 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17383758ns 304942 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17384213ns 304950 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17384383ns 304953 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17384667ns 304958 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17384951ns 304963 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17385235ns 304968 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17385690ns 304976 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17385861ns 304979 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17386145ns 304984 1a110850 fd5ff06f jal x0, -44 +17386429ns 304989 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17386713ns 304994 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17387111ns 305001 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17387281ns 305004 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17387736ns 305012 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17387907ns 305015 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17388191ns 305020 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17388475ns 305025 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17388759ns 305030 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17389214ns 305038 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17389384ns 305041 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17389668ns 305046 1a110850 fd5ff06f jal x0, -44 +17389953ns 305051 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17390237ns 305056 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17390635ns 305063 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17390805ns 305066 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17391260ns 305074 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17391430ns 305077 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17391714ns 305082 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17391999ns 305087 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17392283ns 305092 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17392737ns 305100 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17392908ns 305103 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17393192ns 305108 1a110850 fd5ff06f jal x0, -44 +17393476ns 305113 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17393760ns 305118 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17394158ns 305125 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17394329ns 305128 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17394783ns 305136 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17394954ns 305139 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17395238ns 305144 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17395522ns 305149 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17395806ns 305154 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17396261ns 305162 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17396431ns 305165 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17396716ns 305170 1a110850 fd5ff06f jal x0, -44 +17397000ns 305175 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17397284ns 305180 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17397682ns 305187 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17397852ns 305190 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17398307ns 305198 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17398477ns 305201 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17398762ns 305206 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17399046ns 305211 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17399330ns 305216 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17399784ns 305224 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17399955ns 305227 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17400239ns 305232 1a110850 fd5ff06f jal x0, -44 +17400523ns 305237 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17400807ns 305242 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17401205ns 305249 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17401376ns 305252 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17401830ns 305260 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17402001ns 305263 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17402285ns 305268 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17402569ns 305273 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17402853ns 305278 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17403308ns 305286 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17403479ns 305289 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17403763ns 305294 1a110850 fd5ff06f jal x0, -44 +17404047ns 305299 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17404331ns 305304 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17404729ns 305311 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17404899ns 305314 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17405354ns 305322 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17405525ns 305325 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17405809ns 305330 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17406093ns 305335 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17406377ns 305340 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17406832ns 305348 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17407002ns 305351 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17407286ns 305356 1a110850 fd5ff06f jal x0, -44 +17407570ns 305361 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17407855ns 305366 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17408252ns 305373 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17408423ns 305376 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17408878ns 305384 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17409048ns 305387 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17409332ns 305392 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17409616ns 305397 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17409901ns 305402 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17410355ns 305410 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17410526ns 305413 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17410810ns 305418 1a110850 fd5ff06f jal x0, -44 +17411094ns 305423 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17411378ns 305428 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17411776ns 305435 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17411947ns 305438 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17412401ns 305446 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17412572ns 305449 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17412856ns 305454 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17413140ns 305459 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17413424ns 305464 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17413879ns 305472 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17414049ns 305475 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17414333ns 305480 1a110850 fd5ff06f jal x0, -44 +17414618ns 305485 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17414902ns 305490 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17415300ns 305497 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17415470ns 305500 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17415925ns 305508 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17416095ns 305511 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17416379ns 305516 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17416664ns 305521 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17416948ns 305526 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17417402ns 305534 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17417573ns 305537 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17417857ns 305542 1a110850 fd5ff06f jal x0, -44 +17418141ns 305547 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17418425ns 305552 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17418823ns 305559 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17418994ns 305562 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17419448ns 305570 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17419619ns 305573 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17419903ns 305578 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17420187ns 305583 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17420471ns 305588 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17420926ns 305596 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17421096ns 305599 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17421381ns 305604 1a110850 fd5ff06f jal x0, -44 +17421665ns 305609 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17421949ns 305614 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17422347ns 305621 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17422517ns 305624 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17422972ns 305632 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17423142ns 305635 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17423427ns 305640 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17423711ns 305645 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17423995ns 305650 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17424450ns 305658 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17424620ns 305661 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17424904ns 305666 1a110850 fd5ff06f jal x0, -44 +17425188ns 305671 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17425473ns 305676 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17425870ns 305683 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17426041ns 305686 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17426496ns 305694 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17426666ns 305697 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17426950ns 305702 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17427234ns 305707 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17427519ns 305712 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17427973ns 305720 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17428144ns 305723 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17428428ns 305728 1a110850 fd5ff06f jal x0, -44 +17428712ns 305733 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17428996ns 305738 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17429394ns 305745 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17429564ns 305748 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17430019ns 305756 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17430190ns 305759 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17430474ns 305764 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17430758ns 305769 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17431042ns 305774 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17431497ns 305782 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17431667ns 305785 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17431951ns 305790 1a110850 fd5ff06f jal x0, -44 +17432236ns 305795 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17432520ns 305800 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17432918ns 305807 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17433088ns 305810 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17433543ns 305818 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17433713ns 305821 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17433997ns 305826 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17434282ns 305831 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17434566ns 305836 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17435020ns 305844 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17435191ns 305847 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17435475ns 305852 1a110850 fd5ff06f jal x0, -44 +17435759ns 305857 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17436043ns 305862 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17436441ns 305869 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17436612ns 305872 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17437066ns 305880 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17437237ns 305883 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17437521ns 305888 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17437805ns 305893 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17438089ns 305898 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17438544ns 305906 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17438714ns 305909 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17438999ns 305914 1a110850 fd5ff06f jal x0, -44 +17439283ns 305919 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17439567ns 305924 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17439965ns 305931 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17440135ns 305934 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17440590ns 305942 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17440760ns 305945 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17441045ns 305950 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17441329ns 305955 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17441613ns 305960 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17442067ns 305968 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17442238ns 305971 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17442522ns 305976 1a110850 fd5ff06f jal x0, -44 +17442806ns 305981 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17443090ns 305986 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17443488ns 305993 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17443659ns 305996 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17444113ns 306004 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17444284ns 306007 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17444568ns 306012 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17444852ns 306017 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17445136ns 306022 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17445591ns 306030 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17445762ns 306033 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17446046ns 306038 1a110850 fd5ff06f jal x0, -44 +17446330ns 306043 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17446614ns 306048 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17447012ns 306055 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17447182ns 306058 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17447637ns 306066 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17447808ns 306069 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17448092ns 306074 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17448376ns 306079 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17448660ns 306084 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17449115ns 306092 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17449285ns 306095 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17449569ns 306100 1a110850 fd5ff06f jal x0, -44 +17449853ns 306105 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17450138ns 306110 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17450535ns 306117 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17450706ns 306120 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17451161ns 306128 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17451331ns 306131 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17451615ns 306136 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17451899ns 306141 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17452184ns 306146 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17452638ns 306154 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17452809ns 306157 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17453093ns 306162 1a110850 fd5ff06f jal x0, -44 +17453377ns 306167 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17453661ns 306172 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17454059ns 306179 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17454230ns 306182 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17454684ns 306190 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17454855ns 306193 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17455139ns 306198 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17455423ns 306203 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17455707ns 306208 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17456162ns 306216 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17456332ns 306219 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17456616ns 306224 1a110850 fd5ff06f jal x0, -44 +17456901ns 306229 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17457185ns 306234 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17457583ns 306241 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17457753ns 306244 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17458208ns 306252 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17458378ns 306255 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17458662ns 306260 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17458947ns 306265 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17459231ns 306270 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17459685ns 306278 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17459856ns 306281 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17460140ns 306286 1a110850 fd5ff06f jal x0, -44 +17460424ns 306291 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17460708ns 306296 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17461106ns 306303 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17461277ns 306306 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17461731ns 306314 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17461902ns 306317 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17462186ns 306322 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17462470ns 306327 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17462754ns 306332 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17463209ns 306340 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17463379ns 306343 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17463664ns 306348 1a110850 fd5ff06f jal x0, -44 +17463948ns 306353 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17464232ns 306358 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17464630ns 306365 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17464800ns 306368 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17465255ns 306376 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17465425ns 306379 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17465710ns 306384 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17465994ns 306389 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17466278ns 306394 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17466733ns 306402 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17466903ns 306405 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17467187ns 306410 1a110850 fd5ff06f jal x0, -44 +17467471ns 306415 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17467756ns 306420 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17468153ns 306427 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17468324ns 306430 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17468779ns 306438 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17468949ns 306441 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17469233ns 306446 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17469517ns 306451 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17469802ns 306456 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17470256ns 306464 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17470427ns 306467 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17470711ns 306472 1a110850 fd5ff06f jal x0, -44 +17470995ns 306477 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17471279ns 306482 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17471677ns 306489 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17471847ns 306492 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17472302ns 306500 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17472473ns 306503 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17472757ns 306508 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17473041ns 306513 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17473325ns 306518 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17473780ns 306526 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17473950ns 306529 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17474234ns 306534 1a110850 fd5ff06f jal x0, -44 +17474519ns 306539 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17474803ns 306544 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17475201ns 306551 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17475371ns 306554 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17475826ns 306562 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17475996ns 306565 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17476280ns 306570 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17476565ns 306575 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17476849ns 306580 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17477303ns 306588 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17477474ns 306591 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17477758ns 306596 1a110850 fd5ff06f jal x0, -44 +17478042ns 306601 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17478326ns 306606 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17478724ns 306613 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17478895ns 306616 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17479349ns 306624 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17479520ns 306627 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17479804ns 306632 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17480088ns 306637 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17480372ns 306642 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17480827ns 306650 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17480997ns 306653 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17481282ns 306658 1a110850 fd5ff06f jal x0, -44 +17481566ns 306663 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17481850ns 306668 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17482248ns 306675 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17482418ns 306678 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17482873ns 306686 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17483043ns 306689 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17483328ns 306694 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17483612ns 306699 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17483896ns 306704 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17484351ns 306712 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17484521ns 306715 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17484805ns 306720 1a110850 fd5ff06f jal x0, -44 +17485089ns 306725 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17485373ns 306730 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17485771ns 306737 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17485942ns 306740 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17486396ns 306748 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17486567ns 306751 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17486851ns 306756 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17487135ns 306761 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17487419ns 306766 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17487874ns 306774 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17488045ns 306777 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17488329ns 306782 1a110850 fd5ff06f jal x0, -44 +17488613ns 306787 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17488897ns 306792 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17489295ns 306799 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17489465ns 306802 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17489920ns 306810 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17490091ns 306813 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17490375ns 306818 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17490659ns 306823 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17490943ns 306828 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17491398ns 306836 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17491568ns 306839 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17491852ns 306844 1a110850 fd5ff06f jal x0, -44 +17492136ns 306849 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17492421ns 306854 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17492818ns 306861 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17492989ns 306864 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17493444ns 306872 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17493614ns 306875 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17493898ns 306880 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17494182ns 306885 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17494467ns 306890 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17494921ns 306898 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17495092ns 306901 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17495376ns 306906 1a110850 fd5ff06f jal x0, -44 +17495660ns 306911 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17495944ns 306916 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17496342ns 306923 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17496513ns 306926 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17496967ns 306934 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17497138ns 306937 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17497422ns 306942 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17497706ns 306947 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17497990ns 306952 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17498445ns 306960 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17498615ns 306963 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17498899ns 306968 1a110850 fd5ff06f jal x0, -44 +17499184ns 306973 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17499468ns 306978 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17499866ns 306985 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17500036ns 306988 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17500491ns 306996 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17500661ns 306999 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17500945ns 307004 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17501230ns 307009 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17501514ns 307014 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17501968ns 307022 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17502139ns 307025 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17502423ns 307030 1a110850 fd5ff06f jal x0, -44 +17502707ns 307035 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17502991ns 307040 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17503389ns 307047 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17503560ns 307050 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17504014ns 307058 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17504185ns 307061 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17504469ns 307066 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17504753ns 307071 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17505037ns 307076 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17505492ns 307084 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17505663ns 307087 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17505947ns 307092 1a110850 fd5ff06f jal x0, -44 +17506231ns 307097 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17506515ns 307102 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17506913ns 307109 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17507083ns 307112 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17507538ns 307120 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17507708ns 307123 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17507993ns 307128 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17508277ns 307133 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17508561ns 307138 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17509016ns 307146 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17509186ns 307149 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17509470ns 307154 1a110850 fd5ff06f jal x0, -44 +17509754ns 307159 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17510039ns 307164 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17510436ns 307171 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17510607ns 307174 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17511062ns 307182 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17511232ns 307185 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17511516ns 307190 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17511800ns 307195 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17512085ns 307200 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17512539ns 307208 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17512710ns 307211 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17512994ns 307216 1a110850 fd5ff06f jal x0, -44 +17513278ns 307221 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17513562ns 307226 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17513960ns 307233 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17514130ns 307236 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17514585ns 307244 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17514756ns 307247 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17515040ns 307252 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17515324ns 307257 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17515608ns 307262 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17516063ns 307270 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17516233ns 307273 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17516517ns 307278 1a110850 fd5ff06f jal x0, -44 +17516802ns 307283 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17517086ns 307288 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17517484ns 307295 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17517654ns 307298 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17518109ns 307306 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17518279ns 307309 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17518563ns 307314 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17518848ns 307319 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17519132ns 307324 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17519586ns 307332 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17519757ns 307335 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17520041ns 307340 1a110850 fd5ff06f jal x0, -44 +17520325ns 307345 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17520609ns 307350 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17521007ns 307357 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17521178ns 307360 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17521632ns 307368 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17521803ns 307371 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17522087ns 307376 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17522371ns 307381 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17522655ns 307386 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17523110ns 307394 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17523280ns 307397 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17523565ns 307402 1a110850 fd5ff06f jal x0, -44 +17523849ns 307407 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17524133ns 307412 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17524531ns 307419 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17524701ns 307422 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17525156ns 307430 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17525326ns 307433 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17525611ns 307438 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17525895ns 307443 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17526179ns 307448 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17526634ns 307456 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17526804ns 307459 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17527088ns 307464 1a110850 fd5ff06f jal x0, -44 +17527372ns 307469 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17527656ns 307474 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17528054ns 307481 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17528225ns 307484 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17528679ns 307492 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17528850ns 307495 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17529134ns 307500 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17529418ns 307505 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17529702ns 307510 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17530157ns 307518 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17530328ns 307521 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17530612ns 307526 1a110850 fd5ff06f jal x0, -44 +17530896ns 307531 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17531180ns 307536 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17531578ns 307543 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17531748ns 307546 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17532203ns 307554 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17532374ns 307557 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17532658ns 307562 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17532942ns 307567 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17533226ns 307572 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17533681ns 307580 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17533851ns 307583 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17534135ns 307588 1a110850 fd5ff06f jal x0, -44 +17534419ns 307593 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17534704ns 307598 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17535101ns 307605 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17535272ns 307608 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17535727ns 307616 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17535897ns 307619 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17536181ns 307624 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17536465ns 307629 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17536750ns 307634 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17537204ns 307642 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17537375ns 307645 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17537659ns 307650 1a110850 fd5ff06f jal x0, -44 +17537943ns 307655 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17538227ns 307660 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17538625ns 307667 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17538796ns 307670 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17539250ns 307678 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17539421ns 307681 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17539705ns 307686 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17539989ns 307691 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17540273ns 307696 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17540728ns 307704 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17540898ns 307707 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17541183ns 307712 1a110850 fd5ff06f jal x0, -44 +17541467ns 307717 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17541751ns 307722 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17542149ns 307729 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17542319ns 307732 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17542774ns 307740 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17542944ns 307743 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17543228ns 307748 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17543513ns 307753 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17543797ns 307758 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17544251ns 307766 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17544422ns 307769 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17544706ns 307774 1a110850 fd5ff06f jal x0, -44 +17544990ns 307779 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17545274ns 307784 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17545672ns 307791 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17545843ns 307794 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17546297ns 307802 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17546468ns 307805 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17546752ns 307810 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17547036ns 307815 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17547320ns 307820 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17547775ns 307828 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17547946ns 307831 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17548230ns 307836 1a110850 fd5ff06f jal x0, -44 +17548514ns 307841 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17548798ns 307846 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17549196ns 307853 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17549366ns 307856 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17549821ns 307864 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17549991ns 307867 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17550276ns 307872 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17550560ns 307877 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17550844ns 307882 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17551299ns 307890 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17551469ns 307893 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17551753ns 307898 1a110850 fd5ff06f jal x0, -44 +17552037ns 307903 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17552322ns 307908 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17552719ns 307915 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17552890ns 307918 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17553345ns 307926 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17553515ns 307929 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17553799ns 307934 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17554083ns 307939 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17554368ns 307944 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17554822ns 307952 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17554993ns 307955 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17555277ns 307960 1a110850 fd5ff06f jal x0, -44 +17555561ns 307965 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17555845ns 307970 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17556243ns 307977 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17556413ns 307980 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17556868ns 307988 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17557039ns 307991 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17557323ns 307996 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17557607ns 308001 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17557891ns 308006 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17558346ns 308014 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17558516ns 308017 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17558800ns 308022 1a110850 fd5ff06f jal x0, -44 +17559085ns 308027 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17559369ns 308032 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17559767ns 308039 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17559937ns 308042 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17560392ns 308050 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17560562ns 308053 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17560846ns 308058 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17561131ns 308063 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17561415ns 308068 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17561869ns 308076 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17562040ns 308079 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17562324ns 308084 1a110850 fd5ff06f jal x0, -44 +17562608ns 308089 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17562892ns 308094 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17563290ns 308101 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17563461ns 308104 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17563915ns 308112 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17564086ns 308115 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17564370ns 308120 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17564654ns 308125 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17564938ns 308130 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17565393ns 308138 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17565563ns 308141 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17565848ns 308146 1a110850 fd5ff06f jal x0, -44 +17566132ns 308151 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17566416ns 308156 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17566814ns 308163 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17566984ns 308166 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17567439ns 308174 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17567609ns 308177 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17567894ns 308182 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17568178ns 308187 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17568462ns 308192 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17568917ns 308200 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17569087ns 308203 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17569371ns 308208 1a110850 fd5ff06f jal x0, -44 +17569655ns 308213 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17569939ns 308218 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17570337ns 308225 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17570508ns 308228 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17570962ns 308236 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17571133ns 308239 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17571417ns 308244 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17571701ns 308249 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17571985ns 308254 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17572440ns 308262 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17572611ns 308265 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17572895ns 308270 1a110850 fd5ff06f jal x0, -44 +17573179ns 308275 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17573463ns 308280 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17573861ns 308287 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17574031ns 308290 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17574486ns 308298 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17574657ns 308301 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17574941ns 308306 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17575225ns 308311 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17575509ns 308316 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17575964ns 308324 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17576134ns 308327 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17576418ns 308332 1a110850 fd5ff06f jal x0, -44 +17576703ns 308337 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17576987ns 308342 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17577384ns 308349 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17577555ns 308352 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17578010ns 308360 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17578180ns 308363 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17578464ns 308368 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17578748ns 308373 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17579033ns 308378 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17579487ns 308386 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17579658ns 308389 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17579942ns 308394 1a110850 fd5ff06f jal x0, -44 +17580226ns 308399 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17580510ns 308404 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17580908ns 308411 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17581079ns 308414 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17581533ns 308422 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17581704ns 308425 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17581988ns 308430 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17582272ns 308435 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17582556ns 308440 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17583011ns 308448 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17583181ns 308451 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17583466ns 308456 1a110850 fd5ff06f jal x0, -44 +17583750ns 308461 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17584034ns 308466 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17584432ns 308473 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17584602ns 308476 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17585057ns 308484 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17585227ns 308487 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17585511ns 308492 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17585796ns 308497 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17586080ns 308502 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17586534ns 308510 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17586705ns 308513 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17586989ns 308518 1a110850 fd5ff06f jal x0, -44 +17587273ns 308523 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17587557ns 308528 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17587955ns 308535 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17588126ns 308538 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17588580ns 308546 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17588751ns 308549 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17589035ns 308554 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17589319ns 308559 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17589603ns 308564 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17590058ns 308572 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17590229ns 308575 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17590513ns 308580 1a110850 fd5ff06f jal x0, -44 +17590797ns 308585 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17591081ns 308590 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17591479ns 308597 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17591649ns 308600 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17592104ns 308608 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17592274ns 308611 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17592559ns 308616 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17592843ns 308621 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17593127ns 308626 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17593582ns 308634 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17593752ns 308637 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17594036ns 308642 1a110850 fd5ff06f jal x0, -44 +17594320ns 308647 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17594605ns 308652 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17595002ns 308659 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17595173ns 308662 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17595628ns 308670 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17595798ns 308673 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17596082ns 308678 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17596366ns 308683 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17596651ns 308688 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17597105ns 308696 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17597276ns 308699 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17597560ns 308704 1a110850 fd5ff06f jal x0, -44 +17597844ns 308709 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17598128ns 308714 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17598526ns 308721 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17598696ns 308724 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17599151ns 308732 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17599322ns 308735 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17599606ns 308740 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17599890ns 308745 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17600174ns 308750 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17600629ns 308758 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17600799ns 308761 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17601083ns 308766 1a110850 fd5ff06f jal x0, -44 +17601368ns 308771 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17601652ns 308776 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17602050ns 308783 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17602220ns 308786 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17602675ns 308794 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17602845ns 308797 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17603129ns 308802 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17603414ns 308807 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17603698ns 308812 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17604152ns 308820 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17604323ns 308823 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17604607ns 308828 1a110850 fd5ff06f jal x0, -44 +17604891ns 308833 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17605175ns 308838 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17605573ns 308845 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17605744ns 308848 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17606198ns 308856 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17606369ns 308859 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17606653ns 308864 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17606937ns 308869 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17607221ns 308874 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17607676ns 308882 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17607846ns 308885 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17608131ns 308890 1a110850 fd5ff06f jal x0, -44 +17608415ns 308895 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17608699ns 308900 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17609097ns 308907 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17609267ns 308910 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17609722ns 308918 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17609892ns 308921 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17610177ns 308926 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17610461ns 308931 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17610745ns 308936 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17611200ns 308944 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17611370ns 308947 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17611654ns 308952 1a110850 fd5ff06f jal x0, -44 +17611938ns 308957 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17612223ns 308962 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17612620ns 308969 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17612791ns 308972 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17613245ns 308980 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17613416ns 308983 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17613700ns 308988 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17613984ns 308993 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17614268ns 308998 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17614723ns 309006 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17614894ns 309009 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17615178ns 309014 1a110850 fd5ff06f jal x0, -44 +17615462ns 309019 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17615746ns 309024 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17616144ns 309031 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17616314ns 309034 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17616769ns 309042 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17616940ns 309045 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17617224ns 309050 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17617508ns 309055 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17617792ns 309060 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17618247ns 309068 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17618417ns 309071 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17618701ns 309076 1a110850 fd5ff06f jal x0, -44 +17618986ns 309081 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17619270ns 309086 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17619667ns 309093 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17619838ns 309096 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17620293ns 309104 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17620463ns 309107 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17620747ns 309112 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17621031ns 309117 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17621316ns 309122 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17621770ns 309130 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17621941ns 309133 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17622225ns 309138 1a110850 fd5ff06f jal x0, -44 +17622509ns 309143 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17622793ns 309148 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17623191ns 309155 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17623362ns 309158 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17623816ns 309166 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17623987ns 309169 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17624271ns 309174 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17624555ns 309179 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17624839ns 309184 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17625294ns 309192 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17625464ns 309195 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17625749ns 309200 1a110850 fd5ff06f jal x0, -44 +17626033ns 309205 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17626317ns 309210 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17626715ns 309217 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17626885ns 309220 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17627340ns 309228 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17627510ns 309231 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17627794ns 309236 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17628079ns 309241 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17628363ns 309246 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17628817ns 309254 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17628988ns 309257 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17629272ns 309262 1a110850 fd5ff06f jal x0, -44 +17629556ns 309267 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17629840ns 309272 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17630238ns 309279 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17630409ns 309282 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17630863ns 309290 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17631034ns 309293 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17631318ns 309298 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17631602ns 309303 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17631886ns 309308 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17632341ns 309316 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17632512ns 309319 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17632796ns 309324 1a110850 fd5ff06f jal x0, -44 +17633080ns 309329 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17633364ns 309334 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17633762ns 309341 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17633932ns 309344 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17634387ns 309352 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17634557ns 309355 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17634842ns 309360 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17635126ns 309365 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17635410ns 309370 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17635865ns 309378 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17636035ns 309381 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17636319ns 309386 1a110850 fd5ff06f jal x0, -44 +17636603ns 309391 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17636888ns 309396 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17637285ns 309403 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17637456ns 309406 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17637911ns 309414 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17638081ns 309417 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17638365ns 309422 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17638649ns 309427 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17638934ns 309432 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17639388ns 309440 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17639559ns 309443 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17639843ns 309448 1a110850 fd5ff06f jal x0, -44 +17640127ns 309453 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17640411ns 309458 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17640809ns 309465 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17640979ns 309468 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17641434ns 309476 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17641605ns 309479 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17641889ns 309484 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17642173ns 309489 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17642457ns 309494 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17642912ns 309502 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17643082ns 309505 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17643366ns 309510 1a110850 fd5ff06f jal x0, -44 +17643651ns 309515 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17643935ns 309520 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17644333ns 309527 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17644503ns 309530 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17644958ns 309538 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17645128ns 309541 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17645412ns 309546 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17645697ns 309551 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17645981ns 309556 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17646435ns 309564 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17646606ns 309567 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17646890ns 309572 1a110850 fd5ff06f jal x0, -44 +17647174ns 309577 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17647458ns 309582 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17647856ns 309589 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17648027ns 309592 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17648481ns 309600 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17648652ns 309603 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17648936ns 309608 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17649220ns 309613 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17649504ns 309618 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17649959ns 309626 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17650129ns 309629 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17650414ns 309634 1a110850 fd5ff06f jal x0, -44 +17650698ns 309639 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17650982ns 309644 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17651380ns 309651 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17651550ns 309654 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17652005ns 309662 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17652175ns 309665 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17652460ns 309670 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17652744ns 309675 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17653028ns 309680 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17653483ns 309688 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17653653ns 309691 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17653937ns 309696 1a110850 fd5ff06f jal x0, -44 +17654221ns 309701 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17654506ns 309706 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17654903ns 309713 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17655074ns 309716 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17655528ns 309724 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17655699ns 309727 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17655983ns 309732 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17656267ns 309737 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17656551ns 309742 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17657006ns 309750 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17657177ns 309753 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17657461ns 309758 1a110850 fd5ff06f jal x0, -44 +17657745ns 309763 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17658029ns 309768 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17658427ns 309775 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17658597ns 309778 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17659052ns 309786 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17659223ns 309789 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17659507ns 309794 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17659791ns 309799 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17660075ns 309804 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17660530ns 309812 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17660700ns 309815 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17660984ns 309820 1a110850 fd5ff06f jal x0, -44 +17661269ns 309825 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17661553ns 309830 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17661951ns 309837 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17662121ns 309840 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17662576ns 309848 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17662746ns 309851 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17663030ns 309856 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17663314ns 309861 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17663599ns 309866 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17664053ns 309874 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17664224ns 309877 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17664508ns 309882 1a110850 fd5ff06f jal x0, -44 +17664792ns 309887 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17665076ns 309892 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17665474ns 309899 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17665645ns 309902 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17666099ns 309910 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17666270ns 309913 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17666554ns 309918 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17666838ns 309923 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17667122ns 309928 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17667577ns 309936 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17667747ns 309939 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17668032ns 309944 1a110850 fd5ff06f jal x0, -44 +17668316ns 309949 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17668600ns 309954 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17668998ns 309961 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17669168ns 309964 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17669623ns 309972 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17669793ns 309975 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17670077ns 309980 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17670362ns 309985 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17670646ns 309990 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17671100ns 309998 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17671271ns 310001 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17671555ns 310006 1a110850 fd5ff06f jal x0, -44 +17671839ns 310011 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17672123ns 310016 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17672521ns 310023 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17672692ns 310026 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17673146ns 310034 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17673317ns 310037 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17673601ns 310042 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17673885ns 310047 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17674169ns 310052 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17674624ns 310060 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17674795ns 310063 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17675079ns 310068 1a110850 fd5ff06f jal x0, -44 +17675363ns 310073 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17675647ns 310078 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17676045ns 310085 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17676215ns 310088 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17676670ns 310096 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17676840ns 310099 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17677125ns 310104 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17677409ns 310109 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17677693ns 310114 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17678148ns 310122 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17678318ns 310125 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17678602ns 310130 1a110850 fd5ff06f jal x0, -44 +17678886ns 310135 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17679171ns 310140 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17679568ns 310147 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17679739ns 310150 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17680194ns 310158 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17680364ns 310161 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17680648ns 310166 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17680932ns 310171 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17681217ns 310176 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17681671ns 310184 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17681842ns 310187 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17682126ns 310192 1a110850 fd5ff06f jal x0, -44 +17682410ns 310197 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17682694ns 310202 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17683092ns 310209 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17683263ns 310212 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17683717ns 310220 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17683888ns 310223 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17684172ns 310228 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17684456ns 310233 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17684740ns 310238 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17685195ns 310246 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17685365ns 310249 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17685649ns 310254 1a110850 fd5ff06f jal x0, -44 +17685934ns 310259 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17686218ns 310264 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17686616ns 310271 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17686786ns 310274 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17687241ns 310282 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17687411ns 310285 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17687695ns 310290 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17687980ns 310295 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17688264ns 310300 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17688718ns 310308 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17688889ns 310311 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17689173ns 310316 1a110850 fd5ff06f jal x0, -44 +17689457ns 310321 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17689741ns 310326 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17690139ns 310333 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17690310ns 310336 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17690764ns 310344 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17690935ns 310347 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17691219ns 310352 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17691503ns 310357 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17691787ns 310362 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17692242ns 310370 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17692412ns 310373 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17692697ns 310378 1a110850 fd5ff06f jal x0, -44 +17692981ns 310383 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17693265ns 310388 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17693663ns 310395 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17693833ns 310398 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17694288ns 310406 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17694458ns 310409 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17694743ns 310414 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17695027ns 310419 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17695311ns 310424 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17695766ns 310432 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17695936ns 310435 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17696220ns 310440 1a110850 fd5ff06f jal x0, -44 +17696504ns 310445 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17696789ns 310450 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17697186ns 310457 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17697357ns 310460 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17697811ns 310468 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17697982ns 310471 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17698266ns 310476 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17698550ns 310481 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17698834ns 310486 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17699289ns 310494 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17699460ns 310497 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17699744ns 310502 1a110850 fd5ff06f jal x0, -44 +17700028ns 310507 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17700312ns 310512 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17700710ns 310519 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17700880ns 310522 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17701335ns 310530 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17701506ns 310533 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17701790ns 310538 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17702074ns 310543 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17702358ns 310548 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17702813ns 310556 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17702983ns 310559 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17703267ns 310564 1a110850 fd5ff06f jal x0, -44 +17703552ns 310569 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17703836ns 310574 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17704234ns 310581 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17704404ns 310584 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17704859ns 310592 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17705029ns 310595 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17705313ns 310600 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17705597ns 310605 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17705882ns 310610 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17706336ns 310618 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17706507ns 310621 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17706791ns 310626 1a110850 fd5ff06f jal x0, -44 +17707075ns 310631 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17707359ns 310636 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17707757ns 310643 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17707928ns 310646 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17708382ns 310654 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17708553ns 310657 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17708837ns 310662 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17709121ns 310667 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17709405ns 310672 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17709860ns 310680 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17710030ns 310683 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17710315ns 310688 1a110850 fd5ff06f jal x0, -44 +17710599ns 310693 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17710883ns 310698 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17711281ns 310705 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17711451ns 310708 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17711906ns 310716 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17712076ns 310719 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17712360ns 310724 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17712645ns 310729 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17712929ns 310734 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17713383ns 310742 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17713554ns 310745 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17713838ns 310750 1a110850 fd5ff06f jal x0, -44 +17714122ns 310755 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17714406ns 310760 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17714804ns 310767 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17714975ns 310770 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17715429ns 310778 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17715600ns 310781 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17715884ns 310786 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17716168ns 310791 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17716452ns 310796 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17716907ns 310804 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17717078ns 310807 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17717362ns 310812 1a110850 fd5ff06f jal x0, -44 +17717646ns 310817 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17717930ns 310822 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17718328ns 310829 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17718498ns 310832 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17718953ns 310840 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17719123ns 310843 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17719408ns 310848 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17719692ns 310853 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17719976ns 310858 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17720431ns 310866 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17720601ns 310869 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17720885ns 310874 1a110850 fd5ff06f jal x0, -44 +17721169ns 310879 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17721454ns 310884 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17721851ns 310891 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17722022ns 310894 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17722477ns 310902 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17722647ns 310905 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17722931ns 310910 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17723215ns 310915 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17723500ns 310920 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17723954ns 310928 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17724125ns 310931 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17724409ns 310936 1a110850 fd5ff06f jal x0, -44 +17724693ns 310941 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17724977ns 310946 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17725375ns 310953 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17725546ns 310956 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17726000ns 310964 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17726171ns 310967 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17726455ns 310972 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17726739ns 310977 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17727023ns 310982 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17727478ns 310990 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17727648ns 310993 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17727932ns 310998 1a110850 fd5ff06f jal x0, -44 +17728217ns 311003 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17728501ns 311008 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17728899ns 311015 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17729069ns 311018 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17729524ns 311026 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17729694ns 311029 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17729978ns 311034 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17730263ns 311039 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17730547ns 311044 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17731001ns 311052 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17731172ns 311055 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17731456ns 311060 1a110850 fd5ff06f jal x0, -44 +17731740ns 311065 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17732024ns 311070 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17732422ns 311077 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17732593ns 311080 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17733047ns 311088 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17733218ns 311091 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17733502ns 311096 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17733786ns 311101 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17734070ns 311106 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17734525ns 311114 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17734695ns 311117 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17734980ns 311122 1a110850 fd5ff06f jal x0, -44 +17735264ns 311127 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17735548ns 311132 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17735946ns 311139 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17736116ns 311142 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17736571ns 311150 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17736741ns 311153 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17737026ns 311158 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17737310ns 311163 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17737594ns 311168 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17738049ns 311176 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17738219ns 311179 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17738503ns 311184 1a110850 fd5ff06f jal x0, -44 +17738787ns 311189 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17739072ns 311194 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17739469ns 311201 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17739640ns 311204 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17740095ns 311212 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17740265ns 311215 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17740549ns 311220 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17740833ns 311225 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17741117ns 311230 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17741572ns 311238 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17741743ns 311241 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17742027ns 311246 1a110850 fd5ff06f jal x0, -44 +17742311ns 311251 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17742595ns 311256 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17742993ns 311263 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17743163ns 311266 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17743618ns 311274 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17743789ns 311277 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17744073ns 311282 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17744357ns 311287 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17744641ns 311292 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17745096ns 311300 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17745266ns 311303 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17745550ns 311308 1a110850 fd5ff06f jal x0, -44 +17745835ns 311313 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17746119ns 311318 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17746517ns 311325 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17746687ns 311328 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17747142ns 311336 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17747312ns 311339 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17747596ns 311344 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17747880ns 311349 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17748165ns 311354 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17748619ns 311362 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17748790ns 311365 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17749074ns 311370 1a110850 fd5ff06f jal x0, -44 +17749358ns 311375 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17749642ns 311380 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17750040ns 311387 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17750211ns 311390 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17750665ns 311398 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17750836ns 311401 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17751120ns 311406 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17751404ns 311411 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17751688ns 311416 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17752143ns 311424 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17752313ns 311427 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17752598ns 311432 1a110850 fd5ff06f jal x0, -44 +17752882ns 311437 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17753166ns 311442 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17753564ns 311449 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17753734ns 311452 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17754189ns 311460 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17754359ns 311463 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17754643ns 311468 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17754928ns 311473 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17755212ns 311478 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17755666ns 311486 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17755837ns 311489 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17756121ns 311494 1a110850 fd5ff06f jal x0, -44 +17756405ns 311499 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17756689ns 311504 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17757087ns 311511 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17757258ns 311514 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17757712ns 311522 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17757883ns 311525 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17758167ns 311530 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17758451ns 311535 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17758735ns 311540 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17759190ns 311548 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17759361ns 311551 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17759645ns 311556 1a110850 fd5ff06f jal x0, -44 +17759929ns 311561 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17760213ns 311566 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17760611ns 311573 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17760781ns 311576 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17761236ns 311584 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17761407ns 311587 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17761691ns 311592 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17761975ns 311597 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17762259ns 311602 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17762714ns 311610 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17762884ns 311613 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17763168ns 311618 1a110850 fd5ff06f jal x0, -44 +17763452ns 311623 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17763737ns 311628 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17764134ns 311635 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17764305ns 311638 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17764760ns 311646 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17764930ns 311649 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17765214ns 311654 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17765498ns 311659 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17765783ns 311664 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17766237ns 311672 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17766408ns 311675 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17766692ns 311680 1a110850 fd5ff06f jal x0, -44 +17766976ns 311685 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17767260ns 311690 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17767658ns 311697 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17767829ns 311700 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17768283ns 311708 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17768454ns 311711 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17768738ns 311716 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17769022ns 311721 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17769306ns 311726 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17769761ns 311734 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17769931ns 311737 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17770215ns 311742 1a110850 fd5ff06f jal x0, -44 +17770500ns 311747 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17770784ns 311752 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17771182ns 311759 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17771352ns 311762 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17771807ns 311770 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17771977ns 311773 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17772261ns 311778 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17772546ns 311783 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17772830ns 311788 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17773284ns 311796 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17773455ns 311799 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17773739ns 311804 1a110850 fd5ff06f jal x0, -44 +17774023ns 311809 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17774307ns 311814 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17774705ns 311821 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17774876ns 311824 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17775330ns 311832 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17775501ns 311835 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17775785ns 311840 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17776069ns 311845 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17776353ns 311850 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17776808ns 311858 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17776978ns 311861 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17777263ns 311866 1a110850 fd5ff06f jal x0, -44 +17777547ns 311871 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17777831ns 311876 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17778229ns 311883 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17778399ns 311886 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17778854ns 311894 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17779024ns 311897 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17779309ns 311902 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17779593ns 311907 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17779877ns 311912 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17780332ns 311920 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17780502ns 311923 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17780786ns 311928 1a110850 fd5ff06f jal x0, -44 +17781070ns 311933 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17781355ns 311938 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17781752ns 311945 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17781923ns 311948 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17782378ns 311956 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17782548ns 311959 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17782832ns 311964 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17783116ns 311969 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17783400ns 311974 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17783855ns 311982 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17784026ns 311985 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17784310ns 311990 1a110850 fd5ff06f jal x0, -44 +17784594ns 311995 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17784878ns 312000 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17785276ns 312007 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17785446ns 312010 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17785901ns 312018 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17786072ns 312021 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17786356ns 312026 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17786640ns 312031 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17786924ns 312036 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17787379ns 312044 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17787549ns 312047 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17787833ns 312052 1a110850 fd5ff06f jal x0, -44 +17788118ns 312057 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17788402ns 312062 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17788800ns 312069 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17788970ns 312072 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17789425ns 312080 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17789595ns 312083 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17789879ns 312088 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17790163ns 312093 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17790448ns 312098 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17790902ns 312106 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17791073ns 312109 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17791357ns 312114 1a110850 fd5ff06f jal x0, -44 +17791641ns 312119 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17791925ns 312124 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17792323ns 312131 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17792494ns 312134 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17792948ns 312142 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17793119ns 312145 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17793403ns 312150 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17793687ns 312155 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17793971ns 312160 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17794426ns 312168 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17794596ns 312171 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17794881ns 312176 1a110850 fd5ff06f jal x0, -44 +17795165ns 312181 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17795449ns 312186 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17795847ns 312193 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17796017ns 312196 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17796472ns 312204 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17796642ns 312207 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17796927ns 312212 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17797211ns 312217 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17797495ns 312222 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17797949ns 312230 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17798120ns 312233 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17798404ns 312238 1a110850 fd5ff06f jal x0, -44 +17798688ns 312243 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17798972ns 312248 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17799370ns 312255 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17799541ns 312258 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17799995ns 312266 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17800166ns 312269 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17800450ns 312274 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17800734ns 312279 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17801018ns 312284 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17801473ns 312292 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17801644ns 312295 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17801928ns 312300 1a110850 fd5ff06f jal x0, -44 +17802212ns 312305 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17802496ns 312310 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17802894ns 312317 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17803064ns 312320 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17803519ns 312328 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17803690ns 312331 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17803974ns 312336 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17804258ns 312341 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17804542ns 312346 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17804997ns 312354 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17805167ns 312357 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17805451ns 312362 1a110850 fd5ff06f jal x0, -44 +17805735ns 312367 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17806020ns 312372 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17806417ns 312379 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17806588ns 312382 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17807043ns 312390 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17807213ns 312393 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17807497ns 312398 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17807781ns 312403 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17808066ns 312408 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17808520ns 312416 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17808691ns 312419 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17808975ns 312424 1a110850 fd5ff06f jal x0, -44 +17809259ns 312429 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17809543ns 312434 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17809941ns 312441 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17810112ns 312444 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17810566ns 312452 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17810737ns 312455 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17811021ns 312460 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17811305ns 312465 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17811589ns 312470 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17812044ns 312478 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17812214ns 312481 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17812498ns 312486 1a110850 fd5ff06f jal x0, -44 +17812783ns 312491 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17813067ns 312496 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17813465ns 312503 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17813635ns 312506 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17814090ns 312514 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17814260ns 312517 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17814544ns 312522 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17814829ns 312527 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17815113ns 312532 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17815567ns 312540 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17815738ns 312543 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17816022ns 312548 1a110850 fd5ff06f jal x0, -44 +17816306ns 312553 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17816590ns 312558 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17816988ns 312565 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17817159ns 312568 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17817613ns 312576 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17817784ns 312579 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17818068ns 312584 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17818352ns 312589 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17818636ns 312594 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17819091ns 312602 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17819261ns 312605 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17819546ns 312610 1a110850 fd5ff06f jal x0, -44 +17819830ns 312615 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17820114ns 312620 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17820512ns 312627 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17820682ns 312630 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17821137ns 312638 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17821307ns 312641 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17821592ns 312646 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17821876ns 312651 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17822160ns 312656 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17822615ns 312664 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17822785ns 312667 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17823069ns 312672 1a110850 fd5ff06f jal x0, -44 +17823353ns 312677 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17823638ns 312682 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17824035ns 312689 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17824206ns 312692 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17824661ns 312700 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17824831ns 312703 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17825115ns 312708 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17825399ns 312713 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17825683ns 312718 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17826138ns 312726 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17826309ns 312729 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17826593ns 312734 1a110850 fd5ff06f jal x0, -44 +17826877ns 312739 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17827161ns 312744 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17827559ns 312751 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17827729ns 312754 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17828184ns 312762 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17828355ns 312765 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17828639ns 312770 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17828923ns 312775 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17829207ns 312780 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17829662ns 312788 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17829832ns 312791 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17830116ns 312796 1a110850 fd5ff06f jal x0, -44 +17830401ns 312801 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17830685ns 312806 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17831083ns 312813 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17831253ns 312816 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17831708ns 312824 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17831878ns 312827 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17832162ns 312832 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17832447ns 312837 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17832731ns 312842 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17833185ns 312850 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17833356ns 312853 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17833640ns 312858 1a110850 fd5ff06f jal x0, -44 +17833924ns 312863 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17834208ns 312868 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17834606ns 312875 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17834777ns 312878 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17835231ns 312886 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17835402ns 312889 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17835686ns 312894 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17835970ns 312899 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17836254ns 312904 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17836709ns 312912 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17836879ns 312915 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17837164ns 312920 1a110850 fd5ff06f jal x0, -44 +17837448ns 312925 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17837732ns 312930 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17838130ns 312937 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17838300ns 312940 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17838755ns 312948 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17838925ns 312951 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17839210ns 312956 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17839494ns 312961 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17839778ns 312966 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17840232ns 312974 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17840403ns 312977 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17840687ns 312982 1a110850 fd5ff06f jal x0, -44 +17840971ns 312987 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17841255ns 312992 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17841653ns 312999 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17841824ns 313002 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17842278ns 313010 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17842449ns 313013 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17842733ns 313018 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17843017ns 313023 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17843301ns 313028 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17843756ns 313036 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17843927ns 313039 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17844211ns 313044 1a110850 fd5ff06f jal x0, -44 +17844495ns 313049 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17844779ns 313054 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17845177ns 313061 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17845347ns 313064 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17845802ns 313072 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17845973ns 313075 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17846257ns 313080 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17846541ns 313085 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17846825ns 313090 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17847280ns 313098 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17847450ns 313101 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17847734ns 313106 1a110850 fd5ff06f jal x0, -44 +17848018ns 313111 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17848303ns 313116 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17848700ns 313123 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17848871ns 313126 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17849326ns 313134 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17849496ns 313137 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17849780ns 313142 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17850064ns 313147 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17850349ns 313152 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17850803ns 313160 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17850974ns 313163 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17851258ns 313168 1a110850 fd5ff06f jal x0, -44 +17851542ns 313173 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17851826ns 313178 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17852224ns 313185 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17852395ns 313188 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17852849ns 313196 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17853020ns 313199 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17853304ns 313204 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17853588ns 313209 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17853872ns 313214 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17854327ns 313222 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17854497ns 313225 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17854781ns 313230 1a110850 fd5ff06f jal x0, -44 +17855066ns 313235 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17855350ns 313240 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17855748ns 313247 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17855918ns 313250 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17856373ns 313258 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17856543ns 313261 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17856827ns 313266 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17857112ns 313271 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17857396ns 313276 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17857850ns 313284 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17858021ns 313287 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17858305ns 313292 1a110850 fd5ff06f jal x0, -44 +17858589ns 313297 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17858873ns 313302 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17859271ns 313309 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17859442ns 313312 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17859896ns 313320 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17860067ns 313323 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17860351ns 313328 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17860635ns 313333 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17860919ns 313338 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17861374ns 313346 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17861544ns 313349 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17861829ns 313354 1a110850 fd5ff06f jal x0, -44 +17862113ns 313359 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17862397ns 313364 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17862795ns 313371 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17862965ns 313374 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17863420ns 313382 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17863590ns 313385 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17863875ns 313390 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17864159ns 313395 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17864443ns 313400 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17864898ns 313408 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17865068ns 313411 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17865352ns 313416 1a110850 fd5ff06f jal x0, -44 +17865636ns 313421 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17865921ns 313426 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17866318ns 313433 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17866489ns 313436 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17866944ns 313444 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17867114ns 313447 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17867398ns 313452 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17867682ns 313457 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17867967ns 313462 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17868421ns 313470 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17868592ns 313473 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17868876ns 313478 1a110850 fd5ff06f jal x0, -44 +17869160ns 313483 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17869444ns 313488 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17869842ns 313495 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17870012ns 313498 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17870467ns 313506 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17870638ns 313509 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17870922ns 313514 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17871206ns 313519 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17871490ns 313524 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17871945ns 313532 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17872115ns 313535 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17872399ns 313540 1a110850 fd5ff06f jal x0, -44 +17872684ns 313545 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17872968ns 313550 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17873366ns 313557 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17873536ns 313560 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17873991ns 313568 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17874161ns 313571 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17874445ns 313576 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17874730ns 313581 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17875014ns 313586 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17875468ns 313594 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17875639ns 313597 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17875923ns 313602 1a110850 fd5ff06f jal x0, -44 +17876207ns 313607 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17876491ns 313612 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17876889ns 313619 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17877060ns 313622 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17877514ns 313630 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17877685ns 313633 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17877969ns 313638 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17878253ns 313643 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17878537ns 313648 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17878992ns 313656 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17879162ns 313659 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17879447ns 313664 1a110850 fd5ff06f jal x0, -44 +17879731ns 313669 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17880015ns 313674 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17880413ns 313681 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17880583ns 313684 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17881038ns 313692 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17881208ns 313695 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17881493ns 313700 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17881777ns 313705 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17882061ns 313710 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17882515ns 313718 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17882686ns 313721 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17882970ns 313726 1a110850 fd5ff06f jal x0, -44 +17883254ns 313731 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17883538ns 313736 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17883936ns 313743 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17884107ns 313746 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17884561ns 313754 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17884732ns 313757 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17885016ns 313762 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17885300ns 313767 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17885584ns 313772 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17886039ns 313780 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17886210ns 313783 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17886494ns 313788 1a110850 fd5ff06f jal x0, -44 +17886778ns 313793 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17887062ns 313798 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17887460ns 313805 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17887630ns 313808 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17888085ns 313816 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17888256ns 313819 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17888540ns 313824 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17888824ns 313829 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17889108ns 313834 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17889563ns 313842 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17889733ns 313845 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17890017ns 313850 1a110850 fd5ff06f jal x0, -44 +17890301ns 313855 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17890586ns 313860 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17890983ns 313867 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17891154ns 313870 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17891609ns 313878 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17891779ns 313881 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17892063ns 313886 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17892347ns 313891 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17892632ns 313896 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17893086ns 313904 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17893257ns 313907 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17893541ns 313912 1a110850 fd5ff06f jal x0, -44 +17893825ns 313917 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17894109ns 313922 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17894507ns 313929 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17894678ns 313932 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17895132ns 313940 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17895303ns 313943 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17895587ns 313948 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17895871ns 313953 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17896155ns 313958 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17896610ns 313966 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17896780ns 313969 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17897064ns 313974 1a110850 fd5ff06f jal x0, -44 +17897349ns 313979 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17897633ns 313984 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17898031ns 313991 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17898201ns 313994 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17898656ns 314002 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17898826ns 314005 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17899110ns 314010 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17899395ns 314015 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17899679ns 314020 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17900133ns 314028 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17900304ns 314031 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17900588ns 314036 1a110850 fd5ff06f jal x0, -44 +17900872ns 314041 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17901156ns 314046 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17901554ns 314053 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17901725ns 314056 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17902179ns 314064 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17902350ns 314067 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17902634ns 314072 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17902918ns 314077 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17903202ns 314082 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17903657ns 314090 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17903827ns 314093 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17904112ns 314098 1a110850 fd5ff06f jal x0, -44 +17904396ns 314103 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17904680ns 314108 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17905078ns 314115 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17905248ns 314118 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17905703ns 314126 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17905873ns 314129 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17906158ns 314134 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17906442ns 314139 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17906726ns 314144 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17907181ns 314152 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17907351ns 314155 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17907635ns 314160 1a110850 fd5ff06f jal x0, -44 +17907919ns 314165 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17908204ns 314170 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17908601ns 314177 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17908772ns 314180 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17909227ns 314188 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17909397ns 314191 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17909681ns 314196 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17909965ns 314201 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17910250ns 314206 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17910704ns 314214 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17910875ns 314217 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17911159ns 314222 1a110850 fd5ff06f jal x0, -44 +17911443ns 314227 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17911727ns 314232 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17912125ns 314239 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17912295ns 314242 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17912750ns 314250 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17912921ns 314253 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17913205ns 314258 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17913489ns 314263 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17913773ns 314268 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17914228ns 314276 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17914398ns 314279 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17914682ns 314284 1a110850 fd5ff06f jal x0, -44 +17914967ns 314289 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17915251ns 314294 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17915649ns 314301 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17915819ns 314304 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17916274ns 314312 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17916444ns 314315 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17916728ns 314320 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17917013ns 314325 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17917297ns 314330 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17917751ns 314338 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17917922ns 314341 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17918206ns 314346 1a110850 fd5ff06f jal x0, -44 +17918490ns 314351 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17918774ns 314356 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17919172ns 314363 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17919343ns 314366 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17919797ns 314374 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17919968ns 314377 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17920252ns 314382 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17920536ns 314387 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17920820ns 314392 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17921275ns 314400 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17921445ns 314403 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17921730ns 314408 1a110850 fd5ff06f jal x0, -44 +17922014ns 314413 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17922298ns 314418 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17922696ns 314425 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17922866ns 314428 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17923321ns 314436 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17923491ns 314439 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17923776ns 314444 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17924060ns 314449 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17924344ns 314454 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17924799ns 314462 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17924969ns 314465 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17925253ns 314470 1a110850 fd5ff06f jal x0, -44 +17925537ns 314475 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17925821ns 314480 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17926219ns 314487 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17926390ns 314490 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17926844ns 314498 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17927015ns 314501 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17927299ns 314506 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17927583ns 314511 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17927867ns 314516 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17928322ns 314524 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17928493ns 314527 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17928777ns 314532 1a110850 fd5ff06f jal x0, -44 +17929061ns 314537 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17929345ns 314542 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17929743ns 314549 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17929913ns 314552 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17930368ns 314560 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17930539ns 314563 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17930823ns 314568 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17931107ns 314573 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17931391ns 314578 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17931846ns 314586 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17932016ns 314589 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17932300ns 314594 1a110850 fd5ff06f jal x0, -44 +17932584ns 314599 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17932869ns 314604 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17933266ns 314611 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17933437ns 314614 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17933892ns 314622 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17934062ns 314625 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17934346ns 314630 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17934630ns 314635 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17934915ns 314640 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17935369ns 314648 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17935540ns 314651 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17935824ns 314656 1a110850 fd5ff06f jal x0, -44 +17936108ns 314661 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17936392ns 314666 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17936790ns 314673 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17936961ns 314676 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17937415ns 314684 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17937586ns 314687 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17937870ns 314692 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17938154ns 314697 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17938438ns 314702 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17938893ns 314710 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17939063ns 314713 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17939347ns 314718 1a110850 fd5ff06f jal x0, -44 +17939632ns 314723 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17939916ns 314728 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17940314ns 314735 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17940484ns 314738 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17940939ns 314746 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17941109ns 314749 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17941393ns 314754 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17941678ns 314759 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17941962ns 314764 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17942416ns 314772 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17942587ns 314775 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17942871ns 314780 1a110850 fd5ff06f jal x0, -44 +17943155ns 314785 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17943439ns 314790 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17943837ns 314797 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17944008ns 314800 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17944462ns 314808 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17944633ns 314811 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17944917ns 314816 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17945201ns 314821 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17945485ns 314826 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17945940ns 314834 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17946111ns 314837 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17946395ns 314842 1a110850 fd5ff06f jal x0, -44 +17946679ns 314847 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17946963ns 314852 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17947361ns 314859 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17947531ns 314862 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17947986ns 314870 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17948156ns 314873 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17948441ns 314878 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17948725ns 314883 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17949009ns 314888 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17949464ns 314896 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17949634ns 314899 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17949918ns 314904 1a110850 fd5ff06f jal x0, -44 +17950202ns 314909 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17950487ns 314914 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17950884ns 314921 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17951055ns 314924 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17951510ns 314932 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17951680ns 314935 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17951964ns 314940 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17952248ns 314945 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17952533ns 314950 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17952987ns 314958 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17953158ns 314961 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17953442ns 314966 1a110850 fd5ff06f jal x0, -44 +17953726ns 314971 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17954010ns 314976 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17954408ns 314983 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17954578ns 314986 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17955033ns 314994 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17955204ns 314997 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17955488ns 315002 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17955772ns 315007 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17956056ns 315012 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17956511ns 315020 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17956681ns 315023 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17956965ns 315028 1a110850 fd5ff06f jal x0, -44 +17957250ns 315033 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17957534ns 315038 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17957932ns 315045 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17958102ns 315048 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17958557ns 315056 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17958727ns 315059 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17959011ns 315064 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17959296ns 315069 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17959580ns 315074 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17960034ns 315082 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17960205ns 315085 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17960489ns 315090 1a110850 fd5ff06f jal x0, -44 +17960773ns 315095 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17961057ns 315100 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17961455ns 315107 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17961626ns 315110 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17962080ns 315118 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17962251ns 315121 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17962535ns 315126 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17962819ns 315131 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17963103ns 315136 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17963558ns 315144 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17963728ns 315147 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17964013ns 315152 1a110850 fd5ff06f jal x0, -44 +17964297ns 315157 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17964581ns 315162 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17964979ns 315169 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17965149ns 315172 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17965604ns 315180 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17965774ns 315183 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17966059ns 315188 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17966343ns 315193 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17966627ns 315198 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17967082ns 315206 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17967252ns 315209 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17967536ns 315214 1a110850 fd5ff06f jal x0, -44 +17967820ns 315219 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17968104ns 315224 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17968502ns 315231 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17968673ns 315234 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17969127ns 315242 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17969298ns 315245 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17969582ns 315250 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17969866ns 315255 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17970150ns 315260 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17970605ns 315268 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17970776ns 315271 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17971060ns 315276 1a110850 fd5ff06f jal x0, -44 +17971344ns 315281 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17971628ns 315286 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17972026ns 315293 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17972196ns 315296 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17972651ns 315304 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17972822ns 315307 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17973106ns 315312 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17973390ns 315317 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17973674ns 315322 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17974129ns 315330 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17974299ns 315333 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17974583ns 315338 1a110850 fd5ff06f jal x0, -44 +17974867ns 315343 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17975152ns 315348 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17975549ns 315355 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17975720ns 315358 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17976175ns 315366 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17976345ns 315369 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17976629ns 315374 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17976913ns 315379 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17977198ns 315384 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17977652ns 315392 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17977823ns 315395 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17978107ns 315400 1a110850 fd5ff06f jal x0, -44 +17978391ns 315405 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17978675ns 315410 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17979073ns 315417 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17979244ns 315420 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17979698ns 315428 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17979869ns 315431 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17980153ns 315436 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17980437ns 315441 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17980721ns 315446 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17981176ns 315454 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17981346ns 315457 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17981631ns 315462 1a110850 fd5ff06f jal x0, -44 +17981915ns 315467 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17982199ns 315472 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17982597ns 315479 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17982767ns 315482 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17983222ns 315490 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17983392ns 315493 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17983676ns 315498 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17983961ns 315503 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17984245ns 315508 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17984699ns 315516 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17984870ns 315519 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17985154ns 315524 1a110850 fd5ff06f jal x0, -44 +17985438ns 315529 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17985722ns 315534 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17986120ns 315541 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17986291ns 315544 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17986745ns 315552 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17986916ns 315555 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17987200ns 315560 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17987484ns 315565 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17987768ns 315570 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17988223ns 315578 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17988394ns 315581 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17988678ns 315586 1a110850 fd5ff06f jal x0, -44 +17988962ns 315591 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17989246ns 315596 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17989644ns 315603 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17989814ns 315606 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17990269ns 315614 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17990439ns 315617 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17990724ns 315622 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17991008ns 315627 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17991292ns 315632 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17991747ns 315640 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17991917ns 315643 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17992201ns 315648 1a110850 fd5ff06f jal x0, -44 +17992485ns 315653 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17992770ns 315658 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17993167ns 315665 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17993338ns 315668 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17993793ns 315676 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17993963ns 315679 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17994247ns 315684 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17994531ns 315689 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17994816ns 315694 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17995270ns 315702 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17995441ns 315705 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17995725ns 315710 1a110850 fd5ff06f jal x0, -44 +17996009ns 315715 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17996293ns 315720 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +17996691ns 315727 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17996861ns 315730 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17997316ns 315738 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +17997487ns 315741 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +17997771ns 315746 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17998055ns 315751 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +17998339ns 315756 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +17998794ns 315764 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +17998964ns 315767 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +17999248ns 315772 1a110850 fd5ff06f jal x0, -44 +17999533ns 315777 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +17999817ns 315782 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18000215ns 315789 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18000385ns 315792 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18000840ns 315800 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18001010ns 315803 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18001294ns 315808 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18001579ns 315813 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18001863ns 315818 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18002317ns 315826 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18002488ns 315829 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18002772ns 315834 1a110850 fd5ff06f jal x0, -44 +18003056ns 315839 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18003340ns 315844 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18003738ns 315851 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18003909ns 315854 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18004363ns 315862 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18004534ns 315865 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18004818ns 315870 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18005102ns 315875 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18005386ns 315880 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18005841ns 315888 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18006011ns 315891 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18006296ns 315896 1a110850 fd5ff06f jal x0, -44 +18006580ns 315901 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18006864ns 315906 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18007262ns 315913 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18007432ns 315916 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18007887ns 315924 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18008057ns 315927 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18008342ns 315932 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18008626ns 315937 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18008910ns 315942 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18009365ns 315950 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18009535ns 315953 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18009819ns 315958 1a110850 fd5ff06f jal x0, -44 +18010103ns 315963 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18010387ns 315968 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18010785ns 315975 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18010956ns 315978 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18011410ns 315986 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18011581ns 315989 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18011865ns 315994 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18012149ns 315999 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18012433ns 316004 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18012888ns 316012 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18013059ns 316015 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18013343ns 316020 1a110850 fd5ff06f jal x0, -44 +18013627ns 316025 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18013911ns 316030 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18014309ns 316037 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18014479ns 316040 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18014934ns 316048 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18015105ns 316051 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18015389ns 316056 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18015673ns 316061 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18015957ns 316066 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18016412ns 316074 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18016582ns 316077 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18016866ns 316082 1a110850 fd5ff06f jal x0, -44 +18017151ns 316087 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18017435ns 316092 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18017832ns 316099 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18018003ns 316102 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18018458ns 316110 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18018628ns 316113 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18018912ns 316118 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18019196ns 316123 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18019481ns 316128 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18019935ns 316136 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18020106ns 316139 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18020390ns 316144 1a110850 fd5ff06f jal x0, -44 +18020674ns 316149 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18020958ns 316154 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18021356ns 316161 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18021527ns 316164 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18021981ns 316172 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18022152ns 316175 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18022436ns 316180 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18022720ns 316185 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18023004ns 316190 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18023459ns 316198 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18023629ns 316201 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18023914ns 316206 1a110850 fd5ff06f jal x0, -44 +18024198ns 316211 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18024482ns 316216 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18024880ns 316223 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18025050ns 316226 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18025505ns 316234 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18025675ns 316237 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18025959ns 316242 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18026244ns 316247 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18026528ns 316252 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18026982ns 316260 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18027153ns 316263 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18027437ns 316268 1a110850 fd5ff06f jal x0, -44 +18027721ns 316273 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18028005ns 316278 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18028403ns 316285 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18028574ns 316288 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18029028ns 316296 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18029199ns 316299 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18029483ns 316304 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18029767ns 316309 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18030051ns 316314 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18030506ns 316322 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18030677ns 316325 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18030961ns 316330 1a110850 fd5ff06f jal x0, -44 +18031245ns 316335 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18031529ns 316340 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18031927ns 316347 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18032097ns 316350 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18032552ns 316358 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18032722ns 316361 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18033007ns 316366 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18033291ns 316371 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18033575ns 316376 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18034030ns 316384 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18034200ns 316387 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18034484ns 316392 1a110850 fd5ff06f jal x0, -44 +18034768ns 316397 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18035053ns 316402 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18035450ns 316409 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18035621ns 316412 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18036076ns 316420 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18036246ns 316423 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18036530ns 316428 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18036814ns 316433 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18037099ns 316438 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18037553ns 316446 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18037724ns 316449 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18038008ns 316454 1a110850 fd5ff06f jal x0, -44 +18038292ns 316459 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18038576ns 316464 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18038974ns 316471 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18039144ns 316474 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18039599ns 316482 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18039770ns 316485 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18040054ns 316490 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18040338ns 316495 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18040622ns 316500 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18041077ns 316508 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18041247ns 316511 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18041531ns 316516 1a110850 fd5ff06f jal x0, -44 +18041816ns 316521 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18042100ns 316526 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18042498ns 316533 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18042668ns 316536 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18043123ns 316544 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18043293ns 316547 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18043577ns 316552 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18043862ns 316557 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18044146ns 316562 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18044600ns 316570 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18044771ns 316573 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18045055ns 316578 1a110850 fd5ff06f jal x0, -44 +18045339ns 316583 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18045623ns 316588 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18046021ns 316595 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18046192ns 316598 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18046646ns 316606 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18046817ns 316609 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18047101ns 316614 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18047385ns 316619 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18047669ns 316624 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18048124ns 316632 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18048294ns 316635 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18048579ns 316640 1a110850 fd5ff06f jal x0, -44 +18048863ns 316645 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18049147ns 316650 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18049545ns 316657 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18049715ns 316660 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18050170ns 316668 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18050340ns 316671 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18050625ns 316676 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18050909ns 316681 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18051193ns 316686 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18051648ns 316694 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18051818ns 316697 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18052102ns 316702 1a110850 fd5ff06f jal x0, -44 +18052386ns 316707 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18052671ns 316712 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18053068ns 316719 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18053239ns 316722 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18053693ns 316730 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18053864ns 316733 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18054148ns 316738 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18054432ns 316743 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18054716ns 316748 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18055171ns 316756 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18055342ns 316759 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18055626ns 316764 1a110850 fd5ff06f jal x0, -44 +18055910ns 316769 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18056194ns 316774 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18056592ns 316781 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18056762ns 316784 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18057217ns 316792 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18057388ns 316795 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18057672ns 316800 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18057956ns 316805 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18058240ns 316810 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18058695ns 316818 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18058865ns 316821 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18059149ns 316826 1a110850 fd5ff06f jal x0, -44 +18059434ns 316831 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18059718ns 316836 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18060115ns 316843 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18060286ns 316846 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18060741ns 316854 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18060911ns 316857 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18061195ns 316862 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18061479ns 316867 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18061764ns 316872 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18062218ns 316880 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18062389ns 316883 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18062673ns 316888 1a110850 fd5ff06f jal x0, -44 +18062957ns 316893 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18063241ns 316898 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18063639ns 316905 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18063810ns 316908 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18064264ns 316916 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18064435ns 316919 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18064719ns 316924 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18065003ns 316929 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18065287ns 316934 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18065742ns 316942 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18065912ns 316945 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18066197ns 316950 1a110850 fd5ff06f jal x0, -44 +18066481ns 316955 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18066765ns 316960 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18067163ns 316967 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18067333ns 316970 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18067788ns 316978 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18067958ns 316981 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18068242ns 316986 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18068527ns 316991 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18068811ns 316996 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18069265ns 317004 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18069436ns 317007 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18069720ns 317012 1a110850 fd5ff06f jal x0, -44 +18070004ns 317017 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18070288ns 317022 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18070686ns 317029 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18070857ns 317032 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18071311ns 317040 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18071482ns 317043 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18071766ns 317048 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18072050ns 317053 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18072334ns 317058 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18072789ns 317066 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18072960ns 317069 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18073244ns 317074 1a110850 fd5ff06f jal x0, -44 +18073528ns 317079 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18073812ns 317084 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18074210ns 317091 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18074380ns 317094 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18074835ns 317102 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18075005ns 317105 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18075290ns 317110 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18075574ns 317115 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18075858ns 317120 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18076313ns 317128 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18076483ns 317131 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18076767ns 317136 1a110850 fd5ff06f jal x0, -44 +18077051ns 317141 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18077336ns 317146 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18077733ns 317153 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18077904ns 317156 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18078359ns 317164 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18078529ns 317167 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18078813ns 317172 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18079097ns 317177 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18079382ns 317182 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18079836ns 317190 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18080007ns 317193 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18080291ns 317198 1a110850 fd5ff06f jal x0, -44 +18080575ns 317203 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18080859ns 317208 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18081257ns 317215 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18081427ns 317218 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18081882ns 317226 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18082053ns 317229 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18082337ns 317234 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18082621ns 317239 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18082905ns 317244 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18083360ns 317252 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18083530ns 317255 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18083814ns 317260 1a110850 fd5ff06f jal x0, -44 +18084099ns 317265 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18084383ns 317270 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18084781ns 317277 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18084951ns 317280 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18085406ns 317288 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18085576ns 317291 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18085860ns 317296 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18086145ns 317301 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18086429ns 317306 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18086883ns 317314 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18087054ns 317317 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18087338ns 317322 1a110850 fd5ff06f jal x0, -44 +18087622ns 317327 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18087906ns 317332 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18088304ns 317339 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18088475ns 317342 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18088929ns 317350 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18089100ns 317353 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18089384ns 317358 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18089668ns 317363 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18089952ns 317368 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18090407ns 317376 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18090577ns 317379 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18090862ns 317384 1a110850 fd5ff06f jal x0, -44 +18091146ns 317389 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18091430ns 317394 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18091828ns 317401 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18091998ns 317404 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18092453ns 317412 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18092623ns 317415 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18092908ns 317420 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18093192ns 317425 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18093476ns 317430 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18093931ns 317438 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18094101ns 317441 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18094385ns 317446 1a110850 fd5ff06f jal x0, -44 +18094669ns 317451 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18094954ns 317456 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18095351ns 317463 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18095522ns 317466 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18095976ns 317474 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18096147ns 317477 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18096431ns 317482 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18096715ns 317487 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18096999ns 317492 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18097454ns 317500 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18097625ns 317503 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18097909ns 317508 1a110850 fd5ff06f jal x0, -44 +18098193ns 317513 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18098477ns 317518 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18098875ns 317525 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18099045ns 317528 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18099500ns 317536 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18099671ns 317539 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18099955ns 317544 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18100239ns 317549 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18100523ns 317554 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18100978ns 317562 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18101148ns 317565 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18101432ns 317570 1a110850 fd5ff06f jal x0, -44 +18101717ns 317575 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18102001ns 317580 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18102399ns 317587 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18102569ns 317590 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18103024ns 317598 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18103194ns 317601 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18103478ns 317606 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18103762ns 317611 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18104047ns 317616 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18104501ns 317624 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18104672ns 317627 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18104956ns 317632 1a110850 fd5ff06f jal x0, -44 +18105240ns 317637 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18105524ns 317642 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18105922ns 317649 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18106093ns 317652 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18106547ns 317660 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18106718ns 317663 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18107002ns 317668 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18107286ns 317673 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18107570ns 317678 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18108025ns 317686 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18108195ns 317689 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18108480ns 317694 1a110850 fd5ff06f jal x0, -44 +18108764ns 317699 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18109048ns 317704 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18109446ns 317711 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18109616ns 317714 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18110071ns 317722 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18110241ns 317725 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18110525ns 317730 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18110810ns 317735 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18111094ns 317740 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18111548ns 317748 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18111719ns 317751 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18112003ns 317756 1a110850 fd5ff06f jal x0, -44 +18112287ns 317761 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18112571ns 317766 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18112969ns 317773 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18113140ns 317776 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18113594ns 317784 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18113765ns 317787 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18114049ns 317792 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18114333ns 317797 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18114617ns 317802 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18115072ns 317810 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18115243ns 317813 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18115527ns 317818 1a110850 fd5ff06f jal x0, -44 +18115811ns 317823 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18116095ns 317828 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18116493ns 317835 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18116663ns 317838 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18117118ns 317846 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18117288ns 317849 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18117573ns 317854 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18117857ns 317859 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18118141ns 317864 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18118596ns 317872 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18118766ns 317875 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18119050ns 317880 1a110850 fd5ff06f jal x0, -44 +18119334ns 317885 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18119619ns 317890 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18120016ns 317897 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18120187ns 317900 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18120642ns 317908 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18120812ns 317911 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18121096ns 317916 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18121380ns 317921 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18121665ns 317926 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18122119ns 317934 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18122290ns 317937 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18122574ns 317942 1a110850 fd5ff06f jal x0, -44 +18122858ns 317947 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18123142ns 317952 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18123540ns 317959 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18123711ns 317962 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18124165ns 317970 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18124336ns 317973 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18124620ns 317978 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18124904ns 317983 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18125188ns 317988 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18125643ns 317996 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18125813ns 317999 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18126097ns 318004 1a110850 fd5ff06f jal x0, -44 +18126382ns 318009 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18126666ns 318014 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18127064ns 318021 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18127234ns 318024 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18127689ns 318032 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18127859ns 318035 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18128143ns 318040 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18128428ns 318045 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18128712ns 318050 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18129166ns 318058 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18129337ns 318061 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18129621ns 318066 1a110850 fd5ff06f jal x0, -44 +18129905ns 318071 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18130189ns 318076 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18130587ns 318083 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18130758ns 318086 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18131212ns 318094 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18131383ns 318097 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18131667ns 318102 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18131951ns 318107 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18132235ns 318112 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18132690ns 318120 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18132860ns 318123 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18133145ns 318128 1a110850 fd5ff06f jal x0, -44 +18133429ns 318133 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18133713ns 318138 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18134111ns 318145 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18134281ns 318148 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18134736ns 318156 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18134906ns 318159 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18135191ns 318164 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18135475ns 318169 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18135759ns 318174 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18136214ns 318182 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18136384ns 318185 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18136668ns 318190 1a110850 fd5ff06f jal x0, -44 +18136952ns 318195 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18137237ns 318200 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18137634ns 318207 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18137805ns 318210 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18138259ns 318218 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18138430ns 318221 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18138714ns 318226 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18138998ns 318231 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18139282ns 318236 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18139737ns 318244 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18139908ns 318247 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18140192ns 318252 1a110850 fd5ff06f jal x0, -44 +18140476ns 318257 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18140760ns 318262 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18141158ns 318269 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18141328ns 318272 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18141783ns 318280 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18141954ns 318283 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18142238ns 318288 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18142522ns 318293 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18142806ns 318298 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18143261ns 318306 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18143431ns 318309 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18143715ns 318314 1a110850 fd5ff06f jal x0, -44 +18144000ns 318319 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18144284ns 318324 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18144682ns 318331 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18144852ns 318334 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18145307ns 318342 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18145477ns 318345 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18145761ns 318350 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18146045ns 318355 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18146330ns 318360 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18146784ns 318368 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18146955ns 318371 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18147239ns 318376 1a110850 fd5ff06f jal x0, -44 +18147523ns 318381 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18147807ns 318386 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18148205ns 318393 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18148376ns 318396 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18148830ns 318404 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18149001ns 318407 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18149285ns 318412 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18149569ns 318417 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18149853ns 318422 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18150308ns 318430 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18150478ns 318433 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18150763ns 318438 1a110850 fd5ff06f jal x0, -44 +18151047ns 318443 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18151331ns 318448 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18151729ns 318455 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18151899ns 318458 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18152354ns 318466 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18152524ns 318469 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18152808ns 318474 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18153093ns 318479 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18153377ns 318484 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18153831ns 318492 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18154002ns 318495 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18154286ns 318500 1a110850 fd5ff06f jal x0, -44 +18154570ns 318505 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18154854ns 318510 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18155252ns 318517 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18155423ns 318520 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18155877ns 318528 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18156048ns 318531 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18156332ns 318536 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18156616ns 318541 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18156900ns 318546 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18157355ns 318554 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18157526ns 318557 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18157810ns 318562 1a110850 fd5ff06f jal x0, -44 +18158094ns 318567 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18158378ns 318572 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18158776ns 318579 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18158946ns 318582 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18159401ns 318590 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18159571ns 318593 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18159856ns 318598 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18160140ns 318603 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18160424ns 318608 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18160879ns 318616 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18161049ns 318619 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18161333ns 318624 1a110850 fd5ff06f jal x0, -44 +18161617ns 318629 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18161902ns 318634 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18162299ns 318641 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18162470ns 318644 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18162925ns 318652 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18163095ns 318655 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18163379ns 318660 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18163663ns 318665 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18163948ns 318670 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18164402ns 318678 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18164573ns 318681 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18164857ns 318686 1a110850 fd5ff06f jal x0, -44 +18165141ns 318691 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18165425ns 318696 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18165823ns 318703 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18165994ns 318706 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18166448ns 318714 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18166619ns 318717 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18166903ns 318722 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18167187ns 318727 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18167471ns 318732 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18167926ns 318740 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18168096ns 318743 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18168380ns 318748 1a110850 fd5ff06f jal x0, -44 +18168665ns 318753 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18168949ns 318758 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18169347ns 318765 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18169517ns 318768 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18169972ns 318776 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18170142ns 318779 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18170426ns 318784 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18170711ns 318789 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18170995ns 318794 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18171449ns 318802 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18171620ns 318805 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18171904ns 318810 1a110850 fd5ff06f jal x0, -44 +18172188ns 318815 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18172472ns 318820 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18172870ns 318827 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18173041ns 318830 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18173495ns 318838 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18173666ns 318841 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18173950ns 318846 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18174234ns 318851 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18174518ns 318856 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18174973ns 318864 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18175143ns 318867 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18175428ns 318872 1a110850 fd5ff06f jal x0, -44 +18175712ns 318877 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18175996ns 318882 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18176394ns 318889 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18176564ns 318892 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18177019ns 318900 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18177189ns 318903 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18177474ns 318908 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18177758ns 318913 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18178042ns 318918 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18178497ns 318926 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18178667ns 318929 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18178951ns 318934 1a110850 fd5ff06f jal x0, -44 +18179235ns 318939 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18179520ns 318944 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18179917ns 318951 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18180088ns 318954 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18180543ns 318962 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18180713ns 318965 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18180997ns 318970 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18181281ns 318975 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18181565ns 318980 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18182020ns 318988 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18182191ns 318991 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18182475ns 318996 1a110850 fd5ff06f jal x0, -44 +18182759ns 319001 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18183043ns 319006 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18183441ns 319013 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18183611ns 319016 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18184066ns 319024 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18184237ns 319027 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18184521ns 319032 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18184805ns 319037 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18185089ns 319042 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18185544ns 319050 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18185714ns 319053 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18185998ns 319058 1a110850 fd5ff06f jal x0, -44 +18186283ns 319063 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18186567ns 319068 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18186965ns 319075 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18187135ns 319078 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18187590ns 319086 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18187760ns 319089 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18188044ns 319094 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18188328ns 319099 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18188613ns 319104 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18189067ns 319112 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18189238ns 319115 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18189522ns 319120 1a110850 fd5ff06f jal x0, -44 +18189806ns 319125 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18190090ns 319130 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18190488ns 319137 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18190659ns 319140 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18191113ns 319148 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18191284ns 319151 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18191568ns 319156 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18191852ns 319161 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18192136ns 319166 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18192591ns 319174 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18192761ns 319177 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18193046ns 319182 1a110850 fd5ff06f jal x0, -44 +18193330ns 319187 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18193614ns 319192 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18194012ns 319199 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18194182ns 319202 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18194637ns 319210 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18194807ns 319213 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18195091ns 319218 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18195376ns 319223 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18195660ns 319228 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18196114ns 319236 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18196285ns 319239 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18196569ns 319244 1a110850 fd5ff06f jal x0, -44 +18196853ns 319249 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18197137ns 319254 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18197535ns 319261 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18197706ns 319264 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18198160ns 319272 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18198331ns 319275 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18198615ns 319280 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18198899ns 319285 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18199183ns 319290 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18199638ns 319298 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18199809ns 319301 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18200093ns 319306 1a110850 fd5ff06f jal x0, -44 +18200377ns 319311 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18200661ns 319316 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18201059ns 319323 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18201229ns 319326 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18201684ns 319334 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18201855ns 319337 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18202139ns 319342 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18202423ns 319347 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18202707ns 319352 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18203162ns 319360 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18203332ns 319363 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18203616ns 319368 1a110850 fd5ff06f jal x0, -44 +18203900ns 319373 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18204185ns 319378 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18204582ns 319385 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18204753ns 319388 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18205208ns 319396 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18205378ns 319399 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18205662ns 319404 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18205946ns 319409 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18206231ns 319414 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18206685ns 319422 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18206856ns 319425 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18207140ns 319430 1a110850 fd5ff06f jal x0, -44 +18207424ns 319435 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18207708ns 319440 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18208106ns 319447 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18208277ns 319450 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18208731ns 319458 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18208902ns 319461 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18209186ns 319466 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18209470ns 319471 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18209754ns 319476 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18210209ns 319484 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18210379ns 319487 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18210663ns 319492 1a110850 fd5ff06f jal x0, -44 +18210948ns 319497 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18211232ns 319502 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18211630ns 319509 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18211800ns 319512 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18212255ns 319520 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18212425ns 319523 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18212709ns 319528 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18212994ns 319533 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18213278ns 319538 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18213732ns 319546 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18213903ns 319549 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18214187ns 319554 1a110850 fd5ff06f jal x0, -44 +18214471ns 319559 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18214755ns 319564 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18215153ns 319571 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18215324ns 319574 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18215778ns 319582 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18215949ns 319585 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18216233ns 319590 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18216517ns 319595 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18216801ns 319600 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18217256ns 319608 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18217426ns 319611 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18217711ns 319616 1a110850 fd5ff06f jal x0, -44 +18217995ns 319621 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18218279ns 319626 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18218677ns 319633 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18218847ns 319636 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18219302ns 319644 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18219472ns 319647 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18219757ns 319652 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18220041ns 319657 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18220325ns 319662 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18220780ns 319670 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18220950ns 319673 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18221234ns 319678 1a110850 fd5ff06f jal x0, -44 +18221518ns 319683 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18221803ns 319688 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18222200ns 319695 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18222371ns 319698 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18222826ns 319706 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18222996ns 319709 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18223280ns 319714 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18223564ns 319719 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18223848ns 319724 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18224303ns 319732 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18224474ns 319735 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18224758ns 319740 1a110850 fd5ff06f jal x0, -44 +18225042ns 319745 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18225326ns 319750 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18225724ns 319757 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18225894ns 319760 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18226349ns 319768 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18226520ns 319771 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18226804ns 319776 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18227088ns 319781 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18227372ns 319786 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18227827ns 319794 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18227997ns 319797 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18228281ns 319802 1a110850 fd5ff06f jal x0, -44 +18228566ns 319807 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18228850ns 319812 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18229248ns 319819 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18229418ns 319822 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18229873ns 319830 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18230043ns 319833 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18230327ns 319838 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18230611ns 319843 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18230896ns 319848 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18231350ns 319856 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18231521ns 319859 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18231805ns 319864 1a110850 fd5ff06f jal x0, -44 +18232089ns 319869 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18232373ns 319874 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18232771ns 319881 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18232942ns 319884 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18233396ns 319892 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18233567ns 319895 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18233851ns 319900 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18234135ns 319905 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18234419ns 319910 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18234874ns 319918 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18235044ns 319921 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18235329ns 319926 1a110850 fd5ff06f jal x0, -44 +18235613ns 319931 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18235897ns 319936 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18236295ns 319943 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18236465ns 319946 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18236920ns 319954 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18237090ns 319957 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18237375ns 319962 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18237659ns 319967 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18237943ns 319972 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18238397ns 319980 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18238568ns 319983 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18238852ns 319988 1a110850 fd5ff06f jal x0, -44 +18239136ns 319993 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18239420ns 319998 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18239818ns 320005 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18239989ns 320008 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18240443ns 320016 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18240614ns 320019 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18240898ns 320024 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18241182ns 320029 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18241466ns 320034 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18241921ns 320042 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18242092ns 320045 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18242376ns 320050 1a110850 fd5ff06f jal x0, -44 +18242660ns 320055 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18242944ns 320060 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18243342ns 320067 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18243512ns 320070 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18243967ns 320078 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18244138ns 320081 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18244422ns 320086 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18244706ns 320091 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18244990ns 320096 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18245445ns 320104 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18245615ns 320107 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18245899ns 320112 1a110850 fd5ff06f jal x0, -44 +18246183ns 320117 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18246468ns 320122 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18246865ns 320129 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18247036ns 320132 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18247491ns 320140 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18247661ns 320143 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18247945ns 320148 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18248229ns 320153 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18248514ns 320158 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18248968ns 320166 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18249139ns 320169 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18249423ns 320174 1a110850 fd5ff06f jal x0, -44 +18249707ns 320179 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18249991ns 320184 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18250389ns 320191 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18250560ns 320194 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18251014ns 320202 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18251185ns 320205 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18251469ns 320210 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18251753ns 320215 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18252037ns 320220 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18252492ns 320228 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18252662ns 320231 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18252946ns 320236 1a110850 fd5ff06f jal x0, -44 +18253231ns 320241 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18253515ns 320246 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18253913ns 320253 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18254083ns 320256 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18254538ns 320264 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18254708ns 320267 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18254992ns 320272 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18255277ns 320277 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18255561ns 320282 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18256015ns 320290 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18256186ns 320293 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18256470ns 320298 1a110850 fd5ff06f jal x0, -44 +18256754ns 320303 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18257038ns 320308 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18257436ns 320315 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18257607ns 320318 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18258061ns 320326 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18258232ns 320329 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18258516ns 320334 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18258800ns 320339 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18259084ns 320344 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18259539ns 320352 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18259709ns 320355 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18259994ns 320360 1a110850 fd5ff06f jal x0, -44 +18260278ns 320365 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18260562ns 320370 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18260960ns 320377 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18261130ns 320380 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18261585ns 320388 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18261755ns 320391 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18262040ns 320396 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18262324ns 320401 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18262608ns 320406 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18263063ns 320414 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18263233ns 320417 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18263517ns 320422 1a110850 fd5ff06f jal x0, -44 +18263801ns 320427 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18264086ns 320432 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18264483ns 320439 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18264654ns 320442 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18265109ns 320450 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18265279ns 320453 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18265563ns 320458 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18265847ns 320463 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18266131ns 320468 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18266586ns 320476 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18266757ns 320479 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18267041ns 320484 1a110850 fd5ff06f jal x0, -44 +18267325ns 320489 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18267609ns 320494 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18268007ns 320501 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18268177ns 320504 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18268632ns 320512 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18268803ns 320515 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18269087ns 320520 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18269371ns 320525 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18269655ns 320530 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18270110ns 320538 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18270280ns 320541 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18270564ns 320546 1a110850 fd5ff06f jal x0, -44 +18270849ns 320551 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18271133ns 320556 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18271531ns 320563 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18271701ns 320566 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18272156ns 320574 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18272326ns 320577 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18272610ns 320582 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18272895ns 320587 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18273179ns 320592 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18273633ns 320600 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18273804ns 320603 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18274088ns 320608 1a110850 fd5ff06f jal x0, -44 +18274372ns 320613 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18274656ns 320618 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18275054ns 320625 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18275225ns 320628 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18275679ns 320636 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18275850ns 320639 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18276134ns 320644 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18276418ns 320649 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18276702ns 320654 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18277157ns 320662 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18277327ns 320665 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18277612ns 320670 1a110850 fd5ff06f jal x0, -44 +18277896ns 320675 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18278180ns 320680 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18278578ns 320687 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18278748ns 320690 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18279203ns 320698 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18279373ns 320701 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18279658ns 320706 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18279942ns 320711 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18280226ns 320716 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18280680ns 320724 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18280851ns 320727 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18281135ns 320732 1a110850 fd5ff06f jal x0, -44 +18281419ns 320737 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18281703ns 320742 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18282101ns 320749 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18282272ns 320752 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18282726ns 320760 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18282897ns 320763 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18283181ns 320768 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18283465ns 320773 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18283749ns 320778 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18284204ns 320786 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18284375ns 320789 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18284659ns 320794 1a110850 fd5ff06f jal x0, -44 +18284943ns 320799 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18285227ns 320804 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18285625ns 320811 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18285795ns 320814 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18286250ns 320822 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18286421ns 320825 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18286705ns 320830 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18286989ns 320835 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18287273ns 320840 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18287728ns 320848 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18287898ns 320851 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18288182ns 320856 1a110850 fd5ff06f jal x0, -44 +18288466ns 320861 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18288751ns 320866 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18289148ns 320873 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18289319ns 320876 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18289774ns 320884 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18289944ns 320887 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18290228ns 320892 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18290512ns 320897 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18290797ns 320902 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18291251ns 320910 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18291422ns 320913 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18291706ns 320918 1a110850 fd5ff06f jal x0, -44 +18291990ns 320923 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18292274ns 320928 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18292672ns 320935 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18292843ns 320938 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18293297ns 320946 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18293468ns 320949 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18293752ns 320954 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18294036ns 320959 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18294320ns 320964 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18294775ns 320972 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18294945ns 320975 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18295229ns 320980 1a110850 fd5ff06f jal x0, -44 +18295514ns 320985 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18295798ns 320990 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18296196ns 320997 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18296366ns 321000 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18296821ns 321008 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18296991ns 321011 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18297275ns 321016 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18297560ns 321021 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18297844ns 321026 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18298298ns 321034 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18298469ns 321037 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18298753ns 321042 1a110850 fd5ff06f jal x0, -44 +18299037ns 321047 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18299321ns 321052 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18299719ns 321059 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18299890ns 321062 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18300344ns 321070 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18300515ns 321073 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18300799ns 321078 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18301083ns 321083 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18301367ns 321088 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18301822ns 321096 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18301992ns 321099 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18302277ns 321104 1a110850 fd5ff06f jal x0, -44 +18302561ns 321109 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18302845ns 321114 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18303243ns 321121 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18303413ns 321124 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18303868ns 321132 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18304038ns 321135 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18304323ns 321140 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18304607ns 321145 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18304891ns 321150 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18305346ns 321158 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18305516ns 321161 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18305800ns 321166 1a110850 fd5ff06f jal x0, -44 +18306084ns 321171 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18306369ns 321176 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18306766ns 321183 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18306937ns 321186 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18307392ns 321194 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18307562ns 321197 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18307846ns 321202 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18308130ns 321207 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18308415ns 321212 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18308869ns 321220 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18309040ns 321223 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18309324ns 321228 1a110850 fd5ff06f jal x0, -44 +18309608ns 321233 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18309892ns 321238 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18310290ns 321245 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18310460ns 321248 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18310915ns 321256 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18311086ns 321259 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18311370ns 321264 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18311654ns 321269 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18311938ns 321274 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18312393ns 321282 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18312563ns 321285 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18312847ns 321290 1a110850 fd5ff06f jal x0, -44 +18313132ns 321295 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18313416ns 321300 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18313814ns 321307 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18313984ns 321310 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18314439ns 321318 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18314609ns 321321 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18314893ns 321326 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18315178ns 321331 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18315462ns 321336 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18315916ns 321344 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18316087ns 321347 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18316371ns 321352 1a110850 fd5ff06f jal x0, -44 +18316655ns 321357 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18316939ns 321362 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18317337ns 321369 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18317508ns 321372 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18317962ns 321380 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18318133ns 321383 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18318417ns 321388 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18318701ns 321393 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18318985ns 321398 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18319440ns 321406 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18319610ns 321409 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18319895ns 321414 1a110850 fd5ff06f jal x0, -44 +18320179ns 321419 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18320463ns 321424 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18320861ns 321431 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18321031ns 321434 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18321486ns 321442 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18321656ns 321445 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18321941ns 321450 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18322225ns 321455 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18322509ns 321460 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18322963ns 321468 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18323134ns 321471 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18323418ns 321476 1a110850 fd5ff06f jal x0, -44 +18323702ns 321481 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18323986ns 321486 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18324384ns 321493 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18324555ns 321496 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18325009ns 321504 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18325180ns 321507 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18325464ns 321512 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18325748ns 321517 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18326032ns 321522 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18326487ns 321530 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18326658ns 321533 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18326942ns 321538 1a110850 fd5ff06f jal x0, -44 +18327226ns 321543 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18327510ns 321548 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18327908ns 321555 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18328078ns 321558 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18328533ns 321566 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18328704ns 321569 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18328988ns 321574 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18329272ns 321579 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18329556ns 321584 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18330011ns 321592 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18330181ns 321595 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18330465ns 321600 1a110850 fd5ff06f jal x0, -44 +18330749ns 321605 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18331034ns 321610 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18331431ns 321617 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18331602ns 321620 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18332057ns 321628 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18332227ns 321631 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18332511ns 321636 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18332795ns 321641 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18333080ns 321646 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18333534ns 321654 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18333705ns 321657 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18333989ns 321662 1a110850 fd5ff06f jal x0, -44 +18334273ns 321667 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18334557ns 321672 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18334955ns 321679 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18335126ns 321682 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18335580ns 321690 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18335751ns 321693 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18336035ns 321698 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18336319ns 321703 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18336603ns 321708 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18337058ns 321716 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18337228ns 321719 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18337512ns 321724 1a110850 fd5ff06f jal x0, -44 +18337797ns 321729 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18338081ns 321734 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18338479ns 321741 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18338649ns 321744 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18339104ns 321752 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18339274ns 321755 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18339558ns 321760 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18339843ns 321765 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18340127ns 321770 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18340581ns 321778 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18340752ns 321781 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18341036ns 321786 1a110850 fd5ff06f jal x0, -44 +18341320ns 321791 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18341604ns 321796 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18342002ns 321803 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18342173ns 321806 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18342627ns 321814 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18342798ns 321817 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18343082ns 321822 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18343366ns 321827 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18343650ns 321832 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18344105ns 321840 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18344275ns 321843 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18344560ns 321848 1a110850 fd5ff06f jal x0, -44 +18344844ns 321853 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18345128ns 321858 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18345526ns 321865 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18345696ns 321868 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18346151ns 321876 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18346321ns 321879 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18346606ns 321884 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18346890ns 321889 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18347174ns 321894 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18347629ns 321902 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18347799ns 321905 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18348083ns 321910 1a110850 fd5ff06f jal x0, -44 +18348367ns 321915 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18348652ns 321920 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18349049ns 321927 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18349220ns 321930 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18349675ns 321938 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18349845ns 321941 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18350129ns 321946 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18350413ns 321951 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18350698ns 321956 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18351152ns 321964 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18351323ns 321967 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18351607ns 321972 1a110850 fd5ff06f jal x0, -44 +18351891ns 321977 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18352175ns 321982 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18352573ns 321989 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18352743ns 321992 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18353198ns 322000 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18353369ns 322003 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18353653ns 322008 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18353937ns 322013 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18354221ns 322018 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18354676ns 322026 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18354846ns 322029 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18355130ns 322034 1a110850 fd5ff06f jal x0, -44 +18355415ns 322039 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18355699ns 322044 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18356097ns 322051 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18356267ns 322054 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18356722ns 322062 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18356892ns 322065 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18357176ns 322070 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18357461ns 322075 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18357745ns 322080 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18358199ns 322088 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18358370ns 322091 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18358654ns 322096 1a110850 fd5ff06f jal x0, -44 +18358938ns 322101 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18359222ns 322106 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18359620ns 322113 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18359791ns 322116 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18360245ns 322124 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18360416ns 322127 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18360700ns 322132 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18360984ns 322137 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18361268ns 322142 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18361723ns 322150 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18361893ns 322153 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18362178ns 322158 1a110850 fd5ff06f jal x0, -44 +18362462ns 322163 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18362746ns 322168 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18363144ns 322175 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18363314ns 322178 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18363769ns 322186 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18363939ns 322189 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18364224ns 322194 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18364508ns 322199 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18364792ns 322204 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18365247ns 322212 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18365417ns 322215 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18365701ns 322220 1a110850 fd5ff06f jal x0, -44 +18365985ns 322225 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18366269ns 322230 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18366667ns 322237 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18366838ns 322240 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18367292ns 322248 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18367463ns 322251 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18367747ns 322256 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18368031ns 322261 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18368315ns 322266 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18368770ns 322274 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18368941ns 322277 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18369225ns 322282 1a110850 fd5ff06f jal x0, -44 +18369509ns 322287 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18369793ns 322292 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18370191ns 322299 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18370361ns 322302 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18370816ns 322310 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18370987ns 322313 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18371271ns 322318 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18371555ns 322323 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18371839ns 322328 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18372294ns 322336 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18372464ns 322339 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18372748ns 322344 1a110850 fd5ff06f jal x0, -44 +18373032ns 322349 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18373317ns 322354 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18373714ns 322361 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18373885ns 322364 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18374340ns 322372 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18374510ns 322375 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18374794ns 322380 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18375078ns 322385 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18375363ns 322390 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18375817ns 322398 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18375988ns 322401 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18376272ns 322406 1a110850 fd5ff06f jal x0, -44 +18376556ns 322411 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18376840ns 322416 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18377238ns 322423 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18377409ns 322426 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18377863ns 322434 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18378034ns 322437 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18378318ns 322442 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18378602ns 322447 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18378886ns 322452 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18379341ns 322460 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18379511ns 322463 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18379795ns 322468 1a110850 fd5ff06f jal x0, -44 +18380080ns 322473 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18380364ns 322478 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18380762ns 322485 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18380932ns 322488 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18381387ns 322496 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18381557ns 322499 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18381841ns 322504 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18382126ns 322509 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18382410ns 322514 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18382864ns 322522 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18383035ns 322525 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18383319ns 322530 1a110850 fd5ff06f jal x0, -44 +18383603ns 322535 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18383887ns 322540 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18384285ns 322547 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18384456ns 322550 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18384910ns 322558 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18385081ns 322561 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18385365ns 322566 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18385649ns 322571 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18385933ns 322576 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18386388ns 322584 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18386559ns 322587 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18386843ns 322592 1a110850 fd5ff06f jal x0, -44 +18387127ns 322597 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18387411ns 322602 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18387809ns 322609 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18387979ns 322612 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18388434ns 322620 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18388604ns 322623 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18388889ns 322628 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18389173ns 322633 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18389457ns 322638 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18389912ns 322646 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18390082ns 322649 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18390366ns 322654 1a110850 fd5ff06f jal x0, -44 +18390650ns 322659 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18390935ns 322664 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18391332ns 322671 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18391503ns 322674 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18391958ns 322682 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18392128ns 322685 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18392412ns 322690 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18392696ns 322695 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18392981ns 322700 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18393435ns 322708 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18393606ns 322711 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18393890ns 322716 1a110850 fd5ff06f jal x0, -44 +18394174ns 322721 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18394458ns 322726 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18394856ns 322733 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18395026ns 322736 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18395481ns 322744 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18395652ns 322747 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18395936ns 322752 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18396220ns 322757 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18396504ns 322762 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18396959ns 322770 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18397129ns 322773 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18397413ns 322778 1a110850 fd5ff06f jal x0, -44 +18397698ns 322783 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18397982ns 322788 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18398380ns 322795 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18398550ns 322798 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18399005ns 322806 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18399175ns 322809 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18399459ns 322814 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18399744ns 322819 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18400028ns 322824 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18400482ns 322832 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18400653ns 322835 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18400937ns 322840 1a110850 fd5ff06f jal x0, -44 +18401221ns 322845 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18401505ns 322850 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18401903ns 322857 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18402074ns 322860 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18402528ns 322868 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18402699ns 322871 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18402983ns 322876 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18403267ns 322881 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18403551ns 322886 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18404006ns 322894 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18404176ns 322897 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18404461ns 322902 1a110850 fd5ff06f jal x0, -44 +18404745ns 322907 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18405029ns 322912 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18405427ns 322919 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18405597ns 322922 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18406052ns 322930 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18406222ns 322933 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18406507ns 322938 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18406791ns 322943 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18407075ns 322948 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18407530ns 322956 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18407700ns 322959 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18407984ns 322964 1a110850 fd5ff06f jal x0, -44 +18408268ns 322969 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18408552ns 322974 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18408950ns 322981 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18409121ns 322984 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18409575ns 322992 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18409746ns 322995 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18410030ns 323000 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18410314ns 323005 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18410598ns 323010 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18411053ns 323018 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18411224ns 323021 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18411508ns 323026 1a110850 fd5ff06f jal x0, -44 +18411792ns 323031 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18412076ns 323036 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18412474ns 323043 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18412644ns 323046 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18413099ns 323054 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18413270ns 323057 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18413554ns 323062 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18413838ns 323067 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18414122ns 323072 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18414577ns 323080 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18414747ns 323083 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18415031ns 323088 1a110850 fd5ff06f jal x0, -44 +18415315ns 323093 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18415600ns 323098 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18415997ns 323105 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18416168ns 323108 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18416623ns 323116 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18416793ns 323119 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18417077ns 323124 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18417361ns 323129 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18417646ns 323134 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18418100ns 323142 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18418271ns 323145 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18418555ns 323150 1a110850 fd5ff06f jal x0, -44 +18418839ns 323155 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18419123ns 323160 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18419521ns 323167 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18419692ns 323170 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18420146ns 323178 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18420317ns 323181 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18420601ns 323186 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18420885ns 323191 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18421169ns 323196 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18421624ns 323204 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18421794ns 323207 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18422079ns 323212 1a110850 fd5ff06f jal x0, -44 +18422363ns 323217 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18422647ns 323222 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18423045ns 323229 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18423215ns 323232 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18423670ns 323240 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18423840ns 323243 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18424124ns 323248 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18424409ns 323253 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18424693ns 323258 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18425147ns 323266 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18425318ns 323269 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18425602ns 323274 1a110850 fd5ff06f jal x0, -44 +18425886ns 323279 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18426170ns 323284 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18426568ns 323291 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18426739ns 323294 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18427193ns 323302 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18427364ns 323305 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18427648ns 323310 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18427932ns 323315 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18428216ns 323320 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18428671ns 323328 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18428842ns 323331 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18429126ns 323336 1a110850 fd5ff06f jal x0, -44 +18429410ns 323341 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18429694ns 323346 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18430092ns 323353 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18430262ns 323356 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18430717ns 323364 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18430887ns 323367 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18431172ns 323372 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18431456ns 323377 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18431740ns 323382 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18432195ns 323390 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18432365ns 323393 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18432649ns 323398 1a110850 fd5ff06f jal x0, -44 +18432933ns 323403 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18433218ns 323408 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18433615ns 323415 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18433786ns 323418 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18434241ns 323426 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18434411ns 323429 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18434695ns 323434 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18434979ns 323439 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18435264ns 323444 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18435718ns 323452 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18435889ns 323455 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18436173ns 323460 1a110850 fd5ff06f jal x0, -44 +18436457ns 323465 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18436741ns 323470 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18437139ns 323477 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18437309ns 323480 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18437764ns 323488 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18437935ns 323491 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18438219ns 323496 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18438503ns 323501 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18438787ns 323506 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18439242ns 323514 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18439412ns 323517 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18439696ns 323522 1a110850 fd5ff06f jal x0, -44 +18439981ns 323527 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18440265ns 323532 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18440663ns 323539 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18440833ns 323542 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18441288ns 323550 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18441458ns 323553 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18441742ns 323558 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18442027ns 323563 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18442311ns 323568 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18442765ns 323576 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18442936ns 323579 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18443220ns 323584 1a110850 fd5ff06f jal x0, -44 +18443504ns 323589 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18443788ns 323594 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18444186ns 323601 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18444357ns 323604 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18444811ns 323612 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18444982ns 323615 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18445266ns 323620 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18445550ns 323625 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18445834ns 323630 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18446289ns 323638 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18446459ns 323641 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18446744ns 323646 1a110850 fd5ff06f jal x0, -44 +18447028ns 323651 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18447312ns 323656 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18447710ns 323663 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18447880ns 323666 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18448335ns 323674 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18448505ns 323677 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18448790ns 323682 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18449074ns 323687 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18449358ns 323692 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18449813ns 323700 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18449983ns 323703 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18450267ns 323708 1a110850 fd5ff06f jal x0, -44 +18450551ns 323713 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18450835ns 323718 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18451233ns 323725 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18451404ns 323728 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18451858ns 323736 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18452029ns 323739 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18452313ns 323744 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18452597ns 323749 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18452881ns 323754 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18453336ns 323762 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18453507ns 323765 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18453791ns 323770 1a110850 fd5ff06f jal x0, -44 +18454075ns 323775 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18454359ns 323780 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18454757ns 323787 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18454927ns 323790 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18455382ns 323798 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18455553ns 323801 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18455837ns 323806 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18456121ns 323811 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18456405ns 323816 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18456860ns 323824 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18457030ns 323827 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18457314ns 323832 1a110850 fd5ff06f jal x0, -44 +18457599ns 323837 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18457883ns 323842 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18458280ns 323849 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18458451ns 323852 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18458906ns 323860 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18459076ns 323863 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18459360ns 323868 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18459644ns 323873 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18459929ns 323878 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18460383ns 323886 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18460554ns 323889 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18460838ns 323894 1a110850 fd5ff06f jal x0, -44 +18461122ns 323899 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18461406ns 323904 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18461804ns 323911 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18461975ns 323914 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18462429ns 323922 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18462600ns 323925 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18462884ns 323930 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18463168ns 323935 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18463452ns 323940 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18463907ns 323948 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18464077ns 323951 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18464362ns 323956 1a110850 fd5ff06f jal x0, -44 +18464646ns 323961 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18464930ns 323966 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18465328ns 323973 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18465498ns 323976 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18465953ns 323984 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18466123ns 323987 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18466407ns 323992 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18466692ns 323997 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18466976ns 324002 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18467430ns 324010 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18467601ns 324013 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18467885ns 324018 1a110850 fd5ff06f jal x0, -44 +18468169ns 324023 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18468453ns 324028 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18468851ns 324035 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18469022ns 324038 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18469476ns 324046 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18469647ns 324049 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18469931ns 324054 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18470215ns 324059 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18470499ns 324064 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18470954ns 324072 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18471125ns 324075 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18471409ns 324080 1a110850 fd5ff06f jal x0, -44 +18471693ns 324085 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18471977ns 324090 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18472375ns 324097 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18472545ns 324100 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18473000ns 324108 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18473170ns 324111 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18473455ns 324116 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18473739ns 324121 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18474023ns 324126 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18474478ns 324134 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18474648ns 324137 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18474932ns 324142 1a110850 fd5ff06f jal x0, -44 +18475216ns 324147 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18475501ns 324152 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18475898ns 324159 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18476069ns 324162 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18476524ns 324170 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18476694ns 324173 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18476978ns 324178 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18477262ns 324183 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18477547ns 324188 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18478001ns 324196 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18478172ns 324199 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18478456ns 324204 1a110850 fd5ff06f jal x0, -44 +18478740ns 324209 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18479024ns 324214 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18479422ns 324221 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18479592ns 324224 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18480047ns 324232 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18480218ns 324235 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18480502ns 324240 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18480786ns 324245 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18481070ns 324250 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18481525ns 324258 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18481695ns 324261 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18481979ns 324266 1a110850 fd5ff06f jal x0, -44 +18482264ns 324271 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18482548ns 324276 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18482946ns 324283 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18483116ns 324286 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18483571ns 324294 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18483741ns 324297 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18484025ns 324302 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18484310ns 324307 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18484594ns 324312 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18485048ns 324320 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18485219ns 324323 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18485503ns 324328 1a110850 fd5ff06f jal x0, -44 +18485787ns 324333 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18486071ns 324338 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18486469ns 324345 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18486640ns 324348 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18487094ns 324356 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18487265ns 324359 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18487549ns 324364 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18487833ns 324369 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18488117ns 324374 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18488572ns 324382 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18488742ns 324385 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18489027ns 324390 1a110850 fd5ff06f jal x0, -44 +18489311ns 324395 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18489595ns 324400 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18489993ns 324407 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18490163ns 324410 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18490618ns 324418 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18490788ns 324421 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18491073ns 324426 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18491357ns 324431 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18491641ns 324436 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18492096ns 324444 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18492266ns 324447 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18492550ns 324452 1a110850 fd5ff06f jal x0, -44 +18492834ns 324457 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18493119ns 324462 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18493516ns 324469 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18493687ns 324472 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18494141ns 324480 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18494312ns 324483 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18494596ns 324488 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18494880ns 324493 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18495164ns 324498 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18495619ns 324506 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18495790ns 324509 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18496074ns 324514 1a110850 fd5ff06f jal x0, -44 +18496358ns 324519 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18496642ns 324524 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18497040ns 324531 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18497210ns 324534 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18497665ns 324542 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18497836ns 324545 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18498120ns 324550 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18498404ns 324555 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18498688ns 324560 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18499143ns 324568 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18499313ns 324571 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18499597ns 324576 1a110850 fd5ff06f jal x0, -44 +18499882ns 324581 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18500166ns 324586 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18500563ns 324593 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18500734ns 324596 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18501189ns 324604 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18501359ns 324607 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18501643ns 324612 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18501927ns 324617 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18502212ns 324622 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18502666ns 324630 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18502837ns 324633 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18503121ns 324638 1a110850 fd5ff06f jal x0, -44 +18503405ns 324643 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18503689ns 324648 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18504087ns 324655 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18504258ns 324658 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18504712ns 324666 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18504883ns 324669 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18505167ns 324674 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18505451ns 324679 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18505735ns 324684 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18506190ns 324692 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18506360ns 324695 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18506645ns 324700 1a110850 fd5ff06f jal x0, -44 +18506929ns 324705 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18507213ns 324710 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18507611ns 324717 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18507781ns 324720 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18508236ns 324728 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18508406ns 324731 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18508690ns 324736 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18508975ns 324741 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18509259ns 324746 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18509713ns 324754 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18509884ns 324757 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18510168ns 324762 1a110850 fd5ff06f jal x0, -44 +18510452ns 324767 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18510736ns 324772 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18511134ns 324779 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18511305ns 324782 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18511759ns 324790 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18511930ns 324793 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18512214ns 324798 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18512498ns 324803 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18512782ns 324808 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18513237ns 324816 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18513408ns 324819 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18513692ns 324824 1a110850 fd5ff06f jal x0, -44 +18513976ns 324829 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18514260ns 324834 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18514658ns 324841 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18514828ns 324844 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18515283ns 324852 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18515453ns 324855 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18515738ns 324860 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18516022ns 324865 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18516306ns 324870 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18516761ns 324878 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18516931ns 324881 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18517215ns 324886 1a110850 fd5ff06f jal x0, -44 +18517499ns 324891 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18517784ns 324896 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18518181ns 324903 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18518352ns 324906 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18518807ns 324914 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18518977ns 324917 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18519261ns 324922 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18519545ns 324927 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18519830ns 324932 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18520284ns 324940 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18520455ns 324943 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18520739ns 324948 1a110850 fd5ff06f jal x0, -44 +18521023ns 324953 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18521307ns 324958 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18521705ns 324965 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18521875ns 324968 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18522330ns 324976 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18522501ns 324979 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18522785ns 324984 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18523069ns 324989 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18523353ns 324994 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18523808ns 325002 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18523978ns 325005 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18524262ns 325010 1a110850 fd5ff06f jal x0, -44 +18524547ns 325015 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18524831ns 325020 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18525229ns 325027 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18525399ns 325030 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18525854ns 325038 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18526024ns 325041 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18526308ns 325046 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18526593ns 325051 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18526877ns 325056 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18527331ns 325064 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18527502ns 325067 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18527786ns 325072 1a110850 fd5ff06f jal x0, -44 +18528070ns 325077 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18528354ns 325082 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18528752ns 325089 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18528923ns 325092 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18529377ns 325100 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18529548ns 325103 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18529832ns 325108 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18530116ns 325113 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18530400ns 325118 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18530855ns 325126 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18531025ns 325129 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18531310ns 325134 1a110850 fd5ff06f jal x0, -44 +18531594ns 325139 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18531878ns 325144 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18532276ns 325151 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18532446ns 325154 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18532901ns 325162 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18533071ns 325165 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18533356ns 325170 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18533640ns 325175 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18533924ns 325180 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18534379ns 325188 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18534549ns 325191 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18534833ns 325196 1a110850 fd5ff06f jal x0, -44 +18535117ns 325201 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18535402ns 325206 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18535799ns 325213 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18535970ns 325216 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18536424ns 325224 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18536595ns 325227 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18536879ns 325232 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18537163ns 325237 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18537447ns 325242 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18537902ns 325250 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18538073ns 325253 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18538357ns 325258 1a110850 fd5ff06f jal x0, -44 +18538641ns 325263 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18538925ns 325268 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18539323ns 325275 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18539493ns 325278 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18539948ns 325286 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18540119ns 325289 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18540403ns 325294 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18540687ns 325299 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18540971ns 325304 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18541426ns 325312 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18541596ns 325315 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18541880ns 325320 1a110850 fd5ff06f jal x0, -44 +18542165ns 325325 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18542449ns 325330 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18542847ns 325337 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18543017ns 325340 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18543472ns 325348 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18543642ns 325351 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18543926ns 325356 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18544210ns 325361 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18544495ns 325366 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18544949ns 325374 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18545120ns 325377 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18545404ns 325382 1a110850 fd5ff06f jal x0, -44 +18545688ns 325387 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18545972ns 325392 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18546370ns 325399 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18546541ns 325402 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18546995ns 325410 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18547166ns 325413 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18547450ns 325418 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18547734ns 325423 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18548018ns 325428 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18548473ns 325436 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18548643ns 325439 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18548928ns 325444 1a110850 fd5ff06f jal x0, -44 +18549212ns 325449 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18549496ns 325454 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18549894ns 325461 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18550064ns 325464 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18550519ns 325472 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18550689ns 325475 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18550973ns 325480 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18551258ns 325485 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18551542ns 325490 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18551996ns 325498 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18552167ns 325501 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18552451ns 325506 1a110850 fd5ff06f jal x0, -44 +18552735ns 325511 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18553019ns 325516 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18553417ns 325523 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18553588ns 325526 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18554042ns 325534 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18554213ns 325537 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18554497ns 325542 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18554781ns 325547 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18555065ns 325552 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18555520ns 325560 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18555691ns 325563 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18555975ns 325568 1a110850 fd5ff06f jal x0, -44 +18556259ns 325573 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18556543ns 325578 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18556941ns 325585 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18557111ns 325588 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18557566ns 325596 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18557736ns 325599 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18558021ns 325604 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18558305ns 325609 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18558589ns 325614 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18559044ns 325622 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18559214ns 325625 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18559498ns 325630 1a110850 fd5ff06f jal x0, -44 +18559782ns 325635 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18560067ns 325640 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18560464ns 325647 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18560635ns 325650 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18561090ns 325658 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18561260ns 325661 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18561544ns 325666 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18561828ns 325671 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18562113ns 325676 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18562567ns 325684 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18562738ns 325687 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18563022ns 325692 1a110850 fd5ff06f jal x0, -44 +18563306ns 325697 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18563590ns 325702 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18563988ns 325709 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18564159ns 325712 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18564613ns 325720 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18564784ns 325723 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18565068ns 325728 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18565352ns 325733 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18565636ns 325738 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18566091ns 325746 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18566261ns 325749 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18566545ns 325754 1a110850 fd5ff06f jal x0, -44 +18566830ns 325759 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18567114ns 325764 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18567512ns 325771 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18567682ns 325774 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18568137ns 325782 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18568307ns 325785 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18568591ns 325790 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18568876ns 325795 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18569160ns 325800 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18569614ns 325808 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18569785ns 325811 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18570069ns 325816 1a110850 fd5ff06f jal x0, -44 +18570353ns 325821 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18570637ns 325826 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18571035ns 325833 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18571206ns 325836 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18571660ns 325844 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18571831ns 325847 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18572115ns 325852 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18572399ns 325857 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18572683ns 325862 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18573138ns 325870 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18573308ns 325873 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18573593ns 325878 1a110850 fd5ff06f jal x0, -44 +18573877ns 325883 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18574161ns 325888 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18574559ns 325895 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18574729ns 325898 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18575184ns 325906 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18575354ns 325909 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18575639ns 325914 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18575923ns 325919 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18576207ns 325924 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18576662ns 325932 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18576832ns 325935 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18577116ns 325940 1a110850 fd5ff06f jal x0, -44 +18577400ns 325945 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18577685ns 325950 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18578082ns 325957 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18578253ns 325960 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18578707ns 325968 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18578878ns 325971 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18579162ns 325976 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18579446ns 325981 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18579730ns 325986 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18580185ns 325994 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18580356ns 325997 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18580640ns 326002 1a110850 fd5ff06f jal x0, -44 +18580924ns 326007 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18581208ns 326012 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18581606ns 326019 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18581776ns 326022 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18582231ns 326030 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18582402ns 326033 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18582686ns 326038 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18582970ns 326043 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18583254ns 326048 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18583709ns 326056 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18583879ns 326059 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18584163ns 326064 1a110850 fd5ff06f jal x0, -44 +18584448ns 326069 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18584732ns 326074 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18585130ns 326081 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18585300ns 326084 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18585755ns 326092 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18585925ns 326095 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18586209ns 326100 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18586493ns 326105 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18586778ns 326110 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18587232ns 326118 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18587403ns 326121 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18587687ns 326126 1a110850 fd5ff06f jal x0, -44 +18587971ns 326131 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18588255ns 326136 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18588653ns 326143 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18588824ns 326146 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18589278ns 326154 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18589449ns 326157 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18589733ns 326162 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18590017ns 326167 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18590301ns 326172 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18590756ns 326180 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18590926ns 326183 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18591211ns 326188 1a110850 fd5ff06f jal x0, -44 +18591495ns 326193 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18591779ns 326198 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18592177ns 326205 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18592347ns 326208 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18592802ns 326216 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18592972ns 326219 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18593256ns 326224 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18593541ns 326229 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18593825ns 326234 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18594279ns 326242 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18594450ns 326245 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18594734ns 326250 1a110850 fd5ff06f jal x0, -44 +18595018ns 326255 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18595302ns 326260 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18595700ns 326267 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18595871ns 326270 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18596325ns 326278 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18596496ns 326281 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18596780ns 326286 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18597064ns 326291 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18597348ns 326296 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18597803ns 326304 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18597974ns 326307 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18598258ns 326312 1a110850 fd5ff06f jal x0, -44 +18598542ns 326317 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18598826ns 326322 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18599224ns 326329 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18599394ns 326332 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18599849ns 326340 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18600019ns 326343 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18600304ns 326348 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18600588ns 326353 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18600872ns 326358 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18601327ns 326366 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18601497ns 326369 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18601781ns 326374 1a110850 fd5ff06f jal x0, -44 +18602065ns 326379 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18602350ns 326384 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18602747ns 326391 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18602918ns 326394 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18603373ns 326402 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18603543ns 326405 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18603827ns 326410 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18604111ns 326415 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18604396ns 326420 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18604850ns 326428 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18605021ns 326431 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18605305ns 326436 1a110850 fd5ff06f jal x0, -44 +18605589ns 326441 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18605873ns 326446 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18606271ns 326453 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18606442ns 326456 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18606896ns 326464 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18607067ns 326467 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18607351ns 326472 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18607635ns 326477 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18607919ns 326482 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18608374ns 326490 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18608544ns 326493 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18608828ns 326498 1a110850 fd5ff06f jal x0, -44 +18609113ns 326503 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18609397ns 326508 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18609795ns 326515 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18609965ns 326518 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18610420ns 326526 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18610590ns 326529 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18610874ns 326534 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18611159ns 326539 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18611443ns 326544 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18611897ns 326552 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18612068ns 326555 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18612352ns 326560 1a110850 fd5ff06f jal x0, -44 +18612636ns 326565 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18612920ns 326570 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18613318ns 326577 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18613489ns 326580 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18613943ns 326588 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18614114ns 326591 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18614398ns 326596 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18614682ns 326601 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18614966ns 326606 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18615421ns 326614 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18615591ns 326617 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18615876ns 326622 1a110850 fd5ff06f jal x0, -44 +18616160ns 326627 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18616444ns 326632 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18616842ns 326639 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18617012ns 326642 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18617467ns 326650 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18617637ns 326653 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18617922ns 326658 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18618206ns 326663 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18618490ns 326668 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18618945ns 326676 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18619115ns 326679 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18619399ns 326684 1a110850 fd5ff06f jal x0, -44 +18619683ns 326689 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18619968ns 326694 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18620365ns 326701 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18620536ns 326704 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18620991ns 326712 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18621161ns 326715 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18621445ns 326720 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18621729ns 326725 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18622013ns 326730 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18622468ns 326738 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18622639ns 326741 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18622923ns 326746 1a110850 fd5ff06f jal x0, -44 +18623207ns 326751 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18623491ns 326756 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18623889ns 326763 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18624059ns 326766 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18624514ns 326774 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18624685ns 326777 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18624969ns 326782 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18625253ns 326787 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18625537ns 326792 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18625992ns 326800 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18626162ns 326803 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18626446ns 326808 1a110850 fd5ff06f jal x0, -44 +18626731ns 326813 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18627015ns 326818 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18627413ns 326825 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18627583ns 326828 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18628038ns 326836 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18628208ns 326839 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18628492ns 326844 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18628776ns 326849 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18629061ns 326854 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18629515ns 326862 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18629686ns 326865 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18629970ns 326870 1a110850 fd5ff06f jal x0, -44 +18630254ns 326875 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18630538ns 326880 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18630936ns 326887 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18631107ns 326890 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18631561ns 326898 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18631732ns 326901 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18632016ns 326906 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18632300ns 326911 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18632584ns 326916 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18633039ns 326924 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18633209ns 326927 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18633494ns 326932 1a110850 fd5ff06f jal x0, -44 +18633778ns 326937 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18634062ns 326942 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18634460ns 326949 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18634630ns 326952 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18635085ns 326960 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18635255ns 326963 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18635539ns 326968 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18635824ns 326973 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18636108ns 326978 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18636562ns 326986 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18636733ns 326989 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18637017ns 326994 1a110850 fd5ff06f jal x0, -44 +18637301ns 326999 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18637585ns 327004 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18637983ns 327011 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18638154ns 327014 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18638608ns 327022 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18638779ns 327025 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18639063ns 327030 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18639347ns 327035 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18639631ns 327040 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18640086ns 327048 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18640257ns 327051 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18640541ns 327056 1a110850 fd5ff06f jal x0, -44 +18640825ns 327061 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18641109ns 327066 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18641507ns 327073 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18641677ns 327076 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18642132ns 327084 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18642303ns 327087 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18642587ns 327092 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18642871ns 327097 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18643155ns 327102 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18643610ns 327110 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18643780ns 327113 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18644064ns 327118 1a110850 fd5ff06f jal x0, -44 +18644348ns 327123 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18644633ns 327128 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18645030ns 327135 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18645201ns 327138 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18645656ns 327146 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18645826ns 327149 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18646110ns 327154 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18646394ns 327159 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18646679ns 327164 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18647133ns 327172 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18647304ns 327175 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18647588ns 327180 1a110850 fd5ff06f jal x0, -44 +18647872ns 327185 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18648156ns 327190 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18648554ns 327197 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18648725ns 327200 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18649179ns 327208 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18649350ns 327211 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18649634ns 327216 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18649918ns 327221 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18650202ns 327226 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18650657ns 327234 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18650827ns 327237 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18651111ns 327242 1a110850 fd5ff06f jal x0, -44 +18651396ns 327247 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18651680ns 327252 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18652078ns 327259 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18652248ns 327262 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18652703ns 327270 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18652873ns 327273 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18653157ns 327278 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18653442ns 327283 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18653726ns 327288 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18654180ns 327296 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18654351ns 327299 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18654635ns 327304 1a110850 fd5ff06f jal x0, -44 +18654919ns 327309 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18655203ns 327314 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18655601ns 327321 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18655772ns 327324 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18656226ns 327332 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18656397ns 327335 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18656681ns 327340 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18656965ns 327345 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18657249ns 327350 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18657704ns 327358 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18657874ns 327361 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18658159ns 327366 1a110850 fd5ff06f jal x0, -44 +18658443ns 327371 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18658727ns 327376 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18659125ns 327383 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18659295ns 327386 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18659750ns 327394 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18659920ns 327397 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18660205ns 327402 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18660489ns 327407 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18660773ns 327412 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18661228ns 327420 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18661398ns 327423 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18661682ns 327428 1a110850 fd5ff06f jal x0, -44 +18661966ns 327433 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18662251ns 327438 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18662648ns 327445 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18662819ns 327448 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18663274ns 327456 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18663444ns 327459 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18663728ns 327464 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18664012ns 327469 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18664296ns 327474 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18664751ns 327482 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18664922ns 327485 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18665206ns 327490 1a110850 fd5ff06f jal x0, -44 +18665490ns 327495 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18665774ns 327500 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18666172ns 327507 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18666342ns 327510 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18666797ns 327518 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18666968ns 327521 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18667252ns 327526 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18667536ns 327531 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18667820ns 327536 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18668275ns 327544 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18668445ns 327547 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18668729ns 327552 1a110850 fd5ff06f jal x0, -44 +18669014ns 327557 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18669298ns 327562 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18669696ns 327569 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18669866ns 327572 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18670321ns 327580 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18670491ns 327583 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18670775ns 327588 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18671059ns 327593 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18671344ns 327598 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18671798ns 327606 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18671969ns 327609 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18672253ns 327614 1a110850 fd5ff06f jal x0, -44 +18672537ns 327619 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18672821ns 327624 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18673219ns 327631 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18673390ns 327634 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18673844ns 327642 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18674015ns 327645 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18674299ns 327650 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18674583ns 327655 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18674867ns 327660 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18675322ns 327668 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18675492ns 327671 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18675777ns 327676 1a110850 fd5ff06f jal x0, -44 +18676061ns 327681 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18676345ns 327686 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18676743ns 327693 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18676913ns 327696 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18677368ns 327704 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18677538ns 327707 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18677823ns 327712 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18678107ns 327717 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18678391ns 327722 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18678845ns 327730 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18679016ns 327733 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18679300ns 327738 1a110850 fd5ff06f jal x0, -44 +18679584ns 327743 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18679868ns 327748 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18680266ns 327755 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18680437ns 327758 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18680891ns 327766 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18681062ns 327769 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18681346ns 327774 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18681630ns 327779 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18681914ns 327784 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18682369ns 327792 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18682540ns 327795 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18682824ns 327800 1a110850 fd5ff06f jal x0, -44 +18683108ns 327805 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18683392ns 327810 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18683790ns 327817 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18683960ns 327820 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18684415ns 327828 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18684586ns 327831 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18684870ns 327836 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18685154ns 327841 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18685438ns 327846 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18685893ns 327854 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18686063ns 327857 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18686347ns 327862 1a110850 fd5ff06f jal x0, -44 +18686631ns 327867 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18686916ns 327872 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18687313ns 327879 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18687484ns 327882 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18687939ns 327890 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18688109ns 327893 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18688393ns 327898 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18688677ns 327903 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18688962ns 327908 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18689416ns 327916 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18689587ns 327919 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18689871ns 327924 1a110850 fd5ff06f jal x0, -44 +18690155ns 327929 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18690439ns 327934 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18690837ns 327941 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18691008ns 327944 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18691462ns 327952 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18691633ns 327955 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18691917ns 327960 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18692201ns 327965 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18692485ns 327970 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18692940ns 327978 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18693110ns 327981 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18693394ns 327986 1a110850 fd5ff06f jal x0, -44 +18693679ns 327991 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18693963ns 327996 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18694361ns 328003 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18694531ns 328006 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18694986ns 328014 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18695156ns 328017 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18695440ns 328022 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18695725ns 328027 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18696009ns 328032 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18696463ns 328040 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18696634ns 328043 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18696918ns 328048 1a110850 fd5ff06f jal x0, -44 +18697202ns 328053 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18697486ns 328058 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18697884ns 328065 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18698055ns 328068 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18698509ns 328076 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18698680ns 328079 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18698964ns 328084 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18699248ns 328089 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18699532ns 328094 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18699987ns 328102 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18700157ns 328105 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18700442ns 328110 1a110850 fd5ff06f jal x0, -44 +18700726ns 328115 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18701010ns 328120 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18701408ns 328127 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18701578ns 328130 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18702033ns 328138 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18702203ns 328141 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18702488ns 328146 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18702772ns 328151 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18703056ns 328156 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18703511ns 328164 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18703681ns 328167 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18703965ns 328172 1a110850 fd5ff06f jal x0, -44 +18704249ns 328177 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18704534ns 328182 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18704931ns 328189 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18705102ns 328192 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18705557ns 328200 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18705727ns 328203 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18706011ns 328208 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18706295ns 328213 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18706579ns 328218 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18707034ns 328226 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18707205ns 328229 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18707489ns 328234 1a110850 fd5ff06f jal x0, -44 +18707773ns 328239 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18708057ns 328244 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18708455ns 328251 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18708625ns 328254 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18709080ns 328262 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18709251ns 328265 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18709535ns 328270 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18709819ns 328275 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18710103ns 328280 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18710558ns 328288 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18710728ns 328291 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18711012ns 328296 1a110850 fd5ff06f jal x0, -44 +18711297ns 328301 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18711581ns 328306 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18711979ns 328313 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18712149ns 328316 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18712604ns 328324 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18712774ns 328327 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18713058ns 328332 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18713343ns 328337 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18713627ns 328342 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18714081ns 328350 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18714252ns 328353 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18714536ns 328358 1a110850 fd5ff06f jal x0, -44 +18714820ns 328363 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18715104ns 328368 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18715502ns 328375 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18715673ns 328378 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18716127ns 328386 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18716298ns 328389 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18716582ns 328394 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18716866ns 328399 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18717150ns 328404 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18717605ns 328412 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18717775ns 328415 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18718060ns 328420 1a110850 fd5ff06f jal x0, -44 +18718344ns 328425 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18718628ns 328430 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18719026ns 328437 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18719196ns 328440 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18719651ns 328448 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18719821ns 328451 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18720106ns 328456 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18720390ns 328461 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18720674ns 328466 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18721128ns 328474 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18721299ns 328477 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18721583ns 328482 1a110850 fd5ff06f jal x0, -44 +18721867ns 328487 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18722151ns 328492 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18722549ns 328499 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18722720ns 328502 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18723174ns 328510 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18723345ns 328513 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18723629ns 328518 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18723913ns 328523 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18724197ns 328528 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18724652ns 328536 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18724823ns 328539 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18725107ns 328544 1a110850 fd5ff06f jal x0, -44 +18725391ns 328549 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18725675ns 328554 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18726073ns 328561 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18726243ns 328564 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18726698ns 328572 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18726869ns 328575 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18727153ns 328580 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18727437ns 328585 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18727721ns 328590 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18728176ns 328598 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18728346ns 328601 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18728630ns 328606 1a110850 fd5ff06f jal x0, -44 +18728914ns 328611 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18729199ns 328616 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18729596ns 328623 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18729767ns 328626 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18730222ns 328634 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18730392ns 328637 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18730676ns 328642 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18730960ns 328647 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18731245ns 328652 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18731699ns 328660 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18731870ns 328663 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18732154ns 328668 1a110850 fd5ff06f jal x0, -44 +18732438ns 328673 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18732722ns 328678 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18733120ns 328685 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18733291ns 328688 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18733745ns 328696 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18733916ns 328699 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18734200ns 328704 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18734484ns 328709 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18734768ns 328714 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18735223ns 328722 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18735393ns 328725 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18735677ns 328730 1a110850 fd5ff06f jal x0, -44 +18735962ns 328735 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18736246ns 328740 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18736644ns 328747 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18736814ns 328750 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18737269ns 328758 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18737439ns 328761 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18737723ns 328766 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18738008ns 328771 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18738292ns 328776 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18738746ns 328784 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18738917ns 328787 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18739201ns 328792 1a110850 fd5ff06f jal x0, -44 +18739485ns 328797 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18739769ns 328802 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18740167ns 328809 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18740338ns 328812 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18740792ns 328820 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18740963ns 328823 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18741247ns 328828 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18741531ns 328833 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18741815ns 328838 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18742270ns 328846 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18742440ns 328849 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18742725ns 328854 1a110850 fd5ff06f jal x0, -44 +18743009ns 328859 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18743293ns 328864 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18743691ns 328871 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18743861ns 328874 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18744316ns 328882 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18744486ns 328885 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18744771ns 328890 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18745055ns 328895 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18745339ns 328900 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18745794ns 328908 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18745964ns 328911 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18746248ns 328916 1a110850 fd5ff06f jal x0, -44 +18746532ns 328921 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18746817ns 328926 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18747214ns 328933 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18747385ns 328936 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18747840ns 328944 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18748010ns 328947 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18748294ns 328952 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18748578ns 328957 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18748863ns 328962 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18749317ns 328970 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18749488ns 328973 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18749772ns 328978 1a110850 fd5ff06f jal x0, -44 +18750056ns 328983 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18750340ns 328988 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18750738ns 328995 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18750908ns 328998 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18751363ns 329006 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18751534ns 329009 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18751818ns 329014 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18752102ns 329019 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18752386ns 329024 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18752841ns 329032 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18753011ns 329035 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18753295ns 329040 1a110850 fd5ff06f jal x0, -44 +18753580ns 329045 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18753864ns 329050 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18754262ns 329057 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18754432ns 329060 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18754887ns 329068 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18755057ns 329071 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18755341ns 329076 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18755626ns 329081 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18755910ns 329086 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18756364ns 329094 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18756535ns 329097 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18756819ns 329102 1a110850 fd5ff06f jal x0, -44 +18757103ns 329107 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18757387ns 329112 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18757785ns 329119 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18757956ns 329122 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18758410ns 329130 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18758581ns 329133 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18758865ns 329138 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18759149ns 329143 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18759433ns 329148 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18759888ns 329156 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18760058ns 329159 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18760343ns 329164 1a110850 fd5ff06f jal x0, -44 +18760627ns 329169 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18760911ns 329174 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18761309ns 329181 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18761479ns 329184 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18761934ns 329192 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18762104ns 329195 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18762389ns 329200 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18762673ns 329205 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18762957ns 329210 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18763411ns 329218 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18763582ns 329221 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18763866ns 329226 1a110850 fd5ff06f jal x0, -44 +18764150ns 329231 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18764434ns 329236 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18764832ns 329243 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18765003ns 329246 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18765457ns 329254 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18765628ns 329257 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18765912ns 329262 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18766196ns 329267 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18766480ns 329272 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18766935ns 329280 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18767106ns 329283 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18767390ns 329288 1a110850 fd5ff06f jal x0, -44 +18767674ns 329293 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18767958ns 329298 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18768356ns 329305 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18768526ns 329308 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18768981ns 329316 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18769152ns 329319 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18769436ns 329324 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18769720ns 329329 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18770004ns 329334 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18770459ns 329342 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18770629ns 329345 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18770913ns 329350 1a110850 fd5ff06f jal x0, -44 +18771197ns 329355 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18771482ns 329360 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18771879ns 329367 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18772050ns 329370 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18772505ns 329378 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18772675ns 329381 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18772959ns 329386 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18773243ns 329391 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18773528ns 329396 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18773982ns 329404 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18774153ns 329407 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18774437ns 329412 1a110850 fd5ff06f jal x0, -44 +18774721ns 329417 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18775005ns 329422 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18775403ns 329429 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18775574ns 329432 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18776028ns 329440 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18776199ns 329443 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18776483ns 329448 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18776767ns 329453 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18777051ns 329458 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18777506ns 329466 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18777676ns 329469 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18777960ns 329474 1a110850 fd5ff06f jal x0, -44 +18778245ns 329479 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18778529ns 329484 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18778927ns 329491 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18779097ns 329494 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18779552ns 329502 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18779722ns 329505 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18780006ns 329510 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18780291ns 329515 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18780575ns 329520 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18781029ns 329528 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18781200ns 329531 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18781484ns 329536 1a110850 fd5ff06f jal x0, -44 +18781768ns 329541 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18782052ns 329546 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18782450ns 329553 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18782621ns 329556 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18783075ns 329564 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18783246ns 329567 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18783530ns 329572 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18783814ns 329577 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18784098ns 329582 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18784553ns 329590 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18784723ns 329593 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18785008ns 329598 1a110850 fd5ff06f jal x0, -44 +18785292ns 329603 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18785576ns 329608 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18785974ns 329615 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18786144ns 329618 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18786599ns 329626 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18786769ns 329629 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18787054ns 329634 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18787338ns 329639 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18787622ns 329644 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18788077ns 329652 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18788247ns 329655 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18788531ns 329660 1a110850 fd5ff06f jal x0, -44 +18788815ns 329665 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18789100ns 329670 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18789497ns 329677 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18789668ns 329680 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18790123ns 329688 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18790293ns 329691 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18790577ns 329696 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18790861ns 329701 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18791146ns 329706 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18791600ns 329714 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18791771ns 329717 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18792055ns 329722 1a110850 fd5ff06f jal x0, -44 +18792339ns 329727 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18792623ns 329732 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18793021ns 329739 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18793191ns 329742 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18793646ns 329750 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18793817ns 329753 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18794101ns 329758 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18794385ns 329763 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18794669ns 329768 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18795124ns 329776 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18795294ns 329779 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18795578ns 329784 1a110850 fd5ff06f jal x0, -44 +18795863ns 329789 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18796147ns 329794 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18796545ns 329801 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18796715ns 329804 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18797170ns 329812 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18797340ns 329815 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18797624ns 329820 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18797909ns 329825 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18798193ns 329830 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18798647ns 329838 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18798818ns 329841 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18799102ns 329846 1a110850 fd5ff06f jal x0, -44 +18799386ns 329851 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18799670ns 329856 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18800068ns 329863 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18800239ns 329866 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18800693ns 329874 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18800864ns 329877 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18801148ns 329882 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18801432ns 329887 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18801716ns 329892 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18802171ns 329900 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18802341ns 329903 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18802626ns 329908 1a110850 fd5ff06f jal x0, -44 +18802910ns 329913 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18803194ns 329918 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18803592ns 329925 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18803762ns 329928 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18804217ns 329936 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18804387ns 329939 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18804672ns 329944 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18804956ns 329949 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18805240ns 329954 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18805695ns 329962 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18805865ns 329965 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18806149ns 329970 1a110850 fd5ff06f jal x0, -44 +18806433ns 329975 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18806717ns 329980 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18807115ns 329987 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18807286ns 329990 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18807740ns 329998 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18807911ns 330001 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18808195ns 330006 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18808479ns 330011 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18808763ns 330016 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18809218ns 330024 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18809389ns 330027 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18809673ns 330032 1a110850 fd5ff06f jal x0, -44 +18809957ns 330037 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18810241ns 330042 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18810639ns 330049 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18810809ns 330052 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18811264ns 330060 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18811435ns 330063 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18811719ns 330068 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18812003ns 330073 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18812287ns 330078 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18812742ns 330086 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18812912ns 330089 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18813196ns 330094 1a110850 fd5ff06f jal x0, -44 +18813480ns 330099 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18813765ns 330104 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18814162ns 330111 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18814333ns 330114 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18814788ns 330122 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18814958ns 330125 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18815242ns 330130 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18815526ns 330135 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18815811ns 330140 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18816265ns 330148 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18816436ns 330151 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18816720ns 330156 1a110850 fd5ff06f jal x0, -44 +18817004ns 330161 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18817288ns 330166 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18817686ns 330173 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18817857ns 330176 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18818311ns 330184 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18818482ns 330187 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18818766ns 330192 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18819050ns 330197 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18819334ns 330202 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18819789ns 330210 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18819959ns 330213 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18820243ns 330218 1a110850 fd5ff06f jal x0, -44 +18820528ns 330223 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18820812ns 330228 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18821210ns 330235 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18821380ns 330238 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18821835ns 330246 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18822005ns 330249 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18822289ns 330254 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18822574ns 330259 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18822858ns 330264 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18823312ns 330272 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18823483ns 330275 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18823767ns 330280 1a110850 fd5ff06f jal x0, -44 +18824051ns 330285 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18824335ns 330290 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18824733ns 330297 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18824904ns 330300 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18825358ns 330308 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18825529ns 330311 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18825813ns 330316 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18826097ns 330321 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18826381ns 330326 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18826836ns 330334 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18827007ns 330337 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18827291ns 330342 1a110850 fd5ff06f jal x0, -44 +18827575ns 330347 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18827859ns 330352 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18828257ns 330359 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18828427ns 330362 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18828882ns 330370 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18829052ns 330373 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18829337ns 330378 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18829621ns 330383 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18829905ns 330388 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18830360ns 330396 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18830530ns 330399 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18830814ns 330404 1a110850 fd5ff06f jal x0, -44 +18831098ns 330409 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18831383ns 330414 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18831780ns 330421 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18831951ns 330424 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18832406ns 330432 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18832576ns 330435 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18832860ns 330440 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18833144ns 330445 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18833429ns 330450 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18833883ns 330458 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18834054ns 330461 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18834338ns 330466 1a110850 fd5ff06f jal x0, -44 +18834622ns 330471 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18834906ns 330476 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18835304ns 330483 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18835474ns 330486 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18835929ns 330494 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18836100ns 330497 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18836384ns 330502 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18836668ns 330507 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18836952ns 330512 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18837407ns 330520 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18837577ns 330523 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18837861ns 330528 1a110850 fd5ff06f jal x0, -44 +18838146ns 330533 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18838430ns 330538 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18838828ns 330545 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18838998ns 330548 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18839453ns 330556 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18839623ns 330559 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18839907ns 330564 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18840192ns 330569 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18840476ns 330574 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18840930ns 330582 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18841101ns 330585 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18841385ns 330590 1a110850 fd5ff06f jal x0, -44 +18841669ns 330595 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18841953ns 330600 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18842351ns 330607 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18842522ns 330610 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18842976ns 330618 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18843147ns 330621 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18843431ns 330626 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18843715ns 330631 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18843999ns 330636 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18844454ns 330644 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18844624ns 330647 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18844909ns 330652 1a110850 fd5ff06f jal x0, -44 +18845193ns 330657 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18845477ns 330662 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18845875ns 330669 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18846045ns 330672 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18846500ns 330680 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18846670ns 330683 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18846955ns 330688 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18847239ns 330693 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18847523ns 330698 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18847978ns 330706 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18848148ns 330709 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18848432ns 330714 1a110850 fd5ff06f jal x0, -44 +18848716ns 330719 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18849000ns 330724 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18849398ns 330731 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18849569ns 330734 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18850023ns 330742 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18850194ns 330745 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18850478ns 330750 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18850762ns 330755 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18851046ns 330760 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18851501ns 330768 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18851672ns 330771 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18851956ns 330776 1a110850 fd5ff06f jal x0, -44 +18852240ns 330781 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18852524ns 330786 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18852922ns 330793 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18853092ns 330796 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18853547ns 330804 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18853718ns 330807 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18854002ns 330812 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18854286ns 330817 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18854570ns 330822 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18855025ns 330830 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18855195ns 330833 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18855479ns 330838 1a110850 fd5ff06f jal x0, -44 +18855763ns 330843 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18856048ns 330848 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18856445ns 330855 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18856616ns 330858 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18857071ns 330866 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18857241ns 330869 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18857525ns 330874 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18857809ns 330879 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18858094ns 330884 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18858548ns 330892 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18858719ns 330895 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18859003ns 330900 1a110850 fd5ff06f jal x0, -44 +18859287ns 330905 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18859571ns 330910 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18859969ns 330917 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18860140ns 330920 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18860594ns 330928 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18860765ns 330931 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18861049ns 330936 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18861333ns 330941 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18861617ns 330946 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18862072ns 330954 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18862242ns 330957 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18862527ns 330962 1a110850 fd5ff06f jal x0, -44 +18862811ns 330967 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18863095ns 330972 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18863493ns 330979 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18863663ns 330982 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18864118ns 330990 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18864288ns 330993 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18864572ns 330998 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18864857ns 331003 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18865141ns 331008 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18865595ns 331016 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18865766ns 331019 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18866050ns 331024 1a110850 fd5ff06f jal x0, -44 +18866334ns 331029 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18866618ns 331034 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18867016ns 331041 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18867187ns 331044 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18867641ns 331052 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18867812ns 331055 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18868096ns 331060 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18868380ns 331065 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18868664ns 331070 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18869119ns 331078 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18869290ns 331081 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18869574ns 331086 1a110850 fd5ff06f jal x0, -44 +18869858ns 331091 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18870142ns 331096 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18870540ns 331103 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18870710ns 331106 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18871165ns 331114 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18871335ns 331117 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18871620ns 331122 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18871904ns 331127 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18872188ns 331132 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18872643ns 331140 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18872813ns 331143 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18873097ns 331148 1a110850 fd5ff06f jal x0, -44 +18873381ns 331153 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18873666ns 331158 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18874063ns 331165 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18874234ns 331168 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18874689ns 331176 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18874859ns 331179 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18875143ns 331184 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18875427ns 331189 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18875712ns 331194 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18876166ns 331202 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18876337ns 331205 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18876621ns 331210 1a110850 fd5ff06f jal x0, -44 +18876905ns 331215 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18877189ns 331220 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18877587ns 331227 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18877757ns 331230 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18878212ns 331238 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18878383ns 331241 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18878667ns 331246 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18878951ns 331251 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18879235ns 331256 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18879690ns 331264 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18879860ns 331267 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18880144ns 331272 1a110850 fd5ff06f jal x0, -44 +18880429ns 331277 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18880713ns 331282 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18881111ns 331289 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18881281ns 331292 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18881736ns 331300 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18881906ns 331303 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18882190ns 331308 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18882475ns 331313 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18882759ns 331318 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18883213ns 331326 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18883384ns 331329 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18883668ns 331334 1a110850 fd5ff06f jal x0, -44 +18883952ns 331339 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18884236ns 331344 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18884634ns 331351 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18884805ns 331354 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18885259ns 331362 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18885430ns 331365 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18885714ns 331370 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18885998ns 331375 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18886282ns 331380 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18886737ns 331388 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18886907ns 331391 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18887192ns 331396 1a110850 fd5ff06f jal x0, -44 +18887476ns 331401 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18887760ns 331406 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18888158ns 331413 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18888328ns 331416 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18888783ns 331424 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18888953ns 331427 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18889238ns 331432 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18889522ns 331437 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18889806ns 331442 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18890261ns 331450 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18890431ns 331453 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18890715ns 331458 1a110850 fd5ff06f jal x0, -44 +18890999ns 331463 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18891283ns 331468 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18891681ns 331475 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18891852ns 331478 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18892306ns 331486 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18892477ns 331489 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18892761ns 331494 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18893045ns 331499 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18893329ns 331504 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18893784ns 331512 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18893955ns 331515 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18894239ns 331520 1a110850 fd5ff06f jal x0, -44 +18894523ns 331525 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18894807ns 331530 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18895205ns 331537 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18895375ns 331540 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18895830ns 331548 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18896001ns 331551 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18896285ns 331556 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18896569ns 331561 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18896853ns 331566 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18897308ns 331574 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18897478ns 331577 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18897762ns 331582 1a110850 fd5ff06f jal x0, -44 +18898047ns 331587 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18898331ns 331592 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18898728ns 331599 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18898899ns 331602 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18899354ns 331610 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18899524ns 331613 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18899808ns 331618 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18900092ns 331623 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18900377ns 331628 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18900831ns 331636 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18901002ns 331639 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18901286ns 331644 1a110850 fd5ff06f jal x0, -44 +18901570ns 331649 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18901854ns 331654 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18902252ns 331661 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18902423ns 331664 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18902877ns 331672 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18903048ns 331675 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18903332ns 331680 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18903616ns 331685 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18903900ns 331690 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18904355ns 331698 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18904525ns 331701 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18904810ns 331706 1a110850 fd5ff06f jal x0, -44 +18905094ns 331711 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18905378ns 331716 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18905776ns 331723 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18905946ns 331726 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18906401ns 331734 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18906571ns 331737 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18906855ns 331742 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18907140ns 331747 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18907424ns 331752 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18907878ns 331760 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18908049ns 331763 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18908333ns 331768 1a110850 fd5ff06f jal x0, -44 +18908617ns 331773 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18908901ns 331778 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18909299ns 331785 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18909470ns 331788 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18909924ns 331796 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18910095ns 331799 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18910379ns 331804 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18910663ns 331809 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18910947ns 331814 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18911402ns 331822 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18911573ns 331825 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18911857ns 331830 1a110850 fd5ff06f jal x0, -44 +18912141ns 331835 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18912425ns 331840 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18912823ns 331847 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18912993ns 331850 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18913448ns 331858 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18913618ns 331861 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18913903ns 331866 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18914187ns 331871 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18914471ns 331876 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18914926ns 331884 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18915096ns 331887 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18915380ns 331892 1a110850 fd5ff06f jal x0, -44 +18915664ns 331897 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18915949ns 331902 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18916346ns 331909 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18916517ns 331912 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18916972ns 331920 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18917142ns 331923 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18917426ns 331928 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18917710ns 331933 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18917995ns 331938 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18918449ns 331946 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18918620ns 331949 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18918904ns 331954 1a110850 fd5ff06f jal x0, -44 +18919188ns 331959 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18919472ns 331964 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18919870ns 331971 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18920040ns 331974 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18920495ns 331982 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18920666ns 331985 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18920950ns 331990 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18921234ns 331995 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18921518ns 332000 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18921973ns 332008 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18922143ns 332011 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18922427ns 332016 1a110850 fd5ff06f jal x0, -44 +18922712ns 332021 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18922996ns 332026 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18923394ns 332033 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18923564ns 332036 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18924019ns 332044 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18924189ns 332047 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18924473ns 332052 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18924758ns 332057 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18925042ns 332062 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18925496ns 332070 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18925667ns 332073 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18925951ns 332078 1a110850 fd5ff06f jal x0, -44 +18926235ns 332083 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18926519ns 332088 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18926917ns 332095 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18927088ns 332098 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18927542ns 332106 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18927713ns 332109 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18927997ns 332114 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18928281ns 332119 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18928565ns 332124 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18929020ns 332132 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18929190ns 332135 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18929475ns 332140 1a110850 fd5ff06f jal x0, -44 +18929759ns 332145 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18930043ns 332150 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18930441ns 332157 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18930611ns 332160 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18931066ns 332168 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18931236ns 332171 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18931521ns 332176 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18931805ns 332181 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18932089ns 332186 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18932544ns 332194 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18932714ns 332197 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18932998ns 332202 1a110850 fd5ff06f jal x0, -44 +18933282ns 332207 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18933567ns 332212 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18933964ns 332219 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18934135ns 332222 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18934589ns 332230 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18934760ns 332233 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18935044ns 332238 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18935328ns 332243 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18935612ns 332248 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18936067ns 332256 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18936238ns 332259 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18936522ns 332264 1a110850 fd5ff06f jal x0, -44 +18936806ns 332269 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18937090ns 332274 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18937488ns 332281 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18937658ns 332284 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18938113ns 332292 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18938284ns 332295 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18938568ns 332300 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18938852ns 332305 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18939136ns 332310 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18939591ns 332318 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18939761ns 332321 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18940045ns 332326 1a110850 fd5ff06f jal x0, -44 +18940330ns 332331 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18940614ns 332336 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18941011ns 332343 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18941182ns 332346 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18941637ns 332354 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18941807ns 332357 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18942091ns 332362 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18942375ns 332367 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18942660ns 332372 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18943114ns 332380 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18943285ns 332383 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18943569ns 332388 1a110850 fd5ff06f jal x0, -44 +18943853ns 332393 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18944137ns 332398 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18944535ns 332405 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18944706ns 332408 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18945160ns 332416 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18945331ns 332419 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18945615ns 332424 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18945899ns 332429 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18946183ns 332434 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18946638ns 332442 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18946808ns 332445 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18947093ns 332450 1a110850 fd5ff06f jal x0, -44 +18947377ns 332455 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18947661ns 332460 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18948059ns 332467 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18948229ns 332470 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18948684ns 332478 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18948854ns 332481 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18949138ns 332486 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18949423ns 332491 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18949707ns 332496 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18950161ns 332504 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18950332ns 332507 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18950616ns 332512 1a110850 fd5ff06f jal x0, -44 +18950900ns 332517 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18951184ns 332522 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18951582ns 332529 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18951753ns 332532 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18952207ns 332540 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18952378ns 332543 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18952662ns 332548 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18952946ns 332553 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18953230ns 332558 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18953685ns 332566 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18953856ns 332569 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18954140ns 332574 1a110850 fd5ff06f jal x0, -44 +18954424ns 332579 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18954708ns 332584 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18955106ns 332591 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18955276ns 332594 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18955731ns 332602 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18955901ns 332605 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18956186ns 332610 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18956470ns 332615 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18956754ns 332620 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18957209ns 332628 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18957379ns 332631 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18957663ns 332636 1a110850 fd5ff06f jal x0, -44 +18957947ns 332641 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18958232ns 332646 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18958629ns 332653 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18958800ns 332656 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18959255ns 332664 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18959425ns 332667 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18959709ns 332672 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18959993ns 332677 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18960278ns 332682 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18960732ns 332690 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18960903ns 332693 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18961187ns 332698 1a110850 fd5ff06f jal x0, -44 +18961471ns 332703 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18961755ns 332708 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18962153ns 332715 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18962323ns 332718 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18962778ns 332726 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18962949ns 332729 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18963233ns 332734 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18963517ns 332739 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18963801ns 332744 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18964256ns 332752 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18964426ns 332755 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18964710ns 332760 1a110850 fd5ff06f jal x0, -44 +18964995ns 332765 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18965279ns 332770 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18965677ns 332777 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18965847ns 332780 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18966302ns 332788 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18966472ns 332791 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18966756ns 332796 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18967041ns 332801 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18967325ns 332806 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18967779ns 332814 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18967950ns 332817 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18968234ns 332822 1a110850 fd5ff06f jal x0, -44 +18968518ns 332827 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18968802ns 332832 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18969200ns 332839 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18969371ns 332842 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18969825ns 332850 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18969996ns 332853 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18970280ns 332858 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18970564ns 332863 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18970848ns 332868 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18971303ns 332876 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18971473ns 332879 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18971758ns 332884 1a110850 fd5ff06f jal x0, -44 +18972042ns 332889 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18972326ns 332894 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18972724ns 332901 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18972894ns 332904 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18973349ns 332912 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18973519ns 332915 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18973804ns 332920 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18974088ns 332925 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18974372ns 332930 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18974827ns 332938 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18974997ns 332941 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18975281ns 332946 1a110850 fd5ff06f jal x0, -44 +18975565ns 332951 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18975850ns 332956 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18976247ns 332963 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18976418ns 332966 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18976872ns 332974 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18977043ns 332977 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18977327ns 332982 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18977611ns 332987 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18977895ns 332992 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18978350ns 333000 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18978521ns 333003 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18978805ns 333008 1a110850 fd5ff06f jal x0, -44 +18979089ns 333013 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18979373ns 333018 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18979771ns 333025 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18979941ns 333028 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18980396ns 333036 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18980567ns 333039 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18980851ns 333044 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18981135ns 333049 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18981419ns 333054 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18981874ns 333062 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18982044ns 333065 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18982328ns 333070 1a110850 fd5ff06f jal x0, -44 +18982613ns 333075 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18982897ns 333080 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18983295ns 333087 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18983465ns 333090 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18983920ns 333098 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18984090ns 333101 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18984374ns 333106 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18984658ns 333111 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18984943ns 333116 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18985397ns 333124 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18985568ns 333127 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18985852ns 333132 1a110850 fd5ff06f jal x0, -44 +18986136ns 333137 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18986420ns 333142 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18986818ns 333149 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18986989ns 333152 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18987443ns 333160 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18987614ns 333163 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18987898ns 333168 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18988182ns 333173 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18988466ns 333178 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18988921ns 333186 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18989091ns 333189 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18989376ns 333194 1a110850 fd5ff06f jal x0, -44 +18989660ns 333199 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18989944ns 333204 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18990342ns 333211 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18990512ns 333214 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18990967ns 333222 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18991137ns 333225 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18991421ns 333230 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18991706ns 333235 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18991990ns 333240 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18992444ns 333248 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18992615ns 333251 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18992899ns 333256 1a110850 fd5ff06f jal x0, -44 +18993183ns 333261 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18993467ns 333266 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18993865ns 333273 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18994036ns 333276 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18994490ns 333284 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18994661ns 333287 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18994945ns 333292 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18995229ns 333297 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18995513ns 333302 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18995968ns 333310 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18996139ns 333313 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18996423ns 333318 1a110850 fd5ff06f jal x0, -44 +18996707ns 333323 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18996991ns 333328 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +18997389ns 333335 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18997559ns 333338 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18998014ns 333346 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +18998184ns 333349 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +18998469ns 333354 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +18998753ns 333359 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +18999037ns 333364 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +18999492ns 333372 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +18999662ns 333375 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +18999946ns 333380 1a110850 fd5ff06f jal x0, -44 +19000230ns 333385 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19000515ns 333390 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19000912ns 333397 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19001083ns 333400 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19001538ns 333408 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19001708ns 333411 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19001992ns 333416 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19002276ns 333421 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19002561ns 333426 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19003015ns 333434 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19003186ns 333437 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19003470ns 333442 1a110850 fd5ff06f jal x0, -44 +19003754ns 333447 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19004038ns 333452 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19004436ns 333459 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19004607ns 333462 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19005061ns 333470 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19005232ns 333473 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19005516ns 333478 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19005800ns 333483 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19006084ns 333488 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19006539ns 333496 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19006709ns 333499 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19006993ns 333504 1a110850 fd5ff06f jal x0, -44 +19007278ns 333509 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19007562ns 333514 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19007960ns 333521 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19008130ns 333524 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19008585ns 333532 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19008755ns 333535 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19009039ns 333540 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19009324ns 333545 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19009608ns 333550 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19010062ns 333558 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19010233ns 333561 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19010517ns 333566 1a110850 fd5ff06f jal x0, -44 +19010801ns 333571 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19011085ns 333576 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19011483ns 333583 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19011654ns 333586 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19012108ns 333594 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19012279ns 333597 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19012563ns 333602 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19012847ns 333607 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19013131ns 333612 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19013586ns 333620 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19013756ns 333623 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19014041ns 333628 1a110850 fd5ff06f jal x0, -44 +19014325ns 333633 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19014609ns 333638 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19015007ns 333645 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19015177ns 333648 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19015632ns 333656 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19015802ns 333659 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19016087ns 333664 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19016371ns 333669 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19016655ns 333674 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19017110ns 333682 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19017280ns 333685 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19017564ns 333690 1a110850 fd5ff06f jal x0, -44 +19017848ns 333695 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19018133ns 333700 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19018530ns 333707 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19018701ns 333710 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19019155ns 333718 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19019326ns 333721 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19019610ns 333726 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19019894ns 333731 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19020178ns 333736 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19020633ns 333744 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19020804ns 333747 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19021088ns 333752 1a110850 fd5ff06f jal x0, -44 +19021372ns 333757 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19021656ns 333762 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19022054ns 333769 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19022224ns 333772 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19022679ns 333780 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19022850ns 333783 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19023134ns 333788 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19023418ns 333793 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19023702ns 333798 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19024157ns 333806 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19024327ns 333809 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19024611ns 333814 1a110850 fd5ff06f jal x0, -44 +19024896ns 333819 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19025180ns 333824 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19025578ns 333831 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19025748ns 333834 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19026203ns 333842 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19026373ns 333845 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19026657ns 333850 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19026941ns 333855 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19027226ns 333860 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19027680ns 333868 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19027851ns 333871 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19028135ns 333876 1a110850 fd5ff06f jal x0, -44 +19028419ns 333881 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19028703ns 333886 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19029101ns 333893 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19029272ns 333896 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19029726ns 333904 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19029897ns 333907 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19030181ns 333912 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19030465ns 333917 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19030749ns 333922 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19031204ns 333930 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19031374ns 333933 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19031659ns 333938 1a110850 fd5ff06f jal x0, -44 +19031943ns 333943 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19032227ns 333948 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19032625ns 333955 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19032795ns 333958 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19033250ns 333966 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19033420ns 333969 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19033704ns 333974 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19033989ns 333979 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19034273ns 333984 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19034727ns 333992 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19034898ns 333995 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19035182ns 334000 1a110850 fd5ff06f jal x0, -44 +19035466ns 334005 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19035750ns 334010 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19036148ns 334017 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19036319ns 334020 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19036773ns 334028 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19036944ns 334031 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19037228ns 334036 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19037512ns 334041 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19037796ns 334046 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19038251ns 334054 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19038422ns 334057 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19038706ns 334062 1a110850 fd5ff06f jal x0, -44 +19038990ns 334067 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19039274ns 334072 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19039672ns 334079 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19039842ns 334082 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19040297ns 334090 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19040467ns 334093 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19040752ns 334098 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19041036ns 334103 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19041320ns 334108 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19041775ns 334116 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19041945ns 334119 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19042229ns 334124 1a110850 fd5ff06f jal x0, -44 +19042513ns 334129 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19042798ns 334134 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19043195ns 334141 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19043366ns 334144 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19043821ns 334152 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19043991ns 334155 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19044275ns 334160 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19044559ns 334165 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19044844ns 334170 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19045298ns 334178 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19045469ns 334181 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19045753ns 334186 1a110850 fd5ff06f jal x0, -44 +19046037ns 334191 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19046321ns 334196 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19046719ns 334203 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19046890ns 334206 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19047344ns 334214 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19047515ns 334217 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19047799ns 334222 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19048083ns 334227 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19048367ns 334232 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19048822ns 334240 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19048992ns 334243 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19049276ns 334248 1a110850 fd5ff06f jal x0, -44 +19049561ns 334253 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19049845ns 334258 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19050243ns 334265 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19050413ns 334268 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19050868ns 334276 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19051038ns 334279 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19051322ns 334284 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19051607ns 334289 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19051891ns 334294 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19052345ns 334302 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19052516ns 334305 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19052800ns 334310 1a110850 fd5ff06f jal x0, -44 +19053084ns 334315 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19053368ns 334320 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19053766ns 334327 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19053937ns 334330 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19054391ns 334338 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19054562ns 334341 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19054846ns 334346 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19055130ns 334351 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19055414ns 334356 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19055869ns 334364 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19056039ns 334367 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19056324ns 334372 1a110850 fd5ff06f jal x0, -44 +19056608ns 334377 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19056892ns 334382 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19057290ns 334389 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19057460ns 334392 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19057915ns 334400 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19058085ns 334403 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19058370ns 334408 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19058654ns 334413 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19058938ns 334418 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19059393ns 334426 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19059563ns 334429 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19059847ns 334434 1a110850 fd5ff06f jal x0, -44 +19060131ns 334439 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19060416ns 334444 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19060813ns 334451 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19060984ns 334454 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19061439ns 334462 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19061609ns 334465 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19061893ns 334470 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19062177ns 334475 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19062461ns 334480 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19062916ns 334488 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19063087ns 334491 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19063371ns 334496 1a110850 fd5ff06f jal x0, -44 +19063655ns 334501 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19063939ns 334506 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19064337ns 334513 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19064507ns 334516 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19064962ns 334524 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19065133ns 334527 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19065417ns 334532 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19065701ns 334537 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19065985ns 334542 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19066440ns 334550 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19066610ns 334553 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19066894ns 334558 1a110850 fd5ff06f jal x0, -44 +19067179ns 334563 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19067463ns 334568 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19067861ns 334575 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19068031ns 334578 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19068486ns 334586 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19068656ns 334589 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19068940ns 334594 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19069224ns 334599 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19069509ns 334604 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19069963ns 334612 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19070134ns 334615 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19070418ns 334620 1a110850 fd5ff06f jal x0, -44 +19070702ns 334625 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19070986ns 334630 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19071384ns 334637 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19071555ns 334640 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19072009ns 334648 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19072180ns 334651 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19072464ns 334656 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19072748ns 334661 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19073032ns 334666 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19073487ns 334674 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19073657ns 334677 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19073942ns 334682 1a110850 fd5ff06f jal x0, -44 +19074226ns 334687 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19074510ns 334692 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19074908ns 334699 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19075078ns 334702 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19075533ns 334710 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19075703ns 334713 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19075987ns 334718 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19076272ns 334723 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19076556ns 334728 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19077010ns 334736 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19077181ns 334739 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19077465ns 334744 1a110850 fd5ff06f jal x0, -44 +19077749ns 334749 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19078033ns 334754 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19078431ns 334761 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19078602ns 334764 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19079056ns 334772 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19079227ns 334775 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19079511ns 334780 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19079795ns 334785 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19080079ns 334790 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19080534ns 334798 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19080705ns 334801 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19080989ns 334806 1a110850 fd5ff06f jal x0, -44 +19081273ns 334811 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19081557ns 334816 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19081955ns 334823 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19082125ns 334826 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19082580ns 334834 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19082751ns 334837 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19083035ns 334842 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19083319ns 334847 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19083603ns 334852 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19084058ns 334860 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19084228ns 334863 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19084512ns 334868 1a110850 fd5ff06f jal x0, -44 +19084796ns 334873 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19085081ns 334878 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19085478ns 334885 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19085649ns 334888 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19086104ns 334896 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19086274ns 334899 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19086558ns 334904 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19086842ns 334909 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19087127ns 334914 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19087581ns 334922 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19087752ns 334925 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19088036ns 334930 1a110850 fd5ff06f jal x0, -44 +19088320ns 334935 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19088604ns 334940 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19089002ns 334947 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19089173ns 334950 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19089627ns 334958 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19089798ns 334961 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19090082ns 334966 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19090366ns 334971 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19090650ns 334976 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19091105ns 334984 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19091275ns 334987 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19091559ns 334992 1a110850 fd5ff06f jal x0, -44 +19091844ns 334997 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19092128ns 335002 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19092526ns 335009 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19092696ns 335012 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19093151ns 335020 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19093321ns 335023 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19093605ns 335028 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19093890ns 335033 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19094174ns 335038 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19094628ns 335046 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19094799ns 335049 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19095083ns 335054 1a110850 fd5ff06f jal x0, -44 +19095367ns 335059 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19095651ns 335064 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19096049ns 335071 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19096220ns 335074 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19096674ns 335082 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19096845ns 335085 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19097129ns 335090 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19097413ns 335095 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19097697ns 335100 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19098152ns 335108 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19098322ns 335111 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19098607ns 335116 1a110850 fd5ff06f jal x0, -44 +19098891ns 335121 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19099175ns 335126 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19099573ns 335133 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19099743ns 335136 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19100198ns 335144 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19100368ns 335147 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19100653ns 335152 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19100937ns 335157 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19101221ns 335162 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19101676ns 335170 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19101846ns 335173 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19102130ns 335178 1a110850 fd5ff06f jal x0, -44 +19102414ns 335183 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19102699ns 335188 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19103096ns 335195 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19103267ns 335198 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19103722ns 335206 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19103892ns 335209 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19104176ns 335214 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19104460ns 335219 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19104744ns 335224 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19105199ns 335232 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19105370ns 335235 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19105654ns 335240 1a110850 fd5ff06f jal x0, -44 +19105938ns 335245 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19106222ns 335250 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19106620ns 335257 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19106790ns 335260 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19107245ns 335268 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19107416ns 335271 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19107700ns 335276 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19107984ns 335281 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19108268ns 335286 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19108723ns 335294 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19108893ns 335297 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19109177ns 335302 1a110850 fd5ff06f jal x0, -44 +19109462ns 335307 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19109746ns 335312 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19110144ns 335319 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19110314ns 335322 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19110769ns 335330 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19110939ns 335333 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19111223ns 335338 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19111507ns 335343 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19111792ns 335348 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19112246ns 335356 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19112417ns 335359 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19112701ns 335364 1a110850 fd5ff06f jal x0, -44 +19112985ns 335369 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19113269ns 335374 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19113667ns 335381 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19113838ns 335384 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19114292ns 335392 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19114463ns 335395 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19114747ns 335400 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19115031ns 335405 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19115315ns 335410 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19115770ns 335418 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19115940ns 335421 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19116225ns 335426 1a110850 fd5ff06f jal x0, -44 +19116509ns 335431 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19116793ns 335436 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19117191ns 335443 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19117361ns 335446 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19117816ns 335454 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19117986ns 335457 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19118271ns 335462 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19118555ns 335467 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19118839ns 335472 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19119293ns 335480 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19119464ns 335483 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19119748ns 335488 1a110850 fd5ff06f jal x0, -44 +19120032ns 335493 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19120316ns 335498 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19120714ns 335505 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19120885ns 335508 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19121339ns 335516 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19121510ns 335519 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19121794ns 335524 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19122078ns 335529 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19122362ns 335534 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19122817ns 335542 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19122988ns 335545 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19123272ns 335550 1a110850 fd5ff06f jal x0, -44 +19123556ns 335555 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19123840ns 335560 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19124238ns 335567 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19124408ns 335570 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19124863ns 335578 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19125034ns 335581 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19125318ns 335586 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19125602ns 335591 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19125886ns 335596 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19126341ns 335604 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19126511ns 335607 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19126795ns 335612 1a110850 fd5ff06f jal x0, -44 +19127079ns 335617 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19127364ns 335622 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19127761ns 335629 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19127932ns 335632 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19128387ns 335640 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19128557ns 335643 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19128841ns 335648 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19129125ns 335653 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19129410ns 335658 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19129864ns 335666 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19130035ns 335669 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19130319ns 335674 1a110850 fd5ff06f jal x0, -44 +19130603ns 335679 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19130887ns 335684 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19131285ns 335691 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19131456ns 335694 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19131910ns 335702 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19132081ns 335705 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19132365ns 335710 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19132649ns 335715 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19132933ns 335720 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19133388ns 335728 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19133558ns 335731 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19133842ns 335736 1a110850 fd5ff06f jal x0, -44 +19134127ns 335741 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19134411ns 335746 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19134809ns 335753 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19134979ns 335756 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19135434ns 335764 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19135604ns 335767 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19135888ns 335772 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19136173ns 335777 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19136457ns 335782 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19136911ns 335790 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19137082ns 335793 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19137366ns 335798 1a110850 fd5ff06f jal x0, -44 +19137650ns 335803 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19137934ns 335808 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19138332ns 335815 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19138503ns 335818 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19138957ns 335826 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19139128ns 335829 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19139412ns 335834 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19139696ns 335839 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19139980ns 335844 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19140435ns 335852 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19140605ns 335855 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19140890ns 335860 1a110850 fd5ff06f jal x0, -44 +19141174ns 335865 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19141458ns 335870 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19141856ns 335877 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19142026ns 335880 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19142481ns 335888 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19142651ns 335891 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19142936ns 335896 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19143220ns 335901 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19143504ns 335906 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19143959ns 335914 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19144129ns 335917 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19144413ns 335922 1a110850 fd5ff06f jal x0, -44 +19144697ns 335927 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19144982ns 335932 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19145379ns 335939 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19145550ns 335942 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19146005ns 335950 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19146175ns 335953 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19146459ns 335958 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19146743ns 335963 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19147027ns 335968 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19147482ns 335976 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19147653ns 335979 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19147937ns 335984 1a110850 fd5ff06f jal x0, -44 +19148221ns 335989 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19148505ns 335994 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19148903ns 336001 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19149073ns 336004 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19149528ns 336012 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19149699ns 336015 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19149983ns 336020 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19150267ns 336025 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19150551ns 336030 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19151006ns 336038 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19151176ns 336041 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19151460ns 336046 1a110850 fd5ff06f jal x0, -44 +19151745ns 336051 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19152029ns 336056 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19152427ns 336063 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19152597ns 336066 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19153052ns 336074 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19153222ns 336077 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19153506ns 336082 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19153791ns 336087 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19154075ns 336092 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19154529ns 336100 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19154700ns 336103 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19154984ns 336108 1a110850 fd5ff06f jal x0, -44 +19155268ns 336113 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19155552ns 336118 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19155950ns 336125 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19156121ns 336128 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19156575ns 336136 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19156746ns 336139 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19157030ns 336144 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19157314ns 336149 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19157598ns 336154 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19158053ns 336162 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19158223ns 336165 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19158508ns 336170 1a110850 fd5ff06f jal x0, -44 +19158792ns 336175 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19159076ns 336180 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19159474ns 336187 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19159644ns 336190 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19160099ns 336198 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19160269ns 336201 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19160554ns 336206 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19160838ns 336211 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19161122ns 336216 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19161576ns 336224 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19161747ns 336227 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19162031ns 336232 1a110850 fd5ff06f jal x0, -44 +19162315ns 336237 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19162599ns 336242 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19162997ns 336249 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19163168ns 336252 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19163622ns 336260 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19163793ns 336263 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19164077ns 336268 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19164361ns 336273 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19164645ns 336278 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19165100ns 336286 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19165271ns 336289 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19165555ns 336294 1a110850 fd5ff06f jal x0, -44 +19165839ns 336299 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19166123ns 336304 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19166521ns 336311 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19166691ns 336314 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19167146ns 336322 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19167317ns 336325 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19167601ns 336330 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19167885ns 336335 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19168169ns 336340 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19168624ns 336348 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19168794ns 336351 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19169078ns 336356 1a110850 fd5ff06f jal x0, -44 +19169362ns 336361 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19169647ns 336366 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19170044ns 336373 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19170215ns 336376 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19170670ns 336384 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19170840ns 336387 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19171124ns 336392 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19171408ns 336397 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19171693ns 336402 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19172147ns 336410 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19172318ns 336413 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19172602ns 336418 1a110850 fd5ff06f jal x0, -44 +19172886ns 336423 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19173170ns 336428 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19173568ns 336435 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19173739ns 336438 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19174193ns 336446 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19174364ns 336449 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19174648ns 336454 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19174932ns 336459 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19175216ns 336464 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19175671ns 336472 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19175841ns 336475 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19176125ns 336480 1a110850 fd5ff06f jal x0, -44 +19176410ns 336485 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19176694ns 336490 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19177092ns 336497 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19177262ns 336500 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19177717ns 336508 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19177887ns 336511 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19178171ns 336516 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19178456ns 336521 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19178740ns 336526 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19179194ns 336534 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19179365ns 336537 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19179649ns 336542 1a110850 fd5ff06f jal x0, -44 +19179933ns 336547 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19180217ns 336552 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19180615ns 336559 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19180786ns 336562 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19181240ns 336570 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19181411ns 336573 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19181695ns 336578 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19181979ns 336583 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19182263ns 336588 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19182718ns 336596 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19182888ns 336599 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19183173ns 336604 1a110850 fd5ff06f jal x0, -44 +19183457ns 336609 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19183741ns 336614 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19184139ns 336621 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19184309ns 336624 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19184764ns 336632 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19184934ns 336635 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19185219ns 336640 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19185503ns 336645 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19185787ns 336650 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19186242ns 336658 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19186412ns 336661 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19186696ns 336666 1a110850 fd5ff06f jal x0, -44 +19186980ns 336671 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19187265ns 336676 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19187662ns 336683 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19187833ns 336686 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19188288ns 336694 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19188458ns 336697 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19188742ns 336702 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19189026ns 336707 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19189311ns 336712 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19189765ns 336720 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19189936ns 336723 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19190220ns 336728 1a110850 fd5ff06f jal x0, -44 +19190504ns 336733 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19190788ns 336738 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19191186ns 336745 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19191356ns 336748 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19191811ns 336756 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19191982ns 336759 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19192266ns 336764 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19192550ns 336769 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19192834ns 336774 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19193289ns 336782 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19193459ns 336785 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19193743ns 336790 1a110850 fd5ff06f jal x0, -44 +19194028ns 336795 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19194312ns 336800 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19194710ns 336807 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19194880ns 336810 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19195335ns 336818 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19195505ns 336821 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19195789ns 336826 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19196074ns 336831 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19196358ns 336836 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19196812ns 336844 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19196983ns 336847 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19197267ns 336852 1a110850 fd5ff06f jal x0, -44 +19197551ns 336857 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19197835ns 336862 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19198233ns 336869 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19198404ns 336872 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19198858ns 336880 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19199029ns 336883 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19199313ns 336888 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19199597ns 336893 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19199881ns 336898 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19200336ns 336906 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19200506ns 336909 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19200791ns 336914 1a110850 fd5ff06f jal x0, -44 +19201075ns 336919 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19201359ns 336924 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19201757ns 336931 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19201927ns 336934 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19202382ns 336942 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19202552ns 336945 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19202837ns 336950 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19203121ns 336955 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19203405ns 336960 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19203859ns 336968 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19204030ns 336971 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19204314ns 336976 1a110850 fd5ff06f jal x0, -44 +19204598ns 336981 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19204882ns 336986 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19205280ns 336993 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19205451ns 336996 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19205905ns 337004 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19206076ns 337007 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19206360ns 337012 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19206644ns 337017 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19206928ns 337022 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19207383ns 337030 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19207554ns 337033 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19207838ns 337038 1a110850 fd5ff06f jal x0, -44 +19208122ns 337043 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19208406ns 337048 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19208804ns 337055 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19208974ns 337058 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19209429ns 337066 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19209600ns 337069 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19209884ns 337074 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19210168ns 337079 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19210452ns 337084 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19210907ns 337092 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19211077ns 337095 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19211361ns 337100 1a110850 fd5ff06f jal x0, -44 +19211645ns 337105 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19211930ns 337110 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19212327ns 337117 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19212498ns 337120 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19212953ns 337128 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19213123ns 337131 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19213407ns 337136 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19213691ns 337141 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19213976ns 337146 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19214430ns 337154 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19214601ns 337157 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19214885ns 337162 1a110850 fd5ff06f jal x0, -44 +19215169ns 337167 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19215453ns 337172 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19215851ns 337179 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19216022ns 337182 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19216476ns 337190 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19216647ns 337193 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19216931ns 337198 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19217215ns 337203 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19217499ns 337208 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19217954ns 337216 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19218124ns 337219 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19218408ns 337224 1a110850 fd5ff06f jal x0, -44 +19218693ns 337229 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19218977ns 337234 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19219375ns 337241 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19219545ns 337244 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19220000ns 337252 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19220170ns 337255 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19220454ns 337260 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19220739ns 337265 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19221023ns 337270 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19221477ns 337278 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19221648ns 337281 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19221932ns 337286 1a110850 fd5ff06f jal x0, -44 +19222216ns 337291 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19222500ns 337296 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19222898ns 337303 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19223069ns 337306 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19223523ns 337314 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19223694ns 337317 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19223978ns 337322 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19224262ns 337327 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19224546ns 337332 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19225001ns 337340 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19225171ns 337343 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19225456ns 337348 1a110850 fd5ff06f jal x0, -44 +19225740ns 337353 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19226024ns 337358 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19226422ns 337365 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19226592ns 337368 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19227047ns 337376 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19227217ns 337379 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19227502ns 337384 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19227786ns 337389 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19228070ns 337394 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19228525ns 337402 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19228695ns 337405 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19228979ns 337410 1a110850 fd5ff06f jal x0, -44 +19229263ns 337415 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19229548ns 337420 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19229945ns 337427 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19230116ns 337430 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19230571ns 337438 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19230741ns 337441 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19231025ns 337446 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19231309ns 337451 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19231594ns 337456 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19232048ns 337464 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19232219ns 337467 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19232503ns 337472 1a110850 fd5ff06f jal x0, -44 +19232787ns 337477 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19233071ns 337482 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19233469ns 337489 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19233639ns 337492 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19234094ns 337500 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19234265ns 337503 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19234549ns 337508 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19234833ns 337513 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19235117ns 337518 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19235572ns 337526 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19235742ns 337529 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19236026ns 337534 1a110850 fd5ff06f jal x0, -44 +19236311ns 337539 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19236595ns 337544 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19236993ns 337551 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19237163ns 337554 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19237618ns 337562 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19237788ns 337565 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19238072ns 337570 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19238357ns 337575 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19238641ns 337580 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19239095ns 337588 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19239266ns 337591 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19239550ns 337596 1a110850 fd5ff06f jal x0, -44 +19239834ns 337601 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19240118ns 337606 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19240516ns 337613 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19240687ns 337616 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19241141ns 337624 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19241312ns 337627 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19241596ns 337632 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19241880ns 337637 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19242164ns 337642 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19242619ns 337650 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19242789ns 337653 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19243074ns 337658 1a110850 fd5ff06f jal x0, -44 +19243358ns 337663 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19243642ns 337668 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19244040ns 337675 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19244210ns 337678 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19244665ns 337686 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19244835ns 337689 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19245120ns 337694 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19245404ns 337699 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19245688ns 337704 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19246143ns 337712 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19246313ns 337715 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19246597ns 337720 1a110850 fd5ff06f jal x0, -44 +19246881ns 337725 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19247165ns 337730 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19247563ns 337737 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19247734ns 337740 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19248188ns 337748 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19248359ns 337751 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19248643ns 337756 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19248927ns 337761 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19249211ns 337766 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19249666ns 337774 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19249837ns 337777 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19250121ns 337782 1a110850 fd5ff06f jal x0, -44 +19250405ns 337787 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19250689ns 337792 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19251087ns 337799 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19251257ns 337802 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19251712ns 337810 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19251883ns 337813 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19252167ns 337818 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19252451ns 337823 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19252735ns 337828 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19253190ns 337836 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19253360ns 337839 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19253644ns 337844 1a110850 fd5ff06f jal x0, -44 +19253928ns 337849 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19254213ns 337854 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19254610ns 337861 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19254781ns 337864 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19255236ns 337872 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19255406ns 337875 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19255690ns 337880 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19255974ns 337885 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19256259ns 337890 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19256713ns 337898 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19256884ns 337901 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19257168ns 337906 1a110850 fd5ff06f jal x0, -44 +19257452ns 337911 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19257736ns 337916 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19258134ns 337923 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19258305ns 337926 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19258759ns 337934 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19258930ns 337937 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19259214ns 337942 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19259498ns 337947 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19259782ns 337952 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19260237ns 337960 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19260407ns 337963 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19260691ns 337968 1a110850 fd5ff06f jal x0, -44 +19260976ns 337973 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19261260ns 337978 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19261658ns 337985 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19261828ns 337988 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19262283ns 337996 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19262453ns 337999 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19262737ns 338004 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19263022ns 338009 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19263306ns 338014 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19263760ns 338022 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19263931ns 338025 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19264215ns 338030 1a110850 fd5ff06f jal x0, -44 +19264499ns 338035 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19264783ns 338040 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19265181ns 338047 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19265352ns 338050 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19265806ns 338058 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19265977ns 338061 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19266261ns 338066 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19266545ns 338071 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19266829ns 338076 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19267284ns 338084 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19267455ns 338087 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19267739ns 338092 1a110850 fd5ff06f jal x0, -44 +19268023ns 338097 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19268307ns 338102 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19268705ns 338109 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19268875ns 338112 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19269330ns 338120 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19269500ns 338123 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19269785ns 338128 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19270069ns 338133 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19270353ns 338138 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19270808ns 338146 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19270978ns 338149 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19271262ns 338154 1a110850 fd5ff06f jal x0, -44 +19271546ns 338159 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19271831ns 338164 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19272228ns 338171 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19272399ns 338174 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19272854ns 338182 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19273024ns 338185 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19273308ns 338190 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19273592ns 338195 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19273877ns 338200 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19274331ns 338208 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19274502ns 338211 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19274786ns 338216 1a110850 fd5ff06f jal x0, -44 +19275070ns 338221 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19275354ns 338226 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19275752ns 338233 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19275922ns 338236 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19276377ns 338244 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19276548ns 338247 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19276832ns 338252 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19277116ns 338257 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19277400ns 338262 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19277855ns 338270 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19278025ns 338273 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19278309ns 338278 1a110850 fd5ff06f jal x0, -44 +19278594ns 338283 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19278878ns 338288 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19279276ns 338295 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19279446ns 338298 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19279901ns 338306 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19280071ns 338309 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19280355ns 338314 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19280640ns 338319 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19280924ns 338324 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19281378ns 338332 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19281549ns 338335 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19281833ns 338340 1a110850 fd5ff06f jal x0, -44 +19282117ns 338345 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19282401ns 338350 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19282799ns 338357 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19282970ns 338360 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19283424ns 338368 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19283595ns 338371 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19283879ns 338376 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19284163ns 338381 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19284447ns 338386 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19284902ns 338394 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19285072ns 338397 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19285357ns 338402 1a110850 fd5ff06f jal x0, -44 +19285641ns 338407 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19285925ns 338412 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19286323ns 338419 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19286493ns 338422 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19286948ns 338430 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19287118ns 338433 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19287403ns 338438 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19287687ns 338443 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19287971ns 338448 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19288426ns 338456 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19288596ns 338459 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19288880ns 338464 1a110850 fd5ff06f jal x0, -44 +19289164ns 338469 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19289448ns 338474 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19289846ns 338481 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19290017ns 338484 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19290471ns 338492 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19290642ns 338495 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19290926ns 338500 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19291210ns 338505 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19291494ns 338510 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19291949ns 338518 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19292120ns 338521 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19292404ns 338526 1a110850 fd5ff06f jal x0, -44 +19292688ns 338531 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19292972ns 338536 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19293370ns 338543 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19293540ns 338546 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19293995ns 338554 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19294166ns 338557 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19294450ns 338562 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19294734ns 338567 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19295018ns 338572 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19295473ns 338580 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19295643ns 338583 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19295927ns 338588 1a110850 fd5ff06f jal x0, -44 +19296211ns 338593 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19296496ns 338598 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19296893ns 338605 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19297064ns 338608 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19297519ns 338616 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19297689ns 338619 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19297973ns 338624 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19298257ns 338629 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19298542ns 338634 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19298996ns 338642 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19299167ns 338645 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19299451ns 338650 1a110850 fd5ff06f jal x0, -44 +19299735ns 338655 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19300019ns 338660 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19300417ns 338667 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19300588ns 338670 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19301042ns 338678 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19301213ns 338681 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19301497ns 338686 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19301781ns 338691 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19302065ns 338696 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19302520ns 338704 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19302690ns 338707 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19302975ns 338712 1a110850 fd5ff06f jal x0, -44 +19303259ns 338717 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19303543ns 338722 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19303941ns 338729 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19304111ns 338732 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19304566ns 338740 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19304736ns 338743 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19305020ns 338748 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19305305ns 338753 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19305589ns 338758 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19306043ns 338766 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19306214ns 338769 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19306498ns 338774 1a110850 fd5ff06f jal x0, -44 +19306782ns 338779 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19307066ns 338784 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19307464ns 338791 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19307635ns 338794 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19308089ns 338802 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19308260ns 338805 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19308544ns 338810 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19308828ns 338815 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19309112ns 338820 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19309567ns 338828 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19309738ns 338831 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19310022ns 338836 1a110850 fd5ff06f jal x0, -44 +19310306ns 338841 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19310590ns 338846 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19310988ns 338853 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19311158ns 338856 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19311613ns 338864 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19311783ns 338867 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19312068ns 338872 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19312352ns 338877 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19312636ns 338882 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19313091ns 338890 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19313261ns 338893 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19313545ns 338898 1a110850 fd5ff06f jal x0, -44 +19313829ns 338903 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19314114ns 338908 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19314511ns 338915 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19314682ns 338918 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19315137ns 338926 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19315307ns 338929 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19315591ns 338934 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19315875ns 338939 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19316160ns 338944 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19316614ns 338952 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19316785ns 338955 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19317069ns 338960 1a110850 fd5ff06f jal x0, -44 +19317353ns 338965 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19317637ns 338970 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19318035ns 338977 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19318205ns 338980 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19318660ns 338988 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19318831ns 338991 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19319115ns 338996 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19319399ns 339001 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19319683ns 339006 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19320138ns 339014 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19320308ns 339017 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19320592ns 339022 1a110850 fd5ff06f jal x0, -44 +19320877ns 339027 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19321161ns 339032 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19321559ns 339039 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19321729ns 339042 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19322184ns 339050 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19322354ns 339053 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19322638ns 339058 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19322923ns 339063 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19323207ns 339068 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19323661ns 339076 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19323832ns 339079 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19324116ns 339084 1a110850 fd5ff06f jal x0, -44 +19324400ns 339089 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19324684ns 339094 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19325082ns 339101 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19325253ns 339104 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19325707ns 339112 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19325878ns 339115 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19326162ns 339120 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19326446ns 339125 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19326730ns 339130 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19327185ns 339138 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19327355ns 339141 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19327640ns 339146 1a110850 fd5ff06f jal x0, -44 +19327924ns 339151 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19328208ns 339156 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19328606ns 339163 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19328776ns 339166 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19329231ns 339174 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19329401ns 339177 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19329686ns 339182 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19329970ns 339187 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19330254ns 339192 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19330709ns 339200 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19330879ns 339203 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19331163ns 339208 1a110850 fd5ff06f jal x0, -44 +19331447ns 339213 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19331731ns 339218 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19332129ns 339225 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19332300ns 339228 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19332754ns 339236 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19332925ns 339239 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19333209ns 339244 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19333493ns 339249 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19333777ns 339254 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19334232ns 339262 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19334403ns 339265 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19334687ns 339270 1a110850 fd5ff06f jal x0, -44 +19334971ns 339275 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19335255ns 339280 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19335653ns 339287 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19335823ns 339290 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19336278ns 339298 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19336449ns 339301 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19336733ns 339306 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19337017ns 339311 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19337301ns 339316 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19337756ns 339324 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19337926ns 339327 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19338210ns 339332 1a110850 fd5ff06f jal x0, -44 +19338495ns 339337 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19338779ns 339342 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19339176ns 339349 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19339347ns 339352 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19339802ns 339360 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19339972ns 339363 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19340256ns 339368 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19340540ns 339373 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19340825ns 339378 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19341279ns 339386 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19341450ns 339389 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19341734ns 339394 1a110850 fd5ff06f jal x0, -44 +19342018ns 339399 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19342302ns 339404 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19342700ns 339411 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19342871ns 339414 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19343325ns 339422 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19343496ns 339425 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19343780ns 339430 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19344064ns 339435 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19344348ns 339440 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19344803ns 339448 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19344973ns 339451 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19345258ns 339456 1a110850 fd5ff06f jal x0, -44 +19345542ns 339461 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19345826ns 339466 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19346224ns 339473 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19346394ns 339476 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19346849ns 339484 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19347019ns 339487 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19347303ns 339492 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19347588ns 339497 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19347872ns 339502 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19348326ns 339510 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19348497ns 339513 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19348781ns 339518 1a110850 fd5ff06f jal x0, -44 +19349065ns 339523 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19349349ns 339528 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19349747ns 339535 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19349918ns 339538 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19350372ns 339546 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19350543ns 339549 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19350827ns 339554 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19351111ns 339559 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19351395ns 339564 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19351850ns 339572 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19352021ns 339575 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19352305ns 339580 1a110850 fd5ff06f jal x0, -44 +19352589ns 339585 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19352873ns 339590 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19353271ns 339597 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19353441ns 339600 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19353896ns 339608 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19354066ns 339611 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19354351ns 339616 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19354635ns 339621 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19354919ns 339626 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19355374ns 339634 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19355544ns 339637 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19355828ns 339642 1a110850 fd5ff06f jal x0, -44 +19356112ns 339647 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19356397ns 339652 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19356794ns 339659 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19356965ns 339662 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19357420ns 339670 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19357590ns 339673 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19357874ns 339678 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19358158ns 339683 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19358443ns 339688 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19358897ns 339696 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19359068ns 339699 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19359352ns 339704 1a110850 fd5ff06f jal x0, -44 +19359636ns 339709 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19359920ns 339714 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19360318ns 339721 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19360488ns 339724 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19360943ns 339732 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19361114ns 339735 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19361398ns 339740 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19361682ns 339745 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19361966ns 339750 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19362421ns 339758 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19362591ns 339761 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19362875ns 339766 1a110850 fd5ff06f jal x0, -44 +19363160ns 339771 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19363444ns 339776 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19363842ns 339783 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19364012ns 339786 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19364467ns 339794 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19364637ns 339797 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19364921ns 339802 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19365206ns 339807 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19365490ns 339812 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19365944ns 339820 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19366115ns 339823 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19366399ns 339828 1a110850 fd5ff06f jal x0, -44 +19366683ns 339833 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19366967ns 339838 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19367365ns 339845 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19367536ns 339848 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19367990ns 339856 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19368161ns 339859 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19368445ns 339864 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19368729ns 339869 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19369013ns 339874 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19369468ns 339882 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19369638ns 339885 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19369923ns 339890 1a110850 fd5ff06f jal x0, -44 +19370207ns 339895 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19370491ns 339900 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19370889ns 339907 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19371059ns 339910 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19371514ns 339918 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19371684ns 339921 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19371969ns 339926 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19372253ns 339931 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19372537ns 339936 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19372992ns 339944 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19373162ns 339947 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19373446ns 339952 1a110850 fd5ff06f jal x0, -44 +19373730ns 339957 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19374015ns 339962 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19374412ns 339969 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19374583ns 339972 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19375037ns 339980 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19375208ns 339983 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19375492ns 339988 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19375776ns 339993 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19376060ns 339998 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19376515ns 340006 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19376686ns 340009 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19376970ns 340014 1a110850 fd5ff06f jal x0, -44 +19377254ns 340019 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19377538ns 340024 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19377936ns 340031 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19378106ns 340034 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19378561ns 340042 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19378732ns 340045 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19379016ns 340050 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19379300ns 340055 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19379584ns 340060 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19380039ns 340068 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19380209ns 340071 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19380493ns 340076 1a110850 fd5ff06f jal x0, -44 +19380778ns 340081 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19381062ns 340086 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19381459ns 340093 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19381630ns 340096 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19382085ns 340104 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19382255ns 340107 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19382539ns 340112 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19382823ns 340117 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19383108ns 340122 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19383562ns 340130 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19383733ns 340133 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19384017ns 340138 1a110850 fd5ff06f jal x0, -44 +19384301ns 340143 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19384585ns 340148 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19384983ns 340155 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19385154ns 340158 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19385608ns 340166 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19385779ns 340169 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19386063ns 340174 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19386347ns 340179 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19386631ns 340184 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19387086ns 340192 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19387256ns 340195 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19387541ns 340200 1a110850 fd5ff06f jal x0, -44 +19387825ns 340205 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19388109ns 340210 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19388507ns 340217 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19388677ns 340220 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19389132ns 340228 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19389302ns 340231 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19389586ns 340236 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19389871ns 340241 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19390155ns 340246 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19390609ns 340254 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19390780ns 340257 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19391064ns 340262 1a110850 fd5ff06f jal x0, -44 +19391348ns 340267 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19391632ns 340272 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19392030ns 340279 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19392201ns 340282 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19392655ns 340290 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19392826ns 340293 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19393110ns 340298 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19393394ns 340303 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19393678ns 340308 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19394133ns 340316 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19394304ns 340319 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19394588ns 340324 1a110850 fd5ff06f jal x0, -44 +19394872ns 340329 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19395156ns 340334 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19395554ns 340341 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19395724ns 340344 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19396179ns 340352 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19396349ns 340355 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19396634ns 340360 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19396918ns 340365 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19397202ns 340370 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19397657ns 340378 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19397827ns 340381 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19398111ns 340386 1a110850 fd5ff06f jal x0, -44 +19398395ns 340391 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19398680ns 340396 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19399077ns 340403 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19399248ns 340406 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19399703ns 340414 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19399873ns 340417 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19400157ns 340422 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19400441ns 340427 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19400726ns 340432 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19401180ns 340440 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19401351ns 340443 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19401635ns 340448 1a110850 fd5ff06f jal x0, -44 +19401919ns 340453 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19402203ns 340458 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19402601ns 340465 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19402771ns 340468 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19403226ns 340476 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19403397ns 340479 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19403681ns 340484 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19403965ns 340489 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19404249ns 340494 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19404704ns 340502 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19404874ns 340505 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19405158ns 340510 1a110850 fd5ff06f jal x0, -44 +19405443ns 340515 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19405727ns 340520 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19406125ns 340527 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19406295ns 340530 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19406750ns 340538 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19406920ns 340541 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19407204ns 340546 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19407489ns 340551 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19407773ns 340556 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19408227ns 340564 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19408398ns 340567 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19408682ns 340572 1a110850 fd5ff06f jal x0, -44 +19408966ns 340577 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19409250ns 340582 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19409648ns 340589 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19409819ns 340592 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19410273ns 340600 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19410444ns 340603 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19410728ns 340608 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19411012ns 340613 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19411296ns 340618 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19411751ns 340626 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19411921ns 340629 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19412206ns 340634 1a110850 fd5ff06f jal x0, -44 +19412490ns 340639 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19412774ns 340644 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19413172ns 340651 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19413342ns 340654 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19413797ns 340662 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19413967ns 340665 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19414252ns 340670 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19414536ns 340675 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19414820ns 340680 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19415275ns 340688 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19415445ns 340691 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19415729ns 340696 1a110850 fd5ff06f jal x0, -44 +19416013ns 340701 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19416298ns 340706 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19416695ns 340713 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19416866ns 340716 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19417320ns 340724 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19417491ns 340727 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19417775ns 340732 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19418059ns 340737 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19418343ns 340742 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19418798ns 340750 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19418969ns 340753 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19419253ns 340758 1a110850 fd5ff06f jal x0, -44 +19419537ns 340763 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19419821ns 340768 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19420219ns 340775 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19420389ns 340778 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19420844ns 340786 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19421015ns 340789 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19421299ns 340794 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19421583ns 340799 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19421867ns 340804 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19422322ns 340812 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19422492ns 340815 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19422776ns 340820 1a110850 fd5ff06f jal x0, -44 +19423061ns 340825 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19423345ns 340830 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19423743ns 340837 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19423913ns 340840 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19424368ns 340848 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19424538ns 340851 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19424822ns 340856 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19425106ns 340861 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19425391ns 340866 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19425845ns 340874 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19426016ns 340877 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19426300ns 340882 1a110850 fd5ff06f jal x0, -44 +19426584ns 340887 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19426868ns 340892 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19427266ns 340899 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19427437ns 340902 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19427891ns 340910 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19428062ns 340913 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19428346ns 340918 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19428630ns 340923 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19428914ns 340928 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19429369ns 340936 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19429539ns 340939 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19429824ns 340944 1a110850 fd5ff06f jal x0, -44 +19430108ns 340949 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19430392ns 340954 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19430790ns 340961 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19430960ns 340964 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19431415ns 340972 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19431585ns 340975 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19431869ns 340980 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19432154ns 340985 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19432438ns 340990 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19432892ns 340998 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19433063ns 341001 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19433347ns 341006 1a110850 fd5ff06f jal x0, -44 +19433631ns 341011 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19433915ns 341016 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19434313ns 341023 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19434484ns 341026 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19434938ns 341034 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19435109ns 341037 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19435393ns 341042 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19435677ns 341047 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19435961ns 341052 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19436416ns 341060 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19436587ns 341063 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19436871ns 341068 1a110850 fd5ff06f jal x0, -44 +19437155ns 341073 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19437439ns 341078 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19437837ns 341085 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19438007ns 341088 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19438462ns 341096 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19438632ns 341099 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19438917ns 341104 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19439201ns 341109 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19439485ns 341114 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19439940ns 341122 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19440110ns 341125 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19440394ns 341130 1a110850 fd5ff06f jal x0, -44 +19440678ns 341135 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19440963ns 341140 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19441360ns 341147 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19441531ns 341150 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19441986ns 341158 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19442156ns 341161 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19442440ns 341166 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19442724ns 341171 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19443009ns 341176 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19443463ns 341184 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19443634ns 341187 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19443918ns 341192 1a110850 fd5ff06f jal x0, -44 +19444202ns 341197 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19444486ns 341202 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19444884ns 341209 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19445055ns 341212 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19445509ns 341220 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19445680ns 341223 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19445964ns 341228 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19446248ns 341233 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19446532ns 341238 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19446987ns 341246 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19447157ns 341249 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19447441ns 341254 1a110850 fd5ff06f jal x0, -44 +19447726ns 341259 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19448010ns 341264 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19448408ns 341271 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19448578ns 341274 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19449033ns 341282 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19449203ns 341285 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19449487ns 341290 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19449772ns 341295 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19450056ns 341300 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19450510ns 341308 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19450681ns 341311 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19450965ns 341316 1a110850 fd5ff06f jal x0, -44 +19451249ns 341321 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19451533ns 341326 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19451931ns 341333 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19452102ns 341336 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19452556ns 341344 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19452727ns 341347 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19453011ns 341352 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19453295ns 341357 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19453579ns 341362 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19454034ns 341370 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19454204ns 341373 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19454489ns 341378 1a110850 fd5ff06f jal x0, -44 +19454773ns 341383 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19455057ns 341388 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19455455ns 341395 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19455625ns 341398 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19456080ns 341406 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19456250ns 341409 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19456535ns 341414 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19456819ns 341419 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19457103ns 341424 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19457558ns 341432 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19457728ns 341435 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19458012ns 341440 1a110850 fd5ff06f jal x0, -44 +19458296ns 341445 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19458581ns 341450 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19458978ns 341457 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19459149ns 341460 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19459603ns 341468 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19459774ns 341471 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19460058ns 341476 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19460342ns 341481 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19460626ns 341486 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19461081ns 341494 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19461252ns 341497 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19461536ns 341502 1a110850 fd5ff06f jal x0, -44 +19461820ns 341507 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19462104ns 341512 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19462502ns 341519 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19462672ns 341522 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19463127ns 341530 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19463298ns 341533 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19463582ns 341538 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19463866ns 341543 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19464150ns 341548 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19464605ns 341556 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19464775ns 341559 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19465059ns 341564 1a110850 fd5ff06f jal x0, -44 +19465344ns 341569 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19465628ns 341574 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19466026ns 341581 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19466196ns 341584 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19466651ns 341592 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19466821ns 341595 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19467105ns 341600 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19467389ns 341605 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19467674ns 341610 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19468128ns 341618 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19468299ns 341621 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19468583ns 341626 1a110850 fd5ff06f jal x0, -44 +19468867ns 341631 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19469151ns 341636 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19469549ns 341643 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19469720ns 341646 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19470174ns 341654 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19470345ns 341657 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19470629ns 341662 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19470913ns 341667 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19471197ns 341672 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19471652ns 341680 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19471822ns 341683 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19472107ns 341688 1a110850 fd5ff06f jal x0, -44 +19472391ns 341693 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19472675ns 341698 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19473073ns 341705 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19473243ns 341708 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19473698ns 341716 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19473868ns 341719 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19474152ns 341724 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19474437ns 341729 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19474721ns 341734 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19475175ns 341742 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19475346ns 341745 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19475630ns 341750 1a110850 fd5ff06f jal x0, -44 +19475914ns 341755 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19476198ns 341760 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19476596ns 341767 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19476767ns 341770 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19477221ns 341778 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19477392ns 341781 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19477676ns 341786 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19477960ns 341791 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19478244ns 341796 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19478699ns 341804 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19478870ns 341807 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19479154ns 341812 1a110850 fd5ff06f jal x0, -44 +19479438ns 341817 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19479722ns 341822 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19480120ns 341829 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19480290ns 341832 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19480745ns 341840 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19480915ns 341843 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19481200ns 341848 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19481484ns 341853 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19481768ns 341858 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19482223ns 341866 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19482393ns 341869 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19482677ns 341874 1a110850 fd5ff06f jal x0, -44 +19482961ns 341879 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19483246ns 341884 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19483643ns 341891 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19483814ns 341894 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19484269ns 341902 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19484439ns 341905 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19484723ns 341910 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19485007ns 341915 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19485292ns 341920 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19485746ns 341928 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19485917ns 341931 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19486201ns 341936 1a110850 fd5ff06f jal x0, -44 +19486485ns 341941 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19486769ns 341946 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19487167ns 341953 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19487338ns 341956 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19487792ns 341964 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19487963ns 341967 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19488247ns 341972 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19488531ns 341977 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19488815ns 341982 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19489270ns 341990 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19489440ns 341993 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19489724ns 341998 1a110850 fd5ff06f jal x0, -44 +19490009ns 342003 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19490293ns 342008 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19490691ns 342015 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19490861ns 342018 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19491316ns 342026 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19491486ns 342029 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19491770ns 342034 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19492055ns 342039 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19492339ns 342044 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19492793ns 342052 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19492964ns 342055 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19493248ns 342060 1a110850 fd5ff06f jal x0, -44 +19493532ns 342065 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19493816ns 342070 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19494214ns 342077 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19494385ns 342080 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19494839ns 342088 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19495010ns 342091 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19495294ns 342096 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19495578ns 342101 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19495862ns 342106 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19496317ns 342114 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19496487ns 342117 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19496772ns 342122 1a110850 fd5ff06f jal x0, -44 +19497056ns 342127 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19497340ns 342132 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19497738ns 342139 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19497908ns 342142 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19498363ns 342150 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19498533ns 342153 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19498818ns 342158 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19499102ns 342163 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19499386ns 342168 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19499841ns 342176 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19500011ns 342179 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19500295ns 342184 1a110850 fd5ff06f jal x0, -44 +19500579ns 342189 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19500864ns 342194 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19501261ns 342201 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19501432ns 342204 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19501887ns 342212 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19502057ns 342215 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19502341ns 342220 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19502625ns 342225 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19502909ns 342230 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19503364ns 342238 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19503535ns 342241 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19503819ns 342246 1a110850 fd5ff06f jal x0, -44 +19504103ns 342251 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19504387ns 342256 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19504785ns 342263 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19504955ns 342266 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19505410ns 342274 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19505581ns 342277 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19505865ns 342282 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19506149ns 342287 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19506433ns 342292 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19506888ns 342300 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19507058ns 342303 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19507342ns 342308 1a110850 fd5ff06f jal x0, -44 +19507627ns 342313 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19507911ns 342318 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19508309ns 342325 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19508479ns 342328 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19508934ns 342336 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19509104ns 342339 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19509388ns 342344 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19509672ns 342349 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19509957ns 342354 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19510411ns 342362 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19510582ns 342365 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19510866ns 342370 1a110850 fd5ff06f jal x0, -44 +19511150ns 342375 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19511434ns 342380 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19511832ns 342387 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19512003ns 342390 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19512457ns 342398 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19512628ns 342401 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19512912ns 342406 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19513196ns 342411 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19513480ns 342416 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19513935ns 342424 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19514105ns 342427 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19514390ns 342432 1a110850 fd5ff06f jal x0, -44 +19514674ns 342437 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19514958ns 342442 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19515356ns 342449 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19515526ns 342452 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19515981ns 342460 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19516151ns 342463 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19516435ns 342468 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19516720ns 342473 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19517004ns 342478 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19517458ns 342486 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19517629ns 342489 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19517913ns 342494 1a110850 fd5ff06f jal x0, -44 +19518197ns 342499 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19518481ns 342504 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19518879ns 342511 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19519050ns 342514 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19519504ns 342522 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19519675ns 342525 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19519959ns 342530 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19520243ns 342535 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19520527ns 342540 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19520982ns 342548 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19521153ns 342551 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19521437ns 342556 1a110850 fd5ff06f jal x0, -44 +19521721ns 342561 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19522005ns 342566 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19522403ns 342573 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19522573ns 342576 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19523028ns 342584 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19523199ns 342587 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19523483ns 342592 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19523767ns 342597 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19524051ns 342602 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19524506ns 342610 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19524676ns 342613 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19524960ns 342618 1a110850 fd5ff06f jal x0, -44 +19525244ns 342623 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19525529ns 342628 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19525926ns 342635 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19526097ns 342638 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19526552ns 342646 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19526722ns 342649 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19527006ns 342654 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19527290ns 342659 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19527575ns 342664 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19528029ns 342672 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19528200ns 342675 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19528484ns 342680 1a110850 fd5ff06f jal x0, -44 +19528768ns 342685 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19529052ns 342690 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19529450ns 342697 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19529621ns 342700 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19530075ns 342708 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19530246ns 342711 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19530530ns 342716 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19530814ns 342721 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19531098ns 342726 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19531553ns 342734 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19531723ns 342737 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19532007ns 342742 1a110850 fd5ff06f jal x0, -44 +19532292ns 342747 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19532576ns 342752 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19532974ns 342759 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19533144ns 342762 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19533599ns 342770 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19533769ns 342773 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19534053ns 342778 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19534338ns 342783 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19534622ns 342788 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19535076ns 342796 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19535247ns 342799 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19535531ns 342804 1a110850 fd5ff06f jal x0, -44 +19535815ns 342809 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19536099ns 342814 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19536497ns 342821 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19536668ns 342824 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19537122ns 342832 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19537293ns 342835 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19537577ns 342840 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19537861ns 342845 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19538145ns 342850 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19538600ns 342858 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19538770ns 342861 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19539055ns 342866 1a110850 fd5ff06f jal x0, -44 +19539339ns 342871 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19539623ns 342876 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19540021ns 342883 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19540191ns 342886 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19540646ns 342894 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19540816ns 342897 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19541101ns 342902 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19541385ns 342907 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19541669ns 342912 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19542124ns 342920 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19542294ns 342923 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19542578ns 342928 1a110850 fd5ff06f jal x0, -44 +19542862ns 342933 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19543147ns 342938 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19543544ns 342945 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19543715ns 342948 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19544170ns 342956 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19544340ns 342959 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19544624ns 342964 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19544908ns 342969 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19545192ns 342974 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19545647ns 342982 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19545818ns 342985 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19546102ns 342990 1a110850 fd5ff06f jal x0, -44 +19546386ns 342995 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19546670ns 343000 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19547068ns 343007 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19547238ns 343010 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19547693ns 343018 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19547864ns 343021 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19548148ns 343026 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19548432ns 343031 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19548716ns 343036 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19549171ns 343044 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19549341ns 343047 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19549625ns 343052 1a110850 fd5ff06f jal x0, -44 +19549910ns 343057 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19550194ns 343062 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19550592ns 343069 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19550762ns 343072 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19551217ns 343080 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19551387ns 343083 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19551671ns 343088 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19551955ns 343093 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19552240ns 343098 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19552694ns 343106 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19552865ns 343109 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19553149ns 343114 1a110850 fd5ff06f jal x0, -44 +19553433ns 343119 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19553717ns 343124 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19554115ns 343131 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19554286ns 343134 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19554740ns 343142 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19554911ns 343145 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19555195ns 343150 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19555479ns 343155 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19555763ns 343160 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19556218ns 343168 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19556388ns 343171 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19556673ns 343176 1a110850 fd5ff06f jal x0, -44 +19556957ns 343181 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19557241ns 343186 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19557639ns 343193 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19557809ns 343196 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19558264ns 343204 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19558434ns 343207 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19558719ns 343212 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19559003ns 343217 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19559287ns 343222 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19559741ns 343230 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19559912ns 343233 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19560196ns 343238 1a110850 fd5ff06f jal x0, -44 +19560480ns 343243 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19560764ns 343248 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19561162ns 343255 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19561333ns 343258 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19561787ns 343266 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19561958ns 343269 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19562242ns 343274 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19562526ns 343279 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19562810ns 343284 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19563265ns 343292 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19563436ns 343295 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19563720ns 343300 1a110850 fd5ff06f jal x0, -44 +19564004ns 343305 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19564288ns 343310 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19564686ns 343317 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19564856ns 343320 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19565311ns 343328 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19565482ns 343331 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19565766ns 343336 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19566050ns 343341 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19566334ns 343346 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19566789ns 343354 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19566959ns 343357 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19567243ns 343362 1a110850 fd5ff06f jal x0, -44 +19567527ns 343367 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19567812ns 343372 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19568209ns 343379 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19568380ns 343382 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19568835ns 343390 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19569005ns 343393 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19569289ns 343398 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19569573ns 343403 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19569858ns 343408 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19570312ns 343416 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19570483ns 343419 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19570767ns 343424 1a110850 fd5ff06f jal x0, -44 +19571051ns 343429 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19571335ns 343434 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19571733ns 343441 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19571904ns 343444 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19572358ns 343452 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19572529ns 343455 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19572813ns 343460 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19573097ns 343465 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19573381ns 343470 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19573836ns 343478 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19574006ns 343481 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19574290ns 343486 1a110850 fd5ff06f jal x0, -44 +19574575ns 343491 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19574859ns 343496 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19575257ns 343503 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19575427ns 343506 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19575882ns 343514 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19576052ns 343517 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19576336ns 343522 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19576621ns 343527 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19576905ns 343532 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19577359ns 343540 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19577530ns 343543 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19577814ns 343548 1a110850 fd5ff06f jal x0, -44 +19578098ns 343553 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19578382ns 343558 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19578780ns 343565 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19578951ns 343568 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19579405ns 343576 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19579576ns 343579 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19579860ns 343584 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19580144ns 343589 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19580428ns 343594 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19580883ns 343602 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19581053ns 343605 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19581338ns 343610 1a110850 fd5ff06f jal x0, -44 +19581622ns 343615 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19581906ns 343620 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19582304ns 343627 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19582474ns 343630 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19582929ns 343638 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19583099ns 343641 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19583384ns 343646 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19583668ns 343651 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19583952ns 343656 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19584407ns 343664 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19584577ns 343667 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19584861ns 343672 1a110850 fd5ff06f jal x0, -44 +19585145ns 343677 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19585430ns 343682 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19585827ns 343689 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19585998ns 343692 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19586453ns 343700 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19586623ns 343703 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19586907ns 343708 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19587191ns 343713 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19587475ns 343718 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19587930ns 343726 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19588101ns 343729 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19588385ns 343734 1a110850 fd5ff06f jal x0, -44 +19588669ns 343739 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19588953ns 343744 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19589351ns 343751 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19589521ns 343754 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19589976ns 343762 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19590147ns 343765 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19590431ns 343770 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19590715ns 343775 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19590999ns 343780 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19591454ns 343788 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19591624ns 343791 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19591908ns 343796 1a110850 fd5ff06f jal x0, -44 +19592193ns 343801 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19592477ns 343806 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19592875ns 343813 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19593045ns 343816 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19593500ns 343824 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19593670ns 343827 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19593954ns 343832 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19594239ns 343837 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19594523ns 343842 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19594977ns 343850 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19595148ns 343853 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19595432ns 343858 1a110850 fd5ff06f jal x0, -44 +19595716ns 343863 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19596000ns 343868 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19596398ns 343875 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19596569ns 343878 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19597023ns 343886 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19597194ns 343889 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19597478ns 343894 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19597762ns 343899 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19598046ns 343904 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19598501ns 343912 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19598671ns 343915 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19598956ns 343920 1a110850 fd5ff06f jal x0, -44 +19599240ns 343925 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19599524ns 343930 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19599922ns 343937 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19600092ns 343940 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19600547ns 343948 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19600717ns 343951 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19601002ns 343956 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19601286ns 343961 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19601570ns 343966 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19602024ns 343974 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19602195ns 343977 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19602479ns 343982 1a110850 fd5ff06f jal x0, -44 +19602763ns 343987 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19603047ns 343992 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19603445ns 343999 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19603616ns 344002 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19604070ns 344010 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19604241ns 344013 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19604525ns 344018 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19604809ns 344023 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19605093ns 344028 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19605548ns 344036 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19605719ns 344039 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19606003ns 344044 1a110850 fd5ff06f jal x0, -44 +19606287ns 344049 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19606571ns 344054 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19606969ns 344061 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19607139ns 344064 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19607594ns 344072 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19607765ns 344075 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19608049ns 344080 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19608333ns 344085 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19608617ns 344090 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19609072ns 344098 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19609242ns 344101 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19609526ns 344106 1a110850 fd5ff06f jal x0, -44 +19609810ns 344111 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19610095ns 344116 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19610492ns 344123 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19610663ns 344126 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19611118ns 344134 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19611288ns 344137 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19611572ns 344142 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19611856ns 344147 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19612141ns 344152 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19612595ns 344160 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19612766ns 344163 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19613050ns 344168 1a110850 fd5ff06f jal x0, -44 +19613334ns 344173 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19613618ns 344178 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19614016ns 344185 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19614187ns 344188 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19614641ns 344196 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19614812ns 344199 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19615096ns 344204 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19615380ns 344209 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19615664ns 344214 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19616119ns 344222 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19616289ns 344225 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19616573ns 344230 1a110850 fd5ff06f jal x0, -44 +19616858ns 344235 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19617142ns 344240 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19617540ns 344247 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19617710ns 344250 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19618165ns 344258 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19618335ns 344261 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19618619ns 344266 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19618904ns 344271 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19619188ns 344276 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19619642ns 344284 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19619813ns 344287 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19620097ns 344292 1a110850 fd5ff06f jal x0, -44 +19620381ns 344297 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19620665ns 344302 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19621063ns 344309 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19621234ns 344312 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19621688ns 344320 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19621859ns 344323 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19622143ns 344328 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19622427ns 344333 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19622711ns 344338 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19623166ns 344346 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19623336ns 344349 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19623621ns 344354 1a110850 fd5ff06f jal x0, -44 +19623905ns 344359 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19624189ns 344364 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19624587ns 344371 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19624757ns 344374 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19625212ns 344382 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19625382ns 344385 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19625667ns 344390 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19625951ns 344395 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19626235ns 344400 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19626690ns 344408 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19626860ns 344411 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19627144ns 344416 1a110850 fd5ff06f jal x0, -44 +19627428ns 344421 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19627713ns 344426 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19628110ns 344433 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19628281ns 344436 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19628736ns 344444 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19628906ns 344447 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19629190ns 344452 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19629474ns 344457 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19629759ns 344462 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19630213ns 344470 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19630384ns 344473 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19630668ns 344478 1a110850 fd5ff06f jal x0, -44 +19630952ns 344483 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19631236ns 344488 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19631634ns 344495 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19631804ns 344498 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19632259ns 344506 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19632430ns 344509 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19632714ns 344514 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19632998ns 344519 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19633282ns 344524 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19633737ns 344532 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19633907ns 344535 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19634191ns 344540 1a110850 fd5ff06f jal x0, -44 +19634476ns 344545 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19634760ns 344550 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19635158ns 344557 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19635328ns 344560 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19635783ns 344568 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19635953ns 344571 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19636237ns 344576 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19636522ns 344581 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19636806ns 344586 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19637260ns 344594 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19637431ns 344597 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19637715ns 344602 1a110850 fd5ff06f jal x0, -44 +19637999ns 344607 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19638283ns 344612 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19638681ns 344619 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19638852ns 344622 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19639306ns 344630 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19639477ns 344633 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19639761ns 344638 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19640045ns 344643 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19640329ns 344648 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19640784ns 344656 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19640954ns 344659 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19641239ns 344664 1a110850 fd5ff06f jal x0, -44 +19641523ns 344669 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19641807ns 344674 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19642205ns 344681 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19642375ns 344684 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19642830ns 344692 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19643000ns 344695 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19643285ns 344700 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19643569ns 344705 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19643853ns 344710 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19644307ns 344718 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19644478ns 344721 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19644762ns 344726 1a110850 fd5ff06f jal x0, -44 +19645046ns 344731 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19645330ns 344736 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19645728ns 344743 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19645899ns 344746 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19646353ns 344754 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19646524ns 344757 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19646808ns 344762 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19647092ns 344767 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19647376ns 344772 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19647831ns 344780 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19648002ns 344783 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19648286ns 344788 1a110850 fd5ff06f jal x0, -44 +19648570ns 344793 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19648854ns 344798 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19649252ns 344805 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19649422ns 344808 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19649877ns 344816 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19650048ns 344819 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19650332ns 344824 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19650616ns 344829 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19650900ns 344834 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19651355ns 344842 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19651525ns 344845 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19651809ns 344850 1a110850 fd5ff06f jal x0, -44 +19652093ns 344855 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19652378ns 344860 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19652775ns 344867 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19652946ns 344870 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19653401ns 344878 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19653571ns 344881 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19653855ns 344886 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19654139ns 344891 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19654424ns 344896 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19654878ns 344904 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19655049ns 344907 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19655333ns 344912 1a110850 fd5ff06f jal x0, -44 +19655617ns 344917 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19655901ns 344922 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19656299ns 344929 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19656470ns 344932 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19656924ns 344940 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19657095ns 344943 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19657379ns 344948 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19657663ns 344953 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19657947ns 344958 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19658402ns 344966 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19658572ns 344969 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19658856ns 344974 1a110850 fd5ff06f jal x0, -44 +19659141ns 344979 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19659425ns 344984 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19659823ns 344991 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19659993ns 344994 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19660448ns 345002 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19660618ns 345005 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19660902ns 345010 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19661187ns 345015 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19661471ns 345020 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19661925ns 345028 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19662096ns 345031 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19662380ns 345036 1a110850 fd5ff06f jal x0, -44 +19662664ns 345041 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19662948ns 345046 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19663346ns 345053 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19663517ns 345056 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19663971ns 345064 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19664142ns 345067 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19664426ns 345072 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19664710ns 345077 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19664994ns 345082 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19665449ns 345090 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19665619ns 345093 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19665904ns 345098 1a110850 fd5ff06f jal x0, -44 +19666188ns 345103 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19666472ns 345108 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19666870ns 345115 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19667040ns 345118 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19667495ns 345126 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19667665ns 345129 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19667950ns 345134 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19668234ns 345139 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19668518ns 345144 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19668973ns 345152 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19669143ns 345155 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19669427ns 345160 1a110850 fd5ff06f jal x0, -44 +19669711ns 345165 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19669996ns 345170 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19670393ns 345177 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19670564ns 345180 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19671019ns 345188 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19671189ns 345191 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19671473ns 345196 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19671757ns 345201 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19672042ns 345206 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19672496ns 345214 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19672667ns 345217 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19672951ns 345222 1a110850 fd5ff06f jal x0, -44 +19673235ns 345227 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19673519ns 345232 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19673917ns 345239 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19674087ns 345242 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19674542ns 345250 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19674713ns 345253 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19674997ns 345258 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19675281ns 345263 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19675565ns 345268 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19676020ns 345276 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19676190ns 345279 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19676474ns 345284 1a110850 fd5ff06f jal x0, -44 +19676759ns 345289 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19677043ns 345294 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19677441ns 345301 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19677611ns 345304 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19678066ns 345312 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19678236ns 345315 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19678520ns 345320 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19678805ns 345325 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19679089ns 345330 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19679543ns 345338 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19679714ns 345341 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19679998ns 345346 1a110850 fd5ff06f jal x0, -44 +19680282ns 345351 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19680566ns 345356 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19680964ns 345363 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19681135ns 345366 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19681589ns 345374 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19681760ns 345377 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19682044ns 345382 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19682328ns 345387 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19682612ns 345392 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19683067ns 345400 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19683237ns 345403 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19683522ns 345408 1a110850 fd5ff06f jal x0, -44 +19683806ns 345413 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19684090ns 345418 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19684488ns 345425 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19684658ns 345428 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19685113ns 345436 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19685283ns 345439 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19685568ns 345444 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19685852ns 345449 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19686136ns 345454 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19686591ns 345462 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19686761ns 345465 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19687045ns 345470 1a110850 fd5ff06f jal x0, -44 +19687329ns 345475 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19687613ns 345480 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19688011ns 345487 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19688182ns 345490 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19688636ns 345498 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19688807ns 345501 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19689091ns 345506 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19689375ns 345511 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19689659ns 345516 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19690114ns 345524 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19690285ns 345527 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19690569ns 345532 1a110850 fd5ff06f jal x0, -44 +19690853ns 345537 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19691137ns 345542 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19691535ns 345549 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19691705ns 345552 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19692160ns 345560 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19692331ns 345563 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19692615ns 345568 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19692899ns 345573 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19693183ns 345578 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19693638ns 345586 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19693808ns 345589 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19694092ns 345594 1a110850 fd5ff06f jal x0, -44 +19694376ns 345599 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19694661ns 345604 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19695058ns 345611 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19695229ns 345614 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19695684ns 345622 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19695854ns 345625 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19696138ns 345630 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19696422ns 345635 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19696707ns 345640 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19697161ns 345648 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19697332ns 345651 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19697616ns 345656 1a110850 fd5ff06f jal x0, -44 +19697900ns 345661 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19698184ns 345666 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19698582ns 345673 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19698753ns 345676 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19699207ns 345684 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19699378ns 345687 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19699662ns 345692 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19699946ns 345697 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19700230ns 345702 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19700685ns 345710 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19700855ns 345713 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19701139ns 345718 1a110850 fd5ff06f jal x0, -44 +19701424ns 345723 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19701708ns 345728 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19702106ns 345735 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19702276ns 345738 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19702731ns 345746 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19702901ns 345749 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19703185ns 345754 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19703470ns 345759 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19703754ns 345764 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19704208ns 345772 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19704379ns 345775 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19704663ns 345780 1a110850 fd5ff06f jal x0, -44 +19704947ns 345785 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19705231ns 345790 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19705629ns 345797 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19705800ns 345800 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19706254ns 345808 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19706425ns 345811 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19706709ns 345816 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19706993ns 345821 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19707277ns 345826 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19707732ns 345834 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19707903ns 345837 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19708187ns 345842 1a110850 fd5ff06f jal x0, -44 +19708471ns 345847 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19708755ns 345852 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19709153ns 345859 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19709323ns 345862 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19709778ns 345870 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19709948ns 345873 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19710233ns 345878 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19710517ns 345883 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19710801ns 345888 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19711256ns 345896 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19711426ns 345899 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19711710ns 345904 1a110850 fd5ff06f jal x0, -44 +19711994ns 345909 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19712279ns 345914 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19712676ns 345921 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19712847ns 345924 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19713302ns 345932 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19713472ns 345935 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19713756ns 345940 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19714040ns 345945 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19714325ns 345950 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19714779ns 345958 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19714950ns 345961 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19715234ns 345966 1a110850 fd5ff06f jal x0, -44 +19715518ns 345971 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19715802ns 345976 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19716200ns 345983 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19716370ns 345986 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19716825ns 345994 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19716996ns 345997 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19717280ns 346002 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19717564ns 346007 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19717848ns 346012 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19718303ns 346020 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19718473ns 346023 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19718757ns 346028 1a110850 fd5ff06f jal x0, -44 +19719042ns 346033 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19719326ns 346038 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19719724ns 346045 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19719894ns 346048 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19720349ns 346056 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19720519ns 346059 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19720803ns 346064 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19721088ns 346069 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19721372ns 346074 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19721826ns 346082 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19721997ns 346085 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19722281ns 346090 1a110850 fd5ff06f jal x0, -44 +19722565ns 346095 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19722849ns 346100 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19723247ns 346107 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19723418ns 346110 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19723872ns 346118 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19724043ns 346121 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19724327ns 346126 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19724611ns 346131 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19724895ns 346136 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19725350ns 346144 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19725520ns 346147 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19725805ns 346152 1a110850 fd5ff06f jal x0, -44 +19726089ns 346157 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19726373ns 346162 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19726771ns 346169 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19726941ns 346172 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19727396ns 346180 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19727566ns 346183 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19727851ns 346188 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19728135ns 346193 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19728419ns 346198 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19728874ns 346206 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19729044ns 346209 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19729328ns 346214 1a110850 fd5ff06f jal x0, -44 +19729612ns 346219 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19729896ns 346224 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19730294ns 346231 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19730465ns 346234 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19730919ns 346242 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19731090ns 346245 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19731374ns 346250 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19731658ns 346255 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19731942ns 346260 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19732397ns 346268 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19732568ns 346271 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19732852ns 346276 1a110850 fd5ff06f jal x0, -44 +19733136ns 346281 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19733420ns 346286 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19733818ns 346293 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19733988ns 346296 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19734443ns 346304 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19734614ns 346307 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19734898ns 346312 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19735182ns 346317 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19735466ns 346322 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19735921ns 346330 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19736091ns 346333 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19736375ns 346338 1a110850 fd5ff06f jal x0, -44 +19736659ns 346343 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19736944ns 346348 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19737341ns 346355 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19737512ns 346358 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19737967ns 346366 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19738137ns 346369 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19738421ns 346374 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19738705ns 346379 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19738990ns 346384 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19739444ns 346392 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19739615ns 346395 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19739899ns 346400 1a110850 fd5ff06f jal x0, -44 +19740183ns 346405 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19740467ns 346410 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19740865ns 346417 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19741036ns 346420 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19741490ns 346428 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19741661ns 346431 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19741945ns 346436 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19742229ns 346441 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19742513ns 346446 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19742968ns 346454 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19743138ns 346457 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19743423ns 346462 1a110850 fd5ff06f jal x0, -44 +19743707ns 346467 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19743991ns 346472 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19744389ns 346479 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19744559ns 346482 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19745014ns 346490 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19745184ns 346493 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19745468ns 346498 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19745753ns 346503 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19746037ns 346508 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19746491ns 346516 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19746662ns 346519 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19746946ns 346524 1a110850 fd5ff06f jal x0, -44 +19747230ns 346529 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19747514ns 346534 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19747912ns 346541 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19748083ns 346544 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19748537ns 346552 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19748708ns 346555 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19748992ns 346560 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19749276ns 346565 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19749560ns 346570 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19750015ns 346578 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19750186ns 346581 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19750470ns 346586 1a110850 fd5ff06f jal x0, -44 +19750754ns 346591 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19751038ns 346596 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19751436ns 346603 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19751606ns 346606 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19752061ns 346614 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19752231ns 346617 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19752516ns 346622 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19752800ns 346627 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19753084ns 346632 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19753539ns 346640 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19753709ns 346643 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19753993ns 346648 1a110850 fd5ff06f jal x0, -44 +19754277ns 346653 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19754562ns 346658 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19754959ns 346665 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19755130ns 346668 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19755585ns 346676 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19755755ns 346679 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19756039ns 346684 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19756323ns 346689 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19756608ns 346694 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19757062ns 346702 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19757233ns 346705 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19757517ns 346710 1a110850 fd5ff06f jal x0, -44 +19757801ns 346715 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19758085ns 346720 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19758483ns 346727 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19758653ns 346730 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19759108ns 346738 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19759279ns 346741 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19759563ns 346746 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19759847ns 346751 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19760131ns 346756 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19760586ns 346764 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19760756ns 346767 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19761040ns 346772 1a110850 fd5ff06f jal x0, -44 +19761325ns 346777 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19761609ns 346782 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19762007ns 346789 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19762177ns 346792 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19762632ns 346800 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19762802ns 346803 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19763086ns 346808 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19763371ns 346813 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19763655ns 346818 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19764109ns 346826 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19764280ns 346829 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19764564ns 346834 1a110850 fd5ff06f jal x0, -44 +19764848ns 346839 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19765132ns 346844 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19765530ns 346851 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19765701ns 346854 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19766155ns 346862 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19766326ns 346865 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19766610ns 346870 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19766894ns 346875 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19767178ns 346880 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19767633ns 346888 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19767803ns 346891 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19768088ns 346896 1a110850 fd5ff06f jal x0, -44 +19768372ns 346901 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19768656ns 346906 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19769054ns 346913 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19769224ns 346916 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19769679ns 346924 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19769849ns 346927 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19770134ns 346932 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19770418ns 346937 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19770702ns 346942 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19771157ns 346950 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19771327ns 346953 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19771611ns 346958 1a110850 fd5ff06f jal x0, -44 +19771895ns 346963 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19772179ns 346968 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19772577ns 346975 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19772748ns 346978 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19773202ns 346986 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19773373ns 346989 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19773657ns 346994 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19773941ns 346999 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19774225ns 347004 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19774680ns 347012 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19774851ns 347015 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19775135ns 347020 1a110850 fd5ff06f jal x0, -44 +19775419ns 347025 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19775703ns 347030 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19776101ns 347037 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19776271ns 347040 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19776726ns 347048 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19776897ns 347051 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19777181ns 347056 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19777465ns 347061 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19777749ns 347066 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19778204ns 347074 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19778374ns 347077 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19778658ns 347082 1a110850 fd5ff06f jal x0, -44 +19778943ns 347087 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19779227ns 347092 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19779624ns 347099 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19779795ns 347102 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19780250ns 347110 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19780420ns 347113 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19780704ns 347118 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19780988ns 347123 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19781273ns 347128 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19781727ns 347136 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19781898ns 347139 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19782182ns 347144 1a110850 fd5ff06f jal x0, -44 +19782466ns 347149 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19782750ns 347154 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19783148ns 347161 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19783319ns 347164 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19783773ns 347172 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19783944ns 347175 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19784228ns 347180 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19784512ns 347185 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19784796ns 347190 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19785251ns 347198 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19785421ns 347201 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19785706ns 347206 1a110850 fd5ff06f jal x0, -44 +19785990ns 347211 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19786274ns 347216 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19786672ns 347223 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19786842ns 347226 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19787297ns 347234 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19787467ns 347237 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19787751ns 347242 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19788036ns 347247 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19788320ns 347252 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19788774ns 347260 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19788945ns 347263 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19789229ns 347268 1a110850 fd5ff06f jal x0, -44 +19789513ns 347273 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19789797ns 347278 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19790195ns 347285 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19790366ns 347288 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19790820ns 347296 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19790991ns 347299 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19791275ns 347304 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19791559ns 347309 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19791843ns 347314 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19792298ns 347322 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19792469ns 347325 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19792753ns 347330 1a110850 fd5ff06f jal x0, -44 +19793037ns 347335 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19793321ns 347340 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19793719ns 347347 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19793889ns 347350 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19794344ns 347358 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19794514ns 347361 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19794799ns 347366 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19795083ns 347371 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19795367ns 347376 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19795822ns 347384 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19795992ns 347387 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19796276ns 347392 1a110850 fd5ff06f jal x0, -44 +19796560ns 347397 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19796845ns 347402 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19797242ns 347409 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19797413ns 347412 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19797868ns 347420 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19798038ns 347423 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19798322ns 347428 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19798606ns 347433 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19798891ns 347438 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19799345ns 347446 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19799516ns 347449 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19799800ns 347454 1a110850 fd5ff06f jal x0, -44 +19800084ns 347459 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19800368ns 347464 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19800766ns 347471 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19800936ns 347474 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19801391ns 347482 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19801562ns 347485 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19801846ns 347490 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19802130ns 347495 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19802414ns 347500 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19802869ns 347508 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19803039ns 347511 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19803323ns 347516 1a110850 fd5ff06f jal x0, -44 +19803608ns 347521 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19803892ns 347526 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19804290ns 347533 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19804460ns 347536 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19804915ns 347544 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19805085ns 347547 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19805369ns 347552 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19805654ns 347557 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19805938ns 347562 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19806392ns 347570 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19806563ns 347573 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19806847ns 347578 1a110850 fd5ff06f jal x0, -44 +19807131ns 347583 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19807415ns 347588 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19807813ns 347595 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19807984ns 347598 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19808438ns 347606 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19808609ns 347609 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19808893ns 347614 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19809177ns 347619 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19809461ns 347624 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19809916ns 347632 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19810086ns 347635 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19810371ns 347640 1a110850 fd5ff06f jal x0, -44 +19810655ns 347645 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19810939ns 347650 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19811337ns 347657 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19811507ns 347660 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19811962ns 347668 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19812132ns 347671 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19812417ns 347676 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19812701ns 347681 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19812985ns 347686 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19813440ns 347694 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19813610ns 347697 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19813894ns 347702 1a110850 fd5ff06f jal x0, -44 +19814178ns 347707 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19814463ns 347712 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19814860ns 347719 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19815031ns 347722 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19815485ns 347730 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19815656ns 347733 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19815940ns 347738 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19816224ns 347743 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19816508ns 347748 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19816963ns 347756 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19817134ns 347759 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19817418ns 347764 1a110850 fd5ff06f jal x0, -44 +19817702ns 347769 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19817986ns 347774 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19818384ns 347781 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19818554ns 347784 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19819009ns 347792 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19819180ns 347795 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19819464ns 347800 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19819748ns 347805 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19820032ns 347810 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19820487ns 347818 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19820657ns 347821 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19820941ns 347826 1a110850 fd5ff06f jal x0, -44 +19821226ns 347831 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19821510ns 347836 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19821907ns 347843 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19822078ns 347846 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19822533ns 347854 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19822703ns 347857 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19822987ns 347862 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19823271ns 347867 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19823556ns 347872 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19824010ns 347880 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19824181ns 347883 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19824465ns 347888 1a110850 fd5ff06f jal x0, -44 +19824749ns 347893 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19825033ns 347898 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19825431ns 347905 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19825602ns 347908 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19826056ns 347916 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19826227ns 347919 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19826511ns 347924 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19826795ns 347929 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19827079ns 347934 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19827534ns 347942 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19827704ns 347945 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19827989ns 347950 1a110850 fd5ff06f jal x0, -44 +19828273ns 347955 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19828557ns 347960 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19828955ns 347967 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19829125ns 347970 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19829580ns 347978 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19829750ns 347981 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19830034ns 347986 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19830319ns 347991 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19830603ns 347996 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19831057ns 348004 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19831228ns 348007 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19831512ns 348012 1a110850 fd5ff06f jal x0, -44 +19831796ns 348017 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19832080ns 348022 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19832478ns 348029 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19832649ns 348032 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19833103ns 348040 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19833274ns 348043 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19833558ns 348048 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19833842ns 348053 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19834126ns 348058 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19834581ns 348066 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19834752ns 348069 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19835036ns 348074 1a110850 fd5ff06f jal x0, -44 +19835320ns 348079 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19835604ns 348084 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19836002ns 348091 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19836172ns 348094 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19836627ns 348102 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19836797ns 348105 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19837082ns 348110 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19837366ns 348115 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19837650ns 348120 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19838105ns 348128 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19838275ns 348131 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19838559ns 348136 1a110850 fd5ff06f jal x0, -44 +19838843ns 348141 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19839128ns 348146 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19839525ns 348153 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19839696ns 348156 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19840151ns 348164 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19840321ns 348167 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19840605ns 348172 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19840889ns 348177 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19841174ns 348182 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19841628ns 348190 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19841799ns 348193 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19842083ns 348198 1a110850 fd5ff06f jal x0, -44 +19842367ns 348203 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19842651ns 348208 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19843049ns 348215 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19843219ns 348218 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19843674ns 348226 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19843845ns 348229 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19844129ns 348234 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19844413ns 348239 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19844697ns 348244 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19845152ns 348252 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19845322ns 348255 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19845606ns 348260 1a110850 fd5ff06f jal x0, -44 +19845891ns 348265 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19846175ns 348270 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19846573ns 348277 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19846743ns 348280 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19847198ns 348288 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19847368ns 348291 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19847652ns 348296 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19847937ns 348301 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19848221ns 348306 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19848675ns 348314 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19848846ns 348317 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19849130ns 348322 1a110850 fd5ff06f jal x0, -44 +19849414ns 348327 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19849698ns 348332 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19850096ns 348339 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19850267ns 348342 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19850721ns 348350 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19850892ns 348353 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19851176ns 348358 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19851460ns 348363 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19851744ns 348368 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19852199ns 348376 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19852369ns 348379 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19852654ns 348384 1a110850 fd5ff06f jal x0, -44 +19852938ns 348389 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19853222ns 348394 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19853620ns 348401 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19853790ns 348404 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19854245ns 348412 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19854415ns 348415 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19854700ns 348420 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19854984ns 348425 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19855268ns 348430 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19855723ns 348438 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19855893ns 348441 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19856177ns 348446 1a110850 fd5ff06f jal x0, -44 +19856461ns 348451 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19856746ns 348456 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19857143ns 348463 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19857314ns 348466 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19857768ns 348474 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19857939ns 348477 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19858223ns 348482 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19858507ns 348487 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19858791ns 348492 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19859246ns 348500 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19859417ns 348503 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19859701ns 348508 1a110850 fd5ff06f jal x0, -44 +19859985ns 348513 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19860269ns 348518 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19860667ns 348525 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19860837ns 348528 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19861292ns 348536 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19861463ns 348539 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19861747ns 348544 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19862031ns 348549 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19862315ns 348554 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19862770ns 348562 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19862940ns 348565 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19863224ns 348570 1a110850 fd5ff06f jal x0, -44 +19863509ns 348575 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19863793ns 348580 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19864191ns 348587 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19864361ns 348590 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19864816ns 348598 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19864986ns 348601 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19865270ns 348606 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19865554ns 348611 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19865839ns 348616 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19866293ns 348624 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19866464ns 348627 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19866748ns 348632 1a110850 fd5ff06f jal x0, -44 +19867032ns 348637 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19867316ns 348642 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19867714ns 348649 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19867885ns 348652 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19868339ns 348660 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19868510ns 348663 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19868794ns 348668 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19869078ns 348673 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19869362ns 348678 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19869817ns 348686 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19869987ns 348689 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19870272ns 348694 1a110850 fd5ff06f jal x0, -44 +19870556ns 348699 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19870840ns 348704 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19871238ns 348711 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19871408ns 348714 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19871863ns 348722 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19872033ns 348725 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19872317ns 348730 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19872602ns 348735 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19872886ns 348740 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19873340ns 348748 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19873511ns 348751 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19873795ns 348756 1a110850 fd5ff06f jal x0, -44 +19874079ns 348761 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19874363ns 348766 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19874761ns 348773 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19874932ns 348776 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19875386ns 348784 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19875557ns 348787 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19875841ns 348792 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19876125ns 348797 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19876409ns 348802 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19876864ns 348810 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19877035ns 348813 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19877319ns 348818 1a110850 fd5ff06f jal x0, -44 +19877603ns 348823 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19877887ns 348828 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19878285ns 348835 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19878455ns 348838 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19878910ns 348846 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19879080ns 348849 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19879365ns 348854 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19879649ns 348859 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19879933ns 348864 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19880388ns 348872 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19880558ns 348875 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19880842ns 348880 1a110850 fd5ff06f jal x0, -44 +19881126ns 348885 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19881411ns 348890 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19881808ns 348897 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19881979ns 348900 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19882434ns 348908 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19882604ns 348911 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19882888ns 348916 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19883172ns 348921 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19883457ns 348926 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19883911ns 348934 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19884082ns 348937 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19884366ns 348942 1a110850 fd5ff06f jal x0, -44 +19884650ns 348947 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19884934ns 348952 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19885332ns 348959 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19885503ns 348962 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19885957ns 348970 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19886128ns 348973 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19886412ns 348978 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19886696ns 348983 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19886980ns 348988 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19887435ns 348996 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19887605ns 348999 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19887889ns 349004 1a110850 fd5ff06f jal x0, -44 +19888174ns 349009 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19888458ns 349014 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19888856ns 349021 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19889026ns 349024 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19889481ns 349032 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19889651ns 349035 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19889935ns 349040 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19890220ns 349045 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19890504ns 349050 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19890958ns 349058 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19891129ns 349061 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19891413ns 349066 1a110850 fd5ff06f jal x0, -44 +19891697ns 349071 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19891981ns 349076 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19892379ns 349083 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19892550ns 349086 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19893004ns 349094 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19893175ns 349097 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19893459ns 349102 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19893743ns 349107 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19894027ns 349112 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19894482ns 349120 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19894652ns 349123 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19894937ns 349128 1a110850 fd5ff06f jal x0, -44 +19895221ns 349133 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19895505ns 349138 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19895903ns 349145 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19896073ns 349148 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19896528ns 349156 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19896698ns 349159 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19896983ns 349164 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19897267ns 349169 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19897551ns 349174 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19898006ns 349182 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19898176ns 349185 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19898460ns 349190 1a110850 fd5ff06f jal x0, -44 +19898744ns 349195 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19899029ns 349200 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19899426ns 349207 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19899597ns 349210 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19900051ns 349218 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19900222ns 349221 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19900506ns 349226 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19900790ns 349231 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19901074ns 349236 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19901529ns 349244 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19901700ns 349247 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19901984ns 349252 1a110850 fd5ff06f jal x0, -44 +19902268ns 349257 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19902552ns 349262 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19902950ns 349269 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19903120ns 349272 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19903575ns 349280 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19903746ns 349283 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19904030ns 349288 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19904314ns 349293 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19904598ns 349298 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19905053ns 349306 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19905223ns 349309 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19905507ns 349314 1a110850 fd5ff06f jal x0, -44 +19905792ns 349319 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19906076ns 349324 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19906474ns 349331 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19906644ns 349334 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19907099ns 349342 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19907269ns 349345 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19907553ns 349350 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19907837ns 349355 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19908122ns 349360 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19908576ns 349368 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19908747ns 349371 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19909031ns 349376 1a110850 fd5ff06f jal x0, -44 +19909315ns 349381 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19909599ns 349386 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19909997ns 349393 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19910168ns 349396 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19910622ns 349404 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19910793ns 349407 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19911077ns 349412 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19911361ns 349417 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19911645ns 349422 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19912100ns 349430 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19912270ns 349433 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19912555ns 349438 1a110850 fd5ff06f jal x0, -44 +19912839ns 349443 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19913123ns 349448 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19913521ns 349455 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19913691ns 349458 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19914146ns 349466 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19914316ns 349469 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19914600ns 349474 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19914885ns 349479 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19915169ns 349484 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19915623ns 349492 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19915794ns 349495 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19916078ns 349500 1a110850 fd5ff06f jal x0, -44 +19916362ns 349505 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19916646ns 349510 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19917044ns 349517 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19917215ns 349520 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19917669ns 349528 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19917840ns 349531 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19918124ns 349536 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19918408ns 349541 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19918692ns 349546 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19919147ns 349554 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19919318ns 349557 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19919602ns 349562 1a110850 fd5ff06f jal x0, -44 +19919886ns 349567 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19920170ns 349572 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19920568ns 349579 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19920738ns 349582 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19921193ns 349590 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19921363ns 349593 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19921648ns 349598 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19921932ns 349603 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19922216ns 349608 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19922671ns 349616 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19922841ns 349619 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19923125ns 349624 1a110850 fd5ff06f jal x0, -44 +19923409ns 349629 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19923694ns 349634 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19924091ns 349641 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19924262ns 349644 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19924717ns 349652 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19924887ns 349655 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19925171ns 349660 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19925455ns 349665 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19925740ns 349670 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19926194ns 349678 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19926365ns 349681 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19926649ns 349686 1a110850 fd5ff06f jal x0, -44 +19926933ns 349691 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19927217ns 349696 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19927615ns 349703 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19927786ns 349706 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19928240ns 349714 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19928411ns 349717 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19928695ns 349722 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19928979ns 349727 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19929263ns 349732 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19929718ns 349740 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19929888ns 349743 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19930172ns 349748 1a110850 fd5ff06f jal x0, -44 +19930457ns 349753 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19930741ns 349758 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19931139ns 349765 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19931309ns 349768 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19931764ns 349776 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19931934ns 349779 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19932218ns 349784 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19932503ns 349789 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19932787ns 349794 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19933241ns 349802 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19933412ns 349805 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19933696ns 349810 1a110850 fd5ff06f jal x0, -44 +19933980ns 349815 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19934264ns 349820 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19934662ns 349827 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19934833ns 349830 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19935287ns 349838 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19935458ns 349841 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19935742ns 349846 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19936026ns 349851 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19936310ns 349856 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19936765ns 349864 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19936935ns 349867 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19937220ns 349872 1a110850 fd5ff06f jal x0, -44 +19937504ns 349877 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19937788ns 349882 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19938186ns 349889 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19938356ns 349892 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19938811ns 349900 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19938981ns 349903 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19939266ns 349908 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19939550ns 349913 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19939834ns 349918 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19940289ns 349926 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19940459ns 349929 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19940743ns 349934 1a110850 fd5ff06f jal x0, -44 +19941027ns 349939 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19941312ns 349944 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19941709ns 349951 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19941880ns 349954 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19942335ns 349962 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19942505ns 349965 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19942789ns 349970 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19943073ns 349975 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19943357ns 349980 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19943812ns 349988 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19943983ns 349991 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19944267ns 349996 1a110850 fd5ff06f jal x0, -44 +19944551ns 350001 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19944835ns 350006 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19945233ns 350013 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19945403ns 350016 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19945858ns 350024 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19946029ns 350027 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19946313ns 350032 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19946597ns 350037 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19946881ns 350042 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19947336ns 350050 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19947506ns 350053 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19947790ns 350058 1a110850 fd5ff06f jal x0, -44 +19948075ns 350063 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19948359ns 350068 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19948757ns 350075 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19948927ns 350078 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19949382ns 350086 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19949552ns 350089 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19949836ns 350094 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19950120ns 350099 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19950405ns 350104 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19950859ns 350112 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19951030ns 350115 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19951314ns 350120 1a110850 fd5ff06f jal x0, -44 +19951598ns 350125 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19951882ns 350130 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19952280ns 350137 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19952451ns 350140 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19952905ns 350148 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19953076ns 350151 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19953360ns 350156 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19953644ns 350161 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19953928ns 350166 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19954383ns 350174 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19954553ns 350177 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19954838ns 350182 1a110850 fd5ff06f jal x0, -44 +19955122ns 350187 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19955406ns 350192 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19955804ns 350199 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19955974ns 350202 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19956429ns 350210 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19956599ns 350213 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19956883ns 350218 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19957168ns 350223 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19957452ns 350228 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19957906ns 350236 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19958077ns 350239 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19958361ns 350244 1a110850 fd5ff06f jal x0, -44 +19958645ns 350249 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19958929ns 350254 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19959327ns 350261 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19959498ns 350264 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19959952ns 350272 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19960123ns 350275 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19960407ns 350280 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19960691ns 350285 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19960975ns 350290 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19961430ns 350298 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19961601ns 350301 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19961885ns 350306 1a110850 fd5ff06f jal x0, -44 +19962169ns 350311 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19962453ns 350316 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19962851ns 350323 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19963021ns 350326 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19963476ns 350334 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19963647ns 350337 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19963931ns 350342 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19964215ns 350347 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19964499ns 350352 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19964954ns 350360 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19965124ns 350363 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19965408ns 350368 1a110850 fd5ff06f jal x0, -44 +19965692ns 350373 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19965977ns 350378 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19966374ns 350385 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19966545ns 350388 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19967000ns 350396 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19967170ns 350399 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19967454ns 350404 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19967738ns 350409 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19968023ns 350414 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19968477ns 350422 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19968648ns 350425 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19968932ns 350430 1a110850 fd5ff06f jal x0, -44 +19969216ns 350435 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19969500ns 350440 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19969898ns 350447 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19970069ns 350450 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19970523ns 350458 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19970694ns 350461 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19970978ns 350466 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19971262ns 350471 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19971546ns 350476 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19972001ns 350484 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19972171ns 350487 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19972455ns 350492 1a110850 fd5ff06f jal x0, -44 +19972740ns 350497 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19973024ns 350502 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19973422ns 350509 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19973592ns 350512 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19974047ns 350520 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19974217ns 350523 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19974501ns 350528 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19974786ns 350533 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19975070ns 350538 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19975524ns 350546 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19975695ns 350549 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19975979ns 350554 1a110850 fd5ff06f jal x0, -44 +19976263ns 350559 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19976547ns 350564 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19976945ns 350571 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19977116ns 350574 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19977570ns 350582 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19977741ns 350585 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19978025ns 350590 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19978309ns 350595 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19978593ns 350600 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19979048ns 350608 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19979218ns 350611 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19979503ns 350616 1a110850 fd5ff06f jal x0, -44 +19979787ns 350621 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19980071ns 350626 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19980469ns 350633 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19980639ns 350636 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19981094ns 350644 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19981264ns 350647 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19981549ns 350652 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19981833ns 350657 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19982117ns 350662 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19982572ns 350670 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19982742ns 350673 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19983026ns 350678 1a110850 fd5ff06f jal x0, -44 +19983310ns 350683 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19983595ns 350688 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19983992ns 350695 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19984163ns 350698 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19984618ns 350706 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19984788ns 350709 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19985072ns 350714 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19985356ns 350719 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19985640ns 350724 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19986095ns 350732 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19986266ns 350735 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19986550ns 350740 1a110850 fd5ff06f jal x0, -44 +19986834ns 350745 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19987118ns 350750 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19987516ns 350757 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19987686ns 350760 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19988141ns 350768 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19988312ns 350771 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19988596ns 350776 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19988880ns 350781 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19989164ns 350786 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19989619ns 350794 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19989789ns 350797 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19990073ns 350802 1a110850 fd5ff06f jal x0, -44 +19990358ns 350807 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19990642ns 350812 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19991040ns 350819 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19991210ns 350822 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19991665ns 350830 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19991835ns 350833 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19992119ns 350838 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19992403ns 350843 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19992688ns 350848 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19993142ns 350856 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19993313ns 350859 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19993597ns 350864 1a110850 fd5ff06f jal x0, -44 +19993881ns 350869 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19994165ns 350874 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19994563ns 350881 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19994734ns 350884 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19995188ns 350892 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19995359ns 350895 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19995643ns 350900 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19995927ns 350905 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19996211ns 350910 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19996666ns 350918 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +19996836ns 350921 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +19997121ns 350926 1a110850 fd5ff06f jal x0, -44 +19997405ns 350931 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19997689ns 350936 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +19998087ns 350943 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19998257ns 350946 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +19998712ns 350954 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +19998882ns 350957 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +19999167ns 350962 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +19999451ns 350967 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +19999735ns 350972 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20000189ns 350980 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20000360ns 350983 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20000644ns 350988 1a110850 fd5ff06f jal x0, -44 +20000928ns 350993 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20001212ns 350998 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20001610ns 351005 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20001781ns 351008 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20002235ns 351016 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20002406ns 351019 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20002690ns 351024 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20002974ns 351029 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20003258ns 351034 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20003713ns 351042 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20003884ns 351045 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20004168ns 351050 1a110850 fd5ff06f jal x0, -44 +20004452ns 351055 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20004736ns 351060 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20005134ns 351067 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20005304ns 351070 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20005759ns 351078 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20005930ns 351081 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20006214ns 351086 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20006498ns 351091 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20006782ns 351096 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20007237ns 351104 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20007407ns 351107 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20007691ns 351112 1a110850 fd5ff06f jal x0, -44 +20007975ns 351117 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20008260ns 351122 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20008657ns 351129 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20008828ns 351132 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20009283ns 351140 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20009453ns 351143 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20009737ns 351148 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20010021ns 351153 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20010306ns 351158 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20010760ns 351166 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20010931ns 351169 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20011215ns 351174 1a110850 fd5ff06f jal x0, -44 +20011499ns 351179 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20011783ns 351184 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20012181ns 351191 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20012352ns 351194 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20012806ns 351202 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20012977ns 351205 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20013261ns 351210 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20013545ns 351215 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20013829ns 351220 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20014284ns 351228 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20014454ns 351231 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20014738ns 351236 1a110850 fd5ff06f jal x0, -44 +20015023ns 351241 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20015307ns 351246 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20015705ns 351253 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20015875ns 351256 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20016330ns 351264 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20016500ns 351267 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20016784ns 351272 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20017069ns 351277 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20017353ns 351282 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20017807ns 351290 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20017978ns 351293 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20018262ns 351298 1a110850 fd5ff06f jal x0, -44 +20018546ns 351303 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20018830ns 351308 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20019228ns 351315 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20019399ns 351318 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20019853ns 351326 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20020024ns 351329 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20020308ns 351334 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20020592ns 351339 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20020876ns 351344 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20021331ns 351352 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20021501ns 351355 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20021786ns 351360 1a110850 fd5ff06f jal x0, -44 +20022070ns 351365 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20022354ns 351370 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20022752ns 351377 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20022922ns 351380 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20023377ns 351388 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20023547ns 351391 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20023832ns 351396 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20024116ns 351401 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20024400ns 351406 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20024855ns 351414 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20025025ns 351417 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20025309ns 351422 1a110850 fd5ff06f jal x0, -44 +20025593ns 351427 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20025878ns 351432 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20026275ns 351439 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20026446ns 351442 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20026901ns 351450 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20027071ns 351453 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20027355ns 351458 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20027639ns 351463 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20027923ns 351468 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20028378ns 351476 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20028549ns 351479 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20028833ns 351484 1a110850 fd5ff06f jal x0, -44 +20029117ns 351489 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20029401ns 351494 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20029799ns 351501 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20029969ns 351504 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20030424ns 351512 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20030595ns 351515 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20030879ns 351520 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20031163ns 351525 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20031447ns 351530 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20031902ns 351538 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20032072ns 351541 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20032356ns 351546 1a110850 fd5ff06f jal x0, -44 +20032641ns 351551 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20032925ns 351556 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20033323ns 351563 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20033493ns 351566 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20033948ns 351574 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20034118ns 351577 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20034402ns 351582 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20034687ns 351587 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20034971ns 351592 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20035425ns 351600 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20035596ns 351603 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20035880ns 351608 1a110850 fd5ff06f jal x0, -44 +20036164ns 351613 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20036448ns 351618 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20036846ns 351625 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20037017ns 351628 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20037471ns 351636 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20037642ns 351639 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20037926ns 351644 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20038210ns 351649 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20038494ns 351654 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20038949ns 351662 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20039119ns 351665 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20039404ns 351670 1a110850 fd5ff06f jal x0, -44 +20039688ns 351675 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20039972ns 351680 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20040370ns 351687 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20040540ns 351690 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20040995ns 351698 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20041165ns 351701 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20041450ns 351706 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20041734ns 351711 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20042018ns 351716 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20042472ns 351724 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20042643ns 351727 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20042927ns 351732 1a110850 fd5ff06f jal x0, -44 +20043211ns 351737 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20043495ns 351742 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20043893ns 351749 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20044064ns 351752 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20044518ns 351760 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20044689ns 351763 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20044973ns 351768 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20045257ns 351773 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20045541ns 351778 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20045996ns 351786 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20046167ns 351789 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20046451ns 351794 1a110850 fd5ff06f jal x0, -44 +20046735ns 351799 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20047019ns 351804 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20047417ns 351811 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20047587ns 351814 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20048042ns 351822 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20048213ns 351825 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20048497ns 351830 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20048781ns 351835 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20049065ns 351840 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20049520ns 351848 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20049690ns 351851 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20049974ns 351856 1a110850 fd5ff06f jal x0, -44 +20050258ns 351861 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20050543ns 351866 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20050940ns 351873 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20051111ns 351876 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20051566ns 351884 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20051736ns 351887 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20052020ns 351892 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20052304ns 351897 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20052589ns 351902 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20053043ns 351910 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20053214ns 351913 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20053498ns 351918 1a110850 fd5ff06f jal x0, -44 +20053782ns 351923 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20054066ns 351928 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20054464ns 351935 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20054635ns 351938 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20055089ns 351946 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20055260ns 351949 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20055544ns 351954 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20055828ns 351959 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20056112ns 351964 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20056567ns 351972 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20056737ns 351975 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20057021ns 351980 1a110850 fd5ff06f jal x0, -44 +20057306ns 351985 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20057590ns 351990 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20057988ns 351997 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20058158ns 352000 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20058613ns 352008 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20058783ns 352011 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20059067ns 352016 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20059352ns 352021 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20059636ns 352026 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20060090ns 352034 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20060261ns 352037 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20060545ns 352042 1a110850 fd5ff06f jal x0, -44 +20060829ns 352047 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20061113ns 352052 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20061511ns 352059 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20061682ns 352062 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20062136ns 352070 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20062307ns 352073 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20062591ns 352078 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20062875ns 352083 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20063159ns 352088 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20063614ns 352096 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20063784ns 352099 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20064069ns 352104 1a110850 fd5ff06f jal x0, -44 +20064353ns 352109 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20064637ns 352114 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20065035ns 352121 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20065205ns 352124 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20065660ns 352132 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20065830ns 352135 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20066115ns 352140 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20066399ns 352145 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20066683ns 352150 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20067138ns 352158 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20067308ns 352161 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20067592ns 352166 1a110850 fd5ff06f jal x0, -44 +20067876ns 352171 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20068161ns 352176 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20068558ns 352183 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20068729ns 352186 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20069184ns 352194 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20069354ns 352197 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20069638ns 352202 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20069922ns 352207 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20070207ns 352212 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20070661ns 352220 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20070832ns 352223 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20071116ns 352228 1a110850 fd5ff06f jal x0, -44 +20071400ns 352233 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20071684ns 352238 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20072082ns 352245 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20072252ns 352248 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20072707ns 352256 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20072878ns 352259 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20073162ns 352264 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20073446ns 352269 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20073730ns 352274 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20074185ns 352282 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20074355ns 352285 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20074639ns 352290 1a110850 fd5ff06f jal x0, -44 +20074924ns 352295 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20075208ns 352300 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20075606ns 352307 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20075776ns 352310 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20076231ns 352318 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20076401ns 352321 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20076685ns 352326 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20076970ns 352331 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20077254ns 352336 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20077708ns 352344 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20077879ns 352347 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20078163ns 352352 1a110850 fd5ff06f jal x0, -44 +20078447ns 352357 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20078731ns 352362 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20079129ns 352369 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20079300ns 352372 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20079754ns 352380 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20079925ns 352383 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20080209ns 352388 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20080493ns 352393 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20080777ns 352398 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20081232ns 352406 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20081402ns 352409 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20081687ns 352414 1a110850 fd5ff06f jal x0, -44 +20081971ns 352419 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20082255ns 352424 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20082653ns 352431 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20082823ns 352434 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20083278ns 352442 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20083448ns 352445 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20083733ns 352450 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20084017ns 352455 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20084301ns 352460 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20084755ns 352468 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20084926ns 352471 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20085210ns 352476 1a110850 fd5ff06f jal x0, -44 +20085494ns 352481 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20085778ns 352486 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20086176ns 352493 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20086347ns 352496 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20086801ns 352504 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20086972ns 352507 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20087256ns 352512 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20087540ns 352517 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20087824ns 352522 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20088279ns 352530 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20088450ns 352533 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20088734ns 352538 1a110850 fd5ff06f jal x0, -44 +20089018ns 352543 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20089302ns 352548 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20089700ns 352555 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20089870ns 352558 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20090325ns 352566 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20090496ns 352569 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20090780ns 352574 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20091064ns 352579 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20091348ns 352584 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20091803ns 352592 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20091973ns 352595 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20092257ns 352600 1a110850 fd5ff06f jal x0, -44 +20092541ns 352605 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20092826ns 352610 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20093223ns 352617 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20093394ns 352620 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20093849ns 352628 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20094019ns 352631 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20094303ns 352636 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20094587ns 352641 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20094872ns 352646 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20095326ns 352654 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20095497ns 352657 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20095781ns 352662 1a110850 fd5ff06f jal x0, -44 +20096065ns 352667 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20096349ns 352672 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20096747ns 352679 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20096918ns 352682 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20097372ns 352690 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20097543ns 352693 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20097827ns 352698 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20098111ns 352703 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20098395ns 352708 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20098850ns 352716 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20099020ns 352719 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20099304ns 352724 1a110850 fd5ff06f jal x0, -44 +20099589ns 352729 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20099873ns 352734 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20100271ns 352741 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20100441ns 352744 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20100896ns 352752 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20101066ns 352755 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20101350ns 352760 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20101635ns 352765 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20101919ns 352770 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20102373ns 352778 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20102544ns 352781 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20102828ns 352786 1a110850 fd5ff06f jal x0, -44 +20103112ns 352791 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20103396ns 352796 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20103794ns 352803 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20103965ns 352806 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20104419ns 352814 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20104590ns 352817 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20104874ns 352822 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20105158ns 352827 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20105442ns 352832 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20105897ns 352840 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20106067ns 352843 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20106352ns 352848 1a110850 fd5ff06f jal x0, -44 +20106636ns 352853 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20106920ns 352858 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20107318ns 352865 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20107488ns 352868 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20107943ns 352876 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20108113ns 352879 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20108398ns 352884 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20108682ns 352889 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20108966ns 352894 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20109421ns 352902 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20109591ns 352905 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20109875ns 352910 1a110850 fd5ff06f jal x0, -44 +20110159ns 352915 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20110444ns 352920 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20110841ns 352927 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20111012ns 352930 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20111467ns 352938 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20111637ns 352941 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20111921ns 352946 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20112205ns 352951 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20112490ns 352956 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20112944ns 352964 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20113115ns 352967 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20113399ns 352972 1a110850 fd5ff06f jal x0, -44 +20113683ns 352977 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20113967ns 352982 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20114365ns 352989 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20114535ns 352992 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20114990ns 353000 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20115161ns 353003 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20115445ns 353008 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20115729ns 353013 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20116013ns 353018 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20116468ns 353026 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20116638ns 353029 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20116922ns 353034 1a110850 fd5ff06f jal x0, -44 +20117207ns 353039 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20117491ns 353044 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20117889ns 353051 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20118059ns 353054 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20118514ns 353062 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20118684ns 353065 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20118968ns 353070 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20119253ns 353075 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20119537ns 353080 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20119991ns 353088 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20120162ns 353091 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20120446ns 353096 1a110850 fd5ff06f jal x0, -44 +20120730ns 353101 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20121014ns 353106 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20121412ns 353113 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20121583ns 353116 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20122037ns 353124 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20122208ns 353127 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20122492ns 353132 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20122776ns 353137 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20123060ns 353142 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20123515ns 353150 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20123685ns 353153 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20123970ns 353158 1a110850 fd5ff06f jal x0, -44 +20124254ns 353163 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20124538ns 353168 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20124936ns 353175 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20125106ns 353178 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20125561ns 353186 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20125731ns 353189 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20126016ns 353194 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20126300ns 353199 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20126584ns 353204 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20127039ns 353212 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20127209ns 353215 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20127493ns 353220 1a110850 fd5ff06f jal x0, -44 +20127777ns 353225 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20128061ns 353230 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20128459ns 353237 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20128630ns 353240 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20129084ns 353248 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20129255ns 353251 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20129539ns 353256 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20129823ns 353261 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20130107ns 353266 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20130562ns 353274 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20130733ns 353277 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20131017ns 353282 1a110850 fd5ff06f jal x0, -44 +20131301ns 353287 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20131585ns 353292 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20131983ns 353299 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20132153ns 353302 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20132608ns 353310 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20132779ns 353313 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20133063ns 353318 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20133347ns 353323 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20133631ns 353328 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20134086ns 353336 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20134256ns 353339 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20134540ns 353344 1a110850 fd5ff06f jal x0, -44 +20134824ns 353349 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20135109ns 353354 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20135506ns 353361 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20135677ns 353364 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20136132ns 353372 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20136302ns 353375 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20136586ns 353380 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20136870ns 353385 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20137155ns 353390 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20137609ns 353398 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20137780ns 353401 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20138064ns 353406 1a110850 fd5ff06f jal x0, -44 +20138348ns 353411 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20138632ns 353416 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20139030ns 353423 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20139201ns 353426 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20139655ns 353434 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20139826ns 353437 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20140110ns 353442 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20140394ns 353447 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20140678ns 353452 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20141133ns 353460 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20141303ns 353463 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20141587ns 353468 1a110850 fd5ff06f jal x0, -44 +20141872ns 353473 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20142156ns 353478 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20142554ns 353485 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20142724ns 353488 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20143179ns 353496 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20143349ns 353499 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20143633ns 353504 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20143918ns 353509 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20144202ns 353514 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20144656ns 353522 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20144827ns 353525 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20145111ns 353530 1a110850 fd5ff06f jal x0, -44 +20145395ns 353535 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20145679ns 353540 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20146077ns 353547 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20146248ns 353550 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20146702ns 353558 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20146873ns 353561 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20147157ns 353566 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20147441ns 353571 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20147725ns 353576 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20148180ns 353584 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20148351ns 353587 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20148635ns 353592 1a110850 fd5ff06f jal x0, -44 +20148919ns 353597 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20149203ns 353602 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20149601ns 353609 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20149771ns 353612 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20150226ns 353620 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20150396ns 353623 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20150681ns 353628 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20150965ns 353633 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20151249ns 353638 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20151704ns 353646 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20151874ns 353649 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20152158ns 353654 1a110850 fd5ff06f jal x0, -44 +20152442ns 353659 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20152727ns 353664 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20153124ns 353671 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20153295ns 353674 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20153750ns 353682 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20153920ns 353685 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20154204ns 353690 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20154488ns 353695 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20154773ns 353700 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20155227ns 353708 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20155398ns 353711 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20155682ns 353716 1a110850 fd5ff06f jal x0, -44 +20155966ns 353721 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20156250ns 353726 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20156648ns 353733 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20156818ns 353736 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20157273ns 353744 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20157444ns 353747 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20157728ns 353752 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20158012ns 353757 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20158296ns 353762 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20158751ns 353770 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20158921ns 353773 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20159205ns 353778 1a110850 fd5ff06f jal x0, -44 +20159490ns 353783 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20159774ns 353788 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20160172ns 353795 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20160342ns 353798 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20160797ns 353806 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20160967ns 353809 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20161251ns 353814 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20161536ns 353819 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20161820ns 353824 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20162274ns 353832 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20162445ns 353835 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20162729ns 353840 1a110850 fd5ff06f jal x0, -44 +20163013ns 353845 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20163297ns 353850 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20163695ns 353857 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20163866ns 353860 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20164320ns 353868 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20164491ns 353871 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20164775ns 353876 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20165059ns 353881 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20165343ns 353886 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20165798ns 353894 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20165968ns 353897 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20166253ns 353902 1a110850 fd5ff06f jal x0, -44 +20166537ns 353907 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20166821ns 353912 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20167219ns 353919 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20167389ns 353922 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20167844ns 353930 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20168014ns 353933 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20168299ns 353938 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20168583ns 353943 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20168867ns 353948 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20169322ns 353956 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20169492ns 353959 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20169776ns 353964 1a110850 fd5ff06f jal x0, -44 +20170060ns 353969 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20170344ns 353974 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20170742ns 353981 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20170913ns 353984 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20171367ns 353992 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20171538ns 353995 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20171822ns 354000 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20172106ns 354005 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20172390ns 354010 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20172845ns 354018 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20173016ns 354021 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20173300ns 354026 1a110850 fd5ff06f jal x0, -44 +20173584ns 354031 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20173868ns 354036 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20174266ns 354043 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20174436ns 354046 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20174891ns 354054 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20175062ns 354057 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20175346ns 354062 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20175630ns 354067 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20175914ns 354072 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20176369ns 354080 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20176539ns 354083 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20176823ns 354088 1a110850 fd5ff06f jal x0, -44 +20177107ns 354093 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20177392ns 354098 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20177789ns 354105 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20177960ns 354108 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20178415ns 354116 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20178585ns 354119 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20178869ns 354124 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20179153ns 354129 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20179438ns 354134 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20179892ns 354142 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20180063ns 354145 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20180347ns 354150 1a110850 fd5ff06f jal x0, -44 +20180631ns 354155 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20180915ns 354160 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20181313ns 354167 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20181484ns 354170 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20181938ns 354178 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20182109ns 354181 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20182393ns 354186 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20182677ns 354191 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20182961ns 354196 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20183416ns 354204 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20183586ns 354207 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20183871ns 354212 1a110850 fd5ff06f jal x0, -44 +20184155ns 354217 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20184439ns 354222 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20184837ns 354229 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20185007ns 354232 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20185462ns 354240 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20185632ns 354243 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20185916ns 354248 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20186201ns 354253 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20186485ns 354258 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20186939ns 354266 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20187110ns 354269 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20187394ns 354274 1a110850 fd5ff06f jal x0, -44 +20187678ns 354279 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20187962ns 354284 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20188360ns 354291 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20188531ns 354294 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20188985ns 354302 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20189156ns 354305 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20189440ns 354310 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20189724ns 354315 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20190008ns 354320 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20190463ns 354328 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20190634ns 354331 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20190918ns 354336 1a110850 fd5ff06f jal x0, -44 +20191202ns 354341 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20191486ns 354346 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20191884ns 354353 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20192054ns 354356 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20192509ns 354364 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20192679ns 354367 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20192964ns 354372 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20193248ns 354377 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20193532ns 354382 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20193987ns 354390 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20194157ns 354393 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20194441ns 354398 1a110850 fd5ff06f jal x0, -44 +20194725ns 354403 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20195010ns 354408 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20195407ns 354415 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20195578ns 354418 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20196033ns 354426 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20196203ns 354429 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20196487ns 354434 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20196771ns 354439 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20197056ns 354444 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20197510ns 354452 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20197681ns 354455 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20197965ns 354460 1a110850 fd5ff06f jal x0, -44 +20198249ns 354465 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20198533ns 354470 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20198931ns 354477 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20199101ns 354480 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20199556ns 354488 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20199727ns 354491 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20200011ns 354496 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20200295ns 354501 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20200579ns 354506 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20201034ns 354514 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20201204ns 354517 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20201488ns 354522 1a110850 fd5ff06f jal x0, -44 +20201773ns 354527 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20202057ns 354532 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20202455ns 354539 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20202625ns 354542 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20203080ns 354550 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20203250ns 354553 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20203534ns 354558 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20203819ns 354563 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20204103ns 354568 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20204557ns 354576 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20204728ns 354579 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20205012ns 354584 1a110850 fd5ff06f jal x0, -44 +20205296ns 354589 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20205580ns 354594 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20205978ns 354601 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20206149ns 354604 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20206603ns 354612 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20206774ns 354615 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20207058ns 354620 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20207342ns 354625 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20207626ns 354630 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20208081ns 354638 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20208251ns 354641 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20208536ns 354646 1a110850 fd5ff06f jal x0, -44 +20208820ns 354651 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20209104ns 354656 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20209502ns 354663 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20209672ns 354666 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20210127ns 354674 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20210297ns 354677 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20210582ns 354682 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20210866ns 354687 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20211150ns 354692 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20211605ns 354700 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20211775ns 354703 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20212059ns 354708 1a110850 fd5ff06f jal x0, -44 +20212343ns 354713 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20212627ns 354718 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20213025ns 354725 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20213196ns 354728 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20213650ns 354736 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20213821ns 354739 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20214105ns 354744 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20214389ns 354749 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20214673ns 354754 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20215128ns 354762 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20215299ns 354765 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20215583ns 354770 1a110850 fd5ff06f jal x0, -44 +20215867ns 354775 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20216151ns 354780 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20216549ns 354787 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20216719ns 354790 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20217174ns 354798 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20217345ns 354801 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20217629ns 354806 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20217913ns 354811 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20218197ns 354816 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20218652ns 354824 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20218822ns 354827 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20219106ns 354832 1a110850 fd5ff06f jal x0, -44 +20219391ns 354837 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20219675ns 354842 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20220072ns 354849 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20220243ns 354852 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20220698ns 354860 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20220868ns 354863 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20221152ns 354868 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20221436ns 354873 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20221721ns 354878 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20222175ns 354886 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20222346ns 354889 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20222630ns 354894 1a110850 fd5ff06f jal x0, -44 +20222914ns 354899 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20223198ns 354904 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20223596ns 354911 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20223767ns 354914 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20224221ns 354922 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20224392ns 354925 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20224676ns 354930 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20224960ns 354935 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20225244ns 354940 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20225699ns 354948 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20225869ns 354951 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20226154ns 354956 1a110850 fd5ff06f jal x0, -44 +20226438ns 354961 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20226722ns 354966 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20227120ns 354973 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20227290ns 354976 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20227745ns 354984 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20227915ns 354987 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20228199ns 354992 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20228484ns 354997 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20228768ns 355002 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20229222ns 355010 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20229393ns 355013 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20229677ns 355018 1a110850 fd5ff06f jal x0, -44 +20229961ns 355023 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20230245ns 355028 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20230643ns 355035 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20230814ns 355038 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20231268ns 355046 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20231439ns 355049 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20231723ns 355054 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20232007ns 355059 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20232291ns 355064 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20232746ns 355072 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20232917ns 355075 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20233201ns 355080 1a110850 fd5ff06f jal x0, -44 +20233485ns 355085 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20233769ns 355090 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20234167ns 355097 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20234337ns 355100 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20234792ns 355108 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20234962ns 355111 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20235247ns 355116 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20235531ns 355121 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20235815ns 355126 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20236270ns 355134 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20236440ns 355137 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20236724ns 355142 1a110850 fd5ff06f jal x0, -44 +20237008ns 355147 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20237293ns 355152 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20237690ns 355159 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20237861ns 355162 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20238316ns 355170 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20238486ns 355173 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20238770ns 355178 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20239054ns 355183 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20239339ns 355188 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20239793ns 355196 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20239964ns 355199 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20240248ns 355204 1a110850 fd5ff06f jal x0, -44 +20240532ns 355209 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20240816ns 355214 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20241214ns 355221 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20241384ns 355224 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20241839ns 355232 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20242010ns 355235 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20242294ns 355240 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20242578ns 355245 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20242862ns 355250 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20243317ns 355258 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20243487ns 355261 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20243771ns 355266 1a110850 fd5ff06f jal x0, -44 +20244056ns 355271 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20244340ns 355276 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20244738ns 355283 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20244908ns 355286 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20245363ns 355294 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20245533ns 355297 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20245817ns 355302 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20246102ns 355307 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20246386ns 355312 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20246840ns 355320 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20247011ns 355323 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20247295ns 355328 1a110850 fd5ff06f jal x0, -44 +20247579ns 355333 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20247863ns 355338 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20248261ns 355345 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20248432ns 355348 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20248886ns 355356 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20249057ns 355359 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20249341ns 355364 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20249625ns 355369 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20249909ns 355374 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20250364ns 355382 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20250534ns 355385 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20250819ns 355390 1a110850 fd5ff06f jal x0, -44 +20251103ns 355395 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20251387ns 355400 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20251785ns 355407 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20251955ns 355410 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20252410ns 355418 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20252580ns 355421 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20252865ns 355426 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20253149ns 355431 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20253433ns 355436 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20253888ns 355444 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20254058ns 355447 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20254342ns 355452 1a110850 fd5ff06f jal x0, -44 +20254626ns 355457 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20254911ns 355462 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20255308ns 355469 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20255479ns 355472 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20255933ns 355480 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20256104ns 355483 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20256388ns 355488 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20256672ns 355493 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20256956ns 355498 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20257411ns 355506 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20257582ns 355509 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20257866ns 355514 1a110850 fd5ff06f jal x0, -44 +20258150ns 355519 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20258434ns 355524 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20258832ns 355531 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20259002ns 355534 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20259457ns 355542 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20259628ns 355545 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20259912ns 355550 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20260196ns 355555 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20260480ns 355560 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20260935ns 355568 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20261105ns 355571 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20261389ns 355576 1a110850 fd5ff06f jal x0, -44 +20261674ns 355581 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20261958ns 355586 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20262355ns 355593 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20262526ns 355596 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20262981ns 355604 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20263151ns 355607 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20263435ns 355612 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20263719ns 355617 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20264004ns 355622 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20264458ns 355630 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20264629ns 355633 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20264913ns 355638 1a110850 fd5ff06f jal x0, -44 +20265197ns 355643 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20265481ns 355648 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20265879ns 355655 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20266050ns 355658 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20266504ns 355666 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20266675ns 355669 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20266959ns 355674 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20267243ns 355679 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20267527ns 355684 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20267982ns 355692 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20268152ns 355695 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20268437ns 355700 1a110850 fd5ff06f jal x0, -44 +20268721ns 355705 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20269005ns 355710 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20269403ns 355717 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20269573ns 355720 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20270028ns 355728 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20270198ns 355731 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20270482ns 355736 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20270767ns 355741 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20271051ns 355746 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20271505ns 355754 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20271676ns 355757 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20271960ns 355762 1a110850 fd5ff06f jal x0, -44 +20272244ns 355767 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20272528ns 355772 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20272926ns 355779 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20273097ns 355782 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20273551ns 355790 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20273722ns 355793 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20274006ns 355798 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20274290ns 355803 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20274574ns 355808 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20275029ns 355816 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20275200ns 355819 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20275484ns 355824 1a110850 fd5ff06f jal x0, -44 +20275768ns 355829 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20276052ns 355834 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20276450ns 355841 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20276620ns 355844 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20277075ns 355852 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20277245ns 355855 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20277530ns 355860 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20277814ns 355865 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20278098ns 355870 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20278553ns 355878 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20278723ns 355881 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20279007ns 355886 1a110850 fd5ff06f jal x0, -44 +20279291ns 355891 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20279576ns 355896 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20279973ns 355903 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20280144ns 355906 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20280599ns 355914 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20280769ns 355917 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20281053ns 355922 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20281337ns 355927 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20281622ns 355932 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20282076ns 355940 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20282247ns 355943 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20282531ns 355948 1a110850 fd5ff06f jal x0, -44 +20282815ns 355953 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20283099ns 355958 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20283497ns 355965 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20283667ns 355968 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20284122ns 355976 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20284293ns 355979 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20284577ns 355984 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20284861ns 355989 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20285145ns 355994 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20285600ns 356002 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20285770ns 356005 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20286054ns 356010 1a110850 fd5ff06f jal x0, -44 +20286339ns 356015 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20286623ns 356020 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20287021ns 356027 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20287191ns 356030 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20287646ns 356038 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20287816ns 356041 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20288100ns 356046 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20288385ns 356051 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20288669ns 356056 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20289123ns 356064 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20289294ns 356067 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20289578ns 356072 1a110850 fd5ff06f jal x0, -44 +20289862ns 356077 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20290146ns 356082 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20290544ns 356089 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20290715ns 356092 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20291169ns 356100 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20291340ns 356103 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20291624ns 356108 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20291908ns 356113 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20292192ns 356118 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20292647ns 356126 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20292817ns 356129 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20293102ns 356134 1a110850 fd5ff06f jal x0, -44 +20293386ns 356139 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20293670ns 356144 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20294068ns 356151 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20294238ns 356154 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20294693ns 356162 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20294863ns 356165 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20295148ns 356170 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20295432ns 356175 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20295716ns 356180 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20296171ns 356188 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20296341ns 356191 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20296625ns 356196 1a110850 fd5ff06f jal x0, -44 +20296909ns 356201 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20297194ns 356206 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20297591ns 356213 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20297762ns 356216 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20298216ns 356224 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20298387ns 356227 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20298671ns 356232 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20298955ns 356237 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20299239ns 356242 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20299694ns 356250 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20299865ns 356253 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20300149ns 356258 1a110850 fd5ff06f jal x0, -44 +20300433ns 356263 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20300717ns 356268 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20301115ns 356275 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20301285ns 356278 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20301740ns 356286 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20301911ns 356289 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20302195ns 356294 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20302479ns 356299 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20302763ns 356304 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20303218ns 356312 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20303388ns 356315 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20303672ns 356320 1a110850 fd5ff06f jal x0, -44 +20303957ns 356325 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20304241ns 356330 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20304639ns 356337 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20304809ns 356340 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20305264ns 356348 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20305434ns 356351 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20305718ns 356356 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20306002ns 356361 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20306287ns 356366 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20306741ns 356374 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20306912ns 356377 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20307196ns 356382 1a110850 fd5ff06f jal x0, -44 +20307480ns 356387 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20307764ns 356392 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20308162ns 356399 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20308333ns 356402 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20308787ns 356410 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20308958ns 356413 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20309242ns 356418 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20309526ns 356423 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20309810ns 356428 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20310265ns 356436 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20310435ns 356439 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20310720ns 356444 1a110850 fd5ff06f jal x0, -44 +20311004ns 356449 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20311288ns 356454 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20311686ns 356461 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20311856ns 356464 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20312311ns 356472 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20312481ns 356475 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20312765ns 356480 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20313050ns 356485 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20313334ns 356490 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20313788ns 356498 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20313959ns 356501 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20314243ns 356506 1a110850 fd5ff06f jal x0, -44 +20314527ns 356511 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20314811ns 356516 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20315209ns 356523 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20315380ns 356526 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20315834ns 356534 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20316005ns 356537 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20316289ns 356542 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20316573ns 356547 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20316857ns 356552 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20317312ns 356560 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20317483ns 356563 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20317767ns 356568 1a110850 fd5ff06f jal x0, -44 +20318051ns 356573 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20318335ns 356578 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20318733ns 356585 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20318903ns 356588 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20319358ns 356596 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20319528ns 356599 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20319813ns 356604 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20320097ns 356609 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20320381ns 356614 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20320836ns 356622 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20321006ns 356625 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20321290ns 356630 1a110850 fd5ff06f jal x0, -44 +20321574ns 356635 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20321859ns 356640 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20322256ns 356647 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20322427ns 356650 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20322882ns 356658 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20323052ns 356661 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20323336ns 356666 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20323620ns 356671 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20323905ns 356676 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20324359ns 356684 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20324530ns 356687 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20324814ns 356692 1a110850 fd5ff06f jal x0, -44 +20325098ns 356697 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20325382ns 356702 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20325780ns 356709 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20325951ns 356712 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20326405ns 356720 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20326576ns 356723 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20326860ns 356728 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20327144ns 356733 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20327428ns 356738 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20327883ns 356746 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20328053ns 356749 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20328337ns 356754 1a110850 fd5ff06f jal x0, -44 +20328622ns 356759 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20328906ns 356764 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20329304ns 356771 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20329474ns 356774 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20329929ns 356782 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20330099ns 356785 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20330383ns 356790 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20330668ns 356795 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20330952ns 356800 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20331406ns 356808 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20331577ns 356811 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20331861ns 356816 1a110850 fd5ff06f jal x0, -44 +20332145ns 356821 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20332429ns 356826 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20332827ns 356833 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20332998ns 356836 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20333452ns 356844 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20333623ns 356847 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20333907ns 356852 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20334191ns 356857 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20334475ns 356862 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20334930ns 356870 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20335100ns 356873 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20335385ns 356878 1a110850 fd5ff06f jal x0, -44 +20335669ns 356883 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20335953ns 356888 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20336351ns 356895 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20336521ns 356898 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20336976ns 356906 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20337146ns 356909 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20337431ns 356914 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20337715ns 356919 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20337999ns 356924 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20338454ns 356932 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20338624ns 356935 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20338908ns 356940 1a110850 fd5ff06f jal x0, -44 +20339192ns 356945 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20339477ns 356950 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20339874ns 356957 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20340045ns 356960 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20340499ns 356968 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20340670ns 356971 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20340954ns 356976 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20341238ns 356981 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20341522ns 356986 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20341977ns 356994 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20342148ns 356997 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20342432ns 357002 1a110850 fd5ff06f jal x0, -44 +20342716ns 357007 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20343000ns 357012 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20343398ns 357019 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20343568ns 357022 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20344023ns 357030 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20344194ns 357033 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20344478ns 357038 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20344762ns 357043 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20345046ns 357048 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20345501ns 357056 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20345671ns 357059 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20345955ns 357064 1a110850 fd5ff06f jal x0, -44 +20346240ns 357069 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20346524ns 357074 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20346922ns 357081 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20347092ns 357084 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20347547ns 357092 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20347717ns 357095 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20348001ns 357100 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20348285ns 357105 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20348570ns 357110 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20349024ns 357118 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20349195ns 357121 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20349479ns 357126 1a110850 fd5ff06f jal x0, -44 +20349763ns 357131 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20350047ns 357136 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20350445ns 357143 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20350616ns 357146 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20351070ns 357154 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20351241ns 357157 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20351525ns 357162 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20351809ns 357167 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20352093ns 357172 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20352548ns 357180 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20352718ns 357183 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20353003ns 357188 1a110850 fd5ff06f jal x0, -44 +20353287ns 357193 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20353571ns 357198 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20353969ns 357205 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20354139ns 357208 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20354594ns 357216 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20354764ns 357219 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20355048ns 357224 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20355333ns 357229 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20355617ns 357234 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20356071ns 357242 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20356242ns 357245 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20356526ns 357250 1a110850 fd5ff06f jal x0, -44 +20356810ns 357255 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20357094ns 357260 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20357492ns 357267 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20357663ns 357270 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20358117ns 357278 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20358288ns 357281 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20358572ns 357286 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20358856ns 357291 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20359140ns 357296 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20359595ns 357304 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20359766ns 357307 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20360050ns 357312 1a110850 fd5ff06f jal x0, -44 +20360334ns 357317 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20360618ns 357322 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20361016ns 357329 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20361186ns 357332 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20361641ns 357340 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20361811ns 357343 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20362096ns 357348 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20362380ns 357353 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20362664ns 357358 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20363119ns 357366 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20363289ns 357369 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20363573ns 357374 1a110850 fd5ff06f jal x0, -44 +20363857ns 357379 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20364142ns 357384 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20364539ns 357391 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20364710ns 357394 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20365165ns 357402 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20365335ns 357405 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20365619ns 357410 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20365903ns 357415 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20366188ns 357420 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20366642ns 357428 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20366813ns 357431 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20367097ns 357436 1a110850 fd5ff06f jal x0, -44 +20367381ns 357441 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20367665ns 357446 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20368063ns 357453 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20368234ns 357456 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20368688ns 357464 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20368859ns 357467 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20369143ns 357472 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20369427ns 357477 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20369711ns 357482 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20370166ns 357490 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20370336ns 357493 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20370620ns 357498 1a110850 fd5ff06f jal x0, -44 +20370905ns 357503 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20371189ns 357508 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20371587ns 357515 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20371757ns 357518 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20372212ns 357526 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20372382ns 357529 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20372666ns 357534 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20372951ns 357539 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20373235ns 357544 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20373689ns 357552 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20373860ns 357555 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20374144ns 357560 1a110850 fd5ff06f jal x0, -44 +20374428ns 357565 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20374712ns 357570 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20375110ns 357577 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20375281ns 357580 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20375735ns 357588 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20375906ns 357591 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20376190ns 357596 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20376474ns 357601 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20376758ns 357606 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20377213ns 357614 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20377383ns 357617 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20377668ns 357622 1a110850 fd5ff06f jal x0, -44 +20377952ns 357627 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20378236ns 357632 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20378634ns 357639 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20378804ns 357642 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20379259ns 357650 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20379429ns 357653 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20379714ns 357658 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20379998ns 357663 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20380282ns 357668 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20380737ns 357676 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20380907ns 357679 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20381191ns 357684 1a110850 fd5ff06f jal x0, -44 +20381475ns 357689 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20381760ns 357694 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20382157ns 357701 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20382328ns 357704 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20382783ns 357712 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20382953ns 357715 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20383237ns 357720 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20383521ns 357725 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20383805ns 357730 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20384260ns 357738 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20384431ns 357741 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20384715ns 357746 1a110850 fd5ff06f jal x0, -44 +20384999ns 357751 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20385283ns 357756 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20385681ns 357763 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20385851ns 357766 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20386306ns 357774 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20386477ns 357777 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20386761ns 357782 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20387045ns 357787 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20387329ns 357792 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20387784ns 357800 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20387954ns 357803 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20388238ns 357808 1a110850 fd5ff06f jal x0, -44 +20388523ns 357813 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20388807ns 357818 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20389205ns 357825 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20389375ns 357828 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20389830ns 357836 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20390000ns 357839 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20390284ns 357844 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20390568ns 357849 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20390853ns 357854 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20391307ns 357862 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20391478ns 357865 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20391762ns 357870 1a110850 fd5ff06f jal x0, -44 +20392046ns 357875 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20392330ns 357880 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20392728ns 357887 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20392899ns 357890 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20393353ns 357898 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20393524ns 357901 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20393808ns 357906 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20394092ns 357911 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20394376ns 357916 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20394831ns 357924 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20395001ns 357927 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20395286ns 357932 1a110850 fd5ff06f jal x0, -44 +20395570ns 357937 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20395854ns 357942 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20396252ns 357949 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20396422ns 357952 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20396877ns 357960 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20397047ns 357963 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20397331ns 357968 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20397616ns 357973 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20397900ns 357978 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20398354ns 357986 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20398525ns 357989 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20398809ns 357994 1a110850 fd5ff06f jal x0, -44 +20399093ns 357999 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20399377ns 358004 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20399775ns 358011 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20399946ns 358014 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20400400ns 358022 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20400571ns 358025 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20400855ns 358030 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20401139ns 358035 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20401423ns 358040 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20401878ns 358048 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20402049ns 358051 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20402333ns 358056 1a110850 fd5ff06f jal x0, -44 +20402617ns 358061 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20402901ns 358066 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20403299ns 358073 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20403469ns 358076 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20403924ns 358084 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20404095ns 358087 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20404379ns 358092 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20404663ns 358097 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20404947ns 358102 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20405402ns 358110 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20405572ns 358113 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20405856ns 358118 1a110850 fd5ff06f jal x0, -44 +20406140ns 358123 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20406425ns 358128 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20406822ns 358135 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20406993ns 358138 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20407448ns 358146 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20407618ns 358149 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20407902ns 358154 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20408186ns 358159 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20408471ns 358164 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20408925ns 358172 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20409096ns 358175 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20409380ns 358180 1a110850 fd5ff06f jal x0, -44 +20409664ns 358185 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20409948ns 358190 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20410346ns 358197 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20410517ns 358200 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20410971ns 358208 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20411142ns 358211 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20411426ns 358216 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20411710ns 358221 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20411994ns 358226 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20412449ns 358234 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20412619ns 358237 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20412903ns 358242 1a110850 fd5ff06f jal x0, -44 +20413188ns 358247 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20413472ns 358252 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20413870ns 358259 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20414040ns 358262 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20414495ns 358270 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20414665ns 358273 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20414949ns 358278 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20415234ns 358283 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20415518ns 358288 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20415972ns 358296 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20416143ns 358299 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20416427ns 358304 1a110850 fd5ff06f jal x0, -44 +20416711ns 358309 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20416995ns 358314 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20417393ns 358321 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20417564ns 358324 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20418018ns 358332 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20418189ns 358335 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20418473ns 358340 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20418757ns 358345 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20419041ns 358350 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20419496ns 358358 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20419666ns 358361 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20419951ns 358366 1a110850 fd5ff06f jal x0, -44 +20420235ns 358371 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20420519ns 358376 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20420917ns 358383 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20421087ns 358386 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20421542ns 358394 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20421712ns 358397 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20421997ns 358402 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20422281ns 358407 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20422565ns 358412 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20423020ns 358420 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20423190ns 358423 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20423474ns 358428 1a110850 fd5ff06f jal x0, -44 +20423758ns 358433 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20424043ns 358438 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20424440ns 358445 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20424611ns 358448 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20425066ns 358456 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20425236ns 358459 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20425520ns 358464 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20425804ns 358469 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20426088ns 358474 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20426543ns 358482 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20426714ns 358485 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20426998ns 358490 1a110850 fd5ff06f jal x0, -44 +20427282ns 358495 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20427566ns 358500 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20427964ns 358507 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20428134ns 358510 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20428589ns 358518 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20428760ns 358521 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20429044ns 358526 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20429328ns 358531 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20429612ns 358536 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20430067ns 358544 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20430237ns 358547 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20430521ns 358552 1a110850 fd5ff06f jal x0, -44 +20430806ns 358557 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20431090ns 358562 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20431488ns 358569 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20431658ns 358572 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20432113ns 358580 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20432283ns 358583 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20432567ns 358588 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20432851ns 358593 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20433136ns 358598 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20433590ns 358606 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20433761ns 358609 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20434045ns 358614 1a110850 fd5ff06f jal x0, -44 +20434329ns 358619 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20434613ns 358624 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20435011ns 358631 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20435182ns 358634 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20435636ns 358642 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20435807ns 358645 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20436091ns 358650 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20436375ns 358655 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20436659ns 358660 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20437114ns 358668 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20437284ns 358671 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20437569ns 358676 1a110850 fd5ff06f jal x0, -44 +20437853ns 358681 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20438137ns 358686 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20438535ns 358693 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20438705ns 358696 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20439160ns 358704 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20439330ns 358707 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20439615ns 358712 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20439899ns 358717 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20440183ns 358722 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20440637ns 358730 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20440808ns 358733 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20441092ns 358738 1a110850 fd5ff06f jal x0, -44 +20441376ns 358743 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20441660ns 358748 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20442058ns 358755 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20442229ns 358758 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20442683ns 358766 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20442854ns 358769 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20443138ns 358774 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20443422ns 358779 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20443706ns 358784 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20444161ns 358792 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20444332ns 358795 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20444616ns 358800 1a110850 fd5ff06f jal x0, -44 +20444900ns 358805 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20445184ns 358810 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20445582ns 358817 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20445752ns 358820 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20446207ns 358828 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20446378ns 358831 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20446662ns 358836 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20446946ns 358841 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20447230ns 358846 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20447685ns 358854 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20447855ns 358857 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20448139ns 358862 1a110850 fd5ff06f jal x0, -44 +20448423ns 358867 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20448708ns 358872 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20449105ns 358879 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20449276ns 358882 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20449731ns 358890 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20449901ns 358893 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20450185ns 358898 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20450469ns 358903 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20450754ns 358908 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20451208ns 358916 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20451379ns 358919 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20451663ns 358924 1a110850 fd5ff06f jal x0, -44 +20451947ns 358929 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20452231ns 358934 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20452629ns 358941 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20452800ns 358944 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20453254ns 358952 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20453425ns 358955 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20453709ns 358960 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20453993ns 358965 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20454277ns 358970 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20454732ns 358978 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20454902ns 358981 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20455186ns 358986 1a110850 fd5ff06f jal x0, -44 +20455471ns 358991 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20455755ns 358996 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20456153ns 359003 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20456323ns 359006 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20456778ns 359014 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20456948ns 359017 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20457232ns 359022 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20457517ns 359027 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20457801ns 359032 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20458255ns 359040 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20458426ns 359043 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20458710ns 359048 1a110850 fd5ff06f jal x0, -44 +20458994ns 359053 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20459278ns 359058 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20459676ns 359065 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20459847ns 359068 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20460301ns 359076 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20460472ns 359079 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20460756ns 359084 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20461040ns 359089 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20461324ns 359094 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20461779ns 359102 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20461949ns 359105 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20462234ns 359110 1a110850 fd5ff06f jal x0, -44 +20462518ns 359115 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20462802ns 359120 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20463200ns 359127 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20463370ns 359130 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20463825ns 359138 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20463995ns 359141 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20464280ns 359146 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20464564ns 359151 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20464848ns 359156 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20465303ns 359164 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20465473ns 359167 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20465757ns 359172 1a110850 fd5ff06f jal x0, -44 +20466041ns 359177 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20466326ns 359182 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20466723ns 359189 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20466894ns 359192 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20467349ns 359200 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20467519ns 359203 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20467803ns 359208 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20468087ns 359213 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20468371ns 359218 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20468826ns 359226 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20468997ns 359229 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20469281ns 359234 1a110850 fd5ff06f jal x0, -44 +20469565ns 359239 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20469849ns 359244 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20470247ns 359251 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20470417ns 359254 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20470872ns 359262 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20471043ns 359265 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20471327ns 359270 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20471611ns 359275 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20471895ns 359280 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20472350ns 359288 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20472520ns 359291 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20472804ns 359296 1a110850 fd5ff06f jal x0, -44 +20473089ns 359301 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20473373ns 359306 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20473771ns 359313 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20473941ns 359316 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20474396ns 359324 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20474566ns 359327 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20474850ns 359332 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20475135ns 359337 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20475419ns 359342 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20475873ns 359350 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20476044ns 359353 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20476328ns 359358 1a110850 fd5ff06f jal x0, -44 +20476612ns 359363 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20476896ns 359368 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20477294ns 359375 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20477465ns 359378 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20477919ns 359386 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20478090ns 359389 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20478374ns 359394 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20478658ns 359399 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20478942ns 359404 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20479397ns 359412 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20479567ns 359415 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20479852ns 359420 1a110850 fd5ff06f jal x0, -44 +20480136ns 359425 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20480420ns 359430 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20480818ns 359437 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20480988ns 359440 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20481443ns 359448 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20481613ns 359451 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20481898ns 359456 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20482182ns 359461 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20482466ns 359466 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20482920ns 359474 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20483091ns 359477 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20483375ns 359482 1a110850 fd5ff06f jal x0, -44 +20483659ns 359487 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20483943ns 359492 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20484341ns 359499 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20484512ns 359502 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20484966ns 359510 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20485137ns 359513 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20485421ns 359518 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20485705ns 359523 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20485989ns 359528 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20486444ns 359536 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20486615ns 359539 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20486899ns 359544 1a110850 fd5ff06f jal x0, -44 +20487183ns 359549 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20487467ns 359554 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20487865ns 359561 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20488035ns 359564 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20488490ns 359572 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20488661ns 359575 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20488945ns 359580 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20489229ns 359585 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20489513ns 359590 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20489968ns 359598 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20490138ns 359601 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20490422ns 359606 1a110850 fd5ff06f jal x0, -44 +20490706ns 359611 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20490991ns 359616 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20491388ns 359623 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20491559ns 359626 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20492014ns 359634 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20492184ns 359637 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20492468ns 359642 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20492752ns 359647 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20493037ns 359652 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20493491ns 359660 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20493662ns 359663 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20493946ns 359668 1a110850 fd5ff06f jal x0, -44 +20494230ns 359673 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20494514ns 359678 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20494912ns 359685 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20495083ns 359688 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20495537ns 359696 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20495708ns 359699 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20495992ns 359704 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20496276ns 359709 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20496560ns 359714 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20497015ns 359722 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20497185ns 359725 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20497469ns 359730 1a110850 fd5ff06f jal x0, -44 +20497754ns 359735 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20498038ns 359740 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20498436ns 359747 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20498606ns 359750 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20499061ns 359758 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20499231ns 359761 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20499515ns 359766 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20499800ns 359771 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20500084ns 359776 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20500538ns 359784 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20500709ns 359787 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20500993ns 359792 1a110850 fd5ff06f jal x0, -44 +20501277ns 359797 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20501561ns 359802 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20501959ns 359809 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20502130ns 359812 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20502584ns 359820 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20502755ns 359823 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20503039ns 359828 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20503323ns 359833 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20503607ns 359838 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20504062ns 359846 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20504232ns 359849 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20504517ns 359854 1a110850 fd5ff06f jal x0, -44 +20504801ns 359859 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20505085ns 359864 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20505483ns 359871 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20505653ns 359874 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20506108ns 359882 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20506278ns 359885 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20506563ns 359890 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20506847ns 359895 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20507131ns 359900 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20507586ns 359908 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20507756ns 359911 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20508040ns 359916 1a110850 fd5ff06f jal x0, -44 +20508324ns 359921 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20508609ns 359926 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20509006ns 359933 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20509177ns 359936 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20509632ns 359944 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20509802ns 359947 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20510086ns 359952 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20510370ns 359957 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20510655ns 359962 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20511109ns 359970 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20511280ns 359973 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20511564ns 359978 1a110850 fd5ff06f jal x0, -44 +20511848ns 359983 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20512132ns 359988 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20512530ns 359995 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20512700ns 359998 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20513155ns 360006 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20513326ns 360009 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20513610ns 360014 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20513894ns 360019 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20514178ns 360024 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20514633ns 360032 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20514803ns 360035 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20515087ns 360040 1a110850 fd5ff06f jal x0, -44 +20515372ns 360045 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20515656ns 360050 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20516054ns 360057 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20516224ns 360060 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20516679ns 360068 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20516849ns 360071 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20517133ns 360076 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20517418ns 360081 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20517702ns 360086 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20518156ns 360094 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20518327ns 360097 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20518611ns 360102 1a110850 fd5ff06f jal x0, -44 +20518895ns 360107 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20519179ns 360112 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20519577ns 360119 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20519748ns 360122 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20520202ns 360130 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20520373ns 360133 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20520657ns 360138 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20520941ns 360143 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20521225ns 360148 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20521680ns 360156 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20521850ns 360159 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20522135ns 360164 1a110850 fd5ff06f jal x0, -44 +20522419ns 360169 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20522703ns 360174 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20523101ns 360181 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20523271ns 360184 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20523726ns 360192 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20523896ns 360195 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20524181ns 360200 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20524465ns 360205 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20524749ns 360210 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20525203ns 360218 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20525374ns 360221 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20525658ns 360226 1a110850 fd5ff06f jal x0, -44 +20525942ns 360231 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20526226ns 360236 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20526624ns 360243 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20526795ns 360246 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20527249ns 360254 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20527420ns 360257 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20527704ns 360262 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20527988ns 360267 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20528272ns 360272 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20528727ns 360280 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20528898ns 360283 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20529182ns 360288 1a110850 fd5ff06f jal x0, -44 +20529466ns 360293 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20529750ns 360298 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20530148ns 360305 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20530318ns 360308 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20530773ns 360316 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20530944ns 360319 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20531228ns 360324 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20531512ns 360329 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20531796ns 360334 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20532251ns 360342 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20532421ns 360345 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20532705ns 360350 1a110850 fd5ff06f jal x0, -44 +20532989ns 360355 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20533274ns 360360 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20533671ns 360367 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20533842ns 360370 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20534297ns 360378 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20534467ns 360381 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20534751ns 360386 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20535035ns 360391 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20535320ns 360396 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20535774ns 360404 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20535945ns 360407 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20536229ns 360412 1a110850 fd5ff06f jal x0, -44 +20536513ns 360417 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20536797ns 360422 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20537195ns 360429 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20537366ns 360432 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20537820ns 360440 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20537991ns 360443 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20538275ns 360448 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20538559ns 360453 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20538843ns 360458 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20539298ns 360466 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20539468ns 360469 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20539752ns 360474 1a110850 fd5ff06f jal x0, -44 +20540037ns 360479 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20540321ns 360484 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20540719ns 360491 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20540889ns 360494 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20541344ns 360502 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20541514ns 360505 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20541798ns 360510 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20542083ns 360515 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20542367ns 360520 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20542821ns 360528 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20542992ns 360531 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20543276ns 360536 1a110850 fd5ff06f jal x0, -44 +20543560ns 360541 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20543844ns 360546 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20544242ns 360553 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20544413ns 360556 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20544867ns 360564 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20545038ns 360567 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20545322ns 360572 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20545606ns 360577 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20545890ns 360582 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20546345ns 360590 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20546515ns 360593 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20546800ns 360598 1a110850 fd5ff06f jal x0, -44 +20547084ns 360603 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20547368ns 360608 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20547766ns 360615 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20547936ns 360618 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20548391ns 360626 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20548561ns 360629 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20548846ns 360634 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20549130ns 360639 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20549414ns 360644 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20549869ns 360652 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20550039ns 360655 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20550323ns 360660 1a110850 fd5ff06f jal x0, -44 +20550607ns 360665 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20550892ns 360670 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20551289ns 360677 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20551460ns 360680 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20551915ns 360688 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20552085ns 360691 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20552369ns 360696 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20552653ns 360701 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20552938ns 360706 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20553392ns 360714 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20553563ns 360717 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20553847ns 360722 1a110850 fd5ff06f jal x0, -44 +20554131ns 360727 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20554415ns 360732 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20554813ns 360739 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20554983ns 360742 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20555438ns 360750 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20555609ns 360753 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20555893ns 360758 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20556177ns 360763 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20556461ns 360768 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20556916ns 360776 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20557086ns 360779 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20557370ns 360784 1a110850 fd5ff06f jal x0, -44 +20557655ns 360789 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20557939ns 360794 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20558337ns 360801 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20558507ns 360804 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20558962ns 360812 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20559132ns 360815 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20559416ns 360820 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20559701ns 360825 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20559985ns 360830 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20560439ns 360838 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20560610ns 360841 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20560894ns 360846 1a110850 fd5ff06f jal x0, -44 +20561178ns 360851 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20561462ns 360856 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20561860ns 360863 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20562031ns 360866 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20562485ns 360874 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20562656ns 360877 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20562940ns 360882 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20563224ns 360887 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20563508ns 360892 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20563963ns 360900 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20564133ns 360903 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20564418ns 360908 1a110850 fd5ff06f jal x0, -44 +20564702ns 360913 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20564986ns 360918 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20565384ns 360925 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20565554ns 360928 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20566009ns 360936 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20566179ns 360939 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20566464ns 360944 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20566748ns 360949 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20567032ns 360954 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20567487ns 360962 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20567657ns 360965 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20567941ns 360970 1a110850 fd5ff06f jal x0, -44 +20568225ns 360975 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20568509ns 360980 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20568907ns 360987 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20569078ns 360990 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20569532ns 360998 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20569703ns 361001 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20569987ns 361006 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20570271ns 361011 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20570555ns 361016 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20571010ns 361024 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20571181ns 361027 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20571465ns 361032 1a110850 fd5ff06f jal x0, -44 +20571749ns 361037 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20572033ns 361042 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20572431ns 361049 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20572601ns 361052 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20573056ns 361060 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20573227ns 361063 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20573511ns 361068 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20573795ns 361073 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20574079ns 361078 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20574534ns 361086 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20574704ns 361089 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20574988ns 361094 1a110850 fd5ff06f jal x0, -44 +20575272ns 361099 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20575557ns 361104 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20575954ns 361111 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20576125ns 361114 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20576580ns 361122 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20576750ns 361125 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20577034ns 361130 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20577318ns 361135 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20577603ns 361140 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20578057ns 361148 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20578228ns 361151 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20578512ns 361156 1a110850 fd5ff06f jal x0, -44 +20578796ns 361161 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20579080ns 361166 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20579478ns 361173 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20579649ns 361176 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20580103ns 361184 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20580274ns 361187 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20580558ns 361192 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20580842ns 361197 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20581126ns 361202 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20581581ns 361210 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20581751ns 361213 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20582035ns 361218 1a110850 fd5ff06f jal x0, -44 +20582320ns 361223 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20582604ns 361228 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20583002ns 361235 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20583172ns 361238 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20583627ns 361246 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20583797ns 361249 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20584081ns 361254 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20584366ns 361259 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20584650ns 361264 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20585104ns 361272 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20585275ns 361275 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20585559ns 361280 1a110850 fd5ff06f jal x0, -44 +20585843ns 361285 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20586127ns 361290 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20586525ns 361297 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20586696ns 361300 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20587150ns 361308 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20587321ns 361311 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20587605ns 361316 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20587889ns 361321 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20588173ns 361326 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20588628ns 361334 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20588799ns 361337 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20589083ns 361342 1a110850 fd5ff06f jal x0, -44 +20589367ns 361347 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20589651ns 361352 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20590049ns 361359 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20590219ns 361362 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20590674ns 361370 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20590844ns 361373 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20591129ns 361378 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20591413ns 361383 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20591697ns 361388 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20592152ns 361396 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20592322ns 361399 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20592606ns 361404 1a110850 fd5ff06f jal x0, -44 +20592890ns 361409 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20593175ns 361414 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20593572ns 361421 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20593743ns 361424 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20594198ns 361432 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20594368ns 361435 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20594652ns 361440 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20594936ns 361445 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20595221ns 361450 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20595675ns 361458 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20595846ns 361461 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20596130ns 361466 1a110850 fd5ff06f jal x0, -44 +20596414ns 361471 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20596698ns 361476 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20597096ns 361483 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20597266ns 361486 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20597721ns 361494 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20597892ns 361497 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20598176ns 361502 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20598460ns 361507 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20598744ns 361512 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20599199ns 361520 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20599369ns 361523 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20599653ns 361528 1a110850 fd5ff06f jal x0, -44 +20599938ns 361533 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20600222ns 361538 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20600620ns 361545 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20600790ns 361548 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20601245ns 361556 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20601415ns 361559 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20601699ns 361564 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20601984ns 361569 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20602268ns 361574 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20602722ns 361582 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20602893ns 361585 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20603177ns 361590 1a110850 fd5ff06f jal x0, -44 +20603461ns 361595 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20603745ns 361600 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20604143ns 361607 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20604314ns 361610 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20604768ns 361618 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20604939ns 361621 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20605223ns 361626 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20605507ns 361631 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20605791ns 361636 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20606246ns 361644 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20606416ns 361647 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20606701ns 361652 1a110850 fd5ff06f jal x0, -44 +20606985ns 361657 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20607269ns 361662 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20607667ns 361669 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20607837ns 361672 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20608292ns 361680 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20608462ns 361683 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20608747ns 361688 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20609031ns 361693 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20609315ns 361698 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20609770ns 361706 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20609940ns 361709 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20610224ns 361714 1a110850 fd5ff06f jal x0, -44 +20610508ns 361719 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20610792ns 361724 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20611190ns 361731 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20611361ns 361734 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20611815ns 361742 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20611986ns 361745 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20612270ns 361750 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20612554ns 361755 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20612838ns 361760 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20613293ns 361768 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20613464ns 361771 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20613748ns 361776 1a110850 fd5ff06f jal x0, -44 +20614032ns 361781 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20614316ns 361786 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20614714ns 361793 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20614884ns 361796 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20615339ns 361804 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20615510ns 361807 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20615794ns 361812 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20616078ns 361817 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20616362ns 361822 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20616817ns 361830 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20616987ns 361833 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20617271ns 361838 1a110850 fd5ff06f jal x0, -44 +20617555ns 361843 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20617840ns 361848 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20618237ns 361855 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20618408ns 361858 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20618863ns 361866 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20619033ns 361869 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20619317ns 361874 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20619601ns 361879 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20619886ns 361884 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20620340ns 361892 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20620511ns 361895 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20620795ns 361900 1a110850 fd5ff06f jal x0, -44 +20621079ns 361905 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20621363ns 361910 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20621761ns 361917 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20621932ns 361920 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20622386ns 361928 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20622557ns 361931 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20622841ns 361936 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20623125ns 361941 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20623409ns 361946 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20623864ns 361954 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20624034ns 361957 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20624319ns 361962 1a110850 fd5ff06f jal x0, -44 +20624603ns 361967 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20624887ns 361972 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20625285ns 361979 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20625455ns 361982 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20625910ns 361990 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20626080ns 361993 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20626364ns 361998 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20626649ns 362003 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20626933ns 362008 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20627387ns 362016 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20627558ns 362019 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20627842ns 362024 1a110850 fd5ff06f jal x0, -44 +20628126ns 362029 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20628410ns 362034 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20628808ns 362041 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20628979ns 362044 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20629433ns 362052 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20629604ns 362055 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20629888ns 362060 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20630172ns 362065 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20630456ns 362070 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20630911ns 362078 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20631082ns 362081 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20631366ns 362086 1a110850 fd5ff06f jal x0, -44 +20631650ns 362091 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20631934ns 362096 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20632332ns 362103 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20632502ns 362106 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20632957ns 362114 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20633127ns 362117 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20633412ns 362122 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20633696ns 362127 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20633980ns 362132 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20634435ns 362140 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20634605ns 362143 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20634889ns 362148 1a110850 fd5ff06f jal x0, -44 +20635173ns 362153 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20635458ns 362158 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20635855ns 362165 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20636026ns 362168 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20636481ns 362176 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20636651ns 362179 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20636935ns 362184 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20637219ns 362189 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20637504ns 362194 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20637958ns 362202 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20638129ns 362205 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20638413ns 362210 1a110850 fd5ff06f jal x0, -44 +20638697ns 362215 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20638981ns 362220 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20639379ns 362227 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20639549ns 362230 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20640004ns 362238 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20640175ns 362241 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20640459ns 362246 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20640743ns 362251 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20641027ns 362256 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20641482ns 362264 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20641652ns 362267 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20641936ns 362272 1a110850 fd5ff06f jal x0, -44 +20642221ns 362277 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20642505ns 362282 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20642903ns 362289 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20643073ns 362292 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20643528ns 362300 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20643698ns 362303 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20643982ns 362308 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20644267ns 362313 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20644551ns 362318 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20645005ns 362326 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20645176ns 362329 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20645460ns 362334 1a110850 fd5ff06f jal x0, -44 +20645744ns 362339 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20646028ns 362344 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20646426ns 362351 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20646597ns 362354 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20647051ns 362362 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20647222ns 362365 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20647506ns 362370 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20647790ns 362375 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20648074ns 362380 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20648529ns 362388 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20648699ns 362391 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20648984ns 362396 1a110850 fd5ff06f jal x0, -44 +20649268ns 362401 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20649552ns 362406 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20649950ns 362413 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20650120ns 362416 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20650575ns 362424 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20650745ns 362427 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20651030ns 362432 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20651314ns 362437 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20651598ns 362442 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20652053ns 362450 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20652223ns 362453 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20652507ns 362458 1a110850 fd5ff06f jal x0, -44 +20652791ns 362463 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20653075ns 362468 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20653473ns 362475 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20653644ns 362478 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20654098ns 362486 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20654269ns 362489 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20654553ns 362494 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20654837ns 362499 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20655121ns 362504 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20655576ns 362512 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20655747ns 362515 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20656031ns 362520 1a110850 fd5ff06f jal x0, -44 +20656315ns 362525 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20656599ns 362530 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20656997ns 362537 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20657167ns 362540 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20657622ns 362548 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20657793ns 362551 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20658077ns 362556 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20658361ns 362561 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20658645ns 362566 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20659100ns 362574 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20659270ns 362577 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20659554ns 362582 1a110850 fd5ff06f jal x0, -44 +20659839ns 362587 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20660123ns 362592 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20660520ns 362599 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20660691ns 362602 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20661146ns 362610 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20661316ns 362613 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20661600ns 362618 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20661884ns 362623 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20662169ns 362628 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20662623ns 362636 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20662794ns 362639 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20663078ns 362644 1a110850 fd5ff06f jal x0, -44 +20663362ns 362649 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20663646ns 362654 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20664044ns 362661 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20664215ns 362664 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20664669ns 362672 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20664840ns 362675 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20665124ns 362680 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20665408ns 362685 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20665692ns 362690 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20666147ns 362698 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20666317ns 362701 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20666602ns 362706 1a110850 fd5ff06f jal x0, -44 +20666886ns 362711 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20667170ns 362716 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20667568ns 362723 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20667738ns 362726 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20668193ns 362734 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20668363ns 362737 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20668647ns 362742 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20668932ns 362747 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20669216ns 362752 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20669670ns 362760 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20669841ns 362763 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20670125ns 362768 1a110850 fd5ff06f jal x0, -44 +20670409ns 362773 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20670693ns 362778 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20671091ns 362785 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20671262ns 362788 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20671716ns 362796 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20671887ns 362799 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20672171ns 362804 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20672455ns 362809 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20672739ns 362814 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20673194ns 362822 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20673365ns 362825 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20673649ns 362830 1a110850 fd5ff06f jal x0, -44 +20673933ns 362835 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20674217ns 362840 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20674615ns 362847 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20674785ns 362850 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20675240ns 362858 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20675410ns 362861 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20675695ns 362866 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20675979ns 362871 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20676263ns 362876 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20676718ns 362884 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20676888ns 362887 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20677172ns 362892 1a110850 fd5ff06f jal x0, -44 +20677456ns 362897 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20677741ns 362902 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20678138ns 362909 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20678309ns 362912 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20678764ns 362920 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20678934ns 362923 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20679218ns 362928 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20679502ns 362933 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20679787ns 362938 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20680241ns 362946 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20680412ns 362949 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20680696ns 362954 1a110850 fd5ff06f jal x0, -44 +20680980ns 362959 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20681264ns 362964 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20681662ns 362971 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20681832ns 362974 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20682287ns 362982 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20682458ns 362985 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20682742ns 362990 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20683026ns 362995 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20683310ns 363000 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20683765ns 363008 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20683935ns 363011 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20684219ns 363016 1a110850 fd5ff06f jal x0, -44 +20684504ns 363021 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20684788ns 363026 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20685186ns 363033 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20685356ns 363036 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20685811ns 363044 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20685981ns 363047 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20686265ns 363052 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20686550ns 363057 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20686834ns 363062 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20687288ns 363070 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20687459ns 363073 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20687743ns 363078 1a110850 fd5ff06f jal x0, -44 +20688027ns 363083 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20688311ns 363088 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20688709ns 363095 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20688880ns 363098 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20689334ns 363106 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20689505ns 363109 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20689789ns 363114 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20690073ns 363119 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20690357ns 363124 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20690812ns 363132 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20690982ns 363135 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20691267ns 363140 1a110850 fd5ff06f jal x0, -44 +20691551ns 363145 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20691835ns 363150 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20692233ns 363157 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20692403ns 363160 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20692858ns 363168 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20693028ns 363171 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20693313ns 363176 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20693597ns 363181 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20693881ns 363186 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20694336ns 363194 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20694506ns 363197 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20694790ns 363202 1a110850 fd5ff06f jal x0, -44 +20695074ns 363207 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20695359ns 363212 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20695756ns 363219 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20695927ns 363222 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20696381ns 363230 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20696552ns 363233 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20696836ns 363238 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20697120ns 363243 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20697404ns 363248 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20697859ns 363256 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20698030ns 363259 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20698314ns 363264 1a110850 fd5ff06f jal x0, -44 +20698598ns 363269 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20698882ns 363274 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20699280ns 363281 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20699450ns 363284 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20699905ns 363292 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20700076ns 363295 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20700360ns 363300 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20700644ns 363305 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20700928ns 363310 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20701383ns 363318 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20701553ns 363321 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20701837ns 363326 1a110850 fd5ff06f jal x0, -44 +20702122ns 363331 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20702406ns 363336 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20702803ns 363343 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20702974ns 363346 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20703429ns 363354 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20703599ns 363357 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20703883ns 363362 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20704167ns 363367 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20704452ns 363372 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20704906ns 363380 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20705077ns 363383 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20705361ns 363388 1a110850 fd5ff06f jal x0, -44 +20705645ns 363393 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20705929ns 363398 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20706327ns 363405 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20706498ns 363408 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20706952ns 363416 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20707123ns 363419 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20707407ns 363424 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20707691ns 363429 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20707975ns 363434 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20708430ns 363442 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20708600ns 363445 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20708885ns 363450 1a110850 fd5ff06f jal x0, -44 +20709169ns 363455 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20709453ns 363460 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20709851ns 363467 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20710021ns 363470 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20710476ns 363478 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20710646ns 363481 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20710930ns 363486 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20711215ns 363491 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20711499ns 363496 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20711953ns 363504 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20712124ns 363507 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20712408ns 363512 1a110850 fd5ff06f jal x0, -44 +20712692ns 363517 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20712976ns 363522 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20713374ns 363529 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20713545ns 363532 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20713999ns 363540 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20714170ns 363543 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20714454ns 363548 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20714738ns 363553 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20715022ns 363558 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20715477ns 363566 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20715648ns 363569 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20715932ns 363574 1a110850 fd5ff06f jal x0, -44 +20716216ns 363579 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20716500ns 363584 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20716898ns 363591 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20717068ns 363594 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20717523ns 363602 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20717693ns 363605 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20717978ns 363610 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20718262ns 363615 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20718546ns 363620 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20719001ns 363628 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20719171ns 363631 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20719455ns 363636 1a110850 fd5ff06f jal x0, -44 +20719739ns 363641 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20720024ns 363646 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20720421ns 363653 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20720592ns 363656 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20721047ns 363664 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20721217ns 363667 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20721501ns 363672 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20721785ns 363677 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20722070ns 363682 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20722524ns 363690 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20722695ns 363693 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20722979ns 363698 1a110850 fd5ff06f jal x0, -44 +20723263ns 363703 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20723547ns 363708 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20723945ns 363715 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20724115ns 363718 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20724570ns 363726 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20724741ns 363729 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20725025ns 363734 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20725309ns 363739 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20725593ns 363744 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20726048ns 363752 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20726218ns 363755 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20726502ns 363760 1a110850 fd5ff06f jal x0, -44 +20726787ns 363765 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20727071ns 363770 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20727469ns 363777 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20727639ns 363780 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20728094ns 363788 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20728264ns 363791 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20728548ns 363796 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20728833ns 363801 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20729117ns 363806 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20729571ns 363814 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20729742ns 363817 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20730026ns 363822 1a110850 fd5ff06f jal x0, -44 +20730310ns 363827 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20730594ns 363832 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20730992ns 363839 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20731163ns 363842 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20731617ns 363850 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20731788ns 363853 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20732072ns 363858 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20732356ns 363863 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20732640ns 363868 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20733095ns 363876 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20733265ns 363879 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20733550ns 363884 1a110850 fd5ff06f jal x0, -44 +20733834ns 363889 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20734118ns 363894 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20734516ns 363901 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20734686ns 363904 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20735141ns 363912 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20735311ns 363915 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20735596ns 363920 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20735880ns 363925 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20736164ns 363930 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20736619ns 363938 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20736789ns 363941 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20737073ns 363946 1a110850 fd5ff06f jal x0, -44 +20737357ns 363951 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20737642ns 363956 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20738039ns 363963 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20738210ns 363966 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20738664ns 363974 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20738835ns 363977 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20739119ns 363982 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20739403ns 363987 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20739687ns 363992 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20740142ns 364000 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20740313ns 364003 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20740597ns 364008 1a110850 fd5ff06f jal x0, -44 +20740881ns 364013 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20741165ns 364018 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20741563ns 364025 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20741733ns 364028 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20742188ns 364036 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20742359ns 364039 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20742643ns 364044 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20742927ns 364049 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20743211ns 364054 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20743666ns 364062 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20743836ns 364065 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20744120ns 364070 1a110850 fd5ff06f jal x0, -44 +20744405ns 364075 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20744689ns 364080 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20745087ns 364087 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20745257ns 364090 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20745712ns 364098 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20745882ns 364101 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20746166ns 364106 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20746450ns 364111 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20746735ns 364116 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20747189ns 364124 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20747360ns 364127 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20747644ns 364132 1a110850 fd5ff06f jal x0, -44 +20747928ns 364137 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20748212ns 364142 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20748610ns 364149 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20748781ns 364152 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20749235ns 364160 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20749406ns 364163 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20749690ns 364168 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20749974ns 364173 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20750258ns 364178 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20750713ns 364186 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20750883ns 364189 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20751168ns 364194 1a110850 fd5ff06f jal x0, -44 +20751452ns 364199 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20751736ns 364204 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20752134ns 364211 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20752304ns 364214 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20752759ns 364222 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20752929ns 364225 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20753213ns 364230 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20753498ns 364235 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20753782ns 364240 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20754236ns 364248 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20754407ns 364251 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20754691ns 364256 1a110850 fd5ff06f jal x0, -44 +20754975ns 364261 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20755259ns 364266 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20755657ns 364273 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20755828ns 364276 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20756282ns 364284 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20756453ns 364287 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20756737ns 364292 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20757021ns 364297 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20757305ns 364302 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20757760ns 364310 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20757931ns 364313 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20758215ns 364318 1a110850 fd5ff06f jal x0, -44 +20758499ns 364323 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20758783ns 364328 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20759181ns 364335 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20759351ns 364338 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20759806ns 364346 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20759976ns 364349 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20760261ns 364354 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20760545ns 364359 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20760829ns 364364 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20761284ns 364372 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20761454ns 364375 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20761738ns 364380 1a110850 fd5ff06f jal x0, -44 +20762022ns 364385 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20762307ns 364390 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20762704ns 364397 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20762875ns 364400 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20763330ns 364408 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20763500ns 364411 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20763784ns 364416 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20764068ns 364421 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20764353ns 364426 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20764807ns 364434 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20764978ns 364437 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20765262ns 364442 1a110850 fd5ff06f jal x0, -44 +20765546ns 364447 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20765830ns 364452 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20766228ns 364459 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20766399ns 364462 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20766853ns 364470 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20767024ns 364473 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20767308ns 364478 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20767592ns 364483 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20767876ns 364488 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20768331ns 364496 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20768501ns 364499 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20768785ns 364504 1a110850 fd5ff06f jal x0, -44 +20769070ns 364509 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20769354ns 364514 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20769752ns 364521 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20769922ns 364524 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20770377ns 364532 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20770547ns 364535 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20770831ns 364540 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20771116ns 364545 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20771400ns 364550 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20771854ns 364558 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20772025ns 364561 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20772309ns 364566 1a110850 fd5ff06f jal x0, -44 +20772593ns 364571 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20772877ns 364576 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20773275ns 364583 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20773446ns 364586 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20773900ns 364594 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20774071ns 364597 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20774355ns 364602 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20774639ns 364607 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20774923ns 364612 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20775378ns 364620 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20775548ns 364623 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20775833ns 364628 1a110850 fd5ff06f jal x0, -44 +20776117ns 364633 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20776401ns 364638 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20776799ns 364645 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20776969ns 364648 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20777424ns 364656 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20777594ns 364659 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20777879ns 364664 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20778163ns 364669 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20778447ns 364674 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20778902ns 364682 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20779072ns 364685 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20779356ns 364690 1a110850 fd5ff06f jal x0, -44 +20779640ns 364695 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20779925ns 364700 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20780322ns 364707 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20780493ns 364710 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20780947ns 364718 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20781118ns 364721 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20781402ns 364726 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20781686ns 364731 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20781970ns 364736 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20782425ns 364744 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20782596ns 364747 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20782880ns 364752 1a110850 fd5ff06f jal x0, -44 +20783164ns 364757 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20783448ns 364762 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20783846ns 364769 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20784016ns 364772 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20784471ns 364780 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20784642ns 364783 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20784926ns 364788 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20785210ns 364793 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20785494ns 364798 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20785949ns 364806 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20786119ns 364809 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20786403ns 364814 1a110850 fd5ff06f jal x0, -44 +20786688ns 364819 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20786972ns 364824 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20787370ns 364831 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20787540ns 364834 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20787995ns 364842 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20788165ns 364845 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20788449ns 364850 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20788733ns 364855 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20789018ns 364860 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20789472ns 364868 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20789643ns 364871 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20789927ns 364876 1a110850 fd5ff06f jal x0, -44 +20790211ns 364881 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20790495ns 364886 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20790893ns 364893 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20791064ns 364896 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20791518ns 364904 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20791689ns 364907 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20791973ns 364912 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20792257ns 364917 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20792541ns 364922 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20792996ns 364930 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20793166ns 364933 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20793451ns 364938 1a110850 fd5ff06f jal x0, -44 +20793735ns 364943 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20794019ns 364948 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20794417ns 364955 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20794587ns 364958 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20795042ns 364966 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20795212ns 364969 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20795496ns 364974 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20795781ns 364979 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20796065ns 364984 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20796519ns 364992 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20796690ns 364995 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20796974ns 365000 1a110850 fd5ff06f jal x0, -44 +20797258ns 365005 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20797542ns 365010 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20797940ns 365017 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20798111ns 365020 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20798565ns 365028 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20798736ns 365031 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20799020ns 365036 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20799304ns 365041 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20799588ns 365046 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20800043ns 365054 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20800214ns 365057 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20800498ns 365062 1a110850 fd5ff06f jal x0, -44 +20800782ns 365067 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20801066ns 365072 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20801464ns 365079 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20801634ns 365082 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20802089ns 365090 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20802259ns 365093 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20802544ns 365098 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20802828ns 365103 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20803112ns 365108 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20803567ns 365116 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20803737ns 365119 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20804021ns 365124 1a110850 fd5ff06f jal x0, -44 +20804305ns 365129 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20804590ns 365134 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20804987ns 365141 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20805158ns 365144 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20805613ns 365152 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20805783ns 365155 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20806067ns 365160 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20806351ns 365165 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20806636ns 365170 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20807090ns 365178 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20807261ns 365181 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20807545ns 365186 1a110850 fd5ff06f jal x0, -44 +20807829ns 365191 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20808113ns 365196 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20808511ns 365203 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20808682ns 365206 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20809136ns 365214 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20809307ns 365217 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20809591ns 365222 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20809875ns 365227 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20810159ns 365232 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20810614ns 365240 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20810784ns 365243 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20811068ns 365248 1a110850 fd5ff06f jal x0, -44 +20811353ns 365253 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20811637ns 365258 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20812035ns 365265 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20812205ns 365268 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20812660ns 365276 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20812830ns 365279 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20813114ns 365284 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20813399ns 365289 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20813683ns 365294 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20814137ns 365302 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20814308ns 365305 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20814592ns 365310 1a110850 fd5ff06f jal x0, -44 +20814876ns 365315 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20815160ns 365320 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20815558ns 365327 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20815729ns 365330 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20816183ns 365338 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20816354ns 365341 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20816638ns 365346 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20816922ns 365351 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20817206ns 365356 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20817661ns 365364 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20817831ns 365367 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20818116ns 365372 1a110850 fd5ff06f jal x0, -44 +20818400ns 365377 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20818684ns 365382 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20819082ns 365389 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20819252ns 365392 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20819707ns 365400 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20819877ns 365403 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20820162ns 365408 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20820446ns 365413 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20820730ns 365418 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20821185ns 365426 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20821355ns 365429 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20821639ns 365434 1a110850 fd5ff06f jal x0, -44 +20821923ns 365439 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20822208ns 365444 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20822605ns 365451 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20822776ns 365454 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20823231ns 365462 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20823401ns 365465 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20823685ns 365470 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20823969ns 365475 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20824253ns 365480 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20824708ns 365488 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20824879ns 365491 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20825163ns 365496 1a110850 fd5ff06f jal x0, -44 +20825447ns 365501 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20825731ns 365506 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20826129ns 365513 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20826299ns 365516 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20826754ns 365524 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20826925ns 365527 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20827209ns 365532 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20827493ns 365537 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20827777ns 365542 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20828232ns 365550 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20828402ns 365553 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20828686ns 365558 1a110850 fd5ff06f jal x0, -44 +20828971ns 365563 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20829255ns 365568 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20829653ns 365575 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20829823ns 365578 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20830278ns 365586 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20830448ns 365589 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20830732ns 365594 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20831016ns 365599 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20831301ns 365604 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20831755ns 365612 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20831926ns 365615 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20832210ns 365620 1a110850 fd5ff06f jal x0, -44 +20832494ns 365625 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20832778ns 365630 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20833176ns 365637 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20833347ns 365640 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20833801ns 365648 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20833972ns 365651 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20834256ns 365656 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20834540ns 365661 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20834824ns 365666 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20835279ns 365674 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20835449ns 365677 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20835734ns 365682 1a110850 fd5ff06f jal x0, -44 +20836018ns 365687 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20836302ns 365692 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20836700ns 365699 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20836870ns 365702 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20837325ns 365710 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20837495ns 365713 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20837779ns 365718 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20838064ns 365723 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20838348ns 365728 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20838802ns 365736 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20838973ns 365739 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20839257ns 365744 1a110850 fd5ff06f jal x0, -44 +20839541ns 365749 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20839825ns 365754 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20840223ns 365761 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20840394ns 365764 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20840848ns 365772 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20841019ns 365775 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20841303ns 365780 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20841587ns 365785 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20841871ns 365790 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20842326ns 365798 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20842497ns 365801 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20842781ns 365806 1a110850 fd5ff06f jal x0, -44 +20843065ns 365811 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20843349ns 365816 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20843747ns 365823 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20843917ns 365826 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20844372ns 365834 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20844543ns 365837 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20844827ns 365842 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20845111ns 365847 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20845395ns 365852 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20845850ns 365860 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20846020ns 365863 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20846304ns 365868 1a110850 fd5ff06f jal x0, -44 +20846588ns 365873 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20846873ns 365878 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20847270ns 365885 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20847441ns 365888 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20847896ns 365896 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20848066ns 365899 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20848350ns 365904 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20848634ns 365909 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20848919ns 365914 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20849373ns 365922 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20849544ns 365925 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20849828ns 365930 1a110850 fd5ff06f jal x0, -44 +20850112ns 365935 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20850396ns 365940 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20850794ns 365947 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20850965ns 365950 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20851419ns 365958 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20851590ns 365961 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20851874ns 365966 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20852158ns 365971 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20852442ns 365976 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20852897ns 365984 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20853067ns 365987 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20853351ns 365992 1a110850 fd5ff06f jal x0, -44 +20853636ns 365997 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20853920ns 366002 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20854318ns 366009 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20854488ns 366012 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20854943ns 366020 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20855113ns 366023 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20855397ns 366028 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20855682ns 366033 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20855966ns 366038 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20856420ns 366046 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20856591ns 366049 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20856875ns 366054 1a110850 fd5ff06f jal x0, -44 +20857159ns 366059 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20857443ns 366064 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20857841ns 366071 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20858012ns 366074 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20858466ns 366082 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20858637ns 366085 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20858921ns 366090 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20859205ns 366095 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20859489ns 366100 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20859944ns 366108 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20860114ns 366111 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20860399ns 366116 1a110850 fd5ff06f jal x0, -44 +20860683ns 366121 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20860967ns 366126 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20861365ns 366133 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20861535ns 366136 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20861990ns 366144 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20862160ns 366147 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20862445ns 366152 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20862729ns 366157 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20863013ns 366162 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20863468ns 366170 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20863638ns 366173 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20863922ns 366178 1a110850 fd5ff06f jal x0, -44 +20864206ns 366183 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20864491ns 366188 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20864888ns 366195 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20865059ns 366198 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20865514ns 366206 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20865684ns 366209 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20865968ns 366214 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20866252ns 366219 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20866536ns 366224 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20866991ns 366232 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20867162ns 366235 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20867446ns 366240 1a110850 fd5ff06f jal x0, -44 +20867730ns 366245 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20868014ns 366250 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20868412ns 366257 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20868582ns 366260 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20869037ns 366268 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20869208ns 366271 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20869492ns 366276 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20869776ns 366281 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20870060ns 366286 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20870515ns 366294 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20870685ns 366297 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20870969ns 366302 1a110850 fd5ff06f jal x0, -44 +20871254ns 366307 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20871538ns 366312 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20871936ns 366319 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20872106ns 366322 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20872561ns 366330 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20872731ns 366333 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20873015ns 366338 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20873299ns 366343 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20873584ns 366348 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20874038ns 366356 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20874209ns 366359 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20874493ns 366364 1a110850 fd5ff06f jal x0, -44 +20874777ns 366369 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20875061ns 366374 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20875459ns 366381 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20875630ns 366384 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20876084ns 366392 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20876255ns 366395 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20876539ns 366400 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20876823ns 366405 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20877107ns 366410 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20877562ns 366418 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20877732ns 366421 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20878017ns 366426 1a110850 fd5ff06f jal x0, -44 +20878301ns 366431 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20878585ns 366436 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20878983ns 366443 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20879153ns 366446 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20879608ns 366454 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20879778ns 366457 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20880063ns 366462 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20880347ns 366467 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20880631ns 366472 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20881085ns 366480 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20881256ns 366483 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20881540ns 366488 1a110850 fd5ff06f jal x0, -44 +20881824ns 366493 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20882108ns 366498 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20882506ns 366505 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20882677ns 366508 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20883131ns 366516 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20883302ns 366519 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20883586ns 366524 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20883870ns 366529 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20884154ns 366534 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20884609ns 366542 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20884780ns 366545 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20885064ns 366550 1a110850 fd5ff06f jal x0, -44 +20885348ns 366555 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20885632ns 366560 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20886030ns 366567 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20886200ns 366570 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20886655ns 366578 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20886826ns 366581 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20887110ns 366586 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20887394ns 366591 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20887678ns 366596 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20888133ns 366604 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20888303ns 366607 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20888587ns 366612 1a110850 fd5ff06f jal x0, -44 +20888871ns 366617 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20889156ns 366622 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20889553ns 366629 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20889724ns 366632 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20890179ns 366640 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20890349ns 366643 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20890633ns 366648 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20890917ns 366653 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20891202ns 366658 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20891656ns 366666 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20891827ns 366669 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20892111ns 366674 1a110850 fd5ff06f jal x0, -44 +20892395ns 366679 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20892679ns 366684 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20893077ns 366691 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20893248ns 366694 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20893702ns 366702 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20893873ns 366705 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20894157ns 366710 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20894441ns 366715 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20894725ns 366720 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20895180ns 366728 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20895350ns 366731 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20895634ns 366736 1a110850 fd5ff06f jal x0, -44 +20895919ns 366741 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20896203ns 366746 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20896601ns 366753 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20896771ns 366756 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20897226ns 366764 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20897396ns 366767 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20897680ns 366772 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20897965ns 366777 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20898249ns 366782 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20898703ns 366790 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20898874ns 366793 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20899158ns 366798 1a110850 fd5ff06f jal x0, -44 +20899442ns 366803 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20899726ns 366808 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20900124ns 366815 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20900295ns 366818 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20900749ns 366826 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20900920ns 366829 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20901204ns 366834 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20901488ns 366839 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20901772ns 366844 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20902227ns 366852 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20902397ns 366855 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20902682ns 366860 1a110850 fd5ff06f jal x0, -44 +20902966ns 366865 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20903250ns 366870 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20903648ns 366877 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20903818ns 366880 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20904273ns 366888 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20904443ns 366891 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20904728ns 366896 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20905012ns 366901 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20905296ns 366906 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20905751ns 366914 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20905921ns 366917 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20906205ns 366922 1a110850 fd5ff06f jal x0, -44 +20906489ns 366927 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20906774ns 366932 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20907171ns 366939 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20907342ns 366942 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20907797ns 366950 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20907967ns 366953 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20908251ns 366958 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20908535ns 366963 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20908819ns 366968 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20909274ns 366976 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20909445ns 366979 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20909729ns 366984 1a110850 fd5ff06f jal x0, -44 +20910013ns 366989 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20910297ns 366994 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20910695ns 367001 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20910865ns 367004 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20911320ns 367012 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20911491ns 367015 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20911775ns 367020 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20912059ns 367025 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20912343ns 367030 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20912798ns 367038 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20912968ns 367041 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20913252ns 367046 1a110850 fd5ff06f jal x0, -44 +20913537ns 367051 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20913821ns 367056 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20914219ns 367063 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20914389ns 367066 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20914844ns 367074 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20915014ns 367077 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20915298ns 367082 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20915583ns 367087 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20915867ns 367092 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20916321ns 367100 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20916492ns 367103 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20916776ns 367108 1a110850 fd5ff06f jal x0, -44 +20917060ns 367113 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20917344ns 367118 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20917742ns 367125 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20917913ns 367128 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20918367ns 367136 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20918538ns 367139 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20918822ns 367144 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20919106ns 367149 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20919390ns 367154 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20919845ns 367162 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20920015ns 367165 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20920300ns 367170 1a110850 fd5ff06f jal x0, -44 +20920584ns 367175 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20920868ns 367180 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20921266ns 367187 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20921436ns 367190 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20921891ns 367198 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20922061ns 367201 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20922346ns 367206 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20922630ns 367211 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20922914ns 367216 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20923368ns 367224 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20923539ns 367227 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20923823ns 367232 1a110850 fd5ff06f jal x0, -44 +20924107ns 367237 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20924391ns 367242 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20924789ns 367249 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20924960ns 367252 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20925414ns 367260 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20925585ns 367263 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20925869ns 367268 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20926153ns 367273 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20926437ns 367278 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20926892ns 367286 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20927063ns 367289 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20927347ns 367294 1a110850 fd5ff06f jal x0, -44 +20927631ns 367299 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20927915ns 367304 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20928313ns 367311 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20928483ns 367314 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20928938ns 367322 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20929109ns 367325 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20929393ns 367330 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20929677ns 367335 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20929961ns 367340 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20930416ns 367348 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20930586ns 367351 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20930870ns 367356 1a110850 fd5ff06f jal x0, -44 +20931154ns 367361 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20931439ns 367366 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20931836ns 367373 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20932007ns 367376 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20932462ns 367384 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20932632ns 367387 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20932916ns 367392 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20933200ns 367397 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20933485ns 367402 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20933939ns 367410 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20934110ns 367413 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20934394ns 367418 1a110850 fd5ff06f jal x0, -44 +20934678ns 367423 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20934962ns 367428 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20935360ns 367435 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20935531ns 367438 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20935985ns 367446 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20936156ns 367449 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20936440ns 367454 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20936724ns 367459 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20937008ns 367464 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20937463ns 367472 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20937633ns 367475 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20937917ns 367480 1a110850 fd5ff06f jal x0, -44 +20938202ns 367485 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20938486ns 367490 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20938884ns 367497 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20939054ns 367500 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20939509ns 367508 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20939679ns 367511 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20939963ns 367516 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20940248ns 367521 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20940532ns 367526 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20940986ns 367534 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20941157ns 367537 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20941441ns 367542 1a110850 fd5ff06f jal x0, -44 +20941725ns 367547 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20942009ns 367552 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20942407ns 367559 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20942578ns 367562 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20943032ns 367570 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20943203ns 367573 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20943487ns 367578 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20943771ns 367583 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20944055ns 367588 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20944510ns 367596 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20944680ns 367599 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20944965ns 367604 1a110850 fd5ff06f jal x0, -44 +20945249ns 367609 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20945533ns 367614 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20945931ns 367621 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20946101ns 367624 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20946556ns 367632 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20946726ns 367635 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20947011ns 367640 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20947295ns 367645 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20947579ns 367650 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20948034ns 367658 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20948204ns 367661 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20948488ns 367666 1a110850 fd5ff06f jal x0, -44 +20948772ns 367671 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20949057ns 367676 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20949454ns 367683 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20949625ns 367686 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20950080ns 367694 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20950250ns 367697 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20950534ns 367702 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20950818ns 367707 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20951103ns 367712 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20951557ns 367720 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20951728ns 367723 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20952012ns 367728 1a110850 fd5ff06f jal x0, -44 +20952296ns 367733 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20952580ns 367738 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20952978ns 367745 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20953148ns 367748 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20953603ns 367756 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20953774ns 367759 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20954058ns 367764 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20954342ns 367769 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20954626ns 367774 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20955081ns 367782 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20955251ns 367785 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20955535ns 367790 1a110850 fd5ff06f jal x0, -44 +20955820ns 367795 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20956104ns 367800 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20956502ns 367807 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20956672ns 367810 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20957127ns 367818 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20957297ns 367821 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20957581ns 367826 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20957866ns 367831 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20958150ns 367836 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20958604ns 367844 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20958775ns 367847 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20959059ns 367852 1a110850 fd5ff06f jal x0, -44 +20959343ns 367857 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20959627ns 367862 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20960025ns 367869 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20960196ns 367872 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20960650ns 367880 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20960821ns 367883 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20961105ns 367888 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20961389ns 367893 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20961673ns 367898 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20962128ns 367906 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20962298ns 367909 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20962583ns 367914 1a110850 fd5ff06f jal x0, -44 +20962867ns 367919 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20963151ns 367924 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20963549ns 367931 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20963719ns 367934 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20964174ns 367942 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20964344ns 367945 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20964629ns 367950 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20964913ns 367955 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20965197ns 367960 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20965651ns 367968 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20965822ns 367971 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20966106ns 367976 1a110850 fd5ff06f jal x0, -44 +20966390ns 367981 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20966674ns 367986 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20967072ns 367993 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20967243ns 367996 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20967697ns 368004 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20967868ns 368007 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20968152ns 368012 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20968436ns 368017 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20968720ns 368022 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20969175ns 368030 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20969346ns 368033 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20969630ns 368038 1a110850 fd5ff06f jal x0, -44 +20969914ns 368043 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20970198ns 368048 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20970596ns 368055 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20970766ns 368058 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20971221ns 368066 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20971392ns 368069 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20971676ns 368074 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20971960ns 368079 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20972244ns 368084 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20972699ns 368092 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20972869ns 368095 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20973153ns 368100 1a110850 fd5ff06f jal x0, -44 +20973437ns 368105 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20973722ns 368110 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20974119ns 368117 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20974290ns 368120 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20974745ns 368128 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20974915ns 368131 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20975199ns 368136 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20975483ns 368141 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20975768ns 368146 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20976222ns 368154 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20976393ns 368157 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20976677ns 368162 1a110850 fd5ff06f jal x0, -44 +20976961ns 368167 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20977245ns 368172 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20977643ns 368179 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20977814ns 368182 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20978268ns 368190 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20978439ns 368193 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20978723ns 368198 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20979007ns 368203 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20979291ns 368208 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20979746ns 368216 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20979916ns 368219 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20980200ns 368224 1a110850 fd5ff06f jal x0, -44 +20980485ns 368229 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20980769ns 368234 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20981167ns 368241 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20981337ns 368244 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20981792ns 368252 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20981962ns 368255 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20982246ns 368260 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20982531ns 368265 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20982815ns 368270 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20983269ns 368278 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20983440ns 368281 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20983724ns 368286 1a110850 fd5ff06f jal x0, -44 +20984008ns 368291 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20984292ns 368296 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20984690ns 368303 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20984861ns 368306 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20985315ns 368314 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20985486ns 368317 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20985770ns 368322 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20986054ns 368327 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20986338ns 368332 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20986793ns 368340 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20986963ns 368343 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20987248ns 368348 1a110850 fd5ff06f jal x0, -44 +20987532ns 368353 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20987816ns 368358 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20988214ns 368365 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20988384ns 368368 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20988839ns 368376 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20989009ns 368379 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20989294ns 368384 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20989578ns 368389 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20989862ns 368394 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20990317ns 368402 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20990487ns 368405 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20990771ns 368410 1a110850 fd5ff06f jal x0, -44 +20991055ns 368415 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20991340ns 368420 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20991737ns 368427 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20991908ns 368430 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20992363ns 368438 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20992533ns 368441 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20992817ns 368446 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20993101ns 368451 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20993386ns 368456 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20993840ns 368464 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20994011ns 368467 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20994295ns 368472 1a110850 fd5ff06f jal x0, -44 +20994579ns 368477 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20994863ns 368482 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20995261ns 368489 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20995431ns 368492 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20995886ns 368500 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20996057ns 368503 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20996341ns 368508 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20996625ns 368513 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20996909ns 368518 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20997364ns 368526 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +20997534ns 368529 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +20997818ns 368534 1a110850 fd5ff06f jal x0, -44 +20998103ns 368539 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +20998387ns 368544 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +20998785ns 368551 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +20998955ns 368554 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +20999410ns 368562 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +20999580ns 368565 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +20999864ns 368570 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21000149ns 368575 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21000433ns 368580 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21000887ns 368588 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21001058ns 368591 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21001342ns 368596 1a110850 fd5ff06f jal x0, -44 +21001626ns 368601 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21001910ns 368606 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21002308ns 368613 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21002479ns 368616 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21002933ns 368624 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21003104ns 368627 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21003388ns 368632 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21003672ns 368637 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21003956ns 368642 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21004411ns 368650 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21004581ns 368653 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21004866ns 368658 1a110850 fd5ff06f jal x0, -44 +21005150ns 368663 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21005434ns 368668 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21005832ns 368675 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21006002ns 368678 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21006457ns 368686 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21006627ns 368689 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21006912ns 368694 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21007196ns 368699 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21007480ns 368704 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21007935ns 368712 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21008105ns 368715 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21008389ns 368720 1a110850 fd5ff06f jal x0, -44 +21008673ns 368725 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21008957ns 368730 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21009355ns 368737 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21009526ns 368740 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21009980ns 368748 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21010151ns 368751 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21010435ns 368756 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21010719ns 368761 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21011003ns 368766 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21011458ns 368774 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21011629ns 368777 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21011913ns 368782 1a110850 fd5ff06f jal x0, -44 +21012197ns 368787 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21012481ns 368792 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21012879ns 368799 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21013049ns 368802 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21013504ns 368810 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21013675ns 368813 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21013959ns 368818 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21014243ns 368823 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21014527ns 368828 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21014982ns 368836 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21015152ns 368839 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21015436ns 368844 1a110850 fd5ff06f jal x0, -44 +21015720ns 368849 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21016005ns 368854 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21016402ns 368861 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21016573ns 368864 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21017028ns 368872 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21017198ns 368875 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21017482ns 368880 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21017766ns 368885 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21018051ns 368890 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21018505ns 368898 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21018676ns 368901 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21018960ns 368906 1a110850 fd5ff06f jal x0, -44 +21019244ns 368911 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21019528ns 368916 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21019926ns 368923 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21020097ns 368926 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21020551ns 368934 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21020722ns 368937 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21021006ns 368942 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21021290ns 368947 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21021574ns 368952 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21022029ns 368960 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21022199ns 368963 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21022483ns 368968 1a110850 fd5ff06f jal x0, -44 +21022768ns 368973 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21023052ns 368978 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21023450ns 368985 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21023620ns 368988 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21024075ns 368996 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21024245ns 368999 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21024529ns 369004 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21024814ns 369009 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21025098ns 369014 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21025552ns 369022 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21025723ns 369025 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21026007ns 369030 1a110850 fd5ff06f jal x0, -44 +21026291ns 369035 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21026575ns 369040 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21026973ns 369047 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21027144ns 369050 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21027598ns 369058 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21027769ns 369061 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21028053ns 369066 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21028337ns 369071 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21028621ns 369076 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21029076ns 369084 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21029247ns 369087 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21029531ns 369092 1a110850 fd5ff06f jal x0, -44 +21029815ns 369097 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21030099ns 369102 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21030497ns 369109 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21030667ns 369112 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21031122ns 369120 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21031292ns 369123 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21031577ns 369128 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21031861ns 369133 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21032145ns 369138 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21032600ns 369146 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21032770ns 369149 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21033054ns 369154 1a110850 fd5ff06f jal x0, -44 +21033338ns 369159 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21033623ns 369164 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21034020ns 369171 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21034191ns 369174 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21034646ns 369182 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21034816ns 369185 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21035100ns 369190 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21035384ns 369195 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21035669ns 369200 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21036123ns 369208 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21036294ns 369211 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21036578ns 369216 1a110850 fd5ff06f jal x0, -44 +21036862ns 369221 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21037146ns 369226 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21037544ns 369233 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21037714ns 369236 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21038169ns 369244 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21038340ns 369247 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21038624ns 369252 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21038908ns 369257 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21039192ns 369262 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21039647ns 369270 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21039817ns 369273 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21040101ns 369278 1a110850 fd5ff06f jal x0, -44 +21040386ns 369283 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21040670ns 369288 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21041068ns 369295 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21041238ns 369298 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21041693ns 369306 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21041863ns 369309 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21042147ns 369314 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21042432ns 369319 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21042716ns 369324 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21043170ns 369332 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21043341ns 369335 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21043625ns 369340 1a110850 fd5ff06f jal x0, -44 +21043909ns 369345 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21044193ns 369350 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21044591ns 369357 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21044762ns 369360 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21045216ns 369368 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21045387ns 369371 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21045671ns 369376 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21045955ns 369381 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21046239ns 369386 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21046694ns 369394 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21046864ns 369397 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21047149ns 369402 1a110850 fd5ff06f jal x0, -44 +21047433ns 369407 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21047717ns 369412 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21048115ns 369419 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21048285ns 369422 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21048740ns 369430 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21048910ns 369433 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21049195ns 369438 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21049479ns 369443 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21049763ns 369448 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21050218ns 369456 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21050388ns 369459 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21050672ns 369464 1a110850 fd5ff06f jal x0, -44 +21050956ns 369469 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21051240ns 369474 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21051638ns 369481 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21051809ns 369484 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21052263ns 369492 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21052434ns 369495 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21052718ns 369500 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21053002ns 369505 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21053286ns 369510 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21053741ns 369518 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21053912ns 369521 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21054196ns 369526 1a110850 fd5ff06f jal x0, -44 +21054480ns 369531 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21054764ns 369536 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21055162ns 369543 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21055332ns 369546 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21055787ns 369554 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21055958ns 369557 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21056242ns 369562 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21056526ns 369567 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21056810ns 369572 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21057265ns 369580 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21057435ns 369583 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21057719ns 369588 1a110850 fd5ff06f jal x0, -44 +21058003ns 369593 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21058288ns 369598 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21058685ns 369605 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21058856ns 369608 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21059311ns 369616 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21059481ns 369619 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21059765ns 369624 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21060049ns 369629 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21060334ns 369634 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21060788ns 369642 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21060959ns 369645 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21061243ns 369650 1a110850 fd5ff06f jal x0, -44 +21061527ns 369655 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21061811ns 369660 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21062209ns 369667 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21062380ns 369670 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21062834ns 369678 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21063005ns 369681 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21063289ns 369686 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21063573ns 369691 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21063857ns 369696 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21064312ns 369704 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21064482ns 369707 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21064767ns 369712 1a110850 fd5ff06f jal x0, -44 +21065051ns 369717 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21065335ns 369722 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21065733ns 369729 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21065903ns 369732 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21066358ns 369740 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21066528ns 369743 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21066812ns 369748 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21067097ns 369753 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21067381ns 369758 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21067835ns 369766 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21068006ns 369769 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21068290ns 369774 1a110850 fd5ff06f jal x0, -44 +21068574ns 369779 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21068858ns 369784 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21069256ns 369791 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21069427ns 369794 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21069881ns 369802 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21070052ns 369805 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21070336ns 369810 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21070620ns 369815 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21070904ns 369820 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21071359ns 369828 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21071530ns 369831 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21071814ns 369836 1a110850 fd5ff06f jal x0, -44 +21072098ns 369841 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21072382ns 369846 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21072780ns 369853 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21072950ns 369856 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21073405ns 369864 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21073575ns 369867 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21073860ns 369872 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21074144ns 369877 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21074428ns 369882 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21074883ns 369890 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21075053ns 369893 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21075337ns 369898 1a110850 fd5ff06f jal x0, -44 +21075621ns 369903 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21075906ns 369908 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21076303ns 369915 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21076474ns 369918 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21076929ns 369926 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21077099ns 369929 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21077383ns 369934 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21077667ns 369939 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21077952ns 369944 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21078406ns 369952 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21078577ns 369955 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21078861ns 369960 1a110850 fd5ff06f jal x0, -44 +21079145ns 369965 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21079429ns 369970 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21079827ns 369977 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21079997ns 369980 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21080452ns 369988 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21080623ns 369991 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21080907ns 369996 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21081191ns 370001 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21081475ns 370006 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21081930ns 370014 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21082100ns 370017 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21082384ns 370022 1a110850 fd5ff06f jal x0, -44 +21082669ns 370027 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21082953ns 370032 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21083351ns 370039 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21083521ns 370042 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21083976ns 370050 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21084146ns 370053 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21084430ns 370058 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21084715ns 370063 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21084999ns 370068 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21085453ns 370076 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21085624ns 370079 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21085908ns 370084 1a110850 fd5ff06f jal x0, -44 +21086192ns 370089 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21086476ns 370094 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21086874ns 370101 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21087045ns 370104 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21087499ns 370112 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21087670ns 370115 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21087954ns 370120 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21088238ns 370125 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21088522ns 370130 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21088977ns 370138 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21089147ns 370141 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21089432ns 370146 1a110850 fd5ff06f jal x0, -44 +21089716ns 370151 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21090000ns 370156 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21090398ns 370163 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21090568ns 370166 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21091023ns 370174 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21091193ns 370177 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21091478ns 370182 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21091762ns 370187 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21092046ns 370192 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21092501ns 370200 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21092671ns 370203 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21092955ns 370208 1a110850 fd5ff06f jal x0, -44 +21093239ns 370213 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21093523ns 370218 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21093921ns 370225 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21094092ns 370228 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21094546ns 370236 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21094717ns 370239 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21095001ns 370244 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21095285ns 370249 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21095569ns 370254 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21096024ns 370262 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21096195ns 370265 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21096479ns 370270 1a110850 fd5ff06f jal x0, -44 +21096763ns 370275 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21097047ns 370280 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21097445ns 370287 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21097615ns 370290 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21098070ns 370298 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21098241ns 370301 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21098525ns 370306 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21098809ns 370311 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21099093ns 370316 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21099548ns 370324 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21099718ns 370327 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21100002ns 370332 1a110850 fd5ff06f jal x0, -44 +21100287ns 370337 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21100571ns 370342 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21100968ns 370349 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21101139ns 370352 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21101594ns 370360 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21101764ns 370363 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21102048ns 370368 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21102332ns 370373 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21102617ns 370378 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21103071ns 370386 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21103242ns 370389 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21103526ns 370394 1a110850 fd5ff06f jal x0, -44 +21103810ns 370399 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21104094ns 370404 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21104492ns 370411 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21104663ns 370414 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21105117ns 370422 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21105288ns 370425 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21105572ns 370430 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21105856ns 370435 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21106140ns 370440 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21106595ns 370448 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21106765ns 370451 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21107050ns 370456 1a110850 fd5ff06f jal x0, -44 +21107334ns 370461 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21107618ns 370466 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21108016ns 370473 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21108186ns 370476 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21108641ns 370484 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21108811ns 370487 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21109095ns 370492 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21109380ns 370497 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21109664ns 370502 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21110118ns 370510 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21110289ns 370513 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21110573ns 370518 1a110850 fd5ff06f jal x0, -44 +21110857ns 370523 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21111141ns 370528 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21111539ns 370535 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21111710ns 370538 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21112164ns 370546 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21112335ns 370549 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21112619ns 370554 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21112903ns 370559 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21113187ns 370564 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21113642ns 370572 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21113813ns 370575 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21114097ns 370580 1a110850 fd5ff06f jal x0, -44 +21114381ns 370585 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21114665ns 370590 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21115063ns 370597 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21115233ns 370600 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21115688ns 370608 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21115858ns 370611 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21116143ns 370616 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21116427ns 370621 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21116711ns 370626 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21117166ns 370634 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21117336ns 370637 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21117620ns 370642 1a110850 fd5ff06f jal x0, -44 +21117904ns 370647 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21118189ns 370652 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21118586ns 370659 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21118757ns 370662 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21119212ns 370670 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21119382ns 370673 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21119666ns 370678 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21119950ns 370683 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21120235ns 370688 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21120689ns 370696 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21120860ns 370699 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21121144ns 370704 1a110850 fd5ff06f jal x0, -44 +21121428ns 370709 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21121712ns 370714 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21122110ns 370721 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21122280ns 370724 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21122735ns 370732 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21122906ns 370735 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21123190ns 370740 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21123474ns 370745 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21123758ns 370750 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21124213ns 370758 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21124383ns 370761 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21124667ns 370766 1a110850 fd5ff06f jal x0, -44 +21124952ns 370771 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21125236ns 370776 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21125634ns 370783 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21125804ns 370786 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21126259ns 370794 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21126429ns 370797 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21126713ns 370802 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21126998ns 370807 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21127282ns 370812 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21127736ns 370820 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21127907ns 370823 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21128191ns 370828 1a110850 fd5ff06f jal x0, -44 +21128475ns 370833 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21128759ns 370838 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21129157ns 370845 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21129328ns 370848 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21129782ns 370856 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21129953ns 370859 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21130237ns 370864 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21130521ns 370869 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21130805ns 370874 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21131260ns 370882 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21131430ns 370885 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21131715ns 370890 1a110850 fd5ff06f jal x0, -44 +21131999ns 370895 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21132283ns 370900 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21132681ns 370907 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21132851ns 370910 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21133306ns 370918 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21133476ns 370921 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21133761ns 370926 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21134045ns 370931 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21134329ns 370936 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21134784ns 370944 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21134954ns 370947 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21135238ns 370952 1a110850 fd5ff06f jal x0, -44 +21135522ns 370957 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21135807ns 370962 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21136204ns 370969 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21136375ns 370972 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21136829ns 370980 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21137000ns 370983 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21137284ns 370988 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21137568ns 370993 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21137852ns 370998 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21138307ns 371006 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21138478ns 371009 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21138762ns 371014 1a110850 fd5ff06f jal x0, -44 +21139046ns 371019 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21139330ns 371024 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21139728ns 371031 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21139898ns 371034 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21140353ns 371042 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21140524ns 371045 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21140808ns 371050 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21141092ns 371055 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21141376ns 371060 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21141831ns 371068 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21142001ns 371071 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21142285ns 371076 1a110850 fd5ff06f jal x0, -44 +21142570ns 371081 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21142854ns 371086 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21143251ns 371093 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21143422ns 371096 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21143877ns 371104 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21144047ns 371107 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21144331ns 371112 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21144615ns 371117 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21144900ns 371122 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21145354ns 371130 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21145525ns 371133 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21145809ns 371138 1a110850 fd5ff06f jal x0, -44 +21146093ns 371143 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21146377ns 371148 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21146775ns 371155 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21146946ns 371158 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21147400ns 371166 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21147571ns 371169 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21147855ns 371174 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21148139ns 371179 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21148423ns 371184 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21148878ns 371192 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21149048ns 371195 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21149333ns 371200 1a110850 fd5ff06f jal x0, -44 +21149617ns 371205 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21149901ns 371210 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21150299ns 371217 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21150469ns 371220 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21150924ns 371228 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21151094ns 371231 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21151378ns 371236 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21151663ns 371241 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21151947ns 371246 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21152401ns 371254 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21152572ns 371257 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21152856ns 371262 1a110850 fd5ff06f jal x0, -44 +21153140ns 371267 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21153424ns 371272 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21153822ns 371279 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21153993ns 371282 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21154447ns 371290 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21154618ns 371293 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21154902ns 371298 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21155186ns 371303 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21155470ns 371308 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21155925ns 371316 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21156096ns 371319 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21156380ns 371324 1a110850 fd5ff06f jal x0, -44 +21156664ns 371329 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21156948ns 371334 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21157346ns 371341 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21157516ns 371344 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21157971ns 371352 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21158141ns 371355 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21158426ns 371360 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21158710ns 371365 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21158994ns 371370 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21159449ns 371378 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21159619ns 371381 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21159903ns 371386 1a110850 fd5ff06f jal x0, -44 +21160187ns 371391 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21160472ns 371396 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21160869ns 371403 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21161040ns 371406 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21161495ns 371414 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21161665ns 371417 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21161949ns 371422 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21162233ns 371427 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21162518ns 371432 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21162972ns 371440 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21163143ns 371443 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21163427ns 371448 1a110850 fd5ff06f jal x0, -44 +21163711ns 371453 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21163995ns 371458 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21164393ns 371465 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21164563ns 371468 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21165018ns 371476 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21165189ns 371479 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21165473ns 371484 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21165757ns 371489 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21166041ns 371494 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21166496ns 371502 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21166666ns 371505 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21166950ns 371510 1a110850 fd5ff06f jal x0, -44 +21167235ns 371515 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21167519ns 371520 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21167917ns 371527 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21168087ns 371530 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21168542ns 371538 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21168712ns 371541 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21168996ns 371546 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21169281ns 371551 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21169565ns 371556 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21170019ns 371564 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21170190ns 371567 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21170474ns 371572 1a110850 fd5ff06f jal x0, -44 +21170758ns 371577 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21171042ns 371582 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21171440ns 371589 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21171611ns 371592 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21172065ns 371600 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21172236ns 371603 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21172520ns 371608 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21172804ns 371613 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21173088ns 371618 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21173543ns 371626 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21173713ns 371629 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21173998ns 371634 1a110850 fd5ff06f jal x0, -44 +21174282ns 371639 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21174566ns 371644 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21174964ns 371651 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21175134ns 371654 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21175589ns 371662 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21175759ns 371665 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21176044ns 371670 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21176328ns 371675 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21176612ns 371680 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21177067ns 371688 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21177237ns 371691 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21177521ns 371696 1a110850 fd5ff06f jal x0, -44 +21177805ns 371701 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21178090ns 371706 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21178487ns 371713 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21178658ns 371716 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21179112ns 371724 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21179283ns 371727 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21179567ns 371732 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21179851ns 371737 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21180135ns 371742 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21180590ns 371750 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21180761ns 371753 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21181045ns 371758 1a110850 fd5ff06f jal x0, -44 +21181329ns 371763 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21181613ns 371768 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21182011ns 371775 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21182181ns 371778 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21182636ns 371786 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21182807ns 371789 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21183091ns 371794 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21183375ns 371799 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21183659ns 371804 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21184114ns 371812 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21184284ns 371815 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21184568ns 371820 1a110850 fd5ff06f jal x0, -44 +21184853ns 371825 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21185137ns 371830 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21185535ns 371837 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21185705ns 371840 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21186160ns 371848 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21186330ns 371851 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21186614ns 371856 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21186898ns 371861 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21187183ns 371866 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21187637ns 371874 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21187808ns 371877 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21188092ns 371882 1a110850 fd5ff06f jal x0, -44 +21188376ns 371887 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21188660ns 371892 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21189058ns 371899 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21189229ns 371902 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21189683ns 371910 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21189854ns 371913 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21190138ns 371918 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21190422ns 371923 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21190706ns 371928 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21191161ns 371936 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21191331ns 371939 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21191616ns 371944 1a110850 fd5ff06f jal x0, -44 +21191900ns 371949 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21192184ns 371954 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21192582ns 371961 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21192752ns 371964 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21193207ns 371972 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21193377ns 371975 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21193661ns 371980 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21193946ns 371985 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21194230ns 371990 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21194684ns 371998 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21194855ns 372001 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21195139ns 372006 1a110850 fd5ff06f jal x0, -44 +21195423ns 372011 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21195707ns 372016 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21196105ns 372023 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21196276ns 372026 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21196730ns 372034 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21196901ns 372037 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21197185ns 372042 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21197469ns 372047 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21197753ns 372052 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21198208ns 372060 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21198379ns 372063 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21198663ns 372068 1a110850 fd5ff06f jal x0, -44 +21198947ns 372073 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21199231ns 372078 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21199629ns 372085 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21199799ns 372088 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21200254ns 372096 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21200424ns 372099 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21200709ns 372104 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21200993ns 372109 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21201277ns 372114 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21201732ns 372122 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21201902ns 372125 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21202186ns 372130 1a110850 fd5ff06f jal x0, -44 +21202470ns 372135 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21202755ns 372140 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21203152ns 372147 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21203323ns 372150 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21203778ns 372158 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21203948ns 372161 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21204232ns 372166 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21204516ns 372171 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21204801ns 372176 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21205255ns 372184 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21205426ns 372187 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21205710ns 372192 1a110850 fd5ff06f jal x0, -44 +21205994ns 372197 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21206278ns 372202 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21206676ns 372209 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21206847ns 372212 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21207301ns 372220 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21207472ns 372223 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21207756ns 372228 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21208040ns 372233 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21208324ns 372238 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21208779ns 372246 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21208949ns 372249 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21209233ns 372254 1a110850 fd5ff06f jal x0, -44 +21209518ns 372259 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21209802ns 372264 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21210200ns 372271 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21210370ns 372274 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21210825ns 372282 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21210995ns 372285 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21211279ns 372290 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21211564ns 372295 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21211848ns 372300 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21212302ns 372308 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21212473ns 372311 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21212757ns 372316 1a110850 fd5ff06f jal x0, -44 +21213041ns 372321 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21213325ns 372326 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21213723ns 372333 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21213894ns 372336 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21214348ns 372344 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21214519ns 372347 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21214803ns 372352 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21215087ns 372357 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21215371ns 372362 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21215826ns 372370 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21215996ns 372373 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21216281ns 372378 1a110850 fd5ff06f jal x0, -44 +21216565ns 372383 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21216849ns 372388 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21217247ns 372395 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21217417ns 372398 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21217872ns 372406 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21218042ns 372409 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21218327ns 372414 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21218611ns 372419 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21218895ns 372424 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21219350ns 372432 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21219520ns 372435 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21219804ns 372440 1a110850 fd5ff06f jal x0, -44 +21220088ns 372445 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21220373ns 372450 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21220770ns 372457 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21220941ns 372460 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21221395ns 372468 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21221566ns 372471 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21221850ns 372476 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21222134ns 372481 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21222418ns 372486 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21222873ns 372494 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21223044ns 372497 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21223328ns 372502 1a110850 fd5ff06f jal x0, -44 +21223612ns 372507 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21223896ns 372512 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21224294ns 372519 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21224464ns 372522 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21224919ns 372530 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21225090ns 372533 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21225374ns 372538 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21225658ns 372543 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21225942ns 372548 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21226397ns 372556 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21226567ns 372559 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21226851ns 372564 1a110850 fd5ff06f jal x0, -44 +21227136ns 372569 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21227420ns 372574 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21227818ns 372581 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21227988ns 372584 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21228443ns 372592 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21228613ns 372595 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21228897ns 372600 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21229181ns 372605 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21229466ns 372610 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21229920ns 372618 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21230091ns 372621 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21230375ns 372626 1a110850 fd5ff06f jal x0, -44 +21230659ns 372631 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21230943ns 372636 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21231341ns 372643 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21231512ns 372646 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21231966ns 372654 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21232137ns 372657 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21232421ns 372662 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21232705ns 372667 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21232989ns 372672 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21233444ns 372680 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21233614ns 372683 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21233899ns 372688 1a110850 fd5ff06f jal x0, -44 +21234183ns 372693 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21234467ns 372698 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21234865ns 372705 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21235035ns 372708 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21235490ns 372716 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21235660ns 372719 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21235944ns 372724 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21236229ns 372729 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21236513ns 372734 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21236967ns 372742 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21237138ns 372745 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21237422ns 372750 1a110850 fd5ff06f jal x0, -44 +21237706ns 372755 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21237990ns 372760 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21238388ns 372767 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21238559ns 372770 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21239013ns 372778 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21239184ns 372781 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21239468ns 372786 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21239752ns 372791 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21240036ns 372796 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21240491ns 372804 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21240662ns 372807 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21240946ns 372812 1a110850 fd5ff06f jal x0, -44 +21241230ns 372817 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21241514ns 372822 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21241912ns 372829 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21242082ns 372832 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21242537ns 372840 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21242707ns 372843 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21242992ns 372848 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21243276ns 372853 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21243560ns 372858 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21244015ns 372866 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21244185ns 372869 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21244469ns 372874 1a110850 fd5ff06f jal x0, -44 +21244753ns 372879 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21245038ns 372884 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21245435ns 372891 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21245606ns 372894 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21246061ns 372902 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21246231ns 372905 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21246515ns 372910 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21246799ns 372915 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21247084ns 372920 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21247538ns 372928 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21247709ns 372931 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21247993ns 372936 1a110850 fd5ff06f jal x0, -44 +21248277ns 372941 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21248561ns 372946 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21248959ns 372953 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21249130ns 372956 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21249584ns 372964 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21249755ns 372967 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21250039ns 372972 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21250323ns 372977 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21250607ns 372982 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21251062ns 372990 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21251232ns 372993 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21251516ns 372998 1a110850 fd5ff06f jal x0, -44 +21251801ns 373003 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21252085ns 373008 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21252483ns 373015 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21252653ns 373018 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21253108ns 373026 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21253278ns 373029 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21253562ns 373034 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21253847ns 373039 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21254131ns 373044 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21254585ns 373052 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21254756ns 373055 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21255040ns 373060 1a110850 fd5ff06f jal x0, -44 +21255324ns 373065 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21255608ns 373070 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21256006ns 373077 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21256177ns 373080 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21256631ns 373088 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21256802ns 373091 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21257086ns 373096 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21257370ns 373101 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21257654ns 373106 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21258109ns 373114 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21258279ns 373117 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21258564ns 373122 1a110850 fd5ff06f jal x0, -44 +21258848ns 373127 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21259132ns 373132 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21259530ns 373139 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21259700ns 373142 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21260155ns 373150 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21260325ns 373153 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21260610ns 373158 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21260894ns 373163 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21261178ns 373168 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21261633ns 373176 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21261803ns 373179 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21262087ns 373184 1a110850 fd5ff06f jal x0, -44 +21262371ns 373189 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21262656ns 373194 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21263053ns 373201 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21263224ns 373204 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21263679ns 373212 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21263849ns 373215 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21264133ns 373220 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21264417ns 373225 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21264701ns 373230 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21265156ns 373238 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21265327ns 373241 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21265611ns 373246 1a110850 fd5ff06f jal x0, -44 +21265895ns 373251 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21266179ns 373256 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21266577ns 373263 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21266747ns 373266 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21267202ns 373274 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21267373ns 373277 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21267657ns 373282 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21267941ns 373287 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21268225ns 373292 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21268680ns 373300 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21268850ns 373303 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21269134ns 373308 1a110850 fd5ff06f jal x0, -44 +21269419ns 373313 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21269703ns 373318 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21270101ns 373325 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21270271ns 373328 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21270726ns 373336 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21270896ns 373339 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21271180ns 373344 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21271464ns 373349 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21271749ns 373354 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21272203ns 373362 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21272374ns 373365 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21272658ns 373370 1a110850 fd5ff06f jal x0, -44 +21272942ns 373375 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21273226ns 373380 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21273624ns 373387 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21273795ns 373390 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21274249ns 373398 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21274420ns 373401 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21274704ns 373406 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21274988ns 373411 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21275272ns 373416 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21275727ns 373424 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21275897ns 373427 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21276182ns 373432 1a110850 fd5ff06f jal x0, -44 +21276466ns 373437 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21276750ns 373442 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21277148ns 373449 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21277318ns 373452 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21277773ns 373460 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21277943ns 373463 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21278227ns 373468 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21278512ns 373473 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21278796ns 373478 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21279250ns 373486 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21279421ns 373489 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21279705ns 373494 1a110850 fd5ff06f jal x0, -44 +21279989ns 373499 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21280273ns 373504 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21280671ns 373511 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21280842ns 373514 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21281296ns 373522 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21281467ns 373525 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21281751ns 373530 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21282035ns 373535 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21282319ns 373540 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21282774ns 373548 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21282945ns 373551 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21283229ns 373556 1a110850 fd5ff06f jal x0, -44 +21283513ns 373561 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21283797ns 373566 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21284195ns 373573 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21284365ns 373576 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21284820ns 373584 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21284991ns 373587 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21285275ns 373592 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21285559ns 373597 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21285843ns 373602 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21286298ns 373610 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21286468ns 373613 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21286752ns 373618 1a110850 fd5ff06f jal x0, -44 +21287036ns 373623 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21287321ns 373628 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21287718ns 373635 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21287889ns 373638 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21288344ns 373646 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21288514ns 373649 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21288798ns 373654 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21289082ns 373659 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21289367ns 373664 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21289821ns 373672 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21289992ns 373675 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21290276ns 373680 1a110850 fd5ff06f jal x0, -44 +21290560ns 373685 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21290844ns 373690 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21291242ns 373697 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21291413ns 373700 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21291867ns 373708 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21292038ns 373711 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21292322ns 373716 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21292606ns 373721 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21292890ns 373726 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21293345ns 373734 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21293515ns 373737 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21293799ns 373742 1a110850 fd5ff06f jal x0, -44 +21294084ns 373747 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21294368ns 373752 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21294766ns 373759 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21294936ns 373762 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21295391ns 373770 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21295561ns 373773 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21295845ns 373778 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21296130ns 373783 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21296414ns 373788 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21296868ns 373796 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21297039ns 373799 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21297323ns 373804 1a110850 fd5ff06f jal x0, -44 +21297607ns 373809 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21297891ns 373814 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21298289ns 373821 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21298460ns 373824 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21298914ns 373832 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21299085ns 373835 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21299369ns 373840 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21299653ns 373845 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21299937ns 373850 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21300392ns 373858 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21300562ns 373861 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21300847ns 373866 1a110850 fd5ff06f jal x0, -44 +21301131ns 373871 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21301415ns 373876 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21301813ns 373883 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21301983ns 373886 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21302438ns 373894 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21302608ns 373897 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21302893ns 373902 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21303177ns 373907 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21303461ns 373912 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21303916ns 373920 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21304086ns 373923 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21304370ns 373928 1a110850 fd5ff06f jal x0, -44 +21304654ns 373933 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21304939ns 373938 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21305336ns 373945 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21305507ns 373948 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21305962ns 373956 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21306132ns 373959 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21306416ns 373964 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21306700ns 373969 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21306984ns 373974 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21307439ns 373982 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21307610ns 373985 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21307894ns 373990 1a110850 fd5ff06f jal x0, -44 +21308178ns 373995 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21308462ns 374000 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21308860ns 374007 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21309030ns 374010 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21309485ns 374018 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21309656ns 374021 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21309940ns 374026 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21310224ns 374031 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21310508ns 374036 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21310963ns 374044 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21311133ns 374047 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21311417ns 374052 1a110850 fd5ff06f jal x0, -44 +21311702ns 374057 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21311986ns 374062 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21312384ns 374069 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21312554ns 374072 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21313009ns 374080 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21313179ns 374083 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21313463ns 374088 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21313747ns 374093 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21314032ns 374098 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21314486ns 374106 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21314657ns 374109 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21314941ns 374114 1a110850 fd5ff06f jal x0, -44 +21315225ns 374119 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21315509ns 374124 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21315907ns 374131 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21316078ns 374134 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21316532ns 374142 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21316703ns 374145 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21316987ns 374150 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21317271ns 374155 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21317555ns 374160 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21318010ns 374168 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21318180ns 374171 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21318465ns 374176 1a110850 fd5ff06f jal x0, -44 +21318749ns 374181 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21319033ns 374186 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21319431ns 374193 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21319601ns 374196 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21320056ns 374204 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21320226ns 374207 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21320511ns 374212 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21320795ns 374217 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21321079ns 374222 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21321533ns 374230 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21321704ns 374233 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21321988ns 374238 1a110850 fd5ff06f jal x0, -44 +21322272ns 374243 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21322556ns 374248 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21322954ns 374255 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21323125ns 374258 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21323579ns 374266 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21323750ns 374269 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21324034ns 374274 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21324318ns 374279 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21324602ns 374284 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21325057ns 374292 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21325228ns 374295 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21325512ns 374300 1a110850 fd5ff06f jal x0, -44 +21325796ns 374305 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21326080ns 374310 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21326478ns 374317 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21326648ns 374320 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21327103ns 374328 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21327274ns 374331 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21327558ns 374336 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21327842ns 374341 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21328126ns 374346 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21328581ns 374354 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21328751ns 374357 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21329035ns 374362 1a110850 fd5ff06f jal x0, -44 +21329319ns 374367 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21329604ns 374372 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21330001ns 374379 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21330172ns 374382 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21330627ns 374390 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21330797ns 374393 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21331081ns 374398 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21331365ns 374403 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21331650ns 374408 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21332104ns 374416 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21332275ns 374419 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21332559ns 374424 1a110850 fd5ff06f jal x0, -44 +21332843ns 374429 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21333127ns 374434 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21333525ns 374441 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21333696ns 374444 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21334150ns 374452 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21334321ns 374455 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21334605ns 374460 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21334889ns 374465 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21335173ns 374470 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21335628ns 374478 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21335798ns 374481 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21336082ns 374486 1a110850 fd5ff06f jal x0, -44 +21336367ns 374491 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21336651ns 374496 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21337049ns 374503 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21337219ns 374506 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21337674ns 374514 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21337844ns 374517 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21338128ns 374522 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21338413ns 374527 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21338697ns 374532 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21339151ns 374540 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21339322ns 374543 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21339606ns 374548 1a110850 fd5ff06f jal x0, -44 +21339890ns 374553 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21340174ns 374558 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21340572ns 374565 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21340743ns 374568 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21341197ns 374576 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21341368ns 374579 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21341652ns 374584 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21341936ns 374589 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21342220ns 374594 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21342675ns 374602 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21342845ns 374605 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21343130ns 374610 1a110850 fd5ff06f jal x0, -44 +21343414ns 374615 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21343698ns 374620 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21344096ns 374627 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21344266ns 374630 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21344721ns 374638 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21344891ns 374641 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21345176ns 374646 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21345460ns 374651 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21345744ns 374656 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21346199ns 374664 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21346369ns 374667 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21346653ns 374672 1a110850 fd5ff06f jal x0, -44 +21346937ns 374677 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21347222ns 374682 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21347619ns 374689 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21347790ns 374692 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21348245ns 374700 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21348415ns 374703 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21348699ns 374708 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21348983ns 374713 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21349267ns 374718 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21349722ns 374726 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21349893ns 374729 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21350177ns 374734 1a110850 fd5ff06f jal x0, -44 +21350461ns 374739 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21350745ns 374744 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21351143ns 374751 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21351313ns 374754 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21351768ns 374762 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21351939ns 374765 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21352223ns 374770 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21352507ns 374775 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21352791ns 374780 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21353246ns 374788 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21353416ns 374791 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21353700ns 374796 1a110850 fd5ff06f jal x0, -44 +21353985ns 374801 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21354269ns 374806 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21354667ns 374813 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21354837ns 374816 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21355292ns 374824 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21355462ns 374827 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21355746ns 374832 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21356031ns 374837 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21356315ns 374842 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21356769ns 374850 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21356940ns 374853 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21357224ns 374858 1a110850 fd5ff06f jal x0, -44 +21357508ns 374863 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21357792ns 374868 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21358190ns 374875 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21358361ns 374878 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21358815ns 374886 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21358986ns 374889 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21359270ns 374894 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21359554ns 374899 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21359838ns 374904 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21360293ns 374912 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21360463ns 374915 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21360748ns 374920 1a110850 fd5ff06f jal x0, -44 +21361032ns 374925 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21361316ns 374930 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21361714ns 374937 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21361884ns 374940 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21362339ns 374948 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21362509ns 374951 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21362794ns 374956 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21363078ns 374961 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21363362ns 374966 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21363816ns 374974 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21363987ns 374977 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21364271ns 374982 1a110850 fd5ff06f jal x0, -44 +21364555ns 374987 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21364839ns 374992 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21365237ns 374999 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21365408ns 375002 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21365862ns 375010 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21366033ns 375013 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21366317ns 375018 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21366601ns 375023 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21366885ns 375028 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21367340ns 375036 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21367511ns 375039 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21367795ns 375044 1a110850 fd5ff06f jal x0, -44 +21368079ns 375049 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21368363ns 375054 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21368761ns 375061 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21368931ns 375064 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21369386ns 375072 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21369557ns 375075 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21369841ns 375080 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21370125ns 375085 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21370409ns 375090 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21370864ns 375098 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21371034ns 375101 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21371318ns 375106 1a110850 fd5ff06f jal x0, -44 +21371602ns 375111 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21371887ns 375116 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21372284ns 375123 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21372455ns 375126 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21372910ns 375134 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21373080ns 375137 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21373364ns 375142 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21373648ns 375147 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21373933ns 375152 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21374387ns 375160 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21374558ns 375163 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21374842ns 375168 1a110850 fd5ff06f jal x0, -44 +21375126ns 375173 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21375410ns 375178 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21375808ns 375185 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21375979ns 375188 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21376433ns 375196 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21376604ns 375199 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21376888ns 375204 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21377172ns 375209 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21377456ns 375214 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21377911ns 375222 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21378081ns 375225 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21378365ns 375230 1a110850 fd5ff06f jal x0, -44 +21378650ns 375235 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21378934ns 375240 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21379332ns 375247 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21379502ns 375250 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21379957ns 375258 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21380127ns 375261 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21380411ns 375266 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21380696ns 375271 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21380980ns 375276 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21381434ns 375284 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21381605ns 375287 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21381889ns 375292 1a110850 fd5ff06f jal x0, -44 +21382173ns 375297 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21382457ns 375302 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21382855ns 375309 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21383026ns 375312 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21383480ns 375320 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21383651ns 375323 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21383935ns 375328 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21384219ns 375333 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21384503ns 375338 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21384958ns 375346 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21385128ns 375349 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21385413ns 375354 1a110850 fd5ff06f jal x0, -44 +21385697ns 375359 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21385981ns 375364 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21386379ns 375371 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21386549ns 375374 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21387004ns 375382 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21387174ns 375385 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21387459ns 375390 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21387743ns 375395 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21388027ns 375400 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21388482ns 375408 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21388652ns 375411 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21388936ns 375416 1a110850 fd5ff06f jal x0, -44 +21389220ns 375421 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21389505ns 375426 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21389902ns 375433 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21390073ns 375436 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21390528ns 375444 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21390698ns 375447 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21390982ns 375452 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21391266ns 375457 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21391551ns 375462 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21392005ns 375470 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21392176ns 375473 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21392460ns 375478 1a110850 fd5ff06f jal x0, -44 +21392744ns 375483 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21393028ns 375488 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21393426ns 375495 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21393596ns 375498 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21394051ns 375506 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21394222ns 375509 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21394506ns 375514 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21394790ns 375519 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21395074ns 375524 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21395529ns 375532 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21395699ns 375535 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21395983ns 375540 1a110850 fd5ff06f jal x0, -44 +21396268ns 375545 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21396552ns 375550 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21396950ns 375557 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21397120ns 375560 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21397575ns 375568 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21397745ns 375571 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21398029ns 375576 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21398314ns 375581 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21398598ns 375586 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21399052ns 375594 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21399223ns 375597 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21399507ns 375602 1a110850 fd5ff06f jal x0, -44 +21399791ns 375607 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21400075ns 375612 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21400473ns 375619 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21400644ns 375622 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21401098ns 375630 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21401269ns 375633 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21401553ns 375638 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21401837ns 375643 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21402121ns 375648 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21402576ns 375656 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21402746ns 375659 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21403031ns 375664 1a110850 fd5ff06f jal x0, -44 +21403315ns 375669 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21403599ns 375674 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21403997ns 375681 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21404167ns 375684 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21404622ns 375692 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21404792ns 375695 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21405077ns 375700 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21405361ns 375705 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21405645ns 375710 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21406099ns 375718 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21406270ns 375721 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21406554ns 375726 1a110850 fd5ff06f jal x0, -44 +21406838ns 375731 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21407122ns 375736 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21407520ns 375743 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21407691ns 375746 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21408145ns 375754 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21408316ns 375757 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21408600ns 375762 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21408884ns 375767 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21409168ns 375772 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21409623ns 375780 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21409794ns 375783 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21410078ns 375788 1a110850 fd5ff06f jal x0, -44 +21410362ns 375793 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21410646ns 375798 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21411044ns 375805 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21411214ns 375808 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21411669ns 375816 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21411840ns 375819 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21412124ns 375824 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21412408ns 375829 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21412692ns 375834 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21413147ns 375842 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21413317ns 375845 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21413601ns 375850 1a110850 fd5ff06f jal x0, -44 +21413885ns 375855 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21414170ns 375860 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21414567ns 375867 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21414738ns 375870 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21415193ns 375878 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21415363ns 375881 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21415647ns 375886 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21415931ns 375891 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21416216ns 375896 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21416670ns 375904 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21416841ns 375907 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21417125ns 375912 1a110850 fd5ff06f jal x0, -44 +21417409ns 375917 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21417693ns 375922 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21418091ns 375929 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21418262ns 375932 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21418716ns 375940 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21418887ns 375943 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21419171ns 375948 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21419455ns 375953 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21419739ns 375958 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21420194ns 375966 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21420364ns 375969 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21420648ns 375974 1a110850 fd5ff06f jal x0, -44 +21420933ns 375979 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21421217ns 375984 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21421615ns 375991 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21421785ns 375994 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21422240ns 376002 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21422410ns 376005 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21422694ns 376010 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21422979ns 376015 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21423263ns 376020 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21423717ns 376028 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21423888ns 376031 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21424172ns 376036 1a110850 fd5ff06f jal x0, -44 +21424456ns 376041 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21424740ns 376046 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21425138ns 376053 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21425309ns 376056 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21425763ns 376064 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21425934ns 376067 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21426218ns 376072 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21426502ns 376077 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21426786ns 376082 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21427241ns 376090 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21427411ns 376093 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21427696ns 376098 1a110850 fd5ff06f jal x0, -44 +21427980ns 376103 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21428264ns 376108 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21428662ns 376115 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21428832ns 376118 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21429287ns 376126 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21429457ns 376129 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21429742ns 376134 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21430026ns 376139 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21430310ns 376144 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21430765ns 376152 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21430935ns 376155 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21431219ns 376160 1a110850 fd5ff06f jal x0, -44 +21431503ns 376165 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21431788ns 376170 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21432185ns 376177 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21432356ns 376180 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21432811ns 376188 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21432981ns 376191 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21433265ns 376196 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21433549ns 376201 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21433834ns 376206 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21434288ns 376214 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21434459ns 376217 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21434743ns 376222 1a110850 fd5ff06f jal x0, -44 +21435027ns 376227 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21435311ns 376232 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21435709ns 376239 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21435879ns 376242 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21436334ns 376250 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21436505ns 376253 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21436789ns 376258 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21437073ns 376263 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21437357ns 376268 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21437812ns 376276 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21437982ns 376279 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21438266ns 376284 1a110850 fd5ff06f jal x0, -44 +21438551ns 376289 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21438835ns 376294 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21439233ns 376301 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21439403ns 376304 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21439858ns 376312 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21440028ns 376315 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21440312ns 376320 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21440597ns 376325 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21440881ns 376330 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21441335ns 376338 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21441506ns 376341 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21441790ns 376346 1a110850 fd5ff06f jal x0, -44 +21442074ns 376351 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21442358ns 376356 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21442756ns 376363 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21442927ns 376366 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21443381ns 376374 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21443552ns 376377 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21443836ns 376382 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21444120ns 376387 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21444404ns 376392 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21444859ns 376400 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21445029ns 376403 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21445314ns 376408 1a110850 fd5ff06f jal x0, -44 +21445598ns 376413 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21445882ns 376418 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21446280ns 376425 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21446450ns 376428 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21446905ns 376436 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21447075ns 376439 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21447360ns 376444 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21447644ns 376449 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21447928ns 376454 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21448383ns 376462 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21448553ns 376465 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21448837ns 376470 1a110850 fd5ff06f jal x0, -44 +21449121ns 376475 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21449405ns 376480 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21449803ns 376487 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21449974ns 376490 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21450428ns 376498 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21450599ns 376501 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21450883ns 376506 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21451167ns 376511 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21451451ns 376516 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21451906ns 376524 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21452077ns 376527 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21452361ns 376532 1a110850 fd5ff06f jal x0, -44 +21452645ns 376537 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21452929ns 376542 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21453327ns 376549 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21453497ns 376552 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21453952ns 376560 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21454123ns 376563 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21454407ns 376568 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21454691ns 376573 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21454975ns 376578 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21455430ns 376586 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21455600ns 376589 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21455884ns 376594 1a110850 fd5ff06f jal x0, -44 +21456168ns 376599 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21456453ns 376604 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21456850ns 376611 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21457021ns 376614 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21457476ns 376622 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21457646ns 376625 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21457930ns 376630 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21458214ns 376635 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21458499ns 376640 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21458953ns 376648 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21459124ns 376651 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21459408ns 376656 1a110850 fd5ff06f jal x0, -44 +21459692ns 376661 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21459976ns 376666 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21460374ns 376673 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21460545ns 376676 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21460999ns 376684 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21461170ns 376687 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21461454ns 376692 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21461738ns 376697 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21462022ns 376702 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21462477ns 376710 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21462647ns 376713 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21462931ns 376718 1a110850 fd5ff06f jal x0, -44 +21463216ns 376723 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21463500ns 376728 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21463898ns 376735 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21464068ns 376738 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21464523ns 376746 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21464693ns 376749 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21464977ns 376754 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21465262ns 376759 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21465546ns 376764 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21466000ns 376772 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21466171ns 376775 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21466455ns 376780 1a110850 fd5ff06f jal x0, -44 +21466739ns 376785 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21467023ns 376790 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21467421ns 376797 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21467592ns 376800 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21468046ns 376808 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21468217ns 376811 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21468501ns 376816 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21468785ns 376821 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21469069ns 376826 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21469524ns 376834 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21469695ns 376837 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21469979ns 376842 1a110850 fd5ff06f jal x0, -44 +21470263ns 376847 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21470547ns 376852 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21470945ns 376859 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21471115ns 376862 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21471570ns 376870 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21471740ns 376873 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21472025ns 376878 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21472309ns 376883 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21472593ns 376888 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21473048ns 376896 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21473218ns 376899 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21473502ns 376904 1a110850 fd5ff06f jal x0, -44 +21473786ns 376909 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21474071ns 376914 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21474468ns 376921 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21474639ns 376924 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21475094ns 376932 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21475264ns 376935 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21475548ns 376940 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21475832ns 376945 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21476117ns 376950 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21476571ns 376958 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21476742ns 376961 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21477026ns 376966 1a110850 fd5ff06f jal x0, -44 +21477310ns 376971 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21477594ns 376976 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21477992ns 376983 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21478162ns 376986 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21478617ns 376994 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21478788ns 376997 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21479072ns 377002 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21479356ns 377007 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21479640ns 377012 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21480095ns 377020 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21480265ns 377023 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21480549ns 377028 1a110850 fd5ff06f jal x0, -44 +21480834ns 377033 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21481118ns 377038 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21481516ns 377045 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21481686ns 377048 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21482141ns 377056 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21482311ns 377059 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21482595ns 377064 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21482880ns 377069 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21483164ns 377074 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21483618ns 377082 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21483789ns 377085 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21484073ns 377090 1a110850 fd5ff06f jal x0, -44 +21484357ns 377095 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21484641ns 377100 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21485039ns 377107 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21485210ns 377110 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21485664ns 377118 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21485835ns 377121 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21486119ns 377126 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21486403ns 377131 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21486687ns 377136 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21487142ns 377144 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21487312ns 377147 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21487597ns 377152 1a110850 fd5ff06f jal x0, -44 +21487881ns 377157 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21488165ns 377162 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21488563ns 377169 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21488733ns 377172 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21489188ns 377180 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21489358ns 377183 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21489643ns 377188 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21489927ns 377193 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21490211ns 377198 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21490666ns 377206 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21490836ns 377209 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21491120ns 377214 1a110850 fd5ff06f jal x0, -44 +21491404ns 377219 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21491688ns 377224 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21492086ns 377231 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21492257ns 377234 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21492711ns 377242 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21492882ns 377245 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21493166ns 377250 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21493450ns 377255 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21493734ns 377260 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21494189ns 377268 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21494360ns 377271 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21494644ns 377276 1a110850 fd5ff06f jal x0, -44 +21494928ns 377281 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21495212ns 377286 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21495610ns 377293 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21495780ns 377296 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21496235ns 377304 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21496406ns 377307 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21496690ns 377312 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21496974ns 377317 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21497258ns 377322 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21497713ns 377330 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21497883ns 377333 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21498167ns 377338 1a110850 fd5ff06f jal x0, -44 +21498451ns 377343 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21498736ns 377348 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21499133ns 377355 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21499304ns 377358 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21499759ns 377366 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21499929ns 377369 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21500213ns 377374 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21500497ns 377379 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21500782ns 377384 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21501236ns 377392 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21501407ns 377395 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21501691ns 377400 1a110850 fd5ff06f jal x0, -44 +21501975ns 377405 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21502259ns 377410 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21502657ns 377417 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21502828ns 377420 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21503282ns 377428 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21503453ns 377431 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21503737ns 377436 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21504021ns 377441 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21504305ns 377446 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21504760ns 377454 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21504930ns 377457 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21505215ns 377462 1a110850 fd5ff06f jal x0, -44 +21505499ns 377467 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21505783ns 377472 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21506181ns 377479 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21506351ns 377482 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21506806ns 377490 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21506976ns 377493 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21507260ns 377498 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21507545ns 377503 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21507829ns 377508 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21508283ns 377516 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21508454ns 377519 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21508738ns 377524 1a110850 fd5ff06f jal x0, -44 +21509022ns 377529 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21509306ns 377534 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21509704ns 377541 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21509875ns 377544 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21510329ns 377552 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21510500ns 377555 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21510784ns 377560 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21511068ns 377565 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21511352ns 377570 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21511807ns 377578 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21511978ns 377581 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21512262ns 377586 1a110850 fd5ff06f jal x0, -44 +21512546ns 377591 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21512830ns 377596 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21513228ns 377603 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21513398ns 377606 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21513853ns 377614 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21514023ns 377617 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21514308ns 377622 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21514592ns 377627 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21514876ns 377632 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21515331ns 377640 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21515501ns 377643 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21515785ns 377648 1a110850 fd5ff06f jal x0, -44 +21516069ns 377653 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21516354ns 377658 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21516751ns 377665 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21516922ns 377668 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21517377ns 377676 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21517547ns 377679 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21517831ns 377684 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21518115ns 377689 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21518400ns 377694 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21518854ns 377702 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21519025ns 377705 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21519309ns 377710 1a110850 fd5ff06f jal x0, -44 +21519593ns 377715 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21519877ns 377720 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21520275ns 377727 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21520445ns 377730 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21520900ns 377738 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21521071ns 377741 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21521355ns 377746 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21521639ns 377751 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21521923ns 377756 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21522378ns 377764 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21522548ns 377767 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21522832ns 377772 1a110850 fd5ff06f jal x0, -44 +21523117ns 377777 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21523401ns 377782 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21523799ns 377789 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21523969ns 377792 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21524424ns 377800 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21524594ns 377803 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21524878ns 377808 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21525163ns 377813 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21525447ns 377818 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21525901ns 377826 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21526072ns 377829 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21526356ns 377834 1a110850 fd5ff06f jal x0, -44 +21526640ns 377839 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21526924ns 377844 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21527322ns 377851 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21527493ns 377854 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21527947ns 377862 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21528118ns 377865 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21528402ns 377870 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21528686ns 377875 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21528970ns 377880 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21529425ns 377888 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21529595ns 377891 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21529880ns 377896 1a110850 fd5ff06f jal x0, -44 +21530164ns 377901 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21530448ns 377906 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21530846ns 377913 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21531016ns 377916 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21531471ns 377924 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21531641ns 377927 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21531926ns 377932 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21532210ns 377937 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21532494ns 377942 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21532949ns 377950 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21533119ns 377953 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21533403ns 377958 1a110850 fd5ff06f jal x0, -44 +21533687ns 377963 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21533971ns 377968 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21534369ns 377975 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21534540ns 377978 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21534994ns 377986 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21535165ns 377989 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21535449ns 377994 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21535733ns 377999 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21536017ns 378004 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21536472ns 378012 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21536643ns 378015 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21536927ns 378020 1a110850 fd5ff06f jal x0, -44 +21537211ns 378025 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21537495ns 378030 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21537893ns 378037 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21538063ns 378040 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21538518ns 378048 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21538689ns 378051 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21538973ns 378056 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21539257ns 378061 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21539541ns 378066 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21539996ns 378074 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21540166ns 378077 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21540450ns 378082 1a110850 fd5ff06f jal x0, -44 +21540735ns 378087 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21541019ns 378092 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21541416ns 378099 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21541587ns 378102 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21542042ns 378110 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21542212ns 378113 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21542496ns 378118 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21542780ns 378123 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21543065ns 378128 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21543519ns 378136 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21543690ns 378139 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21543974ns 378144 1a110850 fd5ff06f jal x0, -44 +21544258ns 378149 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21544542ns 378154 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21544940ns 378161 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21545111ns 378164 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21545565ns 378172 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21545736ns 378175 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21546020ns 378180 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21546304ns 378185 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21546588ns 378190 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21547043ns 378198 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21547213ns 378201 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21547498ns 378206 1a110850 fd5ff06f jal x0, -44 +21547782ns 378211 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21548066ns 378216 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21548464ns 378223 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21548634ns 378226 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21549089ns 378234 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21549259ns 378237 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21549543ns 378242 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21549828ns 378247 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21550112ns 378252 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21550566ns 378260 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21550737ns 378263 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21551021ns 378268 1a110850 fd5ff06f jal x0, -44 +21551305ns 378273 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21551589ns 378278 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21551987ns 378285 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21552158ns 378288 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21552612ns 378296 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21552783ns 378299 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21553067ns 378304 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21553351ns 378309 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21553635ns 378314 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21554090ns 378322 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21554261ns 378325 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21554545ns 378330 1a110850 fd5ff06f jal x0, -44 +21554829ns 378335 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21555113ns 378340 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21555511ns 378347 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21555681ns 378350 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21556136ns 378358 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21556306ns 378361 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21556591ns 378366 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21556875ns 378371 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21557159ns 378376 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21557614ns 378384 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21557784ns 378387 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21558068ns 378392 1a110850 fd5ff06f jal x0, -44 +21558352ns 378397 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21558637ns 378402 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21559034ns 378409 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21559205ns 378412 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21559660ns 378420 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21559830ns 378423 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21560114ns 378428 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21560398ns 378433 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21560683ns 378438 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21561137ns 378446 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21561308ns 378449 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21561592ns 378454 1a110850 fd5ff06f jal x0, -44 +21561876ns 378459 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21562160ns 378464 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21562558ns 378471 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21562728ns 378474 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21563183ns 378482 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21563354ns 378485 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21563638ns 378490 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21563922ns 378495 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21564206ns 378500 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21564661ns 378508 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21564831ns 378511 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21565115ns 378516 1a110850 fd5ff06f jal x0, -44 +21565400ns 378521 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21565684ns 378526 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21566082ns 378533 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21566252ns 378536 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21566707ns 378544 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21566877ns 378547 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21567161ns 378552 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21567446ns 378557 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21567730ns 378562 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21568184ns 378570 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21568355ns 378573 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21568639ns 378578 1a110850 fd5ff06f jal x0, -44 +21568923ns 378583 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21569207ns 378588 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21569605ns 378595 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21569776ns 378598 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21570230ns 378606 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21570401ns 378609 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21570685ns 378614 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21570969ns 378619 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21571253ns 378624 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21571708ns 378632 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21571878ns 378635 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21572163ns 378640 1a110850 fd5ff06f jal x0, -44 +21572447ns 378645 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21572731ns 378650 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21573129ns 378657 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21573299ns 378660 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21573754ns 378668 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21573924ns 378671 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21574209ns 378676 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21574493ns 378681 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21574777ns 378686 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21575232ns 378694 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21575402ns 378697 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21575686ns 378702 1a110850 fd5ff06f jal x0, -44 +21575970ns 378707 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21576255ns 378712 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21576652ns 378719 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21576823ns 378722 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21577277ns 378730 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21577448ns 378733 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21577732ns 378738 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21578016ns 378743 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21578300ns 378748 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21578755ns 378756 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21578926ns 378759 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21579210ns 378764 1a110850 fd5ff06f jal x0, -44 +21579494ns 378769 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21579778ns 378774 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21580176ns 378781 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21580346ns 378784 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21580801ns 378792 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21580972ns 378795 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21581256ns 378800 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21581540ns 378805 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21581824ns 378810 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21582279ns 378818 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21582449ns 378821 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21582733ns 378826 1a110850 fd5ff06f jal x0, -44 +21583018ns 378831 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21583302ns 378836 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21583699ns 378843 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21583870ns 378846 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21584325ns 378854 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21584495ns 378857 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21584779ns 378862 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21585063ns 378867 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21585348ns 378872 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21585802ns 378880 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21585973ns 378883 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21586257ns 378888 1a110850 fd5ff06f jal x0, -44 +21586541ns 378893 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21586825ns 378898 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21587223ns 378905 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21587394ns 378908 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21587848ns 378916 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21588019ns 378919 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21588303ns 378924 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21588587ns 378929 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21588871ns 378934 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21589326ns 378942 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21589496ns 378945 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21589781ns 378950 1a110850 fd5ff06f jal x0, -44 +21590065ns 378955 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21590349ns 378960 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21590747ns 378967 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21590917ns 378970 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21591372ns 378978 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21591542ns 378981 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21591826ns 378986 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21592111ns 378991 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21592395ns 378996 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21592849ns 379004 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21593020ns 379007 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21593304ns 379012 1a110850 fd5ff06f jal x0, -44 +21593588ns 379017 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21593872ns 379022 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21594270ns 379029 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21594441ns 379032 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21594895ns 379040 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21595066ns 379043 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21595350ns 379048 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21595634ns 379053 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21595918ns 379058 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21596373ns 379066 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21596544ns 379069 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21596828ns 379074 1a110850 fd5ff06f jal x0, -44 +21597112ns 379079 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21597396ns 379084 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21597794ns 379091 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21597964ns 379094 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21598419ns 379102 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21598589ns 379105 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21598874ns 379110 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21599158ns 379115 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21599442ns 379120 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21599897ns 379128 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21600067ns 379131 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21600351ns 379136 1a110850 fd5ff06f jal x0, -44 +21600635ns 379141 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21600920ns 379146 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21601317ns 379153 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21601488ns 379156 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21601943ns 379164 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21602113ns 379167 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21602397ns 379172 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21602681ns 379177 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21602966ns 379182 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21603420ns 379190 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21603591ns 379193 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21603875ns 379198 1a110850 fd5ff06f jal x0, -44 +21604159ns 379203 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21604443ns 379208 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21604841ns 379215 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21605011ns 379218 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21605466ns 379226 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21605637ns 379229 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21605921ns 379234 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21606205ns 379239 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21606489ns 379244 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21606944ns 379252 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21607114ns 379255 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21607398ns 379260 1a110850 fd5ff06f jal x0, -44 +21607683ns 379265 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21607967ns 379270 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21608365ns 379277 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21608535ns 379280 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21608990ns 379288 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21609160ns 379291 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21609444ns 379296 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21609729ns 379301 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21610013ns 379306 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21610467ns 379314 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21610638ns 379317 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21610922ns 379322 1a110850 fd5ff06f jal x0, -44 +21611206ns 379327 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21611490ns 379332 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21611888ns 379339 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21612059ns 379342 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21612513ns 379350 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21612684ns 379353 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21612968ns 379358 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21613252ns 379363 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21613536ns 379368 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21613991ns 379376 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21614161ns 379379 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21614446ns 379384 1a110850 fd5ff06f jal x0, -44 +21614730ns 379389 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21615014ns 379394 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21615412ns 379401 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21615582ns 379404 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21616037ns 379412 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21616207ns 379415 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21616492ns 379420 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21616776ns 379425 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21617060ns 379430 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21617515ns 379438 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21617685ns 379441 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21617969ns 379446 1a110850 fd5ff06f jal x0, -44 +21618253ns 379451 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21618538ns 379456 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21618935ns 379463 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21619106ns 379466 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21619560ns 379474 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21619731ns 379477 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21620015ns 379482 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21620299ns 379487 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21620583ns 379492 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21621038ns 379500 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21621209ns 379503 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21621493ns 379508 1a110850 fd5ff06f jal x0, -44 +21621777ns 379513 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21622061ns 379518 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21622459ns 379525 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21622629ns 379528 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21623084ns 379536 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21623255ns 379539 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21623539ns 379544 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21623823ns 379549 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21624107ns 379554 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21624562ns 379562 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21624732ns 379565 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21625016ns 379570 1a110850 fd5ff06f jal x0, -44 +21625301ns 379575 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21625585ns 379580 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21625983ns 379587 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21626153ns 379590 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21626608ns 379598 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21626778ns 379601 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21627062ns 379606 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21627346ns 379611 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21627631ns 379616 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21628085ns 379624 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21628256ns 379627 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21628540ns 379632 1a110850 fd5ff06f jal x0, -44 +21628824ns 379637 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21629108ns 379642 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21629506ns 379649 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21629677ns 379652 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21630131ns 379660 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21630302ns 379663 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21630586ns 379668 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21630870ns 379673 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21631154ns 379678 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21631609ns 379686 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21631779ns 379689 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21632064ns 379694 1a110850 fd5ff06f jal x0, -44 +21632348ns 379699 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21632632ns 379704 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21633030ns 379711 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21633200ns 379714 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21633655ns 379722 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21633825ns 379725 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21634109ns 379730 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21634394ns 379735 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21634678ns 379740 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21635132ns 379748 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21635303ns 379751 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21635587ns 379756 1a110850 fd5ff06f jal x0, -44 +21635871ns 379761 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21636155ns 379766 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21636553ns 379773 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21636724ns 379776 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21637178ns 379784 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21637349ns 379787 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21637633ns 379792 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21637917ns 379797 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21638201ns 379802 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21638656ns 379810 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21638827ns 379813 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21639111ns 379818 1a110850 fd5ff06f jal x0, -44 +21639395ns 379823 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21639679ns 379828 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21640077ns 379835 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21640247ns 379838 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21640702ns 379846 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21640872ns 379849 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21641157ns 379854 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21641441ns 379859 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21641725ns 379864 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21642180ns 379872 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21642350ns 379875 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21642634ns 379880 1a110850 fd5ff06f jal x0, -44 +21642918ns 379885 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21643203ns 379890 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21643600ns 379897 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21643771ns 379900 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21644226ns 379908 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21644396ns 379911 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21644680ns 379916 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21644964ns 379921 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21645249ns 379926 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21645703ns 379934 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21645874ns 379937 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21646158ns 379942 1a110850 fd5ff06f jal x0, -44 +21646442ns 379947 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21646726ns 379952 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21647124ns 379959 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21647295ns 379962 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21647749ns 379970 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21647920ns 379973 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21648204ns 379978 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21648488ns 379983 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21648772ns 379988 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21649227ns 379996 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21649397ns 379999 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21649681ns 380004 1a110850 fd5ff06f jal x0, -44 +21649966ns 380009 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21650250ns 380014 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21650648ns 380021 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21650818ns 380024 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21651273ns 380032 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21651443ns 380035 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21651727ns 380040 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21652012ns 380045 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21652296ns 380050 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21652750ns 380058 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21652921ns 380061 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21653205ns 380066 1a110850 fd5ff06f jal x0, -44 +21653489ns 380071 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21653773ns 380076 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21654171ns 380083 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21654342ns 380086 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21654796ns 380094 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21654967ns 380097 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21655251ns 380102 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21655535ns 380107 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21655819ns 380112 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21656274ns 380120 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21656444ns 380123 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21656729ns 380128 1a110850 fd5ff06f jal x0, -44 +21657013ns 380133 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21657297ns 380138 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21657695ns 380145 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21657865ns 380148 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21658320ns 380156 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21658490ns 380159 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21658775ns 380164 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21659059ns 380169 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21659343ns 380174 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21659798ns 380182 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21659968ns 380185 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21660252ns 380190 1a110850 fd5ff06f jal x0, -44 +21660536ns 380195 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21660821ns 380200 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21661218ns 380207 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21661389ns 380210 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21661843ns 380218 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21662014ns 380221 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21662298ns 380226 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21662582ns 380231 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21662866ns 380236 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21663321ns 380244 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21663492ns 380247 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21663776ns 380252 1a110850 fd5ff06f jal x0, -44 +21664060ns 380257 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21664344ns 380262 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21664742ns 380269 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21664912ns 380272 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21665367ns 380280 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21665538ns 380283 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21665822ns 380288 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21666106ns 380293 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21666390ns 380298 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21666845ns 380306 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21667015ns 380309 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21667299ns 380314 1a110850 fd5ff06f jal x0, -44 +21667584ns 380319 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21667868ns 380324 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21668266ns 380331 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21668436ns 380334 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21668891ns 380342 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21669061ns 380345 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21669345ns 380350 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21669629ns 380355 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21669914ns 380360 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21670368ns 380368 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21670539ns 380371 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21670823ns 380376 1a110850 fd5ff06f jal x0, -44 +21671107ns 380381 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21671391ns 380386 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21671789ns 380393 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21671960ns 380396 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21672414ns 380404 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21672585ns 380407 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21672869ns 380412 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21673153ns 380417 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21673437ns 380422 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21673892ns 380430 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21674062ns 380433 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21674347ns 380438 1a110850 fd5ff06f jal x0, -44 +21674631ns 380443 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21674915ns 380448 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21675313ns 380455 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21675483ns 380458 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21675938ns 380466 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21676108ns 380469 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21676392ns 380474 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21676677ns 380479 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21676961ns 380484 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21677415ns 380492 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21677586ns 380495 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21677870ns 380500 1a110850 fd5ff06f jal x0, -44 +21678154ns 380505 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21678438ns 380510 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21678836ns 380517 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21679007ns 380520 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21679461ns 380528 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21679632ns 380531 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21679916ns 380536 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21680200ns 380541 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21680484ns 380546 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21680939ns 380554 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21681110ns 380557 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21681394ns 380562 1a110850 fd5ff06f jal x0, -44 +21681678ns 380567 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21681962ns 380572 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21682360ns 380579 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21682530ns 380582 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21682985ns 380590 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21683155ns 380593 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21683440ns 380598 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21683724ns 380603 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21684008ns 380608 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21684463ns 380616 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21684633ns 380619 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21684917ns 380624 1a110850 fd5ff06f jal x0, -44 +21685201ns 380629 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21685486ns 380634 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21685883ns 380641 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21686054ns 380644 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21686509ns 380652 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21686679ns 380655 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21686963ns 380660 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21687247ns 380665 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21687532ns 380670 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21687986ns 380678 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21688157ns 380681 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21688441ns 380686 1a110850 fd5ff06f jal x0, -44 +21688725ns 380691 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21689009ns 380696 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21689407ns 380703 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21689578ns 380706 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21690032ns 380714 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21690203ns 380717 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21690487ns 380722 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21690771ns 380727 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21691055ns 380732 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21691510ns 380740 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21691680ns 380743 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21691964ns 380748 1a110850 fd5ff06f jal x0, -44 +21692249ns 380753 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21692533ns 380758 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21692931ns 380765 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21693101ns 380768 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21693556ns 380776 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21693726ns 380779 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21694010ns 380784 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21694295ns 380789 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21694579ns 380794 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21695033ns 380802 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21695204ns 380805 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21695488ns 380810 1a110850 fd5ff06f jal x0, -44 +21695772ns 380815 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21696056ns 380820 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21696454ns 380827 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21696625ns 380830 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21697079ns 380838 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21697250ns 380841 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21697534ns 380846 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21697818ns 380851 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21698102ns 380856 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21698557ns 380864 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21698727ns 380867 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21699012ns 380872 1a110850 fd5ff06f jal x0, -44 +21699296ns 380877 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21699580ns 380882 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21699978ns 380889 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21700148ns 380892 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21700603ns 380900 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21700773ns 380903 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21701058ns 380908 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21701342ns 380913 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21701626ns 380918 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21702081ns 380926 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21702251ns 380929 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21702535ns 380934 1a110850 fd5ff06f jal x0, -44 +21702819ns 380939 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21703104ns 380944 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21703501ns 380951 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21703672ns 380954 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21704127ns 380962 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21704297ns 380965 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21704581ns 380970 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21704865ns 380975 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21705149ns 380980 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21705604ns 380988 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21705775ns 380991 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21706059ns 380996 1a110850 fd5ff06f jal x0, -44 +21706343ns 381001 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21706627ns 381006 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21707025ns 381013 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21707195ns 381016 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21707650ns 381024 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21707821ns 381027 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21708105ns 381032 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21708389ns 381037 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21708673ns 381042 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21709128ns 381050 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21709298ns 381053 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21709582ns 381058 1a110850 fd5ff06f jal x0, -44 +21709867ns 381063 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21710151ns 381068 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21710549ns 381075 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21710719ns 381078 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21711174ns 381086 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21711344ns 381089 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21711628ns 381094 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21711912ns 381099 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21712197ns 381104 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21712651ns 381112 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21712822ns 381115 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21713106ns 381120 1a110850 fd5ff06f jal x0, -44 +21713390ns 381125 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21713674ns 381130 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21714072ns 381137 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21714243ns 381140 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21714697ns 381148 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21714868ns 381151 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21715152ns 381156 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21715436ns 381161 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21715720ns 381166 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21716175ns 381174 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21716345ns 381177 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21716630ns 381182 1a110850 fd5ff06f jal x0, -44 +21716914ns 381187 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21717198ns 381192 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21717596ns 381199 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21717766ns 381202 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21718221ns 381210 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21718391ns 381213 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21718675ns 381218 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21718960ns 381223 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21719244ns 381228 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21719698ns 381236 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21719869ns 381239 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21720153ns 381244 1a110850 fd5ff06f jal x0, -44 +21720437ns 381249 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21720721ns 381254 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21721119ns 381261 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21721290ns 381264 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21721744ns 381272 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21721915ns 381275 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21722199ns 381280 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21722483ns 381285 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21722767ns 381290 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21723222ns 381298 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21723393ns 381301 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21723677ns 381306 1a110850 fd5ff06f jal x0, -44 +21723961ns 381311 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21724245ns 381316 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21724643ns 381323 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21724813ns 381326 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21725268ns 381334 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21725439ns 381337 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21725723ns 381342 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21726007ns 381347 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21726291ns 381352 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21726746ns 381360 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21726916ns 381363 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21727200ns 381368 1a110850 fd5ff06f jal x0, -44 +21727484ns 381373 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21727769ns 381378 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21728166ns 381385 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21728337ns 381388 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21728792ns 381396 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21728962ns 381399 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21729246ns 381404 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21729530ns 381409 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21729815ns 381414 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21730269ns 381422 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21730440ns 381425 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21730724ns 381430 1a110850 fd5ff06f jal x0, -44 +21731008ns 381435 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21731292ns 381440 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21731690ns 381447 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21731861ns 381450 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21732315ns 381458 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21732486ns 381461 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21732770ns 381466 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21733054ns 381471 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21733338ns 381476 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21733793ns 381484 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21733963ns 381487 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21734247ns 381492 1a110850 fd5ff06f jal x0, -44 +21734532ns 381497 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21734816ns 381502 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21735214ns 381509 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21735384ns 381512 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21735839ns 381520 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21736009ns 381523 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21736293ns 381528 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21736578ns 381533 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21736862ns 381538 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21737316ns 381546 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21737487ns 381549 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21737771ns 381554 1a110850 fd5ff06f jal x0, -44 +21738055ns 381559 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21738339ns 381564 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21738737ns 381571 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21738908ns 381574 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21739362ns 381582 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21739533ns 381585 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21739817ns 381590 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21740101ns 381595 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21740385ns 381600 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21740840ns 381608 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21741010ns 381611 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21741295ns 381616 1a110850 fd5ff06f jal x0, -44 +21741579ns 381621 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21741863ns 381626 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21742261ns 381633 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21742431ns 381636 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21742886ns 381644 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21743056ns 381647 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21743341ns 381652 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21743625ns 381657 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21743909ns 381662 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21744364ns 381670 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21744534ns 381673 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21744818ns 381678 1a110850 fd5ff06f jal x0, -44 +21745102ns 381683 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21745387ns 381688 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21745784ns 381695 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21745955ns 381698 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21746410ns 381706 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21746580ns 381709 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21746864ns 381714 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21747148ns 381719 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21747432ns 381724 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21747887ns 381732 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21748058ns 381735 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21748342ns 381740 1a110850 fd5ff06f jal x0, -44 +21748626ns 381745 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21748910ns 381750 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21749308ns 381757 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21749478ns 381760 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21749933ns 381768 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21750104ns 381771 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21750388ns 381776 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21750672ns 381781 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21750956ns 381786 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21751411ns 381794 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21751581ns 381797 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21751865ns 381802 1a110850 fd5ff06f jal x0, -44 +21752150ns 381807 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21752434ns 381812 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21752832ns 381819 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21753002ns 381822 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21753457ns 381830 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21753627ns 381833 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21753911ns 381838 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21754195ns 381843 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21754480ns 381848 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21754934ns 381856 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21755105ns 381859 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21755389ns 381864 1a110850 fd5ff06f jal x0, -44 +21755673ns 381869 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21755957ns 381874 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21756355ns 381881 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21756526ns 381884 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21756980ns 381892 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21757151ns 381895 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21757435ns 381900 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21757719ns 381905 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21758003ns 381910 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21758458ns 381918 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21758628ns 381921 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21758913ns 381926 1a110850 fd5ff06f jal x0, -44 +21759197ns 381931 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21759481ns 381936 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21759879ns 381943 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21760049ns 381946 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21760504ns 381954 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21760674ns 381957 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21760959ns 381962 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21761243ns 381967 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21761527ns 381972 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21761981ns 381980 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21762152ns 381983 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21762436ns 381988 1a110850 fd5ff06f jal x0, -44 +21762720ns 381993 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21763004ns 381998 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21763402ns 382005 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21763573ns 382008 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21764027ns 382016 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21764198ns 382019 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21764482ns 382024 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21764766ns 382029 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21765050ns 382034 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21765505ns 382042 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21765676ns 382045 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21765960ns 382050 1a110850 fd5ff06f jal x0, -44 +21766244ns 382055 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21766528ns 382060 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21766926ns 382067 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21767096ns 382070 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21767551ns 382078 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21767722ns 382081 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21768006ns 382086 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21768290ns 382091 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21768574ns 382096 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21769029ns 382104 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21769199ns 382107 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21769483ns 382112 1a110850 fd5ff06f jal x0, -44 +21769767ns 382117 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21770052ns 382122 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21770449ns 382129 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21770620ns 382132 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21771075ns 382140 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21771245ns 382143 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21771529ns 382148 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21771813ns 382153 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21772098ns 382158 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21772552ns 382166 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21772723ns 382169 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21773007ns 382174 1a110850 fd5ff06f jal x0, -44 +21773291ns 382179 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21773575ns 382184 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21773973ns 382191 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21774144ns 382194 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21774598ns 382202 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21774769ns 382205 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21775053ns 382210 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21775337ns 382215 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21775621ns 382220 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21776076ns 382228 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21776246ns 382231 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21776530ns 382236 1a110850 fd5ff06f jal x0, -44 +21776815ns 382241 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21777099ns 382246 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21777497ns 382253 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21777667ns 382256 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21778122ns 382264 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21778292ns 382267 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21778576ns 382272 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21778861ns 382277 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21779145ns 382282 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21779599ns 382290 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21779770ns 382293 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21780054ns 382298 1a110850 fd5ff06f jal x0, -44 +21780338ns 382303 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21780622ns 382308 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21781020ns 382315 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21781191ns 382318 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21781645ns 382326 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21781816ns 382329 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21782100ns 382334 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21782384ns 382339 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21782668ns 382344 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21783123ns 382352 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21783293ns 382355 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21783578ns 382360 1a110850 fd5ff06f jal x0, -44 +21783862ns 382365 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21784146ns 382370 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21784544ns 382377 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21784714ns 382380 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21785169ns 382388 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21785339ns 382391 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21785624ns 382396 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21785908ns 382401 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21786192ns 382406 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21786647ns 382414 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21786817ns 382417 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21787101ns 382422 1a110850 fd5ff06f jal x0, -44 +21787385ns 382427 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21787670ns 382432 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21788067ns 382439 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21788238ns 382442 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21788693ns 382450 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21788863ns 382453 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21789147ns 382458 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21789431ns 382463 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21789715ns 382468 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21790170ns 382476 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21790341ns 382479 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21790625ns 382484 1a110850 fd5ff06f jal x0, -44 +21790909ns 382489 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21791193ns 382494 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21791591ns 382501 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21791761ns 382504 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21792216ns 382512 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21792387ns 382515 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21792671ns 382520 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21792955ns 382525 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21793239ns 382530 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21793694ns 382538 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21793864ns 382541 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21794148ns 382546 1a110850 fd5ff06f jal x0, -44 +21794433ns 382551 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21794717ns 382556 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21795115ns 382563 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21795285ns 382566 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21795740ns 382574 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21795910ns 382577 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21796194ns 382582 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21796479ns 382587 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21796763ns 382592 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21797217ns 382600 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21797388ns 382603 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21797672ns 382608 1a110850 fd5ff06f jal x0, -44 +21797956ns 382613 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21798240ns 382618 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21798638ns 382625 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21798809ns 382628 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21799263ns 382636 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21799434ns 382639 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21799718ns 382644 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21800002ns 382649 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21800286ns 382654 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21800741ns 382662 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21800911ns 382665 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21801196ns 382670 1a110850 fd5ff06f jal x0, -44 +21801480ns 382675 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21801764ns 382680 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21802162ns 382687 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21802332ns 382690 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21802787ns 382698 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21802957ns 382701 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21803242ns 382706 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21803526ns 382711 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21803810ns 382716 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21804264ns 382724 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21804435ns 382727 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21804719ns 382732 1a110850 fd5ff06f jal x0, -44 +21805003ns 382737 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21805287ns 382742 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21805685ns 382749 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21805856ns 382752 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21806310ns 382760 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21806481ns 382763 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21806765ns 382768 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21807049ns 382773 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21807333ns 382778 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21807788ns 382786 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21807959ns 382789 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21808243ns 382794 1a110850 fd5ff06f jal x0, -44 +21808527ns 382799 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21808811ns 382804 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21809209ns 382811 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21809379ns 382814 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21809834ns 382822 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21810005ns 382825 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21810289ns 382830 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21810573ns 382835 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21810857ns 382840 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21811312ns 382848 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21811482ns 382851 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21811766ns 382856 1a110850 fd5ff06f jal x0, -44 +21812050ns 382861 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21812335ns 382866 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21812732ns 382873 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21812903ns 382876 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21813358ns 382884 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21813528ns 382887 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21813812ns 382892 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21814096ns 382897 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21814381ns 382902 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21814835ns 382910 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21815006ns 382913 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21815290ns 382918 1a110850 fd5ff06f jal x0, -44 +21815574ns 382923 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21815858ns 382928 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21816256ns 382935 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21816427ns 382938 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21816881ns 382946 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21817052ns 382949 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21817336ns 382954 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21817620ns 382959 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21817904ns 382964 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21818359ns 382972 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21818529ns 382975 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21818813ns 382980 1a110850 fd5ff06f jal x0, -44 +21819098ns 382985 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21819382ns 382990 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21819780ns 382997 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21819950ns 383000 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21820405ns 383008 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21820575ns 383011 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21820859ns 383016 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21821144ns 383021 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21821428ns 383026 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21821882ns 383034 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21822053ns 383037 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21822337ns 383042 1a110850 fd5ff06f jal x0, -44 +21822621ns 383047 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21822905ns 383052 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21823303ns 383059 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21823474ns 383062 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21823928ns 383070 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21824099ns 383073 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21824383ns 383078 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21824667ns 383083 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21824951ns 383088 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21825406ns 383096 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21825576ns 383099 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21825861ns 383104 1a110850 fd5ff06f jal x0, -44 +21826145ns 383109 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21826429ns 383114 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21826827ns 383121 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21826997ns 383124 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21827452ns 383132 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21827622ns 383135 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21827907ns 383140 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21828191ns 383145 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21828475ns 383150 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21828930ns 383158 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21829100ns 383161 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21829384ns 383166 1a110850 fd5ff06f jal x0, -44 +21829668ns 383171 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21829953ns 383176 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21830350ns 383183 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21830521ns 383186 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21830976ns 383194 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21831146ns 383197 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21831430ns 383202 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21831714ns 383207 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21831999ns 383212 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21832453ns 383220 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21832624ns 383223 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21832908ns 383228 1a110850 fd5ff06f jal x0, -44 +21833192ns 383233 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21833476ns 383238 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21833874ns 383245 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21834044ns 383248 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21834499ns 383256 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21834670ns 383259 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21834954ns 383264 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21835238ns 383269 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21835522ns 383274 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21835977ns 383282 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21836147ns 383285 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21836431ns 383290 1a110850 fd5ff06f jal x0, -44 +21836716ns 383295 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21837000ns 383300 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21837398ns 383307 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21837568ns 383310 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21838023ns 383318 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21838193ns 383321 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21838477ns 383326 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21838762ns 383331 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21839046ns 383336 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21839500ns 383344 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21839671ns 383347 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21839955ns 383352 1a110850 fd5ff06f jal x0, -44 +21840239ns 383357 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21840523ns 383362 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21840921ns 383369 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21841092ns 383372 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21841546ns 383380 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21841717ns 383383 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21842001ns 383388 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21842285ns 383393 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21842569ns 383398 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21843024ns 383406 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21843194ns 383409 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21843479ns 383414 1a110850 fd5ff06f jal x0, -44 +21843763ns 383419 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21844047ns 383424 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21844445ns 383431 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21844615ns 383434 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21845070ns 383442 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21845240ns 383445 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21845525ns 383450 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21845809ns 383455 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21846093ns 383460 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21846547ns 383468 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21846718ns 383471 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21847002ns 383476 1a110850 fd5ff06f jal x0, -44 +21847286ns 383481 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21847570ns 383486 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21847968ns 383493 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21848139ns 383496 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21848593ns 383504 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21848764ns 383507 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21849048ns 383512 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21849332ns 383517 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21849616ns 383522 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21850071ns 383530 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21850242ns 383533 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21850526ns 383538 1a110850 fd5ff06f jal x0, -44 +21850810ns 383543 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21851094ns 383548 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21851492ns 383555 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21851662ns 383558 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21852117ns 383566 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21852288ns 383569 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21852572ns 383574 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21852856ns 383579 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21853140ns 383584 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21853595ns 383592 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21853765ns 383595 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21854049ns 383600 1a110850 fd5ff06f jal x0, -44 +21854333ns 383605 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21854618ns 383610 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21855015ns 383617 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21855186ns 383620 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21855641ns 383628 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21855811ns 383631 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21856095ns 383636 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21856379ns 383641 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21856664ns 383646 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21857118ns 383654 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21857289ns 383657 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21857573ns 383662 1a110850 fd5ff06f jal x0, -44 +21857857ns 383667 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21858141ns 383672 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21858539ns 383679 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21858710ns 383682 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21859164ns 383690 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21859335ns 383693 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21859619ns 383698 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21859903ns 383703 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21860187ns 383708 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21860642ns 383716 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21860812ns 383719 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21861096ns 383724 1a110850 fd5ff06f jal x0, -44 +21861381ns 383729 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21861665ns 383734 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21862063ns 383741 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21862233ns 383744 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21862688ns 383752 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21862858ns 383755 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21863142ns 383760 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21863427ns 383765 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21863711ns 383770 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21864165ns 383778 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21864336ns 383781 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21864620ns 383786 1a110850 fd5ff06f jal x0, -44 +21864904ns 383791 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21865188ns 383796 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21865586ns 383803 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21865757ns 383806 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21866211ns 383814 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21866382ns 383817 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21866666ns 383822 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21866950ns 383827 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21867234ns 383832 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21867689ns 383840 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21867859ns 383843 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21868144ns 383848 1a110850 fd5ff06f jal x0, -44 +21868428ns 383853 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21868712ns 383858 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21869110ns 383865 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21869280ns 383868 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21869735ns 383876 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21869905ns 383879 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21870190ns 383884 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21870474ns 383889 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21870758ns 383894 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21871213ns 383902 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21871383ns 383905 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21871667ns 383910 1a110850 fd5ff06f jal x0, -44 +21871951ns 383915 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21872236ns 383920 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21872633ns 383927 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21872804ns 383930 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21873259ns 383938 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21873429ns 383941 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21873713ns 383946 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21873997ns 383951 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21874282ns 383956 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21874736ns 383964 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21874907ns 383967 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21875191ns 383972 1a110850 fd5ff06f jal x0, -44 +21875475ns 383977 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21875759ns 383982 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21876157ns 383989 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21876327ns 383992 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21876782ns 384000 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21876953ns 384003 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21877237ns 384008 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21877521ns 384013 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21877805ns 384018 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21878260ns 384026 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21878430ns 384029 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21878714ns 384034 1a110850 fd5ff06f jal x0, -44 +21878999ns 384039 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21879283ns 384044 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21879681ns 384051 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21879851ns 384054 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21880306ns 384062 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21880476ns 384065 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21880760ns 384070 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21881045ns 384075 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21881329ns 384080 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21881783ns 384088 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21881954ns 384091 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21882238ns 384096 1a110850 fd5ff06f jal x0, -44 +21882522ns 384101 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21882806ns 384106 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21883204ns 384113 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21883375ns 384116 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21883829ns 384124 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21884000ns 384127 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21884284ns 384132 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21884568ns 384137 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21884852ns 384142 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21885307ns 384150 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21885477ns 384153 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21885762ns 384158 1a110850 fd5ff06f jal x0, -44 +21886046ns 384163 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21886330ns 384168 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21886728ns 384175 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21886898ns 384178 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21887353ns 384186 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21887523ns 384189 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21887808ns 384194 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21888092ns 384199 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21888376ns 384204 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21888831ns 384212 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21889001ns 384215 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21889285ns 384220 1a110850 fd5ff06f jal x0, -44 +21889569ns 384225 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21889853ns 384230 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21890251ns 384237 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21890422ns 384240 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21890876ns 384248 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21891047ns 384251 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21891331ns 384256 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21891615ns 384261 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21891899ns 384266 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21892354ns 384274 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21892525ns 384277 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21892809ns 384282 1a110850 fd5ff06f jal x0, -44 +21893093ns 384287 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21893377ns 384292 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21893775ns 384299 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21893945ns 384302 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21894400ns 384310 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21894571ns 384313 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21894855ns 384318 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21895139ns 384323 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21895423ns 384328 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21895878ns 384336 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21896048ns 384339 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21896332ns 384344 1a110850 fd5ff06f jal x0, -44 +21896616ns 384349 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21896901ns 384354 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21897298ns 384361 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21897469ns 384364 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21897924ns 384372 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21898094ns 384375 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21898378ns 384380 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21898662ns 384385 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21898947ns 384390 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21899401ns 384398 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21899572ns 384401 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21899856ns 384406 1a110850 fd5ff06f jal x0, -44 +21900140ns 384411 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21900424ns 384416 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21900822ns 384423 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21900993ns 384426 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21901447ns 384434 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21901618ns 384437 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21901902ns 384442 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21902186ns 384447 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21902470ns 384452 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21902925ns 384460 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21903095ns 384463 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21903379ns 384468 1a110850 fd5ff06f jal x0, -44 +21903664ns 384473 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21903948ns 384478 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21904346ns 384485 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21904516ns 384488 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21904971ns 384496 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21905141ns 384499 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21905425ns 384504 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21905710ns 384509 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21905994ns 384514 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21906448ns 384522 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21906619ns 384525 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21906903ns 384530 1a110850 fd5ff06f jal x0, -44 +21907187ns 384535 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21907471ns 384540 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21907869ns 384547 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21908040ns 384550 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21908494ns 384558 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21908665ns 384561 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21908949ns 384566 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21909233ns 384571 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21909517ns 384576 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21909972ns 384584 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21910143ns 384587 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21910427ns 384592 1a110850 fd5ff06f jal x0, -44 +21910711ns 384597 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21910995ns 384602 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21911393ns 384609 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21911563ns 384612 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21912018ns 384620 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21912188ns 384623 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21912473ns 384628 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21912757ns 384633 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21913041ns 384638 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21913496ns 384646 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21913666ns 384649 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21913950ns 384654 1a110850 fd5ff06f jal x0, -44 +21914234ns 384659 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21914519ns 384664 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21914916ns 384671 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21915087ns 384674 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21915542ns 384682 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21915712ns 384685 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21915996ns 384690 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21916280ns 384695 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21916565ns 384700 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21917019ns 384708 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21917190ns 384711 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21917474ns 384716 1a110850 fd5ff06f jal x0, -44 +21917758ns 384721 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21918042ns 384726 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21918440ns 384733 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21918610ns 384736 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21919065ns 384744 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21919236ns 384747 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21919520ns 384752 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21919804ns 384757 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21920088ns 384762 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21920543ns 384770 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21920713ns 384773 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21920997ns 384778 1a110850 fd5ff06f jal x0, -44 +21921282ns 384783 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21921566ns 384788 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21921964ns 384795 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21922134ns 384798 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21922589ns 384806 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21922759ns 384809 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21923043ns 384814 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21923328ns 384819 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21923612ns 384824 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21924066ns 384832 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21924237ns 384835 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21924521ns 384840 1a110850 fd5ff06f jal x0, -44 +21924805ns 384845 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21925089ns 384850 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21925487ns 384857 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21925658ns 384860 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21926112ns 384868 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21926283ns 384871 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21926567ns 384876 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21926851ns 384881 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21927135ns 384886 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21927590ns 384894 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21927760ns 384897 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21928045ns 384902 1a110850 fd5ff06f jal x0, -44 +21928329ns 384907 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21928613ns 384912 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21929011ns 384919 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21929181ns 384922 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21929636ns 384930 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21929806ns 384933 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21930091ns 384938 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21930375ns 384943 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21930659ns 384948 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21931114ns 384956 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21931284ns 384959 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21931568ns 384964 1a110850 fd5ff06f jal x0, -44 +21931852ns 384969 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21932136ns 384974 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21932534ns 384981 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21932705ns 384984 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21933159ns 384992 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21933330ns 384995 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21933614ns 385000 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21933898ns 385005 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21934182ns 385010 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21934637ns 385018 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21934808ns 385021 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21935092ns 385026 1a110850 fd5ff06f jal x0, -44 +21935376ns 385031 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21935660ns 385036 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21936058ns 385043 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21936228ns 385046 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21936683ns 385054 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21936854ns 385057 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21937138ns 385062 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21937422ns 385067 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21937706ns 385072 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21938161ns 385080 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21938331ns 385083 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21938615ns 385088 1a110850 fd5ff06f jal x0, -44 +21938899ns 385093 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21939184ns 385098 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21939581ns 385105 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21939752ns 385108 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21940207ns 385116 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21940377ns 385119 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21940661ns 385124 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21940945ns 385129 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21941230ns 385134 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21941684ns 385142 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21941855ns 385145 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21942139ns 385150 1a110850 fd5ff06f jal x0, -44 +21942423ns 385155 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21942707ns 385160 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21943105ns 385167 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21943276ns 385170 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21943730ns 385178 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21943901ns 385181 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21944185ns 385186 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21944469ns 385191 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21944753ns 385196 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21945208ns 385204 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21945378ns 385207 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21945663ns 385212 1a110850 fd5ff06f jal x0, -44 +21945947ns 385217 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21946231ns 385222 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21946629ns 385229 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21946799ns 385232 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21947254ns 385240 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21947424ns 385243 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21947708ns 385248 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21947993ns 385253 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21948277ns 385258 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21948731ns 385266 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21948902ns 385269 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21949186ns 385274 1a110850 fd5ff06f jal x0, -44 +21949470ns 385279 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21949754ns 385284 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21950152ns 385291 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21950323ns 385294 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21950777ns 385302 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21950948ns 385305 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21951232ns 385310 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21951516ns 385315 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21951800ns 385320 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21952255ns 385328 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21952426ns 385331 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21952710ns 385336 1a110850 fd5ff06f jal x0, -44 +21952994ns 385341 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21953278ns 385346 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21953676ns 385353 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21953846ns 385356 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21954301ns 385364 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21954471ns 385367 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21954756ns 385372 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21955040ns 385377 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21955324ns 385382 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21955779ns 385390 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21955949ns 385393 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21956233ns 385398 1a110850 fd5ff06f jal x0, -44 +21956517ns 385403 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21956802ns 385408 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21957199ns 385415 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21957370ns 385418 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21957825ns 385426 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21957995ns 385429 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21958279ns 385434 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21958563ns 385439 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21958848ns 385444 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21959302ns 385452 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21959473ns 385455 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21959757ns 385460 1a110850 fd5ff06f jal x0, -44 +21960041ns 385465 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21960325ns 385470 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21960723ns 385477 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21960893ns 385480 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21961348ns 385488 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21961519ns 385491 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21961803ns 385496 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21962087ns 385501 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21962371ns 385506 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21962826ns 385514 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21962996ns 385517 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21963280ns 385522 1a110850 fd5ff06f jal x0, -44 +21963565ns 385527 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21963849ns 385532 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21964247ns 385539 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21964417ns 385542 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21964872ns 385550 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21965042ns 385553 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21965326ns 385558 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21965611ns 385563 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21965895ns 385568 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21966349ns 385576 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21966520ns 385579 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21966804ns 385584 1a110850 fd5ff06f jal x0, -44 +21967088ns 385589 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21967372ns 385594 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21967770ns 385601 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21967941ns 385604 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21968395ns 385612 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21968566ns 385615 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21968850ns 385620 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21969134ns 385625 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21969418ns 385630 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21969873ns 385638 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21970043ns 385641 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21970328ns 385646 1a110850 fd5ff06f jal x0, -44 +21970612ns 385651 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21970896ns 385656 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21971294ns 385663 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21971464ns 385666 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21971919ns 385674 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21972089ns 385677 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21972374ns 385682 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21972658ns 385687 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21972942ns 385692 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21973397ns 385700 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21973567ns 385703 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21973851ns 385708 1a110850 fd5ff06f jal x0, -44 +21974135ns 385713 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21974419ns 385718 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21974817ns 385725 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21974988ns 385728 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21975442ns 385736 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21975613ns 385739 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21975897ns 385744 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21976181ns 385749 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21976465ns 385754 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21976920ns 385762 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21977091ns 385765 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21977375ns 385770 1a110850 fd5ff06f jal x0, -44 +21977659ns 385775 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21977943ns 385780 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21978341ns 385787 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21978511ns 385790 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21978966ns 385798 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21979137ns 385801 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21979421ns 385806 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21979705ns 385811 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21979989ns 385816 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21980444ns 385824 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21980614ns 385827 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21980898ns 385832 1a110850 fd5ff06f jal x0, -44 +21981183ns 385837 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21981467ns 385842 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21981864ns 385849 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21982035ns 385852 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21982490ns 385860 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21982660ns 385863 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21982944ns 385868 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21983228ns 385873 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21983513ns 385878 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21983967ns 385886 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21984138ns 385889 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21984422ns 385894 1a110850 fd5ff06f jal x0, -44 +21984706ns 385899 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21984990ns 385904 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21985388ns 385911 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21985559ns 385914 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21986013ns 385922 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21986184ns 385925 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21986468ns 385930 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21986752ns 385935 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21987036ns 385940 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21987491ns 385948 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21987661ns 385951 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21987946ns 385956 1a110850 fd5ff06f jal x0, -44 +21988230ns 385961 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21988514ns 385966 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21988912ns 385973 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21989082ns 385976 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21989537ns 385984 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21989707ns 385987 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21989991ns 385992 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21990276ns 385997 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21990560ns 386002 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21991014ns 386010 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21991185ns 386013 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21991469ns 386018 1a110850 fd5ff06f jal x0, -44 +21991753ns 386023 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21992037ns 386028 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21992435ns 386035 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21992606ns 386038 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21993060ns 386046 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21993231ns 386049 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21993515ns 386054 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21993799ns 386059 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21994083ns 386064 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21994538ns 386072 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21994709ns 386075 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21994993ns 386080 1a110850 fd5ff06f jal x0, -44 +21995277ns 386085 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21995561ns 386090 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21995959ns 386097 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21996129ns 386100 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21996584ns 386108 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +21996754ns 386111 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +21997039ns 386116 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21997323ns 386121 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21997607ns 386126 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +21998062ns 386134 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +21998232ns 386137 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +21998516ns 386142 1a110850 fd5ff06f jal x0, -44 +21998800ns 386147 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +21999085ns 386152 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +21999482ns 386159 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +21999653ns 386162 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22000108ns 386170 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22000278ns 386173 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22000562ns 386178 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22000846ns 386183 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22001131ns 386188 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22001585ns 386196 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22001756ns 386199 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22002040ns 386204 1a110850 fd5ff06f jal x0, -44 +22002324ns 386209 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22002608ns 386214 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22003006ns 386221 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22003176ns 386224 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22003631ns 386232 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22003802ns 386235 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22004086ns 386240 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22004370ns 386245 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22004654ns 386250 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22005109ns 386258 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22005279ns 386261 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22005563ns 386266 1a110850 fd5ff06f jal x0, -44 +22005848ns 386271 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22006132ns 386276 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22006530ns 386283 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22006700ns 386286 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22007155ns 386294 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22007325ns 386297 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22007609ns 386302 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22007894ns 386307 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22008178ns 386312 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22008632ns 386320 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22008803ns 386323 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22009087ns 386328 1a110850 fd5ff06f jal x0, -44 +22009371ns 386333 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22009655ns 386338 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22010053ns 386345 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22010224ns 386348 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22010678ns 386356 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22010849ns 386359 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22011133ns 386364 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22011417ns 386369 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22011701ns 386374 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22012156ns 386382 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22012326ns 386385 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22012611ns 386390 1a110850 fd5ff06f jal x0, -44 +22012895ns 386395 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22013179ns 386400 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22013577ns 386407 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22013747ns 386410 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22014202ns 386418 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22014372ns 386421 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22014657ns 386426 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22014941ns 386431 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22015225ns 386436 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22015680ns 386444 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22015850ns 386447 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22016134ns 386452 1a110850 fd5ff06f jal x0, -44 +22016418ns 386457 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22016703ns 386462 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22017100ns 386469 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22017271ns 386472 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22017725ns 386480 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22017896ns 386483 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22018180ns 386488 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22018464ns 386493 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22018748ns 386498 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22019203ns 386506 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22019374ns 386509 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22019658ns 386514 1a110850 fd5ff06f jal x0, -44 +22019942ns 386519 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22020226ns 386524 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22020624ns 386531 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22020794ns 386534 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22021249ns 386542 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22021420ns 386545 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22021704ns 386550 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22021988ns 386555 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22022272ns 386560 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22022727ns 386568 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22022897ns 386571 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22023181ns 386576 1a110850 fd5ff06f jal x0, -44 +22023466ns 386581 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22023750ns 386586 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22024147ns 386593 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22024318ns 386596 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22024773ns 386604 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22024943ns 386607 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22025227ns 386612 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22025511ns 386617 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22025796ns 386622 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22026250ns 386630 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22026421ns 386633 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22026705ns 386638 1a110850 fd5ff06f jal x0, -44 +22026989ns 386643 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22027273ns 386648 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22027671ns 386655 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22027842ns 386658 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22028296ns 386666 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22028467ns 386669 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22028751ns 386674 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22029035ns 386679 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22029319ns 386684 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22029774ns 386692 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22029944ns 386695 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22030229ns 386700 1a110850 fd5ff06f jal x0, -44 +22030513ns 386705 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22030797ns 386710 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22031195ns 386717 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22031365ns 386720 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22031820ns 386728 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22031990ns 386731 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22032274ns 386736 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22032559ns 386741 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22032843ns 386746 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22033297ns 386754 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22033468ns 386757 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22033752ns 386762 1a110850 fd5ff06f jal x0, -44 +22034036ns 386767 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22034320ns 386772 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22034718ns 386779 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22034889ns 386782 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22035343ns 386790 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22035514ns 386793 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22035798ns 386798 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22036082ns 386803 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22036366ns 386808 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22036821ns 386816 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22036992ns 386819 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22037276ns 386824 1a110850 fd5ff06f jal x0, -44 +22037560ns 386829 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22037844ns 386834 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22038242ns 386841 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22038412ns 386844 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22038867ns 386852 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22039037ns 386855 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22039322ns 386860 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22039606ns 386865 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22039890ns 386870 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22040345ns 386878 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22040515ns 386881 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22040799ns 386886 1a110850 fd5ff06f jal x0, -44 +22041083ns 386891 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22041368ns 386896 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22041765ns 386903 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22041936ns 386906 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22042391ns 386914 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22042561ns 386917 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22042845ns 386922 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22043129ns 386927 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22043414ns 386932 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22043868ns 386940 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22044039ns 386943 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22044323ns 386948 1a110850 fd5ff06f jal x0, -44 +22044607ns 386953 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22044891ns 386958 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22045289ns 386965 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22045459ns 386968 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22045914ns 386976 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22046085ns 386979 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22046369ns 386984 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22046653ns 386989 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22046937ns 386994 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22047392ns 387002 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22047562ns 387005 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22047846ns 387010 1a110850 fd5ff06f jal x0, -44 +22048131ns 387015 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22048415ns 387020 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22048813ns 387027 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22048983ns 387030 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22049438ns 387038 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22049608ns 387041 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22049892ns 387046 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22050177ns 387051 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22050461ns 387056 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22050915ns 387064 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22051086ns 387067 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22051370ns 387072 1a110850 fd5ff06f jal x0, -44 +22051654ns 387077 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22051938ns 387082 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22052336ns 387089 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22052507ns 387092 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22052961ns 387100 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22053132ns 387103 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22053416ns 387108 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22053700ns 387113 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22053984ns 387118 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22054439ns 387126 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22054609ns 387129 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22054894ns 387134 1a110850 fd5ff06f jal x0, -44 +22055178ns 387139 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22055462ns 387144 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22055860ns 387151 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22056030ns 387154 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22056485ns 387162 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22056655ns 387165 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22056940ns 387170 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22057224ns 387175 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22057508ns 387180 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22057963ns 387188 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22058133ns 387191 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22058417ns 387196 1a110850 fd5ff06f jal x0, -44 +22058701ns 387201 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22058986ns 387206 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22059383ns 387213 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22059554ns 387216 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22060008ns 387224 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22060179ns 387227 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22060463ns 387232 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22060747ns 387237 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22061031ns 387242 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22061486ns 387250 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22061657ns 387253 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22061941ns 387258 1a110850 fd5ff06f jal x0, -44 +22062225ns 387263 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22062509ns 387268 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22062907ns 387275 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22063077ns 387278 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22063532ns 387286 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22063703ns 387289 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22063987ns 387294 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22064271ns 387299 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22064555ns 387304 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22065010ns 387312 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22065180ns 387315 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22065464ns 387320 1a110850 fd5ff06f jal x0, -44 +22065749ns 387325 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22066033ns 387330 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22066431ns 387337 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22066601ns 387340 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22067056ns 387348 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22067226ns 387351 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22067510ns 387356 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22067794ns 387361 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22068079ns 387366 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22068533ns 387374 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22068704ns 387377 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22068988ns 387382 1a110850 fd5ff06f jal x0, -44 +22069272ns 387387 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22069556ns 387392 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22069954ns 387399 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22070125ns 387402 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22070579ns 387410 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22070750ns 387413 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22071034ns 387418 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22071318ns 387423 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22071602ns 387428 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22072057ns 387436 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22072227ns 387439 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22072512ns 387444 1a110850 fd5ff06f jal x0, -44 +22072796ns 387449 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22073080ns 387454 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22073478ns 387461 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22073648ns 387464 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22074103ns 387472 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22074273ns 387475 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22074557ns 387480 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22074842ns 387485 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22075126ns 387490 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22075580ns 387498 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22075751ns 387501 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22076035ns 387506 1a110850 fd5ff06f jal x0, -44 +22076319ns 387511 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22076603ns 387516 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22077001ns 387523 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22077172ns 387526 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22077626ns 387534 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22077797ns 387537 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22078081ns 387542 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22078365ns 387547 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22078649ns 387552 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22079104ns 387560 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22079275ns 387563 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22079559ns 387568 1a110850 fd5ff06f jal x0, -44 +22079843ns 387573 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22080127ns 387578 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22080525ns 387585 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22080695ns 387588 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22081150ns 387596 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22081320ns 387599 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22081605ns 387604 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22081889ns 387609 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22082173ns 387614 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22082628ns 387622 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22082798ns 387625 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22083082ns 387630 1a110850 fd5ff06f jal x0, -44 +22083366ns 387635 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22083651ns 387640 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22084048ns 387647 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22084219ns 387650 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22084674ns 387658 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22084844ns 387661 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22085128ns 387666 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22085412ns 387671 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22085697ns 387676 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22086151ns 387684 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22086322ns 387687 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22086606ns 387692 1a110850 fd5ff06f jal x0, -44 +22086890ns 387697 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22087174ns 387702 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22087572ns 387709 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22087743ns 387712 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22088197ns 387720 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22088368ns 387723 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22088652ns 387728 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22088936ns 387733 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22089220ns 387738 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22089675ns 387746 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22089845ns 387749 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22090129ns 387754 1a110850 fd5ff06f jal x0, -44 +22090414ns 387759 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22090698ns 387764 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22091096ns 387771 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22091266ns 387774 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22091721ns 387782 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22091891ns 387785 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22092175ns 387790 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22092460ns 387795 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22092744ns 387800 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22093198ns 387808 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22093369ns 387811 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22093653ns 387816 1a110850 fd5ff06f jal x0, -44 +22093937ns 387821 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22094221ns 387826 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22094619ns 387833 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22094790ns 387836 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22095244ns 387844 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22095415ns 387847 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22095699ns 387852 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22095983ns 387857 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22096267ns 387862 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22096722ns 387870 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22096892ns 387873 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22097177ns 387878 1a110850 fd5ff06f jal x0, -44 +22097461ns 387883 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22097745ns 387888 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22098143ns 387895 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22098313ns 387898 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22098768ns 387906 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22098938ns 387909 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22099223ns 387914 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22099507ns 387919 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22099791ns 387924 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22100246ns 387932 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22100416ns 387935 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22100700ns 387940 1a110850 fd5ff06f jal x0, -44 +22100984ns 387945 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22101269ns 387950 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22101666ns 387957 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22101837ns 387960 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22102291ns 387968 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22102462ns 387971 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22102746ns 387976 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22103030ns 387981 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22103314ns 387986 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22103769ns 387994 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22103940ns 387997 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22104224ns 388002 1a110850 fd5ff06f jal x0, -44 +22104508ns 388007 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22104792ns 388012 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22105190ns 388019 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22105360ns 388022 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22105815ns 388030 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22105986ns 388033 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22106270ns 388038 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22106554ns 388043 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22106838ns 388048 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22107293ns 388056 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22107463ns 388059 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22107747ns 388064 1a110850 fd5ff06f jal x0, -44 +22108032ns 388069 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22108316ns 388074 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22108714ns 388081 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22108884ns 388084 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22109339ns 388092 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22109509ns 388095 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22109793ns 388100 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22110077ns 388105 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22110362ns 388110 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22110816ns 388118 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22110987ns 388121 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22111271ns 388126 1a110850 fd5ff06f jal x0, -44 +22111555ns 388131 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22111839ns 388136 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22112237ns 388143 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22112408ns 388146 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22112862ns 388154 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22113033ns 388157 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22113317ns 388162 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22113601ns 388167 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22113885ns 388172 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22114340ns 388180 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22114510ns 388183 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22114795ns 388188 1a110850 fd5ff06f jal x0, -44 +22115079ns 388193 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22115363ns 388198 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22115761ns 388205 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22115931ns 388208 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22116386ns 388216 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22116556ns 388219 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22116840ns 388224 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22117125ns 388229 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22117409ns 388234 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22117863ns 388242 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22118034ns 388245 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22118318ns 388250 1a110850 fd5ff06f jal x0, -44 +22118602ns 388255 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22118886ns 388260 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22119284ns 388267 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22119455ns 388270 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22119909ns 388278 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22120080ns 388281 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22120364ns 388286 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22120648ns 388291 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22120932ns 388296 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22121387ns 388304 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22121558ns 388307 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22121842ns 388312 1a110850 fd5ff06f jal x0, -44 +22122126ns 388317 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22122410ns 388322 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22122808ns 388329 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22122978ns 388332 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22123433ns 388340 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22123603ns 388343 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22123888ns 388348 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22124172ns 388353 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22124456ns 388358 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22124911ns 388366 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22125081ns 388369 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22125365ns 388374 1a110850 fd5ff06f jal x0, -44 +22125649ns 388379 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22125934ns 388384 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22126331ns 388391 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22126502ns 388394 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22126957ns 388402 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22127127ns 388405 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22127411ns 388410 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22127695ns 388415 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22127980ns 388420 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22128434ns 388428 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22128605ns 388431 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22128889ns 388436 1a110850 fd5ff06f jal x0, -44 +22129173ns 388441 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22129457ns 388446 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22129855ns 388453 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22130026ns 388456 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22130480ns 388464 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22130651ns 388467 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22130935ns 388472 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22131219ns 388477 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22131503ns 388482 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22131958ns 388490 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22132128ns 388493 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22132412ns 388498 1a110850 fd5ff06f jal x0, -44 +22132697ns 388503 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22132981ns 388508 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22133379ns 388515 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22133549ns 388518 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22134004ns 388526 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22134174ns 388529 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22134458ns 388534 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22134743ns 388539 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22135027ns 388544 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22135481ns 388552 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22135652ns 388555 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22135936ns 388560 1a110850 fd5ff06f jal x0, -44 +22136220ns 388565 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22136504ns 388570 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22136902ns 388577 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22137073ns 388580 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22137527ns 388588 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22137698ns 388591 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22137982ns 388596 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22138266ns 388601 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22138550ns 388606 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22139005ns 388614 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22139175ns 388617 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22139460ns 388622 1a110850 fd5ff06f jal x0, -44 +22139744ns 388627 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22140028ns 388632 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22140426ns 388639 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22140596ns 388642 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22141051ns 388650 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22141221ns 388653 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22141506ns 388658 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22141790ns 388663 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22142074ns 388668 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22142529ns 388676 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22142699ns 388679 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22142983ns 388684 1a110850 fd5ff06f jal x0, -44 +22143267ns 388689 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22143552ns 388694 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22143949ns 388701 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22144120ns 388704 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22144575ns 388712 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22144745ns 388715 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22145029ns 388720 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22145313ns 388725 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22145597ns 388730 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22146052ns 388738 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22146223ns 388741 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22146507ns 388746 1a110850 fd5ff06f jal x0, -44 +22146791ns 388751 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22147075ns 388756 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22147473ns 388763 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22147643ns 388766 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22148098ns 388774 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22148269ns 388777 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22148553ns 388782 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22148837ns 388787 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22149121ns 388792 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22149576ns 388800 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22149746ns 388803 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22150030ns 388808 1a110850 fd5ff06f jal x0, -44 +22150315ns 388813 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22150599ns 388818 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22150997ns 388825 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22151167ns 388828 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22151622ns 388836 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22151792ns 388839 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22152076ns 388844 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22152360ns 388849 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22152645ns 388854 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22153099ns 388862 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22153270ns 388865 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22153554ns 388870 1a110850 fd5ff06f jal x0, -44 +22153838ns 388875 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22154122ns 388880 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22154520ns 388887 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22154691ns 388890 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22155145ns 388898 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22155316ns 388901 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22155600ns 388906 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22155884ns 388911 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22156168ns 388916 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22156623ns 388924 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22156793ns 388927 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22157078ns 388932 1a110850 fd5ff06f jal x0, -44 +22157362ns 388937 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22157646ns 388942 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22158044ns 388949 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22158214ns 388952 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22158669ns 388960 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22158839ns 388963 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22159123ns 388968 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22159408ns 388973 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22159692ns 388978 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22160146ns 388986 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22160317ns 388989 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22160601ns 388994 1a110850 fd5ff06f jal x0, -44 +22160885ns 388999 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22161169ns 389004 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22161567ns 389011 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22161738ns 389014 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22162192ns 389022 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22162363ns 389025 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22162647ns 389030 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22162931ns 389035 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22163215ns 389040 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22163670ns 389048 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22163841ns 389051 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22164125ns 389056 1a110850 fd5ff06f jal x0, -44 +22164409ns 389061 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22164693ns 389066 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22165091ns 389073 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22165261ns 389076 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22165716ns 389084 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22165887ns 389087 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22166171ns 389092 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22166455ns 389097 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22166739ns 389102 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22167194ns 389110 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22167364ns 389113 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22167648ns 389118 1a110850 fd5ff06f jal x0, -44 +22167932ns 389123 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22168217ns 389128 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22168614ns 389135 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22168785ns 389138 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22169240ns 389146 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22169410ns 389149 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22169694ns 389154 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22169978ns 389159 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22170263ns 389164 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22170717ns 389172 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22170888ns 389175 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22171172ns 389180 1a110850 fd5ff06f jal x0, -44 +22171456ns 389185 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22171740ns 389190 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22172138ns 389197 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22172309ns 389200 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22172763ns 389208 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22172934ns 389211 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22173218ns 389216 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22173502ns 389221 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22173786ns 389226 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22174241ns 389234 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22174411ns 389237 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22174695ns 389242 1a110850 fd5ff06f jal x0, -44 +22174980ns 389247 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22175264ns 389252 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22175662ns 389259 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22175832ns 389262 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22176287ns 389270 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22176457ns 389273 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22176741ns 389278 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22177026ns 389283 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22177310ns 389288 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22177764ns 389296 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22177935ns 389299 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22178219ns 389304 1a110850 fd5ff06f jal x0, -44 +22178503ns 389309 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22178787ns 389314 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22179185ns 389321 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22179356ns 389324 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22179810ns 389332 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22179981ns 389335 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22180265ns 389340 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22180549ns 389345 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22180833ns 389350 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22181288ns 389358 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22181458ns 389361 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22181743ns 389366 1a110850 fd5ff06f jal x0, -44 +22182027ns 389371 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22182311ns 389376 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22182709ns 389383 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22182879ns 389386 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22183334ns 389394 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22183504ns 389397 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22183789ns 389402 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22184073ns 389407 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22184357ns 389412 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22184812ns 389420 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22184982ns 389423 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22185266ns 389428 1a110850 fd5ff06f jal x0, -44 +22185550ns 389433 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22185835ns 389438 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22186232ns 389445 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22186403ns 389448 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22186858ns 389456 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22187028ns 389459 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22187312ns 389464 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22187596ns 389469 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22187880ns 389474 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22188335ns 389482 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22188506ns 389485 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22188790ns 389490 1a110850 fd5ff06f jal x0, -44 +22189074ns 389495 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22189358ns 389500 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22189756ns 389507 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22189926ns 389510 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22190381ns 389518 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22190552ns 389521 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22190836ns 389526 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22191120ns 389531 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22191404ns 389536 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22191859ns 389544 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22192029ns 389547 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22192313ns 389552 1a110850 fd5ff06f jal x0, -44 +22192598ns 389557 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22192882ns 389562 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22193280ns 389569 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22193450ns 389572 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22193905ns 389580 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22194075ns 389583 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22194359ns 389588 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22194643ns 389593 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22194928ns 389598 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22195382ns 389606 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22195553ns 389609 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22195837ns 389614 1a110850 fd5ff06f jal x0, -44 +22196121ns 389619 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22196405ns 389624 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22196803ns 389631 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22196974ns 389634 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22197428ns 389642 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22197599ns 389645 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22197883ns 389650 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22198167ns 389655 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22198451ns 389660 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22198906ns 389668 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22199076ns 389671 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22199361ns 389676 1a110850 fd5ff06f jal x0, -44 +22199645ns 389681 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22199929ns 389686 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22200327ns 389693 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22200497ns 389696 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22200952ns 389704 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22201122ns 389707 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22201407ns 389712 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22201691ns 389717 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22201975ns 389722 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22202429ns 389730 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22202600ns 389733 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22202884ns 389738 1a110850 fd5ff06f jal x0, -44 +22203168ns 389743 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22203452ns 389748 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22203850ns 389755 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22204021ns 389758 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22204475ns 389766 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22204646ns 389769 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22204930ns 389774 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22205214ns 389779 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22205498ns 389784 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22205953ns 389792 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22206124ns 389795 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22206408ns 389800 1a110850 fd5ff06f jal x0, -44 +22206692ns 389805 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22206976ns 389810 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22207374ns 389817 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22207544ns 389820 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22207999ns 389828 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22208170ns 389831 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22208454ns 389836 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22208738ns 389841 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22209022ns 389846 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22209477ns 389854 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22209647ns 389857 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22209931ns 389862 1a110850 fd5ff06f jal x0, -44 +22210215ns 389867 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22210500ns 389872 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22210897ns 389879 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22211068ns 389882 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22211523ns 389890 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22211693ns 389893 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22211977ns 389898 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22212261ns 389903 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22212546ns 389908 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22213000ns 389916 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22213171ns 389919 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22213455ns 389924 1a110850 fd5ff06f jal x0, -44 +22213739ns 389929 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22214023ns 389934 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22214421ns 389941 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22214592ns 389944 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22215046ns 389952 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22215217ns 389955 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22215501ns 389960 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22215785ns 389965 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22216069ns 389970 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22216524ns 389978 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22216694ns 389981 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22216978ns 389986 1a110850 fd5ff06f jal x0, -44 +22217263ns 389991 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22217547ns 389996 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22217945ns 390003 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22218115ns 390006 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22218570ns 390014 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22218740ns 390017 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22219024ns 390022 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22219309ns 390027 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22219593ns 390032 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22220047ns 390040 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22220218ns 390043 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22220502ns 390048 1a110850 fd5ff06f jal x0, -44 +22220786ns 390053 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22221070ns 390058 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22221468ns 390065 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22221639ns 390068 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22222093ns 390076 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22222264ns 390079 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22222548ns 390084 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22222832ns 390089 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22223116ns 390094 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22223571ns 390102 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22223741ns 390105 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22224026ns 390110 1a110850 fd5ff06f jal x0, -44 +22224310ns 390115 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22224594ns 390120 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22224992ns 390127 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22225162ns 390130 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22225617ns 390138 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22225787ns 390141 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22226072ns 390146 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22226356ns 390151 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22226640ns 390156 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22227095ns 390164 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22227265ns 390167 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22227549ns 390172 1a110850 fd5ff06f jal x0, -44 +22227833ns 390177 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22228118ns 390182 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22228515ns 390189 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22228686ns 390192 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22229141ns 390200 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22229311ns 390203 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22229595ns 390208 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22229879ns 390213 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22230163ns 390218 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22230618ns 390226 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22230789ns 390229 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22231073ns 390234 1a110850 fd5ff06f jal x0, -44 +22231357ns 390239 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22231641ns 390244 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22232039ns 390251 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22232209ns 390254 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22232664ns 390262 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22232835ns 390265 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22233119ns 390270 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22233403ns 390275 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22233687ns 390280 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22234142ns 390288 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22234312ns 390291 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22234596ns 390296 1a110850 fd5ff06f jal x0, -44 +22234881ns 390301 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22235165ns 390306 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22235563ns 390313 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22235733ns 390316 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22236188ns 390324 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22236358ns 390327 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22236642ns 390332 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22236927ns 390337 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22237211ns 390342 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22237665ns 390350 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22237836ns 390353 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22238120ns 390358 1a110850 fd5ff06f jal x0, -44 +22238404ns 390363 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22238688ns 390368 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22239086ns 390375 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22239257ns 390378 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22239711ns 390386 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22239882ns 390389 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22240166ns 390394 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22240450ns 390399 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22240734ns 390404 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22241189ns 390412 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22241359ns 390415 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22241644ns 390420 1a110850 fd5ff06f jal x0, -44 +22241928ns 390425 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22242212ns 390430 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22242610ns 390437 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22242780ns 390440 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22243235ns 390448 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22243405ns 390451 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22243690ns 390456 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22243974ns 390461 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22244258ns 390466 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22244712ns 390474 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22244883ns 390477 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22245167ns 390482 1a110850 fd5ff06f jal x0, -44 +22245451ns 390487 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22245735ns 390492 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22246133ns 390499 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22246304ns 390502 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22246758ns 390510 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22246929ns 390513 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22247213ns 390518 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22247497ns 390523 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22247781ns 390528 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22248236ns 390536 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22248407ns 390539 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22248691ns 390544 1a110850 fd5ff06f jal x0, -44 +22248975ns 390549 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22249259ns 390554 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22249657ns 390561 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22249827ns 390564 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22250282ns 390572 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22250453ns 390575 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22250737ns 390580 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22251021ns 390585 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22251305ns 390590 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22251760ns 390598 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22251930ns 390601 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22252214ns 390606 1a110850 fd5ff06f jal x0, -44 +22252498ns 390611 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22252783ns 390616 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22253180ns 390623 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22253351ns 390626 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22253806ns 390634 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22253976ns 390637 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22254260ns 390642 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22254544ns 390647 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22254829ns 390652 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22255283ns 390660 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22255454ns 390663 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22255738ns 390668 1a110850 fd5ff06f jal x0, -44 +22256022ns 390673 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22256306ns 390678 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22256704ns 390685 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22256875ns 390688 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22257329ns 390696 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22257500ns 390699 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22257784ns 390704 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22258068ns 390709 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22258352ns 390714 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22258807ns 390722 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22258977ns 390725 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22259261ns 390730 1a110850 fd5ff06f jal x0, -44 +22259546ns 390735 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22259830ns 390740 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22260228ns 390747 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22260398ns 390750 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22260853ns 390758 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22261023ns 390761 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22261307ns 390766 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22261592ns 390771 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22261876ns 390776 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22262330ns 390784 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22262501ns 390787 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22262785ns 390792 1a110850 fd5ff06f jal x0, -44 +22263069ns 390797 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22263353ns 390802 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22263751ns 390809 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22263922ns 390812 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22264376ns 390820 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22264547ns 390823 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22264831ns 390828 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22265115ns 390833 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22265399ns 390838 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22265854ns 390846 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22266024ns 390849 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22266309ns 390854 1a110850 fd5ff06f jal x0, -44 +22266593ns 390859 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22266877ns 390864 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22267275ns 390871 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22267445ns 390874 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22267900ns 390882 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22268070ns 390885 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22268355ns 390890 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22268639ns 390895 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22268923ns 390900 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22269378ns 390908 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22269548ns 390911 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22269832ns 390916 1a110850 fd5ff06f jal x0, -44 +22270116ns 390921 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22270401ns 390926 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22270798ns 390933 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22270969ns 390936 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22271424ns 390944 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22271594ns 390947 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22271878ns 390952 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22272162ns 390957 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22272447ns 390962 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22272901ns 390970 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22273072ns 390973 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22273356ns 390978 1a110850 fd5ff06f jal x0, -44 +22273640ns 390983 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22273924ns 390988 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22274322ns 390995 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22274492ns 390998 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22274947ns 391006 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22275118ns 391009 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22275402ns 391014 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22275686ns 391019 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22275970ns 391024 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22276425ns 391032 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22276595ns 391035 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22276879ns 391040 1a110850 fd5ff06f jal x0, -44 +22277164ns 391045 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22277448ns 391050 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22277846ns 391057 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22278016ns 391060 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22278471ns 391068 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22278641ns 391071 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22278925ns 391076 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22279210ns 391081 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22279494ns 391086 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22279948ns 391094 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22280119ns 391097 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22280403ns 391102 1a110850 fd5ff06f jal x0, -44 +22280687ns 391107 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22280971ns 391112 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22281369ns 391119 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22281540ns 391122 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22281994ns 391130 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22282165ns 391133 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22282449ns 391138 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22282733ns 391143 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22283017ns 391148 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22283472ns 391156 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22283642ns 391159 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22283927ns 391164 1a110850 fd5ff06f jal x0, -44 +22284211ns 391169 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22284495ns 391174 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22284893ns 391181 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22285063ns 391184 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22285518ns 391192 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22285688ns 391195 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22285973ns 391200 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22286257ns 391205 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22286541ns 391210 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22286995ns 391218 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22287166ns 391221 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22287450ns 391226 1a110850 fd5ff06f jal x0, -44 +22287734ns 391231 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22288018ns 391236 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22288416ns 391243 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22288587ns 391246 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22289041ns 391254 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22289212ns 391257 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22289496ns 391262 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22289780ns 391267 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22290064ns 391272 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22290519ns 391280 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22290690ns 391283 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22290974ns 391288 1a110850 fd5ff06f jal x0, -44 +22291258ns 391293 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22291542ns 391298 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22291940ns 391305 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22292110ns 391308 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22292565ns 391316 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22292736ns 391319 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22293020ns 391324 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22293304ns 391329 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22293588ns 391334 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22294043ns 391342 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22294213ns 391345 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22294497ns 391350 1a110850 fd5ff06f jal x0, -44 +22294781ns 391355 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22295066ns 391360 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22295463ns 391367 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22295634ns 391370 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22296089ns 391378 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22296259ns 391381 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22296543ns 391386 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22296827ns 391391 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22297112ns 391396 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22297566ns 391404 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22297737ns 391407 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22298021ns 391412 1a110850 fd5ff06f jal x0, -44 +22298305ns 391417 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22298589ns 391422 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22298987ns 391429 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22299158ns 391432 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22299612ns 391440 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22299783ns 391443 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22300067ns 391448 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22300351ns 391453 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22300635ns 391458 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22301090ns 391466 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22301260ns 391469 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22301544ns 391474 1a110850 fd5ff06f jal x0, -44 +22301829ns 391479 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22302113ns 391484 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22302511ns 391491 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22302681ns 391494 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22303136ns 391502 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22303306ns 391505 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22303590ns 391510 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22303875ns 391515 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22304159ns 391520 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22304613ns 391528 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22304784ns 391531 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22305068ns 391536 1a110850 fd5ff06f jal x0, -44 +22305352ns 391541 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22305636ns 391546 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22306034ns 391553 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22306205ns 391556 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22306659ns 391564 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22306830ns 391567 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22307114ns 391572 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22307398ns 391577 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22307682ns 391582 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22308137ns 391590 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22308307ns 391593 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22308592ns 391598 1a110850 fd5ff06f jal x0, -44 +22308876ns 391603 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22309160ns 391608 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22309558ns 391615 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22309728ns 391618 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22310183ns 391626 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22310353ns 391629 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22310638ns 391634 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22310922ns 391639 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22311206ns 391644 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22311661ns 391652 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22311831ns 391655 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22312115ns 391660 1a110850 fd5ff06f jal x0, -44 +22312399ns 391665 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22312684ns 391670 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22313081ns 391677 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22313252ns 391680 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22313707ns 391688 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22313877ns 391691 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22314161ns 391696 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22314445ns 391701 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22314730ns 391706 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22315184ns 391714 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22315355ns 391717 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22315639ns 391722 1a110850 fd5ff06f jal x0, -44 +22315923ns 391727 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22316207ns 391732 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22316605ns 391739 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22316775ns 391742 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22317230ns 391750 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22317401ns 391753 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22317685ns 391758 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22317969ns 391763 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22318253ns 391768 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22318708ns 391776 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22318878ns 391779 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22319162ns 391784 1a110850 fd5ff06f jal x0, -44 +22319447ns 391789 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22319731ns 391794 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22320129ns 391801 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22320299ns 391804 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22320754ns 391812 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22320924ns 391815 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22321208ns 391820 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22321493ns 391825 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22321777ns 391830 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22322231ns 391838 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22322402ns 391841 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22322686ns 391846 1a110850 fd5ff06f jal x0, -44 +22322970ns 391851 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22323254ns 391856 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22323652ns 391863 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22323823ns 391866 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22324277ns 391874 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22324448ns 391877 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22324732ns 391882 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22325016ns 391887 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22325300ns 391892 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22325755ns 391900 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22325925ns 391903 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22326210ns 391908 1a110850 fd5ff06f jal x0, -44 +22326494ns 391913 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22326778ns 391918 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22327176ns 391925 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22327346ns 391928 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22327801ns 391936 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22327971ns 391939 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22328256ns 391944 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22328540ns 391949 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22328824ns 391954 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22329279ns 391962 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22329449ns 391965 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22329733ns 391970 1a110850 fd5ff06f jal x0, -44 +22330017ns 391975 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22330301ns 391980 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22330699ns 391987 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22330870ns 391990 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22331324ns 391998 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22331495ns 392001 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22331779ns 392006 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22332063ns 392011 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22332347ns 392016 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22332802ns 392024 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22332973ns 392027 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22333257ns 392032 1a110850 fd5ff06f jal x0, -44 +22333541ns 392037 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22333825ns 392042 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22334223ns 392049 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22334393ns 392052 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22334848ns 392060 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22335019ns 392063 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22335303ns 392068 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22335587ns 392073 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22335871ns 392078 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22336326ns 392086 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22336496ns 392089 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22336780ns 392094 1a110850 fd5ff06f jal x0, -44 +22337064ns 392099 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22337349ns 392104 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22337746ns 392111 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22337917ns 392114 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22338372ns 392122 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22338542ns 392125 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22338826ns 392130 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22339110ns 392135 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22339395ns 392140 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22339849ns 392148 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22340020ns 392151 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22340304ns 392156 1a110850 fd5ff06f jal x0, -44 +22340588ns 392161 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22340872ns 392166 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22341270ns 392173 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22341441ns 392176 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22341895ns 392184 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22342066ns 392187 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22342350ns 392192 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22342634ns 392197 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22342918ns 392202 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22343373ns 392210 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22343543ns 392213 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22343827ns 392218 1a110850 fd5ff06f jal x0, -44 +22344112ns 392223 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22344396ns 392228 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22344794ns 392235 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22344964ns 392238 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22345419ns 392246 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22345589ns 392249 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22345873ns 392254 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22346158ns 392259 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22346442ns 392264 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22346896ns 392272 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22347067ns 392275 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22347351ns 392280 1a110850 fd5ff06f jal x0, -44 +22347635ns 392285 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22347919ns 392290 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22348317ns 392297 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22348488ns 392300 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22348942ns 392308 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22349113ns 392311 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22349397ns 392316 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22349681ns 392321 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22349965ns 392326 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22350420ns 392334 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22350591ns 392337 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22350875ns 392342 1a110850 fd5ff06f jal x0, -44 +22351159ns 392347 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22351443ns 392352 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22351841ns 392359 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22352011ns 392362 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22352466ns 392370 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22352636ns 392373 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22352921ns 392378 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22353205ns 392383 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22353489ns 392388 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22353944ns 392396 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22354114ns 392399 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22354398ns 392404 1a110850 fd5ff06f jal x0, -44 +22354682ns 392409 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22354967ns 392414 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22355364ns 392421 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22355535ns 392424 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22355990ns 392432 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22356160ns 392435 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22356444ns 392440 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22356728ns 392445 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22357013ns 392450 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22357467ns 392458 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22357638ns 392461 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22357922ns 392466 1a110850 fd5ff06f jal x0, -44 +22358206ns 392471 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22358490ns 392476 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22358888ns 392483 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22359058ns 392486 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22359513ns 392494 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22359684ns 392497 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22359968ns 392502 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22360252ns 392507 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22360536ns 392512 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22360991ns 392520 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22361161ns 392523 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22361445ns 392528 1a110850 fd5ff06f jal x0, -44 +22361730ns 392533 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22362014ns 392538 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22362412ns 392545 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22362582ns 392548 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22363037ns 392556 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22363207ns 392559 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22363491ns 392564 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22363776ns 392569 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22364060ns 392574 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22364514ns 392582 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22364685ns 392585 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22364969ns 392590 1a110850 fd5ff06f jal x0, -44 +22365253ns 392595 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22365537ns 392600 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22365935ns 392607 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22366106ns 392610 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22366560ns 392618 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22366731ns 392621 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22367015ns 392626 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22367299ns 392631 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22367583ns 392636 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22368038ns 392644 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22368208ns 392647 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22368493ns 392652 1a110850 fd5ff06f jal x0, -44 +22368777ns 392657 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22369061ns 392662 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22369459ns 392669 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22369629ns 392672 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22370084ns 392680 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22370254ns 392683 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22370539ns 392688 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22370823ns 392693 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22371107ns 392698 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22371562ns 392706 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22371732ns 392709 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22372016ns 392714 1a110850 fd5ff06f jal x0, -44 +22372300ns 392719 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22372584ns 392724 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22372982ns 392731 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22373153ns 392734 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22373607ns 392742 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22373778ns 392745 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22374062ns 392750 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22374346ns 392755 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22374630ns 392760 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22375085ns 392768 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22375256ns 392771 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22375540ns 392776 1a110850 fd5ff06f jal x0, -44 +22375824ns 392781 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22376108ns 392786 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22376506ns 392793 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22376676ns 392796 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22377131ns 392804 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22377302ns 392807 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22377586ns 392812 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22377870ns 392817 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22378154ns 392822 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22378609ns 392830 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22378779ns 392833 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22379063ns 392838 1a110850 fd5ff06f jal x0, -44 +22379347ns 392843 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22379632ns 392848 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22380029ns 392855 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22380200ns 392858 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22380655ns 392866 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22380825ns 392869 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22381109ns 392874 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22381393ns 392879 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22381678ns 392884 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22382132ns 392892 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22382303ns 392895 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22382587ns 392900 1a110850 fd5ff06f jal x0, -44 +22382871ns 392905 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22383155ns 392910 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22383553ns 392917 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22383724ns 392920 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22384178ns 392928 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22384349ns 392931 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22384633ns 392936 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22384917ns 392941 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22385201ns 392946 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22385656ns 392954 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22385826ns 392957 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22386111ns 392962 1a110850 fd5ff06f jal x0, -44 +22386395ns 392967 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22386679ns 392972 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22387077ns 392979 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22387247ns 392982 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22387702ns 392990 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22387872ns 392993 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22388156ns 392998 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22388441ns 393003 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22388725ns 393008 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22389179ns 393016 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22389350ns 393019 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22389634ns 393024 1a110850 fd5ff06f jal x0, -44 +22389918ns 393029 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22390202ns 393034 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22390600ns 393041 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22390771ns 393044 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22391225ns 393052 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22391396ns 393055 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22391680ns 393060 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22391964ns 393065 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22392248ns 393070 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22392703ns 393078 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22392874ns 393081 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22393158ns 393086 1a110850 fd5ff06f jal x0, -44 +22393442ns 393091 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22393726ns 393096 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22394124ns 393103 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22394294ns 393106 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22394749ns 393114 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22394919ns 393117 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22395204ns 393122 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22395488ns 393127 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22395772ns 393132 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22396227ns 393140 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22396397ns 393143 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22396681ns 393148 1a110850 fd5ff06f jal x0, -44 +22396965ns 393153 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22397250ns 393158 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22397647ns 393165 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22397818ns 393168 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22398273ns 393176 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22398443ns 393179 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22398727ns 393184 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22399011ns 393189 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22399296ns 393194 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22399750ns 393202 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22399921ns 393205 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22400205ns 393210 1a110850 fd5ff06f jal x0, -44 +22400489ns 393215 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22400773ns 393220 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22401171ns 393227 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22401341ns 393230 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22401796ns 393238 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22401967ns 393241 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22402251ns 393246 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22402535ns 393251 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22402819ns 393256 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22403274ns 393264 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22403444ns 393267 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22403728ns 393272 1a110850 fd5ff06f jal x0, -44 +22404013ns 393277 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22404297ns 393282 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22404695ns 393289 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22404865ns 393292 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22405320ns 393300 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22405490ns 393303 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22405774ns 393308 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22406059ns 393313 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22406343ns 393318 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22406797ns 393326 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22406968ns 393329 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22407252ns 393334 1a110850 fd5ff06f jal x0, -44 +22407536ns 393339 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22407820ns 393344 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22408218ns 393351 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22408389ns 393354 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22408843ns 393362 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22409014ns 393365 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22409298ns 393370 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22409582ns 393375 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22409866ns 393380 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22410321ns 393388 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22410491ns 393391 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22410776ns 393396 1a110850 fd5ff06f jal x0, -44 +22411060ns 393401 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22411344ns 393406 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22411742ns 393413 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22411912ns 393416 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22412367ns 393424 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22412537ns 393427 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22412822ns 393432 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22413106ns 393437 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22413390ns 393442 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22413845ns 393450 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22414015ns 393453 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22414299ns 393458 1a110850 fd5ff06f jal x0, -44 +22414583ns 393463 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22414867ns 393468 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22415265ns 393475 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22415436ns 393478 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22415890ns 393486 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22416061ns 393489 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22416345ns 393494 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22416629ns 393499 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22416913ns 393504 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22417368ns 393512 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22417539ns 393515 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22417823ns 393520 1a110850 fd5ff06f jal x0, -44 +22418107ns 393525 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22418391ns 393530 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22418789ns 393537 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22418959ns 393540 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22419414ns 393548 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22419585ns 393551 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22419869ns 393556 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22420153ns 393561 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22420437ns 393566 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22420892ns 393574 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22421062ns 393577 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22421346ns 393582 1a110850 fd5ff06f jal x0, -44 +22421631ns 393587 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22421915ns 393592 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22422312ns 393599 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22422483ns 393602 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22422938ns 393610 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22423108ns 393613 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22423392ns 393618 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22423676ns 393623 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22423961ns 393628 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22424415ns 393636 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22424586ns 393639 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22424870ns 393644 1a110850 fd5ff06f jal x0, -44 +22425154ns 393649 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22425438ns 393654 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22425836ns 393661 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22426007ns 393664 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22426461ns 393672 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22426632ns 393675 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22426916ns 393680 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22427200ns 393685 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22427484ns 393690 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22427939ns 393698 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22428109ns 393701 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22428394ns 393706 1a110850 fd5ff06f jal x0, -44 +22428678ns 393711 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22428962ns 393716 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22429360ns 393723 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22429530ns 393726 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22429985ns 393734 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22430155ns 393737 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22430439ns 393742 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22430724ns 393747 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22431008ns 393752 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22431462ns 393760 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22431633ns 393763 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22431917ns 393768 1a110850 fd5ff06f jal x0, -44 +22432201ns 393773 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22432485ns 393778 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22432883ns 393785 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22433054ns 393788 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22433508ns 393796 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22433679ns 393799 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22433963ns 393804 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22434247ns 393809 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22434531ns 393814 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22434986ns 393822 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22435157ns 393825 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22435441ns 393830 1a110850 fd5ff06f jal x0, -44 +22435725ns 393835 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22436009ns 393840 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22436407ns 393847 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22436577ns 393850 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22437032ns 393858 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22437202ns 393861 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22437487ns 393866 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22437771ns 393871 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22438055ns 393876 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22438510ns 393884 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22438680ns 393887 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22438964ns 393892 1a110850 fd5ff06f jal x0, -44 +22439248ns 393897 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22439533ns 393902 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22439930ns 393909 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22440101ns 393912 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22440556ns 393920 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22440726ns 393923 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22441010ns 393928 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22441294ns 393933 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22441579ns 393938 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22442033ns 393946 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22442204ns 393949 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22442488ns 393954 1a110850 fd5ff06f jal x0, -44 +22442772ns 393959 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22443056ns 393964 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22443454ns 393971 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22443624ns 393974 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22444079ns 393982 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22444250ns 393985 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22444534ns 393990 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22444818ns 393995 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22445102ns 394000 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22445557ns 394008 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22445727ns 394011 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22446011ns 394016 1a110850 fd5ff06f jal x0, -44 +22446296ns 394021 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22446580ns 394026 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22446978ns 394033 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22447148ns 394036 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22447603ns 394044 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22447773ns 394047 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22448057ns 394052 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22448342ns 394057 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22448626ns 394062 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22449080ns 394070 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22449251ns 394073 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22449535ns 394078 1a110850 fd5ff06f jal x0, -44 +22449819ns 394083 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22450103ns 394088 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22450501ns 394095 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22450672ns 394098 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22451126ns 394106 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22451297ns 394109 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22451581ns 394114 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22451865ns 394119 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22452149ns 394124 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22452604ns 394132 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22452774ns 394135 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22453059ns 394140 1a110850 fd5ff06f jal x0, -44 +22453343ns 394145 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22453627ns 394150 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22454025ns 394157 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22454195ns 394160 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22454650ns 394168 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22454820ns 394171 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22455105ns 394176 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22455389ns 394181 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22455673ns 394186 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22456128ns 394194 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22456298ns 394197 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22456582ns 394202 1a110850 fd5ff06f jal x0, -44 +22456866ns 394207 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22457151ns 394212 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22457548ns 394219 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22457719ns 394222 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22458173ns 394230 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22458344ns 394233 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22458628ns 394238 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22458912ns 394243 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22459196ns 394248 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22459651ns 394256 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22459822ns 394259 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22460106ns 394264 1a110850 fd5ff06f jal x0, -44 +22460390ns 394269 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22460674ns 394274 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22461072ns 394281 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22461242ns 394284 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22461697ns 394292 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22461868ns 394295 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22462152ns 394300 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22462436ns 394305 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22462720ns 394310 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22463175ns 394318 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22463345ns 394321 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22463629ns 394326 1a110850 fd5ff06f jal x0, -44 +22463914ns 394331 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22464198ns 394336 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22464595ns 394343 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22464766ns 394346 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22465221ns 394354 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22465391ns 394357 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22465675ns 394362 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22465959ns 394367 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22466244ns 394372 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22466698ns 394380 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22466869ns 394383 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22467153ns 394388 1a110850 fd5ff06f jal x0, -44 +22467437ns 394393 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22467721ns 394398 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22468119ns 394405 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22468290ns 394408 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22468744ns 394416 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22468915ns 394419 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22469199ns 394424 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22469483ns 394429 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22469767ns 394434 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22470222ns 394442 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22470392ns 394445 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22470677ns 394450 1a110850 fd5ff06f jal x0, -44 +22470961ns 394455 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22471245ns 394460 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22471643ns 394467 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22471813ns 394470 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22472268ns 394478 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22472438ns 394481 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22472722ns 394486 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22473007ns 394491 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22473291ns 394496 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22473745ns 394504 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22473916ns 394507 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22474200ns 394512 1a110850 fd5ff06f jal x0, -44 +22474484ns 394517 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22474768ns 394522 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22475166ns 394529 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22475337ns 394532 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22475791ns 394540 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22475962ns 394543 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22476246ns 394548 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22476530ns 394553 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22476814ns 394558 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22477269ns 394566 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22477440ns 394569 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22477724ns 394574 1a110850 fd5ff06f jal x0, -44 +22478008ns 394579 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22478292ns 394584 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22478690ns 394591 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22478860ns 394594 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22479315ns 394602 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22479485ns 394605 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22479770ns 394610 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22480054ns 394615 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22480338ns 394620 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22480793ns 394628 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22480963ns 394631 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22481247ns 394636 1a110850 fd5ff06f jal x0, -44 +22481531ns 394641 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22481816ns 394646 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22482213ns 394653 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22482384ns 394656 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22482839ns 394664 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22483009ns 394667 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22483293ns 394672 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22483577ns 394677 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22483862ns 394682 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22484316ns 394690 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22484487ns 394693 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22484771ns 394698 1a110850 fd5ff06f jal x0, -44 +22485055ns 394703 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22485339ns 394708 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22485737ns 394715 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22485907ns 394718 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22486362ns 394726 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22486533ns 394729 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22486817ns 394734 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22487101ns 394739 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22487385ns 394744 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22487840ns 394752 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22488010ns 394755 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22488294ns 394760 1a110850 fd5ff06f jal x0, -44 +22488579ns 394765 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22488863ns 394770 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22489261ns 394777 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22489431ns 394780 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22489886ns 394788 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22490056ns 394791 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22490340ns 394796 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22490625ns 394801 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22490909ns 394806 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22491363ns 394814 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22491534ns 394817 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22491818ns 394822 1a110850 fd5ff06f jal x0, -44 +22492102ns 394827 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22492386ns 394832 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22492784ns 394839 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22492955ns 394842 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22493409ns 394850 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22493580ns 394853 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22493864ns 394858 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22494148ns 394863 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22494432ns 394868 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22494887ns 394876 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22495057ns 394879 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22495342ns 394884 1a110850 fd5ff06f jal x0, -44 +22495626ns 394889 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22495910ns 394894 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22496308ns 394901 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22496478ns 394904 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22496933ns 394912 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22497103ns 394915 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22497388ns 394920 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22497672ns 394925 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22497956ns 394930 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22498411ns 394938 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22498581ns 394941 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22498865ns 394946 1a110850 fd5ff06f jal x0, -44 +22499149ns 394951 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22499434ns 394956 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22499831ns 394963 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22500002ns 394966 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22500456ns 394974 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22500627ns 394977 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22500911ns 394982 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22501195ns 394987 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22501479ns 394992 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22501934ns 395000 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22502105ns 395003 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22502389ns 395008 1a110850 fd5ff06f jal x0, -44 +22502673ns 395013 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22502957ns 395018 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22503355ns 395025 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22503525ns 395028 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22503980ns 395036 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22504151ns 395039 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22504435ns 395044 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22504719ns 395049 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22505003ns 395054 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22505458ns 395062 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22505628ns 395065 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22505912ns 395070 1a110850 fd5ff06f jal x0, -44 +22506197ns 395075 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22506481ns 395080 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22506879ns 395087 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22507049ns 395090 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22507504ns 395098 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22507674ns 395101 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22507958ns 395106 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22508242ns 395111 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22508527ns 395116 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22508981ns 395124 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22509152ns 395127 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22509436ns 395132 1a110850 fd5ff06f jal x0, -44 +22509720ns 395137 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22510004ns 395142 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22510402ns 395149 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22510573ns 395152 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22511027ns 395160 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22511198ns 395163 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22511482ns 395168 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22511766ns 395173 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22512050ns 395178 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22512505ns 395186 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22512675ns 395189 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22512960ns 395194 1a110850 fd5ff06f jal x0, -44 +22513244ns 395199 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22513528ns 395204 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22513926ns 395211 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22514096ns 395214 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22514551ns 395222 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22514721ns 395225 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22515005ns 395230 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22515290ns 395235 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22515574ns 395240 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22516028ns 395248 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22516199ns 395251 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22516483ns 395256 1a110850 fd5ff06f jal x0, -44 +22516767ns 395261 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22517051ns 395266 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22517449ns 395273 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22517620ns 395276 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22518074ns 395284 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22518245ns 395287 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22518529ns 395292 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22518813ns 395297 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22519097ns 395302 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22519552ns 395310 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22519723ns 395313 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22520007ns 395318 1a110850 fd5ff06f jal x0, -44 +22520291ns 395323 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22520575ns 395328 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22520973ns 395335 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22521143ns 395338 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22521598ns 395346 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22521768ns 395349 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22522053ns 395354 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22522337ns 395359 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22522621ns 395364 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22523076ns 395372 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22523246ns 395375 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22523530ns 395380 1a110850 fd5ff06f jal x0, -44 +22523814ns 395385 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22524099ns 395390 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22524496ns 395397 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22524667ns 395400 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22525122ns 395408 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22525292ns 395411 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22525576ns 395416 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22525860ns 395421 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22526145ns 395426 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22526599ns 395434 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22526770ns 395437 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22527054ns 395442 1a110850 fd5ff06f jal x0, -44 +22527338ns 395447 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22527622ns 395452 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22528020ns 395459 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22528191ns 395462 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22528645ns 395470 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22528816ns 395473 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22529100ns 395478 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22529384ns 395483 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22529668ns 395488 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22530123ns 395496 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22530293ns 395499 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22530577ns 395504 1a110850 fd5ff06f jal x0, -44 +22530862ns 395509 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22531146ns 395514 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22531544ns 395521 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22531714ns 395524 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22532169ns 395532 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22532339ns 395535 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22532623ns 395540 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22532908ns 395545 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22533192ns 395550 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22533646ns 395558 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22533817ns 395561 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22534101ns 395566 1a110850 fd5ff06f jal x0, -44 +22534385ns 395571 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22534669ns 395576 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22535067ns 395583 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22535238ns 395586 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22535692ns 395594 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22535863ns 395597 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22536147ns 395602 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22536431ns 395607 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22536715ns 395612 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22537170ns 395620 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22537340ns 395623 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22537625ns 395628 1a110850 fd5ff06f jal x0, -44 +22537909ns 395633 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22538193ns 395638 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22538591ns 395645 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22538761ns 395648 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22539216ns 395656 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22539386ns 395659 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22539671ns 395664 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22539955ns 395669 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22540239ns 395674 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22540694ns 395682 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22540864ns 395685 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22541148ns 395690 1a110850 fd5ff06f jal x0, -44 +22541432ns 395695 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22541717ns 395700 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22542114ns 395707 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22542285ns 395710 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22542739ns 395718 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22542910ns 395721 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22543194ns 395726 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22543478ns 395731 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22543762ns 395736 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22544217ns 395744 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22544388ns 395747 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22544672ns 395752 1a110850 fd5ff06f jal x0, -44 +22544956ns 395757 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22545240ns 395762 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22545638ns 395769 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22545808ns 395772 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22546263ns 395780 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22546434ns 395783 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22546718ns 395788 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22547002ns 395793 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22547286ns 395798 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22547741ns 395806 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22547911ns 395809 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22548195ns 395814 1a110850 fd5ff06f jal x0, -44 +22548480ns 395819 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22548764ns 395824 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22549162ns 395831 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22549332ns 395834 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22549787ns 395842 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22549957ns 395845 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22550241ns 395850 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22550525ns 395855 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22550810ns 395860 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22551264ns 395868 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22551435ns 395871 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22551719ns 395876 1a110850 fd5ff06f jal x0, -44 +22552003ns 395881 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22552287ns 395886 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22552685ns 395893 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22552856ns 395896 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22553310ns 395904 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22553481ns 395907 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22553765ns 395912 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22554049ns 395917 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22554333ns 395922 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22554788ns 395930 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22554958ns 395933 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22555243ns 395938 1a110850 fd5ff06f jal x0, -44 +22555527ns 395943 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22555811ns 395948 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22556209ns 395955 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22556379ns 395958 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22556834ns 395966 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22557004ns 395969 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22557288ns 395974 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22557573ns 395979 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22557857ns 395984 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22558311ns 395992 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22558482ns 395995 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22558766ns 396000 1a110850 fd5ff06f jal x0, -44 +22559050ns 396005 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22559334ns 396010 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22559732ns 396017 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22559903ns 396020 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22560357ns 396028 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22560528ns 396031 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22560812ns 396036 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22561096ns 396041 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22561380ns 396046 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22561835ns 396054 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22562006ns 396057 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22562290ns 396062 1a110850 fd5ff06f jal x0, -44 +22562574ns 396067 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22562858ns 396072 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22563256ns 396079 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22563426ns 396082 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22563881ns 396090 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22564051ns 396093 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22564336ns 396098 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22564620ns 396103 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22564904ns 396108 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22565359ns 396116 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22565529ns 396119 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22565813ns 396124 1a110850 fd5ff06f jal x0, -44 +22566097ns 396129 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22566382ns 396134 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22566779ns 396141 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22566950ns 396144 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22567405ns 396152 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22567575ns 396155 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22567859ns 396160 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22568143ns 396165 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22568428ns 396170 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22568882ns 396178 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22569053ns 396181 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22569337ns 396186 1a110850 fd5ff06f jal x0, -44 +22569621ns 396191 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22569905ns 396196 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22570303ns 396203 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22570474ns 396206 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22570928ns 396214 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22571099ns 396217 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22571383ns 396222 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22571667ns 396227 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22571951ns 396232 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22572406ns 396240 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22572576ns 396243 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22572860ns 396248 1a110850 fd5ff06f jal x0, -44 +22573145ns 396253 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22573429ns 396258 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22573827ns 396265 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22573997ns 396268 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22574452ns 396276 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22574622ns 396279 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22574906ns 396284 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22575191ns 396289 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22575475ns 396294 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22575929ns 396302 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22576100ns 396305 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22576384ns 396310 1a110850 fd5ff06f jal x0, -44 +22576668ns 396315 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22576952ns 396320 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22577350ns 396327 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22577521ns 396330 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22577975ns 396338 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22578146ns 396341 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22578430ns 396346 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22578714ns 396351 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22578998ns 396356 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22579453ns 396364 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22579623ns 396367 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22579908ns 396372 1a110850 fd5ff06f jal x0, -44 +22580192ns 396377 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22580476ns 396382 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22580874ns 396389 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22581044ns 396392 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22581499ns 396400 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22581669ns 396403 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22581954ns 396408 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22582238ns 396413 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22582522ns 396418 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22582977ns 396426 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22583147ns 396429 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22583431ns 396434 1a110850 fd5ff06f jal x0, -44 +22583715ns 396439 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22584000ns 396444 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22584397ns 396451 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22584568ns 396454 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22585023ns 396462 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22585193ns 396465 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22585477ns 396470 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22585761ns 396475 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22586045ns 396480 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22586500ns 396488 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22586671ns 396491 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22586955ns 396496 1a110850 fd5ff06f jal x0, -44 +22587239ns 396501 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22587523ns 396506 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22587921ns 396513 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22588091ns 396516 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22588546ns 396524 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22588717ns 396527 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22589001ns 396532 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22589285ns 396537 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22589569ns 396542 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22590024ns 396550 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22590194ns 396553 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22590478ns 396558 1a110850 fd5ff06f jal x0, -44 +22590763ns 396563 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22591047ns 396568 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22591445ns 396575 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22591615ns 396578 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22592070ns 396586 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22592240ns 396589 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22592524ns 396594 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22592808ns 396599 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22593093ns 396604 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22593547ns 396612 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22593718ns 396615 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22594002ns 396620 1a110850 fd5ff06f jal x0, -44 +22594286ns 396625 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22594570ns 396630 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22594968ns 396637 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22595139ns 396640 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22595593ns 396648 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22595764ns 396651 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22596048ns 396656 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22596332ns 396661 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22596616ns 396666 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22597071ns 396674 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22597241ns 396677 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22597526ns 396682 1a110850 fd5ff06f jal x0, -44 +22597810ns 396687 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22598094ns 396692 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22598492ns 396699 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22598662ns 396702 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22599117ns 396710 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22599287ns 396713 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22599571ns 396718 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22599856ns 396723 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22600140ns 396728 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22600594ns 396736 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22600765ns 396739 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22601049ns 396744 1a110850 fd5ff06f jal x0, -44 +22601333ns 396749 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22601617ns 396754 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22602015ns 396761 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22602186ns 396764 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22602640ns 396772 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22602811ns 396775 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22603095ns 396780 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22603379ns 396785 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22603663ns 396790 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22604118ns 396798 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22604289ns 396801 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22604573ns 396806 1a110850 fd5ff06f jal x0, -44 +22604857ns 396811 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22605141ns 396816 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22605539ns 396823 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22605709ns 396826 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22606164ns 396834 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22606335ns 396837 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22606619ns 396842 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22606903ns 396847 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22607187ns 396852 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22607642ns 396860 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22607812ns 396863 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22608096ns 396868 1a110850 fd5ff06f jal x0, -44 +22608380ns 396873 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22608665ns 396878 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22609062ns 396885 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22609233ns 396888 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22609688ns 396896 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22609858ns 396899 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22610142ns 396904 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22610426ns 396909 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22610711ns 396914 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22611165ns 396922 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22611336ns 396925 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22611620ns 396930 1a110850 fd5ff06f jal x0, -44 +22611904ns 396935 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22612188ns 396940 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22612586ns 396947 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22612757ns 396950 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22613211ns 396958 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22613382ns 396961 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22613666ns 396966 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22613950ns 396971 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22614234ns 396976 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22614689ns 396984 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22614859ns 396987 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22615143ns 396992 1a110850 fd5ff06f jal x0, -44 +22615428ns 396997 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22615712ns 397002 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22616110ns 397009 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22616280ns 397012 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22616735ns 397020 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22616905ns 397023 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22617189ns 397028 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22617474ns 397033 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22617758ns 397038 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22618212ns 397046 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22618383ns 397049 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22618667ns 397054 1a110850 fd5ff06f jal x0, -44 +22618951ns 397059 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22619235ns 397064 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22619633ns 397071 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22619804ns 397074 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22620258ns 397082 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22620429ns 397085 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22620713ns 397090 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22620997ns 397095 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22621281ns 397100 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22621736ns 397108 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22621906ns 397111 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22622191ns 397116 1a110850 fd5ff06f jal x0, -44 +22622475ns 397121 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22622759ns 397126 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22623157ns 397133 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22623327ns 397136 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22623782ns 397144 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22623952ns 397147 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22624237ns 397152 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22624521ns 397157 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22624805ns 397162 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22625260ns 397170 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22625430ns 397173 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22625714ns 397178 1a110850 fd5ff06f jal x0, -44 +22625998ns 397183 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22626283ns 397188 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22626680ns 397195 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22626851ns 397198 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22627306ns 397206 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22627476ns 397209 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22627760ns 397214 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22628044ns 397219 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22628328ns 397224 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22628783ns 397232 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22628954ns 397235 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22629238ns 397240 1a110850 fd5ff06f jal x0, -44 +22629522ns 397245 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22629806ns 397250 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22630204ns 397257 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22630374ns 397260 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22630829ns 397268 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22631000ns 397271 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22631284ns 397276 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22631568ns 397281 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22631852ns 397286 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22632307ns 397294 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22632477ns 397297 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22632761ns 397302 1a110850 fd5ff06f jal x0, -44 +22633046ns 397307 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22633330ns 397312 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22633728ns 397319 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22633898ns 397322 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22634353ns 397330 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22634523ns 397333 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22634807ns 397338 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22635091ns 397343 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22635376ns 397348 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22635830ns 397356 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22636001ns 397359 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22636285ns 397364 1a110850 fd5ff06f jal x0, -44 +22636569ns 397369 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22636853ns 397374 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22637251ns 397381 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22637422ns 397384 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22637876ns 397392 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22638047ns 397395 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22638331ns 397400 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22638615ns 397405 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22638899ns 397410 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22639354ns 397418 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22639524ns 397421 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22639809ns 397426 1a110850 fd5ff06f jal x0, -44 +22640093ns 397431 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22640377ns 397436 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22640775ns 397443 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22640945ns 397446 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22641400ns 397454 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22641570ns 397457 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22641855ns 397462 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22642139ns 397467 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22642423ns 397472 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22642877ns 397480 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22643048ns 397483 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22643332ns 397488 1a110850 fd5ff06f jal x0, -44 +22643616ns 397493 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22643900ns 397498 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22644298ns 397505 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22644469ns 397508 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22644923ns 397516 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22645094ns 397519 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22645378ns 397524 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22645662ns 397529 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22645946ns 397534 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22646401ns 397542 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22646572ns 397545 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22646856ns 397550 1a110850 fd5ff06f jal x0, -44 +22647140ns 397555 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22647424ns 397560 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22647822ns 397567 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22647992ns 397570 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22648447ns 397578 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22648618ns 397581 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22648902ns 397586 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22649186ns 397591 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22649470ns 397596 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22649925ns 397604 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22650095ns 397607 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22650379ns 397612 1a110850 fd5ff06f jal x0, -44 +22650663ns 397617 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22650948ns 397622 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22651345ns 397629 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22651516ns 397632 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22651971ns 397640 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22652141ns 397643 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22652425ns 397648 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22652709ns 397653 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22652994ns 397658 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22653448ns 397666 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22653619ns 397669 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22653903ns 397674 1a110850 fd5ff06f jal x0, -44 +22654187ns 397679 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22654471ns 397684 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22654869ns 397691 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22655040ns 397694 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22655494ns 397702 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22655665ns 397705 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22655949ns 397710 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22656233ns 397715 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22656517ns 397720 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22656972ns 397728 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22657142ns 397731 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22657426ns 397736 1a110850 fd5ff06f jal x0, -44 +22657711ns 397741 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22657995ns 397746 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22658393ns 397753 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22658563ns 397756 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22659018ns 397764 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22659188ns 397767 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22659472ns 397772 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22659757ns 397777 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22660041ns 397782 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22660495ns 397790 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22660666ns 397793 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22660950ns 397798 1a110850 fd5ff06f jal x0, -44 +22661234ns 397803 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22661518ns 397808 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22661916ns 397815 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22662087ns 397818 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22662541ns 397826 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22662712ns 397829 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22662996ns 397834 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22663280ns 397839 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22663564ns 397844 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22664019ns 397852 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22664189ns 397855 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22664474ns 397860 1a110850 fd5ff06f jal x0, -44 +22664758ns 397865 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22665042ns 397870 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22665440ns 397877 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22665610ns 397880 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22666065ns 397888 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22666235ns 397891 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22666520ns 397896 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22666804ns 397901 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22667088ns 397906 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22667543ns 397914 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22667713ns 397917 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22667997ns 397922 1a110850 fd5ff06f jal x0, -44 +22668281ns 397927 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22668566ns 397932 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22668963ns 397939 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22669134ns 397942 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22669589ns 397950 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22669759ns 397953 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22670043ns 397958 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22670327ns 397963 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22670611ns 397968 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22671066ns 397976 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22671237ns 397979 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22671521ns 397984 1a110850 fd5ff06f jal x0, -44 +22671805ns 397989 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22672089ns 397994 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22672487ns 398001 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22672657ns 398004 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22673112ns 398012 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22673283ns 398015 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22673567ns 398020 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22673851ns 398025 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22674135ns 398030 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22674590ns 398038 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22674760ns 398041 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22675044ns 398046 1a110850 fd5ff06f jal x0, -44 +22675329ns 398051 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22675613ns 398056 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22676011ns 398063 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22676181ns 398066 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22676636ns 398074 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22676806ns 398077 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22677090ns 398082 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22677375ns 398087 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22677659ns 398092 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22678113ns 398100 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22678284ns 398103 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22678568ns 398108 1a110850 fd5ff06f jal x0, -44 +22678852ns 398113 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22679136ns 398118 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22679534ns 398125 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22679705ns 398128 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22680159ns 398136 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22680330ns 398139 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22680614ns 398144 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22680898ns 398149 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22681182ns 398154 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22681637ns 398162 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22681807ns 398165 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22682092ns 398170 1a110850 fd5ff06f jal x0, -44 +22682376ns 398175 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22682660ns 398180 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22683058ns 398187 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22683228ns 398190 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22683683ns 398198 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22683853ns 398201 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22684138ns 398206 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22684422ns 398211 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22684706ns 398216 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22685160ns 398224 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22685331ns 398227 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22685615ns 398232 1a110850 fd5ff06f jal x0, -44 +22685899ns 398237 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22686183ns 398242 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22686581ns 398249 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22686752ns 398252 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22687206ns 398260 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22687377ns 398263 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22687661ns 398268 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22687945ns 398273 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22688229ns 398278 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22688684ns 398286 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22688855ns 398289 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22689139ns 398294 1a110850 fd5ff06f jal x0, -44 +22689423ns 398299 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22689707ns 398304 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22690105ns 398311 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22690275ns 398314 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22690730ns 398322 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22690901ns 398325 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22691185ns 398330 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22691469ns 398335 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22691753ns 398340 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22692208ns 398348 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22692378ns 398351 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22692662ns 398356 1a110850 fd5ff06f jal x0, -44 +22692946ns 398361 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22693231ns 398366 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22693628ns 398373 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22693799ns 398376 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22694254ns 398384 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22694424ns 398387 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22694708ns 398392 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22694992ns 398397 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22695277ns 398402 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22695731ns 398410 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22695902ns 398413 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22696186ns 398418 1a110850 fd5ff06f jal x0, -44 +22696470ns 398423 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22696754ns 398428 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22697152ns 398435 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22697323ns 398438 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22697777ns 398446 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22697948ns 398449 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22698232ns 398454 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22698516ns 398459 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22698800ns 398464 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22699255ns 398472 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22699425ns 398475 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22699709ns 398480 1a110850 fd5ff06f jal x0, -44 +22699994ns 398485 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22700278ns 398490 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22700676ns 398497 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22700846ns 398500 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22701301ns 398508 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22701471ns 398511 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22701755ns 398516 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22702040ns 398521 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22702324ns 398526 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22702778ns 398534 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22702949ns 398537 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22703233ns 398542 1a110850 fd5ff06f jal x0, -44 +22703517ns 398547 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22703801ns 398552 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22704199ns 398559 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22704370ns 398562 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22704824ns 398570 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22704995ns 398573 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22705279ns 398578 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22705563ns 398583 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22705847ns 398588 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22706302ns 398596 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22706472ns 398599 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22706757ns 398604 1a110850 fd5ff06f jal x0, -44 +22707041ns 398609 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22707325ns 398614 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22707723ns 398621 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22707893ns 398624 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22708348ns 398632 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22708518ns 398635 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22708803ns 398640 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22709087ns 398645 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22709371ns 398650 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22709826ns 398658 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22709996ns 398661 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22710280ns 398666 1a110850 fd5ff06f jal x0, -44 +22710564ns 398671 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22710849ns 398676 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22711246ns 398683 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22711417ns 398686 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22711872ns 398694 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22712042ns 398697 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22712326ns 398702 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22712610ns 398707 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22712895ns 398712 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22713349ns 398720 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22713520ns 398723 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22713804ns 398728 1a110850 fd5ff06f jal x0, -44 +22714088ns 398733 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22714372ns 398738 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22714770ns 398745 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22714940ns 398748 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22715395ns 398756 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22715566ns 398759 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22715850ns 398764 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22716134ns 398769 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22716418ns 398774 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22716873ns 398782 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22717043ns 398785 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22717327ns 398790 1a110850 fd5ff06f jal x0, -44 +22717612ns 398795 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22717896ns 398800 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22718294ns 398807 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22718464ns 398810 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22718919ns 398818 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22719089ns 398821 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22719373ns 398826 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22719658ns 398831 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22719942ns 398836 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22720396ns 398844 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22720567ns 398847 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22720851ns 398852 1a110850 fd5ff06f jal x0, -44 +22721135ns 398857 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22721419ns 398862 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22721817ns 398869 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22721988ns 398872 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22722442ns 398880 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22722613ns 398883 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22722897ns 398888 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22723181ns 398893 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22723465ns 398898 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22723920ns 398906 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22724090ns 398909 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22724375ns 398914 1a110850 fd5ff06f jal x0, -44 +22724659ns 398919 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22724943ns 398924 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22725341ns 398931 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22725511ns 398934 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22725966ns 398942 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22726136ns 398945 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22726421ns 398950 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22726705ns 398955 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22726989ns 398960 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22727443ns 398968 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22727614ns 398971 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22727898ns 398976 1a110850 fd5ff06f jal x0, -44 +22728182ns 398981 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22728466ns 398986 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22728864ns 398993 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22729035ns 398996 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22729489ns 399004 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22729660ns 399007 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22729944ns 399012 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22730228ns 399017 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22730512ns 399022 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22730967ns 399030 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22731138ns 399033 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22731422ns 399038 1a110850 fd5ff06f jal x0, -44 +22731706ns 399043 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22731990ns 399048 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22732388ns 399055 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22732558ns 399058 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22733013ns 399066 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22733184ns 399069 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22733468ns 399074 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22733752ns 399079 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22734036ns 399084 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22734491ns 399092 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22734661ns 399095 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22734945ns 399100 1a110850 fd5ff06f jal x0, -44 +22735229ns 399105 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22735514ns 399110 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22735911ns 399117 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22736082ns 399120 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22736537ns 399128 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22736707ns 399131 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22736991ns 399136 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22737275ns 399141 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22737560ns 399146 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22738014ns 399154 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22738185ns 399157 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22738469ns 399162 1a110850 fd5ff06f jal x0, -44 +22738753ns 399167 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22739037ns 399172 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22739435ns 399179 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22739606ns 399182 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22740060ns 399190 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22740231ns 399193 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22740515ns 399198 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22740799ns 399203 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22741083ns 399208 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22741538ns 399216 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22741708ns 399219 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22741992ns 399224 1a110850 fd5ff06f jal x0, -44 +22742277ns 399229 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22742561ns 399234 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22742959ns 399241 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22743129ns 399244 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22743584ns 399252 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22743754ns 399255 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22744038ns 399260 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22744323ns 399265 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22744607ns 399270 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22745061ns 399278 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22745232ns 399281 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22745516ns 399286 1a110850 fd5ff06f jal x0, -44 +22745800ns 399291 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22746084ns 399296 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22746482ns 399303 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22746653ns 399306 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22747107ns 399314 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22747278ns 399317 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22747562ns 399322 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22747846ns 399327 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22748130ns 399332 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22748585ns 399340 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22748755ns 399343 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22749040ns 399348 1a110850 fd5ff06f jal x0, -44 +22749324ns 399353 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22749608ns 399358 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22750006ns 399365 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22750176ns 399368 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22750631ns 399376 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22750801ns 399379 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22751086ns 399384 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22751370ns 399389 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22751654ns 399394 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22752109ns 399402 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22752279ns 399405 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22752563ns 399410 1a110850 fd5ff06f jal x0, -44 +22752847ns 399415 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22753132ns 399420 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22753529ns 399427 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22753700ns 399430 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22754155ns 399438 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22754325ns 399441 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22754609ns 399446 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22754893ns 399451 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22755178ns 399456 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22755632ns 399464 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22755803ns 399467 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22756087ns 399472 1a110850 fd5ff06f jal x0, -44 +22756371ns 399477 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22756655ns 399482 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22757053ns 399489 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22757223ns 399492 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22757678ns 399500 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22757849ns 399503 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22758133ns 399508 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22758417ns 399513 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22758701ns 399518 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22759156ns 399526 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22759326ns 399529 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22759610ns 399534 1a110850 fd5ff06f jal x0, -44 +22759895ns 399539 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22760179ns 399544 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22760577ns 399551 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22760747ns 399554 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22761202ns 399562 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22761372ns 399565 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22761656ns 399570 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22761941ns 399575 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22762225ns 399580 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22762679ns 399588 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22762850ns 399591 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22763134ns 399596 1a110850 fd5ff06f jal x0, -44 +22763418ns 399601 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22763702ns 399606 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22764100ns 399613 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22764271ns 399616 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22764725ns 399624 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22764896ns 399627 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22765180ns 399632 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22765464ns 399637 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22765748ns 399642 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22766203ns 399650 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22766373ns 399653 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22766658ns 399658 1a110850 fd5ff06f jal x0, -44 +22766942ns 399663 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22767226ns 399668 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22767624ns 399675 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22767794ns 399678 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22768249ns 399686 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22768419ns 399689 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22768704ns 399694 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22768988ns 399699 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22769272ns 399704 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22769727ns 399712 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22769897ns 399715 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22770181ns 399720 1a110850 fd5ff06f jal x0, -44 +22770465ns 399725 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22770749ns 399730 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22771147ns 399737 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22771318ns 399740 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22771772ns 399748 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22771943ns 399751 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22772227ns 399756 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22772511ns 399761 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22772795ns 399766 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22773250ns 399774 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22773421ns 399777 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22773705ns 399782 1a110850 fd5ff06f jal x0, -44 +22773989ns 399787 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22774273ns 399792 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22774671ns 399799 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22774841ns 399802 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22775296ns 399810 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22775467ns 399813 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22775751ns 399818 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22776035ns 399823 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22776319ns 399828 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22776774ns 399836 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22776944ns 399839 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22777228ns 399844 1a110850 fd5ff06f jal x0, -44 +22777512ns 399849 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22777797ns 399854 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22778194ns 399861 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22778365ns 399864 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22778820ns 399872 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22778990ns 399875 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22779274ns 399880 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22779558ns 399885 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22779843ns 399890 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22780297ns 399898 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22780468ns 399901 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22780752ns 399906 1a110850 fd5ff06f jal x0, -44 +22781036ns 399911 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22781320ns 399916 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22781718ns 399923 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22781889ns 399926 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22782343ns 399934 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22782514ns 399937 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22782798ns 399942 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22783082ns 399947 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22783366ns 399952 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22783821ns 399960 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22783991ns 399963 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22784275ns 399968 1a110850 fd5ff06f jal x0, -44 +22784560ns 399973 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22784844ns 399978 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22785242ns 399985 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22785412ns 399988 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22785867ns 399996 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22786037ns 399999 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22786321ns 400004 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22786606ns 400009 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22786890ns 400014 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22787344ns 400022 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22787515ns 400025 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22787799ns 400030 1a110850 fd5ff06f jal x0, -44 +22788083ns 400035 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22788367ns 400040 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22788765ns 400047 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22788936ns 400050 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22789390ns 400058 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22789561ns 400061 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22789845ns 400066 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22790129ns 400071 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22790413ns 400076 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22790868ns 400084 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22791039ns 400087 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22791323ns 400092 1a110850 fd5ff06f jal x0, -44 +22791607ns 400097 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22791891ns 400102 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22792289ns 400109 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22792459ns 400112 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22792914ns 400120 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22793084ns 400123 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22793369ns 400128 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22793653ns 400133 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22793937ns 400138 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22794392ns 400146 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22794562ns 400149 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22794846ns 400154 1a110850 fd5ff06f jal x0, -44 +22795130ns 400159 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22795415ns 400164 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22795812ns 400171 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22795983ns 400174 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22796438ns 400182 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22796608ns 400185 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22796892ns 400190 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22797176ns 400195 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22797461ns 400200 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22797915ns 400208 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22798086ns 400211 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22798370ns 400216 1a110850 fd5ff06f jal x0, -44 +22798654ns 400221 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22798938ns 400226 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22799336ns 400233 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22799506ns 400236 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22799961ns 400244 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22800132ns 400247 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22800416ns 400252 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22800700ns 400257 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22800984ns 400262 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22801439ns 400270 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22801609ns 400273 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22801893ns 400278 1a110850 fd5ff06f jal x0, -44 +22802178ns 400283 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22802462ns 400288 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22802860ns 400295 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22803030ns 400298 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22803485ns 400306 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22803655ns 400309 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22803939ns 400314 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22804224ns 400319 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22804508ns 400324 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22804962ns 400332 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22805133ns 400335 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22805417ns 400340 1a110850 fd5ff06f jal x0, -44 +22805701ns 400345 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22805985ns 400350 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22806383ns 400357 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22806554ns 400360 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22807008ns 400368 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22807179ns 400371 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22807463ns 400376 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22807747ns 400381 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22808031ns 400386 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22808486ns 400394 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22808656ns 400397 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22808941ns 400402 1a110850 fd5ff06f jal x0, -44 +22809225ns 400407 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22809509ns 400412 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22809907ns 400419 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22810077ns 400422 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22810532ns 400430 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22810702ns 400433 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22810987ns 400438 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22811271ns 400443 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22811555ns 400448 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22812010ns 400456 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22812180ns 400459 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22812464ns 400464 1a110850 fd5ff06f jal x0, -44 +22812748ns 400469 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22813032ns 400474 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22813430ns 400481 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22813601ns 400484 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22814055ns 400492 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22814226ns 400495 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22814510ns 400500 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22814794ns 400505 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22815078ns 400510 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22815533ns 400518 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22815704ns 400521 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22815988ns 400526 1a110850 fd5ff06f jal x0, -44 +22816272ns 400531 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22816556ns 400536 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22816954ns 400543 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22817124ns 400546 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22817579ns 400554 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22817750ns 400557 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22818034ns 400562 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22818318ns 400567 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22818602ns 400572 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22819057ns 400580 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22819227ns 400583 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22819511ns 400588 1a110850 fd5ff06f jal x0, -44 +22819795ns 400593 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22820080ns 400598 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22820477ns 400605 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22820648ns 400608 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22821103ns 400616 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22821273ns 400619 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22821557ns 400624 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22821841ns 400629 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22822126ns 400634 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22822580ns 400642 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22822751ns 400645 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22823035ns 400650 1a110850 fd5ff06f jal x0, -44 +22823319ns 400655 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22823603ns 400660 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22824001ns 400667 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22824172ns 400670 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22824626ns 400678 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22824797ns 400681 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22825081ns 400686 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22825365ns 400691 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22825649ns 400696 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22826104ns 400704 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22826274ns 400707 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22826559ns 400712 1a110850 fd5ff06f jal x0, -44 +22826843ns 400717 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22827127ns 400722 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22827525ns 400729 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22827695ns 400732 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22828150ns 400740 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22828320ns 400743 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22828604ns 400748 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22828889ns 400753 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22829173ns 400758 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22829627ns 400766 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22829798ns 400769 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22830082ns 400774 1a110850 fd5ff06f jal x0, -44 +22830366ns 400779 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22830650ns 400784 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22831048ns 400791 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22831219ns 400794 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22831673ns 400802 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22831844ns 400805 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22832128ns 400810 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22832412ns 400815 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22832696ns 400820 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22833151ns 400828 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22833322ns 400831 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22833606ns 400836 1a110850 fd5ff06f jal x0, -44 +22833890ns 400841 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22834174ns 400846 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22834572ns 400853 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22834742ns 400856 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22835197ns 400864 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22835367ns 400867 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22835652ns 400872 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22835936ns 400877 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22836220ns 400882 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22836675ns 400890 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22836845ns 400893 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22837129ns 400898 1a110850 fd5ff06f jal x0, -44 +22837413ns 400903 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22837698ns 400908 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22838095ns 400915 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22838266ns 400918 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22838721ns 400926 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22838891ns 400929 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22839175ns 400934 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22839459ns 400939 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22839744ns 400944 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22840198ns 400952 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22840369ns 400955 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22840653ns 400960 1a110850 fd5ff06f jal x0, -44 +22840937ns 400965 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22841221ns 400970 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22841619ns 400977 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22841789ns 400980 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22842244ns 400988 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22842415ns 400991 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22842699ns 400996 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22842983ns 401001 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22843267ns 401006 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22843722ns 401014 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22843892ns 401017 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22844176ns 401022 1a110850 fd5ff06f jal x0, -44 +22844461ns 401027 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22844745ns 401032 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22845143ns 401039 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22845313ns 401042 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22845768ns 401050 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22845938ns 401053 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22846222ns 401058 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22846507ns 401063 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22846791ns 401068 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22847245ns 401076 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22847416ns 401079 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22847700ns 401084 1a110850 fd5ff06f jal x0, -44 +22847984ns 401089 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22848268ns 401094 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22848666ns 401101 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22848837ns 401104 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22849291ns 401112 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22849462ns 401115 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22849746ns 401120 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22850030ns 401125 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22850314ns 401130 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22850769ns 401138 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22850939ns 401141 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22851224ns 401146 1a110850 fd5ff06f jal x0, -44 +22851508ns 401151 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22851792ns 401156 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22852190ns 401163 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22852360ns 401166 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22852815ns 401174 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22852985ns 401177 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22853270ns 401182 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22853554ns 401187 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22853838ns 401192 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22854293ns 401200 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22854463ns 401203 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22854747ns 401208 1a110850 fd5ff06f jal x0, -44 +22855031ns 401213 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22855315ns 401218 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22855713ns 401225 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22855884ns 401228 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22856338ns 401236 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22856509ns 401239 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22856793ns 401244 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22857077ns 401249 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22857361ns 401254 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22857816ns 401262 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22857987ns 401265 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22858271ns 401270 1a110850 fd5ff06f jal x0, -44 +22858555ns 401275 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22858839ns 401280 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22859237ns 401287 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22859407ns 401290 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22859862ns 401298 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22860033ns 401301 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22860317ns 401306 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22860601ns 401311 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22860885ns 401316 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22861340ns 401324 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22861510ns 401327 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22861794ns 401332 1a110850 fd5ff06f jal x0, -44 +22862079ns 401337 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22862363ns 401342 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22862760ns 401349 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22862931ns 401352 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22863386ns 401360 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22863556ns 401363 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22863840ns 401368 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22864124ns 401373 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22864409ns 401378 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22864863ns 401386 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22865034ns 401389 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22865318ns 401394 1a110850 fd5ff06f jal x0, -44 +22865602ns 401399 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22865886ns 401404 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22866284ns 401411 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22866455ns 401414 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22866909ns 401422 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22867080ns 401425 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22867364ns 401430 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22867648ns 401435 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22867932ns 401440 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22868387ns 401448 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22868557ns 401451 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22868842ns 401456 1a110850 fd5ff06f jal x0, -44 +22869126ns 401461 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22869410ns 401466 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22869808ns 401473 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22869978ns 401476 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22870433ns 401484 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22870603ns 401487 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22870887ns 401492 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22871172ns 401497 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22871456ns 401502 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22871910ns 401510 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22872081ns 401513 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22872365ns 401518 1a110850 fd5ff06f jal x0, -44 +22872649ns 401523 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22872933ns 401528 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22873331ns 401535 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22873502ns 401538 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22873956ns 401546 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22874127ns 401549 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22874411ns 401554 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22874695ns 401559 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22874979ns 401564 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22875434ns 401572 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22875605ns 401575 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22875889ns 401580 1a110850 fd5ff06f jal x0, -44 +22876173ns 401585 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22876457ns 401590 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22876855ns 401597 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22877025ns 401600 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22877480ns 401608 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22877650ns 401611 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22877935ns 401616 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22878219ns 401621 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22878503ns 401626 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22878958ns 401634 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22879128ns 401637 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22879412ns 401642 1a110850 fd5ff06f jal x0, -44 +22879696ns 401647 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22879981ns 401652 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22880378ns 401659 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22880549ns 401662 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22881004ns 401670 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22881174ns 401673 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22881458ns 401678 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22881742ns 401683 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22882027ns 401688 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22882481ns 401696 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22882652ns 401699 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22882936ns 401704 1a110850 fd5ff06f jal x0, -44 +22883220ns 401709 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22883504ns 401714 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22883902ns 401721 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22884072ns 401724 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22884527ns 401732 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22884698ns 401735 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22884982ns 401740 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22885266ns 401745 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22885550ns 401750 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22886005ns 401758 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22886175ns 401761 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22886459ns 401766 1a110850 fd5ff06f jal x0, -44 +22886744ns 401771 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22887028ns 401776 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22887426ns 401783 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22887596ns 401786 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22888051ns 401794 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22888221ns 401797 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22888505ns 401802 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22888790ns 401807 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22889074ns 401812 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22889528ns 401820 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22889699ns 401823 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22889983ns 401828 1a110850 fd5ff06f jal x0, -44 +22890267ns 401833 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22890551ns 401838 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22890949ns 401845 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22891120ns 401848 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22891574ns 401856 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22891745ns 401859 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22892029ns 401864 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22892313ns 401869 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22892597ns 401874 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22893052ns 401882 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22893222ns 401885 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22893507ns 401890 1a110850 fd5ff06f jal x0, -44 +22893791ns 401895 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22894075ns 401900 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22894473ns 401907 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22894643ns 401910 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22895098ns 401918 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22895268ns 401921 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22895553ns 401926 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22895837ns 401931 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22896121ns 401936 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22896576ns 401944 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22896746ns 401947 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22897030ns 401952 1a110850 fd5ff06f jal x0, -44 +22897314ns 401957 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22897599ns 401962 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22897996ns 401969 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22898167ns 401972 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22898621ns 401980 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22898792ns 401983 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22899076ns 401988 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22899360ns 401993 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22899644ns 401998 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22900099ns 402006 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22900270ns 402009 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22900554ns 402014 1a110850 fd5ff06f jal x0, -44 +22900838ns 402019 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22901122ns 402024 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22901520ns 402031 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22901690ns 402034 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22902145ns 402042 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22902316ns 402045 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22902600ns 402050 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22902884ns 402055 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22903168ns 402060 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22903623ns 402068 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22903793ns 402071 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22904077ns 402076 1a110850 fd5ff06f jal x0, -44 +22904362ns 402081 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22904646ns 402086 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22905043ns 402093 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22905214ns 402096 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22905669ns 402104 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22905839ns 402107 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22906123ns 402112 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22906407ns 402117 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22906692ns 402122 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22907146ns 402130 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22907317ns 402133 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22907601ns 402138 1a110850 fd5ff06f jal x0, -44 +22907885ns 402143 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22908169ns 402148 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22908567ns 402155 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22908738ns 402158 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22909192ns 402166 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22909363ns 402169 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22909647ns 402174 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22909931ns 402179 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22910215ns 402184 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22910670ns 402192 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22910840ns 402195 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22911125ns 402200 1a110850 fd5ff06f jal x0, -44 +22911409ns 402205 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22911693ns 402210 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22912091ns 402217 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22912261ns 402220 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22912716ns 402228 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22912886ns 402231 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22913170ns 402236 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22913455ns 402241 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22913739ns 402246 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22914193ns 402254 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22914364ns 402257 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22914648ns 402262 1a110850 fd5ff06f jal x0, -44 +22914932ns 402267 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22915216ns 402272 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22915614ns 402279 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22915785ns 402282 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22916239ns 402290 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22916410ns 402293 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22916694ns 402298 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22916978ns 402303 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22917262ns 402308 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22917717ns 402316 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22917888ns 402319 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22918172ns 402324 1a110850 fd5ff06f jal x0, -44 +22918456ns 402329 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22918740ns 402334 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22919138ns 402341 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22919308ns 402344 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22919763ns 402352 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22919933ns 402355 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22920218ns 402360 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22920502ns 402365 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22920786ns 402370 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22921241ns 402378 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22921411ns 402381 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22921695ns 402386 1a110850 fd5ff06f jal x0, -44 +22921979ns 402391 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22922264ns 402396 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22922661ns 402403 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22922832ns 402406 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22923287ns 402414 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22923457ns 402417 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22923741ns 402422 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22924025ns 402427 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22924310ns 402432 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22924764ns 402440 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22924935ns 402443 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22925219ns 402448 1a110850 fd5ff06f jal x0, -44 +22925503ns 402453 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22925787ns 402458 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22926185ns 402465 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22926355ns 402468 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22926810ns 402476 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22926981ns 402479 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22927265ns 402484 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22927549ns 402489 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22927833ns 402494 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22928288ns 402502 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22928458ns 402505 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22928742ns 402510 1a110850 fd5ff06f jal x0, -44 +22929027ns 402515 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22929311ns 402520 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22929709ns 402527 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22929879ns 402530 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22930334ns 402538 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22930504ns 402541 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22930788ns 402546 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22931073ns 402551 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22931357ns 402556 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22931811ns 402564 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22931982ns 402567 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22932266ns 402572 1a110850 fd5ff06f jal x0, -44 +22932550ns 402577 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22932834ns 402582 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22933232ns 402589 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22933403ns 402592 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22933857ns 402600 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22934028ns 402603 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22934312ns 402608 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22934596ns 402613 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22934880ns 402618 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22935335ns 402626 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22935505ns 402629 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22935790ns 402634 1a110850 fd5ff06f jal x0, -44 +22936074ns 402639 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22936358ns 402644 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22936756ns 402651 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22936926ns 402654 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22937381ns 402662 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22937551ns 402665 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22937836ns 402670 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22938120ns 402675 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22938404ns 402680 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22938859ns 402688 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22939029ns 402691 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22939313ns 402696 1a110850 fd5ff06f jal x0, -44 +22939597ns 402701 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22939882ns 402706 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22940279ns 402713 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22940450ns 402716 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22940904ns 402724 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22941075ns 402727 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22941359ns 402732 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22941643ns 402737 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22941927ns 402742 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22942382ns 402750 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22942553ns 402753 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22942837ns 402758 1a110850 fd5ff06f jal x0, -44 +22943121ns 402763 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22943405ns 402768 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22943803ns 402775 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22943973ns 402778 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22944428ns 402786 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22944599ns 402789 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22944883ns 402794 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22945167ns 402799 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22945451ns 402804 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22945906ns 402812 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22946076ns 402815 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22946360ns 402820 1a110850 fd5ff06f jal x0, -44 +22946645ns 402825 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22946929ns 402830 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22947327ns 402837 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22947497ns 402840 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22947952ns 402848 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22948122ns 402851 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22948406ns 402856 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22948690ns 402861 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22948975ns 402866 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22949429ns 402874 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22949600ns 402877 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22949884ns 402882 1a110850 fd5ff06f jal x0, -44 +22950168ns 402887 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22950452ns 402892 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22950850ns 402899 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22951021ns 402902 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22951475ns 402910 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22951646ns 402913 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22951930ns 402918 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22952214ns 402923 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22952498ns 402928 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22952953ns 402936 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22953123ns 402939 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22953408ns 402944 1a110850 fd5ff06f jal x0, -44 +22953692ns 402949 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22953976ns 402954 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22954374ns 402961 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22954544ns 402964 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22954999ns 402972 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22955169ns 402975 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22955453ns 402980 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22955738ns 402985 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22956022ns 402990 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22956476ns 402998 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22956647ns 403001 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22956931ns 403006 1a110850 fd5ff06f jal x0, -44 +22957215ns 403011 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22957499ns 403016 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22957897ns 403023 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22958068ns 403026 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22958522ns 403034 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22958693ns 403037 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22958977ns 403042 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22959261ns 403047 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22959545ns 403052 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22960000ns 403060 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22960171ns 403063 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22960455ns 403068 1a110850 fd5ff06f jal x0, -44 +22960739ns 403073 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22961023ns 403078 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22961421ns 403085 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22961591ns 403088 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22962046ns 403096 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22962216ns 403099 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22962501ns 403104 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22962785ns 403109 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22963069ns 403114 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22963524ns 403122 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22963694ns 403125 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22963978ns 403130 1a110850 fd5ff06f jal x0, -44 +22964262ns 403135 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22964547ns 403140 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22964944ns 403147 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22965115ns 403150 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22965570ns 403158 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22965740ns 403161 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22966024ns 403166 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22966308ns 403171 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22966593ns 403176 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22967047ns 403184 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22967218ns 403187 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22967502ns 403192 1a110850 fd5ff06f jal x0, -44 +22967786ns 403197 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22968070ns 403202 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22968468ns 403209 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22968639ns 403212 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22969093ns 403220 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22969264ns 403223 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22969548ns 403228 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22969832ns 403233 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22970116ns 403238 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22970571ns 403246 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22970741ns 403249 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22971025ns 403254 1a110850 fd5ff06f jal x0, -44 +22971310ns 403259 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22971594ns 403264 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22971992ns 403271 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22972162ns 403274 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22972617ns 403282 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22972787ns 403285 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22973071ns 403290 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22973356ns 403295 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22973640ns 403300 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22974094ns 403308 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22974265ns 403311 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22974549ns 403316 1a110850 fd5ff06f jal x0, -44 +22974833ns 403321 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22975117ns 403326 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22975515ns 403333 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22975686ns 403336 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22976140ns 403344 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22976311ns 403347 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22976595ns 403352 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22976879ns 403357 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22977163ns 403362 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22977618ns 403370 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22977788ns 403373 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22978073ns 403378 1a110850 fd5ff06f jal x0, -44 +22978357ns 403383 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22978641ns 403388 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22979039ns 403395 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22979209ns 403398 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22979664ns 403406 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22979834ns 403409 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22980119ns 403414 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22980403ns 403419 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22980687ns 403424 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22981142ns 403432 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22981312ns 403435 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22981596ns 403440 1a110850 fd5ff06f jal x0, -44 +22981880ns 403445 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22982165ns 403450 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22982562ns 403457 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22982733ns 403460 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22983187ns 403468 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22983358ns 403471 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22983642ns 403476 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22983926ns 403481 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22984210ns 403486 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22984665ns 403494 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22984836ns 403497 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22985120ns 403502 1a110850 fd5ff06f jal x0, -44 +22985404ns 403507 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22985688ns 403512 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22986086ns 403519 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22986256ns 403522 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22986711ns 403530 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22986882ns 403533 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22987166ns 403538 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22987450ns 403543 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22987734ns 403548 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22988189ns 403556 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22988359ns 403559 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22988643ns 403564 1a110850 fd5ff06f jal x0, -44 +22988928ns 403569 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22989212ns 403574 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22989610ns 403581 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22989780ns 403584 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22990235ns 403592 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22990405ns 403595 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22990689ns 403600 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22990973ns 403605 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22991258ns 403610 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22991712ns 403618 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22991883ns 403621 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22992167ns 403626 1a110850 fd5ff06f jal x0, -44 +22992451ns 403631 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22992735ns 403636 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22993133ns 403643 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22993304ns 403646 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22993758ns 403654 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22993929ns 403657 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22994213ns 403662 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22994497ns 403667 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22994781ns 403672 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22995236ns 403680 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22995406ns 403683 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22995691ns 403688 1a110850 fd5ff06f jal x0, -44 +22995975ns 403693 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22996259ns 403698 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +22996657ns 403705 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22996827ns 403708 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22997282ns 403716 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +22997452ns 403719 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +22997736ns 403724 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22998021ns 403729 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +22998305ns 403734 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +22998759ns 403742 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +22998930ns 403745 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +22999214ns 403750 1a110850 fd5ff06f jal x0, -44 +22999498ns 403755 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +22999782ns 403760 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23000180ns 403767 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23000351ns 403770 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23000805ns 403778 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23000976ns 403781 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23001260ns 403786 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23001544ns 403791 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23001828ns 403796 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23002283ns 403804 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23002454ns 403807 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23002738ns 403812 1a110850 fd5ff06f jal x0, -44 +23003022ns 403817 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23003306ns 403822 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23003704ns 403829 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23003874ns 403832 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23004329ns 403840 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23004499ns 403843 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23004784ns 403848 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23005068ns 403853 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23005352ns 403858 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23005807ns 403866 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23005977ns 403869 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23006261ns 403874 1a110850 fd5ff06f jal x0, -44 +23006545ns 403879 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23006830ns 403884 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23007227ns 403891 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23007398ns 403894 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23007853ns 403902 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23008023ns 403905 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23008307ns 403910 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23008591ns 403915 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23008876ns 403920 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23009330ns 403928 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23009501ns 403931 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23009785ns 403936 1a110850 fd5ff06f jal x0, -44 +23010069ns 403941 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23010353ns 403946 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23010751ns 403953 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23010922ns 403956 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23011376ns 403964 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23011547ns 403967 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23011831ns 403972 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23012115ns 403977 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23012399ns 403982 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23012854ns 403990 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23013024ns 403993 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23013308ns 403998 1a110850 fd5ff06f jal x0, -44 +23013593ns 404003 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23013877ns 404008 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23014275ns 404015 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23014445ns 404018 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23014900ns 404026 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23015070ns 404029 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23015354ns 404034 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23015639ns 404039 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23015923ns 404044 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23016377ns 404052 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23016548ns 404055 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23016832ns 404060 1a110850 fd5ff06f jal x0, -44 +23017116ns 404065 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23017400ns 404070 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23017798ns 404077 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23017969ns 404080 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23018423ns 404088 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23018594ns 404091 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23018878ns 404096 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23019162ns 404101 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23019446ns 404106 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23019901ns 404114 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23020071ns 404117 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23020356ns 404122 1a110850 fd5ff06f jal x0, -44 +23020640ns 404127 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23020924ns 404132 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23021322ns 404139 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23021492ns 404142 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23021947ns 404150 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23022117ns 404153 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23022402ns 404158 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23022686ns 404163 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23022970ns 404168 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23023425ns 404176 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23023595ns 404179 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23023879ns 404184 1a110850 fd5ff06f jal x0, -44 +23024163ns 404189 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23024448ns 404194 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23024845ns 404201 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23025016ns 404204 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23025471ns 404212 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23025641ns 404215 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23025925ns 404220 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23026209ns 404225 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23026493ns 404230 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23026948ns 404238 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23027119ns 404241 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23027403ns 404246 1a110850 fd5ff06f jal x0, -44 +23027687ns 404251 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23027971ns 404256 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23028369ns 404263 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23028539ns 404266 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23028994ns 404274 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23029165ns 404277 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23029449ns 404282 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23029733ns 404287 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23030017ns 404292 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23030472ns 404300 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23030642ns 404303 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23030926ns 404308 1a110850 fd5ff06f jal x0, -44 +23031211ns 404313 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23031495ns 404318 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23031893ns 404325 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23032063ns 404328 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23032518ns 404336 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23032688ns 404339 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23032972ns 404344 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23033256ns 404349 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23033541ns 404354 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23033995ns 404362 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23034166ns 404365 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23034450ns 404370 1a110850 fd5ff06f jal x0, -44 +23034734ns 404375 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23035018ns 404380 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23035416ns 404387 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23035587ns 404390 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23036041ns 404398 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23036212ns 404401 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23036496ns 404406 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23036780ns 404411 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23037064ns 404416 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23037519ns 404424 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23037689ns 404427 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23037974ns 404432 1a110850 fd5ff06f jal x0, -44 +23038258ns 404437 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23038542ns 404442 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23038940ns 404449 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23039110ns 404452 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23039565ns 404460 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23039735ns 404463 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23040019ns 404468 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23040304ns 404473 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23040588ns 404478 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23041042ns 404486 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23041213ns 404489 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23041497ns 404494 1a110850 fd5ff06f jal x0, -44 +23041781ns 404499 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23042065ns 404504 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23042463ns 404511 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23042634ns 404514 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23043088ns 404522 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23043259ns 404525 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23043543ns 404530 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23043827ns 404535 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23044111ns 404540 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23044566ns 404548 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23044737ns 404551 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23045021ns 404556 1a110850 fd5ff06f jal x0, -44 +23045305ns 404561 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23045589ns 404566 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23045987ns 404573 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23046157ns 404576 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23046612ns 404584 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23046783ns 404587 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23047067ns 404592 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23047351ns 404597 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23047635ns 404602 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23048090ns 404610 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23048260ns 404613 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23048544ns 404618 1a110850 fd5ff06f jal x0, -44 +23048828ns 404623 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23049113ns 404628 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23049510ns 404635 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23049681ns 404638 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23050136ns 404646 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23050306ns 404649 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23050590ns 404654 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23050874ns 404659 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23051159ns 404664 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23051613ns 404672 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23051784ns 404675 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23052068ns 404680 1a110850 fd5ff06f jal x0, -44 +23052352ns 404685 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23052636ns 404690 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23053034ns 404697 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23053205ns 404700 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23053659ns 404708 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23053830ns 404711 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23054114ns 404716 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23054398ns 404721 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23054682ns 404726 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23055137ns 404734 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23055307ns 404737 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23055591ns 404742 1a110850 fd5ff06f jal x0, -44 +23055876ns 404747 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23056160ns 404752 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23056558ns 404759 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23056728ns 404762 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23057183ns 404770 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23057353ns 404773 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23057637ns 404778 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23057922ns 404783 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23058206ns 404788 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23058660ns 404796 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23058831ns 404799 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23059115ns 404804 1a110850 fd5ff06f jal x0, -44 +23059399ns 404809 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23059683ns 404814 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23060081ns 404821 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23060252ns 404824 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23060706ns 404832 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23060877ns 404835 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23061161ns 404840 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23061445ns 404845 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23061729ns 404850 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23062184ns 404858 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23062354ns 404861 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23062639ns 404866 1a110850 fd5ff06f jal x0, -44 +23062923ns 404871 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23063207ns 404876 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23063605ns 404883 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23063775ns 404886 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23064230ns 404894 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23064400ns 404897 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23064685ns 404902 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23064969ns 404907 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23065253ns 404912 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23065708ns 404920 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23065878ns 404923 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23066162ns 404928 1a110850 fd5ff06f jal x0, -44 +23066446ns 404933 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23066731ns 404938 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23067128ns 404945 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23067299ns 404948 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23067754ns 404956 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23067924ns 404959 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23068208ns 404964 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23068492ns 404969 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23068776ns 404974 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23069231ns 404982 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23069402ns 404985 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23069686ns 404990 1a110850 fd5ff06f jal x0, -44 +23069970ns 404995 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23070254ns 405000 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23070652ns 405007 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23070822ns 405010 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23071277ns 405018 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23071448ns 405021 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23071732ns 405026 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23072016ns 405031 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23072300ns 405036 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23072755ns 405044 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23072925ns 405047 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23073209ns 405052 1a110850 fd5ff06f jal x0, -44 +23073494ns 405057 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23073778ns 405062 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23074176ns 405069 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23074346ns 405072 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23074801ns 405080 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23074971ns 405083 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23075255ns 405088 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23075539ns 405093 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23075824ns 405098 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23076278ns 405106 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23076449ns 405109 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23076733ns 405114 1a110850 fd5ff06f jal x0, -44 +23077017ns 405119 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23077301ns 405124 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23077699ns 405131 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23077870ns 405134 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23078324ns 405142 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23078495ns 405145 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23078779ns 405150 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23079063ns 405155 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23079347ns 405160 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23079802ns 405168 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23079972ns 405171 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23080257ns 405176 1a110850 fd5ff06f jal x0, -44 +23080541ns 405181 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23080825ns 405186 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23081223ns 405193 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23081393ns 405196 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23081848ns 405204 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23082018ns 405207 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23082303ns 405212 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23082587ns 405217 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23082871ns 405222 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23083325ns 405230 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23083496ns 405233 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23083780ns 405238 1a110850 fd5ff06f jal x0, -44 +23084064ns 405243 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23084348ns 405248 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23084746ns 405255 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23084917ns 405258 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23085371ns 405266 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23085542ns 405269 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23085826ns 405274 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23086110ns 405279 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23086394ns 405284 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23086849ns 405292 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23087020ns 405295 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23087304ns 405300 1a110850 fd5ff06f jal x0, -44 +23087588ns 405305 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23087872ns 405310 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23088270ns 405317 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23088440ns 405320 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23088895ns 405328 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23089066ns 405331 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23089350ns 405336 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23089634ns 405341 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23089918ns 405346 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23090373ns 405354 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23090543ns 405357 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23090827ns 405362 1a110850 fd5ff06f jal x0, -44 +23091111ns 405367 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23091396ns 405372 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23091793ns 405379 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23091964ns 405382 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23092419ns 405390 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23092589ns 405393 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23092873ns 405398 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23093157ns 405403 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23093442ns 405408 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23093896ns 405416 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23094067ns 405419 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23094351ns 405424 1a110850 fd5ff06f jal x0, -44 +23094635ns 405429 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23094919ns 405434 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23095317ns 405441 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23095488ns 405444 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23095942ns 405452 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23096113ns 405455 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23096397ns 405460 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23096681ns 405465 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23096965ns 405470 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23097420ns 405478 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23097590ns 405481 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23097874ns 405486 1a110850 fd5ff06f jal x0, -44 +23098159ns 405491 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23098443ns 405496 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23098841ns 405503 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23099011ns 405506 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23099466ns 405514 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23099636ns 405517 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23099920ns 405522 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23100205ns 405527 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23100489ns 405532 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23100943ns 405540 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23101114ns 405543 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23101398ns 405548 1a110850 fd5ff06f jal x0, -44 +23101682ns 405553 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23101966ns 405558 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23102364ns 405565 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23102535ns 405568 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23102989ns 405576 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23103160ns 405579 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23103444ns 405584 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23103728ns 405589 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23104012ns 405594 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23104467ns 405602 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23104637ns 405605 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23104922ns 405610 1a110850 fd5ff06f jal x0, -44 +23105206ns 405615 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23105490ns 405620 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23105888ns 405627 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23106058ns 405630 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23106513ns 405638 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23106683ns 405641 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23106968ns 405646 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23107252ns 405651 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23107536ns 405656 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23107991ns 405664 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23108161ns 405667 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23108445ns 405672 1a110850 fd5ff06f jal x0, -44 +23108729ns 405677 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23109014ns 405682 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23109411ns 405689 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23109582ns 405692 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23110037ns 405700 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23110207ns 405703 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23110491ns 405708 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23110775ns 405713 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23111059ns 405718 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23111514ns 405726 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23111685ns 405729 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23111969ns 405734 1a110850 fd5ff06f jal x0, -44 +23112253ns 405739 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23112537ns 405744 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23112935ns 405751 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23113105ns 405754 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23113560ns 405762 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23113731ns 405765 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23114015ns 405770 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23114299ns 405775 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23114583ns 405780 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23115038ns 405788 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23115208ns 405791 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23115492ns 405796 1a110850 fd5ff06f jal x0, -44 +23115777ns 405801 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23116061ns 405806 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23116459ns 405813 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23116629ns 405816 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23117084ns 405824 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23117254ns 405827 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23117538ns 405832 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23117823ns 405837 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23118107ns 405842 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23118561ns 405850 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23118732ns 405853 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23119016ns 405858 1a110850 fd5ff06f jal x0, -44 +23119300ns 405863 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23119584ns 405868 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23119982ns 405875 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23120153ns 405878 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23120607ns 405886 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23120778ns 405889 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23121062ns 405894 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23121346ns 405899 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23121630ns 405904 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23122085ns 405912 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23122255ns 405915 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23122540ns 405920 1a110850 fd5ff06f jal x0, -44 +23122824ns 405925 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23123108ns 405930 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23123506ns 405937 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23123676ns 405940 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23124131ns 405948 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23124301ns 405951 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23124586ns 405956 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23124870ns 405961 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23125154ns 405966 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23125608ns 405974 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23125779ns 405977 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23126063ns 405982 1a110850 fd5ff06f jal x0, -44 +23126347ns 405987 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23126631ns 405992 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23127029ns 405999 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23127200ns 406002 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23127654ns 406010 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23127825ns 406013 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23128109ns 406018 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23128393ns 406023 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23128677ns 406028 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23129132ns 406036 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23129303ns 406039 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23129587ns 406044 1a110850 fd5ff06f jal x0, -44 +23129871ns 406049 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23130155ns 406054 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23130553ns 406061 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23130723ns 406064 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23131178ns 406072 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23131349ns 406075 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23131633ns 406080 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23131917ns 406085 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23132201ns 406090 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23132656ns 406098 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23132826ns 406101 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23133110ns 406106 1a110850 fd5ff06f jal x0, -44 +23133394ns 406111 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23133679ns 406116 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23134076ns 406123 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23134247ns 406126 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23134702ns 406134 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23134872ns 406137 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23135156ns 406142 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23135440ns 406147 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23135725ns 406152 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23136179ns 406160 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23136350ns 406163 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23136634ns 406168 1a110850 fd5ff06f jal x0, -44 +23136918ns 406173 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23137202ns 406178 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23137600ns 406185 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23137771ns 406188 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23138225ns 406196 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23138396ns 406199 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23138680ns 406204 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23138964ns 406209 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23139248ns 406214 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23139703ns 406222 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23139873ns 406225 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23140157ns 406230 1a110850 fd5ff06f jal x0, -44 +23140442ns 406235 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23140726ns 406240 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23141124ns 406247 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23141294ns 406250 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23141749ns 406258 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23141919ns 406261 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23142203ns 406266 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23142488ns 406271 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23142772ns 406276 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23143226ns 406284 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23143397ns 406287 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23143681ns 406292 1a110850 fd5ff06f jal x0, -44 +23143965ns 406297 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23144249ns 406302 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23144647ns 406309 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23144818ns 406312 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23145272ns 406320 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23145443ns 406323 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23145727ns 406328 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23146011ns 406333 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23146295ns 406338 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23146750ns 406346 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23146920ns 406349 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23147205ns 406354 1a110850 fd5ff06f jal x0, -44 +23147489ns 406359 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23147773ns 406364 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23148171ns 406371 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23148341ns 406374 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23148796ns 406382 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23148966ns 406385 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23149251ns 406390 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23149535ns 406395 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23149819ns 406400 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23150274ns 406408 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23150444ns 406411 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23150728ns 406416 1a110850 fd5ff06f jal x0, -44 +23151012ns 406421 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23151297ns 406426 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23151694ns 406433 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23151865ns 406436 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23152320ns 406444 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23152490ns 406447 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23152774ns 406452 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23153058ns 406457 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23153343ns 406462 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23153797ns 406470 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23153968ns 406473 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23154252ns 406478 1a110850 fd5ff06f jal x0, -44 +23154536ns 406483 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23154820ns 406488 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23155218ns 406495 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23155388ns 406498 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23155843ns 406506 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23156014ns 406509 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23156298ns 406514 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23156582ns 406519 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23156866ns 406524 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23157321ns 406532 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23157491ns 406535 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23157775ns 406540 1a110850 fd5ff06f jal x0, -44 +23158060ns 406545 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23158344ns 406550 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23158742ns 406557 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23158912ns 406560 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23159367ns 406568 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23159537ns 406571 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23159821ns 406576 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23160106ns 406581 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23160390ns 406586 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23160844ns 406594 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23161015ns 406597 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23161299ns 406602 1a110850 fd5ff06f jal x0, -44 +23161583ns 406607 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23161867ns 406612 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23162265ns 406619 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23162436ns 406622 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23162890ns 406630 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23163061ns 406633 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23163345ns 406638 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23163629ns 406643 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23163913ns 406648 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23164368ns 406656 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23164538ns 406659 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23164823ns 406664 1a110850 fd5ff06f jal x0, -44 +23165107ns 406669 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23165391ns 406674 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23165789ns 406681 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23165959ns 406684 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23166414ns 406692 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23166584ns 406695 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23166869ns 406700 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23167153ns 406705 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23167437ns 406710 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23167891ns 406718 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23168062ns 406721 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23168346ns 406726 1a110850 fd5ff06f jal x0, -44 +23168630ns 406731 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23168914ns 406736 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23169312ns 406743 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23169483ns 406746 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23169937ns 406754 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23170108ns 406757 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23170392ns 406762 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23170676ns 406767 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23170960ns 406772 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23171415ns 406780 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23171586ns 406783 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23171870ns 406788 1a110850 fd5ff06f jal x0, -44 +23172154ns 406793 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23172438ns 406798 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23172836ns 406805 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23173006ns 406808 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23173461ns 406816 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23173632ns 406819 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23173916ns 406824 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23174200ns 406829 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23174484ns 406834 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23174939ns 406842 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23175109ns 406845 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23175393ns 406850 1a110850 fd5ff06f jal x0, -44 +23175677ns 406855 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23175962ns 406860 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23176359ns 406867 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23176530ns 406870 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23176985ns 406878 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23177155ns 406881 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23177439ns 406886 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23177723ns 406891 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23178008ns 406896 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23178462ns 406904 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23178633ns 406907 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23178917ns 406912 1a110850 fd5ff06f jal x0, -44 +23179201ns 406917 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23179485ns 406922 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23179883ns 406929 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23180054ns 406932 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23180508ns 406940 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23180679ns 406943 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23180963ns 406948 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23181247ns 406953 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23181531ns 406958 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23181986ns 406966 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23182156ns 406969 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23182440ns 406974 1a110850 fd5ff06f jal x0, -44 +23182725ns 406979 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23183009ns 406984 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23183407ns 406991 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23183577ns 406994 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23184032ns 407002 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23184202ns 407005 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23184486ns 407010 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23184771ns 407015 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23185055ns 407020 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23185509ns 407028 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23185680ns 407031 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23185964ns 407036 1a110850 fd5ff06f jal x0, -44 +23186248ns 407041 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23186532ns 407046 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23186930ns 407053 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23187101ns 407056 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23187555ns 407064 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23187726ns 407067 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23188010ns 407072 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23188294ns 407077 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23188578ns 407082 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23189033ns 407090 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23189203ns 407093 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23189488ns 407098 1a110850 fd5ff06f jal x0, -44 +23189772ns 407103 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23190056ns 407108 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23190454ns 407115 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23190624ns 407118 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23191079ns 407126 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23191249ns 407129 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23191534ns 407134 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23191818ns 407139 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23192102ns 407144 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23192557ns 407152 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23192727ns 407155 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23193011ns 407160 1a110850 fd5ff06f jal x0, -44 +23193295ns 407165 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23193580ns 407170 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23193977ns 407177 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23194148ns 407180 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23194603ns 407188 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23194773ns 407191 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23195057ns 407196 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23195341ns 407201 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23195626ns 407206 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23196080ns 407214 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23196251ns 407217 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23196535ns 407222 1a110850 fd5ff06f jal x0, -44 +23196819ns 407227 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23197103ns 407232 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23197501ns 407239 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23197671ns 407242 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23198126ns 407250 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23198297ns 407253 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23198581ns 407258 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23198865ns 407263 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23199149ns 407268 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23199604ns 407276 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23199774ns 407279 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23200058ns 407284 1a110850 fd5ff06f jal x0, -44 +23200343ns 407289 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23200627ns 407294 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23201025ns 407301 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23201195ns 407304 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23201650ns 407312 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23201820ns 407315 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23202104ns 407320 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23202389ns 407325 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23202673ns 407330 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23203127ns 407338 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23203298ns 407341 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23203582ns 407346 1a110850 fd5ff06f jal x0, -44 +23203866ns 407351 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23204150ns 407356 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23204548ns 407363 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23204719ns 407366 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23205173ns 407374 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23205344ns 407377 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23205628ns 407382 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23205912ns 407387 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23206196ns 407392 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23206651ns 407400 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23206821ns 407403 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23207106ns 407408 1a110850 fd5ff06f jal x0, -44 +23207390ns 407413 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23207674ns 407418 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23208072ns 407425 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23208242ns 407428 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23208697ns 407436 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23208867ns 407439 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23209152ns 407444 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23209436ns 407449 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23209720ns 407454 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23210175ns 407462 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23210345ns 407465 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23210629ns 407470 1a110850 fd5ff06f jal x0, -44 +23210913ns 407475 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23211197ns 407480 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23211595ns 407487 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23211766ns 407490 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23212220ns 407498 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23212391ns 407501 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23212675ns 407506 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23212959ns 407511 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23213243ns 407516 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23213698ns 407524 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23213869ns 407527 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23214153ns 407532 1a110850 fd5ff06f jal x0, -44 +23214437ns 407537 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23214721ns 407542 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23215119ns 407549 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23215289ns 407552 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23215744ns 407560 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23215915ns 407563 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23216199ns 407568 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23216483ns 407573 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23216767ns 407578 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23217222ns 407586 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23217392ns 407589 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23217676ns 407594 1a110850 fd5ff06f jal x0, -44 +23217960ns 407599 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23218245ns 407604 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23218642ns 407611 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23218813ns 407614 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23219268ns 407622 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23219438ns 407625 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23219722ns 407630 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23220006ns 407635 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23220291ns 407640 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23220745ns 407648 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23220916ns 407651 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23221200ns 407656 1a110850 fd5ff06f jal x0, -44 +23221484ns 407661 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23221768ns 407666 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23222166ns 407673 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23222337ns 407676 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23222791ns 407684 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23222962ns 407687 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23223246ns 407692 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23223530ns 407697 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23223814ns 407702 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23224269ns 407710 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23224439ns 407713 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23224723ns 407718 1a110850 fd5ff06f jal x0, -44 +23225008ns 407723 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23225292ns 407728 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23225690ns 407735 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23225860ns 407738 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23226315ns 407746 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23226485ns 407749 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23226769ns 407754 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23227054ns 407759 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23227338ns 407764 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23227792ns 407772 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23227963ns 407775 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23228247ns 407780 1a110850 fd5ff06f jal x0, -44 +23228531ns 407785 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23228815ns 407790 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23229213ns 407797 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23229384ns 407800 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23229838ns 407808 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23230009ns 407811 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23230293ns 407816 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23230577ns 407821 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23230861ns 407826 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23231316ns 407834 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23231487ns 407837 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23231771ns 407842 1a110850 fd5ff06f jal x0, -44 +23232055ns 407847 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23232339ns 407852 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23232737ns 407859 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23232907ns 407862 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23233362ns 407870 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23233532ns 407873 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23233817ns 407878 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23234101ns 407883 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23234385ns 407888 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23234840ns 407896 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23235010ns 407899 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23235294ns 407904 1a110850 fd5ff06f jal x0, -44 +23235578ns 407909 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23235863ns 407914 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23236260ns 407921 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23236431ns 407924 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23236886ns 407932 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23237056ns 407935 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23237340ns 407940 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23237624ns 407945 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23237909ns 407950 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23238363ns 407958 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23238534ns 407961 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23238818ns 407966 1a110850 fd5ff06f jal x0, -44 +23239102ns 407971 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23239386ns 407976 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23239784ns 407983 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23239954ns 407986 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23240409ns 407994 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23240580ns 407997 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23240864ns 408002 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23241148ns 408007 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23241432ns 408012 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23241887ns 408020 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23242057ns 408023 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23242341ns 408028 1a110850 fd5ff06f jal x0, -44 +23242626ns 408033 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23242910ns 408038 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23243308ns 408045 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23243478ns 408048 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23243933ns 408056 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23244103ns 408059 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23244387ns 408064 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23244672ns 408069 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23244956ns 408074 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23245410ns 408082 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23245581ns 408085 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23245865ns 408090 1a110850 fd5ff06f jal x0, -44 +23246149ns 408095 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23246433ns 408100 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23246831ns 408107 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23247002ns 408110 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23247456ns 408118 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23247627ns 408121 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23247911ns 408126 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23248195ns 408131 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23248479ns 408136 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23248934ns 408144 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23249104ns 408147 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23249389ns 408152 1a110850 fd5ff06f jal x0, -44 +23249673ns 408157 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23249957ns 408162 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23250355ns 408169 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23250525ns 408172 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23250980ns 408180 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23251150ns 408183 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23251435ns 408188 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23251719ns 408193 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23252003ns 408198 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23252458ns 408206 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23252628ns 408209 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23252912ns 408214 1a110850 fd5ff06f jal x0, -44 +23253196ns 408219 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23253480ns 408224 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23253878ns 408231 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23254049ns 408234 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23254503ns 408242 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23254674ns 408245 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23254958ns 408250 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23255242ns 408255 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23255526ns 408260 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23255981ns 408268 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23256152ns 408271 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23256436ns 408276 1a110850 fd5ff06f jal x0, -44 +23256720ns 408281 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23257004ns 408286 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23257402ns 408293 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23257572ns 408296 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23258027ns 408304 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23258198ns 408307 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23258482ns 408312 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23258766ns 408317 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23259050ns 408322 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23259505ns 408330 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23259675ns 408333 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23259959ns 408338 1a110850 fd5ff06f jal x0, -44 +23260243ns 408343 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23260528ns 408348 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23260925ns 408355 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23261096ns 408358 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23261551ns 408366 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23261721ns 408369 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23262005ns 408374 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23262289ns 408379 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23262574ns 408384 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23263028ns 408392 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23263199ns 408395 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23263483ns 408400 1a110850 fd5ff06f jal x0, -44 +23263767ns 408405 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23264051ns 408410 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23264449ns 408417 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23264620ns 408420 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23265074ns 408428 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23265245ns 408431 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23265529ns 408436 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23265813ns 408441 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23266097ns 408446 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23266552ns 408454 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23266722ns 408457 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23267007ns 408462 1a110850 fd5ff06f jal x0, -44 +23267291ns 408467 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23267575ns 408472 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23267973ns 408479 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23268143ns 408482 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23268598ns 408490 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23268768ns 408493 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23269052ns 408498 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23269337ns 408503 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23269621ns 408508 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23270075ns 408516 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23270246ns 408519 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23270530ns 408524 1a110850 fd5ff06f jal x0, -44 +23270814ns 408529 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23271098ns 408534 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23271496ns 408541 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23271667ns 408544 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23272121ns 408552 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23272292ns 408555 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23272576ns 408560 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23272860ns 408565 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23273144ns 408570 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23273599ns 408578 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23273770ns 408581 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23274054ns 408586 1a110850 fd5ff06f jal x0, -44 +23274338ns 408591 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23274622ns 408596 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23275020ns 408603 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23275190ns 408606 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23275645ns 408614 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23275815ns 408617 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23276100ns 408622 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23276384ns 408627 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23276668ns 408632 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23277123ns 408640 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23277293ns 408643 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23277577ns 408648 1a110850 fd5ff06f jal x0, -44 +23277861ns 408653 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23278146ns 408658 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23278543ns 408665 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23278714ns 408668 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23279169ns 408676 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23279339ns 408679 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23279623ns 408684 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23279907ns 408689 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23280192ns 408694 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23280646ns 408702 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23280817ns 408705 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23281101ns 408710 1a110850 fd5ff06f jal x0, -44 +23281385ns 408715 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23281669ns 408720 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23282067ns 408727 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23282237ns 408730 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23282692ns 408738 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23282863ns 408741 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23283147ns 408746 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23283431ns 408751 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23283715ns 408756 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23284170ns 408764 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23284340ns 408767 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23284624ns 408772 1a110850 fd5ff06f jal x0, -44 +23284909ns 408777 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23285193ns 408782 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23285591ns 408789 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23285761ns 408792 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23286216ns 408800 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23286386ns 408803 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23286670ns 408808 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23286955ns 408813 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23287239ns 408818 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23287693ns 408826 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23287864ns 408829 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23288148ns 408834 1a110850 fd5ff06f jal x0, -44 +23288432ns 408839 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23288716ns 408844 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23289114ns 408851 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23289285ns 408854 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23289739ns 408862 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23289910ns 408865 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23290194ns 408870 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23290478ns 408875 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23290762ns 408880 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23291217ns 408888 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23291387ns 408891 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23291672ns 408896 1a110850 fd5ff06f jal x0, -44 +23291956ns 408901 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23292240ns 408906 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23292638ns 408913 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23292808ns 408916 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23293263ns 408924 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23293433ns 408927 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23293718ns 408932 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23294002ns 408937 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23294286ns 408942 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23294741ns 408950 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23294911ns 408953 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23295195ns 408958 1a110850 fd5ff06f jal x0, -44 +23295479ns 408963 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23295763ns 408968 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23296161ns 408975 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23296332ns 408978 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23296786ns 408986 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23296957ns 408989 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23297241ns 408994 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23297525ns 408999 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23297809ns 409004 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23298264ns 409012 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23298435ns 409015 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23298719ns 409020 1a110850 fd5ff06f jal x0, -44 +23299003ns 409025 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23299287ns 409030 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23299685ns 409037 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23299855ns 409040 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23300310ns 409048 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23300481ns 409051 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23300765ns 409056 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23301049ns 409061 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23301333ns 409066 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23301788ns 409074 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23301958ns 409077 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23302242ns 409082 1a110850 fd5ff06f jal x0, -44 +23302527ns 409087 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23302811ns 409092 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23303208ns 409099 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23303379ns 409102 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23303834ns 409110 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23304004ns 409113 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23304288ns 409118 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23304572ns 409123 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23304857ns 409128 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23305311ns 409136 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23305482ns 409139 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23305766ns 409144 1a110850 fd5ff06f jal x0, -44 +23306050ns 409149 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23306334ns 409154 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23306732ns 409161 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23306903ns 409164 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23307357ns 409172 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23307528ns 409175 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23307812ns 409180 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23308096ns 409185 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23308380ns 409190 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23308835ns 409198 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23309005ns 409201 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23309290ns 409206 1a110850 fd5ff06f jal x0, -44 +23309574ns 409211 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23309858ns 409216 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23310256ns 409223 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23310426ns 409226 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23310881ns 409234 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23311051ns 409237 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23311335ns 409242 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23311620ns 409247 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23311904ns 409252 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23312358ns 409260 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23312529ns 409263 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23312813ns 409268 1a110850 fd5ff06f jal x0, -44 +23313097ns 409273 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23313381ns 409278 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23313779ns 409285 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23313950ns 409288 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23314404ns 409296 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23314575ns 409299 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23314859ns 409304 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23315143ns 409309 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23315427ns 409314 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23315882ns 409322 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23316053ns 409325 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23316337ns 409330 1a110850 fd5ff06f jal x0, -44 +23316621ns 409335 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23316905ns 409340 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23317303ns 409347 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23317473ns 409350 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23317928ns 409358 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23318098ns 409361 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23318383ns 409366 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23318667ns 409371 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23318951ns 409376 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23319406ns 409384 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23319576ns 409387 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23319860ns 409392 1a110850 fd5ff06f jal x0, -44 +23320144ns 409397 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23320429ns 409402 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23320826ns 409409 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23320997ns 409412 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23321452ns 409420 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23321622ns 409423 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23321906ns 409428 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23322190ns 409433 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23322475ns 409438 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23322929ns 409446 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23323100ns 409449 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23323384ns 409454 1a110850 fd5ff06f jal x0, -44 +23323668ns 409459 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23323952ns 409464 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23324350ns 409471 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23324520ns 409474 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23324975ns 409482 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23325146ns 409485 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23325430ns 409490 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23325714ns 409495 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23325998ns 409500 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23326453ns 409508 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23326623ns 409511 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23326907ns 409516 1a110850 fd5ff06f jal x0, -44 +23327192ns 409521 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23327476ns 409526 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23327874ns 409533 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23328044ns 409536 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23328499ns 409544 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23328669ns 409547 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23328953ns 409552 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23329238ns 409557 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23329522ns 409562 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23329976ns 409570 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23330147ns 409573 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23330431ns 409578 1a110850 fd5ff06f jal x0, -44 +23330715ns 409583 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23330999ns 409588 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23331397ns 409595 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23331568ns 409598 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23332022ns 409606 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23332193ns 409609 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23332477ns 409614 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23332761ns 409619 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23333045ns 409624 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23333500ns 409632 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23333670ns 409635 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23333955ns 409640 1a110850 fd5ff06f jal x0, -44 +23334239ns 409645 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23334523ns 409650 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23334921ns 409657 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23335091ns 409660 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23335546ns 409668 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23335716ns 409671 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23336001ns 409676 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23336285ns 409681 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23336569ns 409686 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23337024ns 409694 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23337194ns 409697 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23337478ns 409702 1a110850 fd5ff06f jal x0, -44 +23337762ns 409707 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23338047ns 409712 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23338444ns 409719 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23338615ns 409722 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23339069ns 409730 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23339240ns 409733 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23339524ns 409738 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23339808ns 409743 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23340092ns 409748 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23340547ns 409756 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23340718ns 409759 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23341002ns 409764 1a110850 fd5ff06f jal x0, -44 +23341286ns 409769 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23341570ns 409774 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23341968ns 409781 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23342138ns 409784 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23342593ns 409792 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23342764ns 409795 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23343048ns 409800 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23343332ns 409805 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23343616ns 409810 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23344071ns 409818 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23344241ns 409821 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23344525ns 409826 1a110850 fd5ff06f jal x0, -44 +23344810ns 409831 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23345094ns 409836 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23345491ns 409843 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23345662ns 409846 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23346117ns 409854 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23346287ns 409857 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23346571ns 409862 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23346855ns 409867 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23347140ns 409872 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23347594ns 409880 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23347765ns 409883 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23348049ns 409888 1a110850 fd5ff06f jal x0, -44 +23348333ns 409893 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23348617ns 409898 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23349015ns 409905 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23349186ns 409908 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23349640ns 409916 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23349811ns 409919 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23350095ns 409924 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23350379ns 409929 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23350663ns 409934 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23351118ns 409942 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23351288ns 409945 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23351573ns 409950 1a110850 fd5ff06f jal x0, -44 +23351857ns 409955 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23352141ns 409960 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23352539ns 409967 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23352709ns 409970 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23353164ns 409978 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23353334ns 409981 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23353618ns 409986 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23353903ns 409991 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23354187ns 409996 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23354641ns 410004 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23354812ns 410007 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23355096ns 410012 1a110850 fd5ff06f jal x0, -44 +23355380ns 410017 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23355664ns 410022 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23356062ns 410029 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23356233ns 410032 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23356687ns 410040 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23356858ns 410043 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23357142ns 410048 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23357426ns 410053 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23357710ns 410058 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23358165ns 410066 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23358336ns 410069 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23358620ns 410074 1a110850 fd5ff06f jal x0, -44 +23358904ns 410079 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23359188ns 410084 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23359586ns 410091 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23359756ns 410094 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23360211ns 410102 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23360381ns 410105 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23360666ns 410110 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23360950ns 410115 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23361234ns 410120 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23361689ns 410128 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23361859ns 410131 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23362143ns 410136 1a110850 fd5ff06f jal x0, -44 +23362427ns 410141 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23362712ns 410146 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23363109ns 410153 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23363280ns 410156 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23363735ns 410164 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23363905ns 410167 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23364189ns 410172 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23364473ns 410177 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23364758ns 410182 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23365212ns 410190 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23365383ns 410193 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23365667ns 410198 1a110850 fd5ff06f jal x0, -44 +23365951ns 410203 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23366235ns 410208 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23366633ns 410215 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23366803ns 410218 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23367258ns 410226 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23367429ns 410229 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23367713ns 410234 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23367997ns 410239 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23368281ns 410244 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23368736ns 410252 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23368906ns 410255 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23369190ns 410260 1a110850 fd5ff06f jal x0, -44 +23369475ns 410265 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23369759ns 410270 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23370157ns 410277 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23370327ns 410280 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23370782ns 410288 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23370952ns 410291 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23371236ns 410296 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23371521ns 410301 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23371805ns 410306 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23372259ns 410314 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23372430ns 410317 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23372714ns 410322 1a110850 fd5ff06f jal x0, -44 +23372998ns 410327 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23373282ns 410332 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23373680ns 410339 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23373851ns 410342 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23374305ns 410350 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23374476ns 410353 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23374760ns 410358 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23375044ns 410363 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23375328ns 410368 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23375783ns 410376 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23375953ns 410379 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23376238ns 410384 1a110850 fd5ff06f jal x0, -44 +23376522ns 410389 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23376806ns 410394 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23377204ns 410401 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23377374ns 410404 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23377829ns 410412 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23377999ns 410415 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23378284ns 410420 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23378568ns 410425 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23378852ns 410430 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23379307ns 410438 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23379477ns 410441 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23379761ns 410446 1a110850 fd5ff06f jal x0, -44 +23380045ns 410451 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23380330ns 410456 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23380727ns 410463 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23380898ns 410466 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23381352ns 410474 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23381523ns 410477 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23381807ns 410482 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23382091ns 410487 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23382375ns 410492 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23382830ns 410500 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23383001ns 410503 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23383285ns 410508 1a110850 fd5ff06f jal x0, -44 +23383569ns 410513 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23383853ns 410518 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23384251ns 410525 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23384421ns 410528 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23384876ns 410536 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23385047ns 410539 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23385331ns 410544 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23385615ns 410549 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23385899ns 410554 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23386354ns 410562 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23386524ns 410565 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23386808ns 410570 1a110850 fd5ff06f jal x0, -44 +23387093ns 410575 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23387377ns 410580 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23387775ns 410587 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23387945ns 410590 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23388400ns 410598 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23388570ns 410601 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23388854ns 410606 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23389138ns 410611 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23389423ns 410616 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23389877ns 410624 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23390048ns 410627 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23390332ns 410632 1a110850 fd5ff06f jal x0, -44 +23390616ns 410637 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23390900ns 410642 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23391298ns 410649 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23391469ns 410652 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23391923ns 410660 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23392094ns 410663 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23392378ns 410668 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23392662ns 410673 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23392946ns 410678 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23393401ns 410686 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23393571ns 410689 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23393856ns 410694 1a110850 fd5ff06f jal x0, -44 +23394140ns 410699 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23394424ns 410704 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23394822ns 410711 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23394992ns 410714 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23395447ns 410722 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23395617ns 410725 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23395901ns 410730 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23396186ns 410735 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23396470ns 410740 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23396924ns 410748 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23397095ns 410751 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23397379ns 410756 1a110850 fd5ff06f jal x0, -44 +23397663ns 410761 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23397947ns 410766 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23398345ns 410773 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23398516ns 410776 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23398970ns 410784 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23399141ns 410787 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23399425ns 410792 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23399709ns 410797 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23399993ns 410802 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23400448ns 410810 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23400619ns 410813 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23400903ns 410818 1a110850 fd5ff06f jal x0, -44 +23401187ns 410823 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23401471ns 410828 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23401869ns 410835 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23402039ns 410838 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23402494ns 410846 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23402664ns 410849 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23402949ns 410854 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23403233ns 410859 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23403517ns 410864 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23403972ns 410872 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23404142ns 410875 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23404426ns 410880 1a110850 fd5ff06f jal x0, -44 +23404710ns 410885 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23404995ns 410890 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23405392ns 410897 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23405563ns 410900 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23406018ns 410908 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23406188ns 410911 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23406472ns 410916 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23406756ns 410921 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23407041ns 410926 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23407495ns 410934 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23407666ns 410937 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23407950ns 410942 1a110850 fd5ff06f jal x0, -44 +23408234ns 410947 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23408518ns 410952 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23408916ns 410959 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23409087ns 410962 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23409541ns 410970 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23409712ns 410973 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23409996ns 410978 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23410280ns 410983 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23410564ns 410988 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23411019ns 410996 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23411189ns 410999 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23411473ns 411004 1a110850 fd5ff06f jal x0, -44 +23411758ns 411009 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23412042ns 411014 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23412440ns 411021 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23412610ns 411024 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23413065ns 411032 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23413235ns 411035 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23413519ns 411040 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23413804ns 411045 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23414088ns 411050 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23414542ns 411058 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23414713ns 411061 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23414997ns 411066 1a110850 fd5ff06f jal x0, -44 +23415281ns 411071 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23415565ns 411076 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23415963ns 411083 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23416134ns 411086 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23416588ns 411094 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23416759ns 411097 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23417043ns 411102 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23417327ns 411107 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23417611ns 411112 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23418066ns 411120 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23418236ns 411123 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23418521ns 411128 1a110850 fd5ff06f jal x0, -44 +23418805ns 411133 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23419089ns 411138 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23419487ns 411145 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23419657ns 411148 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23420112ns 411156 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23420282ns 411159 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23420567ns 411164 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23420851ns 411169 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23421135ns 411174 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23421590ns 411182 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23421760ns 411185 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23422044ns 411190 1a110850 fd5ff06f jal x0, -44 +23422328ns 411195 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23422613ns 411200 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23423010ns 411207 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23423181ns 411210 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23423635ns 411218 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23423806ns 411221 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23424090ns 411226 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23424374ns 411231 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23424658ns 411236 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23425113ns 411244 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23425284ns 411247 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23425568ns 411252 1a110850 fd5ff06f jal x0, -44 +23425852ns 411257 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23426136ns 411262 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23426534ns 411269 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23426704ns 411272 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23427159ns 411280 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23427330ns 411283 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23427614ns 411288 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23427898ns 411293 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23428182ns 411298 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23428637ns 411306 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23428807ns 411309 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23429091ns 411314 1a110850 fd5ff06f jal x0, -44 +23429376ns 411319 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23429660ns 411324 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23430058ns 411331 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23430228ns 411334 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23430683ns 411342 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23430853ns 411345 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23431137ns 411350 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23431421ns 411355 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23431706ns 411360 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23432160ns 411368 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23432331ns 411371 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23432615ns 411376 1a110850 fd5ff06f jal x0, -44 +23432899ns 411381 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23433183ns 411386 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23433581ns 411393 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23433752ns 411396 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23434206ns 411404 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23434377ns 411407 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23434661ns 411412 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23434945ns 411417 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23435229ns 411422 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23435684ns 411430 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23435854ns 411433 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23436139ns 411438 1a110850 fd5ff06f jal x0, -44 +23436423ns 411443 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23436707ns 411448 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23437105ns 411455 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23437275ns 411458 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23437730ns 411466 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23437900ns 411469 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23438184ns 411474 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23438469ns 411479 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23438753ns 411484 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23439207ns 411492 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23439378ns 411495 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23439662ns 411500 1a110850 fd5ff06f jal x0, -44 +23439946ns 411505 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23440230ns 411510 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23440628ns 411517 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23440799ns 411520 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23441253ns 411528 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23441424ns 411531 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23441708ns 411536 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23441992ns 411541 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23442276ns 411546 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23442731ns 411554 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23442902ns 411557 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23443186ns 411562 1a110850 fd5ff06f jal x0, -44 +23443470ns 411567 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23443754ns 411572 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23444152ns 411579 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23444322ns 411582 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23444777ns 411590 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23444947ns 411593 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23445232ns 411598 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23445516ns 411603 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23445800ns 411608 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23446255ns 411616 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23446425ns 411619 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23446709ns 411624 1a110850 fd5ff06f jal x0, -44 +23446993ns 411629 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23447278ns 411634 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23447675ns 411641 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23447846ns 411644 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23448301ns 411652 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23448471ns 411655 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23448755ns 411660 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23449039ns 411665 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23449324ns 411670 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23449778ns 411678 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23449949ns 411681 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23450233ns 411686 1a110850 fd5ff06f jal x0, -44 +23450517ns 411691 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23450801ns 411696 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23451199ns 411703 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23451370ns 411706 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23451824ns 411714 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23451995ns 411717 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23452279ns 411722 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23452563ns 411727 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23452847ns 411732 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23453302ns 411740 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23453472ns 411743 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23453756ns 411748 1a110850 fd5ff06f jal x0, -44 +23454041ns 411753 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23454325ns 411758 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23454723ns 411765 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23454893ns 411768 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23455348ns 411776 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23455518ns 411779 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23455802ns 411784 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23456087ns 411789 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23456371ns 411794 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23456825ns 411802 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23456996ns 411805 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23457280ns 411810 1a110850 fd5ff06f jal x0, -44 +23457564ns 411815 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23457848ns 411820 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23458246ns 411827 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23458417ns 411830 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23458871ns 411838 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23459042ns 411841 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23459326ns 411846 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23459610ns 411851 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23459894ns 411856 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23460349ns 411864 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23460519ns 411867 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23460804ns 411872 1a110850 fd5ff06f jal x0, -44 +23461088ns 411877 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23461372ns 411882 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23461770ns 411889 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23461940ns 411892 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23462395ns 411900 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23462565ns 411903 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23462850ns 411908 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23463134ns 411913 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23463418ns 411918 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23463873ns 411926 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23464043ns 411929 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23464327ns 411934 1a110850 fd5ff06f jal x0, -44 +23464611ns 411939 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23464896ns 411944 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23465293ns 411951 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23465464ns 411954 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23465919ns 411962 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23466089ns 411965 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23466373ns 411970 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23466657ns 411975 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23466941ns 411980 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23467396ns 411988 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23467567ns 411991 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23467851ns 411996 1a110850 fd5ff06f jal x0, -44 +23468135ns 412001 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23468419ns 412006 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23468817ns 412013 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23468987ns 412016 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23469442ns 412024 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23469613ns 412027 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23469897ns 412032 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23470181ns 412037 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23470465ns 412042 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23470920ns 412050 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23471090ns 412053 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23471374ns 412058 1a110850 fd5ff06f jal x0, -44 +23471659ns 412063 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23471943ns 412068 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23472341ns 412075 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23472511ns 412078 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23472966ns 412086 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23473136ns 412089 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23473420ns 412094 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23473704ns 412099 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23473989ns 412104 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23474443ns 412112 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23474614ns 412115 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23474898ns 412120 1a110850 fd5ff06f jal x0, -44 +23475182ns 412125 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23475466ns 412130 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23475864ns 412137 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23476035ns 412140 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23476489ns 412148 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23476660ns 412151 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23476944ns 412156 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23477228ns 412161 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23477512ns 412166 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23477967ns 412174 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23478137ns 412177 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23478422ns 412182 1a110850 fd5ff06f jal x0, -44 +23478706ns 412187 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23478990ns 412192 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23479388ns 412199 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23479558ns 412202 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23480013ns 412210 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23480183ns 412213 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23480467ns 412218 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23480752ns 412223 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23481036ns 412228 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23481490ns 412236 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23481661ns 412239 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23481945ns 412244 1a110850 fd5ff06f jal x0, -44 +23482229ns 412249 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23482513ns 412254 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23482911ns 412261 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23483082ns 412264 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23483536ns 412272 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23483707ns 412275 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23483991ns 412280 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23484275ns 412285 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23484559ns 412290 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23485014ns 412298 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23485185ns 412301 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23485469ns 412306 1a110850 fd5ff06f jal x0, -44 +23485753ns 412311 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23486037ns 412316 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23486435ns 412323 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23486605ns 412326 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23487060ns 412334 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23487231ns 412337 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23487515ns 412342 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23487799ns 412347 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23488083ns 412352 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23488538ns 412360 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23488708ns 412363 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23488992ns 412368 1a110850 fd5ff06f jal x0, -44 +23489276ns 412373 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23489561ns 412378 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23489958ns 412385 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23490129ns 412388 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23490584ns 412396 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23490754ns 412399 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23491038ns 412404 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23491322ns 412409 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23491607ns 412414 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23492061ns 412422 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23492232ns 412425 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23492516ns 412430 1a110850 fd5ff06f jal x0, -44 +23492800ns 412435 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23493084ns 412440 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23493482ns 412447 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23493653ns 412450 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23494107ns 412458 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23494278ns 412461 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23494562ns 412466 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23494846ns 412471 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23495130ns 412476 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23495585ns 412484 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23495755ns 412487 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23496039ns 412492 1a110850 fd5ff06f jal x0, -44 +23496324ns 412497 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23496608ns 412502 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23497006ns 412509 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23497176ns 412512 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23497631ns 412520 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23497801ns 412523 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23498085ns 412528 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23498370ns 412533 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23498654ns 412538 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23499108ns 412546 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23499279ns 412549 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23499563ns 412554 1a110850 fd5ff06f jal x0, -44 +23499847ns 412559 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23500131ns 412564 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23500529ns 412571 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23500700ns 412574 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23501154ns 412582 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23501325ns 412585 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23501609ns 412590 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23501893ns 412595 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23502177ns 412600 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23502632ns 412608 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23502802ns 412611 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23503087ns 412616 1a110850 fd5ff06f jal x0, -44 +23503371ns 412621 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23503655ns 412626 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23504053ns 412633 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23504223ns 412636 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23504678ns 412644 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23504848ns 412647 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23505133ns 412652 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23505417ns 412657 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23505701ns 412662 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23506156ns 412670 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23506326ns 412673 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23506610ns 412678 1a110850 fd5ff06f jal x0, -44 +23506894ns 412683 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23507179ns 412688 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23507576ns 412695 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23507747ns 412698 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23508202ns 412706 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23508372ns 412709 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23508656ns 412714 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23508940ns 412719 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23509224ns 412724 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23509679ns 412732 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23509850ns 412735 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23510134ns 412740 1a110850 fd5ff06f jal x0, -44 +23510418ns 412745 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23510702ns 412750 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23511100ns 412757 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23511270ns 412760 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23511725ns 412768 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23511896ns 412771 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23512180ns 412776 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23512464ns 412781 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23512748ns 412786 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23513203ns 412794 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23513373ns 412797 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23513657ns 412802 1a110850 fd5ff06f jal x0, -44 +23513942ns 412807 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23514226ns 412812 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23514624ns 412819 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23514794ns 412822 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23515249ns 412830 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23515419ns 412833 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23515703ns 412838 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23515987ns 412843 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23516272ns 412848 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23516726ns 412856 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23516897ns 412859 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23517181ns 412864 1a110850 fd5ff06f jal x0, -44 +23517465ns 412869 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23517749ns 412874 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23518147ns 412881 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23518318ns 412884 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23518772ns 412892 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23518943ns 412895 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23519227ns 412900 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23519511ns 412905 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23519795ns 412910 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23520250ns 412918 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23520420ns 412921 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23520705ns 412926 1a110850 fd5ff06f jal x0, -44 +23520989ns 412931 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23521273ns 412936 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23521671ns 412943 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23521841ns 412946 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23522296ns 412954 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23522466ns 412957 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23522751ns 412962 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23523035ns 412967 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23523319ns 412972 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23523773ns 412980 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23523944ns 412983 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23524228ns 412988 1a110850 fd5ff06f jal x0, -44 +23524512ns 412993 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23524796ns 412998 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23525194ns 413005 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23525365ns 413008 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23525819ns 413016 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23525990ns 413019 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23526274ns 413024 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23526558ns 413029 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23526842ns 413034 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23527297ns 413042 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23527468ns 413045 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23527752ns 413050 1a110850 fd5ff06f jal x0, -44 +23528036ns 413055 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23528320ns 413060 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23528718ns 413067 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23528888ns 413070 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23529343ns 413078 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23529514ns 413081 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23529798ns 413086 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23530082ns 413091 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23530366ns 413096 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23530821ns 413104 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23530991ns 413107 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23531275ns 413112 1a110850 fd5ff06f jal x0, -44 +23531559ns 413117 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23531844ns 413122 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23532241ns 413129 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23532412ns 413132 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23532867ns 413140 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23533037ns 413143 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23533321ns 413148 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23533605ns 413153 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23533890ns 413158 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23534344ns 413166 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23534515ns 413169 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23534799ns 413174 1a110850 fd5ff06f jal x0, -44 +23535083ns 413179 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23535367ns 413184 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23535765ns 413191 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23535936ns 413194 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23536390ns 413202 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23536561ns 413205 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23536845ns 413210 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23537129ns 413215 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23537413ns 413220 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23537868ns 413228 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23538038ns 413231 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23538322ns 413236 1a110850 fd5ff06f jal x0, -44 +23538607ns 413241 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23538891ns 413246 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23539289ns 413253 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23539459ns 413256 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23539914ns 413264 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23540084ns 413267 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23540368ns 413272 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23540653ns 413277 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23540937ns 413282 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23541391ns 413290 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23541562ns 413293 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23541846ns 413298 1a110850 fd5ff06f jal x0, -44 +23542130ns 413303 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23542414ns 413308 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23542812ns 413315 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23542983ns 413318 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23543437ns 413326 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23543608ns 413329 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23543892ns 413334 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23544176ns 413339 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23544460ns 413344 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23544915ns 413352 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23545085ns 413355 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23545370ns 413360 1a110850 fd5ff06f jal x0, -44 +23545654ns 413365 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23545938ns 413370 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23546336ns 413377 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23546506ns 413380 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23546961ns 413388 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23547131ns 413391 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23547416ns 413396 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23547700ns 413401 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23547984ns 413406 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23548439ns 413414 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23548609ns 413417 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23548893ns 413422 1a110850 fd5ff06f jal x0, -44 +23549177ns 413427 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23549462ns 413432 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23549859ns 413439 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23550030ns 413442 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23550485ns 413450 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23550655ns 413453 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23550939ns 413458 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23551223ns 413463 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23551507ns 413468 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23551962ns 413476 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23552133ns 413479 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23552417ns 413484 1a110850 fd5ff06f jal x0, -44 +23552701ns 413489 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23552985ns 413494 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23553383ns 413501 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23553553ns 413504 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23554008ns 413512 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23554179ns 413515 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23554463ns 413520 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23554747ns 413525 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23555031ns 413530 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23555486ns 413538 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23555656ns 413541 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23555940ns 413546 1a110850 fd5ff06f jal x0, -44 +23556225ns 413551 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23556509ns 413556 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23556907ns 413563 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23557077ns 413566 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23557532ns 413574 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23557702ns 413577 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23557986ns 413582 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23558271ns 413587 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23558555ns 413592 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23559009ns 413600 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23559180ns 413603 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23559464ns 413608 1a110850 fd5ff06f jal x0, -44 +23559748ns 413613 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23560032ns 413618 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23560430ns 413625 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23560601ns 413628 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23561055ns 413636 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23561226ns 413639 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23561510ns 413644 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23561794ns 413649 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23562078ns 413654 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23562533ns 413662 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23562703ns 413665 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23562988ns 413670 1a110850 fd5ff06f jal x0, -44 +23563272ns 413675 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23563556ns 413680 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23563954ns 413687 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23564124ns 413690 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23564579ns 413698 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23564749ns 413701 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23565034ns 413706 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23565318ns 413711 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23565602ns 413716 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23566056ns 413724 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23566227ns 413727 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23566511ns 413732 1a110850 fd5ff06f jal x0, -44 +23566795ns 413737 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23567079ns 413742 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23567477ns 413749 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23567648ns 413752 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23568102ns 413760 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23568273ns 413763 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23568557ns 413768 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23568841ns 413773 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23569125ns 413778 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23569580ns 413786 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23569751ns 413789 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23570035ns 413794 1a110850 fd5ff06f jal x0, -44 +23570319ns 413799 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23570603ns 413804 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23571001ns 413811 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23571171ns 413814 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23571626ns 413822 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23571797ns 413825 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23572081ns 413830 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23572365ns 413835 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23572649ns 413840 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23573104ns 413848 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23573274ns 413851 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23573558ns 413856 1a110850 fd5ff06f jal x0, -44 +23573842ns 413861 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23574127ns 413866 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23574524ns 413873 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23574695ns 413876 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23575150ns 413884 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23575320ns 413887 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23575604ns 413892 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23575888ns 413897 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23576173ns 413902 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23576627ns 413910 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23576798ns 413913 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23577082ns 413918 1a110850 fd5ff06f jal x0, -44 +23577366ns 413923 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23577650ns 413928 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23578048ns 413935 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23578219ns 413938 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23578673ns 413946 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23578844ns 413949 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23579128ns 413954 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23579412ns 413959 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23579696ns 413964 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23580151ns 413972 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23580321ns 413975 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23580605ns 413980 1a110850 fd5ff06f jal x0, -44 +23580890ns 413985 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23581174ns 413990 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23581572ns 413997 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23581742ns 414000 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23582197ns 414008 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23582367ns 414011 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23582651ns 414016 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23582936ns 414021 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23583220ns 414026 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23583674ns 414034 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23583845ns 414037 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23584129ns 414042 1a110850 fd5ff06f jal x0, -44 +23584413ns 414047 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23584697ns 414052 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23585095ns 414059 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23585266ns 414062 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23585720ns 414070 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23585891ns 414073 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23586175ns 414078 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23586459ns 414083 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23586743ns 414088 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23587198ns 414096 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23587368ns 414099 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23587653ns 414104 1a110850 fd5ff06f jal x0, -44 +23587937ns 414109 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23588221ns 414114 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23588619ns 414121 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23588789ns 414124 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23589244ns 414132 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23589414ns 414135 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23589699ns 414140 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23589983ns 414145 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23590267ns 414150 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23590722ns 414158 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23590892ns 414161 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23591176ns 414166 1a110850 fd5ff06f jal x0, -44 +23591460ns 414171 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23591745ns 414176 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23592142ns 414183 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23592313ns 414186 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23592768ns 414194 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23592938ns 414197 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23593222ns 414202 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23593506ns 414207 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23593791ns 414212 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23594245ns 414220 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23594416ns 414223 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23594700ns 414228 1a110850 fd5ff06f jal x0, -44 +23594984ns 414233 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23595268ns 414238 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23595666ns 414245 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23595836ns 414248 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23596291ns 414256 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23596462ns 414259 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23596746ns 414264 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23597030ns 414269 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23597314ns 414274 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23597769ns 414282 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23597939ns 414285 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23598223ns 414290 1a110850 fd5ff06f jal x0, -44 +23598508ns 414295 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23598792ns 414300 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23599190ns 414307 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23599360ns 414310 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23599815ns 414318 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23599985ns 414321 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23600269ns 414326 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23600554ns 414331 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23600838ns 414336 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23601292ns 414344 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23601463ns 414347 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23601747ns 414352 1a110850 fd5ff06f jal x0, -44 +23602031ns 414357 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23602315ns 414362 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23602713ns 414369 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23602884ns 414372 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23603338ns 414380 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23603509ns 414383 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23603793ns 414388 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23604077ns 414393 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23604361ns 414398 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23604816ns 414406 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23604986ns 414409 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23605271ns 414414 1a110850 fd5ff06f jal x0, -44 +23605555ns 414419 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23605839ns 414424 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23606237ns 414431 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23606407ns 414434 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23606862ns 414442 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23607032ns 414445 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23607317ns 414450 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23607601ns 414455 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23607885ns 414460 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23608339ns 414468 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23608510ns 414471 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23608794ns 414476 1a110850 fd5ff06f jal x0, -44 +23609078ns 414481 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23609362ns 414486 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23609760ns 414493 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23609931ns 414496 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23610385ns 414504 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23610556ns 414507 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23610840ns 414512 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23611124ns 414517 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23611408ns 414522 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23611863ns 414530 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23612034ns 414533 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23612318ns 414538 1a110850 fd5ff06f jal x0, -44 +23612602ns 414543 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23612886ns 414548 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23613284ns 414555 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23613454ns 414558 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23613909ns 414566 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23614080ns 414569 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23614364ns 414574 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23614648ns 414579 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23614932ns 414584 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23615387ns 414592 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23615557ns 414595 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23615841ns 414600 1a110850 fd5ff06f jal x0, -44 +23616125ns 414605 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23616410ns 414610 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23616807ns 414617 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23616978ns 414620 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23617433ns 414628 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23617603ns 414631 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23617887ns 414636 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23618171ns 414641 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23618456ns 414646 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23618910ns 414654 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23619081ns 414657 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23619365ns 414662 1a110850 fd5ff06f jal x0, -44 +23619649ns 414667 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23619933ns 414672 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23620331ns 414679 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23620502ns 414682 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23620956ns 414690 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23621127ns 414693 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23621411ns 414698 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23621695ns 414703 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23621979ns 414708 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23622434ns 414716 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23622604ns 414719 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23622888ns 414724 1a110850 fd5ff06f jal x0, -44 +23623173ns 414729 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23623457ns 414734 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23623855ns 414741 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23624025ns 414744 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23624480ns 414752 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23624650ns 414755 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23624934ns 414760 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23625219ns 414765 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23625503ns 414770 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23625957ns 414778 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23626128ns 414781 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23626412ns 414786 1a110850 fd5ff06f jal x0, -44 +23626696ns 414791 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23626980ns 414796 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23627378ns 414803 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23627549ns 414806 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23628003ns 414814 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23628174ns 414817 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23628458ns 414822 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23628742ns 414827 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23629026ns 414832 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23629481ns 414840 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23629651ns 414843 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23629936ns 414848 1a110850 fd5ff06f jal x0, -44 +23630220ns 414853 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23630504ns 414858 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23630902ns 414865 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23631072ns 414868 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23631527ns 414876 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23631697ns 414879 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23631982ns 414884 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23632266ns 414889 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23632550ns 414894 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23633005ns 414902 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23633175ns 414905 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23633459ns 414910 1a110850 fd5ff06f jal x0, -44 +23633743ns 414915 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23634028ns 414920 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23634425ns 414927 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23634596ns 414930 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23635051ns 414938 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23635221ns 414941 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23635505ns 414946 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23635789ns 414951 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23636074ns 414956 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23636528ns 414964 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23636699ns 414967 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23636983ns 414972 1a110850 fd5ff06f jal x0, -44 +23637267ns 414977 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23637551ns 414982 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23637949ns 414989 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23638119ns 414992 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23638574ns 415000 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23638745ns 415003 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23639029ns 415008 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23639313ns 415013 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23639597ns 415018 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23640052ns 415026 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23640222ns 415029 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23640506ns 415034 1a110850 fd5ff06f jal x0, -44 +23640791ns 415039 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23641075ns 415044 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23641473ns 415051 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23641643ns 415054 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23642098ns 415062 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23642268ns 415065 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23642552ns 415070 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23642837ns 415075 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23643121ns 415080 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23643575ns 415088 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23643746ns 415091 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23644030ns 415096 1a110850 fd5ff06f jal x0, -44 +23644314ns 415101 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23644598ns 415106 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23644996ns 415113 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23645167ns 415116 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23645621ns 415124 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23645792ns 415127 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23646076ns 415132 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23646360ns 415137 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23646644ns 415142 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23647099ns 415150 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23647269ns 415153 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23647554ns 415158 1a110850 fd5ff06f jal x0, -44 +23647838ns 415163 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23648122ns 415168 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23648520ns 415175 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23648690ns 415178 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23649145ns 415186 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23649315ns 415189 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23649600ns 415194 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23649884ns 415199 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23650168ns 415204 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23650623ns 415212 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23650793ns 415215 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23651077ns 415220 1a110850 fd5ff06f jal x0, -44 +23651361ns 415225 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23651645ns 415230 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23652043ns 415237 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23652214ns 415240 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23652668ns 415248 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23652839ns 415251 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23653123ns 415256 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23653407ns 415261 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23653691ns 415266 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23654146ns 415274 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23654317ns 415277 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23654601ns 415282 1a110850 fd5ff06f jal x0, -44 +23654885ns 415287 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23655169ns 415292 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23655567ns 415299 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23655737ns 415302 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23656192ns 415310 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23656363ns 415313 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23656647ns 415318 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23656931ns 415323 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23657215ns 415328 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23657670ns 415336 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23657840ns 415339 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23658124ns 415344 1a110850 fd5ff06f jal x0, -44 +23658408ns 415349 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23658693ns 415354 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23659090ns 415361 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23659261ns 415364 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23659716ns 415372 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23659886ns 415375 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23660170ns 415380 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23660454ns 415385 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23660739ns 415390 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23661193ns 415398 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23661364ns 415401 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23661648ns 415406 1a110850 fd5ff06f jal x0, -44 +23661932ns 415411 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23662216ns 415416 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23662614ns 415423 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23662785ns 415426 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23663239ns 415434 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23663410ns 415437 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23663694ns 415442 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23663978ns 415447 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23664262ns 415452 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23664717ns 415460 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23664887ns 415463 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23665171ns 415468 1a110850 fd5ff06f jal x0, -44 +23665456ns 415473 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23665740ns 415478 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23666138ns 415485 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23666308ns 415488 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23666763ns 415496 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23666933ns 415499 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23667217ns 415504 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23667502ns 415509 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23667786ns 415514 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23668240ns 415522 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23668411ns 415525 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23668695ns 415530 1a110850 fd5ff06f jal x0, -44 +23668979ns 415535 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23669263ns 415540 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23669661ns 415547 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23669832ns 415550 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23670286ns 415558 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23670457ns 415561 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23670741ns 415566 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23671025ns 415571 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23671309ns 415576 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23671764ns 415584 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23671935ns 415587 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23672219ns 415592 1a110850 fd5ff06f jal x0, -44 +23672503ns 415597 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23672787ns 415602 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23673185ns 415609 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23673355ns 415612 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23673810ns 415620 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23673980ns 415623 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23674265ns 415628 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23674549ns 415633 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23674833ns 415638 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23675288ns 415646 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23675458ns 415649 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23675742ns 415654 1a110850 fd5ff06f jal x0, -44 +23676026ns 415659 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23676311ns 415664 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23676708ns 415671 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23676879ns 415674 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23677334ns 415682 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23677504ns 415685 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23677788ns 415690 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23678072ns 415695 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23678357ns 415700 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23678811ns 415708 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23678982ns 415711 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23679266ns 415716 1a110850 fd5ff06f jal x0, -44 +23679550ns 415721 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23679834ns 415726 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23680232ns 415733 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23680402ns 415736 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23680857ns 415744 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23681028ns 415747 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23681312ns 415752 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23681596ns 415757 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23681880ns 415762 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23682335ns 415770 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23682505ns 415773 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23682789ns 415778 1a110850 fd5ff06f jal x0, -44 +23683074ns 415783 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23683358ns 415788 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23683756ns 415795 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23683926ns 415798 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23684381ns 415806 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23684551ns 415809 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23684835ns 415814 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23685120ns 415819 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23685404ns 415824 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23685858ns 415832 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23686029ns 415835 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23686313ns 415840 1a110850 fd5ff06f jal x0, -44 +23686597ns 415845 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23686881ns 415850 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23687279ns 415857 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23687450ns 415860 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23687904ns 415868 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23688075ns 415871 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23688359ns 415876 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23688643ns 415881 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23688927ns 415886 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23689382ns 415894 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23689552ns 415897 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23689837ns 415902 1a110850 fd5ff06f jal x0, -44 +23690121ns 415907 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23690405ns 415912 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23690803ns 415919 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23690973ns 415922 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23691428ns 415930 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23691598ns 415933 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23691883ns 415938 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23692167ns 415943 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23692451ns 415948 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23692906ns 415956 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23693076ns 415959 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23693360ns 415964 1a110850 fd5ff06f jal x0, -44 +23693644ns 415969 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23693928ns 415974 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23694326ns 415981 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23694497ns 415984 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23694951ns 415992 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23695122ns 415995 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23695406ns 416000 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23695690ns 416005 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23695974ns 416010 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23696429ns 416018 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23696600ns 416021 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23696884ns 416026 1a110850 fd5ff06f jal x0, -44 +23697168ns 416031 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23697452ns 416036 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23697850ns 416043 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23698020ns 416046 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23698475ns 416054 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23698646ns 416057 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23698930ns 416062 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23699214ns 416067 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23699498ns 416072 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23699953ns 416080 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23700123ns 416083 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23700407ns 416088 1a110850 fd5ff06f jal x0, -44 +23700691ns 416093 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23700976ns 416098 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23701373ns 416105 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23701544ns 416108 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23701999ns 416116 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23702169ns 416119 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23702453ns 416124 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23702737ns 416129 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23703022ns 416134 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23703476ns 416142 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23703647ns 416145 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23703931ns 416150 1a110850 fd5ff06f jal x0, -44 +23704215ns 416155 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23704499ns 416160 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23704897ns 416167 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23705068ns 416170 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23705522ns 416178 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23705693ns 416181 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23705977ns 416186 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23706261ns 416191 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23706545ns 416196 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23707000ns 416204 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23707170ns 416207 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23707455ns 416212 1a110850 fd5ff06f jal x0, -44 +23707739ns 416217 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23708023ns 416222 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23708421ns 416229 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23708591ns 416232 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23709046ns 416240 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23709216ns 416243 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23709500ns 416248 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23709785ns 416253 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23710069ns 416258 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23710523ns 416266 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23710694ns 416269 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23710978ns 416274 1a110850 fd5ff06f jal x0, -44 +23711262ns 416279 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23711546ns 416284 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23711944ns 416291 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23712115ns 416294 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23712569ns 416302 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23712740ns 416305 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23713024ns 416310 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23713308ns 416315 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23713592ns 416320 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23714047ns 416328 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23714218ns 416331 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23714502ns 416336 1a110850 fd5ff06f jal x0, -44 +23714786ns 416341 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23715070ns 416346 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23715468ns 416353 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23715638ns 416356 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23716093ns 416364 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23716263ns 416367 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23716548ns 416372 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23716832ns 416377 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23717116ns 416382 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23717571ns 416390 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23717741ns 416393 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23718025ns 416398 1a110850 fd5ff06f jal x0, -44 +23718309ns 416403 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23718594ns 416408 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23718991ns 416415 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23719162ns 416418 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23719617ns 416426 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23719787ns 416429 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23720071ns 416434 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23720355ns 416439 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23720640ns 416444 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23721094ns 416452 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23721265ns 416455 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23721549ns 416460 1a110850 fd5ff06f jal x0, -44 +23721833ns 416465 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23722117ns 416470 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23722515ns 416477 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23722685ns 416480 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23723140ns 416488 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23723311ns 416491 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23723595ns 416496 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23723879ns 416501 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23724163ns 416506 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23724618ns 416514 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23724788ns 416517 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23725072ns 416522 1a110850 fd5ff06f jal x0, -44 +23725357ns 416527 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23725641ns 416532 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23726039ns 416539 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23726209ns 416542 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23726664ns 416550 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23726834ns 416553 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23727118ns 416558 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23727403ns 416563 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23727687ns 416568 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23728141ns 416576 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23728312ns 416579 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23728596ns 416584 1a110850 fd5ff06f jal x0, -44 +23728880ns 416589 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23729164ns 416594 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23729562ns 416601 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23729733ns 416604 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23730187ns 416612 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23730358ns 416615 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23730642ns 416620 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23730926ns 416625 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23731210ns 416630 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23731665ns 416638 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23731835ns 416641 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23732120ns 416646 1a110850 fd5ff06f jal x0, -44 +23732404ns 416651 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23732688ns 416656 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23733086ns 416663 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23733256ns 416666 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23733711ns 416674 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23733881ns 416677 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23734166ns 416682 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23734450ns 416687 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23734734ns 416692 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23735189ns 416700 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23735359ns 416703 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23735643ns 416708 1a110850 fd5ff06f jal x0, -44 +23735927ns 416713 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23736211ns 416718 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23736609ns 416725 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23736780ns 416728 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23737234ns 416736 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23737405ns 416739 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23737689ns 416744 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23737973ns 416749 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23738257ns 416754 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23738712ns 416762 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23738883ns 416765 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23739167ns 416770 1a110850 fd5ff06f jal x0, -44 +23739451ns 416775 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23739735ns 416780 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23740133ns 416787 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23740303ns 416790 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23740758ns 416798 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23740929ns 416801 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23741213ns 416806 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23741497ns 416811 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23741781ns 416816 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23742236ns 416824 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23742406ns 416827 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23742690ns 416832 1a110850 fd5ff06f jal x0, -44 +23742975ns 416837 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23743259ns 416842 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23743656ns 416849 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23743827ns 416852 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23744282ns 416860 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23744452ns 416863 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23744736ns 416868 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23745020ns 416873 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23745305ns 416878 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23745759ns 416886 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23745930ns 416889 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23746214ns 416894 1a110850 fd5ff06f jal x0, -44 +23746498ns 416899 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23746782ns 416904 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23747180ns 416911 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23747351ns 416914 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23747805ns 416922 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23747976ns 416925 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23748260ns 416930 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23748544ns 416935 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23748828ns 416940 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23749283ns 416948 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23749453ns 416951 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23749738ns 416956 1a110850 fd5ff06f jal x0, -44 +23750022ns 416961 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23750306ns 416966 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23750704ns 416973 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23750874ns 416976 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23751329ns 416984 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23751499ns 416987 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23751783ns 416992 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23752068ns 416997 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23752352ns 417002 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23752806ns 417010 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23752977ns 417013 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23753261ns 417018 1a110850 fd5ff06f jal x0, -44 +23753545ns 417023 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23753829ns 417028 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23754227ns 417035 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23754398ns 417038 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23754852ns 417046 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23755023ns 417049 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23755307ns 417054 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23755591ns 417059 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23755875ns 417064 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23756330ns 417072 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23756501ns 417075 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23756785ns 417080 1a110850 fd5ff06f jal x0, -44 +23757069ns 417085 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23757353ns 417090 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23757751ns 417097 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23757921ns 417100 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23758376ns 417108 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23758546ns 417111 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23758831ns 417116 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23759115ns 417121 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23759399ns 417126 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23759854ns 417134 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23760024ns 417137 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23760308ns 417142 1a110850 fd5ff06f jal x0, -44 +23760592ns 417147 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23760877ns 417152 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23761274ns 417159 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23761445ns 417162 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23761900ns 417170 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23762070ns 417173 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23762354ns 417178 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23762638ns 417183 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23762923ns 417188 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23763377ns 417196 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23763548ns 417199 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23763832ns 417204 1a110850 fd5ff06f jal x0, -44 +23764116ns 417209 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23764400ns 417214 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23764798ns 417221 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23764968ns 417224 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23765423ns 417232 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23765594ns 417235 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23765878ns 417240 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23766162ns 417245 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23766446ns 417250 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23766901ns 417258 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23767071ns 417261 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23767355ns 417266 1a110850 fd5ff06f jal x0, -44 +23767640ns 417271 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23767924ns 417276 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23768322ns 417283 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23768492ns 417286 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23768947ns 417294 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23769117ns 417297 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23769401ns 417302 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23769686ns 417307 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23769970ns 417312 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23770424ns 417320 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23770595ns 417323 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23770879ns 417328 1a110850 fd5ff06f jal x0, -44 +23771163ns 417333 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23771447ns 417338 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23771845ns 417345 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23772016ns 417348 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23772470ns 417356 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23772641ns 417359 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23772925ns 417364 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23773209ns 417369 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23773493ns 417374 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23773948ns 417382 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23774118ns 417385 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23774403ns 417390 1a110850 fd5ff06f jal x0, -44 +23774687ns 417395 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23774971ns 417400 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23775369ns 417407 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23775539ns 417410 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23775994ns 417418 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23776164ns 417421 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23776449ns 417426 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23776733ns 417431 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23777017ns 417436 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23777472ns 417444 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23777642ns 417447 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23777926ns 417452 1a110850 fd5ff06f jal x0, -44 +23778210ns 417457 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23778495ns 417462 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23778892ns 417469 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23779063ns 417472 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23779517ns 417480 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23779688ns 417483 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23779972ns 417488 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23780256ns 417493 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23780540ns 417498 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23780995ns 417506 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23781166ns 417509 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23781450ns 417514 1a110850 fd5ff06f jal x0, -44 +23781734ns 417519 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23782018ns 417524 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23782416ns 417531 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23782586ns 417534 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23783041ns 417542 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23783212ns 417545 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23783496ns 417550 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23783780ns 417555 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23784064ns 417560 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23784519ns 417568 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23784689ns 417571 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23784973ns 417576 1a110850 fd5ff06f jal x0, -44 +23785258ns 417581 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23785542ns 417586 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23785939ns 417593 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23786110ns 417596 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23786565ns 417604 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23786735ns 417607 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23787019ns 417612 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23787303ns 417617 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23787588ns 417622 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23788042ns 417630 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23788213ns 417633 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23788497ns 417638 1a110850 fd5ff06f jal x0, -44 +23788781ns 417643 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23789065ns 417648 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23789463ns 417655 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23789634ns 417658 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23790088ns 417666 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23790259ns 417669 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23790543ns 417674 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23790827ns 417679 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23791111ns 417684 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23791566ns 417692 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23791736ns 417695 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23792021ns 417700 1a110850 fd5ff06f jal x0, -44 +23792305ns 417705 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23792589ns 417710 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23792987ns 417717 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23793157ns 417720 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23793612ns 417728 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23793782ns 417731 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23794066ns 417736 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23794351ns 417741 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23794635ns 417746 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23795089ns 417754 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23795260ns 417757 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23795544ns 417762 1a110850 fd5ff06f jal x0, -44 +23795828ns 417767 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23796112ns 417772 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23796510ns 417779 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23796681ns 417782 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23797135ns 417790 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23797306ns 417793 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23797590ns 417798 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23797874ns 417803 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23798158ns 417808 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23798613ns 417816 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23798784ns 417819 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23799068ns 417824 1a110850 fd5ff06f jal x0, -44 +23799352ns 417829 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23799636ns 417834 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23800034ns 417841 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23800204ns 417844 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23800659ns 417852 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23800829ns 417855 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23801114ns 417860 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23801398ns 417865 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23801682ns 417870 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23802137ns 417878 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23802307ns 417881 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23802591ns 417886 1a110850 fd5ff06f jal x0, -44 +23802875ns 417891 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23803160ns 417896 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23803557ns 417903 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23803728ns 417906 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23804183ns 417914 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23804353ns 417917 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23804637ns 417922 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23804921ns 417927 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23805206ns 417932 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23805660ns 417940 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23805831ns 417943 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23806115ns 417948 1a110850 fd5ff06f jal x0, -44 +23806399ns 417953 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23806683ns 417958 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23807081ns 417965 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23807251ns 417968 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23807706ns 417976 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23807877ns 417979 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23808161ns 417984 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23808445ns 417989 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23808729ns 417994 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23809184ns 418002 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23809354ns 418005 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23809638ns 418010 1a110850 fd5ff06f jal x0, -44 +23809923ns 418015 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23810207ns 418020 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23810605ns 418027 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23810775ns 418030 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23811230ns 418038 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23811400ns 418041 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23811684ns 418046 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23811969ns 418051 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23812253ns 418056 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23812707ns 418064 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23812878ns 418067 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23813162ns 418072 1a110850 fd5ff06f jal x0, -44 +23813446ns 418077 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23813730ns 418082 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23814128ns 418089 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23814299ns 418092 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23814753ns 418100 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23814924ns 418103 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23815208ns 418108 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23815492ns 418113 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23815776ns 418118 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23816231ns 418126 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23816401ns 418129 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23816686ns 418134 1a110850 fd5ff06f jal x0, -44 +23816970ns 418139 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23817254ns 418144 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23817652ns 418151 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23817822ns 418154 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23818277ns 418162 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23818447ns 418165 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23818732ns 418170 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23819016ns 418175 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23819300ns 418180 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23819755ns 418188 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23819925ns 418191 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23820209ns 418196 1a110850 fd5ff06f jal x0, -44 +23820493ns 418201 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23820778ns 418206 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23821175ns 418213 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23821346ns 418216 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23821800ns 418224 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23821971ns 418227 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23822255ns 418232 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23822539ns 418237 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23822823ns 418242 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23823278ns 418250 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23823449ns 418253 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23823733ns 418258 1a110850 fd5ff06f jal x0, -44 +23824017ns 418263 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23824301ns 418268 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23824699ns 418275 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23824869ns 418278 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23825324ns 418286 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23825495ns 418289 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23825779ns 418294 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23826063ns 418299 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23826347ns 418304 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23826802ns 418312 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23826972ns 418315 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23827256ns 418320 1a110850 fd5ff06f jal x0, -44 +23827541ns 418325 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23827825ns 418330 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23828223ns 418337 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23828393ns 418340 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23828848ns 418348 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23829018ns 418351 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23829302ns 418356 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23829586ns 418361 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23829871ns 418366 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23830325ns 418374 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23830496ns 418377 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23830780ns 418382 1a110850 fd5ff06f jal x0, -44 +23831064ns 418387 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23831348ns 418392 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23831746ns 418399 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23831917ns 418402 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23832371ns 418410 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23832542ns 418413 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23832826ns 418418 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23833110ns 418423 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23833394ns 418428 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23833849ns 418436 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23834019ns 418439 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23834304ns 418444 1a110850 fd5ff06f jal x0, -44 +23834588ns 418449 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23834872ns 418454 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23835270ns 418461 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23835440ns 418464 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23835895ns 418472 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23836065ns 418475 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23836349ns 418480 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23836634ns 418485 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23836918ns 418490 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23837372ns 418498 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23837543ns 418501 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23837827ns 418506 1a110850 fd5ff06f jal x0, -44 +23838111ns 418511 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23838395ns 418516 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23838793ns 418523 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23838964ns 418526 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23839418ns 418534 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23839589ns 418537 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23839873ns 418542 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23840157ns 418547 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23840441ns 418552 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23840896ns 418560 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23841067ns 418563 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23841351ns 418568 1a110850 fd5ff06f jal x0, -44 +23841635ns 418573 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23841919ns 418578 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23842317ns 418585 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23842487ns 418588 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23842942ns 418596 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23843112ns 418599 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23843397ns 418604 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23843681ns 418609 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23843965ns 418614 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23844420ns 418622 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23844590ns 418625 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23844874ns 418630 1a110850 fd5ff06f jal x0, -44 +23845158ns 418635 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23845443ns 418640 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23845840ns 418647 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23846011ns 418650 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23846466ns 418658 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23846636ns 418661 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23846920ns 418666 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23847204ns 418671 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23847489ns 418676 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23847943ns 418684 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23848114ns 418687 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23848398ns 418692 1a110850 fd5ff06f jal x0, -44 +23848682ns 418697 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23848966ns 418702 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23849364ns 418709 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23849535ns 418712 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23849989ns 418720 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23850160ns 418723 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23850444ns 418728 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23850728ns 418733 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23851012ns 418738 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23851467ns 418746 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23851637ns 418749 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23851921ns 418754 1a110850 fd5ff06f jal x0, -44 +23852206ns 418759 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23852490ns 418764 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23852888ns 418771 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23853058ns 418774 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23853513ns 418782 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23853683ns 418785 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23853967ns 418790 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23854252ns 418795 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23854536ns 418800 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23854990ns 418808 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23855161ns 418811 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23855445ns 418816 1a110850 fd5ff06f jal x0, -44 +23855729ns 418821 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23856013ns 418826 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23856411ns 418833 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23856582ns 418836 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23857036ns 418844 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23857207ns 418847 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23857491ns 418852 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23857775ns 418857 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23858059ns 418862 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23858514ns 418870 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23858684ns 418873 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23858969ns 418878 1a110850 fd5ff06f jal x0, -44 +23859253ns 418883 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23859537ns 418888 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23859935ns 418895 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23860105ns 418898 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23860560ns 418906 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23860730ns 418909 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23861015ns 418914 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23861299ns 418919 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23861583ns 418924 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23862038ns 418932 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23862208ns 418935 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23862492ns 418940 1a110850 fd5ff06f jal x0, -44 +23862776ns 418945 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23863061ns 418950 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23863458ns 418957 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23863629ns 418960 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23864083ns 418968 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23864254ns 418971 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23864538ns 418976 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23864822ns 418981 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23865106ns 418986 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23865561ns 418994 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23865732ns 418997 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23866016ns 419002 1a110850 fd5ff06f jal x0, -44 +23866300ns 419007 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23866584ns 419012 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23866982ns 419019 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23867152ns 419022 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23867607ns 419030 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23867778ns 419033 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23868062ns 419038 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23868346ns 419043 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23868630ns 419048 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23869085ns 419056 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23869255ns 419059 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23869539ns 419064 1a110850 fd5ff06f jal x0, -44 +23869824ns 419069 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23870108ns 419074 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23870506ns 419081 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23870676ns 419084 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23871131ns 419092 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23871301ns 419095 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23871585ns 419100 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23871869ns 419105 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23872154ns 419110 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23872608ns 419118 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23872779ns 419121 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23873063ns 419126 1a110850 fd5ff06f jal x0, -44 +23873347ns 419131 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23873631ns 419136 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23874029ns 419143 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23874200ns 419146 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23874654ns 419154 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23874825ns 419157 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23875109ns 419162 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23875393ns 419167 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23875677ns 419172 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23876132ns 419180 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23876302ns 419183 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23876587ns 419188 1a110850 fd5ff06f jal x0, -44 +23876871ns 419193 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23877155ns 419198 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23877553ns 419205 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23877723ns 419208 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23878178ns 419216 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23878348ns 419219 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23878632ns 419224 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23878917ns 419229 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23879201ns 419234 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23879655ns 419242 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23879826ns 419245 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23880110ns 419250 1a110850 fd5ff06f jal x0, -44 +23880394ns 419255 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23880678ns 419260 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23881076ns 419267 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23881247ns 419270 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23881701ns 419278 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23881872ns 419281 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23882156ns 419286 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23882440ns 419291 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23882724ns 419296 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23883179ns 419304 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23883350ns 419307 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23883634ns 419312 1a110850 fd5ff06f jal x0, -44 +23883918ns 419317 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23884202ns 419322 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23884600ns 419329 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23884770ns 419332 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23885225ns 419340 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23885395ns 419343 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23885680ns 419348 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23885964ns 419353 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23886248ns 419358 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23886703ns 419366 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23886873ns 419369 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23887157ns 419374 1a110850 fd5ff06f jal x0, -44 +23887441ns 419379 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23887726ns 419384 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23888123ns 419391 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23888294ns 419394 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23888749ns 419402 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23888919ns 419405 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23889203ns 419410 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23889487ns 419415 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23889772ns 419420 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23890226ns 419428 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23890397ns 419431 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23890681ns 419436 1a110850 fd5ff06f jal x0, -44 +23890965ns 419441 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23891249ns 419446 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23891647ns 419453 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23891818ns 419456 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23892272ns 419464 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23892443ns 419467 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23892727ns 419472 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23893011ns 419477 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23893295ns 419482 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23893750ns 419490 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23893920ns 419493 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23894204ns 419498 1a110850 fd5ff06f jal x0, -44 +23894489ns 419503 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23894773ns 419508 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23895171ns 419515 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23895341ns 419518 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23895796ns 419526 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23895966ns 419529 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23896250ns 419534 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23896535ns 419539 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23896819ns 419544 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23897273ns 419552 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23897444ns 419555 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23897728ns 419560 1a110850 fd5ff06f jal x0, -44 +23898012ns 419565 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23898296ns 419570 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23898694ns 419577 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23898865ns 419580 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23899319ns 419588 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23899490ns 419591 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23899774ns 419596 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23900058ns 419601 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23900342ns 419606 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23900797ns 419614 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23900967ns 419617 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23901252ns 419622 1a110850 fd5ff06f jal x0, -44 +23901536ns 419627 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23901820ns 419632 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23902218ns 419639 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23902388ns 419642 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23902843ns 419650 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23903013ns 419653 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23903298ns 419658 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23903582ns 419663 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23903866ns 419668 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23904321ns 419676 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23904491ns 419679 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23904775ns 419684 1a110850 fd5ff06f jal x0, -44 +23905059ns 419689 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23905344ns 419694 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23905741ns 419701 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23905912ns 419704 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23906367ns 419712 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23906537ns 419715 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23906821ns 419720 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23907105ns 419725 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23907389ns 419730 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23907844ns 419738 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23908015ns 419741 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23908299ns 419746 1a110850 fd5ff06f jal x0, -44 +23908583ns 419751 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23908867ns 419756 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23909265ns 419763 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23909435ns 419766 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23909890ns 419774 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23910061ns 419777 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23910345ns 419782 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23910629ns 419787 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23910913ns 419792 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23911368ns 419800 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23911538ns 419803 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23911822ns 419808 1a110850 fd5ff06f jal x0, -44 +23912107ns 419813 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23912391ns 419818 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23912789ns 419825 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23912959ns 419828 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23913414ns 419836 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23913584ns 419839 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23913868ns 419844 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23914152ns 419849 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23914437ns 419854 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23914891ns 419862 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23915062ns 419865 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23915346ns 419870 1a110850 fd5ff06f jal x0, -44 +23915630ns 419875 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23915914ns 419880 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23916312ns 419887 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23916483ns 419890 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23916937ns 419898 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23917108ns 419901 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23917392ns 419906 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23917676ns 419911 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23917960ns 419916 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23918415ns 419924 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23918585ns 419927 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23918870ns 419932 1a110850 fd5ff06f jal x0, -44 +23919154ns 419937 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23919438ns 419942 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23919836ns 419949 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23920006ns 419952 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23920461ns 419960 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23920631ns 419963 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23920915ns 419968 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23921200ns 419973 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23921484ns 419978 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23921938ns 419986 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23922109ns 419989 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23922393ns 419994 1a110850 fd5ff06f jal x0, -44 +23922677ns 419999 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23922961ns 420004 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23923359ns 420011 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23923530ns 420014 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23923984ns 420022 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23924155ns 420025 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23924439ns 420030 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23924723ns 420035 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23925007ns 420040 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23925462ns 420048 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23925633ns 420051 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23925917ns 420056 1a110850 fd5ff06f jal x0, -44 +23926201ns 420061 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23926485ns 420066 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23926883ns 420073 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23927053ns 420076 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23927508ns 420084 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23927679ns 420087 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23927963ns 420092 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23928247ns 420097 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23928531ns 420102 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23928986ns 420110 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23929156ns 420113 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23929440ns 420118 1a110850 fd5ff06f jal x0, -44 +23929724ns 420123 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23930009ns 420128 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23930406ns 420135 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23930577ns 420138 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23931032ns 420146 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23931202ns 420149 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23931486ns 420154 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23931770ns 420159 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23932055ns 420164 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23932509ns 420172 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23932680ns 420175 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23932964ns 420180 1a110850 fd5ff06f jal x0, -44 +23933248ns 420185 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23933532ns 420190 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23933930ns 420197 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23934101ns 420200 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23934555ns 420208 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23934726ns 420211 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23935010ns 420216 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23935294ns 420221 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23935578ns 420226 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23936033ns 420234 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23936203ns 420237 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23936487ns 420242 1a110850 fd5ff06f jal x0, -44 +23936772ns 420247 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23937056ns 420252 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23937454ns 420259 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23937624ns 420262 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23938079ns 420270 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23938249ns 420273 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23938533ns 420278 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23938818ns 420283 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23939102ns 420288 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23939556ns 420296 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23939727ns 420299 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23940011ns 420304 1a110850 fd5ff06f jal x0, -44 +23940295ns 420309 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23940579ns 420314 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23940977ns 420321 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23941148ns 420324 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23941602ns 420332 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23941773ns 420335 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23942057ns 420340 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23942341ns 420345 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23942625ns 420350 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23943080ns 420358 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23943250ns 420361 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23943535ns 420366 1a110850 fd5ff06f jal x0, -44 +23943819ns 420371 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23944103ns 420376 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23944501ns 420383 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23944671ns 420386 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23945126ns 420394 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23945296ns 420397 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23945581ns 420402 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23945865ns 420407 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23946149ns 420412 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23946604ns 420420 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23946774ns 420423 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23947058ns 420428 1a110850 fd5ff06f jal x0, -44 +23947342ns 420433 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23947627ns 420438 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23948024ns 420445 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23948195ns 420448 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23948650ns 420456 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23948820ns 420459 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23949104ns 420464 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23949388ns 420469 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23949672ns 420474 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23950127ns 420482 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23950298ns 420485 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23950582ns 420490 1a110850 fd5ff06f jal x0, -44 +23950866ns 420495 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23951150ns 420500 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23951548ns 420507 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23951718ns 420510 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23952173ns 420518 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23952344ns 420521 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23952628ns 420526 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23952912ns 420531 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23953196ns 420536 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23953651ns 420544 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23953821ns 420547 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23954105ns 420552 1a110850 fd5ff06f jal x0, -44 +23954390ns 420557 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23954674ns 420562 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23955072ns 420569 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23955242ns 420572 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23955697ns 420580 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23955867ns 420583 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23956151ns 420588 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23956435ns 420593 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23956720ns 420598 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23957174ns 420606 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23957345ns 420609 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23957629ns 420614 1a110850 fd5ff06f jal x0, -44 +23957913ns 420619 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23958197ns 420624 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23958595ns 420631 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23958766ns 420634 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23959220ns 420642 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23959391ns 420645 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23959675ns 420650 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23959959ns 420655 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23960243ns 420660 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23960698ns 420668 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23960868ns 420671 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23961153ns 420676 1a110850 fd5ff06f jal x0, -44 +23961437ns 420681 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23961721ns 420686 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23962119ns 420693 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23962289ns 420696 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23962744ns 420704 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23962914ns 420707 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23963199ns 420712 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23963483ns 420717 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23963767ns 420722 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23964221ns 420730 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23964392ns 420733 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23964676ns 420738 1a110850 fd5ff06f jal x0, -44 +23964960ns 420743 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23965244ns 420748 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23965642ns 420755 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23965813ns 420758 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23966267ns 420766 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23966438ns 420769 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23966722ns 420774 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23967006ns 420779 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23967290ns 420784 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23967745ns 420792 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23967916ns 420795 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23968200ns 420800 1a110850 fd5ff06f jal x0, -44 +23968484ns 420805 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23968768ns 420810 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23969166ns 420817 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23969336ns 420820 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23969791ns 420828 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23969962ns 420831 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23970246ns 420836 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23970530ns 420841 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23970814ns 420846 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23971269ns 420854 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23971439ns 420857 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23971723ns 420862 1a110850 fd5ff06f jal x0, -44 +23972007ns 420867 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23972292ns 420872 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23972689ns 420879 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23972860ns 420882 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23973315ns 420890 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23973485ns 420893 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23973769ns 420898 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23974053ns 420903 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23974338ns 420908 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23974792ns 420916 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23974963ns 420919 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23975247ns 420924 1a110850 fd5ff06f jal x0, -44 +23975531ns 420929 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23975815ns 420934 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23976213ns 420941 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23976384ns 420944 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23976838ns 420952 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23977009ns 420955 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23977293ns 420960 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23977577ns 420965 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23977861ns 420970 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23978316ns 420978 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23978486ns 420981 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23978770ns 420986 1a110850 fd5ff06f jal x0, -44 +23979055ns 420991 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23979339ns 420996 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23979737ns 421003 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23979907ns 421006 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23980362ns 421014 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23980532ns 421017 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23980816ns 421022 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23981101ns 421027 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23981385ns 421032 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23981839ns 421040 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23982010ns 421043 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23982294ns 421048 1a110850 fd5ff06f jal x0, -44 +23982578ns 421053 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23982862ns 421058 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23983260ns 421065 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23983431ns 421068 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23983885ns 421076 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23984056ns 421079 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23984340ns 421084 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23984624ns 421089 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23984908ns 421094 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23985363ns 421102 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23985533ns 421105 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23985818ns 421110 1a110850 fd5ff06f jal x0, -44 +23986102ns 421115 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23986386ns 421120 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23986784ns 421127 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23986954ns 421130 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23987409ns 421138 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23987579ns 421141 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23987864ns 421146 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23988148ns 421151 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23988432ns 421156 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23988887ns 421164 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23989057ns 421167 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23989341ns 421172 1a110850 fd5ff06f jal x0, -44 +23989625ns 421177 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23989910ns 421182 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23990307ns 421189 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23990478ns 421192 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23990933ns 421200 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23991103ns 421203 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23991387ns 421208 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23991671ns 421213 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23991955ns 421218 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23992410ns 421226 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23992581ns 421229 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23992865ns 421234 1a110850 fd5ff06f jal x0, -44 +23993149ns 421239 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23993433ns 421244 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23993831ns 421251 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23994001ns 421254 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23994456ns 421262 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23994627ns 421265 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23994911ns 421270 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23995195ns 421275 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23995479ns 421280 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23995934ns 421288 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23996104ns 421291 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23996388ns 421296 1a110850 fd5ff06f jal x0, -44 +23996673ns 421301 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23996957ns 421306 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +23997355ns 421313 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23997525ns 421316 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23997980ns 421324 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +23998150ns 421327 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +23998434ns 421332 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +23998719ns 421337 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +23999003ns 421342 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +23999457ns 421350 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +23999628ns 421353 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +23999912ns 421358 1a110850 fd5ff06f jal x0, -44 +24000196ns 421363 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24000480ns 421368 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24000878ns 421375 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24001049ns 421378 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24001503ns 421386 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24001674ns 421389 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24001958ns 421394 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24002242ns 421399 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24002526ns 421404 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24002981ns 421412 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24003151ns 421415 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24003436ns 421420 1a110850 fd5ff06f jal x0, -44 +24003720ns 421425 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24004004ns 421430 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24004402ns 421437 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24004572ns 421440 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24005027ns 421448 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24005197ns 421451 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24005482ns 421456 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24005766ns 421461 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24006050ns 421466 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24006504ns 421474 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24006675ns 421477 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24006959ns 421482 1a110850 fd5ff06f jal x0, -44 +24007243ns 421487 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24007527ns 421492 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24007925ns 421499 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24008096ns 421502 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24008550ns 421510 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24008721ns 421513 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24009005ns 421518 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24009289ns 421523 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24009573ns 421528 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24010028ns 421536 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24010199ns 421539 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24010483ns 421544 1a110850 fd5ff06f jal x0, -44 +24010767ns 421549 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24011051ns 421554 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24011449ns 421561 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24011619ns 421564 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24012074ns 421572 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24012245ns 421575 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24012529ns 421580 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24012813ns 421585 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24013097ns 421590 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24013552ns 421598 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24013722ns 421601 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24014006ns 421606 1a110850 fd5ff06f jal x0, -44 +24014290ns 421611 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24014575ns 421616 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24014972ns 421623 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24015143ns 421626 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24015598ns 421634 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24015768ns 421637 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24016052ns 421642 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24016336ns 421647 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24016621ns 421652 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24017075ns 421660 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24017246ns 421663 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24017530ns 421668 1a110850 fd5ff06f jal x0, -44 +24017814ns 421673 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24018098ns 421678 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24018496ns 421685 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24018667ns 421688 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24019121ns 421696 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24019292ns 421699 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24019576ns 421704 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24019860ns 421709 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24020144ns 421714 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24020599ns 421722 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24020769ns 421725 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24021053ns 421730 1a110850 fd5ff06f jal x0, -44 +24021338ns 421735 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24021622ns 421740 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24022020ns 421747 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24022190ns 421750 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24022645ns 421758 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24022815ns 421761 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24023099ns 421766 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24023384ns 421771 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24023668ns 421776 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24024122ns 421784 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24024293ns 421787 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24024577ns 421792 1a110850 fd5ff06f jal x0, -44 +24024861ns 421797 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24025145ns 421802 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24025543ns 421809 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24025714ns 421812 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24026168ns 421820 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24026339ns 421823 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24026623ns 421828 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24026907ns 421833 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24027191ns 421838 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24027646ns 421846 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24027816ns 421849 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24028101ns 421854 1a110850 fd5ff06f jal x0, -44 +24028385ns 421859 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24028669ns 421864 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24029067ns 421871 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24029237ns 421874 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24029692ns 421882 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24029862ns 421885 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24030147ns 421890 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24030431ns 421895 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24030715ns 421900 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24031170ns 421908 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24031340ns 421911 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24031624ns 421916 1a110850 fd5ff06f jal x0, -44 +24031908ns 421921 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24032193ns 421926 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24032590ns 421933 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24032761ns 421936 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24033216ns 421944 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24033386ns 421947 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24033670ns 421952 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24033954ns 421957 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24034239ns 421962 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24034693ns 421970 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24034864ns 421973 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24035148ns 421978 1a110850 fd5ff06f jal x0, -44 +24035432ns 421983 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24035716ns 421988 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24036114ns 421995 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24036284ns 421998 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24036739ns 422006 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24036910ns 422009 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24037194ns 422014 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24037478ns 422019 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24037762ns 422024 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24038217ns 422032 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24038387ns 422035 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24038671ns 422040 1a110850 fd5ff06f jal x0, -44 +24038956ns 422045 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24039240ns 422050 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24039638ns 422057 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24039808ns 422060 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24040263ns 422068 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24040433ns 422071 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24040717ns 422076 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24041002ns 422081 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24041286ns 422086 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24041740ns 422094 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24041911ns 422097 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24042195ns 422102 1a110850 fd5ff06f jal x0, -44 +24042479ns 422107 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24042763ns 422112 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24043161ns 422119 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24043332ns 422122 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24043786ns 422130 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24043957ns 422133 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24044241ns 422138 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24044525ns 422143 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24044809ns 422148 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24045264ns 422156 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24045434ns 422159 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24045719ns 422164 1a110850 fd5ff06f jal x0, -44 +24046003ns 422169 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24046287ns 422174 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24046685ns 422181 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24046855ns 422184 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24047310ns 422192 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24047480ns 422195 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24047765ns 422200 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24048049ns 422205 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24048333ns 422210 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24048787ns 422218 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24048958ns 422221 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24049242ns 422226 1a110850 fd5ff06f jal x0, -44 +24049526ns 422231 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24049810ns 422236 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24050208ns 422243 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24050379ns 422246 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24050833ns 422254 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24051004ns 422257 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24051288ns 422262 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24051572ns 422267 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24051856ns 422272 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24052311ns 422280 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24052482ns 422283 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24052766ns 422288 1a110850 fd5ff06f jal x0, -44 +24053050ns 422293 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24053334ns 422298 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24053732ns 422305 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24053902ns 422308 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24054357ns 422316 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24054528ns 422319 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24054812ns 422324 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24055096ns 422329 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24055380ns 422334 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24055835ns 422342 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24056005ns 422345 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24056289ns 422350 1a110850 fd5ff06f jal x0, -44 +24056573ns 422355 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24056858ns 422360 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24057255ns 422367 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24057426ns 422370 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24057881ns 422378 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24058051ns 422381 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24058335ns 422386 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24058619ns 422391 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24058904ns 422396 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24059358ns 422404 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24059529ns 422407 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24059813ns 422412 1a110850 fd5ff06f jal x0, -44 +24060097ns 422417 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24060381ns 422422 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24060779ns 422429 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24060950ns 422432 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24061404ns 422440 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24061575ns 422443 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24061859ns 422448 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24062143ns 422453 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24062427ns 422458 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24062882ns 422466 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24063052ns 422469 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24063336ns 422474 1a110850 fd5ff06f jal x0, -44 +24063621ns 422479 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24063905ns 422484 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24064303ns 422491 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24064473ns 422494 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24064928ns 422502 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24065098ns 422505 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24065382ns 422510 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24065667ns 422515 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24065951ns 422520 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24066405ns 422528 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24066576ns 422531 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24066860ns 422536 1a110850 fd5ff06f jal x0, -44 +24067144ns 422541 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24067428ns 422546 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24067826ns 422553 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24067997ns 422556 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24068451ns 422564 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24068622ns 422567 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24068906ns 422572 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24069190ns 422577 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24069474ns 422582 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24069929ns 422590 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24070099ns 422593 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24070384ns 422598 1a110850 fd5ff06f jal x0, -44 +24070668ns 422603 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24070952ns 422608 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24071350ns 422615 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24071520ns 422618 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24071975ns 422626 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24072145ns 422629 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24072430ns 422634 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24072714ns 422639 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24072998ns 422644 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24073453ns 422652 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24073623ns 422655 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24073907ns 422660 1a110850 fd5ff06f jal x0, -44 +24074191ns 422665 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24074476ns 422670 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24074873ns 422677 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24075044ns 422680 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24075499ns 422688 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24075669ns 422691 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24075953ns 422696 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24076237ns 422701 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24076522ns 422706 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24076976ns 422714 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24077147ns 422717 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24077431ns 422722 1a110850 fd5ff06f jal x0, -44 +24077715ns 422727 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24077999ns 422732 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24078397ns 422739 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24078567ns 422742 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24079022ns 422750 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24079193ns 422753 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24079477ns 422758 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24079761ns 422763 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24080045ns 422768 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24080500ns 422776 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24080670ns 422779 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24080954ns 422784 1a110850 fd5ff06f jal x0, -44 +24081239ns 422789 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24081523ns 422794 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24081921ns 422801 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24082091ns 422804 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24082546ns 422812 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24082716ns 422815 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24083000ns 422820 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24083285ns 422825 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24083569ns 422830 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24084023ns 422838 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24084194ns 422841 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24084478ns 422846 1a110850 fd5ff06f jal x0, -44 +24084762ns 422851 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24085046ns 422856 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24085444ns 422863 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24085615ns 422866 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24086069ns 422874 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24086240ns 422877 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24086524ns 422882 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24086808ns 422887 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24087092ns 422892 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24087547ns 422900 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24087717ns 422903 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24088002ns 422908 1a110850 fd5ff06f jal x0, -44 +24088286ns 422913 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24088570ns 422918 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24088968ns 422925 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24089138ns 422928 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24089593ns 422936 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24089763ns 422939 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24090048ns 422944 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24090332ns 422949 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24090616ns 422954 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24091071ns 422962 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24091241ns 422965 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24091525ns 422970 1a110850 fd5ff06f jal x0, -44 +24091809ns 422975 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24092093ns 422980 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24092491ns 422987 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24092662ns 422990 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24093116ns 422998 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24093287ns 423001 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24093571ns 423006 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24093855ns 423011 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24094139ns 423016 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24094594ns 423024 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24094765ns 423027 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24095049ns 423032 1a110850 fd5ff06f jal x0, -44 +24095333ns 423037 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24095617ns 423042 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24096015ns 423049 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24096185ns 423052 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24096640ns 423060 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24096811ns 423063 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24097095ns 423068 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24097379ns 423073 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24097663ns 423078 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24098118ns 423086 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24098288ns 423089 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24098572ns 423094 1a110850 fd5ff06f jal x0, -44 +24098856ns 423099 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24099141ns 423104 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24099538ns 423111 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24099709ns 423114 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24100164ns 423122 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24100334ns 423125 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24100618ns 423130 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24100902ns 423135 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24101187ns 423140 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24101641ns 423148 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24101812ns 423151 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24102096ns 423156 1a110850 fd5ff06f jal x0, -44 +24102380ns 423161 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24102664ns 423166 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24103062ns 423173 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24103233ns 423176 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24103687ns 423184 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24103858ns 423187 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24104142ns 423192 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24104426ns 423197 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24104710ns 423202 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24105165ns 423210 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24105335ns 423213 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24105619ns 423218 1a110850 fd5ff06f jal x0, -44 +24105904ns 423223 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24106188ns 423228 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24106586ns 423235 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24106756ns 423238 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24107211ns 423246 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24107381ns 423249 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24107665ns 423254 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24107950ns 423259 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24108234ns 423264 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24108688ns 423272 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24108859ns 423275 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24109143ns 423280 1a110850 fd5ff06f jal x0, -44 +24109427ns 423285 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24109711ns 423290 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24110109ns 423297 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24110280ns 423300 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24110734ns 423308 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24110905ns 423311 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24111189ns 423316 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24111473ns 423321 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24111757ns 423326 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24112212ns 423334 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24112383ns 423337 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24112667ns 423342 1a110850 fd5ff06f jal x0, -44 +24112951ns 423347 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24113235ns 423352 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24113633ns 423359 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24113803ns 423362 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24114258ns 423370 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24114428ns 423373 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24114713ns 423378 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24114997ns 423383 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24115281ns 423388 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24115736ns 423396 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24115906ns 423399 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24116190ns 423404 1a110850 fd5ff06f jal x0, -44 +24116474ns 423409 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24116759ns 423414 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24117156ns 423421 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24117327ns 423424 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24117782ns 423432 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24117952ns 423435 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24118236ns 423440 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24118520ns 423445 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24118805ns 423450 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24119259ns 423458 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24119430ns 423461 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24119714ns 423466 1a110850 fd5ff06f jal x0, -44 +24119998ns 423471 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24120282ns 423476 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24120680ns 423483 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24120850ns 423486 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24121305ns 423494 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24121476ns 423497 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24121760ns 423502 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24122044ns 423507 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24122328ns 423512 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24122783ns 423520 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24122953ns 423523 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24123237ns 423528 1a110850 fd5ff06f jal x0, -44 +24123522ns 423533 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24123806ns 423538 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24124204ns 423545 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24124374ns 423548 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24124829ns 423556 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24124999ns 423559 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24125283ns 423564 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24125568ns 423569 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24125852ns 423574 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24126306ns 423582 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24126477ns 423585 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24126761ns 423590 1a110850 fd5ff06f jal x0, -44 +24127045ns 423595 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24127329ns 423600 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24127727ns 423607 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24127898ns 423610 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24128352ns 423618 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24128523ns 423621 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24128807ns 423626 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24129091ns 423631 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24129375ns 423636 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24129830ns 423644 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24130000ns 423647 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24130285ns 423652 1a110850 fd5ff06f jal x0, -44 +24130569ns 423657 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24130853ns 423662 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24131251ns 423669 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24131421ns 423672 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24131876ns 423680 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24132046ns 423683 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24132331ns 423688 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24132615ns 423693 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24132899ns 423698 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24133354ns 423706 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24133524ns 423709 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24133808ns 423714 1a110850 fd5ff06f jal x0, -44 +24134092ns 423719 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24134376ns 423724 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24134774ns 423731 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24134945ns 423734 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24135399ns 423742 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24135570ns 423745 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24135854ns 423750 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24136138ns 423755 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24136422ns 423760 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24136877ns 423768 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24137048ns 423771 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24137332ns 423776 1a110850 fd5ff06f jal x0, -44 +24137616ns 423781 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24137900ns 423786 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24138298ns 423793 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24138468ns 423796 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24138923ns 423804 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24139094ns 423807 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24139378ns 423812 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24139662ns 423817 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24139946ns 423822 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24140401ns 423830 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24140571ns 423833 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24140855ns 423838 1a110850 fd5ff06f jal x0, -44 +24141139ns 423843 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24141424ns 423848 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24141821ns 423855 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24141992ns 423858 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24142447ns 423866 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24142617ns 423869 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24142901ns 423874 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24143185ns 423879 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24143470ns 423884 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24143924ns 423892 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24144095ns 423895 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24144379ns 423900 1a110850 fd5ff06f jal x0, -44 +24144663ns 423905 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24144947ns 423910 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24145345ns 423917 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24145516ns 423920 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24145970ns 423928 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24146141ns 423931 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24146425ns 423936 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24146709ns 423941 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24146993ns 423946 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24147448ns 423954 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24147618ns 423957 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24147903ns 423962 1a110850 fd5ff06f jal x0, -44 +24148187ns 423967 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24148471ns 423972 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24148869ns 423979 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24149039ns 423982 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24149494ns 423990 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24149664ns 423993 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24149948ns 423998 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24150233ns 424003 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24150517ns 424008 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24150971ns 424016 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24151142ns 424019 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24151426ns 424024 1a110850 fd5ff06f jal x0, -44 +24151710ns 424029 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24151994ns 424034 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24152392ns 424041 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24152563ns 424044 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24153017ns 424052 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24153188ns 424055 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24153472ns 424060 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24153756ns 424065 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24154040ns 424070 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24154495ns 424078 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24154666ns 424081 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24154950ns 424086 1a110850 fd5ff06f jal x0, -44 +24155234ns 424091 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24155518ns 424096 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24155916ns 424103 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24156086ns 424106 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24156541ns 424114 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24156711ns 424117 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24156996ns 424122 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24157280ns 424127 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24157564ns 424132 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24158019ns 424140 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24158189ns 424143 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24158473ns 424148 1a110850 fd5ff06f jal x0, -44 +24158757ns 424153 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24159042ns 424158 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24159439ns 424165 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24159610ns 424168 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24160065ns 424176 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24160235ns 424179 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24160519ns 424184 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24160803ns 424189 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24161088ns 424194 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24161542ns 424202 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24161713ns 424205 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24161997ns 424210 1a110850 fd5ff06f jal x0, -44 +24162281ns 424215 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24162565ns 424220 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24162963ns 424227 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24163133ns 424230 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24163588ns 424238 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24163759ns 424241 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24164043ns 424246 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24164327ns 424251 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24164611ns 424256 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24165066ns 424264 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24165236ns 424267 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24165520ns 424272 1a110850 fd5ff06f jal x0, -44 +24165805ns 424277 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24166089ns 424282 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24166487ns 424289 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24166657ns 424292 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24167112ns 424300 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24167282ns 424303 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24167566ns 424308 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24167851ns 424313 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24168135ns 424318 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24168589ns 424326 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24168760ns 424329 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24169044ns 424334 1a110850 fd5ff06f jal x0, -44 +24169328ns 424339 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24169612ns 424344 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24170010ns 424351 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24170181ns 424354 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24170635ns 424362 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24170806ns 424365 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24171090ns 424370 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24171374ns 424375 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24171658ns 424380 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24172113ns 424388 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24172283ns 424391 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24172568ns 424396 1a110850 fd5ff06f jal x0, -44 +24172852ns 424401 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24173136ns 424406 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24173534ns 424413 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24173704ns 424416 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24174159ns 424424 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24174329ns 424427 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24174614ns 424432 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24174898ns 424437 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24175182ns 424442 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24175637ns 424450 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24175807ns 424453 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24176091ns 424458 1a110850 fd5ff06f jal x0, -44 +24176375ns 424463 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24176659ns 424468 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24177057ns 424475 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24177228ns 424478 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24177682ns 424486 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24177853ns 424489 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24178137ns 424494 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24178421ns 424499 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24178705ns 424504 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24179160ns 424512 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24179331ns 424515 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24179615ns 424520 1a110850 fd5ff06f jal x0, -44 +24179899ns 424525 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24180183ns 424530 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24180581ns 424537 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24180751ns 424540 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24181206ns 424548 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24181377ns 424551 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24181661ns 424556 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24181945ns 424561 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24182229ns 424566 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24182684ns 424574 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24182854ns 424577 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24183138ns 424582 1a110850 fd5ff06f jal x0, -44 +24183423ns 424587 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24183707ns 424592 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24184104ns 424599 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24184275ns 424602 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24184730ns 424610 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24184900ns 424613 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24185184ns 424618 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24185468ns 424623 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24185753ns 424628 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24186207ns 424636 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24186378ns 424639 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24186662ns 424644 1a110850 fd5ff06f jal x0, -44 +24186946ns 424649 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24187230ns 424654 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24187628ns 424661 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24187799ns 424664 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24188253ns 424672 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24188424ns 424675 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24188708ns 424680 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24188992ns 424685 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24189276ns 424690 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24189731ns 424698 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24189901ns 424701 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24190186ns 424706 1a110850 fd5ff06f jal x0, -44 +24190470ns 424711 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24190754ns 424716 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24191152ns 424723 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24191322ns 424726 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24191777ns 424734 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24191947ns 424737 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24192231ns 424742 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24192516ns 424747 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24192800ns 424752 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24193254ns 424760 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24193425ns 424763 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24193709ns 424768 1a110850 fd5ff06f jal x0, -44 +24193993ns 424773 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24194277ns 424778 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24194675ns 424785 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24194846ns 424788 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24195300ns 424796 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24195471ns 424799 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24195755ns 424804 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24196039ns 424809 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24196323ns 424814 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24196778ns 424822 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24196949ns 424825 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24197233ns 424830 1a110850 fd5ff06f jal x0, -44 +24197517ns 424835 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24197801ns 424840 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24198199ns 424847 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24198369ns 424850 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24198824ns 424858 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24198994ns 424861 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24199279ns 424866 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24199563ns 424871 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24199847ns 424876 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24200302ns 424884 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24200472ns 424887 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24200756ns 424892 1a110850 fd5ff06f jal x0, -44 +24201040ns 424897 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24201325ns 424902 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24201722ns 424909 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24201893ns 424912 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24202348ns 424920 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24202518ns 424923 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24202802ns 424928 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24203086ns 424933 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24203371ns 424938 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24203825ns 424946 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24203996ns 424949 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24204280ns 424954 1a110850 fd5ff06f jal x0, -44 +24204564ns 424959 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24204848ns 424964 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24205246ns 424971 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24205416ns 424974 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24205871ns 424982 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24206042ns 424985 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24206326ns 424990 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24206610ns 424995 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24206894ns 425000 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24207349ns 425008 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24207519ns 425011 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24207803ns 425016 1a110850 fd5ff06f jal x0, -44 +24208088ns 425021 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24208372ns 425026 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24208770ns 425033 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24208940ns 425036 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24209395ns 425044 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24209565ns 425047 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24209849ns 425052 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24210134ns 425057 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24210418ns 425062 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24210872ns 425070 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24211043ns 425073 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24211327ns 425078 1a110850 fd5ff06f jal x0, -44 +24211611ns 425083 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24211895ns 425088 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24212293ns 425095 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24212464ns 425098 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24212918ns 425106 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24213089ns 425109 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24213373ns 425114 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24213657ns 425119 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24213941ns 425124 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24214396ns 425132 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24214566ns 425135 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24214851ns 425140 1a110850 fd5ff06f jal x0, -44 +24215135ns 425145 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24215419ns 425150 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24215817ns 425157 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24215987ns 425160 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24216442ns 425168 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24216612ns 425171 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24216897ns 425176 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24217181ns 425181 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24217465ns 425186 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24217920ns 425194 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24218090ns 425197 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24218374ns 425202 1a110850 fd5ff06f jal x0, -44 +24218658ns 425207 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24218943ns 425212 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24219340ns 425219 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24219511ns 425222 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24219965ns 425230 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24220136ns 425233 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24220420ns 425238 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24220704ns 425243 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24220988ns 425248 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24221443ns 425256 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24221614ns 425259 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24221898ns 425264 1a110850 fd5ff06f jal x0, -44 +24222182ns 425269 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24222466ns 425274 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24222864ns 425281 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24223034ns 425284 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24223489ns 425292 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24223660ns 425295 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24223944ns 425300 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24224228ns 425305 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24224512ns 425310 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24224967ns 425318 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24225137ns 425321 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24225421ns 425326 1a110850 fd5ff06f jal x0, -44 +24225706ns 425331 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24225990ns 425336 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24226387ns 425343 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24226558ns 425346 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24227013ns 425354 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24227183ns 425357 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24227467ns 425362 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24227751ns 425367 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24228036ns 425372 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24228490ns 425380 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24228661ns 425383 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24228945ns 425388 1a110850 fd5ff06f jal x0, -44 +24229229ns 425393 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24229513ns 425398 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24229911ns 425405 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24230082ns 425408 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24230536ns 425416 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24230707ns 425419 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24230991ns 425424 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24231275ns 425429 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24231559ns 425434 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24232014ns 425442 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24232184ns 425445 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24232469ns 425450 1a110850 fd5ff06f jal x0, -44 +24232753ns 425455 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24233037ns 425460 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24233435ns 425467 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24233605ns 425470 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24234060ns 425478 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24234230ns 425481 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24234514ns 425486 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24234799ns 425491 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24235083ns 425496 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24235537ns 425504 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24235708ns 425507 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24235992ns 425512 1a110850 fd5ff06f jal x0, -44 +24236276ns 425517 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24236560ns 425522 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24236958ns 425529 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24237129ns 425532 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24237583ns 425540 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24237754ns 425543 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24238038ns 425548 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24238322ns 425553 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24238606ns 425558 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24239061ns 425566 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24239232ns 425569 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24239516ns 425574 1a110850 fd5ff06f jal x0, -44 +24239800ns 425579 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24240084ns 425584 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24240482ns 425591 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24240652ns 425594 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24241107ns 425602 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24241277ns 425605 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24241562ns 425610 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24241846ns 425615 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24242130ns 425620 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24242585ns 425628 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24242755ns 425631 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24243039ns 425636 1a110850 fd5ff06f jal x0, -44 +24243323ns 425641 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24243608ns 425646 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24244005ns 425653 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24244176ns 425656 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24244631ns 425664 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24244801ns 425667 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24245085ns 425672 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24245369ns 425677 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24245654ns 425682 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24246108ns 425690 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24246279ns 425693 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24246563ns 425698 1a110850 fd5ff06f jal x0, -44 +24246847ns 425703 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24247131ns 425708 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24247529ns 425715 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24247699ns 425718 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24248154ns 425726 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24248325ns 425729 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24248609ns 425734 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24248893ns 425739 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24249177ns 425744 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24249632ns 425752 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24249802ns 425755 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24250086ns 425760 1a110850 fd5ff06f jal x0, -44 +24250371ns 425765 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24250655ns 425770 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24251053ns 425777 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24251223ns 425780 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24251678ns 425788 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24251848ns 425791 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24252132ns 425796 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24252417ns 425801 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24252701ns 425806 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24253155ns 425814 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24253326ns 425817 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24253610ns 425822 1a110850 fd5ff06f jal x0, -44 +24253894ns 425827 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24254178ns 425832 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24254576ns 425839 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24254747ns 425842 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24255201ns 425850 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24255372ns 425853 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24255656ns 425858 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24255940ns 425863 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24256224ns 425868 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24256679ns 425876 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24256849ns 425879 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24257134ns 425884 1a110850 fd5ff06f jal x0, -44 +24257418ns 425889 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24257702ns 425894 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24258100ns 425901 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24258270ns 425904 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24258725ns 425912 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24258895ns 425915 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24259180ns 425920 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24259464ns 425925 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24259748ns 425930 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24260203ns 425938 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24260373ns 425941 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24260657ns 425946 1a110850 fd5ff06f jal x0, -44 +24260941ns 425951 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24261226ns 425956 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24261623ns 425963 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24261794ns 425966 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24262248ns 425974 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24262419ns 425977 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24262703ns 425982 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24262987ns 425987 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24263271ns 425992 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24263726ns 426000 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24263897ns 426003 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24264181ns 426008 1a110850 fd5ff06f jal x0, -44 +24264465ns 426013 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24264749ns 426018 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24265147ns 426025 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24265317ns 426028 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24265772ns 426036 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24265943ns 426039 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24266227ns 426044 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24266511ns 426049 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24266795ns 426054 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24267250ns 426062 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24267420ns 426065 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24267704ns 426070 1a110850 fd5ff06f jal x0, -44 +24267989ns 426075 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24268273ns 426080 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24268671ns 426087 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24268841ns 426090 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24269296ns 426098 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24269466ns 426101 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24269750ns 426106 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24270034ns 426111 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24270319ns 426116 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24270773ns 426124 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24270944ns 426127 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24271228ns 426132 1a110850 fd5ff06f jal x0, -44 +24271512ns 426137 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24271796ns 426142 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24272194ns 426149 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24272365ns 426152 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24272819ns 426160 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24272990ns 426163 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24273274ns 426168 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24273558ns 426173 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24273842ns 426178 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24274297ns 426186 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24274467ns 426189 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24274752ns 426194 1a110850 fd5ff06f jal x0, -44 +24275036ns 426199 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24275320ns 426204 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24275718ns 426211 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24275888ns 426214 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24276343ns 426222 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24276513ns 426225 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24276797ns 426230 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24277082ns 426235 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24277366ns 426240 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24277820ns 426248 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24277991ns 426251 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24278275ns 426256 1a110850 fd5ff06f jal x0, -44 +24278559ns 426261 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24278843ns 426266 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24279241ns 426273 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24279412ns 426276 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24279866ns 426284 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24280037ns 426287 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24280321ns 426292 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24280605ns 426297 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24280889ns 426302 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24281344ns 426310 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24281515ns 426313 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24281799ns 426318 1a110850 fd5ff06f jal x0, -44 +24282083ns 426323 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24282367ns 426328 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24282765ns 426335 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24282935ns 426338 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24283390ns 426346 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24283560ns 426349 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24283845ns 426354 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24284129ns 426359 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24284413ns 426364 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24284868ns 426372 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24285038ns 426375 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24285322ns 426380 1a110850 fd5ff06f jal x0, -44 +24285606ns 426385 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24285891ns 426390 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24286288ns 426397 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24286459ns 426400 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24286914ns 426408 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24287084ns 426411 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24287368ns 426416 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24287652ns 426421 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24287937ns 426426 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24288391ns 426434 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24288562ns 426437 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24288846ns 426442 1a110850 fd5ff06f jal x0, -44 +24289130ns 426447 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24289414ns 426452 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24289812ns 426459 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24289983ns 426462 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24290437ns 426470 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24290608ns 426473 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24290892ns 426478 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24291176ns 426483 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24291460ns 426488 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24291915ns 426496 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24292085ns 426499 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24292369ns 426504 1a110850 fd5ff06f jal x0, -44 +24292654ns 426509 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24292938ns 426514 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24293336ns 426521 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24293506ns 426524 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24293961ns 426532 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24294131ns 426535 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24294415ns 426540 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24294700ns 426545 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24294984ns 426550 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24295438ns 426558 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24295609ns 426561 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24295893ns 426566 1a110850 fd5ff06f jal x0, -44 +24296177ns 426571 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24296461ns 426576 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24296859ns 426583 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24297030ns 426586 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24297484ns 426594 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24297655ns 426597 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24297939ns 426602 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24298223ns 426607 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24298507ns 426612 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24298962ns 426620 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24299132ns 426623 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24299417ns 426628 1a110850 fd5ff06f jal x0, -44 +24299701ns 426633 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24299985ns 426638 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24300383ns 426645 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24300553ns 426648 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24301008ns 426656 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24301178ns 426659 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24301463ns 426664 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24301747ns 426669 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24302031ns 426674 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24302486ns 426682 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24302656ns 426685 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24302940ns 426690 1a110850 fd5ff06f jal x0, -44 +24303224ns 426695 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24303509ns 426700 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24303906ns 426707 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24304077ns 426710 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24304531ns 426718 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24304702ns 426721 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24304986ns 426726 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24305270ns 426731 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24305554ns 426736 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24306009ns 426744 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24306180ns 426747 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24306464ns 426752 1a110850 fd5ff06f jal x0, -44 +24306748ns 426757 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24307032ns 426762 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24307430ns 426769 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24307600ns 426772 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24308055ns 426780 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24308226ns 426783 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24308510ns 426788 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24308794ns 426793 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24309078ns 426798 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24309533ns 426806 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24309703ns 426809 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24309987ns 426814 1a110850 fd5ff06f jal x0, -44 +24310272ns 426819 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24310556ns 426824 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24310954ns 426831 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24311124ns 426834 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24311579ns 426842 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24311749ns 426845 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24312033ns 426850 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24312317ns 426855 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24312602ns 426860 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24313056ns 426868 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24313227ns 426871 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24313511ns 426876 1a110850 fd5ff06f jal x0, -44 +24313795ns 426881 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24314079ns 426886 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24314477ns 426893 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24314648ns 426896 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24315102ns 426904 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24315273ns 426907 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24315557ns 426912 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24315841ns 426917 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24316125ns 426922 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24316580ns 426930 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24316750ns 426933 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24317035ns 426938 1a110850 fd5ff06f jal x0, -44 +24317319ns 426943 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24317603ns 426948 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24318001ns 426955 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24318171ns 426958 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24318626ns 426966 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24318796ns 426969 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24319080ns 426974 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24319365ns 426979 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24319649ns 426984 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24320103ns 426992 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24320274ns 426995 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24320558ns 427000 1a110850 fd5ff06f jal x0, -44 +24320842ns 427005 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24321126ns 427010 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24321524ns 427017 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24321695ns 427020 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24322149ns 427028 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24322320ns 427031 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24322604ns 427036 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24322888ns 427041 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24323172ns 427046 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24323627ns 427054 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24323798ns 427057 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24324082ns 427062 1a110850 fd5ff06f jal x0, -44 +24324366ns 427067 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24324650ns 427072 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24325048ns 427079 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24325218ns 427082 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24325673ns 427090 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24325843ns 427093 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24326128ns 427098 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24326412ns 427103 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24326696ns 427108 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24327151ns 427116 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24327321ns 427119 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24327605ns 427124 1a110850 fd5ff06f jal x0, -44 +24327889ns 427129 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24328174ns 427134 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24328571ns 427141 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24328742ns 427144 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24329197ns 427152 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24329367ns 427155 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24329651ns 427160 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24329935ns 427165 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24330220ns 427170 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24330674ns 427178 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24330845ns 427181 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24331129ns 427186 1a110850 fd5ff06f jal x0, -44 +24331413ns 427191 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24331697ns 427196 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24332095ns 427203 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24332266ns 427206 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24332720ns 427214 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24332891ns 427217 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24333175ns 427222 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24333459ns 427227 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24333743ns 427232 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24334198ns 427240 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24334368ns 427243 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24334652ns 427248 1a110850 fd5ff06f jal x0, -44 +24334937ns 427253 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24335221ns 427258 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24335619ns 427265 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24335789ns 427268 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24336244ns 427276 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24336414ns 427279 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24336698ns 427284 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24336983ns 427289 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24337267ns 427294 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24337721ns 427302 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24337892ns 427305 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24338176ns 427310 1a110850 fd5ff06f jal x0, -44 +24338460ns 427315 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24338744ns 427320 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24339142ns 427327 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24339313ns 427330 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24339767ns 427338 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24339938ns 427341 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24340222ns 427346 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24340506ns 427351 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24340790ns 427356 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24341245ns 427364 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24341415ns 427367 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24341700ns 427372 1a110850 fd5ff06f jal x0, -44 +24341984ns 427377 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24342268ns 427382 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24342666ns 427389 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24342836ns 427392 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24343291ns 427400 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24343461ns 427403 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24343746ns 427408 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24344030ns 427413 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24344314ns 427418 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24344769ns 427426 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24344939ns 427429 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24345223ns 427434 1a110850 fd5ff06f jal x0, -44 +24345507ns 427439 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24345792ns 427444 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24346189ns 427451 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24346360ns 427454 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24346815ns 427462 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24346985ns 427465 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24347269ns 427470 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24347553ns 427475 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24347837ns 427480 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24348292ns 427488 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24348463ns 427491 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24348747ns 427496 1a110850 fd5ff06f jal x0, -44 +24349031ns 427501 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24349315ns 427506 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24349713ns 427513 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24349883ns 427516 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24350338ns 427524 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24350509ns 427527 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24350793ns 427532 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24351077ns 427537 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24351361ns 427542 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24351816ns 427550 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24351986ns 427553 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24352270ns 427558 1a110850 fd5ff06f jal x0, -44 +24352555ns 427563 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24352839ns 427568 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24353237ns 427575 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24353407ns 427578 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24353862ns 427586 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24354032ns 427589 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24354316ns 427594 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24354600ns 427599 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24354885ns 427604 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24355339ns 427612 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24355510ns 427615 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24355794ns 427620 1a110850 fd5ff06f jal x0, -44 +24356078ns 427625 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24356362ns 427630 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24356760ns 427637 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24356931ns 427640 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24357385ns 427648 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24357556ns 427651 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24357840ns 427656 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24358124ns 427661 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24358408ns 427666 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24358863ns 427674 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24359033ns 427677 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24359318ns 427682 1a110850 fd5ff06f jal x0, -44 +24359602ns 427687 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24359886ns 427692 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24360284ns 427699 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24360454ns 427702 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24360909ns 427710 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24361079ns 427713 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24361363ns 427718 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24361648ns 427723 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24361932ns 427728 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24362386ns 427736 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24362557ns 427739 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24362841ns 427744 1a110850 fd5ff06f jal x0, -44 +24363125ns 427749 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24363409ns 427754 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24363807ns 427761 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24363978ns 427764 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24364432ns 427772 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24364603ns 427775 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24364887ns 427780 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24365171ns 427785 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24365455ns 427790 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24365910ns 427798 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24366081ns 427801 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24366365ns 427806 1a110850 fd5ff06f jal x0, -44 +24366649ns 427811 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24366933ns 427816 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24367331ns 427823 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24367501ns 427826 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24367956ns 427834 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24368127ns 427837 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24368411ns 427842 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24368695ns 427847 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24368979ns 427852 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24369434ns 427860 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24369604ns 427863 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24369888ns 427868 1a110850 fd5ff06f jal x0, -44 +24370172ns 427873 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24370457ns 427878 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24370854ns 427885 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24371025ns 427888 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24371480ns 427896 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24371650ns 427899 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24371934ns 427904 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24372218ns 427909 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24372503ns 427914 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24372957ns 427922 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24373128ns 427925 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24373412ns 427930 1a110850 fd5ff06f jal x0, -44 +24373696ns 427935 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24373980ns 427940 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24374378ns 427947 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24374549ns 427950 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24375003ns 427958 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24375174ns 427961 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24375458ns 427966 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24375742ns 427971 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24376026ns 427976 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24376481ns 427984 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24376651ns 427987 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24376935ns 427992 1a110850 fd5ff06f jal x0, -44 +24377220ns 427997 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24377504ns 428002 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24377902ns 428009 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24378072ns 428012 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24378527ns 428020 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24378697ns 428023 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24378981ns 428028 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24379266ns 428033 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24379550ns 428038 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24380004ns 428046 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24380175ns 428049 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24380459ns 428054 1a110850 fd5ff06f jal x0, -44 +24380743ns 428059 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24381027ns 428064 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24381425ns 428071 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24381596ns 428074 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24382050ns 428082 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24382221ns 428085 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24382505ns 428090 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24382789ns 428095 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24383073ns 428100 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24383528ns 428108 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24383698ns 428111 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24383983ns 428116 1a110850 fd5ff06f jal x0, -44 +24384267ns 428121 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24384551ns 428126 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24384949ns 428133 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24385119ns 428136 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24385574ns 428144 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24385744ns 428147 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24386029ns 428152 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24386313ns 428157 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24386597ns 428162 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24387052ns 428170 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24387222ns 428173 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24387506ns 428178 1a110850 fd5ff06f jal x0, -44 +24387790ns 428183 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24388075ns 428188 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24388472ns 428195 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24388643ns 428198 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24389098ns 428206 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24389268ns 428209 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24389552ns 428214 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24389836ns 428219 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24390120ns 428224 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24390575ns 428232 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24390746ns 428235 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24391030ns 428240 1a110850 fd5ff06f jal x0, -44 +24391314ns 428245 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24391598ns 428250 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24391996ns 428257 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24392166ns 428260 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24392621ns 428268 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24392792ns 428271 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24393076ns 428276 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24393360ns 428281 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24393644ns 428286 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24394099ns 428294 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24394269ns 428297 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24394553ns 428302 1a110850 fd5ff06f jal x0, -44 +24394838ns 428307 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24395122ns 428312 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24395520ns 428319 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24395690ns 428322 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24396145ns 428330 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24396315ns 428333 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24396599ns 428338 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24396883ns 428343 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24397168ns 428348 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24397622ns 428356 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24397793ns 428359 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24398077ns 428364 1a110850 fd5ff06f jal x0, -44 +24398361ns 428369 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24398645ns 428374 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24399043ns 428381 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24399214ns 428384 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24399668ns 428392 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24399839ns 428395 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24400123ns 428400 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24400407ns 428405 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24400691ns 428410 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24401146ns 428418 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24401316ns 428421 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24401601ns 428426 1a110850 fd5ff06f jal x0, -44 +24401885ns 428431 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24402169ns 428436 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24402567ns 428443 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24402737ns 428446 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24403192ns 428454 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24403362ns 428457 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24403647ns 428462 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24403931ns 428467 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24404215ns 428472 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24404669ns 428480 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24404840ns 428483 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24405124ns 428488 1a110850 fd5ff06f jal x0, -44 +24405408ns 428493 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24405692ns 428498 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24406090ns 428505 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24406261ns 428508 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24406715ns 428516 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24406886ns 428519 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24407170ns 428524 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24407454ns 428529 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24407738ns 428534 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24408193ns 428542 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24408364ns 428545 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24408648ns 428550 1a110850 fd5ff06f jal x0, -44 +24408932ns 428555 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24409216ns 428560 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24409614ns 428567 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24409784ns 428570 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24410239ns 428578 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24410410ns 428581 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24410694ns 428586 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24410978ns 428591 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24411262ns 428596 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24411717ns 428604 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24411887ns 428607 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24412171ns 428612 1a110850 fd5ff06f jal x0, -44 +24412455ns 428617 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24412740ns 428622 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24413137ns 428629 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24413308ns 428632 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24413763ns 428640 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24413933ns 428643 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24414217ns 428648 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24414501ns 428653 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24414786ns 428658 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24415240ns 428666 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24415411ns 428669 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24415695ns 428674 1a110850 fd5ff06f jal x0, -44 +24415979ns 428679 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24416263ns 428684 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24416661ns 428691 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24416832ns 428694 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24417286ns 428702 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24417457ns 428705 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24417741ns 428710 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24418025ns 428715 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24418309ns 428720 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24418764ns 428728 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24418934ns 428731 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24419218ns 428736 1a110850 fd5ff06f jal x0, -44 +24419503ns 428741 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24419787ns 428746 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24420185ns 428753 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24420355ns 428756 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24420810ns 428764 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24420980ns 428767 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24421264ns 428772 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24421549ns 428777 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24421833ns 428782 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24422287ns 428790 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24422458ns 428793 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24422742ns 428798 1a110850 fd5ff06f jal x0, -44 +24423026ns 428803 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24423310ns 428808 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24423708ns 428815 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24423879ns 428818 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24424333ns 428826 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24424504ns 428829 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24424788ns 428834 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24425072ns 428839 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24425356ns 428844 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24425811ns 428852 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24425981ns 428855 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24426266ns 428860 1a110850 fd5ff06f jal x0, -44 +24426550ns 428865 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24426834ns 428870 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24427232ns 428877 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24427402ns 428880 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24427857ns 428888 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24428027ns 428891 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24428312ns 428896 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24428596ns 428901 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24428880ns 428906 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24429335ns 428914 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24429505ns 428917 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24429789ns 428922 1a110850 fd5ff06f jal x0, -44 +24430073ns 428927 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24430358ns 428932 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24430755ns 428939 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24430926ns 428942 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24431381ns 428950 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24431551ns 428953 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24431835ns 428958 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24432119ns 428963 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24432403ns 428968 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24432858ns 428976 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24433029ns 428979 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24433313ns 428984 1a110850 fd5ff06f jal x0, -44 +24433597ns 428989 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24433881ns 428994 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24434279ns 429001 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24434449ns 429004 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24434904ns 429012 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24435075ns 429015 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24435359ns 429020 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24435643ns 429025 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24435927ns 429030 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24436382ns 429038 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24436552ns 429041 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24436836ns 429046 1a110850 fd5ff06f jal x0, -44 +24437121ns 429051 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24437405ns 429056 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24437803ns 429063 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24437973ns 429066 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24438428ns 429074 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24438598ns 429077 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24438882ns 429082 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24439167ns 429087 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24439451ns 429092 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24439905ns 429100 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24440076ns 429103 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24440360ns 429108 1a110850 fd5ff06f jal x0, -44 +24440644ns 429113 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24440928ns 429118 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24441326ns 429125 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24441497ns 429128 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24441951ns 429136 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24442122ns 429139 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24442406ns 429144 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24442690ns 429149 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24442974ns 429154 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24443429ns 429162 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24443599ns 429165 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24443884ns 429170 1a110850 fd5ff06f jal x0, -44 +24444168ns 429175 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24444452ns 429180 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24444850ns 429187 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24445020ns 429190 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24445475ns 429198 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24445645ns 429201 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24445930ns 429206 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24446214ns 429211 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24446498ns 429216 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24446952ns 429224 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24447123ns 429227 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24447407ns 429232 1a110850 fd5ff06f jal x0, -44 +24447691ns 429237 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24447975ns 429242 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24448373ns 429249 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24448544ns 429252 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24448998ns 429260 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24449169ns 429263 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24449453ns 429268 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24449737ns 429273 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24450021ns 429278 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24450476ns 429286 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24450647ns 429289 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24450931ns 429294 1a110850 fd5ff06f jal x0, -44 +24451215ns 429299 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24451499ns 429304 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24451897ns 429311 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24452067ns 429314 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24452522ns 429322 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24452693ns 429325 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24452977ns 429330 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24453261ns 429335 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24453545ns 429340 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24454000ns 429348 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24454170ns 429351 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24454454ns 429356 1a110850 fd5ff06f jal x0, -44 +24454738ns 429361 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24455023ns 429366 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24455420ns 429373 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24455591ns 429376 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24456046ns 429384 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24456216ns 429387 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24456500ns 429392 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24456784ns 429397 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24457069ns 429402 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24457523ns 429410 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24457694ns 429413 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24457978ns 429418 1a110850 fd5ff06f jal x0, -44 +24458262ns 429423 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24458546ns 429428 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24458944ns 429435 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24459115ns 429438 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24459569ns 429446 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24459740ns 429449 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24460024ns 429454 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24460308ns 429459 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24460592ns 429464 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24461047ns 429472 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24461217ns 429475 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24461501ns 429480 1a110850 fd5ff06f jal x0, -44 +24461786ns 429485 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24462070ns 429490 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24462468ns 429497 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24462638ns 429500 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24463093ns 429508 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24463263ns 429511 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24463547ns 429516 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24463832ns 429521 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24464116ns 429526 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24464570ns 429534 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24464741ns 429537 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24465025ns 429542 1a110850 fd5ff06f jal x0, -44 +24465309ns 429547 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24465593ns 429552 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24465991ns 429559 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24466162ns 429562 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24466616ns 429570 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24466787ns 429573 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24467071ns 429578 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24467355ns 429583 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24467639ns 429588 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24468094ns 429596 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24468264ns 429599 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24468549ns 429604 1a110850 fd5ff06f jal x0, -44 +24468833ns 429609 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24469117ns 429614 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24469515ns 429621 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24469685ns 429624 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24470140ns 429632 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24470310ns 429635 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24470595ns 429640 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24470879ns 429645 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24471163ns 429650 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24471618ns 429658 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24471788ns 429661 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24472072ns 429666 1a110850 fd5ff06f jal x0, -44 +24472356ns 429671 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24472641ns 429676 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24473038ns 429683 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24473209ns 429686 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24473664ns 429694 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24473834ns 429697 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24474118ns 429702 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24474402ns 429707 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24474687ns 429712 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24475141ns 429720 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24475312ns 429723 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24475596ns 429728 1a110850 fd5ff06f jal x0, -44 +24475880ns 429733 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24476164ns 429738 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24476562ns 429745 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24476732ns 429748 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24477187ns 429756 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24477358ns 429759 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24477642ns 429764 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24477926ns 429769 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24478210ns 429774 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24478665ns 429782 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24478835ns 429785 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24479119ns 429790 1a110850 fd5ff06f jal x0, -44 +24479404ns 429795 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24479688ns 429800 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24480086ns 429807 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24480256ns 429810 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24480711ns 429818 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24480881ns 429821 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24481165ns 429826 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24481450ns 429831 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24481734ns 429836 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24482188ns 429844 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24482359ns 429847 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24482643ns 429852 1a110850 fd5ff06f jal x0, -44 +24482927ns 429857 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24483211ns 429862 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24483609ns 429869 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24483780ns 429872 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24484234ns 429880 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24484405ns 429883 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24484689ns 429888 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24484973ns 429893 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24485257ns 429898 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24485712ns 429906 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24485882ns 429909 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24486167ns 429914 1a110850 fd5ff06f jal x0, -44 +24486451ns 429919 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24486735ns 429924 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24487133ns 429931 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24487303ns 429934 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24487758ns 429942 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24487928ns 429945 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24488213ns 429950 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24488497ns 429955 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24488781ns 429960 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24489235ns 429968 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24489406ns 429971 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24489690ns 429976 1a110850 fd5ff06f jal x0, -44 +24489974ns 429981 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24490258ns 429986 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24490656ns 429993 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24490827ns 429996 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24491281ns 430004 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24491452ns 430007 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24491736ns 430012 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24492020ns 430017 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24492304ns 430022 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24492759ns 430030 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24492930ns 430033 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24493214ns 430038 1a110850 fd5ff06f jal x0, -44 +24493498ns 430043 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24493782ns 430048 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24494180ns 430055 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24494350ns 430058 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24494805ns 430066 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24494976ns 430069 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24495260ns 430074 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24495544ns 430079 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24495828ns 430084 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24496283ns 430092 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24496453ns 430095 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24496737ns 430100 1a110850 fd5ff06f jal x0, -44 +24497021ns 430105 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24497306ns 430110 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24497703ns 430117 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24497874ns 430120 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24498329ns 430128 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24498499ns 430131 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24498783ns 430136 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24499067ns 430141 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24499352ns 430146 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24499806ns 430154 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24499977ns 430157 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24500261ns 430162 1a110850 fd5ff06f jal x0, -44 +24500545ns 430167 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24500829ns 430172 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24501227ns 430179 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24501398ns 430182 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24501852ns 430190 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24502023ns 430193 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24502307ns 430198 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24502591ns 430203 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24502875ns 430208 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24503330ns 430216 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24503500ns 430219 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24503784ns 430224 1a110850 fd5ff06f jal x0, -44 +24504069ns 430229 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24504353ns 430234 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24504751ns 430241 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24504921ns 430244 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24505376ns 430252 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24505546ns 430255 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24505830ns 430260 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24506115ns 430265 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24506399ns 430270 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24506853ns 430278 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24507024ns 430281 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24507308ns 430286 1a110850 fd5ff06f jal x0, -44 +24507592ns 430291 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24507876ns 430296 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24508274ns 430303 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24508445ns 430306 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24508899ns 430314 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24509070ns 430317 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24509354ns 430322 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24509638ns 430327 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24509922ns 430332 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24510377ns 430340 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24510547ns 430343 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24510832ns 430348 1a110850 fd5ff06f jal x0, -44 +24511116ns 430353 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24511400ns 430358 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24511798ns 430365 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24511968ns 430368 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24512423ns 430376 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24512593ns 430379 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24512878ns 430384 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24513162ns 430389 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24513446ns 430394 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24513901ns 430402 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24514071ns 430405 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24514355ns 430410 1a110850 fd5ff06f jal x0, -44 +24514639ns 430415 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24514924ns 430420 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24515321ns 430427 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24515492ns 430430 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24515947ns 430438 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24516117ns 430441 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24516401ns 430446 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24516685ns 430451 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24516970ns 430456 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24517424ns 430464 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24517595ns 430467 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24517879ns 430472 1a110850 fd5ff06f jal x0, -44 +24518163ns 430477 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24518447ns 430482 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24518845ns 430489 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24519015ns 430492 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24519470ns 430500 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24519641ns 430503 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24519925ns 430508 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24520209ns 430513 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24520493ns 430518 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24520948ns 430526 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24521118ns 430529 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24521402ns 430534 1a110850 fd5ff06f jal x0, -44 +24521687ns 430539 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24521971ns 430544 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24522369ns 430551 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24522539ns 430554 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24522994ns 430562 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24523164ns 430565 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24523448ns 430570 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24523733ns 430575 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24524017ns 430580 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24524471ns 430588 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24524642ns 430591 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24524926ns 430596 1a110850 fd5ff06f jal x0, -44 +24525210ns 430601 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24525494ns 430606 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24525892ns 430613 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24526063ns 430616 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24526517ns 430624 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24526688ns 430627 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24526972ns 430632 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24527256ns 430637 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24527540ns 430642 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24527995ns 430650 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24528165ns 430653 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24528450ns 430658 1a110850 fd5ff06f jal x0, -44 +24528734ns 430663 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24529018ns 430668 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24529416ns 430675 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24529586ns 430678 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24530041ns 430686 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24530211ns 430689 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24530496ns 430694 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24530780ns 430699 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24531064ns 430704 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24531519ns 430712 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24531689ns 430715 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24531973ns 430720 1a110850 fd5ff06f jal x0, -44 +24532257ns 430725 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24532541ns 430730 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24532939ns 430737 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24533110ns 430740 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24533564ns 430748 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24533735ns 430751 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24534019ns 430756 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24534303ns 430761 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24534587ns 430766 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24535042ns 430774 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24535213ns 430777 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24535497ns 430782 1a110850 fd5ff06f jal x0, -44 +24535781ns 430787 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24536065ns 430792 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24536463ns 430799 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24536633ns 430802 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24537088ns 430810 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24537259ns 430813 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24537543ns 430818 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24537827ns 430823 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24538111ns 430828 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24538566ns 430836 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24538736ns 430839 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24539020ns 430844 1a110850 fd5ff06f jal x0, -44 +24539304ns 430849 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24539589ns 430854 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24539986ns 430861 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24540157ns 430864 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24540612ns 430872 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24540782ns 430875 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24541066ns 430880 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24541350ns 430885 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24541635ns 430890 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24542089ns 430898 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24542260ns 430901 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24542544ns 430906 1a110850 fd5ff06f jal x0, -44 +24542828ns 430911 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24543112ns 430916 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24543510ns 430923 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24543681ns 430926 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24544135ns 430934 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24544306ns 430937 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24544590ns 430942 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24544874ns 430947 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24545158ns 430952 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24545613ns 430960 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24545783ns 430963 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24546067ns 430968 1a110850 fd5ff06f jal x0, -44 +24546352ns 430973 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24546636ns 430978 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24547034ns 430985 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24547204ns 430988 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24547659ns 430996 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24547829ns 430999 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24548113ns 431004 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24548398ns 431009 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24548682ns 431014 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24549136ns 431022 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24549307ns 431025 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24549591ns 431030 1a110850 fd5ff06f jal x0, -44 +24549875ns 431035 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24550159ns 431040 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24550557ns 431047 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24550728ns 431050 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24551182ns 431058 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24551353ns 431061 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24551637ns 431066 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24551921ns 431071 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24552205ns 431076 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24552660ns 431084 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24552831ns 431087 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24553115ns 431092 1a110850 fd5ff06f jal x0, -44 +24553399ns 431097 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24553683ns 431102 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24554081ns 431109 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24554251ns 431112 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24554706ns 431120 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24554876ns 431123 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24555161ns 431128 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24555445ns 431133 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24555729ns 431138 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24556184ns 431146 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24556354ns 431149 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24556638ns 431154 1a110850 fd5ff06f jal x0, -44 +24556922ns 431159 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24557207ns 431164 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24557604ns 431171 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24557775ns 431174 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24558230ns 431182 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24558400ns 431185 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24558684ns 431190 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24558968ns 431195 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24559253ns 431200 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24559707ns 431208 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24559878ns 431211 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24560162ns 431216 1a110850 fd5ff06f jal x0, -44 +24560446ns 431221 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24560730ns 431226 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24561128ns 431233 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24561298ns 431236 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24561753ns 431244 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24561924ns 431247 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24562208ns 431252 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24562492ns 431257 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24562776ns 431262 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24563231ns 431270 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24563401ns 431273 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24563685ns 431278 1a110850 fd5ff06f jal x0, -44 +24563970ns 431283 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24564254ns 431288 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24564652ns 431295 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24564822ns 431298 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24565277ns 431306 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24565447ns 431309 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24565731ns 431314 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24566016ns 431319 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24566300ns 431324 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24566754ns 431332 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24566925ns 431335 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24567209ns 431340 1a110850 fd5ff06f jal x0, -44 +24567493ns 431345 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24567777ns 431350 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24568175ns 431357 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24568346ns 431360 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24568800ns 431368 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24568971ns 431371 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24569255ns 431376 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24569539ns 431381 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24569823ns 431386 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24570278ns 431394 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24570448ns 431397 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24570733ns 431402 1a110850 fd5ff06f jal x0, -44 +24571017ns 431407 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24571301ns 431412 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24571699ns 431419 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24571869ns 431422 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24572324ns 431430 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24572494ns 431433 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24572779ns 431438 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24573063ns 431443 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24573347ns 431448 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24573802ns 431456 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24573972ns 431459 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24574256ns 431464 1a110850 fd5ff06f jal x0, -44 +24574540ns 431469 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24574824ns 431474 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24575222ns 431481 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24575393ns 431484 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24575847ns 431492 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24576018ns 431495 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24576302ns 431500 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24576586ns 431505 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24576870ns 431510 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24577325ns 431518 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24577496ns 431521 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24577780ns 431526 1a110850 fd5ff06f jal x0, -44 +24578064ns 431531 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24578348ns 431536 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24578746ns 431543 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24578916ns 431546 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24579371ns 431554 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24579542ns 431557 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24579826ns 431562 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24580110ns 431567 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24580394ns 431572 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24580849ns 431580 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24581019ns 431583 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24581303ns 431588 1a110850 fd5ff06f jal x0, -44 +24581587ns 431593 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24581872ns 431598 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24582269ns 431605 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24582440ns 431608 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24582895ns 431616 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24583065ns 431619 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24583349ns 431624 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24583633ns 431629 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24583918ns 431634 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24584372ns 431642 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24584543ns 431645 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24584827ns 431650 1a110850 fd5ff06f jal x0, -44 +24585111ns 431655 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24585395ns 431660 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24585793ns 431667 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24585964ns 431670 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24586418ns 431678 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24586589ns 431681 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24586873ns 431686 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24587157ns 431691 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24587441ns 431696 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24587896ns 431704 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24588066ns 431707 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24588351ns 431712 1a110850 fd5ff06f jal x0, -44 +24588635ns 431717 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24588919ns 431722 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24589317ns 431729 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24589487ns 431732 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24589942ns 431740 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24590112ns 431743 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24590396ns 431748 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24590681ns 431753 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24590965ns 431758 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24591419ns 431766 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24591590ns 431769 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24591874ns 431774 1a110850 fd5ff06f jal x0, -44 +24592158ns 431779 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24592442ns 431784 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24592840ns 431791 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24593011ns 431794 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24593465ns 431802 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24593636ns 431805 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24593920ns 431810 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24594204ns 431815 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24594488ns 431820 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24594943ns 431828 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24595114ns 431831 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24595398ns 431836 1a110850 fd5ff06f jal x0, -44 +24595682ns 431841 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24595966ns 431846 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24596364ns 431853 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24596534ns 431856 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24596989ns 431864 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24597159ns 431867 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24597444ns 431872 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24597728ns 431877 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24598012ns 431882 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24598467ns 431890 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24598637ns 431893 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24598921ns 431898 1a110850 fd5ff06f jal x0, -44 +24599205ns 431903 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24599490ns 431908 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24599887ns 431915 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24600058ns 431918 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24600513ns 431926 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24600683ns 431929 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24600967ns 431934 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24601251ns 431939 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24601536ns 431944 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24601990ns 431952 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24602161ns 431955 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24602445ns 431960 1a110850 fd5ff06f jal x0, -44 +24602729ns 431965 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24603013ns 431970 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24603411ns 431977 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24603581ns 431980 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24604036ns 431988 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24604207ns 431991 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24604491ns 431996 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24604775ns 432001 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24605059ns 432006 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24605514ns 432014 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24605684ns 432017 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24605968ns 432022 1a110850 fd5ff06f jal x0, -44 +24606253ns 432027 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24606537ns 432032 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24606935ns 432039 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24607105ns 432042 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24607560ns 432050 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24607730ns 432053 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24608014ns 432058 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24608299ns 432063 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24608583ns 432068 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24609037ns 432076 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24609208ns 432079 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24609492ns 432084 1a110850 fd5ff06f jal x0, -44 +24609776ns 432089 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24610060ns 432094 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24610458ns 432101 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24610629ns 432104 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24611083ns 432112 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24611254ns 432115 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24611538ns 432120 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24611822ns 432125 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24612106ns 432130 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24612561ns 432138 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24612731ns 432141 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24613016ns 432146 1a110850 fd5ff06f jal x0, -44 +24613300ns 432151 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24613584ns 432156 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24613982ns 432163 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24614152ns 432166 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24614607ns 432174 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24614777ns 432177 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24615062ns 432182 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24615346ns 432187 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24615630ns 432192 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24616085ns 432200 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24616255ns 432203 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24616539ns 432208 1a110850 fd5ff06f jal x0, -44 +24616823ns 432213 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24617107ns 432218 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24617505ns 432225 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24617676ns 432228 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24618130ns 432236 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24618301ns 432239 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24618585ns 432244 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24618869ns 432249 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24619153ns 432254 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24619608ns 432262 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24619779ns 432265 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24620063ns 432270 1a110850 fd5ff06f jal x0, -44 +24620347ns 432275 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24620631ns 432280 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24621029ns 432287 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24621199ns 432290 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24621654ns 432298 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24621825ns 432301 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24622109ns 432306 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24622393ns 432311 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24622677ns 432316 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24623132ns 432324 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24623302ns 432327 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24623586ns 432332 1a110850 fd5ff06f jal x0, -44 +24623871ns 432337 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24624155ns 432342 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24624552ns 432349 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24624723ns 432352 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24625178ns 432360 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24625348ns 432363 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24625632ns 432368 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24625916ns 432373 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24626201ns 432378 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24626655ns 432386 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24626826ns 432389 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24627110ns 432394 1a110850 fd5ff06f jal x0, -44 +24627394ns 432399 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24627678ns 432404 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24628076ns 432411 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24628247ns 432414 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24628701ns 432422 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24628872ns 432425 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24629156ns 432430 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24629440ns 432435 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24629724ns 432440 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24630179ns 432448 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24630349ns 432451 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24630634ns 432456 1a110850 fd5ff06f jal x0, -44 +24630918ns 432461 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24631202ns 432466 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24631600ns 432473 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24631770ns 432476 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24632225ns 432484 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24632395ns 432487 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24632679ns 432492 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24632964ns 432497 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24633248ns 432502 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24633702ns 432510 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24633873ns 432513 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24634157ns 432518 1a110850 fd5ff06f jal x0, -44 +24634441ns 432523 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24634725ns 432528 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24635123ns 432535 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24635294ns 432538 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24635748ns 432546 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24635919ns 432549 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24636203ns 432554 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24636487ns 432559 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24636771ns 432564 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24637226ns 432572 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24637397ns 432575 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24637681ns 432580 1a110850 fd5ff06f jal x0, -44 +24637965ns 432585 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24638249ns 432590 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24638647ns 432597 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24638817ns 432600 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24639272ns 432608 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24639442ns 432611 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24639727ns 432616 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24640011ns 432621 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24640295ns 432626 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24640750ns 432634 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24640920ns 432637 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24641204ns 432642 1a110850 fd5ff06f jal x0, -44 +24641488ns 432647 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24641773ns 432652 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24642170ns 432659 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24642341ns 432662 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24642796ns 432670 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24642966ns 432673 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24643250ns 432678 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24643534ns 432683 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24643819ns 432688 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24644273ns 432696 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24644444ns 432699 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24644728ns 432704 1a110850 fd5ff06f jal x0, -44 +24645012ns 432709 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24645296ns 432714 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24645694ns 432721 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24645864ns 432724 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24646319ns 432732 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24646490ns 432735 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24646774ns 432740 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24647058ns 432745 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24647342ns 432750 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24647797ns 432758 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24647967ns 432761 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24648251ns 432766 1a110850 fd5ff06f jal x0, -44 +24648536ns 432771 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24648820ns 432776 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24649218ns 432783 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24649388ns 432786 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24649843ns 432794 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24650013ns 432797 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24650297ns 432802 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24650582ns 432807 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24650866ns 432812 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24651320ns 432820 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24651491ns 432823 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24651775ns 432828 1a110850 fd5ff06f jal x0, -44 +24652059ns 432833 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24652343ns 432838 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24652741ns 432845 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24652912ns 432848 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24653366ns 432856 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24653537ns 432859 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24653821ns 432864 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24654105ns 432869 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24654389ns 432874 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24654844ns 432882 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24655014ns 432885 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24655299ns 432890 1a110850 fd5ff06f jal x0, -44 +24655583ns 432895 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24655867ns 432900 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24656265ns 432907 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24656435ns 432910 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24656890ns 432918 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24657060ns 432921 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24657345ns 432926 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24657629ns 432931 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24657913ns 432936 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24658368ns 432944 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24658538ns 432947 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24658822ns 432952 1a110850 fd5ff06f jal x0, -44 +24659106ns 432957 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24659391ns 432962 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24659788ns 432969 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24659959ns 432972 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24660413ns 432980 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24660584ns 432983 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24660868ns 432988 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24661152ns 432993 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24661436ns 432998 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24661891ns 433006 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24662062ns 433009 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24662346ns 433014 1a110850 fd5ff06f jal x0, -44 +24662630ns 433019 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24662914ns 433024 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24663312ns 433031 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24663482ns 433034 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24663937ns 433042 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24664108ns 433045 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24664392ns 433050 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24664676ns 433055 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24664960ns 433060 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24665415ns 433068 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24665585ns 433071 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24665869ns 433076 1a110850 fd5ff06f jal x0, -44 +24666154ns 433081 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24666438ns 433086 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24666835ns 433093 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24667006ns 433096 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24667461ns 433104 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24667631ns 433107 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24667915ns 433112 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24668199ns 433117 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24668484ns 433122 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24668938ns 433130 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24669109ns 433133 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24669393ns 433138 1a110850 fd5ff06f jal x0, -44 +24669677ns 433143 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24669961ns 433148 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24670359ns 433155 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24670530ns 433158 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24670984ns 433166 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24671155ns 433169 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24671439ns 433174 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24671723ns 433179 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24672007ns 433184 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24672462ns 433192 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24672632ns 433195 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24672917ns 433200 1a110850 fd5ff06f jal x0, -44 +24673201ns 433205 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24673485ns 433210 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24673883ns 433217 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24674053ns 433220 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24674508ns 433228 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24674678ns 433231 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24674962ns 433236 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24675247ns 433241 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24675531ns 433246 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24675985ns 433254 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24676156ns 433257 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24676440ns 433262 1a110850 fd5ff06f jal x0, -44 +24676724ns 433267 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24677008ns 433272 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24677406ns 433279 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24677577ns 433282 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24678031ns 433290 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24678202ns 433293 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24678486ns 433298 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24678770ns 433303 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24679054ns 433308 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24679509ns 433316 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24679680ns 433319 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24679964ns 433324 1a110850 fd5ff06f jal x0, -44 +24680248ns 433329 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24680532ns 433334 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24680930ns 433341 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24681100ns 433344 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24681555ns 433352 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24681725ns 433355 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24682010ns 433360 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24682294ns 433365 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24682578ns 433370 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24683033ns 433378 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24683203ns 433381 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24683487ns 433386 1a110850 fd5ff06f jal x0, -44 +24683771ns 433391 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24684056ns 433396 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24684453ns 433403 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24684624ns 433406 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24685079ns 433414 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24685249ns 433417 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24685533ns 433422 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24685817ns 433427 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24686102ns 433432 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24686556ns 433440 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24686727ns 433443 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24687011ns 433448 1a110850 fd5ff06f jal x0, -44 +24687295ns 433453 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24687579ns 433458 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24687977ns 433465 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24688147ns 433468 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24688602ns 433476 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24688773ns 433479 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24689057ns 433484 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24689341ns 433489 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24689625ns 433494 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24690080ns 433502 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24690250ns 433505 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24690534ns 433510 1a110850 fd5ff06f jal x0, -44 +24690819ns 433515 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24691103ns 433520 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24691501ns 433527 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24691671ns 433530 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24692126ns 433538 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24692296ns 433541 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24692580ns 433546 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24692865ns 433551 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24693149ns 433556 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24693603ns 433564 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24693774ns 433567 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24694058ns 433572 1a110850 fd5ff06f jal x0, -44 +24694342ns 433577 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24694626ns 433582 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24695024ns 433589 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24695195ns 433592 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24695649ns 433600 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24695820ns 433603 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24696104ns 433608 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24696388ns 433613 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24696672ns 433618 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24697127ns 433626 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24697297ns 433629 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24697582ns 433634 1a110850 fd5ff06f jal x0, -44 +24697866ns 433639 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24698150ns 433644 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24698548ns 433651 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24698718ns 433654 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24699173ns 433662 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24699343ns 433665 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24699628ns 433670 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24699912ns 433675 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24700196ns 433680 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24700651ns 433688 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24700821ns 433691 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24701105ns 433696 1a110850 fd5ff06f jal x0, -44 +24701389ns 433701 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24701674ns 433706 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24702071ns 433713 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24702242ns 433716 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24702696ns 433724 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24702867ns 433727 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24703151ns 433732 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24703435ns 433737 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24703719ns 433742 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24704174ns 433750 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24704345ns 433753 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24704629ns 433758 1a110850 fd5ff06f jal x0, -44 +24704913ns 433763 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24705197ns 433768 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24705595ns 433775 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24705765ns 433778 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24706220ns 433786 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24706391ns 433789 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24706675ns 433794 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24706959ns 433799 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24707243ns 433804 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24707698ns 433812 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24707868ns 433815 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24708152ns 433820 1a110850 fd5ff06f jal x0, -44 +24708437ns 433825 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24708721ns 433830 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24709119ns 433837 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24709289ns 433840 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24709744ns 433848 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24709914ns 433851 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24710198ns 433856 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24710482ns 433861 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24710767ns 433866 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24711221ns 433874 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24711392ns 433877 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24711676ns 433882 1a110850 fd5ff06f jal x0, -44 +24711960ns 433887 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24712244ns 433892 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24712642ns 433899 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24712813ns 433902 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24713267ns 433910 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24713438ns 433913 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24713722ns 433918 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24714006ns 433923 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24714290ns 433928 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24714745ns 433936 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24714915ns 433939 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24715200ns 433944 1a110850 fd5ff06f jal x0, -44 +24715484ns 433949 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24715768ns 433954 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24716166ns 433961 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24716336ns 433964 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24716791ns 433972 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24716961ns 433975 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24717245ns 433980 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24717530ns 433985 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24717814ns 433990 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24718268ns 433998 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24718439ns 434001 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24718723ns 434006 1a110850 fd5ff06f jal x0, -44 +24719007ns 434011 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24719291ns 434016 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24719689ns 434023 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24719860ns 434026 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24720314ns 434034 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24720485ns 434037 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24720769ns 434042 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24721053ns 434047 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24721337ns 434052 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24721792ns 434060 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24721963ns 434063 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24722247ns 434068 1a110850 fd5ff06f jal x0, -44 +24722531ns 434073 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24722815ns 434078 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24723213ns 434085 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24723383ns 434088 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24723838ns 434096 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24724008ns 434099 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24724293ns 434104 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24724577ns 434109 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24724861ns 434114 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24725316ns 434122 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24725486ns 434125 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24725770ns 434130 1a110850 fd5ff06f jal x0, -44 +24726054ns 434135 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24726339ns 434140 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24726736ns 434147 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24726907ns 434150 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24727362ns 434158 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24727532ns 434161 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24727816ns 434166 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24728100ns 434171 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24728385ns 434176 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24728839ns 434184 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24729010ns 434187 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24729294ns 434192 1a110850 fd5ff06f jal x0, -44 +24729578ns 434197 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24729862ns 434202 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24730260ns 434209 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24730431ns 434212 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24730885ns 434220 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24731056ns 434223 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24731340ns 434228 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24731624ns 434233 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24731908ns 434238 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24732363ns 434246 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24732533ns 434249 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24732817ns 434254 1a110850 fd5ff06f jal x0, -44 +24733102ns 434259 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24733386ns 434264 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24733784ns 434271 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24733954ns 434274 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24734409ns 434282 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24734579ns 434285 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24734863ns 434290 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24735148ns 434295 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24735432ns 434300 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24735886ns 434308 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24736057ns 434311 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24736341ns 434316 1a110850 fd5ff06f jal x0, -44 +24736625ns 434321 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24736909ns 434326 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24737307ns 434333 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24737478ns 434336 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24737932ns 434344 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24738103ns 434347 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24738387ns 434352 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24738671ns 434357 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24738955ns 434362 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24739410ns 434370 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24739580ns 434373 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24739865ns 434378 1a110850 fd5ff06f jal x0, -44 +24740149ns 434383 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24740433ns 434388 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24740831ns 434395 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24741001ns 434398 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24741456ns 434406 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24741626ns 434409 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24741911ns 434414 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24742195ns 434419 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24742479ns 434424 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24742934ns 434432 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24743104ns 434435 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24743388ns 434440 1a110850 fd5ff06f jal x0, -44 +24743672ns 434445 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24743957ns 434450 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24744354ns 434457 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24744525ns 434460 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24744979ns 434468 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24745150ns 434471 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24745434ns 434476 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24745718ns 434481 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24746002ns 434486 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24746457ns 434494 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24746628ns 434497 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24746912ns 434502 1a110850 fd5ff06f jal x0, -44 +24747196ns 434507 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24747480ns 434512 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24747878ns 434519 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24748048ns 434522 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24748503ns 434530 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24748674ns 434533 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24748958ns 434538 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24749242ns 434543 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24749526ns 434548 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24749981ns 434556 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24750151ns 434559 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24750435ns 434564 1a110850 fd5ff06f jal x0, -44 +24750720ns 434569 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24751004ns 434574 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24751402ns 434581 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24751572ns 434584 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24752027ns 434592 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24752197ns 434595 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24752481ns 434600 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24752765ns 434605 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24753050ns 434610 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24753504ns 434618 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24753675ns 434621 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24753959ns 434626 1a110850 fd5ff06f jal x0, -44 +24754243ns 434631 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24754527ns 434636 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24754925ns 434643 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24755096ns 434646 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24755550ns 434654 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24755721ns 434657 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24756005ns 434662 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24756289ns 434667 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24756573ns 434672 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24757028ns 434680 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24757198ns 434683 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24757483ns 434688 1a110850 fd5ff06f jal x0, -44 +24757767ns 434693 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24758051ns 434698 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24758449ns 434705 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24758619ns 434708 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24759074ns 434716 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24759244ns 434719 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24759528ns 434724 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24759813ns 434729 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24760097ns 434734 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24760551ns 434742 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24760722ns 434745 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24761006ns 434750 1a110850 fd5ff06f jal x0, -44 +24761290ns 434755 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24761574ns 434760 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24761972ns 434767 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24762143ns 434770 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24762597ns 434778 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24762768ns 434781 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24763052ns 434786 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24763336ns 434791 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24763620ns 434796 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24764075ns 434804 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24764246ns 434807 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24764530ns 434812 1a110850 fd5ff06f jal x0, -44 +24764814ns 434817 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24765098ns 434822 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24765496ns 434829 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24765666ns 434832 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24766121ns 434840 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24766291ns 434843 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24766576ns 434848 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24766860ns 434853 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24767144ns 434858 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24767599ns 434866 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24767769ns 434869 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24768053ns 434874 1a110850 fd5ff06f jal x0, -44 +24768337ns 434879 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24768622ns 434884 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24769019ns 434891 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24769190ns 434894 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24769645ns 434902 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24769815ns 434905 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24770099ns 434910 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24770383ns 434915 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24770668ns 434920 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24771122ns 434928 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24771293ns 434931 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24771577ns 434936 1a110850 fd5ff06f jal x0, -44 +24771861ns 434941 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24772145ns 434946 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24772543ns 434953 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24772714ns 434956 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24773168ns 434964 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24773339ns 434967 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24773623ns 434972 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24773907ns 434977 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24774191ns 434982 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24774646ns 434990 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24774816ns 434993 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24775100ns 434998 1a110850 fd5ff06f jal x0, -44 +24775385ns 435003 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24775669ns 435008 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24776067ns 435015 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24776237ns 435018 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24776692ns 435026 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24776862ns 435029 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24777146ns 435034 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24777431ns 435039 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24777715ns 435044 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24778169ns 435052 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24778340ns 435055 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24778624ns 435060 1a110850 fd5ff06f jal x0, -44 +24778908ns 435065 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24779192ns 435070 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24779590ns 435077 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24779761ns 435080 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24780215ns 435088 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24780386ns 435091 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24780670ns 435096 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24780954ns 435101 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24781238ns 435106 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24781693ns 435114 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24781863ns 435117 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24782148ns 435122 1a110850 fd5ff06f jal x0, -44 +24782432ns 435127 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24782716ns 435132 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24783114ns 435139 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24783284ns 435142 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24783739ns 435150 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24783909ns 435153 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24784194ns 435158 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24784478ns 435163 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24784762ns 435168 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24785217ns 435176 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24785387ns 435179 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24785671ns 435184 1a110850 fd5ff06f jal x0, -44 +24785955ns 435189 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24786240ns 435194 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24786637ns 435201 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24786808ns 435204 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24787263ns 435212 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24787433ns 435215 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24787717ns 435220 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24788001ns 435225 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24788285ns 435230 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24788740ns 435238 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24788911ns 435241 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24789195ns 435246 1a110850 fd5ff06f jal x0, -44 +24789479ns 435251 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24789763ns 435256 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24790161ns 435263 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24790331ns 435266 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24790786ns 435274 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24790957ns 435277 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24791241ns 435282 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24791525ns 435287 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24791809ns 435292 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24792264ns 435300 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24792434ns 435303 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24792718ns 435308 1a110850 fd5ff06f jal x0, -44 +24793003ns 435313 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24793287ns 435318 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24793685ns 435325 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24793855ns 435328 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24794310ns 435336 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24794480ns 435339 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24794764ns 435344 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24795048ns 435349 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24795333ns 435354 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24795787ns 435362 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24795958ns 435365 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24796242ns 435370 1a110850 fd5ff06f jal x0, -44 +24796526ns 435375 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24796810ns 435380 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24797208ns 435387 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24797379ns 435390 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24797833ns 435398 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24798004ns 435401 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24798288ns 435406 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24798572ns 435411 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24798856ns 435416 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24799311ns 435424 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24799481ns 435427 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24799766ns 435432 1a110850 fd5ff06f jal x0, -44 +24800050ns 435437 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24800334ns 435442 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24800732ns 435449 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24800902ns 435452 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24801357ns 435460 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24801527ns 435463 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24801811ns 435468 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24802096ns 435473 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24802380ns 435478 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24802834ns 435486 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24803005ns 435489 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24803289ns 435494 1a110850 fd5ff06f jal x0, -44 +24803573ns 435499 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24803857ns 435504 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24804255ns 435511 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24804426ns 435514 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24804880ns 435522 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24805051ns 435525 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24805335ns 435530 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24805619ns 435535 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24805903ns 435540 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24806358ns 435548 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24806529ns 435551 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24806813ns 435556 1a110850 fd5ff06f jal x0, -44 +24807097ns 435561 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24807381ns 435566 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24807779ns 435573 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24807949ns 435576 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24808404ns 435584 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24808575ns 435587 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24808859ns 435592 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24809143ns 435597 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24809427ns 435602 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24809882ns 435610 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24810052ns 435613 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24810336ns 435618 1a110850 fd5ff06f jal x0, -44 +24810620ns 435623 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24810905ns 435628 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24811302ns 435635 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24811473ns 435638 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24811928ns 435646 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24812098ns 435649 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24812382ns 435654 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24812666ns 435659 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24812951ns 435664 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24813405ns 435672 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24813576ns 435675 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24813860ns 435680 1a110850 fd5ff06f jal x0, -44 +24814144ns 435685 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24814428ns 435690 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24814826ns 435697 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24814997ns 435700 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24815451ns 435708 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24815622ns 435711 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24815906ns 435716 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24816190ns 435721 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24816474ns 435726 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24816929ns 435734 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24817099ns 435737 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24817383ns 435742 1a110850 fd5ff06f jal x0, -44 +24817668ns 435747 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24817952ns 435752 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24818350ns 435759 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24818520ns 435762 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24818975ns 435770 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24819145ns 435773 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24819429ns 435778 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24819714ns 435783 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24819998ns 435788 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24820452ns 435796 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24820623ns 435799 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24820907ns 435804 1a110850 fd5ff06f jal x0, -44 +24821191ns 435809 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24821475ns 435814 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24821873ns 435821 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24822044ns 435824 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24822498ns 435832 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24822669ns 435835 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24822953ns 435840 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24823237ns 435845 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24823521ns 435850 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24823976ns 435858 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24824146ns 435861 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24824431ns 435866 1a110850 fd5ff06f jal x0, -44 +24824715ns 435871 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24824999ns 435876 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24825397ns 435883 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24825567ns 435886 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24826022ns 435894 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24826192ns 435897 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24826477ns 435902 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24826761ns 435907 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24827045ns 435912 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24827500ns 435920 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24827670ns 435923 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24827954ns 435928 1a110850 fd5ff06f jal x0, -44 +24828238ns 435933 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24828523ns 435938 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24828920ns 435945 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24829091ns 435948 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24829546ns 435956 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24829716ns 435959 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24830000ns 435964 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24830284ns 435969 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24830568ns 435974 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24831023ns 435982 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24831194ns 435985 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24831478ns 435990 1a110850 fd5ff06f jal x0, -44 +24831762ns 435995 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24832046ns 436000 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24832444ns 436007 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24832614ns 436010 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24833069ns 436018 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24833240ns 436021 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24833524ns 436026 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24833808ns 436031 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24834092ns 436036 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24834547ns 436044 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24834717ns 436047 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24835001ns 436052 1a110850 fd5ff06f jal x0, -44 +24835286ns 436057 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24835570ns 436062 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24835968ns 436069 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24836138ns 436072 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24836593ns 436080 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24836763ns 436083 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24837047ns 436088 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24837331ns 436093 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24837616ns 436098 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24838070ns 436106 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24838241ns 436109 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24838525ns 436114 1a110850 fd5ff06f jal x0, -44 +24838809ns 436119 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24839093ns 436124 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24839491ns 436131 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24839662ns 436134 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24840116ns 436142 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24840287ns 436145 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24840571ns 436150 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24840855ns 436155 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24841139ns 436160 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24841594ns 436168 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24841764ns 436171 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24842049ns 436176 1a110850 fd5ff06f jal x0, -44 +24842333ns 436181 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24842617ns 436186 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24843015ns 436193 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24843185ns 436196 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24843640ns 436204 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24843810ns 436207 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24844095ns 436212 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24844379ns 436217 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24844663ns 436222 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24845117ns 436230 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24845288ns 436233 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24845572ns 436238 1a110850 fd5ff06f jal x0, -44 +24845856ns 436243 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24846140ns 436248 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24846538ns 436255 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24846709ns 436258 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24847163ns 436266 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24847334ns 436269 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24847618ns 436274 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24847902ns 436279 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24848186ns 436284 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24848641ns 436292 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24848812ns 436295 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24849096ns 436300 1a110850 fd5ff06f jal x0, -44 +24849380ns 436305 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24849664ns 436310 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24850062ns 436317 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24850232ns 436320 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24850687ns 436328 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24850858ns 436331 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24851142ns 436336 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24851426ns 436341 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24851710ns 436346 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24852165ns 436354 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24852335ns 436357 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24852619ns 436362 1a110850 fd5ff06f jal x0, -44 +24852903ns 436367 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24853188ns 436372 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24853585ns 436379 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24853756ns 436382 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24854211ns 436390 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24854381ns 436393 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24854665ns 436398 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24854949ns 436403 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24855234ns 436408 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24855688ns 436416 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24855859ns 436419 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24856143ns 436424 1a110850 fd5ff06f jal x0, -44 +24856427ns 436429 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24856711ns 436434 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24857109ns 436441 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24857280ns 436444 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24857734ns 436452 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24857905ns 436455 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24858189ns 436460 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24858473ns 436465 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24858757ns 436470 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24859212ns 436478 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24859382ns 436481 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24859666ns 436486 1a110850 fd5ff06f jal x0, -44 +24859951ns 436491 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24860235ns 436496 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24860633ns 436503 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24860803ns 436506 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24861258ns 436514 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24861428ns 436517 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24861712ns 436522 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24861997ns 436527 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24862281ns 436532 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24862735ns 436540 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24862906ns 436543 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24863190ns 436548 1a110850 fd5ff06f jal x0, -44 +24863474ns 436553 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24863758ns 436558 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24864156ns 436565 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24864327ns 436568 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24864781ns 436576 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24864952ns 436579 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24865236ns 436584 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24865520ns 436589 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24865804ns 436594 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24866259ns 436602 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24866429ns 436605 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24866714ns 436610 1a110850 fd5ff06f jal x0, -44 +24866998ns 436615 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24867282ns 436620 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24867680ns 436627 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24867850ns 436630 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24868305ns 436638 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24868475ns 436641 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24868760ns 436646 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24869044ns 436651 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24869328ns 436656 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24869783ns 436664 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24869953ns 436667 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24870237ns 436672 1a110850 fd5ff06f jal x0, -44 +24870521ns 436677 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24870806ns 436682 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24871203ns 436689 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24871374ns 436692 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24871829ns 436700 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24871999ns 436703 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24872283ns 436708 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24872567ns 436713 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24872851ns 436718 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24873306ns 436726 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24873477ns 436729 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24873761ns 436734 1a110850 fd5ff06f jal x0, -44 +24874045ns 436739 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24874329ns 436744 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24874727ns 436751 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24874897ns 436754 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24875352ns 436762 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24875523ns 436765 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24875807ns 436770 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24876091ns 436775 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24876375ns 436780 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24876830ns 436788 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24877000ns 436791 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24877284ns 436796 1a110850 fd5ff06f jal x0, -44 +24877569ns 436801 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24877853ns 436806 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24878251ns 436813 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24878421ns 436816 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24878876ns 436824 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24879046ns 436827 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24879330ns 436832 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24879615ns 436837 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24879899ns 436842 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24880353ns 436850 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24880524ns 436853 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24880808ns 436858 1a110850 fd5ff06f jal x0, -44 +24881092ns 436863 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24881376ns 436868 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24881774ns 436875 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24881945ns 436878 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24882399ns 436886 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24882570ns 436889 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24882854ns 436894 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24883138ns 436899 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24883422ns 436904 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24883877ns 436912 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24884047ns 436915 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24884332ns 436920 1a110850 fd5ff06f jal x0, -44 +24884616ns 436925 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24884900ns 436930 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24885298ns 436937 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24885468ns 436940 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24885923ns 436948 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24886093ns 436951 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24886378ns 436956 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24886662ns 436961 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24886946ns 436966 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24887400ns 436974 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24887571ns 436977 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24887855ns 436982 1a110850 fd5ff06f jal x0, -44 +24888139ns 436987 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24888423ns 436992 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24888821ns 436999 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24888992ns 437002 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24889446ns 437010 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24889617ns 437013 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24889901ns 437018 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24890185ns 437023 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24890469ns 437028 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24890924ns 437036 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24891095ns 437039 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24891379ns 437044 1a110850 fd5ff06f jal x0, -44 +24891663ns 437049 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24891947ns 437054 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24892345ns 437061 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24892515ns 437064 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24892970ns 437072 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24893141ns 437075 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24893425ns 437080 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24893709ns 437085 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24893993ns 437090 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24894448ns 437098 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24894618ns 437101 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24894902ns 437106 1a110850 fd5ff06f jal x0, -44 +24895186ns 437111 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24895471ns 437116 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24895868ns 437123 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24896039ns 437126 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24896494ns 437134 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24896664ns 437137 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24896948ns 437142 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24897232ns 437147 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24897517ns 437152 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24897971ns 437160 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24898142ns 437163 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24898426ns 437168 1a110850 fd5ff06f jal x0, -44 +24898710ns 437173 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24898994ns 437178 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24899392ns 437185 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24899563ns 437188 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24900017ns 437196 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24900188ns 437199 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24900472ns 437204 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24900756ns 437209 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24901040ns 437214 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24901495ns 437222 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24901665ns 437225 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24901949ns 437230 1a110850 fd5ff06f jal x0, -44 +24902234ns 437235 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24902518ns 437240 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24902916ns 437247 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24903086ns 437250 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24903541ns 437258 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24903711ns 437261 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24903995ns 437266 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24904280ns 437271 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24904564ns 437276 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24905018ns 437284 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24905189ns 437287 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24905473ns 437292 1a110850 fd5ff06f jal x0, -44 +24905757ns 437297 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24906041ns 437302 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24906439ns 437309 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24906610ns 437312 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24907064ns 437320 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24907235ns 437323 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24907519ns 437328 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24907803ns 437333 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24908087ns 437338 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24908542ns 437346 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24908712ns 437349 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24908997ns 437354 1a110850 fd5ff06f jal x0, -44 +24909281ns 437359 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24909565ns 437364 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24909963ns 437371 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24910133ns 437374 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24910588ns 437382 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24910758ns 437385 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24911043ns 437390 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24911327ns 437395 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24911611ns 437400 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24912066ns 437408 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24912236ns 437411 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24912520ns 437416 1a110850 fd5ff06f jal x0, -44 +24912804ns 437421 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24913089ns 437426 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24913486ns 437433 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24913657ns 437436 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24914112ns 437444 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24914282ns 437447 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24914566ns 437452 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24914850ns 437457 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24915135ns 437462 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24915589ns 437470 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24915760ns 437473 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24916044ns 437478 1a110850 fd5ff06f jal x0, -44 +24916328ns 437483 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24916612ns 437488 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24917010ns 437495 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24917180ns 437498 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24917635ns 437506 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24917806ns 437509 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24918090ns 437514 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24918374ns 437519 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24918658ns 437524 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24919113ns 437532 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24919283ns 437535 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24919567ns 437540 1a110850 fd5ff06f jal x0, -44 +24919852ns 437545 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24920136ns 437550 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24920534ns 437557 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24920704ns 437560 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24921159ns 437568 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24921329ns 437571 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24921613ns 437576 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24921898ns 437581 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24922182ns 437586 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24922636ns 437594 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24922807ns 437597 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24923091ns 437602 1a110850 fd5ff06f jal x0, -44 +24923375ns 437607 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24923659ns 437612 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24924057ns 437619 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24924228ns 437622 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24924682ns 437630 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24924853ns 437633 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24925137ns 437638 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24925421ns 437643 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24925705ns 437648 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24926160ns 437656 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24926330ns 437659 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24926615ns 437664 1a110850 fd5ff06f jal x0, -44 +24926899ns 437669 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24927183ns 437674 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24927581ns 437681 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24927751ns 437684 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24928206ns 437692 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24928376ns 437695 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24928661ns 437700 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24928945ns 437705 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24929229ns 437710 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24929683ns 437718 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24929854ns 437721 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24930138ns 437726 1a110850 fd5ff06f jal x0, -44 +24930422ns 437731 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24930706ns 437736 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24931104ns 437743 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24931275ns 437746 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24931729ns 437754 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24931900ns 437757 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24932184ns 437762 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24932468ns 437767 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24932752ns 437772 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24933207ns 437780 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24933378ns 437783 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24933662ns 437788 1a110850 fd5ff06f jal x0, -44 +24933946ns 437793 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24934230ns 437798 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24934628ns 437805 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24934798ns 437808 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24935253ns 437816 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24935424ns 437819 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24935708ns 437824 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24935992ns 437829 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24936276ns 437834 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24936731ns 437842 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24936901ns 437845 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24937185ns 437850 1a110850 fd5ff06f jal x0, -44 +24937469ns 437855 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24937754ns 437860 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24938151ns 437867 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24938322ns 437870 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24938777ns 437878 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24938947ns 437881 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24939231ns 437886 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24939515ns 437891 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24939800ns 437896 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24940254ns 437904 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24940425ns 437907 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24940709ns 437912 1a110850 fd5ff06f jal x0, -44 +24940993ns 437917 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24941277ns 437922 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24941675ns 437929 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24941846ns 437932 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24942300ns 437940 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24942471ns 437943 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24942755ns 437948 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24943039ns 437953 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24943323ns 437958 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24943778ns 437966 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24943948ns 437969 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24944232ns 437974 1a110850 fd5ff06f jal x0, -44 +24944517ns 437979 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24944801ns 437984 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24945199ns 437991 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24945369ns 437994 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24945824ns 438002 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24945994ns 438005 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24946278ns 438010 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24946563ns 438015 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24946847ns 438020 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24947301ns 438028 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24947472ns 438031 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24947756ns 438036 1a110850 fd5ff06f jal x0, -44 +24948040ns 438041 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24948324ns 438046 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24948722ns 438053 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24948893ns 438056 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24949347ns 438064 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24949518ns 438067 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24949802ns 438072 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24950086ns 438077 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24950370ns 438082 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24950825ns 438090 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24950995ns 438093 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24951280ns 438098 1a110850 fd5ff06f jal x0, -44 +24951564ns 438103 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24951848ns 438108 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24952246ns 438115 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24952416ns 438118 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24952871ns 438126 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24953041ns 438129 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24953326ns 438134 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24953610ns 438139 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24953894ns 438144 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24954349ns 438152 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24954519ns 438155 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24954803ns 438160 1a110850 fd5ff06f jal x0, -44 +24955087ns 438165 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24955372ns 438170 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24955769ns 438177 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24955940ns 438180 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24956395ns 438188 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24956565ns 438191 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24956849ns 438196 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24957133ns 438201 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24957418ns 438206 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24957872ns 438214 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24958043ns 438217 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24958327ns 438222 1a110850 fd5ff06f jal x0, -44 +24958611ns 438227 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24958895ns 438232 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24959293ns 438239 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24959463ns 438242 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24959918ns 438250 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24960089ns 438253 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24960373ns 438258 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24960657ns 438263 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24960941ns 438268 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24961396ns 438276 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24961566ns 438279 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24961850ns 438284 1a110850 fd5ff06f jal x0, -44 +24962135ns 438289 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24962419ns 438294 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24962817ns 438301 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24962987ns 438304 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24963442ns 438312 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24963612ns 438315 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24963896ns 438320 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24964181ns 438325 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24964465ns 438330 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24964919ns 438338 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24965090ns 438341 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24965374ns 438346 1a110850 fd5ff06f jal x0, -44 +24965658ns 438351 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24965942ns 438356 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24966340ns 438363 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24966511ns 438366 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24966965ns 438374 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24967136ns 438377 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24967420ns 438382 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24967704ns 438387 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24967988ns 438392 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24968443ns 438400 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24968613ns 438403 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24968898ns 438408 1a110850 fd5ff06f jal x0, -44 +24969182ns 438413 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24969466ns 438418 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24969864ns 438425 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24970034ns 438428 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24970489ns 438436 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24970659ns 438439 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24970944ns 438444 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24971228ns 438449 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24971512ns 438454 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24971967ns 438462 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24972137ns 438465 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24972421ns 438470 1a110850 fd5ff06f jal x0, -44 +24972705ns 438475 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24972989ns 438480 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24973387ns 438487 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24973558ns 438490 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24974012ns 438498 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24974183ns 438501 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24974467ns 438506 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24974751ns 438511 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24975035ns 438516 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24975490ns 438524 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24975661ns 438527 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24975945ns 438532 1a110850 fd5ff06f jal x0, -44 +24976229ns 438537 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24976513ns 438542 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24976911ns 438549 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24977081ns 438552 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24977536ns 438560 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24977707ns 438563 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24977991ns 438568 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24978275ns 438573 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24978559ns 438578 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24979014ns 438586 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24979184ns 438589 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24979468ns 438594 1a110850 fd5ff06f jal x0, -44 +24979752ns 438599 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24980037ns 438604 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24980434ns 438611 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24980605ns 438614 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24981060ns 438622 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24981230ns 438625 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24981514ns 438630 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24981798ns 438635 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24982083ns 438640 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24982537ns 438648 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24982708ns 438651 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24982992ns 438656 1a110850 fd5ff06f jal x0, -44 +24983276ns 438661 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24983560ns 438666 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24983958ns 438673 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24984129ns 438676 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24984583ns 438684 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24984754ns 438687 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24985038ns 438692 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24985322ns 438697 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24985606ns 438702 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24986061ns 438710 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24986231ns 438713 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24986515ns 438718 1a110850 fd5ff06f jal x0, -44 +24986800ns 438723 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24987084ns 438728 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24987482ns 438735 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24987652ns 438738 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24988107ns 438746 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24988277ns 438749 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24988561ns 438754 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24988846ns 438759 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24989130ns 438764 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24989584ns 438772 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24989755ns 438775 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24990039ns 438780 1a110850 fd5ff06f jal x0, -44 +24990323ns 438785 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24990607ns 438790 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24991005ns 438797 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24991176ns 438800 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24991630ns 438808 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24991801ns 438811 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24992085ns 438816 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24992369ns 438821 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24992653ns 438826 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24993108ns 438834 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24993279ns 438837 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24993563ns 438842 1a110850 fd5ff06f jal x0, -44 +24993847ns 438847 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24994131ns 438852 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24994529ns 438859 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24994699ns 438862 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24995154ns 438870 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24995324ns 438873 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24995609ns 438878 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24995893ns 438883 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24996177ns 438888 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24996632ns 438896 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +24996802ns 438899 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +24997086ns 438904 1a110850 fd5ff06f jal x0, -44 +24997370ns 438909 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24997655ns 438914 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +24998052ns 438921 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24998223ns 438924 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +24998678ns 438932 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +24998848ns 438935 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +24999132ns 438940 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +24999416ns 438945 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +24999701ns 438950 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25000155ns 438958 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25000326ns 438961 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25000610ns 438966 1a110850 fd5ff06f jal x0, -44 +25000894ns 438971 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25001178ns 438976 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25001576ns 438983 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25001746ns 438986 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25002201ns 438994 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25002372ns 438997 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25002656ns 439002 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25002940ns 439007 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25003224ns 439012 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25003679ns 439020 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25003849ns 439023 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25004133ns 439028 1a110850 fd5ff06f jal x0, -44 +25004418ns 439033 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25004702ns 439038 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25005100ns 439045 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25005270ns 439048 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25005725ns 439056 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25005895ns 439059 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25006179ns 439064 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25006464ns 439069 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25006748ns 439074 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25007202ns 439082 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25007373ns 439085 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25007657ns 439090 1a110850 fd5ff06f jal x0, -44 +25007941ns 439095 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25008225ns 439100 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25008623ns 439107 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25008794ns 439110 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25009248ns 439118 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25009419ns 439121 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25009703ns 439126 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25009987ns 439131 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25010271ns 439136 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25010726ns 439144 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25010896ns 439147 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25011181ns 439152 1a110850 fd5ff06f jal x0, -44 +25011465ns 439157 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25011749ns 439162 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25012147ns 439169 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25012317ns 439172 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25012772ns 439180 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25012942ns 439183 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25013227ns 439188 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25013511ns 439193 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25013795ns 439198 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25014250ns 439206 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25014420ns 439209 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25014704ns 439214 1a110850 fd5ff06f jal x0, -44 +25014988ns 439219 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25015272ns 439224 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25015670ns 439231 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25015841ns 439234 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25016295ns 439242 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25016466ns 439245 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25016750ns 439250 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25017034ns 439255 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25017318ns 439260 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25017773ns 439268 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25017944ns 439271 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25018228ns 439276 1a110850 fd5ff06f jal x0, -44 +25018512ns 439281 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25018796ns 439286 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25019194ns 439293 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25019364ns 439296 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25019819ns 439304 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25019990ns 439307 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25020274ns 439312 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25020558ns 439317 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25020842ns 439322 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25021297ns 439330 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25021467ns 439333 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25021751ns 439338 1a110850 fd5ff06f jal x0, -44 +25022035ns 439343 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25022320ns 439348 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25022717ns 439355 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25022888ns 439358 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25023343ns 439366 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25023513ns 439369 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25023797ns 439374 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25024081ns 439379 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25024366ns 439384 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25024820ns 439392 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25024991ns 439395 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25025275ns 439400 1a110850 fd5ff06f jal x0, -44 +25025559ns 439405 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25025843ns 439410 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25026241ns 439417 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25026412ns 439420 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25026866ns 439428 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25027037ns 439431 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25027321ns 439436 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25027605ns 439441 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25027889ns 439446 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25028344ns 439454 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25028514ns 439457 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25028799ns 439462 1a110850 fd5ff06f jal x0, -44 +25029083ns 439467 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25029367ns 439472 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25029765ns 439479 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25029935ns 439482 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25030390ns 439490 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25030560ns 439493 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25030844ns 439498 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25031129ns 439503 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25031413ns 439508 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25031867ns 439516 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25032038ns 439519 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25032322ns 439524 1a110850 fd5ff06f jal x0, -44 +25032606ns 439529 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25032890ns 439534 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25033288ns 439541 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25033459ns 439544 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25033913ns 439552 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25034084ns 439555 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25034368ns 439560 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25034652ns 439565 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25034936ns 439570 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25035391ns 439578 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25035562ns 439581 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25035846ns 439586 1a110850 fd5ff06f jal x0, -44 +25036130ns 439591 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25036414ns 439596 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25036812ns 439603 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25036982ns 439606 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25037437ns 439614 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25037607ns 439617 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25037892ns 439622 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25038176ns 439627 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25038460ns 439632 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25038915ns 439640 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25039085ns 439643 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25039369ns 439648 1a110850 fd5ff06f jal x0, -44 +25039653ns 439653 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25039938ns 439658 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25040335ns 439665 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25040506ns 439668 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25040961ns 439676 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25041131ns 439679 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25041415ns 439684 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25041699ns 439689 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25041984ns 439694 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25042438ns 439702 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25042609ns 439705 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25042893ns 439710 1a110850 fd5ff06f jal x0, -44 +25043177ns 439715 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25043461ns 439720 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25043859ns 439727 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25044029ns 439730 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25044484ns 439738 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25044655ns 439741 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25044939ns 439746 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25045223ns 439751 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25045507ns 439756 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25045962ns 439764 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25046132ns 439767 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25046416ns 439772 1a110850 fd5ff06f jal x0, -44 +25046701ns 439777 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25046985ns 439782 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25047383ns 439789 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25047553ns 439792 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25048008ns 439800 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25048178ns 439803 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25048462ns 439808 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25048747ns 439813 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25049031ns 439818 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25049485ns 439826 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25049656ns 439829 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25049940ns 439834 1a110850 fd5ff06f jal x0, -44 +25050224ns 439839 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25050508ns 439844 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25050906ns 439851 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25051077ns 439854 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25051531ns 439862 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25051702ns 439865 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25051986ns 439870 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25052270ns 439875 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25052554ns 439880 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25053009ns 439888 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25053179ns 439891 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25053464ns 439896 1a110850 fd5ff06f jal x0, -44 +25053748ns 439901 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25054032ns 439906 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25054430ns 439913 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25054600ns 439916 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25055055ns 439924 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25055225ns 439927 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25055510ns 439932 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25055794ns 439937 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25056078ns 439942 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25056533ns 439950 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25056703ns 439953 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25056987ns 439958 1a110850 fd5ff06f jal x0, -44 +25057271ns 439963 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25057555ns 439968 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25057953ns 439975 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25058124ns 439978 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25058578ns 439986 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25058749ns 439989 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25059033ns 439994 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25059317ns 439999 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25059601ns 440004 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25060056ns 440012 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25060227ns 440015 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25060511ns 440020 1a110850 fd5ff06f jal x0, -44 +25060795ns 440025 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25061079ns 440030 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25061477ns 440037 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25061647ns 440040 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25062102ns 440048 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25062273ns 440051 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25062557ns 440056 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25062841ns 440061 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25063125ns 440066 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25063580ns 440074 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25063750ns 440077 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25064034ns 440082 1a110850 fd5ff06f jal x0, -44 +25064319ns 440087 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25064603ns 440092 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25065000ns 440099 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25065171ns 440102 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25065626ns 440110 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25065796ns 440113 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25066080ns 440118 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25066364ns 440123 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25066649ns 440128 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25067103ns 440136 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25067274ns 440139 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25067558ns 440144 1a110850 fd5ff06f jal x0, -44 +25067842ns 440149 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25068126ns 440154 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25068524ns 440161 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25068695ns 440164 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25069149ns 440172 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25069320ns 440175 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25069604ns 440180 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25069888ns 440185 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25070172ns 440190 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25070627ns 440198 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25070797ns 440201 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25071082ns 440206 1a110850 fd5ff06f jal x0, -44 +25071366ns 440211 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25071650ns 440216 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25072048ns 440223 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25072218ns 440226 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25072673ns 440234 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25072843ns 440237 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25073127ns 440242 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25073412ns 440247 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25073696ns 440252 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25074150ns 440260 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25074321ns 440263 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25074605ns 440268 1a110850 fd5ff06f jal x0, -44 +25074889ns 440273 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25075173ns 440278 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25075571ns 440285 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25075742ns 440288 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25076196ns 440296 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25076367ns 440299 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25076651ns 440304 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25076935ns 440309 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25077219ns 440314 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25077674ns 440322 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25077845ns 440325 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25078129ns 440330 1a110850 fd5ff06f jal x0, -44 +25078413ns 440335 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25078697ns 440340 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25079095ns 440347 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25079265ns 440350 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25079720ns 440358 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25079890ns 440361 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25080175ns 440366 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25080459ns 440371 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25080743ns 440376 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25081198ns 440384 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25081368ns 440387 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25081652ns 440392 1a110850 fd5ff06f jal x0, -44 +25081936ns 440397 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25082221ns 440402 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25082618ns 440409 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25082789ns 440412 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25083244ns 440420 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25083414ns 440423 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25083698ns 440428 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25083982ns 440433 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25084267ns 440438 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25084721ns 440446 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25084892ns 440449 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25085176ns 440454 1a110850 fd5ff06f jal x0, -44 +25085460ns 440459 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25085744ns 440464 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25086142ns 440471 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25086312ns 440474 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25086767ns 440482 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25086938ns 440485 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25087222ns 440490 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25087506ns 440495 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25087790ns 440500 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25088245ns 440508 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25088415ns 440511 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25088699ns 440516 1a110850 fd5ff06f jal x0, -44 +25088984ns 440521 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25089268ns 440526 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25089666ns 440533 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25089836ns 440536 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25090291ns 440544 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25090461ns 440547 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25090745ns 440552 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25091030ns 440557 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25091314ns 440562 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25091768ns 440570 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25091939ns 440573 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25092223ns 440578 1a110850 fd5ff06f jal x0, -44 +25092507ns 440583 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25092791ns 440588 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25093189ns 440595 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25093360ns 440598 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25093814ns 440606 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25093985ns 440609 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25094269ns 440614 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25094553ns 440619 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25094837ns 440624 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25095292ns 440632 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25095462ns 440635 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25095747ns 440640 1a110850 fd5ff06f jal x0, -44 +25096031ns 440645 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25096315ns 440650 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25096713ns 440657 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25096883ns 440660 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25097338ns 440668 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25097508ns 440671 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25097793ns 440676 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25098077ns 440681 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25098361ns 440686 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25098816ns 440694 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25098986ns 440697 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25099270ns 440702 1a110850 fd5ff06f jal x0, -44 +25099554ns 440707 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25099839ns 440712 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25100236ns 440719 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25100407ns 440722 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25100861ns 440730 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25101032ns 440733 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25101316ns 440738 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25101600ns 440743 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25101884ns 440748 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25102339ns 440756 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25102510ns 440759 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25102794ns 440764 1a110850 fd5ff06f jal x0, -44 +25103078ns 440769 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25103362ns 440774 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25103760ns 440781 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25103930ns 440784 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25104385ns 440792 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25104556ns 440795 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25104840ns 440800 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25105124ns 440805 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25105408ns 440810 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25105863ns 440818 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25106033ns 440821 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25106317ns 440826 1a110850 fd5ff06f jal x0, -44 +25106602ns 440831 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25106886ns 440836 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25107283ns 440843 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25107454ns 440846 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25107909ns 440854 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25108079ns 440857 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25108363ns 440862 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25108647ns 440867 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25108932ns 440872 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25109386ns 440880 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25109557ns 440883 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25109841ns 440888 1a110850 fd5ff06f jal x0, -44 +25110125ns 440893 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25110409ns 440898 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25110807ns 440905 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25110978ns 440908 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25111432ns 440916 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25111603ns 440919 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25111887ns 440924 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25112171ns 440929 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25112455ns 440934 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25112910ns 440942 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25113080ns 440945 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25113365ns 440950 1a110850 fd5ff06f jal x0, -44 +25113649ns 440955 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25113933ns 440960 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25114331ns 440967 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25114501ns 440970 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25114956ns 440978 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25115126ns 440981 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25115410ns 440986 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25115695ns 440991 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25115979ns 440996 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25116433ns 441004 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25116604ns 441007 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25116888ns 441012 1a110850 fd5ff06f jal x0, -44 +25117172ns 441017 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25117456ns 441022 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25117854ns 441029 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25118025ns 441032 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25118479ns 441040 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25118650ns 441043 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25118934ns 441048 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25119218ns 441053 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25119502ns 441058 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25119957ns 441066 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25120128ns 441069 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25120412ns 441074 1a110850 fd5ff06f jal x0, -44 +25120696ns 441079 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25120980ns 441084 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25121378ns 441091 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25121548ns 441094 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25122003ns 441102 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25122173ns 441105 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25122458ns 441110 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25122742ns 441115 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25123026ns 441120 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25123481ns 441128 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25123651ns 441131 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25123935ns 441136 1a110850 fd5ff06f jal x0, -44 +25124219ns 441141 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25124504ns 441146 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25124901ns 441153 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25125072ns 441156 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25125527ns 441164 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25125697ns 441167 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25125981ns 441172 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25126265ns 441177 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25126550ns 441182 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25127004ns 441190 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25127175ns 441193 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25127459ns 441198 1a110850 fd5ff06f jal x0, -44 +25127743ns 441203 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25128027ns 441208 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25128425ns 441215 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25128595ns 441218 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25129050ns 441226 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25129221ns 441229 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25129505ns 441234 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25129789ns 441239 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25130073ns 441244 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25130528ns 441252 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25130698ns 441255 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25130982ns 441260 1a110850 fd5ff06f jal x0, -44 +25131267ns 441265 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25131551ns 441270 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25131949ns 441277 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25132119ns 441280 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25132574ns 441288 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25132744ns 441291 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25133028ns 441296 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25133313ns 441301 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25133597ns 441306 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25134051ns 441314 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25134222ns 441317 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25134506ns 441322 1a110850 fd5ff06f jal x0, -44 +25134790ns 441327 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25135074ns 441332 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25135472ns 441339 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25135643ns 441342 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25136097ns 441350 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25136268ns 441353 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25136552ns 441358 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25136836ns 441363 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25137120ns 441368 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25137575ns 441376 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25137745ns 441379 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25138030ns 441384 1a110850 fd5ff06f jal x0, -44 +25138314ns 441389 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25138598ns 441394 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25138996ns 441401 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25139166ns 441404 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25139621ns 441412 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25139791ns 441415 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25140076ns 441420 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25140360ns 441425 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25140644ns 441430 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25141099ns 441438 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25141269ns 441441 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25141553ns 441446 1a110850 fd5ff06f jal x0, -44 +25141837ns 441451 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25142122ns 441456 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25142519ns 441463 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25142690ns 441466 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25143144ns 441474 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25143315ns 441477 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25143599ns 441482 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25143883ns 441487 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25144167ns 441492 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25144622ns 441500 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25144793ns 441503 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25145077ns 441508 1a110850 fd5ff06f jal x0, -44 +25145361ns 441513 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25145645ns 441518 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25146043ns 441525 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25146213ns 441528 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25146668ns 441536 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25146839ns 441539 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25147123ns 441544 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25147407ns 441549 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25147691ns 441554 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25148146ns 441562 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25148316ns 441565 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25148600ns 441570 1a110850 fd5ff06f jal x0, -44 +25148885ns 441575 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25149169ns 441580 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25149567ns 441587 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25149737ns 441590 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25150192ns 441598 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25150362ns 441601 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25150646ns 441606 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25150930ns 441611 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25151215ns 441616 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25151669ns 441624 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25151840ns 441627 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25152124ns 441632 1a110850 fd5ff06f jal x0, -44 +25152408ns 441637 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25152692ns 441642 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25153090ns 441649 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25153261ns 441652 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25153715ns 441660 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25153886ns 441663 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25154170ns 441668 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25154454ns 441673 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25154738ns 441678 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25155193ns 441686 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25155363ns 441689 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25155648ns 441694 1a110850 fd5ff06f jal x0, -44 +25155932ns 441699 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25156216ns 441704 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25156614ns 441711 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25156784ns 441714 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25157239ns 441722 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25157409ns 441725 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25157693ns 441730 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25157978ns 441735 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25158262ns 441740 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25158716ns 441748 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25158887ns 441751 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25159171ns 441756 1a110850 fd5ff06f jal x0, -44 +25159455ns 441761 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25159739ns 441766 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25160137ns 441773 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25160308ns 441776 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25160762ns 441784 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25160933ns 441787 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25161217ns 441792 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25161501ns 441797 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25161785ns 441802 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25162240ns 441810 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25162411ns 441813 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25162695ns 441818 1a110850 fd5ff06f jal x0, -44 +25162979ns 441823 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25163263ns 441828 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25163661ns 441835 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25163831ns 441838 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25164286ns 441846 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25164456ns 441849 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25164741ns 441854 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25165025ns 441859 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25165309ns 441864 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25165764ns 441872 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25165934ns 441875 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25166218ns 441880 1a110850 fd5ff06f jal x0, -44 +25166502ns 441885 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25166787ns 441890 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25167184ns 441897 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25167355ns 441900 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25167810ns 441908 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25167980ns 441911 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25168264ns 441916 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25168548ns 441921 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25168833ns 441926 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25169287ns 441934 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25169458ns 441937 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25169742ns 441942 1a110850 fd5ff06f jal x0, -44 +25170026ns 441947 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25170310ns 441952 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25170708ns 441959 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25170879ns 441962 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25171333ns 441970 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25171504ns 441973 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25171788ns 441978 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25172072ns 441983 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25172356ns 441988 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25172811ns 441996 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25172981ns 441999 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25173265ns 442004 1a110850 fd5ff06f jal x0, -44 +25173550ns 442009 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25173834ns 442014 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25174232ns 442021 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25174402ns 442024 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25174857ns 442032 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25175027ns 442035 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25175311ns 442040 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25175596ns 442045 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25175880ns 442050 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25176334ns 442058 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25176505ns 442061 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25176789ns 442066 1a110850 fd5ff06f jal x0, -44 +25177073ns 442071 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25177357ns 442076 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25177755ns 442083 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25177926ns 442086 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25178380ns 442094 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25178551ns 442097 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25178835ns 442102 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25179119ns 442107 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25179403ns 442112 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25179858ns 442120 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25180028ns 442123 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25180313ns 442128 1a110850 fd5ff06f jal x0, -44 +25180597ns 442133 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25180881ns 442138 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25181279ns 442145 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25181449ns 442148 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25181904ns 442156 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25182074ns 442159 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25182359ns 442164 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25182643ns 442169 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25182927ns 442174 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25183382ns 442182 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25183552ns 442185 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25183836ns 442190 1a110850 fd5ff06f jal x0, -44 +25184120ns 442195 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25184405ns 442200 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25184802ns 442207 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25184973ns 442210 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25185427ns 442218 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25185598ns 442221 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25185882ns 442226 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25186166ns 442231 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25186450ns 442236 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25186905ns 442244 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25187076ns 442247 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25187360ns 442252 1a110850 fd5ff06f jal x0, -44 +25187644ns 442257 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25187928ns 442262 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25188326ns 442269 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25188496ns 442272 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25188951ns 442280 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25189122ns 442283 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25189406ns 442288 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25189690ns 442293 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25189974ns 442298 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25190429ns 442306 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25190599ns 442309 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25190883ns 442314 1a110850 fd5ff06f jal x0, -44 +25191168ns 442319 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25191452ns 442324 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25191850ns 442331 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25192020ns 442334 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25192475ns 442342 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25192645ns 442345 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25192929ns 442350 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25193213ns 442355 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25193498ns 442360 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25193952ns 442368 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25194123ns 442371 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25194407ns 442376 1a110850 fd5ff06f jal x0, -44 +25194691ns 442381 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25194975ns 442386 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25195373ns 442393 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25195544ns 442396 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25195998ns 442404 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25196169ns 442407 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25196453ns 442412 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25196737ns 442417 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25197021ns 442422 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25197476ns 442430 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25197646ns 442433 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25197931ns 442438 1a110850 fd5ff06f jal x0, -44 +25198215ns 442443 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25198499ns 442448 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25198897ns 442455 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25199067ns 442458 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25199522ns 442466 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25199692ns 442469 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25199976ns 442474 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25200261ns 442479 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25200545ns 442484 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25200999ns 442492 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25201170ns 442495 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25201454ns 442500 1a110850 fd5ff06f jal x0, -44 +25201738ns 442505 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25202022ns 442510 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25202420ns 442517 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25202591ns 442520 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25203045ns 442528 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25203216ns 442531 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25203500ns 442536 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25203784ns 442541 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25204068ns 442546 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25204523ns 442554 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25204694ns 442557 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25204978ns 442562 1a110850 fd5ff06f jal x0, -44 +25205262ns 442567 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25205546ns 442572 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25205944ns 442579 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25206114ns 442582 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25206569ns 442590 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25206739ns 442593 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25207024ns 442598 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25207308ns 442603 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25207592ns 442608 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25208047ns 442616 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25208217ns 442619 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25208501ns 442624 1a110850 fd5ff06f jal x0, -44 +25208785ns 442629 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25209070ns 442634 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25209467ns 442641 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25209638ns 442644 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25210093ns 442652 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25210263ns 442655 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25210547ns 442660 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25210831ns 442665 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25211116ns 442670 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25211570ns 442678 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25211741ns 442681 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25212025ns 442686 1a110850 fd5ff06f jal x0, -44 +25212309ns 442691 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25212593ns 442696 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25212991ns 442703 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25213162ns 442706 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25213616ns 442714 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25213787ns 442717 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25214071ns 442722 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25214355ns 442727 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25214639ns 442732 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25215094ns 442740 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25215264ns 442743 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25215548ns 442748 1a110850 fd5ff06f jal x0, -44 +25215833ns 442753 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25216117ns 442758 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25216515ns 442765 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25216685ns 442768 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25217140ns 442776 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25217310ns 442779 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25217594ns 442784 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25217879ns 442789 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25218163ns 442794 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25218617ns 442802 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25218788ns 442805 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25219072ns 442810 1a110850 fd5ff06f jal x0, -44 +25219356ns 442815 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25219640ns 442820 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25220038ns 442827 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25220209ns 442830 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25220663ns 442838 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25220834ns 442841 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25221118ns 442846 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25221402ns 442851 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25221686ns 442856 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25222141ns 442864 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25222311ns 442867 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25222596ns 442872 1a110850 fd5ff06f jal x0, -44 +25222880ns 442877 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25223164ns 442882 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25223562ns 442889 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25223732ns 442892 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25224187ns 442900 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25224357ns 442903 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25224642ns 442908 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25224926ns 442913 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25225210ns 442918 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25225665ns 442926 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25225835ns 442929 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25226119ns 442934 1a110850 fd5ff06f jal x0, -44 +25226403ns 442939 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25226688ns 442944 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25227085ns 442951 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25227256ns 442954 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25227711ns 442962 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25227881ns 442965 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25228165ns 442970 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25228449ns 442975 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25228733ns 442980 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25229188ns 442988 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25229359ns 442991 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25229643ns 442996 1a110850 fd5ff06f jal x0, -44 +25229927ns 443001 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25230211ns 443006 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25230609ns 443013 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25230779ns 443016 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25231234ns 443024 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25231405ns 443027 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25231689ns 443032 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25231973ns 443037 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25232257ns 443042 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25232712ns 443050 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25232882ns 443053 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25233166ns 443058 1a110850 fd5ff06f jal x0, -44 +25233451ns 443063 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25233735ns 443068 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25234133ns 443075 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25234303ns 443078 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25234758ns 443086 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25234928ns 443089 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25235212ns 443094 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25235496ns 443099 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25235781ns 443104 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25236235ns 443112 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25236406ns 443115 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25236690ns 443120 1a110850 fd5ff06f jal x0, -44 +25236974ns 443125 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25237258ns 443130 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25237656ns 443137 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25237827ns 443140 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25238281ns 443148 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25238452ns 443151 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25238736ns 443156 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25239020ns 443161 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25239304ns 443166 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25239759ns 443174 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25239929ns 443177 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25240214ns 443182 1a110850 fd5ff06f jal x0, -44 +25240498ns 443187 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25240782ns 443192 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25241180ns 443199 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25241350ns 443202 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25241805ns 443210 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25241975ns 443213 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25242259ns 443218 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25242544ns 443223 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25242828ns 443228 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25243282ns 443236 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25243453ns 443239 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25243737ns 443244 1a110850 fd5ff06f jal x0, -44 +25244021ns 443249 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25244305ns 443254 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25244703ns 443261 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25244874ns 443264 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25245328ns 443272 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25245499ns 443275 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25245783ns 443280 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25246067ns 443285 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25246351ns 443290 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25246806ns 443298 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25246977ns 443301 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25247261ns 443306 1a110850 fd5ff06f jal x0, -44 +25247545ns 443311 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25247829ns 443316 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25248227ns 443323 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25248397ns 443326 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25248852ns 443334 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25249023ns 443337 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25249307ns 443342 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25249591ns 443347 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25249875ns 443352 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25250330ns 443360 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25250500ns 443363 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25250784ns 443368 1a110850 fd5ff06f jal x0, -44 +25251068ns 443373 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25251353ns 443378 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25251750ns 443385 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25251921ns 443388 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25252376ns 443396 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25252546ns 443399 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25252830ns 443404 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25253114ns 443409 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25253399ns 443414 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25253853ns 443422 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25254024ns 443425 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25254308ns 443430 1a110850 fd5ff06f jal x0, -44 +25254592ns 443435 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25254876ns 443440 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25255274ns 443447 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25255445ns 443450 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25255899ns 443458 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25256070ns 443461 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25256354ns 443466 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25256638ns 443471 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25256922ns 443476 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25257377ns 443484 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25257547ns 443487 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25257831ns 443492 1a110850 fd5ff06f jal x0, -44 +25258116ns 443497 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25258400ns 443502 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25258798ns 443509 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25258968ns 443512 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25259423ns 443520 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25259593ns 443523 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25259877ns 443528 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25260162ns 443533 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25260446ns 443538 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25260900ns 443546 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25261071ns 443549 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25261355ns 443554 1a110850 fd5ff06f jal x0, -44 +25261639ns 443559 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25261923ns 443564 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25262321ns 443571 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25262492ns 443574 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25262946ns 443582 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25263117ns 443585 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25263401ns 443590 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25263685ns 443595 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25263969ns 443600 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25264424ns 443608 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25264594ns 443611 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25264879ns 443616 1a110850 fd5ff06f jal x0, -44 +25265163ns 443621 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25265447ns 443626 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25265845ns 443633 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25266015ns 443636 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25266470ns 443644 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25266640ns 443647 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25266925ns 443652 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25267209ns 443657 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25267493ns 443662 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25267948ns 443670 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25268118ns 443673 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25268402ns 443678 1a110850 fd5ff06f jal x0, -44 +25268686ns 443683 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25268971ns 443688 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25269368ns 443695 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25269539ns 443698 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25269994ns 443706 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25270164ns 443709 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25270448ns 443714 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25270732ns 443719 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25271016ns 443724 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25271471ns 443732 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25271642ns 443735 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25271926ns 443740 1a110850 fd5ff06f jal x0, -44 +25272210ns 443745 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25272494ns 443750 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25272892ns 443757 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25273062ns 443760 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25273517ns 443768 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25273688ns 443771 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25273972ns 443776 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25274256ns 443781 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25274540ns 443786 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25274995ns 443794 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25275165ns 443797 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25275449ns 443802 1a110850 fd5ff06f jal x0, -44 +25275734ns 443807 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25276018ns 443812 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25276416ns 443819 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25276586ns 443822 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25277041ns 443830 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25277211ns 443833 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25277495ns 443838 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25277779ns 443843 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25278064ns 443848 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25278518ns 443856 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25278689ns 443859 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25278973ns 443864 1a110850 fd5ff06f jal x0, -44 +25279257ns 443869 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25279541ns 443874 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25279939ns 443881 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25280110ns 443884 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25280564ns 443892 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25280735ns 443895 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25281019ns 443900 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25281303ns 443905 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25281587ns 443910 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25282042ns 443918 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25282212ns 443921 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25282497ns 443926 1a110850 fd5ff06f jal x0, -44 +25282781ns 443931 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25283065ns 443936 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25283463ns 443943 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25283633ns 443946 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25284088ns 443954 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25284258ns 443957 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25284543ns 443962 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25284827ns 443967 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25285111ns 443972 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25285565ns 443980 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25285736ns 443983 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25286020ns 443988 1a110850 fd5ff06f jal x0, -44 +25286304ns 443993 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25286588ns 443998 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25286986ns 444005 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25287157ns 444008 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25287611ns 444016 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25287782ns 444019 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25288066ns 444024 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25288350ns 444029 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25288634ns 444034 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25289089ns 444042 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25289260ns 444045 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25289544ns 444050 1a110850 fd5ff06f jal x0, -44 +25289828ns 444055 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25290112ns 444060 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25290510ns 444067 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25290680ns 444070 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25291135ns 444078 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25291306ns 444081 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25291590ns 444086 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25291874ns 444091 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25292158ns 444096 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25292613ns 444104 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25292783ns 444107 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25293067ns 444112 1a110850 fd5ff06f jal x0, -44 +25293351ns 444117 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25293636ns 444122 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25294033ns 444129 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25294204ns 444132 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25294659ns 444140 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25294829ns 444143 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25295113ns 444148 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25295397ns 444153 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25295682ns 444158 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25296136ns 444166 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25296307ns 444169 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25296591ns 444174 1a110850 fd5ff06f jal x0, -44 +25296875ns 444179 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25297159ns 444184 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25297557ns 444191 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25297728ns 444194 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25298182ns 444202 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25298353ns 444205 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25298637ns 444210 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25298921ns 444215 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25299205ns 444220 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25299660ns 444228 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25299830ns 444231 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25300114ns 444236 1a110850 fd5ff06f jal x0, -44 +25300399ns 444241 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25300683ns 444246 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25301081ns 444253 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25301251ns 444256 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25301706ns 444264 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25301876ns 444267 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25302160ns 444272 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25302445ns 444277 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25302729ns 444282 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25303183ns 444290 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25303354ns 444293 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25303638ns 444298 1a110850 fd5ff06f jal x0, -44 +25303922ns 444303 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25304206ns 444308 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25304604ns 444315 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25304775ns 444318 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25305229ns 444326 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25305400ns 444329 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25305684ns 444334 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25305968ns 444339 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25306252ns 444344 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25306707ns 444352 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25306877ns 444355 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25307162ns 444360 1a110850 fd5ff06f jal x0, -44 +25307446ns 444365 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25307730ns 444370 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25308128ns 444377 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25308298ns 444380 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25308753ns 444388 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25308923ns 444391 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25309208ns 444396 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25309492ns 444401 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25309776ns 444406 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25310231ns 444414 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25310401ns 444417 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25310685ns 444422 1a110850 fd5ff06f jal x0, -44 +25310969ns 444427 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25311254ns 444432 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25311651ns 444439 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25311822ns 444442 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25312277ns 444450 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25312447ns 444453 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25312731ns 444458 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25313015ns 444463 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25313299ns 444468 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25313754ns 444476 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25313925ns 444479 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25314209ns 444484 1a110850 fd5ff06f jal x0, -44 +25314493ns 444489 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25314777ns 444494 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25315175ns 444501 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25315345ns 444504 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25315800ns 444512 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25315971ns 444515 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25316255ns 444520 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25316539ns 444525 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25316823ns 444530 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25317278ns 444538 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25317448ns 444541 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25317732ns 444546 1a110850 fd5ff06f jal x0, -44 +25318017ns 444551 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25318301ns 444556 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25318699ns 444563 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25318869ns 444566 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25319324ns 444574 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25319494ns 444577 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25319778ns 444582 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25320063ns 444587 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25320347ns 444592 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25320801ns 444600 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25320972ns 444603 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25321256ns 444608 1a110850 fd5ff06f jal x0, -44 +25321540ns 444613 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25321824ns 444618 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25322222ns 444625 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25322393ns 444628 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25322847ns 444636 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25323018ns 444639 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25323302ns 444644 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25323586ns 444649 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25323870ns 444654 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25324325ns 444662 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25324495ns 444665 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25324780ns 444670 1a110850 fd5ff06f jal x0, -44 +25325064ns 444675 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25325348ns 444680 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25325746ns 444687 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25325916ns 444690 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25326371ns 444698 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25326541ns 444701 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25326826ns 444706 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25327110ns 444711 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25327394ns 444716 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25327848ns 444724 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25328019ns 444727 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25328303ns 444732 1a110850 fd5ff06f jal x0, -44 +25328587ns 444737 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25328871ns 444742 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25329269ns 444749 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25329440ns 444752 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25329894ns 444760 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25330065ns 444763 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25330349ns 444768 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25330633ns 444773 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25330917ns 444778 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25331372ns 444786 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25331543ns 444789 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25331827ns 444794 1a110850 fd5ff06f jal x0, -44 +25332111ns 444799 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25332395ns 444804 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25332793ns 444811 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25332963ns 444814 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25333418ns 444822 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25333589ns 444825 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25333873ns 444830 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25334157ns 444835 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25334441ns 444840 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25334896ns 444848 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25335066ns 444851 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25335350ns 444856 1a110850 fd5ff06f jal x0, -44 +25335634ns 444861 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25335919ns 444866 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25336316ns 444873 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25336487ns 444876 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25336942ns 444884 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25337112ns 444887 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25337396ns 444892 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25337680ns 444897 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25337965ns 444902 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25338419ns 444910 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25338590ns 444913 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25338874ns 444918 1a110850 fd5ff06f jal x0, -44 +25339158ns 444923 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25339442ns 444928 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25339840ns 444935 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25340011ns 444938 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25340465ns 444946 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25340636ns 444949 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25340920ns 444954 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25341204ns 444959 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25341488ns 444964 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25341943ns 444972 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25342113ns 444975 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25342397ns 444980 1a110850 fd5ff06f jal x0, -44 +25342682ns 444985 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25342966ns 444990 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25343364ns 444997 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25343534ns 445000 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25343989ns 445008 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25344159ns 445011 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25344443ns 445016 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25344728ns 445021 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25345012ns 445026 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25345466ns 445034 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25345637ns 445037 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25345921ns 445042 1a110850 fd5ff06f jal x0, -44 +25346205ns 445047 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25346489ns 445052 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25346887ns 445059 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25347058ns 445062 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25347512ns 445070 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25347683ns 445073 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25347967ns 445078 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25348251ns 445083 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25348535ns 445088 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25348990ns 445096 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25349160ns 445099 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25349445ns 445104 1a110850 fd5ff06f jal x0, -44 +25349729ns 445109 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25350013ns 445114 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25350411ns 445121 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25350581ns 445124 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25351036ns 445132 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25351206ns 445135 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25351491ns 445140 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25351775ns 445145 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25352059ns 445150 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25352514ns 445158 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25352684ns 445161 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25352968ns 445166 1a110850 fd5ff06f jal x0, -44 +25353252ns 445171 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25353537ns 445176 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25353934ns 445183 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25354105ns 445186 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25354560ns 445194 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25354730ns 445197 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25355014ns 445202 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25355298ns 445207 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25355583ns 445212 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25356037ns 445220 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25356208ns 445223 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25356492ns 445228 1a110850 fd5ff06f jal x0, -44 +25356776ns 445233 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25357060ns 445238 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25357458ns 445245 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25357628ns 445248 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25358083ns 445256 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25358254ns 445259 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25358538ns 445264 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25358822ns 445269 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25359106ns 445274 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25359561ns 445282 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25359731ns 445285 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25360015ns 445290 1a110850 fd5ff06f jal x0, -44 +25360300ns 445295 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25360584ns 445300 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25360982ns 445307 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25361152ns 445310 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25361607ns 445318 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25361777ns 445321 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25362061ns 445326 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25362346ns 445331 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25362630ns 445336 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25363084ns 445344 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25363255ns 445347 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25363539ns 445352 1a110850 fd5ff06f jal x0, -44 +25363823ns 445357 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25364107ns 445362 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25364505ns 445369 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25364676ns 445372 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25365130ns 445380 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25365301ns 445383 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25365585ns 445388 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25365869ns 445393 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25366153ns 445398 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25366608ns 445406 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25366778ns 445409 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25367063ns 445414 1a110850 fd5ff06f jal x0, -44 +25367347ns 445419 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25367631ns 445424 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25368029ns 445431 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25368199ns 445434 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25368654ns 445442 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25368824ns 445445 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25369109ns 445450 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25369393ns 445455 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25369677ns 445460 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25370131ns 445468 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25370302ns 445471 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25370586ns 445476 1a110850 fd5ff06f jal x0, -44 +25370870ns 445481 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25371154ns 445486 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25371552ns 445493 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25371723ns 445496 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25372177ns 445504 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25372348ns 445507 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25372632ns 445512 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25372916ns 445517 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25373200ns 445522 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25373655ns 445530 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25373826ns 445533 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25374110ns 445538 1a110850 fd5ff06f jal x0, -44 +25374394ns 445543 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25374678ns 445548 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25375076ns 445555 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25375246ns 445558 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25375701ns 445566 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25375872ns 445569 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25376156ns 445574 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25376440ns 445579 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25376724ns 445584 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25377179ns 445592 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25377349ns 445595 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25377633ns 445600 1a110850 fd5ff06f jal x0, -44 +25377917ns 445605 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25378202ns 445610 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25378599ns 445617 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25378770ns 445620 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25379225ns 445628 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25379395ns 445631 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25379679ns 445636 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25379963ns 445641 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25380248ns 445646 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25380702ns 445654 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25380873ns 445657 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25381157ns 445662 1a110850 fd5ff06f jal x0, -44 +25381441ns 445667 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25381725ns 445672 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25382123ns 445679 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25382294ns 445682 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25382748ns 445690 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25382919ns 445693 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25383203ns 445698 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25383487ns 445703 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25383771ns 445708 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25384226ns 445716 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25384396ns 445719 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25384680ns 445724 1a110850 fd5ff06f jal x0, -44 +25384965ns 445729 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25385249ns 445734 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25385647ns 445741 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25385817ns 445744 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25386272ns 445752 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25386442ns 445755 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25386726ns 445760 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25387011ns 445765 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25387295ns 445770 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25387749ns 445778 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25387920ns 445781 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25388204ns 445786 1a110850 fd5ff06f jal x0, -44 +25388488ns 445791 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25388772ns 445796 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25389170ns 445803 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25389341ns 445806 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25389795ns 445814 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25389966ns 445817 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25390250ns 445822 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25390534ns 445827 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25390818ns 445832 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25391273ns 445840 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25391443ns 445843 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25391728ns 445848 1a110850 fd5ff06f jal x0, -44 +25392012ns 445853 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25392296ns 445858 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25392694ns 445865 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25392864ns 445868 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25393319ns 445876 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25393489ns 445879 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25393774ns 445884 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25394058ns 445889 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25394342ns 445894 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25394797ns 445902 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25394967ns 445905 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25395251ns 445910 1a110850 fd5ff06f jal x0, -44 +25395535ns 445915 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25395820ns 445920 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25396217ns 445927 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25396388ns 445930 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25396843ns 445938 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25397013ns 445941 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25397297ns 445946 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25397581ns 445951 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25397866ns 445956 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25398320ns 445964 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25398491ns 445967 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25398775ns 445972 1a110850 fd5ff06f jal x0, -44 +25399059ns 445977 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25399343ns 445982 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25399741ns 445989 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25399911ns 445992 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25400366ns 446000 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25400537ns 446003 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25400821ns 446008 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25401105ns 446013 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25401389ns 446018 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25401844ns 446026 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25402014ns 446029 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25402298ns 446034 1a110850 fd5ff06f jal x0, -44 +25402583ns 446039 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25402867ns 446044 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25403265ns 446051 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25403435ns 446054 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25403890ns 446062 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25404060ns 446065 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25404344ns 446070 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25404629ns 446075 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25404913ns 446080 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25405367ns 446088 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25405538ns 446091 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25405822ns 446096 1a110850 fd5ff06f jal x0, -44 +25406106ns 446101 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25406390ns 446106 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25406788ns 446113 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25406959ns 446116 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25407413ns 446124 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25407584ns 446127 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25407868ns 446132 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25408152ns 446137 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25408436ns 446142 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25408891ns 446150 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25409061ns 446153 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25409346ns 446158 1a110850 fd5ff06f jal x0, -44 +25409630ns 446163 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25409914ns 446168 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25410312ns 446175 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25410482ns 446178 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25410937ns 446186 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25411107ns 446189 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25411392ns 446194 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25411676ns 446199 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25411960ns 446204 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25412415ns 446212 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25412585ns 446215 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25412869ns 446220 1a110850 fd5ff06f jal x0, -44 +25413153ns 446225 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25413437ns 446230 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25413835ns 446237 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25414006ns 446240 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25414460ns 446248 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25414631ns 446251 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25414915ns 446256 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25415199ns 446261 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25415483ns 446266 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25415938ns 446274 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25416109ns 446277 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25416393ns 446282 1a110850 fd5ff06f jal x0, -44 +25416677ns 446287 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25416961ns 446292 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25417359ns 446299 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25417529ns 446302 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25417984ns 446310 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25418155ns 446313 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25418439ns 446318 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25418723ns 446323 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25419007ns 446328 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25419462ns 446336 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25419632ns 446339 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25419916ns 446344 1a110850 fd5ff06f jal x0, -44 +25420200ns 446349 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25420485ns 446354 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25420882ns 446361 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25421053ns 446364 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25421508ns 446372 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25421678ns 446375 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25421962ns 446380 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25422246ns 446385 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25422531ns 446390 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25422985ns 446398 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25423156ns 446401 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25423440ns 446406 1a110850 fd5ff06f jal x0, -44 +25423724ns 446411 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25424008ns 446416 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25424406ns 446423 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25424577ns 446426 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25425031ns 446434 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25425202ns 446437 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25425486ns 446442 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25425770ns 446447 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25426054ns 446452 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25426509ns 446460 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25426679ns 446463 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25426963ns 446468 1a110850 fd5ff06f jal x0, -44 +25427248ns 446473 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25427532ns 446478 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25427930ns 446485 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25428100ns 446488 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25428555ns 446496 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25428725ns 446499 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25429009ns 446504 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25429294ns 446509 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25429578ns 446514 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25430032ns 446522 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25430203ns 446525 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25430487ns 446530 1a110850 fd5ff06f jal x0, -44 +25430771ns 446535 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25431055ns 446540 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25431453ns 446547 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25431624ns 446550 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25432078ns 446558 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25432249ns 446561 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25432533ns 446566 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25432817ns 446571 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25433101ns 446576 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25433556ns 446584 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25433727ns 446587 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25434011ns 446592 1a110850 fd5ff06f jal x0, -44 +25434295ns 446597 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25434579ns 446602 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25434977ns 446609 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25435147ns 446612 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25435602ns 446620 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25435772ns 446623 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25436057ns 446628 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25436341ns 446633 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25436625ns 446638 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25437080ns 446646 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25437250ns 446649 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25437534ns 446654 1a110850 fd5ff06f jal x0, -44 +25437818ns 446659 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25438103ns 446664 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25438500ns 446671 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25438671ns 446674 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25439126ns 446682 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25439296ns 446685 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25439580ns 446690 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25439864ns 446695 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25440149ns 446700 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25440603ns 446708 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25440774ns 446711 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25441058ns 446716 1a110850 fd5ff06f jal x0, -44 +25441342ns 446721 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25441626ns 446726 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25442024ns 446733 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25442194ns 446736 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25442649ns 446744 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25442820ns 446747 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25443104ns 446752 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25443388ns 446757 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25443672ns 446762 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25444127ns 446770 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25444297ns 446773 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25444581ns 446778 1a110850 fd5ff06f jal x0, -44 +25444866ns 446783 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25445150ns 446788 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25445548ns 446795 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25445718ns 446798 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25446173ns 446806 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25446343ns 446809 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25446627ns 446814 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25446912ns 446819 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25447196ns 446824 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25447650ns 446832 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25447821ns 446835 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25448105ns 446840 1a110850 fd5ff06f jal x0, -44 +25448389ns 446845 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25448673ns 446850 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25449071ns 446857 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25449242ns 446860 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25449696ns 446868 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25449867ns 446871 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25450151ns 446876 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25450435ns 446881 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25450719ns 446886 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25451174ns 446894 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25451344ns 446897 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25451629ns 446902 1a110850 fd5ff06f jal x0, -44 +25451913ns 446907 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25452197ns 446912 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25452595ns 446919 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25452765ns 446922 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25453220ns 446930 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25453390ns 446933 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25453675ns 446938 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25453959ns 446943 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25454243ns 446948 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25454698ns 446956 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25454868ns 446959 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25455152ns 446964 1a110850 fd5ff06f jal x0, -44 +25455436ns 446969 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25455720ns 446974 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25456118ns 446981 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25456289ns 446984 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25456743ns 446992 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25456914ns 446995 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25457198ns 447000 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25457482ns 447005 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25457766ns 447010 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25458221ns 447018 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25458392ns 447021 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25458676ns 447026 1a110850 fd5ff06f jal x0, -44 +25458960ns 447031 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25459244ns 447036 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25459642ns 447043 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25459812ns 447046 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25460267ns 447054 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25460438ns 447057 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25460722ns 447062 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25461006ns 447067 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25461290ns 447072 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25461745ns 447080 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25461915ns 447083 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25462199ns 447088 1a110850 fd5ff06f jal x0, -44 +25462483ns 447093 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25462768ns 447098 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25463165ns 447105 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25463336ns 447108 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25463791ns 447116 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25463961ns 447119 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25464245ns 447124 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25464529ns 447129 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25464814ns 447134 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25465268ns 447142 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25465439ns 447145 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25465723ns 447150 1a110850 fd5ff06f jal x0, -44 +25466007ns 447155 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25466291ns 447160 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25466689ns 447167 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25466860ns 447170 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25467314ns 447178 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25467485ns 447181 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25467769ns 447186 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25468053ns 447191 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25468337ns 447196 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25468792ns 447204 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25468962ns 447207 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25469247ns 447212 1a110850 fd5ff06f jal x0, -44 +25469531ns 447217 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25469815ns 447222 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25470213ns 447229 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25470383ns 447232 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25470838ns 447240 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25471008ns 447243 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25471292ns 447248 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25471577ns 447253 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25471861ns 447258 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25472315ns 447266 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25472486ns 447269 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25472770ns 447274 1a110850 fd5ff06f jal x0, -44 +25473054ns 447279 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25473338ns 447284 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25473736ns 447291 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25473907ns 447294 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25474361ns 447302 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25474532ns 447305 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25474816ns 447310 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25475100ns 447315 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25475384ns 447320 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25475839ns 447328 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25476010ns 447331 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25476294ns 447336 1a110850 fd5ff06f jal x0, -44 +25476578ns 447341 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25476862ns 447346 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25477260ns 447353 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25477430ns 447356 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25477885ns 447364 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25478055ns 447367 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25478340ns 447372 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25478624ns 447377 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25478908ns 447382 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25479363ns 447390 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25479533ns 447393 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25479817ns 447398 1a110850 fd5ff06f jal x0, -44 +25480101ns 447403 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25480386ns 447408 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25480783ns 447415 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25480954ns 447418 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25481409ns 447426 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25481579ns 447429 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25481863ns 447434 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25482147ns 447439 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25482432ns 447444 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25482886ns 447452 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25483057ns 447455 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25483341ns 447460 1a110850 fd5ff06f jal x0, -44 +25483625ns 447465 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25483909ns 447470 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25484307ns 447477 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25484477ns 447480 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25484932ns 447488 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25485103ns 447491 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25485387ns 447496 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25485671ns 447501 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25485955ns 447506 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25486410ns 447514 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25486580ns 447517 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25486864ns 447522 1a110850 fd5ff06f jal x0, -44 +25487149ns 447527 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25487433ns 447532 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25487831ns 447539 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25488001ns 447542 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25488456ns 447550 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25488626ns 447553 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25488910ns 447558 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25489195ns 447563 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25489479ns 447568 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25489933ns 447576 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25490104ns 447579 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25490388ns 447584 1a110850 fd5ff06f jal x0, -44 +25490672ns 447589 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25490956ns 447594 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25491354ns 447601 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25491525ns 447604 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25491979ns 447612 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25492150ns 447615 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25492434ns 447620 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25492718ns 447625 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25493002ns 447630 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25493457ns 447638 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25493627ns 447641 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25493912ns 447646 1a110850 fd5ff06f jal x0, -44 +25494196ns 447651 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25494480ns 447656 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25494878ns 447663 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25495048ns 447666 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25495503ns 447674 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25495673ns 447677 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25495958ns 447682 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25496242ns 447687 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25496526ns 447692 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25496981ns 447700 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25497151ns 447703 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25497435ns 447708 1a110850 fd5ff06f jal x0, -44 +25497719ns 447713 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25498003ns 447718 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25498401ns 447725 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25498572ns 447728 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25499026ns 447736 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25499197ns 447739 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25499481ns 447744 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25499765ns 447749 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25500049ns 447754 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25500504ns 447762 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25500675ns 447765 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25500959ns 447770 1a110850 fd5ff06f jal x0, -44 +25501243ns 447775 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25501527ns 447780 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25501925ns 447787 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25502095ns 447790 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25502550ns 447798 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25502721ns 447801 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25503005ns 447806 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25503289ns 447811 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25503573ns 447816 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25504028ns 447824 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25504198ns 447827 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25504482ns 447832 1a110850 fd5ff06f jal x0, -44 +25504767ns 447837 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25505051ns 447842 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25505448ns 447849 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25505619ns 447852 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25506074ns 447860 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25506244ns 447863 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25506528ns 447868 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25506812ns 447873 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25507097ns 447878 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25507551ns 447886 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25507722ns 447889 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25508006ns 447894 1a110850 fd5ff06f jal x0, -44 +25508290ns 447899 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25508574ns 447904 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25508972ns 447911 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25509143ns 447914 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25509597ns 447922 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25509768ns 447925 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25510052ns 447930 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25510336ns 447935 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25510620ns 447940 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25511075ns 447948 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25511245ns 447951 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25511530ns 447956 1a110850 fd5ff06f jal x0, -44 +25511814ns 447961 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25512098ns 447966 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25512496ns 447973 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25512666ns 447976 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25513121ns 447984 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25513291ns 447987 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25513575ns 447992 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25513860ns 447997 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25514144ns 448002 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25514598ns 448010 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25514769ns 448013 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25515053ns 448018 1a110850 fd5ff06f jal x0, -44 +25515337ns 448023 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25515621ns 448028 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25516019ns 448035 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25516190ns 448038 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25516644ns 448046 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25516815ns 448049 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25517099ns 448054 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25517383ns 448059 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25517667ns 448064 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25518122ns 448072 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25518293ns 448075 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25518577ns 448080 1a110850 fd5ff06f jal x0, -44 +25518861ns 448085 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25519145ns 448090 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25519543ns 448097 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25519713ns 448100 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25520168ns 448108 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25520338ns 448111 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25520623ns 448116 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25520907ns 448121 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25521191ns 448126 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25521646ns 448134 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25521816ns 448137 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25522100ns 448142 1a110850 fd5ff06f jal x0, -44 +25522384ns 448147 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25522669ns 448152 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25523066ns 448159 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25523237ns 448162 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25523692ns 448170 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25523862ns 448173 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25524146ns 448178 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25524430ns 448183 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25524715ns 448188 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25525169ns 448196 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25525340ns 448199 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25525624ns 448204 1a110850 fd5ff06f jal x0, -44 +25525908ns 448209 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25526192ns 448214 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25526590ns 448221 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25526760ns 448224 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25527215ns 448232 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25527386ns 448235 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25527670ns 448240 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25527954ns 448245 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25528238ns 448250 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25528693ns 448258 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25528863ns 448261 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25529147ns 448266 1a110850 fd5ff06f jal x0, -44 +25529432ns 448271 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25529716ns 448276 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25530114ns 448283 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25530284ns 448286 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25530739ns 448294 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25530909ns 448297 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25531193ns 448302 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25531478ns 448307 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25531762ns 448312 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25532216ns 448320 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25532387ns 448323 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25532671ns 448328 1a110850 fd5ff06f jal x0, -44 +25532955ns 448333 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25533239ns 448338 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25533637ns 448345 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25533808ns 448348 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25534262ns 448356 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25534433ns 448359 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25534717ns 448364 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25535001ns 448369 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25535285ns 448374 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25535740ns 448382 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25535910ns 448385 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25536195ns 448390 1a110850 fd5ff06f jal x0, -44 +25536479ns 448395 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25536763ns 448400 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25537161ns 448407 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25537331ns 448410 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25537786ns 448418 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25537956ns 448421 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25538241ns 448426 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25538525ns 448431 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25538809ns 448436 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25539264ns 448444 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25539434ns 448447 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25539718ns 448452 1a110850 fd5ff06f jal x0, -44 +25540002ns 448457 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25540287ns 448462 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25540684ns 448469 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25540855ns 448472 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25541309ns 448480 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25541480ns 448483 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25541764ns 448488 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25542048ns 448493 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25542332ns 448498 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25542787ns 448506 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25542958ns 448509 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25543242ns 448514 1a110850 fd5ff06f jal x0, -44 +25543526ns 448519 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25543810ns 448524 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25544208ns 448531 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25544378ns 448534 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25544833ns 448542 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25545004ns 448545 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25545288ns 448550 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25545572ns 448555 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25545856ns 448560 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25546311ns 448568 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25546481ns 448571 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25546765ns 448576 1a110850 fd5ff06f jal x0, -44 +25547050ns 448581 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25547334ns 448586 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25547731ns 448593 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25547902ns 448596 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25548357ns 448604 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25548527ns 448607 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25548811ns 448612 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25549095ns 448617 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25549380ns 448622 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25549834ns 448630 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25550005ns 448633 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25550289ns 448638 1a110850 fd5ff06f jal x0, -44 +25550573ns 448643 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25550857ns 448648 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25551255ns 448655 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25551426ns 448658 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25551880ns 448666 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25552051ns 448669 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25552335ns 448674 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25552619ns 448679 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25552903ns 448684 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25553358ns 448692 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25553528ns 448695 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25553813ns 448700 1a110850 fd5ff06f jal x0, -44 +25554097ns 448705 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25554381ns 448710 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25554779ns 448717 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25554949ns 448720 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25555404ns 448728 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25555574ns 448731 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25555858ns 448736 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25556143ns 448741 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25556427ns 448746 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25556881ns 448754 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25557052ns 448757 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25557336ns 448762 1a110850 fd5ff06f jal x0, -44 +25557620ns 448767 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25557904ns 448772 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25558302ns 448779 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25558473ns 448782 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25558927ns 448790 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25559098ns 448793 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25559382ns 448798 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25559666ns 448803 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25559950ns 448808 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25560405ns 448816 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25560576ns 448819 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25560860ns 448824 1a110850 fd5ff06f jal x0, -44 +25561144ns 448829 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25561428ns 448834 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25561826ns 448841 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25561996ns 448844 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25562451ns 448852 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25562621ns 448855 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25562906ns 448860 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25563190ns 448865 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25563474ns 448870 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25563929ns 448878 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25564099ns 448881 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25564383ns 448886 1a110850 fd5ff06f jal x0, -44 +25564667ns 448891 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25564952ns 448896 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25565349ns 448903 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25565520ns 448906 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25565975ns 448914 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25566145ns 448917 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25566429ns 448922 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25566713ns 448927 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25566998ns 448932 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25567452ns 448940 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25567623ns 448943 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25567907ns 448948 1a110850 fd5ff06f jal x0, -44 +25568191ns 448953 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25568475ns 448958 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25568873ns 448965 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25569043ns 448968 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25569498ns 448976 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25569669ns 448979 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25569953ns 448984 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25570237ns 448989 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25570521ns 448994 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25570976ns 449002 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25571146ns 449005 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25571430ns 449010 1a110850 fd5ff06f jal x0, -44 +25571715ns 449015 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25571999ns 449020 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25572397ns 449027 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25572567ns 449030 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25573022ns 449038 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25573192ns 449041 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25573476ns 449046 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25573761ns 449051 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25574045ns 449056 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25574499ns 449064 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25574670ns 449067 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25574954ns 449072 1a110850 fd5ff06f jal x0, -44 +25575238ns 449077 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25575522ns 449082 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25575920ns 449089 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25576091ns 449092 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25576545ns 449100 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25576716ns 449103 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25577000ns 449108 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25577284ns 449113 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25577568ns 449118 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25578023ns 449126 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25578193ns 449129 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25578478ns 449134 1a110850 fd5ff06f jal x0, -44 +25578762ns 449139 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25579046ns 449144 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25579444ns 449151 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25579614ns 449154 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25580069ns 449162 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25580239ns 449165 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25580524ns 449170 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25580808ns 449175 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25581092ns 449180 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25581547ns 449188 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25581717ns 449191 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25582001ns 449196 1a110850 fd5ff06f jal x0, -44 +25582285ns 449201 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25582570ns 449206 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25582967ns 449213 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25583138ns 449216 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25583592ns 449224 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25583763ns 449227 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25584047ns 449232 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25584331ns 449237 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25584615ns 449242 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25585070ns 449250 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25585241ns 449253 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25585525ns 449258 1a110850 fd5ff06f jal x0, -44 +25585809ns 449263 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25586093ns 449268 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25586491ns 449275 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25586661ns 449278 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25587116ns 449286 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25587287ns 449289 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25587571ns 449294 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25587855ns 449299 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25588139ns 449304 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25588594ns 449312 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25588764ns 449315 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25589048ns 449320 1a110850 fd5ff06f jal x0, -44 +25589333ns 449325 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25589617ns 449330 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25590015ns 449337 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25590185ns 449340 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25590640ns 449348 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25590810ns 449351 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25591094ns 449356 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25591378ns 449361 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25591663ns 449366 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25592117ns 449374 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25592288ns 449377 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25592572ns 449382 1a110850 fd5ff06f jal x0, -44 +25592856ns 449387 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25593140ns 449392 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25593538ns 449399 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25593709ns 449402 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25594163ns 449410 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25594334ns 449413 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25594618ns 449418 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25594902ns 449423 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25595186ns 449428 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25595641ns 449436 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25595811ns 449439 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25596096ns 449444 1a110850 fd5ff06f jal x0, -44 +25596380ns 449449 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25596664ns 449454 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25597062ns 449461 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25597232ns 449464 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25597687ns 449472 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25597857ns 449475 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25598141ns 449480 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25598426ns 449485 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25598710ns 449490 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25599164ns 449498 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25599335ns 449501 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25599619ns 449506 1a110850 fd5ff06f jal x0, -44 +25599903ns 449511 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25600187ns 449516 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25600585ns 449523 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25600756ns 449526 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25601210ns 449534 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25601381ns 449537 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25601665ns 449542 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25601949ns 449547 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25602233ns 449552 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25602688ns 449560 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25602859ns 449563 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25603143ns 449568 1a110850 fd5ff06f jal x0, -44 +25603427ns 449573 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25603711ns 449578 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25604109ns 449585 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25604279ns 449588 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25604734ns 449596 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25604904ns 449599 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25605189ns 449604 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25605473ns 449609 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25605757ns 449614 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25606212ns 449622 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25606382ns 449625 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25606666ns 449630 1a110850 fd5ff06f jal x0, -44 +25606950ns 449635 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25607235ns 449640 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25607632ns 449647 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25607803ns 449650 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25608258ns 449658 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25608428ns 449661 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25608712ns 449666 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25608996ns 449671 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25609281ns 449676 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25609735ns 449684 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25609906ns 449687 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25610190ns 449692 1a110850 fd5ff06f jal x0, -44 +25610474ns 449697 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25610758ns 449702 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25611156ns 449709 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25611327ns 449712 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25611781ns 449720 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25611952ns 449723 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25612236ns 449728 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25612520ns 449733 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25612804ns 449738 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25613259ns 449746 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25613429ns 449749 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25613713ns 449754 1a110850 fd5ff06f jal x0, -44 +25613998ns 449759 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25614282ns 449764 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25614680ns 449771 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25614850ns 449774 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25615305ns 449782 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25615475ns 449785 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25615759ns 449790 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25616044ns 449795 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25616328ns 449800 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25616782ns 449808 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25616953ns 449811 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25617237ns 449816 1a110850 fd5ff06f jal x0, -44 +25617521ns 449821 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25617805ns 449826 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25618203ns 449833 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25618374ns 449836 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25618828ns 449844 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25618999ns 449847 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25619283ns 449852 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25619567ns 449857 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25619851ns 449862 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25620306ns 449870 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25620476ns 449873 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25620761ns 449878 1a110850 fd5ff06f jal x0, -44 +25621045ns 449883 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25621329ns 449888 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25621727ns 449895 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25621897ns 449898 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25622352ns 449906 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25622522ns 449909 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25622807ns 449914 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25623091ns 449919 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25623375ns 449924 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25623830ns 449932 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25624000ns 449935 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25624284ns 449940 1a110850 fd5ff06f jal x0, -44 +25624568ns 449945 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25624853ns 449950 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25625250ns 449957 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25625421ns 449960 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25625875ns 449968 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25626046ns 449971 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25626330ns 449976 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25626614ns 449981 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25626898ns 449986 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25627353ns 449994 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25627524ns 449997 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25627808ns 450002 1a110850 fd5ff06f jal x0, -44 +25628092ns 450007 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25628376ns 450012 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25628774ns 450019 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25628944ns 450022 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25629399ns 450030 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25629570ns 450033 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25629854ns 450038 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25630138ns 450043 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25630422ns 450048 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25630877ns 450056 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25631047ns 450059 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25631331ns 450064 1a110850 fd5ff06f jal x0, -44 +25631616ns 450069 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25631900ns 450074 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25632298ns 450081 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25632468ns 450084 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25632923ns 450092 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25633093ns 450095 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25633377ns 450100 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25633661ns 450105 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25633946ns 450110 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25634400ns 450118 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25634571ns 450121 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25634855ns 450126 1a110850 fd5ff06f jal x0, -44 +25635139ns 450131 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25635423ns 450136 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25635821ns 450143 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25635992ns 450146 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25636446ns 450154 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25636617ns 450157 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25636901ns 450162 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25637185ns 450167 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25637469ns 450172 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25637924ns 450180 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25638094ns 450183 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25638379ns 450188 1a110850 fd5ff06f jal x0, -44 +25638663ns 450193 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25638947ns 450198 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25639345ns 450205 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25639515ns 450208 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25639970ns 450216 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25640140ns 450219 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25640424ns 450224 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25640709ns 450229 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25640993ns 450234 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25641447ns 450242 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25641618ns 450245 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25641902ns 450250 1a110850 fd5ff06f jal x0, -44 +25642186ns 450255 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25642470ns 450260 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25642868ns 450267 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25643039ns 450270 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25643493ns 450278 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25643664ns 450281 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25643948ns 450286 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25644232ns 450291 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25644516ns 450296 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25644971ns 450304 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25645142ns 450307 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25645426ns 450312 1a110850 fd5ff06f jal x0, -44 +25645710ns 450317 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25645994ns 450322 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25646392ns 450329 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25646562ns 450332 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25647017ns 450340 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25647187ns 450343 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25647472ns 450348 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25647756ns 450353 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25648040ns 450358 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25648495ns 450366 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25648665ns 450369 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25648949ns 450374 1a110850 fd5ff06f jal x0, -44 +25649233ns 450379 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25649518ns 450384 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25649915ns 450391 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25650086ns 450394 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25650541ns 450402 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25650711ns 450405 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25650995ns 450410 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25651279ns 450415 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25651564ns 450420 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25652018ns 450428 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25652189ns 450431 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25652473ns 450436 1a110850 fd5ff06f jal x0, -44 +25652757ns 450441 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25653041ns 450446 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25653439ns 450453 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25653610ns 450456 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25654064ns 450464 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25654235ns 450467 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25654519ns 450472 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25654803ns 450477 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25655087ns 450482 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25655542ns 450490 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25655712ns 450493 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25655996ns 450498 1a110850 fd5ff06f jal x0, -44 +25656281ns 450503 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25656565ns 450508 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25656963ns 450515 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25657133ns 450518 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25657588ns 450526 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25657758ns 450529 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25658042ns 450534 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25658327ns 450539 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25658611ns 450544 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25659065ns 450552 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25659236ns 450555 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25659520ns 450560 1a110850 fd5ff06f jal x0, -44 +25659804ns 450565 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25660088ns 450570 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25660486ns 450577 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25660657ns 450580 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25661111ns 450588 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25661282ns 450591 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25661566ns 450596 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25661850ns 450601 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25662134ns 450606 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25662589ns 450614 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25662759ns 450617 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25663044ns 450622 1a110850 fd5ff06f jal x0, -44 +25663328ns 450627 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25663612ns 450632 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25664010ns 450639 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25664180ns 450642 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25664635ns 450650 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25664805ns 450653 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25665090ns 450658 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25665374ns 450663 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25665658ns 450668 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25666113ns 450676 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25666283ns 450679 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25666567ns 450684 1a110850 fd5ff06f jal x0, -44 +25666851ns 450689 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25667136ns 450694 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25667533ns 450701 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25667704ns 450704 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25668159ns 450712 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25668329ns 450715 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25668613ns 450720 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25668897ns 450725 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25669181ns 450730 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25669636ns 450738 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25669807ns 450741 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25670091ns 450746 1a110850 fd5ff06f jal x0, -44 +25670375ns 450751 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25670659ns 450756 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25671057ns 450763 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25671227ns 450766 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25671682ns 450774 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25671853ns 450777 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25672137ns 450782 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25672421ns 450787 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25672705ns 450792 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25673160ns 450800 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25673330ns 450803 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25673614ns 450808 1a110850 fd5ff06f jal x0, -44 +25673899ns 450813 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25674183ns 450818 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25674581ns 450825 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25674751ns 450828 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25675206ns 450836 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25675376ns 450839 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25675660ns 450844 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25675944ns 450849 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25676229ns 450854 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25676683ns 450862 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25676854ns 450865 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25677138ns 450870 1a110850 fd5ff06f jal x0, -44 +25677422ns 450875 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25677706ns 450880 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25678104ns 450887 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25678275ns 450890 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25678729ns 450898 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25678900ns 450901 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25679184ns 450906 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25679468ns 450911 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25679752ns 450916 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25680207ns 450924 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25680377ns 450927 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25680662ns 450932 1a110850 fd5ff06f jal x0, -44 +25680946ns 450937 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25681230ns 450942 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25681628ns 450949 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25681798ns 450952 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25682253ns 450960 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25682423ns 450963 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25682707ns 450968 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25682992ns 450973 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25683276ns 450978 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25683730ns 450986 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25683901ns 450989 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25684185ns 450994 1a110850 fd5ff06f jal x0, -44 +25684469ns 450999 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25684753ns 451004 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25685151ns 451011 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25685322ns 451014 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25685776ns 451022 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25685947ns 451025 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25686231ns 451030 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25686515ns 451035 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25686799ns 451040 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25687254ns 451048 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25687425ns 451051 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25687709ns 451056 1a110850 fd5ff06f jal x0, -44 +25687993ns 451061 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25688277ns 451066 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25688675ns 451073 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25688845ns 451076 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25689300ns 451084 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25689471ns 451087 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25689755ns 451092 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25690039ns 451097 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25690323ns 451102 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25690778ns 451110 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25690948ns 451113 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25691232ns 451118 1a110850 fd5ff06f jal x0, -44 +25691516ns 451123 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25691801ns 451128 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25692198ns 451135 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25692369ns 451138 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25692824ns 451146 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25692994ns 451149 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25693278ns 451154 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25693562ns 451159 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25693847ns 451164 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25694301ns 451172 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25694472ns 451175 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25694756ns 451180 1a110850 fd5ff06f jal x0, -44 +25695040ns 451185 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25695324ns 451190 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25695722ns 451197 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25695893ns 451200 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25696347ns 451208 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25696518ns 451211 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25696802ns 451216 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25697086ns 451221 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25697370ns 451226 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25697825ns 451234 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25697995ns 451237 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25698279ns 451242 1a110850 fd5ff06f jal x0, -44 +25698564ns 451247 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25698848ns 451252 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25699246ns 451259 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25699416ns 451262 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25699871ns 451270 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25700041ns 451273 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25700325ns 451278 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25700610ns 451283 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25700894ns 451288 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25701348ns 451296 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25701519ns 451299 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25701803ns 451304 1a110850 fd5ff06f jal x0, -44 +25702087ns 451309 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25702371ns 451314 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25702769ns 451321 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25702940ns 451324 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25703394ns 451332 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25703565ns 451335 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25703849ns 451340 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25704133ns 451345 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25704417ns 451350 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25704872ns 451358 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25705042ns 451361 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25705327ns 451366 1a110850 fd5ff06f jal x0, -44 +25705611ns 451371 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25705895ns 451376 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25706293ns 451383 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25706463ns 451386 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25706918ns 451394 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25707088ns 451397 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25707373ns 451402 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25707657ns 451407 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25707941ns 451412 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25708396ns 451420 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25708566ns 451423 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25708850ns 451428 1a110850 fd5ff06f jal x0, -44 +25709134ns 451433 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25709419ns 451438 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25709816ns 451445 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25709987ns 451448 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25710442ns 451456 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25710612ns 451459 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25710896ns 451464 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25711180ns 451469 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25711464ns 451474 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25711919ns 451482 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25712090ns 451485 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25712374ns 451490 1a110850 fd5ff06f jal x0, -44 +25712658ns 451495 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25712942ns 451500 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25713340ns 451507 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25713510ns 451510 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25713965ns 451518 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25714136ns 451521 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25714420ns 451526 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25714704ns 451531 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25714988ns 451536 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25715443ns 451544 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25715613ns 451547 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25715897ns 451552 1a110850 fd5ff06f jal x0, -44 +25716182ns 451557 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25716466ns 451562 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25716864ns 451569 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25717034ns 451572 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25717489ns 451580 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25717659ns 451583 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25717943ns 451588 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25718227ns 451593 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25718512ns 451598 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25718966ns 451606 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25719137ns 451609 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25719421ns 451614 1a110850 fd5ff06f jal x0, -44 +25719705ns 451619 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25719989ns 451624 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25720387ns 451631 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25720558ns 451634 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25721012ns 451642 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25721183ns 451645 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25721467ns 451650 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25721751ns 451655 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25722035ns 451660 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25722490ns 451668 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25722660ns 451671 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25722945ns 451676 1a110850 fd5ff06f jal x0, -44 +25723229ns 451681 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25723513ns 451686 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25723911ns 451693 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25724081ns 451696 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25724536ns 451704 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25724706ns 451707 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25724991ns 451712 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25725275ns 451717 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25725559ns 451722 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25726013ns 451730 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25726184ns 451733 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25726468ns 451738 1a110850 fd5ff06f jal x0, -44 +25726752ns 451743 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25727036ns 451748 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25727434ns 451755 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25727605ns 451758 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25728059ns 451766 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25728230ns 451769 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25728514ns 451774 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25728798ns 451779 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25729082ns 451784 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25729537ns 451792 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25729708ns 451795 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25729992ns 451800 1a110850 fd5ff06f jal x0, -44 +25730276ns 451805 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25730560ns 451810 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25730958ns 451817 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25731128ns 451820 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25731583ns 451828 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25731754ns 451831 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25732038ns 451836 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25732322ns 451841 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25732606ns 451846 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25733061ns 451854 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25733231ns 451857 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25733515ns 451862 1a110850 fd5ff06f jal x0, -44 +25733799ns 451867 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25734084ns 451872 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25734481ns 451879 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25734652ns 451882 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25735107ns 451890 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25735277ns 451893 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25735561ns 451898 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25735845ns 451903 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25736130ns 451908 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25736584ns 451916 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25736755ns 451919 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25737039ns 451924 1a110850 fd5ff06f jal x0, -44 +25737323ns 451929 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25737607ns 451934 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25738005ns 451941 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25738176ns 451944 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25738630ns 451952 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25738801ns 451955 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25739085ns 451960 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25739369ns 451965 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25739653ns 451970 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25740108ns 451978 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25740278ns 451981 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25740562ns 451986 1a110850 fd5ff06f jal x0, -44 +25740847ns 451991 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25741131ns 451996 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25741529ns 452003 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25741699ns 452006 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25742154ns 452014 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25742324ns 452017 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25742608ns 452022 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25742893ns 452027 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25743177ns 452032 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25743631ns 452040 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25743802ns 452043 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25744086ns 452048 1a110850 fd5ff06f jal x0, -44 +25744370ns 452053 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25744654ns 452058 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25745052ns 452065 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25745223ns 452068 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25745677ns 452076 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25745848ns 452079 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25746132ns 452084 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25746416ns 452089 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25746700ns 452094 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25747155ns 452102 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25747325ns 452105 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25747610ns 452110 1a110850 fd5ff06f jal x0, -44 +25747894ns 452115 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25748178ns 452120 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25748576ns 452127 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25748746ns 452130 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25749201ns 452138 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25749371ns 452141 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25749656ns 452146 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25749940ns 452151 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25750224ns 452156 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25750679ns 452164 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25750849ns 452167 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25751133ns 452172 1a110850 fd5ff06f jal x0, -44 +25751417ns 452177 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25751702ns 452182 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25752099ns 452189 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25752270ns 452192 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25752725ns 452200 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25752895ns 452203 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25753179ns 452208 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25753463ns 452213 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25753747ns 452218 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25754202ns 452226 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25754373ns 452229 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25754657ns 452234 1a110850 fd5ff06f jal x0, -44 +25754941ns 452239 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25755225ns 452244 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25755623ns 452251 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25755793ns 452254 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25756248ns 452262 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25756419ns 452265 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25756703ns 452270 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25756987ns 452275 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25757271ns 452280 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25757726ns 452288 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25757896ns 452291 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25758180ns 452296 1a110850 fd5ff06f jal x0, -44 +25758465ns 452301 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25758749ns 452306 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25759147ns 452313 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25759317ns 452316 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25759772ns 452324 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25759942ns 452327 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25760226ns 452332 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25760511ns 452337 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25760795ns 452342 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25761249ns 452350 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25761420ns 452353 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25761704ns 452358 1a110850 fd5ff06f jal x0, -44 +25761988ns 452363 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25762272ns 452368 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25762670ns 452375 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25762841ns 452378 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25763295ns 452386 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25763466ns 452389 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25763750ns 452394 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25764034ns 452399 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25764318ns 452404 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25764773ns 452412 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25764943ns 452415 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25765228ns 452420 1a110850 fd5ff06f jal x0, -44 +25765512ns 452425 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25765796ns 452430 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25766194ns 452437 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25766364ns 452440 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25766819ns 452448 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25766989ns 452451 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25767274ns 452456 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25767558ns 452461 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25767842ns 452466 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25768296ns 452474 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25768467ns 452477 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25768751ns 452482 1a110850 fd5ff06f jal x0, -44 +25769035ns 452487 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25769319ns 452492 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25769717ns 452499 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25769888ns 452502 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25770342ns 452510 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25770513ns 452513 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25770797ns 452518 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25771081ns 452523 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25771365ns 452528 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25771820ns 452536 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25771991ns 452539 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25772275ns 452544 1a110850 fd5ff06f jal x0, -44 +25772559ns 452549 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25772843ns 452554 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25773241ns 452561 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25773411ns 452564 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25773866ns 452572 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25774037ns 452575 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25774321ns 452580 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25774605ns 452585 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25774889ns 452590 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25775344ns 452598 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25775514ns 452601 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25775798ns 452606 1a110850 fd5ff06f jal x0, -44 +25776082ns 452611 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25776367ns 452616 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25776764ns 452623 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25776935ns 452626 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25777390ns 452634 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25777560ns 452637 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25777844ns 452642 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25778128ns 452647 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25778413ns 452652 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25778867ns 452660 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25779038ns 452663 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25779322ns 452668 1a110850 fd5ff06f jal x0, -44 +25779606ns 452673 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25779890ns 452678 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25780288ns 452685 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25780459ns 452688 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25780913ns 452696 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25781084ns 452699 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25781368ns 452704 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25781652ns 452709 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25781936ns 452714 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25782391ns 452722 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25782561ns 452725 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25782845ns 452730 1a110850 fd5ff06f jal x0, -44 +25783130ns 452735 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25783414ns 452740 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25783812ns 452747 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25783982ns 452750 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25784437ns 452758 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25784607ns 452761 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25784891ns 452766 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25785176ns 452771 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25785460ns 452776 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25785914ns 452784 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25786085ns 452787 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25786369ns 452792 1a110850 fd5ff06f jal x0, -44 +25786653ns 452797 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25786937ns 452802 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25787335ns 452809 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25787506ns 452812 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25787960ns 452820 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25788131ns 452823 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25788415ns 452828 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25788699ns 452833 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25788983ns 452838 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25789438ns 452846 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25789608ns 452849 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25789893ns 452854 1a110850 fd5ff06f jal x0, -44 +25790177ns 452859 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25790461ns 452864 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25790859ns 452871 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25791029ns 452874 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25791484ns 452882 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25791654ns 452885 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25791939ns 452890 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25792223ns 452895 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25792507ns 452900 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25792962ns 452908 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25793132ns 452911 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25793416ns 452916 1a110850 fd5ff06f jal x0, -44 +25793700ns 452921 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25793985ns 452926 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25794382ns 452933 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25794553ns 452936 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25795008ns 452944 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25795178ns 452947 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25795462ns 452952 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25795746ns 452957 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25796031ns 452962 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25796485ns 452970 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25796656ns 452973 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25796940ns 452978 1a110850 fd5ff06f jal x0, -44 +25797224ns 452983 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25797508ns 452988 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25797906ns 452995 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25798076ns 452998 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25798531ns 453006 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25798702ns 453009 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25798986ns 453014 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25799270ns 453019 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25799554ns 453024 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25800009ns 453032 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25800179ns 453035 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25800463ns 453040 1a110850 fd5ff06f jal x0, -44 +25800748ns 453045 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25801032ns 453050 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25801430ns 453057 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25801600ns 453060 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25802055ns 453068 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25802225ns 453071 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25802509ns 453076 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25802794ns 453081 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25803078ns 453086 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25803532ns 453094 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25803703ns 453097 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25803987ns 453102 1a110850 fd5ff06f jal x0, -44 +25804271ns 453107 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25804555ns 453112 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25804953ns 453119 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25805124ns 453122 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25805578ns 453130 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25805749ns 453133 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25806033ns 453138 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25806317ns 453143 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25806601ns 453148 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25807056ns 453156 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25807226ns 453159 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25807511ns 453164 1a110850 fd5ff06f jal x0, -44 +25807795ns 453169 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25808079ns 453174 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25808477ns 453181 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25808647ns 453184 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25809102ns 453192 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25809272ns 453195 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25809557ns 453200 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25809841ns 453205 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25810125ns 453210 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25810579ns 453218 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25810750ns 453221 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25811034ns 453226 1a110850 fd5ff06f jal x0, -44 +25811318ns 453231 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25811602ns 453236 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25812000ns 453243 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25812171ns 453246 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25812625ns 453254 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25812796ns 453257 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25813080ns 453262 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25813364ns 453267 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25813648ns 453272 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25814103ns 453280 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25814274ns 453283 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25814558ns 453288 1a110850 fd5ff06f jal x0, -44 +25814842ns 453293 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25815126ns 453298 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25815524ns 453305 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25815694ns 453308 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25816149ns 453316 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25816320ns 453319 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25816604ns 453324 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25816888ns 453329 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25817172ns 453334 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25817627ns 453342 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25817797ns 453345 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25818081ns 453350 1a110850 fd5ff06f jal x0, -44 +25818365ns 453355 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25818650ns 453360 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25819047ns 453367 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25819218ns 453370 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25819673ns 453378 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25819843ns 453381 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25820127ns 453386 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25820411ns 453391 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25820696ns 453396 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25821150ns 453404 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25821321ns 453407 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25821605ns 453412 1a110850 fd5ff06f jal x0, -44 +25821889ns 453417 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25822173ns 453422 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25822571ns 453429 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25822742ns 453432 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25823196ns 453440 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25823367ns 453443 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25823651ns 453448 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25823935ns 453453 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25824219ns 453458 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25824674ns 453466 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25824844ns 453469 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25825128ns 453474 1a110850 fd5ff06f jal x0, -44 +25825413ns 453479 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25825697ns 453484 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25826095ns 453491 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25826265ns 453494 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25826720ns 453502 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25826890ns 453505 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25827174ns 453510 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25827459ns 453515 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25827743ns 453520 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25828197ns 453528 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25828368ns 453531 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25828652ns 453536 1a110850 fd5ff06f jal x0, -44 +25828936ns 453541 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25829220ns 453546 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25829618ns 453553 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25829789ns 453556 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25830243ns 453564 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25830414ns 453567 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25830698ns 453572 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25830982ns 453577 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25831266ns 453582 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25831721ns 453590 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25831891ns 453593 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25832176ns 453598 1a110850 fd5ff06f jal x0, -44 +25832460ns 453603 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25832744ns 453608 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25833142ns 453615 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25833312ns 453618 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25833767ns 453626 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25833937ns 453629 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25834222ns 453634 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25834506ns 453639 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25834790ns 453644 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25835245ns 453652 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25835415ns 453655 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25835699ns 453660 1a110850 fd5ff06f jal x0, -44 +25835983ns 453665 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25836268ns 453670 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25836665ns 453677 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25836836ns 453680 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25837291ns 453688 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25837461ns 453691 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25837745ns 453696 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25838029ns 453701 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25838314ns 453706 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25838768ns 453714 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25838939ns 453717 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25839223ns 453722 1a110850 fd5ff06f jal x0, -44 +25839507ns 453727 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25839791ns 453732 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25840189ns 453739 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25840359ns 453742 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25840814ns 453750 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25840985ns 453753 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25841269ns 453758 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25841553ns 453763 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25841837ns 453768 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25842292ns 453776 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25842462ns 453779 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25842746ns 453784 1a110850 fd5ff06f jal x0, -44 +25843031ns 453789 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25843315ns 453794 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25843713ns 453801 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25843883ns 453804 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25844338ns 453812 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25844508ns 453815 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25844792ns 453820 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25845077ns 453825 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25845361ns 453830 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25845815ns 453838 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25845986ns 453841 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25846270ns 453846 1a110850 fd5ff06f jal x0, -44 +25846554ns 453851 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25846838ns 453856 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25847236ns 453863 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25847407ns 453866 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25847861ns 453874 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25848032ns 453877 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25848316ns 453882 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25848600ns 453887 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25848884ns 453892 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25849339ns 453900 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25849509ns 453903 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25849794ns 453908 1a110850 fd5ff06f jal x0, -44 +25850078ns 453913 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25850362ns 453918 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25850760ns 453925 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25850930ns 453928 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25851385ns 453936 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25851555ns 453939 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25851840ns 453944 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25852124ns 453949 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25852408ns 453954 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25852863ns 453962 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25853033ns 453965 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25853317ns 453970 1a110850 fd5ff06f jal x0, -44 +25853601ns 453975 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25853885ns 453980 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25854283ns 453987 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25854454ns 453990 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25854908ns 453998 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25855079ns 454001 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25855363ns 454006 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25855647ns 454011 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25855931ns 454016 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25856386ns 454024 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25856557ns 454027 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25856841ns 454032 1a110850 fd5ff06f jal x0, -44 +25857125ns 454037 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25857409ns 454042 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25857807ns 454049 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25857977ns 454052 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25858432ns 454060 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25858603ns 454063 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25858887ns 454068 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25859171ns 454073 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25859455ns 454078 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25859910ns 454086 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25860080ns 454089 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25860364ns 454094 1a110850 fd5ff06f jal x0, -44 +25860648ns 454099 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25860933ns 454104 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25861330ns 454111 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25861501ns 454114 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25861956ns 454122 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25862126ns 454125 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25862410ns 454130 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25862694ns 454135 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25862979ns 454140 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25863433ns 454148 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25863604ns 454151 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25863888ns 454156 1a110850 fd5ff06f jal x0, -44 +25864172ns 454161 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25864456ns 454166 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25864854ns 454173 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25865025ns 454176 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25865479ns 454184 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25865650ns 454187 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25865934ns 454192 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25866218ns 454197 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25866502ns 454202 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25866957ns 454210 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25867127ns 454213 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25867411ns 454218 1a110850 fd5ff06f jal x0, -44 +25867696ns 454223 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25867980ns 454228 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25868378ns 454235 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25868548ns 454238 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25869003ns 454246 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25869173ns 454249 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25869457ns 454254 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25869742ns 454259 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25870026ns 454264 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25870480ns 454272 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25870651ns 454275 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25870935ns 454280 1a110850 fd5ff06f jal x0, -44 +25871219ns 454285 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25871503ns 454290 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25871901ns 454297 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25872072ns 454300 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25872526ns 454308 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25872697ns 454311 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25872981ns 454316 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25873265ns 454321 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25873549ns 454326 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25874004ns 454334 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25874175ns 454337 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25874459ns 454342 1a110850 fd5ff06f jal x0, -44 +25874743ns 454347 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25875027ns 454352 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25875425ns 454359 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25875595ns 454362 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25876050ns 454370 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25876220ns 454373 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25876505ns 454378 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25876789ns 454383 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25877073ns 454388 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25877528ns 454396 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25877698ns 454399 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25877982ns 454404 1a110850 fd5ff06f jal x0, -44 +25878266ns 454409 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25878551ns 454414 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25878948ns 454421 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25879119ns 454424 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25879574ns 454432 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25879744ns 454435 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25880028ns 454440 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25880312ns 454445 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25880597ns 454450 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25881051ns 454458 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25881222ns 454461 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25881506ns 454466 1a110850 fd5ff06f jal x0, -44 +25881790ns 454471 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25882074ns 454476 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25882472ns 454483 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25882642ns 454486 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25883097ns 454494 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25883268ns 454497 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25883552ns 454502 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25883836ns 454507 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25884120ns 454512 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25884575ns 454520 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25884745ns 454523 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25885029ns 454528 1a110850 fd5ff06f jal x0, -44 +25885314ns 454533 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25885598ns 454538 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25885996ns 454545 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25886166ns 454548 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25886621ns 454556 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25886791ns 454559 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25887075ns 454564 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25887360ns 454569 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25887644ns 454574 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25888098ns 454582 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25888269ns 454585 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25888553ns 454590 1a110850 fd5ff06f jal x0, -44 +25888837ns 454595 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25889121ns 454600 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25889519ns 454607 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25889690ns 454610 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25890144ns 454618 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25890315ns 454621 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25890599ns 454626 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25890883ns 454631 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25891167ns 454636 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25891622ns 454644 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25891792ns 454647 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25892077ns 454652 1a110850 fd5ff06f jal x0, -44 +25892361ns 454657 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25892645ns 454662 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25893043ns 454669 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25893213ns 454672 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25893668ns 454680 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25893838ns 454683 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25894123ns 454688 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25894407ns 454693 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25894691ns 454698 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25895146ns 454706 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25895316ns 454709 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25895600ns 454714 1a110850 fd5ff06f jal x0, -44 +25895884ns 454719 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25896168ns 454724 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25896566ns 454731 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25896737ns 454734 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25897191ns 454742 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25897362ns 454745 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25897646ns 454750 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25897930ns 454755 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25898214ns 454760 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25898669ns 454768 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25898840ns 454771 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25899124ns 454776 1a110850 fd5ff06f jal x0, -44 +25899408ns 454781 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25899692ns 454786 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25900090ns 454793 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25900260ns 454796 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25900715ns 454804 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25900886ns 454807 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25901170ns 454812 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25901454ns 454817 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25901738ns 454822 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25902193ns 454830 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25902363ns 454833 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25902647ns 454838 1a110850 fd5ff06f jal x0, -44 +25902931ns 454843 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25903216ns 454848 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25903613ns 454855 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25903784ns 454858 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25904239ns 454866 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25904409ns 454869 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25904693ns 454874 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25904977ns 454879 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25905262ns 454884 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25905716ns 454892 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25905887ns 454895 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25906171ns 454900 1a110850 fd5ff06f jal x0, -44 +25906455ns 454905 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25906739ns 454910 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25907137ns 454917 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25907308ns 454920 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25907762ns 454928 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25907933ns 454931 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25908217ns 454936 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25908501ns 454941 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25908785ns 454946 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25909240ns 454954 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25909410ns 454957 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25909695ns 454962 1a110850 fd5ff06f jal x0, -44 +25909979ns 454967 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25910263ns 454972 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25910661ns 454979 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25910831ns 454982 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25911286ns 454990 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25911456ns 454993 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25911740ns 454998 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25912025ns 455003 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25912309ns 455008 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25912763ns 455016 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25912934ns 455019 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25913218ns 455024 1a110850 fd5ff06f jal x0, -44 +25913502ns 455029 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25913786ns 455034 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25914184ns 455041 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25914355ns 455044 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25914809ns 455052 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25914980ns 455055 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25915264ns 455060 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25915548ns 455065 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25915832ns 455070 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25916287ns 455078 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25916458ns 455081 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25916742ns 455086 1a110850 fd5ff06f jal x0, -44 +25917026ns 455091 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25917310ns 455096 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25917708ns 455103 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25917878ns 455106 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25918333ns 455114 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25918503ns 455117 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25918788ns 455122 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25919072ns 455127 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25919356ns 455132 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25919811ns 455140 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25919981ns 455143 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25920265ns 455148 1a110850 fd5ff06f jal x0, -44 +25920549ns 455153 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25920834ns 455158 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25921231ns 455165 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25921402ns 455168 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25921857ns 455176 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25922027ns 455179 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25922311ns 455184 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25922595ns 455189 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25922880ns 455194 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25923334ns 455202 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25923505ns 455205 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25923789ns 455210 1a110850 fd5ff06f jal x0, -44 +25924073ns 455215 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25924357ns 455220 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25924755ns 455227 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25924925ns 455230 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25925380ns 455238 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25925551ns 455241 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25925835ns 455246 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25926119ns 455251 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25926403ns 455256 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25926858ns 455264 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25927028ns 455267 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25927312ns 455272 1a110850 fd5ff06f jal x0, -44 +25927597ns 455277 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25927881ns 455282 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25928279ns 455289 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25928449ns 455292 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25928904ns 455300 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25929074ns 455303 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25929358ns 455308 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25929643ns 455313 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25929927ns 455318 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25930381ns 455326 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25930552ns 455329 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25930836ns 455334 1a110850 fd5ff06f jal x0, -44 +25931120ns 455339 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25931404ns 455344 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25931802ns 455351 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25931973ns 455354 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25932427ns 455362 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25932598ns 455365 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25932882ns 455370 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25933166ns 455375 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25933450ns 455380 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25933905ns 455388 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25934075ns 455391 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25934360ns 455396 1a110850 fd5ff06f jal x0, -44 +25934644ns 455401 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25934928ns 455406 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25935326ns 455413 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25935496ns 455416 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25935951ns 455424 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25936121ns 455427 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25936406ns 455432 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25936690ns 455437 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25936974ns 455442 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25937429ns 455450 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25937599ns 455453 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25937883ns 455458 1a110850 fd5ff06f jal x0, -44 +25938167ns 455463 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25938451ns 455468 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25938849ns 455475 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25939020ns 455478 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25939474ns 455486 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25939645ns 455489 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25939929ns 455494 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25940213ns 455499 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25940497ns 455504 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25940952ns 455512 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25941123ns 455515 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25941407ns 455520 1a110850 fd5ff06f jal x0, -44 +25941691ns 455525 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25941975ns 455530 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25942373ns 455537 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25942543ns 455540 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25942998ns 455548 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25943169ns 455551 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25943453ns 455556 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25943737ns 455561 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25944021ns 455566 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25944476ns 455574 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25944646ns 455577 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25944930ns 455582 1a110850 fd5ff06f jal x0, -44 +25945215ns 455587 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25945499ns 455592 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25945896ns 455599 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25946067ns 455602 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25946522ns 455610 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25946692ns 455613 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25946976ns 455618 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25947260ns 455623 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25947545ns 455628 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25947999ns 455636 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25948170ns 455639 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25948454ns 455644 1a110850 fd5ff06f jal x0, -44 +25948738ns 455649 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25949022ns 455654 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25949420ns 455661 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25949591ns 455664 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25950045ns 455672 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25950216ns 455675 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25950500ns 455680 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25950784ns 455685 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25951068ns 455690 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25951523ns 455698 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25951693ns 455701 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25951978ns 455706 1a110850 fd5ff06f jal x0, -44 +25952262ns 455711 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25952546ns 455716 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25952944ns 455723 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25953114ns 455726 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25953569ns 455734 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25953739ns 455737 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25954023ns 455742 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25954308ns 455747 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25954592ns 455752 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25955046ns 455760 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25955217ns 455763 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25955501ns 455768 1a110850 fd5ff06f jal x0, -44 +25955785ns 455773 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25956069ns 455778 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25956467ns 455785 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25956638ns 455788 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25957092ns 455796 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25957263ns 455799 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25957547ns 455804 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25957831ns 455809 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25958115ns 455814 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25958570ns 455822 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25958741ns 455825 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25959025ns 455830 1a110850 fd5ff06f jal x0, -44 +25959309ns 455835 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25959593ns 455840 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25959991ns 455847 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25960161ns 455850 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25960616ns 455858 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25960786ns 455861 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25961071ns 455866 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25961355ns 455871 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25961639ns 455876 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25962094ns 455884 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25962264ns 455887 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25962548ns 455892 1a110850 fd5ff06f jal x0, -44 +25962832ns 455897 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25963117ns 455902 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25963514ns 455909 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25963685ns 455912 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25964140ns 455920 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25964310ns 455923 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25964594ns 455928 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25964878ns 455933 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25965163ns 455938 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25965617ns 455946 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25965788ns 455949 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25966072ns 455954 1a110850 fd5ff06f jal x0, -44 +25966356ns 455959 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25966640ns 455964 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25967038ns 455971 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25967208ns 455974 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25967663ns 455982 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25967834ns 455985 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25968118ns 455990 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25968402ns 455995 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25968686ns 456000 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25969141ns 456008 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25969311ns 456011 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25969595ns 456016 1a110850 fd5ff06f jal x0, -44 +25969880ns 456021 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25970164ns 456026 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25970562ns 456033 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25970732ns 456036 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25971187ns 456044 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25971357ns 456047 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25971641ns 456052 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25971926ns 456057 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25972210ns 456062 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25972664ns 456070 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25972835ns 456073 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25973119ns 456078 1a110850 fd5ff06f jal x0, -44 +25973403ns 456083 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25973687ns 456088 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25974085ns 456095 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25974256ns 456098 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25974710ns 456106 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25974881ns 456109 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25975165ns 456114 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25975449ns 456119 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25975733ns 456124 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25976188ns 456132 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25976358ns 456135 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25976643ns 456140 1a110850 fd5ff06f jal x0, -44 +25976927ns 456145 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25977211ns 456150 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25977609ns 456157 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25977779ns 456160 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25978234ns 456168 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25978404ns 456171 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25978689ns 456176 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25978973ns 456181 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25979257ns 456186 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25979712ns 456194 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25979882ns 456197 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25980166ns 456202 1a110850 fd5ff06f jal x0, -44 +25980450ns 456207 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25980735ns 456212 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25981132ns 456219 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25981303ns 456222 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25981757ns 456230 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25981928ns 456233 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25982212ns 456238 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25982496ns 456243 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25982780ns 456248 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25983235ns 456256 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25983406ns 456259 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25983690ns 456264 1a110850 fd5ff06f jal x0, -44 +25983974ns 456269 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25984258ns 456274 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25984656ns 456281 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25984826ns 456284 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25985281ns 456292 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25985452ns 456295 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25985736ns 456300 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25986020ns 456305 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25986304ns 456310 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25986759ns 456318 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25986929ns 456321 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25987213ns 456326 1a110850 fd5ff06f jal x0, -44 +25987498ns 456331 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25987782ns 456336 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25988179ns 456343 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25988350ns 456346 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25988805ns 456354 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25988975ns 456357 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25989259ns 456362 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25989543ns 456367 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25989828ns 456372 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25990282ns 456380 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25990453ns 456383 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25990737ns 456388 1a110850 fd5ff06f jal x0, -44 +25991021ns 456393 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25991305ns 456398 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25991703ns 456405 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25991874ns 456408 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25992328ns 456416 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25992499ns 456419 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25992783ns 456424 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25993067ns 456429 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25993351ns 456434 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25993806ns 456442 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25993976ns 456445 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25994261ns 456450 1a110850 fd5ff06f jal x0, -44 +25994545ns 456455 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25994829ns 456460 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25995227ns 456467 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25995397ns 456470 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25995852ns 456478 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25996022ns 456481 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25996306ns 456486 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25996591ns 456491 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25996875ns 456496 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25997329ns 456504 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +25997500ns 456507 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +25997784ns 456512 1a110850 fd5ff06f jal x0, -44 +25998068ns 456517 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +25998352ns 456522 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +25998750ns 456529 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +25998921ns 456532 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +25999375ns 456540 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +25999546ns 456543 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +25999830ns 456548 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26000114ns 456553 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26000398ns 456558 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26000853ns 456566 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26001024ns 456569 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26001308ns 456574 1a110850 fd5ff06f jal x0, -44 +26001592ns 456579 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26001876ns 456584 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26002274ns 456591 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26002444ns 456594 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26002899ns 456602 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26003069ns 456605 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26003354ns 456610 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26003638ns 456615 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26003922ns 456620 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26004377ns 456628 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26004547ns 456631 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26004831ns 456636 1a110850 fd5ff06f jal x0, -44 +26005115ns 456641 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26005400ns 456646 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26005797ns 456653 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26005968ns 456656 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26006423ns 456664 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26006593ns 456667 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26006877ns 456672 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26007161ns 456677 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26007446ns 456682 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26007900ns 456690 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26008071ns 456693 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26008355ns 456698 1a110850 fd5ff06f jal x0, -44 +26008639ns 456703 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26008923ns 456708 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26009321ns 456715 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26009491ns 456718 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26009946ns 456726 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26010117ns 456729 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26010401ns 456734 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26010685ns 456739 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26010969ns 456744 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26011424ns 456752 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26011594ns 456755 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26011878ns 456760 1a110850 fd5ff06f jal x0, -44 +26012163ns 456765 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26012447ns 456770 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26012845ns 456777 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26013015ns 456780 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26013470ns 456788 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26013640ns 456791 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26013924ns 456796 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26014209ns 456801 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26014493ns 456806 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26014947ns 456814 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26015118ns 456817 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26015402ns 456822 1a110850 fd5ff06f jal x0, -44 +26015686ns 456827 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26015970ns 456832 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26016368ns 456839 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26016539ns 456842 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26016993ns 456850 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26017164ns 456853 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26017448ns 456858 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26017732ns 456863 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26018016ns 456868 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26018471ns 456876 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26018641ns 456879 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26018926ns 456884 1a110850 fd5ff06f jal x0, -44 +26019210ns 456889 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26019494ns 456894 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26019892ns 456901 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26020062ns 456904 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26020517ns 456912 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26020687ns 456915 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26020972ns 456920 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26021256ns 456925 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26021540ns 456930 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26021995ns 456938 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26022165ns 456941 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26022449ns 456946 1a110850 fd5ff06f jal x0, -44 +26022733ns 456951 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26023018ns 456956 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26023415ns 456963 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26023586ns 456966 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26024040ns 456974 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26024211ns 456977 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26024495ns 456982 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26024779ns 456987 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26025063ns 456992 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26025518ns 457000 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26025689ns 457003 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26025973ns 457008 1a110850 fd5ff06f jal x0, -44 +26026257ns 457013 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26026541ns 457018 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26026939ns 457025 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26027109ns 457028 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26027564ns 457036 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26027735ns 457039 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26028019ns 457044 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26028303ns 457049 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26028587ns 457054 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26029042ns 457062 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26029212ns 457065 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26029496ns 457070 1a110850 fd5ff06f jal x0, -44 +26029781ns 457075 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26030065ns 457080 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26030463ns 457087 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26030633ns 457090 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26031088ns 457098 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26031258ns 457101 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26031542ns 457106 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26031826ns 457111 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26032111ns 457116 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26032565ns 457124 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26032736ns 457127 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26033020ns 457132 1a110850 fd5ff06f jal x0, -44 +26033304ns 457137 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26033588ns 457142 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26033986ns 457149 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26034157ns 457152 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26034611ns 457160 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26034782ns 457163 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26035066ns 457168 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26035350ns 457173 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26035634ns 457178 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26036089ns 457186 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26036259ns 457189 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26036544ns 457194 1a110850 fd5ff06f jal x0, -44 +26036828ns 457199 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26037112ns 457204 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26037510ns 457211 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26037680ns 457214 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26038135ns 457222 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26038305ns 457225 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26038589ns 457230 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26038874ns 457235 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26039158ns 457240 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26039612ns 457248 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26039783ns 457251 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26040067ns 457256 1a110850 fd5ff06f jal x0, -44 +26040351ns 457261 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26040635ns 457266 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26041033ns 457273 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26041204ns 457276 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26041658ns 457284 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26041829ns 457287 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26042113ns 457292 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26042397ns 457297 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26042681ns 457302 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26043136ns 457310 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26043307ns 457313 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26043591ns 457318 1a110850 fd5ff06f jal x0, -44 +26043875ns 457323 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26044159ns 457328 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26044557ns 457335 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26044727ns 457338 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26045182ns 457346 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26045352ns 457349 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26045637ns 457354 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26045921ns 457359 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26046205ns 457364 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26046660ns 457372 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26046830ns 457375 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26047114ns 457380 1a110850 fd5ff06f jal x0, -44 +26047398ns 457385 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26047683ns 457390 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26048080ns 457397 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26048251ns 457400 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26048706ns 457408 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26048876ns 457411 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26049160ns 457416 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26049444ns 457421 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26049729ns 457426 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26050183ns 457434 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26050354ns 457437 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26050638ns 457442 1a110850 fd5ff06f jal x0, -44 +26050922ns 457447 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26051206ns 457452 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26051604ns 457459 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26051775ns 457462 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26052229ns 457470 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26052400ns 457473 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26052684ns 457478 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26052968ns 457483 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26053252ns 457488 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26053707ns 457496 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26053877ns 457499 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26054161ns 457504 1a110850 fd5ff06f jal x0, -44 +26054446ns 457509 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26054730ns 457514 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26055128ns 457521 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26055298ns 457524 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26055753ns 457532 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26055923ns 457535 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26056207ns 457540 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26056492ns 457545 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26056776ns 457550 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26057230ns 457558 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26057401ns 457561 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26057685ns 457566 1a110850 fd5ff06f jal x0, -44 +26057969ns 457571 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26058253ns 457576 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26058651ns 457583 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26058822ns 457586 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26059276ns 457594 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26059447ns 457597 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26059731ns 457602 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26060015ns 457607 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26060299ns 457612 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26060754ns 457620 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26060924ns 457623 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26061209ns 457628 1a110850 fd5ff06f jal x0, -44 +26061493ns 457633 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26061777ns 457638 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26062175ns 457645 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26062345ns 457648 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26062800ns 457656 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26062970ns 457659 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26063255ns 457664 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26063539ns 457669 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26063823ns 457674 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26064278ns 457682 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26064448ns 457685 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26064732ns 457690 1a110850 fd5ff06f jal x0, -44 +26065016ns 457695 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26065301ns 457700 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26065698ns 457707 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26065869ns 457710 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26066323ns 457718 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26066494ns 457721 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26066778ns 457726 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26067062ns 457731 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26067346ns 457736 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26067801ns 457744 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26067972ns 457747 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26068256ns 457752 1a110850 fd5ff06f jal x0, -44 +26068540ns 457757 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26068824ns 457762 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26069222ns 457769 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26069392ns 457772 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26069847ns 457780 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26070018ns 457783 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26070302ns 457788 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26070586ns 457793 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26070870ns 457798 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26071325ns 457806 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26071495ns 457809 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26071779ns 457814 1a110850 fd5ff06f jal x0, -44 +26072064ns 457819 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26072348ns 457824 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26072746ns 457831 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26072916ns 457834 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26073371ns 457842 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26073541ns 457845 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26073825ns 457850 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26074109ns 457855 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26074394ns 457860 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26074848ns 457868 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26075019ns 457871 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26075303ns 457876 1a110850 fd5ff06f jal x0, -44 +26075587ns 457881 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26075871ns 457886 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26076269ns 457893 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26076440ns 457896 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26076894ns 457904 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26077065ns 457907 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26077349ns 457912 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26077633ns 457917 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26077917ns 457922 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26078372ns 457930 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26078542ns 457933 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26078827ns 457938 1a110850 fd5ff06f jal x0, -44 +26079111ns 457943 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26079395ns 457948 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26079793ns 457955 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26079963ns 457958 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26080418ns 457966 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26080588ns 457969 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26080872ns 457974 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26081157ns 457979 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26081441ns 457984 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26081895ns 457992 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26082066ns 457995 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26082350ns 458000 1a110850 fd5ff06f jal x0, -44 +26082634ns 458005 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26082918ns 458010 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26083316ns 458017 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26083487ns 458020 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26083941ns 458028 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26084112ns 458031 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26084396ns 458036 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26084680ns 458041 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26084964ns 458046 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26085419ns 458054 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26085590ns 458057 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26085874ns 458062 1a110850 fd5ff06f jal x0, -44 +26086158ns 458067 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26086442ns 458072 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26086840ns 458079 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26087010ns 458082 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26087465ns 458090 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26087635ns 458093 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26087920ns 458098 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26088204ns 458103 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26088488ns 458108 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26088943ns 458116 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26089113ns 458119 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26089397ns 458124 1a110850 fd5ff06f jal x0, -44 +26089681ns 458129 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26089966ns 458134 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26090363ns 458141 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26090534ns 458144 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26090989ns 458152 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26091159ns 458155 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26091443ns 458160 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26091727ns 458165 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26092012ns 458170 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26092466ns 458178 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26092637ns 458181 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26092921ns 458186 1a110850 fd5ff06f jal x0, -44 +26093205ns 458191 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26093489ns 458196 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26093887ns 458203 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26094058ns 458206 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26094512ns 458214 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26094683ns 458217 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26094967ns 458222 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26095251ns 458227 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26095535ns 458232 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26095990ns 458240 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26096160ns 458243 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26096444ns 458248 1a110850 fd5ff06f jal x0, -44 +26096729ns 458253 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26097013ns 458258 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26097411ns 458265 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26097581ns 458268 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26098036ns 458276 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26098206ns 458279 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26098490ns 458284 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26098775ns 458289 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26099059ns 458294 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26099513ns 458302 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26099684ns 458305 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26099968ns 458310 1a110850 fd5ff06f jal x0, -44 +26100252ns 458315 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26100536ns 458320 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26100934ns 458327 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26101105ns 458330 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26101559ns 458338 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26101730ns 458341 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26102014ns 458346 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26102298ns 458351 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26102582ns 458356 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26103037ns 458364 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26103207ns 458367 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26103492ns 458372 1a110850 fd5ff06f jal x0, -44 +26103776ns 458377 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26104060ns 458382 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26104458ns 458389 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26104628ns 458392 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26105083ns 458400 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26105253ns 458403 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26105538ns 458408 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26105822ns 458413 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26106106ns 458418 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26106561ns 458426 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26106731ns 458429 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26107015ns 458434 1a110850 fd5ff06f jal x0, -44 +26107299ns 458439 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26107584ns 458444 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26107981ns 458451 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26108152ns 458454 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26108607ns 458462 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26108777ns 458465 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26109061ns 458470 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26109345ns 458475 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26109629ns 458480 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26110084ns 458488 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26110255ns 458491 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26110539ns 458496 1a110850 fd5ff06f jal x0, -44 +26110823ns 458501 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26111107ns 458506 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26111505ns 458513 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26111675ns 458516 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26112130ns 458524 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26112301ns 458527 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26112585ns 458532 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26112869ns 458537 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26113153ns 458542 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26113608ns 458550 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26113778ns 458553 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26114062ns 458558 1a110850 fd5ff06f jal x0, -44 +26114347ns 458563 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26114631ns 458568 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26115029ns 458575 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26115199ns 458578 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26115654ns 458586 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26115824ns 458589 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26116108ns 458594 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26116392ns 458599 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26116677ns 458604 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26117131ns 458612 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26117302ns 458615 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26117586ns 458620 1a110850 fd5ff06f jal x0, -44 +26117870ns 458625 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26118154ns 458630 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26118552ns 458637 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26118723ns 458640 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26119177ns 458648 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26119348ns 458651 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26119632ns 458656 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26119916ns 458661 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26120200ns 458666 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26120655ns 458674 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26120825ns 458677 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26121110ns 458682 1a110850 fd5ff06f jal x0, -44 +26121394ns 458687 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26121678ns 458692 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26122076ns 458699 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26122246ns 458702 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26122701ns 458710 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26122871ns 458713 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26123155ns 458718 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26123440ns 458723 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26123724ns 458728 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26124178ns 458736 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26124349ns 458739 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26124633ns 458744 1a110850 fd5ff06f jal x0, -44 +26124917ns 458749 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26125201ns 458754 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26125599ns 458761 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26125770ns 458764 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26126224ns 458772 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26126395ns 458775 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26126679ns 458780 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26126963ns 458785 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26127247ns 458790 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26127702ns 458798 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26127873ns 458801 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26128157ns 458806 1a110850 fd5ff06f jal x0, -44 +26128441ns 458811 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26128725ns 458816 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26129123ns 458823 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26129293ns 458826 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26129748ns 458834 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26129919ns 458837 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26130203ns 458842 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26130487ns 458847 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26130771ns 458852 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26131226ns 458860 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26131396ns 458863 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26131680ns 458868 1a110850 fd5ff06f jal x0, -44 +26131964ns 458873 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26132249ns 458878 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26132646ns 458885 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26132817ns 458888 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26133272ns 458896 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26133442ns 458899 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26133726ns 458904 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26134010ns 458909 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26134295ns 458914 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26134749ns 458922 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26134920ns 458925 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26135204ns 458930 1a110850 fd5ff06f jal x0, -44 +26135488ns 458935 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26135772ns 458940 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26136170ns 458947 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26136341ns 458950 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26136795ns 458958 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26136966ns 458961 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26137250ns 458966 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26137534ns 458971 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26137818ns 458976 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26138273ns 458984 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26138443ns 458987 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26138727ns 458992 1a110850 fd5ff06f jal x0, -44 +26139012ns 458997 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26139296ns 459002 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26139694ns 459009 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26139864ns 459012 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26140319ns 459020 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26140489ns 459023 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26140773ns 459028 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26141058ns 459033 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26141342ns 459038 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26141796ns 459046 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26141967ns 459049 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26142251ns 459054 1a110850 fd5ff06f jal x0, -44 +26142535ns 459059 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26142819ns 459064 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26143217ns 459071 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26143388ns 459074 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26143842ns 459082 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26144013ns 459085 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26144297ns 459090 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26144581ns 459095 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26144865ns 459100 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26145320ns 459108 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26145490ns 459111 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26145775ns 459116 1a110850 fd5ff06f jal x0, -44 +26146059ns 459121 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26146343ns 459126 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26146741ns 459133 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26146911ns 459136 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26147366ns 459144 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26147536ns 459147 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26147821ns 459152 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26148105ns 459157 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26148389ns 459162 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26148844ns 459170 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26149014ns 459173 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26149298ns 459178 1a110850 fd5ff06f jal x0, -44 +26149582ns 459183 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26149867ns 459188 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26150264ns 459195 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26150435ns 459198 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26150890ns 459206 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26151060ns 459209 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26151344ns 459214 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26151628ns 459219 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26151912ns 459224 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26152367ns 459232 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26152538ns 459235 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26152822ns 459240 1a110850 fd5ff06f jal x0, -44 +26153106ns 459245 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26153390ns 459250 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26153788ns 459257 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26153958ns 459260 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26154413ns 459268 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26154584ns 459271 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26154868ns 459276 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26155152ns 459281 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26155436ns 459286 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26155891ns 459294 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26156061ns 459297 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26156345ns 459302 1a110850 fd5ff06f jal x0, -44 +26156630ns 459307 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26156914ns 459312 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26157312ns 459319 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26157482ns 459322 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26157937ns 459330 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26158107ns 459333 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26158391ns 459338 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26158675ns 459343 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26158960ns 459348 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26159414ns 459356 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26159585ns 459359 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26159869ns 459364 1a110850 fd5ff06f jal x0, -44 +26160153ns 459369 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26160437ns 459374 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26160835ns 459381 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26161006ns 459384 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26161460ns 459392 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26161631ns 459395 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26161915ns 459400 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26162199ns 459405 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26162483ns 459410 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26162938ns 459418 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26163108ns 459421 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26163393ns 459426 1a110850 fd5ff06f jal x0, -44 +26163677ns 459431 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26163961ns 459436 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26164359ns 459443 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26164529ns 459446 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26164984ns 459454 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26165154ns 459457 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26165439ns 459462 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26165723ns 459467 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26166007ns 459472 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26166461ns 459480 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26166632ns 459483 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26166916ns 459488 1a110850 fd5ff06f jal x0, -44 +26167200ns 459493 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26167484ns 459498 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26167882ns 459505 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26168053ns 459508 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26168507ns 459516 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26168678ns 459519 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26168962ns 459524 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26169246ns 459529 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26169530ns 459534 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26169985ns 459542 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26170156ns 459545 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26170440ns 459550 1a110850 fd5ff06f jal x0, -44 +26170724ns 459555 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26171008ns 459560 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26171406ns 459567 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26171576ns 459570 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26172031ns 459578 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26172202ns 459581 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26172486ns 459586 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26172770ns 459591 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26173054ns 459596 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26173509ns 459604 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26173679ns 459607 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26173963ns 459612 1a110850 fd5ff06f jal x0, -44 +26174247ns 459617 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26174532ns 459622 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26174929ns 459629 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26175100ns 459632 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26175555ns 459640 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26175725ns 459643 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26176009ns 459648 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26176293ns 459653 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26176578ns 459658 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26177032ns 459666 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26177203ns 459669 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26177487ns 459674 1a110850 fd5ff06f jal x0, -44 +26177771ns 459679 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26178055ns 459684 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26178453ns 459691 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26178624ns 459694 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26179078ns 459702 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26179249ns 459705 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26179533ns 459710 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26179817ns 459715 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26180101ns 459720 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26180556ns 459728 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26180726ns 459731 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26181010ns 459736 1a110850 fd5ff06f jal x0, -44 +26181295ns 459741 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26181579ns 459746 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26181977ns 459753 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26182147ns 459756 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26182602ns 459764 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26182772ns 459767 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26183056ns 459772 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26183341ns 459777 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26183625ns 459782 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26184079ns 459790 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26184250ns 459793 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26184534ns 459798 1a110850 fd5ff06f jal x0, -44 +26184818ns 459803 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26185102ns 459808 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26185500ns 459815 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26185671ns 459818 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26186125ns 459826 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26186296ns 459829 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26186580ns 459834 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26186864ns 459839 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26187148ns 459844 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26187603ns 459852 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26187773ns 459855 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26188058ns 459860 1a110850 fd5ff06f jal x0, -44 +26188342ns 459865 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26188626ns 459870 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26189024ns 459877 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26189194ns 459880 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26189649ns 459888 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26189819ns 459891 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26190104ns 459896 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26190388ns 459901 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26190672ns 459906 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26191127ns 459914 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26191297ns 459917 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26191581ns 459922 1a110850 fd5ff06f jal x0, -44 +26191865ns 459927 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26192150ns 459932 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26192547ns 459939 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26192718ns 459942 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26193173ns 459950 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26193343ns 459953 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26193627ns 459958 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26193911ns 459963 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26194195ns 459968 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26194650ns 459976 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26194821ns 459979 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26195105ns 459984 1a110850 fd5ff06f jal x0, -44 +26195389ns 459989 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26195673ns 459994 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26196071ns 460001 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26196241ns 460004 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26196696ns 460012 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26196867ns 460015 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26197151ns 460020 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26197435ns 460025 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26197719ns 460030 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26198174ns 460038 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26198344ns 460041 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26198628ns 460046 1a110850 fd5ff06f jal x0, -44 +26198913ns 460051 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26199197ns 460056 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26199595ns 460063 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26199765ns 460066 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26200220ns 460074 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26200390ns 460077 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26200674ns 460082 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26200959ns 460087 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26201243ns 460092 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26201697ns 460100 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26201868ns 460103 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26202152ns 460108 1a110850 fd5ff06f jal x0, -44 +26202436ns 460113 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26202720ns 460118 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26203118ns 460125 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26203289ns 460128 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26203743ns 460136 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26203914ns 460139 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26204198ns 460144 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26204482ns 460149 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26204766ns 460154 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26205221ns 460162 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26205391ns 460165 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26205676ns 460170 1a110850 fd5ff06f jal x0, -44 +26205960ns 460175 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26206244ns 460180 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26206642ns 460187 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26206812ns 460190 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26207267ns 460198 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26207437ns 460201 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26207722ns 460206 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26208006ns 460211 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26208290ns 460216 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26208744ns 460224 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26208915ns 460227 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26209199ns 460232 1a110850 fd5ff06f jal x0, -44 +26209483ns 460237 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26209767ns 460242 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26210165ns 460249 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26210336ns 460252 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26210790ns 460260 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26210961ns 460263 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26211245ns 460268 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26211529ns 460273 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26211813ns 460278 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26212268ns 460286 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26212439ns 460289 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26212723ns 460294 1a110850 fd5ff06f jal x0, -44 +26213007ns 460299 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26213291ns 460304 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26213689ns 460311 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26213859ns 460314 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26214314ns 460322 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26214485ns 460325 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26214769ns 460330 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26215053ns 460335 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26215337ns 460340 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26215792ns 460348 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26215962ns 460351 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26216246ns 460356 1a110850 fd5ff06f jal x0, -44 +26216530ns 460361 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26216815ns 460366 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26217212ns 460373 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26217383ns 460376 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26217838ns 460384 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26218008ns 460387 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26218292ns 460392 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26218576ns 460397 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26218861ns 460402 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26219315ns 460410 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26219486ns 460413 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26219770ns 460418 1a110850 fd5ff06f jal x0, -44 +26220054ns 460423 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26220338ns 460428 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26220736ns 460435 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26220907ns 460438 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26221361ns 460446 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26221532ns 460449 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26221816ns 460454 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26222100ns 460459 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26222384ns 460464 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26222839ns 460472 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26223009ns 460475 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26223293ns 460480 1a110850 fd5ff06f jal x0, -44 +26223578ns 460485 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26223862ns 460490 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26224260ns 460497 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26224430ns 460500 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26224885ns 460508 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26225055ns 460511 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26225339ns 460516 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26225624ns 460521 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26225908ns 460526 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26226362ns 460534 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26226533ns 460537 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26226817ns 460542 1a110850 fd5ff06f jal x0, -44 +26227101ns 460547 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26227385ns 460552 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26227783ns 460559 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26227954ns 460562 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26228408ns 460570 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26228579ns 460573 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26228863ns 460578 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26229147ns 460583 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26229431ns 460588 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26229886ns 460596 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26230056ns 460599 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26230341ns 460604 1a110850 fd5ff06f jal x0, -44 +26230625ns 460609 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26230909ns 460614 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26231307ns 460621 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26231477ns 460624 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26231932ns 460632 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26232102ns 460635 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26232387ns 460640 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26232671ns 460645 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26232955ns 460650 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26233410ns 460658 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26233580ns 460661 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26233864ns 460666 1a110850 fd5ff06f jal x0, -44 +26234148ns 460671 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26234433ns 460676 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26234830ns 460683 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26235001ns 460686 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26235456ns 460694 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26235626ns 460697 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26235910ns 460702 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26236194ns 460707 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26236479ns 460712 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26236933ns 460720 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26237104ns 460723 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26237388ns 460728 1a110850 fd5ff06f jal x0, -44 +26237672ns 460733 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26237956ns 460738 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26238354ns 460745 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26238524ns 460748 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26238979ns 460756 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26239150ns 460759 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26239434ns 460764 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26239718ns 460769 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26240002ns 460774 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26240457ns 460782 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26240627ns 460785 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26240911ns 460790 1a110850 fd5ff06f jal x0, -44 +26241196ns 460795 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26241480ns 460800 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26241878ns 460807 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26242048ns 460810 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26242503ns 460818 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26242673ns 460821 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26242957ns 460826 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26243242ns 460831 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26243526ns 460836 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26243980ns 460844 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26244151ns 460847 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26244435ns 460852 1a110850 fd5ff06f jal x0, -44 +26244719ns 460857 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26245003ns 460862 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26245401ns 460869 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26245572ns 460872 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26246026ns 460880 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26246197ns 460883 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26246481ns 460888 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26246765ns 460893 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26247049ns 460898 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26247504ns 460906 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26247674ns 460909 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26247959ns 460914 1a110850 fd5ff06f jal x0, -44 +26248243ns 460919 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26248527ns 460924 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26248925ns 460931 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26249095ns 460934 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26249550ns 460942 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26249720ns 460945 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26250005ns 460950 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26250289ns 460955 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26250573ns 460960 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26251027ns 460968 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26251198ns 460971 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26251482ns 460976 1a110850 fd5ff06f jal x0, -44 +26251766ns 460981 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26252050ns 460986 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26252448ns 460993 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26252619ns 460996 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26253073ns 461004 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26253244ns 461007 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26253528ns 461012 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26253812ns 461017 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26254096ns 461022 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26254551ns 461030 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26254722ns 461033 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26255006ns 461038 1a110850 fd5ff06f jal x0, -44 +26255290ns 461043 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26255574ns 461048 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26255972ns 461055 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26256142ns 461058 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26256597ns 461066 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26256768ns 461069 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26257052ns 461074 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26257336ns 461079 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26257620ns 461084 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26258075ns 461092 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26258245ns 461095 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26258529ns 461100 1a110850 fd5ff06f jal x0, -44 +26258813ns 461105 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26259098ns 461110 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26259495ns 461117 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26259666ns 461120 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26260121ns 461128 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26260291ns 461131 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26260575ns 461136 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26260859ns 461141 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26261144ns 461146 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26261598ns 461154 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26261769ns 461157 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26262053ns 461162 1a110850 fd5ff06f jal x0, -44 +26262337ns 461167 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26262621ns 461172 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26263019ns 461179 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26263190ns 461182 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26263644ns 461190 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26263815ns 461193 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26264099ns 461198 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26264383ns 461203 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26264667ns 461208 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26265122ns 461216 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26265292ns 461219 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26265576ns 461224 1a110850 fd5ff06f jal x0, -44 +26265861ns 461229 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26266145ns 461234 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26266543ns 461241 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26266713ns 461244 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26267168ns 461252 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26267338ns 461255 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26267622ns 461260 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26267907ns 461265 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26268191ns 461270 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26268645ns 461278 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26268816ns 461281 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26269100ns 461286 1a110850 fd5ff06f jal x0, -44 +26269384ns 461291 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26269668ns 461296 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26270066ns 461303 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26270237ns 461306 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26270691ns 461314 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26270862ns 461317 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26271146ns 461322 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26271430ns 461327 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26271714ns 461332 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26272169ns 461340 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26272339ns 461343 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26272624ns 461348 1a110850 fd5ff06f jal x0, -44 +26272908ns 461353 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26273192ns 461358 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26273590ns 461365 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26273760ns 461368 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26274215ns 461376 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26274385ns 461379 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26274670ns 461384 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26274954ns 461389 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26275238ns 461394 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26275693ns 461402 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26275863ns 461405 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26276147ns 461410 1a110850 fd5ff06f jal x0, -44 +26276431ns 461415 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26276716ns 461420 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26277113ns 461427 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26277284ns 461430 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26277739ns 461438 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26277909ns 461441 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26278193ns 461446 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26278477ns 461451 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26278762ns 461456 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26279216ns 461464 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26279387ns 461467 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26279671ns 461472 1a110850 fd5ff06f jal x0, -44 +26279955ns 461477 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26280239ns 461482 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26280637ns 461489 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26280807ns 461492 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26281262ns 461500 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26281433ns 461503 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26281717ns 461508 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26282001ns 461513 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26282285ns 461518 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26282740ns 461526 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26282910ns 461529 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26283194ns 461534 1a110850 fd5ff06f jal x0, -44 +26283479ns 461539 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26283763ns 461544 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26284161ns 461551 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26284331ns 461554 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26284786ns 461562 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26284956ns 461565 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26285240ns 461570 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26285525ns 461575 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26285809ns 461580 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26286263ns 461588 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26286434ns 461591 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26286718ns 461596 1a110850 fd5ff06f jal x0, -44 +26287002ns 461601 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26287286ns 461606 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26287684ns 461613 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26287855ns 461616 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26288309ns 461624 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26288480ns 461627 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26288764ns 461632 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26289048ns 461637 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26289332ns 461642 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26289787ns 461650 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26289957ns 461653 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26290242ns 461658 1a110850 fd5ff06f jal x0, -44 +26290526ns 461663 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26290810ns 461668 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26291208ns 461675 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26291378ns 461678 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26291833ns 461686 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26292003ns 461689 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26292288ns 461694 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26292572ns 461699 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26292856ns 461704 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26293311ns 461712 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26293481ns 461715 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26293765ns 461720 1a110850 fd5ff06f jal x0, -44 +26294049ns 461725 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26294333ns 461730 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26294731ns 461737 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26294902ns 461740 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26295356ns 461748 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26295527ns 461751 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26295811ns 461756 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26296095ns 461761 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26296379ns 461766 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26296834ns 461774 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26297005ns 461777 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26297289ns 461782 1a110850 fd5ff06f jal x0, -44 +26297573ns 461787 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26297857ns 461792 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26298255ns 461799 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26298425ns 461802 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26298880ns 461810 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26299051ns 461813 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26299335ns 461818 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26299619ns 461823 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26299903ns 461828 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26300358ns 461836 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26300528ns 461839 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26300812ns 461844 1a110850 fd5ff06f jal x0, -44 +26301096ns 461849 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26301381ns 461854 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26301778ns 461861 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26301949ns 461864 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26302404ns 461872 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26302574ns 461875 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26302858ns 461880 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26303142ns 461885 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26303427ns 461890 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26303881ns 461898 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26304052ns 461901 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26304336ns 461906 1a110850 fd5ff06f jal x0, -44 +26304620ns 461911 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26304904ns 461916 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26305302ns 461923 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26305473ns 461926 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26305927ns 461934 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26306098ns 461937 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26306382ns 461942 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26306666ns 461947 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26306950ns 461952 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26307405ns 461960 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26307575ns 461963 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26307859ns 461968 1a110850 fd5ff06f jal x0, -44 +26308144ns 461973 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26308428ns 461978 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26308826ns 461985 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26308996ns 461988 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26309451ns 461996 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26309621ns 461999 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26309905ns 462004 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26310190ns 462009 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26310474ns 462014 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26310928ns 462022 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26311099ns 462025 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26311383ns 462030 1a110850 fd5ff06f jal x0, -44 +26311667ns 462035 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26311951ns 462040 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26312349ns 462047 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26312520ns 462050 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26312974ns 462058 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26313145ns 462061 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26313429ns 462066 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26313713ns 462071 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26313997ns 462076 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26314452ns 462084 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26314623ns 462087 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26314907ns 462092 1a110850 fd5ff06f jal x0, -44 +26315191ns 462097 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26315475ns 462102 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26315873ns 462109 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26316043ns 462112 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26316498ns 462120 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26316668ns 462123 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26316953ns 462128 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26317237ns 462133 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26317521ns 462138 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26317976ns 462146 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26318146ns 462149 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26318430ns 462154 1a110850 fd5ff06f jal x0, -44 +26318714ns 462159 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26318999ns 462164 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26319396ns 462171 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26319567ns 462174 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26320022ns 462182 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26320192ns 462185 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26320476ns 462190 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26320760ns 462195 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26321045ns 462200 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26321499ns 462208 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26321670ns 462211 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26321954ns 462216 1a110850 fd5ff06f jal x0, -44 +26322238ns 462221 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26322522ns 462226 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26322920ns 462233 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26323090ns 462236 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26323545ns 462244 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26323716ns 462247 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26324000ns 462252 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26324284ns 462257 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26324568ns 462262 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26325023ns 462270 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26325193ns 462273 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26325477ns 462278 1a110850 fd5ff06f jal x0, -44 +26325762ns 462283 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26326046ns 462288 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26326444ns 462295 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26326614ns 462298 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26327069ns 462306 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26327239ns 462309 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26327523ns 462314 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26327808ns 462319 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26328092ns 462324 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26328546ns 462332 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26328717ns 462335 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26329001ns 462340 1a110850 fd5ff06f jal x0, -44 +26329285ns 462345 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26329569ns 462350 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26329967ns 462357 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26330138ns 462360 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26330592ns 462368 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26330763ns 462371 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26331047ns 462376 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26331331ns 462381 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26331615ns 462386 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26332070ns 462394 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26332240ns 462397 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26332525ns 462402 1a110850 fd5ff06f jal x0, -44 +26332809ns 462407 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26333093ns 462412 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26333491ns 462419 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26333661ns 462422 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26334116ns 462430 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26334286ns 462433 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26334571ns 462438 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26334855ns 462443 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26335139ns 462448 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26335594ns 462456 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26335764ns 462459 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26336048ns 462464 1a110850 fd5ff06f jal x0, -44 +26336332ns 462469 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26336616ns 462474 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26337014ns 462481 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26337185ns 462484 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26337639ns 462492 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26337810ns 462495 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26338094ns 462500 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26338378ns 462505 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26338662ns 462510 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26339117ns 462518 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26339288ns 462521 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26339572ns 462526 1a110850 fd5ff06f jal x0, -44 +26339856ns 462531 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26340140ns 462536 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26340538ns 462543 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26340708ns 462546 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26341163ns 462554 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26341334ns 462557 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26341618ns 462562 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26341902ns 462567 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26342186ns 462572 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26342641ns 462580 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26342811ns 462583 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26343095ns 462588 1a110850 fd5ff06f jal x0, -44 +26343379ns 462593 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26343664ns 462598 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26344061ns 462605 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26344232ns 462608 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26344687ns 462616 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26344857ns 462619 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26345141ns 462624 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26345425ns 462629 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26345710ns 462634 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26346164ns 462642 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26346335ns 462645 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26346619ns 462650 1a110850 fd5ff06f jal x0, -44 +26346903ns 462655 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26347187ns 462660 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26347585ns 462667 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26347756ns 462670 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26348210ns 462678 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26348381ns 462681 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26348665ns 462686 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26348949ns 462691 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26349233ns 462696 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26349688ns 462704 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26349858ns 462707 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26350143ns 462712 1a110850 fd5ff06f jal x0, -44 +26350427ns 462717 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26350711ns 462722 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26351109ns 462729 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26351279ns 462732 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26351734ns 462740 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26351904ns 462743 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26352188ns 462748 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26352473ns 462753 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26352757ns 462758 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26353211ns 462766 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26353382ns 462769 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26353666ns 462774 1a110850 fd5ff06f jal x0, -44 +26353950ns 462779 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26354234ns 462784 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26354632ns 462791 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26354803ns 462794 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26355257ns 462802 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26355428ns 462805 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26355712ns 462810 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26355996ns 462815 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26356280ns 462820 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26356735ns 462828 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26356906ns 462831 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26357190ns 462836 1a110850 fd5ff06f jal x0, -44 +26357474ns 462841 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26357758ns 462846 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26358156ns 462853 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26358326ns 462856 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26358781ns 462864 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26358951ns 462867 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26359236ns 462872 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26359520ns 462877 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26359804ns 462882 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26360259ns 462890 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26360429ns 462893 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26360713ns 462898 1a110850 fd5ff06f jal x0, -44 +26360997ns 462903 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26361282ns 462908 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26361679ns 462915 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26361850ns 462918 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26362305ns 462926 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26362475ns 462929 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26362759ns 462934 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26363043ns 462939 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26363328ns 462944 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26363782ns 462952 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26363953ns 462955 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26364237ns 462960 1a110850 fd5ff06f jal x0, -44 +26364521ns 462965 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26364805ns 462970 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26365203ns 462977 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26365373ns 462980 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26365828ns 462988 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26365999ns 462991 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26366283ns 462996 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26366567ns 463001 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26366851ns 463006 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26367306ns 463014 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26367476ns 463017 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26367760ns 463022 1a110850 fd5ff06f jal x0, -44 +26368045ns 463027 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26368329ns 463032 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26368727ns 463039 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26368897ns 463042 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26369352ns 463050 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26369522ns 463053 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26369806ns 463058 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26370091ns 463063 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26370375ns 463068 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26370829ns 463076 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26371000ns 463079 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26371284ns 463084 1a110850 fd5ff06f jal x0, -44 +26371568ns 463089 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26371852ns 463094 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26372250ns 463101 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26372421ns 463104 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26372875ns 463112 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26373046ns 463115 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26373330ns 463120 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26373614ns 463125 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26373898ns 463130 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26374353ns 463138 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26374523ns 463141 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26374808ns 463146 1a110850 fd5ff06f jal x0, -44 +26375092ns 463151 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26375376ns 463156 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26375774ns 463163 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26375944ns 463166 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26376399ns 463174 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26376569ns 463177 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26376854ns 463182 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26377138ns 463187 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26377422ns 463192 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26377877ns 463200 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26378047ns 463203 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26378331ns 463208 1a110850 fd5ff06f jal x0, -44 +26378615ns 463213 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26378899ns 463218 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26379297ns 463225 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26379468ns 463228 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26379922ns 463236 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26380093ns 463239 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26380377ns 463244 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26380661ns 463249 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26380945ns 463254 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26381400ns 463262 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26381571ns 463265 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26381855ns 463270 1a110850 fd5ff06f jal x0, -44 +26382139ns 463275 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26382423ns 463280 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26382821ns 463287 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26382991ns 463290 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26383446ns 463298 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26383617ns 463301 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26383901ns 463306 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26384185ns 463311 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26384469ns 463316 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26384924ns 463324 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26385094ns 463327 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26385378ns 463332 1a110850 fd5ff06f jal x0, -44 +26385663ns 463337 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26385947ns 463342 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26386344ns 463349 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26386515ns 463352 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26386970ns 463360 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26387140ns 463363 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26387424ns 463368 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26387708ns 463373 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26387993ns 463378 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26388447ns 463386 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26388618ns 463389 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26388902ns 463394 1a110850 fd5ff06f jal x0, -44 +26389186ns 463399 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26389470ns 463404 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26389868ns 463411 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26390039ns 463414 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26390493ns 463422 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26390664ns 463425 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26390948ns 463430 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26391232ns 463435 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26391516ns 463440 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26391971ns 463448 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26392141ns 463451 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26392426ns 463456 1a110850 fd5ff06f jal x0, -44 +26392710ns 463461 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26392994ns 463466 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26393392ns 463473 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26393562ns 463476 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26394017ns 463484 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26394187ns 463487 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26394471ns 463492 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26394756ns 463497 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26395040ns 463502 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26395494ns 463510 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26395665ns 463513 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26395949ns 463518 1a110850 fd5ff06f jal x0, -44 +26396233ns 463523 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26396517ns 463528 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26396915ns 463535 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26397086ns 463538 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26397540ns 463546 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26397711ns 463549 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26397995ns 463554 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26398279ns 463559 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26398563ns 463564 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26399018ns 463572 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26399189ns 463575 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26399473ns 463580 1a110850 fd5ff06f jal x0, -44 +26399757ns 463585 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26400041ns 463590 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26400439ns 463597 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26400609ns 463600 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26401064ns 463608 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26401234ns 463611 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26401519ns 463616 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26401803ns 463621 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26402087ns 463626 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26402542ns 463634 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26402712ns 463637 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26402996ns 463642 1a110850 fd5ff06f jal x0, -44 +26403280ns 463647 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26403565ns 463652 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26403962ns 463659 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26404133ns 463662 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26404588ns 463670 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26404758ns 463673 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26405042ns 463678 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26405326ns 463683 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26405611ns 463688 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26406065ns 463696 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26406236ns 463699 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26406520ns 463704 1a110850 fd5ff06f jal x0, -44 +26406804ns 463709 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26407088ns 463714 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26407486ns 463721 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26407656ns 463724 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26408111ns 463732 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26408282ns 463735 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26408566ns 463740 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26408850ns 463745 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26409134ns 463750 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26409589ns 463758 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26409759ns 463761 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26410043ns 463766 1a110850 fd5ff06f jal x0, -44 +26410328ns 463771 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26410612ns 463776 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26411010ns 463783 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26411180ns 463786 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26411635ns 463794 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26411805ns 463797 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26412089ns 463802 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26412374ns 463807 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26412658ns 463812 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26413112ns 463820 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26413283ns 463823 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26413567ns 463828 1a110850 fd5ff06f jal x0, -44 +26413851ns 463833 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26414135ns 463838 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26414533ns 463845 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26414704ns 463848 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26415158ns 463856 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26415329ns 463859 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26415613ns 463864 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26415897ns 463869 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26416181ns 463874 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26416636ns 463882 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26416806ns 463885 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26417091ns 463890 1a110850 fd5ff06f jal x0, -44 +26417375ns 463895 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26417659ns 463900 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26418057ns 463907 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26418227ns 463910 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26418682ns 463918 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26418852ns 463921 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26419137ns 463926 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26419421ns 463931 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26419705ns 463936 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26420160ns 463944 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26420330ns 463947 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26420614ns 463952 1a110850 fd5ff06f jal x0, -44 +26420898ns 463957 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26421183ns 463962 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26421580ns 463969 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26421751ns 463972 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26422205ns 463980 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26422376ns 463983 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26422660ns 463988 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26422944ns 463993 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26423228ns 463998 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26423683ns 464006 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26423854ns 464009 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26424138ns 464014 1a110850 fd5ff06f jal x0, -44 +26424422ns 464019 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26424706ns 464024 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26425104ns 464031 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26425274ns 464034 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26425729ns 464042 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26425900ns 464045 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26426184ns 464050 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26426468ns 464055 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26426752ns 464060 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26427207ns 464068 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26427377ns 464071 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26427661ns 464076 1a110850 fd5ff06f jal x0, -44 +26427946ns 464081 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26428230ns 464086 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26428627ns 464093 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26428798ns 464096 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26429253ns 464104 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26429423ns 464107 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26429707ns 464112 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26429991ns 464117 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26430276ns 464122 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26430730ns 464130 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26430901ns 464133 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26431185ns 464138 1a110850 fd5ff06f jal x0, -44 +26431469ns 464143 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26431753ns 464148 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26432151ns 464155 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26432322ns 464158 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26432776ns 464166 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26432947ns 464169 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26433231ns 464174 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26433515ns 464179 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26433799ns 464184 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26434254ns 464192 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26434424ns 464195 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26434709ns 464200 1a110850 fd5ff06f jal x0, -44 +26434993ns 464205 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26435277ns 464210 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26435675ns 464217 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26435845ns 464220 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26436300ns 464228 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26436470ns 464231 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26436754ns 464236 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26437039ns 464241 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26437323ns 464246 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26437777ns 464254 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26437948ns 464257 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26438232ns 464262 1a110850 fd5ff06f jal x0, -44 +26438516ns 464267 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26438800ns 464272 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26439198ns 464279 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26439369ns 464282 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26439823ns 464290 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26439994ns 464293 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26440278ns 464298 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26440562ns 464303 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26440846ns 464308 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26441301ns 464316 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26441472ns 464319 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26441756ns 464324 1a110850 fd5ff06f jal x0, -44 +26442040ns 464329 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26442324ns 464334 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26442722ns 464341 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26442892ns 464344 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26443347ns 464352 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26443517ns 464355 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26443802ns 464360 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26444086ns 464365 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26444370ns 464370 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26444825ns 464378 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26444995ns 464381 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26445279ns 464386 1a110850 fd5ff06f jal x0, -44 +26445563ns 464391 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26445848ns 464396 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26446245ns 464403 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26446416ns 464406 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26446871ns 464414 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26447041ns 464417 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26447325ns 464422 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26447609ns 464427 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26447894ns 464432 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26448348ns 464440 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26448519ns 464443 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26448803ns 464448 1a110850 fd5ff06f jal x0, -44 +26449087ns 464453 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26449371ns 464458 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26449769ns 464465 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26449939ns 464468 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26450394ns 464476 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26450565ns 464479 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26450849ns 464484 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26451133ns 464489 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26451417ns 464494 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26451872ns 464502 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26452042ns 464505 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26452326ns 464510 1a110850 fd5ff06f jal x0, -44 +26452611ns 464515 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26452895ns 464520 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26453293ns 464527 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26453463ns 464530 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26453918ns 464538 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26454088ns 464541 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26454372ns 464546 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26454657ns 464551 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26454941ns 464556 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26455395ns 464564 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26455566ns 464567 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26455850ns 464572 1a110850 fd5ff06f jal x0, -44 +26456134ns 464577 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26456418ns 464582 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26456816ns 464589 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26456987ns 464592 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26457441ns 464600 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26457612ns 464603 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26457896ns 464608 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26458180ns 464613 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26458464ns 464618 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26458919ns 464626 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26459089ns 464629 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26459374ns 464634 1a110850 fd5ff06f jal x0, -44 +26459658ns 464639 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26459942ns 464644 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26460340ns 464651 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26460510ns 464654 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26460965ns 464662 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26461135ns 464665 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26461420ns 464670 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26461704ns 464675 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26461988ns 464680 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26462443ns 464688 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26462613ns 464691 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26462897ns 464696 1a110850 fd5ff06f jal x0, -44 +26463181ns 464701 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26463466ns 464706 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26463863ns 464713 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26464034ns 464716 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26464488ns 464724 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26464659ns 464727 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26464943ns 464732 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26465227ns 464737 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26465511ns 464742 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26465966ns 464750 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26466137ns 464753 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26466421ns 464758 1a110850 fd5ff06f jal x0, -44 +26466705ns 464763 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26466989ns 464768 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26467387ns 464775 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26467557ns 464778 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26468012ns 464786 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26468183ns 464789 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26468467ns 464794 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26468751ns 464799 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26469035ns 464804 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26469490ns 464812 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26469660ns 464815 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26469944ns 464820 1a110850 fd5ff06f jal x0, -44 +26470229ns 464825 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26470513ns 464830 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26470911ns 464837 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26471081ns 464840 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26471536ns 464848 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26471706ns 464851 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26471990ns 464856 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26472274ns 464861 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26472559ns 464866 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26473013ns 464874 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26473184ns 464877 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26473468ns 464882 1a110850 fd5ff06f jal x0, -44 +26473752ns 464887 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26474036ns 464892 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26474434ns 464899 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26474605ns 464902 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26475059ns 464910 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26475230ns 464913 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26475514ns 464918 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26475798ns 464923 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26476082ns 464928 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26476537ns 464936 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26476707ns 464939 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26476992ns 464944 1a110850 fd5ff06f jal x0, -44 +26477276ns 464949 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26477560ns 464954 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26477958ns 464961 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26478128ns 464964 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26478583ns 464972 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26478753ns 464975 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26479037ns 464980 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26479322ns 464985 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26479606ns 464990 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26480060ns 464998 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26480231ns 465001 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26480515ns 465006 1a110850 fd5ff06f jal x0, -44 +26480799ns 465011 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26481083ns 465016 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26481481ns 465023 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26481652ns 465026 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26482106ns 465034 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26482277ns 465037 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26482561ns 465042 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26482845ns 465047 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26483129ns 465052 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26483584ns 465060 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26483755ns 465063 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26484039ns 465068 1a110850 fd5ff06f jal x0, -44 +26484323ns 465073 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26484607ns 465078 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26485005ns 465085 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26485175ns 465088 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26485630ns 465096 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26485800ns 465099 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26486085ns 465104 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26486369ns 465109 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26486653ns 465114 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26487108ns 465122 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26487278ns 465125 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26487562ns 465130 1a110850 fd5ff06f jal x0, -44 +26487846ns 465135 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26488131ns 465140 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26488528ns 465147 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26488699ns 465150 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26489154ns 465158 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26489324ns 465161 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26489608ns 465166 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26489892ns 465171 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26490177ns 465176 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26490631ns 465184 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26490802ns 465187 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26491086ns 465192 1a110850 fd5ff06f jal x0, -44 +26491370ns 465197 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26491654ns 465202 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26492052ns 465209 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26492223ns 465212 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26492677ns 465220 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26492848ns 465223 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26493132ns 465228 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26493416ns 465233 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26493700ns 465238 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26494155ns 465246 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26494325ns 465249 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26494609ns 465254 1a110850 fd5ff06f jal x0, -44 +26494894ns 465259 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26495178ns 465264 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26495576ns 465271 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26495746ns 465274 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26496201ns 465282 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26496371ns 465285 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26496655ns 465290 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26496940ns 465295 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26497224ns 465300 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26497678ns 465308 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26497849ns 465311 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26498133ns 465316 1a110850 fd5ff06f jal x0, -44 +26498417ns 465321 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26498701ns 465326 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26499099ns 465333 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26499270ns 465336 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26499724ns 465344 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26499895ns 465347 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26500179ns 465352 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26500463ns 465357 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26500747ns 465362 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26501202ns 465370 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26501372ns 465373 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26501657ns 465378 1a110850 fd5ff06f jal x0, -44 +26501941ns 465383 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26502225ns 465388 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26502623ns 465395 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26502793ns 465398 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26503248ns 465406 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26503418ns 465409 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26503703ns 465414 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26503987ns 465419 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26504271ns 465424 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26504726ns 465432 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26504896ns 465435 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26505180ns 465440 1a110850 fd5ff06f jal x0, -44 +26505464ns 465445 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26505749ns 465450 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26506146ns 465457 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26506317ns 465460 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26506771ns 465468 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26506942ns 465471 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26507226ns 465476 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26507510ns 465481 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26507794ns 465486 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26508249ns 465494 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26508420ns 465497 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26508704ns 465502 1a110850 fd5ff06f jal x0, -44 +26508988ns 465507 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26509272ns 465512 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26509670ns 465519 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26509840ns 465522 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26510295ns 465530 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26510466ns 465533 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26510750ns 465538 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26511034ns 465543 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26511318ns 465548 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26511773ns 465556 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26511943ns 465559 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26512227ns 465564 1a110850 fd5ff06f jal x0, -44 +26512512ns 465569 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26512796ns 465574 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26513194ns 465581 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26513364ns 465584 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26513819ns 465592 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26513989ns 465595 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26514273ns 465600 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26514557ns 465605 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26514842ns 465610 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26515296ns 465618 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26515467ns 465621 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26515751ns 465626 1a110850 fd5ff06f jal x0, -44 +26516035ns 465631 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26516319ns 465636 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26516717ns 465643 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26516888ns 465646 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26517342ns 465654 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26517513ns 465657 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26517797ns 465662 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26518081ns 465667 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26518365ns 465672 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26518820ns 465680 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26518990ns 465683 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26519275ns 465688 1a110850 fd5ff06f jal x0, -44 +26519559ns 465693 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26519843ns 465698 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26520241ns 465705 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26520411ns 465708 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26520866ns 465716 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26521036ns 465719 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26521320ns 465724 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26521605ns 465729 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26521889ns 465734 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26522343ns 465742 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26522514ns 465745 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26522798ns 465750 1a110850 fd5ff06f jal x0, -44 +26523082ns 465755 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26523366ns 465760 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26523764ns 465767 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26523935ns 465770 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26524389ns 465778 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26524560ns 465781 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26524844ns 465786 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26525128ns 465791 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26525412ns 465796 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26525867ns 465804 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26526038ns 465807 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26526322ns 465812 1a110850 fd5ff06f jal x0, -44 +26526606ns 465817 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26526890ns 465822 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26527288ns 465829 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26527458ns 465832 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26527913ns 465840 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26528083ns 465843 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26528368ns 465848 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26528652ns 465853 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26528936ns 465858 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26529391ns 465866 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26529561ns 465869 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26529845ns 465874 1a110850 fd5ff06f jal x0, -44 +26530129ns 465879 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26530414ns 465884 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26530811ns 465891 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26530982ns 465894 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26531437ns 465902 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26531607ns 465905 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26531891ns 465910 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26532175ns 465915 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26532460ns 465920 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26532914ns 465928 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26533085ns 465931 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26533369ns 465936 1a110850 fd5ff06f jal x0, -44 +26533653ns 465941 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26533937ns 465946 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26534335ns 465953 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26534506ns 465956 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26534960ns 465964 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26535131ns 465967 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26535415ns 465972 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26535699ns 465977 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26535983ns 465982 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26536438ns 465990 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26536608ns 465993 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26536892ns 465998 1a110850 fd5ff06f jal x0, -44 +26537177ns 466003 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26537461ns 466008 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26537859ns 466015 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26538029ns 466018 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26538484ns 466026 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26538654ns 466029 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26538938ns 466034 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26539223ns 466039 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26539507ns 466044 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26539961ns 466052 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26540132ns 466055 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26540416ns 466060 1a110850 fd5ff06f jal x0, -44 +26540700ns 466065 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26540984ns 466070 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26541382ns 466077 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26541553ns 466080 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26542007ns 466088 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26542178ns 466091 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26542462ns 466096 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26542746ns 466101 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26543030ns 466106 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26543485ns 466114 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26543655ns 466117 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26543940ns 466122 1a110850 fd5ff06f jal x0, -44 +26544224ns 466127 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26544508ns 466132 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26544906ns 466139 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26545076ns 466142 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26545531ns 466150 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26545701ns 466153 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26545986ns 466158 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26546270ns 466163 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26546554ns 466168 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26547009ns 466176 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26547179ns 466179 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26547463ns 466184 1a110850 fd5ff06f jal x0, -44 +26547747ns 466189 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26548032ns 466194 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26548429ns 466201 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26548600ns 466204 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26549055ns 466212 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26549225ns 466215 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26549509ns 466220 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26549793ns 466225 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26550077ns 466230 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26550532ns 466238 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26550703ns 466241 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26550987ns 466246 1a110850 fd5ff06f jal x0, -44 +26551271ns 466251 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26551555ns 466256 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26551953ns 466263 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26552123ns 466266 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26552578ns 466274 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26552749ns 466277 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26553033ns 466282 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26553317ns 466287 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26553601ns 466292 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26554056ns 466300 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26554226ns 466303 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26554510ns 466308 1a110850 fd5ff06f jal x0, -44 +26554795ns 466313 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26555079ns 466318 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26555477ns 466325 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26555647ns 466328 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26556102ns 466336 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26556272ns 466339 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26556556ns 466344 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26556840ns 466349 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26557125ns 466354 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26557579ns 466362 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26557750ns 466365 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26558034ns 466370 1a110850 fd5ff06f jal x0, -44 +26558318ns 466375 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26558602ns 466380 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26559000ns 466387 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26559171ns 466390 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26559625ns 466398 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26559796ns 466401 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26560080ns 466406 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26560364ns 466411 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26560648ns 466416 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26561103ns 466424 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26561273ns 466427 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26561558ns 466432 1a110850 fd5ff06f jal x0, -44 +26561842ns 466437 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26562126ns 466442 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26562524ns 466449 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26562694ns 466452 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26563149ns 466460 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26563319ns 466463 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26563603ns 466468 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26563888ns 466473 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26564172ns 466478 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26564626ns 466486 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26564797ns 466489 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26565081ns 466494 1a110850 fd5ff06f jal x0, -44 +26565365ns 466499 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26565649ns 466504 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26566047ns 466511 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26566218ns 466514 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26566672ns 466522 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26566843ns 466525 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26567127ns 466530 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26567411ns 466535 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26567695ns 466540 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26568150ns 466548 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26568321ns 466551 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26568605ns 466556 1a110850 fd5ff06f jal x0, -44 +26568889ns 466561 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26569173ns 466566 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26569571ns 466573 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26569741ns 466576 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26570196ns 466584 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26570367ns 466587 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26570651ns 466592 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26570935ns 466597 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26571219ns 466602 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26571674ns 466610 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26571844ns 466613 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26572128ns 466618 1a110850 fd5ff06f jal x0, -44 +26572412ns 466623 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26572697ns 466628 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26573094ns 466635 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26573265ns 466638 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26573720ns 466646 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26573890ns 466649 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26574174ns 466654 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26574458ns 466659 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26574743ns 466664 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26575197ns 466672 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26575368ns 466675 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26575652ns 466680 1a110850 fd5ff06f jal x0, -44 +26575936ns 466685 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26576220ns 466690 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26576618ns 466697 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26576789ns 466700 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26577243ns 466708 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26577414ns 466711 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26577698ns 466716 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26577982ns 466721 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26578266ns 466726 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26578721ns 466734 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26578891ns 466737 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26579175ns 466742 1a110850 fd5ff06f jal x0, -44 +26579460ns 466747 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26579744ns 466752 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26580142ns 466759 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26580312ns 466762 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26580767ns 466770 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26580937ns 466773 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26581221ns 466778 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26581506ns 466783 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26581790ns 466788 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26582244ns 466796 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26582415ns 466799 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26582699ns 466804 1a110850 fd5ff06f jal x0, -44 +26582983ns 466809 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26583267ns 466814 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26583665ns 466821 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26583836ns 466824 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26584290ns 466832 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26584461ns 466835 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26584745ns 466840 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26585029ns 466845 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26585313ns 466850 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26585768ns 466858 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26585938ns 466861 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26586223ns 466866 1a110850 fd5ff06f jal x0, -44 +26586507ns 466871 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26586791ns 466876 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26587189ns 466883 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26587359ns 466886 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26587814ns 466894 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26587984ns 466897 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26588269ns 466902 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26588553ns 466907 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26588837ns 466912 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26589292ns 466920 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26589462ns 466923 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26589746ns 466928 1a110850 fd5ff06f jal x0, -44 +26590030ns 466933 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26590315ns 466938 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26590712ns 466945 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26590883ns 466948 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26591338ns 466956 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26591508ns 466959 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26591792ns 466964 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26592076ns 466969 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26592360ns 466974 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26592815ns 466982 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26592986ns 466985 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26593270ns 466990 1a110850 fd5ff06f jal x0, -44 +26593554ns 466995 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26593838ns 467000 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26594236ns 467007 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26594406ns 467010 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26594861ns 467018 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26595032ns 467021 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26595316ns 467026 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26595600ns 467031 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26595884ns 467036 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26596339ns 467044 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26596509ns 467047 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26596793ns 467052 1a110850 fd5ff06f jal x0, -44 +26597078ns 467057 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26597362ns 467062 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26597760ns 467069 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26597930ns 467072 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26598385ns 467080 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26598555ns 467083 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26598839ns 467088 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26599123ns 467093 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26599408ns 467098 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26599862ns 467106 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26600033ns 467109 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26600317ns 467114 1a110850 fd5ff06f jal x0, -44 +26600601ns 467119 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26600885ns 467124 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26601283ns 467131 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26601454ns 467134 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26601908ns 467142 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26602079ns 467145 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26602363ns 467150 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26602647ns 467155 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26602931ns 467160 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26603386ns 467168 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26603556ns 467171 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26603841ns 467176 1a110850 fd5ff06f jal x0, -44 +26604125ns 467181 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26604409ns 467186 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26604807ns 467193 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26604977ns 467196 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26605432ns 467204 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26605602ns 467207 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26605887ns 467212 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26606171ns 467217 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26606455ns 467222 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26606909ns 467230 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26607080ns 467233 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26607364ns 467238 1a110850 fd5ff06f jal x0, -44 +26607648ns 467243 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26607932ns 467248 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26608330ns 467255 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26608501ns 467258 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26608955ns 467266 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26609126ns 467269 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26609410ns 467274 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26609694ns 467279 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26609978ns 467284 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26610433ns 467292 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26610604ns 467295 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26610888ns 467300 1a110850 fd5ff06f jal x0, -44 +26611172ns 467305 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26611456ns 467310 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26611854ns 467317 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26612024ns 467320 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26612479ns 467328 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26612650ns 467331 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26612934ns 467336 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26613218ns 467341 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26613502ns 467346 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26613957ns 467354 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26614127ns 467357 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26614411ns 467362 1a110850 fd5ff06f jal x0, -44 +26614695ns 467367 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26614980ns 467372 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26615377ns 467379 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26615548ns 467382 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26616003ns 467390 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26616173ns 467393 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26616457ns 467398 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26616741ns 467403 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26617026ns 467408 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26617480ns 467416 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26617651ns 467419 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26617935ns 467424 1a110850 fd5ff06f jal x0, -44 +26618219ns 467429 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26618503ns 467434 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26618901ns 467441 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26619072ns 467444 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26619526ns 467452 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26619697ns 467455 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26619981ns 467460 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26620265ns 467465 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26620549ns 467470 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26621004ns 467478 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26621174ns 467481 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26621458ns 467486 1a110850 fd5ff06f jal x0, -44 +26621743ns 467491 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26622027ns 467496 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26622425ns 467503 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26622595ns 467506 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26623050ns 467514 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26623220ns 467517 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26623504ns 467522 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26623789ns 467527 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26624073ns 467532 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26624527ns 467540 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26624698ns 467543 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26624982ns 467548 1a110850 fd5ff06f jal x0, -44 +26625266ns 467553 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26625550ns 467558 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26625948ns 467565 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26626119ns 467568 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26626573ns 467576 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26626744ns 467579 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26627028ns 467584 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26627312ns 467589 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26627596ns 467594 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26628051ns 467602 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26628221ns 467605 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26628506ns 467610 1a110850 fd5ff06f jal x0, -44 +26628790ns 467615 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26629074ns 467620 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26629472ns 467627 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26629642ns 467630 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26630097ns 467638 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26630267ns 467641 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26630552ns 467646 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26630836ns 467651 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26631120ns 467656 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26631575ns 467664 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26631745ns 467667 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26632029ns 467672 1a110850 fd5ff06f jal x0, -44 +26632313ns 467677 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26632598ns 467682 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26632995ns 467689 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26633166ns 467692 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26633621ns 467700 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26633791ns 467703 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26634075ns 467708 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26634359ns 467713 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26634643ns 467718 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26635098ns 467726 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26635269ns 467729 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26635553ns 467734 1a110850 fd5ff06f jal x0, -44 +26635837ns 467739 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26636121ns 467744 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26636519ns 467751 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26636689ns 467754 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26637144ns 467762 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26637315ns 467765 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26637599ns 467770 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26637883ns 467775 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26638167ns 467780 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26638622ns 467788 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26638792ns 467791 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26639076ns 467796 1a110850 fd5ff06f jal x0, -44 +26639361ns 467801 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26639645ns 467806 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26640043ns 467813 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26640213ns 467816 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26640668ns 467824 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26640838ns 467827 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26641122ns 467832 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26641407ns 467837 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26641691ns 467842 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26642145ns 467850 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26642316ns 467853 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26642600ns 467858 1a110850 fd5ff06f jal x0, -44 +26642884ns 467863 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26643168ns 467868 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26643566ns 467875 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26643737ns 467878 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26644191ns 467886 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26644362ns 467889 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26644646ns 467894 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26644930ns 467899 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26645214ns 467904 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26645669ns 467912 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26645839ns 467915 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26646124ns 467920 1a110850 fd5ff06f jal x0, -44 +26646408ns 467925 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26646692ns 467930 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26647090ns 467937 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26647260ns 467940 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26647715ns 467948 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26647885ns 467951 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26648170ns 467956 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26648454ns 467961 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26648738ns 467966 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26649192ns 467974 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26649363ns 467977 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26649647ns 467982 1a110850 fd5ff06f jal x0, -44 +26649931ns 467987 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26650215ns 467992 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26650613ns 467999 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26650784ns 468002 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26651238ns 468010 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26651409ns 468013 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26651693ns 468018 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26651977ns 468023 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26652261ns 468028 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26652716ns 468036 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26652887ns 468039 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26653171ns 468044 1a110850 fd5ff06f jal x0, -44 +26653455ns 468049 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26653739ns 468054 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26654137ns 468061 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26654307ns 468064 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26654762ns 468072 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26654933ns 468075 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26655217ns 468080 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26655501ns 468085 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26655785ns 468090 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26656240ns 468098 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26656410ns 468101 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26656694ns 468106 1a110850 fd5ff06f jal x0, -44 +26656978ns 468111 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26657263ns 468116 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26657660ns 468123 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26657831ns 468126 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26658286ns 468134 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26658456ns 468137 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26658740ns 468142 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26659024ns 468147 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26659309ns 468152 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26659763ns 468160 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26659934ns 468163 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26660218ns 468168 1a110850 fd5ff06f jal x0, -44 +26660502ns 468173 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26660786ns 468178 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26661184ns 468185 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26661355ns 468188 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26661809ns 468196 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26661980ns 468199 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26662264ns 468204 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26662548ns 468209 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26662832ns 468214 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26663287ns 468222 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26663457ns 468225 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26663741ns 468230 1a110850 fd5ff06f jal x0, -44 +26664026ns 468235 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26664310ns 468240 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26664708ns 468247 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26664878ns 468250 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26665333ns 468258 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26665503ns 468261 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26665787ns 468266 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26666072ns 468271 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26666356ns 468276 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26666810ns 468284 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26666981ns 468287 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26667265ns 468292 1a110850 fd5ff06f jal x0, -44 +26667549ns 468297 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26667833ns 468302 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26668231ns 468309 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26668402ns 468312 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26668856ns 468320 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26669027ns 468323 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26669311ns 468328 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26669595ns 468333 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26669879ns 468338 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26670334ns 468346 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26670504ns 468349 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26670789ns 468354 1a110850 fd5ff06f jal x0, -44 +26671073ns 468359 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26671357ns 468364 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26671755ns 468371 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26671925ns 468374 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26672380ns 468382 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26672550ns 468385 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26672835ns 468390 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26673119ns 468395 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26673403ns 468400 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26673858ns 468408 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26674028ns 468411 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26674312ns 468416 1a110850 fd5ff06f jal x0, -44 +26674596ns 468421 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26674881ns 468426 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26675278ns 468433 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26675449ns 468436 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26675904ns 468444 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26676074ns 468447 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26676358ns 468452 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26676642ns 468457 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26676927ns 468462 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26677381ns 468470 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26677552ns 468473 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26677836ns 468478 1a110850 fd5ff06f jal x0, -44 +26678120ns 468483 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26678404ns 468488 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26678802ns 468495 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26678972ns 468498 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26679427ns 468506 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26679598ns 468509 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26679882ns 468514 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26680166ns 468519 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26680450ns 468524 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26680905ns 468532 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26681075ns 468535 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26681359ns 468540 1a110850 fd5ff06f jal x0, -44 +26681644ns 468545 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26681928ns 468550 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26682326ns 468557 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26682496ns 468560 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26682951ns 468568 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26683121ns 468571 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26683405ns 468576 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26683690ns 468581 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26683974ns 468586 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26684428ns 468594 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26684599ns 468597 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26684883ns 468602 1a110850 fd5ff06f jal x0, -44 +26685167ns 468607 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26685451ns 468612 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26685849ns 468619 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26686020ns 468622 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26686474ns 468630 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26686645ns 468633 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26686929ns 468638 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26687213ns 468643 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26687497ns 468648 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26687952ns 468656 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26688122ns 468659 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26688407ns 468664 1a110850 fd5ff06f jal x0, -44 +26688691ns 468669 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26688975ns 468674 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26689373ns 468681 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26689543ns 468684 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26689998ns 468692 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26690168ns 468695 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26690453ns 468700 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26690737ns 468705 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26691021ns 468710 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26691475ns 468718 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26691646ns 468721 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26691930ns 468726 1a110850 fd5ff06f jal x0, -44 +26692214ns 468731 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26692498ns 468736 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26692896ns 468743 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26693067ns 468746 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26693521ns 468754 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26693692ns 468757 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26693976ns 468762 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26694260ns 468767 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26694544ns 468772 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26694999ns 468780 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26695170ns 468783 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26695454ns 468788 1a110850 fd5ff06f jal x0, -44 +26695738ns 468793 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26696022ns 468798 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26696420ns 468805 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26696590ns 468808 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26697045ns 468816 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26697216ns 468819 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26697500ns 468824 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26697784ns 468829 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26698068ns 468834 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26698523ns 468842 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26698693ns 468845 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26698977ns 468850 1a110850 fd5ff06f jal x0, -44 +26699261ns 468855 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26699546ns 468860 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26699943ns 468867 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26700114ns 468870 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26700569ns 468878 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26700739ns 468881 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26701023ns 468886 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26701307ns 468891 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26701592ns 468896 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26702046ns 468904 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26702217ns 468907 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26702501ns 468912 1a110850 fd5ff06f jal x0, -44 +26702785ns 468917 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26703069ns 468922 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26703467ns 468929 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26703638ns 468932 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26704092ns 468940 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26704263ns 468943 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26704547ns 468948 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26704831ns 468953 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26705115ns 468958 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26705570ns 468966 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26705740ns 468969 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26706024ns 468974 1a110850 fd5ff06f jal x0, -44 +26706309ns 468979 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26706593ns 468984 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26706991ns 468991 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26707161ns 468994 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26707616ns 469002 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26707786ns 469005 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26708070ns 469010 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26708355ns 469015 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26708639ns 469020 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26709093ns 469028 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26709264ns 469031 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26709548ns 469036 1a110850 fd5ff06f jal x0, -44 +26709832ns 469041 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26710116ns 469046 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26710514ns 469053 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26710685ns 469056 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26711139ns 469064 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26711310ns 469067 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26711594ns 469072 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26711878ns 469077 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26712162ns 469082 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26712617ns 469090 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26712787ns 469093 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26713072ns 469098 1a110850 fd5ff06f jal x0, -44 +26713356ns 469103 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26713640ns 469108 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26714038ns 469115 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26714208ns 469118 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26714663ns 469126 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26714833ns 469129 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26715118ns 469134 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26715402ns 469139 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26715686ns 469144 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26716141ns 469152 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26716311ns 469155 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26716595ns 469160 1a110850 fd5ff06f jal x0, -44 +26716879ns 469165 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26717164ns 469170 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26717561ns 469177 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26717732ns 469180 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26718187ns 469188 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26718357ns 469191 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26718641ns 469196 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26718925ns 469201 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26719210ns 469206 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26719664ns 469214 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26719835ns 469217 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26720119ns 469222 1a110850 fd5ff06f jal x0, -44 +26720403ns 469227 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26720687ns 469232 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26721085ns 469239 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26721255ns 469242 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26721710ns 469250 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26721881ns 469253 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26722165ns 469258 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26722449ns 469263 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26722733ns 469268 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26723188ns 469276 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26723358ns 469279 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26723642ns 469284 1a110850 fd5ff06f jal x0, -44 +26723927ns 469289 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26724211ns 469294 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26724609ns 469301 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26724779ns 469304 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26725234ns 469312 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26725404ns 469315 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26725688ns 469320 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26725973ns 469325 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26726257ns 469330 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26726711ns 469338 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26726882ns 469341 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26727166ns 469346 1a110850 fd5ff06f jal x0, -44 +26727450ns 469351 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26727734ns 469356 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26728132ns 469363 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26728303ns 469366 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26728757ns 469374 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26728928ns 469377 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26729212ns 469382 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26729496ns 469387 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26729780ns 469392 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26730235ns 469400 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26730405ns 469403 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26730690ns 469408 1a110850 fd5ff06f jal x0, -44 +26730974ns 469413 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26731258ns 469418 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26731656ns 469425 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26731826ns 469428 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26732281ns 469436 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26732451ns 469439 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26732736ns 469444 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26733020ns 469449 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26733304ns 469454 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26733759ns 469462 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26733929ns 469465 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26734213ns 469470 1a110850 fd5ff06f jal x0, -44 +26734497ns 469475 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26734781ns 469480 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26735179ns 469487 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26735350ns 469490 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26735804ns 469498 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26735975ns 469501 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26736259ns 469506 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26736543ns 469511 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26736827ns 469516 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26737282ns 469524 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26737453ns 469527 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26737737ns 469532 1a110850 fd5ff06f jal x0, -44 +26738021ns 469537 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26738305ns 469542 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26738703ns 469549 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26738873ns 469552 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26739328ns 469560 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26739499ns 469563 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26739783ns 469568 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26740067ns 469573 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26740351ns 469578 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26740806ns 469586 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26740976ns 469589 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26741260ns 469594 1a110850 fd5ff06f jal x0, -44 +26741544ns 469599 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26741829ns 469604 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26742226ns 469611 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26742397ns 469614 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26742852ns 469622 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26743022ns 469625 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26743306ns 469630 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26743590ns 469635 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26743875ns 469640 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26744329ns 469648 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26744500ns 469651 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26744784ns 469656 1a110850 fd5ff06f jal x0, -44 +26745068ns 469661 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26745352ns 469666 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26745750ns 469673 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26745921ns 469676 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26746375ns 469684 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26746546ns 469687 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26746830ns 469692 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26747114ns 469697 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26747398ns 469702 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26747853ns 469710 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26748023ns 469713 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26748307ns 469718 1a110850 fd5ff06f jal x0, -44 +26748592ns 469723 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26748876ns 469728 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26749274ns 469735 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26749444ns 469738 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26749899ns 469746 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26750069ns 469749 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26750353ns 469754 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26750638ns 469759 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26750922ns 469764 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26751376ns 469772 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26751547ns 469775 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26751831ns 469780 1a110850 fd5ff06f jal x0, -44 +26752115ns 469785 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26752399ns 469790 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26752797ns 469797 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26752968ns 469800 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26753422ns 469808 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26753593ns 469811 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26753877ns 469816 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26754161ns 469821 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26754445ns 469826 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26754900ns 469834 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26755071ns 469837 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26755355ns 469842 1a110850 fd5ff06f jal x0, -44 +26755639ns 469847 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26755923ns 469852 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26756321ns 469859 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26756491ns 469862 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26756946ns 469870 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26757116ns 469873 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26757401ns 469878 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26757685ns 469883 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26757969ns 469888 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26758424ns 469896 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26758594ns 469899 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26758878ns 469904 1a110850 fd5ff06f jal x0, -44 +26759162ns 469909 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26759447ns 469914 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26759844ns 469921 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26760015ns 469924 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26760470ns 469932 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26760640ns 469935 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26760924ns 469940 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26761208ns 469945 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26761493ns 469950 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26761947ns 469958 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26762118ns 469961 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26762402ns 469966 1a110850 fd5ff06f jal x0, -44 +26762686ns 469971 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26762970ns 469976 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26763368ns 469983 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26763538ns 469986 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26763993ns 469994 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26764164ns 469997 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26764448ns 470002 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26764732ns 470007 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26765016ns 470012 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26765471ns 470020 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26765641ns 470023 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26765925ns 470028 1a110850 fd5ff06f jal x0, -44 +26766210ns 470033 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26766494ns 470038 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26766892ns 470045 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26767062ns 470048 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26767517ns 470056 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26767687ns 470059 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26767971ns 470064 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26768256ns 470069 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26768540ns 470074 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26768994ns 470082 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26769165ns 470085 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26769449ns 470090 1a110850 fd5ff06f jal x0, -44 +26769733ns 470095 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26770017ns 470100 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26770415ns 470107 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26770586ns 470110 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26771040ns 470118 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26771211ns 470121 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26771495ns 470126 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26771779ns 470131 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26772063ns 470136 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26772518ns 470144 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26772688ns 470147 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26772973ns 470152 1a110850 fd5ff06f jal x0, -44 +26773257ns 470157 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26773541ns 470162 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26773939ns 470169 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26774109ns 470172 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26774564ns 470180 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26774734ns 470183 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26775019ns 470188 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26775303ns 470193 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26775587ns 470198 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26776042ns 470206 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26776212ns 470209 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26776496ns 470214 1a110850 fd5ff06f jal x0, -44 +26776780ns 470219 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26777064ns 470224 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26777462ns 470231 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26777633ns 470234 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26778087ns 470242 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26778258ns 470245 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26778542ns 470250 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26778826ns 470255 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26779110ns 470260 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26779565ns 470268 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26779736ns 470271 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26780020ns 470276 1a110850 fd5ff06f jal x0, -44 +26780304ns 470281 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26780588ns 470286 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26780986ns 470293 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26781156ns 470296 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26781611ns 470304 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26781782ns 470307 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26782066ns 470312 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26782350ns 470317 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26782634ns 470322 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26783089ns 470330 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26783259ns 470333 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26783543ns 470338 1a110850 fd5ff06f jal x0, -44 +26783827ns 470343 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26784112ns 470348 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26784509ns 470355 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26784680ns 470358 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26785135ns 470366 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26785305ns 470369 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26785589ns 470374 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26785873ns 470379 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26786158ns 470384 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26786612ns 470392 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26786783ns 470395 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26787067ns 470400 1a110850 fd5ff06f jal x0, -44 +26787351ns 470405 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26787635ns 470410 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26788033ns 470417 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26788204ns 470420 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26788658ns 470428 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26788829ns 470431 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26789113ns 470436 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26789397ns 470441 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26789681ns 470446 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26790136ns 470454 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26790306ns 470457 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26790591ns 470462 1a110850 fd5ff06f jal x0, -44 +26790875ns 470467 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26791159ns 470472 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26791557ns 470479 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26791727ns 470482 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26792182ns 470490 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26792352ns 470493 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26792636ns 470498 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26792921ns 470503 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26793205ns 470508 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26793659ns 470516 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26793830ns 470519 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26794114ns 470524 1a110850 fd5ff06f jal x0, -44 +26794398ns 470529 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26794682ns 470534 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26795080ns 470541 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26795251ns 470544 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26795705ns 470552 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26795876ns 470555 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26796160ns 470560 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26796444ns 470565 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26796728ns 470570 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26797183ns 470578 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26797354ns 470581 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26797638ns 470586 1a110850 fd5ff06f jal x0, -44 +26797922ns 470591 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26798206ns 470596 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26798604ns 470603 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26798774ns 470606 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26799229ns 470614 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26799399ns 470617 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26799684ns 470622 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26799968ns 470627 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26800252ns 470632 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26800707ns 470640 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26800877ns 470643 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26801161ns 470648 1a110850 fd5ff06f jal x0, -44 +26801445ns 470653 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26801730ns 470658 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26802127ns 470665 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26802298ns 470668 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26802753ns 470676 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26802923ns 470679 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26803207ns 470684 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26803491ns 470689 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26803776ns 470694 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26804230ns 470702 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26804401ns 470705 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26804685ns 470710 1a110850 fd5ff06f jal x0, -44 +26804969ns 470715 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26805253ns 470720 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26805651ns 470727 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26805821ns 470730 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26806276ns 470738 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26806447ns 470741 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26806731ns 470746 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26807015ns 470751 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26807299ns 470756 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26807754ns 470764 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26807924ns 470767 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26808208ns 470772 1a110850 fd5ff06f jal x0, -44 +26808493ns 470777 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26808777ns 470782 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26809175ns 470789 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26809345ns 470792 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26809800ns 470800 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26809970ns 470803 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26810254ns 470808 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26810539ns 470813 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26810823ns 470818 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26811277ns 470826 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26811448ns 470829 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26811732ns 470834 1a110850 fd5ff06f jal x0, -44 +26812016ns 470839 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26812300ns 470844 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26812698ns 470851 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26812869ns 470854 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26813323ns 470862 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26813494ns 470865 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26813778ns 470870 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26814062ns 470875 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26814346ns 470880 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26814801ns 470888 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26814971ns 470891 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26815256ns 470896 1a110850 fd5ff06f jal x0, -44 +26815540ns 470901 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26815824ns 470906 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26816222ns 470913 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26816392ns 470916 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26816847ns 470924 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26817017ns 470927 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26817302ns 470932 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26817586ns 470937 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26817870ns 470942 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26818325ns 470950 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26818495ns 470953 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26818779ns 470958 1a110850 fd5ff06f jal x0, -44 +26819063ns 470963 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26819347ns 470968 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26819745ns 470975 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26819916ns 470978 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26820370ns 470986 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26820541ns 470989 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26820825ns 470994 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26821109ns 470999 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26821393ns 471004 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26821848ns 471012 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26822019ns 471015 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26822303ns 471020 1a110850 fd5ff06f jal x0, -44 +26822587ns 471025 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26822871ns 471030 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26823269ns 471037 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26823439ns 471040 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26823894ns 471048 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26824065ns 471051 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26824349ns 471056 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26824633ns 471061 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26824917ns 471066 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26825372ns 471074 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26825542ns 471077 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26825826ns 471082 1a110850 fd5ff06f jal x0, -44 +26826111ns 471087 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26826395ns 471092 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26826792ns 471099 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26826963ns 471102 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26827418ns 471110 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26827588ns 471113 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26827872ns 471118 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26828156ns 471123 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26828441ns 471128 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26828895ns 471136 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26829066ns 471139 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26829350ns 471144 1a110850 fd5ff06f jal x0, -44 +26829634ns 471149 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26829918ns 471154 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26830316ns 471161 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26830487ns 471164 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26830941ns 471172 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26831112ns 471175 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26831396ns 471180 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26831680ns 471185 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26831964ns 471190 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26832419ns 471198 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26832589ns 471201 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26832874ns 471206 1a110850 fd5ff06f jal x0, -44 +26833158ns 471211 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26833442ns 471216 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26833840ns 471223 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26834010ns 471226 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26834465ns 471234 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26834635ns 471237 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26834919ns 471242 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26835204ns 471247 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26835488ns 471252 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26835942ns 471260 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26836113ns 471263 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26836397ns 471268 1a110850 fd5ff06f jal x0, -44 +26836681ns 471273 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26836965ns 471278 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26837363ns 471285 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26837534ns 471288 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26837988ns 471296 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26838159ns 471299 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26838443ns 471304 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26838727ns 471309 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26839011ns 471314 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26839466ns 471322 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26839637ns 471325 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26839921ns 471330 1a110850 fd5ff06f jal x0, -44 +26840205ns 471335 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26840489ns 471340 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26840887ns 471347 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26841057ns 471350 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26841512ns 471358 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26841682ns 471361 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26841967ns 471366 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26842251ns 471371 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26842535ns 471376 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26842990ns 471384 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26843160ns 471387 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26843444ns 471392 1a110850 fd5ff06f jal x0, -44 +26843728ns 471397 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26844013ns 471402 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26844410ns 471409 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26844581ns 471412 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26845036ns 471420 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26845206ns 471423 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26845490ns 471428 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26845774ns 471433 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26846059ns 471438 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26846513ns 471446 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26846684ns 471449 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26846968ns 471454 1a110850 fd5ff06f jal x0, -44 +26847252ns 471459 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26847536ns 471464 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26847934ns 471471 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26848104ns 471474 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26848559ns 471482 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26848730ns 471485 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26849014ns 471490 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26849298ns 471495 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26849582ns 471500 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26850037ns 471508 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26850207ns 471511 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26850491ns 471516 1a110850 fd5ff06f jal x0, -44 +26850776ns 471521 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26851060ns 471526 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26851458ns 471533 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26851628ns 471536 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26852083ns 471544 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26852253ns 471547 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26852537ns 471552 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26852822ns 471557 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26853106ns 471562 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26853560ns 471570 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26853731ns 471573 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26854015ns 471578 1a110850 fd5ff06f jal x0, -44 +26854299ns 471583 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26854583ns 471588 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26854981ns 471595 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26855152ns 471598 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26855606ns 471606 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26855777ns 471609 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26856061ns 471614 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26856345ns 471619 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26856629ns 471624 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26857084ns 471632 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26857254ns 471635 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26857539ns 471640 1a110850 fd5ff06f jal x0, -44 +26857823ns 471645 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26858107ns 471650 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26858505ns 471657 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26858675ns 471660 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26859130ns 471668 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26859300ns 471671 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26859585ns 471676 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26859869ns 471681 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26860153ns 471686 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26860608ns 471694 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26860778ns 471697 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26861062ns 471702 1a110850 fd5ff06f jal x0, -44 +26861346ns 471707 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26861631ns 471712 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26862028ns 471719 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26862199ns 471722 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26862653ns 471730 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26862824ns 471733 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26863108ns 471738 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26863392ns 471743 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26863676ns 471748 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26864131ns 471756 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26864302ns 471759 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26864586ns 471764 1a110850 fd5ff06f jal x0, -44 +26864870ns 471769 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26865154ns 471774 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26865552ns 471781 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26865722ns 471784 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26866177ns 471792 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26866348ns 471795 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26866632ns 471800 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26866916ns 471805 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26867200ns 471810 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26867655ns 471818 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26867825ns 471821 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26868109ns 471826 1a110850 fd5ff06f jal x0, -44 +26868394ns 471831 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26868678ns 471836 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26869075ns 471843 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26869246ns 471846 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26869701ns 471854 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26869871ns 471857 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26870155ns 471862 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26870439ns 471867 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26870724ns 471872 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26871178ns 471880 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26871349ns 471883 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26871633ns 471888 1a110850 fd5ff06f jal x0, -44 +26871917ns 471893 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26872201ns 471898 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26872599ns 471905 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26872770ns 471908 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26873224ns 471916 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26873395ns 471919 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26873679ns 471924 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26873963ns 471929 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26874247ns 471934 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26874702ns 471942 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26874872ns 471945 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26875157ns 471950 1a110850 fd5ff06f jal x0, -44 +26875441ns 471955 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26875725ns 471960 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26876123ns 471967 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26876293ns 471970 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26876748ns 471978 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26876918ns 471981 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26877202ns 471986 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26877487ns 471991 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26877771ns 471996 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26878225ns 472004 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26878396ns 472007 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26878680ns 472012 1a110850 fd5ff06f jal x0, -44 +26878964ns 472017 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26879248ns 472022 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26879646ns 472029 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26879817ns 472032 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26880271ns 472040 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26880442ns 472043 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26880726ns 472048 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26881010ns 472053 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26881294ns 472058 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26881749ns 472066 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26881920ns 472069 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26882204ns 472074 1a110850 fd5ff06f jal x0, -44 +26882488ns 472079 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26882772ns 472084 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26883170ns 472091 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26883340ns 472094 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26883795ns 472102 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26883965ns 472105 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26884250ns 472110 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26884534ns 472115 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26884818ns 472120 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26885273ns 472128 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26885443ns 472131 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26885727ns 472136 1a110850 fd5ff06f jal x0, -44 +26886011ns 472141 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26886296ns 472146 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26886693ns 472153 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26886864ns 472156 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26887319ns 472164 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26887489ns 472167 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26887773ns 472172 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26888057ns 472177 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26888342ns 472182 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26888796ns 472190 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26888967ns 472193 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26889251ns 472198 1a110850 fd5ff06f jal x0, -44 +26889535ns 472203 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26889819ns 472208 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26890217ns 472215 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26890387ns 472218 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26890842ns 472226 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26891013ns 472229 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26891297ns 472234 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26891581ns 472239 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26891865ns 472244 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26892320ns 472252 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26892490ns 472255 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26892774ns 472260 1a110850 fd5ff06f jal x0, -44 +26893059ns 472265 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26893343ns 472270 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26893741ns 472277 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26893911ns 472280 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26894366ns 472288 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26894536ns 472291 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26894820ns 472296 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26895105ns 472301 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26895389ns 472306 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26895843ns 472314 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26896014ns 472317 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26896298ns 472322 1a110850 fd5ff06f jal x0, -44 +26896582ns 472327 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26896866ns 472332 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26897264ns 472339 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26897435ns 472342 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26897889ns 472350 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26898060ns 472353 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26898344ns 472358 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26898628ns 472363 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26898912ns 472368 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26899367ns 472376 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26899537ns 472379 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26899822ns 472384 1a110850 fd5ff06f jal x0, -44 +26900106ns 472389 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26900390ns 472394 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26900788ns 472401 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26900958ns 472404 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26901413ns 472412 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26901583ns 472415 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26901868ns 472420 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26902152ns 472425 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26902436ns 472430 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26902891ns 472438 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26903061ns 472441 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26903345ns 472446 1a110850 fd5ff06f jal x0, -44 +26903629ns 472451 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26903914ns 472456 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26904311ns 472463 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26904482ns 472466 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26904936ns 472474 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26905107ns 472477 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26905391ns 472482 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26905675ns 472487 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26905959ns 472492 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26906414ns 472500 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26906585ns 472503 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26906869ns 472508 1a110850 fd5ff06f jal x0, -44 +26907153ns 472513 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26907437ns 472518 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26907835ns 472525 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26908005ns 472528 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26908460ns 472536 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26908631ns 472539 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26908915ns 472544 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26909199ns 472549 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26909483ns 472554 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26909938ns 472562 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26910108ns 472565 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26910392ns 472570 1a110850 fd5ff06f jal x0, -44 +26910677ns 472575 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26910961ns 472580 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26911359ns 472587 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26911529ns 472590 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26911984ns 472598 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26912154ns 472601 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26912438ns 472606 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26912722ns 472611 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26913007ns 472616 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26913461ns 472624 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26913632ns 472627 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26913916ns 472632 1a110850 fd5ff06f jal x0, -44 +26914200ns 472637 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26914484ns 472642 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26914882ns 472649 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26915053ns 472652 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26915507ns 472660 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26915678ns 472663 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26915962ns 472668 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26916246ns 472673 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26916530ns 472678 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26916985ns 472686 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26917155ns 472689 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26917440ns 472694 1a110850 fd5ff06f jal x0, -44 +26917724ns 472699 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26918008ns 472704 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26918406ns 472711 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26918576ns 472714 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26919031ns 472722 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26919201ns 472725 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26919485ns 472730 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26919770ns 472735 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26920054ns 472740 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26920508ns 472748 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26920679ns 472751 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26920963ns 472756 1a110850 fd5ff06f jal x0, -44 +26921247ns 472761 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26921531ns 472766 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26921929ns 472773 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26922100ns 472776 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26922554ns 472784 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26922725ns 472787 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26923009ns 472792 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26923293ns 472797 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26923577ns 472802 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26924032ns 472810 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26924203ns 472813 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26924487ns 472818 1a110850 fd5ff06f jal x0, -44 +26924771ns 472823 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26925055ns 472828 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26925453ns 472835 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26925623ns 472838 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26926078ns 472846 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26926248ns 472849 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26926533ns 472854 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26926817ns 472859 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26927101ns 472864 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26927556ns 472872 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26927726ns 472875 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26928010ns 472880 1a110850 fd5ff06f jal x0, -44 +26928294ns 472885 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26928579ns 472890 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26928976ns 472897 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26929147ns 472900 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26929602ns 472908 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26929772ns 472911 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26930056ns 472916 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26930340ns 472921 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26930625ns 472926 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26931079ns 472934 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26931250ns 472937 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26931534ns 472942 1a110850 fd5ff06f jal x0, -44 +26931818ns 472947 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26932102ns 472952 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26932500ns 472959 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26932671ns 472962 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26933125ns 472970 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26933296ns 472973 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26933580ns 472978 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26933864ns 472983 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26934148ns 472988 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26934603ns 472996 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26934773ns 472999 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26935057ns 473004 1a110850 fd5ff06f jal x0, -44 +26935342ns 473009 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26935626ns 473014 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26936024ns 473021 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26936194ns 473024 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26936649ns 473032 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26936819ns 473035 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26937103ns 473040 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26937388ns 473045 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26937672ns 473050 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26938126ns 473058 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26938297ns 473061 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26938581ns 473066 1a110850 fd5ff06f jal x0, -44 +26938865ns 473071 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26939149ns 473076 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26939547ns 473083 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26939718ns 473086 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26940172ns 473094 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26940343ns 473097 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26940627ns 473102 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26940911ns 473107 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26941195ns 473112 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26941650ns 473120 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26941820ns 473123 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26942105ns 473128 1a110850 fd5ff06f jal x0, -44 +26942389ns 473133 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26942673ns 473138 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26943071ns 473145 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26943241ns 473148 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26943696ns 473156 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26943866ns 473159 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26944151ns 473164 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26944435ns 473169 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26944719ns 473174 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26945174ns 473182 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26945344ns 473185 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26945628ns 473190 1a110850 fd5ff06f jal x0, -44 +26945912ns 473195 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26946197ns 473200 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26946594ns 473207 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26946765ns 473210 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26947219ns 473218 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26947390ns 473221 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26947674ns 473226 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26947958ns 473231 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26948242ns 473236 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26948697ns 473244 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26948868ns 473247 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26949152ns 473252 1a110850 fd5ff06f jal x0, -44 +26949436ns 473257 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26949720ns 473262 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26950118ns 473269 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26950288ns 473272 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26950743ns 473280 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26950914ns 473283 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26951198ns 473288 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26951482ns 473293 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26951766ns 473298 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26952221ns 473306 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26952391ns 473309 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26952675ns 473314 1a110850 fd5ff06f jal x0, -44 +26952960ns 473319 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26953244ns 473324 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26953642ns 473331 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26953812ns 473334 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26954267ns 473342 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26954437ns 473345 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26954721ns 473350 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26955005ns 473355 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26955290ns 473360 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26955744ns 473368 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26955915ns 473371 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26956199ns 473376 1a110850 fd5ff06f jal x0, -44 +26956483ns 473381 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26956767ns 473386 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26957165ns 473393 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26957336ns 473396 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26957790ns 473404 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26957961ns 473407 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26958245ns 473412 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26958529ns 473417 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26958813ns 473422 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26959268ns 473430 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26959438ns 473433 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26959723ns 473438 1a110850 fd5ff06f jal x0, -44 +26960007ns 473443 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26960291ns 473448 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26960689ns 473455 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26960859ns 473458 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26961314ns 473466 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26961484ns 473469 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26961768ns 473474 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26962053ns 473479 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26962337ns 473484 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26962791ns 473492 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26962962ns 473495 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26963246ns 473500 1a110850 fd5ff06f jal x0, -44 +26963530ns 473505 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26963814ns 473510 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26964212ns 473517 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26964383ns 473520 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26964837ns 473528 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26965008ns 473531 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26965292ns 473536 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26965576ns 473541 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26965860ns 473546 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26966315ns 473554 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26966486ns 473557 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26966770ns 473562 1a110850 fd5ff06f jal x0, -44 +26967054ns 473567 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26967338ns 473572 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26967736ns 473579 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26967906ns 473582 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26968361ns 473590 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26968531ns 473593 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26968816ns 473598 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26969100ns 473603 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26969384ns 473608 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26969839ns 473616 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26970009ns 473619 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26970293ns 473624 1a110850 fd5ff06f jal x0, -44 +26970577ns 473629 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26970862ns 473634 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26971259ns 473641 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26971430ns 473644 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26971885ns 473652 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26972055ns 473655 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26972339ns 473660 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26972623ns 473665 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26972908ns 473670 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26973362ns 473678 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26973533ns 473681 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26973817ns 473686 1a110850 fd5ff06f jal x0, -44 +26974101ns 473691 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26974385ns 473696 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26974783ns 473703 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26974954ns 473706 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26975408ns 473714 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26975579ns 473717 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26975863ns 473722 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26976147ns 473727 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26976431ns 473732 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26976886ns 473740 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26977056ns 473743 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26977340ns 473748 1a110850 fd5ff06f jal x0, -44 +26977625ns 473753 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26977909ns 473758 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26978307ns 473765 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26978477ns 473768 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26978932ns 473776 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26979102ns 473779 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26979386ns 473784 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26979671ns 473789 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26979955ns 473794 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26980409ns 473802 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26980580ns 473805 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26980864ns 473810 1a110850 fd5ff06f jal x0, -44 +26981148ns 473815 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26981432ns 473820 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26981830ns 473827 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26982001ns 473830 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26982455ns 473838 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26982626ns 473841 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26982910ns 473846 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26983194ns 473851 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26983478ns 473856 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26983933ns 473864 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26984103ns 473867 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26984388ns 473872 1a110850 fd5ff06f jal x0, -44 +26984672ns 473877 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26984956ns 473882 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26985354ns 473889 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26985524ns 473892 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26985979ns 473900 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26986149ns 473903 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26986434ns 473908 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26986718ns 473913 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26987002ns 473918 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26987457ns 473926 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26987627ns 473929 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26987911ns 473934 1a110850 fd5ff06f jal x0, -44 +26988195ns 473939 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26988480ns 473944 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26988877ns 473951 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26989048ns 473954 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26989503ns 473962 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26989673ns 473965 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26989957ns 473970 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26990241ns 473975 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26990525ns 473980 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26990980ns 473988 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26991151ns 473991 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26991435ns 473996 1a110850 fd5ff06f jal x0, -44 +26991719ns 474001 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26992003ns 474006 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26992401ns 474013 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26992571ns 474016 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26993026ns 474024 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26993197ns 474027 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26993481ns 474032 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26993765ns 474037 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26994049ns 474042 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26994504ns 474050 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26994674ns 474053 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26994958ns 474058 1a110850 fd5ff06f jal x0, -44 +26995243ns 474063 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26995527ns 474068 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26995925ns 474075 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26996095ns 474078 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26996550ns 474086 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +26996720ns 474089 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +26997004ns 474094 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26997288ns 474099 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26997573ns 474104 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +26998027ns 474112 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +26998198ns 474115 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +26998482ns 474120 1a110850 fd5ff06f jal x0, -44 +26998766ns 474125 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +26999050ns 474130 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +26999448ns 474137 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +26999619ns 474140 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27000073ns 474148 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27000244ns 474151 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27000528ns 474156 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27000812ns 474161 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27001096ns 474166 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27001551ns 474174 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27001721ns 474177 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27002006ns 474182 1a110850 fd5ff06f jal x0, -44 +27002290ns 474187 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27002574ns 474192 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27002972ns 474199 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27003142ns 474202 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27003597ns 474210 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27003767ns 474213 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27004051ns 474218 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27004336ns 474223 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27004620ns 474228 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27005074ns 474236 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27005245ns 474239 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27005529ns 474244 1a110850 fd5ff06f jal x0, -44 +27005813ns 474249 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27006097ns 474254 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27006495ns 474261 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27006666ns 474264 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27007120ns 474272 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27007291ns 474275 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27007575ns 474280 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27007859ns 474285 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27008143ns 474290 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27008598ns 474298 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27008769ns 474301 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27009053ns 474306 1a110850 fd5ff06f jal x0, -44 +27009337ns 474311 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27009621ns 474316 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27010019ns 474323 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27010189ns 474326 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27010644ns 474334 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27010815ns 474337 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27011099ns 474342 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27011383ns 474347 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27011667ns 474352 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27012122ns 474360 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27012292ns 474363 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27012576ns 474368 1a110850 fd5ff06f jal x0, -44 +27012860ns 474373 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27013145ns 474378 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27013542ns 474385 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27013713ns 474388 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27014168ns 474396 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27014338ns 474399 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27014622ns 474404 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27014906ns 474409 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27015191ns 474414 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27015645ns 474422 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27015816ns 474425 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27016100ns 474430 1a110850 fd5ff06f jal x0, -44 +27016384ns 474435 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27016668ns 474440 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27017066ns 474447 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27017237ns 474450 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27017691ns 474458 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27017862ns 474461 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27018146ns 474466 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27018430ns 474471 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27018714ns 474476 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27019169ns 474484 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27019339ns 474487 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27019623ns 474492 1a110850 fd5ff06f jal x0, -44 +27019908ns 474497 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27020192ns 474502 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27020590ns 474509 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27020760ns 474512 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27021215ns 474520 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27021385ns 474523 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27021669ns 474528 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27021954ns 474533 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27022238ns 474538 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27022692ns 474546 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27022863ns 474549 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27023147ns 474554 1a110850 fd5ff06f jal x0, -44 +27023431ns 474559 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27023715ns 474564 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27024113ns 474571 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27024284ns 474574 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27024738ns 474582 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27024909ns 474585 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27025193ns 474590 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27025477ns 474595 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27025761ns 474600 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27026216ns 474608 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27026386ns 474611 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27026671ns 474616 1a110850 fd5ff06f jal x0, -44 +27026955ns 474621 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27027239ns 474626 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27027637ns 474633 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27027807ns 474636 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27028262ns 474644 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27028432ns 474647 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27028717ns 474652 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27029001ns 474657 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27029285ns 474662 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27029740ns 474670 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27029910ns 474673 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27030194ns 474678 1a110850 fd5ff06f jal x0, -44 +27030478ns 474683 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27030763ns 474688 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27031160ns 474695 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27031331ns 474698 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27031786ns 474706 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27031956ns 474709 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27032240ns 474714 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27032524ns 474719 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27032808ns 474724 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27033263ns 474732 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27033434ns 474735 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27033718ns 474740 1a110850 fd5ff06f jal x0, -44 +27034002ns 474745 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27034286ns 474750 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27034684ns 474757 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27034854ns 474760 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27035309ns 474768 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27035480ns 474771 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27035764ns 474776 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27036048ns 474781 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27036332ns 474786 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27036787ns 474794 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27036957ns 474797 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27037241ns 474802 1a110850 fd5ff06f jal x0, -44 +27037526ns 474807 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27037810ns 474812 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27038208ns 474819 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27038378ns 474822 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27038833ns 474830 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27039003ns 474833 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27039287ns 474838 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27039571ns 474843 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27039856ns 474848 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27040310ns 474856 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27040481ns 474859 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27040765ns 474864 1a110850 fd5ff06f jal x0, -44 +27041049ns 474869 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27041333ns 474874 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27041731ns 474881 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27041902ns 474884 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27042356ns 474892 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27042527ns 474895 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27042811ns 474900 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27043095ns 474905 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27043379ns 474910 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27043834ns 474918 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27044004ns 474921 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27044289ns 474926 1a110850 fd5ff06f jal x0, -44 +27044573ns 474931 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27044857ns 474936 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27045255ns 474943 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27045425ns 474946 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27045880ns 474954 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27046050ns 474957 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27046335ns 474962 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27046619ns 474967 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27046903ns 474972 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27047357ns 474980 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27047528ns 474983 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27047812ns 474988 1a110850 fd5ff06f jal x0, -44 +27048096ns 474993 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27048380ns 474998 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27048778ns 475005 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27048949ns 475008 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27049403ns 475016 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27049574ns 475019 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27049858ns 475024 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27050142ns 475029 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27050426ns 475034 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27050881ns 475042 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27051052ns 475045 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27051336ns 475050 1a110850 fd5ff06f jal x0, -44 +27051620ns 475055 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27051904ns 475060 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27052302ns 475067 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27052472ns 475070 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27052927ns 475078 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27053098ns 475081 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27053382ns 475086 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27053666ns 475091 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27053950ns 475096 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27054405ns 475104 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27054575ns 475107 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27054859ns 475112 1a110850 fd5ff06f jal x0, -44 +27055143ns 475117 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27055428ns 475122 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27055825ns 475129 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27055996ns 475132 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27056451ns 475140 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27056621ns 475143 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27056905ns 475148 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27057189ns 475153 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27057474ns 475158 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27057928ns 475166 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27058099ns 475169 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27058383ns 475174 1a110850 fd5ff06f jal x0, -44 +27058667ns 475179 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27058951ns 475184 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27059349ns 475191 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27059520ns 475194 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27059974ns 475202 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27060145ns 475205 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27060429ns 475210 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27060713ns 475215 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27060997ns 475220 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27061452ns 475228 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27061622ns 475231 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27061906ns 475236 1a110850 fd5ff06f jal x0, -44 +27062191ns 475241 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27062475ns 475246 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27062873ns 475253 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27063043ns 475256 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27063498ns 475264 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27063668ns 475267 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27063952ns 475272 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27064237ns 475277 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27064521ns 475282 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27064975ns 475290 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27065146ns 475293 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27065430ns 475298 1a110850 fd5ff06f jal x0, -44 +27065714ns 475303 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27065998ns 475308 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27066396ns 475315 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27066567ns 475318 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27067021ns 475326 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27067192ns 475329 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27067476ns 475334 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27067760ns 475339 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27068044ns 475344 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27068499ns 475352 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27068669ns 475355 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27068954ns 475360 1a110850 fd5ff06f jal x0, -44 +27069238ns 475365 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27069522ns 475370 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27069920ns 475377 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27070090ns 475380 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27070545ns 475388 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27070715ns 475391 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27071000ns 475396 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27071284ns 475401 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27071568ns 475406 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27072023ns 475414 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27072193ns 475417 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27072477ns 475422 1a110850 fd5ff06f jal x0, -44 +27072761ns 475427 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27073046ns 475432 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27073443ns 475439 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27073614ns 475442 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27074069ns 475450 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27074239ns 475453 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27074523ns 475458 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27074807ns 475463 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27075091ns 475468 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27075546ns 475476 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27075717ns 475479 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27076001ns 475484 1a110850 fd5ff06f jal x0, -44 +27076285ns 475489 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27076569ns 475494 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27076967ns 475501 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27077137ns 475504 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27077592ns 475512 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27077763ns 475515 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27078047ns 475520 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27078331ns 475525 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27078615ns 475530 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27079070ns 475538 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27079240ns 475541 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27079524ns 475546 1a110850 fd5ff06f jal x0, -44 +27079809ns 475551 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27080093ns 475556 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27080491ns 475563 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27080661ns 475566 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27081116ns 475574 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27081286ns 475577 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27081570ns 475582 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27081855ns 475587 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27082139ns 475592 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27082593ns 475600 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27082764ns 475603 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27083048ns 475608 1a110850 fd5ff06f jal x0, -44 +27083332ns 475613 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27083616ns 475618 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27084014ns 475625 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27084185ns 475628 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27084639ns 475636 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27084810ns 475639 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27085094ns 475644 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27085378ns 475649 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27085662ns 475654 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27086117ns 475662 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27086287ns 475665 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27086572ns 475670 1a110850 fd5ff06f jal x0, -44 +27086856ns 475675 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27087140ns 475680 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27087538ns 475687 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27087708ns 475690 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27088163ns 475698 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27088333ns 475701 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27088618ns 475706 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27088902ns 475711 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27089186ns 475716 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27089640ns 475724 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27089811ns 475727 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27090095ns 475732 1a110850 fd5ff06f jal x0, -44 +27090379ns 475737 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27090663ns 475742 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27091061ns 475749 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27091232ns 475752 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27091686ns 475760 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27091857ns 475763 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27092141ns 475768 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27092425ns 475773 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27092709ns 475778 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27093164ns 475786 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27093335ns 475789 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27093619ns 475794 1a110850 fd5ff06f jal x0, -44 +27093903ns 475799 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27094187ns 475804 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27094585ns 475811 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27094755ns 475814 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27095210ns 475822 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27095381ns 475825 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27095665ns 475830 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27095949ns 475835 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27096233ns 475840 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27096688ns 475848 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27096858ns 475851 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27097142ns 475856 1a110850 fd5ff06f jal x0, -44 +27097426ns 475861 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27097711ns 475866 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27098108ns 475873 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27098279ns 475876 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27098734ns 475884 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27098904ns 475887 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27099188ns 475892 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27099472ns 475897 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27099757ns 475902 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27100211ns 475910 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27100382ns 475913 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27100666ns 475918 1a110850 fd5ff06f jal x0, -44 +27100950ns 475923 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27101234ns 475928 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27101632ns 475935 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27101803ns 475938 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27102257ns 475946 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27102428ns 475949 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27102712ns 475954 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27102996ns 475959 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27103280ns 475964 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27103735ns 475972 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27103905ns 475975 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27104189ns 475980 1a110850 fd5ff06f jal x0, -44 +27104474ns 475985 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27104758ns 475990 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27105156ns 475997 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27105326ns 476000 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27105781ns 476008 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27105951ns 476011 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27106235ns 476016 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27106520ns 476021 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27106804ns 476026 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27107258ns 476034 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27107429ns 476037 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27107713ns 476042 1a110850 fd5ff06f jal x0, -44 +27107997ns 476047 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27108281ns 476052 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27108679ns 476059 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27108850ns 476062 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27109304ns 476070 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27109475ns 476073 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27109759ns 476078 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27110043ns 476083 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27110327ns 476088 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27110782ns 476096 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27110952ns 476099 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27111237ns 476104 1a110850 fd5ff06f jal x0, -44 +27111521ns 476109 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27111805ns 476114 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27112203ns 476121 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27112373ns 476124 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27112828ns 476132 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27112998ns 476135 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27113283ns 476140 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27113567ns 476145 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27113851ns 476150 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27114306ns 476158 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27114476ns 476161 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27114760ns 476166 1a110850 fd5ff06f jal x0, -44 +27115044ns 476171 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27115329ns 476176 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27115726ns 476183 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27115897ns 476186 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27116352ns 476194 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27116522ns 476197 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27116806ns 476202 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27117090ns 476207 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27117375ns 476212 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27117829ns 476220 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27118000ns 476223 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27118284ns 476228 1a110850 fd5ff06f jal x0, -44 +27118568ns 476233 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27118852ns 476238 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27119250ns 476245 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27119420ns 476248 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27119875ns 476256 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27120046ns 476259 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27120330ns 476264 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27120614ns 476269 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27120898ns 476274 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27121353ns 476282 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27121523ns 476285 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27121807ns 476290 1a110850 fd5ff06f jal x0, -44 +27122092ns 476295 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27122376ns 476300 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27122774ns 476307 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27122944ns 476310 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27123399ns 476318 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27123569ns 476321 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27123853ns 476326 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27124138ns 476331 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27124422ns 476336 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27124876ns 476344 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27125047ns 476347 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27125331ns 476352 1a110850 fd5ff06f jal x0, -44 +27125615ns 476357 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27125899ns 476362 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27126297ns 476369 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27126468ns 476372 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27126922ns 476380 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27127093ns 476383 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27127377ns 476388 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27127661ns 476393 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27127945ns 476398 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27128400ns 476406 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27128570ns 476409 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27128855ns 476414 1a110850 fd5ff06f jal x0, -44 +27129139ns 476419 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27129423ns 476424 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27129821ns 476431 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27129991ns 476434 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27130446ns 476442 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27130616ns 476445 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27130901ns 476450 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27131185ns 476455 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27131469ns 476460 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27131923ns 476468 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27132094ns 476471 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27132378ns 476476 1a110850 fd5ff06f jal x0, -44 +27132662ns 476481 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27132946ns 476486 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27133344ns 476493 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27133515ns 476496 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27133969ns 476504 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27134140ns 476507 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27134424ns 476512 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27134708ns 476517 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27134992ns 476522 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27135447ns 476530 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27135618ns 476533 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27135902ns 476538 1a110850 fd5ff06f jal x0, -44 +27136186ns 476543 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27136470ns 476548 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27136868ns 476555 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27137038ns 476558 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27137493ns 476566 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27137664ns 476569 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27137948ns 476574 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27138232ns 476579 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27138516ns 476584 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27138971ns 476592 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27139141ns 476595 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27139425ns 476600 1a110850 fd5ff06f jal x0, -44 +27139709ns 476605 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27139994ns 476610 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27140391ns 476617 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27140562ns 476620 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27141017ns 476628 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27141187ns 476631 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27141471ns 476636 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27141755ns 476641 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27142040ns 476646 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27142494ns 476654 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27142665ns 476657 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27142949ns 476662 1a110850 fd5ff06f jal x0, -44 +27143233ns 476667 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27143517ns 476672 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27143915ns 476679 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27144086ns 476682 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27144540ns 476690 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27144711ns 476693 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27144995ns 476698 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27145279ns 476703 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27145563ns 476708 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27146018ns 476716 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27146188ns 476719 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27146472ns 476724 1a110850 fd5ff06f jal x0, -44 +27146757ns 476729 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27147041ns 476734 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27147439ns 476741 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27147609ns 476744 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27148064ns 476752 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27148234ns 476755 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27148518ns 476760 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27148803ns 476765 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27149087ns 476770 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27149541ns 476778 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27149712ns 476781 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27149996ns 476786 1a110850 fd5ff06f jal x0, -44 +27150280ns 476791 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27150564ns 476796 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27150962ns 476803 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27151133ns 476806 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27151587ns 476814 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27151758ns 476817 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27152042ns 476822 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27152326ns 476827 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27152610ns 476832 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27153065ns 476840 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27153235ns 476843 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27153520ns 476848 1a110850 fd5ff06f jal x0, -44 +27153804ns 476853 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27154088ns 476858 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27154486ns 476865 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27154656ns 476868 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27155111ns 476876 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27155281ns 476879 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27155566ns 476884 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27155850ns 476889 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27156134ns 476894 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27156589ns 476902 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27156759ns 476905 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27157043ns 476910 1a110850 fd5ff06f jal x0, -44 +27157327ns 476915 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27157612ns 476920 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27158009ns 476927 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27158180ns 476930 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27158635ns 476938 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27158805ns 476941 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27159089ns 476946 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27159373ns 476951 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27159658ns 476956 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27160112ns 476964 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27160283ns 476967 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27160567ns 476972 1a110850 fd5ff06f jal x0, -44 +27160851ns 476977 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27161135ns 476982 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27161533ns 476989 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27161703ns 476992 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27162158ns 477000 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27162329ns 477003 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27162613ns 477008 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27162897ns 477013 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27163181ns 477018 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27163636ns 477026 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27163806ns 477029 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27164090ns 477034 1a110850 fd5ff06f jal x0, -44 +27164375ns 477039 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27164659ns 477044 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27165057ns 477051 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27165227ns 477054 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27165682ns 477062 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27165852ns 477065 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27166136ns 477070 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27166421ns 477075 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27166705ns 477080 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27167159ns 477088 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27167330ns 477091 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27167614ns 477096 1a110850 fd5ff06f jal x0, -44 +27167898ns 477101 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27168182ns 477106 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27168580ns 477113 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27168751ns 477116 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27169205ns 477124 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27169376ns 477127 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27169660ns 477132 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27169944ns 477137 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27170228ns 477142 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27170683ns 477150 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27170853ns 477153 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27171138ns 477158 1a110850 fd5ff06f jal x0, -44 +27171422ns 477163 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27171706ns 477168 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27172104ns 477175 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27172274ns 477178 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27172729ns 477186 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27172899ns 477189 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27173184ns 477194 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27173468ns 477199 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27173752ns 477204 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27174207ns 477212 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27174377ns 477215 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27174661ns 477220 1a110850 fd5ff06f jal x0, -44 +27174945ns 477225 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27175229ns 477230 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27175627ns 477237 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27175798ns 477240 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27176252ns 477248 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27176423ns 477251 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27176707ns 477256 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27176991ns 477261 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27177275ns 477266 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27177730ns 477274 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27177901ns 477277 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27178185ns 477282 1a110850 fd5ff06f jal x0, -44 +27178469ns 477287 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27178753ns 477292 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27179151ns 477299 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27179321ns 477302 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27179776ns 477310 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27179947ns 477313 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27180231ns 477318 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27180515ns 477323 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27180799ns 477328 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27181254ns 477336 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27181424ns 477339 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27181708ns 477344 1a110850 fd5ff06f jal x0, -44 +27181992ns 477349 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27182277ns 477354 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27182674ns 477361 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27182845ns 477364 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27183300ns 477372 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27183470ns 477375 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27183754ns 477380 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27184038ns 477385 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27184323ns 477390 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27184777ns 477398 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27184948ns 477401 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27185232ns 477406 1a110850 fd5ff06f jal x0, -44 +27185516ns 477411 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27185800ns 477416 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27186198ns 477423 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27186369ns 477426 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27186823ns 477434 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27186994ns 477437 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27187278ns 477442 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27187562ns 477447 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27187846ns 477452 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27188301ns 477460 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27188471ns 477463 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27188755ns 477468 1a110850 fd5ff06f jal x0, -44 +27189040ns 477473 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27189324ns 477478 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27189722ns 477485 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27189892ns 477488 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27190347ns 477496 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27190517ns 477499 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27190801ns 477504 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27191086ns 477509 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27191370ns 477514 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27191824ns 477522 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27191995ns 477525 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27192279ns 477530 1a110850 fd5ff06f jal x0, -44 +27192563ns 477535 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27192847ns 477540 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27193245ns 477547 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27193416ns 477550 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27193870ns 477558 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27194041ns 477561 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27194325ns 477566 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27194609ns 477571 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27194893ns 477576 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27195348ns 477584 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27195519ns 477587 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27195803ns 477592 1a110850 fd5ff06f jal x0, -44 +27196087ns 477597 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27196371ns 477602 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27196769ns 477609 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27196939ns 477612 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27197394ns 477620 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27197564ns 477623 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27197849ns 477628 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27198133ns 477633 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27198417ns 477638 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27198872ns 477646 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27199042ns 477649 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27199326ns 477654 1a110850 fd5ff06f jal x0, -44 +27199610ns 477659 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27199895ns 477664 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27200292ns 477671 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27200463ns 477674 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27200918ns 477682 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27201088ns 477685 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27201372ns 477690 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27201656ns 477695 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27201941ns 477700 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27202395ns 477708 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27202566ns 477711 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27202850ns 477716 1a110850 fd5ff06f jal x0, -44 +27203134ns 477721 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27203418ns 477726 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27203816ns 477733 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27203986ns 477736 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27204441ns 477744 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27204612ns 477747 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27204896ns 477752 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27205180ns 477757 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27205464ns 477762 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27205919ns 477770 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27206089ns 477773 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27206373ns 477778 1a110850 fd5ff06f jal x0, -44 +27206658ns 477783 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27206942ns 477788 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27207340ns 477795 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27207510ns 477798 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27207965ns 477806 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27208135ns 477809 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27208419ns 477814 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27208704ns 477819 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27208988ns 477824 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27209442ns 477832 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27209613ns 477835 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27209897ns 477840 1a110850 fd5ff06f jal x0, -44 +27210181ns 477845 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27210465ns 477850 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27210863ns 477857 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27211034ns 477860 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27211488ns 477868 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27211659ns 477871 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27211943ns 477876 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27212227ns 477881 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27212511ns 477886 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27212966ns 477894 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27213136ns 477897 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27213421ns 477902 1a110850 fd5ff06f jal x0, -44 +27213705ns 477907 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27213989ns 477912 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27214387ns 477919 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27214557ns 477922 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27215012ns 477930 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27215182ns 477933 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27215467ns 477938 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27215751ns 477943 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27216035ns 477948 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27216490ns 477956 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27216660ns 477959 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27216944ns 477964 1a110850 fd5ff06f jal x0, -44 +27217228ns 477969 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27217512ns 477974 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27217910ns 477981 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27218081ns 477984 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27218535ns 477992 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27218706ns 477995 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27218990ns 478000 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27219274ns 478005 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27219558ns 478010 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27220013ns 478018 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27220184ns 478021 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27220468ns 478026 1a110850 fd5ff06f jal x0, -44 +27220752ns 478031 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27221036ns 478036 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27221434ns 478043 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27221604ns 478046 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27222059ns 478054 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27222230ns 478057 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27222514ns 478062 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27222798ns 478067 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27223082ns 478072 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27223537ns 478080 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27223707ns 478083 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27223991ns 478088 1a110850 fd5ff06f jal x0, -44 +27224275ns 478093 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27224560ns 478098 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27224957ns 478105 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27225128ns 478108 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27225583ns 478116 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27225753ns 478119 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27226037ns 478124 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27226321ns 478129 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27226606ns 478134 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27227060ns 478142 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27227231ns 478145 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27227515ns 478150 1a110850 fd5ff06f jal x0, -44 +27227799ns 478155 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27228083ns 478160 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27228481ns 478167 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27228652ns 478170 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27229106ns 478178 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27229277ns 478181 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27229561ns 478186 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27229845ns 478191 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27230129ns 478196 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27230584ns 478204 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27230754ns 478207 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27231039ns 478212 1a110850 fd5ff06f jal x0, -44 +27231323ns 478217 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27231607ns 478222 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27232005ns 478229 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27232175ns 478232 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27232630ns 478240 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27232800ns 478243 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27233084ns 478248 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27233369ns 478253 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27233653ns 478258 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27234107ns 478266 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27234278ns 478269 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27234562ns 478274 1a110850 fd5ff06f jal x0, -44 +27234846ns 478279 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27235130ns 478284 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27235528ns 478291 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27235699ns 478294 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27236153ns 478302 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27236324ns 478305 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27236608ns 478310 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27236892ns 478315 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27237176ns 478320 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27237631ns 478328 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27237802ns 478331 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27238086ns 478336 1a110850 fd5ff06f jal x0, -44 +27238370ns 478341 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27238654ns 478346 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27239052ns 478353 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27239222ns 478356 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27239677ns 478364 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27239847ns 478367 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27240132ns 478372 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27240416ns 478377 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27240700ns 478382 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27241155ns 478390 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27241325ns 478393 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27241609ns 478398 1a110850 fd5ff06f jal x0, -44 +27241893ns 478403 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27242178ns 478408 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27242575ns 478415 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27242746ns 478418 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27243201ns 478426 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27243371ns 478429 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27243655ns 478434 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27243939ns 478439 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27244224ns 478444 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27244678ns 478452 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27244849ns 478455 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27245133ns 478460 1a110850 fd5ff06f jal x0, -44 +27245417ns 478465 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27245701ns 478470 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27246099ns 478477 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27246269ns 478480 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27246724ns 478488 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27246895ns 478491 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27247179ns 478496 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27247463ns 478501 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27247747ns 478506 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27248202ns 478514 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27248372ns 478517 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27248656ns 478522 1a110850 fd5ff06f jal x0, -44 +27248941ns 478527 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27249225ns 478532 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27249623ns 478539 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27249793ns 478542 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27250248ns 478550 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27250418ns 478553 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27250702ns 478558 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27250987ns 478563 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27251271ns 478568 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27251725ns 478576 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27251896ns 478579 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27252180ns 478584 1a110850 fd5ff06f jal x0, -44 +27252464ns 478589 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27252748ns 478594 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27253146ns 478601 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27253317ns 478604 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27253771ns 478612 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27253942ns 478615 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27254226ns 478620 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27254510ns 478625 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27254794ns 478630 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27255249ns 478638 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27255419ns 478641 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27255704ns 478646 1a110850 fd5ff06f jal x0, -44 +27255988ns 478651 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27256272ns 478656 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27256670ns 478663 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27256840ns 478666 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27257295ns 478674 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27257465ns 478677 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27257750ns 478682 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27258034ns 478687 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27258318ns 478692 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27258773ns 478700 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27258943ns 478703 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27259227ns 478708 1a110850 fd5ff06f jal x0, -44 +27259511ns 478713 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27259795ns 478718 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27260193ns 478725 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27260364ns 478728 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27260818ns 478736 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27260989ns 478739 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27261273ns 478744 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27261557ns 478749 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27261841ns 478754 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27262296ns 478762 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27262467ns 478765 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27262751ns 478770 1a110850 fd5ff06f jal x0, -44 +27263035ns 478775 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27263319ns 478780 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27263717ns 478787 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27263887ns 478790 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27264342ns 478798 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27264513ns 478801 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27264797ns 478806 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27265081ns 478811 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27265365ns 478816 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27265820ns 478824 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27265990ns 478827 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27266274ns 478832 1a110850 fd5ff06f jal x0, -44 +27266559ns 478837 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27266843ns 478842 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27267240ns 478849 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27267411ns 478852 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27267866ns 478860 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27268036ns 478863 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27268320ns 478868 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27268604ns 478873 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27268889ns 478878 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27269343ns 478886 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27269514ns 478889 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27269798ns 478894 1a110850 fd5ff06f jal x0, -44 +27270082ns 478899 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27270366ns 478904 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27270764ns 478911 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27270935ns 478914 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27271389ns 478922 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27271560ns 478925 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27271844ns 478930 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27272128ns 478935 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27272412ns 478940 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27272867ns 478948 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27273037ns 478951 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27273322ns 478956 1a110850 fd5ff06f jal x0, -44 +27273606ns 478961 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27273890ns 478966 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27274288ns 478973 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27274458ns 478976 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27274913ns 478984 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27275083ns 478987 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27275367ns 478992 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27275652ns 478997 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27275936ns 479002 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27276390ns 479010 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27276561ns 479013 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27276845ns 479018 1a110850 fd5ff06f jal x0, -44 +27277129ns 479023 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27277413ns 479028 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27277811ns 479035 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27277982ns 479038 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27278436ns 479046 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27278607ns 479049 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27278891ns 479054 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27279175ns 479059 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27279459ns 479064 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27279914ns 479072 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27280085ns 479075 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27280369ns 479080 1a110850 fd5ff06f jal x0, -44 +27280653ns 479085 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27280937ns 479090 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27281335ns 479097 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27281505ns 479100 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27281960ns 479108 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27282130ns 479111 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27282415ns 479116 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27282699ns 479121 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27282983ns 479126 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27283438ns 479134 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27283608ns 479137 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27283892ns 479142 1a110850 fd5ff06f jal x0, -44 +27284176ns 479147 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27284461ns 479152 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27284858ns 479159 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27285029ns 479162 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27285484ns 479170 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27285654ns 479173 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27285938ns 479178 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27286222ns 479183 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27286507ns 479188 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27286961ns 479196 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27287132ns 479199 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27287416ns 479204 1a110850 fd5ff06f jal x0, -44 +27287700ns 479209 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27287984ns 479214 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27288382ns 479221 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27288552ns 479224 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27289007ns 479232 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27289178ns 479235 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27289462ns 479240 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27289746ns 479245 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27290030ns 479250 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27290485ns 479258 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27290655ns 479261 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27290939ns 479266 1a110850 fd5ff06f jal x0, -44 +27291224ns 479271 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27291508ns 479276 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27291906ns 479283 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27292076ns 479286 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27292531ns 479294 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27292701ns 479297 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27292985ns 479302 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27293270ns 479307 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27293554ns 479312 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27294008ns 479320 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27294179ns 479323 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27294463ns 479328 1a110850 fd5ff06f jal x0, -44 +27294747ns 479333 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27295031ns 479338 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27295429ns 479345 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27295600ns 479348 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27296054ns 479356 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27296225ns 479359 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27296509ns 479364 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27296793ns 479369 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27297077ns 479374 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27297532ns 479382 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27297702ns 479385 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27297987ns 479390 1a110850 fd5ff06f jal x0, -44 +27298271ns 479395 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27298555ns 479400 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27298953ns 479407 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27299123ns 479410 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27299578ns 479418 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27299748ns 479421 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27300033ns 479426 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27300317ns 479431 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27300601ns 479436 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27301056ns 479444 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27301226ns 479447 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27301510ns 479452 1a110850 fd5ff06f jal x0, -44 +27301794ns 479457 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27302079ns 479462 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27302476ns 479469 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27302647ns 479472 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27303101ns 479480 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27303272ns 479483 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27303556ns 479488 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27303840ns 479493 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27304124ns 479498 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27304579ns 479506 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27304750ns 479509 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27305034ns 479514 1a110850 fd5ff06f jal x0, -44 +27305318ns 479519 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27305602ns 479524 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27306000ns 479531 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27306170ns 479534 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27306625ns 479542 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27306796ns 479545 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27307080ns 479550 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27307364ns 479555 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27307648ns 479560 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27308103ns 479568 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27308273ns 479571 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27308557ns 479576 1a110850 fd5ff06f jal x0, -44 +27308842ns 479581 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27309126ns 479586 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27309523ns 479593 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27309694ns 479596 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27310149ns 479604 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27310319ns 479607 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27310603ns 479612 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27310887ns 479617 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27311172ns 479622 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27311626ns 479630 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27311797ns 479633 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27312081ns 479638 1a110850 fd5ff06f jal x0, -44 +27312365ns 479643 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27312649ns 479648 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27313047ns 479655 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27313218ns 479658 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27313672ns 479666 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27313843ns 479669 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27314127ns 479674 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27314411ns 479679 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27314695ns 479684 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27315150ns 479692 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27315320ns 479695 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27315605ns 479700 1a110850 fd5ff06f jal x0, -44 +27315889ns 479705 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27316173ns 479710 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27316571ns 479717 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27316741ns 479720 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27317196ns 479728 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27317366ns 479731 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27317650ns 479736 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27317935ns 479741 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27318219ns 479746 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27318673ns 479754 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27318844ns 479757 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27319128ns 479762 1a110850 fd5ff06f jal x0, -44 +27319412ns 479767 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27319696ns 479772 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27320094ns 479779 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27320265ns 479782 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27320719ns 479790 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27320890ns 479793 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27321174ns 479798 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27321458ns 479803 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27321742ns 479808 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27322197ns 479816 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27322368ns 479819 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27322652ns 479824 1a110850 fd5ff06f jal x0, -44 +27322936ns 479829 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27323220ns 479834 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27323618ns 479841 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27323788ns 479844 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27324243ns 479852 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27324413ns 479855 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27324698ns 479860 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27324982ns 479865 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27325266ns 479870 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27325721ns 479878 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27325891ns 479881 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27326175ns 479886 1a110850 fd5ff06f jal x0, -44 +27326459ns 479891 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27326744ns 479896 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27327141ns 479903 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27327312ns 479906 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27327767ns 479914 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27327937ns 479917 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27328221ns 479922 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27328505ns 479927 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27328790ns 479932 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27329244ns 479940 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27329415ns 479943 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27329699ns 479948 1a110850 fd5ff06f jal x0, -44 +27329983ns 479953 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27330267ns 479958 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27330665ns 479965 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27330835ns 479968 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27331290ns 479976 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27331461ns 479979 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27331745ns 479984 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27332029ns 479989 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27332313ns 479994 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27332768ns 480002 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27332938ns 480005 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27333222ns 480010 1a110850 fd5ff06f jal x0, -44 +27333507ns 480015 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27333791ns 480020 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27334189ns 480027 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27334359ns 480030 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27334814ns 480038 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27334984ns 480041 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27335268ns 480046 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27335553ns 480051 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27335837ns 480056 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27336291ns 480064 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27336462ns 480067 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27336746ns 480072 1a110850 fd5ff06f jal x0, -44 +27337030ns 480077 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27337314ns 480082 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27337712ns 480089 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27337883ns 480092 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27338337ns 480100 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27338508ns 480103 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27338792ns 480108 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27339076ns 480113 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27339360ns 480118 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27339815ns 480126 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27339985ns 480129 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27340270ns 480134 1a110850 fd5ff06f jal x0, -44 +27340554ns 480139 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27340838ns 480144 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27341236ns 480151 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27341406ns 480154 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27341861ns 480162 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27342031ns 480165 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27342316ns 480170 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27342600ns 480175 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27342884ns 480180 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27343339ns 480188 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27343509ns 480191 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27343793ns 480196 1a110850 fd5ff06f jal x0, -44 +27344077ns 480201 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27344362ns 480206 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27344759ns 480213 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27344930ns 480216 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27345384ns 480224 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27345555ns 480227 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27345839ns 480232 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27346123ns 480237 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27346407ns 480242 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27346862ns 480250 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27347033ns 480253 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27347317ns 480258 1a110850 fd5ff06f jal x0, -44 +27347601ns 480263 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27347885ns 480268 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27348283ns 480275 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27348453ns 480278 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27348908ns 480286 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27349079ns 480289 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27349363ns 480294 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27349647ns 480299 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27349931ns 480304 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27350386ns 480312 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27350556ns 480315 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27350840ns 480320 1a110850 fd5ff06f jal x0, -44 +27351125ns 480325 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27351409ns 480330 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27351807ns 480337 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27351977ns 480340 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27352432ns 480348 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27352602ns 480351 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27352886ns 480356 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27353170ns 480361 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27353455ns 480366 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27353909ns 480374 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27354080ns 480377 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27354364ns 480382 1a110850 fd5ff06f jal x0, -44 +27354648ns 480387 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27354932ns 480392 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27355330ns 480399 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27355501ns 480402 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27355955ns 480410 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27356126ns 480413 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27356410ns 480418 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27356694ns 480423 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27356978ns 480428 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27357433ns 480436 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27357603ns 480439 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27357888ns 480444 1a110850 fd5ff06f jal x0, -44 +27358172ns 480449 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27358456ns 480454 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27358854ns 480461 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27359024ns 480464 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27359479ns 480472 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27359649ns 480475 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27359933ns 480480 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27360218ns 480485 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27360502ns 480490 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27360956ns 480498 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27361127ns 480501 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27361411ns 480506 1a110850 fd5ff06f jal x0, -44 +27361695ns 480511 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27361979ns 480516 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27362377ns 480523 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27362548ns 480526 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27363002ns 480534 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27363173ns 480537 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27363457ns 480542 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27363741ns 480547 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27364025ns 480552 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27364480ns 480560 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27364651ns 480563 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27364935ns 480568 1a110850 fd5ff06f jal x0, -44 +27365219ns 480573 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27365503ns 480578 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27365901ns 480585 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27366071ns 480588 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27366526ns 480596 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27366696ns 480599 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27366981ns 480604 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27367265ns 480609 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27367549ns 480614 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27368004ns 480622 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27368174ns 480625 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27368458ns 480630 1a110850 fd5ff06f jal x0, -44 +27368742ns 480635 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27369027ns 480640 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27369424ns 480647 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27369595ns 480650 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27370050ns 480658 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27370220ns 480661 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27370504ns 480666 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27370788ns 480671 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27371073ns 480676 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27371527ns 480684 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27371698ns 480687 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27371982ns 480692 1a110850 fd5ff06f jal x0, -44 +27372266ns 480697 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27372550ns 480702 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27372948ns 480709 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27373119ns 480712 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27373573ns 480720 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27373744ns 480723 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27374028ns 480728 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27374312ns 480733 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27374596ns 480738 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27375051ns 480746 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27375221ns 480749 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27375505ns 480754 1a110850 fd5ff06f jal x0, -44 +27375790ns 480759 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27376074ns 480764 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27376472ns 480771 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27376642ns 480774 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27377097ns 480782 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27377267ns 480785 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27377551ns 480790 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27377836ns 480795 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27378120ns 480800 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27378574ns 480808 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27378745ns 480811 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27379029ns 480816 1a110850 fd5ff06f jal x0, -44 +27379313ns 480821 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27379597ns 480826 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27379995ns 480833 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27380166ns 480836 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27380620ns 480844 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27380791ns 480847 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27381075ns 480852 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27381359ns 480857 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27381643ns 480862 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27382098ns 480870 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27382268ns 480873 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27382553ns 480878 1a110850 fd5ff06f jal x0, -44 +27382837ns 480883 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27383121ns 480888 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27383519ns 480895 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27383689ns 480898 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27384144ns 480906 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27384314ns 480909 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27384599ns 480914 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27384883ns 480919 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27385167ns 480924 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27385622ns 480932 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27385792ns 480935 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27386076ns 480940 1a110850 fd5ff06f jal x0, -44 +27386360ns 480945 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27386645ns 480950 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27387042ns 480957 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27387213ns 480960 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27387667ns 480968 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27387838ns 480971 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27388122ns 480976 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27388406ns 480981 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27388690ns 480986 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27389145ns 480994 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27389316ns 480997 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27389600ns 481002 1a110850 fd5ff06f jal x0, -44 +27389884ns 481007 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27390168ns 481012 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27390566ns 481019 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27390736ns 481022 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27391191ns 481030 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27391362ns 481033 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27391646ns 481038 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27391930ns 481043 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27392214ns 481048 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27392669ns 481056 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27392839ns 481059 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27393123ns 481064 1a110850 fd5ff06f jal x0, -44 +27393408ns 481069 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27393692ns 481074 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27394090ns 481081 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27394260ns 481084 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27394715ns 481092 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27394885ns 481095 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27395169ns 481100 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27395453ns 481105 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27395738ns 481110 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27396192ns 481118 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27396363ns 481121 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27396647ns 481126 1a110850 fd5ff06f jal x0, -44 +27396931ns 481131 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27397215ns 481136 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27397613ns 481143 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27397784ns 481146 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27398238ns 481154 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27398409ns 481157 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27398693ns 481162 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27398977ns 481167 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27399261ns 481172 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27399716ns 481180 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27399886ns 481183 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27400171ns 481188 1a110850 fd5ff06f jal x0, -44 +27400455ns 481193 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27400739ns 481198 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27401137ns 481205 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27401307ns 481208 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27401762ns 481216 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27401932ns 481219 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27402216ns 481224 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27402501ns 481229 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27402785ns 481234 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27403239ns 481242 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27403410ns 481245 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27403694ns 481250 1a110850 fd5ff06f jal x0, -44 +27403978ns 481255 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27404262ns 481260 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27404660ns 481267 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27404831ns 481270 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27405285ns 481278 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27405456ns 481281 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27405740ns 481286 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27406024ns 481291 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27406308ns 481296 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27406763ns 481304 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27406934ns 481307 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27407218ns 481312 1a110850 fd5ff06f jal x0, -44 +27407502ns 481317 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27407786ns 481322 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27408184ns 481329 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27408354ns 481332 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27408809ns 481340 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27408979ns 481343 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27409264ns 481348 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27409548ns 481353 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27409832ns 481358 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27410287ns 481366 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27410457ns 481369 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27410741ns 481374 1a110850 fd5ff06f jal x0, -44 +27411025ns 481379 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27411310ns 481384 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27411707ns 481391 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27411878ns 481394 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27412333ns 481402 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27412503ns 481405 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27412787ns 481410 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27413071ns 481415 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27413356ns 481420 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27413810ns 481428 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27413981ns 481431 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27414265ns 481436 1a110850 fd5ff06f jal x0, -44 +27414549ns 481441 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27414833ns 481446 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27415231ns 481453 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27415402ns 481456 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27415856ns 481464 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27416027ns 481467 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27416311ns 481472 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27416595ns 481477 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27416879ns 481482 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27417334ns 481490 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27417504ns 481493 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27417788ns 481498 1a110850 fd5ff06f jal x0, -44 +27418073ns 481503 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27418357ns 481508 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27418755ns 481515 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27418925ns 481518 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27419380ns 481526 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27419550ns 481529 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27419834ns 481534 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27420119ns 481539 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27420403ns 481544 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27420857ns 481552 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27421028ns 481555 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27421312ns 481560 1a110850 fd5ff06f jal x0, -44 +27421596ns 481565 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27421880ns 481570 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27422278ns 481577 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27422449ns 481580 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27422903ns 481588 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27423074ns 481591 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27423358ns 481596 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27423642ns 481601 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27423926ns 481606 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27424381ns 481614 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27424551ns 481617 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27424836ns 481622 1a110850 fd5ff06f jal x0, -44 +27425120ns 481627 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27425404ns 481632 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27425802ns 481639 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27425972ns 481642 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27426427ns 481650 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27426597ns 481653 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27426882ns 481658 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27427166ns 481663 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27427450ns 481668 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27427905ns 481676 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27428075ns 481679 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27428359ns 481684 1a110850 fd5ff06f jal x0, -44 +27428643ns 481689 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27428928ns 481694 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27429325ns 481701 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27429496ns 481704 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27429951ns 481712 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27430121ns 481715 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27430405ns 481720 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27430689ns 481725 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27430973ns 481730 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27431428ns 481738 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27431599ns 481741 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27431883ns 481746 1a110850 fd5ff06f jal x0, -44 +27432167ns 481751 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27432451ns 481756 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27432849ns 481763 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27433019ns 481766 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27433474ns 481774 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27433645ns 481777 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27433929ns 481782 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27434213ns 481787 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27434497ns 481792 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27434952ns 481800 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27435122ns 481803 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27435406ns 481808 1a110850 fd5ff06f jal x0, -44 +27435691ns 481813 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27435975ns 481818 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27436373ns 481825 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27436543ns 481828 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27436998ns 481836 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27437168ns 481839 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27437452ns 481844 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27437736ns 481849 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27438021ns 481854 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27438475ns 481862 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27438646ns 481865 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27438930ns 481870 1a110850 fd5ff06f jal x0, -44 +27439214ns 481875 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27439498ns 481880 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27439896ns 481887 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27440067ns 481890 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27440521ns 481898 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27440692ns 481901 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27440976ns 481906 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27441260ns 481911 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27441544ns 481916 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27441999ns 481924 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27442169ns 481927 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27442454ns 481932 1a110850 fd5ff06f jal x0, -44 +27442738ns 481937 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27443022ns 481942 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27443420ns 481949 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27443590ns 481952 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27444045ns 481960 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27444215ns 481963 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27444499ns 481968 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27444784ns 481973 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27445068ns 481978 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27445522ns 481986 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27445693ns 481989 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27445977ns 481994 1a110850 fd5ff06f jal x0, -44 +27446261ns 481999 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27446545ns 482004 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27446943ns 482011 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27447114ns 482014 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27447568ns 482022 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27447739ns 482025 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27448023ns 482030 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27448307ns 482035 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27448591ns 482040 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27449046ns 482048 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27449217ns 482051 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27449501ns 482056 1a110850 fd5ff06f jal x0, -44 +27449785ns 482061 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27450069ns 482066 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27450467ns 482073 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27450637ns 482076 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27451092ns 482084 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27451263ns 482087 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27451547ns 482092 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27451831ns 482097 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27452115ns 482102 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27452570ns 482110 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27452740ns 482113 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27453024ns 482118 1a110850 fd5ff06f jal x0, -44 +27453308ns 482123 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27453593ns 482128 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27453990ns 482135 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27454161ns 482138 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27454616ns 482146 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27454786ns 482149 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27455070ns 482154 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27455354ns 482159 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27455639ns 482164 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27456093ns 482172 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27456264ns 482175 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27456548ns 482180 1a110850 fd5ff06f jal x0, -44 +27456832ns 482185 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27457116ns 482190 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27457514ns 482197 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27457685ns 482200 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27458139ns 482208 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27458310ns 482211 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27458594ns 482216 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27458878ns 482221 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27459162ns 482226 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27459617ns 482234 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27459787ns 482237 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27460071ns 482242 1a110850 fd5ff06f jal x0, -44 +27460356ns 482247 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27460640ns 482252 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27461038ns 482259 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27461208ns 482262 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27461663ns 482270 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27461833ns 482273 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27462117ns 482278 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27462402ns 482283 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27462686ns 482288 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27463140ns 482296 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27463311ns 482299 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27463595ns 482304 1a110850 fd5ff06f jal x0, -44 +27463879ns 482309 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27464163ns 482314 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27464561ns 482321 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27464732ns 482324 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27465186ns 482332 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27465357ns 482335 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27465641ns 482340 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27465925ns 482345 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27466209ns 482350 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27466664ns 482358 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27466834ns 482361 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27467119ns 482366 1a110850 fd5ff06f jal x0, -44 +27467403ns 482371 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27467687ns 482376 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27468085ns 482383 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27468255ns 482386 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27468710ns 482394 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27468880ns 482397 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27469165ns 482402 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27469449ns 482407 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27469733ns 482412 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27470188ns 482420 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27470358ns 482423 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27470642ns 482428 1a110850 fd5ff06f jal x0, -44 +27470926ns 482433 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27471211ns 482438 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27471608ns 482445 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27471779ns 482448 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27472234ns 482456 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27472404ns 482459 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27472688ns 482464 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27472972ns 482469 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27473256ns 482474 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27473711ns 482482 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27473882ns 482485 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27474166ns 482490 1a110850 fd5ff06f jal x0, -44 +27474450ns 482495 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27474734ns 482500 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27475132ns 482507 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27475302ns 482510 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27475757ns 482518 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27475928ns 482521 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27476212ns 482526 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27476496ns 482531 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27476780ns 482536 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27477235ns 482544 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27477405ns 482547 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27477689ns 482552 1a110850 fd5ff06f jal x0, -44 +27477974ns 482557 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27478258ns 482562 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27478656ns 482569 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27478826ns 482572 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27479281ns 482580 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27479451ns 482583 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27479735ns 482588 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27480019ns 482593 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27480304ns 482598 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27480758ns 482606 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27480929ns 482609 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27481213ns 482614 1a110850 fd5ff06f jal x0, -44 +27481497ns 482619 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27481781ns 482624 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27482179ns 482631 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27482350ns 482634 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27482804ns 482642 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27482975ns 482645 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27483259ns 482650 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27483543ns 482655 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27483827ns 482660 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27484282ns 482668 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27484452ns 482671 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27484737ns 482676 1a110850 fd5ff06f jal x0, -44 +27485021ns 482681 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27485305ns 482686 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27485703ns 482693 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27485873ns 482696 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27486328ns 482704 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27486498ns 482707 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27486783ns 482712 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27487067ns 482717 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27487351ns 482722 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27487805ns 482730 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27487976ns 482733 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27488260ns 482738 1a110850 fd5ff06f jal x0, -44 +27488544ns 482743 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27488828ns 482748 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27489226ns 482755 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27489397ns 482758 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27489851ns 482766 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27490022ns 482769 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27490306ns 482774 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27490590ns 482779 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27490874ns 482784 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27491329ns 482792 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27491500ns 482795 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27491784ns 482800 1a110850 fd5ff06f jal x0, -44 +27492068ns 482805 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27492352ns 482810 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27492750ns 482817 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27492920ns 482820 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27493375ns 482828 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27493546ns 482831 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27493830ns 482836 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27494114ns 482841 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27494398ns 482846 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27494853ns 482854 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27495023ns 482857 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27495307ns 482862 1a110850 fd5ff06f jal x0, -44 +27495591ns 482867 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27495876ns 482872 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27496273ns 482879 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27496444ns 482882 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27496899ns 482890 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27497069ns 482893 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27497353ns 482898 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27497637ns 482903 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27497922ns 482908 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27498376ns 482916 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27498547ns 482919 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27498831ns 482924 1a110850 fd5ff06f jal x0, -44 +27499115ns 482929 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27499399ns 482934 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27499797ns 482941 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27499968ns 482944 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27500422ns 482952 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27500593ns 482955 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27500877ns 482960 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27501161ns 482965 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27501445ns 482970 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27501900ns 482978 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27502070ns 482981 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27502354ns 482986 1a110850 fd5ff06f jal x0, -44 +27502639ns 482991 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27502923ns 482996 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27503321ns 483003 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27503491ns 483006 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27503946ns 483014 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27504116ns 483017 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27504400ns 483022 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27504685ns 483027 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27504969ns 483032 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27505423ns 483040 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27505594ns 483043 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27505878ns 483048 1a110850 fd5ff06f jal x0, -44 +27506162ns 483053 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27506446ns 483058 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27506844ns 483065 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27507015ns 483068 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27507469ns 483076 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27507640ns 483079 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27507924ns 483084 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27508208ns 483089 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27508492ns 483094 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27508947ns 483102 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27509117ns 483105 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27509402ns 483110 1a110850 fd5ff06f jal x0, -44 +27509686ns 483115 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27509970ns 483120 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27510368ns 483127 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27510538ns 483130 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27510993ns 483138 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27511163ns 483141 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27511448ns 483146 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27511732ns 483151 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27512016ns 483156 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27512471ns 483164 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27512641ns 483167 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27512925ns 483172 1a110850 fd5ff06f jal x0, -44 +27513209ns 483177 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27513494ns 483182 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27513891ns 483189 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27514062ns 483192 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27514517ns 483200 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27514687ns 483203 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27514971ns 483208 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27515255ns 483213 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27515539ns 483218 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27515994ns 483226 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27516165ns 483229 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27516449ns 483234 1a110850 fd5ff06f jal x0, -44 +27516733ns 483239 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27517017ns 483244 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27517415ns 483251 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27517585ns 483254 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27518040ns 483262 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27518211ns 483265 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27518495ns 483270 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27518779ns 483275 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27519063ns 483280 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27519518ns 483288 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27519688ns 483291 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27519972ns 483296 1a110850 fd5ff06f jal x0, -44 +27520257ns 483301 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27520541ns 483306 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27520939ns 483313 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27521109ns 483316 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27521564ns 483324 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27521734ns 483327 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27522018ns 483332 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27522303ns 483337 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27522587ns 483342 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27523041ns 483350 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27523212ns 483353 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27523496ns 483358 1a110850 fd5ff06f jal x0, -44 +27523780ns 483363 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27524064ns 483368 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27524462ns 483375 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27524633ns 483378 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27525087ns 483386 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27525258ns 483389 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27525542ns 483394 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27525826ns 483399 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27526110ns 483404 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27526565ns 483412 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27526735ns 483415 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27527020ns 483420 1a110850 fd5ff06f jal x0, -44 +27527304ns 483425 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27527588ns 483430 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27527986ns 483437 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27528156ns 483440 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27528611ns 483448 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27528781ns 483451 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27529066ns 483456 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27529350ns 483461 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27529634ns 483466 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27530088ns 483474 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27530259ns 483477 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27530543ns 483482 1a110850 fd5ff06f jal x0, -44 +27530827ns 483487 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27531111ns 483492 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27531509ns 483499 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27531680ns 483502 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27532134ns 483510 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27532305ns 483513 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27532589ns 483518 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27532873ns 483523 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27533157ns 483528 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27533612ns 483536 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27533783ns 483539 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27534067ns 483544 1a110850 fd5ff06f jal x0, -44 +27534351ns 483549 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27534635ns 483554 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27535033ns 483561 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27535203ns 483564 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27535658ns 483572 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27535829ns 483575 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27536113ns 483580 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27536397ns 483585 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27536681ns 483590 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27537136ns 483598 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27537306ns 483601 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27537590ns 483606 1a110850 fd5ff06f jal x0, -44 +27537874ns 483611 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27538159ns 483616 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27538556ns 483623 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27538727ns 483626 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27539182ns 483634 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27539352ns 483637 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27539636ns 483642 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27539920ns 483647 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27540205ns 483652 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27540659ns 483660 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27540830ns 483663 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27541114ns 483668 1a110850 fd5ff06f jal x0, -44 +27541398ns 483673 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27541682ns 483678 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27542080ns 483685 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27542251ns 483688 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27542705ns 483696 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27542876ns 483699 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27543160ns 483704 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27543444ns 483709 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27543728ns 483714 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27544183ns 483722 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27544353ns 483725 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27544637ns 483730 1a110850 fd5ff06f jal x0, -44 +27544922ns 483735 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27545206ns 483740 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27545604ns 483747 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27545774ns 483750 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27546229ns 483758 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27546399ns 483761 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27546683ns 483766 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27546968ns 483771 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27547252ns 483776 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27547706ns 483784 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27547877ns 483787 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27548161ns 483792 1a110850 fd5ff06f jal x0, -44 +27548445ns 483797 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27548729ns 483802 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27549127ns 483809 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27549298ns 483812 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27549752ns 483820 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27549923ns 483823 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27550207ns 483828 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27550491ns 483833 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27550775ns 483838 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27551230ns 483846 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27551400ns 483849 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27551685ns 483854 1a110850 fd5ff06f jal x0, -44 +27551969ns 483859 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27552253ns 483864 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27552651ns 483871 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27552821ns 483874 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27553276ns 483882 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27553446ns 483885 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27553731ns 483890 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27554015ns 483895 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27554299ns 483900 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27554754ns 483908 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27554924ns 483911 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27555208ns 483916 1a110850 fd5ff06f jal x0, -44 +27555492ns 483921 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27555777ns 483926 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27556174ns 483933 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27556345ns 483936 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27556800ns 483944 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27556970ns 483947 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27557254ns 483952 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27557538ns 483957 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27557823ns 483962 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27558277ns 483970 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27558448ns 483973 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27558732ns 483978 1a110850 fd5ff06f jal x0, -44 +27559016ns 483983 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27559300ns 483988 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27559698ns 483995 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27559868ns 483998 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27560323ns 484006 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27560494ns 484009 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27560778ns 484014 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27561062ns 484019 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27561346ns 484024 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27561801ns 484032 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27561971ns 484035 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27562255ns 484040 1a110850 fd5ff06f jal x0, -44 +27562540ns 484045 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27562824ns 484050 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27563222ns 484057 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27563392ns 484060 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27563847ns 484068 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27564017ns 484071 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27564301ns 484076 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27564586ns 484081 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27564870ns 484086 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27565324ns 484094 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27565495ns 484097 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27565779ns 484102 1a110850 fd5ff06f jal x0, -44 +27566063ns 484107 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27566347ns 484112 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27566745ns 484119 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27566916ns 484122 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27567370ns 484130 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27567541ns 484133 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27567825ns 484138 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27568109ns 484143 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27568393ns 484148 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27568848ns 484156 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27569018ns 484159 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27569303ns 484164 1a110850 fd5ff06f jal x0, -44 +27569587ns 484169 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27569871ns 484174 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27570269ns 484181 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27570439ns 484184 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27570894ns 484192 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27571064ns 484195 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27571349ns 484200 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27571633ns 484205 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27571917ns 484210 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27572371ns 484218 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27572542ns 484221 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27572826ns 484226 1a110850 fd5ff06f jal x0, -44 +27573110ns 484231 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27573394ns 484236 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27573792ns 484243 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27573963ns 484246 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27574417ns 484254 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27574588ns 484257 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27574872ns 484262 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27575156ns 484267 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27575440ns 484272 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27575895ns 484280 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27576066ns 484283 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27576350ns 484288 1a110850 fd5ff06f jal x0, -44 +27576634ns 484293 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27576918ns 484298 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27577316ns 484305 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27577486ns 484308 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27577941ns 484316 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27578112ns 484319 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27578396ns 484324 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27578680ns 484329 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27578964ns 484334 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27579419ns 484342 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27579589ns 484345 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27579873ns 484350 1a110850 fd5ff06f jal x0, -44 +27580157ns 484355 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27580442ns 484360 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27580839ns 484367 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27581010ns 484370 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27581465ns 484378 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27581635ns 484381 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27581919ns 484386 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27582203ns 484391 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27582488ns 484396 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27582942ns 484404 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27583113ns 484407 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27583397ns 484412 1a110850 fd5ff06f jal x0, -44 +27583681ns 484417 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27583965ns 484422 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27584363ns 484429 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27584534ns 484432 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27584988ns 484440 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27585159ns 484443 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27585443ns 484448 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27585727ns 484453 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27586011ns 484458 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27586466ns 484466 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27586636ns 484469 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27586920ns 484474 1a110850 fd5ff06f jal x0, -44 +27587205ns 484479 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27587489ns 484484 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27587887ns 484491 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27588057ns 484494 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27588512ns 484502 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27588682ns 484505 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27588966ns 484510 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27589251ns 484515 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27589535ns 484520 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27589989ns 484528 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27590160ns 484531 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27590444ns 484536 1a110850 fd5ff06f jal x0, -44 +27590728ns 484541 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27591012ns 484546 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27591410ns 484553 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27591581ns 484556 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27592035ns 484564 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27592206ns 484567 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27592490ns 484572 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27592774ns 484577 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27593058ns 484582 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27593513ns 484590 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27593683ns 484593 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27593968ns 484598 1a110850 fd5ff06f jal x0, -44 +27594252ns 484603 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27594536ns 484608 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27594934ns 484615 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27595104ns 484618 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27595559ns 484626 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27595729ns 484629 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27596014ns 484634 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27596298ns 484639 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27596582ns 484644 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27597037ns 484652 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27597207ns 484655 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27597491ns 484660 1a110850 fd5ff06f jal x0, -44 +27597775ns 484665 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27598060ns 484670 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27598457ns 484677 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27598628ns 484680 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27599083ns 484688 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27599253ns 484691 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27599537ns 484696 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27599821ns 484701 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27600106ns 484706 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27600560ns 484714 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27600731ns 484717 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27601015ns 484722 1a110850 fd5ff06f jal x0, -44 +27601299ns 484727 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27601583ns 484732 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27601981ns 484739 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27602151ns 484742 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27602606ns 484750 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27602777ns 484753 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27603061ns 484758 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27603345ns 484763 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27603629ns 484768 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27604084ns 484776 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27604254ns 484779 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27604538ns 484784 1a110850 fd5ff06f jal x0, -44 +27604823ns 484789 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27605107ns 484794 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27605505ns 484801 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27605675ns 484804 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27606130ns 484812 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27606300ns 484815 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27606584ns 484820 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27606869ns 484825 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27607153ns 484830 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27607607ns 484838 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27607778ns 484841 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27608062ns 484846 1a110850 fd5ff06f jal x0, -44 +27608346ns 484851 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27608630ns 484856 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27609028ns 484863 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27609199ns 484866 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27609653ns 484874 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27609824ns 484877 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27610108ns 484882 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27610392ns 484887 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27610676ns 484892 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27611131ns 484900 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27611301ns 484903 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27611586ns 484908 1a110850 fd5ff06f jal x0, -44 +27611870ns 484913 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27612154ns 484918 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27612552ns 484925 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27612722ns 484928 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27613177ns 484936 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27613347ns 484939 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27613632ns 484944 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27613916ns 484949 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27614200ns 484954 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27614655ns 484962 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27614825ns 484965 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27615109ns 484970 1a110850 fd5ff06f jal x0, -44 +27615393ns 484975 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27615677ns 484980 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27616075ns 484987 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27616246ns 484990 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27616700ns 484998 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27616871ns 485001 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27617155ns 485006 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27617439ns 485011 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27617723ns 485016 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27618178ns 485024 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27618349ns 485027 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27618633ns 485032 1a110850 fd5ff06f jal x0, -44 +27618917ns 485037 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27619201ns 485042 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27619599ns 485049 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27619769ns 485052 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27620224ns 485060 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27620395ns 485063 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27620679ns 485068 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27620963ns 485073 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27621247ns 485078 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27621702ns 485086 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27621872ns 485089 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27622156ns 485094 1a110850 fd5ff06f jal x0, -44 +27622440ns 485099 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27622725ns 485104 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27623122ns 485111 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27623293ns 485114 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27623748ns 485122 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27623918ns 485125 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27624202ns 485130 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27624486ns 485135 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27624771ns 485140 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27625225ns 485148 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27625396ns 485151 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27625680ns 485156 1a110850 fd5ff06f jal x0, -44 +27625964ns 485161 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27626248ns 485166 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27626646ns 485173 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27626817ns 485176 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27627271ns 485184 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27627442ns 485187 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27627726ns 485192 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27628010ns 485197 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27628294ns 485202 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27628749ns 485210 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27628919ns 485213 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27629203ns 485218 1a110850 fd5ff06f jal x0, -44 +27629488ns 485223 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27629772ns 485228 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27630170ns 485235 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27630340ns 485238 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27630795ns 485246 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27630965ns 485249 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27631249ns 485254 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27631534ns 485259 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27631818ns 485264 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27632272ns 485272 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27632443ns 485275 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27632727ns 485280 1a110850 fd5ff06f jal x0, -44 +27633011ns 485285 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27633295ns 485290 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27633693ns 485297 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27633864ns 485300 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27634318ns 485308 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27634489ns 485311 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27634773ns 485316 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27635057ns 485321 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27635341ns 485326 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27635796ns 485334 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27635967ns 485337 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27636251ns 485342 1a110850 fd5ff06f jal x0, -44 +27636535ns 485347 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27636819ns 485352 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27637217ns 485359 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27637387ns 485362 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27637842ns 485370 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27638012ns 485373 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27638297ns 485378 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27638581ns 485383 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27638865ns 485388 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27639320ns 485396 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27639490ns 485399 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27639774ns 485404 1a110850 fd5ff06f jal x0, -44 +27640058ns 485409 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27640343ns 485414 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27640740ns 485421 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27640911ns 485424 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27641366ns 485432 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27641536ns 485435 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27641820ns 485440 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27642104ns 485445 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27642389ns 485450 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27642843ns 485458 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27643014ns 485461 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27643298ns 485466 1a110850 fd5ff06f jal x0, -44 +27643582ns 485471 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27643866ns 485476 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27644264ns 485483 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27644434ns 485486 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27644889ns 485494 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27645060ns 485497 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27645344ns 485502 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27645628ns 485507 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27645912ns 485512 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27646367ns 485520 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27646537ns 485523 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27646821ns 485528 1a110850 fd5ff06f jal x0, -44 +27647106ns 485533 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27647390ns 485538 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27647788ns 485545 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27647958ns 485548 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27648413ns 485556 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27648583ns 485559 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27648867ns 485564 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27649152ns 485569 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27649436ns 485574 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27649890ns 485582 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27650061ns 485585 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27650345ns 485590 1a110850 fd5ff06f jal x0, -44 +27650629ns 485595 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27650913ns 485600 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27651311ns 485607 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27651482ns 485610 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27651936ns 485618 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27652107ns 485621 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27652391ns 485626 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27652675ns 485631 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27652959ns 485636 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27653414ns 485644 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27653584ns 485647 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27653869ns 485652 1a110850 fd5ff06f jal x0, -44 +27654153ns 485657 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27654437ns 485662 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27654835ns 485669 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27655005ns 485672 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27655460ns 485680 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27655630ns 485683 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27655915ns 485688 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27656199ns 485693 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27656483ns 485698 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27656938ns 485706 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27657108ns 485709 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27657392ns 485714 1a110850 fd5ff06f jal x0, -44 +27657676ns 485719 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27657960ns 485724 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27658358ns 485731 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27658529ns 485734 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27658983ns 485742 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27659154ns 485745 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27659438ns 485750 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27659722ns 485755 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27660006ns 485760 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27660461ns 485768 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27660632ns 485771 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27660916ns 485776 1a110850 fd5ff06f jal x0, -44 +27661200ns 485781 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27661484ns 485786 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27661882ns 485793 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27662052ns 485796 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27662507ns 485804 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27662678ns 485807 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27662962ns 485812 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27663246ns 485817 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27663530ns 485822 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27663985ns 485830 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27664155ns 485833 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27664439ns 485838 1a110850 fd5ff06f jal x0, -44 +27664723ns 485843 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27665008ns 485848 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27665405ns 485855 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27665576ns 485858 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27666031ns 485866 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27666201ns 485869 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27666485ns 485874 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27666769ns 485879 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27667054ns 485884 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27667508ns 485892 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27667679ns 485895 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27667963ns 485900 1a110850 fd5ff06f jal x0, -44 +27668247ns 485905 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27668531ns 485910 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27668929ns 485917 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27669100ns 485920 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27669554ns 485928 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27669725ns 485931 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27670009ns 485936 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27670293ns 485941 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27670577ns 485946 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27671032ns 485954 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27671202ns 485957 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27671487ns 485962 1a110850 fd5ff06f jal x0, -44 +27671771ns 485967 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27672055ns 485972 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27672453ns 485979 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27672623ns 485982 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27673078ns 485990 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27673248ns 485993 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27673532ns 485998 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27673817ns 486003 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27674101ns 486008 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27674555ns 486016 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27674726ns 486019 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27675010ns 486024 1a110850 fd5ff06f jal x0, -44 +27675294ns 486029 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27675578ns 486034 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27675976ns 486041 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27676147ns 486044 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27676601ns 486052 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27676772ns 486055 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27677056ns 486060 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27677340ns 486065 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27677624ns 486070 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27678079ns 486078 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27678250ns 486081 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27678534ns 486086 1a110850 fd5ff06f jal x0, -44 +27678818ns 486091 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27679102ns 486096 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27679500ns 486103 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27679670ns 486106 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27680125ns 486114 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27680295ns 486117 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27680580ns 486122 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27680864ns 486127 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27681148ns 486132 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27681603ns 486140 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27681773ns 486143 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27682057ns 486148 1a110850 fd5ff06f jal x0, -44 +27682341ns 486153 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27682626ns 486158 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27683023ns 486165 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27683194ns 486168 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27683649ns 486176 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27683819ns 486179 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27684103ns 486184 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27684387ns 486189 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27684672ns 486194 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27685126ns 486202 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27685297ns 486205 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27685581ns 486210 1a110850 fd5ff06f jal x0, -44 +27685865ns 486215 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27686149ns 486220 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27686547ns 486227 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27686717ns 486230 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27687172ns 486238 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27687343ns 486241 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27687627ns 486246 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27687911ns 486251 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27688195ns 486256 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27688650ns 486264 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27688820ns 486267 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27689104ns 486272 1a110850 fd5ff06f jal x0, -44 +27689389ns 486277 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27689673ns 486282 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27690071ns 486289 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27690241ns 486292 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27690696ns 486300 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27690866ns 486303 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27691150ns 486308 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27691435ns 486313 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27691719ns 486318 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27692173ns 486326 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27692344ns 486329 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27692628ns 486334 1a110850 fd5ff06f jal x0, -44 +27692912ns 486339 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27693196ns 486344 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27693594ns 486351 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27693765ns 486354 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27694219ns 486362 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27694390ns 486365 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27694674ns 486370 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27694958ns 486375 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27695242ns 486380 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27695697ns 486388 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27695867ns 486391 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27696152ns 486396 1a110850 fd5ff06f jal x0, -44 +27696436ns 486401 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27696720ns 486406 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27697118ns 486413 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27697288ns 486416 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27697743ns 486424 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27697913ns 486427 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27698198ns 486432 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27698482ns 486437 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27698766ns 486442 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27699221ns 486450 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27699391ns 486453 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27699675ns 486458 1a110850 fd5ff06f jal x0, -44 +27699959ns 486463 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27700243ns 486468 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27700641ns 486475 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27700812ns 486478 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27701266ns 486486 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27701437ns 486489 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27701721ns 486494 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27702005ns 486499 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27702289ns 486504 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27702744ns 486512 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27702915ns 486515 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27703199ns 486520 1a110850 fd5ff06f jal x0, -44 +27703483ns 486525 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27703767ns 486530 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27704165ns 486537 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27704335ns 486540 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27704790ns 486548 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27704961ns 486551 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27705245ns 486556 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27705529ns 486561 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27705813ns 486566 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27706268ns 486574 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27706438ns 486577 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27706722ns 486582 1a110850 fd5ff06f jal x0, -44 +27707007ns 486587 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27707291ns 486592 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27707688ns 486599 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27707859ns 486602 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27708314ns 486610 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27708484ns 486613 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27708768ns 486618 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27709052ns 486623 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27709337ns 486628 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27709791ns 486636 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27709962ns 486639 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27710246ns 486644 1a110850 fd5ff06f jal x0, -44 +27710530ns 486649 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27710814ns 486654 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27711212ns 486661 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27711383ns 486664 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27711837ns 486672 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27712008ns 486675 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27712292ns 486680 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27712576ns 486685 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27712860ns 486690 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27713315ns 486698 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27713485ns 486701 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27713770ns 486706 1a110850 fd5ff06f jal x0, -44 +27714054ns 486711 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27714338ns 486716 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27714736ns 486723 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27714906ns 486726 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27715361ns 486734 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27715531ns 486737 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27715815ns 486742 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27716100ns 486747 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27716384ns 486752 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27716838ns 486760 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27717009ns 486763 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27717293ns 486768 1a110850 fd5ff06f jal x0, -44 +27717577ns 486773 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27717861ns 486778 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27718259ns 486785 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27718430ns 486788 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27718884ns 486796 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27719055ns 486799 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27719339ns 486804 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27719623ns 486809 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27719907ns 486814 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27720362ns 486822 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27720533ns 486825 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27720817ns 486830 1a110850 fd5ff06f jal x0, -44 +27721101ns 486835 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27721385ns 486840 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27721783ns 486847 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27721953ns 486850 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27722408ns 486858 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27722578ns 486861 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27722863ns 486866 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27723147ns 486871 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27723431ns 486876 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27723886ns 486884 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27724056ns 486887 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27724340ns 486892 1a110850 fd5ff06f jal x0, -44 +27724624ns 486897 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27724909ns 486902 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27725306ns 486909 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27725477ns 486912 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27725932ns 486920 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27726102ns 486923 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27726386ns 486928 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27726670ns 486933 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27726955ns 486938 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27727409ns 486946 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27727580ns 486949 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27727864ns 486954 1a110850 fd5ff06f jal x0, -44 +27728148ns 486959 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27728432ns 486964 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27728830ns 486971 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27729000ns 486974 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27729455ns 486982 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27729626ns 486985 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27729910ns 486990 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27730194ns 486995 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27730478ns 487000 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27730933ns 487008 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27731103ns 487011 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27731387ns 487016 1a110850 fd5ff06f jal x0, -44 +27731672ns 487021 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27731956ns 487026 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27732354ns 487033 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27732524ns 487036 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27732979ns 487044 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27733149ns 487047 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27733433ns 487052 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27733718ns 487057 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27734002ns 487062 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27734456ns 487070 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27734627ns 487073 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27734911ns 487078 1a110850 fd5ff06f jal x0, -44 +27735195ns 487083 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27735479ns 487088 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27735877ns 487095 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27736048ns 487098 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27736502ns 487106 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27736673ns 487109 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27736957ns 487114 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27737241ns 487119 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27737525ns 487124 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27737980ns 487132 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27738150ns 487135 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27738435ns 487140 1a110850 fd5ff06f jal x0, -44 +27738719ns 487145 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27739003ns 487150 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27739401ns 487157 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27739571ns 487160 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27740026ns 487168 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27740196ns 487171 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27740481ns 487176 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27740765ns 487181 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27741049ns 487186 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27741504ns 487194 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27741674ns 487197 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27741958ns 487202 1a110850 fd5ff06f jal x0, -44 +27742242ns 487207 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27742527ns 487212 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27742924ns 487219 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27743095ns 487222 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27743549ns 487230 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27743720ns 487233 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27744004ns 487238 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27744288ns 487243 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27744572ns 487248 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27745027ns 487256 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27745198ns 487259 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27745482ns 487264 1a110850 fd5ff06f jal x0, -44 +27745766ns 487269 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27746050ns 487274 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27746448ns 487281 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27746618ns 487284 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27747073ns 487292 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27747244ns 487295 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27747528ns 487300 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27747812ns 487305 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27748096ns 487310 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27748551ns 487318 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27748721ns 487321 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27749005ns 487326 1a110850 fd5ff06f jal x0, -44 +27749290ns 487331 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27749574ns 487336 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27749971ns 487343 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27750142ns 487346 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27750597ns 487354 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27750767ns 487357 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27751051ns 487362 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27751335ns 487367 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27751620ns 487372 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27752074ns 487380 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27752245ns 487383 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27752529ns 487388 1a110850 fd5ff06f jal x0, -44 +27752813ns 487393 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27753097ns 487398 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27753495ns 487405 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27753666ns 487408 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27754120ns 487416 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27754291ns 487419 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27754575ns 487424 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27754859ns 487429 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27755143ns 487434 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27755598ns 487442 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27755768ns 487445 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27756053ns 487450 1a110850 fd5ff06f jal x0, -44 +27756337ns 487455 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27756621ns 487460 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27757019ns 487467 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27757189ns 487470 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27757644ns 487478 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27757814ns 487481 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27758098ns 487486 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27758383ns 487491 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27758667ns 487496 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27759121ns 487504 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27759292ns 487507 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27759576ns 487512 1a110850 fd5ff06f jal x0, -44 +27759860ns 487517 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27760144ns 487522 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27760542ns 487529 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27760713ns 487532 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27761167ns 487540 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27761338ns 487543 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27761622ns 487548 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27761906ns 487553 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27762190ns 487558 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27762645ns 487566 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27762816ns 487569 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27763100ns 487574 1a110850 fd5ff06f jal x0, -44 +27763384ns 487579 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27763668ns 487584 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27764066ns 487591 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27764236ns 487594 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27764691ns 487602 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27764861ns 487605 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27765146ns 487610 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27765430ns 487615 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27765714ns 487620 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27766169ns 487628 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27766339ns 487631 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27766623ns 487636 1a110850 fd5ff06f jal x0, -44 +27766907ns 487641 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27767192ns 487646 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27767589ns 487653 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27767760ns 487656 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27768215ns 487664 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27768385ns 487667 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27768669ns 487672 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27768953ns 487677 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27769238ns 487682 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27769692ns 487690 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27769863ns 487693 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27770147ns 487698 1a110850 fd5ff06f jal x0, -44 +27770431ns 487703 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27770715ns 487708 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27771113ns 487715 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27771283ns 487718 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27771738ns 487726 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27771909ns 487729 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27772193ns 487734 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27772477ns 487739 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27772761ns 487744 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27773216ns 487752 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27773386ns 487755 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27773670ns 487760 1a110850 fd5ff06f jal x0, -44 +27773955ns 487765 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27774239ns 487770 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27774637ns 487777 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27774807ns 487780 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27775262ns 487788 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27775432ns 487791 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27775716ns 487796 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27776001ns 487801 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27776285ns 487806 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27776739ns 487814 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27776910ns 487817 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27777194ns 487822 1a110850 fd5ff06f jal x0, -44 +27777478ns 487827 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27777762ns 487832 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27778160ns 487839 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27778331ns 487842 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27778785ns 487850 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27778956ns 487853 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27779240ns 487858 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27779524ns 487863 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27779808ns 487868 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27780263ns 487876 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27780433ns 487879 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27780718ns 487884 1a110850 fd5ff06f jal x0, -44 +27781002ns 487889 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27781286ns 487894 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27781684ns 487901 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27781854ns 487904 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27782309ns 487912 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27782479ns 487915 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27782764ns 487920 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27783048ns 487925 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27783332ns 487930 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27783787ns 487938 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27783957ns 487941 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27784241ns 487946 1a110850 fd5ff06f jal x0, -44 +27784525ns 487951 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27784810ns 487956 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27785207ns 487963 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27785378ns 487966 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27785832ns 487974 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27786003ns 487977 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27786287ns 487982 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27786571ns 487987 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27786855ns 487992 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27787310ns 488000 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27787481ns 488003 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27787765ns 488008 1a110850 fd5ff06f jal x0, -44 +27788049ns 488013 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27788333ns 488018 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27788731ns 488025 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27788901ns 488028 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27789356ns 488036 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27789527ns 488039 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27789811ns 488044 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27790095ns 488049 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27790379ns 488054 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27790834ns 488062 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27791004ns 488065 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27791288ns 488070 1a110850 fd5ff06f jal x0, -44 +27791573ns 488075 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27791857ns 488080 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27792255ns 488087 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27792425ns 488090 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27792880ns 488098 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27793050ns 488101 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27793334ns 488106 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27793618ns 488111 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27793903ns 488116 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27794357ns 488124 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27794528ns 488127 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27794812ns 488132 1a110850 fd5ff06f jal x0, -44 +27795096ns 488137 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27795380ns 488142 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27795778ns 488149 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27795949ns 488152 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27796403ns 488160 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27796574ns 488163 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27796858ns 488168 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27797142ns 488173 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27797426ns 488178 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27797881ns 488186 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27798051ns 488189 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27798336ns 488194 1a110850 fd5ff06f jal x0, -44 +27798620ns 488199 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27798904ns 488204 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27799302ns 488211 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27799472ns 488214 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27799927ns 488222 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27800097ns 488225 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27800381ns 488230 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27800666ns 488235 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27800950ns 488240 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27801404ns 488248 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27801575ns 488251 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27801859ns 488256 1a110850 fd5ff06f jal x0, -44 +27802143ns 488261 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27802427ns 488266 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27802825ns 488273 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27802996ns 488276 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27803450ns 488284 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27803621ns 488287 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27803905ns 488292 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27804189ns 488297 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27804473ns 488302 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27804928ns 488310 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27805099ns 488313 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27805383ns 488318 1a110850 fd5ff06f jal x0, -44 +27805667ns 488323 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27805951ns 488328 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27806349ns 488335 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27806519ns 488338 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27806974ns 488346 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27807144ns 488349 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27807429ns 488354 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27807713ns 488359 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27807997ns 488364 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27808452ns 488372 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27808622ns 488375 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27808906ns 488380 1a110850 fd5ff06f jal x0, -44 +27809190ns 488385 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27809475ns 488390 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27809872ns 488397 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27810043ns 488400 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27810498ns 488408 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27810668ns 488411 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27810952ns 488416 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27811236ns 488421 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27811521ns 488426 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27811975ns 488434 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27812146ns 488437 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27812430ns 488442 1a110850 fd5ff06f jal x0, -44 +27812714ns 488447 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27812998ns 488452 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27813396ns 488459 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27813567ns 488462 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27814021ns 488470 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27814192ns 488473 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27814476ns 488478 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27814760ns 488483 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27815044ns 488488 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27815499ns 488496 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27815669ns 488499 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27815953ns 488504 1a110850 fd5ff06f jal x0, -44 +27816238ns 488509 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27816522ns 488514 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27816920ns 488521 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27817090ns 488524 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27817545ns 488532 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27817715ns 488535 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27817999ns 488540 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27818284ns 488545 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27818568ns 488550 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27819022ns 488558 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27819193ns 488561 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27819477ns 488566 1a110850 fd5ff06f jal x0, -44 +27819761ns 488571 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27820045ns 488576 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27820443ns 488583 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27820614ns 488586 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27821068ns 488594 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27821239ns 488597 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27821523ns 488602 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27821807ns 488607 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27822091ns 488612 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27822546ns 488620 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27822716ns 488623 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27823001ns 488628 1a110850 fd5ff06f jal x0, -44 +27823285ns 488633 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27823569ns 488638 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27823967ns 488645 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27824137ns 488648 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27824592ns 488656 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27824762ns 488659 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27825047ns 488664 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27825331ns 488669 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27825615ns 488674 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27826070ns 488682 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27826240ns 488685 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27826524ns 488690 1a110850 fd5ff06f jal x0, -44 +27826808ns 488695 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27827093ns 488700 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27827490ns 488707 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27827661ns 488710 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27828115ns 488718 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27828286ns 488721 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27828570ns 488726 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27828854ns 488731 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27829138ns 488736 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27829593ns 488744 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27829764ns 488747 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27830048ns 488752 1a110850 fd5ff06f jal x0, -44 +27830332ns 488757 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27830616ns 488762 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27831014ns 488769 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27831184ns 488772 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27831639ns 488780 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27831810ns 488783 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27832094ns 488788 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27832378ns 488793 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27832662ns 488798 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27833117ns 488806 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27833287ns 488809 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27833571ns 488814 1a110850 fd5ff06f jal x0, -44 +27833856ns 488819 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27834140ns 488824 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27834538ns 488831 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27834708ns 488834 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27835163ns 488842 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27835333ns 488845 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27835617ns 488850 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27835901ns 488855 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27836186ns 488860 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27836640ns 488868 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27836811ns 488871 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27837095ns 488876 1a110850 fd5ff06f jal x0, -44 +27837379ns 488881 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27837663ns 488886 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27838061ns 488893 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27838232ns 488896 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27838686ns 488904 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27838857ns 488907 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27839141ns 488912 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27839425ns 488917 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27839709ns 488922 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27840164ns 488930 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27840334ns 488933 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27840619ns 488938 1a110850 fd5ff06f jal x0, -44 +27840903ns 488943 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27841187ns 488948 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27841585ns 488955 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27841755ns 488958 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27842210ns 488966 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27842380ns 488969 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27842664ns 488974 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27842949ns 488979 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27843233ns 488984 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27843687ns 488992 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27843858ns 488995 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27844142ns 489000 1a110850 fd5ff06f jal x0, -44 +27844426ns 489005 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27844710ns 489010 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27845108ns 489017 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27845279ns 489020 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27845733ns 489028 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27845904ns 489031 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27846188ns 489036 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27846472ns 489041 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27846756ns 489046 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27847211ns 489054 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27847382ns 489057 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27847666ns 489062 1a110850 fd5ff06f jal x0, -44 +27847950ns 489067 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27848234ns 489072 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27848632ns 489079 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27848802ns 489082 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27849257ns 489090 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27849427ns 489093 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27849712ns 489098 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27849996ns 489103 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27850280ns 489108 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27850735ns 489116 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27850905ns 489119 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27851189ns 489124 1a110850 fd5ff06f jal x0, -44 +27851473ns 489129 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27851758ns 489134 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27852155ns 489141 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27852326ns 489144 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27852781ns 489152 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27852951ns 489155 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27853235ns 489160 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27853519ns 489165 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27853804ns 489170 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27854258ns 489178 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27854429ns 489181 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27854713ns 489186 1a110850 fd5ff06f jal x0, -44 +27854997ns 489191 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27855281ns 489196 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27855679ns 489203 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27855850ns 489206 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27856304ns 489214 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27856475ns 489217 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27856759ns 489222 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27857043ns 489227 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27857327ns 489232 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27857782ns 489240 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27857952ns 489243 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27858236ns 489248 1a110850 fd5ff06f jal x0, -44 +27858521ns 489253 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27858805ns 489258 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27859203ns 489265 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27859373ns 489268 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27859828ns 489276 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27859998ns 489279 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27860282ns 489284 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27860567ns 489289 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27860851ns 489294 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27861305ns 489302 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27861476ns 489305 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27861760ns 489310 1a110850 fd5ff06f jal x0, -44 +27862044ns 489315 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27862328ns 489320 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27862726ns 489327 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27862897ns 489330 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27863351ns 489338 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27863522ns 489341 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27863806ns 489346 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27864090ns 489351 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27864374ns 489356 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27864829ns 489364 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27864999ns 489367 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27865284ns 489372 1a110850 fd5ff06f jal x0, -44 +27865568ns 489377 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27865852ns 489382 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27866250ns 489389 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27866420ns 489392 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27866875ns 489400 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27867045ns 489403 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27867330ns 489408 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27867614ns 489413 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27867898ns 489418 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27868353ns 489426 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27868523ns 489429 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27868807ns 489434 1a110850 fd5ff06f jal x0, -44 +27869091ns 489439 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27869376ns 489444 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27869773ns 489451 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27869944ns 489454 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27870399ns 489462 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27870569ns 489465 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27870853ns 489470 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27871137ns 489475 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27871421ns 489480 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27871876ns 489488 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27872047ns 489491 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27872331ns 489496 1a110850 fd5ff06f jal x0, -44 +27872615ns 489501 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27872899ns 489506 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27873297ns 489513 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27873467ns 489516 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27873922ns 489524 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27874093ns 489527 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27874377ns 489532 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27874661ns 489537 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27874945ns 489542 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27875400ns 489550 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27875570ns 489553 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27875854ns 489558 1a110850 fd5ff06f jal x0, -44 +27876139ns 489563 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27876423ns 489568 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27876821ns 489575 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27876991ns 489578 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27877446ns 489586 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27877616ns 489589 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27877900ns 489594 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27878184ns 489599 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27878469ns 489604 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27878923ns 489612 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27879094ns 489615 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27879378ns 489620 1a110850 fd5ff06f jal x0, -44 +27879662ns 489625 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27879946ns 489630 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27880344ns 489637 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27880515ns 489640 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27880969ns 489648 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27881140ns 489651 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27881424ns 489656 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27881708ns 489661 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27881992ns 489666 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27882447ns 489674 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27882617ns 489677 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27882902ns 489682 1a110850 fd5ff06f jal x0, -44 +27883186ns 489687 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27883470ns 489692 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27883868ns 489699 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27884038ns 489702 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27884493ns 489710 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27884663ns 489713 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27884947ns 489718 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27885232ns 489723 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27885516ns 489728 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27885970ns 489736 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27886141ns 489739 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27886425ns 489744 1a110850 fd5ff06f jal x0, -44 +27886709ns 489749 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27886993ns 489754 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27887391ns 489761 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27887562ns 489764 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27888016ns 489772 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27888187ns 489775 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27888471ns 489780 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27888755ns 489785 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27889039ns 489790 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27889494ns 489798 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27889665ns 489801 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27889949ns 489806 1a110850 fd5ff06f jal x0, -44 +27890233ns 489811 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27890517ns 489816 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27890915ns 489823 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27891085ns 489826 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27891540ns 489834 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27891711ns 489837 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27891995ns 489842 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27892279ns 489847 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27892563ns 489852 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27893018ns 489860 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27893188ns 489863 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27893472ns 489868 1a110850 fd5ff06f jal x0, -44 +27893756ns 489873 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27894041ns 489878 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27894438ns 489885 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27894609ns 489888 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27895064ns 489896 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27895234ns 489899 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27895518ns 489904 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27895802ns 489909 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27896087ns 489914 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27896541ns 489922 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27896712ns 489925 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27896996ns 489930 1a110850 fd5ff06f jal x0, -44 +27897280ns 489935 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27897564ns 489940 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27897962ns 489947 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27898133ns 489950 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27898587ns 489958 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27898758ns 489961 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27899042ns 489966 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27899326ns 489971 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27899610ns 489976 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27900065ns 489984 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27900235ns 489987 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27900519ns 489992 1a110850 fd5ff06f jal x0, -44 +27900804ns 489997 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27901088ns 490002 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27901486ns 490009 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27901656ns 490012 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27902111ns 490020 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27902281ns 490023 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27902565ns 490028 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27902850ns 490033 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27903134ns 490038 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27903588ns 490046 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27903759ns 490049 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27904043ns 490054 1a110850 fd5ff06f jal x0, -44 +27904327ns 490059 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27904611ns 490064 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27905009ns 490071 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27905180ns 490074 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27905634ns 490082 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27905805ns 490085 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27906089ns 490090 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27906373ns 490095 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27906657ns 490100 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27907112ns 490108 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27907282ns 490111 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27907567ns 490116 1a110850 fd5ff06f jal x0, -44 +27907851ns 490121 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27908135ns 490126 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27908533ns 490133 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27908703ns 490136 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27909158ns 490144 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27909328ns 490147 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27909613ns 490152 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27909897ns 490157 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27910181ns 490162 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27910636ns 490170 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27910806ns 490173 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27911090ns 490178 1a110850 fd5ff06f jal x0, -44 +27911374ns 490183 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27911659ns 490188 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27912056ns 490195 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27912227ns 490198 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27912682ns 490206 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27912852ns 490209 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27913136ns 490214 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27913420ns 490219 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27913704ns 490224 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27914159ns 490232 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27914330ns 490235 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27914614ns 490240 1a110850 fd5ff06f jal x0, -44 +27914898ns 490245 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27915182ns 490250 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27915580ns 490257 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27915750ns 490260 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27916205ns 490268 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27916376ns 490271 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27916660ns 490276 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27916944ns 490281 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27917228ns 490286 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27917683ns 490294 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27917853ns 490297 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27918137ns 490302 1a110850 fd5ff06f jal x0, -44 +27918422ns 490307 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27918706ns 490312 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27919104ns 490319 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27919274ns 490322 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27919729ns 490330 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27919899ns 490333 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27920183ns 490338 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27920467ns 490343 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27920752ns 490348 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27921206ns 490356 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27921377ns 490359 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27921661ns 490364 1a110850 fd5ff06f jal x0, -44 +27921945ns 490369 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27922229ns 490374 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27922627ns 490381 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27922798ns 490384 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27923252ns 490392 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27923423ns 490395 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27923707ns 490400 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27923991ns 490405 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27924275ns 490410 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27924730ns 490418 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27924900ns 490421 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27925185ns 490426 1a110850 fd5ff06f jal x0, -44 +27925469ns 490431 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27925753ns 490436 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27926151ns 490443 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27926321ns 490446 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27926776ns 490454 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27926946ns 490457 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27927231ns 490462 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27927515ns 490467 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27927799ns 490472 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27928253ns 490480 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27928424ns 490483 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27928708ns 490488 1a110850 fd5ff06f jal x0, -44 +27928992ns 490493 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27929276ns 490498 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27929674ns 490505 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27929845ns 490508 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27930299ns 490516 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27930470ns 490519 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27930754ns 490524 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27931038ns 490529 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27931322ns 490534 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27931777ns 490542 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27931948ns 490545 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27932232ns 490550 1a110850 fd5ff06f jal x0, -44 +27932516ns 490555 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27932800ns 490560 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27933198ns 490567 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27933368ns 490570 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27933823ns 490578 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27933994ns 490581 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27934278ns 490586 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27934562ns 490591 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27934846ns 490596 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27935301ns 490604 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27935471ns 490607 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27935755ns 490612 1a110850 fd5ff06f jal x0, -44 +27936039ns 490617 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27936324ns 490622 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27936721ns 490629 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27936892ns 490632 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27937347ns 490640 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27937517ns 490643 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27937801ns 490648 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27938085ns 490653 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27938370ns 490658 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27938824ns 490666 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27938995ns 490669 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27939279ns 490674 1a110850 fd5ff06f jal x0, -44 +27939563ns 490679 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27939847ns 490684 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27940245ns 490691 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27940416ns 490694 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27940870ns 490702 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27941041ns 490705 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27941325ns 490710 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27941609ns 490715 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27941893ns 490720 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27942348ns 490728 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27942518ns 490731 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27942802ns 490736 1a110850 fd5ff06f jal x0, -44 +27943087ns 490741 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27943371ns 490746 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27943769ns 490753 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27943939ns 490756 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27944394ns 490764 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27944564ns 490767 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27944848ns 490772 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27945133ns 490777 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27945417ns 490782 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27945871ns 490790 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27946042ns 490793 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27946326ns 490798 1a110850 fd5ff06f jal x0, -44 +27946610ns 490803 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27946894ns 490808 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27947292ns 490815 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27947463ns 490818 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27947917ns 490826 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27948088ns 490829 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27948372ns 490834 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27948656ns 490839 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27948940ns 490844 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27949395ns 490852 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27949565ns 490855 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27949850ns 490860 1a110850 fd5ff06f jal x0, -44 +27950134ns 490865 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27950418ns 490870 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27950816ns 490877 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27950986ns 490880 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27951441ns 490888 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27951611ns 490891 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27951896ns 490896 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27952180ns 490901 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27952464ns 490906 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27952919ns 490914 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27953089ns 490917 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27953373ns 490922 1a110850 fd5ff06f jal x0, -44 +27953657ns 490927 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27953942ns 490932 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27954339ns 490939 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27954510ns 490942 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27954965ns 490950 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27955135ns 490953 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27955419ns 490958 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27955703ns 490963 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27955987ns 490968 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27956442ns 490976 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27956613ns 490979 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27956897ns 490984 1a110850 fd5ff06f jal x0, -44 +27957181ns 490989 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27957465ns 490994 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27957863ns 491001 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27958033ns 491004 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27958488ns 491012 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27958659ns 491015 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27958943ns 491020 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27959227ns 491025 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27959511ns 491030 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27959966ns 491038 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27960136ns 491041 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27960420ns 491046 1a110850 fd5ff06f jal x0, -44 +27960705ns 491051 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27960989ns 491056 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27961387ns 491063 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27961557ns 491066 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27962012ns 491074 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27962182ns 491077 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27962466ns 491082 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27962751ns 491087 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27963035ns 491092 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27963489ns 491100 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27963660ns 491103 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27963944ns 491108 1a110850 fd5ff06f jal x0, -44 +27964228ns 491113 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27964512ns 491118 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27964910ns 491125 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27965081ns 491128 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27965535ns 491136 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27965706ns 491139 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27965990ns 491144 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27966274ns 491149 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27966558ns 491154 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27967013ns 491162 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27967183ns 491165 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27967468ns 491170 1a110850 fd5ff06f jal x0, -44 +27967752ns 491175 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27968036ns 491180 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27968434ns 491187 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27968604ns 491190 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27969059ns 491198 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27969229ns 491201 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27969514ns 491206 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27969798ns 491211 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27970082ns 491216 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27970536ns 491224 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27970707ns 491227 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27970991ns 491232 1a110850 fd5ff06f jal x0, -44 +27971275ns 491237 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27971559ns 491242 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27971957ns 491249 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27972128ns 491252 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27972582ns 491260 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27972753ns 491263 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27973037ns 491268 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27973321ns 491273 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27973605ns 491278 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27974060ns 491286 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27974231ns 491289 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27974515ns 491294 1a110850 fd5ff06f jal x0, -44 +27974799ns 491299 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27975083ns 491304 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27975481ns 491311 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27975651ns 491314 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27976106ns 491322 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27976277ns 491325 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27976561ns 491330 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27976845ns 491335 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27977129ns 491340 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27977584ns 491348 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27977754ns 491351 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27978038ns 491356 1a110850 fd5ff06f jal x0, -44 +27978322ns 491361 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27978607ns 491366 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27979004ns 491373 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27979175ns 491376 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27979630ns 491384 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27979800ns 491387 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27980084ns 491392 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27980368ns 491397 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27980653ns 491402 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27981107ns 491410 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27981278ns 491413 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27981562ns 491418 1a110850 fd5ff06f jal x0, -44 +27981846ns 491423 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27982130ns 491428 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27982528ns 491435 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27982699ns 491438 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27983153ns 491446 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27983324ns 491449 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27983608ns 491454 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27983892ns 491459 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27984176ns 491464 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27984631ns 491472 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27984801ns 491475 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27985085ns 491480 1a110850 fd5ff06f jal x0, -44 +27985370ns 491485 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27985654ns 491490 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27986052ns 491497 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27986222ns 491500 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27986677ns 491508 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27986847ns 491511 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27987131ns 491516 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27987416ns 491521 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27987700ns 491526 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27988154ns 491534 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27988325ns 491537 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27988609ns 491542 1a110850 fd5ff06f jal x0, -44 +27988893ns 491547 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27989177ns 491552 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27989575ns 491559 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27989746ns 491562 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27990200ns 491570 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27990371ns 491573 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27990655ns 491578 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27990939ns 491583 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27991223ns 491588 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27991678ns 491596 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27991848ns 491599 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27992133ns 491604 1a110850 fd5ff06f jal x0, -44 +27992417ns 491609 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27992701ns 491614 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27993099ns 491621 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27993269ns 491624 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27993724ns 491632 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27993894ns 491635 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27994179ns 491640 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27994463ns 491645 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27994747ns 491650 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27995202ns 491658 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27995372ns 491661 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27995656ns 491666 1a110850 fd5ff06f jal x0, -44 +27995940ns 491671 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27996225ns 491676 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +27996622ns 491683 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27996793ns 491686 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27997248ns 491694 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +27997418ns 491697 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +27997702ns 491702 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27997986ns 491707 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +27998271ns 491712 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +27998725ns 491720 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +27998896ns 491723 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +27999180ns 491728 1a110850 fd5ff06f jal x0, -44 +27999464ns 491733 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +27999748ns 491738 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28000146ns 491745 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28000316ns 491748 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28000771ns 491756 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28000942ns 491759 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28001226ns 491764 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28001510ns 491769 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28001794ns 491774 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28002249ns 491782 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28002419ns 491785 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28002703ns 491790 1a110850 fd5ff06f jal x0, -44 +28002988ns 491795 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28003272ns 491800 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28003670ns 491807 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28003840ns 491810 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28004295ns 491818 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28004465ns 491821 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28004749ns 491826 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28005034ns 491831 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28005318ns 491836 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28005772ns 491844 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28005943ns 491847 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28006227ns 491852 1a110850 fd5ff06f jal x0, -44 +28006511ns 491857 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28006795ns 491862 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28007193ns 491869 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28007364ns 491872 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28007818ns 491880 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28007989ns 491883 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28008273ns 491888 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28008557ns 491893 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28008841ns 491898 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28009296ns 491906 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28009466ns 491909 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28009751ns 491914 1a110850 fd5ff06f jal x0, -44 +28010035ns 491919 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28010319ns 491924 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28010717ns 491931 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28010887ns 491934 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28011342ns 491942 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28011512ns 491945 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28011797ns 491950 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28012081ns 491955 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28012365ns 491960 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28012819ns 491968 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28012990ns 491971 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28013274ns 491976 1a110850 fd5ff06f jal x0, -44 +28013558ns 491981 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28013842ns 491986 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28014240ns 491993 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28014411ns 491996 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28014865ns 492004 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28015036ns 492007 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28015320ns 492012 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28015604ns 492017 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28015888ns 492022 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28016343ns 492030 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28016514ns 492033 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28016798ns 492038 1a110850 fd5ff06f jal x0, -44 +28017082ns 492043 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28017366ns 492048 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28017764ns 492055 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28017934ns 492058 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28018389ns 492066 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28018560ns 492069 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28018844ns 492074 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28019128ns 492079 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28019412ns 492084 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28019867ns 492092 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28020037ns 492095 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28020321ns 492100 1a110850 fd5ff06f jal x0, -44 +28020605ns 492105 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28020890ns 492110 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28021287ns 492117 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28021458ns 492120 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28021913ns 492128 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28022083ns 492131 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28022367ns 492136 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28022651ns 492141 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28022936ns 492146 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28023390ns 492154 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28023561ns 492157 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28023845ns 492162 1a110850 fd5ff06f jal x0, -44 +28024129ns 492167 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28024413ns 492172 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28024811ns 492179 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28024982ns 492182 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28025436ns 492190 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28025607ns 492193 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28025891ns 492198 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28026175ns 492203 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28026459ns 492208 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28026914ns 492216 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28027084ns 492219 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28027368ns 492224 1a110850 fd5ff06f jal x0, -44 +28027653ns 492229 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28027937ns 492234 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28028335ns 492241 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28028505ns 492244 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28028960ns 492252 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28029130ns 492255 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28029414ns 492260 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28029699ns 492265 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28029983ns 492270 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28030437ns 492278 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28030608ns 492281 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28030892ns 492286 1a110850 fd5ff06f jal x0, -44 +28031176ns 492291 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28031460ns 492296 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28031858ns 492303 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28032029ns 492306 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28032483ns 492314 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28032654ns 492317 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28032938ns 492322 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28033222ns 492327 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28033506ns 492332 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28033961ns 492340 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28034131ns 492343 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28034416ns 492348 1a110850 fd5ff06f jal x0, -44 +28034700ns 492353 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28034984ns 492358 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28035382ns 492365 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28035552ns 492368 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28036007ns 492376 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28036177ns 492379 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28036462ns 492384 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28036746ns 492389 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28037030ns 492394 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28037485ns 492402 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28037655ns 492405 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28037939ns 492410 1a110850 fd5ff06f jal x0, -44 +28038223ns 492415 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28038508ns 492420 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28038905ns 492427 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28039076ns 492430 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28039531ns 492438 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28039701ns 492441 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28039985ns 492446 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28040269ns 492451 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28040554ns 492456 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28041008ns 492464 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28041179ns 492467 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28041463ns 492472 1a110850 fd5ff06f jal x0, -44 +28041747ns 492477 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28042031ns 492482 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28042429ns 492489 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28042599ns 492492 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28043054ns 492500 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28043225ns 492503 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28043509ns 492508 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28043793ns 492513 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28044077ns 492518 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28044532ns 492526 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28044702ns 492529 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28044986ns 492534 1a110850 fd5ff06f jal x0, -44 +28045271ns 492539 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28045555ns 492544 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28045953ns 492551 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28046123ns 492554 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28046578ns 492562 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28046748ns 492565 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28047032ns 492570 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28047317ns 492575 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28047601ns 492580 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28048055ns 492588 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28048226ns 492591 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28048510ns 492596 1a110850 fd5ff06f jal x0, -44 +28048794ns 492601 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28049078ns 492606 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28049476ns 492613 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28049647ns 492616 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28050101ns 492624 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28050272ns 492627 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28050556ns 492632 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28050840ns 492637 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28051124ns 492642 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28051579ns 492650 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28051749ns 492653 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28052034ns 492658 1a110850 fd5ff06f jal x0, -44 +28052318ns 492663 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28052602ns 492668 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28053000ns 492675 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28053170ns 492678 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28053625ns 492686 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28053795ns 492689 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28054080ns 492694 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28054364ns 492699 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28054648ns 492704 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28055103ns 492712 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28055273ns 492715 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28055557ns 492720 1a110850 fd5ff06f jal x0, -44 +28055841ns 492725 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28056125ns 492730 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28056523ns 492737 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28056694ns 492740 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28057148ns 492748 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28057319ns 492751 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28057603ns 492756 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28057887ns 492761 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28058171ns 492766 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28058626ns 492774 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28058797ns 492777 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28059081ns 492782 1a110850 fd5ff06f jal x0, -44 +28059365ns 492787 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28059649ns 492792 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28060047ns 492799 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28060217ns 492802 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28060672ns 492810 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28060843ns 492813 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28061127ns 492818 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28061411ns 492823 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28061695ns 492828 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28062150ns 492836 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28062320ns 492839 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28062604ns 492844 1a110850 fd5ff06f jal x0, -44 +28062888ns 492849 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28063173ns 492854 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28063570ns 492861 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28063741ns 492864 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28064196ns 492872 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28064366ns 492875 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28064650ns 492880 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28064934ns 492885 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28065219ns 492890 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28065673ns 492898 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28065844ns 492901 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28066128ns 492906 1a110850 fd5ff06f jal x0, -44 +28066412ns 492911 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28066696ns 492916 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28067094ns 492923 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28067265ns 492926 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28067719ns 492934 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28067890ns 492937 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28068174ns 492942 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28068458ns 492947 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28068742ns 492952 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28069197ns 492960 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28069367ns 492963 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28069651ns 492968 1a110850 fd5ff06f jal x0, -44 +28069936ns 492973 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28070220ns 492978 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28070618ns 492985 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28070788ns 492988 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28071243ns 492996 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28071413ns 492999 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28071697ns 493004 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28071982ns 493009 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28072266ns 493014 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28072720ns 493022 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28072891ns 493025 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28073175ns 493030 1a110850 fd5ff06f jal x0, -44 +28073459ns 493035 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28073743ns 493040 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28074141ns 493047 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28074312ns 493050 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28074766ns 493058 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28074937ns 493061 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28075221ns 493066 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28075505ns 493071 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28075789ns 493076 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28076244ns 493084 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28076415ns 493087 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28076699ns 493092 1a110850 fd5ff06f jal x0, -44 +28076983ns 493097 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28077267ns 493102 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28077665ns 493109 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28077835ns 493112 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28078290ns 493120 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28078460ns 493123 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28078745ns 493128 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28079029ns 493133 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28079313ns 493138 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28079768ns 493146 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28079938ns 493149 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28080222ns 493154 1a110850 fd5ff06f jal x0, -44 +28080506ns 493159 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28080791ns 493164 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28081188ns 493171 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28081359ns 493174 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28081814ns 493182 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28081984ns 493185 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28082268ns 493190 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28082552ns 493195 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28082837ns 493200 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28083291ns 493208 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28083462ns 493211 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28083746ns 493216 1a110850 fd5ff06f jal x0, -44 +28084030ns 493221 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28084314ns 493226 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28084712ns 493233 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28084882ns 493236 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28085337ns 493244 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28085508ns 493247 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28085792ns 493252 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28086076ns 493257 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28086360ns 493262 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28086815ns 493270 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28086985ns 493273 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28087269ns 493278 1a110850 fd5ff06f jal x0, -44 +28087554ns 493283 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28087838ns 493288 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28088236ns 493295 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28088406ns 493298 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28088861ns 493306 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28089031ns 493309 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28089315ns 493314 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28089600ns 493319 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28089884ns 493324 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28090338ns 493332 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28090509ns 493335 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28090793ns 493340 1a110850 fd5ff06f jal x0, -44 +28091077ns 493345 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28091361ns 493350 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28091759ns 493357 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28091930ns 493360 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28092384ns 493368 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28092555ns 493371 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28092839ns 493376 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28093123ns 493381 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28093407ns 493386 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28093862ns 493394 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28094032ns 493397 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28094317ns 493402 1a110850 fd5ff06f jal x0, -44 +28094601ns 493407 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28094885ns 493412 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28095283ns 493419 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28095453ns 493422 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28095908ns 493430 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28096078ns 493433 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28096363ns 493438 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28096647ns 493443 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28096931ns 493448 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28097386ns 493456 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28097556ns 493459 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28097840ns 493464 1a110850 fd5ff06f jal x0, -44 +28098124ns 493469 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28098408ns 493474 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28098806ns 493481 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28098977ns 493484 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28099431ns 493492 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28099602ns 493495 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28099886ns 493500 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28100170ns 493505 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28100454ns 493510 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28100909ns 493518 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28101080ns 493521 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28101364ns 493526 1a110850 fd5ff06f jal x0, -44 +28101648ns 493531 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28101932ns 493536 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28102330ns 493543 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28102500ns 493546 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28102955ns 493554 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28103126ns 493557 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28103410ns 493562 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28103694ns 493567 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28103978ns 493572 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28104433ns 493580 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28104603ns 493583 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28104887ns 493588 1a110850 fd5ff06f jal x0, -44 +28105171ns 493593 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28105456ns 493598 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28105853ns 493605 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28106024ns 493608 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28106479ns 493616 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28106649ns 493619 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28106933ns 493624 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28107217ns 493629 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28107502ns 493634 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28107956ns 493642 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28108127ns 493645 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28108411ns 493650 1a110850 fd5ff06f jal x0, -44 +28108695ns 493655 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28108979ns 493660 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28109377ns 493667 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28109548ns 493670 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28110002ns 493678 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28110173ns 493681 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28110457ns 493686 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28110741ns 493691 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28111025ns 493696 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28111480ns 493704 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28111650ns 493707 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28111935ns 493712 1a110850 fd5ff06f jal x0, -44 +28112219ns 493717 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28112503ns 493722 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28112901ns 493729 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28113071ns 493732 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28113526ns 493740 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28113696ns 493743 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28113980ns 493748 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28114265ns 493753 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28114549ns 493758 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28115003ns 493766 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28115174ns 493769 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28115458ns 493774 1a110850 fd5ff06f jal x0, -44 +28115742ns 493779 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28116026ns 493784 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28116424ns 493791 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28116595ns 493794 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28117049ns 493802 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28117220ns 493805 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28117504ns 493810 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28117788ns 493815 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28118072ns 493820 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28118527ns 493828 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28118698ns 493831 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28118982ns 493836 1a110850 fd5ff06f jal x0, -44 +28119266ns 493841 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28119550ns 493846 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28119948ns 493853 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28120118ns 493856 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28120573ns 493864 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28120743ns 493867 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28121028ns 493872 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28121312ns 493877 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28121596ns 493882 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28122051ns 493890 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28122221ns 493893 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28122505ns 493898 1a110850 fd5ff06f jal x0, -44 +28122789ns 493903 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28123074ns 493908 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28123471ns 493915 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28123642ns 493918 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28124097ns 493926 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28124267ns 493929 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28124551ns 493934 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28124835ns 493939 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28125120ns 493944 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28125574ns 493952 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28125745ns 493955 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28126029ns 493960 1a110850 fd5ff06f jal x0, -44 +28126313ns 493965 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28126597ns 493970 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28126995ns 493977 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28127165ns 493980 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28127620ns 493988 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28127791ns 493991 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28128075ns 493996 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28128359ns 494001 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28128643ns 494006 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28129098ns 494014 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28129268ns 494017 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28129552ns 494022 1a110850 fd5ff06f jal x0, -44 +28129837ns 494027 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28130121ns 494032 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28130519ns 494039 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28130689ns 494042 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28131144ns 494050 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28131314ns 494053 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28131598ns 494058 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28131883ns 494063 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28132167ns 494068 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28132621ns 494076 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28132792ns 494079 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28133076ns 494084 1a110850 fd5ff06f jal x0, -44 +28133360ns 494089 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28133644ns 494094 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28134042ns 494101 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28134213ns 494104 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28134667ns 494112 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28134838ns 494115 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28135122ns 494120 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28135406ns 494125 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28135690ns 494130 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28136145ns 494138 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28136315ns 494141 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28136600ns 494146 1a110850 fd5ff06f jal x0, -44 +28136884ns 494151 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28137168ns 494156 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28137566ns 494163 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28137736ns 494166 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28138191ns 494174 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28138361ns 494177 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28138646ns 494182 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28138930ns 494187 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28139214ns 494192 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28139669ns 494200 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28139839ns 494203 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28140123ns 494208 1a110850 fd5ff06f jal x0, -44 +28140407ns 494213 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28140691ns 494218 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28141089ns 494225 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28141260ns 494228 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28141714ns 494236 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28141885ns 494239 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28142169ns 494244 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28142453ns 494249 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28142737ns 494254 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28143192ns 494262 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28143363ns 494265 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28143647ns 494270 1a110850 fd5ff06f jal x0, -44 +28143931ns 494275 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28144215ns 494280 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28144613ns 494287 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28144783ns 494290 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28145238ns 494298 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28145409ns 494301 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28145693ns 494306 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28145977ns 494311 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28146261ns 494316 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28146716ns 494324 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28146886ns 494327 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28147170ns 494332 1a110850 fd5ff06f jal x0, -44 +28147455ns 494337 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28147739ns 494342 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28148136ns 494349 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28148307ns 494352 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28148762ns 494360 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28148932ns 494363 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28149216ns 494368 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28149500ns 494373 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28149785ns 494378 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28150239ns 494386 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28150410ns 494389 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28150694ns 494394 1a110850 fd5ff06f jal x0, -44 +28150978ns 494399 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28151262ns 494404 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28151660ns 494411 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28151831ns 494414 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28152285ns 494422 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28152456ns 494425 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28152740ns 494430 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28153024ns 494435 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28153308ns 494440 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28153763ns 494448 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28153933ns 494451 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28154218ns 494456 1a110850 fd5ff06f jal x0, -44 +28154502ns 494461 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28154786ns 494466 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28155184ns 494473 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28155354ns 494476 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28155809ns 494484 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28155979ns 494487 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28156263ns 494492 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28156548ns 494497 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28156832ns 494502 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28157286ns 494510 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28157457ns 494513 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28157741ns 494518 1a110850 fd5ff06f jal x0, -44 +28158025ns 494523 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28158309ns 494528 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28158707ns 494535 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28158878ns 494538 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28159332ns 494546 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28159503ns 494549 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28159787ns 494554 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28160071ns 494559 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28160355ns 494564 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28160810ns 494572 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28160981ns 494575 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28161265ns 494580 1a110850 fd5ff06f jal x0, -44 +28161549ns 494585 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28161833ns 494590 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28162231ns 494597 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28162401ns 494600 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28162856ns 494608 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28163026ns 494611 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28163311ns 494616 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28163595ns 494621 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28163879ns 494626 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28164334ns 494634 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28164504ns 494637 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28164788ns 494642 1a110850 fd5ff06f jal x0, -44 +28165072ns 494647 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28165357ns 494652 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28165754ns 494659 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28165925ns 494662 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28166380ns 494670 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28166550ns 494673 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28166834ns 494678 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28167118ns 494683 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28167403ns 494688 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28167857ns 494696 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28168028ns 494699 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28168312ns 494704 1a110850 fd5ff06f jal x0, -44 +28168596ns 494709 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28168880ns 494714 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28169278ns 494721 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28169448ns 494724 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28169903ns 494732 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28170074ns 494735 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28170358ns 494740 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28170642ns 494745 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28170926ns 494750 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28171381ns 494758 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28171551ns 494761 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28171835ns 494766 1a110850 fd5ff06f jal x0, -44 +28172120ns 494771 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28172404ns 494776 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28172802ns 494783 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28172972ns 494786 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28173427ns 494794 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28173597ns 494797 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28173881ns 494802 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28174166ns 494807 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28174450ns 494812 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28174904ns 494820 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28175075ns 494823 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28175359ns 494828 1a110850 fd5ff06f jal x0, -44 +28175643ns 494833 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28175927ns 494838 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28176325ns 494845 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28176496ns 494848 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28176950ns 494856 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28177121ns 494859 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28177405ns 494864 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28177689ns 494869 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28177973ns 494874 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28178428ns 494882 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28178598ns 494885 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28178883ns 494890 1a110850 fd5ff06f jal x0, -44 +28179167ns 494895 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28179451ns 494900 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28179849ns 494907 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28180019ns 494910 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28180474ns 494918 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28180644ns 494921 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28180929ns 494926 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28181213ns 494931 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28181497ns 494936 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28181952ns 494944 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28182122ns 494947 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28182406ns 494952 1a110850 fd5ff06f jal x0, -44 +28182690ns 494957 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28182975ns 494962 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28183372ns 494969 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28183543ns 494972 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28183997ns 494980 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28184168ns 494983 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28184452ns 494988 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28184736ns 494993 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28185020ns 494998 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28185475ns 495006 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28185646ns 495009 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28185930ns 495014 1a110850 fd5ff06f jal x0, -44 +28186214ns 495019 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28186498ns 495024 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28186896ns 495031 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28187066ns 495034 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28187521ns 495042 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28187692ns 495045 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28187976ns 495050 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28188260ns 495055 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28188544ns 495060 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28188999ns 495068 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28189169ns 495071 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28189453ns 495076 1a110850 fd5ff06f jal x0, -44 +28189738ns 495081 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28190022ns 495086 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28190419ns 495093 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28190590ns 495096 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28191045ns 495104 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28191215ns 495107 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28191499ns 495112 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28191783ns 495117 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28192068ns 495122 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28192522ns 495130 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28192693ns 495133 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28192977ns 495138 1a110850 fd5ff06f jal x0, -44 +28193261ns 495143 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28193545ns 495148 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28193943ns 495155 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28194114ns 495158 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28194568ns 495166 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28194739ns 495169 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28195023ns 495174 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28195307ns 495179 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28195591ns 495184 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28196046ns 495192 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28196216ns 495195 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28196501ns 495200 1a110850 fd5ff06f jal x0, -44 +28196785ns 495205 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28197069ns 495210 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28197467ns 495217 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28197637ns 495220 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28198092ns 495228 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28198262ns 495231 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28198546ns 495236 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28198831ns 495241 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28199115ns 495246 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28199569ns 495254 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28199740ns 495257 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28200024ns 495262 1a110850 fd5ff06f jal x0, -44 +28200308ns 495267 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28200592ns 495272 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28200990ns 495279 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28201161ns 495282 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28201615ns 495290 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28201786ns 495293 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28202070ns 495298 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28202354ns 495303 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28202638ns 495308 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28203093ns 495316 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28203264ns 495319 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28203548ns 495324 1a110850 fd5ff06f jal x0, -44 +28203832ns 495329 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28204116ns 495334 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28204514ns 495341 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28204684ns 495344 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28205139ns 495352 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28205309ns 495355 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28205594ns 495360 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28205878ns 495365 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28206162ns 495370 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28206617ns 495378 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28206787ns 495381 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28207071ns 495386 1a110850 fd5ff06f jal x0, -44 +28207355ns 495391 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28207640ns 495396 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28208037ns 495403 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28208208ns 495406 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28208663ns 495414 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28208833ns 495417 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28209117ns 495422 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28209401ns 495427 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28209686ns 495432 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28210140ns 495440 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28210311ns 495443 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28210595ns 495448 1a110850 fd5ff06f jal x0, -44 +28210879ns 495453 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28211163ns 495458 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28211561ns 495465 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28211731ns 495468 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28212186ns 495476 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28212357ns 495479 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28212641ns 495484 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28212925ns 495489 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28213209ns 495494 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28213664ns 495502 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28213834ns 495505 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28214118ns 495510 1a110850 fd5ff06f jal x0, -44 +28214403ns 495515 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28214687ns 495520 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28215085ns 495527 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28215255ns 495530 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28215710ns 495538 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28215880ns 495541 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28216164ns 495546 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28216449ns 495551 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28216733ns 495556 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28217187ns 495564 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28217358ns 495567 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28217642ns 495572 1a110850 fd5ff06f jal x0, -44 +28217926ns 495577 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28218210ns 495582 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28218608ns 495589 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28218779ns 495592 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28219233ns 495600 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28219404ns 495603 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28219688ns 495608 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28219972ns 495613 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28220256ns 495618 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28220711ns 495626 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28220881ns 495629 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28221166ns 495634 1a110850 fd5ff06f jal x0, -44 +28221450ns 495639 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28221734ns 495644 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28222132ns 495651 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28222302ns 495654 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28222757ns 495662 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28222927ns 495665 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28223212ns 495670 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28223496ns 495675 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28223780ns 495680 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28224235ns 495688 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28224405ns 495691 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28224689ns 495696 1a110850 fd5ff06f jal x0, -44 +28224973ns 495701 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28225258ns 495706 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28225655ns 495713 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28225826ns 495716 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28226280ns 495724 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28226451ns 495727 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28226735ns 495732 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28227019ns 495737 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28227303ns 495742 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28227758ns 495750 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28227929ns 495753 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28228213ns 495758 1a110850 fd5ff06f jal x0, -44 +28228497ns 495763 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28228781ns 495768 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28229179ns 495775 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28229349ns 495778 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28229804ns 495786 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28229975ns 495789 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28230259ns 495794 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28230543ns 495799 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28230827ns 495804 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28231282ns 495812 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28231452ns 495815 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28231736ns 495820 1a110850 fd5ff06f jal x0, -44 +28232021ns 495825 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28232305ns 495830 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28232703ns 495837 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28232873ns 495840 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28233328ns 495848 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28233498ns 495851 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28233782ns 495856 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28234066ns 495861 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28234351ns 495866 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28234805ns 495874 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28234976ns 495877 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28235260ns 495882 1a110850 fd5ff06f jal x0, -44 +28235544ns 495887 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28235828ns 495892 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28236226ns 495899 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28236397ns 495902 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28236851ns 495910 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28237022ns 495913 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28237306ns 495918 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28237590ns 495923 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28237874ns 495928 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28238329ns 495936 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28238499ns 495939 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28238784ns 495944 1a110850 fd5ff06f jal x0, -44 +28239068ns 495949 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28239352ns 495954 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28239750ns 495961 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28239920ns 495964 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28240375ns 495972 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28240545ns 495975 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28240829ns 495980 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28241114ns 495985 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28241398ns 495990 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28241852ns 495998 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28242023ns 496001 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28242307ns 496006 1a110850 fd5ff06f jal x0, -44 +28242591ns 496011 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28242875ns 496016 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28243273ns 496023 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28243444ns 496026 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28243898ns 496034 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28244069ns 496037 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28244353ns 496042 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28244637ns 496047 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28244921ns 496052 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28245376ns 496060 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28245547ns 496063 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28245831ns 496068 1a110850 fd5ff06f jal x0, -44 +28246115ns 496073 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28246399ns 496078 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28246797ns 496085 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28246967ns 496088 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28247422ns 496096 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28247592ns 496099 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28247877ns 496104 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28248161ns 496109 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28248445ns 496114 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28248900ns 496122 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28249070ns 496125 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28249354ns 496130 1a110850 fd5ff06f jal x0, -44 +28249638ns 496135 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28249923ns 496140 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28250320ns 496147 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28250491ns 496150 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28250946ns 496158 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28251116ns 496161 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28251400ns 496166 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28251684ns 496171 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28251969ns 496176 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28252423ns 496184 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28252594ns 496187 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28252878ns 496192 1a110850 fd5ff06f jal x0, -44 +28253162ns 496197 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28253446ns 496202 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28253844ns 496209 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28254015ns 496212 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28254469ns 496220 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28254640ns 496223 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28254924ns 496228 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28255208ns 496233 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28255492ns 496238 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28255947ns 496246 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28256117ns 496249 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28256401ns 496254 1a110850 fd5ff06f jal x0, -44 +28256686ns 496259 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28256970ns 496264 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28257368ns 496271 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28257538ns 496274 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28257993ns 496282 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28258163ns 496285 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28258447ns 496290 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28258732ns 496295 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28259016ns 496300 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28259470ns 496308 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28259641ns 496311 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28259925ns 496316 1a110850 fd5ff06f jal x0, -44 +28260209ns 496321 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28260493ns 496326 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28260891ns 496333 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28261062ns 496336 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28261516ns 496344 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28261687ns 496347 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28261971ns 496352 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28262255ns 496357 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28262539ns 496362 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28262994ns 496370 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28263164ns 496373 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28263449ns 496378 1a110850 fd5ff06f jal x0, -44 +28263733ns 496383 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28264017ns 496388 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28264415ns 496395 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28264585ns 496398 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28265040ns 496406 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28265210ns 496409 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28265495ns 496414 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28265779ns 496419 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28266063ns 496424 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28266518ns 496432 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28266688ns 496435 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28266972ns 496440 1a110850 fd5ff06f jal x0, -44 +28267256ns 496445 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28267541ns 496450 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28267938ns 496457 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28268109ns 496460 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28268563ns 496468 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28268734ns 496471 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28269018ns 496476 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28269302ns 496481 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28269586ns 496486 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28270041ns 496494 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28270212ns 496497 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28270496ns 496502 1a110850 fd5ff06f jal x0, -44 +28270780ns 496507 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28271064ns 496512 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28271462ns 496519 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28271632ns 496522 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28272087ns 496530 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28272258ns 496533 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28272542ns 496538 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28272826ns 496543 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28273110ns 496548 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28273565ns 496556 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28273735ns 496559 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28274019ns 496564 1a110850 fd5ff06f jal x0, -44 +28274304ns 496569 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28274588ns 496574 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28274986ns 496581 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28275156ns 496584 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28275611ns 496592 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28275781ns 496595 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28276065ns 496600 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28276349ns 496605 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28276634ns 496610 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28277088ns 496618 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28277259ns 496621 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28277543ns 496626 1a110850 fd5ff06f jal x0, -44 +28277827ns 496631 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28278111ns 496636 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28278509ns 496643 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28278680ns 496646 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28279134ns 496654 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28279305ns 496657 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28279589ns 496662 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28279873ns 496667 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28280157ns 496672 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28280612ns 496680 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28280782ns 496683 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28281067ns 496688 1a110850 fd5ff06f jal x0, -44 +28281351ns 496693 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28281635ns 496698 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28282033ns 496705 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28282203ns 496708 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28282658ns 496716 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28282828ns 496719 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28283112ns 496724 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28283397ns 496729 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28283681ns 496734 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28284135ns 496742 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28284306ns 496745 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28284590ns 496750 1a110850 fd5ff06f jal x0, -44 +28284874ns 496755 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28285158ns 496760 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28285556ns 496767 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28285727ns 496770 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28286181ns 496778 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28286352ns 496781 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28286636ns 496786 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28286920ns 496791 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28287204ns 496796 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28287659ns 496804 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28287830ns 496807 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28288114ns 496812 1a110850 fd5ff06f jal x0, -44 +28288398ns 496817 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28288682ns 496822 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28289080ns 496829 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28289250ns 496832 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28289705ns 496840 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28289875ns 496843 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28290160ns 496848 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28290444ns 496853 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28290728ns 496858 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28291183ns 496866 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28291353ns 496869 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28291637ns 496874 1a110850 fd5ff06f jal x0, -44 +28291921ns 496879 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28292206ns 496884 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28292603ns 496891 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28292774ns 496894 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28293229ns 496902 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28293399ns 496905 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28293683ns 496910 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28293967ns 496915 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28294252ns 496920 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28294706ns 496928 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28294877ns 496931 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28295161ns 496936 1a110850 fd5ff06f jal x0, -44 +28295445ns 496941 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28295729ns 496946 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28296127ns 496953 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28296298ns 496956 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28296752ns 496964 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28296923ns 496967 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28297207ns 496972 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28297491ns 496977 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28297775ns 496982 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28298230ns 496990 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28298400ns 496993 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28298684ns 496998 1a110850 fd5ff06f jal x0, -44 +28298969ns 497003 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28299253ns 497008 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28299651ns 497015 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28299821ns 497018 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28300276ns 497026 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28300446ns 497029 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28300730ns 497034 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28301015ns 497039 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28301299ns 497044 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28301753ns 497052 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28301924ns 497055 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28302208ns 497060 1a110850 fd5ff06f jal x0, -44 +28302492ns 497065 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28302776ns 497070 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28303174ns 497077 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28303345ns 497080 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28303799ns 497088 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28303970ns 497091 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28304254ns 497096 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28304538ns 497101 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28304822ns 497106 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28305277ns 497114 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28305447ns 497117 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28305732ns 497122 1a110850 fd5ff06f jal x0, -44 +28306016ns 497127 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28306300ns 497132 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28306698ns 497139 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28306868ns 497142 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28307323ns 497150 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28307493ns 497153 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28307778ns 497158 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28308062ns 497163 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28308346ns 497168 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28308801ns 497176 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28308971ns 497179 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28309255ns 497184 1a110850 fd5ff06f jal x0, -44 +28309539ns 497189 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28309824ns 497194 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28310221ns 497201 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28310392ns 497204 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28310847ns 497212 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28311017ns 497215 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28311301ns 497220 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28311585ns 497225 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28311869ns 497230 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28312324ns 497238 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28312495ns 497241 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28312779ns 497246 1a110850 fd5ff06f jal x0, -44 +28313063ns 497251 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28313347ns 497256 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28313745ns 497263 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28313915ns 497266 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28314370ns 497274 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28314541ns 497277 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28314825ns 497282 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28315109ns 497287 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28315393ns 497292 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28315848ns 497300 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28316018ns 497303 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28316302ns 497308 1a110850 fd5ff06f jal x0, -44 +28316587ns 497313 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28316871ns 497318 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28317269ns 497325 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28317439ns 497328 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28317894ns 497336 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28318064ns 497339 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28318348ns 497344 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28318632ns 497349 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28318917ns 497354 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28319371ns 497362 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28319542ns 497365 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28319826ns 497370 1a110850 fd5ff06f jal x0, -44 +28320110ns 497375 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28320394ns 497380 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28320792ns 497387 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28320963ns 497390 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28321417ns 497398 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28321588ns 497401 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28321872ns 497406 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28322156ns 497411 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28322440ns 497416 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28322895ns 497424 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28323065ns 497427 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28323350ns 497432 1a110850 fd5ff06f jal x0, -44 +28323634ns 497437 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28323918ns 497442 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28324316ns 497449 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28324486ns 497452 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28324941ns 497460 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28325111ns 497463 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28325395ns 497468 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28325680ns 497473 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28325964ns 497478 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28326418ns 497486 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28326589ns 497489 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28326873ns 497494 1a110850 fd5ff06f jal x0, -44 +28327157ns 497499 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28327441ns 497504 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28327839ns 497511 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28328010ns 497514 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28328464ns 497522 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28328635ns 497525 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28328919ns 497530 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28329203ns 497535 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28329487ns 497540 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28329942ns 497548 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28330113ns 497551 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28330397ns 497556 1a110850 fd5ff06f jal x0, -44 +28330681ns 497561 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28330965ns 497566 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28331363ns 497573 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28331533ns 497576 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28331988ns 497584 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28332159ns 497587 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28332443ns 497592 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28332727ns 497597 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28333011ns 497602 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28333466ns 497610 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28333636ns 497613 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28333920ns 497618 1a110850 fd5ff06f jal x0, -44 +28334204ns 497623 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28334489ns 497628 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28334886ns 497635 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28335057ns 497638 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28335512ns 497646 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28335682ns 497649 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28335966ns 497654 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28336250ns 497659 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28336535ns 497664 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28336989ns 497672 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28337160ns 497675 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28337444ns 497680 1a110850 fd5ff06f jal x0, -44 +28337728ns 497685 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28338012ns 497690 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28338410ns 497697 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28338581ns 497700 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28339035ns 497708 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28339206ns 497711 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28339490ns 497716 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28339774ns 497721 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28340058ns 497726 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28340513ns 497734 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28340683ns 497737 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28340967ns 497742 1a110850 fd5ff06f jal x0, -44 +28341252ns 497747 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28341536ns 497752 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28341934ns 497759 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28342104ns 497762 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28342559ns 497770 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28342729ns 497773 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28343013ns 497778 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28343298ns 497783 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28343582ns 497788 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28344036ns 497796 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28344207ns 497799 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28344491ns 497804 1a110850 fd5ff06f jal x0, -44 +28344775ns 497809 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28345059ns 497814 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28345457ns 497821 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28345628ns 497824 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28346082ns 497832 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28346253ns 497835 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28346537ns 497840 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28346821ns 497845 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28347105ns 497850 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28347560ns 497858 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28347730ns 497861 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28348015ns 497866 1a110850 fd5ff06f jal x0, -44 +28348299ns 497871 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28348583ns 497876 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28348981ns 497883 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28349151ns 497886 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28349606ns 497894 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28349776ns 497897 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28350061ns 497902 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28350345ns 497907 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28350629ns 497912 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28351084ns 497920 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28351254ns 497923 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28351538ns 497928 1a110850 fd5ff06f jal x0, -44 +28351822ns 497933 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28352107ns 497938 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28352504ns 497945 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28352675ns 497948 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28353130ns 497956 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28353300ns 497959 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28353584ns 497964 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28353868ns 497969 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28354152ns 497974 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28354607ns 497982 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28354778ns 497985 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28355062ns 497990 1a110850 fd5ff06f jal x0, -44 +28355346ns 497995 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28355630ns 498000 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28356028ns 498007 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28356198ns 498010 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28356653ns 498018 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28356824ns 498021 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28357108ns 498026 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28357392ns 498031 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28357676ns 498036 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28358131ns 498044 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28358301ns 498047 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28358585ns 498052 1a110850 fd5ff06f jal x0, -44 +28358870ns 498057 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28359154ns 498062 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28359552ns 498069 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28359722ns 498072 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28360177ns 498080 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28360347ns 498083 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28360631ns 498088 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28360915ns 498093 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28361200ns 498098 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28361654ns 498106 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28361825ns 498109 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28362109ns 498114 1a110850 fd5ff06f jal x0, -44 +28362393ns 498119 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28362677ns 498124 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28363075ns 498131 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28363246ns 498134 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28363700ns 498142 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28363871ns 498145 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28364155ns 498150 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28364439ns 498155 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28364723ns 498160 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28365178ns 498168 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28365348ns 498171 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28365633ns 498176 1a110850 fd5ff06f jal x0, -44 +28365917ns 498181 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28366201ns 498186 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28366599ns 498193 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28366769ns 498196 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28367224ns 498204 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28367394ns 498207 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28367679ns 498212 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28367963ns 498217 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28368247ns 498222 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28368701ns 498230 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28368872ns 498233 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28369156ns 498238 1a110850 fd5ff06f jal x0, -44 +28369440ns 498243 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28369724ns 498248 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28370122ns 498255 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28370293ns 498258 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28370747ns 498266 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28370918ns 498269 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28371202ns 498274 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28371486ns 498279 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28371770ns 498284 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28372225ns 498292 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28372396ns 498295 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28372680ns 498300 1a110850 fd5ff06f jal x0, -44 +28372964ns 498305 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28373248ns 498310 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28373646ns 498317 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28373816ns 498320 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28374271ns 498328 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28374442ns 498331 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28374726ns 498336 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28375010ns 498341 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28375294ns 498346 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28375749ns 498354 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28375919ns 498357 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28376203ns 498362 1a110850 fd5ff06f jal x0, -44 +28376487ns 498367 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28376772ns 498372 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28377169ns 498379 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28377340ns 498382 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28377795ns 498390 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28377965ns 498393 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28378249ns 498398 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28378533ns 498403 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28378818ns 498408 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28379272ns 498416 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28379443ns 498419 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28379727ns 498424 1a110850 fd5ff06f jal x0, -44 +28380011ns 498429 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28380295ns 498434 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28380693ns 498441 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28380864ns 498444 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28381318ns 498452 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28381489ns 498455 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28381773ns 498460 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28382057ns 498465 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28382341ns 498470 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28382796ns 498478 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28382966ns 498481 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28383250ns 498486 1a110850 fd5ff06f jal x0, -44 +28383535ns 498491 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28383819ns 498496 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28384217ns 498503 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28384387ns 498506 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28384842ns 498514 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28385012ns 498517 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28385296ns 498522 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28385581ns 498527 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28385865ns 498532 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28386319ns 498540 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28386490ns 498543 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28386774ns 498548 1a110850 fd5ff06f jal x0, -44 +28387058ns 498553 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28387342ns 498558 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28387740ns 498565 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28387911ns 498568 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28388365ns 498576 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28388536ns 498579 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28388820ns 498584 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28389104ns 498589 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28389388ns 498594 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28389843ns 498602 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28390013ns 498605 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28390298ns 498610 1a110850 fd5ff06f jal x0, -44 +28390582ns 498615 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28390866ns 498620 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28391264ns 498627 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28391434ns 498630 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28391889ns 498638 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28392059ns 498641 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28392344ns 498646 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28392628ns 498651 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28392912ns 498656 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28393367ns 498664 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28393537ns 498667 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28393821ns 498672 1a110850 fd5ff06f jal x0, -44 +28394105ns 498677 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28394390ns 498682 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28394787ns 498689 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28394958ns 498692 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28395413ns 498700 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28395583ns 498703 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28395867ns 498708 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28396151ns 498713 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28396435ns 498718 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28396890ns 498726 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28397061ns 498729 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28397345ns 498734 1a110850 fd5ff06f jal x0, -44 +28397629ns 498739 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28397913ns 498744 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28398311ns 498751 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28398481ns 498754 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28398936ns 498762 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28399107ns 498765 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28399391ns 498770 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28399675ns 498775 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28399959ns 498780 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28400414ns 498788 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28400584ns 498791 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28400868ns 498796 1a110850 fd5ff06f jal x0, -44 +28401153ns 498801 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28401437ns 498806 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28401835ns 498813 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28402005ns 498816 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28402460ns 498824 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28402630ns 498827 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28402914ns 498832 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28403199ns 498837 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28403483ns 498842 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28403937ns 498850 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28404108ns 498853 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28404392ns 498858 1a110850 fd5ff06f jal x0, -44 +28404676ns 498863 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28404960ns 498868 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28405358ns 498875 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28405529ns 498878 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28405983ns 498886 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28406154ns 498889 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28406438ns 498894 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28406722ns 498899 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28407006ns 498904 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28407461ns 498912 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28407631ns 498915 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28407916ns 498920 1a110850 fd5ff06f jal x0, -44 +28408200ns 498925 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28408484ns 498930 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28408882ns 498937 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28409052ns 498940 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28409507ns 498948 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28409677ns 498951 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28409962ns 498956 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28410246ns 498961 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28410530ns 498966 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28410984ns 498974 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28411155ns 498977 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28411439ns 498982 1a110850 fd5ff06f jal x0, -44 +28411723ns 498987 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28412007ns 498992 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28412405ns 498999 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28412576ns 499002 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28413030ns 499010 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28413201ns 499013 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28413485ns 499018 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28413769ns 499023 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28414053ns 499028 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28414508ns 499036 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28414679ns 499039 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28414963ns 499044 1a110850 fd5ff06f jal x0, -44 +28415247ns 499049 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28415531ns 499054 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28415929ns 499061 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28416099ns 499064 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28416554ns 499072 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28416725ns 499075 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28417009ns 499080 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28417293ns 499085 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28417577ns 499090 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28418032ns 499098 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28418202ns 499101 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28418486ns 499106 1a110850 fd5ff06f jal x0, -44 +28418770ns 499111 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28419055ns 499116 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28419452ns 499123 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28419623ns 499126 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28420078ns 499134 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28420248ns 499137 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28420532ns 499142 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28420816ns 499147 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28421101ns 499152 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28421555ns 499160 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28421726ns 499163 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28422010ns 499168 1a110850 fd5ff06f jal x0, -44 +28422294ns 499173 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28422578ns 499178 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28422976ns 499185 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28423147ns 499188 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28423601ns 499196 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28423772ns 499199 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28424056ns 499204 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28424340ns 499209 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28424624ns 499214 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28425079ns 499222 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28425249ns 499225 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28425533ns 499230 1a110850 fd5ff06f jal x0, -44 +28425818ns 499235 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28426102ns 499240 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28426500ns 499247 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28426670ns 499250 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28427125ns 499258 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28427295ns 499261 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28427579ns 499266 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28427864ns 499271 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28428148ns 499276 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28428602ns 499284 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28428773ns 499287 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28429057ns 499292 1a110850 fd5ff06f jal x0, -44 +28429341ns 499297 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28429625ns 499302 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28430023ns 499309 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28430194ns 499312 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28430648ns 499320 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28430819ns 499323 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28431103ns 499328 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28431387ns 499333 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28431671ns 499338 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28432126ns 499346 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28432296ns 499349 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28432581ns 499354 1a110850 fd5ff06f jal x0, -44 +28432865ns 499359 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28433149ns 499364 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28433547ns 499371 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28433717ns 499374 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28434172ns 499382 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28434342ns 499385 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28434627ns 499390 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28434911ns 499395 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28435195ns 499400 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28435650ns 499408 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28435820ns 499411 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28436104ns 499416 1a110850 fd5ff06f jal x0, -44 +28436388ns 499421 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28436673ns 499426 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28437070ns 499433 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28437241ns 499436 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28437696ns 499444 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28437866ns 499447 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28438150ns 499452 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28438434ns 499457 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28438719ns 499462 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28439173ns 499470 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28439344ns 499473 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28439628ns 499478 1a110850 fd5ff06f jal x0, -44 +28439912ns 499483 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28440196ns 499488 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28440594ns 499495 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28440764ns 499498 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28441219ns 499506 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28441390ns 499509 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28441674ns 499514 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28441958ns 499519 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28442242ns 499524 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28442697ns 499532 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28442867ns 499535 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28443151ns 499540 1a110850 fd5ff06f jal x0, -44 +28443436ns 499545 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28443720ns 499550 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28444118ns 499557 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28444288ns 499560 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28444743ns 499568 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28444913ns 499571 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28445197ns 499576 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28445482ns 499581 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28445766ns 499586 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28446220ns 499594 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28446391ns 499597 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28446675ns 499602 1a110850 fd5ff06f jal x0, -44 +28446959ns 499607 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28447243ns 499612 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28447641ns 499619 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28447812ns 499622 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28448266ns 499630 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28448437ns 499633 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28448721ns 499638 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28449005ns 499643 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28449289ns 499648 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28449744ns 499656 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28449914ns 499659 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28450199ns 499664 1a110850 fd5ff06f jal x0, -44 +28450483ns 499669 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28450767ns 499674 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28451165ns 499681 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28451335ns 499684 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28451790ns 499692 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28451960ns 499695 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28452245ns 499700 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28452529ns 499705 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28452813ns 499710 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28453267ns 499718 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28453438ns 499721 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28453722ns 499726 1a110850 fd5ff06f jal x0, -44 +28454006ns 499731 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28454290ns 499736 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28454688ns 499743 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28454859ns 499746 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28455313ns 499754 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28455484ns 499757 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28455768ns 499762 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28456052ns 499767 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28456336ns 499772 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28456791ns 499780 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28456962ns 499783 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28457246ns 499788 1a110850 fd5ff06f jal x0, -44 +28457530ns 499793 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28457814ns 499798 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28458212ns 499805 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28458382ns 499808 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28458837ns 499816 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28459008ns 499819 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28459292ns 499824 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28459576ns 499829 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28459860ns 499834 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28460315ns 499842 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28460485ns 499845 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28460769ns 499850 1a110850 fd5ff06f jal x0, -44 +28461053ns 499855 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28461338ns 499860 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28461735ns 499867 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28461906ns 499870 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28462361ns 499878 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28462531ns 499881 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28462815ns 499886 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28463099ns 499891 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28463384ns 499896 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28463838ns 499904 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28464009ns 499907 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28464293ns 499912 1a110850 fd5ff06f jal x0, -44 +28464577ns 499917 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28464861ns 499922 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28465259ns 499929 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28465430ns 499932 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28465884ns 499940 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28466055ns 499943 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28466339ns 499948 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28466623ns 499953 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28466907ns 499958 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28467362ns 499966 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28467532ns 499969 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28467816ns 499974 1a110850 fd5ff06f jal x0, -44 +28468101ns 499979 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28468385ns 499984 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28468783ns 499991 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28468953ns 499994 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28469408ns 500002 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28469578ns 500005 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28469862ns 500010 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28470147ns 500015 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28470431ns 500020 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28470885ns 500028 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28471056ns 500031 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28471340ns 500036 1a110850 fd5ff06f jal x0, -44 +28471624ns 500041 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28471908ns 500046 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28472306ns 500053 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28472477ns 500056 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28472931ns 500064 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28473102ns 500067 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28473386ns 500072 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28473670ns 500077 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28473954ns 500082 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28474409ns 500090 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28474579ns 500093 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28474864ns 500098 1a110850 fd5ff06f jal x0, -44 +28475148ns 500103 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28475432ns 500108 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28475830ns 500115 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28476000ns 500118 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28476455ns 500126 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28476625ns 500129 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28476910ns 500134 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28477194ns 500139 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28477478ns 500144 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28477933ns 500152 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28478103ns 500155 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28478387ns 500160 1a110850 fd5ff06f jal x0, -44 +28478671ns 500165 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28478956ns 500170 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28479353ns 500177 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28479524ns 500180 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28479979ns 500188 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28480149ns 500191 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28480433ns 500196 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28480717ns 500201 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28481002ns 500206 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28481456ns 500214 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28481627ns 500217 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28481911ns 500222 1a110850 fd5ff06f jal x0, -44 +28482195ns 500227 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28482479ns 500232 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28482877ns 500239 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28483047ns 500242 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28483502ns 500250 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28483673ns 500253 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28483957ns 500258 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28484241ns 500263 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28484525ns 500268 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28484980ns 500276 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28485150ns 500279 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28485434ns 500284 1a110850 fd5ff06f jal x0, -44 +28485719ns 500289 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28486003ns 500294 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28486401ns 500301 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28486571ns 500304 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28487026ns 500312 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28487196ns 500315 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28487480ns 500320 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28487765ns 500325 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28488049ns 500330 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28488503ns 500338 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28488674ns 500341 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28488958ns 500346 1a110850 fd5ff06f jal x0, -44 +28489242ns 500351 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28489526ns 500356 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28489924ns 500363 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28490095ns 500366 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28490549ns 500374 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28490720ns 500377 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28491004ns 500382 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28491288ns 500387 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28491572ns 500392 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28492027ns 500400 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28492197ns 500403 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28492482ns 500408 1a110850 fd5ff06f jal x0, -44 +28492766ns 500413 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28493050ns 500418 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28493448ns 500425 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28493618ns 500428 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28494073ns 500436 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28494243ns 500439 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28494528ns 500444 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28494812ns 500449 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28495096ns 500454 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28495551ns 500462 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28495721ns 500465 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28496005ns 500470 1a110850 fd5ff06f jal x0, -44 +28496289ns 500475 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28496573ns 500480 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28496971ns 500487 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28497142ns 500490 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28497596ns 500498 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28497767ns 500501 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28498051ns 500506 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28498335ns 500511 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28498619ns 500516 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28499074ns 500524 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28499245ns 500527 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28499529ns 500532 1a110850 fd5ff06f jal x0, -44 +28499813ns 500537 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28500097ns 500542 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28500495ns 500549 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28500665ns 500552 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28501120ns 500560 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28501291ns 500563 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28501575ns 500568 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28501859ns 500573 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28502143ns 500578 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28502598ns 500586 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28502768ns 500589 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28503052ns 500594 1a110850 fd5ff06f jal x0, -44 +28503336ns 500599 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28503621ns 500604 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28504018ns 500611 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28504189ns 500614 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28504644ns 500622 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28504814ns 500625 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28505098ns 500630 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28505382ns 500635 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28505667ns 500640 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28506121ns 500648 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28506292ns 500651 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28506576ns 500656 1a110850 fd5ff06f jal x0, -44 +28506860ns 500661 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28507144ns 500666 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28507542ns 500673 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28507713ns 500676 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28508167ns 500684 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28508338ns 500687 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28508622ns 500692 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28508906ns 500697 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28509190ns 500702 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28509645ns 500710 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28509815ns 500713 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28510099ns 500718 1a110850 fd5ff06f jal x0, -44 +28510384ns 500723 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28510668ns 500728 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28511066ns 500735 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28511236ns 500738 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28511691ns 500746 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28511861ns 500749 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28512145ns 500754 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28512430ns 500759 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28512714ns 500764 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28513168ns 500772 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28513339ns 500775 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28513623ns 500780 1a110850 fd5ff06f jal x0, -44 +28513907ns 500785 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28514191ns 500790 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28514589ns 500797 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28514760ns 500800 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28515214ns 500808 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28515385ns 500811 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28515669ns 500816 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28515953ns 500821 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28516237ns 500826 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28516692ns 500834 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28516863ns 500837 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28517147ns 500842 1a110850 fd5ff06f jal x0, -44 +28517431ns 500847 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28517715ns 500852 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28518113ns 500859 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28518283ns 500862 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28518738ns 500870 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28518908ns 500873 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28519193ns 500878 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28519477ns 500883 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28519761ns 500888 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28520216ns 500896 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28520386ns 500899 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28520670ns 500904 1a110850 fd5ff06f jal x0, -44 +28520954ns 500909 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28521239ns 500914 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28521636ns 500921 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28521807ns 500924 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28522262ns 500932 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28522432ns 500935 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28522716ns 500940 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28523000ns 500945 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28523285ns 500950 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28523739ns 500958 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28523910ns 500961 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28524194ns 500966 1a110850 fd5ff06f jal x0, -44 +28524478ns 500971 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28524762ns 500976 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28525160ns 500983 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28525330ns 500986 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28525785ns 500994 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28525956ns 500997 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28526240ns 501002 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28526524ns 501007 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28526808ns 501012 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28527263ns 501020 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28527433ns 501023 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28527717ns 501028 1a110850 fd5ff06f jal x0, -44 +28528002ns 501033 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28528286ns 501038 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28528684ns 501045 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28528854ns 501048 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28529309ns 501056 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28529479ns 501059 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28529763ns 501064 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28530048ns 501069 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28530332ns 501074 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28530786ns 501082 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28530957ns 501085 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28531241ns 501090 1a110850 fd5ff06f jal x0, -44 +28531525ns 501095 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28531809ns 501100 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28532207ns 501107 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28532378ns 501110 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28532832ns 501118 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28533003ns 501121 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28533287ns 501126 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28533571ns 501131 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28533855ns 501136 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28534310ns 501144 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28534480ns 501147 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28534765ns 501152 1a110850 fd5ff06f jal x0, -44 +28535049ns 501157 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28535333ns 501162 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28535731ns 501169 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28535901ns 501172 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28536356ns 501180 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28536526ns 501183 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28536811ns 501188 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28537095ns 501193 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28537379ns 501198 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28537834ns 501206 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28538004ns 501209 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28538288ns 501214 1a110850 fd5ff06f jal x0, -44 +28538572ns 501219 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28538856ns 501224 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28539254ns 501231 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28539425ns 501234 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28539879ns 501242 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28540050ns 501245 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28540334ns 501250 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28540618ns 501255 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28540902ns 501260 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28541357ns 501268 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28541528ns 501271 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28541812ns 501276 1a110850 fd5ff06f jal x0, -44 +28542096ns 501281 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28542380ns 501286 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28542778ns 501293 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28542948ns 501296 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28543403ns 501304 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28543574ns 501307 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28543858ns 501312 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28544142ns 501317 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28544426ns 501322 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28544881ns 501330 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28545051ns 501333 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28545335ns 501338 1a110850 fd5ff06f jal x0, -44 +28545619ns 501343 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28545904ns 501348 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28546301ns 501355 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28546472ns 501358 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28546927ns 501366 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28547097ns 501369 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28547381ns 501374 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28547665ns 501379 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28547950ns 501384 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28548404ns 501392 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28548575ns 501395 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28548859ns 501400 1a110850 fd5ff06f jal x0, -44 +28549143ns 501405 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28549427ns 501410 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28549825ns 501417 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28549996ns 501420 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28550450ns 501428 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28550621ns 501431 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28550905ns 501436 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28551189ns 501441 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28551473ns 501446 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28551928ns 501454 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28552098ns 501457 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28552383ns 501462 1a110850 fd5ff06f jal x0, -44 +28552667ns 501467 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28552951ns 501472 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28553349ns 501479 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28553519ns 501482 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28553974ns 501490 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28554144ns 501493 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28554428ns 501498 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28554713ns 501503 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28554997ns 501508 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28555451ns 501516 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28555622ns 501519 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28555906ns 501524 1a110850 fd5ff06f jal x0, -44 +28556190ns 501529 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28556474ns 501534 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28556872ns 501541 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28557043ns 501544 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28557497ns 501552 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28557668ns 501555 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28557952ns 501560 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28558236ns 501565 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28558520ns 501570 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28558975ns 501578 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28559146ns 501581 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28559430ns 501586 1a110850 fd5ff06f jal x0, -44 +28559714ns 501591 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28559998ns 501596 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28560396ns 501603 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28560566ns 501606 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28561021ns 501614 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28561191ns 501617 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28561476ns 501622 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28561760ns 501627 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28562044ns 501632 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28562499ns 501640 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28562669ns 501643 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28562953ns 501648 1a110850 fd5ff06f jal x0, -44 +28563237ns 501653 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28563522ns 501658 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28563919ns 501665 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28564090ns 501668 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28564545ns 501676 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28564715ns 501679 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28564999ns 501684 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28565283ns 501689 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28565568ns 501694 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28566022ns 501702 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28566193ns 501705 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28566477ns 501710 1a110850 fd5ff06f jal x0, -44 +28566761ns 501715 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28567045ns 501720 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28567443ns 501727 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28567613ns 501730 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28568068ns 501738 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28568239ns 501741 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28568523ns 501746 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28568807ns 501751 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28569091ns 501756 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28569546ns 501764 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28569716ns 501767 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28570000ns 501772 1a110850 fd5ff06f jal x0, -44 +28570285ns 501777 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28570569ns 501782 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28570967ns 501789 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28571137ns 501792 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28571592ns 501800 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28571762ns 501803 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28572046ns 501808 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28572331ns 501813 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28572615ns 501818 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28573069ns 501826 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28573240ns 501829 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28573524ns 501834 1a110850 fd5ff06f jal x0, -44 +28573808ns 501839 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28574092ns 501844 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28574490ns 501851 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28574661ns 501854 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28575115ns 501862 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28575286ns 501865 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28575570ns 501870 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28575854ns 501875 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28576138ns 501880 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28576593ns 501888 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28576763ns 501891 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28577048ns 501896 1a110850 fd5ff06f jal x0, -44 +28577332ns 501901 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28577616ns 501906 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28578014ns 501913 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28578184ns 501916 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28578639ns 501924 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28578809ns 501927 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28579094ns 501932 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28579378ns 501937 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28579662ns 501942 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28580117ns 501950 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28580287ns 501953 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28580571ns 501958 1a110850 fd5ff06f jal x0, -44 +28580855ns 501963 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28581139ns 501968 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28581537ns 501975 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28581708ns 501978 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28582162ns 501986 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28582333ns 501989 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28582617ns 501994 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28582901ns 501999 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28583185ns 502004 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28583640ns 502012 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28583811ns 502015 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28584095ns 502020 1a110850 fd5ff06f jal x0, -44 +28584379ns 502025 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28584663ns 502030 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28585061ns 502037 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28585231ns 502040 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28585686ns 502048 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28585857ns 502051 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28586141ns 502056 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28586425ns 502061 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28586709ns 502066 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28587164ns 502074 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28587334ns 502077 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28587618ns 502082 1a110850 fd5ff06f jal x0, -44 +28587903ns 502087 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28588187ns 502092 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28588584ns 502099 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28588755ns 502102 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28589210ns 502110 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28589380ns 502113 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28589664ns 502118 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28589948ns 502123 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28590233ns 502128 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28590687ns 502136 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28590858ns 502139 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28591142ns 502144 1a110850 fd5ff06f jal x0, -44 +28591426ns 502149 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28591710ns 502154 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28592108ns 502161 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28592279ns 502164 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28592733ns 502172 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28592904ns 502175 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28593188ns 502180 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28593472ns 502185 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28593756ns 502190 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28594211ns 502198 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28594381ns 502201 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28594666ns 502206 1a110850 fd5ff06f jal x0, -44 +28594950ns 502211 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28595234ns 502216 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28595632ns 502223 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28595802ns 502226 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28596257ns 502234 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28596427ns 502237 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28596711ns 502242 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28596996ns 502247 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28597280ns 502252 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28597734ns 502260 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28597905ns 502263 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28598189ns 502268 1a110850 fd5ff06f jal x0, -44 +28598473ns 502273 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28598757ns 502278 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28599155ns 502285 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28599326ns 502288 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28599780ns 502296 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28599951ns 502299 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28600235ns 502304 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28600519ns 502309 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28600803ns 502314 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28601258ns 502322 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28601429ns 502325 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28601713ns 502330 1a110850 fd5ff06f jal x0, -44 +28601997ns 502335 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28602281ns 502340 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28602679ns 502347 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28602849ns 502350 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28603304ns 502358 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28603474ns 502361 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28603759ns 502366 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28604043ns 502371 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28604327ns 502376 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28604782ns 502384 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28604952ns 502387 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28605236ns 502392 1a110850 fd5ff06f jal x0, -44 +28605520ns 502397 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28605805ns 502402 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28606202ns 502409 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28606373ns 502412 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28606828ns 502420 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28606998ns 502423 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28607282ns 502428 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28607566ns 502433 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28607851ns 502438 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28608305ns 502446 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28608476ns 502449 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28608760ns 502454 1a110850 fd5ff06f jal x0, -44 +28609044ns 502459 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28609328ns 502464 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28609726ns 502471 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28609896ns 502474 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28610351ns 502482 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28610522ns 502485 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28610806ns 502490 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28611090ns 502495 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28611374ns 502500 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28611829ns 502508 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28611999ns 502511 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28612283ns 502516 1a110850 fd5ff06f jal x0, -44 +28612568ns 502521 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28612852ns 502526 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28613250ns 502533 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28613420ns 502536 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28613875ns 502544 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28614045ns 502547 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28614329ns 502552 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28614614ns 502557 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28614898ns 502562 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28615352ns 502570 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28615523ns 502573 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28615807ns 502578 1a110850 fd5ff06f jal x0, -44 +28616091ns 502583 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28616375ns 502588 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28616773ns 502595 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28616944ns 502598 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28617398ns 502606 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28617569ns 502609 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28617853ns 502614 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28618137ns 502619 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28618421ns 502624 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28618876ns 502632 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28619046ns 502635 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28619331ns 502640 1a110850 fd5ff06f jal x0, -44 +28619615ns 502645 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28619899ns 502650 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28620297ns 502657 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28620467ns 502660 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28620922ns 502668 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28621092ns 502671 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28621377ns 502676 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28621661ns 502681 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28621945ns 502686 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28622400ns 502694 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28622570ns 502697 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28622854ns 502702 1a110850 fd5ff06f jal x0, -44 +28623138ns 502707 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28623423ns 502712 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28623820ns 502719 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28623991ns 502722 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28624445ns 502730 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28624616ns 502733 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28624900ns 502738 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28625184ns 502743 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28625468ns 502748 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28625923ns 502756 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28626094ns 502759 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28626378ns 502764 1a110850 fd5ff06f jal x0, -44 +28626662ns 502769 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28626946ns 502774 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28627344ns 502781 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28627514ns 502784 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28627969ns 502792 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28628140ns 502795 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28628424ns 502800 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28628708ns 502805 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28628992ns 502810 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28629447ns 502818 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28629617ns 502821 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28629901ns 502826 1a110850 fd5ff06f jal x0, -44 +28630186ns 502831 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28630470ns 502836 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28630867ns 502843 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28631038ns 502846 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28631493ns 502854 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28631663ns 502857 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28631947ns 502862 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28632231ns 502867 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28632516ns 502872 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28632970ns 502880 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28633141ns 502883 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28633425ns 502888 1a110850 fd5ff06f jal x0, -44 +28633709ns 502893 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28633993ns 502898 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28634391ns 502905 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28634562ns 502908 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28635016ns 502916 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28635187ns 502919 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28635471ns 502924 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28635755ns 502929 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28636039ns 502934 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28636494ns 502942 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28636664ns 502945 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28636949ns 502950 1a110850 fd5ff06f jal x0, -44 +28637233ns 502955 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28637517ns 502960 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28637915ns 502967 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28638085ns 502970 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28638540ns 502978 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28638710ns 502981 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28638994ns 502986 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28639279ns 502991 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28639563ns 502996 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28640017ns 503004 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28640188ns 503007 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28640472ns 503012 1a110850 fd5ff06f jal x0, -44 +28640756ns 503017 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28641040ns 503022 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28641438ns 503029 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28641609ns 503032 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28642063ns 503040 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28642234ns 503043 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28642518ns 503048 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28642802ns 503053 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28643086ns 503058 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28643541ns 503066 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28643712ns 503069 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28643996ns 503074 1a110850 fd5ff06f jal x0, -44 +28644280ns 503079 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28644564ns 503084 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28644962ns 503091 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28645132ns 503094 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28645587ns 503102 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28645757ns 503105 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28646042ns 503110 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28646326ns 503115 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28646610ns 503120 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28647065ns 503128 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28647235ns 503131 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28647519ns 503136 1a110850 fd5ff06f jal x0, -44 +28647803ns 503141 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28648088ns 503146 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28648485ns 503153 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28648656ns 503156 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28649111ns 503164 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28649281ns 503167 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28649565ns 503172 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28649849ns 503177 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28650134ns 503182 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28650588ns 503190 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28650759ns 503193 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28651043ns 503198 1a110850 fd5ff06f jal x0, -44 +28651327ns 503203 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28651611ns 503208 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28652009ns 503215 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28652179ns 503218 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28652634ns 503226 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28652805ns 503229 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28653089ns 503234 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28653373ns 503239 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28653657ns 503244 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28654112ns 503252 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28654282ns 503255 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28654566ns 503260 1a110850 fd5ff06f jal x0, -44 +28654851ns 503265 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28655135ns 503270 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28655533ns 503277 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28655703ns 503280 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28656158ns 503288 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28656328ns 503291 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28656612ns 503296 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28656897ns 503301 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28657181ns 503306 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28657635ns 503314 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28657806ns 503317 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28658090ns 503322 1a110850 fd5ff06f jal x0, -44 +28658374ns 503327 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28658658ns 503332 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28659056ns 503339 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28659227ns 503342 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28659681ns 503350 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28659852ns 503353 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28660136ns 503358 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28660420ns 503363 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28660704ns 503368 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28661159ns 503376 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28661329ns 503379 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28661614ns 503384 1a110850 fd5ff06f jal x0, -44 +28661898ns 503389 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28662182ns 503394 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28662580ns 503401 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28662750ns 503404 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28663205ns 503412 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28663375ns 503415 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28663660ns 503420 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28663944ns 503425 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28664228ns 503430 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28664683ns 503438 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28664853ns 503441 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28665137ns 503446 1a110850 fd5ff06f jal x0, -44 +28665421ns 503451 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28665706ns 503456 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28666103ns 503463 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28666274ns 503466 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28666728ns 503474 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28666899ns 503477 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28667183ns 503482 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28667467ns 503487 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28667751ns 503492 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28668206ns 503500 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28668377ns 503503 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28668661ns 503508 1a110850 fd5ff06f jal x0, -44 +28668945ns 503513 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28669229ns 503518 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28669627ns 503525 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28669797ns 503528 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28670252ns 503536 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28670423ns 503539 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28670707ns 503544 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28670991ns 503549 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28671275ns 503554 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28671730ns 503562 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28671900ns 503565 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28672184ns 503570 1a110850 fd5ff06f jal x0, -44 +28672469ns 503575 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28672753ns 503580 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28673151ns 503587 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28673321ns 503590 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28673776ns 503598 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28673946ns 503601 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28674230ns 503606 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28674514ns 503611 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28674799ns 503616 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28675253ns 503624 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28675424ns 503627 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28675708ns 503632 1a110850 fd5ff06f jal x0, -44 +28675992ns 503637 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28676276ns 503642 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28676674ns 503649 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28676845ns 503652 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28677299ns 503660 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28677470ns 503663 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28677754ns 503668 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28678038ns 503673 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28678322ns 503678 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28678777ns 503686 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28678947ns 503689 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28679232ns 503694 1a110850 fd5ff06f jal x0, -44 +28679516ns 503699 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28679800ns 503704 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28680198ns 503711 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28680368ns 503714 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28680823ns 503722 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28680993ns 503725 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28681277ns 503730 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28681562ns 503735 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28681846ns 503740 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28682300ns 503748 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28682471ns 503751 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28682755ns 503756 1a110850 fd5ff06f jal x0, -44 +28683039ns 503761 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28683323ns 503766 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28683721ns 503773 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28683892ns 503776 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28684346ns 503784 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28684517ns 503787 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28684801ns 503792 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28685085ns 503797 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28685369ns 503802 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28685824ns 503810 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28685995ns 503813 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28686279ns 503818 1a110850 fd5ff06f jal x0, -44 +28686563ns 503823 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28686847ns 503828 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28687245ns 503835 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28687415ns 503838 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28687870ns 503846 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28688040ns 503849 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28688325ns 503854 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28688609ns 503859 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28688893ns 503864 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28689348ns 503872 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28689518ns 503875 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28689802ns 503880 1a110850 fd5ff06f jal x0, -44 +28690086ns 503885 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28690371ns 503890 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28690768ns 503897 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28690939ns 503900 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28691394ns 503908 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28691564ns 503911 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28691848ns 503916 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28692132ns 503921 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28692417ns 503926 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28692871ns 503934 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28693042ns 503937 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28693326ns 503942 1a110850 fd5ff06f jal x0, -44 +28693610ns 503947 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28693894ns 503952 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28694292ns 503959 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28694463ns 503962 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28694917ns 503970 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28695088ns 503973 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28695372ns 503978 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28695656ns 503983 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28695940ns 503988 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28696395ns 503996 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28696565ns 503999 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28696849ns 504004 1a110850 fd5ff06f jal x0, -44 +28697134ns 504009 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28697418ns 504014 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28697816ns 504021 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28697986ns 504024 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28698441ns 504032 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28698611ns 504035 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28698895ns 504040 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28699180ns 504045 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28699464ns 504050 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28699918ns 504058 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28700089ns 504061 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28700373ns 504066 1a110850 fd5ff06f jal x0, -44 +28700657ns 504071 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28700941ns 504076 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28701339ns 504083 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28701510ns 504086 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28701964ns 504094 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28702135ns 504097 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28702419ns 504102 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28702703ns 504107 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28702987ns 504112 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28703442ns 504120 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28703612ns 504123 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28703897ns 504128 1a110850 fd5ff06f jal x0, -44 +28704181ns 504133 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28704465ns 504138 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28704863ns 504145 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28705033ns 504148 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28705488ns 504156 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28705658ns 504159 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28705943ns 504164 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28706227ns 504169 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28706511ns 504174 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28706966ns 504182 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28707136ns 504185 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28707420ns 504190 1a110850 fd5ff06f jal x0, -44 +28707704ns 504195 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28707989ns 504200 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28708386ns 504207 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28708557ns 504210 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28709011ns 504218 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28709182ns 504221 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28709466ns 504226 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28709750ns 504231 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28710034ns 504236 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28710489ns 504244 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28710660ns 504247 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28710944ns 504252 1a110850 fd5ff06f jal x0, -44 +28711228ns 504257 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28711512ns 504262 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28711910ns 504269 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28712080ns 504272 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28712535ns 504280 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28712706ns 504283 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28712990ns 504288 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28713274ns 504293 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28713558ns 504298 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28714013ns 504306 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28714183ns 504309 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28714467ns 504314 1a110850 fd5ff06f jal x0, -44 +28714752ns 504319 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28715036ns 504324 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28715434ns 504331 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28715604ns 504334 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28716059ns 504342 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28716229ns 504345 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28716513ns 504350 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28716797ns 504355 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28717082ns 504360 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28717536ns 504368 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28717707ns 504371 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28717991ns 504376 1a110850 fd5ff06f jal x0, -44 +28718275ns 504381 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28718559ns 504386 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28718957ns 504393 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28719128ns 504396 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28719582ns 504404 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28719753ns 504407 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28720037ns 504412 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28720321ns 504417 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28720605ns 504422 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28721060ns 504430 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28721230ns 504433 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28721515ns 504438 1a110850 fd5ff06f jal x0, -44 +28721799ns 504443 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28722083ns 504448 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28722481ns 504455 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28722651ns 504458 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28723106ns 504466 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28723276ns 504469 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28723560ns 504474 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28723845ns 504479 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28724129ns 504484 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28724583ns 504492 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28724754ns 504495 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28725038ns 504500 1a110850 fd5ff06f jal x0, -44 +28725322ns 504505 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28725606ns 504510 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28726004ns 504517 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28726175ns 504520 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28726629ns 504528 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28726800ns 504531 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28727084ns 504536 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28727368ns 504541 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28727652ns 504546 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28728107ns 504554 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28728278ns 504557 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28728562ns 504562 1a110850 fd5ff06f jal x0, -44 +28728846ns 504567 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28729130ns 504572 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28729528ns 504579 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28729698ns 504582 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28730153ns 504590 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28730323ns 504593 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28730608ns 504598 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28730892ns 504603 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28731176ns 504608 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28731631ns 504616 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28731801ns 504619 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28732085ns 504624 1a110850 fd5ff06f jal x0, -44 +28732369ns 504629 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28732654ns 504634 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28733051ns 504641 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28733222ns 504644 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28733677ns 504652 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28733847ns 504655 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28734131ns 504660 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28734415ns 504665 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28734700ns 504670 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28735154ns 504678 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28735325ns 504681 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28735609ns 504686 1a110850 fd5ff06f jal x0, -44 +28735893ns 504691 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28736177ns 504696 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28736575ns 504703 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28736746ns 504706 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28737200ns 504714 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28737371ns 504717 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28737655ns 504722 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28737939ns 504727 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28738223ns 504732 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28738678ns 504740 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28738848ns 504743 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28739132ns 504748 1a110850 fd5ff06f jal x0, -44 +28739417ns 504753 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28739701ns 504758 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28740099ns 504765 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28740269ns 504768 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28740724ns 504776 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28740894ns 504779 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28741178ns 504784 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28741463ns 504789 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28741747ns 504794 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28742201ns 504802 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28742372ns 504805 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28742656ns 504810 1a110850 fd5ff06f jal x0, -44 +28742940ns 504815 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28743224ns 504820 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28743622ns 504827 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28743793ns 504830 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28744247ns 504838 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28744418ns 504841 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28744702ns 504846 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28744986ns 504851 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28745270ns 504856 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28745725ns 504864 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28745895ns 504867 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28746180ns 504872 1a110850 fd5ff06f jal x0, -44 +28746464ns 504877 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28746748ns 504882 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28747146ns 504889 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28747316ns 504892 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28747771ns 504900 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28747941ns 504903 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28748226ns 504908 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28748510ns 504913 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28748794ns 504918 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28749249ns 504926 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28749419ns 504929 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28749703ns 504934 1a110850 fd5ff06f jal x0, -44 +28749987ns 504939 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28750272ns 504944 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28750669ns 504951 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28750840ns 504954 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28751295ns 504962 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28751465ns 504965 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28751749ns 504970 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28752033ns 504975 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28752317ns 504980 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28752772ns 504988 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28752943ns 504991 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28753227ns 504996 1a110850 fd5ff06f jal x0, -44 +28753511ns 505001 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28753795ns 505006 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28754193ns 505013 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28754363ns 505016 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28754818ns 505024 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28754989ns 505027 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28755273ns 505032 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28755557ns 505037 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28755841ns 505042 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28756296ns 505050 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28756466ns 505053 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28756750ns 505058 1a110850 fd5ff06f jal x0, -44 +28757035ns 505063 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28757319ns 505068 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28757717ns 505075 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28757887ns 505078 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28758342ns 505086 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28758512ns 505089 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28758796ns 505094 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28759080ns 505099 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28759365ns 505104 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28759819ns 505112 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28759990ns 505115 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28760274ns 505120 1a110850 fd5ff06f jal x0, -44 +28760558ns 505125 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28760842ns 505130 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28761240ns 505137 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28761411ns 505140 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28761865ns 505148 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28762036ns 505151 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28762320ns 505156 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28762604ns 505161 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28762888ns 505166 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28763343ns 505174 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28763513ns 505177 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28763798ns 505182 1a110850 fd5ff06f jal x0, -44 +28764082ns 505187 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28764366ns 505192 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28764764ns 505199 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28764934ns 505202 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28765389ns 505210 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28765559ns 505213 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28765843ns 505218 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28766128ns 505223 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28766412ns 505228 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28766866ns 505236 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28767037ns 505239 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28767321ns 505244 1a110850 fd5ff06f jal x0, -44 +28767605ns 505249 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28767889ns 505254 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28768287ns 505261 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28768458ns 505264 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28768912ns 505272 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28769083ns 505275 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28769367ns 505280 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28769651ns 505285 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28769935ns 505290 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28770390ns 505298 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28770561ns 505301 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28770845ns 505306 1a110850 fd5ff06f jal x0, -44 +28771129ns 505311 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28771413ns 505316 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28771811ns 505323 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28771981ns 505326 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28772436ns 505334 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28772607ns 505337 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28772891ns 505342 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28773175ns 505347 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28773459ns 505352 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28773914ns 505360 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28774084ns 505363 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28774368ns 505368 1a110850 fd5ff06f jal x0, -44 +28774652ns 505373 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28774937ns 505378 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28775334ns 505385 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28775505ns 505388 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28775960ns 505396 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28776130ns 505399 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28776414ns 505404 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28776698ns 505409 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28776983ns 505414 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28777437ns 505422 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28777608ns 505425 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28777892ns 505430 1a110850 fd5ff06f jal x0, -44 +28778176ns 505435 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28778460ns 505440 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28778858ns 505447 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28779029ns 505450 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28779483ns 505458 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28779654ns 505461 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28779938ns 505466 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28780222ns 505471 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28780506ns 505476 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28780961ns 505484 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28781131ns 505487 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28781415ns 505492 1a110850 fd5ff06f jal x0, -44 +28781700ns 505497 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28781984ns 505502 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28782382ns 505509 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28782552ns 505512 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28783007ns 505520 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28783177ns 505523 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28783461ns 505528 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28783746ns 505533 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28784030ns 505538 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28784484ns 505546 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28784655ns 505549 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28784939ns 505554 1a110850 fd5ff06f jal x0, -44 +28785223ns 505559 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28785507ns 505564 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28785905ns 505571 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28786076ns 505574 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28786530ns 505582 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28786701ns 505585 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28786985ns 505590 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28787269ns 505595 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28787553ns 505600 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28788008ns 505608 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28788178ns 505611 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28788463ns 505616 1a110850 fd5ff06f jal x0, -44 +28788747ns 505621 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28789031ns 505626 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28789429ns 505633 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28789599ns 505636 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28790054ns 505644 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28790224ns 505647 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28790509ns 505652 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28790793ns 505657 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28791077ns 505662 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28791532ns 505670 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28791702ns 505673 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28791986ns 505678 1a110850 fd5ff06f jal x0, -44 +28792270ns 505683 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28792555ns 505688 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28792952ns 505695 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28793123ns 505698 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28793578ns 505706 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28793748ns 505709 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28794032ns 505714 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28794316ns 505719 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28794600ns 505724 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28795055ns 505732 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28795226ns 505735 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28795510ns 505740 1a110850 fd5ff06f jal x0, -44 +28795794ns 505745 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28796078ns 505750 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28796476ns 505757 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28796646ns 505760 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28797101ns 505768 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28797272ns 505771 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28797556ns 505776 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28797840ns 505781 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28798124ns 505786 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28798579ns 505794 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28798749ns 505797 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28799033ns 505802 1a110850 fd5ff06f jal x0, -44 +28799318ns 505807 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28799602ns 505812 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28800000ns 505819 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28800170ns 505822 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28800625ns 505830 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28800795ns 505833 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28801079ns 505838 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28801363ns 505843 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28801648ns 505848 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28802102ns 505856 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28802273ns 505859 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28802557ns 505864 1a110850 fd5ff06f jal x0, -44 +28802841ns 505869 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28803125ns 505874 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28803523ns 505881 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28803694ns 505884 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28804148ns 505892 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28804319ns 505895 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28804603ns 505900 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28804887ns 505905 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28805171ns 505910 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28805626ns 505918 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28805796ns 505921 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28806081ns 505926 1a110850 fd5ff06f jal x0, -44 +28806365ns 505931 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28806649ns 505936 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28807047ns 505943 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28807217ns 505946 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28807672ns 505954 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28807842ns 505957 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28808127ns 505962 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28808411ns 505967 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28808695ns 505972 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28809149ns 505980 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28809320ns 505983 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28809604ns 505988 1a110850 fd5ff06f jal x0, -44 +28809888ns 505993 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28810172ns 505998 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28810570ns 506005 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28810741ns 506008 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28811195ns 506016 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28811366ns 506019 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28811650ns 506024 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28811934ns 506029 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28812218ns 506034 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28812673ns 506042 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28812844ns 506045 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28813128ns 506050 1a110850 fd5ff06f jal x0, -44 +28813412ns 506055 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28813696ns 506060 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28814094ns 506067 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28814264ns 506070 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28814719ns 506078 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28814890ns 506081 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28815174ns 506086 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28815458ns 506091 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28815742ns 506096 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28816197ns 506104 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28816367ns 506107 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28816651ns 506112 1a110850 fd5ff06f jal x0, -44 +28816935ns 506117 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28817220ns 506122 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28817617ns 506129 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28817788ns 506132 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28818243ns 506140 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28818413ns 506143 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28818697ns 506148 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28818981ns 506153 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28819266ns 506158 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28819720ns 506166 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28819891ns 506169 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28820175ns 506174 1a110850 fd5ff06f jal x0, -44 +28820459ns 506179 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28820743ns 506184 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28821141ns 506191 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28821312ns 506194 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28821766ns 506202 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28821937ns 506205 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28822221ns 506210 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28822505ns 506215 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28822789ns 506220 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28823244ns 506228 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28823414ns 506231 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28823698ns 506236 1a110850 fd5ff06f jal x0, -44 +28823983ns 506241 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28824267ns 506246 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28824665ns 506253 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28824835ns 506256 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28825290ns 506264 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28825460ns 506267 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28825744ns 506272 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28826029ns 506277 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28826313ns 506282 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28826767ns 506290 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28826938ns 506293 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28827222ns 506298 1a110850 fd5ff06f jal x0, -44 +28827506ns 506303 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28827790ns 506308 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28828188ns 506315 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28828359ns 506318 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28828813ns 506326 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28828984ns 506329 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28829268ns 506334 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28829552ns 506339 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28829836ns 506344 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28830291ns 506352 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28830461ns 506355 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28830746ns 506360 1a110850 fd5ff06f jal x0, -44 +28831030ns 506365 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28831314ns 506370 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28831712ns 506377 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28831882ns 506380 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28832337ns 506388 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28832507ns 506391 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28832792ns 506396 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28833076ns 506401 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28833360ns 506406 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28833815ns 506414 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28833985ns 506417 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28834269ns 506422 1a110850 fd5ff06f jal x0, -44 +28834553ns 506427 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28834838ns 506432 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28835235ns 506439 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28835406ns 506442 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28835861ns 506450 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28836031ns 506453 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28836315ns 506458 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28836599ns 506463 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28836883ns 506468 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28837338ns 506476 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28837509ns 506479 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28837793ns 506484 1a110850 fd5ff06f jal x0, -44 +28838077ns 506489 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28838361ns 506494 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28838759ns 506501 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28838929ns 506504 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28839384ns 506512 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28839555ns 506515 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28839839ns 506520 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28840123ns 506525 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28840407ns 506530 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28840862ns 506538 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28841032ns 506541 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28841316ns 506546 1a110850 fd5ff06f jal x0, -44 +28841601ns 506551 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28841885ns 506556 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28842283ns 506563 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28842453ns 506566 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28842908ns 506574 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28843078ns 506577 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28843362ns 506582 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28843647ns 506587 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28843931ns 506592 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28844385ns 506600 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28844556ns 506603 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28844840ns 506608 1a110850 fd5ff06f jal x0, -44 +28845124ns 506613 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28845408ns 506618 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28845806ns 506625 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28845977ns 506628 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28846431ns 506636 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28846602ns 506639 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28846886ns 506644 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28847170ns 506649 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28847454ns 506654 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28847909ns 506662 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28848079ns 506665 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28848364ns 506670 1a110850 fd5ff06f jal x0, -44 +28848648ns 506675 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28848932ns 506680 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28849330ns 506687 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28849500ns 506690 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28849955ns 506698 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28850125ns 506701 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28850410ns 506706 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28850694ns 506711 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28850978ns 506716 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28851432ns 506724 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28851603ns 506727 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28851887ns 506732 1a110850 fd5ff06f jal x0, -44 +28852171ns 506737 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28852455ns 506742 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28852853ns 506749 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28853024ns 506752 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28853478ns 506760 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28853649ns 506763 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28853933ns 506768 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28854217ns 506773 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28854501ns 506778 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28854956ns 506786 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28855127ns 506789 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28855411ns 506794 1a110850 fd5ff06f jal x0, -44 +28855695ns 506799 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28855979ns 506804 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28856377ns 506811 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28856547ns 506814 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28857002ns 506822 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28857173ns 506825 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28857457ns 506830 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28857741ns 506835 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28858025ns 506840 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28858480ns 506848 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28858650ns 506851 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28858934ns 506856 1a110850 fd5ff06f jal x0, -44 +28859218ns 506861 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28859503ns 506866 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28859900ns 506873 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28860071ns 506876 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28860526ns 506884 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28860696ns 506887 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28860980ns 506892 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28861264ns 506897 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28861549ns 506902 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28862003ns 506910 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28862174ns 506913 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28862458ns 506918 1a110850 fd5ff06f jal x0, -44 +28862742ns 506923 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28863026ns 506928 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28863424ns 506935 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28863595ns 506938 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28864049ns 506946 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28864220ns 506949 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28864504ns 506954 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28864788ns 506959 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28865072ns 506964 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28865527ns 506972 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28865697ns 506975 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28865981ns 506980 1a110850 fd5ff06f jal x0, -44 +28866266ns 506985 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28866550ns 506990 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28866948ns 506997 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28867118ns 507000 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28867573ns 507008 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28867743ns 507011 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28868027ns 507016 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28868312ns 507021 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28868596ns 507026 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28869050ns 507034 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28869221ns 507037 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28869505ns 507042 1a110850 fd5ff06f jal x0, -44 +28869789ns 507047 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28870073ns 507052 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28870471ns 507059 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28870642ns 507062 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28871096ns 507070 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28871267ns 507073 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28871551ns 507078 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28871835ns 507083 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28872119ns 507088 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28872574ns 507096 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28872744ns 507099 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28873029ns 507104 1a110850 fd5ff06f jal x0, -44 +28873313ns 507109 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28873597ns 507114 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28873995ns 507121 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28874165ns 507124 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28874620ns 507132 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28874790ns 507135 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28875075ns 507140 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28875359ns 507145 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28875643ns 507150 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28876098ns 507158 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28876268ns 507161 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28876552ns 507166 1a110850 fd5ff06f jal x0, -44 +28876836ns 507171 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28877121ns 507176 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28877518ns 507183 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28877689ns 507186 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28878144ns 507194 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28878314ns 507197 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28878598ns 507202 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28878882ns 507207 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28879167ns 507212 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28879621ns 507220 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28879792ns 507223 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28880076ns 507228 1a110850 fd5ff06f jal x0, -44 +28880360ns 507233 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28880644ns 507238 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28881042ns 507245 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28881212ns 507248 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28881667ns 507256 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28881838ns 507259 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28882122ns 507264 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28882406ns 507269 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28882690ns 507274 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28883145ns 507282 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28883315ns 507285 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28883599ns 507290 1a110850 fd5ff06f jal x0, -44 +28883884ns 507295 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28884168ns 507300 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28884566ns 507307 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28884736ns 507310 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28885191ns 507318 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28885361ns 507321 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28885645ns 507326 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28885930ns 507331 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28886214ns 507336 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28886668ns 507344 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28886839ns 507347 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28887123ns 507352 1a110850 fd5ff06f jal x0, -44 +28887407ns 507357 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28887691ns 507362 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28888089ns 507369 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28888260ns 507372 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28888714ns 507380 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28888885ns 507383 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28889169ns 507388 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28889453ns 507393 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28889737ns 507398 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28890192ns 507406 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28890362ns 507409 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28890647ns 507414 1a110850 fd5ff06f jal x0, -44 +28890931ns 507419 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28891215ns 507424 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28891613ns 507431 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28891783ns 507434 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28892238ns 507442 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28892408ns 507445 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28892693ns 507450 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28892977ns 507455 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28893261ns 507460 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28893715ns 507468 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28893886ns 507471 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28894170ns 507476 1a110850 fd5ff06f jal x0, -44 +28894454ns 507481 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28894738ns 507486 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28895136ns 507493 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28895307ns 507496 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28895761ns 507504 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28895932ns 507507 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28896216ns 507512 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28896500ns 507517 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28896784ns 507522 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28897239ns 507530 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28897410ns 507533 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28897694ns 507538 1a110850 fd5ff06f jal x0, -44 +28897978ns 507543 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28898262ns 507548 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28898660ns 507555 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28898830ns 507558 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28899285ns 507566 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28899456ns 507569 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28899740ns 507574 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28900024ns 507579 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28900308ns 507584 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28900763ns 507592 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28900933ns 507595 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28901217ns 507600 1a110850 fd5ff06f jal x0, -44 +28901501ns 507605 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28901786ns 507610 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28902183ns 507617 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28902354ns 507620 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28902809ns 507628 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28902979ns 507631 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28903263ns 507636 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28903547ns 507641 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28903832ns 507646 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28904286ns 507654 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28904457ns 507657 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28904741ns 507662 1a110850 fd5ff06f jal x0, -44 +28905025ns 507667 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28905309ns 507672 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28905707ns 507679 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28905878ns 507682 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28906332ns 507690 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28906503ns 507693 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28906787ns 507698 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28907071ns 507703 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28907355ns 507708 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28907810ns 507716 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28907980ns 507719 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28908264ns 507724 1a110850 fd5ff06f jal x0, -44 +28908549ns 507729 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28908833ns 507734 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28909231ns 507741 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28909401ns 507744 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28909856ns 507752 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28910026ns 507755 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28910310ns 507760 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28910595ns 507765 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28910879ns 507770 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28911333ns 507778 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28911504ns 507781 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28911788ns 507786 1a110850 fd5ff06f jal x0, -44 +28912072ns 507791 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28912356ns 507796 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28912754ns 507803 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28912925ns 507806 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28913379ns 507814 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28913550ns 507817 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28913834ns 507822 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28914118ns 507827 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28914402ns 507832 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28914857ns 507840 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28915027ns 507843 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28915312ns 507848 1a110850 fd5ff06f jal x0, -44 +28915596ns 507853 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28915880ns 507858 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28916278ns 507865 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28916448ns 507868 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28916903ns 507876 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28917073ns 507879 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28917358ns 507884 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28917642ns 507889 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28917926ns 507894 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28918381ns 507902 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28918551ns 507905 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28918835ns 507910 1a110850 fd5ff06f jal x0, -44 +28919119ns 507915 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28919404ns 507920 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28919801ns 507927 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28919972ns 507930 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28920427ns 507938 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28920597ns 507941 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28920881ns 507946 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28921165ns 507951 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28921450ns 507956 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28921904ns 507964 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28922075ns 507967 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28922359ns 507972 1a110850 fd5ff06f jal x0, -44 +28922643ns 507977 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28922927ns 507982 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28923325ns 507989 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28923495ns 507992 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28923950ns 508000 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28924121ns 508003 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28924405ns 508008 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28924689ns 508013 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28924973ns 508018 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28925428ns 508026 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28925598ns 508029 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28925882ns 508034 1a110850 fd5ff06f jal x0, -44 +28926167ns 508039 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28926451ns 508044 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28926849ns 508051 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28927019ns 508054 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28927474ns 508062 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28927644ns 508065 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28927928ns 508070 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28928213ns 508075 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28928497ns 508080 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28928951ns 508088 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28929122ns 508091 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28929406ns 508096 1a110850 fd5ff06f jal x0, -44 +28929690ns 508101 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28929974ns 508106 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28930372ns 508113 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28930543ns 508116 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28930997ns 508124 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28931168ns 508127 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28931452ns 508132 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28931736ns 508137 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28932020ns 508142 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28932475ns 508150 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28932645ns 508153 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28932930ns 508158 1a110850 fd5ff06f jal x0, -44 +28933214ns 508163 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28933498ns 508168 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28933896ns 508175 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28934066ns 508178 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28934521ns 508186 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28934691ns 508189 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28934976ns 508194 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28935260ns 508199 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28935544ns 508204 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28935999ns 508212 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28936169ns 508215 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28936453ns 508220 1a110850 fd5ff06f jal x0, -44 +28936737ns 508225 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28937021ns 508230 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28937419ns 508237 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28937590ns 508240 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28938044ns 508248 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28938215ns 508251 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28938499ns 508256 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28938783ns 508261 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28939067ns 508266 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28939522ns 508274 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28939693ns 508277 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28939977ns 508282 1a110850 fd5ff06f jal x0, -44 +28940261ns 508287 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28940545ns 508292 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28940943ns 508299 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28941113ns 508302 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28941568ns 508310 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28941739ns 508313 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28942023ns 508318 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28942307ns 508323 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28942591ns 508328 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28943046ns 508336 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28943216ns 508339 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28943500ns 508344 1a110850 fd5ff06f jal x0, -44 +28943784ns 508349 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28944069ns 508354 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28944466ns 508361 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28944637ns 508364 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28945092ns 508372 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28945262ns 508375 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28945546ns 508380 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28945830ns 508385 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28946115ns 508390 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28946569ns 508398 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28946740ns 508401 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28947024ns 508406 1a110850 fd5ff06f jal x0, -44 +28947308ns 508411 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28947592ns 508416 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28947990ns 508423 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28948161ns 508426 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28948615ns 508434 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28948786ns 508437 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28949070ns 508442 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28949354ns 508447 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28949638ns 508452 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28950093ns 508460 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28950263ns 508463 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28950547ns 508468 1a110850 fd5ff06f jal x0, -44 +28950832ns 508473 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28951116ns 508478 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28951514ns 508485 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28951684ns 508488 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28952139ns 508496 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28952309ns 508499 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28952593ns 508504 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28952878ns 508509 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28953162ns 508514 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28953616ns 508522 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28953787ns 508525 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28954071ns 508530 1a110850 fd5ff06f jal x0, -44 +28954355ns 508535 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28954639ns 508540 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28955037ns 508547 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28955208ns 508550 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28955662ns 508558 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28955833ns 508561 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28956117ns 508566 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28956401ns 508571 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28956685ns 508576 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28957140ns 508584 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28957311ns 508587 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28957595ns 508592 1a110850 fd5ff06f jal x0, -44 +28957879ns 508597 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28958163ns 508602 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28958561ns 508609 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28958731ns 508612 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28959186ns 508620 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28959356ns 508623 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28959641ns 508628 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28959925ns 508633 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28960209ns 508638 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28960664ns 508646 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28960834ns 508649 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28961118ns 508654 1a110850 fd5ff06f jal x0, -44 +28961402ns 508659 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28961687ns 508664 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28962084ns 508671 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28962255ns 508674 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28962710ns 508682 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28962880ns 508685 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28963164ns 508690 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28963448ns 508695 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28963733ns 508700 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28964187ns 508708 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28964358ns 508711 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28964642ns 508716 1a110850 fd5ff06f jal x0, -44 +28964926ns 508721 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28965210ns 508726 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28965608ns 508733 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28965778ns 508736 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28966233ns 508744 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28966404ns 508747 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28966688ns 508752 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28966972ns 508757 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28967256ns 508762 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28967711ns 508770 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28967881ns 508773 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28968165ns 508778 1a110850 fd5ff06f jal x0, -44 +28968450ns 508783 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28968734ns 508788 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28969132ns 508795 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28969302ns 508798 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28969757ns 508806 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28969927ns 508809 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28970211ns 508814 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28970496ns 508819 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28970780ns 508824 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28971234ns 508832 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28971405ns 508835 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28971689ns 508840 1a110850 fd5ff06f jal x0, -44 +28971973ns 508845 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28972257ns 508850 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28972655ns 508857 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28972826ns 508860 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28973280ns 508868 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28973451ns 508871 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28973735ns 508876 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28974019ns 508881 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28974303ns 508886 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28974758ns 508894 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28974928ns 508897 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28975213ns 508902 1a110850 fd5ff06f jal x0, -44 +28975497ns 508907 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28975781ns 508912 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28976179ns 508919 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28976349ns 508922 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28976804ns 508930 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28976974ns 508933 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28977259ns 508938 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28977543ns 508943 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28977827ns 508948 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28978282ns 508956 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28978452ns 508959 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28978736ns 508964 1a110850 fd5ff06f jal x0, -44 +28979020ns 508969 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28979304ns 508974 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28979702ns 508981 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28979873ns 508984 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28980327ns 508992 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28980498ns 508995 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28980782ns 509000 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28981066ns 509005 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28981350ns 509010 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28981805ns 509018 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28981976ns 509021 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28982260ns 509026 1a110850 fd5ff06f jal x0, -44 +28982544ns 509031 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28982828ns 509036 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28983226ns 509043 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28983396ns 509046 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28983851ns 509054 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28984022ns 509057 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28984306ns 509062 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28984590ns 509067 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28984874ns 509072 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28985329ns 509080 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28985499ns 509083 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28985783ns 509088 1a110850 fd5ff06f jal x0, -44 +28986067ns 509093 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28986352ns 509098 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28986749ns 509105 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28986920ns 509108 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28987375ns 509116 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28987545ns 509119 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28987829ns 509124 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28988113ns 509129 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28988398ns 509134 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28988852ns 509142 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28989023ns 509145 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28989307ns 509150 1a110850 fd5ff06f jal x0, -44 +28989591ns 509155 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28989875ns 509160 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28990273ns 509167 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28990444ns 509170 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28990898ns 509178 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28991069ns 509181 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28991353ns 509186 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28991637ns 509191 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28991921ns 509196 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28992376ns 509204 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28992546ns 509207 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28992831ns 509212 1a110850 fd5ff06f jal x0, -44 +28993115ns 509217 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28993399ns 509222 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28993797ns 509229 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28993967ns 509232 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28994422ns 509240 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28994592ns 509243 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28994876ns 509248 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28995161ns 509253 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28995445ns 509258 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28995899ns 509266 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28996070ns 509269 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28996354ns 509274 1a110850 fd5ff06f jal x0, -44 +28996638ns 509279 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28996922ns 509284 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +28997320ns 509291 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28997491ns 509294 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28997945ns 509302 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +28998116ns 509305 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +28998400ns 509310 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +28998684ns 509315 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +28998968ns 509320 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +28999423ns 509328 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +28999594ns 509331 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +28999878ns 509336 1a110850 fd5ff06f jal x0, -44 +29000162ns 509341 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29000446ns 509346 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29000844ns 509353 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29001014ns 509356 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29001469ns 509364 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29001639ns 509367 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29001924ns 509372 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29002208ns 509377 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29002492ns 509382 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29002947ns 509390 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29003117ns 509393 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29003401ns 509398 1a110850 fd5ff06f jal x0, -44 +29003685ns 509403 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29003970ns 509408 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29004367ns 509415 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29004538ns 509418 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29004993ns 509426 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29005163ns 509429 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29005447ns 509434 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29005731ns 509439 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29006016ns 509444 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29006470ns 509452 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29006641ns 509455 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29006925ns 509460 1a110850 fd5ff06f jal x0, -44 +29007209ns 509465 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29007493ns 509470 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29007891ns 509477 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29008061ns 509480 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29008516ns 509488 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29008687ns 509491 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29008971ns 509496 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29009255ns 509501 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29009539ns 509506 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29009994ns 509514 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29010164ns 509517 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29010448ns 509522 1a110850 fd5ff06f jal x0, -44 +29010733ns 509527 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29011017ns 509532 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29011415ns 509539 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29011585ns 509542 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29012040ns 509550 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29012210ns 509553 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29012494ns 509558 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29012779ns 509563 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29013063ns 509568 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29013517ns 509576 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29013688ns 509579 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29013972ns 509584 1a110850 fd5ff06f jal x0, -44 +29014256ns 509589 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29014540ns 509594 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29014938ns 509601 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29015109ns 509604 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29015563ns 509612 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29015734ns 509615 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29016018ns 509620 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29016302ns 509625 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29016586ns 509630 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29017041ns 509638 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29017211ns 509641 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29017496ns 509646 1a110850 fd5ff06f jal x0, -44 +29017780ns 509651 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29018064ns 509656 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29018462ns 509663 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29018632ns 509666 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29019087ns 509674 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29019257ns 509677 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29019542ns 509682 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29019826ns 509687 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29020110ns 509692 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29020565ns 509700 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29020735ns 509703 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29021019ns 509708 1a110850 fd5ff06f jal x0, -44 +29021303ns 509713 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29021587ns 509718 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29021985ns 509725 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29022156ns 509728 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29022610ns 509736 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29022781ns 509739 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29023065ns 509744 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29023349ns 509749 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29023633ns 509754 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29024088ns 509762 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29024259ns 509765 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29024543ns 509770 1a110850 fd5ff06f jal x0, -44 +29024827ns 509775 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29025111ns 509780 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29025509ns 509787 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29025679ns 509790 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29026134ns 509798 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29026305ns 509801 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29026589ns 509806 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29026873ns 509811 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29027157ns 509816 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29027612ns 509824 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29027782ns 509827 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29028066ns 509832 1a110850 fd5ff06f jal x0, -44 +29028351ns 509837 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29028635ns 509842 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29029032ns 509849 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29029203ns 509852 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29029658ns 509860 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29029828ns 509863 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29030112ns 509868 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29030396ns 509873 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29030681ns 509878 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29031135ns 509886 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29031306ns 509889 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29031590ns 509894 1a110850 fd5ff06f jal x0, -44 +29031874ns 509899 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29032158ns 509904 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29032556ns 509911 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29032727ns 509914 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29033181ns 509922 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29033352ns 509925 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29033636ns 509930 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29033920ns 509935 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29034204ns 509940 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29034659ns 509948 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29034829ns 509951 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29035114ns 509956 1a110850 fd5ff06f jal x0, -44 +29035398ns 509961 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29035682ns 509966 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29036080ns 509973 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29036250ns 509976 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29036705ns 509984 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29036875ns 509987 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29037159ns 509992 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29037444ns 509997 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29037728ns 510002 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29038182ns 510010 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29038353ns 510013 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29038637ns 510018 1a110850 fd5ff06f jal x0, -44 +29038921ns 510023 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29039205ns 510028 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29039603ns 510035 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29039774ns 510038 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29040228ns 510046 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29040399ns 510049 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29040683ns 510054 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29040967ns 510059 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29041251ns 510064 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29041706ns 510072 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29041877ns 510075 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29042161ns 510080 1a110850 fd5ff06f jal x0, -44 +29042445ns 510085 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29042729ns 510090 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29043127ns 510097 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29043297ns 510100 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29043752ns 510108 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29043922ns 510111 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29044207ns 510116 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29044491ns 510121 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29044775ns 510126 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29045230ns 510134 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29045400ns 510137 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29045684ns 510142 1a110850 fd5ff06f jal x0, -44 +29045968ns 510147 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29046253ns 510152 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29046650ns 510159 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29046821ns 510162 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29047276ns 510170 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29047446ns 510173 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29047730ns 510178 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29048014ns 510183 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29048299ns 510188 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29048753ns 510196 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29048924ns 510199 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29049208ns 510204 1a110850 fd5ff06f jal x0, -44 +29049492ns 510209 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29049776ns 510214 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29050174ns 510221 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29050344ns 510224 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29050799ns 510232 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29050970ns 510235 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29051254ns 510240 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29051538ns 510245 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29051822ns 510250 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29052277ns 510258 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29052447ns 510261 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29052731ns 510266 1a110850 fd5ff06f jal x0, -44 +29053016ns 510271 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29053300ns 510276 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29053698ns 510283 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29053868ns 510286 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29054323ns 510294 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29054493ns 510297 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29054777ns 510302 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29055062ns 510307 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29055346ns 510312 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29055800ns 510320 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29055971ns 510323 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29056255ns 510328 1a110850 fd5ff06f jal x0, -44 +29056539ns 510333 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29056823ns 510338 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29057221ns 510345 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29057392ns 510348 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29057846ns 510356 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29058017ns 510359 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29058301ns 510364 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29058585ns 510369 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29058869ns 510374 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29059324ns 510382 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29059494ns 510385 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29059779ns 510390 1a110850 fd5ff06f jal x0, -44 +29060063ns 510395 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29060347ns 510400 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29060745ns 510407 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29060915ns 510410 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29061370ns 510418 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29061540ns 510421 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29061825ns 510426 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29062109ns 510431 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29062393ns 510436 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29062848ns 510444 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29063018ns 510447 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29063302ns 510452 1a110850 fd5ff06f jal x0, -44 +29063586ns 510457 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29063871ns 510462 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29064268ns 510469 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29064439ns 510472 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29064893ns 510480 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29065064ns 510483 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29065348ns 510488 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29065632ns 510493 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29065916ns 510498 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29066371ns 510506 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29066542ns 510509 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29066826ns 510514 1a110850 fd5ff06f jal x0, -44 +29067110ns 510519 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29067394ns 510524 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29067792ns 510531 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29067962ns 510534 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29068417ns 510542 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29068588ns 510545 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29068872ns 510550 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29069156ns 510555 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29069440ns 510560 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29069895ns 510568 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29070065ns 510571 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29070349ns 510576 1a110850 fd5ff06f jal x0, -44 +29070634ns 510581 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29070918ns 510586 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29071315ns 510593 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29071486ns 510596 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29071941ns 510604 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29072111ns 510607 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29072395ns 510612 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29072679ns 510617 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29072964ns 510622 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29073418ns 510630 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29073589ns 510633 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29073873ns 510638 1a110850 fd5ff06f jal x0, -44 +29074157ns 510643 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29074441ns 510648 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29074839ns 510655 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29075010ns 510658 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29075464ns 510666 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29075635ns 510669 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29075919ns 510674 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29076203ns 510679 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29076487ns 510684 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29076942ns 510692 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29077112ns 510695 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29077397ns 510700 1a110850 fd5ff06f jal x0, -44 +29077681ns 510705 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29077965ns 510710 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29078363ns 510717 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29078533ns 510720 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29078988ns 510728 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29079158ns 510731 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29079442ns 510736 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29079727ns 510741 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29080011ns 510746 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29080465ns 510754 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29080636ns 510757 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29080920ns 510762 1a110850 fd5ff06f jal x0, -44 +29081204ns 510767 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29081488ns 510772 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29081886ns 510779 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29082057ns 510782 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29082511ns 510790 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29082682ns 510793 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29082966ns 510798 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29083250ns 510803 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29083534ns 510808 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29083989ns 510816 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29084160ns 510819 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29084444ns 510824 1a110850 fd5ff06f jal x0, -44 +29084728ns 510829 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29085012ns 510834 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29085410ns 510841 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29085580ns 510844 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29086035ns 510852 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29086205ns 510855 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29086490ns 510860 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29086774ns 510865 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29087058ns 510870 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29087513ns 510878 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29087683ns 510881 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29087967ns 510886 1a110850 fd5ff06f jal x0, -44 +29088251ns 510891 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29088536ns 510896 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29088933ns 510903 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29089104ns 510906 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29089559ns 510914 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29089729ns 510917 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29090013ns 510922 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29090297ns 510927 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29090582ns 510932 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29091036ns 510940 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29091207ns 510943 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29091491ns 510948 1a110850 fd5ff06f jal x0, -44 +29091775ns 510953 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29092059ns 510958 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29092457ns 510965 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29092627ns 510968 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29093082ns 510976 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29093253ns 510979 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29093537ns 510984 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29093821ns 510989 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29094105ns 510994 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29094560ns 511002 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29094730ns 511005 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29095014ns 511010 1a110850 fd5ff06f jal x0, -44 +29095299ns 511015 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29095583ns 511020 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29095981ns 511027 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29096151ns 511030 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29096606ns 511038 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29096776ns 511041 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29097060ns 511046 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29097345ns 511051 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29097629ns 511056 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29098083ns 511064 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29098254ns 511067 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29098538ns 511072 1a110850 fd5ff06f jal x0, -44 +29098822ns 511077 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29099106ns 511082 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29099504ns 511089 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29099675ns 511092 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29100129ns 511100 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29100300ns 511103 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29100584ns 511108 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29100868ns 511113 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29101152ns 511118 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29101607ns 511126 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29101777ns 511129 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29102062ns 511134 1a110850 fd5ff06f jal x0, -44 +29102346ns 511139 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29102630ns 511144 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29103028ns 511151 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29103198ns 511154 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29103653ns 511162 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29103823ns 511165 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29104108ns 511170 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29104392ns 511175 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29104676ns 511180 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29105131ns 511188 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29105301ns 511191 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29105585ns 511196 1a110850 fd5ff06f jal x0, -44 +29105869ns 511201 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29106154ns 511206 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29106551ns 511213 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29106722ns 511216 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29107176ns 511224 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29107347ns 511227 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29107631ns 511232 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29107915ns 511237 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29108199ns 511242 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29108654ns 511250 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29108825ns 511253 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29109109ns 511258 1a110850 fd5ff06f jal x0, -44 +29109393ns 511263 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29109677ns 511268 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29110075ns 511275 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29110245ns 511278 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29110700ns 511286 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29110871ns 511289 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29111155ns 511294 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29111439ns 511299 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29111723ns 511304 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29112178ns 511312 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29112348ns 511315 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29112632ns 511320 1a110850 fd5ff06f jal x0, -44 +29112917ns 511325 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29113201ns 511330 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29113599ns 511337 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29113769ns 511340 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29114224ns 511348 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29114394ns 511351 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29114678ns 511356 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29114962ns 511361 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29115247ns 511366 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29115701ns 511374 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29115872ns 511377 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29116156ns 511382 1a110850 fd5ff06f jal x0, -44 +29116440ns 511387 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29116724ns 511392 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29117122ns 511399 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29117293ns 511402 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29117747ns 511410 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29117918ns 511413 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29118202ns 511418 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29118486ns 511423 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29118770ns 511428 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29119225ns 511436 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29119395ns 511439 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29119680ns 511444 1a110850 fd5ff06f jal x0, -44 +29119964ns 511449 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29120248ns 511454 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29120646ns 511461 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29120816ns 511464 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29121271ns 511472 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29121441ns 511475 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29121725ns 511480 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29122010ns 511485 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29122294ns 511490 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29122748ns 511498 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29122919ns 511501 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29123203ns 511506 1a110850 fd5ff06f jal x0, -44 +29123487ns 511511 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29123771ns 511516 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29124169ns 511523 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29124340ns 511526 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29124794ns 511534 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29124965ns 511537 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29125249ns 511542 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29125533ns 511547 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29125817ns 511552 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29126272ns 511560 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29126443ns 511563 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29126727ns 511568 1a110850 fd5ff06f jal x0, -44 +29127011ns 511573 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29127295ns 511578 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29127693ns 511585 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29127863ns 511588 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29128318ns 511596 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29128488ns 511599 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29128773ns 511604 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29129057ns 511609 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29129341ns 511614 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29129796ns 511622 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29129966ns 511625 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29130250ns 511630 1a110850 fd5ff06f jal x0, -44 +29130534ns 511635 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29130819ns 511640 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29131216ns 511647 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29131387ns 511650 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29131842ns 511658 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29132012ns 511661 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29132296ns 511666 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29132580ns 511671 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29132865ns 511676 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29133319ns 511684 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29133490ns 511687 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29133774ns 511692 1a110850 fd5ff06f jal x0, -44 +29134058ns 511697 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29134342ns 511702 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29134740ns 511709 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29134911ns 511712 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29135365ns 511720 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29135536ns 511723 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29135820ns 511728 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29136104ns 511733 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29136388ns 511738 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29136843ns 511746 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29137013ns 511749 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29137297ns 511754 1a110850 fd5ff06f jal x0, -44 +29137582ns 511759 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29137866ns 511764 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29138264ns 511771 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29138434ns 511774 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29138889ns 511782 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29139059ns 511785 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29139343ns 511790 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29139628ns 511795 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29139912ns 511800 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29140366ns 511808 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29140537ns 511811 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29140821ns 511816 1a110850 fd5ff06f jal x0, -44 +29141105ns 511821 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29141389ns 511826 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29141787ns 511833 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29141958ns 511836 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29142412ns 511844 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29142583ns 511847 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29142867ns 511852 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29143151ns 511857 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29143435ns 511862 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29143890ns 511870 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29144060ns 511873 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29144345ns 511878 1a110850 fd5ff06f jal x0, -44 +29144629ns 511883 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29144913ns 511888 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29145311ns 511895 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29145481ns 511898 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29145936ns 511906 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29146106ns 511909 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29146391ns 511914 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29146675ns 511919 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29146959ns 511924 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29147414ns 511932 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29147584ns 511935 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29147868ns 511940 1a110850 fd5ff06f jal x0, -44 +29148152ns 511945 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29148437ns 511950 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29148834ns 511957 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29149005ns 511960 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29149459ns 511968 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29149630ns 511971 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29149914ns 511976 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29150198ns 511981 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29150482ns 511986 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29150937ns 511994 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29151108ns 511997 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29151392ns 512002 1a110850 fd5ff06f jal x0, -44 +29151676ns 512007 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29151960ns 512012 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29152358ns 512019 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29152528ns 512022 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29152983ns 512030 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29153154ns 512033 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29153438ns 512038 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29153722ns 512043 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29154006ns 512048 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29154461ns 512056 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29154631ns 512059 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29154915ns 512064 1a110850 fd5ff06f jal x0, -44 +29155200ns 512069 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29155484ns 512074 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29155882ns 512081 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29156052ns 512084 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29156507ns 512092 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29156677ns 512095 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29156961ns 512100 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29157245ns 512105 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29157530ns 512110 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29157984ns 512118 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29158155ns 512121 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29158439ns 512126 1a110850 fd5ff06f jal x0, -44 +29158723ns 512131 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29159007ns 512136 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29159405ns 512143 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29159576ns 512146 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29160030ns 512154 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29160201ns 512157 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29160485ns 512162 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29160769ns 512167 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29161053ns 512172 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29161508ns 512180 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29161678ns 512183 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29161963ns 512188 1a110850 fd5ff06f jal x0, -44 +29162247ns 512193 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29162531ns 512198 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29162929ns 512205 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29163099ns 512208 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29163554ns 512216 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29163724ns 512219 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29164008ns 512224 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29164293ns 512229 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29164577ns 512234 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29165031ns 512242 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29165202ns 512245 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29165486ns 512250 1a110850 fd5ff06f jal x0, -44 +29165770ns 512255 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29166054ns 512260 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29166452ns 512267 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29166623ns 512270 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29167077ns 512278 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29167248ns 512281 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29167532ns 512286 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29167816ns 512291 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29168100ns 512296 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29168555ns 512304 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29168726ns 512307 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29169010ns 512312 1a110850 fd5ff06f jal x0, -44 +29169294ns 512317 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29169578ns 512322 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29169976ns 512329 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29170146ns 512332 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29170601ns 512340 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29170771ns 512343 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29171056ns 512348 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29171340ns 512353 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29171624ns 512358 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29172079ns 512366 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29172249ns 512369 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29172533ns 512374 1a110850 fd5ff06f jal x0, -44 +29172817ns 512379 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29173102ns 512384 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29173499ns 512391 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29173670ns 512394 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29174125ns 512402 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29174295ns 512405 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29174579ns 512410 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29174863ns 512415 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29175148ns 512420 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29175602ns 512428 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29175773ns 512431 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29176057ns 512436 1a110850 fd5ff06f jal x0, -44 +29176341ns 512441 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29176625ns 512446 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29177023ns 512453 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29177194ns 512456 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29177648ns 512464 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29177819ns 512467 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29178103ns 512472 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29178387ns 512477 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29178671ns 512482 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29179126ns 512490 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29179296ns 512493 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29179580ns 512498 1a110850 fd5ff06f jal x0, -44 +29179865ns 512503 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29180149ns 512508 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29180547ns 512515 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29180717ns 512518 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29181172ns 512526 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29181342ns 512529 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29181626ns 512534 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29181911ns 512539 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29182195ns 512544 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29182649ns 512552 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29182820ns 512555 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29183104ns 512560 1a110850 fd5ff06f jal x0, -44 +29183388ns 512565 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29183672ns 512570 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29184070ns 512577 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29184241ns 512580 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29184695ns 512588 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29184866ns 512591 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29185150ns 512596 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29185434ns 512601 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29185718ns 512606 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29186173ns 512614 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29186343ns 512617 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29186628ns 512622 1a110850 fd5ff06f jal x0, -44 +29186912ns 512627 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29187196ns 512632 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29187594ns 512639 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29187764ns 512642 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29188219ns 512650 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29188389ns 512653 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29188674ns 512658 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29188958ns 512663 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29189242ns 512668 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29189697ns 512676 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29189867ns 512679 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29190151ns 512684 1a110850 fd5ff06f jal x0, -44 +29190435ns 512689 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29190720ns 512694 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29191117ns 512701 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29191288ns 512704 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29191743ns 512712 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29191913ns 512715 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29192197ns 512720 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29192481ns 512725 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29192765ns 512730 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29193220ns 512738 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29193391ns 512741 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29193675ns 512746 1a110850 fd5ff06f jal x0, -44 +29193959ns 512751 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29194243ns 512756 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29194641ns 512763 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29194811ns 512766 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29195266ns 512774 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29195437ns 512777 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29195721ns 512782 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29196005ns 512787 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29196289ns 512792 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29196744ns 512800 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29196914ns 512803 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29197198ns 512808 1a110850 fd5ff06f jal x0, -44 +29197483ns 512813 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29197767ns 512818 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29198165ns 512825 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29198335ns 512828 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29198790ns 512836 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29198960ns 512839 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29199244ns 512844 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29199528ns 512849 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29199813ns 512854 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29200267ns 512862 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29200438ns 512865 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29200722ns 512870 1a110850 fd5ff06f jal x0, -44 +29201006ns 512875 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29201290ns 512880 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29201688ns 512887 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29201859ns 512890 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29202313ns 512898 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29202484ns 512901 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29202768ns 512906 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29203052ns 512911 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29203336ns 512916 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29203791ns 512924 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29203961ns 512927 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29204246ns 512932 1a110850 fd5ff06f jal x0, -44 +29204530ns 512937 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29204814ns 512942 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29205212ns 512949 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29205382ns 512952 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29205837ns 512960 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29206007ns 512963 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29206291ns 512968 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29206576ns 512973 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29206860ns 512978 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29207314ns 512986 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29207485ns 512989 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29207769ns 512994 1a110850 fd5ff06f jal x0, -44 +29208053ns 512999 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29208337ns 513004 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29208735ns 513011 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29208906ns 513014 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29209360ns 513022 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29209531ns 513025 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29209815ns 513030 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29210099ns 513035 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29210383ns 513040 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29210838ns 513048 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29211009ns 513051 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29211293ns 513056 1a110850 fd5ff06f jal x0, -44 +29211577ns 513061 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29211861ns 513066 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29212259ns 513073 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29212429ns 513076 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29212884ns 513084 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29213055ns 513087 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29213339ns 513092 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29213623ns 513097 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29213907ns 513102 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29214362ns 513110 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29214532ns 513113 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29214816ns 513118 1a110850 fd5ff06f jal x0, -44 +29215100ns 513123 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29215385ns 513128 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29215782ns 513135 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29215953ns 513138 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29216408ns 513146 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29216578ns 513149 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29216862ns 513154 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29217146ns 513159 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29217431ns 513164 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29217885ns 513172 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29218056ns 513175 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29218340ns 513180 1a110850 fd5ff06f jal x0, -44 +29218624ns 513185 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29218908ns 513190 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29219306ns 513197 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29219477ns 513200 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29219931ns 513208 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29220102ns 513211 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29220386ns 513216 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29220670ns 513221 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29220954ns 513226 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29221409ns 513234 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29221579ns 513237 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29221863ns 513242 1a110850 fd5ff06f jal x0, -44 +29222148ns 513247 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29222432ns 513252 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29222830ns 513259 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29223000ns 513262 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29223455ns 513270 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29223625ns 513273 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29223909ns 513278 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29224194ns 513283 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29224478ns 513288 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29224932ns 513296 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29225103ns 513299 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29225387ns 513304 1a110850 fd5ff06f jal x0, -44 +29225671ns 513309 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29225955ns 513314 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29226353ns 513321 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29226524ns 513324 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29226978ns 513332 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29227149ns 513335 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29227433ns 513340 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29227717ns 513345 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29228001ns 513350 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29228456ns 513358 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29228626ns 513361 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29228911ns 513366 1a110850 fd5ff06f jal x0, -44 +29229195ns 513371 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29229479ns 513376 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29229877ns 513383 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29230047ns 513386 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29230502ns 513394 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29230672ns 513397 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29230957ns 513402 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29231241ns 513407 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29231525ns 513412 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29231980ns 513420 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29232150ns 513423 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29232434ns 513428 1a110850 fd5ff06f jal x0, -44 +29232718ns 513433 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29233003ns 513438 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29233400ns 513445 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29233571ns 513448 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29234026ns 513456 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29234196ns 513459 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29234480ns 513464 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29234764ns 513469 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29235048ns 513474 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29235503ns 513482 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29235674ns 513485 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29235958ns 513490 1a110850 fd5ff06f jal x0, -44 +29236242ns 513495 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29236526ns 513500 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29236924ns 513507 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29237094ns 513510 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29237549ns 513518 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29237720ns 513521 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29238004ns 513526 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29238288ns 513531 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29238572ns 513536 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29239027ns 513544 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29239197ns 513547 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29239481ns 513552 1a110850 fd5ff06f jal x0, -44 +29239766ns 513557 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29240050ns 513562 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29240448ns 513569 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29240618ns 513572 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29241073ns 513580 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29241243ns 513583 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29241527ns 513588 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29241811ns 513593 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29242096ns 513598 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29242550ns 513606 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29242721ns 513609 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29243005ns 513614 1a110850 fd5ff06f jal x0, -44 +29243289ns 513619 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29243573ns 513624 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29243971ns 513631 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29244142ns 513634 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29244596ns 513642 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29244767ns 513645 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29245051ns 513650 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29245335ns 513655 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29245619ns 513660 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29246074ns 513668 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29246244ns 513671 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29246529ns 513676 1a110850 fd5ff06f jal x0, -44 +29246813ns 513681 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29247097ns 513686 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29247495ns 513693 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29247665ns 513696 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29248120ns 513704 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29248290ns 513707 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29248575ns 513712 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29248859ns 513717 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29249143ns 513722 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29249597ns 513730 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29249768ns 513733 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29250052ns 513738 1a110850 fd5ff06f jal x0, -44 +29250336ns 513743 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29250620ns 513748 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29251018ns 513755 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29251189ns 513758 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29251643ns 513766 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29251814ns 513769 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29252098ns 513774 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29252382ns 513779 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29252666ns 513784 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29253121ns 513792 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29253292ns 513795 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29253576ns 513800 1a110850 fd5ff06f jal x0, -44 +29253860ns 513805 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29254144ns 513810 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29254542ns 513817 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29254712ns 513820 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29255167ns 513828 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29255338ns 513831 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29255622ns 513836 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29255906ns 513841 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29256190ns 513846 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29256645ns 513854 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29256815ns 513857 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29257099ns 513862 1a110850 fd5ff06f jal x0, -44 +29257383ns 513867 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29257668ns 513872 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29258065ns 513879 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29258236ns 513882 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29258691ns 513890 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29258861ns 513893 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29259145ns 513898 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29259429ns 513903 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29259714ns 513908 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29260168ns 513916 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29260339ns 513919 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29260623ns 513924 1a110850 fd5ff06f jal x0, -44 +29260907ns 513929 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29261191ns 513934 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29261589ns 513941 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29261760ns 513944 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29262214ns 513952 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29262385ns 513955 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29262669ns 513960 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29262953ns 513965 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29263237ns 513970 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29263692ns 513978 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29263862ns 513981 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29264146ns 513986 1a110850 fd5ff06f jal x0, -44 +29264431ns 513991 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29264715ns 513996 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29265113ns 514003 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29265283ns 514006 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29265738ns 514014 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29265908ns 514017 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29266192ns 514022 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29266477ns 514027 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29266761ns 514032 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29267215ns 514040 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29267386ns 514043 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29267670ns 514048 1a110850 fd5ff06f jal x0, -44 +29267954ns 514053 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29268238ns 514058 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29268636ns 514065 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29268807ns 514068 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29269261ns 514076 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29269432ns 514079 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29269716ns 514084 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29270000ns 514089 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29270284ns 514094 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29270739ns 514102 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29270909ns 514105 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29271194ns 514110 1a110850 fd5ff06f jal x0, -44 +29271478ns 514115 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29271762ns 514120 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29272160ns 514127 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29272330ns 514130 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29272785ns 514138 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29272955ns 514141 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29273240ns 514146 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29273524ns 514151 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29273808ns 514156 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29274263ns 514164 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29274433ns 514167 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29274717ns 514172 1a110850 fd5ff06f jal x0, -44 +29275001ns 514177 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29275286ns 514182 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29275683ns 514189 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29275854ns 514192 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29276309ns 514200 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29276479ns 514203 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29276763ns 514208 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29277047ns 514213 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29277331ns 514218 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29277786ns 514226 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29277957ns 514229 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29278241ns 514234 1a110850 fd5ff06f jal x0, -44 +29278525ns 514239 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29278809ns 514244 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29279207ns 514251 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29279377ns 514254 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29279832ns 514262 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29280003ns 514265 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29280287ns 514270 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29280571ns 514275 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29280855ns 514280 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29281310ns 514288 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29281480ns 514291 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29281764ns 514296 1a110850 fd5ff06f jal x0, -44 +29282049ns 514301 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29282333ns 514306 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29282731ns 514313 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29282901ns 514316 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29283356ns 514324 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29283526ns 514327 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29283810ns 514332 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29284095ns 514337 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29284379ns 514342 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29284833ns 514350 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29285004ns 514353 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29285288ns 514358 1a110850 fd5ff06f jal x0, -44 +29285572ns 514363 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29285856ns 514368 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29286254ns 514375 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29286425ns 514378 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29286879ns 514386 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29287050ns 514389 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29287334ns 514394 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29287618ns 514399 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29287902ns 514404 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29288357ns 514412 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29288527ns 514415 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29288812ns 514420 1a110850 fd5ff06f jal x0, -44 +29289096ns 514425 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29289380ns 514430 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29289778ns 514437 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29289948ns 514440 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29290403ns 514448 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29290573ns 514451 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29290858ns 514456 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29291142ns 514461 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29291426ns 514466 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29291880ns 514474 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29292051ns 514477 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29292335ns 514482 1a110850 fd5ff06f jal x0, -44 +29292619ns 514487 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29292903ns 514492 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29293301ns 514499 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29293472ns 514502 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29293926ns 514510 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29294097ns 514513 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29294381ns 514518 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29294665ns 514523 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29294949ns 514528 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29295404ns 514536 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29295575ns 514539 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29295859ns 514544 1a110850 fd5ff06f jal x0, -44 +29296143ns 514549 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29296427ns 514554 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29296825ns 514561 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29296995ns 514564 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29297450ns 514572 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29297621ns 514575 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29297905ns 514580 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29298189ns 514585 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29298473ns 514590 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29298928ns 514598 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29299098ns 514601 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29299382ns 514606 1a110850 fd5ff06f jal x0, -44 +29299666ns 514611 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29299951ns 514616 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29300348ns 514623 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29300519ns 514626 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29300974ns 514634 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29301144ns 514637 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29301428ns 514642 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29301712ns 514647 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29301997ns 514652 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29302451ns 514660 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29302622ns 514663 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29302906ns 514668 1a110850 fd5ff06f jal x0, -44 +29303190ns 514673 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29303474ns 514678 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29303872ns 514685 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29304043ns 514688 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29304497ns 514696 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29304668ns 514699 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29304952ns 514704 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29305236ns 514709 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29305520ns 514714 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29305975ns 514722 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29306145ns 514725 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29306429ns 514730 1a110850 fd5ff06f jal x0, -44 +29306714ns 514735 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29306998ns 514740 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29307396ns 514747 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29307566ns 514750 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29308021ns 514758 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29308191ns 514761 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29308475ns 514766 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29308760ns 514771 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29309044ns 514776 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29309498ns 514784 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29309669ns 514787 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29309953ns 514792 1a110850 fd5ff06f jal x0, -44 +29310237ns 514797 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29310521ns 514802 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29310919ns 514809 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29311090ns 514812 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29311544ns 514820 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29311715ns 514823 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29311999ns 514828 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29312283ns 514833 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29312567ns 514838 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29313022ns 514846 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29313192ns 514849 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29313477ns 514854 1a110850 fd5ff06f jal x0, -44 +29313761ns 514859 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29314045ns 514864 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29314443ns 514871 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29314613ns 514874 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29315068ns 514882 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29315238ns 514885 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29315523ns 514890 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29315807ns 514895 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29316091ns 514900 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29316546ns 514908 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29316716ns 514911 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29317000ns 514916 1a110850 fd5ff06f jal x0, -44 +29317284ns 514921 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29317569ns 514926 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29317966ns 514933 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29318137ns 514936 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29318592ns 514944 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29318762ns 514947 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29319046ns 514952 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29319330ns 514957 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29319615ns 514962 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29320069ns 514970 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29320240ns 514973 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29320524ns 514978 1a110850 fd5ff06f jal x0, -44 +29320808ns 514983 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29321092ns 514988 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29321490ns 514995 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29321660ns 514998 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29322115ns 515006 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29322286ns 515009 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29322570ns 515014 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29322854ns 515019 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29323138ns 515024 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29323593ns 515032 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29323763ns 515035 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29324047ns 515040 1a110850 fd5ff06f jal x0, -44 +29324332ns 515045 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29324616ns 515050 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29325014ns 515057 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29325184ns 515060 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29325639ns 515068 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29325809ns 515071 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29326093ns 515076 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29326378ns 515081 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29326662ns 515086 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29327116ns 515094 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29327287ns 515097 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29327571ns 515102 1a110850 fd5ff06f jal x0, -44 +29327855ns 515107 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29328139ns 515112 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29328537ns 515119 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29328708ns 515122 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29329162ns 515130 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29329333ns 515133 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29329617ns 515138 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29329901ns 515143 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29330185ns 515148 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29330640ns 515156 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29330810ns 515159 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29331095ns 515164 1a110850 fd5ff06f jal x0, -44 +29331379ns 515169 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29331663ns 515174 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29332061ns 515181 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29332231ns 515184 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29332686ns 515192 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29332856ns 515195 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29333141ns 515200 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29333425ns 515205 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29333709ns 515210 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29334163ns 515218 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29334334ns 515221 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29334618ns 515226 1a110850 fd5ff06f jal x0, -44 +29334902ns 515231 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29335186ns 515236 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29335584ns 515243 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29335755ns 515246 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29336209ns 515254 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29336380ns 515257 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29336664ns 515262 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29336948ns 515267 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29337232ns 515272 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29337687ns 515280 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29337858ns 515283 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29338142ns 515288 1a110850 fd5ff06f jal x0, -44 +29338426ns 515293 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29338710ns 515298 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29339108ns 515305 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29339278ns 515308 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29339733ns 515316 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29339904ns 515319 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29340188ns 515324 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29340472ns 515329 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29340756ns 515334 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29341211ns 515342 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29341381ns 515345 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29341665ns 515350 1a110850 fd5ff06f jal x0, -44 +29341949ns 515355 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29342234ns 515360 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29342631ns 515367 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29342802ns 515370 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29343257ns 515378 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29343427ns 515381 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29343711ns 515386 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29343995ns 515391 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29344280ns 515396 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29344734ns 515404 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29344905ns 515407 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29345189ns 515412 1a110850 fd5ff06f jal x0, -44 +29345473ns 515417 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29345757ns 515422 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29346155ns 515429 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29346326ns 515432 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29346780ns 515440 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29346951ns 515443 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29347235ns 515448 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29347519ns 515453 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29347803ns 515458 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29348258ns 515466 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29348428ns 515469 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29348712ns 515474 1a110850 fd5ff06f jal x0, -44 +29348997ns 515479 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29349281ns 515484 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29349679ns 515491 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29349849ns 515494 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29350304ns 515502 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29350474ns 515505 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29350758ns 515510 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29351043ns 515515 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29351327ns 515520 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29351781ns 515528 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29351952ns 515531 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29352236ns 515536 1a110850 fd5ff06f jal x0, -44 +29352520ns 515541 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29352804ns 515546 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29353202ns 515553 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29353373ns 515556 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29353827ns 515564 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29353998ns 515567 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29354282ns 515572 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29354566ns 515577 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29354850ns 515582 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29355305ns 515590 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29355475ns 515593 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29355760ns 515598 1a110850 fd5ff06f jal x0, -44 +29356044ns 515603 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29356328ns 515608 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29356726ns 515615 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29356896ns 515618 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29357351ns 515626 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29357521ns 515629 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29357806ns 515634 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29358090ns 515639 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29358374ns 515644 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29358829ns 515652 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29358999ns 515655 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29359283ns 515660 1a110850 fd5ff06f jal x0, -44 +29359567ns 515665 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29359852ns 515670 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29360249ns 515677 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29360420ns 515680 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29360875ns 515688 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29361045ns 515691 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29361329ns 515696 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29361613ns 515701 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29361898ns 515706 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29362352ns 515714 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29362523ns 515717 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29362807ns 515722 1a110850 fd5ff06f jal x0, -44 +29363091ns 515727 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29363375ns 515732 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29363773ns 515739 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29363943ns 515742 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29364398ns 515750 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29364569ns 515753 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29364853ns 515758 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29365137ns 515763 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29365421ns 515768 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29365876ns 515776 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29366046ns 515779 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29366330ns 515784 1a110850 fd5ff06f jal x0, -44 +29366615ns 515789 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29366899ns 515794 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29367297ns 515801 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29367467ns 515804 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29367922ns 515812 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29368092ns 515815 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29368376ns 515820 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29368661ns 515825 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29368945ns 515830 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29369399ns 515838 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29369570ns 515841 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29369854ns 515846 1a110850 fd5ff06f jal x0, -44 +29370138ns 515851 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29370422ns 515856 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29370820ns 515863 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29370991ns 515866 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29371445ns 515874 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29371616ns 515877 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29371900ns 515882 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29372184ns 515887 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29372468ns 515892 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29372923ns 515900 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29373093ns 515903 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29373378ns 515908 1a110850 fd5ff06f jal x0, -44 +29373662ns 515913 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29373946ns 515918 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29374344ns 515925 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29374514ns 515928 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29374969ns 515936 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29375139ns 515939 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29375424ns 515944 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29375708ns 515949 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29375992ns 515954 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29376447ns 515962 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29376617ns 515965 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29376901ns 515970 1a110850 fd5ff06f jal x0, -44 +29377185ns 515975 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29377469ns 515980 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29377867ns 515987 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29378038ns 515990 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29378492ns 515998 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29378663ns 516001 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29378947ns 516006 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29379231ns 516011 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29379515ns 516016 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29379970ns 516024 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29380141ns 516027 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29380425ns 516032 1a110850 fd5ff06f jal x0, -44 +29380709ns 516037 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29380993ns 516042 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29381391ns 516049 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29381561ns 516052 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29382016ns 516060 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29382187ns 516063 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29382471ns 516068 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29382755ns 516073 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29383039ns 516078 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29383494ns 516086 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29383664ns 516089 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29383948ns 516094 1a110850 fd5ff06f jal x0, -44 +29384232ns 516099 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29384517ns 516104 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29384914ns 516111 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29385085ns 516114 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29385540ns 516122 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29385710ns 516125 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29385994ns 516130 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29386278ns 516135 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29386563ns 516140 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29387017ns 516148 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29387188ns 516151 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29387472ns 516156 1a110850 fd5ff06f jal x0, -44 +29387756ns 516161 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29388040ns 516166 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29388438ns 516173 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29388609ns 516176 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29389063ns 516184 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29389234ns 516187 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29389518ns 516192 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29389802ns 516197 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29390086ns 516202 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29390541ns 516210 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29390711ns 516213 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29390995ns 516218 1a110850 fd5ff06f jal x0, -44 +29391280ns 516223 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29391564ns 516228 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29391962ns 516235 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29392132ns 516238 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29392587ns 516246 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29392757ns 516249 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29393041ns 516254 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29393326ns 516259 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29393610ns 516264 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29394064ns 516272 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29394235ns 516275 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29394519ns 516280 1a110850 fd5ff06f jal x0, -44 +29394803ns 516285 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29395087ns 516290 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29395485ns 516297 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29395656ns 516300 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29396110ns 516308 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29396281ns 516311 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29396565ns 516316 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29396849ns 516321 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29397133ns 516326 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29397588ns 516334 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29397759ns 516337 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29398043ns 516342 1a110850 fd5ff06f jal x0, -44 +29398327ns 516347 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29398611ns 516352 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29399009ns 516359 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29399179ns 516362 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29399634ns 516370 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29399804ns 516373 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29400089ns 516378 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29400373ns 516383 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29400657ns 516388 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29401112ns 516396 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29401282ns 516399 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29401566ns 516404 1a110850 fd5ff06f jal x0, -44 +29401850ns 516409 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29402135ns 516414 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29402532ns 516421 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29402703ns 516424 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29403158ns 516432 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29403328ns 516435 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29403612ns 516440 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29403896ns 516445 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29404181ns 516450 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29404635ns 516458 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29404806ns 516461 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29405090ns 516466 1a110850 fd5ff06f jal x0, -44 +29405374ns 516471 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29405658ns 516476 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29406056ns 516483 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29406226ns 516486 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29406681ns 516494 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29406852ns 516497 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29407136ns 516502 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29407420ns 516507 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29407704ns 516512 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29408159ns 516520 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29408329ns 516523 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29408613ns 516528 1a110850 fd5ff06f jal x0, -44 +29408898ns 516533 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29409182ns 516538 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29409580ns 516545 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29409750ns 516548 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29410205ns 516556 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29410375ns 516559 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29410659ns 516564 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29410944ns 516569 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29411228ns 516574 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29411682ns 516582 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29411853ns 516585 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29412137ns 516590 1a110850 fd5ff06f jal x0, -44 +29412421ns 516595 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29412705ns 516600 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29413103ns 516607 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29413274ns 516610 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29413728ns 516618 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29413899ns 516621 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29414183ns 516626 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29414467ns 516631 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29414751ns 516636 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29415206ns 516644 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29415376ns 516647 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29415661ns 516652 1a110850 fd5ff06f jal x0, -44 +29415945ns 516657 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29416229ns 516662 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29416627ns 516669 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29416797ns 516672 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29417252ns 516680 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29417422ns 516683 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29417707ns 516688 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29417991ns 516693 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29418275ns 516698 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29418730ns 516706 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29418900ns 516709 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29419184ns 516714 1a110850 fd5ff06f jal x0, -44 +29419468ns 516719 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29419752ns 516724 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29420150ns 516731 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29420321ns 516734 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29420775ns 516742 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29420946ns 516745 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29421230ns 516750 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29421514ns 516755 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29421798ns 516760 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29422253ns 516768 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29422424ns 516771 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29422708ns 516776 1a110850 fd5ff06f jal x0, -44 +29422992ns 516781 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29423276ns 516786 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29423674ns 516793 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29423844ns 516796 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29424299ns 516804 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29424470ns 516807 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29424754ns 516812 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29425038ns 516817 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29425322ns 516822 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29425777ns 516830 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29425947ns 516833 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29426231ns 516838 1a110850 fd5ff06f jal x0, -44 +29426515ns 516843 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29426800ns 516848 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29427197ns 516855 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29427368ns 516858 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29427823ns 516866 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29427993ns 516869 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29428277ns 516874 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29428561ns 516879 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29428846ns 516884 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29429300ns 516892 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29429471ns 516895 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29429755ns 516900 1a110850 fd5ff06f jal x0, -44 +29430039ns 516905 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29430323ns 516910 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29430721ns 516917 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29430892ns 516920 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29431346ns 516928 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29431517ns 516931 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29431801ns 516936 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29432085ns 516941 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29432369ns 516946 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29432824ns 516954 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29432994ns 516957 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29433279ns 516962 1a110850 fd5ff06f jal x0, -44 +29433563ns 516967 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29433847ns 516972 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29434245ns 516979 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29434415ns 516982 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29434870ns 516990 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29435040ns 516993 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29435324ns 516998 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29435609ns 517003 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29435893ns 517008 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29436347ns 517016 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29436518ns 517019 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29436802ns 517024 1a110850 fd5ff06f jal x0, -44 +29437086ns 517029 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29437370ns 517034 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29437768ns 517041 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29437939ns 517044 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29438393ns 517052 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29438564ns 517055 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29438848ns 517060 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29439132ns 517065 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29439416ns 517070 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29439871ns 517078 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29440042ns 517081 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29440326ns 517086 1a110850 fd5ff06f jal x0, -44 +29440610ns 517091 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29440894ns 517096 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29441292ns 517103 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29441462ns 517106 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29441917ns 517114 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29442087ns 517117 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29442372ns 517122 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29442656ns 517127 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29442940ns 517132 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29443395ns 517140 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29443565ns 517143 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29443849ns 517148 1a110850 fd5ff06f jal x0, -44 +29444133ns 517153 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29444418ns 517158 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29444815ns 517165 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29444986ns 517168 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29445441ns 517176 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29445611ns 517179 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29445895ns 517184 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29446179ns 517189 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29446464ns 517194 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29446918ns 517202 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29447089ns 517205 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29447373ns 517210 1a110850 fd5ff06f jal x0, -44 +29447657ns 517215 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29447941ns 517220 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29448339ns 517227 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29448509ns 517230 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29448964ns 517238 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29449135ns 517241 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29449419ns 517246 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29449703ns 517251 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29449987ns 517256 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29450442ns 517264 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29450612ns 517267 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29450896ns 517272 1a110850 fd5ff06f jal x0, -44 +29451181ns 517277 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29451465ns 517282 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29451863ns 517289 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29452033ns 517292 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29452488ns 517300 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29452658ns 517303 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29452942ns 517308 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29453227ns 517313 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29453511ns 517318 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29453965ns 517326 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29454136ns 517329 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29454420ns 517334 1a110850 fd5ff06f jal x0, -44 +29454704ns 517339 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29454988ns 517344 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29455386ns 517351 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29455557ns 517354 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29456011ns 517362 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29456182ns 517365 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29456466ns 517370 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29456750ns 517375 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29457034ns 517380 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29457489ns 517388 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29457659ns 517391 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29457944ns 517396 1a110850 fd5ff06f jal x0, -44 +29458228ns 517401 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29458512ns 517406 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29458910ns 517413 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29459080ns 517416 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29459535ns 517424 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29459705ns 517427 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29459990ns 517432 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29460274ns 517437 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29460558ns 517442 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29461013ns 517450 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29461183ns 517453 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29461467ns 517458 1a110850 fd5ff06f jal x0, -44 +29461751ns 517463 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29462035ns 517468 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29462433ns 517475 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29462604ns 517478 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29463058ns 517486 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29463229ns 517489 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29463513ns 517494 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29463797ns 517499 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29464081ns 517504 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29464536ns 517512 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29464707ns 517515 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29464991ns 517520 1a110850 fd5ff06f jal x0, -44 +29465275ns 517525 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29465559ns 517530 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29465957ns 517537 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29466127ns 517540 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29466582ns 517548 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29466753ns 517551 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29467037ns 517556 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29467321ns 517561 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29467605ns 517566 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29468060ns 517574 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29468230ns 517577 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29468514ns 517582 1a110850 fd5ff06f jal x0, -44 +29468799ns 517587 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29469083ns 517592 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29469480ns 517599 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29469651ns 517602 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29470106ns 517610 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29470276ns 517613 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29470560ns 517618 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29470844ns 517623 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29471129ns 517628 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29471583ns 517636 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29471754ns 517639 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29472038ns 517644 1a110850 fd5ff06f jal x0, -44 +29472322ns 517649 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29472606ns 517654 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29473004ns 517661 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29473175ns 517664 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29473629ns 517672 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29473800ns 517675 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29474084ns 517680 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29474368ns 517685 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29474652ns 517690 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29475107ns 517698 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29475277ns 517701 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29475562ns 517706 1a110850 fd5ff06f jal x0, -44 +29475846ns 517711 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29476130ns 517716 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29476528ns 517723 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29476698ns 517726 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29477153ns 517734 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29477323ns 517737 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29477607ns 517742 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29477892ns 517747 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29478176ns 517752 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29478630ns 517760 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29478801ns 517763 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29479085ns 517768 1a110850 fd5ff06f jal x0, -44 +29479369ns 517773 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29479653ns 517778 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29480051ns 517785 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29480222ns 517788 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29480676ns 517796 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29480847ns 517799 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29481131ns 517804 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29481415ns 517809 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29481699ns 517814 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29482154ns 517822 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29482325ns 517825 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29482609ns 517830 1a110850 fd5ff06f jal x0, -44 +29482893ns 517835 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29483177ns 517840 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29483575ns 517847 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29483745ns 517850 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29484200ns 517858 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29484370ns 517861 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29484655ns 517866 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29484939ns 517871 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29485223ns 517876 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29485678ns 517884 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29485848ns 517887 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29486132ns 517892 1a110850 fd5ff06f jal x0, -44 +29486416ns 517897 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29486701ns 517902 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29487098ns 517909 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29487269ns 517912 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29487724ns 517920 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29487894ns 517923 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29488178ns 517928 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29488462ns 517933 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29488747ns 517938 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29489201ns 517946 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29489372ns 517949 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29489656ns 517954 1a110850 fd5ff06f jal x0, -44 +29489940ns 517959 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29490224ns 517964 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29490622ns 517971 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29490792ns 517974 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29491247ns 517982 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29491418ns 517985 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29491702ns 517990 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29491986ns 517995 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29492270ns 518000 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29492725ns 518008 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29492895ns 518011 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29493179ns 518016 1a110850 fd5ff06f jal x0, -44 +29493464ns 518021 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29493748ns 518026 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29494146ns 518033 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29494316ns 518036 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29494771ns 518044 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29494941ns 518047 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29495225ns 518052 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29495510ns 518057 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29495794ns 518062 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29496248ns 518070 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29496419ns 518073 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29496703ns 518078 1a110850 fd5ff06f jal x0, -44 +29496987ns 518083 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29497271ns 518088 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29497669ns 518095 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29497840ns 518098 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29498294ns 518106 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29498465ns 518109 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29498749ns 518114 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29499033ns 518119 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29499317ns 518124 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29499772ns 518132 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29499942ns 518135 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29500227ns 518140 1a110850 fd5ff06f jal x0, -44 +29500511ns 518145 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29500795ns 518150 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29501193ns 518157 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29501363ns 518160 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29501818ns 518168 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29501988ns 518171 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29502273ns 518176 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29502557ns 518181 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29502841ns 518186 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29503296ns 518194 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29503466ns 518197 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29503750ns 518202 1a110850 fd5ff06f jal x0, -44 +29504034ns 518207 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29504319ns 518212 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29504716ns 518219 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29504887ns 518222 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29505341ns 518230 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29505512ns 518233 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29505796ns 518238 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29506080ns 518243 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29506364ns 518248 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29506819ns 518256 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29506990ns 518259 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29507274ns 518264 1a110850 fd5ff06f jal x0, -44 +29507558ns 518269 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29507842ns 518274 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29508240ns 518281 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29508410ns 518284 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29508865ns 518292 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29509036ns 518295 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29509320ns 518300 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29509604ns 518305 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29509888ns 518310 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29510343ns 518318 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29510513ns 518321 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29510797ns 518326 1a110850 fd5ff06f jal x0, -44 +29511082ns 518331 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29511366ns 518336 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29511763ns 518343 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29511934ns 518346 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29512389ns 518354 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29512559ns 518357 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29512843ns 518362 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29513127ns 518367 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29513412ns 518372 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29513866ns 518380 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29514037ns 518383 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29514321ns 518388 1a110850 fd5ff06f jal x0, -44 +29514605ns 518393 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29514889ns 518398 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29515287ns 518405 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29515458ns 518408 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29515912ns 518416 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29516083ns 518419 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29516367ns 518424 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29516651ns 518429 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29516935ns 518434 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29517390ns 518442 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29517560ns 518445 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29517845ns 518450 1a110850 fd5ff06f jal x0, -44 +29518129ns 518455 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29518413ns 518460 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29518811ns 518467 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29518981ns 518470 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29519436ns 518478 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29519606ns 518481 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29519890ns 518486 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29520175ns 518491 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29520459ns 518496 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29520913ns 518504 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29521084ns 518507 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29521368ns 518512 1a110850 fd5ff06f jal x0, -44 +29521652ns 518517 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29521936ns 518522 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29522334ns 518529 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29522505ns 518532 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29522959ns 518540 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29523130ns 518543 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29523414ns 518548 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29523698ns 518553 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29523982ns 518558 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29524437ns 518566 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29524608ns 518569 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29524892ns 518574 1a110850 fd5ff06f jal x0, -44 +29525176ns 518579 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29525460ns 518584 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29525858ns 518591 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29526028ns 518594 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29526483ns 518602 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29526653ns 518605 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29526938ns 518610 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29527222ns 518615 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29527506ns 518620 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29527961ns 518628 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29528131ns 518631 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29528415ns 518636 1a110850 fd5ff06f jal x0, -44 +29528699ns 518641 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29528984ns 518646 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29529381ns 518653 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29529552ns 518656 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29530007ns 518664 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29530177ns 518667 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29530461ns 518672 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29530745ns 518677 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29531030ns 518682 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29531484ns 518690 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29531655ns 518693 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29531939ns 518698 1a110850 fd5ff06f jal x0, -44 +29532223ns 518703 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29532507ns 518708 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29532905ns 518715 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29533075ns 518718 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29533530ns 518726 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29533701ns 518729 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29533985ns 518734 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29534269ns 518739 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29534553ns 518744 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29535008ns 518752 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29535178ns 518755 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29535462ns 518760 1a110850 fd5ff06f jal x0, -44 +29535747ns 518765 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29536031ns 518770 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29536429ns 518777 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29536599ns 518780 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29537054ns 518788 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29537224ns 518791 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29537508ns 518796 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29537793ns 518801 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29538077ns 518806 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29538531ns 518814 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29538702ns 518817 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29538986ns 518822 1a110850 fd5ff06f jal x0, -44 +29539270ns 518827 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29539554ns 518832 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29539952ns 518839 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29540123ns 518842 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29540577ns 518850 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29540748ns 518853 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29541032ns 518858 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29541316ns 518863 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29541600ns 518868 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29542055ns 518876 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29542225ns 518879 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29542510ns 518884 1a110850 fd5ff06f jal x0, -44 +29542794ns 518889 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29543078ns 518894 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29543476ns 518901 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29543646ns 518904 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29544101ns 518912 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29544271ns 518915 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29544556ns 518920 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29544840ns 518925 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29545124ns 518930 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29545579ns 518938 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29545749ns 518941 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29546033ns 518946 1a110850 fd5ff06f jal x0, -44 +29546317ns 518951 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29546602ns 518956 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29546999ns 518963 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29547170ns 518966 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29547624ns 518974 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29547795ns 518977 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29548079ns 518982 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29548363ns 518987 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29548647ns 518992 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29549102ns 519000 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29549273ns 519003 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29549557ns 519008 1a110850 fd5ff06f jal x0, -44 +29549841ns 519013 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29550125ns 519018 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29550523ns 519025 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29550693ns 519028 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29551148ns 519036 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29551319ns 519039 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29551603ns 519044 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29551887ns 519049 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29552171ns 519054 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29552626ns 519062 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29552796ns 519065 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29553080ns 519070 1a110850 fd5ff06f jal x0, -44 +29553365ns 519075 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29553649ns 519080 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29554047ns 519087 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29554217ns 519090 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29554672ns 519098 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29554842ns 519101 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29555126ns 519106 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29555410ns 519111 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29555695ns 519116 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29556149ns 519124 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29556320ns 519127 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29556604ns 519132 1a110850 fd5ff06f jal x0, -44 +29556888ns 519137 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29557172ns 519142 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29557570ns 519149 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29557741ns 519152 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29558195ns 519160 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29558366ns 519163 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29558650ns 519168 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29558934ns 519173 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29559218ns 519178 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29559673ns 519186 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29559843ns 519189 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29560128ns 519194 1a110850 fd5ff06f jal x0, -44 +29560412ns 519199 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29560696ns 519204 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29561094ns 519211 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29561264ns 519214 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29561719ns 519222 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29561889ns 519225 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29562173ns 519230 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29562458ns 519235 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29562742ns 519240 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29563196ns 519248 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29563367ns 519251 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29563651ns 519256 1a110850 fd5ff06f jal x0, -44 +29563935ns 519261 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29564219ns 519266 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29564617ns 519273 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29564788ns 519276 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29565242ns 519284 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29565413ns 519287 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29565697ns 519292 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29565981ns 519297 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29566265ns 519302 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29566720ns 519310 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29566891ns 519313 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29567175ns 519318 1a110850 fd5ff06f jal x0, -44 +29567459ns 519323 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29567743ns 519328 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29568141ns 519335 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29568311ns 519338 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29568766ns 519346 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29568936ns 519349 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29569221ns 519354 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29569505ns 519359 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29569789ns 519364 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29570244ns 519372 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29570414ns 519375 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29570698ns 519380 1a110850 fd5ff06f jal x0, -44 +29570982ns 519385 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29571267ns 519390 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29571664ns 519397 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29571835ns 519400 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29572290ns 519408 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29572460ns 519411 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29572744ns 519416 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29573028ns 519421 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29573313ns 519426 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29573767ns 519434 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29573938ns 519437 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29574222ns 519442 1a110850 fd5ff06f jal x0, -44 +29574506ns 519447 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29574790ns 519452 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29575188ns 519459 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29575359ns 519462 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29575813ns 519470 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29575984ns 519473 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29576268ns 519478 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29576552ns 519483 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29576836ns 519488 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29577291ns 519496 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29577461ns 519499 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29577745ns 519504 1a110850 fd5ff06f jal x0, -44 +29578030ns 519509 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29578314ns 519514 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29578712ns 519521 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29578882ns 519524 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29579337ns 519532 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29579507ns 519535 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29579791ns 519540 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29580076ns 519545 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29580360ns 519550 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29580814ns 519558 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29580985ns 519561 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29581269ns 519566 1a110850 fd5ff06f jal x0, -44 +29581553ns 519571 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29581837ns 519576 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29582235ns 519583 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29582406ns 519586 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29582860ns 519594 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29583031ns 519597 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29583315ns 519602 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29583599ns 519607 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29583883ns 519612 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29584338ns 519620 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29584508ns 519623 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29584793ns 519628 1a110850 fd5ff06f jal x0, -44 +29585077ns 519633 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29585361ns 519638 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29585759ns 519645 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29585929ns 519648 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29586384ns 519656 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29586554ns 519659 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29586839ns 519664 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29587123ns 519669 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29587407ns 519674 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29587862ns 519682 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29588032ns 519685 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29588316ns 519690 1a110850 fd5ff06f jal x0, -44 +29588600ns 519695 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29588885ns 519700 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29589282ns 519707 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29589453ns 519710 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29589907ns 519718 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29590078ns 519721 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29590362ns 519726 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29590646ns 519731 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29590930ns 519736 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29591385ns 519744 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29591556ns 519747 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29591840ns 519752 1a110850 fd5ff06f jal x0, -44 +29592124ns 519757 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29592408ns 519762 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29592806ns 519769 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29592976ns 519772 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29593431ns 519780 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29593602ns 519783 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29593886ns 519788 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29594170ns 519793 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29594454ns 519798 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29594909ns 519806 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29595079ns 519809 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29595363ns 519814 1a110850 fd5ff06f jal x0, -44 +29595648ns 519819 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29595932ns 519824 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29596330ns 519831 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29596500ns 519834 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29596955ns 519842 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29597125ns 519845 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29597409ns 519850 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29597693ns 519855 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29597978ns 519860 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29598432ns 519868 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29598603ns 519871 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29598887ns 519876 1a110850 fd5ff06f jal x0, -44 +29599171ns 519881 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29599455ns 519886 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29599853ns 519893 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29600024ns 519896 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29600478ns 519904 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29600649ns 519907 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29600933ns 519912 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29601217ns 519917 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29601501ns 519922 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29601956ns 519930 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29602126ns 519933 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29602411ns 519938 1a110850 fd5ff06f jal x0, -44 +29602695ns 519943 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29602979ns 519948 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29603377ns 519955 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29603547ns 519958 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29604002ns 519966 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29604172ns 519969 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29604456ns 519974 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29604741ns 519979 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29605025ns 519984 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29605479ns 519992 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29605650ns 519995 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29605934ns 520000 1a110850 fd5ff06f jal x0, -44 +29606218ns 520005 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29606502ns 520010 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29606900ns 520017 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29607071ns 520020 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29607525ns 520028 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29607696ns 520031 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29607980ns 520036 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29608264ns 520041 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29608548ns 520046 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29609003ns 520054 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29609174ns 520057 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29609458ns 520062 1a110850 fd5ff06f jal x0, -44 +29609742ns 520067 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29610026ns 520072 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29610424ns 520079 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29610594ns 520082 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29611049ns 520090 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29611219ns 520093 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29611504ns 520098 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29611788ns 520103 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29612072ns 520108 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29612527ns 520116 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29612697ns 520119 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29612981ns 520124 1a110850 fd5ff06f jal x0, -44 +29613265ns 520129 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29613550ns 520134 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29613947ns 520141 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29614118ns 520144 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29614573ns 520152 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29614743ns 520155 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29615027ns 520160 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29615311ns 520165 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29615596ns 520170 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29616050ns 520178 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29616221ns 520181 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29616505ns 520186 1a110850 fd5ff06f jal x0, -44 +29616789ns 520191 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29617073ns 520196 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29617471ns 520203 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29617642ns 520206 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29618096ns 520214 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29618267ns 520217 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29618551ns 520222 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29618835ns 520227 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29619119ns 520232 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29619574ns 520240 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29619744ns 520243 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29620028ns 520248 1a110850 fd5ff06f jal x0, -44 +29620313ns 520253 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29620597ns 520258 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29620995ns 520265 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29621165ns 520268 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29621620ns 520276 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29621790ns 520279 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29622074ns 520284 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29622359ns 520289 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29622643ns 520294 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29623097ns 520302 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29623268ns 520305 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29623552ns 520310 1a110850 fd5ff06f jal x0, -44 +29623836ns 520315 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29624120ns 520320 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29624518ns 520327 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29624689ns 520330 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29625143ns 520338 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29625314ns 520341 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29625598ns 520346 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29625882ns 520351 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29626166ns 520356 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29626621ns 520364 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29626791ns 520367 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29627076ns 520372 1a110850 fd5ff06f jal x0, -44 +29627360ns 520377 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29627644ns 520382 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29628042ns 520389 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29628212ns 520392 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29628667ns 520400 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29628837ns 520403 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29629122ns 520408 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29629406ns 520413 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29629690ns 520418 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29630145ns 520426 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29630315ns 520429 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29630599ns 520434 1a110850 fd5ff06f jal x0, -44 +29630883ns 520439 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29631168ns 520444 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29631565ns 520451 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29631736ns 520454 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29632191ns 520462 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29632361ns 520465 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29632645ns 520470 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29632929ns 520475 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29633213ns 520480 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29633668ns 520488 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29633839ns 520491 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29634123ns 520496 1a110850 fd5ff06f jal x0, -44 +29634407ns 520501 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29634691ns 520506 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29635089ns 520513 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29635259ns 520516 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29635714ns 520524 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29635885ns 520527 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29636169ns 520532 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29636453ns 520537 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29636737ns 520542 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29637192ns 520550 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29637362ns 520553 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29637646ns 520558 1a110850 fd5ff06f jal x0, -44 +29637931ns 520563 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29638215ns 520568 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29638613ns 520575 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29638783ns 520578 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29639238ns 520586 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29639408ns 520589 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29639692ns 520594 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29639976ns 520599 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29640261ns 520604 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29640715ns 520612 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29640886ns 520615 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29641170ns 520620 1a110850 fd5ff06f jal x0, -44 +29641454ns 520625 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29641738ns 520630 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29642136ns 520637 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29642307ns 520640 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29642761ns 520648 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29642932ns 520651 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29643216ns 520656 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29643500ns 520661 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29643784ns 520666 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29644239ns 520674 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29644409ns 520677 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29644694ns 520682 1a110850 fd5ff06f jal x0, -44 +29644978ns 520687 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29645262ns 520692 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29645660ns 520699 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29645830ns 520702 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29646285ns 520710 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29646455ns 520713 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29646739ns 520718 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29647024ns 520723 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29647308ns 520728 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29647762ns 520736 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29647933ns 520739 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29648217ns 520744 1a110850 fd5ff06f jal x0, -44 +29648501ns 520749 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29648785ns 520754 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29649183ns 520761 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29649354ns 520764 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29649808ns 520772 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29649979ns 520775 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29650263ns 520780 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29650547ns 520785 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29650831ns 520790 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29651286ns 520798 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29651457ns 520801 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29651741ns 520806 1a110850 fd5ff06f jal x0, -44 +29652025ns 520811 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29652309ns 520816 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29652707ns 520823 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29652877ns 520826 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29653332ns 520834 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29653503ns 520837 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29653787ns 520842 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29654071ns 520847 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29654355ns 520852 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29654810ns 520860 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29654980ns 520863 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29655264ns 520868 1a110850 fd5ff06f jal x0, -44 +29655548ns 520873 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29655833ns 520878 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29656230ns 520885 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29656401ns 520888 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29656856ns 520896 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29657026ns 520899 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29657310ns 520904 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29657594ns 520909 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29657879ns 520914 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29658333ns 520922 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29658504ns 520925 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29658788ns 520930 1a110850 fd5ff06f jal x0, -44 +29659072ns 520935 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29659356ns 520940 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29659754ns 520947 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29659925ns 520950 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29660379ns 520958 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29660550ns 520961 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29660834ns 520966 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29661118ns 520971 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29661402ns 520976 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29661857ns 520984 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29662027ns 520987 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29662311ns 520992 1a110850 fd5ff06f jal x0, -44 +29662596ns 520997 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29662880ns 521002 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29663278ns 521009 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29663448ns 521012 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29663903ns 521020 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29664073ns 521023 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29664357ns 521028 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29664642ns 521033 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29664926ns 521038 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29665380ns 521046 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29665551ns 521049 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29665835ns 521054 1a110850 fd5ff06f jal x0, -44 +29666119ns 521059 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29666403ns 521064 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29666801ns 521071 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29666972ns 521074 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29667426ns 521082 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29667597ns 521085 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29667881ns 521090 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29668165ns 521095 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29668449ns 521100 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29668904ns 521108 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29669074ns 521111 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29669359ns 521116 1a110850 fd5ff06f jal x0, -44 +29669643ns 521121 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29669927ns 521126 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29670325ns 521133 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29670495ns 521136 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29670950ns 521144 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29671120ns 521147 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29671405ns 521152 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29671689ns 521157 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29671973ns 521162 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29672428ns 521170 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29672598ns 521173 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29672882ns 521178 1a110850 fd5ff06f jal x0, -44 +29673166ns 521183 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29673451ns 521188 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29673848ns 521195 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29674019ns 521198 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29674474ns 521206 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29674644ns 521209 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29674928ns 521214 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29675212ns 521219 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29675496ns 521224 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29675951ns 521232 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29676122ns 521235 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29676406ns 521240 1a110850 fd5ff06f jal x0, -44 +29676690ns 521245 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29676974ns 521250 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29677372ns 521257 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29677542ns 521260 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29677997ns 521268 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29678168ns 521271 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29678452ns 521276 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29678736ns 521281 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29679020ns 521286 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29679475ns 521294 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29679645ns 521297 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29679929ns 521302 1a110850 fd5ff06f jal x0, -44 +29680214ns 521307 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29680498ns 521312 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29680896ns 521319 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29681066ns 521322 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29681521ns 521330 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29681691ns 521333 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29681975ns 521338 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29682259ns 521343 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29682544ns 521348 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29682998ns 521356 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29683169ns 521359 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29683453ns 521364 1a110850 fd5ff06f jal x0, -44 +29683737ns 521369 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29684021ns 521374 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29684419ns 521381 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29684590ns 521384 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29685044ns 521392 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29685215ns 521395 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29685499ns 521400 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29685783ns 521405 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29686067ns 521410 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29686522ns 521418 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29686692ns 521421 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29686977ns 521426 1a110850 fd5ff06f jal x0, -44 +29687261ns 521431 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29687545ns 521436 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29687943ns 521443 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29688113ns 521446 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29688568ns 521454 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29688738ns 521457 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29689023ns 521462 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29689307ns 521467 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29689591ns 521472 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29690045ns 521480 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29690216ns 521483 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29690500ns 521488 1a110850 fd5ff06f jal x0, -44 +29690784ns 521493 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29691068ns 521498 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29691466ns 521505 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29691637ns 521508 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29692091ns 521516 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29692262ns 521519 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29692546ns 521524 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29692830ns 521529 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29693114ns 521534 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29693569ns 521542 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29693740ns 521545 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29694024ns 521550 1a110850 fd5ff06f jal x0, -44 +29694308ns 521555 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29694592ns 521560 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29694990ns 521567 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29695160ns 521570 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29695615ns 521578 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29695786ns 521581 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29696070ns 521586 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29696354ns 521591 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29696638ns 521596 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29697093ns 521604 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29697263ns 521607 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29697547ns 521612 1a110850 fd5ff06f jal x0, -44 +29697831ns 521617 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29698116ns 521622 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29698513ns 521629 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29698684ns 521632 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29699139ns 521640 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29699309ns 521643 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29699593ns 521648 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29699877ns 521653 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29700162ns 521658 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29700616ns 521666 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29700787ns 521669 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29701071ns 521674 1a110850 fd5ff06f jal x0, -44 +29701355ns 521679 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29701639ns 521684 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29702037ns 521691 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29702208ns 521694 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29702662ns 521702 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29702833ns 521705 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29703117ns 521710 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29703401ns 521715 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29703685ns 521720 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29704140ns 521728 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29704310ns 521731 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29704594ns 521736 1a110850 fd5ff06f jal x0, -44 +29704879ns 521741 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29705163ns 521746 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29705561ns 521753 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29705731ns 521756 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29706186ns 521764 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29706356ns 521767 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29706640ns 521772 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29706925ns 521777 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29707209ns 521782 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29707663ns 521790 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29707834ns 521793 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29708118ns 521798 1a110850 fd5ff06f jal x0, -44 +29708402ns 521803 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29708686ns 521808 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29709084ns 521815 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29709255ns 521818 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29709709ns 521826 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29709880ns 521829 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29710164ns 521834 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29710448ns 521839 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29710732ns 521844 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29711187ns 521852 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29711357ns 521855 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29711642ns 521860 1a110850 fd5ff06f jal x0, -44 +29711926ns 521865 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29712210ns 521870 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29712608ns 521877 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29712778ns 521880 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29713233ns 521888 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29713403ns 521891 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29713688ns 521896 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29713972ns 521901 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29714256ns 521906 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29714711ns 521914 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29714881ns 521917 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29715165ns 521922 1a110850 fd5ff06f jal x0, -44 +29715449ns 521927 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29715734ns 521932 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29716131ns 521939 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29716302ns 521942 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29716757ns 521950 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29716927ns 521953 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29717211ns 521958 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29717495ns 521963 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29717779ns 521968 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29718234ns 521976 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29718405ns 521979 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29718689ns 521984 1a110850 fd5ff06f jal x0, -44 +29718973ns 521989 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29719257ns 521994 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29719655ns 522001 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29719825ns 522004 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29720280ns 522012 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29720451ns 522015 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29720735ns 522020 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29721019ns 522025 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29721303ns 522030 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29721758ns 522038 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29721928ns 522041 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29722212ns 522046 1a110850 fd5ff06f jal x0, -44 +29722497ns 522051 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29722781ns 522056 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29723179ns 522063 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29723349ns 522066 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29723804ns 522074 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29723974ns 522077 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29724258ns 522082 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29724543ns 522087 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29724827ns 522092 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29725281ns 522100 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29725452ns 522103 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29725736ns 522108 1a110850 fd5ff06f jal x0, -44 +29726020ns 522113 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29726304ns 522118 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29726702ns 522125 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29726873ns 522128 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29727327ns 522136 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29727498ns 522139 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29727782ns 522144 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29728066ns 522149 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29728350ns 522154 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29728805ns 522162 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29728975ns 522165 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29729260ns 522170 1a110850 fd5ff06f jal x0, -44 +29729544ns 522175 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29729828ns 522180 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29730226ns 522187 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29730396ns 522190 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29730851ns 522198 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29731021ns 522201 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29731306ns 522206 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29731590ns 522211 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29731874ns 522216 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29732328ns 522224 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29732499ns 522227 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29732783ns 522232 1a110850 fd5ff06f jal x0, -44 +29733067ns 522237 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29733351ns 522242 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29733749ns 522249 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29733920ns 522252 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29734374ns 522260 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29734545ns 522263 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29734829ns 522268 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29735113ns 522273 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29735397ns 522278 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29735852ns 522286 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29736023ns 522289 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29736307ns 522294 1a110850 fd5ff06f jal x0, -44 +29736591ns 522299 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29736875ns 522304 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29737273ns 522311 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29737443ns 522314 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29737898ns 522322 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29738069ns 522325 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29738353ns 522330 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29738637ns 522335 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29738921ns 522340 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29739376ns 522348 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29739546ns 522351 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29739830ns 522356 1a110850 fd5ff06f jal x0, -44 +29740114ns 522361 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29740399ns 522366 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29740796ns 522373 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29740967ns 522376 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29741422ns 522384 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29741592ns 522387 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29741876ns 522392 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29742160ns 522397 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29742445ns 522402 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29742899ns 522410 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29743070ns 522413 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29743354ns 522418 1a110850 fd5ff06f jal x0, -44 +29743638ns 522423 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29743922ns 522428 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29744320ns 522435 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29744491ns 522438 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29744945ns 522446 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29745116ns 522449 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29745400ns 522454 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29745684ns 522459 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29745968ns 522464 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29746423ns 522472 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29746593ns 522475 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29746877ns 522480 1a110850 fd5ff06f jal x0, -44 +29747162ns 522485 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29747446ns 522490 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29747844ns 522497 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29748014ns 522500 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29748469ns 522508 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29748639ns 522511 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29748923ns 522516 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29749208ns 522521 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29749492ns 522526 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29749946ns 522534 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29750117ns 522537 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29750401ns 522542 1a110850 fd5ff06f jal x0, -44 +29750685ns 522547 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29750969ns 522552 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29751367ns 522559 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29751538ns 522562 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29751992ns 522570 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29752163ns 522573 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29752447ns 522578 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29752731ns 522583 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29753015ns 522588 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29753470ns 522596 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29753640ns 522599 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29753925ns 522604 1a110850 fd5ff06f jal x0, -44 +29754209ns 522609 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29754493ns 522614 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29754891ns 522621 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29755061ns 522624 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29755516ns 522632 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29755686ns 522635 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29755971ns 522640 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29756255ns 522645 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29756539ns 522650 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29756994ns 522658 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29757164ns 522661 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29757448ns 522666 1a110850 fd5ff06f jal x0, -44 +29757732ns 522671 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29758017ns 522676 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29758414ns 522683 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29758585ns 522686 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29759040ns 522694 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29759210ns 522697 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29759494ns 522702 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29759778ns 522707 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29760063ns 522712 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29760517ns 522720 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29760688ns 522723 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29760972ns 522728 1a110850 fd5ff06f jal x0, -44 +29761256ns 522733 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29761540ns 522738 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29761938ns 522745 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29762108ns 522748 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29762563ns 522756 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29762734ns 522759 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29763018ns 522764 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29763302ns 522769 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29763586ns 522774 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29764041ns 522782 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29764211ns 522785 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29764495ns 522790 1a110850 fd5ff06f jal x0, -44 +29764780ns 522795 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29765064ns 522800 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29765462ns 522807 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29765632ns 522810 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29766087ns 522818 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29766257ns 522821 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29766541ns 522826 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29766826ns 522831 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29767110ns 522836 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29767564ns 522844 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29767735ns 522847 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29768019ns 522852 1a110850 fd5ff06f jal x0, -44 +29768303ns 522857 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29768587ns 522862 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29768985ns 522869 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29769156ns 522872 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29769610ns 522880 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29769781ns 522883 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29770065ns 522888 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29770349ns 522893 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29770633ns 522898 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29771088ns 522906 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29771258ns 522909 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29771543ns 522914 1a110850 fd5ff06f jal x0, -44 +29771827ns 522919 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29772111ns 522924 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29772509ns 522931 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29772679ns 522934 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29773134ns 522942 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29773304ns 522945 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29773589ns 522950 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29773873ns 522955 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29774157ns 522960 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29774611ns 522968 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29774782ns 522971 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29775066ns 522976 1a110850 fd5ff06f jal x0, -44 +29775350ns 522981 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29775634ns 522986 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29776032ns 522993 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29776203ns 522996 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29776657ns 523004 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29776828ns 523007 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29777112ns 523012 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29777396ns 523017 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29777680ns 523022 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29778135ns 523030 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29778306ns 523033 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29778590ns 523038 1a110850 fd5ff06f jal x0, -44 +29778874ns 523043 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29779158ns 523048 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29779556ns 523055 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29779726ns 523058 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29780181ns 523066 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29780352ns 523069 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29780636ns 523074 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29780920ns 523079 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29781204ns 523084 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29781659ns 523092 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29781829ns 523095 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29782113ns 523100 1a110850 fd5ff06f jal x0, -44 +29782397ns 523105 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29782682ns 523110 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29783079ns 523117 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29783250ns 523120 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29783705ns 523128 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29783875ns 523131 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29784159ns 523136 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29784443ns 523141 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29784728ns 523146 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29785182ns 523154 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29785353ns 523157 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29785637ns 523162 1a110850 fd5ff06f jal x0, -44 +29785921ns 523167 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29786205ns 523172 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29786603ns 523179 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29786774ns 523182 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29787228ns 523190 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29787399ns 523193 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29787683ns 523198 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29787967ns 523203 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29788251ns 523208 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29788706ns 523216 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29788876ns 523219 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29789160ns 523224 1a110850 fd5ff06f jal x0, -44 +29789445ns 523229 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29789729ns 523234 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29790127ns 523241 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29790297ns 523244 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29790752ns 523252 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29790922ns 523255 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29791206ns 523260 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29791491ns 523265 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29791775ns 523270 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29792229ns 523278 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29792400ns 523281 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29792684ns 523286 1a110850 fd5ff06f jal x0, -44 +29792968ns 523291 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29793252ns 523296 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29793650ns 523303 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29793821ns 523306 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29794275ns 523314 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29794446ns 523317 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29794730ns 523322 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29795014ns 523327 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29795298ns 523332 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29795753ns 523340 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29795923ns 523343 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29796208ns 523348 1a110850 fd5ff06f jal x0, -44 +29796492ns 523353 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29796776ns 523358 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29797174ns 523365 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29797344ns 523368 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29797799ns 523376 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29797969ns 523379 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29798254ns 523384 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29798538ns 523389 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29798822ns 523394 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29799277ns 523402 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29799447ns 523405 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29799731ns 523410 1a110850 fd5ff06f jal x0, -44 +29800015ns 523415 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29800300ns 523420 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29800697ns 523427 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29800868ns 523430 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29801323ns 523438 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29801493ns 523441 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29801777ns 523446 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29802061ns 523451 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29802346ns 523456 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29802800ns 523464 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29802971ns 523467 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29803255ns 523472 1a110850 fd5ff06f jal x0, -44 +29803539ns 523477 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29803823ns 523482 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29804221ns 523489 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29804391ns 523492 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29804846ns 523500 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29805017ns 523503 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29805301ns 523508 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29805585ns 523513 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29805869ns 523518 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29806324ns 523526 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29806494ns 523529 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29806778ns 523534 1a110850 fd5ff06f jal x0, -44 +29807063ns 523539 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29807347ns 523544 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29807745ns 523551 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29807915ns 523554 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29808370ns 523562 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29808540ns 523565 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29808824ns 523570 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29809109ns 523575 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29809393ns 523580 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29809847ns 523588 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29810018ns 523591 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29810302ns 523596 1a110850 fd5ff06f jal x0, -44 +29810586ns 523601 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29810870ns 523606 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29811268ns 523613 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29811439ns 523616 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29811893ns 523624 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29812064ns 523627 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29812348ns 523632 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29812632ns 523637 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29812916ns 523642 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29813371ns 523650 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29813541ns 523653 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29813826ns 523658 1a110850 fd5ff06f jal x0, -44 +29814110ns 523663 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29814394ns 523668 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29814792ns 523675 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29814962ns 523678 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29815417ns 523686 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29815587ns 523689 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29815872ns 523694 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29816156ns 523699 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29816440ns 523704 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29816895ns 523712 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29817065ns 523715 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29817349ns 523720 1a110850 fd5ff06f jal x0, -44 +29817633ns 523725 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29817917ns 523730 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29818315ns 523737 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29818486ns 523740 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29818940ns 523748 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29819111ns 523751 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29819395ns 523756 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29819679ns 523761 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29819963ns 523766 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29820418ns 523774 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29820589ns 523777 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29820873ns 523782 1a110850 fd5ff06f jal x0, -44 +29821157ns 523787 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29821441ns 523792 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29821839ns 523799 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29822009ns 523802 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29822464ns 523810 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29822635ns 523813 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29822919ns 523818 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29823203ns 523823 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29823487ns 523828 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29823942ns 523836 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29824112ns 523839 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29824396ns 523844 1a110850 fd5ff06f jal x0, -44 +29824680ns 523849 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29824965ns 523854 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29825362ns 523861 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29825533ns 523864 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29825988ns 523872 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29826158ns 523875 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29826442ns 523880 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29826726ns 523885 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29827011ns 523890 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29827465ns 523898 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29827636ns 523901 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29827920ns 523906 1a110850 fd5ff06f jal x0, -44 +29828204ns 523911 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29828488ns 523916 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29828886ns 523923 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29829057ns 523926 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29829511ns 523934 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29829682ns 523937 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29829966ns 523942 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29830250ns 523947 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29830534ns 523952 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29830989ns 523960 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29831159ns 523963 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29831443ns 523968 1a110850 fd5ff06f jal x0, -44 +29831728ns 523973 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29832012ns 523978 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29832410ns 523985 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29832580ns 523988 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29833035ns 523996 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29833205ns 523999 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29833489ns 524004 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29833774ns 524009 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29834058ns 524014 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29834512ns 524022 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29834683ns 524025 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29834967ns 524030 1a110850 fd5ff06f jal x0, -44 +29835251ns 524035 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29835535ns 524040 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29835933ns 524047 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29836104ns 524050 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29836558ns 524058 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29836729ns 524061 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29837013ns 524066 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29837297ns 524071 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29837581ns 524076 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29838036ns 524084 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29838207ns 524087 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29838491ns 524092 1a110850 fd5ff06f jal x0, -44 +29838775ns 524097 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29839059ns 524102 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29839457ns 524109 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29839627ns 524112 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29840082ns 524120 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29840252ns 524123 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29840537ns 524128 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29840821ns 524133 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29841105ns 524138 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29841560ns 524146 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29841730ns 524149 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29842014ns 524154 1a110850 fd5ff06f jal x0, -44 +29842298ns 524159 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29842583ns 524164 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29842980ns 524171 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29843151ns 524174 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29843606ns 524182 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29843776ns 524185 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29844060ns 524190 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29844344ns 524195 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29844629ns 524200 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29845083ns 524208 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29845254ns 524211 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29845538ns 524216 1a110850 fd5ff06f jal x0, -44 +29845822ns 524221 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29846106ns 524226 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29846504ns 524233 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29846674ns 524236 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29847129ns 524244 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29847300ns 524247 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29847584ns 524252 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29847868ns 524257 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29848152ns 524262 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29848607ns 524270 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29848777ns 524273 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29849061ns 524278 1a110850 fd5ff06f jal x0, -44 +29849346ns 524283 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29849630ns 524288 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29850028ns 524295 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29850198ns 524298 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29850653ns 524306 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29850823ns 524309 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29851107ns 524314 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29851392ns 524319 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29851676ns 524324 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29852130ns 524332 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29852301ns 524335 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29852585ns 524340 1a110850 fd5ff06f jal x0, -44 +29852869ns 524345 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29853153ns 524350 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29853551ns 524357 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29853722ns 524360 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29854176ns 524368 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29854347ns 524371 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29854631ns 524376 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29854915ns 524381 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29855199ns 524386 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29855654ns 524394 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29855824ns 524397 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29856109ns 524402 1a110850 fd5ff06f jal x0, -44 +29856393ns 524407 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29856677ns 524412 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29857075ns 524419 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29857245ns 524422 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29857700ns 524430 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29857870ns 524433 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29858155ns 524438 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29858439ns 524443 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29858723ns 524448 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29859178ns 524456 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29859348ns 524459 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29859632ns 524464 1a110850 fd5ff06f jal x0, -44 +29859916ns 524469 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29860200ns 524474 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29860598ns 524481 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29860769ns 524484 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29861223ns 524492 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29861394ns 524495 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29861678ns 524500 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29861962ns 524505 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29862246ns 524510 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29862701ns 524518 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29862872ns 524521 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29863156ns 524526 1a110850 fd5ff06f jal x0, -44 +29863440ns 524531 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29863724ns 524536 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29864122ns 524543 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29864292ns 524546 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29864747ns 524554 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29864918ns 524557 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29865202ns 524562 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29865486ns 524567 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29865770ns 524572 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29866225ns 524580 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29866395ns 524583 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29866679ns 524588 1a110850 fd5ff06f jal x0, -44 +29866963ns 524593 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29867248ns 524598 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29867645ns 524605 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29867816ns 524608 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29868271ns 524616 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29868441ns 524619 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29868725ns 524624 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29869009ns 524629 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29869294ns 524634 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29869748ns 524642 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29869919ns 524645 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29870203ns 524650 1a110850 fd5ff06f jal x0, -44 +29870487ns 524655 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29870771ns 524660 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29871169ns 524667 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29871340ns 524670 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29871794ns 524678 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29871965ns 524681 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29872249ns 524686 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29872533ns 524691 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29872817ns 524696 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29873272ns 524704 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29873442ns 524707 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29873727ns 524712 1a110850 fd5ff06f jal x0, -44 +29874011ns 524717 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29874295ns 524722 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29874693ns 524729 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29874863ns 524732 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29875318ns 524740 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29875488ns 524743 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29875772ns 524748 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29876057ns 524753 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29876341ns 524758 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29876795ns 524766 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29876966ns 524769 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29877250ns 524774 1a110850 fd5ff06f jal x0, -44 +29877534ns 524779 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29877818ns 524784 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29878216ns 524791 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29878387ns 524794 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29878841ns 524802 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29879012ns 524805 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29879296ns 524810 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29879580ns 524815 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29879864ns 524820 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29880319ns 524828 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29880490ns 524831 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29880774ns 524836 1a110850 fd5ff06f jal x0, -44 +29881058ns 524841 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29881342ns 524846 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29881740ns 524853 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29881910ns 524856 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29882365ns 524864 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29882535ns 524867 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29882820ns 524872 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29883104ns 524877 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29883388ns 524882 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29883843ns 524890 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29884013ns 524893 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29884297ns 524898 1a110850 fd5ff06f jal x0, -44 +29884581ns 524903 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29884866ns 524908 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29885263ns 524915 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29885434ns 524918 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29885889ns 524926 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29886059ns 524929 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29886343ns 524934 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29886627ns 524939 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29886912ns 524944 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29887366ns 524952 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29887537ns 524955 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29887821ns 524960 1a110850 fd5ff06f jal x0, -44 +29888105ns 524965 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29888389ns 524970 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29888787ns 524977 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29888957ns 524980 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29889412ns 524988 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29889583ns 524991 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29889867ns 524996 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29890151ns 525001 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29890435ns 525006 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29890890ns 525014 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29891060ns 525017 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29891344ns 525022 1a110850 fd5ff06f jal x0, -44 +29891629ns 525027 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29891913ns 525032 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29892311ns 525039 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29892481ns 525042 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29892936ns 525050 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29893106ns 525053 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29893390ns 525058 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29893675ns 525063 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29893959ns 525068 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29894413ns 525076 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29894584ns 525079 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29894868ns 525084 1a110850 fd5ff06f jal x0, -44 +29895152ns 525089 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29895436ns 525094 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29895834ns 525101 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29896005ns 525104 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29896459ns 525112 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29896630ns 525115 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29896914ns 525120 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29897198ns 525125 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29897482ns 525130 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29897937ns 525138 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29898107ns 525141 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29898392ns 525146 1a110850 fd5ff06f jal x0, -44 +29898676ns 525151 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29898960ns 525156 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29899358ns 525163 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29899528ns 525166 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29899983ns 525174 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29900153ns 525177 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29900438ns 525182 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29900722ns 525187 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29901006ns 525192 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29901461ns 525200 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29901631ns 525203 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29901915ns 525208 1a110850 fd5ff06f jal x0, -44 +29902199ns 525213 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29902483ns 525218 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29902881ns 525225 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29903052ns 525228 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29903506ns 525236 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29903677ns 525239 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29903961ns 525244 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29904245ns 525249 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29904529ns 525254 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29904984ns 525262 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29905155ns 525265 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29905439ns 525270 1a110850 fd5ff06f jal x0, -44 +29905723ns 525275 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29906007ns 525280 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29906405ns 525287 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29906575ns 525290 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29907030ns 525298 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29907201ns 525301 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29907485ns 525306 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29907769ns 525311 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29908053ns 525316 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29908508ns 525324 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29908678ns 525327 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29908962ns 525332 1a110850 fd5ff06f jal x0, -44 +29909247ns 525337 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29909531ns 525342 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29909928ns 525349 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29910099ns 525352 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29910554ns 525360 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29910724ns 525363 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29911008ns 525368 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29911292ns 525373 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29911577ns 525378 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29912031ns 525386 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29912202ns 525389 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29912486ns 525394 1a110850 fd5ff06f jal x0, -44 +29912770ns 525399 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29913054ns 525404 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29913452ns 525411 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29913623ns 525414 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29914077ns 525422 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29914248ns 525425 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29914532ns 525430 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29914816ns 525435 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29915100ns 525440 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29915555ns 525448 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29915725ns 525451 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29916010ns 525456 1a110850 fd5ff06f jal x0, -44 +29916294ns 525461 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29916578ns 525466 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29916976ns 525473 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29917146ns 525476 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29917601ns 525484 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29917771ns 525487 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29918055ns 525492 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29918340ns 525497 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29918624ns 525502 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29919078ns 525510 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29919249ns 525513 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29919533ns 525518 1a110850 fd5ff06f jal x0, -44 +29919817ns 525523 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29920101ns 525528 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29920499ns 525535 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29920670ns 525538 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29921124ns 525546 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29921295ns 525549 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29921579ns 525554 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29921863ns 525559 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29922147ns 525564 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29922602ns 525572 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29922773ns 525575 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29923057ns 525580 1a110850 fd5ff06f jal x0, -44 +29923341ns 525585 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29923625ns 525590 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29924023ns 525597 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29924193ns 525600 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29924648ns 525608 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29924818ns 525611 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29925103ns 525616 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29925387ns 525621 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29925671ns 525626 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29926126ns 525634 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29926296ns 525637 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29926580ns 525642 1a110850 fd5ff06f jal x0, -44 +29926864ns 525647 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29927149ns 525652 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29927546ns 525659 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29927717ns 525662 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29928172ns 525670 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29928342ns 525673 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29928626ns 525678 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29928910ns 525683 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29929195ns 525688 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29929649ns 525696 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29929820ns 525699 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29930104ns 525704 1a110850 fd5ff06f jal x0, -44 +29930388ns 525709 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29930672ns 525714 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29931070ns 525721 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29931240ns 525724 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29931695ns 525732 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29931866ns 525735 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29932150ns 525740 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29932434ns 525745 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29932718ns 525750 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29933173ns 525758 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29933343ns 525761 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29933627ns 525766 1a110850 fd5ff06f jal x0, -44 +29933912ns 525771 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29934196ns 525776 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29934594ns 525783 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29934764ns 525786 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29935219ns 525794 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29935389ns 525797 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29935673ns 525802 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29935958ns 525807 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29936242ns 525812 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29936696ns 525820 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29936867ns 525823 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29937151ns 525828 1a110850 fd5ff06f jal x0, -44 +29937435ns 525833 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29937719ns 525838 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29938117ns 525845 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29938288ns 525848 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29938742ns 525856 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29938913ns 525859 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29939197ns 525864 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29939481ns 525869 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29939765ns 525874 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29940220ns 525882 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29940390ns 525885 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29940675ns 525890 1a110850 fd5ff06f jal x0, -44 +29940959ns 525895 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29941243ns 525900 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29941641ns 525907 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29941811ns 525910 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29942266ns 525918 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29942436ns 525921 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29942721ns 525926 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29943005ns 525931 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29943289ns 525936 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29943744ns 525944 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29943914ns 525947 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29944198ns 525952 1a110850 fd5ff06f jal x0, -44 +29944482ns 525957 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29944767ns 525962 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29945164ns 525969 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29945335ns 525972 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29945789ns 525980 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29945960ns 525983 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29946244ns 525988 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29946528ns 525993 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29946812ns 525998 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29947267ns 526006 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29947438ns 526009 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29947722ns 526014 1a110850 fd5ff06f jal x0, -44 +29948006ns 526019 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29948290ns 526024 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29948688ns 526031 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29948858ns 526034 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29949313ns 526042 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29949484ns 526045 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29949768ns 526050 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29950052ns 526055 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29950336ns 526060 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29950791ns 526068 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29950961ns 526071 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29951245ns 526076 1a110850 fd5ff06f jal x0, -44 +29951530ns 526081 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29951814ns 526086 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29952211ns 526093 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29952382ns 526096 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29952837ns 526104 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29953007ns 526107 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29953291ns 526112 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29953575ns 526117 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29953860ns 526122 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29954314ns 526130 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29954485ns 526133 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29954769ns 526138 1a110850 fd5ff06f jal x0, -44 +29955053ns 526143 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29955337ns 526148 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29955735ns 526155 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29955906ns 526158 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29956360ns 526166 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29956531ns 526169 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29956815ns 526174 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29957099ns 526179 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29957383ns 526184 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29957838ns 526192 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29958008ns 526195 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29958293ns 526200 1a110850 fd5ff06f jal x0, -44 +29958577ns 526205 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29958861ns 526210 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29959259ns 526217 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29959429ns 526220 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29959884ns 526228 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29960054ns 526231 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29960338ns 526236 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29960623ns 526241 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29960907ns 526246 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29961361ns 526254 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29961532ns 526257 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29961816ns 526262 1a110850 fd5ff06f jal x0, -44 +29962100ns 526267 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29962384ns 526272 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29962782ns 526279 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29962953ns 526282 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29963407ns 526290 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29963578ns 526293 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29963862ns 526298 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29964146ns 526303 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29964430ns 526308 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29964885ns 526316 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29965056ns 526319 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29965340ns 526324 1a110850 fd5ff06f jal x0, -44 +29965624ns 526329 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29965908ns 526334 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29966306ns 526341 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29966476ns 526344 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29966931ns 526352 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29967101ns 526355 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29967386ns 526360 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29967670ns 526365 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29967954ns 526370 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29968409ns 526378 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29968579ns 526381 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29968863ns 526386 1a110850 fd5ff06f jal x0, -44 +29969147ns 526391 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29969432ns 526396 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29969829ns 526403 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29970000ns 526406 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29970455ns 526414 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29970625ns 526417 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29970909ns 526422 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29971193ns 526427 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29971478ns 526432 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29971932ns 526440 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29972103ns 526443 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29972387ns 526448 1a110850 fd5ff06f jal x0, -44 +29972671ns 526453 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29972955ns 526458 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29973353ns 526465 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29973523ns 526468 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29973978ns 526476 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29974149ns 526479 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29974433ns 526484 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29974717ns 526489 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29975001ns 526494 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29975456ns 526502 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29975626ns 526505 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29975910ns 526510 1a110850 fd5ff06f jal x0, -44 +29976195ns 526515 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29976479ns 526520 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29976877ns 526527 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29977047ns 526530 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29977502ns 526538 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29977672ns 526541 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29977956ns 526546 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29978241ns 526551 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29978525ns 526556 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29978979ns 526564 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29979150ns 526567 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29979434ns 526572 1a110850 fd5ff06f jal x0, -44 +29979718ns 526577 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29980002ns 526582 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29980400ns 526589 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29980571ns 526592 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29981025ns 526600 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29981196ns 526603 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29981480ns 526608 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29981764ns 526613 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29982048ns 526618 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29982503ns 526626 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29982673ns 526629 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29982958ns 526634 1a110850 fd5ff06f jal x0, -44 +29983242ns 526639 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29983526ns 526644 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29983924ns 526651 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29984094ns 526654 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29984549ns 526662 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29984719ns 526665 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29985004ns 526670 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29985288ns 526675 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29985572ns 526680 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29986027ns 526688 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29986197ns 526691 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29986481ns 526696 1a110850 fd5ff06f jal x0, -44 +29986765ns 526701 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29987050ns 526706 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29987447ns 526713 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29987618ns 526716 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29988072ns 526724 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29988243ns 526727 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29988527ns 526732 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29988811ns 526737 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29989095ns 526742 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29989550ns 526750 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29989721ns 526753 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29990005ns 526758 1a110850 fd5ff06f jal x0, -44 +29990289ns 526763 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29990573ns 526768 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29990971ns 526775 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29991141ns 526778 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29991596ns 526786 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29991767ns 526789 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29992051ns 526794 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29992335ns 526799 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29992619ns 526804 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29993074ns 526812 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29993244ns 526815 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29993528ns 526820 1a110850 fd5ff06f jal x0, -44 +29993813ns 526825 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29994097ns 526830 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29994495ns 526837 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29994665ns 526840 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29995120ns 526848 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29995290ns 526851 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29995574ns 526856 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29995858ns 526861 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29996143ns 526866 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29996597ns 526874 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +29996768ns 526877 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +29997052ns 526882 1a110850 fd5ff06f jal x0, -44 +29997336ns 526887 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29997620ns 526892 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +29998018ns 526899 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29998189ns 526902 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +29998643ns 526910 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +29998814ns 526913 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +29999098ns 526918 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +29999382ns 526923 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +29999666ns 526928 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30000121ns 526936 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30000291ns 526939 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30000576ns 526944 1a110850 fd5ff06f jal x0, -44 +30000860ns 526949 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30001144ns 526954 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30001542ns 526961 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30001712ns 526964 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30002167ns 526972 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30002337ns 526975 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30002621ns 526980 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30002906ns 526985 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30003190ns 526990 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30003644ns 526998 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30003815ns 527001 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30004099ns 527006 1a110850 fd5ff06f jal x0, -44 +30004383ns 527011 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30004667ns 527016 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30005065ns 527023 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30005236ns 527026 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30005690ns 527034 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30005861ns 527037 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30006145ns 527042 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30006429ns 527047 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30006713ns 527052 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30007168ns 527060 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30007339ns 527063 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30007623ns 527068 1a110850 fd5ff06f jal x0, -44 +30007907ns 527073 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30008191ns 527078 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30008589ns 527085 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30008759ns 527088 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30009214ns 527096 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30009384ns 527099 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30009669ns 527104 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30009953ns 527109 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30010237ns 527114 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30010692ns 527122 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30010862ns 527125 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30011146ns 527130 1a110850 fd5ff06f jal x0, -44 +30011430ns 527135 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30011715ns 527140 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30012112ns 527147 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30012283ns 527150 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30012738ns 527158 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30012908ns 527161 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30013192ns 527166 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30013476ns 527171 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30013761ns 527176 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30014215ns 527184 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30014386ns 527187 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30014670ns 527192 1a110850 fd5ff06f jal x0, -44 +30014954ns 527197 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30015238ns 527202 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30015636ns 527209 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30015807ns 527212 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30016261ns 527220 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30016432ns 527223 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30016716ns 527228 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30017000ns 527233 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30017284ns 527238 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30017739ns 527246 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30017909ns 527249 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30018193ns 527254 1a110850 fd5ff06f jal x0, -44 +30018478ns 527259 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30018762ns 527264 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30019160ns 527271 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30019330ns 527274 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30019785ns 527282 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30019955ns 527285 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30020239ns 527290 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30020524ns 527295 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30020808ns 527300 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30021262ns 527308 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30021433ns 527311 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30021717ns 527316 1a110850 fd5ff06f jal x0, -44 +30022001ns 527321 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30022285ns 527326 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30022683ns 527333 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30022854ns 527336 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30023308ns 527344 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30023479ns 527347 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30023763ns 527352 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30024047ns 527357 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30024331ns 527362 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30024786ns 527370 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30024956ns 527373 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30025241ns 527378 1a110850 fd5ff06f jal x0, -44 +30025525ns 527383 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30025809ns 527388 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30026207ns 527395 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30026377ns 527398 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30026832ns 527406 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30027002ns 527409 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30027287ns 527414 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30027571ns 527419 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30027855ns 527424 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30028310ns 527432 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30028480ns 527435 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30028764ns 527440 1a110850 fd5ff06f jal x0, -44 +30029048ns 527445 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30029333ns 527450 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30029730ns 527457 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30029901ns 527460 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30030355ns 527468 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30030526ns 527471 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30030810ns 527476 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30031094ns 527481 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30031378ns 527486 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30031833ns 527494 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30032004ns 527497 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30032288ns 527502 1a110850 fd5ff06f jal x0, -44 +30032572ns 527507 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30032856ns 527512 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30033254ns 527519 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30033424ns 527522 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30033879ns 527530 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30034050ns 527533 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30034334ns 527538 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30034618ns 527543 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30034902ns 527548 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30035357ns 527556 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30035527ns 527559 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30035811ns 527564 1a110850 fd5ff06f jal x0, -44 +30036096ns 527569 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30036380ns 527574 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30036778ns 527581 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30036948ns 527584 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30037403ns 527592 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30037573ns 527595 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30037857ns 527600 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30038141ns 527605 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30038426ns 527610 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30038880ns 527618 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30039051ns 527621 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30039335ns 527626 1a110850 fd5ff06f jal x0, -44 +30039619ns 527631 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30039903ns 527636 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30040301ns 527643 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30040472ns 527646 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30040926ns 527654 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30041097ns 527657 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30041381ns 527662 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30041665ns 527667 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30041949ns 527672 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30042404ns 527680 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30042574ns 527683 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30042859ns 527688 1a110850 fd5ff06f jal x0, -44 +30043143ns 527693 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30043427ns 527698 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30043825ns 527705 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30043995ns 527708 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30044450ns 527716 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30044620ns 527719 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30044904ns 527724 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30045189ns 527729 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30045473ns 527734 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30045927ns 527742 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30046098ns 527745 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30046382ns 527750 1a110850 fd5ff06f jal x0, -44 +30046666ns 527755 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30046950ns 527760 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30047348ns 527767 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30047519ns 527770 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30047973ns 527778 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30048144ns 527781 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30048428ns 527786 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30048712ns 527791 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30048996ns 527796 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30049451ns 527804 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30049622ns 527807 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30049906ns 527812 1a110850 fd5ff06f jal x0, -44 +30050190ns 527817 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30050474ns 527822 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30050872ns 527829 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30051042ns 527832 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30051497ns 527840 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30051667ns 527843 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30051952ns 527848 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30052236ns 527853 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30052520ns 527858 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30052975ns 527866 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30053145ns 527869 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30053429ns 527874 1a110850 fd5ff06f jal x0, -44 +30053713ns 527879 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30053998ns 527884 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30054395ns 527891 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30054566ns 527894 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30055021ns 527902 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30055191ns 527905 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30055475ns 527910 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30055759ns 527915 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30056044ns 527920 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30056498ns 527928 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30056669ns 527931 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30056953ns 527936 1a110850 fd5ff06f jal x0, -44 +30057237ns 527941 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30057521ns 527946 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30057919ns 527953 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30058090ns 527956 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30058544ns 527964 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30058715ns 527967 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30058999ns 527972 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30059283ns 527977 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30059567ns 527982 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30060022ns 527990 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30060192ns 527993 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30060476ns 527998 1a110850 fd5ff06f jal x0, -44 +30060761ns 528003 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30061045ns 528008 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30061443ns 528015 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30061613ns 528018 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30062068ns 528026 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30062238ns 528029 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30062522ns 528034 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30062807ns 528039 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30063091ns 528044 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30063545ns 528052 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30063716ns 528055 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30064000ns 528060 1a110850 fd5ff06f jal x0, -44 +30064284ns 528065 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30064568ns 528070 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30064966ns 528077 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30065137ns 528080 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30065591ns 528088 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30065762ns 528091 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30066046ns 528096 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30066330ns 528101 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30066614ns 528106 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30067069ns 528114 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30067239ns 528117 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30067524ns 528122 1a110850 fd5ff06f jal x0, -44 +30067808ns 528127 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30068092ns 528132 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30068490ns 528139 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30068660ns 528142 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30069115ns 528150 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30069285ns 528153 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30069570ns 528158 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30069854ns 528163 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30070138ns 528168 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30070593ns 528176 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30070763ns 528179 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30071047ns 528184 1a110850 fd5ff06f jal x0, -44 +30071331ns 528189 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30071616ns 528194 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30072013ns 528201 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30072184ns 528204 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30072639ns 528212 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30072809ns 528215 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30073093ns 528220 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30073377ns 528225 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30073661ns 528230 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30074116ns 528238 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30074287ns 528241 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30074571ns 528246 1a110850 fd5ff06f jal x0, -44 +30074855ns 528251 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30075139ns 528256 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30075537ns 528263 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30075707ns 528266 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30076162ns 528274 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30076333ns 528277 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30076617ns 528282 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30076901ns 528287 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30077185ns 528292 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30077640ns 528300 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30077810ns 528303 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30078094ns 528308 1a110850 fd5ff06f jal x0, -44 +30078379ns 528313 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30078663ns 528318 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30079061ns 528325 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30079231ns 528328 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30079686ns 528336 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30079856ns 528339 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30080140ns 528344 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30080424ns 528349 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30080709ns 528354 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30081163ns 528362 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30081334ns 528365 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30081618ns 528370 1a110850 fd5ff06f jal x0, -44 +30081902ns 528375 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30082186ns 528380 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30082584ns 528387 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30082755ns 528390 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30083209ns 528398 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30083380ns 528401 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30083664ns 528406 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30083948ns 528411 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30084232ns 528416 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30084687ns 528424 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30084857ns 528427 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30085142ns 528432 1a110850 fd5ff06f jal x0, -44 +30085426ns 528437 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30085710ns 528442 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30086108ns 528449 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30086278ns 528452 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30086733ns 528460 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30086903ns 528463 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30087187ns 528468 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30087472ns 528473 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30087756ns 528478 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30088210ns 528486 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30088381ns 528489 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30088665ns 528494 1a110850 fd5ff06f jal x0, -44 +30088949ns 528499 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30089233ns 528504 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30089631ns 528511 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30089802ns 528514 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30090256ns 528522 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30090427ns 528525 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30090711ns 528530 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30090995ns 528535 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30091279ns 528540 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30091734ns 528548 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30091905ns 528551 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30092189ns 528556 1a110850 fd5ff06f jal x0, -44 +30092473ns 528561 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30092757ns 528566 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30093155ns 528573 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30093325ns 528576 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30093780ns 528584 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30093951ns 528587 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30094235ns 528592 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30094519ns 528597 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30094803ns 528602 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30095258ns 528610 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30095428ns 528613 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30095712ns 528618 1a110850 fd5ff06f jal x0, -44 +30095996ns 528623 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30096281ns 528628 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30096678ns 528635 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30096849ns 528638 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30097304ns 528646 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30097474ns 528649 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30097758ns 528654 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30098042ns 528659 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30098327ns 528664 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30098781ns 528672 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30098952ns 528675 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30099236ns 528680 1a110850 fd5ff06f jal x0, -44 +30099520ns 528685 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30099804ns 528690 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30100202ns 528697 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30100373ns 528700 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30100827ns 528708 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30100998ns 528711 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30101282ns 528716 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30101566ns 528721 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30101850ns 528726 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30102305ns 528734 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30102475ns 528737 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30102759ns 528742 1a110850 fd5ff06f jal x0, -44 +30103044ns 528747 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30103328ns 528752 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30103726ns 528759 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30103896ns 528762 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30104351ns 528770 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30104521ns 528773 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30104805ns 528778 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30105090ns 528783 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30105374ns 528788 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30105828ns 528796 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30105999ns 528799 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30106283ns 528804 1a110850 fd5ff06f jal x0, -44 +30106567ns 528809 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30106851ns 528814 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30107249ns 528821 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30107420ns 528824 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30107874ns 528832 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30108045ns 528835 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30108329ns 528840 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30108613ns 528845 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30108897ns 528850 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30109352ns 528858 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30109522ns 528861 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30109807ns 528866 1a110850 fd5ff06f jal x0, -44 +30110091ns 528871 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30110375ns 528876 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30110773ns 528883 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30110943ns 528886 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30111398ns 528894 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30111568ns 528897 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30111853ns 528902 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30112137ns 528907 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30112421ns 528912 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30112876ns 528920 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30113046ns 528923 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30113330ns 528928 1a110850 fd5ff06f jal x0, -44 +30113614ns 528933 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30113899ns 528938 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30114296ns 528945 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30114467ns 528948 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30114922ns 528956 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30115092ns 528959 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30115376ns 528964 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30115660ns 528969 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30115944ns 528974 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30116399ns 528982 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30116570ns 528985 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30116854ns 528990 1a110850 fd5ff06f jal x0, -44 +30117138ns 528995 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30117422ns 529000 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30117820ns 529007 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30117990ns 529010 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30118445ns 529018 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30118616ns 529021 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30118900ns 529026 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30119184ns 529031 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30119468ns 529036 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30119923ns 529044 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30120093ns 529047 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30120377ns 529052 1a110850 fd5ff06f jal x0, -44 +30120662ns 529057 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30120946ns 529062 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30121344ns 529069 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30121514ns 529072 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30121969ns 529080 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30122139ns 529083 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30122423ns 529088 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30122707ns 529093 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30122992ns 529098 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30123446ns 529106 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30123617ns 529109 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30123901ns 529114 1a110850 fd5ff06f jal x0, -44 +30124185ns 529119 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30124469ns 529124 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30124867ns 529131 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30125038ns 529134 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30125492ns 529142 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30125663ns 529145 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30125947ns 529150 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30126231ns 529155 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30126515ns 529160 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30126970ns 529168 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30127140ns 529171 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30127425ns 529176 1a110850 fd5ff06f jal x0, -44 +30127709ns 529181 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30127993ns 529186 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30128391ns 529193 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30128561ns 529196 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30129016ns 529204 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30129186ns 529207 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30129471ns 529212 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30129755ns 529217 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30130039ns 529222 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30130493ns 529230 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30130664ns 529233 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30130948ns 529238 1a110850 fd5ff06f jal x0, -44 +30131232ns 529243 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30131516ns 529248 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30131914ns 529255 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30132085ns 529258 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30132539ns 529266 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30132710ns 529269 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30132994ns 529274 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30133278ns 529279 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30133562ns 529284 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30134017ns 529292 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30134188ns 529295 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30134472ns 529300 1a110850 fd5ff06f jal x0, -44 +30134756ns 529305 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30135040ns 529310 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30135438ns 529317 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30135608ns 529320 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30136063ns 529328 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30136234ns 529331 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30136518ns 529336 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30136802ns 529341 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30137086ns 529346 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30137541ns 529354 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30137711ns 529357 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30137995ns 529362 1a110850 fd5ff06f jal x0, -44 +30138279ns 529367 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30138564ns 529372 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30138961ns 529379 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30139132ns 529382 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30139587ns 529390 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30139757ns 529393 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30140041ns 529398 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30140325ns 529403 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30140610ns 529408 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30141064ns 529416 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30141235ns 529419 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30141519ns 529424 1a110850 fd5ff06f jal x0, -44 +30141803ns 529429 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30142087ns 529434 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30142485ns 529441 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30142656ns 529444 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30143110ns 529452 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30143281ns 529455 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30143565ns 529460 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30143849ns 529465 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30144133ns 529470 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30144588ns 529478 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30144758ns 529481 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30145042ns 529486 1a110850 fd5ff06f jal x0, -44 +30145327ns 529491 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30145611ns 529496 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30146009ns 529503 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30146179ns 529506 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30146634ns 529514 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30146804ns 529517 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30147088ns 529522 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30147373ns 529527 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30147657ns 529532 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30148111ns 529540 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30148282ns 529543 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30148566ns 529548 1a110850 fd5ff06f jal x0, -44 +30148850ns 529553 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30149134ns 529558 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30149532ns 529565 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30149703ns 529568 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30150157ns 529576 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30150328ns 529579 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30150612ns 529584 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30150896ns 529589 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30151180ns 529594 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30151635ns 529602 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30151805ns 529605 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30152090ns 529610 1a110850 fd5ff06f jal x0, -44 +30152374ns 529615 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30152658ns 529620 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30153056ns 529627 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30153226ns 529630 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30153681ns 529638 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30153851ns 529641 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30154136ns 529646 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30154420ns 529651 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30154704ns 529656 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30155159ns 529664 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30155329ns 529667 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30155613ns 529672 1a110850 fd5ff06f jal x0, -44 +30155897ns 529677 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30156182ns 529682 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30156579ns 529689 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30156750ns 529692 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30157205ns 529700 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30157375ns 529703 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30157659ns 529708 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30157943ns 529713 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30158227ns 529718 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30158682ns 529726 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30158853ns 529729 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30159137ns 529734 1a110850 fd5ff06f jal x0, -44 +30159421ns 529739 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30159705ns 529744 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30160103ns 529751 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30160273ns 529754 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30160728ns 529762 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30160899ns 529765 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30161183ns 529770 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30161467ns 529775 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30161751ns 529780 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30162206ns 529788 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30162376ns 529791 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30162660ns 529796 1a110850 fd5ff06f jal x0, -44 +30162945ns 529801 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30163229ns 529806 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30163627ns 529813 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30163797ns 529816 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30164252ns 529824 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30164422ns 529827 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30164706ns 529832 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30164991ns 529837 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30165275ns 529842 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30165729ns 529850 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30165900ns 529853 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30166184ns 529858 1a110850 fd5ff06f jal x0, -44 +30166468ns 529863 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30166752ns 529868 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30167150ns 529875 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30167321ns 529878 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30167775ns 529886 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30167946ns 529889 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30168230ns 529894 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30168514ns 529899 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30168798ns 529904 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30169253ns 529912 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30169423ns 529915 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30169708ns 529920 1a110850 fd5ff06f jal x0, -44 +30169992ns 529925 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30170276ns 529930 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30170674ns 529937 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30170844ns 529940 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30171299ns 529948 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30171469ns 529951 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30171754ns 529956 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30172038ns 529961 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30172322ns 529966 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30172776ns 529974 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30172947ns 529977 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30173231ns 529982 1a110850 fd5ff06f jal x0, -44 +30173515ns 529987 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30173799ns 529992 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30174197ns 529999 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30174368ns 530002 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30174822ns 530010 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30174993ns 530013 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30175277ns 530018 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30175561ns 530023 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30175845ns 530028 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30176300ns 530036 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30176471ns 530039 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30176755ns 530044 1a110850 fd5ff06f jal x0, -44 +30177039ns 530049 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30177323ns 530054 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30177721ns 530061 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30177891ns 530064 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30178346ns 530072 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30178517ns 530075 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30178801ns 530080 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30179085ns 530085 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30179369ns 530090 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30179824ns 530098 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30179994ns 530101 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30180278ns 530106 1a110850 fd5ff06f jal x0, -44 +30180562ns 530111 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30180847ns 530116 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30181244ns 530123 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30181415ns 530126 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30181870ns 530134 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30182040ns 530137 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30182324ns 530142 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30182608ns 530147 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30182893ns 530152 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30183347ns 530160 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30183518ns 530163 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30183802ns 530168 1a110850 fd5ff06f jal x0, -44 +30184086ns 530173 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30184370ns 530178 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30184768ns 530185 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30184939ns 530188 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30185393ns 530196 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30185564ns 530199 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30185848ns 530204 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30186132ns 530209 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30186416ns 530214 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30186871ns 530222 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30187041ns 530225 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30187325ns 530230 1a110850 fd5ff06f jal x0, -44 +30187610ns 530235 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30187894ns 530240 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30188292ns 530247 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30188462ns 530250 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30188917ns 530258 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30189087ns 530261 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30189371ns 530266 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30189656ns 530271 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30189940ns 530276 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30190394ns 530284 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30190565ns 530287 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30190849ns 530292 1a110850 fd5ff06f jal x0, -44 +30191133ns 530297 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30191417ns 530302 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30191815ns 530309 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30191986ns 530312 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30192440ns 530320 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30192611ns 530323 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30192895ns 530328 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30193179ns 530333 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30193463ns 530338 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30193918ns 530346 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30194088ns 530349 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30194373ns 530354 1a110850 fd5ff06f jal x0, -44 +30194657ns 530359 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30194941ns 530364 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30195339ns 530371 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30195509ns 530374 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30195964ns 530382 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30196134ns 530385 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30196419ns 530390 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30196703ns 530395 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30196987ns 530400 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30197442ns 530408 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30197612ns 530411 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30197896ns 530416 1a110850 fd5ff06f jal x0, -44 +30198180ns 530421 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30198465ns 530426 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30198862ns 530433 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30199033ns 530436 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30199488ns 530444 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30199658ns 530447 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30199942ns 530452 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30200226ns 530457 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30200511ns 530462 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30200965ns 530470 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30201136ns 530473 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30201420ns 530478 1a110850 fd5ff06f jal x0, -44 +30201704ns 530483 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30201988ns 530488 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30202386ns 530495 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30202556ns 530498 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30203011ns 530506 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30203182ns 530509 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30203466ns 530514 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30203750ns 530519 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30204034ns 530524 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30204489ns 530532 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30204659ns 530535 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30204943ns 530540 1a110850 fd5ff06f jal x0, -44 +30205228ns 530545 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30205512ns 530550 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30205910ns 530557 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30206080ns 530560 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30206535ns 530568 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30206705ns 530571 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30206989ns 530576 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30207274ns 530581 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30207558ns 530586 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30208012ns 530594 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30208183ns 530597 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30208467ns 530602 1a110850 fd5ff06f jal x0, -44 +30208751ns 530607 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30209035ns 530612 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30209433ns 530619 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30209604ns 530622 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30210058ns 530630 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30210229ns 530633 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30210513ns 530638 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30210797ns 530643 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30211081ns 530648 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30211536ns 530656 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30211706ns 530659 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30211991ns 530664 1a110850 fd5ff06f jal x0, -44 +30212275ns 530669 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30212559ns 530674 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30212957ns 530681 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30213127ns 530684 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30213582ns 530692 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30213752ns 530695 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30214037ns 530700 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30214321ns 530705 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30214605ns 530710 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30215059ns 530718 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30215230ns 530721 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30215514ns 530726 1a110850 fd5ff06f jal x0, -44 +30215798ns 530731 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30216082ns 530736 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30216480ns 530743 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30216651ns 530746 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30217105ns 530754 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30217276ns 530757 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30217560ns 530762 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30217844ns 530767 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30218128ns 530772 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30218583ns 530780 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30218754ns 530783 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30219038ns 530788 1a110850 fd5ff06f jal x0, -44 +30219322ns 530793 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30219606ns 530798 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30220004ns 530805 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30220174ns 530808 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30220629ns 530816 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30220800ns 530819 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30221084ns 530824 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30221368ns 530829 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30221652ns 530834 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30222107ns 530842 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30222277ns 530845 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30222561ns 530850 1a110850 fd5ff06f jal x0, -44 +30222845ns 530855 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30223130ns 530860 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30223527ns 530867 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30223698ns 530870 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30224153ns 530878 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30224323ns 530881 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30224607ns 530886 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30224891ns 530891 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30225176ns 530896 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30225630ns 530904 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30225801ns 530907 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30226085ns 530912 1a110850 fd5ff06f jal x0, -44 +30226369ns 530917 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30226653ns 530922 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30227051ns 530929 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30227222ns 530932 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30227676ns 530940 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30227847ns 530943 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30228131ns 530948 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30228415ns 530953 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30228699ns 530958 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30229154ns 530966 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30229324ns 530969 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30229608ns 530974 1a110850 fd5ff06f jal x0, -44 +30229893ns 530979 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30230177ns 530984 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30230575ns 530991 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30230745ns 530994 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30231200ns 531002 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30231370ns 531005 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30231654ns 531010 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30231939ns 531015 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30232223ns 531020 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30232677ns 531028 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30232848ns 531031 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30233132ns 531036 1a110850 fd5ff06f jal x0, -44 +30233416ns 531041 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30233700ns 531046 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30234098ns 531053 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30234269ns 531056 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30234723ns 531064 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30234894ns 531067 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30235178ns 531072 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30235462ns 531077 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30235746ns 531082 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30236201ns 531090 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30236371ns 531093 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30236656ns 531098 1a110850 fd5ff06f jal x0, -44 +30236940ns 531103 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30237224ns 531108 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30237622ns 531115 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30237792ns 531118 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30238247ns 531126 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30238417ns 531129 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30238702ns 531134 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30238986ns 531139 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30239270ns 531144 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30239725ns 531152 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30239895ns 531155 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30240179ns 531160 1a110850 fd5ff06f jal x0, -44 +30240463ns 531165 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30240748ns 531170 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30241145ns 531177 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30241316ns 531180 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30241771ns 531188 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30241941ns 531191 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30242225ns 531196 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30242509ns 531201 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30242794ns 531206 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30243248ns 531214 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30243419ns 531217 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30243703ns 531222 1a110850 fd5ff06f jal x0, -44 +30243987ns 531227 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30244271ns 531232 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30244669ns 531239 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30244839ns 531242 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30245294ns 531250 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30245465ns 531253 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30245749ns 531258 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30246033ns 531263 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30246317ns 531268 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30246772ns 531276 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30246942ns 531279 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30247226ns 531284 1a110850 fd5ff06f jal x0, -44 +30247511ns 531289 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30247795ns 531294 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30248193ns 531301 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30248363ns 531304 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30248818ns 531312 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30248988ns 531315 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30249272ns 531320 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30249557ns 531325 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30249841ns 531330 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30250295ns 531338 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30250466ns 531341 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30250750ns 531346 1a110850 fd5ff06f jal x0, -44 +30251034ns 531351 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30251318ns 531356 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30251716ns 531363 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30251887ns 531366 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30252341ns 531374 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30252512ns 531377 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30252796ns 531382 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30253080ns 531387 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30253364ns 531392 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30253819ns 531400 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30253989ns 531403 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30254274ns 531408 1a110850 fd5ff06f jal x0, -44 +30254558ns 531413 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30254842ns 531418 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30255240ns 531425 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30255410ns 531428 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30255865ns 531436 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30256035ns 531439 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30256320ns 531444 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30256604ns 531449 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30256888ns 531454 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30257343ns 531462 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30257513ns 531465 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30257797ns 531470 1a110850 fd5ff06f jal x0, -44 +30258081ns 531475 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30258365ns 531480 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30258763ns 531487 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30258934ns 531490 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30259388ns 531498 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30259559ns 531501 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30259843ns 531506 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30260127ns 531511 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30260411ns 531516 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30260866ns 531524 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30261037ns 531527 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30261321ns 531532 1a110850 fd5ff06f jal x0, -44 +30261605ns 531537 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30261889ns 531542 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30262287ns 531549 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30262457ns 531552 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30262912ns 531560 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30263083ns 531563 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30263367ns 531568 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30263651ns 531573 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30263935ns 531578 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30264390ns 531586 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30264560ns 531589 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30264844ns 531594 1a110850 fd5ff06f jal x0, -44 +30265128ns 531599 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30265413ns 531604 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30265810ns 531611 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30265981ns 531614 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30266436ns 531622 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30266606ns 531625 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30266890ns 531630 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30267174ns 531635 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30267459ns 531640 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30267913ns 531648 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30268084ns 531651 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30268368ns 531656 1a110850 fd5ff06f jal x0, -44 +30268652ns 531661 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30268936ns 531666 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30269334ns 531673 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30269505ns 531676 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30269959ns 531684 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30270130ns 531687 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30270414ns 531692 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30270698ns 531697 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30270982ns 531702 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30271437ns 531710 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30271607ns 531713 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30271891ns 531718 1a110850 fd5ff06f jal x0, -44 +30272176ns 531723 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30272460ns 531728 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30272858ns 531735 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30273028ns 531738 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30273483ns 531746 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30273653ns 531749 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30273937ns 531754 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30274222ns 531759 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30274506ns 531764 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30274960ns 531772 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30275131ns 531775 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30275415ns 531780 1a110850 fd5ff06f jal x0, -44 +30275699ns 531785 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30275983ns 531790 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30276381ns 531797 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30276552ns 531800 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30277006ns 531808 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30277177ns 531811 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30277461ns 531816 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30277745ns 531821 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30278029ns 531826 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30278484ns 531834 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30278655ns 531837 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30278939ns 531842 1a110850 fd5ff06f jal x0, -44 +30279223ns 531847 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30279507ns 531852 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30279905ns 531859 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30280075ns 531862 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30280530ns 531870 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30280700ns 531873 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30280985ns 531878 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30281269ns 531883 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30281553ns 531888 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30282008ns 531896 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30282178ns 531899 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30282462ns 531904 1a110850 fd5ff06f jal x0, -44 +30282746ns 531909 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30283031ns 531914 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30283428ns 531921 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30283599ns 531924 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30284054ns 531932 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30284224ns 531935 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30284508ns 531940 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30284792ns 531945 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30285077ns 531950 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30285531ns 531958 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30285702ns 531961 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30285986ns 531966 1a110850 fd5ff06f jal x0, -44 +30286270ns 531971 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30286554ns 531976 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30286952ns 531983 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30287122ns 531986 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30287577ns 531994 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30287748ns 531997 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30288032ns 532002 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30288316ns 532007 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30288600ns 532012 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30289055ns 532020 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30289225ns 532023 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30289509ns 532028 1a110850 fd5ff06f jal x0, -44 +30289794ns 532033 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30290078ns 532038 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30290476ns 532045 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30290646ns 532048 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30291101ns 532056 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30291271ns 532059 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30291555ns 532064 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30291840ns 532069 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30292124ns 532074 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30292578ns 532082 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30292749ns 532085 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30293033ns 532090 1a110850 fd5ff06f jal x0, -44 +30293317ns 532095 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30293601ns 532100 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30293999ns 532107 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30294170ns 532110 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30294624ns 532118 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30294795ns 532121 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30295079ns 532126 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30295363ns 532131 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30295647ns 532136 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30296102ns 532144 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30296272ns 532147 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30296557ns 532152 1a110850 fd5ff06f jal x0, -44 +30296841ns 532157 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30297125ns 532162 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30297523ns 532169 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30297693ns 532172 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30298148ns 532180 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30298318ns 532183 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30298603ns 532188 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30298887ns 532193 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30299171ns 532198 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30299626ns 532206 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30299796ns 532209 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30300080ns 532214 1a110850 fd5ff06f jal x0, -44 +30300364ns 532219 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30300648ns 532224 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30301046ns 532231 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30301217ns 532234 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30301671ns 532242 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30301842ns 532245 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30302126ns 532250 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30302410ns 532255 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30302694ns 532260 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30303149ns 532268 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30303320ns 532271 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30303604ns 532276 1a110850 fd5ff06f jal x0, -44 +30303888ns 532281 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30304172ns 532286 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30304570ns 532293 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30304740ns 532296 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30305195ns 532304 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30305366ns 532307 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30305650ns 532312 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30305934ns 532317 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30306218ns 532322 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30306673ns 532330 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30306843ns 532333 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30307127ns 532338 1a110850 fd5ff06f jal x0, -44 +30307411ns 532343 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30307696ns 532348 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30308093ns 532355 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30308264ns 532358 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30308719ns 532366 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30308889ns 532369 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30309173ns 532374 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30309457ns 532379 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30309742ns 532384 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30310196ns 532392 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30310367ns 532395 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30310651ns 532400 1a110850 fd5ff06f jal x0, -44 +30310935ns 532405 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30311219ns 532410 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30311617ns 532417 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30311788ns 532420 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30312242ns 532428 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30312413ns 532431 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30312697ns 532436 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30312981ns 532441 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30313265ns 532446 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30313720ns 532454 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30313890ns 532457 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30314175ns 532462 1a110850 fd5ff06f jal x0, -44 +30314459ns 532467 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30314743ns 532472 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30315141ns 532479 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30315311ns 532482 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30315766ns 532490 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30315936ns 532493 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30316220ns 532498 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30316505ns 532503 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30316789ns 532508 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30317243ns 532516 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30317414ns 532519 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30317698ns 532524 1a110850 fd5ff06f jal x0, -44 +30317982ns 532529 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30318266ns 532534 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30318664ns 532541 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30318835ns 532544 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30319289ns 532552 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30319460ns 532555 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30319744ns 532560 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30320028ns 532565 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30320312ns 532570 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30320767ns 532578 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30320938ns 532581 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30321222ns 532586 1a110850 fd5ff06f jal x0, -44 +30321506ns 532591 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30321790ns 532596 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30322188ns 532603 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30322358ns 532606 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30322813ns 532614 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30322983ns 532617 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30323268ns 532622 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30323552ns 532627 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30323836ns 532632 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30324291ns 532640 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30324461ns 532643 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30324745ns 532648 1a110850 fd5ff06f jal x0, -44 +30325029ns 532653 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30325314ns 532658 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30325711ns 532665 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30325882ns 532668 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30326337ns 532676 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30326507ns 532679 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30326791ns 532684 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30327075ns 532689 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30327360ns 532694 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30327814ns 532702 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30327985ns 532705 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30328269ns 532710 1a110850 fd5ff06f jal x0, -44 +30328553ns 532715 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30328837ns 532720 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30329235ns 532727 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30329405ns 532730 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30329860ns 532738 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30330031ns 532741 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30330315ns 532746 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30330599ns 532751 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30330883ns 532756 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30331338ns 532764 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30331508ns 532767 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30331792ns 532772 1a110850 fd5ff06f jal x0, -44 +30332077ns 532777 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30332361ns 532782 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30332759ns 532789 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30332929ns 532792 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30333384ns 532800 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30333554ns 532803 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30333838ns 532808 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30334123ns 532813 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30334407ns 532818 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30334861ns 532826 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30335032ns 532829 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30335316ns 532834 1a110850 fd5ff06f jal x0, -44 +30335600ns 532839 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30335884ns 532844 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30336282ns 532851 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30336453ns 532854 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30336907ns 532862 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30337078ns 532865 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30337362ns 532870 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30337646ns 532875 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30337930ns 532880 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30338385ns 532888 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30338555ns 532891 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30338840ns 532896 1a110850 fd5ff06f jal x0, -44 +30339124ns 532901 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30339408ns 532906 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30339806ns 532913 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30339976ns 532916 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30340431ns 532924 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30340601ns 532927 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30340886ns 532932 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30341170ns 532937 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30341454ns 532942 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30341909ns 532950 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30342079ns 532953 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30342363ns 532958 1a110850 fd5ff06f jal x0, -44 +30342647ns 532963 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30342931ns 532968 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30343329ns 532975 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30343500ns 532978 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30343954ns 532986 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30344125ns 532989 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30344409ns 532994 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30344693ns 532999 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30344977ns 533004 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30345432ns 533012 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30345603ns 533015 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30345887ns 533020 1a110850 fd5ff06f jal x0, -44 +30346171ns 533025 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30346455ns 533030 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30346853ns 533037 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30347023ns 533040 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30347478ns 533048 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30347649ns 533051 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30347933ns 533056 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30348217ns 533061 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30348501ns 533066 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30348956ns 533074 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30349126ns 533077 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30349410ns 533082 1a110850 fd5ff06f jal x0, -44 +30349695ns 533087 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30349979ns 533092 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30350376ns 533099 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30350547ns 533102 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30351002ns 533110 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30351172ns 533113 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30351456ns 533118 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30351740ns 533123 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30352025ns 533128 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30352479ns 533136 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30352650ns 533139 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30352934ns 533144 1a110850 fd5ff06f jal x0, -44 +30353218ns 533149 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30353502ns 533154 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30353900ns 533161 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30354071ns 533164 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30354525ns 533172 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30354696ns 533175 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30354980ns 533180 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30355264ns 533185 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30355548ns 533190 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30356003ns 533198 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30356173ns 533201 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30356458ns 533206 1a110850 fd5ff06f jal x0, -44 +30356742ns 533211 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30357026ns 533216 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30357424ns 533223 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30357594ns 533226 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30358049ns 533234 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30358219ns 533237 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30358503ns 533242 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30358788ns 533247 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30359072ns 533252 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30359526ns 533260 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30359697ns 533263 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30359981ns 533268 1a110850 fd5ff06f jal x0, -44 +30360265ns 533273 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30360549ns 533278 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30360947ns 533285 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30361118ns 533288 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30361572ns 533296 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30361743ns 533299 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30362027ns 533304 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30362311ns 533309 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30362595ns 533314 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30363050ns 533322 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30363221ns 533325 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30363505ns 533330 1a110850 fd5ff06f jal x0, -44 +30363789ns 533335 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30364073ns 533340 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30364471ns 533347 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30364641ns 533350 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30365096ns 533358 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30365266ns 533361 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30365551ns 533366 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30365835ns 533371 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30366119ns 533376 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30366574ns 533384 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30366744ns 533387 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30367028ns 533392 1a110850 fd5ff06f jal x0, -44 +30367312ns 533397 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30367597ns 533402 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30367994ns 533409 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30368165ns 533412 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30368620ns 533420 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30368790ns 533423 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30369074ns 533428 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30369358ns 533433 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30369643ns 533438 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30370097ns 533446 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30370268ns 533449 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30370552ns 533454 1a110850 fd5ff06f jal x0, -44 +30370836ns 533459 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30371120ns 533464 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30371518ns 533471 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30371688ns 533474 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30372143ns 533482 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30372314ns 533485 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30372598ns 533490 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30372882ns 533495 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30373166ns 533500 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30373621ns 533508 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30373791ns 533511 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30374075ns 533516 1a110850 fd5ff06f jal x0, -44 +30374360ns 533521 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30374644ns 533526 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30375042ns 533533 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30375212ns 533536 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30375667ns 533544 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30375837ns 533547 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30376121ns 533552 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30376406ns 533557 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30376690ns 533562 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30377144ns 533570 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30377315ns 533573 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30377599ns 533578 1a110850 fd5ff06f jal x0, -44 +30377883ns 533583 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30378167ns 533588 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30378565ns 533595 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30378736ns 533598 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30379190ns 533606 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30379361ns 533609 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30379645ns 533614 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30379929ns 533619 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30380213ns 533624 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30380668ns 533632 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30380838ns 533635 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30381123ns 533640 1a110850 fd5ff06f jal x0, -44 +30381407ns 533645 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30381691ns 533650 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30382089ns 533657 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30382259ns 533660 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30382714ns 533668 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30382884ns 533671 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30383169ns 533676 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30383453ns 533681 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30383737ns 533686 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30384192ns 533694 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30384362ns 533697 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30384646ns 533702 1a110850 fd5ff06f jal x0, -44 +30384930ns 533707 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30385215ns 533712 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30385612ns 533719 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30385783ns 533722 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30386237ns 533730 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30386408ns 533733 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30386692ns 533738 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30386976ns 533743 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30387260ns 533748 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30387715ns 533756 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30387886ns 533759 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30388170ns 533764 1a110850 fd5ff06f jal x0, -44 +30388454ns 533769 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30388738ns 533774 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30389136ns 533781 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30389306ns 533784 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30389761ns 533792 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30389932ns 533795 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30390216ns 533800 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30390500ns 533805 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30390784ns 533810 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30391239ns 533818 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30391409ns 533821 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30391693ns 533826 1a110850 fd5ff06f jal x0, -44 +30391978ns 533831 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30392262ns 533836 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30392659ns 533843 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30392830ns 533846 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30393285ns 533854 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30393455ns 533857 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30393739ns 533862 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30394023ns 533867 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30394308ns 533872 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30394762ns 533880 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30394933ns 533883 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30395217ns 533888 1a110850 fd5ff06f jal x0, -44 +30395501ns 533893 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30395785ns 533898 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30396183ns 533905 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30396354ns 533908 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30396808ns 533916 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30396979ns 533919 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30397263ns 533924 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30397547ns 533929 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30397831ns 533934 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30398286ns 533942 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30398456ns 533945 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30398741ns 533950 1a110850 fd5ff06f jal x0, -44 +30399025ns 533955 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30399309ns 533960 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30399707ns 533967 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30399877ns 533970 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30400332ns 533978 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30400502ns 533981 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30400786ns 533986 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30401071ns 533991 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30401355ns 533996 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30401809ns 534004 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30401980ns 534007 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30402264ns 534012 1a110850 fd5ff06f jal x0, -44 +30402548ns 534017 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30402832ns 534022 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30403230ns 534029 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30403401ns 534032 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30403855ns 534040 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30404026ns 534043 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30404310ns 534048 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30404594ns 534053 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30404878ns 534058 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30405333ns 534066 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30405504ns 534069 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30405788ns 534074 1a110850 fd5ff06f jal x0, -44 +30406072ns 534079 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30406356ns 534084 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30406754ns 534091 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30406924ns 534094 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30407379ns 534102 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30407549ns 534105 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30407834ns 534110 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30408118ns 534115 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30408402ns 534120 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30408857ns 534128 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30409027ns 534131 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30409311ns 534136 1a110850 fd5ff06f jal x0, -44 +30409595ns 534141 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30409880ns 534146 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30410277ns 534153 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30410448ns 534156 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30410903ns 534164 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30411073ns 534167 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30411357ns 534172 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30411641ns 534177 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30411926ns 534182 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30412380ns 534190 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30412551ns 534193 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30412835ns 534198 1a110850 fd5ff06f jal x0, -44 +30413119ns 534203 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30413403ns 534208 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30413801ns 534215 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30413971ns 534218 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30414426ns 534226 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30414597ns 534229 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30414881ns 534234 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30415165ns 534239 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30415449ns 534244 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30415904ns 534252 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30416074ns 534255 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30416358ns 534260 1a110850 fd5ff06f jal x0, -44 +30416643ns 534265 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30416927ns 534270 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30417325ns 534277 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30417495ns 534280 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30417950ns 534288 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30418120ns 534291 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30418404ns 534296 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30418689ns 534301 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30418973ns 534306 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30419427ns 534314 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30419598ns 534317 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30419882ns 534322 1a110850 fd5ff06f jal x0, -44 +30420166ns 534327 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30420450ns 534332 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30420848ns 534339 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30421019ns 534342 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30421473ns 534350 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30421644ns 534353 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30421928ns 534358 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30422212ns 534363 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30422496ns 534368 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30422951ns 534376 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30423121ns 534379 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30423406ns 534384 1a110850 fd5ff06f jal x0, -44 +30423690ns 534389 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30423974ns 534394 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30424372ns 534401 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30424542ns 534404 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30424997ns 534412 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30425167ns 534415 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30425452ns 534420 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30425736ns 534425 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30426020ns 534430 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30426475ns 534438 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30426645ns 534441 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30426929ns 534446 1a110850 fd5ff06f jal x0, -44 +30427213ns 534451 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30427498ns 534456 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30427895ns 534463 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30428066ns 534466 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30428520ns 534474 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30428691ns 534477 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30428975ns 534482 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30429259ns 534487 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30429543ns 534492 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30429998ns 534500 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30430169ns 534503 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30430453ns 534508 1a110850 fd5ff06f jal x0, -44 +30430737ns 534513 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30431021ns 534518 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30431419ns 534525 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30431589ns 534528 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30432044ns 534536 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30432215ns 534539 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30432499ns 534544 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30432783ns 534549 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30433067ns 534554 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30433522ns 534562 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30433692ns 534565 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30433976ns 534570 1a110850 fd5ff06f jal x0, -44 +30434261ns 534575 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30434545ns 534580 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30434943ns 534587 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30435113ns 534590 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30435568ns 534598 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30435738ns 534601 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30436022ns 534606 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30436306ns 534611 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30436591ns 534616 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30437045ns 534624 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30437216ns 534627 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30437500ns 534632 1a110850 fd5ff06f jal x0, -44 +30437784ns 534637 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30438068ns 534642 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30438466ns 534649 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30438637ns 534652 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30439091ns 534660 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30439262ns 534663 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30439546ns 534668 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30439830ns 534673 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30440114ns 534678 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30440569ns 534686 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30440739ns 534689 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30441024ns 534694 1a110850 fd5ff06f jal x0, -44 +30441308ns 534699 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30441592ns 534704 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30441990ns 534711 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30442160ns 534714 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30442615ns 534722 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30442785ns 534725 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30443069ns 534730 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30443354ns 534735 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30443638ns 534740 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30444092ns 534748 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30444263ns 534751 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30444547ns 534756 1a110850 fd5ff06f jal x0, -44 +30444831ns 534761 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30445115ns 534766 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30445513ns 534773 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30445684ns 534776 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30446138ns 534784 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30446309ns 534787 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30446593ns 534792 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30446877ns 534797 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30447161ns 534802 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30447616ns 534810 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30447787ns 534813 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30448071ns 534818 1a110850 fd5ff06f jal x0, -44 +30448355ns 534823 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30448639ns 534828 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30449037ns 534835 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30449207ns 534838 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30449662ns 534846 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30449832ns 534849 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30450117ns 534854 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30450401ns 534859 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30450685ns 534864 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30451140ns 534872 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30451310ns 534875 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30451594ns 534880 1a110850 fd5ff06f jal x0, -44 +30451878ns 534885 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30452163ns 534890 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30452560ns 534897 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30452731ns 534900 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30453186ns 534908 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30453356ns 534911 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30453640ns 534916 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30453924ns 534921 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30454209ns 534926 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30454663ns 534934 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30454834ns 534937 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30455118ns 534942 1a110850 fd5ff06f jal x0, -44 +30455402ns 534947 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30455686ns 534952 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30456084ns 534959 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30456255ns 534962 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30456709ns 534970 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30456880ns 534973 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30457164ns 534978 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30457448ns 534983 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30457732ns 534988 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30458187ns 534996 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30458357ns 534999 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30458641ns 535004 1a110850 fd5ff06f jal x0, -44 +30458926ns 535009 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30459210ns 535014 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30459608ns 535021 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30459778ns 535024 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30460233ns 535032 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30460403ns 535035 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30460687ns 535040 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30460972ns 535045 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30461256ns 535050 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30461710ns 535058 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30461881ns 535061 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30462165ns 535066 1a110850 fd5ff06f jal x0, -44 +30462449ns 535071 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30462733ns 535076 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30463131ns 535083 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30463302ns 535086 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30463756ns 535094 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30463927ns 535097 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30464211ns 535102 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30464495ns 535107 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30464779ns 535112 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30465234ns 535120 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30465404ns 535123 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30465689ns 535128 1a110850 fd5ff06f jal x0, -44 +30465973ns 535133 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30466257ns 535138 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30466655ns 535145 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30466825ns 535148 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30467280ns 535156 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30467450ns 535159 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30467735ns 535164 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30468019ns 535169 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30468303ns 535174 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30468758ns 535182 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30468928ns 535185 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30469212ns 535190 1a110850 fd5ff06f jal x0, -44 +30469496ns 535195 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30469781ns 535200 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30470178ns 535207 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30470349ns 535210 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30470803ns 535218 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30470974ns 535221 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30471258ns 535226 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30471542ns 535231 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30471826ns 535236 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30472281ns 535244 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30472452ns 535247 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30472736ns 535252 1a110850 fd5ff06f jal x0, -44 +30473020ns 535257 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30473304ns 535262 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30473702ns 535269 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30473872ns 535272 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30474327ns 535280 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30474498ns 535283 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30474782ns 535288 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30475066ns 535293 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30475350ns 535298 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30475805ns 535306 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30475975ns 535309 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30476259ns 535314 1a110850 fd5ff06f jal x0, -44 +30476544ns 535319 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30476828ns 535324 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30477226ns 535331 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30477396ns 535334 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30477851ns 535342 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30478021ns 535345 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30478305ns 535350 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30478589ns 535355 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30478874ns 535360 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30479328ns 535368 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30479499ns 535371 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30479783ns 535376 1a110850 fd5ff06f jal x0, -44 +30480067ns 535381 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30480351ns 535386 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30480749ns 535393 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30480920ns 535396 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30481374ns 535404 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30481545ns 535407 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30481829ns 535412 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30482113ns 535417 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30482397ns 535422 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30482852ns 535430 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30483022ns 535433 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30483307ns 535438 1a110850 fd5ff06f jal x0, -44 +30483591ns 535443 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30483875ns 535448 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30484273ns 535455 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30484443ns 535458 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30484898ns 535466 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30485068ns 535469 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30485352ns 535474 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30485637ns 535479 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30485921ns 535484 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30486375ns 535492 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30486546ns 535495 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30486830ns 535500 1a110850 fd5ff06f jal x0, -44 +30487114ns 535505 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30487398ns 535510 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30487796ns 535517 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30487967ns 535520 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30488421ns 535528 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30488592ns 535531 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30488876ns 535536 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30489160ns 535541 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30489444ns 535546 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30489899ns 535554 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30490070ns 535557 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30490354ns 535562 1a110850 fd5ff06f jal x0, -44 +30490638ns 535567 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30490922ns 535572 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30491320ns 535579 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30491490ns 535582 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30491945ns 535590 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30492115ns 535593 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30492400ns 535598 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30492684ns 535603 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30492968ns 535608 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30493423ns 535616 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30493593ns 535619 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30493877ns 535624 1a110850 fd5ff06f jal x0, -44 +30494161ns 535629 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30494446ns 535634 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30494843ns 535641 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30495014ns 535644 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30495469ns 535652 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30495639ns 535655 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30495923ns 535660 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30496207ns 535665 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30496492ns 535670 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30496946ns 535678 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30497117ns 535681 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30497401ns 535686 1a110850 fd5ff06f jal x0, -44 +30497685ns 535691 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30497969ns 535696 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30498367ns 535703 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30498538ns 535706 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30498992ns 535714 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30499163ns 535717 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30499447ns 535722 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30499731ns 535727 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30500015ns 535732 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30500470ns 535740 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30500640ns 535743 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30500924ns 535748 1a110850 fd5ff06f jal x0, -44 +30501209ns 535753 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30501493ns 535758 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30501891ns 535765 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30502061ns 535768 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30502516ns 535776 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30502686ns 535779 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30502970ns 535784 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30503255ns 535789 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30503539ns 535794 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30503993ns 535802 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30504164ns 535805 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30504448ns 535810 1a110850 fd5ff06f jal x0, -44 +30504732ns 535815 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30505016ns 535820 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30505414ns 535827 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30505585ns 535830 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30506039ns 535838 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30506210ns 535841 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30506494ns 535846 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30506778ns 535851 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30507062ns 535856 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30507517ns 535864 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30507687ns 535867 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30507972ns 535872 1a110850 fd5ff06f jal x0, -44 +30508256ns 535877 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30508540ns 535882 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30508938ns 535889 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30509108ns 535892 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30509563ns 535900 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30509733ns 535903 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30510018ns 535908 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30510302ns 535913 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30510586ns 535918 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30511041ns 535926 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30511211ns 535929 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30511495ns 535934 1a110850 fd5ff06f jal x0, -44 +30511779ns 535939 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30512064ns 535944 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30512461ns 535951 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30512632ns 535954 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30513087ns 535962 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30513257ns 535965 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30513541ns 535970 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30513825ns 535975 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30514109ns 535980 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30514564ns 535988 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30514735ns 535991 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30515019ns 535996 1a110850 fd5ff06f jal x0, -44 +30515303ns 536001 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30515587ns 536006 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30515985ns 536013 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30516155ns 536016 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30516610ns 536024 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30516781ns 536027 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30517065ns 536032 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30517349ns 536037 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30517633ns 536042 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30518088ns 536050 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30518258ns 536053 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30518542ns 536058 1a110850 fd5ff06f jal x0, -44 +30518827ns 536063 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30519111ns 536068 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30519509ns 536075 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30519679ns 536078 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30520134ns 536086 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30520304ns 536089 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30520588ns 536094 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30520872ns 536099 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30521157ns 536104 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30521611ns 536112 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30521782ns 536115 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30522066ns 536120 1a110850 fd5ff06f jal x0, -44 +30522350ns 536125 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30522634ns 536130 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30523032ns 536137 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30523203ns 536140 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30523657ns 536148 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30523828ns 536151 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30524112ns 536156 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30524396ns 536161 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30524680ns 536166 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30525135ns 536174 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30525305ns 536177 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30525590ns 536182 1a110850 fd5ff06f jal x0, -44 +30525874ns 536187 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30526158ns 536192 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30526556ns 536199 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30526726ns 536202 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30527181ns 536210 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30527351ns 536213 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30527635ns 536218 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30527920ns 536223 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30528204ns 536228 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30528658ns 536236 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30528829ns 536239 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30529113ns 536244 1a110850 fd5ff06f jal x0, -44 +30529397ns 536249 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30529681ns 536254 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30530079ns 536261 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30530250ns 536264 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30530704ns 536272 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30530875ns 536275 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30531159ns 536280 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30531443ns 536285 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30531727ns 536290 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30532182ns 536298 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30532353ns 536301 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30532637ns 536306 1a110850 fd5ff06f jal x0, -44 +30532921ns 536311 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30533205ns 536316 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30533603ns 536323 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30533773ns 536326 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30534228ns 536334 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30534399ns 536337 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30534683ns 536342 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30534967ns 536347 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30535251ns 536352 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30535706ns 536360 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30535876ns 536363 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30536160ns 536368 1a110850 fd5ff06f jal x0, -44 +30536444ns 536373 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30536729ns 536378 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30537126ns 536385 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30537297ns 536388 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30537752ns 536396 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30537922ns 536399 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30538206ns 536404 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30538490ns 536409 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30538775ns 536414 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30539229ns 536422 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30539400ns 536425 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30539684ns 536430 1a110850 fd5ff06f jal x0, -44 +30539968ns 536435 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30540252ns 536440 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30540650ns 536447 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30540821ns 536450 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30541275ns 536458 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30541446ns 536461 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30541730ns 536466 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30542014ns 536471 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30542298ns 536476 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30542753ns 536484 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30542923ns 536487 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30543207ns 536492 1a110850 fd5ff06f jal x0, -44 +30543492ns 536497 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30543776ns 536502 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30544174ns 536509 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30544344ns 536512 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30544799ns 536520 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30544969ns 536523 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30545253ns 536528 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30545538ns 536533 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30545822ns 536538 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30546276ns 536546 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30546447ns 536549 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30546731ns 536554 1a110850 fd5ff06f jal x0, -44 +30547015ns 536559 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30547299ns 536564 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30547697ns 536571 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30547868ns 536574 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30548322ns 536582 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30548493ns 536585 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30548777ns 536590 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30549061ns 536595 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30549345ns 536600 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30549800ns 536608 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30549970ns 536611 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30550255ns 536616 1a110850 fd5ff06f jal x0, -44 +30550539ns 536621 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30550823ns 536626 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30551221ns 536633 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30551391ns 536636 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30551846ns 536644 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30552016ns 536647 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30552301ns 536652 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30552585ns 536657 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30552869ns 536662 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30553324ns 536670 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30553494ns 536673 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30553778ns 536678 1a110850 fd5ff06f jal x0, -44 +30554062ns 536683 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30554347ns 536688 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30554744ns 536695 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30554915ns 536698 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30555370ns 536706 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30555540ns 536709 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30555824ns 536714 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30556108ns 536719 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30556392ns 536724 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30556847ns 536732 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30557018ns 536735 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30557302ns 536740 1a110850 fd5ff06f jal x0, -44 +30557586ns 536745 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30557870ns 536750 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30558268ns 536757 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30558438ns 536760 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30558893ns 536768 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30559064ns 536771 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30559348ns 536776 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30559632ns 536781 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30559916ns 536786 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30560371ns 536794 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30560541ns 536797 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30560825ns 536802 1a110850 fd5ff06f jal x0, -44 +30561110ns 536807 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30561394ns 536812 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30561792ns 536819 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30561962ns 536822 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30562417ns 536830 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30562587ns 536833 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30562871ns 536838 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30563155ns 536843 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30563440ns 536848 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30563894ns 536856 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30564065ns 536859 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30564349ns 536864 1a110850 fd5ff06f jal x0, -44 +30564633ns 536869 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30564917ns 536874 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30565315ns 536881 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30565486ns 536884 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30565940ns 536892 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30566111ns 536895 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30566395ns 536900 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30566679ns 536905 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30566963ns 536910 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30567418ns 536918 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30567588ns 536921 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30567873ns 536926 1a110850 fd5ff06f jal x0, -44 +30568157ns 536931 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30568441ns 536936 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30568839ns 536943 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30569009ns 536946 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30569464ns 536954 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30569634ns 536957 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30569919ns 536962 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30570203ns 536967 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30570487ns 536972 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30570941ns 536980 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30571112ns 536983 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30571396ns 536988 1a110850 fd5ff06f jal x0, -44 +30571680ns 536993 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30571964ns 536998 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30572362ns 537005 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30572533ns 537008 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30572987ns 537016 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30573158ns 537019 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30573442ns 537024 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30573726ns 537029 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30574010ns 537034 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30574465ns 537042 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30574636ns 537045 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30574920ns 537050 1a110850 fd5ff06f jal x0, -44 +30575204ns 537055 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30575488ns 537060 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30575886ns 537067 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30576056ns 537070 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30576511ns 537078 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30576682ns 537081 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30576966ns 537086 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30577250ns 537091 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30577534ns 537096 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30577989ns 537104 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30578159ns 537107 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30578443ns 537112 1a110850 fd5ff06f jal x0, -44 +30578727ns 537117 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30579012ns 537122 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30579409ns 537129 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30579580ns 537132 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30580035ns 537140 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30580205ns 537143 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30580489ns 537148 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30580773ns 537153 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30581058ns 537158 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30581512ns 537166 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30581683ns 537169 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30581967ns 537174 1a110850 fd5ff06f jal x0, -44 +30582251ns 537179 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30582535ns 537184 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30582933ns 537191 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30583104ns 537194 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30583558ns 537202 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30583729ns 537205 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30584013ns 537210 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30584297ns 537215 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30584581ns 537220 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30585036ns 537228 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30585206ns 537231 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30585490ns 537236 1a110850 fd5ff06f jal x0, -44 +30585775ns 537241 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30586059ns 537246 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30586457ns 537253 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30586627ns 537256 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30587082ns 537264 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30587252ns 537267 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30587536ns 537272 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30587821ns 537277 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30588105ns 537282 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30588559ns 537290 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30588730ns 537293 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30589014ns 537298 1a110850 fd5ff06f jal x0, -44 +30589298ns 537303 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30589582ns 537308 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30589980ns 537315 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30590151ns 537318 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30590605ns 537326 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30590776ns 537329 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30591060ns 537334 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30591344ns 537339 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30591628ns 537344 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30592083ns 537352 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30592253ns 537355 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30592538ns 537360 1a110850 fd5ff06f jal x0, -44 +30592822ns 537365 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30593106ns 537370 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30593504ns 537377 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30593674ns 537380 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30594129ns 537388 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30594299ns 537391 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30594584ns 537396 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30594868ns 537401 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30595152ns 537406 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30595607ns 537414 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30595777ns 537417 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30596061ns 537422 1a110850 fd5ff06f jal x0, -44 +30596345ns 537427 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30596630ns 537432 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30597027ns 537439 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30597198ns 537442 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30597653ns 537450 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30597823ns 537453 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30598107ns 537458 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30598391ns 537463 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30598675ns 537468 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30599130ns 537476 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30599301ns 537479 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30599585ns 537484 1a110850 fd5ff06f jal x0, -44 +30599869ns 537489 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30600153ns 537494 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30600551ns 537501 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30600721ns 537504 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30601176ns 537512 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30601347ns 537515 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30601631ns 537520 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30601915ns 537525 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30602199ns 537530 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30602654ns 537538 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30602824ns 537541 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30603108ns 537546 1a110850 fd5ff06f jal x0, -44 +30603393ns 537551 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30603677ns 537556 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30604075ns 537563 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30604245ns 537566 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30604700ns 537574 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30604870ns 537577 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30605154ns 537582 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30605439ns 537587 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30605723ns 537592 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30606177ns 537600 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30606348ns 537603 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30606632ns 537608 1a110850 fd5ff06f jal x0, -44 +30606916ns 537613 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30607200ns 537618 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30607598ns 537625 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30607769ns 537628 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30608223ns 537636 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30608394ns 537639 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30608678ns 537644 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30608962ns 537649 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30609246ns 537654 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30609701ns 537662 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30609871ns 537665 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30610156ns 537670 1a110850 fd5ff06f jal x0, -44 +30610440ns 537675 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30610724ns 537680 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30611122ns 537687 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30611292ns 537690 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30611747ns 537698 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30611917ns 537701 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30612202ns 537706 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30612486ns 537711 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30612770ns 537716 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30613224ns 537724 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30613395ns 537727 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30613679ns 537732 1a110850 fd5ff06f jal x0, -44 +30613963ns 537737 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30614247ns 537742 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30614645ns 537749 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30614816ns 537752 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30615270ns 537760 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30615441ns 537763 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30615725ns 537768 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30616009ns 537773 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30616293ns 537778 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30616748ns 537786 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30616919ns 537789 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30617203ns 537794 1a110850 fd5ff06f jal x0, -44 +30617487ns 537799 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30617771ns 537804 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30618169ns 537811 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30618339ns 537814 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30618794ns 537822 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30618965ns 537825 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30619249ns 537830 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30619533ns 537835 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30619817ns 537840 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30620272ns 537848 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30620442ns 537851 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30620726ns 537856 1a110850 fd5ff06f jal x0, -44 +30621010ns 537861 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30621295ns 537866 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30621692ns 537873 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30621863ns 537876 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30622318ns 537884 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30622488ns 537887 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30622772ns 537892 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30623056ns 537897 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30623341ns 537902 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30623795ns 537910 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30623966ns 537913 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30624250ns 537918 1a110850 fd5ff06f jal x0, -44 +30624534ns 537923 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30624818ns 537928 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30625216ns 537935 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30625387ns 537938 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30625841ns 537946 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30626012ns 537949 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30626296ns 537954 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30626580ns 537959 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30626864ns 537964 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30627319ns 537972 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30627489ns 537975 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30627773ns 537980 1a110850 fd5ff06f jal x0, -44 +30628058ns 537985 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30628342ns 537990 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30628740ns 537997 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30628910ns 538000 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30629365ns 538008 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30629535ns 538011 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30629819ns 538016 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30630104ns 538021 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30630388ns 538026 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30630842ns 538034 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30631013ns 538037 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30631297ns 538042 1a110850 fd5ff06f jal x0, -44 +30631581ns 538047 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30631865ns 538052 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30632263ns 538059 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30632434ns 538062 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30632888ns 538070 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30633059ns 538073 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30633343ns 538078 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30633627ns 538083 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30633911ns 538088 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30634366ns 538096 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30634536ns 538099 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30634821ns 538104 1a110850 fd5ff06f jal x0, -44 +30635105ns 538109 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30635389ns 538114 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30635787ns 538121 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30635957ns 538124 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30636412ns 538132 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30636582ns 538135 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30636867ns 538140 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30637151ns 538145 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30637435ns 538150 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30637890ns 538158 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30638060ns 538161 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30638344ns 538166 1a110850 fd5ff06f jal x0, -44 +30638628ns 538171 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30638913ns 538176 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30639310ns 538183 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30639481ns 538186 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30639936ns 538194 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30640106ns 538197 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30640390ns 538202 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30640674ns 538207 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30640959ns 538212 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30641413ns 538220 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30641584ns 538223 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30641868ns 538228 1a110850 fd5ff06f jal x0, -44 +30642152ns 538233 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30642436ns 538238 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30642834ns 538245 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30643004ns 538248 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30643459ns 538256 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30643630ns 538259 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30643914ns 538264 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30644198ns 538269 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30644482ns 538274 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30644937ns 538282 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30645107ns 538285 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30645391ns 538290 1a110850 fd5ff06f jal x0, -44 +30645676ns 538295 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30645960ns 538300 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30646358ns 538307 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30646528ns 538310 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30646983ns 538318 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30647153ns 538321 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30647437ns 538326 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30647722ns 538331 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30648006ns 538336 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30648460ns 538344 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30648631ns 538347 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30648915ns 538352 1a110850 fd5ff06f jal x0, -44 +30649199ns 538357 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30649483ns 538362 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30649881ns 538369 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30650052ns 538372 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30650506ns 538380 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30650677ns 538383 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30650961ns 538388 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30651245ns 538393 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30651529ns 538398 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30651984ns 538406 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30652154ns 538409 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30652439ns 538414 1a110850 fd5ff06f jal x0, -44 +30652723ns 538419 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30653007ns 538424 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30653405ns 538431 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30653575ns 538434 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30654030ns 538442 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30654200ns 538445 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30654485ns 538450 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30654769ns 538455 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30655053ns 538460 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30655507ns 538468 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30655678ns 538471 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30655962ns 538476 1a110850 fd5ff06f jal x0, -44 +30656246ns 538481 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30656530ns 538486 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30656928ns 538493 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30657099ns 538496 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30657553ns 538504 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30657724ns 538507 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30658008ns 538512 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30658292ns 538517 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30658576ns 538522 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30659031ns 538530 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30659202ns 538533 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30659486ns 538538 1a110850 fd5ff06f jal x0, -44 +30659770ns 538543 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30660054ns 538548 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30660452ns 538555 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30660622ns 538558 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30661077ns 538566 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30661248ns 538569 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30661532ns 538574 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30661816ns 538579 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30662100ns 538584 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30662555ns 538592 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30662725ns 538595 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30663009ns 538600 1a110850 fd5ff06f jal x0, -44 +30663293ns 538605 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30663578ns 538610 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30663975ns 538617 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30664146ns 538620 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30664601ns 538628 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30664771ns 538631 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30665055ns 538636 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30665339ns 538641 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30665624ns 538646 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30666078ns 538654 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30666249ns 538657 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30666533ns 538662 1a110850 fd5ff06f jal x0, -44 +30666817ns 538667 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30667101ns 538672 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30667499ns 538679 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30667670ns 538682 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30668124ns 538690 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30668295ns 538693 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30668579ns 538698 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30668863ns 538703 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30669147ns 538708 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30669602ns 538716 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30669772ns 538719 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30670056ns 538724 1a110850 fd5ff06f jal x0, -44 +30670341ns 538729 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30670625ns 538734 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30671023ns 538741 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30671193ns 538744 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30671648ns 538752 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30671818ns 538755 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30672102ns 538760 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30672387ns 538765 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30672671ns 538770 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30673125ns 538778 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30673296ns 538781 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30673580ns 538786 1a110850 fd5ff06f jal x0, -44 +30673864ns 538791 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30674148ns 538796 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30674546ns 538803 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30674717ns 538806 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30675171ns 538814 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30675342ns 538817 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30675626ns 538822 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30675910ns 538827 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30676194ns 538832 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30676649ns 538840 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30676819ns 538843 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30677104ns 538848 1a110850 fd5ff06f jal x0, -44 +30677388ns 538853 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30677672ns 538858 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30678070ns 538865 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30678240ns 538868 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30678695ns 538876 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30678865ns 538879 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30679150ns 538884 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30679434ns 538889 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30679718ns 538894 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30680173ns 538902 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30680343ns 538905 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30680627ns 538910 1a110850 fd5ff06f jal x0, -44 +30680911ns 538915 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30681196ns 538920 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30681593ns 538927 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30681764ns 538930 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30682219ns 538938 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30682389ns 538941 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30682673ns 538946 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30682957ns 538951 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30683242ns 538956 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30683696ns 538964 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30683867ns 538967 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30684151ns 538972 1a110850 fd5ff06f jal x0, -44 +30684435ns 538977 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30684719ns 538982 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30685117ns 538989 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30685287ns 538992 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30685742ns 539000 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30685913ns 539003 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30686197ns 539008 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30686481ns 539013 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30686765ns 539018 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30687220ns 539026 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30687390ns 539029 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30687674ns 539034 1a110850 fd5ff06f jal x0, -44 +30687959ns 539039 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30688243ns 539044 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30688641ns 539051 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30688811ns 539054 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30689266ns 539062 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30689436ns 539065 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30689720ns 539070 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30690005ns 539075 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30690289ns 539080 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30690743ns 539088 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30690914ns 539091 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30691198ns 539096 1a110850 fd5ff06f jal x0, -44 +30691482ns 539101 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30691766ns 539106 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30692164ns 539113 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30692335ns 539116 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30692789ns 539124 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30692960ns 539127 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30693244ns 539132 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30693528ns 539137 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30693812ns 539142 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30694267ns 539150 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30694437ns 539153 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30694722ns 539158 1a110850 fd5ff06f jal x0, -44 +30695006ns 539163 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30695290ns 539168 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30695688ns 539175 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30695858ns 539178 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30696313ns 539186 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30696483ns 539189 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30696768ns 539194 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30697052ns 539199 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30697336ns 539204 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30697791ns 539212 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30697961ns 539215 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30698245ns 539220 1a110850 fd5ff06f jal x0, -44 +30698529ns 539225 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30698813ns 539230 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30699211ns 539237 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30699382ns 539240 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30699836ns 539248 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30700007ns 539251 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30700291ns 539256 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30700575ns 539261 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30700859ns 539266 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30701314ns 539274 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30701485ns 539277 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30701769ns 539282 1a110850 fd5ff06f jal x0, -44 +30702053ns 539287 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30702337ns 539292 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30702735ns 539299 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30702905ns 539302 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30703360ns 539310 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30703531ns 539313 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30703815ns 539318 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30704099ns 539323 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30704383ns 539328 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30704838ns 539336 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30705008ns 539339 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30705292ns 539344 1a110850 fd5ff06f jal x0, -44 +30705576ns 539349 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30705861ns 539354 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30706258ns 539361 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30706429ns 539364 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30706884ns 539372 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30707054ns 539375 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30707338ns 539380 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30707622ns 539385 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30707907ns 539390 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30708361ns 539398 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30708532ns 539401 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30708816ns 539406 1a110850 fd5ff06f jal x0, -44 +30709100ns 539411 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30709384ns 539416 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30709782ns 539423 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30709953ns 539426 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30710407ns 539434 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30710578ns 539437 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30710862ns 539442 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30711146ns 539447 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30711430ns 539452 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30711885ns 539460 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30712055ns 539463 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30712339ns 539468 1a110850 fd5ff06f jal x0, -44 +30712624ns 539473 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30712908ns 539478 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30713306ns 539485 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30713476ns 539488 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30713931ns 539496 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30714101ns 539499 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30714385ns 539504 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30714670ns 539509 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30714954ns 539514 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30715408ns 539522 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30715579ns 539525 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30715863ns 539530 1a110850 fd5ff06f jal x0, -44 +30716147ns 539535 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30716431ns 539540 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30716829ns 539547 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30717000ns 539550 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30717454ns 539558 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30717625ns 539561 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30717909ns 539566 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30718193ns 539571 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30718477ns 539576 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30718932ns 539584 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30719103ns 539587 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30719387ns 539592 1a110850 fd5ff06f jal x0, -44 +30719671ns 539597 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30719955ns 539602 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30720353ns 539609 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30720523ns 539612 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30720978ns 539620 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30721148ns 539623 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30721433ns 539628 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30721717ns 539633 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30722001ns 539638 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30722456ns 539646 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30722626ns 539649 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30722910ns 539654 1a110850 fd5ff06f jal x0, -44 +30723194ns 539659 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30723479ns 539664 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30723876ns 539671 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30724047ns 539674 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30724502ns 539682 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30724672ns 539685 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30724956ns 539690 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30725240ns 539695 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30725525ns 539700 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30725979ns 539708 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30726150ns 539711 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30726434ns 539716 1a110850 fd5ff06f jal x0, -44 +30726718ns 539721 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30727002ns 539726 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30727400ns 539733 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30727570ns 539736 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30728025ns 539744 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30728196ns 539747 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30728480ns 539752 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30728764ns 539757 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30729048ns 539762 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30729503ns 539770 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30729673ns 539773 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30729957ns 539778 1a110850 fd5ff06f jal x0, -44 +30730242ns 539783 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30730526ns 539788 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30730924ns 539795 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30731094ns 539798 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30731549ns 539806 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30731719ns 539809 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30732003ns 539814 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30732288ns 539819 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30732572ns 539824 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30733026ns 539832 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30733197ns 539835 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30733481ns 539840 1a110850 fd5ff06f jal x0, -44 +30733765ns 539845 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30734049ns 539850 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30734447ns 539857 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30734618ns 539860 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30735072ns 539868 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30735243ns 539871 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30735527ns 539876 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30735811ns 539881 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30736095ns 539886 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30736550ns 539894 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30736720ns 539897 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30737005ns 539902 1a110850 fd5ff06f jal x0, -44 +30737289ns 539907 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30737573ns 539912 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30737971ns 539919 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30738141ns 539922 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30738596ns 539930 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30738766ns 539933 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30739051ns 539938 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30739335ns 539943 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30739619ns 539948 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30740074ns 539956 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30740244ns 539959 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30740528ns 539964 1a110850 fd5ff06f jal x0, -44 +30740812ns 539969 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30741096ns 539974 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30741494ns 539981 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30741665ns 539984 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30742119ns 539992 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30742290ns 539995 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30742574ns 540000 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30742858ns 540005 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30743142ns 540010 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30743597ns 540018 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30743768ns 540021 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30744052ns 540026 1a110850 fd5ff06f jal x0, -44 +30744336ns 540031 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30744620ns 540036 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30745018ns 540043 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30745188ns 540046 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30745643ns 540054 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30745814ns 540057 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30746098ns 540062 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30746382ns 540067 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30746666ns 540072 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30747121ns 540080 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30747291ns 540083 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30747575ns 540088 1a110850 fd5ff06f jal x0, -44 +30747859ns 540093 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30748144ns 540098 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30748541ns 540105 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30748712ns 540108 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30749167ns 540116 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30749337ns 540119 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30749621ns 540124 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30749905ns 540129 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30750190ns 540134 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30750644ns 540142 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30750815ns 540145 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30751099ns 540150 1a110850 fd5ff06f jal x0, -44 +30751383ns 540155 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30751667ns 540160 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30752065ns 540167 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30752236ns 540170 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30752690ns 540178 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30752861ns 540181 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30753145ns 540186 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30753429ns 540191 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30753713ns 540196 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30754168ns 540204 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30754338ns 540207 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30754623ns 540212 1a110850 fd5ff06f jal x0, -44 +30754907ns 540217 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30755191ns 540222 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30755589ns 540229 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30755759ns 540232 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30756214ns 540240 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30756384ns 540243 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30756668ns 540248 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30756953ns 540253 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30757237ns 540258 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30757691ns 540266 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30757862ns 540269 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30758146ns 540274 1a110850 fd5ff06f jal x0, -44 +30758430ns 540279 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30758714ns 540284 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30759112ns 540291 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30759283ns 540294 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30759737ns 540302 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30759908ns 540305 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30760192ns 540310 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30760476ns 540315 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30760760ns 540320 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30761215ns 540328 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30761386ns 540331 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30761670ns 540336 1a110850 fd5ff06f jal x0, -44 +30761954ns 540341 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30762238ns 540346 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30762636ns 540353 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30762806ns 540356 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30763261ns 540364 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30763431ns 540367 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30763716ns 540372 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30764000ns 540377 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30764284ns 540382 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30764739ns 540390 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30764909ns 540393 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30765193ns 540398 1a110850 fd5ff06f jal x0, -44 +30765477ns 540403 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30765762ns 540408 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30766159ns 540415 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30766330ns 540418 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30766785ns 540426 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30766955ns 540429 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30767239ns 540434 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30767523ns 540439 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30767808ns 540444 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30768262ns 540452 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30768433ns 540455 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30768717ns 540460 1a110850 fd5ff06f jal x0, -44 +30769001ns 540465 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30769285ns 540470 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30769683ns 540477 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30769853ns 540480 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30770308ns 540488 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30770479ns 540491 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30770763ns 540496 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30771047ns 540501 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30771331ns 540506 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30771786ns 540514 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30771956ns 540517 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30772240ns 540522 1a110850 fd5ff06f jal x0, -44 +30772525ns 540527 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30772809ns 540532 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30773207ns 540539 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30773377ns 540542 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30773832ns 540550 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30774002ns 540553 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30774286ns 540558 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30774571ns 540563 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30774855ns 540568 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30775309ns 540576 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30775480ns 540579 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30775764ns 540584 1a110850 fd5ff06f jal x0, -44 +30776048ns 540589 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30776332ns 540594 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30776730ns 540601 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30776901ns 540604 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30777355ns 540612 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30777526ns 540615 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30777810ns 540620 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30778094ns 540625 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30778378ns 540630 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30778833ns 540638 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30779003ns 540641 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30779288ns 540646 1a110850 fd5ff06f jal x0, -44 +30779572ns 540651 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30779856ns 540656 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30780254ns 540663 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30780424ns 540666 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30780879ns 540674 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30781049ns 540677 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30781334ns 540682 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30781618ns 540687 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30781902ns 540692 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30782357ns 540700 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30782527ns 540703 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30782811ns 540708 1a110850 fd5ff06f jal x0, -44 +30783095ns 540713 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30783379ns 540718 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30783777ns 540725 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30783948ns 540728 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30784402ns 540736 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30784573ns 540739 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30784857ns 540744 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30785141ns 540749 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30785425ns 540754 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30785880ns 540762 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30786051ns 540765 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30786335ns 540770 1a110850 fd5ff06f jal x0, -44 +30786619ns 540775 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30786903ns 540780 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30787301ns 540787 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30787471ns 540790 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30787926ns 540798 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30788097ns 540801 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30788381ns 540806 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30788665ns 540811 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30788949ns 540816 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30789404ns 540824 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30789574ns 540827 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30789858ns 540832 1a110850 fd5ff06f jal x0, -44 +30790143ns 540837 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30790427ns 540842 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30790824ns 540849 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30790995ns 540852 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30791450ns 540860 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30791620ns 540863 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30791904ns 540868 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30792188ns 540873 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30792473ns 540878 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30792927ns 540886 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30793098ns 540889 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30793382ns 540894 1a110850 fd5ff06f jal x0, -44 +30793666ns 540899 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30793950ns 540904 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30794348ns 540911 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30794519ns 540914 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30794973ns 540922 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30795144ns 540925 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30795428ns 540930 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30795712ns 540935 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30795996ns 540940 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30796451ns 540948 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30796621ns 540951 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30796906ns 540956 1a110850 fd5ff06f jal x0, -44 +30797190ns 540961 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30797474ns 540966 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30797872ns 540973 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30798042ns 540976 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30798497ns 540984 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30798667ns 540987 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30798951ns 540992 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30799236ns 540997 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30799520ns 541002 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30799974ns 541010 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30800145ns 541013 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30800429ns 541018 1a110850 fd5ff06f jal x0, -44 +30800713ns 541023 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30800997ns 541028 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30801395ns 541035 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30801566ns 541038 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30802020ns 541046 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30802191ns 541049 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30802475ns 541054 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30802759ns 541059 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30803043ns 541064 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30803498ns 541072 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30803669ns 541075 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30803953ns 541080 1a110850 fd5ff06f jal x0, -44 +30804237ns 541085 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30804521ns 541090 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30804919ns 541097 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30805089ns 541100 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30805544ns 541108 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30805714ns 541111 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30805999ns 541116 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30806283ns 541121 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30806567ns 541126 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30807022ns 541134 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30807192ns 541137 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30807476ns 541142 1a110850 fd5ff06f jal x0, -44 +30807760ns 541147 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30808045ns 541152 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30808442ns 541159 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30808613ns 541162 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30809068ns 541170 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30809238ns 541173 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30809522ns 541178 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30809806ns 541183 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30810091ns 541188 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30810545ns 541196 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30810716ns 541199 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30811000ns 541204 1a110850 fd5ff06f jal x0, -44 +30811284ns 541209 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30811568ns 541214 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30811966ns 541221 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30812136ns 541224 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30812591ns 541232 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30812762ns 541235 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30813046ns 541240 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30813330ns 541245 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30813614ns 541250 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30814069ns 541258 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30814239ns 541261 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30814523ns 541266 1a110850 fd5ff06f jal x0, -44 +30814808ns 541271 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30815092ns 541276 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30815490ns 541283 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30815660ns 541286 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30816115ns 541294 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30816285ns 541297 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30816569ns 541302 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30816854ns 541307 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30817138ns 541312 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30817592ns 541320 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30817763ns 541323 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30818047ns 541328 1a110850 fd5ff06f jal x0, -44 +30818331ns 541333 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30818615ns 541338 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30819013ns 541345 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30819184ns 541348 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30819638ns 541356 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30819809ns 541359 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30820093ns 541364 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30820377ns 541369 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30820661ns 541374 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30821116ns 541382 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30821286ns 541385 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30821571ns 541390 1a110850 fd5ff06f jal x0, -44 +30821855ns 541395 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30822139ns 541400 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30822537ns 541407 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30822707ns 541410 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30823162ns 541418 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30823332ns 541421 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30823617ns 541426 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30823901ns 541431 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30824185ns 541436 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30824640ns 541444 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30824810ns 541447 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30825094ns 541452 1a110850 fd5ff06f jal x0, -44 +30825378ns 541457 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30825663ns 541462 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30826060ns 541469 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30826231ns 541472 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30826685ns 541480 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30826856ns 541483 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30827140ns 541488 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30827424ns 541493 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30827708ns 541498 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30828163ns 541506 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30828334ns 541509 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30828618ns 541514 1a110850 fd5ff06f jal x0, -44 +30828902ns 541519 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30829186ns 541524 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30829584ns 541531 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30829754ns 541534 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30830209ns 541542 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30830380ns 541545 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30830664ns 541550 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30830948ns 541555 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30831232ns 541560 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30831687ns 541568 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30831857ns 541571 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30832141ns 541576 1a110850 fd5ff06f jal x0, -44 +30832426ns 541581 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30832710ns 541586 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30833107ns 541593 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30833278ns 541596 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30833733ns 541604 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30833903ns 541607 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30834187ns 541612 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30834471ns 541617 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30834756ns 541622 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30835210ns 541630 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30835381ns 541633 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30835665ns 541638 1a110850 fd5ff06f jal x0, -44 +30835949ns 541643 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30836233ns 541648 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30836631ns 541655 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30836802ns 541658 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30837256ns 541666 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30837427ns 541669 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30837711ns 541674 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30837995ns 541679 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30838279ns 541684 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30838734ns 541692 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30838904ns 541695 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30839189ns 541700 1a110850 fd5ff06f jal x0, -44 +30839473ns 541705 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30839757ns 541710 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30840155ns 541717 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30840325ns 541720 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30840780ns 541728 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30840950ns 541731 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30841234ns 541736 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30841519ns 541741 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30841803ns 541746 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30842257ns 541754 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30842428ns 541757 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30842712ns 541762 1a110850 fd5ff06f jal x0, -44 +30842996ns 541767 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30843280ns 541772 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30843678ns 541779 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30843849ns 541782 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30844303ns 541790 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30844474ns 541793 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30844758ns 541798 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30845042ns 541803 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30845326ns 541808 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30845781ns 541816 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30845952ns 541819 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30846236ns 541824 1a110850 fd5ff06f jal x0, -44 +30846520ns 541829 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30846804ns 541834 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30847202ns 541841 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30847372ns 541844 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30847827ns 541852 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30847997ns 541855 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30848282ns 541860 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30848566ns 541865 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30848850ns 541870 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30849305ns 541878 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30849475ns 541881 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30849759ns 541886 1a110850 fd5ff06f jal x0, -44 +30850043ns 541891 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30850328ns 541896 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30850725ns 541903 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30850896ns 541906 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30851351ns 541914 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30851521ns 541917 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30851805ns 541922 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30852089ns 541927 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30852374ns 541932 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30852828ns 541940 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30852999ns 541943 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30853283ns 541948 1a110850 fd5ff06f jal x0, -44 +30853567ns 541953 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30853851ns 541958 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30854249ns 541965 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30854419ns 541968 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30854874ns 541976 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30855045ns 541979 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30855329ns 541984 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30855613ns 541989 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30855897ns 541994 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30856352ns 542002 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30856522ns 542005 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30856806ns 542010 1a110850 fd5ff06f jal x0, -44 +30857091ns 542015 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30857375ns 542020 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30857773ns 542027 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30857943ns 542030 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30858398ns 542038 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30858568ns 542041 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30858852ns 542046 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30859137ns 542051 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30859421ns 542056 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30859875ns 542064 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30860046ns 542067 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30860330ns 542072 1a110850 fd5ff06f jal x0, -44 +30860614ns 542077 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30860898ns 542082 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30861296ns 542089 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30861467ns 542092 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30861921ns 542100 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30862092ns 542103 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30862376ns 542108 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30862660ns 542113 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30862944ns 542118 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30863399ns 542126 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30863569ns 542129 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30863854ns 542134 1a110850 fd5ff06f jal x0, -44 +30864138ns 542139 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30864422ns 542144 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30864820ns 542151 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30864990ns 542154 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30865445ns 542162 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30865615ns 542165 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30865900ns 542170 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30866184ns 542175 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30866468ns 542180 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30866923ns 542188 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30867093ns 542191 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30867377ns 542196 1a110850 fd5ff06f jal x0, -44 +30867661ns 542201 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30867946ns 542206 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30868343ns 542213 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30868514ns 542216 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30868968ns 542224 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30869139ns 542227 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30869423ns 542232 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30869707ns 542237 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30869991ns 542242 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30870446ns 542250 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30870617ns 542253 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30870901ns 542258 1a110850 fd5ff06f jal x0, -44 +30871185ns 542263 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30871469ns 542268 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30871867ns 542275 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30872037ns 542278 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30872492ns 542286 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30872663ns 542289 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30872947ns 542294 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30873231ns 542299 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30873515ns 542304 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30873970ns 542312 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30874140ns 542315 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30874424ns 542320 1a110850 fd5ff06f jal x0, -44 +30874709ns 542325 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30874993ns 542330 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30875391ns 542337 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30875561ns 542340 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30876016ns 542348 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30876186ns 542351 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30876470ns 542356 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30876754ns 542361 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30877039ns 542366 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30877493ns 542374 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30877664ns 542377 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30877948ns 542382 1a110850 fd5ff06f jal x0, -44 +30878232ns 542387 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30878516ns 542392 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30878914ns 542399 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30879085ns 542402 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30879539ns 542410 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30879710ns 542413 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30879994ns 542418 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30880278ns 542423 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30880562ns 542428 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30881017ns 542436 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30881187ns 542439 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30881472ns 542444 1a110850 fd5ff06f jal x0, -44 +30881756ns 542449 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30882040ns 542454 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30882438ns 542461 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30882608ns 542464 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30883063ns 542472 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30883233ns 542475 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30883517ns 542480 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30883802ns 542485 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30884086ns 542490 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30884540ns 542498 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30884711ns 542501 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30884995ns 542506 1a110850 fd5ff06f jal x0, -44 +30885279ns 542511 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30885563ns 542516 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30885961ns 542523 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30886132ns 542526 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30886586ns 542534 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30886757ns 542537 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30887041ns 542542 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30887325ns 542547 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30887609ns 542552 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30888064ns 542560 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30888235ns 542563 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30888519ns 542568 1a110850 fd5ff06f jal x0, -44 +30888803ns 542573 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30889087ns 542578 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30889485ns 542585 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30889655ns 542588 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30890110ns 542596 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30890280ns 542599 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30890565ns 542604 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30890849ns 542609 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30891133ns 542614 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30891588ns 542622 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30891758ns 542625 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30892042ns 542630 1a110850 fd5ff06f jal x0, -44 +30892326ns 542635 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30892611ns 542640 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30893008ns 542647 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30893179ns 542650 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30893634ns 542658 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30893804ns 542661 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30894088ns 542666 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30894372ns 542671 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30894657ns 542676 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30895111ns 542684 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30895282ns 542687 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30895566ns 542692 1a110850 fd5ff06f jal x0, -44 +30895850ns 542697 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30896134ns 542702 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30896532ns 542709 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30896703ns 542712 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30897157ns 542720 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30897328ns 542723 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30897612ns 542728 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30897896ns 542733 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30898180ns 542738 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30898635ns 542746 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30898805ns 542749 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30899089ns 542754 1a110850 fd5ff06f jal x0, -44 +30899374ns 542759 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30899658ns 542764 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30900056ns 542771 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30900226ns 542774 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30900681ns 542782 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30900851ns 542785 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30901135ns 542790 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30901420ns 542795 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30901704ns 542800 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30902158ns 542808 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30902329ns 542811 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30902613ns 542816 1a110850 fd5ff06f jal x0, -44 +30902897ns 542821 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30903181ns 542826 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30903579ns 542833 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30903750ns 542836 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30904204ns 542844 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30904375ns 542847 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30904659ns 542852 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30904943ns 542857 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30905227ns 542862 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30905682ns 542870 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30905852ns 542873 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30906137ns 542878 1a110850 fd5ff06f jal x0, -44 +30906421ns 542883 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30906705ns 542888 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30907103ns 542895 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30907273ns 542898 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30907728ns 542906 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30907898ns 542909 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30908183ns 542914 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30908467ns 542919 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30908751ns 542924 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30909206ns 542932 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30909376ns 542935 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30909660ns 542940 1a110850 fd5ff06f jal x0, -44 +30909944ns 542945 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30910229ns 542950 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30910626ns 542957 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30910797ns 542960 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30911251ns 542968 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30911422ns 542971 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30911706ns 542976 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30911990ns 542981 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30912274ns 542986 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30912729ns 542994 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30912900ns 542997 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30913184ns 543002 1a110850 fd5ff06f jal x0, -44 +30913468ns 543007 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30913752ns 543012 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30914150ns 543019 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30914320ns 543022 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30914775ns 543030 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30914946ns 543033 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30915230ns 543038 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30915514ns 543043 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30915798ns 543048 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30916253ns 543056 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30916423ns 543059 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30916707ns 543064 1a110850 fd5ff06f jal x0, -44 +30916992ns 543069 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30917276ns 543074 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30917674ns 543081 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30917844ns 543084 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30918299ns 543092 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30918469ns 543095 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30918753ns 543100 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30919037ns 543105 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30919322ns 543110 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30919776ns 543118 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30919947ns 543121 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30920231ns 543126 1a110850 fd5ff06f jal x0, -44 +30920515ns 543131 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30920799ns 543136 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30921197ns 543143 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30921368ns 543146 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30921822ns 543154 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30921993ns 543157 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30922277ns 543162 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30922561ns 543167 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30922845ns 543172 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30923300ns 543180 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30923470ns 543183 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30923755ns 543188 1a110850 fd5ff06f jal x0, -44 +30924039ns 543193 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30924323ns 543198 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30924721ns 543205 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30924891ns 543208 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30925346ns 543216 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30925516ns 543219 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30925800ns 543224 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30926085ns 543229 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30926369ns 543234 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30926823ns 543242 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30926994ns 543245 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30927278ns 543250 1a110850 fd5ff06f jal x0, -44 +30927562ns 543255 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30927846ns 543260 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30928244ns 543267 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30928415ns 543270 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30928869ns 543278 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30929040ns 543281 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30929324ns 543286 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30929608ns 543291 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30929892ns 543296 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30930347ns 543304 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30930518ns 543307 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30930802ns 543312 1a110850 fd5ff06f jal x0, -44 +30931086ns 543317 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30931370ns 543322 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30931768ns 543329 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30931938ns 543332 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30932393ns 543340 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30932563ns 543343 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30932848ns 543348 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30933132ns 543353 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30933416ns 543358 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30933871ns 543366 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30934041ns 543369 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30934325ns 543374 1a110850 fd5ff06f jal x0, -44 +30934609ns 543379 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30934894ns 543384 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30935291ns 543391 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30935462ns 543394 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30935917ns 543402 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30936087ns 543405 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30936371ns 543410 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30936655ns 543415 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30936940ns 543420 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30937394ns 543428 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30937565ns 543431 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30937849ns 543436 1a110850 fd5ff06f jal x0, -44 +30938133ns 543441 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30938417ns 543446 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30938815ns 543453 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30938986ns 543456 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30939440ns 543464 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30939611ns 543467 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30939895ns 543472 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30940179ns 543477 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30940463ns 543482 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30940918ns 543490 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30941088ns 543493 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30941372ns 543498 1a110850 fd5ff06f jal x0, -44 +30941657ns 543503 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30941941ns 543508 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30942339ns 543515 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30942509ns 543518 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30942964ns 543526 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30943134ns 543529 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30943418ns 543534 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30943703ns 543539 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30943987ns 543544 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30944441ns 543552 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30944612ns 543555 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30944896ns 543560 1a110850 fd5ff06f jal x0, -44 +30945180ns 543565 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30945464ns 543570 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30945862ns 543577 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30946033ns 543580 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30946487ns 543588 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30946658ns 543591 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30946942ns 543596 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30947226ns 543601 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30947510ns 543606 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30947965ns 543614 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30948135ns 543617 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30948420ns 543622 1a110850 fd5ff06f jal x0, -44 +30948704ns 543627 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30948988ns 543632 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30949386ns 543639 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30949556ns 543642 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30950011ns 543650 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30950181ns 543653 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30950466ns 543658 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30950750ns 543663 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30951034ns 543668 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30951489ns 543676 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30951659ns 543679 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30951943ns 543684 1a110850 fd5ff06f jal x0, -44 +30952227ns 543689 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30952512ns 543694 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30952909ns 543701 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30953080ns 543704 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30953535ns 543712 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30953705ns 543715 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30953989ns 543720 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30954273ns 543725 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30954557ns 543730 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30955012ns 543738 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30955183ns 543741 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30955467ns 543746 1a110850 fd5ff06f jal x0, -44 +30955751ns 543751 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30956035ns 543756 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30956433ns 543763 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30956603ns 543766 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30957058ns 543774 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30957229ns 543777 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30957513ns 543782 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30957797ns 543787 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30958081ns 543792 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30958536ns 543800 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30958706ns 543803 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30958990ns 543808 1a110850 fd5ff06f jal x0, -44 +30959275ns 543813 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30959559ns 543818 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30959957ns 543825 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30960127ns 543828 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30960582ns 543836 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30960752ns 543839 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30961036ns 543844 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30961320ns 543849 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30961605ns 543854 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30962059ns 543862 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30962230ns 543865 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30962514ns 543870 1a110850 fd5ff06f jal x0, -44 +30962798ns 543875 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30963082ns 543880 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30963480ns 543887 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30963651ns 543890 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30964105ns 543898 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30964276ns 543901 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30964560ns 543906 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30964844ns 543911 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30965128ns 543916 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30965583ns 543924 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30965753ns 543927 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30966038ns 543932 1a110850 fd5ff06f jal x0, -44 +30966322ns 543937 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30966606ns 543942 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30967004ns 543949 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30967174ns 543952 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30967629ns 543960 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30967799ns 543963 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30968083ns 543968 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30968368ns 543973 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30968652ns 543978 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30969106ns 543986 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30969277ns 543989 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30969561ns 543994 1a110850 fd5ff06f jal x0, -44 +30969845ns 543999 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30970129ns 544004 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30970527ns 544011 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30970698ns 544014 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30971152ns 544022 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30971323ns 544025 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30971607ns 544030 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30971891ns 544035 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30972175ns 544040 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30972630ns 544048 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30972801ns 544051 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30973085ns 544056 1a110850 fd5ff06f jal x0, -44 +30973369ns 544061 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30973653ns 544066 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30974051ns 544073 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30974221ns 544076 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30974676ns 544084 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30974847ns 544087 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30975131ns 544092 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30975415ns 544097 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30975699ns 544102 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30976154ns 544110 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30976324ns 544113 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30976608ns 544118 1a110850 fd5ff06f jal x0, -44 +30976892ns 544123 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30977177ns 544128 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30977574ns 544135 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30977745ns 544138 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30978200ns 544146 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30978370ns 544149 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30978654ns 544154 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30978938ns 544159 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30979223ns 544164 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30979677ns 544172 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30979848ns 544175 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30980132ns 544180 1a110850 fd5ff06f jal x0, -44 +30980416ns 544185 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30980700ns 544190 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30981098ns 544197 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30981269ns 544200 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30981723ns 544208 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30981894ns 544211 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30982178ns 544216 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30982462ns 544221 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30982746ns 544226 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30983201ns 544234 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30983371ns 544237 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30983655ns 544242 1a110850 fd5ff06f jal x0, -44 +30983940ns 544247 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30984224ns 544252 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30984622ns 544259 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30984792ns 544262 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30985247ns 544270 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30985417ns 544273 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30985701ns 544278 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30985986ns 544283 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30986270ns 544288 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30986724ns 544296 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30986895ns 544299 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30987179ns 544304 1a110850 fd5ff06f jal x0, -44 +30987463ns 544309 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30987747ns 544314 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30988145ns 544321 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30988316ns 544324 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30988770ns 544332 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30988941ns 544335 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30989225ns 544340 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30989509ns 544345 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30989793ns 544350 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30990248ns 544358 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30990418ns 544361 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30990703ns 544366 1a110850 fd5ff06f jal x0, -44 +30990987ns 544371 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30991271ns 544376 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30991669ns 544383 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30991839ns 544386 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30992294ns 544394 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30992464ns 544397 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30992749ns 544402 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30993033ns 544407 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30993317ns 544412 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30993772ns 544420 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30993942ns 544423 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30994226ns 544428 1a110850 fd5ff06f jal x0, -44 +30994510ns 544433 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30994795ns 544438 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30995192ns 544445 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30995363ns 544448 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30995818ns 544456 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30995988ns 544459 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30996272ns 544464 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30996556ns 544469 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30996840ns 544474 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30997295ns 544482 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +30997466ns 544485 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +30997750ns 544490 1a110850 fd5ff06f jal x0, -44 +30998034ns 544495 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +30998318ns 544500 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +30998716ns 544507 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +30998886ns 544510 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +30999341ns 544518 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +30999512ns 544521 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +30999796ns 544526 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31000080ns 544531 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31000364ns 544536 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31000819ns 544544 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31000989ns 544547 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31001273ns 544552 1a110850 fd5ff06f jal x0, -44 +31001558ns 544557 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31001842ns 544562 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31002240ns 544569 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31002410ns 544572 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31002865ns 544580 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31003035ns 544583 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31003319ns 544588 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31003603ns 544593 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31003888ns 544598 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31004342ns 544606 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31004513ns 544609 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31004797ns 544614 1a110850 fd5ff06f jal x0, -44 +31005081ns 544619 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31005365ns 544624 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31005763ns 544631 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31005934ns 544634 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31006388ns 544642 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31006559ns 544645 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31006843ns 544650 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31007127ns 544655 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31007411ns 544660 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31007866ns 544668 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31008036ns 544671 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31008321ns 544676 1a110850 fd5ff06f jal x0, -44 +31008605ns 544681 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31008889ns 544686 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31009287ns 544693 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31009457ns 544696 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31009912ns 544704 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31010082ns 544707 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31010367ns 544712 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31010651ns 544717 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31010935ns 544722 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31011389ns 544730 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31011560ns 544733 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31011844ns 544738 1a110850 fd5ff06f jal x0, -44 +31012128ns 544743 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31012412ns 544748 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31012810ns 544755 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31012981ns 544758 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31013435ns 544766 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31013606ns 544769 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31013890ns 544774 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31014174ns 544779 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31014458ns 544784 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31014913ns 544792 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31015084ns 544795 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31015368ns 544800 1a110850 fd5ff06f jal x0, -44 +31015652ns 544805 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31015936ns 544810 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31016334ns 544817 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31016504ns 544820 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31016959ns 544828 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31017130ns 544831 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31017414ns 544836 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31017698ns 544841 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31017982ns 544846 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31018437ns 544854 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31018607ns 544857 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31018891ns 544862 1a110850 fd5ff06f jal x0, -44 +31019175ns 544867 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31019460ns 544872 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31019857ns 544879 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31020028ns 544882 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31020483ns 544890 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31020653ns 544893 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31020937ns 544898 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31021221ns 544903 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31021506ns 544908 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31021960ns 544916 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31022131ns 544919 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31022415ns 544924 1a110850 fd5ff06f jal x0, -44 +31022699ns 544929 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31022983ns 544934 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31023381ns 544941 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31023552ns 544944 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31024006ns 544952 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31024177ns 544955 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31024461ns 544960 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31024745ns 544965 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31025029ns 544970 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31025484ns 544978 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31025654ns 544981 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31025938ns 544986 1a110850 fd5ff06f jal x0, -44 +31026223ns 544991 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31026507ns 544996 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31026905ns 545003 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31027075ns 545006 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31027530ns 545014 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31027700ns 545017 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31027984ns 545022 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31028269ns 545027 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31028553ns 545032 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31029007ns 545040 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31029178ns 545043 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31029462ns 545048 1a110850 fd5ff06f jal x0, -44 +31029746ns 545053 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31030030ns 545058 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31030428ns 545065 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31030599ns 545068 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31031053ns 545076 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31031224ns 545079 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31031508ns 545084 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31031792ns 545089 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31032076ns 545094 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31032531ns 545102 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31032701ns 545105 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31032986ns 545110 1a110850 fd5ff06f jal x0, -44 +31033270ns 545115 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31033554ns 545120 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31033952ns 545127 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31034122ns 545130 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31034577ns 545138 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31034747ns 545141 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31035032ns 545146 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31035316ns 545151 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31035600ns 545156 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31036055ns 545164 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31036225ns 545167 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31036509ns 545172 1a110850 fd5ff06f jal x0, -44 +31036793ns 545177 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31037078ns 545182 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31037475ns 545189 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31037646ns 545192 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31038101ns 545200 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31038271ns 545203 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31038555ns 545208 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31038839ns 545213 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31039123ns 545218 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31039578ns 545226 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31039749ns 545229 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31040033ns 545234 1a110850 fd5ff06f jal x0, -44 +31040317ns 545239 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31040601ns 545244 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31040999ns 545251 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31041169ns 545254 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31041624ns 545262 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31041795ns 545265 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31042079ns 545270 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31042363ns 545275 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31042647ns 545280 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31043102ns 545288 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31043272ns 545291 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31043556ns 545296 1a110850 fd5ff06f jal x0, -44 +31043841ns 545301 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31044125ns 545306 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31044523ns 545313 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31044693ns 545316 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31045148ns 545324 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31045318ns 545327 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31045602ns 545332 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31045887ns 545337 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31046171ns 545342 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31046625ns 545350 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31046796ns 545353 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31047080ns 545358 1a110850 fd5ff06f jal x0, -44 +31047364ns 545363 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31047648ns 545368 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31048046ns 545375 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31048217ns 545378 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31048671ns 545386 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31048842ns 545389 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31049126ns 545394 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31049410ns 545399 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31049694ns 545404 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31050149ns 545412 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31050319ns 545415 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31050604ns 545420 1a110850 fd5ff06f jal x0, -44 +31050888ns 545425 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31051172ns 545430 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31051570ns 545437 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31051740ns 545440 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31052195ns 545448 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31052365ns 545451 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31052650ns 545456 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31052934ns 545461 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31053218ns 545466 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31053672ns 545474 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31053843ns 545477 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31054127ns 545482 1a110850 fd5ff06f jal x0, -44 +31054411ns 545487 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31054695ns 545492 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31055093ns 545499 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31055264ns 545502 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31055718ns 545510 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31055889ns 545513 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31056173ns 545518 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31056457ns 545523 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31056741ns 545528 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31057196ns 545536 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31057367ns 545539 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31057651ns 545544 1a110850 fd5ff06f jal x0, -44 +31057935ns 545549 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31058219ns 545554 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31058617ns 545561 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31058787ns 545564 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31059242ns 545572 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31059413ns 545575 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31059697ns 545580 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31059981ns 545585 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31060265ns 545590 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31060720ns 545598 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31060890ns 545601 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31061174ns 545606 1a110850 fd5ff06f jal x0, -44 +31061458ns 545611 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31061743ns 545616 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31062140ns 545623 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31062311ns 545626 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31062766ns 545634 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31062936ns 545637 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31063220ns 545642 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31063504ns 545647 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31063789ns 545652 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31064243ns 545660 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31064414ns 545663 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31064698ns 545668 1a110850 fd5ff06f jal x0, -44 +31064982ns 545673 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31065266ns 545678 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31065664ns 545685 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31065835ns 545688 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31066289ns 545696 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31066460ns 545699 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31066744ns 545704 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31067028ns 545709 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31067312ns 545714 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31067767ns 545722 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31067937ns 545725 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31068221ns 545730 1a110850 fd5ff06f jal x0, -44 +31068506ns 545735 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31068790ns 545740 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31069188ns 545747 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31069358ns 545750 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31069813ns 545758 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31069983ns 545761 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31070267ns 545766 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31070552ns 545771 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31070836ns 545776 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31071290ns 545784 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31071461ns 545787 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31071745ns 545792 1a110850 fd5ff06f jal x0, -44 +31072029ns 545797 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31072313ns 545802 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31072711ns 545809 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31072882ns 545812 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31073336ns 545820 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31073507ns 545823 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31073791ns 545828 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31074075ns 545833 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31074359ns 545838 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31074814ns 545846 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31074984ns 545849 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31075269ns 545854 1a110850 fd5ff06f jal x0, -44 +31075553ns 545859 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31075837ns 545864 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31076235ns 545871 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31076405ns 545874 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31076860ns 545882 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31077030ns 545885 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31077315ns 545890 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31077599ns 545895 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31077883ns 545900 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31078338ns 545908 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31078508ns 545911 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31078792ns 545916 1a110850 fd5ff06f jal x0, -44 +31079076ns 545921 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31079361ns 545926 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31079758ns 545933 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31079929ns 545936 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31080384ns 545944 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31080554ns 545947 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31080838ns 545952 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31081122ns 545957 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31081407ns 545962 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31081861ns 545970 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31082032ns 545973 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31082316ns 545978 1a110850 fd5ff06f jal x0, -44 +31082600ns 545983 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31082884ns 545988 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31083282ns 545995 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31083452ns 545998 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31083907ns 546006 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31084078ns 546009 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31084362ns 546014 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31084646ns 546019 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31084930ns 546024 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31085385ns 546032 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31085555ns 546035 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31085839ns 546040 1a110850 fd5ff06f jal x0, -44 +31086124ns 546045 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31086408ns 546050 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31086806ns 546057 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31086976ns 546060 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31087431ns 546068 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31087601ns 546071 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31087885ns 546076 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31088170ns 546081 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31088454ns 546086 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31088908ns 546094 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31089079ns 546097 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31089363ns 546102 1a110850 fd5ff06f jal x0, -44 +31089647ns 546107 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31089931ns 546112 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31090329ns 546119 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31090500ns 546122 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31090954ns 546130 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31091125ns 546133 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31091409ns 546138 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31091693ns 546143 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31091977ns 546148 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31092432ns 546156 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31092602ns 546159 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31092887ns 546164 1a110850 fd5ff06f jal x0, -44 +31093171ns 546169 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31093455ns 546174 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31093853ns 546181 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31094023ns 546184 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31094478ns 546192 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31094648ns 546195 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31094933ns 546200 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31095217ns 546205 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31095501ns 546210 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31095955ns 546218 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31096126ns 546221 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31096410ns 546226 1a110850 fd5ff06f jal x0, -44 +31096694ns 546231 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31096978ns 546236 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31097376ns 546243 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31097547ns 546246 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31098001ns 546254 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31098172ns 546257 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31098456ns 546262 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31098740ns 546267 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31099024ns 546272 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31099479ns 546280 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31099650ns 546283 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31099934ns 546288 1a110850 fd5ff06f jal x0, -44 +31100218ns 546293 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31100502ns 546298 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31100900ns 546305 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31101070ns 546308 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31101525ns 546316 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31101696ns 546319 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31101980ns 546324 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31102264ns 546329 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31102548ns 546334 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31103003ns 546342 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31103173ns 546345 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31103457ns 546350 1a110850 fd5ff06f jal x0, -44 +31103741ns 546355 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31104026ns 546360 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31104423ns 546367 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31104594ns 546370 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31105049ns 546378 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31105219ns 546381 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31105503ns 546386 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31105787ns 546391 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31106072ns 546396 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31106526ns 546404 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31106697ns 546407 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31106981ns 546412 1a110850 fd5ff06f jal x0, -44 +31107265ns 546417 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31107549ns 546422 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31107947ns 546429 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31108118ns 546432 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31108572ns 546440 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31108743ns 546443 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31109027ns 546448 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31109311ns 546453 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31109595ns 546458 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31110050ns 546466 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31110220ns 546469 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31110504ns 546474 1a110850 fd5ff06f jal x0, -44 +31110789ns 546479 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31111073ns 546484 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31111471ns 546491 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31111641ns 546494 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31112096ns 546502 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31112266ns 546505 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31112550ns 546510 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31112835ns 546515 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31113119ns 546520 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31113573ns 546528 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31113744ns 546531 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31114028ns 546536 1a110850 fd5ff06f jal x0, -44 +31114312ns 546541 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31114596ns 546546 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31114994ns 546553 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31115165ns 546556 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31115619ns 546564 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31115790ns 546567 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31116074ns 546572 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31116358ns 546577 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31116642ns 546582 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31117097ns 546590 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31117267ns 546593 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31117552ns 546598 1a110850 fd5ff06f jal x0, -44 +31117836ns 546603 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31118120ns 546608 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31118518ns 546615 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31118688ns 546618 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31119143ns 546626 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31119313ns 546629 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31119598ns 546634 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31119882ns 546639 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31120166ns 546644 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31120621ns 546652 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31120791ns 546655 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31121075ns 546660 1a110850 fd5ff06f jal x0, -44 +31121359ns 546665 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31121644ns 546670 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31122041ns 546677 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31122212ns 546680 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31122667ns 546688 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31122837ns 546691 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31123121ns 546696 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31123405ns 546701 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31123690ns 546706 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31124144ns 546714 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31124315ns 546717 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31124599ns 546722 1a110850 fd5ff06f jal x0, -44 +31124883ns 546727 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31125167ns 546732 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31125565ns 546739 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31125735ns 546742 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31126190ns 546750 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31126361ns 546753 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31126645ns 546758 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31126929ns 546763 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31127213ns 546768 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31127668ns 546776 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31127838ns 546779 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31128122ns 546784 1a110850 fd5ff06f jal x0, -44 +31128407ns 546789 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31128691ns 546794 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31129089ns 546801 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31129259ns 546804 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31129714ns 546812 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31129884ns 546815 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31130168ns 546820 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31130453ns 546825 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31130737ns 546830 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31131191ns 546838 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31131362ns 546841 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31131646ns 546846 1a110850 fd5ff06f jal x0, -44 +31131930ns 546851 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31132214ns 546856 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31132612ns 546863 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31132783ns 546866 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31133237ns 546874 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31133408ns 546877 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31133692ns 546882 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31133976ns 546887 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31134260ns 546892 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31134715ns 546900 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31134885ns 546903 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31135170ns 546908 1a110850 fd5ff06f jal x0, -44 +31135454ns 546913 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31135738ns 546918 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31136136ns 546925 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31136306ns 546928 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31136761ns 546936 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31136931ns 546939 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31137216ns 546944 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31137500ns 546949 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31137784ns 546954 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31138239ns 546962 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31138409ns 546965 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31138693ns 546970 1a110850 fd5ff06f jal x0, -44 +31138977ns 546975 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31139261ns 546980 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31139659ns 546987 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31139830ns 546990 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31140284ns 546998 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31140455ns 547001 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31140739ns 547006 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31141023ns 547011 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31141307ns 547016 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31141762ns 547024 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31141933ns 547027 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31142217ns 547032 1a110850 fd5ff06f jal x0, -44 +31142501ns 547037 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31142785ns 547042 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31143183ns 547049 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31143353ns 547052 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31143808ns 547060 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31143979ns 547063 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31144263ns 547068 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31144547ns 547073 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31144831ns 547078 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31145286ns 547086 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31145456ns 547089 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31145740ns 547094 1a110850 fd5ff06f jal x0, -44 +31146024ns 547099 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31146309ns 547104 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31146706ns 547111 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31146877ns 547114 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31147332ns 547122 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31147502ns 547125 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31147786ns 547130 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31148070ns 547135 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31148355ns 547140 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31148809ns 547148 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31148980ns 547151 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31149264ns 547156 1a110850 fd5ff06f jal x0, -44 +31149548ns 547161 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31149832ns 547166 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31150230ns 547173 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31150401ns 547176 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31150855ns 547184 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31151026ns 547187 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31151310ns 547192 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31151594ns 547197 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31151878ns 547202 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31152333ns 547210 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31152503ns 547213 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31152787ns 547218 1a110850 fd5ff06f jal x0, -44 +31153072ns 547223 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31153356ns 547228 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31153754ns 547235 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31153924ns 547238 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31154379ns 547246 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31154549ns 547249 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31154833ns 547254 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31155118ns 547259 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31155402ns 547264 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31155856ns 547272 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31156027ns 547275 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31156311ns 547280 1a110850 fd5ff06f jal x0, -44 +31156595ns 547285 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31156879ns 547290 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31157277ns 547297 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31157448ns 547300 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31157902ns 547308 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31158073ns 547311 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31158357ns 547316 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31158641ns 547321 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31158925ns 547326 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31159380ns 547334 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31159551ns 547337 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31159835ns 547342 1a110850 fd5ff06f jal x0, -44 +31160119ns 547347 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31160403ns 547352 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31160801ns 547359 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31160971ns 547362 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31161426ns 547370 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31161596ns 547373 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31161881ns 547378 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31162165ns 547383 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31162449ns 547388 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31162904ns 547396 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31163074ns 547399 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31163358ns 547404 1a110850 fd5ff06f jal x0, -44 +31163642ns 547409 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31163927ns 547414 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31164324ns 547421 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31164495ns 547424 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31164950ns 547432 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31165120ns 547435 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31165404ns 547440 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31165688ns 547445 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31165973ns 547450 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31166427ns 547458 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31166598ns 547461 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31166882ns 547466 1a110850 fd5ff06f jal x0, -44 +31167166ns 547471 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31167450ns 547476 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31167848ns 547483 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31168018ns 547486 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31168473ns 547494 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31168644ns 547497 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31168928ns 547502 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31169212ns 547507 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31169496ns 547512 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31169951ns 547520 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31170121ns 547523 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31170405ns 547528 1a110850 fd5ff06f jal x0, -44 +31170690ns 547533 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31170974ns 547538 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31171372ns 547545 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31171542ns 547548 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31171997ns 547556 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31172167ns 547559 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31172451ns 547564 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31172736ns 547569 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31173020ns 547574 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31173474ns 547582 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31173645ns 547585 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31173929ns 547590 1a110850 fd5ff06f jal x0, -44 +31174213ns 547595 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31174497ns 547600 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31174895ns 547607 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31175066ns 547610 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31175520ns 547618 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31175691ns 547621 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31175975ns 547626 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31176259ns 547631 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31176543ns 547636 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31176998ns 547644 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31177168ns 547647 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31177453ns 547652 1a110850 fd5ff06f jal x0, -44 +31177737ns 547657 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31178021ns 547662 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31178419ns 547669 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31178589ns 547672 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31179044ns 547680 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31179214ns 547683 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31179499ns 547688 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31179783ns 547693 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31180067ns 547698 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31180522ns 547706 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31180692ns 547709 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31180976ns 547714 1a110850 fd5ff06f jal x0, -44 +31181260ns 547719 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31181544ns 547724 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31181942ns 547731 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31182113ns 547734 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31182567ns 547742 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31182738ns 547745 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31183022ns 547750 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31183306ns 547755 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31183590ns 547760 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31184045ns 547768 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31184216ns 547771 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31184500ns 547776 1a110850 fd5ff06f jal x0, -44 +31184784ns 547781 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31185068ns 547786 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31185466ns 547793 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31185636ns 547796 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31186091ns 547804 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31186262ns 547807 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31186546ns 547812 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31186830ns 547817 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31187114ns 547822 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31187569ns 547830 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31187739ns 547833 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31188023ns 547838 1a110850 fd5ff06f jal x0, -44 +31188307ns 547843 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31188592ns 547848 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31188989ns 547855 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31189160ns 547858 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31189615ns 547866 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31189785ns 547869 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31190069ns 547874 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31190353ns 547879 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31190638ns 547884 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31191092ns 547892 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31191263ns 547895 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31191547ns 547900 1a110850 fd5ff06f jal x0, -44 +31191831ns 547905 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31192115ns 547910 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31192513ns 547917 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31192684ns 547920 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31193138ns 547928 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31193309ns 547931 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31193593ns 547936 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31193877ns 547941 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31194161ns 547946 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31194616ns 547954 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31194786ns 547957 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31195071ns 547962 1a110850 fd5ff06f jal x0, -44 +31195355ns 547967 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31195639ns 547972 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31196037ns 547979 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31196207ns 547982 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31196662ns 547990 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31196832ns 547993 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31197116ns 547998 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31197401ns 548003 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31197685ns 548008 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31198139ns 548016 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31198310ns 548019 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31198594ns 548024 1a110850 fd5ff06f jal x0, -44 +31198878ns 548029 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31199162ns 548034 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31199560ns 548041 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31199731ns 548044 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31200185ns 548052 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31200356ns 548055 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31200640ns 548060 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31200924ns 548065 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31201208ns 548070 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31201663ns 548078 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31201834ns 548081 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31202118ns 548086 1a110850 fd5ff06f jal x0, -44 +31202402ns 548091 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31202686ns 548096 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31203084ns 548103 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31203254ns 548106 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31203709ns 548114 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31203879ns 548117 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31204164ns 548122 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31204448ns 548127 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31204732ns 548132 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31205187ns 548140 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31205357ns 548143 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31205641ns 548148 1a110850 fd5ff06f jal x0, -44 +31205925ns 548153 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31206210ns 548158 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31206607ns 548165 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31206778ns 548168 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31207233ns 548176 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31207403ns 548179 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31207687ns 548184 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31207971ns 548189 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31208256ns 548194 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31208710ns 548202 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31208881ns 548205 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31209165ns 548210 1a110850 fd5ff06f jal x0, -44 +31209449ns 548215 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31209733ns 548220 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31210131ns 548227 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31210301ns 548230 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31210756ns 548238 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31210927ns 548241 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31211211ns 548246 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31211495ns 548251 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31211779ns 548256 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31212234ns 548264 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31212404ns 548267 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31212688ns 548272 1a110850 fd5ff06f jal x0, -44 +31212973ns 548277 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31213257ns 548282 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31213655ns 548289 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31213825ns 548292 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31214280ns 548300 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31214450ns 548303 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31214734ns 548308 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31215019ns 548313 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31215303ns 548318 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31215757ns 548326 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31215928ns 548329 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31216212ns 548334 1a110850 fd5ff06f jal x0, -44 +31216496ns 548339 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31216780ns 548344 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31217178ns 548351 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31217349ns 548354 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31217803ns 548362 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31217974ns 548365 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31218258ns 548370 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31218542ns 548375 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31218826ns 548380 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31219281ns 548388 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31219451ns 548391 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31219736ns 548396 1a110850 fd5ff06f jal x0, -44 +31220020ns 548401 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31220304ns 548406 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31220702ns 548413 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31220872ns 548416 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31221327ns 548424 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31221497ns 548427 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31221782ns 548432 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31222066ns 548437 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31222350ns 548442 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31222805ns 548450 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31222975ns 548453 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31223259ns 548458 1a110850 fd5ff06f jal x0, -44 +31223543ns 548463 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31223827ns 548468 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31224225ns 548475 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31224396ns 548478 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31224850ns 548486 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31225021ns 548489 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31225305ns 548494 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31225589ns 548499 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31225873ns 548504 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31226328ns 548512 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31226499ns 548515 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31226783ns 548520 1a110850 fd5ff06f jal x0, -44 +31227067ns 548525 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31227351ns 548530 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31227749ns 548537 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31227919ns 548540 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31228374ns 548548 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31228545ns 548551 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31228829ns 548556 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31229113ns 548561 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31229397ns 548566 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31229852ns 548574 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31230022ns 548577 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31230306ns 548582 1a110850 fd5ff06f jal x0, -44 +31230591ns 548587 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31230875ns 548592 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31231272ns 548599 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31231443ns 548602 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31231898ns 548610 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31232068ns 548613 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31232352ns 548618 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31232636ns 548623 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31232921ns 548628 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31233375ns 548636 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31233546ns 548639 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31233830ns 548644 1a110850 fd5ff06f jal x0, -44 +31234114ns 548649 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31234398ns 548654 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31234796ns 548661 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31234967ns 548664 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31235421ns 548672 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31235592ns 548675 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31235876ns 548680 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31236160ns 548685 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31236444ns 548690 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31236899ns 548698 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31237069ns 548701 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31237354ns 548706 1a110850 fd5ff06f jal x0, -44 +31237638ns 548711 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31237922ns 548716 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31238320ns 548723 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31238490ns 548726 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31238945ns 548734 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31239115ns 548737 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31239399ns 548742 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31239684ns 548747 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31239968ns 548752 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31240422ns 548760 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31240593ns 548763 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31240877ns 548768 1a110850 fd5ff06f jal x0, -44 +31241161ns 548773 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31241445ns 548778 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31241843ns 548785 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31242014ns 548788 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31242468ns 548796 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31242639ns 548799 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31242923ns 548804 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31243207ns 548809 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31243491ns 548814 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31243946ns 548822 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31244117ns 548825 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31244401ns 548830 1a110850 fd5ff06f jal x0, -44 +31244685ns 548835 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31244969ns 548840 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31245367ns 548847 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31245537ns 548850 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31245992ns 548858 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31246162ns 548861 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31246447ns 548866 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31246731ns 548871 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31247015ns 548876 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31247470ns 548884 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31247640ns 548887 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31247924ns 548892 1a110850 fd5ff06f jal x0, -44 +31248208ns 548897 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31248493ns 548902 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31248890ns 548909 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31249061ns 548912 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31249516ns 548920 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31249686ns 548923 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31249970ns 548928 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31250254ns 548933 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31250539ns 548938 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31250993ns 548946 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31251164ns 548949 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31251448ns 548954 1a110850 fd5ff06f jal x0, -44 +31251732ns 548959 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31252016ns 548964 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31252414ns 548971 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31252584ns 548974 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31253039ns 548982 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31253210ns 548985 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31253494ns 548990 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31253778ns 548995 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31254062ns 549000 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31254517ns 549008 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31254687ns 549011 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31254971ns 549016 1a110850 fd5ff06f jal x0, -44 +31255256ns 549021 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31255540ns 549026 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31255938ns 549033 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31256108ns 549036 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31256563ns 549044 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31256733ns 549047 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31257017ns 549052 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31257302ns 549057 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31257586ns 549062 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31258040ns 549070 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31258211ns 549073 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31258495ns 549078 1a110850 fd5ff06f jal x0, -44 +31258779ns 549083 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31259063ns 549088 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31259461ns 549095 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31259632ns 549098 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31260086ns 549106 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31260257ns 549109 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31260541ns 549114 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31260825ns 549119 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31261109ns 549124 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31261564ns 549132 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31261734ns 549135 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31262019ns 549140 1a110850 fd5ff06f jal x0, -44 +31262303ns 549145 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31262587ns 549150 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31262985ns 549157 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31263155ns 549160 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31263610ns 549168 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31263780ns 549171 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31264065ns 549176 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31264349ns 549181 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31264633ns 549186 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31265088ns 549194 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31265258ns 549197 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31265542ns 549202 1a110850 fd5ff06f jal x0, -44 +31265826ns 549207 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31266111ns 549212 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31266508ns 549219 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31266679ns 549222 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31267133ns 549230 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31267304ns 549233 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31267588ns 549238 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31267872ns 549243 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31268156ns 549248 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31268611ns 549256 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31268782ns 549259 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31269066ns 549264 1a110850 fd5ff06f jal x0, -44 +31269350ns 549269 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31269634ns 549274 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31270032ns 549281 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31270202ns 549284 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31270657ns 549292 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31270828ns 549295 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31271112ns 549300 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31271396ns 549305 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31271680ns 549310 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31272135ns 549318 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31272305ns 549321 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31272589ns 549326 1a110850 fd5ff06f jal x0, -44 +31272874ns 549331 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31273158ns 549336 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31273555ns 549343 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31273726ns 549346 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31274181ns 549354 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31274351ns 549357 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31274635ns 549362 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31274919ns 549367 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31275204ns 549372 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31275658ns 549380 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31275829ns 549383 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31276113ns 549388 1a110850 fd5ff06f jal x0, -44 +31276397ns 549393 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31276681ns 549398 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31277079ns 549405 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31277250ns 549408 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31277704ns 549416 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31277875ns 549419 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31278159ns 549424 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31278443ns 549429 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31278727ns 549434 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31279182ns 549442 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31279352ns 549445 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31279637ns 549450 1a110850 fd5ff06f jal x0, -44 +31279921ns 549455 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31280205ns 549460 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31280603ns 549467 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31280773ns 549470 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31281228ns 549478 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31281398ns 549481 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31281682ns 549486 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31281967ns 549491 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31282251ns 549496 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31282705ns 549504 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31282876ns 549507 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31283160ns 549512 1a110850 fd5ff06f jal x0, -44 +31283444ns 549517 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31283728ns 549522 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31284126ns 549529 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31284297ns 549532 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31284751ns 549540 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31284922ns 549543 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31285206ns 549548 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31285490ns 549553 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31285774ns 549558 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31286229ns 549566 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31286400ns 549569 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31286684ns 549574 1a110850 fd5ff06f jal x0, -44 +31286968ns 549579 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31287252ns 549584 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31287650ns 549591 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31287820ns 549594 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31288275ns 549602 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31288445ns 549605 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31288730ns 549610 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31289014ns 549615 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31289298ns 549620 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31289753ns 549628 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31289923ns 549631 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31290207ns 549636 1a110850 fd5ff06f jal x0, -44 +31290491ns 549641 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31290776ns 549646 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31291173ns 549653 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31291344ns 549656 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31291799ns 549664 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31291969ns 549667 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31292253ns 549672 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31292537ns 549677 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31292822ns 549682 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31293276ns 549690 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31293447ns 549693 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31293731ns 549698 1a110850 fd5ff06f jal x0, -44 +31294015ns 549703 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31294299ns 549708 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31294697ns 549715 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31294867ns 549718 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31295322ns 549726 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31295493ns 549729 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31295777ns 549734 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31296061ns 549739 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31296345ns 549744 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31296800ns 549752 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31296970ns 549755 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31297254ns 549760 1a110850 fd5ff06f jal x0, -44 +31297539ns 549765 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31297823ns 549770 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31298221ns 549777 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31298391ns 549780 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31298846ns 549788 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31299016ns 549791 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31299300ns 549796 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31299585ns 549801 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31299869ns 549806 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31300323ns 549814 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31300494ns 549817 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31300778ns 549822 1a110850 fd5ff06f jal x0, -44 +31301062ns 549827 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31301346ns 549832 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31301744ns 549839 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31301915ns 549842 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31302369ns 549850 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31302540ns 549853 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31302824ns 549858 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31303108ns 549863 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31303392ns 549868 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31303847ns 549876 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31304017ns 549879 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31304302ns 549884 1a110850 fd5ff06f jal x0, -44 +31304586ns 549889 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31304870ns 549894 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31305268ns 549901 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31305438ns 549904 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31305893ns 549912 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31306063ns 549915 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31306348ns 549920 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31306632ns 549925 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31306916ns 549930 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31307371ns 549938 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31307541ns 549941 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31307825ns 549946 1a110850 fd5ff06f jal x0, -44 +31308109ns 549951 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31308394ns 549956 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31308791ns 549963 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31308962ns 549966 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31309416ns 549974 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31309587ns 549977 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31309871ns 549982 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31310155ns 549987 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31310439ns 549992 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31310894ns 550000 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31311065ns 550003 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31311349ns 550008 1a110850 fd5ff06f jal x0, -44 +31311633ns 550013 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31311917ns 550018 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31312315ns 550025 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31312485ns 550028 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31312940ns 550036 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31313111ns 550039 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31313395ns 550044 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31313679ns 550049 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31313963ns 550054 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31314418ns 550062 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31314588ns 550065 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31314872ns 550070 1a110850 fd5ff06f jal x0, -44 +31315157ns 550075 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31315441ns 550080 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31315839ns 550087 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31316009ns 550090 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31316464ns 550098 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31316634ns 550101 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31316918ns 550106 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31317202ns 550111 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31317487ns 550116 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31317941ns 550124 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31318112ns 550127 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31318396ns 550132 1a110850 fd5ff06f jal x0, -44 +31318680ns 550137 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31318964ns 550142 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31319362ns 550149 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31319533ns 550152 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31319987ns 550160 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31320158ns 550163 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31320442ns 550168 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31320726ns 550173 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31321010ns 550178 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31321465ns 550186 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31321635ns 550189 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31321920ns 550194 1a110850 fd5ff06f jal x0, -44 +31322204ns 550199 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31322488ns 550204 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31322886ns 550211 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31323056ns 550214 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31323511ns 550222 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31323681ns 550225 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31323965ns 550230 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31324250ns 550235 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31324534ns 550240 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31324988ns 550248 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31325159ns 550251 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31325443ns 550256 1a110850 fd5ff06f jal x0, -44 +31325727ns 550261 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31326011ns 550266 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31326409ns 550273 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31326580ns 550276 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31327034ns 550284 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31327205ns 550287 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31327489ns 550292 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31327773ns 550297 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31328057ns 550302 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31328512ns 550310 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31328683ns 550313 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31328967ns 550318 1a110850 fd5ff06f jal x0, -44 +31329251ns 550323 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31329535ns 550328 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31329933ns 550335 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31330103ns 550338 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31330558ns 550346 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31330728ns 550349 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31331013ns 550354 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31331297ns 550359 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31331581ns 550364 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31332036ns 550372 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31332206ns 550375 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31332490ns 550380 1a110850 fd5ff06f jal x0, -44 +31332774ns 550385 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31333059ns 550390 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31333456ns 550397 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31333627ns 550400 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31334082ns 550408 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31334252ns 550411 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31334536ns 550416 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31334820ns 550421 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31335105ns 550426 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31335559ns 550434 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31335730ns 550437 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31336014ns 550442 1a110850 fd5ff06f jal x0, -44 +31336298ns 550447 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31336582ns 550452 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31336980ns 550459 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31337151ns 550462 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31337605ns 550470 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31337776ns 550473 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31338060ns 550478 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31338344ns 550483 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31338628ns 550488 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31339083ns 550496 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31339253ns 550499 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31339537ns 550504 1a110850 fd5ff06f jal x0, -44 +31339822ns 550509 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31340106ns 550514 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31340504ns 550521 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31340674ns 550524 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31341129ns 550532 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31341299ns 550535 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31341583ns 550540 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31341868ns 550545 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31342152ns 550550 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31342606ns 550558 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31342777ns 550561 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31343061ns 550566 1a110850 fd5ff06f jal x0, -44 +31343345ns 550571 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31343629ns 550576 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31344027ns 550583 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31344198ns 550586 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31344652ns 550594 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31344823ns 550597 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31345107ns 550602 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31345391ns 550607 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31345675ns 550612 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31346130ns 550620 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31346300ns 550623 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31346585ns 550628 1a110850 fd5ff06f jal x0, -44 +31346869ns 550633 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31347153ns 550638 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31347551ns 550645 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31347721ns 550648 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31348176ns 550656 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31348346ns 550659 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31348631ns 550664 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31348915ns 550669 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31349199ns 550674 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31349654ns 550682 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31349824ns 550685 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31350108ns 550690 1a110850 fd5ff06f jal x0, -44 +31350392ns 550695 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31350677ns 550700 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31351074ns 550707 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31351245ns 550710 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31351699ns 550718 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31351870ns 550721 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31352154ns 550726 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31352438ns 550731 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31352722ns 550736 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31353177ns 550744 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31353348ns 550747 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31353632ns 550752 1a110850 fd5ff06f jal x0, -44 +31353916ns 550757 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31354200ns 550762 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31354598ns 550769 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31354768ns 550772 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31355223ns 550780 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31355394ns 550783 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31355678ns 550788 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31355962ns 550793 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31356246ns 550798 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31356701ns 550806 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31356871ns 550809 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31357155ns 550814 1a110850 fd5ff06f jal x0, -44 +31357440ns 550819 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31357724ns 550824 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31358122ns 550831 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31358292ns 550834 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31358747ns 550842 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31358917ns 550845 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31359201ns 550850 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31359485ns 550855 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31359770ns 550860 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31360224ns 550868 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31360395ns 550871 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31360679ns 550876 1a110850 fd5ff06f jal x0, -44 +31360963ns 550881 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31361247ns 550886 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31361645ns 550893 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31361816ns 550896 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31362270ns 550904 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31362441ns 550907 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31362725ns 550912 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31363009ns 550917 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31363293ns 550922 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31363748ns 550930 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31363918ns 550933 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31364203ns 550938 1a110850 fd5ff06f jal x0, -44 +31364487ns 550943 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31364771ns 550948 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31365169ns 550955 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31365339ns 550958 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31365794ns 550966 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31365964ns 550969 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31366248ns 550974 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31366533ns 550979 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31366817ns 550984 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31367271ns 550992 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31367442ns 550995 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31367726ns 551000 1a110850 fd5ff06f jal x0, -44 +31368010ns 551005 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31368294ns 551010 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31368692ns 551017 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31368863ns 551020 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31369317ns 551028 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31369488ns 551031 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31369772ns 551036 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31370056ns 551041 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31370340ns 551046 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31370795ns 551054 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31370966ns 551057 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31371250ns 551062 1a110850 fd5ff06f jal x0, -44 +31371534ns 551067 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31371818ns 551072 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31372216ns 551079 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31372386ns 551082 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31372841ns 551090 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31373011ns 551093 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31373296ns 551098 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31373580ns 551103 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31373864ns 551108 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31374319ns 551116 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31374489ns 551119 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31374773ns 551124 1a110850 fd5ff06f jal x0, -44 +31375057ns 551129 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31375342ns 551134 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31375739ns 551141 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31375910ns 551144 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31376365ns 551152 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31376535ns 551155 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31376819ns 551160 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31377103ns 551165 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31377388ns 551170 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31377842ns 551178 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31378013ns 551181 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31378297ns 551186 1a110850 fd5ff06f jal x0, -44 +31378581ns 551191 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31378865ns 551196 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31379263ns 551203 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31379434ns 551206 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31379888ns 551214 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31380059ns 551217 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31380343ns 551222 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31380627ns 551227 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31380911ns 551232 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31381366ns 551240 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31381536ns 551243 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31381820ns 551248 1a110850 fd5ff06f jal x0, -44 +31382105ns 551253 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31382389ns 551258 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31382787ns 551265 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31382957ns 551268 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31383412ns 551276 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31383582ns 551279 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31383866ns 551284 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31384151ns 551289 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31384435ns 551294 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31384889ns 551302 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31385060ns 551305 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31385344ns 551310 1a110850 fd5ff06f jal x0, -44 +31385628ns 551315 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31385912ns 551320 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31386310ns 551327 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31386481ns 551330 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31386935ns 551338 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31387106ns 551341 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31387390ns 551346 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31387674ns 551351 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31387958ns 551356 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31388413ns 551364 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31388583ns 551367 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31388868ns 551372 1a110850 fd5ff06f jal x0, -44 +31389152ns 551377 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31389436ns 551382 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31389834ns 551389 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31390004ns 551392 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31390459ns 551400 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31390629ns 551403 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31390914ns 551408 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31391198ns 551413 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31391482ns 551418 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31391937ns 551426 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31392107ns 551429 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31392391ns 551434 1a110850 fd5ff06f jal x0, -44 +31392675ns 551439 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31392960ns 551444 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31393357ns 551451 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31393528ns 551454 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31393983ns 551462 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31394153ns 551465 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31394437ns 551470 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31394721ns 551475 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31395005ns 551480 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31395460ns 551488 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31395631ns 551491 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31395915ns 551496 1a110850 fd5ff06f jal x0, -44 +31396199ns 551501 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31396483ns 551506 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31396881ns 551513 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31397051ns 551516 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31397506ns 551524 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31397677ns 551527 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31397961ns 551532 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31398245ns 551537 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31398529ns 551542 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31398984ns 551550 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31399154ns 551553 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31399438ns 551558 1a110850 fd5ff06f jal x0, -44 +31399723ns 551563 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31400007ns 551568 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31400405ns 551575 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31400575ns 551578 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31401030ns 551586 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31401200ns 551589 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31401484ns 551594 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31401768ns 551599 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31402053ns 551604 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31402507ns 551612 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31402678ns 551615 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31402962ns 551620 1a110850 fd5ff06f jal x0, -44 +31403246ns 551625 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31403530ns 551630 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31403928ns 551637 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31404099ns 551640 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31404553ns 551648 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31404724ns 551651 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31405008ns 551656 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31405292ns 551661 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31405576ns 551666 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31406031ns 551674 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31406201ns 551677 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31406486ns 551682 1a110850 fd5ff06f jal x0, -44 +31406770ns 551687 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31407054ns 551692 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31407452ns 551699 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31407622ns 551702 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31408077ns 551710 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31408247ns 551713 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31408531ns 551718 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31408816ns 551723 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31409100ns 551728 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31409554ns 551736 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31409725ns 551739 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31410009ns 551744 1a110850 fd5ff06f jal x0, -44 +31410293ns 551749 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31410577ns 551754 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31410975ns 551761 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31411146ns 551764 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31411600ns 551772 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31411771ns 551775 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31412055ns 551780 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31412339ns 551785 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31412623ns 551790 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31413078ns 551798 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31413249ns 551801 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31413533ns 551806 1a110850 fd5ff06f jal x0, -44 +31413817ns 551811 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31414101ns 551816 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31414499ns 551823 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31414669ns 551826 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31415124ns 551834 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31415295ns 551837 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31415579ns 551842 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31415863ns 551847 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31416147ns 551852 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31416602ns 551860 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31416772ns 551863 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31417056ns 551868 1a110850 fd5ff06f jal x0, -44 +31417340ns 551873 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31417625ns 551878 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31418022ns 551885 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31418193ns 551888 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31418648ns 551896 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31418818ns 551899 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31419102ns 551904 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31419386ns 551909 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31419671ns 551914 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31420125ns 551922 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31420296ns 551925 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31420580ns 551930 1a110850 fd5ff06f jal x0, -44 +31420864ns 551935 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31421148ns 551940 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31421546ns 551947 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31421717ns 551950 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31422171ns 551958 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31422342ns 551961 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31422626ns 551966 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31422910ns 551971 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31423194ns 551976 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31423649ns 551984 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31423819ns 551987 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31424103ns 551992 1a110850 fd5ff06f jal x0, -44 +31424388ns 551997 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31424672ns 552002 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31425070ns 552009 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31425240ns 552012 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31425695ns 552020 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31425865ns 552023 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31426149ns 552028 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31426434ns 552033 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31426718ns 552038 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31427172ns 552046 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31427343ns 552049 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31427627ns 552054 1a110850 fd5ff06f jal x0, -44 +31427911ns 552059 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31428195ns 552064 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31428593ns 552071 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31428764ns 552074 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31429218ns 552082 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31429389ns 552085 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31429673ns 552090 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31429957ns 552095 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31430241ns 552100 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31430696ns 552108 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31430866ns 552111 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31431151ns 552116 1a110850 fd5ff06f jal x0, -44 +31431435ns 552121 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31431719ns 552126 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31432117ns 552133 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31432287ns 552136 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31432742ns 552144 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31432912ns 552147 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31433197ns 552152 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31433481ns 552157 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31433765ns 552162 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31434220ns 552170 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31434390ns 552173 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31434674ns 552178 1a110850 fd5ff06f jal x0, -44 +31434958ns 552183 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31435243ns 552188 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31435640ns 552195 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31435811ns 552198 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31436266ns 552206 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31436436ns 552209 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31436720ns 552214 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31437004ns 552219 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31437288ns 552224 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31437743ns 552232 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31437914ns 552235 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31438198ns 552240 1a110850 fd5ff06f jal x0, -44 +31438482ns 552245 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31438766ns 552250 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31439164ns 552257 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31439334ns 552260 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31439789ns 552268 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31439960ns 552271 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31440244ns 552276 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31440528ns 552281 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31440812ns 552286 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31441267ns 552294 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31441437ns 552297 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31441721ns 552302 1a110850 fd5ff06f jal x0, -44 +31442006ns 552307 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31442290ns 552312 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31442688ns 552319 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31442858ns 552322 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31443313ns 552330 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31443483ns 552333 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31443767ns 552338 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31444051ns 552343 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31444336ns 552348 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31444790ns 552356 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31444961ns 552359 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31445245ns 552364 1a110850 fd5ff06f jal x0, -44 +31445529ns 552369 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31445813ns 552374 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31446211ns 552381 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31446382ns 552384 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31446836ns 552392 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31447007ns 552395 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31447291ns 552400 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31447575ns 552405 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31447859ns 552410 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31448314ns 552418 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31448484ns 552421 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31448769ns 552426 1a110850 fd5ff06f jal x0, -44 +31449053ns 552431 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31449337ns 552436 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31449735ns 552443 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31449905ns 552446 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31450360ns 552454 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31450530ns 552457 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31450815ns 552462 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31451099ns 552467 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31451383ns 552472 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31451837ns 552480 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31452008ns 552483 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31452292ns 552488 1a110850 fd5ff06f jal x0, -44 +31452576ns 552493 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31452860ns 552498 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31453258ns 552505 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31453429ns 552508 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31453883ns 552516 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31454054ns 552519 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31454338ns 552524 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31454622ns 552529 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31454906ns 552534 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31455361ns 552542 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31455532ns 552545 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31455816ns 552550 1a110850 fd5ff06f jal x0, -44 +31456100ns 552555 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31456384ns 552560 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31456782ns 552567 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31456952ns 552570 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31457407ns 552578 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31457578ns 552581 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31457862ns 552586 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31458146ns 552591 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31458430ns 552596 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31458885ns 552604 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31459055ns 552607 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31459339ns 552612 1a110850 fd5ff06f jal x0, -44 +31459623ns 552617 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31459908ns 552622 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31460305ns 552629 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31460476ns 552632 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31460931ns 552640 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31461101ns 552643 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31461385ns 552648 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31461669ns 552653 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31461954ns 552658 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31462408ns 552666 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31462579ns 552669 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31462863ns 552674 1a110850 fd5ff06f jal x0, -44 +31463147ns 552679 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31463431ns 552684 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31463829ns 552691 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31464000ns 552694 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31464454ns 552702 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31464625ns 552705 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31464909ns 552710 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31465193ns 552715 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31465477ns 552720 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31465932ns 552728 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31466102ns 552731 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31466386ns 552736 1a110850 fd5ff06f jal x0, -44 +31466671ns 552741 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31466955ns 552746 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31467353ns 552753 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31467523ns 552756 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31467978ns 552764 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31468148ns 552767 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31468432ns 552772 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31468717ns 552777 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31469001ns 552782 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31469455ns 552790 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31469626ns 552793 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31469910ns 552798 1a110850 fd5ff06f jal x0, -44 +31470194ns 552803 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31470478ns 552808 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31470876ns 552815 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31471047ns 552818 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31471501ns 552826 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31471672ns 552829 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31471956ns 552834 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31472240ns 552839 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31472524ns 552844 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31472979ns 552852 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31473149ns 552855 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31473434ns 552860 1a110850 fd5ff06f jal x0, -44 +31473718ns 552865 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31474002ns 552870 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31474400ns 552877 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31474570ns 552880 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31475025ns 552888 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31475195ns 552891 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31475480ns 552896 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31475764ns 552901 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31476048ns 552906 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31476503ns 552914 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31476673ns 552917 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31476957ns 552922 1a110850 fd5ff06f jal x0, -44 +31477241ns 552927 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31477526ns 552932 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31477923ns 552939 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31478094ns 552942 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31478549ns 552950 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31478719ns 552953 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31479003ns 552958 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31479287ns 552963 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31479571ns 552968 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31480026ns 552976 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31480197ns 552979 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31480481ns 552984 1a110850 fd5ff06f jal x0, -44 +31480765ns 552989 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31481049ns 552994 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31481447ns 553001 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31481617ns 553004 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31482072ns 553012 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31482243ns 553015 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31482527ns 553020 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31482811ns 553025 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31483095ns 553030 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31483550ns 553038 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31483720ns 553041 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31484004ns 553046 1a110850 fd5ff06f jal x0, -44 +31484289ns 553051 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31484573ns 553056 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31484971ns 553063 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31485141ns 553066 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31485596ns 553074 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31485766ns 553077 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31486050ns 553082 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31486335ns 553087 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31486619ns 553092 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31487073ns 553100 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31487244ns 553103 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31487528ns 553108 1a110850 fd5ff06f jal x0, -44 +31487812ns 553113 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31488096ns 553118 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31488494ns 553125 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31488665ns 553128 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31489119ns 553136 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31489290ns 553139 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31489574ns 553144 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31489858ns 553149 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31490142ns 553154 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31490597ns 553162 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31490767ns 553165 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31491052ns 553170 1a110850 fd5ff06f jal x0, -44 +31491336ns 553175 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31491620ns 553180 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31492018ns 553187 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31492188ns 553190 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31492643ns 553198 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31492813ns 553201 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31493098ns 553206 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31493382ns 553211 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31493666ns 553216 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31494120ns 553224 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31494291ns 553227 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31494575ns 553232 1a110850 fd5ff06f jal x0, -44 +31494859ns 553237 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31495143ns 553242 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31495541ns 553249 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31495712ns 553252 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31496166ns 553260 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31496337ns 553263 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31496621ns 553268 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31496905ns 553273 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31497189ns 553278 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31497644ns 553286 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31497815ns 553289 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31498099ns 553294 1a110850 fd5ff06f jal x0, -44 +31498383ns 553299 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31498667ns 553304 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31499065ns 553311 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31499235ns 553314 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31499690ns 553322 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31499861ns 553325 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31500145ns 553330 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31500429ns 553335 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31500713ns 553340 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31501168ns 553348 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31501338ns 553351 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31501622ns 553356 1a110850 fd5ff06f jal x0, -44 +31501906ns 553361 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31502191ns 553366 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31502588ns 553373 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31502759ns 553376 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31503214ns 553384 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31503384ns 553387 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31503668ns 553392 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31503952ns 553397 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31504237ns 553402 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31504691ns 553410 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31504862ns 553413 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31505146ns 553418 1a110850 fd5ff06f jal x0, -44 +31505430ns 553423 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31505714ns 553428 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31506112ns 553435 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31506283ns 553438 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31506737ns 553446 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31506908ns 553449 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31507192ns 553454 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31507476ns 553459 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31507760ns 553464 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31508215ns 553472 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31508385ns 553475 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31508669ns 553480 1a110850 fd5ff06f jal x0, -44 +31508954ns 553485 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31509238ns 553490 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31509636ns 553497 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31509806ns 553500 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31510261ns 553508 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31510431ns 553511 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31510715ns 553516 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31511000ns 553521 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31511284ns 553526 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31511738ns 553534 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31511909ns 553537 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31512193ns 553542 1a110850 fd5ff06f jal x0, -44 +31512477ns 553547 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31512761ns 553552 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31513159ns 553559 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31513330ns 553562 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31513784ns 553570 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31513955ns 553573 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31514239ns 553578 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31514523ns 553583 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31514807ns 553588 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31515262ns 553596 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31515432ns 553599 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31515717ns 553604 1a110850 fd5ff06f jal x0, -44 +31516001ns 553609 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31516285ns 553614 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31516683ns 553621 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31516853ns 553624 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31517308ns 553632 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31517478ns 553635 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31517763ns 553640 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31518047ns 553645 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31518331ns 553650 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31518786ns 553658 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31518956ns 553661 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31519240ns 553666 1a110850 fd5ff06f jal x0, -44 +31519524ns 553671 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31519809ns 553676 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31520206ns 553683 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31520377ns 553686 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31520832ns 553694 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31521002ns 553697 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31521286ns 553702 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31521570ns 553707 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31521855ns 553712 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31522309ns 553720 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31522480ns 553723 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31522764ns 553728 1a110850 fd5ff06f jal x0, -44 +31523048ns 553733 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31523332ns 553738 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31523730ns 553745 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31523900ns 553748 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31524355ns 553756 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31524526ns 553759 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31524810ns 553764 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31525094ns 553769 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31525378ns 553774 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31525833ns 553782 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31526003ns 553785 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31526287ns 553790 1a110850 fd5ff06f jal x0, -44 +31526572ns 553795 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31526856ns 553800 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31527254ns 553807 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31527424ns 553810 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31527879ns 553818 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31528049ns 553821 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31528333ns 553826 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31528618ns 553831 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31528902ns 553836 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31529356ns 553844 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31529527ns 553847 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31529811ns 553852 1a110850 fd5ff06f jal x0, -44 +31530095ns 553857 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31530379ns 553862 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31530777ns 553869 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31530948ns 553872 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31531402ns 553880 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31531573ns 553883 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31531857ns 553888 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31532141ns 553893 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31532425ns 553898 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31532880ns 553906 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31533050ns 553909 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31533335ns 553914 1a110850 fd5ff06f jal x0, -44 +31533619ns 553919 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31533903ns 553924 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31534301ns 553931 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31534471ns 553934 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31534926ns 553942 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31535096ns 553945 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31535381ns 553950 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31535665ns 553955 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31535949ns 553960 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31536403ns 553968 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31536574ns 553971 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31536858ns 553976 1a110850 fd5ff06f jal x0, -44 +31537142ns 553981 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31537426ns 553986 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31537824ns 553993 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31537995ns 553996 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31538449ns 554004 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31538620ns 554007 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31538904ns 554012 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31539188ns 554017 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31539472ns 554022 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31539927ns 554030 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31540098ns 554033 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31540382ns 554038 1a110850 fd5ff06f jal x0, -44 +31540666ns 554043 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31540950ns 554048 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31541348ns 554055 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31541518ns 554058 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31541973ns 554066 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31542144ns 554069 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31542428ns 554074 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31542712ns 554079 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31542996ns 554084 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31543451ns 554092 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31543621ns 554095 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31543905ns 554100 1a110850 fd5ff06f jal x0, -44 +31544189ns 554105 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31544474ns 554110 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31544871ns 554117 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31545042ns 554120 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31545497ns 554128 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31545667ns 554131 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31545951ns 554136 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31546235ns 554141 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31546520ns 554146 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31546974ns 554154 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31547145ns 554157 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31547429ns 554162 1a110850 fd5ff06f jal x0, -44 +31547713ns 554167 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31547997ns 554172 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31548395ns 554179 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31548566ns 554182 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31549020ns 554190 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31549191ns 554193 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31549475ns 554198 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31549759ns 554203 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31550043ns 554208 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31550498ns 554216 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31550668ns 554219 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31550952ns 554224 1a110850 fd5ff06f jal x0, -44 +31551237ns 554229 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31551521ns 554234 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31551919ns 554241 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31552089ns 554244 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31552544ns 554252 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31552714ns 554255 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31552998ns 554260 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31553283ns 554265 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31553567ns 554270 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31554021ns 554278 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31554192ns 554281 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31554476ns 554286 1a110850 fd5ff06f jal x0, -44 +31554760ns 554291 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31555044ns 554296 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31555442ns 554303 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31555613ns 554306 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31556067ns 554314 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31556238ns 554317 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31556522ns 554322 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31556806ns 554327 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31557090ns 554332 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31557545ns 554340 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31557715ns 554343 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31558000ns 554348 1a110850 fd5ff06f jal x0, -44 +31558284ns 554353 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31558568ns 554358 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31558966ns 554365 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31559136ns 554368 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31559591ns 554376 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31559761ns 554379 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31560046ns 554384 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31560330ns 554389 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31560614ns 554394 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31561069ns 554402 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31561239ns 554405 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31561523ns 554410 1a110850 fd5ff06f jal x0, -44 +31561807ns 554415 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31562092ns 554420 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31562489ns 554427 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31562660ns 554430 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31563115ns 554438 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31563285ns 554441 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31563569ns 554446 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31563853ns 554451 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31564138ns 554456 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31564592ns 554464 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31564763ns 554467 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31565047ns 554472 1a110850 fd5ff06f jal x0, -44 +31565331ns 554477 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31565615ns 554482 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31566013ns 554489 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31566183ns 554492 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31566638ns 554500 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31566809ns 554503 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31567093ns 554508 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31567377ns 554513 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31567661ns 554518 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31568116ns 554526 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31568286ns 554529 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31568570ns 554534 1a110850 fd5ff06f jal x0, -44 +31568855ns 554539 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31569139ns 554544 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31569537ns 554551 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31569707ns 554554 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31570162ns 554562 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31570332ns 554565 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31570616ns 554570 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31570901ns 554575 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31571185ns 554580 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31571639ns 554588 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31571810ns 554591 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31572094ns 554596 1a110850 fd5ff06f jal x0, -44 +31572378ns 554601 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31572662ns 554606 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31573060ns 554613 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31573231ns 554616 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31573685ns 554624 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31573856ns 554627 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31574140ns 554632 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31574424ns 554637 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31574708ns 554642 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31575163ns 554650 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31575333ns 554653 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31575618ns 554658 1a110850 fd5ff06f jal x0, -44 +31575902ns 554663 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31576186ns 554668 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31576584ns 554675 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31576754ns 554678 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31577209ns 554686 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31577379ns 554689 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31577664ns 554694 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31577948ns 554699 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31578232ns 554704 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31578687ns 554712 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31578857ns 554715 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31579141ns 554720 1a110850 fd5ff06f jal x0, -44 +31579425ns 554725 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31579709ns 554730 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31580107ns 554737 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31580278ns 554740 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31580732ns 554748 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31580903ns 554751 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31581187ns 554756 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31581471ns 554761 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31581755ns 554766 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31582210ns 554774 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31582381ns 554777 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31582665ns 554782 1a110850 fd5ff06f jal x0, -44 +31582949ns 554787 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31583233ns 554792 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31583631ns 554799 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31583801ns 554802 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31584256ns 554810 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31584427ns 554813 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31584711ns 554818 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31584995ns 554823 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31585279ns 554828 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31585734ns 554836 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31585904ns 554839 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31586188ns 554844 1a110850 fd5ff06f jal x0, -44 +31586472ns 554849 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31586757ns 554854 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31587154ns 554861 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31587325ns 554864 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31587780ns 554872 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31587950ns 554875 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31588234ns 554880 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31588518ns 554885 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31588803ns 554890 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31589257ns 554898 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31589428ns 554901 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31589712ns 554906 1a110850 fd5ff06f jal x0, -44 +31589996ns 554911 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31590280ns 554916 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31590678ns 554923 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31590849ns 554926 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31591303ns 554934 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31591474ns 554937 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31591758ns 554942 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31592042ns 554947 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31592326ns 554952 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31592781ns 554960 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31592951ns 554963 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31593235ns 554968 1a110850 fd5ff06f jal x0, -44 +31593520ns 554973 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31593804ns 554978 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31594202ns 554985 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31594372ns 554988 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31594827ns 554996 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31594997ns 554999 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31595281ns 555004 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31595566ns 555009 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31595850ns 555014 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31596304ns 555022 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31596475ns 555025 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31596759ns 555030 1a110850 fd5ff06f jal x0, -44 +31597043ns 555035 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31597327ns 555040 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31597725ns 555047 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31597896ns 555050 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31598350ns 555058 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31598521ns 555061 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31598805ns 555066 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31599089ns 555071 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31599373ns 555076 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31599828ns 555084 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31599999ns 555087 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31600283ns 555092 1a110850 fd5ff06f jal x0, -44 +31600567ns 555097 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31600851ns 555102 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31601249ns 555109 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31601419ns 555112 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31601874ns 555120 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31602044ns 555123 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31602329ns 555128 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31602613ns 555133 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31602897ns 555138 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31603352ns 555146 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31603522ns 555149 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31603806ns 555154 1a110850 fd5ff06f jal x0, -44 +31604090ns 555159 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31604375ns 555164 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31604772ns 555171 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31604943ns 555174 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31605398ns 555182 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31605568ns 555185 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31605852ns 555190 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31606136ns 555195 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31606421ns 555200 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31606875ns 555208 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31607046ns 555211 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31607330ns 555216 1a110850 fd5ff06f jal x0, -44 +31607614ns 555221 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31607898ns 555226 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31608296ns 555233 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31608466ns 555236 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31608921ns 555244 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31609092ns 555247 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31609376ns 555252 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31609660ns 555257 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31609944ns 555262 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31610399ns 555270 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31610569ns 555273 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31610853ns 555278 1a110850 fd5ff06f jal x0, -44 +31611138ns 555283 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31611422ns 555288 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31611820ns 555295 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31611990ns 555298 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31612445ns 555306 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31612615ns 555309 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31612899ns 555314 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31613184ns 555319 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31613468ns 555324 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31613922ns 555332 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31614093ns 555335 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31614377ns 555340 1a110850 fd5ff06f jal x0, -44 +31614661ns 555345 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31614945ns 555350 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31615343ns 555357 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31615514ns 555360 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31615968ns 555368 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31616139ns 555371 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31616423ns 555376 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31616707ns 555381 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31616991ns 555386 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31617446ns 555394 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31617616ns 555397 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31617901ns 555402 1a110850 fd5ff06f jal x0, -44 +31618185ns 555407 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31618469ns 555412 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31618867ns 555419 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31619037ns 555422 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31619492ns 555430 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31619662ns 555433 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31619947ns 555438 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31620231ns 555443 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31620515ns 555448 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31620970ns 555456 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31621140ns 555459 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31621424ns 555464 1a110850 fd5ff06f jal x0, -44 +31621708ns 555469 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31621992ns 555474 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31622390ns 555481 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31622561ns 555484 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31623015ns 555492 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31623186ns 555495 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31623470ns 555500 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31623754ns 555505 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31624038ns 555510 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31624493ns 555518 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31624664ns 555521 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31624948ns 555526 1a110850 fd5ff06f jal x0, -44 +31625232ns 555531 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31625516ns 555536 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31625914ns 555543 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31626084ns 555546 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31626539ns 555554 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31626710ns 555557 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31626994ns 555562 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31627278ns 555567 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31627562ns 555572 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31628017ns 555580 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31628187ns 555583 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31628471ns 555588 1a110850 fd5ff06f jal x0, -44 +31628755ns 555593 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31629040ns 555598 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31629437ns 555605 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31629608ns 555608 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31630063ns 555616 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31630233ns 555619 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31630517ns 555624 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31630801ns 555629 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31631086ns 555634 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31631540ns 555642 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31631711ns 555645 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31631995ns 555650 1a110850 fd5ff06f jal x0, -44 +31632279ns 555655 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31632563ns 555660 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31632961ns 555667 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31633132ns 555670 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31633586ns 555678 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31633757ns 555681 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31634041ns 555686 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31634325ns 555691 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31634609ns 555696 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31635064ns 555704 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31635234ns 555707 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31635519ns 555712 1a110850 fd5ff06f jal x0, -44 +31635803ns 555717 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31636087ns 555722 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31636485ns 555729 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31636655ns 555732 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31637110ns 555740 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31637280ns 555743 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31637564ns 555748 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31637849ns 555753 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31638133ns 555758 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31638587ns 555766 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31638758ns 555769 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31639042ns 555774 1a110850 fd5ff06f jal x0, -44 +31639326ns 555779 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31639610ns 555784 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31640008ns 555791 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31640179ns 555794 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31640633ns 555802 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31640804ns 555805 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31641088ns 555810 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31641372ns 555815 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31641656ns 555820 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31642111ns 555828 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31642282ns 555831 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31642566ns 555836 1a110850 fd5ff06f jal x0, -44 +31642850ns 555841 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31643134ns 555846 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31643532ns 555853 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31643702ns 555856 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31644157ns 555864 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31644327ns 555867 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31644612ns 555872 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31644896ns 555877 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31645180ns 555882 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31645635ns 555890 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31645805ns 555893 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31646089ns 555898 1a110850 fd5ff06f jal x0, -44 +31646373ns 555903 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31646658ns 555908 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31647055ns 555915 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31647226ns 555918 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31647681ns 555926 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31647851ns 555929 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31648135ns 555934 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31648419ns 555939 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31648704ns 555944 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31649158ns 555952 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31649329ns 555955 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31649613ns 555960 1a110850 fd5ff06f jal x0, -44 +31649897ns 555965 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31650181ns 555970 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31650579ns 555977 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31650749ns 555980 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31651204ns 555988 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31651375ns 555991 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31651659ns 555996 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31651943ns 556001 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31652227ns 556006 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31652682ns 556014 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31652852ns 556017 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31653136ns 556022 1a110850 fd5ff06f jal x0, -44 +31653421ns 556027 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31653705ns 556032 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31654103ns 556039 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31654273ns 556042 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31654728ns 556050 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31654898ns 556053 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31655182ns 556058 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31655467ns 556063 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31655751ns 556068 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31656205ns 556076 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31656376ns 556079 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31656660ns 556084 1a110850 fd5ff06f jal x0, -44 +31656944ns 556089 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31657228ns 556094 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31657626ns 556101 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31657797ns 556104 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31658251ns 556112 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31658422ns 556115 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31658706ns 556120 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31658990ns 556125 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31659274ns 556130 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31659729ns 556138 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31659899ns 556141 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31660184ns 556146 1a110850 fd5ff06f jal x0, -44 +31660468ns 556151 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31660752ns 556156 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31661150ns 556163 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31661320ns 556166 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31661775ns 556174 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31661945ns 556177 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31662230ns 556182 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31662514ns 556187 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31662798ns 556192 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31663253ns 556200 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31663423ns 556203 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31663707ns 556208 1a110850 fd5ff06f jal x0, -44 +31663991ns 556213 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31664275ns 556218 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31664673ns 556225 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31664844ns 556228 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31665298ns 556236 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31665469ns 556239 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31665753ns 556244 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31666037ns 556249 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31666321ns 556254 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31666776ns 556262 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31666947ns 556265 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31667231ns 556270 1a110850 fd5ff06f jal x0, -44 +31667515ns 556275 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31667799ns 556280 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31668197ns 556287 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31668367ns 556290 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31668822ns 556298 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31668993ns 556301 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31669277ns 556306 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31669561ns 556311 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31669845ns 556316 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31670300ns 556324 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31670470ns 556327 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31670754ns 556332 1a110850 fd5ff06f jal x0, -44 +31671039ns 556337 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31671323ns 556342 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31671720ns 556349 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31671891ns 556352 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31672346ns 556360 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31672516ns 556363 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31672800ns 556368 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31673084ns 556373 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31673369ns 556378 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31673823ns 556386 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31673994ns 556389 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31674278ns 556394 1a110850 fd5ff06f jal x0, -44 +31674562ns 556399 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31674846ns 556404 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31675244ns 556411 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31675415ns 556414 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31675869ns 556422 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31676040ns 556425 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31676324ns 556430 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31676608ns 556435 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31676892ns 556440 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31677347ns 556448 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31677517ns 556451 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31677802ns 556456 1a110850 fd5ff06f jal x0, -44 +31678086ns 556461 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31678370ns 556466 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31678768ns 556473 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31678938ns 556476 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31679393ns 556484 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31679563ns 556487 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31679847ns 556492 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31680132ns 556497 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31680416ns 556502 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31680870ns 556510 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31681041ns 556513 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31681325ns 556518 1a110850 fd5ff06f jal x0, -44 +31681609ns 556523 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31681893ns 556528 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31682291ns 556535 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31682462ns 556538 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31682916ns 556546 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31683087ns 556549 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31683371ns 556554 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31683655ns 556559 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31683939ns 556564 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31684394ns 556572 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31684565ns 556575 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31684849ns 556580 1a110850 fd5ff06f jal x0, -44 +31685133ns 556585 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31685417ns 556590 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31685815ns 556597 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31685985ns 556600 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31686440ns 556608 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31686610ns 556611 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31686895ns 556616 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31687179ns 556621 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31687463ns 556626 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31687918ns 556634 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31688088ns 556637 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31688372ns 556642 1a110850 fd5ff06f jal x0, -44 +31688656ns 556647 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31688941ns 556652 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31689338ns 556659 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31689509ns 556662 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31689964ns 556670 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31690134ns 556673 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31690418ns 556678 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31690702ns 556683 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31690987ns 556688 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31691441ns 556696 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31691612ns 556699 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31691896ns 556704 1a110850 fd5ff06f jal x0, -44 +31692180ns 556709 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31692464ns 556714 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31692862ns 556721 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31693032ns 556724 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31693487ns 556732 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31693658ns 556735 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31693942ns 556740 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31694226ns 556745 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31694510ns 556750 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31694965ns 556758 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31695135ns 556761 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31695419ns 556766 1a110850 fd5ff06f jal x0, -44 +31695704ns 556771 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31695988ns 556776 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31696386ns 556783 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31696556ns 556786 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31697011ns 556794 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31697181ns 556797 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31697465ns 556802 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31697750ns 556807 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31698034ns 556812 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31698488ns 556820 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31698659ns 556823 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31698943ns 556828 1a110850 fd5ff06f jal x0, -44 +31699227ns 556833 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31699511ns 556838 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31699909ns 556845 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31700080ns 556848 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31700534ns 556856 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31700705ns 556859 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31700989ns 556864 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31701273ns 556869 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31701557ns 556874 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31702012ns 556882 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31702182ns 556885 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31702467ns 556890 1a110850 fd5ff06f jal x0, -44 +31702751ns 556895 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31703035ns 556900 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31703433ns 556907 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31703603ns 556910 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31704058ns 556918 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31704228ns 556921 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31704513ns 556926 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31704797ns 556931 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31705081ns 556936 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31705536ns 556944 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31705706ns 556947 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31705990ns 556952 1a110850 fd5ff06f jal x0, -44 +31706274ns 556957 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31706559ns 556962 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31706956ns 556969 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31707127ns 556972 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31707581ns 556980 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31707752ns 556983 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31708036ns 556988 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31708320ns 556993 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31708604ns 556998 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31709059ns 557006 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31709230ns 557009 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31709514ns 557014 1a110850 fd5ff06f jal x0, -44 +31709798ns 557019 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31710082ns 557024 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31710480ns 557031 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31710650ns 557034 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31711105ns 557042 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31711276ns 557045 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31711560ns 557050 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31711844ns 557055 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31712128ns 557060 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31712583ns 557068 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31712753ns 557071 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31713037ns 557076 1a110850 fd5ff06f jal x0, -44 +31713322ns 557081 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31713606ns 557086 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31714003ns 557093 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31714174ns 557096 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31714629ns 557104 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31714799ns 557107 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31715083ns 557112 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31715367ns 557117 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31715652ns 557122 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31716106ns 557130 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31716277ns 557133 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31716561ns 557138 1a110850 fd5ff06f jal x0, -44 +31716845ns 557143 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31717129ns 557148 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31717527ns 557155 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31717698ns 557158 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31718152ns 557166 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31718323ns 557169 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31718607ns 557174 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31718891ns 557179 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31719175ns 557184 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31719630ns 557192 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31719800ns 557195 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31720085ns 557200 1a110850 fd5ff06f jal x0, -44 +31720369ns 557205 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31720653ns 557210 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31721051ns 557217 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31721221ns 557220 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31721676ns 557228 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31721846ns 557231 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31722130ns 557236 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31722415ns 557241 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31722699ns 557246 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31723153ns 557254 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31723324ns 557257 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31723608ns 557262 1a110850 fd5ff06f jal x0, -44 +31723892ns 557267 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31724176ns 557272 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31724574ns 557279 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31724745ns 557282 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31725199ns 557290 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31725370ns 557293 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31725654ns 557298 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31725938ns 557303 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31726222ns 557308 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31726677ns 557316 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31726848ns 557319 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31727132ns 557324 1a110850 fd5ff06f jal x0, -44 +31727416ns 557329 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31727700ns 557334 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31728098ns 557341 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31728268ns 557344 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31728723ns 557352 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31728893ns 557355 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31729178ns 557360 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31729462ns 557365 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31729746ns 557370 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31730201ns 557378 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31730371ns 557381 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31730655ns 557386 1a110850 fd5ff06f jal x0, -44 +31730939ns 557391 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31731224ns 557396 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31731621ns 557403 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31731792ns 557406 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31732247ns 557414 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31732417ns 557417 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31732701ns 557422 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31732985ns 557427 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31733270ns 557432 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31733724ns 557440 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31733895ns 557443 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31734179ns 557448 1a110850 fd5ff06f jal x0, -44 +31734463ns 557453 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31734747ns 557458 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31735145ns 557465 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31735315ns 557468 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31735770ns 557476 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31735941ns 557479 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31736225ns 557484 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31736509ns 557489 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31736793ns 557494 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31737248ns 557502 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31737418ns 557505 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31737702ns 557510 1a110850 fd5ff06f jal x0, -44 +31737987ns 557515 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31738271ns 557520 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31738669ns 557527 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31738839ns 557530 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31739294ns 557538 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31739464ns 557541 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31739748ns 557546 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31740033ns 557551 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31740317ns 557556 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31740771ns 557564 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31740942ns 557567 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31741226ns 557572 1a110850 fd5ff06f jal x0, -44 +31741510ns 557577 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31741794ns 557582 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31742192ns 557589 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31742363ns 557592 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31742817ns 557600 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31742988ns 557603 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31743272ns 557608 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31743556ns 557613 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31743840ns 557618 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31744295ns 557626 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31744465ns 557629 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31744750ns 557634 1a110850 fd5ff06f jal x0, -44 +31745034ns 557639 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31745318ns 557644 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31745716ns 557651 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31745886ns 557654 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31746341ns 557662 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31746511ns 557665 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31746796ns 557670 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31747080ns 557675 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31747364ns 557680 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31747819ns 557688 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31747989ns 557691 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31748273ns 557696 1a110850 fd5ff06f jal x0, -44 +31748557ns 557701 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31748842ns 557706 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31749239ns 557713 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31749410ns 557716 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31749864ns 557724 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31750035ns 557727 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31750319ns 557732 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31750603ns 557737 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31750887ns 557742 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31751342ns 557750 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31751513ns 557753 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31751797ns 557758 1a110850 fd5ff06f jal x0, -44 +31752081ns 557763 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31752365ns 557768 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31752763ns 557775 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31752933ns 557778 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31753388ns 557786 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31753559ns 557789 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31753843ns 557794 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31754127ns 557799 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31754411ns 557804 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31754866ns 557812 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31755036ns 557815 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31755320ns 557820 1a110850 fd5ff06f jal x0, -44 +31755605ns 557825 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31755889ns 557830 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31756287ns 557837 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31756457ns 557840 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31756912ns 557848 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31757082ns 557851 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31757366ns 557856 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31757650ns 557861 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31757935ns 557866 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31758389ns 557874 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31758560ns 557877 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31758844ns 557882 1a110850 fd5ff06f jal x0, -44 +31759128ns 557887 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31759412ns 557892 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31759810ns 557899 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31759981ns 557902 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31760435ns 557910 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31760606ns 557913 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31760890ns 557918 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31761174ns 557923 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31761458ns 557928 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31761913ns 557936 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31762083ns 557939 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31762368ns 557944 1a110850 fd5ff06f jal x0, -44 +31762652ns 557949 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31762936ns 557954 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31763334ns 557961 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31763504ns 557964 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31763959ns 557972 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31764129ns 557975 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31764413ns 557980 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31764698ns 557985 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31764982ns 557990 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31765436ns 557998 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31765607ns 558001 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31765891ns 558006 1a110850 fd5ff06f jal x0, -44 +31766175ns 558011 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31766459ns 558016 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31766857ns 558023 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31767028ns 558026 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31767482ns 558034 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31767653ns 558037 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31767937ns 558042 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31768221ns 558047 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31768505ns 558052 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31768960ns 558060 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31769131ns 558063 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31769415ns 558068 1a110850 fd5ff06f jal x0, -44 +31769699ns 558073 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31769983ns 558078 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31770381ns 558085 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31770551ns 558088 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31771006ns 558096 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31771176ns 558099 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31771461ns 558104 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31771745ns 558109 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31772029ns 558114 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31772484ns 558122 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31772654ns 558125 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31772938ns 558130 1a110850 fd5ff06f jal x0, -44 +31773222ns 558135 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31773507ns 558140 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31773904ns 558147 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31774075ns 558150 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31774530ns 558158 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31774700ns 558161 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31774984ns 558166 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31775268ns 558171 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31775553ns 558176 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31776007ns 558184 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31776178ns 558187 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31776462ns 558192 1a110850 fd5ff06f jal x0, -44 +31776746ns 558197 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31777030ns 558202 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31777428ns 558209 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31777599ns 558212 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31778053ns 558220 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31778224ns 558223 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31778508ns 558228 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31778792ns 558233 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31779076ns 558238 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31779531ns 558246 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31779701ns 558249 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31779985ns 558254 1a110850 fd5ff06f jal x0, -44 +31780270ns 558259 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31780554ns 558264 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31780952ns 558271 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31781122ns 558274 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31781577ns 558282 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31781747ns 558285 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31782031ns 558290 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31782316ns 558295 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31782600ns 558300 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31783054ns 558308 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31783225ns 558311 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31783509ns 558316 1a110850 fd5ff06f jal x0, -44 +31783793ns 558321 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31784077ns 558326 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31784475ns 558333 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31784646ns 558336 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31785100ns 558344 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31785271ns 558347 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31785555ns 558352 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31785839ns 558357 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31786123ns 558362 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31786578ns 558370 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31786748ns 558373 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31787033ns 558378 1a110850 fd5ff06f jal x0, -44 +31787317ns 558383 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31787601ns 558388 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31787999ns 558395 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31788169ns 558398 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31788624ns 558406 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31788794ns 558409 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31789079ns 558414 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31789363ns 558419 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31789647ns 558424 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31790102ns 558432 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31790272ns 558435 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31790556ns 558440 1a110850 fd5ff06f jal x0, -44 +31790840ns 558445 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31791125ns 558450 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31791522ns 558457 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31791693ns 558460 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31792147ns 558468 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31792318ns 558471 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31792602ns 558476 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31792886ns 558481 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31793170ns 558486 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31793625ns 558494 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31793796ns 558497 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31794080ns 558502 1a110850 fd5ff06f jal x0, -44 +31794364ns 558507 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31794648ns 558512 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31795046ns 558519 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31795216ns 558522 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31795671ns 558530 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31795842ns 558533 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31796126ns 558538 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31796410ns 558543 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31796694ns 558548 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31797149ns 558556 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31797319ns 558559 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31797603ns 558564 1a110850 fd5ff06f jal x0, -44 +31797888ns 558569 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31798172ns 558574 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31798570ns 558581 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31798740ns 558584 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31799195ns 558592 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31799365ns 558595 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31799649ns 558600 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31799933ns 558605 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31800218ns 558610 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31800672ns 558618 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31800843ns 558621 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31801127ns 558626 1a110850 fd5ff06f jal x0, -44 +31801411ns 558631 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31801695ns 558636 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31802093ns 558643 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31802264ns 558646 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31802718ns 558654 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31802889ns 558657 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31803173ns 558662 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31803457ns 558667 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31803741ns 558672 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31804196ns 558680 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31804366ns 558683 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31804651ns 558688 1a110850 fd5ff06f jal x0, -44 +31804935ns 558693 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31805219ns 558698 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31805617ns 558705 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31805787ns 558708 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31806242ns 558716 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31806412ns 558719 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31806696ns 558724 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31806981ns 558729 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31807265ns 558734 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31807719ns 558742 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31807890ns 558745 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31808174ns 558750 1a110850 fd5ff06f jal x0, -44 +31808458ns 558755 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31808742ns 558760 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31809140ns 558767 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31809311ns 558770 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31809765ns 558778 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31809936ns 558781 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31810220ns 558786 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31810504ns 558791 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31810788ns 558796 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31811243ns 558804 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31811414ns 558807 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31811698ns 558812 1a110850 fd5ff06f jal x0, -44 +31811982ns 558817 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31812266ns 558822 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31812664ns 558829 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31812834ns 558832 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31813289ns 558840 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31813459ns 558843 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31813744ns 558848 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31814028ns 558853 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31814312ns 558858 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31814767ns 558866 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31814937ns 558869 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31815221ns 558874 1a110850 fd5ff06f jal x0, -44 +31815505ns 558879 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31815790ns 558884 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31816187ns 558891 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31816358ns 558894 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31816813ns 558902 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31816983ns 558905 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31817267ns 558910 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31817551ns 558915 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31817836ns 558920 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31818290ns 558928 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31818461ns 558931 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31818745ns 558936 1a110850 fd5ff06f jal x0, -44 +31819029ns 558941 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31819313ns 558946 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31819711ns 558953 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31819882ns 558956 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31820336ns 558964 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31820507ns 558967 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31820791ns 558972 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31821075ns 558977 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31821359ns 558982 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31821814ns 558990 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31821984ns 558993 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31822268ns 558998 1a110850 fd5ff06f jal x0, -44 +31822553ns 559003 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31822837ns 559008 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31823235ns 559015 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31823405ns 559018 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31823860ns 559026 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31824030ns 559029 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31824314ns 559034 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31824599ns 559039 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31824883ns 559044 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31825337ns 559052 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31825508ns 559055 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31825792ns 559060 1a110850 fd5ff06f jal x0, -44 +31826076ns 559065 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31826360ns 559070 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31826758ns 559077 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31826929ns 559080 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31827383ns 559088 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31827554ns 559091 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31827838ns 559096 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31828122ns 559101 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31828406ns 559106 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31828861ns 559114 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31829031ns 559117 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31829316ns 559122 1a110850 fd5ff06f jal x0, -44 +31829600ns 559127 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31829884ns 559132 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31830282ns 559139 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31830452ns 559142 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31830907ns 559150 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31831077ns 559153 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31831362ns 559158 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31831646ns 559163 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31831930ns 559168 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31832385ns 559176 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31832555ns 559179 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31832839ns 559184 1a110850 fd5ff06f jal x0, -44 +31833123ns 559189 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31833408ns 559194 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31833805ns 559201 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31833976ns 559204 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31834431ns 559212 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31834601ns 559215 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31834885ns 559220 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31835169ns 559225 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31835453ns 559230 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31835908ns 559238 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31836079ns 559241 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31836363ns 559246 1a110850 fd5ff06f jal x0, -44 +31836647ns 559251 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31836931ns 559256 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31837329ns 559263 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31837499ns 559266 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31837954ns 559274 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31838125ns 559277 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31838409ns 559282 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31838693ns 559287 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31838977ns 559292 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31839432ns 559300 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31839602ns 559303 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31839886ns 559308 1a110850 fd5ff06f jal x0, -44 +31840171ns 559313 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31840455ns 559318 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31840853ns 559325 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31841023ns 559328 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31841478ns 559336 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31841648ns 559339 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31841932ns 559344 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31842216ns 559349 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31842501ns 559354 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31842955ns 559362 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31843126ns 559365 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31843410ns 559370 1a110850 fd5ff06f jal x0, -44 +31843694ns 559375 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31843978ns 559380 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31844376ns 559387 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31844547ns 559390 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31845001ns 559398 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31845172ns 559401 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31845456ns 559406 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31845740ns 559411 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31846024ns 559416 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31846479ns 559424 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31846649ns 559427 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31846934ns 559432 1a110850 fd5ff06f jal x0, -44 +31847218ns 559437 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31847502ns 559442 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31847900ns 559449 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31848070ns 559452 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31848525ns 559460 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31848695ns 559463 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31848979ns 559468 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31849264ns 559473 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31849548ns 559478 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31850002ns 559486 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31850173ns 559489 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31850457ns 559494 1a110850 fd5ff06f jal x0, -44 +31850741ns 559499 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31851025ns 559504 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31851423ns 559511 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31851594ns 559514 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31852048ns 559522 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31852219ns 559525 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31852503ns 559530 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31852787ns 559535 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31853071ns 559540 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31853526ns 559548 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31853697ns 559551 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31853981ns 559556 1a110850 fd5ff06f jal x0, -44 +31854265ns 559561 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31854549ns 559566 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31854947ns 559573 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31855117ns 559576 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31855572ns 559584 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31855743ns 559587 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31856027ns 559592 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31856311ns 559597 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31856595ns 559602 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31857050ns 559610 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31857220ns 559613 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31857504ns 559618 1a110850 fd5ff06f jal x0, -44 +31857788ns 559623 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31858073ns 559628 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31858470ns 559635 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31858641ns 559638 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31859096ns 559646 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31859266ns 559649 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31859550ns 559654 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31859834ns 559659 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31860119ns 559664 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31860573ns 559672 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31860744ns 559675 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31861028ns 559680 1a110850 fd5ff06f jal x0, -44 +31861312ns 559685 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31861596ns 559690 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31861994ns 559697 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31862165ns 559700 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31862619ns 559708 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31862790ns 559711 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31863074ns 559716 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31863358ns 559721 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31863642ns 559726 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31864097ns 559734 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31864267ns 559737 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31864551ns 559742 1a110850 fd5ff06f jal x0, -44 +31864836ns 559747 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31865120ns 559752 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31865518ns 559759 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31865688ns 559762 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31866143ns 559770 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31866313ns 559773 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31866597ns 559778 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31866882ns 559783 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31867166ns 559788 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31867620ns 559796 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31867791ns 559799 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31868075ns 559804 1a110850 fd5ff06f jal x0, -44 +31868359ns 559809 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31868643ns 559814 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31869041ns 559821 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31869212ns 559824 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31869666ns 559832 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31869837ns 559835 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31870121ns 559840 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31870405ns 559845 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31870689ns 559850 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31871144ns 559858 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31871314ns 559861 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31871599ns 559866 1a110850 fd5ff06f jal x0, -44 +31871883ns 559871 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31872167ns 559876 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31872565ns 559883 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31872735ns 559886 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31873190ns 559894 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31873360ns 559897 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31873645ns 559902 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31873929ns 559907 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31874213ns 559912 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31874668ns 559920 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31874838ns 559923 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31875122ns 559928 1a110850 fd5ff06f jal x0, -44 +31875406ns 559933 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31875691ns 559938 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31876088ns 559945 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31876259ns 559948 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31876714ns 559956 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31876884ns 559959 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31877168ns 559964 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31877452ns 559969 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31877736ns 559974 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31878191ns 559982 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31878362ns 559985 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31878646ns 559990 1a110850 fd5ff06f jal x0, -44 +31878930ns 559995 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31879214ns 560000 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31879612ns 560007 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31879782ns 560010 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31880237ns 560018 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31880408ns 560021 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31880692ns 560026 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31880976ns 560031 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31881260ns 560036 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31881715ns 560044 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31881885ns 560047 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31882169ns 560052 1a110850 fd5ff06f jal x0, -44 +31882454ns 560057 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31882738ns 560062 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31883136ns 560069 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31883306ns 560072 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31883761ns 560080 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31883931ns 560083 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31884215ns 560088 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31884499ns 560093 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31884784ns 560098 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31885238ns 560106 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31885409ns 560109 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31885693ns 560114 1a110850 fd5ff06f jal x0, -44 +31885977ns 560119 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31886261ns 560124 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31886659ns 560131 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31886830ns 560134 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31887284ns 560142 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31887455ns 560145 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31887739ns 560150 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31888023ns 560155 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31888307ns 560160 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31888762ns 560168 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31888932ns 560171 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31889217ns 560176 1a110850 fd5ff06f jal x0, -44 +31889501ns 560181 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31889785ns 560186 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31890183ns 560193 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31890353ns 560196 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31890808ns 560204 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31890978ns 560207 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31891263ns 560212 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31891547ns 560217 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31891831ns 560222 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31892285ns 560230 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31892456ns 560233 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31892740ns 560238 1a110850 fd5ff06f jal x0, -44 +31893024ns 560243 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31893308ns 560248 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31893706ns 560255 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31893877ns 560258 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31894331ns 560266 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31894502ns 560269 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31894786ns 560274 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31895070ns 560279 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31895354ns 560284 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31895809ns 560292 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31895980ns 560295 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31896264ns 560300 1a110850 fd5ff06f jal x0, -44 +31896548ns 560305 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31896832ns 560310 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31897230ns 560317 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31897400ns 560320 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31897855ns 560328 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31898026ns 560331 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31898310ns 560336 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31898594ns 560341 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31898878ns 560346 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31899333ns 560354 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31899503ns 560357 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31899787ns 560362 1a110850 fd5ff06f jal x0, -44 +31900071ns 560367 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31900356ns 560372 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31900753ns 560379 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31900924ns 560382 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31901379ns 560390 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31901549ns 560393 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31901833ns 560398 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31902117ns 560403 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31902402ns 560408 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31902856ns 560416 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31903027ns 560419 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31903311ns 560424 1a110850 fd5ff06f jal x0, -44 +31903595ns 560429 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31903879ns 560434 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31904277ns 560441 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31904448ns 560444 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31904902ns 560452 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31905073ns 560455 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31905357ns 560460 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31905641ns 560465 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31905925ns 560470 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31906380ns 560478 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31906550ns 560481 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31906834ns 560486 1a110850 fd5ff06f jal x0, -44 +31907119ns 560491 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31907403ns 560496 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31907801ns 560503 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31907971ns 560506 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31908426ns 560514 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31908596ns 560517 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31908880ns 560522 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31909165ns 560527 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31909449ns 560532 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31909903ns 560540 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31910074ns 560543 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31910358ns 560548 1a110850 fd5ff06f jal x0, -44 +31910642ns 560553 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31910926ns 560558 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31911324ns 560565 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31911495ns 560568 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31911949ns 560576 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31912120ns 560579 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31912404ns 560584 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31912688ns 560589 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31912972ns 560594 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31913427ns 560602 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31913597ns 560605 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31913882ns 560610 1a110850 fd5ff06f jal x0, -44 +31914166ns 560615 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31914450ns 560620 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31914848ns 560627 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31915018ns 560630 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31915473ns 560638 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31915643ns 560641 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31915928ns 560646 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31916212ns 560651 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31916496ns 560656 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31916951ns 560664 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31917121ns 560667 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31917405ns 560672 1a110850 fd5ff06f jal x0, -44 +31917689ns 560677 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31917974ns 560682 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31918371ns 560689 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31918542ns 560692 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31918997ns 560700 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31919167ns 560703 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31919451ns 560708 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31919735ns 560713 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31920019ns 560718 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31920474ns 560726 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31920645ns 560729 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31920929ns 560734 1a110850 fd5ff06f jal x0, -44 +31921213ns 560739 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31921497ns 560744 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31921895ns 560751 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31922065ns 560754 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31922520ns 560762 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31922691ns 560765 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31922975ns 560770 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31923259ns 560775 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31923543ns 560780 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31923998ns 560788 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31924168ns 560791 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31924452ns 560796 1a110850 fd5ff06f jal x0, -44 +31924737ns 560801 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31925021ns 560806 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31925419ns 560813 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31925589ns 560816 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31926044ns 560824 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31926214ns 560827 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31926498ns 560832 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31926783ns 560837 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31927067ns 560842 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31927521ns 560850 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31927692ns 560853 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31927976ns 560858 1a110850 fd5ff06f jal x0, -44 +31928260ns 560863 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31928544ns 560868 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31928942ns 560875 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31929113ns 560878 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31929567ns 560886 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31929738ns 560889 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31930022ns 560894 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31930306ns 560899 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31930590ns 560904 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31931045ns 560912 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31931215ns 560915 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31931500ns 560920 1a110850 fd5ff06f jal x0, -44 +31931784ns 560925 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31932068ns 560930 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31932466ns 560937 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31932636ns 560940 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31933091ns 560948 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31933261ns 560951 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31933546ns 560956 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31933830ns 560961 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31934114ns 560966 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31934568ns 560974 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31934739ns 560977 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31935023ns 560982 1a110850 fd5ff06f jal x0, -44 +31935307ns 560987 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31935591ns 560992 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31935989ns 560999 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31936160ns 561002 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31936614ns 561010 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31936785ns 561013 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31937069ns 561018 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31937353ns 561023 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31937637ns 561028 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31938092ns 561036 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31938263ns 561039 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31938547ns 561044 1a110850 fd5ff06f jal x0, -44 +31938831ns 561049 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31939115ns 561054 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31939513ns 561061 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31939683ns 561064 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31940138ns 561072 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31940309ns 561075 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31940593ns 561080 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31940877ns 561085 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31941161ns 561090 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31941616ns 561098 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31941786ns 561101 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31942070ns 561106 1a110850 fd5ff06f jal x0, -44 +31942354ns 561111 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31942639ns 561116 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31943036ns 561123 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31943207ns 561126 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31943662ns 561134 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31943832ns 561137 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31944116ns 561142 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31944400ns 561147 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31944685ns 561152 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31945139ns 561160 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31945310ns 561163 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31945594ns 561168 1a110850 fd5ff06f jal x0, -44 +31945878ns 561173 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31946162ns 561178 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31946560ns 561185 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31946731ns 561188 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31947185ns 561196 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31947356ns 561199 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31947640ns 561204 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31947924ns 561209 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31948208ns 561214 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31948663ns 561222 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31948833ns 561225 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31949117ns 561230 1a110850 fd5ff06f jal x0, -44 +31949402ns 561235 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31949686ns 561240 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31950084ns 561247 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31950254ns 561250 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31950709ns 561258 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31950879ns 561261 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31951163ns 561266 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31951448ns 561271 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31951732ns 561276 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31952186ns 561284 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31952357ns 561287 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31952641ns 561292 1a110850 fd5ff06f jal x0, -44 +31952925ns 561297 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31953209ns 561302 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31953607ns 561309 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31953778ns 561312 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31954232ns 561320 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31954403ns 561323 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31954687ns 561328 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31954971ns 561333 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31955255ns 561338 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31955710ns 561346 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31955880ns 561349 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31956165ns 561354 1a110850 fd5ff06f jal x0, -44 +31956449ns 561359 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31956733ns 561364 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31957131ns 561371 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31957301ns 561374 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31957756ns 561382 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31957926ns 561385 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31958211ns 561390 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31958495ns 561395 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31958779ns 561400 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31959234ns 561408 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31959404ns 561411 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31959688ns 561416 1a110850 fd5ff06f jal x0, -44 +31959972ns 561421 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31960257ns 561426 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31960654ns 561433 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31960825ns 561436 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31961280ns 561444 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31961450ns 561447 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31961734ns 561452 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31962018ns 561457 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31962303ns 561462 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31962757ns 561470 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31962928ns 561473 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31963212ns 561478 1a110850 fd5ff06f jal x0, -44 +31963496ns 561483 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31963780ns 561488 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31964178ns 561495 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31964348ns 561498 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31964803ns 561506 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31964974ns 561509 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31965258ns 561514 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31965542ns 561519 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31965826ns 561524 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31966281ns 561532 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31966451ns 561535 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31966735ns 561540 1a110850 fd5ff06f jal x0, -44 +31967020ns 561545 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31967304ns 561550 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31967702ns 561557 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31967872ns 561560 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31968327ns 561568 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31968497ns 561571 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31968781ns 561576 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31969066ns 561581 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31969350ns 561586 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31969804ns 561594 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31969975ns 561597 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31970259ns 561602 1a110850 fd5ff06f jal x0, -44 +31970543ns 561607 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31970827ns 561612 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31971225ns 561619 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31971396ns 561622 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31971850ns 561630 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31972021ns 561633 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31972305ns 561638 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31972589ns 561643 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31972873ns 561648 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31973328ns 561656 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31973498ns 561659 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31973783ns 561664 1a110850 fd5ff06f jal x0, -44 +31974067ns 561669 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31974351ns 561674 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31974749ns 561681 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31974919ns 561684 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31975374ns 561692 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31975544ns 561695 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31975829ns 561700 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31976113ns 561705 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31976397ns 561710 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31976851ns 561718 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31977022ns 561721 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31977306ns 561726 1a110850 fd5ff06f jal x0, -44 +31977590ns 561731 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31977874ns 561736 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31978272ns 561743 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31978443ns 561746 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31978897ns 561754 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31979068ns 561757 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31979352ns 561762 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31979636ns 561767 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31979920ns 561772 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31980375ns 561780 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31980546ns 561783 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31980830ns 561788 1a110850 fd5ff06f jal x0, -44 +31981114ns 561793 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31981398ns 561798 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31981796ns 561805 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31981966ns 561808 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31982421ns 561816 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31982592ns 561819 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31982876ns 561824 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31983160ns 561829 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31983444ns 561834 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31983899ns 561842 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31984069ns 561845 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31984353ns 561850 1a110850 fd5ff06f jal x0, -44 +31984637ns 561855 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31984922ns 561860 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31985319ns 561867 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31985490ns 561870 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31985945ns 561878 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31986115ns 561881 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31986399ns 561886 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31986683ns 561891 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31986968ns 561896 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31987422ns 561904 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31987593ns 561907 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31987877ns 561912 1a110850 fd5ff06f jal x0, -44 +31988161ns 561917 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31988445ns 561922 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31988843ns 561929 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31989014ns 561932 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31989468ns 561940 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31989639ns 561943 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31989923ns 561948 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31990207ns 561953 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31990491ns 561958 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31990946ns 561966 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31991116ns 561969 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31991400ns 561974 1a110850 fd5ff06f jal x0, -44 +31991685ns 561979 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31991969ns 561984 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31992367ns 561991 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31992537ns 561994 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31992992ns 562002 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31993162ns 562005 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31993446ns 562010 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31993731ns 562015 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31994015ns 562020 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31994469ns 562028 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31994640ns 562031 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31994924ns 562036 1a110850 fd5ff06f jal x0, -44 +31995208ns 562041 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31995492ns 562046 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31995890ns 562053 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31996061ns 562056 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31996515ns 562064 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +31996686ns 562067 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +31996970ns 562072 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31997254ns 562077 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31997538ns 562082 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +31997993ns 562090 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +31998163ns 562093 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +31998448ns 562098 1a110850 fd5ff06f jal x0, -44 +31998732ns 562103 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +31999016ns 562108 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +31999414ns 562115 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +31999584ns 562118 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32000039ns 562126 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32000209ns 562129 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32000494ns 562134 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32000778ns 562139 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32001062ns 562144 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32001517ns 562152 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32001687ns 562155 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32001971ns 562160 1a110850 fd5ff06f jal x0, -44 +32002255ns 562165 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32002540ns 562170 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32002937ns 562177 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32003108ns 562180 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32003563ns 562188 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32003733ns 562191 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32004017ns 562196 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32004301ns 562201 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32004586ns 562206 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32005040ns 562214 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32005211ns 562217 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32005495ns 562222 1a110850 fd5ff06f jal x0, -44 +32005779ns 562227 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32006063ns 562232 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32006461ns 562239 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32006631ns 562242 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32007086ns 562250 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32007257ns 562253 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32007541ns 562258 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32007825ns 562263 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32008109ns 562268 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32008564ns 562276 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32008734ns 562279 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32009018ns 562284 1a110850 fd5ff06f jal x0, -44 +32009303ns 562289 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32009587ns 562294 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32009985ns 562301 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32010155ns 562304 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32010610ns 562312 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32010780ns 562315 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32011064ns 562320 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32011349ns 562325 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32011633ns 562330 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32012087ns 562338 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32012258ns 562341 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32012542ns 562346 1a110850 fd5ff06f jal x0, -44 +32012826ns 562351 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32013110ns 562356 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32013508ns 562363 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32013679ns 562366 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32014133ns 562374 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32014304ns 562377 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32014588ns 562382 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32014872ns 562387 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32015156ns 562392 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32015611ns 562400 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32015781ns 562403 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32016066ns 562408 1a110850 fd5ff06f jal x0, -44 +32016350ns 562413 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32016634ns 562418 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32017032ns 562425 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32017202ns 562428 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32017657ns 562436 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32017827ns 562439 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32018112ns 562444 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32018396ns 562449 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32018680ns 562454 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32019135ns 562462 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32019305ns 562465 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32019589ns 562470 1a110850 fd5ff06f jal x0, -44 +32019873ns 562475 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32020157ns 562480 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32020555ns 562487 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32020726ns 562490 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32021180ns 562498 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32021351ns 562501 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32021635ns 562506 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32021919ns 562511 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32022203ns 562516 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32022658ns 562524 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32022829ns 562527 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32023113ns 562532 1a110850 fd5ff06f jal x0, -44 +32023397ns 562537 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32023681ns 562542 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32024079ns 562549 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32024249ns 562552 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32024704ns 562560 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32024875ns 562563 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32025159ns 562568 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32025443ns 562573 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32025727ns 562578 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32026182ns 562586 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32026352ns 562589 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32026636ns 562594 1a110850 fd5ff06f jal x0, -44 +32026920ns 562599 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32027205ns 562604 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32027602ns 562611 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32027773ns 562614 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32028228ns 562622 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32028398ns 562625 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32028682ns 562630 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32028966ns 562635 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32029251ns 562640 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32029705ns 562648 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32029876ns 562651 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32030160ns 562656 1a110850 fd5ff06f jal x0, -44 +32030444ns 562661 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32030728ns 562666 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32031126ns 562673 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32031297ns 562676 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32031751ns 562684 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32031922ns 562687 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32032206ns 562692 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32032490ns 562697 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32032774ns 562702 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32033229ns 562710 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32033399ns 562713 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32033683ns 562718 1a110850 fd5ff06f jal x0, -44 +32033968ns 562723 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32034252ns 562728 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32034650ns 562735 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32034820ns 562738 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32035275ns 562746 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32035445ns 562749 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32035729ns 562754 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32036014ns 562759 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32036298ns 562764 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32036752ns 562772 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32036923ns 562775 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32037207ns 562780 1a110850 fd5ff06f jal x0, -44 +32037491ns 562785 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32037775ns 562790 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32038173ns 562797 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32038344ns 562800 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32038798ns 562808 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32038969ns 562811 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32039253ns 562816 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32039537ns 562821 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32039821ns 562826 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32040276ns 562834 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32040447ns 562837 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32040731ns 562842 1a110850 fd5ff06f jal x0, -44 +32041015ns 562847 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32041299ns 562852 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32041697ns 562859 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32041867ns 562862 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32042322ns 562870 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32042492ns 562873 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32042777ns 562878 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32043061ns 562883 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32043345ns 562888 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32043800ns 562896 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32043970ns 562899 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32044254ns 562904 1a110850 fd5ff06f jal x0, -44 +32044538ns 562909 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32044823ns 562914 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32045220ns 562921 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32045391ns 562924 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32045846ns 562932 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32046016ns 562935 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32046300ns 562940 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32046584ns 562945 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32046869ns 562950 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32047323ns 562958 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32047494ns 562961 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32047778ns 562966 1a110850 fd5ff06f jal x0, -44 +32048062ns 562971 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32048346ns 562976 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32048744ns 562983 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32048914ns 562986 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32049369ns 562994 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32049540ns 562997 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32049824ns 563002 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32050108ns 563007 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32050392ns 563012 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32050847ns 563020 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32051017ns 563023 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32051301ns 563028 1a110850 fd5ff06f jal x0, -44 +32051586ns 563033 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32051870ns 563038 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32052268ns 563045 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32052438ns 563048 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32052893ns 563056 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32053063ns 563059 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32053347ns 563064 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32053632ns 563069 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32053916ns 563074 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32054370ns 563082 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32054541ns 563085 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32054825ns 563090 1a110850 fd5ff06f jal x0, -44 +32055109ns 563095 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32055393ns 563100 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32055791ns 563107 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32055962ns 563110 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32056416ns 563118 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32056587ns 563121 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32056871ns 563126 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32057155ns 563131 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32057439ns 563136 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32057894ns 563144 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32058064ns 563147 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32058349ns 563152 1a110850 fd5ff06f jal x0, -44 +32058633ns 563157 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32058917ns 563162 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32059315ns 563169 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32059485ns 563172 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32059940ns 563180 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32060110ns 563183 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32060395ns 563188 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32060679ns 563193 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32060963ns 563198 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32061418ns 563206 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32061588ns 563209 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32061872ns 563214 1a110850 fd5ff06f jal x0, -44 +32062156ns 563219 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32062440ns 563224 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32062838ns 563231 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32063009ns 563234 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32063463ns 563242 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32063634ns 563245 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32063918ns 563250 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32064202ns 563255 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32064486ns 563260 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32064941ns 563268 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32065112ns 563271 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32065396ns 563276 1a110850 fd5ff06f jal x0, -44 +32065680ns 563281 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32065964ns 563286 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32066362ns 563293 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32066532ns 563296 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32066987ns 563304 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32067158ns 563307 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32067442ns 563312 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32067726ns 563317 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32068010ns 563322 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32068465ns 563330 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32068635ns 563333 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32068919ns 563338 1a110850 fd5ff06f jal x0, -44 +32069203ns 563343 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32069488ns 563348 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32069885ns 563355 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32070056ns 563358 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32070511ns 563366 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32070681ns 563369 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32070965ns 563374 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32071249ns 563379 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32071534ns 563384 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32071988ns 563392 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32072159ns 563395 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32072443ns 563400 1a110850 fd5ff06f jal x0, -44 +32072727ns 563405 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32073011ns 563410 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32073409ns 563417 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32073580ns 563420 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32074034ns 563428 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32074205ns 563431 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32074489ns 563436 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32074773ns 563441 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32075057ns 563446 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32075512ns 563454 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32075682ns 563457 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32075967ns 563462 1a110850 fd5ff06f jal x0, -44 +32076251ns 563467 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32076535ns 563472 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32076933ns 563479 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32077103ns 563482 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32077558ns 563490 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32077728ns 563493 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32078012ns 563498 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32078297ns 563503 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32078581ns 563508 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32079035ns 563516 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32079206ns 563519 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32079490ns 563524 1a110850 fd5ff06f jal x0, -44 +32079774ns 563529 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32080058ns 563534 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32080456ns 563541 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32080627ns 563544 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32081081ns 563552 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32081252ns 563555 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32081536ns 563560 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32081820ns 563565 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32082104ns 563570 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32082559ns 563578 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32082730ns 563581 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32083014ns 563586 1a110850 fd5ff06f jal x0, -44 +32083298ns 563591 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32083582ns 563596 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32083980ns 563603 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32084150ns 563606 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32084605ns 563614 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32084775ns 563617 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32085060ns 563622 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32085344ns 563627 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32085628ns 563632 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32086083ns 563640 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32086253ns 563643 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32086537ns 563648 1a110850 fd5ff06f jal x0, -44 +32086821ns 563653 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32087106ns 563658 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32087503ns 563665 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32087674ns 563668 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32088129ns 563676 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32088299ns 563679 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32088583ns 563684 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32088867ns 563689 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32089152ns 563694 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32089606ns 563702 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32089777ns 563705 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32090061ns 563710 1a110850 fd5ff06f jal x0, -44 +32090345ns 563715 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32090629ns 563720 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32091027ns 563727 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32091197ns 563730 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32091652ns 563738 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32091823ns 563741 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32092107ns 563746 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32092391ns 563751 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32092675ns 563756 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32093130ns 563764 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32093300ns 563767 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32093584ns 563772 1a110850 fd5ff06f jal x0, -44 +32093869ns 563777 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32094153ns 563782 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32094551ns 563789 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32094721ns 563792 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32095176ns 563800 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32095346ns 563803 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32095630ns 563808 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32095915ns 563813 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32096199ns 563818 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32096653ns 563826 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32096824ns 563829 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32097108ns 563834 1a110850 fd5ff06f jal x0, -44 +32097392ns 563839 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32097676ns 563844 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32098074ns 563851 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32098245ns 563854 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32098699ns 563862 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32098870ns 563865 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32099154ns 563870 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32099438ns 563875 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32099722ns 563880 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32100177ns 563888 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32100347ns 563891 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32100632ns 563896 1a110850 fd5ff06f jal x0, -44 +32100916ns 563901 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32101200ns 563906 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32101598ns 563913 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32101768ns 563916 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32102223ns 563924 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32102393ns 563927 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32102678ns 563932 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32102962ns 563937 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32103246ns 563942 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32103701ns 563950 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32103871ns 563953 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32104155ns 563958 1a110850 fd5ff06f jal x0, -44 +32104439ns 563963 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32104723ns 563968 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32105121ns 563975 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32105292ns 563978 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32105746ns 563986 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32105917ns 563989 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32106201ns 563994 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32106485ns 563999 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32106769ns 564004 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32107224ns 564012 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32107395ns 564015 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32107679ns 564020 1a110850 fd5ff06f jal x0, -44 +32107963ns 564025 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32108247ns 564030 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32108645ns 564037 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32108815ns 564040 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32109270ns 564048 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32109441ns 564051 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32109725ns 564056 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32110009ns 564061 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32110293ns 564066 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32110748ns 564074 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32110918ns 564077 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32111202ns 564082 1a110850 fd5ff06f jal x0, -44 +32111487ns 564087 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32111771ns 564092 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32112168ns 564099 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32112339ns 564102 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32112794ns 564110 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32112964ns 564113 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32113248ns 564118 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32113532ns 564123 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32113817ns 564128 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32114271ns 564136 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32114442ns 564139 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32114726ns 564144 1a110850 fd5ff06f jal x0, -44 +32115010ns 564149 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32115294ns 564154 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32115692ns 564161 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32115863ns 564164 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32116317ns 564172 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32116488ns 564175 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32116772ns 564180 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32117056ns 564185 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32117340ns 564190 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32117795ns 564198 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32117965ns 564201 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32118250ns 564206 1a110850 fd5ff06f jal x0, -44 +32118534ns 564211 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32118818ns 564216 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32119216ns 564223 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32119386ns 564226 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32119841ns 564234 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32120011ns 564237 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32120295ns 564242 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32120580ns 564247 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32120864ns 564252 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32121318ns 564260 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32121489ns 564263 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32121773ns 564268 1a110850 fd5ff06f jal x0, -44 +32122057ns 564273 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32122341ns 564278 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32122739ns 564285 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32122910ns 564288 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32123364ns 564296 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32123535ns 564299 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32123819ns 564304 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32124103ns 564309 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32124387ns 564314 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32124842ns 564322 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32125013ns 564325 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32125297ns 564330 1a110850 fd5ff06f jal x0, -44 +32125581ns 564335 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32125865ns 564340 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32126263ns 564347 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32126433ns 564350 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32126888ns 564358 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32127058ns 564361 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32127343ns 564366 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32127627ns 564371 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32127911ns 564376 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32128366ns 564384 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32128536ns 564387 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32128820ns 564392 1a110850 fd5ff06f jal x0, -44 +32129104ns 564397 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32129389ns 564402 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32129786ns 564409 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32129957ns 564412 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32130412ns 564420 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32130582ns 564423 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32130866ns 564428 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32131150ns 564433 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32131435ns 564438 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32131889ns 564446 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32132060ns 564449 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32132344ns 564454 1a110850 fd5ff06f jal x0, -44 +32132628ns 564459 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32132912ns 564464 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32133310ns 564471 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32133480ns 564474 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32133935ns 564482 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32134106ns 564485 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32134390ns 564490 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32134674ns 564495 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32134958ns 564500 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32135413ns 564508 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32135583ns 564511 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32135867ns 564516 1a110850 fd5ff06f jal x0, -44 +32136152ns 564521 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32136436ns 564526 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32136834ns 564533 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32137004ns 564536 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32137459ns 564544 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32137629ns 564547 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32137913ns 564552 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32138198ns 564557 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32138482ns 564562 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32138936ns 564570 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32139107ns 564573 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32139391ns 564578 1a110850 fd5ff06f jal x0, -44 +32139675ns 564583 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32139959ns 564588 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32140357ns 564595 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32140528ns 564598 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32140982ns 564606 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32141153ns 564609 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32141437ns 564614 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32141721ns 564619 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32142005ns 564624 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32142460ns 564632 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32142630ns 564635 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32142915ns 564640 1a110850 fd5ff06f jal x0, -44 +32143199ns 564645 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32143483ns 564650 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32143881ns 564657 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32144051ns 564660 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32144506ns 564668 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32144676ns 564671 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32144961ns 564676 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32145245ns 564681 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32145529ns 564686 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32145984ns 564694 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32146154ns 564697 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32146438ns 564702 1a110850 fd5ff06f jal x0, -44 +32146722ns 564707 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32147007ns 564712 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32147404ns 564719 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32147575ns 564722 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32148029ns 564730 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32148200ns 564733 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32148484ns 564738 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32148768ns 564743 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32149052ns 564748 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32149507ns 564756 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32149678ns 564759 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32149962ns 564764 1a110850 fd5ff06f jal x0, -44 +32150246ns 564769 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32150530ns 564774 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32150928ns 564781 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32151098ns 564784 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32151553ns 564792 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32151724ns 564795 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32152008ns 564800 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32152292ns 564805 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32152576ns 564810 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32153031ns 564818 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32153201ns 564821 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32153485ns 564826 1a110850 fd5ff06f jal x0, -44 +32153770ns 564831 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32154054ns 564836 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32154451ns 564843 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32154622ns 564846 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32155077ns 564854 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32155247ns 564857 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32155531ns 564862 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32155815ns 564867 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32156100ns 564872 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32156554ns 564880 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32156725ns 564883 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32157009ns 564888 1a110850 fd5ff06f jal x0, -44 +32157293ns 564893 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32157577ns 564898 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32157975ns 564905 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32158146ns 564908 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32158600ns 564916 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32158771ns 564919 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32159055ns 564924 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32159339ns 564929 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32159623ns 564934 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32160078ns 564942 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32160248ns 564945 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32160533ns 564950 1a110850 fd5ff06f jal x0, -44 +32160817ns 564955 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32161101ns 564960 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32161499ns 564967 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32161669ns 564970 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32162124ns 564978 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32162294ns 564981 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32162578ns 564986 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32162863ns 564991 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32163147ns 564996 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32163601ns 565004 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32163772ns 565007 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32164056ns 565012 1a110850 fd5ff06f jal x0, -44 +32164340ns 565017 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32164624ns 565022 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32165022ns 565029 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32165193ns 565032 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32165647ns 565040 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32165818ns 565043 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32166102ns 565048 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32166386ns 565053 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32166670ns 565058 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32167125ns 565066 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32167296ns 565069 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32167580ns 565074 1a110850 fd5ff06f jal x0, -44 +32167864ns 565079 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32168148ns 565084 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32168546ns 565091 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32168716ns 565094 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32169171ns 565102 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32169341ns 565105 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32169626ns 565110 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32169910ns 565115 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32170194ns 565120 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32170649ns 565128 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32170819ns 565131 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32171103ns 565136 1a110850 fd5ff06f jal x0, -44 +32171387ns 565141 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32171672ns 565146 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32172069ns 565153 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32172240ns 565156 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32172695ns 565164 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32172865ns 565167 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32173149ns 565172 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32173433ns 565177 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32173718ns 565182 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32174172ns 565190 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32174343ns 565193 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32174627ns 565198 1a110850 fd5ff06f jal x0, -44 +32174911ns 565203 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32175195ns 565208 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32175593ns 565215 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32175763ns 565218 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32176218ns 565226 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32176389ns 565229 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32176673ns 565234 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32176957ns 565239 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32177241ns 565244 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32177696ns 565252 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32177866ns 565255 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32178150ns 565260 1a110850 fd5ff06f jal x0, -44 +32178435ns 565265 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32178719ns 565270 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32179117ns 565277 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32179287ns 565280 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32179742ns 565288 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32179912ns 565291 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32180196ns 565296 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32180481ns 565301 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32180765ns 565306 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32181219ns 565314 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32181390ns 565317 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32181674ns 565322 1a110850 fd5ff06f jal x0, -44 +32181958ns 565327 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32182242ns 565332 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32182640ns 565339 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32182811ns 565342 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32183265ns 565350 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32183436ns 565353 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32183720ns 565358 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32184004ns 565363 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32184288ns 565368 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32184743ns 565376 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32184913ns 565379 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32185198ns 565384 1a110850 fd5ff06f jal x0, -44 +32185482ns 565389 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32185766ns 565394 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32186164ns 565401 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32186334ns 565404 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32186789ns 565412 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32186959ns 565415 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32187244ns 565420 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32187528ns 565425 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32187812ns 565430 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32188267ns 565438 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32188437ns 565441 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32188721ns 565446 1a110850 fd5ff06f jal x0, -44 +32189005ns 565451 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32189290ns 565456 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32189687ns 565463 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32189858ns 565466 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32190312ns 565474 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32190483ns 565477 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32190767ns 565482 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32191051ns 565487 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32191335ns 565492 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32191790ns 565500 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32191961ns 565503 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32192245ns 565508 1a110850 fd5ff06f jal x0, -44 +32192529ns 565513 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32192813ns 565518 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32193211ns 565525 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32193381ns 565528 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32193836ns 565536 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32194007ns 565539 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32194291ns 565544 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32194575ns 565549 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32194859ns 565554 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32195314ns 565562 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32195484ns 565565 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32195768ns 565570 1a110850 fd5ff06f jal x0, -44 +32196053ns 565575 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32196337ns 565580 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32196735ns 565587 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32196905ns 565590 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32197360ns 565598 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32197530ns 565601 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32197814ns 565606 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32198098ns 565611 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32198383ns 565616 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32198837ns 565624 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32199008ns 565627 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32199292ns 565632 1a110850 fd5ff06f jal x0, -44 +32199576ns 565637 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32199860ns 565642 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32200258ns 565649 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32200429ns 565652 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32200883ns 565660 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32201054ns 565663 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32201338ns 565668 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32201622ns 565673 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32201906ns 565678 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32202361ns 565686 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32202531ns 565689 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32202816ns 565694 1a110850 fd5ff06f jal x0, -44 +32203100ns 565699 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32203384ns 565704 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32203782ns 565711 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32203952ns 565714 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32204407ns 565722 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32204577ns 565725 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32204861ns 565730 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32205146ns 565735 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32205430ns 565740 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32205884ns 565748 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32206055ns 565751 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32206339ns 565756 1a110850 fd5ff06f jal x0, -44 +32206623ns 565761 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32206907ns 565766 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32207305ns 565773 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32207476ns 565776 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32207930ns 565784 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32208101ns 565787 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32208385ns 565792 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32208669ns 565797 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32208953ns 565802 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32209408ns 565810 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32209579ns 565813 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32209863ns 565818 1a110850 fd5ff06f jal x0, -44 +32210147ns 565823 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32210431ns 565828 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32210829ns 565835 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32210999ns 565838 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32211454ns 565846 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32211624ns 565849 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32211909ns 565854 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32212193ns 565859 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32212477ns 565864 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32212932ns 565872 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32213102ns 565875 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32213386ns 565880 1a110850 fd5ff06f jal x0, -44 +32213670ns 565885 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32213955ns 565890 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32214352ns 565897 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32214523ns 565900 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32214978ns 565908 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32215148ns 565911 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32215432ns 565916 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32215716ns 565921 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32216001ns 565926 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32216455ns 565934 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32216626ns 565937 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32216910ns 565942 1a110850 fd5ff06f jal x0, -44 +32217194ns 565947 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32217478ns 565952 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32217876ns 565959 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32218047ns 565962 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32218501ns 565970 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32218672ns 565973 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32218956ns 565978 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32219240ns 565983 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32219524ns 565988 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32219979ns 565996 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32220149ns 565999 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32220433ns 566004 1a110850 fd5ff06f jal x0, -44 +32220718ns 566009 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32221002ns 566014 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32221400ns 566021 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32221570ns 566024 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32222025ns 566032 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32222195ns 566035 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32222479ns 566040 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32222764ns 566045 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32223048ns 566050 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32223502ns 566058 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32223673ns 566061 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32223957ns 566066 1a110850 fd5ff06f jal x0, -44 +32224241ns 566071 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32224525ns 566076 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32224923ns 566083 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32225094ns 566086 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32225548ns 566094 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32225719ns 566097 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32226003ns 566102 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32226287ns 566107 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32226571ns 566112 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32227026ns 566120 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32227196ns 566123 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32227481ns 566128 1a110850 fd5ff06f jal x0, -44 +32227765ns 566133 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32228049ns 566138 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32228447ns 566145 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32228617ns 566148 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32229072ns 566156 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32229242ns 566159 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32229527ns 566164 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32229811ns 566169 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32230095ns 566174 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32230550ns 566182 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32230720ns 566185 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32231004ns 566190 1a110850 fd5ff06f jal x0, -44 +32231288ns 566195 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32231573ns 566200 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32231970ns 566207 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32232141ns 566210 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32232595ns 566218 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32232766ns 566221 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32233050ns 566226 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32233334ns 566231 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32233618ns 566236 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32234073ns 566244 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32234244ns 566247 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32234528ns 566252 1a110850 fd5ff06f jal x0, -44 +32234812ns 566257 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32235096ns 566262 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32235494ns 566269 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32235664ns 566272 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32236119ns 566280 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32236290ns 566283 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32236574ns 566288 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32236858ns 566293 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32237142ns 566298 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32237597ns 566306 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32237767ns 566309 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32238051ns 566314 1a110850 fd5ff06f jal x0, -44 +32238336ns 566319 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32238620ns 566324 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32239018ns 566331 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32239188ns 566334 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32239643ns 566342 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32239813ns 566345 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32240097ns 566350 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32240381ns 566355 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32240666ns 566360 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32241120ns 566368 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32241291ns 566371 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32241575ns 566376 1a110850 fd5ff06f jal x0, -44 +32241859ns 566381 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32242143ns 566386 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32242541ns 566393 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32242712ns 566396 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32243166ns 566404 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32243337ns 566407 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32243621ns 566412 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32243905ns 566417 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32244189ns 566422 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32244644ns 566430 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32244814ns 566433 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32245099ns 566438 1a110850 fd5ff06f jal x0, -44 +32245383ns 566443 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32245667ns 566448 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32246065ns 566455 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32246235ns 566458 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32246690ns 566466 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32246860ns 566469 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32247144ns 566474 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32247429ns 566479 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32247713ns 566484 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32248167ns 566492 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32248338ns 566495 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32248622ns 566500 1a110850 fd5ff06f jal x0, -44 +32248906ns 566505 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32249190ns 566510 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32249588ns 566517 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32249759ns 566520 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32250213ns 566528 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32250384ns 566531 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32250668ns 566536 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32250952ns 566541 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32251236ns 566546 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32251691ns 566554 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32251862ns 566557 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32252146ns 566562 1a110850 fd5ff06f jal x0, -44 +32252430ns 566567 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32252714ns 566572 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32253112ns 566579 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32253282ns 566582 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32253737ns 566590 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32253907ns 566593 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32254192ns 566598 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32254476ns 566603 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32254760ns 566608 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32255215ns 566616 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32255385ns 566619 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32255669ns 566624 1a110850 fd5ff06f jal x0, -44 +32255953ns 566629 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32256238ns 566634 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32256635ns 566641 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32256806ns 566644 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32257261ns 566652 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32257431ns 566655 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32257715ns 566660 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32257999ns 566665 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32258284ns 566670 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32258738ns 566678 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32258909ns 566681 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32259193ns 566686 1a110850 fd5ff06f jal x0, -44 +32259477ns 566691 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32259761ns 566696 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32260159ns 566703 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32260330ns 566706 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32260784ns 566714 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32260955ns 566717 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32261239ns 566722 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32261523ns 566727 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32261807ns 566732 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32262262ns 566740 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32262432ns 566743 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32262716ns 566748 1a110850 fd5ff06f jal x0, -44 +32263001ns 566753 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32263285ns 566758 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32263683ns 566765 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32263853ns 566768 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32264308ns 566776 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32264478ns 566779 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32264762ns 566784 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32265047ns 566789 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32265331ns 566794 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32265785ns 566802 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32265956ns 566805 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32266240ns 566810 1a110850 fd5ff06f jal x0, -44 +32266524ns 566815 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32266808ns 566820 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32267206ns 566827 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32267377ns 566830 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32267831ns 566838 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32268002ns 566841 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32268286ns 566846 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32268570ns 566851 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32268854ns 566856 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32269309ns 566864 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32269479ns 566867 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32269764ns 566872 1a110850 fd5ff06f jal x0, -44 +32270048ns 566877 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32270332ns 566882 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32270730ns 566889 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32270900ns 566892 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32271355ns 566900 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32271525ns 566903 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32271810ns 566908 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32272094ns 566913 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32272378ns 566918 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32272833ns 566926 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32273003ns 566929 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32273287ns 566934 1a110850 fd5ff06f jal x0, -44 +32273571ns 566939 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32273856ns 566944 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32274253ns 566951 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32274424ns 566954 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32274879ns 566962 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32275049ns 566965 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32275333ns 566970 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32275617ns 566975 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32275901ns 566980 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32276356ns 566988 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32276527ns 566991 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32276811ns 566996 1a110850 fd5ff06f jal x0, -44 +32277095ns 567001 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32277379ns 567006 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32277777ns 567013 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32277947ns 567016 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32278402ns 567024 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32278573ns 567027 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32278857ns 567032 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32279141ns 567037 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32279425ns 567042 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32279880ns 567050 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32280050ns 567053 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32280334ns 567058 1a110850 fd5ff06f jal x0, -44 +32280619ns 567063 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32280903ns 567068 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32281301ns 567075 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32281471ns 567078 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32281926ns 567086 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32282096ns 567089 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32282380ns 567094 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32282664ns 567099 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32282949ns 567104 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32283403ns 567112 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32283574ns 567115 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32283858ns 567120 1a110850 fd5ff06f jal x0, -44 +32284142ns 567125 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32284426ns 567130 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32284824ns 567137 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32284995ns 567140 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32285449ns 567148 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32285620ns 567151 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32285904ns 567156 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32286188ns 567161 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32286472ns 567166 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32286927ns 567174 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32287097ns 567177 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32287382ns 567182 1a110850 fd5ff06f jal x0, -44 +32287666ns 567187 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32287950ns 567192 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32288348ns 567199 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32288518ns 567202 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32288973ns 567210 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32289143ns 567213 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32289427ns 567218 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32289712ns 567223 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32289996ns 567228 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32290450ns 567236 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32290621ns 567239 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32290905ns 567244 1a110850 fd5ff06f jal x0, -44 +32291189ns 567249 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32291473ns 567254 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32291871ns 567261 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32292042ns 567264 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32292496ns 567272 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32292667ns 567275 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32292951ns 567280 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32293235ns 567285 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32293519ns 567290 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32293974ns 567298 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32294145ns 567301 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32294429ns 567306 1a110850 fd5ff06f jal x0, -44 +32294713ns 567311 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32294997ns 567316 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32295395ns 567323 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32295565ns 567326 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32296020ns 567334 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32296191ns 567337 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32296475ns 567342 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32296759ns 567347 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32297043ns 567352 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32297498ns 567360 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32297668ns 567363 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32297952ns 567368 1a110850 fd5ff06f jal x0, -44 +32298236ns 567373 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32298521ns 567378 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32298918ns 567385 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32299089ns 567388 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32299544ns 567396 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32299714ns 567399 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32299998ns 567404 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32300282ns 567409 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32300567ns 567414 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32301021ns 567422 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32301192ns 567425 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32301476ns 567430 1a110850 fd5ff06f jal x0, -44 +32301760ns 567435 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32302044ns 567440 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32302442ns 567447 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32302613ns 567450 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32303067ns 567458 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32303238ns 567461 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32303522ns 567466 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32303806ns 567471 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32304090ns 567476 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32304545ns 567484 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32304715ns 567487 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32304999ns 567492 1a110850 fd5ff06f jal x0, -44 +32305284ns 567497 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32305568ns 567502 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32305966ns 567509 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32306136ns 567512 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32306591ns 567520 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32306761ns 567523 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32307045ns 567528 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32307330ns 567533 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32307614ns 567538 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32308068ns 567546 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32308239ns 567549 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32308523ns 567554 1a110850 fd5ff06f jal x0, -44 +32308807ns 567559 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32309091ns 567564 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32309489ns 567571 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32309660ns 567574 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32310114ns 567582 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32310285ns 567585 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32310569ns 567590 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32310853ns 567595 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32311137ns 567600 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32311592ns 567608 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32311762ns 567611 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32312047ns 567616 1a110850 fd5ff06f jal x0, -44 +32312331ns 567621 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32312615ns 567626 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32313013ns 567633 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32313183ns 567636 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32313638ns 567644 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32313808ns 567647 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32314093ns 567652 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32314377ns 567657 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32314661ns 567662 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32315116ns 567670 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32315286ns 567673 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32315570ns 567678 1a110850 fd5ff06f jal x0, -44 +32315854ns 567683 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32316139ns 567688 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32316536ns 567695 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32316707ns 567698 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32317162ns 567706 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32317332ns 567709 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32317616ns 567714 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32317900ns 567719 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32318184ns 567724 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32318639ns 567732 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32318810ns 567735 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32319094ns 567740 1a110850 fd5ff06f jal x0, -44 +32319378ns 567745 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32319662ns 567750 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32320060ns 567757 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32320230ns 567760 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32320685ns 567768 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32320856ns 567771 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32321140ns 567776 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32321424ns 567781 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32321708ns 567786 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32322163ns 567794 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32322333ns 567797 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32322617ns 567802 1a110850 fd5ff06f jal x0, -44 +32322902ns 567807 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32323186ns 567812 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32323584ns 567819 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32323754ns 567822 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32324209ns 567830 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32324379ns 567833 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32324663ns 567838 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32324947ns 567843 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32325232ns 567848 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32325686ns 567856 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32325857ns 567859 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32326141ns 567864 1a110850 fd5ff06f jal x0, -44 +32326425ns 567869 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32326709ns 567874 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32327107ns 567881 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32327278ns 567884 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32327732ns 567892 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32327903ns 567895 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32328187ns 567900 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32328471ns 567905 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32328755ns 567910 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32329210ns 567918 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32329380ns 567921 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32329665ns 567926 1a110850 fd5ff06f jal x0, -44 +32329949ns 567931 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32330233ns 567936 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32330631ns 567943 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32330801ns 567946 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32331256ns 567954 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32331426ns 567957 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32331711ns 567962 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32331995ns 567967 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32332279ns 567972 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32332733ns 567980 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32332904ns 567983 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32333188ns 567988 1a110850 fd5ff06f jal x0, -44 +32333472ns 567993 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32333756ns 567998 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32334154ns 568005 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32334325ns 568008 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32334779ns 568016 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32334950ns 568019 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32335234ns 568024 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32335518ns 568029 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32335802ns 568034 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32336257ns 568042 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32336428ns 568045 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32336712ns 568050 1a110850 fd5ff06f jal x0, -44 +32336996ns 568055 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32337280ns 568060 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32337678ns 568067 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32337848ns 568070 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32338303ns 568078 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32338474ns 568081 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32338758ns 568086 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32339042ns 568091 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32339326ns 568096 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32339781ns 568104 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32339951ns 568107 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32340235ns 568112 1a110850 fd5ff06f jal x0, -44 +32340519ns 568117 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32340804ns 568122 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32341201ns 568129 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32341372ns 568132 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32341827ns 568140 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32341997ns 568143 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32342281ns 568148 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32342565ns 568153 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32342850ns 568158 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32343304ns 568166 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32343475ns 568169 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32343759ns 568174 1a110850 fd5ff06f jal x0, -44 +32344043ns 568179 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32344327ns 568184 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32344725ns 568191 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32344896ns 568194 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32345350ns 568202 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32345521ns 568205 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32345805ns 568210 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32346089ns 568215 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32346373ns 568220 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32346828ns 568228 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32346998ns 568231 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32347282ns 568236 1a110850 fd5ff06f jal x0, -44 +32347567ns 568241 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32347851ns 568246 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32348249ns 568253 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32348419ns 568256 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32348874ns 568264 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32349044ns 568267 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32349328ns 568272 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32349613ns 568277 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32349897ns 568282 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32350351ns 568290 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32350522ns 568293 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32350806ns 568298 1a110850 fd5ff06f jal x0, -44 +32351090ns 568303 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32351374ns 568308 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32351772ns 568315 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32351943ns 568318 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32352397ns 568326 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32352568ns 568329 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32352852ns 568334 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32353136ns 568339 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32353420ns 568344 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32353875ns 568352 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32354045ns 568355 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32354330ns 568360 1a110850 fd5ff06f jal x0, -44 +32354614ns 568365 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32354898ns 568370 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32355296ns 568377 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32355466ns 568380 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32355921ns 568388 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32356091ns 568391 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32356376ns 568396 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32356660ns 568401 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32356944ns 568406 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32357399ns 568414 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32357569ns 568417 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32357853ns 568422 1a110850 fd5ff06f jal x0, -44 +32358137ns 568427 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32358422ns 568432 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32358819ns 568439 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32358990ns 568442 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32359445ns 568450 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32359615ns 568453 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32359899ns 568458 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32360183ns 568463 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32360467ns 568468 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32360922ns 568476 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32361093ns 568479 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32361377ns 568484 1a110850 fd5ff06f jal x0, -44 +32361661ns 568489 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32361945ns 568494 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32362343ns 568501 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32362513ns 568504 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32362968ns 568512 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32363139ns 568515 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32363423ns 568520 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32363707ns 568525 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32363991ns 568530 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32364446ns 568538 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32364616ns 568541 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32364900ns 568546 1a110850 fd5ff06f jal x0, -44 +32365185ns 568551 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32365469ns 568556 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32365867ns 568563 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32366037ns 568566 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32366492ns 568574 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32366662ns 568577 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32366946ns 568582 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32367231ns 568587 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32367515ns 568592 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32367969ns 568600 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32368140ns 568603 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32368424ns 568608 1a110850 fd5ff06f jal x0, -44 +32368708ns 568613 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32368992ns 568618 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32369390ns 568625 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32369561ns 568628 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32370015ns 568636 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32370186ns 568639 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32370470ns 568644 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32370754ns 568649 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32371038ns 568654 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32371493ns 568662 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32371663ns 568665 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32371948ns 568670 1a110850 fd5ff06f jal x0, -44 +32372232ns 568675 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32372516ns 568680 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32372914ns 568687 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32373084ns 568690 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32373539ns 568698 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32373709ns 568701 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32373994ns 568706 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32374278ns 568711 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32374562ns 568716 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32375016ns 568724 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32375187ns 568727 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32375471ns 568732 1a110850 fd5ff06f jal x0, -44 +32375755ns 568737 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32376039ns 568742 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32376437ns 568749 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32376608ns 568752 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32377062ns 568760 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32377233ns 568763 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32377517ns 568768 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32377801ns 568773 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32378085ns 568778 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32378540ns 568786 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32378711ns 568789 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32378995ns 568794 1a110850 fd5ff06f jal x0, -44 +32379279ns 568799 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32379563ns 568804 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32379961ns 568811 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32380131ns 568814 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32380586ns 568822 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32380757ns 568825 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32381041ns 568830 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32381325ns 568835 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32381609ns 568840 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32382064ns 568848 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32382234ns 568851 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32382518ns 568856 1a110850 fd5ff06f jal x0, -44 +32382802ns 568861 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32383087ns 568866 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32383484ns 568873 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32383655ns 568876 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32384110ns 568884 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32384280ns 568887 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32384564ns 568892 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32384848ns 568897 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32385133ns 568902 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32385587ns 568910 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32385758ns 568913 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32386042ns 568918 1a110850 fd5ff06f jal x0, -44 +32386326ns 568923 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32386610ns 568928 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32387008ns 568935 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32387179ns 568938 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32387633ns 568946 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32387804ns 568949 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32388088ns 568954 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32388372ns 568959 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32388656ns 568964 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32389111ns 568972 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32389281ns 568975 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32389565ns 568980 1a110850 fd5ff06f jal x0, -44 +32389850ns 568985 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32390134ns 568990 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32390532ns 568997 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32390702ns 569000 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32391157ns 569008 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32391327ns 569011 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32391611ns 569016 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32391896ns 569021 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32392180ns 569026 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32392634ns 569034 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32392805ns 569037 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32393089ns 569042 1a110850 fd5ff06f jal x0, -44 +32393373ns 569047 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32393657ns 569052 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32394055ns 569059 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32394226ns 569062 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32394680ns 569070 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32394851ns 569073 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32395135ns 569078 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32395419ns 569083 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32395703ns 569088 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32396158ns 569096 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32396328ns 569099 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32396613ns 569104 1a110850 fd5ff06f jal x0, -44 +32396897ns 569109 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32397181ns 569114 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32397579ns 569121 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32397749ns 569124 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32398204ns 569132 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32398374ns 569135 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32398659ns 569140 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32398943ns 569145 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32399227ns 569150 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32399682ns 569158 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32399852ns 569161 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32400136ns 569166 1a110850 fd5ff06f jal x0, -44 +32400420ns 569171 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32400705ns 569176 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32401102ns 569183 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32401273ns 569186 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32401728ns 569194 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32401898ns 569197 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32402182ns 569202 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32402466ns 569207 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32402751ns 569212 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32403205ns 569220 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32403376ns 569223 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32403660ns 569228 1a110850 fd5ff06f jal x0, -44 +32403944ns 569233 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32404228ns 569238 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32404626ns 569245 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32404796ns 569248 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32405251ns 569256 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32405422ns 569259 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32405706ns 569264 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32405990ns 569269 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32406274ns 569274 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32406729ns 569282 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32406899ns 569285 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32407183ns 569290 1a110850 fd5ff06f jal x0, -44 +32407468ns 569295 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32407752ns 569300 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32408150ns 569307 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32408320ns 569310 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32408775ns 569318 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32408945ns 569321 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32409229ns 569326 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32409514ns 569331 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32409798ns 569336 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32410252ns 569344 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32410423ns 569347 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32410707ns 569352 1a110850 fd5ff06f jal x0, -44 +32410991ns 569357 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32411275ns 569362 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32411673ns 569369 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32411844ns 569372 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32412298ns 569380 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32412469ns 569383 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32412753ns 569388 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32413037ns 569393 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32413321ns 569398 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32413776ns 569406 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32413946ns 569409 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32414231ns 569414 1a110850 fd5ff06f jal x0, -44 +32414515ns 569419 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32414799ns 569424 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32415197ns 569431 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32415367ns 569434 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32415822ns 569442 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32415992ns 569445 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32416277ns 569450 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32416561ns 569455 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32416845ns 569460 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32417299ns 569468 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32417470ns 569471 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32417754ns 569476 1a110850 fd5ff06f jal x0, -44 +32418038ns 569481 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32418322ns 569486 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32418720ns 569493 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32418891ns 569496 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32419345ns 569504 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32419516ns 569507 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32419800ns 569512 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32420084ns 569517 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32420368ns 569522 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32420823ns 569530 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32420994ns 569533 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32421278ns 569538 1a110850 fd5ff06f jal x0, -44 +32421562ns 569543 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32421846ns 569548 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32422244ns 569555 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32422414ns 569558 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32422869ns 569566 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32423040ns 569569 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32423324ns 569574 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32423608ns 569579 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32423892ns 569584 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32424347ns 569592 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32424517ns 569595 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32424801ns 569600 1a110850 fd5ff06f jal x0, -44 +32425085ns 569605 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32425370ns 569610 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32425767ns 569617 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32425938ns 569620 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32426393ns 569628 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32426563ns 569631 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32426847ns 569636 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32427131ns 569641 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32427416ns 569646 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32427870ns 569654 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32428041ns 569657 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32428325ns 569662 1a110850 fd5ff06f jal x0, -44 +32428609ns 569667 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32428893ns 569672 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32429291ns 569679 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32429462ns 569682 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32429916ns 569690 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32430087ns 569693 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32430371ns 569698 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32430655ns 569703 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32430939ns 569708 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32431394ns 569716 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32431564ns 569719 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32431848ns 569724 1a110850 fd5ff06f jal x0, -44 +32432133ns 569729 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32432417ns 569734 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32432815ns 569741 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32432985ns 569744 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32433440ns 569752 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32433610ns 569755 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32433894ns 569760 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32434179ns 569765 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32434463ns 569770 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32434917ns 569778 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32435088ns 569781 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32435372ns 569786 1a110850 fd5ff06f jal x0, -44 +32435656ns 569791 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32435940ns 569796 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32436338ns 569803 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32436509ns 569806 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32436963ns 569814 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32437134ns 569817 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32437418ns 569822 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32437702ns 569827 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32437986ns 569832 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32438441ns 569840 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32438611ns 569843 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32438896ns 569848 1a110850 fd5ff06f jal x0, -44 +32439180ns 569853 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32439464ns 569858 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32439862ns 569865 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32440032ns 569868 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32440487ns 569876 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32440657ns 569879 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32440942ns 569884 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32441226ns 569889 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32441510ns 569894 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32441965ns 569902 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32442135ns 569905 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32442419ns 569910 1a110850 fd5ff06f jal x0, -44 +32442703ns 569915 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32442988ns 569920 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32443385ns 569927 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32443556ns 569930 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32444011ns 569938 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32444181ns 569941 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32444465ns 569946 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32444749ns 569951 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32445034ns 569956 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32445488ns 569964 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32445659ns 569967 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32445943ns 569972 1a110850 fd5ff06f jal x0, -44 +32446227ns 569977 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32446511ns 569982 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32446909ns 569989 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32447079ns 569992 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32447534ns 570000 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32447705ns 570003 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32447989ns 570008 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32448273ns 570013 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32448557ns 570018 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32449012ns 570026 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32449182ns 570029 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32449466ns 570034 1a110850 fd5ff06f jal x0, -44 +32449751ns 570039 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32450035ns 570044 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32450433ns 570051 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32450603ns 570054 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32451058ns 570062 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32451228ns 570065 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32451512ns 570070 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32451797ns 570075 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32452081ns 570080 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32452535ns 570088 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32452706ns 570091 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32452990ns 570096 1a110850 fd5ff06f jal x0, -44 +32453274ns 570101 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32453558ns 570106 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32453956ns 570113 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32454127ns 570116 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32454581ns 570124 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32454752ns 570127 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32455036ns 570132 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32455320ns 570137 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32455604ns 570142 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32456059ns 570150 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32456229ns 570153 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32456514ns 570158 1a110850 fd5ff06f jal x0, -44 +32456798ns 570163 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32457082ns 570168 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32457480ns 570175 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32457650ns 570178 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32458105ns 570186 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32458275ns 570189 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32458560ns 570194 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32458844ns 570199 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32459128ns 570204 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32459583ns 570212 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32459753ns 570215 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32460037ns 570220 1a110850 fd5ff06f jal x0, -44 +32460321ns 570225 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32460605ns 570230 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32461003ns 570237 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32461174ns 570240 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32461628ns 570248 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32461799ns 570251 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32462083ns 570256 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32462367ns 570261 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32462651ns 570266 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32463106ns 570274 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32463277ns 570277 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32463561ns 570282 1a110850 fd5ff06f jal x0, -44 +32463845ns 570287 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32464129ns 570292 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32464527ns 570299 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32464697ns 570302 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32465152ns 570310 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32465323ns 570313 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32465607ns 570318 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32465891ns 570323 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32466175ns 570328 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32466630ns 570336 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32466800ns 570339 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32467084ns 570344 1a110850 fd5ff06f jal x0, -44 +32467368ns 570349 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32467653ns 570354 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32468050ns 570361 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32468221ns 570364 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32468676ns 570372 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32468846ns 570375 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32469130ns 570380 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32469414ns 570385 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32469699ns 570390 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32470153ns 570398 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32470324ns 570401 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32470608ns 570406 1a110850 fd5ff06f jal x0, -44 +32470892ns 570411 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32471176ns 570416 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32471574ns 570423 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32471745ns 570426 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32472199ns 570434 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32472370ns 570437 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32472654ns 570442 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32472938ns 570447 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32473222ns 570452 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32473677ns 570460 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32473847ns 570463 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32474131ns 570468 1a110850 fd5ff06f jal x0, -44 +32474416ns 570473 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32474700ns 570478 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32475098ns 570485 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32475268ns 570488 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32475723ns 570496 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32475893ns 570499 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32476177ns 570504 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32476462ns 570509 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32476746ns 570514 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32477200ns 570522 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32477371ns 570525 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32477655ns 570530 1a110850 fd5ff06f jal x0, -44 +32477939ns 570535 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32478223ns 570540 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32478621ns 570547 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32478792ns 570550 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32479246ns 570558 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32479417ns 570561 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32479701ns 570566 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32479985ns 570571 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32480269ns 570576 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32480724ns 570584 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32480895ns 570587 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32481179ns 570592 1a110850 fd5ff06f jal x0, -44 +32481463ns 570597 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32481747ns 570602 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32482145ns 570609 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32482315ns 570612 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32482770ns 570620 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32482940ns 570623 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32483225ns 570628 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32483509ns 570633 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32483793ns 570638 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32484248ns 570646 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32484418ns 570649 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32484702ns 570654 1a110850 fd5ff06f jal x0, -44 +32484986ns 570659 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32485271ns 570664 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32485668ns 570671 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32485839ns 570674 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32486294ns 570682 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32486464ns 570685 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32486748ns 570690 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32487032ns 570695 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32487317ns 570700 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32487771ns 570708 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32487942ns 570711 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32488226ns 570716 1a110850 fd5ff06f jal x0, -44 +32488510ns 570721 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32488794ns 570726 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32489192ns 570733 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32489362ns 570736 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32489817ns 570744 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32489988ns 570747 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32490272ns 570752 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32490556ns 570757 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32490840ns 570762 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32491295ns 570770 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32491465ns 570773 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32491749ns 570778 1a110850 fd5ff06f jal x0, -44 +32492034ns 570783 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32492318ns 570788 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32492716ns 570795 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32492886ns 570798 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32493341ns 570806 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32493511ns 570809 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32493795ns 570814 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32494080ns 570819 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32494364ns 570824 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32494818ns 570832 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32494989ns 570835 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32495273ns 570840 1a110850 fd5ff06f jal x0, -44 +32495557ns 570845 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32495841ns 570850 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32496239ns 570857 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32496410ns 570860 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32496864ns 570868 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32497035ns 570871 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32497319ns 570876 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32497603ns 570881 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32497887ns 570886 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32498342ns 570894 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32498512ns 570897 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32498797ns 570902 1a110850 fd5ff06f jal x0, -44 +32499081ns 570907 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32499365ns 570912 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32499763ns 570919 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32499933ns 570922 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32500388ns 570930 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32500558ns 570933 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32500843ns 570938 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32501127ns 570943 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32501411ns 570948 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32501866ns 570956 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32502036ns 570959 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32502320ns 570964 1a110850 fd5ff06f jal x0, -44 +32502604ns 570969 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32502888ns 570974 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32503286ns 570981 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32503457ns 570984 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32503911ns 570992 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32504082ns 570995 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32504366ns 571000 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32504650ns 571005 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32504934ns 571010 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32505389ns 571018 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32505560ns 571021 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32505844ns 571026 1a110850 fd5ff06f jal x0, -44 +32506128ns 571031 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32506412ns 571036 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32506810ns 571043 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32506980ns 571046 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32507435ns 571054 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32507606ns 571057 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32507890ns 571062 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32508174ns 571067 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32508458ns 571072 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32508913ns 571080 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32509083ns 571083 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32509367ns 571088 1a110850 fd5ff06f jal x0, -44 +32509651ns 571093 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32509936ns 571098 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32510333ns 571105 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32510504ns 571108 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32510959ns 571116 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32511129ns 571119 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32511413ns 571124 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32511697ns 571129 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32511982ns 571134 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32512436ns 571142 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32512607ns 571145 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32512891ns 571150 1a110850 fd5ff06f jal x0, -44 +32513175ns 571155 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32513459ns 571160 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32513857ns 571167 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32514028ns 571170 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32514482ns 571178 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32514653ns 571181 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32514937ns 571186 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32515221ns 571191 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32515505ns 571196 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32515960ns 571204 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32516130ns 571207 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32516415ns 571212 1a110850 fd5ff06f jal x0, -44 +32516699ns 571217 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32516983ns 571222 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32517381ns 571229 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32517551ns 571232 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32518006ns 571240 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32518176ns 571243 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32518460ns 571248 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32518745ns 571253 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32519029ns 571258 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32519483ns 571266 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32519654ns 571269 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32519938ns 571274 1a110850 fd5ff06f jal x0, -44 +32520222ns 571279 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32520506ns 571284 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32520904ns 571291 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32521075ns 571294 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32521529ns 571302 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32521700ns 571305 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32521984ns 571310 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32522268ns 571315 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32522552ns 571320 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32523007ns 571328 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32523178ns 571331 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32523462ns 571336 1a110850 fd5ff06f jal x0, -44 +32523746ns 571341 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32524030ns 571346 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32524428ns 571353 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32524598ns 571356 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32525053ns 571364 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32525223ns 571367 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32525508ns 571372 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32525792ns 571377 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32526076ns 571382 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32526531ns 571390 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32526701ns 571393 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32526985ns 571398 1a110850 fd5ff06f jal x0, -44 +32527269ns 571403 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32527554ns 571408 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32527951ns 571415 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32528122ns 571418 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32528577ns 571426 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32528747ns 571429 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32529031ns 571434 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32529315ns 571439 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32529600ns 571444 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32530054ns 571452 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32530225ns 571455 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32530509ns 571460 1a110850 fd5ff06f jal x0, -44 +32530793ns 571465 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32531077ns 571470 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32531475ns 571477 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32531645ns 571480 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32532100ns 571488 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32532271ns 571491 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32532555ns 571496 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32532839ns 571501 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32533123ns 571506 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32533578ns 571514 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32533748ns 571517 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32534032ns 571522 1a110850 fd5ff06f jal x0, -44 +32534317ns 571527 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32534601ns 571532 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32534999ns 571539 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32535169ns 571542 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32535624ns 571550 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32535794ns 571553 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32536078ns 571558 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32536363ns 571563 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32536647ns 571568 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32537101ns 571576 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32537272ns 571579 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32537556ns 571584 1a110850 fd5ff06f jal x0, -44 +32537840ns 571589 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32538124ns 571594 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32538522ns 571601 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32538693ns 571604 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32539147ns 571612 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32539318ns 571615 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32539602ns 571620 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32539886ns 571625 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32540170ns 571630 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32540625ns 571638 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32540795ns 571641 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32541080ns 571646 1a110850 fd5ff06f jal x0, -44 +32541364ns 571651 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32541648ns 571656 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32542046ns 571663 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32542216ns 571666 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32542671ns 571674 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32542841ns 571677 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32543126ns 571682 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32543410ns 571687 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32543694ns 571692 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32544149ns 571700 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32544319ns 571703 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32544603ns 571708 1a110850 fd5ff06f jal x0, -44 +32544887ns 571713 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32545171ns 571718 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32545569ns 571725 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32545740ns 571728 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32546194ns 571736 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32546365ns 571739 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32546649ns 571744 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32546933ns 571749 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32547217ns 571754 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32547672ns 571762 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32547843ns 571765 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32548127ns 571770 1a110850 fd5ff06f jal x0, -44 +32548411ns 571775 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32548695ns 571780 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32549093ns 571787 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32549263ns 571790 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32549718ns 571798 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32549889ns 571801 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32550173ns 571806 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32550457ns 571811 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32550741ns 571816 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32551196ns 571824 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32551366ns 571827 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32551650ns 571832 1a110850 fd5ff06f jal x0, -44 +32551935ns 571837 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32552219ns 571842 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32552616ns 571849 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32552787ns 571852 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32553242ns 571860 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32553412ns 571863 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32553696ns 571868 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32553980ns 571873 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32554265ns 571878 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32554719ns 571886 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32554890ns 571889 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32555174ns 571894 1a110850 fd5ff06f jal x0, -44 +32555458ns 571899 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32555742ns 571904 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32556140ns 571911 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32556311ns 571914 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32556765ns 571922 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32556936ns 571925 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32557220ns 571930 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32557504ns 571935 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32557788ns 571940 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32558243ns 571948 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32558413ns 571951 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32558698ns 571956 1a110850 fd5ff06f jal x0, -44 +32558982ns 571961 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32559266ns 571966 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32559664ns 571973 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32559834ns 571976 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32560289ns 571984 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32560459ns 571987 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32560743ns 571992 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32561028ns 571997 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32561312ns 572002 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32561766ns 572010 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32561937ns 572013 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32562221ns 572018 1a110850 fd5ff06f jal x0, -44 +32562505ns 572023 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32562789ns 572028 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32563187ns 572035 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32563358ns 572038 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32563812ns 572046 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32563983ns 572049 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32564267ns 572054 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32564551ns 572059 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32564835ns 572064 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32565290ns 572072 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32565461ns 572075 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32565745ns 572080 1a110850 fd5ff06f jal x0, -44 +32566029ns 572085 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32566313ns 572090 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32566711ns 572097 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32566881ns 572100 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32567336ns 572108 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32567506ns 572111 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32567791ns 572116 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32568075ns 572121 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32568359ns 572126 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32568814ns 572134 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32568984ns 572137 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32569268ns 572142 1a110850 fd5ff06f jal x0, -44 +32569552ns 572147 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32569837ns 572152 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32570234ns 572159 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32570405ns 572162 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32570860ns 572170 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32571030ns 572173 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32571314ns 572178 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32571598ns 572183 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32571883ns 572188 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32572337ns 572196 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32572508ns 572199 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32572792ns 572204 1a110850 fd5ff06f jal x0, -44 +32573076ns 572209 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32573360ns 572214 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32573758ns 572221 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32573928ns 572224 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32574383ns 572232 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32574554ns 572235 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32574838ns 572240 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32575122ns 572245 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32575406ns 572250 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32575861ns 572258 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32576031ns 572261 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32576315ns 572266 1a110850 fd5ff06f jal x0, -44 +32576600ns 572271 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32576884ns 572276 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32577282ns 572283 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32577452ns 572286 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32577907ns 572294 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32578077ns 572297 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32578361ns 572302 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32578646ns 572307 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32578930ns 572312 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32579384ns 572320 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32579555ns 572323 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32579839ns 572328 1a110850 fd5ff06f jal x0, -44 +32580123ns 572333 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32580407ns 572338 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32580805ns 572345 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32580976ns 572348 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32581430ns 572356 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32581601ns 572359 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32581885ns 572364 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32582169ns 572369 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32582453ns 572374 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32582908ns 572382 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32583078ns 572385 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32583363ns 572390 1a110850 fd5ff06f jal x0, -44 +32583647ns 572395 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32583931ns 572400 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32584329ns 572407 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32584499ns 572410 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32584954ns 572418 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32585124ns 572421 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32585409ns 572426 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32585693ns 572431 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32585977ns 572436 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32586432ns 572444 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32586602ns 572447 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32586886ns 572452 1a110850 fd5ff06f jal x0, -44 +32587170ns 572457 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32587455ns 572462 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32587852ns 572469 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32588023ns 572472 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32588477ns 572480 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32588648ns 572483 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32588932ns 572488 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32589216ns 572493 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32589500ns 572498 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32589955ns 572506 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32590126ns 572509 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32590410ns 572514 1a110850 fd5ff06f jal x0, -44 +32590694ns 572519 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32590978ns 572524 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32591376ns 572531 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32591546ns 572534 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32592001ns 572542 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32592172ns 572545 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32592456ns 572550 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32592740ns 572555 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32593024ns 572560 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32593479ns 572568 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32593649ns 572571 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32593933ns 572576 1a110850 fd5ff06f jal x0, -44 +32594218ns 572581 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32594502ns 572586 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32594899ns 572593 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32595070ns 572596 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32595525ns 572604 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32595695ns 572607 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32595979ns 572612 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32596263ns 572617 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32596548ns 572622 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32597002ns 572630 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32597173ns 572633 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32597457ns 572638 1a110850 fd5ff06f jal x0, -44 +32597741ns 572643 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32598025ns 572648 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32598423ns 572655 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32598594ns 572658 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32599048ns 572666 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32599219ns 572669 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32599503ns 572674 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32599787ns 572679 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32600071ns 572684 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32600526ns 572692 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32600696ns 572695 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32600981ns 572700 1a110850 fd5ff06f jal x0, -44 +32601265ns 572705 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32601549ns 572710 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32601947ns 572717 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32602117ns 572720 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32602572ns 572728 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32602742ns 572731 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32603026ns 572736 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32603311ns 572741 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32603595ns 572746 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32604049ns 572754 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32604220ns 572757 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32604504ns 572762 1a110850 fd5ff06f jal x0, -44 +32604788ns 572767 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32605072ns 572772 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32605470ns 572779 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32605641ns 572782 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32606095ns 572790 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32606266ns 572793 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32606550ns 572798 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32606834ns 572803 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32607118ns 572808 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32607573ns 572816 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32607744ns 572819 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32608028ns 572824 1a110850 fd5ff06f jal x0, -44 +32608312ns 572829 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32608596ns 572834 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32608994ns 572841 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32609164ns 572844 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32609619ns 572852 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32609789ns 572855 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32610074ns 572860 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32610358ns 572865 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32610642ns 572870 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32611097ns 572878 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32611267ns 572881 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32611551ns 572886 1a110850 fd5ff06f jal x0, -44 +32611835ns 572891 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32612120ns 572896 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32612517ns 572903 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32612688ns 572906 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32613143ns 572914 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32613313ns 572917 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32613597ns 572922 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32613881ns 572927 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32614166ns 572932 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32614620ns 572940 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32614791ns 572943 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32615075ns 572948 1a110850 fd5ff06f jal x0, -44 +32615359ns 572953 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32615643ns 572958 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32616041ns 572965 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32616211ns 572968 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32616666ns 572976 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32616837ns 572979 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32617121ns 572984 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32617405ns 572989 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32617689ns 572994 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32618144ns 573002 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32618314ns 573005 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32618598ns 573010 1a110850 fd5ff06f jal x0, -44 +32618883ns 573015 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32619167ns 573020 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32619565ns 573027 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32619735ns 573030 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32620190ns 573038 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32620360ns 573041 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32620644ns 573046 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32620929ns 573051 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32621213ns 573056 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32621667ns 573064 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32621838ns 573067 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32622122ns 573072 1a110850 fd5ff06f jal x0, -44 +32622406ns 573077 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32622690ns 573082 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32623088ns 573089 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32623259ns 573092 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32623713ns 573100 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32623884ns 573103 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32624168ns 573108 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32624452ns 573113 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32624736ns 573118 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32625191ns 573126 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32625361ns 573129 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32625646ns 573134 1a110850 fd5ff06f jal x0, -44 +32625930ns 573139 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32626214ns 573144 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32626612ns 573151 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32626782ns 573154 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32627237ns 573162 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32627407ns 573165 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32627692ns 573170 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32627976ns 573175 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32628260ns 573180 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32628715ns 573188 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32628885ns 573191 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32629169ns 573196 1a110850 fd5ff06f jal x0, -44 +32629453ns 573201 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32629738ns 573206 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32630135ns 573213 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32630306ns 573216 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32630760ns 573224 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32630931ns 573227 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32631215ns 573232 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32631499ns 573237 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32631783ns 573242 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32632238ns 573250 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32632409ns 573253 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32632693ns 573258 1a110850 fd5ff06f jal x0, -44 +32632977ns 573263 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32633261ns 573268 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32633659ns 573275 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32633829ns 573278 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32634284ns 573286 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32634455ns 573289 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32634739ns 573294 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32635023ns 573299 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32635307ns 573304 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32635762ns 573312 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32635932ns 573315 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32636216ns 573320 1a110850 fd5ff06f jal x0, -44 +32636501ns 573325 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32636785ns 573330 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32637183ns 573337 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32637353ns 573340 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32637808ns 573348 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32637978ns 573351 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32638262ns 573356 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32638546ns 573361 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32638831ns 573366 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32639285ns 573374 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32639456ns 573377 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32639740ns 573382 1a110850 fd5ff06f jal x0, -44 +32640024ns 573387 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32640308ns 573392 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32640706ns 573399 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32640877ns 573402 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32641331ns 573410 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32641502ns 573413 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32641786ns 573418 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32642070ns 573423 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32642354ns 573428 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32642809ns 573436 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32642979ns 573439 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32643264ns 573444 1a110850 fd5ff06f jal x0, -44 +32643548ns 573449 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32643832ns 573454 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32644230ns 573461 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32644400ns 573464 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32644855ns 573472 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32645025ns 573475 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32645309ns 573480 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32645594ns 573485 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32645878ns 573490 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32646332ns 573498 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32646503ns 573501 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32646787ns 573506 1a110850 fd5ff06f jal x0, -44 +32647071ns 573511 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32647355ns 573516 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32647753ns 573523 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32647924ns 573526 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32648378ns 573534 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32648549ns 573537 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32648833ns 573542 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32649117ns 573547 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32649401ns 573552 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32649856ns 573560 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32650027ns 573563 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32650311ns 573568 1a110850 fd5ff06f jal x0, -44 +32650595ns 573573 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32650879ns 573578 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32651277ns 573585 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32651447ns 573588 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32651902ns 573596 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32652072ns 573599 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32652357ns 573604 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32652641ns 573609 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32652925ns 573614 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32653380ns 573622 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32653550ns 573625 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32653834ns 573630 1a110850 fd5ff06f jal x0, -44 +32654118ns 573635 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32654403ns 573640 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32654800ns 573647 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32654971ns 573650 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32655426ns 573658 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32655596ns 573661 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32655880ns 573666 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32656164ns 573671 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32656449ns 573676 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32656903ns 573684 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32657074ns 573687 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32657358ns 573692 1a110850 fd5ff06f jal x0, -44 +32657642ns 573697 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32657926ns 573702 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32658324ns 573709 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32658495ns 573712 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32658949ns 573720 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32659120ns 573723 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32659404ns 573728 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32659688ns 573733 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32659972ns 573738 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32660427ns 573746 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32660597ns 573749 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32660881ns 573754 1a110850 fd5ff06f jal x0, -44 +32661166ns 573759 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32661450ns 573764 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32661848ns 573771 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32662018ns 573774 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32662473ns 573782 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32662643ns 573785 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32662927ns 573790 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32663212ns 573795 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32663496ns 573800 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32663950ns 573808 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32664121ns 573811 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32664405ns 573816 1a110850 fd5ff06f jal x0, -44 +32664689ns 573821 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32664973ns 573826 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32665371ns 573833 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32665542ns 573836 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32665996ns 573844 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32666167ns 573847 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32666451ns 573852 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32666735ns 573857 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32667019ns 573862 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32667474ns 573870 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32667644ns 573873 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32667929ns 573878 1a110850 fd5ff06f jal x0, -44 +32668213ns 573883 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32668497ns 573888 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32668895ns 573895 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32669065ns 573898 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32669520ns 573906 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32669690ns 573909 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32669975ns 573914 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32670259ns 573919 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32670543ns 573924 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32670998ns 573932 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32671168ns 573935 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32671452ns 573940 1a110850 fd5ff06f jal x0, -44 +32671736ns 573945 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32672021ns 573950 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32672418ns 573957 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32672589ns 573960 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32673043ns 573968 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32673214ns 573971 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32673498ns 573976 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32673782ns 573981 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32674066ns 573986 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32674521ns 573994 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32674692ns 573997 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32674976ns 574002 1a110850 fd5ff06f jal x0, -44 +32675260ns 574007 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32675544ns 574012 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32675942ns 574019 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32676112ns 574022 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32676567ns 574030 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32676738ns 574033 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32677022ns 574038 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32677306ns 574043 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32677590ns 574048 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32678045ns 574056 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32678215ns 574059 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32678499ns 574064 1a110850 fd5ff06f jal x0, -44 +32678784ns 574069 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32679068ns 574074 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32679466ns 574081 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32679636ns 574084 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32680091ns 574092 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32680261ns 574095 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32680545ns 574100 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32680829ns 574105 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32681114ns 574110 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32681568ns 574118 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32681739ns 574121 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32682023ns 574126 1a110850 fd5ff06f jal x0, -44 +32682307ns 574131 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32682591ns 574136 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32682989ns 574143 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32683160ns 574146 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32683614ns 574154 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32683785ns 574157 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32684069ns 574162 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32684353ns 574167 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32684637ns 574172 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32685092ns 574180 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32685262ns 574183 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32685547ns 574188 1a110850 fd5ff06f jal x0, -44 +32685831ns 574193 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32686115ns 574198 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32686513ns 574205 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32686683ns 574208 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32687138ns 574216 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32687308ns 574219 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32687592ns 574224 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32687877ns 574229 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32688161ns 574234 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32688615ns 574242 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32688786ns 574245 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32689070ns 574250 1a110850 fd5ff06f jal x0, -44 +32689354ns 574255 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32689638ns 574260 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32690036ns 574267 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32690207ns 574270 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32690661ns 574278 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32690832ns 574281 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32691116ns 574286 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32691400ns 574291 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32691684ns 574296 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32692139ns 574304 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32692310ns 574307 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32692594ns 574312 1a110850 fd5ff06f jal x0, -44 +32692878ns 574317 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32693162ns 574322 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32693560ns 574329 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32693730ns 574332 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32694185ns 574340 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32694355ns 574343 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32694640ns 574348 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32694924ns 574353 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32695208ns 574358 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32695663ns 574366 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32695833ns 574369 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32696117ns 574374 1a110850 fd5ff06f jal x0, -44 +32696401ns 574379 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32696686ns 574384 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32697083ns 574391 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32697254ns 574394 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32697709ns 574402 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32697879ns 574405 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32698163ns 574410 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32698447ns 574415 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32698732ns 574420 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32699186ns 574428 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32699357ns 574431 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32699641ns 574436 1a110850 fd5ff06f jal x0, -44 +32699925ns 574441 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32700209ns 574446 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32700607ns 574453 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32700778ns 574456 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32701232ns 574464 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32701403ns 574467 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32701687ns 574472 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32701971ns 574477 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32702255ns 574482 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32702710ns 574490 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32702880ns 574493 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32703164ns 574498 1a110850 fd5ff06f jal x0, -44 +32703449ns 574503 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32703733ns 574508 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32704131ns 574515 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32704301ns 574518 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32704756ns 574526 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32704926ns 574529 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32705210ns 574534 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32705495ns 574539 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32705779ns 574544 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32706233ns 574552 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32706404ns 574555 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32706688ns 574560 1a110850 fd5ff06f jal x0, -44 +32706972ns 574565 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32707256ns 574570 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32707654ns 574577 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32707825ns 574580 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32708279ns 574588 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32708450ns 574591 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32708734ns 574596 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32709018ns 574601 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32709302ns 574606 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32709757ns 574614 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32709927ns 574617 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32710212ns 574622 1a110850 fd5ff06f jal x0, -44 +32710496ns 574627 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32710780ns 574632 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32711178ns 574639 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32711348ns 574642 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32711803ns 574650 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32711973ns 574653 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32712258ns 574658 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32712542ns 574663 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32712826ns 574668 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32713281ns 574676 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32713451ns 574679 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32713735ns 574684 1a110850 fd5ff06f jal x0, -44 +32714019ns 574689 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32714304ns 574694 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32714701ns 574701 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32714872ns 574704 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32715327ns 574712 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32715497ns 574715 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32715781ns 574720 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32716065ns 574725 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32716349ns 574730 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32716804ns 574738 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32716975ns 574741 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32717259ns 574746 1a110850 fd5ff06f jal x0, -44 +32717543ns 574751 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32717827ns 574756 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32718225ns 574763 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32718395ns 574766 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32718850ns 574774 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32719021ns 574777 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32719305ns 574782 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32719589ns 574787 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32719873ns 574792 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32720328ns 574800 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32720498ns 574803 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32720782ns 574808 1a110850 fd5ff06f jal x0, -44 +32721067ns 574813 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32721351ns 574818 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32721749ns 574825 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32721919ns 574828 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32722374ns 574836 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32722544ns 574839 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32722828ns 574844 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32723112ns 574849 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32723397ns 574854 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32723851ns 574862 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32724022ns 574865 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32724306ns 574870 1a110850 fd5ff06f jal x0, -44 +32724590ns 574875 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32724874ns 574880 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32725272ns 574887 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32725443ns 574890 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32725897ns 574898 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32726068ns 574901 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32726352ns 574906 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32726636ns 574911 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32726920ns 574916 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32727375ns 574924 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32727545ns 574927 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32727830ns 574932 1a110850 fd5ff06f jal x0, -44 +32728114ns 574937 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32728398ns 574942 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32728796ns 574949 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32728966ns 574952 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32729421ns 574960 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32729591ns 574963 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32729875ns 574968 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32730160ns 574973 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32730444ns 574978 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32730898ns 574986 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32731069ns 574989 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32731353ns 574994 1a110850 fd5ff06f jal x0, -44 +32731637ns 574999 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32731921ns 575004 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32732319ns 575011 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32732490ns 575014 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32732944ns 575022 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32733115ns 575025 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32733399ns 575030 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32733683ns 575035 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32733967ns 575040 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32734422ns 575048 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32734593ns 575051 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32734877ns 575056 1a110850 fd5ff06f jal x0, -44 +32735161ns 575061 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32735445ns 575066 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32735843ns 575073 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32736013ns 575076 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32736468ns 575084 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32736639ns 575087 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32736923ns 575092 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32737207ns 575097 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32737491ns 575102 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32737946ns 575110 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32738116ns 575113 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32738400ns 575118 1a110850 fd5ff06f jal x0, -44 +32738684ns 575123 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32738969ns 575128 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32739366ns 575135 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32739537ns 575138 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32739992ns 575146 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32740162ns 575149 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32740446ns 575154 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32740730ns 575159 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32741015ns 575164 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32741469ns 575172 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32741640ns 575175 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32741924ns 575180 1a110850 fd5ff06f jal x0, -44 +32742208ns 575185 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32742492ns 575190 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32742890ns 575197 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32743061ns 575200 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32743515ns 575208 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32743686ns 575211 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32743970ns 575216 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32744254ns 575221 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32744538ns 575226 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32744993ns 575234 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32745163ns 575237 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32745447ns 575242 1a110850 fd5ff06f jal x0, -44 +32745732ns 575247 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32746016ns 575252 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32746414ns 575259 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32746584ns 575262 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32747039ns 575270 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32747209ns 575273 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32747493ns 575278 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32747778ns 575283 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32748062ns 575288 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32748516ns 575296 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32748687ns 575299 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32748971ns 575304 1a110850 fd5ff06f jal x0, -44 +32749255ns 575309 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32749539ns 575314 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32749937ns 575321 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32750108ns 575324 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32750562ns 575332 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32750733ns 575335 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32751017ns 575340 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32751301ns 575345 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32751585ns 575350 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32752040ns 575358 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32752210ns 575361 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32752495ns 575366 1a110850 fd5ff06f jal x0, -44 +32752779ns 575371 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32753063ns 575376 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32753461ns 575383 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32753631ns 575386 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32754086ns 575394 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32754256ns 575397 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32754541ns 575402 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32754825ns 575407 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32755109ns 575412 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32755564ns 575420 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32755734ns 575423 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32756018ns 575428 1a110850 fd5ff06f jal x0, -44 +32756302ns 575433 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32756587ns 575438 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32756984ns 575445 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32757155ns 575448 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32757610ns 575456 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32757780ns 575459 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32758064ns 575464 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32758348ns 575469 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32758632ns 575474 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32759087ns 575482 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32759258ns 575485 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32759542ns 575490 1a110850 fd5ff06f jal x0, -44 +32759826ns 575495 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32760110ns 575500 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32760508ns 575507 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32760678ns 575510 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32761133ns 575518 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32761304ns 575521 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32761588ns 575526 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32761872ns 575531 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32762156ns 575536 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32762611ns 575544 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32762781ns 575547 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32763065ns 575552 1a110850 fd5ff06f jal x0, -44 +32763350ns 575557 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32763634ns 575562 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32764032ns 575569 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32764202ns 575572 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32764657ns 575580 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32764827ns 575583 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32765111ns 575588 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32765395ns 575593 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32765680ns 575598 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32766134ns 575606 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32766305ns 575609 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32766589ns 575614 1a110850 fd5ff06f jal x0, -44 +32766873ns 575619 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32767157ns 575624 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32767555ns 575631 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32767726ns 575634 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32768180ns 575642 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32768351ns 575645 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32768635ns 575650 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32768919ns 575655 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32769203ns 575660 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32769658ns 575668 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32769828ns 575671 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32770113ns 575676 1a110850 fd5ff06f jal x0, -44 +32770397ns 575681 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32770681ns 575686 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32771079ns 575693 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32771249ns 575696 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32771704ns 575704 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32771874ns 575707 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32772159ns 575712 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32772443ns 575717 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32772727ns 575722 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32773181ns 575730 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32773352ns 575733 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32773636ns 575738 1a110850 fd5ff06f jal x0, -44 +32773920ns 575743 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32774204ns 575748 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32774602ns 575755 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32774773ns 575758 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32775227ns 575766 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32775398ns 575769 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32775682ns 575774 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32775966ns 575779 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32776250ns 575784 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32776705ns 575792 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32776876ns 575795 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32777160ns 575800 1a110850 fd5ff06f jal x0, -44 +32777444ns 575805 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32777728ns 575810 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32778126ns 575817 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32778296ns 575820 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32778751ns 575828 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32778922ns 575831 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32779206ns 575836 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32779490ns 575841 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32779774ns 575846 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32780229ns 575854 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32780399ns 575857 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32780683ns 575862 1a110850 fd5ff06f jal x0, -44 +32780967ns 575867 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32781252ns 575872 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32781649ns 575879 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32781820ns 575882 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32782275ns 575890 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32782445ns 575893 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32782729ns 575898 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32783013ns 575903 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32783298ns 575908 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32783752ns 575916 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32783923ns 575919 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32784207ns 575924 1a110850 fd5ff06f jal x0, -44 +32784491ns 575929 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32784775ns 575934 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32785173ns 575941 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32785344ns 575944 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32785798ns 575952 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32785969ns 575955 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32786253ns 575960 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32786537ns 575965 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32786821ns 575970 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32787276ns 575978 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32787446ns 575981 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32787730ns 575986 1a110850 fd5ff06f jal x0, -44 +32788015ns 575991 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32788299ns 575996 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32788697ns 576003 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32788867ns 576006 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32789322ns 576014 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32789492ns 576017 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32789776ns 576022 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32790061ns 576027 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32790345ns 576032 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32790799ns 576040 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32790970ns 576043 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32791254ns 576048 1a110850 fd5ff06f jal x0, -44 +32791538ns 576053 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32791822ns 576058 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32792220ns 576065 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32792391ns 576068 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32792845ns 576076 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32793016ns 576079 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32793300ns 576084 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32793584ns 576089 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32793868ns 576094 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32794323ns 576102 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32794493ns 576105 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32794778ns 576110 1a110850 fd5ff06f jal x0, -44 +32795062ns 576115 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32795346ns 576120 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32795744ns 576127 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32795914ns 576130 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32796369ns 576138 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32796539ns 576141 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32796824ns 576146 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32797108ns 576151 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32797392ns 576156 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32797847ns 576164 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32798017ns 576167 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32798301ns 576172 1a110850 fd5ff06f jal x0, -44 +32798585ns 576177 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32798870ns 576182 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32799267ns 576189 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32799438ns 576192 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32799893ns 576200 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32800063ns 576203 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32800347ns 576208 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32800631ns 576213 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32800915ns 576218 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32801370ns 576226 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32801541ns 576229 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32801825ns 576234 1a110850 fd5ff06f jal x0, -44 +32802109ns 576239 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32802393ns 576244 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32802791ns 576251 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32802961ns 576254 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32803416ns 576262 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32803587ns 576265 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32803871ns 576270 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32804155ns 576275 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32804439ns 576280 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32804894ns 576288 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32805064ns 576291 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32805348ns 576296 1a110850 fd5ff06f jal x0, -44 +32805633ns 576301 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32805917ns 576306 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32806315ns 576313 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32806485ns 576316 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32806940ns 576324 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32807110ns 576327 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32807394ns 576332 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32807679ns 576337 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32807963ns 576342 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32808417ns 576350 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32808588ns 576353 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32808872ns 576358 1a110850 fd5ff06f jal x0, -44 +32809156ns 576363 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32809440ns 576368 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32809838ns 576375 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32810009ns 576378 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32810463ns 576386 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32810634ns 576389 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32810918ns 576394 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32811202ns 576399 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32811486ns 576404 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32811941ns 576412 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32812111ns 576415 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32812396ns 576420 1a110850 fd5ff06f jal x0, -44 +32812680ns 576425 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32812964ns 576430 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32813362ns 576437 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32813532ns 576440 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32813987ns 576448 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32814157ns 576451 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32814442ns 576456 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32814726ns 576461 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32815010ns 576466 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32815464ns 576474 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32815635ns 576477 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32815919ns 576482 1a110850 fd5ff06f jal x0, -44 +32816203ns 576487 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32816487ns 576492 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32816885ns 576499 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32817056ns 576502 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32817510ns 576510 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32817681ns 576513 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32817965ns 576518 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32818249ns 576523 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32818533ns 576528 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32818988ns 576536 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32819159ns 576539 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32819443ns 576544 1a110850 fd5ff06f jal x0, -44 +32819727ns 576549 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32820011ns 576554 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32820409ns 576561 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32820579ns 576564 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32821034ns 576572 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32821205ns 576575 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32821489ns 576580 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32821773ns 576585 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32822057ns 576590 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32822512ns 576598 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32822682ns 576601 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32822966ns 576606 1a110850 fd5ff06f jal x0, -44 +32823250ns 576611 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32823535ns 576616 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32823932ns 576623 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32824103ns 576626 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32824558ns 576634 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32824728ns 576637 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32825012ns 576642 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32825296ns 576647 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32825581ns 576652 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32826035ns 576660 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32826206ns 576663 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32826490ns 576668 1a110850 fd5ff06f jal x0, -44 +32826774ns 576673 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32827058ns 576678 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32827456ns 576685 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32827627ns 576688 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32828081ns 576696 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32828252ns 576699 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32828536ns 576704 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32828820ns 576709 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32829104ns 576714 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32829559ns 576722 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32829729ns 576725 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32830013ns 576730 1a110850 fd5ff06f jal x0, -44 +32830298ns 576735 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32830582ns 576740 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32830980ns 576747 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32831150ns 576750 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32831605ns 576758 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32831775ns 576761 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32832059ns 576766 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32832344ns 576771 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32832628ns 576776 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32833082ns 576784 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32833253ns 576787 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32833537ns 576792 1a110850 fd5ff06f jal x0, -44 +32833821ns 576797 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32834105ns 576802 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32834503ns 576809 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32834674ns 576812 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32835128ns 576820 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32835299ns 576823 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32835583ns 576828 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32835867ns 576833 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32836151ns 576838 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32836606ns 576846 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32836776ns 576849 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32837061ns 576854 1a110850 fd5ff06f jal x0, -44 +32837345ns 576859 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32837629ns 576864 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32838027ns 576871 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32838197ns 576874 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32838652ns 576882 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32838822ns 576885 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32839107ns 576890 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32839391ns 576895 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32839675ns 576900 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32840130ns 576908 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32840300ns 576911 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32840584ns 576916 1a110850 fd5ff06f jal x0, -44 +32840868ns 576921 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32841153ns 576926 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32841550ns 576933 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32841721ns 576936 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32842176ns 576944 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32842346ns 576947 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32842630ns 576952 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32842914ns 576957 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32843199ns 576962 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32843653ns 576970 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32843824ns 576973 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32844108ns 576978 1a110850 fd5ff06f jal x0, -44 +32844392ns 576983 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32844676ns 576988 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32845074ns 576995 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32845244ns 576998 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32845699ns 577006 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32845870ns 577009 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32846154ns 577014 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32846438ns 577019 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32846722ns 577024 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32847177ns 577032 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32847347ns 577035 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32847631ns 577040 1a110850 fd5ff06f jal x0, -44 +32847916ns 577045 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32848200ns 577050 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32848598ns 577057 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32848768ns 577060 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32849223ns 577068 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32849393ns 577071 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32849677ns 577076 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32849962ns 577081 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32850246ns 577086 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32850700ns 577094 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32850871ns 577097 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32851155ns 577102 1a110850 fd5ff06f jal x0, -44 +32851439ns 577107 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32851723ns 577112 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32852121ns 577119 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32852292ns 577122 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32852746ns 577130 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32852917ns 577133 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32853201ns 577138 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32853485ns 577143 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32853769ns 577148 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32854224ns 577156 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32854394ns 577159 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32854679ns 577164 1a110850 fd5ff06f jal x0, -44 +32854963ns 577169 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32855247ns 577174 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32855645ns 577181 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32855815ns 577184 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32856270ns 577192 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32856440ns 577195 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32856725ns 577200 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32857009ns 577205 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32857293ns 577210 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32857747ns 577218 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32857918ns 577221 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32858202ns 577226 1a110850 fd5ff06f jal x0, -44 +32858486ns 577231 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32858770ns 577236 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32859168ns 577243 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32859339ns 577246 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32859793ns 577254 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32859964ns 577257 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32860248ns 577262 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32860532ns 577267 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32860816ns 577272 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32861271ns 577280 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32861442ns 577283 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32861726ns 577288 1a110850 fd5ff06f jal x0, -44 +32862010ns 577293 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32862294ns 577298 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32862692ns 577305 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32862862ns 577308 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32863317ns 577316 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32863488ns 577319 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32863772ns 577324 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32864056ns 577329 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32864340ns 577334 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32864795ns 577342 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32864965ns 577345 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32865249ns 577350 1a110850 fd5ff06f jal x0, -44 +32865533ns 577355 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32865818ns 577360 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32866215ns 577367 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32866386ns 577370 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32866841ns 577378 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32867011ns 577381 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32867295ns 577386 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32867579ns 577391 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32867864ns 577396 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32868318ns 577404 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32868489ns 577407 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32868773ns 577412 1a110850 fd5ff06f jal x0, -44 +32869057ns 577417 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32869341ns 577422 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32869739ns 577429 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32869910ns 577432 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32870364ns 577440 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32870535ns 577443 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32870819ns 577448 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32871103ns 577453 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32871387ns 577458 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32871842ns 577466 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32872012ns 577469 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32872296ns 577474 1a110850 fd5ff06f jal x0, -44 +32872581ns 577479 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32872865ns 577484 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32873263ns 577491 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32873433ns 577494 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32873888ns 577502 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32874058ns 577505 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32874342ns 577510 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32874627ns 577515 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32874911ns 577520 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32875365ns 577528 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32875536ns 577531 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32875820ns 577536 1a110850 fd5ff06f jal x0, -44 +32876104ns 577541 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32876388ns 577546 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32876786ns 577553 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32876957ns 577556 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32877411ns 577564 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32877582ns 577567 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32877866ns 577572 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32878150ns 577577 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32878434ns 577582 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32878889ns 577590 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32879059ns 577593 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32879344ns 577598 1a110850 fd5ff06f jal x0, -44 +32879628ns 577603 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32879912ns 577608 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32880310ns 577615 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32880480ns 577618 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32880935ns 577626 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32881105ns 577629 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32881390ns 577634 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32881674ns 577639 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32881958ns 577644 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32882413ns 577652 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32882583ns 577655 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32882867ns 577660 1a110850 fd5ff06f jal x0, -44 +32883151ns 577665 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32883436ns 577670 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32883833ns 577677 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32884004ns 577680 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32884459ns 577688 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32884629ns 577691 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32884913ns 577696 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32885197ns 577701 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32885482ns 577706 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32885936ns 577714 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32886107ns 577717 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32886391ns 577722 1a110850 fd5ff06f jal x0, -44 +32886675ns 577727 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32886959ns 577732 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32887357ns 577739 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32887527ns 577742 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32887982ns 577750 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32888153ns 577753 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32888437ns 577758 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32888721ns 577763 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32889005ns 577768 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32889460ns 577776 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32889630ns 577779 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32889914ns 577784 1a110850 fd5ff06f jal x0, -44 +32890199ns 577789 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32890483ns 577794 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32890881ns 577801 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32891051ns 577804 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32891506ns 577812 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32891676ns 577815 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32891960ns 577820 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32892245ns 577825 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32892529ns 577830 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32892983ns 577838 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32893154ns 577841 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32893438ns 577846 1a110850 fd5ff06f jal x0, -44 +32893722ns 577851 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32894006ns 577856 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32894404ns 577863 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32894575ns 577866 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32895029ns 577874 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32895200ns 577877 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32895484ns 577882 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32895768ns 577887 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32896052ns 577892 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32896507ns 577900 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32896677ns 577903 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32896962ns 577908 1a110850 fd5ff06f jal x0, -44 +32897246ns 577913 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32897530ns 577918 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32897928ns 577925 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32898098ns 577928 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32898553ns 577936 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32898723ns 577939 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32899008ns 577944 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32899292ns 577949 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32899576ns 577954 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32900031ns 577962 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32900201ns 577965 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32900485ns 577970 1a110850 fd5ff06f jal x0, -44 +32900769ns 577975 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32901053ns 577980 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32901451ns 577987 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32901622ns 577990 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32902076ns 577998 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32902247ns 578001 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32902531ns 578006 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32902815ns 578011 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32903099ns 578016 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32903554ns 578024 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32903725ns 578027 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32904009ns 578032 1a110850 fd5ff06f jal x0, -44 +32904293ns 578037 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32904577ns 578042 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32904975ns 578049 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32905145ns 578052 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32905600ns 578060 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32905771ns 578063 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32906055ns 578068 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32906339ns 578073 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32906623ns 578078 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32907078ns 578086 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32907248ns 578089 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32907532ns 578094 1a110850 fd5ff06f jal x0, -44 +32907816ns 578099 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32908101ns 578104 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32908498ns 578111 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32908669ns 578114 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32909124ns 578122 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32909294ns 578125 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32909578ns 578130 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32909862ns 578135 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32910147ns 578140 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32910601ns 578148 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32910772ns 578151 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32911056ns 578156 1a110850 fd5ff06f jal x0, -44 +32911340ns 578161 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32911624ns 578166 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32912022ns 578173 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32912193ns 578176 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32912647ns 578184 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32912818ns 578187 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32913102ns 578192 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32913386ns 578197 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32913670ns 578202 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32914125ns 578210 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32914295ns 578213 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32914579ns 578218 1a110850 fd5ff06f jal x0, -44 +32914864ns 578223 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32915148ns 578228 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32915546ns 578235 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32915716ns 578238 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32916171ns 578246 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32916341ns 578249 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32916625ns 578254 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32916910ns 578259 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32917194ns 578264 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32917648ns 578272 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32917819ns 578275 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32918103ns 578280 1a110850 fd5ff06f jal x0, -44 +32918387ns 578285 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32918671ns 578290 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32919069ns 578297 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32919240ns 578300 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32919694ns 578308 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32919865ns 578311 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32920149ns 578316 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32920433ns 578321 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32920717ns 578326 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32921172ns 578334 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32921343ns 578337 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32921627ns 578342 1a110850 fd5ff06f jal x0, -44 +32921911ns 578347 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32922195ns 578352 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32922593ns 578359 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32922763ns 578362 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32923218ns 578370 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32923388ns 578373 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32923673ns 578378 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32923957ns 578383 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32924241ns 578388 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32924696ns 578396 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32924866ns 578399 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32925150ns 578404 1a110850 fd5ff06f jal x0, -44 +32925434ns 578409 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32925719ns 578414 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32926116ns 578421 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32926287ns 578424 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32926742ns 578432 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32926912ns 578435 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32927196ns 578440 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32927480ns 578445 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32927765ns 578450 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32928219ns 578458 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32928390ns 578461 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32928674ns 578466 1a110850 fd5ff06f jal x0, -44 +32928958ns 578471 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32929242ns 578476 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32929640ns 578483 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32929810ns 578486 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32930265ns 578494 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32930436ns 578497 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32930720ns 578502 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32931004ns 578507 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32931288ns 578512 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32931743ns 578520 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32931913ns 578523 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32932197ns 578528 1a110850 fd5ff06f jal x0, -44 +32932482ns 578533 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32932766ns 578538 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32933164ns 578545 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32933334ns 578548 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32933789ns 578556 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32933959ns 578559 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32934243ns 578564 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32934528ns 578569 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32934812ns 578574 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32935266ns 578582 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32935437ns 578585 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32935721ns 578590 1a110850 fd5ff06f jal x0, -44 +32936005ns 578595 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32936289ns 578600 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32936687ns 578607 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32936858ns 578610 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32937312ns 578618 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32937483ns 578621 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32937767ns 578626 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32938051ns 578631 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32938335ns 578636 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32938790ns 578644 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32938960ns 578647 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32939245ns 578652 1a110850 fd5ff06f jal x0, -44 +32939529ns 578657 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32939813ns 578662 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32940211ns 578669 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32940381ns 578672 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32940836ns 578680 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32941006ns 578683 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32941291ns 578688 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32941575ns 578693 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32941859ns 578698 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32942314ns 578706 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32942484ns 578709 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32942768ns 578714 1a110850 fd5ff06f jal x0, -44 +32943052ns 578719 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32943336ns 578724 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32943734ns 578731 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32943905ns 578734 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32944359ns 578742 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32944530ns 578745 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32944814ns 578750 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32945098ns 578755 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32945382ns 578760 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32945837ns 578768 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32946008ns 578771 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32946292ns 578776 1a110850 fd5ff06f jal x0, -44 +32946576ns 578781 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32946860ns 578786 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32947258ns 578793 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32947428ns 578796 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32947883ns 578804 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32948054ns 578807 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32948338ns 578812 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32948622ns 578817 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32948906ns 578822 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32949361ns 578830 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32949531ns 578833 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32949815ns 578838 1a110850 fd5ff06f jal x0, -44 +32950099ns 578843 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32950384ns 578848 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32950781ns 578855 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32950952ns 578858 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32951407ns 578866 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32951577ns 578869 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32951861ns 578874 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32952145ns 578879 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32952430ns 578884 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32952884ns 578892 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32953055ns 578895 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32953339ns 578900 1a110850 fd5ff06f jal x0, -44 +32953623ns 578905 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32953907ns 578910 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32954305ns 578917 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32954476ns 578920 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32954930ns 578928 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32955101ns 578931 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32955385ns 578936 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32955669ns 578941 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32955953ns 578946 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32956408ns 578954 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32956578ns 578957 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32956863ns 578962 1a110850 fd5ff06f jal x0, -44 +32957147ns 578967 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32957431ns 578972 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32957829ns 578979 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32957999ns 578982 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32958454ns 578990 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32958624ns 578993 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32958908ns 578998 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32959193ns 579003 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32959477ns 579008 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32959931ns 579016 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32960102ns 579019 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32960386ns 579024 1a110850 fd5ff06f jal x0, -44 +32960670ns 579029 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32960954ns 579034 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32961352ns 579041 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32961523ns 579044 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32961977ns 579052 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32962148ns 579055 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32962432ns 579060 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32962716ns 579065 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32963000ns 579070 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32963455ns 579078 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32963626ns 579081 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32963910ns 579086 1a110850 fd5ff06f jal x0, -44 +32964194ns 579091 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32964478ns 579096 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32964876ns 579103 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32965046ns 579106 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32965501ns 579114 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32965671ns 579117 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32965956ns 579122 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32966240ns 579127 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32966524ns 579132 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32966979ns 579140 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32967149ns 579143 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32967433ns 579148 1a110850 fd5ff06f jal x0, -44 +32967717ns 579153 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32968002ns 579158 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32968399ns 579165 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32968570ns 579168 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32969025ns 579176 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32969195ns 579179 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32969479ns 579184 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32969763ns 579189 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32970048ns 579194 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32970502ns 579202 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32970673ns 579205 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32970957ns 579210 1a110850 fd5ff06f jal x0, -44 +32971241ns 579215 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32971525ns 579220 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32971923ns 579227 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32972093ns 579230 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32972548ns 579238 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32972719ns 579241 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32973003ns 579246 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32973287ns 579251 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32973571ns 579256 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32974026ns 579264 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32974196ns 579267 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32974480ns 579272 1a110850 fd5ff06f jal x0, -44 +32974765ns 579277 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32975049ns 579282 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32975447ns 579289 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32975617ns 579292 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32976072ns 579300 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32976242ns 579303 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32976526ns 579308 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32976811ns 579313 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32977095ns 579318 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32977549ns 579326 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32977720ns 579329 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32978004ns 579334 1a110850 fd5ff06f jal x0, -44 +32978288ns 579339 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32978572ns 579344 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32978970ns 579351 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32979141ns 579354 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32979595ns 579362 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32979766ns 579365 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32980050ns 579370 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32980334ns 579375 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32980618ns 579380 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32981073ns 579388 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32981243ns 579391 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32981528ns 579396 1a110850 fd5ff06f jal x0, -44 +32981812ns 579401 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32982096ns 579406 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32982494ns 579413 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32982664ns 579416 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32983119ns 579424 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32983289ns 579427 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32983574ns 579432 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32983858ns 579437 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32984142ns 579442 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32984597ns 579450 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32984767ns 579453 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32985051ns 579458 1a110850 fd5ff06f jal x0, -44 +32985335ns 579463 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32985619ns 579468 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32986017ns 579475 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32986188ns 579478 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32986642ns 579486 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32986813ns 579489 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32987097ns 579494 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32987381ns 579499 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32987665ns 579504 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32988120ns 579512 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32988291ns 579515 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32988575ns 579520 1a110850 fd5ff06f jal x0, -44 +32988859ns 579525 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32989143ns 579530 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32989541ns 579537 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32989711ns 579540 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32990166ns 579548 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32990337ns 579551 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32990621ns 579556 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32990905ns 579561 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32991189ns 579566 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32991644ns 579574 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32991814ns 579577 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32992098ns 579582 1a110850 fd5ff06f jal x0, -44 +32992383ns 579587 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32992667ns 579592 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32993064ns 579599 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32993235ns 579602 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32993690ns 579610 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32993860ns 579613 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32994144ns 579618 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32994428ns 579623 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32994713ns 579628 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32995167ns 579636 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32995338ns 579639 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32995622ns 579644 1a110850 fd5ff06f jal x0, -44 +32995906ns 579649 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32996190ns 579654 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +32996588ns 579661 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32996759ns 579664 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32997213ns 579672 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +32997384ns 579675 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +32997668ns 579680 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32997952ns 579685 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +32998236ns 579690 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +32998691ns 579698 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +32998861ns 579701 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +32999146ns 579706 1a110850 fd5ff06f jal x0, -44 +32999430ns 579711 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +32999714ns 579716 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33000112ns 579723 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33000282ns 579726 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33000737ns 579734 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33000907ns 579737 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33001191ns 579742 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33001476ns 579747 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33001760ns 579752 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33002214ns 579760 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33002385ns 579763 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33002669ns 579768 1a110850 fd5ff06f jal x0, -44 +33002953ns 579773 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33003237ns 579778 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33003635ns 579785 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33003806ns 579788 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33004260ns 579796 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33004431ns 579799 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33004715ns 579804 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33004999ns 579809 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33005283ns 579814 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33005738ns 579822 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33005909ns 579825 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33006193ns 579830 1a110850 fd5ff06f jal x0, -44 +33006477ns 579835 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33006761ns 579840 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33007159ns 579847 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33007329ns 579850 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33007784ns 579858 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33007954ns 579861 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33008239ns 579866 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33008523ns 579871 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33008807ns 579876 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33009262ns 579884 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33009432ns 579887 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33009716ns 579892 1a110850 fd5ff06f jal x0, -44 +33010000ns 579897 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33010285ns 579902 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33010682ns 579909 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33010853ns 579912 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33011308ns 579920 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33011478ns 579923 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33011762ns 579928 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33012046ns 579933 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33012331ns 579938 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33012785ns 579946 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33012956ns 579949 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33013240ns 579954 1a110850 fd5ff06f jal x0, -44 +33013524ns 579959 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33013808ns 579964 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33014206ns 579971 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33014376ns 579974 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33014831ns 579982 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33015002ns 579985 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33015286ns 579990 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33015570ns 579995 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33015854ns 580000 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33016309ns 580008 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33016479ns 580011 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33016763ns 580016 1a110850 fd5ff06f jal x0, -44 +33017048ns 580021 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33017332ns 580026 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33017730ns 580033 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33017900ns 580036 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33018355ns 580044 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33018525ns 580047 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33018809ns 580052 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33019094ns 580057 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33019378ns 580062 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33019832ns 580070 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33020003ns 580073 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33020287ns 580078 1a110850 fd5ff06f jal x0, -44 +33020571ns 580083 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33020855ns 580088 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33021253ns 580095 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33021424ns 580098 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33021878ns 580106 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33022049ns 580109 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33022333ns 580114 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33022617ns 580119 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33022901ns 580124 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33023356ns 580132 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33023526ns 580135 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33023811ns 580140 1a110850 fd5ff06f jal x0, -44 +33024095ns 580145 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33024379ns 580150 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33024777ns 580157 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33024947ns 580160 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33025402ns 580168 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33025572ns 580171 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33025857ns 580176 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33026141ns 580181 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33026425ns 580186 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33026880ns 580194 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33027050ns 580197 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33027334ns 580202 1a110850 fd5ff06f jal x0, -44 +33027618ns 580207 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33027903ns 580212 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33028300ns 580219 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33028471ns 580222 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33028925ns 580230 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33029096ns 580233 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33029380ns 580238 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33029664ns 580243 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33029948ns 580248 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33030403ns 580256 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33030574ns 580259 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33030858ns 580264 1a110850 fd5ff06f jal x0, -44 +33031142ns 580269 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33031426ns 580274 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33031824ns 580281 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33031994ns 580284 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33032449ns 580292 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33032620ns 580295 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33032904ns 580300 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33033188ns 580305 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33033472ns 580310 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33033927ns 580318 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33034097ns 580321 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33034381ns 580326 1a110850 fd5ff06f jal x0, -44 +33034666ns 580331 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33034950ns 580336 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33035347ns 580343 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33035518ns 580346 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33035973ns 580354 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33036143ns 580357 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33036427ns 580362 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33036711ns 580367 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33036996ns 580372 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33037450ns 580380 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33037621ns 580383 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33037905ns 580388 1a110850 fd5ff06f jal x0, -44 +33038189ns 580393 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33038473ns 580398 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33038871ns 580405 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33039042ns 580408 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33039496ns 580416 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33039667ns 580419 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33039951ns 580424 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33040235ns 580429 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33040519ns 580434 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33040974ns 580442 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33041144ns 580445 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33041429ns 580450 1a110850 fd5ff06f jal x0, -44 +33041713ns 580455 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33041997ns 580460 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33042395ns 580467 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33042565ns 580470 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33043020ns 580478 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33043190ns 580481 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33043474ns 580486 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33043759ns 580491 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33044043ns 580496 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33044497ns 580504 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33044668ns 580507 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33044952ns 580512 1a110850 fd5ff06f jal x0, -44 +33045236ns 580517 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33045520ns 580522 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33045918ns 580529 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33046089ns 580532 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33046543ns 580540 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33046714ns 580543 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33046998ns 580548 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33047282ns 580553 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33047566ns 580558 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33048021ns 580566 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33048192ns 580569 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33048476ns 580574 1a110850 fd5ff06f jal x0, -44 +33048760ns 580579 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33049044ns 580584 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33049442ns 580591 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33049612ns 580594 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33050067ns 580602 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33050237ns 580605 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33050522ns 580610 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33050806ns 580615 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33051090ns 580620 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33051545ns 580628 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33051715ns 580631 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33051999ns 580636 1a110850 fd5ff06f jal x0, -44 +33052283ns 580641 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33052568ns 580646 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33052965ns 580653 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33053136ns 580656 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33053591ns 580664 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33053761ns 580667 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33054045ns 580672 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33054329ns 580677 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33054614ns 580682 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33055068ns 580690 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33055239ns 580693 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33055523ns 580698 1a110850 fd5ff06f jal x0, -44 +33055807ns 580703 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33056091ns 580708 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33056489ns 580715 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33056659ns 580718 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33057114ns 580726 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33057285ns 580729 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33057569ns 580734 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33057853ns 580739 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33058137ns 580744 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33058592ns 580752 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33058762ns 580755 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33059046ns 580760 1a110850 fd5ff06f jal x0, -44 +33059331ns 580765 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33059615ns 580770 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33060013ns 580777 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33060183ns 580780 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33060638ns 580788 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33060808ns 580791 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33061092ns 580796 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33061377ns 580801 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33061661ns 580806 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33062115ns 580814 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33062286ns 580817 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33062570ns 580822 1a110850 fd5ff06f jal x0, -44 +33062854ns 580827 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33063138ns 580832 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33063536ns 580839 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33063707ns 580842 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33064161ns 580850 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33064332ns 580853 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33064616ns 580858 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33064900ns 580863 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33065184ns 580868 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33065639ns 580876 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33065809ns 580879 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33066094ns 580884 1a110850 fd5ff06f jal x0, -44 +33066378ns 580889 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33066662ns 580894 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33067060ns 580901 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33067230ns 580904 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33067685ns 580912 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33067855ns 580915 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33068140ns 580920 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33068424ns 580925 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33068708ns 580930 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33069163ns 580938 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33069333ns 580941 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33069617ns 580946 1a110850 fd5ff06f jal x0, -44 +33069901ns 580951 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33070186ns 580956 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33070583ns 580963 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33070754ns 580966 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33071208ns 580974 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33071379ns 580977 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33071663ns 580982 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33071947ns 580987 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33072231ns 580992 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33072686ns 581000 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33072857ns 581003 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33073141ns 581008 1a110850 fd5ff06f jal x0, -44 +33073425ns 581013 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33073709ns 581018 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33074107ns 581025 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33074277ns 581028 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33074732ns 581036 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33074903ns 581039 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33075187ns 581044 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33075471ns 581049 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33075755ns 581054 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33076210ns 581062 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33076380ns 581065 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33076664ns 581070 1a110850 fd5ff06f jal x0, -44 +33076949ns 581075 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33077233ns 581080 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33077631ns 581087 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33077801ns 581090 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33078256ns 581098 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33078426ns 581101 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33078710ns 581106 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33078994ns 581111 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33079279ns 581116 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33079733ns 581124 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33079904ns 581127 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33080188ns 581132 1a110850 fd5ff06f jal x0, -44 +33080472ns 581137 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33080756ns 581142 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33081154ns 581149 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33081325ns 581152 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33081779ns 581160 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33081950ns 581163 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33082234ns 581168 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33082518ns 581173 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33082802ns 581178 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33083257ns 581186 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33083427ns 581189 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33083712ns 581194 1a110850 fd5ff06f jal x0, -44 +33083996ns 581199 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33084280ns 581204 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33084678ns 581211 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33084848ns 581214 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33085303ns 581222 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33085473ns 581225 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33085757ns 581230 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33086042ns 581235 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33086326ns 581240 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33086780ns 581248 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33086951ns 581251 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33087235ns 581256 1a110850 fd5ff06f jal x0, -44 +33087519ns 581261 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33087803ns 581266 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33088201ns 581273 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33088372ns 581276 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33088826ns 581284 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33088997ns 581287 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33089281ns 581292 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33089565ns 581297 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33089849ns 581302 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33090304ns 581310 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33090475ns 581313 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33090759ns 581318 1a110850 fd5ff06f jal x0, -44 +33091043ns 581323 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33091327ns 581328 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33091725ns 581335 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33091895ns 581338 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33092350ns 581346 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33092520ns 581349 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33092805ns 581354 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33093089ns 581359 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33093373ns 581364 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33093828ns 581372 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33093998ns 581375 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33094282ns 581380 1a110850 fd5ff06f jal x0, -44 +33094566ns 581385 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33094851ns 581390 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33095248ns 581397 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33095419ns 581400 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33095874ns 581408 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33096044ns 581411 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33096328ns 581416 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33096612ns 581421 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33096897ns 581426 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33097351ns 581434 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33097522ns 581437 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33097806ns 581442 1a110850 fd5ff06f jal x0, -44 +33098090ns 581447 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33098374ns 581452 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33098772ns 581459 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33098943ns 581462 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33099397ns 581470 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33099568ns 581473 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33099852ns 581478 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33100136ns 581483 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33100420ns 581488 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33100875ns 581496 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33101045ns 581499 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33101329ns 581504 1a110850 fd5ff06f jal x0, -44 +33101614ns 581509 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33101898ns 581514 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33102296ns 581521 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33102466ns 581524 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33102921ns 581532 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33103091ns 581535 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33103375ns 581540 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33103660ns 581545 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33103944ns 581550 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33104398ns 581558 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33104569ns 581561 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33104853ns 581566 1a110850 fd5ff06f jal x0, -44 +33105137ns 581571 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33105421ns 581576 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33105819ns 581583 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33105990ns 581586 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33106444ns 581594 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33106615ns 581597 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33106899ns 581602 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33107183ns 581607 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33107467ns 581612 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33107922ns 581620 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33108092ns 581623 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33108377ns 581628 1a110850 fd5ff06f jal x0, -44 +33108661ns 581633 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33108945ns 581638 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33109343ns 581645 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33109513ns 581648 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33109968ns 581656 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33110138ns 581659 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33110423ns 581664 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33110707ns 581669 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33110991ns 581674 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33111446ns 581682 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33111616ns 581685 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33111900ns 581690 1a110850 fd5ff06f jal x0, -44 +33112184ns 581695 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33112469ns 581700 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33112866ns 581707 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33113037ns 581710 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33113491ns 581718 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33113662ns 581721 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33113946ns 581726 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33114230ns 581731 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33114514ns 581736 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33114969ns 581744 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33115140ns 581747 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33115424ns 581752 1a110850 fd5ff06f jal x0, -44 +33115708ns 581757 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33115992ns 581762 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33116390ns 581769 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33116560ns 581772 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33117015ns 581780 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33117186ns 581783 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33117470ns 581788 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33117754ns 581793 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33118038ns 581798 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33118493ns 581806 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33118663ns 581809 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33118947ns 581814 1a110850 fd5ff06f jal x0, -44 +33119232ns 581819 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33119516ns 581824 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33119914ns 581831 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33120084ns 581834 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33120539ns 581842 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33120709ns 581845 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33120993ns 581850 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33121277ns 581855 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33121562ns 581860 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33122016ns 581868 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33122187ns 581871 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33122471ns 581876 1a110850 fd5ff06f jal x0, -44 +33122755ns 581881 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33123039ns 581886 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33123437ns 581893 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33123608ns 581896 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33124062ns 581904 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33124233ns 581907 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33124517ns 581912 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33124801ns 581917 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33125085ns 581922 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33125540ns 581930 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33125710ns 581933 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33125995ns 581938 1a110850 fd5ff06f jal x0, -44 +33126279ns 581943 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33126563ns 581948 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33126961ns 581955 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33127131ns 581958 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33127586ns 581966 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33127756ns 581969 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33128040ns 581974 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33128325ns 581979 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33128609ns 581984 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33129063ns 581992 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33129234ns 581995 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33129518ns 582000 1a110850 fd5ff06f jal x0, -44 +33129802ns 582005 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33130086ns 582010 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33130484ns 582017 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33130655ns 582020 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33131109ns 582028 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33131280ns 582031 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33131564ns 582036 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33131848ns 582041 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33132132ns 582046 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33132587ns 582054 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33132758ns 582057 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33133042ns 582062 1a110850 fd5ff06f jal x0, -44 +33133326ns 582067 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33133610ns 582072 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33134008ns 582079 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33134178ns 582082 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33134633ns 582090 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33134803ns 582093 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33135088ns 582098 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33135372ns 582103 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33135656ns 582108 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33136111ns 582116 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33136281ns 582119 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33136565ns 582124 1a110850 fd5ff06f jal x0, -44 +33136849ns 582129 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33137134ns 582134 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33137531ns 582141 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33137702ns 582144 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33138157ns 582152 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33138327ns 582155 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33138611ns 582160 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33138895ns 582165 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33139180ns 582170 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33139634ns 582178 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33139805ns 582181 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33140089ns 582186 1a110850 fd5ff06f jal x0, -44 +33140373ns 582191 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33140657ns 582196 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33141055ns 582203 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33141226ns 582206 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33141680ns 582214 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33141851ns 582217 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33142135ns 582222 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33142419ns 582227 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33142703ns 582232 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33143158ns 582240 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33143328ns 582243 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33143612ns 582248 1a110850 fd5ff06f jal x0, -44 +33143897ns 582253 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33144181ns 582258 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33144579ns 582265 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33144749ns 582268 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33145204ns 582276 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33145374ns 582279 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33145658ns 582284 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33145943ns 582289 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33146227ns 582294 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33146681ns 582302 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33146852ns 582305 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33147136ns 582310 1a110850 fd5ff06f jal x0, -44 +33147420ns 582315 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33147704ns 582320 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33148102ns 582327 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33148273ns 582330 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33148727ns 582338 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33148898ns 582341 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33149182ns 582346 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33149466ns 582351 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33149750ns 582356 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33150205ns 582364 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33150375ns 582367 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33150660ns 582372 1a110850 fd5ff06f jal x0, -44 +33150944ns 582377 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33151228ns 582382 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33151626ns 582389 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33151796ns 582392 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33152251ns 582400 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33152421ns 582403 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33152706ns 582408 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33152990ns 582413 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33153274ns 582418 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33153729ns 582426 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33153899ns 582429 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33154183ns 582434 1a110850 fd5ff06f jal x0, -44 +33154467ns 582439 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33154752ns 582444 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33155149ns 582451 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33155320ns 582454 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33155775ns 582462 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33155945ns 582465 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33156229ns 582470 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33156513ns 582475 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33156797ns 582480 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33157252ns 582488 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33157423ns 582491 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33157707ns 582496 1a110850 fd5ff06f jal x0, -44 +33157991ns 582501 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33158275ns 582506 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33158673ns 582513 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33158843ns 582516 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33159298ns 582524 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33159469ns 582527 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33159753ns 582532 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33160037ns 582537 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33160321ns 582542 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33160776ns 582550 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33160946ns 582553 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33161230ns 582558 1a110850 fd5ff06f jal x0, -44 +33161515ns 582563 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33161799ns 582568 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33162197ns 582575 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33162367ns 582578 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33162822ns 582586 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33162992ns 582589 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33163276ns 582594 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33163560ns 582599 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33163845ns 582604 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33164299ns 582612 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33164470ns 582615 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33164754ns 582620 1a110850 fd5ff06f jal x0, -44 +33165038ns 582625 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33165322ns 582630 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33165720ns 582637 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33165891ns 582640 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33166345ns 582648 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33166516ns 582651 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33166800ns 582656 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33167084ns 582661 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33167368ns 582666 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33167823ns 582674 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33167993ns 582677 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33168278ns 582682 1a110850 fd5ff06f jal x0, -44 +33168562ns 582687 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33168846ns 582692 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33169244ns 582699 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33169414ns 582702 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33169869ns 582710 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33170039ns 582713 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33170323ns 582718 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33170608ns 582723 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33170892ns 582728 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33171346ns 582736 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33171517ns 582739 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33171801ns 582744 1a110850 fd5ff06f jal x0, -44 +33172085ns 582749 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33172369ns 582754 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33172767ns 582761 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33172938ns 582764 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33173392ns 582772 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33173563ns 582775 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33173847ns 582780 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33174131ns 582785 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33174415ns 582790 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33174870ns 582798 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33175041ns 582801 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33175325ns 582806 1a110850 fd5ff06f jal x0, -44 +33175609ns 582811 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33175893ns 582816 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33176291ns 582823 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33176461ns 582826 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33176916ns 582834 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33177087ns 582837 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33177371ns 582842 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33177655ns 582847 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33177939ns 582852 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33178394ns 582860 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33178564ns 582863 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33178848ns 582868 1a110850 fd5ff06f jal x0, -44 +33179132ns 582873 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33179417ns 582878 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33179814ns 582885 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33179985ns 582888 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33180440ns 582896 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33180610ns 582899 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33180894ns 582904 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33181178ns 582909 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33181463ns 582914 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33181917ns 582922 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33182088ns 582925 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33182372ns 582930 1a110850 fd5ff06f jal x0, -44 +33182656ns 582935 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33182940ns 582940 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33183338ns 582947 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33183509ns 582950 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33183963ns 582958 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33184134ns 582961 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33184418ns 582966 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33184702ns 582971 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33184986ns 582976 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33185441ns 582984 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33185611ns 582987 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33185895ns 582992 1a110850 fd5ff06f jal x0, -44 +33186180ns 582997 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33186464ns 583002 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33186862ns 583009 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33187032ns 583012 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33187487ns 583020 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33187657ns 583023 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33187941ns 583028 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33188226ns 583033 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33188510ns 583038 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33188964ns 583046 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33189135ns 583049 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33189419ns 583054 1a110850 fd5ff06f jal x0, -44 +33189703ns 583059 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33189987ns 583064 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33190385ns 583071 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33190556ns 583074 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33191010ns 583082 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33191181ns 583085 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33191465ns 583090 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33191749ns 583095 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33192033ns 583100 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33192488ns 583108 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33192658ns 583111 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33192943ns 583116 1a110850 fd5ff06f jal x0, -44 +33193227ns 583121 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33193511ns 583126 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33193909ns 583133 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33194079ns 583136 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33194534ns 583144 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33194704ns 583147 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33194989ns 583152 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33195273ns 583157 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33195557ns 583162 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33196012ns 583170 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33196182ns 583173 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33196466ns 583178 1a110850 fd5ff06f jal x0, -44 +33196750ns 583183 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33197035ns 583188 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33197432ns 583195 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33197603ns 583198 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33198058ns 583206 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33198228ns 583209 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33198512ns 583214 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33198796ns 583219 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33199080ns 583224 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33199535ns 583232 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33199706ns 583235 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33199990ns 583240 1a110850 fd5ff06f jal x0, -44 +33200274ns 583245 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33200558ns 583250 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33200956ns 583257 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33201126ns 583260 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33201581ns 583268 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33201752ns 583271 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33202036ns 583276 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33202320ns 583281 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33202604ns 583286 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33203059ns 583294 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33203229ns 583297 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33203513ns 583302 1a110850 fd5ff06f jal x0, -44 +33203798ns 583307 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33204082ns 583312 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33204480ns 583319 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33204650ns 583322 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33205105ns 583330 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33205275ns 583333 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33205559ns 583338 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33205843ns 583343 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33206128ns 583348 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33206582ns 583356 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33206753ns 583359 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33207037ns 583364 1a110850 fd5ff06f jal x0, -44 +33207321ns 583369 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33207605ns 583374 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33208003ns 583381 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33208174ns 583384 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33208628ns 583392 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33208799ns 583395 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33209083ns 583400 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33209367ns 583405 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33209651ns 583410 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33210106ns 583418 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33210276ns 583421 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33210561ns 583426 1a110850 fd5ff06f jal x0, -44 +33210845ns 583431 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33211129ns 583436 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33211527ns 583443 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33211697ns 583446 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33212152ns 583454 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33212322ns 583457 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33212607ns 583462 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33212891ns 583467 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33213175ns 583472 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33213629ns 583480 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33213800ns 583483 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33214084ns 583488 1a110850 fd5ff06f jal x0, -44 +33214368ns 583493 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33214652ns 583498 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33215050ns 583505 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33215221ns 583508 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33215675ns 583516 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33215846ns 583519 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33216130ns 583524 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33216414ns 583529 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33216698ns 583534 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33217153ns 583542 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33217324ns 583545 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33217608ns 583550 1a110850 fd5ff06f jal x0, -44 +33217892ns 583555 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33218176ns 583560 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33218574ns 583567 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33218744ns 583570 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33219199ns 583578 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33219370ns 583581 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33219654ns 583586 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33219938ns 583591 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33220222ns 583596 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33220677ns 583604 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33220847ns 583607 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33221131ns 583612 1a110850 fd5ff06f jal x0, -44 +33221415ns 583617 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33221700ns 583622 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33222097ns 583629 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33222268ns 583632 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33222723ns 583640 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33222893ns 583643 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33223177ns 583648 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33223461ns 583653 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33223746ns 583658 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33224200ns 583666 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33224371ns 583669 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33224655ns 583674 1a110850 fd5ff06f jal x0, -44 +33224939ns 583679 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33225223ns 583684 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33225621ns 583691 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33225792ns 583694 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33226246ns 583702 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33226417ns 583705 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33226701ns 583710 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33226985ns 583715 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33227269ns 583720 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33227724ns 583728 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33227894ns 583731 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33228178ns 583736 1a110850 fd5ff06f jal x0, -44 +33228463ns 583741 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33228747ns 583746 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33229145ns 583753 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33229315ns 583756 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33229770ns 583764 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33229940ns 583767 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33230224ns 583772 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33230509ns 583777 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33230793ns 583782 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33231247ns 583790 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33231418ns 583793 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33231702ns 583798 1a110850 fd5ff06f jal x0, -44 +33231986ns 583803 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33232270ns 583808 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33232668ns 583815 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33232839ns 583818 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33233293ns 583826 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33233464ns 583829 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33233748ns 583834 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33234032ns 583839 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33234316ns 583844 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33234771ns 583852 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33234941ns 583855 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33235226ns 583860 1a110850 fd5ff06f jal x0, -44 +33235510ns 583865 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33235794ns 583870 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33236192ns 583877 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33236362ns 583880 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33236817ns 583888 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33236987ns 583891 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33237272ns 583896 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33237556ns 583901 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33237840ns 583906 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33238295ns 583914 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33238465ns 583917 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33238749ns 583922 1a110850 fd5ff06f jal x0, -44 +33239033ns 583927 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33239318ns 583932 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33239715ns 583939 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33239886ns 583942 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33240341ns 583950 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33240511ns 583953 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33240795ns 583958 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33241079ns 583963 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33241363ns 583968 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33241818ns 583976 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33241989ns 583979 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33242273ns 583984 1a110850 fd5ff06f jal x0, -44 +33242557ns 583989 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33242841ns 583994 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33243239ns 584001 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33243409ns 584004 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33243864ns 584012 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33244035ns 584015 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33244319ns 584020 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33244603ns 584025 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33244887ns 584030 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33245342ns 584038 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33245512ns 584041 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33245796ns 584046 1a110850 fd5ff06f jal x0, -44 +33246081ns 584051 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33246365ns 584056 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33246763ns 584063 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33246933ns 584066 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33247388ns 584074 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33247558ns 584077 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33247842ns 584082 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33248127ns 584087 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33248411ns 584092 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33248865ns 584100 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33249036ns 584103 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33249320ns 584108 1a110850 fd5ff06f jal x0, -44 +33249604ns 584113 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33249888ns 584118 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33250286ns 584125 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33250457ns 584128 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33250911ns 584136 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33251082ns 584139 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33251366ns 584144 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33251650ns 584149 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33251934ns 584154 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33252389ns 584162 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33252559ns 584165 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33252844ns 584170 1a110850 fd5ff06f jal x0, -44 +33253128ns 584175 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33253412ns 584180 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33253810ns 584187 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33253980ns 584190 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33254435ns 584198 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33254605ns 584201 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33254890ns 584206 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33255174ns 584211 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33255458ns 584216 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33255912ns 584224 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33256083ns 584227 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33256367ns 584232 1a110850 fd5ff06f jal x0, -44 +33256651ns 584237 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33256935ns 584242 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33257333ns 584249 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33257504ns 584252 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33257958ns 584260 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33258129ns 584263 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33258413ns 584268 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33258697ns 584273 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33258981ns 584278 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33259436ns 584286 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33259607ns 584289 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33259891ns 584294 1a110850 fd5ff06f jal x0, -44 +33260175ns 584299 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33260459ns 584304 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33260857ns 584311 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33261027ns 584314 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33261482ns 584322 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33261653ns 584325 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33261937ns 584330 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33262221ns 584335 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33262505ns 584340 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33262960ns 584348 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33263130ns 584351 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33263414ns 584356 1a110850 fd5ff06f jal x0, -44 +33263698ns 584361 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33263983ns 584366 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33264380ns 584373 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33264551ns 584376 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33265006ns 584384 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33265176ns 584387 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33265460ns 584392 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33265744ns 584397 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33266029ns 584402 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33266483ns 584410 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33266654ns 584413 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33266938ns 584418 1a110850 fd5ff06f jal x0, -44 +33267222ns 584423 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33267506ns 584428 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33267904ns 584435 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33268075ns 584438 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33268529ns 584446 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33268700ns 584449 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33268984ns 584454 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33269268ns 584459 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33269552ns 584464 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33270007ns 584472 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33270177ns 584475 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33270461ns 584480 1a110850 fd5ff06f jal x0, -44 +33270746ns 584485 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33271030ns 584490 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33271428ns 584497 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33271598ns 584500 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33272053ns 584508 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33272223ns 584511 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33272507ns 584516 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33272792ns 584521 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33273076ns 584526 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33273530ns 584534 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33273701ns 584537 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33273985ns 584542 1a110850 fd5ff06f jal x0, -44 +33274269ns 584547 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33274553ns 584552 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33274951ns 584559 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33275122ns 584562 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33275576ns 584570 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33275747ns 584573 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33276031ns 584578 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33276315ns 584583 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33276599ns 584588 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33277054ns 584596 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33277224ns 584599 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33277509ns 584604 1a110850 fd5ff06f jal x0, -44 +33277793ns 584609 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33278077ns 584614 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33278475ns 584621 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33278645ns 584624 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33279100ns 584632 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33279270ns 584635 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33279555ns 584640 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33279839ns 584645 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33280123ns 584650 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33280578ns 584658 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33280748ns 584661 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33281032ns 584666 1a110850 fd5ff06f jal x0, -44 +33281316ns 584671 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33281601ns 584676 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33281998ns 584683 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33282169ns 584686 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33282624ns 584694 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33282794ns 584697 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33283078ns 584702 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33283362ns 584707 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33283647ns 584712 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33284101ns 584720 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33284272ns 584723 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33284556ns 584728 1a110850 fd5ff06f jal x0, -44 +33284840ns 584733 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33285124ns 584738 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33285522ns 584745 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33285692ns 584748 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33286147ns 584756 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33286318ns 584759 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33286602ns 584764 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33286886ns 584769 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33287170ns 584774 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33287625ns 584782 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33287795ns 584785 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33288079ns 584790 1a110850 fd5ff06f jal x0, -44 +33288364ns 584795 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33288648ns 584800 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33289046ns 584807 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33289216ns 584810 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33289671ns 584818 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33289841ns 584821 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33290125ns 584826 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33290410ns 584831 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33290694ns 584836 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33291148ns 584844 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33291319ns 584847 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33291603ns 584852 1a110850 fd5ff06f jal x0, -44 +33291887ns 584857 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33292171ns 584862 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33292569ns 584869 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33292740ns 584872 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33293194ns 584880 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33293365ns 584883 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33293649ns 584888 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33293933ns 584893 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33294217ns 584898 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33294672ns 584906 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33294842ns 584909 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33295127ns 584914 1a110850 fd5ff06f jal x0, -44 +33295411ns 584919 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33295695ns 584924 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33296093ns 584931 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33296263ns 584934 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33296718ns 584942 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33296888ns 584945 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33297173ns 584950 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33297457ns 584955 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33297741ns 584960 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33298195ns 584968 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33298366ns 584971 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33298650ns 584976 1a110850 fd5ff06f jal x0, -44 +33298934ns 584981 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33299218ns 584986 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33299616ns 584993 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33299787ns 584996 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33300241ns 585004 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33300412ns 585007 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33300696ns 585012 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33300980ns 585017 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33301264ns 585022 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33301719ns 585030 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33301890ns 585033 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33302174ns 585038 1a110850 fd5ff06f jal x0, -44 +33302458ns 585043 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33302742ns 585048 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33303140ns 585055 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33303310ns 585058 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33303765ns 585066 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33303936ns 585069 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33304220ns 585074 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33304504ns 585079 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33304788ns 585084 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33305243ns 585092 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33305413ns 585095 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33305697ns 585100 1a110850 fd5ff06f jal x0, -44 +33305981ns 585105 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33306266ns 585110 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33306663ns 585117 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33306834ns 585120 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33307289ns 585128 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33307459ns 585131 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33307743ns 585136 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33308027ns 585141 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33308312ns 585146 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33308766ns 585154 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33308937ns 585157 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33309221ns 585162 1a110850 fd5ff06f jal x0, -44 +33309505ns 585167 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33309789ns 585172 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33310187ns 585179 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33310358ns 585182 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33310812ns 585190 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33310983ns 585193 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33311267ns 585198 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33311551ns 585203 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33311835ns 585208 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33312290ns 585216 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33312460ns 585219 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33312744ns 585224 1a110850 fd5ff06f jal x0, -44 +33313029ns 585229 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33313313ns 585234 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33313711ns 585241 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33313881ns 585244 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33314336ns 585252 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33314506ns 585255 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33314790ns 585260 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33315075ns 585265 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33315359ns 585270 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33315813ns 585278 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33315984ns 585281 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33316268ns 585286 1a110850 fd5ff06f jal x0, -44 +33316552ns 585291 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33316836ns 585296 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33317234ns 585303 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33317405ns 585306 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33317859ns 585314 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33318030ns 585317 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33318314ns 585322 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33318598ns 585327 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33318882ns 585332 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33319337ns 585340 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33319507ns 585343 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33319792ns 585348 1a110850 fd5ff06f jal x0, -44 +33320076ns 585353 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33320360ns 585358 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33320758ns 585365 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33320928ns 585368 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33321383ns 585376 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33321553ns 585379 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33321838ns 585384 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33322122ns 585389 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33322406ns 585394 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33322861ns 585402 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33323031ns 585405 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33323315ns 585410 1a110850 fd5ff06f jal x0, -44 +33323599ns 585415 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33323884ns 585420 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33324281ns 585427 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33324452ns 585430 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33324907ns 585438 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33325077ns 585441 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33325361ns 585446 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33325645ns 585451 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33325930ns 585456 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33326384ns 585464 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33326555ns 585467 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33326839ns 585472 1a110850 fd5ff06f jal x0, -44 +33327123ns 585477 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33327407ns 585482 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33327805ns 585489 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33327975ns 585492 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33328430ns 585500 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33328601ns 585503 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33328885ns 585508 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33329169ns 585513 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33329453ns 585518 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33329908ns 585526 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33330078ns 585529 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33330362ns 585534 1a110850 fd5ff06f jal x0, -44 +33330647ns 585539 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33330931ns 585544 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33331329ns 585551 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33331499ns 585554 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33331954ns 585562 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33332124ns 585565 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33332408ns 585570 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33332693ns 585575 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33332977ns 585580 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33333431ns 585588 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33333602ns 585591 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33333886ns 585596 1a110850 fd5ff06f jal x0, -44 +33334170ns 585601 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33334454ns 585606 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33334852ns 585613 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33335023ns 585616 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33335477ns 585624 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33335648ns 585627 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33335932ns 585632 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33336216ns 585637 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33336500ns 585642 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33336955ns 585650 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33337125ns 585653 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33337410ns 585658 1a110850 fd5ff06f jal x0, -44 +33337694ns 585663 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33337978ns 585668 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33338376ns 585675 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33338546ns 585678 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33339001ns 585686 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33339171ns 585689 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33339456ns 585694 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33339740ns 585699 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33340024ns 585704 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33340479ns 585712 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33340649ns 585715 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33340933ns 585720 1a110850 fd5ff06f jal x0, -44 +33341217ns 585725 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33341501ns 585730 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33341899ns 585737 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33342070ns 585740 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33342524ns 585748 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33342695ns 585751 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33342979ns 585756 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33343263ns 585761 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33343547ns 585766 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33344002ns 585774 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33344173ns 585777 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33344457ns 585782 1a110850 fd5ff06f jal x0, -44 +33344741ns 585787 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33345025ns 585792 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33345423ns 585799 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33345593ns 585802 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33346048ns 585810 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33346219ns 585813 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33346503ns 585818 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33346787ns 585823 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33347071ns 585828 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33347526ns 585836 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33347696ns 585839 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33347980ns 585844 1a110850 fd5ff06f jal x0, -44 +33348264ns 585849 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33348549ns 585854 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33348946ns 585861 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33349117ns 585864 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33349572ns 585872 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33349742ns 585875 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33350026ns 585880 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33350310ns 585885 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33350595ns 585890 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33351049ns 585898 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33351220ns 585901 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33351504ns 585906 1a110850 fd5ff06f jal x0, -44 +33351788ns 585911 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33352072ns 585916 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33352470ns 585923 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33352641ns 585926 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33353095ns 585934 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33353266ns 585937 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33353550ns 585942 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33353834ns 585947 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33354118ns 585952 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33354573ns 585960 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33354743ns 585963 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33355027ns 585968 1a110850 fd5ff06f jal x0, -44 +33355312ns 585973 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33355596ns 585978 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33355994ns 585985 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33356164ns 585988 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33356619ns 585996 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33356789ns 585999 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33357073ns 586004 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33357358ns 586009 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33357642ns 586014 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33358096ns 586022 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33358267ns 586025 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33358551ns 586030 1a110850 fd5ff06f jal x0, -44 +33358835ns 586035 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33359119ns 586040 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33359517ns 586047 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33359688ns 586050 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33360142ns 586058 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33360313ns 586061 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33360597ns 586066 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33360881ns 586071 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33361165ns 586076 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33361620ns 586084 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33361791ns 586087 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33362075ns 586092 1a110850 fd5ff06f jal x0, -44 +33362359ns 586097 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33362643ns 586102 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33363041ns 586109 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33363211ns 586112 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33363666ns 586120 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33363836ns 586123 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33364121ns 586128 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33364405ns 586133 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33364689ns 586138 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33365144ns 586146 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33365314ns 586149 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33365598ns 586154 1a110850 fd5ff06f jal x0, -44 +33365882ns 586159 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33366167ns 586164 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33366564ns 586171 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33366735ns 586174 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33367190ns 586182 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33367360ns 586185 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33367644ns 586190 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33367928ns 586195 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33368213ns 586200 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33368667ns 586208 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33368838ns 586211 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33369122ns 586216 1a110850 fd5ff06f jal x0, -44 +33369406ns 586221 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33369690ns 586226 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33370088ns 586233 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33370258ns 586236 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33370713ns 586244 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33370884ns 586247 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33371168ns 586252 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33371452ns 586257 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33371736ns 586262 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33372191ns 586270 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33372361ns 586273 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33372645ns 586278 1a110850 fd5ff06f jal x0, -44 +33372930ns 586283 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33373214ns 586288 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33373612ns 586295 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33373782ns 586298 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33374237ns 586306 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33374407ns 586309 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33374691ns 586314 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33374976ns 586319 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33375260ns 586324 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33375714ns 586332 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33375885ns 586335 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33376169ns 586340 1a110850 fd5ff06f jal x0, -44 +33376453ns 586345 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33376737ns 586350 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33377135ns 586357 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33377306ns 586360 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33377760ns 586368 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33377931ns 586371 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33378215ns 586376 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33378499ns 586381 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33378783ns 586386 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33379238ns 586394 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33379408ns 586397 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33379693ns 586402 1a110850 fd5ff06f jal x0, -44 +33379977ns 586407 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33380261ns 586412 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33380659ns 586419 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33380829ns 586422 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33381284ns 586430 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33381454ns 586433 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33381739ns 586438 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33382023ns 586443 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33382307ns 586448 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33382762ns 586456 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33382932ns 586459 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33383216ns 586464 1a110850 fd5ff06f jal x0, -44 +33383500ns 586469 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33383784ns 586474 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33384182ns 586481 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33384353ns 586484 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33384807ns 586492 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33384978ns 586495 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33385262ns 586500 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33385546ns 586505 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33385830ns 586510 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33386285ns 586518 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33386456ns 586521 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33386740ns 586526 1a110850 fd5ff06f jal x0, -44 +33387024ns 586531 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33387308ns 586536 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33387706ns 586543 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33387876ns 586546 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33388331ns 586554 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33388502ns 586557 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33388786ns 586562 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33389070ns 586567 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33389354ns 586572 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33389809ns 586580 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33389979ns 586583 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33390263ns 586588 1a110850 fd5ff06f jal x0, -44 +33390547ns 586593 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33390832ns 586598 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33391229ns 586605 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33391400ns 586608 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33391855ns 586616 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33392025ns 586619 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33392309ns 586624 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33392593ns 586629 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33392878ns 586634 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33393332ns 586642 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33393503ns 586645 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33393787ns 586650 1a110850 fd5ff06f jal x0, -44 +33394071ns 586655 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33394355ns 586660 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33394753ns 586667 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33394924ns 586670 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33395378ns 586678 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33395549ns 586681 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33395833ns 586686 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33396117ns 586691 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33396401ns 586696 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33396856ns 586704 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33397026ns 586707 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33397311ns 586712 1a110850 fd5ff06f jal x0, -44 +33397595ns 586717 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33397879ns 586722 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33398277ns 586729 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33398447ns 586732 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33398902ns 586740 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33399072ns 586743 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33399356ns 586748 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33399641ns 586753 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33399925ns 586758 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33400379ns 586766 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33400550ns 586769 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33400834ns 586774 1a110850 fd5ff06f jal x0, -44 +33401118ns 586779 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33401402ns 586784 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33401800ns 586791 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33401971ns 586794 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33402425ns 586802 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33402596ns 586805 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33402880ns 586810 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33403164ns 586815 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33403448ns 586820 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33403903ns 586828 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33404074ns 586831 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33404358ns 586836 1a110850 fd5ff06f jal x0, -44 +33404642ns 586841 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33404926ns 586846 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33405324ns 586853 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33405494ns 586856 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33405949ns 586864 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33406119ns 586867 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33406404ns 586872 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33406688ns 586877 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33406972ns 586882 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33407427ns 586890 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33407597ns 586893 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33407881ns 586898 1a110850 fd5ff06f jal x0, -44 +33408165ns 586903 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33408450ns 586908 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33408847ns 586915 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33409018ns 586918 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33409473ns 586926 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33409643ns 586929 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33409927ns 586934 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33410211ns 586939 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33410496ns 586944 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33410950ns 586952 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33411121ns 586955 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33411405ns 586960 1a110850 fd5ff06f jal x0, -44 +33411689ns 586965 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33411973ns 586970 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33412371ns 586977 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33412541ns 586980 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33412996ns 586988 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33413167ns 586991 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33413451ns 586996 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33413735ns 587001 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33414019ns 587006 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33414474ns 587014 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33414644ns 587017 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33414928ns 587022 1a110850 fd5ff06f jal x0, -44 +33415213ns 587027 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33415497ns 587032 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33415895ns 587039 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33416065ns 587042 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33416520ns 587050 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33416690ns 587053 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33416974ns 587058 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33417259ns 587063 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33417543ns 587068 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33417997ns 587076 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33418168ns 587079 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33418452ns 587084 1a110850 fd5ff06f jal x0, -44 +33418736ns 587089 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33419020ns 587094 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33419418ns 587101 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33419589ns 587104 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33420043ns 587112 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33420214ns 587115 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33420498ns 587120 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33420782ns 587125 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33421066ns 587130 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33421521ns 587138 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33421691ns 587141 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33421976ns 587146 1a110850 fd5ff06f jal x0, -44 +33422260ns 587151 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33422544ns 587156 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33422942ns 587163 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33423112ns 587166 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33423567ns 587174 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33423737ns 587177 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33424022ns 587182 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33424306ns 587187 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33424590ns 587192 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33425045ns 587200 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33425215ns 587203 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33425499ns 587208 1a110850 fd5ff06f jal x0, -44 +33425783ns 587213 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33426067ns 587218 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33426465ns 587225 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33426636ns 587228 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33427090ns 587236 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33427261ns 587239 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33427545ns 587244 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33427829ns 587249 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33428113ns 587254 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33428568ns 587262 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33428739ns 587265 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33429023ns 587270 1a110850 fd5ff06f jal x0, -44 +33429307ns 587275 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33429591ns 587280 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33429989ns 587287 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33430159ns 587290 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33430614ns 587298 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33430785ns 587301 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33431069ns 587306 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33431353ns 587311 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33431637ns 587316 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33432092ns 587324 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33432262ns 587327 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33432546ns 587332 1a110850 fd5ff06f jal x0, -44 +33432831ns 587337 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33433115ns 587342 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33433512ns 587349 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33433683ns 587352 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33434138ns 587360 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33434308ns 587363 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33434592ns 587368 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33434876ns 587373 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33435161ns 587378 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33435615ns 587386 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33435786ns 587389 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33436070ns 587394 1a110850 fd5ff06f jal x0, -44 +33436354ns 587399 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33436638ns 587404 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33437036ns 587411 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33437207ns 587414 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33437661ns 587422 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33437832ns 587425 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33438116ns 587430 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33438400ns 587435 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33438684ns 587440 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33439139ns 587448 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33439309ns 587451 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33439594ns 587456 1a110850 fd5ff06f jal x0, -44 +33439878ns 587461 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33440162ns 587466 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33440560ns 587473 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33440730ns 587476 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33441185ns 587484 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33441355ns 587487 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33441639ns 587492 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33441924ns 587497 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33442208ns 587502 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33442662ns 587510 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33442833ns 587513 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33443117ns 587518 1a110850 fd5ff06f jal x0, -44 +33443401ns 587523 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33443685ns 587528 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33444083ns 587535 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33444254ns 587538 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33444708ns 587546 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33444879ns 587549 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33445163ns 587554 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33445447ns 587559 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33445731ns 587564 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33446186ns 587572 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33446357ns 587575 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33446641ns 587580 1a110850 fd5ff06f jal x0, -44 +33446925ns 587585 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33447209ns 587590 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33447607ns 587597 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33447777ns 587600 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33448232ns 587608 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33448402ns 587611 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33448687ns 587616 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33448971ns 587621 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33449255ns 587626 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33449710ns 587634 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33449880ns 587637 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33450164ns 587642 1a110850 fd5ff06f jal x0, -44 +33450448ns 587647 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33450733ns 587652 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33451130ns 587659 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33451301ns 587662 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33451756ns 587670 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33451926ns 587673 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33452210ns 587678 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33452494ns 587683 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33452779ns 587688 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33453233ns 587696 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33453404ns 587699 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33453688ns 587704 1a110850 fd5ff06f jal x0, -44 +33453972ns 587709 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33454256ns 587714 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33454654ns 587721 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33454824ns 587724 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33455279ns 587732 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33455450ns 587735 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33455734ns 587740 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33456018ns 587745 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33456302ns 587750 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33456757ns 587758 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33456927ns 587761 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33457211ns 587766 1a110850 fd5ff06f jal x0, -44 +33457496ns 587771 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33457780ns 587776 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33458178ns 587783 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33458348ns 587786 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33458803ns 587794 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33458973ns 587797 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33459257ns 587802 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33459542ns 587807 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33459826ns 587812 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33460280ns 587820 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33460451ns 587823 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33460735ns 587828 1a110850 fd5ff06f jal x0, -44 +33461019ns 587833 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33461303ns 587838 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33461701ns 587845 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33461872ns 587848 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33462326ns 587856 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33462497ns 587859 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33462781ns 587864 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33463065ns 587869 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33463349ns 587874 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33463804ns 587882 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33463974ns 587885 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33464259ns 587890 1a110850 fd5ff06f jal x0, -44 +33464543ns 587895 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33464827ns 587900 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33465225ns 587907 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33465395ns 587910 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33465850ns 587918 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33466020ns 587921 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33466305ns 587926 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33466589ns 587931 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33466873ns 587936 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33467328ns 587944 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33467498ns 587947 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33467782ns 587952 1a110850 fd5ff06f jal x0, -44 +33468066ns 587957 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33468351ns 587962 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33468748ns 587969 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33468919ns 587972 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33469373ns 587980 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33469544ns 587983 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33469828ns 587988 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33470112ns 587993 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33470396ns 587998 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33470851ns 588006 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33471022ns 588009 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33471306ns 588014 1a110850 fd5ff06f jal x0, -44 +33471590ns 588019 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33471874ns 588024 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33472272ns 588031 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33472442ns 588034 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33472897ns 588042 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33473068ns 588045 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33473352ns 588050 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33473636ns 588055 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33473920ns 588060 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33474375ns 588068 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33474545ns 588071 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33474829ns 588076 1a110850 fd5ff06f jal x0, -44 +33475114ns 588081 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33475398ns 588086 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33475795ns 588093 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33475966ns 588096 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33476421ns 588104 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33476591ns 588107 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33476875ns 588112 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33477159ns 588117 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33477444ns 588122 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33477898ns 588130 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33478069ns 588133 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33478353ns 588138 1a110850 fd5ff06f jal x0, -44 +33478637ns 588143 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33478921ns 588148 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33479319ns 588155 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33479490ns 588158 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33479944ns 588166 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33480115ns 588169 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33480399ns 588174 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33480683ns 588179 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33480967ns 588184 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33481422ns 588192 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33481592ns 588195 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33481877ns 588200 1a110850 fd5ff06f jal x0, -44 +33482161ns 588205 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33482445ns 588210 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33482843ns 588217 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33483013ns 588220 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33483468ns 588228 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33483638ns 588231 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33483922ns 588236 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33484207ns 588241 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33484491ns 588246 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33484945ns 588254 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33485116ns 588257 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33485400ns 588262 1a110850 fd5ff06f jal x0, -44 +33485684ns 588267 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33485968ns 588272 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33486366ns 588279 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33486537ns 588282 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33486991ns 588290 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33487162ns 588293 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33487446ns 588298 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33487730ns 588303 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33488014ns 588308 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33488469ns 588316 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33488640ns 588319 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33488924ns 588324 1a110850 fd5ff06f jal x0, -44 +33489208ns 588329 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33489492ns 588334 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33489890ns 588341 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33490060ns 588344 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33490515ns 588352 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33490685ns 588355 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33490970ns 588360 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33491254ns 588365 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33491538ns 588370 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33491993ns 588378 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33492163ns 588381 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33492447ns 588386 1a110850 fd5ff06f jal x0, -44 +33492731ns 588391 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33493016ns 588396 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33493413ns 588403 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33493584ns 588406 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33494039ns 588414 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33494209ns 588417 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33494493ns 588422 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33494777ns 588427 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33495062ns 588432 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33495516ns 588440 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33495687ns 588443 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33495971ns 588448 1a110850 fd5ff06f jal x0, -44 +33496255ns 588453 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33496539ns 588458 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33496937ns 588465 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33497107ns 588468 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33497562ns 588476 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33497733ns 588479 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33498017ns 588484 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33498301ns 588489 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33498585ns 588494 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33499040ns 588502 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33499210ns 588505 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33499494ns 588510 1a110850 fd5ff06f jal x0, -44 +33499779ns 588515 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33500063ns 588520 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33500461ns 588527 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33500631ns 588530 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33501086ns 588538 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33501256ns 588541 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33501540ns 588546 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33501825ns 588551 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33502109ns 588556 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33502563ns 588564 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33502734ns 588567 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33503018ns 588572 1a110850 fd5ff06f jal x0, -44 +33503302ns 588577 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33503586ns 588582 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33503984ns 588589 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33504155ns 588592 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33504609ns 588600 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33504780ns 588603 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33505064ns 588608 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33505348ns 588613 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33505632ns 588618 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33506087ns 588626 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33506257ns 588629 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33506542ns 588634 1a110850 fd5ff06f jal x0, -44 +33506826ns 588639 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33507110ns 588644 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33507508ns 588651 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33507678ns 588654 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33508133ns 588662 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33508303ns 588665 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33508588ns 588670 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33508872ns 588675 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33509156ns 588680 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33509611ns 588688 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33509781ns 588691 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33510065ns 588696 1a110850 fd5ff06f jal x0, -44 +33510349ns 588701 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33510634ns 588706 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33511031ns 588713 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33511202ns 588716 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33511656ns 588724 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33511827ns 588727 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33512111ns 588732 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33512395ns 588737 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33512679ns 588742 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33513134ns 588750 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33513305ns 588753 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33513589ns 588758 1a110850 fd5ff06f jal x0, -44 +33513873ns 588763 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33514157ns 588768 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33514555ns 588775 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33514725ns 588778 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33515180ns 588786 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33515351ns 588789 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33515635ns 588794 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33515919ns 588799 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33516203ns 588804 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33516658ns 588812 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33516828ns 588815 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33517112ns 588820 1a110850 fd5ff06f jal x0, -44 +33517397ns 588825 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33517681ns 588830 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33518079ns 588837 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33518249ns 588840 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33518704ns 588848 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33518874ns 588851 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33519158ns 588856 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33519442ns 588861 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33519727ns 588866 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33520181ns 588874 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33520352ns 588877 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33520636ns 588882 1a110850 fd5ff06f jal x0, -44 +33520920ns 588887 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33521204ns 588892 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33521602ns 588899 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33521773ns 588902 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33522227ns 588910 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33522398ns 588913 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33522682ns 588918 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33522966ns 588923 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33523250ns 588928 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33523705ns 588936 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33523875ns 588939 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33524160ns 588944 1a110850 fd5ff06f jal x0, -44 +33524444ns 588949 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33524728ns 588954 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33525126ns 588961 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33525296ns 588964 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33525751ns 588972 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33525921ns 588975 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33526205ns 588980 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33526490ns 588985 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33526774ns 588990 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33527228ns 588998 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33527399ns 589001 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33527683ns 589006 1a110850 fd5ff06f jal x0, -44 +33527967ns 589011 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33528251ns 589016 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33528649ns 589023 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33528820ns 589026 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33529274ns 589034 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33529445ns 589037 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33529729ns 589042 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33530013ns 589047 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33530297ns 589052 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33530752ns 589060 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33530923ns 589063 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33531207ns 589068 1a110850 fd5ff06f jal x0, -44 +33531491ns 589073 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33531775ns 589078 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33532173ns 589085 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33532343ns 589088 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33532798ns 589096 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33532968ns 589099 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33533253ns 589104 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33533537ns 589109 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33533821ns 589114 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33534276ns 589122 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33534446ns 589125 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33534730ns 589130 1a110850 fd5ff06f jal x0, -44 +33535014ns 589135 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33535299ns 589140 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33535696ns 589147 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33535867ns 589150 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33536322ns 589158 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33536492ns 589161 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33536776ns 589166 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33537060ns 589171 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33537345ns 589176 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33537799ns 589184 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33537970ns 589187 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33538254ns 589192 1a110850 fd5ff06f jal x0, -44 +33538538ns 589197 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33538822ns 589202 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33539220ns 589209 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33539391ns 589212 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33539845ns 589220 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33540016ns 589223 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33540300ns 589228 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33540584ns 589233 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33540868ns 589238 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33541323ns 589246 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33541493ns 589249 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33541777ns 589254 1a110850 fd5ff06f jal x0, -44 +33542062ns 589259 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33542346ns 589264 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33542744ns 589271 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33542914ns 589274 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33543369ns 589282 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33543539ns 589285 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33543823ns 589290 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33544108ns 589295 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33544392ns 589300 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33544846ns 589308 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33545017ns 589311 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33545301ns 589316 1a110850 fd5ff06f jal x0, -44 +33545585ns 589321 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33545869ns 589326 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33546267ns 589333 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33546438ns 589336 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33546892ns 589344 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33547063ns 589347 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33547347ns 589352 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33547631ns 589357 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33547915ns 589362 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33548370ns 589370 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33548540ns 589373 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33548825ns 589378 1a110850 fd5ff06f jal x0, -44 +33549109ns 589383 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33549393ns 589388 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33549791ns 589395 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33549961ns 589398 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33550416ns 589406 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33550586ns 589409 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33550871ns 589414 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33551155ns 589419 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33551439ns 589424 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33551894ns 589432 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33552064ns 589435 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33552348ns 589440 1a110850 fd5ff06f jal x0, -44 +33552632ns 589445 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33552917ns 589450 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33553314ns 589457 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33553485ns 589460 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33553939ns 589468 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33554110ns 589471 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33554394ns 589476 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33554678ns 589481 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33554962ns 589486 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33555417ns 589494 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33555588ns 589497 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33555872ns 589502 1a110850 fd5ff06f jal x0, -44 +33556156ns 589507 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33556440ns 589512 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33556838ns 589519 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33557008ns 589522 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33557463ns 589530 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33557634ns 589533 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33557918ns 589538 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33558202ns 589543 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33558486ns 589548 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33558941ns 589556 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33559111ns 589559 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33559395ns 589564 1a110850 fd5ff06f jal x0, -44 +33559680ns 589569 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33559964ns 589574 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33560362ns 589581 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33560532ns 589584 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33560987ns 589592 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33561157ns 589595 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33561441ns 589600 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33561725ns 589605 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33562010ns 589610 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33562464ns 589618 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33562635ns 589621 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33562919ns 589626 1a110850 fd5ff06f jal x0, -44 +33563203ns 589631 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33563487ns 589636 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33563885ns 589643 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33564056ns 589646 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33564510ns 589654 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33564681ns 589657 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33564965ns 589662 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33565249ns 589667 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33565533ns 589672 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33565988ns 589680 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33566158ns 589683 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33566443ns 589688 1a110850 fd5ff06f jal x0, -44 +33566727ns 589693 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33567011ns 589698 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33567409ns 589705 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33567579ns 589708 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33568034ns 589716 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33568204ns 589719 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33568488ns 589724 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33568773ns 589729 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33569057ns 589734 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33569511ns 589742 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33569682ns 589745 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33569966ns 589750 1a110850 fd5ff06f jal x0, -44 +33570250ns 589755 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33570534ns 589760 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33570932ns 589767 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33571103ns 589770 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33571557ns 589778 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33571728ns 589781 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33572012ns 589786 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33572296ns 589791 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33572580ns 589796 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33573035ns 589804 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33573206ns 589807 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33573490ns 589812 1a110850 fd5ff06f jal x0, -44 +33573774ns 589817 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33574058ns 589822 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33574456ns 589829 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33574626ns 589832 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33575081ns 589840 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33575251ns 589843 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33575536ns 589848 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33575820ns 589853 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33576104ns 589858 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33576559ns 589866 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33576729ns 589869 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33577013ns 589874 1a110850 fd5ff06f jal x0, -44 +33577297ns 589879 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33577582ns 589884 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33577979ns 589891 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33578150ns 589894 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33578605ns 589902 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33578775ns 589905 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33579059ns 589910 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33579343ns 589915 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33579628ns 589920 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33580082ns 589928 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33580253ns 589931 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33580537ns 589936 1a110850 fd5ff06f jal x0, -44 +33580821ns 589941 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33581105ns 589946 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33581503ns 589953 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33581674ns 589956 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33582128ns 589964 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33582299ns 589967 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33582583ns 589972 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33582867ns 589977 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33583151ns 589982 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33583606ns 589990 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33583776ns 589993 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33584060ns 589998 1a110850 fd5ff06f jal x0, -44 +33584345ns 590003 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33584629ns 590008 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33585027ns 590015 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33585197ns 590018 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33585652ns 590026 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33585822ns 590029 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33586106ns 590034 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33586391ns 590039 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33586675ns 590044 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33587129ns 590052 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33587300ns 590055 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33587584ns 590060 1a110850 fd5ff06f jal x0, -44 +33587868ns 590065 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33588152ns 590070 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33588550ns 590077 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33588721ns 590080 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33589175ns 590088 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33589346ns 590091 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33589630ns 590096 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33589914ns 590101 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33590198ns 590106 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33590653ns 590114 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33590823ns 590117 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33591108ns 590122 1a110850 fd5ff06f jal x0, -44 +33591392ns 590127 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33591676ns 590132 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33592074ns 590139 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33592244ns 590142 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33592699ns 590150 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33592869ns 590153 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33593154ns 590158 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33593438ns 590163 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33593722ns 590168 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33594177ns 590176 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33594347ns 590179 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33594631ns 590184 1a110850 fd5ff06f jal x0, -44 +33594915ns 590189 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33595200ns 590194 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33595597ns 590201 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33595768ns 590204 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33596223ns 590212 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33596393ns 590215 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33596677ns 590220 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33596961ns 590225 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33597245ns 590230 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33597700ns 590238 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33597871ns 590241 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33598155ns 590246 1a110850 fd5ff06f jal x0, -44 +33598439ns 590251 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33598723ns 590256 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33599121ns 590263 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33599291ns 590266 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33599746ns 590274 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33599917ns 590277 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33600201ns 590282 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33600485ns 590287 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33600769ns 590292 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33601224ns 590300 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33601394ns 590303 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33601678ns 590308 1a110850 fd5ff06f jal x0, -44 +33601963ns 590313 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33602247ns 590318 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33602645ns 590325 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33602815ns 590328 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33603270ns 590336 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33603440ns 590339 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33603724ns 590344 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33604008ns 590349 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33604293ns 590354 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33604747ns 590362 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33604918ns 590365 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33605202ns 590370 1a110850 fd5ff06f jal x0, -44 +33605486ns 590375 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33605770ns 590380 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33606168ns 590387 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33606339ns 590390 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33606793ns 590398 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33606964ns 590401 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33607248ns 590406 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33607532ns 590411 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33607816ns 590416 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33608271ns 590424 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33608441ns 590427 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33608726ns 590432 1a110850 fd5ff06f jal x0, -44 +33609010ns 590437 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33609294ns 590442 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33609692ns 590449 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33609862ns 590452 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33610317ns 590460 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33610487ns 590463 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33610771ns 590468 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33611056ns 590473 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33611340ns 590478 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33611794ns 590486 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33611965ns 590489 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33612249ns 590494 1a110850 fd5ff06f jal x0, -44 +33612533ns 590499 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33612817ns 590504 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33613215ns 590511 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33613386ns 590514 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33613840ns 590522 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33614011ns 590525 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33614295ns 590530 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33614579ns 590535 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33614863ns 590540 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33615318ns 590548 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33615489ns 590551 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33615773ns 590556 1a110850 fd5ff06f jal x0, -44 +33616057ns 590561 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33616341ns 590566 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33616739ns 590573 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33616909ns 590576 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33617364ns 590584 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33617535ns 590587 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33617819ns 590592 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33618103ns 590597 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33618387ns 590602 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33618842ns 590610 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33619012ns 590613 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33619296ns 590618 1a110850 fd5ff06f jal x0, -44 +33619580ns 590623 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33619865ns 590628 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33620262ns 590635 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33620433ns 590638 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33620888ns 590646 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33621058ns 590649 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33621342ns 590654 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33621626ns 590659 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33621911ns 590664 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33622365ns 590672 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33622536ns 590675 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33622820ns 590680 1a110850 fd5ff06f jal x0, -44 +33623104ns 590685 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33623388ns 590690 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33623786ns 590697 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33623957ns 590700 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33624411ns 590708 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33624582ns 590711 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33624866ns 590716 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33625150ns 590721 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33625434ns 590726 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33625889ns 590734 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33626059ns 590737 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33626343ns 590742 1a110850 fd5ff06f jal x0, -44 +33626628ns 590747 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33626912ns 590752 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33627310ns 590759 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33627480ns 590762 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33627935ns 590770 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33628105ns 590773 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33628389ns 590778 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33628674ns 590783 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33628958ns 590788 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33629412ns 590796 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33629583ns 590799 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33629867ns 590804 1a110850 fd5ff06f jal x0, -44 +33630151ns 590809 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33630435ns 590814 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33630833ns 590821 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33631004ns 590824 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33631458ns 590832 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33631629ns 590835 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33631913ns 590840 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33632197ns 590845 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33632481ns 590850 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33632936ns 590858 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33633106ns 590861 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33633391ns 590866 1a110850 fd5ff06f jal x0, -44 +33633675ns 590871 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33633959ns 590876 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33634357ns 590883 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33634527ns 590886 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33634982ns 590894 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33635152ns 590897 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33635437ns 590902 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33635721ns 590907 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33636005ns 590912 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33636460ns 590920 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33636630ns 590923 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33636914ns 590928 1a110850 fd5ff06f jal x0, -44 +33637198ns 590933 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33637483ns 590938 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33637880ns 590945 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33638051ns 590948 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33638506ns 590956 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33638676ns 590959 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33638960ns 590964 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33639244ns 590969 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33639528ns 590974 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33639983ns 590982 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33640154ns 590985 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33640438ns 590990 1a110850 fd5ff06f jal x0, -44 +33640722ns 590995 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33641006ns 591000 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33641404ns 591007 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33641574ns 591010 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33642029ns 591018 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33642200ns 591021 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33642484ns 591026 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33642768ns 591031 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33643052ns 591036 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33643507ns 591044 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33643677ns 591047 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33643961ns 591052 1a110850 fd5ff06f jal x0, -44 +33644246ns 591057 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33644530ns 591062 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33644928ns 591069 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33645098ns 591072 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33645553ns 591080 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33645723ns 591083 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33646007ns 591088 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33646291ns 591093 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33646576ns 591098 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33647030ns 591106 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33647201ns 591109 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33647485ns 591114 1a110850 fd5ff06f jal x0, -44 +33647769ns 591119 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33648053ns 591124 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33648451ns 591131 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33648622ns 591134 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33649076ns 591142 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33649247ns 591145 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33649531ns 591150 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33649815ns 591155 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33650099ns 591160 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33650554ns 591168 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33650724ns 591171 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33651009ns 591176 1a110850 fd5ff06f jal x0, -44 +33651293ns 591181 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33651577ns 591186 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33651975ns 591193 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33652145ns 591196 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33652600ns 591204 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33652770ns 591207 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33653055ns 591212 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33653339ns 591217 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33653623ns 591222 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33654077ns 591230 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33654248ns 591233 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33654532ns 591238 1a110850 fd5ff06f jal x0, -44 +33654816ns 591243 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33655100ns 591248 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33655498ns 591255 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33655669ns 591258 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33656123ns 591266 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33656294ns 591269 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33656578ns 591274 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33656862ns 591279 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33657146ns 591284 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33657601ns 591292 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33657772ns 591295 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33658056ns 591300 1a110850 fd5ff06f jal x0, -44 +33658340ns 591305 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33658624ns 591310 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33659022ns 591317 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33659192ns 591320 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33659647ns 591328 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33659818ns 591331 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33660102ns 591336 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33660386ns 591341 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33660670ns 591346 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33661125ns 591354 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33661295ns 591357 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33661579ns 591362 1a110850 fd5ff06f jal x0, -44 +33661863ns 591367 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33662148ns 591372 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33662545ns 591379 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33662716ns 591382 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33663171ns 591390 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33663341ns 591393 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33663625ns 591398 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33663909ns 591403 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33664194ns 591408 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33664648ns 591416 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33664819ns 591419 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33665103ns 591424 1a110850 fd5ff06f jal x0, -44 +33665387ns 591429 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33665671ns 591434 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33666069ns 591441 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33666240ns 591444 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33666694ns 591452 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33666865ns 591455 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33667149ns 591460 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33667433ns 591465 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33667717ns 591470 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33668172ns 591478 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33668342ns 591481 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33668626ns 591486 1a110850 fd5ff06f jal x0, -44 +33668911ns 591491 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33669195ns 591496 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33669593ns 591503 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33669763ns 591506 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33670218ns 591514 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33670388ns 591517 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33670672ns 591522 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33670957ns 591527 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33671241ns 591532 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33671695ns 591540 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33671866ns 591543 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33672150ns 591548 1a110850 fd5ff06f jal x0, -44 +33672434ns 591553 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33672718ns 591558 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33673116ns 591565 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33673287ns 591568 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33673741ns 591576 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33673912ns 591579 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33674196ns 591584 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33674480ns 591589 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33674764ns 591594 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33675219ns 591602 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33675389ns 591605 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33675674ns 591610 1a110850 fd5ff06f jal x0, -44 +33675958ns 591615 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33676242ns 591620 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33676640ns 591627 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33676810ns 591630 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33677265ns 591638 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33677435ns 591641 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33677720ns 591646 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33678004ns 591651 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33678288ns 591656 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33678743ns 591664 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33678913ns 591667 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33679197ns 591672 1a110850 fd5ff06f jal x0, -44 +33679481ns 591677 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33679766ns 591682 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33680163ns 591689 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33680334ns 591692 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33680789ns 591700 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33680959ns 591703 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33681243ns 591708 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33681527ns 591713 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33681811ns 591718 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33682266ns 591726 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33682437ns 591729 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33682721ns 591734 1a110850 fd5ff06f jal x0, -44 +33683005ns 591739 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33683289ns 591744 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33683687ns 591751 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33683857ns 591754 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33684312ns 591762 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33684483ns 591765 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33684767ns 591770 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33685051ns 591775 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33685335ns 591780 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33685790ns 591788 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33685960ns 591791 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33686244ns 591796 1a110850 fd5ff06f jal x0, -44 +33686529ns 591801 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33686813ns 591806 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33687211ns 591813 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33687381ns 591816 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33687836ns 591824 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33688006ns 591827 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33688290ns 591832 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33688575ns 591837 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33688859ns 591842 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33689313ns 591850 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33689484ns 591853 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33689768ns 591858 1a110850 fd5ff06f jal x0, -44 +33690052ns 591863 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33690336ns 591868 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33690734ns 591875 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33690905ns 591878 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33691359ns 591886 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33691530ns 591889 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33691814ns 591894 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33692098ns 591899 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33692382ns 591904 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33692837ns 591912 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33693007ns 591915 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33693292ns 591920 1a110850 fd5ff06f jal x0, -44 +33693576ns 591925 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33693860ns 591930 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33694258ns 591937 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33694428ns 591940 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33694883ns 591948 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33695053ns 591951 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33695338ns 591956 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33695622ns 591961 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33695906ns 591966 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33696360ns 591974 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33696531ns 591977 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33696815ns 591982 1a110850 fd5ff06f jal x0, -44 +33697099ns 591987 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33697383ns 591992 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33697781ns 591999 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33697952ns 592002 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33698406ns 592010 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33698577ns 592013 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33698861ns 592018 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33699145ns 592023 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33699429ns 592028 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33699884ns 592036 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33700055ns 592039 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33700339ns 592044 1a110850 fd5ff06f jal x0, -44 +33700623ns 592049 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33700907ns 592054 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33701305ns 592061 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33701475ns 592064 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33701930ns 592072 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33702101ns 592075 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33702385ns 592080 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33702669ns 592085 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33702953ns 592090 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33703408ns 592098 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33703578ns 592101 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33703862ns 592106 1a110850 fd5ff06f jal x0, -44 +33704146ns 592111 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33704431ns 592116 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33704828ns 592123 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33704999ns 592126 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33705454ns 592134 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33705624ns 592137 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33705908ns 592142 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33706192ns 592147 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33706477ns 592152 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33706931ns 592160 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33707102ns 592163 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33707386ns 592168 1a110850 fd5ff06f jal x0, -44 +33707670ns 592173 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33707954ns 592178 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33708352ns 592185 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33708523ns 592188 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33708977ns 592196 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33709148ns 592199 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33709432ns 592204 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33709716ns 592209 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33710000ns 592214 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33710455ns 592222 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33710625ns 592225 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33710909ns 592230 1a110850 fd5ff06f jal x0, -44 +33711194ns 592235 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33711478ns 592240 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33711876ns 592247 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33712046ns 592250 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33712501ns 592258 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33712671ns 592261 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33712955ns 592266 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33713240ns 592271 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33713524ns 592276 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33713978ns 592284 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33714149ns 592287 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33714433ns 592292 1a110850 fd5ff06f jal x0, -44 +33714717ns 592297 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33715001ns 592302 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33715399ns 592309 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33715570ns 592312 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33716024ns 592320 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33716195ns 592323 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33716479ns 592328 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33716763ns 592333 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33717047ns 592338 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33717502ns 592346 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33717672ns 592349 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33717957ns 592354 1a110850 fd5ff06f jal x0, -44 +33718241ns 592359 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33718525ns 592364 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33718923ns 592371 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33719093ns 592374 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33719548ns 592382 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33719718ns 592385 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33720003ns 592390 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33720287ns 592395 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33720571ns 592400 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33721026ns 592408 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33721196ns 592411 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33721480ns 592416 1a110850 fd5ff06f jal x0, -44 +33721764ns 592421 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33722049ns 592426 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33722446ns 592433 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33722617ns 592436 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33723072ns 592444 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33723242ns 592447 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33723526ns 592452 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33723810ns 592457 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33724095ns 592462 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33724549ns 592470 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33724720ns 592473 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33725004ns 592478 1a110850 fd5ff06f jal x0, -44 +33725288ns 592483 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33725572ns 592488 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33725970ns 592495 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33726140ns 592498 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33726595ns 592506 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33726766ns 592509 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33727050ns 592514 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33727334ns 592519 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33727618ns 592524 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33728073ns 592532 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33728243ns 592535 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33728527ns 592540 1a110850 fd5ff06f jal x0, -44 +33728812ns 592545 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33729096ns 592550 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33729494ns 592557 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33729664ns 592560 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33730119ns 592568 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33730289ns 592571 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33730573ns 592576 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33730858ns 592581 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33731142ns 592586 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33731596ns 592594 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33731767ns 592597 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33732051ns 592602 1a110850 fd5ff06f jal x0, -44 +33732335ns 592607 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33732619ns 592612 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33733017ns 592619 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33733188ns 592622 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33733642ns 592630 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33733813ns 592633 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33734097ns 592638 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33734381ns 592643 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33734665ns 592648 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33735120ns 592656 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33735290ns 592659 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33735575ns 592664 1a110850 fd5ff06f jal x0, -44 +33735859ns 592669 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33736143ns 592674 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33736541ns 592681 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33736711ns 592684 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33737166ns 592692 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33737336ns 592695 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33737621ns 592700 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33737905ns 592705 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33738189ns 592710 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33738643ns 592718 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33738814ns 592721 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33739098ns 592726 1a110850 fd5ff06f jal x0, -44 +33739382ns 592731 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33739666ns 592736 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33740064ns 592743 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33740235ns 592746 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33740689ns 592754 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33740860ns 592757 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33741144ns 592762 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33741428ns 592767 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33741712ns 592772 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33742167ns 592780 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33742338ns 592783 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33742622ns 592788 1a110850 fd5ff06f jal x0, -44 +33742906ns 592793 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33743190ns 592798 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33743588ns 592805 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33743758ns 592808 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33744213ns 592816 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33744384ns 592819 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33744668ns 592824 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33744952ns 592829 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33745236ns 592834 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33745691ns 592842 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33745861ns 592845 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33746145ns 592850 1a110850 fd5ff06f jal x0, -44 +33746429ns 592855 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33746714ns 592860 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33747111ns 592867 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33747282ns 592870 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33747737ns 592878 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33747907ns 592881 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33748191ns 592886 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33748475ns 592891 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33748760ns 592896 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33749214ns 592904 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33749385ns 592907 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33749669ns 592912 1a110850 fd5ff06f jal x0, -44 +33749953ns 592917 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33750237ns 592922 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33750635ns 592929 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33750806ns 592932 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33751260ns 592940 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33751431ns 592943 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33751715ns 592948 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33751999ns 592953 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33752283ns 592958 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33752738ns 592966 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33752908ns 592969 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33753192ns 592974 1a110850 fd5ff06f jal x0, -44 +33753477ns 592979 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33753761ns 592984 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33754159ns 592991 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33754329ns 592994 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33754784ns 593002 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33754954ns 593005 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33755238ns 593010 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33755523ns 593015 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33755807ns 593020 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33756261ns 593028 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33756432ns 593031 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33756716ns 593036 1a110850 fd5ff06f jal x0, -44 +33757000ns 593041 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33757284ns 593046 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33757682ns 593053 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33757853ns 593056 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33758307ns 593064 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33758478ns 593067 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33758762ns 593072 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33759046ns 593077 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33759330ns 593082 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33759785ns 593090 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33759955ns 593093 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33760240ns 593098 1a110850 fd5ff06f jal x0, -44 +33760524ns 593103 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33760808ns 593108 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33761206ns 593115 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33761376ns 593118 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33761831ns 593126 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33762001ns 593129 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33762286ns 593134 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33762570ns 593139 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33762854ns 593144 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33763309ns 593152 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33763479ns 593155 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33763763ns 593160 1a110850 fd5ff06f jal x0, -44 +33764047ns 593165 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33764332ns 593170 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33764729ns 593177 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33764900ns 593180 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33765355ns 593188 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33765525ns 593191 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33765809ns 593196 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33766093ns 593201 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33766378ns 593206 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33766832ns 593214 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33767003ns 593217 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33767287ns 593222 1a110850 fd5ff06f jal x0, -44 +33767571ns 593227 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33767855ns 593232 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33768253ns 593239 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33768423ns 593242 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33768878ns 593250 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33769049ns 593253 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33769333ns 593258 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33769617ns 593263 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33769901ns 593268 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33770356ns 593276 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33770526ns 593279 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33770810ns 593284 1a110850 fd5ff06f jal x0, -44 +33771095ns 593289 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33771379ns 593294 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33771777ns 593301 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33771947ns 593304 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33772402ns 593312 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33772572ns 593315 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33772856ns 593320 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33773141ns 593325 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33773425ns 593330 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33773879ns 593338 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33774050ns 593341 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33774334ns 593346 1a110850 fd5ff06f jal x0, -44 +33774618ns 593351 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33774902ns 593356 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33775300ns 593363 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33775471ns 593366 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33775925ns 593374 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33776096ns 593377 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33776380ns 593382 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33776664ns 593387 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33776948ns 593392 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33777403ns 593400 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33777573ns 593403 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33777858ns 593408 1a110850 fd5ff06f jal x0, -44 +33778142ns 593413 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33778426ns 593418 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33778824ns 593425 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33778994ns 593428 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33779449ns 593436 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33779619ns 593439 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33779904ns 593444 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33780188ns 593449 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33780472ns 593454 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33780927ns 593462 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33781097ns 593465 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33781381ns 593470 1a110850 fd5ff06f jal x0, -44 +33781665ns 593475 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33781949ns 593480 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33782347ns 593487 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33782518ns 593490 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33782972ns 593498 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33783143ns 593501 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33783427ns 593506 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33783711ns 593511 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33783995ns 593516 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33784450ns 593524 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33784621ns 593527 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33784905ns 593532 1a110850 fd5ff06f jal x0, -44 +33785189ns 593537 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33785473ns 593542 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33785871ns 593549 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33786041ns 593552 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33786496ns 593560 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33786667ns 593563 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33786951ns 593568 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33787235ns 593573 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33787519ns 593578 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33787974ns 593586 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33788144ns 593589 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33788428ns 593594 1a110850 fd5ff06f jal x0, -44 +33788712ns 593599 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33788997ns 593604 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33789394ns 593611 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33789565ns 593614 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33790020ns 593622 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33790190ns 593625 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33790474ns 593630 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33790758ns 593635 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33791043ns 593640 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33791497ns 593648 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33791668ns 593651 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33791952ns 593656 1a110850 fd5ff06f jal x0, -44 +33792236ns 593661 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33792520ns 593666 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33792918ns 593673 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33793089ns 593676 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33793543ns 593684 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33793714ns 593687 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33793998ns 593692 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33794282ns 593697 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33794566ns 593702 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33795021ns 593710 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33795191ns 593713 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33795475ns 593718 1a110850 fd5ff06f jal x0, -44 +33795760ns 593723 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33796044ns 593728 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33796442ns 593735 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33796612ns 593738 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33797067ns 593746 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33797237ns 593749 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33797521ns 593754 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33797806ns 593759 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33798090ns 593764 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33798544ns 593772 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33798715ns 593775 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33798999ns 593780 1a110850 fd5ff06f jal x0, -44 +33799283ns 593785 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33799567ns 593790 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33799965ns 593797 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33800136ns 593800 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33800590ns 593808 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33800761ns 593811 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33801045ns 593816 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33801329ns 593821 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33801613ns 593826 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33802068ns 593834 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33802239ns 593837 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33802523ns 593842 1a110850 fd5ff06f jal x0, -44 +33802807ns 593847 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33803091ns 593852 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33803489ns 593859 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33803659ns 593862 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33804114ns 593870 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33804284ns 593873 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33804569ns 593878 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33804853ns 593883 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33805137ns 593888 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33805592ns 593896 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33805762ns 593899 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33806046ns 593904 1a110850 fd5ff06f jal x0, -44 +33806330ns 593909 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33806615ns 593914 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33807012ns 593921 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33807183ns 593924 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33807638ns 593932 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33807808ns 593935 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33808092ns 593940 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33808376ns 593945 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33808661ns 593950 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33809115ns 593958 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33809286ns 593961 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33809570ns 593966 1a110850 fd5ff06f jal x0, -44 +33809854ns 593971 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33810138ns 593976 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33810536ns 593983 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33810706ns 593986 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33811161ns 593994 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33811332ns 593997 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33811616ns 594002 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33811900ns 594007 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33812184ns 594012 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33812639ns 594020 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33812809ns 594023 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33813093ns 594028 1a110850 fd5ff06f jal x0, -44 +33813378ns 594033 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33813662ns 594038 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33814060ns 594045 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33814230ns 594048 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33814685ns 594056 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33814855ns 594059 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33815139ns 594064 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33815424ns 594069 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33815708ns 594074 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33816162ns 594082 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33816333ns 594085 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33816617ns 594090 1a110850 fd5ff06f jal x0, -44 +33816901ns 594095 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33817185ns 594100 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33817583ns 594107 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33817754ns 594110 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33818208ns 594118 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33818379ns 594121 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33818663ns 594126 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33818947ns 594131 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33819231ns 594136 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33819686ns 594144 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33819856ns 594147 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33820141ns 594152 1a110850 fd5ff06f jal x0, -44 +33820425ns 594157 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33820709ns 594162 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33821107ns 594169 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33821277ns 594172 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33821732ns 594180 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33821902ns 594183 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33822187ns 594188 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33822471ns 594193 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33822755ns 594198 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33823210ns 594206 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33823380ns 594209 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33823664ns 594214 1a110850 fd5ff06f jal x0, -44 +33823948ns 594219 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33824232ns 594224 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33824630ns 594231 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33824801ns 594234 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33825255ns 594242 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33825426ns 594245 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33825710ns 594250 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33825994ns 594255 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33826278ns 594260 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33826733ns 594268 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33826904ns 594271 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33827188ns 594276 1a110850 fd5ff06f jal x0, -44 +33827472ns 594281 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33827756ns 594286 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33828154ns 594293 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33828324ns 594296 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33828779ns 594304 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33828950ns 594307 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33829234ns 594312 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33829518ns 594317 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33829802ns 594322 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33830257ns 594330 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33830427ns 594333 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33830711ns 594338 1a110850 fd5ff06f jal x0, -44 +33830995ns 594343 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33831280ns 594348 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33831677ns 594355 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33831848ns 594358 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33832303ns 594366 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33832473ns 594369 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33832757ns 594374 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33833041ns 594379 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33833326ns 594384 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33833780ns 594392 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33833951ns 594395 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33834235ns 594400 1a110850 fd5ff06f jal x0, -44 +33834519ns 594405 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33834803ns 594410 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33835201ns 594417 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33835372ns 594420 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33835826ns 594428 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33835997ns 594431 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33836281ns 594436 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33836565ns 594441 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33836849ns 594446 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33837304ns 594454 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33837474ns 594457 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33837759ns 594462 1a110850 fd5ff06f jal x0, -44 +33838043ns 594467 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33838327ns 594472 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33838725ns 594479 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33838895ns 594482 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33839350ns 594490 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33839520ns 594493 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33839804ns 594498 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33840089ns 594503 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33840373ns 594508 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33840827ns 594516 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33840998ns 594519 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33841282ns 594524 1a110850 fd5ff06f jal x0, -44 +33841566ns 594529 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33841850ns 594534 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33842248ns 594541 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33842419ns 594544 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33842873ns 594552 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33843044ns 594555 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33843328ns 594560 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33843612ns 594565 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33843896ns 594570 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33844351ns 594578 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33844522ns 594581 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33844806ns 594586 1a110850 fd5ff06f jal x0, -44 +33845090ns 594591 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33845374ns 594596 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33845772ns 594603 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33845942ns 594606 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33846397ns 594614 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33846567ns 594617 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33846852ns 594622 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33847136ns 594627 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33847420ns 594632 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33847875ns 594640 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33848045ns 594643 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33848329ns 594648 1a110850 fd5ff06f jal x0, -44 +33848613ns 594653 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33848898ns 594658 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33849295ns 594665 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33849466ns 594668 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33849921ns 594676 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33850091ns 594679 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33850375ns 594684 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33850659ns 594689 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33850944ns 594694 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33851398ns 594702 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33851569ns 594705 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33851853ns 594710 1a110850 fd5ff06f jal x0, -44 +33852137ns 594715 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33852421ns 594720 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33852819ns 594727 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33852989ns 594730 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33853444ns 594738 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33853615ns 594741 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33853899ns 594746 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33854183ns 594751 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33854467ns 594756 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33854922ns 594764 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33855092ns 594767 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33855376ns 594772 1a110850 fd5ff06f jal x0, -44 +33855661ns 594777 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33855945ns 594782 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33856343ns 594789 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33856513ns 594792 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33856968ns 594800 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33857138ns 594803 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33857422ns 594808 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33857707ns 594813 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33857991ns 594818 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33858445ns 594826 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33858616ns 594829 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33858900ns 594834 1a110850 fd5ff06f jal x0, -44 +33859184ns 594839 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33859468ns 594844 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33859866ns 594851 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33860037ns 594854 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33860491ns 594862 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33860662ns 594865 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33860946ns 594870 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33861230ns 594875 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33861514ns 594880 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33861969ns 594888 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33862139ns 594891 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33862424ns 594896 1a110850 fd5ff06f jal x0, -44 +33862708ns 594901 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33862992ns 594906 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33863390ns 594913 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33863560ns 594916 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33864015ns 594924 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33864185ns 594927 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33864470ns 594932 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33864754ns 594937 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33865038ns 594942 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33865493ns 594950 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33865663ns 594953 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33865947ns 594958 1a110850 fd5ff06f jal x0, -44 +33866231ns 594963 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33866515ns 594968 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33866913ns 594975 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33867084ns 594978 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33867538ns 594986 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33867709ns 594989 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33867993ns 594994 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33868277ns 594999 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33868561ns 595004 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33869016ns 595012 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33869187ns 595015 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33869471ns 595020 1a110850 fd5ff06f jal x0, -44 +33869755ns 595025 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33870039ns 595030 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33870437ns 595037 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33870607ns 595040 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33871062ns 595048 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33871233ns 595051 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33871517ns 595056 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33871801ns 595061 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33872085ns 595066 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33872540ns 595074 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33872710ns 595077 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33872994ns 595082 1a110850 fd5ff06f jal x0, -44 +33873279ns 595087 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33873563ns 595092 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33873960ns 595099 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33874131ns 595102 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33874586ns 595110 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33874756ns 595113 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33875040ns 595118 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33875324ns 595123 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33875609ns 595128 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33876063ns 595136 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33876234ns 595139 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33876518ns 595144 1a110850 fd5ff06f jal x0, -44 +33876802ns 595149 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33877086ns 595154 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33877484ns 595161 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33877655ns 595164 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33878109ns 595172 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33878280ns 595175 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33878564ns 595180 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33878848ns 595185 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33879132ns 595190 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33879587ns 595198 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33879757ns 595201 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33880042ns 595206 1a110850 fd5ff06f jal x0, -44 +33880326ns 595211 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33880610ns 595216 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33881008ns 595223 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33881178ns 595226 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33881633ns 595234 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33881803ns 595237 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33882087ns 595242 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33882372ns 595247 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33882656ns 595252 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33883110ns 595260 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33883281ns 595263 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33883565ns 595268 1a110850 fd5ff06f jal x0, -44 +33883849ns 595273 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33884133ns 595278 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33884531ns 595285 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33884702ns 595288 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33885156ns 595296 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33885327ns 595299 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33885611ns 595304 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33885895ns 595309 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33886179ns 595314 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33886634ns 595322 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33886805ns 595325 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33887089ns 595330 1a110850 fd5ff06f jal x0, -44 +33887373ns 595335 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33887657ns 595340 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33888055ns 595347 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33888225ns 595350 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33888680ns 595358 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33888850ns 595361 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33889135ns 595366 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33889419ns 595371 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33889703ns 595376 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33890158ns 595384 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33890328ns 595387 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33890612ns 595392 1a110850 fd5ff06f jal x0, -44 +33890896ns 595397 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33891181ns 595402 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33891578ns 595409 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33891749ns 595412 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33892204ns 595420 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33892374ns 595423 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33892658ns 595428 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33892942ns 595433 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33893227ns 595438 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33893681ns 595446 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33893852ns 595449 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33894136ns 595454 1a110850 fd5ff06f jal x0, -44 +33894420ns 595459 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33894704ns 595464 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33895102ns 595471 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33895272ns 595474 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33895727ns 595482 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33895898ns 595485 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33896182ns 595490 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33896466ns 595495 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33896750ns 595500 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33897205ns 595508 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33897375ns 595511 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33897659ns 595516 1a110850 fd5ff06f jal x0, -44 +33897944ns 595521 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33898228ns 595526 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33898626ns 595533 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33898796ns 595536 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33899251ns 595544 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33899421ns 595547 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33899705ns 595552 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33899990ns 595557 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33900274ns 595562 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33900728ns 595570 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33900899ns 595573 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33901183ns 595578 1a110850 fd5ff06f jal x0, -44 +33901467ns 595583 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33901751ns 595588 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33902149ns 595595 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33902320ns 595598 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33902774ns 595606 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33902945ns 595609 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33903229ns 595614 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33903513ns 595619 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33903797ns 595624 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33904252ns 595632 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33904422ns 595635 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33904707ns 595640 1a110850 fd5ff06f jal x0, -44 +33904991ns 595645 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33905275ns 595650 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33905673ns 595657 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33905843ns 595660 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33906298ns 595668 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33906468ns 595671 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33906753ns 595676 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33907037ns 595681 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33907321ns 595686 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33907776ns 595694 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33907946ns 595697 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33908230ns 595702 1a110850 fd5ff06f jal x0, -44 +33908514ns 595707 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33908799ns 595712 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33909196ns 595719 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33909367ns 595722 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33909821ns 595730 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33909992ns 595733 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33910276ns 595738 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33910560ns 595743 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33910844ns 595748 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33911299ns 595756 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33911470ns 595759 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33911754ns 595764 1a110850 fd5ff06f jal x0, -44 +33912038ns 595769 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33912322ns 595774 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33912720ns 595781 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33912890ns 595784 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33913345ns 595792 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33913516ns 595795 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33913800ns 595800 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33914084ns 595805 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33914368ns 595810 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33914823ns 595818 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33914993ns 595821 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33915277ns 595826 1a110850 fd5ff06f jal x0, -44 +33915562ns 595831 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33915846ns 595836 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33916243ns 595843 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33916414ns 595846 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33916869ns 595854 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33917039ns 595857 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33917323ns 595862 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33917607ns 595867 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33917892ns 595872 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33918346ns 595880 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33918517ns 595883 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33918801ns 595888 1a110850 fd5ff06f jal x0, -44 +33919085ns 595893 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33919369ns 595898 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33919767ns 595905 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33919938ns 595908 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33920392ns 595916 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33920563ns 595919 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33920847ns 595924 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33921131ns 595929 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33921415ns 595934 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33921870ns 595942 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33922040ns 595945 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33922325ns 595950 1a110850 fd5ff06f jal x0, -44 +33922609ns 595955 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33922893ns 595960 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33923291ns 595967 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33923461ns 595970 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33923916ns 595978 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33924086ns 595981 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33924370ns 595986 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33924655ns 595991 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33924939ns 595996 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33925393ns 596004 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33925564ns 596007 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33925848ns 596012 1a110850 fd5ff06f jal x0, -44 +33926132ns 596017 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33926416ns 596022 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33926814ns 596029 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33926985ns 596032 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33927439ns 596040 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33927610ns 596043 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33927894ns 596048 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33928178ns 596053 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33928462ns 596058 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33928917ns 596066 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33929088ns 596069 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33929372ns 596074 1a110850 fd5ff06f jal x0, -44 +33929656ns 596079 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33929940ns 596084 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33930338ns 596091 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33930508ns 596094 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33930963ns 596102 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33931133ns 596105 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33931418ns 596110 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33931702ns 596115 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33931986ns 596120 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33932441ns 596128 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33932611ns 596131 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33932895ns 596136 1a110850 fd5ff06f jal x0, -44 +33933179ns 596141 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33933464ns 596146 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33933861ns 596153 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33934032ns 596156 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33934487ns 596164 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33934657ns 596167 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33934941ns 596172 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33935225ns 596177 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33935510ns 596182 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33935964ns 596190 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33936135ns 596193 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33936419ns 596198 1a110850 fd5ff06f jal x0, -44 +33936703ns 596203 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33936987ns 596208 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33937385ns 596215 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33937555ns 596218 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33938010ns 596226 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33938181ns 596229 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33938465ns 596234 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33938749ns 596239 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33939033ns 596244 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33939488ns 596252 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33939658ns 596255 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33939942ns 596260 1a110850 fd5ff06f jal x0, -44 +33940227ns 596265 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33940511ns 596270 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33940909ns 596277 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33941079ns 596280 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33941534ns 596288 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33941704ns 596291 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33941988ns 596296 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33942273ns 596301 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33942557ns 596306 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33943011ns 596314 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33943182ns 596317 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33943466ns 596322 1a110850 fd5ff06f jal x0, -44 +33943750ns 596327 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33944034ns 596332 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33944432ns 596339 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33944603ns 596342 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33945057ns 596350 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33945228ns 596353 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33945512ns 596358 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33945796ns 596363 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33946080ns 596368 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33946535ns 596376 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33946705ns 596379 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33946990ns 596384 1a110850 fd5ff06f jal x0, -44 +33947274ns 596389 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33947558ns 596394 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33947956ns 596401 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33948126ns 596404 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33948581ns 596412 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33948751ns 596415 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33949036ns 596420 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33949320ns 596425 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33949604ns 596430 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33950059ns 596438 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33950229ns 596441 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33950513ns 596446 1a110850 fd5ff06f jal x0, -44 +33950797ns 596451 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33951082ns 596456 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33951479ns 596463 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33951650ns 596466 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33952104ns 596474 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33952275ns 596477 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33952559ns 596482 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33952843ns 596487 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33953127ns 596492 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33953582ns 596500 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33953753ns 596503 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33954037ns 596508 1a110850 fd5ff06f jal x0, -44 +33954321ns 596513 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33954605ns 596518 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33955003ns 596525 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33955173ns 596528 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33955628ns 596536 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33955799ns 596539 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33956083ns 596544 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33956367ns 596549 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33956651ns 596554 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33957106ns 596562 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33957276ns 596565 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33957560ns 596570 1a110850 fd5ff06f jal x0, -44 +33957845ns 596575 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33958129ns 596580 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33958527ns 596587 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33958697ns 596590 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33959152ns 596598 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33959322ns 596601 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33959606ns 596606 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33959890ns 596611 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33960175ns 596616 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33960629ns 596624 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33960800ns 596627 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33961084ns 596632 1a110850 fd5ff06f jal x0, -44 +33961368ns 596637 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33961652ns 596642 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33962050ns 596649 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33962221ns 596652 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33962675ns 596660 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33962846ns 596663 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33963130ns 596668 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33963414ns 596673 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33963698ns 596678 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33964153ns 596686 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33964323ns 596689 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33964608ns 596694 1a110850 fd5ff06f jal x0, -44 +33964892ns 596699 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33965176ns 596704 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33965574ns 596711 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33965744ns 596714 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33966199ns 596722 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33966369ns 596725 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33966653ns 596730 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33966938ns 596735 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33967222ns 596740 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33967676ns 596748 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33967847ns 596751 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33968131ns 596756 1a110850 fd5ff06f jal x0, -44 +33968415ns 596761 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33968699ns 596766 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33969097ns 596773 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33969268ns 596776 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33969722ns 596784 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33969893ns 596787 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33970177ns 596792 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33970461ns 596797 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33970745ns 596802 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33971200ns 596810 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33971371ns 596813 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33971655ns 596818 1a110850 fd5ff06f jal x0, -44 +33971939ns 596823 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33972223ns 596828 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33972621ns 596835 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33972791ns 596838 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33973246ns 596846 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33973416ns 596849 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33973701ns 596854 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33973985ns 596859 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33974269ns 596864 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33974724ns 596872 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33974894ns 596875 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33975178ns 596880 1a110850 fd5ff06f jal x0, -44 +33975462ns 596885 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33975747ns 596890 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33976144ns 596897 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33976315ns 596900 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33976770ns 596908 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33976940ns 596911 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33977224ns 596916 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33977508ns 596921 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33977793ns 596926 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33978247ns 596934 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33978418ns 596937 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33978702ns 596942 1a110850 fd5ff06f jal x0, -44 +33978986ns 596947 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33979270ns 596952 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33979668ns 596959 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33979839ns 596962 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33980293ns 596970 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33980464ns 596973 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33980748ns 596978 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33981032ns 596983 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33981316ns 596988 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33981771ns 596996 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33981941ns 596999 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33982225ns 597004 1a110850 fd5ff06f jal x0, -44 +33982510ns 597009 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33982794ns 597014 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33983192ns 597021 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33983362ns 597024 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33983817ns 597032 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33983987ns 597035 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33984271ns 597040 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33984556ns 597045 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33984840ns 597050 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33985294ns 597058 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33985465ns 597061 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33985749ns 597066 1a110850 fd5ff06f jal x0, -44 +33986033ns 597071 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33986317ns 597076 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33986715ns 597083 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33986886ns 597086 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33987340ns 597094 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33987511ns 597097 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33987795ns 597102 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33988079ns 597107 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33988363ns 597112 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33988818ns 597120 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33988988ns 597123 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33989273ns 597128 1a110850 fd5ff06f jal x0, -44 +33989557ns 597133 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33989841ns 597138 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33990239ns 597145 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33990409ns 597148 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33990864ns 597156 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33991034ns 597159 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33991319ns 597164 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33991603ns 597169 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33991887ns 597174 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33992342ns 597182 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33992512ns 597185 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33992796ns 597190 1a110850 fd5ff06f jal x0, -44 +33993080ns 597195 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33993365ns 597200 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33993762ns 597207 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33993933ns 597210 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33994387ns 597218 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33994558ns 597221 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33994842ns 597226 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33995126ns 597231 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33995410ns 597236 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33995865ns 597244 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33996036ns 597247 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33996320ns 597252 1a110850 fd5ff06f jal x0, -44 +33996604ns 597257 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33996888ns 597262 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +33997286ns 597269 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33997456ns 597272 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33997911ns 597280 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +33998082ns 597283 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +33998366ns 597288 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +33998650ns 597293 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +33998934ns 597298 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +33999389ns 597306 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +33999559ns 597309 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +33999843ns 597314 1a110850 fd5ff06f jal x0, -44 +34000128ns 597319 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34000412ns 597324 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34000810ns 597331 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34000980ns 597334 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34001435ns 597342 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34001605ns 597345 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34001889ns 597350 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34002173ns 597355 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34002458ns 597360 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34002912ns 597368 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34003083ns 597371 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34003367ns 597376 1a110850 fd5ff06f jal x0, -44 +34003651ns 597381 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34003935ns 597386 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34004333ns 597393 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34004504ns 597396 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34004958ns 597404 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34005129ns 597407 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34005413ns 597412 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34005697ns 597417 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34005981ns 597422 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34006436ns 597430 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34006606ns 597433 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34006891ns 597438 1a110850 fd5ff06f jal x0, -44 +34007175ns 597443 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34007459ns 597448 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34007857ns 597455 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34008027ns 597458 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34008482ns 597466 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34008652ns 597469 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34008936ns 597474 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34009221ns 597479 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34009505ns 597484 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34009959ns 597492 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34010130ns 597495 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34010414ns 597500 1a110850 fd5ff06f jal x0, -44 +34010698ns 597505 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34010982ns 597510 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34011380ns 597517 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34011551ns 597520 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34012005ns 597528 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34012176ns 597531 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34012460ns 597536 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34012744ns 597541 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34013028ns 597546 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34013483ns 597554 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34013654ns 597557 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34013938ns 597562 1a110850 fd5ff06f jal x0, -44 +34014222ns 597567 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34014506ns 597572 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34014904ns 597579 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34015074ns 597582 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34015529ns 597590 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34015699ns 597593 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34015984ns 597598 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34016268ns 597603 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34016552ns 597608 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34017007ns 597616 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34017177ns 597619 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34017461ns 597624 1a110850 fd5ff06f jal x0, -44 +34017745ns 597629 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34018030ns 597634 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34018427ns 597641 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34018598ns 597644 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34019053ns 597652 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34019223ns 597655 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34019507ns 597660 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34019791ns 597665 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34020076ns 597670 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34020530ns 597678 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34020701ns 597681 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34020985ns 597686 1a110850 fd5ff06f jal x0, -44 +34021269ns 597691 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34021553ns 597696 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34021951ns 597703 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34022122ns 597706 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34022576ns 597714 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34022747ns 597717 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34023031ns 597722 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34023315ns 597727 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34023599ns 597732 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34024054ns 597740 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34024224ns 597743 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34024508ns 597748 1a110850 fd5ff06f jal x0, -44 +34024793ns 597753 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34025077ns 597758 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34025475ns 597765 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34025645ns 597768 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34026100ns 597776 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34026270ns 597779 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34026554ns 597784 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34026839ns 597789 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34027123ns 597794 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34027577ns 597802 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34027748ns 597805 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34028032ns 597810 1a110850 fd5ff06f jal x0, -44 +34028316ns 597815 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34028600ns 597820 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34028998ns 597827 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34029169ns 597830 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34029623ns 597838 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34029794ns 597841 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34030078ns 597846 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34030362ns 597851 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34030646ns 597856 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34031101ns 597864 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34031271ns 597867 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34031556ns 597872 1a110850 fd5ff06f jal x0, -44 +34031840ns 597877 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34032124ns 597882 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34032522ns 597889 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34032692ns 597892 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34033147ns 597900 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34033317ns 597903 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34033602ns 597908 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34033886ns 597913 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34034170ns 597918 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34034625ns 597926 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34034795ns 597929 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34035079ns 597934 1a110850 fd5ff06f jal x0, -44 +34035363ns 597939 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34035648ns 597944 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34036045ns 597951 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34036216ns 597954 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34036671ns 597962 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34036841ns 597965 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34037125ns 597970 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34037409ns 597975 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34037693ns 597980 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34038148ns 597988 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34038319ns 597991 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34038603ns 597996 1a110850 fd5ff06f jal x0, -44 +34038887ns 598001 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34039171ns 598006 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34039569ns 598013 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34039739ns 598016 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34040194ns 598024 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34040365ns 598027 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34040649ns 598032 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34040933ns 598037 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34041217ns 598042 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34041672ns 598050 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34041842ns 598053 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34042126ns 598058 1a110850 fd5ff06f jal x0, -44 +34042411ns 598063 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34042695ns 598068 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34043093ns 598075 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34043263ns 598078 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34043718ns 598086 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34043888ns 598089 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34044172ns 598094 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34044456ns 598099 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34044741ns 598104 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34045195ns 598112 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34045366ns 598115 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34045650ns 598120 1a110850 fd5ff06f jal x0, -44 +34045934ns 598125 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34046218ns 598130 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34046616ns 598137 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34046787ns 598140 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34047241ns 598148 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34047412ns 598151 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34047696ns 598156 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34047980ns 598161 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34048264ns 598166 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34048719ns 598174 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34048889ns 598177 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34049174ns 598182 1a110850 fd5ff06f jal x0, -44 +34049458ns 598187 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34049742ns 598192 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34050140ns 598199 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34050310ns 598202 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34050765ns 598210 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34050935ns 598213 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34051219ns 598218 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34051504ns 598223 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34051788ns 598228 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34052242ns 598236 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34052413ns 598239 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34052697ns 598244 1a110850 fd5ff06f jal x0, -44 +34052981ns 598249 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34053265ns 598254 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34053663ns 598261 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34053834ns 598264 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34054288ns 598272 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34054459ns 598275 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34054743ns 598280 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34055027ns 598285 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34055311ns 598290 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34055766ns 598298 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34055937ns 598301 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34056221ns 598306 1a110850 fd5ff06f jal x0, -44 +34056505ns 598311 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34056789ns 598316 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34057187ns 598323 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34057357ns 598326 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34057812ns 598334 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34057983ns 598337 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34058267ns 598342 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34058551ns 598347 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34058835ns 598352 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34059290ns 598360 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34059460ns 598363 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34059744ns 598368 1a110850 fd5ff06f jal x0, -44 +34060028ns 598373 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34060313ns 598378 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34060710ns 598385 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34060881ns 598388 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34061336ns 598396 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34061506ns 598399 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34061790ns 598404 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34062074ns 598409 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34062359ns 598414 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34062813ns 598422 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34062984ns 598425 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34063268ns 598430 1a110850 fd5ff06f jal x0, -44 +34063552ns 598435 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34063836ns 598440 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34064234ns 598447 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34064405ns 598450 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34064859ns 598458 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34065030ns 598461 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34065314ns 598466 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34065598ns 598471 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34065882ns 598476 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34066337ns 598484 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34066507ns 598487 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34066791ns 598492 1a110850 fd5ff06f jal x0, -44 +34067076ns 598497 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34067360ns 598502 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34067758ns 598509 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34067928ns 598512 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34068383ns 598520 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34068553ns 598523 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34068837ns 598528 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34069122ns 598533 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34069406ns 598538 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34069860ns 598546 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34070031ns 598549 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34070315ns 598554 1a110850 fd5ff06f jal x0, -44 +34070599ns 598559 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34070883ns 598564 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34071281ns 598571 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34071452ns 598574 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34071906ns 598582 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34072077ns 598585 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34072361ns 598590 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34072645ns 598595 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34072929ns 598600 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34073384ns 598608 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34073554ns 598611 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34073839ns 598616 1a110850 fd5ff06f jal x0, -44 +34074123ns 598621 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34074407ns 598626 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34074805ns 598633 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34074975ns 598636 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34075430ns 598644 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34075600ns 598647 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34075885ns 598652 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34076169ns 598657 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34076453ns 598662 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34076908ns 598670 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34077078ns 598673 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34077362ns 598678 1a110850 fd5ff06f jal x0, -44 +34077646ns 598683 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34077931ns 598688 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34078328ns 598695 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34078499ns 598698 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34078954ns 598706 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34079124ns 598709 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34079408ns 598714 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34079692ns 598719 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34079976ns 598724 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34080431ns 598732 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34080602ns 598735 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34080886ns 598740 1a110850 fd5ff06f jal x0, -44 +34081170ns 598745 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34081454ns 598750 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34081852ns 598757 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34082022ns 598760 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34082477ns 598768 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34082648ns 598771 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34082932ns 598776 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34083216ns 598781 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34083500ns 598786 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34083955ns 598794 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34084125ns 598797 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34084409ns 598802 1a110850 fd5ff06f jal x0, -44 +34084694ns 598807 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34084978ns 598812 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34085376ns 598819 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34085546ns 598822 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34086001ns 598830 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34086171ns 598833 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34086455ns 598838 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34086739ns 598843 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34087024ns 598848 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34087478ns 598856 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34087649ns 598859 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34087933ns 598864 1a110850 fd5ff06f jal x0, -44 +34088217ns 598869 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34088501ns 598874 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34088899ns 598881 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34089070ns 598884 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34089524ns 598892 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34089695ns 598895 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34089979ns 598900 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34090263ns 598905 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34090547ns 598910 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34091002ns 598918 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34091172ns 598921 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34091457ns 598926 1a110850 fd5ff06f jal x0, -44 +34091741ns 598931 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34092025ns 598936 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34092423ns 598943 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34092593ns 598946 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34093048ns 598954 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34093218ns 598957 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34093503ns 598962 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34093787ns 598967 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34094071ns 598972 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34094525ns 598980 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34094696ns 598983 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34094980ns 598988 1a110850 fd5ff06f jal x0, -44 +34095264ns 598993 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34095548ns 598998 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34095946ns 599005 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34096117ns 599008 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34096571ns 599016 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34096742ns 599019 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34097026ns 599024 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34097310ns 599029 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34097594ns 599034 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34098049ns 599042 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34098220ns 599045 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34098504ns 599050 1a110850 fd5ff06f jal x0, -44 +34098788ns 599055 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34099072ns 599060 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34099470ns 599067 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34099640ns 599070 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34100095ns 599078 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34100266ns 599081 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34100550ns 599086 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34100834ns 599091 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34101118ns 599096 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34101573ns 599104 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34101743ns 599107 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34102027ns 599112 1a110850 fd5ff06f jal x0, -44 +34102311ns 599117 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34102596ns 599122 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34102993ns 599129 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34103164ns 599132 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34103619ns 599140 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34103789ns 599143 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34104073ns 599148 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34104357ns 599153 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34104642ns 599158 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34105096ns 599166 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34105267ns 599169 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34105551ns 599174 1a110850 fd5ff06f jal x0, -44 +34105835ns 599179 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34106119ns 599184 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34106517ns 599191 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34106688ns 599194 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34107142ns 599202 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34107313ns 599205 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34107597ns 599210 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34107881ns 599215 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34108165ns 599220 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34108620ns 599228 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34108790ns 599231 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34109074ns 599236 1a110850 fd5ff06f jal x0, -44 +34109359ns 599241 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34109643ns 599246 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34110041ns 599253 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34110211ns 599256 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34110666ns 599264 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34110836ns 599267 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34111120ns 599272 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34111405ns 599277 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34111689ns 599282 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34112143ns 599290 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34112314ns 599293 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34112598ns 599298 1a110850 fd5ff06f jal x0, -44 +34112882ns 599303 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34113166ns 599308 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34113564ns 599315 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34113735ns 599318 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34114189ns 599326 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34114360ns 599329 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34114644ns 599334 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34114928ns 599339 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34115212ns 599344 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34115667ns 599352 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34115837ns 599355 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34116122ns 599360 1a110850 fd5ff06f jal x0, -44 +34116406ns 599365 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34116690ns 599370 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34117088ns 599377 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34117258ns 599380 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34117713ns 599388 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34117883ns 599391 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34118168ns 599396 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34118452ns 599401 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34118736ns 599406 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34119191ns 599414 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34119361ns 599417 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34119645ns 599422 1a110850 fd5ff06f jal x0, -44 +34119929ns 599427 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34120214ns 599432 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34120611ns 599439 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34120782ns 599442 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34121237ns 599450 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34121407ns 599453 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34121691ns 599458 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34121975ns 599463 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34122259ns 599468 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34122714ns 599476 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34122885ns 599479 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34123169ns 599484 1a110850 fd5ff06f jal x0, -44 +34123453ns 599489 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34123737ns 599494 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34124135ns 599501 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34124305ns 599504 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34124760ns 599512 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34124931ns 599515 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34125215ns 599520 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34125499ns 599525 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34125783ns 599530 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34126238ns 599538 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34126408ns 599541 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34126692ns 599546 1a110850 fd5ff06f jal x0, -44 +34126977ns 599551 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34127261ns 599556 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34127659ns 599563 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34127829ns 599566 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34128284ns 599574 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34128454ns 599577 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34128738ns 599582 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34129023ns 599587 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34129307ns 599592 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34129761ns 599600 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34129932ns 599603 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34130216ns 599608 1a110850 fd5ff06f jal x0, -44 +34130500ns 599613 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34130784ns 599618 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34131182ns 599625 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34131353ns 599628 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34131807ns 599636 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34131978ns 599639 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34132262ns 599644 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34132546ns 599649 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34132830ns 599654 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34133285ns 599662 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34133455ns 599665 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34133740ns 599670 1a110850 fd5ff06f jal x0, -44 +34134024ns 599675 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34134308ns 599680 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34134706ns 599687 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34134876ns 599690 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34135331ns 599698 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34135501ns 599701 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34135786ns 599706 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34136070ns 599711 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34136354ns 599716 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34136808ns 599724 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34136979ns 599727 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34137263ns 599732 1a110850 fd5ff06f jal x0, -44 +34137547ns 599737 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34137831ns 599742 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34138229ns 599749 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34138400ns 599752 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34138854ns 599760 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34139025ns 599763 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34139309ns 599768 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34139593ns 599773 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34139877ns 599778 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34140332ns 599786 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34140503ns 599789 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34140787ns 599794 1a110850 fd5ff06f jal x0, -44 +34141071ns 599799 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34141355ns 599804 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34141753ns 599811 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34141923ns 599814 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34142378ns 599822 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34142549ns 599825 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34142833ns 599830 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34143117ns 599835 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34143401ns 599840 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34143856ns 599848 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34144026ns 599851 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34144310ns 599856 1a110850 fd5ff06f jal x0, -44 +34144594ns 599861 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34144879ns 599866 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34145276ns 599873 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34145447ns 599876 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34145902ns 599884 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34146072ns 599887 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34146356ns 599892 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34146640ns 599897 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34146925ns 599902 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34147379ns 599910 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34147550ns 599913 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34147834ns 599918 1a110850 fd5ff06f jal x0, -44 +34148118ns 599923 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34148402ns 599928 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34148800ns 599935 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34148971ns 599938 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34149425ns 599946 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34149596ns 599949 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34149880ns 599954 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34150164ns 599959 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34150448ns 599964 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34150903ns 599972 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34151073ns 599975 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34151357ns 599980 1a110850 fd5ff06f jal x0, -44 +34151642ns 599985 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34151926ns 599990 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34152324ns 599997 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34152494ns 600000 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34152949ns 600008 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34153119ns 600011 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34153403ns 600016 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34153688ns 600021 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34153972ns 600026 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34154426ns 600034 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34154597ns 600037 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34154881ns 600042 1a110850 fd5ff06f jal x0, -44 +34155165ns 600047 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34155449ns 600052 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34155847ns 600059 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34156018ns 600062 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34156472ns 600070 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34156643ns 600073 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34156927ns 600078 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34157211ns 600083 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34157495ns 600088 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34157950ns 600096 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34158120ns 600099 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34158405ns 600104 1a110850 fd5ff06f jal x0, -44 +34158689ns 600109 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34158973ns 600114 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34159371ns 600121 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34159541ns 600124 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34159996ns 600132 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34160166ns 600135 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34160451ns 600140 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34160735ns 600145 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34161019ns 600150 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34161474ns 600158 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34161644ns 600161 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34161928ns 600166 1a110850 fd5ff06f jal x0, -44 +34162212ns 600171 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34162497ns 600176 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34162894ns 600183 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34163065ns 600186 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34163520ns 600194 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34163690ns 600197 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34163974ns 600202 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34164258ns 600207 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34164543ns 600212 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34164997ns 600220 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34165168ns 600223 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34165452ns 600228 1a110850 fd5ff06f jal x0, -44 +34165736ns 600233 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34166020ns 600238 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34166418ns 600245 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34166588ns 600248 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34167043ns 600256 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34167214ns 600259 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34167498ns 600264 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34167782ns 600269 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34168066ns 600274 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34168521ns 600282 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34168691ns 600285 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34168975ns 600290 1a110850 fd5ff06f jal x0, -44 +34169260ns 600295 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34169544ns 600300 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34169942ns 600307 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34170112ns 600310 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34170567ns 600318 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34170737ns 600321 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34171021ns 600326 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34171306ns 600331 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34171590ns 600336 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34172044ns 600344 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34172215ns 600347 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34172499ns 600352 1a110850 fd5ff06f jal x0, -44 +34172783ns 600357 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34173067ns 600362 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34173465ns 600369 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34173636ns 600372 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34174090ns 600380 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34174261ns 600383 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34174545ns 600388 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34174829ns 600393 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34175113ns 600398 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34175568ns 600406 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34175738ns 600409 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34176023ns 600414 1a110850 fd5ff06f jal x0, -44 +34176307ns 600419 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34176591ns 600424 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34176989ns 600431 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34177159ns 600434 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34177614ns 600442 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34177784ns 600445 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34178069ns 600450 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34178353ns 600455 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34178637ns 600460 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34179091ns 600468 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34179262ns 600471 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34179546ns 600476 1a110850 fd5ff06f jal x0, -44 +34179830ns 600481 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34180114ns 600486 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34180512ns 600493 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34180683ns 600496 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34181137ns 600504 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34181308ns 600507 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34181592ns 600512 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34181876ns 600517 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34182160ns 600522 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34182615ns 600530 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34182786ns 600533 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34183070ns 600538 1a110850 fd5ff06f jal x0, -44 +34183354ns 600543 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34183638ns 600548 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34184036ns 600555 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34184206ns 600558 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34184661ns 600566 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34184832ns 600569 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34185116ns 600574 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34185400ns 600579 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34185684ns 600584 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34186139ns 600592 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34186309ns 600595 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34186593ns 600600 1a110850 fd5ff06f jal x0, -44 +34186877ns 600605 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34187162ns 600610 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34187559ns 600617 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34187730ns 600620 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34188185ns 600628 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34188355ns 600631 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34188639ns 600636 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34188923ns 600641 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34189208ns 600646 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34189662ns 600654 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34189833ns 600657 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34190117ns 600662 1a110850 fd5ff06f jal x0, -44 +34190401ns 600667 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34190685ns 600672 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34191083ns 600679 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34191254ns 600682 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34191708ns 600690 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34191879ns 600693 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34192163ns 600698 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34192447ns 600703 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34192731ns 600708 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34193186ns 600716 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34193356ns 600719 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34193640ns 600724 1a110850 fd5ff06f jal x0, -44 +34193925ns 600729 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34194209ns 600734 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34194607ns 600741 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34194777ns 600744 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34195232ns 600752 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34195402ns 600755 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34195686ns 600760 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34195971ns 600765 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34196255ns 600770 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34196709ns 600778 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34196880ns 600781 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34197164ns 600786 1a110850 fd5ff06f jal x0, -44 +34197448ns 600791 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34197732ns 600796 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34198130ns 600803 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34198301ns 600806 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34198755ns 600814 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34198926ns 600817 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34199210ns 600822 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34199494ns 600827 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34199778ns 600832 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34200233ns 600840 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34200403ns 600843 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34200688ns 600848 1a110850 fd5ff06f jal x0, -44 +34200972ns 600853 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34201256ns 600858 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34201654ns 600865 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34201824ns 600868 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34202279ns 600876 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34202449ns 600879 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34202734ns 600884 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34203018ns 600889 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34203302ns 600894 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34203757ns 600902 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34203927ns 600905 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34204211ns 600910 1a110850 fd5ff06f jal x0, -44 +34204495ns 600915 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34204780ns 600920 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34205177ns 600927 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34205348ns 600930 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34205803ns 600938 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34205973ns 600941 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34206257ns 600946 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34206541ns 600951 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34206826ns 600956 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34207280ns 600964 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34207451ns 600967 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34207735ns 600972 1a110850 fd5ff06f jal x0, -44 +34208019ns 600977 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34208303ns 600982 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34208701ns 600989 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34208871ns 600992 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34209326ns 601000 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34209497ns 601003 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34209781ns 601008 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34210065ns 601013 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34210349ns 601018 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34210804ns 601026 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34210974ns 601029 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34211258ns 601034 1a110850 fd5ff06f jal x0, -44 +34211543ns 601039 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34211827ns 601044 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34212225ns 601051 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34212395ns 601054 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34212850ns 601062 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34213020ns 601065 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34213304ns 601070 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34213589ns 601075 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34213873ns 601080 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34214327ns 601088 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34214498ns 601091 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34214782ns 601096 1a110850 fd5ff06f jal x0, -44 +34215066ns 601101 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34215350ns 601106 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34215748ns 601113 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34215919ns 601116 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34216373ns 601124 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34216544ns 601127 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34216828ns 601132 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34217112ns 601137 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34217396ns 601142 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34217851ns 601150 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34218021ns 601153 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34218306ns 601158 1a110850 fd5ff06f jal x0, -44 +34218590ns 601163 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34218874ns 601168 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34219272ns 601175 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34219442ns 601178 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34219897ns 601186 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34220067ns 601189 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34220352ns 601194 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34220636ns 601199 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34220920ns 601204 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34221375ns 601212 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34221545ns 601215 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34221829ns 601220 1a110850 fd5ff06f jal x0, -44 +34222113ns 601225 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34222397ns 601230 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34222795ns 601237 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34222966ns 601240 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34223420ns 601248 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34223591ns 601251 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34223875ns 601256 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34224159ns 601261 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34224443ns 601266 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34224898ns 601274 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34225069ns 601277 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34225353ns 601282 1a110850 fd5ff06f jal x0, -44 +34225637ns 601287 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34225921ns 601292 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34226319ns 601299 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34226489ns 601302 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34226944ns 601310 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34227115ns 601313 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34227399ns 601318 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34227683ns 601323 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34227967ns 601328 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34228422ns 601336 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34228592ns 601339 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34228876ns 601344 1a110850 fd5ff06f jal x0, -44 +34229160ns 601349 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34229445ns 601354 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34229842ns 601361 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34230013ns 601364 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34230468ns 601372 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34230638ns 601375 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34230922ns 601380 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34231206ns 601385 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34231491ns 601390 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34231945ns 601398 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34232116ns 601401 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34232400ns 601406 1a110850 fd5ff06f jal x0, -44 +34232684ns 601411 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34232968ns 601416 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34233366ns 601423 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34233537ns 601426 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34233991ns 601434 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34234162ns 601437 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34234446ns 601442 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34234730ns 601447 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34235014ns 601452 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34235469ns 601460 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34235639ns 601463 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34235923ns 601468 1a110850 fd5ff06f jal x0, -44 +34236208ns 601473 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34236492ns 601478 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34236890ns 601485 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34237060ns 601488 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34237515ns 601496 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34237685ns 601499 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34237969ns 601504 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34238254ns 601509 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34238538ns 601514 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34238992ns 601522 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34239163ns 601525 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34239447ns 601530 1a110850 fd5ff06f jal x0, -44 +34239731ns 601535 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34240015ns 601540 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34240413ns 601547 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34240584ns 601550 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34241038ns 601558 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34241209ns 601561 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34241493ns 601566 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34241777ns 601571 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34242061ns 601576 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34242516ns 601584 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34242687ns 601587 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34242971ns 601592 1a110850 fd5ff06f jal x0, -44 +34243255ns 601597 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34243539ns 601602 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34243937ns 601609 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34244107ns 601612 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34244562ns 601620 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34244732ns 601623 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34245017ns 601628 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34245301ns 601633 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34245585ns 601638 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34246040ns 601646 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34246210ns 601649 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34246494ns 601654 1a110850 fd5ff06f jal x0, -44 +34246778ns 601659 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34247063ns 601664 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34247460ns 601671 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34247631ns 601674 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34248086ns 601682 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34248256ns 601685 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34248540ns 601690 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34248824ns 601695 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34249109ns 601700 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34249563ns 601708 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34249734ns 601711 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34250018ns 601716 1a110850 fd5ff06f jal x0, -44 +34250302ns 601721 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34250586ns 601726 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34250984ns 601733 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34251154ns 601736 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34251609ns 601744 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34251780ns 601747 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34252064ns 601752 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34252348ns 601757 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34252632ns 601762 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34253087ns 601770 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34253257ns 601773 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34253541ns 601778 1a110850 fd5ff06f jal x0, -44 +34253826ns 601783 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34254110ns 601788 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34254508ns 601795 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34254678ns 601798 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34255133ns 601806 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34255303ns 601809 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34255587ns 601814 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34255872ns 601819 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34256156ns 601824 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34256610ns 601832 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34256781ns 601835 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34257065ns 601840 1a110850 fd5ff06f jal x0, -44 +34257349ns 601845 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34257633ns 601850 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34258031ns 601857 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34258202ns 601860 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34258656ns 601868 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34258827ns 601871 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34259111ns 601876 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34259395ns 601881 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34259679ns 601886 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34260134ns 601894 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34260304ns 601897 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34260589ns 601902 1a110850 fd5ff06f jal x0, -44 +34260873ns 601907 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34261157ns 601912 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34261555ns 601919 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34261725ns 601922 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34262180ns 601930 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34262350ns 601933 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34262635ns 601938 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34262919ns 601943 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34263203ns 601948 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34263658ns 601956 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34263828ns 601959 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34264112ns 601964 1a110850 fd5ff06f jal x0, -44 +34264396ns 601969 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34264680ns 601974 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34265078ns 601981 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34265249ns 601984 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34265703ns 601992 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34265874ns 601995 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34266158ns 602000 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34266442ns 602005 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34266726ns 602010 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34267181ns 602018 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34267352ns 602021 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34267636ns 602026 1a110850 fd5ff06f jal x0, -44 +34267920ns 602031 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34268204ns 602036 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34268602ns 602043 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34268772ns 602046 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34269227ns 602054 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34269398ns 602057 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34269682ns 602062 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34269966ns 602067 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34270250ns 602072 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34270705ns 602080 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34270875ns 602083 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34271159ns 602088 1a110850 fd5ff06f jal x0, -44 +34271443ns 602093 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34271728ns 602098 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34272125ns 602105 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34272296ns 602108 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34272751ns 602116 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34272921ns 602119 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34273205ns 602124 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34273489ns 602129 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34273774ns 602134 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34274228ns 602142 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34274399ns 602145 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34274683ns 602150 1a110850 fd5ff06f jal x0, -44 +34274967ns 602155 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34275251ns 602160 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34275649ns 602167 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34275820ns 602170 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34276274ns 602178 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34276445ns 602181 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34276729ns 602186 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34277013ns 602191 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34277297ns 602196 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34277752ns 602204 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34277922ns 602207 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34278207ns 602212 1a110850 fd5ff06f jal x0, -44 +34278491ns 602217 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34278775ns 602222 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34279173ns 602229 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34279343ns 602232 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34279798ns 602240 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34279968ns 602243 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34280252ns 602248 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34280537ns 602253 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34280821ns 602258 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34281275ns 602266 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34281446ns 602269 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34281730ns 602274 1a110850 fd5ff06f jal x0, -44 +34282014ns 602279 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34282298ns 602284 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34282696ns 602291 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34282867ns 602294 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34283321ns 602302 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34283492ns 602305 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34283776ns 602310 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34284060ns 602315 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34284344ns 602320 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34284799ns 602328 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34284970ns 602331 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34285254ns 602336 1a110850 fd5ff06f jal x0, -44 +34285538ns 602341 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34285822ns 602346 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34286220ns 602353 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34286390ns 602356 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34286845ns 602364 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34287015ns 602367 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34287300ns 602372 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34287584ns 602377 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34287868ns 602382 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34288323ns 602390 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34288493ns 602393 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34288777ns 602398 1a110850 fd5ff06f jal x0, -44 +34289061ns 602403 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34289346ns 602408 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34289743ns 602415 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34289914ns 602418 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34290369ns 602426 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34290539ns 602429 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34290823ns 602434 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34291107ns 602439 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34291392ns 602444 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34291846ns 602452 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34292017ns 602455 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34292301ns 602460 1a110850 fd5ff06f jal x0, -44 +34292585ns 602465 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34292869ns 602470 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34293267ns 602477 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34293437ns 602480 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34293892ns 602488 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34294063ns 602491 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34294347ns 602496 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34294631ns 602501 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34294915ns 602506 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34295370ns 602514 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34295540ns 602517 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34295824ns 602522 1a110850 fd5ff06f jal x0, -44 +34296109ns 602527 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34296393ns 602532 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34296791ns 602539 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34296961ns 602542 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34297416ns 602550 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34297586ns 602553 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34297870ns 602558 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34298155ns 602563 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34298439ns 602568 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34298893ns 602576 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34299064ns 602579 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34299348ns 602584 1a110850 fd5ff06f jal x0, -44 +34299632ns 602589 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34299916ns 602594 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34300314ns 602601 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34300485ns 602604 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34300939ns 602612 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34301110ns 602615 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34301394ns 602620 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34301678ns 602625 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34301962ns 602630 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34302417ns 602638 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34302587ns 602641 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34302872ns 602646 1a110850 fd5ff06f jal x0, -44 +34303156ns 602651 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34303440ns 602656 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34303838ns 602663 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34304008ns 602666 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34304463ns 602674 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34304633ns 602677 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34304918ns 602682 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34305202ns 602687 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34305486ns 602692 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34305941ns 602700 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34306111ns 602703 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34306395ns 602708 1a110850 fd5ff06f jal x0, -44 +34306679ns 602713 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34306963ns 602718 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34307361ns 602725 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34307532ns 602728 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34307986ns 602736 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34308157ns 602739 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34308441ns 602744 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34308725ns 602749 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34309009ns 602754 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34309464ns 602762 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34309635ns 602765 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34309919ns 602770 1a110850 fd5ff06f jal x0, -44 +34310203ns 602775 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34310487ns 602780 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34310885ns 602787 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34311055ns 602790 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34311510ns 602798 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34311681ns 602801 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34311965ns 602806 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34312249ns 602811 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34312533ns 602816 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34312988ns 602824 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34313158ns 602827 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34313442ns 602832 1a110850 fd5ff06f jal x0, -44 +34313727ns 602837 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34314011ns 602842 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34314408ns 602849 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34314579ns 602852 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34315034ns 602860 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34315204ns 602863 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34315488ns 602868 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34315772ns 602873 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34316057ns 602878 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34316511ns 602886 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34316682ns 602889 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34316966ns 602894 1a110850 fd5ff06f jal x0, -44 +34317250ns 602899 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34317534ns 602904 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34317932ns 602911 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34318103ns 602914 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34318557ns 602922 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34318728ns 602925 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34319012ns 602930 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34319296ns 602935 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34319580ns 602940 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34320035ns 602948 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34320205ns 602951 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34320490ns 602956 1a110850 fd5ff06f jal x0, -44 +34320774ns 602961 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34321058ns 602966 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34321456ns 602973 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34321626ns 602976 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34322081ns 602984 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34322251ns 602987 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34322535ns 602992 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34322820ns 602997 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34323104ns 603002 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34323558ns 603010 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34323729ns 603013 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34324013ns 603018 1a110850 fd5ff06f jal x0, -44 +34324297ns 603023 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34324581ns 603028 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34324979ns 603035 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34325150ns 603038 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34325604ns 603046 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34325775ns 603049 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34326059ns 603054 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34326343ns 603059 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34326627ns 603064 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34327082ns 603072 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34327253ns 603075 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34327537ns 603080 1a110850 fd5ff06f jal x0, -44 +34327821ns 603085 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34328105ns 603090 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34328503ns 603097 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34328673ns 603100 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34329128ns 603108 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34329298ns 603111 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34329583ns 603116 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34329867ns 603121 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34330151ns 603126 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34330606ns 603134 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34330776ns 603137 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34331060ns 603142 1a110850 fd5ff06f jal x0, -44 +34331344ns 603147 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34331629ns 603152 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34332026ns 603159 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34332197ns 603162 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34332652ns 603170 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34332822ns 603173 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34333106ns 603178 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34333390ns 603183 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34333675ns 603188 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34334129ns 603196 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34334300ns 603199 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34334584ns 603204 1a110850 fd5ff06f jal x0, -44 +34334868ns 603209 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34335152ns 603214 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34335550ns 603221 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34335720ns 603224 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34336175ns 603232 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34336346ns 603235 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34336630ns 603240 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34336914ns 603245 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34337198ns 603250 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34337653ns 603258 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34337823ns 603261 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34338107ns 603266 1a110850 fd5ff06f jal x0, -44 +34338392ns 603271 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34338676ns 603276 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34339074ns 603283 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34339244ns 603286 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34339699ns 603294 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34339869ns 603297 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34340153ns 603302 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34340438ns 603307 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34340722ns 603312 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34341176ns 603320 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34341347ns 603323 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34341631ns 603328 1a110850 fd5ff06f jal x0, -44 +34341915ns 603333 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34342199ns 603338 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34342597ns 603345 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34342768ns 603348 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34343222ns 603356 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34343393ns 603359 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34343677ns 603364 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34343961ns 603369 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34344245ns 603374 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34344700ns 603382 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34344870ns 603385 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34345155ns 603390 1a110850 fd5ff06f jal x0, -44 +34345439ns 603395 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34345723ns 603400 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34346121ns 603407 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34346291ns 603410 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34346746ns 603418 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34346916ns 603421 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34347201ns 603426 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34347485ns 603431 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34347769ns 603436 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34348224ns 603444 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34348394ns 603447 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34348678ns 603452 1a110850 fd5ff06f jal x0, -44 +34348962ns 603457 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34349247ns 603462 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34349644ns 603469 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34349815ns 603472 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34350269ns 603480 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34350440ns 603483 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34350724ns 603488 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34351008ns 603493 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34351292ns 603498 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34351747ns 603506 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34351918ns 603509 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34352202ns 603514 1a110850 fd5ff06f jal x0, -44 +34352486ns 603519 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34352770ns 603524 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34353168ns 603531 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34353338ns 603534 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34353793ns 603542 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34353964ns 603545 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34354248ns 603550 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34354532ns 603555 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34354816ns 603560 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34355271ns 603568 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34355441ns 603571 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34355725ns 603576 1a110850 fd5ff06f jal x0, -44 +34356010ns 603581 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34356294ns 603586 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34356691ns 603593 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34356862ns 603596 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34357317ns 603604 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34357487ns 603607 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34357771ns 603612 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34358055ns 603617 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34358340ns 603622 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34358794ns 603630 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34358965ns 603633 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34359249ns 603638 1a110850 fd5ff06f jal x0, -44 +34359533ns 603643 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34359817ns 603648 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34360215ns 603655 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34360386ns 603658 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34360840ns 603666 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34361011ns 603669 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34361295ns 603674 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34361579ns 603679 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34361863ns 603684 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34362318ns 603692 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34362488ns 603695 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34362773ns 603700 1a110850 fd5ff06f jal x0, -44 +34363057ns 603705 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34363341ns 603710 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34363739ns 603717 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34363909ns 603720 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34364364ns 603728 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34364534ns 603731 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34364818ns 603736 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34365103ns 603741 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34365387ns 603746 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34365841ns 603754 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34366012ns 603757 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34366296ns 603762 1a110850 fd5ff06f jal x0, -44 +34366580ns 603767 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34366864ns 603772 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34367262ns 603779 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34367433ns 603782 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34367887ns 603790 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34368058ns 603793 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34368342ns 603798 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34368626ns 603803 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34368910ns 603808 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34369365ns 603816 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34369536ns 603819 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34369820ns 603824 1a110850 fd5ff06f jal x0, -44 +34370104ns 603829 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34370388ns 603834 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34370786ns 603841 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34370956ns 603844 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34371411ns 603852 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34371581ns 603855 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34371866ns 603860 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34372150ns 603865 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34372434ns 603870 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34372889ns 603878 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34373059ns 603881 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34373343ns 603886 1a110850 fd5ff06f jal x0, -44 +34373627ns 603891 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34373912ns 603896 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34374309ns 603903 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34374480ns 603906 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34374935ns 603914 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34375105ns 603917 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34375389ns 603922 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34375673ns 603927 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34375958ns 603932 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34376412ns 603940 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34376583ns 603943 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34376867ns 603948 1a110850 fd5ff06f jal x0, -44 +34377151ns 603953 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34377435ns 603958 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34377833ns 603965 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34378003ns 603968 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34378458ns 603976 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34378629ns 603979 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34378913ns 603984 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34379197ns 603989 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34379481ns 603994 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34379936ns 604002 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34380106ns 604005 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34380390ns 604010 1a110850 fd5ff06f jal x0, -44 +34380675ns 604015 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34380959ns 604020 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34381357ns 604027 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34381527ns 604030 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34381982ns 604038 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34382152ns 604041 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34382436ns 604046 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34382721ns 604051 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34383005ns 604056 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34383459ns 604064 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34383630ns 604067 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34383914ns 604072 1a110850 fd5ff06f jal x0, -44 +34384198ns 604077 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34384482ns 604082 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34384880ns 604089 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34385051ns 604092 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34385505ns 604100 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34385676ns 604103 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34385960ns 604108 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34386244ns 604113 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34386528ns 604118 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34386983ns 604126 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34387153ns 604129 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34387438ns 604134 1a110850 fd5ff06f jal x0, -44 +34387722ns 604139 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34388006ns 604144 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34388404ns 604151 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34388574ns 604154 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34389029ns 604162 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34389199ns 604165 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34389484ns 604170 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34389768ns 604175 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34390052ns 604180 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34390507ns 604188 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34390677ns 604191 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34390961ns 604196 1a110850 fd5ff06f jal x0, -44 +34391245ns 604201 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34391530ns 604206 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34391927ns 604213 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34392098ns 604216 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34392552ns 604224 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34392723ns 604227 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34393007ns 604232 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34393291ns 604237 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34393575ns 604242 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34394030ns 604250 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34394201ns 604253 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34394485ns 604258 1a110850 fd5ff06f jal x0, -44 +34394769ns 604263 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34395053ns 604268 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34395451ns 604275 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34395621ns 604278 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34396076ns 604286 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34396247ns 604289 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34396531ns 604294 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34396815ns 604299 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34397099ns 604304 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34397554ns 604312 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34397724ns 604315 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34398008ns 604320 1a110850 fd5ff06f jal x0, -44 +34398293ns 604325 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34398577ns 604330 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34398975ns 604337 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34399145ns 604340 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34399600ns 604348 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34399770ns 604351 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34400054ns 604356 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34400338ns 604361 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34400623ns 604366 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34401077ns 604374 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34401248ns 604377 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34401532ns 604382 1a110850 fd5ff06f jal x0, -44 +34401816ns 604387 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34402100ns 604392 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34402498ns 604399 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34402669ns 604402 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34403123ns 604410 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34403294ns 604413 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34403578ns 604418 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34403862ns 604423 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34404146ns 604428 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34404601ns 604436 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34404771ns 604439 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34405056ns 604444 1a110850 fd5ff06f jal x0, -44 +34405340ns 604449 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34405624ns 604454 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34406022ns 604461 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34406192ns 604464 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34406647ns 604472 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34406817ns 604475 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34407101ns 604480 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34407386ns 604485 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34407670ns 604490 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34408124ns 604498 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34408295ns 604501 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34408579ns 604506 1a110850 fd5ff06f jal x0, -44 +34408863ns 604511 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34409147ns 604516 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34409545ns 604523 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34409716ns 604526 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34410170ns 604534 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34410341ns 604537 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34410625ns 604542 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34410909ns 604547 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34411193ns 604552 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34411648ns 604560 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34411819ns 604563 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34412103ns 604568 1a110850 fd5ff06f jal x0, -44 +34412387ns 604573 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34412671ns 604578 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34413069ns 604585 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34413239ns 604588 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34413694ns 604596 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34413864ns 604599 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34414149ns 604604 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34414433ns 604609 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34414717ns 604614 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34415172ns 604622 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34415342ns 604625 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34415626ns 604630 1a110850 fd5ff06f jal x0, -44 +34415910ns 604635 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34416195ns 604640 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34416592ns 604647 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34416763ns 604650 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34417218ns 604658 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34417388ns 604661 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34417672ns 604666 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34417956ns 604671 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34418241ns 604676 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34418695ns 604684 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34418866ns 604687 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34419150ns 604692 1a110850 fd5ff06f jal x0, -44 +34419434ns 604697 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34419718ns 604702 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34420116ns 604709 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34420287ns 604712 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34420741ns 604720 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34420912ns 604723 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34421196ns 604728 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34421480ns 604733 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34421764ns 604738 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34422219ns 604746 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34422389ns 604749 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34422673ns 604754 1a110850 fd5ff06f jal x0, -44 +34422958ns 604759 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34423242ns 604764 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34423640ns 604771 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34423810ns 604774 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34424265ns 604782 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34424435ns 604785 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34424719ns 604790 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34425004ns 604795 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34425288ns 604800 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34425742ns 604808 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34425913ns 604811 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34426197ns 604816 1a110850 fd5ff06f jal x0, -44 +34426481ns 604821 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34426765ns 604826 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34427163ns 604833 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34427334ns 604836 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34427788ns 604844 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34427959ns 604847 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34428243ns 604852 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34428527ns 604857 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34428811ns 604862 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34429266ns 604870 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34429436ns 604873 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34429721ns 604878 1a110850 fd5ff06f jal x0, -44 +34430005ns 604883 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34430289ns 604888 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34430687ns 604895 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34430857ns 604898 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34431312ns 604906 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34431482ns 604909 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34431767ns 604914 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34432051ns 604919 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34432335ns 604924 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34432790ns 604932 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34432960ns 604935 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34433244ns 604940 1a110850 fd5ff06f jal x0, -44 +34433528ns 604945 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34433813ns 604950 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34434210ns 604957 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34434381ns 604960 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34434835ns 604968 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34435006ns 604971 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34435290ns 604976 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34435574ns 604981 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34435858ns 604986 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34436313ns 604994 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34436484ns 604997 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34436768ns 605002 1a110850 fd5ff06f jal x0, -44 +34437052ns 605007 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34437336ns 605012 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34437734ns 605019 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34437904ns 605022 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34438359ns 605030 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34438530ns 605033 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34438814ns 605038 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34439098ns 605043 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34439382ns 605048 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34439837ns 605056 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34440007ns 605059 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34440291ns 605064 1a110850 fd5ff06f jal x0, -44 +34440576ns 605069 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34440860ns 605074 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34441258ns 605081 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34441428ns 605084 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34441883ns 605092 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34442053ns 605095 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34442337ns 605100 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34442621ns 605105 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34442906ns 605110 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34443360ns 605118 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34443531ns 605121 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34443815ns 605126 1a110850 fd5ff06f jal x0, -44 +34444099ns 605131 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34444383ns 605136 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34444781ns 605143 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34444952ns 605146 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34445406ns 605154 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34445577ns 605157 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34445861ns 605162 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34446145ns 605167 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34446429ns 605172 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34446884ns 605180 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34447054ns 605183 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34447339ns 605188 1a110850 fd5ff06f jal x0, -44 +34447623ns 605193 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34447907ns 605198 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34448305ns 605205 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34448475ns 605208 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34448930ns 605216 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34449100ns 605219 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34449384ns 605224 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34449669ns 605229 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34449953ns 605234 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34450407ns 605242 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34450578ns 605245 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34450862ns 605250 1a110850 fd5ff06f jal x0, -44 +34451146ns 605255 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34451430ns 605260 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34451828ns 605267 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34451999ns 605270 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34452453ns 605278 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34452624ns 605281 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34452908ns 605286 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34453192ns 605291 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34453476ns 605296 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34453931ns 605304 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34454102ns 605307 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34454386ns 605312 1a110850 fd5ff06f jal x0, -44 +34454670ns 605317 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34454954ns 605322 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34455352ns 605329 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34455522ns 605332 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34455977ns 605340 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34456147ns 605343 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34456432ns 605348 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34456716ns 605353 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34457000ns 605358 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34457455ns 605366 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34457625ns 605369 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34457909ns 605374 1a110850 fd5ff06f jal x0, -44 +34458193ns 605379 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34458478ns 605384 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34458875ns 605391 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34459046ns 605394 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34459501ns 605402 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34459671ns 605405 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34459955ns 605410 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34460239ns 605415 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34460524ns 605420 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34460978ns 605428 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34461149ns 605431 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34461433ns 605436 1a110850 fd5ff06f jal x0, -44 +34461717ns 605441 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34462001ns 605446 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34462399ns 605453 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34462570ns 605456 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34463024ns 605464 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34463195ns 605467 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34463479ns 605472 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34463763ns 605477 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34464047ns 605482 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34464502ns 605490 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34464672ns 605493 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34464956ns 605498 1a110850 fd5ff06f jal x0, -44 +34465241ns 605503 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34465525ns 605508 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34465923ns 605515 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34466093ns 605518 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34466548ns 605526 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34466718ns 605529 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34467002ns 605534 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34467287ns 605539 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34467571ns 605544 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34468025ns 605552 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34468196ns 605555 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34468480ns 605560 1a110850 fd5ff06f jal x0, -44 +34468764ns 605565 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34469048ns 605570 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34469446ns 605577 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34469617ns 605580 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34470071ns 605588 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34470242ns 605591 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34470526ns 605596 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34470810ns 605601 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34471094ns 605606 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34471549ns 605614 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34471719ns 605617 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34472004ns 605622 1a110850 fd5ff06f jal x0, -44 +34472288ns 605627 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34472572ns 605632 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34472970ns 605639 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34473140ns 605642 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34473595ns 605650 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34473765ns 605653 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34474050ns 605658 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34474334ns 605663 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34474618ns 605668 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34475073ns 605676 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34475243ns 605679 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34475527ns 605684 1a110850 fd5ff06f jal x0, -44 +34475811ns 605689 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34476096ns 605694 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34476493ns 605701 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34476664ns 605704 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34477119ns 605712 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34477289ns 605715 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34477573ns 605720 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34477857ns 605725 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34478141ns 605730 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34478596ns 605738 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34478767ns 605741 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34479051ns 605746 1a110850 fd5ff06f jal x0, -44 +34479335ns 605751 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34479619ns 605756 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34480017ns 605763 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34480187ns 605766 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34480642ns 605774 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34480813ns 605777 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34481097ns 605782 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34481381ns 605787 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34481665ns 605792 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34482120ns 605800 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34482290ns 605803 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34482574ns 605808 1a110850 fd5ff06f jal x0, -44 +34482859ns 605813 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34483143ns 605818 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34483541ns 605825 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34483711ns 605828 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34484166ns 605836 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34484336ns 605839 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34484620ns 605844 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34484904ns 605849 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34485189ns 605854 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34485643ns 605862 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34485814ns 605865 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34486098ns 605870 1a110850 fd5ff06f jal x0, -44 +34486382ns 605875 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34486666ns 605880 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34487064ns 605887 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34487235ns 605890 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34487689ns 605898 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34487860ns 605901 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34488144ns 605906 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34488428ns 605911 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34488712ns 605916 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34489167ns 605924 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34489337ns 605927 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34489622ns 605932 1a110850 fd5ff06f jal x0, -44 +34489906ns 605937 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34490190ns 605942 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34490588ns 605949 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34490758ns 605952 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34491213ns 605960 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34491383ns 605963 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34491667ns 605968 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34491952ns 605973 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34492236ns 605978 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34492690ns 605986 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34492861ns 605989 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34493145ns 605994 1a110850 fd5ff06f jal x0, -44 +34493429ns 605999 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34493713ns 606004 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34494111ns 606011 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34494282ns 606014 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34494736ns 606022 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34494907ns 606025 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34495191ns 606030 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34495475ns 606035 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34495759ns 606040 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34496214ns 606048 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34496385ns 606051 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34496669ns 606056 1a110850 fd5ff06f jal x0, -44 +34496953ns 606061 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34497237ns 606066 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34497635ns 606073 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34497805ns 606076 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34498260ns 606084 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34498431ns 606087 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34498715ns 606092 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34498999ns 606097 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34499283ns 606102 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34499738ns 606110 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34499908ns 606113 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34500192ns 606118 1a110850 fd5ff06f jal x0, -44 +34500476ns 606123 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34500761ns 606128 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34501158ns 606135 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34501329ns 606138 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34501784ns 606146 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34501954ns 606149 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34502238ns 606154 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34502522ns 606159 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34502807ns 606164 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34503261ns 606172 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34503432ns 606175 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34503716ns 606180 1a110850 fd5ff06f jal x0, -44 +34504000ns 606185 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34504284ns 606190 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34504682ns 606197 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34504853ns 606200 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34505307ns 606208 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34505478ns 606211 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34505762ns 606216 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34506046ns 606221 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34506330ns 606226 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34506785ns 606234 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34506955ns 606237 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34507239ns 606242 1a110850 fd5ff06f jal x0, -44 +34507524ns 606247 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34507808ns 606252 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34508206ns 606259 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34508376ns 606262 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34508831ns 606270 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34509001ns 606273 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34509285ns 606278 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34509570ns 606283 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34509854ns 606288 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34510308ns 606296 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34510479ns 606299 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34510763ns 606304 1a110850 fd5ff06f jal x0, -44 +34511047ns 606309 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34511331ns 606314 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34511729ns 606321 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34511900ns 606324 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34512354ns 606332 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34512525ns 606335 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34512809ns 606340 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34513093ns 606345 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34513377ns 606350 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34513832ns 606358 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34514002ns 606361 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34514287ns 606366 1a110850 fd5ff06f jal x0, -44 +34514571ns 606371 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34514855ns 606376 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34515253ns 606383 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34515423ns 606386 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34515878ns 606394 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34516048ns 606397 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34516333ns 606402 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34516617ns 606407 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34516901ns 606412 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34517356ns 606420 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34517526ns 606423 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34517810ns 606428 1a110850 fd5ff06f jal x0, -44 +34518094ns 606433 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34518379ns 606438 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34518776ns 606445 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34518947ns 606448 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34519402ns 606456 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34519572ns 606459 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34519856ns 606464 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34520140ns 606469 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34520424ns 606474 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34520879ns 606482 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34521050ns 606485 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34521334ns 606490 1a110850 fd5ff06f jal x0, -44 +34521618ns 606495 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34521902ns 606500 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34522300ns 606507 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34522470ns 606510 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34522925ns 606518 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34523096ns 606521 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34523380ns 606526 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34523664ns 606531 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34523948ns 606536 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34524403ns 606544 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34524573ns 606547 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34524857ns 606552 1a110850 fd5ff06f jal x0, -44 +34525142ns 606557 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34525426ns 606562 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34525824ns 606569 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34525994ns 606572 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34526449ns 606580 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34526619ns 606583 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34526903ns 606588 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34527187ns 606593 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34527472ns 606598 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34527926ns 606606 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34528097ns 606609 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34528381ns 606614 1a110850 fd5ff06f jal x0, -44 +34528665ns 606619 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34528949ns 606624 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34529347ns 606631 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34529518ns 606634 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34529972ns 606642 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34530143ns 606645 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34530427ns 606650 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34530711ns 606655 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34530995ns 606660 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34531450ns 606668 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34531620ns 606671 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34531905ns 606676 1a110850 fd5ff06f jal x0, -44 +34532189ns 606681 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34532473ns 606686 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34532871ns 606693 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34533041ns 606696 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34533496ns 606704 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34533666ns 606707 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34533951ns 606712 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34534235ns 606717 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34534519ns 606722 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34534973ns 606730 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34535144ns 606733 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34535428ns 606738 1a110850 fd5ff06f jal x0, -44 +34535712ns 606743 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34535996ns 606748 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34536394ns 606755 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34536565ns 606758 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34537019ns 606766 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34537190ns 606769 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34537474ns 606774 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34537758ns 606779 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34538042ns 606784 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34538497ns 606792 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34538668ns 606795 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34538952ns 606800 1a110850 fd5ff06f jal x0, -44 +34539236ns 606805 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34539520ns 606810 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34539918ns 606817 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34540088ns 606820 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34540543ns 606828 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34540714ns 606831 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34540998ns 606836 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34541282ns 606841 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34541566ns 606846 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34542021ns 606854 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34542191ns 606857 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34542475ns 606862 1a110850 fd5ff06f jal x0, -44 +34542759ns 606867 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34543044ns 606872 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34543441ns 606879 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34543612ns 606882 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34544067ns 606890 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34544237ns 606893 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34544521ns 606898 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34544805ns 606903 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34545090ns 606908 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34545544ns 606916 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34545715ns 606919 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34545999ns 606924 1a110850 fd5ff06f jal x0, -44 +34546283ns 606929 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34546567ns 606934 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34546965ns 606941 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34547136ns 606944 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34547590ns 606952 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34547761ns 606955 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34548045ns 606960 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34548329ns 606965 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34548613ns 606970 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34549068ns 606978 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34549238ns 606981 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34549522ns 606986 1a110850 fd5ff06f jal x0, -44 +34549807ns 606991 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34550091ns 606996 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34550489ns 607003 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34550659ns 607006 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34551114ns 607014 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34551284ns 607017 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34551568ns 607022 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34551853ns 607027 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34552137ns 607032 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34552591ns 607040 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34552762ns 607043 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34553046ns 607048 1a110850 fd5ff06f jal x0, -44 +34553330ns 607053 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34553614ns 607058 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34554012ns 607065 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34554183ns 607068 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34554637ns 607076 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34554808ns 607079 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34555092ns 607084 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34555376ns 607089 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34555660ns 607094 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34556115ns 607102 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34556285ns 607105 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34556570ns 607110 1a110850 fd5ff06f jal x0, -44 +34556854ns 607115 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34557138ns 607120 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34557536ns 607127 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34557706ns 607130 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34558161ns 607138 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34558331ns 607141 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34558616ns 607146 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34558900ns 607151 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34559184ns 607156 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34559639ns 607164 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34559809ns 607167 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34560093ns 607172 1a110850 fd5ff06f jal x0, -44 +34560377ns 607177 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34560662ns 607182 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34561059ns 607189 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34561230ns 607192 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34561685ns 607200 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34561855ns 607203 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34562139ns 607208 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34562423ns 607213 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34562707ns 607218 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34563162ns 607226 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34563333ns 607229 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34563617ns 607234 1a110850 fd5ff06f jal x0, -44 +34563901ns 607239 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34564185ns 607244 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34564583ns 607251 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34564753ns 607254 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34565208ns 607262 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34565379ns 607265 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34565663ns 607270 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34565947ns 607275 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34566231ns 607280 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34566686ns 607288 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34566856ns 607291 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34567140ns 607296 1a110850 fd5ff06f jal x0, -44 +34567425ns 607301 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34567709ns 607306 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34568107ns 607313 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34568277ns 607316 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34568732ns 607324 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34568902ns 607327 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34569186ns 607332 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34569471ns 607337 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34569755ns 607342 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34570209ns 607350 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34570380ns 607353 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34570664ns 607358 1a110850 fd5ff06f jal x0, -44 +34570948ns 607363 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34571232ns 607368 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34571630ns 607375 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34571801ns 607378 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34572255ns 607386 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34572426ns 607389 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34572710ns 607394 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34572994ns 607399 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34573278ns 607404 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34573733ns 607412 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34573903ns 607415 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34574188ns 607420 1a110850 fd5ff06f jal x0, -44 +34574472ns 607425 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34574756ns 607430 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34575154ns 607437 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34575324ns 607440 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34575779ns 607448 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34575949ns 607451 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34576234ns 607456 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34576518ns 607461 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34576802ns 607466 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34577256ns 607474 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34577427ns 607477 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34577711ns 607482 1a110850 fd5ff06f jal x0, -44 +34577995ns 607487 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34578279ns 607492 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34578677ns 607499 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34578848ns 607502 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34579302ns 607510 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34579473ns 607513 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34579757ns 607518 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34580041ns 607523 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34580325ns 607528 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34580780ns 607536 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34580951ns 607539 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34581235ns 607544 1a110850 fd5ff06f jal x0, -44 +34581519ns 607549 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34581803ns 607554 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34582201ns 607561 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34582371ns 607564 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34582826ns 607572 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34582997ns 607575 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34583281ns 607580 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34583565ns 607585 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34583849ns 607590 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34584304ns 607598 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34584474ns 607601 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34584758ns 607606 1a110850 fd5ff06f jal x0, -44 +34585042ns 607611 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34585327ns 607616 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34585724ns 607623 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34585895ns 607626 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34586350ns 607634 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34586520ns 607637 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34586804ns 607642 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34587088ns 607647 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34587373ns 607652 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34587827ns 607660 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34587998ns 607663 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34588282ns 607668 1a110850 fd5ff06f jal x0, -44 +34588566ns 607673 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34588850ns 607678 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34589248ns 607685 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34589419ns 607688 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34589873ns 607696 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34590044ns 607699 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34590328ns 607704 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34590612ns 607709 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34590896ns 607714 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34591351ns 607722 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34591521ns 607725 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34591805ns 607730 1a110850 fd5ff06f jal x0, -44 +34592090ns 607735 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34592374ns 607740 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34592772ns 607747 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34592942ns 607750 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34593397ns 607758 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34593567ns 607761 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34593851ns 607766 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34594136ns 607771 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34594420ns 607776 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34594874ns 607784 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34595045ns 607787 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34595329ns 607792 1a110850 fd5ff06f jal x0, -44 +34595613ns 607797 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34595897ns 607802 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34596295ns 607809 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34596466ns 607812 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34596920ns 607820 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34597091ns 607823 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34597375ns 607828 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34597659ns 607833 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34597943ns 607838 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34598398ns 607846 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34598568ns 607849 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34598853ns 607854 1a110850 fd5ff06f jal x0, -44 +34599137ns 607859 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34599421ns 607864 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34599819ns 607871 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34599989ns 607874 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34600444ns 607882 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34600614ns 607885 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34600899ns 607890 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34601183ns 607895 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34601467ns 607900 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34601922ns 607908 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34602092ns 607911 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34602376ns 607916 1a110850 fd5ff06f jal x0, -44 +34602660ns 607921 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34602945ns 607926 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34603342ns 607933 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34603513ns 607936 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34603968ns 607944 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34604138ns 607947 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34604422ns 607952 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34604706ns 607957 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34604991ns 607962 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34605445ns 607970 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34605616ns 607973 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34605900ns 607978 1a110850 fd5ff06f jal x0, -44 +34606184ns 607983 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34606468ns 607988 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34606866ns 607995 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34607036ns 607998 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34607491ns 608006 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34607662ns 608009 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34607946ns 608014 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34608230ns 608019 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34608514ns 608024 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34608969ns 608032 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34609139ns 608035 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34609423ns 608040 1a110850 fd5ff06f jal x0, -44 +34609708ns 608045 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34609992ns 608050 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34610390ns 608057 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34610560ns 608060 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34611015ns 608068 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34611185ns 608071 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34611469ns 608076 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34611754ns 608081 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34612038ns 608086 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34612492ns 608094 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34612663ns 608097 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34612947ns 608102 1a110850 fd5ff06f jal x0, -44 +34613231ns 608107 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34613515ns 608112 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34613913ns 608119 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34614084ns 608122 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34614538ns 608130 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34614709ns 608133 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34614993ns 608138 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34615277ns 608143 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34615561ns 608148 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34616016ns 608156 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34616186ns 608159 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34616471ns 608164 1a110850 fd5ff06f jal x0, -44 +34616755ns 608169 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34617039ns 608174 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34617437ns 608181 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34617607ns 608184 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34618062ns 608192 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34618232ns 608195 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34618517ns 608200 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34618801ns 608205 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34619085ns 608210 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34619539ns 608218 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34619710ns 608221 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34619994ns 608226 1a110850 fd5ff06f jal x0, -44 +34620278ns 608231 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34620562ns 608236 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34620960ns 608243 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34621131ns 608246 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34621585ns 608254 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34621756ns 608257 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34622040ns 608262 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34622324ns 608267 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34622608ns 608272 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34623063ns 608280 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34623234ns 608283 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34623518ns 608288 1a110850 fd5ff06f jal x0, -44 +34623802ns 608293 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34624086ns 608298 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34624484ns 608305 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34624654ns 608308 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34625109ns 608316 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34625280ns 608319 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34625564ns 608324 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34625848ns 608329 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34626132ns 608334 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34626587ns 608342 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34626757ns 608345 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34627041ns 608350 1a110850 fd5ff06f jal x0, -44 +34627325ns 608355 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34627610ns 608360 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34628007ns 608367 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34628178ns 608370 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34628633ns 608378 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34628803ns 608381 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34629087ns 608386 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34629371ns 608391 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34629656ns 608396 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34630110ns 608404 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34630281ns 608407 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34630565ns 608412 1a110850 fd5ff06f jal x0, -44 +34630849ns 608417 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34631133ns 608422 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34631531ns 608429 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34631702ns 608432 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34632156ns 608440 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34632327ns 608443 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34632611ns 608448 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34632895ns 608453 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34633179ns 608458 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34633634ns 608466 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34633804ns 608469 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34634088ns 608474 1a110850 fd5ff06f jal x0, -44 +34634373ns 608479 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34634657ns 608484 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34635055ns 608491 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34635225ns 608494 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34635680ns 608502 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34635850ns 608505 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34636134ns 608510 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34636419ns 608515 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34636703ns 608520 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34637157ns 608528 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34637328ns 608531 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34637612ns 608536 1a110850 fd5ff06f jal x0, -44 +34637896ns 608541 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34638180ns 608546 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34638578ns 608553 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34638749ns 608556 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34639203ns 608564 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34639374ns 608567 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34639658ns 608572 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34639942ns 608577 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34640226ns 608582 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34640681ns 608590 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34640851ns 608593 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34641136ns 608598 1a110850 fd5ff06f jal x0, -44 +34641420ns 608603 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34641704ns 608608 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34642102ns 608615 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34642272ns 608618 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34642727ns 608626 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34642897ns 608629 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34643182ns 608634 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34643466ns 608639 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34643750ns 608644 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34644205ns 608652 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34644375ns 608655 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34644659ns 608660 1a110850 fd5ff06f jal x0, -44 +34644943ns 608665 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34645228ns 608670 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34645625ns 608677 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34645796ns 608680 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34646251ns 608688 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34646421ns 608691 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34646705ns 608696 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34646989ns 608701 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34647274ns 608706 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34647728ns 608714 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34647899ns 608717 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34648183ns 608722 1a110850 fd5ff06f jal x0, -44 +34648467ns 608727 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34648751ns 608732 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34649149ns 608739 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34649319ns 608742 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34649774ns 608750 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34649945ns 608753 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34650229ns 608758 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34650513ns 608763 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34650797ns 608768 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34651252ns 608776 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34651422ns 608779 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34651706ns 608784 1a110850 fd5ff06f jal x0, -44 +34651991ns 608789 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34652275ns 608794 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34652673ns 608801 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34652843ns 608804 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34653298ns 608812 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34653468ns 608815 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34653752ns 608820 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34654037ns 608825 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34654321ns 608830 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34654775ns 608838 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34654946ns 608841 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34655230ns 608846 1a110850 fd5ff06f jal x0, -44 +34655514ns 608851 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34655798ns 608856 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34656196ns 608863 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34656367ns 608866 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34656821ns 608874 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34656992ns 608877 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34657276ns 608882 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34657560ns 608887 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34657844ns 608892 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34658299ns 608900 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34658469ns 608903 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34658754ns 608908 1a110850 fd5ff06f jal x0, -44 +34659038ns 608913 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34659322ns 608918 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34659720ns 608925 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34659890ns 608928 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34660345ns 608936 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34660515ns 608939 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34660800ns 608944 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34661084ns 608949 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34661368ns 608954 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34661823ns 608962 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34661993ns 608965 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34662277ns 608970 1a110850 fd5ff06f jal x0, -44 +34662561ns 608975 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34662845ns 608980 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34663243ns 608987 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34663414ns 608990 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34663868ns 608998 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34664039ns 609001 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34664323ns 609006 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34664607ns 609011 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34664891ns 609016 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34665346ns 609024 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34665517ns 609027 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34665801ns 609032 1a110850 fd5ff06f jal x0, -44 +34666085ns 609037 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34666369ns 609042 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34666767ns 609049 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34666937ns 609052 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34667392ns 609060 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34667563ns 609063 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34667847ns 609068 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34668131ns 609073 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34668415ns 609078 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34668870ns 609086 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34669040ns 609089 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34669324ns 609094 1a110850 fd5ff06f jal x0, -44 +34669608ns 609099 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34669893ns 609104 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34670290ns 609111 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34670461ns 609114 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34670916ns 609122 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34671086ns 609125 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34671370ns 609130 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34671654ns 609135 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34671939ns 609140 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34672393ns 609148 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34672564ns 609151 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34672848ns 609156 1a110850 fd5ff06f jal x0, -44 +34673132ns 609161 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34673416ns 609166 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34673814ns 609173 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34673985ns 609176 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34674439ns 609184 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34674610ns 609187 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34674894ns 609192 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34675178ns 609197 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34675462ns 609202 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34675917ns 609210 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34676087ns 609213 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34676371ns 609218 1a110850 fd5ff06f jal x0, -44 +34676656ns 609223 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34676940ns 609228 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34677338ns 609235 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34677508ns 609238 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34677963ns 609246 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34678133ns 609249 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34678417ns 609254 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34678702ns 609259 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34678986ns 609264 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34679440ns 609272 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34679611ns 609275 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34679895ns 609280 1a110850 fd5ff06f jal x0, -44 +34680179ns 609285 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34680463ns 609290 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34680861ns 609297 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34681032ns 609300 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34681486ns 609308 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34681657ns 609311 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34681941ns 609316 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34682225ns 609321 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34682509ns 609326 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34682964ns 609334 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34683135ns 609337 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34683419ns 609342 1a110850 fd5ff06f jal x0, -44 +34683703ns 609347 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34683987ns 609352 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34684385ns 609359 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34684555ns 609362 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34685010ns 609370 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34685180ns 609373 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34685465ns 609378 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34685749ns 609383 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34686033ns 609388 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34686488ns 609396 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34686658ns 609399 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34686942ns 609404 1a110850 fd5ff06f jal x0, -44 +34687226ns 609409 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34687511ns 609414 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34687908ns 609421 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34688079ns 609424 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34688534ns 609432 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34688704ns 609435 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34688988ns 609440 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34689272ns 609445 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34689557ns 609450 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34690011ns 609458 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34690182ns 609461 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34690466ns 609466 1a110850 fd5ff06f jal x0, -44 +34690750ns 609471 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34691034ns 609476 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34691432ns 609483 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34691602ns 609486 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34692057ns 609494 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34692228ns 609497 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34692512ns 609502 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34692796ns 609507 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34693080ns 609512 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34693535ns 609520 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34693705ns 609523 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34693989ns 609528 1a110850 fd5ff06f jal x0, -44 +34694274ns 609533 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34694558ns 609538 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34694956ns 609545 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34695126ns 609548 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34695581ns 609556 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34695751ns 609559 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34696035ns 609564 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34696320ns 609569 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34696604ns 609574 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34697058ns 609582 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34697229ns 609585 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34697513ns 609590 1a110850 fd5ff06f jal x0, -44 +34697797ns 609595 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34698081ns 609600 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34698479ns 609607 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34698650ns 609610 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34699104ns 609618 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34699275ns 609621 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34699559ns 609626 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34699843ns 609631 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34700127ns 609636 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34700582ns 609644 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34700752ns 609647 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34701037ns 609652 1a110850 fd5ff06f jal x0, -44 +34701321ns 609657 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34701605ns 609662 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34702003ns 609669 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34702173ns 609672 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34702628ns 609680 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34702798ns 609683 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34703083ns 609688 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34703367ns 609693 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34703651ns 609698 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34704106ns 609706 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34704276ns 609709 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34704560ns 609714 1a110850 fd5ff06f jal x0, -44 +34704844ns 609719 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34705128ns 609724 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34705526ns 609731 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34705697ns 609734 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34706151ns 609742 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34706322ns 609745 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34706606ns 609750 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34706890ns 609755 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34707174ns 609760 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34707629ns 609768 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34707800ns 609771 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34708084ns 609776 1a110850 fd5ff06f jal x0, -44 +34708368ns 609781 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34708652ns 609786 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34709050ns 609793 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34709220ns 609796 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34709675ns 609804 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34709846ns 609807 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34710130ns 609812 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34710414ns 609817 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34710698ns 609822 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34711153ns 609830 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34711323ns 609833 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34711607ns 609838 1a110850 fd5ff06f jal x0, -44 +34711891ns 609843 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34712176ns 609848 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34712573ns 609855 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34712744ns 609858 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34713199ns 609866 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34713369ns 609869 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34713653ns 609874 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34713937ns 609879 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34714222ns 609884 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34714676ns 609892 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34714847ns 609895 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34715131ns 609900 1a110850 fd5ff06f jal x0, -44 +34715415ns 609905 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34715699ns 609910 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34716097ns 609917 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34716268ns 609920 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34716722ns 609928 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34716893ns 609931 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34717177ns 609936 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34717461ns 609941 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34717745ns 609946 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34718200ns 609954 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34718370ns 609957 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34718655ns 609962 1a110850 fd5ff06f jal x0, -44 +34718939ns 609967 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34719223ns 609972 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34719621ns 609979 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34719791ns 609982 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34720246ns 609990 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34720416ns 609993 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34720700ns 609998 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34720985ns 610003 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34721269ns 610008 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34721723ns 610016 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34721894ns 610019 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34722178ns 610024 1a110850 fd5ff06f jal x0, -44 +34722462ns 610029 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34722746ns 610034 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34723144ns 610041 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34723315ns 610044 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34723769ns 610052 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34723940ns 610055 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34724224ns 610060 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34724508ns 610065 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34724792ns 610070 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34725247ns 610078 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34725418ns 610081 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34725702ns 610086 1a110850 fd5ff06f jal x0, -44 +34725986ns 610091 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34726270ns 610096 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34726668ns 610103 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34726838ns 610106 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34727293ns 610114 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34727463ns 610117 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34727748ns 610122 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34728032ns 610127 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34728316ns 610132 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34728771ns 610140 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34728941ns 610143 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34729225ns 610148 1a110850 fd5ff06f jal x0, -44 +34729509ns 610153 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34729794ns 610158 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34730191ns 610165 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34730362ns 610168 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34730817ns 610176 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34730987ns 610179 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34731271ns 610184 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34731555ns 610189 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34731840ns 610194 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34732294ns 610202 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34732465ns 610205 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34732749ns 610210 1a110850 fd5ff06f jal x0, -44 +34733033ns 610215 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34733317ns 610220 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34733715ns 610227 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34733885ns 610230 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34734340ns 610238 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34734511ns 610241 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34734795ns 610246 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34735079ns 610251 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34735363ns 610256 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34735818ns 610264 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34735988ns 610267 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34736272ns 610272 1a110850 fd5ff06f jal x0, -44 +34736557ns 610277 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34736841ns 610282 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34737239ns 610289 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34737409ns 610292 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34737864ns 610300 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34738034ns 610303 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34738318ns 610308 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34738603ns 610313 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34738887ns 610318 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34739341ns 610326 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34739512ns 610329 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34739796ns 610334 1a110850 fd5ff06f jal x0, -44 +34740080ns 610339 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34740364ns 610344 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34740762ns 610351 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34740933ns 610354 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34741387ns 610362 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34741558ns 610365 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34741842ns 610370 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34742126ns 610375 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34742410ns 610380 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34742865ns 610388 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34743035ns 610391 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34743320ns 610396 1a110850 fd5ff06f jal x0, -44 +34743604ns 610401 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34743888ns 610406 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34744286ns 610413 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34744456ns 610416 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34744911ns 610424 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34745081ns 610427 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34745366ns 610432 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34745650ns 610437 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34745934ns 610442 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34746389ns 610450 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34746559ns 610453 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34746843ns 610458 1a110850 fd5ff06f jal x0, -44 +34747127ns 610463 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34747411ns 610468 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34747809ns 610475 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34747980ns 610478 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34748434ns 610486 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34748605ns 610489 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34748889ns 610494 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34749173ns 610499 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34749457ns 610504 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34749912ns 610512 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34750083ns 610515 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34750367ns 610520 1a110850 fd5ff06f jal x0, -44 +34750651ns 610525 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34750935ns 610530 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34751333ns 610537 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34751503ns 610540 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34751958ns 610548 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34752129ns 610551 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34752413ns 610556 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34752697ns 610561 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34752981ns 610566 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34753436ns 610574 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34753606ns 610577 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34753890ns 610582 1a110850 fd5ff06f jal x0, -44 +34754175ns 610587 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34754459ns 610592 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34754856ns 610599 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34755027ns 610602 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34755482ns 610610 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34755652ns 610613 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34755936ns 610618 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34756220ns 610623 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34756505ns 610628 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34756959ns 610636 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34757130ns 610639 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34757414ns 610644 1a110850 fd5ff06f jal x0, -44 +34757698ns 610649 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34757982ns 610654 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34758380ns 610661 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34758551ns 610664 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34759005ns 610672 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34759176ns 610675 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34759460ns 610680 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34759744ns 610685 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34760028ns 610690 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34760483ns 610698 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34760653ns 610701 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34760938ns 610706 1a110850 fd5ff06f jal x0, -44 +34761222ns 610711 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34761506ns 610716 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34761904ns 610723 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34762074ns 610726 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34762529ns 610734 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34762699ns 610737 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34762983ns 610742 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34763268ns 610747 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34763552ns 610752 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34764006ns 610760 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34764177ns 610763 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34764461ns 610768 1a110850 fd5ff06f jal x0, -44 +34764745ns 610773 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34765029ns 610778 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34765427ns 610785 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34765598ns 610788 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34766052ns 610796 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34766223ns 610799 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34766507ns 610804 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34766791ns 610809 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34767075ns 610814 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34767530ns 610822 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34767701ns 610825 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34767985ns 610830 1a110850 fd5ff06f jal x0, -44 +34768269ns 610835 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34768553ns 610840 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34768951ns 610847 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34769121ns 610850 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34769576ns 610858 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34769746ns 610861 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34770031ns 610866 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34770315ns 610871 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34770599ns 610876 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34771054ns 610884 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34771224ns 610887 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34771508ns 610892 1a110850 fd5ff06f jal x0, -44 +34771792ns 610897 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34772077ns 610902 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34772474ns 610909 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34772645ns 610912 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34773100ns 610920 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34773270ns 610923 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34773554ns 610928 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34773838ns 610933 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34774123ns 610938 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34774577ns 610946 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34774748ns 610949 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34775032ns 610954 1a110850 fd5ff06f jal x0, -44 +34775316ns 610959 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34775600ns 610964 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34775998ns 610971 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34776168ns 610974 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34776623ns 610982 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34776794ns 610985 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34777078ns 610990 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34777362ns 610995 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34777646ns 611000 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34778101ns 611008 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34778271ns 611011 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34778555ns 611016 1a110850 fd5ff06f jal x0, -44 +34778840ns 611021 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34779124ns 611026 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34779522ns 611033 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34779692ns 611036 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34780147ns 611044 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34780317ns 611047 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34780601ns 611052 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34780886ns 611057 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34781170ns 611062 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34781624ns 611070 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34781795ns 611073 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34782079ns 611078 1a110850 fd5ff06f jal x0, -44 +34782363ns 611083 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34782647ns 611088 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34783045ns 611095 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34783216ns 611098 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34783670ns 611106 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34783841ns 611109 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34784125ns 611114 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34784409ns 611119 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34784693ns 611124 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34785148ns 611132 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34785318ns 611135 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34785603ns 611140 1a110850 fd5ff06f jal x0, -44 +34785887ns 611145 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34786171ns 611150 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34786569ns 611157 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34786739ns 611160 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34787194ns 611168 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34787364ns 611171 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34787649ns 611176 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34787933ns 611181 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34788217ns 611186 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34788672ns 611194 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34788842ns 611197 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34789126ns 611202 1a110850 fd5ff06f jal x0, -44 +34789410ns 611207 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34789695ns 611212 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34790092ns 611219 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34790263ns 611222 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34790717ns 611230 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34790888ns 611233 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34791172ns 611238 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34791456ns 611243 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34791740ns 611248 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34792195ns 611256 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34792366ns 611259 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34792650ns 611264 1a110850 fd5ff06f jal x0, -44 +34792934ns 611269 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34793218ns 611274 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34793616ns 611281 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34793786ns 611284 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34794241ns 611292 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34794412ns 611295 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34794696ns 611300 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34794980ns 611305 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34795264ns 611310 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34795719ns 611318 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34795889ns 611321 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34796173ns 611326 1a110850 fd5ff06f jal x0, -44 +34796458ns 611331 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34796742ns 611336 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34797139ns 611343 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34797310ns 611346 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34797765ns 611354 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34797935ns 611357 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34798219ns 611362 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34798503ns 611367 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34798788ns 611372 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34799242ns 611380 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34799413ns 611383 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34799697ns 611388 1a110850 fd5ff06f jal x0, -44 +34799981ns 611393 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34800265ns 611398 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34800663ns 611405 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34800834ns 611408 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34801288ns 611416 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34801459ns 611419 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34801743ns 611424 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34802027ns 611429 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34802311ns 611434 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34802766ns 611442 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34802936ns 611445 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34803221ns 611450 1a110850 fd5ff06f jal x0, -44 +34803505ns 611455 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34803789ns 611460 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34804187ns 611467 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34804357ns 611470 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34804812ns 611478 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34804982ns 611481 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34805266ns 611486 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34805551ns 611491 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34805835ns 611496 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34806289ns 611504 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34806460ns 611507 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34806744ns 611512 1a110850 fd5ff06f jal x0, -44 +34807028ns 611517 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34807312ns 611522 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34807710ns 611529 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34807881ns 611532 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34808335ns 611540 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34808506ns 611543 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34808790ns 611548 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34809074ns 611553 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34809358ns 611558 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34809813ns 611566 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34809984ns 611569 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34810268ns 611574 1a110850 fd5ff06f jal x0, -44 +34810552ns 611579 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34810836ns 611584 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34811234ns 611591 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34811404ns 611594 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34811859ns 611602 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34812029ns 611605 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34812314ns 611610 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34812598ns 611615 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34812882ns 611620 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34813337ns 611628 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34813507ns 611631 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34813791ns 611636 1a110850 fd5ff06f jal x0, -44 +34814075ns 611641 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34814360ns 611646 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34814757ns 611653 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34814928ns 611656 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34815383ns 611664 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34815553ns 611667 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34815837ns 611672 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34816121ns 611677 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34816406ns 611682 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34816860ns 611690 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34817031ns 611693 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34817315ns 611698 1a110850 fd5ff06f jal x0, -44 +34817599ns 611703 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34817883ns 611708 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34818281ns 611715 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34818451ns 611718 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34818906ns 611726 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34819077ns 611729 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34819361ns 611734 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34819645ns 611739 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34819929ns 611744 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34820384ns 611752 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34820554ns 611755 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34820838ns 611760 1a110850 fd5ff06f jal x0, -44 +34821123ns 611765 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34821407ns 611770 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34821805ns 611777 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34821975ns 611780 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34822430ns 611788 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34822600ns 611791 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34822884ns 611796 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34823169ns 611801 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34823453ns 611806 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34823907ns 611814 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34824078ns 611817 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34824362ns 611822 1a110850 fd5ff06f jal x0, -44 +34824646ns 611827 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34824930ns 611832 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34825328ns 611839 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34825499ns 611842 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34825953ns 611850 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34826124ns 611853 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34826408ns 611858 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34826692ns 611863 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34826976ns 611868 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34827431ns 611876 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34827601ns 611879 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34827886ns 611884 1a110850 fd5ff06f jal x0, -44 +34828170ns 611889 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34828454ns 611894 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34828852ns 611901 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34829022ns 611904 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34829477ns 611912 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34829647ns 611915 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34829932ns 611920 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34830216ns 611925 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34830500ns 611930 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34830955ns 611938 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34831125ns 611941 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34831409ns 611946 1a110850 fd5ff06f jal x0, -44 +34831693ns 611951 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34831978ns 611956 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34832375ns 611963 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34832546ns 611966 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34833000ns 611974 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34833171ns 611977 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34833455ns 611982 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34833739ns 611987 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34834023ns 611992 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34834478ns 612000 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34834649ns 612003 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34834933ns 612008 1a110850 fd5ff06f jal x0, -44 +34835217ns 612013 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34835501ns 612018 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34835899ns 612025 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34836069ns 612028 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34836524ns 612036 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34836695ns 612039 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34836979ns 612044 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34837263ns 612049 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34837547ns 612054 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34838002ns 612062 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34838172ns 612065 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34838456ns 612070 1a110850 fd5ff06f jal x0, -44 +34838741ns 612075 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34839025ns 612080 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34839423ns 612087 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34839593ns 612090 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34840048ns 612098 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34840218ns 612101 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34840502ns 612106 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34840786ns 612111 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34841071ns 612116 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34841525ns 612124 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34841696ns 612127 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34841980ns 612132 1a110850 fd5ff06f jal x0, -44 +34842264ns 612137 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34842548ns 612142 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34842946ns 612149 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34843117ns 612152 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34843571ns 612160 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34843742ns 612163 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34844026ns 612168 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34844310ns 612173 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34844594ns 612178 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34845049ns 612186 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34845219ns 612189 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34845504ns 612194 1a110850 fd5ff06f jal x0, -44 +34845788ns 612199 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34846072ns 612204 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34846470ns 612211 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34846640ns 612214 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34847095ns 612222 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34847265ns 612225 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34847549ns 612230 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34847834ns 612235 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34848118ns 612240 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34848572ns 612248 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34848743ns 612251 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34849027ns 612256 1a110850 fd5ff06f jal x0, -44 +34849311ns 612261 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34849595ns 612266 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34849993ns 612273 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34850164ns 612276 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34850618ns 612284 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34850789ns 612287 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34851073ns 612292 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34851357ns 612297 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34851641ns 612302 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34852096ns 612310 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34852267ns 612313 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34852551ns 612318 1a110850 fd5ff06f jal x0, -44 +34852835ns 612323 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34853119ns 612328 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34853517ns 612335 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34853687ns 612338 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34854142ns 612346 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34854312ns 612349 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34854597ns 612354 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34854881ns 612359 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34855165ns 612364 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34855620ns 612372 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34855790ns 612375 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34856074ns 612380 1a110850 fd5ff06f jal x0, -44 +34856358ns 612385 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34856643ns 612390 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34857040ns 612397 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34857211ns 612400 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34857666ns 612408 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34857836ns 612411 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34858120ns 612416 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34858404ns 612421 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34858689ns 612426 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34859143ns 612434 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34859314ns 612437 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34859598ns 612442 1a110850 fd5ff06f jal x0, -44 +34859882ns 612447 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34860166ns 612452 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34860564ns 612459 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34860735ns 612462 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34861189ns 612470 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34861360ns 612473 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34861644ns 612478 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34861928ns 612483 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34862212ns 612488 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34862667ns 612496 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34862837ns 612499 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34863121ns 612504 1a110850 fd5ff06f jal x0, -44 +34863406ns 612509 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34863690ns 612514 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34864088ns 612521 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34864258ns 612524 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34864713ns 612532 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34864883ns 612535 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34865167ns 612540 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34865452ns 612545 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34865736ns 612550 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34866190ns 612558 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34866361ns 612561 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34866645ns 612566 1a110850 fd5ff06f jal x0, -44 +34866929ns 612571 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34867213ns 612576 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34867611ns 612583 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34867782ns 612586 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34868236ns 612594 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34868407ns 612597 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34868691ns 612602 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34868975ns 612607 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34869259ns 612612 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34869714ns 612620 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34869884ns 612623 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34870169ns 612628 1a110850 fd5ff06f jal x0, -44 +34870453ns 612633 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34870737ns 612638 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34871135ns 612645 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34871305ns 612648 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34871760ns 612656 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34871930ns 612659 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34872215ns 612664 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34872499ns 612669 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34872783ns 612674 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34873238ns 612682 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34873408ns 612685 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34873692ns 612690 1a110850 fd5ff06f jal x0, -44 +34873976ns 612695 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34874261ns 612700 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34874658ns 612707 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34874829ns 612710 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34875283ns 612718 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34875454ns 612721 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34875738ns 612726 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34876022ns 612731 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34876306ns 612736 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34876761ns 612744 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34876932ns 612747 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34877216ns 612752 1a110850 fd5ff06f jal x0, -44 +34877500ns 612757 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34877784ns 612762 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34878182ns 612769 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34878352ns 612772 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34878807ns 612780 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34878978ns 612783 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34879262ns 612788 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34879546ns 612793 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34879830ns 612798 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34880285ns 612806 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34880455ns 612809 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34880739ns 612814 1a110850 fd5ff06f jal x0, -44 +34881024ns 612819 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34881308ns 612824 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34881706ns 612831 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34881876ns 612834 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34882331ns 612842 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34882501ns 612845 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34882785ns 612850 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34883069ns 612855 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34883354ns 612860 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34883808ns 612868 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34883979ns 612871 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34884263ns 612876 1a110850 fd5ff06f jal x0, -44 +34884547ns 612881 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34884831ns 612886 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34885229ns 612893 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34885400ns 612896 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34885854ns 612904 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34886025ns 612907 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34886309ns 612912 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34886593ns 612917 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34886877ns 612922 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34887332ns 612930 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34887502ns 612933 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34887787ns 612938 1a110850 fd5ff06f jal x0, -44 +34888071ns 612943 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34888355ns 612948 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34888753ns 612955 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34888923ns 612958 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34889378ns 612966 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34889548ns 612969 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34889832ns 612974 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34890117ns 612979 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34890401ns 612984 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34890855ns 612992 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34891026ns 612995 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34891310ns 613000 1a110850 fd5ff06f jal x0, -44 +34891594ns 613005 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34891878ns 613010 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34892276ns 613017 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34892447ns 613020 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34892901ns 613028 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34893072ns 613031 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34893356ns 613036 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34893640ns 613041 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34893924ns 613046 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34894379ns 613054 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34894550ns 613057 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34894834ns 613062 1a110850 fd5ff06f jal x0, -44 +34895118ns 613067 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34895402ns 613072 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34895800ns 613079 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34895970ns 613082 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34896425ns 613090 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34896595ns 613093 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34896880ns 613098 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34897164ns 613103 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34897448ns 613108 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34897903ns 613116 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34898073ns 613119 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34898357ns 613124 1a110850 fd5ff06f jal x0, -44 +34898641ns 613129 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34898926ns 613134 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34899323ns 613141 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34899494ns 613144 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34899949ns 613152 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34900119ns 613155 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34900403ns 613160 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34900687ns 613165 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34900972ns 613170 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34901426ns 613178 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34901597ns 613181 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34901881ns 613186 1a110850 fd5ff06f jal x0, -44 +34902165ns 613191 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34902449ns 613196 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34902847ns 613203 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34903018ns 613206 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34903472ns 613214 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34903643ns 613217 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34903927ns 613222 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34904211ns 613227 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34904495ns 613232 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34904950ns 613240 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34905120ns 613243 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34905404ns 613248 1a110850 fd5ff06f jal x0, -44 +34905689ns 613253 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34905973ns 613258 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34906371ns 613265 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34906541ns 613268 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34906996ns 613276 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34907166ns 613279 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34907450ns 613284 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34907735ns 613289 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34908019ns 613294 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34908473ns 613302 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34908644ns 613305 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34908928ns 613310 1a110850 fd5ff06f jal x0, -44 +34909212ns 613315 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34909496ns 613320 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34909894ns 613327 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34910065ns 613330 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34910519ns 613338 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34910690ns 613341 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34910974ns 613346 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34911258ns 613351 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34911542ns 613356 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34911997ns 613364 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34912167ns 613367 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34912452ns 613372 1a110850 fd5ff06f jal x0, -44 +34912736ns 613377 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34913020ns 613382 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34913418ns 613389 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34913588ns 613392 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34914043ns 613400 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34914213ns 613403 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34914498ns 613408 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34914782ns 613413 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34915066ns 613418 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34915521ns 613426 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34915691ns 613429 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34915975ns 613434 1a110850 fd5ff06f jal x0, -44 +34916259ns 613439 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34916544ns 613444 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34916941ns 613451 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34917112ns 613454 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34917567ns 613462 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34917737ns 613465 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34918021ns 613470 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34918305ns 613475 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34918589ns 613480 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34919044ns 613488 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34919215ns 613491 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34919499ns 613496 1a110850 fd5ff06f jal x0, -44 +34919783ns 613501 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34920067ns 613506 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34920465ns 613513 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34920635ns 613516 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34921090ns 613524 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34921261ns 613527 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34921545ns 613532 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34921829ns 613537 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34922113ns 613542 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34922568ns 613550 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34922738ns 613553 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34923022ns 613558 1a110850 fd5ff06f jal x0, -44 +34923307ns 613563 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34923591ns 613568 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34923989ns 613575 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34924159ns 613578 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34924614ns 613586 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34924784ns 613589 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34925068ns 613594 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34925352ns 613599 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34925637ns 613604 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34926091ns 613612 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34926262ns 613615 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34926546ns 613620 1a110850 fd5ff06f jal x0, -44 +34926830ns 613625 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34927114ns 613630 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34927512ns 613637 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34927683ns 613640 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34928137ns 613648 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34928308ns 613651 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34928592ns 613656 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34928876ns 613661 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34929160ns 613666 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34929615ns 613674 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34929785ns 613677 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34930070ns 613682 1a110850 fd5ff06f jal x0, -44 +34930354ns 613687 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34930638ns 613692 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34931036ns 613699 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34931206ns 613702 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34931661ns 613710 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34931831ns 613713 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34932115ns 613718 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34932400ns 613723 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34932684ns 613728 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34933138ns 613736 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34933309ns 613739 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34933593ns 613744 1a110850 fd5ff06f jal x0, -44 +34933877ns 613749 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34934161ns 613754 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34934559ns 613761 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34934730ns 613764 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34935184ns 613772 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34935355ns 613775 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34935639ns 613780 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34935923ns 613785 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34936207ns 613790 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34936662ns 613798 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34936833ns 613801 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34937117ns 613806 1a110850 fd5ff06f jal x0, -44 +34937401ns 613811 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34937685ns 613816 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34938083ns 613823 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34938253ns 613826 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34938708ns 613834 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34938879ns 613837 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34939163ns 613842 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34939447ns 613847 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34939731ns 613852 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34940186ns 613860 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34940356ns 613863 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34940640ns 613868 1a110850 fd5ff06f jal x0, -44 +34940924ns 613873 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34941209ns 613878 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34941606ns 613885 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34941777ns 613888 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34942232ns 613896 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34942402ns 613899 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34942686ns 613904 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34942970ns 613909 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34943255ns 613914 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34943709ns 613922 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34943880ns 613925 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34944164ns 613930 1a110850 fd5ff06f jal x0, -44 +34944448ns 613935 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34944732ns 613940 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34945130ns 613947 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34945301ns 613950 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34945755ns 613958 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34945926ns 613961 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34946210ns 613966 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34946494ns 613971 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34946778ns 613976 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34947233ns 613984 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34947403ns 613987 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34947687ns 613992 1a110850 fd5ff06f jal x0, -44 +34947972ns 613997 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34948256ns 614002 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34948654ns 614009 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34948824ns 614012 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34949279ns 614020 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34949449ns 614023 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34949733ns 614028 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34950018ns 614033 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34950302ns 614038 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34950756ns 614046 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34950927ns 614049 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34951211ns 614054 1a110850 fd5ff06f jal x0, -44 +34951495ns 614059 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34951779ns 614064 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34952177ns 614071 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34952348ns 614074 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34952802ns 614082 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34952973ns 614085 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34953257ns 614090 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34953541ns 614095 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34953825ns 614100 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34954280ns 614108 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34954450ns 614111 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34954735ns 614116 1a110850 fd5ff06f jal x0, -44 +34955019ns 614121 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34955303ns 614126 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34955701ns 614133 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34955871ns 614136 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34956326ns 614144 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34956496ns 614147 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34956781ns 614152 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34957065ns 614157 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34957349ns 614162 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34957804ns 614170 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34957974ns 614173 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34958258ns 614178 1a110850 fd5ff06f jal x0, -44 +34958542ns 614183 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34958827ns 614188 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34959224ns 614195 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34959395ns 614198 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34959850ns 614206 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34960020ns 614209 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34960304ns 614214 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34960588ns 614219 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34960872ns 614224 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34961327ns 614232 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34961498ns 614235 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34961782ns 614240 1a110850 fd5ff06f jal x0, -44 +34962066ns 614245 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34962350ns 614250 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34962748ns 614257 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34962918ns 614260 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34963373ns 614268 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34963544ns 614271 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34963828ns 614276 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34964112ns 614281 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34964396ns 614286 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34964851ns 614294 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34965021ns 614297 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34965305ns 614302 1a110850 fd5ff06f jal x0, -44 +34965590ns 614307 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34965874ns 614312 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34966272ns 614319 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34966442ns 614322 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34966897ns 614330 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34967067ns 614333 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34967351ns 614338 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34967635ns 614343 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34967920ns 614348 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34968374ns 614356 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34968545ns 614359 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34968829ns 614364 1a110850 fd5ff06f jal x0, -44 +34969113ns 614369 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34969397ns 614374 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34969795ns 614381 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34969966ns 614384 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34970420ns 614392 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34970591ns 614395 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34970875ns 614400 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34971159ns 614405 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34971443ns 614410 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34971898ns 614418 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34972068ns 614421 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34972353ns 614426 1a110850 fd5ff06f jal x0, -44 +34972637ns 614431 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34972921ns 614436 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34973319ns 614443 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34973489ns 614446 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34973944ns 614454 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34974114ns 614457 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34974399ns 614462 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34974683ns 614467 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34974967ns 614472 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34975421ns 614480 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34975592ns 614483 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34975876ns 614488 1a110850 fd5ff06f jal x0, -44 +34976160ns 614493 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34976444ns 614498 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34976842ns 614505 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34977013ns 614508 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34977467ns 614516 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34977638ns 614519 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34977922ns 614524 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34978206ns 614529 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34978490ns 614534 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34978945ns 614542 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34979116ns 614545 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34979400ns 614550 1a110850 fd5ff06f jal x0, -44 +34979684ns 614555 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34979968ns 614560 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34980366ns 614567 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34980536ns 614570 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34980991ns 614578 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34981162ns 614581 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34981446ns 614586 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34981730ns 614591 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34982014ns 614596 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34982469ns 614604 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34982639ns 614607 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34982923ns 614612 1a110850 fd5ff06f jal x0, -44 +34983207ns 614617 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34983492ns 614622 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34983889ns 614629 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34984060ns 614632 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34984515ns 614640 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34984685ns 614643 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34984969ns 614648 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34985253ns 614653 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34985538ns 614658 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34985992ns 614666 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34986163ns 614669 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34986447ns 614674 1a110850 fd5ff06f jal x0, -44 +34986731ns 614679 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34987015ns 614684 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34987413ns 614691 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34987584ns 614694 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34988038ns 614702 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34988209ns 614705 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34988493ns 614710 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34988777ns 614715 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34989061ns 614720 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34989516ns 614728 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34989686ns 614731 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34989970ns 614736 1a110850 fd5ff06f jal x0, -44 +34990255ns 614741 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34990539ns 614746 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34990937ns 614753 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34991107ns 614756 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34991562ns 614764 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34991732ns 614767 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34992016ns 614772 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34992301ns 614777 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34992585ns 614782 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34993039ns 614790 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34993210ns 614793 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34993494ns 614798 1a110850 fd5ff06f jal x0, -44 +34993778ns 614803 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34994062ns 614808 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34994460ns 614815 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34994631ns 614818 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34995085ns 614826 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34995256ns 614829 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34995540ns 614834 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34995824ns 614839 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34996108ns 614844 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34996563ns 614852 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +34996733ns 614855 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +34997018ns 614860 1a110850 fd5ff06f jal x0, -44 +34997302ns 614865 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34997586ns 614870 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +34997984ns 614877 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34998154ns 614880 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +34998609ns 614888 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +34998779ns 614891 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +34999064ns 614896 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +34999348ns 614901 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +34999632ns 614906 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35000087ns 614914 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35000257ns 614917 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35000541ns 614922 1a110850 fd5ff06f jal x0, -44 +35000825ns 614927 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35001110ns 614932 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35001507ns 614939 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35001678ns 614942 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35002133ns 614950 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35002303ns 614953 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35002587ns 614958 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35002871ns 614963 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35003155ns 614968 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35003610ns 614976 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35003781ns 614979 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35004065ns 614984 1a110850 fd5ff06f jal x0, -44 +35004349ns 614989 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35004633ns 614994 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35005031ns 615001 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35005201ns 615004 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35005656ns 615012 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35005827ns 615015 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35006111ns 615020 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35006395ns 615025 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35006679ns 615030 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35007134ns 615038 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35007304ns 615041 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35007588ns 615046 1a110850 fd5ff06f jal x0, -44 +35007873ns 615051 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35008157ns 615056 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35008555ns 615063 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35008725ns 615066 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35009180ns 615074 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35009350ns 615077 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35009634ns 615082 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35009919ns 615087 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35010203ns 615092 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35010657ns 615100 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35010828ns 615103 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35011112ns 615108 1a110850 fd5ff06f jal x0, -44 +35011396ns 615113 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35011680ns 615118 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35012078ns 615125 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35012249ns 615128 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35012703ns 615136 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35012874ns 615139 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35013158ns 615144 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35013442ns 615149 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35013726ns 615154 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35014181ns 615162 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35014351ns 615165 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35014636ns 615170 1a110850 fd5ff06f jal x0, -44 +35014920ns 615175 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35015204ns 615180 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35015602ns 615187 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35015772ns 615190 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35016227ns 615198 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35016397ns 615201 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35016682ns 615206 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35016966ns 615211 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35017250ns 615216 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35017704ns 615224 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35017875ns 615227 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35018159ns 615232 1a110850 fd5ff06f jal x0, -44 +35018443ns 615237 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35018727ns 615242 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35019125ns 615249 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35019296ns 615252 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35019750ns 615260 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35019921ns 615263 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35020205ns 615268 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35020489ns 615273 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35020773ns 615278 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35021228ns 615286 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35021399ns 615289 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35021683ns 615294 1a110850 fd5ff06f jal x0, -44 +35021967ns 615299 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35022251ns 615304 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35022649ns 615311 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35022819ns 615314 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35023274ns 615322 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35023445ns 615325 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35023729ns 615330 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35024013ns 615335 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35024297ns 615340 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35024752ns 615348 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35024922ns 615351 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35025206ns 615356 1a110850 fd5ff06f jal x0, -44 +35025490ns 615361 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35025775ns 615366 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35026172ns 615373 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35026343ns 615376 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35026798ns 615384 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35026968ns 615387 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35027252ns 615392 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35027536ns 615397 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35027821ns 615402 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35028275ns 615410 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35028446ns 615413 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35028730ns 615418 1a110850 fd5ff06f jal x0, -44 +35029014ns 615423 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35029298ns 615428 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35029696ns 615435 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35029867ns 615438 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35030321ns 615446 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35030492ns 615449 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35030776ns 615454 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35031060ns 615459 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35031344ns 615464 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35031799ns 615472 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35031969ns 615475 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35032253ns 615480 1a110850 fd5ff06f jal x0, -44 +35032538ns 615485 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35032822ns 615490 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35033220ns 615497 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35033390ns 615500 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35033845ns 615508 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35034015ns 615511 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35034299ns 615516 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35034584ns 615521 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35034868ns 615526 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35035322ns 615534 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35035493ns 615537 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35035777ns 615542 1a110850 fd5ff06f jal x0, -44 +35036061ns 615547 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35036345ns 615552 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35036743ns 615559 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35036914ns 615562 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35037368ns 615570 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35037539ns 615573 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35037823ns 615578 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35038107ns 615583 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35038391ns 615588 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35038846ns 615596 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35039016ns 615599 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35039301ns 615604 1a110850 fd5ff06f jal x0, -44 +35039585ns 615609 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35039869ns 615614 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35040267ns 615621 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35040437ns 615624 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35040892ns 615632 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35041062ns 615635 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35041347ns 615640 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35041631ns 615645 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35041915ns 615650 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35042370ns 615658 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35042540ns 615661 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35042824ns 615666 1a110850 fd5ff06f jal x0, -44 +35043108ns 615671 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35043393ns 615676 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35043790ns 615683 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35043961ns 615686 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35044416ns 615694 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35044586ns 615697 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35044870ns 615702 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35045154ns 615707 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35045439ns 615712 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35045893ns 615720 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35046064ns 615723 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35046348ns 615728 1a110850 fd5ff06f jal x0, -44 +35046632ns 615733 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35046916ns 615738 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35047314ns 615745 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35047484ns 615748 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35047939ns 615756 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35048110ns 615759 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35048394ns 615764 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35048678ns 615769 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35048962ns 615774 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35049417ns 615782 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35049587ns 615785 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35049871ns 615790 1a110850 fd5ff06f jal x0, -44 +35050156ns 615795 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35050440ns 615800 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35050838ns 615807 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35051008ns 615810 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35051463ns 615818 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35051633ns 615821 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35051917ns 615826 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35052202ns 615831 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35052486ns 615836 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35052940ns 615844 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35053111ns 615847 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35053395ns 615852 1a110850 fd5ff06f jal x0, -44 +35053679ns 615857 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35053963ns 615862 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35054361ns 615869 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35054532ns 615872 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35054986ns 615880 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35055157ns 615883 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35055441ns 615888 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35055725ns 615893 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35056009ns 615898 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35056464ns 615906 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35056634ns 615909 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35056919ns 615914 1a110850 fd5ff06f jal x0, -44 +35057203ns 615919 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35057487ns 615924 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35057885ns 615931 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35058055ns 615934 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35058510ns 615942 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35058680ns 615945 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35058965ns 615950 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35059249ns 615955 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35059533ns 615960 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35059987ns 615968 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35060158ns 615971 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35060442ns 615976 1a110850 fd5ff06f jal x0, -44 +35060726ns 615981 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35061010ns 615986 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35061408ns 615993 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35061579ns 615996 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35062033ns 616004 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35062204ns 616007 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35062488ns 616012 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35062772ns 616017 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35063056ns 616022 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35063511ns 616030 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35063682ns 616033 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35063966ns 616038 1a110850 fd5ff06f jal x0, -44 +35064250ns 616043 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35064534ns 616048 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35064932ns 616055 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35065102ns 616058 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35065557ns 616066 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35065728ns 616069 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35066012ns 616074 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35066296ns 616079 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35066580ns 616084 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35067035ns 616092 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35067205ns 616095 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35067489ns 616100 1a110850 fd5ff06f jal x0, -44 +35067773ns 616105 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35068058ns 616110 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35068455ns 616117 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35068626ns 616120 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35069081ns 616128 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35069251ns 616131 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35069535ns 616136 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35069819ns 616141 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35070104ns 616146 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35070558ns 616154 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35070729ns 616157 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35071013ns 616162 1a110850 fd5ff06f jal x0, -44 +35071297ns 616167 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35071581ns 616172 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35071979ns 616179 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35072150ns 616182 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35072604ns 616190 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35072775ns 616193 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35073059ns 616198 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35073343ns 616203 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35073627ns 616208 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35074082ns 616216 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35074252ns 616219 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35074536ns 616224 1a110850 fd5ff06f jal x0, -44 +35074821ns 616229 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35075105ns 616234 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35075503ns 616241 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35075673ns 616244 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35076128ns 616252 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35076298ns 616255 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35076582ns 616260 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35076867ns 616265 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35077151ns 616270 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35077605ns 616278 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35077776ns 616281 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35078060ns 616286 1a110850 fd5ff06f jal x0, -44 +35078344ns 616291 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35078628ns 616296 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35079026ns 616303 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35079197ns 616306 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35079651ns 616314 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35079822ns 616317 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35080106ns 616322 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35080390ns 616327 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35080674ns 616332 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35081129ns 616340 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35081299ns 616343 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35081584ns 616348 1a110850 fd5ff06f jal x0, -44 +35081868ns 616353 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35082152ns 616358 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35082550ns 616365 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35082720ns 616368 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35083175ns 616376 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35083345ns 616379 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35083630ns 616384 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35083914ns 616389 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35084198ns 616394 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35084653ns 616402 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35084823ns 616405 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35085107ns 616410 1a110850 fd5ff06f jal x0, -44 +35085391ns 616415 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35085676ns 616420 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35086073ns 616427 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35086244ns 616430 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35086699ns 616438 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35086869ns 616441 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35087153ns 616446 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35087437ns 616451 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35087722ns 616456 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35088176ns 616464 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35088347ns 616467 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35088631ns 616472 1a110850 fd5ff06f jal x0, -44 +35088915ns 616477 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35089199ns 616482 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35089597ns 616489 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35089767ns 616492 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35090222ns 616500 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35090393ns 616503 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35090677ns 616508 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35090961ns 616513 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35091245ns 616518 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35091700ns 616526 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35091870ns 616529 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35092154ns 616534 1a110850 fd5ff06f jal x0, -44 +35092439ns 616539 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35092723ns 616544 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35093121ns 616551 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35093291ns 616554 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35093746ns 616562 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35093916ns 616565 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35094200ns 616570 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35094485ns 616575 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35094769ns 616580 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35095223ns 616588 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35095394ns 616591 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35095678ns 616596 1a110850 fd5ff06f jal x0, -44 +35095962ns 616601 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35096246ns 616606 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35096644ns 616613 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35096815ns 616616 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35097269ns 616624 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35097440ns 616627 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35097724ns 616632 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35098008ns 616637 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35098292ns 616642 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35098747ns 616650 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35098917ns 616653 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35099202ns 616658 1a110850 fd5ff06f jal x0, -44 +35099486ns 616663 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35099770ns 616668 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35100168ns 616675 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35100338ns 616678 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35100793ns 616686 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35100963ns 616689 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35101248ns 616694 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35101532ns 616699 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35101816ns 616704 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35102271ns 616712 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35102441ns 616715 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35102725ns 616720 1a110850 fd5ff06f jal x0, -44 +35103009ns 616725 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35103293ns 616730 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35103691ns 616737 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35103862ns 616740 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35104316ns 616748 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35104487ns 616751 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35104771ns 616756 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35105055ns 616761 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35105339ns 616766 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35105794ns 616774 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35105965ns 616777 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35106249ns 616782 1a110850 fd5ff06f jal x0, -44 +35106533ns 616787 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35106817ns 616792 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35107215ns 616799 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35107385ns 616802 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35107840ns 616810 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35108011ns 616813 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35108295ns 616818 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35108579ns 616823 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35108863ns 616828 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35109318ns 616836 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35109488ns 616839 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35109772ns 616844 1a110850 fd5ff06f jal x0, -44 +35110056ns 616849 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35110341ns 616854 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35110738ns 616861 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35110909ns 616864 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35111364ns 616872 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35111534ns 616875 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35111818ns 616880 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35112102ns 616885 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35112387ns 616890 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35112841ns 616898 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35113012ns 616901 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35113296ns 616906 1a110850 fd5ff06f jal x0, -44 +35113580ns 616911 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35113864ns 616916 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35114262ns 616923 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35114433ns 616926 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35114887ns 616934 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35115058ns 616937 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35115342ns 616942 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35115626ns 616947 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35115910ns 616952 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35116365ns 616960 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35116535ns 616963 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35116819ns 616968 1a110850 fd5ff06f jal x0, -44 +35117104ns 616973 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35117388ns 616978 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35117786ns 616985 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35117956ns 616988 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35118411ns 616996 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35118581ns 616999 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35118865ns 617004 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35119150ns 617009 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35119434ns 617014 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35119888ns 617022 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35120059ns 617025 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35120343ns 617030 1a110850 fd5ff06f jal x0, -44 +35120627ns 617035 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35120911ns 617040 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35121309ns 617047 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35121480ns 617050 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35121934ns 617058 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35122105ns 617061 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35122389ns 617066 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35122673ns 617071 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35122957ns 617076 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35123412ns 617084 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35123583ns 617087 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35123867ns 617092 1a110850 fd5ff06f jal x0, -44 +35124151ns 617097 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35124435ns 617102 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35124833ns 617109 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35125003ns 617112 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35125458ns 617120 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35125628ns 617123 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35125913ns 617128 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35126197ns 617133 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35126481ns 617138 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35126936ns 617146 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35127106ns 617149 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35127390ns 617154 1a110850 fd5ff06f jal x0, -44 +35127674ns 617159 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35127959ns 617164 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35128356ns 617171 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35128527ns 617174 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35128982ns 617182 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35129152ns 617185 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35129436ns 617190 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35129720ns 617195 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35130005ns 617200 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35130459ns 617208 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35130630ns 617211 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35130914ns 617216 1a110850 fd5ff06f jal x0, -44 +35131198ns 617221 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35131482ns 617226 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35131880ns 617233 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35132050ns 617236 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35132505ns 617244 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35132676ns 617247 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35132960ns 617252 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35133244ns 617257 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35133528ns 617262 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35133983ns 617270 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35134153ns 617273 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35134437ns 617278 1a110850 fd5ff06f jal x0, -44 +35134722ns 617283 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35135006ns 617288 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35135404ns 617295 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35135574ns 617298 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35136029ns 617306 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35136199ns 617309 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35136483ns 617314 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35136768ns 617319 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35137052ns 617324 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35137506ns 617332 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35137677ns 617335 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35137961ns 617340 1a110850 fd5ff06f jal x0, -44 +35138245ns 617345 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35138529ns 617350 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35138927ns 617357 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35139098ns 617360 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35139552ns 617368 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35139723ns 617371 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35140007ns 617376 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35140291ns 617381 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35140575ns 617386 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35141030ns 617394 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35141200ns 617397 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35141485ns 617402 1a110850 fd5ff06f jal x0, -44 +35141769ns 617407 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35142053ns 617412 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35142451ns 617419 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35142621ns 617422 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35143076ns 617430 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35143246ns 617433 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35143531ns 617438 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35143815ns 617443 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35144099ns 617448 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35144554ns 617456 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35144724ns 617459 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35145008ns 617464 1a110850 fd5ff06f jal x0, -44 +35145292ns 617469 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35145576ns 617474 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35145974ns 617481 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35146145ns 617484 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35146599ns 617492 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35146770ns 617495 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35147054ns 617500 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35147338ns 617505 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35147622ns 617510 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35148077ns 617518 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35148248ns 617521 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35148532ns 617526 1a110850 fd5ff06f jal x0, -44 +35148816ns 617531 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35149100ns 617536 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35149498ns 617543 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35149668ns 617546 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35150123ns 617554 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35150294ns 617557 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35150578ns 617562 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35150862ns 617567 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35151146ns 617572 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35151601ns 617580 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35151771ns 617583 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35152055ns 617588 1a110850 fd5ff06f jal x0, -44 +35152339ns 617593 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35152624ns 617598 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35153021ns 617605 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35153192ns 617608 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35153647ns 617616 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35153817ns 617619 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35154101ns 617624 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35154385ns 617629 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35154670ns 617634 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35155124ns 617642 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35155295ns 617645 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35155579ns 617650 1a110850 fd5ff06f jal x0, -44 +35155863ns 617655 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35156147ns 617660 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35156545ns 617667 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35156716ns 617670 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35157170ns 617678 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35157341ns 617681 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35157625ns 617686 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35157909ns 617691 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35158193ns 617696 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35158648ns 617704 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35158818ns 617707 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35159103ns 617712 1a110850 fd5ff06f jal x0, -44 +35159387ns 617717 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35159671ns 617722 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35160069ns 617729 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35160239ns 617732 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35160694ns 617740 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35160864ns 617743 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35161148ns 617748 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35161433ns 617753 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35161717ns 617758 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35162171ns 617766 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35162342ns 617769 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35162626ns 617774 1a110850 fd5ff06f jal x0, -44 +35162910ns 617779 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35163194ns 617784 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35163592ns 617791 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35163763ns 617794 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35164217ns 617802 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35164388ns 617805 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35164672ns 617810 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35164956ns 617815 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35165240ns 617820 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35165695ns 617828 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35165866ns 617831 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35166150ns 617836 1a110850 fd5ff06f jal x0, -44 +35166434ns 617841 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35166718ns 617846 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35167116ns 617853 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35167286ns 617856 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35167741ns 617864 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35167911ns 617867 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35168196ns 617872 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35168480ns 617877 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35168764ns 617882 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35169219ns 617890 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35169389ns 617893 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35169673ns 617898 1a110850 fd5ff06f jal x0, -44 +35169957ns 617903 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35170242ns 617908 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35170639ns 617915 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35170810ns 617918 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35171265ns 617926 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35171435ns 617929 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35171719ns 617934 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35172003ns 617939 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35172288ns 617944 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35172742ns 617952 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35172913ns 617955 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35173197ns 617960 1a110850 fd5ff06f jal x0, -44 +35173481ns 617965 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35173765ns 617970 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35174163ns 617977 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35174333ns 617980 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35174788ns 617988 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35174959ns 617991 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35175243ns 617996 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35175527ns 618001 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35175811ns 618006 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35176266ns 618014 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35176436ns 618017 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35176720ns 618022 1a110850 fd5ff06f jal x0, -44 +35177005ns 618027 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35177289ns 618032 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35177687ns 618039 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35177857ns 618042 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35178312ns 618050 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35178482ns 618053 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35178766ns 618058 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35179051ns 618063 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35179335ns 618068 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35179789ns 618076 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35179960ns 618079 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35180244ns 618084 1a110850 fd5ff06f jal x0, -44 +35180528ns 618089 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35180812ns 618094 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35181210ns 618101 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35181381ns 618104 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35181835ns 618112 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35182006ns 618115 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35182290ns 618120 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35182574ns 618125 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35182858ns 618130 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35183313ns 618138 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35183483ns 618141 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35183768ns 618146 1a110850 fd5ff06f jal x0, -44 +35184052ns 618151 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35184336ns 618156 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35184734ns 618163 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35184904ns 618166 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35185359ns 618174 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35185529ns 618177 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35185814ns 618182 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35186098ns 618187 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35186382ns 618192 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35186837ns 618200 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35187007ns 618203 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35187291ns 618208 1a110850 fd5ff06f jal x0, -44 +35187575ns 618213 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35187859ns 618218 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35188257ns 618225 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35188428ns 618228 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35188882ns 618236 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35189053ns 618239 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35189337ns 618244 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35189621ns 618249 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35189905ns 618254 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35190360ns 618262 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35190531ns 618265 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35190815ns 618270 1a110850 fd5ff06f jal x0, -44 +35191099ns 618275 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35191383ns 618280 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35191781ns 618287 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35191951ns 618290 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35192406ns 618298 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35192577ns 618301 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35192861ns 618306 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35193145ns 618311 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35193429ns 618316 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35193884ns 618324 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35194054ns 618327 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35194338ns 618332 1a110850 fd5ff06f jal x0, -44 +35194623ns 618337 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35194907ns 618342 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35195304ns 618349 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35195475ns 618352 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35195930ns 618360 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35196100ns 618363 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35196384ns 618368 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35196668ns 618373 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35196953ns 618378 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35197407ns 618386 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35197578ns 618389 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35197862ns 618394 1a110850 fd5ff06f jal x0, -44 +35198146ns 618399 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35198430ns 618404 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35198828ns 618411 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35198999ns 618414 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35199453ns 618422 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35199624ns 618425 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35199908ns 618430 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35200192ns 618435 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35200476ns 618440 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35200931ns 618448 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35201101ns 618451 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35201386ns 618456 1a110850 fd5ff06f jal x0, -44 +35201670ns 618461 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35201954ns 618466 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35202352ns 618473 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35202522ns 618476 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35202977ns 618484 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35203147ns 618487 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35203431ns 618492 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35203716ns 618497 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35204000ns 618502 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35204454ns 618510 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35204625ns 618513 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35204909ns 618518 1a110850 fd5ff06f jal x0, -44 +35205193ns 618523 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35205477ns 618528 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35205875ns 618535 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35206046ns 618538 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35206500ns 618546 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35206671ns 618549 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35206955ns 618554 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35207239ns 618559 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35207523ns 618564 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35207978ns 618572 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35208149ns 618575 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35208433ns 618580 1a110850 fd5ff06f jal x0, -44 +35208717ns 618585 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35209001ns 618590 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35209399ns 618597 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35209569ns 618600 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35210024ns 618608 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35210194ns 618611 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35210479ns 618616 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35210763ns 618621 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35211047ns 618626 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35211502ns 618634 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35211672ns 618637 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35211956ns 618642 1a110850 fd5ff06f jal x0, -44 +35212240ns 618647 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35212525ns 618652 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35212922ns 618659 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35213093ns 618662 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35213548ns 618670 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35213718ns 618673 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35214002ns 618678 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35214286ns 618683 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35214571ns 618688 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35215025ns 618696 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35215196ns 618699 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35215480ns 618704 1a110850 fd5ff06f jal x0, -44 +35215764ns 618709 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35216048ns 618714 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35216446ns 618721 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35216616ns 618724 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35217071ns 618732 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35217242ns 618735 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35217526ns 618740 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35217810ns 618745 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35218094ns 618750 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35218549ns 618758 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35218719ns 618761 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35219003ns 618766 1a110850 fd5ff06f jal x0, -44 +35219288ns 618771 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35219572ns 618776 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35219970ns 618783 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35220140ns 618786 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35220595ns 618794 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35220765ns 618797 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35221049ns 618802 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35221334ns 618807 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35221618ns 618812 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35222072ns 618820 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35222243ns 618823 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35222527ns 618828 1a110850 fd5ff06f jal x0, -44 +35222811ns 618833 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35223095ns 618838 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35223493ns 618845 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35223664ns 618848 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35224118ns 618856 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35224289ns 618859 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35224573ns 618864 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35224857ns 618869 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35225141ns 618874 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35225596ns 618882 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35225766ns 618885 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35226051ns 618890 1a110850 fd5ff06f jal x0, -44 +35226335ns 618895 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35226619ns 618900 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35227017ns 618907 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35227187ns 618910 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35227642ns 618918 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35227812ns 618921 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35228097ns 618926 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35228381ns 618931 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35228665ns 618936 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35229120ns 618944 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35229290ns 618947 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35229574ns 618952 1a110850 fd5ff06f jal x0, -44 +35229858ns 618957 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35230143ns 618962 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35230540ns 618969 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35230711ns 618972 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35231165ns 618980 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35231336ns 618983 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35231620ns 618988 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35231904ns 618993 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35232188ns 618998 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35232643ns 619006 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35232814ns 619009 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35233098ns 619014 1a110850 fd5ff06f jal x0, -44 +35233382ns 619019 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35233666ns 619024 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35234064ns 619031 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35234234ns 619034 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35234689ns 619042 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35234860ns 619045 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35235144ns 619050 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35235428ns 619055 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35235712ns 619060 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35236167ns 619068 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35236337ns 619071 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35236621ns 619076 1a110850 fd5ff06f jal x0, -44 +35236906ns 619081 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35237190ns 619086 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35237587ns 619093 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35237758ns 619096 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35238213ns 619104 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35238383ns 619107 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35238667ns 619112 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35238951ns 619117 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35239236ns 619122 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35239690ns 619130 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35239861ns 619133 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35240145ns 619138 1a110850 fd5ff06f jal x0, -44 +35240429ns 619143 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35240713ns 619148 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35241111ns 619155 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35241282ns 619158 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35241736ns 619166 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35241907ns 619169 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35242191ns 619174 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35242475ns 619179 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35242759ns 619184 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35243214ns 619192 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35243384ns 619195 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35243669ns 619200 1a110850 fd5ff06f jal x0, -44 +35243953ns 619205 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35244237ns 619210 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35244635ns 619217 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35244805ns 619220 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35245260ns 619228 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35245430ns 619231 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35245714ns 619236 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35245999ns 619241 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35246283ns 619246 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35246737ns 619254 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35246908ns 619257 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35247192ns 619262 1a110850 fd5ff06f jal x0, -44 +35247476ns 619267 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35247760ns 619272 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35248158ns 619279 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35248329ns 619282 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35248783ns 619290 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35248954ns 619293 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35249238ns 619298 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35249522ns 619303 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35249806ns 619308 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35250261ns 619316 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35250432ns 619319 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35250716ns 619324 1a110850 fd5ff06f jal x0, -44 +35251000ns 619329 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35251284ns 619334 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35251682ns 619341 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35251852ns 619344 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35252307ns 619352 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35252477ns 619355 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35252762ns 619360 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35253046ns 619365 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35253330ns 619370 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35253785ns 619378 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35253955ns 619381 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35254239ns 619386 1a110850 fd5ff06f jal x0, -44 +35254523ns 619391 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35254808ns 619396 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35255205ns 619403 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35255376ns 619406 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35255831ns 619414 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35256001ns 619417 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35256285ns 619422 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35256569ns 619427 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35256854ns 619432 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35257308ns 619440 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35257479ns 619443 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35257763ns 619448 1a110850 fd5ff06f jal x0, -44 +35258047ns 619453 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35258331ns 619458 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35258729ns 619465 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35258899ns 619468 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35259354ns 619476 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35259525ns 619479 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35259809ns 619484 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35260093ns 619489 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35260377ns 619494 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35260832ns 619502 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35261002ns 619505 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35261286ns 619510 1a110850 fd5ff06f jal x0, -44 +35261571ns 619515 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35261855ns 619520 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35262253ns 619527 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35262423ns 619530 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35262878ns 619538 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35263048ns 619541 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35263332ns 619546 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35263617ns 619551 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35263901ns 619556 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35264355ns 619564 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35264526ns 619567 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35264810ns 619572 1a110850 fd5ff06f jal x0, -44 +35265094ns 619577 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35265378ns 619582 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35265776ns 619589 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35265947ns 619592 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35266401ns 619600 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35266572ns 619603 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35266856ns 619608 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35267140ns 619613 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35267424ns 619618 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35267879ns 619626 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35268049ns 619629 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35268334ns 619634 1a110850 fd5ff06f jal x0, -44 +35268618ns 619639 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35268902ns 619644 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35269300ns 619651 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35269470ns 619654 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35269925ns 619662 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35270095ns 619665 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35270380ns 619670 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35270664ns 619675 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35270948ns 619680 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35271403ns 619688 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35271573ns 619691 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35271857ns 619696 1a110850 fd5ff06f jal x0, -44 +35272141ns 619701 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35272426ns 619706 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35272823ns 619713 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35272994ns 619716 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35273448ns 619724 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35273619ns 619727 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35273903ns 619732 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35274187ns 619737 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35274471ns 619742 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35274926ns 619750 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35275097ns 619753 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35275381ns 619758 1a110850 fd5ff06f jal x0, -44 +35275665ns 619763 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35275949ns 619768 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35276347ns 619775 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35276517ns 619778 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35276972ns 619786 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35277143ns 619789 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35277427ns 619794 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35277711ns 619799 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35277995ns 619804 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35278450ns 619812 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35278620ns 619815 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35278904ns 619820 1a110850 fd5ff06f jal x0, -44 +35279189ns 619825 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35279473ns 619830 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35279871ns 619837 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35280041ns 619840 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35280496ns 619848 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35280666ns 619851 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35280950ns 619856 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35281234ns 619861 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35281519ns 619866 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35281973ns 619874 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35282144ns 619877 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35282428ns 619882 1a110850 fd5ff06f jal x0, -44 +35282712ns 619887 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35282996ns 619892 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35283394ns 619899 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35283565ns 619902 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35284019ns 619910 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35284190ns 619913 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35284474ns 619918 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35284758ns 619923 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35285042ns 619928 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35285497ns 619936 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35285667ns 619939 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35285952ns 619944 1a110850 fd5ff06f jal x0, -44 +35286236ns 619949 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35286520ns 619954 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35286918ns 619961 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35287088ns 619964 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35287543ns 619972 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35287713ns 619975 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35287997ns 619980 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35288282ns 619985 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35288566ns 619990 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35289020ns 619998 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35289191ns 620001 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35289475ns 620006 1a110850 fd5ff06f jal x0, -44 +35289759ns 620011 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35290043ns 620016 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35290441ns 620023 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35290612ns 620026 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35291066ns 620034 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35291237ns 620037 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35291521ns 620042 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35291805ns 620047 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35292089ns 620052 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35292544ns 620060 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35292715ns 620063 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35292999ns 620068 1a110850 fd5ff06f jal x0, -44 +35293283ns 620073 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35293567ns 620078 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35293965ns 620085 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35294135ns 620088 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35294590ns 620096 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35294760ns 620099 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35295045ns 620104 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35295329ns 620109 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35295613ns 620114 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35296068ns 620122 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35296238ns 620125 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35296522ns 620130 1a110850 fd5ff06f jal x0, -44 +35296806ns 620135 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35297091ns 620140 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35297488ns 620147 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35297659ns 620150 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35298114ns 620158 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35298284ns 620161 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35298568ns 620166 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35298852ns 620171 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35299137ns 620176 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35299591ns 620184 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35299762ns 620187 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35300046ns 620192 1a110850 fd5ff06f jal x0, -44 +35300330ns 620197 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35300614ns 620202 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35301012ns 620209 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35301183ns 620212 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35301637ns 620220 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35301808ns 620223 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35302092ns 620228 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35302376ns 620233 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35302660ns 620238 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35303115ns 620246 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35303285ns 620249 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35303569ns 620254 1a110850 fd5ff06f jal x0, -44 +35303854ns 620259 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35304138ns 620264 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35304536ns 620271 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35304706ns 620274 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35305161ns 620282 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35305331ns 620285 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35305615ns 620290 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35305900ns 620295 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35306184ns 620300 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35306638ns 620308 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35306809ns 620311 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35307093ns 620316 1a110850 fd5ff06f jal x0, -44 +35307377ns 620321 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35307661ns 620326 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35308059ns 620333 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35308230ns 620336 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35308684ns 620344 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35308855ns 620347 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35309139ns 620352 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35309423ns 620357 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35309707ns 620362 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35310162ns 620370 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35310332ns 620373 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35310617ns 620378 1a110850 fd5ff06f jal x0, -44 +35310901ns 620383 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35311185ns 620388 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35311583ns 620395 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35311753ns 620398 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35312208ns 620406 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35312378ns 620409 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35312663ns 620414 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35312947ns 620419 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35313231ns 620424 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35313686ns 620432 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35313856ns 620435 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35314140ns 620440 1a110850 fd5ff06f jal x0, -44 +35314424ns 620445 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35314709ns 620450 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35315106ns 620457 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35315277ns 620460 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35315731ns 620468 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35315902ns 620471 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35316186ns 620476 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35316470ns 620481 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35316754ns 620486 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35317209ns 620494 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35317380ns 620497 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35317664ns 620502 1a110850 fd5ff06f jal x0, -44 +35317948ns 620507 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35318232ns 620512 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35318630ns 620519 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35318800ns 620522 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35319255ns 620530 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35319426ns 620533 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35319710ns 620538 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35319994ns 620543 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35320278ns 620548 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35320733ns 620556 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35320903ns 620559 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35321187ns 620564 1a110850 fd5ff06f jal x0, -44 +35321472ns 620569 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35321756ns 620574 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35322154ns 620581 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35322324ns 620584 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35322779ns 620592 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35322949ns 620595 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35323233ns 620600 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35323517ns 620605 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35323802ns 620610 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35324256ns 620618 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35324427ns 620621 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35324711ns 620626 1a110850 fd5ff06f jal x0, -44 +35324995ns 620631 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35325279ns 620636 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35325677ns 620643 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35325848ns 620646 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35326302ns 620654 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35326473ns 620657 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35326757ns 620662 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35327041ns 620667 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35327325ns 620672 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35327780ns 620680 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35327950ns 620683 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35328235ns 620688 1a110850 fd5ff06f jal x0, -44 +35328519ns 620693 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35328803ns 620698 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35329201ns 620705 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35329371ns 620708 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35329826ns 620716 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35329996ns 620719 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35330280ns 620724 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35330565ns 620729 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35330849ns 620734 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35331303ns 620742 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35331474ns 620745 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35331758ns 620750 1a110850 fd5ff06f jal x0, -44 +35332042ns 620755 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35332326ns 620760 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35332724ns 620767 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35332895ns 620770 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35333349ns 620778 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35333520ns 620781 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35333804ns 620786 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35334088ns 620791 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35334372ns 620796 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35334827ns 620804 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35334998ns 620807 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35335282ns 620812 1a110850 fd5ff06f jal x0, -44 +35335566ns 620817 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35335850ns 620822 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35336248ns 620829 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35336418ns 620832 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35336873ns 620840 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35337043ns 620843 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35337328ns 620848 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35337612ns 620853 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35337896ns 620858 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35338351ns 620866 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35338521ns 620869 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35338805ns 620874 1a110850 fd5ff06f jal x0, -44 +35339089ns 620879 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35339374ns 620884 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35339771ns 620891 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35339942ns 620894 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35340397ns 620902 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35340567ns 620905 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35340851ns 620910 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35341135ns 620915 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35341420ns 620920 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35341874ns 620928 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35342045ns 620931 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35342329ns 620936 1a110850 fd5ff06f jal x0, -44 +35342613ns 620941 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35342897ns 620946 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35343295ns 620953 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35343466ns 620956 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35343920ns 620964 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35344091ns 620967 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35344375ns 620972 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35344659ns 620977 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35344943ns 620982 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35345398ns 620990 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35345568ns 620993 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35345852ns 620998 1a110850 fd5ff06f jal x0, -44 +35346137ns 621003 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35346421ns 621008 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35346819ns 621015 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35346989ns 621018 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35347444ns 621026 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35347614ns 621029 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35347898ns 621034 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35348183ns 621039 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35348467ns 621044 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35348921ns 621052 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35349092ns 621055 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35349376ns 621060 1a110850 fd5ff06f jal x0, -44 +35349660ns 621065 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35349944ns 621070 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35350342ns 621077 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35350513ns 621080 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35350967ns 621088 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35351138ns 621091 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35351422ns 621096 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35351706ns 621101 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35351990ns 621106 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35352445ns 621114 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35352615ns 621117 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35352900ns 621122 1a110850 fd5ff06f jal x0, -44 +35353184ns 621127 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35353468ns 621132 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35353866ns 621139 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35354036ns 621142 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35354491ns 621150 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35354661ns 621153 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35354946ns 621158 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35355230ns 621163 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35355514ns 621168 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35355969ns 621176 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35356139ns 621179 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35356423ns 621184 1a110850 fd5ff06f jal x0, -44 +35356707ns 621189 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35356992ns 621194 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35357389ns 621201 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35357560ns 621204 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35358015ns 621212 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35358185ns 621215 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35358469ns 621220 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35358753ns 621225 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35359037ns 621230 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35359492ns 621238 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35359663ns 621241 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35359947ns 621246 1a110850 fd5ff06f jal x0, -44 +35360231ns 621251 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35360515ns 621256 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35360913ns 621263 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35361083ns 621266 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35361538ns 621274 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35361709ns 621277 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35361993ns 621282 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35362277ns 621287 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35362561ns 621292 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35363016ns 621300 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35363186ns 621303 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35363470ns 621308 1a110850 fd5ff06f jal x0, -44 +35363755ns 621313 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35364039ns 621318 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35364437ns 621325 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35364607ns 621328 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35365062ns 621336 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35365232ns 621339 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35365516ns 621344 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35365800ns 621349 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35366085ns 621354 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35366539ns 621362 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35366710ns 621365 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35366994ns 621370 1a110850 fd5ff06f jal x0, -44 +35367278ns 621375 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35367562ns 621380 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35367960ns 621387 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35368131ns 621390 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35368585ns 621398 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35368756ns 621401 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35369040ns 621406 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35369324ns 621411 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35369608ns 621416 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35370063ns 621424 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35370233ns 621427 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35370518ns 621432 1a110850 fd5ff06f jal x0, -44 +35370802ns 621437 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35371086ns 621442 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35371484ns 621449 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35371654ns 621452 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35372109ns 621460 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35372279ns 621463 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35372563ns 621468 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35372848ns 621473 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35373132ns 621478 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35373586ns 621486 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35373757ns 621489 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35374041ns 621494 1a110850 fd5ff06f jal x0, -44 +35374325ns 621499 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35374609ns 621504 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35375007ns 621511 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35375178ns 621514 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35375632ns 621522 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35375803ns 621525 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35376087ns 621530 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35376371ns 621535 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35376655ns 621540 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35377110ns 621548 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35377281ns 621551 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35377565ns 621556 1a110850 fd5ff06f jal x0, -44 +35377849ns 621561 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35378133ns 621566 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35378531ns 621573 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35378701ns 621576 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35379156ns 621584 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35379327ns 621587 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35379611ns 621592 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35379895ns 621597 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35380179ns 621602 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35380634ns 621610 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35380804ns 621613 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35381088ns 621618 1a110850 fd5ff06f jal x0, -44 +35381372ns 621623 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35381657ns 621628 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35382054ns 621635 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35382225ns 621638 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35382680ns 621646 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35382850ns 621649 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35383134ns 621654 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35383418ns 621659 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35383703ns 621664 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35384157ns 621672 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35384328ns 621675 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35384612ns 621680 1a110850 fd5ff06f jal x0, -44 +35384896ns 621685 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35385180ns 621690 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35385578ns 621697 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35385749ns 621700 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35386203ns 621708 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35386374ns 621711 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35386658ns 621716 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35386942ns 621721 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35387226ns 621726 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35387681ns 621734 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35387851ns 621737 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35388135ns 621742 1a110850 fd5ff06f jal x0, -44 +35388420ns 621747 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35388704ns 621752 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35389102ns 621759 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35389272ns 621762 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35389727ns 621770 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35389897ns 621773 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35390181ns 621778 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35390466ns 621783 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35390750ns 621788 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35391204ns 621796 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35391375ns 621799 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35391659ns 621804 1a110850 fd5ff06f jal x0, -44 +35391943ns 621809 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35392227ns 621814 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35392625ns 621821 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35392796ns 621824 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35393250ns 621832 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35393421ns 621835 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35393705ns 621840 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35393989ns 621845 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35394273ns 621850 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35394728ns 621858 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35394898ns 621861 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35395183ns 621866 1a110850 fd5ff06f jal x0, -44 +35395467ns 621871 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35395751ns 621876 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35396149ns 621883 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35396319ns 621886 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35396774ns 621894 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35396944ns 621897 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35397229ns 621902 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35397513ns 621907 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35397797ns 621912 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35398252ns 621920 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35398422ns 621923 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35398706ns 621928 1a110850 fd5ff06f jal x0, -44 +35398990ns 621933 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35399275ns 621938 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35399672ns 621945 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35399843ns 621948 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35400298ns 621956 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35400468ns 621959 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35400752ns 621964 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35401036ns 621969 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35401320ns 621974 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35401775ns 621982 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35401946ns 621985 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35402230ns 621990 1a110850 fd5ff06f jal x0, -44 +35402514ns 621995 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35402798ns 622000 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35403196ns 622007 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35403366ns 622010 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35403821ns 622018 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35403992ns 622021 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35404276ns 622026 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35404560ns 622031 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35404844ns 622036 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35405299ns 622044 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35405469ns 622047 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35405753ns 622052 1a110850 fd5ff06f jal x0, -44 +35406038ns 622057 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35406322ns 622062 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35406720ns 622069 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35406890ns 622072 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35407345ns 622080 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35407515ns 622083 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35407799ns 622088 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35408083ns 622093 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35408368ns 622098 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35408822ns 622106 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35408993ns 622109 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35409277ns 622114 1a110850 fd5ff06f jal x0, -44 +35409561ns 622119 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35409845ns 622124 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35410243ns 622131 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35410414ns 622134 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35410868ns 622142 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35411039ns 622145 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35411323ns 622150 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35411607ns 622155 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35411891ns 622160 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35412346ns 622168 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35412516ns 622171 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35412801ns 622176 1a110850 fd5ff06f jal x0, -44 +35413085ns 622181 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35413369ns 622186 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35413767ns 622193 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35413937ns 622196 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35414392ns 622204 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35414562ns 622207 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35414847ns 622212 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35415131ns 622217 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35415415ns 622222 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35415869ns 622230 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35416040ns 622233 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35416324ns 622238 1a110850 fd5ff06f jal x0, -44 +35416608ns 622243 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35416892ns 622248 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35417290ns 622255 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35417461ns 622258 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35417915ns 622266 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35418086ns 622269 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35418370ns 622274 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35418654ns 622279 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35418938ns 622284 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35419393ns 622292 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35419564ns 622295 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35419848ns 622300 1a110850 fd5ff06f jal x0, -44 +35420132ns 622305 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35420416ns 622310 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35420814ns 622317 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35420984ns 622320 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35421439ns 622328 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35421610ns 622331 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35421894ns 622336 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35422178ns 622341 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35422462ns 622346 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35422917ns 622354 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35423087ns 622357 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35423371ns 622362 1a110850 fd5ff06f jal x0, -44 +35423655ns 622367 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35423940ns 622372 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35424337ns 622379 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35424508ns 622382 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35424963ns 622390 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35425133ns 622393 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35425417ns 622398 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35425701ns 622403 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35425986ns 622408 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35426440ns 622416 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35426611ns 622419 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35426895ns 622424 1a110850 fd5ff06f jal x0, -44 +35427179ns 622429 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35427463ns 622434 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35427861ns 622441 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35428032ns 622444 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35428486ns 622452 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35428657ns 622455 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35428941ns 622460 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35429225ns 622465 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35429509ns 622470 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35429964ns 622478 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35430134ns 622481 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35430418ns 622486 1a110850 fd5ff06f jal x0, -44 +35430703ns 622491 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35430987ns 622496 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35431385ns 622503 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35431555ns 622506 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35432010ns 622514 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35432180ns 622517 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35432464ns 622522 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35432749ns 622527 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35433033ns 622532 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35433487ns 622540 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35433658ns 622543 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35433942ns 622548 1a110850 fd5ff06f jal x0, -44 +35434226ns 622553 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35434510ns 622558 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35434908ns 622565 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35435079ns 622568 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35435533ns 622576 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35435704ns 622579 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35435988ns 622584 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35436272ns 622589 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35436556ns 622594 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35437011ns 622602 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35437181ns 622605 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35437466ns 622610 1a110850 fd5ff06f jal x0, -44 +35437750ns 622615 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35438034ns 622620 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35438432ns 622627 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35438602ns 622630 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35439057ns 622638 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35439227ns 622641 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35439512ns 622646 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35439796ns 622651 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35440080ns 622656 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35440535ns 622664 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35440705ns 622667 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35440989ns 622672 1a110850 fd5ff06f jal x0, -44 +35441273ns 622677 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35441558ns 622682 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35441955ns 622689 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35442126ns 622692 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35442581ns 622700 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35442751ns 622703 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35443035ns 622708 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35443319ns 622713 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35443603ns 622718 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35444058ns 622726 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35444229ns 622729 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35444513ns 622734 1a110850 fd5ff06f jal x0, -44 +35444797ns 622739 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35445081ns 622744 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35445479ns 622751 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35445649ns 622754 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35446104ns 622762 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35446275ns 622765 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35446559ns 622770 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35446843ns 622775 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35447127ns 622780 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35447582ns 622788 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35447752ns 622791 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35448036ns 622796 1a110850 fd5ff06f jal x0, -44 +35448321ns 622801 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35448605ns 622806 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35449003ns 622813 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35449173ns 622816 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35449628ns 622824 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35449798ns 622827 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35450082ns 622832 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35450367ns 622837 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35450651ns 622842 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35451105ns 622850 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35451276ns 622853 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35451560ns 622858 1a110850 fd5ff06f jal x0, -44 +35451844ns 622863 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35452128ns 622868 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35452526ns 622875 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35452697ns 622878 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35453151ns 622886 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35453322ns 622889 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35453606ns 622894 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35453890ns 622899 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35454174ns 622904 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35454629ns 622912 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35454799ns 622915 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35455084ns 622920 1a110850 fd5ff06f jal x0, -44 +35455368ns 622925 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35455652ns 622930 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35456050ns 622937 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35456220ns 622940 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35456675ns 622948 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35456845ns 622951 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35457130ns 622956 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35457414ns 622961 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35457698ns 622966 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35458152ns 622974 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35458323ns 622977 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35458607ns 622982 1a110850 fd5ff06f jal x0, -44 +35458891ns 622987 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35459175ns 622992 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35459573ns 622999 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35459744ns 623002 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35460198ns 623010 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35460369ns 623013 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35460653ns 623018 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35460937ns 623023 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35461221ns 623028 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35461676ns 623036 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35461847ns 623039 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35462131ns 623044 1a110850 fd5ff06f jal x0, -44 +35462415ns 623049 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35462699ns 623054 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35463097ns 623061 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35463267ns 623064 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35463722ns 623072 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35463893ns 623075 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35464177ns 623080 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35464461ns 623085 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35464745ns 623090 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35465200ns 623098 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35465370ns 623101 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35465654ns 623106 1a110850 fd5ff06f jal x0, -44 +35465938ns 623111 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35466223ns 623116 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35466620ns 623123 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35466791ns 623126 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35467246ns 623134 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35467416ns 623137 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35467700ns 623142 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35467984ns 623147 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35468269ns 623152 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35468723ns 623160 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35468894ns 623163 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35469178ns 623168 1a110850 fd5ff06f jal x0, -44 +35469462ns 623173 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35469746ns 623178 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35470144ns 623185 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35470315ns 623188 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35470769ns 623196 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35470940ns 623199 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35471224ns 623204 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35471508ns 623209 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35471792ns 623214 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35472247ns 623222 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35472417ns 623225 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35472701ns 623230 1a110850 fd5ff06f jal x0, -44 +35472986ns 623235 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35473270ns 623240 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35473668ns 623247 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35473838ns 623250 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35474293ns 623258 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35474463ns 623261 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35474747ns 623266 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35475032ns 623271 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35475316ns 623276 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35475770ns 623284 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35475941ns 623287 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35476225ns 623292 1a110850 fd5ff06f jal x0, -44 +35476509ns 623297 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35476793ns 623302 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35477191ns 623309 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35477362ns 623312 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35477816ns 623320 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35477987ns 623323 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35478271ns 623328 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35478555ns 623333 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35478839ns 623338 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35479294ns 623346 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35479464ns 623349 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35479749ns 623354 1a110850 fd5ff06f jal x0, -44 +35480033ns 623359 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35480317ns 623364 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35480715ns 623371 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35480885ns 623374 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35481340ns 623382 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35481510ns 623385 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35481795ns 623390 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35482079ns 623395 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35482363ns 623400 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35482818ns 623408 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35482988ns 623411 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35483272ns 623416 1a110850 fd5ff06f jal x0, -44 +35483556ns 623421 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35483841ns 623426 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35484238ns 623433 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35484409ns 623436 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35484864ns 623444 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35485034ns 623447 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35485318ns 623452 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35485602ns 623457 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35485887ns 623462 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35486341ns 623470 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35486512ns 623473 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35486796ns 623478 1a110850 fd5ff06f jal x0, -44 +35487080ns 623483 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35487364ns 623488 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35487762ns 623495 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35487932ns 623498 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35488387ns 623506 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35488558ns 623509 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35488842ns 623514 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35489126ns 623519 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35489410ns 623524 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35489865ns 623532 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35490035ns 623535 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35490319ns 623540 1a110850 fd5ff06f jal x0, -44 +35490604ns 623545 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35490888ns 623550 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35491286ns 623557 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35491456ns 623560 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35491911ns 623568 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35492081ns 623571 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35492365ns 623576 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35492650ns 623581 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35492934ns 623586 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35493388ns 623594 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35493559ns 623597 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35493843ns 623602 1a110850 fd5ff06f jal x0, -44 +35494127ns 623607 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35494411ns 623612 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35494809ns 623619 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35494980ns 623622 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35495434ns 623630 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35495605ns 623633 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35495889ns 623638 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35496173ns 623643 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35496457ns 623648 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35496912ns 623656 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35497082ns 623659 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35497367ns 623664 1a110850 fd5ff06f jal x0, -44 +35497651ns 623669 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35497935ns 623674 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35498333ns 623681 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35498503ns 623684 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35498958ns 623692 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35499128ns 623695 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35499413ns 623700 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35499697ns 623705 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35499981ns 623710 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35500435ns 623718 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35500606ns 623721 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35500890ns 623726 1a110850 fd5ff06f jal x0, -44 +35501174ns 623731 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35501458ns 623736 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35501856ns 623743 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35502027ns 623746 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35502481ns 623754 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35502652ns 623757 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35502936ns 623762 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35503220ns 623767 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35503504ns 623772 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35503959ns 623780 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35504130ns 623783 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35504414ns 623788 1a110850 fd5ff06f jal x0, -44 +35504698ns 623793 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35504982ns 623798 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35505380ns 623805 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35505550ns 623808 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35506005ns 623816 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35506176ns 623819 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35506460ns 623824 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35506744ns 623829 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35507028ns 623834 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35507483ns 623842 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35507653ns 623845 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35507937ns 623850 1a110850 fd5ff06f jal x0, -44 +35508221ns 623855 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35508506ns 623860 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35508903ns 623867 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35509074ns 623870 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35509529ns 623878 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35509699ns 623881 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35509983ns 623886 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35510267ns 623891 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35510552ns 623896 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35511006ns 623904 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35511177ns 623907 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35511461ns 623912 1a110850 fd5ff06f jal x0, -44 +35511745ns 623917 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35512029ns 623922 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35512427ns 623929 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35512598ns 623932 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35513052ns 623940 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35513223ns 623943 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35513507ns 623948 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35513791ns 623953 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35514075ns 623958 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35514530ns 623966 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35514700ns 623969 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35514984ns 623974 1a110850 fd5ff06f jal x0, -44 +35515269ns 623979 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35515553ns 623984 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35515951ns 623991 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35516121ns 623994 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35516576ns 624002 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35516746ns 624005 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35517030ns 624010 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35517315ns 624015 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35517599ns 624020 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35518053ns 624028 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35518224ns 624031 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35518508ns 624036 1a110850 fd5ff06f jal x0, -44 +35518792ns 624041 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35519076ns 624046 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35519474ns 624053 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35519645ns 624056 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35520099ns 624064 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35520270ns 624067 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35520554ns 624072 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35520838ns 624077 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35521122ns 624082 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35521577ns 624090 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35521747ns 624093 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35522032ns 624098 1a110850 fd5ff06f jal x0, -44 +35522316ns 624103 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35522600ns 624108 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35522998ns 624115 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35523168ns 624118 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35523623ns 624126 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35523793ns 624129 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35524078ns 624134 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35524362ns 624139 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35524646ns 624144 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35525101ns 624152 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35525271ns 624155 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35525555ns 624160 1a110850 fd5ff06f jal x0, -44 +35525839ns 624165 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35526124ns 624170 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35526521ns 624177 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35526692ns 624180 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35527147ns 624188 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35527317ns 624191 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35527601ns 624196 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35527885ns 624201 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35528170ns 624206 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35528624ns 624214 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35528795ns 624217 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35529079ns 624222 1a110850 fd5ff06f jal x0, -44 +35529363ns 624227 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35529647ns 624232 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35530045ns 624239 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35530215ns 624242 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35530670ns 624250 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35530841ns 624253 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35531125ns 624258 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35531409ns 624263 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35531693ns 624268 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35532148ns 624276 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35532318ns 624279 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35532602ns 624284 1a110850 fd5ff06f jal x0, -44 +35532887ns 624289 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35533171ns 624294 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35533569ns 624301 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35533739ns 624304 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35534194ns 624312 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35534364ns 624315 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35534648ns 624320 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35534933ns 624325 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35535217ns 624330 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35535671ns 624338 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35535842ns 624341 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35536126ns 624346 1a110850 fd5ff06f jal x0, -44 +35536410ns 624351 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35536694ns 624356 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35537092ns 624363 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35537263ns 624366 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35537717ns 624374 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35537888ns 624377 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35538172ns 624382 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35538456ns 624387 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35538740ns 624392 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35539195ns 624400 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35539365ns 624403 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35539650ns 624408 1a110850 fd5ff06f jal x0, -44 +35539934ns 624413 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35540218ns 624418 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35540616ns 624425 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35540786ns 624428 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35541241ns 624436 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35541411ns 624439 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35541696ns 624444 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35541980ns 624449 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35542264ns 624454 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35542719ns 624462 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35542889ns 624465 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35543173ns 624470 1a110850 fd5ff06f jal x0, -44 +35543457ns 624475 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35543741ns 624480 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35544139ns 624487 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35544310ns 624490 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35544764ns 624498 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35544935ns 624501 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35545219ns 624506 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35545503ns 624511 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35545787ns 624516 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35546242ns 624524 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35546413ns 624527 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35546697ns 624532 1a110850 fd5ff06f jal x0, -44 +35546981ns 624537 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35547265ns 624542 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35547663ns 624549 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35547833ns 624552 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35548288ns 624560 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35548459ns 624563 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35548743ns 624568 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35549027ns 624573 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35549311ns 624578 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35549766ns 624586 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35549936ns 624589 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35550220ns 624594 1a110850 fd5ff06f jal x0, -44 +35550504ns 624599 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35550789ns 624604 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35551186ns 624611 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35551357ns 624614 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35551812ns 624622 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35551982ns 624625 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35552266ns 624630 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35552550ns 624635 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35552835ns 624640 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35553289ns 624648 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35553460ns 624651 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35553744ns 624656 1a110850 fd5ff06f jal x0, -44 +35554028ns 624661 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35554312ns 624666 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35554710ns 624673 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35554881ns 624676 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35555335ns 624684 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35555506ns 624687 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35555790ns 624692 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35556074ns 624697 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35556358ns 624702 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35556813ns 624710 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35556983ns 624713 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35557267ns 624718 1a110850 fd5ff06f jal x0, -44 +35557552ns 624723 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35557836ns 624728 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35558234ns 624735 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35558404ns 624738 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35558859ns 624746 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35559029ns 624749 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35559313ns 624754 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35559598ns 624759 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35559882ns 624764 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35560336ns 624772 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35560507ns 624775 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35560791ns 624780 1a110850 fd5ff06f jal x0, -44 +35561075ns 624785 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35561359ns 624790 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35561757ns 624797 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35561928ns 624800 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35562382ns 624808 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35562553ns 624811 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35562837ns 624816 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35563121ns 624821 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35563405ns 624826 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35563860ns 624834 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35564031ns 624837 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35564315ns 624842 1a110850 fd5ff06f jal x0, -44 +35564599ns 624847 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35564883ns 624852 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35565281ns 624859 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35565451ns 624862 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35565906ns 624870 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35566076ns 624873 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35566361ns 624878 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35566645ns 624883 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35566929ns 624888 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35567384ns 624896 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35567554ns 624899 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35567838ns 624904 1a110850 fd5ff06f jal x0, -44 +35568122ns 624909 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35568407ns 624914 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35568804ns 624921 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35568975ns 624924 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35569430ns 624932 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35569600ns 624935 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35569884ns 624940 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35570168ns 624945 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35570453ns 624950 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35570907ns 624958 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35571078ns 624961 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35571362ns 624966 1a110850 fd5ff06f jal x0, -44 +35571646ns 624971 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35571930ns 624976 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35572328ns 624983 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35572498ns 624986 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35572953ns 624994 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35573124ns 624997 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35573408ns 625002 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35573692ns 625007 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35573976ns 625012 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35574431ns 625020 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35574601ns 625023 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35574885ns 625028 1a110850 fd5ff06f jal x0, -44 +35575170ns 625033 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35575454ns 625038 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35575852ns 625045 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35576022ns 625048 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35576477ns 625056 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35576647ns 625059 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35576931ns 625064 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35577216ns 625069 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35577500ns 625074 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35577954ns 625082 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35578125ns 625085 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35578409ns 625090 1a110850 fd5ff06f jal x0, -44 +35578693ns 625095 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35578977ns 625100 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35579375ns 625107 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35579546ns 625110 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35580000ns 625118 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35580171ns 625121 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35580455ns 625126 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35580739ns 625131 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35581023ns 625136 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35581478ns 625144 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35581648ns 625147 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35581933ns 625152 1a110850 fd5ff06f jal x0, -44 +35582217ns 625157 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35582501ns 625162 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35582899ns 625169 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35583069ns 625172 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35583524ns 625180 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35583694ns 625183 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35583979ns 625188 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35584263ns 625193 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35584547ns 625198 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35585002ns 625206 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35585172ns 625209 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35585456ns 625214 1a110850 fd5ff06f jal x0, -44 +35585740ns 625219 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35586024ns 625224 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35586422ns 625231 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35586593ns 625234 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35587047ns 625242 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35587218ns 625245 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35587502ns 625250 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35587786ns 625255 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35588070ns 625260 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35588525ns 625268 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35588696ns 625271 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35588980ns 625276 1a110850 fd5ff06f jal x0, -44 +35589264ns 625281 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35589548ns 625286 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35589946ns 625293 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35590116ns 625296 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35590571ns 625304 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35590742ns 625307 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35591026ns 625312 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35591310ns 625317 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35591594ns 625322 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35592049ns 625330 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35592219ns 625333 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35592503ns 625338 1a110850 fd5ff06f jal x0, -44 +35592787ns 625343 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35593072ns 625348 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35593469ns 625355 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35593640ns 625358 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35594095ns 625366 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35594265ns 625369 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35594549ns 625374 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35594833ns 625379 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35595118ns 625384 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35595572ns 625392 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35595743ns 625395 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35596027ns 625400 1a110850 fd5ff06f jal x0, -44 +35596311ns 625405 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35596595ns 625410 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35596993ns 625417 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35597164ns 625420 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35597618ns 625428 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35597789ns 625431 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35598073ns 625436 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35598357ns 625441 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35598641ns 625446 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35599096ns 625454 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35599266ns 625457 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35599551ns 625462 1a110850 fd5ff06f jal x0, -44 +35599835ns 625467 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35600119ns 625472 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35600517ns 625479 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35600687ns 625482 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35601142ns 625490 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35601312ns 625493 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35601596ns 625498 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35601881ns 625503 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35602165ns 625508 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35602619ns 625516 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35602790ns 625519 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35603074ns 625524 1a110850 fd5ff06f jal x0, -44 +35603358ns 625529 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35603642ns 625534 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35604040ns 625541 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35604211ns 625544 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35604665ns 625552 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35604836ns 625555 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35605120ns 625560 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35605404ns 625565 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35605688ns 625570 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35606143ns 625578 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35606314ns 625581 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35606598ns 625586 1a110850 fd5ff06f jal x0, -44 +35606882ns 625591 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35607166ns 625596 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35607564ns 625603 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35607734ns 625606 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35608189ns 625614 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35608359ns 625617 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35608644ns 625622 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35608928ns 625627 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35609212ns 625632 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35609667ns 625640 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35609837ns 625643 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35610121ns 625648 1a110850 fd5ff06f jal x0, -44 +35610405ns 625653 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35610690ns 625658 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35611087ns 625665 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35611258ns 625668 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35611713ns 625676 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35611883ns 625679 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35612167ns 625684 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35612451ns 625689 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35612736ns 625694 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35613190ns 625702 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35613361ns 625705 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35613645ns 625710 1a110850 fd5ff06f jal x0, -44 +35613929ns 625715 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35614213ns 625720 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35614611ns 625727 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35614781ns 625730 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35615236ns 625738 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35615407ns 625741 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35615691ns 625746 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35615975ns 625751 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35616259ns 625756 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35616714ns 625764 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35616884ns 625767 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35617168ns 625772 1a110850 fd5ff06f jal x0, -44 +35617453ns 625777 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35617737ns 625782 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35618135ns 625789 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35618305ns 625792 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35618760ns 625800 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35618930ns 625803 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35619214ns 625808 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35619499ns 625813 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35619783ns 625818 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35620237ns 625826 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35620408ns 625829 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35620692ns 625834 1a110850 fd5ff06f jal x0, -44 +35620976ns 625839 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35621260ns 625844 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35621658ns 625851 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35621829ns 625854 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35622283ns 625862 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35622454ns 625865 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35622738ns 625870 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35623022ns 625875 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35623306ns 625880 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35623761ns 625888 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35623931ns 625891 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35624216ns 625896 1a110850 fd5ff06f jal x0, -44 +35624500ns 625901 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35624784ns 625906 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35625182ns 625913 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35625352ns 625916 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35625807ns 625924 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35625977ns 625927 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35626262ns 625932 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35626546ns 625937 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35626830ns 625942 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35627285ns 625950 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35627455ns 625953 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35627739ns 625958 1a110850 fd5ff06f jal x0, -44 +35628023ns 625963 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35628307ns 625968 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35628705ns 625975 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35628876ns 625978 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35629330ns 625986 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35629501ns 625989 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35629785ns 625994 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35630069ns 625999 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35630353ns 626004 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35630808ns 626012 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35630979ns 626015 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35631263ns 626020 1a110850 fd5ff06f jal x0, -44 +35631547ns 626025 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35631831ns 626030 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35632229ns 626037 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35632399ns 626040 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35632854ns 626048 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35633025ns 626051 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35633309ns 626056 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35633593ns 626061 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35633877ns 626066 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35634332ns 626074 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35634502ns 626077 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35634786ns 626082 1a110850 fd5ff06f jal x0, -44 +35635071ns 626087 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35635355ns 626092 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35635752ns 626099 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35635923ns 626102 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35636378ns 626110 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35636548ns 626113 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35636832ns 626118 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35637116ns 626123 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35637401ns 626128 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35637855ns 626136 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35638026ns 626139 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35638310ns 626144 1a110850 fd5ff06f jal x0, -44 +35638594ns 626149 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35638878ns 626154 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35639276ns 626161 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35639447ns 626164 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35639901ns 626172 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35640072ns 626175 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35640356ns 626180 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35640640ns 626185 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35640924ns 626190 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35641379ns 626198 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35641549ns 626201 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35641834ns 626206 1a110850 fd5ff06f jal x0, -44 +35642118ns 626211 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35642402ns 626216 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35642800ns 626223 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35642970ns 626226 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35643425ns 626234 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35643595ns 626237 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35643879ns 626242 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35644164ns 626247 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35644448ns 626252 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35644902ns 626260 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35645073ns 626263 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35645357ns 626268 1a110850 fd5ff06f jal x0, -44 +35645641ns 626273 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35645925ns 626278 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35646323ns 626285 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35646494ns 626288 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35646948ns 626296 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35647119ns 626299 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35647403ns 626304 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35647687ns 626309 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35647971ns 626314 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35648426ns 626322 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35648597ns 626325 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35648881ns 626330 1a110850 fd5ff06f jal x0, -44 +35649165ns 626335 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35649449ns 626340 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35649847ns 626347 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35650017ns 626350 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35650472ns 626358 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35650642ns 626361 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35650927ns 626366 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35651211ns 626371 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35651495ns 626376 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35651950ns 626384 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35652120ns 626387 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35652404ns 626392 1a110850 fd5ff06f jal x0, -44 +35652688ns 626397 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35652973ns 626402 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35653370ns 626409 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35653541ns 626412 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35653996ns 626420 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35654166ns 626423 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35654450ns 626428 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35654734ns 626433 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35655019ns 626438 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35655473ns 626446 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35655644ns 626449 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35655928ns 626454 1a110850 fd5ff06f jal x0, -44 +35656212ns 626459 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35656496ns 626464 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35656894ns 626471 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35657064ns 626474 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35657519ns 626482 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35657690ns 626485 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35657974ns 626490 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35658258ns 626495 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35658542ns 626500 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35658997ns 626508 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35659167ns 626511 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35659451ns 626516 1a110850 fd5ff06f jal x0, -44 +35659736ns 626521 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35660020ns 626526 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35660418ns 626533 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35660588ns 626536 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35661043ns 626544 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35661213ns 626547 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35661497ns 626552 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35661782ns 626557 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35662066ns 626562 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35662520ns 626570 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35662691ns 626573 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35662975ns 626578 1a110850 fd5ff06f jal x0, -44 +35663259ns 626583 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35663543ns 626588 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35663941ns 626595 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35664112ns 626598 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35664566ns 626606 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35664737ns 626609 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35665021ns 626614 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35665305ns 626619 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35665589ns 626624 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35666044ns 626632 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35666214ns 626635 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35666499ns 626640 1a110850 fd5ff06f jal x0, -44 +35666783ns 626645 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35667067ns 626650 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35667465ns 626657 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35667635ns 626660 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35668090ns 626668 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35668260ns 626671 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35668545ns 626676 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35668829ns 626681 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35669113ns 626686 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35669568ns 626694 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35669738ns 626697 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35670022ns 626702 1a110850 fd5ff06f jal x0, -44 +35670306ns 626707 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35670591ns 626712 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35670988ns 626719 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35671159ns 626722 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35671613ns 626730 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35671784ns 626733 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35672068ns 626738 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35672352ns 626743 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35672636ns 626748 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35673091ns 626756 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35673262ns 626759 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35673546ns 626764 1a110850 fd5ff06f jal x0, -44 +35673830ns 626769 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35674114ns 626774 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35674512ns 626781 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35674682ns 626784 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35675137ns 626792 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35675308ns 626795 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35675592ns 626800 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35675876ns 626805 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35676160ns 626810 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35676615ns 626818 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35676785ns 626821 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35677069ns 626826 1a110850 fd5ff06f jal x0, -44 +35677354ns 626831 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35677638ns 626836 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35678035ns 626843 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35678206ns 626846 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35678661ns 626854 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35678831ns 626857 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35679115ns 626862 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35679399ns 626867 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35679684ns 626872 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35680138ns 626880 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35680309ns 626883 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35680593ns 626888 1a110850 fd5ff06f jal x0, -44 +35680877ns 626893 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35681161ns 626898 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35681559ns 626905 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35681730ns 626908 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35682184ns 626916 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35682355ns 626919 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35682639ns 626924 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35682923ns 626929 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35683207ns 626934 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35683662ns 626942 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35683832ns 626945 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35684117ns 626950 1a110850 fd5ff06f jal x0, -44 +35684401ns 626955 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35684685ns 626960 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35685083ns 626967 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35685253ns 626970 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35685708ns 626978 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35685878ns 626981 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35686162ns 626986 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35686447ns 626991 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35686731ns 626996 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35687185ns 627004 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35687356ns 627007 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35687640ns 627012 1a110850 fd5ff06f jal x0, -44 +35687924ns 627017 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35688208ns 627022 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35688606ns 627029 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35688777ns 627032 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35689231ns 627040 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35689402ns 627043 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35689686ns 627048 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35689970ns 627053 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35690254ns 627058 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35690709ns 627066 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35690880ns 627069 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35691164ns 627074 1a110850 fd5ff06f jal x0, -44 +35691448ns 627079 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35691732ns 627084 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35692130ns 627091 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35692300ns 627094 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35692755ns 627102 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35692925ns 627105 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35693210ns 627110 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35693494ns 627115 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35693778ns 627120 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35694233ns 627128 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35694403ns 627131 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35694687ns 627136 1a110850 fd5ff06f jal x0, -44 +35694971ns 627141 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35695256ns 627146 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35695653ns 627153 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35695824ns 627156 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35696279ns 627164 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35696449ns 627167 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35696733ns 627172 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35697017ns 627177 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35697302ns 627182 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35697756ns 627190 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35697927ns 627193 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35698211ns 627198 1a110850 fd5ff06f jal x0, -44 +35698495ns 627203 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35698779ns 627208 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35699177ns 627215 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35699347ns 627218 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35699802ns 627226 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35699973ns 627229 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35700257ns 627234 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35700541ns 627239 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35700825ns 627244 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35701280ns 627252 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35701450ns 627255 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35701734ns 627260 1a110850 fd5ff06f jal x0, -44 +35702019ns 627265 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35702303ns 627270 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35702701ns 627277 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35702871ns 627280 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35703326ns 627288 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35703496ns 627291 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35703780ns 627296 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35704065ns 627301 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35704349ns 627306 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35704803ns 627314 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35704974ns 627317 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35705258ns 627322 1a110850 fd5ff06f jal x0, -44 +35705542ns 627327 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35705826ns 627332 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35706224ns 627339 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35706395ns 627342 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35706849ns 627350 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35707020ns 627353 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35707304ns 627358 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35707588ns 627363 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35707872ns 627368 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35708327ns 627376 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35708497ns 627379 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35708782ns 627384 1a110850 fd5ff06f jal x0, -44 +35709066ns 627389 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35709350ns 627394 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35709748ns 627401 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35709918ns 627404 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35710373ns 627412 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35710543ns 627415 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35710828ns 627420 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35711112ns 627425 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35711396ns 627430 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35711851ns 627438 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35712021ns 627441 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35712305ns 627446 1a110850 fd5ff06f jal x0, -44 +35712589ns 627451 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35712874ns 627456 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35713271ns 627463 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35713442ns 627466 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35713896ns 627474 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35714067ns 627477 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35714351ns 627482 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35714635ns 627487 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35714919ns 627492 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35715374ns 627500 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35715545ns 627503 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35715829ns 627508 1a110850 fd5ff06f jal x0, -44 +35716113ns 627513 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35716397ns 627518 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35716795ns 627525 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35716965ns 627528 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35717420ns 627536 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35717591ns 627539 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35717875ns 627544 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35718159ns 627549 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35718443ns 627554 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35718898ns 627562 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35719068ns 627565 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35719352ns 627570 1a110850 fd5ff06f jal x0, -44 +35719637ns 627575 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35719921ns 627580 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35720319ns 627587 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35720489ns 627590 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35720944ns 627598 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35721114ns 627601 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35721398ns 627606 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35721682ns 627611 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35721967ns 627616 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35722421ns 627624 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35722592ns 627627 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35722876ns 627632 1a110850 fd5ff06f jal x0, -44 +35723160ns 627637 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35723444ns 627642 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35723842ns 627649 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35724013ns 627652 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35724467ns 627660 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35724638ns 627663 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35724922ns 627668 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35725206ns 627673 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35725490ns 627678 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35725945ns 627686 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35726115ns 627689 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35726400ns 627694 1a110850 fd5ff06f jal x0, -44 +35726684ns 627699 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35726968ns 627704 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35727366ns 627711 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35727536ns 627714 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35727991ns 627722 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35728161ns 627725 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35728445ns 627730 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35728730ns 627735 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35729014ns 627740 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35729468ns 627748 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35729639ns 627751 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35729923ns 627756 1a110850 fd5ff06f jal x0, -44 +35730207ns 627761 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35730491ns 627766 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35730889ns 627773 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35731060ns 627776 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35731514ns 627784 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35731685ns 627787 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35731969ns 627792 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35732253ns 627797 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35732537ns 627802 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35732992ns 627810 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35733163ns 627813 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35733447ns 627818 1a110850 fd5ff06f jal x0, -44 +35733731ns 627823 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35734015ns 627828 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35734413ns 627835 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35734583ns 627838 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35735038ns 627846 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35735208ns 627849 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35735493ns 627854 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35735777ns 627859 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35736061ns 627864 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35736516ns 627872 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35736686ns 627875 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35736970ns 627880 1a110850 fd5ff06f jal x0, -44 +35737254ns 627885 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35737539ns 627890 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35737936ns 627897 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35738107ns 627900 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35738562ns 627908 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35738732ns 627911 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35739016ns 627916 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35739300ns 627921 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35739585ns 627926 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35740039ns 627934 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35740210ns 627937 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35740494ns 627942 1a110850 fd5ff06f jal x0, -44 +35740778ns 627947 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35741062ns 627952 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35741460ns 627959 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35741631ns 627962 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35742085ns 627970 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35742256ns 627973 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35742540ns 627978 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35742824ns 627983 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35743108ns 627988 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35743563ns 627996 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35743733ns 627999 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35744017ns 628004 1a110850 fd5ff06f jal x0, -44 +35744302ns 628009 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35744586ns 628014 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35744984ns 628021 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35745154ns 628024 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35745609ns 628032 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35745779ns 628035 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35746063ns 628040 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35746348ns 628045 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35746632ns 628050 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35747086ns 628058 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35747257ns 628061 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35747541ns 628066 1a110850 fd5ff06f jal x0, -44 +35747825ns 628071 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35748109ns 628076 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35748507ns 628083 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35748678ns 628086 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35749132ns 628094 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35749303ns 628097 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35749587ns 628102 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35749871ns 628107 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35750155ns 628112 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35750610ns 628120 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35750780ns 628123 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35751065ns 628128 1a110850 fd5ff06f jal x0, -44 +35751349ns 628133 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35751633ns 628138 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35752031ns 628145 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35752201ns 628148 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35752656ns 628156 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35752826ns 628159 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35753111ns 628164 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35753395ns 628169 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35753679ns 628174 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35754134ns 628182 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35754304ns 628185 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35754588ns 628190 1a110850 fd5ff06f jal x0, -44 +35754872ns 628195 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35755157ns 628200 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35755554ns 628207 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35755725ns 628210 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35756179ns 628218 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35756350ns 628221 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35756634ns 628226 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35756918ns 628231 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35757202ns 628236 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35757657ns 628244 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35757828ns 628247 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35758112ns 628252 1a110850 fd5ff06f jal x0, -44 +35758396ns 628257 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35758680ns 628262 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35759078ns 628269 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35759248ns 628272 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35759703ns 628280 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35759874ns 628283 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35760158ns 628288 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35760442ns 628293 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35760726ns 628298 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35761181ns 628306 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35761351ns 628309 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35761635ns 628314 1a110850 fd5ff06f jal x0, -44 +35761920ns 628319 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35762204ns 628324 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35762602ns 628331 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35762772ns 628334 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35763227ns 628342 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35763397ns 628345 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35763681ns 628350 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35763965ns 628355 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35764250ns 628360 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35764704ns 628368 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35764875ns 628371 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35765159ns 628376 1a110850 fd5ff06f jal x0, -44 +35765443ns 628381 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35765727ns 628386 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35766125ns 628393 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35766296ns 628396 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35766750ns 628404 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35766921ns 628407 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35767205ns 628412 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35767489ns 628417 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35767773ns 628422 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35768228ns 628430 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35768398ns 628433 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35768683ns 628438 1a110850 fd5ff06f jal x0, -44 +35768967ns 628443 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35769251ns 628448 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35769649ns 628455 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35769819ns 628458 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35770274ns 628466 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35770444ns 628469 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35770728ns 628474 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35771013ns 628479 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35771297ns 628484 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35771751ns 628492 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35771922ns 628495 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35772206ns 628500 1a110850 fd5ff06f jal x0, -44 +35772490ns 628505 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35772774ns 628510 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35773172ns 628517 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35773343ns 628520 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35773797ns 628528 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35773968ns 628531 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35774252ns 628536 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35774536ns 628541 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35774820ns 628546 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35775275ns 628554 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35775446ns 628557 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35775730ns 628562 1a110850 fd5ff06f jal x0, -44 +35776014ns 628567 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35776298ns 628572 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35776696ns 628579 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35776866ns 628582 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35777321ns 628590 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35777491ns 628593 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35777776ns 628598 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35778060ns 628603 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35778344ns 628608 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35778799ns 628616 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35778969ns 628619 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35779253ns 628624 1a110850 fd5ff06f jal x0, -44 +35779537ns 628629 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35779822ns 628634 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35780219ns 628641 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35780390ns 628644 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35780845ns 628652 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35781015ns 628655 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35781299ns 628660 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35781583ns 628665 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35781868ns 628670 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35782322ns 628678 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35782493ns 628681 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35782777ns 628686 1a110850 fd5ff06f jal x0, -44 +35783061ns 628691 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35783345ns 628696 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35783743ns 628703 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35783914ns 628706 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35784368ns 628714 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35784539ns 628717 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35784823ns 628722 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35785107ns 628727 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35785391ns 628732 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35785846ns 628740 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35786016ns 628743 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35786300ns 628748 1a110850 fd5ff06f jal x0, -44 +35786585ns 628753 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35786869ns 628758 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35787267ns 628765 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35787437ns 628768 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35787892ns 628776 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35788062ns 628779 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35788346ns 628784 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35788631ns 628789 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35788915ns 628794 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35789369ns 628802 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35789540ns 628805 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35789824ns 628810 1a110850 fd5ff06f jal x0, -44 +35790108ns 628815 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35790392ns 628820 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35790790ns 628827 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35790961ns 628830 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35791415ns 628838 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35791586ns 628841 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35791870ns 628846 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35792154ns 628851 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35792438ns 628856 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35792893ns 628864 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35793063ns 628867 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35793348ns 628872 1a110850 fd5ff06f jal x0, -44 +35793632ns 628877 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35793916ns 628882 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35794314ns 628889 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35794484ns 628892 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35794939ns 628900 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35795109ns 628903 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35795394ns 628908 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35795678ns 628913 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35795962ns 628918 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35796417ns 628926 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35796587ns 628929 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35796871ns 628934 1a110850 fd5ff06f jal x0, -44 +35797155ns 628939 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35797440ns 628944 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35797837ns 628951 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35798008ns 628954 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35798463ns 628962 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35798633ns 628965 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35798917ns 628970 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35799201ns 628975 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35799485ns 628980 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35799940ns 628988 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35800111ns 628991 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35800395ns 628996 1a110850 fd5ff06f jal x0, -44 +35800679ns 629001 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35800963ns 629006 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35801361ns 629013 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35801531ns 629016 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35801986ns 629024 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35802157ns 629027 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35802441ns 629032 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35802725ns 629037 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35803009ns 629042 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35803464ns 629050 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35803634ns 629053 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35803918ns 629058 1a110850 fd5ff06f jal x0, -44 +35804203ns 629063 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35804487ns 629068 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35804885ns 629075 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35805055ns 629078 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35805510ns 629086 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35805680ns 629089 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35805964ns 629094 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35806248ns 629099 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35806533ns 629104 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35806987ns 629112 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35807158ns 629115 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35807442ns 629120 1a110850 fd5ff06f jal x0, -44 +35807726ns 629125 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35808010ns 629130 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35808408ns 629137 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35808579ns 629140 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35809033ns 629148 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35809204ns 629151 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35809488ns 629156 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35809772ns 629161 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35810056ns 629166 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35810511ns 629174 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35810681ns 629177 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35810966ns 629182 1a110850 fd5ff06f jal x0, -44 +35811250ns 629187 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35811534ns 629192 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35811932ns 629199 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35812102ns 629202 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35812557ns 629210 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35812727ns 629213 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35813011ns 629218 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35813296ns 629223 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35813580ns 629228 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35814034ns 629236 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35814205ns 629239 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35814489ns 629244 1a110850 fd5ff06f jal x0, -44 +35814773ns 629249 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35815057ns 629254 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35815455ns 629261 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35815626ns 629264 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35816080ns 629272 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35816251ns 629275 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35816535ns 629280 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35816819ns 629285 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35817103ns 629290 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35817558ns 629298 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35817729ns 629301 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35818013ns 629306 1a110850 fd5ff06f jal x0, -44 +35818297ns 629311 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35818581ns 629316 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35818979ns 629323 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35819149ns 629326 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35819604ns 629334 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35819775ns 629337 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35820059ns 629342 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35820343ns 629347 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35820627ns 629352 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35821082ns 629360 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35821252ns 629363 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35821536ns 629368 1a110850 fd5ff06f jal x0, -44 +35821820ns 629373 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35822105ns 629378 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35822502ns 629385 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35822673ns 629388 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35823128ns 629396 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35823298ns 629399 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35823582ns 629404 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35823866ns 629409 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35824151ns 629414 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35824605ns 629422 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35824776ns 629425 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35825060ns 629430 1a110850 fd5ff06f jal x0, -44 +35825344ns 629435 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35825628ns 629440 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35826026ns 629447 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35826197ns 629450 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35826651ns 629458 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35826822ns 629461 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35827106ns 629466 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35827390ns 629471 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35827674ns 629476 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35828129ns 629484 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35828299ns 629487 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35828583ns 629492 1a110850 fd5ff06f jal x0, -44 +35828868ns 629497 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35829152ns 629502 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35829550ns 629509 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35829720ns 629512 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35830175ns 629520 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35830345ns 629523 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35830629ns 629528 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35830914ns 629533 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35831198ns 629538 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35831652ns 629546 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35831823ns 629549 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35832107ns 629554 1a110850 fd5ff06f jal x0, -44 +35832391ns 629559 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35832675ns 629564 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35833073ns 629571 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35833244ns 629574 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35833698ns 629582 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35833869ns 629585 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35834153ns 629590 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35834437ns 629595 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35834721ns 629600 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35835176ns 629608 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35835346ns 629611 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35835631ns 629616 1a110850 fd5ff06f jal x0, -44 +35835915ns 629621 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35836199ns 629626 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35836597ns 629633 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35836767ns 629636 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35837222ns 629644 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35837392ns 629647 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35837677ns 629652 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35837961ns 629657 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35838245ns 629662 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35838700ns 629670 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35838870ns 629673 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35839154ns 629678 1a110850 fd5ff06f jal x0, -44 +35839438ns 629683 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35839723ns 629688 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35840120ns 629695 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35840291ns 629698 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35840746ns 629706 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35840916ns 629709 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35841200ns 629714 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35841484ns 629719 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35841768ns 629724 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35842223ns 629732 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35842394ns 629735 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35842678ns 629740 1a110850 fd5ff06f jal x0, -44 +35842962ns 629745 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35843246ns 629750 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35843644ns 629757 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35843814ns 629760 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35844269ns 629768 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35844440ns 629771 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35844724ns 629776 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35845008ns 629781 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35845292ns 629786 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35845747ns 629794 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35845917ns 629797 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35846201ns 629802 1a110850 fd5ff06f jal x0, -44 +35846486ns 629807 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35846770ns 629812 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35847168ns 629819 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35847338ns 629822 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35847793ns 629830 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35847963ns 629833 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35848247ns 629838 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35848531ns 629843 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35848816ns 629848 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35849270ns 629856 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35849441ns 629859 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35849725ns 629864 1a110850 fd5ff06f jal x0, -44 +35850009ns 629869 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35850293ns 629874 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35850691ns 629881 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35850862ns 629884 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35851316ns 629892 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35851487ns 629895 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35851771ns 629900 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35852055ns 629905 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35852339ns 629910 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35852794ns 629918 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35852964ns 629921 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35853249ns 629926 1a110850 fd5ff06f jal x0, -44 +35853533ns 629931 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35853817ns 629936 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35854215ns 629943 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35854385ns 629946 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35854840ns 629954 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35855010ns 629957 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35855295ns 629962 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35855579ns 629967 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35855863ns 629972 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35856317ns 629980 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35856488ns 629983 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35856772ns 629988 1a110850 fd5ff06f jal x0, -44 +35857056ns 629993 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35857340ns 629998 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35857738ns 630005 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35857909ns 630008 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35858363ns 630016 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35858534ns 630019 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35858818ns 630024 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35859102ns 630029 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35859386ns 630034 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35859841ns 630042 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35860012ns 630045 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35860296ns 630050 1a110850 fd5ff06f jal x0, -44 +35860580ns 630055 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35860864ns 630060 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35861262ns 630067 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35861432ns 630070 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35861887ns 630078 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35862058ns 630081 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35862342ns 630086 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35862626ns 630091 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35862910ns 630096 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35863365ns 630104 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35863535ns 630107 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35863819ns 630112 1a110850 fd5ff06f jal x0, -44 +35864103ns 630117 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35864388ns 630122 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35864785ns 630129 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35864956ns 630132 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35865411ns 630140 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35865581ns 630143 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35865865ns 630148 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35866149ns 630153 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35866434ns 630158 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35866888ns 630166 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35867059ns 630169 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35867343ns 630174 1a110850 fd5ff06f jal x0, -44 +35867627ns 630179 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35867911ns 630184 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35868309ns 630191 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35868480ns 630194 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35868934ns 630202 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35869105ns 630205 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35869389ns 630210 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35869673ns 630215 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35869957ns 630220 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35870412ns 630228 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35870582ns 630231 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35870866ns 630236 1a110850 fd5ff06f jal x0, -44 +35871151ns 630241 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35871435ns 630246 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35871833ns 630253 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35872003ns 630256 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35872458ns 630264 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35872628ns 630267 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35872912ns 630272 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35873197ns 630277 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35873481ns 630282 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35873935ns 630290 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35874106ns 630293 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35874390ns 630298 1a110850 fd5ff06f jal x0, -44 +35874674ns 630303 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35874958ns 630308 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35875356ns 630315 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35875527ns 630318 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35875981ns 630326 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35876152ns 630329 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35876436ns 630334 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35876720ns 630339 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35877004ns 630344 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35877459ns 630352 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35877629ns 630355 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35877914ns 630360 1a110850 fd5ff06f jal x0, -44 +35878198ns 630365 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35878482ns 630370 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35878880ns 630377 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35879050ns 630380 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35879505ns 630388 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35879675ns 630391 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35879960ns 630396 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35880244ns 630401 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35880528ns 630406 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35880983ns 630414 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35881153ns 630417 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35881437ns 630422 1a110850 fd5ff06f jal x0, -44 +35881721ns 630427 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35882006ns 630432 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35882403ns 630439 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35882574ns 630442 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35883029ns 630450 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35883199ns 630453 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35883483ns 630458 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35883767ns 630463 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35884051ns 630468 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35884506ns 630476 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35884677ns 630479 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35884961ns 630484 1a110850 fd5ff06f jal x0, -44 +35885245ns 630489 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35885529ns 630494 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35885927ns 630501 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35886097ns 630504 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35886552ns 630512 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35886723ns 630515 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35887007ns 630520 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35887291ns 630525 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35887575ns 630530 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35888030ns 630538 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35888200ns 630541 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35888484ns 630546 1a110850 fd5ff06f jal x0, -44 +35888769ns 630551 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35889053ns 630556 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35889451ns 630563 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35889621ns 630566 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35890076ns 630574 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35890246ns 630577 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35890530ns 630582 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35890815ns 630587 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35891099ns 630592 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35891553ns 630600 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35891724ns 630603 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35892008ns 630608 1a110850 fd5ff06f jal x0, -44 +35892292ns 630613 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35892576ns 630618 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35892974ns 630625 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35893145ns 630628 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35893599ns 630636 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35893770ns 630639 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35894054ns 630644 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35894338ns 630649 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35894622ns 630654 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35895077ns 630662 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35895247ns 630665 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35895532ns 630670 1a110850 fd5ff06f jal x0, -44 +35895816ns 630675 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35896100ns 630680 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35896498ns 630687 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35896668ns 630690 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35897123ns 630698 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35897293ns 630701 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35897578ns 630706 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35897862ns 630711 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35898146ns 630716 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35898600ns 630724 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35898771ns 630727 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35899055ns 630732 1a110850 fd5ff06f jal x0, -44 +35899339ns 630737 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35899623ns 630742 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35900021ns 630749 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35900192ns 630752 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35900646ns 630760 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35900817ns 630763 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35901101ns 630768 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35901385ns 630773 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35901669ns 630778 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35902124ns 630786 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35902295ns 630789 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35902579ns 630794 1a110850 fd5ff06f jal x0, -44 +35902863ns 630799 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35903147ns 630804 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35903545ns 630811 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35903715ns 630814 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35904170ns 630822 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35904341ns 630825 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35904625ns 630830 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35904909ns 630835 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35905193ns 630840 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35905648ns 630848 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35905818ns 630851 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35906102ns 630856 1a110850 fd5ff06f jal x0, -44 +35906386ns 630861 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35906671ns 630866 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35907068ns 630873 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35907239ns 630876 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35907694ns 630884 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35907864ns 630887 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35908148ns 630892 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35908432ns 630897 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35908717ns 630902 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35909171ns 630910 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35909342ns 630913 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35909626ns 630918 1a110850 fd5ff06f jal x0, -44 +35909910ns 630923 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35910194ns 630928 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35910592ns 630935 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35910763ns 630938 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35911217ns 630946 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35911388ns 630949 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35911672ns 630954 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35911956ns 630959 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35912240ns 630964 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35912695ns 630972 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35912865ns 630975 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35913149ns 630980 1a110850 fd5ff06f jal x0, -44 +35913434ns 630985 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35913718ns 630990 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35914116ns 630997 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35914286ns 631000 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35914741ns 631008 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35914911ns 631011 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35915195ns 631016 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35915480ns 631021 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35915764ns 631026 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35916218ns 631034 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35916389ns 631037 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35916673ns 631042 1a110850 fd5ff06f jal x0, -44 +35916957ns 631047 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35917241ns 631052 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35917639ns 631059 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35917810ns 631062 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35918264ns 631070 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35918435ns 631073 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35918719ns 631078 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35919003ns 631083 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35919287ns 631088 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35919742ns 631096 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35919912ns 631099 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35920197ns 631104 1a110850 fd5ff06f jal x0, -44 +35920481ns 631109 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35920765ns 631114 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35921163ns 631121 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35921333ns 631124 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35921788ns 631132 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35921958ns 631135 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35922243ns 631140 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35922527ns 631145 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35922811ns 631150 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35923266ns 631158 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35923436ns 631161 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35923720ns 631166 1a110850 fd5ff06f jal x0, -44 +35924004ns 631171 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35924289ns 631176 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35924686ns 631183 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35924857ns 631186 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35925312ns 631194 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35925482ns 631197 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35925766ns 631202 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35926050ns 631207 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35926335ns 631212 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35926789ns 631220 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35926960ns 631223 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35927244ns 631228 1a110850 fd5ff06f jal x0, -44 +35927528ns 631233 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35927812ns 631238 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35928210ns 631245 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35928380ns 631248 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35928835ns 631256 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35929006ns 631259 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35929290ns 631264 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35929574ns 631269 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35929858ns 631274 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35930313ns 631282 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35930483ns 631285 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35930767ns 631290 1a110850 fd5ff06f jal x0, -44 +35931052ns 631295 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35931336ns 631300 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35931734ns 631307 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35931904ns 631310 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35932359ns 631318 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35932529ns 631321 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35932813ns 631326 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35933098ns 631331 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35933382ns 631336 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35933836ns 631344 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35934007ns 631347 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35934291ns 631352 1a110850 fd5ff06f jal x0, -44 +35934575ns 631357 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35934859ns 631362 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35935257ns 631369 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35935428ns 631372 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35935882ns 631380 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35936053ns 631383 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35936337ns 631388 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35936621ns 631393 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35936905ns 631398 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35937360ns 631406 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35937530ns 631409 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35937815ns 631414 1a110850 fd5ff06f jal x0, -44 +35938099ns 631419 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35938383ns 631424 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35938781ns 631431 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35938951ns 631434 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35939406ns 631442 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35939576ns 631445 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35939861ns 631450 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35940145ns 631455 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35940429ns 631460 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35940883ns 631468 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35941054ns 631471 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35941338ns 631476 1a110850 fd5ff06f jal x0, -44 +35941622ns 631481 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35941906ns 631486 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35942304ns 631493 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35942475ns 631496 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35942929ns 631504 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35943100ns 631507 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35943384ns 631512 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35943668ns 631517 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35943952ns 631522 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35944407ns 631530 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35944578ns 631533 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35944862ns 631538 1a110850 fd5ff06f jal x0, -44 +35945146ns 631543 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35945430ns 631548 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35945828ns 631555 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35945998ns 631558 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35946453ns 631566 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35946624ns 631569 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35946908ns 631574 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35947192ns 631579 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35947476ns 631584 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35947931ns 631592 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35948101ns 631595 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35948385ns 631600 1a110850 fd5ff06f jal x0, -44 +35948669ns 631605 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35948954ns 631610 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35949351ns 631617 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35949522ns 631620 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35949977ns 631628 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35950147ns 631631 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35950431ns 631636 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35950715ns 631641 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35951000ns 631646 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35951454ns 631654 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35951625ns 631657 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35951909ns 631662 1a110850 fd5ff06f jal x0, -44 +35952193ns 631667 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35952477ns 631672 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35952875ns 631679 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35953046ns 631682 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35953500ns 631690 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35953671ns 631693 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35953955ns 631698 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35954239ns 631703 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35954523ns 631708 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35954978ns 631716 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35955148ns 631719 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35955432ns 631724 1a110850 fd5ff06f jal x0, -44 +35955717ns 631729 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35956001ns 631734 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35956399ns 631741 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35956569ns 631744 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35957024ns 631752 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35957194ns 631755 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35957478ns 631760 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35957763ns 631765 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35958047ns 631770 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35958501ns 631778 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35958672ns 631781 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35958956ns 631786 1a110850 fd5ff06f jal x0, -44 +35959240ns 631791 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35959524ns 631796 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35959922ns 631803 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35960093ns 631806 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35960547ns 631814 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35960718ns 631817 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35961002ns 631822 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35961286ns 631827 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35961570ns 631832 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35962025ns 631840 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35962195ns 631843 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35962480ns 631848 1a110850 fd5ff06f jal x0, -44 +35962764ns 631853 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35963048ns 631858 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35963446ns 631865 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35963616ns 631868 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35964071ns 631876 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35964241ns 631879 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35964526ns 631884 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35964810ns 631889 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35965094ns 631894 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35965549ns 631902 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35965719ns 631905 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35966003ns 631910 1a110850 fd5ff06f jal x0, -44 +35966287ns 631915 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35966572ns 631920 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35966969ns 631927 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35967140ns 631930 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35967595ns 631938 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35967765ns 631941 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35968049ns 631946 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35968333ns 631951 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35968618ns 631956 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35969072ns 631964 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35969243ns 631967 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35969527ns 631972 1a110850 fd5ff06f jal x0, -44 +35969811ns 631977 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35970095ns 631982 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35970493ns 631989 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35970663ns 631992 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35971118ns 632000 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35971289ns 632003 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35971573ns 632008 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35971857ns 632013 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35972141ns 632018 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35972596ns 632026 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35972766ns 632029 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35973050ns 632034 1a110850 fd5ff06f jal x0, -44 +35973335ns 632039 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35973619ns 632044 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35974017ns 632051 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35974187ns 632054 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35974642ns 632062 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35974812ns 632065 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35975096ns 632070 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35975381ns 632075 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35975665ns 632080 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35976119ns 632088 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35976290ns 632091 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35976574ns 632096 1a110850 fd5ff06f jal x0, -44 +35976858ns 632101 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35977142ns 632106 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35977540ns 632113 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35977711ns 632116 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35978165ns 632124 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35978336ns 632127 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35978620ns 632132 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35978904ns 632137 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35979188ns 632142 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35979643ns 632150 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35979813ns 632153 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35980098ns 632158 1a110850 fd5ff06f jal x0, -44 +35980382ns 632163 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35980666ns 632168 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35981064ns 632175 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35981234ns 632178 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35981689ns 632186 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35981859ns 632189 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35982144ns 632194 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35982428ns 632199 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35982712ns 632204 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35983167ns 632212 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35983337ns 632215 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35983621ns 632220 1a110850 fd5ff06f jal x0, -44 +35983905ns 632225 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35984189ns 632230 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35984587ns 632237 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35984758ns 632240 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35985212ns 632248 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35985383ns 632251 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35985667ns 632256 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35985951ns 632261 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35986235ns 632266 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35986690ns 632274 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35986861ns 632277 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35987145ns 632282 1a110850 fd5ff06f jal x0, -44 +35987429ns 632287 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35987713ns 632292 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35988111ns 632299 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35988281ns 632302 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35988736ns 632310 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35988907ns 632313 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35989191ns 632318 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35989475ns 632323 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35989759ns 632328 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35990214ns 632336 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35990384ns 632339 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35990668ns 632344 1a110850 fd5ff06f jal x0, -44 +35990952ns 632349 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35991237ns 632354 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35991634ns 632361 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35991805ns 632364 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35992260ns 632372 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35992430ns 632375 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35992714ns 632380 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35992998ns 632385 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35993283ns 632390 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35993737ns 632398 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35993908ns 632401 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35994192ns 632406 1a110850 fd5ff06f jal x0, -44 +35994476ns 632411 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35994760ns 632416 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35995158ns 632423 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35995329ns 632426 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35995783ns 632434 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35995954ns 632437 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35996238ns 632442 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35996522ns 632447 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35996806ns 632452 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35997261ns 632460 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +35997431ns 632463 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +35997715ns 632468 1a110850 fd5ff06f jal x0, -44 +35998000ns 632473 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +35998284ns 632478 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +35998682ns 632485 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +35998852ns 632488 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +35999307ns 632496 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +35999477ns 632499 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +35999761ns 632504 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36000046ns 632509 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36000330ns 632514 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36000784ns 632522 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36000955ns 632525 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36001239ns 632530 1a110850 fd5ff06f jal x0, -44 +36001523ns 632535 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36001807ns 632540 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36002205ns 632547 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36002376ns 632550 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36002830ns 632558 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36003001ns 632561 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36003285ns 632566 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36003569ns 632571 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36003853ns 632576 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36004308ns 632584 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36004479ns 632587 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36004763ns 632592 1a110850 fd5ff06f jal x0, -44 +36005047ns 632597 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36005331ns 632602 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36005729ns 632609 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36005899ns 632612 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36006354ns 632620 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36006524ns 632623 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36006809ns 632628 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36007093ns 632633 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36007377ns 632638 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36007832ns 632646 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36008002ns 632649 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36008286ns 632654 1a110850 fd5ff06f jal x0, -44 +36008570ns 632659 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36008855ns 632664 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36009252ns 632671 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36009423ns 632674 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36009878ns 632682 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36010048ns 632685 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36010332ns 632690 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36010616ns 632695 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36010901ns 632700 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36011355ns 632708 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36011526ns 632711 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36011810ns 632716 1a110850 fd5ff06f jal x0, -44 +36012094ns 632721 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36012378ns 632726 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36012776ns 632733 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36012946ns 632736 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36013401ns 632744 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36013572ns 632747 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36013856ns 632752 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36014140ns 632757 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36014424ns 632762 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36014879ns 632770 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36015049ns 632773 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36015333ns 632778 1a110850 fd5ff06f jal x0, -44 +36015618ns 632783 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36015902ns 632788 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36016300ns 632795 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36016470ns 632798 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36016925ns 632806 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36017095ns 632809 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36017379ns 632814 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36017664ns 632819 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36017948ns 632824 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36018402ns 632832 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36018573ns 632835 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36018857ns 632840 1a110850 fd5ff06f jal x0, -44 +36019141ns 632845 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36019425ns 632850 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36019823ns 632857 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36019994ns 632860 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36020448ns 632868 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36020619ns 632871 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36020903ns 632876 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36021187ns 632881 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36021471ns 632886 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36021926ns 632894 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36022096ns 632897 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36022381ns 632902 1a110850 fd5ff06f jal x0, -44 +36022665ns 632907 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36022949ns 632912 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36023347ns 632919 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36023517ns 632922 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36023972ns 632930 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36024142ns 632933 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36024427ns 632938 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36024711ns 632943 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36024995ns 632948 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36025450ns 632956 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36025620ns 632959 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36025904ns 632964 1a110850 fd5ff06f jal x0, -44 +36026188ns 632969 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36026472ns 632974 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36026870ns 632981 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36027041ns 632984 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36027495ns 632992 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36027666ns 632995 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36027950ns 633000 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36028234ns 633005 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36028518ns 633010 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36028973ns 633018 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36029144ns 633021 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36029428ns 633026 1a110850 fd5ff06f jal x0, -44 +36029712ns 633031 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36029996ns 633036 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36030394ns 633043 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36030564ns 633046 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36031019ns 633054 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36031190ns 633057 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36031474ns 633062 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36031758ns 633067 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36032042ns 633072 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36032497ns 633080 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36032667ns 633083 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36032951ns 633088 1a110850 fd5ff06f jal x0, -44 +36033235ns 633093 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36033520ns 633098 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36033917ns 633105 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36034088ns 633108 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36034543ns 633116 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36034713ns 633119 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36034997ns 633124 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36035281ns 633129 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36035566ns 633134 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36036020ns 633142 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36036191ns 633145 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36036475ns 633150 1a110850 fd5ff06f jal x0, -44 +36036759ns 633155 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36037043ns 633160 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36037441ns 633167 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36037612ns 633170 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36038066ns 633178 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36038237ns 633181 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36038521ns 633186 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36038805ns 633191 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36039089ns 633196 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36039544ns 633204 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36039714ns 633207 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36039999ns 633212 1a110850 fd5ff06f jal x0, -44 +36040283ns 633217 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36040567ns 633222 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36040965ns 633229 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36041135ns 633232 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36041590ns 633240 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36041760ns 633243 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36042044ns 633248 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36042329ns 633253 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36042613ns 633258 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36043067ns 633266 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36043238ns 633269 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36043522ns 633274 1a110850 fd5ff06f jal x0, -44 +36043806ns 633279 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36044090ns 633284 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36044488ns 633291 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36044659ns 633294 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36045113ns 633302 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36045284ns 633305 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36045568ns 633310 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36045852ns 633315 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36046136ns 633320 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36046591ns 633328 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36046762ns 633331 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36047046ns 633336 1a110850 fd5ff06f jal x0, -44 +36047330ns 633341 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36047614ns 633346 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36048012ns 633353 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36048182ns 633356 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36048637ns 633364 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36048807ns 633367 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36049092ns 633372 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36049376ns 633377 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36049660ns 633382 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36050115ns 633390 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36050285ns 633393 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36050569ns 633398 1a110850 fd5ff06f jal x0, -44 +36050853ns 633403 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36051138ns 633408 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36051535ns 633415 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36051706ns 633418 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36052161ns 633426 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36052331ns 633429 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36052615ns 633434 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36052899ns 633439 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36053184ns 633444 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36053638ns 633452 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36053809ns 633455 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36054093ns 633460 1a110850 fd5ff06f jal x0, -44 +36054377ns 633465 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36054661ns 633470 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36055059ns 633477 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36055229ns 633480 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36055684ns 633488 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36055855ns 633491 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36056139ns 633496 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36056423ns 633501 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36056707ns 633506 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36057162ns 633514 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36057332ns 633517 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36057616ns 633522 1a110850 fd5ff06f jal x0, -44 +36057901ns 633527 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36058185ns 633532 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36058583ns 633539 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36058753ns 633542 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36059208ns 633550 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36059378ns 633553 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36059662ns 633558 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36059947ns 633563 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36060231ns 633568 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36060685ns 633576 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36060856ns 633579 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36061140ns 633584 1a110850 fd5ff06f jal x0, -44 +36061424ns 633589 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36061708ns 633594 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36062106ns 633601 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36062277ns 633604 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36062731ns 633612 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36062902ns 633615 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36063186ns 633620 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36063470ns 633625 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36063754ns 633630 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36064209ns 633638 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36064379ns 633641 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36064664ns 633646 1a110850 fd5ff06f jal x0, -44 +36064948ns 633651 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36065232ns 633656 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36065630ns 633663 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36065800ns 633666 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36066255ns 633674 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36066425ns 633677 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36066710ns 633682 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36066994ns 633687 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36067278ns 633692 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36067733ns 633700 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36067903ns 633703 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36068187ns 633708 1a110850 fd5ff06f jal x0, -44 +36068471ns 633713 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36068755ns 633718 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36069153ns 633725 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36069324ns 633728 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36069778ns 633736 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36069949ns 633739 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36070233ns 633744 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36070517ns 633749 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36070801ns 633754 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36071256ns 633762 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36071427ns 633765 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36071711ns 633770 1a110850 fd5ff06f jal x0, -44 +36071995ns 633775 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36072279ns 633780 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36072677ns 633787 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36072847ns 633790 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36073302ns 633798 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36073473ns 633801 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36073757ns 633806 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36074041ns 633811 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36074325ns 633816 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36074780ns 633824 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36074950ns 633827 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36075234ns 633832 1a110850 fd5ff06f jal x0, -44 +36075519ns 633837 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36075803ns 633842 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36076200ns 633849 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36076371ns 633852 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36076826ns 633860 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36076996ns 633863 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36077280ns 633868 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36077564ns 633873 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36077849ns 633878 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36078303ns 633886 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36078474ns 633889 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36078758ns 633894 1a110850 fd5ff06f jal x0, -44 +36079042ns 633899 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36079326ns 633904 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36079724ns 633911 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36079895ns 633914 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36080349ns 633922 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36080520ns 633925 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36080804ns 633930 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36081088ns 633935 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36081372ns 633940 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36081827ns 633948 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36081997ns 633951 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36082282ns 633956 1a110850 fd5ff06f jal x0, -44 +36082566ns 633961 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36082850ns 633966 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36083248ns 633973 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36083418ns 633976 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36083873ns 633984 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36084043ns 633987 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36084327ns 633992 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36084612ns 633997 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36084896ns 634002 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36085350ns 634010 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36085521ns 634013 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36085805ns 634018 1a110850 fd5ff06f jal x0, -44 +36086089ns 634023 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36086373ns 634028 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36086771ns 634035 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36086942ns 634038 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36087396ns 634046 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36087567ns 634049 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36087851ns 634054 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36088135ns 634059 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36088419ns 634064 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36088874ns 634072 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36089045ns 634075 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36089329ns 634080 1a110850 fd5ff06f jal x0, -44 +36089613ns 634085 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36089897ns 634090 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36090295ns 634097 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36090465ns 634100 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36090920ns 634108 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36091090ns 634111 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36091375ns 634116 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36091659ns 634121 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36091943ns 634126 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36092398ns 634134 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36092568ns 634137 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36092852ns 634142 1a110850 fd5ff06f jal x0, -44 +36093136ns 634147 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36093421ns 634152 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36093818ns 634159 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36093989ns 634162 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36094444ns 634170 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36094614ns 634173 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36094898ns 634178 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36095182ns 634183 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36095467ns 634188 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36095921ns 634196 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36096092ns 634199 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36096376ns 634204 1a110850 fd5ff06f jal x0, -44 +36096660ns 634209 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36096944ns 634214 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36097342ns 634221 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36097512ns 634224 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36097967ns 634232 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36098138ns 634235 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36098422ns 634240 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36098706ns 634245 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36098990ns 634250 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36099445ns 634258 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36099615ns 634261 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36099899ns 634266 1a110850 fd5ff06f jal x0, -44 +36100184ns 634271 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36100468ns 634276 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36100866ns 634283 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36101036ns 634286 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36101491ns 634294 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36101661ns 634297 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36101945ns 634302 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36102230ns 634307 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36102514ns 634312 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36102968ns 634320 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36103139ns 634323 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36103423ns 634328 1a110850 fd5ff06f jal x0, -44 +36103707ns 634333 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36103991ns 634338 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36104389ns 634345 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36104560ns 634348 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36105014ns 634356 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36105185ns 634359 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36105469ns 634364 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36105753ns 634369 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36106037ns 634374 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36106492ns 634382 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36106662ns 634385 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36106947ns 634390 1a110850 fd5ff06f jal x0, -44 +36107231ns 634395 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36107515ns 634400 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36107913ns 634407 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36108083ns 634410 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36108538ns 634418 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36108708ns 634421 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36108993ns 634426 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36109277ns 634431 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36109561ns 634436 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36110016ns 634444 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36110186ns 634447 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36110470ns 634452 1a110850 fd5ff06f jal x0, -44 +36110754ns 634457 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36111039ns 634462 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36111436ns 634469 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36111607ns 634472 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36112061ns 634480 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36112232ns 634483 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36112516ns 634488 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36112800ns 634493 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36113084ns 634498 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36113539ns 634506 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36113710ns 634509 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36113994ns 634514 1a110850 fd5ff06f jal x0, -44 +36114278ns 634519 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36114562ns 634524 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36114960ns 634531 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36115130ns 634534 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36115585ns 634542 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36115756ns 634545 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36116040ns 634550 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36116324ns 634555 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36116608ns 634560 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36117063ns 634568 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36117233ns 634571 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36117517ns 634576 1a110850 fd5ff06f jal x0, -44 +36117802ns 634581 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36118086ns 634586 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36118483ns 634593 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36118654ns 634596 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36119109ns 634604 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36119279ns 634607 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36119563ns 634612 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36119847ns 634617 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36120132ns 634622 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36120586ns 634630 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36120757ns 634633 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36121041ns 634638 1a110850 fd5ff06f jal x0, -44 +36121325ns 634643 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36121609ns 634648 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36122007ns 634655 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36122178ns 634658 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36122632ns 634666 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36122803ns 634669 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36123087ns 634674 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36123371ns 634679 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36123655ns 634684 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36124110ns 634692 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36124280ns 634695 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36124565ns 634700 1a110850 fd5ff06f jal x0, -44 +36124849ns 634705 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36125133ns 634710 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36125531ns 634717 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36125701ns 634720 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36126156ns 634728 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36126326ns 634731 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36126610ns 634736 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36126895ns 634741 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36127179ns 634746 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36127633ns 634754 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36127804ns 634757 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36128088ns 634762 1a110850 fd5ff06f jal x0, -44 +36128372ns 634767 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36128656ns 634772 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36129054ns 634779 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36129225ns 634782 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36129679ns 634790 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36129850ns 634793 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36130134ns 634798 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36130418ns 634803 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36130702ns 634808 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36131157ns 634816 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36131328ns 634819 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36131612ns 634824 1a110850 fd5ff06f jal x0, -44 +36131896ns 634829 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36132180ns 634834 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36132578ns 634841 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36132748ns 634844 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36133203ns 634852 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36133373ns 634855 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36133658ns 634860 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36133942ns 634865 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36134226ns 634870 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36134681ns 634878 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36134851ns 634881 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36135135ns 634886 1a110850 fd5ff06f jal x0, -44 +36135419ns 634891 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36135704ns 634896 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36136101ns 634903 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36136272ns 634906 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36136727ns 634914 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36136897ns 634917 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36137181ns 634922 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36137465ns 634927 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36137750ns 634932 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36138204ns 634940 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36138375ns 634943 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36138659ns 634948 1a110850 fd5ff06f jal x0, -44 +36138943ns 634953 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36139227ns 634958 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36139625ns 634965 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36139795ns 634968 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36140250ns 634976 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36140421ns 634979 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36140705ns 634984 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36140989ns 634989 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36141273ns 634994 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36141728ns 635002 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36141898ns 635005 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36142182ns 635010 1a110850 fd5ff06f jal x0, -44 +36142467ns 635015 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36142751ns 635020 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36143149ns 635027 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36143319ns 635030 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36143774ns 635038 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36143944ns 635041 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36144228ns 635046 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36144513ns 635051 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36144797ns 635056 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36145251ns 635064 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36145422ns 635067 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36145706ns 635072 1a110850 fd5ff06f jal x0, -44 +36145990ns 635077 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36146274ns 635082 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36146672ns 635089 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36146843ns 635092 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36147297ns 635100 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36147468ns 635103 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36147752ns 635108 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36148036ns 635113 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36148320ns 635118 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36148775ns 635126 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36148945ns 635129 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36149230ns 635134 1a110850 fd5ff06f jal x0, -44 +36149514ns 635139 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36149798ns 635144 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36150196ns 635151 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36150366ns 635154 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36150821ns 635162 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36150991ns 635165 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36151276ns 635170 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36151560ns 635175 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36151844ns 635180 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36152299ns 635188 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36152469ns 635191 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36152753ns 635196 1a110850 fd5ff06f jal x0, -44 +36153037ns 635201 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36153322ns 635206 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36153719ns 635213 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36153890ns 635216 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36154344ns 635224 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36154515ns 635227 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36154799ns 635232 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36155083ns 635237 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36155367ns 635242 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36155822ns 635250 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36155993ns 635253 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36156277ns 635258 1a110850 fd5ff06f jal x0, -44 +36156561ns 635263 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36156845ns 635268 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36157243ns 635275 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36157413ns 635278 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36157868ns 635286 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36158039ns 635289 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36158323ns 635294 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36158607ns 635299 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36158891ns 635304 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36159346ns 635312 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36159516ns 635315 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36159800ns 635320 1a110850 fd5ff06f jal x0, -44 +36160085ns 635325 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36160369ns 635330 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36160767ns 635337 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36160937ns 635340 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36161392ns 635348 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36161562ns 635351 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36161846ns 635356 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36162130ns 635361 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36162415ns 635366 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36162869ns 635374 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36163040ns 635377 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36163324ns 635382 1a110850 fd5ff06f jal x0, -44 +36163608ns 635387 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36163892ns 635392 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36164290ns 635399 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36164461ns 635402 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36164915ns 635410 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36165086ns 635413 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36165370ns 635418 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36165654ns 635423 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36165938ns 635428 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36166393ns 635436 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36166563ns 635439 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36166848ns 635444 1a110850 fd5ff06f jal x0, -44 +36167132ns 635449 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36167416ns 635454 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36167814ns 635461 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36167984ns 635464 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36168439ns 635472 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36168609ns 635475 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36168893ns 635480 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36169178ns 635485 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36169462ns 635490 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36169916ns 635498 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36170087ns 635501 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36170371ns 635506 1a110850 fd5ff06f jal x0, -44 +36170655ns 635511 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36170939ns 635516 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36171337ns 635523 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36171508ns 635526 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36171962ns 635534 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36172133ns 635537 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36172417ns 635542 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36172701ns 635547 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36172985ns 635552 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36173440ns 635560 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36173611ns 635563 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36173895ns 635568 1a110850 fd5ff06f jal x0, -44 +36174179ns 635573 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36174463ns 635578 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36174861ns 635585 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36175031ns 635588 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36175486ns 635596 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36175656ns 635599 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36175941ns 635604 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36176225ns 635609 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36176509ns 635614 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36176964ns 635622 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36177134ns 635625 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36177418ns 635630 1a110850 fd5ff06f jal x0, -44 +36177702ns 635635 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36177987ns 635640 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36178384ns 635647 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36178555ns 635650 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36179010ns 635658 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36179180ns 635661 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36179464ns 635666 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36179748ns 635671 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36180033ns 635676 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36180487ns 635684 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36180658ns 635687 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36180942ns 635692 1a110850 fd5ff06f jal x0, -44 +36181226ns 635697 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36181510ns 635702 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36181908ns 635709 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36182079ns 635712 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36182533ns 635720 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36182704ns 635723 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36182988ns 635728 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36183272ns 635733 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36183556ns 635738 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36184011ns 635746 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36184181ns 635749 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36184465ns 635754 1a110850 fd5ff06f jal x0, -44 +36184750ns 635759 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36185034ns 635764 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36185432ns 635771 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36185602ns 635774 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36186057ns 635782 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36186227ns 635785 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36186511ns 635790 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36186796ns 635795 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36187080ns 635800 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36187534ns 635808 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36187705ns 635811 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36187989ns 635816 1a110850 fd5ff06f jal x0, -44 +36188273ns 635821 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36188557ns 635826 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36188955ns 635833 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36189126ns 635836 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36189580ns 635844 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36189751ns 635847 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36190035ns 635852 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36190319ns 635857 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36190603ns 635862 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36191058ns 635870 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36191228ns 635873 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36191513ns 635878 1a110850 fd5ff06f jal x0, -44 +36191797ns 635883 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36192081ns 635888 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36192479ns 635895 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36192649ns 635898 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36193104ns 635906 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36193274ns 635909 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36193559ns 635914 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36193843ns 635919 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36194127ns 635924 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36194582ns 635932 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36194752ns 635935 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36195036ns 635940 1a110850 fd5ff06f jal x0, -44 +36195320ns 635945 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36195605ns 635950 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36196002ns 635957 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36196173ns 635960 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36196627ns 635968 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36196798ns 635971 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36197082ns 635976 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36197366ns 635981 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36197650ns 635986 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36198105ns 635994 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36198276ns 635997 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36198560ns 636002 1a110850 fd5ff06f jal x0, -44 +36198844ns 636007 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36199128ns 636012 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36199526ns 636019 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36199696ns 636022 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36200151ns 636030 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36200322ns 636033 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36200606ns 636038 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36200890ns 636043 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36201174ns 636048 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36201629ns 636056 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36201799ns 636059 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36202083ns 636064 1a110850 fd5ff06f jal x0, -44 +36202368ns 636069 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36202652ns 636074 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36203050ns 636081 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36203220ns 636084 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36203675ns 636092 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36203845ns 636095 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36204129ns 636100 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36204413ns 636105 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36204698ns 636110 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36205152ns 636118 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36205323ns 636121 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36205607ns 636126 1a110850 fd5ff06f jal x0, -44 +36205891ns 636131 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36206175ns 636136 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36206573ns 636143 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36206744ns 636146 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36207198ns 636154 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36207369ns 636157 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36207653ns 636162 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36207937ns 636167 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36208221ns 636172 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36208676ns 636180 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36208846ns 636183 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36209131ns 636188 1a110850 fd5ff06f jal x0, -44 +36209415ns 636193 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36209699ns 636198 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36210097ns 636205 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36210267ns 636208 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36210722ns 636216 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36210892ns 636219 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36211176ns 636224 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36211461ns 636229 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36211745ns 636234 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36212199ns 636242 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36212370ns 636245 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36212654ns 636250 1a110850 fd5ff06f jal x0, -44 +36212938ns 636255 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36213222ns 636260 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36213620ns 636267 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36213791ns 636270 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36214245ns 636278 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36214416ns 636281 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36214700ns 636286 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36214984ns 636291 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36215268ns 636296 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36215723ns 636304 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36215894ns 636307 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36216178ns 636312 1a110850 fd5ff06f jal x0, -44 +36216462ns 636317 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36216746ns 636322 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36217144ns 636329 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36217314ns 636332 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36217769ns 636340 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36217939ns 636343 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36218224ns 636348 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36218508ns 636353 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36218792ns 636358 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36219247ns 636366 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36219417ns 636369 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36219701ns 636374 1a110850 fd5ff06f jal x0, -44 +36219985ns 636379 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36220270ns 636384 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36220667ns 636391 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36220838ns 636394 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36221293ns 636402 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36221463ns 636405 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36221747ns 636410 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36222031ns 636415 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36222316ns 636420 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36222770ns 636428 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36222941ns 636431 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36223225ns 636436 1a110850 fd5ff06f jal x0, -44 +36223509ns 636441 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36223793ns 636446 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36224191ns 636453 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36224362ns 636456 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36224816ns 636464 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36224987ns 636467 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36225271ns 636472 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36225555ns 636477 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36225839ns 636482 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36226294ns 636490 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36226464ns 636493 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36226748ns 636498 1a110850 fd5ff06f jal x0, -44 +36227033ns 636503 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36227317ns 636508 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36227715ns 636515 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36227885ns 636518 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36228340ns 636526 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36228510ns 636529 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36228794ns 636534 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36229079ns 636539 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36229363ns 636544 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36229817ns 636552 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36229988ns 636555 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36230272ns 636560 1a110850 fd5ff06f jal x0, -44 +36230556ns 636565 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36230840ns 636570 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36231238ns 636577 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36231409ns 636580 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36231863ns 636588 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36232034ns 636591 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36232318ns 636596 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36232602ns 636601 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36232886ns 636606 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36233341ns 636614 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36233511ns 636617 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36233796ns 636622 1a110850 fd5ff06f jal x0, -44 +36234080ns 636627 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36234364ns 636632 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36234762ns 636639 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36234932ns 636642 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36235387ns 636650 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36235557ns 636653 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36235842ns 636658 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36236126ns 636663 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36236410ns 636668 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36236865ns 636676 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36237035ns 636679 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36237319ns 636684 1a110850 fd5ff06f jal x0, -44 +36237603ns 636689 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36237888ns 636694 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36238285ns 636701 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36238456ns 636704 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36238911ns 636712 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36239081ns 636715 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36239365ns 636720 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36239649ns 636725 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36239933ns 636730 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36240388ns 636738 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36240559ns 636741 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36240843ns 636746 1a110850 fd5ff06f jal x0, -44 +36241127ns 636751 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36241411ns 636756 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36241809ns 636763 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36241979ns 636766 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36242434ns 636774 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36242605ns 636777 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36242889ns 636782 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36243173ns 636787 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36243457ns 636792 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36243912ns 636800 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36244082ns 636803 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36244366ns 636808 1a110850 fd5ff06f jal x0, -44 +36244651ns 636813 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36244935ns 636818 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36245333ns 636825 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36245503ns 636828 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36245958ns 636836 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36246128ns 636839 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36246412ns 636844 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36246696ns 636849 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36246981ns 636854 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36247435ns 636862 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36247606ns 636865 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36247890ns 636870 1a110850 fd5ff06f jal x0, -44 +36248174ns 636875 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36248458ns 636880 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36248856ns 636887 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36249027ns 636890 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36249481ns 636898 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36249652ns 636901 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36249936ns 636906 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36250220ns 636911 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36250504ns 636916 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36250959ns 636924 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36251129ns 636927 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36251414ns 636932 1a110850 fd5ff06f jal x0, -44 +36251698ns 636937 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36251982ns 636942 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36252380ns 636949 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36252550ns 636952 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36253005ns 636960 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36253175ns 636963 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36253459ns 636968 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36253744ns 636973 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36254028ns 636978 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36254482ns 636986 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36254653ns 636989 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36254937ns 636994 1a110850 fd5ff06f jal x0, -44 +36255221ns 636999 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36255505ns 637004 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36255903ns 637011 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36256074ns 637014 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36256528ns 637022 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36256699ns 637025 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36256983ns 637030 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36257267ns 637035 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36257551ns 637040 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36258006ns 637048 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36258177ns 637051 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36258461ns 637056 1a110850 fd5ff06f jal x0, -44 +36258745ns 637061 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36259029ns 637066 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36259427ns 637073 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36259597ns 637076 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36260052ns 637084 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36260223ns 637087 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36260507ns 637092 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36260791ns 637097 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36261075ns 637102 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36261530ns 637110 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36261700ns 637113 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36261984ns 637118 1a110850 fd5ff06f jal x0, -44 +36262268ns 637123 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36262553ns 637128 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36262950ns 637135 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36263121ns 637138 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36263576ns 637146 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36263746ns 637149 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36264030ns 637154 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36264314ns 637159 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36264599ns 637164 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36265053ns 637172 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36265224ns 637175 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36265508ns 637180 1a110850 fd5ff06f jal x0, -44 +36265792ns 637185 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36266076ns 637190 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36266474ns 637197 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36266645ns 637200 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36267099ns 637208 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36267270ns 637211 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36267554ns 637216 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36267838ns 637221 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36268122ns 637226 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36268577ns 637234 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36268747ns 637237 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36269031ns 637242 1a110850 fd5ff06f jal x0, -44 +36269316ns 637247 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36269600ns 637252 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36269998ns 637259 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36270168ns 637262 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36270623ns 637270 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36270793ns 637273 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36271077ns 637278 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36271362ns 637283 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36271646ns 637288 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36272100ns 637296 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36272271ns 637299 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36272555ns 637304 1a110850 fd5ff06f jal x0, -44 +36272839ns 637309 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36273123ns 637314 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36273521ns 637321 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36273692ns 637324 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36274146ns 637332 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36274317ns 637335 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36274601ns 637340 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36274885ns 637345 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36275169ns 637350 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36275624ns 637358 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36275794ns 637361 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36276079ns 637366 1a110850 fd5ff06f jal x0, -44 +36276363ns 637371 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36276647ns 637376 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36277045ns 637383 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36277215ns 637386 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36277670ns 637394 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36277840ns 637397 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36278125ns 637402 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36278409ns 637407 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36278693ns 637412 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36279148ns 637420 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36279318ns 637423 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36279602ns 637428 1a110850 fd5ff06f jal x0, -44 +36279886ns 637433 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36280171ns 637438 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36280568ns 637445 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36280739ns 637448 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36281194ns 637456 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36281364ns 637459 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36281648ns 637464 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36281932ns 637469 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36282216ns 637474 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36282671ns 637482 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36282842ns 637485 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36283126ns 637490 1a110850 fd5ff06f jal x0, -44 +36283410ns 637495 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36283694ns 637500 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36284092ns 637507 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36284262ns 637510 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36284717ns 637518 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36284888ns 637521 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36285172ns 637526 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36285456ns 637531 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36285740ns 637536 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36286195ns 637544 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36286365ns 637547 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36286649ns 637552 1a110850 fd5ff06f jal x0, -44 +36286934ns 637557 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36287218ns 637562 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36287616ns 637569 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36287786ns 637572 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36288241ns 637580 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36288411ns 637583 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36288695ns 637588 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36288979ns 637593 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36289264ns 637598 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36289718ns 637606 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36289889ns 637609 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36290173ns 637614 1a110850 fd5ff06f jal x0, -44 +36290457ns 637619 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36290741ns 637624 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36291139ns 637631 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36291310ns 637634 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36291764ns 637642 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36291935ns 637645 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36292219ns 637650 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36292503ns 637655 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36292787ns 637660 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36293242ns 637668 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36293412ns 637671 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36293697ns 637676 1a110850 fd5ff06f jal x0, -44 +36293981ns 637681 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36294265ns 637686 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36294663ns 637693 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36294833ns 637696 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36295288ns 637704 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36295458ns 637707 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36295743ns 637712 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36296027ns 637717 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36296311ns 637722 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36296765ns 637730 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36296936ns 637733 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36297220ns 637738 1a110850 fd5ff06f jal x0, -44 +36297504ns 637743 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36297788ns 637748 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36298186ns 637755 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36298357ns 637758 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36298811ns 637766 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36298982ns 637769 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36299266ns 637774 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36299550ns 637779 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36299834ns 637784 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36300289ns 637792 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36300460ns 637795 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36300744ns 637800 1a110850 fd5ff06f jal x0, -44 +36301028ns 637805 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36301312ns 637810 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36301710ns 637817 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36301880ns 637820 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36302335ns 637828 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36302506ns 637831 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36302790ns 637836 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36303074ns 637841 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36303358ns 637846 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36303813ns 637854 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36303983ns 637857 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36304267ns 637862 1a110850 fd5ff06f jal x0, -44 +36304551ns 637867 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36304836ns 637872 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36305233ns 637879 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36305404ns 637882 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36305859ns 637890 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36306029ns 637893 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36306313ns 637898 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36306597ns 637903 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36306882ns 637908 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36307336ns 637916 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36307507ns 637919 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36307791ns 637924 1a110850 fd5ff06f jal x0, -44 +36308075ns 637929 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36308359ns 637934 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36308757ns 637941 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36308928ns 637944 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36309382ns 637952 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36309553ns 637955 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36309837ns 637960 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36310121ns 637965 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36310405ns 637970 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36310860ns 637978 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36311030ns 637981 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36311314ns 637986 1a110850 fd5ff06f jal x0, -44 +36311599ns 637991 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36311883ns 637996 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36312281ns 638003 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36312451ns 638006 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36312906ns 638014 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36313076ns 638017 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36313360ns 638022 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36313645ns 638027 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36313929ns 638032 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36314383ns 638040 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36314554ns 638043 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36314838ns 638048 1a110850 fd5ff06f jal x0, -44 +36315122ns 638053 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36315406ns 638058 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36315804ns 638065 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36315975ns 638068 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36316429ns 638076 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36316600ns 638079 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36316884ns 638084 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36317168ns 638089 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36317452ns 638094 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36317907ns 638102 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36318077ns 638105 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36318362ns 638110 1a110850 fd5ff06f jal x0, -44 +36318646ns 638115 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36318930ns 638120 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36319328ns 638127 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36319498ns 638130 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36319953ns 638138 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36320123ns 638141 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36320408ns 638146 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36320692ns 638151 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36320976ns 638156 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36321431ns 638164 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36321601ns 638167 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36321885ns 638172 1a110850 fd5ff06f jal x0, -44 +36322169ns 638177 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36322454ns 638182 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36322851ns 638189 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36323022ns 638192 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36323477ns 638200 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36323647ns 638203 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36323931ns 638208 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36324215ns 638213 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36324499ns 638218 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36324954ns 638226 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36325125ns 638229 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36325409ns 638234 1a110850 fd5ff06f jal x0, -44 +36325693ns 638239 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36325977ns 638244 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36326375ns 638251 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36326545ns 638254 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36327000ns 638262 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36327171ns 638265 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36327455ns 638270 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36327739ns 638275 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36328023ns 638280 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36328478ns 638288 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36328648ns 638291 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36328932ns 638296 1a110850 fd5ff06f jal x0, -44 +36329217ns 638301 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36329501ns 638306 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36329899ns 638313 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36330069ns 638316 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36330524ns 638324 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36330694ns 638327 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36330978ns 638332 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36331263ns 638337 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36331547ns 638342 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36332001ns 638350 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36332172ns 638353 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36332456ns 638358 1a110850 fd5ff06f jal x0, -44 +36332740ns 638363 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36333024ns 638368 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36333422ns 638375 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36333593ns 638378 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36334047ns 638386 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36334218ns 638389 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36334502ns 638394 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36334786ns 638399 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36335070ns 638404 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36335525ns 638412 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36335695ns 638415 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36335980ns 638420 1a110850 fd5ff06f jal x0, -44 +36336264ns 638425 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36336548ns 638430 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36336946ns 638437 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36337116ns 638440 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36337571ns 638448 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36337741ns 638451 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36338026ns 638456 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36338310ns 638461 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36338594ns 638466 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36339048ns 638474 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36339219ns 638477 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36339503ns 638482 1a110850 fd5ff06f jal x0, -44 +36339787ns 638487 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36340071ns 638492 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36340469ns 638499 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36340640ns 638502 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36341094ns 638510 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36341265ns 638513 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36341549ns 638518 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36341833ns 638523 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36342117ns 638528 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36342572ns 638536 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36342743ns 638539 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36343027ns 638544 1a110850 fd5ff06f jal x0, -44 +36343311ns 638549 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36343595ns 638554 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36343993ns 638561 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36344163ns 638564 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36344618ns 638572 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36344789ns 638575 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36345073ns 638580 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36345357ns 638585 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36345641ns 638590 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36346096ns 638598 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36346266ns 638601 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36346550ns 638606 1a110850 fd5ff06f jal x0, -44 +36346834ns 638611 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36347119ns 638616 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36347516ns 638623 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36347687ns 638626 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36348142ns 638634 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36348312ns 638637 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36348596ns 638642 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36348880ns 638647 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36349165ns 638652 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36349619ns 638660 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36349790ns 638663 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36350074ns 638668 1a110850 fd5ff06f jal x0, -44 +36350358ns 638673 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36350642ns 638678 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36351040ns 638685 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36351211ns 638688 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36351665ns 638696 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36351836ns 638699 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36352120ns 638704 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36352404ns 638709 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36352688ns 638714 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36353143ns 638722 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36353313ns 638725 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36353597ns 638730 1a110850 fd5ff06f jal x0, -44 +36353882ns 638735 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36354166ns 638740 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36354564ns 638747 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36354734ns 638750 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36355189ns 638758 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36355359ns 638761 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36355643ns 638766 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36355928ns 638771 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36356212ns 638776 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36356666ns 638784 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36356837ns 638787 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36357121ns 638792 1a110850 fd5ff06f jal x0, -44 +36357405ns 638797 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36357689ns 638802 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36358087ns 638809 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36358258ns 638812 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36358712ns 638820 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36358883ns 638823 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36359167ns 638828 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36359451ns 638833 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36359735ns 638838 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36360190ns 638846 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36360360ns 638849 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36360645ns 638854 1a110850 fd5ff06f jal x0, -44 +36360929ns 638859 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36361213ns 638864 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36361611ns 638871 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36361781ns 638874 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36362236ns 638882 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36362406ns 638885 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36362691ns 638890 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36362975ns 638895 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36363259ns 638900 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36363714ns 638908 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36363884ns 638911 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36364168ns 638916 1a110850 fd5ff06f jal x0, -44 +36364452ns 638921 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36364737ns 638926 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36365134ns 638933 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36365305ns 638936 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36365760ns 638944 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36365930ns 638947 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36366214ns 638952 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36366498ns 638957 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36366783ns 638962 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36367237ns 638970 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36367408ns 638973 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36367692ns 638978 1a110850 fd5ff06f jal x0, -44 +36367976ns 638983 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36368260ns 638988 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36368658ns 638995 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36368828ns 638998 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36369283ns 639006 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36369454ns 639009 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36369738ns 639014 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36370022ns 639019 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36370306ns 639024 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36370761ns 639032 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36370931ns 639035 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36371215ns 639040 1a110850 fd5ff06f jal x0, -44 +36371500ns 639045 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36371784ns 639050 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36372182ns 639057 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36372352ns 639060 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36372807ns 639068 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36372977ns 639071 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36373261ns 639076 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36373546ns 639081 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36373830ns 639086 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36374284ns 639094 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36374455ns 639097 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36374739ns 639102 1a110850 fd5ff06f jal x0, -44 +36375023ns 639107 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36375307ns 639112 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36375705ns 639119 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36375876ns 639122 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36376330ns 639130 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36376501ns 639133 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36376785ns 639138 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36377069ns 639143 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36377353ns 639148 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36377808ns 639156 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36377978ns 639159 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36378263ns 639164 1a110850 fd5ff06f jal x0, -44 +36378547ns 639169 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36378831ns 639174 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36379229ns 639181 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36379399ns 639184 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36379854ns 639192 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36380024ns 639195 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36380309ns 639200 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36380593ns 639205 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36380877ns 639210 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36381331ns 639218 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36381502ns 639221 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36381786ns 639226 1a110850 fd5ff06f jal x0, -44 +36382070ns 639231 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36382354ns 639236 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36382752ns 639243 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36382923ns 639246 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36383377ns 639254 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36383548ns 639257 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36383832ns 639262 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36384116ns 639267 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36384400ns 639272 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36384855ns 639280 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36385026ns 639283 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36385310ns 639288 1a110850 fd5ff06f jal x0, -44 +36385594ns 639293 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36385878ns 639298 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36386276ns 639305 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36386446ns 639308 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36386901ns 639316 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36387072ns 639319 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36387356ns 639324 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36387640ns 639329 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36387924ns 639334 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36388379ns 639342 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36388549ns 639345 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36388833ns 639350 1a110850 fd5ff06f jal x0, -44 +36389117ns 639355 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36389402ns 639360 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36389799ns 639367 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36389970ns 639370 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36390425ns 639378 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36390595ns 639381 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36390879ns 639386 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36391163ns 639391 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36391448ns 639396 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36391902ns 639404 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36392073ns 639407 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36392357ns 639412 1a110850 fd5ff06f jal x0, -44 +36392641ns 639417 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36392925ns 639422 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36393323ns 639429 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36393494ns 639432 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36393948ns 639440 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36394119ns 639443 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36394403ns 639448 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36394687ns 639453 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36394971ns 639458 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36395426ns 639466 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36395596ns 639469 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36395880ns 639474 1a110850 fd5ff06f jal x0, -44 +36396165ns 639479 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36396449ns 639484 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36396847ns 639491 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36397017ns 639494 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36397472ns 639502 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36397642ns 639505 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36397926ns 639510 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36398211ns 639515 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36398495ns 639520 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36398949ns 639528 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36399120ns 639531 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36399404ns 639536 1a110850 fd5ff06f jal x0, -44 +36399688ns 639541 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36399972ns 639546 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36400370ns 639553 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36400541ns 639556 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36400995ns 639564 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36401166ns 639567 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36401450ns 639572 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36401734ns 639577 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36402018ns 639582 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36402473ns 639590 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36402643ns 639593 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36402928ns 639598 1a110850 fd5ff06f jal x0, -44 +36403212ns 639603 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36403496ns 639608 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36403894ns 639615 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36404064ns 639618 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36404519ns 639626 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36404689ns 639629 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36404974ns 639634 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36405258ns 639639 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36405542ns 639644 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36405997ns 639652 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36406167ns 639655 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36406451ns 639660 1a110850 fd5ff06f jal x0, -44 +36406735ns 639665 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36407020ns 639670 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36407417ns 639677 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36407588ns 639680 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36408043ns 639688 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36408213ns 639691 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36408497ns 639696 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36408781ns 639701 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36409066ns 639706 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36409520ns 639714 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36409691ns 639717 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36409975ns 639722 1a110850 fd5ff06f jal x0, -44 +36410259ns 639727 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36410543ns 639732 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36410941ns 639739 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36411111ns 639742 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36411566ns 639750 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36411737ns 639753 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36412021ns 639758 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36412305ns 639763 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36412589ns 639768 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36413044ns 639776 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36413214ns 639779 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36413498ns 639784 1a110850 fd5ff06f jal x0, -44 +36413783ns 639789 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36414067ns 639794 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36414465ns 639801 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36414635ns 639804 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36415090ns 639812 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36415260ns 639815 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36415544ns 639820 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36415829ns 639825 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36416113ns 639830 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36416567ns 639838 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36416738ns 639841 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36417022ns 639846 1a110850 fd5ff06f jal x0, -44 +36417306ns 639851 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36417590ns 639856 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36417988ns 639863 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36418159ns 639866 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36418613ns 639874 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36418784ns 639877 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36419068ns 639882 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36419352ns 639887 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36419636ns 639892 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36420091ns 639900 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36420261ns 639903 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36420546ns 639908 1a110850 fd5ff06f jal x0, -44 +36420830ns 639913 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36421114ns 639918 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36421512ns 639925 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36421682ns 639928 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36422137ns 639936 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36422307ns 639939 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36422592ns 639944 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36422876ns 639949 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36423160ns 639954 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36423615ns 639962 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36423785ns 639965 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36424069ns 639970 1a110850 fd5ff06f jal x0, -44 +36424353ns 639975 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36424637ns 639980 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36425035ns 639987 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36425206ns 639990 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36425660ns 639998 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36425831ns 640001 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36426115ns 640006 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36426399ns 640011 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36426683ns 640016 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36427138ns 640024 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36427309ns 640027 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36427593ns 640032 1a110850 fd5ff06f jal x0, -44 +36427877ns 640037 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36428161ns 640042 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36428559ns 640049 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36428729ns 640052 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36429184ns 640060 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36429355ns 640063 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36429639ns 640068 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36429923ns 640073 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36430207ns 640078 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36430662ns 640086 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36430832ns 640089 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36431116ns 640094 1a110850 fd5ff06f jal x0, -44 +36431400ns 640099 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36431685ns 640104 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36432082ns 640111 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36432253ns 640114 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36432708ns 640122 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36432878ns 640125 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36433162ns 640130 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36433446ns 640135 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36433731ns 640140 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36434185ns 640148 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36434356ns 640151 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36434640ns 640156 1a110850 fd5ff06f jal x0, -44 +36434924ns 640161 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36435208ns 640166 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36435606ns 640173 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36435777ns 640176 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36436231ns 640184 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36436402ns 640187 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36436686ns 640192 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36436970ns 640197 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36437254ns 640202 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36437709ns 640210 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36437879ns 640213 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36438163ns 640218 1a110850 fd5ff06f jal x0, -44 +36438448ns 640223 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36438732ns 640228 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36439130ns 640235 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36439300ns 640238 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36439755ns 640246 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36439925ns 640249 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36440209ns 640254 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36440494ns 640259 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36440778ns 640264 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36441232ns 640272 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36441403ns 640275 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36441687ns 640280 1a110850 fd5ff06f jal x0, -44 +36441971ns 640285 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36442255ns 640290 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36442653ns 640297 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36442824ns 640300 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36443278ns 640308 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36443449ns 640311 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36443733ns 640316 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36444017ns 640321 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36444301ns 640326 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36444756ns 640334 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36444927ns 640337 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36445211ns 640342 1a110850 fd5ff06f jal x0, -44 +36445495ns 640347 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36445779ns 640352 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36446177ns 640359 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36446347ns 640362 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36446802ns 640370 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36446972ns 640373 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36447257ns 640378 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36447541ns 640383 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36447825ns 640388 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36448280ns 640396 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36448450ns 640399 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36448734ns 640404 1a110850 fd5ff06f jal x0, -44 +36449018ns 640409 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36449303ns 640414 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36449700ns 640421 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36449871ns 640424 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36450326ns 640432 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36450496ns 640435 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36450780ns 640440 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36451064ns 640445 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36451349ns 640450 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36451803ns 640458 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36451974ns 640461 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36452258ns 640466 1a110850 fd5ff06f jal x0, -44 +36452542ns 640471 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36452826ns 640476 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36453224ns 640483 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36453394ns 640486 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36453849ns 640494 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36454020ns 640497 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36454304ns 640502 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36454588ns 640507 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36454872ns 640512 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36455327ns 640520 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36455497ns 640523 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36455781ns 640528 1a110850 fd5ff06f jal x0, -44 +36456066ns 640533 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36456350ns 640538 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36456748ns 640545 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36456918ns 640548 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36457373ns 640556 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36457543ns 640559 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36457827ns 640564 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36458112ns 640569 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36458396ns 640574 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36458850ns 640582 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36459021ns 640585 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36459305ns 640590 1a110850 fd5ff06f jal x0, -44 +36459589ns 640595 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36459873ns 640600 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36460271ns 640607 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36460442ns 640610 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36460896ns 640618 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36461067ns 640621 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36461351ns 640626 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36461635ns 640631 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36461919ns 640636 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36462374ns 640644 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36462544ns 640647 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36462829ns 640652 1a110850 fd5ff06f jal x0, -44 +36463113ns 640657 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36463397ns 640662 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36463795ns 640669 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36463965ns 640672 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36464420ns 640680 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36464590ns 640683 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36464875ns 640688 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36465159ns 640693 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36465443ns 640698 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36465898ns 640706 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36466068ns 640709 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36466352ns 640714 1a110850 fd5ff06f jal x0, -44 +36466636ns 640719 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36466920ns 640724 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36467318ns 640731 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36467489ns 640734 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36467943ns 640742 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36468114ns 640745 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36468398ns 640750 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36468682ns 640755 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36468966ns 640760 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36469421ns 640768 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36469592ns 640771 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36469876ns 640776 1a110850 fd5ff06f jal x0, -44 +36470160ns 640781 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36470444ns 640786 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36470842ns 640793 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36471012ns 640796 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36471467ns 640804 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36471638ns 640807 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36471922ns 640812 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36472206ns 640817 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36472490ns 640822 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36472945ns 640830 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36473115ns 640833 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36473399ns 640838 1a110850 fd5ff06f jal x0, -44 +36473683ns 640843 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36473968ns 640848 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36474365ns 640855 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36474536ns 640858 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36474991ns 640866 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36475161ns 640869 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36475445ns 640874 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36475729ns 640879 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36476014ns 640884 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36476468ns 640892 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36476639ns 640895 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36476923ns 640900 1a110850 fd5ff06f jal x0, -44 +36477207ns 640905 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36477491ns 640910 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36477889ns 640917 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36478060ns 640920 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36478514ns 640928 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36478685ns 640931 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36478969ns 640936 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36479253ns 640941 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36479537ns 640946 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36479992ns 640954 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36480162ns 640957 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36480447ns 640962 1a110850 fd5ff06f jal x0, -44 +36480731ns 640967 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36481015ns 640972 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36481413ns 640979 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36481583ns 640982 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36482038ns 640990 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36482208ns 640993 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36482492ns 640998 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36482777ns 641003 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36483061ns 641008 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36483515ns 641016 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36483686ns 641019 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36483970ns 641024 1a110850 fd5ff06f jal x0, -44 +36484254ns 641029 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36484538ns 641034 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36484936ns 641041 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36485107ns 641044 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36485561ns 641052 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36485732ns 641055 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36486016ns 641060 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36486300ns 641065 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36486584ns 641070 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36487039ns 641078 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36487210ns 641081 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36487494ns 641086 1a110850 fd5ff06f jal x0, -44 +36487778ns 641091 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36488062ns 641096 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36488460ns 641103 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36488630ns 641106 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36489085ns 641114 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36489255ns 641117 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36489540ns 641122 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36489824ns 641127 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36490108ns 641132 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36490563ns 641140 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36490733ns 641143 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36491017ns 641148 1a110850 fd5ff06f jal x0, -44 +36491301ns 641153 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36491586ns 641158 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36491983ns 641165 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36492154ns 641168 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36492609ns 641176 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36492779ns 641179 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36493063ns 641184 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36493347ns 641189 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36493632ns 641194 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36494086ns 641202 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36494257ns 641205 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36494541ns 641210 1a110850 fd5ff06f jal x0, -44 +36494825ns 641215 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36495109ns 641220 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36495507ns 641227 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36495677ns 641230 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36496132ns 641238 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36496303ns 641241 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36496587ns 641246 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36496871ns 641251 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36497155ns 641256 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36497610ns 641264 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36497780ns 641267 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36498064ns 641272 1a110850 fd5ff06f jal x0, -44 +36498349ns 641277 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36498633ns 641282 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36499031ns 641289 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36499201ns 641292 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36499656ns 641300 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36499826ns 641303 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36500110ns 641308 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36500395ns 641313 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36500679ns 641318 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36501133ns 641326 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36501304ns 641329 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36501588ns 641334 1a110850 fd5ff06f jal x0, -44 +36501872ns 641339 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36502156ns 641344 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36502554ns 641351 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36502725ns 641354 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36503179ns 641362 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36503350ns 641365 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36503634ns 641370 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36503918ns 641375 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36504202ns 641380 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36504657ns 641388 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36504827ns 641391 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36505112ns 641396 1a110850 fd5ff06f jal x0, -44 +36505396ns 641401 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36505680ns 641406 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36506078ns 641413 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36506248ns 641416 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36506703ns 641424 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36506873ns 641427 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36507158ns 641432 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36507442ns 641437 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36507726ns 641442 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36508181ns 641450 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36508351ns 641453 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36508635ns 641458 1a110850 fd5ff06f jal x0, -44 +36508919ns 641463 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36509203ns 641468 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36509601ns 641475 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36509772ns 641478 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36510226ns 641486 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36510397ns 641489 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36510681ns 641494 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36510965ns 641499 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36511249ns 641504 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36511704ns 641512 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36511875ns 641515 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36512159ns 641520 1a110850 fd5ff06f jal x0, -44 +36512443ns 641525 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36512727ns 641530 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36513125ns 641537 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36513295ns 641540 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36513750ns 641548 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36513921ns 641551 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36514205ns 641556 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36514489ns 641561 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36514773ns 641566 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36515228ns 641574 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36515398ns 641577 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36515682ns 641582 1a110850 fd5ff06f jal x0, -44 +36515967ns 641587 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36516251ns 641592 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36516648ns 641599 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36516819ns 641602 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36517274ns 641610 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36517444ns 641613 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36517728ns 641618 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36518012ns 641623 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36518297ns 641628 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36518751ns 641636 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36518922ns 641639 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36519206ns 641644 1a110850 fd5ff06f jal x0, -44 +36519490ns 641649 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36519774ns 641654 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36520172ns 641661 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36520343ns 641664 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36520797ns 641672 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36520968ns 641675 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36521252ns 641680 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36521536ns 641685 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36521820ns 641690 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36522275ns 641698 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36522445ns 641701 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36522730ns 641706 1a110850 fd5ff06f jal x0, -44 +36523014ns 641711 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36523298ns 641716 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36523696ns 641723 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36523866ns 641726 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36524321ns 641734 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36524491ns 641737 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36524775ns 641742 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36525060ns 641747 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36525344ns 641752 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36525798ns 641760 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36525969ns 641763 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36526253ns 641768 1a110850 fd5ff06f jal x0, -44 +36526537ns 641773 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36526821ns 641778 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36527219ns 641785 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36527390ns 641788 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36527844ns 641796 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36528015ns 641799 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36528299ns 641804 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36528583ns 641809 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36528867ns 641814 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36529322ns 641822 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36529493ns 641825 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36529777ns 641830 1a110850 fd5ff06f jal x0, -44 +36530061ns 641835 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36530345ns 641840 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36530743ns 641847 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36530913ns 641850 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36531368ns 641858 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36531538ns 641861 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36531823ns 641866 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36532107ns 641871 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36532391ns 641876 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36532846ns 641884 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36533016ns 641887 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36533300ns 641892 1a110850 fd5ff06f jal x0, -44 +36533584ns 641897 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36533869ns 641902 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36534266ns 641909 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36534437ns 641912 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36534892ns 641920 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36535062ns 641923 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36535346ns 641928 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36535630ns 641933 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36535915ns 641938 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36536369ns 641946 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36536540ns 641949 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36536824ns 641954 1a110850 fd5ff06f jal x0, -44 +36537108ns 641959 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36537392ns 641964 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36537790ns 641971 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36537960ns 641974 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36538415ns 641982 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36538586ns 641985 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36538870ns 641990 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36539154ns 641995 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36539438ns 642000 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36539893ns 642008 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36540063ns 642011 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36540347ns 642016 1a110850 fd5ff06f jal x0, -44 +36540632ns 642021 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36540916ns 642026 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36541314ns 642033 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36541484ns 642036 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36541939ns 642044 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36542109ns 642047 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36542393ns 642052 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36542678ns 642057 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36542962ns 642062 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36543416ns 642070 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36543587ns 642073 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36543871ns 642078 1a110850 fd5ff06f jal x0, -44 +36544155ns 642083 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36544439ns 642088 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36544837ns 642095 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36545008ns 642098 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36545462ns 642106 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36545633ns 642109 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36545917ns 642114 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36546201ns 642119 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36546485ns 642124 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36546940ns 642132 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36547110ns 642135 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36547395ns 642140 1a110850 fd5ff06f jal x0, -44 +36547679ns 642145 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36547963ns 642150 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36548361ns 642157 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36548531ns 642160 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36548986ns 642168 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36549156ns 642171 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36549441ns 642176 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36549725ns 642181 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36550009ns 642186 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36550464ns 642194 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36550634ns 642197 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36550918ns 642202 1a110850 fd5ff06f jal x0, -44 +36551202ns 642207 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36551487ns 642212 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36551884ns 642219 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36552055ns 642222 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36552509ns 642230 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36552680ns 642233 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36552964ns 642238 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36553248ns 642243 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36553532ns 642248 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36553987ns 642256 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36554158ns 642259 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36554442ns 642264 1a110850 fd5ff06f jal x0, -44 +36554726ns 642269 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36555010ns 642274 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36555408ns 642281 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36555578ns 642284 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36556033ns 642292 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36556204ns 642295 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36556488ns 642300 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36556772ns 642305 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36557056ns 642310 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36557511ns 642318 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36557681ns 642321 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36557965ns 642326 1a110850 fd5ff06f jal x0, -44 +36558250ns 642331 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36558534ns 642336 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36558931ns 642343 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36559102ns 642346 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36559557ns 642354 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36559727ns 642357 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36560011ns 642362 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36560295ns 642367 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36560580ns 642372 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36561034ns 642380 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36561205ns 642383 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36561489ns 642388 1a110850 fd5ff06f jal x0, -44 +36561773ns 642393 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36562057ns 642398 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36562455ns 642405 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36562626ns 642408 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36563080ns 642416 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36563251ns 642419 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36563535ns 642424 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36563819ns 642429 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36564103ns 642434 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36564558ns 642442 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36564728ns 642445 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36565013ns 642450 1a110850 fd5ff06f jal x0, -44 +36565297ns 642455 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36565581ns 642460 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36565979ns 642467 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36566149ns 642470 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36566604ns 642478 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36566774ns 642481 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36567058ns 642486 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36567343ns 642491 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36567627ns 642496 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36568081ns 642504 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36568252ns 642507 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36568536ns 642512 1a110850 fd5ff06f jal x0, -44 +36568820ns 642517 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36569104ns 642522 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36569502ns 642529 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36569673ns 642532 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36570127ns 642540 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36570298ns 642543 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36570582ns 642548 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36570866ns 642553 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36571150ns 642558 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36571605ns 642566 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36571776ns 642569 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36572060ns 642574 1a110850 fd5ff06f jal x0, -44 +36572344ns 642579 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36572628ns 642584 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36573026ns 642591 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36573196ns 642594 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36573651ns 642602 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36573821ns 642605 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36574106ns 642610 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36574390ns 642615 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36574674ns 642620 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36575129ns 642628 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36575299ns 642631 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36575583ns 642636 1a110850 fd5ff06f jal x0, -44 +36575867ns 642641 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36576152ns 642646 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36576549ns 642653 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36576720ns 642656 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36577175ns 642664 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36577345ns 642667 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36577629ns 642672 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36577913ns 642677 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36578198ns 642682 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36578652ns 642690 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36578823ns 642693 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36579107ns 642698 1a110850 fd5ff06f jal x0, -44 +36579391ns 642703 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36579675ns 642708 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36580073ns 642715 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36580243ns 642718 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36580698ns 642726 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36580869ns 642729 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36581153ns 642734 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36581437ns 642739 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36581721ns 642744 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36582176ns 642752 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36582346ns 642755 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36582630ns 642760 1a110850 fd5ff06f jal x0, -44 +36582915ns 642765 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36583199ns 642770 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36583597ns 642777 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36583767ns 642780 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36584222ns 642788 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36584392ns 642791 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36584676ns 642796 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36584961ns 642801 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36585245ns 642806 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36585699ns 642814 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36585870ns 642817 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36586154ns 642822 1a110850 fd5ff06f jal x0, -44 +36586438ns 642827 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36586722ns 642832 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36587120ns 642839 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36587291ns 642842 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36587745ns 642850 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36587916ns 642853 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36588200ns 642858 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36588484ns 642863 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36588768ns 642868 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36589223ns 642876 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36589393ns 642879 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36589678ns 642884 1a110850 fd5ff06f jal x0, -44 +36589962ns 642889 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36590246ns 642894 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36590644ns 642901 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36590814ns 642904 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36591269ns 642912 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36591439ns 642915 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36591724ns 642920 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36592008ns 642925 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36592292ns 642930 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36592747ns 642938 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36592917ns 642941 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36593201ns 642946 1a110850 fd5ff06f jal x0, -44 +36593485ns 642951 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36593770ns 642956 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36594167ns 642963 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36594338ns 642966 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36594792ns 642974 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36594963ns 642977 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36595247ns 642982 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36595531ns 642987 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36595815ns 642992 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36596270ns 643000 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36596441ns 643003 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36596725ns 643008 1a110850 fd5ff06f jal x0, -44 +36597009ns 643013 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36597293ns 643018 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36597691ns 643025 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36597861ns 643028 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36598316ns 643036 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36598487ns 643039 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36598771ns 643044 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36599055ns 643049 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36599339ns 643054 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36599794ns 643062 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36599964ns 643065 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36600248ns 643070 1a110850 fd5ff06f jal x0, -44 +36600533ns 643075 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36600817ns 643080 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36601215ns 643087 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36601385ns 643090 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36601840ns 643098 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36602010ns 643101 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36602294ns 643106 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36602578ns 643111 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36602863ns 643116 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36603317ns 643124 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36603488ns 643127 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36603772ns 643132 1a110850 fd5ff06f jal x0, -44 +36604056ns 643137 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36604340ns 643142 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36604738ns 643149 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36604909ns 643152 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36605363ns 643160 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36605534ns 643163 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36605818ns 643168 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36606102ns 643173 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36606386ns 643178 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36606841ns 643186 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36607011ns 643189 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36607296ns 643194 1a110850 fd5ff06f jal x0, -44 +36607580ns 643199 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36607864ns 643204 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36608262ns 643211 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36608432ns 643214 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36608887ns 643222 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36609057ns 643225 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36609341ns 643230 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36609626ns 643235 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36609910ns 643240 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36610364ns 643248 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36610535ns 643251 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36610819ns 643256 1a110850 fd5ff06f jal x0, -44 +36611103ns 643261 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36611387ns 643266 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36611785ns 643273 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36611956ns 643276 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36612410ns 643284 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36612581ns 643287 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36612865ns 643292 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36613149ns 643297 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36613433ns 643302 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36613888ns 643310 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36614059ns 643313 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36614343ns 643318 1a110850 fd5ff06f jal x0, -44 +36614627ns 643323 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36614911ns 643328 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36615309ns 643335 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36615479ns 643338 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36615934ns 643346 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36616104ns 643349 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36616389ns 643354 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36616673ns 643359 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36616957ns 643364 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36617412ns 643372 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36617582ns 643375 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36617866ns 643380 1a110850 fd5ff06f jal x0, -44 +36618150ns 643385 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36618435ns 643390 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36618832ns 643397 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36619003ns 643400 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36619458ns 643408 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36619628ns 643411 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36619912ns 643416 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36620196ns 643421 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36620481ns 643426 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36620935ns 643434 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36621106ns 643437 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36621390ns 643442 1a110850 fd5ff06f jal x0, -44 +36621674ns 643447 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36621958ns 643452 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36622356ns 643459 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36622527ns 643462 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36622981ns 643470 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36623152ns 643473 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36623436ns 643478 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36623720ns 643483 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36624004ns 643488 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36624459ns 643496 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36624629ns 643499 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36624913ns 643504 1a110850 fd5ff06f jal x0, -44 +36625198ns 643509 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36625482ns 643514 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36625880ns 643521 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36626050ns 643524 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36626505ns 643532 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36626675ns 643535 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36626959ns 643540 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36627244ns 643545 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36627528ns 643550 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36627982ns 643558 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36628153ns 643561 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36628437ns 643566 1a110850 fd5ff06f jal x0, -44 +36628721ns 643571 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36629005ns 643576 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36629403ns 643583 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36629574ns 643586 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36630028ns 643594 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36630199ns 643597 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36630483ns 643602 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36630767ns 643607 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36631051ns 643612 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36631506ns 643620 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36631676ns 643623 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36631961ns 643628 1a110850 fd5ff06f jal x0, -44 +36632245ns 643633 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36632529ns 643638 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36632927ns 643645 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36633097ns 643648 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36633552ns 643656 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36633722ns 643659 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36634007ns 643664 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36634291ns 643669 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36634575ns 643674 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36635030ns 643682 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36635200ns 643685 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36635484ns 643690 1a110850 fd5ff06f jal x0, -44 +36635768ns 643695 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36636053ns 643700 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36636450ns 643707 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36636621ns 643710 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36637075ns 643718 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36637246ns 643721 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36637530ns 643726 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36637814ns 643731 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36638098ns 643736 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36638553ns 643744 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36638724ns 643747 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36639008ns 643752 1a110850 fd5ff06f jal x0, -44 +36639292ns 643757 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36639576ns 643762 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36639974ns 643769 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36640144ns 643772 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36640599ns 643780 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36640770ns 643783 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36641054ns 643788 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36641338ns 643793 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36641622ns 643798 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36642077ns 643806 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36642247ns 643809 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36642531ns 643814 1a110850 fd5ff06f jal x0, -44 +36642816ns 643819 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36643100ns 643824 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36643498ns 643831 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36643668ns 643834 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36644123ns 643842 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36644293ns 643845 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36644577ns 643850 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36644861ns 643855 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36645146ns 643860 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36645600ns 643868 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36645771ns 643871 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36646055ns 643876 1a110850 fd5ff06f jal x0, -44 +36646339ns 643881 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36646623ns 643886 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36647021ns 643893 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36647192ns 643896 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36647646ns 643904 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36647817ns 643907 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36648101ns 643912 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36648385ns 643917 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36648669ns 643922 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36649124ns 643930 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36649294ns 643933 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36649579ns 643938 1a110850 fd5ff06f jal x0, -44 +36649863ns 643943 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36650147ns 643948 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36650545ns 643955 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36650715ns 643958 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36651170ns 643966 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36651340ns 643969 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36651624ns 643974 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36651909ns 643979 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36652193ns 643984 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36652647ns 643992 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36652818ns 643995 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36653102ns 644000 1a110850 fd5ff06f jal x0, -44 +36653386ns 644005 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36653670ns 644010 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36654068ns 644017 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36654239ns 644020 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36654693ns 644028 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36654864ns 644031 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36655148ns 644036 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36655432ns 644041 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36655716ns 644046 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36656171ns 644054 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36656342ns 644057 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36656626ns 644062 1a110850 fd5ff06f jal x0, -44 +36656910ns 644067 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36657194ns 644072 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36657592ns 644079 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36657762ns 644082 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36658217ns 644090 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36658387ns 644093 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36658672ns 644098 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36658956ns 644103 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36659240ns 644108 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36659695ns 644116 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36659865ns 644119 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36660149ns 644124 1a110850 fd5ff06f jal x0, -44 +36660433ns 644129 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36660718ns 644134 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36661115ns 644141 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36661286ns 644144 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36661741ns 644152 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36661911ns 644155 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36662195ns 644160 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36662479ns 644165 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36662764ns 644170 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36663218ns 644178 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36663389ns 644181 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36663673ns 644186 1a110850 fd5ff06f jal x0, -44 +36663957ns 644191 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36664241ns 644196 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36664639ns 644203 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36664810ns 644206 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36665264ns 644214 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36665435ns 644217 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36665719ns 644222 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36666003ns 644227 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36666287ns 644232 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36666742ns 644240 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36666912ns 644243 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36667196ns 644248 1a110850 fd5ff06f jal x0, -44 +36667481ns 644253 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36667765ns 644258 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36668163ns 644265 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36668333ns 644268 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36668788ns 644276 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36668958ns 644279 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36669242ns 644284 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36669527ns 644289 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36669811ns 644294 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36670265ns 644302 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36670436ns 644305 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36670720ns 644310 1a110850 fd5ff06f jal x0, -44 +36671004ns 644315 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36671288ns 644320 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36671686ns 644327 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36671857ns 644330 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36672311ns 644338 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36672482ns 644341 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36672766ns 644346 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36673050ns 644351 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36673334ns 644356 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36673789ns 644364 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36673959ns 644367 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36674244ns 644372 1a110850 fd5ff06f jal x0, -44 +36674528ns 644377 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36674812ns 644382 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36675210ns 644389 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36675380ns 644392 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36675835ns 644400 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36676005ns 644403 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36676290ns 644408 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36676574ns 644413 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36676858ns 644418 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36677313ns 644426 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36677483ns 644429 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36677767ns 644434 1a110850 fd5ff06f jal x0, -44 +36678051ns 644439 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36678336ns 644444 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36678733ns 644451 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36678904ns 644454 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36679359ns 644462 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36679529ns 644465 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36679813ns 644470 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36680097ns 644475 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36680381ns 644480 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36680836ns 644488 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36681007ns 644491 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36681291ns 644496 1a110850 fd5ff06f jal x0, -44 +36681575ns 644501 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36681859ns 644506 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36682257ns 644513 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36682427ns 644516 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36682882ns 644524 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36683053ns 644527 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36683337ns 644532 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36683621ns 644537 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36683905ns 644542 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36684360ns 644550 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36684530ns 644553 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36684814ns 644558 1a110850 fd5ff06f jal x0, -44 +36685099ns 644563 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36685383ns 644568 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36685781ns 644575 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36685951ns 644578 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36686406ns 644586 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36686576ns 644589 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36686860ns 644594 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36687144ns 644599 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36687429ns 644604 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36687883ns 644612 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36688054ns 644615 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36688338ns 644620 1a110850 fd5ff06f jal x0, -44 +36688622ns 644625 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36688906ns 644630 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36689304ns 644637 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36689475ns 644640 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36689929ns 644648 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36690100ns 644651 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36690384ns 644656 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36690668ns 644661 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36690952ns 644666 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36691407ns 644674 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36691577ns 644677 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36691862ns 644682 1a110850 fd5ff06f jal x0, -44 +36692146ns 644687 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36692430ns 644692 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36692828ns 644699 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36692998ns 644702 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36693453ns 644710 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36693623ns 644713 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36693907ns 644718 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36694192ns 644723 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36694476ns 644728 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36694930ns 644736 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36695101ns 644739 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36695385ns 644744 1a110850 fd5ff06f jal x0, -44 +36695669ns 644749 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36695953ns 644754 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36696351ns 644761 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36696522ns 644764 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36696976ns 644772 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36697147ns 644775 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36697431ns 644780 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36697715ns 644785 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36697999ns 644790 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36698454ns 644798 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36698625ns 644801 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36698909ns 644806 1a110850 fd5ff06f jal x0, -44 +36699193ns 644811 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36699477ns 644816 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36699875ns 644823 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36700045ns 644826 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36700500ns 644834 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36700671ns 644837 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36700955ns 644842 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36701239ns 644847 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36701523ns 644852 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36701978ns 644860 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36702148ns 644863 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36702432ns 644868 1a110850 fd5ff06f jal x0, -44 +36702716ns 644873 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36703001ns 644878 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36703398ns 644885 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36703569ns 644888 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36704024ns 644896 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36704194ns 644899 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36704478ns 644904 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36704762ns 644909 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36705047ns 644914 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36705501ns 644922 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36705672ns 644925 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36705956ns 644930 1a110850 fd5ff06f jal x0, -44 +36706240ns 644935 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36706524ns 644940 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36706922ns 644947 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36707093ns 644950 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36707547ns 644958 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36707718ns 644961 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36708002ns 644966 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36708286ns 644971 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36708570ns 644976 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36709025ns 644984 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36709195ns 644987 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36709479ns 644992 1a110850 fd5ff06f jal x0, -44 +36709764ns 644997 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36710048ns 645002 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36710446ns 645009 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36710616ns 645012 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36711071ns 645020 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36711241ns 645023 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36711525ns 645028 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36711810ns 645033 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36712094ns 645038 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36712548ns 645046 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36712719ns 645049 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36713003ns 645054 1a110850 fd5ff06f jal x0, -44 +36713287ns 645059 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36713571ns 645064 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36713969ns 645071 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36714140ns 645074 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36714594ns 645082 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36714765ns 645085 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36715049ns 645090 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36715333ns 645095 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36715617ns 645100 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36716072ns 645108 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36716242ns 645111 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36716527ns 645116 1a110850 fd5ff06f jal x0, -44 +36716811ns 645121 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36717095ns 645126 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36717493ns 645133 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36717663ns 645136 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36718118ns 645144 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36718288ns 645147 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36718573ns 645152 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36718857ns 645157 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36719141ns 645162 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36719596ns 645170 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36719766ns 645173 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36720050ns 645178 1a110850 fd5ff06f jal x0, -44 +36720334ns 645183 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36720619ns 645188 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36721016ns 645195 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36721187ns 645198 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36721642ns 645206 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36721812ns 645209 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36722096ns 645214 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36722380ns 645219 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36722664ns 645224 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36723119ns 645232 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36723290ns 645235 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36723574ns 645240 1a110850 fd5ff06f jal x0, -44 +36723858ns 645245 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36724142ns 645250 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36724540ns 645257 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36724710ns 645260 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36725165ns 645268 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36725336ns 645271 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36725620ns 645276 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36725904ns 645281 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36726188ns 645286 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36726643ns 645294 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36726813ns 645297 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36727097ns 645302 1a110850 fd5ff06f jal x0, -44 +36727382ns 645307 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36727666ns 645312 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36728064ns 645319 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36728234ns 645322 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36728689ns 645330 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36728859ns 645333 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36729143ns 645338 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36729427ns 645343 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36729712ns 645348 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36730166ns 645356 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36730337ns 645359 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36730621ns 645364 1a110850 fd5ff06f jal x0, -44 +36730905ns 645369 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36731189ns 645374 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36731587ns 645381 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36731758ns 645384 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36732212ns 645392 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36732383ns 645395 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36732667ns 645400 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36732951ns 645405 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36733235ns 645410 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36733690ns 645418 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36733860ns 645421 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36734145ns 645426 1a110850 fd5ff06f jal x0, -44 +36734429ns 645431 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36734713ns 645436 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36735111ns 645443 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36735281ns 645446 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36735736ns 645454 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36735906ns 645457 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36736191ns 645462 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36736475ns 645467 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36736759ns 645472 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36737213ns 645480 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36737384ns 645483 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36737668ns 645488 1a110850 fd5ff06f jal x0, -44 +36737952ns 645493 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36738236ns 645498 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36738634ns 645505 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36738805ns 645508 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36739259ns 645516 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36739430ns 645519 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36739714ns 645524 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36739998ns 645529 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36740282ns 645534 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36740737ns 645542 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36740908ns 645545 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36741192ns 645550 1a110850 fd5ff06f jal x0, -44 +36741476ns 645555 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36741760ns 645560 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36742158ns 645567 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36742328ns 645570 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36742783ns 645578 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36742954ns 645581 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36743238ns 645586 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36743522ns 645591 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36743806ns 645596 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36744261ns 645604 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36744431ns 645607 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36744715ns 645612 1a110850 fd5ff06f jal x0, -44 +36744999ns 645617 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36745284ns 645622 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36745681ns 645629 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36745852ns 645632 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36746307ns 645640 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36746477ns 645643 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36746761ns 645648 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36747045ns 645653 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36747330ns 645658 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36747784ns 645666 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36747955ns 645669 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36748239ns 645674 1a110850 fd5ff06f jal x0, -44 +36748523ns 645679 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36748807ns 645684 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36749205ns 645691 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36749376ns 645694 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36749830ns 645702 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36750001ns 645705 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36750285ns 645710 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36750569ns 645715 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36750853ns 645720 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36751308ns 645728 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36751478ns 645731 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36751762ns 645736 1a110850 fd5ff06f jal x0, -44 +36752047ns 645741 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36752331ns 645746 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36752729ns 645753 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36752899ns 645756 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36753354ns 645764 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36753524ns 645767 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36753808ns 645772 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36754093ns 645777 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36754377ns 645782 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36754831ns 645790 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36755002ns 645793 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36755286ns 645798 1a110850 fd5ff06f jal x0, -44 +36755570ns 645803 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36755854ns 645808 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36756252ns 645815 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36756423ns 645818 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36756877ns 645826 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36757048ns 645829 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36757332ns 645834 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36757616ns 645839 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36757900ns 645844 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36758355ns 645852 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36758525ns 645855 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36758810ns 645860 1a110850 fd5ff06f jal x0, -44 +36759094ns 645865 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36759378ns 645870 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36759776ns 645877 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36759946ns 645880 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36760401ns 645888 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36760571ns 645891 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36760856ns 645896 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36761140ns 645901 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36761424ns 645906 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36761879ns 645914 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36762049ns 645917 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36762333ns 645922 1a110850 fd5ff06f jal x0, -44 +36762617ns 645927 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36762902ns 645932 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36763299ns 645939 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36763470ns 645942 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36763925ns 645950 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36764095ns 645953 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36764379ns 645958 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36764663ns 645963 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36764947ns 645968 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36765402ns 645976 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36765573ns 645979 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36765857ns 645984 1a110850 fd5ff06f jal x0, -44 +36766141ns 645989 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36766425ns 645994 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36766823ns 646001 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36766993ns 646004 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36767448ns 646012 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36767619ns 646015 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36767903ns 646020 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36768187ns 646025 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36768471ns 646030 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36768926ns 646038 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36769096ns 646041 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36769380ns 646046 1a110850 fd5ff06f jal x0, -44 +36769665ns 646051 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36769949ns 646056 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36770347ns 646063 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36770517ns 646066 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36770972ns 646074 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36771142ns 646077 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36771426ns 646082 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36771711ns 646087 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36771995ns 646092 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36772449ns 646100 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36772620ns 646103 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36772904ns 646108 1a110850 fd5ff06f jal x0, -44 +36773188ns 646113 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36773472ns 646118 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36773870ns 646125 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36774041ns 646128 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36774495ns 646136 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36774666ns 646139 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36774950ns 646144 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36775234ns 646149 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36775518ns 646154 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36775973ns 646162 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36776143ns 646165 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36776428ns 646170 1a110850 fd5ff06f jal x0, -44 +36776712ns 646175 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36776996ns 646180 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36777394ns 646187 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36777564ns 646190 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36778019ns 646198 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36778189ns 646201 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36778474ns 646206 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36778758ns 646211 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36779042ns 646216 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36779496ns 646224 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36779667ns 646227 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36779951ns 646232 1a110850 fd5ff06f jal x0, -44 +36780235ns 646237 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36780519ns 646242 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36780917ns 646249 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36781088ns 646252 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36781542ns 646260 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36781713ns 646263 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36781997ns 646268 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36782281ns 646273 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36782565ns 646278 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36783020ns 646286 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36783191ns 646289 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36783475ns 646294 1a110850 fd5ff06f jal x0, -44 +36783759ns 646299 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36784043ns 646304 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36784441ns 646311 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36784611ns 646314 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36785066ns 646322 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36785237ns 646325 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36785521ns 646330 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36785805ns 646335 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36786089ns 646340 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36786544ns 646348 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36786714ns 646351 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36786998ns 646356 1a110850 fd5ff06f jal x0, -44 +36787282ns 646361 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36787567ns 646366 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36787964ns 646373 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36788135ns 646376 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36788590ns 646384 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36788760ns 646387 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36789044ns 646392 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36789328ns 646397 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36789613ns 646402 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36790067ns 646410 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36790238ns 646413 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36790522ns 646418 1a110850 fd5ff06f jal x0, -44 +36790806ns 646423 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36791090ns 646428 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36791488ns 646435 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36791659ns 646438 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36792113ns 646446 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36792284ns 646449 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36792568ns 646454 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36792852ns 646459 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36793136ns 646464 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36793591ns 646472 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36793761ns 646475 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36794045ns 646480 1a110850 fd5ff06f jal x0, -44 +36794330ns 646485 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36794614ns 646490 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36795012ns 646497 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36795182ns 646500 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36795637ns 646508 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36795807ns 646511 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36796091ns 646516 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36796376ns 646521 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36796660ns 646526 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36797114ns 646534 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36797285ns 646537 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36797569ns 646542 1a110850 fd5ff06f jal x0, -44 +36797853ns 646547 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36798137ns 646552 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36798535ns 646559 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36798706ns 646562 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36799160ns 646570 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36799331ns 646573 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36799615ns 646578 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36799899ns 646583 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36800183ns 646588 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36800638ns 646596 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36800808ns 646599 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36801093ns 646604 1a110850 fd5ff06f jal x0, -44 +36801377ns 646609 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36801661ns 646614 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36802059ns 646621 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36802229ns 646624 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36802684ns 646632 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36802854ns 646635 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36803139ns 646640 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36803423ns 646645 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36803707ns 646650 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36804162ns 646658 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36804332ns 646661 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36804616ns 646666 1a110850 fd5ff06f jal x0, -44 +36804900ns 646671 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36805185ns 646676 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36805582ns 646683 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36805753ns 646686 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36806208ns 646694 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36806378ns 646697 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36806662ns 646702 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36806946ns 646707 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36807231ns 646712 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36807685ns 646720 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36807856ns 646723 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36808140ns 646728 1a110850 fd5ff06f jal x0, -44 +36808424ns 646733 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36808708ns 646738 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36809106ns 646745 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36809276ns 646748 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36809731ns 646756 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36809902ns 646759 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36810186ns 646764 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36810470ns 646769 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36810754ns 646774 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36811209ns 646782 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36811379ns 646785 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36811663ns 646790 1a110850 fd5ff06f jal x0, -44 +36811948ns 646795 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36812232ns 646800 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36812630ns 646807 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36812800ns 646810 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36813255ns 646818 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36813425ns 646821 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36813709ns 646826 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36813994ns 646831 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36814278ns 646836 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36814732ns 646844 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36814903ns 646847 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36815187ns 646852 1a110850 fd5ff06f jal x0, -44 +36815471ns 646857 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36815755ns 646862 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36816153ns 646869 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36816324ns 646872 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36816778ns 646880 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36816949ns 646883 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36817233ns 646888 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36817517ns 646893 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36817801ns 646898 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36818256ns 646906 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36818426ns 646909 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36818711ns 646914 1a110850 fd5ff06f jal x0, -44 +36818995ns 646919 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36819279ns 646924 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36819677ns 646931 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36819847ns 646934 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36820302ns 646942 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36820472ns 646945 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36820757ns 646950 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36821041ns 646955 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36821325ns 646960 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36821779ns 646968 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36821950ns 646971 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36822234ns 646976 1a110850 fd5ff06f jal x0, -44 +36822518ns 646981 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36822802ns 646986 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36823200ns 646993 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36823371ns 646996 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36823825ns 647004 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36823996ns 647007 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36824280ns 647012 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36824564ns 647017 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36824848ns 647022 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36825303ns 647030 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36825474ns 647033 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36825758ns 647038 1a110850 fd5ff06f jal x0, -44 +36826042ns 647043 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36826326ns 647048 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36826724ns 647055 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36826894ns 647058 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36827349ns 647066 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36827520ns 647069 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36827804ns 647074 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36828088ns 647079 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36828372ns 647084 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36828827ns 647092 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36828997ns 647095 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36829281ns 647100 1a110850 fd5ff06f jal x0, -44 +36829565ns 647105 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36829850ns 647110 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36830247ns 647117 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36830418ns 647120 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36830873ns 647128 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36831043ns 647131 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36831327ns 647136 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36831611ns 647141 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36831896ns 647146 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36832350ns 647154 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36832521ns 647157 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36832805ns 647162 1a110850 fd5ff06f jal x0, -44 +36833089ns 647167 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36833373ns 647172 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36833771ns 647179 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36833942ns 647182 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36834396ns 647190 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36834567ns 647193 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36834851ns 647198 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36835135ns 647203 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36835419ns 647208 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36835874ns 647216 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36836044ns 647219 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36836328ns 647224 1a110850 fd5ff06f jal x0, -44 +36836613ns 647229 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36836897ns 647234 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36837295ns 647241 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36837465ns 647244 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36837920ns 647252 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36838090ns 647255 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36838374ns 647260 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36838659ns 647265 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36838943ns 647270 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36839397ns 647278 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36839568ns 647281 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36839852ns 647286 1a110850 fd5ff06f jal x0, -44 +36840136ns 647291 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36840420ns 647296 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36840818ns 647303 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36840989ns 647306 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36841443ns 647314 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36841614ns 647317 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36841898ns 647322 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36842182ns 647327 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36842466ns 647332 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36842921ns 647340 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36843091ns 647343 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36843376ns 647348 1a110850 fd5ff06f jal x0, -44 +36843660ns 647353 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36843944ns 647358 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36844342ns 647365 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36844512ns 647368 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36844967ns 647376 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36845137ns 647379 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36845422ns 647384 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36845706ns 647389 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36845990ns 647394 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36846445ns 647402 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36846615ns 647405 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36846899ns 647410 1a110850 fd5ff06f jal x0, -44 +36847183ns 647415 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36847468ns 647420 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36847865ns 647427 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36848036ns 647430 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36848491ns 647438 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36848661ns 647441 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36848945ns 647446 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36849229ns 647451 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36849514ns 647456 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36849968ns 647464 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36850139ns 647467 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36850423ns 647472 1a110850 fd5ff06f jal x0, -44 +36850707ns 647477 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36850991ns 647482 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36851389ns 647489 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36851559ns 647492 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36852014ns 647500 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36852185ns 647503 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36852469ns 647508 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36852753ns 647513 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36853037ns 647518 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36853492ns 647526 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36853662ns 647529 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36853946ns 647534 1a110850 fd5ff06f jal x0, -44 +36854231ns 647539 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36854515ns 647544 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36854913ns 647551 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36855083ns 647554 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36855538ns 647562 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36855708ns 647565 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36855992ns 647570 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36856277ns 647575 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36856561ns 647580 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36857015ns 647588 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36857186ns 647591 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36857470ns 647596 1a110850 fd5ff06f jal x0, -44 +36857754ns 647601 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36858038ns 647606 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36858436ns 647613 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36858607ns 647616 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36859061ns 647624 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36859232ns 647627 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36859516ns 647632 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36859800ns 647637 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36860084ns 647642 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36860539ns 647650 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36860709ns 647653 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36860994ns 647658 1a110850 fd5ff06f jal x0, -44 +36861278ns 647663 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36861562ns 647668 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36861960ns 647675 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36862130ns 647678 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36862585ns 647686 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36862755ns 647689 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36863040ns 647694 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36863324ns 647699 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36863608ns 647704 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36864063ns 647712 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36864233ns 647715 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36864517ns 647720 1a110850 fd5ff06f jal x0, -44 +36864801ns 647725 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36865085ns 647730 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36865483ns 647737 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36865654ns 647740 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36866108ns 647748 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36866279ns 647751 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36866563ns 647756 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36866847ns 647761 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36867131ns 647766 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36867586ns 647774 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36867757ns 647777 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36868041ns 647782 1a110850 fd5ff06f jal x0, -44 +36868325ns 647787 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36868609ns 647792 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36869007ns 647799 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36869177ns 647802 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36869632ns 647810 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36869803ns 647813 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36870087ns 647818 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36870371ns 647823 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36870655ns 647828 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36871110ns 647836 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36871280ns 647839 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36871564ns 647844 1a110850 fd5ff06f jal x0, -44 +36871848ns 647849 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36872133ns 647854 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36872530ns 647861 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36872701ns 647864 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36873156ns 647872 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36873326ns 647875 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36873610ns 647880 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36873894ns 647885 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36874179ns 647890 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36874633ns 647898 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36874804ns 647901 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36875088ns 647906 1a110850 fd5ff06f jal x0, -44 +36875372ns 647911 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36875656ns 647916 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36876054ns 647923 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36876225ns 647926 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36876679ns 647934 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36876850ns 647937 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36877134ns 647942 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36877418ns 647947 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36877702ns 647952 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36878157ns 647960 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36878327ns 647963 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36878611ns 647968 1a110850 fd5ff06f jal x0, -44 +36878896ns 647973 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36879180ns 647978 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36879578ns 647985 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36879748ns 647988 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36880203ns 647996 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36880373ns 647999 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36880657ns 648004 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36880942ns 648009 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36881226ns 648014 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36881680ns 648022 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36881851ns 648025 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36882135ns 648030 1a110850 fd5ff06f jal x0, -44 +36882419ns 648035 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36882703ns 648040 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36883101ns 648047 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36883272ns 648050 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36883726ns 648058 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36883897ns 648061 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36884181ns 648066 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36884465ns 648071 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36884749ns 648076 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36885204ns 648084 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36885375ns 648087 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36885659ns 648092 1a110850 fd5ff06f jal x0, -44 +36885943ns 648097 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36886227ns 648102 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36886625ns 648109 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36886795ns 648112 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36887250ns 648120 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36887420ns 648123 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36887705ns 648128 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36887989ns 648133 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36888273ns 648138 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36888728ns 648146 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36888898ns 648149 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36889182ns 648154 1a110850 fd5ff06f jal x0, -44 +36889466ns 648159 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36889751ns 648164 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36890148ns 648171 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36890319ns 648174 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36890774ns 648182 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36890944ns 648185 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36891228ns 648190 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36891512ns 648195 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36891797ns 648200 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36892251ns 648208 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36892422ns 648211 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36892706ns 648216 1a110850 fd5ff06f jal x0, -44 +36892990ns 648221 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36893274ns 648226 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36893672ns 648233 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36893842ns 648236 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36894297ns 648244 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36894468ns 648247 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36894752ns 648252 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36895036ns 648257 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36895320ns 648262 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36895775ns 648270 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36895945ns 648273 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36896229ns 648278 1a110850 fd5ff06f jal x0, -44 +36896514ns 648283 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36896798ns 648288 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36897196ns 648295 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36897366ns 648298 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36897821ns 648306 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36897991ns 648309 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36898275ns 648314 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36898560ns 648319 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36898844ns 648324 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36899298ns 648332 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36899469ns 648335 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36899753ns 648340 1a110850 fd5ff06f jal x0, -44 +36900037ns 648345 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36900321ns 648350 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36900719ns 648357 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36900890ns 648360 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36901344ns 648368 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36901515ns 648371 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36901799ns 648376 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36902083ns 648381 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36902367ns 648386 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36902822ns 648394 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36902992ns 648397 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36903277ns 648402 1a110850 fd5ff06f jal x0, -44 +36903561ns 648407 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36903845ns 648412 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36904243ns 648419 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36904413ns 648422 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36904868ns 648430 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36905038ns 648433 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36905323ns 648438 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36905607ns 648443 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36905891ns 648448 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36906346ns 648456 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36906516ns 648459 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36906800ns 648464 1a110850 fd5ff06f jal x0, -44 +36907084ns 648469 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36907368ns 648474 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36907766ns 648481 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36907937ns 648484 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36908391ns 648492 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36908562ns 648495 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36908846ns 648500 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36909130ns 648505 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36909414ns 648510 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36909869ns 648518 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36910040ns 648521 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36910324ns 648526 1a110850 fd5ff06f jal x0, -44 +36910608ns 648531 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36910892ns 648536 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36911290ns 648543 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36911460ns 648546 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36911915ns 648554 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36912086ns 648557 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36912370ns 648562 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36912654ns 648567 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36912938ns 648572 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36913393ns 648580 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36913563ns 648583 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36913847ns 648588 1a110850 fd5ff06f jal x0, -44 +36914131ns 648593 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36914416ns 648598 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36914813ns 648605 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36914984ns 648608 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36915439ns 648616 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36915609ns 648619 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36915893ns 648624 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36916177ns 648629 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36916462ns 648634 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36916916ns 648642 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36917087ns 648645 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36917371ns 648650 1a110850 fd5ff06f jal x0, -44 +36917655ns 648655 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36917939ns 648660 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36918337ns 648667 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36918508ns 648670 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36918962ns 648678 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36919133ns 648681 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36919417ns 648686 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36919701ns 648691 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36919985ns 648696 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36920440ns 648704 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36920610ns 648707 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36920895ns 648712 1a110850 fd5ff06f jal x0, -44 +36921179ns 648717 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36921463ns 648722 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36921861ns 648729 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36922031ns 648732 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36922486ns 648740 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36922656ns 648743 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36922940ns 648748 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36923225ns 648753 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36923509ns 648758 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36923963ns 648766 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36924134ns 648769 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36924418ns 648774 1a110850 fd5ff06f jal x0, -44 +36924702ns 648779 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36924986ns 648784 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36925384ns 648791 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36925555ns 648794 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36926009ns 648802 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36926180ns 648805 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36926464ns 648810 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36926748ns 648815 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36927032ns 648820 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36927487ns 648828 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36927658ns 648831 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36927942ns 648836 1a110850 fd5ff06f jal x0, -44 +36928226ns 648841 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36928510ns 648846 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36928908ns 648853 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36929078ns 648856 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36929533ns 648864 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36929703ns 648867 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36929988ns 648872 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36930272ns 648877 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36930556ns 648882 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36931011ns 648890 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36931181ns 648893 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36931465ns 648898 1a110850 fd5ff06f jal x0, -44 +36931749ns 648903 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36932034ns 648908 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36932431ns 648915 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36932602ns 648918 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36933057ns 648926 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36933227ns 648929 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36933511ns 648934 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36933795ns 648939 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36934080ns 648944 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36934534ns 648952 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36934705ns 648955 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36934989ns 648960 1a110850 fd5ff06f jal x0, -44 +36935273ns 648965 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36935557ns 648970 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36935955ns 648977 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36936125ns 648980 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36936580ns 648988 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36936751ns 648991 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36937035ns 648996 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36937319ns 649001 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36937603ns 649006 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36938058ns 649014 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36938228ns 649017 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36938512ns 649022 1a110850 fd5ff06f jal x0, -44 +36938797ns 649027 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36939081ns 649032 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36939479ns 649039 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36939649ns 649042 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36940104ns 649050 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36940274ns 649053 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36940558ns 649058 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36940843ns 649063 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36941127ns 649068 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36941581ns 649076 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36941752ns 649079 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36942036ns 649084 1a110850 fd5ff06f jal x0, -44 +36942320ns 649089 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36942604ns 649094 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36943002ns 649101 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36943173ns 649104 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36943627ns 649112 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36943798ns 649115 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36944082ns 649120 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36944366ns 649125 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36944650ns 649130 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36945105ns 649138 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36945275ns 649141 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36945560ns 649146 1a110850 fd5ff06f jal x0, -44 +36945844ns 649151 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36946128ns 649156 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36946526ns 649163 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36946696ns 649166 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36947151ns 649174 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36947321ns 649177 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36947606ns 649182 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36947890ns 649187 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36948174ns 649192 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36948629ns 649200 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36948799ns 649203 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36949083ns 649208 1a110850 fd5ff06f jal x0, -44 +36949367ns 649213 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36949651ns 649218 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36950049ns 649225 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36950220ns 649228 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36950674ns 649236 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36950845ns 649239 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36951129ns 649244 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36951413ns 649249 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36951697ns 649254 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36952152ns 649262 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36952323ns 649265 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36952607ns 649270 1a110850 fd5ff06f jal x0, -44 +36952891ns 649275 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36953175ns 649280 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36953573ns 649287 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36953743ns 649290 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36954198ns 649298 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36954369ns 649301 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36954653ns 649306 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36954937ns 649311 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36955221ns 649316 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36955676ns 649324 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36955846ns 649327 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36956130ns 649332 1a110850 fd5ff06f jal x0, -44 +36956415ns 649337 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36956699ns 649342 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36957096ns 649349 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36957267ns 649352 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36957722ns 649360 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36957892ns 649363 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36958176ns 649368 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36958460ns 649373 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36958745ns 649378 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36959199ns 649386 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36959370ns 649389 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36959654ns 649394 1a110850 fd5ff06f jal x0, -44 +36959938ns 649399 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36960222ns 649404 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36960620ns 649411 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36960791ns 649414 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36961245ns 649422 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36961416ns 649425 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36961700ns 649430 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36961984ns 649435 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36962268ns 649440 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36962723ns 649448 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36962893ns 649451 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36963178ns 649456 1a110850 fd5ff06f jal x0, -44 +36963462ns 649461 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36963746ns 649466 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36964144ns 649473 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36964314ns 649476 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36964769ns 649484 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36964939ns 649487 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36965223ns 649492 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36965508ns 649497 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36965792ns 649502 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36966246ns 649510 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36966417ns 649513 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36966701ns 649518 1a110850 fd5ff06f jal x0, -44 +36966985ns 649523 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36967269ns 649528 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36967667ns 649535 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36967838ns 649538 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36968292ns 649546 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36968463ns 649549 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36968747ns 649554 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36969031ns 649559 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36969315ns 649564 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36969770ns 649572 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36969941ns 649575 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36970225ns 649580 1a110850 fd5ff06f jal x0, -44 +36970509ns 649585 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36970793ns 649590 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36971191ns 649597 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36971361ns 649600 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36971816ns 649608 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36971986ns 649611 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36972271ns 649616 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36972555ns 649621 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36972839ns 649626 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36973294ns 649634 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36973464ns 649637 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36973748ns 649642 1a110850 fd5ff06f jal x0, -44 +36974032ns 649647 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36974317ns 649652 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36974714ns 649659 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36974885ns 649662 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36975340ns 649670 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36975510ns 649673 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36975794ns 649678 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36976078ns 649683 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36976363ns 649688 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36976817ns 649696 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36976988ns 649699 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36977272ns 649704 1a110850 fd5ff06f jal x0, -44 +36977556ns 649709 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36977840ns 649714 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36978238ns 649721 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36978408ns 649724 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36978863ns 649732 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36979034ns 649735 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36979318ns 649740 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36979602ns 649745 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36979886ns 649750 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36980341ns 649758 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36980511ns 649761 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36980795ns 649766 1a110850 fd5ff06f jal x0, -44 +36981080ns 649771 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36981364ns 649776 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36981762ns 649783 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36981932ns 649786 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36982387ns 649794 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36982557ns 649797 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36982841ns 649802 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36983126ns 649807 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36983410ns 649812 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36983864ns 649820 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36984035ns 649823 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36984319ns 649828 1a110850 fd5ff06f jal x0, -44 +36984603ns 649833 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36984887ns 649838 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36985285ns 649845 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36985456ns 649848 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36985910ns 649856 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36986081ns 649859 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36986365ns 649864 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36986649ns 649869 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36986933ns 649874 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36987388ns 649882 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36987558ns 649885 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36987843ns 649890 1a110850 fd5ff06f jal x0, -44 +36988127ns 649895 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36988411ns 649900 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36988809ns 649907 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36988979ns 649910 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36989434ns 649918 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36989604ns 649921 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36989889ns 649926 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36990173ns 649931 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36990457ns 649936 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36990912ns 649944 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36991082ns 649947 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36991366ns 649952 1a110850 fd5ff06f jal x0, -44 +36991650ns 649957 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36991935ns 649962 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36992332ns 649969 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36992503ns 649972 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36992957ns 649980 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36993128ns 649983 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36993412ns 649988 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36993696ns 649993 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36993980ns 649998 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36994435ns 650006 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36994606ns 650009 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36994890ns 650014 1a110850 fd5ff06f jal x0, -44 +36995174ns 650019 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36995458ns 650024 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36995856ns 650031 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36996026ns 650034 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36996481ns 650042 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +36996652ns 650045 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +36996936ns 650050 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36997220ns 650055 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36997504ns 650060 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +36997959ns 650068 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +36998129ns 650071 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +36998413ns 650076 1a110850 fd5ff06f jal x0, -44 +36998698ns 650081 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +36998982ns 650086 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +36999379ns 650093 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +36999550ns 650096 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37000005ns 650104 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37000175ns 650107 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37000459ns 650112 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37000743ns 650117 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37001028ns 650122 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37001482ns 650130 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37001653ns 650133 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37001937ns 650138 1a110850 fd5ff06f jal x0, -44 +37002221ns 650143 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37002505ns 650148 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37002903ns 650155 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37003074ns 650158 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37003528ns 650166 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37003699ns 650169 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37003983ns 650174 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37004267ns 650179 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37004551ns 650184 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37005006ns 650192 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37005176ns 650195 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37005461ns 650200 1a110850 fd5ff06f jal x0, -44 +37005745ns 650205 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37006029ns 650210 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37006427ns 650217 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37006597ns 650220 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37007052ns 650228 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37007222ns 650231 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37007506ns 650236 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37007791ns 650241 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37008075ns 650246 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37008529ns 650254 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37008700ns 650257 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37008984ns 650262 1a110850 fd5ff06f jal x0, -44 +37009268ns 650267 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37009552ns 650272 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37009950ns 650279 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37010121ns 650282 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37010575ns 650290 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37010746ns 650293 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37011030ns 650298 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37011314ns 650303 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37011598ns 650308 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37012053ns 650316 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37012224ns 650319 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37012508ns 650324 1a110850 fd5ff06f jal x0, -44 +37012792ns 650329 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37013076ns 650334 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37013474ns 650341 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37013644ns 650344 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37014099ns 650352 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37014269ns 650355 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37014554ns 650360 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37014838ns 650365 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37015122ns 650370 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37015577ns 650378 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37015747ns 650381 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37016031ns 650386 1a110850 fd5ff06f jal x0, -44 +37016315ns 650391 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37016600ns 650396 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37016997ns 650403 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37017168ns 650406 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37017623ns 650414 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37017793ns 650417 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37018077ns 650422 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37018361ns 650427 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37018646ns 650432 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37019100ns 650440 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37019271ns 650443 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37019555ns 650448 1a110850 fd5ff06f jal x0, -44 +37019839ns 650453 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37020123ns 650458 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37020521ns 650465 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37020691ns 650468 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37021146ns 650476 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37021317ns 650479 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37021601ns 650484 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37021885ns 650489 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37022169ns 650494 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37022624ns 650502 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37022794ns 650505 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37023078ns 650510 1a110850 fd5ff06f jal x0, -44 +37023363ns 650515 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37023647ns 650520 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37024045ns 650527 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37024215ns 650530 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37024670ns 650538 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37024840ns 650541 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37025124ns 650546 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37025409ns 650551 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37025693ns 650556 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37026147ns 650564 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37026318ns 650567 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37026602ns 650572 1a110850 fd5ff06f jal x0, -44 +37026886ns 650577 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37027170ns 650582 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37027568ns 650589 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37027739ns 650592 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37028193ns 650600 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37028364ns 650603 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37028648ns 650608 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37028932ns 650613 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37029216ns 650618 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37029671ns 650626 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37029841ns 650629 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37030126ns 650634 1a110850 fd5ff06f jal x0, -44 +37030410ns 650639 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37030694ns 650644 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37031092ns 650651 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37031262ns 650654 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37031717ns 650662 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37031887ns 650665 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37032172ns 650670 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37032456ns 650675 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37032740ns 650680 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37033195ns 650688 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37033365ns 650691 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37033649ns 650696 1a110850 fd5ff06f jal x0, -44 +37033933ns 650701 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37034218ns 650706 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37034615ns 650713 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37034786ns 650716 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37035240ns 650724 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37035411ns 650727 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37035695ns 650732 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37035979ns 650737 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37036263ns 650742 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37036718ns 650750 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37036889ns 650753 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37037173ns 650758 1a110850 fd5ff06f jal x0, -44 +37037457ns 650763 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37037741ns 650768 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37038139ns 650775 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37038309ns 650778 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37038764ns 650786 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37038935ns 650789 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37039219ns 650794 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37039503ns 650799 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37039787ns 650804 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37040242ns 650812 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37040412ns 650815 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37040696ns 650820 1a110850 fd5ff06f jal x0, -44 +37040981ns 650825 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37041265ns 650830 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37041663ns 650837 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37041833ns 650840 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37042288ns 650848 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37042458ns 650851 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37042742ns 650856 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37043026ns 650861 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37043311ns 650866 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37043765ns 650874 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37043936ns 650877 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37044220ns 650882 1a110850 fd5ff06f jal x0, -44 +37044504ns 650887 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37044788ns 650892 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37045186ns 650899 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37045357ns 650902 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37045811ns 650910 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37045982ns 650913 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37046266ns 650918 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37046550ns 650923 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37046834ns 650928 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37047289ns 650936 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37047459ns 650939 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37047744ns 650944 1a110850 fd5ff06f jal x0, -44 +37048028ns 650949 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37048312ns 650954 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37048710ns 650961 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37048880ns 650964 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37049335ns 650972 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37049505ns 650975 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37049789ns 650980 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37050074ns 650985 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37050358ns 650990 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37050812ns 650998 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37050983ns 651001 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37051267ns 651006 1a110850 fd5ff06f jal x0, -44 +37051551ns 651011 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37051835ns 651016 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37052233ns 651023 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37052404ns 651026 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37052858ns 651034 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37053029ns 651037 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37053313ns 651042 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37053597ns 651047 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37053881ns 651052 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37054336ns 651060 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37054507ns 651063 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37054791ns 651068 1a110850 fd5ff06f jal x0, -44 +37055075ns 651073 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37055359ns 651078 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37055757ns 651085 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37055927ns 651088 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37056382ns 651096 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37056552ns 651099 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37056837ns 651104 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37057121ns 651109 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37057405ns 651114 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37057860ns 651122 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37058030ns 651125 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37058314ns 651130 1a110850 fd5ff06f jal x0, -44 +37058598ns 651135 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37058883ns 651140 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37059280ns 651147 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37059451ns 651150 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37059906ns 651158 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37060076ns 651161 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37060360ns 651166 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37060644ns 651171 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37060929ns 651176 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37061383ns 651184 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37061554ns 651187 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37061838ns 651192 1a110850 fd5ff06f jal x0, -44 +37062122ns 651197 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37062406ns 651202 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37062804ns 651209 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37062975ns 651212 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37063429ns 651220 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37063600ns 651223 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37063884ns 651228 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37064168ns 651233 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37064452ns 651238 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37064907ns 651246 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37065077ns 651249 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37065361ns 651254 1a110850 fd5ff06f jal x0, -44 +37065646ns 651259 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37065930ns 651264 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37066328ns 651271 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37066498ns 651274 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37066953ns 651282 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37067123ns 651285 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37067407ns 651290 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37067692ns 651295 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37067976ns 651300 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37068430ns 651308 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37068601ns 651311 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37068885ns 651316 1a110850 fd5ff06f jal x0, -44 +37069169ns 651321 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37069453ns 651326 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37069851ns 651333 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37070022ns 651336 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37070476ns 651344 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37070647ns 651347 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37070931ns 651352 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37071215ns 651357 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37071499ns 651362 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37071954ns 651370 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37072124ns 651373 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37072409ns 651378 1a110850 fd5ff06f jal x0, -44 +37072693ns 651383 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37072977ns 651388 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37073375ns 651395 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37073545ns 651398 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37074000ns 651406 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37074170ns 651409 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37074455ns 651414 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37074739ns 651419 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37075023ns 651424 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37075478ns 651432 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37075648ns 651435 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37075932ns 651440 1a110850 fd5ff06f jal x0, -44 +37076216ns 651445 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37076501ns 651450 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37076898ns 651457 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37077069ns 651460 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37077523ns 651468 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37077694ns 651471 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37077978ns 651476 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37078262ns 651481 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37078546ns 651486 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37079001ns 651494 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37079172ns 651497 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37079456ns 651502 1a110850 fd5ff06f jal x0, -44 +37079740ns 651507 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37080024ns 651512 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37080422ns 651519 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37080592ns 651522 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37081047ns 651530 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37081218ns 651533 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37081502ns 651538 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37081786ns 651543 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37082070ns 651548 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37082525ns 651556 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37082695ns 651559 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37082979ns 651564 1a110850 fd5ff06f jal x0, -44 +37083264ns 651569 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37083548ns 651574 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37083946ns 651581 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37084116ns 651584 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37084571ns 651592 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37084741ns 651595 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37085025ns 651600 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37085309ns 651605 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37085594ns 651610 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37086048ns 651618 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37086219ns 651621 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37086503ns 651626 1a110850 fd5ff06f jal x0, -44 +37086787ns 651631 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37087071ns 651636 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37087469ns 651643 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37087640ns 651646 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37088094ns 651654 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37088265ns 651657 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37088549ns 651662 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37088833ns 651667 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37089117ns 651672 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37089572ns 651680 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37089742ns 651683 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37090027ns 651688 1a110850 fd5ff06f jal x0, -44 +37090311ns 651693 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37090595ns 651698 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37090993ns 651705 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37091163ns 651708 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37091618ns 651716 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37091788ns 651719 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37092072ns 651724 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37092357ns 651729 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37092641ns 651734 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37093095ns 651742 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37093266ns 651745 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37093550ns 651750 1a110850 fd5ff06f jal x0, -44 +37093834ns 651755 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37094118ns 651760 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37094516ns 651767 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37094687ns 651770 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37095141ns 651778 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37095312ns 651781 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37095596ns 651786 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37095880ns 651791 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37096164ns 651796 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37096619ns 651804 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37096790ns 651807 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37097074ns 651812 1a110850 fd5ff06f jal x0, -44 +37097358ns 651817 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37097642ns 651822 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37098040ns 651829 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37098210ns 651832 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37098665ns 651840 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37098835ns 651843 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37099120ns 651848 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37099404ns 651853 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37099688ns 651858 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37100143ns 651866 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37100313ns 651869 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37100597ns 651874 1a110850 fd5ff06f jal x0, -44 +37100881ns 651879 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37101166ns 651884 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37101563ns 651891 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37101734ns 651894 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37102189ns 651902 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37102359ns 651905 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37102643ns 651910 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37102927ns 651915 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37103212ns 651920 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37103666ns 651928 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37103837ns 651931 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37104121ns 651936 1a110850 fd5ff06f jal x0, -44 +37104405ns 651941 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37104689ns 651946 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37105087ns 651953 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37105258ns 651956 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37105712ns 651964 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37105883ns 651967 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37106167ns 651972 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37106451ns 651977 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37106735ns 651982 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37107190ns 651990 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37107360ns 651993 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37107644ns 651998 1a110850 fd5ff06f jal x0, -44 +37107929ns 652003 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37108213ns 652008 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37108611ns 652015 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37108781ns 652018 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37109236ns 652026 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37109406ns 652029 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37109690ns 652034 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37109975ns 652039 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37110259ns 652044 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37110713ns 652052 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37110884ns 652055 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37111168ns 652060 1a110850 fd5ff06f jal x0, -44 +37111452ns 652065 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37111736ns 652070 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37112134ns 652077 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37112305ns 652080 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37112759ns 652088 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37112930ns 652091 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37113214ns 652096 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37113498ns 652101 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37113782ns 652106 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37114237ns 652114 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37114407ns 652117 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37114692ns 652122 1a110850 fd5ff06f jal x0, -44 +37114976ns 652127 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37115260ns 652132 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37115658ns 652139 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37115828ns 652142 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37116283ns 652150 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37116453ns 652153 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37116738ns 652158 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37117022ns 652163 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37117306ns 652168 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37117761ns 652176 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37117931ns 652179 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37118215ns 652184 1a110850 fd5ff06f jal x0, -44 +37118499ns 652189 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37118784ns 652194 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37119181ns 652201 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37119352ns 652204 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37119807ns 652212 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37119977ns 652215 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37120261ns 652220 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37120545ns 652225 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37120829ns 652230 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37121284ns 652238 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37121455ns 652241 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37121739ns 652246 1a110850 fd5ff06f jal x0, -44 +37122023ns 652251 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37122307ns 652256 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37122705ns 652263 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37122875ns 652266 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37123330ns 652274 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37123501ns 652277 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37123785ns 652282 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37124069ns 652287 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37124353ns 652292 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37124808ns 652300 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37124978ns 652303 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37125262ns 652308 1a110850 fd5ff06f jal x0, -44 +37125547ns 652313 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37125831ns 652318 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37126229ns 652325 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37126399ns 652328 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37126854ns 652336 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37127024ns 652339 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37127308ns 652344 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37127592ns 652349 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37127877ns 652354 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37128331ns 652362 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37128502ns 652365 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37128786ns 652370 1a110850 fd5ff06f jal x0, -44 +37129070ns 652375 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37129354ns 652380 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37129752ns 652387 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37129923ns 652390 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37130377ns 652398 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37130548ns 652401 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37130832ns 652406 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37131116ns 652411 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37131400ns 652416 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37131855ns 652424 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37132025ns 652427 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37132310ns 652432 1a110850 fd5ff06f jal x0, -44 +37132594ns 652437 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37132878ns 652442 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37133276ns 652449 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37133446ns 652452 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37133901ns 652460 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37134071ns 652463 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37134355ns 652468 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37134640ns 652473 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37134924ns 652478 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37135378ns 652486 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37135549ns 652489 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37135833ns 652494 1a110850 fd5ff06f jal x0, -44 +37136117ns 652499 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37136401ns 652504 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37136799ns 652511 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37136970ns 652514 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37137424ns 652522 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37137595ns 652525 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37137879ns 652530 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37138163ns 652535 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37138447ns 652540 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37138902ns 652548 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37139073ns 652551 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37139357ns 652556 1a110850 fd5ff06f jal x0, -44 +37139641ns 652561 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37139925ns 652566 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37140323ns 652573 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37140493ns 652576 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37140948ns 652584 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37141119ns 652587 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37141403ns 652592 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37141687ns 652597 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37141971ns 652602 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37142426ns 652610 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37142596ns 652613 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37142880ns 652618 1a110850 fd5ff06f jal x0, -44 +37143164ns 652623 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37143449ns 652628 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37143846ns 652635 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37144017ns 652638 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37144472ns 652646 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37144642ns 652649 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37144926ns 652654 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37145210ns 652659 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37145495ns 652664 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37145949ns 652672 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37146120ns 652675 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37146404ns 652680 1a110850 fd5ff06f jal x0, -44 +37146688ns 652685 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37146972ns 652690 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37147370ns 652697 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37147541ns 652700 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37147995ns 652708 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37148166ns 652711 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37148450ns 652716 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37148734ns 652721 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37149018ns 652726 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37149473ns 652734 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37149643ns 652737 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37149927ns 652742 1a110850 fd5ff06f jal x0, -44 +37150212ns 652747 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37150496ns 652752 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37150894ns 652759 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37151064ns 652762 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37151519ns 652770 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37151689ns 652773 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37151973ns 652778 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37152258ns 652783 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37152542ns 652788 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37152996ns 652796 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37153167ns 652799 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37153451ns 652804 1a110850 fd5ff06f jal x0, -44 +37153735ns 652809 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37154019ns 652814 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37154417ns 652821 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37154588ns 652824 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37155042ns 652832 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37155213ns 652835 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37155497ns 652840 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37155781ns 652845 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37156065ns 652850 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37156520ns 652858 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37156690ns 652861 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37156975ns 652866 1a110850 fd5ff06f jal x0, -44 +37157259ns 652871 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37157543ns 652876 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37157941ns 652883 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37158111ns 652886 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37158566ns 652894 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37158736ns 652897 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37159021ns 652902 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37159305ns 652907 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37159589ns 652912 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37160044ns 652920 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37160214ns 652923 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37160498ns 652928 1a110850 fd5ff06f jal x0, -44 +37160782ns 652933 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37161067ns 652938 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37161464ns 652945 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37161635ns 652948 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37162090ns 652956 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37162260ns 652959 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37162544ns 652964 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37162828ns 652969 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37163112ns 652974 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37163567ns 652982 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37163738ns 652985 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37164022ns 652990 1a110850 fd5ff06f jal x0, -44 +37164306ns 652995 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37164590ns 653000 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37164988ns 653007 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37165158ns 653010 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37165613ns 653018 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37165784ns 653021 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37166068ns 653026 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37166352ns 653031 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37166636ns 653036 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37167091ns 653044 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37167261ns 653047 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37167545ns 653052 1a110850 fd5ff06f jal x0, -44 +37167830ns 653057 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37168114ns 653062 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37168512ns 653069 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37168682ns 653072 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37169137ns 653080 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37169307ns 653083 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37169591ns 653088 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37169875ns 653093 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37170160ns 653098 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37170614ns 653106 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37170785ns 653109 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37171069ns 653114 1a110850 fd5ff06f jal x0, -44 +37171353ns 653119 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37171637ns 653124 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37172035ns 653131 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37172206ns 653134 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37172660ns 653142 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37172831ns 653145 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37173115ns 653150 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37173399ns 653155 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37173683ns 653160 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37174138ns 653168 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37174308ns 653171 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37174593ns 653176 1a110850 fd5ff06f jal x0, -44 +37174877ns 653181 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37175161ns 653186 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37175559ns 653193 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37175729ns 653196 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37176184ns 653204 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37176354ns 653207 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37176639ns 653212 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37176923ns 653217 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37177207ns 653222 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37177661ns 653230 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37177832ns 653233 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37178116ns 653238 1a110850 fd5ff06f jal x0, -44 +37178400ns 653243 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37178684ns 653248 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37179082ns 653255 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37179253ns 653258 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37179707ns 653266 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37179878ns 653269 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37180162ns 653274 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37180446ns 653279 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37180730ns 653284 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37181185ns 653292 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37181356ns 653295 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37181640ns 653300 1a110850 fd5ff06f jal x0, -44 +37181924ns 653305 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37182208ns 653310 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37182606ns 653317 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37182776ns 653320 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37183231ns 653328 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37183402ns 653331 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37183686ns 653336 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37183970ns 653341 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37184254ns 653346 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37184709ns 653354 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37184879ns 653357 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37185163ns 653362 1a110850 fd5ff06f jal x0, -44 +37185447ns 653367 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37185732ns 653372 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37186129ns 653379 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37186300ns 653382 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37186755ns 653390 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37186925ns 653393 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37187209ns 653398 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37187493ns 653403 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37187778ns 653408 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37188232ns 653416 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37188403ns 653419 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37188687ns 653424 1a110850 fd5ff06f jal x0, -44 +37188971ns 653429 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37189255ns 653434 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37189653ns 653441 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37189824ns 653444 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37190278ns 653452 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37190449ns 653455 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37190733ns 653460 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37191017ns 653465 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37191301ns 653470 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37191756ns 653478 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37191926ns 653481 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37192210ns 653486 1a110850 fd5ff06f jal x0, -44 +37192495ns 653491 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37192779ns 653496 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37193177ns 653503 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37193347ns 653506 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37193802ns 653514 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37193972ns 653517 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37194256ns 653522 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37194541ns 653527 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37194825ns 653532 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37195279ns 653540 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37195450ns 653543 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37195734ns 653548 1a110850 fd5ff06f jal x0, -44 +37196018ns 653553 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37196302ns 653558 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37196700ns 653565 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37196871ns 653568 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37197325ns 653576 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37197496ns 653579 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37197780ns 653584 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37198064ns 653589 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37198348ns 653594 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37198803ns 653602 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37198973ns 653605 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37199258ns 653610 1a110850 fd5ff06f jal x0, -44 +37199542ns 653615 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37199826ns 653620 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37200224ns 653627 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37200394ns 653630 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37200849ns 653638 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37201019ns 653641 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37201304ns 653646 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37201588ns 653651 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37201872ns 653656 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37202327ns 653664 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37202497ns 653667 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37202781ns 653672 1a110850 fd5ff06f jal x0, -44 +37203065ns 653677 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37203350ns 653682 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37203747ns 653689 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37203918ns 653692 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37204373ns 653700 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37204543ns 653703 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37204827ns 653708 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37205111ns 653713 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37205395ns 653718 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37205850ns 653726 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37206021ns 653729 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37206305ns 653734 1a110850 fd5ff06f jal x0, -44 +37206589ns 653739 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37206873ns 653744 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37207271ns 653751 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37207441ns 653754 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37207896ns 653762 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37208067ns 653765 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37208351ns 653770 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37208635ns 653775 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37208919ns 653780 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37209374ns 653788 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37209544ns 653791 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37209828ns 653796 1a110850 fd5ff06f jal x0, -44 +37210113ns 653801 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37210397ns 653806 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37210795ns 653813 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37210965ns 653816 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37211420ns 653824 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37211590ns 653827 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37211874ns 653832 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37212159ns 653837 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37212443ns 653842 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37212897ns 653850 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37213068ns 653853 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37213352ns 653858 1a110850 fd5ff06f jal x0, -44 +37213636ns 653863 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37213920ns 653868 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37214318ns 653875 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37214489ns 653878 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37214943ns 653886 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37215114ns 653889 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37215398ns 653894 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37215682ns 653899 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37215966ns 653904 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37216421ns 653912 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37216591ns 653915 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37216876ns 653920 1a110850 fd5ff06f jal x0, -44 +37217160ns 653925 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37217444ns 653930 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37217842ns 653937 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37218012ns 653940 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37218467ns 653948 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37218637ns 653951 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37218922ns 653956 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37219206ns 653961 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37219490ns 653966 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37219944ns 653974 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37220115ns 653977 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37220399ns 653982 1a110850 fd5ff06f jal x0, -44 +37220683ns 653987 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37220967ns 653992 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37221365ns 653999 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37221536ns 654002 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37221990ns 654010 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37222161ns 654013 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37222445ns 654018 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37222729ns 654023 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37223013ns 654028 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37223468ns 654036 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37223639ns 654039 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37223923ns 654044 1a110850 fd5ff06f jal x0, -44 +37224207ns 654049 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37224491ns 654054 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37224889ns 654061 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37225059ns 654064 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37225514ns 654072 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37225685ns 654075 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37225969ns 654080 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37226253ns 654085 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37226537ns 654090 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37226992ns 654098 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37227162ns 654101 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37227446ns 654106 1a110850 fd5ff06f jal x0, -44 +37227730ns 654111 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37228015ns 654116 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37228412ns 654123 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37228583ns 654126 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37229038ns 654134 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37229208ns 654137 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37229492ns 654142 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37229776ns 654147 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37230061ns 654152 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37230515ns 654160 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37230686ns 654163 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37230970ns 654168 1a110850 fd5ff06f jal x0, -44 +37231254ns 654173 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37231538ns 654178 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37231936ns 654185 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37232107ns 654188 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37232561ns 654196 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37232732ns 654199 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37233016ns 654204 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37233300ns 654209 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37233584ns 654214 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37234039ns 654222 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37234209ns 654225 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37234493ns 654230 1a110850 fd5ff06f jal x0, -44 +37234778ns 654235 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37235062ns 654240 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37235460ns 654247 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37235630ns 654250 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37236085ns 654258 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37236255ns 654261 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37236539ns 654266 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37236824ns 654271 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37237108ns 654276 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37237562ns 654284 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37237733ns 654287 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37238017ns 654292 1a110850 fd5ff06f jal x0, -44 +37238301ns 654297 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37238585ns 654302 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37238983ns 654309 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37239154ns 654312 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37239608ns 654320 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37239779ns 654323 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37240063ns 654328 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37240347ns 654333 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37240631ns 654338 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37241086ns 654346 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37241256ns 654349 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37241541ns 654354 1a110850 fd5ff06f jal x0, -44 +37241825ns 654359 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37242109ns 654364 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37242507ns 654371 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37242677ns 654374 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37243132ns 654382 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37243302ns 654385 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37243587ns 654390 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37243871ns 654395 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37244155ns 654400 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37244610ns 654408 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37244780ns 654411 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37245064ns 654416 1a110850 fd5ff06f jal x0, -44 +37245348ns 654421 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37245633ns 654426 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37246030ns 654433 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37246201ns 654436 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37246656ns 654444 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37246826ns 654447 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37247110ns 654452 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37247394ns 654457 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37247679ns 654462 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37248133ns 654470 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37248304ns 654473 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37248588ns 654478 1a110850 fd5ff06f jal x0, -44 +37248872ns 654483 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37249156ns 654488 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37249554ns 654495 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37249724ns 654498 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37250179ns 654506 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37250350ns 654509 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37250634ns 654514 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37250918ns 654519 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37251202ns 654524 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37251657ns 654532 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37251827ns 654535 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37252111ns 654540 1a110850 fd5ff06f jal x0, -44 +37252396ns 654545 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37252680ns 654550 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37253078ns 654557 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37253248ns 654560 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37253703ns 654568 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37253873ns 654571 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37254157ns 654576 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37254442ns 654581 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37254726ns 654586 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37255180ns 654594 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37255351ns 654597 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37255635ns 654602 1a110850 fd5ff06f jal x0, -44 +37255919ns 654607 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37256203ns 654612 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37256601ns 654619 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37256772ns 654622 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37257226ns 654630 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37257397ns 654633 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37257681ns 654638 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37257965ns 654643 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37258249ns 654648 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37258704ns 654656 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37258874ns 654659 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37259159ns 654664 1a110850 fd5ff06f jal x0, -44 +37259443ns 654669 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37259727ns 654674 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37260125ns 654681 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37260295ns 654684 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37260750ns 654692 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37260920ns 654695 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37261205ns 654700 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37261489ns 654705 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37261773ns 654710 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37262227ns 654718 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37262398ns 654721 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37262682ns 654726 1a110850 fd5ff06f jal x0, -44 +37262966ns 654731 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37263250ns 654736 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37263648ns 654743 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37263819ns 654746 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37264273ns 654754 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37264444ns 654757 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37264728ns 654762 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37265012ns 654767 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37265296ns 654772 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37265751ns 654780 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37265922ns 654783 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37266206ns 654788 1a110850 fd5ff06f jal x0, -44 +37266490ns 654793 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37266774ns 654798 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37267172ns 654805 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37267342ns 654808 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37267797ns 654816 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37267968ns 654819 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37268252ns 654824 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37268536ns 654829 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37268820ns 654834 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37269275ns 654842 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37269445ns 654845 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37269729ns 654850 1a110850 fd5ff06f jal x0, -44 +37270013ns 654855 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37270298ns 654860 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37270695ns 654867 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37270866ns 654870 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37271321ns 654878 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37271491ns 654881 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37271775ns 654886 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37272059ns 654891 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37272344ns 654896 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37272798ns 654904 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37272969ns 654907 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37273253ns 654912 1a110850 fd5ff06f jal x0, -44 +37273537ns 654917 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37273821ns 654922 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37274219ns 654929 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37274390ns 654932 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37274844ns 654940 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37275015ns 654943 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37275299ns 654948 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37275583ns 654953 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37275867ns 654958 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37276322ns 654966 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37276492ns 654969 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37276776ns 654974 1a110850 fd5ff06f jal x0, -44 +37277061ns 654979 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37277345ns 654984 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37277743ns 654991 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37277913ns 654994 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37278368ns 655002 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37278538ns 655005 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37278822ns 655010 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37279107ns 655015 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37279391ns 655020 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37279845ns 655028 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37280016ns 655031 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37280300ns 655036 1a110850 fd5ff06f jal x0, -44 +37280584ns 655041 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37280868ns 655046 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37281266ns 655053 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37281437ns 655056 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37281891ns 655064 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37282062ns 655067 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37282346ns 655072 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37282630ns 655077 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37282914ns 655082 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37283369ns 655090 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37283539ns 655093 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37283824ns 655098 1a110850 fd5ff06f jal x0, -44 +37284108ns 655103 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37284392ns 655108 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37284790ns 655115 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37284960ns 655118 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37285415ns 655126 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37285585ns 655129 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37285870ns 655134 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37286154ns 655139 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37286438ns 655144 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37286893ns 655152 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37287063ns 655155 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37287347ns 655160 1a110850 fd5ff06f jal x0, -44 +37287631ns 655165 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37287916ns 655170 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37288313ns 655177 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37288484ns 655180 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37288939ns 655188 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37289109ns 655191 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37289393ns 655196 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37289677ns 655201 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37289962ns 655206 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37290416ns 655214 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37290587ns 655217 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37290871ns 655222 1a110850 fd5ff06f jal x0, -44 +37291155ns 655227 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37291439ns 655232 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37291837ns 655239 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37292007ns 655242 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37292462ns 655250 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37292633ns 655253 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37292917ns 655258 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37293201ns 655263 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37293485ns 655268 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37293940ns 655276 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37294110ns 655279 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37294394ns 655284 1a110850 fd5ff06f jal x0, -44 +37294679ns 655289 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37294963ns 655294 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37295361ns 655301 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37295531ns 655304 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37295986ns 655312 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37296156ns 655315 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37296440ns 655320 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37296725ns 655325 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37297009ns 655330 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37297463ns 655338 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37297634ns 655341 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37297918ns 655346 1a110850 fd5ff06f jal x0, -44 +37298202ns 655351 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37298486ns 655356 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37298884ns 655363 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37299055ns 655366 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37299509ns 655374 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37299680ns 655377 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37299964ns 655382 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37300248ns 655387 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37300532ns 655392 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37300987ns 655400 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37301157ns 655403 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37301442ns 655408 1a110850 fd5ff06f jal x0, -44 +37301726ns 655413 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37302010ns 655418 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37302408ns 655425 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37302578ns 655428 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37303033ns 655436 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37303203ns 655439 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37303488ns 655444 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37303772ns 655449 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37304056ns 655454 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37304511ns 655462 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37304681ns 655465 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37304965ns 655470 1a110850 fd5ff06f jal x0, -44 +37305249ns 655475 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37305533ns 655480 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37305931ns 655487 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37306102ns 655490 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37306556ns 655498 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37306727ns 655501 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37307011ns 655506 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37307295ns 655511 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37307579ns 655516 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37308034ns 655524 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37308205ns 655527 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37308489ns 655532 1a110850 fd5ff06f jal x0, -44 +37308773ns 655537 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37309057ns 655542 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37309455ns 655549 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37309625ns 655552 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37310080ns 655560 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37310251ns 655563 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37310535ns 655568 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37310819ns 655573 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37311103ns 655578 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37311558ns 655586 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37311728ns 655589 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37312012ns 655594 1a110850 fd5ff06f jal x0, -44 +37312296ns 655599 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37312581ns 655604 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37312978ns 655611 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37313149ns 655614 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37313604ns 655622 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37313774ns 655625 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37314058ns 655630 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37314342ns 655635 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37314627ns 655640 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37315081ns 655648 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37315252ns 655651 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37315536ns 655656 1a110850 fd5ff06f jal x0, -44 +37315820ns 655661 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37316104ns 655666 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37316502ns 655673 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37316673ns 655676 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37317127ns 655684 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37317298ns 655687 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37317582ns 655692 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37317866ns 655697 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37318150ns 655702 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37318605ns 655710 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37318775ns 655713 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37319059ns 655718 1a110850 fd5ff06f jal x0, -44 +37319344ns 655723 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37319628ns 655728 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37320026ns 655735 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37320196ns 655738 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37320651ns 655746 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37320821ns 655749 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37321105ns 655754 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37321390ns 655759 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37321674ns 655764 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37322128ns 655772 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37322299ns 655775 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37322583ns 655780 1a110850 fd5ff06f jal x0, -44 +37322867ns 655785 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37323151ns 655790 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37323549ns 655797 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37323720ns 655800 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37324174ns 655808 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37324345ns 655811 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37324629ns 655816 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37324913ns 655821 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37325197ns 655826 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37325652ns 655834 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37325823ns 655837 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37326107ns 655842 1a110850 fd5ff06f jal x0, -44 +37326391ns 655847 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37326675ns 655852 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37327073ns 655859 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37327243ns 655862 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37327698ns 655870 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37327868ns 655873 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37328153ns 655878 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37328437ns 655883 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37328721ns 655888 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37329176ns 655896 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37329346ns 655899 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37329630ns 655904 1a110850 fd5ff06f jal x0, -44 +37329914ns 655909 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37330199ns 655914 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37330596ns 655921 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37330767ns 655924 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37331222ns 655932 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37331392ns 655935 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37331676ns 655940 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37331960ns 655945 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37332245ns 655950 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37332699ns 655958 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37332870ns 655961 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37333154ns 655966 1a110850 fd5ff06f jal x0, -44 +37333438ns 655971 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37333722ns 655976 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37334120ns 655983 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37334290ns 655986 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37334745ns 655994 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37334916ns 655997 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37335200ns 656002 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37335484ns 656007 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37335768ns 656012 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37336223ns 656020 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37336393ns 656023 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37336677ns 656028 1a110850 fd5ff06f jal x0, -44 +37336962ns 656033 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37337246ns 656038 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37337644ns 656045 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37337814ns 656048 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37338269ns 656056 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37338439ns 656059 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37338723ns 656064 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37339008ns 656069 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37339292ns 656074 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37339746ns 656082 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37339917ns 656085 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37340201ns 656090 1a110850 fd5ff06f jal x0, -44 +37340485ns 656095 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37340769ns 656100 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37341167ns 656107 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37341338ns 656110 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37341792ns 656118 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37341963ns 656121 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37342247ns 656126 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37342531ns 656131 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37342815ns 656136 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37343270ns 656144 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37343440ns 656147 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37343725ns 656152 1a110850 fd5ff06f jal x0, -44 +37344009ns 656157 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37344293ns 656162 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37344691ns 656169 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37344861ns 656172 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37345316ns 656180 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37345486ns 656183 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37345771ns 656188 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37346055ns 656193 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37346339ns 656198 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37346794ns 656206 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37346964ns 656209 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37347248ns 656214 1a110850 fd5ff06f jal x0, -44 +37347532ns 656219 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37347816ns 656224 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37348214ns 656231 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37348385ns 656234 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37348839ns 656242 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37349010ns 656245 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37349294ns 656250 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37349578ns 656255 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37349862ns 656260 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37350317ns 656268 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37350488ns 656271 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37350772ns 656276 1a110850 fd5ff06f jal x0, -44 +37351056ns 656281 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37351340ns 656286 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37351738ns 656293 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37351908ns 656296 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37352363ns 656304 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37352534ns 656307 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37352818ns 656312 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37353102ns 656317 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37353386ns 656322 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37353841ns 656330 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37354011ns 656333 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37354295ns 656338 1a110850 fd5ff06f jal x0, -44 +37354579ns 656343 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37354864ns 656348 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37355261ns 656355 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37355432ns 656358 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37355887ns 656366 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37356057ns 656369 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37356341ns 656374 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37356625ns 656379 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37356910ns 656384 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37357364ns 656392 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37357535ns 656395 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37357819ns 656400 1a110850 fd5ff06f jal x0, -44 +37358103ns 656405 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37358387ns 656410 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37358785ns 656417 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37358956ns 656420 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37359410ns 656428 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37359581ns 656431 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37359865ns 656436 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37360149ns 656441 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37360433ns 656446 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37360888ns 656454 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37361058ns 656457 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37361343ns 656462 1a110850 fd5ff06f jal x0, -44 +37361627ns 656467 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37361911ns 656472 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37362309ns 656479 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37362479ns 656482 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37362934ns 656490 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37363104ns 656493 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37363388ns 656498 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37363673ns 656503 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37363957ns 656508 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37364411ns 656516 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37364582ns 656519 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37364866ns 656524 1a110850 fd5ff06f jal x0, -44 +37365150ns 656529 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37365434ns 656534 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37365832ns 656541 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37366003ns 656544 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37366457ns 656552 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37366628ns 656555 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37366912ns 656560 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37367196ns 656565 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37367480ns 656570 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37367935ns 656578 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37368106ns 656581 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37368390ns 656586 1a110850 fd5ff06f jal x0, -44 +37368674ns 656591 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37368958ns 656596 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37369356ns 656603 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37369526ns 656606 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37369981ns 656614 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37370151ns 656617 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37370436ns 656622 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37370720ns 656627 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37371004ns 656632 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37371459ns 656640 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37371629ns 656643 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37371913ns 656648 1a110850 fd5ff06f jal x0, -44 +37372197ns 656653 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37372482ns 656658 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37372879ns 656665 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37373050ns 656668 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37373505ns 656676 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37373675ns 656679 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37373959ns 656684 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37374243ns 656689 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37374528ns 656694 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37374982ns 656702 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37375153ns 656705 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37375437ns 656710 1a110850 fd5ff06f jal x0, -44 +37375721ns 656715 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37376005ns 656720 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37376403ns 656727 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37376573ns 656730 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37377028ns 656738 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37377199ns 656741 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37377483ns 656746 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37377767ns 656751 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37378051ns 656756 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37378506ns 656764 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37378676ns 656767 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37378960ns 656772 1a110850 fd5ff06f jal x0, -44 +37379245ns 656777 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37379529ns 656782 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37379927ns 656789 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37380097ns 656792 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37380552ns 656800 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37380722ns 656803 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37381006ns 656808 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37381291ns 656813 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37381575ns 656818 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37382029ns 656826 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37382200ns 656829 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37382484ns 656834 1a110850 fd5ff06f jal x0, -44 +37382768ns 656839 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37383052ns 656844 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37383450ns 656851 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37383621ns 656854 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37384075ns 656862 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37384246ns 656865 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37384530ns 656870 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37384814ns 656875 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37385098ns 656880 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37385553ns 656888 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37385723ns 656891 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37386008ns 656896 1a110850 fd5ff06f jal x0, -44 +37386292ns 656901 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37386576ns 656906 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37386974ns 656913 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37387144ns 656916 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37387599ns 656924 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37387769ns 656927 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37388054ns 656932 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37388338ns 656937 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37388622ns 656942 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37389077ns 656950 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37389247ns 656953 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37389531ns 656958 1a110850 fd5ff06f jal x0, -44 +37389815ns 656963 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37390099ns 656968 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37390497ns 656975 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37390668ns 656978 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37391122ns 656986 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37391293ns 656989 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37391577ns 656994 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37391861ns 656999 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37392145ns 657004 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37392600ns 657012 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37392771ns 657015 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37393055ns 657020 1a110850 fd5ff06f jal x0, -44 +37393339ns 657025 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37393623ns 657030 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37394021ns 657037 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37394191ns 657040 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37394646ns 657048 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37394817ns 657051 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37395101ns 657056 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37395385ns 657061 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37395669ns 657066 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37396124ns 657074 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37396294ns 657077 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37396578ns 657082 1a110850 fd5ff06f jal x0, -44 +37396863ns 657087 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37397147ns 657092 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37397544ns 657099 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37397715ns 657102 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37398170ns 657110 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37398340ns 657113 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37398624ns 657118 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37398908ns 657123 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37399193ns 657128 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37399647ns 657136 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37399818ns 657139 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37400102ns 657144 1a110850 fd5ff06f jal x0, -44 +37400386ns 657149 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37400670ns 657154 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37401068ns 657161 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37401239ns 657164 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37401693ns 657172 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37401864ns 657175 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37402148ns 657180 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37402432ns 657185 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37402716ns 657190 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37403171ns 657198 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37403341ns 657201 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37403626ns 657206 1a110850 fd5ff06f jal x0, -44 +37403910ns 657211 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37404194ns 657216 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37404592ns 657223 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37404762ns 657226 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37405217ns 657234 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37405387ns 657237 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37405671ns 657242 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37405956ns 657247 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37406240ns 657252 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37406694ns 657260 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37406865ns 657263 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37407149ns 657268 1a110850 fd5ff06f jal x0, -44 +37407433ns 657273 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37407717ns 657278 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37408115ns 657285 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37408286ns 657288 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37408740ns 657296 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37408911ns 657299 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37409195ns 657304 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37409479ns 657309 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37409763ns 657314 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37410218ns 657322 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37410389ns 657325 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37410673ns 657330 1a110850 fd5ff06f jal x0, -44 +37410957ns 657335 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37411241ns 657340 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37411639ns 657347 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37411809ns 657350 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37412264ns 657358 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37412434ns 657361 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37412719ns 657366 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37413003ns 657371 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37413287ns 657376 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37413742ns 657384 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37413912ns 657387 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37414196ns 657392 1a110850 fd5ff06f jal x0, -44 +37414480ns 657397 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37414765ns 657402 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37415162ns 657409 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37415333ns 657412 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37415788ns 657420 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37415958ns 657423 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37416242ns 657428 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37416526ns 657433 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37416811ns 657438 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37417265ns 657446 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37417436ns 657449 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37417720ns 657454 1a110850 fd5ff06f jal x0, -44 +37418004ns 657459 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37418288ns 657464 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37418686ns 657471 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37418856ns 657474 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37419311ns 657482 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37419482ns 657485 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37419766ns 657490 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37420050ns 657495 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37420334ns 657500 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37420789ns 657508 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37420959ns 657511 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37421243ns 657516 1a110850 fd5ff06f jal x0, -44 +37421528ns 657521 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37421812ns 657526 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37422210ns 657533 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37422380ns 657536 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37422835ns 657544 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37423005ns 657547 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37423289ns 657552 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37423574ns 657557 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37423858ns 657562 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37424312ns 657570 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37424483ns 657573 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37424767ns 657578 1a110850 fd5ff06f jal x0, -44 +37425051ns 657583 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37425335ns 657588 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37425733ns 657595 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37425904ns 657598 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37426358ns 657606 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37426529ns 657609 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37426813ns 657614 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37427097ns 657619 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37427381ns 657624 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37427836ns 657632 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37428006ns 657635 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37428291ns 657640 1a110850 fd5ff06f jal x0, -44 +37428575ns 657645 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37428859ns 657650 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37429257ns 657657 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37429427ns 657660 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37429882ns 657668 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37430052ns 657671 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37430337ns 657676 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37430621ns 657681 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37430905ns 657686 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37431360ns 657694 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37431530ns 657697 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37431814ns 657702 1a110850 fd5ff06f jal x0, -44 +37432098ns 657707 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37432383ns 657712 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37432780ns 657719 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37432951ns 657722 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37433405ns 657730 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37433576ns 657733 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37433860ns 657738 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37434144ns 657743 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37434428ns 657748 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37434883ns 657756 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37435054ns 657759 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37435338ns 657764 1a110850 fd5ff06f jal x0, -44 +37435622ns 657769 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37435906ns 657774 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37436304ns 657781 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37436474ns 657784 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37436929ns 657792 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37437100ns 657795 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37437384ns 657800 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37437668ns 657805 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37437952ns 657810 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37438407ns 657818 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37438577ns 657821 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37438861ns 657826 1a110850 fd5ff06f jal x0, -44 +37439146ns 657831 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37439430ns 657836 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37439827ns 657843 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37439998ns 657846 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37440453ns 657854 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37440623ns 657857 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37440907ns 657862 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37441191ns 657867 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37441476ns 657872 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37441930ns 657880 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37442101ns 657883 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37442385ns 657888 1a110850 fd5ff06f jal x0, -44 +37442669ns 657893 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37442953ns 657898 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37443351ns 657905 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37443522ns 657908 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37443976ns 657916 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37444147ns 657919 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37444431ns 657924 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37444715ns 657929 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37444999ns 657934 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37445454ns 657942 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37445624ns 657945 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37445909ns 657950 1a110850 fd5ff06f jal x0, -44 +37446193ns 657955 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37446477ns 657960 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37446875ns 657967 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37447045ns 657970 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37447500ns 657978 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37447670ns 657981 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37447954ns 657986 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37448239ns 657991 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37448523ns 657996 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37448977ns 658004 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37449148ns 658007 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37449432ns 658012 1a110850 fd5ff06f jal x0, -44 +37449716ns 658017 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37450000ns 658022 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37450398ns 658029 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37450569ns 658032 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37451023ns 658040 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37451194ns 658043 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37451478ns 658048 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37451762ns 658053 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37452046ns 658058 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37452501ns 658066 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37452672ns 658069 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37452956ns 658074 1a110850 fd5ff06f jal x0, -44 +37453240ns 658079 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37453524ns 658084 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37453922ns 658091 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37454092ns 658094 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37454547ns 658102 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37454717ns 658105 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37455002ns 658110 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37455286ns 658115 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37455570ns 658120 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37456025ns 658128 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37456195ns 658131 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37456479ns 658136 1a110850 fd5ff06f jal x0, -44 +37456763ns 658141 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37457048ns 658146 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37457445ns 658153 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37457616ns 658156 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37458071ns 658164 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37458241ns 658167 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37458525ns 658172 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37458809ns 658177 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37459094ns 658182 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37459548ns 658190 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37459719ns 658193 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37460003ns 658198 1a110850 fd5ff06f jal x0, -44 +37460287ns 658203 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37460571ns 658208 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37460969ns 658215 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37461139ns 658218 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37461594ns 658226 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37461765ns 658229 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37462049ns 658234 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37462333ns 658239 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37462617ns 658244 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37463072ns 658252 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37463242ns 658255 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37463526ns 658260 1a110850 fd5ff06f jal x0, -44 +37463811ns 658265 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37464095ns 658270 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37464493ns 658277 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37464663ns 658280 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37465118ns 658288 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37465288ns 658291 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37465572ns 658296 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37465857ns 658301 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37466141ns 658306 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37466595ns 658314 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37466766ns 658317 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37467050ns 658322 1a110850 fd5ff06f jal x0, -44 +37467334ns 658327 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37467618ns 658332 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37468016ns 658339 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37468187ns 658342 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37468641ns 658350 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37468812ns 658353 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37469096ns 658358 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37469380ns 658363 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37469664ns 658368 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37470119ns 658376 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37470289ns 658379 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37470574ns 658384 1a110850 fd5ff06f jal x0, -44 +37470858ns 658389 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37471142ns 658394 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37471540ns 658401 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37471710ns 658404 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37472165ns 658412 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37472335ns 658415 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37472620ns 658420 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37472904ns 658425 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37473188ns 658430 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37473643ns 658438 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37473813ns 658441 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37474097ns 658446 1a110850 fd5ff06f jal x0, -44 +37474381ns 658451 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37474666ns 658456 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37475063ns 658463 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37475234ns 658466 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37475688ns 658474 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37475859ns 658477 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37476143ns 658482 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37476427ns 658487 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37476711ns 658492 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37477166ns 658500 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37477337ns 658503 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37477621ns 658508 1a110850 fd5ff06f jal x0, -44 +37477905ns 658513 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37478189ns 658518 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37478587ns 658525 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37478757ns 658528 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37479212ns 658536 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37479383ns 658539 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37479667ns 658544 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37479951ns 658549 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37480235ns 658554 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37480690ns 658562 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37480860ns 658565 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37481144ns 658570 1a110850 fd5ff06f jal x0, -44 +37481429ns 658575 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37481713ns 658580 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37482111ns 658587 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37482281ns 658590 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37482736ns 658598 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37482906ns 658601 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37483190ns 658606 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37483474ns 658611 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37483759ns 658616 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37484213ns 658624 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37484384ns 658627 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37484668ns 658632 1a110850 fd5ff06f jal x0, -44 +37484952ns 658637 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37485236ns 658642 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37485634ns 658649 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37485805ns 658652 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37486259ns 658660 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37486430ns 658663 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37486714ns 658668 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37486998ns 658673 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37487282ns 658678 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37487737ns 658686 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37487907ns 658689 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37488192ns 658694 1a110850 fd5ff06f jal x0, -44 +37488476ns 658699 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37488760ns 658704 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37489158ns 658711 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37489328ns 658714 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37489783ns 658722 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37489953ns 658725 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37490237ns 658730 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37490522ns 658735 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37490806ns 658740 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37491260ns 658748 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37491431ns 658751 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37491715ns 658756 1a110850 fd5ff06f jal x0, -44 +37491999ns 658761 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37492283ns 658766 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37492681ns 658773 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37492852ns 658776 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37493306ns 658784 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37493477ns 658787 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37493761ns 658792 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37494045ns 658797 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37494329ns 658802 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37494784ns 658810 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37494955ns 658813 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37495239ns 658818 1a110850 fd5ff06f jal x0, -44 +37495523ns 658823 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37495807ns 658828 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37496205ns 658835 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37496375ns 658838 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37496830ns 658846 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37497000ns 658849 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37497285ns 658854 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37497569ns 658859 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37497853ns 658864 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37498308ns 658872 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37498478ns 658875 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37498762ns 658880 1a110850 fd5ff06f jal x0, -44 +37499046ns 658885 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37499331ns 658890 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37499728ns 658897 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37499899ns 658900 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37500354ns 658908 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37500524ns 658911 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37500808ns 658916 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37501092ns 658921 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37501377ns 658926 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37501831ns 658934 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37502002ns 658937 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37502286ns 658942 1a110850 fd5ff06f jal x0, -44 +37502570ns 658947 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37502854ns 658952 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37503252ns 658959 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37503423ns 658962 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37503877ns 658970 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37504048ns 658973 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37504332ns 658978 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37504616ns 658983 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37504900ns 658988 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37505355ns 658996 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37505525ns 658999 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37505809ns 659004 1a110850 fd5ff06f jal x0, -44 +37506094ns 659009 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37506378ns 659014 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37506776ns 659021 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37506946ns 659024 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37507401ns 659032 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37507571ns 659035 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37507855ns 659040 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37508140ns 659045 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37508424ns 659050 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37508878ns 659058 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37509049ns 659061 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37509333ns 659066 1a110850 fd5ff06f jal x0, -44 +37509617ns 659071 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37509901ns 659076 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37510299ns 659083 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37510470ns 659086 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37510924ns 659094 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37511095ns 659097 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37511379ns 659102 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37511663ns 659107 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37511947ns 659112 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37512402ns 659120 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37512572ns 659123 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37512857ns 659128 1a110850 fd5ff06f jal x0, -44 +37513141ns 659133 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37513425ns 659138 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37513823ns 659145 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37513993ns 659148 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37514448ns 659156 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37514618ns 659159 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37514903ns 659164 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37515187ns 659169 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37515471ns 659174 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37515926ns 659182 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37516096ns 659185 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37516380ns 659190 1a110850 fd5ff06f jal x0, -44 +37516664ns 659195 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37516949ns 659200 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37517346ns 659207 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37517517ns 659210 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37517971ns 659218 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37518142ns 659221 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37518426ns 659226 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37518710ns 659231 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37518994ns 659236 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37519449ns 659244 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37519620ns 659247 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37519904ns 659252 1a110850 fd5ff06f jal x0, -44 +37520188ns 659257 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37520472ns 659262 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37520870ns 659269 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37521040ns 659272 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37521495ns 659280 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37521666ns 659283 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37521950ns 659288 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37522234ns 659293 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37522518ns 659298 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37522973ns 659306 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37523143ns 659309 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37523427ns 659314 1a110850 fd5ff06f jal x0, -44 +37523712ns 659319 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37523996ns 659324 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37524394ns 659331 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37524564ns 659334 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37525019ns 659342 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37525189ns 659345 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37525473ns 659350 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37525757ns 659355 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37526042ns 659360 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37526496ns 659368 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37526667ns 659371 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37526951ns 659376 1a110850 fd5ff06f jal x0, -44 +37527235ns 659381 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37527519ns 659386 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37527917ns 659393 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37528088ns 659396 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37528542ns 659404 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37528713ns 659407 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37528997ns 659412 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37529281ns 659417 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37529565ns 659422 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37530020ns 659430 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37530190ns 659433 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37530475ns 659438 1a110850 fd5ff06f jal x0, -44 +37530759ns 659443 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37531043ns 659448 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37531441ns 659455 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37531611ns 659458 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37532066ns 659466 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37532236ns 659469 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37532520ns 659474 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37532805ns 659479 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37533089ns 659484 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37533543ns 659492 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37533714ns 659495 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37533998ns 659500 1a110850 fd5ff06f jal x0, -44 +37534282ns 659505 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37534566ns 659510 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37534964ns 659517 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37535135ns 659520 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37535589ns 659528 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37535760ns 659531 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37536044ns 659536 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37536328ns 659541 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37536612ns 659546 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37537067ns 659554 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37537238ns 659557 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37537522ns 659562 1a110850 fd5ff06f jal x0, -44 +37537806ns 659567 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37538090ns 659572 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37538488ns 659579 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37538658ns 659582 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37539113ns 659590 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37539283ns 659593 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37539568ns 659598 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37539852ns 659603 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37540136ns 659608 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37540591ns 659616 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37540761ns 659619 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37541045ns 659624 1a110850 fd5ff06f jal x0, -44 +37541329ns 659629 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37541614ns 659634 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37542011ns 659641 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37542182ns 659644 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37542637ns 659652 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37542807ns 659655 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37543091ns 659660 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37543375ns 659665 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37543660ns 659670 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37544114ns 659678 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37544285ns 659681 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37544569ns 659686 1a110850 fd5ff06f jal x0, -44 +37544853ns 659691 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37545137ns 659696 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37545535ns 659703 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37545706ns 659706 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37546160ns 659714 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37546331ns 659717 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37546615ns 659722 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37546899ns 659727 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37547183ns 659732 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37547638ns 659740 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37547808ns 659743 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37548092ns 659748 1a110850 fd5ff06f jal x0, -44 +37548377ns 659753 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37548661ns 659758 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37549059ns 659765 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37549229ns 659768 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37549684ns 659776 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37549854ns 659779 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37550138ns 659784 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37550423ns 659789 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37550707ns 659794 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37551161ns 659802 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37551332ns 659805 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37551616ns 659810 1a110850 fd5ff06f jal x0, -44 +37551900ns 659815 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37552184ns 659820 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37552582ns 659827 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37552753ns 659830 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37553207ns 659838 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37553378ns 659841 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37553662ns 659846 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37553946ns 659851 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37554230ns 659856 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37554685ns 659864 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37554855ns 659867 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37555140ns 659872 1a110850 fd5ff06f jal x0, -44 +37555424ns 659877 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37555708ns 659882 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37556106ns 659889 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37556276ns 659892 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37556731ns 659900 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37556901ns 659903 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37557186ns 659908 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37557470ns 659913 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37557754ns 659918 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37558209ns 659926 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37558379ns 659929 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37558663ns 659934 1a110850 fd5ff06f jal x0, -44 +37558947ns 659939 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37559232ns 659944 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37559629ns 659951 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37559800ns 659954 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37560255ns 659962 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37560425ns 659965 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37560709ns 659970 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37560993ns 659975 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37561277ns 659980 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37561732ns 659988 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37561903ns 659991 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37562187ns 659996 1a110850 fd5ff06f jal x0, -44 +37562471ns 660001 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37562755ns 660006 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37563153ns 660013 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37563323ns 660016 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37563778ns 660024 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37563949ns 660027 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37564233ns 660032 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37564517ns 660037 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37564801ns 660042 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37565256ns 660050 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37565426ns 660053 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37565710ns 660058 1a110850 fd5ff06f jal x0, -44 +37565995ns 660063 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37566279ns 660068 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37566677ns 660075 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37566847ns 660078 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37567302ns 660086 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37567472ns 660089 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37567756ns 660094 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37568040ns 660099 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37568325ns 660104 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37568779ns 660112 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37568950ns 660115 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37569234ns 660120 1a110850 fd5ff06f jal x0, -44 +37569518ns 660125 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37569802ns 660130 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37570200ns 660137 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37570371ns 660140 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37570825ns 660148 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37570996ns 660151 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37571280ns 660156 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37571564ns 660161 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37571848ns 660166 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37572303ns 660174 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37572473ns 660177 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37572758ns 660182 1a110850 fd5ff06f jal x0, -44 +37573042ns 660187 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37573326ns 660192 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37573724ns 660199 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37573894ns 660202 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37574349ns 660210 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37574519ns 660213 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37574803ns 660218 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37575088ns 660223 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37575372ns 660228 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37575826ns 660236 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37575997ns 660239 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37576281ns 660244 1a110850 fd5ff06f jal x0, -44 +37576565ns 660249 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37576849ns 660254 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37577247ns 660261 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37577418ns 660264 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37577872ns 660272 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37578043ns 660275 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37578327ns 660280 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37578611ns 660285 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37578895ns 660290 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37579350ns 660298 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37579521ns 660301 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37579805ns 660306 1a110850 fd5ff06f jal x0, -44 +37580089ns 660311 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37580373ns 660316 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37580771ns 660323 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37580941ns 660326 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37581396ns 660334 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37581567ns 660337 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37581851ns 660342 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37582135ns 660347 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37582419ns 660352 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37582874ns 660360 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37583044ns 660363 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37583328ns 660368 1a110850 fd5ff06f jal x0, -44 +37583612ns 660373 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37583897ns 660378 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37584294ns 660385 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37584465ns 660388 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37584920ns 660396 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37585090ns 660399 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37585374ns 660404 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37585658ns 660409 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37585943ns 660414 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37586397ns 660422 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37586568ns 660425 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37586852ns 660430 1a110850 fd5ff06f jal x0, -44 +37587136ns 660435 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37587420ns 660440 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37587818ns 660447 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37587989ns 660450 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37588443ns 660458 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37588614ns 660461 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37588898ns 660466 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37589182ns 660471 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37589466ns 660476 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37589921ns 660484 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37590091ns 660487 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37590375ns 660492 1a110850 fd5ff06f jal x0, -44 +37590660ns 660497 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37590944ns 660502 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37591342ns 660509 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37591512ns 660512 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37591967ns 660520 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37592137ns 660523 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37592421ns 660528 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37592706ns 660533 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37592990ns 660538 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37593444ns 660546 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37593615ns 660549 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37593899ns 660554 1a110850 fd5ff06f jal x0, -44 +37594183ns 660559 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37594467ns 660564 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37594865ns 660571 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37595036ns 660574 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37595490ns 660582 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37595661ns 660585 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37595945ns 660590 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37596229ns 660595 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37596513ns 660600 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37596968ns 660608 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37597138ns 660611 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37597423ns 660616 1a110850 fd5ff06f jal x0, -44 +37597707ns 660621 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37597991ns 660626 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37598389ns 660633 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37598559ns 660636 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37599014ns 660644 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37599184ns 660647 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37599469ns 660652 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37599753ns 660657 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37600037ns 660662 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37600492ns 660670 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37600662ns 660673 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37600946ns 660678 1a110850 fd5ff06f jal x0, -44 +37601230ns 660683 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37601515ns 660688 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37601912ns 660695 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37602083ns 660698 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37602538ns 660706 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37602708ns 660709 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37602992ns 660714 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37603276ns 660719 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37603560ns 660724 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37604015ns 660732 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37604186ns 660735 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37604470ns 660740 1a110850 fd5ff06f jal x0, -44 +37604754ns 660745 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37605038ns 660750 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37605436ns 660757 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37605606ns 660760 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37606061ns 660768 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37606232ns 660771 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37606516ns 660776 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37606800ns 660781 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37607084ns 660786 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37607539ns 660794 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37607709ns 660797 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37607993ns 660802 1a110850 fd5ff06f jal x0, -44 +37608278ns 660807 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37608562ns 660812 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37608960ns 660819 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37609130ns 660822 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37609585ns 660830 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37609755ns 660833 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37610039ns 660838 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37610323ns 660843 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37610608ns 660848 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37611062ns 660856 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37611233ns 660859 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37611517ns 660864 1a110850 fd5ff06f jal x0, -44 +37611801ns 660869 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37612085ns 660874 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37612483ns 660881 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37612654ns 660884 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37613108ns 660892 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37613279ns 660895 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37613563ns 660900 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37613847ns 660905 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37614131ns 660910 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37614586ns 660918 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37614756ns 660921 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37615041ns 660926 1a110850 fd5ff06f jal x0, -44 +37615325ns 660931 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37615609ns 660936 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37616007ns 660943 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37616177ns 660946 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37616632ns 660954 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37616802ns 660957 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37617087ns 660962 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37617371ns 660967 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37617655ns 660972 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37618109ns 660980 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37618280ns 660983 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37618564ns 660988 1a110850 fd5ff06f jal x0, -44 +37618848ns 660993 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37619132ns 660998 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37619530ns 661005 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37619701ns 661008 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37620155ns 661016 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37620326ns 661019 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37620610ns 661024 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37620894ns 661029 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37621178ns 661034 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37621633ns 661042 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37621804ns 661045 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37622088ns 661050 1a110850 fd5ff06f jal x0, -44 +37622372ns 661055 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37622656ns 661060 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37623054ns 661067 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37623224ns 661070 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37623679ns 661078 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37623850ns 661081 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37624134ns 661086 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37624418ns 661091 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37624702ns 661096 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37625157ns 661104 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37625327ns 661107 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37625611ns 661112 1a110850 fd5ff06f jal x0, -44 +37625895ns 661117 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37626180ns 661122 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37626577ns 661129 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37626748ns 661132 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37627203ns 661140 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37627373ns 661143 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37627657ns 661148 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37627941ns 661153 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37628226ns 661158 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37628680ns 661166 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37628851ns 661169 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37629135ns 661174 1a110850 fd5ff06f jal x0, -44 +37629419ns 661179 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37629703ns 661184 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37630101ns 661191 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37630272ns 661194 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37630726ns 661202 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37630897ns 661205 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37631181ns 661210 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37631465ns 661215 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37631749ns 661220 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37632204ns 661228 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37632374ns 661231 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37632658ns 661236 1a110850 fd5ff06f jal x0, -44 +37632943ns 661241 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37633227ns 661246 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37633625ns 661253 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37633795ns 661256 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37634250ns 661264 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37634420ns 661267 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37634704ns 661272 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37634989ns 661277 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37635273ns 661282 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37635727ns 661290 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37635898ns 661293 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37636182ns 661298 1a110850 fd5ff06f jal x0, -44 +37636466ns 661303 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37636750ns 661308 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37637148ns 661315 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37637319ns 661318 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37637773ns 661326 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37637944ns 661329 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37638228ns 661334 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37638512ns 661339 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37638796ns 661344 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37639251ns 661352 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37639421ns 661355 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37639706ns 661360 1a110850 fd5ff06f jal x0, -44 +37639990ns 661365 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37640274ns 661370 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37640672ns 661377 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37640842ns 661380 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37641297ns 661388 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37641467ns 661391 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37641752ns 661396 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37642036ns 661401 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37642320ns 661406 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37642775ns 661414 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37642945ns 661417 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37643229ns 661422 1a110850 fd5ff06f jal x0, -44 +37643513ns 661427 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37643798ns 661432 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37644195ns 661439 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37644366ns 661442 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37644821ns 661450 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37644991ns 661453 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37645275ns 661458 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37645559ns 661463 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37645843ns 661468 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37646298ns 661476 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37646469ns 661479 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37646753ns 661484 1a110850 fd5ff06f jal x0, -44 +37647037ns 661489 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37647321ns 661494 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37647719ns 661501 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37647889ns 661504 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37648344ns 661512 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37648515ns 661515 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37648799ns 661520 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37649083ns 661525 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37649367ns 661530 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37649822ns 661538 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37649992ns 661541 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37650276ns 661546 1a110850 fd5ff06f jal x0, -44 +37650561ns 661551 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37650845ns 661556 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37651243ns 661563 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37651413ns 661566 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37651868ns 661574 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37652038ns 661577 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37652322ns 661582 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37652607ns 661587 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37652891ns 661592 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37653345ns 661600 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37653516ns 661603 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37653800ns 661608 1a110850 fd5ff06f jal x0, -44 +37654084ns 661613 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37654368ns 661618 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37654766ns 661625 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37654937ns 661628 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37655391ns 661636 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37655562ns 661639 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37655846ns 661644 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37656130ns 661649 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37656414ns 661654 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37656869ns 661662 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37657039ns 661665 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37657324ns 661670 1a110850 fd5ff06f jal x0, -44 +37657608ns 661675 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37657892ns 661680 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37658290ns 661687 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37658460ns 661690 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37658915ns 661698 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37659085ns 661701 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37659370ns 661706 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37659654ns 661711 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37659938ns 661716 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37660392ns 661724 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37660563ns 661727 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37660847ns 661732 1a110850 fd5ff06f jal x0, -44 +37661131ns 661737 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37661415ns 661742 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37661813ns 661749 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37661984ns 661752 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37662438ns 661760 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37662609ns 661763 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37662893ns 661768 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37663177ns 661773 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37663461ns 661778 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37663916ns 661786 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37664087ns 661789 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37664371ns 661794 1a110850 fd5ff06f jal x0, -44 +37664655ns 661799 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37664939ns 661804 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37665337ns 661811 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37665507ns 661814 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37665962ns 661822 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37666133ns 661825 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37666417ns 661830 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37666701ns 661835 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37666985ns 661840 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37667440ns 661848 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37667610ns 661851 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37667894ns 661856 1a110850 fd5ff06f jal x0, -44 +37668178ns 661861 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37668463ns 661866 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37668860ns 661873 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37669031ns 661876 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37669486ns 661884 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37669656ns 661887 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37669940ns 661892 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37670224ns 661897 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37670509ns 661902 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37670963ns 661910 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37671134ns 661913 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37671418ns 661918 1a110850 fd5ff06f jal x0, -44 +37671702ns 661923 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37671986ns 661928 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37672384ns 661935 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37672555ns 661938 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37673009ns 661946 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37673180ns 661949 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37673464ns 661954 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37673748ns 661959 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37674032ns 661964 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37674487ns 661972 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37674657ns 661975 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37674941ns 661980 1a110850 fd5ff06f jal x0, -44 +37675226ns 661985 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37675510ns 661990 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37675908ns 661997 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37676078ns 662000 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37676533ns 662008 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37676703ns 662011 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37676987ns 662016 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37677272ns 662021 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37677556ns 662026 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37678010ns 662034 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37678181ns 662037 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37678465ns 662042 1a110850 fd5ff06f jal x0, -44 +37678749ns 662047 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37679033ns 662052 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37679431ns 662059 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37679602ns 662062 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37680056ns 662070 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37680227ns 662073 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37680511ns 662078 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37680795ns 662083 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37681079ns 662088 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37681534ns 662096 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37681704ns 662099 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37681989ns 662104 1a110850 fd5ff06f jal x0, -44 +37682273ns 662109 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37682557ns 662114 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37682955ns 662121 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37683125ns 662124 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37683580ns 662132 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37683750ns 662135 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37684035ns 662140 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37684319ns 662145 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37684603ns 662150 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37685058ns 662158 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37685228ns 662161 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37685512ns 662166 1a110850 fd5ff06f jal x0, -44 +37685796ns 662171 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37686081ns 662176 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37686478ns 662183 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37686649ns 662186 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37687104ns 662194 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37687274ns 662197 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37687558ns 662202 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37687842ns 662207 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37688127ns 662212 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37688581ns 662220 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37688752ns 662223 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37689036ns 662228 1a110850 fd5ff06f jal x0, -44 +37689320ns 662233 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37689604ns 662238 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37690002ns 662245 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37690172ns 662248 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37690627ns 662256 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37690798ns 662259 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37691082ns 662264 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37691366ns 662269 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37691650ns 662274 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37692105ns 662282 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37692275ns 662285 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37692559ns 662290 1a110850 fd5ff06f jal x0, -44 +37692844ns 662295 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37693128ns 662300 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37693526ns 662307 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37693696ns 662310 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37694151ns 662318 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37694321ns 662321 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37694605ns 662326 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37694890ns 662331 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37695174ns 662336 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37695628ns 662344 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37695799ns 662347 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37696083ns 662352 1a110850 fd5ff06f jal x0, -44 +37696367ns 662357 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37696651ns 662362 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37697049ns 662369 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37697220ns 662372 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37697674ns 662380 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37697845ns 662383 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37698129ns 662388 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37698413ns 662393 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37698697ns 662398 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37699152ns 662406 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37699322ns 662409 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37699607ns 662414 1a110850 fd5ff06f jal x0, -44 +37699891ns 662419 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37700175ns 662424 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37700573ns 662431 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37700743ns 662434 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37701198ns 662442 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37701368ns 662445 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37701653ns 662450 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37701937ns 662455 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37702221ns 662460 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37702675ns 662468 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37702846ns 662471 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37703130ns 662476 1a110850 fd5ff06f jal x0, -44 +37703414ns 662481 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37703698ns 662486 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37704096ns 662493 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37704267ns 662496 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37704721ns 662504 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37704892ns 662507 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37705176ns 662512 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37705460ns 662517 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37705744ns 662522 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37706199ns 662530 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37706370ns 662533 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37706654ns 662538 1a110850 fd5ff06f jal x0, -44 +37706938ns 662543 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37707222ns 662548 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37707620ns 662555 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37707790ns 662558 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37708245ns 662566 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37708416ns 662569 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37708700ns 662574 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37708984ns 662579 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37709268ns 662584 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37709723ns 662592 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37709893ns 662595 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37710177ns 662600 1a110850 fd5ff06f jal x0, -44 +37710461ns 662605 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37710746ns 662610 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37711143ns 662617 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37711314ns 662620 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37711769ns 662628 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37711939ns 662631 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37712223ns 662636 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37712507ns 662641 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37712792ns 662646 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37713246ns 662654 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37713417ns 662657 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37713701ns 662662 1a110850 fd5ff06f jal x0, -44 +37713985ns 662667 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37714269ns 662672 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37714667ns 662679 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37714838ns 662682 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37715292ns 662690 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37715463ns 662693 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37715747ns 662698 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37716031ns 662703 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37716315ns 662708 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37716770ns 662716 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37716940ns 662719 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37717224ns 662724 1a110850 fd5ff06f jal x0, -44 +37717509ns 662729 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37717793ns 662734 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37718191ns 662741 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37718361ns 662744 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37718816ns 662752 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37718986ns 662755 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37719270ns 662760 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37719555ns 662765 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37719839ns 662770 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37720293ns 662778 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37720464ns 662781 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37720748ns 662786 1a110850 fd5ff06f jal x0, -44 +37721032ns 662791 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37721316ns 662796 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37721714ns 662803 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37721885ns 662806 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37722339ns 662814 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37722510ns 662817 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37722794ns 662822 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37723078ns 662827 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37723362ns 662832 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37723817ns 662840 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37723987ns 662843 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37724272ns 662848 1a110850 fd5ff06f jal x0, -44 +37724556ns 662853 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37724840ns 662858 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37725238ns 662865 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37725408ns 662868 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37725863ns 662876 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37726033ns 662879 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37726318ns 662884 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37726602ns 662889 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37726886ns 662894 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37727341ns 662902 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37727511ns 662905 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37727795ns 662910 1a110850 fd5ff06f jal x0, -44 +37728079ns 662915 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37728364ns 662920 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37728761ns 662927 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37728932ns 662930 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37729387ns 662938 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37729557ns 662941 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37729841ns 662946 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37730125ns 662951 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37730410ns 662956 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37730864ns 662964 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37731035ns 662967 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37731319ns 662972 1a110850 fd5ff06f jal x0, -44 +37731603ns 662977 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37731887ns 662982 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37732285ns 662989 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37732455ns 662992 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37732910ns 663000 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37733081ns 663003 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37733365ns 663008 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37733649ns 663013 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37733933ns 663018 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37734388ns 663026 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37734558ns 663029 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37734842ns 663034 1a110850 fd5ff06f jal x0, -44 +37735127ns 663039 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37735411ns 663044 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37735809ns 663051 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37735979ns 663054 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37736434ns 663062 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37736604ns 663065 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37736888ns 663070 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37737173ns 663075 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37737457ns 663080 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37737911ns 663088 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37738082ns 663091 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37738366ns 663096 1a110850 fd5ff06f jal x0, -44 +37738650ns 663101 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37738934ns 663106 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37739332ns 663113 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37739503ns 663116 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37739957ns 663124 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37740128ns 663127 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37740412ns 663132 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37740696ns 663137 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37740980ns 663142 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37741435ns 663150 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37741605ns 663153 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37741890ns 663158 1a110850 fd5ff06f jal x0, -44 +37742174ns 663163 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37742458ns 663168 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37742856ns 663175 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37743026ns 663178 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37743481ns 663186 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37743651ns 663189 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37743936ns 663194 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37744220ns 663199 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37744504ns 663204 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37744959ns 663212 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37745129ns 663215 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37745413ns 663220 1a110850 fd5ff06f jal x0, -44 +37745697ns 663225 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37745981ns 663230 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37746379ns 663237 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37746550ns 663240 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37747004ns 663248 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37747175ns 663251 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37747459ns 663256 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37747743ns 663261 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37748027ns 663266 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37748482ns 663274 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37748653ns 663277 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37748937ns 663282 1a110850 fd5ff06f jal x0, -44 +37749221ns 663287 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37749505ns 663292 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37749903ns 663299 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37750073ns 663302 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37750528ns 663310 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37750699ns 663313 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37750983ns 663318 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37751267ns 663323 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37751551ns 663328 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37752006ns 663336 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37752176ns 663339 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37752460ns 663344 1a110850 fd5ff06f jal x0, -44 +37752744ns 663349 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37753029ns 663354 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37753426ns 663361 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37753597ns 663364 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37754052ns 663372 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37754222ns 663375 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37754506ns 663380 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37754790ns 663385 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37755075ns 663390 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37755529ns 663398 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37755700ns 663401 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37755984ns 663406 1a110850 fd5ff06f jal x0, -44 +37756268ns 663411 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37756552ns 663416 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37756950ns 663423 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37757121ns 663426 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37757575ns 663434 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37757746ns 663437 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37758030ns 663442 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37758314ns 663447 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37758598ns 663452 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37759053ns 663460 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37759223ns 663463 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37759507ns 663468 1a110850 fd5ff06f jal x0, -44 +37759792ns 663473 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37760076ns 663478 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37760474ns 663485 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37760644ns 663488 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37761099ns 663496 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37761269ns 663499 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37761553ns 663504 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37761838ns 663509 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37762122ns 663514 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37762576ns 663522 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37762747ns 663525 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37763031ns 663530 1a110850 fd5ff06f jal x0, -44 +37763315ns 663535 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37763599ns 663540 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37763997ns 663547 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37764168ns 663550 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37764622ns 663558 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37764793ns 663561 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37765077ns 663566 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37765361ns 663571 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37765645ns 663576 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37766100ns 663584 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37766271ns 663587 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37766555ns 663592 1a110850 fd5ff06f jal x0, -44 +37766839ns 663597 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37767123ns 663602 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37767521ns 663609 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37767691ns 663612 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37768146ns 663620 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37768316ns 663623 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37768601ns 663628 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37768885ns 663633 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37769169ns 663638 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37769624ns 663646 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37769794ns 663649 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37770078ns 663654 1a110850 fd5ff06f jal x0, -44 +37770362ns 663659 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37770647ns 663664 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37771044ns 663671 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37771215ns 663674 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37771670ns 663682 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37771840ns 663685 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37772124ns 663690 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37772408ns 663695 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37772693ns 663700 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37773147ns 663708 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37773318ns 663711 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37773602ns 663716 1a110850 fd5ff06f jal x0, -44 +37773886ns 663721 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37774170ns 663726 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37774568ns 663733 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37774738ns 663736 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37775193ns 663744 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37775364ns 663747 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37775648ns 663752 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37775932ns 663757 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37776216ns 663762 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37776671ns 663770 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37776841ns 663773 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37777125ns 663778 1a110850 fd5ff06f jal x0, -44 +37777410ns 663783 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37777694ns 663788 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37778092ns 663795 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37778262ns 663798 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37778717ns 663806 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37778887ns 663809 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37779171ns 663814 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37779456ns 663819 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37779740ns 663824 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37780194ns 663832 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37780365ns 663835 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37780649ns 663840 1a110850 fd5ff06f jal x0, -44 +37780933ns 663845 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37781217ns 663850 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37781615ns 663857 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37781786ns 663860 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37782240ns 663868 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37782411ns 663871 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37782695ns 663876 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37782979ns 663881 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37783263ns 663886 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37783718ns 663894 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37783888ns 663897 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37784173ns 663902 1a110850 fd5ff06f jal x0, -44 +37784457ns 663907 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37784741ns 663912 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37785139ns 663919 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37785309ns 663922 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37785764ns 663930 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37785934ns 663933 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37786219ns 663938 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37786503ns 663943 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37786787ns 663948 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37787242ns 663956 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37787412ns 663959 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37787696ns 663964 1a110850 fd5ff06f jal x0, -44 +37787980ns 663969 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37788264ns 663974 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37788662ns 663981 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37788833ns 663984 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37789287ns 663992 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37789458ns 663995 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37789742ns 664000 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37790026ns 664005 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37790310ns 664010 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37790765ns 664018 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37790936ns 664021 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37791220ns 664026 1a110850 fd5ff06f jal x0, -44 +37791504ns 664031 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37791788ns 664036 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37792186ns 664043 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37792356ns 664046 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37792811ns 664054 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37792982ns 664057 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37793266ns 664062 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37793550ns 664067 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37793834ns 664072 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37794289ns 664080 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37794459ns 664083 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37794743ns 664088 1a110850 fd5ff06f jal x0, -44 +37795027ns 664093 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37795312ns 664098 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37795709ns 664105 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37795880ns 664108 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37796335ns 664116 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37796505ns 664119 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37796789ns 664124 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37797073ns 664129 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37797358ns 664134 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37797812ns 664142 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37797983ns 664145 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37798267ns 664150 1a110850 fd5ff06f jal x0, -44 +37798551ns 664155 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37798835ns 664160 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37799233ns 664167 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37799404ns 664170 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37799858ns 664178 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37800029ns 664181 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37800313ns 664186 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37800597ns 664191 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37800881ns 664196 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37801336ns 664204 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37801506ns 664207 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37801791ns 664212 1a110850 fd5ff06f jal x0, -44 +37802075ns 664217 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37802359ns 664222 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37802757ns 664229 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37802927ns 664232 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37803382ns 664240 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37803552ns 664243 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37803836ns 664248 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37804121ns 664253 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37804405ns 664258 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37804859ns 664266 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37805030ns 664269 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37805314ns 664274 1a110850 fd5ff06f jal x0, -44 +37805598ns 664279 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37805882ns 664284 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37806280ns 664291 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37806451ns 664294 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37806905ns 664302 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37807076ns 664305 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37807360ns 664310 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37807644ns 664315 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37807928ns 664320 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37808383ns 664328 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37808554ns 664331 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37808838ns 664336 1a110850 fd5ff06f jal x0, -44 +37809122ns 664341 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37809406ns 664346 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37809804ns 664353 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37809974ns 664356 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37810429ns 664364 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37810599ns 664367 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37810884ns 664372 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37811168ns 664377 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37811452ns 664382 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37811907ns 664390 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37812077ns 664393 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37812361ns 664398 1a110850 fd5ff06f jal x0, -44 +37812645ns 664403 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37812930ns 664408 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37813327ns 664415 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37813498ns 664418 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37813953ns 664426 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37814123ns 664429 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37814407ns 664434 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37814691ns 664439 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37814976ns 664444 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37815430ns 664452 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37815601ns 664455 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37815885ns 664460 1a110850 fd5ff06f jal x0, -44 +37816169ns 664465 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37816453ns 664470 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37816851ns 664477 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37817021ns 664480 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37817476ns 664488 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37817647ns 664491 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37817931ns 664496 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37818215ns 664501 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37818499ns 664506 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37818954ns 664514 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37819124ns 664517 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37819408ns 664522 1a110850 fd5ff06f jal x0, -44 +37819693ns 664527 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37819977ns 664532 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37820375ns 664539 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37820545ns 664542 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37821000ns 664550 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37821170ns 664553 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37821454ns 664558 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37821739ns 664563 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37822023ns 664568 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37822477ns 664576 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37822648ns 664579 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37822932ns 664584 1a110850 fd5ff06f jal x0, -44 +37823216ns 664589 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37823500ns 664594 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37823898ns 664601 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37824069ns 664604 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37824523ns 664612 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37824694ns 664615 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37824978ns 664620 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37825262ns 664625 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37825546ns 664630 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37826001ns 664638 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37826171ns 664641 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37826456ns 664646 1a110850 fd5ff06f jal x0, -44 +37826740ns 664651 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37827024ns 664656 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37827422ns 664663 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37827592ns 664666 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37828047ns 664674 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37828217ns 664677 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37828502ns 664682 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37828786ns 664687 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37829070ns 664692 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37829525ns 664700 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37829695ns 664703 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37829979ns 664708 1a110850 fd5ff06f jal x0, -44 +37830263ns 664713 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37830547ns 664718 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37830945ns 664725 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37831116ns 664728 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37831570ns 664736 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37831741ns 664739 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37832025ns 664744 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37832309ns 664749 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37832593ns 664754 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37833048ns 664762 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37833219ns 664765 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37833503ns 664770 1a110850 fd5ff06f jal x0, -44 +37833787ns 664775 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37834071ns 664780 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37834469ns 664787 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37834639ns 664790 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37835094ns 664798 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37835265ns 664801 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37835549ns 664806 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37835833ns 664811 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37836117ns 664816 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37836572ns 664824 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37836742ns 664827 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37837026ns 664832 1a110850 fd5ff06f jal x0, -44 +37837311ns 664837 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37837595ns 664842 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37837992ns 664849 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37838163ns 664852 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37838618ns 664860 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37838788ns 664863 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37839072ns 664868 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37839356ns 664873 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37839641ns 664878 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37840095ns 664886 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37840266ns 664889 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37840550ns 664894 1a110850 fd5ff06f jal x0, -44 +37840834ns 664899 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37841118ns 664904 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37841516ns 664911 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37841687ns 664914 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37842141ns 664922 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37842312ns 664925 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37842596ns 664930 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37842880ns 664935 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37843164ns 664940 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37843619ns 664948 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37843789ns 664951 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37844074ns 664956 1a110850 fd5ff06f jal x0, -44 +37844358ns 664961 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37844642ns 664966 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37845040ns 664973 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37845210ns 664976 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37845665ns 664984 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37845835ns 664987 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37846119ns 664992 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37846404ns 664997 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37846688ns 665002 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37847142ns 665010 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37847313ns 665013 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37847597ns 665018 1a110850 fd5ff06f jal x0, -44 +37847881ns 665023 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37848165ns 665028 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37848563ns 665035 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37848734ns 665038 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37849188ns 665046 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37849359ns 665049 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37849643ns 665054 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37849927ns 665059 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37850211ns 665064 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37850666ns 665072 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37850837ns 665075 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37851121ns 665080 1a110850 fd5ff06f jal x0, -44 +37851405ns 665085 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37851689ns 665090 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37852087ns 665097 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37852257ns 665100 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37852712ns 665108 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37852882ns 665111 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37853167ns 665116 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37853451ns 665121 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37853735ns 665126 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37854190ns 665134 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37854360ns 665137 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37854644ns 665142 1a110850 fd5ff06f jal x0, -44 +37854928ns 665147 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37855213ns 665152 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37855610ns 665159 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37855781ns 665162 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37856236ns 665170 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37856406ns 665173 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37856690ns 665178 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37856974ns 665183 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37857259ns 665188 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37857713ns 665196 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37857884ns 665199 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37858168ns 665204 1a110850 fd5ff06f jal x0, -44 +37858452ns 665209 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37858736ns 665214 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37859134ns 665221 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37859304ns 665224 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37859759ns 665232 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37859930ns 665235 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37860214ns 665240 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37860498ns 665245 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37860782ns 665250 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37861237ns 665258 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37861407ns 665261 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37861691ns 665266 1a110850 fd5ff06f jal x0, -44 +37861976ns 665271 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37862260ns 665276 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37862658ns 665283 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37862828ns 665286 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37863283ns 665294 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37863453ns 665297 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37863737ns 665302 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37864022ns 665307 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37864306ns 665312 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37864760ns 665320 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37864931ns 665323 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37865215ns 665328 1a110850 fd5ff06f jal x0, -44 +37865499ns 665333 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37865783ns 665338 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37866181ns 665345 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37866352ns 665348 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37866806ns 665356 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37866977ns 665359 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37867261ns 665364 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37867545ns 665369 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37867829ns 665374 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37868284ns 665382 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37868454ns 665385 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37868739ns 665390 1a110850 fd5ff06f jal x0, -44 +37869023ns 665395 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37869307ns 665400 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37869705ns 665407 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37869875ns 665410 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37870330ns 665418 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37870500ns 665421 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37870785ns 665426 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37871069ns 665431 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37871353ns 665436 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37871808ns 665444 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37871978ns 665447 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37872262ns 665452 1a110850 fd5ff06f jal x0, -44 +37872546ns 665457 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37872831ns 665462 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37873228ns 665469 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37873399ns 665472 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37873853ns 665480 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37874024ns 665483 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37874308ns 665488 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37874592ns 665493 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37874876ns 665498 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37875331ns 665506 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37875502ns 665509 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37875786ns 665514 1a110850 fd5ff06f jal x0, -44 +37876070ns 665519 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37876354ns 665524 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37876752ns 665531 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37876922ns 665534 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37877377ns 665542 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37877548ns 665545 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37877832ns 665550 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37878116ns 665555 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37878400ns 665560 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37878855ns 665568 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37879025ns 665571 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37879309ns 665576 1a110850 fd5ff06f jal x0, -44 +37879594ns 665581 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37879878ns 665586 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37880275ns 665593 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37880446ns 665596 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37880901ns 665604 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37881071ns 665607 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37881355ns 665612 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37881639ns 665617 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37881924ns 665622 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37882378ns 665630 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37882549ns 665633 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37882833ns 665638 1a110850 fd5ff06f jal x0, -44 +37883117ns 665643 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37883401ns 665648 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37883799ns 665655 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37883970ns 665658 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37884424ns 665666 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37884595ns 665669 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37884879ns 665674 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37885163ns 665679 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37885447ns 665684 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37885902ns 665692 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37886072ns 665695 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37886357ns 665700 1a110850 fd5ff06f jal x0, -44 +37886641ns 665705 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37886925ns 665710 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37887323ns 665717 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37887493ns 665720 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37887948ns 665728 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37888118ns 665731 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37888402ns 665736 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37888687ns 665741 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37888971ns 665746 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37889425ns 665754 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37889596ns 665757 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37889880ns 665762 1a110850 fd5ff06f jal x0, -44 +37890164ns 665767 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37890448ns 665772 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37890846ns 665779 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37891017ns 665782 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37891471ns 665790 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37891642ns 665793 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37891926ns 665798 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37892210ns 665803 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37892494ns 665808 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37892949ns 665816 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37893120ns 665819 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37893404ns 665824 1a110850 fd5ff06f jal x0, -44 +37893688ns 665829 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37893972ns 665834 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37894370ns 665841 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37894540ns 665844 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37894995ns 665852 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37895165ns 665855 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37895450ns 665860 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37895734ns 665865 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37896018ns 665870 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37896473ns 665878 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37896643ns 665881 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37896927ns 665886 1a110850 fd5ff06f jal x0, -44 +37897211ns 665891 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37897496ns 665896 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37897893ns 665903 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37898064ns 665906 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37898519ns 665914 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37898689ns 665917 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37898973ns 665922 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37899257ns 665927 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37899542ns 665932 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37899996ns 665940 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37900167ns 665943 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37900451ns 665948 1a110850 fd5ff06f jal x0, -44 +37900735ns 665953 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37901019ns 665958 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37901417ns 665965 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37901587ns 665968 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37902042ns 665976 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37902213ns 665979 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37902497ns 665984 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37902781ns 665989 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37903065ns 665994 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37903520ns 666002 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37903690ns 666005 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37903974ns 666010 1a110850 fd5ff06f jal x0, -44 +37904259ns 666015 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37904543ns 666020 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37904941ns 666027 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37905111ns 666030 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37905566ns 666038 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37905736ns 666041 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37906020ns 666046 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37906305ns 666051 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37906589ns 666056 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37907043ns 666064 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37907214ns 666067 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37907498ns 666072 1a110850 fd5ff06f jal x0, -44 +37907782ns 666077 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37908066ns 666082 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37908464ns 666089 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37908635ns 666092 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37909089ns 666100 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37909260ns 666103 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37909544ns 666108 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37909828ns 666113 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37910112ns 666118 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37910567ns 666126 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37910737ns 666129 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37911022ns 666134 1a110850 fd5ff06f jal x0, -44 +37911306ns 666139 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37911590ns 666144 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37911988ns 666151 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37912158ns 666154 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37912613ns 666162 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37912783ns 666165 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37913068ns 666170 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37913352ns 666175 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37913636ns 666180 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37914091ns 666188 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37914261ns 666191 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37914545ns 666196 1a110850 fd5ff06f jal x0, -44 +37914829ns 666201 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37915114ns 666206 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37915511ns 666213 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37915682ns 666216 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37916136ns 666224 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37916307ns 666227 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37916591ns 666232 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37916875ns 666237 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37917159ns 666242 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37917614ns 666250 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37917785ns 666253 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37918069ns 666258 1a110850 fd5ff06f jal x0, -44 +37918353ns 666263 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37918637ns 666268 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37919035ns 666275 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37919205ns 666278 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37919660ns 666286 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37919831ns 666289 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37920115ns 666294 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37920399ns 666299 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37920683ns 666304 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37921138ns 666312 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37921308ns 666315 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37921592ns 666320 1a110850 fd5ff06f jal x0, -44 +37921877ns 666325 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37922161ns 666330 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37922559ns 666337 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37922729ns 666340 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37923184ns 666348 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37923354ns 666351 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37923638ns 666356 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37923922ns 666361 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37924207ns 666366 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37924661ns 666374 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37924832ns 666377 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37925116ns 666382 1a110850 fd5ff06f jal x0, -44 +37925400ns 666387 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37925684ns 666392 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37926082ns 666399 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37926253ns 666402 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37926707ns 666410 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37926878ns 666413 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37927162ns 666418 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37927446ns 666423 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37927730ns 666428 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37928185ns 666436 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37928355ns 666439 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37928640ns 666444 1a110850 fd5ff06f jal x0, -44 +37928924ns 666449 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37929208ns 666454 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37929606ns 666461 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37929776ns 666464 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37930231ns 666472 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37930401ns 666475 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37930685ns 666480 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37930970ns 666485 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37931254ns 666490 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37931708ns 666498 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37931879ns 666501 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37932163ns 666506 1a110850 fd5ff06f jal x0, -44 +37932447ns 666511 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37932731ns 666516 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37933129ns 666523 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37933300ns 666526 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37933754ns 666534 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37933925ns 666537 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37934209ns 666542 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37934493ns 666547 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37934777ns 666552 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37935232ns 666560 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37935403ns 666563 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37935687ns 666568 1a110850 fd5ff06f jal x0, -44 +37935971ns 666573 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37936255ns 666578 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37936653ns 666585 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37936823ns 666588 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37937278ns 666596 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37937448ns 666599 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37937733ns 666604 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37938017ns 666609 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37938301ns 666614 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37938756ns 666622 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37938926ns 666625 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37939210ns 666630 1a110850 fd5ff06f jal x0, -44 +37939494ns 666635 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37939779ns 666640 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37940176ns 666647 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37940347ns 666650 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37940802ns 666658 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37940972ns 666661 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37941256ns 666666 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37941540ns 666671 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37941825ns 666676 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37942279ns 666684 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37942450ns 666687 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37942734ns 666692 1a110850 fd5ff06f jal x0, -44 +37943018ns 666697 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37943302ns 666702 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37943700ns 666709 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37943871ns 666712 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37944325ns 666720 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37944496ns 666723 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37944780ns 666728 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37945064ns 666733 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37945348ns 666738 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37945803ns 666746 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37945973ns 666749 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37946257ns 666754 1a110850 fd5ff06f jal x0, -44 +37946542ns 666759 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37946826ns 666764 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37947224ns 666771 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37947394ns 666774 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37947849ns 666782 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37948019ns 666785 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37948303ns 666790 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37948588ns 666795 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37948872ns 666800 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37949326ns 666808 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37949497ns 666811 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37949781ns 666816 1a110850 fd5ff06f jal x0, -44 +37950065ns 666821 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37950349ns 666826 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37950747ns 666833 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37950918ns 666836 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37951372ns 666844 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37951543ns 666847 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37951827ns 666852 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37952111ns 666857 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37952395ns 666862 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37952850ns 666870 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37953020ns 666873 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37953305ns 666878 1a110850 fd5ff06f jal x0, -44 +37953589ns 666883 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37953873ns 666888 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37954271ns 666895 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37954441ns 666898 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37954896ns 666906 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37955066ns 666909 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37955351ns 666914 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37955635ns 666919 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37955919ns 666924 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37956374ns 666932 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37956544ns 666935 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37956828ns 666940 1a110850 fd5ff06f jal x0, -44 +37957112ns 666945 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37957397ns 666950 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37957794ns 666957 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37957965ns 666960 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37958419ns 666968 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37958590ns 666971 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37958874ns 666976 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37959158ns 666981 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37959442ns 666986 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37959897ns 666994 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37960068ns 666997 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37960352ns 667002 1a110850 fd5ff06f jal x0, -44 +37960636ns 667007 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37960920ns 667012 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37961318ns 667019 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37961488ns 667022 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37961943ns 667030 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37962114ns 667033 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37962398ns 667038 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37962682ns 667043 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37962966ns 667048 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37963421ns 667056 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37963591ns 667059 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37963875ns 667064 1a110850 fd5ff06f jal x0, -44 +37964160ns 667069 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37964444ns 667074 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37964842ns 667081 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37965012ns 667084 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37965467ns 667092 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37965637ns 667095 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37965921ns 667100 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37966205ns 667105 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37966490ns 667110 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37966944ns 667118 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37967115ns 667121 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37967399ns 667126 1a110850 fd5ff06f jal x0, -44 +37967683ns 667131 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37967967ns 667136 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37968365ns 667143 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37968536ns 667146 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37968990ns 667154 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37969161ns 667157 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37969445ns 667162 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37969729ns 667167 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37970013ns 667172 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37970468ns 667180 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37970638ns 667183 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37970923ns 667188 1a110850 fd5ff06f jal x0, -44 +37971207ns 667193 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37971491ns 667198 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37971889ns 667205 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37972059ns 667208 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37972514ns 667216 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37972684ns 667219 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37972968ns 667224 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37973253ns 667229 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37973537ns 667234 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37973991ns 667242 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37974162ns 667245 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37974446ns 667250 1a110850 fd5ff06f jal x0, -44 +37974730ns 667255 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37975014ns 667260 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37975412ns 667267 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37975583ns 667270 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37976037ns 667278 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37976208ns 667281 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37976492ns 667286 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37976776ns 667291 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37977060ns 667296 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37977515ns 667304 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37977686ns 667307 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37977970ns 667312 1a110850 fd5ff06f jal x0, -44 +37978254ns 667317 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37978538ns 667322 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37978936ns 667329 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37979106ns 667332 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37979561ns 667340 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37979731ns 667343 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37980016ns 667348 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37980300ns 667353 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37980584ns 667358 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37981039ns 667366 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37981209ns 667369 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37981493ns 667374 1a110850 fd5ff06f jal x0, -44 +37981777ns 667379 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37982062ns 667384 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37982459ns 667391 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37982630ns 667394 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37983085ns 667402 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37983255ns 667405 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37983539ns 667410 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37983823ns 667415 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37984108ns 667420 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37984562ns 667428 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37984733ns 667431 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37985017ns 667436 1a110850 fd5ff06f jal x0, -44 +37985301ns 667441 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37985585ns 667446 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37985983ns 667453 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37986154ns 667456 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37986608ns 667464 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37986779ns 667467 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37987063ns 667472 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37987347ns 667477 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37987631ns 667482 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37988086ns 667490 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37988256ns 667493 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37988540ns 667498 1a110850 fd5ff06f jal x0, -44 +37988825ns 667503 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37989109ns 667508 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37989507ns 667515 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37989677ns 667518 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37990132ns 667526 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37990302ns 667529 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37990586ns 667534 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37990871ns 667539 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37991155ns 667544 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37991609ns 667552 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37991780ns 667555 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37992064ns 667560 1a110850 fd5ff06f jal x0, -44 +37992348ns 667565 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37992632ns 667570 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37993030ns 667577 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37993201ns 667580 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37993655ns 667588 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37993826ns 667591 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37994110ns 667596 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37994394ns 667601 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37994678ns 667606 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37995133ns 667614 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37995303ns 667617 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37995588ns 667622 1a110850 fd5ff06f jal x0, -44 +37995872ns 667627 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37996156ns 667632 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +37996554ns 667639 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37996724ns 667642 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37997179ns 667650 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +37997349ns 667653 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +37997634ns 667658 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37997918ns 667663 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +37998202ns 667668 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +37998657ns 667676 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +37998827ns 667679 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +37999111ns 667684 1a110850 fd5ff06f jal x0, -44 +37999395ns 667689 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +37999680ns 667694 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38000077ns 667701 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38000248ns 667704 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38000703ns 667712 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38000873ns 667715 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38001157ns 667720 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38001441ns 667725 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38001725ns 667730 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38002180ns 667738 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38002351ns 667741 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38002635ns 667746 1a110850 fd5ff06f jal x0, -44 +38002919ns 667751 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38003203ns 667756 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38003601ns 667763 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38003771ns 667766 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38004226ns 667774 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38004397ns 667777 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38004681ns 667782 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38004965ns 667787 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38005249ns 667792 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38005704ns 667800 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38005874ns 667803 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38006158ns 667808 1a110850 fd5ff06f jal x0, -44 +38006443ns 667813 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38006727ns 667818 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38007125ns 667825 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38007295ns 667828 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38007750ns 667836 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38007920ns 667839 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38008204ns 667844 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38008488ns 667849 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38008773ns 667854 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38009227ns 667862 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38009398ns 667865 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38009682ns 667870 1a110850 fd5ff06f jal x0, -44 +38009966ns 667875 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38010250ns 667880 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38010648ns 667887 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38010819ns 667890 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38011273ns 667898 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38011444ns 667901 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38011728ns 667906 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38012012ns 667911 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38012296ns 667916 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38012751ns 667924 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38012921ns 667927 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38013206ns 667932 1a110850 fd5ff06f jal x0, -44 +38013490ns 667937 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38013774ns 667942 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38014172ns 667949 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38014342ns 667952 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38014797ns 667960 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38014967ns 667963 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38015251ns 667968 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38015536ns 667973 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38015820ns 667978 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38016274ns 667986 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38016445ns 667989 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38016729ns 667994 1a110850 fd5ff06f jal x0, -44 +38017013ns 667999 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38017297ns 668004 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38017695ns 668011 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38017866ns 668014 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38018320ns 668022 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38018491ns 668025 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38018775ns 668030 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38019059ns 668035 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38019343ns 668040 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38019798ns 668048 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38019969ns 668051 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38020253ns 668056 1a110850 fd5ff06f jal x0, -44 +38020537ns 668061 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38020821ns 668066 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38021219ns 668073 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38021389ns 668076 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38021844ns 668084 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38022015ns 668087 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38022299ns 668092 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38022583ns 668097 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38022867ns 668102 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38023322ns 668110 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38023492ns 668113 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38023776ns 668118 1a110850 fd5ff06f jal x0, -44 +38024060ns 668123 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38024345ns 668128 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38024742ns 668135 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38024913ns 668138 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38025368ns 668146 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38025538ns 668149 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38025822ns 668154 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38026106ns 668159 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38026391ns 668164 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38026845ns 668172 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38027016ns 668175 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38027300ns 668180 1a110850 fd5ff06f jal x0, -44 +38027584ns 668185 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38027868ns 668190 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38028266ns 668197 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38028437ns 668200 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38028891ns 668208 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38029062ns 668211 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38029346ns 668216 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38029630ns 668221 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38029914ns 668226 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38030369ns 668234 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38030539ns 668237 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38030823ns 668242 1a110850 fd5ff06f jal x0, -44 +38031108ns 668247 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38031392ns 668252 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38031790ns 668259 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38031960ns 668262 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38032415ns 668270 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38032585ns 668273 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38032869ns 668278 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38033154ns 668283 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38033438ns 668288 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38033892ns 668296 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38034063ns 668299 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38034347ns 668304 1a110850 fd5ff06f jal x0, -44 +38034631ns 668309 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38034915ns 668314 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38035313ns 668321 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38035484ns 668324 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38035938ns 668332 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38036109ns 668335 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38036393ns 668340 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38036677ns 668345 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38036961ns 668350 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38037416ns 668358 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38037586ns 668361 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38037871ns 668366 1a110850 fd5ff06f jal x0, -44 +38038155ns 668371 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38038439ns 668376 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38038837ns 668383 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38039007ns 668386 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38039462ns 668394 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38039632ns 668397 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38039917ns 668402 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38040201ns 668407 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38040485ns 668412 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38040940ns 668420 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38041110ns 668423 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38041394ns 668428 1a110850 fd5ff06f jal x0, -44 +38041678ns 668433 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38041963ns 668438 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38042360ns 668445 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38042531ns 668448 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38042986ns 668456 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38043156ns 668459 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38043440ns 668464 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38043724ns 668469 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38044008ns 668474 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38044463ns 668482 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38044634ns 668485 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38044918ns 668490 1a110850 fd5ff06f jal x0, -44 +38045202ns 668495 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38045486ns 668500 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38045884ns 668507 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38046054ns 668510 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38046509ns 668518 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38046680ns 668521 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38046964ns 668526 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38047248ns 668531 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38047532ns 668536 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38047987ns 668544 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38048157ns 668547 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38048441ns 668552 1a110850 fd5ff06f jal x0, -44 +38048726ns 668557 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38049010ns 668562 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38049408ns 668569 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38049578ns 668572 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38050033ns 668580 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38050203ns 668583 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38050487ns 668588 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38050771ns 668593 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38051056ns 668598 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38051510ns 668606 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38051681ns 668609 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38051965ns 668614 1a110850 fd5ff06f jal x0, -44 +38052249ns 668619 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38052533ns 668624 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38052931ns 668631 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38053102ns 668634 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38053556ns 668642 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38053727ns 668645 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38054011ns 668650 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38054295ns 668655 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38054579ns 668660 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38055034ns 668668 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38055204ns 668671 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38055489ns 668676 1a110850 fd5ff06f jal x0, -44 +38055773ns 668681 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38056057ns 668686 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38056455ns 668693 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38056625ns 668696 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38057080ns 668704 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38057250ns 668707 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38057535ns 668712 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38057819ns 668717 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38058103ns 668722 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38058557ns 668730 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38058728ns 668733 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38059012ns 668738 1a110850 fd5ff06f jal x0, -44 +38059296ns 668743 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38059580ns 668748 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38059978ns 668755 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38060149ns 668758 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38060603ns 668766 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38060774ns 668769 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38061058ns 668774 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38061342ns 668779 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38061626ns 668784 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38062081ns 668792 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38062252ns 668795 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38062536ns 668800 1a110850 fd5ff06f jal x0, -44 +38062820ns 668805 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38063104ns 668810 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38063502ns 668817 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38063672ns 668820 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38064127ns 668828 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38064298ns 668831 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38064582ns 668836 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38064866ns 668841 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38065150ns 668846 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38065605ns 668854 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38065775ns 668857 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38066059ns 668862 1a110850 fd5ff06f jal x0, -44 +38066343ns 668867 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38066628ns 668872 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38067025ns 668879 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38067196ns 668882 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38067651ns 668890 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38067821ns 668893 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38068105ns 668898 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38068389ns 668903 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38068674ns 668908 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38069128ns 668916 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38069299ns 668919 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38069583ns 668924 1a110850 fd5ff06f jal x0, -44 +38069867ns 668929 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38070151ns 668934 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38070549ns 668941 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38070720ns 668944 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38071174ns 668952 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38071345ns 668955 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38071629ns 668960 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38071913ns 668965 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38072197ns 668970 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38072652ns 668978 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38072822ns 668981 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38073106ns 668986 1a110850 fd5ff06f jal x0, -44 +38073391ns 668991 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38073675ns 668996 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38074073ns 669003 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38074243ns 669006 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38074698ns 669014 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38074868ns 669017 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38075152ns 669022 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38075437ns 669027 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38075721ns 669032 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38076175ns 669040 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38076346ns 669043 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38076630ns 669048 1a110850 fd5ff06f jal x0, -44 +38076914ns 669053 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38077198ns 669058 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38077596ns 669065 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38077767ns 669068 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38078221ns 669076 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38078392ns 669079 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38078676ns 669084 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38078960ns 669089 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38079244ns 669094 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38079699ns 669102 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38079869ns 669105 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38080154ns 669110 1a110850 fd5ff06f jal x0, -44 +38080438ns 669115 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38080722ns 669120 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38081120ns 669127 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38081290ns 669130 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38081745ns 669138 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38081915ns 669141 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38082200ns 669146 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38082484ns 669151 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38082768ns 669156 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38083223ns 669164 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38083393ns 669167 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38083677ns 669172 1a110850 fd5ff06f jal x0, -44 +38083961ns 669177 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38084246ns 669182 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38084643ns 669189 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38084814ns 669192 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38085269ns 669200 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38085439ns 669203 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38085723ns 669208 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38086007ns 669213 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38086291ns 669218 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38086746ns 669226 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38086917ns 669229 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38087201ns 669234 1a110850 fd5ff06f jal x0, -44 +38087485ns 669239 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38087769ns 669244 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38088167ns 669251 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38088337ns 669254 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38088792ns 669262 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38088963ns 669265 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38089247ns 669270 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38089531ns 669275 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38089815ns 669280 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38090270ns 669288 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38090440ns 669291 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38090724ns 669296 1a110850 fd5ff06f jal x0, -44 +38091009ns 669301 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38091293ns 669306 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38091691ns 669313 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38091861ns 669316 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38092316ns 669324 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38092486ns 669327 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38092770ns 669332 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38093055ns 669337 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38093339ns 669342 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38093793ns 669350 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38093964ns 669353 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38094248ns 669358 1a110850 fd5ff06f jal x0, -44 +38094532ns 669363 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38094816ns 669368 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38095214ns 669375 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38095385ns 669378 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38095839ns 669386 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38096010ns 669389 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38096294ns 669394 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38096578ns 669399 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38096862ns 669404 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38097317ns 669412 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38097487ns 669415 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38097772ns 669420 1a110850 fd5ff06f jal x0, -44 +38098056ns 669425 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38098340ns 669430 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38098738ns 669437 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38098908ns 669440 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38099363ns 669448 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38099533ns 669451 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38099818ns 669456 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38100102ns 669461 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38100386ns 669466 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38100840ns 669474 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38101011ns 669477 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38101295ns 669482 1a110850 fd5ff06f jal x0, -44 +38101579ns 669487 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38101863ns 669492 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38102261ns 669499 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38102432ns 669502 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38102886ns 669510 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38103057ns 669513 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38103341ns 669518 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38103625ns 669523 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38103909ns 669528 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38104364ns 669536 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38104535ns 669539 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38104819ns 669544 1a110850 fd5ff06f jal x0, -44 +38105103ns 669549 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38105387ns 669554 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38105785ns 669561 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38105955ns 669564 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38106410ns 669572 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38106581ns 669575 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38106865ns 669580 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38107149ns 669585 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38107433ns 669590 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38107888ns 669598 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38108058ns 669601 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38108342ns 669606 1a110850 fd5ff06f jal x0, -44 +38108626ns 669611 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38108911ns 669616 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38109308ns 669623 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38109479ns 669626 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38109934ns 669634 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38110104ns 669637 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38110388ns 669642 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38110672ns 669647 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38110957ns 669652 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38111411ns 669660 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38111582ns 669663 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38111866ns 669668 1a110850 fd5ff06f jal x0, -44 +38112150ns 669673 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38112434ns 669678 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38112832ns 669685 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38113003ns 669688 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38113457ns 669696 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38113628ns 669699 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38113912ns 669704 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38114196ns 669709 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38114480ns 669714 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38114935ns 669722 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38115105ns 669725 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38115389ns 669730 1a110850 fd5ff06f jal x0, -44 +38115674ns 669735 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38115958ns 669740 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38116356ns 669747 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38116526ns 669750 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38116981ns 669758 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38117151ns 669761 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38117435ns 669766 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38117720ns 669771 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38118004ns 669776 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38118458ns 669784 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38118629ns 669787 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38118913ns 669792 1a110850 fd5ff06f jal x0, -44 +38119197ns 669797 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38119481ns 669802 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38119879ns 669809 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38120050ns 669812 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38120504ns 669820 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38120675ns 669823 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38120959ns 669828 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38121243ns 669833 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38121527ns 669838 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38121982ns 669846 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38122152ns 669849 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38122437ns 669854 1a110850 fd5ff06f jal x0, -44 +38122721ns 669859 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38123005ns 669864 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38123403ns 669871 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38123573ns 669874 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38124028ns 669882 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38124198ns 669885 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38124483ns 669890 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38124767ns 669895 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38125051ns 669900 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38125506ns 669908 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38125676ns 669911 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38125960ns 669916 1a110850 fd5ff06f jal x0, -44 +38126244ns 669921 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38126529ns 669926 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38126926ns 669933 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38127097ns 669936 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38127552ns 669944 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38127722ns 669947 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38128006ns 669952 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38128290ns 669957 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38128575ns 669962 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38129029ns 669970 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38129200ns 669973 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38129484ns 669978 1a110850 fd5ff06f jal x0, -44 +38129768ns 669983 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38130052ns 669988 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38130450ns 669995 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38130620ns 669998 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38131075ns 670006 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38131246ns 670009 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38131530ns 670014 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38131814ns 670019 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38132098ns 670024 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38132553ns 670032 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38132723ns 670035 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38133007ns 670040 1a110850 fd5ff06f jal x0, -44 +38133292ns 670045 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38133576ns 670050 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38133974ns 670057 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38134144ns 670060 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38134599ns 670068 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38134769ns 670071 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38135053ns 670076 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38135338ns 670081 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38135622ns 670086 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38136076ns 670094 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38136247ns 670097 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38136531ns 670102 1a110850 fd5ff06f jal x0, -44 +38136815ns 670107 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38137099ns 670112 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38137497ns 670119 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38137668ns 670122 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38138122ns 670130 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38138293ns 670133 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38138577ns 670138 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38138861ns 670143 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38139145ns 670148 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38139600ns 670156 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38139770ns 670159 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38140055ns 670164 1a110850 fd5ff06f jal x0, -44 +38140339ns 670169 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38140623ns 670174 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38141021ns 670181 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38141191ns 670184 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38141646ns 670192 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38141816ns 670195 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38142101ns 670200 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38142385ns 670205 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38142669ns 670210 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38143123ns 670218 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38143294ns 670221 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38143578ns 670226 1a110850 fd5ff06f jal x0, -44 +38143862ns 670231 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38144146ns 670236 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38144544ns 670243 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38144715ns 670246 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38145169ns 670254 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38145340ns 670257 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38145624ns 670262 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38145908ns 670267 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38146192ns 670272 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38146647ns 670280 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38146818ns 670283 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38147102ns 670288 1a110850 fd5ff06f jal x0, -44 +38147386ns 670293 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38147670ns 670298 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38148068ns 670305 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38148238ns 670308 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38148693ns 670316 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38148864ns 670319 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38149148ns 670324 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38149432ns 670329 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38149716ns 670334 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38150171ns 670342 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38150341ns 670345 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38150625ns 670350 1a110850 fd5ff06f jal x0, -44 +38150909ns 670355 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38151194ns 670360 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38151591ns 670367 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38151762ns 670370 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38152217ns 670378 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38152387ns 670381 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38152671ns 670386 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38152955ns 670391 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38153240ns 670396 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38153694ns 670404 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38153865ns 670407 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38154149ns 670412 1a110850 fd5ff06f jal x0, -44 +38154433ns 670417 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38154717ns 670422 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38155115ns 670429 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38155286ns 670432 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38155740ns 670440 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38155911ns 670443 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38156195ns 670448 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38156479ns 670453 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38156763ns 670458 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38157218ns 670466 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38157388ns 670469 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38157672ns 670474 1a110850 fd5ff06f jal x0, -44 +38157957ns 670479 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38158241ns 670484 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38158639ns 670491 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38158809ns 670494 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38159264ns 670502 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38159434ns 670505 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38159718ns 670510 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38160003ns 670515 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38160287ns 670520 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38160741ns 670528 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38160912ns 670531 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38161196ns 670536 1a110850 fd5ff06f jal x0, -44 +38161480ns 670541 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38161764ns 670546 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38162162ns 670553 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38162333ns 670556 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38162787ns 670564 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38162958ns 670567 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38163242ns 670572 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38163526ns 670577 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38163810ns 670582 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38164265ns 670590 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38164435ns 670593 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38164720ns 670598 1a110850 fd5ff06f jal x0, -44 +38165004ns 670603 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38165288ns 670608 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38165686ns 670615 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38165856ns 670618 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38166311ns 670626 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38166481ns 670629 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38166766ns 670634 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38167050ns 670639 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38167334ns 670644 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38167789ns 670652 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38167959ns 670655 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38168243ns 670660 1a110850 fd5ff06f jal x0, -44 +38168527ns 670665 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38168812ns 670670 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38169209ns 670677 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38169380ns 670680 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38169835ns 670688 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38170005ns 670691 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38170289ns 670696 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38170573ns 670701 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38170858ns 670706 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38171312ns 670714 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38171483ns 670717 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38171767ns 670722 1a110850 fd5ff06f jal x0, -44 +38172051ns 670727 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38172335ns 670732 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38172733ns 670739 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38172903ns 670742 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38173358ns 670750 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38173529ns 670753 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38173813ns 670758 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38174097ns 670763 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38174381ns 670768 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38174836ns 670776 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38175006ns 670779 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38175290ns 670784 1a110850 fd5ff06f jal x0, -44 +38175575ns 670789 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38175859ns 670794 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38176257ns 670801 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38176427ns 670804 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38176882ns 670812 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38177052ns 670815 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38177336ns 670820 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38177621ns 670825 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38177905ns 670830 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38178359ns 670838 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38178530ns 670841 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38178814ns 670846 1a110850 fd5ff06f jal x0, -44 +38179098ns 670851 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38179382ns 670856 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38179780ns 670863 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38179951ns 670866 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38180405ns 670874 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38180576ns 670877 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38180860ns 670882 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38181144ns 670887 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38181428ns 670892 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38181883ns 670900 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38182053ns 670903 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38182338ns 670908 1a110850 fd5ff06f jal x0, -44 +38182622ns 670913 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38182906ns 670918 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38183304ns 670925 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38183474ns 670928 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38183929ns 670936 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38184099ns 670939 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38184384ns 670944 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38184668ns 670949 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38184952ns 670954 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38185407ns 670962 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38185577ns 670965 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38185861ns 670970 1a110850 fd5ff06f jal x0, -44 +38186145ns 670975 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38186429ns 670980 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38186827ns 670987 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38186998ns 670990 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38187452ns 670998 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38187623ns 671001 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38187907ns 671006 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38188191ns 671011 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38188475ns 671016 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38188930ns 671024 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38189101ns 671027 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38189385ns 671032 1a110850 fd5ff06f jal x0, -44 +38189669ns 671037 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38189953ns 671042 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38190351ns 671049 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38190521ns 671052 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38190976ns 671060 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38191147ns 671063 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38191431ns 671068 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38191715ns 671073 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38191999ns 671078 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38192454ns 671086 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38192624ns 671089 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38192908ns 671094 1a110850 fd5ff06f jal x0, -44 +38193192ns 671099 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38193477ns 671104 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38193874ns 671111 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38194045ns 671114 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38194500ns 671122 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38194670ns 671125 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38194954ns 671130 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38195238ns 671135 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38195523ns 671140 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38195977ns 671148 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38196148ns 671151 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38196432ns 671156 1a110850 fd5ff06f jal x0, -44 +38196716ns 671161 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38197000ns 671166 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38197398ns 671173 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38197569ns 671176 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38198023ns 671184 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38198194ns 671187 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38198478ns 671192 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38198762ns 671197 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38199046ns 671202 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38199501ns 671210 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38199671ns 671213 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38199955ns 671218 1a110850 fd5ff06f jal x0, -44 +38200240ns 671223 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38200524ns 671228 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38200922ns 671235 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38201092ns 671238 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38201547ns 671246 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38201717ns 671249 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38202001ns 671254 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38202286ns 671259 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38202570ns 671264 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38203024ns 671272 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38203195ns 671275 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38203479ns 671280 1a110850 fd5ff06f jal x0, -44 +38203763ns 671285 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38204047ns 671290 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38204445ns 671297 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38204616ns 671300 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38205070ns 671308 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38205241ns 671311 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38205525ns 671316 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38205809ns 671321 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38206093ns 671326 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38206548ns 671334 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38206719ns 671337 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38207003ns 671342 1a110850 fd5ff06f jal x0, -44 +38207287ns 671347 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38207571ns 671352 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38207969ns 671359 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38208139ns 671362 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38208594ns 671370 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38208764ns 671373 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38209049ns 671378 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38209333ns 671383 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38209617ns 671388 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38210072ns 671396 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38210242ns 671399 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38210526ns 671404 1a110850 fd5ff06f jal x0, -44 +38210810ns 671409 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38211095ns 671414 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38211492ns 671421 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38211663ns 671424 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38212118ns 671432 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38212288ns 671435 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38212572ns 671440 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38212856ns 671445 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38213141ns 671450 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38213595ns 671458 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38213766ns 671461 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38214050ns 671466 1a110850 fd5ff06f jal x0, -44 +38214334ns 671471 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38214618ns 671476 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38215016ns 671483 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38215186ns 671486 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38215641ns 671494 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38215812ns 671497 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38216096ns 671502 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38216380ns 671507 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38216664ns 671512 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38217119ns 671520 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38217289ns 671523 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38217573ns 671528 1a110850 fd5ff06f jal x0, -44 +38217858ns 671533 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38218142ns 671538 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38218540ns 671545 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38218710ns 671548 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38219165ns 671556 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38219335ns 671559 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38219619ns 671564 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38219904ns 671569 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38220188ns 671574 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38220642ns 671582 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38220813ns 671585 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38221097ns 671590 1a110850 fd5ff06f jal x0, -44 +38221381ns 671595 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38221665ns 671600 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38222063ns 671607 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38222234ns 671610 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38222688ns 671618 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38222859ns 671621 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38223143ns 671626 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38223427ns 671631 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38223711ns 671636 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38224166ns 671644 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38224336ns 671647 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38224621ns 671652 1a110850 fd5ff06f jal x0, -44 +38224905ns 671657 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38225189ns 671662 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38225587ns 671669 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38225757ns 671672 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38226212ns 671680 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38226382ns 671683 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38226667ns 671688 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38226951ns 671693 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38227235ns 671698 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38227690ns 671706 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38227860ns 671709 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38228144ns 671714 1a110850 fd5ff06f jal x0, -44 +38228428ns 671719 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38228712ns 671724 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38229110ns 671731 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38229281ns 671734 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38229735ns 671742 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38229906ns 671745 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38230190ns 671750 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38230474ns 671755 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38230758ns 671760 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38231213ns 671768 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38231384ns 671771 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38231668ns 671776 1a110850 fd5ff06f jal x0, -44 +38231952ns 671781 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38232236ns 671786 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38232634ns 671793 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38232804ns 671796 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38233259ns 671804 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38233430ns 671807 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38233714ns 671812 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38233998ns 671817 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38234282ns 671822 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38234737ns 671830 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38234907ns 671833 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38235191ns 671838 1a110850 fd5ff06f jal x0, -44 +38235475ns 671843 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38235760ns 671848 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38236157ns 671855 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38236328ns 671858 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38236783ns 671866 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38236953ns 671869 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38237237ns 671874 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38237521ns 671879 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38237806ns 671884 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38238260ns 671892 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38238431ns 671895 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38238715ns 671900 1a110850 fd5ff06f jal x0, -44 +38238999ns 671905 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38239283ns 671910 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38239681ns 671917 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38239852ns 671920 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38240306ns 671928 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38240477ns 671931 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38240761ns 671936 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38241045ns 671941 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38241329ns 671946 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38241784ns 671954 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38241954ns 671957 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38242239ns 671962 1a110850 fd5ff06f jal x0, -44 +38242523ns 671967 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38242807ns 671972 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38243205ns 671979 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38243375ns 671982 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38243830ns 671990 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38244000ns 671993 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38244284ns 671998 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38244569ns 672003 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38244853ns 672008 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38245307ns 672016 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38245478ns 672019 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38245762ns 672024 1a110850 fd5ff06f jal x0, -44 +38246046ns 672029 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38246330ns 672034 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38246728ns 672041 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38246899ns 672044 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38247353ns 672052 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38247524ns 672055 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38247808ns 672060 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38248092ns 672065 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38248376ns 672070 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38248831ns 672078 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38249002ns 672081 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38249286ns 672086 1a110850 fd5ff06f jal x0, -44 +38249570ns 672091 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38249854ns 672096 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38250252ns 672103 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38250422ns 672106 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38250877ns 672114 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38251047ns 672117 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38251332ns 672122 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38251616ns 672127 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38251900ns 672132 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38252355ns 672140 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38252525ns 672143 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38252809ns 672148 1a110850 fd5ff06f jal x0, -44 +38253093ns 672153 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38253378ns 672158 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38253775ns 672165 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38253946ns 672168 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38254401ns 672176 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38254571ns 672179 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38254855ns 672184 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38255139ns 672189 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38255424ns 672194 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38255878ns 672202 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38256049ns 672205 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38256333ns 672210 1a110850 fd5ff06f jal x0, -44 +38256617ns 672215 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38256901ns 672220 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38257299ns 672227 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38257469ns 672230 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38257924ns 672238 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38258095ns 672241 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38258379ns 672246 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38258663ns 672251 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38258947ns 672256 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38259402ns 672264 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38259572ns 672267 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38259856ns 672272 1a110850 fd5ff06f jal x0, -44 +38260141ns 672277 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38260425ns 672282 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38260823ns 672289 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38260993ns 672292 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38261448ns 672300 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38261618ns 672303 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38261902ns 672308 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38262187ns 672313 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38262471ns 672318 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38262925ns 672326 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38263096ns 672329 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38263380ns 672334 1a110850 fd5ff06f jal x0, -44 +38263664ns 672339 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38263948ns 672344 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38264346ns 672351 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38264517ns 672354 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38264971ns 672362 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38265142ns 672365 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38265426ns 672370 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38265710ns 672375 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38265994ns 672380 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38266449ns 672388 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38266619ns 672391 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38266904ns 672396 1a110850 fd5ff06f jal x0, -44 +38267188ns 672401 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38267472ns 672406 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38267870ns 672413 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38268040ns 672416 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38268495ns 672424 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38268665ns 672427 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38268950ns 672432 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38269234ns 672437 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38269518ns 672442 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38269973ns 672450 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38270143ns 672453 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38270427ns 672458 1a110850 fd5ff06f jal x0, -44 +38270711ns 672463 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38270995ns 672468 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38271393ns 672475 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38271564ns 672478 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38272018ns 672486 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38272189ns 672489 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38272473ns 672494 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38272757ns 672499 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38273041ns 672504 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38273496ns 672512 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38273667ns 672515 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38273951ns 672520 1a110850 fd5ff06f jal x0, -44 +38274235ns 672525 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38274519ns 672530 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38274917ns 672537 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38275087ns 672540 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38275542ns 672548 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38275713ns 672551 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38275997ns 672556 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38276281ns 672561 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38276565ns 672566 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38277020ns 672574 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38277190ns 672577 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38277474ns 672582 1a110850 fd5ff06f jal x0, -44 +38277759ns 672587 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38278043ns 672592 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38278440ns 672599 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38278611ns 672602 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38279066ns 672610 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38279236ns 672613 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38279520ns 672618 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38279804ns 672623 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38280089ns 672628 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38280543ns 672636 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38280714ns 672639 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38280998ns 672644 1a110850 fd5ff06f jal x0, -44 +38281282ns 672649 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38281566ns 672654 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38281964ns 672661 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38282135ns 672664 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38282589ns 672672 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38282760ns 672675 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38283044ns 672680 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38283328ns 672685 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38283612ns 672690 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38284067ns 672698 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38284237ns 672701 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38284522ns 672706 1a110850 fd5ff06f jal x0, -44 +38284806ns 672711 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38285090ns 672716 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38285488ns 672723 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38285658ns 672726 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38286113ns 672734 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38286283ns 672737 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38286567ns 672742 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38286852ns 672747 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38287136ns 672752 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38287590ns 672760 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38287761ns 672763 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38288045ns 672768 1a110850 fd5ff06f jal x0, -44 +38288329ns 672773 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38288613ns 672778 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38289011ns 672785 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38289182ns 672788 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38289636ns 672796 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38289807ns 672799 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38290091ns 672804 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38290375ns 672809 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38290659ns 672814 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38291114ns 672822 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38291285ns 672825 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38291569ns 672830 1a110850 fd5ff06f jal x0, -44 +38291853ns 672835 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38292137ns 672840 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38292535ns 672847 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38292705ns 672850 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38293160ns 672858 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38293330ns 672861 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38293615ns 672866 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38293899ns 672871 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38294183ns 672876 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38294638ns 672884 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38294808ns 672887 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38295092ns 672892 1a110850 fd5ff06f jal x0, -44 +38295376ns 672897 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38295661ns 672902 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38296058ns 672909 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38296229ns 672912 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38296684ns 672920 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38296854ns 672923 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38297138ns 672928 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38297422ns 672933 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38297707ns 672938 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38298161ns 672946 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38298332ns 672949 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38298616ns 672954 1a110850 fd5ff06f jal x0, -44 +38298900ns 672959 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38299184ns 672964 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38299582ns 672971 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38299752ns 672974 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38300207ns 672982 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38300378ns 672985 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38300662ns 672990 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38300946ns 672995 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38301230ns 673000 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38301685ns 673008 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38301855ns 673011 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38302139ns 673016 1a110850 fd5ff06f jal x0, -44 +38302424ns 673021 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38302708ns 673026 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38303106ns 673033 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38303276ns 673036 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38303731ns 673044 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38303901ns 673047 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38304185ns 673052 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38304470ns 673057 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38304754ns 673062 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38305208ns 673070 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38305379ns 673073 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38305663ns 673078 1a110850 fd5ff06f jal x0, -44 +38305947ns 673083 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38306231ns 673088 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38306629ns 673095 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38306800ns 673098 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38307254ns 673106 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38307425ns 673109 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38307709ns 673114 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38307993ns 673119 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38308277ns 673124 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38308732ns 673132 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38308902ns 673135 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38309187ns 673140 1a110850 fd5ff06f jal x0, -44 +38309471ns 673145 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38309755ns 673150 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38310153ns 673157 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38310323ns 673160 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38310778ns 673168 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38310948ns 673171 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38311233ns 673176 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38311517ns 673181 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38311801ns 673186 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38312256ns 673194 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38312426ns 673197 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38312710ns 673202 1a110850 fd5ff06f jal x0, -44 +38312994ns 673207 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38313279ns 673212 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38313676ns 673219 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38313847ns 673222 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38314301ns 673230 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38314472ns 673233 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38314756ns 673238 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38315040ns 673243 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38315324ns 673248 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38315779ns 673256 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38315950ns 673259 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38316234ns 673264 1a110850 fd5ff06f jal x0, -44 +38316518ns 673269 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38316802ns 673274 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38317200ns 673281 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38317370ns 673284 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38317825ns 673292 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38317996ns 673295 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38318280ns 673300 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38318564ns 673305 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38318848ns 673310 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38319303ns 673318 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38319473ns 673321 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38319757ns 673326 1a110850 fd5ff06f jal x0, -44 +38320042ns 673331 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38320326ns 673336 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38320723ns 673343 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38320894ns 673346 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38321349ns 673354 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38321519ns 673357 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38321803ns 673362 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38322087ns 673367 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38322372ns 673372 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38322826ns 673380 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38322997ns 673383 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38323281ns 673388 1a110850 fd5ff06f jal x0, -44 +38323565ns 673393 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38323849ns 673398 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38324247ns 673405 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38324418ns 673408 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38324872ns 673416 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38325043ns 673419 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38325327ns 673424 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38325611ns 673429 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38325895ns 673434 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38326350ns 673442 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38326520ns 673445 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38326805ns 673450 1a110850 fd5ff06f jal x0, -44 +38327089ns 673455 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38327373ns 673460 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38327771ns 673467 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38327941ns 673470 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38328396ns 673478 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38328566ns 673481 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38328850ns 673486 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38329135ns 673491 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38329419ns 673496 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38329873ns 673504 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38330044ns 673507 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38330328ns 673512 1a110850 fd5ff06f jal x0, -44 +38330612ns 673517 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38330896ns 673522 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38331294ns 673529 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38331465ns 673532 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38331919ns 673540 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38332090ns 673543 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38332374ns 673548 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38332658ns 673553 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38332942ns 673558 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38333397ns 673566 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38333568ns 673569 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38333852ns 673574 1a110850 fd5ff06f jal x0, -44 +38334136ns 673579 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38334420ns 673584 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38334818ns 673591 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38334988ns 673594 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38335443ns 673602 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38335613ns 673605 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38335898ns 673610 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38336182ns 673615 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38336466ns 673620 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38336921ns 673628 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38337091ns 673631 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38337375ns 673636 1a110850 fd5ff06f jal x0, -44 +38337659ns 673641 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38337944ns 673646 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38338341ns 673653 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38338512ns 673656 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38338967ns 673664 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38339137ns 673667 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38339421ns 673672 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38339705ns 673677 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38339990ns 673682 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38340444ns 673690 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38340615ns 673693 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38340899ns 673698 1a110850 fd5ff06f jal x0, -44 +38341183ns 673703 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38341467ns 673708 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38341865ns 673715 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38342035ns 673718 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38342490ns 673726 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38342661ns 673729 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38342945ns 673734 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38343229ns 673739 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38343513ns 673744 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38343968ns 673752 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38344138ns 673755 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38344422ns 673760 1a110850 fd5ff06f jal x0, -44 +38344707ns 673765 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38344991ns 673770 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38345389ns 673777 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38345559ns 673780 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38346014ns 673788 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38346184ns 673791 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38346468ns 673796 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38346753ns 673801 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38347037ns 673806 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38347491ns 673814 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38347662ns 673817 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38347946ns 673822 1a110850 fd5ff06f jal x0, -44 +38348230ns 673827 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38348514ns 673832 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38348912ns 673839 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38349083ns 673842 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38349537ns 673850 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38349708ns 673853 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38349992ns 673858 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38350276ns 673863 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38350560ns 673868 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38351015ns 673876 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38351185ns 673879 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38351470ns 673884 1a110850 fd5ff06f jal x0, -44 +38351754ns 673889 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38352038ns 673894 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38352436ns 673901 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38352606ns 673904 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38353061ns 673912 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38353231ns 673915 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38353516ns 673920 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38353800ns 673925 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38354084ns 673930 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38354539ns 673938 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38354709ns 673941 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38354993ns 673946 1a110850 fd5ff06f jal x0, -44 +38355277ns 673951 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38355562ns 673956 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38355959ns 673963 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38356130ns 673966 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38356584ns 673974 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38356755ns 673977 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38357039ns 673982 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38357323ns 673987 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38357607ns 673992 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38358062ns 674000 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38358233ns 674003 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38358517ns 674008 1a110850 fd5ff06f jal x0, -44 +38358801ns 674013 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38359085ns 674018 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38359483ns 674025 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38359653ns 674028 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38360108ns 674036 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38360279ns 674039 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38360563ns 674044 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38360847ns 674049 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38361131ns 674054 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38361586ns 674062 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38361756ns 674065 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38362040ns 674070 1a110850 fd5ff06f jal x0, -44 +38362325ns 674075 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38362609ns 674080 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38363007ns 674087 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38363177ns 674090 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38363632ns 674098 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38363802ns 674101 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38364086ns 674106 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38364370ns 674111 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38364655ns 674116 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38365109ns 674124 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38365280ns 674127 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38365564ns 674132 1a110850 fd5ff06f jal x0, -44 +38365848ns 674137 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38366132ns 674142 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38366530ns 674149 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38366701ns 674152 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38367155ns 674160 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38367326ns 674163 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38367610ns 674168 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38367894ns 674173 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38368178ns 674178 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38368633ns 674186 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38368803ns 674189 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38369088ns 674194 1a110850 fd5ff06f jal x0, -44 +38369372ns 674199 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38369656ns 674204 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38370054ns 674211 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38370224ns 674214 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38370679ns 674222 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38370849ns 674225 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38371133ns 674230 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38371418ns 674235 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38371702ns 674240 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38372156ns 674248 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38372327ns 674251 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38372611ns 674256 1a110850 fd5ff06f jal x0, -44 +38372895ns 674261 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38373179ns 674266 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38373577ns 674273 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38373748ns 674276 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38374202ns 674284 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38374373ns 674287 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38374657ns 674292 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38374941ns 674297 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38375225ns 674302 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38375680ns 674310 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38375851ns 674313 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38376135ns 674318 1a110850 fd5ff06f jal x0, -44 +38376419ns 674323 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38376703ns 674328 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38377101ns 674335 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38377271ns 674338 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38377726ns 674346 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38377896ns 674349 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38378181ns 674354 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38378465ns 674359 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38378749ns 674364 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38379204ns 674372 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38379374ns 674375 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38379658ns 674380 1a110850 fd5ff06f jal x0, -44 +38379942ns 674385 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38380227ns 674390 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38380624ns 674397 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38380795ns 674400 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38381250ns 674408 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38381420ns 674411 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38381704ns 674416 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38381988ns 674421 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38382273ns 674426 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38382727ns 674434 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38382898ns 674437 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38383182ns 674442 1a110850 fd5ff06f jal x0, -44 +38383466ns 674447 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38383750ns 674452 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38384148ns 674459 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38384319ns 674462 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38384773ns 674470 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38384944ns 674473 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38385228ns 674478 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38385512ns 674483 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38385796ns 674488 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38386251ns 674496 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38386421ns 674499 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38386705ns 674504 1a110850 fd5ff06f jal x0, -44 +38386990ns 674509 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38387274ns 674514 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38387672ns 674521 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38387842ns 674524 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38388297ns 674532 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38388467ns 674535 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38388751ns 674540 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38389036ns 674545 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38389320ns 674550 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38389774ns 674558 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38389945ns 674561 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38390229ns 674566 1a110850 fd5ff06f jal x0, -44 +38390513ns 674571 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38390797ns 674576 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38391195ns 674583 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38391366ns 674586 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38391820ns 674594 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38391991ns 674597 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38392275ns 674602 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38392559ns 674607 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38392843ns 674612 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38393298ns 674620 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38393468ns 674623 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38393753ns 674628 1a110850 fd5ff06f jal x0, -44 +38394037ns 674633 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38394321ns 674638 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38394719ns 674645 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38394889ns 674648 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38395344ns 674656 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38395514ns 674659 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38395799ns 674664 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38396083ns 674669 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38396367ns 674674 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38396822ns 674682 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38396992ns 674685 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38397276ns 674690 1a110850 fd5ff06f jal x0, -44 +38397560ns 674695 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38397845ns 674700 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38398242ns 674707 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38398413ns 674710 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38398867ns 674718 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38399038ns 674721 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38399322ns 674726 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38399606ns 674731 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38399890ns 674736 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38400345ns 674744 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38400516ns 674747 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38400800ns 674752 1a110850 fd5ff06f jal x0, -44 +38401084ns 674757 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38401368ns 674762 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38401766ns 674769 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38401936ns 674772 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38402391ns 674780 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38402562ns 674783 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38402846ns 674788 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38403130ns 674793 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38403414ns 674798 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38403869ns 674806 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38404039ns 674809 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38404323ns 674814 1a110850 fd5ff06f jal x0, -44 +38404608ns 674819 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38404892ns 674824 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38405290ns 674831 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38405460ns 674834 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38405915ns 674842 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38406085ns 674845 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38406369ns 674850 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38406653ns 674855 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38406938ns 674860 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38407392ns 674868 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38407563ns 674871 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38407847ns 674876 1a110850 fd5ff06f jal x0, -44 +38408131ns 674881 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38408415ns 674886 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38408813ns 674893 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38408984ns 674896 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38409438ns 674904 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38409609ns 674907 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38409893ns 674912 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38410177ns 674917 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38410461ns 674922 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38410916ns 674930 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38411086ns 674933 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38411371ns 674938 1a110850 fd5ff06f jal x0, -44 +38411655ns 674943 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38411939ns 674948 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38412337ns 674955 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38412507ns 674958 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38412962ns 674966 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38413132ns 674969 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38413416ns 674974 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38413701ns 674979 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38413985ns 674984 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38414439ns 674992 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38414610ns 674995 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38414894ns 675000 1a110850 fd5ff06f jal x0, -44 +38415178ns 675005 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38415462ns 675010 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38415860ns 675017 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38416031ns 675020 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38416485ns 675028 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38416656ns 675031 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38416940ns 675036 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38417224ns 675041 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38417508ns 675046 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38417963ns 675054 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38418134ns 675057 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38418418ns 675062 1a110850 fd5ff06f jal x0, -44 +38418702ns 675067 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38418986ns 675072 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38419384ns 675079 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38419554ns 675082 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38420009ns 675090 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38420179ns 675093 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38420464ns 675098 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38420748ns 675103 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38421032ns 675108 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38421487ns 675116 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38421657ns 675119 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38421941ns 675124 1a110850 fd5ff06f jal x0, -44 +38422225ns 675129 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38422510ns 675134 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38422907ns 675141 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38423078ns 675144 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38423533ns 675152 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38423703ns 675155 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38423987ns 675160 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38424271ns 675165 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38424556ns 675170 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38425010ns 675178 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38425181ns 675181 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38425465ns 675186 1a110850 fd5ff06f jal x0, -44 +38425749ns 675191 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38426033ns 675196 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38426431ns 675203 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38426602ns 675206 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38427056ns 675214 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38427227ns 675217 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38427511ns 675222 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38427795ns 675227 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38428079ns 675232 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38428534ns 675240 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38428704ns 675243 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38428988ns 675248 1a110850 fd5ff06f jal x0, -44 +38429273ns 675253 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38429557ns 675258 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38429955ns 675265 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38430125ns 675268 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38430580ns 675276 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38430750ns 675279 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38431034ns 675284 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38431319ns 675289 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38431603ns 675294 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38432057ns 675302 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38432228ns 675305 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38432512ns 675310 1a110850 fd5ff06f jal x0, -44 +38432796ns 675315 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38433080ns 675320 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38433478ns 675327 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38433649ns 675330 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38434103ns 675338 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38434274ns 675341 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38434558ns 675346 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38434842ns 675351 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38435126ns 675356 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38435581ns 675364 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38435751ns 675367 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38436036ns 675372 1a110850 fd5ff06f jal x0, -44 +38436320ns 675377 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38436604ns 675382 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38437002ns 675389 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38437172ns 675392 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38437627ns 675400 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38437797ns 675403 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38438082ns 675408 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38438366ns 675413 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38438650ns 675418 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38439105ns 675426 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38439275ns 675429 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38439559ns 675434 1a110850 fd5ff06f jal x0, -44 +38439843ns 675439 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38440128ns 675444 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38440525ns 675451 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38440696ns 675454 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38441151ns 675462 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38441321ns 675465 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38441605ns 675470 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38441889ns 675475 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38442173ns 675480 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38442628ns 675488 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38442799ns 675491 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38443083ns 675496 1a110850 fd5ff06f jal x0, -44 +38443367ns 675501 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38443651ns 675506 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38444049ns 675513 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38444219ns 675516 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38444674ns 675524 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38444845ns 675527 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38445129ns 675532 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38445413ns 675537 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38445697ns 675542 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38446152ns 675550 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38446322ns 675553 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38446606ns 675558 1a110850 fd5ff06f jal x0, -44 +38446891ns 675563 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38447175ns 675568 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38447573ns 675575 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38447743ns 675578 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38448198ns 675586 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38448368ns 675589 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38448652ns 675594 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38448936ns 675599 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38449221ns 675604 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38449675ns 675612 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38449846ns 675615 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38450130ns 675620 1a110850 fd5ff06f jal x0, -44 +38450414ns 675625 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38450698ns 675630 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38451096ns 675637 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38451267ns 675640 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38451721ns 675648 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38451892ns 675651 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38452176ns 675656 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38452460ns 675661 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38452744ns 675666 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38453199ns 675674 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38453369ns 675677 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38453654ns 675682 1a110850 fd5ff06f jal x0, -44 +38453938ns 675687 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38454222ns 675692 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38454620ns 675699 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38454790ns 675702 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38455245ns 675710 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38455415ns 675713 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38455699ns 675718 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38455984ns 675723 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38456268ns 675728 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38456722ns 675736 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38456893ns 675739 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38457177ns 675744 1a110850 fd5ff06f jal x0, -44 +38457461ns 675749 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38457745ns 675754 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38458143ns 675761 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38458314ns 675764 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38458768ns 675772 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38458939ns 675775 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38459223ns 675780 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38459507ns 675785 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38459791ns 675790 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38460246ns 675798 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38460417ns 675801 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38460701ns 675806 1a110850 fd5ff06f jal x0, -44 +38460985ns 675811 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38461269ns 675816 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38461667ns 675823 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38461837ns 675826 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38462292ns 675834 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38462463ns 675837 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38462747ns 675842 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38463031ns 675847 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38463315ns 675852 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38463770ns 675860 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38463940ns 675863 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38464224ns 675868 1a110850 fd5ff06f jal x0, -44 +38464508ns 675873 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38464793ns 675878 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38465190ns 675885 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38465361ns 675888 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38465816ns 675896 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38465986ns 675899 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38466270ns 675904 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38466554ns 675909 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38466839ns 675914 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38467293ns 675922 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38467464ns 675925 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38467748ns 675930 1a110850 fd5ff06f jal x0, -44 +38468032ns 675935 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38468316ns 675940 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38468714ns 675947 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38468885ns 675950 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38469339ns 675958 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38469510ns 675961 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38469794ns 675966 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38470078ns 675971 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38470362ns 675976 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38470817ns 675984 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38470987ns 675987 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38471271ns 675992 1a110850 fd5ff06f jal x0, -44 +38471556ns 675997 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38471840ns 676002 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38472238ns 676009 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38472408ns 676012 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38472863ns 676020 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38473033ns 676023 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38473317ns 676028 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38473602ns 676033 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38473886ns 676038 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38474340ns 676046 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38474511ns 676049 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38474795ns 676054 1a110850 fd5ff06f jal x0, -44 +38475079ns 676059 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38475363ns 676064 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38475761ns 676071 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38475932ns 676074 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38476386ns 676082 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38476557ns 676085 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38476841ns 676090 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38477125ns 676095 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38477409ns 676100 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38477864ns 676108 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38478034ns 676111 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38478319ns 676116 1a110850 fd5ff06f jal x0, -44 +38478603ns 676121 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38478887ns 676126 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38479285ns 676133 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38479455ns 676136 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38479910ns 676144 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38480080ns 676147 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38480365ns 676152 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38480649ns 676157 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38480933ns 676162 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38481388ns 676170 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38481558ns 676173 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38481842ns 676178 1a110850 fd5ff06f jal x0, -44 +38482126ns 676183 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38482411ns 676188 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38482808ns 676195 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38482979ns 676198 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38483434ns 676206 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38483604ns 676209 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38483888ns 676214 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38484172ns 676219 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38484456ns 676224 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38484911ns 676232 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38485082ns 676235 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38485366ns 676240 1a110850 fd5ff06f jal x0, -44 +38485650ns 676245 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38485934ns 676250 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38486332ns 676257 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38486502ns 676260 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38486957ns 676268 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38487128ns 676271 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38487412ns 676276 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38487696ns 676281 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38487980ns 676286 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38488435ns 676294 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38488605ns 676297 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38488889ns 676302 1a110850 fd5ff06f jal x0, -44 +38489174ns 676307 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38489458ns 676312 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38489856ns 676319 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38490026ns 676322 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38490481ns 676330 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38490651ns 676333 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38490935ns 676338 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38491219ns 676343 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38491504ns 676348 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38491958ns 676356 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38492129ns 676359 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38492413ns 676364 1a110850 fd5ff06f jal x0, -44 +38492697ns 676369 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38492981ns 676374 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38493379ns 676381 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38493550ns 676384 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38494004ns 676392 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38494175ns 676395 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38494459ns 676400 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38494743ns 676405 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38495027ns 676410 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38495482ns 676418 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38495652ns 676421 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38495937ns 676426 1a110850 fd5ff06f jal x0, -44 +38496221ns 676431 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38496505ns 676436 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38496903ns 676443 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38497073ns 676446 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38497528ns 676454 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38497698ns 676457 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38497983ns 676462 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38498267ns 676467 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38498551ns 676472 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38499005ns 676480 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38499176ns 676483 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38499460ns 676488 1a110850 fd5ff06f jal x0, -44 +38499744ns 676493 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38500028ns 676498 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38500426ns 676505 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38500597ns 676508 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38501051ns 676516 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38501222ns 676519 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38501506ns 676524 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38501790ns 676529 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38502074ns 676534 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38502529ns 676542 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38502700ns 676545 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38502984ns 676550 1a110850 fd5ff06f jal x0, -44 +38503268ns 676555 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38503552ns 676560 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38503950ns 676567 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38504120ns 676570 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38504575ns 676578 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38504746ns 676581 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38505030ns 676586 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38505314ns 676591 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38505598ns 676596 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38506053ns 676604 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38506223ns 676607 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38506507ns 676612 1a110850 fd5ff06f jal x0, -44 +38506791ns 676617 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38507076ns 676622 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38507473ns 676629 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38507644ns 676632 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38508099ns 676640 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38508269ns 676643 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38508553ns 676648 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38508837ns 676653 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38509122ns 676658 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38509576ns 676666 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38509747ns 676669 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38510031ns 676674 1a110850 fd5ff06f jal x0, -44 +38510315ns 676679 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38510599ns 676684 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38510997ns 676691 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38511168ns 676694 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38511622ns 676702 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38511793ns 676705 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38512077ns 676710 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38512361ns 676715 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38512645ns 676720 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38513100ns 676728 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38513270ns 676731 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38513554ns 676736 1a110850 fd5ff06f jal x0, -44 +38513839ns 676741 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38514123ns 676746 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38514521ns 676753 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38514691ns 676756 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38515146ns 676764 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38515316ns 676767 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38515600ns 676772 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38515885ns 676777 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38516169ns 676782 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38516623ns 676790 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38516794ns 676793 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38517078ns 676798 1a110850 fd5ff06f jal x0, -44 +38517362ns 676803 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38517646ns 676808 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38518044ns 676815 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38518215ns 676818 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38518669ns 676826 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38518840ns 676829 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38519124ns 676834 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38519408ns 676839 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38519692ns 676844 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38520147ns 676852 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38520317ns 676855 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38520602ns 676860 1a110850 fd5ff06f jal x0, -44 +38520886ns 676865 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38521170ns 676870 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38521568ns 676877 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38521738ns 676880 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38522193ns 676888 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38522363ns 676891 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38522648ns 676896 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38522932ns 676901 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38523216ns 676906 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38523671ns 676914 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38523841ns 676917 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38524125ns 676922 1a110850 fd5ff06f jal x0, -44 +38524409ns 676927 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38524694ns 676932 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38525091ns 676939 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38525262ns 676942 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38525717ns 676950 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38525887ns 676953 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38526171ns 676958 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38526455ns 676963 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38526739ns 676968 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38527194ns 676976 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38527365ns 676979 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38527649ns 676984 1a110850 fd5ff06f jal x0, -44 +38527933ns 676989 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38528217ns 676994 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38528615ns 677001 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38528785ns 677004 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38529240ns 677012 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38529411ns 677015 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38529695ns 677020 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38529979ns 677025 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38530263ns 677030 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38530718ns 677038 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38530888ns 677041 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38531172ns 677046 1a110850 fd5ff06f jal x0, -44 +38531457ns 677051 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38531741ns 677056 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38532139ns 677063 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38532309ns 677066 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38532764ns 677074 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38532934ns 677077 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38533218ns 677082 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38533503ns 677087 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38533787ns 677092 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38534241ns 677100 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38534412ns 677103 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38534696ns 677108 1a110850 fd5ff06f jal x0, -44 +38534980ns 677113 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38535264ns 677118 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38535662ns 677125 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38535833ns 677128 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38536287ns 677136 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38536458ns 677139 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38536742ns 677144 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38537026ns 677149 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38537310ns 677154 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38537765ns 677162 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38537935ns 677165 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38538220ns 677170 1a110850 fd5ff06f jal x0, -44 +38538504ns 677175 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38538788ns 677180 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38539186ns 677187 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38539356ns 677190 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38539811ns 677198 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38539981ns 677201 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38540266ns 677206 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38540550ns 677211 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38540834ns 677216 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38541288ns 677224 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38541459ns 677227 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38541743ns 677232 1a110850 fd5ff06f jal x0, -44 +38542027ns 677237 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38542311ns 677242 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38542709ns 677249 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38542880ns 677252 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38543334ns 677260 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38543505ns 677263 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38543789ns 677268 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38544073ns 677273 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38544357ns 677278 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38544812ns 677286 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38544983ns 677289 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38545267ns 677294 1a110850 fd5ff06f jal x0, -44 +38545551ns 677299 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38545835ns 677304 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38546233ns 677311 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38546403ns 677314 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38546858ns 677322 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38547029ns 677325 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38547313ns 677330 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38547597ns 677335 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38547881ns 677340 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38548336ns 677348 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38548506ns 677351 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38548790ns 677356 1a110850 fd5ff06f jal x0, -44 +38549074ns 677361 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38549359ns 677366 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38549756ns 677373 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38549927ns 677376 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38550382ns 677384 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38550552ns 677387 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38550836ns 677392 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38551120ns 677397 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38551405ns 677402 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38551859ns 677410 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38552030ns 677413 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38552314ns 677418 1a110850 fd5ff06f jal x0, -44 +38552598ns 677423 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38552882ns 677428 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38553280ns 677435 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38553451ns 677438 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38553905ns 677446 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38554076ns 677449 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38554360ns 677454 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38554644ns 677459 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38554928ns 677464 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38555383ns 677472 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38555553ns 677475 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38555837ns 677480 1a110850 fd5ff06f jal x0, -44 +38556122ns 677485 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38556406ns 677490 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38556804ns 677497 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38556974ns 677500 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38557429ns 677508 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38557599ns 677511 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38557883ns 677516 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38558168ns 677521 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38558452ns 677526 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38558906ns 677534 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38559077ns 677537 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38559361ns 677542 1a110850 fd5ff06f jal x0, -44 +38559645ns 677547 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38559929ns 677552 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38560327ns 677559 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38560498ns 677562 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38560952ns 677570 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38561123ns 677573 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38561407ns 677578 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38561691ns 677583 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38561975ns 677588 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38562430ns 677596 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38562600ns 677599 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38562885ns 677604 1a110850 fd5ff06f jal x0, -44 +38563169ns 677609 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38563453ns 677614 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38563851ns 677621 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38564021ns 677624 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38564476ns 677632 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38564646ns 677635 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38564931ns 677640 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38565215ns 677645 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38565499ns 677650 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38565954ns 677658 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38566124ns 677661 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38566408ns 677666 1a110850 fd5ff06f jal x0, -44 +38566692ns 677671 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38566977ns 677676 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38567374ns 677683 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38567545ns 677686 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38568000ns 677694 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38568170ns 677697 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38568454ns 677702 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38568738ns 677707 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38569023ns 677712 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38569477ns 677720 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38569648ns 677723 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38569932ns 677728 1a110850 fd5ff06f jal x0, -44 +38570216ns 677733 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38570500ns 677738 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38570898ns 677745 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38571068ns 677748 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38571523ns 677756 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38571694ns 677759 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38571978ns 677764 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38572262ns 677769 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38572546ns 677774 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38573001ns 677782 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38573171ns 677785 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38573455ns 677790 1a110850 fd5ff06f jal x0, -44 +38573740ns 677795 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38574024ns 677800 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38574422ns 677807 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38574592ns 677810 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38575047ns 677818 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38575217ns 677821 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38575501ns 677826 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38575786ns 677831 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38576070ns 677836 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38576524ns 677844 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38576695ns 677847 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38576979ns 677852 1a110850 fd5ff06f jal x0, -44 +38577263ns 677857 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38577547ns 677862 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38577945ns 677869 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38578116ns 677872 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38578570ns 677880 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38578741ns 677883 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38579025ns 677888 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38579309ns 677893 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38579593ns 677898 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38580048ns 677906 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38580218ns 677909 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38580503ns 677914 1a110850 fd5ff06f jal x0, -44 +38580787ns 677919 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38581071ns 677924 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38581469ns 677931 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38581639ns 677934 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38582094ns 677942 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38582264ns 677945 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38582549ns 677950 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38582833ns 677955 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38583117ns 677960 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38583571ns 677968 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38583742ns 677971 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38584026ns 677976 1a110850 fd5ff06f jal x0, -44 +38584310ns 677981 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38584594ns 677986 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38584992ns 677993 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38585163ns 677996 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38585617ns 678004 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38585788ns 678007 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38586072ns 678012 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38586356ns 678017 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38586640ns 678022 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38587095ns 678030 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38587266ns 678033 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38587550ns 678038 1a110850 fd5ff06f jal x0, -44 +38587834ns 678043 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38588118ns 678048 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38588516ns 678055 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38588686ns 678058 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38589141ns 678066 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38589312ns 678069 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38589596ns 678074 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38589880ns 678079 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38590164ns 678084 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38590619ns 678092 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38590789ns 678095 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38591073ns 678100 1a110850 fd5ff06f jal x0, -44 +38591357ns 678105 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38591642ns 678110 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38592039ns 678117 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38592210ns 678120 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38592665ns 678128 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38592835ns 678131 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38593119ns 678136 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38593403ns 678141 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38593688ns 678146 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38594142ns 678154 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38594313ns 678157 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38594597ns 678162 1a110850 fd5ff06f jal x0, -44 +38594881ns 678167 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38595165ns 678172 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38595563ns 678179 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38595734ns 678182 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38596188ns 678190 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38596359ns 678193 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38596643ns 678198 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38596927ns 678203 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38597211ns 678208 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38597666ns 678216 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38597836ns 678219 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38598120ns 678224 1a110850 fd5ff06f jal x0, -44 +38598405ns 678229 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38598689ns 678234 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38599087ns 678241 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38599257ns 678244 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38599712ns 678252 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38599882ns 678255 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38600166ns 678260 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38600451ns 678265 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38600735ns 678270 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38601189ns 678278 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38601360ns 678281 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38601644ns 678286 1a110850 fd5ff06f jal x0, -44 +38601928ns 678291 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38602212ns 678296 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38602610ns 678303 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38602781ns 678306 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38603235ns 678314 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38603406ns 678317 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38603690ns 678322 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38603974ns 678327 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38604258ns 678332 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38604713ns 678340 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38604883ns 678343 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38605168ns 678348 1a110850 fd5ff06f jal x0, -44 +38605452ns 678353 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38605736ns 678358 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38606134ns 678365 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38606304ns 678368 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38606759ns 678376 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38606929ns 678379 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38607214ns 678384 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38607498ns 678389 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38607782ns 678394 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38608237ns 678402 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38608407ns 678405 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38608691ns 678410 1a110850 fd5ff06f jal x0, -44 +38608975ns 678415 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38609260ns 678420 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38609657ns 678427 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38609828ns 678430 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38610283ns 678438 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38610453ns 678441 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38610737ns 678446 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38611021ns 678451 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38611306ns 678456 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38611760ns 678464 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38611931ns 678467 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38612215ns 678472 1a110850 fd5ff06f jal x0, -44 +38612499ns 678477 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38612783ns 678482 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38613181ns 678489 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38613351ns 678492 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38613806ns 678500 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38613977ns 678503 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38614261ns 678508 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38614545ns 678513 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38614829ns 678518 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38615284ns 678526 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38615454ns 678529 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38615738ns 678534 1a110850 fd5ff06f jal x0, -44 +38616023ns 678539 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38616307ns 678544 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38616705ns 678551 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38616875ns 678554 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38617330ns 678562 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38617500ns 678565 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38617784ns 678570 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38618069ns 678575 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38618353ns 678580 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38618807ns 678588 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38618978ns 678591 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38619262ns 678596 1a110850 fd5ff06f jal x0, -44 +38619546ns 678601 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38619830ns 678606 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38620228ns 678613 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38620399ns 678616 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38620853ns 678624 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38621024ns 678627 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38621308ns 678632 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38621592ns 678637 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38621876ns 678642 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38622331ns 678650 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38622501ns 678653 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38622786ns 678658 1a110850 fd5ff06f jal x0, -44 +38623070ns 678663 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38623354ns 678668 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38623752ns 678675 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38623922ns 678678 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38624377ns 678686 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38624547ns 678689 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38624832ns 678694 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38625116ns 678699 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38625400ns 678704 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38625855ns 678712 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38626025ns 678715 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38626309ns 678720 1a110850 fd5ff06f jal x0, -44 +38626593ns 678725 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38626877ns 678730 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38627275ns 678737 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38627446ns 678740 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38627900ns 678748 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38628071ns 678751 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38628355ns 678756 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38628639ns 678761 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38628923ns 678766 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38629378ns 678774 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38629549ns 678777 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38629833ns 678782 1a110850 fd5ff06f jal x0, -44 +38630117ns 678787 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38630401ns 678792 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38630799ns 678799 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38630969ns 678802 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38631424ns 678810 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38631595ns 678813 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38631879ns 678818 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38632163ns 678823 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38632447ns 678828 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38632902ns 678836 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38633072ns 678839 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38633356ns 678844 1a110850 fd5ff06f jal x0, -44 +38633640ns 678849 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38633925ns 678854 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38634322ns 678861 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38634493ns 678864 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38634948ns 678872 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38635118ns 678875 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38635402ns 678880 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38635686ns 678885 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38635971ns 678890 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38636425ns 678898 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38636596ns 678901 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38636880ns 678906 1a110850 fd5ff06f jal x0, -44 +38637164ns 678911 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38637448ns 678916 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38637846ns 678923 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38638017ns 678926 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38638471ns 678934 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38638642ns 678937 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38638926ns 678942 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38639210ns 678947 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38639494ns 678952 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38639949ns 678960 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38640119ns 678963 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38640403ns 678968 1a110850 fd5ff06f jal x0, -44 +38640688ns 678973 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38640972ns 678978 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38641370ns 678985 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38641540ns 678988 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38641995ns 678996 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38642165ns 678999 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38642449ns 679004 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38642734ns 679009 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38643018ns 679014 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38643472ns 679022 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38643643ns 679025 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38643927ns 679030 1a110850 fd5ff06f jal x0, -44 +38644211ns 679035 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38644495ns 679040 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38644893ns 679047 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38645064ns 679050 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38645518ns 679058 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38645689ns 679061 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38645973ns 679066 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38646257ns 679071 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38646541ns 679076 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38646996ns 679084 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38647167ns 679087 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38647451ns 679092 1a110850 fd5ff06f jal x0, -44 +38647735ns 679097 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38648019ns 679102 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38648417ns 679109 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38648587ns 679112 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38649042ns 679120 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38649212ns 679123 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38649497ns 679128 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38649781ns 679133 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38650065ns 679138 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38650520ns 679146 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38650690ns 679149 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38650974ns 679154 1a110850 fd5ff06f jal x0, -44 +38651258ns 679159 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38651543ns 679164 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38651940ns 679171 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38652111ns 679174 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38652566ns 679182 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38652736ns 679185 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38653020ns 679190 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38653304ns 679195 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38653589ns 679200 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38654043ns 679208 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38654214ns 679211 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38654498ns 679216 1a110850 fd5ff06f jal x0, -44 +38654782ns 679221 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38655066ns 679226 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38655464ns 679233 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38655634ns 679236 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38656089ns 679244 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38656260ns 679247 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38656544ns 679252 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38656828ns 679257 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38657112ns 679262 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38657567ns 679270 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38657737ns 679273 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38658021ns 679278 1a110850 fd5ff06f jal x0, -44 +38658306ns 679283 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38658590ns 679288 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38658988ns 679295 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38659158ns 679298 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38659613ns 679306 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38659783ns 679309 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38660067ns 679314 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38660352ns 679319 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38660636ns 679324 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38661090ns 679332 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38661261ns 679335 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38661545ns 679340 1a110850 fd5ff06f jal x0, -44 +38661829ns 679345 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38662113ns 679350 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38662511ns 679357 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38662682ns 679360 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38663136ns 679368 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38663307ns 679371 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38663591ns 679376 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38663875ns 679381 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38664159ns 679386 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38664614ns 679394 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38664784ns 679397 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38665069ns 679402 1a110850 fd5ff06f jal x0, -44 +38665353ns 679407 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38665637ns 679412 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38666035ns 679419 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38666205ns 679422 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38666660ns 679430 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38666830ns 679433 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38667115ns 679438 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38667399ns 679443 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38667683ns 679448 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38668138ns 679456 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38668308ns 679459 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38668592ns 679464 1a110850 fd5ff06f jal x0, -44 +38668876ns 679469 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38669160ns 679474 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38669558ns 679481 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38669729ns 679484 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38670183ns 679492 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38670354ns 679495 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38670638ns 679500 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38670922ns 679505 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38671206ns 679510 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38671661ns 679518 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38671832ns 679521 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38672116ns 679526 1a110850 fd5ff06f jal x0, -44 +38672400ns 679531 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38672684ns 679536 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38673082ns 679543 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38673252ns 679546 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38673707ns 679554 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38673878ns 679557 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38674162ns 679562 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38674446ns 679567 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38674730ns 679572 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38675185ns 679580 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38675355ns 679583 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38675639ns 679588 1a110850 fd5ff06f jal x0, -44 +38675923ns 679593 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38676208ns 679598 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38676605ns 679605 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38676776ns 679608 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38677231ns 679616 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38677401ns 679619 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38677685ns 679624 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38677969ns 679629 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38678254ns 679634 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38678708ns 679642 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38678879ns 679645 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38679163ns 679650 1a110850 fd5ff06f jal x0, -44 +38679447ns 679655 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38679731ns 679660 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38680129ns 679667 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38680300ns 679670 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38680754ns 679678 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38680925ns 679681 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38681209ns 679686 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38681493ns 679691 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38681777ns 679696 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38682232ns 679704 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38682402ns 679707 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38682687ns 679712 1a110850 fd5ff06f jal x0, -44 +38682971ns 679717 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38683255ns 679722 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38683653ns 679729 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38683823ns 679732 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38684278ns 679740 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38684448ns 679743 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38684732ns 679748 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38685017ns 679753 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38685301ns 679758 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38685755ns 679766 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38685926ns 679769 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38686210ns 679774 1a110850 fd5ff06f jal x0, -44 +38686494ns 679779 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38686778ns 679784 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38687176ns 679791 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38687347ns 679794 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38687801ns 679802 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38687972ns 679805 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38688256ns 679810 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38688540ns 679815 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38688824ns 679820 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38689279ns 679828 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38689450ns 679831 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38689734ns 679836 1a110850 fd5ff06f jal x0, -44 +38690018ns 679841 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38690302ns 679846 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38690700ns 679853 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38690870ns 679856 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38691325ns 679864 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38691495ns 679867 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38691780ns 679872 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38692064ns 679877 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38692348ns 679882 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38692803ns 679890 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38692973ns 679893 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38693257ns 679898 1a110850 fd5ff06f jal x0, -44 +38693541ns 679903 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38693826ns 679908 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38694223ns 679915 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38694394ns 679918 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38694849ns 679926 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38695019ns 679929 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38695303ns 679934 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38695587ns 679939 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38695872ns 679944 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38696326ns 679952 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38696497ns 679955 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38696781ns 679960 1a110850 fd5ff06f jal x0, -44 +38697065ns 679965 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38697349ns 679970 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38697747ns 679977 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38697917ns 679980 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38698372ns 679988 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38698543ns 679991 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38698827ns 679996 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38699111ns 680001 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38699395ns 680006 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38699850ns 680014 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38700020ns 680017 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38700304ns 680022 1a110850 fd5ff06f jal x0, -44 +38700589ns 680027 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38700873ns 680032 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38701271ns 680039 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38701441ns 680042 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38701896ns 680050 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38702066ns 680053 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38702350ns 680058 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38702635ns 680063 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38702919ns 680068 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38703373ns 680076 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38703544ns 680079 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38703828ns 680084 1a110850 fd5ff06f jal x0, -44 +38704112ns 680089 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38704396ns 680094 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38704794ns 680101 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38704965ns 680104 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38705419ns 680112 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38705590ns 680115 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38705874ns 680120 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38706158ns 680125 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38706442ns 680130 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38706897ns 680138 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38707067ns 680141 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38707352ns 680146 1a110850 fd5ff06f jal x0, -44 +38707636ns 680151 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38707920ns 680156 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38708318ns 680163 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38708488ns 680166 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38708943ns 680174 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38709113ns 680177 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38709398ns 680182 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38709682ns 680187 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38709966ns 680192 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38710421ns 680200 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38710591ns 680203 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38710875ns 680208 1a110850 fd5ff06f jal x0, -44 +38711159ns 680213 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38711443ns 680218 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38711841ns 680225 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38712012ns 680228 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38712466ns 680236 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38712637ns 680239 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38712921ns 680244 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38713205ns 680249 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38713489ns 680254 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38713944ns 680262 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38714115ns 680265 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38714399ns 680270 1a110850 fd5ff06f jal x0, -44 +38714683ns 680275 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38714967ns 680280 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38715365ns 680287 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38715535ns 680290 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38715990ns 680298 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38716161ns 680301 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38716445ns 680306 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38716729ns 680311 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38717013ns 680316 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38717468ns 680324 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38717638ns 680327 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38717922ns 680332 1a110850 fd5ff06f jal x0, -44 +38718207ns 680337 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38718491ns 680342 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38718888ns 680349 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38719059ns 680352 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38719514ns 680360 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38719684ns 680363 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38719968ns 680368 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38720252ns 680373 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38720537ns 680378 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38720991ns 680386 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38721162ns 680389 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38721446ns 680394 1a110850 fd5ff06f jal x0, -44 +38721730ns 680399 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38722014ns 680404 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38722412ns 680411 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38722583ns 680414 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38723037ns 680422 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38723208ns 680425 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38723492ns 680430 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38723776ns 680435 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38724060ns 680440 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38724515ns 680448 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38724685ns 680451 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38724970ns 680456 1a110850 fd5ff06f jal x0, -44 +38725254ns 680461 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38725538ns 680466 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38725936ns 680473 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38726106ns 680476 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38726561ns 680484 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38726731ns 680487 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38727015ns 680492 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38727300ns 680497 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38727584ns 680502 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38728038ns 680510 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38728209ns 680513 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38728493ns 680518 1a110850 fd5ff06f jal x0, -44 +38728777ns 680523 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38729061ns 680528 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38729459ns 680535 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38729630ns 680538 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38730084ns 680546 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38730255ns 680549 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38730539ns 680554 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38730823ns 680559 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38731107ns 680564 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38731562ns 680572 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38731733ns 680575 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38732017ns 680580 1a110850 fd5ff06f jal x0, -44 +38732301ns 680585 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38732585ns 680590 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38732983ns 680597 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38733153ns 680600 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38733608ns 680608 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38733778ns 680611 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38734063ns 680616 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38734347ns 680621 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38734631ns 680626 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38735086ns 680634 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38735256ns 680637 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38735540ns 680642 1a110850 fd5ff06f jal x0, -44 +38735824ns 680647 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38736109ns 680652 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38736506ns 680659 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38736677ns 680662 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38737132ns 680670 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38737302ns 680673 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38737586ns 680678 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38737870ns 680683 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38738155ns 680688 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38738609ns 680696 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38738780ns 680699 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38739064ns 680704 1a110850 fd5ff06f jal x0, -44 +38739348ns 680709 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38739632ns 680714 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38740030ns 680721 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38740200ns 680724 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38740655ns 680732 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38740826ns 680735 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38741110ns 680740 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38741394ns 680745 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38741678ns 680750 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38742133ns 680758 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38742303ns 680761 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38742587ns 680766 1a110850 fd5ff06f jal x0, -44 +38742872ns 680771 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38743156ns 680776 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38743554ns 680783 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38743724ns 680786 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38744179ns 680794 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38744349ns 680797 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38744633ns 680802 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38744918ns 680807 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38745202ns 680812 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38745656ns 680820 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38745827ns 680823 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38746111ns 680828 1a110850 fd5ff06f jal x0, -44 +38746395ns 680833 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38746679ns 680838 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38747077ns 680845 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38747248ns 680848 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38747702ns 680856 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38747873ns 680859 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38748157ns 680864 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38748441ns 680869 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38748725ns 680874 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38749180ns 680882 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38749350ns 680885 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38749635ns 680890 1a110850 fd5ff06f jal x0, -44 +38749919ns 680895 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38750203ns 680900 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38750601ns 680907 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38750771ns 680910 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38751226ns 680918 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38751396ns 680921 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38751681ns 680926 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38751965ns 680931 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38752249ns 680936 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38752704ns 680944 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38752874ns 680947 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38753158ns 680952 1a110850 fd5ff06f jal x0, -44 +38753442ns 680957 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38753727ns 680962 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38754124ns 680969 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38754295ns 680972 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38754749ns 680980 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38754920ns 680983 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38755204ns 680988 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38755488ns 680993 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38755772ns 680998 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38756227ns 681006 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38756398ns 681009 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38756682ns 681014 1a110850 fd5ff06f jal x0, -44 +38756966ns 681019 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38757250ns 681024 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38757648ns 681031 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38757818ns 681034 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38758273ns 681042 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38758444ns 681045 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38758728ns 681050 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38759012ns 681055 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38759296ns 681060 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38759751ns 681068 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38759921ns 681071 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38760205ns 681076 1a110850 fd5ff06f jal x0, -44 +38760490ns 681081 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38760774ns 681086 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38761171ns 681093 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38761342ns 681096 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38761797ns 681104 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38761967ns 681107 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38762251ns 681112 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38762535ns 681117 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38762820ns 681122 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38763274ns 681130 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38763445ns 681133 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38763729ns 681138 1a110850 fd5ff06f jal x0, -44 +38764013ns 681143 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38764297ns 681148 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38764695ns 681155 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38764866ns 681158 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38765320ns 681166 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38765491ns 681169 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38765775ns 681174 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38766059ns 681179 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38766343ns 681184 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38766798ns 681192 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38766968ns 681195 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38767253ns 681200 1a110850 fd5ff06f jal x0, -44 +38767537ns 681205 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38767821ns 681210 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38768219ns 681217 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38768389ns 681220 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38768844ns 681228 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38769014ns 681231 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38769298ns 681236 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38769583ns 681241 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38769867ns 681246 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38770321ns 681254 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38770492ns 681257 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38770776ns 681262 1a110850 fd5ff06f jal x0, -44 +38771060ns 681267 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38771344ns 681272 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38771742ns 681279 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38771913ns 681282 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38772367ns 681290 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38772538ns 681293 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38772822ns 681298 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38773106ns 681303 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38773390ns 681308 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38773845ns 681316 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38774016ns 681319 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38774300ns 681324 1a110850 fd5ff06f jal x0, -44 +38774584ns 681329 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38774868ns 681334 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38775266ns 681341 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38775436ns 681344 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38775891ns 681352 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38776061ns 681355 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38776346ns 681360 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38776630ns 681365 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38776914ns 681370 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38777369ns 681378 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38777539ns 681381 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38777823ns 681386 1a110850 fd5ff06f jal x0, -44 +38778107ns 681391 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38778392ns 681396 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38778789ns 681403 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38778960ns 681406 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38779415ns 681414 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38779585ns 681417 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38779869ns 681422 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38780153ns 681427 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38780438ns 681432 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38780892ns 681440 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38781063ns 681443 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38781347ns 681448 1a110850 fd5ff06f jal x0, -44 +38781631ns 681453 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38781915ns 681458 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38782313ns 681465 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38782483ns 681468 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38782938ns 681476 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38783109ns 681479 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38783393ns 681484 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38783677ns 681489 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38783961ns 681494 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38784416ns 681502 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38784586ns 681505 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38784870ns 681510 1a110850 fd5ff06f jal x0, -44 +38785155ns 681515 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38785439ns 681520 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38785837ns 681527 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38786007ns 681530 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38786462ns 681538 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38786632ns 681541 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38786916ns 681546 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38787201ns 681551 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38787485ns 681556 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38787939ns 681564 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38788110ns 681567 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38788394ns 681572 1a110850 fd5ff06f jal x0, -44 +38788678ns 681577 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38788962ns 681582 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38789360ns 681589 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38789531ns 681592 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38789985ns 681600 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38790156ns 681603 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38790440ns 681608 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38790724ns 681613 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38791008ns 681618 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38791463ns 681626 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38791633ns 681629 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38791918ns 681634 1a110850 fd5ff06f jal x0, -44 +38792202ns 681639 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38792486ns 681644 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38792884ns 681651 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38793054ns 681654 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38793509ns 681662 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38793679ns 681665 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38793964ns 681670 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38794248ns 681675 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38794532ns 681680 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38794987ns 681688 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38795157ns 681691 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38795441ns 681696 1a110850 fd5ff06f jal x0, -44 +38795725ns 681701 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38796010ns 681706 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38796407ns 681713 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38796578ns 681716 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38797032ns 681724 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38797203ns 681727 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38797487ns 681732 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38797771ns 681737 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38798055ns 681742 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38798510ns 681750 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38798681ns 681753 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38798965ns 681758 1a110850 fd5ff06f jal x0, -44 +38799249ns 681763 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38799533ns 681768 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38799931ns 681775 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38800101ns 681778 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38800556ns 681786 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38800727ns 681789 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38801011ns 681794 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38801295ns 681799 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38801579ns 681804 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38802034ns 681812 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38802204ns 681815 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38802488ns 681820 1a110850 fd5ff06f jal x0, -44 +38802773ns 681825 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38803057ns 681830 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38803455ns 681837 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38803625ns 681840 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38804080ns 681848 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38804250ns 681851 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38804534ns 681856 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38804818ns 681861 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38805103ns 681866 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38805557ns 681874 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38805728ns 681877 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38806012ns 681882 1a110850 fd5ff06f jal x0, -44 +38806296ns 681887 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38806580ns 681892 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38806978ns 681899 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38807149ns 681902 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38807603ns 681910 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38807774ns 681913 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38808058ns 681918 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38808342ns 681923 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38808626ns 681928 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38809081ns 681936 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38809251ns 681939 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38809536ns 681944 1a110850 fd5ff06f jal x0, -44 +38809820ns 681949 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38810104ns 681954 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38810502ns 681961 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38810672ns 681964 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38811127ns 681972 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38811297ns 681975 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38811581ns 681980 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38811866ns 681985 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38812150ns 681990 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38812604ns 681998 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38812775ns 682001 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38813059ns 682006 1a110850 fd5ff06f jal x0, -44 +38813343ns 682011 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38813627ns 682016 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38814025ns 682023 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38814196ns 682026 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38814650ns 682034 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38814821ns 682037 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38815105ns 682042 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38815389ns 682047 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38815673ns 682052 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38816128ns 682060 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38816299ns 682063 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38816583ns 682068 1a110850 fd5ff06f jal x0, -44 +38816867ns 682073 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38817151ns 682078 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38817549ns 682085 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38817719ns 682088 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38818174ns 682096 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38818344ns 682099 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38818629ns 682104 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38818913ns 682109 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38819197ns 682114 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38819652ns 682122 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38819822ns 682125 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38820106ns 682130 1a110850 fd5ff06f jal x0, -44 +38820390ns 682135 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38820675ns 682140 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38821072ns 682147 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38821243ns 682150 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38821698ns 682158 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38821868ns 682161 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38822152ns 682166 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38822436ns 682171 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38822721ns 682176 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38823175ns 682184 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38823346ns 682187 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38823630ns 682192 1a110850 fd5ff06f jal x0, -44 +38823914ns 682197 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38824198ns 682202 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38824596ns 682209 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38824767ns 682212 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38825221ns 682220 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38825392ns 682223 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38825676ns 682228 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38825960ns 682233 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38826244ns 682238 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38826699ns 682246 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38826869ns 682249 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38827153ns 682254 1a110850 fd5ff06f jal x0, -44 +38827438ns 682259 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38827722ns 682264 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38828120ns 682271 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38828290ns 682274 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38828745ns 682282 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38828915ns 682285 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38829199ns 682290 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38829484ns 682295 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38829768ns 682300 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38830222ns 682308 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38830393ns 682311 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38830677ns 682316 1a110850 fd5ff06f jal x0, -44 +38830961ns 682321 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38831245ns 682326 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38831643ns 682333 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38831814ns 682336 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38832268ns 682344 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38832439ns 682347 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38832723ns 682352 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38833007ns 682357 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38833291ns 682362 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38833746ns 682370 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38833916ns 682373 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38834201ns 682378 1a110850 fd5ff06f jal x0, -44 +38834485ns 682383 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38834769ns 682388 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38835167ns 682395 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38835337ns 682398 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38835792ns 682406 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38835962ns 682409 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38836247ns 682414 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38836531ns 682419 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38836815ns 682424 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38837270ns 682432 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38837440ns 682435 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38837724ns 682440 1a110850 fd5ff06f jal x0, -44 +38838008ns 682445 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38838293ns 682450 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38838690ns 682457 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38838861ns 682460 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38839315ns 682468 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38839486ns 682471 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38839770ns 682476 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38840054ns 682481 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38840338ns 682486 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38840793ns 682494 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38840964ns 682497 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38841248ns 682502 1a110850 fd5ff06f jal x0, -44 +38841532ns 682507 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38841816ns 682512 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38842214ns 682519 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38842384ns 682522 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38842839ns 682530 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38843010ns 682533 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38843294ns 682538 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38843578ns 682543 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38843862ns 682548 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38844317ns 682556 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38844487ns 682559 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38844771ns 682564 1a110850 fd5ff06f jal x0, -44 +38845056ns 682569 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38845340ns 682574 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38845738ns 682581 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38845908ns 682584 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38846363ns 682592 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38846533ns 682595 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38846817ns 682600 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38847101ns 682605 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38847386ns 682610 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38847840ns 682618 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38848011ns 682621 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38848295ns 682626 1a110850 fd5ff06f jal x0, -44 +38848579ns 682631 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38848863ns 682636 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38849261ns 682643 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38849432ns 682646 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38849886ns 682654 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38850057ns 682657 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38850341ns 682662 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38850625ns 682667 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38850909ns 682672 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38851364ns 682680 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38851534ns 682683 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38851819ns 682688 1a110850 fd5ff06f jal x0, -44 +38852103ns 682693 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38852387ns 682698 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38852785ns 682705 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38852955ns 682708 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38853410ns 682716 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38853580ns 682719 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38853864ns 682724 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38854149ns 682729 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38854433ns 682734 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38854887ns 682742 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38855058ns 682745 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38855342ns 682750 1a110850 fd5ff06f jal x0, -44 +38855626ns 682755 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38855910ns 682760 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38856308ns 682767 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38856479ns 682770 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38856933ns 682778 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38857104ns 682781 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38857388ns 682786 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38857672ns 682791 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38857956ns 682796 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38858411ns 682804 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38858582ns 682807 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38858866ns 682812 1a110850 fd5ff06f jal x0, -44 +38859150ns 682817 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38859434ns 682822 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38859832ns 682829 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38860002ns 682832 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38860457ns 682840 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38860627ns 682843 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38860912ns 682848 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38861196ns 682853 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38861480ns 682858 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38861935ns 682866 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38862105ns 682869 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38862389ns 682874 1a110850 fd5ff06f jal x0, -44 +38862673ns 682879 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38862958ns 682884 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38863355ns 682891 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38863526ns 682894 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38863981ns 682902 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38864151ns 682905 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38864435ns 682910 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38864719ns 682915 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38865004ns 682920 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38865458ns 682928 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38865629ns 682931 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38865913ns 682936 1a110850 fd5ff06f jal x0, -44 +38866197ns 682941 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38866481ns 682946 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38866879ns 682953 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38867050ns 682956 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38867504ns 682964 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38867675ns 682967 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38867959ns 682972 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38868243ns 682977 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38868527ns 682982 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38868982ns 682990 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38869152ns 682993 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38869436ns 682998 1a110850 fd5ff06f jal x0, -44 +38869721ns 683003 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38870005ns 683008 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38870403ns 683015 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38870573ns 683018 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38871028ns 683026 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38871198ns 683029 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38871482ns 683034 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38871767ns 683039 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38872051ns 683044 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38872505ns 683052 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38872676ns 683055 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38872960ns 683060 1a110850 fd5ff06f jal x0, -44 +38873244ns 683065 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38873528ns 683070 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38873926ns 683077 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38874097ns 683080 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38874551ns 683088 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38874722ns 683091 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38875006ns 683096 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38875290ns 683101 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38875574ns 683106 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38876029ns 683114 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38876199ns 683117 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38876484ns 683122 1a110850 fd5ff06f jal x0, -44 +38876768ns 683127 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38877052ns 683132 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38877450ns 683139 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38877620ns 683142 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38878075ns 683150 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38878245ns 683153 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38878530ns 683158 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38878814ns 683163 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38879098ns 683168 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38879553ns 683176 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38879723ns 683179 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38880007ns 683184 1a110850 fd5ff06f jal x0, -44 +38880291ns 683189 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38880576ns 683194 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38880973ns 683201 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38881144ns 683204 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38881599ns 683212 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38881769ns 683215 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38882053ns 683220 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38882337ns 683225 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38882621ns 683230 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38883076ns 683238 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38883247ns 683241 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38883531ns 683246 1a110850 fd5ff06f jal x0, -44 +38883815ns 683251 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38884099ns 683256 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38884497ns 683263 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38884667ns 683266 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38885122ns 683274 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38885293ns 683277 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38885577ns 683282 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38885861ns 683287 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38886145ns 683292 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38886600ns 683300 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38886770ns 683303 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38887054ns 683308 1a110850 fd5ff06f jal x0, -44 +38887339ns 683313 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38887623ns 683318 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38888021ns 683325 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38888191ns 683328 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38888646ns 683336 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38888816ns 683339 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38889100ns 683344 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38889384ns 683349 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38889669ns 683354 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38890123ns 683362 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38890294ns 683365 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38890578ns 683370 1a110850 fd5ff06f jal x0, -44 +38890862ns 683375 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38891146ns 683380 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38891544ns 683387 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38891715ns 683390 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38892169ns 683398 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38892340ns 683401 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38892624ns 683406 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38892908ns 683411 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38893192ns 683416 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38893647ns 683424 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38893817ns 683427 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38894102ns 683432 1a110850 fd5ff06f jal x0, -44 +38894386ns 683437 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38894670ns 683442 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38895068ns 683449 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38895238ns 683452 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38895693ns 683460 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38895863ns 683463 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38896147ns 683468 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38896432ns 683473 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38896716ns 683478 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38897170ns 683486 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38897341ns 683489 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38897625ns 683494 1a110850 fd5ff06f jal x0, -44 +38897909ns 683499 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38898193ns 683504 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38898591ns 683511 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38898762ns 683514 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38899216ns 683522 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38899387ns 683525 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38899671ns 683530 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38899955ns 683535 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38900239ns 683540 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38900694ns 683548 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38900865ns 683551 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38901149ns 683556 1a110850 fd5ff06f jal x0, -44 +38901433ns 683561 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38901717ns 683566 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38902115ns 683573 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38902285ns 683576 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38902740ns 683584 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38902911ns 683587 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38903195ns 683592 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38903479ns 683597 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38903763ns 683602 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38904218ns 683610 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38904388ns 683613 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38904672ns 683618 1a110850 fd5ff06f jal x0, -44 +38904956ns 683623 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38905241ns 683628 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38905638ns 683635 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38905809ns 683638 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38906264ns 683646 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38906434ns 683649 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38906718ns 683654 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38907002ns 683659 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38907287ns 683664 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38907741ns 683672 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38907912ns 683675 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38908196ns 683680 1a110850 fd5ff06f jal x0, -44 +38908480ns 683685 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38908764ns 683690 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38909162ns 683697 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38909333ns 683700 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38909787ns 683708 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38909958ns 683711 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38910242ns 683716 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38910526ns 683721 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38910810ns 683726 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38911265ns 683734 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38911435ns 683737 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38911719ns 683742 1a110850 fd5ff06f jal x0, -44 +38912004ns 683747 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38912288ns 683752 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38912686ns 683759 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38912856ns 683762 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38913311ns 683770 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38913481ns 683773 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38913765ns 683778 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38914050ns 683783 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38914334ns 683788 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38914788ns 683796 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38914959ns 683799 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38915243ns 683804 1a110850 fd5ff06f jal x0, -44 +38915527ns 683809 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38915811ns 683814 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38916209ns 683821 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38916380ns 683824 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38916834ns 683832 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38917005ns 683835 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38917289ns 683840 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38917573ns 683845 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38917857ns 683850 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38918312ns 683858 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38918482ns 683861 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38918767ns 683866 1a110850 fd5ff06f jal x0, -44 +38919051ns 683871 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38919335ns 683876 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38919733ns 683883 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38919903ns 683886 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38920358ns 683894 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38920528ns 683897 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38920813ns 683902 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38921097ns 683907 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38921381ns 683912 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38921836ns 683920 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38922006ns 683923 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38922290ns 683928 1a110850 fd5ff06f jal x0, -44 +38922574ns 683933 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38922859ns 683938 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38923256ns 683945 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38923427ns 683948 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38923882ns 683956 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38924052ns 683959 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38924336ns 683964 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38924620ns 683969 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38924904ns 683974 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38925359ns 683982 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38925530ns 683985 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38925814ns 683990 1a110850 fd5ff06f jal x0, -44 +38926098ns 683995 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38926382ns 684000 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38926780ns 684007 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38926950ns 684010 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38927405ns 684018 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38927576ns 684021 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38927860ns 684026 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38928144ns 684031 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38928428ns 684036 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38928883ns 684044 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38929053ns 684047 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38929337ns 684052 1a110850 fd5ff06f jal x0, -44 +38929622ns 684057 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38929906ns 684062 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38930304ns 684069 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38930474ns 684072 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38930929ns 684080 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38931099ns 684083 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38931383ns 684088 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38931667ns 684093 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38931952ns 684098 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38932406ns 684106 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38932577ns 684109 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38932861ns 684114 1a110850 fd5ff06f jal x0, -44 +38933145ns 684119 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38933429ns 684124 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38933827ns 684131 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38933998ns 684134 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38934452ns 684142 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38934623ns 684145 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38934907ns 684150 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38935191ns 684155 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38935475ns 684160 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38935930ns 684168 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38936100ns 684171 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38936385ns 684176 1a110850 fd5ff06f jal x0, -44 +38936669ns 684181 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38936953ns 684186 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38937351ns 684193 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38937521ns 684196 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38937976ns 684204 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38938146ns 684207 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38938431ns 684212 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38938715ns 684217 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38938999ns 684222 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38939453ns 684230 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38939624ns 684233 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38939908ns 684238 1a110850 fd5ff06f jal x0, -44 +38940192ns 684243 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38940476ns 684248 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38940874ns 684255 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38941045ns 684258 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38941499ns 684266 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38941670ns 684269 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38941954ns 684274 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38942238ns 684279 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38942522ns 684284 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38942977ns 684292 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38943148ns 684295 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38943432ns 684300 1a110850 fd5ff06f jal x0, -44 +38943716ns 684305 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38944000ns 684310 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38944398ns 684317 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38944568ns 684320 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38945023ns 684328 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38945194ns 684331 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38945478ns 684336 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38945762ns 684341 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38946046ns 684346 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38946501ns 684354 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38946671ns 684357 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38946955ns 684362 1a110850 fd5ff06f jal x0, -44 +38947239ns 684367 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38947524ns 684372 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38947921ns 684379 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38948092ns 684382 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38948547ns 684390 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38948717ns 684393 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38949001ns 684398 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38949285ns 684403 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38949570ns 684408 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38950024ns 684416 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38950195ns 684419 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38950479ns 684424 1a110850 fd5ff06f jal x0, -44 +38950763ns 684429 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38951047ns 684434 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38951445ns 684441 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38951616ns 684444 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38952070ns 684452 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38952241ns 684455 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38952525ns 684460 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38952809ns 684465 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38953093ns 684470 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38953548ns 684478 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38953718ns 684481 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38954002ns 684486 1a110850 fd5ff06f jal x0, -44 +38954287ns 684491 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38954571ns 684496 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38954969ns 684503 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38955139ns 684506 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38955594ns 684514 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38955764ns 684517 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38956048ns 684522 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38956333ns 684527 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38956617ns 684532 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38957071ns 684540 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38957242ns 684543 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38957526ns 684548 1a110850 fd5ff06f jal x0, -44 +38957810ns 684553 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38958094ns 684558 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38958492ns 684565 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38958663ns 684568 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38959117ns 684576 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38959288ns 684579 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38959572ns 684584 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38959856ns 684589 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38960140ns 684594 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38960595ns 684602 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38960765ns 684605 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38961050ns 684610 1a110850 fd5ff06f jal x0, -44 +38961334ns 684615 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38961618ns 684620 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38962016ns 684627 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38962186ns 684630 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38962641ns 684638 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38962811ns 684641 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38963096ns 684646 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38963380ns 684651 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38963664ns 684656 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38964119ns 684664 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38964289ns 684667 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38964573ns 684672 1a110850 fd5ff06f jal x0, -44 +38964857ns 684677 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38965142ns 684682 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38965539ns 684689 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38965710ns 684692 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38966165ns 684700 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38966335ns 684703 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38966619ns 684708 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38966903ns 684713 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38967187ns 684718 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38967642ns 684726 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38967813ns 684729 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38968097ns 684734 1a110850 fd5ff06f jal x0, -44 +38968381ns 684739 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38968665ns 684744 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38969063ns 684751 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38969233ns 684754 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38969688ns 684762 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38969859ns 684765 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38970143ns 684770 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38970427ns 684775 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38970711ns 684780 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38971166ns 684788 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38971336ns 684791 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38971620ns 684796 1a110850 fd5ff06f jal x0, -44 +38971905ns 684801 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38972189ns 684806 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38972587ns 684813 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38972757ns 684816 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38973212ns 684824 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38973382ns 684827 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38973666ns 684832 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38973951ns 684837 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38974235ns 684842 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38974689ns 684850 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38974860ns 684853 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38975144ns 684858 1a110850 fd5ff06f jal x0, -44 +38975428ns 684863 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38975712ns 684868 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38976110ns 684875 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38976281ns 684878 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38976735ns 684886 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38976906ns 684889 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38977190ns 684894 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38977474ns 684899 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38977758ns 684904 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38978213ns 684912 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38978383ns 684915 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38978668ns 684920 1a110850 fd5ff06f jal x0, -44 +38978952ns 684925 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38979236ns 684930 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38979634ns 684937 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38979804ns 684940 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38980259ns 684948 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38980429ns 684951 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38980714ns 684956 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38980998ns 684961 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38981282ns 684966 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38981736ns 684974 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38981907ns 684977 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38982191ns 684982 1a110850 fd5ff06f jal x0, -44 +38982475ns 684987 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38982759ns 684992 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38983157ns 684999 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38983328ns 685002 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38983782ns 685010 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38983953ns 685013 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38984237ns 685018 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38984521ns 685023 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38984805ns 685028 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38985260ns 685036 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38985431ns 685039 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38985715ns 685044 1a110850 fd5ff06f jal x0, -44 +38985999ns 685049 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38986283ns 685054 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38986681ns 685061 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38986851ns 685064 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38987306ns 685072 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38987477ns 685075 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38987761ns 685080 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38988045ns 685085 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38988329ns 685090 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38988784ns 685098 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38988954ns 685101 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38989238ns 685106 1a110850 fd5ff06f jal x0, -44 +38989522ns 685111 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38989807ns 685116 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38990204ns 685123 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38990375ns 685126 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38990830ns 685134 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38991000ns 685137 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38991284ns 685142 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38991568ns 685147 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38991853ns 685152 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38992307ns 685160 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38992478ns 685163 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38992762ns 685168 1a110850 fd5ff06f jal x0, -44 +38993046ns 685173 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38993330ns 685178 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38993728ns 685185 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38993899ns 685188 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38994353ns 685196 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38994524ns 685199 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38994808ns 685204 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38995092ns 685209 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38995376ns 685214 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38995831ns 685222 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38996001ns 685225 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38996285ns 685230 1a110850 fd5ff06f jal x0, -44 +38996570ns 685235 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38996854ns 685240 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +38997252ns 685247 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38997422ns 685250 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38997877ns 685258 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +38998047ns 685261 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +38998331ns 685266 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +38998616ns 685271 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +38998900ns 685276 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +38999354ns 685284 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +38999525ns 685287 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +38999809ns 685292 1a110850 fd5ff06f jal x0, -44 +39000093ns 685297 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39000377ns 685302 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39000775ns 685309 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39000946ns 685312 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39001400ns 685320 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39001571ns 685323 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39001855ns 685328 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39002139ns 685333 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39002423ns 685338 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39002878ns 685346 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39003048ns 685349 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39003333ns 685354 1a110850 fd5ff06f jal x0, -44 +39003617ns 685359 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39003901ns 685364 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39004299ns 685371 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39004469ns 685374 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39004924ns 685382 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39005094ns 685385 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39005379ns 685390 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39005663ns 685395 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39005947ns 685400 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39006402ns 685408 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39006572ns 685411 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39006856ns 685416 1a110850 fd5ff06f jal x0, -44 +39007140ns 685421 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39007425ns 685426 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39007822ns 685433 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39007993ns 685436 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39008448ns 685444 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39008618ns 685447 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39008902ns 685452 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39009186ns 685457 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39009471ns 685462 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39009925ns 685470 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39010096ns 685473 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39010380ns 685478 1a110850 fd5ff06f jal x0, -44 +39010664ns 685483 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39010948ns 685488 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39011346ns 685495 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39011516ns 685498 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39011971ns 685506 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39012142ns 685509 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39012426ns 685514 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39012710ns 685519 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39012994ns 685524 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39013449ns 685532 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39013619ns 685535 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39013903ns 685540 1a110850 fd5ff06f jal x0, -44 +39014188ns 685545 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39014472ns 685550 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39014870ns 685557 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39015040ns 685560 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39015495ns 685568 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39015665ns 685571 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39015949ns 685576 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39016234ns 685581 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39016518ns 685586 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39016972ns 685594 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39017143ns 685597 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39017427ns 685602 1a110850 fd5ff06f jal x0, -44 +39017711ns 685607 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39017995ns 685612 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39018393ns 685619 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39018564ns 685622 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39019018ns 685630 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39019189ns 685633 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39019473ns 685638 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39019757ns 685643 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39020041ns 685648 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39020496ns 685656 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39020666ns 685659 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39020951ns 685664 1a110850 fd5ff06f jal x0, -44 +39021235ns 685669 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39021519ns 685674 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39021917ns 685681 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39022087ns 685684 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39022542ns 685692 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39022712ns 685695 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39022997ns 685700 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39023281ns 685705 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39023565ns 685710 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39024019ns 685718 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39024190ns 685721 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39024474ns 685726 1a110850 fd5ff06f jal x0, -44 +39024758ns 685731 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39025042ns 685736 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39025440ns 685743 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39025611ns 685746 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39026065ns 685754 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39026236ns 685757 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39026520ns 685762 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39026804ns 685767 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39027088ns 685772 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39027543ns 685780 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39027714ns 685783 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39027998ns 685788 1a110850 fd5ff06f jal x0, -44 +39028282ns 685793 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39028566ns 685798 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39028964ns 685805 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39029134ns 685808 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39029589ns 685816 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39029760ns 685819 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39030044ns 685824 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39030328ns 685829 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39030612ns 685834 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39031067ns 685842 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39031237ns 685845 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39031521ns 685850 1a110850 fd5ff06f jal x0, -44 +39031805ns 685855 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39032090ns 685860 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39032487ns 685867 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39032658ns 685870 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39033113ns 685878 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39033283ns 685881 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39033567ns 685886 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39033851ns 685891 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39034136ns 685896 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39034590ns 685904 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39034761ns 685907 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39035045ns 685912 1a110850 fd5ff06f jal x0, -44 +39035329ns 685917 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39035613ns 685922 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39036011ns 685929 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39036182ns 685932 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39036636ns 685940 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39036807ns 685943 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39037091ns 685948 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39037375ns 685953 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39037659ns 685958 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39038114ns 685966 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39038284ns 685969 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39038568ns 685974 1a110850 fd5ff06f jal x0, -44 +39038853ns 685979 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39039137ns 685984 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39039535ns 685991 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39039705ns 685994 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39040160ns 686002 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39040330ns 686005 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39040614ns 686010 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39040899ns 686015 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39041183ns 686020 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39041637ns 686028 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39041808ns 686031 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39042092ns 686036 1a110850 fd5ff06f jal x0, -44 +39042376ns 686041 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39042660ns 686046 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39043058ns 686053 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39043229ns 686056 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39043683ns 686064 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39043854ns 686067 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39044138ns 686072 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39044422ns 686077 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39044706ns 686082 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39045161ns 686090 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39045331ns 686093 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39045616ns 686098 1a110850 fd5ff06f jal x0, -44 +39045900ns 686103 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39046184ns 686108 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39046582ns 686115 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39046752ns 686118 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39047207ns 686126 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39047377ns 686129 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39047662ns 686134 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39047946ns 686139 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39048230ns 686144 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39048685ns 686152 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39048855ns 686155 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39049139ns 686160 1a110850 fd5ff06f jal x0, -44 +39049423ns 686165 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39049708ns 686170 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39050105ns 686177 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39050276ns 686180 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39050731ns 686188 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39050901ns 686191 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39051185ns 686196 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39051469ns 686201 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39051754ns 686206 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39052208ns 686214 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39052379ns 686217 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39052663ns 686222 1a110850 fd5ff06f jal x0, -44 +39052947ns 686227 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39053231ns 686232 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39053629ns 686239 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39053799ns 686242 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39054254ns 686250 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39054425ns 686253 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39054709ns 686258 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39054993ns 686263 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39055277ns 686268 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39055732ns 686276 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39055902ns 686279 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39056186ns 686284 1a110850 fd5ff06f jal x0, -44 +39056471ns 686289 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39056755ns 686294 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39057153ns 686301 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39057323ns 686304 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39057778ns 686312 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39057948ns 686315 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39058232ns 686320 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39058517ns 686325 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39058801ns 686330 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39059255ns 686338 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39059426ns 686341 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39059710ns 686346 1a110850 fd5ff06f jal x0, -44 +39059994ns 686351 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39060278ns 686356 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39060676ns 686363 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39060847ns 686366 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39061301ns 686374 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39061472ns 686377 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39061756ns 686382 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39062040ns 686387 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39062324ns 686392 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39062779ns 686400 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39062949ns 686403 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39063234ns 686408 1a110850 fd5ff06f jal x0, -44 +39063518ns 686413 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39063802ns 686418 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39064200ns 686425 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39064370ns 686428 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39064825ns 686436 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39064995ns 686439 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39065280ns 686444 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39065564ns 686449 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39065848ns 686454 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39066303ns 686462 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39066473ns 686465 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39066757ns 686470 1a110850 fd5ff06f jal x0, -44 +39067041ns 686475 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39067325ns 686480 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39067723ns 686487 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39067894ns 686490 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39068348ns 686498 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39068519ns 686501 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39068803ns 686506 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39069087ns 686511 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39069371ns 686516 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39069826ns 686524 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39069997ns 686527 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39070281ns 686532 1a110850 fd5ff06f jal x0, -44 +39070565ns 686537 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39070849ns 686542 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39071247ns 686549 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39071417ns 686552 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39071872ns 686560 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39072043ns 686563 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39072327ns 686568 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39072611ns 686573 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39072895ns 686578 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39073350ns 686586 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39073520ns 686589 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39073804ns 686594 1a110850 fd5ff06f jal x0, -44 +39074088ns 686599 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39074373ns 686604 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39074770ns 686611 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39074941ns 686614 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39075396ns 686622 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39075566ns 686625 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39075850ns 686630 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39076134ns 686635 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39076419ns 686640 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39076873ns 686648 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39077044ns 686651 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39077328ns 686656 1a110850 fd5ff06f jal x0, -44 +39077612ns 686661 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39077896ns 686666 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39078294ns 686673 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39078465ns 686676 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39078919ns 686684 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39079090ns 686687 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39079374ns 686692 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39079658ns 686697 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39079942ns 686702 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39080397ns 686710 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39080567ns 686713 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39080851ns 686718 1a110850 fd5ff06f jal x0, -44 +39081136ns 686723 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39081420ns 686728 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39081818ns 686735 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39081988ns 686738 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39082443ns 686746 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39082613ns 686749 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39082897ns 686754 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39083182ns 686759 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39083466ns 686764 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39083920ns 686772 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39084091ns 686775 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39084375ns 686780 1a110850 fd5ff06f jal x0, -44 +39084659ns 686785 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39084943ns 686790 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39085341ns 686797 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39085512ns 686800 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39085966ns 686808 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39086137ns 686811 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39086421ns 686816 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39086705ns 686821 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39086989ns 686826 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39087444ns 686834 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39087615ns 686837 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39087899ns 686842 1a110850 fd5ff06f jal x0, -44 +39088183ns 686847 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39088467ns 686852 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39088865ns 686859 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39089035ns 686862 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39089490ns 686870 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39089660ns 686873 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39089945ns 686878 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39090229ns 686883 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39090513ns 686888 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39090968ns 686896 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39091138ns 686899 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39091422ns 686904 1a110850 fd5ff06f jal x0, -44 +39091706ns 686909 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39091991ns 686914 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39092388ns 686921 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39092559ns 686924 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39093014ns 686932 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39093184ns 686935 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39093468ns 686940 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39093752ns 686945 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39094037ns 686950 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39094491ns 686958 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39094662ns 686961 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39094946ns 686966 1a110850 fd5ff06f jal x0, -44 +39095230ns 686971 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39095514ns 686976 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39095912ns 686983 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39096082ns 686986 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39096537ns 686994 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39096708ns 686997 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39096992ns 687002 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39097276ns 687007 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39097560ns 687012 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39098015ns 687020 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39098185ns 687023 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39098469ns 687028 1a110850 fd5ff06f jal x0, -44 +39098754ns 687033 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39099038ns 687038 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39099436ns 687045 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39099606ns 687048 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39100061ns 687056 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39100231ns 687059 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39100515ns 687064 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39100800ns 687069 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39101084ns 687074 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39101538ns 687082 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39101709ns 687085 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39101993ns 687090 1a110850 fd5ff06f jal x0, -44 +39102277ns 687095 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39102561ns 687100 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39102959ns 687107 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39103130ns 687110 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39103584ns 687118 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39103755ns 687121 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39104039ns 687126 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39104323ns 687131 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39104607ns 687136 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39105062ns 687144 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39105232ns 687147 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39105517ns 687152 1a110850 fd5ff06f jal x0, -44 +39105801ns 687157 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39106085ns 687162 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39106483ns 687169 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39106653ns 687172 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39107108ns 687180 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39107278ns 687183 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39107563ns 687188 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39107847ns 687193 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39108131ns 687198 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39108586ns 687206 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39108756ns 687209 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39109040ns 687214 1a110850 fd5ff06f jal x0, -44 +39109324ns 687219 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39109608ns 687224 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39110006ns 687231 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39110177ns 687234 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39110631ns 687242 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39110802ns 687245 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39111086ns 687250 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39111370ns 687255 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39111654ns 687260 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39112109ns 687268 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39112280ns 687271 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39112564ns 687276 1a110850 fd5ff06f jal x0, -44 +39112848ns 687281 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39113132ns 687286 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39113530ns 687293 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39113700ns 687296 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39114155ns 687304 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39114326ns 687307 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39114610ns 687312 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39114894ns 687317 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39115178ns 687322 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39115633ns 687330 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39115803ns 687333 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39116087ns 687338 1a110850 fd5ff06f jal x0, -44 +39116371ns 687343 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39116656ns 687348 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39117053ns 687355 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39117224ns 687358 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39117679ns 687366 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39117849ns 687369 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39118133ns 687374 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39118417ns 687379 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39118702ns 687384 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39119156ns 687392 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39119327ns 687395 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39119611ns 687400 1a110850 fd5ff06f jal x0, -44 +39119895ns 687405 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39120179ns 687410 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39120577ns 687417 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39120748ns 687420 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39121202ns 687428 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39121373ns 687431 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39121657ns 687436 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39121941ns 687441 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39122225ns 687446 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39122680ns 687454 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39122850ns 687457 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39123135ns 687462 1a110850 fd5ff06f jal x0, -44 +39123419ns 687467 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39123703ns 687472 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39124101ns 687479 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39124271ns 687482 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39124726ns 687490 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39124896ns 687493 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39125180ns 687498 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39125465ns 687503 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39125749ns 687508 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39126203ns 687516 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39126374ns 687519 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39126658ns 687524 1a110850 fd5ff06f jal x0, -44 +39126942ns 687529 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39127226ns 687534 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39127624ns 687541 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39127795ns 687544 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39128249ns 687552 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39128420ns 687555 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39128704ns 687560 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39128988ns 687565 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39129272ns 687570 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39129727ns 687578 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39129898ns 687581 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39130182ns 687586 1a110850 fd5ff06f jal x0, -44 +39130466ns 687591 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39130750ns 687596 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39131148ns 687603 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39131318ns 687606 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39131773ns 687614 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39131943ns 687617 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39132228ns 687622 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39132512ns 687627 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39132796ns 687632 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39133251ns 687640 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39133421ns 687643 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39133705ns 687648 1a110850 fd5ff06f jal x0, -44 +39133989ns 687653 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39134274ns 687658 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39134671ns 687665 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39134842ns 687668 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39135297ns 687676 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39135467ns 687679 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39135751ns 687684 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39136035ns 687689 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39136320ns 687694 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39136774ns 687702 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39136945ns 687705 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39137229ns 687710 1a110850 fd5ff06f jal x0, -44 +39137513ns 687715 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39137797ns 687720 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39138195ns 687727 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39138365ns 687730 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39138820ns 687738 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39138991ns 687741 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39139275ns 687746 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39139559ns 687751 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39139843ns 687756 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39140298ns 687764 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39140468ns 687767 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39140752ns 687772 1a110850 fd5ff06f jal x0, -44 +39141037ns 687777 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39141321ns 687782 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39141719ns 687789 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39141889ns 687792 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39142344ns 687800 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39142514ns 687803 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39142798ns 687808 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39143083ns 687813 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39143367ns 687818 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39143821ns 687826 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39143992ns 687829 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39144276ns 687834 1a110850 fd5ff06f jal x0, -44 +39144560ns 687839 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39144844ns 687844 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39145242ns 687851 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39145413ns 687854 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39145867ns 687862 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39146038ns 687865 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39146322ns 687870 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39146606ns 687875 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39146890ns 687880 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39147345ns 687888 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39147515ns 687891 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39147800ns 687896 1a110850 fd5ff06f jal x0, -44 +39148084ns 687901 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39148368ns 687906 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39148766ns 687913 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39148936ns 687916 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39149391ns 687924 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39149561ns 687927 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39149846ns 687932 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39150130ns 687937 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39150414ns 687942 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39150869ns 687950 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39151039ns 687953 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39151323ns 687958 1a110850 fd5ff06f jal x0, -44 +39151607ns 687963 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39151891ns 687968 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39152289ns 687975 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39152460ns 687978 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39152914ns 687986 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39153085ns 687989 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39153369ns 687994 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39153653ns 687999 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39153937ns 688004 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39154392ns 688012 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39154563ns 688015 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39154847ns 688020 1a110850 fd5ff06f jal x0, -44 +39155131ns 688025 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39155415ns 688030 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39155813ns 688037 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39155983ns 688040 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39156438ns 688048 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39156609ns 688051 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39156893ns 688056 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39157177ns 688061 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39157461ns 688066 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39157916ns 688074 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39158086ns 688077 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39158370ns 688082 1a110850 fd5ff06f jal x0, -44 +39158655ns 688087 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39158939ns 688092 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39159336ns 688099 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39159507ns 688102 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39159962ns 688110 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39160132ns 688113 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39160416ns 688118 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39160700ns 688123 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39160985ns 688128 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39161439ns 688136 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39161610ns 688139 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39161894ns 688144 1a110850 fd5ff06f jal x0, -44 +39162178ns 688149 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39162462ns 688154 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39162860ns 688161 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39163031ns 688164 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39163485ns 688172 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39163656ns 688175 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39163940ns 688180 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39164224ns 688185 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39164508ns 688190 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39164963ns 688198 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39165133ns 688201 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39165418ns 688206 1a110850 fd5ff06f jal x0, -44 +39165702ns 688211 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39165986ns 688216 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39166384ns 688223 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39166554ns 688226 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39167009ns 688234 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39167179ns 688237 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39167463ns 688242 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39167748ns 688247 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39168032ns 688252 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39168486ns 688260 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39168657ns 688263 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39168941ns 688268 1a110850 fd5ff06f jal x0, -44 +39169225ns 688273 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39169509ns 688278 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39169907ns 688285 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39170078ns 688288 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39170532ns 688296 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39170703ns 688299 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39170987ns 688304 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39171271ns 688309 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39171555ns 688314 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39172010ns 688322 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39172181ns 688325 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39172465ns 688330 1a110850 fd5ff06f jal x0, -44 +39172749ns 688335 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39173033ns 688340 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39173431ns 688347 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39173601ns 688350 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39174056ns 688358 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39174226ns 688361 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39174511ns 688366 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39174795ns 688371 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39175079ns 688376 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39175534ns 688384 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39175704ns 688387 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39175988ns 688392 1a110850 fd5ff06f jal x0, -44 +39176272ns 688397 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39176557ns 688402 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39176954ns 688409 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39177125ns 688412 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39177580ns 688420 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39177750ns 688423 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39178034ns 688428 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39178318ns 688433 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39178603ns 688438 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39179057ns 688446 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39179228ns 688449 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39179512ns 688454 1a110850 fd5ff06f jal x0, -44 +39179796ns 688459 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39180080ns 688464 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39180478ns 688471 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39180648ns 688474 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39181103ns 688482 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39181274ns 688485 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39181558ns 688490 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39181842ns 688495 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39182126ns 688500 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39182581ns 688508 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39182751ns 688511 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39183035ns 688516 1a110850 fd5ff06f jal x0, -44 +39183320ns 688521 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39183604ns 688526 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39184002ns 688533 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39184172ns 688536 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39184627ns 688544 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39184797ns 688547 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39185081ns 688552 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39185366ns 688557 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39185650ns 688562 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39186104ns 688570 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39186275ns 688573 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39186559ns 688578 1a110850 fd5ff06f jal x0, -44 +39186843ns 688583 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39187127ns 688588 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39187525ns 688595 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39187696ns 688598 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39188150ns 688606 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39188321ns 688609 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39188605ns 688614 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39188889ns 688619 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39189173ns 688624 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39189628ns 688632 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39189798ns 688635 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39190083ns 688640 1a110850 fd5ff06f jal x0, -44 +39190367ns 688645 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39190651ns 688650 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39191049ns 688657 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39191219ns 688660 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39191674ns 688668 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39191844ns 688671 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39192129ns 688676 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39192413ns 688681 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39192697ns 688686 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39193152ns 688694 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39193322ns 688697 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39193606ns 688702 1a110850 fd5ff06f jal x0, -44 +39193890ns 688707 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39194175ns 688712 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39194572ns 688719 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39194743ns 688722 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39195197ns 688730 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39195368ns 688733 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39195652ns 688738 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39195936ns 688743 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39196220ns 688748 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39196675ns 688756 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39196846ns 688759 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39197130ns 688764 1a110850 fd5ff06f jal x0, -44 +39197414ns 688769 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39197698ns 688774 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39198096ns 688781 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39198266ns 688784 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39198721ns 688792 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39198892ns 688795 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39199176ns 688800 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39199460ns 688805 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39199744ns 688810 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39200199ns 688818 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39200369ns 688821 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39200653ns 688826 1a110850 fd5ff06f jal x0, -44 +39200938ns 688831 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39201222ns 688836 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39201619ns 688843 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39201790ns 688846 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39202245ns 688854 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39202415ns 688857 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39202699ns 688862 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39202983ns 688867 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39203268ns 688872 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39203722ns 688880 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39203893ns 688883 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39204177ns 688888 1a110850 fd5ff06f jal x0, -44 +39204461ns 688893 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39204745ns 688898 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39205143ns 688905 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39205314ns 688908 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39205768ns 688916 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39205939ns 688919 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39206223ns 688924 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39206507ns 688929 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39206791ns 688934 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39207246ns 688942 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39207416ns 688945 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39207701ns 688950 1a110850 fd5ff06f jal x0, -44 +39207985ns 688955 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39208269ns 688960 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39208667ns 688967 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39208837ns 688970 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39209292ns 688978 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39209462ns 688981 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39209746ns 688986 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39210031ns 688991 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39210315ns 688996 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39210769ns 689004 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39210940ns 689007 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39211224ns 689012 1a110850 fd5ff06f jal x0, -44 +39211508ns 689017 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39211792ns 689022 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39212190ns 689029 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39212361ns 689032 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39212815ns 689040 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39212986ns 689043 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39213270ns 689048 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39213554ns 689053 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39213838ns 689058 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39214293ns 689066 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39214464ns 689069 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39214748ns 689074 1a110850 fd5ff06f jal x0, -44 +39215032ns 689079 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39215316ns 689084 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39215714ns 689091 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39215884ns 689094 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39216339ns 689102 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39216509ns 689105 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39216794ns 689110 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39217078ns 689115 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39217362ns 689120 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39217817ns 689128 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39217987ns 689131 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39218271ns 689136 1a110850 fd5ff06f jal x0, -44 +39218555ns 689141 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39218840ns 689146 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39219237ns 689153 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39219408ns 689156 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39219863ns 689164 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39220033ns 689167 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39220317ns 689172 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39220601ns 689177 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39220886ns 689182 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39221340ns 689190 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39221511ns 689193 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39221795ns 689198 1a110850 fd5ff06f jal x0, -44 +39222079ns 689203 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39222363ns 689208 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39222761ns 689215 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39222931ns 689218 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39223386ns 689226 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39223557ns 689229 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39223841ns 689234 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39224125ns 689239 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39224409ns 689244 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39224864ns 689252 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39225034ns 689255 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39225318ns 689260 1a110850 fd5ff06f jal x0, -44 +39225603ns 689265 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39225887ns 689270 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39226285ns 689277 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39226455ns 689280 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39226910ns 689288 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39227080ns 689291 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39227364ns 689296 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39227649ns 689301 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39227933ns 689306 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39228387ns 689314 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39228558ns 689317 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39228842ns 689322 1a110850 fd5ff06f jal x0, -44 +39229126ns 689327 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39229410ns 689332 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39229808ns 689339 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39229979ns 689342 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39230433ns 689350 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39230604ns 689353 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39230888ns 689358 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39231172ns 689363 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39231456ns 689368 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39231911ns 689376 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39232081ns 689379 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39232366ns 689384 1a110850 fd5ff06f jal x0, -44 +39232650ns 689389 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39232934ns 689394 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39233332ns 689401 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39233502ns 689404 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39233957ns 689412 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39234127ns 689415 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39234412ns 689420 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39234696ns 689425 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39234980ns 689430 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39235435ns 689438 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39235605ns 689441 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39235889ns 689446 1a110850 fd5ff06f jal x0, -44 +39236173ns 689451 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39236458ns 689456 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39236855ns 689463 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39237026ns 689466 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39237480ns 689474 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39237651ns 689477 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39237935ns 689482 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39238219ns 689487 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39238503ns 689492 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39238958ns 689500 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39239129ns 689503 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39239413ns 689508 1a110850 fd5ff06f jal x0, -44 +39239697ns 689513 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39239981ns 689518 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39240379ns 689525 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39240549ns 689528 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39241004ns 689536 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39241175ns 689539 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39241459ns 689544 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39241743ns 689549 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39242027ns 689554 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39242482ns 689562 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39242652ns 689565 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39242936ns 689570 1a110850 fd5ff06f jal x0, -44 +39243221ns 689575 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39243505ns 689580 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39243903ns 689587 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39244073ns 689590 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39244528ns 689598 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39244698ns 689601 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39244982ns 689606 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39245266ns 689611 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39245551ns 689616 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39246005ns 689624 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39246176ns 689627 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39246460ns 689632 1a110850 fd5ff06f jal x0, -44 +39246744ns 689637 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39247028ns 689642 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39247426ns 689649 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39247597ns 689652 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39248051ns 689660 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39248222ns 689663 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39248506ns 689668 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39248790ns 689673 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39249074ns 689678 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39249529ns 689686 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39249699ns 689689 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39249984ns 689694 1a110850 fd5ff06f jal x0, -44 +39250268ns 689699 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39250552ns 689704 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39250950ns 689711 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39251120ns 689714 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39251575ns 689722 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39251745ns 689725 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39252029ns 689730 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39252314ns 689735 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39252598ns 689740 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39253052ns 689748 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39253223ns 689751 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39253507ns 689756 1a110850 fd5ff06f jal x0, -44 +39253791ns 689761 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39254075ns 689766 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39254473ns 689773 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39254644ns 689776 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39255098ns 689784 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39255269ns 689787 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39255553ns 689792 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39255837ns 689797 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39256121ns 689802 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39256576ns 689810 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39256747ns 689813 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39257031ns 689818 1a110850 fd5ff06f jal x0, -44 +39257315ns 689823 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39257599ns 689828 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39257997ns 689835 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39258167ns 689838 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39258622ns 689846 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39258792ns 689849 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39259077ns 689854 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39259361ns 689859 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39259645ns 689864 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39260100ns 689872 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39260270ns 689875 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39260554ns 689880 1a110850 fd5ff06f jal x0, -44 +39260838ns 689885 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39261123ns 689890 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39261520ns 689897 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39261691ns 689900 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39262146ns 689908 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39262316ns 689911 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39262600ns 689916 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39262884ns 689921 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39263169ns 689926 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39263623ns 689934 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39263794ns 689937 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39264078ns 689942 1a110850 fd5ff06f jal x0, -44 +39264362ns 689947 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39264646ns 689952 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39265044ns 689959 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39265215ns 689962 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39265669ns 689970 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39265840ns 689973 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39266124ns 689978 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39266408ns 689983 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39266692ns 689988 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39267147ns 689996 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39267317ns 689999 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39267601ns 690004 1a110850 fd5ff06f jal x0, -44 +39267886ns 690009 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39268170ns 690014 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39268568ns 690021 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39268738ns 690024 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39269193ns 690032 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39269363ns 690035 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39269647ns 690040 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39269932ns 690045 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39270216ns 690050 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39270670ns 690058 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39270841ns 690061 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39271125ns 690066 1a110850 fd5ff06f jal x0, -44 +39271409ns 690071 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39271693ns 690076 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39272091ns 690083 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39272262ns 690086 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39272716ns 690094 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39272887ns 690097 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39273171ns 690102 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39273455ns 690107 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39273739ns 690112 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39274194ns 690120 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39274364ns 690123 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39274649ns 690128 1a110850 fd5ff06f jal x0, -44 +39274933ns 690133 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39275217ns 690138 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39275615ns 690145 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39275785ns 690148 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39276240ns 690156 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39276410ns 690159 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39276695ns 690164 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39276979ns 690169 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39277263ns 690174 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39277718ns 690182 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39277888ns 690185 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39278172ns 690190 1a110850 fd5ff06f jal x0, -44 +39278456ns 690195 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39278741ns 690200 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39279138ns 690207 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39279309ns 690210 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39279763ns 690218 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39279934ns 690221 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39280218ns 690226 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39280502ns 690231 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39280786ns 690236 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39281241ns 690244 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39281412ns 690247 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39281696ns 690252 1a110850 fd5ff06f jal x0, -44 +39281980ns 690257 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39282264ns 690262 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39282662ns 690269 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39282832ns 690272 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39283287ns 690280 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39283458ns 690283 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39283742ns 690288 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39284026ns 690293 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39284310ns 690298 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39284765ns 690306 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39284935ns 690309 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39285219ns 690314 1a110850 fd5ff06f jal x0, -44 +39285504ns 690319 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39285788ns 690324 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39286186ns 690331 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39286356ns 690334 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39286811ns 690342 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39286981ns 690345 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39287265ns 690350 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39287549ns 690355 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39287834ns 690360 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39288288ns 690368 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39288459ns 690371 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39288743ns 690376 1a110850 fd5ff06f jal x0, -44 +39289027ns 690381 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39289311ns 690386 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39289709ns 690393 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39289880ns 690396 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39290334ns 690404 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39290505ns 690407 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39290789ns 690412 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39291073ns 690417 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39291357ns 690422 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39291812ns 690430 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39291982ns 690433 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39292267ns 690438 1a110850 fd5ff06f jal x0, -44 +39292551ns 690443 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39292835ns 690448 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39293233ns 690455 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39293403ns 690458 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39293858ns 690466 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39294028ns 690469 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39294312ns 690474 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39294597ns 690479 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39294881ns 690484 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39295335ns 690492 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39295506ns 690495 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39295790ns 690500 1a110850 fd5ff06f jal x0, -44 +39296074ns 690505 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39296358ns 690510 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39296756ns 690517 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39296927ns 690520 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39297381ns 690528 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39297552ns 690531 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39297836ns 690536 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39298120ns 690541 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39298404ns 690546 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39298859ns 690554 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39299030ns 690557 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39299314ns 690562 1a110850 fd5ff06f jal x0, -44 +39299598ns 690567 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39299882ns 690572 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39300280ns 690579 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39300450ns 690582 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39300905ns 690590 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39301075ns 690593 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39301360ns 690598 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39301644ns 690603 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39301928ns 690608 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39302383ns 690616 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39302553ns 690619 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39302837ns 690624 1a110850 fd5ff06f jal x0, -44 +39303121ns 690629 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39303406ns 690634 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39303803ns 690641 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39303974ns 690644 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39304429ns 690652 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39304599ns 690655 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39304883ns 690660 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39305167ns 690665 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39305452ns 690670 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39305906ns 690678 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39306077ns 690681 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39306361ns 690686 1a110850 fd5ff06f jal x0, -44 +39306645ns 690691 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39306929ns 690696 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39307327ns 690703 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39307498ns 690706 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39307952ns 690714 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39308123ns 690717 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39308407ns 690722 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39308691ns 690727 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39308975ns 690732 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39309430ns 690740 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39309600ns 690743 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39309884ns 690748 1a110850 fd5ff06f jal x0, -44 +39310169ns 690753 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39310453ns 690758 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39310851ns 690765 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39311021ns 690768 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39311476ns 690776 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39311646ns 690779 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39311930ns 690784 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39312215ns 690789 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39312499ns 690794 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39312953ns 690802 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39313124ns 690805 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39313408ns 690810 1a110850 fd5ff06f jal x0, -44 +39313692ns 690815 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39313976ns 690820 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39314374ns 690827 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39314545ns 690830 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39314999ns 690838 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39315170ns 690841 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39315454ns 690846 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39315738ns 690851 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39316022ns 690856 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39316477ns 690864 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39316647ns 690867 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39316932ns 690872 1a110850 fd5ff06f jal x0, -44 +39317216ns 690877 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39317500ns 690882 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39317898ns 690889 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39318068ns 690892 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39318523ns 690900 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39318693ns 690903 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39318978ns 690908 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39319262ns 690913 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39319546ns 690918 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39320001ns 690926 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39320171ns 690929 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39320455ns 690934 1a110850 fd5ff06f jal x0, -44 +39320739ns 690939 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39321024ns 690944 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39321421ns 690951 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39321592ns 690954 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39322047ns 690962 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39322217ns 690965 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39322501ns 690970 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39322785ns 690975 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39323069ns 690980 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39323524ns 690988 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39323695ns 690991 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39323979ns 690996 1a110850 fd5ff06f jal x0, -44 +39324263ns 691001 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39324547ns 691006 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39324945ns 691013 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39325115ns 691016 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39325570ns 691024 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39325741ns 691027 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39326025ns 691032 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39326309ns 691037 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39326593ns 691042 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39327048ns 691050 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39327218ns 691053 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39327502ns 691058 1a110850 fd5ff06f jal x0, -44 +39327787ns 691063 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39328071ns 691068 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39328469ns 691075 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39328639ns 691078 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39329094ns 691086 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39329264ns 691089 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39329548ns 691094 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39329832ns 691099 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39330117ns 691104 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39330571ns 691112 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39330742ns 691115 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39331026ns 691120 1a110850 fd5ff06f jal x0, -44 +39331310ns 691125 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39331594ns 691130 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39331992ns 691137 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39332163ns 691140 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39332617ns 691148 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39332788ns 691151 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39333072ns 691156 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39333356ns 691161 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39333640ns 691166 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39334095ns 691174 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39334265ns 691177 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39334550ns 691182 1a110850 fd5ff06f jal x0, -44 +39334834ns 691187 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39335118ns 691192 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39335516ns 691199 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39335686ns 691202 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39336141ns 691210 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39336311ns 691213 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39336595ns 691218 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39336880ns 691223 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39337164ns 691228 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39337618ns 691236 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39337789ns 691239 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39338073ns 691244 1a110850 fd5ff06f jal x0, -44 +39338357ns 691249 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39338641ns 691254 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39339039ns 691261 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39339210ns 691264 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39339664ns 691272 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39339835ns 691275 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39340119ns 691280 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39340403ns 691285 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39340687ns 691290 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39341142ns 691298 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39341313ns 691301 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39341597ns 691306 1a110850 fd5ff06f jal x0, -44 +39341881ns 691311 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39342165ns 691316 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39342563ns 691323 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39342733ns 691326 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39343188ns 691334 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39343359ns 691337 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39343643ns 691342 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39343927ns 691347 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39344211ns 691352 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39344666ns 691360 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39344836ns 691363 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39345120ns 691368 1a110850 fd5ff06f jal x0, -44 +39345404ns 691373 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39345689ns 691378 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39346086ns 691385 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39346257ns 691388 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39346712ns 691396 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39346882ns 691399 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39347166ns 691404 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39347450ns 691409 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39347735ns 691414 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39348189ns 691422 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39348360ns 691425 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39348644ns 691430 1a110850 fd5ff06f jal x0, -44 +39348928ns 691435 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39349212ns 691440 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39349610ns 691447 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39349781ns 691450 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39350235ns 691458 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39350406ns 691461 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39350690ns 691466 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39350974ns 691471 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39351258ns 691476 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39351713ns 691484 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39351883ns 691487 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39352167ns 691492 1a110850 fd5ff06f jal x0, -44 +39352452ns 691497 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39352736ns 691502 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39353134ns 691509 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39353304ns 691512 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39353759ns 691520 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39353929ns 691523 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39354213ns 691528 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39354498ns 691533 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39354782ns 691538 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39355236ns 691546 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39355407ns 691549 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39355691ns 691554 1a110850 fd5ff06f jal x0, -44 +39355975ns 691559 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39356259ns 691564 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39356657ns 691571 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39356828ns 691574 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39357282ns 691582 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39357453ns 691585 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39357737ns 691590 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39358021ns 691595 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39358305ns 691600 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39358760ns 691608 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39358930ns 691611 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39359215ns 691616 1a110850 fd5ff06f jal x0, -44 +39359499ns 691621 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39359783ns 691626 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39360181ns 691633 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39360351ns 691636 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39360806ns 691644 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39360976ns 691647 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39361261ns 691652 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39361545ns 691657 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39361829ns 691662 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39362284ns 691670 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39362454ns 691673 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39362738ns 691678 1a110850 fd5ff06f jal x0, -44 +39363022ns 691683 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39363307ns 691688 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39363704ns 691695 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39363875ns 691698 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39364330ns 691706 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39364500ns 691709 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39364784ns 691714 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39365068ns 691719 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39365352ns 691724 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39365807ns 691732 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39365978ns 691735 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39366262ns 691740 1a110850 fd5ff06f jal x0, -44 +39366546ns 691745 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39366830ns 691750 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39367228ns 691757 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39367398ns 691760 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39367853ns 691768 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39368024ns 691771 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39368308ns 691776 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39368592ns 691781 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39368876ns 691786 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39369331ns 691794 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39369501ns 691797 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39369785ns 691802 1a110850 fd5ff06f jal x0, -44 +39370070ns 691807 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39370354ns 691812 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39370752ns 691819 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39370922ns 691822 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39371377ns 691830 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39371547ns 691833 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39371831ns 691838 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39372115ns 691843 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39372400ns 691848 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39372854ns 691856 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39373025ns 691859 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39373309ns 691864 1a110850 fd5ff06f jal x0, -44 +39373593ns 691869 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39373877ns 691874 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39374275ns 691881 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39374446ns 691884 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39374900ns 691892 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39375071ns 691895 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39375355ns 691900 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39375639ns 691905 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39375923ns 691910 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39376378ns 691918 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39376548ns 691921 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39376833ns 691926 1a110850 fd5ff06f jal x0, -44 +39377117ns 691931 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39377401ns 691936 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39377799ns 691943 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39377969ns 691946 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39378424ns 691954 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39378594ns 691957 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39378879ns 691962 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39379163ns 691967 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39379447ns 691972 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39379901ns 691980 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39380072ns 691983 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39380356ns 691988 1a110850 fd5ff06f jal x0, -44 +39380640ns 691993 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39380924ns 691998 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39381322ns 692005 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39381493ns 692008 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39381947ns 692016 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39382118ns 692019 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39382402ns 692024 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39382686ns 692029 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39382970ns 692034 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39383425ns 692042 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39383596ns 692045 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39383880ns 692050 1a110850 fd5ff06f jal x0, -44 +39384164ns 692055 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39384448ns 692060 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39384846ns 692067 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39385016ns 692070 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39385471ns 692078 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39385642ns 692081 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39385926ns 692086 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39386210ns 692091 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39386494ns 692096 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39386949ns 692104 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39387119ns 692107 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39387403ns 692112 1a110850 fd5ff06f jal x0, -44 +39387687ns 692117 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39387972ns 692122 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39388369ns 692129 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39388540ns 692132 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39388995ns 692140 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39389165ns 692143 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39389449ns 692148 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39389733ns 692153 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39390018ns 692158 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39390472ns 692166 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39390643ns 692169 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39390927ns 692174 1a110850 fd5ff06f jal x0, -44 +39391211ns 692179 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39391495ns 692184 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39391893ns 692191 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39392064ns 692194 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39392518ns 692202 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39392689ns 692205 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39392973ns 692210 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39393257ns 692215 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39393541ns 692220 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39393996ns 692228 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39394166ns 692231 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39394450ns 692236 1a110850 fd5ff06f jal x0, -44 +39394735ns 692241 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39395019ns 692246 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39395417ns 692253 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39395587ns 692256 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39396042ns 692264 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39396212ns 692267 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39396496ns 692272 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39396781ns 692277 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39397065ns 692282 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39397519ns 692290 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39397690ns 692293 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39397974ns 692298 1a110850 fd5ff06f jal x0, -44 +39398258ns 692303 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39398542ns 692308 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39398940ns 692315 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39399111ns 692318 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39399565ns 692326 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39399736ns 692329 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39400020ns 692334 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39400304ns 692339 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39400588ns 692344 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39401043ns 692352 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39401213ns 692355 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39401498ns 692360 1a110850 fd5ff06f jal x0, -44 +39401782ns 692365 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39402066ns 692370 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39402464ns 692377 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39402634ns 692380 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39403089ns 692388 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39403259ns 692391 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39403544ns 692396 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39403828ns 692401 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39404112ns 692406 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39404567ns 692414 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39404737ns 692417 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39405021ns 692422 1a110850 fd5ff06f jal x0, -44 +39405305ns 692427 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39405590ns 692432 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39405987ns 692439 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39406158ns 692442 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39406613ns 692450 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39406783ns 692453 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39407067ns 692458 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39407351ns 692463 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39407635ns 692468 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39408090ns 692476 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39408261ns 692479 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39408545ns 692484 1a110850 fd5ff06f jal x0, -44 +39408829ns 692489 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39409113ns 692494 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39409511ns 692501 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39409681ns 692504 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39410136ns 692512 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39410307ns 692515 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39410591ns 692520 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39410875ns 692525 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39411159ns 692530 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39411614ns 692538 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39411784ns 692541 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39412068ns 692546 1a110850 fd5ff06f jal x0, -44 +39412353ns 692551 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39412637ns 692556 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39413035ns 692563 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39413205ns 692566 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39413660ns 692574 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39413830ns 692577 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39414114ns 692582 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39414399ns 692587 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39414683ns 692592 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39415137ns 692600 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39415308ns 692603 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39415592ns 692608 1a110850 fd5ff06f jal x0, -44 +39415876ns 692613 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39416160ns 692618 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39416558ns 692625 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39416729ns 692628 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39417183ns 692636 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39417354ns 692639 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39417638ns 692644 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39417922ns 692649 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39418206ns 692654 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39418661ns 692662 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39418831ns 692665 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39419116ns 692670 1a110850 fd5ff06f jal x0, -44 +39419400ns 692675 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39419684ns 692680 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39420082ns 692687 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39420252ns 692690 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39420707ns 692698 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39420877ns 692701 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39421162ns 692706 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39421446ns 692711 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39421730ns 692716 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39422184ns 692724 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39422355ns 692727 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39422639ns 692732 1a110850 fd5ff06f jal x0, -44 +39422923ns 692737 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39423207ns 692742 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39423605ns 692749 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39423776ns 692752 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39424230ns 692760 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39424401ns 692763 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39424685ns 692768 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39424969ns 692773 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39425253ns 692778 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39425708ns 692786 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39425879ns 692789 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39426163ns 692794 1a110850 fd5ff06f jal x0, -44 +39426447ns 692799 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39426731ns 692804 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39427129ns 692811 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39427299ns 692814 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39427754ns 692822 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39427925ns 692825 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39428209ns 692830 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39428493ns 692835 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39428777ns 692840 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39429232ns 692848 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39429402ns 692851 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39429686ns 692856 1a110850 fd5ff06f jal x0, -44 +39429970ns 692861 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39430255ns 692866 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39430652ns 692873 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39430823ns 692876 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39431278ns 692884 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39431448ns 692887 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39431732ns 692892 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39432016ns 692897 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39432301ns 692902 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39432755ns 692910 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39432926ns 692913 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39433210ns 692918 1a110850 fd5ff06f jal x0, -44 +39433494ns 692923 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39433778ns 692928 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39434176ns 692935 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39434347ns 692938 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39434801ns 692946 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39434972ns 692949 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39435256ns 692954 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39435540ns 692959 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39435824ns 692964 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39436279ns 692972 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39436449ns 692975 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39436733ns 692980 1a110850 fd5ff06f jal x0, -44 +39437018ns 692985 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39437302ns 692990 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39437700ns 692997 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39437870ns 693000 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39438325ns 693008 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39438495ns 693011 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39438779ns 693016 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39439064ns 693021 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39439348ns 693026 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39439802ns 693034 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39439973ns 693037 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39440257ns 693042 1a110850 fd5ff06f jal x0, -44 +39440541ns 693047 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39440825ns 693052 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39441223ns 693059 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39441394ns 693062 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39441848ns 693070 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39442019ns 693073 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39442303ns 693078 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39442587ns 693083 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39442871ns 693088 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39443326ns 693096 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39443496ns 693099 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39443781ns 693104 1a110850 fd5ff06f jal x0, -44 +39444065ns 693109 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39444349ns 693114 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39444747ns 693121 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39444917ns 693124 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39445372ns 693132 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39445542ns 693135 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39445827ns 693140 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39446111ns 693145 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39446395ns 693150 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39446850ns 693158 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39447020ns 693161 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39447304ns 693166 1a110850 fd5ff06f jal x0, -44 +39447588ns 693171 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39447873ns 693176 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39448270ns 693183 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39448441ns 693186 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39448896ns 693194 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39449066ns 693197 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39449350ns 693202 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39449634ns 693207 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39449919ns 693212 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39450373ns 693220 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39450544ns 693223 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39450828ns 693228 1a110850 fd5ff06f jal x0, -44 +39451112ns 693233 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39451396ns 693238 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39451794ns 693245 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39451964ns 693248 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39452419ns 693256 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39452590ns 693259 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39452874ns 693264 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39453158ns 693269 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39453442ns 693274 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39453897ns 693282 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39454067ns 693285 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39454351ns 693290 1a110850 fd5ff06f jal x0, -44 +39454636ns 693295 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39454920ns 693300 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39455318ns 693307 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39455488ns 693310 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39455943ns 693318 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39456113ns 693321 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39456397ns 693326 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39456682ns 693331 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39456966ns 693336 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39457420ns 693344 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39457591ns 693347 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39457875ns 693352 1a110850 fd5ff06f jal x0, -44 +39458159ns 693357 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39458443ns 693362 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39458841ns 693369 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39459012ns 693372 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39459466ns 693380 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39459637ns 693383 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39459921ns 693388 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39460205ns 693393 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39460489ns 693398 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39460944ns 693406 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39461114ns 693409 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39461399ns 693414 1a110850 fd5ff06f jal x0, -44 +39461683ns 693419 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39461967ns 693424 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39462365ns 693431 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39462535ns 693434 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39462990ns 693442 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39463160ns 693445 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39463445ns 693450 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39463729ns 693455 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39464013ns 693460 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39464467ns 693468 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39464638ns 693471 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39464922ns 693476 1a110850 fd5ff06f jal x0, -44 +39465206ns 693481 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39465490ns 693486 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39465888ns 693493 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39466059ns 693496 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39466513ns 693504 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39466684ns 693507 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39466968ns 693512 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39467252ns 693517 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39467536ns 693522 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39467991ns 693530 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39468162ns 693533 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39468446ns 693538 1a110850 fd5ff06f jal x0, -44 +39468730ns 693543 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39469014ns 693548 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39469412ns 693555 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39469582ns 693558 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39470037ns 693566 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39470208ns 693569 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39470492ns 693574 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39470776ns 693579 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39471060ns 693584 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39471515ns 693592 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39471685ns 693595 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39471969ns 693600 1a110850 fd5ff06f jal x0, -44 +39472253ns 693605 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39472538ns 693610 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39472935ns 693617 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39473106ns 693620 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39473561ns 693628 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39473731ns 693631 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39474015ns 693636 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39474299ns 693641 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39474584ns 693646 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39475038ns 693654 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39475209ns 693657 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39475493ns 693662 1a110850 fd5ff06f jal x0, -44 +39475777ns 693667 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39476061ns 693672 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39476459ns 693679 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39476630ns 693682 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39477084ns 693690 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39477255ns 693693 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39477539ns 693698 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39477823ns 693703 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39478107ns 693708 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39478562ns 693716 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39478732ns 693719 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39479016ns 693724 1a110850 fd5ff06f jal x0, -44 +39479301ns 693729 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39479585ns 693734 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39479983ns 693741 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39480153ns 693744 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39480608ns 693752 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39480778ns 693755 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39481062ns 693760 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39481347ns 693765 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39481631ns 693770 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39482085ns 693778 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39482256ns 693781 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39482540ns 693786 1a110850 fd5ff06f jal x0, -44 +39482824ns 693791 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39483108ns 693796 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39483506ns 693803 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39483677ns 693806 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39484131ns 693814 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39484302ns 693817 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39484586ns 693822 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39484870ns 693827 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39485154ns 693832 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39485609ns 693840 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39485779ns 693843 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39486064ns 693848 1a110850 fd5ff06f jal x0, -44 +39486348ns 693853 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39486632ns 693858 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39487030ns 693865 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39487200ns 693868 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39487655ns 693876 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39487825ns 693879 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39488110ns 693884 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39488394ns 693889 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39488678ns 693894 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39489133ns 693902 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39489303ns 693905 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39489587ns 693910 1a110850 fd5ff06f jal x0, -44 +39489871ns 693915 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39490156ns 693920 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39490553ns 693927 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39490724ns 693930 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39491179ns 693938 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39491349ns 693941 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39491633ns 693946 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39491917ns 693951 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39492202ns 693956 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39492656ns 693964 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39492827ns 693967 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39493111ns 693972 1a110850 fd5ff06f jal x0, -44 +39493395ns 693977 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39493679ns 693982 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39494077ns 693989 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39494247ns 693992 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39494702ns 694000 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39494873ns 694003 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39495157ns 694008 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39495441ns 694013 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39495725ns 694018 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39496180ns 694026 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39496350ns 694029 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39496634ns 694034 1a110850 fd5ff06f jal x0, -44 +39496919ns 694039 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39497203ns 694044 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39497601ns 694051 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39497771ns 694054 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39498226ns 694062 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39498396ns 694065 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39498680ns 694070 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39498965ns 694075 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39499249ns 694080 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39499703ns 694088 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39499874ns 694091 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39500158ns 694096 1a110850 fd5ff06f jal x0, -44 +39500442ns 694101 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39500726ns 694106 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39501124ns 694113 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39501295ns 694116 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39501749ns 694124 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39501920ns 694127 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39502204ns 694132 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39502488ns 694137 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39502772ns 694142 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39503227ns 694150 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39503397ns 694153 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39503682ns 694158 1a110850 fd5ff06f jal x0, -44 +39503966ns 694163 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39504250ns 694168 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39504648ns 694175 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39504818ns 694178 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39505273ns 694186 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39505443ns 694189 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39505728ns 694194 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39506012ns 694199 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39506296ns 694204 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39506751ns 694212 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39506921ns 694215 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39507205ns 694220 1a110850 fd5ff06f jal x0, -44 +39507489ns 694225 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39507773ns 694230 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39508171ns 694237 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39508342ns 694240 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39508796ns 694248 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39508967ns 694251 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39509251ns 694256 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39509535ns 694261 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39509819ns 694266 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39510274ns 694274 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39510445ns 694277 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39510729ns 694282 1a110850 fd5ff06f jal x0, -44 +39511013ns 694287 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39511297ns 694292 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39511695ns 694299 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39511865ns 694302 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39512320ns 694310 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39512491ns 694313 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39512775ns 694318 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39513059ns 694323 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39513343ns 694328 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39513798ns 694336 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39513968ns 694339 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39514252ns 694344 1a110850 fd5ff06f jal x0, -44 +39514536ns 694349 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39514821ns 694354 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39515218ns 694361 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39515389ns 694364 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39515844ns 694372 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39516014ns 694375 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39516298ns 694380 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39516582ns 694385 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39516867ns 694390 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39517321ns 694398 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39517492ns 694401 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39517776ns 694406 1a110850 fd5ff06f jal x0, -44 +39518060ns 694411 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39518344ns 694416 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39518742ns 694423 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39518913ns 694426 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39519367ns 694434 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39519538ns 694437 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39519822ns 694442 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39520106ns 694447 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39520390ns 694452 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39520845ns 694460 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39521015ns 694463 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39521299ns 694468 1a110850 fd5ff06f jal x0, -44 +39521584ns 694473 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39521868ns 694478 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39522266ns 694485 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39522436ns 694488 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39522891ns 694496 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39523061ns 694499 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39523345ns 694504 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39523630ns 694509 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39523914ns 694514 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39524368ns 694522 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39524539ns 694525 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39524823ns 694530 1a110850 fd5ff06f jal x0, -44 +39525107ns 694535 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39525391ns 694540 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39525789ns 694547 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39525960ns 694550 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39526414ns 694558 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39526585ns 694561 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39526869ns 694566 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39527153ns 694571 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39527437ns 694576 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39527892ns 694584 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39528063ns 694587 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39528347ns 694592 1a110850 fd5ff06f jal x0, -44 +39528631ns 694597 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39528915ns 694602 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39529313ns 694609 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39529483ns 694612 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39529938ns 694620 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39530108ns 694623 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39530393ns 694628 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39530677ns 694633 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39530961ns 694638 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39531416ns 694646 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39531586ns 694649 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39531870ns 694654 1a110850 fd5ff06f jal x0, -44 +39532154ns 694659 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39532439ns 694664 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39532836ns 694671 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39533007ns 694674 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39533462ns 694682 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39533632ns 694685 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39533916ns 694690 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39534200ns 694695 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39534485ns 694700 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39534939ns 694708 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39535110ns 694711 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39535394ns 694716 1a110850 fd5ff06f jal x0, -44 +39535678ns 694721 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39535962ns 694726 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39536360ns 694733 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39536530ns 694736 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39536985ns 694744 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39537156ns 694747 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39537440ns 694752 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39537724ns 694757 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39538008ns 694762 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39538463ns 694770 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39538633ns 694773 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39538917ns 694778 1a110850 fd5ff06f jal x0, -44 +39539202ns 694783 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39539486ns 694788 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39539884ns 694795 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39540054ns 694798 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39540509ns 694806 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39540679ns 694809 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39540963ns 694814 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39541248ns 694819 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39541532ns 694824 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39541986ns 694832 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39542157ns 694835 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39542441ns 694840 1a110850 fd5ff06f jal x0, -44 +39542725ns 694845 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39543009ns 694850 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39543407ns 694857 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39543578ns 694860 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39544032ns 694868 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39544203ns 694871 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39544487ns 694876 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39544771ns 694881 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39545055ns 694886 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39545510ns 694894 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39545680ns 694897 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39545965ns 694902 1a110850 fd5ff06f jal x0, -44 +39546249ns 694907 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39546533ns 694912 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39546931ns 694919 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39547101ns 694922 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39547556ns 694930 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39547726ns 694933 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39548011ns 694938 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39548295ns 694943 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39548579ns 694948 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39549034ns 694956 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39549204ns 694959 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39549488ns 694964 1a110850 fd5ff06f jal x0, -44 +39549772ns 694969 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39550056ns 694974 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39550454ns 694981 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39550625ns 694984 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39551079ns 694992 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39551250ns 694995 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39551534ns 695000 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39551818ns 695005 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39552102ns 695010 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39552557ns 695018 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39552728ns 695021 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39553012ns 695026 1a110850 fd5ff06f jal x0, -44 +39553296ns 695031 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39553580ns 695036 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39553978ns 695043 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39554148ns 695046 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39554603ns 695054 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39554774ns 695057 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39555058ns 695062 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39555342ns 695067 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39555626ns 695072 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39556081ns 695080 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39556251ns 695083 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39556535ns 695088 1a110850 fd5ff06f jal x0, -44 +39556819ns 695093 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39557104ns 695098 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39557501ns 695105 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39557672ns 695108 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39558127ns 695116 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39558297ns 695119 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39558581ns 695124 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39558865ns 695129 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39559150ns 695134 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39559604ns 695142 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39559775ns 695145 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39560059ns 695150 1a110850 fd5ff06f jal x0, -44 +39560343ns 695155 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39560627ns 695160 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39561025ns 695167 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39561196ns 695170 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39561650ns 695178 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39561821ns 695181 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39562105ns 695186 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39562389ns 695191 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39562673ns 695196 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39563128ns 695204 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39563298ns 695207 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39563583ns 695212 1a110850 fd5ff06f jal x0, -44 +39563867ns 695217 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39564151ns 695222 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39564549ns 695229 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39564719ns 695232 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39565174ns 695240 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39565344ns 695243 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39565628ns 695248 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39565913ns 695253 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39566197ns 695258 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39566651ns 695266 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39566822ns 695269 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39567106ns 695274 1a110850 fd5ff06f jal x0, -44 +39567390ns 695279 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39567674ns 695284 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39568072ns 695291 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39568243ns 695294 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39568697ns 695302 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39568868ns 695305 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39569152ns 695310 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39569436ns 695315 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39569720ns 695320 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39570175ns 695328 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39570346ns 695331 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39570630ns 695336 1a110850 fd5ff06f jal x0, -44 +39570914ns 695341 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39571198ns 695346 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39571596ns 695353 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39571766ns 695356 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39572221ns 695364 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39572391ns 695367 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39572676ns 695372 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39572960ns 695377 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39573244ns 695382 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39573699ns 695390 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39573869ns 695393 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39574153ns 695398 1a110850 fd5ff06f jal x0, -44 +39574437ns 695403 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39574722ns 695408 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39575119ns 695415 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39575290ns 695418 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39575745ns 695426 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39575915ns 695429 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39576199ns 695434 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39576483ns 695439 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39576768ns 695444 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39577222ns 695452 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39577393ns 695455 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39577677ns 695460 1a110850 fd5ff06f jal x0, -44 +39577961ns 695465 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39578245ns 695470 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39578643ns 695477 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39578813ns 695480 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39579268ns 695488 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39579439ns 695491 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39579723ns 695496 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39580007ns 695501 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39580291ns 695506 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39580746ns 695514 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39580916ns 695517 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39581200ns 695522 1a110850 fd5ff06f jal x0, -44 +39581485ns 695527 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39581769ns 695532 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39582167ns 695539 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39582337ns 695542 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39582792ns 695550 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39582962ns 695553 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39583246ns 695558 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39583531ns 695563 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39583815ns 695568 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39584269ns 695576 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39584440ns 695579 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39584724ns 695584 1a110850 fd5ff06f jal x0, -44 +39585008ns 695589 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39585292ns 695594 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39585690ns 695601 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39585861ns 695604 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39586315ns 695612 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39586486ns 695615 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39586770ns 695620 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39587054ns 695625 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39587338ns 695630 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39587793ns 695638 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39587963ns 695641 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39588248ns 695646 1a110850 fd5ff06f jal x0, -44 +39588532ns 695651 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39588816ns 695656 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39589214ns 695663 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39589384ns 695666 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39589839ns 695674 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39590009ns 695677 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39590294ns 695682 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39590578ns 695687 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39590862ns 695692 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39591317ns 695700 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39591487ns 695703 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39591771ns 695708 1a110850 fd5ff06f jal x0, -44 +39592055ns 695713 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39592339ns 695718 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39592737ns 695725 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39592908ns 695728 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39593362ns 695736 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39593533ns 695739 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39593817ns 695744 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39594101ns 695749 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39594385ns 695754 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39594840ns 695762 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39595011ns 695765 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39595295ns 695770 1a110850 fd5ff06f jal x0, -44 +39595579ns 695775 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39595863ns 695780 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39596261ns 695787 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39596431ns 695790 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39596886ns 695798 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39597057ns 695801 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39597341ns 695806 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39597625ns 695811 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39597909ns 695816 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39598364ns 695824 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39598534ns 695827 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39598818ns 695832 1a110850 fd5ff06f jal x0, -44 +39599103ns 695837 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39599387ns 695842 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39599784ns 695849 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39599955ns 695852 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39600410ns 695860 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39600580ns 695863 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39600864ns 695868 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39601148ns 695873 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39601433ns 695878 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39601887ns 695886 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39602058ns 695889 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39602342ns 695894 1a110850 fd5ff06f jal x0, -44 +39602626ns 695899 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39602910ns 695904 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39603308ns 695911 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39603479ns 695914 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39603933ns 695922 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39604104ns 695925 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39604388ns 695930 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39604672ns 695935 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39604956ns 695940 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39605411ns 695948 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39605581ns 695951 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39605866ns 695956 1a110850 fd5ff06f jal x0, -44 +39606150ns 695961 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39606434ns 695966 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39606832ns 695973 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39607002ns 695976 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39607457ns 695984 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39607627ns 695987 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39607911ns 695992 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39608196ns 695997 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39608480ns 696002 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39608934ns 696010 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39609105ns 696013 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39609389ns 696018 1a110850 fd5ff06f jal x0, -44 +39609673ns 696023 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39609957ns 696028 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39610355ns 696035 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39610526ns 696038 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39610980ns 696046 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39611151ns 696049 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39611435ns 696054 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39611719ns 696059 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39612003ns 696064 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39612458ns 696072 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39612629ns 696075 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39612913ns 696080 1a110850 fd5ff06f jal x0, -44 +39613197ns 696085 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39613481ns 696090 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39613879ns 696097 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39614049ns 696100 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39614504ns 696108 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39614674ns 696111 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39614959ns 696116 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39615243ns 696121 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39615527ns 696126 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39615982ns 696134 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39616152ns 696137 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39616436ns 696142 1a110850 fd5ff06f jal x0, -44 +39616720ns 696147 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39617005ns 696152 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39617402ns 696159 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39617573ns 696162 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39618028ns 696170 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39618198ns 696173 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39618482ns 696178 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39618766ns 696183 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39619051ns 696188 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39619505ns 696196 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39619676ns 696199 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39619960ns 696204 1a110850 fd5ff06f jal x0, -44 +39620244ns 696209 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39620528ns 696214 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39620926ns 696221 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39621096ns 696224 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39621551ns 696232 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39621722ns 696235 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39622006ns 696240 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39622290ns 696245 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39622574ns 696250 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39623029ns 696258 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39623199ns 696261 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39623483ns 696266 1a110850 fd5ff06f jal x0, -44 +39623768ns 696271 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39624052ns 696276 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39624450ns 696283 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39624620ns 696286 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39625075ns 696294 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39625245ns 696297 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39625529ns 696302 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39625814ns 696307 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39626098ns 696312 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39626552ns 696320 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39626723ns 696323 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39627007ns 696328 1a110850 fd5ff06f jal x0, -44 +39627291ns 696333 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39627575ns 696338 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39627973ns 696345 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39628144ns 696348 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39628598ns 696356 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39628769ns 696359 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39629053ns 696364 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39629337ns 696369 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39629621ns 696374 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39630076ns 696382 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39630246ns 696385 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39630531ns 696390 1a110850 fd5ff06f jal x0, -44 +39630815ns 696395 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39631099ns 696400 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39631497ns 696407 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39631667ns 696410 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39632122ns 696418 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39632292ns 696421 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39632577ns 696426 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39632861ns 696431 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39633145ns 696436 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39633600ns 696444 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39633770ns 696447 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39634054ns 696452 1a110850 fd5ff06f jal x0, -44 +39634338ns 696457 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39634623ns 696462 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39635020ns 696469 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39635191ns 696472 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39635645ns 696480 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39635816ns 696483 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39636100ns 696488 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39636384ns 696493 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39636668ns 696498 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39637123ns 696506 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39637294ns 696509 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39637578ns 696514 1a110850 fd5ff06f jal x0, -44 +39637862ns 696519 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39638146ns 696524 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39638544ns 696531 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39638714ns 696534 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39639169ns 696542 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39639340ns 696545 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39639624ns 696550 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39639908ns 696555 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39640192ns 696560 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39640647ns 696568 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39640817ns 696571 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39641101ns 696576 1a110850 fd5ff06f jal x0, -44 +39641386ns 696581 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39641670ns 696586 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39642067ns 696593 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39642238ns 696596 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39642693ns 696604 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39642863ns 696607 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39643147ns 696612 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39643431ns 696617 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39643716ns 696622 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39644170ns 696630 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39644341ns 696633 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39644625ns 696638 1a110850 fd5ff06f jal x0, -44 +39644909ns 696643 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39645193ns 696648 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39645591ns 696655 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39645762ns 696658 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39646216ns 696666 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39646387ns 696669 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39646671ns 696674 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39646955ns 696679 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39647239ns 696684 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39647694ns 696692 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39647864ns 696695 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39648149ns 696700 1a110850 fd5ff06f jal x0, -44 +39648433ns 696705 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39648717ns 696710 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39649115ns 696717 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39649285ns 696720 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39649740ns 696728 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39649910ns 696731 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39650194ns 696736 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39650479ns 696741 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39650763ns 696746 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39651217ns 696754 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39651388ns 696757 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39651672ns 696762 1a110850 fd5ff06f jal x0, -44 +39651956ns 696767 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39652240ns 696772 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39652638ns 696779 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39652809ns 696782 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39653263ns 696790 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39653434ns 696793 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39653718ns 696798 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39654002ns 696803 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39654286ns 696808 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39654741ns 696816 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39654912ns 696819 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39655196ns 696824 1a110850 fd5ff06f jal x0, -44 +39655480ns 696829 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39655764ns 696834 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39656162ns 696841 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39656332ns 696844 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39656787ns 696852 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39656957ns 696855 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39657242ns 696860 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39657526ns 696865 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39657810ns 696870 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39658265ns 696878 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39658435ns 696881 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39658719ns 696886 1a110850 fd5ff06f jal x0, -44 +39659003ns 696891 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39659288ns 696896 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39659685ns 696903 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39659856ns 696906 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39660311ns 696914 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39660481ns 696917 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39660765ns 696922 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39661049ns 696927 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39661334ns 696932 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39661788ns 696940 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39661959ns 696943 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39662243ns 696948 1a110850 fd5ff06f jal x0, -44 +39662527ns 696953 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39662811ns 696958 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39663209ns 696965 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39663379ns 696968 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39663834ns 696976 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39664005ns 696979 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39664289ns 696984 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39664573ns 696989 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39664857ns 696994 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39665312ns 697002 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39665482ns 697005 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39665766ns 697010 1a110850 fd5ff06f jal x0, -44 +39666051ns 697015 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39666335ns 697020 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39666733ns 697027 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39666903ns 697030 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39667358ns 697038 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39667528ns 697041 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39667812ns 697046 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39668097ns 697051 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39668381ns 697056 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39668835ns 697064 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39669006ns 697067 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39669290ns 697072 1a110850 fd5ff06f jal x0, -44 +39669574ns 697077 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39669858ns 697082 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39670256ns 697089 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39670427ns 697092 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39670881ns 697100 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39671052ns 697103 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39671336ns 697108 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39671620ns 697113 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39671904ns 697118 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39672359ns 697126 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39672529ns 697129 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39672814ns 697134 1a110850 fd5ff06f jal x0, -44 +39673098ns 697139 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39673382ns 697144 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39673780ns 697151 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39673950ns 697154 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39674405ns 697162 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39674575ns 697165 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39674860ns 697170 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39675144ns 697175 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39675428ns 697180 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39675883ns 697188 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39676053ns 697191 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39676337ns 697196 1a110850 fd5ff06f jal x0, -44 +39676621ns 697201 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39676906ns 697206 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39677303ns 697213 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39677474ns 697216 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39677928ns 697224 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39678099ns 697227 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39678383ns 697232 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39678667ns 697237 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39678951ns 697242 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39679406ns 697250 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39679577ns 697253 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39679861ns 697258 1a110850 fd5ff06f jal x0, -44 +39680145ns 697263 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39680429ns 697268 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39680827ns 697275 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39680997ns 697278 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39681452ns 697286 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39681623ns 697289 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39681907ns 697294 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39682191ns 697299 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39682475ns 697304 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39682930ns 697312 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39683100ns 697315 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39683384ns 697320 1a110850 fd5ff06f jal x0, -44 +39683669ns 697325 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39683953ns 697330 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39684351ns 697337 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39684521ns 697340 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39684976ns 697348 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39685146ns 697351 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39685430ns 697356 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39685714ns 697361 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39685999ns 697366 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39686453ns 697374 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39686624ns 697377 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39686908ns 697382 1a110850 fd5ff06f jal x0, -44 +39687192ns 697387 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39687476ns 697392 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39687874ns 697399 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39688045ns 697402 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39688499ns 697410 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39688670ns 697413 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39688954ns 697418 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39689238ns 697423 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39689522ns 697428 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39689977ns 697436 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39690147ns 697439 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39690432ns 697444 1a110850 fd5ff06f jal x0, -44 +39690716ns 697449 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39691000ns 697454 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39691398ns 697461 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39691568ns 697464 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39692023ns 697472 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39692193ns 697475 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39692477ns 697480 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39692762ns 697485 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39693046ns 697490 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39693500ns 697498 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39693671ns 697501 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39693955ns 697506 1a110850 fd5ff06f jal x0, -44 +39694239ns 697511 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39694523ns 697516 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39694921ns 697523 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39695092ns 697526 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39695546ns 697534 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39695717ns 697537 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39696001ns 697542 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39696285ns 697547 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39696569ns 697552 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39697024ns 697560 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39697195ns 697563 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39697479ns 697568 1a110850 fd5ff06f jal x0, -44 +39697763ns 697573 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39698047ns 697578 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39698445ns 697585 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39698615ns 697588 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39699070ns 697596 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39699240ns 697599 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39699525ns 697604 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39699809ns 697609 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39700093ns 697614 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39700548ns 697622 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39700718ns 697625 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39701002ns 697630 1a110850 fd5ff06f jal x0, -44 +39701286ns 697635 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39701571ns 697640 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39701968ns 697647 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39702139ns 697650 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39702594ns 697658 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39702764ns 697661 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39703048ns 697666 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39703332ns 697671 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39703617ns 697676 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39704071ns 697684 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39704242ns 697687 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39704526ns 697692 1a110850 fd5ff06f jal x0, -44 +39704810ns 697697 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39705094ns 697702 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39705492ns 697709 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39705663ns 697712 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39706117ns 697720 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39706288ns 697723 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39706572ns 697728 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39706856ns 697733 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39707140ns 697738 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39707595ns 697746 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39707765ns 697749 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39708049ns 697754 1a110850 fd5ff06f jal x0, -44 +39708334ns 697759 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39708618ns 697764 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39709016ns 697771 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39709186ns 697774 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39709641ns 697782 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39709811ns 697785 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39710095ns 697790 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39710380ns 697795 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39710664ns 697800 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39711118ns 697808 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39711289ns 697811 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39711573ns 697816 1a110850 fd5ff06f jal x0, -44 +39711857ns 697821 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39712141ns 697826 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39712539ns 697833 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39712710ns 697836 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39713164ns 697844 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39713335ns 697847 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39713619ns 697852 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39713903ns 697857 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39714187ns 697862 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39714642ns 697870 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39714812ns 697873 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39715097ns 697878 1a110850 fd5ff06f jal x0, -44 +39715381ns 697883 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39715665ns 697888 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39716063ns 697895 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39716233ns 697898 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39716688ns 697906 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39716858ns 697909 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39717143ns 697914 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39717427ns 697919 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39717711ns 697924 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39718166ns 697932 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39718336ns 697935 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39718620ns 697940 1a110850 fd5ff06f jal x0, -44 +39718904ns 697945 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39719189ns 697950 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39719586ns 697957 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39719757ns 697960 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39720211ns 697968 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39720382ns 697971 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39720666ns 697976 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39720950ns 697981 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39721234ns 697986 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39721689ns 697994 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39721860ns 697997 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39722144ns 698002 1a110850 fd5ff06f jal x0, -44 +39722428ns 698007 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39722712ns 698012 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39723110ns 698019 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39723280ns 698022 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39723735ns 698030 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39723906ns 698033 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39724190ns 698038 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39724474ns 698043 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39724758ns 698048 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39725213ns 698056 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39725383ns 698059 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39725667ns 698064 1a110850 fd5ff06f jal x0, -44 +39725952ns 698069 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39726236ns 698074 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39726634ns 698081 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39726804ns 698084 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39727259ns 698092 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39727429ns 698095 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39727713ns 698100 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39727997ns 698105 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39728282ns 698110 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39728736ns 698118 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39728907ns 698121 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39729191ns 698126 1a110850 fd5ff06f jal x0, -44 +39729475ns 698131 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39729759ns 698136 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39730157ns 698143 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39730328ns 698146 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39730782ns 698154 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39730953ns 698157 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39731237ns 698162 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39731521ns 698167 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39731805ns 698172 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39732260ns 698180 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39732430ns 698183 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39732715ns 698188 1a110850 fd5ff06f jal x0, -44 +39732999ns 698193 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39733283ns 698198 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39733681ns 698205 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39733851ns 698208 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39734306ns 698216 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39734476ns 698219 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39734760ns 698224 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39735045ns 698229 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39735329ns 698234 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39735783ns 698242 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39735954ns 698245 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39736238ns 698250 1a110850 fd5ff06f jal x0, -44 +39736522ns 698255 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39736806ns 698260 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39737204ns 698267 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39737375ns 698270 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39737829ns 698278 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39738000ns 698281 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39738284ns 698286 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39738568ns 698291 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39738852ns 698296 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39739307ns 698304 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39739478ns 698307 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39739762ns 698312 1a110850 fd5ff06f jal x0, -44 +39740046ns 698317 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39740330ns 698322 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39740728ns 698329 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39740898ns 698332 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39741353ns 698340 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39741523ns 698343 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39741808ns 698348 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39742092ns 698353 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39742376ns 698358 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39742831ns 698366 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39743001ns 698369 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39743285ns 698374 1a110850 fd5ff06f jal x0, -44 +39743569ns 698379 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39743854ns 698384 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39744251ns 698391 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39744422ns 698394 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39744877ns 698402 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39745047ns 698405 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39745331ns 698410 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39745615ns 698415 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39745900ns 698420 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39746354ns 698428 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39746525ns 698431 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39746809ns 698436 1a110850 fd5ff06f jal x0, -44 +39747093ns 698441 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39747377ns 698446 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39747775ns 698453 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39747946ns 698456 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39748400ns 698464 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39748571ns 698467 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39748855ns 698472 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39749139ns 698477 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39749423ns 698482 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39749878ns 698490 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39750048ns 698493 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39750332ns 698498 1a110850 fd5ff06f jal x0, -44 +39750617ns 698503 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39750901ns 698508 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39751299ns 698515 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39751469ns 698518 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39751924ns 698526 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39752094ns 698529 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39752378ns 698534 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39752663ns 698539 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39752947ns 698544 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39753401ns 698552 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39753572ns 698555 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39753856ns 698560 1a110850 fd5ff06f jal x0, -44 +39754140ns 698565 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39754424ns 698570 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39754822ns 698577 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39754993ns 698580 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39755447ns 698588 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39755618ns 698591 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39755902ns 698596 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39756186ns 698601 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39756470ns 698606 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39756925ns 698614 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39757095ns 698617 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39757380ns 698622 1a110850 fd5ff06f jal x0, -44 +39757664ns 698627 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39757948ns 698632 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39758346ns 698639 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39758516ns 698642 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39758971ns 698650 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39759141ns 698653 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39759426ns 698658 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39759710ns 698663 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39759994ns 698668 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39760449ns 698676 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39760619ns 698679 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39760903ns 698684 1a110850 fd5ff06f jal x0, -44 +39761187ns 698689 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39761472ns 698694 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39761869ns 698701 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39762040ns 698704 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39762495ns 698712 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39762665ns 698715 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39762949ns 698720 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39763233ns 698725 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39763517ns 698730 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39763972ns 698738 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39764143ns 698741 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39764427ns 698746 1a110850 fd5ff06f jal x0, -44 +39764711ns 698751 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39764995ns 698756 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39765393ns 698763 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39765563ns 698766 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39766018ns 698774 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39766189ns 698777 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39766473ns 698782 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39766757ns 698787 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39767041ns 698792 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39767496ns 698800 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39767666ns 698803 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39767950ns 698808 1a110850 fd5ff06f jal x0, -44 +39768235ns 698813 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39768519ns 698818 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39768917ns 698825 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39769087ns 698828 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39769542ns 698836 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39769712ns 698839 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39769996ns 698844 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39770280ns 698849 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39770565ns 698854 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39771019ns 698862 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39771190ns 698865 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39771474ns 698870 1a110850 fd5ff06f jal x0, -44 +39771758ns 698875 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39772042ns 698880 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39772440ns 698887 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39772611ns 698890 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39773065ns 698898 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39773236ns 698901 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39773520ns 698906 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39773804ns 698911 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39774088ns 698916 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39774543ns 698924 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39774713ns 698927 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39774998ns 698932 1a110850 fd5ff06f jal x0, -44 +39775282ns 698937 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39775566ns 698942 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39775964ns 698949 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39776134ns 698952 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39776589ns 698960 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39776759ns 698963 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39777043ns 698968 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39777328ns 698973 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39777612ns 698978 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39778066ns 698986 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39778237ns 698989 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39778521ns 698994 1a110850 fd5ff06f jal x0, -44 +39778805ns 698999 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39779089ns 699004 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39779487ns 699011 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39779658ns 699014 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39780112ns 699022 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39780283ns 699025 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39780567ns 699030 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39780851ns 699035 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39781135ns 699040 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39781590ns 699048 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39781761ns 699051 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39782045ns 699056 1a110850 fd5ff06f jal x0, -44 +39782329ns 699061 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39782613ns 699066 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39783011ns 699073 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39783181ns 699076 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39783636ns 699084 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39783807ns 699087 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39784091ns 699092 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39784375ns 699097 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39784659ns 699102 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39785114ns 699110 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39785284ns 699113 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39785568ns 699118 1a110850 fd5ff06f jal x0, -44 +39785852ns 699123 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39786137ns 699128 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39786534ns 699135 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39786705ns 699138 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39787160ns 699146 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39787330ns 699149 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39787614ns 699154 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39787898ns 699159 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39788183ns 699164 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39788637ns 699172 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39788808ns 699175 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39789092ns 699180 1a110850 fd5ff06f jal x0, -44 +39789376ns 699185 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39789660ns 699190 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39790058ns 699197 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39790229ns 699200 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39790683ns 699208 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39790854ns 699211 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39791138ns 699216 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39791422ns 699221 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39791706ns 699226 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39792161ns 699234 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39792331ns 699237 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39792615ns 699242 1a110850 fd5ff06f jal x0, -44 +39792900ns 699247 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39793184ns 699252 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39793582ns 699259 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39793752ns 699262 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39794207ns 699270 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39794377ns 699273 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39794661ns 699278 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39794946ns 699283 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39795230ns 699288 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39795684ns 699296 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39795855ns 699299 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39796139ns 699304 1a110850 fd5ff06f jal x0, -44 +39796423ns 699309 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39796707ns 699314 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39797105ns 699321 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39797276ns 699324 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39797730ns 699332 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39797901ns 699335 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39798185ns 699340 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39798469ns 699345 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39798753ns 699350 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39799208ns 699358 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39799378ns 699361 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39799663ns 699366 1a110850 fd5ff06f jal x0, -44 +39799947ns 699371 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39800231ns 699376 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39800629ns 699383 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39800799ns 699386 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39801254ns 699394 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39801424ns 699397 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39801709ns 699402 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39801993ns 699407 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39802277ns 699412 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39802732ns 699420 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39802902ns 699423 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39803186ns 699428 1a110850 fd5ff06f jal x0, -44 +39803470ns 699433 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39803755ns 699438 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39804152ns 699445 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39804323ns 699448 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39804778ns 699456 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39804948ns 699459 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39805232ns 699464 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39805516ns 699469 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39805800ns 699474 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39806255ns 699482 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39806426ns 699485 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39806710ns 699490 1a110850 fd5ff06f jal x0, -44 +39806994ns 699495 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39807278ns 699500 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39807676ns 699507 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39807846ns 699510 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39808301ns 699518 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39808472ns 699521 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39808756ns 699526 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39809040ns 699531 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39809324ns 699536 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39809779ns 699544 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39809949ns 699547 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39810233ns 699552 1a110850 fd5ff06f jal x0, -44 +39810518ns 699557 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39810802ns 699562 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39811200ns 699569 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39811370ns 699572 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39811825ns 699580 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39811995ns 699583 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39812279ns 699588 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39812563ns 699593 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39812848ns 699598 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39813302ns 699606 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39813473ns 699609 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39813757ns 699614 1a110850 fd5ff06f jal x0, -44 +39814041ns 699619 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39814325ns 699624 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39814723ns 699631 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39814894ns 699634 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39815348ns 699642 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39815519ns 699645 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39815803ns 699650 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39816087ns 699655 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39816371ns 699660 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39816826ns 699668 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39816996ns 699671 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39817281ns 699676 1a110850 fd5ff06f jal x0, -44 +39817565ns 699681 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39817849ns 699686 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39818247ns 699693 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39818417ns 699696 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39818872ns 699704 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39819042ns 699707 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39819327ns 699712 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39819611ns 699717 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39819895ns 699722 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39820349ns 699730 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39820520ns 699733 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39820804ns 699738 1a110850 fd5ff06f jal x0, -44 +39821088ns 699743 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39821372ns 699748 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39821770ns 699755 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39821941ns 699758 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39822395ns 699766 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39822566ns 699769 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39822850ns 699774 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39823134ns 699779 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39823418ns 699784 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39823873ns 699792 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39824044ns 699795 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39824328ns 699800 1a110850 fd5ff06f jal x0, -44 +39824612ns 699805 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39824896ns 699810 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39825294ns 699817 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39825464ns 699820 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39825919ns 699828 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39826090ns 699831 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39826374ns 699836 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39826658ns 699841 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39826942ns 699846 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39827397ns 699854 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39827567ns 699857 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39827851ns 699862 1a110850 fd5ff06f jal x0, -44 +39828135ns 699867 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39828420ns 699872 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39828817ns 699879 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39828988ns 699882 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39829443ns 699890 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39829613ns 699893 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39829897ns 699898 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39830181ns 699903 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39830466ns 699908 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39830920ns 699916 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39831091ns 699919 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39831375ns 699924 1a110850 fd5ff06f jal x0, -44 +39831659ns 699929 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39831943ns 699934 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39832341ns 699941 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39832512ns 699944 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39832966ns 699952 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39833137ns 699955 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39833421ns 699960 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39833705ns 699965 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39833989ns 699970 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39834444ns 699978 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39834614ns 699981 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39834898ns 699986 1a110850 fd5ff06f jal x0, -44 +39835183ns 699991 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39835467ns 699996 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39835865ns 700003 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39836035ns 700006 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39836490ns 700014 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39836660ns 700017 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39836944ns 700022 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39837229ns 700027 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39837513ns 700032 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39837967ns 700040 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39838138ns 700043 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39838422ns 700048 1a110850 fd5ff06f jal x0, -44 +39838706ns 700053 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39838990ns 700058 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39839388ns 700065 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39839559ns 700068 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39840013ns 700076 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39840184ns 700079 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39840468ns 700084 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39840752ns 700089 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39841036ns 700094 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39841491ns 700102 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39841661ns 700105 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39841946ns 700110 1a110850 fd5ff06f jal x0, -44 +39842230ns 700115 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39842514ns 700120 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39842912ns 700127 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39843082ns 700130 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39843537ns 700138 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39843707ns 700141 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39843992ns 700146 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39844276ns 700151 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39844560ns 700156 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39845015ns 700164 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39845185ns 700167 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39845469ns 700172 1a110850 fd5ff06f jal x0, -44 +39845753ns 700177 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39846038ns 700182 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39846435ns 700189 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39846606ns 700192 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39847061ns 700200 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39847231ns 700203 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39847515ns 700208 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39847799ns 700213 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39848083ns 700218 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39848538ns 700226 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39848709ns 700229 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39848993ns 700234 1a110850 fd5ff06f jal x0, -44 +39849277ns 700239 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39849561ns 700244 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39849959ns 700251 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39850129ns 700254 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39850584ns 700262 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39850755ns 700265 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39851039ns 700270 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39851323ns 700275 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39851607ns 700280 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39852062ns 700288 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39852232ns 700291 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39852516ns 700296 1a110850 fd5ff06f jal x0, -44 +39852801ns 700301 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39853085ns 700306 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39853483ns 700313 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39853653ns 700316 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39854108ns 700324 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39854278ns 700327 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39854562ns 700332 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39854847ns 700337 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39855131ns 700342 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39855585ns 700350 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39855756ns 700353 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39856040ns 700358 1a110850 fd5ff06f jal x0, -44 +39856324ns 700363 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39856608ns 700368 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39857006ns 700375 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39857177ns 700378 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39857631ns 700386 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39857802ns 700389 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39858086ns 700394 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39858370ns 700399 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39858654ns 700404 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39859109ns 700412 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39859279ns 700415 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39859564ns 700420 1a110850 fd5ff06f jal x0, -44 +39859848ns 700425 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39860132ns 700430 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39860530ns 700437 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39860700ns 700440 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39861155ns 700448 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39861325ns 700451 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39861610ns 700456 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39861894ns 700461 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39862178ns 700466 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39862632ns 700474 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39862803ns 700477 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39863087ns 700482 1a110850 fd5ff06f jal x0, -44 +39863371ns 700487 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39863655ns 700492 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39864053ns 700499 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39864224ns 700502 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39864678ns 700510 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39864849ns 700513 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39865133ns 700518 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39865417ns 700523 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39865701ns 700528 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39866156ns 700536 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39866327ns 700539 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39866611ns 700544 1a110850 fd5ff06f jal x0, -44 +39866895ns 700549 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39867179ns 700554 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39867577ns 700561 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39867747ns 700564 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39868202ns 700572 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39868373ns 700575 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39868657ns 700580 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39868941ns 700585 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39869225ns 700590 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39869680ns 700598 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39869850ns 700601 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39870134ns 700606 1a110850 fd5ff06f jal x0, -44 +39870418ns 700611 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39870703ns 700616 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39871100ns 700623 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39871271ns 700626 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39871726ns 700634 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39871896ns 700637 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39872180ns 700642 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39872464ns 700647 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39872749ns 700652 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39873203ns 700660 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39873374ns 700663 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39873658ns 700668 1a110850 fd5ff06f jal x0, -44 +39873942ns 700673 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39874226ns 700678 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39874624ns 700685 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39874795ns 700688 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39875249ns 700696 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39875420ns 700699 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39875704ns 700704 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39875988ns 700709 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39876272ns 700714 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39876727ns 700722 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39876897ns 700725 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39877181ns 700730 1a110850 fd5ff06f jal x0, -44 +39877466ns 700735 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39877750ns 700740 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39878148ns 700747 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39878318ns 700750 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39878773ns 700758 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39878943ns 700761 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39879227ns 700766 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39879512ns 700771 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39879796ns 700776 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39880250ns 700784 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39880421ns 700787 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39880705ns 700792 1a110850 fd5ff06f jal x0, -44 +39880989ns 700797 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39881273ns 700802 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39881671ns 700809 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39881842ns 700812 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39882296ns 700820 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39882467ns 700823 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39882751ns 700828 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39883035ns 700833 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39883319ns 700838 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39883774ns 700846 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39883944ns 700849 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39884229ns 700854 1a110850 fd5ff06f jal x0, -44 +39884513ns 700859 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39884797ns 700864 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39885195ns 700871 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39885365ns 700874 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39885820ns 700882 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39885990ns 700885 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39886275ns 700890 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39886559ns 700895 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39886843ns 700900 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39887298ns 700908 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39887468ns 700911 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39887752ns 700916 1a110850 fd5ff06f jal x0, -44 +39888036ns 700921 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39888321ns 700926 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39888718ns 700933 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39888889ns 700936 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39889344ns 700944 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39889514ns 700947 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39889798ns 700952 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39890082ns 700957 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39890367ns 700962 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39890821ns 700970 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39890992ns 700973 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39891276ns 700978 1a110850 fd5ff06f jal x0, -44 +39891560ns 700983 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39891844ns 700988 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39892242ns 700995 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39892412ns 700998 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39892867ns 701006 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39893038ns 701009 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39893322ns 701014 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39893606ns 701019 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39893890ns 701024 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39894345ns 701032 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39894515ns 701035 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39894799ns 701040 1a110850 fd5ff06f jal x0, -44 +39895084ns 701045 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39895368ns 701050 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39895766ns 701057 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39895936ns 701060 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39896391ns 701068 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39896561ns 701071 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39896845ns 701076 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39897130ns 701081 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39897414ns 701086 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39897868ns 701094 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39898039ns 701097 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39898323ns 701102 1a110850 fd5ff06f jal x0, -44 +39898607ns 701107 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39898891ns 701112 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39899289ns 701119 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39899460ns 701122 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39899914ns 701130 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39900085ns 701133 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39900369ns 701138 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39900653ns 701143 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39900937ns 701148 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39901392ns 701156 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39901562ns 701159 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39901847ns 701164 1a110850 fd5ff06f jal x0, -44 +39902131ns 701169 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39902415ns 701174 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39902813ns 701181 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39902983ns 701184 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39903438ns 701192 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39903608ns 701195 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39903893ns 701200 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39904177ns 701205 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39904461ns 701210 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39904915ns 701218 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39905086ns 701221 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39905370ns 701226 1a110850 fd5ff06f jal x0, -44 +39905654ns 701231 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39905938ns 701236 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39906336ns 701243 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39906507ns 701246 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39906961ns 701254 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39907132ns 701257 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39907416ns 701262 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39907700ns 701267 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39907984ns 701272 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39908439ns 701280 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39908610ns 701283 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39908894ns 701288 1a110850 fd5ff06f jal x0, -44 +39909178ns 701293 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39909462ns 701298 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39909860ns 701305 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39910030ns 701308 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39910485ns 701316 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39910656ns 701319 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39910940ns 701324 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39911224ns 701329 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39911508ns 701334 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39911963ns 701342 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39912133ns 701345 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39912417ns 701350 1a110850 fd5ff06f jal x0, -44 +39912701ns 701355 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39912986ns 701360 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39913383ns 701367 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39913554ns 701370 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39914009ns 701378 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39914179ns 701381 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39914463ns 701386 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39914747ns 701391 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39915032ns 701396 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39915486ns 701404 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39915657ns 701407 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39915941ns 701412 1a110850 fd5ff06f jal x0, -44 +39916225ns 701417 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39916509ns 701422 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39916907ns 701429 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39917078ns 701432 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39917532ns 701440 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39917703ns 701443 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39917987ns 701448 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39918271ns 701453 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39918555ns 701458 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39919010ns 701466 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39919180ns 701469 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39919464ns 701474 1a110850 fd5ff06f jal x0, -44 +39919749ns 701479 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39920033ns 701484 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39920431ns 701491 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39920601ns 701494 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39921056ns 701502 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39921226ns 701505 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39921510ns 701510 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39921795ns 701515 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39922079ns 701520 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39922533ns 701528 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39922704ns 701531 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39922988ns 701536 1a110850 fd5ff06f jal x0, -44 +39923272ns 701541 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39923556ns 701546 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39923954ns 701553 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39924125ns 701556 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39924579ns 701564 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39924750ns 701567 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39925034ns 701572 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39925318ns 701577 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39925602ns 701582 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39926057ns 701590 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39926227ns 701593 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39926512ns 701598 1a110850 fd5ff06f jal x0, -44 +39926796ns 701603 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39927080ns 701608 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39927478ns 701615 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39927648ns 701618 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39928103ns 701626 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39928273ns 701629 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39928558ns 701634 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39928842ns 701639 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39929126ns 701644 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39929581ns 701652 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39929751ns 701655 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39930035ns 701660 1a110850 fd5ff06f jal x0, -44 +39930319ns 701665 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39930604ns 701670 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39931001ns 701677 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39931172ns 701680 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39931627ns 701688 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39931797ns 701691 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39932081ns 701696 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39932365ns 701701 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39932650ns 701706 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39933104ns 701714 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39933275ns 701717 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39933559ns 701722 1a110850 fd5ff06f jal x0, -44 +39933843ns 701727 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39934127ns 701732 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39934525ns 701739 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39934695ns 701742 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39935150ns 701750 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39935321ns 701753 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39935605ns 701758 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39935889ns 701763 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39936173ns 701768 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39936628ns 701776 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39936798ns 701779 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39937082ns 701784 1a110850 fd5ff06f jal x0, -44 +39937367ns 701789 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39937651ns 701794 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39938049ns 701801 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39938219ns 701804 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39938674ns 701812 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39938844ns 701815 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39939128ns 701820 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39939413ns 701825 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39939697ns 701830 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39940151ns 701838 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39940322ns 701841 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39940606ns 701846 1a110850 fd5ff06f jal x0, -44 +39940890ns 701851 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39941174ns 701856 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39941572ns 701863 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39941743ns 701866 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39942197ns 701874 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39942368ns 701877 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39942652ns 701882 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39942936ns 701887 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39943220ns 701892 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39943675ns 701900 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39943845ns 701903 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39944130ns 701908 1a110850 fd5ff06f jal x0, -44 +39944414ns 701913 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39944698ns 701918 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39945096ns 701925 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39945266ns 701928 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39945721ns 701936 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39945891ns 701939 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39946176ns 701944 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39946460ns 701949 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39946744ns 701954 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39947199ns 701962 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39947369ns 701965 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39947653ns 701970 1a110850 fd5ff06f jal x0, -44 +39947937ns 701975 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39948221ns 701980 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39948619ns 701987 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39948790ns 701990 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39949244ns 701998 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39949415ns 702001 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39949699ns 702006 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39949983ns 702011 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39950267ns 702016 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39950722ns 702024 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39950893ns 702027 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39951177ns 702032 1a110850 fd5ff06f jal x0, -44 +39951461ns 702037 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39951745ns 702042 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39952143ns 702049 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39952313ns 702052 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39952768ns 702060 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39952939ns 702063 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39953223ns 702068 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39953507ns 702073 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39953791ns 702078 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39954246ns 702086 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39954416ns 702089 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39954700ns 702094 1a110850 fd5ff06f jal x0, -44 +39954984ns 702099 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39955269ns 702104 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39955666ns 702111 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39955837ns 702114 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39956292ns 702122 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39956462ns 702125 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39956746ns 702130 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39957030ns 702135 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39957315ns 702140 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39957769ns 702148 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39957940ns 702151 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39958224ns 702156 1a110850 fd5ff06f jal x0, -44 +39958508ns 702161 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39958792ns 702166 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39959190ns 702173 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39959361ns 702176 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39959815ns 702184 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39959986ns 702187 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39960270ns 702192 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39960554ns 702197 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39960838ns 702202 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39961293ns 702210 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39961463ns 702213 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39961747ns 702218 1a110850 fd5ff06f jal x0, -44 +39962032ns 702223 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39962316ns 702228 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39962714ns 702235 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39962884ns 702238 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39963339ns 702246 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39963509ns 702249 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39963793ns 702254 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39964078ns 702259 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39964362ns 702264 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39964816ns 702272 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39964987ns 702275 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39965271ns 702280 1a110850 fd5ff06f jal x0, -44 +39965555ns 702285 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39965839ns 702290 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39966237ns 702297 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39966408ns 702300 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39966862ns 702308 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39967033ns 702311 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39967317ns 702316 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39967601ns 702321 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39967885ns 702326 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39968340ns 702334 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39968511ns 702337 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39968795ns 702342 1a110850 fd5ff06f jal x0, -44 +39969079ns 702347 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39969363ns 702352 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39969761ns 702359 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39969931ns 702362 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39970386ns 702370 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39970556ns 702373 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39970841ns 702378 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39971125ns 702383 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39971409ns 702388 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39971864ns 702396 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39972034ns 702399 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39972318ns 702404 1a110850 fd5ff06f jal x0, -44 +39972602ns 702409 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39972887ns 702414 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39973284ns 702421 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39973455ns 702424 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39973910ns 702432 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39974080ns 702435 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39974364ns 702440 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39974648ns 702445 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39974933ns 702450 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39975387ns 702458 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39975558ns 702461 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39975842ns 702466 1a110850 fd5ff06f jal x0, -44 +39976126ns 702471 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39976410ns 702476 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39976808ns 702483 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39976978ns 702486 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39977433ns 702494 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39977604ns 702497 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39977888ns 702502 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39978172ns 702507 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39978456ns 702512 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39978911ns 702520 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39979081ns 702523 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39979365ns 702528 1a110850 fd5ff06f jal x0, -44 +39979650ns 702533 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39979934ns 702538 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39980332ns 702545 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39980502ns 702548 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39980957ns 702556 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39981127ns 702559 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39981411ns 702564 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39981696ns 702569 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39981980ns 702574 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39982434ns 702582 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39982605ns 702585 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39982889ns 702590 1a110850 fd5ff06f jal x0, -44 +39983173ns 702595 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39983457ns 702600 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39983855ns 702607 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39984026ns 702610 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39984480ns 702618 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39984651ns 702621 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39984935ns 702626 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39985219ns 702631 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39985503ns 702636 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39985958ns 702644 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39986128ns 702647 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39986413ns 702652 1a110850 fd5ff06f jal x0, -44 +39986697ns 702657 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39986981ns 702662 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39987379ns 702669 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39987549ns 702672 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39988004ns 702680 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39988174ns 702683 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39988459ns 702688 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39988743ns 702693 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39989027ns 702698 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39989482ns 702706 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39989652ns 702709 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39989936ns 702714 1a110850 fd5ff06f jal x0, -44 +39990220ns 702719 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39990504ns 702724 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39990902ns 702731 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39991073ns 702734 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39991527ns 702742 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39991698ns 702745 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39991982ns 702750 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39992266ns 702755 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39992550ns 702760 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39993005ns 702768 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39993176ns 702771 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39993460ns 702776 1a110850 fd5ff06f jal x0, -44 +39993744ns 702781 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39994028ns 702786 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39994426ns 702793 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39994596ns 702796 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39995051ns 702804 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39995222ns 702807 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39995506ns 702812 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39995790ns 702817 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39996074ns 702822 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39996529ns 702830 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +39996699ns 702833 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +39996983ns 702838 1a110850 fd5ff06f jal x0, -44 +39997267ns 702843 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39997552ns 702848 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +39997949ns 702855 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39998120ns 702858 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +39998575ns 702866 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +39998745ns 702869 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +39999029ns 702874 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +39999313ns 702879 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +39999598ns 702884 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40000052ns 702892 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40000223ns 702895 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40000507ns 702900 1a110850 fd5ff06f jal x0, -44 +40000791ns 702905 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40001075ns 702910 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40001473ns 702917 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40001644ns 702920 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40002098ns 702928 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40002269ns 702931 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40002553ns 702936 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40002837ns 702941 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40003121ns 702946 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40003576ns 702954 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40003746ns 702957 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40004031ns 702962 1a110850 fd5ff06f jal x0, -44 +40004315ns 702967 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40004599ns 702972 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40004997ns 702979 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40005167ns 702982 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40005622ns 702990 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40005792ns 702993 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40006076ns 702998 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40006361ns 703003 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40006645ns 703008 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40007099ns 703016 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40007270ns 703019 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40007554ns 703024 1a110850 fd5ff06f jal x0, -44 +40007838ns 703029 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40008122ns 703034 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40008520ns 703041 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40008691ns 703044 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40009145ns 703052 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40009316ns 703055 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40009600ns 703060 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40009884ns 703065 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40010168ns 703070 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40010623ns 703078 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40010794ns 703081 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40011078ns 703086 1a110850 fd5ff06f jal x0, -44 +40011362ns 703091 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40011646ns 703096 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40012044ns 703103 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40012214ns 703106 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40012669ns 703114 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40012839ns 703117 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40013124ns 703122 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40013408ns 703127 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40013692ns 703132 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40014147ns 703140 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40014317ns 703143 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40014601ns 703148 1a110850 fd5ff06f jal x0, -44 +40014885ns 703153 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40015170ns 703158 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40015567ns 703165 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40015738ns 703168 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40016193ns 703176 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40016363ns 703179 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40016647ns 703184 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40016931ns 703189 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40017216ns 703194 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40017670ns 703202 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40017841ns 703205 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40018125ns 703210 1a110850 fd5ff06f jal x0, -44 +40018409ns 703215 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40018693ns 703220 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40019091ns 703227 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40019261ns 703230 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40019716ns 703238 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40019887ns 703241 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40020171ns 703246 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40020455ns 703251 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40020739ns 703256 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40021194ns 703264 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40021364ns 703267 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40021648ns 703272 1a110850 fd5ff06f jal x0, -44 +40021933ns 703277 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40022217ns 703282 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40022615ns 703289 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40022785ns 703292 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40023240ns 703300 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40023410ns 703303 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40023694ns 703308 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40023979ns 703313 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40024263ns 703318 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40024717ns 703326 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40024888ns 703329 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40025172ns 703334 1a110850 fd5ff06f jal x0, -44 +40025456ns 703339 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40025740ns 703344 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40026138ns 703351 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40026309ns 703354 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40026763ns 703362 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40026934ns 703365 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40027218ns 703370 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40027502ns 703375 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40027786ns 703380 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40028241ns 703388 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40028411ns 703391 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40028696ns 703396 1a110850 fd5ff06f jal x0, -44 +40028980ns 703401 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40029264ns 703406 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40029662ns 703413 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40029832ns 703416 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40030287ns 703424 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40030457ns 703427 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40030742ns 703432 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40031026ns 703437 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40031310ns 703442 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40031765ns 703450 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40031935ns 703453 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40032219ns 703458 1a110850 fd5ff06f jal x0, -44 +40032503ns 703463 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40032787ns 703468 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40033185ns 703475 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40033356ns 703478 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40033810ns 703486 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40033981ns 703489 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40034265ns 703494 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40034549ns 703499 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40034833ns 703504 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40035288ns 703512 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40035459ns 703515 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40035743ns 703520 1a110850 fd5ff06f jal x0, -44 +40036027ns 703525 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40036311ns 703530 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40036709ns 703537 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40036879ns 703540 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40037334ns 703548 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40037505ns 703551 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40037789ns 703556 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40038073ns 703561 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40038357ns 703566 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40038812ns 703574 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40038982ns 703577 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40039266ns 703582 1a110850 fd5ff06f jal x0, -44 +40039551ns 703587 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40039835ns 703592 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40040232ns 703599 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40040403ns 703602 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40040858ns 703610 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40041028ns 703613 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40041312ns 703618 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40041596ns 703623 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40041881ns 703628 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40042335ns 703636 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40042506ns 703639 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40042790ns 703644 1a110850 fd5ff06f jal x0, -44 +40043074ns 703649 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40043358ns 703654 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40043756ns 703661 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40043927ns 703664 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40044381ns 703672 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40044552ns 703675 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40044836ns 703680 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40045120ns 703685 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40045404ns 703690 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40045859ns 703698 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40046029ns 703701 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40046314ns 703706 1a110850 fd5ff06f jal x0, -44 +40046598ns 703711 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40046882ns 703716 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40047280ns 703723 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40047450ns 703726 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40047905ns 703734 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40048075ns 703737 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40048359ns 703742 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40048644ns 703747 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40048928ns 703752 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40049382ns 703760 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40049553ns 703763 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40049837ns 703768 1a110850 fd5ff06f jal x0, -44 +40050121ns 703773 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40050405ns 703778 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40050803ns 703785 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40050974ns 703788 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40051428ns 703796 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40051599ns 703799 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40051883ns 703804 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40052167ns 703809 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40052451ns 703814 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40052906ns 703822 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40053077ns 703825 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40053361ns 703830 1a110850 fd5ff06f jal x0, -44 +40053645ns 703835 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40053929ns 703840 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40054327ns 703847 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40054497ns 703850 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40054952ns 703858 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40055122ns 703861 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40055407ns 703866 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40055691ns 703871 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40055975ns 703876 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40056430ns 703884 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40056600ns 703887 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40056884ns 703892 1a110850 fd5ff06f jal x0, -44 +40057168ns 703897 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40057453ns 703902 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40057850ns 703909 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40058021ns 703912 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40058476ns 703920 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40058646ns 703923 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40058930ns 703928 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40059214ns 703933 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40059499ns 703938 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40059953ns 703946 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40060124ns 703949 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40060408ns 703954 1a110850 fd5ff06f jal x0, -44 +40060692ns 703959 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40060976ns 703964 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40061374ns 703971 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40061544ns 703974 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40061999ns 703982 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40062170ns 703985 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40062454ns 703990 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40062738ns 703995 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40063022ns 704000 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40063477ns 704008 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40063647ns 704011 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40063931ns 704016 1a110850 fd5ff06f jal x0, -44 +40064216ns 704021 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40064500ns 704026 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40064898ns 704033 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40065068ns 704036 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40065523ns 704044 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40065693ns 704047 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40065977ns 704052 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40066262ns 704057 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40066546ns 704062 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40067000ns 704070 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40067171ns 704073 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40067455ns 704078 1a110850 fd5ff06f jal x0, -44 +40067739ns 704083 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40068023ns 704088 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40068421ns 704095 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40068592ns 704098 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40069046ns 704106 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40069217ns 704109 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40069501ns 704114 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40069785ns 704119 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40070069ns 704124 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40070524ns 704132 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40070694ns 704135 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40070979ns 704140 1a110850 fd5ff06f jal x0, -44 +40071263ns 704145 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40071547ns 704150 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40071945ns 704157 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40072115ns 704160 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40072570ns 704168 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40072740ns 704171 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40073025ns 704176 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40073309ns 704181 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40073593ns 704186 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40074048ns 704194 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40074218ns 704197 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40074502ns 704202 1a110850 fd5ff06f jal x0, -44 +40074786ns 704207 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40075071ns 704212 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40075468ns 704219 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40075639ns 704222 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40076093ns 704230 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40076264ns 704233 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40076548ns 704238 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40076832ns 704243 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40077116ns 704248 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40077571ns 704256 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40077742ns 704259 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40078026ns 704264 1a110850 fd5ff06f jal x0, -44 +40078310ns 704269 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40078594ns 704274 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40078992ns 704281 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40079162ns 704284 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40079617ns 704292 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40079788ns 704295 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40080072ns 704300 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40080356ns 704305 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40080640ns 704310 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40081095ns 704318 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40081265ns 704321 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40081549ns 704326 1a110850 fd5ff06f jal x0, -44 +40081834ns 704331 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40082118ns 704336 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40082515ns 704343 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40082686ns 704346 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40083141ns 704354 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40083311ns 704357 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40083595ns 704362 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40083879ns 704367 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40084164ns 704372 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40084618ns 704380 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40084789ns 704383 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40085073ns 704388 1a110850 fd5ff06f jal x0, -44 +40085357ns 704393 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40085641ns 704398 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40086039ns 704405 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40086210ns 704408 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40086664ns 704416 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40086835ns 704419 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40087119ns 704424 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40087403ns 704429 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40087687ns 704434 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40088142ns 704442 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40088312ns 704445 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40088597ns 704450 1a110850 fd5ff06f jal x0, -44 +40088881ns 704455 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40089165ns 704460 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40089563ns 704467 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40089733ns 704470 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40090188ns 704478 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40090358ns 704481 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40090642ns 704486 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40090927ns 704491 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40091211ns 704496 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40091665ns 704504 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40091836ns 704507 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40092120ns 704512 1a110850 fd5ff06f jal x0, -44 +40092404ns 704517 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40092688ns 704522 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40093086ns 704529 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40093257ns 704532 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40093711ns 704540 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40093882ns 704543 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40094166ns 704548 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40094450ns 704553 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40094734ns 704558 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40095189ns 704566 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40095360ns 704569 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40095644ns 704574 1a110850 fd5ff06f jal x0, -44 +40095928ns 704579 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40096212ns 704584 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40096610ns 704591 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40096780ns 704594 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40097235ns 704602 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40097405ns 704605 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40097690ns 704610 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40097974ns 704615 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40098258ns 704620 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40098713ns 704628 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40098883ns 704631 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40099167ns 704636 1a110850 fd5ff06f jal x0, -44 +40099451ns 704641 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40099736ns 704646 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40100133ns 704653 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40100304ns 704656 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40100759ns 704664 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40100929ns 704667 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40101213ns 704672 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40101497ns 704677 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40101782ns 704682 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40102236ns 704690 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40102407ns 704693 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40102691ns 704698 1a110850 fd5ff06f jal x0, -44 +40102975ns 704703 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40103259ns 704708 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40103657ns 704715 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40103827ns 704718 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40104282ns 704726 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40104453ns 704729 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40104737ns 704734 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40105021ns 704739 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40105305ns 704744 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40105760ns 704752 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40105930ns 704755 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40106214ns 704760 1a110850 fd5ff06f jal x0, -44 +40106499ns 704765 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40106783ns 704770 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40107181ns 704777 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40107351ns 704780 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40107806ns 704788 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40107976ns 704791 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40108260ns 704796 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40108545ns 704801 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40108829ns 704806 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40109283ns 704814 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40109454ns 704817 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40109738ns 704822 1a110850 fd5ff06f jal x0, -44 +40110022ns 704827 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40110306ns 704832 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40110704ns 704839 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40110875ns 704842 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40111329ns 704850 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40111500ns 704853 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40111784ns 704858 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40112068ns 704863 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40112352ns 704868 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40112807ns 704876 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40112977ns 704879 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40113262ns 704884 1a110850 fd5ff06f jal x0, -44 +40113546ns 704889 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40113830ns 704894 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40114228ns 704901 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40114398ns 704904 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40114853ns 704912 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40115023ns 704915 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40115308ns 704920 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40115592ns 704925 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40115876ns 704930 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40116331ns 704938 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40116501ns 704941 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40116785ns 704946 1a110850 fd5ff06f jal x0, -44 +40117069ns 704951 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40117354ns 704956 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40117751ns 704963 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40117922ns 704966 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40118376ns 704974 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40118547ns 704977 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40118831ns 704982 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40119115ns 704987 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40119399ns 704992 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40119854ns 705000 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40120025ns 705003 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40120309ns 705008 1a110850 fd5ff06f jal x0, -44 +40120593ns 705013 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40120877ns 705018 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40121275ns 705025 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40121445ns 705028 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40121900ns 705036 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40122071ns 705039 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40122355ns 705044 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40122639ns 705049 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40122923ns 705054 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40123378ns 705062 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40123548ns 705065 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40123832ns 705070 1a110850 fd5ff06f jal x0, -44 +40124117ns 705075 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40124401ns 705080 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40124799ns 705087 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40124969ns 705090 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40125424ns 705098 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40125594ns 705101 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40125878ns 705106 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40126162ns 705111 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40126447ns 705116 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40126901ns 705124 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40127072ns 705127 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40127356ns 705132 1a110850 fd5ff06f jal x0, -44 +40127640ns 705137 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40127924ns 705142 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40128322ns 705149 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40128493ns 705152 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40128947ns 705160 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40129118ns 705163 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40129402ns 705168 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40129686ns 705173 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40129970ns 705178 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40130425ns 705186 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40130595ns 705189 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40130880ns 705194 1a110850 fd5ff06f jal x0, -44 +40131164ns 705199 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40131448ns 705204 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40131846ns 705211 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40132016ns 705214 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40132471ns 705222 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40132641ns 705225 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40132925ns 705230 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40133210ns 705235 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40133494ns 705240 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40133948ns 705248 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40134119ns 705251 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40134403ns 705256 1a110850 fd5ff06f jal x0, -44 +40134687ns 705261 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40134971ns 705266 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40135369ns 705273 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40135540ns 705276 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40135994ns 705284 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40136165ns 705287 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40136449ns 705292 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40136733ns 705297 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40137017ns 705302 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40137472ns 705310 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40137643ns 705313 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40137927ns 705318 1a110850 fd5ff06f jal x0, -44 +40138211ns 705323 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40138495ns 705328 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40138893ns 705335 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40139063ns 705338 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40139518ns 705346 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40139688ns 705349 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40139973ns 705354 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40140257ns 705359 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40140541ns 705364 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40140996ns 705372 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40141166ns 705375 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40141450ns 705380 1a110850 fd5ff06f jal x0, -44 +40141734ns 705385 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40142019ns 705390 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40142416ns 705397 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40142587ns 705400 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40143042ns 705408 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40143212ns 705411 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40143496ns 705416 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40143780ns 705421 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40144065ns 705426 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40144519ns 705434 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40144690ns 705437 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40144974ns 705442 1a110850 fd5ff06f jal x0, -44 +40145258ns 705447 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40145542ns 705452 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40145940ns 705459 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40146111ns 705462 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40146565ns 705470 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40146736ns 705473 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40147020ns 705478 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40147304ns 705483 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40147588ns 705488 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40148043ns 705496 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40148213ns 705499 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40148497ns 705504 1a110850 fd5ff06f jal x0, -44 +40148782ns 705509 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40149066ns 705514 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40149464ns 705521 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40149634ns 705524 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40150089ns 705532 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40150259ns 705535 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40150543ns 705540 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40150828ns 705545 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40151112ns 705550 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40151566ns 705558 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40151737ns 705561 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40152021ns 705566 1a110850 fd5ff06f jal x0, -44 +40152305ns 705571 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40152589ns 705576 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40152987ns 705583 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40153158ns 705586 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40153612ns 705594 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40153783ns 705597 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40154067ns 705602 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40154351ns 705607 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40154635ns 705612 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40155090ns 705620 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40155260ns 705623 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40155545ns 705628 1a110850 fd5ff06f jal x0, -44 +40155829ns 705633 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40156113ns 705638 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40156511ns 705645 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40156681ns 705648 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40157136ns 705656 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40157306ns 705659 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40157591ns 705664 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40157875ns 705669 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40158159ns 705674 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40158614ns 705682 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40158784ns 705685 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40159068ns 705690 1a110850 fd5ff06f jal x0, -44 +40159352ns 705695 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40159637ns 705700 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40160034ns 705707 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40160205ns 705710 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40160659ns 705718 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40160830ns 705721 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40161114ns 705726 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40161398ns 705731 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40161682ns 705736 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40162137ns 705744 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40162308ns 705747 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40162592ns 705752 1a110850 fd5ff06f jal x0, -44 +40162876ns 705757 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40163160ns 705762 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40163558ns 705769 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40163728ns 705772 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40164183ns 705780 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40164354ns 705783 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40164638ns 705788 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40164922ns 705793 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40165206ns 705798 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40165661ns 705806 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40165831ns 705809 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40166115ns 705814 1a110850 fd5ff06f jal x0, -44 +40166400ns 705819 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40166684ns 705824 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40167082ns 705831 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40167252ns 705834 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40167707ns 705842 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40167877ns 705845 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40168161ns 705850 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40168445ns 705855 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40168730ns 705860 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40169184ns 705868 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40169355ns 705871 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40169639ns 705876 1a110850 fd5ff06f jal x0, -44 +40169923ns 705881 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40170207ns 705886 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40170605ns 705893 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40170776ns 705896 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40171230ns 705904 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40171401ns 705907 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40171685ns 705912 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40171969ns 705917 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40172253ns 705922 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40172708ns 705930 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40172878ns 705933 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40173163ns 705938 1a110850 fd5ff06f jal x0, -44 +40173447ns 705943 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40173731ns 705948 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40174129ns 705955 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40174299ns 705958 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40174754ns 705966 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40174924ns 705969 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40175208ns 705974 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40175493ns 705979 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40175777ns 705984 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40176231ns 705992 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40176402ns 705995 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40176686ns 706000 1a110850 fd5ff06f jal x0, -44 +40176970ns 706005 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40177254ns 706010 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40177652ns 706017 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40177823ns 706020 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40178277ns 706028 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40178448ns 706031 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40178732ns 706036 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40179016ns 706041 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40179300ns 706046 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40179755ns 706054 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40179926ns 706057 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40180210ns 706062 1a110850 fd5ff06f jal x0, -44 +40180494ns 706067 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40180778ns 706072 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40181176ns 706079 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40181346ns 706082 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40181801ns 706090 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40181971ns 706093 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40182256ns 706098 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40182540ns 706103 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40182824ns 706108 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40183279ns 706116 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40183449ns 706119 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40183733ns 706124 1a110850 fd5ff06f jal x0, -44 +40184017ns 706129 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40184302ns 706134 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40184699ns 706141 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40184870ns 706144 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40185325ns 706152 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40185495ns 706155 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40185779ns 706160 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40186063ns 706165 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40186348ns 706170 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40186802ns 706178 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40186973ns 706181 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40187257ns 706186 1a110850 fd5ff06f jal x0, -44 +40187541ns 706191 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40187825ns 706196 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40188223ns 706203 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40188394ns 706206 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40188848ns 706214 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40189019ns 706217 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40189303ns 706222 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40189587ns 706227 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40189871ns 706232 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40190326ns 706240 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40190496ns 706243 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40190780ns 706248 1a110850 fd5ff06f jal x0, -44 +40191065ns 706253 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40191349ns 706258 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40191747ns 706265 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40191917ns 706268 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40192372ns 706276 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40192542ns 706279 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40192826ns 706284 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40193111ns 706289 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40193395ns 706294 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40193849ns 706302 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40194020ns 706305 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40194304ns 706310 1a110850 fd5ff06f jal x0, -44 +40194588ns 706315 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40194872ns 706320 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40195270ns 706327 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40195441ns 706330 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40195895ns 706338 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40196066ns 706341 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40196350ns 706346 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40196634ns 706351 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40196918ns 706356 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40197373ns 706364 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40197543ns 706367 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40197828ns 706372 1a110850 fd5ff06f jal x0, -44 +40198112ns 706377 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40198396ns 706382 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40198794ns 706389 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40198964ns 706392 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40199419ns 706400 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40199589ns 706403 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40199874ns 706408 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40200158ns 706413 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40200442ns 706418 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40200897ns 706426 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40201067ns 706429 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40201351ns 706434 1a110850 fd5ff06f jal x0, -44 +40201635ns 706439 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40201920ns 706444 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40202317ns 706451 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40202488ns 706454 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40202943ns 706462 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40203113ns 706465 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40203397ns 706470 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40203681ns 706475 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40203965ns 706480 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40204420ns 706488 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40204591ns 706491 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40204875ns 706496 1a110850 fd5ff06f jal x0, -44 +40205159ns 706501 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40205443ns 706506 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40205841ns 706513 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40206011ns 706516 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40206466ns 706524 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40206637ns 706527 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40206921ns 706532 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40207205ns 706537 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40207489ns 706542 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40207944ns 706550 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40208114ns 706553 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40208398ns 706558 1a110850 fd5ff06f jal x0, -44 +40208683ns 706563 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40208967ns 706568 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40209365ns 706575 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40209535ns 706578 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40209990ns 706586 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40210160ns 706589 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40210444ns 706594 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40210728ns 706599 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40211013ns 706604 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40211467ns 706612 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40211638ns 706615 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40211922ns 706620 1a110850 fd5ff06f jal x0, -44 +40212206ns 706625 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40212490ns 706630 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40212888ns 706637 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40213059ns 706640 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40213513ns 706648 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40213684ns 706651 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40213968ns 706656 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40214252ns 706661 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40214536ns 706666 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40214991ns 706674 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40215161ns 706677 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40215446ns 706682 1a110850 fd5ff06f jal x0, -44 +40215730ns 706687 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40216014ns 706692 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40216412ns 706699 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40216582ns 706702 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40217037ns 706710 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40217207ns 706713 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40217491ns 706718 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40217776ns 706723 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40218060ns 706728 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40218514ns 706736 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40218685ns 706739 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40218969ns 706744 1a110850 fd5ff06f jal x0, -44 +40219253ns 706749 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40219537ns 706754 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40219935ns 706761 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40220106ns 706764 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40220560ns 706772 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40220731ns 706775 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40221015ns 706780 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40221299ns 706785 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40221583ns 706790 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40222038ns 706798 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40222209ns 706801 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40222493ns 706806 1a110850 fd5ff06f jal x0, -44 +40222777ns 706811 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40223061ns 706816 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40223459ns 706823 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40223629ns 706826 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40224084ns 706834 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40224255ns 706837 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40224539ns 706842 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40224823ns 706847 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40225107ns 706852 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40225562ns 706860 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40225732ns 706863 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40226016ns 706868 1a110850 fd5ff06f jal x0, -44 +40226300ns 706873 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40226585ns 706878 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40226982ns 706885 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40227153ns 706888 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40227608ns 706896 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40227778ns 706899 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40228062ns 706904 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40228346ns 706909 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40228631ns 706914 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40229085ns 706922 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40229256ns 706925 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40229540ns 706930 1a110850 fd5ff06f jal x0, -44 +40229824ns 706935 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40230108ns 706940 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40230506ns 706947 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40230677ns 706950 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40231131ns 706958 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40231302ns 706961 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40231586ns 706966 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40231870ns 706971 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40232154ns 706976 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40232609ns 706984 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40232779ns 706987 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40233063ns 706992 1a110850 fd5ff06f jal x0, -44 +40233348ns 706997 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40233632ns 707002 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40234030ns 707009 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40234200ns 707012 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40234655ns 707020 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40234825ns 707023 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40235109ns 707028 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40235394ns 707033 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40235678ns 707038 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40236132ns 707046 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40236303ns 707049 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40236587ns 707054 1a110850 fd5ff06f jal x0, -44 +40236871ns 707059 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40237155ns 707064 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40237553ns 707071 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40237724ns 707074 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40238178ns 707082 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40238349ns 707085 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40238633ns 707090 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40238917ns 707095 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40239201ns 707100 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40239656ns 707108 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40239826ns 707111 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40240111ns 707116 1a110850 fd5ff06f jal x0, -44 +40240395ns 707121 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40240679ns 707126 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40241077ns 707133 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40241247ns 707136 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40241702ns 707144 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40241872ns 707147 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40242157ns 707152 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40242441ns 707157 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40242725ns 707162 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40243180ns 707170 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40243350ns 707173 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40243634ns 707178 1a110850 fd5ff06f jal x0, -44 +40243918ns 707183 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40244203ns 707188 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40244600ns 707195 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40244771ns 707198 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40245226ns 707206 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40245396ns 707209 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40245680ns 707214 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40245964ns 707219 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40246248ns 707224 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40246703ns 707232 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40246874ns 707235 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40247158ns 707240 1a110850 fd5ff06f jal x0, -44 +40247442ns 707245 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40247726ns 707250 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40248124ns 707257 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40248294ns 707260 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40248749ns 707268 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40248920ns 707271 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40249204ns 707276 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40249488ns 707281 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40249772ns 707286 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40250227ns 707294 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40250397ns 707297 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40250681ns 707302 1a110850 fd5ff06f jal x0, -44 +40250966ns 707307 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40251250ns 707312 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40251648ns 707319 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40251818ns 707322 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40252273ns 707330 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40252443ns 707333 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40252727ns 707338 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40253011ns 707343 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40253296ns 707348 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40253750ns 707356 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40253921ns 707359 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40254205ns 707364 1a110850 fd5ff06f jal x0, -44 +40254489ns 707369 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40254773ns 707374 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40255171ns 707381 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40255342ns 707384 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40255796ns 707392 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40255967ns 707395 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40256251ns 707400 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40256535ns 707405 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40256819ns 707410 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40257274ns 707418 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40257444ns 707421 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40257729ns 707426 1a110850 fd5ff06f jal x0, -44 +40258013ns 707431 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40258297ns 707436 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40258695ns 707443 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40258865ns 707446 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40259320ns 707454 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40259490ns 707457 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40259775ns 707462 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40260059ns 707467 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40260343ns 707472 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40260797ns 707480 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40260968ns 707483 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40261252ns 707488 1a110850 fd5ff06f jal x0, -44 +40261536ns 707493 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40261820ns 707498 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40262218ns 707505 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40262389ns 707508 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40262843ns 707516 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40263014ns 707519 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40263298ns 707524 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40263582ns 707529 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40263866ns 707534 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40264321ns 707542 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40264492ns 707545 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40264776ns 707550 1a110850 fd5ff06f jal x0, -44 +40265060ns 707555 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40265344ns 707560 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40265742ns 707567 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40265912ns 707570 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40266367ns 707578 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40266538ns 707581 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40266822ns 707586 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40267106ns 707591 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40267390ns 707596 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40267845ns 707604 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40268015ns 707607 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40268299ns 707612 1a110850 fd5ff06f jal x0, -44 +40268583ns 707617 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40268868ns 707622 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40269265ns 707629 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40269436ns 707632 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40269891ns 707640 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40270061ns 707643 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40270345ns 707648 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40270629ns 707653 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40270914ns 707658 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40271368ns 707666 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40271539ns 707669 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40271823ns 707674 1a110850 fd5ff06f jal x0, -44 +40272107ns 707679 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40272391ns 707684 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40272789ns 707691 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40272960ns 707694 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40273414ns 707702 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40273585ns 707705 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40273869ns 707710 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40274153ns 707715 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40274437ns 707720 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40274892ns 707728 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40275062ns 707731 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40275346ns 707736 1a110850 fd5ff06f jal x0, -44 +40275631ns 707741 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40275915ns 707746 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40276313ns 707753 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40276483ns 707756 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40276938ns 707764 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40277108ns 707767 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40277392ns 707772 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40277677ns 707777 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40277961ns 707782 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40278415ns 707790 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40278586ns 707793 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40278870ns 707798 1a110850 fd5ff06f jal x0, -44 +40279154ns 707803 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40279438ns 707808 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40279836ns 707815 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40280007ns 707818 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40280461ns 707826 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40280632ns 707829 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40280916ns 707834 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40281200ns 707839 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40281484ns 707844 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40281939ns 707852 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40282109ns 707855 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40282394ns 707860 1a110850 fd5ff06f jal x0, -44 +40282678ns 707865 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40282962ns 707870 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40283360ns 707877 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40283530ns 707880 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40283985ns 707888 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40284155ns 707891 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40284440ns 707896 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40284724ns 707901 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40285008ns 707906 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40285463ns 707914 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40285633ns 707917 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40285917ns 707922 1a110850 fd5ff06f jal x0, -44 +40286201ns 707927 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40286486ns 707932 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40286883ns 707939 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40287054ns 707942 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40287509ns 707950 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40287679ns 707953 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40287963ns 707958 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40288247ns 707963 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40288531ns 707968 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40288986ns 707976 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40289157ns 707979 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40289441ns 707984 1a110850 fd5ff06f jal x0, -44 +40289725ns 707989 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40290009ns 707994 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40290407ns 708001 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40290577ns 708004 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40291032ns 708012 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40291203ns 708015 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40291487ns 708020 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40291771ns 708025 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40292055ns 708030 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40292510ns 708038 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40292680ns 708041 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40292964ns 708046 1a110850 fd5ff06f jal x0, -44 +40293249ns 708051 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40293533ns 708056 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40293931ns 708063 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40294101ns 708066 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40294556ns 708074 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40294726ns 708077 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40295010ns 708082 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40295295ns 708087 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40295579ns 708092 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40296033ns 708100 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40296204ns 708103 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40296488ns 708108 1a110850 fd5ff06f jal x0, -44 +40296772ns 708113 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40297056ns 708118 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40297454ns 708125 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40297625ns 708128 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40298079ns 708136 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40298250ns 708139 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40298534ns 708144 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40298818ns 708149 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40299102ns 708154 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40299557ns 708162 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40299727ns 708165 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40300012ns 708170 1a110850 fd5ff06f jal x0, -44 +40300296ns 708175 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40300580ns 708180 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40300978ns 708187 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40301148ns 708190 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40301603ns 708198 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40301773ns 708201 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40302058ns 708206 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40302342ns 708211 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40302626ns 708216 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40303080ns 708224 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40303251ns 708227 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40303535ns 708232 1a110850 fd5ff06f jal x0, -44 +40303819ns 708237 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40304103ns 708242 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40304501ns 708249 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40304672ns 708252 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40305126ns 708260 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40305297ns 708263 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40305581ns 708268 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40305865ns 708273 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40306149ns 708278 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40306604ns 708286 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40306775ns 708289 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40307059ns 708294 1a110850 fd5ff06f jal x0, -44 +40307343ns 708299 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40307627ns 708304 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40308025ns 708311 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40308195ns 708314 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40308650ns 708322 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40308821ns 708325 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40309105ns 708330 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40309389ns 708335 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40309673ns 708340 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40310128ns 708348 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40310298ns 708351 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40310582ns 708356 1a110850 fd5ff06f jal x0, -44 +40310866ns 708361 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40311151ns 708366 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40311548ns 708373 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40311719ns 708376 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40312174ns 708384 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40312344ns 708387 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40312628ns 708392 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40312912ns 708397 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40313197ns 708402 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40313651ns 708410 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40313822ns 708413 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40314106ns 708418 1a110850 fd5ff06f jal x0, -44 +40314390ns 708423 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40314674ns 708428 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40315072ns 708435 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40315243ns 708438 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40315697ns 708446 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40315868ns 708449 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40316152ns 708454 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40316436ns 708459 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40316720ns 708464 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40317175ns 708472 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40317345ns 708475 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40317629ns 708480 1a110850 fd5ff06f jal x0, -44 +40317914ns 708485 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40318198ns 708490 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40318596ns 708497 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40318766ns 708500 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40319221ns 708508 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40319391ns 708511 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40319675ns 708516 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40319960ns 708521 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40320244ns 708526 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40320698ns 708534 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40320869ns 708537 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40321153ns 708542 1a110850 fd5ff06f jal x0, -44 +40321437ns 708547 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40321721ns 708552 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40322119ns 708559 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40322290ns 708562 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40322744ns 708570 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40322915ns 708573 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40323199ns 708578 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40323483ns 708583 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40323767ns 708588 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40324222ns 708596 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40324392ns 708599 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40324677ns 708604 1a110850 fd5ff06f jal x0, -44 +40324961ns 708609 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40325245ns 708614 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40325643ns 708621 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40325813ns 708624 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40326268ns 708632 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40326438ns 708635 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40326723ns 708640 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40327007ns 708645 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40327291ns 708650 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40327746ns 708658 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40327916ns 708661 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40328200ns 708666 1a110850 fd5ff06f jal x0, -44 +40328484ns 708671 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40328769ns 708676 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40329166ns 708683 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40329337ns 708686 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40329792ns 708694 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40329962ns 708697 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40330246ns 708702 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40330530ns 708707 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40330815ns 708712 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40331269ns 708720 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40331440ns 708723 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40331724ns 708728 1a110850 fd5ff06f jal x0, -44 +40332008ns 708733 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40332292ns 708738 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40332690ns 708745 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40332860ns 708748 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40333315ns 708756 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40333486ns 708759 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40333770ns 708764 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40334054ns 708769 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40334338ns 708774 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40334793ns 708782 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40334963ns 708785 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40335247ns 708790 1a110850 fd5ff06f jal x0, -44 +40335532ns 708795 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40335816ns 708800 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40336214ns 708807 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40336384ns 708810 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40336839ns 708818 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40337009ns 708821 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40337293ns 708826 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40337578ns 708831 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40337862ns 708836 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40338316ns 708844 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40338487ns 708847 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40338771ns 708852 1a110850 fd5ff06f jal x0, -44 +40339055ns 708857 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40339339ns 708862 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40339737ns 708869 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40339908ns 708872 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40340362ns 708880 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40340533ns 708883 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40340817ns 708888 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40341101ns 708893 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40341385ns 708898 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40341840ns 708906 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40342010ns 708909 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40342295ns 708914 1a110850 fd5ff06f jal x0, -44 +40342579ns 708919 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40342863ns 708924 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40343261ns 708931 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40343431ns 708934 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40343886ns 708942 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40344056ns 708945 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40344341ns 708950 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40344625ns 708955 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40344909ns 708960 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40345363ns 708968 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40345534ns 708971 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40345818ns 708976 1a110850 fd5ff06f jal x0, -44 +40346102ns 708981 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40346386ns 708986 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40346784ns 708993 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40346955ns 708996 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40347409ns 709004 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40347580ns 709007 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40347864ns 709012 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40348148ns 709017 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40348432ns 709022 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40348887ns 709030 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40349058ns 709033 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40349342ns 709038 1a110850 fd5ff06f jal x0, -44 +40349626ns 709043 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40349910ns 709048 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40350308ns 709055 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40350478ns 709058 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40350933ns 709066 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40351104ns 709069 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40351388ns 709074 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40351672ns 709079 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40351956ns 709084 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40352411ns 709092 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40352581ns 709095 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40352865ns 709100 1a110850 fd5ff06f jal x0, -44 +40353149ns 709105 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40353434ns 709110 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40353831ns 709117 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40354002ns 709120 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40354457ns 709128 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40354627ns 709131 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40354911ns 709136 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40355195ns 709141 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40355480ns 709146 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40355934ns 709154 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40356105ns 709157 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40356389ns 709162 1a110850 fd5ff06f jal x0, -44 +40356673ns 709167 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40356957ns 709172 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40357355ns 709179 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40357526ns 709182 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40357980ns 709190 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40358151ns 709193 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40358435ns 709198 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40358719ns 709203 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40359003ns 709208 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40359458ns 709216 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40359628ns 709219 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40359912ns 709224 1a110850 fd5ff06f jal x0, -44 +40360197ns 709229 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40360481ns 709234 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40360879ns 709241 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40361049ns 709244 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40361504ns 709252 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40361674ns 709255 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40361958ns 709260 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40362243ns 709265 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40362527ns 709270 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40362981ns 709278 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40363152ns 709281 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40363436ns 709286 1a110850 fd5ff06f jal x0, -44 +40363720ns 709291 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40364004ns 709296 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40364402ns 709303 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40364573ns 709306 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40365027ns 709314 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40365198ns 709317 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40365482ns 709322 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40365766ns 709327 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40366050ns 709332 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40366505ns 709340 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40366675ns 709343 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40366960ns 709348 1a110850 fd5ff06f jal x0, -44 +40367244ns 709353 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40367528ns 709358 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40367926ns 709365 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40368096ns 709368 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40368551ns 709376 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40368721ns 709379 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40369006ns 709384 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40369290ns 709389 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40369574ns 709394 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40370029ns 709402 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40370199ns 709405 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40370483ns 709410 1a110850 fd5ff06f jal x0, -44 +40370767ns 709415 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40371052ns 709420 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40371449ns 709427 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40371620ns 709430 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40372075ns 709438 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40372245ns 709441 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40372529ns 709446 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40372813ns 709451 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40373098ns 709456 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40373552ns 709464 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40373723ns 709467 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40374007ns 709472 1a110850 fd5ff06f jal x0, -44 +40374291ns 709477 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40374575ns 709482 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40374973ns 709489 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40375143ns 709492 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40375598ns 709500 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40375769ns 709503 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40376053ns 709508 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40376337ns 709513 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40376621ns 709518 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40377076ns 709526 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40377246ns 709529 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40377530ns 709534 1a110850 fd5ff06f jal x0, -44 +40377815ns 709539 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40378099ns 709544 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40378497ns 709551 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40378667ns 709554 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40379122ns 709562 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40379292ns 709565 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40379576ns 709570 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40379861ns 709575 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40380145ns 709580 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40380599ns 709588 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40380770ns 709591 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40381054ns 709596 1a110850 fd5ff06f jal x0, -44 +40381338ns 709601 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40381622ns 709606 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40382020ns 709613 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40382191ns 709616 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40382645ns 709624 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40382816ns 709627 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40383100ns 709632 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40383384ns 709637 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40383668ns 709642 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40384123ns 709650 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40384293ns 709653 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40384578ns 709658 1a110850 fd5ff06f jal x0, -44 +40384862ns 709663 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40385146ns 709668 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40385544ns 709675 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40385714ns 709678 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40386169ns 709686 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40386339ns 709689 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40386624ns 709694 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40386908ns 709699 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40387192ns 709704 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40387647ns 709712 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40387817ns 709715 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40388101ns 709720 1a110850 fd5ff06f jal x0, -44 +40388385ns 709725 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40388669ns 709730 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40389067ns 709737 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40389238ns 709740 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40389692ns 709748 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40389863ns 709751 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40390147ns 709756 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40390431ns 709761 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40390715ns 709766 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40391170ns 709774 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40391341ns 709777 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40391625ns 709782 1a110850 fd5ff06f jal x0, -44 +40391909ns 709787 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40392193ns 709792 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40392591ns 709799 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40392761ns 709802 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40393216ns 709810 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40393387ns 709813 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40393671ns 709818 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40393955ns 709823 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40394239ns 709828 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40394694ns 709836 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40394864ns 709839 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40395148ns 709844 1a110850 fd5ff06f jal x0, -44 +40395432ns 709849 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40395717ns 709854 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40396114ns 709861 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40396285ns 709864 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40396740ns 709872 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40396910ns 709875 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40397194ns 709880 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40397478ns 709885 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40397763ns 709890 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40398217ns 709898 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40398388ns 709901 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40398672ns 709906 1a110850 fd5ff06f jal x0, -44 +40398956ns 709911 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40399240ns 709916 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40399638ns 709923 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40399809ns 709926 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40400263ns 709934 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40400434ns 709937 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40400718ns 709942 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40401002ns 709947 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40401286ns 709952 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40401741ns 709960 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40401911ns 709963 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40402195ns 709968 1a110850 fd5ff06f jal x0, -44 +40402480ns 709973 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40402764ns 709978 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40403162ns 709985 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40403332ns 709988 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40403787ns 709996 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40403957ns 709999 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40404241ns 710004 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40404526ns 710009 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40404810ns 710014 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40405264ns 710022 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40405435ns 710025 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40405719ns 710030 1a110850 fd5ff06f jal x0, -44 +40406003ns 710035 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40406287ns 710040 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40406685ns 710047 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40406856ns 710050 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40407310ns 710058 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40407481ns 710061 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40407765ns 710066 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40408049ns 710071 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40408333ns 710076 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40408788ns 710084 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40408959ns 710087 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40409243ns 710092 1a110850 fd5ff06f jal x0, -44 +40409527ns 710097 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40409811ns 710102 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40410209ns 710109 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40410379ns 710112 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40410834ns 710120 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40411004ns 710123 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40411289ns 710128 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40411573ns 710133 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40411857ns 710138 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40412312ns 710146 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40412482ns 710149 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40412766ns 710154 1a110850 fd5ff06f jal x0, -44 +40413050ns 710159 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40413335ns 710164 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40413732ns 710171 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40413903ns 710174 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40414358ns 710182 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40414528ns 710185 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40414812ns 710190 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40415096ns 710195 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40415381ns 710200 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40415835ns 710208 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40416006ns 710211 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40416290ns 710216 1a110850 fd5ff06f jal x0, -44 +40416574ns 710221 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40416858ns 710226 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40417256ns 710233 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40417426ns 710236 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40417881ns 710244 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40418052ns 710247 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40418336ns 710252 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40418620ns 710257 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40418904ns 710262 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40419359ns 710270 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40419529ns 710273 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40419813ns 710278 1a110850 fd5ff06f jal x0, -44 +40420098ns 710283 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40420382ns 710288 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40420780ns 710295 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40420950ns 710298 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40421405ns 710306 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40421575ns 710309 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40421859ns 710314 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40422144ns 710319 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40422428ns 710324 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40422882ns 710332 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40423053ns 710335 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40423337ns 710340 1a110850 fd5ff06f jal x0, -44 +40423621ns 710345 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40423905ns 710350 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40424303ns 710357 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40424474ns 710360 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40424928ns 710368 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40425099ns 710371 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40425383ns 710376 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40425667ns 710381 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40425951ns 710386 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40426406ns 710394 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40426576ns 710397 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40426861ns 710402 1a110850 fd5ff06f jal x0, -44 +40427145ns 710407 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40427429ns 710412 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40427827ns 710419 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40427997ns 710422 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40428452ns 710430 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40428622ns 710433 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40428907ns 710438 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40429191ns 710443 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40429475ns 710448 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40429930ns 710456 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40430100ns 710459 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40430384ns 710464 1a110850 fd5ff06f jal x0, -44 +40430668ns 710469 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40430952ns 710474 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40431350ns 710481 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40431521ns 710484 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40431975ns 710492 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40432146ns 710495 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40432430ns 710500 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40432714ns 710505 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40432998ns 710510 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40433453ns 710518 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40433624ns 710521 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40433908ns 710526 1a110850 fd5ff06f jal x0, -44 +40434192ns 710531 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40434476ns 710536 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40434874ns 710543 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40435044ns 710546 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40435499ns 710554 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40435670ns 710557 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40435954ns 710562 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40436238ns 710567 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40436522ns 710572 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40436977ns 710580 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40437147ns 710583 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40437431ns 710588 1a110850 fd5ff06f jal x0, -44 +40437715ns 710593 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40438000ns 710598 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40438397ns 710605 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40438568ns 710608 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40439023ns 710616 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40439193ns 710619 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40439477ns 710624 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40439761ns 710629 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40440046ns 710634 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40440500ns 710642 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40440671ns 710645 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40440955ns 710650 1a110850 fd5ff06f jal x0, -44 +40441239ns 710655 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40441523ns 710660 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40441921ns 710667 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40442092ns 710670 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40442546ns 710678 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40442717ns 710681 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40443001ns 710686 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40443285ns 710691 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40443569ns 710696 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40444024ns 710704 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40444194ns 710707 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40444479ns 710712 1a110850 fd5ff06f jal x0, -44 +40444763ns 710717 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40445047ns 710722 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40445445ns 710729 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40445615ns 710732 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40446070ns 710740 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40446240ns 710743 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40446524ns 710748 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40446809ns 710753 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40447093ns 710758 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40447547ns 710766 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40447718ns 710769 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40448002ns 710774 1a110850 fd5ff06f jal x0, -44 +40448286ns 710779 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40448570ns 710784 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40448968ns 710791 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40449139ns 710794 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40449593ns 710802 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40449764ns 710805 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40450048ns 710810 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40450332ns 710815 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40450616ns 710820 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40451071ns 710828 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40451242ns 710831 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40451526ns 710836 1a110850 fd5ff06f jal x0, -44 +40451810ns 710841 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40452094ns 710846 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40452492ns 710853 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40452662ns 710856 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40453117ns 710864 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40453287ns 710867 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40453572ns 710872 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40453856ns 710877 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40454140ns 710882 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40454595ns 710890 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40454765ns 710893 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40455049ns 710898 1a110850 fd5ff06f jal x0, -44 +40455333ns 710903 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40455618ns 710908 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40456015ns 710915 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40456186ns 710918 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40456641ns 710926 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40456811ns 710929 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40457095ns 710934 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40457379ns 710939 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40457664ns 710944 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40458118ns 710952 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40458289ns 710955 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40458573ns 710960 1a110850 fd5ff06f jal x0, -44 +40458857ns 710965 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40459141ns 710970 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40459539ns 710977 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40459709ns 710980 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40460164ns 710988 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40460335ns 710991 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40460619ns 710996 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40460903ns 711001 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40461187ns 711006 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40461642ns 711014 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40461812ns 711017 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40462096ns 711022 1a110850 fd5ff06f jal x0, -44 +40462381ns 711027 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40462665ns 711032 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40463063ns 711039 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40463233ns 711042 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40463688ns 711050 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40463858ns 711053 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40464142ns 711058 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40464427ns 711063 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40464711ns 711068 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40465165ns 711076 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40465336ns 711079 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40465620ns 711084 1a110850 fd5ff06f jal x0, -44 +40465904ns 711089 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40466188ns 711094 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40466586ns 711101 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40466757ns 711104 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40467211ns 711112 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40467382ns 711115 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40467666ns 711120 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40467950ns 711125 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40468234ns 711130 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40468689ns 711138 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40468859ns 711141 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40469144ns 711146 1a110850 fd5ff06f jal x0, -44 +40469428ns 711151 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40469712ns 711156 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40470110ns 711163 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40470280ns 711166 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40470735ns 711174 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40470905ns 711177 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40471190ns 711182 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40471474ns 711187 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40471758ns 711192 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40472213ns 711200 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40472383ns 711203 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40472667ns 711208 1a110850 fd5ff06f jal x0, -44 +40472951ns 711213 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40473235ns 711218 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40473633ns 711225 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40473804ns 711228 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40474258ns 711236 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40474429ns 711239 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40474713ns 711244 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40474997ns 711249 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40475281ns 711254 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40475736ns 711262 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40475907ns 711265 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40476191ns 711270 1a110850 fd5ff06f jal x0, -44 +40476475ns 711275 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40476759ns 711280 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40477157ns 711287 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40477327ns 711290 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40477782ns 711298 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40477953ns 711301 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40478237ns 711306 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40478521ns 711311 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40478805ns 711316 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40479260ns 711324 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40479430ns 711327 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40479714ns 711332 1a110850 fd5ff06f jal x0, -44 +40479999ns 711337 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40480283ns 711342 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40480680ns 711349 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40480851ns 711352 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40481306ns 711360 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40481476ns 711363 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40481760ns 711368 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40482044ns 711373 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40482329ns 711378 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40482783ns 711386 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40482954ns 711389 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40483238ns 711394 1a110850 fd5ff06f jal x0, -44 +40483522ns 711399 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40483806ns 711404 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40484204ns 711411 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40484375ns 711414 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40484829ns 711422 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40485000ns 711425 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40485284ns 711430 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40485568ns 711435 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40485852ns 711440 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40486307ns 711448 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40486477ns 711451 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40486762ns 711456 1a110850 fd5ff06f jal x0, -44 +40487046ns 711461 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40487330ns 711466 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40487728ns 711473 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40487898ns 711476 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40488353ns 711484 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40488523ns 711487 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40488807ns 711492 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40489092ns 711497 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40489376ns 711502 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40489830ns 711510 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40490001ns 711513 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40490285ns 711518 1a110850 fd5ff06f jal x0, -44 +40490569ns 711523 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40490853ns 711528 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40491251ns 711535 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40491422ns 711538 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40491876ns 711546 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40492047ns 711549 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40492331ns 711554 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40492615ns 711559 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40492899ns 711564 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40493354ns 711572 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40493525ns 711575 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40493809ns 711580 1a110850 fd5ff06f jal x0, -44 +40494093ns 711585 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40494377ns 711590 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40494775ns 711597 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40494945ns 711600 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40495400ns 711608 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40495570ns 711611 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40495855ns 711616 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40496139ns 711621 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40496423ns 711626 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40496878ns 711634 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40497048ns 711637 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40497332ns 711642 1a110850 fd5ff06f jal x0, -44 +40497616ns 711647 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40497901ns 711652 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40498298ns 711659 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40498469ns 711662 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40498924ns 711670 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40499094ns 711673 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40499378ns 711678 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40499662ns 711683 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40499947ns 711688 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40500401ns 711696 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40500572ns 711699 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40500856ns 711704 1a110850 fd5ff06f jal x0, -44 +40501140ns 711709 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40501424ns 711714 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40501822ns 711721 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40501992ns 711724 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40502447ns 711732 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40502618ns 711735 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40502902ns 711740 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40503186ns 711745 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40503470ns 711750 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40503925ns 711758 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40504095ns 711761 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40504379ns 711766 1a110850 fd5ff06f jal x0, -44 +40504664ns 711771 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40504948ns 711776 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40505346ns 711783 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40505516ns 711786 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40505971ns 711794 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40506141ns 711797 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40506425ns 711802 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40506710ns 711807 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40506994ns 711812 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40507448ns 711820 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40507619ns 711823 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40507903ns 711828 1a110850 fd5ff06f jal x0, -44 +40508187ns 711833 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40508471ns 711838 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40508869ns 711845 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40509040ns 711848 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40509494ns 711856 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40509665ns 711859 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40509949ns 711864 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40510233ns 711869 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40510517ns 711874 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40510972ns 711882 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40511142ns 711885 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40511427ns 711890 1a110850 fd5ff06f jal x0, -44 +40511711ns 711895 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40511995ns 711900 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40512393ns 711907 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40512563ns 711910 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40513018ns 711918 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40513188ns 711921 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40513473ns 711926 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40513757ns 711931 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40514041ns 711936 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40514496ns 711944 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40514666ns 711947 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40514950ns 711952 1a110850 fd5ff06f jal x0, -44 +40515234ns 711957 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40515519ns 711962 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40515916ns 711969 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40516087ns 711972 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40516541ns 711980 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40516712ns 711983 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40516996ns 711988 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40517280ns 711993 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40517564ns 711998 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40518019ns 712006 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40518190ns 712009 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40518474ns 712014 1a110850 fd5ff06f jal x0, -44 +40518758ns 712019 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40519042ns 712024 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40519440ns 712031 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40519610ns 712034 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40520065ns 712042 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40520236ns 712045 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40520520ns 712050 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40520804ns 712055 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40521088ns 712060 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40521543ns 712068 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40521713ns 712071 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40521997ns 712076 1a110850 fd5ff06f jal x0, -44 +40522282ns 712081 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40522566ns 712086 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40522963ns 712093 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40523134ns 712096 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40523589ns 712104 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40523759ns 712107 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40524043ns 712112 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40524327ns 712117 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40524612ns 712122 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40525066ns 712130 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40525237ns 712133 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40525521ns 712138 1a110850 fd5ff06f jal x0, -44 +40525805ns 712143 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40526089ns 712148 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40526487ns 712155 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40526658ns 712158 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40527112ns 712166 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40527283ns 712169 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40527567ns 712174 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40527851ns 712179 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40528135ns 712184 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40528590ns 712192 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40528760ns 712195 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40529045ns 712200 1a110850 fd5ff06f jal x0, -44 +40529329ns 712205 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40529613ns 712210 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40530011ns 712217 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40530181ns 712220 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40530636ns 712228 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40530806ns 712231 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40531090ns 712236 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40531375ns 712241 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40531659ns 712246 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40532113ns 712254 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40532284ns 712257 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40532568ns 712262 1a110850 fd5ff06f jal x0, -44 +40532852ns 712267 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40533136ns 712272 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40533534ns 712279 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40533705ns 712282 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40534159ns 712290 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40534330ns 712293 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40534614ns 712298 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40534898ns 712303 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40535182ns 712308 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40535637ns 712316 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40535808ns 712319 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40536092ns 712324 1a110850 fd5ff06f jal x0, -44 +40536376ns 712329 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40536660ns 712334 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40537058ns 712341 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40537228ns 712344 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40537683ns 712352 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40537853ns 712355 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40538138ns 712360 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40538422ns 712365 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40538706ns 712370 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40539161ns 712378 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40539331ns 712381 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40539615ns 712386 1a110850 fd5ff06f jal x0, -44 +40539899ns 712391 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40540184ns 712396 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40540581ns 712403 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40540752ns 712406 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40541207ns 712414 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40541377ns 712417 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40541661ns 712422 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40541945ns 712427 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40542230ns 712432 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40542684ns 712440 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40542855ns 712443 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40543139ns 712448 1a110850 fd5ff06f jal x0, -44 +40543423ns 712453 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40543707ns 712458 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40544105ns 712465 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40544275ns 712468 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40544730ns 712476 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40544901ns 712479 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40545185ns 712484 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40545469ns 712489 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40545753ns 712494 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40546208ns 712502 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40546378ns 712505 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40546662ns 712510 1a110850 fd5ff06f jal x0, -44 +40546947ns 712515 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40547231ns 712520 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40547629ns 712527 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40547799ns 712530 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40548254ns 712538 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40548424ns 712541 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40548708ns 712546 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40548993ns 712551 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40549277ns 712556 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40549731ns 712564 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40549902ns 712567 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40550186ns 712572 1a110850 fd5ff06f jal x0, -44 +40550470ns 712577 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40550754ns 712582 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40551152ns 712589 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40551323ns 712592 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40551777ns 712600 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40551948ns 712603 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40552232ns 712608 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40552516ns 712613 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40552800ns 712618 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40553255ns 712626 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40553425ns 712629 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40553710ns 712634 1a110850 fd5ff06f jal x0, -44 +40553994ns 712639 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40554278ns 712644 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40554676ns 712651 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40554846ns 712654 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40555301ns 712662 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40555471ns 712665 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40555756ns 712670 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40556040ns 712675 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40556324ns 712680 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40556779ns 712688 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40556949ns 712691 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40557233ns 712696 1a110850 fd5ff06f jal x0, -44 +40557517ns 712701 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40557802ns 712706 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40558199ns 712713 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40558370ns 712716 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40558824ns 712724 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40558995ns 712727 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40559279ns 712732 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40559563ns 712737 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40559847ns 712742 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40560302ns 712750 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40560473ns 712753 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40560757ns 712758 1a110850 fd5ff06f jal x0, -44 +40561041ns 712763 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40561325ns 712768 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40561723ns 712775 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40561893ns 712778 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40562348ns 712786 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40562519ns 712789 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40562803ns 712794 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40563087ns 712799 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40563371ns 712804 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40563826ns 712812 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40563996ns 712815 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40564280ns 712820 1a110850 fd5ff06f jal x0, -44 +40564565ns 712825 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40564849ns 712830 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40565247ns 712837 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40565417ns 712840 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40565872ns 712848 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40566042ns 712851 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40566326ns 712856 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40566610ns 712861 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40566895ns 712866 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40567349ns 712874 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40567520ns 712877 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40567804ns 712882 1a110850 fd5ff06f jal x0, -44 +40568088ns 712887 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40568372ns 712892 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40568770ns 712899 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40568941ns 712902 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40569395ns 712910 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40569566ns 712913 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40569850ns 712918 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40570134ns 712923 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40570418ns 712928 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40570873ns 712936 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40571043ns 712939 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40571328ns 712944 1a110850 fd5ff06f jal x0, -44 +40571612ns 712949 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40571896ns 712954 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40572294ns 712961 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40572464ns 712964 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40572919ns 712972 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40573089ns 712975 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40573373ns 712980 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40573658ns 712985 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40573942ns 712990 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40574396ns 712998 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40574567ns 713001 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40574851ns 713006 1a110850 fd5ff06f jal x0, -44 +40575135ns 713011 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40575419ns 713016 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40575817ns 713023 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40575988ns 713026 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40576442ns 713034 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40576613ns 713037 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40576897ns 713042 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40577181ns 713047 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40577465ns 713052 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40577920ns 713060 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40578091ns 713063 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40578375ns 713068 1a110850 fd5ff06f jal x0, -44 +40578659ns 713073 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40578943ns 713078 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40579341ns 713085 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40579511ns 713088 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40579966ns 713096 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40580136ns 713099 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40580421ns 713104 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40580705ns 713109 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40580989ns 713114 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40581444ns 713122 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40581614ns 713125 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40581898ns 713130 1a110850 fd5ff06f jal x0, -44 +40582182ns 713135 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40582467ns 713140 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40582864ns 713147 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40583035ns 713150 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40583490ns 713158 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40583660ns 713161 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40583944ns 713166 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40584228ns 713171 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40584513ns 713176 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40584967ns 713184 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40585138ns 713187 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40585422ns 713192 1a110850 fd5ff06f jal x0, -44 +40585706ns 713197 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40585990ns 713202 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40586388ns 713209 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40586559ns 713212 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40587013ns 713220 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40587184ns 713223 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40587468ns 713228 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40587752ns 713233 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40588036ns 713238 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40588491ns 713246 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40588661ns 713249 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40588945ns 713254 1a110850 fd5ff06f jal x0, -44 +40589230ns 713259 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40589514ns 713264 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40589912ns 713271 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40590082ns 713274 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40590537ns 713282 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40590707ns 713285 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40590991ns 713290 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40591276ns 713295 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40591560ns 713300 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40592014ns 713308 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40592185ns 713311 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40592469ns 713316 1a110850 fd5ff06f jal x0, -44 +40592753ns 713321 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40593037ns 713326 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40593435ns 713333 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40593606ns 713336 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40594060ns 713344 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40594231ns 713347 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40594515ns 713352 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40594799ns 713357 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40595083ns 713362 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40595538ns 713370 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40595708ns 713373 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40595993ns 713378 1a110850 fd5ff06f jal x0, -44 +40596277ns 713383 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40596561ns 713388 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40596959ns 713395 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40597129ns 713398 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40597584ns 713406 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40597754ns 713409 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40598039ns 713414 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40598323ns 713419 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40598607ns 713424 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40599062ns 713432 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40599232ns 713435 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40599516ns 713440 1a110850 fd5ff06f jal x0, -44 +40599800ns 713445 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40600085ns 713450 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40600482ns 713457 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40600653ns 713460 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40601107ns 713468 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40601278ns 713471 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40601562ns 713476 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40601846ns 713481 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40602130ns 713486 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40602585ns 713494 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40602756ns 713497 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40603040ns 713502 1a110850 fd5ff06f jal x0, -44 +40603324ns 713507 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40603608ns 713512 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40604006ns 713519 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40604176ns 713522 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40604631ns 713530 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40604802ns 713533 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40605086ns 713538 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40605370ns 713543 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40605654ns 713548 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40606109ns 713556 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40606279ns 713559 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40606563ns 713564 1a110850 fd5ff06f jal x0, -44 +40606848ns 713569 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40607132ns 713574 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40607530ns 713581 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40607700ns 713584 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40608155ns 713592 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40608325ns 713595 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40608609ns 713600 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40608893ns 713605 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40609178ns 713610 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40609632ns 713618 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40609803ns 713621 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40610087ns 713626 1a110850 fd5ff06f jal x0, -44 +40610371ns 713631 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40610655ns 713636 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40611053ns 713643 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40611224ns 713646 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40611678ns 713654 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40611849ns 713657 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40612133ns 713662 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40612417ns 713667 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40612701ns 713672 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40613156ns 713680 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40613326ns 713683 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40613611ns 713688 1a110850 fd5ff06f jal x0, -44 +40613895ns 713693 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40614179ns 713698 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40614577ns 713705 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40614747ns 713708 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40615202ns 713716 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40615372ns 713719 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40615656ns 713724 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40615941ns 713729 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40616225ns 713734 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40616679ns 713742 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40616850ns 713745 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40617134ns 713750 1a110850 fd5ff06f jal x0, -44 +40617418ns 713755 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40617702ns 713760 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40618100ns 713767 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40618271ns 713770 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40618725ns 713778 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40618896ns 713781 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40619180ns 713786 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40619464ns 713791 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40619748ns 713796 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40620203ns 713804 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40620374ns 713807 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40620658ns 713812 1a110850 fd5ff06f jal x0, -44 +40620942ns 713817 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40621226ns 713822 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40621624ns 713829 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40621794ns 713832 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40622249ns 713840 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40622419ns 713843 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40622704ns 713848 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40622988ns 713853 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40623272ns 713858 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40623727ns 713866 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40623897ns 713869 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40624181ns 713874 1a110850 fd5ff06f jal x0, -44 +40624465ns 713879 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40624750ns 713884 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40625147ns 713891 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40625318ns 713894 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40625773ns 713902 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40625943ns 713905 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40626227ns 713910 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40626511ns 713915 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40626796ns 713920 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40627250ns 713928 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40627421ns 713931 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40627705ns 713936 1a110850 fd5ff06f jal x0, -44 +40627989ns 713941 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40628273ns 713946 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40628671ns 713953 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40628842ns 713956 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40629296ns 713964 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40629467ns 713967 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40629751ns 713972 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40630035ns 713977 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40630319ns 713982 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40630774ns 713990 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40630944ns 713993 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40631228ns 713998 1a110850 fd5ff06f jal x0, -44 +40631513ns 714003 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40631797ns 714008 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40632195ns 714015 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40632365ns 714018 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40632820ns 714026 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40632990ns 714029 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40633274ns 714034 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40633559ns 714039 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40633843ns 714044 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40634297ns 714052 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40634468ns 714055 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40634752ns 714060 1a110850 fd5ff06f jal x0, -44 +40635036ns 714065 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40635320ns 714070 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40635718ns 714077 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40635889ns 714080 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40636343ns 714088 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40636514ns 714091 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40636798ns 714096 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40637082ns 714101 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40637366ns 714106 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40637821ns 714114 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40637991ns 714117 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40638276ns 714122 1a110850 fd5ff06f jal x0, -44 +40638560ns 714127 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40638844ns 714132 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40639242ns 714139 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40639412ns 714142 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40639867ns 714150 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40640037ns 714153 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40640322ns 714158 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40640606ns 714163 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40640890ns 714168 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40641345ns 714176 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40641515ns 714179 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40641799ns 714184 1a110850 fd5ff06f jal x0, -44 +40642083ns 714189 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40642368ns 714194 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40642765ns 714201 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40642936ns 714204 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40643391ns 714212 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40643561ns 714215 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40643845ns 714220 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40644129ns 714225 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40644413ns 714230 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40644868ns 714238 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40645039ns 714241 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40645323ns 714246 1a110850 fd5ff06f jal x0, -44 +40645607ns 714251 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40645891ns 714256 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40646289ns 714263 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40646459ns 714266 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40646914ns 714274 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40647085ns 714277 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40647369ns 714282 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40647653ns 714287 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40647937ns 714292 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40648392ns 714300 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40648562ns 714303 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40648846ns 714308 1a110850 fd5ff06f jal x0, -44 +40649131ns 714313 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40649415ns 714318 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40649813ns 714325 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40649983ns 714328 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40650438ns 714336 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40650608ns 714339 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40650892ns 714344 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40651176ns 714349 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40651461ns 714354 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40651915ns 714362 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40652086ns 714365 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40652370ns 714370 1a110850 fd5ff06f jal x0, -44 +40652654ns 714375 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40652938ns 714380 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40653336ns 714387 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40653507ns 714390 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40653961ns 714398 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40654132ns 714401 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40654416ns 714406 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40654700ns 714411 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40654984ns 714416 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40655439ns 714424 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40655609ns 714427 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40655894ns 714432 1a110850 fd5ff06f jal x0, -44 +40656178ns 714437 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40656462ns 714442 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40656860ns 714449 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40657030ns 714452 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40657485ns 714460 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40657655ns 714463 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40657939ns 714468 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40658224ns 714473 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40658508ns 714478 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40658962ns 714486 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40659133ns 714489 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40659417ns 714494 1a110850 fd5ff06f jal x0, -44 +40659701ns 714499 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40659985ns 714504 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40660383ns 714511 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40660554ns 714514 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40661008ns 714522 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40661179ns 714525 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40661463ns 714530 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40661747ns 714535 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40662031ns 714540 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40662486ns 714548 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40662657ns 714551 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40662941ns 714556 1a110850 fd5ff06f jal x0, -44 +40663225ns 714561 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40663509ns 714566 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40663907ns 714573 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40664077ns 714576 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40664532ns 714584 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40664703ns 714587 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40664987ns 714592 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40665271ns 714597 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40665555ns 714602 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40666010ns 714610 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40666180ns 714613 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40666464ns 714618 1a110850 fd5ff06f jal x0, -44 +40666748ns 714623 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40667033ns 714628 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40667430ns 714635 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40667601ns 714638 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40668056ns 714646 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40668226ns 714649 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40668510ns 714654 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40668794ns 714659 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40669079ns 714664 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40669533ns 714672 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40669704ns 714675 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40669988ns 714680 1a110850 fd5ff06f jal x0, -44 +40670272ns 714685 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40670556ns 714690 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40670954ns 714697 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40671125ns 714700 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40671579ns 714708 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40671750ns 714711 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40672034ns 714716 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40672318ns 714721 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40672602ns 714726 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40673057ns 714734 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40673227ns 714737 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40673511ns 714742 1a110850 fd5ff06f jal x0, -44 +40673796ns 714747 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40674080ns 714752 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40674478ns 714759 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40674648ns 714762 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40675103ns 714770 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40675273ns 714773 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40675557ns 714778 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40675842ns 714783 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40676126ns 714788 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40676580ns 714796 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40676751ns 714799 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40677035ns 714804 1a110850 fd5ff06f jal x0, -44 +40677319ns 714809 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40677603ns 714814 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40678001ns 714821 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40678172ns 714824 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40678626ns 714832 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40678797ns 714835 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40679081ns 714840 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40679365ns 714845 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40679649ns 714850 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40680104ns 714858 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40680274ns 714861 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40680559ns 714866 1a110850 fd5ff06f jal x0, -44 +40680843ns 714871 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40681127ns 714876 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40681525ns 714883 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40681695ns 714886 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40682150ns 714894 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40682320ns 714897 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40682605ns 714902 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40682889ns 714907 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40683173ns 714912 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40683628ns 714920 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40683798ns 714923 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40684082ns 714928 1a110850 fd5ff06f jal x0, -44 +40684366ns 714933 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40684651ns 714938 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40685048ns 714945 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40685219ns 714948 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40685674ns 714956 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40685844ns 714959 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40686128ns 714964 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40686412ns 714969 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40686696ns 714974 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40687151ns 714982 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40687322ns 714985 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40687606ns 714990 1a110850 fd5ff06f jal x0, -44 +40687890ns 714995 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40688174ns 715000 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40688572ns 715007 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40688742ns 715010 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40689197ns 715018 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40689368ns 715021 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40689652ns 715026 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40689936ns 715031 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40690220ns 715036 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40690675ns 715044 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40690845ns 715047 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40691129ns 715052 1a110850 fd5ff06f jal x0, -44 +40691414ns 715057 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40691698ns 715062 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40692096ns 715069 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40692266ns 715072 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40692721ns 715080 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40692891ns 715083 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40693175ns 715088 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40693459ns 715093 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40693744ns 715098 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40694198ns 715106 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40694369ns 715109 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40694653ns 715114 1a110850 fd5ff06f jal x0, -44 +40694937ns 715119 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40695221ns 715124 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40695619ns 715131 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40695790ns 715134 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40696244ns 715142 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40696415ns 715145 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40696699ns 715150 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40696983ns 715155 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40697267ns 715160 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40697722ns 715168 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40697892ns 715171 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40698177ns 715176 1a110850 fd5ff06f jal x0, -44 +40698461ns 715181 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40698745ns 715186 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40699143ns 715193 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40699313ns 715196 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40699768ns 715204 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40699938ns 715207 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40700223ns 715212 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40700507ns 715217 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40700791ns 715222 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40701245ns 715230 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40701416ns 715233 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40701700ns 715238 1a110850 fd5ff06f jal x0, -44 +40701984ns 715243 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40702268ns 715248 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40702666ns 715255 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40702837ns 715258 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40703291ns 715266 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40703462ns 715269 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40703746ns 715274 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40704030ns 715279 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40704314ns 715284 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40704769ns 715292 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40704940ns 715295 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40705224ns 715300 1a110850 fd5ff06f jal x0, -44 +40705508ns 715305 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40705792ns 715310 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40706190ns 715317 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40706360ns 715320 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40706815ns 715328 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40706986ns 715331 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40707270ns 715336 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40707554ns 715341 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40707838ns 715346 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40708293ns 715354 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40708463ns 715357 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40708747ns 715362 1a110850 fd5ff06f jal x0, -44 +40709031ns 715367 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40709316ns 715372 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40709713ns 715379 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40709884ns 715382 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40710339ns 715390 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40710509ns 715393 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40710793ns 715398 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40711077ns 715403 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40711362ns 715408 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40711816ns 715416 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40711987ns 715419 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40712271ns 715424 1a110850 fd5ff06f jal x0, -44 +40712555ns 715429 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40712839ns 715434 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40713237ns 715441 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40713408ns 715444 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40713862ns 715452 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40714033ns 715455 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40714317ns 715460 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40714601ns 715465 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40714885ns 715470 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40715340ns 715478 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40715510ns 715481 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40715794ns 715486 1a110850 fd5ff06f jal x0, -44 +40716079ns 715491 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40716363ns 715496 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40716761ns 715503 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40716931ns 715506 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40717386ns 715514 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40717556ns 715517 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40717840ns 715522 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40718125ns 715527 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40718409ns 715532 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40718863ns 715540 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40719034ns 715543 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40719318ns 715548 1a110850 fd5ff06f jal x0, -44 +40719602ns 715553 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40719886ns 715558 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40720284ns 715565 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40720455ns 715568 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40720909ns 715576 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40721080ns 715579 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40721364ns 715584 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40721648ns 715589 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40721932ns 715594 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40722387ns 715602 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40722557ns 715605 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40722842ns 715610 1a110850 fd5ff06f jal x0, -44 +40723126ns 715615 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40723410ns 715620 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40723808ns 715627 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40723978ns 715630 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40724433ns 715638 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40724603ns 715641 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40724888ns 715646 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40725172ns 715651 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40725456ns 715656 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40725911ns 715664 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40726081ns 715667 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40726365ns 715672 1a110850 fd5ff06f jal x0, -44 +40726649ns 715677 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40726934ns 715682 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40727331ns 715689 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40727502ns 715692 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40727957ns 715700 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40728127ns 715703 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40728411ns 715708 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40728695ns 715713 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40728979ns 715718 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40729434ns 715726 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40729605ns 715729 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40729889ns 715734 1a110850 fd5ff06f jal x0, -44 +40730173ns 715739 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40730457ns 715744 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40730855ns 715751 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40731025ns 715754 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40731480ns 715762 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40731651ns 715765 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40731935ns 715770 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40732219ns 715775 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40732503ns 715780 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40732958ns 715788 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40733128ns 715791 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40733412ns 715796 1a110850 fd5ff06f jal x0, -44 +40733697ns 715801 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40733981ns 715806 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40734379ns 715813 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40734549ns 715816 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40735004ns 715824 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40735174ns 715827 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40735458ns 715832 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40735743ns 715837 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40736027ns 715842 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40736481ns 715850 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40736652ns 715853 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40736936ns 715858 1a110850 fd5ff06f jal x0, -44 +40737220ns 715863 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40737504ns 715868 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40737902ns 715875 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40738073ns 715878 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40738527ns 715886 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40738698ns 715889 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40738982ns 715894 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40739266ns 715899 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40739550ns 715904 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40740005ns 715912 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40740175ns 715915 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40740460ns 715920 1a110850 fd5ff06f jal x0, -44 +40740744ns 715925 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40741028ns 715930 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40741426ns 715937 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40741596ns 715940 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40742051ns 715948 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40742221ns 715951 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40742506ns 715956 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40742790ns 715961 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40743074ns 715966 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40743528ns 715974 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40743699ns 715977 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40743983ns 715982 1a110850 fd5ff06f jal x0, -44 +40744267ns 715987 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40744551ns 715992 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40744949ns 715999 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40745120ns 716002 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40745574ns 716010 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40745745ns 716013 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40746029ns 716018 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40746313ns 716023 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40746597ns 716028 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40747052ns 716036 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40747223ns 716039 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40747507ns 716044 1a110850 fd5ff06f jal x0, -44 +40747791ns 716049 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40748075ns 716054 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40748473ns 716061 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40748643ns 716064 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40749098ns 716072 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40749269ns 716075 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40749553ns 716080 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40749837ns 716085 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40750121ns 716090 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40750576ns 716098 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40750746ns 716101 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40751030ns 716106 1a110850 fd5ff06f jal x0, -44 +40751314ns 716111 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40751599ns 716116 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40751996ns 716123 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40752167ns 716126 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40752622ns 716134 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40752792ns 716137 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40753076ns 716142 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40753360ns 716147 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40753645ns 716152 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40754099ns 716160 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40754270ns 716163 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40754554ns 716168 1a110850 fd5ff06f jal x0, -44 +40754838ns 716173 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40755122ns 716178 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40755520ns 716185 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40755691ns 716188 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40756145ns 716196 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40756316ns 716199 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40756600ns 716204 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40756884ns 716209 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40757168ns 716214 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40757623ns 716222 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40757793ns 716225 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40758077ns 716230 1a110850 fd5ff06f jal x0, -44 +40758362ns 716235 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40758646ns 716240 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40759044ns 716247 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40759214ns 716250 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40759669ns 716258 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40759839ns 716261 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40760123ns 716266 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40760408ns 716271 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40760692ns 716276 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40761146ns 716284 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40761317ns 716287 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40761601ns 716292 1a110850 fd5ff06f jal x0, -44 +40761885ns 716297 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40762169ns 716302 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40762567ns 716309 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40762738ns 716312 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40763192ns 716320 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40763363ns 716323 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40763647ns 716328 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40763931ns 716333 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40764215ns 716338 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40764670ns 716346 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40764840ns 716349 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40765125ns 716354 1a110850 fd5ff06f jal x0, -44 +40765409ns 716359 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40765693ns 716364 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40766091ns 716371 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40766261ns 716374 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40766716ns 716382 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40766886ns 716385 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40767171ns 716390 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40767455ns 716395 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40767739ns 716400 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40768194ns 716408 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40768364ns 716411 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40768648ns 716416 1a110850 fd5ff06f jal x0, -44 +40768932ns 716421 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40769217ns 716426 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40769614ns 716433 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40769785ns 716436 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40770240ns 716444 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40770410ns 716447 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40770694ns 716452 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40770978ns 716457 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40771263ns 716462 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40771717ns 716470 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40771888ns 716473 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40772172ns 716478 1a110850 fd5ff06f jal x0, -44 +40772456ns 716483 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40772740ns 716488 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40773138ns 716495 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40773308ns 716498 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40773763ns 716506 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40773934ns 716509 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40774218ns 716514 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40774502ns 716519 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40774786ns 716524 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40775241ns 716532 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40775411ns 716535 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40775695ns 716540 1a110850 fd5ff06f jal x0, -44 +40775980ns 716545 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40776264ns 716550 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40776662ns 716557 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40776832ns 716560 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40777287ns 716568 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40777457ns 716571 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40777741ns 716576 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40778026ns 716581 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40778310ns 716586 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40778764ns 716594 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40778935ns 716597 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40779219ns 716602 1a110850 fd5ff06f jal x0, -44 +40779503ns 716607 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40779787ns 716612 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40780185ns 716619 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40780356ns 716622 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40780810ns 716630 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40780981ns 716633 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40781265ns 716638 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40781549ns 716643 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40781833ns 716648 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40782288ns 716656 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40782458ns 716659 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40782743ns 716664 1a110850 fd5ff06f jal x0, -44 +40783027ns 716669 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40783311ns 716674 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40783709ns 716681 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40783879ns 716684 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40784334ns 716692 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40784504ns 716695 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40784789ns 716700 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40785073ns 716705 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40785357ns 716710 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40785811ns 716718 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40785982ns 716721 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40786266ns 716726 1a110850 fd5ff06f jal x0, -44 +40786550ns 716731 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40786834ns 716736 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40787232ns 716743 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40787403ns 716746 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40787857ns 716754 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40788028ns 716757 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40788312ns 716762 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40788596ns 716767 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40788880ns 716772 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40789335ns 716780 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40789506ns 716783 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40789790ns 716788 1a110850 fd5ff06f jal x0, -44 +40790074ns 716793 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40790358ns 716798 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40790756ns 716805 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40790926ns 716808 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40791381ns 716816 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40791552ns 716819 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40791836ns 716824 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40792120ns 716829 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40792404ns 716834 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40792859ns 716842 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40793029ns 716845 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40793313ns 716850 1a110850 fd5ff06f jal x0, -44 +40793597ns 716855 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40793882ns 716860 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40794279ns 716867 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40794450ns 716870 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40794905ns 716878 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40795075ns 716881 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40795359ns 716886 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40795643ns 716891 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40795928ns 716896 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40796382ns 716904 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40796553ns 716907 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40796837ns 716912 1a110850 fd5ff06f jal x0, -44 +40797121ns 716917 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40797405ns 716922 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40797803ns 716929 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40797974ns 716932 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40798428ns 716940 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40798599ns 716943 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40798883ns 716948 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40799167ns 716953 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40799451ns 716958 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40799906ns 716966 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40800076ns 716969 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40800360ns 716974 1a110850 fd5ff06f jal x0, -44 +40800645ns 716979 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40800929ns 716984 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40801327ns 716991 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40801497ns 716994 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40801952ns 717002 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40802122ns 717005 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40802406ns 717010 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40802691ns 717015 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40802975ns 717020 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40803429ns 717028 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40803600ns 717031 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40803884ns 717036 1a110850 fd5ff06f jal x0, -44 +40804168ns 717041 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40804452ns 717046 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40804850ns 717053 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40805021ns 717056 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40805475ns 717064 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40805646ns 717067 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40805930ns 717072 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40806214ns 717077 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40806498ns 717082 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40806953ns 717090 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40807123ns 717093 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40807408ns 717098 1a110850 fd5ff06f jal x0, -44 +40807692ns 717103 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40807976ns 717108 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40808374ns 717115 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40808544ns 717118 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40808999ns 717126 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40809169ns 717129 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40809454ns 717134 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40809738ns 717139 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40810022ns 717144 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40810477ns 717152 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40810647ns 717155 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40810931ns 717160 1a110850 fd5ff06f jal x0, -44 +40811215ns 717165 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40811500ns 717170 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40811897ns 717177 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40812068ns 717180 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40812523ns 717188 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40812693ns 717191 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40812977ns 717196 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40813261ns 717201 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40813546ns 717206 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40814000ns 717214 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40814171ns 717217 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40814455ns 717222 1a110850 fd5ff06f jal x0, -44 +40814739ns 717227 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40815023ns 717232 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40815421ns 717239 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40815591ns 717242 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40816046ns 717250 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40816217ns 717253 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40816501ns 717258 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40816785ns 717263 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40817069ns 717268 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40817524ns 717276 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40817694ns 717279 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40817978ns 717284 1a110850 fd5ff06f jal x0, -44 +40818263ns 717289 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40818547ns 717294 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40818945ns 717301 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40819115ns 717304 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40819570ns 717312 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40819740ns 717315 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40820024ns 717320 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40820309ns 717325 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40820593ns 717330 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40821047ns 717338 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40821218ns 717341 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40821502ns 717346 1a110850 fd5ff06f jal x0, -44 +40821786ns 717351 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40822070ns 717356 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40822468ns 717363 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40822639ns 717366 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40823093ns 717374 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40823264ns 717377 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40823548ns 717382 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40823832ns 717387 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40824116ns 717392 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40824571ns 717400 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40824741ns 717403 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40825026ns 717408 1a110850 fd5ff06f jal x0, -44 +40825310ns 717413 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40825594ns 717418 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40825992ns 717425 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40826162ns 717428 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40826617ns 717436 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40826787ns 717439 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40827072ns 717444 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40827356ns 717449 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40827640ns 717454 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40828095ns 717462 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40828265ns 717465 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40828549ns 717470 1a110850 fd5ff06f jal x0, -44 +40828833ns 717475 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40829117ns 717480 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40829515ns 717487 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40829686ns 717490 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40830140ns 717498 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40830311ns 717501 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40830595ns 717506 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40830879ns 717511 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40831163ns 717516 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40831618ns 717524 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40831789ns 717527 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40832073ns 717532 1a110850 fd5ff06f jal x0, -44 +40832357ns 717537 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40832641ns 717542 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40833039ns 717549 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40833209ns 717552 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40833664ns 717560 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40833835ns 717563 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40834119ns 717568 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40834403ns 717573 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40834687ns 717578 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40835142ns 717586 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40835312ns 717589 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40835596ns 717594 1a110850 fd5ff06f jal x0, -44 +40835880ns 717599 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40836165ns 717604 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40836562ns 717611 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40836733ns 717614 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40837188ns 717622 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40837358ns 717625 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40837642ns 717630 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40837926ns 717635 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40838211ns 717640 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40838665ns 717648 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40838836ns 717651 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40839120ns 717656 1a110850 fd5ff06f jal x0, -44 +40839404ns 717661 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40839688ns 717666 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40840086ns 717673 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40840257ns 717676 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40840711ns 717684 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40840882ns 717687 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40841166ns 717692 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40841450ns 717697 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40841734ns 717702 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40842189ns 717710 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40842359ns 717713 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40842643ns 717718 1a110850 fd5ff06f jal x0, -44 +40842928ns 717723 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40843212ns 717728 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40843610ns 717735 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40843780ns 717738 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40844235ns 717746 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40844405ns 717749 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40844689ns 717754 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40844974ns 717759 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40845258ns 717764 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40845712ns 717772 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40845883ns 717775 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40846167ns 717780 1a110850 fd5ff06f jal x0, -44 +40846451ns 717785 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40846735ns 717790 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40847133ns 717797 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40847304ns 717800 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40847758ns 717808 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40847929ns 717811 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40848213ns 717816 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40848497ns 717821 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40848781ns 717826 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40849236ns 717834 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40849407ns 717837 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40849691ns 717842 1a110850 fd5ff06f jal x0, -44 +40849975ns 717847 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40850259ns 717852 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40850657ns 717859 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40850827ns 717862 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40851282ns 717870 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40851452ns 717873 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40851737ns 717878 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40852021ns 717883 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40852305ns 717888 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40852760ns 717896 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40852930ns 717899 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40853214ns 717904 1a110850 fd5ff06f jal x0, -44 +40853498ns 717909 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40853783ns 717914 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40854180ns 717921 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40854351ns 717924 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40854806ns 717932 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40854976ns 717935 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40855260ns 717940 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40855544ns 717945 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40855829ns 717950 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40856283ns 717958 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40856454ns 717961 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40856738ns 717966 1a110850 fd5ff06f jal x0, -44 +40857022ns 717971 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40857306ns 717976 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40857704ns 717983 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40857874ns 717986 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40858329ns 717994 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40858500ns 717997 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40858784ns 718002 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40859068ns 718007 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40859352ns 718012 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40859807ns 718020 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40859977ns 718023 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40860261ns 718028 1a110850 fd5ff06f jal x0, -44 +40860546ns 718033 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40860830ns 718038 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40861228ns 718045 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40861398ns 718048 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40861853ns 718056 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40862023ns 718059 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40862307ns 718064 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40862592ns 718069 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40862876ns 718074 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40863330ns 718082 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40863501ns 718085 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40863785ns 718090 1a110850 fd5ff06f jal x0, -44 +40864069ns 718095 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40864353ns 718100 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40864751ns 718107 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40864922ns 718110 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40865376ns 718118 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40865547ns 718121 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40865831ns 718126 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40866115ns 718131 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40866399ns 718136 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40866854ns 718144 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40867024ns 718147 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40867309ns 718152 1a110850 fd5ff06f jal x0, -44 +40867593ns 718157 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40867877ns 718162 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40868275ns 718169 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40868445ns 718172 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40868900ns 718180 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40869070ns 718183 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40869355ns 718188 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40869639ns 718193 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40869923ns 718198 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40870378ns 718206 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40870548ns 718209 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40870832ns 718214 1a110850 fd5ff06f jal x0, -44 +40871116ns 718219 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40871400ns 718224 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40871798ns 718231 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40871969ns 718234 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40872423ns 718242 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40872594ns 718245 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40872878ns 718250 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40873162ns 718255 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40873446ns 718260 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40873901ns 718268 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40874072ns 718271 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40874356ns 718276 1a110850 fd5ff06f jal x0, -44 +40874640ns 718281 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40874924ns 718286 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40875322ns 718293 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40875492ns 718296 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40875947ns 718304 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40876118ns 718307 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40876402ns 718312 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40876686ns 718317 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40876970ns 718322 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40877425ns 718330 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40877595ns 718333 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40877879ns 718338 1a110850 fd5ff06f jal x0, -44 +40878163ns 718343 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40878448ns 718348 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40878845ns 718355 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40879016ns 718358 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40879471ns 718366 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40879641ns 718369 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40879925ns 718374 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40880209ns 718379 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40880494ns 718384 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40880948ns 718392 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40881119ns 718395 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40881403ns 718400 1a110850 fd5ff06f jal x0, -44 +40881687ns 718405 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40881971ns 718410 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40882369ns 718417 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40882540ns 718420 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40882994ns 718428 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40883165ns 718431 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40883449ns 718436 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40883733ns 718441 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40884017ns 718446 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40884472ns 718454 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40884642ns 718457 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40884927ns 718462 1a110850 fd5ff06f jal x0, -44 +40885211ns 718467 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40885495ns 718472 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40885893ns 718479 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40886063ns 718482 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40886518ns 718490 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40886688ns 718493 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40886972ns 718498 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40887257ns 718503 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40887541ns 718508 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40887995ns 718516 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40888166ns 718519 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40888450ns 718524 1a110850 fd5ff06f jal x0, -44 +40888734ns 718529 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40889018ns 718534 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40889416ns 718541 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40889587ns 718544 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40890041ns 718552 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40890212ns 718555 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40890496ns 718560 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40890780ns 718565 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40891064ns 718570 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40891519ns 718578 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40891690ns 718581 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40891974ns 718586 1a110850 fd5ff06f jal x0, -44 +40892258ns 718591 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40892542ns 718596 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40892940ns 718603 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40893110ns 718606 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40893565ns 718614 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40893735ns 718617 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40894020ns 718622 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40894304ns 718627 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40894588ns 718632 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40895043ns 718640 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40895213ns 718643 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40895497ns 718648 1a110850 fd5ff06f jal x0, -44 +40895781ns 718653 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40896066ns 718658 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40896463ns 718665 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40896634ns 718668 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40897089ns 718676 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40897259ns 718679 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40897543ns 718684 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40897827ns 718689 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40898112ns 718694 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40898566ns 718702 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40898737ns 718705 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40899021ns 718710 1a110850 fd5ff06f jal x0, -44 +40899305ns 718715 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40899589ns 718720 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40899987ns 718727 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40900157ns 718730 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40900612ns 718738 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40900783ns 718741 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40901067ns 718746 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40901351ns 718751 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40901635ns 718756 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40902090ns 718764 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40902260ns 718767 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40902544ns 718772 1a110850 fd5ff06f jal x0, -44 +40902829ns 718777 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40903113ns 718782 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40903511ns 718789 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40903681ns 718792 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40904136ns 718800 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40904306ns 718803 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40904590ns 718808 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40904875ns 718813 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40905159ns 718818 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40905613ns 718826 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40905784ns 718829 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40906068ns 718834 1a110850 fd5ff06f jal x0, -44 +40906352ns 718839 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40906636ns 718844 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40907034ns 718851 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40907205ns 718854 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40907659ns 718862 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40907830ns 718865 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40908114ns 718870 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40908398ns 718875 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40908682ns 718880 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40909137ns 718888 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40909307ns 718891 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40909592ns 718896 1a110850 fd5ff06f jal x0, -44 +40909876ns 718901 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40910160ns 718906 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40910558ns 718913 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40910728ns 718916 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40911183ns 718924 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40911353ns 718927 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40911638ns 718932 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40911922ns 718937 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40912206ns 718942 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40912661ns 718950 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40912831ns 718953 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40913115ns 718958 1a110850 fd5ff06f jal x0, -44 +40913399ns 718963 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40913683ns 718968 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40914081ns 718975 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40914252ns 718978 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40914706ns 718986 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40914877ns 718989 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40915161ns 718994 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40915445ns 718999 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40915729ns 719004 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40916184ns 719012 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40916355ns 719015 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40916639ns 719020 1a110850 fd5ff06f jal x0, -44 +40916923ns 719025 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40917207ns 719030 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40917605ns 719037 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40917775ns 719040 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40918230ns 719048 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40918401ns 719051 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40918685ns 719056 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40918969ns 719061 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40919253ns 719066 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40919708ns 719074 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40919878ns 719077 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40920162ns 719082 1a110850 fd5ff06f jal x0, -44 +40920447ns 719087 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40920731ns 719092 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40921128ns 719099 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40921299ns 719102 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40921754ns 719110 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40921924ns 719113 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40922208ns 719118 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40922492ns 719123 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40922777ns 719128 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40923231ns 719136 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40923402ns 719139 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40923686ns 719144 1a110850 fd5ff06f jal x0, -44 +40923970ns 719149 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40924254ns 719154 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40924652ns 719161 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40924823ns 719164 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40925277ns 719172 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40925448ns 719175 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40925732ns 719180 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40926016ns 719185 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40926300ns 719190 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40926755ns 719198 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40926925ns 719201 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40927210ns 719206 1a110850 fd5ff06f jal x0, -44 +40927494ns 719211 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40927778ns 719216 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40928176ns 719223 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40928346ns 719226 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40928801ns 719234 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40928971ns 719237 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40929255ns 719242 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40929540ns 719247 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40929824ns 719252 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40930278ns 719260 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40930449ns 719263 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40930733ns 719268 1a110850 fd5ff06f jal x0, -44 +40931017ns 719273 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40931301ns 719278 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40931699ns 719285 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40931870ns 719288 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40932324ns 719296 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40932495ns 719299 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40932779ns 719304 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40933063ns 719309 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40933347ns 719314 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40933802ns 719322 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40933973ns 719325 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40934257ns 719330 1a110850 fd5ff06f jal x0, -44 +40934541ns 719335 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40934825ns 719340 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40935223ns 719347 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40935393ns 719350 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40935848ns 719358 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40936018ns 719361 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40936303ns 719366 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40936587ns 719371 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40936871ns 719376 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40937326ns 719384 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40937496ns 719387 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40937780ns 719392 1a110850 fd5ff06f jal x0, -44 +40938064ns 719397 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40938349ns 719402 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40938746ns 719409 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40938917ns 719412 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40939372ns 719420 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40939542ns 719423 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40939826ns 719428 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40940110ns 719433 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40940395ns 719438 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40940849ns 719446 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40941020ns 719449 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40941304ns 719454 1a110850 fd5ff06f jal x0, -44 +40941588ns 719459 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40941872ns 719464 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40942270ns 719471 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40942440ns 719474 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40942895ns 719482 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40943066ns 719485 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40943350ns 719490 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40943634ns 719495 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40943918ns 719500 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40944373ns 719508 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40944543ns 719511 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40944827ns 719516 1a110850 fd5ff06f jal x0, -44 +40945112ns 719521 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40945396ns 719526 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40945794ns 719533 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40945964ns 719536 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40946419ns 719544 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40946589ns 719547 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40946873ns 719552 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40947158ns 719557 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40947442ns 719562 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40947896ns 719570 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40948067ns 719573 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40948351ns 719578 1a110850 fd5ff06f jal x0, -44 +40948635ns 719583 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40948919ns 719588 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40949317ns 719595 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40949488ns 719598 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40949942ns 719606 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40950113ns 719609 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40950397ns 719614 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40950681ns 719619 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40950965ns 719624 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40951420ns 719632 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40951590ns 719635 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40951875ns 719640 1a110850 fd5ff06f jal x0, -44 +40952159ns 719645 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40952443ns 719650 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40952841ns 719657 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40953011ns 719660 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40953466ns 719668 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40953636ns 719671 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40953921ns 719676 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40954205ns 719681 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40954489ns 719686 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40954944ns 719694 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40955114ns 719697 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40955398ns 719702 1a110850 fd5ff06f jal x0, -44 +40955682ns 719707 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40955967ns 719712 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40956364ns 719719 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40956535ns 719722 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40956989ns 719730 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40957160ns 719733 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40957444ns 719738 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40957728ns 719743 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40958012ns 719748 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40958467ns 719756 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40958638ns 719759 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40958922ns 719764 1a110850 fd5ff06f jal x0, -44 +40959206ns 719769 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40959490ns 719774 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40959888ns 719781 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40960058ns 719784 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40960513ns 719792 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40960684ns 719795 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40960968ns 719800 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40961252ns 719805 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40961536ns 719810 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40961991ns 719818 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40962161ns 719821 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40962445ns 719826 1a110850 fd5ff06f jal x0, -44 +40962730ns 719831 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40963014ns 719836 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40963411ns 719843 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40963582ns 719846 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40964037ns 719854 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40964207ns 719857 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40964491ns 719862 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40964775ns 719867 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40965060ns 719872 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40965514ns 719880 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40965685ns 719883 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40965969ns 719888 1a110850 fd5ff06f jal x0, -44 +40966253ns 719893 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40966537ns 719898 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40966935ns 719905 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40967106ns 719908 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40967560ns 719916 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40967731ns 719919 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40968015ns 719924 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40968299ns 719929 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40968583ns 719934 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40969038ns 719942 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40969208ns 719945 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40969493ns 719950 1a110850 fd5ff06f jal x0, -44 +40969777ns 719955 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40970061ns 719960 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40970459ns 719967 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40970629ns 719970 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40971084ns 719978 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40971254ns 719981 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40971538ns 719986 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40971823ns 719991 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40972107ns 719996 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40972561ns 720004 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40972732ns 720007 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40973016ns 720012 1a110850 fd5ff06f jal x0, -44 +40973300ns 720017 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40973584ns 720022 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40973982ns 720029 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40974153ns 720032 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40974607ns 720040 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40974778ns 720043 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40975062ns 720048 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40975346ns 720053 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40975630ns 720058 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40976085ns 720066 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40976256ns 720069 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40976540ns 720074 1a110850 fd5ff06f jal x0, -44 +40976824ns 720079 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40977108ns 720084 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40977506ns 720091 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40977676ns 720094 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40978131ns 720102 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40978301ns 720105 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40978586ns 720110 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40978870ns 720115 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40979154ns 720120 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40979609ns 720128 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40979779ns 720131 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40980063ns 720136 1a110850 fd5ff06f jal x0, -44 +40980347ns 720141 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40980632ns 720146 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40981029ns 720153 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40981200ns 720156 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40981655ns 720164 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40981825ns 720167 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40982109ns 720172 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40982393ns 720177 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40982678ns 720182 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40983132ns 720190 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40983303ns 720193 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40983587ns 720198 1a110850 fd5ff06f jal x0, -44 +40983871ns 720203 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40984155ns 720208 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40984553ns 720215 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40984723ns 720218 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40985178ns 720226 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40985349ns 720229 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40985633ns 720234 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40985917ns 720239 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40986201ns 720244 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40986656ns 720252 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40986826ns 720255 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40987110ns 720260 1a110850 fd5ff06f jal x0, -44 +40987395ns 720265 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40987679ns 720270 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40988077ns 720277 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40988247ns 720280 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40988702ns 720288 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40988872ns 720291 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40989156ns 720296 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40989441ns 720301 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40989725ns 720306 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40990179ns 720314 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40990350ns 720317 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40990634ns 720322 1a110850 fd5ff06f jal x0, -44 +40990918ns 720327 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40991202ns 720332 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40991600ns 720339 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40991771ns 720342 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40992225ns 720350 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40992396ns 720353 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40992680ns 720358 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40992964ns 720363 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40993248ns 720368 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40993703ns 720376 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40993873ns 720379 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40994158ns 720384 1a110850 fd5ff06f jal x0, -44 +40994442ns 720389 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40994726ns 720394 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40995124ns 720401 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40995294ns 720404 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40995749ns 720412 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40995919ns 720415 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40996204ns 720420 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40996488ns 720425 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40996772ns 720430 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40997227ns 720438 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +40997397ns 720441 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +40997681ns 720446 1a110850 fd5ff06f jal x0, -44 +40997965ns 720451 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +40998250ns 720456 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +40998647ns 720463 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +40998818ns 720466 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +40999272ns 720474 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +40999443ns 720477 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +40999727ns 720482 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41000011ns 720487 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41000295ns 720492 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41000750ns 720500 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41000921ns 720503 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41001205ns 720508 1a110850 fd5ff06f jal x0, -44 +41001489ns 720513 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41001773ns 720518 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41002171ns 720525 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41002341ns 720528 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41002796ns 720536 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41002967ns 720539 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41003251ns 720544 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41003535ns 720549 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41003819ns 720554 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41004274ns 720562 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41004444ns 720565 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41004728ns 720570 1a110850 fd5ff06f jal x0, -44 +41005013ns 720575 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41005297ns 720580 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41005695ns 720587 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41005865ns 720590 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41006320ns 720598 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41006490ns 720601 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41006774ns 720606 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41007058ns 720611 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41007343ns 720616 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41007797ns 720624 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41007968ns 720627 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41008252ns 720632 1a110850 fd5ff06f jal x0, -44 +41008536ns 720637 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41008820ns 720642 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41009218ns 720649 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41009389ns 720652 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41009843ns 720660 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41010014ns 720663 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41010298ns 720668 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41010582ns 720673 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41010866ns 720678 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41011321ns 720686 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41011491ns 720689 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41011776ns 720694 1a110850 fd5ff06f jal x0, -44 +41012060ns 720699 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41012344ns 720704 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41012742ns 720711 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41012912ns 720714 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41013367ns 720722 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41013537ns 720725 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41013821ns 720730 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41014106ns 720735 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41014390ns 720740 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41014844ns 720748 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41015015ns 720751 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41015299ns 720756 1a110850 fd5ff06f jal x0, -44 +41015583ns 720761 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41015867ns 720766 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41016265ns 720773 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41016436ns 720776 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41016890ns 720784 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41017061ns 720787 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41017345ns 720792 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41017629ns 720797 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41017913ns 720802 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41018368ns 720810 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41018539ns 720813 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41018823ns 720818 1a110850 fd5ff06f jal x0, -44 +41019107ns 720823 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41019391ns 720828 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41019789ns 720835 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41019959ns 720838 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41020414ns 720846 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41020584ns 720849 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41020869ns 720854 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41021153ns 720859 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41021437ns 720864 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41021892ns 720872 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41022062ns 720875 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41022346ns 720880 1a110850 fd5ff06f jal x0, -44 +41022630ns 720885 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41022915ns 720890 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41023312ns 720897 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41023483ns 720900 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41023938ns 720908 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41024108ns 720911 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41024392ns 720916 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41024676ns 720921 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41024961ns 720926 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41025415ns 720934 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41025586ns 720937 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41025870ns 720942 1a110850 fd5ff06f jal x0, -44 +41026154ns 720947 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41026438ns 720952 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41026836ns 720959 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41027007ns 720962 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41027461ns 720970 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41027632ns 720973 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41027916ns 720978 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41028200ns 720983 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41028484ns 720988 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41028939ns 720996 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41029109ns 720999 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41029393ns 721004 1a110850 fd5ff06f jal x0, -44 +41029678ns 721009 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41029962ns 721014 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41030360ns 721021 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41030530ns 721024 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41030985ns 721032 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41031155ns 721035 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41031439ns 721040 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41031724ns 721045 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41032008ns 721050 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41032462ns 721058 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41032633ns 721061 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41032917ns 721066 1a110850 fd5ff06f jal x0, -44 +41033201ns 721071 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41033485ns 721076 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41033883ns 721083 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41034054ns 721086 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41034508ns 721094 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41034679ns 721097 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41034963ns 721102 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41035247ns 721107 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41035531ns 721112 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41035986ns 721120 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41036156ns 721123 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41036441ns 721128 1a110850 fd5ff06f jal x0, -44 +41036725ns 721133 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41037009ns 721138 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41037407ns 721145 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41037577ns 721148 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41038032ns 721156 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41038202ns 721159 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41038487ns 721164 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41038771ns 721169 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41039055ns 721174 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41039510ns 721182 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41039680ns 721185 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41039964ns 721190 1a110850 fd5ff06f jal x0, -44 +41040248ns 721195 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41040533ns 721200 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41040930ns 721207 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41041101ns 721210 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41041555ns 721218 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41041726ns 721221 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41042010ns 721226 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41042294ns 721231 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41042578ns 721236 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41043033ns 721244 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41043204ns 721247 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41043488ns 721252 1a110850 fd5ff06f jal x0, -44 +41043772ns 721257 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41044056ns 721262 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41044454ns 721269 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41044624ns 721272 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41045079ns 721280 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41045250ns 721283 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41045534ns 721288 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41045818ns 721293 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41046102ns 721298 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41046557ns 721306 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41046727ns 721309 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41047011ns 721314 1a110850 fd5ff06f jal x0, -44 +41047296ns 721319 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41047580ns 721324 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41047978ns 721331 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41048148ns 721334 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41048603ns 721342 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41048773ns 721345 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41049057ns 721350 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41049341ns 721355 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41049626ns 721360 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41050080ns 721368 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41050251ns 721371 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41050535ns 721376 1a110850 fd5ff06f jal x0, -44 +41050819ns 721381 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41051103ns 721386 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41051501ns 721393 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41051672ns 721396 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41052126ns 721404 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41052297ns 721407 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41052581ns 721412 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41052865ns 721417 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41053149ns 721422 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41053604ns 721430 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41053774ns 721433 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41054059ns 721438 1a110850 fd5ff06f jal x0, -44 +41054343ns 721443 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41054627ns 721448 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41055025ns 721455 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41055195ns 721458 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41055650ns 721466 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41055820ns 721469 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41056104ns 721474 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41056389ns 721479 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41056673ns 721484 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41057127ns 721492 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41057298ns 721495 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41057582ns 721500 1a110850 fd5ff06f jal x0, -44 +41057866ns 721505 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41058150ns 721510 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41058548ns 721517 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41058719ns 721520 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41059173ns 721528 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41059344ns 721531 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41059628ns 721536 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41059912ns 721541 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41060196ns 721546 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41060651ns 721554 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41060822ns 721557 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41061106ns 721562 1a110850 fd5ff06f jal x0, -44 +41061390ns 721567 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41061674ns 721572 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41062072ns 721579 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41062242ns 721582 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41062697ns 721590 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41062867ns 721593 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41063152ns 721598 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41063436ns 721603 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41063720ns 721608 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41064175ns 721616 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41064345ns 721619 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41064629ns 721624 1a110850 fd5ff06f jal x0, -44 +41064913ns 721629 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41065198ns 721634 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41065595ns 721641 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41065766ns 721644 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41066221ns 721652 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41066391ns 721655 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41066675ns 721660 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41066959ns 721665 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41067244ns 721670 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41067698ns 721678 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41067869ns 721681 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41068153ns 721686 1a110850 fd5ff06f jal x0, -44 +41068437ns 721691 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41068721ns 721696 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41069119ns 721703 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41069290ns 721706 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41069744ns 721714 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41069915ns 721717 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41070199ns 721722 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41070483ns 721727 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41070767ns 721732 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41071222ns 721740 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41071392ns 721743 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41071676ns 721748 1a110850 fd5ff06f jal x0, -44 +41071961ns 721753 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41072245ns 721758 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41072643ns 721765 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41072813ns 721768 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41073268ns 721776 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41073438ns 721779 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41073722ns 721784 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41074007ns 721789 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41074291ns 721794 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41074745ns 721802 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41074916ns 721805 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41075200ns 721810 1a110850 fd5ff06f jal x0, -44 +41075484ns 721815 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41075768ns 721820 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41076166ns 721827 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41076337ns 721830 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41076791ns 721838 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41076962ns 721841 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41077246ns 721846 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41077530ns 721851 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41077814ns 721856 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41078269ns 721864 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41078439ns 721867 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41078724ns 721872 1a110850 fd5ff06f jal x0, -44 +41079008ns 721877 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41079292ns 721882 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41079690ns 721889 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41079860ns 721892 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41080315ns 721900 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41080485ns 721903 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41080770ns 721908 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41081054ns 721913 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41081338ns 721918 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41081793ns 721926 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41081963ns 721929 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41082247ns 721934 1a110850 fd5ff06f jal x0, -44 +41082531ns 721939 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41082816ns 721944 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41083213ns 721951 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41083384ns 721954 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41083839ns 721962 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41084009ns 721965 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41084293ns 721970 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41084577ns 721975 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41084861ns 721980 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41085316ns 721988 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41085487ns 721991 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41085771ns 721996 1a110850 fd5ff06f jal x0, -44 +41086055ns 722001 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41086339ns 722006 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41086737ns 722013 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41086907ns 722016 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41087362ns 722024 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41087533ns 722027 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41087817ns 722032 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41088101ns 722037 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41088385ns 722042 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41088840ns 722050 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41089010ns 722053 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41089294ns 722058 1a110850 fd5ff06f jal x0, -44 +41089579ns 722063 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41089863ns 722068 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41090261ns 722075 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41090431ns 722078 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41090886ns 722086 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41091056ns 722089 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41091340ns 722094 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41091624ns 722099 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41091909ns 722104 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41092363ns 722112 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41092534ns 722115 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41092818ns 722120 1a110850 fd5ff06f jal x0, -44 +41093102ns 722125 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41093386ns 722130 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41093784ns 722137 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41093955ns 722140 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41094409ns 722148 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41094580ns 722151 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41094864ns 722156 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41095148ns 722161 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41095432ns 722166 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41095887ns 722174 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41096057ns 722177 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41096342ns 722182 1a110850 fd5ff06f jal x0, -44 +41096626ns 722187 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41096910ns 722192 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41097308ns 722199 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41097478ns 722202 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41097933ns 722210 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41098103ns 722213 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41098387ns 722218 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41098672ns 722223 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41098956ns 722228 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41099410ns 722236 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41099581ns 722239 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41099865ns 722244 1a110850 fd5ff06f jal x0, -44 +41100149ns 722249 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41100433ns 722254 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41100831ns 722261 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41101002ns 722264 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41101456ns 722272 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41101627ns 722275 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41101911ns 722280 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41102195ns 722285 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41102479ns 722290 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41102934ns 722298 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41103105ns 722301 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41103389ns 722306 1a110850 fd5ff06f jal x0, -44 +41103673ns 722311 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41103957ns 722316 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41104355ns 722323 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41104525ns 722326 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41104980ns 722334 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41105151ns 722337 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41105435ns 722342 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41105719ns 722347 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41106003ns 722352 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41106458ns 722360 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41106628ns 722363 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41106912ns 722368 1a110850 fd5ff06f jal x0, -44 +41107196ns 722373 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41107481ns 722378 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41107878ns 722385 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41108049ns 722388 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41108504ns 722396 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41108674ns 722399 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41108958ns 722404 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41109242ns 722409 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41109527ns 722414 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41109981ns 722422 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41110152ns 722425 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41110436ns 722430 1a110850 fd5ff06f jal x0, -44 +41110720ns 722435 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41111004ns 722440 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41111402ns 722447 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41111573ns 722450 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41112027ns 722458 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41112198ns 722461 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41112482ns 722466 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41112766ns 722471 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41113050ns 722476 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41113505ns 722484 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41113675ns 722487 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41113959ns 722492 1a110850 fd5ff06f jal x0, -44 +41114244ns 722497 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41114528ns 722502 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41114926ns 722509 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41115096ns 722512 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41115551ns 722520 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41115721ns 722523 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41116005ns 722528 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41116290ns 722533 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41116574ns 722538 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41117028ns 722546 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41117199ns 722549 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41117483ns 722554 1a110850 fd5ff06f jal x0, -44 +41117767ns 722559 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41118051ns 722564 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41118449ns 722571 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41118620ns 722574 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41119074ns 722582 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41119245ns 722585 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41119529ns 722590 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41119813ns 722595 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41120097ns 722600 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41120552ns 722608 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41120722ns 722611 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41121007ns 722616 1a110850 fd5ff06f jal x0, -44 +41121291ns 722621 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41121575ns 722626 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41121973ns 722633 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41122143ns 722636 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41122598ns 722644 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41122768ns 722647 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41123053ns 722652 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41123337ns 722657 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41123621ns 722662 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41124076ns 722670 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41124246ns 722673 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41124530ns 722678 1a110850 fd5ff06f jal x0, -44 +41124814ns 722683 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41125099ns 722688 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41125496ns 722695 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41125667ns 722698 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41126122ns 722706 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41126292ns 722709 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41126576ns 722714 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41126860ns 722719 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41127144ns 722724 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41127599ns 722732 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41127770ns 722735 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41128054ns 722740 1a110850 fd5ff06f jal x0, -44 +41128338ns 722745 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41128622ns 722750 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41129020ns 722757 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41129190ns 722760 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41129645ns 722768 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41129816ns 722771 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41130100ns 722776 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41130384ns 722781 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41130668ns 722786 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41131123ns 722794 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41131293ns 722797 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41131577ns 722802 1a110850 fd5ff06f jal x0, -44 +41131862ns 722807 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41132146ns 722812 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41132544ns 722819 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41132714ns 722822 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41133169ns 722830 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41133339ns 722833 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41133623ns 722838 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41133907ns 722843 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41134192ns 722848 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41134646ns 722856 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41134817ns 722859 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41135101ns 722864 1a110850 fd5ff06f jal x0, -44 +41135385ns 722869 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41135669ns 722874 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41136067ns 722881 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41136238ns 722884 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41136692ns 722892 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41136863ns 722895 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41137147ns 722900 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41137431ns 722905 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41137715ns 722910 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41138170ns 722918 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41138340ns 722921 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41138625ns 722926 1a110850 fd5ff06f jal x0, -44 +41138909ns 722931 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41139193ns 722936 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41139591ns 722943 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41139761ns 722946 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41140216ns 722954 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41140386ns 722957 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41140671ns 722962 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41140955ns 722967 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41141239ns 722972 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41141693ns 722980 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41141864ns 722983 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41142148ns 722988 1a110850 fd5ff06f jal x0, -44 +41142432ns 722993 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41142716ns 722998 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41143114ns 723005 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41143285ns 723008 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41143739ns 723016 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41143910ns 723019 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41144194ns 723024 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41144478ns 723029 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41144762ns 723034 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41145217ns 723042 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41145388ns 723045 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41145672ns 723050 1a110850 fd5ff06f jal x0, -44 +41145956ns 723055 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41146240ns 723060 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41146638ns 723067 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41146808ns 723070 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41147263ns 723078 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41147434ns 723081 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41147718ns 723086 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41148002ns 723091 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41148286ns 723096 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41148741ns 723104 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41148911ns 723107 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41149195ns 723112 1a110850 fd5ff06f jal x0, -44 +41149479ns 723117 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41149764ns 723122 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41150161ns 723129 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41150332ns 723132 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41150787ns 723140 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41150957ns 723143 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41151241ns 723148 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41151525ns 723153 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41151810ns 723158 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41152264ns 723166 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41152435ns 723169 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41152719ns 723174 1a110850 fd5ff06f jal x0, -44 +41153003ns 723179 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41153287ns 723184 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41153685ns 723191 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41153856ns 723194 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41154310ns 723202 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41154481ns 723205 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41154765ns 723210 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41155049ns 723215 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41155333ns 723220 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41155788ns 723228 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41155958ns 723231 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41156242ns 723236 1a110850 fd5ff06f jal x0, -44 +41156527ns 723241 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41156811ns 723246 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41157209ns 723253 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41157379ns 723256 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41157834ns 723264 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41158004ns 723267 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41158288ns 723272 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41158573ns 723277 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41158857ns 723282 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41159311ns 723290 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41159482ns 723293 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41159766ns 723298 1a110850 fd5ff06f jal x0, -44 +41160050ns 723303 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41160334ns 723308 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41160732ns 723315 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41160903ns 723318 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41161357ns 723326 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41161528ns 723329 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41161812ns 723334 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41162096ns 723339 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41162380ns 723344 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41162835ns 723352 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41163005ns 723355 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41163290ns 723360 1a110850 fd5ff06f jal x0, -44 +41163574ns 723365 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41163858ns 723370 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41164256ns 723377 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41164426ns 723380 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41164881ns 723388 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41165051ns 723391 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41165336ns 723396 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41165620ns 723401 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41165904ns 723406 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41166359ns 723414 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41166529ns 723417 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41166813ns 723422 1a110850 fd5ff06f jal x0, -44 +41167097ns 723427 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41167382ns 723432 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41167779ns 723439 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41167950ns 723442 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41168405ns 723450 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41168575ns 723453 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41168859ns 723458 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41169143ns 723463 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41169427ns 723468 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41169882ns 723476 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41170053ns 723479 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41170337ns 723484 1a110850 fd5ff06f jal x0, -44 +41170621ns 723489 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41170905ns 723494 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41171303ns 723501 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41171473ns 723504 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41171928ns 723512 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41172099ns 723515 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41172383ns 723520 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41172667ns 723525 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41172951ns 723530 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41173406ns 723538 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41173576ns 723541 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41173860ns 723546 1a110850 fd5ff06f jal x0, -44 +41174145ns 723551 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41174429ns 723556 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41174827ns 723563 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41174997ns 723566 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41175452ns 723574 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41175622ns 723577 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41175906ns 723582 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41176191ns 723587 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41176475ns 723592 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41176929ns 723600 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41177100ns 723603 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41177384ns 723608 1a110850 fd5ff06f jal x0, -44 +41177668ns 723613 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41177952ns 723618 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41178350ns 723625 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41178521ns 723628 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41178975ns 723636 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41179146ns 723639 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41179430ns 723644 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41179714ns 723649 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41179998ns 723654 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41180453ns 723662 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41180623ns 723665 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41180908ns 723670 1a110850 fd5ff06f jal x0, -44 +41181192ns 723675 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41181476ns 723680 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41181874ns 723687 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41182044ns 723690 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41182499ns 723698 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41182669ns 723701 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41182954ns 723706 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41183238ns 723711 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41183522ns 723716 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41183976ns 723724 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41184147ns 723727 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41184431ns 723732 1a110850 fd5ff06f jal x0, -44 +41184715ns 723737 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41184999ns 723742 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41185397ns 723749 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41185568ns 723752 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41186022ns 723760 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41186193ns 723763 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41186477ns 723768 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41186761ns 723773 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41187045ns 723778 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41187500ns 723786 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41187671ns 723789 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41187955ns 723794 1a110850 fd5ff06f jal x0, -44 +41188239ns 723799 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41188523ns 723804 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41188921ns 723811 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41189091ns 723814 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41189546ns 723822 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41189717ns 723825 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41190001ns 723830 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41190285ns 723835 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41190569ns 723840 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41191024ns 723848 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41191194ns 723851 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41191478ns 723856 1a110850 fd5ff06f jal x0, -44 +41191762ns 723861 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41192047ns 723866 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41192444ns 723873 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41192615ns 723876 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41193070ns 723884 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41193240ns 723887 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41193524ns 723892 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41193808ns 723897 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41194093ns 723902 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41194547ns 723910 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41194718ns 723913 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41195002ns 723918 1a110850 fd5ff06f jal x0, -44 +41195286ns 723923 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41195570ns 723928 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41195968ns 723935 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41196139ns 723938 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41196593ns 723946 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41196764ns 723949 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41197048ns 723954 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41197332ns 723959 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41197616ns 723964 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41198071ns 723972 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41198241ns 723975 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41198525ns 723980 1a110850 fd5ff06f jal x0, -44 +41198810ns 723985 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41199094ns 723990 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41199492ns 723997 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41199662ns 724000 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41200117ns 724008 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41200287ns 724011 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41200571ns 724016 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41200856ns 724021 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41201140ns 724026 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41201594ns 724034 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41201765ns 724037 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41202049ns 724042 1a110850 fd5ff06f jal x0, -44 +41202333ns 724047 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41202617ns 724052 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41203015ns 724059 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41203186ns 724062 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41203640ns 724070 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41203811ns 724073 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41204095ns 724078 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41204379ns 724083 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41204663ns 724088 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41205118ns 724096 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41205288ns 724099 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41205573ns 724104 1a110850 fd5ff06f jal x0, -44 +41205857ns 724109 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41206141ns 724114 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41206539ns 724121 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41206709ns 724124 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41207164ns 724132 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41207334ns 724135 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41207619ns 724140 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41207903ns 724145 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41208187ns 724150 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41208642ns 724158 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41208812ns 724161 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41209096ns 724166 1a110850 fd5ff06f jal x0, -44 +41209380ns 724171 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41209665ns 724176 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41210062ns 724183 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41210233ns 724186 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41210688ns 724194 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41210858ns 724197 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41211142ns 724202 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41211426ns 724207 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41211711ns 724212 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41212165ns 724220 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41212336ns 724223 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41212620ns 724228 1a110850 fd5ff06f jal x0, -44 +41212904ns 724233 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41213188ns 724238 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41213586ns 724245 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41213756ns 724248 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41214211ns 724256 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41214382ns 724259 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41214666ns 724264 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41214950ns 724269 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41215234ns 724274 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41215689ns 724282 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41215859ns 724285 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41216143ns 724290 1a110850 fd5ff06f jal x0, -44 +41216428ns 724295 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41216712ns 724300 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41217110ns 724307 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41217280ns 724310 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41217735ns 724318 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41217905ns 724321 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41218189ns 724326 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41218474ns 724331 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41218758ns 724336 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41219212ns 724344 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41219383ns 724347 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41219667ns 724352 1a110850 fd5ff06f jal x0, -44 +41219951ns 724357 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41220235ns 724362 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41220633ns 724369 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41220804ns 724372 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41221258ns 724380 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41221429ns 724383 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41221713ns 724388 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41221997ns 724393 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41222281ns 724398 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41222736ns 724406 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41222906ns 724409 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41223191ns 724414 1a110850 fd5ff06f jal x0, -44 +41223475ns 724419 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41223759ns 724424 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41224157ns 724431 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41224327ns 724434 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41224782ns 724442 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41224952ns 724445 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41225237ns 724450 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41225521ns 724455 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41225805ns 724460 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41226259ns 724468 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41226430ns 724471 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41226714ns 724476 1a110850 fd5ff06f jal x0, -44 +41226998ns 724481 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41227282ns 724486 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41227680ns 724493 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41227851ns 724496 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41228305ns 724504 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41228476ns 724507 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41228760ns 724512 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41229044ns 724517 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41229328ns 724522 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41229783ns 724530 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41229954ns 724533 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41230238ns 724538 1a110850 fd5ff06f jal x0, -44 +41230522ns 724543 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41230806ns 724548 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41231204ns 724555 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41231374ns 724558 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41231829ns 724566 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41232000ns 724569 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41232284ns 724574 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41232568ns 724579 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41232852ns 724584 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41233307ns 724592 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41233477ns 724595 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41233761ns 724600 1a110850 fd5ff06f jal x0, -44 +41234045ns 724605 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41234330ns 724610 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41234727ns 724617 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41234898ns 724620 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41235353ns 724628 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41235523ns 724631 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41235807ns 724636 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41236091ns 724641 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41236376ns 724646 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41236830ns 724654 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41237001ns 724657 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41237285ns 724662 1a110850 fd5ff06f jal x0, -44 +41237569ns 724667 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41237853ns 724672 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41238251ns 724679 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41238422ns 724682 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41238876ns 724690 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41239047ns 724693 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41239331ns 724698 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41239615ns 724703 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41239899ns 724708 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41240354ns 724716 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41240524ns 724719 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41240808ns 724724 1a110850 fd5ff06f jal x0, -44 +41241093ns 724729 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41241377ns 724734 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41241775ns 724741 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41241945ns 724744 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41242400ns 724752 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41242570ns 724755 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41242854ns 724760 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41243139ns 724765 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41243423ns 724770 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41243877ns 724778 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41244048ns 724781 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41244332ns 724786 1a110850 fd5ff06f jal x0, -44 +41244616ns 724791 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41244900ns 724796 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41245298ns 724803 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41245469ns 724806 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41245923ns 724814 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41246094ns 724817 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41246378ns 724822 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41246662ns 724827 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41246946ns 724832 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41247401ns 724840 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41247571ns 724843 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41247856ns 724848 1a110850 fd5ff06f jal x0, -44 +41248140ns 724853 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41248424ns 724858 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41248822ns 724865 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41248992ns 724868 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41249447ns 724876 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41249617ns 724879 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41249902ns 724884 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41250186ns 724889 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41250470ns 724894 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41250925ns 724902 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41251095ns 724905 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41251379ns 724910 1a110850 fd5ff06f jal x0, -44 +41251663ns 724915 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41251948ns 724920 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41252345ns 724927 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41252516ns 724930 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41252971ns 724938 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41253141ns 724941 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41253425ns 724946 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41253709ns 724951 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41253994ns 724956 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41254448ns 724964 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41254619ns 724967 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41254903ns 724972 1a110850 fd5ff06f jal x0, -44 +41255187ns 724977 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41255471ns 724982 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41255869ns 724989 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41256039ns 724992 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41256494ns 725000 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41256665ns 725003 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41256949ns 725008 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41257233ns 725013 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41257517ns 725018 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41257972ns 725026 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41258142ns 725029 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41258426ns 725034 1a110850 fd5ff06f jal x0, -44 +41258711ns 725039 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41258995ns 725044 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41259393ns 725051 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41259563ns 725054 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41260018ns 725062 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41260188ns 725065 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41260472ns 725070 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41260757ns 725075 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41261041ns 725080 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41261495ns 725088 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41261666ns 725091 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41261950ns 725096 1a110850 fd5ff06f jal x0, -44 +41262234ns 725101 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41262518ns 725106 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41262916ns 725113 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41263087ns 725116 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41263541ns 725124 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41263712ns 725127 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41263996ns 725132 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41264280ns 725137 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41264564ns 725142 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41265019ns 725150 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41265189ns 725153 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41265474ns 725158 1a110850 fd5ff06f jal x0, -44 +41265758ns 725163 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41266042ns 725168 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41266440ns 725175 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41266610ns 725178 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41267065ns 725186 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41267235ns 725189 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41267520ns 725194 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41267804ns 725199 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41268088ns 725204 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41268543ns 725212 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41268713ns 725215 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41268997ns 725220 1a110850 fd5ff06f jal x0, -44 +41269281ns 725225 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41269565ns 725230 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41269963ns 725237 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41270134ns 725240 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41270588ns 725248 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41270759ns 725251 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41271043ns 725256 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41271327ns 725261 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41271611ns 725266 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41272066ns 725274 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41272237ns 725277 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41272521ns 725282 1a110850 fd5ff06f jal x0, -44 +41272805ns 725287 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41273089ns 725292 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41273487ns 725299 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41273657ns 725302 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41274112ns 725310 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41274283ns 725313 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41274567ns 725318 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41274851ns 725323 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41275135ns 725328 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41275590ns 725336 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41275760ns 725339 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41276044ns 725344 1a110850 fd5ff06f jal x0, -44 +41276328ns 725349 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41276613ns 725354 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41277010ns 725361 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41277181ns 725364 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41277636ns 725372 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41277806ns 725375 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41278090ns 725380 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41278374ns 725385 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41278659ns 725390 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41279113ns 725398 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41279284ns 725401 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41279568ns 725406 1a110850 fd5ff06f jal x0, -44 +41279852ns 725411 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41280136ns 725416 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41280534ns 725423 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41280705ns 725426 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41281159ns 725434 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41281330ns 725437 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41281614ns 725442 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41281898ns 725447 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41282182ns 725452 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41282637ns 725460 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41282807ns 725463 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41283091ns 725468 1a110850 fd5ff06f jal x0, -44 +41283376ns 725473 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41283660ns 725478 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41284058ns 725485 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41284228ns 725488 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41284683ns 725496 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41284853ns 725499 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41285137ns 725504 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41285422ns 725509 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41285706ns 725514 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41286160ns 725522 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41286331ns 725525 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41286615ns 725530 1a110850 fd5ff06f jal x0, -44 +41286899ns 725535 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41287183ns 725540 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41287581ns 725547 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41287752ns 725550 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41288206ns 725558 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41288377ns 725561 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41288661ns 725566 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41288945ns 725571 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41289229ns 725576 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41289684ns 725584 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41289855ns 725587 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41290139ns 725592 1a110850 fd5ff06f jal x0, -44 +41290423ns 725597 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41290707ns 725602 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41291105ns 725609 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41291275ns 725612 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41291730ns 725620 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41291900ns 725623 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41292185ns 725628 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41292469ns 725633 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41292753ns 725638 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41293208ns 725646 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41293378ns 725649 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41293662ns 725654 1a110850 fd5ff06f jal x0, -44 +41293946ns 725659 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41294231ns 725664 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41294628ns 725671 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41294799ns 725674 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41295254ns 725682 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41295424ns 725685 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41295708ns 725690 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41295992ns 725695 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41296277ns 725700 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41296731ns 725708 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41296902ns 725711 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41297186ns 725716 1a110850 fd5ff06f jal x0, -44 +41297470ns 725721 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41297754ns 725726 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41298152ns 725733 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41298322ns 725736 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41298777ns 725744 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41298948ns 725747 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41299232ns 725752 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41299516ns 725757 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41299800ns 725762 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41300255ns 725770 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41300425ns 725773 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41300709ns 725778 1a110850 fd5ff06f jal x0, -44 +41300994ns 725783 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41301278ns 725788 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41301676ns 725795 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41301846ns 725798 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41302301ns 725806 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41302471ns 725809 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41302755ns 725814 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41303040ns 725819 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41303324ns 725824 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41303778ns 725832 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41303949ns 725835 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41304233ns 725840 1a110850 fd5ff06f jal x0, -44 +41304517ns 725845 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41304801ns 725850 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41305199ns 725857 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41305370ns 725860 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41305824ns 725868 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41305995ns 725871 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41306279ns 725876 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41306563ns 725881 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41306847ns 725886 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41307302ns 725894 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41307472ns 725897 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41307757ns 725902 1a110850 fd5ff06f jal x0, -44 +41308041ns 725907 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41308325ns 725912 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41308723ns 725919 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41308893ns 725922 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41309348ns 725930 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41309518ns 725933 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41309803ns 725938 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41310087ns 725943 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41310371ns 725948 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41310826ns 725956 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41310996ns 725959 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41311280ns 725964 1a110850 fd5ff06f jal x0, -44 +41311564ns 725969 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41311848ns 725974 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41312246ns 725981 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41312417ns 725984 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41312871ns 725992 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41313042ns 725995 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41313326ns 726000 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41313610ns 726005 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41313894ns 726010 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41314349ns 726018 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41314520ns 726021 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41314804ns 726026 1a110850 fd5ff06f jal x0, -44 +41315088ns 726031 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41315372ns 726036 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41315770ns 726043 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41315940ns 726046 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41316395ns 726054 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41316566ns 726057 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41316850ns 726062 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41317134ns 726067 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41317418ns 726072 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41317873ns 726080 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41318043ns 726083 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41318327ns 726088 1a110850 fd5ff06f jal x0, -44 +41318611ns 726093 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41318896ns 726098 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41319293ns 726105 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41319464ns 726108 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41319919ns 726116 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41320089ns 726119 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41320373ns 726124 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41320657ns 726129 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41320942ns 726134 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41321396ns 726142 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41321567ns 726145 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41321851ns 726150 1a110850 fd5ff06f jal x0, -44 +41322135ns 726155 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41322419ns 726160 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41322817ns 726167 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41322988ns 726170 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41323442ns 726178 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41323613ns 726181 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41323897ns 726186 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41324181ns 726191 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41324465ns 726196 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41324920ns 726204 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41325090ns 726207 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41325375ns 726212 1a110850 fd5ff06f jal x0, -44 +41325659ns 726217 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41325943ns 726222 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41326341ns 726229 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41326511ns 726232 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41326966ns 726240 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41327136ns 726243 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41327420ns 726248 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41327705ns 726253 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41327989ns 726258 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41328443ns 726266 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41328614ns 726269 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41328898ns 726274 1a110850 fd5ff06f jal x0, -44 +41329182ns 726279 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41329466ns 726284 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41329864ns 726291 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41330035ns 726294 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41330489ns 726302 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41330660ns 726305 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41330944ns 726310 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41331228ns 726315 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41331512ns 726320 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41331967ns 726328 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41332138ns 726331 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41332422ns 726336 1a110850 fd5ff06f jal x0, -44 +41332706ns 726341 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41332990ns 726346 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41333388ns 726353 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41333558ns 726356 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41334013ns 726364 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41334183ns 726367 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41334468ns 726372 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41334752ns 726377 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41335036ns 726382 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41335491ns 726390 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41335661ns 726393 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41335945ns 726398 1a110850 fd5ff06f jal x0, -44 +41336229ns 726403 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41336514ns 726408 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41336911ns 726415 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41337082ns 726418 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41337537ns 726426 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41337707ns 726429 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41337991ns 726434 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41338275ns 726439 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41338560ns 726444 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41339014ns 726452 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41339185ns 726455 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41339469ns 726460 1a110850 fd5ff06f jal x0, -44 +41339753ns 726465 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41340037ns 726470 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41340435ns 726477 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41340605ns 726480 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41341060ns 726488 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41341231ns 726491 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41341515ns 726496 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41341799ns 726501 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41342083ns 726506 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41342538ns 726514 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41342708ns 726517 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41342992ns 726522 1a110850 fd5ff06f jal x0, -44 +41343277ns 726527 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41343561ns 726532 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41343959ns 726539 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41344129ns 726542 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41344584ns 726550 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41344754ns 726553 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41345038ns 726558 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41345323ns 726563 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41345607ns 726568 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41346061ns 726576 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41346232ns 726579 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41346516ns 726584 1a110850 fd5ff06f jal x0, -44 +41346800ns 726589 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41347084ns 726594 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41347482ns 726601 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41347653ns 726604 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41348107ns 726612 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41348278ns 726615 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41348562ns 726620 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41348846ns 726625 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41349130ns 726630 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41349585ns 726638 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41349755ns 726641 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41350040ns 726646 1a110850 fd5ff06f jal x0, -44 +41350324ns 726651 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41350608ns 726656 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41351006ns 726663 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41351176ns 726666 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41351631ns 726674 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41351801ns 726677 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41352086ns 726682 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41352370ns 726687 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41352654ns 726692 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41353109ns 726700 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41353279ns 726703 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41353563ns 726708 1a110850 fd5ff06f jal x0, -44 +41353847ns 726713 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41354131ns 726718 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41354529ns 726725 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41354700ns 726728 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41355154ns 726736 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41355325ns 726739 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41355609ns 726744 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41355893ns 726749 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41356177ns 726754 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41356632ns 726762 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41356803ns 726765 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41357087ns 726770 1a110850 fd5ff06f jal x0, -44 +41357371ns 726775 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41357655ns 726780 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41358053ns 726787 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41358223ns 726790 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41358678ns 726798 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41358849ns 726801 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41359133ns 726806 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41359417ns 726811 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41359701ns 726816 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41360156ns 726824 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41360326ns 726827 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41360610ns 726832 1a110850 fd5ff06f jal x0, -44 +41360895ns 726837 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41361179ns 726842 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41361576ns 726849 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41361747ns 726852 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41362202ns 726860 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41362372ns 726863 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41362656ns 726868 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41362940ns 726873 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41363225ns 726878 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41363679ns 726886 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41363850ns 726889 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41364134ns 726894 1a110850 fd5ff06f jal x0, -44 +41364418ns 726899 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41364702ns 726904 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41365100ns 726911 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41365271ns 726914 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41365725ns 726922 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41365896ns 726925 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41366180ns 726930 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41366464ns 726935 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41366748ns 726940 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41367203ns 726948 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41367373ns 726951 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41367658ns 726956 1a110850 fd5ff06f jal x0, -44 +41367942ns 726961 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41368226ns 726966 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41368624ns 726973 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41368794ns 726976 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41369249ns 726984 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41369419ns 726987 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41369703ns 726992 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41369988ns 726997 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41370272ns 727002 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41370726ns 727010 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41370897ns 727013 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41371181ns 727018 1a110850 fd5ff06f jal x0, -44 +41371465ns 727023 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41371749ns 727028 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41372147ns 727035 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41372318ns 727038 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41372772ns 727046 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41372943ns 727049 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41373227ns 727054 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41373511ns 727059 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41373795ns 727064 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41374250ns 727072 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41374421ns 727075 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41374705ns 727080 1a110850 fd5ff06f jal x0, -44 +41374989ns 727085 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41375273ns 727090 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41375671ns 727097 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41375841ns 727100 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41376296ns 727108 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41376466ns 727111 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41376751ns 727116 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41377035ns 727121 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41377319ns 727126 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41377774ns 727134 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41377944ns 727137 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41378228ns 727142 1a110850 fd5ff06f jal x0, -44 +41378512ns 727147 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41378797ns 727152 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41379194ns 727159 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41379365ns 727162 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41379820ns 727170 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41379990ns 727173 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41380274ns 727178 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41380558ns 727183 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41380843ns 727188 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41381297ns 727196 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41381468ns 727199 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41381752ns 727204 1a110850 fd5ff06f jal x0, -44 +41382036ns 727209 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41382320ns 727214 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41382718ns 727221 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41382888ns 727224 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41383343ns 727232 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41383514ns 727235 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41383798ns 727240 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41384082ns 727245 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41384366ns 727250 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41384821ns 727258 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41384991ns 727261 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41385275ns 727266 1a110850 fd5ff06f jal x0, -44 +41385560ns 727271 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41385844ns 727276 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41386242ns 727283 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41386412ns 727286 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41386867ns 727294 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41387037ns 727297 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41387321ns 727302 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41387606ns 727307 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41387890ns 727312 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41388344ns 727320 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41388515ns 727323 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41388799ns 727328 1a110850 fd5ff06f jal x0, -44 +41389083ns 727333 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41389367ns 727338 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41389765ns 727345 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41389936ns 727348 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41390390ns 727356 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41390561ns 727359 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41390845ns 727364 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41391129ns 727369 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41391413ns 727374 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41391868ns 727382 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41392038ns 727385 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41392323ns 727390 1a110850 fd5ff06f jal x0, -44 +41392607ns 727395 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41392891ns 727400 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41393289ns 727407 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41393459ns 727410 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41393914ns 727418 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41394084ns 727421 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41394369ns 727426 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41394653ns 727431 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41394937ns 727436 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41395392ns 727444 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41395562ns 727447 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41395846ns 727452 1a110850 fd5ff06f jal x0, -44 +41396130ns 727457 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41396415ns 727462 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41396812ns 727469 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41396983ns 727472 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41397437ns 727480 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41397608ns 727483 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41397892ns 727488 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41398176ns 727493 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41398460ns 727498 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41398915ns 727506 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41399086ns 727509 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41399370ns 727514 1a110850 fd5ff06f jal x0, -44 +41399654ns 727519 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41399938ns 727524 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41400336ns 727531 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41400506ns 727534 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41400961ns 727542 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41401132ns 727545 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41401416ns 727550 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41401700ns 727555 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41401984ns 727560 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41402439ns 727568 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41402609ns 727571 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41402893ns 727576 1a110850 fd5ff06f jal x0, -44 +41403178ns 727581 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41403462ns 727586 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41403859ns 727593 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41404030ns 727596 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41404485ns 727604 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41404655ns 727607 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41404939ns 727612 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41405223ns 727617 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41405508ns 727622 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41405962ns 727630 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41406133ns 727633 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41406417ns 727638 1a110850 fd5ff06f jal x0, -44 +41406701ns 727643 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41406985ns 727648 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41407383ns 727655 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41407554ns 727658 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41408008ns 727666 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41408179ns 727669 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41408463ns 727674 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41408747ns 727679 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41409031ns 727684 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41409486ns 727692 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41409656ns 727695 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41409941ns 727700 1a110850 fd5ff06f jal x0, -44 +41410225ns 727705 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41410509ns 727710 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41410907ns 727717 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41411077ns 727720 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41411532ns 727728 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41411702ns 727731 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41411986ns 727736 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41412271ns 727741 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41412555ns 727746 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41413009ns 727754 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41413180ns 727757 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41413464ns 727762 1a110850 fd5ff06f jal x0, -44 +41413748ns 727767 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41414032ns 727772 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41414430ns 727779 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41414601ns 727782 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41415055ns 727790 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41415226ns 727793 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41415510ns 727798 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41415794ns 727803 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41416078ns 727808 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41416533ns 727816 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41416704ns 727819 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41416988ns 727824 1a110850 fd5ff06f jal x0, -44 +41417272ns 727829 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41417556ns 727834 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41417954ns 727841 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41418124ns 727844 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41418579ns 727852 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41418749ns 727855 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41419034ns 727860 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41419318ns 727865 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41419602ns 727870 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41420057ns 727878 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41420227ns 727881 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41420511ns 727886 1a110850 fd5ff06f jal x0, -44 +41420795ns 727891 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41421080ns 727896 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41421477ns 727903 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41421648ns 727906 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41422103ns 727914 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41422273ns 727917 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41422557ns 727922 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41422841ns 727927 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41423126ns 727932 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41423580ns 727940 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41423751ns 727943 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41424035ns 727948 1a110850 fd5ff06f jal x0, -44 +41424319ns 727953 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41424603ns 727958 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41425001ns 727965 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41425171ns 727968 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41425626ns 727976 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41425797ns 727979 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41426081ns 727984 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41426365ns 727989 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41426649ns 727994 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41427104ns 728002 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41427274ns 728005 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41427558ns 728010 1a110850 fd5ff06f jal x0, -44 +41427843ns 728015 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41428127ns 728020 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41428525ns 728027 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41428695ns 728030 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41429150ns 728038 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41429320ns 728041 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41429604ns 728046 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41429889ns 728051 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41430173ns 728056 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41430627ns 728064 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41430798ns 728067 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41431082ns 728072 1a110850 fd5ff06f jal x0, -44 +41431366ns 728077 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41431650ns 728082 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41432048ns 728089 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41432219ns 728092 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41432673ns 728100 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41432844ns 728103 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41433128ns 728108 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41433412ns 728113 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41433696ns 728118 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41434151ns 728126 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41434321ns 728129 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41434606ns 728134 1a110850 fd5ff06f jal x0, -44 +41434890ns 728139 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41435174ns 728144 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41435572ns 728151 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41435742ns 728154 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41436197ns 728162 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41436367ns 728165 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41436652ns 728170 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41436936ns 728175 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41437220ns 728180 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41437675ns 728188 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41437845ns 728191 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41438129ns 728196 1a110850 fd5ff06f jal x0, -44 +41438413ns 728201 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41438698ns 728206 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41439095ns 728213 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41439266ns 728216 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41439720ns 728224 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41439891ns 728227 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41440175ns 728232 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41440459ns 728237 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41440743ns 728242 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41441198ns 728250 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41441369ns 728253 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41441653ns 728258 1a110850 fd5ff06f jal x0, -44 +41441937ns 728263 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41442221ns 728268 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41442619ns 728275 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41442789ns 728278 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41443244ns 728286 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41443415ns 728289 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41443699ns 728294 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41443983ns 728299 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41444267ns 728304 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41444722ns 728312 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41444892ns 728315 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41445176ns 728320 1a110850 fd5ff06f jal x0, -44 +41445461ns 728325 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41445745ns 728330 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41446143ns 728337 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41446313ns 728340 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41446768ns 728348 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41446938ns 728351 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41447222ns 728356 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41447506ns 728361 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41447791ns 728366 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41448245ns 728374 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41448416ns 728377 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41448700ns 728382 1a110850 fd5ff06f jal x0, -44 +41448984ns 728387 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41449268ns 728392 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41449666ns 728399 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41449837ns 728402 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41450291ns 728410 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41450462ns 728413 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41450746ns 728418 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41451030ns 728423 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41451314ns 728428 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41451769ns 728436 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41451939ns 728439 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41452224ns 728444 1a110850 fd5ff06f jal x0, -44 +41452508ns 728449 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41452792ns 728454 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41453190ns 728461 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41453360ns 728464 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41453815ns 728472 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41453985ns 728475 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41454269ns 728480 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41454554ns 728485 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41454838ns 728490 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41455292ns 728498 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41455463ns 728501 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41455747ns 728506 1a110850 fd5ff06f jal x0, -44 +41456031ns 728511 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41456315ns 728516 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41456713ns 728523 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41456884ns 728526 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41457338ns 728534 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41457509ns 728537 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41457793ns 728542 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41458077ns 728547 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41458361ns 728552 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41458816ns 728560 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41458987ns 728563 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41459271ns 728568 1a110850 fd5ff06f jal x0, -44 +41459555ns 728573 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41459839ns 728578 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41460237ns 728585 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41460407ns 728588 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41460862ns 728596 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41461032ns 728599 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41461317ns 728604 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41461601ns 728609 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41461885ns 728614 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41462340ns 728622 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41462510ns 728625 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41462794ns 728630 1a110850 fd5ff06f jal x0, -44 +41463078ns 728635 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41463363ns 728640 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41463760ns 728647 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41463931ns 728650 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41464386ns 728658 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41464556ns 728661 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41464840ns 728666 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41465124ns 728671 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41465409ns 728676 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41465863ns 728684 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41466034ns 728687 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41466318ns 728692 1a110850 fd5ff06f jal x0, -44 +41466602ns 728697 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41466886ns 728702 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41467284ns 728709 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41467455ns 728712 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41467909ns 728720 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41468080ns 728723 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41468364ns 728728 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41468648ns 728733 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41468932ns 728738 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41469387ns 728746 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41469557ns 728749 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41469841ns 728754 1a110850 fd5ff06f jal x0, -44 +41470126ns 728759 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41470410ns 728764 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41470808ns 728771 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41470978ns 728774 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41471433ns 728782 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41471603ns 728785 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41471887ns 728790 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41472172ns 728795 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41472456ns 728800 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41472910ns 728808 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41473081ns 728811 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41473365ns 728816 1a110850 fd5ff06f jal x0, -44 +41473649ns 728821 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41473933ns 728826 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41474331ns 728833 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41474502ns 728836 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41474956ns 728844 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41475127ns 728847 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41475411ns 728852 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41475695ns 728857 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41475979ns 728862 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41476434ns 728870 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41476604ns 728873 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41476889ns 728878 1a110850 fd5ff06f jal x0, -44 +41477173ns 728883 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41477457ns 728888 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41477855ns 728895 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41478025ns 728898 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41478480ns 728906 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41478650ns 728909 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41478935ns 728914 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41479219ns 728919 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41479503ns 728924 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41479958ns 728932 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41480128ns 728935 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41480412ns 728940 1a110850 fd5ff06f jal x0, -44 +41480696ns 728945 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41480981ns 728950 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41481378ns 728957 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41481549ns 728960 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41482003ns 728968 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41482174ns 728971 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41482458ns 728976 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41482742ns 728981 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41483026ns 728986 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41483481ns 728994 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41483652ns 728997 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41483936ns 729002 1a110850 fd5ff06f jal x0, -44 +41484220ns 729007 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41484504ns 729012 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41484902ns 729019 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41485072ns 729022 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41485527ns 729030 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41485698ns 729033 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41485982ns 729038 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41486266ns 729043 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41486550ns 729048 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41487005ns 729056 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41487175ns 729059 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41487459ns 729064 1a110850 fd5ff06f jal x0, -44 +41487744ns 729069 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41488028ns 729074 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41488426ns 729081 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41488596ns 729084 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41489051ns 729092 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41489221ns 729095 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41489505ns 729100 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41489789ns 729105 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41490074ns 729110 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41490528ns 729118 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41490699ns 729121 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41490983ns 729126 1a110850 fd5ff06f jal x0, -44 +41491267ns 729131 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41491551ns 729136 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41491949ns 729143 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41492120ns 729146 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41492574ns 729154 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41492745ns 729157 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41493029ns 729162 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41493313ns 729167 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41493597ns 729172 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41494052ns 729180 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41494222ns 729183 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41494507ns 729188 1a110850 fd5ff06f jal x0, -44 +41494791ns 729193 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41495075ns 729198 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41495473ns 729205 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41495643ns 729208 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41496098ns 729216 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41496268ns 729219 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41496552ns 729224 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41496837ns 729229 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41497121ns 729234 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41497575ns 729242 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41497746ns 729245 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41498030ns 729250 1a110850 fd5ff06f jal x0, -44 +41498314ns 729255 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41498598ns 729260 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41498996ns 729267 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41499167ns 729270 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41499621ns 729278 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41499792ns 729281 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41500076ns 729286 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41500360ns 729291 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41500644ns 729296 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41501099ns 729304 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41501270ns 729307 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41501554ns 729312 1a110850 fd5ff06f jal x0, -44 +41501838ns 729317 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41502122ns 729322 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41502520ns 729329 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41502690ns 729332 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41503145ns 729340 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41503315ns 729343 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41503600ns 729348 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41503884ns 729353 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41504168ns 729358 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41504623ns 729366 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41504793ns 729369 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41505077ns 729374 1a110850 fd5ff06f jal x0, -44 +41505361ns 729379 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41505646ns 729384 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41506043ns 729391 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41506214ns 729394 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41506669ns 729402 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41506839ns 729405 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41507123ns 729410 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41507407ns 729415 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41507692ns 729420 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41508146ns 729428 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41508317ns 729431 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41508601ns 729436 1a110850 fd5ff06f jal x0, -44 +41508885ns 729441 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41509169ns 729446 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41509567ns 729453 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41509738ns 729456 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41510192ns 729464 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41510363ns 729467 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41510647ns 729472 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41510931ns 729477 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41511215ns 729482 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41511670ns 729490 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41511840ns 729493 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41512124ns 729498 1a110850 fd5ff06f jal x0, -44 +41512409ns 729503 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41512693ns 729508 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41513091ns 729515 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41513261ns 729518 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41513716ns 729526 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41513886ns 729529 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41514170ns 729534 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41514455ns 729539 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41514739ns 729544 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41515193ns 729552 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41515364ns 729555 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41515648ns 729560 1a110850 fd5ff06f jal x0, -44 +41515932ns 729565 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41516216ns 729570 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41516614ns 729577 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41516785ns 729580 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41517239ns 729588 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41517410ns 729591 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41517694ns 729596 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41517978ns 729601 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41518262ns 729606 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41518717ns 729614 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41518887ns 729617 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41519172ns 729622 1a110850 fd5ff06f jal x0, -44 +41519456ns 729627 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41519740ns 729632 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41520138ns 729639 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41520308ns 729642 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41520763ns 729650 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41520933ns 729653 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41521218ns 729658 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41521502ns 729663 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41521786ns 729668 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41522241ns 729676 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41522411ns 729679 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41522695ns 729684 1a110850 fd5ff06f jal x0, -44 +41522979ns 729689 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41523264ns 729694 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41523661ns 729701 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41523832ns 729704 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41524287ns 729712 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41524457ns 729715 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41524741ns 729720 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41525025ns 729725 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41525309ns 729730 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41525764ns 729738 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41525935ns 729741 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41526219ns 729746 1a110850 fd5ff06f jal x0, -44 +41526503ns 729751 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41526787ns 729756 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41527185ns 729763 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41527355ns 729766 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41527810ns 729774 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41527981ns 729777 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41528265ns 729782 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41528549ns 729787 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41528833ns 729792 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41529288ns 729800 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41529458ns 729803 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41529742ns 729808 1a110850 fd5ff06f jal x0, -44 +41530027ns 729813 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41530311ns 729818 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41530709ns 729825 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41530879ns 729828 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41531334ns 729836 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41531504ns 729839 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41531788ns 729844 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41532072ns 729849 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41532357ns 729854 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41532811ns 729862 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41532982ns 729865 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41533266ns 729870 1a110850 fd5ff06f jal x0, -44 +41533550ns 729875 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41533834ns 729880 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41534232ns 729887 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41534403ns 729890 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41534857ns 729898 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41535028ns 729901 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41535312ns 729906 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41535596ns 729911 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41535880ns 729916 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41536335ns 729924 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41536505ns 729927 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41536790ns 729932 1a110850 fd5ff06f jal x0, -44 +41537074ns 729937 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41537358ns 729942 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41537756ns 729949 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41537926ns 729952 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41538381ns 729960 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41538551ns 729963 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41538835ns 729968 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41539120ns 729973 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41539404ns 729978 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41539858ns 729986 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41540029ns 729989 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41540313ns 729994 1a110850 fd5ff06f jal x0, -44 +41540597ns 729999 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41540881ns 730004 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41541279ns 730011 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41541450ns 730014 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41541904ns 730022 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41542075ns 730025 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41542359ns 730030 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41542643ns 730035 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41542927ns 730040 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41543382ns 730048 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41543553ns 730051 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41543837ns 730056 1a110850 fd5ff06f jal x0, -44 +41544121ns 730061 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41544405ns 730066 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41544803ns 730073 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41544973ns 730076 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41545428ns 730084 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41545599ns 730087 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41545883ns 730092 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41546167ns 730097 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41546451ns 730102 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41546906ns 730110 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41547076ns 730113 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41547360ns 730118 1a110850 fd5ff06f jal x0, -44 +41547644ns 730123 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41547929ns 730128 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41548326ns 730135 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41548497ns 730138 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41548952ns 730146 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41549122ns 730149 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41549406ns 730154 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41549690ns 730159 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41549975ns 730164 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41550429ns 730172 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41550600ns 730175 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41550884ns 730180 1a110850 fd5ff06f jal x0, -44 +41551168ns 730185 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41551452ns 730190 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41551850ns 730197 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41552021ns 730200 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41552475ns 730208 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41552646ns 730211 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41552930ns 730216 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41553214ns 730221 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41553498ns 730226 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41553953ns 730234 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41554123ns 730237 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41554407ns 730242 1a110850 fd5ff06f jal x0, -44 +41554692ns 730247 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41554976ns 730252 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41555374ns 730259 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41555544ns 730262 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41555999ns 730270 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41556169ns 730273 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41556453ns 730278 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41556738ns 730283 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41557022ns 730288 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41557476ns 730296 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41557647ns 730299 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41557931ns 730304 1a110850 fd5ff06f jal x0, -44 +41558215ns 730309 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41558499ns 730314 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41558897ns 730321 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41559068ns 730324 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41559522ns 730332 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41559693ns 730335 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41559977ns 730340 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41560261ns 730345 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41560545ns 730350 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41561000ns 730358 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41561170ns 730361 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41561455ns 730366 1a110850 fd5ff06f jal x0, -44 +41561739ns 730371 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41562023ns 730376 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41562421ns 730383 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41562591ns 730386 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41563046ns 730394 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41563216ns 730397 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41563501ns 730402 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41563785ns 730407 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41564069ns 730412 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41564524ns 730420 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41564694ns 730423 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41564978ns 730428 1a110850 fd5ff06f jal x0, -44 +41565262ns 730433 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41565547ns 730438 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41565944ns 730445 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41566115ns 730448 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41566570ns 730456 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41566740ns 730459 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41567024ns 730464 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41567308ns 730469 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41567592ns 730474 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41568047ns 730482 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41568218ns 730485 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41568502ns 730490 1a110850 fd5ff06f jal x0, -44 +41568786ns 730495 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41569070ns 730500 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41569468ns 730507 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41569638ns 730510 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41570093ns 730518 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41570264ns 730521 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41570548ns 730526 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41570832ns 730531 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41571116ns 730536 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41571571ns 730544 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41571741ns 730547 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41572025ns 730552 1a110850 fd5ff06f jal x0, -44 +41572310ns 730557 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41572594ns 730562 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41572992ns 730569 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41573162ns 730572 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41573617ns 730580 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41573787ns 730583 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41574071ns 730588 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41574355ns 730593 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41574640ns 730598 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41575094ns 730606 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41575265ns 730609 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41575549ns 730614 1a110850 fd5ff06f jal x0, -44 +41575833ns 730619 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41576117ns 730624 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41576515ns 730631 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41576686ns 730634 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41577140ns 730642 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41577311ns 730645 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41577595ns 730650 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41577879ns 730655 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41578163ns 730660 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41578618ns 730668 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41578788ns 730671 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41579073ns 730676 1a110850 fd5ff06f jal x0, -44 +41579357ns 730681 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41579641ns 730686 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41580039ns 730693 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41580209ns 730696 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41580664ns 730704 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41580834ns 730707 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41581119ns 730712 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41581403ns 730717 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41581687ns 730722 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41582141ns 730730 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41582312ns 730733 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41582596ns 730738 1a110850 fd5ff06f jal x0, -44 +41582880ns 730743 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41583164ns 730748 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41583562ns 730755 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41583733ns 730758 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41584187ns 730766 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41584358ns 730769 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41584642ns 730774 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41584926ns 730779 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41585210ns 730784 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41585665ns 730792 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41585836ns 730795 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41586120ns 730800 1a110850 fd5ff06f jal x0, -44 +41586404ns 730805 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41586688ns 730810 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41587086ns 730817 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41587256ns 730820 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41587711ns 730828 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41587882ns 730831 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41588166ns 730836 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41588450ns 730841 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41588734ns 730846 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41589189ns 730854 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41589359ns 730857 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41589643ns 730862 1a110850 fd5ff06f jal x0, -44 +41589927ns 730867 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41590212ns 730872 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41590609ns 730879 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41590780ns 730882 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41591235ns 730890 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41591405ns 730893 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41591689ns 730898 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41591973ns 730903 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41592258ns 730908 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41592712ns 730916 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41592883ns 730919 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41593167ns 730924 1a110850 fd5ff06f jal x0, -44 +41593451ns 730929 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41593735ns 730934 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41594133ns 730941 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41594304ns 730944 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41594758ns 730952 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41594929ns 730955 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41595213ns 730960 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41595497ns 730965 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41595781ns 730970 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41596236ns 730978 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41596406ns 730981 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41596690ns 730986 1a110850 fd5ff06f jal x0, -44 +41596975ns 730991 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41597259ns 730996 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41597657ns 731003 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41597827ns 731006 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41598282ns 731014 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41598452ns 731017 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41598736ns 731022 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41599021ns 731027 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41599305ns 731032 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41599759ns 731040 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41599930ns 731043 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41600214ns 731048 1a110850 fd5ff06f jal x0, -44 +41600498ns 731053 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41600782ns 731058 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41601180ns 731065 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41601351ns 731068 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41601805ns 731076 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41601976ns 731079 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41602260ns 731084 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41602544ns 731089 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41602828ns 731094 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41603283ns 731102 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41603453ns 731105 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41603738ns 731110 1a110850 fd5ff06f jal x0, -44 +41604022ns 731115 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41604306ns 731120 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41604704ns 731127 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41604874ns 731130 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41605329ns 731138 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41605499ns 731141 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41605784ns 731146 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41606068ns 731151 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41606352ns 731156 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41606807ns 731164 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41606977ns 731167 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41607261ns 731172 1a110850 fd5ff06f jal x0, -44 +41607545ns 731177 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41607830ns 731182 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41608227ns 731189 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41608398ns 731192 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41608853ns 731200 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41609023ns 731203 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41609307ns 731208 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41609591ns 731213 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41609875ns 731218 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41610330ns 731226 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41610501ns 731229 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41610785ns 731234 1a110850 fd5ff06f jal x0, -44 +41611069ns 731239 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41611353ns 731244 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41611751ns 731251 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41611921ns 731254 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41612376ns 731262 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41612547ns 731265 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41612831ns 731270 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41613115ns 731275 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41613399ns 731280 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41613854ns 731288 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41614024ns 731291 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41614308ns 731296 1a110850 fd5ff06f jal x0, -44 +41614593ns 731301 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41614877ns 731306 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41615275ns 731313 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41615445ns 731316 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41615900ns 731324 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41616070ns 731327 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41616354ns 731332 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41616639ns 731337 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41616923ns 731342 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41617377ns 731350 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41617548ns 731353 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41617832ns 731358 1a110850 fd5ff06f jal x0, -44 +41618116ns 731363 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41618400ns 731368 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41618798ns 731375 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41618969ns 731378 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41619423ns 731386 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41619594ns 731389 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41619878ns 731394 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41620162ns 731399 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41620446ns 731404 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41620901ns 731412 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41621071ns 731415 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41621356ns 731420 1a110850 fd5ff06f jal x0, -44 +41621640ns 731425 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41621924ns 731430 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41622322ns 731437 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41622492ns 731440 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41622947ns 731448 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41623117ns 731451 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41623402ns 731456 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41623686ns 731461 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41623970ns 731466 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41624424ns 731474 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41624595ns 731477 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41624879ns 731482 1a110850 fd5ff06f jal x0, -44 +41625163ns 731487 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41625447ns 731492 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41625845ns 731499 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41626016ns 731502 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41626470ns 731510 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41626641ns 731513 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41626925ns 731518 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41627209ns 731523 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41627493ns 731528 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41627948ns 731536 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41628119ns 731539 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41628403ns 731544 1a110850 fd5ff06f jal x0, -44 +41628687ns 731549 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41628971ns 731554 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41629369ns 731561 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41629539ns 731564 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41629994ns 731572 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41630165ns 731575 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41630449ns 731580 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41630733ns 731585 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41631017ns 731590 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41631472ns 731598 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41631642ns 731601 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41631926ns 731606 1a110850 fd5ff06f jal x0, -44 +41632210ns 731611 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41632495ns 731616 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41632892ns 731623 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41633063ns 731626 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41633518ns 731634 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41633688ns 731637 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41633972ns 731642 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41634256ns 731647 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41634541ns 731652 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41634995ns 731660 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41635166ns 731663 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41635450ns 731668 1a110850 fd5ff06f jal x0, -44 +41635734ns 731673 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41636018ns 731678 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41636416ns 731685 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41636587ns 731688 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41637041ns 731696 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41637212ns 731699 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41637496ns 731704 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41637780ns 731709 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41638064ns 731714 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41638519ns 731722 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41638689ns 731725 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41638973ns 731730 1a110850 fd5ff06f jal x0, -44 +41639258ns 731735 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41639542ns 731740 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41639940ns 731747 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41640110ns 731750 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41640565ns 731758 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41640735ns 731761 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41641019ns 731766 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41641304ns 731771 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41641588ns 731776 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41642042ns 731784 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41642213ns 731787 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41642497ns 731792 1a110850 fd5ff06f jal x0, -44 +41642781ns 731797 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41643065ns 731802 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41643463ns 731809 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41643634ns 731812 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41644088ns 731820 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41644259ns 731823 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41644543ns 731828 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41644827ns 731833 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41645111ns 731838 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41645566ns 731846 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41645736ns 731849 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41646021ns 731854 1a110850 fd5ff06f jal x0, -44 +41646305ns 731859 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41646589ns 731864 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41646987ns 731871 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41647157ns 731874 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41647612ns 731882 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41647782ns 731885 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41648067ns 731890 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41648351ns 731895 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41648635ns 731900 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41649090ns 731908 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41649260ns 731911 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41649544ns 731916 1a110850 fd5ff06f jal x0, -44 +41649828ns 731921 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41650113ns 731926 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41650510ns 731933 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41650681ns 731936 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41651136ns 731944 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41651306ns 731947 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41651590ns 731952 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41651874ns 731957 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41652159ns 731962 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41652613ns 731970 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41652784ns 731973 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41653068ns 731978 1a110850 fd5ff06f jal x0, -44 +41653352ns 731983 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41653636ns 731988 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41654034ns 731995 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41654204ns 731998 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41654659ns 732006 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41654830ns 732009 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41655114ns 732014 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41655398ns 732019 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41655682ns 732024 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41656137ns 732032 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41656307ns 732035 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41656591ns 732040 1a110850 fd5ff06f jal x0, -44 +41656876ns 732045 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41657160ns 732050 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41657558ns 732057 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41657728ns 732060 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41658183ns 732068 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41658353ns 732071 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41658637ns 732076 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41658922ns 732081 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41659206ns 732086 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41659660ns 732094 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41659831ns 732097 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41660115ns 732102 1a110850 fd5ff06f jal x0, -44 +41660399ns 732107 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41660683ns 732112 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41661081ns 732119 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41661252ns 732122 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41661706ns 732130 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41661877ns 732133 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41662161ns 732138 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41662445ns 732143 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41662729ns 732148 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41663184ns 732156 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41663354ns 732159 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41663639ns 732164 1a110850 fd5ff06f jal x0, -44 +41663923ns 732169 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41664207ns 732174 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41664605ns 732181 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41664775ns 732184 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41665230ns 732192 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41665400ns 732195 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41665685ns 732200 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41665969ns 732205 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41666253ns 732210 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41666707ns 732218 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41666878ns 732221 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41667162ns 732226 1a110850 fd5ff06f jal x0, -44 +41667446ns 732231 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41667730ns 732236 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41668128ns 732243 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41668299ns 732246 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41668753ns 732254 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41668924ns 732257 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41669208ns 732262 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41669492ns 732267 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41669776ns 732272 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41670231ns 732280 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41670402ns 732283 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41670686ns 732288 1a110850 fd5ff06f jal x0, -44 +41670970ns 732293 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41671254ns 732298 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41671652ns 732305 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41671822ns 732308 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41672277ns 732316 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41672448ns 732319 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41672732ns 732324 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41673016ns 732329 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41673300ns 732334 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41673755ns 732342 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41673925ns 732345 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41674209ns 732350 1a110850 fd5ff06f jal x0, -44 +41674493ns 732355 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41674778ns 732360 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41675175ns 732367 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41675346ns 732370 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41675801ns 732378 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41675971ns 732381 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41676255ns 732386 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41676539ns 732391 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41676824ns 732396 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41677278ns 732404 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41677449ns 732407 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41677733ns 732412 1a110850 fd5ff06f jal x0, -44 +41678017ns 732417 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41678301ns 732422 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41678699ns 732429 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41678870ns 732432 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41679324ns 732440 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41679495ns 732443 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41679779ns 732448 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41680063ns 732453 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41680347ns 732458 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41680802ns 732466 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41680972ns 732469 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41681256ns 732474 1a110850 fd5ff06f jal x0, -44 +41681541ns 732479 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41681825ns 732484 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41682223ns 732491 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41682393ns 732494 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41682848ns 732502 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41683018ns 732505 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41683302ns 732510 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41683587ns 732515 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41683871ns 732520 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41684325ns 732528 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41684496ns 732531 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41684780ns 732536 1a110850 fd5ff06f jal x0, -44 +41685064ns 732541 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41685348ns 732546 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41685746ns 732553 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41685917ns 732556 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41686371ns 732564 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41686542ns 732567 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41686826ns 732572 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41687110ns 732577 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41687394ns 732582 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41687849ns 732590 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41688019ns 732593 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41688304ns 732598 1a110850 fd5ff06f jal x0, -44 +41688588ns 732603 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41688872ns 732608 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41689270ns 732615 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41689440ns 732618 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41689895ns 732626 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41690065ns 732629 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41690350ns 732634 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41690634ns 732639 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41690918ns 732644 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41691373ns 732652 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41691543ns 732655 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41691827ns 732660 1a110850 fd5ff06f jal x0, -44 +41692111ns 732665 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41692396ns 732670 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41692793ns 732677 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41692964ns 732680 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41693419ns 732688 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41693589ns 732691 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41693873ns 732696 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41694157ns 732701 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41694442ns 732706 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41694896ns 732714 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41695067ns 732717 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41695351ns 732722 1a110850 fd5ff06f jal x0, -44 +41695635ns 732727 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41695919ns 732732 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41696317ns 732739 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41696487ns 732742 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41696942ns 732750 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41697113ns 732753 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41697397ns 732758 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41697681ns 732763 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41697965ns 732768 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41698420ns 732776 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41698590ns 732779 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41698874ns 732784 1a110850 fd5ff06f jal x0, -44 +41699159ns 732789 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41699443ns 732794 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41699841ns 732801 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41700011ns 732804 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41700466ns 732812 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41700636ns 732815 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41700920ns 732820 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41701205ns 732825 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41701489ns 732830 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41701943ns 732838 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41702114ns 732841 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41702398ns 732846 1a110850 fd5ff06f jal x0, -44 +41702682ns 732851 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41702966ns 732856 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41703364ns 732863 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41703535ns 732866 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41703989ns 732874 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41704160ns 732877 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41704444ns 732882 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41704728ns 732887 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41705012ns 732892 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41705467ns 732900 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41705637ns 732903 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41705922ns 732908 1a110850 fd5ff06f jal x0, -44 +41706206ns 732913 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41706490ns 732918 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41706888ns 732925 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41707058ns 732928 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41707513ns 732936 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41707683ns 732939 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41707968ns 732944 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41708252ns 732949 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41708536ns 732954 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41708991ns 732962 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41709161ns 732965 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41709445ns 732970 1a110850 fd5ff06f jal x0, -44 +41709729ns 732975 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41710013ns 732980 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41710411ns 732987 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41710582ns 732990 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41711036ns 732998 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41711207ns 733001 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41711491ns 733006 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41711775ns 733011 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41712059ns 733016 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41712514ns 733024 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41712685ns 733027 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41712969ns 733032 1a110850 fd5ff06f jal x0, -44 +41713253ns 733037 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41713537ns 733042 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41713935ns 733049 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41714105ns 733052 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41714560ns 733060 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41714731ns 733063 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41715015ns 733068 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41715299ns 733073 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41715583ns 733078 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41716038ns 733086 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41716208ns 733089 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41716492ns 733094 1a110850 fd5ff06f jal x0, -44 +41716776ns 733099 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41717061ns 733104 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41717458ns 733111 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41717629ns 733114 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41718084ns 733122 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41718254ns 733125 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41718538ns 733130 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41718822ns 733135 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41719107ns 733140 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41719561ns 733148 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41719732ns 733151 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41720016ns 733156 1a110850 fd5ff06f jal x0, -44 +41720300ns 733161 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41720584ns 733166 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41720982ns 733173 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41721153ns 733176 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41721607ns 733184 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41721778ns 733187 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41722062ns 733192 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41722346ns 733197 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41722630ns 733202 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41723085ns 733210 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41723255ns 733213 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41723539ns 733218 1a110850 fd5ff06f jal x0, -44 +41723824ns 733223 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41724108ns 733228 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41724506ns 733235 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41724676ns 733238 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41725131ns 733246 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41725301ns 733249 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41725585ns 733254 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41725870ns 733259 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41726154ns 733264 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41726608ns 733272 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41726779ns 733275 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41727063ns 733280 1a110850 fd5ff06f jal x0, -44 +41727347ns 733285 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41727631ns 733290 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41728029ns 733297 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41728200ns 733300 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41728654ns 733308 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41728825ns 733311 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41729109ns 733316 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41729393ns 733321 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41729677ns 733326 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41730132ns 733334 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41730303ns 733337 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41730587ns 733342 1a110850 fd5ff06f jal x0, -44 +41730871ns 733347 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41731155ns 733352 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41731553ns 733359 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41731723ns 733362 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41732178ns 733370 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41732348ns 733373 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41732633ns 733378 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41732917ns 733383 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41733201ns 733388 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41733656ns 733396 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41733826ns 733399 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41734110ns 733404 1a110850 fd5ff06f jal x0, -44 +41734394ns 733409 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41734679ns 733414 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41735076ns 733421 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41735247ns 733424 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41735702ns 733432 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41735872ns 733435 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41736156ns 733440 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41736440ns 733445 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41736725ns 733450 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41737179ns 733458 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41737350ns 733461 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41737634ns 733466 1a110850 fd5ff06f jal x0, -44 +41737918ns 733471 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41738202ns 733476 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41738600ns 733483 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41738770ns 733486 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41739225ns 733494 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41739396ns 733497 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41739680ns 733502 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41739964ns 733507 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41740248ns 733512 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41740703ns 733520 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41740873ns 733523 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41741157ns 733528 1a110850 fd5ff06f jal x0, -44 +41741442ns 733533 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41741726ns 733538 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41742124ns 733545 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41742294ns 733548 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41742749ns 733556 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41742919ns 733559 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41743203ns 733564 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41743488ns 733569 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41743772ns 733574 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41744226ns 733582 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41744397ns 733585 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41744681ns 733590 1a110850 fd5ff06f jal x0, -44 +41744965ns 733595 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41745249ns 733600 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41745647ns 733607 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41745818ns 733610 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41746272ns 733618 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41746443ns 733621 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41746727ns 733626 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41747011ns 733631 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41747295ns 733636 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41747750ns 733644 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41747920ns 733647 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41748205ns 733652 1a110850 fd5ff06f jal x0, -44 +41748489ns 733657 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41748773ns 733662 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41749171ns 733669 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41749341ns 733672 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41749796ns 733680 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41749966ns 733683 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41750251ns 733688 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41750535ns 733693 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41750819ns 733698 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41751274ns 733706 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41751444ns 733709 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41751728ns 733714 1a110850 fd5ff06f jal x0, -44 +41752012ns 733719 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41752296ns 733724 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41752694ns 733731 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41752865ns 733734 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41753319ns 733742 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41753490ns 733745 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41753774ns 733750 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41754058ns 733755 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41754342ns 733760 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41754797ns 733768 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41754968ns 733771 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41755252ns 733776 1a110850 fd5ff06f jal x0, -44 +41755536ns 733781 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41755820ns 733786 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41756218ns 733793 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41756388ns 733796 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41756843ns 733804 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41757014ns 733807 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41757298ns 733812 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41757582ns 733817 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41757866ns 733822 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41758321ns 733830 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41758491ns 733833 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41758775ns 733838 1a110850 fd5ff06f jal x0, -44 +41759059ns 733843 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41759344ns 733848 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41759741ns 733855 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41759912ns 733858 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41760367ns 733866 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41760537ns 733869 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41760821ns 733874 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41761105ns 733879 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41761390ns 733884 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41761844ns 733892 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41762015ns 733895 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41762299ns 733900 1a110850 fd5ff06f jal x0, -44 +41762583ns 733905 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41762867ns 733910 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41763265ns 733917 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41763436ns 733920 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41763890ns 733928 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41764061ns 733931 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41764345ns 733936 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41764629ns 733941 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41764913ns 733946 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41765368ns 733954 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41765538ns 733957 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41765823ns 733962 1a110850 fd5ff06f jal x0, -44 +41766107ns 733967 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41766391ns 733972 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41766789ns 733979 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41766959ns 733982 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41767414ns 733990 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41767584ns 733993 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41767868ns 733998 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41768153ns 734003 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41768437ns 734008 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41768891ns 734016 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41769062ns 734019 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41769346ns 734024 1a110850 fd5ff06f jal x0, -44 +41769630ns 734029 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41769914ns 734034 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41770312ns 734041 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41770483ns 734044 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41770937ns 734052 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41771108ns 734055 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41771392ns 734060 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41771676ns 734065 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41771960ns 734070 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41772415ns 734078 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41772586ns 734081 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41772870ns 734086 1a110850 fd5ff06f jal x0, -44 +41773154ns 734091 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41773438ns 734096 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41773836ns 734103 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41774006ns 734106 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41774461ns 734114 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41774631ns 734117 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41774916ns 734122 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41775200ns 734127 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41775484ns 734132 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41775939ns 734140 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41776109ns 734143 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41776393ns 734148 1a110850 fd5ff06f jal x0, -44 +41776677ns 734153 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41776962ns 734158 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41777359ns 734165 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41777530ns 734168 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41777985ns 734176 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41778155ns 734179 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41778439ns 734184 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41778723ns 734189 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41779008ns 734194 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41779462ns 734202 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41779633ns 734205 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41779917ns 734210 1a110850 fd5ff06f jal x0, -44 +41780201ns 734215 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41780485ns 734220 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41780883ns 734227 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41781053ns 734230 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41781508ns 734238 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41781679ns 734241 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41781963ns 734246 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41782247ns 734251 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41782531ns 734256 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41782986ns 734264 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41783156ns 734267 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41783440ns 734272 1a110850 fd5ff06f jal x0, -44 +41783725ns 734277 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41784009ns 734282 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41784407ns 734289 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41784577ns 734292 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41785032ns 734300 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41785202ns 734303 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41785486ns 734308 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41785771ns 734313 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41786055ns 734318 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41786509ns 734326 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41786680ns 734329 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41786964ns 734334 1a110850 fd5ff06f jal x0, -44 +41787248ns 734339 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41787532ns 734344 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41787930ns 734351 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41788101ns 734354 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41788555ns 734362 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41788726ns 734365 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41789010ns 734370 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41789294ns 734375 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41789578ns 734380 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41790033ns 734388 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41790203ns 734391 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41790488ns 734396 1a110850 fd5ff06f jal x0, -44 +41790772ns 734401 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41791056ns 734406 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41791454ns 734413 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41791624ns 734416 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41792079ns 734424 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41792249ns 734427 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41792534ns 734432 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41792818ns 734437 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41793102ns 734442 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41793557ns 734450 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41793727ns 734453 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41794011ns 734458 1a110850 fd5ff06f jal x0, -44 +41794295ns 734463 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41794579ns 734468 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41794977ns 734475 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41795148ns 734478 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41795602ns 734486 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41795773ns 734489 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41796057ns 734494 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41796341ns 734499 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41796625ns 734504 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41797080ns 734512 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41797251ns 734515 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41797535ns 734520 1a110850 fd5ff06f jal x0, -44 +41797819ns 734525 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41798103ns 734530 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41798501ns 734537 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41798671ns 734540 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41799126ns 734548 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41799297ns 734551 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41799581ns 734556 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41799865ns 734561 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41800149ns 734566 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41800604ns 734574 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41800774ns 734577 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41801058ns 734582 1a110850 fd5ff06f jal x0, -44 +41801343ns 734587 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41801627ns 734592 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41802024ns 734599 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41802195ns 734602 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41802650ns 734610 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41802820ns 734613 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41803104ns 734618 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41803388ns 734623 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41803673ns 734628 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41804127ns 734636 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41804298ns 734639 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41804582ns 734644 1a110850 fd5ff06f jal x0, -44 +41804866ns 734649 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41805150ns 734654 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41805548ns 734661 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41805719ns 734664 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41806173ns 734672 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41806344ns 734675 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41806628ns 734680 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41806912ns 734685 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41807196ns 734690 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41807651ns 734698 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41807821ns 734701 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41808106ns 734706 1a110850 fd5ff06f jal x0, -44 +41808390ns 734711 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41808674ns 734716 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41809072ns 734723 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41809242ns 734726 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41809697ns 734734 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41809867ns 734737 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41810151ns 734742 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41810436ns 734747 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41810720ns 734752 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41811174ns 734760 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41811345ns 734763 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41811629ns 734768 1a110850 fd5ff06f jal x0, -44 +41811913ns 734773 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41812197ns 734778 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41812595ns 734785 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41812766ns 734788 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41813220ns 734796 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41813391ns 734799 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41813675ns 734804 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41813959ns 734809 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41814243ns 734814 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41814698ns 734822 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41814869ns 734825 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41815153ns 734830 1a110850 fd5ff06f jal x0, -44 +41815437ns 734835 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41815721ns 734840 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41816119ns 734847 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41816289ns 734850 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41816744ns 734858 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41816914ns 734861 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41817199ns 734866 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41817483ns 734871 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41817767ns 734876 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41818222ns 734884 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41818392ns 734887 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41818676ns 734892 1a110850 fd5ff06f jal x0, -44 +41818960ns 734897 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41819245ns 734902 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41819642ns 734909 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41819813ns 734912 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41820268ns 734920 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41820438ns 734923 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41820722ns 734928 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41821006ns 734933 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41821291ns 734938 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41821745ns 734946 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41821916ns 734949 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41822200ns 734954 1a110850 fd5ff06f jal x0, -44 +41822484ns 734959 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41822768ns 734964 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41823166ns 734971 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41823336ns 734974 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41823791ns 734982 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41823962ns 734985 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41824246ns 734990 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41824530ns 734995 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41824814ns 735000 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41825269ns 735008 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41825439ns 735011 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41825723ns 735016 1a110850 fd5ff06f jal x0, -44 +41826008ns 735021 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41826292ns 735026 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41826690ns 735033 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41826860ns 735036 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41827315ns 735044 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41827485ns 735047 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41827769ns 735052 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41828054ns 735057 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41828338ns 735062 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41828792ns 735070 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41828963ns 735073 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41829247ns 735078 1a110850 fd5ff06f jal x0, -44 +41829531ns 735083 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41829815ns 735088 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41830213ns 735095 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41830384ns 735098 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41830838ns 735106 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41831009ns 735109 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41831293ns 735114 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41831577ns 735119 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41831861ns 735124 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41832316ns 735132 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41832486ns 735135 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41832771ns 735140 1a110850 fd5ff06f jal x0, -44 +41833055ns 735145 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41833339ns 735150 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41833737ns 735157 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41833907ns 735160 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41834362ns 735168 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41834532ns 735171 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41834817ns 735176 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41835101ns 735181 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41835385ns 735186 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41835840ns 735194 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41836010ns 735197 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41836294ns 735202 1a110850 fd5ff06f jal x0, -44 +41836578ns 735207 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41836863ns 735212 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41837260ns 735219 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41837431ns 735222 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41837885ns 735230 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41838056ns 735233 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41838340ns 735238 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41838624ns 735243 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41838908ns 735248 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41839363ns 735256 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41839534ns 735259 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41839818ns 735264 1a110850 fd5ff06f jal x0, -44 +41840102ns 735269 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41840386ns 735274 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41840784ns 735281 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41840954ns 735284 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41841409ns 735292 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41841580ns 735295 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41841864ns 735300 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41842148ns 735305 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41842432ns 735310 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41842887ns 735318 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41843057ns 735321 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41843341ns 735326 1a110850 fd5ff06f jal x0, -44 +41843626ns 735331 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41843910ns 735336 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41844307ns 735343 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41844478ns 735346 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41844933ns 735354 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41845103ns 735357 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41845387ns 735362 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41845671ns 735367 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41845956ns 735372 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41846410ns 735380 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41846581ns 735383 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41846865ns 735388 1a110850 fd5ff06f jal x0, -44 +41847149ns 735393 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41847433ns 735398 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41847831ns 735405 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41848002ns 735408 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41848456ns 735416 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41848627ns 735419 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41848911ns 735424 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41849195ns 735429 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41849479ns 735434 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41849934ns 735442 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41850104ns 735445 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41850389ns 735450 1a110850 fd5ff06f jal x0, -44 +41850673ns 735455 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41850957ns 735460 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41851355ns 735467 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41851525ns 735470 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41851980ns 735478 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41852150ns 735481 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41852434ns 735486 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41852719ns 735491 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41853003ns 735496 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41853457ns 735504 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41853628ns 735507 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41853912ns 735512 1a110850 fd5ff06f jal x0, -44 +41854196ns 735517 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41854480ns 735522 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41854878ns 735529 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41855049ns 735532 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41855503ns 735540 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41855674ns 735543 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41855958ns 735548 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41856242ns 735553 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41856526ns 735558 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41856981ns 735566 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41857152ns 735569 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41857436ns 735574 1a110850 fd5ff06f jal x0, -44 +41857720ns 735579 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41858004ns 735584 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41858402ns 735591 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41858572ns 735594 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41859027ns 735602 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41859197ns 735605 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41859482ns 735610 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41859766ns 735615 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41860050ns 735620 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41860505ns 735628 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41860675ns 735631 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41860959ns 735636 1a110850 fd5ff06f jal x0, -44 +41861243ns 735641 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41861528ns 735646 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41861925ns 735653 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41862096ns 735656 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41862551ns 735664 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41862721ns 735667 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41863005ns 735672 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41863289ns 735677 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41863574ns 735682 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41864028ns 735690 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41864199ns 735693 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41864483ns 735698 1a110850 fd5ff06f jal x0, -44 +41864767ns 735703 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41865051ns 735708 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41865449ns 735715 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41865619ns 735718 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41866074ns 735726 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41866245ns 735729 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41866529ns 735734 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41866813ns 735739 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41867097ns 735744 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41867552ns 735752 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41867722ns 735755 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41868006ns 735760 1a110850 fd5ff06f jal x0, -44 +41868291ns 735765 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41868575ns 735770 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41868973ns 735777 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41869143ns 735780 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41869598ns 735788 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41869768ns 735791 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41870052ns 735796 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41870337ns 735801 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41870621ns 735806 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41871075ns 735814 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41871246ns 735817 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41871530ns 735822 1a110850 fd5ff06f jal x0, -44 +41871814ns 735827 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41872098ns 735832 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41872496ns 735839 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41872667ns 735842 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41873121ns 735850 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41873292ns 735853 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41873576ns 735858 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41873860ns 735863 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41874144ns 735868 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41874599ns 735876 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41874769ns 735879 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41875054ns 735884 1a110850 fd5ff06f jal x0, -44 +41875338ns 735889 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41875622ns 735894 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41876020ns 735901 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41876190ns 735904 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41876645ns 735912 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41876815ns 735915 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41877100ns 735920 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41877384ns 735925 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41877668ns 735930 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41878123ns 735938 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41878293ns 735941 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41878577ns 735946 1a110850 fd5ff06f jal x0, -44 +41878861ns 735951 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41879146ns 735956 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41879543ns 735963 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41879714ns 735966 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41880168ns 735974 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41880339ns 735977 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41880623ns 735982 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41880907ns 735987 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41881191ns 735992 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41881646ns 736000 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41881817ns 736003 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41882101ns 736008 1a110850 fd5ff06f jal x0, -44 +41882385ns 736013 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41882669ns 736018 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41883067ns 736025 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41883237ns 736028 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41883692ns 736036 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41883863ns 736039 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41884147ns 736044 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41884431ns 736049 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41884715ns 736054 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41885170ns 736062 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41885340ns 736065 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41885624ns 736070 1a110850 fd5ff06f jal x0, -44 +41885909ns 736075 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41886193ns 736080 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41886591ns 736087 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41886761ns 736090 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41887216ns 736098 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41887386ns 736101 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41887670ns 736106 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41887954ns 736111 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41888239ns 736116 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41888693ns 736124 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41888864ns 736127 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41889148ns 736132 1a110850 fd5ff06f jal x0, -44 +41889432ns 736137 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41889716ns 736142 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41890114ns 736149 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41890285ns 736152 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41890739ns 736160 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41890910ns 736163 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41891194ns 736168 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41891478ns 736173 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41891762ns 736178 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41892217ns 736186 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41892387ns 736189 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41892672ns 736194 1a110850 fd5ff06f jal x0, -44 +41892956ns 736199 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41893240ns 736204 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41893638ns 736211 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41893808ns 736214 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41894263ns 736222 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41894433ns 736225 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41894717ns 736230 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41895002ns 736235 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41895286ns 736240 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41895740ns 736248 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41895911ns 736251 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41896195ns 736256 1a110850 fd5ff06f jal x0, -44 +41896479ns 736261 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41896763ns 736266 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41897161ns 736273 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41897332ns 736276 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41897786ns 736284 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41897957ns 736287 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41898241ns 736292 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41898525ns 736297 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41898809ns 736302 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41899264ns 736310 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41899435ns 736313 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41899719ns 736318 1a110850 fd5ff06f jal x0, -44 +41900003ns 736323 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41900287ns 736328 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41900685ns 736335 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41900855ns 736338 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41901310ns 736346 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41901480ns 736349 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41901765ns 736354 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41902049ns 736359 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41902333ns 736364 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41902788ns 736372 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41902958ns 736375 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41903242ns 736380 1a110850 fd5ff06f jal x0, -44 +41903526ns 736385 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41903811ns 736390 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41904208ns 736397 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41904379ns 736400 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41904834ns 736408 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41905004ns 736411 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41905288ns 736416 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41905572ns 736421 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41905857ns 736426 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41906311ns 736434 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41906482ns 736437 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41906766ns 736442 1a110850 fd5ff06f jal x0, -44 +41907050ns 736447 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41907334ns 736452 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41907732ns 736459 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41907903ns 736462 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41908357ns 736470 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41908528ns 736473 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41908812ns 736478 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41909096ns 736483 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41909380ns 736488 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41909835ns 736496 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41910005ns 736499 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41910289ns 736504 1a110850 fd5ff06f jal x0, -44 +41910574ns 736509 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41910858ns 736514 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41911256ns 736521 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41911426ns 736524 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41911881ns 736532 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41912051ns 736535 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41912335ns 736540 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41912620ns 736545 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41912904ns 736550 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41913358ns 736558 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41913529ns 736561 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41913813ns 736566 1a110850 fd5ff06f jal x0, -44 +41914097ns 736571 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41914381ns 736576 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41914779ns 736583 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41914950ns 736586 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41915404ns 736594 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41915575ns 736597 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41915859ns 736602 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41916143ns 736607 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41916427ns 736612 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41916882ns 736620 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41917052ns 736623 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41917337ns 736628 1a110850 fd5ff06f jal x0, -44 +41917621ns 736633 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41917905ns 736638 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41918303ns 736645 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41918473ns 736648 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41918928ns 736656 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41919098ns 736659 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41919383ns 736664 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41919667ns 736669 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41919951ns 736674 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41920406ns 736682 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41920576ns 736685 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41920860ns 736690 1a110850 fd5ff06f jal x0, -44 +41921144ns 736695 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41921429ns 736700 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41921826ns 736707 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41921997ns 736710 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41922451ns 736718 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41922622ns 736721 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41922906ns 736726 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41923190ns 736731 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41923474ns 736736 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41923929ns 736744 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41924100ns 736747 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41924384ns 736752 1a110850 fd5ff06f jal x0, -44 +41924668ns 736757 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41924952ns 736762 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41925350ns 736769 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41925520ns 736772 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41925975ns 736780 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41926146ns 736783 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41926430ns 736788 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41926714ns 736793 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41926998ns 736798 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41927453ns 736806 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41927623ns 736809 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41927907ns 736814 1a110850 fd5ff06f jal x0, -44 +41928192ns 736819 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41928476ns 736824 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41928874ns 736831 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41929044ns 736834 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41929499ns 736842 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41929669ns 736845 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41929953ns 736850 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41930237ns 736855 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41930522ns 736860 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41930976ns 736868 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41931147ns 736871 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41931431ns 736876 1a110850 fd5ff06f jal x0, -44 +41931715ns 736881 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41931999ns 736886 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41932397ns 736893 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41932568ns 736896 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41933022ns 736904 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41933193ns 736907 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41933477ns 736912 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41933761ns 736917 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41934045ns 736922 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41934500ns 736930 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41934670ns 736933 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41934955ns 736938 1a110850 fd5ff06f jal x0, -44 +41935239ns 736943 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41935523ns 736948 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41935921ns 736955 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41936091ns 736958 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41936546ns 736966 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41936716ns 736969 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41937000ns 736974 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41937285ns 736979 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41937569ns 736984 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41938023ns 736992 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41938194ns 736995 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41938478ns 737000 1a110850 fd5ff06f jal x0, -44 +41938762ns 737005 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41939046ns 737010 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41939444ns 737017 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41939615ns 737020 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41940069ns 737028 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41940240ns 737031 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41940524ns 737036 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41940808ns 737041 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41941092ns 737046 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41941547ns 737054 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41941718ns 737057 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41942002ns 737062 1a110850 fd5ff06f jal x0, -44 +41942286ns 737067 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41942570ns 737072 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41942968ns 737079 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41943138ns 737082 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41943593ns 737090 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41943763ns 737093 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41944048ns 737098 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41944332ns 737103 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41944616ns 737108 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41945071ns 737116 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41945241ns 737119 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41945525ns 737124 1a110850 fd5ff06f jal x0, -44 +41945809ns 737129 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41946094ns 737134 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41946491ns 737141 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41946662ns 737144 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41947117ns 737152 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41947287ns 737155 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41947571ns 737160 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41947855ns 737165 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41948140ns 737170 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41948594ns 737178 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41948765ns 737181 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41949049ns 737186 1a110850 fd5ff06f jal x0, -44 +41949333ns 737191 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41949617ns 737196 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41950015ns 737203 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41950186ns 737206 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41950640ns 737214 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41950811ns 737217 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41951095ns 737222 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41951379ns 737227 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41951663ns 737232 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41952118ns 737240 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41952288ns 737243 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41952572ns 737248 1a110850 fd5ff06f jal x0, -44 +41952857ns 737253 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41953141ns 737258 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41953539ns 737265 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41953709ns 737268 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41954164ns 737276 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41954334ns 737279 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41954618ns 737284 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41954903ns 737289 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41955187ns 737294 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41955641ns 737302 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41955812ns 737305 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41956096ns 737310 1a110850 fd5ff06f jal x0, -44 +41956380ns 737315 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41956664ns 737320 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41957062ns 737327 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41957233ns 737330 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41957687ns 737338 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41957858ns 737341 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41958142ns 737346 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41958426ns 737351 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41958710ns 737356 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41959165ns 737364 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41959335ns 737367 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41959620ns 737372 1a110850 fd5ff06f jal x0, -44 +41959904ns 737377 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41960188ns 737382 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41960586ns 737389 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41960756ns 737392 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41961211ns 737400 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41961381ns 737403 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41961666ns 737408 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41961950ns 737413 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41962234ns 737418 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41962689ns 737426 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41962859ns 737429 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41963143ns 737434 1a110850 fd5ff06f jal x0, -44 +41963427ns 737439 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41963712ns 737444 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41964109ns 737451 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41964280ns 737454 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41964735ns 737462 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41964905ns 737465 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41965189ns 737470 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41965473ns 737475 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41965757ns 737480 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41966212ns 737488 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41966383ns 737491 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41966667ns 737496 1a110850 fd5ff06f jal x0, -44 +41966951ns 737501 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41967235ns 737506 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41967633ns 737513 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41967803ns 737516 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41968258ns 737524 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41968429ns 737527 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41968713ns 737532 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41968997ns 737537 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41969281ns 737542 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41969736ns 737550 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41969906ns 737553 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41970190ns 737558 1a110850 fd5ff06f jal x0, -44 +41970475ns 737563 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41970759ns 737568 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41971157ns 737575 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41971327ns 737578 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41971782ns 737586 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41971952ns 737589 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41972236ns 737594 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41972520ns 737599 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41972805ns 737604 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41973259ns 737612 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41973430ns 737615 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41973714ns 737620 1a110850 fd5ff06f jal x0, -44 +41973998ns 737625 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41974282ns 737630 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41974680ns 737637 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41974851ns 737640 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41975305ns 737648 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41975476ns 737651 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41975760ns 737656 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41976044ns 737661 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41976328ns 737666 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41976783ns 737674 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41976953ns 737677 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41977238ns 737682 1a110850 fd5ff06f jal x0, -44 +41977522ns 737687 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41977806ns 737692 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41978204ns 737699 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41978374ns 737702 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41978829ns 737710 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41978999ns 737713 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41979283ns 737718 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41979568ns 737723 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41979852ns 737728 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41980306ns 737736 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41980477ns 737739 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41980761ns 737744 1a110850 fd5ff06f jal x0, -44 +41981045ns 737749 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41981329ns 737754 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41981727ns 737761 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41981898ns 737764 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41982352ns 737772 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41982523ns 737775 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41982807ns 737780 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41983091ns 737785 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41983375ns 737790 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41983830ns 737798 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41984001ns 737801 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41984285ns 737806 1a110850 fd5ff06f jal x0, -44 +41984569ns 737811 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41984853ns 737816 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41985251ns 737823 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41985421ns 737826 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41985876ns 737834 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41986047ns 737837 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41986331ns 737842 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41986615ns 737847 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41986899ns 737852 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41987354ns 737860 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41987524ns 737863 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41987808ns 737868 1a110850 fd5ff06f jal x0, -44 +41988092ns 737873 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41988377ns 737878 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41988774ns 737885 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41988945ns 737888 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41989400ns 737896 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41989570ns 737899 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41989854ns 737904 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41990138ns 737909 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41990423ns 737914 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41990877ns 737922 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41991048ns 737925 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41991332ns 737930 1a110850 fd5ff06f jal x0, -44 +41991616ns 737935 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41991900ns 737940 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41992298ns 737947 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41992469ns 737950 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41992923ns 737958 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41993094ns 737961 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41993378ns 737966 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41993662ns 737971 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41993946ns 737976 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41994401ns 737984 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41994571ns 737987 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41994855ns 737992 1a110850 fd5ff06f jal x0, -44 +41995140ns 737997 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41995424ns 738002 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41995822ns 738009 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41995992ns 738012 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41996447ns 738020 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +41996617ns 738023 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +41996901ns 738028 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41997186ns 738033 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41997470ns 738038 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41997924ns 738046 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +41998095ns 738049 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +41998379ns 738054 1a110850 fd5ff06f jal x0, -44 +41998663ns 738059 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +41998947ns 738064 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +41999345ns 738071 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +41999516ns 738074 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +41999970ns 738082 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42000141ns 738085 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42000425ns 738090 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42000709ns 738095 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42000993ns 738100 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42001448ns 738108 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42001618ns 738111 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42001903ns 738116 1a110850 fd5ff06f jal x0, -44 +42002187ns 738121 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42002471ns 738126 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42002869ns 738133 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42003039ns 738136 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42003494ns 738144 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42003664ns 738147 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42003949ns 738152 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42004233ns 738157 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42004517ns 738162 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42004972ns 738170 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42005142ns 738173 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42005426ns 738178 1a110850 fd5ff06f jal x0, -44 +42005710ns 738183 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42005995ns 738188 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42006392ns 738195 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42006563ns 738198 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42007018ns 738206 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42007188ns 738209 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42007472ns 738214 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42007756ns 738219 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42008040ns 738224 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42008495ns 738232 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42008666ns 738235 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42008950ns 738240 1a110850 fd5ff06f jal x0, -44 +42009234ns 738245 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42009518ns 738250 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42009916ns 738257 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42010086ns 738260 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42010541ns 738268 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42010712ns 738271 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42010996ns 738276 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42011280ns 738281 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42011564ns 738286 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42012019ns 738294 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42012189ns 738297 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42012473ns 738302 1a110850 fd5ff06f jal x0, -44 +42012758ns 738307 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42013042ns 738312 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42013440ns 738319 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42013610ns 738322 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42014065ns 738330 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42014235ns 738333 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42014519ns 738338 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42014803ns 738343 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42015088ns 738348 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42015542ns 738356 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42015713ns 738359 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42015997ns 738364 1a110850 fd5ff06f jal x0, -44 +42016281ns 738369 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42016565ns 738374 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42016963ns 738381 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42017134ns 738384 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42017588ns 738392 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42017759ns 738395 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42018043ns 738400 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42018327ns 738405 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42018611ns 738410 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42019066ns 738418 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42019236ns 738421 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42019521ns 738426 1a110850 fd5ff06f jal x0, -44 +42019805ns 738431 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42020089ns 738436 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42020487ns 738443 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42020657ns 738446 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42021112ns 738454 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42021282ns 738457 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42021567ns 738462 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42021851ns 738467 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42022135ns 738472 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42022589ns 738480 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42022760ns 738483 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42023044ns 738488 1a110850 fd5ff06f jal x0, -44 +42023328ns 738493 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42023612ns 738498 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42024010ns 738505 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42024181ns 738508 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42024635ns 738516 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42024806ns 738519 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42025090ns 738524 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42025374ns 738529 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42025658ns 738534 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42026113ns 738542 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42026284ns 738545 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42026568ns 738550 1a110850 fd5ff06f jal x0, -44 +42026852ns 738555 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42027136ns 738560 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42027534ns 738567 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42027704ns 738570 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42028159ns 738578 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42028330ns 738581 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42028614ns 738586 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42028898ns 738591 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42029182ns 738596 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42029637ns 738604 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42029807ns 738607 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42030091ns 738612 1a110850 fd5ff06f jal x0, -44 +42030375ns 738617 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42030660ns 738622 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42031057ns 738629 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42031228ns 738632 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42031683ns 738640 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42031853ns 738643 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42032137ns 738648 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42032421ns 738653 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42032706ns 738658 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42033160ns 738666 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42033331ns 738669 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42033615ns 738674 1a110850 fd5ff06f jal x0, -44 +42033899ns 738679 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42034183ns 738684 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42034581ns 738691 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42034752ns 738694 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42035206ns 738702 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42035377ns 738705 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42035661ns 738710 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42035945ns 738715 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42036229ns 738720 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42036684ns 738728 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42036854ns 738731 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42037138ns 738736 1a110850 fd5ff06f jal x0, -44 +42037423ns 738741 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42037707ns 738746 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42038105ns 738753 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42038275ns 738756 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42038730ns 738764 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42038900ns 738767 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42039184ns 738772 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42039469ns 738777 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42039753ns 738782 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42040207ns 738790 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42040378ns 738793 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42040662ns 738798 1a110850 fd5ff06f jal x0, -44 +42040946ns 738803 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42041230ns 738808 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42041628ns 738815 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42041799ns 738818 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42042253ns 738826 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42042424ns 738829 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42042708ns 738834 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42042992ns 738839 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42043276ns 738844 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42043731ns 738852 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42043901ns 738855 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42044186ns 738860 1a110850 fd5ff06f jal x0, -44 +42044470ns 738865 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42044754ns 738870 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42045152ns 738877 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42045322ns 738880 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42045777ns 738888 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42045947ns 738891 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42046232ns 738896 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42046516ns 738901 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42046800ns 738906 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42047255ns 738914 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42047425ns 738917 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42047709ns 738922 1a110850 fd5ff06f jal x0, -44 +42047993ns 738927 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42048278ns 738932 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42048675ns 738939 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42048846ns 738942 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42049301ns 738950 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42049471ns 738953 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42049755ns 738958 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42050039ns 738963 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42050323ns 738968 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42050778ns 738976 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42050949ns 738979 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42051233ns 738984 1a110850 fd5ff06f jal x0, -44 +42051517ns 738989 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42051801ns 738994 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42052199ns 739001 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42052369ns 739004 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42052824ns 739012 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42052995ns 739015 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42053279ns 739020 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42053563ns 739025 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42053847ns 739030 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42054302ns 739038 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42054472ns 739041 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42054756ns 739046 1a110850 fd5ff06f jal x0, -44 +42055041ns 739051 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42055325ns 739056 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42055723ns 739063 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42055893ns 739066 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42056348ns 739074 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42056518ns 739077 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42056802ns 739082 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42057087ns 739087 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42057371ns 739092 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42057825ns 739100 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42057996ns 739103 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42058280ns 739108 1a110850 fd5ff06f jal x0, -44 +42058564ns 739113 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42058848ns 739118 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42059246ns 739125 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42059417ns 739128 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42059871ns 739136 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42060042ns 739139 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42060326ns 739144 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42060610ns 739149 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42060894ns 739154 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42061349ns 739162 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42061519ns 739165 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42061804ns 739170 1a110850 fd5ff06f jal x0, -44 +42062088ns 739175 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42062372ns 739180 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42062770ns 739187 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42062940ns 739190 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42063395ns 739198 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42063565ns 739201 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42063850ns 739206 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42064134ns 739211 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42064418ns 739216 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42064872ns 739224 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42065043ns 739227 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42065327ns 739232 1a110850 fd5ff06f jal x0, -44 +42065611ns 739237 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42065895ns 739242 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42066293ns 739249 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42066464ns 739252 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42066918ns 739260 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42067089ns 739263 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42067373ns 739268 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42067657ns 739273 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42067941ns 739278 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42068396ns 739286 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42068567ns 739289 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42068851ns 739294 1a110850 fd5ff06f jal x0, -44 +42069135ns 739299 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42069419ns 739304 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42069817ns 739311 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42069987ns 739314 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42070442ns 739322 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42070613ns 739325 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42070897ns 739330 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42071181ns 739335 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42071465ns 739340 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42071920ns 739348 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42072090ns 739351 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42072374ns 739356 1a110850 fd5ff06f jal x0, -44 +42072658ns 739361 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42072943ns 739366 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42073340ns 739373 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42073511ns 739376 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42073966ns 739384 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42074136ns 739387 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42074420ns 739392 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42074704ns 739397 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42074989ns 739402 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42075443ns 739410 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42075614ns 739413 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42075898ns 739418 1a110850 fd5ff06f jal x0, -44 +42076182ns 739423 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42076466ns 739428 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42076864ns 739435 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42077035ns 739438 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42077489ns 739446 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42077660ns 739449 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42077944ns 739454 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42078228ns 739459 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42078512ns 739464 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42078967ns 739472 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42079137ns 739475 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42079421ns 739480 1a110850 fd5ff06f jal x0, -44 +42079706ns 739485 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42079990ns 739490 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42080388ns 739497 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42080558ns 739500 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42081013ns 739508 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42081183ns 739511 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42081467ns 739516 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42081752ns 739521 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42082036ns 739526 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42082490ns 739534 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42082661ns 739537 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42082945ns 739542 1a110850 fd5ff06f jal x0, -44 +42083229ns 739547 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42083513ns 739552 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42083911ns 739559 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42084082ns 739562 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42084536ns 739570 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42084707ns 739573 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42084991ns 739578 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42085275ns 739583 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42085559ns 739588 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42086014ns 739596 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42086184ns 739599 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42086469ns 739604 1a110850 fd5ff06f jal x0, -44 +42086753ns 739609 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42087037ns 739614 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42087435ns 739621 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42087605ns 739624 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42088060ns 739632 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42088230ns 739635 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42088515ns 739640 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42088799ns 739645 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42089083ns 739650 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42089538ns 739658 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42089708ns 739661 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42089992ns 739666 1a110850 fd5ff06f jal x0, -44 +42090276ns 739671 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42090561ns 739676 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42090958ns 739683 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42091129ns 739686 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42091584ns 739694 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42091754ns 739697 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42092038ns 739702 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42092322ns 739707 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42092607ns 739712 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42093061ns 739720 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42093232ns 739723 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42093516ns 739728 1a110850 fd5ff06f jal x0, -44 +42093800ns 739733 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42094084ns 739738 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42094482ns 739745 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42094652ns 739748 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42095107ns 739756 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42095278ns 739759 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42095562ns 739764 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42095846ns 739769 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42096130ns 739774 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42096585ns 739782 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42096755ns 739785 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42097039ns 739790 1a110850 fd5ff06f jal x0, -44 +42097324ns 739795 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42097608ns 739800 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42098006ns 739807 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42098176ns 739810 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42098631ns 739818 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42098801ns 739821 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42099085ns 739826 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42099370ns 739831 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42099654ns 739836 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42100108ns 739844 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42100279ns 739847 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42100563ns 739852 1a110850 fd5ff06f jal x0, -44 +42100847ns 739857 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42101131ns 739862 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42101529ns 739869 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42101700ns 739872 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42102154ns 739880 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42102325ns 739883 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42102609ns 739888 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42102893ns 739893 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42103177ns 739898 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42103632ns 739906 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42103802ns 739909 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42104087ns 739914 1a110850 fd5ff06f jal x0, -44 +42104371ns 739919 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42104655ns 739924 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42105053ns 739931 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42105223ns 739934 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42105678ns 739942 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42105848ns 739945 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42106133ns 739950 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42106417ns 739955 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42106701ns 739960 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42107155ns 739968 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42107326ns 739971 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42107610ns 739976 1a110850 fd5ff06f jal x0, -44 +42107894ns 739981 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42108178ns 739986 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42108576ns 739993 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42108747ns 739996 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42109201ns 740004 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42109372ns 740007 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42109656ns 740012 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42109940ns 740017 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42110224ns 740022 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42110679ns 740030 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42110850ns 740033 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42111134ns 740038 1a110850 fd5ff06f jal x0, -44 +42111418ns 740043 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42111702ns 740048 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42112100ns 740055 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42112270ns 740058 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42112725ns 740066 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42112896ns 740069 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42113180ns 740074 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42113464ns 740079 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42113748ns 740084 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42114203ns 740092 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42114373ns 740095 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42114657ns 740100 1a110850 fd5ff06f jal x0, -44 +42114941ns 740105 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42115226ns 740110 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42115623ns 740117 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42115794ns 740120 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42116249ns 740128 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42116419ns 740131 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42116703ns 740136 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42116987ns 740141 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42117272ns 740146 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42117726ns 740154 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42117897ns 740157 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42118181ns 740162 1a110850 fd5ff06f jal x0, -44 +42118465ns 740167 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42118749ns 740172 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42119147ns 740179 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42119318ns 740182 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42119772ns 740190 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42119943ns 740193 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42120227ns 740198 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42120511ns 740203 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42120795ns 740208 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42121250ns 740216 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42121420ns 740219 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42121704ns 740224 1a110850 fd5ff06f jal x0, -44 +42121989ns 740229 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42122273ns 740234 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42122671ns 740241 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42122841ns 740244 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42123296ns 740252 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42123466ns 740255 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42123750ns 740260 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42124035ns 740265 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42124319ns 740270 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42124773ns 740278 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42124944ns 740281 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42125228ns 740286 1a110850 fd5ff06f jal x0, -44 +42125512ns 740291 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42125796ns 740296 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42126194ns 740303 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42126365ns 740306 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42126819ns 740314 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42126990ns 740317 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42127274ns 740322 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42127558ns 740327 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42127842ns 740332 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42128297ns 740340 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42128467ns 740343 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42128752ns 740348 1a110850 fd5ff06f jal x0, -44 +42129036ns 740353 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42129320ns 740358 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42129718ns 740365 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42129888ns 740368 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42130343ns 740376 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42130513ns 740379 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42130798ns 740384 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42131082ns 740389 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42131366ns 740394 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42131821ns 740402 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42131991ns 740405 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42132275ns 740410 1a110850 fd5ff06f jal x0, -44 +42132559ns 740415 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42132844ns 740420 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42133241ns 740427 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42133412ns 740430 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42133867ns 740438 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42134037ns 740441 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42134321ns 740446 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42134605ns 740451 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42134890ns 740456 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42135344ns 740464 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42135515ns 740467 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42135799ns 740472 1a110850 fd5ff06f jal x0, -44 +42136083ns 740477 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42136367ns 740482 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42136765ns 740489 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42136935ns 740492 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42137390ns 740500 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42137561ns 740503 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42137845ns 740508 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42138129ns 740513 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42138413ns 740518 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42138868ns 740526 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42139038ns 740529 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42139322ns 740534 1a110850 fd5ff06f jal x0, -44 +42139607ns 740539 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42139891ns 740544 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42140289ns 740551 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42140459ns 740554 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42140914ns 740562 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42141084ns 740565 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42141368ns 740570 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42141653ns 740575 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42141937ns 740580 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42142391ns 740588 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42142562ns 740591 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42142846ns 740596 1a110850 fd5ff06f jal x0, -44 +42143130ns 740601 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42143414ns 740606 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42143812ns 740613 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42143983ns 740616 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42144437ns 740624 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42144608ns 740627 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42144892ns 740632 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42145176ns 740637 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42145460ns 740642 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42145915ns 740650 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42146085ns 740653 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42146370ns 740658 1a110850 fd5ff06f jal x0, -44 +42146654ns 740663 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42146938ns 740668 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42147336ns 740675 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42147506ns 740678 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42147961ns 740686 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42148131ns 740689 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42148416ns 740694 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42148700ns 740699 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42148984ns 740704 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42149439ns 740712 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42149609ns 740715 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42149893ns 740720 1a110850 fd5ff06f jal x0, -44 +42150177ns 740725 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42150461ns 740730 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42150859ns 740737 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42151030ns 740740 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42151484ns 740748 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42151655ns 740751 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42151939ns 740756 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42152223ns 740761 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42152507ns 740766 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42152962ns 740774 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42153133ns 740777 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42153417ns 740782 1a110850 fd5ff06f jal x0, -44 +42153701ns 740787 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42153985ns 740792 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42154383ns 740799 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42154553ns 740802 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42155008ns 740810 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42155179ns 740813 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42155463ns 740818 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42155747ns 740823 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42156031ns 740828 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42156486ns 740836 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42156656ns 740839 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42156940ns 740844 1a110850 fd5ff06f jal x0, -44 +42157224ns 740849 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42157509ns 740854 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42157906ns 740861 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42158077ns 740864 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42158532ns 740872 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42158702ns 740875 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42158986ns 740880 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42159270ns 740885 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42159555ns 740890 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42160009ns 740898 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42160180ns 740901 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42160464ns 740906 1a110850 fd5ff06f jal x0, -44 +42160748ns 740911 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42161032ns 740916 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42161430ns 740923 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42161601ns 740926 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42162055ns 740934 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42162226ns 740937 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42162510ns 740942 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42162794ns 740947 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42163078ns 740952 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42163533ns 740960 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42163703ns 740963 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42163987ns 740968 1a110850 fd5ff06f jal x0, -44 +42164272ns 740973 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42164556ns 740978 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42164954ns 740985 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42165124ns 740988 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42165579ns 740996 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42165749ns 740999 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42166033ns 741004 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42166318ns 741009 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42166602ns 741014 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42167056ns 741022 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42167227ns 741025 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42167511ns 741030 1a110850 fd5ff06f jal x0, -44 +42167795ns 741035 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42168079ns 741040 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42168477ns 741047 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42168648ns 741050 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42169102ns 741058 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42169273ns 741061 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42169557ns 741066 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42169841ns 741071 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42170125ns 741076 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42170580ns 741084 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42170751ns 741087 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42171035ns 741092 1a110850 fd5ff06f jal x0, -44 +42171319ns 741097 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42171603ns 741102 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42172001ns 741109 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42172171ns 741112 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42172626ns 741120 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42172796ns 741123 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42173081ns 741128 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42173365ns 741133 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42173649ns 741138 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42174104ns 741146 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42174274ns 741149 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42174558ns 741154 1a110850 fd5ff06f jal x0, -44 +42174842ns 741159 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42175127ns 741164 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42175524ns 741171 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42175695ns 741174 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42176150ns 741182 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42176320ns 741185 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42176604ns 741190 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42176888ns 741195 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42177173ns 741200 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42177627ns 741208 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42177798ns 741211 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42178082ns 741216 1a110850 fd5ff06f jal x0, -44 +42178366ns 741221 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42178650ns 741226 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42179048ns 741233 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42179218ns 741236 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42179673ns 741244 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42179844ns 741247 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42180128ns 741252 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42180412ns 741257 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42180696ns 741262 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42181151ns 741270 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42181321ns 741273 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42181605ns 741278 1a110850 fd5ff06f jal x0, -44 +42181890ns 741283 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42182174ns 741288 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42182572ns 741295 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42182742ns 741298 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42183197ns 741306 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42183367ns 741309 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42183651ns 741314 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42183936ns 741319 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42184220ns 741324 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42184674ns 741332 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42184845ns 741335 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42185129ns 741340 1a110850 fd5ff06f jal x0, -44 +42185413ns 741345 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42185697ns 741350 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42186095ns 741357 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42186266ns 741360 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42186720ns 741368 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42186891ns 741371 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42187175ns 741376 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42187459ns 741381 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42187743ns 741386 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42188198ns 741394 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42188368ns 741397 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42188653ns 741402 1a110850 fd5ff06f jal x0, -44 +42188937ns 741407 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42189221ns 741412 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42189619ns 741419 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42189789ns 741422 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42190244ns 741430 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42190414ns 741433 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42190699ns 741438 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42190983ns 741443 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42191267ns 741448 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42191722ns 741456 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42191892ns 741459 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42192176ns 741464 1a110850 fd5ff06f jal x0, -44 +42192460ns 741469 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42192744ns 741474 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42193142ns 741481 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42193313ns 741484 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42193767ns 741492 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42193938ns 741495 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42194222ns 741500 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42194506ns 741505 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42194790ns 741510 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42195245ns 741518 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42195416ns 741521 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42195700ns 741526 1a110850 fd5ff06f jal x0, -44 +42195984ns 741531 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42196268ns 741536 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42196666ns 741543 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42196836ns 741546 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42197291ns 741554 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42197462ns 741557 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42197746ns 741562 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42198030ns 741567 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42198314ns 741572 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42198769ns 741580 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42198939ns 741583 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42199223ns 741588 1a110850 fd5ff06f jal x0, -44 +42199507ns 741593 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42199792ns 741598 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42200189ns 741605 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42200360ns 741608 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42200815ns 741616 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42200985ns 741619 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42201269ns 741624 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42201553ns 741629 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42201838ns 741634 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42202292ns 741642 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42202463ns 741645 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42202747ns 741650 1a110850 fd5ff06f jal x0, -44 +42203031ns 741655 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42203315ns 741660 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42203713ns 741667 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42203884ns 741670 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42204338ns 741678 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42204509ns 741681 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42204793ns 741686 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42205077ns 741691 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42205361ns 741696 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42205816ns 741704 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42205986ns 741707 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42206271ns 741712 1a110850 fd5ff06f jal x0, -44 +42206555ns 741717 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42206839ns 741722 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42207237ns 741729 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42207407ns 741732 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42207862ns 741740 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42208032ns 741743 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42208316ns 741748 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42208601ns 741753 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42208885ns 741758 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42209339ns 741766 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42209510ns 741769 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42209794ns 741774 1a110850 fd5ff06f jal x0, -44 +42210078ns 741779 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42210362ns 741784 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42210760ns 741791 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42210931ns 741794 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42211385ns 741802 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42211556ns 741805 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42211840ns 741810 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42212124ns 741815 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42212408ns 741820 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42212863ns 741828 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42213034ns 741831 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42213318ns 741836 1a110850 fd5ff06f jal x0, -44 +42213602ns 741841 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42213886ns 741846 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42214284ns 741853 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42214454ns 741856 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42214909ns 741864 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42215079ns 741867 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42215364ns 741872 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42215648ns 741877 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42215932ns 741882 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42216387ns 741890 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42216557ns 741893 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42216841ns 741898 1a110850 fd5ff06f jal x0, -44 +42217125ns 741903 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42217410ns 741908 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42217807ns 741915 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42217978ns 741918 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42218433ns 741926 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42218603ns 741929 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42218887ns 741934 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42219171ns 741939 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42219456ns 741944 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42219910ns 741952 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42220081ns 741955 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42220365ns 741960 1a110850 fd5ff06f jal x0, -44 +42220649ns 741965 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42220933ns 741970 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42221331ns 741977 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42221501ns 741980 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42221956ns 741988 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42222127ns 741991 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42222411ns 741996 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42222695ns 742001 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42222979ns 742006 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42223434ns 742014 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42223604ns 742017 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42223888ns 742022 1a110850 fd5ff06f jal x0, -44 +42224173ns 742027 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42224457ns 742032 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42224855ns 742039 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42225025ns 742042 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42225480ns 742050 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42225650ns 742053 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42225934ns 742058 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42226219ns 742063 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42226503ns 742068 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42226957ns 742076 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42227128ns 742079 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42227412ns 742084 1a110850 fd5ff06f jal x0, -44 +42227696ns 742089 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42227980ns 742094 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42228378ns 742101 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42228549ns 742104 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42229003ns 742112 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42229174ns 742115 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42229458ns 742120 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42229742ns 742125 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42230026ns 742130 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42230481ns 742138 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42230651ns 742141 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42230936ns 742146 1a110850 fd5ff06f jal x0, -44 +42231220ns 742151 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42231504ns 742156 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42231902ns 742163 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42232072ns 742166 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42232527ns 742174 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42232697ns 742177 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42232982ns 742182 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42233266ns 742187 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42233550ns 742192 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42234005ns 742200 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42234175ns 742203 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42234459ns 742208 1a110850 fd5ff06f jal x0, -44 +42234743ns 742213 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42235027ns 742218 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42235425ns 742225 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42235596ns 742228 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42236050ns 742236 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42236221ns 742239 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42236505ns 742244 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42236789ns 742249 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42237073ns 742254 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42237528ns 742262 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42237699ns 742265 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42237983ns 742270 1a110850 fd5ff06f jal x0, -44 +42238267ns 742275 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42238551ns 742280 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42238949ns 742287 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42239119ns 742290 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42239574ns 742298 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42239745ns 742301 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42240029ns 742306 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42240313ns 742311 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42240597ns 742316 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42241052ns 742324 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42241222ns 742327 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42241506ns 742332 1a110850 fd5ff06f jal x0, -44 +42241791ns 742337 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42242075ns 742342 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42242472ns 742349 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42242643ns 742352 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42243098ns 742360 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42243268ns 742363 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42243552ns 742368 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42243836ns 742373 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42244121ns 742378 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42244575ns 742386 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42244746ns 742389 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42245030ns 742394 1a110850 fd5ff06f jal x0, -44 +42245314ns 742399 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42245598ns 742404 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42245996ns 742411 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42246167ns 742414 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42246621ns 742422 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42246792ns 742425 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42247076ns 742430 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42247360ns 742435 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42247644ns 742440 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42248099ns 742448 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42248269ns 742451 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42248554ns 742456 1a110850 fd5ff06f jal x0, -44 +42248838ns 742461 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42249122ns 742466 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42249520ns 742473 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42249690ns 742476 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42250145ns 742484 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42250315ns 742487 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42250599ns 742492 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42250884ns 742497 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42251168ns 742502 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42251622ns 742510 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42251793ns 742513 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42252077ns 742518 1a110850 fd5ff06f jal x0, -44 +42252361ns 742523 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42252645ns 742528 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42253043ns 742535 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42253214ns 742538 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42253668ns 742546 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42253839ns 742549 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42254123ns 742554 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42254407ns 742559 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42254691ns 742564 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42255146ns 742572 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42255317ns 742575 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42255601ns 742580 1a110850 fd5ff06f jal x0, -44 +42255885ns 742585 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42256169ns 742590 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42256567ns 742597 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42256737ns 742600 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42257192ns 742608 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42257362ns 742611 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42257647ns 742616 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42257931ns 742621 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42258215ns 742626 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42258670ns 742634 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42258840ns 742637 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42259124ns 742642 1a110850 fd5ff06f jal x0, -44 +42259408ns 742647 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42259693ns 742652 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42260090ns 742659 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42260261ns 742662 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42260716ns 742670 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42260886ns 742673 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42261170ns 742678 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42261454ns 742683 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42261739ns 742688 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42262193ns 742696 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42262364ns 742699 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42262648ns 742704 1a110850 fd5ff06f jal x0, -44 +42262932ns 742709 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42263216ns 742714 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42263614ns 742721 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42263784ns 742724 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42264239ns 742732 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42264410ns 742735 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42264694ns 742740 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42264978ns 742745 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42265262ns 742750 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42265717ns 742758 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42265887ns 742761 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42266171ns 742766 1a110850 fd5ff06f jal x0, -44 +42266456ns 742771 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42266740ns 742776 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42267138ns 742783 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42267308ns 742786 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42267763ns 742794 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42267933ns 742797 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42268217ns 742802 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42268502ns 742807 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42268786ns 742812 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42269240ns 742820 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42269411ns 742823 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42269695ns 742828 1a110850 fd5ff06f jal x0, -44 +42269979ns 742833 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42270263ns 742838 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42270661ns 742845 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42270832ns 742848 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42271286ns 742856 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42271457ns 742859 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42271741ns 742864 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42272025ns 742869 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42272309ns 742874 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42272764ns 742882 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42272934ns 742885 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42273219ns 742890 1a110850 fd5ff06f jal x0, -44 +42273503ns 742895 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42273787ns 742900 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42274185ns 742907 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42274355ns 742910 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42274810ns 742918 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42274980ns 742921 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42275265ns 742926 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42275549ns 742931 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42275833ns 742936 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42276288ns 742944 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42276458ns 742947 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42276742ns 742952 1a110850 fd5ff06f jal x0, -44 +42277026ns 742957 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42277311ns 742962 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42277708ns 742969 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42277879ns 742972 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42278333ns 742980 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42278504ns 742983 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42278788ns 742988 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42279072ns 742993 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42279356ns 742998 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42279811ns 743006 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42279982ns 743009 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42280266ns 743014 1a110850 fd5ff06f jal x0, -44 +42280550ns 743019 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42280834ns 743024 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42281232ns 743031 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42281402ns 743034 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42281857ns 743042 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42282028ns 743045 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42282312ns 743050 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42282596ns 743055 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42282880ns 743060 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42283335ns 743068 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42283505ns 743071 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42283789ns 743076 1a110850 fd5ff06f jal x0, -44 +42284074ns 743081 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42284358ns 743086 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42284755ns 743093 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42284926ns 743096 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42285381ns 743104 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42285551ns 743107 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42285835ns 743112 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42286119ns 743117 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42286404ns 743122 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42286858ns 743130 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42287029ns 743133 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42287313ns 743138 1a110850 fd5ff06f jal x0, -44 +42287597ns 743143 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42287881ns 743148 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42288279ns 743155 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42288450ns 743158 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42288904ns 743166 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42289075ns 743169 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42289359ns 743174 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42289643ns 743179 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42289927ns 743184 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42290382ns 743192 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42290552ns 743195 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42290837ns 743200 1a110850 fd5ff06f jal x0, -44 +42291121ns 743205 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42291405ns 743210 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42291803ns 743217 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42291973ns 743220 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42292428ns 743228 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42292598ns 743231 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42292882ns 743236 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42293167ns 743241 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42293451ns 743246 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42293905ns 743254 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42294076ns 743257 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42294360ns 743262 1a110850 fd5ff06f jal x0, -44 +42294644ns 743267 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42294928ns 743272 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42295326ns 743279 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42295497ns 743282 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42295951ns 743290 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42296122ns 743293 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42296406ns 743298 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42296690ns 743303 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42296974ns 743308 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42297429ns 743316 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42297600ns 743319 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42297884ns 743324 1a110850 fd5ff06f jal x0, -44 +42298168ns 743329 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42298452ns 743334 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42298850ns 743341 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42299020ns 743344 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42299475ns 743352 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42299645ns 743355 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42299930ns 743360 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42300214ns 743365 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42300498ns 743370 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42300953ns 743378 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42301123ns 743381 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42301407ns 743386 1a110850 fd5ff06f jal x0, -44 +42301691ns 743391 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42301976ns 743396 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42302373ns 743403 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42302544ns 743406 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42302999ns 743414 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42303169ns 743417 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42303453ns 743422 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42303737ns 743427 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42304022ns 743432 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42304476ns 743440 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42304647ns 743443 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42304931ns 743448 1a110850 fd5ff06f jal x0, -44 +42305215ns 743453 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42305499ns 743458 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42305897ns 743465 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42306067ns 743468 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42306522ns 743476 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42306693ns 743479 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42306977ns 743484 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42307261ns 743489 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42307545ns 743494 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42308000ns 743502 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42308170ns 743505 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42308454ns 743510 1a110850 fd5ff06f jal x0, -44 +42308739ns 743515 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42309023ns 743520 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42309421ns 743527 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42309591ns 743530 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42310046ns 743538 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42310216ns 743541 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42310500ns 743546 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42310785ns 743551 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42311069ns 743556 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42311523ns 743564 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42311694ns 743567 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42311978ns 743572 1a110850 fd5ff06f jal x0, -44 +42312262ns 743577 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42312546ns 743582 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42312944ns 743589 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42313115ns 743592 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42313569ns 743600 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42313740ns 743603 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42314024ns 743608 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42314308ns 743613 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42314592ns 743618 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42315047ns 743626 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42315217ns 743629 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42315502ns 743634 1a110850 fd5ff06f jal x0, -44 +42315786ns 743639 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42316070ns 743644 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42316468ns 743651 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42316638ns 743654 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42317093ns 743662 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42317263ns 743665 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42317548ns 743670 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42317832ns 743675 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42318116ns 743680 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42318571ns 743688 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42318741ns 743691 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42319025ns 743696 1a110850 fd5ff06f jal x0, -44 +42319309ns 743701 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42319594ns 743706 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42319991ns 743713 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42320162ns 743716 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42320616ns 743724 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42320787ns 743727 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42321071ns 743732 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42321355ns 743737 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42321639ns 743742 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42322094ns 743750 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42322265ns 743753 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42322549ns 743758 1a110850 fd5ff06f jal x0, -44 +42322833ns 743763 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42323117ns 743768 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42323515ns 743775 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42323685ns 743778 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42324140ns 743786 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42324311ns 743789 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42324595ns 743794 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42324879ns 743799 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42325163ns 743804 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42325618ns 743812 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42325788ns 743815 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42326072ns 743820 1a110850 fd5ff06f jal x0, -44 +42326357ns 743825 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42326641ns 743830 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42327039ns 743837 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42327209ns 743840 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42327664ns 743848 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42327834ns 743851 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42328118ns 743856 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42328402ns 743861 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42328687ns 743866 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42329141ns 743874 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42329312ns 743877 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42329596ns 743882 1a110850 fd5ff06f jal x0, -44 +42329880ns 743887 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42330164ns 743892 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42330562ns 743899 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42330733ns 743902 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42331187ns 743910 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42331358ns 743913 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42331642ns 743918 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42331926ns 743923 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42332210ns 743928 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42332665ns 743936 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42332835ns 743939 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42333120ns 743944 1a110850 fd5ff06f jal x0, -44 +42333404ns 743949 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42333688ns 743954 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42334086ns 743961 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42334256ns 743964 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42334711ns 743972 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42334881ns 743975 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42335165ns 743980 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42335450ns 743985 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42335734ns 743990 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42336188ns 743998 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42336359ns 744001 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42336643ns 744006 1a110850 fd5ff06f jal x0, -44 +42336927ns 744011 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42337211ns 744016 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42337609ns 744023 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42337780ns 744026 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42338234ns 744034 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42338405ns 744037 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42338689ns 744042 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42338973ns 744047 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42339257ns 744052 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42339712ns 744060 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42339883ns 744063 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42340167ns 744068 1a110850 fd5ff06f jal x0, -44 +42340451ns 744073 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42340735ns 744078 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42341133ns 744085 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42341303ns 744088 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42341758ns 744096 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42341928ns 744099 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42342213ns 744104 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42342497ns 744109 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42342781ns 744114 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42343236ns 744122 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42343406ns 744125 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42343690ns 744130 1a110850 fd5ff06f jal x0, -44 +42343974ns 744135 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42344259ns 744140 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42344656ns 744147 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42344827ns 744150 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42345282ns 744158 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42345452ns 744161 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42345736ns 744166 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42346020ns 744171 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42346305ns 744176 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42346759ns 744184 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42346930ns 744187 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42347214ns 744192 1a110850 fd5ff06f jal x0, -44 +42347498ns 744197 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42347782ns 744202 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42348180ns 744209 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42348351ns 744212 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42348805ns 744220 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42348976ns 744223 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42349260ns 744228 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42349544ns 744233 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42349828ns 744238 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42350283ns 744246 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42350453ns 744249 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42350737ns 744254 1a110850 fd5ff06f jal x0, -44 +42351022ns 744259 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42351306ns 744264 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42351704ns 744271 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42351874ns 744274 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42352329ns 744282 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42352499ns 744285 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42352783ns 744290 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42353068ns 744295 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42353352ns 744300 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42353806ns 744308 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42353977ns 744311 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42354261ns 744316 1a110850 fd5ff06f jal x0, -44 +42354545ns 744321 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42354829ns 744326 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42355227ns 744333 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42355398ns 744336 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42355852ns 744344 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42356023ns 744347 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42356307ns 744352 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42356591ns 744357 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42356875ns 744362 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42357330ns 744370 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42357500ns 744373 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42357785ns 744378 1a110850 fd5ff06f jal x0, -44 +42358069ns 744383 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42358353ns 744388 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42358751ns 744395 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42358921ns 744398 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42359376ns 744406 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42359546ns 744409 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42359831ns 744414 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42360115ns 744419 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42360399ns 744424 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42360854ns 744432 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42361024ns 744435 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42361308ns 744440 1a110850 fd5ff06f jal x0, -44 +42361592ns 744445 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42361877ns 744450 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42362274ns 744457 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42362445ns 744460 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42362899ns 744468 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42363070ns 744471 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42363354ns 744476 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42363638ns 744481 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42363922ns 744486 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42364377ns 744494 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42364548ns 744497 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42364832ns 744502 1a110850 fd5ff06f jal x0, -44 +42365116ns 744507 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42365400ns 744512 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42365798ns 744519 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42365968ns 744522 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42366423ns 744530 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42366594ns 744533 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42366878ns 744538 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42367162ns 744543 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42367446ns 744548 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42367901ns 744556 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42368071ns 744559 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42368355ns 744564 1a110850 fd5ff06f jal x0, -44 +42368640ns 744569 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42368924ns 744574 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42369322ns 744581 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42369492ns 744584 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42369947ns 744592 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42370117ns 744595 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42370401ns 744600 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42370685ns 744605 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42370970ns 744610 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42371424ns 744618 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42371595ns 744621 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42371879ns 744626 1a110850 fd5ff06f jal x0, -44 +42372163ns 744631 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42372447ns 744636 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42372845ns 744643 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42373016ns 744646 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42373470ns 744654 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42373641ns 744657 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42373925ns 744662 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42374209ns 744667 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42374493ns 744672 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42374948ns 744680 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42375118ns 744683 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42375403ns 744688 1a110850 fd5ff06f jal x0, -44 +42375687ns 744693 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42375971ns 744698 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42376369ns 744705 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42376539ns 744708 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42376994ns 744716 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42377164ns 744719 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42377448ns 744724 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42377733ns 744729 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42378017ns 744734 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42378471ns 744742 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42378642ns 744745 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42378926ns 744750 1a110850 fd5ff06f jal x0, -44 +42379210ns 744755 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42379494ns 744760 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42379892ns 744767 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42380063ns 744770 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42380517ns 744778 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42380688ns 744781 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42380972ns 744786 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42381256ns 744791 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42381540ns 744796 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42381995ns 744804 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42382166ns 744807 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42382450ns 744812 1a110850 fd5ff06f jal x0, -44 +42382734ns 744817 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42383018ns 744822 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42383416ns 744829 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42383586ns 744832 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42384041ns 744840 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42384211ns 744843 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42384496ns 744848 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42384780ns 744853 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42385064ns 744858 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42385519ns 744866 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42385689ns 744869 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42385973ns 744874 1a110850 fd5ff06f jal x0, -44 +42386257ns 744879 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42386542ns 744884 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42386939ns 744891 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42387110ns 744894 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42387565ns 744902 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42387735ns 744905 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42388019ns 744910 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42388303ns 744915 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42388588ns 744920 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42389042ns 744928 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42389213ns 744931 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42389497ns 744936 1a110850 fd5ff06f jal x0, -44 +42389781ns 744941 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42390065ns 744946 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42390463ns 744953 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42390634ns 744956 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42391088ns 744964 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42391259ns 744967 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42391543ns 744972 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42391827ns 744977 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42392111ns 744982 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42392566ns 744990 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42392736ns 744993 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42393020ns 744998 1a110850 fd5ff06f jal x0, -44 +42393305ns 745003 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42393589ns 745008 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42393987ns 745015 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42394157ns 745018 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42394612ns 745026 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42394782ns 745029 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42395066ns 745034 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42395351ns 745039 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42395635ns 745044 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42396089ns 745052 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42396260ns 745055 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42396544ns 745060 1a110850 fd5ff06f jal x0, -44 +42396828ns 745065 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42397112ns 745070 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42397510ns 745077 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42397681ns 745080 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42398135ns 745088 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42398306ns 745091 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42398590ns 745096 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42398874ns 745101 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42399158ns 745106 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42399613ns 745114 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42399783ns 745117 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42400068ns 745122 1a110850 fd5ff06f jal x0, -44 +42400352ns 745127 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42400636ns 745132 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42401034ns 745139 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42401204ns 745142 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42401659ns 745150 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42401829ns 745153 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42402114ns 745158 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42402398ns 745163 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42402682ns 745168 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42403137ns 745176 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42403307ns 745179 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42403591ns 745184 1a110850 fd5ff06f jal x0, -44 +42403875ns 745189 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42404160ns 745194 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42404557ns 745201 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42404728ns 745204 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42405183ns 745212 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42405353ns 745215 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42405637ns 745220 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42405921ns 745225 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42406205ns 745230 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42406660ns 745238 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42406831ns 745241 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42407115ns 745246 1a110850 fd5ff06f jal x0, -44 +42407399ns 745251 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42407683ns 745256 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42408081ns 745263 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42408251ns 745266 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42408706ns 745274 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42408877ns 745277 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42409161ns 745282 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42409445ns 745287 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42409729ns 745292 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42410184ns 745300 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42410354ns 745303 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42410638ns 745308 1a110850 fd5ff06f jal x0, -44 +42410923ns 745313 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42411207ns 745318 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42411605ns 745325 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42411775ns 745328 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42412230ns 745336 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42412400ns 745339 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42412684ns 745344 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42412968ns 745349 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42413253ns 745354 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42413707ns 745362 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42413878ns 745365 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42414162ns 745370 1a110850 fd5ff06f jal x0, -44 +42414446ns 745375 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42414730ns 745380 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42415128ns 745387 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42415299ns 745390 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42415753ns 745398 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42415924ns 745401 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42416208ns 745406 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42416492ns 745411 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42416776ns 745416 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42417231ns 745424 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42417401ns 745427 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42417686ns 745432 1a110850 fd5ff06f jal x0, -44 +42417970ns 745437 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42418254ns 745442 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42418652ns 745449 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42418822ns 745452 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42419277ns 745460 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42419447ns 745463 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42419731ns 745468 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42420016ns 745473 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42420300ns 745478 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42420754ns 745486 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42420925ns 745489 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42421209ns 745494 1a110850 fd5ff06f jal x0, -44 +42421493ns 745499 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42421777ns 745504 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42422175ns 745511 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42422346ns 745514 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42422800ns 745522 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42422971ns 745525 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42423255ns 745530 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42423539ns 745535 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42423823ns 745540 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42424278ns 745548 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42424449ns 745551 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42424733ns 745556 1a110850 fd5ff06f jal x0, -44 +42425017ns 745561 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42425301ns 745566 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42425699ns 745573 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42425869ns 745576 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42426324ns 745584 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42426495ns 745587 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42426779ns 745592 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42427063ns 745597 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42427347ns 745602 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42427802ns 745610 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42427972ns 745613 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42428256ns 745618 1a110850 fd5ff06f jal x0, -44 +42428540ns 745623 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42428825ns 745628 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42429222ns 745635 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42429393ns 745638 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42429848ns 745646 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42430018ns 745649 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42430302ns 745654 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42430586ns 745659 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42430871ns 745664 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42431325ns 745672 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42431496ns 745675 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42431780ns 745680 1a110850 fd5ff06f jal x0, -44 +42432064ns 745685 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42432348ns 745690 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42432746ns 745697 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42432917ns 745700 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42433371ns 745708 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42433542ns 745711 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42433826ns 745716 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42434110ns 745721 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42434394ns 745726 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42434849ns 745734 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42435019ns 745737 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42435303ns 745742 1a110850 fd5ff06f jal x0, -44 +42435588ns 745747 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42435872ns 745752 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42436270ns 745759 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42436440ns 745762 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42436895ns 745770 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42437065ns 745773 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42437349ns 745778 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42437634ns 745783 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42437918ns 745788 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42438372ns 745796 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42438543ns 745799 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42438827ns 745804 1a110850 fd5ff06f jal x0, -44 +42439111ns 745809 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42439395ns 745814 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42439793ns 745821 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42439964ns 745824 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42440418ns 745832 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42440589ns 745835 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42440873ns 745840 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42441157ns 745845 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42441441ns 745850 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42441896ns 745858 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42442066ns 745861 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42442351ns 745866 1a110850 fd5ff06f jal x0, -44 +42442635ns 745871 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42442919ns 745876 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42443317ns 745883 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42443487ns 745886 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42443942ns 745894 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42444112ns 745897 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42444397ns 745902 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42444681ns 745907 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42444965ns 745912 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42445420ns 745920 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42445590ns 745923 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42445874ns 745928 1a110850 fd5ff06f jal x0, -44 +42446158ns 745933 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42446443ns 745938 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42446840ns 745945 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42447011ns 745948 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42447466ns 745956 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42447636ns 745959 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42447920ns 745964 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42448204ns 745969 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42448488ns 745974 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42448943ns 745982 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42449114ns 745985 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42449398ns 745990 1a110850 fd5ff06f jal x0, -44 +42449682ns 745995 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42449966ns 746000 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42450364ns 746007 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42450534ns 746010 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42450989ns 746018 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42451160ns 746021 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42451444ns 746026 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42451728ns 746031 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42452012ns 746036 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42452467ns 746044 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42452637ns 746047 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42452921ns 746052 1a110850 fd5ff06f jal x0, -44 +42453206ns 746057 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42453490ns 746062 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42453888ns 746069 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42454058ns 746072 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42454513ns 746080 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42454683ns 746083 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42454967ns 746088 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42455251ns 746093 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42455536ns 746098 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42455990ns 746106 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42456161ns 746109 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42456445ns 746114 1a110850 fd5ff06f jal x0, -44 +42456729ns 746119 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42457013ns 746124 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42457411ns 746131 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42457582ns 746134 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42458036ns 746142 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42458207ns 746145 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42458491ns 746150 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42458775ns 746155 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42459059ns 746160 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42459514ns 746168 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42459684ns 746171 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42459969ns 746176 1a110850 fd5ff06f jal x0, -44 +42460253ns 746181 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42460537ns 746186 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42460935ns 746193 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42461105ns 746196 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42461560ns 746204 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42461730ns 746207 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42462015ns 746212 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42462299ns 746217 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42462583ns 746222 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42463037ns 746230 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42463208ns 746233 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42463492ns 746238 1a110850 fd5ff06f jal x0, -44 +42463776ns 746243 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42464060ns 746248 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42464458ns 746255 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42464629ns 746258 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42465083ns 746266 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42465254ns 746269 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42465538ns 746274 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42465822ns 746279 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42466106ns 746284 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42466561ns 746292 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42466732ns 746295 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42467016ns 746300 1a110850 fd5ff06f jal x0, -44 +42467300ns 746305 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42467584ns 746310 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42467982ns 746317 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42468152ns 746320 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42468607ns 746328 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42468778ns 746331 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42469062ns 746336 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42469346ns 746341 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42469630ns 746346 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42470085ns 746354 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42470255ns 746357 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42470539ns 746362 1a110850 fd5ff06f jal x0, -44 +42470823ns 746367 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42471108ns 746372 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42471505ns 746379 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42471676ns 746382 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42472131ns 746390 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42472301ns 746393 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42472585ns 746398 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42472869ns 746403 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42473154ns 746408 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42473608ns 746416 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42473779ns 746419 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42474063ns 746424 1a110850 fd5ff06f jal x0, -44 +42474347ns 746429 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42474631ns 746434 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42475029ns 746441 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42475200ns 746444 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42475654ns 746452 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42475825ns 746455 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42476109ns 746460 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42476393ns 746465 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42476677ns 746470 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42477132ns 746478 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42477302ns 746481 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42477586ns 746486 1a110850 fd5ff06f jal x0, -44 +42477871ns 746491 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42478155ns 746496 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42478553ns 746503 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42478723ns 746506 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42479178ns 746514 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42479348ns 746517 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42479632ns 746522 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42479917ns 746527 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42480201ns 746532 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42480655ns 746540 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42480826ns 746543 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42481110ns 746548 1a110850 fd5ff06f jal x0, -44 +42481394ns 746553 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42481678ns 746558 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42482076ns 746565 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42482247ns 746568 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42482701ns 746576 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42482872ns 746579 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42483156ns 746584 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42483440ns 746589 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42483724ns 746594 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42484179ns 746602 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42484349ns 746605 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42484634ns 746610 1a110850 fd5ff06f jal x0, -44 +42484918ns 746615 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42485202ns 746620 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42485600ns 746627 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42485770ns 746630 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42486225ns 746638 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42486395ns 746641 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42486680ns 746646 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42486964ns 746651 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42487248ns 746656 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42487703ns 746664 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42487873ns 746667 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42488157ns 746672 1a110850 fd5ff06f jal x0, -44 +42488441ns 746677 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42488726ns 746682 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42489123ns 746689 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42489294ns 746692 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42489749ns 746700 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42489919ns 746703 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42490203ns 746708 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42490487ns 746713 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42490771ns 746718 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42491226ns 746726 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42491397ns 746729 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42491681ns 746734 1a110850 fd5ff06f jal x0, -44 +42491965ns 746739 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42492249ns 746744 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42492647ns 746751 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42492817ns 746754 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42493272ns 746762 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42493443ns 746765 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42493727ns 746770 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42494011ns 746775 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42494295ns 746780 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42494750ns 746788 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42494920ns 746791 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42495204ns 746796 1a110850 fd5ff06f jal x0, -44 +42495489ns 746801 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42495773ns 746806 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42496171ns 746813 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42496341ns 746816 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42496796ns 746824 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42496966ns 746827 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42497250ns 746832 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42497535ns 746837 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42497819ns 746842 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42498273ns 746850 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42498444ns 746853 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42498728ns 746858 1a110850 fd5ff06f jal x0, -44 +42499012ns 746863 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42499296ns 746868 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42499694ns 746875 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42499865ns 746878 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42500319ns 746886 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42500490ns 746889 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42500774ns 746894 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42501058ns 746899 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42501342ns 746904 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42501797ns 746912 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42501967ns 746915 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42502252ns 746920 1a110850 fd5ff06f jal x0, -44 +42502536ns 746925 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42502820ns 746930 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42503218ns 746937 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42503388ns 746940 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42503843ns 746948 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42504013ns 746951 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42504298ns 746956 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42504582ns 746961 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42504866ns 746966 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42505320ns 746974 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42505491ns 746977 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42505775ns 746982 1a110850 fd5ff06f jal x0, -44 +42506059ns 746987 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42506343ns 746992 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42506741ns 746999 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42506912ns 747002 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42507366ns 747010 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42507537ns 747013 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42507821ns 747018 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42508105ns 747023 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42508389ns 747028 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42508844ns 747036 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42509015ns 747039 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42509299ns 747044 1a110850 fd5ff06f jal x0, -44 +42509583ns 747049 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42509867ns 747054 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42510265ns 747061 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42510435ns 747064 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42510890ns 747072 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42511061ns 747075 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42511345ns 747080 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42511629ns 747085 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42511913ns 747090 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42512368ns 747098 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42512538ns 747101 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42512822ns 747106 1a110850 fd5ff06f jal x0, -44 +42513106ns 747111 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42513391ns 747116 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42513788ns 747123 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42513959ns 747126 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42514414ns 747134 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42514584ns 747137 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42514868ns 747142 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42515152ns 747147 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42515437ns 747152 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42515891ns 747160 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42516062ns 747163 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42516346ns 747168 1a110850 fd5ff06f jal x0, -44 +42516630ns 747173 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42516914ns 747178 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42517312ns 747185 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42517483ns 747188 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42517937ns 747196 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42518108ns 747199 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42518392ns 747204 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42518676ns 747209 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42518960ns 747214 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42519415ns 747222 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42519585ns 747225 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42519869ns 747230 1a110850 fd5ff06f jal x0, -44 +42520154ns 747235 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42520438ns 747240 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42520836ns 747247 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42521006ns 747250 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42521461ns 747258 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42521631ns 747261 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42521915ns 747266 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42522200ns 747271 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42522484ns 747276 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42522938ns 747284 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42523109ns 747287 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42523393ns 747292 1a110850 fd5ff06f jal x0, -44 +42523677ns 747297 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42523961ns 747302 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42524359ns 747309 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42524530ns 747312 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42524984ns 747320 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42525155ns 747323 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42525439ns 747328 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42525723ns 747333 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42526007ns 747338 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42526462ns 747346 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42526632ns 747349 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42526917ns 747354 1a110850 fd5ff06f jal x0, -44 +42527201ns 747359 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42527485ns 747364 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42527883ns 747371 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42528053ns 747374 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42528508ns 747382 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42528678ns 747385 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42528963ns 747390 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42529247ns 747395 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42529531ns 747400 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42529986ns 747408 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42530156ns 747411 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42530440ns 747416 1a110850 fd5ff06f jal x0, -44 +42530724ns 747421 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42531009ns 747426 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42531406ns 747433 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42531577ns 747436 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42532032ns 747444 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42532202ns 747447 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42532486ns 747452 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42532770ns 747457 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42533055ns 747462 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42533509ns 747470 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42533680ns 747473 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42533964ns 747478 1a110850 fd5ff06f jal x0, -44 +42534248ns 747483 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42534532ns 747488 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42534930ns 747495 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42535100ns 747498 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42535555ns 747506 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42535726ns 747509 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42536010ns 747514 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42536294ns 747519 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42536578ns 747524 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42537033ns 747532 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42537203ns 747535 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42537487ns 747540 1a110850 fd5ff06f jal x0, -44 +42537772ns 747545 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42538056ns 747550 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42538454ns 747557 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42538624ns 747560 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42539079ns 747568 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42539249ns 747571 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42539533ns 747576 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42539818ns 747581 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42540102ns 747586 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42540556ns 747594 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42540727ns 747597 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42541011ns 747602 1a110850 fd5ff06f jal x0, -44 +42541295ns 747607 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42541579ns 747612 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42541977ns 747619 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42542148ns 747622 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42542602ns 747630 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42542773ns 747633 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42543057ns 747638 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42543341ns 747643 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42543625ns 747648 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42544080ns 747656 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42544250ns 747659 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42544535ns 747664 1a110850 fd5ff06f jal x0, -44 +42544819ns 747669 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42545103ns 747674 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42545501ns 747681 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42545671ns 747684 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42546126ns 747692 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42546296ns 747695 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42546581ns 747700 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42546865ns 747705 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42547149ns 747710 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42547603ns 747718 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42547774ns 747721 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42548058ns 747726 1a110850 fd5ff06f jal x0, -44 +42548342ns 747731 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42548626ns 747736 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42549024ns 747743 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42549195ns 747746 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42549649ns 747754 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42549820ns 747757 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42550104ns 747762 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42550388ns 747767 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42550672ns 747772 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42551127ns 747780 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42551298ns 747783 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42551582ns 747788 1a110850 fd5ff06f jal x0, -44 +42551866ns 747793 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42552150ns 747798 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42552548ns 747805 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42552718ns 747808 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42553173ns 747816 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42553344ns 747819 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42553628ns 747824 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42553912ns 747829 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42554196ns 747834 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42554651ns 747842 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42554821ns 747845 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42555105ns 747850 1a110850 fd5ff06f jal x0, -44 +42555389ns 747855 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42555674ns 747860 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42556071ns 747867 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42556242ns 747870 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42556697ns 747878 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42556867ns 747881 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42557151ns 747886 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42557435ns 747891 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42557720ns 747896 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42558174ns 747904 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42558345ns 747907 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42558629ns 747912 1a110850 fd5ff06f jal x0, -44 +42558913ns 747917 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42559197ns 747922 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42559595ns 747929 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42559766ns 747932 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42560220ns 747940 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42560391ns 747943 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42560675ns 747948 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42560959ns 747953 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42561243ns 747958 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42561698ns 747966 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42561868ns 747969 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42562152ns 747974 1a110850 fd5ff06f jal x0, -44 +42562437ns 747979 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42562721ns 747984 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42563119ns 747991 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42563289ns 747994 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42563744ns 748002 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42563914ns 748005 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42564198ns 748010 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42564483ns 748015 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42564767ns 748020 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42565221ns 748028 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42565392ns 748031 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42565676ns 748036 1a110850 fd5ff06f jal x0, -44 +42565960ns 748041 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42566244ns 748046 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42566642ns 748053 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42566813ns 748056 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42567267ns 748064 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42567438ns 748067 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42567722ns 748072 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42568006ns 748077 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42568290ns 748082 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42568745ns 748090 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42568915ns 748093 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42569200ns 748098 1a110850 fd5ff06f jal x0, -44 +42569484ns 748103 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42569768ns 748108 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42570166ns 748115 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42570336ns 748118 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42570791ns 748126 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42570961ns 748129 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42571246ns 748134 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42571530ns 748139 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42571814ns 748144 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42572269ns 748152 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42572439ns 748155 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42572723ns 748160 1a110850 fd5ff06f jal x0, -44 +42573007ns 748165 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42573292ns 748170 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42573689ns 748177 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42573860ns 748180 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42574315ns 748188 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42574485ns 748191 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42574769ns 748196 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42575053ns 748201 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42575338ns 748206 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42575792ns 748214 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42575963ns 748217 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42576247ns 748222 1a110850 fd5ff06f jal x0, -44 +42576531ns 748227 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42576815ns 748232 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42577213ns 748239 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42577383ns 748242 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42577838ns 748250 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42578009ns 748253 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42578293ns 748258 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42578577ns 748263 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42578861ns 748268 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42579316ns 748276 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42579486ns 748279 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42579770ns 748284 1a110850 fd5ff06f jal x0, -44 +42580055ns 748289 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42580339ns 748294 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42580737ns 748301 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42580907ns 748304 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42581362ns 748312 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42581532ns 748315 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42581816ns 748320 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42582101ns 748325 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42582385ns 748330 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42582839ns 748338 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42583010ns 748341 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42583294ns 748346 1a110850 fd5ff06f jal x0, -44 +42583578ns 748351 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42583862ns 748356 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42584260ns 748363 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42584431ns 748366 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42584885ns 748374 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42585056ns 748377 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42585340ns 748382 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42585624ns 748387 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42585908ns 748392 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42586363ns 748400 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42586533ns 748403 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42586818ns 748408 1a110850 fd5ff06f jal x0, -44 +42587102ns 748413 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42587386ns 748418 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42587784ns 748425 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42587954ns 748428 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42588409ns 748436 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42588579ns 748439 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42588864ns 748444 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42589148ns 748449 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42589432ns 748454 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42589887ns 748462 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42590057ns 748465 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42590341ns 748470 1a110850 fd5ff06f jal x0, -44 +42590625ns 748475 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42590909ns 748480 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42591307ns 748487 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42591478ns 748490 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42591932ns 748498 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42592103ns 748501 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42592387ns 748506 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42592671ns 748511 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42592955ns 748516 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42593410ns 748524 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42593581ns 748527 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42593865ns 748532 1a110850 fd5ff06f jal x0, -44 +42594149ns 748537 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42594433ns 748542 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42594831ns 748549 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42595001ns 748552 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42595456ns 748560 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42595627ns 748563 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42595911ns 748568 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42596195ns 748573 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42596479ns 748578 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42596934ns 748586 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42597104ns 748589 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42597388ns 748594 1a110850 fd5ff06f jal x0, -44 +42597672ns 748599 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42597957ns 748604 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42598354ns 748611 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42598525ns 748614 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42598980ns 748622 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42599150ns 748625 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42599434ns 748630 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42599718ns 748635 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42600003ns 748640 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42600457ns 748648 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42600628ns 748651 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42600912ns 748656 1a110850 fd5ff06f jal x0, -44 +42601196ns 748661 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42601480ns 748666 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42601878ns 748673 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42602049ns 748676 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42602503ns 748684 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42602674ns 748687 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42602958ns 748692 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42603242ns 748697 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42603526ns 748702 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42603981ns 748710 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42604151ns 748713 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42604435ns 748718 1a110850 fd5ff06f jal x0, -44 +42604720ns 748723 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42605004ns 748728 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42605402ns 748735 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42605572ns 748738 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42606027ns 748746 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42606197ns 748749 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42606481ns 748754 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42606766ns 748759 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42607050ns 748764 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42607504ns 748772 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42607675ns 748775 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42607959ns 748780 1a110850 fd5ff06f jal x0, -44 +42608243ns 748785 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42608527ns 748790 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42608925ns 748797 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42609096ns 748800 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42609550ns 748808 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42609721ns 748811 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42610005ns 748816 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42610289ns 748821 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42610573ns 748826 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42611028ns 748834 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42611199ns 748837 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42611483ns 748842 1a110850 fd5ff06f jal x0, -44 +42611767ns 748847 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42612051ns 748852 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42612449ns 748859 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42612619ns 748862 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42613074ns 748870 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42613244ns 748873 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42613529ns 748878 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42613813ns 748883 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42614097ns 748888 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42614552ns 748896 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42614722ns 748899 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42615006ns 748904 1a110850 fd5ff06f jal x0, -44 +42615290ns 748909 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42615575ns 748914 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42615972ns 748921 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42616143ns 748924 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42616598ns 748932 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42616768ns 748935 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42617052ns 748940 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42617336ns 748945 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42617621ns 748950 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42618075ns 748958 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42618246ns 748961 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42618530ns 748966 1a110850 fd5ff06f jal x0, -44 +42618814ns 748971 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42619098ns 748976 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42619496ns 748983 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42619666ns 748986 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42620121ns 748994 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42620292ns 748997 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42620576ns 749002 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42620860ns 749007 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42621144ns 749012 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42621599ns 749020 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42621769ns 749023 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42622053ns 749028 1a110850 fd5ff06f jal x0, -44 +42622338ns 749033 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42622622ns 749038 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42623020ns 749045 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42623190ns 749048 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42623645ns 749056 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42623815ns 749059 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42624099ns 749064 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42624384ns 749069 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42624668ns 749074 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42625122ns 749082 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42625293ns 749085 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42625577ns 749090 1a110850 fd5ff06f jal x0, -44 +42625861ns 749095 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42626145ns 749100 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42626543ns 749107 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42626714ns 749110 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42627168ns 749118 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42627339ns 749121 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42627623ns 749126 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42627907ns 749131 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42628191ns 749136 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42628646ns 749144 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42628816ns 749147 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42629101ns 749152 1a110850 fd5ff06f jal x0, -44 +42629385ns 749157 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42629669ns 749162 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42630067ns 749169 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42630237ns 749172 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42630692ns 749180 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42630862ns 749183 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42631147ns 749188 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42631431ns 749193 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42631715ns 749198 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42632170ns 749206 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42632340ns 749209 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42632624ns 749214 1a110850 fd5ff06f jal x0, -44 +42632908ns 749219 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42633192ns 749224 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42633590ns 749231 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42633761ns 749234 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42634215ns 749242 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42634386ns 749245 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42634670ns 749250 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42634954ns 749255 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42635238ns 749260 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42635693ns 749268 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42635864ns 749271 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42636148ns 749276 1a110850 fd5ff06f jal x0, -44 +42636432ns 749281 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42636716ns 749286 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42637114ns 749293 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42637284ns 749296 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42637739ns 749304 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42637910ns 749307 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42638194ns 749312 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42638478ns 749317 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42638762ns 749322 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42639217ns 749330 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42639387ns 749333 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42639671ns 749338 1a110850 fd5ff06f jal x0, -44 +42639955ns 749343 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42640240ns 749348 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42640637ns 749355 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42640808ns 749358 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42641263ns 749366 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42641433ns 749369 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42641717ns 749374 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42642001ns 749379 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42642286ns 749384 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42642740ns 749392 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42642911ns 749395 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42643195ns 749400 1a110850 fd5ff06f jal x0, -44 +42643479ns 749405 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42643763ns 749410 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42644161ns 749417 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42644332ns 749420 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42644786ns 749428 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42644957ns 749431 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42645241ns 749436 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42645525ns 749441 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42645809ns 749446 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42646264ns 749454 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42646434ns 749457 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42646719ns 749462 1a110850 fd5ff06f jal x0, -44 +42647003ns 749467 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42647287ns 749472 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42647685ns 749479 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42647855ns 749482 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42648310ns 749490 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42648480ns 749493 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42648764ns 749498 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42649049ns 749503 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42649333ns 749508 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42649787ns 749516 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42649958ns 749519 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42650242ns 749524 1a110850 fd5ff06f jal x0, -44 +42650526ns 749529 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42650810ns 749534 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42651208ns 749541 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42651379ns 749544 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42651833ns 749552 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42652004ns 749555 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42652288ns 749560 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42652572ns 749565 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42652856ns 749570 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42653311ns 749578 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42653482ns 749581 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42653766ns 749586 1a110850 fd5ff06f jal x0, -44 +42654050ns 749591 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42654334ns 749596 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42654732ns 749603 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42654902ns 749606 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42655357ns 749614 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42655527ns 749617 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42655812ns 749622 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42656096ns 749627 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42656380ns 749632 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42656835ns 749640 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42657005ns 749643 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42657289ns 749648 1a110850 fd5ff06f jal x0, -44 +42657573ns 749653 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42657858ns 749658 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42658255ns 749665 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42658426ns 749668 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42658881ns 749676 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42659051ns 749679 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42659335ns 749684 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42659619ns 749689 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42659904ns 749694 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42660358ns 749702 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42660529ns 749705 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42660813ns 749710 1a110850 fd5ff06f jal x0, -44 +42661097ns 749715 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42661381ns 749720 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42661779ns 749727 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42661949ns 749730 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42662404ns 749738 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42662575ns 749741 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42662859ns 749746 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42663143ns 749751 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42663427ns 749756 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42663882ns 749764 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42664052ns 749767 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42664336ns 749772 1a110850 fd5ff06f jal x0, -44 +42664621ns 749777 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42664905ns 749782 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42665303ns 749789 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42665473ns 749792 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42665928ns 749800 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42666098ns 749803 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42666382ns 749808 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42666667ns 749813 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42666951ns 749818 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42667405ns 749826 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42667576ns 749829 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42667860ns 749834 1a110850 fd5ff06f jal x0, -44 +42668144ns 749839 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42668428ns 749844 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42668826ns 749851 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42668997ns 749854 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42669451ns 749862 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42669622ns 749865 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42669906ns 749870 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42670190ns 749875 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42670474ns 749880 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42670929ns 749888 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42671099ns 749891 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42671384ns 749896 1a110850 fd5ff06f jal x0, -44 +42671668ns 749901 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42671952ns 749906 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42672350ns 749913 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42672520ns 749916 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42672975ns 749924 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42673145ns 749927 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42673430ns 749932 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42673714ns 749937 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42673998ns 749942 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42674453ns 749950 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42674623ns 749953 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42674907ns 749958 1a110850 fd5ff06f jal x0, -44 +42675191ns 749963 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42675475ns 749968 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42675873ns 749975 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42676044ns 749978 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42676498ns 749986 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42676669ns 749989 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42676953ns 749994 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42677237ns 749999 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42677521ns 750004 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42677976ns 750012 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42678147ns 750015 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42678431ns 750020 1a110850 fd5ff06f jal x0, -44 +42678715ns 750025 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42678999ns 750030 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42679397ns 750037 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42679567ns 750040 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42680022ns 750048 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42680193ns 750051 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42680477ns 750056 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42680761ns 750061 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42681045ns 750066 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42681500ns 750074 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42681670ns 750077 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42681954ns 750082 1a110850 fd5ff06f jal x0, -44 +42682239ns 750087 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42682523ns 750092 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42682920ns 750099 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42683091ns 750102 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42683546ns 750110 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42683716ns 750113 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42684000ns 750118 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42684284ns 750123 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42684569ns 750128 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42685023ns 750136 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42685194ns 750139 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42685478ns 750144 1a110850 fd5ff06f jal x0, -44 +42685762ns 750149 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42686046ns 750154 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42686444ns 750161 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42686615ns 750164 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42687069ns 750172 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42687240ns 750175 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42687524ns 750180 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42687808ns 750185 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42688092ns 750190 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42688547ns 750198 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42688717ns 750201 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42689002ns 750206 1a110850 fd5ff06f jal x0, -44 +42689286ns 750211 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42689570ns 750216 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42689968ns 750223 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42690138ns 750226 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42690593ns 750234 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42690763ns 750237 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42691047ns 750242 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42691332ns 750247 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42691616ns 750252 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42692070ns 750260 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42692241ns 750263 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42692525ns 750268 1a110850 fd5ff06f jal x0, -44 +42692809ns 750273 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42693093ns 750278 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42693491ns 750285 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42693662ns 750288 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42694116ns 750296 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42694287ns 750299 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42694571ns 750304 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42694855ns 750309 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42695139ns 750314 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42695594ns 750322 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42695765ns 750325 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42696049ns 750330 1a110850 fd5ff06f jal x0, -44 +42696333ns 750335 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42696617ns 750340 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42697015ns 750347 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42697185ns 750350 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42697640ns 750358 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42697810ns 750361 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42698095ns 750366 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42698379ns 750371 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42698663ns 750376 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42699118ns 750384 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42699288ns 750387 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42699572ns 750392 1a110850 fd5ff06f jal x0, -44 +42699856ns 750397 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42700141ns 750402 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42700538ns 750409 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42700709ns 750412 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42701164ns 750420 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42701334ns 750423 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42701618ns 750428 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42701902ns 750433 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42702187ns 750438 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42702641ns 750446 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42702812ns 750449 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42703096ns 750454 1a110850 fd5ff06f jal x0, -44 +42703380ns 750459 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42703664ns 750464 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42704062ns 750471 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42704232ns 750474 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42704687ns 750482 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42704858ns 750485 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42705142ns 750490 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42705426ns 750495 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42705710ns 750500 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42706165ns 750508 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42706335ns 750511 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42706619ns 750516 1a110850 fd5ff06f jal x0, -44 +42706904ns 750521 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42707188ns 750526 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42707586ns 750533 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42707756ns 750536 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42708211ns 750544 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42708381ns 750547 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42708665ns 750552 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42708950ns 750557 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42709234ns 750562 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42709688ns 750570 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42709859ns 750573 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42710143ns 750578 1a110850 fd5ff06f jal x0, -44 +42710427ns 750583 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42710711ns 750588 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42711109ns 750595 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42711280ns 750598 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42711734ns 750606 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42711905ns 750609 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42712189ns 750614 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42712473ns 750619 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42712757ns 750624 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42713212ns 750632 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42713382ns 750635 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42713667ns 750640 1a110850 fd5ff06f jal x0, -44 +42713951ns 750645 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42714235ns 750650 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42714633ns 750657 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42714803ns 750660 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42715258ns 750668 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42715428ns 750671 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42715713ns 750676 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42715997ns 750681 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42716281ns 750686 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42716736ns 750694 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42716906ns 750697 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42717190ns 750702 1a110850 fd5ff06f jal x0, -44 +42717474ns 750707 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42717759ns 750712 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42718156ns 750719 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42718327ns 750722 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42718781ns 750730 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42718952ns 750733 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42719236ns 750738 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42719520ns 750743 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42719804ns 750748 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42720259ns 750756 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42720430ns 750759 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42720714ns 750764 1a110850 fd5ff06f jal x0, -44 +42720998ns 750769 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42721282ns 750774 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42721680ns 750781 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42721850ns 750784 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42722305ns 750792 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42722476ns 750795 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42722760ns 750800 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42723044ns 750805 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42723328ns 750810 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42723783ns 750818 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42723953ns 750821 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42724237ns 750826 1a110850 fd5ff06f jal x0, -44 +42724522ns 750831 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42724806ns 750836 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42725203ns 750843 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42725374ns 750846 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42725829ns 750854 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42725999ns 750857 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42726283ns 750862 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42726567ns 750867 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42726852ns 750872 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42727306ns 750880 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42727477ns 750883 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42727761ns 750888 1a110850 fd5ff06f jal x0, -44 +42728045ns 750893 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42728329ns 750898 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42728727ns 750905 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42728898ns 750908 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42729352ns 750916 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42729523ns 750919 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42729807ns 750924 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42730091ns 750929 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42730375ns 750934 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42730830ns 750942 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42731000ns 750945 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42731285ns 750950 1a110850 fd5ff06f jal x0, -44 +42731569ns 750955 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42731853ns 750960 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42732251ns 750967 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42732421ns 750970 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42732876ns 750978 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42733046ns 750981 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42733330ns 750986 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42733615ns 750991 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42733899ns 750996 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42734353ns 751004 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42734524ns 751007 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42734808ns 751012 1a110850 fd5ff06f jal x0, -44 +42735092ns 751017 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42735376ns 751022 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42735774ns 751029 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42735945ns 751032 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42736399ns 751040 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42736570ns 751043 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42736854ns 751048 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42737138ns 751053 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42737422ns 751058 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42737877ns 751066 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42738048ns 751069 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42738332ns 751074 1a110850 fd5ff06f jal x0, -44 +42738616ns 751079 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42738900ns 751084 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42739298ns 751091 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42739468ns 751094 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42739923ns 751102 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42740093ns 751105 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42740378ns 751110 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42740662ns 751115 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42740946ns 751120 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42741401ns 751128 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42741571ns 751131 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42741855ns 751136 1a110850 fd5ff06f jal x0, -44 +42742139ns 751141 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42742424ns 751146 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42742821ns 751153 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42742992ns 751156 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42743447ns 751164 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42743617ns 751167 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42743901ns 751172 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42744185ns 751177 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42744470ns 751182 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42744924ns 751190 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42745095ns 751193 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42745379ns 751198 1a110850 fd5ff06f jal x0, -44 +42745663ns 751203 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42745947ns 751208 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42746345ns 751215 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42746515ns 751218 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42746970ns 751226 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42747141ns 751229 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42747425ns 751234 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42747709ns 751239 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42747993ns 751244 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42748448ns 751252 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42748618ns 751255 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42748902ns 751260 1a110850 fd5ff06f jal x0, -44 +42749187ns 751265 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42749471ns 751270 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42749869ns 751277 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42750039ns 751280 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42750494ns 751288 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42750664ns 751291 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42750948ns 751296 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42751233ns 751301 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42751517ns 751306 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42751971ns 751314 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42752142ns 751317 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42752426ns 751322 1a110850 fd5ff06f jal x0, -44 +42752710ns 751327 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42752994ns 751332 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42753392ns 751339 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42753563ns 751342 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42754017ns 751350 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42754188ns 751353 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42754472ns 751358 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42754756ns 751363 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42755040ns 751368 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42755495ns 751376 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42755665ns 751379 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42755950ns 751384 1a110850 fd5ff06f jal x0, -44 +42756234ns 751389 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42756518ns 751394 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42756916ns 751401 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42757086ns 751404 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42757541ns 751412 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42757711ns 751415 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42757996ns 751420 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42758280ns 751425 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42758564ns 751430 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42759019ns 751438 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42759189ns 751441 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42759473ns 751446 1a110850 fd5ff06f jal x0, -44 +42759757ns 751451 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42760042ns 751456 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42760439ns 751463 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42760610ns 751466 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42761064ns 751474 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42761235ns 751477 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42761519ns 751482 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42761803ns 751487 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42762087ns 751492 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42762542ns 751500 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42762713ns 751503 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42762997ns 751508 1a110850 fd5ff06f jal x0, -44 +42763281ns 751513 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42763565ns 751518 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42763963ns 751525 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42764133ns 751528 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42764588ns 751536 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42764759ns 751539 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42765043ns 751544 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42765327ns 751549 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42765611ns 751554 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42766066ns 751562 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42766236ns 751565 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42766520ns 751570 1a110850 fd5ff06f jal x0, -44 +42766805ns 751575 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42767089ns 751580 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42767487ns 751587 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42767657ns 751590 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42768112ns 751598 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42768282ns 751601 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42768566ns 751606 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42768850ns 751611 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42769135ns 751616 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42769589ns 751624 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42769760ns 751627 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42770044ns 751632 1a110850 fd5ff06f jal x0, -44 +42770328ns 751637 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42770612ns 751642 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42771010ns 751649 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42771181ns 751652 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42771635ns 751660 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42771806ns 751663 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42772090ns 751668 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42772374ns 751673 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42772658ns 751678 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42773113ns 751686 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42773283ns 751689 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42773568ns 751694 1a110850 fd5ff06f jal x0, -44 +42773852ns 751699 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42774136ns 751704 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42774534ns 751711 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42774704ns 751714 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42775159ns 751722 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42775329ns 751725 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42775613ns 751730 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42775898ns 751735 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42776182ns 751740 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42776636ns 751748 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42776807ns 751751 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42777091ns 751756 1a110850 fd5ff06f jal x0, -44 +42777375ns 751761 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42777659ns 751766 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42778057ns 751773 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42778228ns 751776 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42778682ns 751784 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42778853ns 751787 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42779137ns 751792 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42779421ns 751797 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42779705ns 751802 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42780160ns 751810 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42780331ns 751813 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42780615ns 751818 1a110850 fd5ff06f jal x0, -44 +42780899ns 751823 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42781183ns 751828 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42781581ns 751835 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42781751ns 751838 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42782206ns 751846 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42782376ns 751849 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42782661ns 751854 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42782945ns 751859 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42783229ns 751864 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42783684ns 751872 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42783854ns 751875 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42784138ns 751880 1a110850 fd5ff06f jal x0, -44 +42784422ns 751885 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42784707ns 751890 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42785104ns 751897 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42785275ns 751900 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42785730ns 751908 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42785900ns 751911 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42786184ns 751916 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42786468ns 751921 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42786753ns 751926 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42787207ns 751934 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42787378ns 751937 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42787662ns 751942 1a110850 fd5ff06f jal x0, -44 +42787946ns 751947 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42788230ns 751952 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42788628ns 751959 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42788799ns 751962 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42789253ns 751970 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42789424ns 751973 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42789708ns 751978 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42789992ns 751983 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42790276ns 751988 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42790731ns 751996 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42790901ns 751999 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42791185ns 752004 1a110850 fd5ff06f jal x0, -44 +42791470ns 752009 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42791754ns 752014 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42792152ns 752021 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42792322ns 752024 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42792777ns 752032 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42792947ns 752035 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42793231ns 752040 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42793516ns 752045 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42793800ns 752050 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42794254ns 752058 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42794425ns 752061 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42794709ns 752066 1a110850 fd5ff06f jal x0, -44 +42794993ns 752071 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42795277ns 752076 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42795675ns 752083 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42795846ns 752086 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42796300ns 752094 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42796471ns 752097 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42796755ns 752102 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42797039ns 752107 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42797323ns 752112 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42797778ns 752120 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42797948ns 752123 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42798233ns 752128 1a110850 fd5ff06f jal x0, -44 +42798517ns 752133 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42798801ns 752138 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42799199ns 752145 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42799369ns 752148 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42799824ns 752156 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42799994ns 752159 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42800279ns 752164 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42800563ns 752169 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42800847ns 752174 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42801302ns 752182 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42801472ns 752185 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42801756ns 752190 1a110850 fd5ff06f jal x0, -44 +42802040ns 752195 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42802325ns 752200 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42802722ns 752207 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42802893ns 752210 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42803347ns 752218 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42803518ns 752221 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42803802ns 752226 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42804086ns 752231 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42804370ns 752236 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42804825ns 752244 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42804996ns 752247 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42805280ns 752252 1a110850 fd5ff06f jal x0, -44 +42805564ns 752257 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42805848ns 752262 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42806246ns 752269 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42806416ns 752272 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42806871ns 752280 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42807042ns 752283 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42807326ns 752288 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42807610ns 752293 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42807894ns 752298 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42808349ns 752306 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42808519ns 752309 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42808803ns 752314 1a110850 fd5ff06f jal x0, -44 +42809088ns 752319 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42809372ns 752324 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42809770ns 752331 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42809940ns 752334 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42810395ns 752342 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42810565ns 752345 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42810849ns 752350 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42811133ns 752355 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42811418ns 752360 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42811872ns 752368 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42812043ns 752371 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42812327ns 752376 1a110850 fd5ff06f jal x0, -44 +42812611ns 752381 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42812895ns 752386 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42813293ns 752393 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42813464ns 752396 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42813918ns 752404 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42814089ns 752407 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42814373ns 752412 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42814657ns 752417 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42814941ns 752422 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42815396ns 752430 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42815566ns 752433 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42815851ns 752438 1a110850 fd5ff06f jal x0, -44 +42816135ns 752443 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42816419ns 752448 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42816817ns 752455 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42816987ns 752458 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42817442ns 752466 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42817612ns 752469 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42817896ns 752474 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42818181ns 752479 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42818465ns 752484 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42818919ns 752492 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42819090ns 752495 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42819374ns 752500 1a110850 fd5ff06f jal x0, -44 +42819658ns 752505 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42819942ns 752510 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42820340ns 752517 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42820511ns 752520 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42820965ns 752528 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42821136ns 752531 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42821420ns 752536 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42821704ns 752541 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42821988ns 752546 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42822443ns 752554 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42822614ns 752557 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42822898ns 752562 1a110850 fd5ff06f jal x0, -44 +42823182ns 752567 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42823466ns 752572 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42823864ns 752579 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42824034ns 752582 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42824489ns 752590 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42824659ns 752593 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42824944ns 752598 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42825228ns 752603 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42825512ns 752608 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42825967ns 752616 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42826137ns 752619 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42826421ns 752624 1a110850 fd5ff06f jal x0, -44 +42826705ns 752629 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42826990ns 752634 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42827387ns 752641 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42827558ns 752644 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42828013ns 752652 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42828183ns 752655 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42828467ns 752660 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42828751ns 752665 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42829036ns 752670 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42829490ns 752678 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42829661ns 752681 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42829945ns 752686 1a110850 fd5ff06f jal x0, -44 +42830229ns 752691 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42830513ns 752696 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42830911ns 752703 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42831082ns 752706 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42831536ns 752714 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42831707ns 752717 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42831991ns 752722 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42832275ns 752727 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42832559ns 752732 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42833014ns 752740 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42833184ns 752743 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42833468ns 752748 1a110850 fd5ff06f jal x0, -44 +42833753ns 752753 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42834037ns 752758 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42834435ns 752765 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42834605ns 752768 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42835060ns 752776 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42835230ns 752779 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42835514ns 752784 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42835799ns 752789 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42836083ns 752794 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42836537ns 752802 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42836708ns 752805 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42836992ns 752810 1a110850 fd5ff06f jal x0, -44 +42837276ns 752815 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42837560ns 752820 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42837958ns 752827 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42838129ns 752830 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42838583ns 752838 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42838754ns 752841 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42839038ns 752846 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42839322ns 752851 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42839606ns 752856 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42840061ns 752864 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42840231ns 752867 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42840516ns 752872 1a110850 fd5ff06f jal x0, -44 +42840800ns 752877 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42841084ns 752882 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42841482ns 752889 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42841652ns 752892 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42842107ns 752900 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42842277ns 752903 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42842562ns 752908 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42842846ns 752913 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42843130ns 752918 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42843585ns 752926 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42843755ns 752929 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42844039ns 752934 1a110850 fd5ff06f jal x0, -44 +42844323ns 752939 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42844608ns 752944 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42845005ns 752951 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42845176ns 752954 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42845631ns 752962 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42845801ns 752965 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42846085ns 752970 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42846369ns 752975 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42846653ns 752980 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42847108ns 752988 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42847279ns 752991 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42847563ns 752996 1a110850 fd5ff06f jal x0, -44 +42847847ns 753001 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42848131ns 753006 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42848529ns 753013 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42848699ns 753016 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42849154ns 753024 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42849325ns 753027 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42849609ns 753032 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42849893ns 753037 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42850177ns 753042 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42850632ns 753050 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42850802ns 753053 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42851086ns 753058 1a110850 fd5ff06f jal x0, -44 +42851371ns 753063 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42851655ns 753068 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42852053ns 753075 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42852223ns 753078 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42852678ns 753086 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42852848ns 753089 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42853132ns 753094 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42853416ns 753099 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42853701ns 753104 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42854155ns 753112 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42854326ns 753115 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42854610ns 753120 1a110850 fd5ff06f jal x0, -44 +42854894ns 753125 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42855178ns 753130 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42855576ns 753137 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42855747ns 753140 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42856201ns 753148 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42856372ns 753151 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42856656ns 753156 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42856940ns 753161 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42857224ns 753166 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42857679ns 753174 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42857849ns 753177 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42858134ns 753182 1a110850 fd5ff06f jal x0, -44 +42858418ns 753187 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42858702ns 753192 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42859100ns 753199 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42859270ns 753202 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42859725ns 753210 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42859895ns 753213 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42860179ns 753218 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42860464ns 753223 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42860748ns 753228 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42861202ns 753236 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42861373ns 753239 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42861657ns 753244 1a110850 fd5ff06f jal x0, -44 +42861941ns 753249 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42862225ns 753254 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42862623ns 753261 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42862794ns 753264 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42863248ns 753272 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42863419ns 753275 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42863703ns 753280 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42863987ns 753285 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42864271ns 753290 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42864726ns 753298 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42864897ns 753301 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42865181ns 753306 1a110850 fd5ff06f jal x0, -44 +42865465ns 753311 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42865749ns 753316 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42866147ns 753323 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42866317ns 753326 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42866772ns 753334 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42866943ns 753337 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42867227ns 753342 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42867511ns 753347 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42867795ns 753352 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42868250ns 753360 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42868420ns 753363 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42868704ns 753368 1a110850 fd5ff06f jal x0, -44 +42868988ns 753373 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42869273ns 753378 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42869670ns 753385 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42869841ns 753388 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42870296ns 753396 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42870466ns 753399 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42870750ns 753404 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42871034ns 753409 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42871319ns 753414 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42871773ns 753422 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42871944ns 753425 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42872228ns 753430 1a110850 fd5ff06f jal x0, -44 +42872512ns 753435 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42872796ns 753440 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42873194ns 753447 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42873365ns 753450 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42873819ns 753458 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42873990ns 753461 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42874274ns 753466 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42874558ns 753471 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42874842ns 753476 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42875297ns 753484 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42875467ns 753487 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42875751ns 753492 1a110850 fd5ff06f jal x0, -44 +42876036ns 753497 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42876320ns 753502 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42876718ns 753509 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42876888ns 753512 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42877343ns 753520 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42877513ns 753523 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42877797ns 753528 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42878082ns 753533 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42878366ns 753538 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42878820ns 753546 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42878991ns 753549 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42879275ns 753554 1a110850 fd5ff06f jal x0, -44 +42879559ns 753559 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42879843ns 753564 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42880241ns 753571 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42880412ns 753574 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42880866ns 753582 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42881037ns 753585 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42881321ns 753590 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42881605ns 753595 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42881889ns 753600 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42882344ns 753608 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42882514ns 753611 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42882799ns 753616 1a110850 fd5ff06f jal x0, -44 +42883083ns 753621 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42883367ns 753626 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42883765ns 753633 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42883935ns 753636 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42884390ns 753644 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42884560ns 753647 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42884845ns 753652 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42885129ns 753657 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42885413ns 753662 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42885868ns 753670 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42886038ns 753673 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42886322ns 753678 1a110850 fd5ff06f jal x0, -44 +42886606ns 753683 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42886891ns 753688 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42887288ns 753695 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42887459ns 753698 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42887914ns 753706 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42888084ns 753709 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42888368ns 753714 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42888652ns 753719 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42888936ns 753724 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42889391ns 753732 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42889562ns 753735 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42889846ns 753740 1a110850 fd5ff06f jal x0, -44 +42890130ns 753745 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42890414ns 753750 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42890812ns 753757 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42890982ns 753760 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42891437ns 753768 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42891608ns 753771 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42891892ns 753776 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42892176ns 753781 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42892460ns 753786 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42892915ns 753794 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42893085ns 753797 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42893369ns 753802 1a110850 fd5ff06f jal x0, -44 +42893654ns 753807 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42893938ns 753812 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42894336ns 753819 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42894506ns 753822 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42894961ns 753830 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42895131ns 753833 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42895415ns 753838 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42895699ns 753843 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42895984ns 753848 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42896438ns 753856 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42896609ns 753859 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42896893ns 753864 1a110850 fd5ff06f jal x0, -44 +42897177ns 753869 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42897461ns 753874 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42897859ns 753881 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42898030ns 753884 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42898484ns 753892 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42898655ns 753895 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42898939ns 753900 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42899223ns 753905 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42899507ns 753910 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42899962ns 753918 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42900132ns 753921 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42900417ns 753926 1a110850 fd5ff06f jal x0, -44 +42900701ns 753931 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42900985ns 753936 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42901383ns 753943 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42901553ns 753946 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42902008ns 753954 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42902178ns 753957 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42902463ns 753962 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42902747ns 753967 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42903031ns 753972 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42903485ns 753980 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42903656ns 753983 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42903940ns 753988 1a110850 fd5ff06f jal x0, -44 +42904224ns 753993 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42904508ns 753998 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42904906ns 754005 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42905077ns 754008 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42905531ns 754016 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42905702ns 754019 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42905986ns 754024 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42906270ns 754029 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42906554ns 754034 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42907009ns 754042 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42907180ns 754045 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42907464ns 754050 1a110850 fd5ff06f jal x0, -44 +42907748ns 754055 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42908032ns 754060 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42908430ns 754067 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42908600ns 754070 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42909055ns 754078 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42909226ns 754081 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42909510ns 754086 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42909794ns 754091 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42910078ns 754096 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42910533ns 754104 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42910703ns 754107 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42910987ns 754112 1a110850 fd5ff06f jal x0, -44 +42911271ns 754117 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42911556ns 754122 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42911953ns 754129 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42912124ns 754132 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42912579ns 754140 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42912749ns 754143 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42913033ns 754148 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42913317ns 754153 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42913602ns 754158 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42914056ns 754166 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42914227ns 754169 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42914511ns 754174 1a110850 fd5ff06f jal x0, -44 +42914795ns 754179 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42915079ns 754184 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42915477ns 754191 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42915648ns 754194 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42916102ns 754202 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42916273ns 754205 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42916557ns 754210 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42916841ns 754215 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42917125ns 754220 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42917580ns 754228 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42917750ns 754231 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42918034ns 754236 1a110850 fd5ff06f jal x0, -44 +42918319ns 754241 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42918603ns 754246 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42919001ns 754253 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42919171ns 754256 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42919626ns 754264 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42919796ns 754267 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42920080ns 754272 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42920365ns 754277 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42920649ns 754282 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42921103ns 754290 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42921274ns 754293 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42921558ns 754298 1a110850 fd5ff06f jal x0, -44 +42921842ns 754303 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42922126ns 754308 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42922524ns 754315 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42922695ns 754318 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42923149ns 754326 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42923320ns 754329 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42923604ns 754334 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42923888ns 754339 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42924172ns 754344 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42924627ns 754352 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42924797ns 754355 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42925082ns 754360 1a110850 fd5ff06f jal x0, -44 +42925366ns 754365 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42925650ns 754370 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42926048ns 754377 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42926218ns 754380 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42926673ns 754388 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42926843ns 754391 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42927128ns 754396 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42927412ns 754401 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42927696ns 754406 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42928151ns 754414 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42928321ns 754417 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42928605ns 754422 1a110850 fd5ff06f jal x0, -44 +42928889ns 754427 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42929174ns 754432 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42929571ns 754439 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42929742ns 754442 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42930197ns 754450 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42930367ns 754453 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42930651ns 754458 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42930935ns 754463 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42931219ns 754468 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42931674ns 754476 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42931845ns 754479 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42932129ns 754484 1a110850 fd5ff06f jal x0, -44 +42932413ns 754489 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42932697ns 754494 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42933095ns 754501 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42933265ns 754504 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42933720ns 754512 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42933891ns 754515 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42934175ns 754520 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42934459ns 754525 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42934743ns 754530 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42935198ns 754538 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42935368ns 754541 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42935652ns 754546 1a110850 fd5ff06f jal x0, -44 +42935937ns 754551 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42936221ns 754556 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42936619ns 754563 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42936789ns 754566 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42937244ns 754574 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42937414ns 754577 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42937698ns 754582 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42937983ns 754587 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42938267ns 754592 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42938721ns 754600 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42938892ns 754603 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42939176ns 754608 1a110850 fd5ff06f jal x0, -44 +42939460ns 754613 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42939744ns 754618 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42940142ns 754625 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42940313ns 754628 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42940767ns 754636 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42940938ns 754639 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42941222ns 754644 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42941506ns 754649 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42941790ns 754654 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42942245ns 754662 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42942415ns 754665 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42942700ns 754670 1a110850 fd5ff06f jal x0, -44 +42942984ns 754675 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42943268ns 754680 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42943666ns 754687 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42943836ns 754690 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42944291ns 754698 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42944461ns 754701 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42944746ns 754706 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42945030ns 754711 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42945314ns 754716 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42945768ns 754724 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42945939ns 754727 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42946223ns 754732 1a110850 fd5ff06f jal x0, -44 +42946507ns 754737 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42946791ns 754742 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42947189ns 754749 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42947360ns 754752 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42947814ns 754760 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42947985ns 754763 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42948269ns 754768 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42948553ns 754773 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42948837ns 754778 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42949292ns 754786 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42949463ns 754789 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42949747ns 754794 1a110850 fd5ff06f jal x0, -44 +42950031ns 754799 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42950315ns 754804 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42950713ns 754811 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42950883ns 754814 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42951338ns 754822 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42951509ns 754825 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42951793ns 754830 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42952077ns 754835 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42952361ns 754840 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42952816ns 754848 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42952986ns 754851 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42953270ns 754856 1a110850 fd5ff06f jal x0, -44 +42953554ns 754861 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42953839ns 754866 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42954236ns 754873 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42954407ns 754876 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42954862ns 754884 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42955032ns 754887 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42955316ns 754892 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42955600ns 754897 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42955885ns 754902 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42956339ns 754910 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42956510ns 754913 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42956794ns 754918 1a110850 fd5ff06f jal x0, -44 +42957078ns 754923 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42957362ns 754928 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42957760ns 754935 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42957931ns 754938 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42958385ns 754946 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42958556ns 754949 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42958840ns 754954 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42959124ns 754959 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42959408ns 754964 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42959863ns 754972 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42960033ns 754975 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42960317ns 754980 1a110850 fd5ff06f jal x0, -44 +42960602ns 754985 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42960886ns 754990 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42961284ns 754997 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42961454ns 755000 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42961909ns 755008 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42962079ns 755011 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42962363ns 755016 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42962648ns 755021 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42962932ns 755026 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42963386ns 755034 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42963557ns 755037 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42963841ns 755042 1a110850 fd5ff06f jal x0, -44 +42964125ns 755047 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42964409ns 755052 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42964807ns 755059 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42964978ns 755062 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42965432ns 755070 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42965603ns 755073 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42965887ns 755078 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42966171ns 755083 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42966455ns 755088 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42966910ns 755096 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42967080ns 755099 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42967365ns 755104 1a110850 fd5ff06f jal x0, -44 +42967649ns 755109 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42967933ns 755114 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42968331ns 755121 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42968501ns 755124 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42968956ns 755132 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42969126ns 755135 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42969411ns 755140 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42969695ns 755145 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42969979ns 755150 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42970434ns 755158 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42970604ns 755161 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42970888ns 755166 1a110850 fd5ff06f jal x0, -44 +42971172ns 755171 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42971457ns 755176 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42971854ns 755183 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42972025ns 755186 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42972480ns 755194 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42972650ns 755197 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42972934ns 755202 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42973218ns 755207 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42973503ns 755212 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42973957ns 755220 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42974128ns 755223 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42974412ns 755228 1a110850 fd5ff06f jal x0, -44 +42974696ns 755233 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42974980ns 755238 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42975378ns 755245 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42975548ns 755248 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42976003ns 755256 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42976174ns 755259 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42976458ns 755264 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42976742ns 755269 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42977026ns 755274 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42977481ns 755282 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42977651ns 755285 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42977935ns 755290 1a110850 fd5ff06f jal x0, -44 +42978220ns 755295 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42978504ns 755300 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42978902ns 755307 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42979072ns 755310 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42979527ns 755318 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42979697ns 755321 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42979981ns 755326 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42980266ns 755331 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42980550ns 755336 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42981004ns 755344 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42981175ns 755347 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42981459ns 755352 1a110850 fd5ff06f jal x0, -44 +42981743ns 755357 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42982027ns 755362 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42982425ns 755369 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42982596ns 755372 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42983050ns 755380 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42983221ns 755383 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42983505ns 755388 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42983789ns 755393 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42984073ns 755398 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42984528ns 755406 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42984698ns 755409 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42984983ns 755414 1a110850 fd5ff06f jal x0, -44 +42985267ns 755419 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42985551ns 755424 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42985949ns 755431 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42986119ns 755434 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42986574ns 755442 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42986744ns 755445 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42987029ns 755450 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42987313ns 755455 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42987597ns 755460 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42988051ns 755468 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42988222ns 755471 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42988506ns 755476 1a110850 fd5ff06f jal x0, -44 +42988790ns 755481 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42989074ns 755486 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42989472ns 755493 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42989643ns 755496 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42990097ns 755504 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42990268ns 755507 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42990552ns 755512 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42990836ns 755517 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42991120ns 755522 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42991575ns 755530 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42991746ns 755533 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42992030ns 755538 1a110850 fd5ff06f jal x0, -44 +42992314ns 755543 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42992598ns 755548 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42992996ns 755555 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42993166ns 755558 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42993621ns 755566 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42993792ns 755569 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42994076ns 755574 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42994360ns 755579 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42994644ns 755584 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42995099ns 755592 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42995269ns 755595 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42995553ns 755600 1a110850 fd5ff06f jal x0, -44 +42995837ns 755605 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42996122ns 755610 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +42996519ns 755617 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42996690ns 755620 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42997145ns 755628 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +42997315ns 755631 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +42997599ns 755636 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42997883ns 755641 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +42998168ns 755646 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +42998622ns 755654 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +42998793ns 755657 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +42999077ns 755662 1a110850 fd5ff06f jal x0, -44 +42999361ns 755667 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +42999645ns 755672 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43000043ns 755679 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43000214ns 755682 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43000668ns 755690 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43000839ns 755693 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43001123ns 755698 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43001407ns 755703 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43001691ns 755708 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43002146ns 755716 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43002316ns 755719 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43002600ns 755724 1a110850 fd5ff06f jal x0, -44 +43002885ns 755729 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43003169ns 755734 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43003567ns 755741 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43003737ns 755744 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43004192ns 755752 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43004362ns 755755 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43004646ns 755760 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43004931ns 755765 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43005215ns 755770 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43005669ns 755778 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43005840ns 755781 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43006124ns 755786 1a110850 fd5ff06f jal x0, -44 +43006408ns 755791 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43006692ns 755796 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43007090ns 755803 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43007261ns 755806 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43007715ns 755814 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43007886ns 755817 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43008170ns 755822 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43008454ns 755827 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43008738ns 755832 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43009193ns 755840 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43009363ns 755843 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43009648ns 755848 1a110850 fd5ff06f jal x0, -44 +43009932ns 755853 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43010216ns 755858 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43010614ns 755865 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43010784ns 755868 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43011239ns 755876 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43011409ns 755879 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43011694ns 755884 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43011978ns 755889 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43012262ns 755894 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43012717ns 755902 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43012887ns 755905 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43013171ns 755910 1a110850 fd5ff06f jal x0, -44 +43013455ns 755915 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43013740ns 755920 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43014137ns 755927 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43014308ns 755930 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43014763ns 755938 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43014933ns 755941 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43015217ns 755946 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43015501ns 755951 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43015786ns 755956 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43016240ns 755964 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43016411ns 755967 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43016695ns 755972 1a110850 fd5ff06f jal x0, -44 +43016979ns 755977 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43017263ns 755982 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43017661ns 755989 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43017831ns 755992 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43018286ns 756000 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43018457ns 756003 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43018741ns 756008 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43019025ns 756013 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43019309ns 756018 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43019764ns 756026 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43019934ns 756029 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43020218ns 756034 1a110850 fd5ff06f jal x0, -44 +43020503ns 756039 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43020787ns 756044 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43021185ns 756051 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43021355ns 756054 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43021810ns 756062 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43021980ns 756065 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43022264ns 756070 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43022549ns 756075 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43022833ns 756080 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43023287ns 756088 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43023458ns 756091 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43023742ns 756096 1a110850 fd5ff06f jal x0, -44 +43024026ns 756101 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43024310ns 756106 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43024708ns 756113 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43024879ns 756116 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43025333ns 756124 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43025504ns 756127 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43025788ns 756132 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43026072ns 756137 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43026356ns 756142 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43026811ns 756150 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43026981ns 756153 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43027266ns 756158 1a110850 fd5ff06f jal x0, -44 +43027550ns 756163 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43027834ns 756168 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43028232ns 756175 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43028402ns 756178 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43028857ns 756186 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43029027ns 756189 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43029312ns 756194 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43029596ns 756199 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43029880ns 756204 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43030335ns 756212 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43030505ns 756215 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43030789ns 756220 1a110850 fd5ff06f jal x0, -44 +43031073ns 756225 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43031357ns 756230 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43031755ns 756237 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43031926ns 756240 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43032380ns 756248 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43032551ns 756251 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43032835ns 756256 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43033119ns 756261 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43033403ns 756266 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43033858ns 756274 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43034029ns 756277 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43034313ns 756282 1a110850 fd5ff06f jal x0, -44 +43034597ns 756287 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43034881ns 756292 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43035279ns 756299 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43035449ns 756302 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43035904ns 756310 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43036075ns 756313 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43036359ns 756318 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43036643ns 756323 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43036927ns 756328 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43037382ns 756336 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43037552ns 756339 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43037836ns 756344 1a110850 fd5ff06f jal x0, -44 +43038120ns 756349 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43038405ns 756354 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43038802ns 756361 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43038973ns 756364 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43039428ns 756372 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43039598ns 756375 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43039882ns 756380 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43040166ns 756385 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43040451ns 756390 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43040905ns 756398 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43041076ns 756401 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43041360ns 756406 1a110850 fd5ff06f jal x0, -44 +43041644ns 756411 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43041928ns 756416 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43042326ns 756423 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43042497ns 756426 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43042951ns 756434 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43043122ns 756437 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43043406ns 756442 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43043690ns 756447 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43043974ns 756452 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43044429ns 756460 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43044599ns 756463 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43044883ns 756468 1a110850 fd5ff06f jal x0, -44 +43045168ns 756473 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43045452ns 756478 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43045850ns 756485 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43046020ns 756488 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43046475ns 756496 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43046645ns 756499 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43046929ns 756504 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43047214ns 756509 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43047498ns 756514 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43047952ns 756522 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43048123ns 756525 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43048407ns 756530 1a110850 fd5ff06f jal x0, -44 +43048691ns 756535 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43048975ns 756540 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43049373ns 756547 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43049544ns 756550 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43049998ns 756558 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43050169ns 756561 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43050453ns 756566 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43050737ns 756571 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43051021ns 756576 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43051476ns 756584 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43051647ns 756587 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43051931ns 756592 1a110850 fd5ff06f jal x0, -44 +43052215ns 756597 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43052499ns 756602 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43052897ns 756609 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43053067ns 756612 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43053522ns 756620 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43053692ns 756623 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43053977ns 756628 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43054261ns 756633 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43054545ns 756638 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43055000ns 756646 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43055170ns 756649 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43055454ns 756654 1a110850 fd5ff06f jal x0, -44 +43055738ns 756659 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43056023ns 756664 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43056420ns 756671 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43056591ns 756674 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43057046ns 756682 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43057216ns 756685 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43057500ns 756690 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43057784ns 756695 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43058069ns 756700 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43058523ns 756708 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43058694ns 756711 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43058978ns 756716 1a110850 fd5ff06f jal x0, -44 +43059262ns 756721 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43059546ns 756726 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43059944ns 756733 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43060114ns 756736 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43060569ns 756744 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43060740ns 756747 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43061024ns 756752 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43061308ns 756757 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43061592ns 756762 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43062047ns 756770 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43062217ns 756773 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43062501ns 756778 1a110850 fd5ff06f jal x0, -44 +43062786ns 756783 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43063070ns 756788 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43063468ns 756795 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43063638ns 756798 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43064093ns 756806 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43064263ns 756809 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43064547ns 756814 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43064832ns 756819 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43065116ns 756824 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43065570ns 756832 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43065741ns 756835 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43066025ns 756840 1a110850 fd5ff06f jal x0, -44 +43066309ns 756845 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43066593ns 756850 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43066991ns 756857 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43067162ns 756860 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43067616ns 756868 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43067787ns 756871 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43068071ns 756876 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43068355ns 756881 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43068639ns 756886 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43069094ns 756894 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43069264ns 756897 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43069549ns 756902 1a110850 fd5ff06f jal x0, -44 +43069833ns 756907 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43070117ns 756912 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43070515ns 756919 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43070685ns 756922 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43071140ns 756930 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43071310ns 756933 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43071595ns 756938 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43071879ns 756943 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43072163ns 756948 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43072618ns 756956 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43072788ns 756959 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43073072ns 756964 1a110850 fd5ff06f jal x0, -44 +43073356ns 756969 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43073640ns 756974 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43074038ns 756981 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43074209ns 756984 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43074663ns 756992 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43074834ns 756995 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43075118ns 757000 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43075402ns 757005 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43075686ns 757010 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43076141ns 757018 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43076312ns 757021 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43076596ns 757026 1a110850 fd5ff06f jal x0, -44 +43076880ns 757031 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43077164ns 757036 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43077562ns 757043 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43077732ns 757046 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43078187ns 757054 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43078358ns 757057 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43078642ns 757062 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43078926ns 757067 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43079210ns 757072 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43079665ns 757080 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43079835ns 757083 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43080119ns 757088 1a110850 fd5ff06f jal x0, -44 +43080403ns 757093 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43080688ns 757098 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43081085ns 757105 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43081256ns 757108 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43081711ns 757116 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43081881ns 757119 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43082165ns 757124 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43082449ns 757129 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43082734ns 757134 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43083188ns 757142 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43083359ns 757145 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43083643ns 757150 1a110850 fd5ff06f jal x0, -44 +43083927ns 757155 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43084211ns 757160 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43084609ns 757167 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43084780ns 757170 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43085234ns 757178 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43085405ns 757181 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43085689ns 757186 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43085973ns 757191 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43086257ns 757196 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43086712ns 757204 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43086882ns 757207 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43087167ns 757212 1a110850 fd5ff06f jal x0, -44 +43087451ns 757217 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43087735ns 757222 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43088133ns 757229 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43088303ns 757232 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43088758ns 757240 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43088928ns 757243 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43089212ns 757248 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43089497ns 757253 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43089781ns 757258 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43090235ns 757266 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43090406ns 757269 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43090690ns 757274 1a110850 fd5ff06f jal x0, -44 +43090974ns 757279 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43091258ns 757284 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43091656ns 757291 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43091827ns 757294 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43092281ns 757302 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43092452ns 757305 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43092736ns 757310 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43093020ns 757315 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43093304ns 757320 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43093759ns 757328 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43093930ns 757331 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43094214ns 757336 1a110850 fd5ff06f jal x0, -44 +43094498ns 757341 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43094782ns 757346 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43095180ns 757353 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43095350ns 757356 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43095805ns 757364 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43095975ns 757367 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43096260ns 757372 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43096544ns 757377 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43096828ns 757382 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43097283ns 757390 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43097453ns 757393 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43097737ns 757398 1a110850 fd5ff06f jal x0, -44 +43098021ns 757403 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43098306ns 757408 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43098703ns 757415 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43098874ns 757418 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43099329ns 757426 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43099499ns 757429 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43099783ns 757434 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43100067ns 757439 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43100352ns 757444 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43100806ns 757452 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43100977ns 757455 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43101261ns 757460 1a110850 fd5ff06f jal x0, -44 +43101545ns 757465 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43101829ns 757470 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43102227ns 757477 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43102397ns 757480 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43102852ns 757488 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43103023ns 757491 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43103307ns 757496 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43103591ns 757501 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43103875ns 757506 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43104330ns 757514 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43104500ns 757517 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43104784ns 757522 1a110850 fd5ff06f jal x0, -44 +43105069ns 757527 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43105353ns 757532 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43105751ns 757539 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43105921ns 757542 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43106376ns 757550 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43106546ns 757553 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43106830ns 757558 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43107115ns 757563 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43107399ns 757568 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43107853ns 757576 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43108024ns 757579 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43108308ns 757584 1a110850 fd5ff06f jal x0, -44 +43108592ns 757589 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43108876ns 757594 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43109274ns 757601 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43109445ns 757604 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43109899ns 757612 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43110070ns 757615 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43110354ns 757620 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43110638ns 757625 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43110922ns 757630 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43111377ns 757638 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43111547ns 757641 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43111832ns 757646 1a110850 fd5ff06f jal x0, -44 +43112116ns 757651 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43112400ns 757656 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43112798ns 757663 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43112968ns 757666 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43113423ns 757674 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43113593ns 757677 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43113878ns 757682 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43114162ns 757687 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43114446ns 757692 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43114901ns 757700 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43115071ns 757703 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43115355ns 757708 1a110850 fd5ff06f jal x0, -44 +43115639ns 757713 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43115923ns 757718 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43116321ns 757725 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43116492ns 757728 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43116946ns 757736 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43117117ns 757739 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43117401ns 757744 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43117685ns 757749 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43117969ns 757754 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43118424ns 757762 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43118595ns 757765 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43118879ns 757770 1a110850 fd5ff06f jal x0, -44 +43119163ns 757775 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43119447ns 757780 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43119845ns 757787 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43120015ns 757790 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43120470ns 757798 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43120641ns 757801 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43120925ns 757806 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43121209ns 757811 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43121493ns 757816 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43121948ns 757824 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43122118ns 757827 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43122402ns 757832 1a110850 fd5ff06f jal x0, -44 +43122687ns 757837 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43122971ns 757842 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43123368ns 757849 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43123539ns 757852 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43123994ns 757860 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43124164ns 757863 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43124448ns 757868 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43124732ns 757873 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43125017ns 757878 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43125471ns 757886 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43125642ns 757889 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43125926ns 757894 1a110850 fd5ff06f jal x0, -44 +43126210ns 757899 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43126494ns 757904 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43126892ns 757911 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43127063ns 757914 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43127517ns 757922 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43127688ns 757925 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43127972ns 757930 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43128256ns 757935 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43128540ns 757940 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43128995ns 757948 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43129165ns 757951 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43129450ns 757956 1a110850 fd5ff06f jal x0, -44 +43129734ns 757961 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43130018ns 757966 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43130416ns 757973 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43130586ns 757976 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43131041ns 757984 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43131211ns 757987 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43131495ns 757992 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43131780ns 757997 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43132064ns 758002 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43132518ns 758010 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43132689ns 758013 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43132973ns 758018 1a110850 fd5ff06f jal x0, -44 +43133257ns 758023 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43133541ns 758028 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43133939ns 758035 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43134110ns 758038 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43134564ns 758046 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43134735ns 758049 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43135019ns 758054 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43135303ns 758059 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43135587ns 758064 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43136042ns 758072 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43136213ns 758075 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43136497ns 758080 1a110850 fd5ff06f jal x0, -44 +43136781ns 758085 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43137065ns 758090 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43137463ns 758097 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43137633ns 758100 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43138088ns 758108 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43138258ns 758111 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43138543ns 758116 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43138827ns 758121 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43139111ns 758126 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43139566ns 758134 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43139736ns 758137 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43140020ns 758142 1a110850 fd5ff06f jal x0, -44 +43140304ns 758147 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43140589ns 758152 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43140986ns 758159 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43141157ns 758162 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43141612ns 758170 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43141782ns 758173 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43142066ns 758178 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43142350ns 758183 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43142635ns 758188 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43143089ns 758196 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43143260ns 758199 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43143544ns 758204 1a110850 fd5ff06f jal x0, -44 +43143828ns 758209 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43144112ns 758214 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43144510ns 758221 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43144680ns 758224 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43145135ns 758232 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43145306ns 758235 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43145590ns 758240 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43145874ns 758245 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43146158ns 758250 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43146613ns 758258 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43146783ns 758261 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43147067ns 758266 1a110850 fd5ff06f jal x0, -44 +43147352ns 758271 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43147636ns 758276 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43148034ns 758283 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43148204ns 758286 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43148659ns 758294 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43148829ns 758297 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43149113ns 758302 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43149398ns 758307 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43149682ns 758312 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43150136ns 758320 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43150307ns 758323 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43150591ns 758328 1a110850 fd5ff06f jal x0, -44 +43150875ns 758333 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43151159ns 758338 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43151557ns 758345 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43151728ns 758348 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43152182ns 758356 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43152353ns 758359 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43152637ns 758364 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43152921ns 758369 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43153205ns 758374 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43153660ns 758382 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43153830ns 758385 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43154115ns 758390 1a110850 fd5ff06f jal x0, -44 +43154399ns 758395 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43154683ns 758400 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43155081ns 758407 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43155251ns 758410 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43155706ns 758418 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43155876ns 758421 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43156161ns 758426 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43156445ns 758431 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43156729ns 758436 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43157184ns 758444 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43157354ns 758447 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43157638ns 758452 1a110850 fd5ff06f jal x0, -44 +43157922ns 758457 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43158207ns 758462 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43158604ns 758469 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43158775ns 758472 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43159229ns 758480 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43159400ns 758483 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43159684ns 758488 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43159968ns 758493 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43160252ns 758498 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43160707ns 758506 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43160878ns 758509 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43161162ns 758514 1a110850 fd5ff06f jal x0, -44 +43161446ns 758519 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43161730ns 758524 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43162128ns 758531 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43162298ns 758534 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43162753ns 758542 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43162924ns 758545 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43163208ns 758550 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43163492ns 758555 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43163776ns 758560 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43164231ns 758568 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43164401ns 758571 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43164685ns 758576 1a110850 fd5ff06f jal x0, -44 +43164970ns 758581 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43165254ns 758586 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43165651ns 758593 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43165822ns 758596 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43166277ns 758604 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43166447ns 758607 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43166731ns 758612 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43167015ns 758617 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43167300ns 758622 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43167754ns 758630 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43167925ns 758633 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43168209ns 758638 1a110850 fd5ff06f jal x0, -44 +43168493ns 758643 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43168777ns 758648 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43169175ns 758655 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43169346ns 758658 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43169800ns 758666 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43169971ns 758669 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43170255ns 758674 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43170539ns 758679 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43170823ns 758684 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43171278ns 758692 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43171448ns 758695 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43171733ns 758700 1a110850 fd5ff06f jal x0, -44 +43172017ns 758705 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43172301ns 758710 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43172699ns 758717 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43172869ns 758720 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43173324ns 758728 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43173494ns 758731 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43173778ns 758736 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43174063ns 758741 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43174347ns 758746 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43174801ns 758754 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43174972ns 758757 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43175256ns 758762 1a110850 fd5ff06f jal x0, -44 +43175540ns 758767 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43175824ns 758772 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43176222ns 758779 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43176393ns 758782 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43176847ns 758790 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43177018ns 758793 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43177302ns 758798 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43177586ns 758803 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43177870ns 758808 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43178325ns 758816 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43178496ns 758819 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43178780ns 758824 1a110850 fd5ff06f jal x0, -44 +43179064ns 758829 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43179348ns 758834 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43179746ns 758841 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43179916ns 758844 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43180371ns 758852 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43180541ns 758855 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43180826ns 758860 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43181110ns 758865 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43181394ns 758870 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43181849ns 758878 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43182019ns 758881 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43182303ns 758886 1a110850 fd5ff06f jal x0, -44 +43182587ns 758891 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43182872ns 758896 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43183269ns 758903 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43183440ns 758906 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43183895ns 758914 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43184065ns 758917 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43184349ns 758922 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43184633ns 758927 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43184918ns 758932 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43185372ns 758940 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43185543ns 758943 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43185827ns 758948 1a110850 fd5ff06f jal x0, -44 +43186111ns 758953 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43186395ns 758958 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43186793ns 758965 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43186963ns 758968 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43187418ns 758976 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43187589ns 758979 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43187873ns 758984 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43188157ns 758989 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43188441ns 758994 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43188896ns 759002 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43189066ns 759005 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43189350ns 759010 1a110850 fd5ff06f jal x0, -44 +43189635ns 759015 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43189919ns 759020 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43190317ns 759027 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43190487ns 759030 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43190942ns 759038 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43191112ns 759041 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43191396ns 759046 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43191681ns 759051 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43191965ns 759056 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43192419ns 759064 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43192590ns 759067 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43192874ns 759072 1a110850 fd5ff06f jal x0, -44 +43193158ns 759077 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43193442ns 759082 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43193840ns 759089 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43194011ns 759092 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43194465ns 759100 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43194636ns 759103 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43194920ns 759108 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43195204ns 759113 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43195488ns 759118 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43195943ns 759126 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43196113ns 759129 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43196398ns 759134 1a110850 fd5ff06f jal x0, -44 +43196682ns 759139 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43196966ns 759144 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43197364ns 759151 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43197534ns 759154 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43197989ns 759162 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43198159ns 759165 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43198444ns 759170 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43198728ns 759175 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43199012ns 759180 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43199467ns 759188 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43199637ns 759191 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43199921ns 759196 1a110850 fd5ff06f jal x0, -44 +43200205ns 759201 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43200490ns 759206 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43200887ns 759213 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43201058ns 759216 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43201512ns 759224 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43201683ns 759227 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43201967ns 759232 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43202251ns 759237 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43202535ns 759242 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43202990ns 759250 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43203161ns 759253 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43203445ns 759258 1a110850 fd5ff06f jal x0, -44 +43203729ns 759263 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43204013ns 759268 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43204411ns 759275 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43204581ns 759278 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43205036ns 759286 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43205207ns 759289 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43205491ns 759294 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43205775ns 759299 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43206059ns 759304 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43206514ns 759312 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43206684ns 759315 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43206968ns 759320 1a110850 fd5ff06f jal x0, -44 +43207253ns 759325 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43207537ns 759330 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43207935ns 759337 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43208105ns 759340 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43208560ns 759348 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43208730ns 759351 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43209014ns 759356 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43209298ns 759361 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43209583ns 759366 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43210037ns 759374 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43210208ns 759377 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43210492ns 759382 1a110850 fd5ff06f jal x0, -44 +43210776ns 759387 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43211060ns 759392 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43211458ns 759399 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43211629ns 759402 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43212083ns 759410 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43212254ns 759413 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43212538ns 759418 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43212822ns 759423 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43213106ns 759428 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43213561ns 759436 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43213731ns 759439 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43214016ns 759444 1a110850 fd5ff06f jal x0, -44 +43214300ns 759449 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43214584ns 759454 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43214982ns 759461 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43215152ns 759464 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43215607ns 759472 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43215777ns 759475 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43216061ns 759480 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43216346ns 759485 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43216630ns 759490 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43217084ns 759498 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43217255ns 759501 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43217539ns 759506 1a110850 fd5ff06f jal x0, -44 +43217823ns 759511 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43218107ns 759516 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43218505ns 759523 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43218676ns 759526 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43219130ns 759534 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43219301ns 759537 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43219585ns 759542 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43219869ns 759547 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43220153ns 759552 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43220608ns 759560 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43220779ns 759563 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43221063ns 759568 1a110850 fd5ff06f jal x0, -44 +43221347ns 759573 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43221631ns 759578 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43222029ns 759585 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43222199ns 759588 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43222654ns 759596 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43222824ns 759599 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43223109ns 759604 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43223393ns 759609 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43223677ns 759614 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43224132ns 759622 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43224302ns 759625 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43224586ns 759630 1a110850 fd5ff06f jal x0, -44 +43224870ns 759635 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43225155ns 759640 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43225552ns 759647 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43225723ns 759650 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43226178ns 759658 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43226348ns 759661 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43226632ns 759666 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43226916ns 759671 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43227201ns 759676 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43227655ns 759684 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43227826ns 759687 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43228110ns 759692 1a110850 fd5ff06f jal x0, -44 +43228394ns 759697 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43228678ns 759702 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43229076ns 759709 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43229247ns 759712 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43229701ns 759720 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43229872ns 759723 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43230156ns 759728 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43230440ns 759733 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43230724ns 759738 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43231179ns 759746 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43231349ns 759749 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43231633ns 759754 1a110850 fd5ff06f jal x0, -44 +43231918ns 759759 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43232202ns 759764 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43232600ns 759771 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43232770ns 759774 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43233225ns 759782 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43233395ns 759785 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43233679ns 759790 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43233964ns 759795 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43234248ns 759800 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43234702ns 759808 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43234873ns 759811 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43235157ns 759816 1a110850 fd5ff06f jal x0, -44 +43235441ns 759821 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43235725ns 759826 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43236123ns 759833 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43236294ns 759836 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43236748ns 759844 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43236919ns 759847 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43237203ns 759852 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43237487ns 759857 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43237771ns 759862 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43238226ns 759870 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43238396ns 759873 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43238681ns 759878 1a110850 fd5ff06f jal x0, -44 +43238965ns 759883 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43239249ns 759888 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43239647ns 759895 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43239817ns 759898 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43240272ns 759906 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43240442ns 759909 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43240727ns 759914 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43241011ns 759919 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43241295ns 759924 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43241750ns 759932 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43241920ns 759935 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43242204ns 759940 1a110850 fd5ff06f jal x0, -44 +43242488ns 759945 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43242773ns 759950 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43243170ns 759957 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43243341ns 759960 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43243795ns 759968 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43243966ns 759971 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43244250ns 759976 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43244534ns 759981 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43244818ns 759986 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43245273ns 759994 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43245444ns 759997 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43245728ns 760002 1a110850 fd5ff06f jal x0, -44 +43246012ns 760007 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43246296ns 760012 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43246694ns 760019 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43246864ns 760022 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43247319ns 760030 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43247490ns 760033 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43247774ns 760038 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43248058ns 760043 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43248342ns 760048 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43248797ns 760056 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43248967ns 760059 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43249251ns 760064 1a110850 fd5ff06f jal x0, -44 +43249536ns 760069 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43249820ns 760074 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43250218ns 760081 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43250388ns 760084 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43250843ns 760092 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43251013ns 760095 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43251297ns 760100 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43251581ns 760105 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43251866ns 760110 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43252320ns 760118 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43252491ns 760121 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43252775ns 760126 1a110850 fd5ff06f jal x0, -44 +43253059ns 760131 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43253343ns 760136 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43253741ns 760143 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43253912ns 760146 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43254366ns 760154 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43254537ns 760157 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43254821ns 760162 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43255105ns 760167 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43255389ns 760172 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43255844ns 760180 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43256014ns 760183 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43256299ns 760188 1a110850 fd5ff06f jal x0, -44 +43256583ns 760193 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43256867ns 760198 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43257265ns 760205 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43257435ns 760208 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43257890ns 760216 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43258060ns 760219 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43258344ns 760224 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43258629ns 760229 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43258913ns 760234 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43259367ns 760242 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43259538ns 760245 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43259822ns 760250 1a110850 fd5ff06f jal x0, -44 +43260106ns 760255 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43260390ns 760260 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43260788ns 760267 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43260959ns 760270 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43261413ns 760278 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43261584ns 760281 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43261868ns 760286 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43262152ns 760291 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43262436ns 760296 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43262891ns 760304 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43263062ns 760307 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43263346ns 760312 1a110850 fd5ff06f jal x0, -44 +43263630ns 760317 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43263914ns 760322 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43264312ns 760329 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43264482ns 760332 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43264937ns 760340 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43265107ns 760343 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43265392ns 760348 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43265676ns 760353 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43265960ns 760358 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43266415ns 760366 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43266585ns 760369 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43266869ns 760374 1a110850 fd5ff06f jal x0, -44 +43267153ns 760379 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43267438ns 760384 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43267835ns 760391 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43268006ns 760394 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43268461ns 760402 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43268631ns 760405 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43268915ns 760410 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43269199ns 760415 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43269484ns 760420 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43269938ns 760428 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43270109ns 760431 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43270393ns 760436 1a110850 fd5ff06f jal x0, -44 +43270677ns 760441 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43270961ns 760446 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43271359ns 760453 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43271530ns 760456 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43271984ns 760464 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43272155ns 760467 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43272439ns 760472 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43272723ns 760477 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43273007ns 760482 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43273462ns 760490 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43273632ns 760493 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43273916ns 760498 1a110850 fd5ff06f jal x0, -44 +43274201ns 760503 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43274485ns 760508 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43274883ns 760515 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43275053ns 760518 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43275508ns 760526 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43275678ns 760529 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43275962ns 760534 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43276247ns 760539 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43276531ns 760544 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43276985ns 760552 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43277156ns 760555 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43277440ns 760560 1a110850 fd5ff06f jal x0, -44 +43277724ns 760565 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43278008ns 760570 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43278406ns 760577 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43278577ns 760580 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43279031ns 760588 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43279202ns 760591 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43279486ns 760596 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43279770ns 760601 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43280054ns 760606 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43280509ns 760614 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43280679ns 760617 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43280964ns 760622 1a110850 fd5ff06f jal x0, -44 +43281248ns 760627 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43281532ns 760632 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43281930ns 760639 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43282100ns 760642 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43282555ns 760650 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43282725ns 760653 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43283010ns 760658 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43283294ns 760663 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43283578ns 760668 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43284033ns 760676 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43284203ns 760679 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43284487ns 760684 1a110850 fd5ff06f jal x0, -44 +43284771ns 760689 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43285056ns 760694 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43285453ns 760701 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43285624ns 760704 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43286079ns 760712 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43286249ns 760715 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43286533ns 760720 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43286817ns 760725 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43287101ns 760730 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43287556ns 760738 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43287727ns 760741 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43288011ns 760746 1a110850 fd5ff06f jal x0, -44 +43288295ns 760751 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43288579ns 760756 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43288977ns 760763 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43289147ns 760766 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43289602ns 760774 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43289773ns 760777 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43290057ns 760782 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43290341ns 760787 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43290625ns 760792 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43291080ns 760800 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43291250ns 760803 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43291534ns 760808 1a110850 fd5ff06f jal x0, -44 +43291819ns 760813 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43292103ns 760818 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43292501ns 760825 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43292671ns 760828 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43293126ns 760836 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43293296ns 760839 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43293580ns 760844 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43293864ns 760849 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43294149ns 760854 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43294603ns 760862 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43294774ns 760865 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43295058ns 760870 1a110850 fd5ff06f jal x0, -44 +43295342ns 760875 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43295626ns 760880 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43296024ns 760887 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43296195ns 760890 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43296649ns 760898 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43296820ns 760901 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43297104ns 760906 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43297388ns 760911 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43297672ns 760916 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43298127ns 760924 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43298297ns 760927 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43298582ns 760932 1a110850 fd5ff06f jal x0, -44 +43298866ns 760937 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43299150ns 760942 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43299548ns 760949 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43299718ns 760952 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43300173ns 760960 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43300343ns 760963 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43300627ns 760968 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43300912ns 760973 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43301196ns 760978 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43301650ns 760986 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43301821ns 760989 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43302105ns 760994 1a110850 fd5ff06f jal x0, -44 +43302389ns 760999 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43302673ns 761004 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43303071ns 761011 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43303242ns 761014 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43303696ns 761022 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43303867ns 761025 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43304151ns 761030 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43304435ns 761035 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43304719ns 761040 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43305174ns 761048 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43305345ns 761051 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43305629ns 761056 1a110850 fd5ff06f jal x0, -44 +43305913ns 761061 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43306197ns 761066 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43306595ns 761073 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43306765ns 761076 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43307220ns 761084 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43307391ns 761087 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43307675ns 761092 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43307959ns 761097 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43308243ns 761102 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43308698ns 761110 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43308868ns 761113 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43309152ns 761118 1a110850 fd5ff06f jal x0, -44 +43309436ns 761123 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43309721ns 761128 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43310118ns 761135 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43310289ns 761138 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43310744ns 761146 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43310914ns 761149 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43311198ns 761154 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43311482ns 761159 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43311767ns 761164 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43312221ns 761172 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43312392ns 761175 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43312676ns 761180 1a110850 fd5ff06f jal x0, -44 +43312960ns 761185 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43313244ns 761190 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43313642ns 761197 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43313813ns 761200 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43314267ns 761208 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43314438ns 761211 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43314722ns 761216 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43315006ns 761221 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43315290ns 761226 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43315745ns 761234 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43315915ns 761237 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43316199ns 761242 1a110850 fd5ff06f jal x0, -44 +43316484ns 761247 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43316768ns 761252 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43317166ns 761259 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43317336ns 761262 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43317791ns 761270 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43317961ns 761273 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43318245ns 761278 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43318530ns 761283 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43318814ns 761288 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43319268ns 761296 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43319439ns 761299 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43319723ns 761304 1a110850 fd5ff06f jal x0, -44 +43320007ns 761309 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43320291ns 761314 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43320689ns 761321 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43320860ns 761324 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43321314ns 761332 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43321485ns 761335 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43321769ns 761340 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43322053ns 761345 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43322337ns 761350 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43322792ns 761358 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43322962ns 761361 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43323247ns 761366 1a110850 fd5ff06f jal x0, -44 +43323531ns 761371 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43323815ns 761376 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43324213ns 761383 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43324383ns 761386 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43324838ns 761394 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43325008ns 761397 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43325293ns 761402 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43325577ns 761407 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43325861ns 761412 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43326316ns 761420 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43326486ns 761423 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43326770ns 761428 1a110850 fd5ff06f jal x0, -44 +43327054ns 761433 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43327339ns 761438 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43327736ns 761445 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43327907ns 761448 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43328362ns 761456 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43328532ns 761459 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43328816ns 761464 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43329100ns 761469 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43329384ns 761474 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43329839ns 761482 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43330010ns 761485 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43330294ns 761490 1a110850 fd5ff06f jal x0, -44 +43330578ns 761495 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43330862ns 761500 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43331260ns 761507 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43331430ns 761510 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43331885ns 761518 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43332056ns 761521 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43332340ns 761526 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43332624ns 761531 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43332908ns 761536 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43333363ns 761544 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43333533ns 761547 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43333817ns 761552 1a110850 fd5ff06f jal x0, -44 +43334102ns 761557 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43334386ns 761562 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43334784ns 761569 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43334954ns 761572 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43335409ns 761580 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43335579ns 761583 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43335863ns 761588 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43336147ns 761593 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43336432ns 761598 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43336886ns 761606 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43337057ns 761609 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43337341ns 761614 1a110850 fd5ff06f jal x0, -44 +43337625ns 761619 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43337909ns 761624 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43338307ns 761631 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43338478ns 761634 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43338932ns 761642 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43339103ns 761645 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43339387ns 761650 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43339671ns 761655 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43339955ns 761660 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43340410ns 761668 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43340580ns 761671 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43340865ns 761676 1a110850 fd5ff06f jal x0, -44 +43341149ns 761681 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43341433ns 761686 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43341831ns 761693 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43342001ns 761696 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43342456ns 761704 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43342626ns 761707 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43342911ns 761712 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43343195ns 761717 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43343479ns 761722 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43343933ns 761730 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43344104ns 761733 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43344388ns 761738 1a110850 fd5ff06f jal x0, -44 +43344672ns 761743 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43344956ns 761748 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43345354ns 761755 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43345525ns 761758 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43345979ns 761766 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43346150ns 761769 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43346434ns 761774 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43346718ns 761779 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43347002ns 761784 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43347457ns 761792 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43347628ns 761795 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43347912ns 761800 1a110850 fd5ff06f jal x0, -44 +43348196ns 761805 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43348480ns 761810 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43348878ns 761817 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43349048ns 761820 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43349503ns 761828 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43349674ns 761831 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43349958ns 761836 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43350242ns 761841 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43350526ns 761846 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43350981ns 761854 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43351151ns 761857 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43351435ns 761862 1a110850 fd5ff06f jal x0, -44 +43351719ns 761867 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43352004ns 761872 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43352401ns 761879 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43352572ns 761882 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43353027ns 761890 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43353197ns 761893 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43353481ns 761898 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43353765ns 761903 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43354050ns 761908 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43354504ns 761916 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43354675ns 761919 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43354959ns 761924 1a110850 fd5ff06f jal x0, -44 +43355243ns 761929 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43355527ns 761934 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43355925ns 761941 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43356096ns 761944 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43356550ns 761952 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43356721ns 761955 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43357005ns 761960 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43357289ns 761965 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43357573ns 761970 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43358028ns 761978 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43358198ns 761981 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43358482ns 761986 1a110850 fd5ff06f jal x0, -44 +43358767ns 761991 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43359051ns 761996 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43359449ns 762003 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43359619ns 762006 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43360074ns 762014 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43360244ns 762017 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43360528ns 762022 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43360813ns 762027 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43361097ns 762032 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43361551ns 762040 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43361722ns 762043 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43362006ns 762048 1a110850 fd5ff06f jal x0, -44 +43362290ns 762053 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43362574ns 762058 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43362972ns 762065 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43363143ns 762068 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43363597ns 762076 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43363768ns 762079 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43364052ns 762084 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43364336ns 762089 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43364620ns 762094 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43365075ns 762102 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43365245ns 762105 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43365530ns 762110 1a110850 fd5ff06f jal x0, -44 +43365814ns 762115 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43366098ns 762120 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43366496ns 762127 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43366666ns 762130 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43367121ns 762138 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43367291ns 762141 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43367576ns 762146 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43367860ns 762151 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43368144ns 762156 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43368599ns 762164 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43368769ns 762167 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43369053ns 762172 1a110850 fd5ff06f jal x0, -44 +43369337ns 762177 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43369622ns 762182 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43370019ns 762189 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43370190ns 762192 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43370645ns 762200 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43370815ns 762203 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43371099ns 762208 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43371383ns 762213 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43371667ns 762218 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43372122ns 762226 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43372293ns 762229 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43372577ns 762234 1a110850 fd5ff06f jal x0, -44 +43372861ns 762239 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43373145ns 762244 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43373543ns 762251 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43373713ns 762254 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43374168ns 762262 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43374339ns 762265 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43374623ns 762270 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43374907ns 762275 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43375191ns 762280 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43375646ns 762288 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43375816ns 762291 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43376100ns 762296 1a110850 fd5ff06f jal x0, -44 +43376385ns 762301 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43376669ns 762306 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43377067ns 762313 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43377237ns 762316 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43377692ns 762324 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43377862ns 762327 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43378146ns 762332 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43378431ns 762337 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43378715ns 762342 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43379169ns 762350 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43379340ns 762353 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43379624ns 762358 1a110850 fd5ff06f jal x0, -44 +43379908ns 762363 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43380192ns 762368 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43380590ns 762375 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43380761ns 762378 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43381215ns 762386 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43381386ns 762389 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43381670ns 762394 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43381954ns 762399 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43382238ns 762404 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43382693ns 762412 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43382863ns 762415 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43383148ns 762420 1a110850 fd5ff06f jal x0, -44 +43383432ns 762425 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43383716ns 762430 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43384114ns 762437 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43384284ns 762440 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43384739ns 762448 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43384909ns 762451 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43385194ns 762456 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43385478ns 762461 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43385762ns 762466 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43386216ns 762474 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43386387ns 762477 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43386671ns 762482 1a110850 fd5ff06f jal x0, -44 +43386955ns 762487 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43387239ns 762492 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43387637ns 762499 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43387808ns 762502 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43388262ns 762510 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43388433ns 762513 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43388717ns 762518 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43389001ns 762523 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43389285ns 762528 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43389740ns 762536 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43389911ns 762539 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43390195ns 762544 1a110850 fd5ff06f jal x0, -44 +43390479ns 762549 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43390763ns 762554 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43391161ns 762561 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43391331ns 762564 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43391786ns 762572 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43391957ns 762575 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43392241ns 762580 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43392525ns 762585 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43392809ns 762590 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43393264ns 762598 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43393434ns 762601 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43393718ns 762606 1a110850 fd5ff06f jal x0, -44 +43394002ns 762611 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43394287ns 762616 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43394684ns 762623 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43394855ns 762626 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43395310ns 762634 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43395480ns 762637 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43395764ns 762642 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43396048ns 762647 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43396333ns 762652 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43396787ns 762660 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43396958ns 762663 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43397242ns 762668 1a110850 fd5ff06f jal x0, -44 +43397526ns 762673 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43397810ns 762678 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43398208ns 762685 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43398379ns 762688 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43398833ns 762696 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43399004ns 762699 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43399288ns 762704 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43399572ns 762709 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43399856ns 762714 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43400311ns 762722 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43400481ns 762725 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43400765ns 762730 1a110850 fd5ff06f jal x0, -44 +43401050ns 762735 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43401334ns 762740 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43401732ns 762747 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43401902ns 762750 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43402357ns 762758 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43402527ns 762761 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43402811ns 762766 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43403096ns 762771 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43403380ns 762776 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43403834ns 762784 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43404005ns 762787 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43404289ns 762792 1a110850 fd5ff06f jal x0, -44 +43404573ns 762797 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43404857ns 762802 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43405255ns 762809 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43405426ns 762812 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43405880ns 762820 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43406051ns 762823 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43406335ns 762828 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43406619ns 762833 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43406903ns 762838 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43407358ns 762846 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43407528ns 762849 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43407813ns 762854 1a110850 fd5ff06f jal x0, -44 +43408097ns 762859 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43408381ns 762864 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43408779ns 762871 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43408949ns 762874 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43409404ns 762882 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43409574ns 762885 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43409859ns 762890 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43410143ns 762895 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43410427ns 762900 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43410882ns 762908 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43411052ns 762911 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43411336ns 762916 1a110850 fd5ff06f jal x0, -44 +43411620ns 762921 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43411905ns 762926 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43412302ns 762933 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43412473ns 762936 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43412928ns 762944 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43413098ns 762947 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43413382ns 762952 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43413666ns 762957 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43413951ns 762962 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43414405ns 762970 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43414576ns 762973 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43414860ns 762978 1a110850 fd5ff06f jal x0, -44 +43415144ns 762983 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43415428ns 762988 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43415826ns 762995 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43415996ns 762998 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43416451ns 763006 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43416622ns 763009 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43416906ns 763014 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43417190ns 763019 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43417474ns 763024 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43417929ns 763032 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43418099ns 763035 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43418383ns 763040 1a110850 fd5ff06f jal x0, -44 +43418668ns 763045 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43418952ns 763050 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43419350ns 763057 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43419520ns 763060 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43419975ns 763068 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43420145ns 763071 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43420429ns 763076 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43420714ns 763081 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43420998ns 763086 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43421452ns 763094 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43421623ns 763097 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43421907ns 763102 1a110850 fd5ff06f jal x0, -44 +43422191ns 763107 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43422475ns 763112 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43422873ns 763119 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43423044ns 763122 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43423498ns 763130 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43423669ns 763133 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43423953ns 763138 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43424237ns 763143 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43424521ns 763148 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43424976ns 763156 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43425146ns 763159 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43425431ns 763164 1a110850 fd5ff06f jal x0, -44 +43425715ns 763169 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43425999ns 763174 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43426397ns 763181 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43426567ns 763184 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43427022ns 763192 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43427192ns 763195 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43427477ns 763200 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43427761ns 763205 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43428045ns 763210 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43428499ns 763218 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43428670ns 763221 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43428954ns 763226 1a110850 fd5ff06f jal x0, -44 +43429238ns 763231 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43429522ns 763236 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43429920ns 763243 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43430091ns 763246 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43430545ns 763254 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43430716ns 763257 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43431000ns 763262 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43431284ns 763267 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43431568ns 763272 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43432023ns 763280 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43432194ns 763283 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43432478ns 763288 1a110850 fd5ff06f jal x0, -44 +43432762ns 763293 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43433046ns 763298 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43433444ns 763305 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43433614ns 763308 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43434069ns 763316 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43434240ns 763319 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43434524ns 763324 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43434808ns 763329 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43435092ns 763334 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43435547ns 763342 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43435717ns 763345 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43436001ns 763350 1a110850 fd5ff06f jal x0, -44 +43436285ns 763355 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43436570ns 763360 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43436967ns 763367 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43437138ns 763370 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43437593ns 763378 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43437763ns 763381 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43438047ns 763386 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43438331ns 763391 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43438616ns 763396 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43439070ns 763404 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43439241ns 763407 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43439525ns 763412 1a110850 fd5ff06f jal x0, -44 +43439809ns 763417 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43440093ns 763422 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43440491ns 763429 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43440662ns 763432 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43441116ns 763440 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43441287ns 763443 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43441571ns 763448 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43441855ns 763453 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43442139ns 763458 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43442594ns 763466 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43442764ns 763469 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43443048ns 763474 1a110850 fd5ff06f jal x0, -44 +43443333ns 763479 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43443617ns 763484 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43444015ns 763491 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43444185ns 763494 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43444640ns 763502 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43444810ns 763505 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43445094ns 763510 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43445379ns 763515 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43445663ns 763520 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43446117ns 763528 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43446288ns 763531 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43446572ns 763536 1a110850 fd5ff06f jal x0, -44 +43446856ns 763541 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43447140ns 763546 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43447538ns 763553 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43447709ns 763556 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43448163ns 763564 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43448334ns 763567 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43448618ns 763572 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43448902ns 763577 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43449186ns 763582 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43449641ns 763590 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43449811ns 763593 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43450096ns 763598 1a110850 fd5ff06f jal x0, -44 +43450380ns 763603 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43450664ns 763608 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43451062ns 763615 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43451232ns 763618 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43451687ns 763626 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43451857ns 763629 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43452142ns 763634 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43452426ns 763639 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43452710ns 763644 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43453165ns 763652 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43453335ns 763655 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43453619ns 763660 1a110850 fd5ff06f jal x0, -44 +43453903ns 763665 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43454188ns 763670 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43454585ns 763677 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43454756ns 763680 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43455211ns 763688 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43455381ns 763691 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43455665ns 763696 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43455949ns 763701 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43456234ns 763706 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43456688ns 763714 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43456859ns 763717 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43457143ns 763722 1a110850 fd5ff06f jal x0, -44 +43457427ns 763727 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43457711ns 763732 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43458109ns 763739 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43458279ns 763742 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43458734ns 763750 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43458905ns 763753 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43459189ns 763758 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43459473ns 763763 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43459757ns 763768 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43460212ns 763776 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43460382ns 763779 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43460666ns 763784 1a110850 fd5ff06f jal x0, -44 +43460951ns 763789 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43461235ns 763794 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43461633ns 763801 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43461803ns 763804 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43462258ns 763812 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43462428ns 763815 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43462712ns 763820 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43462997ns 763825 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43463281ns 763830 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43463735ns 763838 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43463906ns 763841 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43464190ns 763846 1a110850 fd5ff06f jal x0, -44 +43464474ns 763851 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43464758ns 763856 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43465156ns 763863 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43465327ns 763866 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43465781ns 763874 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43465952ns 763877 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43466236ns 763882 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43466520ns 763887 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43466804ns 763892 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43467259ns 763900 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43467429ns 763903 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43467714ns 763908 1a110850 fd5ff06f jal x0, -44 +43467998ns 763913 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43468282ns 763918 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43468680ns 763925 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43468850ns 763928 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43469305ns 763936 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43469475ns 763939 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43469760ns 763944 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43470044ns 763949 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43470328ns 763954 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43470783ns 763962 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43470953ns 763965 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43471237ns 763970 1a110850 fd5ff06f jal x0, -44 +43471521ns 763975 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43471805ns 763980 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43472203ns 763987 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43472374ns 763990 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43472828ns 763998 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43472999ns 764001 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43473283ns 764006 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43473567ns 764011 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43473851ns 764016 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43474306ns 764024 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43474477ns 764027 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43474761ns 764032 1a110850 fd5ff06f jal x0, -44 +43475045ns 764037 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43475329ns 764042 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43475727ns 764049 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43475897ns 764052 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43476352ns 764060 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43476523ns 764063 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43476807ns 764068 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43477091ns 764073 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43477375ns 764078 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43477830ns 764086 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43478000ns 764089 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43478284ns 764094 1a110850 fd5ff06f jal x0, -44 +43478568ns 764099 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43478853ns 764104 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43479250ns 764111 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43479421ns 764114 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43479876ns 764122 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43480046ns 764125 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43480330ns 764130 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43480614ns 764135 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43480899ns 764140 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43481353ns 764148 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43481524ns 764151 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43481808ns 764156 1a110850 fd5ff06f jal x0, -44 +43482092ns 764161 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43482376ns 764166 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43482774ns 764173 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43482945ns 764176 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43483399ns 764184 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43483570ns 764187 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43483854ns 764192 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43484138ns 764197 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43484422ns 764202 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43484877ns 764210 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43485047ns 764213 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43485331ns 764218 1a110850 fd5ff06f jal x0, -44 +43485616ns 764223 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43485900ns 764228 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43486298ns 764235 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43486468ns 764238 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43486923ns 764246 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43487093ns 764249 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43487377ns 764254 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43487662ns 764259 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43487946ns 764264 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43488400ns 764272 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43488571ns 764275 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43488855ns 764280 1a110850 fd5ff06f jal x0, -44 +43489139ns 764285 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43489423ns 764290 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43489821ns 764297 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43489992ns 764300 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43490446ns 764308 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43490617ns 764311 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43490901ns 764316 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43491185ns 764321 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43491469ns 764326 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43491924ns 764334 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43492095ns 764337 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43492379ns 764342 1a110850 fd5ff06f jal x0, -44 +43492663ns 764347 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43492947ns 764352 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43493345ns 764359 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43493515ns 764362 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43493970ns 764370 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43494140ns 764373 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43494425ns 764378 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43494709ns 764383 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43494993ns 764388 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43495448ns 764396 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43495618ns 764399 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43495902ns 764404 1a110850 fd5ff06f jal x0, -44 +43496186ns 764409 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43496471ns 764414 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43496868ns 764421 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43497039ns 764424 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43497494ns 764432 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43497664ns 764435 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43497948ns 764440 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43498232ns 764445 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43498517ns 764450 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43498971ns 764458 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43499142ns 764461 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43499426ns 764466 1a110850 fd5ff06f jal x0, -44 +43499710ns 764471 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43499994ns 764476 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43500392ns 764483 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43500562ns 764486 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43501017ns 764494 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43501188ns 764497 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43501472ns 764502 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43501756ns 764507 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43502040ns 764512 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43502495ns 764520 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43502665ns 764523 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43502949ns 764528 1a110850 fd5ff06f jal x0, -44 +43503234ns 764533 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43503518ns 764538 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43503916ns 764545 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43504086ns 764548 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43504541ns 764556 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43504711ns 764559 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43504995ns 764564 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43505280ns 764569 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43505564ns 764574 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43506018ns 764582 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43506189ns 764585 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43506473ns 764590 1a110850 fd5ff06f jal x0, -44 +43506757ns 764595 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43507041ns 764600 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43507439ns 764607 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43507610ns 764610 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43508064ns 764618 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43508235ns 764621 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43508519ns 764626 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43508803ns 764631 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43509087ns 764636 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43509542ns 764644 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43509712ns 764647 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43509997ns 764652 1a110850 fd5ff06f jal x0, -44 +43510281ns 764657 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43510565ns 764662 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43510963ns 764669 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43511133ns 764672 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43511588ns 764680 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43511758ns 764683 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43512043ns 764688 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43512327ns 764693 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43512611ns 764698 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43513066ns 764706 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43513236ns 764709 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43513520ns 764714 1a110850 fd5ff06f jal x0, -44 +43513804ns 764719 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43514088ns 764724 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43514486ns 764731 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43514657ns 764734 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43515111ns 764742 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43515282ns 764745 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43515566ns 764750 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43515850ns 764755 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43516134ns 764760 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43516589ns 764768 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43516760ns 764771 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43517044ns 764776 1a110850 fd5ff06f jal x0, -44 +43517328ns 764781 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43517612ns 764786 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43518010ns 764793 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43518180ns 764796 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43518635ns 764804 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43518806ns 764807 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43519090ns 764812 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43519374ns 764817 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43519658ns 764822 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43520113ns 764830 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43520283ns 764833 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43520567ns 764838 1a110850 fd5ff06f jal x0, -44 +43520851ns 764843 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43521136ns 764848 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43521533ns 764855 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43521704ns 764858 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43522159ns 764866 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43522329ns 764869 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43522613ns 764874 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43522897ns 764879 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43523182ns 764884 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43523636ns 764892 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43523807ns 764895 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43524091ns 764900 1a110850 fd5ff06f jal x0, -44 +43524375ns 764905 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43524659ns 764910 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43525057ns 764917 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43525228ns 764920 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43525682ns 764928 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43525853ns 764931 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43526137ns 764936 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43526421ns 764941 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43526705ns 764946 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43527160ns 764954 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43527330ns 764957 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43527615ns 764962 1a110850 fd5ff06f jal x0, -44 +43527899ns 764967 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43528183ns 764972 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43528581ns 764979 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43528751ns 764982 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43529206ns 764990 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43529376ns 764993 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43529660ns 764998 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43529945ns 765003 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43530229ns 765008 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43530683ns 765016 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43530854ns 765019 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43531138ns 765024 1a110850 fd5ff06f jal x0, -44 +43531422ns 765029 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43531706ns 765034 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43532104ns 765041 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43532275ns 765044 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43532729ns 765052 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43532900ns 765055 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43533184ns 765060 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43533468ns 765065 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43533752ns 765070 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43534207ns 765078 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43534378ns 765081 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43534662ns 765086 1a110850 fd5ff06f jal x0, -44 +43534946ns 765091 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43535230ns 765096 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43535628ns 765103 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43535798ns 765106 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43536253ns 765114 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43536423ns 765117 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43536708ns 765122 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43536992ns 765127 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43537276ns 765132 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43537731ns 765140 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43537901ns 765143 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43538185ns 765148 1a110850 fd5ff06f jal x0, -44 +43538469ns 765153 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43538754ns 765158 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43539151ns 765165 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43539322ns 765168 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43539777ns 765176 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43539947ns 765179 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43540231ns 765184 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43540515ns 765189 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43540800ns 765194 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43541254ns 765202 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43541425ns 765205 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43541709ns 765210 1a110850 fd5ff06f jal x0, -44 +43541993ns 765215 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43542277ns 765220 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43542675ns 765227 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43542845ns 765230 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43543300ns 765238 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43543471ns 765241 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43543755ns 765246 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43544039ns 765251 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43544323ns 765256 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43544778ns 765264 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43544948ns 765267 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43545232ns 765272 1a110850 fd5ff06f jal x0, -44 +43545517ns 765277 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43545801ns 765282 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43546199ns 765289 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43546369ns 765292 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43546824ns 765300 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43546994ns 765303 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43547278ns 765308 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43547563ns 765313 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43547847ns 765318 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43548301ns 765326 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43548472ns 765329 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43548756ns 765334 1a110850 fd5ff06f jal x0, -44 +43549040ns 765339 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43549324ns 765344 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43549722ns 765351 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43549893ns 765354 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43550347ns 765362 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43550518ns 765365 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43550802ns 765370 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43551086ns 765375 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43551370ns 765380 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43551825ns 765388 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43551995ns 765391 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43552280ns 765396 1a110850 fd5ff06f jal x0, -44 +43552564ns 765401 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43552848ns 765406 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43553246ns 765413 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43553416ns 765416 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43553871ns 765424 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43554041ns 765427 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43554326ns 765432 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43554610ns 765437 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43554894ns 765442 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43555349ns 765450 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43555519ns 765453 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43555803ns 765458 1a110850 fd5ff06f jal x0, -44 +43556087ns 765463 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43556371ns 765468 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43556769ns 765475 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43556940ns 765478 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43557394ns 765486 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43557565ns 765489 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43557849ns 765494 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43558133ns 765499 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43558417ns 765504 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43558872ns 765512 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43559043ns 765515 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43559327ns 765520 1a110850 fd5ff06f jal x0, -44 +43559611ns 765525 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43559895ns 765530 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43560293ns 765537 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43560463ns 765540 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43560918ns 765548 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43561089ns 765551 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43561373ns 765556 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43561657ns 765561 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43561941ns 765566 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43562396ns 765574 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43562566ns 765577 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43562850ns 765582 1a110850 fd5ff06f jal x0, -44 +43563135ns 765587 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43563419ns 765592 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43563816ns 765599 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43563987ns 765602 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43564442ns 765610 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43564612ns 765613 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43564896ns 765618 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43565180ns 765623 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43565465ns 765628 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43565919ns 765636 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43566090ns 765639 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43566374ns 765644 1a110850 fd5ff06f jal x0, -44 +43566658ns 765649 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43566942ns 765654 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43567340ns 765661 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43567511ns 765664 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43567965ns 765672 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43568136ns 765675 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43568420ns 765680 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43568704ns 765685 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43568988ns 765690 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43569443ns 765698 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43569613ns 765701 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43569898ns 765706 1a110850 fd5ff06f jal x0, -44 +43570182ns 765711 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43570466ns 765716 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43570864ns 765723 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43571034ns 765726 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43571489ns 765734 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43571659ns 765737 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43571943ns 765742 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43572228ns 765747 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43572512ns 765752 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43572966ns 765760 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43573137ns 765763 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43573421ns 765768 1a110850 fd5ff06f jal x0, -44 +43573705ns 765773 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43573989ns 765778 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43574387ns 765785 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43574558ns 765788 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43575012ns 765796 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43575183ns 765799 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43575467ns 765804 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43575751ns 765809 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43576035ns 765814 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43576490ns 765822 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43576661ns 765825 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43576945ns 765830 1a110850 fd5ff06f jal x0, -44 +43577229ns 765835 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43577513ns 765840 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43577911ns 765847 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43578081ns 765850 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43578536ns 765858 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43578706ns 765861 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43578991ns 765866 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43579275ns 765871 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43579559ns 765876 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43580014ns 765884 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43580184ns 765887 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43580468ns 765892 1a110850 fd5ff06f jal x0, -44 +43580752ns 765897 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43581037ns 765902 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43581434ns 765909 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43581605ns 765912 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43582060ns 765920 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43582230ns 765923 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43582514ns 765928 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43582798ns 765933 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43583083ns 765938 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43583537ns 765946 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43583708ns 765949 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43583992ns 765954 1a110850 fd5ff06f jal x0, -44 +43584276ns 765959 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43584560ns 765964 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43584958ns 765971 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43585128ns 765974 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43585583ns 765982 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43585754ns 765985 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43586038ns 765990 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43586322ns 765995 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43586606ns 766000 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43587061ns 766008 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43587231ns 766011 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43587515ns 766016 1a110850 fd5ff06f jal x0, -44 +43587800ns 766021 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43588084ns 766026 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43588482ns 766033 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43588652ns 766036 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43589107ns 766044 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43589277ns 766047 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43589561ns 766052 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43589846ns 766057 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43590130ns 766062 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43590584ns 766070 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43590755ns 766073 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43591039ns 766078 1a110850 fd5ff06f jal x0, -44 +43591323ns 766083 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43591607ns 766088 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43592005ns 766095 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43592176ns 766098 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43592630ns 766106 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43592801ns 766109 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43593085ns 766114 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43593369ns 766119 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43593653ns 766124 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43594108ns 766132 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43594278ns 766135 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43594563ns 766140 1a110850 fd5ff06f jal x0, -44 +43594847ns 766145 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43595131ns 766150 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43595529ns 766157 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43595699ns 766160 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43596154ns 766168 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43596324ns 766171 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43596609ns 766176 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43596893ns 766181 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43597177ns 766186 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43597632ns 766194 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43597802ns 766197 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43598086ns 766202 1a110850 fd5ff06f jal x0, -44 +43598370ns 766207 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43598655ns 766212 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43599052ns 766219 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43599223ns 766222 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43599677ns 766230 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43599848ns 766233 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43600132ns 766238 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43600416ns 766243 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43600700ns 766248 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43601155ns 766256 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43601326ns 766259 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43601610ns 766264 1a110850 fd5ff06f jal x0, -44 +43601894ns 766269 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43602178ns 766274 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43602576ns 766281 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43602746ns 766284 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43603201ns 766292 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43603372ns 766295 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43603656ns 766300 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43603940ns 766305 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43604224ns 766310 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43604679ns 766318 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43604849ns 766321 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43605133ns 766326 1a110850 fd5ff06f jal x0, -44 +43605418ns 766331 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43605702ns 766336 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43606099ns 766343 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43606270ns 766346 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43606725ns 766354 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43606895ns 766357 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43607179ns 766362 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43607463ns 766367 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43607748ns 766372 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43608202ns 766380 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43608373ns 766383 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43608657ns 766388 1a110850 fd5ff06f jal x0, -44 +43608941ns 766393 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43609225ns 766398 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43609623ns 766405 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43609794ns 766408 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43610248ns 766416 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43610419ns 766419 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43610703ns 766424 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43610987ns 766429 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43611271ns 766434 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43611726ns 766442 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43611896ns 766445 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43612181ns 766450 1a110850 fd5ff06f jal x0, -44 +43612465ns 766455 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43612749ns 766460 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43613147ns 766467 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43613317ns 766470 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43613772ns 766478 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43613942ns 766481 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43614226ns 766486 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43614511ns 766491 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43614795ns 766496 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43615249ns 766504 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43615420ns 766507 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43615704ns 766512 1a110850 fd5ff06f jal x0, -44 +43615988ns 766517 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43616272ns 766522 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43616670ns 766529 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43616841ns 766532 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43617295ns 766540 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43617466ns 766543 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43617750ns 766548 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43618034ns 766553 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43618318ns 766558 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43618773ns 766566 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43618944ns 766569 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43619228ns 766574 1a110850 fd5ff06f jal x0, -44 +43619512ns 766579 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43619796ns 766584 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43620194ns 766591 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43620364ns 766594 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43620819ns 766602 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43620989ns 766605 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43621274ns 766610 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43621558ns 766615 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43621842ns 766620 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43622297ns 766628 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43622467ns 766631 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43622751ns 766636 1a110850 fd5ff06f jal x0, -44 +43623035ns 766641 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43623320ns 766646 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43623717ns 766653 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43623888ns 766656 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43624343ns 766664 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43624513ns 766667 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43624797ns 766672 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43625081ns 766677 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43625366ns 766682 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43625820ns 766690 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43625991ns 766693 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43626275ns 766698 1a110850 fd5ff06f jal x0, -44 +43626559ns 766703 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43626843ns 766708 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43627241ns 766715 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43627411ns 766718 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43627866ns 766726 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43628037ns 766729 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43628321ns 766734 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43628605ns 766739 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43628889ns 766744 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43629344ns 766752 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43629514ns 766755 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43629798ns 766760 1a110850 fd5ff06f jal x0, -44 +43630083ns 766765 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43630367ns 766770 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43630765ns 766777 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43630935ns 766780 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43631390ns 766788 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43631560ns 766791 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43631844ns 766796 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43632129ns 766801 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43632413ns 766806 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43632867ns 766814 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43633038ns 766817 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43633322ns 766822 1a110850 fd5ff06f jal x0, -44 +43633606ns 766827 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43633890ns 766832 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43634288ns 766839 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43634459ns 766842 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43634913ns 766850 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43635084ns 766853 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43635368ns 766858 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43635652ns 766863 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43635936ns 766868 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43636391ns 766876 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43636561ns 766879 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43636846ns 766884 1a110850 fd5ff06f jal x0, -44 +43637130ns 766889 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43637414ns 766894 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43637812ns 766901 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43637982ns 766904 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43638437ns 766912 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43638607ns 766915 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43638892ns 766920 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43639176ns 766925 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43639460ns 766930 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43639915ns 766938 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43640085ns 766941 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43640369ns 766946 1a110850 fd5ff06f jal x0, -44 +43640653ns 766951 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43640938ns 766956 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43641335ns 766963 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43641506ns 766966 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43641960ns 766974 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43642131ns 766977 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43642415ns 766982 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43642699ns 766987 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43642983ns 766992 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43643438ns 767000 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43643609ns 767003 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43643893ns 767008 1a110850 fd5ff06f jal x0, -44 +43644177ns 767013 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43644461ns 767018 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43644859ns 767025 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43645029ns 767028 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43645484ns 767036 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43645655ns 767039 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43645939ns 767044 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43646223ns 767049 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43646507ns 767054 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43646962ns 767062 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43647132ns 767065 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43647416ns 767070 1a110850 fd5ff06f jal x0, -44 +43647701ns 767075 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43647985ns 767080 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43648383ns 767087 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43648553ns 767090 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43649008ns 767098 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43649178ns 767101 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43649462ns 767106 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43649746ns 767111 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43650031ns 767116 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43650485ns 767124 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43650656ns 767127 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43650940ns 767132 1a110850 fd5ff06f jal x0, -44 +43651224ns 767137 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43651508ns 767142 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43651906ns 767149 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43652077ns 767152 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43652531ns 767160 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43652702ns 767163 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43652986ns 767168 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43653270ns 767173 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43653554ns 767178 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43654009ns 767186 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43654179ns 767189 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43654464ns 767194 1a110850 fd5ff06f jal x0, -44 +43654748ns 767199 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43655032ns 767204 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43655430ns 767211 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43655600ns 767214 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43656055ns 767222 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43656225ns 767225 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43656509ns 767230 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43656794ns 767235 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43657078ns 767240 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43657532ns 767248 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43657703ns 767251 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43657987ns 767256 1a110850 fd5ff06f jal x0, -44 +43658271ns 767261 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43658555ns 767266 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43658953ns 767273 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43659124ns 767276 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43659578ns 767284 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43659749ns 767287 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43660033ns 767292 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43660317ns 767297 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43660601ns 767302 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43661056ns 767310 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43661227ns 767313 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43661511ns 767318 1a110850 fd5ff06f jal x0, -44 +43661795ns 767323 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43662079ns 767328 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43662477ns 767335 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43662647ns 767338 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43663102ns 767346 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43663272ns 767349 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43663557ns 767354 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43663841ns 767359 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43664125ns 767364 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43664580ns 767372 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43664750ns 767375 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43665034ns 767380 1a110850 fd5ff06f jal x0, -44 +43665318ns 767385 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43665603ns 767390 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43666000ns 767397 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43666171ns 767400 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43666626ns 767408 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43666796ns 767411 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43667080ns 767416 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43667364ns 767421 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43667649ns 767426 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43668103ns 767434 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43668274ns 767437 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43668558ns 767442 1a110850 fd5ff06f jal x0, -44 +43668842ns 767447 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43669126ns 767452 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43669524ns 767459 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43669695ns 767462 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43670149ns 767470 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43670320ns 767473 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43670604ns 767478 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43670888ns 767483 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43671172ns 767488 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43671627ns 767496 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43671797ns 767499 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43672081ns 767504 1a110850 fd5ff06f jal x0, -44 +43672366ns 767509 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43672650ns 767514 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43673048ns 767521 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43673218ns 767524 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43673673ns 767532 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43673843ns 767535 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43674127ns 767540 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43674412ns 767545 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43674696ns 767550 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43675150ns 767558 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43675321ns 767561 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43675605ns 767566 1a110850 fd5ff06f jal x0, -44 +43675889ns 767571 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43676173ns 767576 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43676571ns 767583 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43676742ns 767586 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43677196ns 767594 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43677367ns 767597 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43677651ns 767602 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43677935ns 767607 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43678219ns 767612 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43678674ns 767620 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43678844ns 767623 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43679129ns 767628 1a110850 fd5ff06f jal x0, -44 +43679413ns 767633 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43679697ns 767638 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43680095ns 767645 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43680265ns 767648 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43680720ns 767656 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43680890ns 767659 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43681175ns 767664 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43681459ns 767669 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43681743ns 767674 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43682198ns 767682 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43682368ns 767685 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43682652ns 767690 1a110850 fd5ff06f jal x0, -44 +43682936ns 767695 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43683221ns 767700 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43683618ns 767707 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43683789ns 767710 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43684243ns 767718 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43684414ns 767721 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43684698ns 767726 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43684982ns 767731 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43685266ns 767736 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43685721ns 767744 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43685892ns 767747 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43686176ns 767752 1a110850 fd5ff06f jal x0, -44 +43686460ns 767757 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43686744ns 767762 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43687142ns 767769 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43687312ns 767772 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43687767ns 767780 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43687938ns 767783 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43688222ns 767788 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43688506ns 767793 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43688790ns 767798 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43689245ns 767806 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43689415ns 767809 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43689699ns 767814 1a110850 fd5ff06f jal x0, -44 +43689984ns 767819 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43690268ns 767824 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43690666ns 767831 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43690836ns 767834 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43691291ns 767842 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43691461ns 767845 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43691745ns 767850 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43692029ns 767855 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43692314ns 767860 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43692768ns 767868 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43692939ns 767871 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43693223ns 767876 1a110850 fd5ff06f jal x0, -44 +43693507ns 767881 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43693791ns 767886 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43694189ns 767893 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43694360ns 767896 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43694814ns 767904 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43694985ns 767907 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43695269ns 767912 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43695553ns 767917 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43695837ns 767922 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43696292ns 767930 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43696462ns 767933 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43696747ns 767938 1a110850 fd5ff06f jal x0, -44 +43697031ns 767943 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43697315ns 767948 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43697713ns 767955 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43697883ns 767958 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43698338ns 767966 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43698508ns 767969 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43698792ns 767974 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43699077ns 767979 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43699361ns 767984 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43699815ns 767992 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43699986ns 767995 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43700270ns 768000 1a110850 fd5ff06f jal x0, -44 +43700554ns 768005 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43700838ns 768010 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43701236ns 768017 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43701407ns 768020 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43701861ns 768028 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43702032ns 768031 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43702316ns 768036 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43702600ns 768041 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43702884ns 768046 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43703339ns 768054 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43703510ns 768057 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43703794ns 768062 1a110850 fd5ff06f jal x0, -44 +43704078ns 768067 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43704362ns 768072 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43704760ns 768079 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43704930ns 768082 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43705385ns 768090 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43705555ns 768093 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43705840ns 768098 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43706124ns 768103 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43706408ns 768108 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43706863ns 768116 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43707033ns 768119 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43707317ns 768124 1a110850 fd5ff06f jal x0, -44 +43707601ns 768129 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43707886ns 768134 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43708283ns 768141 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43708454ns 768144 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43708909ns 768152 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43709079ns 768155 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43709363ns 768160 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43709647ns 768165 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43709932ns 768170 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43710386ns 768178 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43710557ns 768181 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43710841ns 768186 1a110850 fd5ff06f jal x0, -44 +43711125ns 768191 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43711409ns 768196 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43711807ns 768203 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43711978ns 768206 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43712432ns 768214 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43712603ns 768217 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43712887ns 768222 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43713171ns 768227 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43713455ns 768232 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43713910ns 768240 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43714080ns 768243 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43714364ns 768248 1a110850 fd5ff06f jal x0, -44 +43714649ns 768253 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43714933ns 768258 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43715331ns 768265 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43715501ns 768268 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43715956ns 768276 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43716126ns 768279 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43716410ns 768284 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43716695ns 768289 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43716979ns 768294 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43717433ns 768302 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43717604ns 768305 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43717888ns 768310 1a110850 fd5ff06f jal x0, -44 +43718172ns 768315 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43718456ns 768320 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43718854ns 768327 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43719025ns 768330 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43719479ns 768338 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43719650ns 768341 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43719934ns 768346 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43720218ns 768351 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43720502ns 768356 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43720957ns 768364 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43721127ns 768367 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43721412ns 768372 1a110850 fd5ff06f jal x0, -44 +43721696ns 768377 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43721980ns 768382 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43722378ns 768389 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43722548ns 768392 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43723003ns 768400 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43723173ns 768403 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43723458ns 768408 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43723742ns 768413 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43724026ns 768418 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43724481ns 768426 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43724651ns 768429 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43724935ns 768434 1a110850 fd5ff06f jal x0, -44 +43725219ns 768439 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43725504ns 768444 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43725901ns 768451 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43726072ns 768454 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43726527ns 768462 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43726697ns 768465 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43726981ns 768470 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43727265ns 768475 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43727549ns 768480 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43728004ns 768488 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43728175ns 768491 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43728459ns 768496 1a110850 fd5ff06f jal x0, -44 +43728743ns 768501 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43729027ns 768506 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43729425ns 768513 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43729595ns 768516 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43730050ns 768524 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43730221ns 768527 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43730505ns 768532 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43730789ns 768537 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43731073ns 768542 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43731528ns 768550 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43731698ns 768553 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43731982ns 768558 1a110850 fd5ff06f jal x0, -44 +43732267ns 768563 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43732551ns 768568 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43732949ns 768575 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43733119ns 768578 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43733574ns 768586 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43733744ns 768589 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43734028ns 768594 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43734312ns 768599 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43734597ns 768604 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43735051ns 768612 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43735222ns 768615 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43735506ns 768620 1a110850 fd5ff06f jal x0, -44 +43735790ns 768625 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43736074ns 768630 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43736472ns 768637 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43736643ns 768640 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43737097ns 768648 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43737268ns 768651 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43737552ns 768656 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43737836ns 768661 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43738120ns 768666 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43738575ns 768674 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43738745ns 768677 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43739030ns 768682 1a110850 fd5ff06f jal x0, -44 +43739314ns 768687 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43739598ns 768692 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43739996ns 768699 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43740166ns 768702 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43740621ns 768710 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43740791ns 768713 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43741075ns 768718 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43741360ns 768723 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43741644ns 768728 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43742098ns 768736 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43742269ns 768739 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43742553ns 768744 1a110850 fd5ff06f jal x0, -44 +43742837ns 768749 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43743121ns 768754 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43743519ns 768761 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43743690ns 768764 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43744144ns 768772 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43744315ns 768775 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43744599ns 768780 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43744883ns 768785 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43745167ns 768790 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43745622ns 768798 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43745793ns 768801 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43746077ns 768806 1a110850 fd5ff06f jal x0, -44 +43746361ns 768811 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43746645ns 768816 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43747043ns 768823 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43747213ns 768826 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43747668ns 768834 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43747839ns 768837 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43748123ns 768842 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43748407ns 768847 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43748691ns 768852 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43749146ns 768860 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43749316ns 768863 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43749600ns 768868 1a110850 fd5ff06f jal x0, -44 +43749884ns 768873 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43750169ns 768878 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43750566ns 768885 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43750737ns 768888 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43751192ns 768896 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43751362ns 768899 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43751646ns 768904 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43751930ns 768909 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43752215ns 768914 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43752669ns 768922 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43752840ns 768925 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43753124ns 768930 1a110850 fd5ff06f jal x0, -44 +43753408ns 768935 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43753692ns 768940 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43754090ns 768947 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43754261ns 768950 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43754715ns 768958 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43754886ns 768961 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43755170ns 768966 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43755454ns 768971 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43755738ns 768976 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43756193ns 768984 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43756363ns 768987 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43756647ns 768992 1a110850 fd5ff06f jal x0, -44 +43756932ns 768997 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43757216ns 769002 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43757614ns 769009 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43757784ns 769012 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43758239ns 769020 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43758409ns 769023 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43758693ns 769028 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43758978ns 769033 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43759262ns 769038 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43759716ns 769046 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43759887ns 769049 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43760171ns 769054 1a110850 fd5ff06f jal x0, -44 +43760455ns 769059 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43760739ns 769064 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43761137ns 769071 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43761308ns 769074 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43761762ns 769082 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43761933ns 769085 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43762217ns 769090 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43762501ns 769095 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43762785ns 769100 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43763240ns 769108 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43763410ns 769111 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43763695ns 769116 1a110850 fd5ff06f jal x0, -44 +43763979ns 769121 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43764263ns 769126 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43764661ns 769133 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43764831ns 769136 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43765286ns 769144 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43765456ns 769147 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43765741ns 769152 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43766025ns 769157 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43766309ns 769162 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43766764ns 769170 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43766934ns 769173 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43767218ns 769178 1a110850 fd5ff06f jal x0, -44 +43767502ns 769183 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43767787ns 769188 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43768184ns 769195 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43768355ns 769198 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43768810ns 769206 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43768980ns 769209 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43769264ns 769214 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43769548ns 769219 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43769832ns 769224 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43770287ns 769232 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43770458ns 769235 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43770742ns 769240 1a110850 fd5ff06f jal x0, -44 +43771026ns 769245 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43771310ns 769250 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43771708ns 769257 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43771878ns 769260 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43772333ns 769268 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43772504ns 769271 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43772788ns 769276 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43773072ns 769281 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43773356ns 769286 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43773811ns 769294 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43773981ns 769297 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43774265ns 769302 1a110850 fd5ff06f jal x0, -44 +43774550ns 769307 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43774834ns 769312 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43775232ns 769319 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43775402ns 769322 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43775857ns 769330 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43776027ns 769333 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43776311ns 769338 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43776595ns 769343 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43776880ns 769348 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43777334ns 769356 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43777505ns 769359 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43777789ns 769364 1a110850 fd5ff06f jal x0, -44 +43778073ns 769369 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43778357ns 769374 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43778755ns 769381 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43778926ns 769384 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43779380ns 769392 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43779551ns 769395 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43779835ns 769400 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43780119ns 769405 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43780403ns 769410 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43780858ns 769418 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43781028ns 769421 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43781313ns 769426 1a110850 fd5ff06f jal x0, -44 +43781597ns 769431 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43781881ns 769436 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43782279ns 769443 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43782449ns 769446 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43782904ns 769454 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43783074ns 769457 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43783359ns 769462 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43783643ns 769467 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43783927ns 769472 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43784381ns 769480 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43784552ns 769483 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43784836ns 769488 1a110850 fd5ff06f jal x0, -44 +43785120ns 769493 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43785404ns 769498 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43785802ns 769505 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43785973ns 769508 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43786427ns 769516 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43786598ns 769519 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43786882ns 769524 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43787166ns 769529 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43787450ns 769534 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43787905ns 769542 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43788076ns 769545 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43788360ns 769550 1a110850 fd5ff06f jal x0, -44 +43788644ns 769555 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43788928ns 769560 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43789326ns 769567 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43789496ns 769570 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43789951ns 769578 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43790122ns 769581 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43790406ns 769586 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43790690ns 769591 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43790974ns 769596 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43791429ns 769604 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43791599ns 769607 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43791883ns 769612 1a110850 fd5ff06f jal x0, -44 +43792167ns 769617 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43792452ns 769622 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43792849ns 769629 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43793020ns 769632 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43793475ns 769640 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43793645ns 769643 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43793929ns 769648 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43794213ns 769653 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43794498ns 769658 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43794952ns 769666 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43795123ns 769669 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43795407ns 769674 1a110850 fd5ff06f jal x0, -44 +43795691ns 769679 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43795975ns 769684 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43796373ns 769691 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43796544ns 769694 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43796998ns 769702 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43797169ns 769705 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43797453ns 769710 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43797737ns 769715 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43798021ns 769720 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43798476ns 769728 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43798646ns 769731 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43798930ns 769736 1a110850 fd5ff06f jal x0, -44 +43799215ns 769741 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43799499ns 769746 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43799897ns 769753 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43800067ns 769756 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43800522ns 769764 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43800692ns 769767 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43800976ns 769772 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43801261ns 769777 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43801545ns 769782 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43801999ns 769790 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43802170ns 769793 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43802454ns 769798 1a110850 fd5ff06f jal x0, -44 +43802738ns 769803 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43803022ns 769808 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43803420ns 769815 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43803591ns 769818 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43804045ns 769826 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43804216ns 769829 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43804500ns 769834 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43804784ns 769839 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43805068ns 769844 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43805523ns 769852 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43805693ns 769855 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43805978ns 769860 1a110850 fd5ff06f jal x0, -44 +43806262ns 769865 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43806546ns 769870 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43806944ns 769877 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43807114ns 769880 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43807569ns 769888 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43807739ns 769891 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43808024ns 769896 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43808308ns 769901 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43808592ns 769906 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43809047ns 769914 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43809217ns 769917 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43809501ns 769922 1a110850 fd5ff06f jal x0, -44 +43809785ns 769927 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43810070ns 769932 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43810467ns 769939 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43810638ns 769942 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43811093ns 769950 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43811263ns 769953 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43811547ns 769958 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43811831ns 769963 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43812115ns 769968 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43812570ns 769976 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43812741ns 769979 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43813025ns 769984 1a110850 fd5ff06f jal x0, -44 +43813309ns 769989 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43813593ns 769994 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43813991ns 770001 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43814161ns 770004 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43814616ns 770012 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43814787ns 770015 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43815071ns 770020 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43815355ns 770025 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43815639ns 770030 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43816094ns 770038 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43816264ns 770041 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43816548ns 770046 1a110850 fd5ff06f jal x0, -44 +43816833ns 770051 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43817117ns 770056 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43817515ns 770063 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43817685ns 770066 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43818140ns 770074 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43818310ns 770077 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43818594ns 770082 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43818879ns 770087 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43819163ns 770092 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43819617ns 770100 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43819788ns 770103 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43820072ns 770108 1a110850 fd5ff06f jal x0, -44 +43820356ns 770113 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43820640ns 770118 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43821038ns 770125 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43821209ns 770128 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43821663ns 770136 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43821834ns 770139 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43822118ns 770144 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43822402ns 770149 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43822686ns 770154 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43823141ns 770162 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43823311ns 770165 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43823596ns 770170 1a110850 fd5ff06f jal x0, -44 +43823880ns 770175 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43824164ns 770180 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43824562ns 770187 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43824732ns 770190 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43825187ns 770198 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43825357ns 770201 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43825642ns 770206 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43825926ns 770211 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43826210ns 770216 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43826664ns 770224 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43826835ns 770227 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43827119ns 770232 1a110850 fd5ff06f jal x0, -44 +43827403ns 770237 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43827687ns 770242 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43828085ns 770249 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43828256ns 770252 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43828710ns 770260 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43828881ns 770263 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43829165ns 770268 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43829449ns 770273 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43829733ns 770278 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43830188ns 770286 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43830359ns 770289 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43830643ns 770294 1a110850 fd5ff06f jal x0, -44 +43830927ns 770299 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43831211ns 770304 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43831609ns 770311 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43831779ns 770314 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43832234ns 770322 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43832405ns 770325 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43832689ns 770330 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43832973ns 770335 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43833257ns 770340 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43833712ns 770348 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43833882ns 770351 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43834166ns 770356 1a110850 fd5ff06f jal x0, -44 +43834450ns 770361 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43834735ns 770366 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43835132ns 770373 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43835303ns 770376 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43835758ns 770384 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43835928ns 770387 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43836212ns 770392 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43836496ns 770397 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43836781ns 770402 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43837235ns 770410 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43837406ns 770413 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43837690ns 770418 1a110850 fd5ff06f jal x0, -44 +43837974ns 770423 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43838258ns 770428 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43838656ns 770435 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43838827ns 770438 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43839281ns 770446 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43839452ns 770449 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43839736ns 770454 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43840020ns 770459 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43840304ns 770464 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43840759ns 770472 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43840929ns 770475 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43841213ns 770480 1a110850 fd5ff06f jal x0, -44 +43841498ns 770485 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43841782ns 770490 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43842180ns 770497 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43842350ns 770500 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43842805ns 770508 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43842975ns 770511 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43843259ns 770516 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43843544ns 770521 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43843828ns 770526 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43844282ns 770534 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43844453ns 770537 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43844737ns 770542 1a110850 fd5ff06f jal x0, -44 +43845021ns 770547 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43845305ns 770552 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43845703ns 770559 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43845874ns 770562 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43846328ns 770570 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43846499ns 770573 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43846783ns 770578 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43847067ns 770583 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43847351ns 770588 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43847806ns 770596 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43847976ns 770599 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43848261ns 770604 1a110850 fd5ff06f jal x0, -44 +43848545ns 770609 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43848829ns 770614 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43849227ns 770621 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43849397ns 770624 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43849852ns 770632 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43850022ns 770635 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43850307ns 770640 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43850591ns 770645 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43850875ns 770650 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43851330ns 770658 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43851500ns 770661 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43851784ns 770666 1a110850 fd5ff06f jal x0, -44 +43852068ns 770671 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43852353ns 770676 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43852750ns 770683 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43852921ns 770686 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43853376ns 770694 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43853546ns 770697 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43853830ns 770702 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43854114ns 770707 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43854399ns 770712 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43854853ns 770720 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43855024ns 770723 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43855308ns 770728 1a110850 fd5ff06f jal x0, -44 +43855592ns 770733 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43855876ns 770738 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43856274ns 770745 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43856444ns 770748 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43856899ns 770756 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43857070ns 770759 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43857354ns 770764 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43857638ns 770769 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43857922ns 770774 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43858377ns 770782 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43858547ns 770785 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43858831ns 770790 1a110850 fd5ff06f jal x0, -44 +43859116ns 770795 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43859400ns 770800 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43859798ns 770807 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43859968ns 770810 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43860423ns 770818 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43860593ns 770821 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43860877ns 770826 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43861162ns 770831 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43861446ns 770836 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43861900ns 770844 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43862071ns 770847 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43862355ns 770852 1a110850 fd5ff06f jal x0, -44 +43862639ns 770857 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43862923ns 770862 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43863321ns 770869 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43863492ns 770872 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43863946ns 770880 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43864117ns 770883 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43864401ns 770888 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43864685ns 770893 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43864969ns 770898 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43865424ns 770906 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43865594ns 770909 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43865879ns 770914 1a110850 fd5ff06f jal x0, -44 +43866163ns 770919 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43866447ns 770924 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43866845ns 770931 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43867015ns 770934 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43867470ns 770942 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43867640ns 770945 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43867925ns 770950 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43868209ns 770955 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43868493ns 770960 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43868947ns 770968 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43869118ns 770971 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43869402ns 770976 1a110850 fd5ff06f jal x0, -44 +43869686ns 770981 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43869970ns 770986 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43870368ns 770993 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43870539ns 770996 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43870993ns 771004 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43871164ns 771007 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43871448ns 771012 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43871732ns 771017 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43872016ns 771022 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43872471ns 771030 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43872642ns 771033 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43872926ns 771038 1a110850 fd5ff06f jal x0, -44 +43873210ns 771043 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43873494ns 771048 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43873892ns 771055 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43874062ns 771058 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43874517ns 771066 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43874688ns 771069 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43874972ns 771074 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43875256ns 771079 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43875540ns 771084 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43875995ns 771092 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43876165ns 771095 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43876449ns 771100 1a110850 fd5ff06f jal x0, -44 +43876733ns 771105 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43877018ns 771110 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43877415ns 771117 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43877586ns 771120 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43878041ns 771128 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43878211ns 771131 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43878495ns 771136 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43878779ns 771141 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43879064ns 771146 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43879518ns 771154 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43879689ns 771157 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43879973ns 771162 1a110850 fd5ff06f jal x0, -44 +43880257ns 771167 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43880541ns 771172 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43880939ns 771179 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43881110ns 771182 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43881564ns 771190 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43881735ns 771193 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43882019ns 771198 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43882303ns 771203 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43882587ns 771208 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43883042ns 771216 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43883212ns 771219 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43883496ns 771224 1a110850 fd5ff06f jal x0, -44 +43883781ns 771229 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43884065ns 771234 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43884463ns 771241 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43884633ns 771244 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43885088ns 771252 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43885258ns 771255 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43885542ns 771260 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43885827ns 771265 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43886111ns 771270 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43886565ns 771278 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43886736ns 771281 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43887020ns 771286 1a110850 fd5ff06f jal x0, -44 +43887304ns 771291 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43887588ns 771296 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43887986ns 771303 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43888157ns 771306 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43888611ns 771314 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43888782ns 771317 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43889066ns 771322 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43889350ns 771327 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43889634ns 771332 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43890089ns 771340 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43890259ns 771343 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43890544ns 771348 1a110850 fd5ff06f jal x0, -44 +43890828ns 771353 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43891112ns 771358 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43891510ns 771365 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43891680ns 771368 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43892135ns 771376 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43892305ns 771379 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43892590ns 771384 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43892874ns 771389 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43893158ns 771394 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43893613ns 771402 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43893783ns 771405 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43894067ns 771410 1a110850 fd5ff06f jal x0, -44 +43894351ns 771415 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43894636ns 771420 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43895033ns 771427 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43895204ns 771430 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43895659ns 771438 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43895829ns 771441 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43896113ns 771446 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43896397ns 771451 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43896682ns 771456 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43897136ns 771464 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43897307ns 771467 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43897591ns 771472 1a110850 fd5ff06f jal x0, -44 +43897875ns 771477 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43898159ns 771482 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43898557ns 771489 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43898727ns 771492 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43899182ns 771500 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43899353ns 771503 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43899637ns 771508 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43899921ns 771513 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43900205ns 771518 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43900660ns 771526 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43900830ns 771529 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43901114ns 771534 1a110850 fd5ff06f jal x0, -44 +43901399ns 771539 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43901683ns 771544 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43902081ns 771551 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43902251ns 771554 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43902706ns 771562 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43902876ns 771565 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43903160ns 771570 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43903445ns 771575 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43903729ns 771580 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43904183ns 771588 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43904354ns 771591 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43904638ns 771596 1a110850 fd5ff06f jal x0, -44 +43904922ns 771601 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43905206ns 771606 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43905604ns 771613 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43905775ns 771616 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43906229ns 771624 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43906400ns 771627 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43906684ns 771632 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43906968ns 771637 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43907252ns 771642 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43907707ns 771650 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43907877ns 771653 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43908162ns 771658 1a110850 fd5ff06f jal x0, -44 +43908446ns 771663 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43908730ns 771668 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43909128ns 771675 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43909298ns 771678 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43909753ns 771686 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43909923ns 771689 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43910208ns 771694 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43910492ns 771699 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43910776ns 771704 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43911231ns 771712 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43911401ns 771715 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43911685ns 771720 1a110850 fd5ff06f jal x0, -44 +43911969ns 771725 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43912253ns 771730 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43912651ns 771737 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43912822ns 771740 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43913276ns 771748 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43913447ns 771751 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43913731ns 771756 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43914015ns 771761 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43914299ns 771766 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43914754ns 771774 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43914925ns 771777 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43915209ns 771782 1a110850 fd5ff06f jal x0, -44 +43915493ns 771787 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43915777ns 771792 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43916175ns 771799 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43916345ns 771802 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43916800ns 771810 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43916971ns 771813 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43917255ns 771818 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43917539ns 771823 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43917823ns 771828 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43918278ns 771836 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43918448ns 771839 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43918732ns 771844 1a110850 fd5ff06f jal x0, -44 +43919016ns 771849 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43919301ns 771854 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43919698ns 771861 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43919869ns 771864 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43920324ns 771872 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43920494ns 771875 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43920778ns 771880 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43921062ns 771885 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43921347ns 771890 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43921801ns 771898 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43921972ns 771901 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43922256ns 771906 1a110850 fd5ff06f jal x0, -44 +43922540ns 771911 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43922824ns 771916 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43923222ns 771923 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43923393ns 771926 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43923847ns 771934 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43924018ns 771937 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43924302ns 771942 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43924586ns 771947 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43924870ns 771952 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43925325ns 771960 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43925495ns 771963 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43925779ns 771968 1a110850 fd5ff06f jal x0, -44 +43926064ns 771973 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43926348ns 771978 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43926746ns 771985 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43926916ns 771988 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43927371ns 771996 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43927541ns 771999 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43927825ns 772004 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43928110ns 772009 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43928394ns 772014 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43928848ns 772022 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43929019ns 772025 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43929303ns 772030 1a110850 fd5ff06f jal x0, -44 +43929587ns 772035 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43929871ns 772040 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43930269ns 772047 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43930440ns 772050 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43930894ns 772058 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43931065ns 772061 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43931349ns 772066 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43931633ns 772071 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43931917ns 772076 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43932372ns 772084 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43932543ns 772087 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43932827ns 772092 1a110850 fd5ff06f jal x0, -44 +43933111ns 772097 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43933395ns 772102 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43933793ns 772109 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43933963ns 772112 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43934418ns 772120 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43934588ns 772123 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43934873ns 772128 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43935157ns 772133 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43935441ns 772138 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43935896ns 772146 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43936066ns 772149 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43936350ns 772154 1a110850 fd5ff06f jal x0, -44 +43936634ns 772159 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43936919ns 772164 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43937316ns 772171 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43937487ns 772174 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43937942ns 772182 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43938112ns 772185 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43938396ns 772190 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43938680ns 772195 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43938965ns 772200 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43939419ns 772208 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43939590ns 772211 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43939874ns 772216 1a110850 fd5ff06f jal x0, -44 +43940158ns 772221 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43940442ns 772226 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43940840ns 772233 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43941010ns 772236 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43941465ns 772244 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43941636ns 772247 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43941920ns 772252 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43942204ns 772257 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43942488ns 772262 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43942943ns 772270 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43943113ns 772273 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43943397ns 772278 1a110850 fd5ff06f jal x0, -44 +43943682ns 772283 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43943966ns 772288 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43944364ns 772295 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43944534ns 772298 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43944989ns 772306 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43945159ns 772309 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43945443ns 772314 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43945728ns 772319 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43946012ns 772324 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43946466ns 772332 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43946637ns 772335 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43946921ns 772340 1a110850 fd5ff06f jal x0, -44 +43947205ns 772345 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43947489ns 772350 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43947887ns 772357 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43948058ns 772360 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43948512ns 772368 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43948683ns 772371 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43948967ns 772376 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43949251ns 772381 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43949535ns 772386 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43949990ns 772394 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43950160ns 772397 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43950445ns 772402 1a110850 fd5ff06f jal x0, -44 +43950729ns 772407 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43951013ns 772412 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43951411ns 772419 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43951581ns 772422 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43952036ns 772430 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43952206ns 772433 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43952491ns 772438 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43952775ns 772443 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43953059ns 772448 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43953514ns 772456 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43953684ns 772459 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43953968ns 772464 1a110850 fd5ff06f jal x0, -44 +43954252ns 772469 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43954536ns 772474 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43954934ns 772481 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43955105ns 772484 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43955559ns 772492 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43955730ns 772495 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43956014ns 772500 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43956298ns 772505 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43956582ns 772510 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43957037ns 772518 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43957208ns 772521 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43957492ns 772526 1a110850 fd5ff06f jal x0, -44 +43957776ns 772531 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43958060ns 772536 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43958458ns 772543 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43958628ns 772546 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43959083ns 772554 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43959254ns 772557 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43959538ns 772562 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43959822ns 772567 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43960106ns 772572 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43960561ns 772580 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43960731ns 772583 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43961015ns 772588 1a110850 fd5ff06f jal x0, -44 +43961299ns 772593 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43961584ns 772598 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43961981ns 772605 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43962152ns 772608 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43962607ns 772616 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43962777ns 772619 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43963061ns 772624 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43963345ns 772629 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43963630ns 772634 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43964084ns 772642 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43964255ns 772645 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43964539ns 772650 1a110850 fd5ff06f jal x0, -44 +43964823ns 772655 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43965107ns 772660 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43965505ns 772667 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43965676ns 772670 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43966130ns 772678 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43966301ns 772681 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43966585ns 772686 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43966869ns 772691 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43967153ns 772696 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43967608ns 772704 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43967778ns 772707 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43968063ns 772712 1a110850 fd5ff06f jal x0, -44 +43968347ns 772717 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43968631ns 772722 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43969029ns 772729 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43969199ns 772732 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43969654ns 772740 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43969824ns 772743 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43970108ns 772748 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43970393ns 772753 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43970677ns 772758 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43971131ns 772766 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43971302ns 772769 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43971586ns 772774 1a110850 fd5ff06f jal x0, -44 +43971870ns 772779 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43972154ns 772784 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43972552ns 772791 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43972723ns 772794 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43973177ns 772802 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43973348ns 772805 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43973632ns 772810 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43973916ns 772815 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43974200ns 772820 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43974655ns 772828 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43974826ns 772831 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43975110ns 772836 1a110850 fd5ff06f jal x0, -44 +43975394ns 772841 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43975678ns 772846 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43976076ns 772853 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43976246ns 772856 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43976701ns 772864 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43976871ns 772867 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43977156ns 772872 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43977440ns 772877 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43977724ns 772882 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43978179ns 772890 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43978349ns 772893 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43978633ns 772898 1a110850 fd5ff06f jal x0, -44 +43978917ns 772903 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43979202ns 772908 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43979599ns 772915 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43979770ns 772918 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43980225ns 772926 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43980395ns 772929 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43980679ns 772934 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43980963ns 772939 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43981248ns 772944 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43981702ns 772952 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43981873ns 772955 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43982157ns 772960 1a110850 fd5ff06f jal x0, -44 +43982441ns 772965 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43982725ns 772970 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43983123ns 772977 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43983293ns 772980 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43983748ns 772988 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43983919ns 772991 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43984203ns 772996 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43984487ns 773001 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43984771ns 773006 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43985226ns 773014 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43985396ns 773017 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43985680ns 773022 1a110850 fd5ff06f jal x0, -44 +43985965ns 773027 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43986249ns 773032 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43986647ns 773039 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43986817ns 773042 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43987272ns 773050 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43987442ns 773053 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43987726ns 773058 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43988011ns 773063 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43988295ns 773068 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43988749ns 773076 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43988920ns 773079 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43989204ns 773084 1a110850 fd5ff06f jal x0, -44 +43989488ns 773089 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43989772ns 773094 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43990170ns 773101 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43990341ns 773104 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43990795ns 773112 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43990966ns 773115 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43991250ns 773120 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43991534ns 773125 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43991818ns 773130 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43992273ns 773138 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43992443ns 773141 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43992728ns 773146 1a110850 fd5ff06f jal x0, -44 +43993012ns 773151 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43993296ns 773156 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43993694ns 773163 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43993864ns 773166 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43994319ns 773174 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43994489ns 773177 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43994774ns 773182 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43995058ns 773187 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43995342ns 773192 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43995797ns 773200 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43995967ns 773203 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43996251ns 773208 1a110850 fd5ff06f jal x0, -44 +43996535ns 773213 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43996819ns 773218 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +43997217ns 773225 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43997388ns 773228 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43997842ns 773236 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +43998013ns 773239 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +43998297ns 773244 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +43998581ns 773249 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +43998865ns 773254 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +43999320ns 773262 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +43999491ns 773265 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +43999775ns 773270 1a110850 fd5ff06f jal x0, -44 +44000059ns 773275 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44000343ns 773280 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44000741ns 773287 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44000911ns 773290 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44001366ns 773298 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44001537ns 773301 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44001821ns 773306 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44002105ns 773311 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44002389ns 773316 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44002844ns 773324 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44003014ns 773327 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44003298ns 773332 1a110850 fd5ff06f jal x0, -44 +44003583ns 773337 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44003867ns 773342 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44004264ns 773349 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44004435ns 773352 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44004890ns 773360 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44005060ns 773363 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44005344ns 773368 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44005628ns 773373 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44005913ns 773378 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44006367ns 773386 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44006538ns 773389 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44006822ns 773394 1a110850 fd5ff06f jal x0, -44 +44007106ns 773399 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44007390ns 773404 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44007788ns 773411 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44007959ns 773414 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44008413ns 773422 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44008584ns 773425 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44008868ns 773430 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44009152ns 773435 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44009436ns 773440 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44009891ns 773448 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44010061ns 773451 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44010346ns 773456 1a110850 fd5ff06f jal x0, -44 +44010630ns 773461 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44010914ns 773466 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44011312ns 773473 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44011482ns 773476 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44011937ns 773484 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44012107ns 773487 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44012391ns 773492 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44012676ns 773497 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44012960ns 773502 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44013414ns 773510 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44013585ns 773513 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44013869ns 773518 1a110850 fd5ff06f jal x0, -44 +44014153ns 773523 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44014437ns 773528 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44014835ns 773535 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44015006ns 773538 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44015460ns 773546 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44015631ns 773549 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44015915ns 773554 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44016199ns 773559 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44016483ns 773564 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44016938ns 773572 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44017109ns 773575 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44017393ns 773580 1a110850 fd5ff06f jal x0, -44 +44017677ns 773585 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44017961ns 773590 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44018359ns 773597 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44018529ns 773600 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44018984ns 773608 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44019154ns 773611 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44019439ns 773616 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44019723ns 773621 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44020007ns 773626 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44020462ns 773634 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44020632ns 773637 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44020916ns 773642 1a110850 fd5ff06f jal x0, -44 +44021200ns 773647 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44021485ns 773652 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44021882ns 773659 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44022053ns 773662 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44022508ns 773670 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44022678ns 773673 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44022962ns 773678 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44023246ns 773683 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44023531ns 773688 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44023985ns 773696 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44024156ns 773699 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44024440ns 773704 1a110850 fd5ff06f jal x0, -44 +44024724ns 773709 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44025008ns 773714 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44025406ns 773721 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44025576ns 773724 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44026031ns 773732 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44026202ns 773735 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44026486ns 773740 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44026770ns 773745 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44027054ns 773750 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44027509ns 773758 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44027679ns 773761 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44027963ns 773766 1a110850 fd5ff06f jal x0, -44 +44028248ns 773771 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44028532ns 773776 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44028930ns 773783 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44029100ns 773786 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44029555ns 773794 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44029725ns 773797 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44030009ns 773802 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44030294ns 773807 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44030578ns 773812 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44031032ns 773820 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44031203ns 773823 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44031487ns 773828 1a110850 fd5ff06f jal x0, -44 +44031771ns 773833 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44032055ns 773838 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44032453ns 773845 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44032624ns 773848 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44033078ns 773856 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44033249ns 773859 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44033533ns 773864 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44033817ns 773869 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44034101ns 773874 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44034556ns 773882 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44034726ns 773885 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44035011ns 773890 1a110850 fd5ff06f jal x0, -44 +44035295ns 773895 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44035579ns 773900 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44035977ns 773907 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44036147ns 773910 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44036602ns 773918 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44036772ns 773921 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44037057ns 773926 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44037341ns 773931 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44037625ns 773936 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44038080ns 773944 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44038250ns 773947 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44038534ns 773952 1a110850 fd5ff06f jal x0, -44 +44038818ns 773957 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44039103ns 773962 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44039500ns 773969 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44039671ns 773972 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44040125ns 773980 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44040296ns 773983 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44040580ns 773988 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44040864ns 773993 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44041148ns 773998 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44041603ns 774006 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44041774ns 774009 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44042058ns 774014 1a110850 fd5ff06f jal x0, -44 +44042342ns 774019 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44042626ns 774024 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44043024ns 774031 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44043194ns 774034 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44043649ns 774042 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44043820ns 774045 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44044104ns 774050 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44044388ns 774055 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44044672ns 774060 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44045127ns 774068 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44045297ns 774071 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44045581ns 774076 1a110850 fd5ff06f jal x0, -44 +44045866ns 774081 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44046150ns 774086 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44046547ns 774093 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44046718ns 774096 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44047173ns 774104 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44047343ns 774107 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44047627ns 774112 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44047911ns 774117 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44048196ns 774122 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44048650ns 774130 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44048821ns 774133 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44049105ns 774138 1a110850 fd5ff06f jal x0, -44 +44049389ns 774143 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44049673ns 774148 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44050071ns 774155 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44050242ns 774158 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44050696ns 774166 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44050867ns 774169 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44051151ns 774174 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44051435ns 774179 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44051719ns 774184 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44052174ns 774192 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44052344ns 774195 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44052629ns 774200 1a110850 fd5ff06f jal x0, -44 +44052913ns 774205 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44053197ns 774210 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44053595ns 774217 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44053765ns 774220 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44054220ns 774228 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44054390ns 774231 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44054674ns 774236 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44054959ns 774241 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44055243ns 774246 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44055697ns 774254 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44055868ns 774257 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44056152ns 774262 1a110850 fd5ff06f jal x0, -44 +44056436ns 774267 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44056720ns 774272 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44057118ns 774279 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44057289ns 774282 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44057743ns 774290 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44057914ns 774293 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44058198ns 774298 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44058482ns 774303 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44058766ns 774308 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44059221ns 774316 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44059392ns 774319 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44059676ns 774324 1a110850 fd5ff06f jal x0, -44 +44059960ns 774329 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44060244ns 774334 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44060642ns 774341 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44060812ns 774344 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44061267ns 774352 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44061437ns 774355 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44061722ns 774360 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44062006ns 774365 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44062290ns 774370 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44062745ns 774378 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44062915ns 774381 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44063199ns 774386 1a110850 fd5ff06f jal x0, -44 +44063483ns 774391 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44063768ns 774396 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44064165ns 774403 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44064336ns 774406 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44064791ns 774414 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44064961ns 774417 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44065245ns 774422 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44065529ns 774427 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44065814ns 774432 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44066268ns 774440 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44066439ns 774443 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44066723ns 774448 1a110850 fd5ff06f jal x0, -44 +44067007ns 774453 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44067291ns 774458 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44067689ns 774465 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44067859ns 774468 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44068314ns 774476 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44068485ns 774479 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44068769ns 774484 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44069053ns 774489 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44069337ns 774494 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44069792ns 774502 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44069962ns 774505 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44070246ns 774510 1a110850 fd5ff06f jal x0, -44 +44070531ns 774515 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44070815ns 774520 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44071213ns 774527 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44071383ns 774530 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44071838ns 774538 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44072008ns 774541 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44072292ns 774546 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44072577ns 774551 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44072861ns 774556 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44073315ns 774564 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44073486ns 774567 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44073770ns 774572 1a110850 fd5ff06f jal x0, -44 +44074054ns 774577 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44074338ns 774582 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44074736ns 774589 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44074907ns 774592 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44075361ns 774600 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44075532ns 774603 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44075816ns 774608 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44076100ns 774613 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44076384ns 774618 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44076839ns 774626 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44077009ns 774629 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44077294ns 774634 1a110850 fd5ff06f jal x0, -44 +44077578ns 774639 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44077862ns 774644 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44078260ns 774651 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44078430ns 774654 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44078885ns 774662 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44079055ns 774665 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44079340ns 774670 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44079624ns 774675 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44079908ns 774680 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44080363ns 774688 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44080533ns 774691 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44080817ns 774696 1a110850 fd5ff06f jal x0, -44 +44081101ns 774701 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44081386ns 774706 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44081783ns 774713 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44081954ns 774716 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44082408ns 774724 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44082579ns 774727 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44082863ns 774732 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44083147ns 774737 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44083431ns 774742 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44083886ns 774750 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44084057ns 774753 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44084341ns 774758 1a110850 fd5ff06f jal x0, -44 +44084625ns 774763 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44084909ns 774768 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44085307ns 774775 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44085477ns 774778 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44085932ns 774786 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44086103ns 774789 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44086387ns 774794 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44086671ns 774799 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44086955ns 774804 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44087410ns 774812 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44087580ns 774815 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44087864ns 774820 1a110850 fd5ff06f jal x0, -44 +44088149ns 774825 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44088433ns 774830 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44088831ns 774837 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44089001ns 774840 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44089456ns 774848 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44089626ns 774851 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44089910ns 774856 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44090194ns 774861 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44090479ns 774866 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44090933ns 774874 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44091104ns 774877 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44091388ns 774882 1a110850 fd5ff06f jal x0, -44 +44091672ns 774887 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44091956ns 774892 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44092354ns 774899 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44092525ns 774902 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44092979ns 774910 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44093150ns 774913 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44093434ns 774918 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44093718ns 774923 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44094002ns 774928 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44094457ns 774936 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44094627ns 774939 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44094912ns 774944 1a110850 fd5ff06f jal x0, -44 +44095196ns 774949 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44095480ns 774954 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44095878ns 774961 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44096048ns 774964 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44096503ns 774972 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44096673ns 774975 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44096957ns 774980 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44097242ns 774985 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44097526ns 774990 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44097980ns 774998 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44098151ns 775001 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44098435ns 775006 1a110850 fd5ff06f jal x0, -44 +44098719ns 775011 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44099003ns 775016 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44099401ns 775023 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44099572ns 775026 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44100026ns 775034 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44100197ns 775037 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44100481ns 775042 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44100765ns 775047 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44101049ns 775052 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44101504ns 775060 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44101675ns 775063 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44101959ns 775068 1a110850 fd5ff06f jal x0, -44 +44102243ns 775073 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44102527ns 775078 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44102925ns 775085 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44103095ns 775088 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44103550ns 775096 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44103720ns 775099 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44104005ns 775104 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44104289ns 775109 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44104573ns 775114 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44105028ns 775122 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44105198ns 775125 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44105482ns 775130 1a110850 fd5ff06f jal x0, -44 +44105766ns 775135 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44106051ns 775140 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44106448ns 775147 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44106619ns 775150 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44107074ns 775158 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44107244ns 775161 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44107528ns 775166 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44107812ns 775171 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44108097ns 775176 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44108551ns 775184 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44108722ns 775187 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44109006ns 775192 1a110850 fd5ff06f jal x0, -44 +44109290ns 775197 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44109574ns 775202 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44109972ns 775209 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44110143ns 775212 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44110597ns 775220 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44110768ns 775223 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44111052ns 775228 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44111336ns 775233 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44111620ns 775238 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44112075ns 775246 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44112245ns 775249 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44112529ns 775254 1a110850 fd5ff06f jal x0, -44 +44112814ns 775259 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44113098ns 775264 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44113496ns 775271 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44113666ns 775274 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44114121ns 775282 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44114291ns 775285 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44114575ns 775290 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44114860ns 775295 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44115144ns 775300 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44115598ns 775308 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44115769ns 775311 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44116053ns 775316 1a110850 fd5ff06f jal x0, -44 +44116337ns 775321 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44116621ns 775326 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44117019ns 775333 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44117190ns 775336 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44117644ns 775344 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44117815ns 775347 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44118099ns 775352 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44118383ns 775357 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44118667ns 775362 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44119122ns 775370 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44119292ns 775373 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44119577ns 775378 1a110850 fd5ff06f jal x0, -44 +44119861ns 775383 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44120145ns 775388 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44120543ns 775395 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44120713ns 775398 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44121168ns 775406 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44121338ns 775409 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44121623ns 775414 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44121907ns 775419 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44122191ns 775424 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44122646ns 775432 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44122816ns 775435 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44123100ns 775440 1a110850 fd5ff06f jal x0, -44 +44123384ns 775445 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44123669ns 775450 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44124066ns 775457 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44124237ns 775460 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44124691ns 775468 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44124862ns 775471 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44125146ns 775476 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44125430ns 775481 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44125714ns 775486 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44126169ns 775494 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44126340ns 775497 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44126624ns 775502 1a110850 fd5ff06f jal x0, -44 +44126908ns 775507 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44127192ns 775512 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44127590ns 775519 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44127760ns 775522 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44128215ns 775530 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44128386ns 775533 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44128670ns 775538 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44128954ns 775543 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44129238ns 775548 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44129693ns 775556 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44129863ns 775559 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44130147ns 775564 1a110850 fd5ff06f jal x0, -44 +44130432ns 775569 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44130716ns 775574 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44131114ns 775581 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44131284ns 775584 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44131739ns 775592 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44131909ns 775595 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44132193ns 775600 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44132477ns 775605 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44132762ns 775610 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44133216ns 775618 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44133387ns 775621 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44133671ns 775626 1a110850 fd5ff06f jal x0, -44 +44133955ns 775631 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44134239ns 775636 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44134637ns 775643 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44134808ns 775646 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44135262ns 775654 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44135433ns 775657 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44135717ns 775662 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44136001ns 775667 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44136285ns 775672 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44136740ns 775680 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44136910ns 775683 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44137195ns 775688 1a110850 fd5ff06f jal x0, -44 +44137479ns 775693 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44137763ns 775698 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44138161ns 775705 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44138331ns 775708 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44138786ns 775716 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44138956ns 775719 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44139240ns 775724 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44139525ns 775729 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44139809ns 775734 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44140263ns 775742 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44140434ns 775745 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44140718ns 775750 1a110850 fd5ff06f jal x0, -44 +44141002ns 775755 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44141286ns 775760 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44141684ns 775767 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44141855ns 775770 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44142309ns 775778 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44142480ns 775781 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44142764ns 775786 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44143048ns 775791 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44143332ns 775796 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44143787ns 775804 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44143958ns 775807 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44144242ns 775812 1a110850 fd5ff06f jal x0, -44 +44144526ns 775817 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44144810ns 775822 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44145208ns 775829 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44145378ns 775832 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44145833ns 775840 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44146003ns 775843 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44146288ns 775848 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44146572ns 775853 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44146856ns 775858 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44147311ns 775866 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44147481ns 775869 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44147765ns 775874 1a110850 fd5ff06f jal x0, -44 +44148049ns 775879 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44148334ns 775884 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44148731ns 775891 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44148902ns 775894 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44149357ns 775902 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44149527ns 775905 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44149811ns 775910 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44150095ns 775915 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44150380ns 775920 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44150834ns 775928 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44151005ns 775931 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44151289ns 775936 1a110850 fd5ff06f jal x0, -44 +44151573ns 775941 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44151857ns 775946 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44152255ns 775953 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44152426ns 775956 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44152880ns 775964 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44153051ns 775967 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44153335ns 775972 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44153619ns 775977 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44153903ns 775982 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44154358ns 775990 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44154528ns 775993 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44154812ns 775998 1a110850 fd5ff06f jal x0, -44 +44155097ns 776003 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44155381ns 776008 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44155779ns 776015 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44155949ns 776018 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44156404ns 776026 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44156574ns 776029 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44156858ns 776034 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44157143ns 776039 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44157427ns 776044 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44157881ns 776052 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44158052ns 776055 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44158336ns 776060 1a110850 fd5ff06f jal x0, -44 +44158620ns 776065 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44158904ns 776070 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44159302ns 776077 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44159473ns 776080 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44159927ns 776088 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44160098ns 776091 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44160382ns 776096 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44160666ns 776101 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44160950ns 776106 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44161405ns 776114 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44161575ns 776117 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44161860ns 776122 1a110850 fd5ff06f jal x0, -44 +44162144ns 776127 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44162428ns 776132 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44162826ns 776139 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44162996ns 776142 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44163451ns 776150 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44163621ns 776153 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44163906ns 776158 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44164190ns 776163 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44164474ns 776168 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44164929ns 776176 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44165099ns 776179 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44165383ns 776184 1a110850 fd5ff06f jal x0, -44 +44165667ns 776189 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44165952ns 776194 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44166349ns 776201 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44166520ns 776204 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44166975ns 776212 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44167145ns 776215 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44167429ns 776220 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44167713ns 776225 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44167997ns 776230 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44168452ns 776238 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44168623ns 776241 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44168907ns 776246 1a110850 fd5ff06f jal x0, -44 +44169191ns 776251 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44169475ns 776256 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44169873ns 776263 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44170043ns 776266 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44170498ns 776274 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44170669ns 776277 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44170953ns 776282 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44171237ns 776287 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44171521ns 776292 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44171976ns 776300 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44172146ns 776303 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44172430ns 776308 1a110850 fd5ff06f jal x0, -44 +44172715ns 776313 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44172999ns 776318 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44173397ns 776325 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44173567ns 776328 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44174022ns 776336 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44174192ns 776339 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44174476ns 776344 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44174760ns 776349 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44175045ns 776354 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44175499ns 776362 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44175670ns 776365 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44175954ns 776370 1a110850 fd5ff06f jal x0, -44 +44176238ns 776375 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44176522ns 776380 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44176920ns 776387 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44177091ns 776390 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44177545ns 776398 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44177716ns 776401 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44178000ns 776406 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44178284ns 776411 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44178568ns 776416 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44179023ns 776424 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44179193ns 776427 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44179478ns 776432 1a110850 fd5ff06f jal x0, -44 +44179762ns 776437 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44180046ns 776442 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44180444ns 776449 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44180614ns 776452 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44181069ns 776460 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44181239ns 776463 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44181523ns 776468 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44181808ns 776473 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44182092ns 776478 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44182546ns 776486 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44182717ns 776489 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44183001ns 776494 1a110850 fd5ff06f jal x0, -44 +44183285ns 776499 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44183569ns 776504 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44183967ns 776511 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44184138ns 776514 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44184592ns 776522 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44184763ns 776525 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44185047ns 776530 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44185331ns 776535 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44185615ns 776540 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44186070ns 776548 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44186241ns 776551 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44186525ns 776556 1a110850 fd5ff06f jal x0, -44 +44186809ns 776561 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44187093ns 776566 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44187491ns 776573 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44187661ns 776576 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44188116ns 776584 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44188287ns 776587 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44188571ns 776592 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44188855ns 776597 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44189139ns 776602 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44189594ns 776610 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44189764ns 776613 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44190048ns 776618 1a110850 fd5ff06f jal x0, -44 +44190332ns 776623 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44190617ns 776628 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44191014ns 776635 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44191185ns 776638 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44191640ns 776646 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44191810ns 776649 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44192094ns 776654 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44192378ns 776659 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44192663ns 776664 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44193117ns 776672 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44193288ns 776675 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44193572ns 776680 1a110850 fd5ff06f jal x0, -44 +44193856ns 776685 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44194140ns 776690 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44194538ns 776697 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44194709ns 776700 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44195163ns 776708 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44195334ns 776711 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44195618ns 776716 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44195902ns 776721 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44196186ns 776726 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44196641ns 776734 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44196811ns 776737 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44197095ns 776742 1a110850 fd5ff06f jal x0, -44 +44197380ns 776747 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44197664ns 776752 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44198062ns 776759 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44198232ns 776762 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44198687ns 776770 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44198857ns 776773 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44199141ns 776778 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44199426ns 776783 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44199710ns 776788 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44200164ns 776796 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44200335ns 776799 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44200619ns 776804 1a110850 fd5ff06f jal x0, -44 +44200903ns 776809 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44201187ns 776814 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44201585ns 776821 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44201756ns 776824 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44202210ns 776832 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44202381ns 776835 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44202665ns 776840 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44202949ns 776845 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44203233ns 776850 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44203688ns 776858 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44203858ns 776861 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44204143ns 776866 1a110850 fd5ff06f jal x0, -44 +44204427ns 776871 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44204711ns 776876 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44205109ns 776883 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44205279ns 776886 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44205734ns 776894 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44205904ns 776897 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44206189ns 776902 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44206473ns 776907 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44206757ns 776912 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44207212ns 776920 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44207382ns 776923 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44207666ns 776928 1a110850 fd5ff06f jal x0, -44 +44207950ns 776933 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44208235ns 776938 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44208632ns 776945 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44208803ns 776948 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44209258ns 776956 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44209428ns 776959 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44209712ns 776964 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44209996ns 776969 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44210280ns 776974 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44210735ns 776982 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44210906ns 776985 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44211190ns 776990 1a110850 fd5ff06f jal x0, -44 +44211474ns 776995 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44211758ns 777000 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44212156ns 777007 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44212326ns 777010 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44212781ns 777018 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44212952ns 777021 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44213236ns 777026 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44213520ns 777031 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44213804ns 777036 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44214259ns 777044 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44214429ns 777047 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44214713ns 777052 1a110850 fd5ff06f jal x0, -44 +44214998ns 777057 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44215282ns 777062 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44215680ns 777069 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44215850ns 777072 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44216305ns 777080 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44216475ns 777083 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44216759ns 777088 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44217043ns 777093 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44217328ns 777098 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44217782ns 777106 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44217953ns 777109 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44218237ns 777114 1a110850 fd5ff06f jal x0, -44 +44218521ns 777119 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44218805ns 777124 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44219203ns 777131 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44219374ns 777134 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44219828ns 777142 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44219999ns 777145 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44220283ns 777150 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44220567ns 777155 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44220851ns 777160 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44221306ns 777168 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44221476ns 777171 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44221761ns 777176 1a110850 fd5ff06f jal x0, -44 +44222045ns 777181 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44222329ns 777186 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44222727ns 777193 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44222897ns 777196 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44223352ns 777204 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44223522ns 777207 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44223807ns 777212 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44224091ns 777217 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44224375ns 777222 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44224829ns 777230 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44225000ns 777233 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44225284ns 777238 1a110850 fd5ff06f jal x0, -44 +44225568ns 777243 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44225852ns 777248 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44226250ns 777255 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44226421ns 777258 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44226875ns 777266 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44227046ns 777269 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44227330ns 777274 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44227614ns 777279 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44227898ns 777284 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44228353ns 777292 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44228524ns 777295 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44228808ns 777300 1a110850 fd5ff06f jal x0, -44 +44229092ns 777305 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44229376ns 777310 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44229774ns 777317 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44229944ns 777320 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44230399ns 777328 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44230570ns 777331 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44230854ns 777336 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44231138ns 777341 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44231422ns 777346 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44231877ns 777354 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44232047ns 777357 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44232331ns 777362 1a110850 fd5ff06f jal x0, -44 +44232615ns 777367 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44232900ns 777372 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44233297ns 777379 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44233468ns 777382 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44233923ns 777390 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44234093ns 777393 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44234377ns 777398 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44234661ns 777403 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44234946ns 777408 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44235400ns 777416 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44235571ns 777419 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44235855ns 777424 1a110850 fd5ff06f jal x0, -44 +44236139ns 777429 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44236423ns 777434 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44236821ns 777441 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44236992ns 777444 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44237446ns 777452 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44237617ns 777455 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44237901ns 777460 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44238185ns 777465 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44238469ns 777470 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44238924ns 777478 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44239094ns 777481 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44239378ns 777486 1a110850 fd5ff06f jal x0, -44 +44239663ns 777491 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44239947ns 777496 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44240345ns 777503 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44240515ns 777506 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44240970ns 777514 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44241140ns 777517 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44241424ns 777522 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44241709ns 777527 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44241993ns 777532 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44242447ns 777540 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44242618ns 777543 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44242902ns 777548 1a110850 fd5ff06f jal x0, -44 +44243186ns 777553 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44243470ns 777558 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44243868ns 777565 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44244039ns 777568 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44244493ns 777576 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44244664ns 777579 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44244948ns 777584 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44245232ns 777589 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44245516ns 777594 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44245971ns 777602 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44246141ns 777605 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44246426ns 777610 1a110850 fd5ff06f jal x0, -44 +44246710ns 777615 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44246994ns 777620 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44247392ns 777627 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44247562ns 777630 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44248017ns 777638 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44248187ns 777641 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44248472ns 777646 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44248756ns 777651 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44249040ns 777656 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44249495ns 777664 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44249665ns 777667 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44249949ns 777672 1a110850 fd5ff06f jal x0, -44 +44250233ns 777677 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44250518ns 777682 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44250915ns 777689 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44251086ns 777692 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44251541ns 777700 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44251711ns 777703 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44251995ns 777708 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44252279ns 777713 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44252563ns 777718 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44253018ns 777726 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44253189ns 777729 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44253473ns 777734 1a110850 fd5ff06f jal x0, -44 +44253757ns 777739 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44254041ns 777744 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44254439ns 777751 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44254609ns 777754 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44255064ns 777762 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44255235ns 777765 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44255519ns 777770 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44255803ns 777775 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44256087ns 777780 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44256542ns 777788 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44256712ns 777791 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44256996ns 777796 1a110850 fd5ff06f jal x0, -44 +44257281ns 777801 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44257565ns 777806 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44257963ns 777813 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44258133ns 777816 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44258588ns 777824 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44258758ns 777827 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44259042ns 777832 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44259327ns 777837 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44259611ns 777842 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44260065ns 777850 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44260236ns 777853 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44260520ns 777858 1a110850 fd5ff06f jal x0, -44 +44260804ns 777863 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44261088ns 777868 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44261486ns 777875 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44261657ns 777878 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44262111ns 777886 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44262282ns 777889 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44262566ns 777894 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44262850ns 777899 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44263134ns 777904 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44263589ns 777912 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44263759ns 777915 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44264044ns 777920 1a110850 fd5ff06f jal x0, -44 +44264328ns 777925 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44264612ns 777930 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44265010ns 777937 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44265180ns 777940 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44265635ns 777948 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44265805ns 777951 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44266090ns 777956 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44266374ns 777961 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44266658ns 777966 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44267112ns 777974 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44267283ns 777977 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44267567ns 777982 1a110850 fd5ff06f jal x0, -44 +44267851ns 777987 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44268135ns 777992 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44268533ns 777999 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44268704ns 778002 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44269158ns 778010 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44269329ns 778013 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44269613ns 778018 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44269897ns 778023 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44270181ns 778028 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44270636ns 778036 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44270807ns 778039 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44271091ns 778044 1a110850 fd5ff06f jal x0, -44 +44271375ns 778049 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44271659ns 778054 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44272057ns 778061 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44272227ns 778064 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44272682ns 778072 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44272853ns 778075 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44273137ns 778080 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44273421ns 778085 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44273705ns 778090 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44274160ns 778098 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44274330ns 778101 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44274614ns 778106 1a110850 fd5ff06f jal x0, -44 +44274898ns 778111 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44275183ns 778116 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44275580ns 778123 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44275751ns 778126 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44276206ns 778134 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44276376ns 778137 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44276660ns 778142 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44276944ns 778147 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44277229ns 778152 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44277683ns 778160 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44277854ns 778163 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44278138ns 778168 1a110850 fd5ff06f jal x0, -44 +44278422ns 778173 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44278706ns 778178 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44279104ns 778185 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44279275ns 778188 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44279729ns 778196 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44279900ns 778199 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44280184ns 778204 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44280468ns 778209 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44280752ns 778214 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44281207ns 778222 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44281377ns 778225 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44281661ns 778230 1a110850 fd5ff06f jal x0, -44 +44281946ns 778235 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44282230ns 778240 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44282628ns 778247 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44282798ns 778250 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44283253ns 778258 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44283423ns 778261 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44283707ns 778266 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44283992ns 778271 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44284276ns 778276 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44284730ns 778284 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44284901ns 778287 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44285185ns 778292 1a110850 fd5ff06f jal x0, -44 +44285469ns 778297 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44285753ns 778302 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44286151ns 778309 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44286322ns 778312 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44286776ns 778320 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44286947ns 778323 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44287231ns 778328 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44287515ns 778333 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44287799ns 778338 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44288254ns 778346 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44288424ns 778349 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44288709ns 778354 1a110850 fd5ff06f jal x0, -44 +44288993ns 778359 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44289277ns 778364 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44289675ns 778371 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44289845ns 778374 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44290300ns 778382 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44290470ns 778385 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44290755ns 778390 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44291039ns 778395 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44291323ns 778400 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44291778ns 778408 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44291948ns 778411 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44292232ns 778416 1a110850 fd5ff06f jal x0, -44 +44292516ns 778421 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44292801ns 778426 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44293198ns 778433 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44293369ns 778436 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44293824ns 778444 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44293994ns 778447 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44294278ns 778452 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44294562ns 778457 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44294847ns 778462 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44295301ns 778470 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44295472ns 778473 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44295756ns 778478 1a110850 fd5ff06f jal x0, -44 +44296040ns 778483 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44296324ns 778488 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44296722ns 778495 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44296892ns 778498 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44297347ns 778506 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44297518ns 778509 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44297802ns 778514 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44298086ns 778519 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44298370ns 778524 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44298825ns 778532 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44298995ns 778535 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44299279ns 778540 1a110850 fd5ff06f jal x0, -44 +44299564ns 778545 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44299848ns 778550 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44300246ns 778557 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44300416ns 778560 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44300871ns 778568 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44301041ns 778571 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44301325ns 778576 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44301610ns 778581 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44301894ns 778586 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44302348ns 778594 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44302519ns 778597 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44302803ns 778602 1a110850 fd5ff06f jal x0, -44 +44303087ns 778607 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44303371ns 778612 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44303769ns 778619 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44303940ns 778622 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44304394ns 778630 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44304565ns 778633 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44304849ns 778638 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44305133ns 778643 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44305417ns 778648 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44305872ns 778656 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44306042ns 778659 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44306327ns 778664 1a110850 fd5ff06f jal x0, -44 +44306611ns 778669 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44306895ns 778674 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44307293ns 778681 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44307463ns 778684 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44307918ns 778692 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44308088ns 778695 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44308373ns 778700 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44308657ns 778705 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44308941ns 778710 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44309395ns 778718 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44309566ns 778721 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44309850ns 778726 1a110850 fd5ff06f jal x0, -44 +44310134ns 778731 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44310418ns 778736 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44310816ns 778743 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44310987ns 778746 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44311441ns 778754 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44311612ns 778757 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44311896ns 778762 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44312180ns 778767 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44312464ns 778772 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44312919ns 778780 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44313090ns 778783 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44313374ns 778788 1a110850 fd5ff06f jal x0, -44 +44313658ns 778793 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44313942ns 778798 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44314340ns 778805 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44314510ns 778808 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44314965ns 778816 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44315136ns 778819 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44315420ns 778824 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44315704ns 778829 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44315988ns 778834 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44316443ns 778842 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44316613ns 778845 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44316897ns 778850 1a110850 fd5ff06f jal x0, -44 +44317181ns 778855 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44317466ns 778860 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44317863ns 778867 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44318034ns 778870 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44318489ns 778878 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44318659ns 778881 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44318943ns 778886 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44319227ns 778891 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44319512ns 778896 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44319966ns 778904 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44320137ns 778907 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44320421ns 778912 1a110850 fd5ff06f jal x0, -44 +44320705ns 778917 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44320989ns 778922 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44321387ns 778929 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44321558ns 778932 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44322012ns 778940 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44322183ns 778943 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44322467ns 778948 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44322751ns 778953 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44323035ns 778958 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44323490ns 778966 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44323660ns 778969 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44323944ns 778974 1a110850 fd5ff06f jal x0, -44 +44324229ns 778979 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44324513ns 778984 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44324911ns 778991 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44325081ns 778994 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44325536ns 779002 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44325706ns 779005 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44325990ns 779010 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44326275ns 779015 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44326559ns 779020 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44327013ns 779028 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44327184ns 779031 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44327468ns 779036 1a110850 fd5ff06f jal x0, -44 +44327752ns 779041 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44328036ns 779046 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44328434ns 779053 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44328605ns 779056 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44329059ns 779064 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44329230ns 779067 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44329514ns 779072 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44329798ns 779077 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44330082ns 779082 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44330537ns 779090 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44330707ns 779093 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44330992ns 779098 1a110850 fd5ff06f jal x0, -44 +44331276ns 779103 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44331560ns 779108 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44331958ns 779115 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44332128ns 779118 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44332583ns 779126 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44332753ns 779129 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44333038ns 779134 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44333322ns 779139 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44333606ns 779144 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44334061ns 779152 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44334231ns 779155 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44334515ns 779160 1a110850 fd5ff06f jal x0, -44 +44334799ns 779165 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44335084ns 779170 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44335481ns 779177 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44335652ns 779180 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44336107ns 779188 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44336277ns 779191 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44336561ns 779196 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44336845ns 779201 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44337130ns 779206 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44337584ns 779214 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44337755ns 779217 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44338039ns 779222 1a110850 fd5ff06f jal x0, -44 +44338323ns 779227 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44338607ns 779232 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44339005ns 779239 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44339175ns 779242 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44339630ns 779250 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44339801ns 779253 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44340085ns 779258 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44340369ns 779263 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44340653ns 779268 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44341108ns 779276 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44341278ns 779279 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44341562ns 779284 1a110850 fd5ff06f jal x0, -44 +44341847ns 779289 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44342131ns 779294 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44342529ns 779301 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44342699ns 779304 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44343154ns 779312 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44343324ns 779315 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44343608ns 779320 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44343893ns 779325 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44344177ns 779330 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44344631ns 779338 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44344802ns 779341 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44345086ns 779346 1a110850 fd5ff06f jal x0, -44 +44345370ns 779351 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44345654ns 779356 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44346052ns 779363 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44346223ns 779366 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44346677ns 779374 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44346848ns 779377 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44347132ns 779382 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44347416ns 779387 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44347700ns 779392 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44348155ns 779400 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44348325ns 779403 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44348610ns 779408 1a110850 fd5ff06f jal x0, -44 +44348894ns 779413 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44349178ns 779418 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44349576ns 779425 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44349746ns 779428 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44350201ns 779436 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44350371ns 779439 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44350656ns 779444 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44350940ns 779449 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44351224ns 779454 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44351679ns 779462 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44351849ns 779465 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44352133ns 779470 1a110850 fd5ff06f jal x0, -44 +44352417ns 779475 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44352701ns 779480 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44353099ns 779487 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44353270ns 779490 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44353724ns 779498 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44353895ns 779501 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44354179ns 779506 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44354463ns 779511 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44354747ns 779516 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44355202ns 779524 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44355373ns 779527 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44355657ns 779532 1a110850 fd5ff06f jal x0, -44 +44355941ns 779537 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44356225ns 779542 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44356623ns 779549 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44356793ns 779552 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44357248ns 779560 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44357419ns 779563 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44357703ns 779568 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44357987ns 779573 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44358271ns 779578 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44358726ns 779586 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44358896ns 779589 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44359180ns 779594 1a110850 fd5ff06f jal x0, -44 +44359464ns 779599 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44359749ns 779604 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44360146ns 779611 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44360317ns 779614 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44360772ns 779622 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44360942ns 779625 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44361226ns 779630 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44361510ns 779635 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44361795ns 779640 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44362249ns 779648 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44362420ns 779651 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44362704ns 779656 1a110850 fd5ff06f jal x0, -44 +44362988ns 779661 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44363272ns 779666 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44363670ns 779673 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44363841ns 779676 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44364295ns 779684 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44364466ns 779687 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44364750ns 779692 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44365034ns 779697 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44365318ns 779702 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44365773ns 779710 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44365943ns 779713 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44366227ns 779718 1a110850 fd5ff06f jal x0, -44 +44366512ns 779723 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44366796ns 779728 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44367194ns 779735 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44367364ns 779738 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44367819ns 779746 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44367989ns 779749 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44368273ns 779754 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44368558ns 779759 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44368842ns 779764 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44369296ns 779772 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44369467ns 779775 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44369751ns 779780 1a110850 fd5ff06f jal x0, -44 +44370035ns 779785 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44370319ns 779790 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44370717ns 779797 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44370888ns 779800 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44371342ns 779808 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44371513ns 779811 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44371797ns 779816 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44372081ns 779821 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44372365ns 779826 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44372820ns 779834 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44372991ns 779837 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44373275ns 779842 1a110850 fd5ff06f jal x0, -44 +44373559ns 779847 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44373843ns 779852 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44374241ns 779859 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44374411ns 779862 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44374866ns 779870 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44375036ns 779873 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44375321ns 779878 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44375605ns 779883 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44375889ns 779888 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44376344ns 779896 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44376514ns 779899 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44376798ns 779904 1a110850 fd5ff06f jal x0, -44 +44377082ns 779909 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44377367ns 779914 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44377764ns 779921 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44377935ns 779924 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44378390ns 779932 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44378560ns 779935 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44378844ns 779940 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44379128ns 779945 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44379413ns 779950 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44379867ns 779958 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44380038ns 779961 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44380322ns 779966 1a110850 fd5ff06f jal x0, -44 +44380606ns 779971 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44380890ns 779976 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44381288ns 779983 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44381458ns 779986 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44381913ns 779994 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44382084ns 779997 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44382368ns 780002 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44382652ns 780007 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44382936ns 780012 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44383391ns 780020 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44383561ns 780023 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44383845ns 780028 1a110850 fd5ff06f jal x0, -44 +44384130ns 780033 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44384414ns 780038 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44384812ns 780045 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44384982ns 780048 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44385437ns 780056 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44385607ns 780059 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44385891ns 780064 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44386176ns 780069 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44386460ns 780074 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44386914ns 780082 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44387085ns 780085 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44387369ns 780090 1a110850 fd5ff06f jal x0, -44 +44387653ns 780095 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44387937ns 780100 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44388335ns 780107 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44388506ns 780110 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44388960ns 780118 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44389131ns 780121 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44389415ns 780126 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44389699ns 780131 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44389983ns 780136 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44390438ns 780144 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44390608ns 780147 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44390893ns 780152 1a110850 fd5ff06f jal x0, -44 +44391177ns 780157 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44391461ns 780162 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44391859ns 780169 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44392029ns 780172 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44392484ns 780180 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44392654ns 780183 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44392939ns 780188 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44393223ns 780193 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44393507ns 780198 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44393962ns 780206 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44394132ns 780209 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44394416ns 780214 1a110850 fd5ff06f jal x0, -44 +44394700ns 780219 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44394984ns 780224 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44395382ns 780231 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44395553ns 780234 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44396007ns 780242 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44396178ns 780245 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44396462ns 780250 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44396746ns 780255 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44397030ns 780260 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44397485ns 780268 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44397656ns 780271 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44397940ns 780276 1a110850 fd5ff06f jal x0, -44 +44398224ns 780281 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44398508ns 780286 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44398906ns 780293 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44399076ns 780296 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44399531ns 780304 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44399702ns 780307 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44399986ns 780312 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44400270ns 780317 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44400554ns 780322 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44401009ns 780330 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44401179ns 780333 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44401463ns 780338 1a110850 fd5ff06f jal x0, -44 +44401747ns 780343 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44402032ns 780348 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44402429ns 780355 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44402600ns 780358 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44403055ns 780366 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44403225ns 780369 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44403509ns 780374 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44403793ns 780379 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44404078ns 780384 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44404532ns 780392 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44404703ns 780395 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44404987ns 780400 1a110850 fd5ff06f jal x0, -44 +44405271ns 780405 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44405555ns 780410 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44405953ns 780417 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44406124ns 780420 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44406578ns 780428 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44406749ns 780431 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44407033ns 780436 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44407317ns 780441 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44407601ns 780446 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44408056ns 780454 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44408226ns 780457 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44408511ns 780462 1a110850 fd5ff06f jal x0, -44 +44408795ns 780467 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44409079ns 780472 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44409477ns 780479 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44409647ns 780482 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44410102ns 780490 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44410272ns 780493 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44410556ns 780498 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44410841ns 780503 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44411125ns 780508 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44411579ns 780516 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44411750ns 780519 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44412034ns 780524 1a110850 fd5ff06f jal x0, -44 +44412318ns 780529 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44412602ns 780534 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44413000ns 780541 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44413171ns 780544 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44413625ns 780552 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44413796ns 780555 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44414080ns 780560 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44414364ns 780565 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44414648ns 780570 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44415103ns 780578 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44415274ns 780581 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44415558ns 780586 1a110850 fd5ff06f jal x0, -44 +44415842ns 780591 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44416126ns 780596 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44416524ns 780603 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44416694ns 780606 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44417149ns 780614 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44417319ns 780617 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44417604ns 780622 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44417888ns 780627 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44418172ns 780632 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44418627ns 780640 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44418797ns 780643 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44419081ns 780648 1a110850 fd5ff06f jal x0, -44 +44419365ns 780653 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44419650ns 780658 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44420047ns 780665 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44420218ns 780668 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44420673ns 780676 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44420843ns 780679 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44421127ns 780684 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44421411ns 780689 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44421696ns 780694 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44422150ns 780702 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44422321ns 780705 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44422605ns 780710 1a110850 fd5ff06f jal x0, -44 +44422889ns 780715 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44423173ns 780720 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44423571ns 780727 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44423741ns 780730 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44424196ns 780738 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44424367ns 780741 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44424651ns 780746 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44424935ns 780751 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44425219ns 780756 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44425674ns 780764 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44425844ns 780767 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44426128ns 780772 1a110850 fd5ff06f jal x0, -44 +44426413ns 780777 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44426697ns 780782 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44427095ns 780789 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44427265ns 780792 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44427720ns 780800 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44427890ns 780803 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44428174ns 780808 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44428459ns 780813 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44428743ns 780818 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44429197ns 780826 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44429368ns 780829 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44429652ns 780834 1a110850 fd5ff06f jal x0, -44 +44429936ns 780839 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44430220ns 780844 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44430618ns 780851 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44430789ns 780854 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44431243ns 780862 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44431414ns 780865 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44431698ns 780870 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44431982ns 780875 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44432266ns 780880 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44432721ns 780888 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44432891ns 780891 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44433176ns 780896 1a110850 fd5ff06f jal x0, -44 +44433460ns 780901 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44433744ns 780906 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44434142ns 780913 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44434312ns 780916 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44434767ns 780924 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44434937ns 780927 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44435222ns 780932 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44435506ns 780937 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44435790ns 780942 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44436245ns 780950 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44436415ns 780953 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44436699ns 780958 1a110850 fd5ff06f jal x0, -44 +44436983ns 780963 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44437267ns 780968 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44437665ns 780975 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44437836ns 780978 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44438290ns 780986 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44438461ns 780989 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44438745ns 780994 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44439029ns 780999 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44439313ns 781004 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44439768ns 781012 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44439939ns 781015 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44440223ns 781020 1a110850 fd5ff06f jal x0, -44 +44440507ns 781025 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44440791ns 781030 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44441189ns 781037 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44441359ns 781040 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44441814ns 781048 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44441985ns 781051 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44442269ns 781056 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44442553ns 781061 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44442837ns 781066 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44443292ns 781074 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44443462ns 781077 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44443746ns 781082 1a110850 fd5ff06f jal x0, -44 +44444031ns 781087 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44444315ns 781092 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44444712ns 781099 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44444883ns 781102 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44445338ns 781110 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44445508ns 781113 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44445792ns 781118 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44446076ns 781123 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44446361ns 781128 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44446815ns 781136 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44446986ns 781139 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44447270ns 781144 1a110850 fd5ff06f jal x0, -44 +44447554ns 781149 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44447838ns 781154 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44448236ns 781161 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44448407ns 781164 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44448861ns 781172 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44449032ns 781175 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44449316ns 781180 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44449600ns 781185 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44449884ns 781190 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44450339ns 781198 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44450509ns 781201 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44450794ns 781206 1a110850 fd5ff06f jal x0, -44 +44451078ns 781211 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44451362ns 781216 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44451760ns 781223 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44451930ns 781226 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44452385ns 781234 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44452555ns 781237 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44452839ns 781242 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44453124ns 781247 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44453408ns 781252 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44453862ns 781260 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44454033ns 781263 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44454317ns 781268 1a110850 fd5ff06f jal x0, -44 +44454601ns 781273 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44454885ns 781278 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44455283ns 781285 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44455454ns 781288 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44455908ns 781296 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44456079ns 781299 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44456363ns 781304 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44456647ns 781309 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44456931ns 781314 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44457386ns 781322 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44457557ns 781325 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44457841ns 781330 1a110850 fd5ff06f jal x0, -44 +44458125ns 781335 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44458409ns 781340 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44458807ns 781347 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44458977ns 781350 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44459432ns 781358 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44459602ns 781361 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44459887ns 781366 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44460171ns 781371 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44460455ns 781376 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44460910ns 781384 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44461080ns 781387 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44461364ns 781392 1a110850 fd5ff06f jal x0, -44 +44461648ns 781397 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44461933ns 781402 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44462330ns 781409 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44462501ns 781412 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44462956ns 781420 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44463126ns 781423 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44463410ns 781428 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44463694ns 781433 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44463979ns 781438 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44464433ns 781446 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44464604ns 781449 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44464888ns 781454 1a110850 fd5ff06f jal x0, -44 +44465172ns 781459 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44465456ns 781464 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44465854ns 781471 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44466024ns 781474 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44466479ns 781482 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44466650ns 781485 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44466934ns 781490 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44467218ns 781495 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44467502ns 781500 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44467957ns 781508 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44468127ns 781511 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44468411ns 781516 1a110850 fd5ff06f jal x0, -44 +44468696ns 781521 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44468980ns 781526 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44469378ns 781533 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44469548ns 781536 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44470003ns 781544 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44470173ns 781547 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44470457ns 781552 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44470742ns 781557 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44471026ns 781562 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44471480ns 781570 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44471651ns 781573 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44471935ns 781578 1a110850 fd5ff06f jal x0, -44 +44472219ns 781583 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44472503ns 781588 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44472901ns 781595 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44473072ns 781598 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44473526ns 781606 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44473697ns 781609 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44473981ns 781614 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44474265ns 781619 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44474549ns 781624 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44475004ns 781632 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44475174ns 781635 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44475459ns 781640 1a110850 fd5ff06f jal x0, -44 +44475743ns 781645 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44476027ns 781650 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44476425ns 781657 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44476595ns 781660 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44477050ns 781668 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44477220ns 781671 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44477505ns 781676 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44477789ns 781681 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44478073ns 781686 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44478528ns 781694 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44478698ns 781697 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44478982ns 781702 1a110850 fd5ff06f jal x0, -44 +44479266ns 781707 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44479551ns 781712 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44479948ns 781719 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44480119ns 781722 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44480573ns 781730 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44480744ns 781733 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44481028ns 781738 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44481312ns 781743 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44481596ns 781748 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44482051ns 781756 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44482222ns 781759 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44482506ns 781764 1a110850 fd5ff06f jal x0, -44 +44482790ns 781769 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44483074ns 781774 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44483472ns 781781 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44483642ns 781784 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44484097ns 781792 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44484268ns 781795 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44484552ns 781800 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44484836ns 781805 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44485120ns 781810 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44485575ns 781818 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44485745ns 781821 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44486029ns 781826 1a110850 fd5ff06f jal x0, -44 +44486314ns 781831 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44486598ns 781836 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44486995ns 781843 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44487166ns 781846 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44487621ns 781854 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44487791ns 781857 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44488075ns 781862 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44488359ns 781867 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44488644ns 781872 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44489098ns 781880 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44489269ns 781883 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44489553ns 781888 1a110850 fd5ff06f jal x0, -44 +44489837ns 781893 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44490121ns 781898 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44490519ns 781905 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44490690ns 781908 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44491144ns 781916 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44491315ns 781919 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44491599ns 781924 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44491883ns 781929 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44492167ns 781934 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44492622ns 781942 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44492792ns 781945 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44493077ns 781950 1a110850 fd5ff06f jal x0, -44 +44493361ns 781955 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44493645ns 781960 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44494043ns 781967 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44494213ns 781970 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44494668ns 781978 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44494838ns 781981 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44495122ns 781986 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44495407ns 781991 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44495691ns 781996 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44496145ns 782004 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44496316ns 782007 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44496600ns 782012 1a110850 fd5ff06f jal x0, -44 +44496884ns 782017 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44497168ns 782022 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44497566ns 782029 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44497737ns 782032 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44498191ns 782040 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44498362ns 782043 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44498646ns 782048 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44498930ns 782053 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44499214ns 782058 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44499669ns 782066 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44499840ns 782069 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44500124ns 782074 1a110850 fd5ff06f jal x0, -44 +44500408ns 782079 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44500692ns 782084 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44501090ns 782091 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44501260ns 782094 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44501715ns 782102 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44501885ns 782105 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44502170ns 782110 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44502454ns 782115 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44502738ns 782120 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44503193ns 782128 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44503363ns 782131 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44503647ns 782136 1a110850 fd5ff06f jal x0, -44 +44503931ns 782141 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44504216ns 782146 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44504613ns 782153 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44504784ns 782156 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44505239ns 782164 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44505409ns 782167 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44505693ns 782172 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44505977ns 782177 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44506262ns 782182 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44506716ns 782190 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44506887ns 782193 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44507171ns 782198 1a110850 fd5ff06f jal x0, -44 +44507455ns 782203 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44507739ns 782208 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44508137ns 782215 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44508307ns 782218 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44508762ns 782226 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44508933ns 782229 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44509217ns 782234 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44509501ns 782239 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44509785ns 782244 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44510240ns 782252 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44510410ns 782255 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44510694ns 782260 1a110850 fd5ff06f jal x0, -44 +44510979ns 782265 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44511263ns 782270 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44511661ns 782277 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44511831ns 782280 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44512286ns 782288 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44512456ns 782291 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44512740ns 782296 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44513025ns 782301 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44513309ns 782306 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44513763ns 782314 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44513934ns 782317 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44514218ns 782322 1a110850 fd5ff06f jal x0, -44 +44514502ns 782327 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44514786ns 782332 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44515184ns 782339 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44515355ns 782342 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44515809ns 782350 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44515980ns 782353 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44516264ns 782358 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44516548ns 782363 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44516832ns 782368 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44517287ns 782376 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44517457ns 782379 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44517742ns 782384 1a110850 fd5ff06f jal x0, -44 +44518026ns 782389 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44518310ns 782394 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44518708ns 782401 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44518878ns 782404 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44519333ns 782412 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44519503ns 782415 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44519788ns 782420 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44520072ns 782425 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44520356ns 782430 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44520811ns 782438 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44520981ns 782441 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44521265ns 782446 1a110850 fd5ff06f jal x0, -44 +44521549ns 782451 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44521834ns 782456 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44522231ns 782463 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44522402ns 782466 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44522856ns 782474 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44523027ns 782477 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44523311ns 782482 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44523595ns 782487 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44523879ns 782492 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44524334ns 782500 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44524505ns 782503 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44524789ns 782508 1a110850 fd5ff06f jal x0, -44 +44525073ns 782513 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44525357ns 782518 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44525755ns 782525 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44525925ns 782528 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44526380ns 782536 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44526551ns 782539 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44526835ns 782544 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44527119ns 782549 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44527403ns 782554 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44527858ns 782562 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44528028ns 782565 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44528312ns 782570 1a110850 fd5ff06f jal x0, -44 +44528597ns 782575 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44528881ns 782580 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44529279ns 782587 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44529449ns 782590 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44529904ns 782598 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44530074ns 782601 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44530358ns 782606 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44530642ns 782611 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44530927ns 782616 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44531381ns 782624 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44531552ns 782627 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44531836ns 782632 1a110850 fd5ff06f jal x0, -44 +44532120ns 782637 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44532404ns 782642 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44532802ns 782649 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44532973ns 782652 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44533427ns 782660 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44533598ns 782663 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44533882ns 782668 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44534166ns 782673 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44534450ns 782678 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44534905ns 782686 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44535075ns 782689 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44535360ns 782694 1a110850 fd5ff06f jal x0, -44 +44535644ns 782699 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44535928ns 782704 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44536326ns 782711 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44536496ns 782714 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44536951ns 782722 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44537121ns 782725 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44537405ns 782730 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44537690ns 782735 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44537974ns 782740 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44538428ns 782748 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44538599ns 782751 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44538883ns 782756 1a110850 fd5ff06f jal x0, -44 +44539167ns 782761 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44539451ns 782766 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44539849ns 782773 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44540020ns 782776 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44540474ns 782784 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44540645ns 782787 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44540929ns 782792 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44541213ns 782797 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44541497ns 782802 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44541952ns 782810 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44542123ns 782813 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44542407ns 782818 1a110850 fd5ff06f jal x0, -44 +44542691ns 782823 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44542975ns 782828 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44543373ns 782835 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44543543ns 782838 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44543998ns 782846 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44544168ns 782849 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44544453ns 782854 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44544737ns 782859 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44545021ns 782864 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44545476ns 782872 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44545646ns 782875 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44545930ns 782880 1a110850 fd5ff06f jal x0, -44 +44546214ns 782885 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44546499ns 782890 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44546896ns 782897 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44547067ns 782900 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44547522ns 782908 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44547692ns 782911 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44547976ns 782916 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44548260ns 782921 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44548545ns 782926 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44548999ns 782934 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44549170ns 782937 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44549454ns 782942 1a110850 fd5ff06f jal x0, -44 +44549738ns 782947 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44550022ns 782952 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44550420ns 782959 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44550591ns 782962 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44551045ns 782970 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44551216ns 782973 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44551500ns 782978 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44551784ns 782983 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44552068ns 782988 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44552523ns 782996 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44552693ns 782999 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44552977ns 783004 1a110850 fd5ff06f jal x0, -44 +44553262ns 783009 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44553546ns 783014 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44553944ns 783021 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44554114ns 783024 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44554569ns 783032 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44554739ns 783035 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44555023ns 783040 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44555308ns 783045 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44555592ns 783050 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44556046ns 783058 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44556217ns 783061 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44556501ns 783066 1a110850 fd5ff06f jal x0, -44 +44556785ns 783071 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44557069ns 783076 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44557467ns 783083 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44557638ns 783086 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44558092ns 783094 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44558263ns 783097 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44558547ns 783102 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44558831ns 783107 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44559115ns 783112 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44559570ns 783120 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44559740ns 783123 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44560025ns 783128 1a110850 fd5ff06f jal x0, -44 +44560309ns 783133 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44560593ns 783138 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44560991ns 783145 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44561161ns 783148 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44561616ns 783156 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44561786ns 783159 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44562071ns 783164 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44562355ns 783169 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44562639ns 783174 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44563094ns 783182 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44563264ns 783185 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44563548ns 783190 1a110850 fd5ff06f jal x0, -44 +44563832ns 783195 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44564117ns 783200 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44564514ns 783207 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44564685ns 783210 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44565139ns 783218 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44565310ns 783221 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44565594ns 783226 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44565878ns 783231 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44566162ns 783236 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44566617ns 783244 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44566788ns 783247 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44567072ns 783252 1a110850 fd5ff06f jal x0, -44 +44567356ns 783257 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44567640ns 783262 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44568038ns 783269 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44568208ns 783272 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44568663ns 783280 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44568834ns 783283 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44569118ns 783288 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44569402ns 783293 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44569686ns 783298 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44570141ns 783306 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44570311ns 783309 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44570595ns 783314 1a110850 fd5ff06f jal x0, -44 +44570880ns 783319 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44571164ns 783324 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44571562ns 783331 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44571732ns 783334 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44572187ns 783342 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44572357ns 783345 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44572641ns 783350 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44572925ns 783355 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44573210ns 783360 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44573664ns 783368 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44573835ns 783371 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44574119ns 783376 1a110850 fd5ff06f jal x0, -44 +44574403ns 783381 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44574687ns 783386 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44575085ns 783393 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44575256ns 783396 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44575710ns 783404 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44575881ns 783407 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44576165ns 783412 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44576449ns 783417 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44576733ns 783422 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44577188ns 783430 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44577358ns 783433 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44577643ns 783438 1a110850 fd5ff06f jal x0, -44 +44577927ns 783443 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44578211ns 783448 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44578609ns 783455 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44578779ns 783458 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44579234ns 783466 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44579404ns 783469 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44579688ns 783474 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44579973ns 783479 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44580257ns 783484 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44580711ns 783492 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44580882ns 783495 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44581166ns 783500 1a110850 fd5ff06f jal x0, -44 +44581450ns 783505 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44581734ns 783510 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44582132ns 783517 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44582303ns 783520 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44582757ns 783528 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44582928ns 783531 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44583212ns 783536 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44583496ns 783541 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44583780ns 783546 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44584235ns 783554 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44584406ns 783557 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44584690ns 783562 1a110850 fd5ff06f jal x0, -44 +44584974ns 783567 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44585258ns 783572 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44585656ns 783579 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44585826ns 783582 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44586281ns 783590 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44586451ns 783593 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44586736ns 783598 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44587020ns 783603 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44587304ns 783608 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44587759ns 783616 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44587929ns 783619 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44588213ns 783624 1a110850 fd5ff06f jal x0, -44 +44588497ns 783629 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44588782ns 783634 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44589179ns 783641 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44589350ns 783644 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44589805ns 783652 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44589975ns 783655 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44590259ns 783660 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44590543ns 783665 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44590828ns 783670 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44591282ns 783678 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44591453ns 783681 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44591737ns 783686 1a110850 fd5ff06f jal x0, -44 +44592021ns 783691 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44592305ns 783696 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44592703ns 783703 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44592874ns 783706 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44593328ns 783714 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44593499ns 783717 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44593783ns 783722 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44594067ns 783727 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44594351ns 783732 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44594806ns 783740 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44594976ns 783743 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44595260ns 783748 1a110850 fd5ff06f jal x0, -44 +44595545ns 783753 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44595829ns 783758 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44596227ns 783765 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44596397ns 783768 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44596852ns 783776 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44597022ns 783779 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44597306ns 783784 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44597591ns 783789 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44597875ns 783794 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44598329ns 783802 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44598500ns 783805 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44598784ns 783810 1a110850 fd5ff06f jal x0, -44 +44599068ns 783815 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44599352ns 783820 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44599750ns 783827 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44599921ns 783830 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44600375ns 783838 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44600546ns 783841 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44600830ns 783846 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44601114ns 783851 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44601398ns 783856 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44601853ns 783864 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44602023ns 783867 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44602308ns 783872 1a110850 fd5ff06f jal x0, -44 +44602592ns 783877 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44602876ns 783882 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44603274ns 783889 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44603444ns 783892 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44603899ns 783900 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44604069ns 783903 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44604354ns 783908 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44604638ns 783913 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44604922ns 783918 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44605377ns 783926 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44605547ns 783929 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44605831ns 783934 1a110850 fd5ff06f jal x0, -44 +44606115ns 783939 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44606400ns 783944 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44606797ns 783951 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44606968ns 783954 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44607423ns 783962 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44607593ns 783965 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44607877ns 783970 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44608161ns 783975 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44608445ns 783980 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44608900ns 783988 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44609071ns 783991 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44609355ns 783996 1a110850 fd5ff06f jal x0, -44 +44609639ns 784001 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44609923ns 784006 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44610321ns 784013 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44610491ns 784016 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44610946ns 784024 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44611117ns 784027 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44611401ns 784032 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44611685ns 784037 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44611969ns 784042 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44612424ns 784050 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44612594ns 784053 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44612878ns 784058 1a110850 fd5ff06f jal x0, -44 +44613163ns 784063 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44613447ns 784068 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44613845ns 784075 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44614015ns 784078 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44614470ns 784086 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44614640ns 784089 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44614924ns 784094 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44615208ns 784099 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44615493ns 784104 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44615947ns 784112 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44616118ns 784115 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44616402ns 784120 1a110850 fd5ff06f jal x0, -44 +44616686ns 784125 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44616970ns 784130 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44617368ns 784137 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44617539ns 784140 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44617993ns 784148 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44618164ns 784151 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44618448ns 784156 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44618732ns 784161 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44619016ns 784166 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44619471ns 784174 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44619641ns 784177 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44619926ns 784182 1a110850 fd5ff06f jal x0, -44 +44620210ns 784187 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44620494ns 784192 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44620892ns 784199 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44621062ns 784202 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44621517ns 784210 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44621687ns 784213 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44621971ns 784218 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44622256ns 784223 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44622540ns 784228 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44622994ns 784236 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44623165ns 784239 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44623449ns 784244 1a110850 fd5ff06f jal x0, -44 +44623733ns 784249 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44624017ns 784254 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44624415ns 784261 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44624586ns 784264 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44625040ns 784272 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44625211ns 784275 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44625495ns 784280 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44625779ns 784285 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44626063ns 784290 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44626518ns 784298 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44626689ns 784301 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44626973ns 784306 1a110850 fd5ff06f jal x0, -44 +44627257ns 784311 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44627541ns 784316 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44627939ns 784323 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44628109ns 784326 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44628564ns 784334 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44628735ns 784337 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44629019ns 784342 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44629303ns 784347 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44629587ns 784352 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44630042ns 784360 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44630212ns 784363 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44630496ns 784368 1a110850 fd5ff06f jal x0, -44 +44630780ns 784373 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44631065ns 784378 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44631462ns 784385 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44631633ns 784388 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44632088ns 784396 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44632258ns 784399 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44632542ns 784404 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44632826ns 784409 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44633111ns 784414 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44633565ns 784422 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44633736ns 784425 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44634020ns 784430 1a110850 fd5ff06f jal x0, -44 +44634304ns 784435 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44634588ns 784440 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44634986ns 784447 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44635157ns 784450 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44635611ns 784458 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44635782ns 784461 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44636066ns 784466 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44636350ns 784471 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44636634ns 784476 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44637089ns 784484 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44637259ns 784487 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44637543ns 784492 1a110850 fd5ff06f jal x0, -44 +44637828ns 784497 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44638112ns 784502 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44638510ns 784509 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44638680ns 784512 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44639135ns 784520 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44639305ns 784523 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44639589ns 784528 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44639874ns 784533 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44640158ns 784538 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44640612ns 784546 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44640783ns 784549 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44641067ns 784554 1a110850 fd5ff06f jal x0, -44 +44641351ns 784559 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44641635ns 784564 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44642033ns 784571 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44642204ns 784574 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44642658ns 784582 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44642829ns 784585 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44643113ns 784590 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44643397ns 784595 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44643681ns 784600 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44644136ns 784608 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44644306ns 784611 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44644591ns 784616 1a110850 fd5ff06f jal x0, -44 +44644875ns 784621 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44645159ns 784626 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44645557ns 784633 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44645727ns 784636 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44646182ns 784644 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44646352ns 784647 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44646637ns 784652 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44646921ns 784657 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44647205ns 784662 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44647660ns 784670 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44647830ns 784673 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44648114ns 784678 1a110850 fd5ff06f jal x0, -44 +44648398ns 784683 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44648683ns 784688 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44649080ns 784695 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44649251ns 784698 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44649706ns 784706 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44649876ns 784709 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44650160ns 784714 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44650444ns 784719 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44650728ns 784724 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44651183ns 784732 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44651354ns 784735 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44651638ns 784740 1a110850 fd5ff06f jal x0, -44 +44651922ns 784745 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44652206ns 784750 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44652604ns 784757 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44652774ns 784760 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44653229ns 784768 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44653400ns 784771 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44653684ns 784776 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44653968ns 784781 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44654252ns 784786 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44654707ns 784794 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44654877ns 784797 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44655161ns 784802 1a110850 fd5ff06f jal x0, -44 +44655446ns 784807 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44655730ns 784812 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44656128ns 784819 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44656298ns 784822 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44656753ns 784830 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44656923ns 784833 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44657207ns 784838 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44657491ns 784843 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44657776ns 784848 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44658230ns 784856 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44658401ns 784859 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44658685ns 784864 1a110850 fd5ff06f jal x0, -44 +44658969ns 784869 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44659253ns 784874 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44659651ns 784881 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44659822ns 784884 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44660276ns 784892 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44660447ns 784895 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44660731ns 784900 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44661015ns 784905 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44661299ns 784910 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44661754ns 784918 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44661924ns 784921 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44662209ns 784926 1a110850 fd5ff06f jal x0, -44 +44662493ns 784931 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44662777ns 784936 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44663175ns 784943 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44663345ns 784946 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44663800ns 784954 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44663970ns 784957 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44664255ns 784962 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44664539ns 784967 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44664823ns 784972 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44665277ns 784980 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44665448ns 784983 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44665732ns 784988 1a110850 fd5ff06f jal x0, -44 +44666016ns 784993 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44666300ns 784998 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44666698ns 785005 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44666869ns 785008 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44667323ns 785016 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44667494ns 785019 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44667778ns 785024 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44668062ns 785029 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44668346ns 785034 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44668801ns 785042 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44668972ns 785045 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44669256ns 785050 1a110850 fd5ff06f jal x0, -44 +44669540ns 785055 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44669824ns 785060 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44670222ns 785067 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44670392ns 785070 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44670847ns 785078 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44671018ns 785081 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44671302ns 785086 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44671586ns 785091 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44671870ns 785096 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44672325ns 785104 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44672495ns 785107 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44672779ns 785112 1a110850 fd5ff06f jal x0, -44 +44673063ns 785117 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44673348ns 785122 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44673745ns 785129 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44673916ns 785132 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44674371ns 785140 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44674541ns 785143 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44674825ns 785148 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44675109ns 785153 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44675394ns 785158 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44675848ns 785166 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44676019ns 785169 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44676303ns 785174 1a110850 fd5ff06f jal x0, -44 +44676587ns 785179 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44676871ns 785184 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44677269ns 785191 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44677440ns 785194 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44677894ns 785202 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44678065ns 785205 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44678349ns 785210 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44678633ns 785215 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44678917ns 785220 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44679372ns 785228 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44679542ns 785231 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44679826ns 785236 1a110850 fd5ff06f jal x0, -44 +44680111ns 785241 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44680395ns 785246 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44680793ns 785253 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44680963ns 785256 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44681418ns 785264 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44681588ns 785267 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44681872ns 785272 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44682157ns 785277 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44682441ns 785282 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44682895ns 785290 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44683066ns 785293 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44683350ns 785298 1a110850 fd5ff06f jal x0, -44 +44683634ns 785303 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44683918ns 785308 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44684316ns 785315 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44684487ns 785318 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44684941ns 785326 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44685112ns 785329 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44685396ns 785334 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44685680ns 785339 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44685964ns 785344 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44686419ns 785352 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44686589ns 785355 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44686874ns 785360 1a110850 fd5ff06f jal x0, -44 +44687158ns 785365 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44687442ns 785370 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44687840ns 785377 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44688010ns 785380 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44688465ns 785388 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44688635ns 785391 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44688920ns 785396 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44689204ns 785401 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44689488ns 785406 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44689943ns 785414 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44690113ns 785417 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44690397ns 785422 1a110850 fd5ff06f jal x0, -44 +44690681ns 785427 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44690966ns 785432 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44691363ns 785439 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44691534ns 785442 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44691989ns 785450 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44692159ns 785453 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44692443ns 785458 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44692727ns 785463 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44693011ns 785468 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44693466ns 785476 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44693637ns 785479 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44693921ns 785484 1a110850 fd5ff06f jal x0, -44 +44694205ns 785489 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44694489ns 785494 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44694887ns 785501 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44695057ns 785504 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44695512ns 785512 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44695683ns 785515 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44695967ns 785520 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44696251ns 785525 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44696535ns 785530 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44696990ns 785538 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44697160ns 785541 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44697444ns 785546 1a110850 fd5ff06f jal x0, -44 +44697729ns 785551 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44698013ns 785556 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44698411ns 785563 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44698581ns 785566 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44699036ns 785574 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44699206ns 785577 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44699490ns 785582 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44699775ns 785587 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44700059ns 785592 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44700513ns 785600 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44700684ns 785603 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44700968ns 785608 1a110850 fd5ff06f jal x0, -44 +44701252ns 785613 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44701536ns 785618 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44701934ns 785625 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44702105ns 785628 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44702559ns 785636 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44702730ns 785639 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44703014ns 785644 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44703298ns 785649 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44703582ns 785654 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44704037ns 785662 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44704207ns 785665 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44704492ns 785670 1a110850 fd5ff06f jal x0, -44 +44704776ns 785675 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44705060ns 785680 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44705458ns 785687 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44705628ns 785690 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44706083ns 785698 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44706253ns 785701 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44706538ns 785706 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44706822ns 785711 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44707106ns 785716 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44707560ns 785724 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44707731ns 785727 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44708015ns 785732 1a110850 fd5ff06f jal x0, -44 +44708299ns 785737 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44708583ns 785742 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44708981ns 785749 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44709152ns 785752 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44709606ns 785760 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44709777ns 785763 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44710061ns 785768 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44710345ns 785773 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44710629ns 785778 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44711084ns 785786 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44711255ns 785789 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44711539ns 785794 1a110850 fd5ff06f jal x0, -44 +44711823ns 785799 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44712107ns 785804 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44712505ns 785811 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44712675ns 785814 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44713130ns 785822 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44713301ns 785825 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44713585ns 785830 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44713869ns 785835 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44714153ns 785840 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44714608ns 785848 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44714778ns 785851 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44715062ns 785856 1a110850 fd5ff06f jal x0, -44 +44715346ns 785861 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44715631ns 785866 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44716028ns 785873 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44716199ns 785876 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44716654ns 785884 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44716824ns 785887 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44717108ns 785892 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44717392ns 785897 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44717677ns 785902 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44718131ns 785910 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44718302ns 785913 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44718586ns 785918 1a110850 fd5ff06f jal x0, -44 +44718870ns 785923 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44719154ns 785928 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44719552ns 785935 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44719723ns 785938 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44720177ns 785946 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44720348ns 785949 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44720632ns 785954 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44720916ns 785959 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44721200ns 785964 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44721655ns 785972 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44721825ns 785975 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44722109ns 785980 1a110850 fd5ff06f jal x0, -44 +44722394ns 785985 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44722678ns 785990 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44723076ns 785997 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44723246ns 786000 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44723701ns 786008 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44723871ns 786011 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44724155ns 786016 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44724440ns 786021 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44724724ns 786026 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44725178ns 786034 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44725349ns 786037 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44725633ns 786042 1a110850 fd5ff06f jal x0, -44 +44725917ns 786047 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44726201ns 786052 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44726599ns 786059 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44726770ns 786062 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44727224ns 786070 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44727395ns 786073 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44727679ns 786078 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44727963ns 786083 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44728247ns 786088 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44728702ns 786096 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44728872ns 786099 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44729157ns 786104 1a110850 fd5ff06f jal x0, -44 +44729441ns 786109 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44729725ns 786114 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44730123ns 786121 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44730293ns 786124 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44730748ns 786132 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44730918ns 786135 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44731203ns 786140 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44731487ns 786145 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44731771ns 786150 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44732226ns 786158 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44732396ns 786161 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44732680ns 786166 1a110850 fd5ff06f jal x0, -44 +44732964ns 786171 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44733249ns 786176 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44733646ns 786183 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44733817ns 786186 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44734272ns 786194 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44734442ns 786197 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44734726ns 786202 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44735010ns 786207 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44735295ns 786212 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44735749ns 786220 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44735920ns 786223 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44736204ns 786228 1a110850 fd5ff06f jal x0, -44 +44736488ns 786233 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44736772ns 786238 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44737170ns 786245 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44737340ns 786248 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44737795ns 786256 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44737966ns 786259 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44738250ns 786264 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44738534ns 786269 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44738818ns 786274 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44739273ns 786282 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44739443ns 786285 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44739727ns 786290 1a110850 fd5ff06f jal x0, -44 +44740012ns 786295 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44740296ns 786300 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44740694ns 786307 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44740864ns 786310 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44741319ns 786318 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44741489ns 786321 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44741773ns 786326 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44742058ns 786331 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44742342ns 786336 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44742796ns 786344 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44742967ns 786347 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44743251ns 786352 1a110850 fd5ff06f jal x0, -44 +44743535ns 786357 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44743819ns 786362 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44744217ns 786369 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44744388ns 786372 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44744842ns 786380 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44745013ns 786383 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44745297ns 786388 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44745581ns 786393 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44745865ns 786398 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44746320ns 786406 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44746490ns 786409 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44746775ns 786414 1a110850 fd5ff06f jal x0, -44 +44747059ns 786419 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44747343ns 786424 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44747741ns 786431 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44747911ns 786434 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44748366ns 786442 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44748536ns 786445 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44748821ns 786450 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44749105ns 786455 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44749389ns 786460 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44749843ns 786468 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44750014ns 786471 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44750298ns 786476 1a110850 fd5ff06f jal x0, -44 +44750582ns 786481 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44750866ns 786486 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44751264ns 786493 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44751435ns 786496 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44751889ns 786504 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44752060ns 786507 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44752344ns 786512 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44752628ns 786517 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44752912ns 786522 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44753367ns 786530 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44753538ns 786533 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44753822ns 786538 1a110850 fd5ff06f jal x0, -44 +44754106ns 786543 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44754390ns 786548 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44754788ns 786555 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44754958ns 786558 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44755413ns 786566 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44755584ns 786569 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44755868ns 786574 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44756152ns 786579 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44756436ns 786584 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44756891ns 786592 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44757061ns 786595 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44757345ns 786600 1a110850 fd5ff06f jal x0, -44 +44757629ns 786605 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44757914ns 786610 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44758311ns 786617 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44758482ns 786620 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44758937ns 786628 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44759107ns 786631 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44759391ns 786636 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44759675ns 786641 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44759960ns 786646 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44760414ns 786654 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44760585ns 786657 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44760869ns 786662 1a110850 fd5ff06f jal x0, -44 +44761153ns 786667 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44761437ns 786672 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44761835ns 786679 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44762006ns 786682 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44762460ns 786690 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44762631ns 786693 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44762915ns 786698 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44763199ns 786703 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44763483ns 786708 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44763938ns 786716 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44764108ns 786719 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44764392ns 786724 1a110850 fd5ff06f jal x0, -44 +44764677ns 786729 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44764961ns 786734 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44765359ns 786741 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44765529ns 786744 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44765984ns 786752 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44766154ns 786755 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44766438ns 786760 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44766723ns 786765 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44767007ns 786770 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44767461ns 786778 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44767632ns 786781 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44767916ns 786786 1a110850 fd5ff06f jal x0, -44 +44768200ns 786791 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44768484ns 786796 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44768882ns 786803 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44769053ns 786806 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44769507ns 786814 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44769678ns 786817 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44769962ns 786822 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44770246ns 786827 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44770530ns 786832 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44770985ns 786840 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44771155ns 786843 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44771440ns 786848 1a110850 fd5ff06f jal x0, -44 +44771724ns 786853 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44772008ns 786858 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44772406ns 786865 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44772576ns 786868 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44773031ns 786876 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44773201ns 786879 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44773486ns 786884 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44773770ns 786889 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44774054ns 786894 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44774509ns 786902 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44774679ns 786905 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44774963ns 786910 1a110850 fd5ff06f jal x0, -44 +44775247ns 786915 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44775532ns 786920 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44775929ns 786927 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44776100ns 786930 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44776555ns 786938 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44776725ns 786941 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44777009ns 786946 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44777293ns 786951 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44777578ns 786956 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44778032ns 786964 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44778203ns 786967 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44778487ns 786972 1a110850 fd5ff06f jal x0, -44 +44778771ns 786977 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44779055ns 786982 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44779453ns 786989 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44779623ns 786992 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44780078ns 787000 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44780249ns 787003 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44780533ns 787008 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44780817ns 787013 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44781101ns 787018 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44781556ns 787026 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44781726ns 787029 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44782010ns 787034 1a110850 fd5ff06f jal x0, -44 +44782295ns 787039 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44782579ns 787044 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44782977ns 787051 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44783147ns 787054 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44783602ns 787062 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44783772ns 787065 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44784056ns 787070 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44784341ns 787075 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44784625ns 787080 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44785079ns 787088 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44785250ns 787091 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44785534ns 787096 1a110850 fd5ff06f jal x0, -44 +44785818ns 787101 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44786102ns 787106 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44786500ns 787113 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44786671ns 787116 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44787125ns 787124 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44787296ns 787127 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44787580ns 787132 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44787864ns 787137 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44788148ns 787142 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44788603ns 787150 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44788773ns 787153 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44789058ns 787158 1a110850 fd5ff06f jal x0, -44 +44789342ns 787163 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44789626ns 787168 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44790024ns 787175 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44790194ns 787178 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44790649ns 787186 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44790819ns 787189 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44791104ns 787194 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44791388ns 787199 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44791672ns 787204 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44792127ns 787212 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44792297ns 787215 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44792581ns 787220 1a110850 fd5ff06f jal x0, -44 +44792865ns 787225 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44793149ns 787230 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44793547ns 787237 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44793718ns 787240 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44794172ns 787248 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44794343ns 787251 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44794627ns 787256 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44794911ns 787261 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44795195ns 787266 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44795650ns 787274 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44795821ns 787277 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44796105ns 787282 1a110850 fd5ff06f jal x0, -44 +44796389ns 787287 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44796673ns 787292 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44797071ns 787299 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44797241ns 787302 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44797696ns 787310 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44797867ns 787313 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44798151ns 787318 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44798435ns 787323 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44798719ns 787328 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44799174ns 787336 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44799344ns 787339 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44799628ns 787344 1a110850 fd5ff06f jal x0, -44 +44799912ns 787349 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44800197ns 787354 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44800594ns 787361 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44800765ns 787364 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44801220ns 787372 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44801390ns 787375 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44801674ns 787380 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44801958ns 787385 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44802243ns 787390 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44802697ns 787398 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44802868ns 787401 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44803152ns 787406 1a110850 fd5ff06f jal x0, -44 +44803436ns 787411 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44803720ns 787416 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44804118ns 787423 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44804289ns 787426 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44804743ns 787434 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44804914ns 787437 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44805198ns 787442 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44805482ns 787447 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44805766ns 787452 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44806221ns 787460 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44806391ns 787463 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44806675ns 787468 1a110850 fd5ff06f jal x0, -44 +44806960ns 787473 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44807244ns 787478 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44807642ns 787485 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44807812ns 787488 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44808267ns 787496 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44808437ns 787499 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44808721ns 787504 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44809006ns 787509 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44809290ns 787514 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44809744ns 787522 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44809915ns 787525 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44810199ns 787530 1a110850 fd5ff06f jal x0, -44 +44810483ns 787535 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44810767ns 787540 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44811165ns 787547 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44811336ns 787550 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44811790ns 787558 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44811961ns 787561 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44812245ns 787566 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44812529ns 787571 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44812813ns 787576 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44813268ns 787584 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44813439ns 787587 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44813723ns 787592 1a110850 fd5ff06f jal x0, -44 +44814007ns 787597 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44814291ns 787602 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44814689ns 787609 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44814859ns 787612 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44815314ns 787620 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44815484ns 787623 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44815769ns 787628 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44816053ns 787633 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44816337ns 787638 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44816792ns 787646 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44816962ns 787649 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44817246ns 787654 1a110850 fd5ff06f jal x0, -44 +44817530ns 787659 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44817815ns 787664 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44818212ns 787671 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44818383ns 787674 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44818838ns 787682 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44819008ns 787685 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44819292ns 787690 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44819576ns 787695 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44819861ns 787700 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44820315ns 787708 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44820486ns 787711 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44820770ns 787716 1a110850 fd5ff06f jal x0, -44 +44821054ns 787721 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44821338ns 787726 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44821736ns 787733 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44821906ns 787736 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44822361ns 787744 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44822532ns 787747 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44822816ns 787752 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44823100ns 787757 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44823384ns 787762 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44823839ns 787770 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44824009ns 787773 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44824293ns 787778 1a110850 fd5ff06f jal x0, -44 +44824578ns 787783 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44824862ns 787788 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44825260ns 787795 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44825430ns 787798 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44825885ns 787806 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44826055ns 787809 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44826339ns 787814 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44826624ns 787819 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44826908ns 787824 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44827362ns 787832 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44827533ns 787835 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44827817ns 787840 1a110850 fd5ff06f jal x0, -44 +44828101ns 787845 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44828385ns 787850 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44828783ns 787857 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44828954ns 787860 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44829408ns 787868 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44829579ns 787871 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44829863ns 787876 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44830147ns 787881 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44830431ns 787886 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44830886ns 787894 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44831056ns 787897 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44831341ns 787902 1a110850 fd5ff06f jal x0, -44 +44831625ns 787907 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44831909ns 787912 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44832307ns 787919 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44832477ns 787922 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44832932ns 787930 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44833102ns 787933 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44833387ns 787938 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44833671ns 787943 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44833955ns 787948 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44834410ns 787956 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44834580ns 787959 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44834864ns 787964 1a110850 fd5ff06f jal x0, -44 +44835148ns 787969 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44835432ns 787974 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44835830ns 787981 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44836001ns 787984 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44836455ns 787992 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44836626ns 787995 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44836910ns 788000 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44837194ns 788005 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44837478ns 788010 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44837933ns 788018 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44838104ns 788021 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44838388ns 788026 1a110850 fd5ff06f jal x0, -44 +44838672ns 788031 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44838956ns 788036 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44839354ns 788043 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44839524ns 788046 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44839979ns 788054 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44840150ns 788057 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44840434ns 788062 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44840718ns 788067 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44841002ns 788072 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44841457ns 788080 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44841627ns 788083 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44841911ns 788088 1a110850 fd5ff06f jal x0, -44 +44842195ns 788093 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44842480ns 788098 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44842877ns 788105 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44843048ns 788108 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44843503ns 788116 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44843673ns 788119 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44843957ns 788124 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44844241ns 788129 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44844526ns 788134 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44844980ns 788142 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44845151ns 788145 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44845435ns 788150 1a110850 fd5ff06f jal x0, -44 +44845719ns 788155 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44846003ns 788160 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44846401ns 788167 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44846572ns 788170 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44847026ns 788178 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44847197ns 788181 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44847481ns 788186 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44847765ns 788191 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44848049ns 788196 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44848504ns 788204 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44848674ns 788207 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44848959ns 788212 1a110850 fd5ff06f jal x0, -44 +44849243ns 788217 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44849527ns 788222 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44849925ns 788229 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44850095ns 788232 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44850550ns 788240 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44850720ns 788243 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44851004ns 788248 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44851289ns 788253 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44851573ns 788258 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44852027ns 788266 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44852198ns 788269 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44852482ns 788274 1a110850 fd5ff06f jal x0, -44 +44852766ns 788279 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44853050ns 788284 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44853448ns 788291 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44853619ns 788294 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44854073ns 788302 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44854244ns 788305 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44854528ns 788310 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44854812ns 788315 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44855096ns 788320 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44855551ns 788328 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44855722ns 788331 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44856006ns 788336 1a110850 fd5ff06f jal x0, -44 +44856290ns 788341 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44856574ns 788346 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44856972ns 788353 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44857142ns 788356 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44857597ns 788364 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44857767ns 788367 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44858052ns 788372 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44858336ns 788377 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44858620ns 788382 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44859075ns 788390 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44859245ns 788393 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44859529ns 788398 1a110850 fd5ff06f jal x0, -44 +44859813ns 788403 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44860098ns 788408 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44860495ns 788415 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44860666ns 788418 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44861121ns 788426 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44861291ns 788429 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44861575ns 788434 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44861859ns 788439 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44862144ns 788444 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44862598ns 788452 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44862769ns 788455 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44863053ns 788460 1a110850 fd5ff06f jal x0, -44 +44863337ns 788465 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44863621ns 788470 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44864019ns 788477 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44864189ns 788480 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44864644ns 788488 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44864815ns 788491 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44865099ns 788496 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44865383ns 788501 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44865667ns 788506 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44866122ns 788514 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44866292ns 788517 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44866576ns 788522 1a110850 fd5ff06f jal x0, -44 +44866861ns 788527 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44867145ns 788532 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44867543ns 788539 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44867713ns 788542 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44868168ns 788550 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44868338ns 788553 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44868622ns 788558 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44868907ns 788563 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44869191ns 788568 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44869645ns 788576 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44869816ns 788579 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44870100ns 788584 1a110850 fd5ff06f jal x0, -44 +44870384ns 788589 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44870668ns 788594 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44871066ns 788601 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44871237ns 788604 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44871691ns 788612 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44871862ns 788615 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44872146ns 788620 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44872430ns 788625 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44872714ns 788630 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44873169ns 788638 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44873339ns 788641 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44873624ns 788646 1a110850 fd5ff06f jal x0, -44 +44873908ns 788651 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44874192ns 788656 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44874590ns 788663 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44874760ns 788666 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44875215ns 788674 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44875385ns 788677 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44875670ns 788682 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44875954ns 788687 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44876238ns 788692 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44876693ns 788700 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44876863ns 788703 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44877147ns 788708 1a110850 fd5ff06f jal x0, -44 +44877431ns 788713 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44877715ns 788718 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44878113ns 788725 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44878284ns 788728 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44878738ns 788736 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44878909ns 788739 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44879193ns 788744 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44879477ns 788749 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44879761ns 788754 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44880216ns 788762 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44880387ns 788765 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44880671ns 788770 1a110850 fd5ff06f jal x0, -44 +44880955ns 788775 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44881239ns 788780 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44881637ns 788787 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44881807ns 788790 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44882262ns 788798 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44882433ns 788801 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44882717ns 788806 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44883001ns 788811 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44883285ns 788816 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44883740ns 788824 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44883910ns 788827 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44884194ns 788832 1a110850 fd5ff06f jal x0, -44 +44884479ns 788837 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44884763ns 788842 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44885160ns 788849 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44885331ns 788852 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44885786ns 788860 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44885956ns 788863 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44886240ns 788868 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44886524ns 788873 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44886809ns 788878 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44887263ns 788886 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44887434ns 788889 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44887718ns 788894 1a110850 fd5ff06f jal x0, -44 +44888002ns 788899 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44888286ns 788904 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44888684ns 788911 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44888855ns 788914 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44889309ns 788922 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44889480ns 788925 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44889764ns 788930 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44890048ns 788935 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44890332ns 788940 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44890787ns 788948 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44890957ns 788951 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44891242ns 788956 1a110850 fd5ff06f jal x0, -44 +44891526ns 788961 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44891810ns 788966 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44892208ns 788973 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44892378ns 788976 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44892833ns 788984 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44893003ns 788987 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44893287ns 788992 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44893572ns 788997 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44893856ns 789002 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44894310ns 789010 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44894481ns 789013 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44894765ns 789018 1a110850 fd5ff06f jal x0, -44 +44895049ns 789023 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44895333ns 789028 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44895731ns 789035 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44895902ns 789038 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44896356ns 789046 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44896527ns 789049 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44896811ns 789054 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44897095ns 789059 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44897379ns 789064 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44897834ns 789072 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44898005ns 789075 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44898289ns 789080 1a110850 fd5ff06f jal x0, -44 +44898573ns 789085 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44898857ns 789090 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44899255ns 789097 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44899425ns 789100 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44899880ns 789108 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44900050ns 789111 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44900335ns 789116 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44900619ns 789121 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44900903ns 789126 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44901358ns 789134 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44901528ns 789137 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44901812ns 789142 1a110850 fd5ff06f jal x0, -44 +44902096ns 789147 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44902381ns 789152 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44902778ns 789159 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44902949ns 789162 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44903404ns 789170 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44903574ns 789173 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44903858ns 789178 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44904142ns 789183 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44904427ns 789188 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44904881ns 789196 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44905052ns 789199 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44905336ns 789204 1a110850 fd5ff06f jal x0, -44 +44905620ns 789209 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44905904ns 789214 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44906302ns 789221 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44906472ns 789224 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44906927ns 789232 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44907098ns 789235 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44907382ns 789240 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44907666ns 789245 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44907950ns 789250 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44908405ns 789258 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44908575ns 789261 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44908859ns 789266 1a110850 fd5ff06f jal x0, -44 +44909144ns 789271 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44909428ns 789276 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44909826ns 789283 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44909996ns 789286 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44910451ns 789294 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44910621ns 789297 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44910905ns 789302 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44911190ns 789307 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44911474ns 789312 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44911928ns 789320 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44912099ns 789323 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44912383ns 789328 1a110850 fd5ff06f jal x0, -44 +44912667ns 789333 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44912951ns 789338 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44913349ns 789345 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44913520ns 789348 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44913974ns 789356 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44914145ns 789359 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44914429ns 789364 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44914713ns 789369 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44914997ns 789374 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44915452ns 789382 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44915622ns 789385 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44915907ns 789390 1a110850 fd5ff06f jal x0, -44 +44916191ns 789395 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44916475ns 789400 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44916873ns 789407 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44917043ns 789410 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44917498ns 789418 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44917668ns 789421 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44917953ns 789426 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44918237ns 789431 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44918521ns 789436 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44918976ns 789444 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44919146ns 789447 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44919430ns 789452 1a110850 fd5ff06f jal x0, -44 +44919714ns 789457 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44919999ns 789462 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44920396ns 789469 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44920567ns 789472 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44921021ns 789480 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44921192ns 789483 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44921476ns 789488 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44921760ns 789493 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44922044ns 789498 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44922499ns 789506 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44922670ns 789509 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44922954ns 789514 1a110850 fd5ff06f jal x0, -44 +44923238ns 789519 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44923522ns 789524 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44923920ns 789531 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44924090ns 789534 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44924545ns 789542 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44924716ns 789545 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44925000ns 789550 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44925284ns 789555 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44925568ns 789560 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44926023ns 789568 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44926193ns 789571 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44926477ns 789576 1a110850 fd5ff06f jal x0, -44 +44926762ns 789581 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44927046ns 789586 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44927443ns 789593 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44927614ns 789596 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44928069ns 789604 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44928239ns 789607 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44928523ns 789612 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44928807ns 789617 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44929092ns 789622 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44929546ns 789630 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44929717ns 789633 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44930001ns 789638 1a110850 fd5ff06f jal x0, -44 +44930285ns 789643 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44930569ns 789648 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44930967ns 789655 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44931138ns 789658 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44931592ns 789666 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44931763ns 789669 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44932047ns 789674 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44932331ns 789679 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44932615ns 789684 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44933070ns 789692 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44933240ns 789695 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44933525ns 789700 1a110850 fd5ff06f jal x0, -44 +44933809ns 789705 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44934093ns 789710 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44934491ns 789717 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44934661ns 789720 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44935116ns 789728 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44935286ns 789731 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44935570ns 789736 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44935855ns 789741 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44936139ns 789746 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44936593ns 789754 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44936764ns 789757 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44937048ns 789762 1a110850 fd5ff06f jal x0, -44 +44937332ns 789767 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44937616ns 789772 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44938014ns 789779 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44938185ns 789782 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44938639ns 789790 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44938810ns 789793 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44939094ns 789798 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44939378ns 789803 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44939662ns 789808 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44940117ns 789816 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44940288ns 789819 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44940572ns 789824 1a110850 fd5ff06f jal x0, -44 +44940856ns 789829 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44941140ns 789834 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44941538ns 789841 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44941708ns 789844 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44942163ns 789852 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44942333ns 789855 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44942618ns 789860 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44942902ns 789865 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44943186ns 789870 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44943641ns 789878 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44943811ns 789881 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44944095ns 789886 1a110850 fd5ff06f jal x0, -44 +44944379ns 789891 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44944664ns 789896 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44945061ns 789903 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44945232ns 789906 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44945687ns 789914 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44945857ns 789917 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44946141ns 789922 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44946425ns 789927 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44946710ns 789932 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44947164ns 789940 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44947335ns 789943 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44947619ns 789948 1a110850 fd5ff06f jal x0, -44 +44947903ns 789953 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44948187ns 789958 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44948585ns 789965 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44948755ns 789968 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44949210ns 789976 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44949381ns 789979 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44949665ns 789984 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44949949ns 789989 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44950233ns 789994 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44950688ns 790002 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44950858ns 790005 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44951142ns 790010 1a110850 fd5ff06f jal x0, -44 +44951427ns 790015 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44951711ns 790020 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44952109ns 790027 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44952279ns 790030 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44952734ns 790038 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44952904ns 790041 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44953188ns 790046 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44953473ns 790051 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44953757ns 790056 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44954211ns 790064 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44954382ns 790067 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44954666ns 790072 1a110850 fd5ff06f jal x0, -44 +44954950ns 790077 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44955234ns 790082 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44955632ns 790089 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44955803ns 790092 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44956257ns 790100 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44956428ns 790103 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44956712ns 790108 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44956996ns 790113 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44957280ns 790118 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44957735ns 790126 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44957905ns 790129 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44958190ns 790134 1a110850 fd5ff06f jal x0, -44 +44958474ns 790139 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44958758ns 790144 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44959156ns 790151 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44959326ns 790154 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44959781ns 790162 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44959951ns 790165 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44960236ns 790170 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44960520ns 790175 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44960804ns 790180 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44961259ns 790188 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44961429ns 790191 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44961713ns 790196 1a110850 fd5ff06f jal x0, -44 +44961997ns 790201 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44962282ns 790206 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44962679ns 790213 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44962850ns 790216 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44963304ns 790224 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44963475ns 790227 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44963759ns 790232 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44964043ns 790237 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44964327ns 790242 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44964782ns 790250 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44964953ns 790253 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44965237ns 790258 1a110850 fd5ff06f jal x0, -44 +44965521ns 790263 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44965805ns 790268 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44966203ns 790275 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44966373ns 790278 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44966828ns 790286 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44966999ns 790289 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44967283ns 790294 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44967567ns 790299 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44967851ns 790304 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44968306ns 790312 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44968476ns 790315 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44968760ns 790320 1a110850 fd5ff06f jal x0, -44 +44969045ns 790325 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44969329ns 790330 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44969727ns 790337 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44969897ns 790340 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44970352ns 790348 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44970522ns 790351 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44970806ns 790356 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44971090ns 790361 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44971375ns 790366 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44971829ns 790374 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44972000ns 790377 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44972284ns 790382 1a110850 fd5ff06f jal x0, -44 +44972568ns 790387 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44972852ns 790392 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44973250ns 790399 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44973421ns 790402 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44973875ns 790410 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44974046ns 790413 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44974330ns 790418 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44974614ns 790423 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44974898ns 790428 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44975353ns 790436 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44975523ns 790439 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44975808ns 790444 1a110850 fd5ff06f jal x0, -44 +44976092ns 790449 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44976376ns 790454 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44976774ns 790461 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44976944ns 790464 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44977399ns 790472 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44977569ns 790475 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44977853ns 790480 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44978138ns 790485 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44978422ns 790490 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44978876ns 790498 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44979047ns 790501 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44979331ns 790506 1a110850 fd5ff06f jal x0, -44 +44979615ns 790511 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44979899ns 790516 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44980297ns 790523 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44980468ns 790526 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44980922ns 790534 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44981093ns 790537 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44981377ns 790542 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44981661ns 790547 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44981945ns 790552 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44982400ns 790560 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44982571ns 790563 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44982855ns 790568 1a110850 fd5ff06f jal x0, -44 +44983139ns 790573 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44983423ns 790578 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44983821ns 790585 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44983991ns 790588 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44984446ns 790596 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44984616ns 790599 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44984901ns 790604 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44985185ns 790609 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44985469ns 790614 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44985924ns 790622 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44986094ns 790625 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44986378ns 790630 1a110850 fd5ff06f jal x0, -44 +44986662ns 790635 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44986947ns 790640 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44987344ns 790647 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44987515ns 790650 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44987970ns 790658 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44988140ns 790661 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44988424ns 790666 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44988708ns 790671 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44988993ns 790676 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44989447ns 790684 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44989618ns 790687 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44989902ns 790692 1a110850 fd5ff06f jal x0, -44 +44990186ns 790697 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44990470ns 790702 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44990868ns 790709 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44991039ns 790712 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44991493ns 790720 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44991664ns 790723 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44991948ns 790728 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44992232ns 790733 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44992516ns 790738 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44992971ns 790746 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44993141ns 790749 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44993425ns 790754 1a110850 fd5ff06f jal x0, -44 +44993710ns 790759 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44993994ns 790764 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44994392ns 790771 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44994562ns 790774 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44995017ns 790782 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44995187ns 790785 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44995471ns 790790 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44995756ns 790795 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44996040ns 790800 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44996494ns 790808 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +44996665ns 790811 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +44996949ns 790816 1a110850 fd5ff06f jal x0, -44 +44997233ns 790821 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44997517ns 790826 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +44997915ns 790833 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44998086ns 790836 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +44998540ns 790844 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +44998711ns 790847 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +44998995ns 790852 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +44999279ns 790857 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +44999563ns 790862 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45000018ns 790870 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45000188ns 790873 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45000473ns 790878 1a110850 fd5ff06f jal x0, -44 +45000757ns 790883 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45001041ns 790888 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45001439ns 790895 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45001609ns 790898 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45002064ns 790906 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45002234ns 790909 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45002519ns 790914 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45002803ns 790919 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45003087ns 790924 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45003542ns 790932 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45003712ns 790935 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45003996ns 790940 1a110850 fd5ff06f jal x0, -44 +45004280ns 790945 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45004565ns 790950 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45004962ns 790957 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45005133ns 790960 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45005587ns 790968 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45005758ns 790971 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45006042ns 790976 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45006326ns 790981 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45006610ns 790986 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45007065ns 790994 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45007236ns 790997 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45007520ns 791002 1a110850 fd5ff06f jal x0, -44 +45007804ns 791007 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45008088ns 791012 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45008486ns 791019 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45008656ns 791022 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45009111ns 791030 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45009282ns 791033 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45009566ns 791038 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45009850ns 791043 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45010134ns 791048 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45010589ns 791056 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45010759ns 791059 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45011043ns 791064 1a110850 fd5ff06f jal x0, -44 +45011328ns 791069 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45011612ns 791074 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45012010ns 791081 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45012180ns 791084 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45012635ns 791092 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45012805ns 791095 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45013089ns 791100 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45013373ns 791105 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45013658ns 791110 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45014112ns 791118 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45014283ns 791121 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45014567ns 791126 1a110850 fd5ff06f jal x0, -44 +45014851ns 791131 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45015135ns 791136 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45015533ns 791143 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45015704ns 791146 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45016158ns 791154 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45016329ns 791157 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45016613ns 791162 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45016897ns 791167 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45017181ns 791172 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45017636ns 791180 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45017806ns 791183 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45018091ns 791188 1a110850 fd5ff06f jal x0, -44 +45018375ns 791193 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45018659ns 791198 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45019057ns 791205 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45019227ns 791208 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45019682ns 791216 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45019852ns 791219 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45020136ns 791224 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45020421ns 791229 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45020705ns 791234 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45021159ns 791242 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45021330ns 791245 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45021614ns 791250 1a110850 fd5ff06f jal x0, -44 +45021898ns 791255 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45022182ns 791260 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45022580ns 791267 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45022751ns 791270 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45023205ns 791278 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45023376ns 791281 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45023660ns 791286 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45023944ns 791291 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45024228ns 791296 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45024683ns 791304 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45024854ns 791307 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45025138ns 791312 1a110850 fd5ff06f jal x0, -44 +45025422ns 791317 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45025706ns 791322 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45026104ns 791329 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45026274ns 791332 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45026729ns 791340 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45026899ns 791343 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45027184ns 791348 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45027468ns 791353 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45027752ns 791358 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45028207ns 791366 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45028377ns 791369 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45028661ns 791374 1a110850 fd5ff06f jal x0, -44 +45028945ns 791379 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45029230ns 791384 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45029627ns 791391 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45029798ns 791394 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45030253ns 791402 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45030423ns 791405 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45030707ns 791410 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45030991ns 791415 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45031276ns 791420 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45031730ns 791428 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45031901ns 791431 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45032185ns 791436 1a110850 fd5ff06f jal x0, -44 +45032469ns 791441 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45032753ns 791446 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45033151ns 791453 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45033322ns 791456 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45033776ns 791464 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45033947ns 791467 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45034231ns 791472 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45034515ns 791477 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45034799ns 791482 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45035254ns 791490 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45035424ns 791493 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45035708ns 791498 1a110850 fd5ff06f jal x0, -44 +45035993ns 791503 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45036277ns 791508 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45036675ns 791515 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45036845ns 791518 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45037300ns 791526 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45037470ns 791529 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45037754ns 791534 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45038039ns 791539 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45038323ns 791544 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45038777ns 791552 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45038948ns 791555 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45039232ns 791560 1a110850 fd5ff06f jal x0, -44 +45039516ns 791565 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45039800ns 791570 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45040198ns 791577 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45040369ns 791580 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45040823ns 791588 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45040994ns 791591 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45041278ns 791596 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45041562ns 791601 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45041846ns 791606 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45042301ns 791614 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45042471ns 791617 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45042756ns 791622 1a110850 fd5ff06f jal x0, -44 +45043040ns 791627 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45043324ns 791632 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45043722ns 791639 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45043892ns 791642 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45044347ns 791650 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45044517ns 791653 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45044802ns 791658 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45045086ns 791663 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45045370ns 791668 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45045825ns 791676 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45045995ns 791679 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45046279ns 791684 1a110850 fd5ff06f jal x0, -44 +45046563ns 791689 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45046848ns 791694 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45047245ns 791701 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45047416ns 791704 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45047871ns 791712 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45048041ns 791715 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45048325ns 791720 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45048609ns 791725 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45048893ns 791730 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45049348ns 791738 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45049519ns 791741 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45049803ns 791746 1a110850 fd5ff06f jal x0, -44 +45050087ns 791751 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45050371ns 791756 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45050769ns 791763 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45050939ns 791766 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45051394ns 791774 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45051565ns 791777 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45051849ns 791782 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45052133ns 791787 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45052417ns 791792 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45052872ns 791800 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45053042ns 791803 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45053326ns 791808 1a110850 fd5ff06f jal x0, -44 +45053611ns 791813 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45053895ns 791818 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45054293ns 791825 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45054463ns 791828 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45054918ns 791836 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45055088ns 791839 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45055372ns 791844 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45055656ns 791849 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45055941ns 791854 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45056395ns 791862 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45056566ns 791865 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45056850ns 791870 1a110850 fd5ff06f jal x0, -44 +45057134ns 791875 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45057418ns 791880 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45057816ns 791887 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45057987ns 791890 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45058441ns 791898 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45058612ns 791901 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45058896ns 791906 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45059180ns 791911 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45059464ns 791916 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45059919ns 791924 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45060089ns 791927 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45060374ns 791932 1a110850 fd5ff06f jal x0, -44 +45060658ns 791937 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45060942ns 791942 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45061340ns 791949 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45061510ns 791952 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45061965ns 791960 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45062135ns 791963 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45062419ns 791968 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45062704ns 791973 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45062988ns 791978 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45063442ns 791986 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45063613ns 791989 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45063897ns 791994 1a110850 fd5ff06f jal x0, -44 +45064181ns 791999 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45064465ns 792004 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45064863ns 792011 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45065034ns 792014 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45065488ns 792022 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45065659ns 792025 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45065943ns 792030 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45066227ns 792035 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45066511ns 792040 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45066966ns 792048 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45067137ns 792051 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45067421ns 792056 1a110850 fd5ff06f jal x0, -44 +45067705ns 792061 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45067989ns 792066 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45068387ns 792073 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45068557ns 792076 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45069012ns 792084 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45069183ns 792087 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45069467ns 792092 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45069751ns 792097 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45070035ns 792102 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45070490ns 792110 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45070660ns 792113 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45070944ns 792118 1a110850 fd5ff06f jal x0, -44 +45071228ns 792123 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45071513ns 792128 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45071910ns 792135 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45072081ns 792138 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45072536ns 792146 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45072706ns 792149 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45072990ns 792154 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45073274ns 792159 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45073559ns 792164 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45074013ns 792172 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45074184ns 792175 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45074468ns 792180 1a110850 fd5ff06f jal x0, -44 +45074752ns 792185 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45075036ns 792190 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45075434ns 792197 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45075605ns 792200 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45076059ns 792208 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45076230ns 792211 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45076514ns 792216 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45076798ns 792221 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45077082ns 792226 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45077537ns 792234 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45077707ns 792237 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45077991ns 792242 1a110850 fd5ff06f jal x0, -44 +45078276ns 792247 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45078560ns 792252 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45078958ns 792259 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45079128ns 792262 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45079583ns 792270 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45079753ns 792273 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45080037ns 792278 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45080322ns 792283 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45080606ns 792288 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45081060ns 792296 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45081231ns 792299 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45081515ns 792304 1a110850 fd5ff06f jal x0, -44 +45081799ns 792309 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45082083ns 792314 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45082481ns 792321 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45082652ns 792324 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45083106ns 792332 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45083277ns 792335 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45083561ns 792340 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45083845ns 792345 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45084129ns 792350 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45084584ns 792358 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45084754ns 792361 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45085039ns 792366 1a110850 fd5ff06f jal x0, -44 +45085323ns 792371 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45085607ns 792376 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45086005ns 792383 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45086175ns 792386 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45086630ns 792394 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45086800ns 792397 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45087085ns 792402 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45087369ns 792407 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45087653ns 792412 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45088108ns 792420 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45088278ns 792423 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45088562ns 792428 1a110850 fd5ff06f jal x0, -44 +45088846ns 792433 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45089131ns 792438 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45089528ns 792445 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45089699ns 792448 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45090154ns 792456 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45090324ns 792459 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45090608ns 792464 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45090892ns 792469 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45091176ns 792474 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45091631ns 792482 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45091802ns 792485 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45092086ns 792490 1a110850 fd5ff06f jal x0, -44 +45092370ns 792495 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45092654ns 792500 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45093052ns 792507 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45093222ns 792510 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45093677ns 792518 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45093848ns 792521 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45094132ns 792526 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45094416ns 792531 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45094700ns 792536 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45095155ns 792544 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45095325ns 792547 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45095609ns 792552 1a110850 fd5ff06f jal x0, -44 +45095894ns 792557 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45096178ns 792562 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45096576ns 792569 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45096746ns 792572 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45097201ns 792580 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45097371ns 792583 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45097655ns 792588 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45097939ns 792593 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45098224ns 792598 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45098678ns 792606 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45098849ns 792609 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45099133ns 792614 1a110850 fd5ff06f jal x0, -44 +45099417ns 792619 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45099701ns 792624 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45100099ns 792631 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45100270ns 792634 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45100724ns 792642 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45100895ns 792645 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45101179ns 792650 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45101463ns 792655 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45101747ns 792660 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45102202ns 792668 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45102372ns 792671 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45102657ns 792676 1a110850 fd5ff06f jal x0, -44 +45102941ns 792681 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45103225ns 792686 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45103623ns 792693 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45103793ns 792696 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45104248ns 792704 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45104418ns 792707 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45104703ns 792712 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45104987ns 792717 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45105271ns 792722 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45105725ns 792730 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45105896ns 792733 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45106180ns 792738 1a110850 fd5ff06f jal x0, -44 +45106464ns 792743 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45106748ns 792748 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45107146ns 792755 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45107317ns 792758 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45107771ns 792766 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45107942ns 792769 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45108226ns 792774 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45108510ns 792779 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45108794ns 792784 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45109249ns 792792 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45109420ns 792795 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45109704ns 792800 1a110850 fd5ff06f jal x0, -44 +45109988ns 792805 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45110272ns 792810 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45110670ns 792817 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45110840ns 792820 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45111295ns 792828 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45111466ns 792831 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45111750ns 792836 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45112034ns 792841 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45112318ns 792846 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45112773ns 792854 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45112943ns 792857 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45113227ns 792862 1a110850 fd5ff06f jal x0, -44 +45113511ns 792867 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45113796ns 792872 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45114193ns 792879 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45114364ns 792882 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45114819ns 792890 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45114989ns 792893 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45115273ns 792898 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45115557ns 792903 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45115842ns 792908 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45116296ns 792916 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45116467ns 792919 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45116751ns 792924 1a110850 fd5ff06f jal x0, -44 +45117035ns 792929 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45117319ns 792934 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45117717ns 792941 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45117888ns 792944 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45118342ns 792952 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45118513ns 792955 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45118797ns 792960 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45119081ns 792965 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45119365ns 792970 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45119820ns 792978 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45119990ns 792981 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45120274ns 792986 1a110850 fd5ff06f jal x0, -44 +45120559ns 792991 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45120843ns 792996 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45121241ns 793003 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45121411ns 793006 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45121866ns 793014 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45122036ns 793017 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45122320ns 793022 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45122605ns 793027 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45122889ns 793032 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45123343ns 793040 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45123514ns 793043 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45123798ns 793048 1a110850 fd5ff06f jal x0, -44 +45124082ns 793053 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45124366ns 793058 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45124764ns 793065 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45124935ns 793068 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45125389ns 793076 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45125560ns 793079 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45125844ns 793084 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45126128ns 793089 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45126412ns 793094 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45126867ns 793102 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45127037ns 793105 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45127322ns 793110 1a110850 fd5ff06f jal x0, -44 +45127606ns 793115 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45127890ns 793120 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45128288ns 793127 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45128458ns 793130 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45128913ns 793138 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45129083ns 793141 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45129368ns 793146 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45129652ns 793151 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45129936ns 793156 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45130391ns 793164 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45130561ns 793167 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45130845ns 793172 1a110850 fd5ff06f jal x0, -44 +45131129ns 793177 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45131414ns 793182 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45131811ns 793189 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45131982ns 793192 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45132437ns 793200 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45132607ns 793203 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45132891ns 793208 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45133175ns 793213 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45133459ns 793218 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45133914ns 793226 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45134085ns 793229 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45134369ns 793234 1a110850 fd5ff06f jal x0, -44 +45134653ns 793239 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45134937ns 793244 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45135335ns 793251 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45135505ns 793254 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45135960ns 793262 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45136131ns 793265 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45136415ns 793270 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45136699ns 793275 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45136983ns 793280 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45137438ns 793288 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45137608ns 793291 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45137892ns 793296 1a110850 fd5ff06f jal x0, -44 +45138177ns 793301 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45138461ns 793306 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45138859ns 793313 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45139029ns 793316 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45139484ns 793324 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45139654ns 793327 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45139938ns 793332 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45140223ns 793337 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45140507ns 793342 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45140961ns 793350 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45141132ns 793353 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45141416ns 793358 1a110850 fd5ff06f jal x0, -44 +45141700ns 793363 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45141984ns 793368 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45142382ns 793375 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45142553ns 793378 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45143007ns 793386 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45143178ns 793389 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45143462ns 793394 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45143746ns 793399 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45144030ns 793404 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45144485ns 793412 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45144655ns 793415 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45144940ns 793420 1a110850 fd5ff06f jal x0, -44 +45145224ns 793425 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45145508ns 793430 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45145906ns 793437 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45146076ns 793440 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45146531ns 793448 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45146701ns 793451 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45146986ns 793456 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45147270ns 793461 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45147554ns 793466 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45148008ns 793474 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45148179ns 793477 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45148463ns 793482 1a110850 fd5ff06f jal x0, -44 +45148747ns 793487 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45149031ns 793492 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45149429ns 793499 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45149600ns 793502 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45150054ns 793510 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45150225ns 793513 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45150509ns 793518 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45150793ns 793523 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45151077ns 793528 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45151532ns 793536 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45151703ns 793539 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45151987ns 793544 1a110850 fd5ff06f jal x0, -44 +45152271ns 793549 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45152555ns 793554 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45152953ns 793561 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45153123ns 793564 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45153578ns 793572 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45153749ns 793575 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45154033ns 793580 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45154317ns 793585 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45154601ns 793590 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45155056ns 793598 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45155226ns 793601 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45155510ns 793606 1a110850 fd5ff06f jal x0, -44 +45155794ns 793611 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45156079ns 793616 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45156476ns 793623 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45156647ns 793626 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45157102ns 793634 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45157272ns 793637 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45157556ns 793642 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45157840ns 793647 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45158125ns 793652 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45158579ns 793660 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45158750ns 793663 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45159034ns 793668 1a110850 fd5ff06f jal x0, -44 +45159318ns 793673 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45159602ns 793678 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45160000ns 793685 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45160171ns 793688 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45160625ns 793696 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45160796ns 793699 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45161080ns 793704 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45161364ns 793709 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45161648ns 793714 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45162103ns 793722 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45162273ns 793725 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45162557ns 793730 1a110850 fd5ff06f jal x0, -44 +45162842ns 793735 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45163126ns 793740 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45163524ns 793747 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45163694ns 793750 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45164149ns 793758 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45164319ns 793761 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45164603ns 793766 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45164888ns 793771 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45165172ns 793776 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45165626ns 793784 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45165797ns 793787 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45166081ns 793792 1a110850 fd5ff06f jal x0, -44 +45166365ns 793797 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45166649ns 793802 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45167047ns 793809 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45167218ns 793812 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45167672ns 793820 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45167843ns 793823 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45168127ns 793828 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45168411ns 793833 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45168695ns 793838 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45169150ns 793846 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45169320ns 793849 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45169605ns 793854 1a110850 fd5ff06f jal x0, -44 +45169889ns 793859 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45170173ns 793864 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45170571ns 793871 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45170741ns 793874 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45171196ns 793882 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45171366ns 793885 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45171651ns 793890 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45171935ns 793895 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45172219ns 793900 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45172674ns 793908 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45172844ns 793911 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45173128ns 793916 1a110850 fd5ff06f jal x0, -44 +45173412ns 793921 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45173697ns 793926 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45174094ns 793933 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45174265ns 793936 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45174720ns 793944 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45174890ns 793947 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45175174ns 793952 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45175458ns 793957 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45175743ns 793962 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45176197ns 793970 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45176368ns 793973 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45176652ns 793978 1a110850 fd5ff06f jal x0, -44 +45176936ns 793983 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45177220ns 793988 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45177618ns 793995 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45177788ns 793998 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45178243ns 794006 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45178414ns 794009 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45178698ns 794014 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45178982ns 794019 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45179266ns 794024 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45179721ns 794032 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45179891ns 794035 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45180175ns 794040 1a110850 fd5ff06f jal x0, -44 +45180460ns 794045 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45180744ns 794050 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45181142ns 794057 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45181312ns 794060 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45181767ns 794068 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45181937ns 794071 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45182221ns 794076 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45182506ns 794081 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45182790ns 794086 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45183244ns 794094 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45183415ns 794097 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45183699ns 794102 1a110850 fd5ff06f jal x0, -44 +45183983ns 794107 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45184267ns 794112 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45184665ns 794119 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45184836ns 794122 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45185290ns 794130 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45185461ns 794133 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45185745ns 794138 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45186029ns 794143 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45186313ns 794148 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45186768ns 794156 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45186938ns 794159 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45187223ns 794164 1a110850 fd5ff06f jal x0, -44 +45187507ns 794169 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45187791ns 794174 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45188189ns 794181 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45188359ns 794184 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45188814ns 794192 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45188984ns 794195 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45189269ns 794200 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45189553ns 794205 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45189837ns 794210 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45190291ns 794218 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45190462ns 794221 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45190746ns 794226 1a110850 fd5ff06f jal x0, -44 +45191030ns 794231 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45191314ns 794236 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45191712ns 794243 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45191883ns 794246 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45192337ns 794254 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45192508ns 794257 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45192792ns 794262 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45193076ns 794267 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45193360ns 794272 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45193815ns 794280 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45193986ns 794283 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45194270ns 794288 1a110850 fd5ff06f jal x0, -44 +45194554ns 794293 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45194838ns 794298 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45195236ns 794305 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45195406ns 794308 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45195861ns 794316 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45196032ns 794319 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45196316ns 794324 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45196600ns 794329 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45196884ns 794334 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45197339ns 794342 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45197509ns 794345 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45197793ns 794350 1a110850 fd5ff06f jal x0, -44 +45198077ns 794355 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45198362ns 794360 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45198759ns 794367 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45198930ns 794370 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45199385ns 794378 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45199555ns 794381 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45199839ns 794386 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45200123ns 794391 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45200408ns 794396 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45200862ns 794404 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45201033ns 794407 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45201317ns 794412 1a110850 fd5ff06f jal x0, -44 +45201601ns 794417 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45201885ns 794422 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45202283ns 794429 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45202454ns 794432 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45202908ns 794440 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45203079ns 794443 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45203363ns 794448 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45203647ns 794453 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45203931ns 794458 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45204386ns 794466 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45204556ns 794469 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45204840ns 794474 1a110850 fd5ff06f jal x0, -44 +45205125ns 794479 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45205409ns 794484 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45205807ns 794491 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45205977ns 794494 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45206432ns 794502 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45206602ns 794505 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45206886ns 794510 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45207171ns 794515 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45207455ns 794520 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45207909ns 794528 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45208080ns 794531 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45208364ns 794536 1a110850 fd5ff06f jal x0, -44 +45208648ns 794541 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45208932ns 794546 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45209330ns 794553 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45209501ns 794556 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45209955ns 794564 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45210126ns 794567 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45210410ns 794572 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45210694ns 794577 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45210978ns 794582 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45211433ns 794590 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45211603ns 794593 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45211888ns 794598 1a110850 fd5ff06f jal x0, -44 +45212172ns 794603 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45212456ns 794608 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45212854ns 794615 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45213024ns 794618 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45213479ns 794626 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45213649ns 794629 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45213934ns 794634 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45214218ns 794639 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45214502ns 794644 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45214957ns 794652 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45215127ns 794655 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45215411ns 794660 1a110850 fd5ff06f jal x0, -44 +45215695ns 794665 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45215980ns 794670 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45216377ns 794677 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45216548ns 794680 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45217003ns 794688 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45217173ns 794691 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45217457ns 794696 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45217741ns 794701 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45218026ns 794706 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45218480ns 794714 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45218651ns 794717 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45218935ns 794722 1a110850 fd5ff06f jal x0, -44 +45219219ns 794727 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45219503ns 794732 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45219901ns 794739 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45220071ns 794742 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45220526ns 794750 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45220697ns 794753 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45220981ns 794758 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45221265ns 794763 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45221549ns 794768 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45222004ns 794776 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45222174ns 794779 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45222458ns 794784 1a110850 fd5ff06f jal x0, -44 +45222743ns 794789 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45223027ns 794794 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45223425ns 794801 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45223595ns 794804 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45224050ns 794812 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45224220ns 794815 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45224504ns 794820 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45224789ns 794825 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45225073ns 794830 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45225527ns 794838 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45225698ns 794841 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45225982ns 794846 1a110850 fd5ff06f jal x0, -44 +45226266ns 794851 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45226550ns 794856 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45226948ns 794863 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45227119ns 794866 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45227573ns 794874 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45227744ns 794877 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45228028ns 794882 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45228312ns 794887 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45228596ns 794892 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45229051ns 794900 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45229221ns 794903 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45229506ns 794908 1a110850 fd5ff06f jal x0, -44 +45229790ns 794913 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45230074ns 794918 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45230472ns 794925 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45230642ns 794928 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45231097ns 794936 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45231267ns 794939 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45231552ns 794944 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45231836ns 794949 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45232120ns 794954 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45232575ns 794962 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45232745ns 794965 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45233029ns 794970 1a110850 fd5ff06f jal x0, -44 +45233313ns 794975 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45233597ns 794980 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45233995ns 794987 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45234166ns 794990 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45234620ns 794998 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45234791ns 795001 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45235075ns 795006 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45235359ns 795011 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45235643ns 795016 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45236098ns 795024 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45236269ns 795027 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45236553ns 795032 1a110850 fd5ff06f jal x0, -44 +45236837ns 795037 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45237121ns 795042 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45237519ns 795049 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45237689ns 795052 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45238144ns 795060 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45238315ns 795063 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45238599ns 795068 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45238883ns 795073 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45239167ns 795078 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45239622ns 795086 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45239792ns 795089 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45240076ns 795094 1a110850 fd5ff06f jal x0, -44 +45240360ns 795099 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45240645ns 795104 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45241042ns 795111 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45241213ns 795114 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45241668ns 795122 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45241838ns 795125 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45242122ns 795130 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45242406ns 795135 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45242691ns 795140 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45243145ns 795148 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45243316ns 795151 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45243600ns 795156 1a110850 fd5ff06f jal x0, -44 +45243884ns 795161 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45244168ns 795166 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45244566ns 795173 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45244737ns 795176 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45245191ns 795184 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45245362ns 795187 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45245646ns 795192 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45245930ns 795197 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45246214ns 795202 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45246669ns 795210 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45246839ns 795213 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45247123ns 795218 1a110850 fd5ff06f jal x0, -44 +45247408ns 795223 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45247692ns 795228 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45248090ns 795235 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45248260ns 795238 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45248715ns 795246 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45248885ns 795249 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45249169ns 795254 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45249454ns 795259 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45249738ns 795264 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45250192ns 795272 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45250363ns 795275 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45250647ns 795280 1a110850 fd5ff06f jal x0, -44 +45250931ns 795285 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45251215ns 795290 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45251613ns 795297 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45251784ns 795300 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45252238ns 795308 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45252409ns 795311 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45252693ns 795316 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45252977ns 795321 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45253261ns 795326 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45253716ns 795334 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45253887ns 795337 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45254171ns 795342 1a110850 fd5ff06f jal x0, -44 +45254455ns 795347 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45254739ns 795352 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45255137ns 795359 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45255307ns 795362 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45255762ns 795370 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45255932ns 795373 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45256217ns 795378 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45256501ns 795383 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45256785ns 795388 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45257240ns 795396 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45257410ns 795399 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45257694ns 795404 1a110850 fd5ff06f jal x0, -44 +45257978ns 795409 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45258263ns 795414 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45258660ns 795421 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45258831ns 795424 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45259286ns 795432 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45259456ns 795435 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45259740ns 795440 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45260024ns 795445 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45260309ns 795450 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45260763ns 795458 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45260934ns 795461 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45261218ns 795466 1a110850 fd5ff06f jal x0, -44 +45261502ns 795471 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45261786ns 795476 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45262184ns 795483 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45262354ns 795486 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45262809ns 795494 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45262980ns 795497 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45263264ns 795502 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45263548ns 795507 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45263832ns 795512 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45264287ns 795520 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45264457ns 795523 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45264741ns 795528 1a110850 fd5ff06f jal x0, -44 +45265026ns 795533 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45265310ns 795538 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45265708ns 795545 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45265878ns 795548 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45266333ns 795556 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45266503ns 795559 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45266787ns 795564 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45267072ns 795569 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45267356ns 795574 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45267810ns 795582 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45267981ns 795585 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45268265ns 795590 1a110850 fd5ff06f jal x0, -44 +45268549ns 795595 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45268833ns 795600 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45269231ns 795607 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45269402ns 795610 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45269856ns 795618 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45270027ns 795621 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45270311ns 795626 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45270595ns 795631 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45270879ns 795636 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45271334ns 795644 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45271504ns 795647 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45271789ns 795652 1a110850 fd5ff06f jal x0, -44 +45272073ns 795657 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45272357ns 795662 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45272755ns 795669 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45272925ns 795672 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45273380ns 795680 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45273550ns 795683 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45273835ns 795688 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45274119ns 795693 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45274403ns 795698 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45274858ns 795706 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45275028ns 795709 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45275312ns 795714 1a110850 fd5ff06f jal x0, -44 +45275596ns 795719 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45275880ns 795724 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45276278ns 795731 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45276449ns 795734 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45276903ns 795742 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45277074ns 795745 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45277358ns 795750 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45277642ns 795755 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45277926ns 795760 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45278381ns 795768 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45278552ns 795771 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45278836ns 795776 1a110850 fd5ff06f jal x0, -44 +45279120ns 795781 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45279404ns 795786 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45279802ns 795793 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45279972ns 795796 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45280427ns 795804 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45280598ns 795807 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45280882ns 795812 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45281166ns 795817 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45281450ns 795822 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45281905ns 795830 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45282075ns 795833 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45282359ns 795838 1a110850 fd5ff06f jal x0, -44 +45282643ns 795843 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45282928ns 795848 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45283325ns 795855 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45283496ns 795858 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45283951ns 795866 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45284121ns 795869 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45284405ns 795874 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45284689ns 795879 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45284974ns 795884 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45285428ns 795892 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45285599ns 795895 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45285883ns 795900 1a110850 fd5ff06f jal x0, -44 +45286167ns 795905 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45286451ns 795910 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45286849ns 795917 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45287020ns 795920 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45287474ns 795928 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45287645ns 795931 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45287929ns 795936 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45288213ns 795941 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45288497ns 795946 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45288952ns 795954 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45289122ns 795957 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45289407ns 795962 1a110850 fd5ff06f jal x0, -44 +45289691ns 795967 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45289975ns 795972 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45290373ns 795979 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45290543ns 795982 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45290998ns 795990 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45291168ns 795993 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45291452ns 795998 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45291737ns 796003 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45292021ns 796008 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45292475ns 796016 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45292646ns 796019 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45292930ns 796024 1a110850 fd5ff06f jal x0, -44 +45293214ns 796029 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45293498ns 796034 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45293896ns 796041 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45294067ns 796044 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45294521ns 796052 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45294692ns 796055 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45294976ns 796060 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45295260ns 796065 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45295544ns 796070 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45295999ns 796078 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45296170ns 796081 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45296454ns 796086 1a110850 fd5ff06f jal x0, -44 +45296738ns 796091 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45297022ns 796096 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45297420ns 796103 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45297590ns 796106 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45298045ns 796114 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45298215ns 796117 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45298500ns 796122 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45298784ns 796127 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45299068ns 796132 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45299523ns 796140 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45299693ns 796143 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45299977ns 796148 1a110850 fd5ff06f jal x0, -44 +45300261ns 796153 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45300546ns 796158 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45300943ns 796165 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45301114ns 796168 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45301569ns 796176 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45301739ns 796179 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45302023ns 796184 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45302307ns 796189 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45302592ns 796194 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45303046ns 796202 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45303217ns 796205 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45303501ns 796210 1a110850 fd5ff06f jal x0, -44 +45303785ns 796215 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45304069ns 796220 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45304467ns 796227 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45304637ns 796230 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45305092ns 796238 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45305263ns 796241 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45305547ns 796246 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45305831ns 796251 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45306115ns 796256 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45306570ns 796264 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45306740ns 796267 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45307024ns 796272 1a110850 fd5ff06f jal x0, -44 +45307309ns 796277 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45307593ns 796282 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45307991ns 796289 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45308161ns 796292 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45308616ns 796300 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45308786ns 796303 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45309070ns 796308 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45309355ns 796313 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45309639ns 796318 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45310093ns 796326 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45310264ns 796329 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45310548ns 796334 1a110850 fd5ff06f jal x0, -44 +45310832ns 796339 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45311116ns 796344 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45311514ns 796351 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45311685ns 796354 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45312139ns 796362 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45312310ns 796365 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45312594ns 796370 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45312878ns 796375 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45313162ns 796380 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45313617ns 796388 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45313787ns 796391 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45314072ns 796396 1a110850 fd5ff06f jal x0, -44 +45314356ns 796401 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45314640ns 796406 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45315038ns 796413 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45315208ns 796416 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45315663ns 796424 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45315833ns 796427 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45316118ns 796432 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45316402ns 796437 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45316686ns 796442 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45317141ns 796450 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45317311ns 796453 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45317595ns 796458 1a110850 fd5ff06f jal x0, -44 +45317879ns 796463 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45318163ns 796468 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45318561ns 796475 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45318732ns 796478 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45319186ns 796486 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45319357ns 796489 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45319641ns 796494 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45319925ns 796499 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45320209ns 796504 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45320664ns 796512 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45320835ns 796515 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45321119ns 796520 1a110850 fd5ff06f jal x0, -44 +45321403ns 796525 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45321687ns 796530 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45322085ns 796537 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45322255ns 796540 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45322710ns 796548 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45322881ns 796551 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45323165ns 796556 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45323449ns 796561 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45323733ns 796566 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45324188ns 796574 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45324358ns 796577 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45324642ns 796582 1a110850 fd5ff06f jal x0, -44 +45324927ns 796587 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45325211ns 796592 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45325608ns 796599 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45325779ns 796602 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45326234ns 796610 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45326404ns 796613 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45326688ns 796618 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45326972ns 796623 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45327257ns 796628 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45327711ns 796636 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45327882ns 796639 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45328166ns 796644 1a110850 fd5ff06f jal x0, -44 +45328450ns 796649 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45328734ns 796654 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45329132ns 796661 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45329303ns 796664 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45329757ns 796672 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45329928ns 796675 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45330212ns 796680 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45330496ns 796685 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45330780ns 796690 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45331235ns 796698 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45331405ns 796701 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45331690ns 796706 1a110850 fd5ff06f jal x0, -44 +45331974ns 796711 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45332258ns 796716 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45332656ns 796723 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45332826ns 796726 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45333281ns 796734 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45333451ns 796737 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45333735ns 796742 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45334020ns 796747 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45334304ns 796752 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45334758ns 796760 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45334929ns 796763 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45335213ns 796768 1a110850 fd5ff06f jal x0, -44 +45335497ns 796773 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45335781ns 796778 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45336179ns 796785 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45336350ns 796788 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45336804ns 796796 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45336975ns 796799 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45337259ns 796804 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45337543ns 796809 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45337827ns 796814 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45338282ns 796822 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45338453ns 796825 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45338737ns 796830 1a110850 fd5ff06f jal x0, -44 +45339021ns 796835 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45339305ns 796840 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45339703ns 796847 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45339873ns 796850 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45340328ns 796858 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45340498ns 796861 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45340783ns 796866 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45341067ns 796871 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45341351ns 796876 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45341806ns 796884 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45341976ns 796887 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45342260ns 796892 1a110850 fd5ff06f jal x0, -44 +45342544ns 796897 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45342829ns 796902 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45343226ns 796909 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45343397ns 796912 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45343852ns 796920 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45344022ns 796923 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45344306ns 796928 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45344590ns 796933 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45344875ns 796938 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45345329ns 796946 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45345500ns 796949 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45345784ns 796954 1a110850 fd5ff06f jal x0, -44 +45346068ns 796959 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45346352ns 796964 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45346750ns 796971 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45346920ns 796974 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45347375ns 796982 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45347546ns 796985 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45347830ns 796990 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45348114ns 796995 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45348398ns 797000 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45348853ns 797008 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45349023ns 797011 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45349307ns 797016 1a110850 fd5ff06f jal x0, -44 +45349592ns 797021 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45349876ns 797026 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45350274ns 797033 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45350444ns 797036 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45350899ns 797044 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45351069ns 797047 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45351353ns 797052 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45351638ns 797057 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45351922ns 797062 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45352376ns 797070 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45352547ns 797073 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45352831ns 797078 1a110850 fd5ff06f jal x0, -44 +45353115ns 797083 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45353399ns 797088 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45353797ns 797095 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45353968ns 797098 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45354422ns 797106 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45354593ns 797109 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45354877ns 797114 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45355161ns 797119 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45355445ns 797124 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45355900ns 797132 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45356070ns 797135 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45356355ns 797140 1a110850 fd5ff06f jal x0, -44 +45356639ns 797145 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45356923ns 797150 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45357321ns 797157 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45357491ns 797160 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45357946ns 797168 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45358116ns 797171 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45358401ns 797176 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45358685ns 797181 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45358969ns 797186 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45359424ns 797194 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45359594ns 797197 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45359878ns 797202 1a110850 fd5ff06f jal x0, -44 +45360162ns 797207 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45360447ns 797212 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45360844ns 797219 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45361015ns 797222 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45361469ns 797230 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45361640ns 797233 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45361924ns 797238 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45362208ns 797243 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45362492ns 797248 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45362947ns 797256 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45363118ns 797259 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45363402ns 797264 1a110850 fd5ff06f jal x0, -44 +45363686ns 797269 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45363970ns 797274 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45364368ns 797281 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45364538ns 797284 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45364993ns 797292 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45365164ns 797295 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45365448ns 797300 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45365732ns 797305 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45366016ns 797310 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45366471ns 797318 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45366641ns 797321 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45366925ns 797326 1a110850 fd5ff06f jal x0, -44 +45367210ns 797331 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45367494ns 797336 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45367891ns 797343 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45368062ns 797346 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45368517ns 797354 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45368687ns 797357 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45368971ns 797362 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45369255ns 797367 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45369540ns 797372 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45369994ns 797380 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45370165ns 797383 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45370449ns 797388 1a110850 fd5ff06f jal x0, -44 +45370733ns 797393 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45371017ns 797398 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45371415ns 797405 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45371586ns 797408 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45372040ns 797416 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45372211ns 797419 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45372495ns 797424 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45372779ns 797429 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45373063ns 797434 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45373518ns 797442 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45373688ns 797445 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45373973ns 797450 1a110850 fd5ff06f jal x0, -44 +45374257ns 797455 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45374541ns 797460 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45374939ns 797467 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45375109ns 797470 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45375564ns 797478 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45375734ns 797481 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45376018ns 797486 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45376303ns 797491 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45376587ns 797496 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45377041ns 797504 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45377212ns 797507 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45377496ns 797512 1a110850 fd5ff06f jal x0, -44 +45377780ns 797517 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45378064ns 797522 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45378462ns 797529 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45378633ns 797532 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45379087ns 797540 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45379258ns 797543 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45379542ns 797548 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45379826ns 797553 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45380110ns 797558 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45380565ns 797566 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45380736ns 797569 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45381020ns 797574 1a110850 fd5ff06f jal x0, -44 +45381304ns 797579 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45381588ns 797584 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45381986ns 797591 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45382156ns 797594 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45382611ns 797602 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45382781ns 797605 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45383066ns 797610 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45383350ns 797615 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45383634ns 797620 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45384089ns 797628 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45384259ns 797631 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45384543ns 797636 1a110850 fd5ff06f jal x0, -44 +45384827ns 797641 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45385112ns 797646 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45385509ns 797653 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45385680ns 797656 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45386135ns 797664 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45386305ns 797667 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45386589ns 797672 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45386873ns 797677 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45387158ns 797682 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45387612ns 797690 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45387783ns 797693 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45388067ns 797698 1a110850 fd5ff06f jal x0, -44 +45388351ns 797703 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45388635ns 797708 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45389033ns 797715 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45389203ns 797718 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45389658ns 797726 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45389829ns 797729 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45390113ns 797734 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45390397ns 797739 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45390681ns 797744 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45391136ns 797752 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45391306ns 797755 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45391590ns 797760 1a110850 fd5ff06f jal x0, -44 +45391875ns 797765 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45392159ns 797770 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45392557ns 797777 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45392727ns 797780 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45393182ns 797788 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45393352ns 797791 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45393636ns 797796 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45393921ns 797801 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45394205ns 797806 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45394659ns 797814 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45394830ns 797817 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45395114ns 797822 1a110850 fd5ff06f jal x0, -44 +45395398ns 797827 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45395682ns 797832 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45396080ns 797839 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45396251ns 797842 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45396705ns 797850 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45396876ns 797853 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45397160ns 797858 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45397444ns 797863 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45397728ns 797868 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45398183ns 797876 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45398353ns 797879 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45398638ns 797884 1a110850 fd5ff06f jal x0, -44 +45398922ns 797889 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45399206ns 797894 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45399604ns 797901 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45399774ns 797904 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45400229ns 797912 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45400399ns 797915 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45400684ns 797920 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45400968ns 797925 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45401252ns 797930 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45401707ns 797938 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45401877ns 797941 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45402161ns 797946 1a110850 fd5ff06f jal x0, -44 +45402445ns 797951 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45402730ns 797956 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45403127ns 797963 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45403298ns 797966 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45403752ns 797974 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45403923ns 797977 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45404207ns 797982 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45404491ns 797987 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45404775ns 797992 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45405230ns 798000 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45405401ns 798003 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45405685ns 798008 1a110850 fd5ff06f jal x0, -44 +45405969ns 798013 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45406253ns 798018 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45406651ns 798025 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45406821ns 798028 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45407276ns 798036 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45407447ns 798039 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45407731ns 798044 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45408015ns 798049 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45408299ns 798054 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45408754ns 798062 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45408924ns 798065 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45409208ns 798070 1a110850 fd5ff06f jal x0, -44 +45409493ns 798075 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45409777ns 798080 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45410175ns 798087 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45410345ns 798090 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45410800ns 798098 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45410970ns 798101 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45411254ns 798106 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45411538ns 798111 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45411823ns 798116 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45412277ns 798124 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45412448ns 798127 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45412732ns 798132 1a110850 fd5ff06f jal x0, -44 +45413016ns 798137 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45413300ns 798142 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45413698ns 798149 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45413869ns 798152 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45414323ns 798160 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45414494ns 798163 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45414778ns 798168 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45415062ns 798173 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45415346ns 798178 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45415801ns 798186 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45415971ns 798189 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45416256ns 798194 1a110850 fd5ff06f jal x0, -44 +45416540ns 798199 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45416824ns 798204 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45417222ns 798211 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45417392ns 798214 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45417847ns 798222 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45418017ns 798225 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45418301ns 798230 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45418586ns 798235 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45418870ns 798240 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45419324ns 798248 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45419495ns 798251 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45419779ns 798256 1a110850 fd5ff06f jal x0, -44 +45420063ns 798261 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45420347ns 798266 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45420745ns 798273 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45420916ns 798276 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45421370ns 798284 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45421541ns 798287 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45421825ns 798292 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45422109ns 798297 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45422393ns 798302 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45422848ns 798310 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45423019ns 798313 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45423303ns 798318 1a110850 fd5ff06f jal x0, -44 +45423587ns 798323 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45423871ns 798328 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45424269ns 798335 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45424439ns 798338 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45424894ns 798346 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45425064ns 798349 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45425349ns 798354 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45425633ns 798359 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45425917ns 798364 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45426372ns 798372 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45426542ns 798375 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45426826ns 798380 1a110850 fd5ff06f jal x0, -44 +45427110ns 798385 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45427395ns 798390 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45427792ns 798397 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45427963ns 798400 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45428418ns 798408 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45428588ns 798411 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45428872ns 798416 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45429156ns 798421 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45429441ns 798426 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45429895ns 798434 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45430066ns 798437 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45430350ns 798442 1a110850 fd5ff06f jal x0, -44 +45430634ns 798447 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45430918ns 798452 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45431316ns 798459 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45431487ns 798462 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45431941ns 798470 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45432112ns 798473 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45432396ns 798478 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45432680ns 798483 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45432964ns 798488 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45433419ns 798496 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45433589ns 798499 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45433873ns 798504 1a110850 fd5ff06f jal x0, -44 +45434158ns 798509 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45434442ns 798514 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45434840ns 798521 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45435010ns 798524 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45435465ns 798532 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45435635ns 798535 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45435919ns 798540 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45436204ns 798545 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45436488ns 798550 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45436942ns 798558 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45437113ns 798561 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45437397ns 798566 1a110850 fd5ff06f jal x0, -44 +45437681ns 798571 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45437965ns 798576 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45438363ns 798583 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45438534ns 798586 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45438988ns 798594 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45439159ns 798597 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45439443ns 798602 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45439727ns 798607 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45440011ns 798612 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45440466ns 798620 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45440636ns 798623 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45440921ns 798628 1a110850 fd5ff06f jal x0, -44 +45441205ns 798633 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45441489ns 798638 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45441887ns 798645 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45442057ns 798648 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45442512ns 798656 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45442682ns 798659 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45442967ns 798664 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45443251ns 798669 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45443535ns 798674 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45443990ns 798682 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45444160ns 798685 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45444444ns 798690 1a110850 fd5ff06f jal x0, -44 +45444728ns 798695 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45445013ns 798700 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45445410ns 798707 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45445581ns 798710 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45446035ns 798718 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45446206ns 798721 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45446490ns 798726 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45446774ns 798731 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45447058ns 798736 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45447513ns 798744 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45447684ns 798747 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45447968ns 798752 1a110850 fd5ff06f jal x0, -44 +45448252ns 798757 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45448536ns 798762 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45448934ns 798769 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45449104ns 798772 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45449559ns 798780 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45449730ns 798783 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45450014ns 798788 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45450298ns 798793 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45450582ns 798798 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45451037ns 798806 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45451207ns 798809 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45451491ns 798814 1a110850 fd5ff06f jal x0, -44 +45451776ns 798819 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45452060ns 798824 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45452458ns 798831 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45452628ns 798834 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45453083ns 798842 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45453253ns 798845 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45453537ns 798850 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45453821ns 798855 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45454106ns 798860 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45454560ns 798868 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45454731ns 798871 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45455015ns 798876 1a110850 fd5ff06f jal x0, -44 +45455299ns 798881 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45455583ns 798886 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45455981ns 798893 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45456152ns 798896 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45456606ns 798904 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45456777ns 798907 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45457061ns 798912 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45457345ns 798917 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45457629ns 798922 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45458084ns 798930 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45458254ns 798933 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45458539ns 798938 1a110850 fd5ff06f jal x0, -44 +45458823ns 798943 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45459107ns 798948 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45459505ns 798955 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45459675ns 798958 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45460130ns 798966 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45460300ns 798969 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45460584ns 798974 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45460869ns 798979 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45461153ns 798984 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45461607ns 798992 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45461778ns 798995 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45462062ns 799000 1a110850 fd5ff06f jal x0, -44 +45462346ns 799005 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45462630ns 799010 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45463028ns 799017 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45463199ns 799020 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45463653ns 799028 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45463824ns 799031 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45464108ns 799036 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45464392ns 799041 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45464676ns 799046 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45465131ns 799054 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45465302ns 799057 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45465586ns 799062 1a110850 fd5ff06f jal x0, -44 +45465870ns 799067 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45466154ns 799072 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45466552ns 799079 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45466722ns 799082 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45467177ns 799090 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45467347ns 799093 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45467632ns 799098 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45467916ns 799103 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45468200ns 799108 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45468655ns 799116 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45468825ns 799119 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45469109ns 799124 1a110850 fd5ff06f jal x0, -44 +45469393ns 799129 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45469678ns 799134 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45470075ns 799141 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45470246ns 799144 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45470701ns 799152 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45470871ns 799155 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45471155ns 799160 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45471439ns 799165 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45471724ns 799170 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45472178ns 799178 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45472349ns 799181 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45472633ns 799186 1a110850 fd5ff06f jal x0, -44 +45472917ns 799191 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45473201ns 799196 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45473599ns 799203 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45473770ns 799206 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45474224ns 799214 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45474395ns 799217 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45474679ns 799222 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45474963ns 799227 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45475247ns 799232 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45475702ns 799240 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45475872ns 799243 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45476156ns 799248 1a110850 fd5ff06f jal x0, -44 +45476441ns 799253 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45476725ns 799258 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45477123ns 799265 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45477293ns 799268 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45477748ns 799276 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45477918ns 799279 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45478202ns 799284 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45478487ns 799289 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45478771ns 799294 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45479225ns 799302 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45479396ns 799305 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45479680ns 799310 1a110850 fd5ff06f jal x0, -44 +45479964ns 799315 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45480248ns 799320 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45480646ns 799327 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45480817ns 799330 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45481271ns 799338 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45481442ns 799341 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45481726ns 799346 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45482010ns 799351 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45482294ns 799356 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45482749ns 799364 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45482919ns 799367 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45483204ns 799372 1a110850 fd5ff06f jal x0, -44 +45483488ns 799377 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45483772ns 799382 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45484170ns 799389 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45484340ns 799392 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45484795ns 799400 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45484965ns 799403 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45485250ns 799408 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45485534ns 799413 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45485818ns 799418 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45486273ns 799426 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45486443ns 799429 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45486727ns 799434 1a110850 fd5ff06f jal x0, -44 +45487011ns 799439 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45487296ns 799444 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45487693ns 799451 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45487864ns 799454 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45488319ns 799462 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45488489ns 799465 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45488773ns 799470 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45489057ns 799475 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45489341ns 799480 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45489796ns 799488 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45489967ns 799491 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45490251ns 799496 1a110850 fd5ff06f jal x0, -44 +45490535ns 799501 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45490819ns 799506 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45491217ns 799513 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45491387ns 799516 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45491842ns 799524 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45492013ns 799527 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45492297ns 799532 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45492581ns 799537 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45492865ns 799542 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45493320ns 799550 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45493490ns 799553 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45493774ns 799558 1a110850 fd5ff06f jal x0, -44 +45494059ns 799563 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45494343ns 799568 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45494741ns 799575 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45494911ns 799578 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45495366ns 799586 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45495536ns 799589 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45495820ns 799594 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45496104ns 799599 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45496389ns 799604 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45496843ns 799612 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45497014ns 799615 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45497298ns 799620 1a110850 fd5ff06f jal x0, -44 +45497582ns 799625 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45497866ns 799630 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45498264ns 799637 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45498435ns 799640 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45498889ns 799648 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45499060ns 799651 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45499344ns 799656 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45499628ns 799661 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45499912ns 799666 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45500367ns 799674 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45500537ns 799677 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45500822ns 799682 1a110850 fd5ff06f jal x0, -44 +45501106ns 799687 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45501390ns 799692 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45501788ns 799699 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45501958ns 799702 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45502413ns 799710 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45502583ns 799713 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45502867ns 799718 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45503152ns 799723 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45503436ns 799728 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45503890ns 799736 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45504061ns 799739 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45504345ns 799744 1a110850 fd5ff06f jal x0, -44 +45504629ns 799749 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45504913ns 799754 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45505311ns 799761 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45505482ns 799764 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45505936ns 799772 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45506107ns 799775 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45506391ns 799780 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45506675ns 799785 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45506959ns 799790 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45507414ns 799798 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45507585ns 799801 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45507869ns 799806 1a110850 fd5ff06f jal x0, -44 +45508153ns 799811 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45508437ns 799816 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45508835ns 799823 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45509005ns 799826 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45509460ns 799834 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45509631ns 799837 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45509915ns 799842 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45510199ns 799847 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45510483ns 799852 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45510938ns 799860 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45511108ns 799863 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45511392ns 799868 1a110850 fd5ff06f jal x0, -44 +45511676ns 799873 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45511961ns 799878 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45512358ns 799885 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45512529ns 799888 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45512984ns 799896 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45513154ns 799899 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45513438ns 799904 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45513722ns 799909 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45514007ns 799914 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45514461ns 799922 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45514632ns 799925 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45514916ns 799930 1a110850 fd5ff06f jal x0, -44 +45515200ns 799935 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45515484ns 799940 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45515882ns 799947 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45516053ns 799950 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45516507ns 799958 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45516678ns 799961 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45516962ns 799966 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45517246ns 799971 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45517530ns 799976 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45517985ns 799984 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45518155ns 799987 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45518439ns 799992 1a110850 fd5ff06f jal x0, -44 +45518724ns 799997 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45519008ns 800002 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45519406ns 800009 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45519576ns 800012 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45520031ns 800020 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45520201ns 800023 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45520485ns 800028 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45520770ns 800033 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45521054ns 800038 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45521508ns 800046 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45521679ns 800049 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45521963ns 800054 1a110850 fd5ff06f jal x0, -44 +45522247ns 800059 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45522531ns 800064 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45522929ns 800071 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45523100ns 800074 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45523554ns 800082 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45523725ns 800085 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45524009ns 800090 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45524293ns 800095 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45524577ns 800100 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45525032ns 800108 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45525202ns 800111 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45525487ns 800116 1a110850 fd5ff06f jal x0, -44 +45525771ns 800121 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45526055ns 800126 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45526453ns 800133 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45526623ns 800136 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45527078ns 800144 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45527248ns 800147 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45527533ns 800152 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45527817ns 800157 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45528101ns 800162 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45528556ns 800170 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45528726ns 800173 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45529010ns 800178 1a110850 fd5ff06f jal x0, -44 +45529294ns 800183 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45529579ns 800188 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45529976ns 800195 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45530147ns 800198 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45530602ns 800206 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45530772ns 800209 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45531056ns 800214 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45531340ns 800219 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45531624ns 800224 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45532079ns 800232 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45532250ns 800235 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45532534ns 800240 1a110850 fd5ff06f jal x0, -44 +45532818ns 800245 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45533102ns 800250 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45533500ns 800257 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45533670ns 800260 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45534125ns 800268 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45534296ns 800271 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45534580ns 800276 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45534864ns 800281 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45535148ns 800286 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45535603ns 800294 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45535773ns 800297 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45536057ns 800302 1a110850 fd5ff06f jal x0, -44 +45536342ns 800307 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45536626ns 800312 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45537024ns 800319 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45537194ns 800322 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45537649ns 800330 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45537819ns 800333 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45538103ns 800338 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45538387ns 800343 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45538672ns 800348 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45539126ns 800356 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45539297ns 800359 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45539581ns 800364 1a110850 fd5ff06f jal x0, -44 +45539865ns 800369 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45540149ns 800374 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45540547ns 800381 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45540718ns 800384 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45541172ns 800392 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45541343ns 800395 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45541627ns 800400 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45541911ns 800405 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45542195ns 800410 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45542650ns 800418 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45542820ns 800421 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45543105ns 800426 1a110850 fd5ff06f jal x0, -44 +45543389ns 800431 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45543673ns 800436 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45544071ns 800443 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45544241ns 800446 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45544696ns 800454 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45544866ns 800457 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45545151ns 800462 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45545435ns 800467 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45545719ns 800472 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45546173ns 800480 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45546344ns 800483 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45546628ns 800488 1a110850 fd5ff06f jal x0, -44 +45546912ns 800493 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45547196ns 800498 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45547594ns 800505 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45547765ns 800508 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45548219ns 800516 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45548390ns 800519 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45548674ns 800524 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45548958ns 800529 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45549242ns 800534 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45549697ns 800542 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45549868ns 800545 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45550152ns 800550 1a110850 fd5ff06f jal x0, -44 +45550436ns 800555 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45550720ns 800560 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45551118ns 800567 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45551288ns 800570 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45551743ns 800578 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45551914ns 800581 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45552198ns 800586 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45552482ns 800591 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45552766ns 800596 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45553221ns 800604 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45553391ns 800607 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45553675ns 800612 1a110850 fd5ff06f jal x0, -44 +45553959ns 800617 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45554244ns 800622 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45554641ns 800629 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45554812ns 800632 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45555267ns 800640 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45555437ns 800643 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45555721ns 800648 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45556005ns 800653 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45556290ns 800658 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45556744ns 800666 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45556915ns 800669 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45557199ns 800674 1a110850 fd5ff06f jal x0, -44 +45557483ns 800679 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45557767ns 800684 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45558165ns 800691 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45558336ns 800694 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45558790ns 800702 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45558961ns 800705 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45559245ns 800710 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45559529ns 800715 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45559813ns 800720 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45560268ns 800728 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45560438ns 800731 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45560722ns 800736 1a110850 fd5ff06f jal x0, -44 +45561007ns 800741 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45561291ns 800746 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45561689ns 800753 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45561859ns 800756 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45562314ns 800764 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45562484ns 800767 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45562768ns 800772 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45563053ns 800777 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45563337ns 800782 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45563791ns 800790 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45563962ns 800793 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45564246ns 800798 1a110850 fd5ff06f jal x0, -44 +45564530ns 800803 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45564814ns 800808 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45565212ns 800815 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45565383ns 800818 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45565837ns 800826 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45566008ns 800829 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45566292ns 800834 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45566576ns 800839 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45566860ns 800844 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45567315ns 800852 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45567485ns 800855 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45567770ns 800860 1a110850 fd5ff06f jal x0, -44 +45568054ns 800865 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45568338ns 800870 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45568736ns 800877 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45568906ns 800880 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45569361ns 800888 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45569531ns 800891 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45569816ns 800896 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45570100ns 800901 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45570384ns 800906 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45570839ns 800914 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45571009ns 800917 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45571293ns 800922 1a110850 fd5ff06f jal x0, -44 +45571577ns 800927 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45571862ns 800932 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45572259ns 800939 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45572430ns 800942 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45572885ns 800950 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45573055ns 800953 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45573339ns 800958 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45573623ns 800963 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45573907ns 800968 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45574362ns 800976 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45574533ns 800979 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45574817ns 800984 1a110850 fd5ff06f jal x0, -44 +45575101ns 800989 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45575385ns 800994 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45575783ns 801001 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45575953ns 801004 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45576408ns 801012 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45576579ns 801015 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45576863ns 801020 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45577147ns 801025 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45577431ns 801030 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45577886ns 801038 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45578056ns 801041 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45578340ns 801046 1a110850 fd5ff06f jal x0, -44 +45578625ns 801051 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45578909ns 801056 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45579307ns 801063 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45579477ns 801066 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45579932ns 801074 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45580102ns 801077 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45580386ns 801082 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45580671ns 801087 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45580955ns 801092 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45581409ns 801100 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45581580ns 801103 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45581864ns 801108 1a110850 fd5ff06f jal x0, -44 +45582148ns 801113 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45582432ns 801118 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45582830ns 801125 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45583001ns 801128 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45583455ns 801136 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45583626ns 801139 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45583910ns 801144 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45584194ns 801149 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45584478ns 801154 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45584933ns 801162 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45585103ns 801165 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45585388ns 801170 1a110850 fd5ff06f jal x0, -44 +45585672ns 801175 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45585956ns 801180 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45586354ns 801187 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45586524ns 801190 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45586979ns 801198 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45587149ns 801201 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45587434ns 801206 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45587718ns 801211 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45588002ns 801216 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45588456ns 801224 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45588627ns 801227 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45588911ns 801232 1a110850 fd5ff06f jal x0, -44 +45589195ns 801237 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45589479ns 801242 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45589877ns 801249 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45590048ns 801252 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45590502ns 801260 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45590673ns 801263 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45590957ns 801268 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45591241ns 801273 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45591525ns 801278 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45591980ns 801286 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45592151ns 801289 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45592435ns 801294 1a110850 fd5ff06f jal x0, -44 +45592719ns 801299 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45593003ns 801304 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45593401ns 801311 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45593571ns 801314 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45594026ns 801322 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45594197ns 801325 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45594481ns 801330 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45594765ns 801335 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45595049ns 801340 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45595504ns 801348 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45595674ns 801351 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45595958ns 801356 1a110850 fd5ff06f jal x0, -44 +45596242ns 801361 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45596527ns 801366 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45596924ns 801373 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45597095ns 801376 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45597550ns 801384 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45597720ns 801387 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45598004ns 801392 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45598288ns 801397 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45598573ns 801402 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45599027ns 801410 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45599198ns 801413 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45599482ns 801418 1a110850 fd5ff06f jal x0, -44 +45599766ns 801423 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45600050ns 801428 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45600448ns 801435 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45600619ns 801438 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45601073ns 801446 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45601244ns 801449 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45601528ns 801454 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45601812ns 801459 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45602096ns 801464 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45602551ns 801472 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45602721ns 801475 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45603005ns 801480 1a110850 fd5ff06f jal x0, -44 +45603290ns 801485 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45603574ns 801490 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45603972ns 801497 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45604142ns 801500 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45604597ns 801508 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45604767ns 801511 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45605051ns 801516 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45605336ns 801521 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45605620ns 801526 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45606074ns 801534 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45606245ns 801537 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45606529ns 801542 1a110850 fd5ff06f jal x0, -44 +45606813ns 801547 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45607097ns 801552 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45607495ns 801559 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45607666ns 801562 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45608120ns 801570 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45608291ns 801573 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45608575ns 801578 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45608859ns 801583 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45609143ns 801588 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45609598ns 801596 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45609768ns 801599 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45610053ns 801604 1a110850 fd5ff06f jal x0, -44 +45610337ns 801609 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45610621ns 801614 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45611019ns 801621 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45611189ns 801624 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45611644ns 801632 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45611814ns 801635 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45612099ns 801640 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45612383ns 801645 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45612667ns 801650 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45613122ns 801658 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45613292ns 801661 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45613576ns 801666 1a110850 fd5ff06f jal x0, -44 +45613860ns 801671 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45614145ns 801676 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45614542ns 801683 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45614713ns 801686 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45615168ns 801694 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45615338ns 801697 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45615622ns 801702 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45615906ns 801707 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45616191ns 801712 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45616645ns 801720 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45616816ns 801723 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45617100ns 801728 1a110850 fd5ff06f jal x0, -44 +45617384ns 801733 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45617668ns 801738 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45618066ns 801745 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45618236ns 801748 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45618691ns 801756 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45618862ns 801759 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45619146ns 801764 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45619430ns 801769 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45619714ns 801774 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45620169ns 801782 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45620339ns 801785 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45620623ns 801790 1a110850 fd5ff06f jal x0, -44 +45620908ns 801795 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45621192ns 801800 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45621590ns 801807 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45621760ns 801810 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45622215ns 801818 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45622385ns 801821 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45622669ns 801826 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45622954ns 801831 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45623238ns 801836 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45623692ns 801844 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45623863ns 801847 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45624147ns 801852 1a110850 fd5ff06f jal x0, -44 +45624431ns 801857 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45624715ns 801862 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45625113ns 801869 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45625284ns 801872 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45625738ns 801880 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45625909ns 801883 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45626193ns 801888 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45626477ns 801893 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45626761ns 801898 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45627216ns 801906 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45627386ns 801909 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45627671ns 801914 1a110850 fd5ff06f jal x0, -44 +45627955ns 801919 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45628239ns 801924 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45628637ns 801931 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45628807ns 801934 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45629262ns 801942 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45629432ns 801945 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45629717ns 801950 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45630001ns 801955 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45630285ns 801960 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45630739ns 801968 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45630910ns 801971 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45631194ns 801976 1a110850 fd5ff06f jal x0, -44 +45631478ns 801981 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45631762ns 801986 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45632160ns 801993 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45632331ns 801996 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45632785ns 802004 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45632956ns 802007 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45633240ns 802012 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45633524ns 802017 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45633808ns 802022 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45634263ns 802030 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45634434ns 802033 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45634718ns 802038 1a110850 fd5ff06f jal x0, -44 +45635002ns 802043 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45635286ns 802048 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45635684ns 802055 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45635854ns 802058 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45636309ns 802066 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45636480ns 802069 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45636764ns 802074 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45637048ns 802079 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45637332ns 802084 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45637787ns 802092 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45637957ns 802095 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45638241ns 802100 1a110850 fd5ff06f jal x0, -44 +45638525ns 802105 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45638810ns 802110 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45639207ns 802117 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45639378ns 802120 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45639833ns 802128 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45640003ns 802131 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45640287ns 802136 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45640571ns 802141 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45640856ns 802146 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45641310ns 802154 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45641481ns 802157 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45641765ns 802162 1a110850 fd5ff06f jal x0, -44 +45642049ns 802167 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45642333ns 802172 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45642731ns 802179 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45642902ns 802182 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45643356ns 802190 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45643527ns 802193 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45643811ns 802198 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45644095ns 802203 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45644379ns 802208 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45644834ns 802216 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45645004ns 802219 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45645288ns 802224 1a110850 fd5ff06f jal x0, -44 +45645573ns 802229 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45645857ns 802234 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45646255ns 802241 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45646425ns 802244 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45646880ns 802252 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45647050ns 802255 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45647334ns 802260 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45647619ns 802265 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45647903ns 802270 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45648357ns 802278 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45648528ns 802281 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45648812ns 802286 1a110850 fd5ff06f jal x0, -44 +45649096ns 802291 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45649380ns 802296 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45649778ns 802303 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45649949ns 802306 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45650403ns 802314 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45650574ns 802317 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45650858ns 802322 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45651142ns 802327 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45651426ns 802332 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45651881ns 802340 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45652051ns 802343 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45652336ns 802348 1a110850 fd5ff06f jal x0, -44 +45652620ns 802353 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45652904ns 802358 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45653302ns 802365 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45653472ns 802368 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45653927ns 802376 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45654097ns 802379 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45654382ns 802384 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45654666ns 802389 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45654950ns 802394 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45655405ns 802402 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45655575ns 802405 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45655859ns 802410 1a110850 fd5ff06f jal x0, -44 +45656143ns 802415 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45656428ns 802420 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45656825ns 802427 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45656996ns 802430 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45657451ns 802438 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45657621ns 802441 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45657905ns 802446 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45658189ns 802451 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45658474ns 802456 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45658928ns 802464 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45659099ns 802467 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45659383ns 802472 1a110850 fd5ff06f jal x0, -44 +45659667ns 802477 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45659951ns 802482 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45660349ns 802489 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45660519ns 802492 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45660974ns 802500 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45661145ns 802503 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45661429ns 802508 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45661713ns 802513 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45661997ns 802518 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45662452ns 802526 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45662622ns 802529 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45662906ns 802534 1a110850 fd5ff06f jal x0, -44 +45663191ns 802539 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45663475ns 802544 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45663873ns 802551 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45664043ns 802554 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45664498ns 802562 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45664668ns 802565 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45664952ns 802570 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45665237ns 802575 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45665521ns 802580 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45665975ns 802588 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45666146ns 802591 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45666430ns 802596 1a110850 fd5ff06f jal x0, -44 +45666714ns 802601 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45666998ns 802606 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45667396ns 802613 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45667567ns 802616 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45668021ns 802624 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45668192ns 802627 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45668476ns 802632 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45668760ns 802637 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45669044ns 802642 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45669499ns 802650 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45669669ns 802653 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45669954ns 802658 1a110850 fd5ff06f jal x0, -44 +45670238ns 802663 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45670522ns 802668 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45670920ns 802675 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45671090ns 802678 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45671545ns 802686 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45671715ns 802689 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45672000ns 802694 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45672284ns 802699 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45672568ns 802704 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45673023ns 802712 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45673193ns 802715 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45673477ns 802720 1a110850 fd5ff06f jal x0, -44 +45673761ns 802725 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45674045ns 802730 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45674443ns 802737 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45674614ns 802740 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45675068ns 802748 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45675239ns 802751 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45675523ns 802756 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45675807ns 802761 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45676091ns 802766 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45676546ns 802774 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45676717ns 802777 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45677001ns 802782 1a110850 fd5ff06f jal x0, -44 +45677285ns 802787 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45677569ns 802792 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45677967ns 802799 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45678137ns 802802 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45678592ns 802810 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45678763ns 802813 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45679047ns 802818 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45679331ns 802823 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45679615ns 802828 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45680070ns 802836 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45680240ns 802839 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45680524ns 802844 1a110850 fd5ff06f jal x0, -44 +45680808ns 802849 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45681093ns 802854 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45681490ns 802861 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45681661ns 802864 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45682116ns 802872 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45682286ns 802875 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45682570ns 802880 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45682854ns 802885 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45683139ns 802890 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45683593ns 802898 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45683764ns 802901 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45684048ns 802906 1a110850 fd5ff06f jal x0, -44 +45684332ns 802911 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45684616ns 802916 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45685014ns 802923 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45685185ns 802926 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45685639ns 802934 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45685810ns 802937 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45686094ns 802942 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45686378ns 802947 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45686662ns 802952 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45687117ns 802960 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45687287ns 802963 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45687571ns 802968 1a110850 fd5ff06f jal x0, -44 +45687856ns 802973 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45688140ns 802978 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45688538ns 802985 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45688708ns 802988 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45689163ns 802996 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45689333ns 802999 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45689617ns 803004 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45689902ns 803009 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45690186ns 803014 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45690640ns 803022 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45690811ns 803025 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45691095ns 803030 1a110850 fd5ff06f jal x0, -44 +45691379ns 803035 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45691663ns 803040 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45692061ns 803047 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45692232ns 803050 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45692686ns 803058 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45692857ns 803061 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45693141ns 803066 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45693425ns 803071 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45693709ns 803076 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45694164ns 803084 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45694335ns 803087 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45694619ns 803092 1a110850 fd5ff06f jal x0, -44 +45694903ns 803097 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45695187ns 803102 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45695585ns 803109 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45695755ns 803112 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45696210ns 803120 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45696380ns 803123 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45696665ns 803128 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45696949ns 803133 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45697233ns 803138 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45697688ns 803146 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45697858ns 803149 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45698142ns 803154 1a110850 fd5ff06f jal x0, -44 +45698426ns 803159 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45698711ns 803164 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45699108ns 803171 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45699279ns 803174 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45699734ns 803182 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45699904ns 803185 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45700188ns 803190 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45700472ns 803195 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45700757ns 803200 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45701211ns 803208 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45701382ns 803211 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45701666ns 803216 1a110850 fd5ff06f jal x0, -44 +45701950ns 803221 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45702234ns 803226 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45702632ns 803233 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45702802ns 803236 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45703257ns 803244 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45703428ns 803247 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45703712ns 803252 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45703996ns 803257 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45704280ns 803262 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45704735ns 803270 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45704905ns 803273 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45705189ns 803278 1a110850 fd5ff06f jal x0, -44 +45705474ns 803283 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45705758ns 803288 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45706156ns 803295 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45706326ns 803298 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45706781ns 803306 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45706951ns 803309 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45707235ns 803314 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45707520ns 803319 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45707804ns 803324 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45708258ns 803332 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45708429ns 803335 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45708713ns 803340 1a110850 fd5ff06f jal x0, -44 +45708997ns 803345 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45709281ns 803350 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45709679ns 803357 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45709850ns 803360 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45710304ns 803368 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45710475ns 803371 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45710759ns 803376 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45711043ns 803381 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45711327ns 803386 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45711782ns 803394 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45711952ns 803397 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45712237ns 803402 1a110850 fd5ff06f jal x0, -44 +45712521ns 803407 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45712805ns 803412 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45713203ns 803419 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45713373ns 803422 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45713828ns 803430 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45713998ns 803433 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45714283ns 803438 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45714567ns 803443 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45714851ns 803448 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45715306ns 803456 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45715476ns 803459 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45715760ns 803464 1a110850 fd5ff06f jal x0, -44 +45716044ns 803469 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45716328ns 803474 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45716726ns 803481 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45716897ns 803484 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45717351ns 803492 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45717522ns 803495 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45717806ns 803500 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45718090ns 803505 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45718374ns 803510 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45718829ns 803518 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45719000ns 803521 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45719284ns 803526 1a110850 fd5ff06f jal x0, -44 +45719568ns 803531 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45719852ns 803536 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45720250ns 803543 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45720420ns 803546 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45720875ns 803554 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45721046ns 803557 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45721330ns 803562 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45721614ns 803567 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45721898ns 803572 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45722353ns 803580 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45722523ns 803583 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45722807ns 803588 1a110850 fd5ff06f jal x0, -44 +45723091ns 803593 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45723376ns 803598 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45723773ns 803605 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45723944ns 803608 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45724399ns 803616 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45724569ns 803619 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45724853ns 803624 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45725137ns 803629 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45725422ns 803634 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45725876ns 803642 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45726047ns 803645 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45726331ns 803650 1a110850 fd5ff06f jal x0, -44 +45726615ns 803655 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45726899ns 803660 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45727297ns 803667 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45727468ns 803670 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45727922ns 803678 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45728093ns 803681 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45728377ns 803686 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45728661ns 803691 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45728945ns 803696 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45729400ns 803704 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45729570ns 803707 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45729855ns 803712 1a110850 fd5ff06f jal x0, -44 +45730139ns 803717 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45730423ns 803722 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45730821ns 803729 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45730991ns 803732 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45731446ns 803740 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45731616ns 803743 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45731900ns 803748 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45732185ns 803753 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45732469ns 803758 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45732923ns 803766 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45733094ns 803769 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45733378ns 803774 1a110850 fd5ff06f jal x0, -44 +45733662ns 803779 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45733946ns 803784 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45734344ns 803791 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45734515ns 803794 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45734969ns 803802 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45735140ns 803805 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45735424ns 803810 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45735708ns 803815 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45735992ns 803820 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45736447ns 803828 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45736618ns 803831 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45736902ns 803836 1a110850 fd5ff06f jal x0, -44 +45737186ns 803841 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45737470ns 803846 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45737868ns 803853 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45738038ns 803856 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45738493ns 803864 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45738663ns 803867 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45738948ns 803872 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45739232ns 803877 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45739516ns 803882 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45739971ns 803890 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45740141ns 803893 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45740425ns 803898 1a110850 fd5ff06f jal x0, -44 +45740709ns 803903 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45740994ns 803908 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45741391ns 803915 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45741562ns 803918 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45742017ns 803926 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45742187ns 803929 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45742471ns 803934 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45742755ns 803939 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45743040ns 803944 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45743494ns 803952 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45743665ns 803955 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45743949ns 803960 1a110850 fd5ff06f jal x0, -44 +45744233ns 803965 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45744517ns 803970 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45744915ns 803977 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45745085ns 803980 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45745540ns 803988 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45745711ns 803991 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45745995ns 803996 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45746279ns 804001 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45746563ns 804006 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45747018ns 804014 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45747188ns 804017 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45747472ns 804022 1a110850 fd5ff06f jal x0, -44 +45747757ns 804027 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45748041ns 804032 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45748439ns 804039 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45748609ns 804042 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45749064ns 804050 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45749234ns 804053 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45749518ns 804058 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45749803ns 804063 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45750087ns 804068 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45750541ns 804076 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45750712ns 804079 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45750996ns 804084 1a110850 fd5ff06f jal x0, -44 +45751280ns 804089 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45751564ns 804094 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45751962ns 804101 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45752133ns 804104 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45752587ns 804112 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45752758ns 804115 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45753042ns 804120 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45753326ns 804125 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45753610ns 804130 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45754065ns 804138 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45754235ns 804141 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45754520ns 804146 1a110850 fd5ff06f jal x0, -44 +45754804ns 804151 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45755088ns 804156 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45755486ns 804163 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45755656ns 804166 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45756111ns 804174 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45756281ns 804177 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45756566ns 804182 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45756850ns 804187 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45757134ns 804192 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45757589ns 804200 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45757759ns 804203 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45758043ns 804208 1a110850 fd5ff06f jal x0, -44 +45758327ns 804213 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45758611ns 804218 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45759009ns 804225 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45759180ns 804228 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45759634ns 804236 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45759805ns 804239 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45760089ns 804244 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45760373ns 804249 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45760657ns 804254 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45761112ns 804262 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45761283ns 804265 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45761567ns 804270 1a110850 fd5ff06f jal x0, -44 +45761851ns 804275 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45762135ns 804280 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45762533ns 804287 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45762703ns 804290 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45763158ns 804298 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45763329ns 804301 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45763613ns 804306 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45763897ns 804311 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45764181ns 804316 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45764636ns 804324 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45764806ns 804327 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45765090ns 804332 1a110850 fd5ff06f jal x0, -44 +45765375ns 804337 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45765659ns 804342 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45766056ns 804349 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45766227ns 804352 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45766682ns 804360 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45766852ns 804363 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45767136ns 804368 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45767420ns 804373 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45767705ns 804378 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45768159ns 804386 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45768330ns 804389 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45768614ns 804394 1a110850 fd5ff06f jal x0, -44 +45768898ns 804399 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45769182ns 804404 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45769580ns 804411 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45769751ns 804414 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45770205ns 804422 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45770376ns 804425 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45770660ns 804430 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45770944ns 804435 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45771228ns 804440 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45771683ns 804448 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45771853ns 804451 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45772138ns 804456 1a110850 fd5ff06f jal x0, -44 +45772422ns 804461 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45772706ns 804466 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45773104ns 804473 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45773274ns 804476 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45773729ns 804484 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45773899ns 804487 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45774183ns 804492 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45774468ns 804497 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45774752ns 804502 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45775206ns 804510 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45775377ns 804513 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45775661ns 804518 1a110850 fd5ff06f jal x0, -44 +45775945ns 804523 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45776229ns 804528 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45776627ns 804535 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45776798ns 804538 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45777252ns 804546 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45777423ns 804549 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45777707ns 804554 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45777991ns 804559 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45778275ns 804564 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45778730ns 804572 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45778901ns 804575 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45779185ns 804580 1a110850 fd5ff06f jal x0, -44 +45779469ns 804585 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45779753ns 804590 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45780151ns 804597 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45780321ns 804600 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45780776ns 804608 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45780946ns 804611 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45781231ns 804616 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45781515ns 804621 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45781799ns 804626 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45782254ns 804634 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45782424ns 804637 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45782708ns 804642 1a110850 fd5ff06f jal x0, -44 +45782992ns 804647 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45783277ns 804652 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45783674ns 804659 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45783845ns 804662 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45784300ns 804670 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45784470ns 804673 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45784754ns 804678 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45785038ns 804683 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45785323ns 804688 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45785777ns 804696 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45785948ns 804699 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45786232ns 804704 1a110850 fd5ff06f jal x0, -44 +45786516ns 804709 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45786800ns 804714 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45787198ns 804721 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45787368ns 804724 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45787823ns 804732 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45787994ns 804735 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45788278ns 804740 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45788562ns 804745 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45788846ns 804750 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45789301ns 804758 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45789471ns 804761 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45789755ns 804766 1a110850 fd5ff06f jal x0, -44 +45790040ns 804771 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45790324ns 804776 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45790722ns 804783 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45790892ns 804786 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45791347ns 804794 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45791517ns 804797 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45791801ns 804802 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45792086ns 804807 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45792370ns 804812 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45792824ns 804820 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45792995ns 804823 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45793279ns 804828 1a110850 fd5ff06f jal x0, -44 +45793563ns 804833 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45793847ns 804838 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45794245ns 804845 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45794416ns 804848 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45794870ns 804856 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45795041ns 804859 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45795325ns 804864 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45795609ns 804869 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45795893ns 804874 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45796348ns 804882 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45796518ns 804885 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45796803ns 804890 1a110850 fd5ff06f jal x0, -44 +45797087ns 804895 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45797371ns 804900 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45797769ns 804907 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45797939ns 804910 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45798394ns 804918 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45798564ns 804921 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45798849ns 804926 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45799133ns 804931 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45799417ns 804936 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45799872ns 804944 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45800042ns 804947 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45800326ns 804952 1a110850 fd5ff06f jal x0, -44 +45800610ns 804957 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45800895ns 804962 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45801292ns 804969 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45801463ns 804972 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45801917ns 804980 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45802088ns 804983 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45802372ns 804988 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45802656ns 804993 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45802940ns 804998 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45803395ns 805006 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45803566ns 805009 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45803850ns 805014 1a110850 fd5ff06f jal x0, -44 +45804134ns 805019 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45804418ns 805024 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45804816ns 805031 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45804986ns 805034 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45805441ns 805042 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45805612ns 805045 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45805896ns 805050 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45806180ns 805055 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45806464ns 805060 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45806919ns 805068 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45807089ns 805071 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45807373ns 805076 1a110850 fd5ff06f jal x0, -44 +45807658ns 805081 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45807942ns 805086 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45808339ns 805093 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45808510ns 805096 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45808965ns 805104 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45809135ns 805107 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45809419ns 805112 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45809703ns 805117 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45809988ns 805122 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45810442ns 805130 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45810613ns 805133 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45810897ns 805138 1a110850 fd5ff06f jal x0, -44 +45811181ns 805143 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45811465ns 805148 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45811863ns 805155 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45812034ns 805158 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45812488ns 805166 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45812659ns 805169 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45812943ns 805174 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45813227ns 805179 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45813511ns 805184 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45813966ns 805192 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45814136ns 805195 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45814421ns 805200 1a110850 fd5ff06f jal x0, -44 +45814705ns 805205 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45814989ns 805210 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45815387ns 805217 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45815557ns 805220 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45816012ns 805228 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45816182ns 805231 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45816466ns 805236 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45816751ns 805241 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45817035ns 805246 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45817489ns 805254 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45817660ns 805257 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45817944ns 805262 1a110850 fd5ff06f jal x0, -44 +45818228ns 805267 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45818512ns 805272 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45818910ns 805279 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45819081ns 805282 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45819535ns 805290 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45819706ns 805293 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45819990ns 805298 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45820274ns 805303 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45820558ns 805308 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45821013ns 805316 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45821184ns 805319 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45821468ns 805324 1a110850 fd5ff06f jal x0, -44 +45821752ns 805329 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45822036ns 805334 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45822434ns 805341 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45822604ns 805344 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45823059ns 805352 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45823229ns 805355 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45823514ns 805360 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45823798ns 805365 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45824082ns 805370 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45824537ns 805378 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45824707ns 805381 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45824991ns 805386 1a110850 fd5ff06f jal x0, -44 +45825275ns 805391 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45825560ns 805396 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45825957ns 805403 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45826128ns 805406 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45826583ns 805414 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45826753ns 805417 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45827037ns 805422 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45827321ns 805427 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45827606ns 805432 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45828060ns 805440 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45828231ns 805443 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45828515ns 805448 1a110850 fd5ff06f jal x0, -44 +45828799ns 805453 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45829083ns 805458 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45829481ns 805465 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45829651ns 805468 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45830106ns 805476 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45830277ns 805479 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45830561ns 805484 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45830845ns 805489 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45831129ns 805494 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45831584ns 805502 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45831754ns 805505 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45832038ns 805510 1a110850 fd5ff06f jal x0, -44 +45832323ns 805515 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45832607ns 805520 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45833005ns 805527 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45833175ns 805530 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45833630ns 805538 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45833800ns 805541 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45834084ns 805546 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45834369ns 805551 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45834653ns 805556 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45835107ns 805564 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45835278ns 805567 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45835562ns 805572 1a110850 fd5ff06f jal x0, -44 +45835846ns 805577 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45836130ns 805582 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45836528ns 805589 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45836699ns 805592 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45837153ns 805600 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45837324ns 805603 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45837608ns 805608 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45837892ns 805613 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45838176ns 805618 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45838631ns 805626 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45838801ns 805629 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45839086ns 805634 1a110850 fd5ff06f jal x0, -44 +45839370ns 805639 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45839654ns 805644 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45840052ns 805651 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45840222ns 805654 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45840677ns 805662 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45840847ns 805665 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45841132ns 805670 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45841416ns 805675 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45841700ns 805680 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45842155ns 805688 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45842325ns 805691 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45842609ns 805696 1a110850 fd5ff06f jal x0, -44 +45842893ns 805701 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45843178ns 805706 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45843575ns 805713 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45843746ns 805716 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45844200ns 805724 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45844371ns 805727 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45844655ns 805732 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45844939ns 805737 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45845223ns 805742 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45845678ns 805750 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45845849ns 805753 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45846133ns 805758 1a110850 fd5ff06f jal x0, -44 +45846417ns 805763 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45846701ns 805768 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45847099ns 805775 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45847269ns 805778 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45847724ns 805786 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45847895ns 805789 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45848179ns 805794 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45848463ns 805799 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45848747ns 805804 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45849202ns 805812 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45849372ns 805815 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45849656ns 805820 1a110850 fd5ff06f jal x0, -44 +45849941ns 805825 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45850225ns 805830 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45850623ns 805837 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45850793ns 805840 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45851248ns 805848 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45851418ns 805851 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45851702ns 805856 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45851986ns 805861 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45852271ns 805866 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45852725ns 805874 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45852896ns 805877 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45853180ns 805882 1a110850 fd5ff06f jal x0, -44 +45853464ns 805887 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45853748ns 805892 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45854146ns 805899 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45854317ns 805902 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45854771ns 805910 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45854942ns 805913 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45855226ns 805918 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45855510ns 805923 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45855794ns 805928 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45856249ns 805936 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45856419ns 805939 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45856704ns 805944 1a110850 fd5ff06f jal x0, -44 +45856988ns 805949 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45857272ns 805954 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45857670ns 805961 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45857840ns 805964 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45858295ns 805972 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45858465ns 805975 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45858749ns 805980 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45859034ns 805985 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45859318ns 805990 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45859772ns 805998 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45859943ns 806001 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45860227ns 806006 1a110850 fd5ff06f jal x0, -44 +45860511ns 806011 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45860795ns 806016 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45861193ns 806023 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45861364ns 806026 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45861818ns 806034 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45861989ns 806037 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45862273ns 806042 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45862557ns 806047 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45862841ns 806052 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45863296ns 806060 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45863467ns 806063 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45863751ns 806068 1a110850 fd5ff06f jal x0, -44 +45864035ns 806073 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45864319ns 806078 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45864717ns 806085 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45864887ns 806088 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45865342ns 806096 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45865512ns 806099 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45865797ns 806104 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45866081ns 806109 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45866365ns 806114 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45866820ns 806122 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45866990ns 806125 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45867274ns 806130 1a110850 fd5ff06f jal x0, -44 +45867558ns 806135 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45867843ns 806140 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45868240ns 806147 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45868411ns 806150 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45868866ns 806158 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45869036ns 806161 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45869320ns 806166 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45869604ns 806171 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45869889ns 806176 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45870343ns 806184 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45870514ns 806187 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45870798ns 806192 1a110850 fd5ff06f jal x0, -44 +45871082ns 806197 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45871366ns 806202 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45871764ns 806209 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45871935ns 806212 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45872389ns 806220 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45872560ns 806223 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45872844ns 806228 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45873128ns 806233 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45873412ns 806238 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45873867ns 806246 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45874037ns 806249 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45874321ns 806254 1a110850 fd5ff06f jal x0, -44 +45874606ns 806259 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45874890ns 806264 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45875288ns 806271 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45875458ns 806274 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45875913ns 806282 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45876083ns 806285 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45876367ns 806290 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45876652ns 806295 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45876936ns 806300 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45877390ns 806308 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45877561ns 806311 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45877845ns 806316 1a110850 fd5ff06f jal x0, -44 +45878129ns 806321 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45878413ns 806326 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45878811ns 806333 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45878982ns 806336 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45879436ns 806344 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45879607ns 806347 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45879891ns 806352 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45880175ns 806357 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45880459ns 806362 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45880914ns 806370 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45881084ns 806373 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45881369ns 806378 1a110850 fd5ff06f jal x0, -44 +45881653ns 806383 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45881937ns 806388 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45882335ns 806395 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45882505ns 806398 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45882960ns 806406 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45883130ns 806409 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45883415ns 806414 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45883699ns 806419 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45883983ns 806424 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45884438ns 806432 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45884608ns 806435 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45884892ns 806440 1a110850 fd5ff06f jal x0, -44 +45885176ns 806445 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45885461ns 806450 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45885858ns 806457 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45886029ns 806460 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45886483ns 806468 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45886654ns 806471 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45886938ns 806476 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45887222ns 806481 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45887506ns 806486 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45887961ns 806494 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45888132ns 806497 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45888416ns 806502 1a110850 fd5ff06f jal x0, -44 +45888700ns 806507 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45888984ns 806512 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45889382ns 806519 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45889552ns 806522 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45890007ns 806530 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45890178ns 806533 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45890462ns 806538 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45890746ns 806543 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45891030ns 806548 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45891485ns 806556 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45891655ns 806559 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45891939ns 806564 1a110850 fd5ff06f jal x0, -44 +45892224ns 806569 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45892508ns 806574 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45892906ns 806581 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45893076ns 806584 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45893531ns 806592 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45893701ns 806595 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45893985ns 806600 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45894269ns 806605 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45894554ns 806610 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45895008ns 806618 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45895179ns 806621 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45895463ns 806626 1a110850 fd5ff06f jal x0, -44 +45895747ns 806631 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45896031ns 806636 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45896429ns 806643 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45896600ns 806646 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45897054ns 806654 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45897225ns 806657 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45897509ns 806662 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45897793ns 806667 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45898077ns 806672 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45898532ns 806680 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45898702ns 806683 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45898987ns 806688 1a110850 fd5ff06f jal x0, -44 +45899271ns 806693 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45899555ns 806698 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45899953ns 806705 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45900123ns 806708 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45900578ns 806716 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45900748ns 806719 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45901032ns 806724 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45901317ns 806729 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45901601ns 806734 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45902055ns 806742 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45902226ns 806745 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45902510ns 806750 1a110850 fd5ff06f jal x0, -44 +45902794ns 806755 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45903078ns 806760 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45903476ns 806767 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45903647ns 806770 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45904101ns 806778 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45904272ns 806781 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45904556ns 806786 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45904840ns 806791 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45905124ns 806796 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45905579ns 806804 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45905750ns 806807 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45906034ns 806812 1a110850 fd5ff06f jal x0, -44 +45906318ns 806817 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45906602ns 806822 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45907000ns 806829 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45907170ns 806832 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45907625ns 806840 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45907795ns 806843 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45908080ns 806848 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45908364ns 806853 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45908648ns 806858 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45909103ns 806866 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45909273ns 806869 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45909557ns 806874 1a110850 fd5ff06f jal x0, -44 +45909841ns 806879 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45910126ns 806884 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45910523ns 806891 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45910694ns 806894 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45911149ns 806902 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45911319ns 806905 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45911603ns 806910 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45911887ns 806915 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45912172ns 806920 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45912626ns 806928 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45912797ns 806931 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45913081ns 806936 1a110850 fd5ff06f jal x0, -44 +45913365ns 806941 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45913649ns 806946 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45914047ns 806953 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45914218ns 806956 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45914672ns 806964 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45914843ns 806967 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45915127ns 806972 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45915411ns 806977 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45915695ns 806982 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45916150ns 806990 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45916320ns 806993 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45916604ns 806998 1a110850 fd5ff06f jal x0, -44 +45916889ns 807003 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45917173ns 807008 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45917571ns 807015 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45917741ns 807018 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45918196ns 807026 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45918366ns 807029 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45918650ns 807034 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45918935ns 807039 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45919219ns 807044 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45919673ns 807052 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45919844ns 807055 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45920128ns 807060 1a110850 fd5ff06f jal x0, -44 +45920412ns 807065 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45920696ns 807070 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45921094ns 807077 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45921265ns 807080 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45921719ns 807088 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45921890ns 807091 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45922174ns 807096 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45922458ns 807101 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45922742ns 807106 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45923197ns 807114 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45923367ns 807117 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45923652ns 807122 1a110850 fd5ff06f jal x0, -44 +45923936ns 807127 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45924220ns 807132 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45924618ns 807139 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45924788ns 807142 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45925243ns 807150 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45925413ns 807153 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45925698ns 807158 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45925982ns 807163 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45926266ns 807168 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45926721ns 807176 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45926891ns 807179 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45927175ns 807184 1a110850 fd5ff06f jal x0, -44 +45927459ns 807189 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45927744ns 807194 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45928141ns 807201 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45928312ns 807204 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45928767ns 807212 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45928937ns 807215 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45929221ns 807220 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45929505ns 807225 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45929789ns 807230 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45930244ns 807238 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45930415ns 807241 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45930699ns 807246 1a110850 fd5ff06f jal x0, -44 +45930983ns 807251 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45931267ns 807256 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45931665ns 807263 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45931835ns 807266 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45932290ns 807274 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45932461ns 807277 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45932745ns 807282 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45933029ns 807287 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45933313ns 807292 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45933768ns 807300 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45933938ns 807303 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45934222ns 807308 1a110850 fd5ff06f jal x0, -44 +45934507ns 807313 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45934791ns 807318 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45935189ns 807325 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45935359ns 807328 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45935814ns 807336 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45935984ns 807339 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45936268ns 807344 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45936552ns 807349 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45936837ns 807354 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45937291ns 807362 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45937462ns 807365 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45937746ns 807370 1a110850 fd5ff06f jal x0, -44 +45938030ns 807375 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45938314ns 807380 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45938712ns 807387 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45938883ns 807390 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45939337ns 807398 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45939508ns 807401 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45939792ns 807406 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45940076ns 807411 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45940360ns 807416 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45940815ns 807424 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45940985ns 807427 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45941270ns 807432 1a110850 fd5ff06f jal x0, -44 +45941554ns 807437 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45941838ns 807442 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45942236ns 807449 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45942406ns 807452 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45942861ns 807460 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45943031ns 807463 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45943315ns 807468 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45943600ns 807473 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45943884ns 807478 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45944338ns 807486 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45944509ns 807489 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45944793ns 807494 1a110850 fd5ff06f jal x0, -44 +45945077ns 807499 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45945361ns 807504 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45945759ns 807511 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45945930ns 807514 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45946384ns 807522 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45946555ns 807525 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45946839ns 807530 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45947123ns 807535 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45947407ns 807540 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45947862ns 807548 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45948033ns 807551 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45948317ns 807556 1a110850 fd5ff06f jal x0, -44 +45948601ns 807561 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45948885ns 807566 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45949283ns 807573 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45949453ns 807576 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45949908ns 807584 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45950079ns 807587 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45950363ns 807592 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45950647ns 807597 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45950931ns 807602 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45951386ns 807610 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45951556ns 807613 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45951840ns 807618 1a110850 fd5ff06f jal x0, -44 +45952124ns 807623 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45952409ns 807628 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45952806ns 807635 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45952977ns 807638 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45953432ns 807646 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45953602ns 807649 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45953886ns 807654 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45954170ns 807659 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45954455ns 807664 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45954909ns 807672 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45955080ns 807675 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45955364ns 807680 1a110850 fd5ff06f jal x0, -44 +45955648ns 807685 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45955932ns 807690 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45956330ns 807697 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45956501ns 807700 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45956955ns 807708 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45957126ns 807711 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45957410ns 807716 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45957694ns 807721 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45957978ns 807726 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45958433ns 807734 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45958603ns 807737 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45958887ns 807742 1a110850 fd5ff06f jal x0, -44 +45959172ns 807747 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45959456ns 807752 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45959854ns 807759 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45960024ns 807762 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45960479ns 807770 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45960649ns 807773 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45960933ns 807778 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45961218ns 807783 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45961502ns 807788 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45961956ns 807796 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45962127ns 807799 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45962411ns 807804 1a110850 fd5ff06f jal x0, -44 +45962695ns 807809 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45962979ns 807814 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45963377ns 807821 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45963548ns 807824 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45964002ns 807832 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45964173ns 807835 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45964457ns 807840 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45964741ns 807845 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45965025ns 807850 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45965480ns 807858 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45965650ns 807861 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45965935ns 807866 1a110850 fd5ff06f jal x0, -44 +45966219ns 807871 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45966503ns 807876 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45966901ns 807883 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45967071ns 807886 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45967526ns 807894 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45967696ns 807897 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45967981ns 807902 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45968265ns 807907 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45968549ns 807912 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45969004ns 807920 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45969174ns 807923 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45969458ns 807928 1a110850 fd5ff06f jal x0, -44 +45969742ns 807933 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45970027ns 807938 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45970424ns 807945 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45970595ns 807948 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45971050ns 807956 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45971220ns 807959 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45971504ns 807964 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45971788ns 807969 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45972072ns 807974 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45972527ns 807982 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45972698ns 807985 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45972982ns 807990 1a110850 fd5ff06f jal x0, -44 +45973266ns 807995 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45973550ns 808000 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45973948ns 808007 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45974118ns 808010 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45974573ns 808018 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45974744ns 808021 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45975028ns 808026 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45975312ns 808031 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45975596ns 808036 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45976051ns 808044 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45976221ns 808047 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45976505ns 808052 1a110850 fd5ff06f jal x0, -44 +45976790ns 808057 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45977074ns 808062 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45977472ns 808069 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45977642ns 808072 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45978097ns 808080 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45978267ns 808083 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45978551ns 808088 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45978835ns 808093 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45979120ns 808098 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45979574ns 808106 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45979745ns 808109 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45980029ns 808114 1a110850 fd5ff06f jal x0, -44 +45980313ns 808119 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45980597ns 808124 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45980995ns 808131 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45981166ns 808134 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45981620ns 808142 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45981791ns 808145 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45982075ns 808150 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45982359ns 808155 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45982643ns 808160 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45983098ns 808168 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45983268ns 808171 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45983553ns 808176 1a110850 fd5ff06f jal x0, -44 +45983837ns 808181 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45984121ns 808186 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45984519ns 808193 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45984689ns 808196 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45985144ns 808204 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45985314ns 808207 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45985599ns 808212 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45985883ns 808217 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45986167ns 808222 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45986621ns 808230 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45986792ns 808233 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45987076ns 808238 1a110850 fd5ff06f jal x0, -44 +45987360ns 808243 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45987644ns 808248 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45988042ns 808255 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45988213ns 808258 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45988667ns 808266 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45988838ns 808269 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45989122ns 808274 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45989406ns 808279 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45989690ns 808284 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45990145ns 808292 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45990316ns 808295 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45990600ns 808300 1a110850 fd5ff06f jal x0, -44 +45990884ns 808305 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45991168ns 808310 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45991566ns 808317 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45991736ns 808320 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45992191ns 808328 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45992362ns 808331 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45992646ns 808336 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45992930ns 808341 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45993214ns 808346 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45993669ns 808354 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45993839ns 808357 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45994123ns 808362 1a110850 fd5ff06f jal x0, -44 +45994407ns 808367 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45994692ns 808372 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45995089ns 808379 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45995260ns 808382 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45995715ns 808390 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45995885ns 808393 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45996169ns 808398 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45996453ns 808403 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45996738ns 808408 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45997192ns 808416 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +45997363ns 808419 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +45997647ns 808424 1a110850 fd5ff06f jal x0, -44 +45997931ns 808429 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45998215ns 808434 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +45998613ns 808441 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +45998784ns 808444 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +45999238ns 808452 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +45999409ns 808455 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +45999693ns 808460 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +45999977ns 808465 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46000261ns 808470 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46000716ns 808478 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46000886ns 808481 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46001170ns 808486 1a110850 fd5ff06f jal x0, -44 +46001455ns 808491 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46001739ns 808496 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46002137ns 808503 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46002307ns 808506 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46002762ns 808514 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46002932ns 808517 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46003216ns 808522 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46003501ns 808527 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46003785ns 808532 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46004239ns 808540 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46004410ns 808543 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46004694ns 808548 1a110850 fd5ff06f jal x0, -44 +46004978ns 808553 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46005262ns 808558 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46005660ns 808565 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46005831ns 808568 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46006285ns 808576 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46006456ns 808579 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46006740ns 808584 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46007024ns 808589 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46007308ns 808594 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46007763ns 808602 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46007933ns 808605 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46008218ns 808610 1a110850 fd5ff06f jal x0, -44 +46008502ns 808615 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46008786ns 808620 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46009184ns 808627 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46009354ns 808630 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46009809ns 808638 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46009979ns 808641 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46010264ns 808646 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46010548ns 808651 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46010832ns 808656 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46011287ns 808664 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46011457ns 808667 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46011741ns 808672 1a110850 fd5ff06f jal x0, -44 +46012025ns 808677 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46012310ns 808682 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46012707ns 808689 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46012878ns 808692 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46013333ns 808700 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46013503ns 808703 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46013787ns 808708 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46014071ns 808713 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46014355ns 808718 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46014810ns 808726 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46014981ns 808729 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46015265ns 808734 1a110850 fd5ff06f jal x0, -44 +46015549ns 808739 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46015833ns 808744 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46016231ns 808751 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46016401ns 808754 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46016856ns 808762 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46017027ns 808765 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46017311ns 808770 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46017595ns 808775 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46017879ns 808780 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46018334ns 808788 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46018504ns 808791 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46018788ns 808796 1a110850 fd5ff06f jal x0, -44 +46019073ns 808801 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46019357ns 808806 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46019755ns 808813 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46019925ns 808816 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46020380ns 808824 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46020550ns 808827 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46020834ns 808832 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46021119ns 808837 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46021403ns 808842 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46021857ns 808850 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46022028ns 808853 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46022312ns 808858 1a110850 fd5ff06f jal x0, -44 +46022596ns 808863 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46022880ns 808868 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46023278ns 808875 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46023449ns 808878 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46023903ns 808886 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46024074ns 808889 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46024358ns 808894 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46024642ns 808899 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46024926ns 808904 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46025381ns 808912 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46025551ns 808915 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46025836ns 808920 1a110850 fd5ff06f jal x0, -44 +46026120ns 808925 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46026404ns 808930 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46026802ns 808937 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46026972ns 808940 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46027427ns 808948 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46027597ns 808951 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46027882ns 808956 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46028166ns 808961 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46028450ns 808966 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46028904ns 808974 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46029075ns 808977 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46029359ns 808982 1a110850 fd5ff06f jal x0, -44 +46029643ns 808987 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46029927ns 808992 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46030325ns 808999 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46030496ns 809002 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46030950ns 809010 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46031121ns 809013 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46031405ns 809018 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46031689ns 809023 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46031973ns 809028 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46032428ns 809036 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46032599ns 809039 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46032883ns 809044 1a110850 fd5ff06f jal x0, -44 +46033167ns 809049 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46033451ns 809054 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46033849ns 809061 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46034019ns 809064 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46034474ns 809072 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46034645ns 809075 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46034929ns 809080 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46035213ns 809085 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46035497ns 809090 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46035952ns 809098 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46036122ns 809101 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46036406ns 809106 1a110850 fd5ff06f jal x0, -44 +46036690ns 809111 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46036975ns 809116 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46037372ns 809123 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46037543ns 809126 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46037998ns 809134 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46038168ns 809137 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46038452ns 809142 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46038736ns 809147 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46039021ns 809152 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46039475ns 809160 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46039646ns 809163 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46039930ns 809168 1a110850 fd5ff06f jal x0, -44 +46040214ns 809173 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46040498ns 809178 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46040896ns 809185 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46041067ns 809188 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46041521ns 809196 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46041692ns 809199 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46041976ns 809204 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46042260ns 809209 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46042544ns 809214 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46042999ns 809222 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46043169ns 809225 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46043453ns 809230 1a110850 fd5ff06f jal x0, -44 +46043738ns 809235 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46044022ns 809240 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46044420ns 809247 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46044590ns 809250 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46045045ns 809258 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46045215ns 809261 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46045499ns 809266 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46045784ns 809271 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46046068ns 809276 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46046522ns 809284 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46046693ns 809287 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46046977ns 809292 1a110850 fd5ff06f jal x0, -44 +46047261ns 809297 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46047545ns 809302 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46047943ns 809309 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46048114ns 809312 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46048568ns 809320 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46048739ns 809323 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46049023ns 809328 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46049307ns 809333 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46049591ns 809338 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46050046ns 809346 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46050216ns 809349 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46050501ns 809354 1a110850 fd5ff06f jal x0, -44 +46050785ns 809359 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46051069ns 809364 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46051467ns 809371 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46051637ns 809374 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46052092ns 809382 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46052262ns 809385 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46052547ns 809390 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46052831ns 809395 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46053115ns 809400 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46053570ns 809408 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46053740ns 809411 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46054024ns 809416 1a110850 fd5ff06f jal x0, -44 +46054308ns 809421 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46054593ns 809426 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46054990ns 809433 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46055161ns 809436 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46055616ns 809444 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46055786ns 809447 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46056070ns 809452 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46056354ns 809457 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46056639ns 809462 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46057093ns 809470 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46057264ns 809473 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46057548ns 809478 1a110850 fd5ff06f jal x0, -44 +46057832ns 809483 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46058116ns 809488 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46058514ns 809495 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46058684ns 809498 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46059139ns 809506 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46059310ns 809509 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46059594ns 809514 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46059878ns 809519 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46060162ns 809524 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46060617ns 809532 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46060787ns 809535 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46061071ns 809540 1a110850 fd5ff06f jal x0, -44 +46061356ns 809545 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46061640ns 809550 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46062038ns 809557 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46062208ns 809560 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46062663ns 809568 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46062833ns 809571 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46063117ns 809576 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46063402ns 809581 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46063686ns 809586 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46064140ns 809594 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46064311ns 809597 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46064595ns 809602 1a110850 fd5ff06f jal x0, -44 +46064879ns 809607 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46065163ns 809612 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46065561ns 809619 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46065732ns 809622 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46066186ns 809630 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46066357ns 809633 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46066641ns 809638 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46066925ns 809643 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46067209ns 809648 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46067664ns 809656 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46067834ns 809659 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46068119ns 809664 1a110850 fd5ff06f jal x0, -44 +46068403ns 809669 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46068687ns 809674 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46069085ns 809681 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46069255ns 809684 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46069710ns 809692 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46069880ns 809695 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46070165ns 809700 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46070449ns 809705 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46070733ns 809710 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46071187ns 809718 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46071358ns 809721 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46071642ns 809726 1a110850 fd5ff06f jal x0, -44 +46071926ns 809731 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46072210ns 809736 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46072608ns 809743 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46072779ns 809746 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46073233ns 809754 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46073404ns 809757 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46073688ns 809762 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46073972ns 809767 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46074256ns 809772 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46074711ns 809780 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46074882ns 809783 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46075166ns 809788 1a110850 fd5ff06f jal x0, -44 +46075450ns 809793 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46075734ns 809798 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46076132ns 809805 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46076302ns 809808 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46076757ns 809816 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46076928ns 809819 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46077212ns 809824 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46077496ns 809829 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46077780ns 809834 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46078235ns 809842 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46078405ns 809845 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46078689ns 809850 1a110850 fd5ff06f jal x0, -44 +46078973ns 809855 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46079258ns 809860 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46079655ns 809867 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46079826ns 809870 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46080281ns 809878 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46080451ns 809881 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46080735ns 809886 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46081019ns 809891 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46081304ns 809896 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46081758ns 809904 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46081929ns 809907 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46082213ns 809912 1a110850 fd5ff06f jal x0, -44 +46082497ns 809917 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46082781ns 809922 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46083179ns 809929 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46083350ns 809932 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46083804ns 809940 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46083975ns 809943 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46084259ns 809948 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46084543ns 809953 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46084827ns 809958 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46085282ns 809966 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46085452ns 809969 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46085736ns 809974 1a110850 fd5ff06f jal x0, -44 +46086021ns 809979 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46086305ns 809984 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46086703ns 809991 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46086873ns 809994 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46087328ns 810002 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46087498ns 810005 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46087782ns 810010 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46088067ns 810015 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46088351ns 810020 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46088805ns 810028 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46088976ns 810031 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46089260ns 810036 1a110850 fd5ff06f jal x0, -44 +46089544ns 810041 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46089828ns 810046 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46090226ns 810053 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46090397ns 810056 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46090851ns 810064 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46091022ns 810067 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46091306ns 810072 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46091590ns 810077 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46091874ns 810082 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46092329ns 810090 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46092499ns 810093 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46092784ns 810098 1a110850 fd5ff06f jal x0, -44 +46093068ns 810103 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46093352ns 810108 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46093750ns 810115 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46093920ns 810118 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46094375ns 810126 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46094545ns 810129 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46094830ns 810134 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46095114ns 810139 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46095398ns 810144 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46095853ns 810152 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46096023ns 810155 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46096307ns 810160 1a110850 fd5ff06f jal x0, -44 +46096591ns 810165 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46096876ns 810170 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46097273ns 810177 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46097444ns 810180 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46097899ns 810188 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46098069ns 810191 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46098353ns 810196 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46098637ns 810201 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46098922ns 810206 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46099376ns 810214 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46099547ns 810217 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46099831ns 810222 1a110850 fd5ff06f jal x0, -44 +46100115ns 810227 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46100399ns 810232 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46100797ns 810239 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46100967ns 810242 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46101422ns 810250 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46101593ns 810253 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46101877ns 810258 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46102161ns 810263 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46102445ns 810268 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46102900ns 810276 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46103070ns 810279 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46103354ns 810284 1a110850 fd5ff06f jal x0, -44 +46103639ns 810289 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46103923ns 810294 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46104321ns 810301 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46104491ns 810304 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46104946ns 810312 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46105116ns 810315 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46105400ns 810320 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46105685ns 810325 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46105969ns 810330 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46106423ns 810338 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46106594ns 810341 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46106878ns 810346 1a110850 fd5ff06f jal x0, -44 +46107162ns 810351 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46107446ns 810356 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46107844ns 810363 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46108015ns 810366 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46108469ns 810374 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46108640ns 810377 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46108924ns 810382 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46109208ns 810387 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46109492ns 810392 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46109947ns 810400 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46110117ns 810403 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46110402ns 810408 1a110850 fd5ff06f jal x0, -44 +46110686ns 810413 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46110970ns 810418 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46111368ns 810425 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46111538ns 810428 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46111993ns 810436 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46112163ns 810439 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46112448ns 810444 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46112732ns 810449 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46113016ns 810454 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46113471ns 810462 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46113641ns 810465 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46113925ns 810470 1a110850 fd5ff06f jal x0, -44 +46114209ns 810475 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46114493ns 810480 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46114891ns 810487 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46115062ns 810490 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46115516ns 810498 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46115687ns 810501 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46115971ns 810506 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46116255ns 810511 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46116539ns 810516 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46116994ns 810524 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46117165ns 810527 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46117449ns 810532 1a110850 fd5ff06f jal x0, -44 +46117733ns 810537 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46118017ns 810542 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46118415ns 810549 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46118585ns 810552 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46119040ns 810560 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46119211ns 810563 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46119495ns 810568 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46119779ns 810573 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46120063ns 810578 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46120518ns 810586 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46120688ns 810589 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46120972ns 810594 1a110850 fd5ff06f jal x0, -44 +46121256ns 810599 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46121541ns 810604 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46121938ns 810611 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46122109ns 810614 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46122564ns 810622 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46122734ns 810625 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46123018ns 810630 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46123302ns 810635 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46123587ns 810640 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46124041ns 810648 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46124212ns 810651 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46124496ns 810656 1a110850 fd5ff06f jal x0, -44 +46124780ns 810661 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46125064ns 810666 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46125462ns 810673 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46125633ns 810676 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46126087ns 810684 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46126258ns 810687 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46126542ns 810692 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46126826ns 810697 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46127110ns 810702 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46127565ns 810710 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46127735ns 810713 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46128019ns 810718 1a110850 fd5ff06f jal x0, -44 +46128304ns 810723 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46128588ns 810728 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46128986ns 810735 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46129156ns 810738 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46129611ns 810746 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46129781ns 810749 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46130065ns 810754 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46130350ns 810759 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46130634ns 810764 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46131088ns 810772 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46131259ns 810775 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46131543ns 810780 1a110850 fd5ff06f jal x0, -44 +46131827ns 810785 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46132111ns 810790 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46132509ns 810797 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46132680ns 810800 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46133134ns 810808 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46133305ns 810811 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46133589ns 810816 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46133873ns 810821 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46134157ns 810826 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46134612ns 810834 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46134783ns 810837 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46135067ns 810842 1a110850 fd5ff06f jal x0, -44 +46135351ns 810847 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46135635ns 810852 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46136033ns 810859 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46136203ns 810862 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46136658ns 810870 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46136828ns 810873 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46137113ns 810878 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46137397ns 810883 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46137681ns 810888 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46138136ns 810896 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46138306ns 810899 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46138590ns 810904 1a110850 fd5ff06f jal x0, -44 +46138874ns 810909 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46139159ns 810914 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46139556ns 810921 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46139727ns 810924 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46140182ns 810932 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46140352ns 810935 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46140636ns 810940 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46140920ns 810945 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46141205ns 810950 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46141659ns 810958 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46141830ns 810961 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46142114ns 810966 1a110850 fd5ff06f jal x0, -44 +46142398ns 810971 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46142682ns 810976 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46143080ns 810983 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46143250ns 810986 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46143705ns 810994 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46143876ns 810997 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46144160ns 811002 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46144444ns 811007 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46144728ns 811012 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46145183ns 811020 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46145353ns 811023 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46145637ns 811028 1a110850 fd5ff06f jal x0, -44 +46145922ns 811033 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46146206ns 811038 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46146604ns 811045 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46146774ns 811048 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46147229ns 811056 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46147399ns 811059 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46147683ns 811064 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46147968ns 811069 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46148252ns 811074 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46148706ns 811082 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46148877ns 811085 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46149161ns 811090 1a110850 fd5ff06f jal x0, -44 +46149445ns 811095 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46149729ns 811100 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46150127ns 811107 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46150298ns 811110 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46150752ns 811118 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46150923ns 811121 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46151207ns 811126 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46151491ns 811131 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46151775ns 811136 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46152230ns 811144 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46152400ns 811147 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46152685ns 811152 1a110850 fd5ff06f jal x0, -44 +46152969ns 811157 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46153253ns 811162 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46153651ns 811169 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46153821ns 811172 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46154276ns 811180 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46154446ns 811183 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46154731ns 811188 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46155015ns 811193 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46155299ns 811198 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46155754ns 811206 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46155924ns 811209 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46156208ns 811214 1a110850 fd5ff06f jal x0, -44 +46156492ns 811219 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46156776ns 811224 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46157174ns 811231 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46157345ns 811234 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46157799ns 811242 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46157970ns 811245 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46158254ns 811250 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46158538ns 811255 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46158822ns 811260 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46159277ns 811268 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46159448ns 811271 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46159732ns 811276 1a110850 fd5ff06f jal x0, -44 +46160016ns 811281 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46160300ns 811286 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46160698ns 811293 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46160868ns 811296 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46161323ns 811304 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46161494ns 811307 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46161778ns 811312 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46162062ns 811317 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46162346ns 811322 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46162801ns 811330 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46162971ns 811333 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46163255ns 811338 1a110850 fd5ff06f jal x0, -44 +46163539ns 811343 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46163824ns 811348 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46164221ns 811355 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46164392ns 811358 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46164847ns 811366 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46165017ns 811369 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46165301ns 811374 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46165585ns 811379 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46165870ns 811384 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46166324ns 811392 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46166495ns 811395 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46166779ns 811400 1a110850 fd5ff06f jal x0, -44 +46167063ns 811405 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46167347ns 811410 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46167745ns 811417 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46167916ns 811420 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46168370ns 811428 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46168541ns 811431 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46168825ns 811436 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46169109ns 811441 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46169393ns 811446 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46169848ns 811454 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46170018ns 811457 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46170303ns 811462 1a110850 fd5ff06f jal x0, -44 +46170587ns 811467 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46170871ns 811472 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46171269ns 811479 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46171439ns 811482 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46171894ns 811490 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46172064ns 811493 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46172348ns 811498 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46172633ns 811503 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46172917ns 811508 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46173371ns 811516 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46173542ns 811519 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46173826ns 811524 1a110850 fd5ff06f jal x0, -44 +46174110ns 811529 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46174394ns 811534 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46174792ns 811541 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46174963ns 811544 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46175417ns 811552 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46175588ns 811555 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46175872ns 811560 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46176156ns 811565 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46176440ns 811570 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46176895ns 811578 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46177066ns 811581 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46177350ns 811586 1a110850 fd5ff06f jal x0, -44 +46177634ns 811591 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46177918ns 811596 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46178316ns 811603 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46178486ns 811606 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46178941ns 811614 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46179111ns 811617 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46179396ns 811622 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46179680ns 811627 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46179964ns 811632 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46180419ns 811640 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46180589ns 811643 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46180873ns 811648 1a110850 fd5ff06f jal x0, -44 +46181157ns 811653 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46181442ns 811658 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46181839ns 811665 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46182010ns 811668 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46182465ns 811676 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46182635ns 811679 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46182919ns 811684 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46183203ns 811689 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46183488ns 811694 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46183942ns 811702 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46184113ns 811705 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46184397ns 811710 1a110850 fd5ff06f jal x0, -44 +46184681ns 811715 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46184965ns 811720 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46185363ns 811727 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46185533ns 811730 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46185988ns 811738 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46186159ns 811741 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46186443ns 811746 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46186727ns 811751 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46187011ns 811756 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46187466ns 811764 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46187636ns 811767 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46187920ns 811772 1a110850 fd5ff06f jal x0, -44 +46188205ns 811777 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46188489ns 811782 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46188887ns 811789 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46189057ns 811792 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46189512ns 811800 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46189682ns 811803 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46189966ns 811808 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46190251ns 811813 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46190535ns 811818 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46190989ns 811826 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46191160ns 811829 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46191444ns 811834 1a110850 fd5ff06f jal x0, -44 +46191728ns 811839 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46192012ns 811844 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46192410ns 811851 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46192581ns 811854 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46193035ns 811862 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46193206ns 811865 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46193490ns 811870 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46193774ns 811875 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46194058ns 811880 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46194513ns 811888 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46194683ns 811891 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46194968ns 811896 1a110850 fd5ff06f jal x0, -44 +46195252ns 811901 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46195536ns 811906 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46195934ns 811913 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46196104ns 811916 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46196559ns 811924 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46196729ns 811927 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46197014ns 811932 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46197298ns 811937 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46197582ns 811942 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46198037ns 811950 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46198207ns 811953 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46198491ns 811958 1a110850 fd5ff06f jal x0, -44 +46198775ns 811963 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46199059ns 811968 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46199457ns 811975 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46199628ns 811978 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46200082ns 811986 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46200253ns 811989 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46200537ns 811994 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46200821ns 811999 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46201105ns 812004 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46201560ns 812012 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46201731ns 812015 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46202015ns 812020 1a110850 fd5ff06f jal x0, -44 +46202299ns 812025 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46202583ns 812030 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46202981ns 812037 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46203151ns 812040 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46203606ns 812048 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46203777ns 812051 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46204061ns 812056 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46204345ns 812061 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46204629ns 812066 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46205084ns 812074 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46205254ns 812077 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46205538ns 812082 1a110850 fd5ff06f jal x0, -44 +46205823ns 812087 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46206107ns 812092 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46206504ns 812099 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46206675ns 812102 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46207130ns 812110 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46207300ns 812113 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46207584ns 812118 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46207868ns 812123 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46208153ns 812128 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46208607ns 812136 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46208778ns 812139 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46209062ns 812144 1a110850 fd5ff06f jal x0, -44 +46209346ns 812149 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46209630ns 812154 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46210028ns 812161 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46210199ns 812164 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46210653ns 812172 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46210824ns 812175 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46211108ns 812180 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46211392ns 812185 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46211676ns 812190 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46212131ns 812198 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46212301ns 812201 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46212586ns 812206 1a110850 fd5ff06f jal x0, -44 +46212870ns 812211 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46213154ns 812216 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46213552ns 812223 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46213722ns 812226 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46214177ns 812234 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46214347ns 812237 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46214631ns 812242 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46214916ns 812247 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46215200ns 812252 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46215654ns 812260 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46215825ns 812263 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46216109ns 812268 1a110850 fd5ff06f jal x0, -44 +46216393ns 812273 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46216677ns 812278 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46217075ns 812285 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46217246ns 812288 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46217700ns 812296 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46217871ns 812299 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46218155ns 812304 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46218439ns 812309 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46218723ns 812314 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46219178ns 812322 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46219349ns 812325 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46219633ns 812330 1a110850 fd5ff06f jal x0, -44 +46219917ns 812335 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46220201ns 812340 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46220599ns 812347 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46220769ns 812350 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46221224ns 812358 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46221394ns 812361 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46221679ns 812366 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46221963ns 812371 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46222247ns 812376 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46222702ns 812384 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46222872ns 812387 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46223156ns 812392 1a110850 fd5ff06f jal x0, -44 +46223440ns 812397 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46223725ns 812402 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46224122ns 812409 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46224293ns 812412 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46224748ns 812420 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46224918ns 812423 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46225202ns 812428 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46225486ns 812433 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46225771ns 812438 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46226225ns 812446 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46226396ns 812449 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46226680ns 812454 1a110850 fd5ff06f jal x0, -44 +46226964ns 812459 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46227248ns 812464 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46227646ns 812471 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46227816ns 812474 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46228271ns 812482 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46228442ns 812485 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46228726ns 812490 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46229010ns 812495 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46229294ns 812500 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46229749ns 812508 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46229919ns 812511 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46230203ns 812516 1a110850 fd5ff06f jal x0, -44 +46230488ns 812521 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46230772ns 812526 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46231170ns 812533 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46231340ns 812536 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46231795ns 812544 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46231965ns 812547 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46232249ns 812552 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46232534ns 812557 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46232818ns 812562 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46233272ns 812570 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46233443ns 812573 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46233727ns 812578 1a110850 fd5ff06f jal x0, -44 +46234011ns 812583 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46234295ns 812588 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46234693ns 812595 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46234864ns 812598 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46235318ns 812606 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46235489ns 812609 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46235773ns 812614 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46236057ns 812619 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46236341ns 812624 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46236796ns 812632 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46236966ns 812635 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46237251ns 812640 1a110850 fd5ff06f jal x0, -44 +46237535ns 812645 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46237819ns 812650 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46238217ns 812657 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46238387ns 812660 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46238842ns 812668 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46239012ns 812671 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46239297ns 812676 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46239581ns 812681 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46239865ns 812686 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46240320ns 812694 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46240490ns 812697 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46240774ns 812702 1a110850 fd5ff06f jal x0, -44 +46241058ns 812707 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46241343ns 812712 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46241740ns 812719 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46241911ns 812722 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46242365ns 812730 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46242536ns 812733 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46242820ns 812738 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46243104ns 812743 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46243388ns 812748 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46243843ns 812756 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46244014ns 812759 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46244298ns 812764 1a110850 fd5ff06f jal x0, -44 +46244582ns 812769 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46244866ns 812774 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46245264ns 812781 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46245434ns 812784 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46245889ns 812792 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46246060ns 812795 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46246344ns 812800 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46246628ns 812805 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46246912ns 812810 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46247367ns 812818 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46247537ns 812821 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46247821ns 812826 1a110850 fd5ff06f jal x0, -44 +46248106ns 812831 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46248390ns 812836 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46248787ns 812843 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46248958ns 812846 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46249413ns 812854 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46249583ns 812857 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46249867ns 812862 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46250151ns 812867 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46250436ns 812872 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46250890ns 812880 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46251061ns 812883 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46251345ns 812888 1a110850 fd5ff06f jal x0, -44 +46251629ns 812893 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46251913ns 812898 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46252311ns 812905 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46252482ns 812908 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46252936ns 812916 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46253107ns 812919 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46253391ns 812924 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46253675ns 812929 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46253959ns 812934 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46254414ns 812942 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46254584ns 812945 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46254869ns 812950 1a110850 fd5ff06f jal x0, -44 +46255153ns 812955 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46255437ns 812960 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46255835ns 812967 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46256005ns 812970 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46256460ns 812978 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46256630ns 812981 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46256914ns 812986 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46257199ns 812991 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46257483ns 812996 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46257937ns 813004 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46258108ns 813007 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46258392ns 813012 1a110850 fd5ff06f jal x0, -44 +46258676ns 813017 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46258960ns 813022 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46259358ns 813029 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46259529ns 813032 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46259983ns 813040 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46260154ns 813043 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46260438ns 813048 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46260722ns 813053 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46261006ns 813058 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46261461ns 813066 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46261632ns 813069 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46261916ns 813074 1a110850 fd5ff06f jal x0, -44 +46262200ns 813079 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46262484ns 813084 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46262882ns 813091 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46263052ns 813094 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46263507ns 813102 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46263677ns 813105 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46263962ns 813110 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46264246ns 813115 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46264530ns 813120 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46264985ns 813128 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46265155ns 813131 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46265439ns 813136 1a110850 fd5ff06f jal x0, -44 +46265723ns 813141 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46266008ns 813146 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46266405ns 813153 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46266576ns 813156 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46267031ns 813164 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46267201ns 813167 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46267485ns 813172 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46267769ns 813177 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46268054ns 813182 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46268508ns 813190 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46268679ns 813193 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46268963ns 813198 1a110850 fd5ff06f jal x0, -44 +46269247ns 813203 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46269531ns 813208 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46269929ns 813215 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46270099ns 813218 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46270554ns 813226 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46270725ns 813229 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46271009ns 813234 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46271293ns 813239 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46271577ns 813244 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46272032ns 813252 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46272202ns 813255 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46272486ns 813260 1a110850 fd5ff06f jal x0, -44 +46272771ns 813265 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46273055ns 813270 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46273453ns 813277 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46273623ns 813280 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46274078ns 813288 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46274248ns 813291 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46274532ns 813296 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46274817ns 813301 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46275101ns 813306 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46275555ns 813314 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46275726ns 813317 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46276010ns 813322 1a110850 fd5ff06f jal x0, -44 +46276294ns 813327 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46276578ns 813332 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46276976ns 813339 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46277147ns 813342 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46277601ns 813350 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46277772ns 813353 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46278056ns 813358 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46278340ns 813363 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46278624ns 813368 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46279079ns 813376 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46279249ns 813379 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46279534ns 813384 1a110850 fd5ff06f jal x0, -44 +46279818ns 813389 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46280102ns 813394 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46280500ns 813401 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46280670ns 813404 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46281125ns 813412 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46281295ns 813415 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46281580ns 813420 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46281864ns 813425 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46282148ns 813430 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46282603ns 813438 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46282773ns 813441 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46283057ns 813446 1a110850 fd5ff06f jal x0, -44 +46283341ns 813451 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46283626ns 813456 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46284023ns 813463 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46284194ns 813466 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46284648ns 813474 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46284819ns 813477 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46285103ns 813482 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46285387ns 813487 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46285671ns 813492 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46286126ns 813500 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46286297ns 813503 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46286581ns 813508 1a110850 fd5ff06f jal x0, -44 +46286865ns 813513 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46287149ns 813518 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46287547ns 813525 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46287717ns 813528 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46288172ns 813536 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46288343ns 813539 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46288627ns 813544 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46288911ns 813549 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46289195ns 813554 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46289650ns 813562 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46289820ns 813565 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46290104ns 813570 1a110850 fd5ff06f jal x0, -44 +46290389ns 813575 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46290673ns 813580 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46291071ns 813587 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46291241ns 813590 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46291696ns 813598 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46291866ns 813601 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46292150ns 813606 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46292434ns 813611 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46292719ns 813616 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46293173ns 813624 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46293344ns 813627 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46293628ns 813632 1a110850 fd5ff06f jal x0, -44 +46293912ns 813637 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46294196ns 813642 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46294594ns 813649 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46294765ns 813652 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46295219ns 813660 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46295390ns 813663 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46295674ns 813668 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46295958ns 813673 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46296242ns 813678 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46296697ns 813686 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46296867ns 813689 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46297152ns 813694 1a110850 fd5ff06f jal x0, -44 +46297436ns 813699 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46297720ns 813704 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46298118ns 813711 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46298288ns 813714 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46298743ns 813722 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46298913ns 813725 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46299197ns 813730 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46299482ns 813735 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46299766ns 813740 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46300220ns 813748 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46300391ns 813751 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46300675ns 813756 1a110850 fd5ff06f jal x0, -44 +46300959ns 813761 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46301243ns 813766 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46301641ns 813773 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46301812ns 813776 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46302266ns 813784 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46302437ns 813787 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46302721ns 813792 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46303005ns 813797 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46303289ns 813802 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46303744ns 813810 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46303915ns 813813 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46304199ns 813818 1a110850 fd5ff06f jal x0, -44 +46304483ns 813823 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46304767ns 813828 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46305165ns 813835 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46305335ns 813838 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46305790ns 813846 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46305960ns 813849 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46306245ns 813854 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46306529ns 813859 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46306813ns 813864 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46307268ns 813872 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46307438ns 813875 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46307722ns 813880 1a110850 fd5ff06f jal x0, -44 +46308006ns 813885 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46308291ns 813890 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46308688ns 813897 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46308859ns 813900 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46309314ns 813908 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46309484ns 813911 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46309768ns 813916 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46310052ns 813921 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46310337ns 813926 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46310791ns 813934 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46310962ns 813937 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46311246ns 813942 1a110850 fd5ff06f jal x0, -44 +46311530ns 813947 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46311814ns 813952 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46312212ns 813959 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46312383ns 813962 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46312837ns 813970 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46313008ns 813973 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46313292ns 813978 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46313576ns 813983 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46313860ns 813988 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46314315ns 813996 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46314485ns 813999 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46314769ns 814004 1a110850 fd5ff06f jal x0, -44 +46315054ns 814009 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46315338ns 814014 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46315736ns 814021 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46315906ns 814024 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46316361ns 814032 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46316531ns 814035 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46316815ns 814040 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46317100ns 814045 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46317384ns 814050 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46317838ns 814058 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46318009ns 814061 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46318293ns 814066 1a110850 fd5ff06f jal x0, -44 +46318577ns 814071 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46318861ns 814076 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46319259ns 814083 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46319430ns 814086 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46319884ns 814094 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46320055ns 814097 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46320339ns 814102 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46320623ns 814107 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46320907ns 814112 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46321362ns 814120 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46321532ns 814123 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46321817ns 814128 1a110850 fd5ff06f jal x0, -44 +46322101ns 814133 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46322385ns 814138 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46322783ns 814145 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46322953ns 814148 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46323408ns 814156 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46323578ns 814159 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46323863ns 814164 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46324147ns 814169 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46324431ns 814174 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46324886ns 814182 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46325056ns 814185 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46325340ns 814190 1a110850 fd5ff06f jal x0, -44 +46325624ns 814195 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46325909ns 814200 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46326306ns 814207 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46326477ns 814210 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46326931ns 814218 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46327102ns 814221 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46327386ns 814226 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46327670ns 814231 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46327954ns 814236 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46328409ns 814244 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46328580ns 814247 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46328864ns 814252 1a110850 fd5ff06f jal x0, -44 +46329148ns 814257 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46329432ns 814262 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46329830ns 814269 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46330000ns 814272 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46330455ns 814280 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46330626ns 814283 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46330910ns 814288 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46331194ns 814293 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46331478ns 814298 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46331933ns 814306 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46332103ns 814309 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46332387ns 814314 1a110850 fd5ff06f jal x0, -44 +46332672ns 814319 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46332956ns 814324 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46333354ns 814331 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46333524ns 814334 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46333979ns 814342 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46334149ns 814345 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46334433ns 814350 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46334717ns 814355 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46335002ns 814360 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46335456ns 814368 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46335627ns 814371 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46335911ns 814376 1a110850 fd5ff06f jal x0, -44 +46336195ns 814381 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46336479ns 814386 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46336877ns 814393 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46337048ns 814396 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46337502ns 814404 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46337673ns 814407 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46337957ns 814412 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46338241ns 814417 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46338525ns 814422 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46338980ns 814430 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46339150ns 814433 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46339435ns 814438 1a110850 fd5ff06f jal x0, -44 +46339719ns 814443 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46340003ns 814448 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46340401ns 814455 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46340571ns 814458 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46341026ns 814466 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46341196ns 814469 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46341480ns 814474 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46341765ns 814479 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46342049ns 814484 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46342503ns 814492 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46342674ns 814495 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46342958ns 814500 1a110850 fd5ff06f jal x0, -44 +46343242ns 814505 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46343526ns 814510 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46343924ns 814517 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46344095ns 814520 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46344549ns 814528 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46344720ns 814531 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46345004ns 814536 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46345288ns 814541 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46345572ns 814546 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46346027ns 814554 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46346198ns 814557 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46346482ns 814562 1a110850 fd5ff06f jal x0, -44 +46346766ns 814567 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46347050ns 814572 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46347448ns 814579 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46347618ns 814582 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46348073ns 814590 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46348243ns 814593 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46348528ns 814598 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46348812ns 814603 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46349096ns 814608 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46349551ns 814616 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46349721ns 814619 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46350005ns 814624 1a110850 fd5ff06f jal x0, -44 +46350289ns 814629 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46350574ns 814634 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46350971ns 814641 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46351142ns 814644 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46351597ns 814652 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46351767ns 814655 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46352051ns 814660 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46352335ns 814665 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46352620ns 814670 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46353074ns 814678 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46353245ns 814681 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46353529ns 814686 1a110850 fd5ff06f jal x0, -44 +46353813ns 814691 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46354097ns 814696 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46354495ns 814703 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46354666ns 814706 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46355120ns 814714 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46355291ns 814717 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46355575ns 814722 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46355859ns 814727 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46356143ns 814732 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46356598ns 814740 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46356768ns 814743 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46357052ns 814748 1a110850 fd5ff06f jal x0, -44 +46357337ns 814753 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46357621ns 814758 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46358019ns 814765 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46358189ns 814768 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46358644ns 814776 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46358814ns 814779 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46359098ns 814784 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46359383ns 814789 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46359667ns 814794 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46360121ns 814802 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46360292ns 814805 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46360576ns 814810 1a110850 fd5ff06f jal x0, -44 +46360860ns 814815 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46361144ns 814820 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46361542ns 814827 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46361713ns 814830 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46362167ns 814838 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46362338ns 814841 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46362622ns 814846 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46362906ns 814851 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46363190ns 814856 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46363645ns 814864 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46363815ns 814867 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46364100ns 814872 1a110850 fd5ff06f jal x0, -44 +46364384ns 814877 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46364668ns 814882 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46365066ns 814889 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46365236ns 814892 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46365691ns 814900 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46365861ns 814903 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46366146ns 814908 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46366430ns 814913 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46366714ns 814918 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46367169ns 814926 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46367339ns 814929 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46367623ns 814934 1a110850 fd5ff06f jal x0, -44 +46367907ns 814939 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46368192ns 814944 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46368589ns 814951 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46368760ns 814954 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46369215ns 814962 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46369385ns 814965 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46369669ns 814970 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46369953ns 814975 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46370237ns 814980 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46370692ns 814988 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46370863ns 814991 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46371147ns 814996 1a110850 fd5ff06f jal x0, -44 +46371431ns 815001 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46371715ns 815006 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46372113ns 815013 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46372283ns 815016 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46372738ns 815024 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46372909ns 815027 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46373193ns 815032 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46373477ns 815037 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46373761ns 815042 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46374216ns 815050 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46374386ns 815053 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46374670ns 815058 1a110850 fd5ff06f jal x0, -44 +46374955ns 815063 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46375239ns 815068 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46375637ns 815075 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46375807ns 815078 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46376262ns 815086 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46376432ns 815089 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46376716ns 815094 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46377000ns 815099 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46377285ns 815104 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46377739ns 815112 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46377910ns 815115 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46378194ns 815120 1a110850 fd5ff06f jal x0, -44 +46378478ns 815125 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46378762ns 815130 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46379160ns 815137 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46379331ns 815140 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46379785ns 815148 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46379956ns 815151 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46380240ns 815156 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46380524ns 815161 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46380808ns 815166 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46381263ns 815174 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46381433ns 815177 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46381718ns 815182 1a110850 fd5ff06f jal x0, -44 +46382002ns 815187 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46382286ns 815192 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46382684ns 815199 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46382854ns 815202 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46383309ns 815210 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46383479ns 815213 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46383763ns 815218 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46384048ns 815223 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46384332ns 815228 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46384786ns 815236 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46384957ns 815239 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46385241ns 815244 1a110850 fd5ff06f jal x0, -44 +46385525ns 815249 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46385809ns 815254 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46386207ns 815261 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46386378ns 815264 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46386832ns 815272 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46387003ns 815275 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46387287ns 815280 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46387571ns 815285 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46387855ns 815290 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46388310ns 815298 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46388481ns 815301 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46388765ns 815306 1a110850 fd5ff06f jal x0, -44 +46389049ns 815311 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46389333ns 815316 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46389731ns 815323 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46389901ns 815326 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46390356ns 815334 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46390527ns 815337 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46390811ns 815342 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46391095ns 815347 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46391379ns 815352 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46391834ns 815360 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46392004ns 815363 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46392288ns 815368 1a110850 fd5ff06f jal x0, -44 +46392572ns 815373 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46392857ns 815378 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46393254ns 815385 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46393425ns 815388 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46393880ns 815396 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46394050ns 815399 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46394334ns 815404 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46394618ns 815409 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46394903ns 815414 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46395357ns 815422 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46395528ns 815425 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46395812ns 815430 1a110850 fd5ff06f jal x0, -44 +46396096ns 815435 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46396380ns 815440 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46396778ns 815447 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46396949ns 815450 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46397403ns 815458 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46397574ns 815461 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46397858ns 815466 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46398142ns 815471 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46398426ns 815476 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46398881ns 815484 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46399051ns 815487 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46399335ns 815492 1a110850 fd5ff06f jal x0, -44 +46399620ns 815497 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46399904ns 815502 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46400302ns 815509 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46400472ns 815512 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46400927ns 815520 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46401097ns 815523 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46401381ns 815528 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46401666ns 815533 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46401950ns 815538 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46402404ns 815546 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46402575ns 815549 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46402859ns 815554 1a110850 fd5ff06f jal x0, -44 +46403143ns 815559 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46403427ns 815564 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46403825ns 815571 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46403996ns 815574 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46404450ns 815582 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46404621ns 815585 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46404905ns 815590 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46405189ns 815595 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46405473ns 815600 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46405928ns 815608 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46406098ns 815611 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46406383ns 815616 1a110850 fd5ff06f jal x0, -44 +46406667ns 815621 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46406951ns 815626 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46407349ns 815633 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46407519ns 815636 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46407974ns 815644 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46408144ns 815647 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46408429ns 815652 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46408713ns 815657 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46408997ns 815662 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46409452ns 815670 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46409622ns 815673 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46409906ns 815678 1a110850 fd5ff06f jal x0, -44 +46410190ns 815683 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46410475ns 815688 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46410872ns 815695 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46411043ns 815698 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46411498ns 815706 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46411668ns 815709 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46411952ns 815714 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46412236ns 815719 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46412520ns 815724 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46412975ns 815732 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46413146ns 815735 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46413430ns 815740 1a110850 fd5ff06f jal x0, -44 +46413714ns 815745 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46413998ns 815750 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46414396ns 815757 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46414566ns 815760 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46415021ns 815768 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46415192ns 815771 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46415476ns 815776 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46415760ns 815781 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46416044ns 815786 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46416499ns 815794 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46416669ns 815797 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46416953ns 815802 1a110850 fd5ff06f jal x0, -44 +46417238ns 815807 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46417522ns 815812 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46417920ns 815819 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46418090ns 815822 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46418545ns 815830 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46418715ns 815833 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46418999ns 815838 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46419283ns 815843 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46419568ns 815848 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46420022ns 815856 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46420193ns 815859 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46420477ns 815864 1a110850 fd5ff06f jal x0, -44 +46420761ns 815869 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46421045ns 815874 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46421443ns 815881 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46421614ns 815884 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46422068ns 815892 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46422239ns 815895 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46422523ns 815900 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46422807ns 815905 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46423091ns 815910 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46423546ns 815918 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46423716ns 815921 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46424001ns 815926 1a110850 fd5ff06f jal x0, -44 +46424285ns 815931 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46424569ns 815936 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46424967ns 815943 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46425137ns 815946 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46425592ns 815954 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46425762ns 815957 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46426047ns 815962 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46426331ns 815967 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46426615ns 815972 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46427069ns 815980 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46427240ns 815983 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46427524ns 815988 1a110850 fd5ff06f jal x0, -44 +46427808ns 815993 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46428092ns 815998 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46428490ns 816005 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46428661ns 816008 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46429115ns 816016 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46429286ns 816019 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46429570ns 816024 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46429854ns 816029 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46430138ns 816034 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46430593ns 816042 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46430764ns 816045 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46431048ns 816050 1a110850 fd5ff06f jal x0, -44 +46431332ns 816055 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46431616ns 816060 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46432014ns 816067 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46432184ns 816070 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46432639ns 816078 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46432810ns 816081 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46433094ns 816086 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46433378ns 816091 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46433662ns 816096 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46434117ns 816104 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46434287ns 816107 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46434571ns 816112 1a110850 fd5ff06f jal x0, -44 +46434855ns 816117 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46435140ns 816122 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46435537ns 816129 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46435708ns 816132 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46436163ns 816140 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46436333ns 816143 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46436617ns 816148 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46436901ns 816153 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46437186ns 816158 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46437640ns 816166 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46437811ns 816169 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46438095ns 816174 1a110850 fd5ff06f jal x0, -44 +46438379ns 816179 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46438663ns 816184 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46439061ns 816191 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46439232ns 816194 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46439686ns 816202 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46439857ns 816205 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46440141ns 816210 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46440425ns 816215 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46440709ns 816220 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46441164ns 816228 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46441334ns 816231 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46441618ns 816236 1a110850 fd5ff06f jal x0, -44 +46441903ns 816241 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46442187ns 816246 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46442585ns 816253 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46442755ns 816256 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46443210ns 816264 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46443380ns 816267 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46443664ns 816272 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46443949ns 816277 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46444233ns 816282 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46444687ns 816290 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46444858ns 816293 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46445142ns 816298 1a110850 fd5ff06f jal x0, -44 +46445426ns 816303 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46445710ns 816308 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46446108ns 816315 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46446279ns 816318 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46446733ns 816326 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46446904ns 816329 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46447188ns 816334 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46447472ns 816339 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46447756ns 816344 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46448211ns 816352 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46448381ns 816355 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46448666ns 816360 1a110850 fd5ff06f jal x0, -44 +46448950ns 816365 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46449234ns 816370 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46449632ns 816377 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46449802ns 816380 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46450257ns 816388 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46450427ns 816391 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46450712ns 816396 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46450996ns 816401 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46451280ns 816406 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46451735ns 816414 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46451905ns 816417 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46452189ns 816422 1a110850 fd5ff06f jal x0, -44 +46452473ns 816427 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46452758ns 816432 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46453155ns 816439 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46453326ns 816442 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46453781ns 816450 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46453951ns 816453 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46454235ns 816458 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46454519ns 816463 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46454803ns 816468 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46455258ns 816476 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46455429ns 816479 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46455713ns 816484 1a110850 fd5ff06f jal x0, -44 +46455997ns 816489 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46456281ns 816494 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46456679ns 816501 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46456849ns 816504 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46457304ns 816512 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46457475ns 816515 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46457759ns 816520 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46458043ns 816525 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46458327ns 816530 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46458782ns 816538 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46458952ns 816541 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46459236ns 816546 1a110850 fd5ff06f jal x0, -44 +46459521ns 816551 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46459805ns 816556 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46460203ns 816563 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46460373ns 816566 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46460828ns 816574 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46460998ns 816577 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46461282ns 816582 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46461567ns 816587 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46461851ns 816592 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46462305ns 816600 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46462476ns 816603 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46462760ns 816608 1a110850 fd5ff06f jal x0, -44 +46463044ns 816613 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46463328ns 816618 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46463726ns 816625 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46463897ns 816628 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46464351ns 816636 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46464522ns 816639 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46464806ns 816644 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46465090ns 816649 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46465374ns 816654 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46465829ns 816662 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46465999ns 816665 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46466284ns 816670 1a110850 fd5ff06f jal x0, -44 +46466568ns 816675 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46466852ns 816680 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46467250ns 816687 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46467420ns 816690 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46467875ns 816698 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46468045ns 816701 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46468330ns 816706 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46468614ns 816711 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46468898ns 816716 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46469352ns 816724 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46469523ns 816727 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46469807ns 816732 1a110850 fd5ff06f jal x0, -44 +46470091ns 816737 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46470375ns 816742 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46470773ns 816749 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46470944ns 816752 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46471398ns 816760 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46471569ns 816763 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46471853ns 816768 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46472137ns 816773 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46472421ns 816778 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46472876ns 816786 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46473047ns 816789 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46473331ns 816794 1a110850 fd5ff06f jal x0, -44 +46473615ns 816799 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46473899ns 816804 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46474297ns 816811 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46474467ns 816814 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46474922ns 816822 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46475093ns 816825 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46475377ns 816830 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46475661ns 816835 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46475945ns 816840 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46476400ns 816848 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46476570ns 816851 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46476854ns 816856 1a110850 fd5ff06f jal x0, -44 +46477138ns 816861 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46477423ns 816866 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46477820ns 816873 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46477991ns 816876 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46478446ns 816884 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46478616ns 816887 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46478900ns 816892 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46479184ns 816897 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46479469ns 816902 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46479923ns 816910 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46480094ns 816913 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46480378ns 816918 1a110850 fd5ff06f jal x0, -44 +46480662ns 816923 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46480946ns 816928 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46481344ns 816935 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46481515ns 816938 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46481969ns 816946 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46482140ns 816949 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46482424ns 816954 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46482708ns 816959 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46482992ns 816964 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46483447ns 816972 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46483617ns 816975 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46483901ns 816980 1a110850 fd5ff06f jal x0, -44 +46484186ns 816985 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46484470ns 816990 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46484868ns 816997 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46485038ns 817000 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46485493ns 817008 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46485663ns 817011 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46485947ns 817016 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46486232ns 817021 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46486516ns 817026 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46486970ns 817034 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46487141ns 817037 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46487425ns 817042 1a110850 fd5ff06f jal x0, -44 +46487709ns 817047 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46487993ns 817052 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46488391ns 817059 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46488562ns 817062 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46489016ns 817070 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46489187ns 817073 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46489471ns 817078 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46489755ns 817083 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46490039ns 817088 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46490494ns 817096 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46490664ns 817099 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46490949ns 817104 1a110850 fd5ff06f jal x0, -44 +46491233ns 817109 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46491517ns 817114 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46491915ns 817121 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46492085ns 817124 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46492540ns 817132 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46492710ns 817135 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46492995ns 817140 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46493279ns 817145 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46493563ns 817150 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46494018ns 817158 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46494188ns 817161 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46494472ns 817166 1a110850 fd5ff06f jal x0, -44 +46494756ns 817171 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46495041ns 817176 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46495438ns 817183 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46495609ns 817186 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46496064ns 817194 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46496234ns 817197 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46496518ns 817202 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46496802ns 817207 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46497087ns 817212 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46497541ns 817220 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46497712ns 817223 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46497996ns 817228 1a110850 fd5ff06f jal x0, -44 +46498280ns 817233 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46498564ns 817238 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46498962ns 817245 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46499132ns 817248 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46499587ns 817256 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46499758ns 817259 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46500042ns 817264 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46500326ns 817269 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46500610ns 817274 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46501065ns 817282 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46501235ns 817285 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46501519ns 817290 1a110850 fd5ff06f jal x0, -44 +46501804ns 817295 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46502088ns 817300 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46502486ns 817307 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46502656ns 817310 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46503111ns 817318 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46503281ns 817321 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46503565ns 817326 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46503850ns 817331 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46504134ns 817336 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46504588ns 817344 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46504759ns 817347 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46505043ns 817352 1a110850 fd5ff06f jal x0, -44 +46505327ns 817357 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46505611ns 817362 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46506009ns 817369 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46506180ns 817372 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46506634ns 817380 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46506805ns 817383 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46507089ns 817388 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46507373ns 817393 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46507657ns 817398 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46508112ns 817406 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46508282ns 817409 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46508567ns 817414 1a110850 fd5ff06f jal x0, -44 +46508851ns 817419 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46509135ns 817424 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46509533ns 817431 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46509703ns 817434 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46510158ns 817442 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46510328ns 817445 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46510613ns 817450 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46510897ns 817455 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46511181ns 817460 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46511635ns 817468 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46511806ns 817471 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46512090ns 817476 1a110850 fd5ff06f jal x0, -44 +46512374ns 817481 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46512658ns 817486 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46513056ns 817493 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46513227ns 817496 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46513681ns 817504 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46513852ns 817507 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46514136ns 817512 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46514420ns 817517 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46514704ns 817522 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46515159ns 817530 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46515330ns 817533 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46515614ns 817538 1a110850 fd5ff06f jal x0, -44 +46515898ns 817543 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46516182ns 817548 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46516580ns 817555 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46516750ns 817558 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46517205ns 817566 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46517376ns 817569 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46517660ns 817574 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46517944ns 817579 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46518228ns 817584 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46518683ns 817592 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46518853ns 817595 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46519137ns 817600 1a110850 fd5ff06f jal x0, -44 +46519421ns 817605 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46519706ns 817610 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46520103ns 817617 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46520274ns 817620 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46520729ns 817628 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46520899ns 817631 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46521183ns 817636 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46521467ns 817641 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46521752ns 817646 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46522206ns 817654 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46522377ns 817657 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46522661ns 817662 1a110850 fd5ff06f jal x0, -44 +46522945ns 817667 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46523229ns 817672 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46523627ns 817679 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46523798ns 817682 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46524252ns 817690 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46524423ns 817693 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46524707ns 817698 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46524991ns 817703 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46525275ns 817708 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46525730ns 817716 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46525900ns 817719 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46526184ns 817724 1a110850 fd5ff06f jal x0, -44 +46526469ns 817729 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46526753ns 817734 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46527151ns 817741 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46527321ns 817744 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46527776ns 817752 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46527946ns 817755 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46528230ns 817760 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46528515ns 817765 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46528799ns 817770 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46529253ns 817778 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46529424ns 817781 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46529708ns 817786 1a110850 fd5ff06f jal x0, -44 +46529992ns 817791 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46530276ns 817796 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46530674ns 817803 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46530845ns 817806 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46531299ns 817814 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46531470ns 817817 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46531754ns 817822 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46532038ns 817827 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46532322ns 817832 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46532777ns 817840 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46532947ns 817843 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46533232ns 817848 1a110850 fd5ff06f jal x0, -44 +46533516ns 817853 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46533800ns 817858 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46534198ns 817865 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46534368ns 817868 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46534823ns 817876 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46534993ns 817879 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46535278ns 817884 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46535562ns 817889 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46535846ns 817894 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46536301ns 817902 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46536471ns 817905 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46536755ns 817910 1a110850 fd5ff06f jal x0, -44 +46537039ns 817915 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46537324ns 817920 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46537721ns 817927 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46537892ns 817930 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46538347ns 817938 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46538517ns 817941 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46538801ns 817946 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46539085ns 817951 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46539370ns 817956 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46539824ns 817964 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46539995ns 817967 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46540279ns 817972 1a110850 fd5ff06f jal x0, -44 +46540563ns 817977 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46540847ns 817982 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46541245ns 817989 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46541415ns 817992 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46541870ns 818000 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46542041ns 818003 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46542325ns 818008 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46542609ns 818013 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46542893ns 818018 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46543348ns 818026 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46543518ns 818029 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46543802ns 818034 1a110850 fd5ff06f jal x0, -44 +46544087ns 818039 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46544371ns 818044 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46544769ns 818051 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46544939ns 818054 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46545394ns 818062 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46545564ns 818065 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46545848ns 818070 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46546133ns 818075 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46546417ns 818080 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46546871ns 818088 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46547042ns 818091 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46547326ns 818096 1a110850 fd5ff06f jal x0, -44 +46547610ns 818101 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46547894ns 818106 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46548292ns 818113 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46548463ns 818116 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46548917ns 818124 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46549088ns 818127 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46549372ns 818132 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46549656ns 818137 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46549940ns 818142 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46550395ns 818150 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46550565ns 818153 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46550850ns 818158 1a110850 fd5ff06f jal x0, -44 +46551134ns 818163 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46551418ns 818168 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46551816ns 818175 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46551986ns 818178 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46552441ns 818186 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46552611ns 818189 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46552896ns 818194 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46553180ns 818199 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46553464ns 818204 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46553919ns 818212 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46554089ns 818215 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46554373ns 818220 1a110850 fd5ff06f jal x0, -44 +46554657ns 818225 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46554941ns 818230 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46555339ns 818237 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46555510ns 818240 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46555964ns 818248 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46556135ns 818251 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46556419ns 818256 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46556703ns 818261 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46556987ns 818266 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46557442ns 818274 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46557613ns 818277 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46557897ns 818282 1a110850 fd5ff06f jal x0, -44 +46558181ns 818287 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46558465ns 818292 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46558863ns 818299 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46559033ns 818302 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46559488ns 818310 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46559659ns 818313 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46559943ns 818318 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46560227ns 818323 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46560511ns 818328 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46560966ns 818336 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46561136ns 818339 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46561420ns 818344 1a110850 fd5ff06f jal x0, -44 +46561704ns 818349 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46561989ns 818354 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46562386ns 818361 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46562557ns 818364 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46563012ns 818372 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46563182ns 818375 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46563466ns 818380 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46563750ns 818385 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46564035ns 818390 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46564489ns 818398 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46564660ns 818401 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46564944ns 818406 1a110850 fd5ff06f jal x0, -44 +46565228ns 818411 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46565512ns 818416 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46565910ns 818423 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46566081ns 818426 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46566535ns 818434 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46566706ns 818437 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46566990ns 818442 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46567274ns 818447 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46567558ns 818452 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46568013ns 818460 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46568183ns 818463 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46568467ns 818468 1a110850 fd5ff06f jal x0, -44 +46568752ns 818473 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46569036ns 818478 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46569434ns 818485 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46569604ns 818488 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46570059ns 818496 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46570229ns 818499 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46570513ns 818504 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46570798ns 818509 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46571082ns 818514 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46571536ns 818522 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46571707ns 818525 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46571991ns 818530 1a110850 fd5ff06f jal x0, -44 +46572275ns 818535 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46572559ns 818540 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46572957ns 818547 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46573128ns 818550 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46573582ns 818558 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46573753ns 818561 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46574037ns 818566 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46574321ns 818571 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46574605ns 818576 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46575060ns 818584 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46575231ns 818587 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46575515ns 818592 1a110850 fd5ff06f jal x0, -44 +46575799ns 818597 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46576083ns 818602 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46576481ns 818609 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46576651ns 818612 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46577106ns 818620 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46577276ns 818623 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46577561ns 818628 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46577845ns 818633 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46578129ns 818638 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46578584ns 818646 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46578754ns 818649 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46579038ns 818654 1a110850 fd5ff06f jal x0, -44 +46579322ns 818659 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46579607ns 818664 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46580004ns 818671 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46580175ns 818674 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46580630ns 818682 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46580800ns 818685 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46581084ns 818690 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46581368ns 818695 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46581653ns 818700 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46582107ns 818708 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46582278ns 818711 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46582562ns 818716 1a110850 fd5ff06f jal x0, -44 +46582846ns 818721 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46583130ns 818726 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46583528ns 818733 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46583698ns 818736 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46584153ns 818744 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46584324ns 818747 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46584608ns 818752 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46584892ns 818757 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46585176ns 818762 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46585631ns 818770 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46585801ns 818773 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46586085ns 818778 1a110850 fd5ff06f jal x0, -44 +46586370ns 818783 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46586654ns 818788 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46587052ns 818795 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46587222ns 818798 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46587677ns 818806 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46587847ns 818809 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46588131ns 818814 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46588416ns 818819 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46588700ns 818824 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46589154ns 818832 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46589325ns 818835 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46589609ns 818840 1a110850 fd5ff06f jal x0, -44 +46589893ns 818845 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46590177ns 818850 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46590575ns 818857 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46590746ns 818860 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46591200ns 818868 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46591371ns 818871 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46591655ns 818876 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46591939ns 818881 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46592223ns 818886 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46592678ns 818894 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46592848ns 818897 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46593133ns 818902 1a110850 fd5ff06f jal x0, -44 +46593417ns 818907 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46593701ns 818912 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46594099ns 818919 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46594269ns 818922 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46594724ns 818930 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46594894ns 818933 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46595179ns 818938 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46595463ns 818943 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46595747ns 818948 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46596202ns 818956 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46596372ns 818959 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46596656ns 818964 1a110850 fd5ff06f jal x0, -44 +46596940ns 818969 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46597224ns 818974 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46597622ns 818981 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46597793ns 818984 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46598247ns 818992 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46598418ns 818995 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46598702ns 819000 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46598986ns 819005 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46599270ns 819010 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46599725ns 819018 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46599896ns 819021 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46600180ns 819026 1a110850 fd5ff06f jal x0, -44 +46600464ns 819031 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46600748ns 819036 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46601146ns 819043 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46601316ns 819046 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46601771ns 819054 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46601942ns 819057 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46602226ns 819062 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46602510ns 819067 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46602794ns 819072 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46603249ns 819080 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46603419ns 819083 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46603703ns 819088 1a110850 fd5ff06f jal x0, -44 +46603987ns 819093 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46604272ns 819098 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46604669ns 819105 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46604840ns 819108 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46605295ns 819116 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46605465ns 819119 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46605749ns 819124 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46606033ns 819129 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46606318ns 819134 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46606772ns 819142 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46606943ns 819145 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46607227ns 819150 1a110850 fd5ff06f jal x0, -44 +46607511ns 819155 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46607795ns 819160 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46608193ns 819167 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46608364ns 819170 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46608818ns 819178 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46608989ns 819181 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46609273ns 819186 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46609557ns 819191 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46609841ns 819196 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46610296ns 819204 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46610466ns 819207 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46610751ns 819212 1a110850 fd5ff06f jal x0, -44 +46611035ns 819217 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46611319ns 819222 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46611717ns 819229 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46611887ns 819232 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46612342ns 819240 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46612512ns 819243 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46612796ns 819248 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46613081ns 819253 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46613365ns 819258 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46613819ns 819266 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46613990ns 819269 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46614274ns 819274 1a110850 fd5ff06f jal x0, -44 +46614558ns 819279 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46614842ns 819284 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46615240ns 819291 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46615411ns 819294 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46615865ns 819302 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46616036ns 819305 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46616320ns 819310 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46616604ns 819315 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46616888ns 819320 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46617343ns 819328 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46617514ns 819331 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46617798ns 819336 1a110850 fd5ff06f jal x0, -44 +46618082ns 819341 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46618366ns 819346 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46618764ns 819353 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46618934ns 819356 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46619389ns 819364 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46619559ns 819367 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46619844ns 819372 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46620128ns 819377 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46620412ns 819382 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46620867ns 819390 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46621037ns 819393 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46621321ns 819398 1a110850 fd5ff06f jal x0, -44 +46621605ns 819403 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46621890ns 819408 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46622287ns 819415 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46622458ns 819418 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46622913ns 819426 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46623083ns 819429 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46623367ns 819434 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46623651ns 819439 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46623936ns 819444 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46624390ns 819452 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46624561ns 819455 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46624845ns 819460 1a110850 fd5ff06f jal x0, -44 +46625129ns 819465 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46625413ns 819470 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46625811ns 819477 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46625981ns 819480 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46626436ns 819488 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46626607ns 819491 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46626891ns 819496 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46627175ns 819501 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46627459ns 819506 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46627914ns 819514 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46628084ns 819517 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46628368ns 819522 1a110850 fd5ff06f jal x0, -44 +46628653ns 819527 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46628937ns 819532 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46629335ns 819539 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46629505ns 819542 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46629960ns 819550 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46630130ns 819553 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46630414ns 819558 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46630699ns 819563 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46630983ns 819568 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46631437ns 819576 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46631608ns 819579 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46631892ns 819584 1a110850 fd5ff06f jal x0, -44 +46632176ns 819589 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46632460ns 819594 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46632858ns 819601 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46633029ns 819604 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46633483ns 819612 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46633654ns 819615 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46633938ns 819620 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46634222ns 819625 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46634506ns 819630 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46634961ns 819638 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46635131ns 819641 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46635416ns 819646 1a110850 fd5ff06f jal x0, -44 +46635700ns 819651 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46635984ns 819656 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46636382ns 819663 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46636552ns 819666 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46637007ns 819674 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46637177ns 819677 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46637462ns 819682 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46637746ns 819687 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46638030ns 819692 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46638485ns 819700 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46638655ns 819703 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46638939ns 819708 1a110850 fd5ff06f jal x0, -44 +46639223ns 819713 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46639507ns 819718 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46639905ns 819725 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46640076ns 819728 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46640530ns 819736 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46640701ns 819739 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46640985ns 819744 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46641269ns 819749 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46641553ns 819754 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46642008ns 819762 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46642179ns 819765 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46642463ns 819770 1a110850 fd5ff06f jal x0, -44 +46642747ns 819775 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46643031ns 819780 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46643429ns 819787 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46643599ns 819790 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46644054ns 819798 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46644225ns 819801 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46644509ns 819806 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46644793ns 819811 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46645077ns 819816 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46645532ns 819824 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46645702ns 819827 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46645986ns 819832 1a110850 fd5ff06f jal x0, -44 +46646271ns 819837 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46646555ns 819842 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46646952ns 819849 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46647123ns 819852 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46647578ns 819860 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46647748ns 819863 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46648032ns 819868 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46648316ns 819873 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46648601ns 819878 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46649055ns 819886 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46649226ns 819889 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46649510ns 819894 1a110850 fd5ff06f jal x0, -44 +46649794ns 819899 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46650078ns 819904 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46650476ns 819911 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46650647ns 819914 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46651101ns 819922 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46651272ns 819925 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46651556ns 819930 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46651840ns 819935 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46652124ns 819940 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46652579ns 819948 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46652749ns 819951 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46653034ns 819956 1a110850 fd5ff06f jal x0, -44 +46653318ns 819961 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46653602ns 819966 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46654000ns 819973 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46654170ns 819976 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46654625ns 819984 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46654795ns 819987 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46655079ns 819992 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46655364ns 819997 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46655648ns 820002 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46656102ns 820010 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46656273ns 820013 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46656557ns 820018 1a110850 fd5ff06f jal x0, -44 +46656841ns 820023 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46657125ns 820028 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46657523ns 820035 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46657694ns 820038 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46658148ns 820046 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46658319ns 820049 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46658603ns 820054 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46658887ns 820059 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46659171ns 820064 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46659626ns 820072 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46659797ns 820075 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46660081ns 820080 1a110850 fd5ff06f jal x0, -44 +46660365ns 820085 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46660649ns 820090 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46661047ns 820097 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46661217ns 820100 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46661672ns 820108 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46661842ns 820111 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46662127ns 820116 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46662411ns 820121 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46662695ns 820126 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46663150ns 820134 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46663320ns 820137 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46663604ns 820142 1a110850 fd5ff06f jal x0, -44 +46663888ns 820147 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46664173ns 820152 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46664570ns 820159 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46664741ns 820162 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46665196ns 820170 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46665366ns 820173 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46665650ns 820178 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46665934ns 820183 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46666219ns 820188 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46666673ns 820196 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46666844ns 820199 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46667128ns 820204 1a110850 fd5ff06f jal x0, -44 +46667412ns 820209 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46667696ns 820214 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46668094ns 820221 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46668264ns 820224 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46668719ns 820232 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46668890ns 820235 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46669174ns 820240 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46669458ns 820245 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46669742ns 820250 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46670197ns 820258 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46670367ns 820261 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46670651ns 820266 1a110850 fd5ff06f jal x0, -44 +46670936ns 820271 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46671220ns 820276 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46671618ns 820283 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46671788ns 820286 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46672243ns 820294 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46672413ns 820297 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46672697ns 820302 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46672982ns 820307 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46673266ns 820312 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46673720ns 820320 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46673891ns 820323 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46674175ns 820328 1a110850 fd5ff06f jal x0, -44 +46674459ns 820333 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46674743ns 820338 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46675141ns 820345 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46675312ns 820348 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46675766ns 820356 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46675937ns 820359 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46676221ns 820364 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46676505ns 820369 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46676789ns 820374 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46677244ns 820382 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46677414ns 820385 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46677699ns 820390 1a110850 fd5ff06f jal x0, -44 +46677983ns 820395 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46678267ns 820400 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46678665ns 820407 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46678835ns 820410 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46679290ns 820418 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46679460ns 820421 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46679745ns 820426 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46680029ns 820431 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46680313ns 820436 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46680768ns 820444 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46680938ns 820447 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46681222ns 820452 1a110850 fd5ff06f jal x0, -44 +46681506ns 820457 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46681791ns 820462 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46682188ns 820469 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46682359ns 820472 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46682813ns 820480 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46682984ns 820483 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46683268ns 820488 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46683552ns 820493 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46683836ns 820498 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46684291ns 820506 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46684462ns 820509 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46684746ns 820514 1a110850 fd5ff06f jal x0, -44 +46685030ns 820519 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46685314ns 820524 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46685712ns 820531 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46685882ns 820534 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46686337ns 820542 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46686508ns 820545 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46686792ns 820550 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46687076ns 820555 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46687360ns 820560 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46687815ns 820568 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46687985ns 820571 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46688269ns 820576 1a110850 fd5ff06f jal x0, -44 +46688554ns 820581 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46688838ns 820586 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46689235ns 820593 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46689406ns 820596 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46689861ns 820604 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46690031ns 820607 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46690315ns 820612 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46690599ns 820617 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46690884ns 820622 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46691338ns 820630 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46691509ns 820633 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46691793ns 820638 1a110850 fd5ff06f jal x0, -44 +46692077ns 820643 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46692361ns 820648 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46692759ns 820655 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46692930ns 820658 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46693384ns 820666 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46693555ns 820669 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46693839ns 820674 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46694123ns 820679 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46694407ns 820684 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46694862ns 820692 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46695032ns 820695 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46695317ns 820700 1a110850 fd5ff06f jal x0, -44 +46695601ns 820705 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46695885ns 820710 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46696283ns 820717 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46696453ns 820720 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46696908ns 820728 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46697078ns 820731 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46697362ns 820736 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46697647ns 820741 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46697931ns 820746 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46698385ns 820754 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46698556ns 820757 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46698840ns 820762 1a110850 fd5ff06f jal x0, -44 +46699124ns 820767 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46699408ns 820772 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46699806ns 820779 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46699977ns 820782 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46700431ns 820790 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46700602ns 820793 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46700886ns 820798 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46701170ns 820803 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46701454ns 820808 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46701909ns 820816 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46702080ns 820819 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46702364ns 820824 1a110850 fd5ff06f jal x0, -44 +46702648ns 820829 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46702932ns 820834 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46703330ns 820841 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46703500ns 820844 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46703955ns 820852 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46704125ns 820855 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46704410ns 820860 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46704694ns 820865 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46704978ns 820870 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46705433ns 820878 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46705603ns 820881 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46705887ns 820886 1a110850 fd5ff06f jal x0, -44 +46706171ns 820891 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46706456ns 820896 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46706853ns 820903 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46707024ns 820906 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46707479ns 820914 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46707649ns 820917 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46707933ns 820922 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46708217ns 820927 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46708502ns 820932 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46708956ns 820940 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46709127ns 820943 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46709411ns 820948 1a110850 fd5ff06f jal x0, -44 +46709695ns 820953 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46709979ns 820958 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46710377ns 820965 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46710547ns 820968 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46711002ns 820976 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46711173ns 820979 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46711457ns 820984 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46711741ns 820989 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46712025ns 820994 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46712480ns 821002 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46712650ns 821005 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46712934ns 821010 1a110850 fd5ff06f jal x0, -44 +46713219ns 821015 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46713503ns 821020 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46713901ns 821027 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46714071ns 821030 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46714526ns 821038 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46714696ns 821041 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46714980ns 821046 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46715265ns 821051 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46715549ns 821056 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46716003ns 821064 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46716174ns 821067 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46716458ns 821072 1a110850 fd5ff06f jal x0, -44 +46716742ns 821077 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46717026ns 821082 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46717424ns 821089 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46717595ns 821092 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46718049ns 821100 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46718220ns 821103 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46718504ns 821108 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46718788ns 821113 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46719072ns 821118 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46719527ns 821126 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46719697ns 821129 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46719982ns 821134 1a110850 fd5ff06f jal x0, -44 +46720266ns 821139 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46720550ns 821144 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46720948ns 821151 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46721118ns 821154 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46721573ns 821162 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46721743ns 821165 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46722028ns 821170 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46722312ns 821175 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46722596ns 821180 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46723051ns 821188 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46723221ns 821191 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46723505ns 821196 1a110850 fd5ff06f jal x0, -44 +46723789ns 821201 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46724074ns 821206 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46724471ns 821213 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46724642ns 821216 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46725096ns 821224 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46725267ns 821227 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46725551ns 821232 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46725835ns 821237 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46726119ns 821242 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46726574ns 821250 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46726745ns 821253 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46727029ns 821258 1a110850 fd5ff06f jal x0, -44 +46727313ns 821263 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46727597ns 821268 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46727995ns 821275 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46728165ns 821278 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46728620ns 821286 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46728791ns 821289 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46729075ns 821294 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46729359ns 821299 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46729643ns 821304 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46730098ns 821312 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46730268ns 821315 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46730552ns 821320 1a110850 fd5ff06f jal x0, -44 +46730837ns 821325 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46731121ns 821330 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46731519ns 821337 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46731689ns 821340 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46732144ns 821348 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46732314ns 821351 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46732598ns 821356 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46732882ns 821361 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46733167ns 821366 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46733621ns 821374 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46733792ns 821377 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46734076ns 821382 1a110850 fd5ff06f jal x0, -44 +46734360ns 821387 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46734644ns 821392 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46735042ns 821399 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46735213ns 821402 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46735667ns 821410 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46735838ns 821413 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46736122ns 821418 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46736406ns 821423 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46736690ns 821428 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46737145ns 821436 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46737315ns 821439 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46737600ns 821444 1a110850 fd5ff06f jal x0, -44 +46737884ns 821449 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46738168ns 821454 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46738566ns 821461 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46738736ns 821464 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46739191ns 821472 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46739361ns 821475 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46739645ns 821480 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46739930ns 821485 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46740214ns 821490 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46740668ns 821498 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46740839ns 821501 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46741123ns 821506 1a110850 fd5ff06f jal x0, -44 +46741407ns 821511 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46741691ns 821516 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46742089ns 821523 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46742260ns 821526 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46742714ns 821534 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46742885ns 821537 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46743169ns 821542 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46743453ns 821547 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46743737ns 821552 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46744192ns 821560 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46744363ns 821563 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46744647ns 821568 1a110850 fd5ff06f jal x0, -44 +46744931ns 821573 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46745215ns 821578 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46745613ns 821585 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46745783ns 821588 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46746238ns 821596 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46746408ns 821599 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46746693ns 821604 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46746977ns 821609 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46747261ns 821614 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46747716ns 821622 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46747886ns 821625 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46748170ns 821630 1a110850 fd5ff06f jal x0, -44 +46748454ns 821635 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46748739ns 821640 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46749136ns 821647 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46749307ns 821650 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46749762ns 821658 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46749932ns 821661 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46750216ns 821666 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46750500ns 821671 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46750785ns 821676 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46751239ns 821684 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46751410ns 821687 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46751694ns 821692 1a110850 fd5ff06f jal x0, -44 +46751978ns 821697 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46752262ns 821702 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46752660ns 821709 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46752831ns 821712 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46753285ns 821720 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46753456ns 821723 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46753740ns 821728 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46754024ns 821733 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46754308ns 821738 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46754763ns 821746 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46754933ns 821749 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46755217ns 821754 1a110850 fd5ff06f jal x0, -44 +46755502ns 821759 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46755786ns 821764 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46756184ns 821771 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46756354ns 821774 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46756809ns 821782 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46756979ns 821785 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46757263ns 821790 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46757548ns 821795 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46757832ns 821800 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46758286ns 821808 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46758457ns 821811 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46758741ns 821816 1a110850 fd5ff06f jal x0, -44 +46759025ns 821821 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46759309ns 821826 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46759707ns 821833 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46759878ns 821836 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46760332ns 821844 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46760503ns 821847 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46760787ns 821852 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46761071ns 821857 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46761355ns 821862 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46761810ns 821870 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46761980ns 821873 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46762265ns 821878 1a110850 fd5ff06f jal x0, -44 +46762549ns 821883 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46762833ns 821888 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46763231ns 821895 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46763401ns 821898 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46763856ns 821906 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46764026ns 821909 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46764311ns 821914 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46764595ns 821919 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46764879ns 821924 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46765334ns 821932 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46765504ns 821935 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46765788ns 821940 1a110850 fd5ff06f jal x0, -44 +46766072ns 821945 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46766357ns 821950 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46766754ns 821957 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46766925ns 821960 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46767379ns 821968 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46767550ns 821971 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46767834ns 821976 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46768118ns 821981 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46768402ns 821986 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46768857ns 821994 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46769028ns 821997 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46769312ns 822002 1a110850 fd5ff06f jal x0, -44 +46769596ns 822007 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46769880ns 822012 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46770278ns 822019 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46770448ns 822022 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46770903ns 822030 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46771074ns 822033 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46771358ns 822038 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46771642ns 822043 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46771926ns 822048 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46772381ns 822056 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46772551ns 822059 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46772835ns 822064 1a110850 fd5ff06f jal x0, -44 +46773120ns 822069 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46773404ns 822074 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46773802ns 822081 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46773972ns 822084 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46774427ns 822092 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46774597ns 822095 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46774881ns 822100 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46775165ns 822105 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46775450ns 822110 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46775904ns 822118 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46776075ns 822121 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46776359ns 822126 1a110850 fd5ff06f jal x0, -44 +46776643ns 822131 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46776927ns 822136 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46777325ns 822143 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46777496ns 822146 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46777950ns 822154 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46778121ns 822157 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46778405ns 822162 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46778689ns 822167 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46778973ns 822172 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46779428ns 822180 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46779598ns 822183 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46779883ns 822188 1a110850 fd5ff06f jal x0, -44 +46780167ns 822193 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46780451ns 822198 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46780849ns 822205 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46781019ns 822208 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46781474ns 822216 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46781644ns 822219 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46781928ns 822224 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46782213ns 822229 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46782497ns 822234 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46782951ns 822242 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46783122ns 822245 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46783406ns 822250 1a110850 fd5ff06f jal x0, -44 +46783690ns 822255 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46783974ns 822260 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46784372ns 822267 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46784543ns 822270 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46784997ns 822278 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46785168ns 822281 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46785452ns 822286 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46785736ns 822291 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46786020ns 822296 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46786475ns 822304 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46786646ns 822307 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46786930ns 822312 1a110850 fd5ff06f jal x0, -44 +46787214ns 822317 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46787498ns 822322 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46787896ns 822329 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46788066ns 822332 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46788521ns 822340 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46788691ns 822343 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46788976ns 822348 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46789260ns 822353 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46789544ns 822358 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46789999ns 822366 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46790169ns 822369 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46790453ns 822374 1a110850 fd5ff06f jal x0, -44 +46790737ns 822379 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46791022ns 822384 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46791419ns 822391 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46791590ns 822394 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46792045ns 822402 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46792215ns 822405 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46792499ns 822410 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46792783ns 822415 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46793068ns 822420 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46793522ns 822428 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46793693ns 822431 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46793977ns 822436 1a110850 fd5ff06f jal x0, -44 +46794261ns 822441 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46794545ns 822446 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46794943ns 822453 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46795114ns 822456 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46795568ns 822464 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46795739ns 822467 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46796023ns 822472 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46796307ns 822477 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46796591ns 822482 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46797046ns 822490 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46797216ns 822493 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46797500ns 822498 1a110850 fd5ff06f jal x0, -44 +46797785ns 822503 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46798069ns 822508 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46798467ns 822515 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46798637ns 822518 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46799092ns 822526 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46799262ns 822529 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46799546ns 822534 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46799831ns 822539 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46800115ns 822544 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46800569ns 822552 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46800740ns 822555 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46801024ns 822560 1a110850 fd5ff06f jal x0, -44 +46801308ns 822565 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46801592ns 822570 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46801990ns 822577 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46802161ns 822580 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46802615ns 822588 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46802786ns 822591 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46803070ns 822596 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46803354ns 822601 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46803638ns 822606 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46804093ns 822614 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46804263ns 822617 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46804548ns 822622 1a110850 fd5ff06f jal x0, -44 +46804832ns 822627 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46805116ns 822632 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46805514ns 822639 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46805684ns 822642 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46806139ns 822650 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46806309ns 822653 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46806594ns 822658 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46806878ns 822663 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46807162ns 822668 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46807617ns 822676 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46807787ns 822679 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46808071ns 822684 1a110850 fd5ff06f jal x0, -44 +46808355ns 822689 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46808640ns 822694 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46809037ns 822701 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46809208ns 822704 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46809663ns 822712 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46809833ns 822715 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46810117ns 822720 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46810401ns 822725 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46810685ns 822730 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46811140ns 822738 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46811311ns 822741 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46811595ns 822746 1a110850 fd5ff06f jal x0, -44 +46811879ns 822751 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46812163ns 822756 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46812561ns 822763 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46812731ns 822766 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46813186ns 822774 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46813357ns 822777 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46813641ns 822782 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46813925ns 822787 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46814209ns 822792 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46814664ns 822800 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46814834ns 822803 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46815118ns 822808 1a110850 fd5ff06f jal x0, -44 +46815403ns 822813 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46815687ns 822818 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46816085ns 822825 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46816255ns 822828 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46816710ns 822836 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46816880ns 822839 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46817164ns 822844 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46817448ns 822849 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46817733ns 822854 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46818187ns 822862 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46818358ns 822865 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46818642ns 822870 1a110850 fd5ff06f jal x0, -44 +46818926ns 822875 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46819210ns 822880 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46819608ns 822887 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46819779ns 822890 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46820233ns 822898 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46820404ns 822901 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46820688ns 822906 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46820972ns 822911 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46821256ns 822916 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46821711ns 822924 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46821881ns 822927 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46822166ns 822932 1a110850 fd5ff06f jal x0, -44 +46822450ns 822937 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46822734ns 822942 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46823132ns 822949 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46823302ns 822952 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46823757ns 822960 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46823927ns 822963 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46824211ns 822968 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46824496ns 822973 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46824780ns 822978 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46825234ns 822986 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46825405ns 822989 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46825689ns 822994 1a110850 fd5ff06f jal x0, -44 +46825973ns 822999 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46826257ns 823004 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46826655ns 823011 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46826826ns 823014 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46827280ns 823022 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46827451ns 823025 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46827735ns 823030 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46828019ns 823035 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46828303ns 823040 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46828758ns 823048 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46828929ns 823051 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46829213ns 823056 1a110850 fd5ff06f jal x0, -44 +46829497ns 823061 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46829781ns 823066 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46830179ns 823073 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46830349ns 823076 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46830804ns 823084 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46830975ns 823087 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46831259ns 823092 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46831543ns 823097 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46831827ns 823102 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46832282ns 823110 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46832452ns 823113 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46832736ns 823118 1a110850 fd5ff06f jal x0, -44 +46833020ns 823123 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46833305ns 823128 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46833702ns 823135 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46833873ns 823138 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46834328ns 823146 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46834498ns 823149 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46834782ns 823154 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46835066ns 823159 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46835351ns 823164 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46835805ns 823172 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46835976ns 823175 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46836260ns 823180 1a110850 fd5ff06f jal x0, -44 +46836544ns 823185 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46836828ns 823190 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46837226ns 823197 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46837397ns 823200 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46837851ns 823208 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46838022ns 823211 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46838306ns 823216 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46838590ns 823221 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46838874ns 823226 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46839329ns 823234 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46839499ns 823237 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46839783ns 823242 1a110850 fd5ff06f jal x0, -44 +46840068ns 823247 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46840352ns 823252 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46840750ns 823259 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46840920ns 823262 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46841375ns 823270 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46841545ns 823273 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46841829ns 823278 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46842114ns 823283 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46842398ns 823288 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46842852ns 823296 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46843023ns 823299 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46843307ns 823304 1a110850 fd5ff06f jal x0, -44 +46843591ns 823309 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46843875ns 823314 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46844273ns 823321 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46844444ns 823324 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46844898ns 823332 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46845069ns 823335 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46845353ns 823340 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46845637ns 823345 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46845921ns 823350 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46846376ns 823358 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46846546ns 823361 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46846831ns 823366 1a110850 fd5ff06f jal x0, -44 +46847115ns 823371 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46847399ns 823376 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46847797ns 823383 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46847967ns 823386 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46848422ns 823394 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46848592ns 823397 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46848877ns 823402 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46849161ns 823407 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46849445ns 823412 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46849900ns 823420 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46850070ns 823423 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46850354ns 823428 1a110850 fd5ff06f jal x0, -44 +46850638ns 823433 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46850923ns 823438 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46851320ns 823445 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46851491ns 823448 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46851946ns 823456 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46852116ns 823459 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46852400ns 823464 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46852684ns 823469 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46852968ns 823474 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46853423ns 823482 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46853594ns 823485 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46853878ns 823490 1a110850 fd5ff06f jal x0, -44 +46854162ns 823495 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46854446ns 823500 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46854844ns 823507 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46855014ns 823510 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46855469ns 823518 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46855640ns 823521 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46855924ns 823526 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46856208ns 823531 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46856492ns 823536 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46856947ns 823544 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46857117ns 823547 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46857401ns 823552 1a110850 fd5ff06f jal x0, -44 +46857686ns 823557 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46857970ns 823562 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46858368ns 823569 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46858538ns 823572 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46858993ns 823580 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46859163ns 823583 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46859447ns 823588 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46859731ns 823593 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46860016ns 823598 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46860470ns 823606 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46860641ns 823609 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46860925ns 823614 1a110850 fd5ff06f jal x0, -44 +46861209ns 823619 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46861493ns 823624 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46861891ns 823631 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46862062ns 823634 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46862516ns 823642 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46862687ns 823645 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46862971ns 823650 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46863255ns 823655 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46863539ns 823660 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46863994ns 823668 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46864164ns 823671 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46864449ns 823676 1a110850 fd5ff06f jal x0, -44 +46864733ns 823681 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46865017ns 823686 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46865415ns 823693 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46865585ns 823696 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46866040ns 823704 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46866210ns 823707 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46866495ns 823712 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46866779ns 823717 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46867063ns 823722 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46867517ns 823730 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46867688ns 823733 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46867972ns 823738 1a110850 fd5ff06f jal x0, -44 +46868256ns 823743 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46868540ns 823748 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46868938ns 823755 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46869109ns 823758 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46869563ns 823766 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46869734ns 823769 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46870018ns 823774 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46870302ns 823779 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46870586ns 823784 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46871041ns 823792 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46871212ns 823795 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46871496ns 823800 1a110850 fd5ff06f jal x0, -44 +46871780ns 823805 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46872064ns 823810 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46872462ns 823817 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46872632ns 823820 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46873087ns 823828 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46873258ns 823831 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46873542ns 823836 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46873826ns 823841 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46874110ns 823846 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46874565ns 823854 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46874735ns 823857 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46875019ns 823862 1a110850 fd5ff06f jal x0, -44 +46875303ns 823867 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46875588ns 823872 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46875985ns 823879 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46876156ns 823882 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46876611ns 823890 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46876781ns 823893 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46877065ns 823898 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46877349ns 823903 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46877634ns 823908 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46878088ns 823916 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46878259ns 823919 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46878543ns 823924 1a110850 fd5ff06f jal x0, -44 +46878827ns 823929 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46879111ns 823934 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46879509ns 823941 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46879680ns 823944 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46880134ns 823952 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46880305ns 823955 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46880589ns 823960 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46880873ns 823965 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46881157ns 823970 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46881612ns 823978 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46881782ns 823981 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46882066ns 823986 1a110850 fd5ff06f jal x0, -44 +46882351ns 823991 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46882635ns 823996 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46883033ns 824003 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46883203ns 824006 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46883658ns 824014 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46883828ns 824017 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46884112ns 824022 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46884397ns 824027 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46884681ns 824032 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46885135ns 824040 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46885306ns 824043 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46885590ns 824048 1a110850 fd5ff06f jal x0, -44 +46885874ns 824053 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46886158ns 824058 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46886556ns 824065 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46886727ns 824068 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46887181ns 824076 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46887352ns 824079 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46887636ns 824084 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46887920ns 824089 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46888204ns 824094 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46888659ns 824102 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46888829ns 824105 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46889114ns 824110 1a110850 fd5ff06f jal x0, -44 +46889398ns 824115 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46889682ns 824120 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46890080ns 824127 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46890250ns 824130 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46890705ns 824138 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46890875ns 824141 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46891160ns 824146 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46891444ns 824151 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46891728ns 824156 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46892183ns 824164 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46892353ns 824167 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46892637ns 824172 1a110850 fd5ff06f jal x0, -44 +46892921ns 824177 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46893206ns 824182 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46893603ns 824189 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46893774ns 824192 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46894229ns 824200 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46894399ns 824203 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46894683ns 824208 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46894967ns 824213 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46895251ns 824218 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46895706ns 824226 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46895877ns 824229 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46896161ns 824234 1a110850 fd5ff06f jal x0, -44 +46896445ns 824239 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46896729ns 824244 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46897127ns 824251 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46897297ns 824254 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46897752ns 824262 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46897923ns 824265 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46898207ns 824270 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46898491ns 824275 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46898775ns 824280 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46899230ns 824288 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46899400ns 824291 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46899684ns 824296 1a110850 fd5ff06f jal x0, -44 +46899969ns 824301 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46900253ns 824306 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46900651ns 824313 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46900821ns 824316 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46901276ns 824324 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46901446ns 824327 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46901730ns 824332 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46902015ns 824337 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46902299ns 824342 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46902753ns 824350 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46902924ns 824353 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46903208ns 824358 1a110850 fd5ff06f jal x0, -44 +46903492ns 824363 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46903776ns 824368 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46904174ns 824375 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46904345ns 824378 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46904799ns 824386 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46904970ns 824389 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46905254ns 824394 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46905538ns 824399 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46905822ns 824404 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46906277ns 824412 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46906447ns 824415 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46906732ns 824420 1a110850 fd5ff06f jal x0, -44 +46907016ns 824425 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46907300ns 824430 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46907698ns 824437 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46907868ns 824440 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46908323ns 824448 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46908493ns 824451 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46908778ns 824456 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46909062ns 824461 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46909346ns 824466 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46909800ns 824474 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46909971ns 824477 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46910255ns 824482 1a110850 fd5ff06f jal x0, -44 +46910539ns 824487 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46910823ns 824492 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46911221ns 824499 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46911392ns 824502 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46911846ns 824510 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46912017ns 824513 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46912301ns 824518 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46912585ns 824523 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46912869ns 824528 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46913324ns 824536 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46913495ns 824539 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46913779ns 824544 1a110850 fd5ff06f jal x0, -44 +46914063ns 824549 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46914347ns 824554 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46914745ns 824561 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46914915ns 824564 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46915370ns 824572 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46915541ns 824575 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46915825ns 824580 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46916109ns 824585 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46916393ns 824590 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46916848ns 824598 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46917018ns 824601 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46917302ns 824606 1a110850 fd5ff06f jal x0, -44 +46917586ns 824611 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46917871ns 824616 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46918268ns 824623 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46918439ns 824626 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46918894ns 824634 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46919064ns 824637 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46919348ns 824642 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46919632ns 824647 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46919917ns 824652 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46920371ns 824660 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46920542ns 824663 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46920826ns 824668 1a110850 fd5ff06f jal x0, -44 +46921110ns 824673 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46921394ns 824678 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46921792ns 824685 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46921963ns 824688 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46922417ns 824696 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46922588ns 824699 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46922872ns 824704 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46923156ns 824709 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46923440ns 824714 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46923895ns 824722 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46924065ns 824725 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46924349ns 824730 1a110850 fd5ff06f jal x0, -44 +46924634ns 824735 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46924918ns 824740 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46925316ns 824747 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46925486ns 824750 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46925941ns 824758 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46926111ns 824761 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46926395ns 824766 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46926680ns 824771 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46926964ns 824776 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46927418ns 824784 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46927589ns 824787 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46927873ns 824792 1a110850 fd5ff06f jal x0, -44 +46928157ns 824797 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46928441ns 824802 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46928839ns 824809 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46929010ns 824812 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46929464ns 824820 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46929635ns 824823 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46929919ns 824828 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46930203ns 824833 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46930487ns 824838 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46930942ns 824846 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46931112ns 824849 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46931397ns 824854 1a110850 fd5ff06f jal x0, -44 +46931681ns 824859 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46931965ns 824864 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46932363ns 824871 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46932533ns 824874 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46932988ns 824882 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46933158ns 824885 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46933443ns 824890 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46933727ns 824895 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46934011ns 824900 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46934466ns 824908 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46934636ns 824911 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46934920ns 824916 1a110850 fd5ff06f jal x0, -44 +46935204ns 824921 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46935489ns 824926 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46935886ns 824933 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46936057ns 824936 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46936512ns 824944 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46936682ns 824947 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46936966ns 824952 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46937250ns 824957 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46937535ns 824962 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46937989ns 824970 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46938160ns 824973 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46938444ns 824978 1a110850 fd5ff06f jal x0, -44 +46938728ns 824983 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46939012ns 824988 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46939410ns 824995 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46939580ns 824998 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46940035ns 825006 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46940206ns 825009 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46940490ns 825014 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46940774ns 825019 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46941058ns 825024 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46941513ns 825032 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46941683ns 825035 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46941967ns 825040 1a110850 fd5ff06f jal x0, -44 +46942252ns 825045 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46942536ns 825050 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46942934ns 825057 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46943104ns 825060 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46943559ns 825068 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46943729ns 825071 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46944013ns 825076 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46944298ns 825081 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46944582ns 825086 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46945036ns 825094 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46945207ns 825097 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46945491ns 825102 1a110850 fd5ff06f jal x0, -44 +46945775ns 825107 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46946059ns 825112 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46946457ns 825119 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46946628ns 825122 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46947082ns 825130 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46947253ns 825133 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46947537ns 825138 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46947821ns 825143 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46948105ns 825148 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46948560ns 825156 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46948730ns 825159 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46949015ns 825164 1a110850 fd5ff06f jal x0, -44 +46949299ns 825169 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46949583ns 825174 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46949981ns 825181 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46950151ns 825184 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46950606ns 825192 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46950776ns 825195 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46951061ns 825200 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46951345ns 825205 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46951629ns 825210 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46952083ns 825218 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46952254ns 825221 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46952538ns 825226 1a110850 fd5ff06f jal x0, -44 +46952822ns 825231 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46953106ns 825236 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46953504ns 825243 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46953675ns 825246 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46954129ns 825254 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46954300ns 825257 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46954584ns 825262 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46954868ns 825267 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46955152ns 825272 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46955607ns 825280 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46955778ns 825283 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46956062ns 825288 1a110850 fd5ff06f jal x0, -44 +46956346ns 825293 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46956630ns 825298 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46957028ns 825305 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46957198ns 825308 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46957653ns 825316 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46957824ns 825319 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46958108ns 825324 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46958392ns 825329 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46958676ns 825334 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46959131ns 825342 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46959301ns 825345 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46959585ns 825350 1a110850 fd5ff06f jal x0, -44 +46959869ns 825355 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46960154ns 825360 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46960551ns 825367 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46960722ns 825370 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46961177ns 825378 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46961347ns 825381 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46961631ns 825386 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46961915ns 825391 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46962200ns 825396 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46962654ns 825404 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46962825ns 825407 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46963109ns 825412 1a110850 fd5ff06f jal x0, -44 +46963393ns 825417 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46963677ns 825422 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46964075ns 825429 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46964246ns 825432 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46964700ns 825440 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46964871ns 825443 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46965155ns 825448 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46965439ns 825453 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46965723ns 825458 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46966178ns 825466 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46966348ns 825469 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46966632ns 825474 1a110850 fd5ff06f jal x0, -44 +46966917ns 825479 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46967201ns 825484 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46967599ns 825491 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46967769ns 825494 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46968224ns 825502 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46968394ns 825505 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46968678ns 825510 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46968963ns 825515 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46969247ns 825520 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46969701ns 825528 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46969872ns 825531 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46970156ns 825536 1a110850 fd5ff06f jal x0, -44 +46970440ns 825541 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46970724ns 825546 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46971122ns 825553 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46971293ns 825556 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46971747ns 825564 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46971918ns 825567 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46972202ns 825572 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46972486ns 825577 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46972770ns 825582 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46973225ns 825590 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46973395ns 825593 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46973680ns 825598 1a110850 fd5ff06f jal x0, -44 +46973964ns 825603 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46974248ns 825608 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46974646ns 825615 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46974816ns 825618 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46975271ns 825626 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46975441ns 825629 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46975726ns 825634 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46976010ns 825639 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46976294ns 825644 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46976749ns 825652 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46976919ns 825655 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46977203ns 825660 1a110850 fd5ff06f jal x0, -44 +46977487ns 825665 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46977772ns 825670 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46978169ns 825677 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46978340ns 825680 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46978795ns 825688 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46978965ns 825691 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46979249ns 825696 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46979533ns 825701 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46979818ns 825706 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46980272ns 825714 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46980443ns 825717 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46980727ns 825722 1a110850 fd5ff06f jal x0, -44 +46981011ns 825727 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46981295ns 825732 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46981693ns 825739 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46981863ns 825742 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46982318ns 825750 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46982489ns 825753 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46982773ns 825758 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46983057ns 825763 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46983341ns 825768 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46983796ns 825776 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46983966ns 825779 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46984250ns 825784 1a110850 fd5ff06f jal x0, -44 +46984535ns 825789 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46984819ns 825794 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46985217ns 825801 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46985387ns 825804 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46985842ns 825812 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46986012ns 825815 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46986296ns 825820 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46986581ns 825825 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46986865ns 825830 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46987319ns 825838 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46987490ns 825841 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46987774ns 825846 1a110850 fd5ff06f jal x0, -44 +46988058ns 825851 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46988342ns 825856 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46988740ns 825863 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46988911ns 825866 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46989365ns 825874 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46989536ns 825877 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46989820ns 825882 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46990104ns 825887 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46990388ns 825892 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46990843ns 825900 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46991013ns 825903 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46991298ns 825908 1a110850 fd5ff06f jal x0, -44 +46991582ns 825913 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46991866ns 825918 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46992264ns 825925 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46992434ns 825928 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46992889ns 825936 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46993059ns 825939 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46993344ns 825944 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46993628ns 825949 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46993912ns 825954 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46994367ns 825962 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46994537ns 825965 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46994821ns 825970 1a110850 fd5ff06f jal x0, -44 +46995105ns 825975 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46995389ns 825980 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46995787ns 825987 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46995958ns 825990 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46996412ns 825998 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +46996583ns 826001 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +46996867ns 826006 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46997151ns 826011 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46997435ns 826016 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46997890ns 826024 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +46998061ns 826027 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +46998345ns 826032 1a110850 fd5ff06f jal x0, -44 +46998629ns 826037 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +46998913ns 826042 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +46999311ns 826049 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +46999481ns 826052 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +46999936ns 826060 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47000107ns 826063 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47000391ns 826068 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47000675ns 826073 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47000959ns 826078 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47001414ns 826086 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47001584ns 826089 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47001868ns 826094 1a110850 fd5ff06f jal x0, -44 +47002152ns 826099 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47002437ns 826104 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47002834ns 826111 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47003005ns 826114 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47003460ns 826122 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47003630ns 826125 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47003914ns 826130 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47004198ns 826135 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47004483ns 826140 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47004937ns 826148 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47005108ns 826151 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47005392ns 826156 1a110850 fd5ff06f jal x0, -44 +47005676ns 826161 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47005960ns 826166 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47006358ns 826173 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47006529ns 826176 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47006983ns 826184 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47007154ns 826187 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47007438ns 826192 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47007722ns 826197 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47008006ns 826202 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47008461ns 826210 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47008631ns 826213 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47008915ns 826218 1a110850 fd5ff06f jal x0, -44 +47009200ns 826223 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47009484ns 826228 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47009882ns 826235 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47010052ns 826238 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47010507ns 826246 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47010677ns 826249 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47010961ns 826254 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47011246ns 826259 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47011530ns 826264 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47011984ns 826272 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47012155ns 826275 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47012439ns 826280 1a110850 fd5ff06f jal x0, -44 +47012723ns 826285 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47013007ns 826290 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47013405ns 826297 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47013576ns 826300 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47014030ns 826308 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47014201ns 826311 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47014485ns 826316 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47014769ns 826321 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47015053ns 826326 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47015508ns 826334 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47015679ns 826337 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47015963ns 826342 1a110850 fd5ff06f jal x0, -44 +47016247ns 826347 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47016531ns 826352 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47016929ns 826359 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47017099ns 826362 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47017554ns 826370 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47017724ns 826373 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47018009ns 826378 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47018293ns 826383 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47018577ns 826388 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47019032ns 826396 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47019202ns 826399 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47019486ns 826404 1a110850 fd5ff06f jal x0, -44 +47019770ns 826409 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47020055ns 826414 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47020452ns 826421 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47020623ns 826424 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47021078ns 826432 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47021248ns 826435 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47021532ns 826440 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47021816ns 826445 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47022101ns 826450 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47022555ns 826458 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47022726ns 826461 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47023010ns 826466 1a110850 fd5ff06f jal x0, -44 +47023294ns 826471 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47023578ns 826476 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47023976ns 826483 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47024146ns 826486 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47024601ns 826494 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47024772ns 826497 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47025056ns 826502 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47025340ns 826507 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47025624ns 826512 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47026079ns 826520 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47026249ns 826523 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47026533ns 826528 1a110850 fd5ff06f jal x0, -44 +47026818ns 826533 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47027102ns 826538 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47027500ns 826545 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47027670ns 826548 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47028125ns 826556 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47028295ns 826559 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47028579ns 826564 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47028864ns 826569 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47029148ns 826574 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47029602ns 826582 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47029773ns 826585 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47030057ns 826590 1a110850 fd5ff06f jal x0, -44 +47030341ns 826595 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47030625ns 826600 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47031023ns 826607 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47031194ns 826610 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47031648ns 826618 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47031819ns 826621 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47032103ns 826626 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47032387ns 826631 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47032671ns 826636 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47033126ns 826644 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47033296ns 826647 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47033581ns 826652 1a110850 fd5ff06f jal x0, -44 +47033865ns 826657 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47034149ns 826662 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47034547ns 826669 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47034717ns 826672 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47035172ns 826680 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47035342ns 826683 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47035627ns 826688 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47035911ns 826693 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47036195ns 826698 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47036650ns 826706 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47036820ns 826709 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47037104ns 826714 1a110850 fd5ff06f jal x0, -44 +47037388ns 826719 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47037672ns 826724 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47038070ns 826731 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47038241ns 826734 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47038695ns 826742 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47038866ns 826745 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47039150ns 826750 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47039434ns 826755 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47039718ns 826760 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47040173ns 826768 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47040344ns 826771 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47040628ns 826776 1a110850 fd5ff06f jal x0, -44 +47040912ns 826781 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47041196ns 826786 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47041594ns 826793 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47041764ns 826796 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47042219ns 826804 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47042390ns 826807 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47042674ns 826812 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47042958ns 826817 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47043242ns 826822 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47043697ns 826830 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47043867ns 826833 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47044151ns 826838 1a110850 fd5ff06f jal x0, -44 +47044435ns 826843 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47044720ns 826848 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47045117ns 826855 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47045288ns 826858 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47045743ns 826866 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47045913ns 826869 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47046197ns 826874 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47046481ns 826879 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47046766ns 826884 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47047220ns 826892 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47047391ns 826895 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47047675ns 826900 1a110850 fd5ff06f jal x0, -44 +47047959ns 826905 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47048243ns 826910 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47048641ns 826917 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47048812ns 826920 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47049266ns 826928 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47049437ns 826931 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47049721ns 826936 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47050005ns 826941 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47050289ns 826946 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47050744ns 826954 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47050914ns 826957 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47051199ns 826962 1a110850 fd5ff06f jal x0, -44 +47051483ns 826967 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47051767ns 826972 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47052165ns 826979 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47052335ns 826982 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47052790ns 826990 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47052960ns 826993 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47053244ns 826998 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47053529ns 827003 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47053813ns 827008 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47054267ns 827016 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47054438ns 827019 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47054722ns 827024 1a110850 fd5ff06f jal x0, -44 +47055006ns 827029 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47055290ns 827034 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47055688ns 827041 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47055859ns 827044 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47056313ns 827052 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47056484ns 827055 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47056768ns 827060 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47057052ns 827065 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47057336ns 827070 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47057791ns 827078 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47057962ns 827081 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47058246ns 827086 1a110850 fd5ff06f jal x0, -44 +47058530ns 827091 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47058814ns 827096 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47059212ns 827103 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47059382ns 827106 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47059837ns 827114 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47060007ns 827117 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47060292ns 827122 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47060576ns 827127 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47060860ns 827132 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47061315ns 827140 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47061485ns 827143 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47061769ns 827148 1a110850 fd5ff06f jal x0, -44 +47062053ns 827153 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47062338ns 827158 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47062735ns 827165 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47062906ns 827168 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47063361ns 827176 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47063531ns 827179 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47063815ns 827184 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47064099ns 827189 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47064384ns 827194 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47064838ns 827202 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47065009ns 827205 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47065293ns 827210 1a110850 fd5ff06f jal x0, -44 +47065577ns 827215 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47065861ns 827220 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47066259ns 827227 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47066429ns 827230 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47066884ns 827238 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47067055ns 827241 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47067339ns 827246 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47067623ns 827251 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47067907ns 827256 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47068362ns 827264 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47068532ns 827267 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47068816ns 827272 1a110850 fd5ff06f jal x0, -44 +47069101ns 827277 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47069385ns 827282 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47069783ns 827289 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47069953ns 827292 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47070408ns 827300 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47070578ns 827303 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47070862ns 827308 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47071147ns 827313 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47071431ns 827318 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47071885ns 827326 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47072056ns 827329 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47072340ns 827334 1a110850 fd5ff06f jal x0, -44 +47072624ns 827339 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47072908ns 827344 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47073306ns 827351 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47073477ns 827354 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47073931ns 827362 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47074102ns 827365 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47074386ns 827370 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47074670ns 827375 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47074954ns 827380 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47075409ns 827388 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47075579ns 827391 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47075864ns 827396 1a110850 fd5ff06f jal x0, -44 +47076148ns 827401 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47076432ns 827406 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47076830ns 827413 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47077000ns 827416 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47077455ns 827424 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47077625ns 827427 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47077910ns 827432 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47078194ns 827437 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47078478ns 827442 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47078933ns 827450 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47079103ns 827453 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47079387ns 827458 1a110850 fd5ff06f jal x0, -44 +47079671ns 827463 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47079955ns 827468 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47080353ns 827475 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47080524ns 827478 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47080978ns 827486 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47081149ns 827489 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47081433ns 827494 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47081717ns 827499 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47082001ns 827504 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47082456ns 827512 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47082627ns 827515 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47082911ns 827520 1a110850 fd5ff06f jal x0, -44 +47083195ns 827525 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47083479ns 827530 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47083877ns 827537 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47084047ns 827540 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47084502ns 827548 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47084673ns 827551 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47084957ns 827556 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47085241ns 827561 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47085525ns 827566 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47085980ns 827574 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47086150ns 827577 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47086434ns 827582 1a110850 fd5ff06f jal x0, -44 +47086719ns 827587 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47087003ns 827592 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47087400ns 827599 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47087571ns 827602 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47088026ns 827610 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47088196ns 827613 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47088480ns 827618 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47088764ns 827623 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47089049ns 827628 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47089503ns 827636 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47089674ns 827639 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47089958ns 827644 1a110850 fd5ff06f jal x0, -44 +47090242ns 827649 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47090526ns 827654 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47090924ns 827661 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47091095ns 827664 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47091549ns 827672 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47091720ns 827675 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47092004ns 827680 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47092288ns 827685 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47092572ns 827690 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47093027ns 827698 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47093197ns 827701 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47093482ns 827706 1a110850 fd5ff06f jal x0, -44 +47093766ns 827711 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47094050ns 827716 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47094448ns 827723 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47094618ns 827726 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47095073ns 827734 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47095243ns 827737 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47095527ns 827742 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47095812ns 827747 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47096096ns 827752 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47096550ns 827760 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47096721ns 827763 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47097005ns 827768 1a110850 fd5ff06f jal x0, -44 +47097289ns 827773 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47097573ns 827778 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47097971ns 827785 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47098142ns 827788 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47098596ns 827796 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47098767ns 827799 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47099051ns 827804 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47099335ns 827809 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47099619ns 827814 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47100074ns 827822 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47100245ns 827825 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47100529ns 827830 1a110850 fd5ff06f jal x0, -44 +47100813ns 827835 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47101097ns 827840 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47101495ns 827847 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47101665ns 827850 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47102120ns 827858 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47102290ns 827861 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47102575ns 827866 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47102859ns 827871 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47103143ns 827876 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47103598ns 827884 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47103768ns 827887 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47104052ns 827892 1a110850 fd5ff06f jal x0, -44 +47104336ns 827897 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47104621ns 827902 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47105018ns 827909 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47105189ns 827912 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47105644ns 827920 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47105814ns 827923 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47106098ns 827928 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47106382ns 827933 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47106667ns 827938 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47107121ns 827946 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47107292ns 827949 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47107576ns 827954 1a110850 fd5ff06f jal x0, -44 +47107860ns 827959 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47108144ns 827964 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47108542ns 827971 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47108712ns 827974 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47109167ns 827982 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47109338ns 827985 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47109622ns 827990 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47109906ns 827995 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47110190ns 828000 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47110645ns 828008 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47110815ns 828011 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47111099ns 828016 1a110850 fd5ff06f jal x0, -44 +47111384ns 828021 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47111668ns 828026 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47112066ns 828033 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47112236ns 828036 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47112691ns 828044 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47112861ns 828047 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47113145ns 828052 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47113430ns 828057 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47113714ns 828062 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47114168ns 828070 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47114339ns 828073 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47114623ns 828078 1a110850 fd5ff06f jal x0, -44 +47114907ns 828083 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47115191ns 828088 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47115589ns 828095 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47115760ns 828098 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47116214ns 828106 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47116385ns 828109 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47116669ns 828114 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47116953ns 828119 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47117237ns 828124 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47117692ns 828132 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47117862ns 828135 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47118147ns 828140 1a110850 fd5ff06f jal x0, -44 +47118431ns 828145 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47118715ns 828150 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47119113ns 828157 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47119283ns 828160 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47119738ns 828168 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47119908ns 828171 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47120193ns 828176 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47120477ns 828181 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47120761ns 828186 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47121216ns 828194 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47121386ns 828197 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47121670ns 828202 1a110850 fd5ff06f jal x0, -44 +47121954ns 828207 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47122239ns 828212 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47122636ns 828219 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47122807ns 828222 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47123261ns 828230 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47123432ns 828233 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47123716ns 828238 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47124000ns 828243 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47124284ns 828248 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47124739ns 828256 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47124910ns 828259 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47125194ns 828264 1a110850 fd5ff06f jal x0, -44 +47125478ns 828269 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47125762ns 828274 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47126160ns 828281 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47126330ns 828284 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47126785ns 828292 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47126956ns 828295 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47127240ns 828300 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47127524ns 828305 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47127808ns 828310 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47128263ns 828318 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47128433ns 828321 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47128717ns 828326 1a110850 fd5ff06f jal x0, -44 +47129002ns 828331 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47129286ns 828336 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47129683ns 828343 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47129854ns 828346 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47130309ns 828354 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47130479ns 828357 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47130763ns 828362 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47131047ns 828367 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47131332ns 828372 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47131786ns 828380 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47131957ns 828383 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47132241ns 828388 1a110850 fd5ff06f jal x0, -44 +47132525ns 828393 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47132809ns 828398 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47133207ns 828405 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47133378ns 828408 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47133832ns 828416 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47134003ns 828419 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47134287ns 828424 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47134571ns 828429 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47134855ns 828434 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47135310ns 828442 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47135480ns 828445 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47135765ns 828450 1a110850 fd5ff06f jal x0, -44 +47136049ns 828455 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47136333ns 828460 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47136731ns 828467 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47136901ns 828470 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47137356ns 828478 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47137526ns 828481 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47137810ns 828486 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47138095ns 828491 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47138379ns 828496 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47138833ns 828504 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47139004ns 828507 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47139288ns 828512 1a110850 fd5ff06f jal x0, -44 +47139572ns 828517 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47139856ns 828522 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47140254ns 828529 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47140425ns 828532 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47140879ns 828540 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47141050ns 828543 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47141334ns 828548 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47141618ns 828553 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47141902ns 828558 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47142357ns 828566 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47142528ns 828569 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47142812ns 828574 1a110850 fd5ff06f jal x0, -44 +47143096ns 828579 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47143380ns 828584 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47143778ns 828591 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47143948ns 828594 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47144403ns 828602 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47144573ns 828605 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47144858ns 828610 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47145142ns 828615 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47145426ns 828620 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47145881ns 828628 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47146051ns 828631 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47146335ns 828636 1a110850 fd5ff06f jal x0, -44 +47146619ns 828641 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47146904ns 828646 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47147301ns 828653 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47147472ns 828656 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47147927ns 828664 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47148097ns 828667 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47148381ns 828672 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47148665ns 828677 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47148950ns 828682 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47149404ns 828690 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47149575ns 828693 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47149859ns 828698 1a110850 fd5ff06f jal x0, -44 +47150143ns 828703 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47150427ns 828708 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47150825ns 828715 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47150995ns 828718 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47151450ns 828726 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47151621ns 828729 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47151905ns 828734 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47152189ns 828739 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47152473ns 828744 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47152928ns 828752 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47153098ns 828755 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47153382ns 828760 1a110850 fd5ff06f jal x0, -44 +47153667ns 828765 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47153951ns 828770 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47154349ns 828777 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47154519ns 828780 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47154974ns 828788 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47155144ns 828791 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47155428ns 828796 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47155713ns 828801 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47155997ns 828806 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47156451ns 828814 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47156622ns 828817 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47156906ns 828822 1a110850 fd5ff06f jal x0, -44 +47157190ns 828827 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47157474ns 828832 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47157872ns 828839 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47158043ns 828842 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47158497ns 828850 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47158668ns 828853 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47158952ns 828858 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47159236ns 828863 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47159520ns 828868 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47159975ns 828876 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47160145ns 828879 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47160430ns 828884 1a110850 fd5ff06f jal x0, -44 +47160714ns 828889 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47160998ns 828894 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47161396ns 828901 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47161566ns 828904 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47162021ns 828912 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47162191ns 828915 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47162476ns 828920 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47162760ns 828925 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47163044ns 828930 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47163499ns 828938 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47163669ns 828941 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47163953ns 828946 1a110850 fd5ff06f jal x0, -44 +47164237ns 828951 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47164522ns 828956 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47164919ns 828963 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47165090ns 828966 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47165544ns 828974 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47165715ns 828977 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47165999ns 828982 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47166283ns 828987 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47166567ns 828992 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47167022ns 829000 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47167193ns 829003 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47167477ns 829008 1a110850 fd5ff06f jal x0, -44 +47167761ns 829013 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47168045ns 829018 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47168443ns 829025 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47168613ns 829028 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47169068ns 829036 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47169239ns 829039 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47169523ns 829044 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47169807ns 829049 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47170091ns 829054 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47170546ns 829062 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47170716ns 829065 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47171000ns 829070 1a110850 fd5ff06f jal x0, -44 +47171285ns 829075 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47171569ns 829080 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47171967ns 829087 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47172137ns 829090 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47172592ns 829098 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47172762ns 829101 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47173046ns 829106 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47173330ns 829111 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47173615ns 829116 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47174069ns 829124 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47174240ns 829127 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47174524ns 829132 1a110850 fd5ff06f jal x0, -44 +47174808ns 829137 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47175092ns 829142 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47175490ns 829149 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47175661ns 829152 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47176115ns 829160 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47176286ns 829163 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47176570ns 829168 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47176854ns 829173 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47177138ns 829178 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47177593ns 829186 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47177763ns 829189 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47178048ns 829194 1a110850 fd5ff06f jal x0, -44 +47178332ns 829199 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47178616ns 829204 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47179014ns 829211 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47179184ns 829214 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47179639ns 829222 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47179809ns 829225 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47180093ns 829230 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47180378ns 829235 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47180662ns 829240 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47181116ns 829248 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47181287ns 829251 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47181571ns 829256 1a110850 fd5ff06f jal x0, -44 +47181855ns 829261 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47182139ns 829266 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47182537ns 829273 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47182708ns 829276 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47183162ns 829284 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47183333ns 829287 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47183617ns 829292 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47183901ns 829297 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47184185ns 829302 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47184640ns 829310 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47184811ns 829313 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47185095ns 829318 1a110850 fd5ff06f jal x0, -44 +47185379ns 829323 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47185663ns 829328 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47186061ns 829335 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47186231ns 829338 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47186686ns 829346 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47186856ns 829349 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47187141ns 829354 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47187425ns 829359 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47187709ns 829364 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47188164ns 829372 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47188334ns 829375 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47188618ns 829380 1a110850 fd5ff06f jal x0, -44 +47188902ns 829385 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47189187ns 829390 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47189584ns 829397 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47189755ns 829400 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47190210ns 829408 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47190380ns 829411 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47190664ns 829416 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47190948ns 829421 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47191233ns 829426 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47191687ns 829434 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47191858ns 829437 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47192142ns 829442 1a110850 fd5ff06f jal x0, -44 +47192426ns 829447 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47192710ns 829452 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47193108ns 829459 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47193279ns 829462 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47193733ns 829470 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47193904ns 829473 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47194188ns 829478 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47194472ns 829483 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47194756ns 829488 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47195211ns 829496 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47195381ns 829499 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47195665ns 829504 1a110850 fd5ff06f jal x0, -44 +47195950ns 829509 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47196234ns 829514 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47196632ns 829521 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47196802ns 829524 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47197257ns 829532 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47197427ns 829535 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47197711ns 829540 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47197996ns 829545 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47198280ns 829550 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47198734ns 829558 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47198905ns 829561 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47199189ns 829566 1a110850 fd5ff06f jal x0, -44 +47199473ns 829571 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47199757ns 829576 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47200155ns 829583 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47200326ns 829586 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47200780ns 829594 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47200951ns 829597 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47201235ns 829602 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47201519ns 829607 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47201803ns 829612 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47202258ns 829620 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47202428ns 829623 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47202713ns 829628 1a110850 fd5ff06f jal x0, -44 +47202997ns 829633 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47203281ns 829638 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47203679ns 829645 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47203849ns 829648 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47204304ns 829656 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47204474ns 829659 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47204759ns 829664 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47205043ns 829669 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47205327ns 829674 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47205782ns 829682 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47205952ns 829685 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47206236ns 829690 1a110850 fd5ff06f jal x0, -44 +47206520ns 829695 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47206805ns 829700 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47207202ns 829707 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47207373ns 829710 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47207827ns 829718 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47207998ns 829721 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47208282ns 829726 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47208566ns 829731 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47208850ns 829736 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47209305ns 829744 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47209476ns 829747 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47209760ns 829752 1a110850 fd5ff06f jal x0, -44 +47210044ns 829757 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47210328ns 829762 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47210726ns 829769 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47210896ns 829772 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47211351ns 829780 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47211522ns 829783 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47211806ns 829788 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47212090ns 829793 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47212374ns 829798 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47212829ns 829806 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47212999ns 829809 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47213283ns 829814 1a110850 fd5ff06f jal x0, -44 +47213568ns 829819 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47213852ns 829824 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47214250ns 829831 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47214420ns 829834 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47214875ns 829842 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47215045ns 829845 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47215329ns 829850 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47215613ns 829855 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47215898ns 829860 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47216352ns 829868 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47216523ns 829871 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47216807ns 829876 1a110850 fd5ff06f jal x0, -44 +47217091ns 829881 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47217375ns 829886 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47217773ns 829893 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47217944ns 829896 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47218398ns 829904 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47218569ns 829907 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47218853ns 829912 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47219137ns 829917 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47219421ns 829922 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47219876ns 829930 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47220046ns 829933 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47220331ns 829938 1a110850 fd5ff06f jal x0, -44 +47220615ns 829943 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47220899ns 829948 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47221297ns 829955 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47221467ns 829958 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47221922ns 829966 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47222092ns 829969 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47222376ns 829974 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47222661ns 829979 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47222945ns 829984 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47223399ns 829992 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47223570ns 829995 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47223854ns 830000 1a110850 fd5ff06f jal x0, -44 +47224138ns 830005 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47224422ns 830010 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47224820ns 830017 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47224991ns 830020 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47225445ns 830028 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47225616ns 830031 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47225900ns 830036 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47226184ns 830041 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47226468ns 830046 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47226923ns 830054 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47227094ns 830057 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47227378ns 830062 1a110850 fd5ff06f jal x0, -44 +47227662ns 830067 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47227946ns 830072 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47228344ns 830079 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47228514ns 830082 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47228969ns 830090 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47229139ns 830093 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47229424ns 830098 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47229708ns 830103 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47229992ns 830108 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47230447ns 830116 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47230617ns 830119 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47230901ns 830124 1a110850 fd5ff06f jal x0, -44 +47231185ns 830129 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47231470ns 830134 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47231867ns 830141 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47232038ns 830144 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47232493ns 830152 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47232663ns 830155 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47232947ns 830160 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47233231ns 830165 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47233516ns 830170 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47233970ns 830178 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47234141ns 830181 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47234425ns 830186 1a110850 fd5ff06f jal x0, -44 +47234709ns 830191 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47234993ns 830196 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47235391ns 830203 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47235562ns 830206 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47236016ns 830214 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47236187ns 830217 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47236471ns 830222 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47236755ns 830227 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47237039ns 830232 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47237494ns 830240 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47237664ns 830243 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47237948ns 830248 1a110850 fd5ff06f jal x0, -44 +47238233ns 830253 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47238517ns 830258 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47238915ns 830265 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47239085ns 830268 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47239540ns 830276 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47239710ns 830279 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47239994ns 830284 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47240279ns 830289 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47240563ns 830294 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47241017ns 830302 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47241188ns 830305 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47241472ns 830310 1a110850 fd5ff06f jal x0, -44 +47241756ns 830315 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47242040ns 830320 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47242438ns 830327 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47242609ns 830330 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47243063ns 830338 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47243234ns 830341 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47243518ns 830346 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47243802ns 830351 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47244086ns 830356 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47244541ns 830364 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47244711ns 830367 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47244996ns 830372 1a110850 fd5ff06f jal x0, -44 +47245280ns 830377 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47245564ns 830382 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47245962ns 830389 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47246132ns 830392 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47246587ns 830400 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47246757ns 830403 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47247042ns 830408 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47247326ns 830413 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47247610ns 830418 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47248065ns 830426 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47248235ns 830429 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47248519ns 830434 1a110850 fd5ff06f jal x0, -44 +47248803ns 830439 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47249088ns 830444 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47249485ns 830451 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47249656ns 830454 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47250111ns 830462 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47250281ns 830465 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47250565ns 830470 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47250849ns 830475 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47251133ns 830480 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47251588ns 830488 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47251759ns 830491 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47252043ns 830496 1a110850 fd5ff06f jal x0, -44 +47252327ns 830501 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47252611ns 830506 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47253009ns 830513 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47253179ns 830516 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47253634ns 830524 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47253805ns 830527 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47254089ns 830532 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47254373ns 830537 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47254657ns 830542 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47255112ns 830550 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47255282ns 830553 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47255566ns 830558 1a110850 fd5ff06f jal x0, -44 +47255851ns 830563 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47256135ns 830568 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47256533ns 830575 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47256703ns 830578 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47257158ns 830586 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47257328ns 830589 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47257612ns 830594 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47257896ns 830599 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47258181ns 830604 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47258635ns 830612 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47258806ns 830615 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47259090ns 830620 1a110850 fd5ff06f jal x0, -44 +47259374ns 830625 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47259658ns 830630 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47260056ns 830637 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47260227ns 830640 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47260681ns 830648 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47260852ns 830651 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47261136ns 830656 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47261420ns 830661 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47261704ns 830666 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47262159ns 830674 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47262329ns 830677 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47262614ns 830682 1a110850 fd5ff06f jal x0, -44 +47262898ns 830687 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47263182ns 830692 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47263580ns 830699 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47263750ns 830702 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47264205ns 830710 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47264375ns 830713 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47264659ns 830718 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47264944ns 830723 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47265228ns 830728 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47265682ns 830736 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47265853ns 830739 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47266137ns 830744 1a110850 fd5ff06f jal x0, -44 +47266421ns 830749 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47266705ns 830754 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47267103ns 830761 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47267274ns 830764 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47267728ns 830772 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47267899ns 830775 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47268183ns 830780 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47268467ns 830785 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47268751ns 830790 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47269206ns 830798 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47269377ns 830801 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47269661ns 830806 1a110850 fd5ff06f jal x0, -44 +47269945ns 830811 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47270229ns 830816 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47270627ns 830823 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47270797ns 830826 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47271252ns 830834 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47271423ns 830837 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47271707ns 830842 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47271991ns 830847 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47272275ns 830852 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47272730ns 830860 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47272900ns 830863 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47273184ns 830868 1a110850 fd5ff06f jal x0, -44 +47273468ns 830873 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47273753ns 830878 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47274150ns 830885 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47274321ns 830888 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47274776ns 830896 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47274946ns 830899 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47275230ns 830904 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47275514ns 830909 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47275799ns 830914 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47276253ns 830922 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47276424ns 830925 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47276708ns 830930 1a110850 fd5ff06f jal x0, -44 +47276992ns 830935 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47277276ns 830940 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47277674ns 830947 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47277845ns 830950 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47278299ns 830958 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47278470ns 830961 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47278754ns 830966 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47279038ns 830971 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47279322ns 830976 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47279777ns 830984 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47279947ns 830987 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47280231ns 830992 1a110850 fd5ff06f jal x0, -44 +47280516ns 830997 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47280800ns 831002 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47281198ns 831009 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47281368ns 831012 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47281823ns 831020 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47281993ns 831023 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47282277ns 831028 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47282562ns 831033 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47282846ns 831038 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47283300ns 831046 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47283471ns 831049 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47283755ns 831054 1a110850 fd5ff06f jal x0, -44 +47284039ns 831059 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47284323ns 831064 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47284721ns 831071 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47284892ns 831074 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47285346ns 831082 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47285517ns 831085 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47285801ns 831090 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47286085ns 831095 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47286369ns 831100 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47286824ns 831108 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47286994ns 831111 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47287279ns 831116 1a110850 fd5ff06f jal x0, -44 +47287563ns 831121 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47287847ns 831126 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47288245ns 831133 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47288415ns 831136 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47288870ns 831144 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47289040ns 831147 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47289325ns 831152 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47289609ns 831157 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47289893ns 831162 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47290348ns 831170 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47290518ns 831173 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47290802ns 831178 1a110850 fd5ff06f jal x0, -44 +47291086ns 831183 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47291371ns 831188 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47291768ns 831195 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47291939ns 831198 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47292394ns 831206 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47292564ns 831209 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47292848ns 831214 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47293132ns 831219 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47293416ns 831224 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47293871ns 831232 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47294042ns 831235 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47294326ns 831240 1a110850 fd5ff06f jal x0, -44 +47294610ns 831245 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47294894ns 831250 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47295292ns 831257 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47295462ns 831260 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47295917ns 831268 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47296088ns 831271 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47296372ns 831276 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47296656ns 831281 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47296940ns 831286 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47297395ns 831294 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47297565ns 831297 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47297849ns 831302 1a110850 fd5ff06f jal x0, -44 +47298134ns 831307 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47298418ns 831312 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47298816ns 831319 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47298986ns 831322 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47299441ns 831330 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47299611ns 831333 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47299895ns 831338 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47300179ns 831343 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47300464ns 831348 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47300918ns 831356 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47301089ns 831359 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47301373ns 831364 1a110850 fd5ff06f jal x0, -44 +47301657ns 831369 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47301941ns 831374 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47302339ns 831381 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47302510ns 831384 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47302964ns 831392 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47303135ns 831395 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47303419ns 831400 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47303703ns 831405 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47303987ns 831410 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47304442ns 831418 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47304612ns 831421 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47304897ns 831426 1a110850 fd5ff06f jal x0, -44 +47305181ns 831431 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47305465ns 831436 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47305863ns 831443 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47306033ns 831446 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47306488ns 831454 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47306658ns 831457 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47306943ns 831462 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47307227ns 831467 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47307511ns 831472 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47307965ns 831480 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47308136ns 831483 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47308420ns 831488 1a110850 fd5ff06f jal x0, -44 +47308704ns 831493 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47308988ns 831498 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47309386ns 831505 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47309557ns 831508 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47310011ns 831516 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47310182ns 831519 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47310466ns 831524 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47310750ns 831529 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47311034ns 831534 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47311489ns 831542 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47311660ns 831545 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47311944ns 831550 1a110850 fd5ff06f jal x0, -44 +47312228ns 831555 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47312512ns 831560 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47312910ns 831567 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47313080ns 831570 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47313535ns 831578 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47313706ns 831581 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47313990ns 831586 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47314274ns 831591 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47314558ns 831596 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47315013ns 831604 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47315183ns 831607 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47315467ns 831612 1a110850 fd5ff06f jal x0, -44 +47315751ns 831617 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47316036ns 831622 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47316433ns 831629 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47316604ns 831632 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47317059ns 831640 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47317229ns 831643 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47317513ns 831648 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47317797ns 831653 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47318082ns 831658 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47318536ns 831666 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47318707ns 831669 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47318991ns 831674 1a110850 fd5ff06f jal x0, -44 +47319275ns 831679 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47319559ns 831684 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47319957ns 831691 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47320128ns 831694 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47320582ns 831702 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47320753ns 831705 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47321037ns 831710 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47321321ns 831715 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47321605ns 831720 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47322060ns 831728 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47322230ns 831731 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47322514ns 831736 1a110850 fd5ff06f jal x0, -44 +47322799ns 831741 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47323083ns 831746 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47323481ns 831753 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47323651ns 831756 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47324106ns 831764 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47324276ns 831767 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47324560ns 831772 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47324845ns 831777 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47325129ns 831782 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47325583ns 831790 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47325754ns 831793 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47326038ns 831798 1a110850 fd5ff06f jal x0, -44 +47326322ns 831803 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47326606ns 831808 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47327004ns 831815 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47327175ns 831818 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47327629ns 831826 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47327800ns 831829 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47328084ns 831834 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47328368ns 831839 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47328652ns 831844 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47329107ns 831852 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47329277ns 831855 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47329562ns 831860 1a110850 fd5ff06f jal x0, -44 +47329846ns 831865 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47330130ns 831870 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47330528ns 831877 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47330698ns 831880 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47331153ns 831888 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47331323ns 831891 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47331608ns 831896 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47331892ns 831901 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47332176ns 831906 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47332631ns 831914 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47332801ns 831917 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47333085ns 831922 1a110850 fd5ff06f jal x0, -44 +47333369ns 831927 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47333654ns 831932 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47334051ns 831939 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47334222ns 831942 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47334677ns 831950 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47334847ns 831953 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47335131ns 831958 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47335415ns 831963 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47335699ns 831968 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47336154ns 831976 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47336325ns 831979 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47336609ns 831984 1a110850 fd5ff06f jal x0, -44 +47336893ns 831989 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47337177ns 831994 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47337575ns 832001 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47337745ns 832004 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47338200ns 832012 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47338371ns 832015 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47338655ns 832020 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47338939ns 832025 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47339223ns 832030 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47339678ns 832038 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47339848ns 832041 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47340132ns 832046 1a110850 fd5ff06f jal x0, -44 +47340417ns 832051 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47340701ns 832056 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47341099ns 832063 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47341269ns 832066 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47341724ns 832074 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47341894ns 832077 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47342178ns 832082 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47342463ns 832087 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47342747ns 832092 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47343201ns 832100 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47343372ns 832103 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47343656ns 832108 1a110850 fd5ff06f jal x0, -44 +47343940ns 832113 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47344224ns 832118 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47344622ns 832125 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47344793ns 832128 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47345247ns 832136 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47345418ns 832139 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47345702ns 832144 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47345986ns 832149 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47346270ns 832154 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47346725ns 832162 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47346895ns 832165 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47347180ns 832170 1a110850 fd5ff06f jal x0, -44 +47347464ns 832175 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47347748ns 832180 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47348146ns 832187 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47348316ns 832190 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47348771ns 832198 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47348941ns 832201 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47349226ns 832206 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47349510ns 832211 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47349794ns 832216 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47350248ns 832224 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47350419ns 832227 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47350703ns 832232 1a110850 fd5ff06f jal x0, -44 +47350987ns 832237 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47351271ns 832242 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47351669ns 832249 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47351840ns 832252 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47352294ns 832260 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47352465ns 832263 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47352749ns 832268 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47353033ns 832273 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47353317ns 832278 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47353772ns 832286 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47353943ns 832289 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47354227ns 832294 1a110850 fd5ff06f jal x0, -44 +47354511ns 832299 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47354795ns 832304 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47355193ns 832311 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47355363ns 832314 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47355818ns 832322 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47355989ns 832325 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47356273ns 832330 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47356557ns 832335 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47356841ns 832340 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47357296ns 832348 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47357466ns 832351 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47357750ns 832356 1a110850 fd5ff06f jal x0, -44 +47358034ns 832361 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47358319ns 832366 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47358716ns 832373 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47358887ns 832376 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47359342ns 832384 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47359512ns 832387 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47359796ns 832392 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47360080ns 832397 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47360365ns 832402 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47360819ns 832410 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47360990ns 832413 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47361274ns 832418 1a110850 fd5ff06f jal x0, -44 +47361558ns 832423 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47361842ns 832428 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47362240ns 832435 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47362411ns 832438 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47362865ns 832446 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47363036ns 832449 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47363320ns 832454 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47363604ns 832459 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47363888ns 832464 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47364343ns 832472 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47364513ns 832475 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47364797ns 832480 1a110850 fd5ff06f jal x0, -44 +47365082ns 832485 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47365366ns 832490 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47365764ns 832497 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47365934ns 832500 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47366389ns 832508 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47366559ns 832511 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47366843ns 832516 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47367128ns 832521 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47367412ns 832526 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47367866ns 832534 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47368037ns 832537 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47368321ns 832542 1a110850 fd5ff06f jal x0, -44 +47368605ns 832547 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47368889ns 832552 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47369287ns 832559 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47369458ns 832562 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47369912ns 832570 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47370083ns 832573 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47370367ns 832578 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47370651ns 832583 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47370935ns 832588 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47371390ns 832596 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47371560ns 832599 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47371845ns 832604 1a110850 fd5ff06f jal x0, -44 +47372129ns 832609 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47372413ns 832614 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47372811ns 832621 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47372981ns 832624 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47373436ns 832632 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47373606ns 832635 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47373891ns 832640 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47374175ns 832645 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47374459ns 832650 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47374914ns 832658 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47375084ns 832661 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47375368ns 832666 1a110850 fd5ff06f jal x0, -44 +47375652ns 832671 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47375937ns 832676 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47376334ns 832683 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47376505ns 832686 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47376960ns 832694 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47377130ns 832697 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47377414ns 832702 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47377698ns 832707 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47377983ns 832712 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47378437ns 832720 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47378608ns 832723 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47378892ns 832728 1a110850 fd5ff06f jal x0, -44 +47379176ns 832733 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47379460ns 832738 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47379858ns 832745 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47380028ns 832748 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47380483ns 832756 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47380654ns 832759 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47380938ns 832764 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47381222ns 832769 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47381506ns 832774 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47381961ns 832782 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47382131ns 832785 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47382415ns 832790 1a110850 fd5ff06f jal x0, -44 +47382700ns 832795 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47382984ns 832800 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47383382ns 832807 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47383552ns 832810 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47384007ns 832818 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47384177ns 832821 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47384461ns 832826 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47384746ns 832831 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47385030ns 832836 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47385484ns 832844 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47385655ns 832847 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47385939ns 832852 1a110850 fd5ff06f jal x0, -44 +47386223ns 832857 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47386507ns 832862 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47386905ns 832869 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47387076ns 832872 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47387530ns 832880 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47387701ns 832883 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47387985ns 832888 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47388269ns 832893 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47388553ns 832898 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47389008ns 832906 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47389178ns 832909 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47389463ns 832914 1a110850 fd5ff06f jal x0, -44 +47389747ns 832919 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47390031ns 832924 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47390429ns 832931 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47390599ns 832934 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47391054ns 832942 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47391224ns 832945 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47391509ns 832950 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47391793ns 832955 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47392077ns 832960 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47392531ns 832968 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47392702ns 832971 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47392986ns 832976 1a110850 fd5ff06f jal x0, -44 +47393270ns 832981 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47393554ns 832986 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47393952ns 832993 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47394123ns 832996 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47394577ns 833004 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47394748ns 833007 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47395032ns 833012 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47395316ns 833017 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47395600ns 833022 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47396055ns 833030 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47396226ns 833033 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47396510ns 833038 1a110850 fd5ff06f jal x0, -44 +47396794ns 833043 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47397078ns 833048 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47397476ns 833055 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47397646ns 833058 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47398101ns 833066 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47398272ns 833069 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47398556ns 833074 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47398840ns 833079 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47399124ns 833084 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47399579ns 833092 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47399749ns 833095 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47400033ns 833100 1a110850 fd5ff06f jal x0, -44 +47400317ns 833105 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47400602ns 833110 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47400999ns 833117 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47401170ns 833120 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47401625ns 833128 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47401795ns 833131 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47402079ns 833136 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47402363ns 833141 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47402648ns 833146 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47403102ns 833154 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47403273ns 833157 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47403557ns 833162 1a110850 fd5ff06f jal x0, -44 +47403841ns 833167 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47404125ns 833172 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47404523ns 833179 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47404694ns 833182 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47405148ns 833190 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47405319ns 833193 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47405603ns 833198 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47405887ns 833203 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47406171ns 833208 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47406626ns 833216 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47406796ns 833219 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47407080ns 833224 1a110850 fd5ff06f jal x0, -44 +47407365ns 833229 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47407649ns 833234 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47408047ns 833241 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47408217ns 833244 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47408672ns 833252 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47408842ns 833255 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47409126ns 833260 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47409411ns 833265 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47409695ns 833270 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47410149ns 833278 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47410320ns 833281 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47410604ns 833286 1a110850 fd5ff06f jal x0, -44 +47410888ns 833291 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47411172ns 833296 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47411570ns 833303 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47411741ns 833306 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47412195ns 833314 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47412366ns 833317 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47412650ns 833322 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47412934ns 833327 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47413218ns 833332 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47413673ns 833340 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47413843ns 833343 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47414128ns 833348 1a110850 fd5ff06f jal x0, -44 +47414412ns 833353 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47414696ns 833358 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47415094ns 833365 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47415264ns 833368 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47415719ns 833376 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47415889ns 833379 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47416174ns 833384 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47416458ns 833389 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47416742ns 833394 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47417197ns 833402 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47417367ns 833405 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47417651ns 833410 1a110850 fd5ff06f jal x0, -44 +47417935ns 833415 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47418220ns 833420 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47418617ns 833427 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47418788ns 833430 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47419243ns 833438 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47419413ns 833441 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47419697ns 833446 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47419981ns 833451 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47420266ns 833456 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47420720ns 833464 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47420891ns 833467 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47421175ns 833472 1a110850 fd5ff06f jal x0, -44 +47421459ns 833477 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47421743ns 833482 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47422141ns 833489 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47422311ns 833492 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47422766ns 833500 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47422937ns 833503 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47423221ns 833508 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47423505ns 833513 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47423789ns 833518 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47424244ns 833526 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47424414ns 833529 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47424698ns 833534 1a110850 fd5ff06f jal x0, -44 +47424983ns 833539 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47425267ns 833544 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47425665ns 833551 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47425835ns 833554 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47426290ns 833562 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47426460ns 833565 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47426744ns 833570 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47427029ns 833575 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47427313ns 833580 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47427767ns 833588 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47427938ns 833591 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47428222ns 833596 1a110850 fd5ff06f jal x0, -44 +47428506ns 833601 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47428790ns 833606 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47429188ns 833613 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47429359ns 833616 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47429813ns 833624 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47429984ns 833627 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47430268ns 833632 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47430552ns 833637 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47430836ns 833642 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47431291ns 833650 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47431461ns 833653 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47431746ns 833658 1a110850 fd5ff06f jal x0, -44 +47432030ns 833663 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47432314ns 833668 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47432712ns 833675 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47432882ns 833678 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47433337ns 833686 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47433507ns 833689 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47433792ns 833694 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47434076ns 833699 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47434360ns 833704 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47434815ns 833712 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47434985ns 833715 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47435269ns 833720 1a110850 fd5ff06f jal x0, -44 +47435553ns 833725 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47435837ns 833730 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47436235ns 833737 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47436406ns 833740 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47436860ns 833748 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47437031ns 833751 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47437315ns 833756 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47437599ns 833761 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47437883ns 833766 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47438338ns 833774 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47438509ns 833777 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47438793ns 833782 1a110850 fd5ff06f jal x0, -44 +47439077ns 833787 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47439361ns 833792 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47439759ns 833799 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47439929ns 833802 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47440384ns 833810 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47440555ns 833813 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47440839ns 833818 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47441123ns 833823 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47441407ns 833828 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47441862ns 833836 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47442032ns 833839 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47442316ns 833844 1a110850 fd5ff06f jal x0, -44 +47442600ns 833849 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47442885ns 833854 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47443282ns 833861 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47443453ns 833864 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47443908ns 833872 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47444078ns 833875 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47444362ns 833880 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47444646ns 833885 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47444931ns 833890 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47445385ns 833898 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47445556ns 833901 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47445840ns 833906 1a110850 fd5ff06f jal x0, -44 +47446124ns 833911 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47446408ns 833916 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47446806ns 833923 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47446977ns 833926 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47447431ns 833934 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47447602ns 833937 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47447886ns 833942 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47448170ns 833947 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47448454ns 833952 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47448909ns 833960 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47449079ns 833963 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47449363ns 833968 1a110850 fd5ff06f jal x0, -44 +47449648ns 833973 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47449932ns 833978 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47450330ns 833985 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47450500ns 833988 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47450955ns 833996 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47451125ns 833999 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47451409ns 834004 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47451694ns 834009 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47451978ns 834014 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47452432ns 834022 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47452603ns 834025 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47452887ns 834030 1a110850 fd5ff06f jal x0, -44 +47453171ns 834035 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47453455ns 834040 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47453853ns 834047 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47454024ns 834050 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47454478ns 834058 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47454649ns 834061 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47454933ns 834066 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47455217ns 834071 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47455501ns 834076 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47455956ns 834084 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47456127ns 834087 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47456411ns 834092 1a110850 fd5ff06f jal x0, -44 +47456695ns 834097 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47456979ns 834102 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47457377ns 834109 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47457547ns 834112 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47458002ns 834120 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47458172ns 834123 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47458457ns 834128 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47458741ns 834133 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47459025ns 834138 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47459480ns 834146 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47459650ns 834149 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47459934ns 834154 1a110850 fd5ff06f jal x0, -44 +47460218ns 834159 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47460503ns 834164 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47460900ns 834171 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47461071ns 834174 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47461526ns 834182 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47461696ns 834185 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47461980ns 834190 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47462264ns 834195 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47462549ns 834200 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47463003ns 834208 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47463174ns 834211 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47463458ns 834216 1a110850 fd5ff06f jal x0, -44 +47463742ns 834221 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47464026ns 834226 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47464424ns 834233 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47464594ns 834236 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47465049ns 834244 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47465220ns 834247 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47465504ns 834252 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47465788ns 834257 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47466072ns 834262 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47466527ns 834270 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47466697ns 834273 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47466981ns 834278 1a110850 fd5ff06f jal x0, -44 +47467266ns 834283 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47467550ns 834288 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47467948ns 834295 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47468118ns 834298 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47468573ns 834306 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47468743ns 834309 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47469027ns 834314 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47469312ns 834319 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47469596ns 834324 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47470050ns 834332 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47470221ns 834335 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47470505ns 834340 1a110850 fd5ff06f jal x0, -44 +47470789ns 834345 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47471073ns 834350 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47471471ns 834357 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47471642ns 834360 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47472096ns 834368 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47472267ns 834371 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47472551ns 834376 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47472835ns 834381 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47473119ns 834386 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47473574ns 834394 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47473744ns 834397 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47474029ns 834402 1a110850 fd5ff06f jal x0, -44 +47474313ns 834407 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47474597ns 834412 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47474995ns 834419 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47475165ns 834422 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47475620ns 834430 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47475790ns 834433 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47476075ns 834438 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47476359ns 834443 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47476643ns 834448 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47477098ns 834456 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47477268ns 834459 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47477552ns 834464 1a110850 fd5ff06f jal x0, -44 +47477836ns 834469 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47478120ns 834474 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47478518ns 834481 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47478689ns 834484 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47479143ns 834492 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47479314ns 834495 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47479598ns 834500 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47479882ns 834505 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47480166ns 834510 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47480621ns 834518 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47480792ns 834521 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47481076ns 834526 1a110850 fd5ff06f jal x0, -44 +47481360ns 834531 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47481644ns 834536 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47482042ns 834543 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47482212ns 834546 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47482667ns 834554 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47482838ns 834557 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47483122ns 834562 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47483406ns 834567 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47483690ns 834572 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47484145ns 834580 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47484315ns 834583 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47484599ns 834588 1a110850 fd5ff06f jal x0, -44 +47484883ns 834593 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47485168ns 834598 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47485565ns 834605 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47485736ns 834608 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47486191ns 834616 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47486361ns 834619 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47486645ns 834624 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47486929ns 834629 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47487214ns 834634 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47487668ns 834642 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47487839ns 834645 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47488123ns 834650 1a110850 fd5ff06f jal x0, -44 +47488407ns 834655 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47488691ns 834660 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47489089ns 834667 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47489260ns 834670 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47489714ns 834678 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47489885ns 834681 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47490169ns 834686 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47490453ns 834691 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47490737ns 834696 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47491192ns 834704 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47491362ns 834707 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47491647ns 834712 1a110850 fd5ff06f jal x0, -44 +47491931ns 834717 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47492215ns 834722 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47492613ns 834729 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47492783ns 834732 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47493238ns 834740 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47493408ns 834743 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47493692ns 834748 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47493977ns 834753 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47494261ns 834758 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47494715ns 834766 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47494886ns 834769 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47495170ns 834774 1a110850 fd5ff06f jal x0, -44 +47495454ns 834779 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47495738ns 834784 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47496136ns 834791 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47496307ns 834794 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47496761ns 834802 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47496932ns 834805 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47497216ns 834810 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47497500ns 834815 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47497784ns 834820 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47498239ns 834828 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47498410ns 834831 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47498694ns 834836 1a110850 fd5ff06f jal x0, -44 +47498978ns 834841 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47499262ns 834846 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47499660ns 834853 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47499830ns 834856 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47500285ns 834864 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47500455ns 834867 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47500740ns 834872 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47501024ns 834877 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47501308ns 834882 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47501763ns 834890 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47501933ns 834893 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47502217ns 834898 1a110850 fd5ff06f jal x0, -44 +47502501ns 834903 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47502786ns 834908 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47503183ns 834915 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47503354ns 834918 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47503809ns 834926 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47503979ns 834929 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47504263ns 834934 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47504547ns 834939 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47504832ns 834944 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47505286ns 834952 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47505457ns 834955 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47505741ns 834960 1a110850 fd5ff06f jal x0, -44 +47506025ns 834965 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47506309ns 834970 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47506707ns 834977 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47506877ns 834980 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47507332ns 834988 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47507503ns 834991 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47507787ns 834996 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47508071ns 835001 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47508355ns 835006 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47508810ns 835014 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47508980ns 835017 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47509264ns 835022 1a110850 fd5ff06f jal x0, -44 +47509549ns 835027 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47509833ns 835032 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47510231ns 835039 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47510401ns 835042 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47510856ns 835050 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47511026ns 835053 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47511310ns 835058 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47511595ns 835063 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47511879ns 835068 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47512333ns 835076 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47512504ns 835079 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47512788ns 835084 1a110850 fd5ff06f jal x0, -44 +47513072ns 835089 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47513356ns 835094 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47513754ns 835101 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47513925ns 835104 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47514379ns 835112 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47514550ns 835115 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47514834ns 835120 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47515118ns 835125 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47515402ns 835130 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47515857ns 835138 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47516027ns 835141 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47516312ns 835146 1a110850 fd5ff06f jal x0, -44 +47516596ns 835151 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47516880ns 835156 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47517278ns 835163 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47517448ns 835166 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47517903ns 835174 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47518073ns 835177 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47518358ns 835182 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47518642ns 835187 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47518926ns 835192 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47519381ns 835200 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47519551ns 835203 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47519835ns 835208 1a110850 fd5ff06f jal x0, -44 +47520119ns 835213 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47520403ns 835218 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47520801ns 835225 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47520972ns 835228 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47521426ns 835236 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47521597ns 835239 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47521881ns 835244 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47522165ns 835249 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47522449ns 835254 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47522904ns 835262 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47523075ns 835265 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47523359ns 835270 1a110850 fd5ff06f jal x0, -44 +47523643ns 835275 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47523927ns 835280 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47524325ns 835287 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47524495ns 835290 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47524950ns 835298 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47525121ns 835301 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47525405ns 835306 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47525689ns 835311 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47525973ns 835316 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47526428ns 835324 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47526598ns 835327 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47526882ns 835332 1a110850 fd5ff06f jal x0, -44 +47527167ns 835337 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47527451ns 835342 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47527848ns 835349 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47528019ns 835352 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47528474ns 835360 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47528644ns 835363 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47528928ns 835368 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47529212ns 835373 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47529497ns 835378 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47529951ns 835386 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47530122ns 835389 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47530406ns 835394 1a110850 fd5ff06f jal x0, -44 +47530690ns 835399 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47530974ns 835404 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47531372ns 835411 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47531543ns 835414 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47531997ns 835422 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47532168ns 835425 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47532452ns 835430 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47532736ns 835435 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47533020ns 835440 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47533475ns 835448 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47533645ns 835451 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47533930ns 835456 1a110850 fd5ff06f jal x0, -44 +47534214ns 835461 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47534498ns 835466 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47534896ns 835473 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47535066ns 835476 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47535521ns 835484 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47535691ns 835487 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47535975ns 835492 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47536260ns 835497 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47536544ns 835502 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47536998ns 835510 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47537169ns 835513 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47537453ns 835518 1a110850 fd5ff06f jal x0, -44 +47537737ns 835523 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47538021ns 835528 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47538419ns 835535 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47538590ns 835538 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47539044ns 835546 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47539215ns 835549 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47539499ns 835554 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47539783ns 835559 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47540067ns 835564 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47540522ns 835572 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47540693ns 835575 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47540977ns 835580 1a110850 fd5ff06f jal x0, -44 +47541261ns 835585 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47541545ns 835590 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47541943ns 835597 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47542113ns 835600 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47542568ns 835608 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47542738ns 835611 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47543023ns 835616 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47543307ns 835621 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47543591ns 835626 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47544046ns 835634 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47544216ns 835637 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47544500ns 835642 1a110850 fd5ff06f jal x0, -44 +47544784ns 835647 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47545069ns 835652 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47545466ns 835659 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47545637ns 835662 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47546092ns 835670 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47546262ns 835673 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47546546ns 835678 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47546830ns 835683 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47547115ns 835688 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47547569ns 835696 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47547740ns 835699 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47548024ns 835704 1a110850 fd5ff06f jal x0, -44 +47548308ns 835709 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47548592ns 835714 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47548990ns 835721 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47549160ns 835724 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47549615ns 835732 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47549786ns 835735 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47550070ns 835740 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47550354ns 835745 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47550638ns 835750 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47551093ns 835758 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47551263ns 835761 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47551547ns 835766 1a110850 fd5ff06f jal x0, -44 +47551832ns 835771 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47552116ns 835776 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47552514ns 835783 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47552684ns 835786 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47553139ns 835794 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47553309ns 835797 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47553593ns 835802 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47553878ns 835807 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47554162ns 835812 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47554616ns 835820 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47554787ns 835823 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47555071ns 835828 1a110850 fd5ff06f jal x0, -44 +47555355ns 835833 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47555639ns 835838 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47556037ns 835845 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47556208ns 835848 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47556662ns 835856 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47556833ns 835859 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47557117ns 835864 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47557401ns 835869 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47557685ns 835874 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47558140ns 835882 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47558310ns 835885 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47558595ns 835890 1a110850 fd5ff06f jal x0, -44 +47558879ns 835895 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47559163ns 835900 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47559561ns 835907 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47559731ns 835910 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47560186ns 835918 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47560356ns 835921 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47560641ns 835926 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47560925ns 835931 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47561209ns 835936 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47561664ns 835944 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47561834ns 835947 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47562118ns 835952 1a110850 fd5ff06f jal x0, -44 +47562402ns 835957 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47562687ns 835962 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47563084ns 835969 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47563255ns 835972 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47563709ns 835980 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47563880ns 835983 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47564164ns 835988 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47564448ns 835993 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47564732ns 835998 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47565187ns 836006 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47565358ns 836009 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47565642ns 836014 1a110850 fd5ff06f jal x0, -44 +47565926ns 836019 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47566210ns 836024 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47566608ns 836031 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47566778ns 836034 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47567233ns 836042 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47567404ns 836045 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47567688ns 836050 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47567972ns 836055 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47568256ns 836060 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47568711ns 836068 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47568881ns 836071 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47569165ns 836076 1a110850 fd5ff06f jal x0, -44 +47569450ns 836081 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47569734ns 836086 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47570131ns 836093 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47570302ns 836096 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47570757ns 836104 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47570927ns 836107 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47571211ns 836112 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47571495ns 836117 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47571780ns 836122 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47572234ns 836130 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47572405ns 836133 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47572689ns 836138 1a110850 fd5ff06f jal x0, -44 +47572973ns 836143 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47573257ns 836148 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47573655ns 836155 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47573826ns 836158 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47574280ns 836166 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47574451ns 836169 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47574735ns 836174 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47575019ns 836179 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47575303ns 836184 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47575758ns 836192 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47575928ns 836195 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47576213ns 836200 1a110850 fd5ff06f jal x0, -44 +47576497ns 836205 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47576781ns 836210 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47577179ns 836217 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47577349ns 836220 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47577804ns 836228 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47577974ns 836231 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47578258ns 836236 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47578543ns 836241 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47578827ns 836246 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47579281ns 836254 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47579452ns 836257 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47579736ns 836262 1a110850 fd5ff06f jal x0, -44 +47580020ns 836267 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47580304ns 836272 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47580702ns 836279 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47580873ns 836282 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47581327ns 836290 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47581498ns 836293 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47581782ns 836298 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47582066ns 836303 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47582350ns 836308 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47582805ns 836316 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47582976ns 836319 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47583260ns 836324 1a110850 fd5ff06f jal x0, -44 +47583544ns 836329 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47583828ns 836334 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47584226ns 836341 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47584396ns 836344 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47584851ns 836352 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47585021ns 836355 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47585306ns 836360 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47585590ns 836365 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47585874ns 836370 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47586329ns 836378 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47586499ns 836381 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47586783ns 836386 1a110850 fd5ff06f jal x0, -44 +47587067ns 836391 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47587352ns 836396 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47587749ns 836403 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47587920ns 836406 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47588375ns 836414 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47588545ns 836417 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47588829ns 836422 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47589113ns 836427 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47589398ns 836432 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47589852ns 836440 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47590023ns 836443 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47590307ns 836448 1a110850 fd5ff06f jal x0, -44 +47590591ns 836453 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47590875ns 836458 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47591273ns 836465 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47591443ns 836468 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47591898ns 836476 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47592069ns 836479 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47592353ns 836484 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47592637ns 836489 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47592921ns 836494 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47593376ns 836502 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47593546ns 836505 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47593830ns 836510 1a110850 fd5ff06f jal x0, -44 +47594115ns 836515 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47594399ns 836520 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47594797ns 836527 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47594967ns 836530 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47595422ns 836538 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47595592ns 836541 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47595876ns 836546 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47596161ns 836551 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47596445ns 836556 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47596899ns 836564 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47597070ns 836567 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47597354ns 836572 1a110850 fd5ff06f jal x0, -44 +47597638ns 836577 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47597922ns 836582 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47598320ns 836589 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47598491ns 836592 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47598945ns 836600 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47599116ns 836603 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47599400ns 836608 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47599684ns 836613 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47599968ns 836618 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47600423ns 836626 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47600593ns 836629 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47600878ns 836634 1a110850 fd5ff06f jal x0, -44 +47601162ns 836639 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47601446ns 836644 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47601844ns 836651 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47602014ns 836654 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47602469ns 836662 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47602639ns 836665 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47602924ns 836670 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47603208ns 836675 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47603492ns 836680 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47603947ns 836688 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47604117ns 836691 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47604401ns 836696 1a110850 fd5ff06f jal x0, -44 +47604685ns 836701 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47604970ns 836706 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47605367ns 836713 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47605538ns 836716 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47605992ns 836724 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47606163ns 836727 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47606447ns 836732 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47606731ns 836737 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47607015ns 836742 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47607470ns 836750 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47607641ns 836753 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47607925ns 836758 1a110850 fd5ff06f jal x0, -44 +47608209ns 836763 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47608493ns 836768 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47608891ns 836775 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47609061ns 836778 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47609516ns 836786 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47609687ns 836789 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47609971ns 836794 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47610255ns 836799 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47610539ns 836804 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47610994ns 836812 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47611164ns 836815 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47611448ns 836820 1a110850 fd5ff06f jal x0, -44 +47611733ns 836825 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47612017ns 836830 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47612415ns 836837 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47612585ns 836840 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47613040ns 836848 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47613210ns 836851 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47613494ns 836856 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47613778ns 836861 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47614063ns 836866 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47614517ns 836874 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47614688ns 836877 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47614972ns 836882 1a110850 fd5ff06f jal x0, -44 +47615256ns 836887 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47615540ns 836892 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47615938ns 836899 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47616109ns 836902 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47616563ns 836910 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47616734ns 836913 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47617018ns 836918 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47617302ns 836923 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47617586ns 836928 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47618041ns 836936 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47618211ns 836939 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47618496ns 836944 1a110850 fd5ff06f jal x0, -44 +47618780ns 836949 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47619064ns 836954 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47619462ns 836961 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47619632ns 836964 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47620087ns 836972 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47620257ns 836975 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47620541ns 836980 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47620826ns 836985 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47621110ns 836990 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47621564ns 836998 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47621735ns 837001 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47622019ns 837006 1a110850 fd5ff06f jal x0, -44 +47622303ns 837011 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47622587ns 837016 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47622985ns 837023 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47623156ns 837026 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47623610ns 837034 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47623781ns 837037 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47624065ns 837042 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47624349ns 837047 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47624633ns 837052 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47625088ns 837060 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47625259ns 837063 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47625543ns 837068 1a110850 fd5ff06f jal x0, -44 +47625827ns 837073 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47626111ns 837078 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47626509ns 837085 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47626679ns 837088 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47627134ns 837096 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47627304ns 837099 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47627589ns 837104 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47627873ns 837109 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47628157ns 837114 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47628612ns 837122 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47628782ns 837125 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47629066ns 837130 1a110850 fd5ff06f jal x0, -44 +47629350ns 837135 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47629635ns 837140 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47630032ns 837147 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47630203ns 837150 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47630658ns 837158 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47630828ns 837161 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47631112ns 837166 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47631396ns 837171 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47631681ns 837176 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47632135ns 837184 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47632306ns 837187 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47632590ns 837192 1a110850 fd5ff06f jal x0, -44 +47632874ns 837197 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47633158ns 837202 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47633556ns 837209 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47633727ns 837212 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47634181ns 837220 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47634352ns 837223 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47634636ns 837228 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47634920ns 837233 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47635204ns 837238 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47635659ns 837246 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47635829ns 837249 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47636113ns 837254 1a110850 fd5ff06f jal x0, -44 +47636398ns 837259 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47636682ns 837264 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47637080ns 837271 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47637250ns 837274 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47637705ns 837282 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47637875ns 837285 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47638159ns 837290 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47638444ns 837295 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47638728ns 837300 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47639182ns 837308 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47639353ns 837311 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47639637ns 837316 1a110850 fd5ff06f jal x0, -44 +47639921ns 837321 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47640205ns 837326 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47640603ns 837333 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47640774ns 837336 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47641228ns 837344 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47641399ns 837347 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47641683ns 837352 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47641967ns 837357 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47642251ns 837362 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47642706ns 837370 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47642876ns 837373 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47643161ns 837378 1a110850 fd5ff06f jal x0, -44 +47643445ns 837383 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47643729ns 837388 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47644127ns 837395 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47644297ns 837398 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47644752ns 837406 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47644922ns 837409 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47645207ns 837414 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47645491ns 837419 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47645775ns 837424 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47646230ns 837432 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47646400ns 837435 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47646684ns 837440 1a110850 fd5ff06f jal x0, -44 +47646968ns 837445 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47647253ns 837450 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47647650ns 837457 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47647821ns 837460 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47648275ns 837468 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47648446ns 837471 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47648730ns 837476 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47649014ns 837481 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47649298ns 837486 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47649753ns 837494 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47649924ns 837497 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47650208ns 837502 1a110850 fd5ff06f jal x0, -44 +47650492ns 837507 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47650776ns 837512 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47651174ns 837519 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47651344ns 837522 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47651799ns 837530 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47651970ns 837533 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47652254ns 837538 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47652538ns 837543 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47652822ns 837548 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47653277ns 837556 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47653447ns 837559 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47653731ns 837564 1a110850 fd5ff06f jal x0, -44 +47654016ns 837569 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47654300ns 837574 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47654698ns 837581 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47654868ns 837584 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47655323ns 837592 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47655493ns 837595 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47655777ns 837600 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47656061ns 837605 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47656346ns 837610 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47656800ns 837618 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47656971ns 837621 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47657255ns 837626 1a110850 fd5ff06f jal x0, -44 +47657539ns 837631 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47657823ns 837636 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47658221ns 837643 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47658392ns 837646 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47658846ns 837654 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47659017ns 837657 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47659301ns 837662 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47659585ns 837667 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47659869ns 837672 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47660324ns 837680 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47660494ns 837683 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47660779ns 837688 1a110850 fd5ff06f jal x0, -44 +47661063ns 837693 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47661347ns 837698 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47661745ns 837705 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47661915ns 837708 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47662370ns 837716 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47662540ns 837719 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47662824ns 837724 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47663109ns 837729 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47663393ns 837734 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47663847ns 837742 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47664018ns 837745 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47664302ns 837750 1a110850 fd5ff06f jal x0, -44 +47664586ns 837755 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47664870ns 837760 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47665268ns 837767 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47665439ns 837770 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47665893ns 837778 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47666064ns 837781 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47666348ns 837786 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47666632ns 837791 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47666916ns 837796 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47667371ns 837804 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47667542ns 837807 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47667826ns 837812 1a110850 fd5ff06f jal x0, -44 +47668110ns 837817 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47668394ns 837822 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47668792ns 837829 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47668962ns 837832 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47669417ns 837840 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47669587ns 837843 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47669872ns 837848 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47670156ns 837853 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47670440ns 837858 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47670895ns 837866 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47671065ns 837869 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47671349ns 837874 1a110850 fd5ff06f jal x0, -44 +47671633ns 837879 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47671918ns 837884 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47672315ns 837891 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47672486ns 837894 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47672941ns 837902 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47673111ns 837905 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47673395ns 837910 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47673679ns 837915 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47673964ns 837920 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47674418ns 837928 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47674589ns 837931 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47674873ns 837936 1a110850 fd5ff06f jal x0, -44 +47675157ns 837941 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47675441ns 837946 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47675839ns 837953 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47676010ns 837956 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47676464ns 837964 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47676635ns 837967 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47676919ns 837972 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47677203ns 837977 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47677487ns 837982 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47677942ns 837990 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47678112ns 837993 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47678396ns 837998 1a110850 fd5ff06f jal x0, -44 +47678681ns 838003 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47678965ns 838008 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47679363ns 838015 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47679533ns 838018 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47679988ns 838026 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47680158ns 838029 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47680442ns 838034 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47680727ns 838039 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47681011ns 838044 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47681465ns 838052 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47681636ns 838055 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47681920ns 838060 1a110850 fd5ff06f jal x0, -44 +47682204ns 838065 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47682488ns 838070 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47682886ns 838077 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47683057ns 838080 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47683511ns 838088 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47683682ns 838091 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47683966ns 838096 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47684250ns 838101 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47684534ns 838106 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47684989ns 838114 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47685159ns 838117 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47685444ns 838122 1a110850 fd5ff06f jal x0, -44 +47685728ns 838127 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47686012ns 838132 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47686410ns 838139 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47686580ns 838142 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47687035ns 838150 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47687205ns 838153 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47687490ns 838158 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47687774ns 838163 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47688058ns 838168 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47688513ns 838176 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47688683ns 838179 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47688967ns 838184 1a110850 fd5ff06f jal x0, -44 +47689251ns 838189 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47689536ns 838194 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47689933ns 838201 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47690104ns 838204 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47690559ns 838212 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47690729ns 838215 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47691013ns 838220 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47691297ns 838225 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47691581ns 838230 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47692036ns 838238 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47692207ns 838241 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47692491ns 838246 1a110850 fd5ff06f jal x0, -44 +47692775ns 838251 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47693059ns 838256 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47693457ns 838263 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47693627ns 838266 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47694082ns 838274 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47694253ns 838277 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47694537ns 838282 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47694821ns 838287 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47695105ns 838292 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47695560ns 838300 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47695730ns 838303 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47696014ns 838308 1a110850 fd5ff06f jal x0, -44 +47696299ns 838313 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47696583ns 838318 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47696981ns 838325 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47697151ns 838328 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47697606ns 838336 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47697776ns 838339 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47698060ns 838344 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47698344ns 838349 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47698629ns 838354 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47699083ns 838362 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47699254ns 838365 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47699538ns 838370 1a110850 fd5ff06f jal x0, -44 +47699822ns 838375 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47700106ns 838380 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47700504ns 838387 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47700675ns 838390 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47701129ns 838398 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47701300ns 838401 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47701584ns 838406 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47701868ns 838411 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47702152ns 838416 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47702607ns 838424 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47702777ns 838427 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47703062ns 838432 1a110850 fd5ff06f jal x0, -44 +47703346ns 838437 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47703630ns 838442 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47704028ns 838449 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47704198ns 838452 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47704653ns 838460 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47704823ns 838463 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47705107ns 838468 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47705392ns 838473 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47705676ns 838478 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47706130ns 838486 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47706301ns 838489 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47706585ns 838494 1a110850 fd5ff06f jal x0, -44 +47706869ns 838499 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47707153ns 838504 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47707551ns 838511 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47707722ns 838514 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47708176ns 838522 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47708347ns 838525 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47708631ns 838530 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47708915ns 838535 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47709199ns 838540 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47709654ns 838548 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47709825ns 838551 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47710109ns 838556 1a110850 fd5ff06f jal x0, -44 +47710393ns 838561 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47710677ns 838566 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47711075ns 838573 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47711245ns 838576 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47711700ns 838584 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47711871ns 838587 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47712155ns 838592 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47712439ns 838597 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47712723ns 838602 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47713178ns 838610 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47713348ns 838613 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47713632ns 838618 1a110850 fd5ff06f jal x0, -44 +47713916ns 838623 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47714201ns 838628 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47714598ns 838635 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47714769ns 838638 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47715224ns 838646 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47715394ns 838649 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47715678ns 838654 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47715962ns 838659 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47716247ns 838664 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47716701ns 838672 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47716872ns 838675 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47717156ns 838680 1a110850 fd5ff06f jal x0, -44 +47717440ns 838685 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47717724ns 838690 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47718122ns 838697 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47718293ns 838700 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47718747ns 838708 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47718918ns 838711 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47719202ns 838716 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47719486ns 838721 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47719770ns 838726 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47720225ns 838734 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47720395ns 838737 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47720679ns 838742 1a110850 fd5ff06f jal x0, -44 +47720964ns 838747 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47721248ns 838752 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47721646ns 838759 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47721816ns 838762 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47722271ns 838770 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47722441ns 838773 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47722725ns 838778 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47723010ns 838783 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47723294ns 838788 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47723748ns 838796 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47723919ns 838799 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47724203ns 838804 1a110850 fd5ff06f jal x0, -44 +47724487ns 838809 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47724771ns 838814 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47725169ns 838821 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47725340ns 838824 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47725794ns 838832 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47725965ns 838835 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47726249ns 838840 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47726533ns 838845 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47726817ns 838850 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47727272ns 838858 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47727442ns 838861 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47727727ns 838866 1a110850 fd5ff06f jal x0, -44 +47728011ns 838871 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47728295ns 838876 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47728693ns 838883 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47728863ns 838886 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47729318ns 838894 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47729488ns 838897 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47729773ns 838902 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47730057ns 838907 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47730341ns 838912 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47730796ns 838920 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47730966ns 838923 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47731250ns 838928 1a110850 fd5ff06f jal x0, -44 +47731534ns 838933 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47731819ns 838938 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47732216ns 838945 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47732387ns 838948 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47732842ns 838956 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47733012ns 838959 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47733296ns 838964 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47733580ns 838969 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47733864ns 838974 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47734319ns 838982 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47734490ns 838985 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47734774ns 838990 1a110850 fd5ff06f jal x0, -44 +47735058ns 838995 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47735342ns 839000 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47735740ns 839007 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47735910ns 839010 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47736365ns 839018 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47736536ns 839021 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47736820ns 839026 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47737104ns 839031 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47737388ns 839036 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47737843ns 839044 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47738013ns 839047 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47738297ns 839052 1a110850 fd5ff06f jal x0, -44 +47738582ns 839057 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47738866ns 839062 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47739264ns 839069 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47739434ns 839072 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47739889ns 839080 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47740059ns 839083 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47740343ns 839088 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47740627ns 839093 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47740912ns 839098 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47741366ns 839106 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47741537ns 839109 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47741821ns 839114 1a110850 fd5ff06f jal x0, -44 +47742105ns 839119 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47742389ns 839124 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47742787ns 839131 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47742958ns 839134 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47743412ns 839142 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47743583ns 839145 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47743867ns 839150 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47744151ns 839155 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47744435ns 839160 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47744890ns 839168 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47745060ns 839171 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47745345ns 839176 1a110850 fd5ff06f jal x0, -44 +47745629ns 839181 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47745913ns 839186 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47746311ns 839193 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47746481ns 839196 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47746936ns 839204 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47747106ns 839207 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47747391ns 839212 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47747675ns 839217 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47747959ns 839222 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47748413ns 839230 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47748584ns 839233 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47748868ns 839238 1a110850 fd5ff06f jal x0, -44 +47749152ns 839243 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47749436ns 839248 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47749834ns 839255 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47750005ns 839258 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47750459ns 839266 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47750630ns 839269 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47750914ns 839274 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47751198ns 839279 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47751482ns 839284 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47751937ns 839292 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47752108ns 839295 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47752392ns 839300 1a110850 fd5ff06f jal x0, -44 +47752676ns 839305 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47752960ns 839310 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47753358ns 839317 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47753528ns 839320 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47753983ns 839328 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47754154ns 839331 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47754438ns 839336 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47754722ns 839341 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47755006ns 839346 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47755461ns 839354 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47755631ns 839357 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47755915ns 839362 1a110850 fd5ff06f jal x0, -44 +47756199ns 839367 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47756484ns 839372 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47756881ns 839379 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47757052ns 839382 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47757507ns 839390 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47757677ns 839393 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47757961ns 839398 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47758245ns 839403 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47758530ns 839408 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47758984ns 839416 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47759155ns 839419 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47759439ns 839424 1a110850 fd5ff06f jal x0, -44 +47759723ns 839429 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47760007ns 839434 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47760405ns 839441 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47760576ns 839444 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47761030ns 839452 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47761201ns 839455 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47761485ns 839460 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47761769ns 839465 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47762053ns 839470 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47762508ns 839478 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47762678ns 839481 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47762962ns 839486 1a110850 fd5ff06f jal x0, -44 +47763247ns 839491 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47763531ns 839496 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47763929ns 839503 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47764099ns 839506 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47764554ns 839514 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47764724ns 839517 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47765008ns 839522 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47765293ns 839527 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47765577ns 839532 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47766031ns 839540 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47766202ns 839543 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47766486ns 839548 1a110850 fd5ff06f jal x0, -44 +47766770ns 839553 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47767054ns 839558 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47767452ns 839565 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47767623ns 839568 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47768077ns 839576 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47768248ns 839579 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47768532ns 839584 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47768816ns 839589 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47769100ns 839594 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47769555ns 839602 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47769725ns 839605 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47770010ns 839610 1a110850 fd5ff06f jal x0, -44 +47770294ns 839615 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47770578ns 839620 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47770976ns 839627 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47771146ns 839630 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47771601ns 839638 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47771771ns 839641 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47772056ns 839646 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47772340ns 839651 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47772624ns 839656 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47773079ns 839664 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47773249ns 839667 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47773533ns 839672 1a110850 fd5ff06f jal x0, -44 +47773817ns 839677 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47774102ns 839682 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47774499ns 839689 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47774670ns 839692 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47775125ns 839700 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47775295ns 839703 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47775579ns 839708 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47775863ns 839713 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47776147ns 839718 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47776602ns 839726 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47776773ns 839729 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47777057ns 839734 1a110850 fd5ff06f jal x0, -44 +47777341ns 839739 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47777625ns 839744 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47778023ns 839751 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47778193ns 839754 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47778648ns 839762 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47778819ns 839765 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47779103ns 839770 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47779387ns 839775 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47779671ns 839780 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47780126ns 839788 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47780296ns 839791 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47780580ns 839796 1a110850 fd5ff06f jal x0, -44 +47780865ns 839801 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47781149ns 839806 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47781547ns 839813 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47781717ns 839816 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47782172ns 839824 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47782342ns 839827 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47782626ns 839832 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47782911ns 839837 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47783195ns 839842 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47783649ns 839850 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47783820ns 839853 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47784104ns 839858 1a110850 fd5ff06f jal x0, -44 +47784388ns 839863 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47784672ns 839868 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47785070ns 839875 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47785241ns 839878 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47785695ns 839886 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47785866ns 839889 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47786150ns 839894 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47786434ns 839899 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47786718ns 839904 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47787173ns 839912 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47787343ns 839915 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47787628ns 839920 1a110850 fd5ff06f jal x0, -44 +47787912ns 839925 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47788196ns 839930 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47788594ns 839937 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47788764ns 839940 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47789219ns 839948 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47789389ns 839951 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47789674ns 839956 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47789958ns 839961 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47790242ns 839966 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47790696ns 839974 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47790867ns 839977 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47791151ns 839982 1a110850 fd5ff06f jal x0, -44 +47791435ns 839987 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47791719ns 839992 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47792117ns 839999 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47792288ns 840002 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47792742ns 840010 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47792913ns 840013 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47793197ns 840018 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47793481ns 840023 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47793765ns 840028 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47794220ns 840036 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47794391ns 840039 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47794675ns 840044 1a110850 fd5ff06f jal x0, -44 +47794959ns 840049 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47795243ns 840054 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47795641ns 840061 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47795811ns 840064 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47796266ns 840072 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47796437ns 840075 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47796721ns 840080 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47797005ns 840085 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47797289ns 840090 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47797744ns 840098 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47797914ns 840101 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47798198ns 840106 1a110850 fd5ff06f jal x0, -44 +47798482ns 840111 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47798767ns 840116 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47799164ns 840123 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47799335ns 840126 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47799790ns 840134 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47799960ns 840137 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47800244ns 840142 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47800528ns 840147 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47800813ns 840152 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47801267ns 840160 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47801438ns 840163 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47801722ns 840168 1a110850 fd5ff06f jal x0, -44 +47802006ns 840173 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47802290ns 840178 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47802688ns 840185 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47802859ns 840188 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47803313ns 840196 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47803484ns 840199 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47803768ns 840204 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47804052ns 840209 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47804336ns 840214 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47804791ns 840222 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47804961ns 840225 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47805245ns 840230 1a110850 fd5ff06f jal x0, -44 +47805530ns 840235 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47805814ns 840240 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47806212ns 840247 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47806382ns 840250 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47806837ns 840258 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47807007ns 840261 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47807291ns 840266 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47807576ns 840271 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47807860ns 840276 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47808314ns 840284 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47808485ns 840287 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47808769ns 840292 1a110850 fd5ff06f jal x0, -44 +47809053ns 840297 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47809337ns 840302 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47809735ns 840309 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47809906ns 840312 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47810360ns 840320 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47810531ns 840323 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47810815ns 840328 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47811099ns 840333 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47811383ns 840338 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47811838ns 840346 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47812008ns 840349 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47812293ns 840354 1a110850 fd5ff06f jal x0, -44 +47812577ns 840359 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47812861ns 840364 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47813259ns 840371 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47813429ns 840374 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47813884ns 840382 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47814054ns 840385 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47814339ns 840390 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47814623ns 840395 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47814907ns 840400 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47815362ns 840408 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47815532ns 840411 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47815816ns 840416 1a110850 fd5ff06f jal x0, -44 +47816100ns 840421 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47816385ns 840426 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47816782ns 840433 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47816953ns 840436 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47817408ns 840444 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47817578ns 840447 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47817862ns 840452 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47818146ns 840457 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47818431ns 840462 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47818885ns 840470 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47819056ns 840473 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47819340ns 840478 1a110850 fd5ff06f jal x0, -44 +47819624ns 840483 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47819908ns 840488 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47820306ns 840495 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47820476ns 840498 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47820931ns 840506 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47821102ns 840509 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47821386ns 840514 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47821670ns 840519 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47821954ns 840524 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47822409ns 840532 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47822579ns 840535 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47822863ns 840540 1a110850 fd5ff06f jal x0, -44 +47823148ns 840545 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47823432ns 840550 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47823830ns 840557 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47824000ns 840560 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47824455ns 840568 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47824625ns 840571 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47824909ns 840576 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47825194ns 840581 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47825478ns 840586 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47825932ns 840594 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47826103ns 840597 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47826387ns 840602 1a110850 fd5ff06f jal x0, -44 +47826671ns 840607 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47826955ns 840612 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47827353ns 840619 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47827524ns 840622 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47827978ns 840630 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47828149ns 840633 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47828433ns 840638 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47828717ns 840643 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47829001ns 840648 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47829456ns 840656 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47829626ns 840659 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47829911ns 840664 1a110850 fd5ff06f jal x0, -44 +47830195ns 840669 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47830479ns 840674 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47830877ns 840681 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47831047ns 840684 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47831502ns 840692 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47831672ns 840695 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47831957ns 840700 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47832241ns 840705 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47832525ns 840710 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47832979ns 840718 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47833150ns 840721 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47833434ns 840726 1a110850 fd5ff06f jal x0, -44 +47833718ns 840731 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47834002ns 840736 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47834400ns 840743 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47834571ns 840746 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47835025ns 840754 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47835196ns 840757 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47835480ns 840762 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47835764ns 840767 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47836048ns 840772 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47836503ns 840780 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47836674ns 840783 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47836958ns 840788 1a110850 fd5ff06f jal x0, -44 +47837242ns 840793 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47837526ns 840798 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47837924ns 840805 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47838094ns 840808 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47838549ns 840816 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47838720ns 840819 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47839004ns 840824 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47839288ns 840829 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47839572ns 840834 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47840027ns 840842 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47840197ns 840845 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47840481ns 840850 1a110850 fd5ff06f jal x0, -44 +47840765ns 840855 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47841050ns 840860 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47841447ns 840867 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47841618ns 840870 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47842073ns 840878 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47842243ns 840881 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47842527ns 840886 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47842811ns 840891 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47843096ns 840896 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47843550ns 840904 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47843721ns 840907 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47844005ns 840912 1a110850 fd5ff06f jal x0, -44 +47844289ns 840917 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47844573ns 840922 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47844971ns 840929 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47845142ns 840932 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47845596ns 840940 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47845767ns 840943 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47846051ns 840948 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47846335ns 840953 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47846619ns 840958 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47847074ns 840966 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47847244ns 840969 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47847528ns 840974 1a110850 fd5ff06f jal x0, -44 +47847813ns 840979 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47848097ns 840984 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47848495ns 840991 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47848665ns 840994 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47849120ns 841002 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47849290ns 841005 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47849574ns 841010 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47849859ns 841015 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47850143ns 841020 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47850597ns 841028 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47850768ns 841031 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47851052ns 841036 1a110850 fd5ff06f jal x0, -44 +47851336ns 841041 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47851620ns 841046 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47852018ns 841053 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47852189ns 841056 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47852643ns 841064 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47852814ns 841067 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47853098ns 841072 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47853382ns 841077 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47853666ns 841082 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47854121ns 841090 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47854291ns 841093 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47854576ns 841098 1a110850 fd5ff06f jal x0, -44 +47854860ns 841103 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47855144ns 841108 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47855542ns 841115 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47855712ns 841118 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47856167ns 841126 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47856337ns 841129 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47856622ns 841134 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47856906ns 841139 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47857190ns 841144 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47857645ns 841152 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47857815ns 841155 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47858099ns 841160 1a110850 fd5ff06f jal x0, -44 +47858383ns 841165 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47858668ns 841170 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47859065ns 841177 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47859236ns 841180 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47859691ns 841188 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47859861ns 841191 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47860145ns 841196 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47860429ns 841201 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47860714ns 841206 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47861168ns 841214 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47861339ns 841217 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47861623ns 841222 1a110850 fd5ff06f jal x0, -44 +47861907ns 841227 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47862191ns 841232 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47862589ns 841239 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47862759ns 841242 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47863214ns 841250 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47863385ns 841253 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47863669ns 841258 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47863953ns 841263 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47864237ns 841268 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47864692ns 841276 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47864862ns 841279 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47865146ns 841284 1a110850 fd5ff06f jal x0, -44 +47865431ns 841289 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47865715ns 841294 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47866113ns 841301 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47866283ns 841304 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47866738ns 841312 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47866908ns 841315 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47867192ns 841320 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47867477ns 841325 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47867761ns 841330 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47868215ns 841338 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47868386ns 841341 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47868670ns 841346 1a110850 fd5ff06f jal x0, -44 +47868954ns 841351 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47869238ns 841356 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47869636ns 841363 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47869807ns 841366 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47870261ns 841374 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47870432ns 841377 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47870716ns 841382 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47871000ns 841387 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47871284ns 841392 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47871739ns 841400 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47871909ns 841403 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47872194ns 841408 1a110850 fd5ff06f jal x0, -44 +47872478ns 841413 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47872762ns 841418 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47873160ns 841425 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47873330ns 841428 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47873785ns 841436 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47873955ns 841439 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47874240ns 841444 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47874524ns 841449 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47874808ns 841454 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47875263ns 841462 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47875433ns 841465 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47875717ns 841470 1a110850 fd5ff06f jal x0, -44 +47876001ns 841475 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47876285ns 841480 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47876683ns 841487 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47876854ns 841490 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47877308ns 841498 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47877479ns 841501 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47877763ns 841506 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47878047ns 841511 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47878331ns 841516 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47878786ns 841524 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47878957ns 841527 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47879241ns 841532 1a110850 fd5ff06f jal x0, -44 +47879525ns 841537 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47879809ns 841542 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47880207ns 841549 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47880377ns 841552 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47880832ns 841560 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47881003ns 841563 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47881287ns 841568 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47881571ns 841573 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47881855ns 841578 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47882310ns 841586 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47882480ns 841589 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47882764ns 841594 1a110850 fd5ff06f jal x0, -44 +47883048ns 841599 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47883333ns 841604 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47883730ns 841611 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47883901ns 841614 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47884356ns 841622 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47884526ns 841625 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47884810ns 841630 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47885094ns 841635 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47885379ns 841640 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47885833ns 841648 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47886004ns 841651 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47886288ns 841656 1a110850 fd5ff06f jal x0, -44 +47886572ns 841661 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47886856ns 841666 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47887254ns 841673 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47887425ns 841676 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47887879ns 841684 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47888050ns 841687 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47888334ns 841692 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47888618ns 841697 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47888902ns 841702 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47889357ns 841710 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47889527ns 841713 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47889811ns 841718 1a110850 fd5ff06f jal x0, -44 +47890096ns 841723 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47890380ns 841728 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47890778ns 841735 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47890948ns 841738 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47891403ns 841746 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47891573ns 841749 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47891857ns 841754 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47892142ns 841759 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47892426ns 841764 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47892880ns 841772 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47893051ns 841775 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47893335ns 841780 1a110850 fd5ff06f jal x0, -44 +47893619ns 841785 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47893903ns 841790 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47894301ns 841797 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47894472ns 841800 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47894926ns 841808 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47895097ns 841811 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47895381ns 841816 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47895665ns 841821 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47895949ns 841826 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47896404ns 841834 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47896575ns 841837 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47896859ns 841842 1a110850 fd5ff06f jal x0, -44 +47897143ns 841847 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47897427ns 841852 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47897825ns 841859 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47897995ns 841862 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47898450ns 841870 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47898620ns 841873 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47898905ns 841878 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47899189ns 841883 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47899473ns 841888 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47899928ns 841896 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47900098ns 841899 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47900382ns 841904 1a110850 fd5ff06f jal x0, -44 +47900666ns 841909 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47900951ns 841914 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47901348ns 841921 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47901519ns 841924 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47901974ns 841932 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47902144ns 841935 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47902428ns 841940 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47902712ns 841945 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47902997ns 841950 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47903451ns 841958 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47903622ns 841961 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47903906ns 841966 1a110850 fd5ff06f jal x0, -44 +47904190ns 841971 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47904474ns 841976 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47904872ns 841983 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47905042ns 841986 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47905497ns 841994 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47905668ns 841997 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47905952ns 842002 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47906236ns 842007 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47906520ns 842012 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47906975ns 842020 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47907145ns 842023 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47907429ns 842028 1a110850 fd5ff06f jal x0, -44 +47907714ns 842033 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47907998ns 842038 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47908396ns 842045 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47908566ns 842048 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47909021ns 842056 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47909191ns 842059 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47909475ns 842064 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47909760ns 842069 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47910044ns 842074 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47910498ns 842082 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47910669ns 842085 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47910953ns 842090 1a110850 fd5ff06f jal x0, -44 +47911237ns 842095 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47911521ns 842100 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47911919ns 842107 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47912090ns 842110 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47912544ns 842118 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47912715ns 842121 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47912999ns 842126 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47913283ns 842131 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47913567ns 842136 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47914022ns 842144 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47914192ns 842147 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47914477ns 842152 1a110850 fd5ff06f jal x0, -44 +47914761ns 842157 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47915045ns 842162 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47915443ns 842169 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47915613ns 842172 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47916068ns 842180 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47916238ns 842183 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47916523ns 842188 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47916807ns 842193 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47917091ns 842198 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47917546ns 842206 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47917716ns 842209 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47918000ns 842214 1a110850 fd5ff06f jal x0, -44 +47918284ns 842219 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47918568ns 842224 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47918966ns 842231 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47919137ns 842234 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47919591ns 842242 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47919762ns 842245 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47920046ns 842250 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47920330ns 842255 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47920614ns 842260 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47921069ns 842268 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47921240ns 842271 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47921524ns 842276 1a110850 fd5ff06f jal x0, -44 +47921808ns 842281 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47922092ns 842286 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47922490ns 842293 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47922660ns 842296 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47923115ns 842304 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47923286ns 842307 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47923570ns 842312 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47923854ns 842317 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47924138ns 842322 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47924593ns 842330 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47924763ns 842333 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47925047ns 842338 1a110850 fd5ff06f jal x0, -44 +47925331ns 842343 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47925616ns 842348 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47926013ns 842355 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47926184ns 842358 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47926639ns 842366 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47926809ns 842369 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47927093ns 842374 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47927377ns 842379 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47927662ns 842384 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47928116ns 842392 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47928287ns 842395 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47928571ns 842400 1a110850 fd5ff06f jal x0, -44 +47928855ns 842405 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47929139ns 842410 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47929537ns 842417 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47929708ns 842420 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47930162ns 842428 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47930333ns 842431 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47930617ns 842436 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47930901ns 842441 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47931185ns 842446 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47931640ns 842454 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47931810ns 842457 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47932095ns 842462 1a110850 fd5ff06f jal x0, -44 +47932379ns 842467 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47932663ns 842472 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47933061ns 842479 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47933231ns 842482 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47933686ns 842490 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47933856ns 842493 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47934140ns 842498 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47934425ns 842503 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47934709ns 842508 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47935163ns 842516 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47935334ns 842519 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47935618ns 842524 1a110850 fd5ff06f jal x0, -44 +47935902ns 842529 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47936186ns 842534 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47936584ns 842541 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47936755ns 842544 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47937209ns 842552 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47937380ns 842555 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47937664ns 842560 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47937948ns 842565 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47938232ns 842570 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47938687ns 842578 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47938858ns 842581 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47939142ns 842586 1a110850 fd5ff06f jal x0, -44 +47939426ns 842591 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47939710ns 842596 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47940108ns 842603 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47940278ns 842606 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47940733ns 842614 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47940903ns 842617 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47941188ns 842622 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47941472ns 842627 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47941756ns 842632 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47942211ns 842640 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47942381ns 842643 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47942665ns 842648 1a110850 fd5ff06f jal x0, -44 +47942949ns 842653 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47943234ns 842658 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47943631ns 842665 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47943802ns 842668 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47944257ns 842676 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47944427ns 842679 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47944711ns 842684 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47944995ns 842689 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47945280ns 842694 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47945734ns 842702 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47945905ns 842705 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47946189ns 842710 1a110850 fd5ff06f jal x0, -44 +47946473ns 842715 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47946757ns 842720 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47947155ns 842727 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47947325ns 842730 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47947780ns 842738 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47947951ns 842741 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47948235ns 842746 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47948519ns 842751 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47948803ns 842756 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47949258ns 842764 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47949428ns 842767 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47949712ns 842772 1a110850 fd5ff06f jal x0, -44 +47949997ns 842777 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47950281ns 842782 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47950679ns 842789 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47950849ns 842792 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47951304ns 842800 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47951474ns 842803 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47951758ns 842808 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47952043ns 842813 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47952327ns 842818 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47952781ns 842826 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47952952ns 842829 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47953236ns 842834 1a110850 fd5ff06f jal x0, -44 +47953520ns 842839 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47953804ns 842844 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47954202ns 842851 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47954373ns 842854 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47954827ns 842862 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47954998ns 842865 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47955282ns 842870 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47955566ns 842875 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47955850ns 842880 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47956305ns 842888 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47956475ns 842891 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47956760ns 842896 1a110850 fd5ff06f jal x0, -44 +47957044ns 842901 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47957328ns 842906 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47957726ns 842913 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47957896ns 842916 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47958351ns 842924 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47958521ns 842927 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47958806ns 842932 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47959090ns 842937 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47959374ns 842942 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47959829ns 842950 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47959999ns 842953 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47960283ns 842958 1a110850 fd5ff06f jal x0, -44 +47960567ns 842963 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47960851ns 842968 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47961249ns 842975 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47961420ns 842978 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47961874ns 842986 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47962045ns 842989 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47962329ns 842994 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47962613ns 842999 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47962897ns 843004 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47963352ns 843012 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47963523ns 843015 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47963807ns 843020 1a110850 fd5ff06f jal x0, -44 +47964091ns 843025 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47964375ns 843030 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47964773ns 843037 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47964943ns 843040 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47965398ns 843048 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47965569ns 843051 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47965853ns 843056 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47966137ns 843061 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47966421ns 843066 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47966876ns 843074 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47967046ns 843077 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47967330ns 843082 1a110850 fd5ff06f jal x0, -44 +47967615ns 843087 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47967899ns 843092 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47968296ns 843099 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47968467ns 843102 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47968922ns 843110 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47969092ns 843113 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47969376ns 843118 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47969660ns 843123 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47969945ns 843128 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47970399ns 843136 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47970570ns 843139 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47970854ns 843144 1a110850 fd5ff06f jal x0, -44 +47971138ns 843149 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47971422ns 843154 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47971820ns 843161 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47971991ns 843164 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47972445ns 843172 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47972616ns 843175 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47972900ns 843180 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47973184ns 843185 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47973468ns 843190 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47973923ns 843198 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47974093ns 843201 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47974378ns 843206 1a110850 fd5ff06f jal x0, -44 +47974662ns 843211 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47974946ns 843216 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47975344ns 843223 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47975514ns 843226 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47975969ns 843234 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47976139ns 843237 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47976423ns 843242 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47976708ns 843247 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47976992ns 843252 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47977446ns 843260 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47977617ns 843263 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47977901ns 843268 1a110850 fd5ff06f jal x0, -44 +47978185ns 843273 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47978469ns 843278 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47978867ns 843285 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47979038ns 843288 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47979492ns 843296 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47979663ns 843299 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47979947ns 843304 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47980231ns 843309 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47980515ns 843314 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47980970ns 843322 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47981141ns 843325 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47981425ns 843330 1a110850 fd5ff06f jal x0, -44 +47981709ns 843335 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47981993ns 843340 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47982391ns 843347 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47982561ns 843350 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47983016ns 843358 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47983186ns 843361 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47983471ns 843366 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47983755ns 843371 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47984039ns 843376 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47984494ns 843384 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47984664ns 843387 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47984948ns 843392 1a110850 fd5ff06f jal x0, -44 +47985232ns 843397 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47985517ns 843402 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47985914ns 843409 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47986085ns 843412 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47986540ns 843420 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47986710ns 843423 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47986994ns 843428 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47987278ns 843433 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47987563ns 843438 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47988017ns 843446 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47988188ns 843449 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47988472ns 843454 1a110850 fd5ff06f jal x0, -44 +47988756ns 843459 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47989040ns 843464 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47989438ns 843471 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47989608ns 843474 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47990063ns 843482 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47990234ns 843485 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47990518ns 843490 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47990802ns 843495 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47991086ns 843500 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47991541ns 843508 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47991711ns 843511 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47991995ns 843516 1a110850 fd5ff06f jal x0, -44 +47992280ns 843521 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47992564ns 843526 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47992962ns 843533 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47993132ns 843536 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47993587ns 843544 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47993757ns 843547 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47994041ns 843552 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47994326ns 843557 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47994610ns 843562 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47995064ns 843570 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47995235ns 843573 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47995519ns 843578 1a110850 fd5ff06f jal x0, -44 +47995803ns 843583 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47996087ns 843588 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +47996485ns 843595 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47996656ns 843598 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47997110ns 843606 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +47997281ns 843609 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +47997565ns 843614 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47997849ns 843619 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +47998133ns 843624 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +47998588ns 843632 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +47998758ns 843635 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +47999043ns 843640 1a110850 fd5ff06f jal x0, -44 +47999327ns 843645 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +47999611ns 843650 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48000009ns 843657 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48000179ns 843660 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48000634ns 843668 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48000804ns 843671 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48001089ns 843676 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48001373ns 843681 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48001657ns 843686 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48002112ns 843694 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48002282ns 843697 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48002566ns 843702 1a110850 fd5ff06f jal x0, -44 +48002850ns 843707 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48003135ns 843712 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48003532ns 843719 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48003703ns 843722 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48004157ns 843730 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48004328ns 843733 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48004612ns 843738 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48004896ns 843743 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48005180ns 843748 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48005635ns 843756 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48005806ns 843759 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48006090ns 843764 1a110850 fd5ff06f jal x0, -44 +48006374ns 843769 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48006658ns 843774 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48007056ns 843781 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48007226ns 843784 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48007681ns 843792 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48007852ns 843795 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48008136ns 843800 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48008420ns 843805 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48008704ns 843810 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48009159ns 843818 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48009329ns 843821 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48009613ns 843826 1a110850 fd5ff06f jal x0, -44 +48009898ns 843831 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48010182ns 843836 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48010579ns 843843 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48010750ns 843846 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48011205ns 843854 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48011375ns 843857 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48011659ns 843862 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48011943ns 843867 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48012228ns 843872 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48012682ns 843880 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48012853ns 843883 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48013137ns 843888 1a110850 fd5ff06f jal x0, -44 +48013421ns 843893 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48013705ns 843898 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48014103ns 843905 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48014274ns 843908 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48014728ns 843916 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48014899ns 843919 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48015183ns 843924 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48015467ns 843929 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48015751ns 843934 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48016206ns 843942 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48016376ns 843945 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48016661ns 843950 1a110850 fd5ff06f jal x0, -44 +48016945ns 843955 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48017229ns 843960 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48017627ns 843967 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48017797ns 843970 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48018252ns 843978 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48018422ns 843981 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48018706ns 843986 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48018991ns 843991 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48019275ns 843996 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48019729ns 844004 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48019900ns 844007 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48020184ns 844012 1a110850 fd5ff06f jal x0, -44 +48020468ns 844017 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48020752ns 844022 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48021150ns 844029 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48021321ns 844032 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48021775ns 844040 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48021946ns 844043 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48022230ns 844048 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48022514ns 844053 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48022798ns 844058 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48023253ns 844066 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48023424ns 844069 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48023708ns 844074 1a110850 fd5ff06f jal x0, -44 +48023992ns 844079 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48024276ns 844084 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48024674ns 844091 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48024844ns 844094 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48025299ns 844102 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48025469ns 844105 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48025754ns 844110 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48026038ns 844115 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48026322ns 844120 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48026777ns 844128 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48026947ns 844131 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48027231ns 844136 1a110850 fd5ff06f jal x0, -44 +48027515ns 844141 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48027800ns 844146 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48028197ns 844153 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48028368ns 844156 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48028823ns 844164 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48028993ns 844167 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48029277ns 844172 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48029561ns 844177 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48029846ns 844182 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48030300ns 844190 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48030471ns 844193 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48030755ns 844198 1a110850 fd5ff06f jal x0, -44 +48031039ns 844203 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48031323ns 844208 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48031721ns 844215 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48031891ns 844218 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48032346ns 844226 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48032517ns 844229 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48032801ns 844234 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48033085ns 844239 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48033369ns 844244 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48033824ns 844252 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48033994ns 844255 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48034278ns 844260 1a110850 fd5ff06f jal x0, -44 +48034563ns 844265 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48034847ns 844270 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48035245ns 844277 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48035415ns 844280 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48035870ns 844288 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48036040ns 844291 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48036324ns 844296 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48036609ns 844301 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48036893ns 844306 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48037347ns 844314 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48037518ns 844317 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48037802ns 844322 1a110850 fd5ff06f jal x0, -44 +48038086ns 844327 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48038370ns 844332 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48038768ns 844339 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48038939ns 844342 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48039393ns 844350 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48039564ns 844353 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48039848ns 844358 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48040132ns 844363 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48040416ns 844368 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48040871ns 844376 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48041041ns 844379 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48041326ns 844384 1a110850 fd5ff06f jal x0, -44 +48041610ns 844389 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48041894ns 844394 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48042292ns 844401 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48042462ns 844404 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48042917ns 844412 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48043087ns 844415 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48043372ns 844420 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48043656ns 844425 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48043940ns 844430 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48044395ns 844438 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48044565ns 844441 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48044849ns 844446 1a110850 fd5ff06f jal x0, -44 +48045133ns 844451 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48045418ns 844456 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48045815ns 844463 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48045986ns 844466 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48046440ns 844474 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48046611ns 844477 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48046895ns 844482 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48047179ns 844487 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48047463ns 844492 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48047918ns 844500 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48048089ns 844503 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48048373ns 844508 1a110850 fd5ff06f jal x0, -44 +48048657ns 844513 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48048941ns 844518 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48049339ns 844525 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48049509ns 844528 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48049964ns 844536 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48050135ns 844539 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48050419ns 844544 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48050703ns 844549 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48050987ns 844554 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48051442ns 844562 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48051612ns 844565 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48051896ns 844570 1a110850 fd5ff06f jal x0, -44 +48052181ns 844575 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48052465ns 844580 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48052863ns 844587 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48053033ns 844590 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48053488ns 844598 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48053658ns 844601 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48053942ns 844606 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48054226ns 844611 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48054511ns 844616 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48054965ns 844624 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48055136ns 844627 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48055420ns 844632 1a110850 fd5ff06f jal x0, -44 +48055704ns 844637 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48055988ns 844642 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48056386ns 844649 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48056557ns 844652 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48057011ns 844660 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48057182ns 844663 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48057466ns 844668 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48057750ns 844673 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48058034ns 844678 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48058489ns 844686 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48058659ns 844689 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48058944ns 844694 1a110850 fd5ff06f jal x0, -44 +48059228ns 844699 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48059512ns 844704 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48059910ns 844711 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48060080ns 844714 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48060535ns 844722 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48060705ns 844725 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48060989ns 844730 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48061274ns 844735 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48061558ns 844740 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48062012ns 844748 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48062183ns 844751 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48062467ns 844756 1a110850 fd5ff06f jal x0, -44 +48062751ns 844761 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48063035ns 844766 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48063433ns 844773 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48063604ns 844776 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48064058ns 844784 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48064229ns 844787 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48064513ns 844792 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48064797ns 844797 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48065081ns 844802 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48065536ns 844810 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48065707ns 844813 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48065991ns 844818 1a110850 fd5ff06f jal x0, -44 +48066275ns 844823 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48066559ns 844828 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48066957ns 844835 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48067127ns 844838 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48067582ns 844846 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48067752ns 844849 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48068037ns 844854 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48068321ns 844859 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48068605ns 844864 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48069060ns 844872 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48069230ns 844875 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48069514ns 844880 1a110850 fd5ff06f jal x0, -44 +48069798ns 844885 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48070083ns 844890 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48070480ns 844897 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48070651ns 844900 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48071106ns 844908 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48071276ns 844911 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48071560ns 844916 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48071844ns 844921 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48072129ns 844926 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48072583ns 844934 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48072754ns 844937 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48073038ns 844942 1a110850 fd5ff06f jal x0, -44 +48073322ns 844947 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48073606ns 844952 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48074004ns 844959 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48074175ns 844962 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48074629ns 844970 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48074800ns 844973 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48075084ns 844978 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48075368ns 844983 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48075652ns 844988 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48076107ns 844996 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48076277ns 844999 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48076561ns 845004 1a110850 fd5ff06f jal x0, -44 +48076846ns 845009 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48077130ns 845014 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48077528ns 845021 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48077698ns 845024 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48078153ns 845032 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48078323ns 845035 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48078607ns 845040 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48078892ns 845045 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48079176ns 845050 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48079630ns 845058 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48079801ns 845061 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48080085ns 845066 1a110850 fd5ff06f jal x0, -44 +48080369ns 845071 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48080653ns 845076 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48081051ns 845083 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48081222ns 845086 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48081676ns 845094 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48081847ns 845097 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48082131ns 845102 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48082415ns 845107 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48082699ns 845112 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48083154ns 845120 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48083324ns 845123 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48083609ns 845128 1a110850 fd5ff06f jal x0, -44 +48083893ns 845133 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48084177ns 845138 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48084575ns 845145 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48084745ns 845148 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48085200ns 845156 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48085370ns 845159 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48085655ns 845164 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48085939ns 845169 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48086223ns 845174 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48086678ns 845182 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48086848ns 845185 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48087132ns 845190 1a110850 fd5ff06f jal x0, -44 +48087416ns 845195 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48087701ns 845200 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48088098ns 845207 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48088269ns 845210 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48088723ns 845218 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48088894ns 845221 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48089178ns 845226 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48089462ns 845231 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48089746ns 845236 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48090201ns 845244 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48090372ns 845247 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48090656ns 845252 1a110850 fd5ff06f jal x0, -44 +48090940ns 845257 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48091224ns 845262 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48091622ns 845269 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48091792ns 845272 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48092247ns 845280 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48092418ns 845283 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48092702ns 845288 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48092986ns 845293 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48093270ns 845298 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48093725ns 845306 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48093895ns 845309 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48094179ns 845314 1a110850 fd5ff06f jal x0, -44 +48094464ns 845319 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48094748ns 845324 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48095146ns 845331 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48095316ns 845334 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48095771ns 845342 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48095941ns 845345 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48096225ns 845350 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48096509ns 845355 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48096794ns 845360 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48097248ns 845368 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48097419ns 845371 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48097703ns 845376 1a110850 fd5ff06f jal x0, -44 +48097987ns 845381 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48098271ns 845386 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48098669ns 845393 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48098840ns 845396 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48099294ns 845404 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48099465ns 845407 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48099749ns 845412 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48100033ns 845417 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48100317ns 845422 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48100772ns 845430 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48100942ns 845433 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48101227ns 845438 1a110850 fd5ff06f jal x0, -44 +48101511ns 845443 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48101795ns 845448 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48102193ns 845455 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48102363ns 845458 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48102818ns 845466 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48102988ns 845469 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48103272ns 845474 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48103557ns 845479 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48103841ns 845484 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48104295ns 845492 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48104466ns 845495 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48104750ns 845500 1a110850 fd5ff06f jal x0, -44 +48105034ns 845505 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48105318ns 845510 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48105716ns 845517 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48105887ns 845520 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48106341ns 845528 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48106512ns 845531 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48106796ns 845536 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48107080ns 845541 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48107364ns 845546 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48107819ns 845554 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48107990ns 845557 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48108274ns 845562 1a110850 fd5ff06f jal x0, -44 +48108558ns 845567 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48108842ns 845572 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48109240ns 845579 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48109410ns 845582 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48109865ns 845590 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48110035ns 845593 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48110320ns 845598 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48110604ns 845603 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48110888ns 845608 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48111343ns 845616 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48111513ns 845619 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48111797ns 845624 1a110850 fd5ff06f jal x0, -44 +48112081ns 845629 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48112366ns 845634 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48112763ns 845641 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48112934ns 845644 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48113389ns 845652 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48113559ns 845655 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48113843ns 845660 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48114127ns 845665 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48114412ns 845670 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48114866ns 845678 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48115037ns 845681 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48115321ns 845686 1a110850 fd5ff06f jal x0, -44 +48115605ns 845691 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48115889ns 845696 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48116287ns 845703 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48116458ns 845706 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48116912ns 845714 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48117083ns 845717 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48117367ns 845722 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48117651ns 845727 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48117935ns 845732 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48118390ns 845740 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48118560ns 845743 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48118844ns 845748 1a110850 fd5ff06f jal x0, -44 +48119129ns 845753 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48119413ns 845758 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48119811ns 845765 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48119981ns 845768 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48120436ns 845776 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48120606ns 845779 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48120890ns 845784 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48121175ns 845789 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48121459ns 845794 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48121913ns 845802 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48122084ns 845805 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48122368ns 845810 1a110850 fd5ff06f jal x0, -44 +48122652ns 845815 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48122936ns 845820 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48123334ns 845827 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48123505ns 845830 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48123959ns 845838 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48124130ns 845841 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48124414ns 845846 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48124698ns 845851 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48124982ns 845856 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48125437ns 845864 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48125607ns 845867 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48125892ns 845872 1a110850 fd5ff06f jal x0, -44 +48126176ns 845877 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48126460ns 845882 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48126858ns 845889 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48127028ns 845892 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48127483ns 845900 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48127653ns 845903 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48127938ns 845908 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48128222ns 845913 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48128506ns 845918 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48128961ns 845926 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48129131ns 845929 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48129415ns 845934 1a110850 fd5ff06f jal x0, -44 +48129699ns 845939 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48129984ns 845944 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48130381ns 845951 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48130552ns 845954 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48131007ns 845962 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48131177ns 845965 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48131461ns 845970 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48131745ns 845975 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48132029ns 845980 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48132484ns 845988 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48132655ns 845991 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48132939ns 845996 1a110850 fd5ff06f jal x0, -44 +48133223ns 846001 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48133507ns 846006 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48133905ns 846013 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48134075ns 846016 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48134530ns 846024 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48134701ns 846027 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48134985ns 846032 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48135269ns 846037 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48135553ns 846042 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48136008ns 846050 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48136178ns 846053 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48136462ns 846058 1a110850 fd5ff06f jal x0, -44 +48136747ns 846063 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48137031ns 846068 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48137429ns 846075 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48137599ns 846078 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48138054ns 846086 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48138224ns 846089 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48138508ns 846094 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48138792ns 846099 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48139077ns 846104 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48139531ns 846112 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48139702ns 846115 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48139986ns 846120 1a110850 fd5ff06f jal x0, -44 +48140270ns 846125 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48140554ns 846130 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48140952ns 846137 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48141123ns 846140 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48141577ns 846148 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48141748ns 846151 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48142032ns 846156 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48142316ns 846161 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48142600ns 846166 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48143055ns 846174 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48143225ns 846177 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48143510ns 846182 1a110850 fd5ff06f jal x0, -44 +48143794ns 846187 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48144078ns 846192 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48144476ns 846199 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48144646ns 846202 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48145101ns 846210 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48145271ns 846213 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48145555ns 846218 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48145840ns 846223 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48146124ns 846228 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48146578ns 846236 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48146749ns 846239 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48147033ns 846244 1a110850 fd5ff06f jal x0, -44 +48147317ns 846249 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48147601ns 846254 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48147999ns 846261 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48148170ns 846264 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48148624ns 846272 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48148795ns 846275 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48149079ns 846280 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48149363ns 846285 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48149647ns 846290 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48150102ns 846298 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48150273ns 846301 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48150557ns 846306 1a110850 fd5ff06f jal x0, -44 +48150841ns 846311 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48151125ns 846316 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48151523ns 846323 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48151693ns 846326 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48152148ns 846334 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48152319ns 846337 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48152603ns 846342 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48152887ns 846347 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48153171ns 846352 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48153626ns 846360 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48153796ns 846363 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48154080ns 846368 1a110850 fd5ff06f jal x0, -44 +48154364ns 846373 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48154649ns 846378 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48155046ns 846385 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48155217ns 846388 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48155672ns 846396 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48155842ns 846399 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48156126ns 846404 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48156410ns 846409 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48156695ns 846414 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48157149ns 846422 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48157320ns 846425 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48157604ns 846430 1a110850 fd5ff06f jal x0, -44 +48157888ns 846435 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48158172ns 846440 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48158570ns 846447 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48158741ns 846450 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48159195ns 846458 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48159366ns 846461 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48159650ns 846466 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48159934ns 846471 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48160218ns 846476 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48160673ns 846484 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48160843ns 846487 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48161127ns 846492 1a110850 fd5ff06f jal x0, -44 +48161412ns 846497 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48161696ns 846502 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48162094ns 846509 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48162264ns 846512 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48162719ns 846520 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48162889ns 846523 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48163173ns 846528 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48163458ns 846533 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48163742ns 846538 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48164196ns 846546 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48164367ns 846549 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48164651ns 846554 1a110850 fd5ff06f jal x0, -44 +48164935ns 846559 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48165219ns 846564 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48165617ns 846571 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48165788ns 846574 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48166242ns 846582 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48166413ns 846585 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48166697ns 846590 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48166981ns 846595 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48167265ns 846600 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48167720ns 846608 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48167890ns 846611 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48168175ns 846616 1a110850 fd5ff06f jal x0, -44 +48168459ns 846621 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48168743ns 846626 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48169141ns 846633 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48169311ns 846636 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48169766ns 846644 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48169936ns 846647 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48170221ns 846652 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48170505ns 846657 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48170789ns 846662 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48171244ns 846670 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48171414ns 846673 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48171698ns 846678 1a110850 fd5ff06f jal x0, -44 +48171982ns 846683 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48172267ns 846688 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48172664ns 846695 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48172835ns 846698 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48173290ns 846706 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48173460ns 846709 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48173744ns 846714 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48174028ns 846719 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48174312ns 846724 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48174767ns 846732 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48174938ns 846735 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48175222ns 846740 1a110850 fd5ff06f jal x0, -44 +48175506ns 846745 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48175790ns 846750 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48176188ns 846757 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48176358ns 846760 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48176813ns 846768 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48176984ns 846771 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48177268ns 846776 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48177552ns 846781 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48177836ns 846786 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48178291ns 846794 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48178461ns 846797 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48178745ns 846802 1a110850 fd5ff06f jal x0, -44 +48179030ns 846807 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48179314ns 846812 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48179712ns 846819 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48179882ns 846822 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48180337ns 846830 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48180507ns 846833 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48180791ns 846838 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48181075ns 846843 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48181360ns 846848 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48181814ns 846856 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48181985ns 846859 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48182269ns 846864 1a110850 fd5ff06f jal x0, -44 +48182553ns 846869 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48182837ns 846874 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48183235ns 846881 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48183406ns 846884 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48183860ns 846892 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48184031ns 846895 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48184315ns 846900 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48184599ns 846905 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48184883ns 846910 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48185338ns 846918 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48185508ns 846921 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48185793ns 846926 1a110850 fd5ff06f jal x0, -44 +48186077ns 846931 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48186361ns 846936 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48186759ns 846943 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48186929ns 846946 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48187384ns 846954 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48187554ns 846957 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48187839ns 846962 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48188123ns 846967 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48188407ns 846972 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48188861ns 846980 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48189032ns 846983 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48189316ns 846988 1a110850 fd5ff06f jal x0, -44 +48189600ns 846993 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48189884ns 846998 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48190282ns 847005 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48190453ns 847008 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48190907ns 847016 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48191078ns 847019 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48191362ns 847024 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48191646ns 847029 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48191930ns 847034 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48192385ns 847042 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48192556ns 847045 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48192840ns 847050 1a110850 fd5ff06f jal x0, -44 +48193124ns 847055 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48193408ns 847060 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48193806ns 847067 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48193976ns 847070 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48194431ns 847078 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48194602ns 847081 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48194886ns 847086 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48195170ns 847091 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48195454ns 847096 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48195909ns 847104 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48196079ns 847107 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48196363ns 847112 1a110850 fd5ff06f jal x0, -44 +48196647ns 847117 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48196932ns 847122 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48197329ns 847129 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48197500ns 847132 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48197955ns 847140 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48198125ns 847143 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48198409ns 847148 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48198693ns 847153 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48198978ns 847158 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48199432ns 847166 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48199603ns 847169 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48199887ns 847174 1a110850 fd5ff06f jal x0, -44 +48200171ns 847179 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48200455ns 847184 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48200853ns 847191 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48201024ns 847194 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48201478ns 847202 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48201649ns 847205 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48201933ns 847210 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48202217ns 847215 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48202501ns 847220 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48202956ns 847228 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48203126ns 847231 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48203410ns 847236 1a110850 fd5ff06f jal x0, -44 +48203695ns 847241 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48203979ns 847246 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48204377ns 847253 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48204547ns 847256 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48205002ns 847264 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48205172ns 847267 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48205456ns 847272 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48205741ns 847277 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48206025ns 847282 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48206479ns 847290 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48206650ns 847293 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48206934ns 847298 1a110850 fd5ff06f jal x0, -44 +48207218ns 847303 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48207502ns 847308 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48207900ns 847315 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48208071ns 847318 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48208525ns 847326 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48208696ns 847329 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48208980ns 847334 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48209264ns 847339 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48209548ns 847344 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48210003ns 847352 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48210173ns 847355 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48210458ns 847360 1a110850 fd5ff06f jal x0, -44 +48210742ns 847365 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48211026ns 847370 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48211424ns 847377 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48211594ns 847380 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48212049ns 847388 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48212219ns 847391 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48212504ns 847396 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48212788ns 847401 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48213072ns 847406 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48213527ns 847414 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48213697ns 847417 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48213981ns 847422 1a110850 fd5ff06f jal x0, -44 +48214265ns 847427 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48214550ns 847432 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48214947ns 847439 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48215118ns 847442 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48215573ns 847450 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48215743ns 847453 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48216027ns 847458 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48216311ns 847463 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48216595ns 847468 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48217050ns 847476 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48217221ns 847479 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48217505ns 847484 1a110850 fd5ff06f jal x0, -44 +48217789ns 847489 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48218073ns 847494 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48218471ns 847501 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48218641ns 847504 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48219096ns 847512 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48219267ns 847515 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48219551ns 847520 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48219835ns 847525 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48220119ns 847530 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48220574ns 847538 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48220744ns 847541 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48221028ns 847546 1a110850 fd5ff06f jal x0, -44 +48221313ns 847551 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48221597ns 847556 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48221995ns 847563 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48222165ns 847566 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48222620ns 847574 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48222790ns 847577 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48223074ns 847582 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48223359ns 847587 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48223643ns 847592 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48224097ns 847600 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48224268ns 847603 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48224552ns 847608 1a110850 fd5ff06f jal x0, -44 +48224836ns 847613 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48225120ns 847618 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48225518ns 847625 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48225689ns 847628 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48226143ns 847636 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48226314ns 847639 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48226598ns 847644 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48226882ns 847649 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48227166ns 847654 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48227621ns 847662 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48227791ns 847665 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48228076ns 847670 1a110850 fd5ff06f jal x0, -44 +48228360ns 847675 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48228644ns 847680 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48229042ns 847687 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48229212ns 847690 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48229667ns 847698 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48229837ns 847701 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48230122ns 847706 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48230406ns 847711 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48230690ns 847716 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48231144ns 847724 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48231315ns 847727 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48231599ns 847732 1a110850 fd5ff06f jal x0, -44 +48231883ns 847737 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48232167ns 847742 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48232565ns 847749 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48232736ns 847752 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48233190ns 847760 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48233361ns 847763 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48233645ns 847768 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48233929ns 847773 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48234213ns 847778 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48234668ns 847786 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48234839ns 847789 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48235123ns 847794 1a110850 fd5ff06f jal x0, -44 +48235407ns 847799 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48235691ns 847804 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48236089ns 847811 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48236259ns 847814 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48236714ns 847822 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48236885ns 847825 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48237169ns 847830 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48237453ns 847835 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48237737ns 847840 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48238192ns 847848 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48238362ns 847851 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48238646ns 847856 1a110850 fd5ff06f jal x0, -44 +48238930ns 847861 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48239215ns 847866 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48239612ns 847873 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48239783ns 847876 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48240238ns 847884 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48240408ns 847887 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48240692ns 847892 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48240976ns 847897 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48241261ns 847902 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48241715ns 847910 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48241886ns 847913 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48242170ns 847918 1a110850 fd5ff06f jal x0, -44 +48242454ns 847923 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48242738ns 847928 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48243136ns 847935 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48243307ns 847938 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48243761ns 847946 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48243932ns 847949 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48244216ns 847954 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48244500ns 847959 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48244784ns 847964 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48245239ns 847972 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48245409ns 847975 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48245693ns 847980 1a110850 fd5ff06f jal x0, -44 +48245978ns 847985 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48246262ns 847990 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48246660ns 847997 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48246830ns 848000 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48247285ns 848008 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48247455ns 848011 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48247739ns 848016 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48248024ns 848021 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48248308ns 848026 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48248762ns 848034 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48248933ns 848037 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48249217ns 848042 1a110850 fd5ff06f jal x0, -44 +48249501ns 848047 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48249785ns 848052 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48250183ns 848059 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48250354ns 848062 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48250808ns 848070 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48250979ns 848073 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48251263ns 848078 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48251547ns 848083 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48251831ns 848088 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48252286ns 848096 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48252456ns 848099 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48252741ns 848104 1a110850 fd5ff06f jal x0, -44 +48253025ns 848109 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48253309ns 848114 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48253707ns 848121 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48253877ns 848124 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48254332ns 848132 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48254502ns 848135 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48254787ns 848140 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48255071ns 848145 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48255355ns 848150 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48255810ns 848158 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48255980ns 848161 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48256264ns 848166 1a110850 fd5ff06f jal x0, -44 +48256548ns 848171 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48256833ns 848176 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48257230ns 848183 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48257401ns 848186 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48257856ns 848194 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48258026ns 848197 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48258310ns 848202 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48258594ns 848207 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48258879ns 848212 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48259333ns 848220 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48259504ns 848223 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48259788ns 848228 1a110850 fd5ff06f jal x0, -44 +48260072ns 848233 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48260356ns 848238 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48260754ns 848245 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48260924ns 848248 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48261379ns 848256 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48261550ns 848259 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48261834ns 848264 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48262118ns 848269 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48262402ns 848274 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48262857ns 848282 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48263027ns 848285 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48263311ns 848290 1a110850 fd5ff06f jal x0, -44 +48263596ns 848295 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48263880ns 848300 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48264278ns 848307 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48264448ns 848310 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48264903ns 848318 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48265073ns 848321 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48265357ns 848326 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48265642ns 848331 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48265926ns 848336 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48266380ns 848344 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48266551ns 848347 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48266835ns 848352 1a110850 fd5ff06f jal x0, -44 +48267119ns 848357 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48267403ns 848362 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48267801ns 848369 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48267972ns 848372 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48268426ns 848380 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48268597ns 848383 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48268881ns 848388 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48269165ns 848393 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48269449ns 848398 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48269904ns 848406 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48270074ns 848409 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48270359ns 848414 1a110850 fd5ff06f jal x0, -44 +48270643ns 848419 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48270927ns 848424 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48271325ns 848431 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48271495ns 848434 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48271950ns 848442 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48272120ns 848445 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48272405ns 848450 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48272689ns 848455 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48272973ns 848460 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48273427ns 848468 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48273598ns 848471 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48273882ns 848476 1a110850 fd5ff06f jal x0, -44 +48274166ns 848481 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48274450ns 848486 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48274848ns 848493 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48275019ns 848496 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48275473ns 848504 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48275644ns 848507 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48275928ns 848512 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48276212ns 848517 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48276496ns 848522 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48276951ns 848530 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48277122ns 848533 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48277406ns 848538 1a110850 fd5ff06f jal x0, -44 +48277690ns 848543 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48277974ns 848548 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48278372ns 848555 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48278542ns 848558 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48278997ns 848566 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48279168ns 848569 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48279452ns 848574 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48279736ns 848579 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48280020ns 848584 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48280475ns 848592 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48280645ns 848595 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48280929ns 848600 1a110850 fd5ff06f jal x0, -44 +48281213ns 848605 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48281498ns 848610 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48281895ns 848617 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48282066ns 848620 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48282521ns 848628 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48282691ns 848631 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48282975ns 848636 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48283259ns 848641 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48283544ns 848646 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48283998ns 848654 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48284169ns 848657 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48284453ns 848662 1a110850 fd5ff06f jal x0, -44 +48284737ns 848667 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48285021ns 848672 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48285419ns 848679 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48285590ns 848682 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48286044ns 848690 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48286215ns 848693 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48286499ns 848698 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48286783ns 848703 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48287067ns 848708 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48287522ns 848716 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48287692ns 848719 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48287976ns 848724 1a110850 fd5ff06f jal x0, -44 +48288261ns 848729 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48288545ns 848734 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48288943ns 848741 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48289113ns 848744 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48289568ns 848752 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48289738ns 848755 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48290022ns 848760 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48290307ns 848765 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48290591ns 848770 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48291045ns 848778 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48291216ns 848781 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48291500ns 848786 1a110850 fd5ff06f jal x0, -44 +48291784ns 848791 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48292068ns 848796 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48292466ns 848803 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48292637ns 848806 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48293091ns 848814 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48293262ns 848817 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48293546ns 848822 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48293830ns 848827 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48294114ns 848832 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48294569ns 848840 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48294739ns 848843 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48295024ns 848848 1a110850 fd5ff06f jal x0, -44 +48295308ns 848853 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48295592ns 848858 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48295990ns 848865 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48296160ns 848868 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48296615ns 848876 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48296785ns 848879 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48297070ns 848884 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48297354ns 848889 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48297638ns 848894 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48298093ns 848902 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48298263ns 848905 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48298547ns 848910 1a110850 fd5ff06f jal x0, -44 +48298831ns 848915 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48299116ns 848920 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48299513ns 848927 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48299684ns 848930 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48300139ns 848938 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48300309ns 848941 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48300593ns 848946 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48300877ns 848951 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48301162ns 848956 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48301616ns 848964 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48301787ns 848967 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48302071ns 848972 1a110850 fd5ff06f jal x0, -44 +48302355ns 848977 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48302639ns 848982 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48303037ns 848989 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48303207ns 848992 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48303662ns 849000 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48303833ns 849003 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48304117ns 849008 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48304401ns 849013 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48304685ns 849018 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48305140ns 849026 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48305310ns 849029 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48305594ns 849034 1a110850 fd5ff06f jal x0, -44 +48305879ns 849039 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48306163ns 849044 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48306561ns 849051 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48306731ns 849054 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48307186ns 849062 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48307356ns 849065 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48307640ns 849070 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48307925ns 849075 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48308209ns 849080 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48308663ns 849088 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48308834ns 849091 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48309118ns 849096 1a110850 fd5ff06f jal x0, -44 +48309402ns 849101 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48309686ns 849106 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48310084ns 849113 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48310255ns 849116 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48310709ns 849124 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48310880ns 849127 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48311164ns 849132 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48311448ns 849137 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48311732ns 849142 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48312187ns 849150 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48312357ns 849153 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48312642ns 849158 1a110850 fd5ff06f jal x0, -44 +48312926ns 849163 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48313210ns 849168 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48313608ns 849175 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48313778ns 849178 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48314233ns 849186 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48314403ns 849189 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48314688ns 849194 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48314972ns 849199 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48315256ns 849204 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48315711ns 849212 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48315881ns 849215 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48316165ns 849220 1a110850 fd5ff06f jal x0, -44 +48316449ns 849225 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48316733ns 849230 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48317131ns 849237 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48317302ns 849240 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48317756ns 849248 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48317927ns 849251 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48318211ns 849256 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48318495ns 849261 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48318779ns 849266 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48319234ns 849274 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48319405ns 849277 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48319689ns 849282 1a110850 fd5ff06f jal x0, -44 +48319973ns 849287 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48320257ns 849292 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48320655ns 849299 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48320825ns 849302 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48321280ns 849310 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48321451ns 849313 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48321735ns 849318 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48322019ns 849323 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48322303ns 849328 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48322758ns 849336 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48322928ns 849339 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48323212ns 849344 1a110850 fd5ff06f jal x0, -44 +48323496ns 849349 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48323781ns 849354 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48324178ns 849361 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48324349ns 849364 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48324804ns 849372 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48324974ns 849375 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48325258ns 849380 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48325542ns 849385 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48325827ns 849390 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48326281ns 849398 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48326452ns 849401 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48326736ns 849406 1a110850 fd5ff06f jal x0, -44 +48327020ns 849411 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48327304ns 849416 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48327702ns 849423 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48327873ns 849426 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48328327ns 849434 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48328498ns 849437 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48328782ns 849442 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48329066ns 849447 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48329350ns 849452 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48329805ns 849460 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48329975ns 849463 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48330259ns 849468 1a110850 fd5ff06f jal x0, -44 +48330544ns 849473 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48330828ns 849478 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48331226ns 849485 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48331396ns 849488 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48331851ns 849496 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48332021ns 849499 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48332305ns 849504 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48332590ns 849509 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48332874ns 849514 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48333328ns 849522 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48333499ns 849525 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48333783ns 849530 1a110850 fd5ff06f jal x0, -44 +48334067ns 849535 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48334351ns 849540 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48334749ns 849547 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48334920ns 849550 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48335374ns 849558 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48335545ns 849561 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48335829ns 849566 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48336113ns 849571 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48336397ns 849576 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48336852ns 849584 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48337023ns 849587 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48337307ns 849592 1a110850 fd5ff06f jal x0, -44 +48337591ns 849597 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48337875ns 849602 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48338273ns 849609 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48338443ns 849612 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48338898ns 849620 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48339068ns 849623 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48339353ns 849628 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48339637ns 849633 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48339921ns 849638 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48340376ns 849646 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48340546ns 849649 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48340830ns 849654 1a110850 fd5ff06f jal x0, -44 +48341114ns 849659 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48341399ns 849664 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48341796ns 849671 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48341967ns 849674 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48342422ns 849682 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48342592ns 849685 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48342876ns 849690 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48343160ns 849695 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48343445ns 849700 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48343899ns 849708 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48344070ns 849711 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48344354ns 849716 1a110850 fd5ff06f jal x0, -44 +48344638ns 849721 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48344922ns 849726 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48345320ns 849733 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48345490ns 849736 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48345945ns 849744 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48346116ns 849747 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48346400ns 849752 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48346684ns 849757 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48346968ns 849762 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48347423ns 849770 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48347593ns 849773 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48347877ns 849778 1a110850 fd5ff06f jal x0, -44 +48348162ns 849783 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48348446ns 849788 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48348844ns 849795 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48349014ns 849798 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48349469ns 849806 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48349639ns 849809 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48349923ns 849814 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48350208ns 849819 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48350492ns 849824 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48350946ns 849832 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48351117ns 849835 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48351401ns 849840 1a110850 fd5ff06f jal x0, -44 +48351685ns 849845 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48351969ns 849850 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48352367ns 849857 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48352538ns 849860 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48352992ns 849868 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48353163ns 849871 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48353447ns 849876 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48353731ns 849881 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48354015ns 849886 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48354470ns 849894 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48354640ns 849897 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48354925ns 849902 1a110850 fd5ff06f jal x0, -44 +48355209ns 849907 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48355493ns 849912 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48355891ns 849919 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48356061ns 849922 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48356516ns 849930 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48356686ns 849933 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48356971ns 849938 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48357255ns 849943 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48357539ns 849948 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48357994ns 849956 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48358164ns 849959 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48358448ns 849964 1a110850 fd5ff06f jal x0, -44 +48358732ns 849969 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48359016ns 849974 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48359414ns 849981 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48359585ns 849984 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48360039ns 849992 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48360210ns 849995 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48360494ns 850000 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48360778ns 850005 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48361062ns 850010 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48361517ns 850018 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48361688ns 850021 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48361972ns 850026 1a110850 fd5ff06f jal x0, -44 +48362256ns 850031 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48362540ns 850036 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48362938ns 850043 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48363108ns 850046 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48363563ns 850054 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48363734ns 850057 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48364018ns 850062 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48364302ns 850067 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48364586ns 850072 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48365041ns 850080 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48365211ns 850083 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48365495ns 850088 1a110850 fd5ff06f jal x0, -44 +48365779ns 850093 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48366064ns 850098 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48366461ns 850105 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48366632ns 850108 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48367087ns 850116 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48367257ns 850119 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48367541ns 850124 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48367825ns 850129 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48368110ns 850134 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48368564ns 850142 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48368735ns 850145 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48369019ns 850150 1a110850 fd5ff06f jal x0, -44 +48369303ns 850155 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48369587ns 850160 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48369985ns 850167 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48370156ns 850170 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48370610ns 850178 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48370781ns 850181 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48371065ns 850186 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48371349ns 850191 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48371633ns 850196 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48372088ns 850204 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48372258ns 850207 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48372543ns 850212 1a110850 fd5ff06f jal x0, -44 +48372827ns 850217 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48373111ns 850222 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48373509ns 850229 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48373679ns 850232 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48374134ns 850240 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48374304ns 850243 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48374588ns 850248 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48374873ns 850253 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48375157ns 850258 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48375611ns 850266 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48375782ns 850269 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48376066ns 850274 1a110850 fd5ff06f jal x0, -44 +48376350ns 850279 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48376634ns 850284 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48377032ns 850291 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48377203ns 850294 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48377657ns 850302 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48377828ns 850305 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48378112ns 850310 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48378396ns 850315 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48378680ns 850320 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48379135ns 850328 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48379306ns 850331 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48379590ns 850336 1a110850 fd5ff06f jal x0, -44 +48379874ns 850341 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48380158ns 850346 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48380556ns 850353 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48380726ns 850356 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48381181ns 850364 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48381351ns 850367 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48381636ns 850372 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48381920ns 850377 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48382204ns 850382 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48382659ns 850390 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48382829ns 850393 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48383113ns 850398 1a110850 fd5ff06f jal x0, -44 +48383397ns 850403 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48383682ns 850408 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48384079ns 850415 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48384250ns 850418 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48384705ns 850426 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48384875ns 850429 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48385159ns 850434 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48385443ns 850439 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48385728ns 850444 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48386182ns 850452 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48386353ns 850455 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48386637ns 850460 1a110850 fd5ff06f jal x0, -44 +48386921ns 850465 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48387205ns 850470 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48387603ns 850477 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48387773ns 850480 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48388228ns 850488 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48388399ns 850491 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48388683ns 850496 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48388967ns 850501 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48389251ns 850506 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48389706ns 850514 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48389876ns 850517 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48390160ns 850522 1a110850 fd5ff06f jal x0, -44 +48390445ns 850527 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48390729ns 850532 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48391127ns 850539 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48391297ns 850542 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48391752ns 850550 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48391922ns 850553 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48392206ns 850558 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48392491ns 850563 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48392775ns 850568 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48393229ns 850576 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48393400ns 850579 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48393684ns 850584 1a110850 fd5ff06f jal x0, -44 +48393968ns 850589 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48394252ns 850594 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48394650ns 850601 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48394821ns 850604 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48395275ns 850612 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48395446ns 850615 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48395730ns 850620 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48396014ns 850625 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48396298ns 850630 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48396753ns 850638 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48396923ns 850641 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48397208ns 850646 1a110850 fd5ff06f jal x0, -44 +48397492ns 850651 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48397776ns 850656 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48398174ns 850663 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48398344ns 850666 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48398799ns 850674 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48398969ns 850677 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48399254ns 850682 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48399538ns 850687 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48399822ns 850692 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48400277ns 850700 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48400447ns 850703 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48400731ns 850708 1a110850 fd5ff06f jal x0, -44 +48401015ns 850713 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48401299ns 850718 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48401697ns 850725 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48401868ns 850728 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48402322ns 850736 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48402493ns 850739 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48402777ns 850744 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48403061ns 850749 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48403345ns 850754 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48403800ns 850762 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48403971ns 850765 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48404255ns 850770 1a110850 fd5ff06f jal x0, -44 +48404539ns 850775 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48404823ns 850780 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48405221ns 850787 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48405391ns 850790 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48405846ns 850798 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48406017ns 850801 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48406301ns 850806 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48406585ns 850811 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48406869ns 850816 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48407324ns 850824 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48407494ns 850827 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48407778ns 850832 1a110850 fd5ff06f jal x0, -44 +48408063ns 850837 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48408347ns 850842 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48408744ns 850849 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48408915ns 850852 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48409370ns 850860 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48409540ns 850863 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48409824ns 850868 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48410108ns 850873 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48410393ns 850878 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48410847ns 850886 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48411018ns 850889 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48411302ns 850894 1a110850 fd5ff06f jal x0, -44 +48411586ns 850899 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48411870ns 850904 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48412268ns 850911 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48412439ns 850914 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48412893ns 850922 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48413064ns 850925 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48413348ns 850930 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48413632ns 850935 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48413916ns 850940 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48414371ns 850948 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48414541ns 850951 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48414826ns 850956 1a110850 fd5ff06f jal x0, -44 +48415110ns 850961 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48415394ns 850966 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48415792ns 850973 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48415962ns 850976 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48416417ns 850984 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48416587ns 850987 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48416871ns 850992 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48417156ns 850997 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48417440ns 851002 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48417894ns 851010 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48418065ns 851013 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48418349ns 851018 1a110850 fd5ff06f jal x0, -44 +48418633ns 851023 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48418917ns 851028 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48419315ns 851035 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48419486ns 851038 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48419940ns 851046 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48420111ns 851049 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48420395ns 851054 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48420679ns 851059 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48420963ns 851064 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48421418ns 851072 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48421589ns 851075 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48421873ns 851080 1a110850 fd5ff06f jal x0, -44 +48422157ns 851085 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48422441ns 851090 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48422839ns 851097 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48423009ns 851100 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48423464ns 851108 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48423634ns 851111 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48423919ns 851116 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48424203ns 851121 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48424487ns 851126 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48424942ns 851134 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48425112ns 851137 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48425396ns 851142 1a110850 fd5ff06f jal x0, -44 +48425680ns 851147 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48425965ns 851152 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48426362ns 851159 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48426533ns 851162 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48426988ns 851170 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48427158ns 851173 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48427442ns 851178 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48427726ns 851183 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48428011ns 851188 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48428465ns 851196 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48428636ns 851199 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48428920ns 851204 1a110850 fd5ff06f jal x0, -44 +48429204ns 851209 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48429488ns 851214 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48429886ns 851221 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48430056ns 851224 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48430511ns 851232 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48430682ns 851235 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48430966ns 851240 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48431250ns 851245 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48431534ns 851250 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48431989ns 851258 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48432159ns 851261 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48432443ns 851266 1a110850 fd5ff06f jal x0, -44 +48432728ns 851271 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48433012ns 851276 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48433410ns 851283 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48433580ns 851286 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48434035ns 851294 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48434205ns 851297 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48434489ns 851302 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48434774ns 851307 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48435058ns 851312 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48435512ns 851320 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48435683ns 851323 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48435967ns 851328 1a110850 fd5ff06f jal x0, -44 +48436251ns 851333 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48436535ns 851338 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48436933ns 851345 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48437104ns 851348 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48437558ns 851356 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48437729ns 851359 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48438013ns 851364 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48438297ns 851369 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48438581ns 851374 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48439036ns 851382 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48439206ns 851385 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48439491ns 851390 1a110850 fd5ff06f jal x0, -44 +48439775ns 851395 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48440059ns 851400 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48440457ns 851407 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48440627ns 851410 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48441082ns 851418 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48441252ns 851421 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48441537ns 851426 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48441821ns 851431 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48442105ns 851436 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48442560ns 851444 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48442730ns 851447 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48443014ns 851452 1a110850 fd5ff06f jal x0, -44 +48443298ns 851457 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48443583ns 851462 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48443980ns 851469 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48444151ns 851472 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48444605ns 851480 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48444776ns 851483 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48445060ns 851488 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48445344ns 851493 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48445628ns 851498 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48446083ns 851506 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48446254ns 851509 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48446538ns 851514 1a110850 fd5ff06f jal x0, -44 +48446822ns 851519 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48447106ns 851524 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48447504ns 851531 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48447674ns 851534 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48448129ns 851542 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48448300ns 851545 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48448584ns 851550 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48448868ns 851555 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48449152ns 851560 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48449607ns 851568 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48449777ns 851571 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48450061ns 851576 1a110850 fd5ff06f jal x0, -44 +48450346ns 851581 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48450630ns 851586 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48451027ns 851593 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48451198ns 851596 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48451653ns 851604 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48451823ns 851607 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48452107ns 851612 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48452391ns 851617 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48452676ns 851622 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48453130ns 851630 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48453301ns 851633 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48453585ns 851638 1a110850 fd5ff06f jal x0, -44 +48453869ns 851643 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48454153ns 851648 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48454551ns 851655 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48454722ns 851658 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48455176ns 851666 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48455347ns 851669 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48455631ns 851674 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48455915ns 851679 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48456199ns 851684 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48456654ns 851692 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48456824ns 851695 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48457109ns 851700 1a110850 fd5ff06f jal x0, -44 +48457393ns 851705 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48457677ns 851710 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48458075ns 851717 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48458245ns 851720 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48458700ns 851728 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48458870ns 851731 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48459154ns 851736 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48459439ns 851741 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48459723ns 851746 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48460177ns 851754 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48460348ns 851757 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48460632ns 851762 1a110850 fd5ff06f jal x0, -44 +48460916ns 851767 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48461200ns 851772 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48461598ns 851779 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48461769ns 851782 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48462223ns 851790 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48462394ns 851793 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48462678ns 851798 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48462962ns 851803 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48463246ns 851808 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48463701ns 851816 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48463872ns 851819 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48464156ns 851824 1a110850 fd5ff06f jal x0, -44 +48464440ns 851829 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48464724ns 851834 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48465122ns 851841 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48465292ns 851844 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48465747ns 851852 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48465917ns 851855 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48466202ns 851860 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48466486ns 851865 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48466770ns 851870 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48467225ns 851878 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48467395ns 851881 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48467679ns 851886 1a110850 fd5ff06f jal x0, -44 +48467963ns 851891 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48468248ns 851896 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48468645ns 851903 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48468816ns 851906 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48469271ns 851914 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48469441ns 851917 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48469725ns 851922 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48470009ns 851927 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48470294ns 851932 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48470748ns 851940 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48470919ns 851943 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48471203ns 851948 1a110850 fd5ff06f jal x0, -44 +48471487ns 851953 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48471771ns 851958 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48472169ns 851965 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48472339ns 851968 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48472794ns 851976 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48472965ns 851979 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48473249ns 851984 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48473533ns 851989 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48473817ns 851994 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48474272ns 852002 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48474442ns 852005 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48474726ns 852010 1a110850 fd5ff06f jal x0, -44 +48475011ns 852015 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48475295ns 852020 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48475693ns 852027 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48475863ns 852030 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48476318ns 852038 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48476488ns 852041 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48476772ns 852046 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48477057ns 852051 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48477341ns 852056 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48477795ns 852064 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48477966ns 852067 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48478250ns 852072 1a110850 fd5ff06f jal x0, -44 +48478534ns 852077 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48478818ns 852082 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48479216ns 852089 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48479387ns 852092 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48479841ns 852100 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48480012ns 852103 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48480296ns 852108 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48480580ns 852113 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48480864ns 852118 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48481319ns 852126 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48481489ns 852129 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48481774ns 852134 1a110850 fd5ff06f jal x0, -44 +48482058ns 852139 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48482342ns 852144 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48482740ns 852151 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48482910ns 852154 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48483365ns 852162 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48483535ns 852165 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48483820ns 852170 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48484104ns 852175 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48484388ns 852180 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48484843ns 852188 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48485013ns 852191 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48485297ns 852196 1a110850 fd5ff06f jal x0, -44 +48485581ns 852201 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48485866ns 852206 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48486263ns 852213 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48486434ns 852216 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48486888ns 852224 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48487059ns 852227 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48487343ns 852232 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48487627ns 852237 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48487911ns 852242 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48488366ns 852250 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48488537ns 852253 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48488821ns 852258 1a110850 fd5ff06f jal x0, -44 +48489105ns 852263 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48489389ns 852268 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48489787ns 852275 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48489957ns 852278 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48490412ns 852286 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48490583ns 852289 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48490867ns 852294 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48491151ns 852299 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48491435ns 852304 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48491890ns 852312 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48492060ns 852315 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48492344ns 852320 1a110850 fd5ff06f jal x0, -44 +48492629ns 852325 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48492913ns 852330 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48493311ns 852337 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48493481ns 852340 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48493936ns 852348 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48494106ns 852351 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48494390ns 852356 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48494674ns 852361 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48494959ns 852366 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48495413ns 852374 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48495584ns 852377 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48495868ns 852382 1a110850 fd5ff06f jal x0, -44 +48496152ns 852387 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48496436ns 852392 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48496834ns 852399 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48497005ns 852402 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48497459ns 852410 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48497630ns 852413 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48497914ns 852418 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48498198ns 852423 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48498482ns 852428 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48498937ns 852436 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48499107ns 852439 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48499392ns 852444 1a110850 fd5ff06f jal x0, -44 +48499676ns 852449 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48499960ns 852454 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48500358ns 852461 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48500528ns 852464 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48500983ns 852472 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48501153ns 852475 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48501437ns 852480 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48501722ns 852485 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48502006ns 852490 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48502460ns 852498 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48502631ns 852501 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48502915ns 852506 1a110850 fd5ff06f jal x0, -44 +48503199ns 852511 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48503483ns 852516 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48503881ns 852523 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48504052ns 852526 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48504506ns 852534 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48504677ns 852537 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48504961ns 852542 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48505245ns 852547 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48505529ns 852552 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48505984ns 852560 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48506155ns 852563 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48506439ns 852568 1a110850 fd5ff06f jal x0, -44 +48506723ns 852573 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48507007ns 852578 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48507405ns 852585 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48507575ns 852588 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48508030ns 852596 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48508200ns 852599 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48508485ns 852604 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48508769ns 852609 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48509053ns 852614 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48509508ns 852622 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48509678ns 852625 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48509962ns 852630 1a110850 fd5ff06f jal x0, -44 +48510246ns 852635 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48510531ns 852640 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48510928ns 852647 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48511099ns 852650 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48511554ns 852658 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48511724ns 852661 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48512008ns 852666 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48512292ns 852671 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48512577ns 852676 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48513031ns 852684 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48513202ns 852687 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48513486ns 852692 1a110850 fd5ff06f jal x0, -44 +48513770ns 852697 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48514054ns 852702 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48514452ns 852709 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48514623ns 852712 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48515077ns 852720 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48515248ns 852723 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48515532ns 852728 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48515816ns 852733 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48516100ns 852738 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48516555ns 852746 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48516725ns 852749 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48517009ns 852754 1a110850 fd5ff06f jal x0, -44 +48517294ns 852759 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48517578ns 852764 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48517976ns 852771 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48518146ns 852774 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48518601ns 852782 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48518771ns 852785 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48519055ns 852790 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48519340ns 852795 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48519624ns 852800 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48520078ns 852808 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48520249ns 852811 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48520533ns 852816 1a110850 fd5ff06f jal x0, -44 +48520817ns 852821 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48521101ns 852826 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48521499ns 852833 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48521670ns 852836 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48522124ns 852844 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48522295ns 852847 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48522579ns 852852 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48522863ns 852857 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48523147ns 852862 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48523602ns 852870 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48523772ns 852873 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48524057ns 852878 1a110850 fd5ff06f jal x0, -44 +48524341ns 852883 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48524625ns 852888 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48525023ns 852895 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48525193ns 852898 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48525648ns 852906 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48525818ns 852909 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48526103ns 852914 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48526387ns 852919 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48526671ns 852924 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48527126ns 852932 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48527296ns 852935 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48527580ns 852940 1a110850 fd5ff06f jal x0, -44 +48527864ns 852945 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48528149ns 852950 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48528546ns 852957 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48528717ns 852960 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48529171ns 852968 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48529342ns 852971 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48529626ns 852976 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48529910ns 852981 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48530194ns 852986 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48530649ns 852994 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48530820ns 852997 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48531104ns 853002 1a110850 fd5ff06f jal x0, -44 +48531388ns 853007 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48531672ns 853012 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48532070ns 853019 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48532240ns 853022 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48532695ns 853030 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48532866ns 853033 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48533150ns 853038 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48533434ns 853043 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48533718ns 853048 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48534173ns 853056 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48534343ns 853059 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48534627ns 853064 1a110850 fd5ff06f jal x0, -44 +48534912ns 853069 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48535196ns 853074 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48535594ns 853081 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48535764ns 853084 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48536219ns 853092 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48536389ns 853095 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48536673ns 853100 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48536957ns 853105 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48537242ns 853110 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48537696ns 853118 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48537867ns 853121 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48538151ns 853126 1a110850 fd5ff06f jal x0, -44 +48538435ns 853131 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48538719ns 853136 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48539117ns 853143 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48539288ns 853146 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48539742ns 853154 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48539913ns 853157 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48540197ns 853162 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48540481ns 853167 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48540765ns 853172 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48541220ns 853180 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48541390ns 853183 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48541675ns 853188 1a110850 fd5ff06f jal x0, -44 +48541959ns 853193 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48542243ns 853198 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48542641ns 853205 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48542811ns 853208 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48543266ns 853216 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48543436ns 853219 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48543720ns 853224 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48544005ns 853229 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48544289ns 853234 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48544743ns 853242 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48544914ns 853245 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48545198ns 853250 1a110850 fd5ff06f jal x0, -44 +48545482ns 853255 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48545766ns 853260 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48546164ns 853267 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48546335ns 853270 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48546789ns 853278 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48546960ns 853281 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48547244ns 853286 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48547528ns 853291 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48547812ns 853296 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48548267ns 853304 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48548438ns 853307 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48548722ns 853312 1a110850 fd5ff06f jal x0, -44 +48549006ns 853317 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48549290ns 853322 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48549688ns 853329 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48549858ns 853332 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48550313ns 853340 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48550483ns 853343 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48550768ns 853348 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48551052ns 853353 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48551336ns 853358 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48551791ns 853366 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48551961ns 853369 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48552245ns 853374 1a110850 fd5ff06f jal x0, -44 +48552529ns 853379 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48552814ns 853384 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48553211ns 853391 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48553382ns 853394 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48553837ns 853402 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48554007ns 853405 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48554291ns 853410 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48554575ns 853415 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48554860ns 853420 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48555314ns 853428 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48555485ns 853431 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48555769ns 853436 1a110850 fd5ff06f jal x0, -44 +48556053ns 853441 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48556337ns 853446 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48556735ns 853453 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48556906ns 853456 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48557360ns 853464 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48557531ns 853467 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48557815ns 853472 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48558099ns 853477 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48558383ns 853482 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48558838ns 853490 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48559008ns 853493 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48559292ns 853498 1a110850 fd5ff06f jal x0, -44 +48559577ns 853503 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48559861ns 853508 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48560259ns 853515 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48560429ns 853518 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48560884ns 853526 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48561054ns 853529 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48561338ns 853534 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48561623ns 853539 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48561907ns 853544 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48562361ns 853552 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48562532ns 853555 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48562816ns 853560 1a110850 fd5ff06f jal x0, -44 +48563100ns 853565 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48563384ns 853570 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48563782ns 853577 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48563953ns 853580 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48564407ns 853588 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48564578ns 853591 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48564862ns 853596 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48565146ns 853601 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48565430ns 853606 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48565885ns 853614 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48566055ns 853617 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48566340ns 853622 1a110850 fd5ff06f jal x0, -44 +48566624ns 853627 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48566908ns 853632 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48567306ns 853639 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48567476ns 853642 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48567931ns 853650 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48568101ns 853653 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48568386ns 853658 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48568670ns 853663 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48568954ns 853668 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48569409ns 853676 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48569579ns 853679 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48569863ns 853684 1a110850 fd5ff06f jal x0, -44 +48570147ns 853689 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48570432ns 853694 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48570829ns 853701 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48571000ns 853704 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48571455ns 853712 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48571625ns 853715 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48571909ns 853720 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48572193ns 853725 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48572477ns 853730 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48572932ns 853738 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48573103ns 853741 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48573387ns 853746 1a110850 fd5ff06f jal x0, -44 +48573671ns 853751 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48573955ns 853756 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48574353ns 853763 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48574523ns 853766 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48574978ns 853774 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48575149ns 853777 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48575433ns 853782 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48575717ns 853787 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48576001ns 853792 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48576456ns 853800 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48576626ns 853803 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48576910ns 853808 1a110850 fd5ff06f jal x0, -44 +48577195ns 853813 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48577479ns 853818 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48577877ns 853825 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48578047ns 853828 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48578502ns 853836 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48578672ns 853839 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48578956ns 853844 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48579240ns 853849 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48579525ns 853854 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48579979ns 853862 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48580150ns 853865 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48580434ns 853870 1a110850 fd5ff06f jal x0, -44 +48580718ns 853875 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48581002ns 853880 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48581400ns 853887 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48581571ns 853890 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48582025ns 853898 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48582196ns 853901 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48582480ns 853906 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48582764ns 853911 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48583048ns 853916 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48583503ns 853924 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48583673ns 853927 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48583958ns 853932 1a110850 fd5ff06f jal x0, -44 +48584242ns 853937 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48584526ns 853942 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48584924ns 853949 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48585094ns 853952 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48585549ns 853960 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48585719ns 853963 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48586003ns 853968 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48586288ns 853973 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48586572ns 853978 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48587026ns 853986 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48587197ns 853989 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48587481ns 853994 1a110850 fd5ff06f jal x0, -44 +48587765ns 853999 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48588049ns 854004 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48588447ns 854011 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48588618ns 854014 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48589072ns 854022 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48589243ns 854025 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48589527ns 854030 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48589811ns 854035 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48590095ns 854040 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48590550ns 854048 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48590721ns 854051 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48591005ns 854056 1a110850 fd5ff06f jal x0, -44 +48591289ns 854061 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48591573ns 854066 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48591971ns 854073 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48592141ns 854076 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48592596ns 854084 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48592767ns 854087 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48593051ns 854092 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48593335ns 854097 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48593619ns 854102 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48594074ns 854110 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48594244ns 854113 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48594528ns 854118 1a110850 fd5ff06f jal x0, -44 +48594812ns 854123 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48595097ns 854128 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48595494ns 854135 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48595665ns 854138 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48596120ns 854146 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48596290ns 854149 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48596574ns 854154 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48596858ns 854159 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48597143ns 854164 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48597597ns 854172 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48597768ns 854175 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48598052ns 854180 1a110850 fd5ff06f jal x0, -44 +48598336ns 854185 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48598620ns 854190 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48599018ns 854197 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48599189ns 854200 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48599643ns 854208 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48599814ns 854211 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48600098ns 854216 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48600382ns 854221 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48600666ns 854226 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48601121ns 854234 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48601291ns 854237 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48601575ns 854242 1a110850 fd5ff06f jal x0, -44 +48601860ns 854247 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48602144ns 854252 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48602542ns 854259 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48602712ns 854262 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48603167ns 854270 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48603337ns 854273 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48603621ns 854278 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48603906ns 854283 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48604190ns 854288 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48604644ns 854296 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48604815ns 854299 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48605099ns 854304 1a110850 fd5ff06f jal x0, -44 +48605383ns 854309 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48605667ns 854314 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48606065ns 854321 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48606236ns 854324 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48606690ns 854332 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48606861ns 854335 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48607145ns 854340 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48607429ns 854345 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48607713ns 854350 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48608168ns 854358 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48608338ns 854361 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48608623ns 854366 1a110850 fd5ff06f jal x0, -44 +48608907ns 854371 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48609191ns 854376 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48609589ns 854383 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48609759ns 854386 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48610214ns 854394 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48610384ns 854397 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48610669ns 854402 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48610953ns 854407 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48611237ns 854412 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48611692ns 854420 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48611862ns 854423 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48612146ns 854428 1a110850 fd5ff06f jal x0, -44 +48612430ns 854433 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48612715ns 854438 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48613112ns 854445 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48613283ns 854448 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48613738ns 854456 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48613908ns 854459 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48614192ns 854464 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48614476ns 854469 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48614760ns 854474 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48615215ns 854482 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48615386ns 854485 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48615670ns 854490 1a110850 fd5ff06f jal x0, -44 +48615954ns 854495 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48616238ns 854500 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48616636ns 854507 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48616806ns 854510 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48617261ns 854518 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48617432ns 854521 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48617716ns 854526 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48618000ns 854531 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48618284ns 854536 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48618739ns 854544 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48618909ns 854547 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48619193ns 854552 1a110850 fd5ff06f jal x0, -44 +48619478ns 854557 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48619762ns 854562 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48620160ns 854569 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48620330ns 854572 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48620785ns 854580 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48620955ns 854583 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48621239ns 854588 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48621523ns 854593 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48621808ns 854598 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48622262ns 854606 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48622433ns 854609 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48622717ns 854614 1a110850 fd5ff06f jal x0, -44 +48623001ns 854619 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48623285ns 854624 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48623683ns 854631 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48623854ns 854634 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48624308ns 854642 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48624479ns 854645 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48624763ns 854650 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48625047ns 854655 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48625331ns 854660 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48625786ns 854668 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48625956ns 854671 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48626241ns 854676 1a110850 fd5ff06f jal x0, -44 +48626525ns 854681 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48626809ns 854686 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48627207ns 854693 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48627377ns 854696 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48627832ns 854704 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48628002ns 854707 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48628287ns 854712 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48628571ns 854717 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48628855ns 854722 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48629309ns 854730 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48629480ns 854733 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48629764ns 854738 1a110850 fd5ff06f jal x0, -44 +48630048ns 854743 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48630332ns 854748 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48630730ns 854755 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48630901ns 854758 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48631355ns 854766 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48631526ns 854769 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48631810ns 854774 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48632094ns 854779 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48632378ns 854784 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48632833ns 854792 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48633004ns 854795 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48633288ns 854800 1a110850 fd5ff06f jal x0, -44 +48633572ns 854805 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48633856ns 854810 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48634254ns 854817 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48634424ns 854820 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48634879ns 854828 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48635050ns 854831 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48635334ns 854836 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48635618ns 854841 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48635902ns 854846 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48636357ns 854854 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48636527ns 854857 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48636811ns 854862 1a110850 fd5ff06f jal x0, -44 +48637095ns 854867 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48637380ns 854872 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48637777ns 854879 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48637948ns 854882 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48638403ns 854890 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48638573ns 854893 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48638857ns 854898 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48639141ns 854903 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48639426ns 854908 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48639880ns 854916 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48640051ns 854919 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48640335ns 854924 1a110850 fd5ff06f jal x0, -44 +48640619ns 854929 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48640903ns 854934 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48641301ns 854941 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48641472ns 854944 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48641926ns 854952 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48642097ns 854955 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48642381ns 854960 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48642665ns 854965 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48642949ns 854970 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48643404ns 854978 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48643574ns 854981 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48643858ns 854986 1a110850 fd5ff06f jal x0, -44 +48644143ns 854991 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48644427ns 854996 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48644825ns 855003 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48644995ns 855006 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48645450ns 855014 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48645620ns 855017 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48645904ns 855022 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48646189ns 855027 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48646473ns 855032 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48646927ns 855040 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48647098ns 855043 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48647382ns 855048 1a110850 fd5ff06f jal x0, -44 +48647666ns 855053 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48647950ns 855058 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48648348ns 855065 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48648519ns 855068 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48648973ns 855076 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48649144ns 855079 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48649428ns 855084 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48649712ns 855089 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48649996ns 855094 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48650451ns 855102 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48650621ns 855105 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48650906ns 855110 1a110850 fd5ff06f jal x0, -44 +48651190ns 855115 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48651474ns 855120 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48651872ns 855127 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48652042ns 855130 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48652497ns 855138 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48652667ns 855141 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48652952ns 855146 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48653236ns 855151 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48653520ns 855156 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48653975ns 855164 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48654145ns 855167 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48654429ns 855172 1a110850 fd5ff06f jal x0, -44 +48654713ns 855177 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48654998ns 855182 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48655395ns 855189 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48655566ns 855192 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48656021ns 855200 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48656191ns 855203 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48656475ns 855208 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48656759ns 855213 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48657043ns 855218 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48657498ns 855226 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48657669ns 855229 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48657953ns 855234 1a110850 fd5ff06f jal x0, -44 +48658237ns 855239 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48658521ns 855244 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48658919ns 855251 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48659089ns 855254 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48659544ns 855262 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48659715ns 855265 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48659999ns 855270 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48660283ns 855275 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48660567ns 855280 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48661022ns 855288 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48661192ns 855291 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48661476ns 855296 1a110850 fd5ff06f jal x0, -44 +48661761ns 855301 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48662045ns 855306 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48662443ns 855313 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48662613ns 855316 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48663068ns 855324 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48663238ns 855327 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48663522ns 855332 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48663807ns 855337 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48664091ns 855342 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48664545ns 855350 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48664716ns 855353 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48665000ns 855358 1a110850 fd5ff06f jal x0, -44 +48665284ns 855363 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48665568ns 855368 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48665966ns 855375 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48666137ns 855378 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48666591ns 855386 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48666762ns 855389 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48667046ns 855394 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48667330ns 855399 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48667614ns 855404 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48668069ns 855412 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48668239ns 855415 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48668524ns 855420 1a110850 fd5ff06f jal x0, -44 +48668808ns 855425 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48669092ns 855430 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48669490ns 855437 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48669660ns 855440 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48670115ns 855448 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48670285ns 855451 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48670570ns 855456 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48670854ns 855461 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48671138ns 855466 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48671592ns 855474 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48671763ns 855477 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48672047ns 855482 1a110850 fd5ff06f jal x0, -44 +48672331ns 855487 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48672615ns 855492 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48673013ns 855499 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48673184ns 855502 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48673638ns 855510 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48673809ns 855513 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48674093ns 855518 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48674377ns 855523 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48674661ns 855528 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48675116ns 855536 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48675287ns 855539 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48675571ns 855544 1a110850 fd5ff06f jal x0, -44 +48675855ns 855549 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48676139ns 855554 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48676537ns 855561 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48676707ns 855564 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48677162ns 855572 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48677333ns 855575 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48677617ns 855580 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48677901ns 855585 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48678185ns 855590 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48678640ns 855598 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48678810ns 855601 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48679094ns 855606 1a110850 fd5ff06f jal x0, -44 +48679378ns 855611 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48679663ns 855616 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48680060ns 855623 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48680231ns 855626 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48680686ns 855634 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48680856ns 855637 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48681140ns 855642 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48681424ns 855647 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48681709ns 855652 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48682163ns 855660 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48682334ns 855663 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48682618ns 855668 1a110850 fd5ff06f jal x0, -44 +48682902ns 855673 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48683186ns 855678 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48683584ns 855685 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48683755ns 855688 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48684209ns 855696 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48684380ns 855699 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48684664ns 855704 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48684948ns 855709 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48685232ns 855714 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48685687ns 855722 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48685857ns 855725 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48686141ns 855730 1a110850 fd5ff06f jal x0, -44 +48686426ns 855735 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48686710ns 855740 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48687108ns 855747 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48687278ns 855750 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48687733ns 855758 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48687903ns 855761 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48688187ns 855766 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48688472ns 855771 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48688756ns 855776 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48689210ns 855784 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48689381ns 855787 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48689665ns 855792 1a110850 fd5ff06f jal x0, -44 +48689949ns 855797 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48690233ns 855802 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48690631ns 855809 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48690802ns 855812 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48691256ns 855820 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48691427ns 855823 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48691711ns 855828 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48691995ns 855833 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48692279ns 855838 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48692734ns 855846 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48692904ns 855849 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48693189ns 855854 1a110850 fd5ff06f jal x0, -44 +48693473ns 855859 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48693757ns 855864 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48694155ns 855871 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48694325ns 855874 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48694780ns 855882 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48694950ns 855885 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48695235ns 855890 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48695519ns 855895 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48695803ns 855900 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48696258ns 855908 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48696428ns 855911 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48696712ns 855916 1a110850 fd5ff06f jal x0, -44 +48696996ns 855921 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48697281ns 855926 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48697678ns 855933 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48697849ns 855936 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48698304ns 855944 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48698474ns 855947 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48698758ns 855952 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48699042ns 855957 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48699327ns 855962 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48699781ns 855970 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48699952ns 855973 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48700236ns 855978 1a110850 fd5ff06f jal x0, -44 +48700520ns 855983 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48700804ns 855988 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48701202ns 855995 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48701372ns 855998 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48701827ns 856006 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48701998ns 856009 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48702282ns 856014 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48702566ns 856019 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48702850ns 856024 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48703305ns 856032 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48703475ns 856035 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48703759ns 856040 1a110850 fd5ff06f jal x0, -44 +48704044ns 856045 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48704328ns 856050 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48704726ns 856057 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48704896ns 856060 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48705351ns 856068 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48705521ns 856071 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48705805ns 856076 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48706090ns 856081 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48706374ns 856086 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48706828ns 856094 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48706999ns 856097 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48707283ns 856102 1a110850 fd5ff06f jal x0, -44 +48707567ns 856107 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48707851ns 856112 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48708249ns 856119 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48708420ns 856122 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48708874ns 856130 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48709045ns 856133 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48709329ns 856138 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48709613ns 856143 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48709897ns 856148 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48710352ns 856156 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48710522ns 856159 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48710807ns 856164 1a110850 fd5ff06f jal x0, -44 +48711091ns 856169 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48711375ns 856174 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48711773ns 856181 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48711943ns 856184 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48712398ns 856192 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48712568ns 856195 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48712853ns 856200 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48713137ns 856205 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48713421ns 856210 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48713875ns 856218 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48714046ns 856221 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48714330ns 856226 1a110850 fd5ff06f jal x0, -44 +48714614ns 856231 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48714898ns 856236 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48715296ns 856243 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48715467ns 856246 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48715921ns 856254 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48716092ns 856257 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48716376ns 856262 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48716660ns 856267 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48716944ns 856272 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48717399ns 856280 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48717570ns 856283 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48717854ns 856288 1a110850 fd5ff06f jal x0, -44 +48718138ns 856293 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48718422ns 856298 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48718820ns 856305 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48718990ns 856308 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48719445ns 856316 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48719616ns 856319 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48719900ns 856324 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48720184ns 856329 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48720468ns 856334 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48720923ns 856342 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48721093ns 856345 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48721377ns 856350 1a110850 fd5ff06f jal x0, -44 +48721661ns 856355 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48721946ns 856360 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48722343ns 856367 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48722514ns 856370 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48722969ns 856378 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48723139ns 856381 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48723423ns 856386 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48723707ns 856391 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48723992ns 856396 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48724446ns 856404 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48724617ns 856407 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48724901ns 856412 1a110850 fd5ff06f jal x0, -44 +48725185ns 856417 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48725469ns 856422 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48725867ns 856429 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48726038ns 856432 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48726492ns 856440 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48726663ns 856443 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48726947ns 856448 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48727231ns 856453 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48727515ns 856458 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48727970ns 856466 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48728140ns 856469 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48728424ns 856474 1a110850 fd5ff06f jal x0, -44 +48728709ns 856479 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48728993ns 856484 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48729391ns 856491 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48729561ns 856494 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48730016ns 856502 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48730186ns 856505 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48730470ns 856510 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48730755ns 856515 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48731039ns 856520 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48731493ns 856528 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48731664ns 856531 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48731948ns 856536 1a110850 fd5ff06f jal x0, -44 +48732232ns 856541 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48732516ns 856546 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48732914ns 856553 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48733085ns 856556 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48733539ns 856564 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48733710ns 856567 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48733994ns 856572 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48734278ns 856577 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48734562ns 856582 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48735017ns 856590 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48735187ns 856593 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48735472ns 856598 1a110850 fd5ff06f jal x0, -44 +48735756ns 856603 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48736040ns 856608 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48736438ns 856615 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48736608ns 856618 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48737063ns 856626 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48737233ns 856629 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48737518ns 856634 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48737802ns 856639 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48738086ns 856644 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48738541ns 856652 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48738711ns 856655 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48738995ns 856660 1a110850 fd5ff06f jal x0, -44 +48739279ns 856665 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48739564ns 856670 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48739961ns 856677 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48740132ns 856680 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48740587ns 856688 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48740757ns 856691 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48741041ns 856696 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48741325ns 856701 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48741610ns 856706 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48742064ns 856714 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48742235ns 856717 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48742519ns 856722 1a110850 fd5ff06f jal x0, -44 +48742803ns 856727 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48743087ns 856732 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48743485ns 856739 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48743655ns 856742 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48744110ns 856750 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48744281ns 856753 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48744565ns 856758 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48744849ns 856763 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48745133ns 856768 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48745588ns 856776 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48745758ns 856779 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48746042ns 856784 1a110850 fd5ff06f jal x0, -44 +48746327ns 856789 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48746611ns 856794 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48747009ns 856801 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48747179ns 856804 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48747634ns 856812 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48747804ns 856815 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48748088ns 856820 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48748373ns 856825 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48748657ns 856830 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48749111ns 856838 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48749282ns 856841 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48749566ns 856846 1a110850 fd5ff06f jal x0, -44 +48749850ns 856851 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48750134ns 856856 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48750532ns 856863 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48750703ns 856866 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48751157ns 856874 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48751328ns 856877 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48751612ns 856882 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48751896ns 856887 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48752180ns 856892 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48752635ns 856900 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48752805ns 856903 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48753090ns 856908 1a110850 fd5ff06f jal x0, -44 +48753374ns 856913 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48753658ns 856918 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48754056ns 856925 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48754226ns 856928 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48754681ns 856936 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48754851ns 856939 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48755136ns 856944 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48755420ns 856949 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48755704ns 856954 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48756159ns 856962 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48756329ns 856965 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48756613ns 856970 1a110850 fd5ff06f jal x0, -44 +48756897ns 856975 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48757181ns 856980 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48757579ns 856987 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48757750ns 856990 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48758204ns 856998 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48758375ns 857001 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48758659ns 857006 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48758943ns 857011 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48759227ns 857016 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48759682ns 857024 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48759853ns 857027 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48760137ns 857032 1a110850 fd5ff06f jal x0, -44 +48760421ns 857037 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48760705ns 857042 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48761103ns 857049 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48761273ns 857052 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48761728ns 857060 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48761899ns 857063 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48762183ns 857068 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48762467ns 857073 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48762751ns 857078 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48763206ns 857086 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48763376ns 857089 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48763660ns 857094 1a110850 fd5ff06f jal x0, -44 +48763944ns 857099 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48764229ns 857104 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48764626ns 857111 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48764797ns 857114 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48765252ns 857122 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48765422ns 857125 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48765706ns 857130 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48765990ns 857135 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48766275ns 857140 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48766729ns 857148 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48766900ns 857151 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48767184ns 857156 1a110850 fd5ff06f jal x0, -44 +48767468ns 857161 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48767752ns 857166 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48768150ns 857173 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48768321ns 857176 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48768775ns 857184 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48768946ns 857187 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48769230ns 857192 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48769514ns 857197 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48769798ns 857202 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48770253ns 857210 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48770423ns 857213 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48770707ns 857218 1a110850 fd5ff06f jal x0, -44 +48770992ns 857223 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48771276ns 857228 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48771674ns 857235 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48771844ns 857238 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48772299ns 857246 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48772469ns 857249 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48772753ns 857254 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48773038ns 857259 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48773322ns 857264 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48773776ns 857272 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48773947ns 857275 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48774231ns 857280 1a110850 fd5ff06f jal x0, -44 +48774515ns 857285 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48774799ns 857290 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48775197ns 857297 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48775368ns 857300 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48775822ns 857308 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48775993ns 857311 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48776277ns 857316 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48776561ns 857321 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48776845ns 857326 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48777300ns 857334 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48777471ns 857337 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48777755ns 857342 1a110850 fd5ff06f jal x0, -44 +48778039ns 857347 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48778323ns 857352 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48778721ns 857359 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48778891ns 857362 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48779346ns 857370 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48779516ns 857373 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48779801ns 857378 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48780085ns 857383 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48780369ns 857388 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48780824ns 857396 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48780994ns 857399 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48781278ns 857404 1a110850 fd5ff06f jal x0, -44 +48781562ns 857409 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48781847ns 857414 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48782244ns 857421 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48782415ns 857424 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48782870ns 857432 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48783040ns 857435 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48783324ns 857440 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48783608ns 857445 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48783893ns 857450 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48784347ns 857458 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48784518ns 857461 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48784802ns 857466 1a110850 fd5ff06f jal x0, -44 +48785086ns 857471 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48785370ns 857476 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48785768ns 857483 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48785938ns 857486 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48786393ns 857494 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48786564ns 857497 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48786848ns 857502 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48787132ns 857507 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48787416ns 857512 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48787871ns 857520 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48788041ns 857523 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48788325ns 857528 1a110850 fd5ff06f jal x0, -44 +48788610ns 857533 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48788894ns 857538 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48789292ns 857545 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48789462ns 857548 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48789917ns 857556 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48790087ns 857559 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48790371ns 857564 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48790656ns 857569 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48790940ns 857574 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48791394ns 857582 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48791565ns 857585 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48791849ns 857590 1a110850 fd5ff06f jal x0, -44 +48792133ns 857595 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48792417ns 857600 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48792815ns 857607 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48792986ns 857610 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48793440ns 857618 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48793611ns 857621 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48793895ns 857626 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48794179ns 857631 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48794463ns 857636 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48794918ns 857644 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48795088ns 857647 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48795373ns 857652 1a110850 fd5ff06f jal x0, -44 +48795657ns 857657 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48795941ns 857662 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48796339ns 857669 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48796509ns 857672 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48796964ns 857680 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48797134ns 857683 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48797419ns 857688 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48797703ns 857693 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48797987ns 857698 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48798442ns 857706 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48798612ns 857709 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48798896ns 857714 1a110850 fd5ff06f jal x0, -44 +48799180ns 857719 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48799464ns 857724 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48799862ns 857731 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48800033ns 857734 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48800487ns 857742 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48800658ns 857745 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48800942ns 857750 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48801226ns 857755 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48801510ns 857760 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48801965ns 857768 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48802136ns 857771 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48802420ns 857776 1a110850 fd5ff06f jal x0, -44 +48802704ns 857781 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48802988ns 857786 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48803386ns 857793 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48803556ns 857796 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48804011ns 857804 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48804182ns 857807 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48804466ns 857812 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48804750ns 857817 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48805034ns 857822 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48805489ns 857830 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48805659ns 857833 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48805943ns 857838 1a110850 fd5ff06f jal x0, -44 +48806227ns 857843 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48806512ns 857848 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48806909ns 857855 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48807080ns 857858 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48807535ns 857866 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48807705ns 857869 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48807989ns 857874 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48808273ns 857879 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48808558ns 857884 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48809012ns 857892 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48809183ns 857895 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48809467ns 857900 1a110850 fd5ff06f jal x0, -44 +48809751ns 857905 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48810035ns 857910 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48810433ns 857917 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48810604ns 857920 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48811058ns 857928 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48811229ns 857931 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48811513ns 857936 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48811797ns 857941 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48812081ns 857946 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48812536ns 857954 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48812706ns 857957 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48812991ns 857962 1a110850 fd5ff06f jal x0, -44 +48813275ns 857967 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48813559ns 857972 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48813957ns 857979 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48814127ns 857982 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48814582ns 857990 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48814752ns 857993 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48815036ns 857998 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48815321ns 858003 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48815605ns 858008 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48816059ns 858016 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48816230ns 858019 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48816514ns 858024 1a110850 fd5ff06f jal x0, -44 +48816798ns 858029 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48817082ns 858034 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48817480ns 858041 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48817651ns 858044 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48818105ns 858052 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48818276ns 858055 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48818560ns 858060 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48818844ns 858065 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48819128ns 858070 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48819583ns 858078 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48819754ns 858081 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48820038ns 858086 1a110850 fd5ff06f jal x0, -44 +48820322ns 858091 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48820606ns 858096 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48821004ns 858103 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48821174ns 858106 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48821629ns 858114 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48821799ns 858117 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48822084ns 858122 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48822368ns 858127 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48822652ns 858132 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48823107ns 858140 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48823277ns 858143 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48823561ns 858148 1a110850 fd5ff06f jal x0, -44 +48823845ns 858153 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48824130ns 858158 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48824527ns 858165 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48824698ns 858168 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48825153ns 858176 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48825323ns 858179 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48825607ns 858184 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48825891ns 858189 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48826176ns 858194 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48826630ns 858202 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48826801ns 858205 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48827085ns 858210 1a110850 fd5ff06f jal x0, -44 +48827369ns 858215 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48827653ns 858220 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48828051ns 858227 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48828221ns 858230 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48828676ns 858238 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48828847ns 858241 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48829131ns 858246 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48829415ns 858251 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48829699ns 858256 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48830154ns 858264 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48830324ns 858267 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48830608ns 858272 1a110850 fd5ff06f jal x0, -44 +48830893ns 858277 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48831177ns 858282 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48831575ns 858289 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48831745ns 858292 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48832200ns 858300 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48832370ns 858303 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48832654ns 858308 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48832939ns 858313 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48833223ns 858318 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48833677ns 858326 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48833848ns 858329 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48834132ns 858334 1a110850 fd5ff06f jal x0, -44 +48834416ns 858339 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48834700ns 858344 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48835098ns 858351 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48835269ns 858354 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48835723ns 858362 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48835894ns 858365 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48836178ns 858370 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48836462ns 858375 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48836746ns 858380 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48837201ns 858388 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48837371ns 858391 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48837656ns 858396 1a110850 fd5ff06f jal x0, -44 +48837940ns 858401 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48838224ns 858406 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48838622ns 858413 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48838792ns 858416 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48839247ns 858424 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48839417ns 858427 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48839702ns 858432 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48839986ns 858437 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48840270ns 858442 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48840725ns 858450 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48840895ns 858453 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48841179ns 858458 1a110850 fd5ff06f jal x0, -44 +48841463ns 858463 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48841747ns 858468 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48842145ns 858475 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48842316ns 858478 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48842770ns 858486 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48842941ns 858489 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48843225ns 858494 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48843509ns 858499 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48843793ns 858504 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48844248ns 858512 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48844419ns 858515 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48844703ns 858520 1a110850 fd5ff06f jal x0, -44 +48844987ns 858525 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48845271ns 858530 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48845669ns 858537 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48845839ns 858540 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48846294ns 858548 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48846465ns 858551 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48846749ns 858556 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48847033ns 858561 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48847317ns 858566 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48847772ns 858574 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48847942ns 858577 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48848226ns 858582 1a110850 fd5ff06f jal x0, -44 +48848511ns 858587 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48848795ns 858592 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48849192ns 858599 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48849363ns 858602 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48849818ns 858610 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48849988ns 858613 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48850272ns 858618 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48850556ns 858623 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48850841ns 858628 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48851295ns 858636 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48851466ns 858639 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48851750ns 858644 1a110850 fd5ff06f jal x0, -44 +48852034ns 858649 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48852318ns 858654 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48852716ns 858661 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48852887ns 858664 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48853341ns 858672 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48853512ns 858675 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48853796ns 858680 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48854080ns 858685 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48854364ns 858690 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48854819ns 858698 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48854989ns 858701 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48855274ns 858706 1a110850 fd5ff06f jal x0, -44 +48855558ns 858711 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48855842ns 858716 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48856240ns 858723 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48856410ns 858726 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48856865ns 858734 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48857035ns 858737 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48857319ns 858742 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48857604ns 858747 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48857888ns 858752 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48858342ns 858760 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48858513ns 858763 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48858797ns 858768 1a110850 fd5ff06f jal x0, -44 +48859081ns 858773 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48859365ns 858778 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48859763ns 858785 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48859934ns 858788 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48860388ns 858796 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48860559ns 858799 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48860843ns 858804 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48861127ns 858809 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48861411ns 858814 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48861866ns 858822 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48862037ns 858825 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48862321ns 858830 1a110850 fd5ff06f jal x0, -44 +48862605ns 858835 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48862889ns 858840 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48863287ns 858847 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48863457ns 858850 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48863912ns 858858 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48864082ns 858861 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48864367ns 858866 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48864651ns 858871 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48864935ns 858876 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48865390ns 858884 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48865560ns 858887 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48865844ns 858892 1a110850 fd5ff06f jal x0, -44 +48866128ns 858897 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48866413ns 858902 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48866810ns 858909 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48866981ns 858912 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48867436ns 858920 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48867606ns 858923 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48867890ns 858928 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48868174ns 858933 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48868459ns 858938 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48868913ns 858946 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48869084ns 858949 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48869368ns 858954 1a110850 fd5ff06f jal x0, -44 +48869652ns 858959 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48869936ns 858964 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48870334ns 858971 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48870504ns 858974 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48870959ns 858982 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48871130ns 858985 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48871414ns 858990 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48871698ns 858995 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48871982ns 859000 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48872437ns 859008 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48872607ns 859011 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48872891ns 859016 1a110850 fd5ff06f jal x0, -44 +48873176ns 859021 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48873460ns 859026 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48873858ns 859033 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48874028ns 859036 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48874483ns 859044 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48874653ns 859047 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48874937ns 859052 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48875222ns 859057 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48875506ns 859062 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48875960ns 859070 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48876131ns 859073 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48876415ns 859078 1a110850 fd5ff06f jal x0, -44 +48876699ns 859083 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48876983ns 859088 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48877381ns 859095 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48877552ns 859098 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48878006ns 859106 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48878177ns 859109 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48878461ns 859114 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48878745ns 859119 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48879029ns 859124 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48879484ns 859132 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48879654ns 859135 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48879939ns 859140 1a110850 fd5ff06f jal x0, -44 +48880223ns 859145 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48880507ns 859150 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48880905ns 859157 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48881075ns 859160 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48881530ns 859168 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48881700ns 859171 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48881985ns 859176 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48882269ns 859181 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48882553ns 859186 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48883008ns 859194 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48883178ns 859197 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48883462ns 859202 1a110850 fd5ff06f jal x0, -44 +48883746ns 859207 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48884031ns 859212 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48884428ns 859219 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48884599ns 859222 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48885053ns 859230 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48885224ns 859233 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48885508ns 859238 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48885792ns 859243 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48886076ns 859248 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48886531ns 859256 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48886702ns 859259 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48886986ns 859264 1a110850 fd5ff06f jal x0, -44 +48887270ns 859269 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48887554ns 859274 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48887952ns 859281 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48888122ns 859284 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48888577ns 859292 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48888748ns 859295 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48889032ns 859300 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48889316ns 859305 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48889600ns 859310 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48890055ns 859318 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48890225ns 859321 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48890509ns 859326 1a110850 fd5ff06f jal x0, -44 +48890794ns 859331 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48891078ns 859336 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48891475ns 859343 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48891646ns 859346 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48892101ns 859354 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48892271ns 859357 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48892555ns 859362 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48892839ns 859367 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48893124ns 859372 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48893578ns 859380 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48893749ns 859383 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48894033ns 859388 1a110850 fd5ff06f jal x0, -44 +48894317ns 859393 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48894601ns 859398 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48894999ns 859405 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48895170ns 859408 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48895624ns 859416 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48895795ns 859419 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48896079ns 859424 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48896363ns 859429 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48896647ns 859434 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48897102ns 859442 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48897272ns 859445 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48897557ns 859450 1a110850 fd5ff06f jal x0, -44 +48897841ns 859455 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48898125ns 859460 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48898523ns 859467 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48898693ns 859470 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48899148ns 859478 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48899318ns 859481 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48899602ns 859486 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48899887ns 859491 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48900171ns 859496 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48900625ns 859504 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48900796ns 859507 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48901080ns 859512 1a110850 fd5ff06f jal x0, -44 +48901364ns 859517 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48901648ns 859522 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48902046ns 859529 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48902217ns 859532 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48902671ns 859540 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48902842ns 859543 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48903126ns 859548 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48903410ns 859553 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48903694ns 859558 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48904149ns 859566 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48904320ns 859569 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48904604ns 859574 1a110850 fd5ff06f jal x0, -44 +48904888ns 859579 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48905172ns 859584 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48905570ns 859591 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48905740ns 859594 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48906195ns 859602 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48906365ns 859605 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48906650ns 859610 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48906934ns 859615 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48907218ns 859620 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48907673ns 859628 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48907843ns 859631 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48908127ns 859636 1a110850 fd5ff06f jal x0, -44 +48908411ns 859641 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48908696ns 859646 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48909093ns 859653 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48909264ns 859656 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48909719ns 859664 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48909889ns 859667 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48910173ns 859672 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48910457ns 859677 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48910742ns 859682 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48911196ns 859690 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48911367ns 859693 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48911651ns 859698 1a110850 fd5ff06f jal x0, -44 +48911935ns 859703 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48912219ns 859708 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48912617ns 859715 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48912787ns 859718 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48913242ns 859726 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48913413ns 859729 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48913697ns 859734 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48913981ns 859739 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48914265ns 859744 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48914720ns 859752 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48914890ns 859755 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48915174ns 859760 1a110850 fd5ff06f jal x0, -44 +48915459ns 859765 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48915743ns 859770 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48916141ns 859777 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48916311ns 859780 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48916766ns 859788 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48916936ns 859791 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48917220ns 859796 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48917505ns 859801 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48917789ns 859806 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48918243ns 859814 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48918414ns 859817 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48918698ns 859822 1a110850 fd5ff06f jal x0, -44 +48918982ns 859827 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48919266ns 859832 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48919664ns 859839 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48919835ns 859842 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48920289ns 859850 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48920460ns 859853 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48920744ns 859858 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48921028ns 859863 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48921312ns 859868 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48921767ns 859876 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48921937ns 859879 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48922222ns 859884 1a110850 fd5ff06f jal x0, -44 +48922506ns 859889 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48922790ns 859894 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48923188ns 859901 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48923358ns 859904 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48923813ns 859912 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48923983ns 859915 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48924268ns 859920 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48924552ns 859925 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48924836ns 859930 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48925291ns 859938 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48925461ns 859941 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48925745ns 859946 1a110850 fd5ff06f jal x0, -44 +48926029ns 859951 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48926314ns 859956 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48926711ns 859963 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48926882ns 859966 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48927336ns 859974 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48927507ns 859977 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48927791ns 859982 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48928075ns 859987 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48928359ns 859992 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48928814ns 860000 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48928985ns 860003 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48929269ns 860008 1a110850 fd5ff06f jal x0, -44 +48929553ns 860013 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48929837ns 860018 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48930235ns 860025 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48930405ns 860028 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48930860ns 860036 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48931031ns 860039 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48931315ns 860044 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48931599ns 860049 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48931883ns 860054 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48932338ns 860062 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48932508ns 860065 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48932792ns 860070 1a110850 fd5ff06f jal x0, -44 +48933077ns 860075 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48933361ns 860080 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48933759ns 860087 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48933929ns 860090 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48934384ns 860098 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48934554ns 860101 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48934838ns 860106 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48935122ns 860111 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48935407ns 860116 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48935861ns 860124 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48936032ns 860127 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48936316ns 860132 1a110850 fd5ff06f jal x0, -44 +48936600ns 860137 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48936884ns 860142 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48937282ns 860149 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48937453ns 860152 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48937907ns 860160 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48938078ns 860163 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48938362ns 860168 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48938646ns 860173 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48938930ns 860178 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48939385ns 860186 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48939555ns 860189 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48939840ns 860194 1a110850 fd5ff06f jal x0, -44 +48940124ns 860199 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48940408ns 860204 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48940806ns 860211 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48940976ns 860214 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48941431ns 860222 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48941601ns 860225 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48941885ns 860230 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48942170ns 860235 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48942454ns 860240 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48942908ns 860248 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48943079ns 860251 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48943363ns 860256 1a110850 fd5ff06f jal x0, -44 +48943647ns 860261 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48943931ns 860266 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48944329ns 860273 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48944500ns 860276 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48944954ns 860284 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48945125ns 860287 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48945409ns 860292 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48945693ns 860297 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48945977ns 860302 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48946432ns 860310 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48946603ns 860313 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48946887ns 860318 1a110850 fd5ff06f jal x0, -44 +48947171ns 860323 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48947455ns 860328 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48947853ns 860335 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48948023ns 860338 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48948478ns 860346 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48948648ns 860349 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48948933ns 860354 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48949217ns 860359 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48949501ns 860364 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48949956ns 860372 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48950126ns 860375 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48950410ns 860380 1a110850 fd5ff06f jal x0, -44 +48950694ns 860385 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48950979ns 860390 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48951376ns 860397 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48951547ns 860400 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48952002ns 860408 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48952172ns 860411 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48952456ns 860416 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48952740ns 860421 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48953025ns 860426 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48953479ns 860434 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48953650ns 860437 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48953934ns 860442 1a110850 fd5ff06f jal x0, -44 +48954218ns 860447 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48954502ns 860452 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48954900ns 860459 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48955071ns 860462 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48955525ns 860470 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48955696ns 860473 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48955980ns 860478 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48956264ns 860483 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48956548ns 860488 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48957003ns 860496 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48957173ns 860499 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48957457ns 860504 1a110850 fd5ff06f jal x0, -44 +48957742ns 860509 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48958026ns 860514 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48958424ns 860521 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48958594ns 860524 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48959049ns 860532 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48959219ns 860535 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48959503ns 860540 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48959788ns 860545 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48960072ns 860550 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48960526ns 860558 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48960697ns 860561 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48960981ns 860566 1a110850 fd5ff06f jal x0, -44 +48961265ns 860571 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48961549ns 860576 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48961947ns 860583 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48962118ns 860586 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48962572ns 860594 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48962743ns 860597 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48963027ns 860602 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48963311ns 860607 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48963595ns 860612 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48964050ns 860620 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48964220ns 860623 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48964505ns 860628 1a110850 fd5ff06f jal x0, -44 +48964789ns 860633 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48965073ns 860638 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48965471ns 860645 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48965641ns 860648 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48966096ns 860656 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48966266ns 860659 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48966551ns 860664 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48966835ns 860669 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48967119ns 860674 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48967574ns 860682 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48967744ns 860685 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48968028ns 860690 1a110850 fd5ff06f jal x0, -44 +48968312ns 860695 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48968597ns 860700 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48968994ns 860707 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48969165ns 860710 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48969619ns 860718 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48969790ns 860721 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48970074ns 860726 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48970358ns 860731 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48970642ns 860736 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48971097ns 860744 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48971268ns 860747 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48971552ns 860752 1a110850 fd5ff06f jal x0, -44 +48971836ns 860757 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48972120ns 860762 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48972518ns 860769 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48972688ns 860772 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48973143ns 860780 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48973314ns 860783 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48973598ns 860788 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48973882ns 860793 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48974166ns 860798 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48974621ns 860806 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48974791ns 860809 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48975075ns 860814 1a110850 fd5ff06f jal x0, -44 +48975360ns 860819 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48975644ns 860824 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48976042ns 860831 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48976212ns 860834 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48976667ns 860842 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48976837ns 860845 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48977121ns 860850 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48977405ns 860855 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48977690ns 860860 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48978144ns 860868 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48978315ns 860871 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48978599ns 860876 1a110850 fd5ff06f jal x0, -44 +48978883ns 860881 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48979167ns 860886 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48979565ns 860893 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48979736ns 860896 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48980190ns 860904 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48980361ns 860907 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48980645ns 860912 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48980929ns 860917 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48981213ns 860922 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48981668ns 860930 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48981838ns 860933 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48982123ns 860938 1a110850 fd5ff06f jal x0, -44 +48982407ns 860943 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48982691ns 860948 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48983089ns 860955 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48983259ns 860958 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48983714ns 860966 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48983884ns 860969 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48984168ns 860974 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48984453ns 860979 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48984737ns 860984 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48985191ns 860992 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48985362ns 860995 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48985646ns 861000 1a110850 fd5ff06f jal x0, -44 +48985930ns 861005 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48986214ns 861010 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48986612ns 861017 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48986783ns 861020 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48987237ns 861028 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48987408ns 861031 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48987692ns 861036 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48987976ns 861041 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48988260ns 861046 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48988715ns 861054 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48988886ns 861057 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48989170ns 861062 1a110850 fd5ff06f jal x0, -44 +48989454ns 861067 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48989738ns 861072 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48990136ns 861079 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48990306ns 861082 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48990761ns 861090 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48990931ns 861093 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48991216ns 861098 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48991500ns 861103 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48991784ns 861108 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48992239ns 861116 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48992409ns 861119 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48992693ns 861124 1a110850 fd5ff06f jal x0, -44 +48992977ns 861129 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48993262ns 861134 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48993659ns 861141 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48993830ns 861144 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48994285ns 861152 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48994455ns 861155 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48994739ns 861160 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48995023ns 861165 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48995308ns 861170 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48995762ns 861178 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48995933ns 861181 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48996217ns 861186 1a110850 fd5ff06f jal x0, -44 +48996501ns 861191 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48996785ns 861196 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +48997183ns 861203 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48997354ns 861206 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48997808ns 861214 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +48997979ns 861217 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +48998263ns 861222 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +48998547ns 861227 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +48998831ns 861232 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +48999286ns 861240 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +48999456ns 861243 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +48999740ns 861248 1a110850 fd5ff06f jal x0, -44 +49000025ns 861253 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49000309ns 861258 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49000707ns 861265 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49000877ns 861268 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49001332ns 861276 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49001502ns 861279 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49001786ns 861284 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49002071ns 861289 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49002355ns 861294 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49002809ns 861302 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49002980ns 861305 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49003264ns 861310 1a110850 fd5ff06f jal x0, -44 +49003548ns 861315 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49003832ns 861320 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49004230ns 861327 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49004401ns 861330 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49004855ns 861338 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49005026ns 861341 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49005310ns 861346 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49005594ns 861351 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49005878ns 861356 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49006333ns 861364 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49006503ns 861367 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49006788ns 861372 1a110850 fd5ff06f jal x0, -44 +49007072ns 861377 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49007356ns 861382 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49007754ns 861389 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49007924ns 861392 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49008379ns 861400 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49008549ns 861403 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49008834ns 861408 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49009118ns 861413 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49009402ns 861418 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49009857ns 861426 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49010027ns 861429 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49010311ns 861434 1a110850 fd5ff06f jal x0, -44 +49010595ns 861439 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49010880ns 861444 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49011277ns 861451 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49011448ns 861454 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49011903ns 861462 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49012073ns 861465 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49012357ns 861470 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49012641ns 861475 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49012925ns 861480 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49013380ns 861488 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49013551ns 861491 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49013835ns 861496 1a110850 fd5ff06f jal x0, -44 +49014119ns 861501 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49014403ns 861506 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49014801ns 861513 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49014971ns 861516 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49015426ns 861524 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49015597ns 861527 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49015881ns 861532 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49016165ns 861537 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49016449ns 861542 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49016904ns 861550 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49017074ns 861553 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49017358ns 861558 1a110850 fd5ff06f jal x0, -44 +49017643ns 861563 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49017927ns 861568 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49018325ns 861575 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49018495ns 861578 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49018950ns 861586 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49019120ns 861589 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49019404ns 861594 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49019688ns 861599 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49019973ns 861604 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49020427ns 861612 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49020598ns 861615 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49020882ns 861620 1a110850 fd5ff06f jal x0, -44 +49021166ns 861625 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49021450ns 861630 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49021848ns 861637 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49022019ns 861640 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49022473ns 861648 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49022644ns 861651 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49022928ns 861656 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49023212ns 861661 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49023496ns 861666 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49023951ns 861674 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49024121ns 861677 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49024406ns 861682 1a110850 fd5ff06f jal x0, -44 +49024690ns 861687 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49024974ns 861692 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49025372ns 861699 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49025542ns 861702 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49025997ns 861710 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49026167ns 861713 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49026451ns 861718 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49026736ns 861723 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49027020ns 861728 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49027474ns 861736 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49027645ns 861739 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49027929ns 861744 1a110850 fd5ff06f jal x0, -44 +49028213ns 861749 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49028497ns 861754 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49028895ns 861761 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49029066ns 861764 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49029520ns 861772 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49029691ns 861775 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49029975ns 861780 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49030259ns 861785 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49030543ns 861790 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49030998ns 861798 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49031169ns 861801 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49031453ns 861806 1a110850 fd5ff06f jal x0, -44 +49031737ns 861811 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49032021ns 861816 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49032419ns 861823 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49032589ns 861826 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49033044ns 861834 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49033215ns 861837 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49033499ns 861842 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49033783ns 861847 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49034067ns 861852 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49034522ns 861860 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49034692ns 861863 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49034976ns 861868 1a110850 fd5ff06f jal x0, -44 +49035260ns 861873 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49035545ns 861878 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49035942ns 861885 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49036113ns 861888 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49036568ns 861896 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49036738ns 861899 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49037022ns 861904 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49037306ns 861909 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49037591ns 861914 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49038045ns 861922 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49038216ns 861925 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49038500ns 861930 1a110850 fd5ff06f jal x0, -44 +49038784ns 861935 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49039068ns 861940 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49039466ns 861947 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49039637ns 861950 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49040091ns 861958 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49040262ns 861961 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49040546ns 861966 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49040830ns 861971 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49041114ns 861976 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49041569ns 861984 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49041739ns 861987 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49042023ns 861992 1a110850 fd5ff06f jal x0, -44 +49042308ns 861997 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49042592ns 862002 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49042990ns 862009 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49043160ns 862012 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49043615ns 862020 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49043785ns 862023 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49044069ns 862028 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49044354ns 862033 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49044638ns 862038 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49045092ns 862046 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49045263ns 862049 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49045547ns 862054 1a110850 fd5ff06f jal x0, -44 +49045831ns 862059 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49046115ns 862064 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49046513ns 862071 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49046684ns 862074 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49047138ns 862082 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49047309ns 862085 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49047593ns 862090 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49047877ns 862095 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49048161ns 862100 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49048616ns 862108 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49048786ns 862111 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49049071ns 862116 1a110850 fd5ff06f jal x0, -44 +49049355ns 862121 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49049639ns 862126 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49050037ns 862133 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49050207ns 862136 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49050662ns 862144 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49050832ns 862147 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49051117ns 862152 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49051401ns 862157 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49051685ns 862162 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49052140ns 862170 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49052310ns 862173 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49052594ns 862178 1a110850 fd5ff06f jal x0, -44 +49052878ns 862183 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49053163ns 862188 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49053560ns 862195 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49053731ns 862198 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49054186ns 862206 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49054356ns 862209 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49054640ns 862214 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49054924ns 862219 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49055208ns 862224 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49055663ns 862232 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49055834ns 862235 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49056118ns 862240 1a110850 fd5ff06f jal x0, -44 +49056402ns 862245 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49056686ns 862250 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49057084ns 862257 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49057254ns 862260 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49057709ns 862268 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49057880ns 862271 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49058164ns 862276 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49058448ns 862281 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49058732ns 862286 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49059187ns 862294 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49059357ns 862297 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49059641ns 862302 1a110850 fd5ff06f jal x0, -44 +49059926ns 862307 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49060210ns 862312 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49060608ns 862319 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49060778ns 862322 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49061233ns 862330 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49061403ns 862333 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49061687ns 862338 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49061971ns 862343 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49062256ns 862348 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49062710ns 862356 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49062881ns 862359 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49063165ns 862364 1a110850 fd5ff06f jal x0, -44 +49063449ns 862369 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49063733ns 862374 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49064131ns 862381 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49064302ns 862384 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49064756ns 862392 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49064927ns 862395 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49065211ns 862400 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49065495ns 862405 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49065779ns 862410 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49066234ns 862418 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49066404ns 862421 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49066689ns 862426 1a110850 fd5ff06f jal x0, -44 +49066973ns 862431 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49067257ns 862436 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49067655ns 862443 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49067825ns 862446 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49068280ns 862454 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49068450ns 862457 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49068735ns 862462 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49069019ns 862467 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49069303ns 862472 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49069757ns 862480 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49069928ns 862483 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49070212ns 862488 1a110850 fd5ff06f jal x0, -44 +49070496ns 862493 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49070780ns 862498 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49071178ns 862505 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49071349ns 862508 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49071803ns 862516 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49071974ns 862519 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49072258ns 862524 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49072542ns 862529 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49072826ns 862534 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49073281ns 862542 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49073452ns 862545 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49073736ns 862550 1a110850 fd5ff06f jal x0, -44 +49074020ns 862555 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49074304ns 862560 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49074702ns 862567 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49074872ns 862570 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49075327ns 862578 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49075498ns 862581 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49075782ns 862586 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49076066ns 862591 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49076350ns 862596 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49076805ns 862604 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49076975ns 862607 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49077259ns 862612 1a110850 fd5ff06f jal x0, -44 +49077543ns 862617 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49077828ns 862622 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49078225ns 862629 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49078396ns 862632 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49078851ns 862640 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49079021ns 862643 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49079305ns 862648 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49079589ns 862653 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49079874ns 862658 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49080328ns 862666 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49080499ns 862669 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49080783ns 862674 1a110850 fd5ff06f jal x0, -44 +49081067ns 862679 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49081351ns 862684 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49081749ns 862691 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49081920ns 862694 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49082374ns 862702 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49082545ns 862705 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49082829ns 862710 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49083113ns 862715 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49083397ns 862720 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49083852ns 862728 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49084022ns 862731 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49084306ns 862736 1a110850 fd5ff06f jal x0, -44 +49084591ns 862741 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49084875ns 862746 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49085273ns 862753 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49085443ns 862756 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49085898ns 862764 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49086068ns 862767 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49086352ns 862772 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49086637ns 862777 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49086921ns 862782 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49087375ns 862790 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49087546ns 862793 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49087830ns 862798 1a110850 fd5ff06f jal x0, -44 +49088114ns 862803 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49088398ns 862808 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49088796ns 862815 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49088967ns 862818 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49089421ns 862826 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49089592ns 862829 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49089876ns 862834 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49090160ns 862839 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49090444ns 862844 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49090899ns 862852 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49091069ns 862855 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49091354ns 862860 1a110850 fd5ff06f jal x0, -44 +49091638ns 862865 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49091922ns 862870 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49092320ns 862877 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49092490ns 862880 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49092945ns 862888 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49093115ns 862891 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49093400ns 862896 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49093684ns 862901 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49093968ns 862906 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49094423ns 862914 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49094593ns 862917 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49094877ns 862922 1a110850 fd5ff06f jal x0, -44 +49095161ns 862927 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49095446ns 862932 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49095843ns 862939 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49096014ns 862942 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49096469ns 862950 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49096639ns 862953 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49096923ns 862958 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49097207ns 862963 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49097491ns 862968 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49097946ns 862976 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49098117ns 862979 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49098401ns 862984 1a110850 fd5ff06f jal x0, -44 +49098685ns 862989 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49098969ns 862994 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49099367ns 863001 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49099537ns 863004 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49099992ns 863012 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49100163ns 863015 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49100447ns 863020 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49100731ns 863025 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49101015ns 863030 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49101470ns 863038 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49101640ns 863041 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49101924ns 863046 1a110850 fd5ff06f jal x0, -44 +49102209ns 863051 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49102493ns 863056 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49102891ns 863063 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49103061ns 863066 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49103516ns 863074 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49103686ns 863077 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49103970ns 863082 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49104255ns 863087 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49104539ns 863092 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49104993ns 863100 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49105164ns 863103 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49105448ns 863108 1a110850 fd5ff06f jal x0, -44 +49105732ns 863113 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49106016ns 863118 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49106414ns 863125 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49106585ns 863128 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49107039ns 863136 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49107210ns 863139 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49107494ns 863144 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49107778ns 863149 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49108062ns 863154 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49108517ns 863162 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49108687ns 863165 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49108972ns 863170 1a110850 fd5ff06f jal x0, -44 +49109256ns 863175 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49109540ns 863180 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49109938ns 863187 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49110108ns 863190 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49110563ns 863198 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49110733ns 863201 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49111018ns 863206 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49111302ns 863211 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49111586ns 863216 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49112040ns 863224 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49112211ns 863227 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49112495ns 863232 1a110850 fd5ff06f jal x0, -44 +49112779ns 863237 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49113063ns 863242 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49113461ns 863249 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49113632ns 863252 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49114086ns 863260 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49114257ns 863263 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49114541ns 863268 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49114825ns 863273 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49115109ns 863278 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49115564ns 863286 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49115735ns 863289 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49116019ns 863294 1a110850 fd5ff06f jal x0, -44 +49116303ns 863299 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49116587ns 863304 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49116985ns 863311 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49117155ns 863314 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49117610ns 863322 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49117781ns 863325 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49118065ns 863330 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49118349ns 863335 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49118633ns 863340 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49119088ns 863348 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49119258ns 863351 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49119542ns 863356 1a110850 fd5ff06f jal x0, -44 +49119826ns 863361 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49120111ns 863366 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49120508ns 863373 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49120679ns 863376 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49121134ns 863384 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49121304ns 863387 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49121588ns 863392 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49121872ns 863397 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49122157ns 863402 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49122611ns 863410 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49122782ns 863413 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49123066ns 863418 1a110850 fd5ff06f jal x0, -44 +49123350ns 863423 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49123634ns 863428 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49124032ns 863435 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49124203ns 863438 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49124657ns 863446 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49124828ns 863449 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49125112ns 863454 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49125396ns 863459 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49125680ns 863464 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49126135ns 863472 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49126305ns 863475 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49126589ns 863480 1a110850 fd5ff06f jal x0, -44 +49126874ns 863485 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49127158ns 863490 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49127556ns 863497 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49127726ns 863500 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49128181ns 863508 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49128351ns 863511 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49128635ns 863516 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49128920ns 863521 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49129204ns 863526 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49129658ns 863534 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49129829ns 863537 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49130113ns 863542 1a110850 fd5ff06f jal x0, -44 +49130397ns 863547 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49130681ns 863552 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49131079ns 863559 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49131250ns 863562 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49131704ns 863570 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49131875ns 863573 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49132159ns 863578 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49132443ns 863583 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49132727ns 863588 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49133182ns 863596 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49133352ns 863599 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49133637ns 863604 1a110850 fd5ff06f jal x0, -44 +49133921ns 863609 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49134205ns 863614 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49134603ns 863621 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49134773ns 863624 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49135228ns 863632 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49135398ns 863635 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49135683ns 863640 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49135967ns 863645 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49136251ns 863650 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49136706ns 863658 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49136876ns 863661 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49137160ns 863666 1a110850 fd5ff06f jal x0, -44 +49137444ns 863671 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49137729ns 863676 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49138126ns 863683 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49138297ns 863686 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49138752ns 863694 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49138922ns 863697 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49139206ns 863702 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49139490ns 863707 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49139775ns 863712 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49140229ns 863720 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49140400ns 863723 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49140684ns 863728 1a110850 fd5ff06f jal x0, -44 +49140968ns 863733 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49141252ns 863738 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49141650ns 863745 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49141820ns 863748 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49142275ns 863756 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49142446ns 863759 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49142730ns 863764 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49143014ns 863769 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49143298ns 863774 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49143753ns 863782 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49143923ns 863785 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49144207ns 863790 1a110850 fd5ff06f jal x0, -44 +49144492ns 863795 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49144776ns 863800 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49145174ns 863807 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49145344ns 863810 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49145799ns 863818 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49145969ns 863821 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49146253ns 863826 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49146538ns 863831 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49146822ns 863836 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49147276ns 863844 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49147447ns 863847 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49147731ns 863852 1a110850 fd5ff06f jal x0, -44 +49148015ns 863857 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49148299ns 863862 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49148697ns 863869 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49148868ns 863872 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49149322ns 863880 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49149493ns 863883 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49149777ns 863888 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49150061ns 863893 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49150345ns 863898 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49150800ns 863906 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49150970ns 863909 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49151255ns 863914 1a110850 fd5ff06f jal x0, -44 +49151539ns 863919 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49151823ns 863924 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49152221ns 863931 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49152391ns 863934 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49152846ns 863942 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49153016ns 863945 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49153301ns 863950 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49153585ns 863955 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49153869ns 863960 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49154323ns 863968 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49154494ns 863971 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49154778ns 863976 1a110850 fd5ff06f jal x0, -44 +49155062ns 863981 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49155346ns 863986 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49155744ns 863993 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49155915ns 863996 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49156369ns 864004 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49156540ns 864007 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49156824ns 864012 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49157108ns 864017 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49157392ns 864022 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49157847ns 864030 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49158018ns 864033 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49158302ns 864038 1a110850 fd5ff06f jal x0, -44 +49158586ns 864043 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49158870ns 864048 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49159268ns 864055 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49159438ns 864058 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49159893ns 864066 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49160064ns 864069 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49160348ns 864074 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49160632ns 864079 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49160916ns 864084 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49161371ns 864092 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49161541ns 864095 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49161825ns 864100 1a110850 fd5ff06f jal x0, -44 +49162109ns 864105 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49162394ns 864110 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49162791ns 864117 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49162962ns 864120 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49163417ns 864128 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49163587ns 864131 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49163871ns 864136 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49164155ns 864141 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49164440ns 864146 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49164894ns 864154 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49165065ns 864157 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49165349ns 864162 1a110850 fd5ff06f jal x0, -44 +49165633ns 864167 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49165917ns 864172 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49166315ns 864179 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49166486ns 864182 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49166940ns 864190 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49167111ns 864193 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49167395ns 864198 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49167679ns 864203 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49167963ns 864208 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49168418ns 864216 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49168588ns 864219 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49168872ns 864224 1a110850 fd5ff06f jal x0, -44 +49169157ns 864229 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49169441ns 864234 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49169839ns 864241 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49170009ns 864244 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49170464ns 864252 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49170634ns 864255 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49170918ns 864260 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49171203ns 864265 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49171487ns 864270 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49171941ns 864278 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49172112ns 864281 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49172396ns 864286 1a110850 fd5ff06f jal x0, -44 +49172680ns 864291 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49172964ns 864296 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49173362ns 864303 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49173533ns 864306 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49173987ns 864314 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49174158ns 864317 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49174442ns 864322 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49174726ns 864327 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49175010ns 864332 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49175465ns 864340 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49175635ns 864343 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49175920ns 864348 1a110850 fd5ff06f jal x0, -44 +49176204ns 864353 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49176488ns 864358 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49176886ns 864365 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49177056ns 864368 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49177511ns 864376 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49177681ns 864379 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49177966ns 864384 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49178250ns 864389 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49178534ns 864394 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49178989ns 864402 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49179159ns 864405 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49179443ns 864410 1a110850 fd5ff06f jal x0, -44 +49179727ns 864415 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49180012ns 864420 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49180409ns 864427 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49180580ns 864430 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49181035ns 864438 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49181205ns 864441 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49181489ns 864446 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49181773ns 864451 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49182058ns 864456 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49182512ns 864464 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49182683ns 864467 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49182967ns 864472 1a110850 fd5ff06f jal x0, -44 +49183251ns 864477 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49183535ns 864482 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49183933ns 864489 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49184103ns 864492 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49184558ns 864500 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49184729ns 864503 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49185013ns 864508 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49185297ns 864513 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49185581ns 864518 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49186036ns 864526 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49186206ns 864529 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49186490ns 864534 1a110850 fd5ff06f jal x0, -44 +49186775ns 864539 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49187059ns 864544 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49187457ns 864551 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49187627ns 864554 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49188082ns 864562 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49188252ns 864565 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49188536ns 864570 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49188821ns 864575 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49189105ns 864580 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49189559ns 864588 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49189730ns 864591 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49190014ns 864596 1a110850 fd5ff06f jal x0, -44 +49190298ns 864601 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49190582ns 864606 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49190980ns 864613 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49191151ns 864616 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49191605ns 864624 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49191776ns 864627 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49192060ns 864632 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49192344ns 864637 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49192628ns 864642 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49193083ns 864650 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49193253ns 864653 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49193538ns 864658 1a110850 fd5ff06f jal x0, -44 +49193822ns 864663 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49194106ns 864668 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49194504ns 864675 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49194674ns 864678 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49195129ns 864686 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49195299ns 864689 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49195584ns 864694 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49195868ns 864699 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49196152ns 864704 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49196607ns 864712 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49196777ns 864715 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49197061ns 864720 1a110850 fd5ff06f jal x0, -44 +49197345ns 864725 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49197629ns 864730 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49198027ns 864737 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49198198ns 864740 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49198652ns 864748 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49198823ns 864751 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49199107ns 864756 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49199391ns 864761 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49199675ns 864766 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49200130ns 864774 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49200301ns 864777 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49200585ns 864782 1a110850 fd5ff06f jal x0, -44 +49200869ns 864787 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49201153ns 864792 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49201551ns 864799 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49201721ns 864802 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49202176ns 864810 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49202347ns 864813 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49202631ns 864818 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49202915ns 864823 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49203199ns 864828 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49203654ns 864836 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49203824ns 864839 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49204108ns 864844 1a110850 fd5ff06f jal x0, -44 +49204392ns 864849 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49204677ns 864854 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49205074ns 864861 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49205245ns 864864 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49205700ns 864872 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49205870ns 864875 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49206154ns 864880 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49206438ns 864885 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49206723ns 864890 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49207177ns 864898 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49207348ns 864901 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49207632ns 864906 1a110850 fd5ff06f jal x0, -44 +49207916ns 864911 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49208200ns 864916 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49208598ns 864923 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49208769ns 864926 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49209223ns 864934 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49209394ns 864937 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49209678ns 864942 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49209962ns 864947 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49210246ns 864952 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49210701ns 864960 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49210871ns 864963 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49211155ns 864968 1a110850 fd5ff06f jal x0, -44 +49211440ns 864973 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49211724ns 864978 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49212122ns 864985 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49212292ns 864988 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49212747ns 864996 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49212917ns 864999 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49213201ns 865004 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49213486ns 865009 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49213770ns 865014 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49214224ns 865022 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49214395ns 865025 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49214679ns 865030 1a110850 fd5ff06f jal x0, -44 +49214963ns 865035 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49215247ns 865040 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49215645ns 865047 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49215816ns 865050 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49216270ns 865058 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49216441ns 865061 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49216725ns 865066 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49217009ns 865071 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49217293ns 865076 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49217748ns 865084 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49217919ns 865087 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49218203ns 865092 1a110850 fd5ff06f jal x0, -44 +49218487ns 865097 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49218771ns 865102 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49219169ns 865109 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49219339ns 865112 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49219794ns 865120 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49219964ns 865123 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49220249ns 865128 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49220533ns 865133 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49220817ns 865138 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49221272ns 865146 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49221442ns 865149 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49221726ns 865154 1a110850 fd5ff06f jal x0, -44 +49222010ns 865159 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49222295ns 865164 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49222692ns 865171 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49222863ns 865174 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49223318ns 865182 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49223488ns 865185 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49223772ns 865190 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49224056ns 865195 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49224341ns 865200 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49224795ns 865208 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49224966ns 865211 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49225250ns 865216 1a110850 fd5ff06f jal x0, -44 +49225534ns 865221 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49225818ns 865226 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49226216ns 865233 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49226386ns 865236 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49226841ns 865244 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49227012ns 865247 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49227296ns 865252 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49227580ns 865257 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49227864ns 865262 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49228319ns 865270 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49228489ns 865273 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49228773ns 865278 1a110850 fd5ff06f jal x0, -44 +49229058ns 865283 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49229342ns 865288 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49229740ns 865295 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49229910ns 865298 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49230365ns 865306 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49230535ns 865309 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49230819ns 865314 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49231104ns 865319 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49231388ns 865324 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49231842ns 865332 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49232013ns 865335 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49232297ns 865340 1a110850 fd5ff06f jal x0, -44 +49232581ns 865345 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49232865ns 865350 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49233263ns 865357 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49233434ns 865360 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49233888ns 865368 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49234059ns 865371 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49234343ns 865376 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49234627ns 865381 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49234911ns 865386 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49235366ns 865394 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49235536ns 865397 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49235821ns 865402 1a110850 fd5ff06f jal x0, -44 +49236105ns 865407 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49236389ns 865412 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49236787ns 865419 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49236957ns 865422 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49237412ns 865430 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49237582ns 865433 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49237867ns 865438 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49238151ns 865443 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49238435ns 865448 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49238890ns 865456 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49239060ns 865459 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49239344ns 865464 1a110850 fd5ff06f jal x0, -44 +49239628ns 865469 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49239912ns 865474 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49240310ns 865481 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49240481ns 865484 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49240935ns 865492 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49241106ns 865495 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49241390ns 865500 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49241674ns 865505 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49241958ns 865510 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49242413ns 865518 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49242584ns 865521 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49242868ns 865526 1a110850 fd5ff06f jal x0, -44 +49243152ns 865531 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49243436ns 865536 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49243834ns 865543 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49244004ns 865546 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49244459ns 865554 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49244630ns 865557 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49244914ns 865562 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49245198ns 865567 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49245482ns 865572 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49245937ns 865580 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49246107ns 865583 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49246391ns 865588 1a110850 fd5ff06f jal x0, -44 +49246675ns 865593 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49246960ns 865598 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49247357ns 865605 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49247528ns 865608 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49247983ns 865616 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49248153ns 865619 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49248437ns 865624 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49248721ns 865629 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49249006ns 865634 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49249460ns 865642 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49249631ns 865645 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49249915ns 865650 1a110850 fd5ff06f jal x0, -44 +49250199ns 865655 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49250483ns 865660 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49250881ns 865667 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49251052ns 865670 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49251506ns 865678 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49251677ns 865681 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49251961ns 865686 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49252245ns 865691 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49252529ns 865696 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49252984ns 865704 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49253154ns 865707 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49253439ns 865712 1a110850 fd5ff06f jal x0, -44 +49253723ns 865717 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49254007ns 865722 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49254405ns 865729 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49254575ns 865732 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49255030ns 865740 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49255200ns 865743 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49255484ns 865748 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49255769ns 865753 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49256053ns 865758 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49256507ns 865766 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49256678ns 865769 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49256962ns 865774 1a110850 fd5ff06f jal x0, -44 +49257246ns 865779 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49257530ns 865784 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49257928ns 865791 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49258099ns 865794 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49258553ns 865802 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49258724ns 865805 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49259008ns 865810 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49259292ns 865815 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49259576ns 865820 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49260031ns 865828 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49260202ns 865831 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49260486ns 865836 1a110850 fd5ff06f jal x0, -44 +49260770ns 865841 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49261054ns 865846 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49261452ns 865853 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49261622ns 865856 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49262077ns 865864 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49262247ns 865867 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49262532ns 865872 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49262816ns 865877 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49263100ns 865882 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49263555ns 865890 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49263725ns 865893 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49264009ns 865898 1a110850 fd5ff06f jal x0, -44 +49264293ns 865903 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49264578ns 865908 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49264975ns 865915 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49265146ns 865918 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49265601ns 865926 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49265771ns 865929 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49266055ns 865934 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49266339ns 865939 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49266624ns 865944 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49267078ns 865952 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49267249ns 865955 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49267533ns 865960 1a110850 fd5ff06f jal x0, -44 +49267817ns 865965 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49268101ns 865970 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49268499ns 865977 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49268669ns 865980 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49269124ns 865988 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49269295ns 865991 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49269579ns 865996 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49269863ns 866001 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49270147ns 866006 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49270602ns 866014 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49270772ns 866017 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49271056ns 866022 1a110850 fd5ff06f jal x0, -44 +49271341ns 866027 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49271625ns 866032 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49272023ns 866039 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49272193ns 866042 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49272648ns 866050 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49272818ns 866053 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49273102ns 866058 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49273387ns 866063 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49273671ns 866068 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49274125ns 866076 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49274296ns 866079 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49274580ns 866084 1a110850 fd5ff06f jal x0, -44 +49274864ns 866089 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49275148ns 866094 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49275546ns 866101 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49275717ns 866104 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49276171ns 866112 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49276342ns 866115 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49276626ns 866120 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49276910ns 866125 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49277194ns 866130 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49277649ns 866138 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49277819ns 866141 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49278104ns 866146 1a110850 fd5ff06f jal x0, -44 +49278388ns 866151 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49278672ns 866156 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49279070ns 866163 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49279240ns 866166 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49279695ns 866174 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49279865ns 866177 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49280150ns 866182 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49280434ns 866187 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49280718ns 866192 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49281173ns 866200 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49281343ns 866203 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49281627ns 866208 1a110850 fd5ff06f jal x0, -44 +49281911ns 866213 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49282195ns 866218 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49282593ns 866225 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49282764ns 866228 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49283218ns 866236 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49283389ns 866239 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49283673ns 866244 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49283957ns 866249 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49284241ns 866254 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49284696ns 866262 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49284867ns 866265 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49285151ns 866270 1a110850 fd5ff06f jal x0, -44 +49285435ns 866275 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49285719ns 866280 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49286117ns 866287 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49286287ns 866290 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49286742ns 866298 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49286913ns 866301 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49287197ns 866306 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49287481ns 866311 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49287765ns 866316 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49288220ns 866324 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49288390ns 866327 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49288674ns 866332 1a110850 fd5ff06f jal x0, -44 +49288959ns 866337 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49289243ns 866342 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49289640ns 866349 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49289811ns 866352 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49290266ns 866360 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49290436ns 866363 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49290720ns 866368 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49291004ns 866373 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49291289ns 866378 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49291743ns 866386 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49291914ns 866389 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49292198ns 866394 1a110850 fd5ff06f jal x0, -44 +49292482ns 866399 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49292766ns 866404 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49293164ns 866411 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49293335ns 866414 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49293789ns 866422 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49293960ns 866425 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49294244ns 866430 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49294528ns 866435 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49294812ns 866440 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49295267ns 866448 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49295437ns 866451 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49295722ns 866456 1a110850 fd5ff06f jal x0, -44 +49296006ns 866461 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49296290ns 866466 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49296688ns 866473 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49296858ns 866476 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49297313ns 866484 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49297483ns 866487 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49297767ns 866492 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49298052ns 866497 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49298336ns 866502 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49298790ns 866510 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49298961ns 866513 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49299245ns 866518 1a110850 fd5ff06f jal x0, -44 +49299529ns 866523 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49299813ns 866528 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49300211ns 866535 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49300382ns 866538 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49300836ns 866546 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49301007ns 866549 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49301291ns 866554 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49301575ns 866559 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49301859ns 866564 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49302314ns 866572 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49302485ns 866575 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49302769ns 866580 1a110850 fd5ff06f jal x0, -44 +49303053ns 866585 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49303337ns 866590 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49303735ns 866597 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49303905ns 866600 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49304360ns 866608 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49304530ns 866611 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49304815ns 866616 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49305099ns 866621 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49305383ns 866626 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49305838ns 866634 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49306008ns 866637 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49306292ns 866642 1a110850 fd5ff06f jal x0, -44 +49306576ns 866647 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49306861ns 866652 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49307258ns 866659 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49307429ns 866662 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49307884ns 866670 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49308054ns 866673 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49308338ns 866678 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49308622ns 866683 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49308907ns 866688 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49309361ns 866696 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49309532ns 866699 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49309816ns 866704 1a110850 fd5ff06f jal x0, -44 +49310100ns 866709 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49310384ns 866714 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49310782ns 866721 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49310952ns 866724 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49311407ns 866732 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49311578ns 866735 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49311862ns 866740 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49312146ns 866745 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49312430ns 866750 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49312885ns 866758 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49313055ns 866761 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49313339ns 866766 1a110850 fd5ff06f jal x0, -44 +49313624ns 866771 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49313908ns 866776 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49314306ns 866783 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49314476ns 866786 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49314931ns 866794 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49315101ns 866797 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49315385ns 866802 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49315670ns 866807 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49315954ns 866812 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49316408ns 866820 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49316579ns 866823 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49316863ns 866828 1a110850 fd5ff06f jal x0, -44 +49317147ns 866833 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49317431ns 866838 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49317829ns 866845 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49318000ns 866848 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49318454ns 866856 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49318625ns 866859 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49318909ns 866864 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49319193ns 866869 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49319477ns 866874 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49319932ns 866882 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49320102ns 866885 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49320387ns 866890 1a110850 fd5ff06f jal x0, -44 +49320671ns 866895 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49320955ns 866900 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49321353ns 866907 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49321523ns 866910 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49321978ns 866918 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49322148ns 866921 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49322433ns 866926 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49322717ns 866931 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49323001ns 866936 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49323456ns 866944 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49323626ns 866947 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49323910ns 866952 1a110850 fd5ff06f jal x0, -44 +49324194ns 866957 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49324479ns 866962 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49324876ns 866969 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49325047ns 866972 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49325501ns 866980 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49325672ns 866983 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49325956ns 866988 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49326240ns 866993 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49326524ns 866998 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49326979ns 867006 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49327150ns 867009 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49327434ns 867014 1a110850 fd5ff06f jal x0, -44 +49327718ns 867019 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49328002ns 867024 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49328400ns 867031 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49328570ns 867034 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49329025ns 867042 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49329196ns 867045 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49329480ns 867050 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49329764ns 867055 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49330048ns 867060 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49330503ns 867068 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49330673ns 867071 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49330957ns 867076 1a110850 fd5ff06f jal x0, -44 +49331242ns 867081 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49331526ns 867086 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49331923ns 867093 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49332094ns 867096 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49332549ns 867104 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49332719ns 867107 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49333003ns 867112 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49333287ns 867117 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49333572ns 867122 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49334026ns 867130 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49334197ns 867133 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49334481ns 867138 1a110850 fd5ff06f jal x0, -44 +49334765ns 867143 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49335049ns 867148 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49335447ns 867155 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49335618ns 867158 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49336072ns 867166 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49336243ns 867169 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49336527ns 867174 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49336811ns 867179 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49337095ns 867184 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49337550ns 867192 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49337720ns 867195 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49338005ns 867200 1a110850 fd5ff06f jal x0, -44 +49338289ns 867205 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49338573ns 867210 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49338971ns 867217 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49339141ns 867220 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49339596ns 867228 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49339766ns 867231 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49340050ns 867236 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49340335ns 867241 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49340619ns 867246 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49341073ns 867254 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49341244ns 867257 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49341528ns 867262 1a110850 fd5ff06f jal x0, -44 +49341812ns 867267 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49342096ns 867272 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49342494ns 867279 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49342665ns 867282 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49343119ns 867290 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49343290ns 867293 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49343574ns 867298 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49343858ns 867303 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49344142ns 867308 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49344597ns 867316 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49344768ns 867319 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49345052ns 867324 1a110850 fd5ff06f jal x0, -44 +49345336ns 867329 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49345620ns 867334 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49346018ns 867341 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49346188ns 867344 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49346643ns 867352 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49346813ns 867355 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49347098ns 867360 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49347382ns 867365 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49347666ns 867370 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49348121ns 867378 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49348291ns 867381 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49348575ns 867386 1a110850 fd5ff06f jal x0, -44 +49348859ns 867391 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49349144ns 867396 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49349541ns 867403 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49349712ns 867406 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49350167ns 867414 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49350337ns 867417 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49350621ns 867422 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49350905ns 867427 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49351190ns 867432 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49351644ns 867440 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49351815ns 867443 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49352099ns 867448 1a110850 fd5ff06f jal x0, -44 +49352383ns 867453 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49352667ns 867458 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49353065ns 867465 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49353235ns 867468 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49353690ns 867476 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49353861ns 867479 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49354145ns 867484 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49354429ns 867489 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49354713ns 867494 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49355168ns 867502 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49355338ns 867505 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49355622ns 867510 1a110850 fd5ff06f jal x0, -44 +49355907ns 867515 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49356191ns 867520 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49356589ns 867527 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49356759ns 867530 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49357214ns 867538 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49357384ns 867541 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49357668ns 867546 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49357953ns 867551 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49358237ns 867556 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49358691ns 867564 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49358862ns 867567 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49359146ns 867572 1a110850 fd5ff06f jal x0, -44 +49359430ns 867577 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49359714ns 867582 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49360112ns 867589 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49360283ns 867592 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49360737ns 867600 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49360908ns 867603 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49361192ns 867608 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49361476ns 867613 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49361760ns 867618 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49362215ns 867626 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49362385ns 867629 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49362670ns 867634 1a110850 fd5ff06f jal x0, -44 +49362954ns 867639 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49363238ns 867644 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49363636ns 867651 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49363806ns 867654 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49364261ns 867662 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49364431ns 867665 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49364716ns 867670 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49365000ns 867675 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49365284ns 867680 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49365739ns 867688 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49365909ns 867691 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49366193ns 867696 1a110850 fd5ff06f jal x0, -44 +49366477ns 867701 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49366762ns 867706 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49367159ns 867713 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49367330ns 867716 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49367784ns 867724 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49367955ns 867727 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49368239ns 867732 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49368523ns 867737 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49368807ns 867742 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49369262ns 867750 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49369433ns 867753 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49369717ns 867758 1a110850 fd5ff06f jal x0, -44 +49370001ns 867763 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49370285ns 867768 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49370683ns 867775 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49370853ns 867778 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49371308ns 867786 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49371479ns 867789 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49371763ns 867794 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49372047ns 867799 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49372331ns 867804 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49372786ns 867812 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49372956ns 867815 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49373240ns 867820 1a110850 fd5ff06f jal x0, -44 +49373525ns 867825 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49373809ns 867830 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49374207ns 867837 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49374377ns 867840 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49374832ns 867848 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49375002ns 867851 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49375286ns 867856 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49375570ns 867861 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49375855ns 867866 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49376309ns 867874 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49376480ns 867877 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49376764ns 867882 1a110850 fd5ff06f jal x0, -44 +49377048ns 867887 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49377332ns 867892 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49377730ns 867899 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49377901ns 867902 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49378355ns 867910 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49378526ns 867913 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49378810ns 867918 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49379094ns 867923 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49379378ns 867928 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49379833ns 867936 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49380003ns 867939 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49380288ns 867944 1a110850 fd5ff06f jal x0, -44 +49380572ns 867949 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49380856ns 867954 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49381254ns 867961 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49381424ns 867964 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49381879ns 867972 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49382049ns 867975 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49382333ns 867980 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49382618ns 867985 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49382902ns 867990 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49383356ns 867998 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49383527ns 868001 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49383811ns 868006 1a110850 fd5ff06f jal x0, -44 +49384095ns 868011 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49384379ns 868016 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49384777ns 868023 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49384948ns 868026 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49385402ns 868034 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49385573ns 868037 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49385857ns 868042 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49386141ns 868047 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49386425ns 868052 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49386880ns 868060 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49387051ns 868063 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49387335ns 868068 1a110850 fd5ff06f jal x0, -44 +49387619ns 868073 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49387903ns 868078 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49388301ns 868085 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49388471ns 868088 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49388926ns 868096 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49389096ns 868099 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49389381ns 868104 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49389665ns 868109 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49389949ns 868114 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49390404ns 868122 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49390574ns 868125 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49390858ns 868130 1a110850 fd5ff06f jal x0, -44 +49391142ns 868135 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49391427ns 868140 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49391824ns 868147 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49391995ns 868150 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49392450ns 868158 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49392620ns 868161 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49392904ns 868166 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49393188ns 868171 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49393473ns 868176 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49393927ns 868184 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49394098ns 868187 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49394382ns 868192 1a110850 fd5ff06f jal x0, -44 +49394666ns 868197 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49394950ns 868202 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49395348ns 868209 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49395519ns 868212 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49395973ns 868220 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49396144ns 868223 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49396428ns 868228 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49396712ns 868233 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49396996ns 868238 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49397451ns 868246 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49397621ns 868249 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49397905ns 868254 1a110850 fd5ff06f jal x0, -44 +49398190ns 868259 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49398474ns 868264 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49398872ns 868271 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49399042ns 868274 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49399497ns 868282 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49399667ns 868285 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49399951ns 868290 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49400236ns 868295 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49400520ns 868300 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49400974ns 868308 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49401145ns 868311 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49401429ns 868316 1a110850 fd5ff06f jal x0, -44 +49401713ns 868321 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49401997ns 868326 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49402395ns 868333 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49402566ns 868336 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49403020ns 868344 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49403191ns 868347 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49403475ns 868352 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49403759ns 868357 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49404043ns 868362 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49404498ns 868370 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49404668ns 868373 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49404953ns 868378 1a110850 fd5ff06f jal x0, -44 +49405237ns 868383 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49405521ns 868388 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49405919ns 868395 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49406089ns 868398 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49406544ns 868406 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49406714ns 868409 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49406999ns 868414 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49407283ns 868419 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49407567ns 868424 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49408022ns 868432 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49408192ns 868435 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49408476ns 868440 1a110850 fd5ff06f jal x0, -44 +49408760ns 868445 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49409045ns 868450 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49409442ns 868457 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49409613ns 868460 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49410067ns 868468 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49410238ns 868471 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49410522ns 868476 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49410806ns 868481 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49411090ns 868486 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49411545ns 868494 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49411716ns 868497 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49412000ns 868502 1a110850 fd5ff06f jal x0, -44 +49412284ns 868507 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49412568ns 868512 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49412966ns 868519 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49413136ns 868522 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49413591ns 868530 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49413762ns 868533 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49414046ns 868538 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49414330ns 868543 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49414614ns 868548 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49415069ns 868556 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49415239ns 868559 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49415523ns 868564 1a110850 fd5ff06f jal x0, -44 +49415808ns 868569 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49416092ns 868574 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49416490ns 868581 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49416660ns 868584 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49417115ns 868592 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49417285ns 868595 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49417569ns 868600 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49417853ns 868605 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49418138ns 868610 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49418592ns 868618 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49418763ns 868621 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49419047ns 868626 1a110850 fd5ff06f jal x0, -44 +49419331ns 868631 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49419615ns 868636 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49420013ns 868643 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49420184ns 868646 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49420638ns 868654 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49420809ns 868657 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49421093ns 868662 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49421377ns 868667 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49421661ns 868672 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49422116ns 868680 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49422286ns 868683 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49422571ns 868688 1a110850 fd5ff06f jal x0, -44 +49422855ns 868693 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49423139ns 868698 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49423537ns 868705 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49423707ns 868708 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49424162ns 868716 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49424332ns 868719 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49424616ns 868724 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49424901ns 868729 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49425185ns 868734 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49425639ns 868742 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49425810ns 868745 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49426094ns 868750 1a110850 fd5ff06f jal x0, -44 +49426378ns 868755 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49426662ns 868760 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49427060ns 868767 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49427231ns 868770 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49427685ns 868778 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49427856ns 868781 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49428140ns 868786 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49428424ns 868791 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49428708ns 868796 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49429163ns 868804 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49429334ns 868807 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49429618ns 868812 1a110850 fd5ff06f jal x0, -44 +49429902ns 868817 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49430186ns 868822 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49430584ns 868829 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49430754ns 868832 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49431209ns 868840 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49431379ns 868843 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49431664ns 868848 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49431948ns 868853 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49432232ns 868858 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49432687ns 868866 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49432857ns 868869 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49433141ns 868874 1a110850 fd5ff06f jal x0, -44 +49433425ns 868879 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49433710ns 868884 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49434107ns 868891 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49434278ns 868894 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49434733ns 868902 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49434903ns 868905 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49435187ns 868910 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49435471ns 868915 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49435756ns 868920 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49436210ns 868928 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49436381ns 868931 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49436665ns 868936 1a110850 fd5ff06f jal x0, -44 +49436949ns 868941 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49437233ns 868946 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49437631ns 868953 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49437802ns 868956 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49438256ns 868964 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49438427ns 868967 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49438711ns 868972 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49438995ns 868977 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49439279ns 868982 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49439734ns 868990 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49439904ns 868993 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49440188ns 868998 1a110850 fd5ff06f jal x0, -44 +49440473ns 869003 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49440757ns 869008 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49441155ns 869015 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49441325ns 869018 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49441780ns 869026 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49441950ns 869029 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49442234ns 869034 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49442519ns 869039 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49442803ns 869044 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49443257ns 869052 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49443428ns 869055 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49443712ns 869060 1a110850 fd5ff06f jal x0, -44 +49443996ns 869065 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49444280ns 869070 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49444678ns 869077 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49444849ns 869080 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49445303ns 869088 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49445474ns 869091 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49445758ns 869096 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49446042ns 869101 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49446326ns 869106 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49446781ns 869114 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49446951ns 869117 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49447236ns 869122 1a110850 fd5ff06f jal x0, -44 +49447520ns 869127 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49447804ns 869132 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49448202ns 869139 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49448372ns 869142 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49448827ns 869150 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49448997ns 869153 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49449282ns 869158 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49449566ns 869163 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49449850ns 869168 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49450305ns 869176 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49450475ns 869179 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49450759ns 869184 1a110850 fd5ff06f jal x0, -44 +49451043ns 869189 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49451328ns 869194 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49451725ns 869201 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49451896ns 869204 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49452351ns 869212 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49452521ns 869215 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49452805ns 869220 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49453089ns 869225 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49453373ns 869230 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49453828ns 869238 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49453999ns 869241 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49454283ns 869246 1a110850 fd5ff06f jal x0, -44 +49454567ns 869251 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49454851ns 869256 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49455249ns 869263 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49455419ns 869266 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49455874ns 869274 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49456045ns 869277 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49456329ns 869282 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49456613ns 869287 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49456897ns 869292 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49457352ns 869300 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49457522ns 869303 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49457806ns 869308 1a110850 fd5ff06f jal x0, -44 +49458091ns 869313 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49458375ns 869318 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49458773ns 869325 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49458943ns 869328 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49459398ns 869336 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49459568ns 869339 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49459852ns 869344 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49460136ns 869349 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49460421ns 869354 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49460875ns 869362 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49461046ns 869365 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49461330ns 869370 1a110850 fd5ff06f jal x0, -44 +49461614ns 869375 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49461898ns 869380 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49462296ns 869387 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49462467ns 869390 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49462921ns 869398 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49463092ns 869401 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49463376ns 869406 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49463660ns 869411 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49463944ns 869416 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49464399ns 869424 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49464569ns 869427 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49464854ns 869432 1a110850 fd5ff06f jal x0, -44 +49465138ns 869437 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49465422ns 869442 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49465820ns 869449 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49465990ns 869452 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49466445ns 869460 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49466615ns 869463 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49466899ns 869468 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49467184ns 869473 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49467468ns 869478 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49467922ns 869486 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49468093ns 869489 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49468377ns 869494 1a110850 fd5ff06f jal x0, -44 +49468661ns 869499 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49468945ns 869504 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49469343ns 869511 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49469514ns 869514 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49469968ns 869522 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49470139ns 869525 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49470423ns 869530 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49470707ns 869535 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49470991ns 869540 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49471446ns 869548 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49471617ns 869551 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49471901ns 869556 1a110850 fd5ff06f jal x0, -44 +49472185ns 869561 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49472469ns 869566 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49472867ns 869573 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49473037ns 869576 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49473492ns 869584 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49473663ns 869587 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49473947ns 869592 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49474231ns 869597 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49474515ns 869602 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49474970ns 869610 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49475140ns 869613 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49475424ns 869618 1a110850 fd5ff06f jal x0, -44 +49475708ns 869623 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49475993ns 869628 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49476390ns 869635 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49476561ns 869638 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49477016ns 869646 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49477186ns 869649 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49477470ns 869654 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49477754ns 869659 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49478039ns 869664 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49478493ns 869672 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49478664ns 869675 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49478948ns 869680 1a110850 fd5ff06f jal x0, -44 +49479232ns 869685 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49479516ns 869690 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49479914ns 869697 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49480085ns 869700 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49480539ns 869708 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49480710ns 869711 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49480994ns 869716 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49481278ns 869721 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49481562ns 869726 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49482017ns 869734 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49482187ns 869737 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49482471ns 869742 1a110850 fd5ff06f jal x0, -44 +49482756ns 869747 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49483040ns 869752 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49483438ns 869759 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49483608ns 869762 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49484063ns 869770 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49484233ns 869773 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49484517ns 869778 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49484802ns 869783 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49485086ns 869788 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49485540ns 869796 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49485711ns 869799 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49485995ns 869804 1a110850 fd5ff06f jal x0, -44 +49486279ns 869809 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49486563ns 869814 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49486961ns 869821 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49487132ns 869824 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49487586ns 869832 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49487757ns 869835 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49488041ns 869840 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49488325ns 869845 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49488609ns 869850 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49489064ns 869858 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49489234ns 869861 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49489519ns 869866 1a110850 fd5ff06f jal x0, -44 +49489803ns 869871 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49490087ns 869876 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49490485ns 869883 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49490655ns 869886 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49491110ns 869894 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49491280ns 869897 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49491565ns 869902 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49491849ns 869907 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49492133ns 869912 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49492588ns 869920 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49492758ns 869923 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49493042ns 869928 1a110850 fd5ff06f jal x0, -44 +49493326ns 869933 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49493611ns 869938 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49494008ns 869945 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49494179ns 869948 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49494634ns 869956 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49494804ns 869959 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49495088ns 869964 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49495372ns 869969 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49495656ns 869974 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49496111ns 869982 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49496282ns 869985 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49496566ns 869990 1a110850 fd5ff06f jal x0, -44 +49496850ns 869995 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49497134ns 870000 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49497532ns 870007 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49497702ns 870010 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49498157ns 870018 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49498328ns 870021 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49498612ns 870026 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49498896ns 870031 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49499180ns 870036 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49499635ns 870044 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49499805ns 870047 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49500089ns 870052 1a110850 fd5ff06f jal x0, -44 +49500374ns 870057 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49500658ns 870062 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49501056ns 870069 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49501226ns 870072 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49501681ns 870080 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49501851ns 870083 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49502135ns 870088 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49502419ns 870093 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49502704ns 870098 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49503158ns 870106 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49503329ns 870109 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49503613ns 870114 1a110850 fd5ff06f jal x0, -44 +49503897ns 870119 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49504181ns 870124 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49504579ns 870131 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49504750ns 870134 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49505204ns 870142 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49505375ns 870145 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49505659ns 870150 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49505943ns 870155 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49506227ns 870160 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49506682ns 870168 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49506852ns 870171 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49507137ns 870176 1a110850 fd5ff06f jal x0, -44 +49507421ns 870181 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49507705ns 870186 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49508103ns 870193 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49508273ns 870196 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49508728ns 870204 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49508898ns 870207 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49509183ns 870212 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49509467ns 870217 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49509751ns 870222 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49510205ns 870230 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49510376ns 870233 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49510660ns 870238 1a110850 fd5ff06f jal x0, -44 +49510944ns 870243 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49511228ns 870248 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49511626ns 870255 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49511797ns 870258 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49512251ns 870266 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49512422ns 870269 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49512706ns 870274 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49512990ns 870279 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49513274ns 870284 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49513729ns 870292 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49513900ns 870295 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49514184ns 870300 1a110850 fd5ff06f jal x0, -44 +49514468ns 870305 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49514752ns 870310 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49515150ns 870317 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49515320ns 870320 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49515775ns 870328 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49515946ns 870331 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49516230ns 870336 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49516514ns 870341 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49516798ns 870346 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49517253ns 870354 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49517423ns 870357 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49517707ns 870362 1a110850 fd5ff06f jal x0, -44 +49517991ns 870367 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49518276ns 870372 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49518673ns 870379 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49518844ns 870382 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49519299ns 870390 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49519469ns 870393 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49519753ns 870398 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49520037ns 870403 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49520322ns 870408 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49520776ns 870416 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49520947ns 870419 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49521231ns 870424 1a110850 fd5ff06f jal x0, -44 +49521515ns 870429 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49521799ns 870434 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49522197ns 870441 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49522368ns 870444 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49522822ns 870452 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49522993ns 870455 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49523277ns 870460 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49523561ns 870465 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49523845ns 870470 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49524300ns 870478 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49524470ns 870481 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49524754ns 870486 1a110850 fd5ff06f jal x0, -44 +49525039ns 870491 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49525323ns 870496 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49525721ns 870503 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49525891ns 870506 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49526346ns 870514 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49526516ns 870517 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49526800ns 870522 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49527085ns 870527 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49527369ns 870532 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49527823ns 870540 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49527994ns 870543 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49528278ns 870548 1a110850 fd5ff06f jal x0, -44 +49528562ns 870553 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49528846ns 870558 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49529244ns 870565 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49529415ns 870568 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49529869ns 870576 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49530040ns 870579 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49530324ns 870584 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49530608ns 870589 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49530892ns 870594 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49531347ns 870602 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49531517ns 870605 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49531802ns 870610 1a110850 fd5ff06f jal x0, -44 +49532086ns 870615 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49532370ns 870620 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49532768ns 870627 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49532938ns 870630 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49533393ns 870638 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49533563ns 870641 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49533848ns 870646 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49534132ns 870651 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49534416ns 870656 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49534871ns 870664 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49535041ns 870667 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49535325ns 870672 1a110850 fd5ff06f jal x0, -44 +49535609ns 870677 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49535894ns 870682 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49536291ns 870689 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49536462ns 870692 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49536917ns 870700 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49537087ns 870703 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49537371ns 870708 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49537655ns 870713 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49537939ns 870718 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49538394ns 870726 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49538565ns 870729 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49538849ns 870734 1a110850 fd5ff06f jal x0, -44 +49539133ns 870739 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49539417ns 870744 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49539815ns 870751 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49539985ns 870754 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49540440ns 870762 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49540611ns 870765 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49540895ns 870770 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49541179ns 870775 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49541463ns 870780 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49541918ns 870788 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49542088ns 870791 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49542372ns 870796 1a110850 fd5ff06f jal x0, -44 +49542657ns 870801 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49542941ns 870806 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49543339ns 870813 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49543509ns 870816 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49543964ns 870824 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49544134ns 870827 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49544418ns 870832 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49544703ns 870837 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49544987ns 870842 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49545441ns 870850 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49545612ns 870853 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49545896ns 870858 1a110850 fd5ff06f jal x0, -44 +49546180ns 870863 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49546464ns 870868 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49546862ns 870875 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49547033ns 870878 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49547487ns 870886 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49547658ns 870889 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49547942ns 870894 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49548226ns 870899 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49548510ns 870904 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49548965ns 870912 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49549135ns 870915 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49549420ns 870920 1a110850 fd5ff06f jal x0, -44 +49549704ns 870925 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49549988ns 870930 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49550386ns 870937 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49550556ns 870940 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49551011ns 870948 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49551181ns 870951 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49551466ns 870956 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49551750ns 870961 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49552034ns 870966 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49552488ns 870974 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49552659ns 870977 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49552943ns 870982 1a110850 fd5ff06f jal x0, -44 +49553227ns 870987 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49553511ns 870992 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49553909ns 870999 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49554080ns 871002 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49554534ns 871010 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49554705ns 871013 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49554989ns 871018 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49555273ns 871023 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49555557ns 871028 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49556012ns 871036 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49556183ns 871039 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49556467ns 871044 1a110850 fd5ff06f jal x0, -44 +49556751ns 871049 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49557035ns 871054 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49557433ns 871061 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49557603ns 871064 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49558058ns 871072 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49558229ns 871075 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49558513ns 871080 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49558797ns 871085 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49559081ns 871090 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49559536ns 871098 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49559706ns 871101 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49559990ns 871106 1a110850 fd5ff06f jal x0, -44 +49560274ns 871111 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49560559ns 871116 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49560956ns 871123 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49561127ns 871126 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49561582ns 871134 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49561752ns 871137 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49562036ns 871142 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49562320ns 871147 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49562605ns 871152 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49563059ns 871160 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49563230ns 871163 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49563514ns 871168 1a110850 fd5ff06f jal x0, -44 +49563798ns 871173 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49564082ns 871178 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49564480ns 871185 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49564651ns 871188 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49565105ns 871196 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49565276ns 871199 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49565560ns 871204 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49565844ns 871209 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49566128ns 871214 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49566583ns 871222 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49566753ns 871225 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49567037ns 871230 1a110850 fd5ff06f jal x0, -44 +49567322ns 871235 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49567606ns 871240 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49568004ns 871247 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49568174ns 871250 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49568629ns 871258 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49568799ns 871261 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49569083ns 871266 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49569368ns 871271 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49569652ns 871276 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49570106ns 871284 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49570277ns 871287 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49570561ns 871292 1a110850 fd5ff06f jal x0, -44 +49570845ns 871297 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49571129ns 871302 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49571527ns 871309 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49571698ns 871312 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49572152ns 871320 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49572323ns 871323 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49572607ns 871328 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49572891ns 871333 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49573175ns 871338 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49573630ns 871346 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49573800ns 871349 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49574085ns 871354 1a110850 fd5ff06f jal x0, -44 +49574369ns 871359 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49574653ns 871364 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49575051ns 871371 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49575221ns 871374 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49575676ns 871382 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49575846ns 871385 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49576131ns 871390 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49576415ns 871395 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49576699ns 871400 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49577154ns 871408 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49577324ns 871411 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49577608ns 871416 1a110850 fd5ff06f jal x0, -44 +49577892ns 871421 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49578177ns 871426 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49578574ns 871433 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49578745ns 871436 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49579200ns 871444 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49579370ns 871447 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49579654ns 871452 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49579938ns 871457 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49580223ns 871462 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49580677ns 871470 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49580848ns 871473 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49581132ns 871478 1a110850 fd5ff06f jal x0, -44 +49581416ns 871483 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49581700ns 871488 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49582098ns 871495 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49582268ns 871498 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49582723ns 871506 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49582894ns 871509 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49583178ns 871514 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49583462ns 871519 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49583746ns 871524 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49584201ns 871532 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49584371ns 871535 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49584655ns 871540 1a110850 fd5ff06f jal x0, -44 +49584940ns 871545 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49585224ns 871550 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49585622ns 871557 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49585792ns 871560 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49586247ns 871568 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49586417ns 871571 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49586701ns 871576 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49586986ns 871581 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49587270ns 871586 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49587724ns 871594 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49587895ns 871597 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49588179ns 871602 1a110850 fd5ff06f jal x0, -44 +49588463ns 871607 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49588747ns 871612 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49589145ns 871619 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49589316ns 871622 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49589770ns 871630 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49589941ns 871633 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49590225ns 871638 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49590509ns 871643 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49590793ns 871648 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49591248ns 871656 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49591418ns 871659 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49591703ns 871664 1a110850 fd5ff06f jal x0, -44 +49591987ns 871669 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49592271ns 871674 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49592669ns 871681 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49592839ns 871684 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49593294ns 871692 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49593464ns 871695 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49593749ns 871700 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49594033ns 871705 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49594317ns 871710 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49594771ns 871718 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49594942ns 871721 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49595226ns 871726 1a110850 fd5ff06f jal x0, -44 +49595510ns 871731 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49595794ns 871736 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49596192ns 871743 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49596363ns 871746 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49596817ns 871754 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49596988ns 871757 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49597272ns 871762 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49597556ns 871767 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49597840ns 871772 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49598295ns 871780 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49598466ns 871783 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49598750ns 871788 1a110850 fd5ff06f jal x0, -44 +49599034ns 871793 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49599318ns 871798 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49599716ns 871805 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49599886ns 871808 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49600341ns 871816 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49600512ns 871819 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49600796ns 871824 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49601080ns 871829 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49601364ns 871834 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49601819ns 871842 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49601989ns 871845 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49602273ns 871850 1a110850 fd5ff06f jal x0, -44 +49602557ns 871855 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49602842ns 871860 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49603239ns 871867 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49603410ns 871870 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49603865ns 871878 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49604035ns 871881 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49604319ns 871886 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49604603ns 871891 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49604888ns 871896 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49605342ns 871904 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49605513ns 871907 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49605797ns 871912 1a110850 fd5ff06f jal x0, -44 +49606081ns 871917 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49606365ns 871922 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49606763ns 871929 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49606934ns 871932 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49607388ns 871940 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49607559ns 871943 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49607843ns 871948 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49608127ns 871953 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49608411ns 871958 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49608866ns 871966 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49609036ns 871969 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49609320ns 871974 1a110850 fd5ff06f jal x0, -44 +49609605ns 871979 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49609889ns 871984 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49610287ns 871991 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49610457ns 871994 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49610912ns 872002 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49611082ns 872005 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49611366ns 872010 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49611651ns 872015 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49611935ns 872020 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49612389ns 872028 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49612560ns 872031 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49612844ns 872036 1a110850 fd5ff06f jal x0, -44 +49613128ns 872041 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49613412ns 872046 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49613810ns 872053 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49613981ns 872056 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49614435ns 872064 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49614606ns 872067 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49614890ns 872072 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49615174ns 872077 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49615458ns 872082 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49615913ns 872090 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49616083ns 872093 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49616368ns 872098 1a110850 fd5ff06f jal x0, -44 +49616652ns 872103 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49616936ns 872108 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49617334ns 872115 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49617504ns 872118 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49617959ns 872126 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49618129ns 872129 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49618414ns 872134 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49618698ns 872139 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49618982ns 872144 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49619437ns 872152 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49619607ns 872155 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49619891ns 872160 1a110850 fd5ff06f jal x0, -44 +49620175ns 872165 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49620460ns 872170 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49620857ns 872177 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49621028ns 872180 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49621483ns 872188 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49621653ns 872191 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49621937ns 872196 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49622221ns 872201 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49622506ns 872206 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49622960ns 872214 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49623131ns 872217 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49623415ns 872222 1a110850 fd5ff06f jal x0, -44 +49623699ns 872227 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49623983ns 872232 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49624381ns 872239 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49624551ns 872242 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49625006ns 872250 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49625177ns 872253 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49625461ns 872258 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49625745ns 872263 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49626029ns 872268 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49626484ns 872276 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49626654ns 872279 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49626938ns 872284 1a110850 fd5ff06f jal x0, -44 +49627223ns 872289 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49627507ns 872294 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49627905ns 872301 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49628075ns 872304 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49628530ns 872312 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49628700ns 872315 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49628984ns 872320 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49629269ns 872325 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49629553ns 872330 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49630007ns 872338 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49630178ns 872341 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49630462ns 872346 1a110850 fd5ff06f jal x0, -44 +49630746ns 872351 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49631030ns 872356 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49631428ns 872363 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49631599ns 872366 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49632053ns 872374 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49632224ns 872377 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49632508ns 872382 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49632792ns 872387 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49633076ns 872392 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49633531ns 872400 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49633701ns 872403 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49633986ns 872408 1a110850 fd5ff06f jal x0, -44 +49634270ns 872413 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49634554ns 872418 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49634952ns 872425 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49635122ns 872428 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49635577ns 872436 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49635747ns 872439 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49636032ns 872444 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49636316ns 872449 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49636600ns 872454 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49637055ns 872462 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49637225ns 872465 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49637509ns 872470 1a110850 fd5ff06f jal x0, -44 +49637793ns 872475 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49638077ns 872480 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49638475ns 872487 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49638646ns 872490 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49639100ns 872498 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49639271ns 872501 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49639555ns 872506 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49639839ns 872511 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49640123ns 872516 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49640578ns 872524 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49640749ns 872527 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49641033ns 872532 1a110850 fd5ff06f jal x0, -44 +49641317ns 872537 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49641601ns 872542 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49641999ns 872549 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49642169ns 872552 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49642624ns 872560 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49642795ns 872563 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49643079ns 872568 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49643363ns 872573 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49643647ns 872578 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49644102ns 872586 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49644272ns 872589 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49644556ns 872594 1a110850 fd5ff06f jal x0, -44 +49644840ns 872599 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49645125ns 872604 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49645522ns 872611 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49645693ns 872614 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49646148ns 872622 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49646318ns 872625 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49646602ns 872630 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49646886ns 872635 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49647171ns 872640 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49647625ns 872648 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49647796ns 872651 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49648080ns 872656 1a110850 fd5ff06f jal x0, -44 +49648364ns 872661 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49648648ns 872666 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49649046ns 872673 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49649217ns 872676 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49649671ns 872684 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49649842ns 872687 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49650126ns 872692 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49650410ns 872697 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49650694ns 872702 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49651149ns 872710 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49651319ns 872713 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49651603ns 872718 1a110850 fd5ff06f jal x0, -44 +49651888ns 872723 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49652172ns 872728 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49652570ns 872735 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49652740ns 872738 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49653195ns 872746 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49653365ns 872749 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49653649ns 872754 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49653934ns 872759 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49654218ns 872764 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49654672ns 872772 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49654843ns 872775 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49655127ns 872780 1a110850 fd5ff06f jal x0, -44 +49655411ns 872785 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49655695ns 872790 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49656093ns 872797 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49656264ns 872800 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49656718ns 872808 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49656889ns 872811 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49657173ns 872816 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49657457ns 872821 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49657741ns 872826 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49658196ns 872834 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49658367ns 872837 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49658651ns 872842 1a110850 fd5ff06f jal x0, -44 +49658935ns 872847 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49659219ns 872852 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49659617ns 872859 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49659787ns 872862 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49660242ns 872870 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49660412ns 872873 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49660697ns 872878 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49660981ns 872883 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49661265ns 872888 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49661720ns 872896 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49661890ns 872899 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49662174ns 872904 1a110850 fd5ff06f jal x0, -44 +49662458ns 872909 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49662743ns 872914 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49663140ns 872921 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49663311ns 872924 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49663766ns 872932 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49663936ns 872935 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49664220ns 872940 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49664504ns 872945 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49664789ns 872950 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49665243ns 872958 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49665414ns 872961 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49665698ns 872966 1a110850 fd5ff06f jal x0, -44 +49665982ns 872971 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49666266ns 872976 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49666664ns 872983 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49666834ns 872986 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49667289ns 872994 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49667460ns 872997 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49667744ns 873002 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49668028ns 873007 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49668312ns 873012 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49668767ns 873020 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49668937ns 873023 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49669221ns 873028 1a110850 fd5ff06f jal x0, -44 +49669506ns 873033 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49669790ns 873038 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49670188ns 873045 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49670358ns 873048 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49670813ns 873056 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49670983ns 873059 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49671267ns 873064 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49671552ns 873069 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49671836ns 873074 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49672290ns 873082 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49672461ns 873085 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49672745ns 873090 1a110850 fd5ff06f jal x0, -44 +49673029ns 873095 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49673313ns 873100 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49673711ns 873107 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49673882ns 873110 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49674336ns 873118 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49674507ns 873121 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49674791ns 873126 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49675075ns 873131 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49675359ns 873136 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49675814ns 873144 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49675984ns 873147 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49676269ns 873152 1a110850 fd5ff06f jal x0, -44 +49676553ns 873157 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49676837ns 873162 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49677235ns 873169 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49677405ns 873172 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49677860ns 873180 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49678030ns 873183 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49678315ns 873188 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49678599ns 873193 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49678883ns 873198 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49679338ns 873206 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49679508ns 873209 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49679792ns 873214 1a110850 fd5ff06f jal x0, -44 +49680076ns 873219 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49680360ns 873224 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49680758ns 873231 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49680929ns 873234 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49681383ns 873242 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49681554ns 873245 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49681838ns 873250 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49682122ns 873255 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49682406ns 873260 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49682861ns 873268 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49683032ns 873271 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49683316ns 873276 1a110850 fd5ff06f jal x0, -44 +49683600ns 873281 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49683884ns 873286 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49684282ns 873293 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49684452ns 873296 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49684907ns 873304 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49685078ns 873307 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49685362ns 873312 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49685646ns 873317 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49685930ns 873322 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49686385ns 873330 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49686555ns 873333 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49686839ns 873338 1a110850 fd5ff06f jal x0, -44 +49687123ns 873343 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49687408ns 873348 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49687805ns 873355 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49687976ns 873358 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49688431ns 873366 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49688601ns 873369 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49688885ns 873374 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49689169ns 873379 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49689454ns 873384 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49689908ns 873392 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49690079ns 873395 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49690363ns 873400 1a110850 fd5ff06f jal x0, -44 +49690647ns 873405 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49690931ns 873410 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49691329ns 873417 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49691500ns 873420 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49691954ns 873428 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49692125ns 873431 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49692409ns 873436 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49692693ns 873441 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49692977ns 873446 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49693432ns 873454 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49693602ns 873457 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49693887ns 873462 1a110850 fd5ff06f jal x0, -44 +49694171ns 873467 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49694455ns 873472 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49694853ns 873479 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49695023ns 873482 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49695478ns 873490 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49695648ns 873493 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49695932ns 873498 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49696217ns 873503 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49696501ns 873508 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49696955ns 873516 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49697126ns 873519 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49697410ns 873524 1a110850 fd5ff06f jal x0, -44 +49697694ns 873529 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49697978ns 873534 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49698376ns 873541 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49698547ns 873544 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49699001ns 873552 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49699172ns 873555 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49699456ns 873560 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49699740ns 873565 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49700024ns 873570 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49700479ns 873578 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49700650ns 873581 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49700934ns 873586 1a110850 fd5ff06f jal x0, -44 +49701218ns 873591 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49701502ns 873596 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49701900ns 873603 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49702070ns 873606 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49702525ns 873614 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49702695ns 873617 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49702980ns 873622 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49703264ns 873627 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49703548ns 873632 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49704003ns 873640 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49704173ns 873643 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49704457ns 873648 1a110850 fd5ff06f jal x0, -44 +49704741ns 873653 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49705026ns 873658 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49705423ns 873665 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49705594ns 873668 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49706049ns 873676 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49706219ns 873679 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49706503ns 873684 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49706787ns 873689 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49707072ns 873694 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49707526ns 873702 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49707697ns 873705 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49707981ns 873710 1a110850 fd5ff06f jal x0, -44 +49708265ns 873715 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49708549ns 873720 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49708947ns 873727 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49709117ns 873730 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49709572ns 873738 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49709743ns 873741 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49710027ns 873746 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49710311ns 873751 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49710595ns 873756 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49711050ns 873764 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49711220ns 873767 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49711504ns 873772 1a110850 fd5ff06f jal x0, -44 +49711789ns 873777 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49712073ns 873782 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49712471ns 873789 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49712641ns 873792 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49713096ns 873800 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49713266ns 873803 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49713550ns 873808 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49713835ns 873813 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49714119ns 873818 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49714573ns 873826 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49714744ns 873829 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49715028ns 873834 1a110850 fd5ff06f jal x0, -44 +49715312ns 873839 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49715596ns 873844 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49715994ns 873851 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49716165ns 873854 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49716619ns 873862 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49716790ns 873865 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49717074ns 873870 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49717358ns 873875 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49717642ns 873880 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49718097ns 873888 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49718267ns 873891 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49718552ns 873896 1a110850 fd5ff06f jal x0, -44 +49718836ns 873901 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49719120ns 873906 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49719518ns 873913 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49719688ns 873916 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49720143ns 873924 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49720313ns 873927 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49720598ns 873932 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49720882ns 873937 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49721166ns 873942 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49721621ns 873950 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49721791ns 873953 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49722075ns 873958 1a110850 fd5ff06f jal x0, -44 +49722359ns 873963 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49722643ns 873968 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49723041ns 873975 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49723212ns 873978 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49723666ns 873986 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49723837ns 873989 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49724121ns 873994 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49724405ns 873999 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49724689ns 874004 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49725144ns 874012 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49725315ns 874015 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49725599ns 874020 1a110850 fd5ff06f jal x0, -44 +49725883ns 874025 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49726167ns 874030 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49726565ns 874037 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49726735ns 874040 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49727190ns 874048 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49727361ns 874051 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49727645ns 874056 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49727929ns 874061 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49728213ns 874066 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49728668ns 874074 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49728838ns 874077 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49729122ns 874082 1a110850 fd5ff06f jal x0, -44 +49729407ns 874087 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49729691ns 874092 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49730088ns 874099 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49730259ns 874102 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49730714ns 874110 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49730884ns 874113 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49731168ns 874118 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49731452ns 874123 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49731737ns 874128 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49732191ns 874136 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49732362ns 874139 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49732646ns 874144 1a110850 fd5ff06f jal x0, -44 +49732930ns 874149 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49733214ns 874154 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49733612ns 874161 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49733783ns 874164 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49734237ns 874172 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49734408ns 874175 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49734692ns 874180 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49734976ns 874185 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49735260ns 874190 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49735715ns 874198 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49735885ns 874201 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49736170ns 874206 1a110850 fd5ff06f jal x0, -44 +49736454ns 874211 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49736738ns 874216 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49737136ns 874223 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49737306ns 874226 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49737761ns 874234 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49737931ns 874237 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49738215ns 874242 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49738500ns 874247 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49738784ns 874252 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49739238ns 874260 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49739409ns 874263 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49739693ns 874268 1a110850 fd5ff06f jal x0, -44 +49739977ns 874273 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49740261ns 874278 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49740659ns 874285 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49740830ns 874288 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49741284ns 874296 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49741455ns 874299 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49741739ns 874304 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49742023ns 874309 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49742307ns 874314 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49742762ns 874322 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49742933ns 874325 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49743217ns 874330 1a110850 fd5ff06f jal x0, -44 +49743501ns 874335 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49743785ns 874340 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49744183ns 874347 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49744353ns 874350 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49744808ns 874358 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49744978ns 874361 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49745263ns 874366 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49745547ns 874371 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49745831ns 874376 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49746286ns 874384 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49746456ns 874387 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49746740ns 874392 1a110850 fd5ff06f jal x0, -44 +49747024ns 874397 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49747309ns 874402 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49747706ns 874409 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49747877ns 874412 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49748332ns 874420 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49748502ns 874423 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49748786ns 874428 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49749070ns 874433 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49749355ns 874438 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49749809ns 874446 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49749980ns 874449 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49750264ns 874454 1a110850 fd5ff06f jal x0, -44 +49750548ns 874459 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49750832ns 874464 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49751230ns 874471 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49751400ns 874474 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49751855ns 874482 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49752026ns 874485 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49752310ns 874490 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49752594ns 874495 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49752878ns 874500 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49753333ns 874508 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49753503ns 874511 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49753787ns 874516 1a110850 fd5ff06f jal x0, -44 +49754072ns 874521 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49754356ns 874526 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49754754ns 874533 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49754924ns 874536 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49755379ns 874544 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49755549ns 874547 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49755833ns 874552 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49756118ns 874557 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49756402ns 874562 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49756856ns 874570 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49757027ns 874573 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49757311ns 874578 1a110850 fd5ff06f jal x0, -44 +49757595ns 874583 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49757879ns 874588 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49758277ns 874595 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49758448ns 874598 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49758902ns 874606 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49759073ns 874609 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49759357ns 874614 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49759641ns 874619 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49759925ns 874624 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49760380ns 874632 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49760550ns 874635 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49760835ns 874640 1a110850 fd5ff06f jal x0, -44 +49761119ns 874645 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49761403ns 874650 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49761801ns 874657 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49761971ns 874660 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49762426ns 874668 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49762596ns 874671 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49762881ns 874676 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49763165ns 874681 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49763449ns 874686 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49763904ns 874694 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49764074ns 874697 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49764358ns 874702 1a110850 fd5ff06f jal x0, -44 +49764642ns 874707 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49764927ns 874712 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49765324ns 874719 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49765495ns 874722 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49765949ns 874730 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49766120ns 874733 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49766404ns 874738 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49766688ns 874743 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49766972ns 874748 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49767427ns 874756 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49767598ns 874759 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49767882ns 874764 1a110850 fd5ff06f jal x0, -44 +49768166ns 874769 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49768450ns 874774 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49768848ns 874781 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49769018ns 874784 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49769473ns 874792 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49769644ns 874795 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49769928ns 874800 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49770212ns 874805 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49770496ns 874810 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49770951ns 874818 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49771121ns 874821 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49771405ns 874826 1a110850 fd5ff06f jal x0, -44 +49771690ns 874831 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49771974ns 874836 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49772371ns 874843 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49772542ns 874846 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49772997ns 874854 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49773167ns 874857 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49773451ns 874862 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49773735ns 874867 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49774020ns 874872 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49774474ns 874880 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49774645ns 874883 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49774929ns 874888 1a110850 fd5ff06f jal x0, -44 +49775213ns 874893 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49775497ns 874898 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49775895ns 874905 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49776066ns 874908 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49776520ns 874916 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49776691ns 874919 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49776975ns 874924 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49777259ns 874929 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49777543ns 874934 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49777998ns 874942 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49778168ns 874945 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49778453ns 874950 1a110850 fd5ff06f jal x0, -44 +49778737ns 874955 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49779021ns 874960 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49779419ns 874967 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49779589ns 874970 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49780044ns 874978 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49780214ns 874981 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49780498ns 874986 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49780783ns 874991 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49781067ns 874996 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49781521ns 875004 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49781692ns 875007 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49781976ns 875012 1a110850 fd5ff06f jal x0, -44 +49782260ns 875017 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49782544ns 875022 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49782942ns 875029 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49783113ns 875032 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49783567ns 875040 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49783738ns 875043 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49784022ns 875048 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49784306ns 875053 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49784590ns 875058 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49785045ns 875066 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49785216ns 875069 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49785500ns 875074 1a110850 fd5ff06f jal x0, -44 +49785784ns 875079 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49786068ns 875084 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49786466ns 875091 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49786636ns 875094 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49787091ns 875102 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49787261ns 875105 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49787546ns 875110 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49787830ns 875115 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49788114ns 875120 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49788569ns 875128 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49788739ns 875131 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49789023ns 875136 1a110850 fd5ff06f jal x0, -44 +49789307ns 875141 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49789592ns 875146 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49789989ns 875153 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49790160ns 875156 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49790615ns 875164 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49790785ns 875167 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49791069ns 875172 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49791353ns 875177 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49791638ns 875182 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49792092ns 875190 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49792263ns 875193 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49792547ns 875198 1a110850 fd5ff06f jal x0, -44 +49792831ns 875203 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49793115ns 875208 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49793513ns 875215 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49793683ns 875218 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49794138ns 875226 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49794309ns 875229 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49794593ns 875234 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49794877ns 875239 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49795161ns 875244 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49795616ns 875252 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49795786ns 875255 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49796070ns 875260 1a110850 fd5ff06f jal x0, -44 +49796355ns 875265 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49796639ns 875270 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49797037ns 875277 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49797207ns 875280 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49797662ns 875288 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49797832ns 875291 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49798116ns 875296 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49798401ns 875301 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49798685ns 875306 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49799139ns 875314 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49799310ns 875317 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49799594ns 875322 1a110850 fd5ff06f jal x0, -44 +49799878ns 875327 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49800162ns 875332 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49800560ns 875339 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49800731ns 875342 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49801185ns 875350 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49801356ns 875353 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49801640ns 875358 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49801924ns 875363 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49802208ns 875368 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49802663ns 875376 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49802833ns 875379 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49803118ns 875384 1a110850 fd5ff06f jal x0, -44 +49803402ns 875389 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49803686ns 875394 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49804084ns 875401 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49804254ns 875404 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49804709ns 875412 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49804879ns 875415 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49805164ns 875420 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49805448ns 875425 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49805732ns 875430 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49806187ns 875438 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49806357ns 875441 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49806641ns 875446 1a110850 fd5ff06f jal x0, -44 +49806925ns 875451 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49807210ns 875456 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49807607ns 875463 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49807778ns 875466 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49808232ns 875474 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49808403ns 875477 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49808687ns 875482 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49808971ns 875487 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49809255ns 875492 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49809710ns 875500 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49809881ns 875503 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49810165ns 875508 1a110850 fd5ff06f jal x0, -44 +49810449ns 875513 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49810733ns 875518 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49811131ns 875525 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49811301ns 875528 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49811756ns 875536 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49811927ns 875539 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49812211ns 875544 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49812495ns 875549 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49812779ns 875554 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49813234ns 875562 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49813404ns 875565 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49813688ns 875570 1a110850 fd5ff06f jal x0, -44 +49813973ns 875575 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49814257ns 875580 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49814655ns 875587 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49814825ns 875590 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49815280ns 875598 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49815450ns 875601 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49815734ns 875606 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49816018ns 875611 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49816303ns 875616 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49816757ns 875624 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49816928ns 875627 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49817212ns 875632 1a110850 fd5ff06f jal x0, -44 +49817496ns 875637 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49817780ns 875642 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49818178ns 875649 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49818349ns 875652 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49818803ns 875660 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49818974ns 875663 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49819258ns 875668 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49819542ns 875673 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49819826ns 875678 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49820281ns 875686 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49820451ns 875689 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49820736ns 875694 1a110850 fd5ff06f jal x0, -44 +49821020ns 875699 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49821304ns 875704 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49821702ns 875711 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49821872ns 875714 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49822327ns 875722 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49822497ns 875725 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49822781ns 875730 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49823066ns 875735 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49823350ns 875740 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49823804ns 875748 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49823975ns 875751 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49824259ns 875756 1a110850 fd5ff06f jal x0, -44 +49824543ns 875761 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49824827ns 875766 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49825225ns 875773 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49825396ns 875776 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49825850ns 875784 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49826021ns 875787 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49826305ns 875792 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49826589ns 875797 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49826873ns 875802 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49827328ns 875810 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49827499ns 875813 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49827783ns 875818 1a110850 fd5ff06f jal x0, -44 +49828067ns 875823 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49828351ns 875828 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49828749ns 875835 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49828919ns 875838 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49829374ns 875846 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49829544ns 875849 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49829829ns 875854 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49830113ns 875859 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49830397ns 875864 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49830852ns 875872 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49831022ns 875875 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49831306ns 875880 1a110850 fd5ff06f jal x0, -44 +49831590ns 875885 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49831875ns 875890 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49832272ns 875897 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49832443ns 875900 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49832898ns 875908 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49833068ns 875911 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49833352ns 875916 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49833636ns 875921 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49833921ns 875926 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49834375ns 875934 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49834546ns 875937 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49834830ns 875942 1a110850 fd5ff06f jal x0, -44 +49835114ns 875947 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49835398ns 875952 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49835796ns 875959 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49835967ns 875962 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49836421ns 875970 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49836592ns 875973 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49836876ns 875978 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49837160ns 875983 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49837444ns 875988 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49837899ns 875996 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49838069ns 875999 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49838353ns 876004 1a110850 fd5ff06f jal x0, -44 +49838638ns 876009 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49838922ns 876014 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49839320ns 876021 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49839490ns 876024 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49839945ns 876032 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49840115ns 876035 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49840399ns 876040 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49840684ns 876045 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49840968ns 876050 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49841422ns 876058 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49841593ns 876061 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49841877ns 876066 1a110850 fd5ff06f jal x0, -44 +49842161ns 876071 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49842445ns 876076 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49842843ns 876083 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49843014ns 876086 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49843468ns 876094 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49843639ns 876097 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49843923ns 876102 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49844207ns 876107 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49844491ns 876112 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49844946ns 876120 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49845116ns 876123 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49845401ns 876128 1a110850 fd5ff06f jal x0, -44 +49845685ns 876133 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49845969ns 876138 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49846367ns 876145 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49846537ns 876148 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49846992ns 876156 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49847162ns 876159 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49847447ns 876164 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49847731ns 876169 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49848015ns 876174 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49848470ns 876182 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49848640ns 876185 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49848924ns 876190 1a110850 fd5ff06f jal x0, -44 +49849208ns 876195 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49849493ns 876200 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49849890ns 876207 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49850061ns 876210 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49850515ns 876218 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49850686ns 876221 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49850970ns 876226 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49851254ns 876231 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49851538ns 876236 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49851993ns 876244 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49852164ns 876247 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49852448ns 876252 1a110850 fd5ff06f jal x0, -44 +49852732ns 876257 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49853016ns 876262 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49853414ns 876269 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49853584ns 876272 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49854039ns 876280 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49854210ns 876283 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49854494ns 876288 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49854778ns 876293 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49855062ns 876298 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49855517ns 876306 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49855687ns 876309 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49855971ns 876314 1a110850 fd5ff06f jal x0, -44 +49856256ns 876319 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49856540ns 876324 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49856938ns 876331 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49857108ns 876334 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49857563ns 876342 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49857733ns 876345 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49858017ns 876350 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49858301ns 876355 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49858586ns 876360 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49859040ns 876368 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49859211ns 876371 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49859495ns 876376 1a110850 fd5ff06f jal x0, -44 +49859779ns 876381 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49860063ns 876386 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49860461ns 876393 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49860632ns 876396 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49861086ns 876404 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49861257ns 876407 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49861541ns 876412 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49861825ns 876417 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49862109ns 876422 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49862564ns 876430 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49862734ns 876433 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49863019ns 876438 1a110850 fd5ff06f jal x0, -44 +49863303ns 876443 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49863587ns 876448 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49863985ns 876455 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49864155ns 876458 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49864610ns 876466 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49864780ns 876469 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49865064ns 876474 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49865349ns 876479 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49865633ns 876484 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49866087ns 876492 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49866258ns 876495 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49866542ns 876500 1a110850 fd5ff06f jal x0, -44 +49866826ns 876505 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49867110ns 876510 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49867508ns 876517 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49867679ns 876520 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49868133ns 876528 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49868304ns 876531 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49868588ns 876536 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49868872ns 876541 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49869156ns 876546 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49869611ns 876554 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49869782ns 876557 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49870066ns 876562 1a110850 fd5ff06f jal x0, -44 +49870350ns 876567 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49870634ns 876572 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49871032ns 876579 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49871202ns 876582 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49871657ns 876590 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49871827ns 876593 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49872112ns 876598 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49872396ns 876603 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49872680ns 876608 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49873135ns 876616 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49873305ns 876619 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49873589ns 876624 1a110850 fd5ff06f jal x0, -44 +49873873ns 876629 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49874158ns 876634 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49874555ns 876641 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49874726ns 876644 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49875181ns 876652 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49875351ns 876655 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49875635ns 876660 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49875919ns 876665 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49876204ns 876670 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49876658ns 876678 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49876829ns 876681 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49877113ns 876686 1a110850 fd5ff06f jal x0, -44 +49877397ns 876691 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49877681ns 876696 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49878079ns 876703 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49878250ns 876706 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49878704ns 876714 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49878875ns 876717 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49879159ns 876722 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49879443ns 876727 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49879727ns 876732 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49880182ns 876740 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49880352ns 876743 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49880636ns 876748 1a110850 fd5ff06f jal x0, -44 +49880921ns 876753 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49881205ns 876758 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49881603ns 876765 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49881773ns 876768 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49882228ns 876776 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49882398ns 876779 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49882682ns 876784 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49882967ns 876789 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49883251ns 876794 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49883705ns 876802 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49883876ns 876805 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49884160ns 876810 1a110850 fd5ff06f jal x0, -44 +49884444ns 876815 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49884728ns 876820 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49885126ns 876827 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49885297ns 876830 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49885751ns 876838 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49885922ns 876841 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49886206ns 876846 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49886490ns 876851 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49886774ns 876856 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49887229ns 876864 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49887399ns 876867 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49887684ns 876872 1a110850 fd5ff06f jal x0, -44 +49887968ns 876877 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49888252ns 876882 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49888650ns 876889 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49888820ns 876892 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49889275ns 876900 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49889445ns 876903 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49889730ns 876908 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49890014ns 876913 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49890298ns 876918 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49890753ns 876926 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49890923ns 876929 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49891207ns 876934 1a110850 fd5ff06f jal x0, -44 +49891491ns 876939 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49891776ns 876944 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49892173ns 876951 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49892344ns 876954 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49892799ns 876962 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49892969ns 876965 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49893253ns 876970 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49893537ns 876975 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49893821ns 876980 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49894276ns 876988 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49894447ns 876991 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49894731ns 876996 1a110850 fd5ff06f jal x0, -44 +49895015ns 877001 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49895299ns 877006 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49895697ns 877013 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49895867ns 877016 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49896322ns 877024 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49896493ns 877027 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49896777ns 877032 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49897061ns 877037 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49897345ns 877042 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49897800ns 877050 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49897970ns 877053 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49898254ns 877058 1a110850 fd5ff06f jal x0, -44 +49898539ns 877063 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49898823ns 877068 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49899221ns 877075 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49899391ns 877078 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49899846ns 877086 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49900016ns 877089 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49900300ns 877094 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49900584ns 877099 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49900869ns 877104 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49901323ns 877112 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49901494ns 877115 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49901778ns 877120 1a110850 fd5ff06f jal x0, -44 +49902062ns 877125 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49902346ns 877130 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49902744ns 877137 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49902915ns 877140 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49903369ns 877148 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49903540ns 877151 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49903824ns 877156 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49904108ns 877161 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49904392ns 877166 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49904847ns 877174 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49905017ns 877177 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49905302ns 877182 1a110850 fd5ff06f jal x0, -44 +49905586ns 877187 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49905870ns 877192 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49906268ns 877199 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49906438ns 877202 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49906893ns 877210 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49907063ns 877213 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49907347ns 877218 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49907632ns 877223 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49907916ns 877228 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49908370ns 877236 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49908541ns 877239 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49908825ns 877244 1a110850 fd5ff06f jal x0, -44 +49909109ns 877249 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49909393ns 877254 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49909791ns 877261 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49909962ns 877264 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49910416ns 877272 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49910587ns 877275 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49910871ns 877280 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49911155ns 877285 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49911439ns 877290 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49911894ns 877298 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49912065ns 877301 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49912349ns 877306 1a110850 fd5ff06f jal x0, -44 +49912633ns 877311 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49912917ns 877316 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49913315ns 877323 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49913485ns 877326 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49913940ns 877334 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49914111ns 877337 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49914395ns 877342 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49914679ns 877347 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49914963ns 877352 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49915418ns 877360 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49915588ns 877363 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49915872ns 877368 1a110850 fd5ff06f jal x0, -44 +49916156ns 877373 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49916441ns 877378 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49916838ns 877385 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49917009ns 877388 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49917464ns 877396 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49917634ns 877399 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49917918ns 877404 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49918202ns 877409 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49918487ns 877414 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49918941ns 877422 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49919112ns 877425 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49919396ns 877430 1a110850 fd5ff06f jal x0, -44 +49919680ns 877435 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49919964ns 877440 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49920362ns 877447 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49920533ns 877450 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49920987ns 877458 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49921158ns 877461 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49921442ns 877466 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49921726ns 877471 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49922010ns 877476 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49922465ns 877484 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49922635ns 877487 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49922919ns 877492 1a110850 fd5ff06f jal x0, -44 +49923204ns 877497 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49923488ns 877502 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49923886ns 877509 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49924056ns 877512 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49924511ns 877520 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49924681ns 877523 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49924965ns 877528 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49925250ns 877533 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49925534ns 877538 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49925988ns 877546 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49926159ns 877549 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49926443ns 877554 1a110850 fd5ff06f jal x0, -44 +49926727ns 877559 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49927011ns 877564 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49927409ns 877571 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49927580ns 877574 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49928034ns 877582 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49928205ns 877585 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49928489ns 877590 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49928773ns 877595 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49929057ns 877600 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49929512ns 877608 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49929682ns 877611 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49929967ns 877616 1a110850 fd5ff06f jal x0, -44 +49930251ns 877621 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49930535ns 877626 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49930933ns 877633 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49931103ns 877636 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49931558ns 877644 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49931728ns 877647 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49932013ns 877652 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49932297ns 877657 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49932581ns 877662 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49933036ns 877670 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49933206ns 877673 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49933490ns 877678 1a110850 fd5ff06f jal x0, -44 +49933774ns 877683 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49934059ns 877688 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49934456ns 877695 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49934627ns 877698 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49935082ns 877706 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49935252ns 877709 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49935536ns 877714 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49935820ns 877719 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49936104ns 877724 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49936559ns 877732 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49936730ns 877735 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49937014ns 877740 1a110850 fd5ff06f jal x0, -44 +49937298ns 877745 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49937582ns 877750 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49937980ns 877757 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49938150ns 877760 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49938605ns 877768 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49938776ns 877771 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49939060ns 877776 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49939344ns 877781 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49939628ns 877786 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49940083ns 877794 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49940253ns 877797 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49940537ns 877802 1a110850 fd5ff06f jal x0, -44 +49940822ns 877807 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49941106ns 877812 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49941504ns 877819 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49941674ns 877822 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49942129ns 877830 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49942299ns 877833 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49942583ns 877838 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49942867ns 877843 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49943152ns 877848 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49943606ns 877856 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49943777ns 877859 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49944061ns 877864 1a110850 fd5ff06f jal x0, -44 +49944345ns 877869 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49944629ns 877874 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49945027ns 877881 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49945198ns 877884 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49945652ns 877892 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49945823ns 877895 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49946107ns 877900 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49946391ns 877905 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49946675ns 877910 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49947130ns 877918 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49947300ns 877921 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49947585ns 877926 1a110850 fd5ff06f jal x0, -44 +49947869ns 877931 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49948153ns 877936 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49948551ns 877943 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49948721ns 877946 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49949176ns 877954 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49949346ns 877957 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49949631ns 877962 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49949915ns 877967 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49950199ns 877972 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49950653ns 877980 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49950824ns 877983 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49951108ns 877988 1a110850 fd5ff06f jal x0, -44 +49951392ns 877993 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49951676ns 877998 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49952074ns 878005 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49952245ns 878008 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49952699ns 878016 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49952870ns 878019 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49953154ns 878024 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49953438ns 878029 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49953722ns 878034 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49954177ns 878042 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49954348ns 878045 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49954632ns 878050 1a110850 fd5ff06f jal x0, -44 +49954916ns 878055 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49955200ns 878060 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49955598ns 878067 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49955768ns 878070 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49956223ns 878078 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49956394ns 878081 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49956678ns 878086 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49956962ns 878091 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49957246ns 878096 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49957701ns 878104 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49957871ns 878107 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49958155ns 878112 1a110850 fd5ff06f jal x0, -44 +49958439ns 878117 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49958724ns 878122 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49959121ns 878129 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49959292ns 878132 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49959747ns 878140 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49959917ns 878143 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49960201ns 878148 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49960485ns 878153 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49960770ns 878158 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49961224ns 878166 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49961395ns 878169 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49961679ns 878174 1a110850 fd5ff06f jal x0, -44 +49961963ns 878179 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49962247ns 878184 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49962645ns 878191 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49962816ns 878194 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49963270ns 878202 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49963441ns 878205 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49963725ns 878210 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49964009ns 878215 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49964293ns 878220 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49964748ns 878228 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49964918ns 878231 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49965202ns 878236 1a110850 fd5ff06f jal x0, -44 +49965487ns 878241 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49965771ns 878246 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49966169ns 878253 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49966339ns 878256 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49966794ns 878264 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49966964ns 878267 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49967248ns 878272 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49967533ns 878277 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49967817ns 878282 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49968271ns 878290 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49968442ns 878293 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49968726ns 878298 1a110850 fd5ff06f jal x0, -44 +49969010ns 878303 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49969294ns 878308 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49969692ns 878315 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49969863ns 878318 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49970317ns 878326 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49970488ns 878329 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49970772ns 878334 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49971056ns 878339 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49971340ns 878344 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49971795ns 878352 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49971965ns 878355 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49972250ns 878360 1a110850 fd5ff06f jal x0, -44 +49972534ns 878365 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49972818ns 878370 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49973216ns 878377 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49973386ns 878380 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49973841ns 878388 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49974011ns 878391 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49974296ns 878396 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49974580ns 878401 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49974864ns 878406 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49975319ns 878414 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49975489ns 878417 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49975773ns 878422 1a110850 fd5ff06f jal x0, -44 +49976057ns 878427 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49976342ns 878432 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49976739ns 878439 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49976910ns 878442 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49977365ns 878450 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49977535ns 878453 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49977819ns 878458 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49978103ns 878463 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49978387ns 878468 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49978842ns 878476 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49979013ns 878479 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49979297ns 878484 1a110850 fd5ff06f jal x0, -44 +49979581ns 878489 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49979865ns 878494 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49980263ns 878501 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49980433ns 878504 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49980888ns 878512 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49981059ns 878515 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49981343ns 878520 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49981627ns 878525 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49981911ns 878530 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49982366ns 878538 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49982536ns 878541 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49982820ns 878546 1a110850 fd5ff06f jal x0, -44 +49983105ns 878551 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49983389ns 878556 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49983787ns 878563 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49983957ns 878566 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49984412ns 878574 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49984582ns 878577 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49984866ns 878582 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49985151ns 878587 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49985435ns 878592 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49985889ns 878600 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49986060ns 878603 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49986344ns 878608 1a110850 fd5ff06f jal x0, -44 +49986628ns 878613 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49986912ns 878618 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49987310ns 878625 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49987481ns 878628 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49987935ns 878636 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49988106ns 878639 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49988390ns 878644 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49988674ns 878649 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49988958ns 878654 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49989413ns 878662 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49989583ns 878665 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49989868ns 878670 1a110850 fd5ff06f jal x0, -44 +49990152ns 878675 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49990436ns 878680 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49990834ns 878687 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49991004ns 878690 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49991459ns 878698 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49991629ns 878701 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49991914ns 878706 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49992198ns 878711 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49992482ns 878716 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49992936ns 878724 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49993107ns 878727 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49993391ns 878732 1a110850 fd5ff06f jal x0, -44 +49993675ns 878737 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49993959ns 878742 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49994357ns 878749 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49994528ns 878752 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49994982ns 878760 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49995153ns 878763 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49995437ns 878768 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49995721ns 878773 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49996005ns 878778 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49996460ns 878786 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +49996631ns 878789 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +49996915ns 878794 1a110850 fd5ff06f jal x0, -44 +49997199ns 878799 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49997483ns 878804 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +49997881ns 878811 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49998051ns 878814 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49998506ns 878822 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +49998677ns 878825 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +49998961ns 878830 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +49999245ns 878835 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +49999529ns 878840 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +49999984ns 878848 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50000154ns 878851 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50000438ns 878856 1a110850 fd5ff06f jal x0, -44 +50000722ns 878861 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50001007ns 878866 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50001404ns 878873 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50001575ns 878876 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50002030ns 878884 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50002200ns 878887 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50002484ns 878892 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50002768ns 878897 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50003053ns 878902 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50003507ns 878910 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50003678ns 878913 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50003962ns 878918 1a110850 fd5ff06f jal x0, -44 +50004246ns 878923 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50004530ns 878928 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50004928ns 878935 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50005099ns 878938 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50005553ns 878946 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50005724ns 878949 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50006008ns 878954 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50006292ns 878959 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50006576ns 878964 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50007031ns 878972 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50007201ns 878975 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50007485ns 878980 1a110850 fd5ff06f jal x0, -44 +50007770ns 878985 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50008054ns 878990 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50008452ns 878997 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50008622ns 879000 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50009077ns 879008 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50009247ns 879011 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50009531ns 879016 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50009816ns 879021 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50010100ns 879026 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50010554ns 879034 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50010725ns 879037 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50011009ns 879042 1a110850 fd5ff06f jal x0, -44 +50011293ns 879047 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50011577ns 879052 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50011975ns 879059 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50012146ns 879062 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50012600ns 879070 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50012771ns 879073 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50013055ns 879078 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50013339ns 879083 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50013623ns 879088 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50014078ns 879096 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50014248ns 879099 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50014533ns 879104 1a110850 fd5ff06f jal x0, -44 +50014817ns 879109 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50015101ns 879114 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50015499ns 879121 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50015669ns 879124 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50016124ns 879132 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50016294ns 879135 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50016579ns 879140 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50016863ns 879145 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50017147ns 879150 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50017602ns 879158 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50017772ns 879161 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50018056ns 879166 1a110850 fd5ff06f jal x0, -44 +50018340ns 879171 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50018625ns 879176 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50019022ns 879183 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50019193ns 879186 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50019648ns 879194 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50019818ns 879197 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50020102ns 879202 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50020386ns 879207 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50020671ns 879212 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50021125ns 879220 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50021296ns 879223 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50021580ns 879228 1a110850 fd5ff06f jal x0, -44 +50021864ns 879233 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50022148ns 879238 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50022546ns 879245 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50022716ns 879248 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50023171ns 879256 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50023342ns 879259 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50023626ns 879264 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50023910ns 879269 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50024194ns 879274 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50024649ns 879282 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50024819ns 879285 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50025103ns 879290 1a110850 fd5ff06f jal x0, -44 +50025388ns 879295 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50025672ns 879300 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50026070ns 879307 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50026240ns 879310 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50026695ns 879318 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50026865ns 879321 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50027149ns 879326 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50027434ns 879331 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50027718ns 879336 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50028172ns 879344 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50028343ns 879347 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50028627ns 879352 1a110850 fd5ff06f jal x0, -44 +50028911ns 879357 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50029195ns 879362 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50029593ns 879369 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50029764ns 879372 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50030218ns 879380 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50030389ns 879383 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50030673ns 879388 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50030957ns 879393 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50031241ns 879398 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50031696ns 879406 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50031866ns 879409 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50032151ns 879414 1a110850 fd5ff06f jal x0, -44 +50032435ns 879419 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50032719ns 879424 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50033117ns 879431 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50033287ns 879434 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50033742ns 879442 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50033912ns 879445 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50034197ns 879450 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50034481ns 879455 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50034765ns 879460 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50035219ns 879468 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50035390ns 879471 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50035674ns 879476 1a110850 fd5ff06f jal x0, -44 +50035958ns 879481 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50036242ns 879486 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50036640ns 879493 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50036811ns 879496 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50037265ns 879504 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50037436ns 879507 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50037720ns 879512 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50038004ns 879517 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50038288ns 879522 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50038743ns 879530 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50038914ns 879533 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50039198ns 879538 1a110850 fd5ff06f jal x0, -44 +50039482ns 879543 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50039766ns 879548 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50040164ns 879555 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50040334ns 879558 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50040789ns 879566 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50040960ns 879569 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50041244ns 879574 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50041528ns 879579 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50041812ns 879584 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50042267ns 879592 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50042437ns 879595 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50042721ns 879600 1a110850 fd5ff06f jal x0, -44 +50043005ns 879605 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50043290ns 879610 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50043687ns 879617 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50043858ns 879620 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50044313ns 879628 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50044483ns 879631 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50044767ns 879636 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50045051ns 879641 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50045336ns 879646 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50045790ns 879654 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50045961ns 879657 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50046245ns 879662 1a110850 fd5ff06f jal x0, -44 +50046529ns 879667 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50046813ns 879672 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50047211ns 879679 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50047382ns 879682 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50047836ns 879690 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50048007ns 879693 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50048291ns 879698 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50048575ns 879703 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50048859ns 879708 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50049314ns 879716 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50049484ns 879719 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50049768ns 879724 1a110850 fd5ff06f jal x0, -44 +50050053ns 879729 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50050337ns 879734 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50050735ns 879741 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50050905ns 879744 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50051360ns 879752 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50051530ns 879755 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50051814ns 879760 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50052099ns 879765 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50052383ns 879770 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50052837ns 879778 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50053008ns 879781 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50053292ns 879786 1a110850 fd5ff06f jal x0, -44 +50053576ns 879791 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50053860ns 879796 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50054258ns 879803 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50054429ns 879806 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50054883ns 879814 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50055054ns 879817 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50055338ns 879822 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50055622ns 879827 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50055906ns 879832 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50056361ns 879840 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50056531ns 879843 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50056816ns 879848 1a110850 fd5ff06f jal x0, -44 +50057100ns 879853 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50057384ns 879858 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50057782ns 879865 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50057952ns 879868 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50058407ns 879876 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50058577ns 879879 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50058862ns 879884 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50059146ns 879889 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50059430ns 879894 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50059885ns 879902 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50060055ns 879905 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50060339ns 879910 1a110850 fd5ff06f jal x0, -44 +50060623ns 879915 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50060908ns 879920 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50061305ns 879927 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50061476ns 879930 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50061931ns 879938 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50062101ns 879941 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50062385ns 879946 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50062669ns 879951 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50062954ns 879956 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50063408ns 879964 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50063579ns 879967 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50063863ns 879972 1a110850 fd5ff06f jal x0, -44 +50064147ns 879977 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50064431ns 879982 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50064829ns 879989 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50064999ns 879992 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50065454ns 880000 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50065625ns 880003 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50065909ns 880008 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50066193ns 880013 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50066477ns 880018 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50066932ns 880026 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50067102ns 880029 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50067386ns 880034 1a110850 fd5ff06f jal x0, -44 +50067671ns 880039 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50067955ns 880044 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50068353ns 880051 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50068523ns 880054 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50068978ns 880062 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50069148ns 880065 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50069432ns 880070 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50069717ns 880075 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50070001ns 880080 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50070455ns 880088 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50070626ns 880091 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50070910ns 880096 1a110850 fd5ff06f jal x0, -44 +50071194ns 880101 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50071478ns 880106 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50071876ns 880113 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50072047ns 880116 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50072501ns 880124 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50072672ns 880127 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50072956ns 880132 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50073240ns 880137 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50073524ns 880142 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50073979ns 880150 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50074149ns 880153 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50074434ns 880158 1a110850 fd5ff06f jal x0, -44 +50074718ns 880163 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50075002ns 880168 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50075400ns 880175 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50075570ns 880178 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50076025ns 880186 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50076195ns 880189 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50076480ns 880194 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50076764ns 880199 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50077048ns 880204 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50077503ns 880212 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50077673ns 880215 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50077957ns 880220 1a110850 fd5ff06f jal x0, -44 +50078241ns 880225 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50078525ns 880230 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50078923ns 880237 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50079094ns 880240 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50079548ns 880248 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50079719ns 880251 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50080003ns 880256 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50080287ns 880261 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50080571ns 880266 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50081026ns 880274 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50081197ns 880277 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50081481ns 880282 1a110850 fd5ff06f jal x0, -44 +50081765ns 880287 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50082049ns 880292 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50082447ns 880299 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50082617ns 880302 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50083072ns 880310 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50083243ns 880313 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50083527ns 880318 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50083811ns 880323 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50084095ns 880328 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50084550ns 880336 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50084720ns 880339 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50085004ns 880344 1a110850 fd5ff06f jal x0, -44 +50085288ns 880349 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50085573ns 880354 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50085970ns 880361 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50086141ns 880364 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50086596ns 880372 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50086766ns 880375 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50087050ns 880380 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50087334ns 880385 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50087619ns 880390 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50088073ns 880398 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50088244ns 880401 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50088528ns 880406 1a110850 fd5ff06f jal x0, -44 +50088812ns 880411 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50089096ns 880416 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50089494ns 880423 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50089665ns 880426 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50090119ns 880434 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50090290ns 880437 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50090574ns 880442 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50090858ns 880447 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50091142ns 880452 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50091597ns 880460 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50091767ns 880463 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50092051ns 880468 1a110850 fd5ff06f jal x0, -44 +50092336ns 880473 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50092620ns 880478 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50093018ns 880485 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50093188ns 880488 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50093643ns 880496 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50093813ns 880499 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50094097ns 880504 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50094382ns 880509 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50094666ns 880514 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50095120ns 880522 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50095291ns 880525 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50095575ns 880530 1a110850 fd5ff06f jal x0, -44 +50095859ns 880535 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50096143ns 880540 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50096541ns 880547 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50096712ns 880550 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50097166ns 880558 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50097337ns 880561 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50097621ns 880566 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50097905ns 880571 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50098189ns 880576 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50098644ns 880584 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50098815ns 880587 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50099099ns 880592 1a110850 fd5ff06f jal x0, -44 +50099383ns 880597 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50099667ns 880602 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50100065ns 880609 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50100235ns 880612 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50100690ns 880620 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50100860ns 880623 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50101145ns 880628 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50101429ns 880633 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50101713ns 880638 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50102168ns 880646 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50102338ns 880649 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50102622ns 880654 1a110850 fd5ff06f jal x0, -44 +50102906ns 880659 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50103191ns 880664 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50103588ns 880671 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50103759ns 880674 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50104214ns 880682 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50104384ns 880685 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50104668ns 880690 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50104952ns 880695 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50105237ns 880700 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50105691ns 880708 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50105862ns 880711 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50106146ns 880716 1a110850 fd5ff06f jal x0, -44 +50106430ns 880721 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50106714ns 880726 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50107112ns 880733 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50107282ns 880736 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50107737ns 880744 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50107908ns 880747 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50108192ns 880752 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50108476ns 880757 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50108760ns 880762 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50109215ns 880770 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50109385ns 880773 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50109669ns 880778 1a110850 fd5ff06f jal x0, -44 +50109954ns 880783 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50110238ns 880788 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50110636ns 880795 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50110806ns 880798 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50111261ns 880806 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50111431ns 880809 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50111715ns 880814 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50112000ns 880819 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50112284ns 880824 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50112738ns 880832 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50112909ns 880835 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50113193ns 880840 1a110850 fd5ff06f jal x0, -44 +50113477ns 880845 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50113761ns 880850 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50114159ns 880857 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50114330ns 880860 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50114784ns 880868 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50114955ns 880871 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50115239ns 880876 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50115523ns 880881 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50115807ns 880886 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50116262ns 880894 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50116432ns 880897 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50116717ns 880902 1a110850 fd5ff06f jal x0, -44 +50117001ns 880907 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50117285ns 880912 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50117683ns 880919 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50117853ns 880922 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50118308ns 880930 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50118478ns 880933 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50118763ns 880938 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50119047ns 880943 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50119331ns 880948 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50119786ns 880956 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50119956ns 880959 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50120240ns 880964 1a110850 fd5ff06f jal x0, -44 +50120524ns 880969 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50120808ns 880974 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50121206ns 880981 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50121377ns 880984 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50121831ns 880992 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50122002ns 880995 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50122286ns 881000 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50122570ns 881005 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50122854ns 881010 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50123309ns 881018 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50123480ns 881021 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50123764ns 881026 1a110850 fd5ff06f jal x0, -44 +50124048ns 881031 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50124332ns 881036 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50124730ns 881043 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50124900ns 881046 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50125355ns 881054 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50125526ns 881057 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50125810ns 881062 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50126094ns 881067 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50126378ns 881072 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50126833ns 881080 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50127003ns 881083 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50127287ns 881088 1a110850 fd5ff06f jal x0, -44 +50127571ns 881093 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50127856ns 881098 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50128253ns 881105 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50128424ns 881108 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50128879ns 881116 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50129049ns 881119 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50129333ns 881124 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50129617ns 881129 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50129902ns 881134 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50130356ns 881142 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50130527ns 881145 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50130811ns 881150 1a110850 fd5ff06f jal x0, -44 +50131095ns 881155 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50131379ns 881160 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50131777ns 881167 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50131948ns 881170 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50132402ns 881178 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50132573ns 881181 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50132857ns 881186 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50133141ns 881191 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50133425ns 881196 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50133880ns 881204 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50134050ns 881207 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50134335ns 881212 1a110850 fd5ff06f jal x0, -44 +50134619ns 881217 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50134903ns 881222 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50135301ns 881229 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50135471ns 881232 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50135926ns 881240 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50136096ns 881243 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50136380ns 881248 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50136665ns 881253 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50136949ns 881258 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50137403ns 881266 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50137574ns 881269 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50137858ns 881274 1a110850 fd5ff06f jal x0, -44 +50138142ns 881279 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50138426ns 881284 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50138824ns 881291 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50138995ns 881294 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50139449ns 881302 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50139620ns 881305 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50139904ns 881310 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50140188ns 881315 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50140472ns 881320 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50140927ns 881328 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50141098ns 881331 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50141382ns 881336 1a110850 fd5ff06f jal x0, -44 +50141666ns 881341 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50141950ns 881346 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50142348ns 881353 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50142518ns 881356 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50142973ns 881364 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50143143ns 881367 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50143428ns 881372 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50143712ns 881377 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50143996ns 881382 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50144451ns 881390 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50144621ns 881393 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50144905ns 881398 1a110850 fd5ff06f jal x0, -44 +50145189ns 881403 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50145474ns 881408 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50145871ns 881415 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50146042ns 881418 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50146497ns 881426 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50146667ns 881429 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50146951ns 881434 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50147235ns 881439 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50147520ns 881444 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50147974ns 881452 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50148145ns 881455 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50148429ns 881460 1a110850 fd5ff06f jal x0, -44 +50148713ns 881465 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50148997ns 881470 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50149395ns 881477 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50149565ns 881480 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50150020ns 881488 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50150191ns 881491 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50150475ns 881496 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50150759ns 881501 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50151043ns 881506 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50151498ns 881514 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50151668ns 881517 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50151952ns 881522 1a110850 fd5ff06f jal x0, -44 +50152237ns 881527 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50152521ns 881532 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50152919ns 881539 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50153089ns 881542 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50153544ns 881550 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50153714ns 881553 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50153998ns 881558 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50154283ns 881563 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50154567ns 881568 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50155021ns 881576 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50155192ns 881579 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50155476ns 881584 1a110850 fd5ff06f jal x0, -44 +50155760ns 881589 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50156044ns 881594 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50156442ns 881601 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50156613ns 881604 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50157067ns 881612 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50157238ns 881615 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50157522ns 881620 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50157806ns 881625 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50158090ns 881630 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50158545ns 881638 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50158715ns 881641 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50159000ns 881646 1a110850 fd5ff06f jal x0, -44 +50159284ns 881651 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50159568ns 881656 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50159966ns 881663 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50160136ns 881666 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50160591ns 881674 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50160761ns 881677 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50161046ns 881682 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50161330ns 881687 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50161614ns 881692 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50162069ns 881700 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50162239ns 881703 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50162523ns 881708 1a110850 fd5ff06f jal x0, -44 +50162807ns 881713 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50163091ns 881718 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50163489ns 881725 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50163660ns 881728 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50164114ns 881736 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50164285ns 881739 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50164569ns 881744 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50164853ns 881749 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50165137ns 881754 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50165592ns 881762 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50165763ns 881765 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50166047ns 881770 1a110850 fd5ff06f jal x0, -44 +50166331ns 881775 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50166615ns 881780 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50167013ns 881787 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50167183ns 881790 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50167638ns 881798 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50167809ns 881801 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50168093ns 881806 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50168377ns 881811 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50168661ns 881816 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50169116ns 881824 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50169286ns 881827 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50169570ns 881832 1a110850 fd5ff06f jal x0, -44 +50169855ns 881837 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50170139ns 881842 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50170536ns 881849 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50170707ns 881852 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50171162ns 881860 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50171332ns 881863 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50171616ns 881868 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50171900ns 881873 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50172185ns 881878 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50172639ns 881886 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50172810ns 881889 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50173094ns 881894 1a110850 fd5ff06f jal x0, -44 +50173378ns 881899 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50173662ns 881904 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50174060ns 881911 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50174231ns 881914 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50174685ns 881922 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50174856ns 881925 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50175140ns 881930 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50175424ns 881935 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50175708ns 881940 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50176163ns 881948 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50176333ns 881951 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50176618ns 881956 1a110850 fd5ff06f jal x0, -44 +50176902ns 881961 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50177186ns 881966 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50177584ns 881973 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50177754ns 881976 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50178209ns 881984 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50178379ns 881987 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50178663ns 881992 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50178948ns 881997 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50179232ns 882002 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50179686ns 882010 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50179857ns 882013 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50180141ns 882018 1a110850 fd5ff06f jal x0, -44 +50180425ns 882023 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50180709ns 882028 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50181107ns 882035 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50181278ns 882038 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50181732ns 882046 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50181903ns 882049 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50182187ns 882054 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50182471ns 882059 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50182755ns 882064 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50183210ns 882072 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50183381ns 882075 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50183665ns 882080 1a110850 fd5ff06f jal x0, -44 +50183949ns 882085 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50184233ns 882090 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50184631ns 882097 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50184801ns 882100 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50185256ns 882108 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50185426ns 882111 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50185711ns 882116 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50185995ns 882121 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50186279ns 882126 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50186734ns 882134 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50186904ns 882137 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50187188ns 882142 1a110850 fd5ff06f jal x0, -44 +50187472ns 882147 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50187757ns 882152 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50188154ns 882159 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50188325ns 882162 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50188780ns 882170 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50188950ns 882173 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50189234ns 882178 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50189518ns 882183 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50189803ns 882188 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50190257ns 882196 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50190428ns 882199 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50190712ns 882204 1a110850 fd5ff06f jal x0, -44 +50190996ns 882209 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50191280ns 882214 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50191678ns 882221 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50191848ns 882224 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50192303ns 882232 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50192474ns 882235 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50192758ns 882240 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50193042ns 882245 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50193326ns 882250 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50193781ns 882258 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50193951ns 882261 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50194235ns 882266 1a110850 fd5ff06f jal x0, -44 +50194520ns 882271 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50194804ns 882276 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50195202ns 882283 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50195372ns 882286 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50195827ns 882294 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50195997ns 882297 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50196281ns 882302 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50196566ns 882307 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50196850ns 882312 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50197304ns 882320 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50197475ns 882323 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50197759ns 882328 1a110850 fd5ff06f jal x0, -44 +50198043ns 882333 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50198327ns 882338 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50198725ns 882345 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50198896ns 882348 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50199350ns 882356 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50199521ns 882359 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50199805ns 882364 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50200089ns 882369 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50200373ns 882374 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50200828ns 882382 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50200998ns 882385 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50201283ns 882390 1a110850 fd5ff06f jal x0, -44 +50201567ns 882395 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50201851ns 882400 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50202249ns 882407 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50202419ns 882410 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50202874ns 882418 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50203044ns 882421 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50203329ns 882426 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50203613ns 882431 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50203897ns 882436 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50204352ns 882444 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50204522ns 882447 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50204806ns 882452 1a110850 fd5ff06f jal x0, -44 +50205090ns 882457 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50205375ns 882462 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50205772ns 882469 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50205943ns 882472 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50206397ns 882480 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50206568ns 882483 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50206852ns 882488 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50207136ns 882493 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50207420ns 882498 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50207875ns 882506 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50208046ns 882509 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50208330ns 882514 1a110850 fd5ff06f jal x0, -44 +50208614ns 882519 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50208898ns 882524 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50209296ns 882531 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50209466ns 882534 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50209921ns 882542 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50210092ns 882545 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50210376ns 882550 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50210660ns 882555 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50210944ns 882560 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50211399ns 882568 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50211569ns 882571 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50211853ns 882576 1a110850 fd5ff06f jal x0, -44 +50212138ns 882581 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50212422ns 882586 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50212819ns 882593 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50212990ns 882596 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50213445ns 882604 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50213615ns 882607 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50213899ns 882612 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50214183ns 882617 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50214468ns 882622 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50214922ns 882630 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50215093ns 882633 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50215377ns 882638 1a110850 fd5ff06f jal x0, -44 +50215661ns 882643 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50215945ns 882648 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50216343ns 882655 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50216514ns 882658 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50216968ns 882666 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50217139ns 882669 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50217423ns 882674 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50217707ns 882679 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50217991ns 882684 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50218446ns 882692 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50218616ns 882695 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50218901ns 882700 1a110850 fd5ff06f jal x0, -44 +50219185ns 882705 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50219469ns 882710 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50219867ns 882717 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50220037ns 882720 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50220492ns 882728 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50220662ns 882731 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50220946ns 882736 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50221231ns 882741 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50221515ns 882746 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50221969ns 882754 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50222140ns 882757 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50222424ns 882762 1a110850 fd5ff06f jal x0, -44 +50222708ns 882767 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50222992ns 882772 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50223390ns 882779 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50223561ns 882782 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50224015ns 882790 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50224186ns 882793 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50224470ns 882798 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50224754ns 882803 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50225038ns 882808 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50225493ns 882816 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50225664ns 882819 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50225948ns 882824 1a110850 fd5ff06f jal x0, -44 +50226232ns 882829 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50226516ns 882834 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50226914ns 882841 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50227084ns 882844 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50227539ns 882852 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50227709ns 882855 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50227994ns 882860 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50228278ns 882865 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50228562ns 882870 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50229017ns 882878 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50229187ns 882881 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50229471ns 882886 1a110850 fd5ff06f jal x0, -44 +50229755ns 882891 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50230040ns 882896 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50230437ns 882903 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50230608ns 882906 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50231063ns 882914 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50231233ns 882917 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50231517ns 882922 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50231801ns 882927 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50232086ns 882932 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50232540ns 882940 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50232711ns 882943 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50232995ns 882948 1a110850 fd5ff06f jal x0, -44 +50233279ns 882953 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50233563ns 882958 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50233961ns 882965 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50234131ns 882968 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50234586ns 882976 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50234757ns 882979 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50235041ns 882984 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50235325ns 882989 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50235609ns 882994 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50236064ns 883002 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50236234ns 883005 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50236518ns 883010 1a110850 fd5ff06f jal x0, -44 +50236803ns 883015 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50237087ns 883020 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50237485ns 883027 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50237655ns 883030 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50238110ns 883038 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50238280ns 883041 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50238564ns 883046 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50238849ns 883051 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50239133ns 883056 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50239587ns 883064 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50239758ns 883067 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50240042ns 883072 1a110850 fd5ff06f jal x0, -44 +50240326ns 883077 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50240610ns 883082 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50241008ns 883089 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50241179ns 883092 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50241633ns 883100 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50241804ns 883103 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50242088ns 883108 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50242372ns 883113 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50242656ns 883118 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50243111ns 883126 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50243281ns 883129 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50243566ns 883134 1a110850 fd5ff06f jal x0, -44 +50243850ns 883139 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50244134ns 883144 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50244532ns 883151 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50244702ns 883154 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50245157ns 883162 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50245327ns 883165 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50245612ns 883170 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50245896ns 883175 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50246180ns 883180 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50246635ns 883188 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50246805ns 883191 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50247089ns 883196 1a110850 fd5ff06f jal x0, -44 +50247373ns 883201 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50247658ns 883206 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50248055ns 883213 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50248226ns 883216 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50248680ns 883224 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50248851ns 883227 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50249135ns 883232 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50249419ns 883237 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50249703ns 883242 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50250158ns 883250 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50250329ns 883253 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50250613ns 883258 1a110850 fd5ff06f jal x0, -44 +50250897ns 883263 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50251181ns 883268 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50251579ns 883275 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50251749ns 883278 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50252204ns 883286 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50252375ns 883289 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50252659ns 883294 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50252943ns 883299 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50253227ns 883304 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50253682ns 883312 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50253852ns 883315 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50254136ns 883320 1a110850 fd5ff06f jal x0, -44 +50254421ns 883325 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50254705ns 883330 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50255103ns 883337 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50255273ns 883340 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50255728ns 883348 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50255898ns 883351 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50256182ns 883356 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50256466ns 883361 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50256751ns 883366 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50257205ns 883374 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50257376ns 883377 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50257660ns 883382 1a110850 fd5ff06f jal x0, -44 +50257944ns 883387 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50258228ns 883392 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50258626ns 883399 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50258797ns 883402 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50259251ns 883410 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50259422ns 883413 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50259706ns 883418 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50259990ns 883423 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50260274ns 883428 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50260729ns 883436 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50260899ns 883439 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50261184ns 883444 1a110850 fd5ff06f jal x0, -44 +50261468ns 883449 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50261752ns 883454 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50262150ns 883461 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50262320ns 883464 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50262775ns 883472 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50262945ns 883475 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50263229ns 883480 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50263514ns 883485 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50263798ns 883490 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50264252ns 883498 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50264423ns 883501 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50264707ns 883506 1a110850 fd5ff06f jal x0, -44 +50264991ns 883511 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50265275ns 883516 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50265673ns 883523 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50265844ns 883526 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50266298ns 883534 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50266469ns 883537 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50266753ns 883542 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50267037ns 883547 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50267321ns 883552 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50267776ns 883560 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50267947ns 883563 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50268231ns 883568 1a110850 fd5ff06f jal x0, -44 +50268515ns 883573 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50268799ns 883578 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50269197ns 883585 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50269367ns 883588 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50269822ns 883596 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50269992ns 883599 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50270277ns 883604 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50270561ns 883609 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50270845ns 883614 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50271300ns 883622 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50271470ns 883625 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50271754ns 883630 1a110850 fd5ff06f jal x0, -44 +50272038ns 883635 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50272323ns 883640 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50272720ns 883647 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50272891ns 883650 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50273346ns 883658 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50273516ns 883661 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50273800ns 883666 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50274084ns 883671 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50274369ns 883676 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50274823ns 883684 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50274994ns 883687 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50275278ns 883692 1a110850 fd5ff06f jal x0, -44 +50275562ns 883697 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50275846ns 883702 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50276244ns 883709 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50276415ns 883712 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50276869ns 883720 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50277040ns 883723 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50277324ns 883728 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50277608ns 883733 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50277892ns 883738 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50278347ns 883746 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50278517ns 883749 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50278801ns 883754 1a110850 fd5ff06f jal x0, -44 +50279086ns 883759 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50279370ns 883764 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50279768ns 883771 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50279938ns 883774 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50280393ns 883782 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50280563ns 883785 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50280847ns 883790 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50281132ns 883795 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50281416ns 883800 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50281870ns 883808 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50282041ns 883811 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50282325ns 883816 1a110850 fd5ff06f jal x0, -44 +50282609ns 883821 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50282893ns 883826 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50283291ns 883833 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50283462ns 883836 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50283916ns 883844 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50284087ns 883847 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50284371ns 883852 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50284655ns 883857 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50284939ns 883862 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50285394ns 883870 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50285564ns 883873 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50285849ns 883878 1a110850 fd5ff06f jal x0, -44 +50286133ns 883883 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50286417ns 883888 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50286815ns 883895 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50286985ns 883898 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50287440ns 883906 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50287610ns 883909 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50287895ns 883914 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50288179ns 883919 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50288463ns 883924 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50288918ns 883932 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50289088ns 883935 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50289372ns 883940 1a110850 fd5ff06f jal x0, -44 +50289656ns 883945 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50289941ns 883950 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50290338ns 883957 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50290509ns 883960 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50290963ns 883968 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50291134ns 883971 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50291418ns 883976 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50291702ns 883981 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50291986ns 883986 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50292441ns 883994 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50292612ns 883997 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50292896ns 884002 1a110850 fd5ff06f jal x0, -44 +50293180ns 884007 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50293464ns 884012 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50293862ns 884019 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50294032ns 884022 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50294487ns 884030 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50294658ns 884033 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50294942ns 884038 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50295226ns 884043 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50295510ns 884048 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50295965ns 884056 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50296135ns 884059 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50296419ns 884064 1a110850 fd5ff06f jal x0, -44 +50296704ns 884069 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50296988ns 884074 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50297386ns 884081 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50297556ns 884084 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50298011ns 884092 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50298181ns 884095 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50298465ns 884100 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50298749ns 884105 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50299034ns 884110 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50299488ns 884118 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50299659ns 884121 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50299943ns 884126 1a110850 fd5ff06f jal x0, -44 +50300227ns 884131 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50300511ns 884136 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50300909ns 884143 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50301080ns 884146 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50301534ns 884154 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50301705ns 884157 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50301989ns 884162 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50302273ns 884167 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50302557ns 884172 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50303012ns 884180 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50303182ns 884183 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50303467ns 884188 1a110850 fd5ff06f jal x0, -44 +50303751ns 884193 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50304035ns 884198 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50304433ns 884205 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50304603ns 884208 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50305058ns 884216 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50305228ns 884219 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50305512ns 884224 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50305797ns 884229 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50306081ns 884234 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50306535ns 884242 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50306706ns 884245 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50306990ns 884250 1a110850 fd5ff06f jal x0, -44 +50307274ns 884255 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50307558ns 884260 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50307956ns 884267 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50308127ns 884270 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50308581ns 884278 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50308752ns 884281 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50309036ns 884286 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50309320ns 884291 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50309604ns 884296 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50310059ns 884304 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50310230ns 884307 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50310514ns 884312 1a110850 fd5ff06f jal x0, -44 +50310798ns 884317 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50311082ns 884322 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50311480ns 884329 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50311650ns 884332 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50312105ns 884340 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50312275ns 884343 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50312560ns 884348 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50312844ns 884353 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50313128ns 884358 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50313583ns 884366 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50313753ns 884369 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50314037ns 884374 1a110850 fd5ff06f jal x0, -44 +50314321ns 884379 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50314606ns 884384 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50315003ns 884391 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50315174ns 884394 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50315629ns 884402 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50315799ns 884405 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50316083ns 884410 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50316367ns 884415 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50316652ns 884420 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50317106ns 884428 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50317277ns 884431 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50317561ns 884436 1a110850 fd5ff06f jal x0, -44 +50317845ns 884441 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50318129ns 884446 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50318527ns 884453 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50318698ns 884456 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50319152ns 884464 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50319323ns 884467 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50319607ns 884472 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50319891ns 884477 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50320175ns 884482 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50320630ns 884490 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50320800ns 884493 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50321084ns 884498 1a110850 fd5ff06f jal x0, -44 +50321369ns 884503 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50321653ns 884508 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50322051ns 884515 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50322221ns 884518 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50322676ns 884526 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50322846ns 884529 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50323130ns 884534 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50323415ns 884539 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50323699ns 884544 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50324153ns 884552 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50324324ns 884555 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50324608ns 884560 1a110850 fd5ff06f jal x0, -44 +50324892ns 884565 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50325176ns 884570 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50325574ns 884577 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50325745ns 884580 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50326199ns 884588 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50326370ns 884591 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50326654ns 884596 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50326938ns 884601 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50327222ns 884606 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50327677ns 884614 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50327847ns 884617 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50328132ns 884622 1a110850 fd5ff06f jal x0, -44 +50328416ns 884627 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50328700ns 884632 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50329098ns 884639 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50329268ns 884642 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50329723ns 884650 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50329893ns 884653 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50330178ns 884658 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50330462ns 884663 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50330746ns 884668 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50331201ns 884676 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50331371ns 884679 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50331655ns 884684 1a110850 fd5ff06f jal x0, -44 +50331939ns 884689 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50332224ns 884694 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50332621ns 884701 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50332792ns 884704 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50333247ns 884712 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50333417ns 884715 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50333701ns 884720 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50333985ns 884725 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50334269ns 884730 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50334724ns 884738 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50334895ns 884741 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50335179ns 884746 1a110850 fd5ff06f jal x0, -44 +50335463ns 884751 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50335747ns 884756 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50336145ns 884763 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50336315ns 884766 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50336770ns 884774 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50336941ns 884777 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50337225ns 884782 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50337509ns 884787 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50337793ns 884792 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50338248ns 884800 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50338418ns 884803 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50338702ns 884808 1a110850 fd5ff06f jal x0, -44 +50338987ns 884813 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50339271ns 884818 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50339669ns 884825 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50339839ns 884828 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50340294ns 884836 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50340464ns 884839 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50340748ns 884844 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50341032ns 884849 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50341317ns 884854 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50341771ns 884862 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50341942ns 884865 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50342226ns 884870 1a110850 fd5ff06f jal x0, -44 +50342510ns 884875 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50342794ns 884880 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50343192ns 884887 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50343363ns 884890 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50343817ns 884898 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50343988ns 884901 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50344272ns 884906 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50344556ns 884911 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50344840ns 884916 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50345295ns 884924 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50345465ns 884927 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50345750ns 884932 1a110850 fd5ff06f jal x0, -44 +50346034ns 884937 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50346318ns 884942 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50346716ns 884949 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50346886ns 884952 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50347341ns 884960 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50347511ns 884963 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50347795ns 884968 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50348080ns 884973 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50348364ns 884978 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50348818ns 884986 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50348989ns 884989 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50349273ns 884994 1a110850 fd5ff06f jal x0, -44 +50349557ns 884999 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50349841ns 885004 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50350239ns 885011 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50350410ns 885014 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50350864ns 885022 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50351035ns 885025 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50351319ns 885030 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50351603ns 885035 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50351887ns 885040 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50352342ns 885048 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50352513ns 885051 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50352797ns 885056 1a110850 fd5ff06f jal x0, -44 +50353081ns 885061 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50353365ns 885066 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50353763ns 885073 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50353933ns 885076 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50354388ns 885084 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50354559ns 885087 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50354843ns 885092 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50355127ns 885097 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50355411ns 885102 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50355866ns 885110 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50356036ns 885113 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50356320ns 885118 1a110850 fd5ff06f jal x0, -44 +50356604ns 885123 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50356889ns 885128 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50357286ns 885135 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50357457ns 885138 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50357912ns 885146 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50358082ns 885149 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50358366ns 885154 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50358650ns 885159 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50358935ns 885164 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50359389ns 885172 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50359560ns 885175 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50359844ns 885180 1a110850 fd5ff06f jal x0, -44 +50360128ns 885185 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50360412ns 885190 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50360810ns 885197 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50360981ns 885200 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50361435ns 885208 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50361606ns 885211 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50361890ns 885216 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50362174ns 885221 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50362458ns 885226 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50362913ns 885234 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50363083ns 885237 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50363367ns 885242 1a110850 fd5ff06f jal x0, -44 +50363652ns 885247 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50363936ns 885252 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50364334ns 885259 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50364504ns 885262 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50364959ns 885270 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50365129ns 885273 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50365413ns 885278 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50365698ns 885283 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50365982ns 885288 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50366436ns 885296 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50366607ns 885299 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50366891ns 885304 1a110850 fd5ff06f jal x0, -44 +50367175ns 885309 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50367459ns 885314 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50367857ns 885321 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50368028ns 885324 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50368482ns 885332 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50368653ns 885335 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50368937ns 885340 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50369221ns 885345 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50369505ns 885350 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50369960ns 885358 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50370130ns 885361 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50370415ns 885366 1a110850 fd5ff06f jal x0, -44 +50370699ns 885371 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50370983ns 885376 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50371381ns 885383 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50371551ns 885386 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50372006ns 885394 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50372176ns 885397 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50372461ns 885402 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50372745ns 885407 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50373029ns 885412 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50373484ns 885420 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50373654ns 885423 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50373938ns 885428 1a110850 fd5ff06f jal x0, -44 +50374222ns 885433 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50374507ns 885438 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50374904ns 885445 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50375075ns 885448 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50375530ns 885456 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50375700ns 885459 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50375984ns 885464 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50376268ns 885469 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50376552ns 885474 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50377007ns 885482 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50377178ns 885485 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50377462ns 885490 1a110850 fd5ff06f jal x0, -44 +50377746ns 885495 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50378030ns 885500 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50378428ns 885507 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50378598ns 885510 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50379053ns 885518 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50379224ns 885521 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50379508ns 885526 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50379792ns 885531 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50380076ns 885536 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50380531ns 885544 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50380701ns 885547 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50380985ns 885552 1a110850 fd5ff06f jal x0, -44 +50381270ns 885557 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50381554ns 885562 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50381952ns 885569 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50382122ns 885572 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50382577ns 885580 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50382747ns 885583 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50383031ns 885588 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50383315ns 885593 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50383600ns 885598 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50384054ns 885606 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50384225ns 885609 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50384509ns 885614 1a110850 fd5ff06f jal x0, -44 +50384793ns 885619 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50385077ns 885624 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50385475ns 885631 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50385646ns 885634 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50386100ns 885642 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50386271ns 885645 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50386555ns 885650 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50386839ns 885655 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50387123ns 885660 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50387578ns 885668 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50387748ns 885671 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50388033ns 885676 1a110850 fd5ff06f jal x0, -44 +50388317ns 885681 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50388601ns 885686 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50388999ns 885693 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50389169ns 885696 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50389624ns 885704 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50389794ns 885707 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50390079ns 885712 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50390363ns 885717 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50390647ns 885722 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50391101ns 885730 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50391272ns 885733 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50391556ns 885738 1a110850 fd5ff06f jal x0, -44 +50391840ns 885743 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50392124ns 885748 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50392522ns 885755 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50392693ns 885758 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50393147ns 885766 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50393318ns 885769 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50393602ns 885774 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50393886ns 885779 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50394170ns 885784 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50394625ns 885792 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50394796ns 885795 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50395080ns 885800 1a110850 fd5ff06f jal x0, -44 +50395364ns 885805 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50395648ns 885810 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50396046ns 885817 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50396216ns 885820 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50396671ns 885828 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50396842ns 885831 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50397126ns 885836 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50397410ns 885841 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50397694ns 885846 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50398149ns 885854 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50398319ns 885857 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50398603ns 885862 1a110850 fd5ff06f jal x0, -44 +50398887ns 885867 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50399172ns 885872 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50399569ns 885879 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50399740ns 885882 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50400195ns 885890 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50400365ns 885893 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50400649ns 885898 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50400933ns 885903 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50401218ns 885908 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50401672ns 885916 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50401843ns 885919 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50402127ns 885924 1a110850 fd5ff06f jal x0, -44 +50402411ns 885929 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50402695ns 885934 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50403093ns 885941 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50403264ns 885944 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50403718ns 885952 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50403889ns 885955 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50404173ns 885960 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50404457ns 885965 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50404741ns 885970 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50405196ns 885978 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50405366ns 885981 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50405650ns 885986 1a110850 fd5ff06f jal x0, -44 +50405935ns 885991 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50406219ns 885996 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50406617ns 886003 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50406787ns 886006 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50407242ns 886014 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50407412ns 886017 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50407696ns 886022 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50407981ns 886027 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50408265ns 886032 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50408719ns 886040 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50408890ns 886043 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50409174ns 886048 1a110850 fd5ff06f jal x0, -44 +50409458ns 886053 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50409742ns 886058 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50410140ns 886065 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50410311ns 886068 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50410765ns 886076 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50410936ns 886079 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50411220ns 886084 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50411504ns 886089 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50411788ns 886094 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50412243ns 886102 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50412413ns 886105 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50412698ns 886110 1a110850 fd5ff06f jal x0, -44 +50412982ns 886115 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50413266ns 886120 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50413664ns 886127 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50413834ns 886130 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50414289ns 886138 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50414459ns 886141 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50414744ns 886146 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50415028ns 886151 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50415312ns 886156 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50415767ns 886164 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50415937ns 886167 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50416221ns 886172 1a110850 fd5ff06f jal x0, -44 +50416505ns 886177 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50416790ns 886182 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50417187ns 886189 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50417358ns 886192 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50417813ns 886200 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50417983ns 886203 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50418267ns 886208 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50418551ns 886213 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50418835ns 886218 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50419290ns 886226 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50419461ns 886229 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50419745ns 886234 1a110850 fd5ff06f jal x0, -44 +50420029ns 886239 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50420313ns 886244 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50420711ns 886251 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50420881ns 886254 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50421336ns 886262 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50421507ns 886265 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50421791ns 886270 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50422075ns 886275 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50422359ns 886280 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50422814ns 886288 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50422984ns 886291 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50423268ns 886296 1a110850 fd5ff06f jal x0, -44 +50423553ns 886301 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50423837ns 886306 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50424235ns 886313 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50424405ns 886316 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50424860ns 886324 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50425030ns 886327 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50425314ns 886332 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50425599ns 886337 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50425883ns 886342 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50426337ns 886350 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50426508ns 886353 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50426792ns 886358 1a110850 fd5ff06f jal x0, -44 +50427076ns 886363 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50427360ns 886368 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50427758ns 886375 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50427929ns 886378 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50428383ns 886386 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50428554ns 886389 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50428838ns 886394 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50429122ns 886399 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50429406ns 886404 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50429861ns 886412 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50430031ns 886415 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50430316ns 886420 1a110850 fd5ff06f jal x0, -44 +50430600ns 886425 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50430884ns 886430 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50431282ns 886437 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50431452ns 886440 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50431907ns 886448 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50432077ns 886451 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50432362ns 886456 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50432646ns 886461 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50432930ns 886466 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50433384ns 886474 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50433555ns 886477 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50433839ns 886482 1a110850 fd5ff06f jal x0, -44 +50434123ns 886487 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50434407ns 886492 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50434805ns 886499 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50434976ns 886502 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50435430ns 886510 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50435601ns 886513 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50435885ns 886518 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50436169ns 886523 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50436453ns 886528 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50436908ns 886536 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50437079ns 886539 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50437363ns 886544 1a110850 fd5ff06f jal x0, -44 +50437647ns 886549 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50437931ns 886554 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50438329ns 886561 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50438499ns 886564 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50438954ns 886572 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50439125ns 886575 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50439409ns 886580 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50439693ns 886585 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50439977ns 886590 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50440432ns 886598 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50440602ns 886601 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50440886ns 886606 1a110850 fd5ff06f jal x0, -44 +50441170ns 886611 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50441455ns 886616 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50441852ns 886623 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50442023ns 886626 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50442478ns 886634 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50442648ns 886637 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50442932ns 886642 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50443216ns 886647 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50443501ns 886652 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50443955ns 886660 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50444126ns 886663 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50444410ns 886668 1a110850 fd5ff06f jal x0, -44 +50444694ns 886673 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50444978ns 886678 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50445376ns 886685 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50445547ns 886688 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50446001ns 886696 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50446172ns 886699 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50446456ns 886704 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50446740ns 886709 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50447024ns 886714 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50447479ns 886722 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50447649ns 886725 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50447933ns 886730 1a110850 fd5ff06f jal x0, -44 +50448218ns 886735 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50448502ns 886740 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50448900ns 886747 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50449070ns 886750 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50449525ns 886758 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50449695ns 886761 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50449979ns 886766 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50450264ns 886771 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50450548ns 886776 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50451002ns 886784 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50451173ns 886787 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50451457ns 886792 1a110850 fd5ff06f jal x0, -44 +50451741ns 886797 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50452025ns 886802 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50452423ns 886809 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50452594ns 886812 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50453048ns 886820 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50453219ns 886823 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50453503ns 886828 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50453787ns 886833 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50454071ns 886838 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50454526ns 886846 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50454696ns 886849 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50454981ns 886854 1a110850 fd5ff06f jal x0, -44 +50455265ns 886859 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50455549ns 886864 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50455947ns 886871 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50456117ns 886874 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50456572ns 886882 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50456742ns 886885 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50457027ns 886890 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50457311ns 886895 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50457595ns 886900 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50458050ns 886908 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50458220ns 886911 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50458504ns 886916 1a110850 fd5ff06f jal x0, -44 +50458788ns 886921 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50459073ns 886926 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50459470ns 886933 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50459641ns 886936 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50460096ns 886944 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50460266ns 886947 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50460550ns 886952 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50460834ns 886957 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50461119ns 886962 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50461573ns 886970 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50461744ns 886973 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50462028ns 886978 1a110850 fd5ff06f jal x0, -44 +50462312ns 886983 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50462596ns 886988 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50462994ns 886995 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50463164ns 886998 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50463619ns 887006 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50463790ns 887009 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50464074ns 887014 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50464358ns 887019 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50464642ns 887024 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50465097ns 887032 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50465267ns 887035 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50465551ns 887040 1a110850 fd5ff06f jal x0, -44 +50465836ns 887045 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50466120ns 887050 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50466518ns 887057 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50466688ns 887060 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50467143ns 887068 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50467313ns 887071 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50467597ns 887076 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50467882ns 887081 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50468166ns 887086 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50468620ns 887094 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50468791ns 887097 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50469075ns 887102 1a110850 fd5ff06f jal x0, -44 +50469359ns 887107 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50469643ns 887112 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50470041ns 887119 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50470212ns 887122 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50470666ns 887130 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50470837ns 887133 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50471121ns 887138 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50471405ns 887143 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50471689ns 887148 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50472144ns 887156 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50472314ns 887159 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50472599ns 887164 1a110850 fd5ff06f jal x0, -44 +50472883ns 887169 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50473167ns 887174 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50473565ns 887181 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50473735ns 887184 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50474190ns 887192 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50474360ns 887195 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50474645ns 887200 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50474929ns 887205 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50475213ns 887210 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50475667ns 887218 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50475838ns 887221 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50476122ns 887226 1a110850 fd5ff06f jal x0, -44 +50476406ns 887231 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50476690ns 887236 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50477088ns 887243 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50477259ns 887246 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50477713ns 887254 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50477884ns 887257 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50478168ns 887262 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50478452ns 887267 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50478736ns 887272 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50479191ns 887280 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50479362ns 887283 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50479646ns 887288 1a110850 fd5ff06f jal x0, -44 +50479930ns 887293 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50480214ns 887298 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50480612ns 887305 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50480782ns 887308 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50481237ns 887316 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50481408ns 887319 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50481692ns 887324 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50481976ns 887329 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50482260ns 887334 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50482715ns 887342 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50482885ns 887345 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50483169ns 887350 1a110850 fd5ff06f jal x0, -44 +50483453ns 887355 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50483738ns 887360 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50484135ns 887367 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50484306ns 887370 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50484761ns 887378 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50484931ns 887381 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50485215ns 887386 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50485499ns 887391 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50485784ns 887396 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50486238ns 887404 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50486409ns 887407 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50486693ns 887412 1a110850 fd5ff06f jal x0, -44 +50486977ns 887417 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50487261ns 887422 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50487659ns 887429 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50487830ns 887432 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50488284ns 887440 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50488455ns 887443 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50488739ns 887448 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50489023ns 887453 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50489307ns 887458 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50489762ns 887466 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50489932ns 887469 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50490216ns 887474 1a110850 fd5ff06f jal x0, -44 +50490501ns 887479 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50490785ns 887484 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50491183ns 887491 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50491353ns 887494 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50491808ns 887502 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50491978ns 887505 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50492262ns 887510 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50492547ns 887515 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50492831ns 887520 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50493285ns 887528 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50493456ns 887531 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50493740ns 887536 1a110850 fd5ff06f jal x0, -44 +50494024ns 887541 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50494308ns 887546 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50494706ns 887553 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50494877ns 887556 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50495331ns 887564 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50495502ns 887567 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50495786ns 887572 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50496070ns 887577 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50496354ns 887582 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50496809ns 887590 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50496979ns 887593 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50497264ns 887598 1a110850 fd5ff06f jal x0, -44 +50497548ns 887603 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50497832ns 887608 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50498230ns 887615 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50498400ns 887618 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50498855ns 887626 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50499025ns 887629 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50499310ns 887634 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50499594ns 887639 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50499878ns 887644 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50500333ns 887652 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50500503ns 887655 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50500787ns 887660 1a110850 fd5ff06f jal x0, -44 +50501071ns 887665 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50501356ns 887670 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50501753ns 887677 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50501924ns 887680 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50502379ns 887688 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50502549ns 887691 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50502833ns 887696 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50503117ns 887701 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50503402ns 887706 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50503856ns 887714 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50504027ns 887717 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50504311ns 887722 1a110850 fd5ff06f jal x0, -44 +50504595ns 887727 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50504879ns 887732 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50505277ns 887739 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50505447ns 887742 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50505902ns 887750 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50506073ns 887753 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50506357ns 887758 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50506641ns 887763 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50506925ns 887768 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50507380ns 887776 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50507550ns 887779 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50507834ns 887784 1a110850 fd5ff06f jal x0, -44 +50508119ns 887789 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50508403ns 887794 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50508801ns 887801 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50508971ns 887804 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50509426ns 887812 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50509596ns 887815 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50509880ns 887820 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50510165ns 887825 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50510449ns 887830 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50510903ns 887838 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50511074ns 887841 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50511358ns 887846 1a110850 fd5ff06f jal x0, -44 +50511642ns 887851 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50511926ns 887856 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50512324ns 887863 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50512495ns 887866 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50512949ns 887874 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50513120ns 887877 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50513404ns 887882 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50513688ns 887887 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50513972ns 887892 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50514427ns 887900 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50514597ns 887903 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50514882ns 887908 1a110850 fd5ff06f jal x0, -44 +50515166ns 887913 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50515450ns 887918 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50515848ns 887925 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50516018ns 887928 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50516473ns 887936 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50516643ns 887939 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50516928ns 887944 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50517212ns 887949 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50517496ns 887954 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50517951ns 887962 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50518121ns 887965 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50518405ns 887970 1a110850 fd5ff06f jal x0, -44 +50518689ns 887975 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50518973ns 887980 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50519371ns 887987 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50519542ns 887990 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50519996ns 887998 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50520167ns 888001 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50520451ns 888006 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50520735ns 888011 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50521019ns 888016 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50521474ns 888024 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50521645ns 888027 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50521929ns 888032 1a110850 fd5ff06f jal x0, -44 +50522213ns 888037 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50522497ns 888042 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50522895ns 888049 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50523065ns 888052 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50523520ns 888060 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50523691ns 888063 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50523975ns 888068 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50524259ns 888073 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50524543ns 888078 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50524998ns 888086 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50525168ns 888089 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50525452ns 888094 1a110850 fd5ff06f jal x0, -44 +50525736ns 888099 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50526021ns 888104 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50526418ns 888111 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50526589ns 888114 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50527044ns 888122 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50527214ns 888125 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50527498ns 888130 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50527782ns 888135 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50528067ns 888140 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50528521ns 888148 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50528692ns 888151 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50528976ns 888156 1a110850 fd5ff06f jal x0, -44 +50529260ns 888161 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50529544ns 888166 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50529942ns 888173 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50530113ns 888176 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50530567ns 888184 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50530738ns 888187 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50531022ns 888192 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50531306ns 888197 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50531590ns 888202 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50532045ns 888210 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50532215ns 888213 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50532499ns 888218 1a110850 fd5ff06f jal x0, -44 +50532784ns 888223 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50533068ns 888228 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50533466ns 888235 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50533636ns 888238 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50534091ns 888246 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50534261ns 888249 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50534545ns 888254 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50534830ns 888259 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50535114ns 888264 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50535568ns 888272 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50535739ns 888275 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50536023ns 888280 1a110850 fd5ff06f jal x0, -44 +50536307ns 888285 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50536591ns 888290 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50536989ns 888297 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50537160ns 888300 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50537614ns 888308 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50537785ns 888311 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50538069ns 888316 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50538353ns 888321 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50538637ns 888326 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50539092ns 888334 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50539263ns 888337 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50539547ns 888342 1a110850 fd5ff06f jal x0, -44 +50539831ns 888347 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50540115ns 888352 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50540513ns 888359 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50540683ns 888362 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50541138ns 888370 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50541308ns 888373 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50541593ns 888378 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50541877ns 888383 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50542161ns 888388 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50542616ns 888396 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50542786ns 888399 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50543070ns 888404 1a110850 fd5ff06f jal x0, -44 +50543354ns 888409 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50543639ns 888414 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50544036ns 888421 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50544207ns 888424 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50544662ns 888432 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50544832ns 888435 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50545116ns 888440 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50545400ns 888445 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50545685ns 888450 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50546139ns 888458 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50546310ns 888461 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50546594ns 888466 1a110850 fd5ff06f jal x0, -44 +50546878ns 888471 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50547162ns 888476 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50547560ns 888483 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50547730ns 888486 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50548185ns 888494 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50548356ns 888497 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50548640ns 888502 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50548924ns 888507 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50549208ns 888512 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50549663ns 888520 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50549833ns 888523 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50550117ns 888528 1a110850 fd5ff06f jal x0, -44 +50550402ns 888533 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50550686ns 888538 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50551084ns 888545 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50551254ns 888548 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50551709ns 888556 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50551879ns 888559 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50552163ns 888564 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50552448ns 888569 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50552732ns 888574 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50553186ns 888582 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50553357ns 888585 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50553641ns 888590 1a110850 fd5ff06f jal x0, -44 +50553925ns 888595 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50554209ns 888600 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50554607ns 888607 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50554778ns 888610 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50555232ns 888618 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50555403ns 888621 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50555687ns 888626 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50555971ns 888631 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50556255ns 888636 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50556710ns 888644 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50556880ns 888647 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50557165ns 888652 1a110850 fd5ff06f jal x0, -44 +50557449ns 888657 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50557733ns 888662 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50558131ns 888669 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50558301ns 888672 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50558756ns 888680 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50558926ns 888683 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50559211ns 888688 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50559495ns 888693 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50559779ns 888698 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50560234ns 888706 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50560404ns 888709 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50560688ns 888714 1a110850 fd5ff06f jal x0, -44 +50560972ns 888719 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50561256ns 888724 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50561654ns 888731 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50561825ns 888734 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50562279ns 888742 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50562450ns 888745 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50562734ns 888750 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50563018ns 888755 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50563302ns 888760 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50563757ns 888768 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50563928ns 888771 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50564212ns 888776 1a110850 fd5ff06f jal x0, -44 +50564496ns 888781 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50564780ns 888786 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50565178ns 888793 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50565348ns 888796 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50565803ns 888804 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50565974ns 888807 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50566258ns 888812 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50566542ns 888817 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50566826ns 888822 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50567281ns 888830 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50567451ns 888833 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50567735ns 888838 1a110850 fd5ff06f jal x0, -44 +50568019ns 888843 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50568304ns 888848 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50568701ns 888855 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50568872ns 888858 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50569327ns 888866 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50569497ns 888869 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50569781ns 888874 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50570065ns 888879 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50570350ns 888884 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50570804ns 888892 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50570975ns 888895 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50571259ns 888900 1a110850 fd5ff06f jal x0, -44 +50571543ns 888905 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50571827ns 888910 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50572225ns 888917 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50572396ns 888920 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50572850ns 888928 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50573021ns 888931 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50573305ns 888936 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50573589ns 888941 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50573873ns 888946 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50574328ns 888954 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50574498ns 888957 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50574783ns 888962 1a110850 fd5ff06f jal x0, -44 +50575067ns 888967 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50575351ns 888972 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50575749ns 888979 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50575919ns 888982 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50576374ns 888990 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50576544ns 888993 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50576828ns 888998 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50577113ns 889003 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50577397ns 889008 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50577851ns 889016 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50578022ns 889019 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50578306ns 889024 1a110850 fd5ff06f jal x0, -44 +50578590ns 889029 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50578874ns 889034 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50579272ns 889041 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50579443ns 889044 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50579897ns 889052 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50580068ns 889055 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50580352ns 889060 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50580636ns 889065 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50580920ns 889070 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50581375ns 889078 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50581546ns 889081 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50581830ns 889086 1a110850 fd5ff06f jal x0, -44 +50582114ns 889091 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50582398ns 889096 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50582796ns 889103 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50582966ns 889106 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50583421ns 889114 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50583591ns 889117 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50583876ns 889122 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50584160ns 889127 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50584444ns 889132 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50584899ns 889140 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50585069ns 889143 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50585353ns 889148 1a110850 fd5ff06f jal x0, -44 +50585637ns 889153 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50585922ns 889158 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50586319ns 889165 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50586490ns 889168 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50586945ns 889176 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50587115ns 889179 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50587399ns 889184 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50587683ns 889189 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50587968ns 889194 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50588422ns 889202 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50588593ns 889205 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50588877ns 889210 1a110850 fd5ff06f jal x0, -44 +50589161ns 889215 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50589445ns 889220 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50589843ns 889227 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50590013ns 889230 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50590468ns 889238 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50590639ns 889241 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50590923ns 889246 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50591207ns 889251 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50591491ns 889256 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50591946ns 889264 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50592116ns 889267 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50592400ns 889272 1a110850 fd5ff06f jal x0, -44 +50592685ns 889277 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50592969ns 889282 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50593367ns 889289 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50593537ns 889292 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50593992ns 889300 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50594162ns 889303 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50594446ns 889308 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50594731ns 889313 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50595015ns 889318 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50595469ns 889326 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50595640ns 889329 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50595924ns 889334 1a110850 fd5ff06f jal x0, -44 +50596208ns 889339 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50596492ns 889344 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50596890ns 889351 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50597061ns 889354 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50597515ns 889362 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50597686ns 889365 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50597970ns 889370 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50598254ns 889375 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50598538ns 889380 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50598993ns 889388 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50599163ns 889391 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50599448ns 889396 1a110850 fd5ff06f jal x0, -44 +50599732ns 889401 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50600016ns 889406 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50600414ns 889413 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50600584ns 889416 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50601039ns 889424 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50601209ns 889427 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50601494ns 889432 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50601778ns 889437 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50602062ns 889442 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50602517ns 889450 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50602687ns 889453 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50602971ns 889458 1a110850 fd5ff06f jal x0, -44 +50603255ns 889463 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50603539ns 889468 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50603937ns 889475 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50604108ns 889478 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50604562ns 889486 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50604733ns 889489 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50605017ns 889494 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50605301ns 889499 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50605585ns 889504 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50606040ns 889512 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50606211ns 889515 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50606495ns 889520 1a110850 fd5ff06f jal x0, -44 +50606779ns 889525 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50607063ns 889530 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50607461ns 889537 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50607631ns 889540 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50608086ns 889548 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50608257ns 889551 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50608541ns 889556 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50608825ns 889561 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50609109ns 889566 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50609564ns 889574 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50609734ns 889577 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50610018ns 889582 1a110850 fd5ff06f jal x0, -44 +50610303ns 889587 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50610587ns 889592 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50610984ns 889599 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50611155ns 889602 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50611610ns 889610 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50611780ns 889613 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50612064ns 889618 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50612348ns 889623 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50612633ns 889628 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50613087ns 889636 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50613258ns 889639 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50613542ns 889644 1a110850 fd5ff06f jal x0, -44 +50613826ns 889649 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50614110ns 889654 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50614508ns 889661 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50614679ns 889664 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50615133ns 889672 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50615304ns 889675 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50615588ns 889680 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50615872ns 889685 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50616156ns 889690 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50616611ns 889698 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50616781ns 889701 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50617066ns 889706 1a110850 fd5ff06f jal x0, -44 +50617350ns 889711 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50617634ns 889716 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50618032ns 889723 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50618202ns 889726 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50618657ns 889734 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50618827ns 889737 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50619111ns 889742 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50619396ns 889747 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50619680ns 889752 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50620134ns 889760 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50620305ns 889763 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50620589ns 889768 1a110850 fd5ff06f jal x0, -44 +50620873ns 889773 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50621157ns 889778 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50621555ns 889785 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50621726ns 889788 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50622180ns 889796 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50622351ns 889799 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50622635ns 889804 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50622919ns 889809 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50623203ns 889814 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50623658ns 889822 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50623829ns 889825 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50624113ns 889830 1a110850 fd5ff06f jal x0, -44 +50624397ns 889835 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50624681ns 889840 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50625079ns 889847 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50625249ns 889850 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50625704ns 889858 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50625874ns 889861 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50626159ns 889866 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50626443ns 889871 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50626727ns 889876 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50627182ns 889884 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50627352ns 889887 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50627636ns 889892 1a110850 fd5ff06f jal x0, -44 +50627920ns 889897 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50628205ns 889902 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50628602ns 889909 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50628773ns 889912 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50629228ns 889920 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50629398ns 889923 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50629682ns 889928 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50629966ns 889933 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50630251ns 889938 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50630705ns 889946 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50630876ns 889949 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50631160ns 889954 1a110850 fd5ff06f jal x0, -44 +50631444ns 889959 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50631728ns 889964 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50632126ns 889971 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50632296ns 889974 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50632751ns 889982 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50632922ns 889985 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50633206ns 889990 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50633490ns 889995 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50633774ns 890000 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50634229ns 890008 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50634399ns 890011 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50634683ns 890016 1a110850 fd5ff06f jal x0, -44 +50634968ns 890021 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50635252ns 890026 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50635650ns 890033 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50635820ns 890036 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50636275ns 890044 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50636445ns 890047 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50636729ns 890052 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50637014ns 890057 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50637298ns 890062 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50637752ns 890070 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50637923ns 890073 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50638207ns 890078 1a110850 fd5ff06f jal x0, -44 +50638491ns 890083 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50638775ns 890088 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50639173ns 890095 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50639344ns 890098 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50639798ns 890106 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50639969ns 890109 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50640253ns 890114 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50640537ns 890119 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50640821ns 890124 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50641276ns 890132 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50641446ns 890135 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50641731ns 890140 1a110850 fd5ff06f jal x0, -44 +50642015ns 890145 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50642299ns 890150 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50642697ns 890157 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50642867ns 890160 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50643322ns 890168 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50643492ns 890171 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50643777ns 890176 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50644061ns 890181 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50644345ns 890186 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50644800ns 890194 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50644970ns 890197 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50645254ns 890202 1a110850 fd5ff06f jal x0, -44 +50645538ns 890207 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50645823ns 890212 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50646220ns 890219 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50646391ns 890222 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50646845ns 890230 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50647016ns 890233 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50647300ns 890238 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50647584ns 890243 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50647868ns 890248 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50648323ns 890256 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50648494ns 890259 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50648778ns 890264 1a110850 fd5ff06f jal x0, -44 +50649062ns 890269 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50649346ns 890274 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50649744ns 890281 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50649914ns 890284 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50650369ns 890292 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50650540ns 890295 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50650824ns 890300 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50651108ns 890305 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50651392ns 890310 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50651847ns 890318 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50652017ns 890321 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50652301ns 890326 1a110850 fd5ff06f jal x0, -44 +50652586ns 890331 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50652870ns 890336 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50653267ns 890343 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50653438ns 890346 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50653893ns 890354 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50654063ns 890357 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50654347ns 890362 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50654631ns 890367 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50654916ns 890372 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50655370ns 890380 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50655541ns 890383 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50655825ns 890388 1a110850 fd5ff06f jal x0, -44 +50656109ns 890393 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50656393ns 890398 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50656791ns 890405 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50656962ns 890408 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50657416ns 890416 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50657587ns 890419 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50657871ns 890424 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50658155ns 890429 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50658439ns 890434 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50658894ns 890442 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50659064ns 890445 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50659349ns 890450 1a110850 fd5ff06f jal x0, -44 +50659633ns 890455 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50659917ns 890460 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50660315ns 890467 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50660485ns 890470 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50660940ns 890478 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50661110ns 890481 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50661394ns 890486 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50661679ns 890491 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50661963ns 890496 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50662417ns 890504 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50662588ns 890507 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50662872ns 890512 1a110850 fd5ff06f jal x0, -44 +50663156ns 890517 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50663440ns 890522 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50663838ns 890529 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50664009ns 890532 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50664463ns 890540 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50664634ns 890543 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50664918ns 890548 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50665202ns 890553 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50665486ns 890558 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50665941ns 890566 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50666112ns 890569 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50666396ns 890574 1a110850 fd5ff06f jal x0, -44 +50666680ns 890579 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50666964ns 890584 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50667362ns 890591 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50667532ns 890594 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50667987ns 890602 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50668157ns 890605 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50668442ns 890610 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50668726ns 890615 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50669010ns 890620 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50669465ns 890628 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50669635ns 890631 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50669919ns 890636 1a110850 fd5ff06f jal x0, -44 +50670203ns 890641 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50670488ns 890646 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50670885ns 890653 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50671056ns 890656 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50671511ns 890664 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50671681ns 890667 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50671965ns 890672 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50672249ns 890677 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50672534ns 890682 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50672988ns 890690 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50673159ns 890693 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50673443ns 890698 1a110850 fd5ff06f jal x0, -44 +50673727ns 890703 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50674011ns 890708 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50674409ns 890715 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50674579ns 890718 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50675034ns 890726 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50675205ns 890729 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50675489ns 890734 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50675773ns 890739 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50676057ns 890744 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50676512ns 890752 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50676682ns 890755 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50676966ns 890760 1a110850 fd5ff06f jal x0, -44 +50677251ns 890765 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50677535ns 890770 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50677933ns 890777 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50678103ns 890780 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50678558ns 890788 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50678728ns 890791 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50679012ns 890796 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50679297ns 890801 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50679581ns 890806 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50680035ns 890814 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50680206ns 890817 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50680490ns 890822 1a110850 fd5ff06f jal x0, -44 +50680774ns 890827 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50681058ns 890832 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50681456ns 890839 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50681627ns 890842 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50682081ns 890850 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50682252ns 890853 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50682536ns 890858 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50682820ns 890863 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50683104ns 890868 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50683559ns 890876 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50683729ns 890879 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50684014ns 890884 1a110850 fd5ff06f jal x0, -44 +50684298ns 890889 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50684582ns 890894 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50684980ns 890901 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50685150ns 890904 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50685605ns 890912 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50685775ns 890915 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50686060ns 890920 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50686344ns 890925 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50686628ns 890930 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50687083ns 890938 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50687253ns 890941 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50687537ns 890946 1a110850 fd5ff06f jal x0, -44 +50687821ns 890951 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50688106ns 890956 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50688503ns 890963 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50688674ns 890966 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50689128ns 890974 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50689299ns 890977 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50689583ns 890982 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50689867ns 890987 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50690151ns 890992 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50690606ns 891000 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50690777ns 891003 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50691061ns 891008 1a110850 fd5ff06f jal x0, -44 +50691345ns 891013 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50691629ns 891018 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50692027ns 891025 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50692197ns 891028 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50692652ns 891036 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50692823ns 891039 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50693107ns 891044 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50693391ns 891049 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50693675ns 891054 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50694130ns 891062 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50694300ns 891065 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50694584ns 891070 1a110850 fd5ff06f jal x0, -44 +50694869ns 891075 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50695153ns 891080 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50695551ns 891087 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50695721ns 891090 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50696176ns 891098 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50696346ns 891101 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50696630ns 891106 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50696914ns 891111 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50697199ns 891116 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50697653ns 891124 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50697824ns 891127 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50698108ns 891132 1a110850 fd5ff06f jal x0, -44 +50698392ns 891137 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50698676ns 891142 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50699074ns 891149 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50699245ns 891152 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50699699ns 891160 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50699870ns 891163 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50700154ns 891168 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50700438ns 891173 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50700722ns 891178 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50701177ns 891186 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50701347ns 891189 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50701632ns 891194 1a110850 fd5ff06f jal x0, -44 +50701916ns 891199 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50702200ns 891204 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50702598ns 891211 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50702768ns 891214 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50703223ns 891222 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50703393ns 891225 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50703677ns 891230 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50703962ns 891235 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50704246ns 891240 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50704700ns 891248 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50704871ns 891251 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50705155ns 891256 1a110850 fd5ff06f jal x0, -44 +50705439ns 891261 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50705723ns 891266 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50706121ns 891273 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50706292ns 891276 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50706746ns 891284 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50706917ns 891287 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50707201ns 891292 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50707485ns 891297 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50707769ns 891302 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50708224ns 891310 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50708395ns 891313 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50708679ns 891318 1a110850 fd5ff06f jal x0, -44 +50708963ns 891323 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50709247ns 891328 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50709645ns 891335 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50709815ns 891338 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50710270ns 891346 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50710440ns 891349 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50710725ns 891354 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50711009ns 891359 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50711293ns 891364 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50711748ns 891372 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50711918ns 891375 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50712202ns 891380 1a110850 fd5ff06f jal x0, -44 +50712486ns 891385 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50712771ns 891390 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50713168ns 891397 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50713339ns 891400 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50713794ns 891408 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50713964ns 891411 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50714248ns 891416 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50714532ns 891421 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50714817ns 891426 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50715271ns 891434 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50715442ns 891437 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50715726ns 891442 1a110850 fd5ff06f jal x0, -44 +50716010ns 891447 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50716294ns 891452 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50716692ns 891459 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50716863ns 891462 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50717317ns 891470 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50717488ns 891473 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50717772ns 891478 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50718056ns 891483 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50718340ns 891488 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50718795ns 891496 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50718965ns 891499 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50719249ns 891504 1a110850 fd5ff06f jal x0, -44 +50719534ns 891509 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50719818ns 891514 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50720216ns 891521 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50720386ns 891524 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50720841ns 891532 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50721011ns 891535 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50721295ns 891540 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50721580ns 891545 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50721864ns 891550 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50722318ns 891558 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50722489ns 891561 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50722773ns 891566 1a110850 fd5ff06f jal x0, -44 +50723057ns 891571 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50723341ns 891576 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50723739ns 891583 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50723910ns 891586 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50724364ns 891594 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50724535ns 891597 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50724819ns 891602 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50725103ns 891607 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50725387ns 891612 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50725842ns 891620 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50726012ns 891623 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50726297ns 891628 1a110850 fd5ff06f jal x0, -44 +50726581ns 891633 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50726865ns 891638 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50727263ns 891645 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50727433ns 891648 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50727888ns 891656 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50728058ns 891659 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50728343ns 891664 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50728627ns 891669 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50728911ns 891674 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50729366ns 891682 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50729536ns 891685 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50729820ns 891690 1a110850 fd5ff06f jal x0, -44 +50730104ns 891695 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50730389ns 891700 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50730786ns 891707 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50730957ns 891710 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50731411ns 891718 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50731582ns 891721 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50731866ns 891726 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50732150ns 891731 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50732434ns 891736 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50732889ns 891744 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50733060ns 891747 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50733344ns 891752 1a110850 fd5ff06f jal x0, -44 +50733628ns 891757 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50733912ns 891762 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50734310ns 891769 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50734480ns 891772 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50734935ns 891780 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50735106ns 891783 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50735390ns 891788 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50735674ns 891793 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50735958ns 891798 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50736413ns 891806 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50736583ns 891809 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50736867ns 891814 1a110850 fd5ff06f jal x0, -44 +50737152ns 891819 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50737436ns 891824 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50737834ns 891831 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50738004ns 891834 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50738459ns 891842 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50738629ns 891845 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50738913ns 891850 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50739197ns 891855 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50739482ns 891860 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50739936ns 891868 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50740107ns 891871 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50740391ns 891876 1a110850 fd5ff06f jal x0, -44 +50740675ns 891881 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50740959ns 891886 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50741357ns 891893 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50741528ns 891896 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50741982ns 891904 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50742153ns 891907 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50742437ns 891912 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50742721ns 891917 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50743005ns 891922 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50743460ns 891930 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50743630ns 891933 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50743915ns 891938 1a110850 fd5ff06f jal x0, -44 +50744199ns 891943 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50744483ns 891948 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50744881ns 891955 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50745051ns 891958 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50745506ns 891966 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50745676ns 891969 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50745960ns 891974 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50746245ns 891979 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50746529ns 891984 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50746983ns 891992 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50747154ns 891995 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50747438ns 892000 1a110850 fd5ff06f jal x0, -44 +50747722ns 892005 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50748006ns 892010 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50748404ns 892017 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50748575ns 892020 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50749029ns 892028 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50749200ns 892031 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50749484ns 892036 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50749768ns 892041 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50750052ns 892046 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50750507ns 892054 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50750678ns 892057 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50750962ns 892062 1a110850 fd5ff06f jal x0, -44 +50751246ns 892067 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50751530ns 892072 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50751928ns 892079 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50752098ns 892082 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50752553ns 892090 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50752723ns 892093 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50753008ns 892098 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50753292ns 892103 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50753576ns 892108 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50754031ns 892116 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50754201ns 892119 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50754485ns 892124 1a110850 fd5ff06f jal x0, -44 +50754769ns 892129 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50755054ns 892134 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50755451ns 892141 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50755622ns 892144 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50756077ns 892152 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50756247ns 892155 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50756531ns 892160 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50756815ns 892165 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50757100ns 892170 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50757554ns 892178 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50757725ns 892181 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50758009ns 892186 1a110850 fd5ff06f jal x0, -44 +50758293ns 892191 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50758577ns 892196 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50758975ns 892203 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50759146ns 892206 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50759600ns 892214 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50759771ns 892217 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50760055ns 892222 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50760339ns 892227 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50760623ns 892232 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50761078ns 892240 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50761248ns 892243 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50761532ns 892248 1a110850 fd5ff06f jal x0, -44 +50761817ns 892253 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50762101ns 892258 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50762499ns 892265 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50762669ns 892268 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50763124ns 892276 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50763294ns 892279 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50763578ns 892284 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50763863ns 892289 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50764147ns 892294 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50764601ns 892302 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50764772ns 892305 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50765056ns 892310 1a110850 fd5ff06f jal x0, -44 +50765340ns 892315 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50765624ns 892320 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50766022ns 892327 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50766193ns 892330 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50766647ns 892338 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50766818ns 892341 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50767102ns 892346 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50767386ns 892351 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50767670ns 892356 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50768125ns 892364 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50768295ns 892367 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50768580ns 892372 1a110850 fd5ff06f jal x0, -44 +50768864ns 892377 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50769148ns 892382 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50769546ns 892389 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50769716ns 892392 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50770171ns 892400 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50770341ns 892403 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50770626ns 892408 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50770910ns 892413 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50771194ns 892418 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50771649ns 892426 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50771819ns 892429 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50772103ns 892434 1a110850 fd5ff06f jal x0, -44 +50772387ns 892439 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50772672ns 892444 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50773069ns 892451 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50773240ns 892454 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50773695ns 892462 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50773865ns 892465 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50774149ns 892470 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50774433ns 892475 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50774717ns 892480 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50775172ns 892488 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50775343ns 892491 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50775627ns 892496 1a110850 fd5ff06f jal x0, -44 +50775911ns 892501 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50776195ns 892506 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50776593ns 892513 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50776763ns 892516 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50777218ns 892524 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50777389ns 892527 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50777673ns 892532 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50777957ns 892537 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50778241ns 892542 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50778696ns 892550 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50778866ns 892553 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50779150ns 892558 1a110850 fd5ff06f jal x0, -44 +50779435ns 892563 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50779719ns 892568 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50780117ns 892575 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50780287ns 892578 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50780742ns 892586 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50780912ns 892589 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50781196ns 892594 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50781480ns 892599 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50781765ns 892604 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50782219ns 892612 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50782390ns 892615 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50782674ns 892620 1a110850 fd5ff06f jal x0, -44 +50782958ns 892625 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50783242ns 892630 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50783640ns 892637 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50783811ns 892640 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50784265ns 892648 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50784436ns 892651 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50784720ns 892656 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50785004ns 892661 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50785288ns 892666 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50785743ns 892674 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50785913ns 892677 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50786198ns 892682 1a110850 fd5ff06f jal x0, -44 +50786482ns 892687 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50786766ns 892692 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50787164ns 892699 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50787334ns 892702 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50787789ns 892710 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50787959ns 892713 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50788243ns 892718 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50788528ns 892723 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50788812ns 892728 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50789266ns 892736 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50789437ns 892739 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50789721ns 892744 1a110850 fd5ff06f jal x0, -44 +50790005ns 892749 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50790289ns 892754 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50790687ns 892761 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50790858ns 892764 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50791312ns 892772 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50791483ns 892775 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50791767ns 892780 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50792051ns 892785 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50792335ns 892790 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50792790ns 892798 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50792961ns 892801 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50793245ns 892806 1a110850 fd5ff06f jal x0, -44 +50793529ns 892811 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50793813ns 892816 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50794211ns 892823 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50794381ns 892826 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50794836ns 892834 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50795007ns 892837 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50795291ns 892842 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50795575ns 892847 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50795859ns 892852 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50796314ns 892860 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50796484ns 892863 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50796768ns 892868 1a110850 fd5ff06f jal x0, -44 +50797052ns 892873 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50797337ns 892878 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50797734ns 892885 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50797905ns 892888 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50798360ns 892896 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50798530ns 892899 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50798814ns 892904 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50799098ns 892909 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50799383ns 892914 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50799837ns 892922 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50800008ns 892925 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50800292ns 892930 1a110850 fd5ff06f jal x0, -44 +50800576ns 892935 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50800860ns 892940 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50801258ns 892947 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50801429ns 892950 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50801883ns 892958 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50802054ns 892961 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50802338ns 892966 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50802622ns 892971 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50802906ns 892976 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50803361ns 892984 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50803531ns 892987 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50803815ns 892992 1a110850 fd5ff06f jal x0, -44 +50804100ns 892997 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50804384ns 893002 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50804782ns 893009 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50804952ns 893012 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50805407ns 893020 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50805577ns 893023 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50805861ns 893028 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50806146ns 893033 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50806430ns 893038 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50806884ns 893046 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50807055ns 893049 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50807339ns 893054 1a110850 fd5ff06f jal x0, -44 +50807623ns 893059 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50807907ns 893064 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50808305ns 893071 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50808476ns 893074 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50808930ns 893082 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50809101ns 893085 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50809385ns 893090 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50809669ns 893095 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50809953ns 893100 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50810408ns 893108 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50810578ns 893111 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50810863ns 893116 1a110850 fd5ff06f jal x0, -44 +50811147ns 893121 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50811431ns 893126 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50811829ns 893133 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50811999ns 893136 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50812454ns 893144 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50812624ns 893147 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50812909ns 893152 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50813193ns 893157 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50813477ns 893162 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50813932ns 893170 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50814102ns 893173 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50814386ns 893178 1a110850 fd5ff06f jal x0, -44 +50814670ns 893183 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50814955ns 893188 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50815352ns 893195 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50815523ns 893198 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50815978ns 893206 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50816148ns 893209 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50816432ns 893214 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50816716ns 893219 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50817000ns 893224 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50817455ns 893232 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50817626ns 893235 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50817910ns 893240 1a110850 fd5ff06f jal x0, -44 +50818194ns 893245 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50818478ns 893250 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50818876ns 893257 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50819046ns 893260 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50819501ns 893268 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50819672ns 893271 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50819956ns 893276 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50820240ns 893281 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50820524ns 893286 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50820979ns 893294 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50821149ns 893297 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50821433ns 893302 1a110850 fd5ff06f jal x0, -44 +50821718ns 893307 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50822002ns 893312 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50822400ns 893319 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50822570ns 893322 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50823025ns 893330 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50823195ns 893333 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50823479ns 893338 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50823763ns 893343 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50824048ns 893348 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50824502ns 893356 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50824673ns 893359 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50824957ns 893364 1a110850 fd5ff06f jal x0, -44 +50825241ns 893369 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50825525ns 893374 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50825923ns 893381 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50826094ns 893384 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50826548ns 893392 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50826719ns 893395 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50827003ns 893400 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50827287ns 893405 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50827571ns 893410 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50828026ns 893418 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50828196ns 893421 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50828481ns 893426 1a110850 fd5ff06f jal x0, -44 +50828765ns 893431 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50829049ns 893436 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50829447ns 893443 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50829617ns 893446 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50830072ns 893454 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50830242ns 893457 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50830527ns 893462 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50830811ns 893467 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50831095ns 893472 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50831549ns 893480 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50831720ns 893483 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50832004ns 893488 1a110850 fd5ff06f jal x0, -44 +50832288ns 893493 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50832572ns 893498 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50832970ns 893505 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50833141ns 893508 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50833595ns 893516 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50833766ns 893519 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50834050ns 893524 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50834334ns 893529 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50834618ns 893534 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50835073ns 893542 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50835244ns 893545 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50835528ns 893550 1a110850 fd5ff06f jal x0, -44 +50835812ns 893555 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50836096ns 893560 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50836494ns 893567 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50836664ns 893570 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50837119ns 893578 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50837290ns 893581 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50837574ns 893586 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50837858ns 893591 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50838142ns 893596 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50838597ns 893604 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50838767ns 893607 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50839051ns 893612 1a110850 fd5ff06f jal x0, -44 +50839335ns 893617 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50839620ns 893622 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50840017ns 893629 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50840188ns 893632 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50840643ns 893640 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50840813ns 893643 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50841097ns 893648 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50841381ns 893653 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50841666ns 893658 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50842120ns 893666 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50842291ns 893669 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50842575ns 893674 1a110850 fd5ff06f jal x0, -44 +50842859ns 893679 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50843143ns 893684 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50843541ns 893691 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50843712ns 893694 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50844166ns 893702 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50844337ns 893705 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50844621ns 893710 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50844905ns 893715 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50845189ns 893720 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50845644ns 893728 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50845814ns 893731 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50846098ns 893736 1a110850 fd5ff06f jal x0, -44 +50846383ns 893741 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50846667ns 893746 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50847065ns 893753 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50847235ns 893756 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50847690ns 893764 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50847860ns 893767 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50848144ns 893772 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50848429ns 893777 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50848713ns 893782 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50849167ns 893790 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50849338ns 893793 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50849622ns 893798 1a110850 fd5ff06f jal x0, -44 +50849906ns 893803 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50850190ns 893808 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50850588ns 893815 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50850759ns 893818 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50851213ns 893826 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50851384ns 893829 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50851668ns 893834 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50851952ns 893839 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50852236ns 893844 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50852691ns 893852 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50852861ns 893855 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50853146ns 893860 1a110850 fd5ff06f jal x0, -44 +50853430ns 893865 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50853714ns 893870 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50854112ns 893877 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50854282ns 893880 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50854737ns 893888 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50854907ns 893891 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50855192ns 893896 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50855476ns 893901 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50855760ns 893906 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50856215ns 893914 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50856385ns 893917 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50856669ns 893922 1a110850 fd5ff06f jal x0, -44 +50856953ns 893927 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50857238ns 893932 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50857635ns 893939 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50857806ns 893942 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50858261ns 893950 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50858431ns 893953 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50858715ns 893958 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50858999ns 893963 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50859283ns 893968 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50859738ns 893976 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50859909ns 893979 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50860193ns 893984 1a110850 fd5ff06f jal x0, -44 +50860477ns 893989 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50860761ns 893994 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50861159ns 894001 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50861329ns 894004 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50861784ns 894012 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50861955ns 894015 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50862239ns 894020 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50862523ns 894025 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50862807ns 894030 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50863262ns 894038 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50863432ns 894041 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50863716ns 894046 1a110850 fd5ff06f jal x0, -44 +50864001ns 894051 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50864285ns 894056 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50864683ns 894063 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50864853ns 894066 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50865308ns 894074 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50865478ns 894077 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50865762ns 894082 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50866047ns 894087 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50866331ns 894092 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50866785ns 894100 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50866956ns 894103 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50867240ns 894108 1a110850 fd5ff06f jal x0, -44 +50867524ns 894113 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50867808ns 894118 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50868206ns 894125 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50868377ns 894128 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50868831ns 894136 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50869002ns 894139 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50869286ns 894144 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50869570ns 894149 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50869854ns 894154 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50870309ns 894162 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50870479ns 894165 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50870764ns 894170 1a110850 fd5ff06f jal x0, -44 +50871048ns 894175 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50871332ns 894180 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50871730ns 894187 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50871900ns 894190 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50872355ns 894198 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50872525ns 894201 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50872810ns 894206 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50873094ns 894211 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50873378ns 894216 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50873832ns 894224 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50874003ns 894227 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50874287ns 894232 1a110850 fd5ff06f jal x0, -44 +50874571ns 894237 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50874855ns 894242 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50875253ns 894249 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50875424ns 894252 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50875878ns 894260 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50876049ns 894263 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50876333ns 894268 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50876617ns 894273 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50876901ns 894278 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50877356ns 894286 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50877527ns 894289 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50877811ns 894294 1a110850 fd5ff06f jal x0, -44 +50878095ns 894299 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50878379ns 894304 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50878777ns 894311 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50878947ns 894314 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50879402ns 894322 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50879573ns 894325 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50879857ns 894330 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50880141ns 894335 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50880425ns 894340 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50880880ns 894348 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50881050ns 894351 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50881334ns 894356 1a110850 fd5ff06f jal x0, -44 +50881618ns 894361 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50881903ns 894366 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50882300ns 894373 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50882471ns 894376 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50882926ns 894384 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50883096ns 894387 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50883380ns 894392 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50883664ns 894397 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50883949ns 894402 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50884403ns 894410 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50884574ns 894413 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50884858ns 894418 1a110850 fd5ff06f jal x0, -44 +50885142ns 894423 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50885426ns 894428 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50885824ns 894435 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50885995ns 894438 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50886449ns 894446 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50886620ns 894449 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50886904ns 894454 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50887188ns 894459 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50887472ns 894464 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50887927ns 894472 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50888097ns 894475 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50888381ns 894480 1a110850 fd5ff06f jal x0, -44 +50888666ns 894485 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50888950ns 894490 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50889348ns 894497 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50889518ns 894500 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50889973ns 894508 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50890143ns 894511 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50890427ns 894516 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50890712ns 894521 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50890996ns 894526 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50891450ns 894534 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50891621ns 894537 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50891905ns 894542 1a110850 fd5ff06f jal x0, -44 +50892189ns 894547 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50892473ns 894552 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50892871ns 894559 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50893042ns 894562 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50893496ns 894570 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50893667ns 894573 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50893951ns 894578 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50894235ns 894583 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50894519ns 894588 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50894974ns 894596 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50895144ns 894599 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50895429ns 894604 1a110850 fd5ff06f jal x0, -44 +50895713ns 894609 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50895997ns 894614 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50896395ns 894621 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50896565ns 894624 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50897020ns 894632 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50897190ns 894635 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50897475ns 894640 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50897759ns 894645 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50898043ns 894650 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50898498ns 894658 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50898668ns 894661 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50898952ns 894666 1a110850 fd5ff06f jal x0, -44 +50899236ns 894671 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50899521ns 894676 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50899918ns 894683 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50900089ns 894686 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50900544ns 894694 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50900714ns 894697 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50900998ns 894702 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50901282ns 894707 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50901567ns 894712 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50902021ns 894720 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50902192ns 894723 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50902476ns 894728 1a110850 fd5ff06f jal x0, -44 +50902760ns 894733 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50903044ns 894738 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50903442ns 894745 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50903612ns 894748 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50904067ns 894756 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50904238ns 894759 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50904522ns 894764 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50904806ns 894769 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50905090ns 894774 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50905545ns 894782 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50905715ns 894785 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50905999ns 894790 1a110850 fd5ff06f jal x0, -44 +50906284ns 894795 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50906568ns 894800 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50906966ns 894807 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50907136ns 894810 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50907591ns 894818 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50907761ns 894821 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50908045ns 894826 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50908330ns 894831 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50908614ns 894836 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50909068ns 894844 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50909239ns 894847 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50909523ns 894852 1a110850 fd5ff06f jal x0, -44 +50909807ns 894857 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50910091ns 894862 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50910489ns 894869 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50910660ns 894872 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50911114ns 894880 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50911285ns 894883 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50911569ns 894888 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50911853ns 894893 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50912137ns 894898 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50912592ns 894906 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50912762ns 894909 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50913047ns 894914 1a110850 fd5ff06f jal x0, -44 +50913331ns 894919 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50913615ns 894924 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50914013ns 894931 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50914183ns 894934 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50914638ns 894942 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50914808ns 894945 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50915093ns 894950 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50915377ns 894955 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50915661ns 894960 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50916115ns 894968 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50916286ns 894971 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50916570ns 894976 1a110850 fd5ff06f jal x0, -44 +50916854ns 894981 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50917138ns 894986 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50917536ns 894993 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50917707ns 894996 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50918161ns 895004 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50918332ns 895007 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50918616ns 895012 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50918900ns 895017 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50919184ns 895022 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50919639ns 895030 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50919810ns 895033 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50920094ns 895038 1a110850 fd5ff06f jal x0, -44 +50920378ns 895043 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50920662ns 895048 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50921060ns 895055 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50921230ns 895058 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50921685ns 895066 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50921856ns 895069 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50922140ns 895074 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50922424ns 895079 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50922708ns 895084 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50923163ns 895092 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50923333ns 895095 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50923617ns 895100 1a110850 fd5ff06f jal x0, -44 +50923901ns 895105 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50924186ns 895110 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50924583ns 895117 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50924754ns 895120 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50925209ns 895128 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50925379ns 895131 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50925663ns 895136 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50925947ns 895141 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50926232ns 895146 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50926686ns 895154 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50926857ns 895157 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50927141ns 895162 1a110850 fd5ff06f jal x0, -44 +50927425ns 895167 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50927709ns 895172 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50928107ns 895179 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50928278ns 895182 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50928732ns 895190 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50928903ns 895193 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50929187ns 895198 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50929471ns 895203 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50929755ns 895208 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50930210ns 895216 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50930380ns 895219 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50930664ns 895224 1a110850 fd5ff06f jal x0, -44 +50930949ns 895229 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50931233ns 895234 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50931631ns 895241 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50931801ns 895244 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50932256ns 895252 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50932426ns 895255 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50932710ns 895260 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50932995ns 895265 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50933279ns 895270 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50933733ns 895278 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50933904ns 895281 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50934188ns 895286 1a110850 fd5ff06f jal x0, -44 +50934472ns 895291 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50934756ns 895296 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50935154ns 895303 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50935325ns 895306 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50935779ns 895314 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50935950ns 895317 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50936234ns 895322 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50936518ns 895327 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50936802ns 895332 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50937257ns 895340 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50937427ns 895343 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50937712ns 895348 1a110850 fd5ff06f jal x0, -44 +50937996ns 895353 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50938280ns 895358 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50938678ns 895365 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50938848ns 895368 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50939303ns 895376 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50939473ns 895379 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50939758ns 895384 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50940042ns 895389 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50940326ns 895394 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50940781ns 895402 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50940951ns 895405 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50941235ns 895410 1a110850 fd5ff06f jal x0, -44 +50941519ns 895415 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50941804ns 895420 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50942201ns 895427 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50942372ns 895430 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50942827ns 895438 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50942997ns 895441 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50943281ns 895446 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50943565ns 895451 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50943850ns 895456 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50944304ns 895464 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50944475ns 895467 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50944759ns 895472 1a110850 fd5ff06f jal x0, -44 +50945043ns 895477 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50945327ns 895482 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50945725ns 895489 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50945895ns 895492 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50946350ns 895500 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50946521ns 895503 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50946805ns 895508 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50947089ns 895513 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50947373ns 895518 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50947828ns 895526 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50947998ns 895529 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50948282ns 895534 1a110850 fd5ff06f jal x0, -44 +50948567ns 895539 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50948851ns 895544 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50949249ns 895551 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50949419ns 895554 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50949874ns 895562 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50950044ns 895565 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50950328ns 895570 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50950613ns 895575 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50950897ns 895580 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50951351ns 895588 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50951522ns 895591 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50951806ns 895596 1a110850 fd5ff06f jal x0, -44 +50952090ns 895601 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50952374ns 895606 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50952772ns 895613 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50952943ns 895616 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50953397ns 895624 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50953568ns 895627 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50953852ns 895632 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50954136ns 895637 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50954420ns 895642 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50954875ns 895650 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50955045ns 895653 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50955330ns 895658 1a110850 fd5ff06f jal x0, -44 +50955614ns 895663 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50955898ns 895668 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50956296ns 895675 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50956466ns 895678 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50956921ns 895686 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50957091ns 895689 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50957376ns 895694 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50957660ns 895699 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50957944ns 895704 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50958399ns 895712 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50958569ns 895715 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50958853ns 895720 1a110850 fd5ff06f jal x0, -44 +50959137ns 895725 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50959421ns 895730 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50959819ns 895737 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50959990ns 895740 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50960444ns 895748 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50960615ns 895751 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50960899ns 895756 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50961183ns 895761 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50961467ns 895766 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50961922ns 895774 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50962093ns 895777 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50962377ns 895782 1a110850 fd5ff06f jal x0, -44 +50962661ns 895787 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50962945ns 895792 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50963343ns 895799 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50963513ns 895802 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50963968ns 895810 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50964139ns 895813 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50964423ns 895818 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50964707ns 895823 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50964991ns 895828 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50965446ns 895836 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50965616ns 895839 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50965900ns 895844 1a110850 fd5ff06f jal x0, -44 +50966184ns 895849 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50966469ns 895854 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50966866ns 895861 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50967037ns 895864 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50967492ns 895872 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50967662ns 895875 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50967946ns 895880 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50968230ns 895885 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50968515ns 895890 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50968969ns 895898 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50969140ns 895901 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50969424ns 895906 1a110850 fd5ff06f jal x0, -44 +50969708ns 895911 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50969992ns 895916 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50970390ns 895923 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50970561ns 895926 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50971015ns 895934 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50971186ns 895937 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50971470ns 895942 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50971754ns 895947 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50972038ns 895952 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50972493ns 895960 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50972663ns 895963 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50972947ns 895968 1a110850 fd5ff06f jal x0, -44 +50973232ns 895973 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50973516ns 895978 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50973914ns 895985 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50974084ns 895988 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50974539ns 895996 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50974709ns 895999 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50974993ns 896004 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50975278ns 896009 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50975562ns 896014 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50976016ns 896022 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50976187ns 896025 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50976471ns 896030 1a110850 fd5ff06f jal x0, -44 +50976755ns 896035 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50977039ns 896040 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50977437ns 896047 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50977608ns 896050 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50978062ns 896058 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50978233ns 896061 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50978517ns 896066 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50978801ns 896071 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50979085ns 896076 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50979540ns 896084 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50979711ns 896087 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50979995ns 896092 1a110850 fd5ff06f jal x0, -44 +50980279ns 896097 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50980563ns 896102 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50980961ns 896109 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50981131ns 896112 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50981586ns 896120 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50981756ns 896123 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50982041ns 896128 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50982325ns 896133 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50982609ns 896138 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50983064ns 896146 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50983234ns 896149 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50983518ns 896154 1a110850 fd5ff06f jal x0, -44 +50983802ns 896159 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50984087ns 896164 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50984484ns 896171 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50984655ns 896174 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50985110ns 896182 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50985280ns 896185 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50985564ns 896190 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50985848ns 896195 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50986133ns 896200 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50986587ns 896208 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50986758ns 896211 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50987042ns 896216 1a110850 fd5ff06f jal x0, -44 +50987326ns 896221 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50987610ns 896226 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50988008ns 896233 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50988178ns 896236 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50988633ns 896244 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50988804ns 896247 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50989088ns 896252 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50989372ns 896257 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50989656ns 896262 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50990111ns 896270 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50990281ns 896273 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50990565ns 896278 1a110850 fd5ff06f jal x0, -44 +50990850ns 896283 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50991134ns 896288 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50991532ns 896295 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50991702ns 896298 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50992157ns 896306 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50992327ns 896309 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50992611ns 896314 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50992896ns 896319 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50993180ns 896324 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50993634ns 896332 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50993805ns 896335 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50994089ns 896340 1a110850 fd5ff06f jal x0, -44 +50994373ns 896345 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50994657ns 896350 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50995055ns 896357 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50995226ns 896360 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50995680ns 896368 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50995851ns 896371 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50996135ns 896376 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50996419ns 896381 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50996703ns 896386 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50997158ns 896394 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +50997328ns 896397 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +50997613ns 896402 1a110850 fd5ff06f jal x0, -44 +50997897ns 896407 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50998181ns 896412 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +50998579ns 896419 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +50998749ns 896422 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +50999204ns 896430 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +50999374ns 896433 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +50999659ns 896438 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +50999943ns 896443 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51000227ns 896448 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51000682ns 896456 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51000852ns 896459 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51001136ns 896464 1a110850 fd5ff06f jal x0, -44 +51001420ns 896469 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51001704ns 896474 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51002102ns 896481 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51002273ns 896484 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51002727ns 896492 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51002898ns 896495 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51003182ns 896500 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51003466ns 896505 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51003750ns 896510 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51004205ns 896518 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51004376ns 896521 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51004660ns 896526 1a110850 fd5ff06f jal x0, -44 +51004944ns 896531 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51005228ns 896536 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51005626ns 896543 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51005796ns 896546 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51006251ns 896554 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51006422ns 896557 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51006706ns 896562 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51006990ns 896567 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51007274ns 896572 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51007729ns 896580 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51007899ns 896583 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51008183ns 896588 1a110850 fd5ff06f jal x0, -44 +51008467ns 896593 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51008752ns 896598 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51009149ns 896605 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51009320ns 896608 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51009775ns 896616 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51009945ns 896619 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51010229ns 896624 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51010513ns 896629 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51010798ns 896634 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51011252ns 896642 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51011423ns 896645 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51011707ns 896650 1a110850 fd5ff06f jal x0, -44 +51011991ns 896655 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51012275ns 896660 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51012673ns 896667 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51012844ns 896670 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51013298ns 896678 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51013469ns 896681 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51013753ns 896686 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51014037ns 896691 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51014321ns 896696 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51014776ns 896704 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51014946ns 896707 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51015231ns 896712 1a110850 fd5ff06f jal x0, -44 +51015515ns 896717 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51015799ns 896722 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51016197ns 896729 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51016367ns 896732 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51016822ns 896740 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51016992ns 896743 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51017276ns 896748 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51017561ns 896753 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51017845ns 896758 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51018299ns 896766 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51018470ns 896769 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51018754ns 896774 1a110850 fd5ff06f jal x0, -44 +51019038ns 896779 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51019322ns 896784 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51019720ns 896791 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51019891ns 896794 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51020345ns 896802 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51020516ns 896805 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51020800ns 896810 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51021084ns 896815 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51021368ns 896820 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51021823ns 896828 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51021994ns 896831 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51022278ns 896836 1a110850 fd5ff06f jal x0, -44 +51022562ns 896841 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51022846ns 896846 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51023244ns 896853 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51023414ns 896856 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51023869ns 896864 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51024039ns 896867 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51024324ns 896872 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51024608ns 896877 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51024892ns 896882 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51025347ns 896890 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51025517ns 896893 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51025801ns 896898 1a110850 fd5ff06f jal x0, -44 +51026085ns 896903 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51026370ns 896908 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51026767ns 896915 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51026938ns 896918 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51027393ns 896926 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51027563ns 896929 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51027847ns 896934 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51028131ns 896939 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51028416ns 896944 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51028870ns 896952 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51029041ns 896955 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51029325ns 896960 1a110850 fd5ff06f jal x0, -44 +51029609ns 896965 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51029893ns 896970 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51030291ns 896977 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51030461ns 896980 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51030916ns 896988 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51031087ns 896991 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51031371ns 896996 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51031655ns 897001 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51031939ns 897006 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51032394ns 897014 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51032564ns 897017 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51032848ns 897022 1a110850 fd5ff06f jal x0, -44 +51033133ns 897027 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51033417ns 897032 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51033815ns 897039 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51033985ns 897042 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51034440ns 897050 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51034610ns 897053 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51034894ns 897058 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51035179ns 897063 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51035463ns 897068 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51035917ns 897076 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51036088ns 897079 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51036372ns 897084 1a110850 fd5ff06f jal x0, -44 +51036656ns 897089 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51036940ns 897094 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51037338ns 897101 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51037509ns 897104 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51037963ns 897112 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51038134ns 897115 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51038418ns 897120 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51038702ns 897125 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51038986ns 897130 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51039441ns 897138 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51039611ns 897141 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51039896ns 897146 1a110850 fd5ff06f jal x0, -44 +51040180ns 897151 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51040464ns 897156 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51040862ns 897163 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51041032ns 897166 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51041487ns 897174 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51041657ns 897177 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51041942ns 897182 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51042226ns 897187 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51042510ns 897192 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51042965ns 897200 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51043135ns 897203 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51043419ns 897208 1a110850 fd5ff06f jal x0, -44 +51043703ns 897213 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51043987ns 897218 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51044385ns 897225 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51044556ns 897228 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51045010ns 897236 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51045181ns 897239 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51045465ns 897244 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51045749ns 897249 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51046033ns 897254 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51046488ns 897262 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51046659ns 897265 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51046943ns 897270 1a110850 fd5ff06f jal x0, -44 +51047227ns 897275 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51047511ns 897280 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51047909ns 897287 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51048079ns 897290 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51048534ns 897298 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51048705ns 897301 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51048989ns 897306 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51049273ns 897311 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51049557ns 897316 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51050012ns 897324 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51050182ns 897327 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51050466ns 897332 1a110850 fd5ff06f jal x0, -44 +51050751ns 897337 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51051035ns 897342 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51051432ns 897349 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51051603ns 897352 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51052058ns 897360 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51052228ns 897363 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51052512ns 897368 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51052796ns 897373 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51053081ns 897378 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51053535ns 897386 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51053706ns 897389 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51053990ns 897394 1a110850 fd5ff06f jal x0, -44 +51054274ns 897399 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51054558ns 897404 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51054956ns 897411 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51055127ns 897414 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51055581ns 897422 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51055752ns 897425 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51056036ns 897430 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51056320ns 897435 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51056604ns 897440 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51057059ns 897448 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51057229ns 897451 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51057514ns 897456 1a110850 fd5ff06f jal x0, -44 +51057798ns 897461 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51058082ns 897466 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51058480ns 897473 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51058650ns 897476 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51059105ns 897484 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51059275ns 897487 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51059559ns 897492 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51059844ns 897497 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51060128ns 897502 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51060582ns 897510 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51060753ns 897513 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51061037ns 897518 1a110850 fd5ff06f jal x0, -44 +51061321ns 897523 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51061605ns 897528 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51062003ns 897535 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51062174ns 897538 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51062628ns 897546 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51062799ns 897549 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51063083ns 897554 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51063367ns 897559 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51063651ns 897564 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51064106ns 897572 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51064277ns 897575 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51064561ns 897580 1a110850 fd5ff06f jal x0, -44 +51064845ns 897585 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51065129ns 897590 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51065527ns 897597 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51065697ns 897600 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51066152ns 897608 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51066322ns 897611 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51066607ns 897616 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51066891ns 897621 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51067175ns 897626 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51067630ns 897634 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51067800ns 897637 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51068084ns 897642 1a110850 fd5ff06f jal x0, -44 +51068368ns 897647 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51068653ns 897652 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51069050ns 897659 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51069221ns 897662 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51069676ns 897670 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51069846ns 897673 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51070130ns 897678 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51070414ns 897683 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51070699ns 897688 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51071153ns 897696 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51071324ns 897699 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51071608ns 897704 1a110850 fd5ff06f jal x0, -44 +51071892ns 897709 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51072176ns 897714 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51072574ns 897721 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51072744ns 897724 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51073199ns 897732 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51073370ns 897735 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51073654ns 897740 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51073938ns 897745 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51074222ns 897750 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51074677ns 897758 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51074847ns 897761 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51075131ns 897766 1a110850 fd5ff06f jal x0, -44 +51075416ns 897771 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51075700ns 897776 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51076098ns 897783 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51076268ns 897786 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51076723ns 897794 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51076893ns 897797 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51077177ns 897802 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51077462ns 897807 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51077746ns 897812 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51078200ns 897820 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51078371ns 897823 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51078655ns 897828 1a110850 fd5ff06f jal x0, -44 +51078939ns 897833 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51079223ns 897838 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51079621ns 897845 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51079792ns 897848 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51080246ns 897856 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51080417ns 897859 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51080701ns 897864 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51080985ns 897869 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51081269ns 897874 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51081724ns 897882 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51081894ns 897885 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51082179ns 897890 1a110850 fd5ff06f jal x0, -44 +51082463ns 897895 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51082747ns 897900 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51083145ns 897907 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51083315ns 897910 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51083770ns 897918 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51083940ns 897921 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51084225ns 897926 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51084509ns 897931 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51084793ns 897936 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51085248ns 897944 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51085418ns 897947 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51085702ns 897952 1a110850 fd5ff06f jal x0, -44 +51085986ns 897957 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51086271ns 897962 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51086668ns 897969 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51086839ns 897972 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51087293ns 897980 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51087464ns 897983 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51087748ns 897988 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51088032ns 897993 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51088316ns 897998 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51088771ns 898006 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51088942ns 898009 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51089226ns 898014 1a110850 fd5ff06f jal x0, -44 +51089510ns 898019 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51089794ns 898024 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51090192ns 898031 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51090362ns 898034 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51090817ns 898042 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51090988ns 898045 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51091272ns 898050 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51091556ns 898055 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51091840ns 898060 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51092295ns 898068 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51092465ns 898071 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51092749ns 898076 1a110850 fd5ff06f jal x0, -44 +51093034ns 898081 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51093318ns 898086 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51093715ns 898093 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51093886ns 898096 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51094341ns 898104 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51094511ns 898107 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51094795ns 898112 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51095079ns 898117 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51095364ns 898122 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51095818ns 898130 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51095989ns 898133 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51096273ns 898138 1a110850 fd5ff06f jal x0, -44 +51096557ns 898143 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51096841ns 898148 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51097239ns 898155 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51097410ns 898158 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51097864ns 898166 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51098035ns 898169 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51098319ns 898174 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51098603ns 898179 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51098887ns 898184 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51099342ns 898192 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51099512ns 898195 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51099797ns 898200 1a110850 fd5ff06f jal x0, -44 +51100081ns 898205 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51100365ns 898210 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51100763ns 898217 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51100933ns 898220 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51101388ns 898228 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51101558ns 898231 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51101842ns 898236 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51102127ns 898241 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51102411ns 898246 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51102865ns 898254 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51103036ns 898257 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51103320ns 898262 1a110850 fd5ff06f jal x0, -44 +51103604ns 898267 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51103888ns 898272 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51104286ns 898279 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51104457ns 898282 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51104911ns 898290 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51105082ns 898293 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51105366ns 898298 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51105650ns 898303 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51105934ns 898308 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51106389ns 898316 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51106560ns 898319 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51106844ns 898324 1a110850 fd5ff06f jal x0, -44 +51107128ns 898329 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51107412ns 898334 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51107810ns 898341 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51107980ns 898344 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51108435ns 898352 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51108605ns 898355 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51108890ns 898360 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51109174ns 898365 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51109458ns 898370 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51109913ns 898378 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51110083ns 898381 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51110367ns 898386 1a110850 fd5ff06f jal x0, -44 +51110651ns 898391 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51110936ns 898396 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51111333ns 898403 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51111504ns 898406 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51111959ns 898414 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51112129ns 898417 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51112413ns 898422 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51112697ns 898427 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51112982ns 898432 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51113436ns 898440 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51113607ns 898443 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51113891ns 898448 1a110850 fd5ff06f jal x0, -44 +51114175ns 898453 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51114459ns 898458 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51114857ns 898465 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51115027ns 898468 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51115482ns 898476 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51115653ns 898479 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51115937ns 898484 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51116221ns 898489 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51116505ns 898494 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51116960ns 898502 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51117130ns 898505 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51117414ns 898510 1a110850 fd5ff06f jal x0, -44 +51117699ns 898515 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51117983ns 898520 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51118381ns 898527 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51118551ns 898530 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51119006ns 898538 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51119176ns 898541 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51119460ns 898546 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51119745ns 898551 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51120029ns 898556 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51120483ns 898564 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51120654ns 898567 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51120938ns 898572 1a110850 fd5ff06f jal x0, -44 +51121222ns 898577 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51121506ns 898582 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51121904ns 898589 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51122075ns 898592 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51122529ns 898600 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51122700ns 898603 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51122984ns 898608 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51123268ns 898613 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51123552ns 898618 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51124007ns 898626 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51124177ns 898629 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51124462ns 898634 1a110850 fd5ff06f jal x0, -44 +51124746ns 898639 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51125030ns 898644 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51125428ns 898651 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51125598ns 898654 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51126053ns 898662 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51126223ns 898665 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51126508ns 898670 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51126792ns 898675 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51127076ns 898680 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51127531ns 898688 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51127701ns 898691 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51127985ns 898696 1a110850 fd5ff06f jal x0, -44 +51128269ns 898701 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51128554ns 898706 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51128951ns 898713 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51129122ns 898716 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51129576ns 898724 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51129747ns 898727 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51130031ns 898732 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51130315ns 898737 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51130599ns 898742 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51131054ns 898750 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51131225ns 898753 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51131509ns 898758 1a110850 fd5ff06f jal x0, -44 +51131793ns 898763 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51132077ns 898768 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51132475ns 898775 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51132645ns 898778 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51133100ns 898786 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51133271ns 898789 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51133555ns 898794 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51133839ns 898799 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51134123ns 898804 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51134578ns 898812 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51134748ns 898815 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51135032ns 898820 1a110850 fd5ff06f jal x0, -44 +51135317ns 898825 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51135601ns 898830 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51135999ns 898837 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51136169ns 898840 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51136624ns 898848 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51136794ns 898851 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51137078ns 898856 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51137362ns 898861 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51137647ns 898866 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51138101ns 898874 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51138272ns 898877 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51138556ns 898882 1a110850 fd5ff06f jal x0, -44 +51138840ns 898887 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51139124ns 898892 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51139522ns 898899 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51139693ns 898902 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51140147ns 898910 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51140318ns 898913 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51140602ns 898918 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51140886ns 898923 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51141170ns 898928 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51141625ns 898936 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51141795ns 898939 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51142080ns 898944 1a110850 fd5ff06f jal x0, -44 +51142364ns 898949 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51142648ns 898954 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51143046ns 898961 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51143216ns 898964 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51143671ns 898972 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51143841ns 898975 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51144125ns 898980 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51144410ns 898985 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51144694ns 898990 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51145148ns 898998 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51145319ns 899001 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51145603ns 899006 1a110850 fd5ff06f jal x0, -44 +51145887ns 899011 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51146171ns 899016 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51146569ns 899023 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51146740ns 899026 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51147194ns 899034 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51147365ns 899037 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51147649ns 899042 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51147933ns 899047 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51148217ns 899052 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51148672ns 899060 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51148843ns 899063 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51149127ns 899068 1a110850 fd5ff06f jal x0, -44 +51149411ns 899073 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51149695ns 899078 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51150093ns 899085 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51150263ns 899088 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51150718ns 899096 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51150888ns 899099 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51151173ns 899104 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51151457ns 899109 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51151741ns 899114 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51152196ns 899122 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51152366ns 899125 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51152650ns 899130 1a110850 fd5ff06f jal x0, -44 +51152934ns 899135 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51153219ns 899140 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51153616ns 899147 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51153787ns 899150 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51154242ns 899158 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51154412ns 899161 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51154696ns 899166 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51154980ns 899171 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51155265ns 899176 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51155719ns 899184 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51155890ns 899187 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51156174ns 899192 1a110850 fd5ff06f jal x0, -44 +51156458ns 899197 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51156742ns 899202 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51157140ns 899209 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51157311ns 899212 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51157765ns 899220 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51157936ns 899223 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51158220ns 899228 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51158504ns 899233 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51158788ns 899238 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51159243ns 899246 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51159413ns 899249 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51159697ns 899254 1a110850 fd5ff06f jal x0, -44 +51159982ns 899259 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51160266ns 899264 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51160664ns 899271 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51160834ns 899274 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51161289ns 899282 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51161459ns 899285 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51161743ns 899290 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51162028ns 899295 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51162312ns 899300 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51162766ns 899308 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51162937ns 899311 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51163221ns 899316 1a110850 fd5ff06f jal x0, -44 +51163505ns 899321 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51163789ns 899326 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51164187ns 899333 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51164358ns 899336 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51164812ns 899344 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51164983ns 899347 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51165267ns 899352 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51165551ns 899357 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51165835ns 899362 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51166290ns 899370 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51166460ns 899373 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51166745ns 899378 1a110850 fd5ff06f jal x0, -44 +51167029ns 899383 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51167313ns 899388 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51167711ns 899395 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51167881ns 899398 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51168336ns 899406 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51168506ns 899409 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51168791ns 899414 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51169075ns 899419 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51169359ns 899424 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51169814ns 899432 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51169984ns 899435 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51170268ns 899440 1a110850 fd5ff06f jal x0, -44 +51170552ns 899445 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51170837ns 899450 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51171234ns 899457 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51171405ns 899460 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51171859ns 899468 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51172030ns 899471 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51172314ns 899476 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51172598ns 899481 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51172882ns 899486 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51173337ns 899494 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51173508ns 899497 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51173792ns 899502 1a110850 fd5ff06f jal x0, -44 +51174076ns 899507 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51174360ns 899512 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51174758ns 899519 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51174928ns 899522 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51175383ns 899530 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51175554ns 899533 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51175838ns 899538 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51176122ns 899543 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51176406ns 899548 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51176861ns 899556 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51177031ns 899559 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51177315ns 899564 1a110850 fd5ff06f jal x0, -44 +51177600ns 899569 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51177884ns 899574 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51178282ns 899581 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51178452ns 899584 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51178907ns 899592 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51179077ns 899595 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51179361ns 899600 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51179645ns 899605 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51179930ns 899610 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51180384ns 899618 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51180555ns 899621 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51180839ns 899626 1a110850 fd5ff06f jal x0, -44 +51181123ns 899631 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51181407ns 899636 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51181805ns 899643 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51181976ns 899646 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51182430ns 899654 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51182601ns 899657 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51182885ns 899662 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51183169ns 899667 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51183453ns 899672 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51183908ns 899680 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51184078ns 899683 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51184363ns 899688 1a110850 fd5ff06f jal x0, -44 +51184647ns 899693 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51184931ns 899698 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51185329ns 899705 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51185499ns 899708 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51185954ns 899716 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51186124ns 899719 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51186408ns 899724 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51186693ns 899729 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51186977ns 899734 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51187431ns 899742 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51187602ns 899745 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51187886ns 899750 1a110850 fd5ff06f jal x0, -44 +51188170ns 899755 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51188454ns 899760 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51188852ns 899767 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51189023ns 899770 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51189477ns 899778 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51189648ns 899781 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51189932ns 899786 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51190216ns 899791 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51190500ns 899796 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51190955ns 899804 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51191126ns 899807 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51191410ns 899812 1a110850 fd5ff06f jal x0, -44 +51191694ns 899817 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51191978ns 899822 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51192376ns 899829 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51192546ns 899832 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51193001ns 899840 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51193171ns 899843 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51193456ns 899848 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51193740ns 899853 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51194024ns 899858 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51194479ns 899866 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51194649ns 899869 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51194933ns 899874 1a110850 fd5ff06f jal x0, -44 +51195217ns 899879 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51195502ns 899884 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51195899ns 899891 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51196070ns 899894 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51196525ns 899902 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51196695ns 899905 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51196979ns 899910 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51197263ns 899915 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51197548ns 899920 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51198002ns 899928 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51198173ns 899931 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51198457ns 899936 1a110850 fd5ff06f jal x0, -44 +51198741ns 899941 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51199025ns 899946 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51199423ns 899953 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51199594ns 899956 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51200048ns 899964 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51200219ns 899967 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51200503ns 899972 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51200787ns 899977 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51201071ns 899982 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51201526ns 899990 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51201696ns 899993 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51201980ns 899998 1a110850 fd5ff06f jal x0, -44 +51202265ns 900003 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51202549ns 900008 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51202947ns 900015 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51203117ns 900018 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51203572ns 900026 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51203742ns 900029 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51204026ns 900034 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51204311ns 900039 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51204595ns 900044 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51205049ns 900052 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51205220ns 900055 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51205504ns 900060 1a110850 fd5ff06f jal x0, -44 +51205788ns 900065 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51206072ns 900070 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51206470ns 900077 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51206641ns 900080 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51207095ns 900088 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51207266ns 900091 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51207550ns 900096 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51207834ns 900101 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51208118ns 900106 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51208573ns 900114 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51208743ns 900117 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51209028ns 900122 1a110850 fd5ff06f jal x0, -44 +51209312ns 900127 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51209596ns 900132 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51209994ns 900139 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51210164ns 900142 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51210619ns 900150 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51210789ns 900153 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51211074ns 900158 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51211358ns 900163 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51211642ns 900168 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51212097ns 900176 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51212267ns 900179 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51212551ns 900184 1a110850 fd5ff06f jal x0, -44 +51212835ns 900189 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51213120ns 900194 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51213517ns 900201 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51213688ns 900204 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51214143ns 900212 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51214313ns 900215 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51214597ns 900220 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51214881ns 900225 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51215165ns 900230 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51215620ns 900238 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51215791ns 900241 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51216075ns 900246 1a110850 fd5ff06f jal x0, -44 +51216359ns 900251 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51216643ns 900256 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51217041ns 900263 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51217211ns 900266 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51217666ns 900274 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51217837ns 900277 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51218121ns 900282 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51218405ns 900287 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51218689ns 900292 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51219144ns 900300 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51219314ns 900303 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51219598ns 900308 1a110850 fd5ff06f jal x0, -44 +51219883ns 900313 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51220167ns 900318 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51220565ns 900325 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51220735ns 900328 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51221190ns 900336 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51221360ns 900339 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51221644ns 900344 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51221928ns 900349 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51222213ns 900354 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51222667ns 900362 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51222838ns 900365 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51223122ns 900370 1a110850 fd5ff06f jal x0, -44 +51223406ns 900375 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51223690ns 900380 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51224088ns 900387 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51224259ns 900390 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51224713ns 900398 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51224884ns 900401 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51225168ns 900406 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51225452ns 900411 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51225736ns 900416 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51226191ns 900424 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51226361ns 900427 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51226646ns 900432 1a110850 fd5ff06f jal x0, -44 +51226930ns 900437 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51227214ns 900442 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51227612ns 900449 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51227782ns 900452 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51228237ns 900460 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51228407ns 900463 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51228691ns 900468 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51228976ns 900473 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51229260ns 900478 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51229714ns 900486 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51229885ns 900489 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51230169ns 900494 1a110850 fd5ff06f jal x0, -44 +51230453ns 900499 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51230737ns 900504 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51231135ns 900511 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51231306ns 900514 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51231760ns 900522 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51231931ns 900525 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51232215ns 900530 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51232499ns 900535 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51232783ns 900540 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51233238ns 900548 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51233409ns 900551 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51233693ns 900556 1a110850 fd5ff06f jal x0, -44 +51233977ns 900561 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51234261ns 900566 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51234659ns 900573 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51234829ns 900576 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51235284ns 900584 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51235455ns 900587 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51235739ns 900592 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51236023ns 900597 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51236307ns 900602 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51236762ns 900610 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51236932ns 900613 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51237216ns 900618 1a110850 fd5ff06f jal x0, -44 +51237500ns 900623 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51237785ns 900628 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51238182ns 900635 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51238353ns 900638 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51238808ns 900646 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51238978ns 900649 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51239262ns 900654 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51239546ns 900659 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51239831ns 900664 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51240285ns 900672 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51240456ns 900675 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51240740ns 900680 1a110850 fd5ff06f jal x0, -44 +51241024ns 900685 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51241308ns 900690 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51241706ns 900697 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51241877ns 900700 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51242331ns 900708 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51242502ns 900711 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51242786ns 900716 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51243070ns 900721 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51243354ns 900726 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51243809ns 900734 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51243979ns 900737 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51244263ns 900742 1a110850 fd5ff06f jal x0, -44 +51244548ns 900747 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51244832ns 900752 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51245230ns 900759 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51245400ns 900762 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51245855ns 900770 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51246025ns 900773 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51246309ns 900778 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51246594ns 900783 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51246878ns 900788 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51247332ns 900796 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51247503ns 900799 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51247787ns 900804 1a110850 fd5ff06f jal x0, -44 +51248071ns 900809 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51248355ns 900814 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51248753ns 900821 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51248924ns 900824 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51249378ns 900832 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51249549ns 900835 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51249833ns 900840 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51250117ns 900845 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51250401ns 900850 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51250856ns 900858 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51251026ns 900861 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51251311ns 900866 1a110850 fd5ff06f jal x0, -44 +51251595ns 900871 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51251879ns 900876 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51252277ns 900883 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51252447ns 900886 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51252902ns 900894 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51253072ns 900897 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51253357ns 900902 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51253641ns 900907 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51253925ns 900912 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51254380ns 900920 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51254550ns 900923 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51254834ns 900928 1a110850 fd5ff06f jal x0, -44 +51255118ns 900933 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51255403ns 900938 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51255800ns 900945 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51255971ns 900948 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51256426ns 900956 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51256596ns 900959 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51256880ns 900964 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51257164ns 900969 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51257448ns 900974 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51257903ns 900982 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51258074ns 900985 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51258358ns 900990 1a110850 fd5ff06f jal x0, -44 +51258642ns 900995 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51258926ns 901000 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51259324ns 901007 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51259494ns 901010 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51259949ns 901018 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51260120ns 901021 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51260404ns 901026 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51260688ns 901031 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51260972ns 901036 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51261427ns 901044 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51261597ns 901047 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51261881ns 901052 1a110850 fd5ff06f jal x0, -44 +51262166ns 901057 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51262450ns 901062 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51262848ns 901069 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51263018ns 901072 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51263473ns 901080 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51263643ns 901083 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51263927ns 901088 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51264211ns 901093 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51264496ns 901098 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51264950ns 901106 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51265121ns 901109 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51265405ns 901114 1a110850 fd5ff06f jal x0, -44 +51265689ns 901119 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51265973ns 901124 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51266371ns 901131 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51266542ns 901134 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51266996ns 901142 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51267167ns 901145 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51267451ns 901150 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51267735ns 901155 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51268019ns 901160 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51268474ns 901168 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51268644ns 901171 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51268929ns 901176 1a110850 fd5ff06f jal x0, -44 +51269213ns 901181 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51269497ns 901186 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51269895ns 901193 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51270065ns 901196 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51270520ns 901204 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51270690ns 901207 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51270975ns 901212 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51271259ns 901217 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51271543ns 901222 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51271997ns 901230 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51272168ns 901233 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51272452ns 901238 1a110850 fd5ff06f jal x0, -44 +51272736ns 901243 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51273020ns 901248 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51273418ns 901255 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51273589ns 901258 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51274043ns 901266 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51274214ns 901269 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51274498ns 901274 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51274782ns 901279 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51275066ns 901284 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51275521ns 901292 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51275692ns 901295 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51275976ns 901300 1a110850 fd5ff06f jal x0, -44 +51276260ns 901305 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51276544ns 901310 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51276942ns 901317 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51277112ns 901320 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51277567ns 901328 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51277738ns 901331 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51278022ns 901336 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51278306ns 901341 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51278590ns 901346 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51279045ns 901354 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51279215ns 901357 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51279499ns 901362 1a110850 fd5ff06f jal x0, -44 +51279783ns 901367 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51280068ns 901372 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51280465ns 901379 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51280636ns 901382 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51281091ns 901390 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51281261ns 901393 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51281545ns 901398 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51281829ns 901403 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51282114ns 901408 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51282568ns 901416 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51282739ns 901419 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51283023ns 901424 1a110850 fd5ff06f jal x0, -44 +51283307ns 901429 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51283591ns 901434 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51283989ns 901441 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51284160ns 901444 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51284614ns 901452 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51284785ns 901455 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51285069ns 901460 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51285353ns 901465 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51285637ns 901470 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51286092ns 901478 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51286262ns 901481 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51286546ns 901486 1a110850 fd5ff06f jal x0, -44 +51286831ns 901491 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51287115ns 901496 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51287513ns 901503 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51287683ns 901506 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51288138ns 901514 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51288308ns 901517 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51288592ns 901522 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51288877ns 901527 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51289161ns 901532 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51289615ns 901540 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51289786ns 901543 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51290070ns 901548 1a110850 fd5ff06f jal x0, -44 +51290354ns 901553 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51290638ns 901558 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51291036ns 901565 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51291207ns 901568 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51291661ns 901576 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51291832ns 901579 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51292116ns 901584 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51292400ns 901589 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51292684ns 901594 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51293139ns 901602 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51293309ns 901605 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51293594ns 901610 1a110850 fd5ff06f jal x0, -44 +51293878ns 901615 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51294162ns 901620 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51294560ns 901627 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51294730ns 901630 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51295185ns 901638 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51295355ns 901641 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51295640ns 901646 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51295924ns 901651 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51296208ns 901656 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51296663ns 901664 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51296833ns 901667 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51297117ns 901672 1a110850 fd5ff06f jal x0, -44 +51297401ns 901677 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51297686ns 901682 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51298083ns 901689 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51298254ns 901692 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51298709ns 901700 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51298879ns 901703 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51299163ns 901708 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51299447ns 901713 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51299731ns 901718 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51300186ns 901726 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51300357ns 901729 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51300641ns 901734 1a110850 fd5ff06f jal x0, -44 +51300925ns 901739 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51301209ns 901744 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51301607ns 901751 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51301777ns 901754 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51302232ns 901762 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51302403ns 901765 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51302687ns 901770 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51302971ns 901775 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51303255ns 901780 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51303710ns 901788 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51303880ns 901791 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51304164ns 901796 1a110850 fd5ff06f jal x0, -44 +51304449ns 901801 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51304733ns 901806 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51305131ns 901813 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51305301ns 901816 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51305756ns 901824 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51305926ns 901827 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51306210ns 901832 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51306495ns 901837 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51306779ns 901842 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51307233ns 901850 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51307404ns 901853 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51307688ns 901858 1a110850 fd5ff06f jal x0, -44 +51307972ns 901863 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51308256ns 901868 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51308654ns 901875 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51308825ns 901878 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51309279ns 901886 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51309450ns 901889 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51309734ns 901894 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51310018ns 901899 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51310302ns 901904 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51310757ns 901912 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51310927ns 901915 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51311212ns 901920 1a110850 fd5ff06f jal x0, -44 +51311496ns 901925 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51311780ns 901930 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51312178ns 901937 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51312348ns 901940 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51312803ns 901948 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51312973ns 901951 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51313258ns 901956 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51313542ns 901961 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51313826ns 901966 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51314280ns 901974 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51314451ns 901977 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51314735ns 901982 1a110850 fd5ff06f jal x0, -44 +51315019ns 901987 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51315303ns 901992 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51315701ns 901999 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51315872ns 902002 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51316326ns 902010 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51316497ns 902013 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51316781ns 902018 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51317065ns 902023 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51317349ns 902028 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51317804ns 902036 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51317975ns 902039 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51318259ns 902044 1a110850 fd5ff06f jal x0, -44 +51318543ns 902049 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51318827ns 902054 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51319225ns 902061 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51319395ns 902064 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51319850ns 902072 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51320021ns 902075 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51320305ns 902080 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51320589ns 902085 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51320873ns 902090 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51321328ns 902098 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51321498ns 902101 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51321782ns 902106 1a110850 fd5ff06f jal x0, -44 +51322066ns 902111 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51322351ns 902116 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51322748ns 902123 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51322919ns 902126 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51323374ns 902134 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51323544ns 902137 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51323828ns 902142 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51324112ns 902147 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51324397ns 902152 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51324851ns 902160 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51325022ns 902163 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51325306ns 902168 1a110850 fd5ff06f jal x0, -44 +51325590ns 902173 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51325874ns 902178 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51326272ns 902185 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51326443ns 902188 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51326897ns 902196 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51327068ns 902199 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51327352ns 902204 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51327636ns 902209 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51327920ns 902214 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51328375ns 902222 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51328545ns 902225 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51328829ns 902230 1a110850 fd5ff06f jal x0, -44 +51329114ns 902235 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51329398ns 902240 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51329796ns 902247 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51329966ns 902250 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51330421ns 902258 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51330591ns 902261 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51330875ns 902266 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51331160ns 902271 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51331444ns 902276 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51331898ns 902284 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51332069ns 902287 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51332353ns 902292 1a110850 fd5ff06f jal x0, -44 +51332637ns 902297 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51332921ns 902302 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51333319ns 902309 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51333490ns 902312 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51333944ns 902320 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51334115ns 902323 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51334399ns 902328 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51334683ns 902333 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51334967ns 902338 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51335422ns 902346 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51335592ns 902349 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51335877ns 902354 1a110850 fd5ff06f jal x0, -44 +51336161ns 902359 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51336445ns 902364 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51336843ns 902371 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51337013ns 902374 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51337468ns 902382 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51337638ns 902385 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51337923ns 902390 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51338207ns 902395 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51338491ns 902400 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51338946ns 902408 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51339116ns 902411 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51339400ns 902416 1a110850 fd5ff06f jal x0, -44 +51339684ns 902421 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51339969ns 902426 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51340366ns 902433 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51340537ns 902436 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51340992ns 902444 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51341162ns 902447 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51341446ns 902452 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51341730ns 902457 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51342015ns 902462 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51342469ns 902470 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51342640ns 902473 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51342924ns 902478 1a110850 fd5ff06f jal x0, -44 +51343208ns 902483 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51343492ns 902488 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51343890ns 902495 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51344060ns 902498 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51344515ns 902506 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51344686ns 902509 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51344970ns 902514 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51345254ns 902519 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51345538ns 902524 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51345993ns 902532 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51346163ns 902535 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51346447ns 902540 1a110850 fd5ff06f jal x0, -44 +51346732ns 902545 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51347016ns 902550 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51347414ns 902557 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51347584ns 902560 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51348039ns 902568 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51348209ns 902571 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51348493ns 902576 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51348778ns 902581 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51349062ns 902586 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51349516ns 902594 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51349687ns 902597 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51349971ns 902602 1a110850 fd5ff06f jal x0, -44 +51350255ns 902607 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51350539ns 902612 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51350937ns 902619 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51351108ns 902622 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51351562ns 902630 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51351733ns 902633 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51352017ns 902638 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51352301ns 902643 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51352585ns 902648 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51353040ns 902656 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51353210ns 902659 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51353495ns 902664 1a110850 fd5ff06f jal x0, -44 +51353779ns 902669 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51354063ns 902674 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51354461ns 902681 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51354631ns 902684 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51355086ns 902692 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51355256ns 902695 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51355541ns 902700 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51355825ns 902705 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51356109ns 902710 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51356563ns 902718 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51356734ns 902721 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51357018ns 902726 1a110850 fd5ff06f jal x0, -44 +51357302ns 902731 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51357586ns 902736 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51357984ns 902743 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51358155ns 902746 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51358609ns 902754 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51358780ns 902757 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51359064ns 902762 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51359348ns 902767 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51359632ns 902772 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51360087ns 902780 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51360258ns 902783 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51360542ns 902788 1a110850 fd5ff06f jal x0, -44 +51360826ns 902793 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51361110ns 902798 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51361508ns 902805 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51361678ns 902808 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51362133ns 902816 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51362304ns 902819 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51362588ns 902824 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51362872ns 902829 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51363156ns 902834 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51363611ns 902842 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51363781ns 902845 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51364065ns 902850 1a110850 fd5ff06f jal x0, -44 +51364349ns 902855 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51364634ns 902860 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51365031ns 902867 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51365202ns 902870 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51365657ns 902878 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51365827ns 902881 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51366111ns 902886 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51366395ns 902891 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51366680ns 902896 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51367134ns 902904 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51367305ns 902907 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51367589ns 902912 1a110850 fd5ff06f jal x0, -44 +51367873ns 902917 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51368157ns 902922 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51368555ns 902929 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51368726ns 902932 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51369180ns 902940 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51369351ns 902943 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51369635ns 902948 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51369919ns 902953 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51370203ns 902958 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51370658ns 902966 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51370828ns 902969 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51371112ns 902974 1a110850 fd5ff06f jal x0, -44 +51371397ns 902979 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51371681ns 902984 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51372079ns 902991 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51372249ns 902994 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51372704ns 903002 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51372874ns 903005 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51373158ns 903010 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51373443ns 903015 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51373727ns 903020 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51374181ns 903028 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51374352ns 903031 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51374636ns 903036 1a110850 fd5ff06f jal x0, -44 +51374920ns 903041 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51375204ns 903046 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51375602ns 903053 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51375773ns 903056 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51376227ns 903064 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51376398ns 903067 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51376682ns 903072 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51376966ns 903077 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51377250ns 903082 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51377705ns 903090 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51377875ns 903093 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51378160ns 903098 1a110850 fd5ff06f jal x0, -44 +51378444ns 903103 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51378728ns 903108 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51379126ns 903115 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51379296ns 903118 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51379751ns 903126 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51379921ns 903129 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51380206ns 903134 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51380490ns 903139 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51380774ns 903144 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51381229ns 903152 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51381399ns 903155 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51381683ns 903160 1a110850 fd5ff06f jal x0, -44 +51381967ns 903165 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51382252ns 903170 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51382649ns 903177 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51382820ns 903180 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51383275ns 903188 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51383445ns 903191 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51383729ns 903196 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51384013ns 903201 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51384298ns 903206 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51384752ns 903214 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51384923ns 903217 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51385207ns 903222 1a110850 fd5ff06f jal x0, -44 +51385491ns 903227 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51385775ns 903232 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51386173ns 903239 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51386343ns 903242 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51386798ns 903250 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51386969ns 903253 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51387253ns 903258 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51387537ns 903263 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51387821ns 903268 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51388276ns 903276 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51388446ns 903279 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51388730ns 903284 1a110850 fd5ff06f jal x0, -44 +51389015ns 903289 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51389299ns 903294 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51389697ns 903301 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51389867ns 903304 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51390322ns 903312 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51390492ns 903315 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51390776ns 903320 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51391061ns 903325 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51391345ns 903330 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51391799ns 903338 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51391970ns 903341 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51392254ns 903346 1a110850 fd5ff06f jal x0, -44 +51392538ns 903351 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51392822ns 903356 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51393220ns 903363 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51393391ns 903366 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51393845ns 903374 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51394016ns 903377 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51394300ns 903382 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51394584ns 903387 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51394868ns 903392 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51395323ns 903400 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51395493ns 903403 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51395778ns 903408 1a110850 fd5ff06f jal x0, -44 +51396062ns 903413 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51396346ns 903418 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51396744ns 903425 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51396914ns 903428 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51397369ns 903436 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51397539ns 903439 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51397824ns 903444 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51398108ns 903449 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51398392ns 903454 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51398847ns 903462 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51399017ns 903465 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51399301ns 903470 1a110850 fd5ff06f jal x0, -44 +51399585ns 903475 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51399869ns 903480 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51400267ns 903487 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51400438ns 903490 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51400892ns 903498 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51401063ns 903501 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51401347ns 903506 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51401631ns 903511 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51401915ns 903516 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51402370ns 903524 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51402541ns 903527 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51402825ns 903532 1a110850 fd5ff06f jal x0, -44 +51403109ns 903537 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51403393ns 903542 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51403791ns 903549 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51403961ns 903552 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51404416ns 903560 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51404587ns 903563 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51404871ns 903568 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51405155ns 903573 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51405439ns 903578 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51405894ns 903586 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51406064ns 903589 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51406348ns 903594 1a110850 fd5ff06f jal x0, -44 +51406632ns 903599 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51406917ns 903604 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51407314ns 903611 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51407485ns 903614 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51407940ns 903622 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51408110ns 903625 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51408394ns 903630 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51408678ns 903635 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51408963ns 903640 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51409417ns 903648 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51409588ns 903651 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51409872ns 903656 1a110850 fd5ff06f jal x0, -44 +51410156ns 903661 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51410440ns 903666 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51410838ns 903673 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51411009ns 903676 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51411463ns 903684 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51411634ns 903687 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51411918ns 903692 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51412202ns 903697 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51412486ns 903702 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51412941ns 903710 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51413111ns 903713 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51413395ns 903718 1a110850 fd5ff06f jal x0, -44 +51413680ns 903723 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51413964ns 903728 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51414362ns 903735 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51414532ns 903738 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51414987ns 903746 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51415157ns 903749 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51415441ns 903754 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51415726ns 903759 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51416010ns 903764 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51416464ns 903772 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51416635ns 903775 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51416919ns 903780 1a110850 fd5ff06f jal x0, -44 +51417203ns 903785 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51417487ns 903790 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51417885ns 903797 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51418056ns 903800 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51418510ns 903808 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51418681ns 903811 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51418965ns 903816 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51419249ns 903821 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51419533ns 903826 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51419988ns 903834 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51420159ns 903837 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51420443ns 903842 1a110850 fd5ff06f jal x0, -44 +51420727ns 903847 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51421011ns 903852 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51421409ns 903859 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51421579ns 903862 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51422034ns 903870 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51422204ns 903873 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51422489ns 903878 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51422773ns 903883 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51423057ns 903888 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51423512ns 903896 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51423682ns 903899 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51423966ns 903904 1a110850 fd5ff06f jal x0, -44 +51424250ns 903909 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51424535ns 903914 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51424932ns 903921 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51425103ns 903924 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51425558ns 903932 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51425728ns 903935 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51426012ns 903940 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51426296ns 903945 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51426581ns 903950 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51427035ns 903958 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51427206ns 903961 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51427490ns 903966 1a110850 fd5ff06f jal x0, -44 +51427774ns 903971 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51428058ns 903976 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51428456ns 903983 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51428626ns 903986 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51429081ns 903994 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51429252ns 903997 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51429536ns 904002 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51429820ns 904007 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51430104ns 904012 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51430559ns 904020 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51430729ns 904023 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51431013ns 904028 1a110850 fd5ff06f jal x0, -44 +51431298ns 904033 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51431582ns 904038 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51431980ns 904045 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51432150ns 904048 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51432605ns 904056 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51432775ns 904059 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51433059ns 904064 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51433344ns 904069 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51433628ns 904074 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51434082ns 904082 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51434253ns 904085 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51434537ns 904090 1a110850 fd5ff06f jal x0, -44 +51434821ns 904095 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51435105ns 904100 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51435503ns 904107 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51435674ns 904110 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51436128ns 904118 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51436299ns 904121 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51436583ns 904126 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51436867ns 904131 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51437151ns 904136 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51437606ns 904144 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51437776ns 904147 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51438061ns 904152 1a110850 fd5ff06f jal x0, -44 +51438345ns 904157 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51438629ns 904162 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51439027ns 904169 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51439197ns 904172 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51439652ns 904180 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51439822ns 904183 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51440107ns 904188 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51440391ns 904193 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51440675ns 904198 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51441130ns 904206 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51441300ns 904209 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51441584ns 904214 1a110850 fd5ff06f jal x0, -44 +51441868ns 904219 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51442152ns 904224 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51442550ns 904231 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51442721ns 904234 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51443175ns 904242 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51443346ns 904245 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51443630ns 904250 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51443914ns 904255 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51444198ns 904260 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51444653ns 904268 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51444824ns 904271 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51445108ns 904276 1a110850 fd5ff06f jal x0, -44 +51445392ns 904281 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51445676ns 904286 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51446074ns 904293 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51446244ns 904296 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51446699ns 904304 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51446870ns 904307 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51447154ns 904312 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51447438ns 904317 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51447722ns 904322 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51448177ns 904330 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51448347ns 904333 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51448631ns 904338 1a110850 fd5ff06f jal x0, -44 +51448915ns 904343 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51449200ns 904348 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51449597ns 904355 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51449768ns 904358 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51450223ns 904366 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51450393ns 904369 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51450677ns 904374 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51450961ns 904379 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51451246ns 904384 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51451700ns 904392 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51451871ns 904395 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51452155ns 904400 1a110850 fd5ff06f jal x0, -44 +51452439ns 904405 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51452723ns 904410 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51453121ns 904417 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51453292ns 904420 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51453746ns 904428 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51453917ns 904431 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51454201ns 904436 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51454485ns 904441 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51454769ns 904446 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51455224ns 904454 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51455394ns 904457 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51455679ns 904462 1a110850 fd5ff06f jal x0, -44 +51455963ns 904467 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51456247ns 904472 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51456645ns 904479 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51456815ns 904482 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51457270ns 904490 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51457440ns 904493 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51457724ns 904498 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51458009ns 904503 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51458293ns 904508 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51458747ns 904516 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51458918ns 904519 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51459202ns 904524 1a110850 fd5ff06f jal x0, -44 +51459486ns 904529 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51459770ns 904534 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51460168ns 904541 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51460339ns 904544 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51460793ns 904552 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51460964ns 904555 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51461248ns 904560 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51461532ns 904565 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51461816ns 904570 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51462271ns 904578 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51462442ns 904581 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51462726ns 904586 1a110850 fd5ff06f jal x0, -44 +51463010ns 904591 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51463294ns 904596 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51463692ns 904603 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51463862ns 904606 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51464317ns 904614 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51464487ns 904617 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51464772ns 904622 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51465056ns 904627 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51465340ns 904632 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51465795ns 904640 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51465965ns 904643 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51466249ns 904648 1a110850 fd5ff06f jal x0, -44 +51466533ns 904653 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51466818ns 904658 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51467215ns 904665 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51467386ns 904668 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51467841ns 904676 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51468011ns 904679 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51468295ns 904684 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51468579ns 904689 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51468864ns 904694 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51469318ns 904702 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51469489ns 904705 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51469773ns 904710 1a110850 fd5ff06f jal x0, -44 +51470057ns 904715 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51470341ns 904720 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51470739ns 904727 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51470909ns 904730 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51471364ns 904738 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51471535ns 904741 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51471819ns 904746 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51472103ns 904751 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51472387ns 904756 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51472842ns 904764 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51473012ns 904767 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51473296ns 904772 1a110850 fd5ff06f jal x0, -44 +51473581ns 904777 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51473865ns 904782 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51474263ns 904789 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51474433ns 904792 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51474888ns 904800 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51475058ns 904803 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51475342ns 904808 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51475627ns 904813 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51475911ns 904818 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51476365ns 904826 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51476536ns 904829 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51476820ns 904834 1a110850 fd5ff06f jal x0, -44 +51477104ns 904839 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51477388ns 904844 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51477786ns 904851 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51477957ns 904854 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51478411ns 904862 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51478582ns 904865 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51478866ns 904870 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51479150ns 904875 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51479434ns 904880 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51479889ns 904888 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51480059ns 904891 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51480344ns 904896 1a110850 fd5ff06f jal x0, -44 +51480628ns 904901 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51480912ns 904906 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51481310ns 904913 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51481480ns 904916 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51481935ns 904924 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51482105ns 904927 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51482390ns 904932 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51482674ns 904937 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51482958ns 904942 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51483413ns 904950 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51483583ns 904953 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51483867ns 904958 1a110850 fd5ff06f jal x0, -44 +51484151ns 904963 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51484435ns 904968 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51484833ns 904975 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51485004ns 904978 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51485458ns 904986 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51485629ns 904989 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51485913ns 904994 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51486197ns 904999 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51486481ns 905004 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51486936ns 905012 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51487107ns 905015 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51487391ns 905020 1a110850 fd5ff06f jal x0, -44 +51487675ns 905025 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51487959ns 905030 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51488357ns 905037 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51488527ns 905040 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51488982ns 905048 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51489153ns 905051 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51489437ns 905056 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51489721ns 905061 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51490005ns 905066 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51490460ns 905074 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51490630ns 905077 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51490914ns 905082 1a110850 fd5ff06f jal x0, -44 +51491199ns 905087 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51491483ns 905092 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51491880ns 905099 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51492051ns 905102 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51492506ns 905110 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51492676ns 905113 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51492960ns 905118 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51493244ns 905123 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51493529ns 905128 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51493983ns 905136 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51494154ns 905139 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51494438ns 905144 1a110850 fd5ff06f jal x0, -44 +51494722ns 905149 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51495006ns 905154 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51495404ns 905161 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51495575ns 905164 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51496029ns 905172 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51496200ns 905175 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51496484ns 905180 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51496768ns 905185 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51497052ns 905190 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51497507ns 905198 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51497677ns 905201 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51497962ns 905206 1a110850 fd5ff06f jal x0, -44 +51498246ns 905211 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51498530ns 905216 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51498928ns 905223 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51499098ns 905226 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51499553ns 905234 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51499723ns 905237 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51500007ns 905242 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51500292ns 905247 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51500576ns 905252 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51501030ns 905260 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51501201ns 905263 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51501485ns 905268 1a110850 fd5ff06f jal x0, -44 +51501769ns 905273 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51502053ns 905278 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51502451ns 905285 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51502622ns 905288 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51503076ns 905296 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51503247ns 905299 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51503531ns 905304 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51503815ns 905309 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51504099ns 905314 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51504554ns 905322 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51504725ns 905325 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51505009ns 905330 1a110850 fd5ff06f jal x0, -44 +51505293ns 905335 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51505577ns 905340 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51505975ns 905347 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51506145ns 905350 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51506600ns 905358 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51506770ns 905361 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51507055ns 905366 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51507339ns 905371 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51507623ns 905376 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51508078ns 905384 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51508248ns 905387 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51508532ns 905392 1a110850 fd5ff06f jal x0, -44 +51508816ns 905397 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51509101ns 905402 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51509498ns 905409 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51509669ns 905412 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51510124ns 905420 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51510294ns 905423 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51510578ns 905428 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51510862ns 905433 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51511147ns 905438 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51511601ns 905446 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51511772ns 905449 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51512056ns 905454 1a110850 fd5ff06f jal x0, -44 +51512340ns 905459 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51512624ns 905464 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51513022ns 905471 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51513192ns 905474 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51513647ns 905482 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51513818ns 905485 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51514102ns 905490 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51514386ns 905495 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51514670ns 905500 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51515125ns 905508 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51515295ns 905511 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51515579ns 905516 1a110850 fd5ff06f jal x0, -44 +51515864ns 905521 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51516148ns 905526 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51516546ns 905533 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51516716ns 905536 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51517171ns 905544 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51517341ns 905547 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51517625ns 905552 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51517910ns 905557 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51518194ns 905562 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51518648ns 905570 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51518819ns 905573 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51519103ns 905578 1a110850 fd5ff06f jal x0, -44 +51519387ns 905583 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51519671ns 905588 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51520069ns 905595 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51520240ns 905598 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51520694ns 905606 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51520865ns 905609 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51521149ns 905614 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51521433ns 905619 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51521717ns 905624 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51522172ns 905632 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51522342ns 905635 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51522627ns 905640 1a110850 fd5ff06f jal x0, -44 +51522911ns 905645 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51523195ns 905650 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51523593ns 905657 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51523763ns 905660 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51524218ns 905668 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51524388ns 905671 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51524673ns 905676 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51524957ns 905681 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51525241ns 905686 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51525696ns 905694 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51525866ns 905697 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51526150ns 905702 1a110850 fd5ff06f jal x0, -44 +51526434ns 905707 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51526719ns 905712 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51527116ns 905719 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51527287ns 905722 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51527741ns 905730 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51527912ns 905733 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51528196ns 905738 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51528480ns 905743 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51528764ns 905748 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51529219ns 905756 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51529390ns 905759 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51529674ns 905764 1a110850 fd5ff06f jal x0, -44 +51529958ns 905769 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51530242ns 905774 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51530640ns 905781 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51530810ns 905784 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51531265ns 905792 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51531436ns 905795 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51531720ns 905800 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51532004ns 905805 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51532288ns 905810 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51532743ns 905818 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51532913ns 905821 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51533197ns 905826 1a110850 fd5ff06f jal x0, -44 +51533482ns 905831 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51533766ns 905836 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51534163ns 905843 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51534334ns 905846 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51534789ns 905854 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51534959ns 905857 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51535243ns 905862 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51535527ns 905867 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51535812ns 905872 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51536266ns 905880 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51536437ns 905883 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51536721ns 905888 1a110850 fd5ff06f jal x0, -44 +51537005ns 905893 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51537289ns 905898 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51537687ns 905905 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51537858ns 905908 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51538312ns 905916 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51538483ns 905919 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51538767ns 905924 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51539051ns 905929 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51539335ns 905934 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51539790ns 905942 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51539960ns 905945 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51540245ns 905950 1a110850 fd5ff06f jal x0, -44 +51540529ns 905955 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51540813ns 905960 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51541211ns 905967 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51541381ns 905970 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51541836ns 905978 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51542006ns 905981 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51542290ns 905986 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51542575ns 905991 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51542859ns 905996 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51543313ns 906004 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51543484ns 906007 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51543768ns 906012 1a110850 fd5ff06f jal x0, -44 +51544052ns 906017 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51544336ns 906022 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51544734ns 906029 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51544905ns 906032 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51545359ns 906040 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51545530ns 906043 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51545814ns 906048 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51546098ns 906053 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51546382ns 906058 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51546837ns 906066 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51547008ns 906069 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51547292ns 906074 1a110850 fd5ff06f jal x0, -44 +51547576ns 906079 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51547860ns 906084 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51548258ns 906091 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51548428ns 906094 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51548883ns 906102 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51549053ns 906105 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51549338ns 906110 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51549622ns 906115 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51549906ns 906120 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51550361ns 906128 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51550531ns 906131 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51550815ns 906136 1a110850 fd5ff06f jal x0, -44 +51551099ns 906141 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51551384ns 906146 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51551781ns 906153 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51551952ns 906156 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51552407ns 906164 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51552577ns 906167 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51552861ns 906172 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51553145ns 906177 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51553430ns 906182 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51553884ns 906190 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51554055ns 906193 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51554339ns 906198 1a110850 fd5ff06f jal x0, -44 +51554623ns 906203 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51554907ns 906208 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51555305ns 906215 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51555475ns 906218 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51555930ns 906226 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51556101ns 906229 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51556385ns 906234 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51556669ns 906239 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51556953ns 906244 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51557408ns 906252 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51557578ns 906255 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51557862ns 906260 1a110850 fd5ff06f jal x0, -44 +51558147ns 906265 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51558431ns 906270 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51558829ns 906277 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51558999ns 906280 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51559454ns 906288 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51559624ns 906291 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51559908ns 906296 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51560193ns 906301 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51560477ns 906306 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51560931ns 906314 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51561102ns 906317 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51561386ns 906322 1a110850 fd5ff06f jal x0, -44 +51561670ns 906327 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51561954ns 906332 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51562352ns 906339 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51562523ns 906342 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51562977ns 906350 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51563148ns 906353 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51563432ns 906358 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51563716ns 906363 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51564000ns 906368 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51564455ns 906376 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51564625ns 906379 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51564910ns 906384 1a110850 fd5ff06f jal x0, -44 +51565194ns 906389 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51565478ns 906394 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51565876ns 906401 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51566046ns 906404 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51566501ns 906412 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51566671ns 906415 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51566956ns 906420 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51567240ns 906425 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51567524ns 906430 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51567979ns 906438 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51568149ns 906441 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51568433ns 906446 1a110850 fd5ff06f jal x0, -44 +51568717ns 906451 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51569002ns 906456 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51569399ns 906463 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51569570ns 906466 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51570024ns 906474 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51570195ns 906477 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51570479ns 906482 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51570763ns 906487 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51571047ns 906492 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51571502ns 906500 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51571673ns 906503 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51571957ns 906508 1a110850 fd5ff06f jal x0, -44 +51572241ns 906513 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51572525ns 906518 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51572923ns 906525 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51573093ns 906528 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51573548ns 906536 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51573719ns 906539 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51574003ns 906544 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51574287ns 906549 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51574571ns 906554 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51575026ns 906562 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51575196ns 906565 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51575480ns 906570 1a110850 fd5ff06f jal x0, -44 +51575765ns 906575 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51576049ns 906580 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51576447ns 906587 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51576617ns 906590 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51577072ns 906598 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51577242ns 906601 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51577526ns 906606 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51577810ns 906611 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51578095ns 906616 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51578549ns 906624 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51578720ns 906627 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51579004ns 906632 1a110850 fd5ff06f jal x0, -44 +51579288ns 906637 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51579572ns 906642 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51579970ns 906649 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51580141ns 906652 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51580595ns 906660 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51580766ns 906663 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51581050ns 906668 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51581334ns 906673 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51581618ns 906678 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51582073ns 906686 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51582243ns 906689 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51582528ns 906694 1a110850 fd5ff06f jal x0, -44 +51582812ns 906699 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51583096ns 906704 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51583494ns 906711 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51583664ns 906714 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51584119ns 906722 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51584289ns 906725 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51584573ns 906730 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51584858ns 906735 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51585142ns 906740 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51585596ns 906748 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51585767ns 906751 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51586051ns 906756 1a110850 fd5ff06f jal x0, -44 +51586335ns 906761 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51586619ns 906766 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51587017ns 906773 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51587188ns 906776 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51587642ns 906784 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51587813ns 906787 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51588097ns 906792 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51588381ns 906797 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51588665ns 906802 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51589120ns 906810 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51589291ns 906813 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51589575ns 906818 1a110850 fd5ff06f jal x0, -44 +51589859ns 906823 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51590143ns 906828 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51590541ns 906835 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51590711ns 906838 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51591166ns 906846 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51591336ns 906849 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51591621ns 906854 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51591905ns 906859 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51592189ns 906864 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51592644ns 906872 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51592814ns 906875 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51593098ns 906880 1a110850 fd5ff06f jal x0, -44 +51593382ns 906885 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51593667ns 906890 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51594064ns 906897 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51594235ns 906900 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51594690ns 906908 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51594860ns 906911 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51595144ns 906916 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51595428ns 906921 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51595713ns 906926 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51596167ns 906934 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51596338ns 906937 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51596622ns 906942 1a110850 fd5ff06f jal x0, -44 +51596906ns 906947 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51597190ns 906952 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51597588ns 906959 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51597759ns 906962 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51598213ns 906970 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51598384ns 906973 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51598668ns 906978 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51598952ns 906983 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51599236ns 906988 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51599691ns 906996 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51599861ns 906999 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51600145ns 907004 1a110850 fd5ff06f jal x0, -44 +51600430ns 907009 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51600714ns 907014 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51601112ns 907021 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51601282ns 907024 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51601737ns 907032 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51601907ns 907035 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51602191ns 907040 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51602476ns 907045 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51602760ns 907050 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51603214ns 907058 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51603385ns 907061 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51603669ns 907066 1a110850 fd5ff06f jal x0, -44 +51603953ns 907071 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51604237ns 907076 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51604635ns 907083 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51604806ns 907086 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51605260ns 907094 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51605431ns 907097 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51605715ns 907102 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51605999ns 907107 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51606283ns 907112 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51606738ns 907120 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51606908ns 907123 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51607193ns 907128 1a110850 fd5ff06f jal x0, -44 +51607477ns 907133 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51607761ns 907138 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51608159ns 907145 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51608329ns 907148 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51608784ns 907156 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51608954ns 907159 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51609239ns 907164 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51609523ns 907169 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51609807ns 907174 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51610262ns 907182 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51610432ns 907185 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51610716ns 907190 1a110850 fd5ff06f jal x0, -44 +51611000ns 907195 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51611285ns 907200 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51611682ns 907207 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51611853ns 907210 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51612307ns 907218 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51612478ns 907221 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51612762ns 907226 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51613046ns 907231 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51613330ns 907236 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51613785ns 907244 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51613956ns 907247 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51614240ns 907252 1a110850 fd5ff06f jal x0, -44 +51614524ns 907257 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51614808ns 907262 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51615206ns 907269 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51615376ns 907272 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51615831ns 907280 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51616002ns 907283 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51616286ns 907288 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51616570ns 907293 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51616854ns 907298 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51617309ns 907306 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51617479ns 907309 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51617763ns 907314 1a110850 fd5ff06f jal x0, -44 +51618048ns 907319 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51618332ns 907324 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51618730ns 907331 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51618900ns 907334 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51619355ns 907342 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51619525ns 907345 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51619809ns 907350 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51620093ns 907355 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51620378ns 907360 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51620832ns 907368 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51621003ns 907371 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51621287ns 907376 1a110850 fd5ff06f jal x0, -44 +51621571ns 907381 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51621855ns 907386 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51622253ns 907393 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51622424ns 907396 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51622878ns 907404 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51623049ns 907407 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51623333ns 907412 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51623617ns 907417 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51623901ns 907422 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51624356ns 907430 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51624526ns 907433 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51624811ns 907438 1a110850 fd5ff06f jal x0, -44 +51625095ns 907443 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51625379ns 907448 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51625777ns 907455 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51625947ns 907458 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51626402ns 907466 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51626572ns 907469 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51626856ns 907474 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51627141ns 907479 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51627425ns 907484 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51627879ns 907492 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51628050ns 907495 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51628334ns 907500 1a110850 fd5ff06f jal x0, -44 +51628618ns 907505 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51628902ns 907510 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51629300ns 907517 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51629471ns 907520 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51629925ns 907528 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51630096ns 907531 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51630380ns 907536 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51630664ns 907541 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51630948ns 907546 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51631403ns 907554 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51631574ns 907557 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51631858ns 907562 1a110850 fd5ff06f jal x0, -44 +51632142ns 907567 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51632426ns 907572 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51632824ns 907579 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51632994ns 907582 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51633449ns 907590 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51633619ns 907593 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51633904ns 907598 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51634188ns 907603 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51634472ns 907608 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51634927ns 907616 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51635097ns 907619 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51635381ns 907624 1a110850 fd5ff06f jal x0, -44 +51635665ns 907629 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51635950ns 907634 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51636347ns 907641 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51636518ns 907644 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51636973ns 907652 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51637143ns 907655 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51637427ns 907660 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51637711ns 907665 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51637996ns 907670 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51638450ns 907678 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51638621ns 907681 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51638905ns 907686 1a110850 fd5ff06f jal x0, -44 +51639189ns 907691 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51639473ns 907696 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51639871ns 907703 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51640042ns 907706 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51640496ns 907714 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51640667ns 907717 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51640951ns 907722 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51641235ns 907727 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51641519ns 907732 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51641974ns 907740 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51642144ns 907743 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51642428ns 907748 1a110850 fd5ff06f jal x0, -44 +51642713ns 907753 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51642997ns 907758 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51643395ns 907765 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51643565ns 907768 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51644020ns 907776 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51644190ns 907779 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51644474ns 907784 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51644759ns 907789 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51645043ns 907794 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51645497ns 907802 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51645668ns 907805 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51645952ns 907810 1a110850 fd5ff06f jal x0, -44 +51646236ns 907815 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51646520ns 907820 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51646918ns 907827 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51647089ns 907830 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51647543ns 907838 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51647714ns 907841 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51647998ns 907846 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51648282ns 907851 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51648566ns 907856 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51649021ns 907864 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51649191ns 907867 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51649476ns 907872 1a110850 fd5ff06f jal x0, -44 +51649760ns 907877 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51650044ns 907882 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51650442ns 907889 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51650612ns 907892 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51651067ns 907900 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51651237ns 907903 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51651522ns 907908 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51651806ns 907913 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51652090ns 907918 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51652545ns 907926 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51652715ns 907929 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51652999ns 907934 1a110850 fd5ff06f jal x0, -44 +51653283ns 907939 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51653568ns 907944 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51653965ns 907951 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51654136ns 907954 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51654591ns 907962 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51654761ns 907965 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51655045ns 907970 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51655329ns 907975 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51655613ns 907980 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51656068ns 907988 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51656239ns 907991 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51656523ns 907996 1a110850 fd5ff06f jal x0, -44 +51656807ns 908001 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51657091ns 908006 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51657489ns 908013 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51657659ns 908016 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51658114ns 908024 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51658285ns 908027 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51658569ns 908032 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51658853ns 908037 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51659137ns 908042 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51659592ns 908050 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51659762ns 908053 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51660046ns 908058 1a110850 fd5ff06f jal x0, -44 +51660331ns 908063 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51660615ns 908068 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51661013ns 908075 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51661183ns 908078 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51661638ns 908086 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51661808ns 908089 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51662092ns 908094 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51662376ns 908099 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51662661ns 908104 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51663115ns 908112 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51663286ns 908115 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51663570ns 908120 1a110850 fd5ff06f jal x0, -44 +51663854ns 908125 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51664138ns 908130 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51664536ns 908137 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51664707ns 908140 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51665161ns 908148 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51665332ns 908151 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51665616ns 908156 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51665900ns 908161 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51666184ns 908166 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51666639ns 908174 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51666809ns 908177 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51667094ns 908182 1a110850 fd5ff06f jal x0, -44 +51667378ns 908187 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51667662ns 908192 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51668060ns 908199 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51668230ns 908202 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51668685ns 908210 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51668855ns 908213 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51669139ns 908218 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51669424ns 908223 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51669708ns 908228 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51670162ns 908236 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51670333ns 908239 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51670617ns 908244 1a110850 fd5ff06f jal x0, -44 +51670901ns 908249 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51671185ns 908254 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51671583ns 908261 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51671754ns 908264 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51672208ns 908272 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51672379ns 908275 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51672663ns 908280 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51672947ns 908285 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51673231ns 908290 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51673686ns 908298 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51673857ns 908301 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51674141ns 908306 1a110850 fd5ff06f jal x0, -44 +51674425ns 908311 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51674709ns 908316 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51675107ns 908323 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51675277ns 908326 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51675732ns 908334 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51675903ns 908337 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51676187ns 908342 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51676471ns 908347 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51676755ns 908352 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51677210ns 908360 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51677380ns 908363 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51677664ns 908368 1a110850 fd5ff06f jal x0, -44 +51677948ns 908373 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51678233ns 908378 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51678630ns 908385 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51678801ns 908388 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51679256ns 908396 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51679426ns 908399 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51679710ns 908404 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51679994ns 908409 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51680279ns 908414 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51680733ns 908422 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51680904ns 908425 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51681188ns 908430 1a110850 fd5ff06f jal x0, -44 +51681472ns 908435 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51681756ns 908440 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51682154ns 908447 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51682325ns 908450 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51682779ns 908458 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51682950ns 908461 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51683234ns 908466 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51683518ns 908471 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51683802ns 908476 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51684257ns 908484 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51684427ns 908487 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51684711ns 908492 1a110850 fd5ff06f jal x0, -44 +51684996ns 908497 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51685280ns 908502 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51685678ns 908509 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51685848ns 908512 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51686303ns 908520 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51686473ns 908523 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51686757ns 908528 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51687042ns 908533 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51687326ns 908538 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51687780ns 908546 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51687951ns 908549 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51688235ns 908554 1a110850 fd5ff06f jal x0, -44 +51688519ns 908559 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51688803ns 908564 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51689201ns 908571 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51689372ns 908574 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51689826ns 908582 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51689997ns 908585 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51690281ns 908590 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51690565ns 908595 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51690849ns 908600 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51691304ns 908608 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51691474ns 908611 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51691759ns 908616 1a110850 fd5ff06f jal x0, -44 +51692043ns 908621 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51692327ns 908626 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51692725ns 908633 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51692895ns 908636 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51693350ns 908644 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51693520ns 908647 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51693805ns 908652 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51694089ns 908657 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51694373ns 908662 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51694828ns 908670 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51694998ns 908673 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51695282ns 908678 1a110850 fd5ff06f jal x0, -44 +51695566ns 908683 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51695851ns 908688 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51696248ns 908695 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51696419ns 908698 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51696874ns 908706 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51697044ns 908709 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51697328ns 908714 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51697612ns 908719 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51697896ns 908724 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51698351ns 908732 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51698522ns 908735 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51698806ns 908740 1a110850 fd5ff06f jal x0, -44 +51699090ns 908745 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51699374ns 908750 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51699772ns 908757 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51699942ns 908760 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51700397ns 908768 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51700568ns 908771 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51700852ns 908776 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51701136ns 908781 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51701420ns 908786 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51701875ns 908794 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51702045ns 908797 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51702329ns 908802 1a110850 fd5ff06f jal x0, -44 +51702614ns 908807 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51702898ns 908812 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51703296ns 908819 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51703466ns 908822 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51703921ns 908830 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51704091ns 908833 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51704375ns 908838 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51704659ns 908843 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51704944ns 908848 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51705398ns 908856 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51705569ns 908859 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51705853ns 908864 1a110850 fd5ff06f jal x0, -44 +51706137ns 908869 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51706421ns 908874 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51706819ns 908881 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51706990ns 908884 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51707444ns 908892 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51707615ns 908895 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51707899ns 908900 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51708183ns 908905 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51708467ns 908910 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51708922ns 908918 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51709092ns 908921 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51709377ns 908926 1a110850 fd5ff06f jal x0, -44 +51709661ns 908931 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51709945ns 908936 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51710343ns 908943 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51710513ns 908946 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51710968ns 908954 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51711138ns 908957 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51711423ns 908962 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51711707ns 908967 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51711991ns 908972 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51712445ns 908980 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51712616ns 908983 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51712900ns 908988 1a110850 fd5ff06f jal x0, -44 +51713184ns 908993 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51713468ns 908998 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51713866ns 909005 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51714037ns 909008 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51714491ns 909016 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51714662ns 909019 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51714946ns 909024 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51715230ns 909029 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51715514ns 909034 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51715969ns 909042 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51716140ns 909045 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51716424ns 909050 1a110850 fd5ff06f jal x0, -44 +51716708ns 909055 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51716992ns 909060 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51717390ns 909067 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51717560ns 909070 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51718015ns 909078 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51718186ns 909081 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51718470ns 909086 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51718754ns 909091 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51719038ns 909096 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51719493ns 909104 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51719663ns 909107 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51719947ns 909112 1a110850 fd5ff06f jal x0, -44 +51720231ns 909117 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51720516ns 909122 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51720913ns 909129 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51721084ns 909132 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51721539ns 909140 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51721709ns 909143 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51721993ns 909148 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51722277ns 909153 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51722562ns 909158 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51723016ns 909166 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51723187ns 909169 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51723471ns 909174 1a110850 fd5ff06f jal x0, -44 +51723755ns 909179 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51724039ns 909184 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51724437ns 909191 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51724608ns 909194 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51725062ns 909202 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51725233ns 909205 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51725517ns 909210 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51725801ns 909215 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51726085ns 909220 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51726540ns 909228 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51726710ns 909231 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51726994ns 909236 1a110850 fd5ff06f jal x0, -44 +51727279ns 909241 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51727563ns 909246 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51727961ns 909253 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51728131ns 909256 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51728586ns 909264 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51728756ns 909267 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51729040ns 909272 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51729325ns 909277 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51729609ns 909282 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51730063ns 909290 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51730234ns 909293 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51730518ns 909298 1a110850 fd5ff06f jal x0, -44 +51730802ns 909303 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51731086ns 909308 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51731484ns 909315 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51731655ns 909318 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51732109ns 909326 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51732280ns 909329 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51732564ns 909334 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51732848ns 909339 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51733132ns 909344 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51733587ns 909352 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51733757ns 909355 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51734042ns 909360 1a110850 fd5ff06f jal x0, -44 +51734326ns 909365 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51734610ns 909370 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51735008ns 909377 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51735178ns 909380 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51735633ns 909388 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51735803ns 909391 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51736088ns 909396 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51736372ns 909401 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51736656ns 909406 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51737111ns 909414 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51737281ns 909417 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51737565ns 909422 1a110850 fd5ff06f jal x0, -44 +51737849ns 909427 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51738134ns 909432 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51738531ns 909439 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51738702ns 909442 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51739157ns 909450 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51739327ns 909453 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51739611ns 909458 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51739895ns 909463 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51740179ns 909468 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51740634ns 909476 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51740805ns 909479 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51741089ns 909484 1a110850 fd5ff06f jal x0, -44 +51741373ns 909489 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51741657ns 909494 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51742055ns 909501 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51742225ns 909504 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51742680ns 909512 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51742851ns 909515 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51743135ns 909520 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51743419ns 909525 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51743703ns 909530 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51744158ns 909538 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51744328ns 909541 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51744612ns 909546 1a110850 fd5ff06f jal x0, -44 +51744897ns 909551 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51745181ns 909556 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51745579ns 909563 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51745749ns 909566 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51746204ns 909574 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51746374ns 909577 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51746658ns 909582 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51746943ns 909587 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51747227ns 909592 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51747681ns 909600 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51747852ns 909603 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51748136ns 909608 1a110850 fd5ff06f jal x0, -44 +51748420ns 909613 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51748704ns 909618 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51749102ns 909625 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51749273ns 909628 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51749727ns 909636 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51749898ns 909639 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51750182ns 909644 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51750466ns 909649 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51750750ns 909654 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51751205ns 909662 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51751375ns 909665 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51751660ns 909670 1a110850 fd5ff06f jal x0, -44 +51751944ns 909675 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51752228ns 909680 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51752626ns 909687 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51752796ns 909690 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51753251ns 909698 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51753421ns 909701 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51753706ns 909706 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51753990ns 909711 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51754274ns 909716 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51754728ns 909724 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51754899ns 909727 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51755183ns 909732 1a110850 fd5ff06f jal x0, -44 +51755467ns 909737 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51755751ns 909742 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51756149ns 909749 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51756320ns 909752 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51756774ns 909760 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51756945ns 909763 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51757229ns 909768 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51757513ns 909773 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51757797ns 909778 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51758252ns 909786 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51758423ns 909789 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51758707ns 909794 1a110850 fd5ff06f jal x0, -44 +51758991ns 909799 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51759275ns 909804 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51759673ns 909811 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51759843ns 909814 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51760298ns 909822 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51760469ns 909825 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51760753ns 909830 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51761037ns 909835 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51761321ns 909840 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51761776ns 909848 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51761946ns 909851 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51762230ns 909856 1a110850 fd5ff06f jal x0, -44 +51762514ns 909861 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51762799ns 909866 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51763196ns 909873 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51763367ns 909876 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51763822ns 909884 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51763992ns 909887 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51764276ns 909892 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51764560ns 909897 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51764845ns 909902 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51765299ns 909910 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51765470ns 909913 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51765754ns 909918 1a110850 fd5ff06f jal x0, -44 +51766038ns 909923 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51766322ns 909928 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51766720ns 909935 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51766891ns 909938 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51767345ns 909946 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51767516ns 909949 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51767800ns 909954 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51768084ns 909959 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51768368ns 909964 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51768823ns 909972 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51768993ns 909975 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51769277ns 909980 1a110850 fd5ff06f jal x0, -44 +51769562ns 909985 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51769846ns 909990 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51770244ns 909997 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51770414ns 910000 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51770869ns 910008 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51771039ns 910011 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51771323ns 910016 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51771608ns 910021 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51771892ns 910026 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51772346ns 910034 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51772517ns 910037 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51772801ns 910042 1a110850 fd5ff06f jal x0, -44 +51773085ns 910047 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51773369ns 910052 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51773767ns 910059 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51773938ns 910062 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51774392ns 910070 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51774563ns 910073 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51774847ns 910078 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51775131ns 910083 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51775415ns 910088 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51775870ns 910096 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51776040ns 910099 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51776325ns 910104 1a110850 fd5ff06f jal x0, -44 +51776609ns 910109 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51776893ns 910114 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51777291ns 910121 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51777461ns 910124 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51777916ns 910132 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51778086ns 910135 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51778371ns 910140 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51778655ns 910145 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51778939ns 910150 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51779394ns 910158 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51779564ns 910161 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51779848ns 910166 1a110850 fd5ff06f jal x0, -44 +51780132ns 910171 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51780417ns 910176 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51780814ns 910183 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51780985ns 910186 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51781440ns 910194 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51781610ns 910197 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51781894ns 910202 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51782178ns 910207 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51782463ns 910212 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51782917ns 910220 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51783088ns 910223 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51783372ns 910228 1a110850 fd5ff06f jal x0, -44 +51783656ns 910233 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51783940ns 910238 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51784338ns 910245 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51784508ns 910248 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51784963ns 910256 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51785134ns 910259 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51785418ns 910264 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51785702ns 910269 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51785986ns 910274 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51786441ns 910282 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51786611ns 910285 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51786895ns 910290 1a110850 fd5ff06f jal x0, -44 +51787180ns 910295 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51787464ns 910300 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51787862ns 910307 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51788032ns 910310 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51788487ns 910318 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51788657ns 910321 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51788941ns 910326 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51789226ns 910331 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51789510ns 910336 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51789964ns 910344 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51790135ns 910347 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51790419ns 910352 1a110850 fd5ff06f jal x0, -44 +51790703ns 910357 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51790987ns 910362 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51791385ns 910369 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51791556ns 910372 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51792010ns 910380 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51792181ns 910383 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51792465ns 910388 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51792749ns 910393 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51793033ns 910398 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51793488ns 910406 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51793658ns 910409 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51793943ns 910414 1a110850 fd5ff06f jal x0, -44 +51794227ns 910419 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51794511ns 910424 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51794909ns 910431 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51795079ns 910434 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51795534ns 910442 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51795704ns 910445 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51795989ns 910450 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51796273ns 910455 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51796557ns 910460 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51797011ns 910468 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51797182ns 910471 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51797466ns 910476 1a110850 fd5ff06f jal x0, -44 +51797750ns 910481 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51798034ns 910486 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51798432ns 910493 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51798603ns 910496 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51799057ns 910504 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51799228ns 910507 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51799512ns 910512 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51799796ns 910517 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51800080ns 910522 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51800535ns 910530 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51800706ns 910533 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51800990ns 910538 1a110850 fd5ff06f jal x0, -44 +51801274ns 910543 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51801558ns 910548 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51801956ns 910555 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51802126ns 910558 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51802581ns 910566 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51802752ns 910569 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51803036ns 910574 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51803320ns 910579 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51803604ns 910584 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51804059ns 910592 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51804229ns 910595 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51804513ns 910600 1a110850 fd5ff06f jal x0, -44 +51804797ns 910605 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51805082ns 910610 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51805479ns 910617 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51805650ns 910620 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51806105ns 910628 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51806275ns 910631 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51806559ns 910636 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51806843ns 910641 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51807128ns 910646 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51807582ns 910654 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51807753ns 910657 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51808037ns 910662 1a110850 fd5ff06f jal x0, -44 +51808321ns 910667 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51808605ns 910672 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51809003ns 910679 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51809174ns 910682 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51809628ns 910690 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51809799ns 910693 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51810083ns 910698 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51810367ns 910703 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51810651ns 910708 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51811106ns 910716 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51811276ns 910719 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51811560ns 910724 1a110850 fd5ff06f jal x0, -44 +51811845ns 910729 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51812129ns 910734 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51812527ns 910741 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51812697ns 910744 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51813152ns 910752 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51813322ns 910755 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51813606ns 910760 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51813891ns 910765 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51814175ns 910770 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51814629ns 910778 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51814800ns 910781 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51815084ns 910786 1a110850 fd5ff06f jal x0, -44 +51815368ns 910791 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51815652ns 910796 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51816050ns 910803 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51816221ns 910806 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51816675ns 910814 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51816846ns 910817 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51817130ns 910822 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51817414ns 910827 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51817698ns 910832 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51818153ns 910840 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51818323ns 910843 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51818608ns 910848 1a110850 fd5ff06f jal x0, -44 +51818892ns 910853 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51819176ns 910858 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51819574ns 910865 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51819744ns 910868 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51820199ns 910876 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51820369ns 910879 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51820654ns 910884 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51820938ns 910889 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51821222ns 910894 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51821677ns 910902 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51821847ns 910905 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51822131ns 910910 1a110850 fd5ff06f jal x0, -44 +51822415ns 910915 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51822700ns 910920 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51823097ns 910927 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51823268ns 910930 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51823723ns 910938 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51823893ns 910941 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51824177ns 910946 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51824461ns 910951 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51824746ns 910956 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51825200ns 910964 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51825371ns 910967 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51825655ns 910972 1a110850 fd5ff06f jal x0, -44 +51825939ns 910977 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51826223ns 910982 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51826621ns 910989 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51826791ns 910992 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51827246ns 911000 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51827417ns 911003 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51827701ns 911008 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51827985ns 911013 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51828269ns 911018 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51828724ns 911026 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51828894ns 911029 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51829178ns 911034 1a110850 fd5ff06f jal x0, -44 +51829463ns 911039 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51829747ns 911044 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51830145ns 911051 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51830315ns 911054 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51830770ns 911062 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51830940ns 911065 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51831224ns 911070 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51831509ns 911075 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51831793ns 911080 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51832247ns 911088 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51832418ns 911091 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51832702ns 911096 1a110850 fd5ff06f jal x0, -44 +51832986ns 911101 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51833270ns 911106 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51833668ns 911113 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51833839ns 911116 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51834293ns 911124 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51834464ns 911127 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51834748ns 911132 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51835032ns 911137 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51835316ns 911142 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51835771ns 911150 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51835941ns 911153 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51836226ns 911158 1a110850 fd5ff06f jal x0, -44 +51836510ns 911163 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51836794ns 911168 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51837192ns 911175 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51837362ns 911178 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51837817ns 911186 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51837987ns 911189 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51838272ns 911194 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51838556ns 911199 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51838840ns 911204 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51839295ns 911212 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51839465ns 911215 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51839749ns 911220 1a110850 fd5ff06f jal x0, -44 +51840033ns 911225 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51840317ns 911230 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51840715ns 911237 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51840886ns 911240 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51841340ns 911248 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51841511ns 911251 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51841795ns 911256 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51842079ns 911261 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51842363ns 911266 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51842818ns 911274 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51842989ns 911277 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51843273ns 911282 1a110850 fd5ff06f jal x0, -44 +51843557ns 911287 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51843841ns 911292 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51844239ns 911299 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51844409ns 911302 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51844864ns 911310 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51845035ns 911313 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51845319ns 911318 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51845603ns 911323 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51845887ns 911328 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51846342ns 911336 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51846512ns 911339 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51846796ns 911344 1a110850 fd5ff06f jal x0, -44 +51847080ns 911349 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51847365ns 911354 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51847762ns 911361 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51847933ns 911364 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51848388ns 911372 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51848558ns 911375 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51848842ns 911380 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51849126ns 911385 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51849411ns 911390 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51849865ns 911398 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51850036ns 911401 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51850320ns 911406 1a110850 fd5ff06f jal x0, -44 +51850604ns 911411 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51850888ns 911416 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51851286ns 911423 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51851457ns 911426 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51851911ns 911434 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51852082ns 911437 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51852366ns 911442 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51852650ns 911447 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51852934ns 911452 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51853389ns 911460 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51853559ns 911463 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51853843ns 911468 1a110850 fd5ff06f jal x0, -44 +51854128ns 911473 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51854412ns 911478 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51854810ns 911485 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51854980ns 911488 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51855435ns 911496 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51855605ns 911499 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51855889ns 911504 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51856174ns 911509 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51856458ns 911514 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51856912ns 911522 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51857083ns 911525 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51857367ns 911530 1a110850 fd5ff06f jal x0, -44 +51857651ns 911535 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51857935ns 911540 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51858333ns 911547 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51858504ns 911550 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51858958ns 911558 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51859129ns 911561 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51859413ns 911566 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51859697ns 911571 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51859981ns 911576 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51860436ns 911584 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51860607ns 911587 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51860891ns 911592 1a110850 fd5ff06f jal x0, -44 +51861175ns 911597 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51861459ns 911602 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51861857ns 911609 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51862027ns 911612 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51862482ns 911620 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51862652ns 911623 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51862937ns 911628 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51863221ns 911633 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51863505ns 911638 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51863960ns 911646 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51864130ns 911649 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51864414ns 911654 1a110850 fd5ff06f jal x0, -44 +51864698ns 911659 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51864983ns 911664 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51865380ns 911671 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51865551ns 911674 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51866006ns 911682 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51866176ns 911685 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51866460ns 911690 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51866744ns 911695 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51867029ns 911700 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51867483ns 911708 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51867654ns 911711 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51867938ns 911716 1a110850 fd5ff06f jal x0, -44 +51868222ns 911721 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51868506ns 911726 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51868904ns 911733 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51869074ns 911736 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51869529ns 911744 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51869700ns 911747 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51869984ns 911752 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51870268ns 911757 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51870552ns 911762 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51871007ns 911770 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51871177ns 911773 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51871461ns 911778 1a110850 fd5ff06f jal x0, -44 +51871746ns 911783 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51872030ns 911788 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51872428ns 911795 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51872598ns 911798 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51873053ns 911806 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51873223ns 911809 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51873507ns 911814 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51873792ns 911819 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51874076ns 911824 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51874530ns 911832 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51874701ns 911835 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51874985ns 911840 1a110850 fd5ff06f jal x0, -44 +51875269ns 911845 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51875553ns 911850 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51875951ns 911857 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51876122ns 911860 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51876576ns 911868 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51876747ns 911871 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51877031ns 911876 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51877315ns 911881 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51877599ns 911886 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51878054ns 911894 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51878224ns 911897 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51878509ns 911902 1a110850 fd5ff06f jal x0, -44 +51878793ns 911907 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51879077ns 911912 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51879475ns 911919 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51879645ns 911922 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51880100ns 911930 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51880270ns 911933 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51880555ns 911938 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51880839ns 911943 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51881123ns 911948 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51881578ns 911956 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51881748ns 911959 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51882032ns 911964 1a110850 fd5ff06f jal x0, -44 +51882316ns 911969 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51882600ns 911974 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51882998ns 911981 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51883169ns 911984 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51883623ns 911992 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51883794ns 911995 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51884078ns 912000 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51884362ns 912005 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51884646ns 912010 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51885101ns 912018 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51885272ns 912021 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51885556ns 912026 1a110850 fd5ff06f jal x0, -44 +51885840ns 912031 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51886124ns 912036 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51886522ns 912043 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51886692ns 912046 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51887147ns 912054 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51887318ns 912057 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51887602ns 912062 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51887886ns 912067 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51888170ns 912072 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51888625ns 912080 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51888795ns 912083 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51889079ns 912088 1a110850 fd5ff06f jal x0, -44 +51889363ns 912093 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51889648ns 912098 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51890045ns 912105 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51890216ns 912108 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51890671ns 912116 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51890841ns 912119 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51891125ns 912124 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51891409ns 912129 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51891694ns 912134 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51892148ns 912142 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51892319ns 912145 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51892603ns 912150 1a110850 fd5ff06f jal x0, -44 +51892887ns 912155 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51893171ns 912160 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51893569ns 912167 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51893740ns 912170 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51894194ns 912178 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51894365ns 912181 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51894649ns 912186 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51894933ns 912191 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51895217ns 912196 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51895672ns 912204 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51895842ns 912207 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51896127ns 912212 1a110850 fd5ff06f jal x0, -44 +51896411ns 912217 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51896695ns 912222 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51897093ns 912229 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51897263ns 912232 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51897718ns 912240 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51897888ns 912243 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51898172ns 912248 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51898457ns 912253 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51898741ns 912258 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51899195ns 912266 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51899366ns 912269 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51899650ns 912274 1a110850 fd5ff06f jal x0, -44 +51899934ns 912279 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51900218ns 912284 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51900616ns 912291 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51900787ns 912294 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51901241ns 912302 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51901412ns 912305 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51901696ns 912310 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51901980ns 912315 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51902264ns 912320 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51902719ns 912328 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51902890ns 912331 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51903174ns 912336 1a110850 fd5ff06f jal x0, -44 +51903458ns 912341 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51903742ns 912346 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51904140ns 912353 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51904310ns 912356 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51904765ns 912364 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51904935ns 912367 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51905220ns 912372 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51905504ns 912377 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51905788ns 912382 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51906243ns 912390 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51906413ns 912393 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51906697ns 912398 1a110850 fd5ff06f jal x0, -44 +51906981ns 912403 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51907266ns 912408 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51907663ns 912415 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51907834ns 912418 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51908289ns 912426 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51908459ns 912429 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51908743ns 912434 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51909027ns 912439 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51909312ns 912444 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51909766ns 912452 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51909937ns 912455 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51910221ns 912460 1a110850 fd5ff06f jal x0, -44 +51910505ns 912465 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51910789ns 912470 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51911187ns 912477 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51911357ns 912480 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51911812ns 912488 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51911983ns 912491 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51912267ns 912496 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51912551ns 912501 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51912835ns 912506 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51913290ns 912514 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51913460ns 912517 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51913744ns 912522 1a110850 fd5ff06f jal x0, -44 +51914029ns 912527 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51914313ns 912532 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51914711ns 912539 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51914881ns 912542 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51915336ns 912550 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51915506ns 912553 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51915790ns 912558 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51916075ns 912563 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51916359ns 912568 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51916813ns 912576 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51916984ns 912579 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51917268ns 912584 1a110850 fd5ff06f jal x0, -44 +51917552ns 912589 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51917836ns 912594 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51918234ns 912601 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51918405ns 912604 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51918859ns 912612 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51919030ns 912615 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51919314ns 912620 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51919598ns 912625 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51919882ns 912630 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51920337ns 912638 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51920507ns 912641 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51920792ns 912646 1a110850 fd5ff06f jal x0, -44 +51921076ns 912651 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51921360ns 912656 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51921758ns 912663 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51921928ns 912666 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51922383ns 912674 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51922553ns 912677 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51922838ns 912682 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51923122ns 912687 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51923406ns 912692 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51923861ns 912700 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51924031ns 912703 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51924315ns 912708 1a110850 fd5ff06f jal x0, -44 +51924599ns 912713 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51924883ns 912718 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51925281ns 912725 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51925452ns 912728 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51925906ns 912736 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51926077ns 912739 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51926361ns 912744 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51926645ns 912749 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51926929ns 912754 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51927384ns 912762 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51927555ns 912765 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51927839ns 912770 1a110850 fd5ff06f jal x0, -44 +51928123ns 912775 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51928407ns 912780 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51928805ns 912787 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51928975ns 912790 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51929430ns 912798 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51929601ns 912801 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51929885ns 912806 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51930169ns 912811 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51930453ns 912816 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51930908ns 912824 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51931078ns 912827 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51931362ns 912832 1a110850 fd5ff06f jal x0, -44 +51931647ns 912837 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51931931ns 912842 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51932328ns 912849 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51932499ns 912852 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51932954ns 912860 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51933124ns 912863 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51933408ns 912868 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51933692ns 912873 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51933977ns 912878 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51934431ns 912886 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51934602ns 912889 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51934886ns 912894 1a110850 fd5ff06f jal x0, -44 +51935170ns 912899 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51935454ns 912904 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51935852ns 912911 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51936023ns 912914 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51936477ns 912922 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51936648ns 912925 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51936932ns 912930 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51937216ns 912935 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51937500ns 912940 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51937955ns 912948 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51938125ns 912951 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51938410ns 912956 1a110850 fd5ff06f jal x0, -44 +51938694ns 912961 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51938978ns 912966 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51939376ns 912973 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51939546ns 912976 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51940001ns 912984 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51940171ns 912987 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51940455ns 912992 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51940740ns 912997 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51941024ns 913002 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51941478ns 913010 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51941649ns 913013 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51941933ns 913018 1a110850 fd5ff06f jal x0, -44 +51942217ns 913023 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51942501ns 913028 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51942899ns 913035 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51943070ns 913038 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51943524ns 913046 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51943695ns 913049 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51943979ns 913054 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51944263ns 913059 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51944547ns 913064 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51945002ns 913072 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51945173ns 913075 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51945457ns 913080 1a110850 fd5ff06f jal x0, -44 +51945741ns 913085 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51946025ns 913090 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51946423ns 913097 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51946593ns 913100 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51947048ns 913108 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51947218ns 913111 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51947503ns 913116 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51947787ns 913121 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51948071ns 913126 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51948526ns 913134 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51948696ns 913137 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51948980ns 913142 1a110850 fd5ff06f jal x0, -44 +51949264ns 913147 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51949549ns 913152 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51949946ns 913159 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51950117ns 913162 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51950572ns 913170 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51950742ns 913173 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51951026ns 913178 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51951310ns 913183 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51951595ns 913188 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51952049ns 913196 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51952220ns 913199 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51952504ns 913204 1a110850 fd5ff06f jal x0, -44 +51952788ns 913209 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51953072ns 913214 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51953470ns 913221 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51953640ns 913224 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51954095ns 913232 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51954266ns 913235 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51954550ns 913240 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51954834ns 913245 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51955118ns 913250 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51955573ns 913258 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51955743ns 913261 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51956027ns 913266 1a110850 fd5ff06f jal x0, -44 +51956312ns 913271 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51956596ns 913276 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51956994ns 913283 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51957164ns 913286 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51957619ns 913294 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51957789ns 913297 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51958073ns 913302 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51958358ns 913307 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51958642ns 913312 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51959096ns 913320 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51959267ns 913323 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51959551ns 913328 1a110850 fd5ff06f jal x0, -44 +51959835ns 913333 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51960119ns 913338 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51960517ns 913345 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51960688ns 913348 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51961142ns 913356 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51961313ns 913359 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51961597ns 913364 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51961881ns 913369 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51962165ns 913374 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51962620ns 913382 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51962790ns 913385 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51963075ns 913390 1a110850 fd5ff06f jal x0, -44 +51963359ns 913395 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51963643ns 913400 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51964041ns 913407 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51964211ns 913410 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51964666ns 913418 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51964836ns 913421 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51965121ns 913426 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51965405ns 913431 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51965689ns 913436 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51966144ns 913444 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51966314ns 913447 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51966598ns 913452 1a110850 fd5ff06f jal x0, -44 +51966882ns 913457 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51967167ns 913462 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51967564ns 913469 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51967735ns 913472 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51968189ns 913480 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51968360ns 913483 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51968644ns 913488 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51968928ns 913493 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51969212ns 913498 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51969667ns 913506 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51969838ns 913509 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51970122ns 913514 1a110850 fd5ff06f jal x0, -44 +51970406ns 913519 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51970690ns 913524 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51971088ns 913531 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51971258ns 913534 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51971713ns 913542 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51971884ns 913545 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51972168ns 913550 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51972452ns 913555 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51972736ns 913560 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51973191ns 913568 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51973361ns 913571 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51973645ns 913576 1a110850 fd5ff06f jal x0, -44 +51973930ns 913581 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51974214ns 913586 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51974611ns 913593 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51974782ns 913596 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51975237ns 913604 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51975407ns 913607 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51975691ns 913612 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51975975ns 913617 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51976260ns 913622 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51976714ns 913630 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51976885ns 913633 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51977169ns 913638 1a110850 fd5ff06f jal x0, -44 +51977453ns 913643 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51977737ns 913648 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51978135ns 913655 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51978306ns 913658 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51978760ns 913666 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51978931ns 913669 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51979215ns 913674 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51979499ns 913679 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51979783ns 913684 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51980238ns 913692 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51980408ns 913695 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51980693ns 913700 1a110850 fd5ff06f jal x0, -44 +51980977ns 913705 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51981261ns 913710 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51981659ns 913717 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51981829ns 913720 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51982284ns 913728 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51982454ns 913731 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51982738ns 913736 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51983023ns 913741 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51983307ns 913746 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51983761ns 913754 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51983932ns 913757 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51984216ns 913762 1a110850 fd5ff06f jal x0, -44 +51984500ns 913767 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51984784ns 913772 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51985182ns 913779 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51985353ns 913782 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51985807ns 913790 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51985978ns 913793 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51986262ns 913798 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51986546ns 913803 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51986830ns 913808 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51987285ns 913816 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51987456ns 913819 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51987740ns 913824 1a110850 fd5ff06f jal x0, -44 +51988024ns 913829 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51988308ns 913834 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51988706ns 913841 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51988876ns 913844 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51989331ns 913852 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51989501ns 913855 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51989786ns 913860 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51990070ns 913865 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51990354ns 913870 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51990809ns 913878 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51990979ns 913881 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51991263ns 913886 1a110850 fd5ff06f jal x0, -44 +51991547ns 913891 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51991832ns 913896 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51992229ns 913903 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51992400ns 913906 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51992855ns 913914 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51993025ns 913917 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51993309ns 913922 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51993593ns 913927 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51993878ns 913932 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51994332ns 913940 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51994503ns 913943 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51994787ns 913948 1a110850 fd5ff06f jal x0, -44 +51995071ns 913953 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51995355ns 913958 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51995753ns 913965 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51995923ns 913968 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51996378ns 913976 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +51996549ns 913979 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +51996833ns 913984 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51997117ns 913989 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51997401ns 913994 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51997856ns 914002 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +51998026ns 914005 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +51998310ns 914010 1a110850 fd5ff06f jal x0, -44 +51998595ns 914015 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +51998879ns 914020 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +51999277ns 914027 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +51999447ns 914030 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +51999902ns 914038 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52000072ns 914041 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52000356ns 914046 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52000641ns 914051 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52000925ns 914056 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52001379ns 914064 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52001550ns 914067 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52001834ns 914072 1a110850 fd5ff06f jal x0, -44 +52002118ns 914077 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52002402ns 914082 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52002800ns 914089 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52002971ns 914092 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52003425ns 914100 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52003596ns 914103 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52003880ns 914108 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52004164ns 914113 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52004448ns 914118 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52004903ns 914126 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52005073ns 914129 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52005358ns 914134 1a110850 fd5ff06f jal x0, -44 +52005642ns 914139 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52005926ns 914144 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52006324ns 914151 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52006494ns 914154 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52006949ns 914162 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52007119ns 914165 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52007404ns 914170 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52007688ns 914175 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52007972ns 914180 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52008427ns 914188 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52008597ns 914191 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52008881ns 914196 1a110850 fd5ff06f jal x0, -44 +52009165ns 914201 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52009450ns 914206 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52009847ns 914213 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52010018ns 914216 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52010472ns 914224 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52010643ns 914227 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52010927ns 914232 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52011211ns 914237 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52011495ns 914242 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52011950ns 914250 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52012121ns 914253 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52012405ns 914258 1a110850 fd5ff06f jal x0, -44 +52012689ns 914263 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52012973ns 914268 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52013371ns 914275 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52013541ns 914278 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52013996ns 914286 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52014167ns 914289 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52014451ns 914294 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52014735ns 914299 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52015019ns 914304 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52015474ns 914312 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52015644ns 914315 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52015928ns 914320 1a110850 fd5ff06f jal x0, -44 +52016213ns 914325 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52016497ns 914330 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52016895ns 914337 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52017065ns 914340 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52017520ns 914348 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52017690ns 914351 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52017974ns 914356 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52018258ns 914361 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52018543ns 914366 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52018997ns 914374 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52019168ns 914377 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52019452ns 914382 1a110850 fd5ff06f jal x0, -44 +52019736ns 914387 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52020020ns 914392 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52020418ns 914399 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52020589ns 914402 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52021043ns 914410 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52021214ns 914413 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52021498ns 914418 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52021782ns 914423 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52022066ns 914428 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52022521ns 914436 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52022691ns 914439 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52022976ns 914444 1a110850 fd5ff06f jal x0, -44 +52023260ns 914449 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52023544ns 914454 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52023942ns 914461 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52024112ns 914464 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52024567ns 914472 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52024737ns 914475 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52025021ns 914480 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52025306ns 914485 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52025590ns 914490 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52026044ns 914498 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52026215ns 914501 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52026499ns 914506 1a110850 fd5ff06f jal x0, -44 +52026783ns 914511 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52027067ns 914516 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52027465ns 914523 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52027636ns 914526 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52028090ns 914534 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52028261ns 914537 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52028545ns 914542 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52028829ns 914547 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52029113ns 914552 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52029568ns 914560 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52029739ns 914563 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52030023ns 914568 1a110850 fd5ff06f jal x0, -44 +52030307ns 914573 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52030591ns 914578 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52030989ns 914585 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52031159ns 914588 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52031614ns 914596 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52031784ns 914599 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52032069ns 914604 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52032353ns 914609 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52032637ns 914614 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52033092ns 914622 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52033262ns 914625 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52033546ns 914630 1a110850 fd5ff06f jal x0, -44 +52033830ns 914635 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52034115ns 914640 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52034512ns 914647 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52034683ns 914650 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52035138ns 914658 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52035308ns 914661 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52035592ns 914666 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52035876ns 914671 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52036161ns 914676 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52036615ns 914684 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52036786ns 914687 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52037070ns 914692 1a110850 fd5ff06f jal x0, -44 +52037354ns 914697 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52037638ns 914702 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52038036ns 914709 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52038207ns 914712 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52038661ns 914720 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52038832ns 914723 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52039116ns 914728 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52039400ns 914733 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52039684ns 914738 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52040139ns 914746 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52040309ns 914749 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52040593ns 914754 1a110850 fd5ff06f jal x0, -44 +52040878ns 914759 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52041162ns 914764 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52041560ns 914771 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52041730ns 914774 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52042185ns 914782 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52042355ns 914785 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52042639ns 914790 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52042924ns 914795 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52043208ns 914800 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52043662ns 914808 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52043833ns 914811 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52044117ns 914816 1a110850 fd5ff06f jal x0, -44 +52044401ns 914821 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52044685ns 914826 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52045083ns 914833 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52045254ns 914836 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52045708ns 914844 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52045879ns 914847 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52046163ns 914852 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52046447ns 914857 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52046731ns 914862 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52047186ns 914870 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52047356ns 914873 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52047641ns 914878 1a110850 fd5ff06f jal x0, -44 +52047925ns 914883 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52048209ns 914888 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52048607ns 914895 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52048777ns 914898 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52049232ns 914906 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52049402ns 914909 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52049687ns 914914 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52049971ns 914919 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52050255ns 914924 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52050710ns 914932 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52050880ns 914935 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52051164ns 914940 1a110850 fd5ff06f jal x0, -44 +52051448ns 914945 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52051733ns 914950 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52052130ns 914957 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52052301ns 914960 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52052755ns 914968 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52052926ns 914971 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52053210ns 914976 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52053494ns 914981 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52053778ns 914986 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52054233ns 914994 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52054404ns 914997 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52054688ns 915002 1a110850 fd5ff06f jal x0, -44 +52054972ns 915007 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52055256ns 915012 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52055654ns 915019 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52055824ns 915022 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52056279ns 915030 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52056450ns 915033 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52056734ns 915038 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52057018ns 915043 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52057302ns 915048 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52057757ns 915056 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52057927ns 915059 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52058211ns 915064 1a110850 fd5ff06f jal x0, -44 +52058496ns 915069 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52058780ns 915074 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52059178ns 915081 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52059348ns 915084 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52059803ns 915092 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52059973ns 915095 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52060257ns 915100 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52060541ns 915105 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52060826ns 915110 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52061280ns 915118 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52061451ns 915121 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52061735ns 915126 1a110850 fd5ff06f jal x0, -44 +52062019ns 915131 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52062303ns 915136 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52062701ns 915143 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52062872ns 915146 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52063326ns 915154 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52063497ns 915157 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52063781ns 915162 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52064065ns 915167 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52064349ns 915172 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52064804ns 915180 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52064974ns 915183 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52065259ns 915188 1a110850 fd5ff06f jal x0, -44 +52065543ns 915193 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52065827ns 915198 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52066225ns 915205 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52066395ns 915208 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52066850ns 915216 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52067020ns 915219 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52067304ns 915224 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52067589ns 915229 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52067873ns 915234 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52068327ns 915242 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52068498ns 915245 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52068782ns 915250 1a110850 fd5ff06f jal x0, -44 +52069066ns 915255 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52069350ns 915260 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52069748ns 915267 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52069919ns 915270 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52070373ns 915278 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52070544ns 915281 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52070828ns 915286 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52071112ns 915291 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52071396ns 915296 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52071851ns 915304 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52072022ns 915307 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52072306ns 915312 1a110850 fd5ff06f jal x0, -44 +52072590ns 915317 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52072874ns 915322 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52073272ns 915329 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52073442ns 915332 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52073897ns 915340 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52074067ns 915343 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52074352ns 915348 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52074636ns 915353 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52074920ns 915358 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52075375ns 915366 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52075545ns 915369 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52075829ns 915374 1a110850 fd5ff06f jal x0, -44 +52076113ns 915379 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52076398ns 915384 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52076795ns 915391 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52076966ns 915394 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52077421ns 915402 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52077591ns 915405 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52077875ns 915410 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52078159ns 915415 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52078444ns 915420 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52078898ns 915428 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52079069ns 915431 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52079353ns 915436 1a110850 fd5ff06f jal x0, -44 +52079637ns 915441 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52079921ns 915446 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52080319ns 915453 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52080490ns 915456 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52080944ns 915464 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52081115ns 915467 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52081399ns 915472 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52081683ns 915477 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52081967ns 915482 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52082422ns 915490 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52082592ns 915493 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52082876ns 915498 1a110850 fd5ff06f jal x0, -44 +52083161ns 915503 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52083445ns 915508 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52083843ns 915515 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52084013ns 915518 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52084468ns 915526 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52084638ns 915529 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52084922ns 915534 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52085207ns 915539 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52085491ns 915544 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52085945ns 915552 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52086116ns 915555 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52086400ns 915560 1a110850 fd5ff06f jal x0, -44 +52086684ns 915565 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52086968ns 915570 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52087366ns 915577 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52087537ns 915580 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52087991ns 915588 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52088162ns 915591 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52088446ns 915596 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52088730ns 915601 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52089014ns 915606 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52089469ns 915614 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52089639ns 915617 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52089924ns 915622 1a110850 fd5ff06f jal x0, -44 +52090208ns 915627 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52090492ns 915632 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52090890ns 915639 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52091060ns 915642 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52091515ns 915650 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52091685ns 915653 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52091970ns 915658 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52092254ns 915663 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52092538ns 915668 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52092993ns 915676 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52093163ns 915679 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52093447ns 915684 1a110850 fd5ff06f jal x0, -44 +52093731ns 915689 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52094016ns 915694 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52094413ns 915701 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52094584ns 915704 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52095039ns 915712 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52095209ns 915715 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52095493ns 915720 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52095777ns 915725 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52096061ns 915730 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52096516ns 915738 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52096687ns 915741 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52096971ns 915746 1a110850 fd5ff06f jal x0, -44 +52097255ns 915751 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52097539ns 915756 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52097937ns 915763 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52098107ns 915766 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52098562ns 915774 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52098733ns 915777 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52099017ns 915782 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52099301ns 915787 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52099585ns 915792 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52100040ns 915800 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52100210ns 915803 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52100494ns 915808 1a110850 fd5ff06f jal x0, -44 +52100779ns 915813 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52101063ns 915818 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52101461ns 915825 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52101631ns 915828 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52102086ns 915836 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52102256ns 915839 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52102540ns 915844 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52102824ns 915849 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52103109ns 915854 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52103563ns 915862 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52103734ns 915865 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52104018ns 915870 1a110850 fd5ff06f jal x0, -44 +52104302ns 915875 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52104586ns 915880 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52104984ns 915887 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52105155ns 915890 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52105609ns 915898 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52105780ns 915901 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52106064ns 915906 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52106348ns 915911 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52106632ns 915916 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52107087ns 915924 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52107257ns 915927 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52107542ns 915932 1a110850 fd5ff06f jal x0, -44 +52107826ns 915937 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52108110ns 915942 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52108508ns 915949 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52108678ns 915952 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52109133ns 915960 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52109303ns 915963 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52109587ns 915968 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52109872ns 915973 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52110156ns 915978 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52110610ns 915986 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52110781ns 915989 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52111065ns 915994 1a110850 fd5ff06f jal x0, -44 +52111349ns 915999 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52111633ns 916004 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52112031ns 916011 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52112202ns 916014 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52112656ns 916022 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52112827ns 916025 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52113111ns 916030 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52113395ns 916035 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52113679ns 916040 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52114134ns 916048 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52114305ns 916051 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52114589ns 916056 1a110850 fd5ff06f jal x0, -44 +52114873ns 916061 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52115157ns 916066 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52115555ns 916073 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52115725ns 916076 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52116180ns 916084 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52116351ns 916087 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52116635ns 916092 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52116919ns 916097 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52117203ns 916102 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52117658ns 916110 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52117828ns 916113 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52118112ns 916118 1a110850 fd5ff06f jal x0, -44 +52118396ns 916123 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52118681ns 916128 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52119078ns 916135 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52119249ns 916138 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52119704ns 916146 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52119874ns 916149 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52120158ns 916154 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52120442ns 916159 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52120727ns 916164 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52121181ns 916172 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52121352ns 916175 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52121636ns 916180 1a110850 fd5ff06f jal x0, -44 +52121920ns 916185 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52122204ns 916190 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52122602ns 916197 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52122773ns 916200 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52123227ns 916208 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52123398ns 916211 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52123682ns 916216 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52123966ns 916221 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52124250ns 916226 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52124705ns 916234 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52124875ns 916237 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52125159ns 916242 1a110850 fd5ff06f jal x0, -44 +52125444ns 916247 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52125728ns 916252 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52126126ns 916259 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52126296ns 916262 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52126751ns 916270 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52126921ns 916273 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52127205ns 916278 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52127490ns 916283 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52127774ns 916288 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52128228ns 916296 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52128399ns 916299 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52128683ns 916304 1a110850 fd5ff06f jal x0, -44 +52128967ns 916309 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52129251ns 916314 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52129649ns 916321 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52129820ns 916324 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52130274ns 916332 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52130445ns 916335 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52130729ns 916340 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52131013ns 916345 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52131297ns 916350 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52131752ns 916358 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52131922ns 916361 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52132207ns 916366 1a110850 fd5ff06f jal x0, -44 +52132491ns 916371 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52132775ns 916376 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52133173ns 916383 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52133343ns 916386 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52133798ns 916394 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52133968ns 916397 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52134253ns 916402 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52134537ns 916407 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52134821ns 916412 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52135276ns 916420 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52135446ns 916423 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52135730ns 916428 1a110850 fd5ff06f jal x0, -44 +52136014ns 916433 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52136299ns 916438 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52136696ns 916445 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52136867ns 916448 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52137322ns 916456 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52137492ns 916459 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52137776ns 916464 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52138060ns 916469 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52138344ns 916474 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52138799ns 916482 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52138970ns 916485 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52139254ns 916490 1a110850 fd5ff06f jal x0, -44 +52139538ns 916495 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52139822ns 916500 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52140220ns 916507 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52140390ns 916510 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52140845ns 916518 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52141016ns 916521 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52141300ns 916526 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52141584ns 916531 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52141868ns 916536 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52142323ns 916544 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52142493ns 916547 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52142777ns 916552 1a110850 fd5ff06f jal x0, -44 +52143062ns 916557 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52143346ns 916562 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52143744ns 916569 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52143914ns 916572 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52144369ns 916580 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52144539ns 916583 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52144823ns 916588 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52145107ns 916593 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52145392ns 916598 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52145846ns 916606 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52146017ns 916609 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52146301ns 916614 1a110850 fd5ff06f jal x0, -44 +52146585ns 916619 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52146869ns 916624 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52147267ns 916631 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52147438ns 916634 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52147892ns 916642 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52148063ns 916645 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52148347ns 916650 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52148631ns 916655 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52148915ns 916660 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52149370ns 916668 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52149540ns 916671 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52149825ns 916676 1a110850 fd5ff06f jal x0, -44 +52150109ns 916681 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52150393ns 916686 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52150791ns 916693 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52150961ns 916696 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52151416ns 916704 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52151586ns 916707 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52151871ns 916712 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52152155ns 916717 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52152439ns 916722 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52152893ns 916730 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52153064ns 916733 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52153348ns 916738 1a110850 fd5ff06f jal x0, -44 +52153632ns 916743 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52153916ns 916748 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52154314ns 916755 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52154485ns 916758 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52154939ns 916766 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52155110ns 916769 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52155394ns 916774 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52155678ns 916779 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52155962ns 916784 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52156417ns 916792 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52156588ns 916795 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52156872ns 916800 1a110850 fd5ff06f jal x0, -44 +52157156ns 916805 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52157440ns 916810 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52157838ns 916817 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52158008ns 916820 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52158463ns 916828 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52158634ns 916831 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52158918ns 916836 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52159202ns 916841 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52159486ns 916846 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52159941ns 916854 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52160111ns 916857 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52160395ns 916862 1a110850 fd5ff06f jal x0, -44 +52160679ns 916867 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52160964ns 916872 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52161361ns 916879 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52161532ns 916882 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52161987ns 916890 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52162157ns 916893 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52162441ns 916898 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52162725ns 916903 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52163010ns 916908 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52163464ns 916916 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52163635ns 916919 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52163919ns 916924 1a110850 fd5ff06f jal x0, -44 +52164203ns 916929 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52164487ns 916934 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52164885ns 916941 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52165056ns 916944 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52165510ns 916952 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52165681ns 916955 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52165965ns 916960 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52166249ns 916965 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52166533ns 916970 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52166988ns 916978 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52167158ns 916981 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52167442ns 916986 1a110850 fd5ff06f jal x0, -44 +52167727ns 916991 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52168011ns 916996 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52168409ns 917003 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52168579ns 917006 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52169034ns 917014 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52169204ns 917017 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52169488ns 917022 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52169773ns 917027 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52170057ns 917032 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52170511ns 917040 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52170682ns 917043 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52170966ns 917048 1a110850 fd5ff06f jal x0, -44 +52171250ns 917053 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52171534ns 917058 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52171932ns 917065 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52172103ns 917068 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52172557ns 917076 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52172728ns 917079 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52173012ns 917084 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52173296ns 917089 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52173580ns 917094 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52174035ns 917102 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52174205ns 917105 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52174490ns 917110 1a110850 fd5ff06f jal x0, -44 +52174774ns 917115 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52175058ns 917120 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52175456ns 917127 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52175626ns 917130 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52176081ns 917138 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52176251ns 917141 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52176536ns 917146 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52176820ns 917151 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52177104ns 917156 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52177559ns 917164 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52177729ns 917167 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52178013ns 917172 1a110850 fd5ff06f jal x0, -44 +52178297ns 917177 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52178582ns 917182 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52178979ns 917189 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52179150ns 917192 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52179605ns 917200 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52179775ns 917203 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52180059ns 917208 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52180343ns 917213 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52180627ns 917218 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52181082ns 917226 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52181253ns 917229 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52181537ns 917234 1a110850 fd5ff06f jal x0, -44 +52181821ns 917239 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52182105ns 917244 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52182503ns 917251 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52182673ns 917254 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52183128ns 917262 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52183299ns 917265 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52183583ns 917270 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52183867ns 917275 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52184151ns 917280 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52184606ns 917288 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52184776ns 917291 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52185060ns 917296 1a110850 fd5ff06f jal x0, -44 +52185345ns 917301 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52185629ns 917306 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52186027ns 917313 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52186197ns 917316 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52186652ns 917324 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52186822ns 917327 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52187106ns 917332 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52187391ns 917337 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52187675ns 917342 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52188129ns 917350 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52188300ns 917353 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52188584ns 917358 1a110850 fd5ff06f jal x0, -44 +52188868ns 917363 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52189152ns 917368 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52189550ns 917375 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52189721ns 917378 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52190175ns 917386 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52190346ns 917389 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52190630ns 917394 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52190914ns 917399 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52191198ns 917404 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52191653ns 917412 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52191823ns 917415 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52192108ns 917420 1a110850 fd5ff06f jal x0, -44 +52192392ns 917425 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52192676ns 917430 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52193074ns 917437 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52193244ns 917440 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52193699ns 917448 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52193869ns 917451 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52194154ns 917456 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52194438ns 917461 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52194722ns 917466 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52195176ns 917474 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52195347ns 917477 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52195631ns 917482 1a110850 fd5ff06f jal x0, -44 +52195915ns 917487 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52196199ns 917492 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52196597ns 917499 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52196768ns 917502 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52197222ns 917510 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52197393ns 917513 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52197677ns 917518 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52197961ns 917523 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52198245ns 917528 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52198700ns 917536 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52198871ns 917539 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52199155ns 917544 1a110850 fd5ff06f jal x0, -44 +52199439ns 917549 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52199723ns 917554 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52200121ns 917561 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52200291ns 917564 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52200746ns 917572 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52200917ns 917575 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52201201ns 917580 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52201485ns 917585 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52201769ns 917590 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52202224ns 917598 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52202394ns 917601 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52202678ns 917606 1a110850 fd5ff06f jal x0, -44 +52202962ns 917611 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52203247ns 917616 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52203644ns 917623 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52203815ns 917626 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52204270ns 917634 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52204440ns 917637 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52204724ns 917642 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52205008ns 917647 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52205293ns 917652 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52205747ns 917660 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52205918ns 917663 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52206202ns 917668 1a110850 fd5ff06f jal x0, -44 +52206486ns 917673 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52206770ns 917678 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52207168ns 917685 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52207339ns 917688 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52207793ns 917696 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52207964ns 917699 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52208248ns 917704 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52208532ns 917709 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52208816ns 917714 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52209271ns 917722 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52209441ns 917725 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52209725ns 917730 1a110850 fd5ff06f jal x0, -44 +52210010ns 917735 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52210294ns 917740 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52210692ns 917747 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52210862ns 917750 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52211317ns 917758 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52211487ns 917761 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52211771ns 917766 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52212056ns 917771 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52212340ns 917776 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52212794ns 917784 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52212965ns 917787 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52213249ns 917792 1a110850 fd5ff06f jal x0, -44 +52213533ns 917797 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52213817ns 917802 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52214215ns 917809 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52214386ns 917812 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52214840ns 917820 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52215011ns 917823 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52215295ns 917828 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52215579ns 917833 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52215863ns 917838 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52216318ns 917846 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52216488ns 917849 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52216773ns 917854 1a110850 fd5ff06f jal x0, -44 +52217057ns 917859 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52217341ns 917864 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52217739ns 917871 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52217909ns 917874 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52218364ns 917882 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52218534ns 917885 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52218819ns 917890 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52219103ns 917895 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52219387ns 917900 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52219842ns 917908 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52220012ns 917911 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52220296ns 917916 1a110850 fd5ff06f jal x0, -44 +52220580ns 917921 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52220865ns 917926 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52221262ns 917933 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52221433ns 917936 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52221888ns 917944 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52222058ns 917947 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52222342ns 917952 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52222626ns 917957 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52222911ns 917962 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52223365ns 917970 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52223536ns 917973 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52223820ns 917978 1a110850 fd5ff06f jal x0, -44 +52224104ns 917983 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52224388ns 917988 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52224786ns 917995 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52224956ns 917998 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52225411ns 918006 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52225582ns 918009 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52225866ns 918014 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52226150ns 918019 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52226434ns 918024 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52226889ns 918032 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52227059ns 918035 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52227343ns 918040 1a110850 fd5ff06f jal x0, -44 +52227628ns 918045 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52227912ns 918050 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52228310ns 918057 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52228480ns 918060 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52228935ns 918068 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52229105ns 918071 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52229389ns 918076 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52229674ns 918081 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52229958ns 918086 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52230412ns 918094 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52230583ns 918097 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52230867ns 918102 1a110850 fd5ff06f jal x0, -44 +52231151ns 918107 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52231435ns 918112 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52231833ns 918119 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52232004ns 918122 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52232458ns 918130 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52232629ns 918133 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52232913ns 918138 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52233197ns 918143 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52233481ns 918148 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52233936ns 918156 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52234106ns 918159 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52234391ns 918164 1a110850 fd5ff06f jal x0, -44 +52234675ns 918169 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52234959ns 918174 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52235357ns 918181 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52235527ns 918184 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52235982ns 918192 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52236152ns 918195 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52236437ns 918200 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52236721ns 918205 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52237005ns 918210 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52237459ns 918218 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52237630ns 918221 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52237914ns 918226 1a110850 fd5ff06f jal x0, -44 +52238198ns 918231 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52238482ns 918236 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52238880ns 918243 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52239051ns 918246 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52239505ns 918254 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52239676ns 918257 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52239960ns 918262 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52240244ns 918267 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52240528ns 918272 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52240983ns 918280 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52241154ns 918283 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52241438ns 918288 1a110850 fd5ff06f jal x0, -44 +52241722ns 918293 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52242006ns 918298 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52242404ns 918305 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52242574ns 918308 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52243029ns 918316 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52243200ns 918319 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52243484ns 918324 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52243768ns 918329 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52244052ns 918334 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52244507ns 918342 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52244677ns 918345 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52244961ns 918350 1a110850 fd5ff06f jal x0, -44 +52245245ns 918355 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52245530ns 918360 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52245927ns 918367 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52246098ns 918370 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52246553ns 918378 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52246723ns 918381 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52247007ns 918386 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52247291ns 918391 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52247576ns 918396 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52248030ns 918404 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52248201ns 918407 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52248485ns 918412 1a110850 fd5ff06f jal x0, -44 +52248769ns 918417 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52249053ns 918422 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52249451ns 918429 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52249622ns 918432 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52250076ns 918440 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52250247ns 918443 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52250531ns 918448 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52250815ns 918453 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52251099ns 918458 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52251554ns 918466 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52251724ns 918469 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52252008ns 918474 1a110850 fd5ff06f jal x0, -44 +52252293ns 918479 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52252577ns 918484 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52252975ns 918491 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52253145ns 918494 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52253600ns 918502 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52253770ns 918505 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52254054ns 918510 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52254339ns 918515 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52254623ns 918520 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52255077ns 918528 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52255248ns 918531 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52255532ns 918536 1a110850 fd5ff06f jal x0, -44 +52255816ns 918541 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52256100ns 918546 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52256498ns 918553 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52256669ns 918556 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52257123ns 918564 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52257294ns 918567 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52257578ns 918572 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52257862ns 918577 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52258146ns 918582 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52258601ns 918590 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52258771ns 918593 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52259056ns 918598 1a110850 fd5ff06f jal x0, -44 +52259340ns 918603 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52259624ns 918608 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52260022ns 918615 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52260192ns 918618 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52260647ns 918626 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52260817ns 918629 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52261102ns 918634 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52261386ns 918639 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52261670ns 918644 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52262125ns 918652 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52262295ns 918655 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52262579ns 918660 1a110850 fd5ff06f jal x0, -44 +52262863ns 918665 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52263148ns 918670 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52263545ns 918677 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52263716ns 918680 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52264171ns 918688 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52264341ns 918691 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52264625ns 918696 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52264909ns 918701 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52265194ns 918706 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52265648ns 918714 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52265819ns 918717 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52266103ns 918722 1a110850 fd5ff06f jal x0, -44 +52266387ns 918727 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52266671ns 918732 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52267069ns 918739 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52267239ns 918742 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52267694ns 918750 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52267865ns 918753 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52268149ns 918758 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52268433ns 918763 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52268717ns 918768 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52269172ns 918776 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52269342ns 918779 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52269626ns 918784 1a110850 fd5ff06f jal x0, -44 +52269911ns 918789 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52270195ns 918794 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52270593ns 918801 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52270763ns 918804 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52271218ns 918812 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52271388ns 918815 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52271672ns 918820 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52271957ns 918825 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52272241ns 918830 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52272695ns 918838 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52272866ns 918841 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52273150ns 918846 1a110850 fd5ff06f jal x0, -44 +52273434ns 918851 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52273718ns 918856 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52274116ns 918863 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52274287ns 918866 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52274741ns 918874 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52274912ns 918877 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52275196ns 918882 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52275480ns 918887 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52275764ns 918892 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52276219ns 918900 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52276389ns 918903 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52276674ns 918908 1a110850 fd5ff06f jal x0, -44 +52276958ns 918913 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52277242ns 918918 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52277640ns 918925 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52277810ns 918928 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52278265ns 918936 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52278435ns 918939 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52278720ns 918944 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52279004ns 918949 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52279288ns 918954 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52279743ns 918962 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52279913ns 918965 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52280197ns 918970 1a110850 fd5ff06f jal x0, -44 +52280481ns 918975 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52280765ns 918980 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52281163ns 918987 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52281334ns 918990 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52281788ns 918998 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52281959ns 919001 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52282243ns 919006 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52282527ns 919011 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52282811ns 919016 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52283266ns 919024 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52283437ns 919027 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52283721ns 919032 1a110850 fd5ff06f jal x0, -44 +52284005ns 919037 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52284289ns 919042 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52284687ns 919049 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52284857ns 919052 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52285312ns 919060 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52285483ns 919063 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52285767ns 919068 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52286051ns 919073 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52286335ns 919078 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52286790ns 919086 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52286960ns 919089 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52287244ns 919094 1a110850 fd5ff06f jal x0, -44 +52287528ns 919099 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52287813ns 919104 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52288210ns 919111 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52288381ns 919114 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52288836ns 919122 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52289006ns 919125 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52289290ns 919130 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52289574ns 919135 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52289859ns 919140 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52290313ns 919148 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52290484ns 919151 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52290768ns 919156 1a110850 fd5ff06f jal x0, -44 +52291052ns 919161 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52291336ns 919166 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52291734ns 919173 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52291905ns 919176 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52292359ns 919184 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52292530ns 919187 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52292814ns 919192 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52293098ns 919197 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52293382ns 919202 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52293837ns 919210 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52294007ns 919213 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52294291ns 919218 1a110850 fd5ff06f jal x0, -44 +52294576ns 919223 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52294860ns 919228 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52295258ns 919235 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52295428ns 919238 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52295883ns 919246 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52296053ns 919249 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52296337ns 919254 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52296622ns 919259 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52296906ns 919264 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52297360ns 919272 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52297531ns 919275 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52297815ns 919280 1a110850 fd5ff06f jal x0, -44 +52298099ns 919285 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52298383ns 919290 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52298781ns 919297 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52298952ns 919300 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52299406ns 919308 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52299577ns 919311 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52299861ns 919316 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52300145ns 919321 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52300429ns 919326 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52300884ns 919334 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52301055ns 919337 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52301339ns 919342 1a110850 fd5ff06f jal x0, -44 +52301623ns 919347 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52301907ns 919352 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52302305ns 919359 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52302475ns 919362 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52302930ns 919370 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52303100ns 919373 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52303385ns 919378 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52303669ns 919383 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52303953ns 919388 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52304408ns 919396 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52304578ns 919399 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52304862ns 919404 1a110850 fd5ff06f jal x0, -44 +52305146ns 919409 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52305431ns 919414 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52305828ns 919421 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52305999ns 919424 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52306454ns 919432 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52306624ns 919435 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52306908ns 919440 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52307192ns 919445 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52307477ns 919450 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52307931ns 919458 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52308102ns 919461 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52308386ns 919466 1a110850 fd5ff06f jal x0, -44 +52308670ns 919471 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52308954ns 919476 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52309352ns 919483 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52309522ns 919486 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52309977ns 919494 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52310148ns 919497 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52310432ns 919502 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52310716ns 919507 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52311000ns 919512 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52311455ns 919520 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52311625ns 919523 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52311909ns 919528 1a110850 fd5ff06f jal x0, -44 +52312194ns 919533 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52312478ns 919538 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52312876ns 919545 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52313046ns 919548 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52313501ns 919556 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52313671ns 919559 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52313955ns 919564 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52314240ns 919569 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52314524ns 919574 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52314978ns 919582 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52315149ns 919585 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52315433ns 919590 1a110850 fd5ff06f jal x0, -44 +52315717ns 919595 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52316001ns 919600 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52316399ns 919607 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52316570ns 919610 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52317024ns 919618 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52317195ns 919621 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52317479ns 919626 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52317763ns 919631 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52318047ns 919636 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52318502ns 919644 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52318672ns 919647 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52318957ns 919652 1a110850 fd5ff06f jal x0, -44 +52319241ns 919657 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52319525ns 919662 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52319923ns 919669 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52320093ns 919672 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52320548ns 919680 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52320718ns 919683 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52321003ns 919688 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52321287ns 919693 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52321571ns 919698 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52322026ns 919706 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52322196ns 919709 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52322480ns 919714 1a110850 fd5ff06f jal x0, -44 +52322764ns 919719 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52323048ns 919724 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52323446ns 919731 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52323617ns 919734 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52324071ns 919742 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52324242ns 919745 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52324526ns 919750 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52324810ns 919755 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52325094ns 919760 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52325549ns 919768 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52325720ns 919771 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52326004ns 919776 1a110850 fd5ff06f jal x0, -44 +52326288ns 919781 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52326572ns 919786 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52326970ns 919793 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52327140ns 919796 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52327595ns 919804 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52327766ns 919807 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52328050ns 919812 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52328334ns 919817 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52328618ns 919822 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52329073ns 919830 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52329243ns 919833 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52329527ns 919838 1a110850 fd5ff06f jal x0, -44 +52329811ns 919843 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52330096ns 919848 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52330493ns 919855 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52330664ns 919858 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52331119ns 919866 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52331289ns 919869 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52331573ns 919874 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52331857ns 919879 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52332142ns 919884 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52332596ns 919892 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52332767ns 919895 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52333051ns 919900 1a110850 fd5ff06f jal x0, -44 +52333335ns 919905 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52333619ns 919910 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52334017ns 919917 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52334188ns 919920 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52334642ns 919928 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52334813ns 919931 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52335097ns 919936 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52335381ns 919941 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52335665ns 919946 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52336120ns 919954 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52336290ns 919957 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52336575ns 919962 1a110850 fd5ff06f jal x0, -44 +52336859ns 919967 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52337143ns 919972 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52337541ns 919979 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52337711ns 919982 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52338166ns 919990 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52338336ns 919993 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52338620ns 919998 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52338905ns 920003 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52339189ns 920008 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52339643ns 920016 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52339814ns 920019 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52340098ns 920024 1a110850 fd5ff06f jal x0, -44 +52340382ns 920029 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52340666ns 920034 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52341064ns 920041 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52341235ns 920044 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52341689ns 920052 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52341860ns 920055 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52342144ns 920060 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52342428ns 920065 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52342712ns 920070 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52343167ns 920078 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52343338ns 920081 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52343622ns 920086 1a110850 fd5ff06f jal x0, -44 +52343906ns 920091 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52344190ns 920096 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52344588ns 920103 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52344758ns 920106 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52345213ns 920114 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52345383ns 920117 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52345668ns 920122 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52345952ns 920127 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52346236ns 920132 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52346691ns 920140 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52346861ns 920143 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52347145ns 920148 1a110850 fd5ff06f jal x0, -44 +52347429ns 920153 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52347714ns 920158 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52348111ns 920165 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52348282ns 920168 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52348737ns 920176 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52348907ns 920179 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52349191ns 920184 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52349475ns 920189 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52349760ns 920194 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52350214ns 920202 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52350385ns 920205 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52350669ns 920210 1a110850 fd5ff06f jal x0, -44 +52350953ns 920215 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52351237ns 920220 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52351635ns 920227 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52351805ns 920230 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52352260ns 920238 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52352431ns 920241 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52352715ns 920246 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52352999ns 920251 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52353283ns 920256 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52353738ns 920264 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52353908ns 920267 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52354192ns 920272 1a110850 fd5ff06f jal x0, -44 +52354477ns 920277 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52354761ns 920282 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52355159ns 920289 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52355329ns 920292 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52355784ns 920300 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52355954ns 920303 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52356238ns 920308 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52356523ns 920313 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52356807ns 920318 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52357261ns 920326 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52357432ns 920329 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52357716ns 920334 1a110850 fd5ff06f jal x0, -44 +52358000ns 920339 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52358284ns 920344 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52358682ns 920351 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52358853ns 920354 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52359307ns 920362 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52359478ns 920365 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52359762ns 920370 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52360046ns 920375 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52360330ns 920380 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52360785ns 920388 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52360955ns 920391 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52361240ns 920396 1a110850 fd5ff06f jal x0, -44 +52361524ns 920401 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52361808ns 920406 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52362206ns 920413 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52362376ns 920416 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52362831ns 920424 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52363001ns 920427 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52363286ns 920432 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52363570ns 920437 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52363854ns 920442 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52364309ns 920450 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52364479ns 920453 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52364763ns 920458 1a110850 fd5ff06f jal x0, -44 +52365047ns 920463 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52365331ns 920468 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52365729ns 920475 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52365900ns 920478 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52366354ns 920486 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52366525ns 920489 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52366809ns 920494 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52367093ns 920499 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52367377ns 920504 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52367832ns 920512 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52368003ns 920515 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52368287ns 920520 1a110850 fd5ff06f jal x0, -44 +52368571ns 920525 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52368855ns 920530 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52369253ns 920537 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52369423ns 920540 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52369878ns 920548 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52370049ns 920551 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52370333ns 920556 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52370617ns 920561 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52370901ns 920566 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52371356ns 920574 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52371526ns 920577 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52371810ns 920582 1a110850 fd5ff06f jal x0, -44 +52372095ns 920587 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52372379ns 920592 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52372776ns 920599 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52372947ns 920602 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52373402ns 920610 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52373572ns 920613 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52373856ns 920618 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52374140ns 920623 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52374425ns 920628 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52374879ns 920636 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52375050ns 920639 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52375334ns 920644 1a110850 fd5ff06f jal x0, -44 +52375618ns 920649 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52375902ns 920654 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52376300ns 920661 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52376471ns 920664 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52376925ns 920672 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52377096ns 920675 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52377380ns 920680 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52377664ns 920685 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52377948ns 920690 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52378403ns 920698 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52378573ns 920701 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52378858ns 920706 1a110850 fd5ff06f jal x0, -44 +52379142ns 920711 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52379426ns 920716 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52379824ns 920723 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52379994ns 920726 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52380449ns 920734 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52380619ns 920737 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52380903ns 920742 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52381188ns 920747 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52381472ns 920752 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52381926ns 920760 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52382097ns 920763 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52382381ns 920768 1a110850 fd5ff06f jal x0, -44 +52382665ns 920773 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52382949ns 920778 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52383347ns 920785 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52383518ns 920788 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52383972ns 920796 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52384143ns 920799 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52384427ns 920804 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52384711ns 920809 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52384995ns 920814 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52385450ns 920822 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52385621ns 920825 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52385905ns 920830 1a110850 fd5ff06f jal x0, -44 +52386189ns 920835 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52386473ns 920840 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52386871ns 920847 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52387041ns 920850 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52387496ns 920858 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52387666ns 920861 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52387951ns 920866 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52388235ns 920871 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52388519ns 920876 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52388974ns 920884 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52389144ns 920887 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52389428ns 920892 1a110850 fd5ff06f jal x0, -44 +52389712ns 920897 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52389997ns 920902 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52390394ns 920909 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52390565ns 920912 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52391020ns 920920 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52391190ns 920923 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52391474ns 920928 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52391758ns 920933 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52392043ns 920938 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52392497ns 920946 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52392668ns 920949 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52392952ns 920954 1a110850 fd5ff06f jal x0, -44 +52393236ns 920959 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52393520ns 920964 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52393918ns 920971 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52394088ns 920974 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52394543ns 920982 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52394714ns 920985 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52394998ns 920990 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52395282ns 920995 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52395566ns 921000 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52396021ns 921008 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52396191ns 921011 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52396475ns 921016 1a110850 fd5ff06f jal x0, -44 +52396760ns 921021 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52397044ns 921026 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52397442ns 921033 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52397612ns 921036 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52398067ns 921044 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52398237ns 921047 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52398521ns 921052 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52398806ns 921057 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52399090ns 921062 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52399544ns 921070 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52399715ns 921073 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52399999ns 921078 1a110850 fd5ff06f jal x0, -44 +52400283ns 921083 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52400567ns 921088 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52400965ns 921095 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52401136ns 921098 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52401590ns 921106 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52401761ns 921109 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52402045ns 921114 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52402329ns 921119 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52402613ns 921124 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52403068ns 921132 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52403238ns 921135 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52403523ns 921140 1a110850 fd5ff06f jal x0, -44 +52403807ns 921145 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52404091ns 921150 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52404489ns 921157 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52404659ns 921160 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52405114ns 921168 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52405284ns 921171 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52405569ns 921176 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52405853ns 921181 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52406137ns 921186 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52406592ns 921194 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52406762ns 921197 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52407046ns 921202 1a110850 fd5ff06f jal x0, -44 +52407330ns 921207 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52407615ns 921212 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52408012ns 921219 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52408183ns 921222 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52408637ns 921230 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52408808ns 921233 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52409092ns 921238 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52409376ns 921243 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52409660ns 921248 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52410115ns 921256 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52410286ns 921259 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52410570ns 921264 1a110850 fd5ff06f jal x0, -44 +52410854ns 921269 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52411138ns 921274 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52411536ns 921281 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52411706ns 921284 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52412161ns 921292 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52412332ns 921295 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52412616ns 921300 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52412900ns 921305 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52413184ns 921310 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52413639ns 921318 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52413809ns 921321 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52414093ns 921326 1a110850 fd5ff06f jal x0, -44 +52414378ns 921331 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52414662ns 921336 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52415059ns 921343 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52415230ns 921346 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52415685ns 921354 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52415855ns 921357 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52416139ns 921362 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52416423ns 921367 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52416708ns 921372 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52417162ns 921380 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52417333ns 921383 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52417617ns 921388 1a110850 fd5ff06f jal x0, -44 +52417901ns 921393 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52418185ns 921398 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52418583ns 921405 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52418754ns 921408 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52419208ns 921416 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52419379ns 921419 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52419663ns 921424 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52419947ns 921429 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52420231ns 921434 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52420686ns 921442 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52420856ns 921445 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52421141ns 921450 1a110850 fd5ff06f jal x0, -44 +52421425ns 921455 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52421709ns 921460 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52422107ns 921467 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52422277ns 921470 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52422732ns 921478 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52422902ns 921481 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52423186ns 921486 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52423471ns 921491 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52423755ns 921496 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52424209ns 921504 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52424380ns 921507 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52424664ns 921512 1a110850 fd5ff06f jal x0, -44 +52424948ns 921517 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52425232ns 921522 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52425630ns 921529 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52425801ns 921532 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52426255ns 921540 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52426426ns 921543 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52426710ns 921548 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52426994ns 921553 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52427278ns 921558 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52427733ns 921566 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52427904ns 921569 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52428188ns 921574 1a110850 fd5ff06f jal x0, -44 +52428472ns 921579 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52428756ns 921584 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52429154ns 921591 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52429324ns 921594 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52429779ns 921602 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52429949ns 921605 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52430234ns 921610 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52430518ns 921615 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52430802ns 921620 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52431257ns 921628 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52431427ns 921631 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52431711ns 921636 1a110850 fd5ff06f jal x0, -44 +52431995ns 921641 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52432280ns 921646 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52432677ns 921653 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52432848ns 921656 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52433303ns 921664 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52433473ns 921667 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52433757ns 921672 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52434041ns 921677 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52434326ns 921682 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52434780ns 921690 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52434951ns 921693 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52435235ns 921698 1a110850 fd5ff06f jal x0, -44 +52435519ns 921703 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52435803ns 921708 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52436201ns 921715 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52436371ns 921718 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52436826ns 921726 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52436997ns 921729 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52437281ns 921734 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52437565ns 921739 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52437849ns 921744 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52438304ns 921752 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52438474ns 921755 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52438758ns 921760 1a110850 fd5ff06f jal x0, -44 +52439043ns 921765 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52439327ns 921770 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52439725ns 921777 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52439895ns 921780 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52440350ns 921788 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52440520ns 921791 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52440804ns 921796 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52441089ns 921801 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52441373ns 921806 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52441827ns 921814 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52441998ns 921817 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52442282ns 921822 1a110850 fd5ff06f jal x0, -44 +52442566ns 921827 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52442850ns 921832 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52443248ns 921839 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52443419ns 921842 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52443873ns 921850 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52444044ns 921853 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52444328ns 921858 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52444612ns 921863 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52444896ns 921868 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52445351ns 921876 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52445521ns 921879 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52445806ns 921884 1a110850 fd5ff06f jal x0, -44 +52446090ns 921889 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52446374ns 921894 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52446772ns 921901 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52446942ns 921904 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52447397ns 921912 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52447567ns 921915 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52447852ns 921920 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52448136ns 921925 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52448420ns 921930 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52448875ns 921938 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52449045ns 921941 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52449329ns 921946 1a110850 fd5ff06f jal x0, -44 +52449613ns 921951 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52449898ns 921956 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52450295ns 921963 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52450466ns 921966 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52450920ns 921974 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52451091ns 921977 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52451375ns 921982 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52451659ns 921987 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52451943ns 921992 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52452398ns 922000 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52452569ns 922003 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52452853ns 922008 1a110850 fd5ff06f jal x0, -44 +52453137ns 922013 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52453421ns 922018 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52453819ns 922025 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52453989ns 922028 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52454444ns 922036 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52454615ns 922039 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52454899ns 922044 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52455183ns 922049 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52455467ns 922054 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52455922ns 922062 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52456092ns 922065 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52456376ns 922070 1a110850 fd5ff06f jal x0, -44 +52456661ns 922075 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52456945ns 922080 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52457343ns 922087 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52457513ns 922090 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52457968ns 922098 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52458138ns 922101 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52458422ns 922106 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52458706ns 922111 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52458991ns 922116 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52459445ns 922124 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52459616ns 922127 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52459900ns 922132 1a110850 fd5ff06f jal x0, -44 +52460184ns 922137 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52460468ns 922142 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52460866ns 922149 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52461037ns 922152 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52461491ns 922160 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52461662ns 922163 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52461946ns 922168 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52462230ns 922173 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52462514ns 922178 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52462969ns 922186 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52463139ns 922189 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52463424ns 922194 1a110850 fd5ff06f jal x0, -44 +52463708ns 922199 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52463992ns 922204 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52464390ns 922211 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52464560ns 922214 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52465015ns 922222 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52465185ns 922225 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52465469ns 922230 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52465754ns 922235 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52466038ns 922240 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52466492ns 922248 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52466663ns 922251 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52466947ns 922256 1a110850 fd5ff06f jal x0, -44 +52467231ns 922261 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52467515ns 922266 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52467913ns 922273 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52468084ns 922276 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52468538ns 922284 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52468709ns 922287 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52468993ns 922292 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52469277ns 922297 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52469561ns 922302 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52470016ns 922310 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52470187ns 922313 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52470471ns 922318 1a110850 fd5ff06f jal x0, -44 +52470755ns 922323 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52471039ns 922328 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52471437ns 922335 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52471607ns 922338 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52472062ns 922346 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52472232ns 922349 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52472517ns 922354 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52472801ns 922359 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52473085ns 922364 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52473540ns 922372 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52473710ns 922375 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52473994ns 922380 1a110850 fd5ff06f jal x0, -44 +52474278ns 922385 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52474563ns 922390 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52474960ns 922397 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52475131ns 922400 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52475586ns 922408 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52475756ns 922411 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52476040ns 922416 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52476324ns 922421 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52476609ns 922426 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52477063ns 922434 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52477234ns 922437 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52477518ns 922442 1a110850 fd5ff06f jal x0, -44 +52477802ns 922447 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52478086ns 922452 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52478484ns 922459 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52478655ns 922462 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52479109ns 922470 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52479280ns 922473 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52479564ns 922478 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52479848ns 922483 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52480132ns 922488 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52480587ns 922496 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52480757ns 922499 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52481041ns 922504 1a110850 fd5ff06f jal x0, -44 +52481326ns 922509 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52481610ns 922514 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52482008ns 922521 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52482178ns 922524 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52482633ns 922532 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52482803ns 922535 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52483087ns 922540 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52483372ns 922545 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52483656ns 922550 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52484110ns 922558 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52484281ns 922561 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52484565ns 922566 1a110850 fd5ff06f jal x0, -44 +52484849ns 922571 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52485133ns 922576 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52485531ns 922583 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52485702ns 922586 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52486156ns 922594 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52486327ns 922597 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52486611ns 922602 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52486895ns 922607 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52487179ns 922612 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52487634ns 922620 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52487804ns 922623 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52488089ns 922628 1a110850 fd5ff06f jal x0, -44 +52488373ns 922633 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52488657ns 922638 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52489055ns 922645 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52489225ns 922648 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52489680ns 922656 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52489850ns 922659 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52490135ns 922664 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52490419ns 922669 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52490703ns 922674 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52491158ns 922682 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52491328ns 922685 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52491612ns 922690 1a110850 fd5ff06f jal x0, -44 +52491896ns 922695 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52492181ns 922700 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52492578ns 922707 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52492749ns 922710 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52493203ns 922718 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52493374ns 922721 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52493658ns 922726 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52493942ns 922731 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52494226ns 922736 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52494681ns 922744 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52494852ns 922747 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52495136ns 922752 1a110850 fd5ff06f jal x0, -44 +52495420ns 922757 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52495704ns 922762 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52496102ns 922769 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52496272ns 922772 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52496727ns 922780 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52496898ns 922783 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52497182ns 922788 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52497466ns 922793 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52497750ns 922798 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52498205ns 922806 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52498375ns 922809 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52498659ns 922814 1a110850 fd5ff06f jal x0, -44 +52498944ns 922819 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52499228ns 922824 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52499626ns 922831 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52499796ns 922834 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52500251ns 922842 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52500421ns 922845 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52500705ns 922850 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52500989ns 922855 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52501274ns 922860 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52501728ns 922868 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52501899ns 922871 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52502183ns 922876 1a110850 fd5ff06f jal x0, -44 +52502467ns 922881 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52502751ns 922886 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52503149ns 922893 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52503320ns 922896 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52503774ns 922904 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52503945ns 922907 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52504229ns 922912 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52504513ns 922917 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52504797ns 922922 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52505252ns 922930 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52505422ns 922933 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52505707ns 922938 1a110850 fd5ff06f jal x0, -44 +52505991ns 922943 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52506275ns 922948 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52506673ns 922955 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52506843ns 922958 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52507298ns 922966 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52507468ns 922969 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52507752ns 922974 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52508037ns 922979 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52508321ns 922984 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52508775ns 922992 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52508946ns 922995 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52509230ns 923000 1a110850 fd5ff06f jal x0, -44 +52509514ns 923005 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52509798ns 923010 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52510196ns 923017 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52510367ns 923020 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52510821ns 923028 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52510992ns 923031 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52511276ns 923036 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52511560ns 923041 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52511844ns 923046 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52512299ns 923054 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52512470ns 923057 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52512754ns 923062 1a110850 fd5ff06f jal x0, -44 +52513038ns 923067 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52513322ns 923072 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52513720ns 923079 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52513890ns 923082 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52514345ns 923090 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52514515ns 923093 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52514800ns 923098 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52515084ns 923103 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52515368ns 923108 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52515823ns 923116 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52515993ns 923119 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52516277ns 923124 1a110850 fd5ff06f jal x0, -44 +52516561ns 923129 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52516846ns 923134 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52517243ns 923141 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52517414ns 923144 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52517869ns 923152 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52518039ns 923155 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52518323ns 923160 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52518607ns 923165 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52518892ns 923170 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52519346ns 923178 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52519517ns 923181 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52519801ns 923186 1a110850 fd5ff06f jal x0, -44 +52520085ns 923191 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52520369ns 923196 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52520767ns 923203 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52520938ns 923206 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52521392ns 923214 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52521563ns 923217 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52521847ns 923222 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52522131ns 923227 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52522415ns 923232 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52522870ns 923240 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52523040ns 923243 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52523324ns 923248 1a110850 fd5ff06f jal x0, -44 +52523609ns 923253 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52523893ns 923258 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52524291ns 923265 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52524461ns 923268 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52524916ns 923276 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52525086ns 923279 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52525370ns 923284 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52525655ns 923289 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52525939ns 923294 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52526393ns 923302 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52526564ns 923305 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52526848ns 923310 1a110850 fd5ff06f jal x0, -44 +52527132ns 923315 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52527416ns 923320 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52527814ns 923327 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52527985ns 923330 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52528439ns 923338 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52528610ns 923341 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52528894ns 923346 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52529178ns 923351 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52529462ns 923356 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52529917ns 923364 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52530087ns 923367 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52530372ns 923372 1a110850 fd5ff06f jal x0, -44 +52530656ns 923377 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52530940ns 923382 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52531338ns 923389 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52531508ns 923392 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52531963ns 923400 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52532133ns 923403 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52532418ns 923408 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52532702ns 923413 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52532986ns 923418 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52533441ns 923426 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52533611ns 923429 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52533895ns 923434 1a110850 fd5ff06f jal x0, -44 +52534179ns 923439 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52534464ns 923444 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52534861ns 923451 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52535032ns 923454 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52535487ns 923462 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52535657ns 923465 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52535941ns 923470 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52536225ns 923475 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52536509ns 923480 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52536964ns 923488 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52537135ns 923491 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52537419ns 923496 1a110850 fd5ff06f jal x0, -44 +52537703ns 923501 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52537987ns 923506 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52538385ns 923513 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52538555ns 923516 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52539010ns 923524 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52539181ns 923527 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52539465ns 923532 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52539749ns 923537 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52540033ns 923542 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52540488ns 923550 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52540658ns 923553 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52540942ns 923558 1a110850 fd5ff06f jal x0, -44 +52541227ns 923563 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52541511ns 923568 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52541909ns 923575 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52542079ns 923578 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52542534ns 923586 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52542704ns 923589 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52542988ns 923594 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52543272ns 923599 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52543557ns 923604 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52544011ns 923612 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52544182ns 923615 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52544466ns 923620 1a110850 fd5ff06f jal x0, -44 +52544750ns 923625 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52545034ns 923630 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52545432ns 923637 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52545603ns 923640 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52546057ns 923648 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52546228ns 923651 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52546512ns 923656 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52546796ns 923661 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52547080ns 923666 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52547535ns 923674 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52547705ns 923677 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52547990ns 923682 1a110850 fd5ff06f jal x0, -44 +52548274ns 923687 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52548558ns 923692 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52548956ns 923699 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52549126ns 923702 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52549581ns 923710 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52549751ns 923713 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52550035ns 923718 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52550320ns 923723 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52550604ns 923728 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52551058ns 923736 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52551229ns 923739 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52551513ns 923744 1a110850 fd5ff06f jal x0, -44 +52551797ns 923749 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52552081ns 923754 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52552479ns 923761 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52552650ns 923764 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52553104ns 923772 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52553275ns 923775 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52553559ns 923780 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52553843ns 923785 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52554127ns 923790 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52554582ns 923798 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52554753ns 923801 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52555037ns 923806 1a110850 fd5ff06f jal x0, -44 +52555321ns 923811 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52555605ns 923816 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52556003ns 923823 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52556173ns 923826 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52556628ns 923834 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52556799ns 923837 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52557083ns 923842 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52557367ns 923847 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52557651ns 923852 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52558106ns 923860 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52558276ns 923863 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52558560ns 923868 1a110850 fd5ff06f jal x0, -44 +52558844ns 923873 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52559129ns 923878 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52559526ns 923885 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52559697ns 923888 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52560152ns 923896 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52560322ns 923899 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52560606ns 923904 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52560890ns 923909 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52561175ns 923914 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52561629ns 923922 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52561800ns 923925 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52562084ns 923930 1a110850 fd5ff06f jal x0, -44 +52562368ns 923935 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52562652ns 923940 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52563050ns 923947 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52563221ns 923950 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52563675ns 923958 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52563846ns 923961 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52564130ns 923966 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52564414ns 923971 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52564698ns 923976 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52565153ns 923984 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52565323ns 923987 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52565607ns 923992 1a110850 fd5ff06f jal x0, -44 +52565892ns 923997 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52566176ns 924002 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52566574ns 924009 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52566744ns 924012 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52567199ns 924020 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52567369ns 924023 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52567653ns 924028 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52567938ns 924033 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52568222ns 924038 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52568676ns 924046 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52568847ns 924049 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52569131ns 924054 1a110850 fd5ff06f jal x0, -44 +52569415ns 924059 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52569699ns 924064 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52570097ns 924071 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52570268ns 924074 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52570722ns 924082 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52570893ns 924085 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52571177ns 924090 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52571461ns 924095 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52571745ns 924100 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52572200ns 924108 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52572370ns 924111 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52572655ns 924116 1a110850 fd5ff06f jal x0, -44 +52572939ns 924121 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52573223ns 924126 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52573621ns 924133 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52573791ns 924136 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52574246ns 924144 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52574416ns 924147 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52574701ns 924152 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52574985ns 924157 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52575269ns 924162 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52575724ns 924170 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52575894ns 924173 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52576178ns 924178 1a110850 fd5ff06f jal x0, -44 +52576462ns 924183 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52576747ns 924188 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52577144ns 924195 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52577315ns 924198 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52577770ns 924206 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52577940ns 924209 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52578224ns 924214 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52578508ns 924219 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52578792ns 924224 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52579247ns 924232 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52579418ns 924235 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52579702ns 924240 1a110850 fd5ff06f jal x0, -44 +52579986ns 924245 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52580270ns 924250 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52580668ns 924257 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52580838ns 924260 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52581293ns 924268 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52581464ns 924271 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52581748ns 924276 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52582032ns 924281 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52582316ns 924286 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52582771ns 924294 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52582941ns 924297 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52583225ns 924302 1a110850 fd5ff06f jal x0, -44 +52583510ns 924307 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52583794ns 924312 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52584192ns 924319 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52584362ns 924322 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52584817ns 924330 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52584987ns 924333 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52585271ns 924338 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52585555ns 924343 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52585840ns 924348 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52586294ns 924356 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52586465ns 924359 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52586749ns 924364 1a110850 fd5ff06f jal x0, -44 +52587033ns 924369 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52587317ns 924374 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52587715ns 924381 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52587886ns 924384 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52588340ns 924392 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52588511ns 924395 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52588795ns 924400 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52589079ns 924405 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52589363ns 924410 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52589818ns 924418 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52589988ns 924421 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52590273ns 924426 1a110850 fd5ff06f jal x0, -44 +52590557ns 924431 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52590841ns 924436 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52591239ns 924443 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52591409ns 924446 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52591864ns 924454 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52592034ns 924457 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52592319ns 924462 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52592603ns 924467 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52592887ns 924472 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52593341ns 924480 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52593512ns 924483 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52593796ns 924488 1a110850 fd5ff06f jal x0, -44 +52594080ns 924493 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52594364ns 924498 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52594762ns 924505 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52594933ns 924508 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52595387ns 924516 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52595558ns 924519 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52595842ns 924524 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52596126ns 924529 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52596410ns 924534 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52596865ns 924542 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52597036ns 924545 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52597320ns 924550 1a110850 fd5ff06f jal x0, -44 +52597604ns 924555 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52597888ns 924560 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52598286ns 924567 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52598456ns 924570 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52598911ns 924578 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52599082ns 924581 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52599366ns 924586 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52599650ns 924591 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52599934ns 924596 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52600389ns 924604 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52600559ns 924607 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52600843ns 924612 1a110850 fd5ff06f jal x0, -44 +52601127ns 924617 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52601412ns 924622 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52601809ns 924629 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52601980ns 924632 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52602435ns 924640 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52602605ns 924643 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52602889ns 924648 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52603173ns 924653 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52603458ns 924658 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52603912ns 924666 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52604083ns 924669 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52604367ns 924674 1a110850 fd5ff06f jal x0, -44 +52604651ns 924679 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52604935ns 924684 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52605333ns 924691 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52605504ns 924694 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52605958ns 924702 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52606129ns 924705 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52606413ns 924710 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52606697ns 924715 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52606981ns 924720 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52607436ns 924728 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52607606ns 924731 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52607890ns 924736 1a110850 fd5ff06f jal x0, -44 +52608175ns 924741 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52608459ns 924746 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52608857ns 924753 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52609027ns 924756 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52609482ns 924764 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52609652ns 924767 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52609936ns 924772 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52610221ns 924777 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52610505ns 924782 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52610959ns 924790 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52611130ns 924793 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52611414ns 924798 1a110850 fd5ff06f jal x0, -44 +52611698ns 924803 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52611982ns 924808 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52612380ns 924815 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52612551ns 924818 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52613005ns 924826 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52613176ns 924829 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52613460ns 924834 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52613744ns 924839 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52614028ns 924844 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52614483ns 924852 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52614653ns 924855 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52614938ns 924860 1a110850 fd5ff06f jal x0, -44 +52615222ns 924865 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52615506ns 924870 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52615904ns 924877 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52616074ns 924880 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52616529ns 924888 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52616699ns 924891 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52616984ns 924896 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52617268ns 924901 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52617552ns 924906 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52618007ns 924914 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52618177ns 924917 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52618461ns 924922 1a110850 fd5ff06f jal x0, -44 +52618745ns 924927 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52619030ns 924932 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52619427ns 924939 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52619598ns 924942 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52620053ns 924950 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52620223ns 924953 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52620507ns 924958 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52620791ns 924963 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52621075ns 924968 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52621530ns 924976 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52621701ns 924979 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52621985ns 924984 1a110850 fd5ff06f jal x0, -44 +52622269ns 924989 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52622553ns 924994 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52622951ns 925001 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52623121ns 925004 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52623576ns 925012 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52623747ns 925015 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52624031ns 925020 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52624315ns 925025 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52624599ns 925030 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52625054ns 925038 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52625224ns 925041 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52625508ns 925046 1a110850 fd5ff06f jal x0, -44 +52625793ns 925051 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52626077ns 925056 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52626475ns 925063 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52626645ns 925066 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52627100ns 925074 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52627270ns 925077 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52627554ns 925082 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52627839ns 925087 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52628123ns 925092 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52628577ns 925100 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52628748ns 925103 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52629032ns 925108 1a110850 fd5ff06f jal x0, -44 +52629316ns 925113 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52629600ns 925118 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52629998ns 925125 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52630169ns 925128 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52630623ns 925136 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52630794ns 925139 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52631078ns 925144 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52631362ns 925149 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52631646ns 925154 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52632101ns 925162 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52632271ns 925165 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52632556ns 925170 1a110850 fd5ff06f jal x0, -44 +52632840ns 925175 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52633124ns 925180 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52633522ns 925187 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52633692ns 925190 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52634147ns 925198 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52634317ns 925201 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52634602ns 925206 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52634886ns 925211 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52635170ns 925216 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52635624ns 925224 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52635795ns 925227 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52636079ns 925232 1a110850 fd5ff06f jal x0, -44 +52636363ns 925237 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52636647ns 925242 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52637045ns 925249 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52637216ns 925252 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52637670ns 925260 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52637841ns 925263 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52638125ns 925268 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52638409ns 925273 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52638693ns 925278 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52639148ns 925286 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52639319ns 925289 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52639603ns 925294 1a110850 fd5ff06f jal x0, -44 +52639887ns 925299 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52640171ns 925304 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52640569ns 925311 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52640739ns 925314 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52641194ns 925322 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52641365ns 925325 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52641649ns 925330 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52641933ns 925335 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52642217ns 925340 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52642672ns 925348 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52642842ns 925351 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52643126ns 925356 1a110850 fd5ff06f jal x0, -44 +52643410ns 925361 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52643695ns 925366 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52644092ns 925373 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52644263ns 925376 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52644718ns 925384 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52644888ns 925387 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52645172ns 925392 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52645456ns 925397 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52645741ns 925402 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52646195ns 925410 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52646366ns 925413 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52646650ns 925418 1a110850 fd5ff06f jal x0, -44 +52646934ns 925423 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52647218ns 925428 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52647616ns 925435 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52647787ns 925438 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52648241ns 925446 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52648412ns 925449 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52648696ns 925454 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52648980ns 925459 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52649264ns 925464 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52649719ns 925472 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52649889ns 925475 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52650173ns 925480 1a110850 fd5ff06f jal x0, -44 +52650458ns 925485 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52650742ns 925490 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52651140ns 925497 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52651310ns 925500 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52651765ns 925508 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52651935ns 925511 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52652219ns 925516 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52652504ns 925521 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52652788ns 925526 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52653242ns 925534 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52653413ns 925537 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52653697ns 925542 1a110850 fd5ff06f jal x0, -44 +52653981ns 925547 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52654265ns 925552 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52654663ns 925559 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52654834ns 925562 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52655288ns 925570 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52655459ns 925573 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52655743ns 925578 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52656027ns 925583 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52656311ns 925588 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52656766ns 925596 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52656936ns 925599 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52657221ns 925604 1a110850 fd5ff06f jal x0, -44 +52657505ns 925609 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52657789ns 925614 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52658187ns 925621 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52658357ns 925624 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52658812ns 925632 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52658982ns 925635 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52659267ns 925640 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52659551ns 925645 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52659835ns 925650 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52660290ns 925658 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52660460ns 925661 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52660744ns 925666 1a110850 fd5ff06f jal x0, -44 +52661028ns 925671 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52661313ns 925676 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52661710ns 925683 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52661881ns 925686 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52662336ns 925694 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52662506ns 925697 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52662790ns 925702 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52663074ns 925707 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52663359ns 925712 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52663813ns 925720 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52663984ns 925723 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52664268ns 925728 1a110850 fd5ff06f jal x0, -44 +52664552ns 925733 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52664836ns 925738 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52665234ns 925745 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52665404ns 925748 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52665859ns 925756 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52666030ns 925759 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52666314ns 925764 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52666598ns 925769 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52666882ns 925774 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52667337ns 925782 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52667507ns 925785 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52667791ns 925790 1a110850 fd5ff06f jal x0, -44 +52668076ns 925795 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52668360ns 925800 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52668758ns 925807 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52668928ns 925810 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52669383ns 925818 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52669553ns 925821 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52669837ns 925826 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52670122ns 925831 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52670406ns 925836 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52670860ns 925844 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52671031ns 925847 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52671315ns 925852 1a110850 fd5ff06f jal x0, -44 +52671599ns 925857 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52671883ns 925862 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52672281ns 925869 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52672452ns 925872 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52672906ns 925880 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52673077ns 925883 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52673361ns 925888 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52673645ns 925893 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52673929ns 925898 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52674384ns 925906 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52674554ns 925909 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52674839ns 925914 1a110850 fd5ff06f jal x0, -44 +52675123ns 925919 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52675407ns 925924 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52675805ns 925931 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52675975ns 925934 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52676430ns 925942 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52676600ns 925945 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52676885ns 925950 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52677169ns 925955 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52677453ns 925960 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52677907ns 925968 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52678078ns 925971 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52678362ns 925976 1a110850 fd5ff06f jal x0, -44 +52678646ns 925981 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52678930ns 925986 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52679328ns 925993 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52679499ns 925996 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52679953ns 926004 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52680124ns 926007 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52680408ns 926012 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52680692ns 926017 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52680976ns 926022 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52681431ns 926030 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52681602ns 926033 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52681886ns 926038 1a110850 fd5ff06f jal x0, -44 +52682170ns 926043 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52682454ns 926048 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52682852ns 926055 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52683022ns 926058 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52683477ns 926066 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52683648ns 926069 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52683932ns 926074 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52684216ns 926079 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52684500ns 926084 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52684955ns 926092 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52685125ns 926095 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52685409ns 926100 1a110850 fd5ff06f jal x0, -44 +52685693ns 926105 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52685978ns 926110 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52686375ns 926117 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52686546ns 926120 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52687001ns 926128 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52687171ns 926131 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52687455ns 926136 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52687739ns 926141 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52688024ns 926146 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52688478ns 926154 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52688649ns 926157 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52688933ns 926162 1a110850 fd5ff06f jal x0, -44 +52689217ns 926167 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52689501ns 926172 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52689899ns 926179 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52690070ns 926182 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52690524ns 926190 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52690695ns 926193 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52690979ns 926198 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52691263ns 926203 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52691547ns 926208 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52692002ns 926216 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52692172ns 926219 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52692456ns 926224 1a110850 fd5ff06f jal x0, -44 +52692741ns 926229 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52693025ns 926234 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52693423ns 926241 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52693593ns 926244 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52694048ns 926252 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52694218ns 926255 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52694502ns 926260 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52694787ns 926265 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52695071ns 926270 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52695525ns 926278 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52695696ns 926281 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52695980ns 926286 1a110850 fd5ff06f jal x0, -44 +52696264ns 926291 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52696548ns 926296 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52696946ns 926303 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52697117ns 926306 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52697571ns 926314 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52697742ns 926317 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52698026ns 926322 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52698310ns 926327 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52698594ns 926332 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52699049ns 926340 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52699219ns 926343 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52699504ns 926348 1a110850 fd5ff06f jal x0, -44 +52699788ns 926353 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52700072ns 926358 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52700470ns 926365 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52700640ns 926368 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52701095ns 926376 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52701265ns 926379 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52701550ns 926384 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52701834ns 926389 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52702118ns 926394 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52702573ns 926402 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52702743ns 926405 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52703027ns 926410 1a110850 fd5ff06f jal x0, -44 +52703311ns 926415 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52703596ns 926420 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52703993ns 926427 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52704164ns 926430 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52704619ns 926438 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52704789ns 926441 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52705073ns 926446 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52705357ns 926451 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52705642ns 926456 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52706096ns 926464 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52706267ns 926467 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52706551ns 926472 1a110850 fd5ff06f jal x0, -44 +52706835ns 926477 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52707119ns 926482 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52707517ns 926489 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52707687ns 926492 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52708142ns 926500 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52708313ns 926503 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52708597ns 926508 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52708881ns 926513 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52709165ns 926518 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52709620ns 926526 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52709790ns 926529 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52710074ns 926534 1a110850 fd5ff06f jal x0, -44 +52710359ns 926539 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52710643ns 926544 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52711041ns 926551 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52711211ns 926554 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52711666ns 926562 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52711836ns 926565 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52712120ns 926570 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52712405ns 926575 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52712689ns 926580 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52713143ns 926588 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52713314ns 926591 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52713598ns 926596 1a110850 fd5ff06f jal x0, -44 +52713882ns 926601 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52714166ns 926606 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52714564ns 926613 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52714735ns 926616 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52715189ns 926624 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52715360ns 926627 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52715644ns 926632 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52715928ns 926637 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52716212ns 926642 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52716667ns 926650 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52716837ns 926653 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52717122ns 926658 1a110850 fd5ff06f jal x0, -44 +52717406ns 926663 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52717690ns 926668 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52718088ns 926675 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52718258ns 926678 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52718713ns 926686 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52718883ns 926689 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52719168ns 926694 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52719452ns 926699 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52719736ns 926704 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52720191ns 926712 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52720361ns 926715 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52720645ns 926720 1a110850 fd5ff06f jal x0, -44 +52720929ns 926725 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52721213ns 926730 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52721611ns 926737 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52721782ns 926740 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52722236ns 926748 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52722407ns 926751 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52722691ns 926756 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52722975ns 926761 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52723259ns 926766 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52723714ns 926774 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52723885ns 926777 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52724169ns 926782 1a110850 fd5ff06f jal x0, -44 +52724453ns 926787 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52724737ns 926792 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52725135ns 926799 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52725305ns 926802 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52725760ns 926810 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52725931ns 926813 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52726215ns 926818 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52726499ns 926823 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52726783ns 926828 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52727238ns 926836 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52727408ns 926839 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52727692ns 926844 1a110850 fd5ff06f jal x0, -44 +52727976ns 926849 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52728261ns 926854 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52728658ns 926861 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52728829ns 926864 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52729284ns 926872 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52729454ns 926875 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52729738ns 926880 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52730022ns 926885 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52730307ns 926890 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52730761ns 926898 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52730932ns 926901 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52731216ns 926906 1a110850 fd5ff06f jal x0, -44 +52731500ns 926911 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52731784ns 926916 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52732182ns 926923 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52732353ns 926926 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52732807ns 926934 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52732978ns 926937 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52733262ns 926942 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52733546ns 926947 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52733830ns 926952 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52734285ns 926960 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52734455ns 926963 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52734739ns 926968 1a110850 fd5ff06f jal x0, -44 +52735024ns 926973 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52735308ns 926978 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52735706ns 926985 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52735876ns 926988 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52736331ns 926996 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52736501ns 926999 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52736785ns 927004 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52737070ns 927009 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52737354ns 927014 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52737808ns 927022 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52737979ns 927025 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52738263ns 927030 1a110850 fd5ff06f jal x0, -44 +52738547ns 927035 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52738831ns 927040 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52739229ns 927047 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52739400ns 927050 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52739854ns 927058 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52740025ns 927061 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52740309ns 927066 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52740593ns 927071 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52740877ns 927076 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52741332ns 927084 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52741503ns 927087 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52741787ns 927092 1a110850 fd5ff06f jal x0, -44 +52742071ns 927097 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52742355ns 927102 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52742753ns 927109 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52742923ns 927112 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52743378ns 927120 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52743548ns 927123 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52743833ns 927128 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52744117ns 927133 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52744401ns 927138 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52744856ns 927146 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52745026ns 927149 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52745310ns 927154 1a110850 fd5ff06f jal x0, -44 +52745594ns 927159 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52745879ns 927164 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52746276ns 927171 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52746447ns 927174 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52746902ns 927182 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52747072ns 927185 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52747356ns 927190 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52747640ns 927195 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52747925ns 927200 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52748379ns 927208 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52748550ns 927211 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52748834ns 927216 1a110850 fd5ff06f jal x0, -44 +52749118ns 927221 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52749402ns 927226 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52749800ns 927233 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52749970ns 927236 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52750425ns 927244 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52750596ns 927247 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52750880ns 927252 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52751164ns 927257 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52751448ns 927262 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52751903ns 927270 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52752073ns 927273 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52752357ns 927278 1a110850 fd5ff06f jal x0, -44 +52752642ns 927283 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52752926ns 927288 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52753324ns 927295 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52753494ns 927298 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52753949ns 927306 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52754119ns 927309 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52754403ns 927314 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52754688ns 927319 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52754972ns 927324 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52755426ns 927332 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52755597ns 927335 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52755881ns 927340 1a110850 fd5ff06f jal x0, -44 +52756165ns 927345 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52756449ns 927350 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52756847ns 927357 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52757018ns 927360 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52757472ns 927368 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52757643ns 927371 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52757927ns 927376 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52758211ns 927381 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52758495ns 927386 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52758950ns 927394 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52759120ns 927397 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52759405ns 927402 1a110850 fd5ff06f jal x0, -44 +52759689ns 927407 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52759973ns 927412 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52760371ns 927419 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52760541ns 927422 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52760996ns 927430 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52761166ns 927433 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52761451ns 927438 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52761735ns 927443 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52762019ns 927448 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52762474ns 927456 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52762644ns 927459 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52762928ns 927464 1a110850 fd5ff06f jal x0, -44 +52763212ns 927469 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52763496ns 927474 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52763894ns 927481 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52764065ns 927484 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52764519ns 927492 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52764690ns 927495 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52764974ns 927500 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52765258ns 927505 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52765542ns 927510 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52765997ns 927518 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52766168ns 927521 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52766452ns 927526 1a110850 fd5ff06f jal x0, -44 +52766736ns 927531 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52767020ns 927536 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52767418ns 927543 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52767588ns 927546 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52768043ns 927554 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52768214ns 927557 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52768498ns 927562 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52768782ns 927567 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52769066ns 927572 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52769521ns 927580 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52769691ns 927583 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52769975ns 927588 1a110850 fd5ff06f jal x0, -44 +52770259ns 927593 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52770544ns 927598 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52770941ns 927605 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52771112ns 927608 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52771567ns 927616 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52771737ns 927619 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52772021ns 927624 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52772305ns 927629 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52772590ns 927634 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52773044ns 927642 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52773215ns 927645 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52773499ns 927650 1a110850 fd5ff06f jal x0, -44 +52773783ns 927655 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52774067ns 927660 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52774465ns 927667 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52774636ns 927670 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52775090ns 927678 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52775261ns 927681 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52775545ns 927686 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52775829ns 927691 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52776113ns 927696 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52776568ns 927704 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52776738ns 927707 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52777023ns 927712 1a110850 fd5ff06f jal x0, -44 +52777307ns 927717 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52777591ns 927722 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52777989ns 927729 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52778159ns 927732 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52778614ns 927740 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52778784ns 927743 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52779068ns 927748 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52779353ns 927753 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52779637ns 927758 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52780091ns 927766 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52780262ns 927769 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52780546ns 927774 1a110850 fd5ff06f jal x0, -44 +52780830ns 927779 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52781114ns 927784 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52781512ns 927791 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52781683ns 927794 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52782137ns 927802 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52782308ns 927805 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52782592ns 927810 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52782876ns 927815 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52783160ns 927820 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52783615ns 927828 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52783786ns 927831 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52784070ns 927836 1a110850 fd5ff06f jal x0, -44 +52784354ns 927841 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52784638ns 927846 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52785036ns 927853 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52785206ns 927856 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52785661ns 927864 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52785831ns 927867 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52786116ns 927872 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52786400ns 927877 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52786684ns 927882 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52787139ns 927890 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52787309ns 927893 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52787593ns 927898 1a110850 fd5ff06f jal x0, -44 +52787877ns 927903 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52788162ns 927908 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52788559ns 927915 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52788730ns 927918 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52789185ns 927926 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52789355ns 927929 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52789639ns 927934 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52789923ns 927939 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52790208ns 927944 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52790662ns 927952 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52790833ns 927955 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52791117ns 927960 1a110850 fd5ff06f jal x0, -44 +52791401ns 927965 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52791685ns 927970 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52792083ns 927977 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52792253ns 927980 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52792708ns 927988 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52792879ns 927991 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52793163ns 927996 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52793447ns 928001 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52793731ns 928006 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52794186ns 928014 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52794356ns 928017 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52794640ns 928022 1a110850 fd5ff06f jal x0, -44 +52794925ns 928027 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52795209ns 928032 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52795607ns 928039 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52795777ns 928042 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52796232ns 928050 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52796402ns 928053 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52796686ns 928058 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52796971ns 928063 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52797255ns 928068 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52797709ns 928076 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52797880ns 928079 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52798164ns 928084 1a110850 fd5ff06f jal x0, -44 +52798448ns 928089 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52798732ns 928094 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52799130ns 928101 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52799301ns 928104 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52799755ns 928112 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52799926ns 928115 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52800210ns 928120 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52800494ns 928125 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52800778ns 928130 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52801233ns 928138 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52801403ns 928141 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52801688ns 928146 1a110850 fd5ff06f jal x0, -44 +52801972ns 928151 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52802256ns 928156 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52802654ns 928163 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52802824ns 928166 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52803279ns 928174 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52803449ns 928177 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52803734ns 928182 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52804018ns 928187 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52804302ns 928192 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52804757ns 928200 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52804927ns 928203 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52805211ns 928208 1a110850 fd5ff06f jal x0, -44 +52805495ns 928213 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52805779ns 928218 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52806177ns 928225 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52806348ns 928228 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52806802ns 928236 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52806973ns 928239 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52807257ns 928244 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52807541ns 928249 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52807825ns 928254 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52808280ns 928262 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52808451ns 928265 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52808735ns 928270 1a110850 fd5ff06f jal x0, -44 +52809019ns 928275 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52809303ns 928280 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52809701ns 928287 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52809871ns 928290 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52810326ns 928298 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52810497ns 928301 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52810781ns 928306 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52811065ns 928311 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52811349ns 928316 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52811804ns 928324 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52811974ns 928327 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52812258ns 928332 1a110850 fd5ff06f jal x0, -44 +52812543ns 928337 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52812827ns 928342 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52813224ns 928349 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52813395ns 928352 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52813850ns 928360 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52814020ns 928363 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52814304ns 928368 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52814588ns 928373 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52814873ns 928378 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52815327ns 928386 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52815498ns 928389 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52815782ns 928394 1a110850 fd5ff06f jal x0, -44 +52816066ns 928399 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52816350ns 928404 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52816748ns 928411 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52816919ns 928414 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52817373ns 928422 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52817544ns 928425 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52817828ns 928430 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52818112ns 928435 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52818396ns 928440 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52818851ns 928448 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52819021ns 928451 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52819306ns 928456 1a110850 fd5ff06f jal x0, -44 +52819590ns 928461 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52819874ns 928466 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52820272ns 928473 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52820442ns 928476 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52820897ns 928484 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52821067ns 928487 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52821351ns 928492 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52821636ns 928497 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52821920ns 928502 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52822374ns 928510 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52822545ns 928513 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52822829ns 928518 1a110850 fd5ff06f jal x0, -44 +52823113ns 928523 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52823397ns 928528 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52823795ns 928535 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52823966ns 928538 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52824420ns 928546 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52824591ns 928549 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52824875ns 928554 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52825159ns 928559 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52825443ns 928564 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52825898ns 928572 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52826069ns 928575 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52826353ns 928580 1a110850 fd5ff06f jal x0, -44 +52826637ns 928585 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52826921ns 928590 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52827319ns 928597 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52827489ns 928600 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52827944ns 928608 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52828114ns 928611 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52828399ns 928616 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52828683ns 928621 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52828967ns 928626 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52829422ns 928634 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52829592ns 928637 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52829876ns 928642 1a110850 fd5ff06f jal x0, -44 +52830160ns 928647 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52830445ns 928652 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52830842ns 928659 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52831013ns 928662 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52831468ns 928670 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52831638ns 928673 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52831922ns 928678 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52832206ns 928683 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52832491ns 928688 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52832945ns 928696 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52833116ns 928699 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52833400ns 928704 1a110850 fd5ff06f jal x0, -44 +52833684ns 928709 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52833968ns 928714 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52834366ns 928721 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52834536ns 928724 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52834991ns 928732 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52835162ns 928735 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52835446ns 928740 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52835730ns 928745 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52836014ns 928750 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52836469ns 928758 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52836639ns 928761 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52836923ns 928766 1a110850 fd5ff06f jal x0, -44 +52837208ns 928771 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52837492ns 928776 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52837890ns 928783 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52838060ns 928786 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52838515ns 928794 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52838685ns 928797 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52838969ns 928802 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52839254ns 928807 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52839538ns 928812 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52839992ns 928820 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52840163ns 928823 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52840447ns 928828 1a110850 fd5ff06f jal x0, -44 +52840731ns 928833 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52841015ns 928838 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52841413ns 928845 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52841584ns 928848 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52842038ns 928856 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52842209ns 928859 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52842493ns 928864 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52842777ns 928869 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52843061ns 928874 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52843516ns 928882 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52843686ns 928885 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52843971ns 928890 1a110850 fd5ff06f jal x0, -44 +52844255ns 928895 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52844539ns 928900 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52844937ns 928907 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52845107ns 928910 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52845562ns 928918 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52845732ns 928921 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52846017ns 928926 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52846301ns 928931 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52846585ns 928936 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52847040ns 928944 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52847210ns 928947 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52847494ns 928952 1a110850 fd5ff06f jal x0, -44 +52847778ns 928957 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52848063ns 928962 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52848460ns 928969 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52848631ns 928972 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52849085ns 928980 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52849256ns 928983 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52849540ns 928988 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52849824ns 928993 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52850108ns 928998 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52850563ns 929006 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52850734ns 929009 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52851018ns 929014 1a110850 fd5ff06f jal x0, -44 +52851302ns 929019 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52851586ns 929024 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52851984ns 929031 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52852154ns 929034 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52852609ns 929042 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52852780ns 929045 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52853064ns 929050 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52853348ns 929055 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52853632ns 929060 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52854087ns 929068 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52854257ns 929071 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52854541ns 929076 1a110850 fd5ff06f jal x0, -44 +52854826ns 929081 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52855110ns 929086 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52855507ns 929093 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52855678ns 929096 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52856133ns 929104 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52856303ns 929107 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52856587ns 929112 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52856871ns 929117 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52857156ns 929122 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52857610ns 929130 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52857781ns 929133 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52858065ns 929138 1a110850 fd5ff06f jal x0, -44 +52858349ns 929143 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52858633ns 929148 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52859031ns 929155 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52859202ns 929158 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52859656ns 929166 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52859827ns 929169 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52860111ns 929174 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52860395ns 929179 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52860679ns 929184 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52861134ns 929192 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52861304ns 929195 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52861589ns 929200 1a110850 fd5ff06f jal x0, -44 +52861873ns 929205 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52862157ns 929210 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52862555ns 929217 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52862725ns 929220 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52863180ns 929228 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52863350ns 929231 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52863634ns 929236 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52863919ns 929241 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52864203ns 929246 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52864657ns 929254 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52864828ns 929257 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52865112ns 929262 1a110850 fd5ff06f jal x0, -44 +52865396ns 929267 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52865680ns 929272 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52866078ns 929279 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52866249ns 929282 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52866703ns 929290 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52866874ns 929293 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52867158ns 929298 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52867442ns 929303 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52867726ns 929308 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52868181ns 929316 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52868352ns 929319 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52868636ns 929324 1a110850 fd5ff06f jal x0, -44 +52868920ns 929329 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52869204ns 929334 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52869602ns 929341 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52869772ns 929344 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52870227ns 929352 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52870397ns 929355 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52870682ns 929360 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52870966ns 929365 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52871250ns 929370 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52871705ns 929378 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52871875ns 929381 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52872159ns 929386 1a110850 fd5ff06f jal x0, -44 +52872443ns 929391 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52872728ns 929396 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52873125ns 929403 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52873296ns 929406 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52873751ns 929414 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52873921ns 929417 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52874205ns 929422 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52874489ns 929427 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52874774ns 929432 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52875228ns 929440 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52875399ns 929443 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52875683ns 929448 1a110850 fd5ff06f jal x0, -44 +52875967ns 929453 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52876251ns 929458 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52876649ns 929465 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52876819ns 929468 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52877274ns 929476 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52877445ns 929479 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52877729ns 929484 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52878013ns 929489 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52878297ns 929494 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52878752ns 929502 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52878922ns 929505 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52879206ns 929510 1a110850 fd5ff06f jal x0, -44 +52879491ns 929515 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52879775ns 929520 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52880173ns 929527 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52880343ns 929530 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52880798ns 929538 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52880968ns 929541 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52881252ns 929546 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52881537ns 929551 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52881821ns 929556 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52882275ns 929564 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52882446ns 929567 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52882730ns 929572 1a110850 fd5ff06f jal x0, -44 +52883014ns 929577 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52883298ns 929582 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52883696ns 929589 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52883867ns 929592 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52884321ns 929600 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52884492ns 929603 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52884776ns 929608 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52885060ns 929613 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52885344ns 929618 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52885799ns 929626 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52885969ns 929629 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52886254ns 929634 1a110850 fd5ff06f jal x0, -44 +52886538ns 929639 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52886822ns 929644 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52887220ns 929651 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52887390ns 929654 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52887845ns 929662 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52888015ns 929665 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52888300ns 929670 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52888584ns 929675 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52888868ns 929680 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52889323ns 929688 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52889493ns 929691 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52889777ns 929696 1a110850 fd5ff06f jal x0, -44 +52890061ns 929701 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52890346ns 929706 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52890743ns 929713 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52890914ns 929716 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52891368ns 929724 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52891539ns 929727 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52891823ns 929732 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52892107ns 929737 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52892391ns 929742 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52892846ns 929750 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52893017ns 929753 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52893301ns 929758 1a110850 fd5ff06f jal x0, -44 +52893585ns 929763 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52893869ns 929768 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52894267ns 929775 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52894437ns 929778 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52894892ns 929786 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52895063ns 929789 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52895347ns 929794 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52895631ns 929799 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52895915ns 929804 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52896370ns 929812 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52896540ns 929815 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52896824ns 929820 1a110850 fd5ff06f jal x0, -44 +52897109ns 929825 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52897393ns 929830 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52897791ns 929837 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52897961ns 929840 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52898416ns 929848 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52898586ns 929851 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52898870ns 929856 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52899154ns 929861 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52899439ns 929866 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52899893ns 929874 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52900064ns 929877 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52900348ns 929882 1a110850 fd5ff06f jal x0, -44 +52900632ns 929887 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52900916ns 929892 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52901314ns 929899 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52901485ns 929902 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52901939ns 929910 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52902110ns 929913 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52902394ns 929918 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52902678ns 929923 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52902962ns 929928 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52903417ns 929936 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52903587ns 929939 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52903872ns 929944 1a110850 fd5ff06f jal x0, -44 +52904156ns 929949 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52904440ns 929954 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52904838ns 929961 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52905008ns 929964 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52905463ns 929972 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52905633ns 929975 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52905917ns 929980 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52906202ns 929985 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52906486ns 929990 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52906940ns 929998 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52907111ns 930001 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52907395ns 930006 1a110850 fd5ff06f jal x0, -44 +52907679ns 930011 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52907963ns 930016 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52908361ns 930023 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52908532ns 930026 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52908986ns 930034 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52909157ns 930037 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52909441ns 930042 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52909725ns 930047 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52910009ns 930052 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52910464ns 930060 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52910635ns 930063 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52910919ns 930068 1a110850 fd5ff06f jal x0, -44 +52911203ns 930073 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52911487ns 930078 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52911885ns 930085 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52912055ns 930088 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52912510ns 930096 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52912680ns 930099 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52912965ns 930104 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52913249ns 930109 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52913533ns 930114 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52913988ns 930122 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52914158ns 930125 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52914442ns 930130 1a110850 fd5ff06f jal x0, -44 +52914726ns 930135 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52915011ns 930140 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52915408ns 930147 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52915579ns 930150 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52916034ns 930158 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52916204ns 930161 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52916488ns 930166 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52916772ns 930171 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52917057ns 930176 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52917511ns 930184 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52917682ns 930187 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52917966ns 930192 1a110850 fd5ff06f jal x0, -44 +52918250ns 930197 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52918534ns 930202 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52918932ns 930209 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52919103ns 930212 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52919557ns 930220 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52919728ns 930223 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52920012ns 930228 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52920296ns 930233 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52920580ns 930238 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52921035ns 930246 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52921205ns 930249 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52921489ns 930254 1a110850 fd5ff06f jal x0, -44 +52921774ns 930259 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52922058ns 930264 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52922456ns 930271 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52922626ns 930274 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52923081ns 930282 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52923251ns 930285 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52923535ns 930290 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52923820ns 930295 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52924104ns 930300 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52924558ns 930308 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52924729ns 930311 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52925013ns 930316 1a110850 fd5ff06f jal x0, -44 +52925297ns 930321 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52925581ns 930326 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52925979ns 930333 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52926150ns 930336 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52926604ns 930344 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52926775ns 930347 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52927059ns 930352 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52927343ns 930357 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52927627ns 930362 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52928082ns 930370 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52928252ns 930373 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52928537ns 930378 1a110850 fd5ff06f jal x0, -44 +52928821ns 930383 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52929105ns 930388 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52929503ns 930395 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52929673ns 930398 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52930128ns 930406 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52930298ns 930409 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52930583ns 930414 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52930867ns 930419 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52931151ns 930424 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52931606ns 930432 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52931776ns 930435 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52932060ns 930440 1a110850 fd5ff06f jal x0, -44 +52932344ns 930445 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52932629ns 930450 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52933026ns 930457 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52933197ns 930460 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52933651ns 930468 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52933822ns 930471 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52934106ns 930476 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52934390ns 930481 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52934674ns 930486 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52935129ns 930494 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52935300ns 930497 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52935584ns 930502 1a110850 fd5ff06f jal x0, -44 +52935868ns 930507 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52936152ns 930512 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52936550ns 930519 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52936720ns 930522 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52937175ns 930530 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52937346ns 930533 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52937630ns 930538 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52937914ns 930543 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52938198ns 930548 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52938653ns 930556 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52938823ns 930559 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52939107ns 930564 1a110850 fd5ff06f jal x0, -44 +52939392ns 930569 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52939676ns 930574 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52940074ns 930581 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52940244ns 930584 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52940699ns 930592 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52940869ns 930595 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52941153ns 930600 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52941437ns 930605 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52941722ns 930610 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52942176ns 930618 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52942347ns 930621 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52942631ns 930626 1a110850 fd5ff06f jal x0, -44 +52942915ns 930631 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52943199ns 930636 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52943597ns 930643 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52943768ns 930646 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52944222ns 930654 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52944393ns 930657 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52944677ns 930662 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52944961ns 930667 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52945245ns 930672 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52945700ns 930680 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52945870ns 930683 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52946155ns 930688 1a110850 fd5ff06f jal x0, -44 +52946439ns 930693 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52946723ns 930698 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52947121ns 930705 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52947291ns 930708 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52947746ns 930716 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52947916ns 930719 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52948200ns 930724 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52948485ns 930729 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52948769ns 930734 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52949223ns 930742 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52949394ns 930745 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52949678ns 930750 1a110850 fd5ff06f jal x0, -44 +52949962ns 930755 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52950246ns 930760 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52950644ns 930767 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52950815ns 930770 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52951269ns 930778 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52951440ns 930781 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52951724ns 930786 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52952008ns 930791 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52952292ns 930796 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52952747ns 930804 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52952918ns 930807 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52953202ns 930812 1a110850 fd5ff06f jal x0, -44 +52953486ns 930817 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52953770ns 930822 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52954168ns 930829 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52954338ns 930832 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52954793ns 930840 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52954963ns 930843 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52955248ns 930848 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52955532ns 930853 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52955816ns 930858 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52956271ns 930866 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52956441ns 930869 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52956725ns 930874 1a110850 fd5ff06f jal x0, -44 +52957009ns 930879 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52957294ns 930884 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52957691ns 930891 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52957862ns 930894 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52958317ns 930902 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52958487ns 930905 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52958771ns 930910 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52959055ns 930915 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52959340ns 930920 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52959794ns 930928 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52959965ns 930931 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52960249ns 930936 1a110850 fd5ff06f jal x0, -44 +52960533ns 930941 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52960817ns 930946 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52961215ns 930953 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52961386ns 930956 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52961840ns 930964 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52962011ns 930967 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52962295ns 930972 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52962579ns 930977 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52962863ns 930982 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52963318ns 930990 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52963488ns 930993 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52963772ns 930998 1a110850 fd5ff06f jal x0, -44 +52964057ns 931003 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52964341ns 931008 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52964739ns 931015 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52964909ns 931018 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52965364ns 931026 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52965534ns 931029 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52965818ns 931034 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52966103ns 931039 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52966387ns 931044 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52966841ns 931052 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52967012ns 931055 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52967296ns 931060 1a110850 fd5ff06f jal x0, -44 +52967580ns 931065 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52967864ns 931070 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52968262ns 931077 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52968433ns 931080 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52968887ns 931088 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52969058ns 931091 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52969342ns 931096 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52969626ns 931101 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52969910ns 931106 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52970365ns 931114 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52970535ns 931117 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52970820ns 931122 1a110850 fd5ff06f jal x0, -44 +52971104ns 931127 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52971388ns 931132 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52971786ns 931139 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52971956ns 931142 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52972411ns 931150 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52972581ns 931153 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52972866ns 931158 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52973150ns 931163 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52973434ns 931168 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52973889ns 931176 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52974059ns 931179 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52974343ns 931184 1a110850 fd5ff06f jal x0, -44 +52974627ns 931189 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52974912ns 931194 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52975309ns 931201 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52975480ns 931204 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52975935ns 931212 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52976105ns 931215 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52976389ns 931220 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52976673ns 931225 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52976957ns 931230 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52977412ns 931238 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52977583ns 931241 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52977867ns 931246 1a110850 fd5ff06f jal x0, -44 +52978151ns 931251 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52978435ns 931256 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52978833ns 931263 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52979003ns 931266 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52979458ns 931274 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52979629ns 931277 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52979913ns 931282 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52980197ns 931287 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52980481ns 931292 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52980936ns 931300 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52981106ns 931303 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52981390ns 931308 1a110850 fd5ff06f jal x0, -44 +52981675ns 931313 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52981959ns 931318 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52982357ns 931325 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52982527ns 931328 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52982982ns 931336 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52983152ns 931339 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52983436ns 931344 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52983720ns 931349 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52984005ns 931354 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52984459ns 931362 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52984630ns 931365 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52984914ns 931370 1a110850 fd5ff06f jal x0, -44 +52985198ns 931375 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52985482ns 931380 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52985880ns 931387 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52986051ns 931390 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52986505ns 931398 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52986676ns 931401 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52986960ns 931406 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52987244ns 931411 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52987528ns 931416 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52987983ns 931424 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52988153ns 931427 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52988438ns 931432 1a110850 fd5ff06f jal x0, -44 +52988722ns 931437 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52989006ns 931442 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52989404ns 931449 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52989574ns 931452 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52990029ns 931460 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52990199ns 931463 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52990483ns 931468 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52990768ns 931473 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52991052ns 931478 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52991506ns 931486 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52991677ns 931489 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52991961ns 931494 1a110850 fd5ff06f jal x0, -44 +52992245ns 931499 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52992529ns 931504 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52992927ns 931511 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52993098ns 931514 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52993552ns 931522 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52993723ns 931525 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52994007ns 931530 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52994291ns 931535 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52994575ns 931540 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52995030ns 931548 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52995201ns 931551 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52995485ns 931556 1a110850 fd5ff06f jal x0, -44 +52995769ns 931561 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52996053ns 931566 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52996451ns 931573 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52996621ns 931576 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52997076ns 931584 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +52997247ns 931587 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +52997531ns 931592 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52997815ns 931597 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +52998099ns 931602 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +52998554ns 931610 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +52998724ns 931613 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +52999008ns 931618 1a110850 fd5ff06f jal x0, -44 +52999292ns 931623 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +52999577ns 931628 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +52999974ns 931635 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53000145ns 931638 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53000600ns 931646 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53000770ns 931649 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53001054ns 931654 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53001338ns 931659 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53001623ns 931664 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53002077ns 931672 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53002248ns 931675 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53002532ns 931680 1a110850 fd5ff06f jal x0, -44 +53002816ns 931685 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53003100ns 931690 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53003498ns 931697 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53003669ns 931700 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53004123ns 931708 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53004294ns 931711 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53004578ns 931716 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53004862ns 931721 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53005146ns 931726 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53005601ns 931734 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53005771ns 931737 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53006055ns 931742 1a110850 fd5ff06f jal x0, -44 +53006340ns 931747 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53006624ns 931752 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53007022ns 931759 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53007192ns 931762 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53007647ns 931770 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53007817ns 931773 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53008101ns 931778 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53008386ns 931783 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53008670ns 931788 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53009124ns 931796 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53009295ns 931799 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53009579ns 931804 1a110850 fd5ff06f jal x0, -44 +53009863ns 931809 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53010147ns 931814 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53010545ns 931821 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53010716ns 931824 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53011170ns 931832 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53011341ns 931835 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53011625ns 931840 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53011909ns 931845 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53012193ns 931850 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53012648ns 931858 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53012818ns 931861 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53013103ns 931866 1a110850 fd5ff06f jal x0, -44 +53013387ns 931871 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53013671ns 931876 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53014069ns 931883 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53014239ns 931886 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53014694ns 931894 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53014864ns 931897 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53015149ns 931902 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53015433ns 931907 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53015717ns 931912 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53016172ns 931920 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53016342ns 931923 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53016626ns 931928 1a110850 fd5ff06f jal x0, -44 +53016910ns 931933 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53017195ns 931938 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53017592ns 931945 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53017763ns 931948 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53018218ns 931956 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53018388ns 931959 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53018672ns 931964 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53018956ns 931969 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53019240ns 931974 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53019695ns 931982 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53019866ns 931985 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53020150ns 931990 1a110850 fd5ff06f jal x0, -44 +53020434ns 931995 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53020718ns 932000 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53021116ns 932007 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53021286ns 932010 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53021741ns 932018 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53021912ns 932021 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53022196ns 932026 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53022480ns 932031 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53022764ns 932036 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53023219ns 932044 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53023389ns 932047 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53023673ns 932052 1a110850 fd5ff06f jal x0, -44 +53023958ns 932057 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53024242ns 932062 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53024640ns 932069 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53024810ns 932072 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53025265ns 932080 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53025435ns 932083 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53025719ns 932088 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53026003ns 932093 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53026288ns 932098 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53026742ns 932106 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53026913ns 932109 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53027197ns 932114 1a110850 fd5ff06f jal x0, -44 +53027481ns 932119 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53027765ns 932124 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53028163ns 932131 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53028334ns 932134 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53028788ns 932142 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53028959ns 932145 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53029243ns 932150 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53029527ns 932155 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53029811ns 932160 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53030266ns 932168 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53030436ns 932171 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53030721ns 932176 1a110850 fd5ff06f jal x0, -44 +53031005ns 932181 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53031289ns 932186 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53031687ns 932193 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53031857ns 932196 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53032312ns 932204 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53032482ns 932207 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53032767ns 932212 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53033051ns 932217 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53033335ns 932222 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53033789ns 932230 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53033960ns 932233 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53034244ns 932238 1a110850 fd5ff06f jal x0, -44 +53034528ns 932243 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53034812ns 932248 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53035210ns 932255 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53035381ns 932258 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53035835ns 932266 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53036006ns 932269 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53036290ns 932274 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53036574ns 932279 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53036858ns 932284 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53037313ns 932292 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53037484ns 932295 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53037768ns 932300 1a110850 fd5ff06f jal x0, -44 +53038052ns 932305 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53038336ns 932310 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53038734ns 932317 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53038904ns 932320 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53039359ns 932328 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53039530ns 932331 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53039814ns 932336 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53040098ns 932341 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53040382ns 932346 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53040837ns 932354 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53041007ns 932357 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53041291ns 932362 1a110850 fd5ff06f jal x0, -44 +53041575ns 932367 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53041860ns 932372 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53042257ns 932379 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53042428ns 932382 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53042883ns 932390 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53043053ns 932393 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53043337ns 932398 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53043621ns 932403 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53043906ns 932408 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53044360ns 932416 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53044531ns 932419 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53044815ns 932424 1a110850 fd5ff06f jal x0, -44 +53045099ns 932429 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53045383ns 932434 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53045781ns 932441 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53045952ns 932444 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53046406ns 932452 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53046577ns 932455 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53046861ns 932460 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53047145ns 932465 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53047429ns 932470 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53047884ns 932478 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53048054ns 932481 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53048338ns 932486 1a110850 fd5ff06f jal x0, -44 +53048623ns 932491 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53048907ns 932496 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53049305ns 932503 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53049475ns 932506 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53049930ns 932514 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53050100ns 932517 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53050384ns 932522 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53050669ns 932527 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53050953ns 932532 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53051407ns 932540 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53051578ns 932543 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53051862ns 932548 1a110850 fd5ff06f jal x0, -44 +53052146ns 932553 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53052430ns 932558 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53052828ns 932565 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53052999ns 932568 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53053453ns 932576 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53053624ns 932579 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53053908ns 932584 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53054192ns 932589 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53054476ns 932594 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53054931ns 932602 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53055101ns 932605 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53055386ns 932610 1a110850 fd5ff06f jal x0, -44 +53055670ns 932615 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53055954ns 932620 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53056352ns 932627 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53056522ns 932630 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53056977ns 932638 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53057147ns 932641 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53057432ns 932646 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53057716ns 932651 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53058000ns 932656 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53058455ns 932664 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53058625ns 932667 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53058909ns 932672 1a110850 fd5ff06f jal x0, -44 +53059193ns 932677 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53059478ns 932682 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53059875ns 932689 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53060046ns 932692 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53060501ns 932700 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53060671ns 932703 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53060955ns 932708 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53061239ns 932713 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53061523ns 932718 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53061978ns 932726 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53062149ns 932729 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53062433ns 932734 1a110850 fd5ff06f jal x0, -44 +53062717ns 932739 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53063001ns 932744 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53063399ns 932751 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53063569ns 932754 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53064024ns 932762 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53064195ns 932765 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53064479ns 932770 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53064763ns 932775 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53065047ns 932780 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53065502ns 932788 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53065672ns 932791 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53065956ns 932796 1a110850 fd5ff06f jal x0, -44 +53066241ns 932801 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53066525ns 932806 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53066923ns 932813 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53067093ns 932816 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53067548ns 932824 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53067718ns 932827 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53068002ns 932832 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53068287ns 932837 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53068571ns 932842 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53069025ns 932850 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53069196ns 932853 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53069480ns 932858 1a110850 fd5ff06f jal x0, -44 +53069764ns 932863 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53070048ns 932868 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53070446ns 932875 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53070617ns 932878 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53071071ns 932886 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53071242ns 932889 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53071526ns 932894 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53071810ns 932899 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53072094ns 932904 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53072549ns 932912 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53072719ns 932915 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53073004ns 932920 1a110850 fd5ff06f jal x0, -44 +53073288ns 932925 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53073572ns 932930 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53073970ns 932937 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53074140ns 932940 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53074595ns 932948 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53074765ns 932951 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53075050ns 932956 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53075334ns 932961 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53075618ns 932966 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53076072ns 932974 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53076243ns 932977 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53076527ns 932982 1a110850 fd5ff06f jal x0, -44 +53076811ns 932987 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53077095ns 932992 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53077493ns 932999 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53077664ns 933002 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53078118ns 933010 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53078289ns 933013 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53078573ns 933018 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53078857ns 933023 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53079141ns 933028 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53079596ns 933036 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53079767ns 933039 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53080051ns 933044 1a110850 fd5ff06f jal x0, -44 +53080335ns 933049 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53080619ns 933054 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53081017ns 933061 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53081187ns 933064 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53081642ns 933072 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53081813ns 933075 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53082097ns 933080 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53082381ns 933085 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53082665ns 933090 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53083120ns 933098 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53083290ns 933101 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53083574ns 933106 1a110850 fd5ff06f jal x0, -44 +53083858ns 933111 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53084143ns 933116 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53084540ns 933123 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53084711ns 933126 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53085166ns 933134 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53085336ns 933137 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53085620ns 933142 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53085904ns 933147 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53086189ns 933152 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53086643ns 933160 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53086814ns 933163 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53087098ns 933168 1a110850 fd5ff06f jal x0, -44 +53087382ns 933173 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53087666ns 933178 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53088064ns 933185 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53088235ns 933188 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53088689ns 933196 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53088860ns 933199 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53089144ns 933204 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53089428ns 933209 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53089712ns 933214 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53090167ns 933222 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53090337ns 933225 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53090621ns 933230 1a110850 fd5ff06f jal x0, -44 +53090906ns 933235 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53091190ns 933240 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53091588ns 933247 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53091758ns 933250 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53092213ns 933258 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53092383ns 933261 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53092667ns 933266 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53092952ns 933271 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53093236ns 933276 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53093690ns 933284 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53093861ns 933287 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53094145ns 933292 1a110850 fd5ff06f jal x0, -44 +53094429ns 933297 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53094713ns 933302 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53095111ns 933309 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53095282ns 933312 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53095736ns 933320 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53095907ns 933323 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53096191ns 933328 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53096475ns 933333 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53096759ns 933338 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53097214ns 933346 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53097384ns 933349 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53097669ns 933354 1a110850 fd5ff06f jal x0, -44 +53097953ns 933359 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53098237ns 933364 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53098635ns 933371 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53098805ns 933374 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53099260ns 933382 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53099430ns 933385 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53099715ns 933390 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53099999ns 933395 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53100283ns 933400 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53100738ns 933408 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53100908ns 933411 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53101192ns 933416 1a110850 fd5ff06f jal x0, -44 +53101476ns 933421 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53101761ns 933426 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53102158ns 933433 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53102329ns 933436 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53102784ns 933444 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53102954ns 933447 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53103238ns 933452 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53103522ns 933457 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53103807ns 933462 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53104261ns 933470 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53104432ns 933473 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53104716ns 933478 1a110850 fd5ff06f jal x0, -44 +53105000ns 933483 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53105284ns 933488 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53105682ns 933495 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53105852ns 933498 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53106307ns 933506 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53106478ns 933509 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53106762ns 933514 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53107046ns 933519 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53107330ns 933524 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53107785ns 933532 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53107955ns 933535 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53108239ns 933540 1a110850 fd5ff06f jal x0, -44 +53108524ns 933545 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53108808ns 933550 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53109206ns 933557 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53109376ns 933560 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53109831ns 933568 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53110001ns 933571 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53110285ns 933576 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53110570ns 933581 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53110854ns 933586 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53111308ns 933594 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53111479ns 933597 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53111763ns 933602 1a110850 fd5ff06f jal x0, -44 +53112047ns 933607 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53112331ns 933612 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53112729ns 933619 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53112900ns 933622 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53113354ns 933630 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53113525ns 933633 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53113809ns 933638 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53114093ns 933643 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53114377ns 933648 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53114832ns 933656 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53115002ns 933659 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53115287ns 933664 1a110850 fd5ff06f jal x0, -44 +53115571ns 933669 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53115855ns 933674 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53116253ns 933681 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53116423ns 933684 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53116878ns 933692 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53117048ns 933695 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53117333ns 933700 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53117617ns 933705 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53117901ns 933710 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53118355ns 933718 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53118526ns 933721 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53118810ns 933726 1a110850 fd5ff06f jal x0, -44 +53119094ns 933731 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53119378ns 933736 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53119776ns 933743 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53119947ns 933746 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53120401ns 933754 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53120572ns 933757 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53120856ns 933762 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53121140ns 933767 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53121424ns 933772 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53121879ns 933780 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53122050ns 933783 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53122334ns 933788 1a110850 fd5ff06f jal x0, -44 +53122618ns 933793 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53122902ns 933798 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53123300ns 933805 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53123470ns 933808 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53123925ns 933816 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53124096ns 933819 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53124380ns 933824 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53124664ns 933829 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53124948ns 933834 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53125403ns 933842 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53125573ns 933845 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53125857ns 933850 1a110850 fd5ff06f jal x0, -44 +53126141ns 933855 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53126426ns 933860 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53126823ns 933867 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53126994ns 933870 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53127449ns 933878 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53127619ns 933881 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53127903ns 933886 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53128187ns 933891 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53128472ns 933896 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53128926ns 933904 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53129097ns 933907 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53129381ns 933912 1a110850 fd5ff06f jal x0, -44 +53129665ns 933917 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53129949ns 933922 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53130347ns 933929 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53130518ns 933932 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53130972ns 933940 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53131143ns 933943 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53131427ns 933948 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53131711ns 933953 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53131995ns 933958 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53132450ns 933966 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53132620ns 933969 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53132904ns 933974 1a110850 fd5ff06f jal x0, -44 +53133189ns 933979 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53133473ns 933984 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53133871ns 933991 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53134041ns 933994 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53134496ns 934002 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53134666ns 934005 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53134950ns 934010 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53135235ns 934015 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53135519ns 934020 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53135973ns 934028 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53136144ns 934031 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53136428ns 934036 1a110850 fd5ff06f jal x0, -44 +53136712ns 934041 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53136996ns 934046 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53137394ns 934053 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53137565ns 934056 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53138019ns 934064 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53138190ns 934067 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53138474ns 934072 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53138758ns 934077 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53139042ns 934082 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53139497ns 934090 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53139667ns 934093 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53139952ns 934098 1a110850 fd5ff06f jal x0, -44 +53140236ns 934103 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53140520ns 934108 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53140918ns 934115 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53141088ns 934118 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53141543ns 934126 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53141713ns 934129 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53141998ns 934134 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53142282ns 934139 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53142566ns 934144 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53143021ns 934152 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53143191ns 934155 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53143475ns 934160 1a110850 fd5ff06f jal x0, -44 +53143759ns 934165 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53144044ns 934170 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53144441ns 934177 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53144612ns 934180 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53145067ns 934188 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53145237ns 934191 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53145521ns 934196 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53145805ns 934201 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53146090ns 934206 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53146544ns 934214 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53146715ns 934217 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53146999ns 934222 1a110850 fd5ff06f jal x0, -44 +53147283ns 934227 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53147567ns 934232 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53147965ns 934239 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53148135ns 934242 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53148590ns 934250 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53148761ns 934253 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53149045ns 934258 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53149329ns 934263 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53149613ns 934268 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53150068ns 934276 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53150238ns 934279 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53150522ns 934284 1a110850 fd5ff06f jal x0, -44 +53150807ns 934289 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53151091ns 934294 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53151489ns 934301 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53151659ns 934304 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53152114ns 934312 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53152284ns 934315 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53152568ns 934320 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53152853ns 934325 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53153137ns 934330 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53153591ns 934338 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53153762ns 934341 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53154046ns 934346 1a110850 fd5ff06f jal x0, -44 +53154330ns 934351 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53154614ns 934356 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53155012ns 934363 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53155183ns 934366 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53155637ns 934374 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53155808ns 934377 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53156092ns 934382 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53156376ns 934387 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53156660ns 934392 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53157115ns 934400 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53157285ns 934403 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53157570ns 934408 1a110850 fd5ff06f jal x0, -44 +53157854ns 934413 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53158138ns 934418 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53158536ns 934425 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53158706ns 934428 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53159161ns 934436 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53159331ns 934439 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53159616ns 934444 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53159900ns 934449 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53160184ns 934454 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53160639ns 934462 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53160809ns 934465 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53161093ns 934470 1a110850 fd5ff06f jal x0, -44 +53161377ns 934475 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53161661ns 934480 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53162059ns 934487 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53162230ns 934490 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53162684ns 934498 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53162855ns 934501 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53163139ns 934506 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53163423ns 934511 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53163707ns 934516 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53164162ns 934524 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53164333ns 934527 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53164617ns 934532 1a110850 fd5ff06f jal x0, -44 +53164901ns 934537 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53165185ns 934542 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53165583ns 934549 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53165753ns 934552 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53166208ns 934560 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53166379ns 934563 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53166663ns 934568 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53166947ns 934573 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53167231ns 934578 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53167686ns 934586 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53167856ns 934589 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53168140ns 934594 1a110850 fd5ff06f jal x0, -44 +53168424ns 934599 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53168709ns 934604 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53169106ns 934611 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53169277ns 934614 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53169732ns 934622 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53169902ns 934625 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53170186ns 934630 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53170470ns 934635 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53170755ns 934640 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53171209ns 934648 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53171380ns 934651 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53171664ns 934656 1a110850 fd5ff06f jal x0, -44 +53171948ns 934661 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53172232ns 934666 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53172630ns 934673 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53172801ns 934676 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53173255ns 934684 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53173426ns 934687 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53173710ns 934692 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53173994ns 934697 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53174278ns 934702 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53174733ns 934710 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53174903ns 934713 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53175187ns 934718 1a110850 fd5ff06f jal x0, -44 +53175472ns 934723 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53175756ns 934728 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53176154ns 934735 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53176324ns 934738 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53176779ns 934746 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53176949ns 934749 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53177233ns 934754 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53177518ns 934759 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53177802ns 934764 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53178256ns 934772 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53178427ns 934775 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53178711ns 934780 1a110850 fd5ff06f jal x0, -44 +53178995ns 934785 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53179279ns 934790 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53179677ns 934797 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53179848ns 934800 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53180302ns 934808 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53180473ns 934811 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53180757ns 934816 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53181041ns 934821 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53181325ns 934826 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53181780ns 934834 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53181951ns 934837 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53182235ns 934842 1a110850 fd5ff06f jal x0, -44 +53182519ns 934847 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53182803ns 934852 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53183201ns 934859 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53183371ns 934862 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53183826ns 934870 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53183996ns 934873 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53184281ns 934878 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53184565ns 934883 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53184849ns 934888 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53185304ns 934896 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53185474ns 934899 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53185758ns 934904 1a110850 fd5ff06f jal x0, -44 +53186042ns 934909 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53186327ns 934914 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53186724ns 934921 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53186895ns 934924 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53187350ns 934932 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53187520ns 934935 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53187804ns 934940 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53188088ns 934945 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53188373ns 934950 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53188827ns 934958 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53188998ns 934961 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53189282ns 934966 1a110850 fd5ff06f jal x0, -44 +53189566ns 934971 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53189850ns 934976 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53190248ns 934983 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53190418ns 934986 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53190873ns 934994 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53191044ns 934997 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53191328ns 935002 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53191612ns 935007 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53191896ns 935012 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53192351ns 935020 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53192521ns 935023 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53192805ns 935028 1a110850 fd5ff06f jal x0, -44 +53193090ns 935033 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53193374ns 935038 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53193772ns 935045 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53193942ns 935048 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53194397ns 935056 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53194567ns 935059 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53194851ns 935064 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53195136ns 935069 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53195420ns 935074 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53195874ns 935082 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53196045ns 935085 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53196329ns 935090 1a110850 fd5ff06f jal x0, -44 +53196613ns 935095 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53196897ns 935100 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53197295ns 935107 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53197466ns 935110 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53197920ns 935118 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53198091ns 935121 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53198375ns 935126 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53198659ns 935131 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53198943ns 935136 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53199398ns 935144 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53199568ns 935147 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53199853ns 935152 1a110850 fd5ff06f jal x0, -44 +53200137ns 935157 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53200421ns 935162 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53200819ns 935169 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53200989ns 935172 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53201444ns 935180 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53201614ns 935183 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53201899ns 935188 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53202183ns 935193 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53202467ns 935198 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53202922ns 935206 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53203092ns 935209 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53203376ns 935214 1a110850 fd5ff06f jal x0, -44 +53203660ns 935219 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53203944ns 935224 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53204342ns 935231 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53204513ns 935234 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53204967ns 935242 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53205138ns 935245 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53205422ns 935250 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53205706ns 935255 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53205990ns 935260 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53206445ns 935268 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53206616ns 935271 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53206900ns 935276 1a110850 fd5ff06f jal x0, -44 +53207184ns 935281 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53207468ns 935286 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53207866ns 935293 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53208036ns 935296 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53208491ns 935304 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53208662ns 935307 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53208946ns 935312 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53209230ns 935317 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53209514ns 935322 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53209969ns 935330 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53210139ns 935333 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53210423ns 935338 1a110850 fd5ff06f jal x0, -44 +53210707ns 935343 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53210992ns 935348 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53211389ns 935355 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53211560ns 935358 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53212015ns 935366 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53212185ns 935369 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53212469ns 935374 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53212753ns 935379 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53213038ns 935384 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53213492ns 935392 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53213663ns 935395 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53213947ns 935400 1a110850 fd5ff06f jal x0, -44 +53214231ns 935405 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53214515ns 935410 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53214913ns 935417 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53215084ns 935420 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53215538ns 935428 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53215709ns 935431 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53215993ns 935436 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53216277ns 935441 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53216561ns 935446 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53217016ns 935454 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53217186ns 935457 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53217471ns 935462 1a110850 fd5ff06f jal x0, -44 +53217755ns 935467 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53218039ns 935472 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53218437ns 935479 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53218607ns 935482 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53219062ns 935490 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53219232ns 935493 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53219516ns 935498 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53219801ns 935503 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53220085ns 935508 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53220539ns 935516 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53220710ns 935519 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53220994ns 935524 1a110850 fd5ff06f jal x0, -44 +53221278ns 935529 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53221562ns 935534 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53221960ns 935541 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53222131ns 935544 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53222585ns 935552 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53222756ns 935555 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53223040ns 935560 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53223324ns 935565 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53223608ns 935570 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53224063ns 935578 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53224234ns 935581 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53224518ns 935586 1a110850 fd5ff06f jal x0, -44 +53224802ns 935591 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53225086ns 935596 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53225484ns 935603 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53225654ns 935606 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53226109ns 935614 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53226279ns 935617 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53226564ns 935622 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53226848ns 935627 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53227132ns 935632 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53227587ns 935640 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53227757ns 935643 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53228041ns 935648 1a110850 fd5ff06f jal x0, -44 +53228325ns 935653 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53228610ns 935658 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53229007ns 935665 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53229178ns 935668 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53229633ns 935676 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53229803ns 935679 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53230087ns 935684 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53230371ns 935689 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53230656ns 935694 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53231110ns 935702 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53231281ns 935705 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53231565ns 935710 1a110850 fd5ff06f jal x0, -44 +53231849ns 935715 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53232133ns 935720 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53232531ns 935727 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53232701ns 935730 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53233156ns 935738 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53233327ns 935741 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53233611ns 935746 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53233895ns 935751 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53234179ns 935756 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53234634ns 935764 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53234804ns 935767 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53235088ns 935772 1a110850 fd5ff06f jal x0, -44 +53235373ns 935777 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53235657ns 935782 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53236055ns 935789 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53236225ns 935792 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53236680ns 935800 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53236850ns 935803 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53237134ns 935808 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53237419ns 935813 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53237703ns 935818 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53238157ns 935826 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53238328ns 935829 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53238612ns 935834 1a110850 fd5ff06f jal x0, -44 +53238896ns 935839 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53239180ns 935844 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53239578ns 935851 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53239749ns 935854 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53240203ns 935862 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53240374ns 935865 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53240658ns 935870 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53240942ns 935875 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53241226ns 935880 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53241681ns 935888 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53241851ns 935891 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53242136ns 935896 1a110850 fd5ff06f jal x0, -44 +53242420ns 935901 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53242704ns 935906 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53243102ns 935913 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53243272ns 935916 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53243727ns 935924 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53243897ns 935927 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53244182ns 935932 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53244466ns 935937 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53244750ns 935942 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53245205ns 935950 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53245375ns 935953 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53245659ns 935958 1a110850 fd5ff06f jal x0, -44 +53245943ns 935963 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53246227ns 935968 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53246625ns 935975 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53246796ns 935978 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53247250ns 935986 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53247421ns 935989 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53247705ns 935994 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53247989ns 935999 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53248273ns 936004 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53248728ns 936012 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53248899ns 936015 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53249183ns 936020 1a110850 fd5ff06f jal x0, -44 +53249467ns 936025 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53249751ns 936030 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53250149ns 936037 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53250319ns 936040 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53250774ns 936048 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53250945ns 936051 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53251229ns 936056 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53251513ns 936061 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53251797ns 936066 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53252252ns 936074 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53252422ns 936077 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53252706ns 936082 1a110850 fd5ff06f jal x0, -44 +53252991ns 936087 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53253275ns 936092 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53253672ns 936099 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53253843ns 936102 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53254298ns 936110 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53254468ns 936113 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53254752ns 936118 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53255036ns 936123 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53255321ns 936128 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53255775ns 936136 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53255946ns 936139 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53256230ns 936144 1a110850 fd5ff06f jal x0, -44 +53256514ns 936149 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53256798ns 936154 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53257196ns 936161 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53257367ns 936164 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53257821ns 936172 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53257992ns 936175 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53258276ns 936180 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53258560ns 936185 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53258844ns 936190 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53259299ns 936198 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53259469ns 936201 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53259754ns 936206 1a110850 fd5ff06f jal x0, -44 +53260038ns 936211 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53260322ns 936216 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53260720ns 936223 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53260890ns 936226 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53261345ns 936234 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53261515ns 936237 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53261799ns 936242 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53262084ns 936247 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53262368ns 936252 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53262822ns 936260 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53262993ns 936263 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53263277ns 936268 1a110850 fd5ff06f jal x0, -44 +53263561ns 936273 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53263845ns 936278 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53264243ns 936285 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53264414ns 936288 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53264868ns 936296 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53265039ns 936299 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53265323ns 936304 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53265607ns 936309 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53265891ns 936314 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53266346ns 936322 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53266517ns 936325 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53266801ns 936330 1a110850 fd5ff06f jal x0, -44 +53267085ns 936335 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53267369ns 936340 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53267767ns 936347 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53267937ns 936350 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53268392ns 936358 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53268562ns 936361 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53268847ns 936366 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53269131ns 936371 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53269415ns 936376 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53269870ns 936384 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53270040ns 936387 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53270324ns 936392 1a110850 fd5ff06f jal x0, -44 +53270608ns 936397 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53270893ns 936402 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53271290ns 936409 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53271461ns 936412 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53271916ns 936420 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53272086ns 936423 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53272370ns 936428 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53272654ns 936433 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53272939ns 936438 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53273393ns 936446 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53273564ns 936449 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53273848ns 936454 1a110850 fd5ff06f jal x0, -44 +53274132ns 936459 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53274416ns 936464 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53274814ns 936471 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53274984ns 936474 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53275439ns 936482 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53275610ns 936485 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53275894ns 936490 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53276178ns 936495 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53276462ns 936500 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53276917ns 936508 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53277087ns 936511 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53277371ns 936516 1a110850 fd5ff06f jal x0, -44 +53277656ns 936521 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53277940ns 936526 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53278338ns 936533 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53278508ns 936536 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53278963ns 936544 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53279133ns 936547 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53279417ns 936552 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53279702ns 936557 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53279986ns 936562 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53280440ns 936570 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53280611ns 936573 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53280895ns 936578 1a110850 fd5ff06f jal x0, -44 +53281179ns 936583 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53281463ns 936588 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53281861ns 936595 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53282032ns 936598 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53282486ns 936606 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53282657ns 936609 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53282941ns 936614 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53283225ns 936619 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53283509ns 936624 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53283964ns 936632 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53284134ns 936635 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53284419ns 936640 1a110850 fd5ff06f jal x0, -44 +53284703ns 936645 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53284987ns 936650 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53285385ns 936657 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53285555ns 936660 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53286010ns 936668 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53286180ns 936671 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53286465ns 936676 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53286749ns 936681 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53287033ns 936686 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53287488ns 936694 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53287658ns 936697 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53287942ns 936702 1a110850 fd5ff06f jal x0, -44 +53288226ns 936707 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53288511ns 936712 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53288908ns 936719 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53289079ns 936722 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53289533ns 936730 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53289704ns 936733 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53289988ns 936738 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53290272ns 936743 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53290556ns 936748 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53291011ns 936756 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53291182ns 936759 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53291466ns 936764 1a110850 fd5ff06f jal x0, -44 +53291750ns 936769 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53292034ns 936774 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53292432ns 936781 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53292602ns 936784 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53293057ns 936792 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53293228ns 936795 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53293512ns 936800 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53293796ns 936805 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53294080ns 936810 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53294535ns 936818 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53294705ns 936821 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53294989ns 936826 1a110850 fd5ff06f jal x0, -44 +53295274ns 936831 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53295558ns 936836 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53295955ns 936843 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53296126ns 936846 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53296581ns 936854 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53296751ns 936857 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53297035ns 936862 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53297319ns 936867 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53297604ns 936872 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53298058ns 936880 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53298229ns 936883 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53298513ns 936888 1a110850 fd5ff06f jal x0, -44 +53298797ns 936893 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53299081ns 936898 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53299479ns 936905 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53299650ns 936908 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53300104ns 936916 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53300275ns 936919 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53300559ns 936924 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53300843ns 936929 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53301127ns 936934 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53301582ns 936942 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53301752ns 936945 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53302037ns 936950 1a110850 fd5ff06f jal x0, -44 +53302321ns 936955 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53302605ns 936960 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53303003ns 936967 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53303173ns 936970 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53303628ns 936978 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53303798ns 936981 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53304082ns 936986 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53304367ns 936991 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53304651ns 936996 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53305105ns 937004 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53305276ns 937007 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53305560ns 937012 1a110850 fd5ff06f jal x0, -44 +53305844ns 937017 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53306128ns 937022 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53306526ns 937029 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53306697ns 937032 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53307151ns 937040 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53307322ns 937043 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53307606ns 937048 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53307890ns 937053 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53308174ns 937058 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53308629ns 937066 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53308800ns 937069 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53309084ns 937074 1a110850 fd5ff06f jal x0, -44 +53309368ns 937079 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53309652ns 937084 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53310050ns 937091 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53310220ns 937094 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53310675ns 937102 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53310845ns 937105 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53311130ns 937110 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53311414ns 937115 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53311698ns 937120 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53312153ns 937128 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53312323ns 937131 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53312607ns 937136 1a110850 fd5ff06f jal x0, -44 +53312891ns 937141 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53313176ns 937146 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53313573ns 937153 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53313744ns 937156 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53314199ns 937164 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53314369ns 937167 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53314653ns 937172 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53314937ns 937177 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53315222ns 937182 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53315676ns 937190 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53315847ns 937193 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53316131ns 937198 1a110850 fd5ff06f jal x0, -44 +53316415ns 937203 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53316699ns 937208 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53317097ns 937215 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53317267ns 937218 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53317722ns 937226 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53317893ns 937229 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53318177ns 937234 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53318461ns 937239 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53318745ns 937244 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53319200ns 937252 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53319370ns 937255 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53319654ns 937260 1a110850 fd5ff06f jal x0, -44 +53319939ns 937265 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53320223ns 937270 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53320621ns 937277 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53320791ns 937280 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53321246ns 937288 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53321416ns 937291 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53321700ns 937296 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53321985ns 937301 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53322269ns 937306 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53322723ns 937314 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53322894ns 937317 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53323178ns 937322 1a110850 fd5ff06f jal x0, -44 +53323462ns 937327 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53323746ns 937332 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53324144ns 937339 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53324315ns 937342 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53324769ns 937350 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53324940ns 937353 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53325224ns 937358 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53325508ns 937363 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53325792ns 937368 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53326247ns 937376 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53326417ns 937379 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53326702ns 937384 1a110850 fd5ff06f jal x0, -44 +53326986ns 937389 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53327270ns 937394 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53327668ns 937401 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53327838ns 937404 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53328293ns 937412 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53328463ns 937415 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53328748ns 937420 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53329032ns 937425 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53329316ns 937430 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53329771ns 937438 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53329941ns 937441 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53330225ns 937446 1a110850 fd5ff06f jal x0, -44 +53330509ns 937451 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53330794ns 937456 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53331191ns 937463 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53331362ns 937466 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53331816ns 937474 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53331987ns 937477 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53332271ns 937482 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53332555ns 937487 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53332839ns 937492 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53333294ns 937500 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53333465ns 937503 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53333749ns 937508 1a110850 fd5ff06f jal x0, -44 +53334033ns 937513 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53334317ns 937518 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53334715ns 937525 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53334885ns 937528 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53335340ns 937536 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53335511ns 937539 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53335795ns 937544 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53336079ns 937549 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53336363ns 937554 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53336818ns 937562 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53336988ns 937565 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53337272ns 937570 1a110850 fd5ff06f jal x0, -44 +53337557ns 937575 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53337841ns 937580 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53338239ns 937587 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53338409ns 937590 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53338864ns 937598 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53339034ns 937601 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53339318ns 937606 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53339602ns 937611 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53339887ns 937616 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53340341ns 937624 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53340512ns 937627 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53340796ns 937632 1a110850 fd5ff06f jal x0, -44 +53341080ns 937637 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53341364ns 937642 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53341762ns 937649 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53341933ns 937652 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53342387ns 937660 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53342558ns 937663 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53342842ns 937668 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53343126ns 937673 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53343410ns 937678 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53343865ns 937686 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53344035ns 937689 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53344320ns 937694 1a110850 fd5ff06f jal x0, -44 +53344604ns 937699 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53344888ns 937704 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53345286ns 937711 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53345456ns 937714 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53345911ns 937722 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53346081ns 937725 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53346365ns 937730 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53346650ns 937735 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53346934ns 937740 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53347388ns 937748 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53347559ns 937751 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53347843ns 937756 1a110850 fd5ff06f jal x0, -44 +53348127ns 937761 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53348411ns 937766 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53348809ns 937773 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53348980ns 937776 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53349434ns 937784 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53349605ns 937787 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53349889ns 937792 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53350173ns 937797 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53350457ns 937802 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53350912ns 937810 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53351083ns 937813 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53351367ns 937818 1a110850 fd5ff06f jal x0, -44 +53351651ns 937823 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53351935ns 937828 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53352333ns 937835 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53352503ns 937838 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53352958ns 937846 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53353128ns 937849 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53353413ns 937854 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53353697ns 937859 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53353981ns 937864 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53354436ns 937872 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53354606ns 937875 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53354890ns 937880 1a110850 fd5ff06f jal x0, -44 +53355174ns 937885 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53355459ns 937890 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53355856ns 937897 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53356027ns 937900 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53356482ns 937908 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53356652ns 937911 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53356936ns 937916 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53357220ns 937921 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53357505ns 937926 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53357959ns 937934 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53358130ns 937937 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53358414ns 937942 1a110850 fd5ff06f jal x0, -44 +53358698ns 937947 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53358982ns 937952 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53359380ns 937959 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53359551ns 937962 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53360005ns 937970 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53360176ns 937973 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53360460ns 937978 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53360744ns 937983 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53361028ns 937988 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53361483ns 937996 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53361653ns 937999 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53361937ns 938004 1a110850 fd5ff06f jal x0, -44 +53362222ns 938009 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53362506ns 938014 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53362904ns 938021 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53363074ns 938024 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53363529ns 938032 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53363699ns 938035 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53363983ns 938040 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53364268ns 938045 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53364552ns 938050 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53365006ns 938058 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53365177ns 938061 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53365461ns 938066 1a110850 fd5ff06f jal x0, -44 +53365745ns 938071 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53366029ns 938076 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53366427ns 938083 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53366598ns 938086 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53367052ns 938094 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53367223ns 938097 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53367507ns 938102 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53367791ns 938107 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53368075ns 938112 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53368530ns 938120 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53368700ns 938123 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53368985ns 938128 1a110850 fd5ff06f jal x0, -44 +53369269ns 938133 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53369553ns 938138 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53369951ns 938145 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53370121ns 938148 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53370576ns 938156 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53370746ns 938159 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53371031ns 938164 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53371315ns 938169 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53371599ns 938174 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53372054ns 938182 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53372224ns 938185 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53372508ns 938190 1a110850 fd5ff06f jal x0, -44 +53372792ns 938195 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53373077ns 938200 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53373474ns 938207 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53373645ns 938210 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53374099ns 938218 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53374270ns 938221 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53374554ns 938226 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53374838ns 938231 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53375122ns 938236 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53375577ns 938244 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53375748ns 938247 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53376032ns 938252 1a110850 fd5ff06f jal x0, -44 +53376316ns 938257 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53376600ns 938262 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53376998ns 938269 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53377168ns 938272 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53377623ns 938280 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53377794ns 938283 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53378078ns 938288 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53378362ns 938293 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53378646ns 938298 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53379101ns 938306 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53379271ns 938309 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53379555ns 938314 1a110850 fd5ff06f jal x0, -44 +53379840ns 938319 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53380124ns 938324 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53380522ns 938331 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53380692ns 938334 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53381147ns 938342 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53381317ns 938345 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53381601ns 938350 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53381885ns 938355 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53382170ns 938360 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53382624ns 938368 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53382795ns 938371 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53383079ns 938376 1a110850 fd5ff06f jal x0, -44 +53383363ns 938381 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53383647ns 938386 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53384045ns 938393 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53384216ns 938396 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53384670ns 938404 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53384841ns 938407 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53385125ns 938412 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53385409ns 938417 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53385693ns 938422 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53386148ns 938430 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53386318ns 938433 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53386603ns 938438 1a110850 fd5ff06f jal x0, -44 +53386887ns 938443 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53387171ns 938448 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53387569ns 938455 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53387739ns 938458 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53388194ns 938466 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53388364ns 938469 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53388648ns 938474 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53388933ns 938479 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53389217ns 938484 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53389671ns 938492 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53389842ns 938495 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53390126ns 938500 1a110850 fd5ff06f jal x0, -44 +53390410ns 938505 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53390694ns 938510 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53391092ns 938517 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53391263ns 938520 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53391717ns 938528 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53391888ns 938531 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53392172ns 938536 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53392456ns 938541 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53392740ns 938546 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53393195ns 938554 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53393366ns 938557 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53393650ns 938562 1a110850 fd5ff06f jal x0, -44 +53393934ns 938567 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53394218ns 938572 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53394616ns 938579 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53394786ns 938582 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53395241ns 938590 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53395411ns 938593 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53395696ns 938598 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53395980ns 938603 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53396264ns 938608 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53396719ns 938616 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53396889ns 938619 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53397173ns 938624 1a110850 fd5ff06f jal x0, -44 +53397457ns 938629 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53397742ns 938634 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53398139ns 938641 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53398310ns 938644 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53398765ns 938652 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53398935ns 938655 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53399219ns 938660 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53399503ns 938665 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53399788ns 938670 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53400242ns 938678 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53400413ns 938681 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53400697ns 938686 1a110850 fd5ff06f jal x0, -44 +53400981ns 938691 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53401265ns 938696 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53401663ns 938703 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53401834ns 938706 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53402288ns 938714 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53402459ns 938717 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53402743ns 938722 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53403027ns 938727 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53403311ns 938732 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53403766ns 938740 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53403936ns 938743 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53404220ns 938748 1a110850 fd5ff06f jal x0, -44 +53404505ns 938753 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53404789ns 938758 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53405187ns 938765 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53405357ns 938768 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53405812ns 938776 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53405982ns 938779 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53406266ns 938784 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53406551ns 938789 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53406835ns 938794 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53407289ns 938802 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53407460ns 938805 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53407744ns 938810 1a110850 fd5ff06f jal x0, -44 +53408028ns 938815 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53408312ns 938820 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53408710ns 938827 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53408881ns 938830 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53409335ns 938838 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53409506ns 938841 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53409790ns 938846 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53410074ns 938851 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53410358ns 938856 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53410813ns 938864 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53410983ns 938867 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53411268ns 938872 1a110850 fd5ff06f jal x0, -44 +53411552ns 938877 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53411836ns 938882 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53412234ns 938889 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53412404ns 938892 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53412859ns 938900 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53413029ns 938903 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53413314ns 938908 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53413598ns 938913 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53413882ns 938918 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53414337ns 938926 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53414507ns 938929 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53414791ns 938934 1a110850 fd5ff06f jal x0, -44 +53415075ns 938939 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53415360ns 938944 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53415757ns 938951 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53415928ns 938954 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53416383ns 938962 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53416553ns 938965 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53416837ns 938970 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53417121ns 938975 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53417405ns 938980 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53417860ns 938988 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53418031ns 938991 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53418315ns 938996 1a110850 fd5ff06f jal x0, -44 +53418599ns 939001 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53418883ns 939006 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53419281ns 939013 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53419451ns 939016 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53419906ns 939024 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53420077ns 939027 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53420361ns 939032 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53420645ns 939037 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53420929ns 939042 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53421384ns 939050 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53421554ns 939053 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53421838ns 939058 1a110850 fd5ff06f jal x0, -44 +53422123ns 939063 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53422407ns 939068 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53422805ns 939075 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53422975ns 939078 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53423430ns 939086 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53423600ns 939089 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53423884ns 939094 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53424168ns 939099 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53424453ns 939104 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53424907ns 939112 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53425078ns 939115 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53425362ns 939120 1a110850 fd5ff06f jal x0, -44 +53425646ns 939125 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53425930ns 939130 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53426328ns 939137 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53426499ns 939140 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53426953ns 939148 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53427124ns 939151 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53427408ns 939156 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53427692ns 939161 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53427976ns 939166 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53428431ns 939174 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53428601ns 939177 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53428886ns 939182 1a110850 fd5ff06f jal x0, -44 +53429170ns 939187 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53429454ns 939192 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53429852ns 939199 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53430022ns 939202 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53430477ns 939210 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53430647ns 939213 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53430931ns 939218 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53431216ns 939223 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53431500ns 939228 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53431954ns 939236 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53432125ns 939239 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53432409ns 939244 1a110850 fd5ff06f jal x0, -44 +53432693ns 939249 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53432977ns 939254 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53433375ns 939261 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53433546ns 939264 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53434000ns 939272 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53434171ns 939275 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53434455ns 939280 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53434739ns 939285 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53435023ns 939290 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53435478ns 939298 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53435649ns 939301 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53435933ns 939306 1a110850 fd5ff06f jal x0, -44 +53436217ns 939311 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53436501ns 939316 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53436899ns 939323 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53437069ns 939326 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53437524ns 939334 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53437695ns 939337 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53437979ns 939342 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53438263ns 939347 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53438547ns 939352 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53439002ns 939360 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53439172ns 939363 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53439456ns 939368 1a110850 fd5ff06f jal x0, -44 +53439740ns 939373 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53440025ns 939378 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53440422ns 939385 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53440593ns 939388 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53441048ns 939396 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53441218ns 939399 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53441502ns 939404 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53441786ns 939409 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53442071ns 939414 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53442525ns 939422 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53442696ns 939425 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53442980ns 939430 1a110850 fd5ff06f jal x0, -44 +53443264ns 939435 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53443548ns 939440 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53443946ns 939447 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53444117ns 939450 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53444571ns 939458 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53444742ns 939461 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53445026ns 939466 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53445310ns 939471 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53445594ns 939476 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53446049ns 939484 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53446219ns 939487 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53446503ns 939492 1a110850 fd5ff06f jal x0, -44 +53446788ns 939497 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53447072ns 939502 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53447470ns 939509 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53447640ns 939512 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53448095ns 939520 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53448265ns 939523 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53448549ns 939528 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53448834ns 939533 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53449118ns 939538 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53449572ns 939546 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53449743ns 939549 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53450027ns 939554 1a110850 fd5ff06f jal x0, -44 +53450311ns 939559 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53450595ns 939564 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53450993ns 939571 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53451164ns 939574 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53451618ns 939582 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53451789ns 939585 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53452073ns 939590 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53452357ns 939595 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53452641ns 939600 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53453096ns 939608 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53453266ns 939611 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53453551ns 939616 1a110850 fd5ff06f jal x0, -44 +53453835ns 939621 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53454119ns 939626 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53454517ns 939633 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53454687ns 939636 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53455142ns 939644 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53455312ns 939647 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53455597ns 939652 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53455881ns 939657 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53456165ns 939662 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53456620ns 939670 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53456790ns 939673 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53457074ns 939678 1a110850 fd5ff06f jal x0, -44 +53457358ns 939683 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53457643ns 939688 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53458040ns 939695 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53458211ns 939698 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53458666ns 939706 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53458836ns 939709 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53459120ns 939714 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53459404ns 939719 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53459688ns 939724 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53460143ns 939732 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53460314ns 939735 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53460598ns 939740 1a110850 fd5ff06f jal x0, -44 +53460882ns 939745 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53461166ns 939750 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53461564ns 939757 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53461734ns 939760 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53462189ns 939768 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53462360ns 939771 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53462644ns 939776 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53462928ns 939781 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53463212ns 939786 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53463667ns 939794 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53463837ns 939797 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53464121ns 939802 1a110850 fd5ff06f jal x0, -44 +53464406ns 939807 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53464690ns 939812 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53465088ns 939819 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53465258ns 939822 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53465713ns 939830 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53465883ns 939833 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53466167ns 939838 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53466451ns 939843 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53466736ns 939848 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53467190ns 939856 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53467361ns 939859 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53467645ns 939864 1a110850 fd5ff06f jal x0, -44 +53467929ns 939869 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53468213ns 939874 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53468611ns 939881 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53468782ns 939884 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53469236ns 939892 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53469407ns 939895 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53469691ns 939900 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53469975ns 939905 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53470259ns 939910 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53470714ns 939918 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53470884ns 939921 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53471169ns 939926 1a110850 fd5ff06f jal x0, -44 +53471453ns 939931 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53471737ns 939936 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53472135ns 939943 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53472305ns 939946 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53472760ns 939954 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53472930ns 939957 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53473215ns 939962 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53473499ns 939967 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53473783ns 939972 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53474237ns 939980 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53474408ns 939983 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53474692ns 939988 1a110850 fd5ff06f jal x0, -44 +53474976ns 939993 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53475260ns 939998 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53475658ns 940005 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53475829ns 940008 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53476283ns 940016 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53476454ns 940019 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53476738ns 940024 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53477022ns 940029 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53477306ns 940034 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53477761ns 940042 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53477932ns 940045 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53478216ns 940050 1a110850 fd5ff06f jal x0, -44 +53478500ns 940055 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53478784ns 940060 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53479182ns 940067 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53479352ns 940070 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53479807ns 940078 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53479978ns 940081 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53480262ns 940086 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53480546ns 940091 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53480830ns 940096 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53481285ns 940104 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53481455ns 940107 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53481739ns 940112 1a110850 fd5ff06f jal x0, -44 +53482023ns 940117 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53482308ns 940122 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53482705ns 940129 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53482876ns 940132 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53483331ns 940140 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53483501ns 940143 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53483785ns 940148 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53484069ns 940153 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53484354ns 940158 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53484808ns 940166 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53484979ns 940169 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53485263ns 940174 1a110850 fd5ff06f jal x0, -44 +53485547ns 940179 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53485831ns 940184 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53486229ns 940191 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53486400ns 940194 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53486854ns 940202 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53487025ns 940205 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53487309ns 940210 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53487593ns 940215 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53487877ns 940220 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53488332ns 940228 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53488502ns 940231 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53488786ns 940236 1a110850 fd5ff06f jal x0, -44 +53489071ns 940241 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53489355ns 940246 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53489753ns 940253 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53489923ns 940256 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53490378ns 940264 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53490548ns 940267 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53490832ns 940272 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53491117ns 940277 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53491401ns 940282 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53491855ns 940290 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53492026ns 940293 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53492310ns 940298 1a110850 fd5ff06f jal x0, -44 +53492594ns 940303 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53492878ns 940308 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53493276ns 940315 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53493447ns 940318 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53493901ns 940326 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53494072ns 940329 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53494356ns 940334 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53494640ns 940339 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53494924ns 940344 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53495379ns 940352 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53495549ns 940355 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53495834ns 940360 1a110850 fd5ff06f jal x0, -44 +53496118ns 940365 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53496402ns 940370 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53496800ns 940377 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53496970ns 940380 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53497425ns 940388 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53497595ns 940391 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53497880ns 940396 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53498164ns 940401 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53498448ns 940406 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53498903ns 940414 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53499073ns 940417 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53499357ns 940422 1a110850 fd5ff06f jal x0, -44 +53499641ns 940427 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53499926ns 940432 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53500323ns 940439 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53500494ns 940442 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53500949ns 940450 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53501119ns 940453 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53501403ns 940458 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53501687ns 940463 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53501971ns 940468 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53502426ns 940476 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53502597ns 940479 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53502881ns 940484 1a110850 fd5ff06f jal x0, -44 +53503165ns 940489 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53503449ns 940494 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53503847ns 940501 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53504017ns 940504 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53504472ns 940512 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53504643ns 940515 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53504927ns 940520 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53505211ns 940525 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53505495ns 940530 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53505950ns 940538 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53506120ns 940541 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53506404ns 940546 1a110850 fd5ff06f jal x0, -44 +53506689ns 940551 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53506973ns 940556 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53507371ns 940563 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53507541ns 940566 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53507996ns 940574 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53508166ns 940577 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53508450ns 940582 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53508735ns 940587 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53509019ns 940592 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53509473ns 940600 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53509644ns 940603 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53509928ns 940608 1a110850 fd5ff06f jal x0, -44 +53510212ns 940613 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53510496ns 940618 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53510894ns 940625 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53511065ns 940628 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53511519ns 940636 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53511690ns 940639 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53511974ns 940644 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53512258ns 940649 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53512542ns 940654 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53512997ns 940662 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53513167ns 940665 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53513452ns 940670 1a110850 fd5ff06f jal x0, -44 +53513736ns 940675 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53514020ns 940680 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53514418ns 940687 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53514588ns 940690 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53515043ns 940698 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53515213ns 940701 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53515498ns 940706 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53515782ns 940711 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53516066ns 940716 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53516520ns 940724 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53516691ns 940727 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53516975ns 940732 1a110850 fd5ff06f jal x0, -44 +53517259ns 940737 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53517543ns 940742 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53517941ns 940749 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53518112ns 940752 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53518566ns 940760 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53518737ns 940763 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53519021ns 940768 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53519305ns 940773 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53519589ns 940778 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53520044ns 940786 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53520215ns 940789 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53520499ns 940794 1a110850 fd5ff06f jal x0, -44 +53520783ns 940799 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53521067ns 940804 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53521465ns 940811 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53521635ns 940814 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53522090ns 940822 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53522261ns 940825 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53522545ns 940830 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53522829ns 940835 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53523113ns 940840 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53523568ns 940848 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53523738ns 940851 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53524022ns 940856 1a110850 fd5ff06f jal x0, -44 +53524306ns 940861 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53524591ns 940866 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53524988ns 940873 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53525159ns 940876 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53525614ns 940884 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53525784ns 940887 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53526068ns 940892 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53526352ns 940897 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53526637ns 940902 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53527091ns 940910 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53527262ns 940913 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53527546ns 940918 1a110850 fd5ff06f jal x0, -44 +53527830ns 940923 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53528114ns 940928 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53528512ns 940935 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53528683ns 940938 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53529137ns 940946 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53529308ns 940949 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53529592ns 940954 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53529876ns 940959 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53530160ns 940964 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53530615ns 940972 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53530785ns 940975 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53531069ns 940980 1a110850 fd5ff06f jal x0, -44 +53531354ns 940985 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53531638ns 940990 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53532036ns 940997 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53532206ns 941000 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53532661ns 941008 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53532831ns 941011 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53533115ns 941016 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53533400ns 941021 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53533684ns 941026 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53534138ns 941034 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53534309ns 941037 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53534593ns 941042 1a110850 fd5ff06f jal x0, -44 +53534877ns 941047 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53535161ns 941052 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53535559ns 941059 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53535730ns 941062 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53536184ns 941070 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53536355ns 941073 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53536639ns 941078 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53536923ns 941083 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53537207ns 941088 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53537662ns 941096 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53537832ns 941099 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53538117ns 941104 1a110850 fd5ff06f jal x0, -44 +53538401ns 941109 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53538685ns 941114 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53539083ns 941121 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53539253ns 941124 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53539708ns 941132 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53539878ns 941135 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53540163ns 941140 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53540447ns 941145 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53540731ns 941150 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53541186ns 941158 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53541356ns 941161 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53541640ns 941166 1a110850 fd5ff06f jal x0, -44 +53541924ns 941171 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53542209ns 941176 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53542606ns 941183 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53542777ns 941186 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53543232ns 941194 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53543402ns 941197 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53543686ns 941202 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53543970ns 941207 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53544255ns 941212 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53544709ns 941220 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53544880ns 941223 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53545164ns 941228 1a110850 fd5ff06f jal x0, -44 +53545448ns 941233 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53545732ns 941238 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53546130ns 941245 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53546300ns 941248 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53546755ns 941256 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53546926ns 941259 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53547210ns 941264 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53547494ns 941269 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53547778ns 941274 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53548233ns 941282 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53548403ns 941285 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53548687ns 941290 1a110850 fd5ff06f jal x0, -44 +53548972ns 941295 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53549256ns 941300 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53549654ns 941307 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53549824ns 941310 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53550279ns 941318 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53550449ns 941321 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53550733ns 941326 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53551018ns 941331 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53551302ns 941336 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53551756ns 941344 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53551927ns 941347 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53552211ns 941352 1a110850 fd5ff06f jal x0, -44 +53552495ns 941357 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53552779ns 941362 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53553177ns 941369 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53553348ns 941372 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53553802ns 941380 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53553973ns 941383 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53554257ns 941388 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53554541ns 941393 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53554825ns 941398 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53555280ns 941406 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53555450ns 941409 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53555735ns 941414 1a110850 fd5ff06f jal x0, -44 +53556019ns 941419 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53556303ns 941424 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53556701ns 941431 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53556871ns 941434 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53557326ns 941442 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53557496ns 941445 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53557781ns 941450 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53558065ns 941455 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53558349ns 941460 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53558803ns 941468 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53558974ns 941471 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53559258ns 941476 1a110850 fd5ff06f jal x0, -44 +53559542ns 941481 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53559826ns 941486 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53560224ns 941493 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53560395ns 941496 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53560849ns 941504 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53561020ns 941507 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53561304ns 941512 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53561588ns 941517 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53561872ns 941522 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53562327ns 941530 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53562498ns 941533 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53562782ns 941538 1a110850 fd5ff06f jal x0, -44 +53563066ns 941543 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53563350ns 941548 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53563748ns 941555 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53563918ns 941558 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53564373ns 941566 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53564544ns 941569 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53564828ns 941574 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53565112ns 941579 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53565396ns 941584 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53565851ns 941592 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53566021ns 941595 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53566305ns 941600 1a110850 fd5ff06f jal x0, -44 +53566589ns 941605 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53566874ns 941610 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53567271ns 941617 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53567442ns 941620 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53567897ns 941628 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53568067ns 941631 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53568351ns 941636 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53568635ns 941641 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53568920ns 941646 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53569374ns 941654 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53569545ns 941657 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53569829ns 941662 1a110850 fd5ff06f jal x0, -44 +53570113ns 941667 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53570397ns 941672 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53570795ns 941679 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53570966ns 941682 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53571420ns 941690 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53571591ns 941693 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53571875ns 941698 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53572159ns 941703 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53572443ns 941708 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53572898ns 941716 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53573068ns 941719 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53573352ns 941724 1a110850 fd5ff06f jal x0, -44 +53573637ns 941729 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53573921ns 941734 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53574319ns 941741 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53574489ns 941744 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53574944ns 941752 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53575114ns 941755 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53575398ns 941760 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53575683ns 941765 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53575967ns 941770 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53576421ns 941778 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53576592ns 941781 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53576876ns 941786 1a110850 fd5ff06f jal x0, -44 +53577160ns 941791 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53577444ns 941796 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53577842ns 941803 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53578013ns 941806 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53578467ns 941814 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53578638ns 941817 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53578922ns 941822 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53579206ns 941827 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53579490ns 941832 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53579945ns 941840 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53580115ns 941843 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53580400ns 941848 1a110850 fd5ff06f jal x0, -44 +53580684ns 941853 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53580968ns 941858 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53581366ns 941865 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53581536ns 941868 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53581991ns 941876 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53582161ns 941879 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53582446ns 941884 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53582730ns 941889 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53583014ns 941894 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53583469ns 941902 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53583639ns 941905 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53583923ns 941910 1a110850 fd5ff06f jal x0, -44 +53584207ns 941915 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53584492ns 941920 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53584889ns 941927 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53585060ns 941930 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53585515ns 941938 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53585685ns 941941 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53585969ns 941946 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53586253ns 941951 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53586538ns 941956 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53586992ns 941964 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53587163ns 941967 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53587447ns 941972 1a110850 fd5ff06f jal x0, -44 +53587731ns 941977 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53588015ns 941982 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53588413ns 941989 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53588583ns 941992 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53589038ns 942000 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53589209ns 942003 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53589493ns 942008 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53589777ns 942013 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53590061ns 942018 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53590516ns 942026 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53590686ns 942029 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53590970ns 942034 1a110850 fd5ff06f jal x0, -44 +53591255ns 942039 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53591539ns 942044 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53591937ns 942051 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53592107ns 942054 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53592562ns 942062 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53592732ns 942065 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53593016ns 942070 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53593301ns 942075 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53593585ns 942080 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53594039ns 942088 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53594210ns 942091 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53594494ns 942096 1a110850 fd5ff06f jal x0, -44 +53594778ns 942101 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53595062ns 942106 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53595460ns 942113 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53595631ns 942116 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53596085ns 942124 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53596256ns 942127 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53596540ns 942132 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53596824ns 942137 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53597108ns 942142 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53597563ns 942150 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53597733ns 942153 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53598018ns 942158 1a110850 fd5ff06f jal x0, -44 +53598302ns 942163 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53598586ns 942168 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53598984ns 942175 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53599154ns 942178 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53599609ns 942186 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53599779ns 942189 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53600064ns 942194 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53600348ns 942199 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53600632ns 942204 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53601087ns 942212 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53601257ns 942215 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53601541ns 942220 1a110850 fd5ff06f jal x0, -44 +53601825ns 942225 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53602109ns 942230 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53602507ns 942237 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53602678ns 942240 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53603132ns 942248 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53603303ns 942251 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53603587ns 942256 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53603871ns 942261 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53604155ns 942266 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53604610ns 942274 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53604781ns 942277 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53605065ns 942282 1a110850 fd5ff06f jal x0, -44 +53605349ns 942287 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53605633ns 942292 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53606031ns 942299 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53606201ns 942302 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53606656ns 942310 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53606827ns 942313 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53607111ns 942318 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53607395ns 942323 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53607679ns 942328 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53608134ns 942336 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53608304ns 942339 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53608588ns 942344 1a110850 fd5ff06f jal x0, -44 +53608872ns 942349 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53609157ns 942354 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53609554ns 942361 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53609725ns 942364 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53610180ns 942372 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53610350ns 942375 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53610634ns 942380 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53610918ns 942385 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53611203ns 942390 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53611657ns 942398 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53611828ns 942401 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53612112ns 942406 1a110850 fd5ff06f jal x0, -44 +53612396ns 942411 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53612680ns 942416 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53613078ns 942423 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53613249ns 942426 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53613703ns 942434 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53613874ns 942437 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53614158ns 942442 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53614442ns 942447 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53614726ns 942452 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53615181ns 942460 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53615351ns 942463 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53615635ns 942468 1a110850 fd5ff06f jal x0, -44 +53615920ns 942473 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53616204ns 942478 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53616602ns 942485 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53616772ns 942488 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53617227ns 942496 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53617397ns 942499 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53617681ns 942504 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53617966ns 942509 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53618250ns 942514 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53618704ns 942522 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53618875ns 942525 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53619159ns 942530 1a110850 fd5ff06f jal x0, -44 +53619443ns 942535 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53619727ns 942540 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53620125ns 942547 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53620296ns 942550 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53620750ns 942558 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53620921ns 942561 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53621205ns 942566 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53621489ns 942571 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53621773ns 942576 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53622228ns 942584 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53622399ns 942587 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53622683ns 942592 1a110850 fd5ff06f jal x0, -44 +53622967ns 942597 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53623251ns 942602 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53623649ns 942609 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53623819ns 942612 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53624274ns 942620 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53624444ns 942623 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53624729ns 942628 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53625013ns 942633 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53625297ns 942638 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53625752ns 942646 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53625922ns 942649 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53626206ns 942654 1a110850 fd5ff06f jal x0, -44 +53626490ns 942659 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53626775ns 942664 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53627172ns 942671 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53627343ns 942674 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53627798ns 942682 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53627968ns 942685 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53628252ns 942690 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53628536ns 942695 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53628821ns 942700 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53629275ns 942708 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53629446ns 942711 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53629730ns 942716 1a110850 fd5ff06f jal x0, -44 +53630014ns 942721 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53630298ns 942726 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53630696ns 942733 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53630866ns 942736 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53631321ns 942744 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53631492ns 942747 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53631776ns 942752 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53632060ns 942757 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53632344ns 942762 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53632799ns 942770 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53632969ns 942773 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53633253ns 942778 1a110850 fd5ff06f jal x0, -44 +53633538ns 942783 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53633822ns 942788 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53634220ns 942795 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53634390ns 942798 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53634845ns 942806 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53635015ns 942809 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53635299ns 942814 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53635584ns 942819 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53635868ns 942824 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53636322ns 942832 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53636493ns 942835 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53636777ns 942840 1a110850 fd5ff06f jal x0, -44 +53637061ns 942845 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53637345ns 942850 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53637743ns 942857 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53637914ns 942860 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53638368ns 942868 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53638539ns 942871 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53638823ns 942876 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53639107ns 942881 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53639391ns 942886 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53639846ns 942894 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53640016ns 942897 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53640301ns 942902 1a110850 fd5ff06f jal x0, -44 +53640585ns 942907 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53640869ns 942912 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53641267ns 942919 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53641437ns 942922 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53641892ns 942930 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53642062ns 942933 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53642347ns 942938 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53642631ns 942943 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53642915ns 942948 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53643370ns 942956 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53643540ns 942959 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53643824ns 942964 1a110850 fd5ff06f jal x0, -44 +53644108ns 942969 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53644392ns 942974 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53644790ns 942981 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53644961ns 942984 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53645415ns 942992 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53645586ns 942995 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53645870ns 943000 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53646154ns 943005 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53646438ns 943010 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53646893ns 943018 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53647064ns 943021 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53647348ns 943026 1a110850 fd5ff06f jal x0, -44 +53647632ns 943031 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53647916ns 943036 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53648314ns 943043 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53648484ns 943046 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53648939ns 943054 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53649110ns 943057 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53649394ns 943062 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53649678ns 943067 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53649962ns 943072 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53650417ns 943080 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53650587ns 943083 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53650871ns 943088 1a110850 fd5ff06f jal x0, -44 +53651155ns 943093 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53651440ns 943098 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53651837ns 943105 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53652008ns 943108 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53652463ns 943116 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53652633ns 943119 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53652917ns 943124 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53653201ns 943129 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53653486ns 943134 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53653940ns 943142 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53654111ns 943145 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53654395ns 943150 1a110850 fd5ff06f jal x0, -44 +53654679ns 943155 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53654963ns 943160 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53655361ns 943167 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53655532ns 943170 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53655986ns 943178 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53656157ns 943181 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53656441ns 943186 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53656725ns 943191 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53657009ns 943196 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53657464ns 943204 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53657634ns 943207 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53657919ns 943212 1a110850 fd5ff06f jal x0, -44 +53658203ns 943217 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53658487ns 943222 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53658885ns 943229 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53659055ns 943232 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53659510ns 943240 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53659680ns 943243 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53659964ns 943248 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53660249ns 943253 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53660533ns 943258 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53660987ns 943266 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53661158ns 943269 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53661442ns 943274 1a110850 fd5ff06f jal x0, -44 +53661726ns 943279 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53662010ns 943284 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53662408ns 943291 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53662579ns 943294 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53663033ns 943302 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53663204ns 943305 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53663488ns 943310 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53663772ns 943315 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53664056ns 943320 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53664511ns 943328 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53664682ns 943331 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53664966ns 943336 1a110850 fd5ff06f jal x0, -44 +53665250ns 943341 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53665534ns 943346 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53665932ns 943353 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53666102ns 943356 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53666557ns 943364 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53666727ns 943367 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53667012ns 943372 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53667296ns 943377 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53667580ns 943382 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53668035ns 943390 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53668205ns 943393 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53668489ns 943398 1a110850 fd5ff06f jal x0, -44 +53668773ns 943403 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53669058ns 943408 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53669455ns 943415 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53669626ns 943418 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53670081ns 943426 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53670251ns 943429 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53670535ns 943434 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53670819ns 943439 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53671104ns 943444 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53671558ns 943452 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53671729ns 943455 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53672013ns 943460 1a110850 fd5ff06f jal x0, -44 +53672297ns 943465 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53672581ns 943470 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53672979ns 943477 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53673149ns 943480 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53673604ns 943488 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53673775ns 943491 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53674059ns 943496 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53674343ns 943501 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53674627ns 943506 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53675082ns 943514 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53675252ns 943517 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53675536ns 943522 1a110850 fd5ff06f jal x0, -44 +53675821ns 943527 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53676105ns 943532 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53676503ns 943539 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53676673ns 943542 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53677128ns 943550 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53677298ns 943553 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53677582ns 943558 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53677867ns 943563 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53678151ns 943568 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53678605ns 943576 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53678776ns 943579 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53679060ns 943584 1a110850 fd5ff06f jal x0, -44 +53679344ns 943589 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53679628ns 943594 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53680026ns 943601 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53680197ns 943604 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53680651ns 943612 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53680822ns 943615 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53681106ns 943620 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53681390ns 943625 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53681674ns 943630 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53682129ns 943638 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53682299ns 943641 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53682584ns 943646 1a110850 fd5ff06f jal x0, -44 +53682868ns 943651 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53683152ns 943656 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53683550ns 943663 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53683720ns 943666 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53684175ns 943674 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53684345ns 943677 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53684630ns 943682 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53684914ns 943687 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53685198ns 943692 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53685653ns 943700 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53685823ns 943703 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53686107ns 943708 1a110850 fd5ff06f jal x0, -44 +53686391ns 943713 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53686675ns 943718 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53687073ns 943725 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53687244ns 943728 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53687698ns 943736 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53687869ns 943739 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53688153ns 943744 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53688437ns 943749 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53688721ns 943754 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53689176ns 943762 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53689347ns 943765 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53689631ns 943770 1a110850 fd5ff06f jal x0, -44 +53689915ns 943775 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53690199ns 943780 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53690597ns 943787 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53690767ns 943790 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53691222ns 943798 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53691393ns 943801 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53691677ns 943806 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53691961ns 943811 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53692245ns 943816 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53692700ns 943824 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53692870ns 943827 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53693154ns 943832 1a110850 fd5ff06f jal x0, -44 +53693439ns 943837 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53693723ns 943842 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53694120ns 943849 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53694291ns 943852 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53694746ns 943860 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53694916ns 943863 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53695200ns 943868 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53695484ns 943873 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53695769ns 943878 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53696223ns 943886 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53696394ns 943889 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53696678ns 943894 1a110850 fd5ff06f jal x0, -44 +53696962ns 943899 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53697246ns 943904 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53697644ns 943911 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53697815ns 943914 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53698269ns 943922 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53698440ns 943925 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53698724ns 943930 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53699008ns 943935 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53699292ns 943940 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53699747ns 943948 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53699917ns 943951 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53700202ns 943956 1a110850 fd5ff06f jal x0, -44 +53700486ns 943961 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53700770ns 943966 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53701168ns 943973 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53701338ns 943976 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53701793ns 943984 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53701963ns 943987 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53702247ns 943992 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53702532ns 943997 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53702816ns 944002 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53703270ns 944010 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53703441ns 944013 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53703725ns 944018 1a110850 fd5ff06f jal x0, -44 +53704009ns 944023 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53704293ns 944028 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53704691ns 944035 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53704862ns 944038 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53705316ns 944046 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53705487ns 944049 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53705771ns 944054 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53706055ns 944059 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53706339ns 944064 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53706794ns 944072 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53706965ns 944075 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53707249ns 944080 1a110850 fd5ff06f jal x0, -44 +53707533ns 944085 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53707817ns 944090 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53708215ns 944097 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53708385ns 944100 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53708840ns 944108 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53709010ns 944111 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53709295ns 944116 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53709579ns 944121 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53709863ns 944126 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53710318ns 944134 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53710488ns 944137 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53710772ns 944142 1a110850 fd5ff06f jal x0, -44 +53711056ns 944147 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53711341ns 944152 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53711738ns 944159 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53711909ns 944162 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53712364ns 944170 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53712534ns 944173 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53712818ns 944178 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53713102ns 944183 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53713387ns 944188 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53713841ns 944196 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53714012ns 944199 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53714296ns 944204 1a110850 fd5ff06f jal x0, -44 +53714580ns 944209 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53714864ns 944214 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53715262ns 944221 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53715432ns 944224 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53715887ns 944232 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53716058ns 944235 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53716342ns 944240 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53716626ns 944245 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53716910ns 944250 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53717365ns 944258 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53717535ns 944261 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53717819ns 944266 1a110850 fd5ff06f jal x0, -44 +53718104ns 944271 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53718388ns 944276 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53718786ns 944283 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53718956ns 944286 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53719411ns 944294 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53719581ns 944297 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53719865ns 944302 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53720150ns 944307 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53720434ns 944312 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53720888ns 944320 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53721059ns 944323 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53721343ns 944328 1a110850 fd5ff06f jal x0, -44 +53721627ns 944333 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53721911ns 944338 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53722309ns 944345 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53722480ns 944348 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53722934ns 944356 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53723105ns 944359 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53723389ns 944364 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53723673ns 944369 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53723957ns 944374 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53724412ns 944382 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53724582ns 944385 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53724867ns 944390 1a110850 fd5ff06f jal x0, -44 +53725151ns 944395 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53725435ns 944400 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53725833ns 944407 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53726003ns 944410 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53726458ns 944418 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53726628ns 944421 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53726913ns 944426 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53727197ns 944431 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53727481ns 944436 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53727936ns 944444 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53728106ns 944447 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53728390ns 944452 1a110850 fd5ff06f jal x0, -44 +53728674ns 944457 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53728959ns 944462 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53729356ns 944469 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53729527ns 944472 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53729981ns 944480 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53730152ns 944483 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53730436ns 944488 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53730720ns 944493 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53731004ns 944498 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53731459ns 944506 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53731630ns 944509 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53731914ns 944514 1a110850 fd5ff06f jal x0, -44 +53732198ns 944519 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53732482ns 944524 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53732880ns 944531 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53733050ns 944534 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53733505ns 944542 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53733676ns 944545 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53733960ns 944550 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53734244ns 944555 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53734528ns 944560 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53734983ns 944568 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53735153ns 944571 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53735437ns 944576 1a110850 fd5ff06f jal x0, -44 +53735722ns 944581 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53736006ns 944586 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53736403ns 944593 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53736574ns 944596 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53737029ns 944604 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53737199ns 944607 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53737483ns 944612 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53737767ns 944617 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53738052ns 944622 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53738506ns 944630 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53738677ns 944633 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53738961ns 944638 1a110850 fd5ff06f jal x0, -44 +53739245ns 944643 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53739529ns 944648 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53739927ns 944655 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53740098ns 944658 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53740552ns 944666 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53740723ns 944669 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53741007ns 944674 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53741291ns 944679 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53741575ns 944684 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53742030ns 944692 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53742200ns 944695 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53742485ns 944700 1a110850 fd5ff06f jal x0, -44 +53742769ns 944705 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53743053ns 944710 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53743451ns 944717 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53743621ns 944720 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53744076ns 944728 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53744246ns 944731 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53744530ns 944736 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53744815ns 944741 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53745099ns 944746 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53745553ns 944754 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53745724ns 944757 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53746008ns 944762 1a110850 fd5ff06f jal x0, -44 +53746292ns 944767 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53746576ns 944772 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53746974ns 944779 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53747145ns 944782 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53747599ns 944790 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53747770ns 944793 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53748054ns 944798 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53748338ns 944803 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53748622ns 944808 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53749077ns 944816 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53749248ns 944819 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53749532ns 944824 1a110850 fd5ff06f jal x0, -44 +53749816ns 944829 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53750100ns 944834 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53750498ns 944841 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53750668ns 944844 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53751123ns 944852 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53751293ns 944855 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53751578ns 944860 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53751862ns 944865 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53752146ns 944870 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53752601ns 944878 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53752771ns 944881 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53753055ns 944886 1a110850 fd5ff06f jal x0, -44 +53753339ns 944891 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53753624ns 944896 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53754021ns 944903 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53754192ns 944906 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53754647ns 944914 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53754817ns 944917 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53755101ns 944922 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53755385ns 944927 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53755670ns 944932 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53756124ns 944940 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53756295ns 944943 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53756579ns 944948 1a110850 fd5ff06f jal x0, -44 +53756863ns 944953 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53757147ns 944958 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53757545ns 944965 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53757715ns 944968 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53758170ns 944976 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53758341ns 944979 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53758625ns 944984 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53758909ns 944989 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53759193ns 944994 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53759648ns 945002 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53759818ns 945005 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53760102ns 945010 1a110850 fd5ff06f jal x0, -44 +53760387ns 945015 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53760671ns 945020 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53761069ns 945027 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53761239ns 945030 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53761694ns 945038 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53761864ns 945041 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53762148ns 945046 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53762433ns 945051 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53762717ns 945056 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53763171ns 945064 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53763342ns 945067 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53763626ns 945072 1a110850 fd5ff06f jal x0, -44 +53763910ns 945077 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53764194ns 945082 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53764592ns 945089 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53764763ns 945092 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53765217ns 945100 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53765388ns 945103 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53765672ns 945108 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53765956ns 945113 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53766240ns 945118 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53766695ns 945126 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53766865ns 945129 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53767150ns 945134 1a110850 fd5ff06f jal x0, -44 +53767434ns 945139 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53767718ns 945144 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53768116ns 945151 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53768286ns 945154 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53768741ns 945162 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53768911ns 945165 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53769196ns 945170 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53769480ns 945175 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53769764ns 945180 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53770219ns 945188 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53770389ns 945191 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53770673ns 945196 1a110850 fd5ff06f jal x0, -44 +53770957ns 945201 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53771242ns 945206 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53771639ns 945213 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53771810ns 945216 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53772264ns 945224 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53772435ns 945227 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53772719ns 945232 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53773003ns 945237 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53773287ns 945242 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53773742ns 945250 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53773913ns 945253 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53774197ns 945258 1a110850 fd5ff06f jal x0, -44 +53774481ns 945263 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53774765ns 945268 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53775163ns 945275 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53775333ns 945278 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53775788ns 945286 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53775959ns 945289 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53776243ns 945294 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53776527ns 945299 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53776811ns 945304 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53777266ns 945312 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53777436ns 945315 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53777720ns 945320 1a110850 fd5ff06f jal x0, -44 +53778005ns 945325 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53778289ns 945330 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53778687ns 945337 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53778857ns 945340 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53779312ns 945348 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53779482ns 945351 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53779766ns 945356 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53780050ns 945361 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53780335ns 945366 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53780789ns 945374 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53780960ns 945377 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53781244ns 945382 1a110850 fd5ff06f jal x0, -44 +53781528ns 945387 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53781812ns 945392 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53782210ns 945399 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53782381ns 945402 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53782835ns 945410 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53783006ns 945413 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53783290ns 945418 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53783574ns 945423 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53783858ns 945428 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53784313ns 945436 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53784483ns 945439 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53784768ns 945444 1a110850 fd5ff06f jal x0, -44 +53785052ns 945449 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53785336ns 945454 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53785734ns 945461 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53785904ns 945464 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53786359ns 945472 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53786529ns 945475 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53786813ns 945480 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53787098ns 945485 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53787382ns 945490 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53787836ns 945498 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53788007ns 945501 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53788291ns 945506 1a110850 fd5ff06f jal x0, -44 +53788575ns 945511 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53788859ns 945516 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53789257ns 945523 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53789428ns 945526 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53789882ns 945534 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53790053ns 945537 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53790337ns 945542 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53790621ns 945547 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53790905ns 945552 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53791360ns 945560 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53791531ns 945563 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53791815ns 945568 1a110850 fd5ff06f jal x0, -44 +53792099ns 945573 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53792383ns 945578 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53792781ns 945585 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53792951ns 945588 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53793406ns 945596 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53793576ns 945599 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53793861ns 945604 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53794145ns 945609 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53794429ns 945614 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53794884ns 945622 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53795054ns 945625 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53795338ns 945630 1a110850 fd5ff06f jal x0, -44 +53795622ns 945635 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53795907ns 945640 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53796304ns 945647 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53796475ns 945650 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53796930ns 945658 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53797100ns 945661 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53797384ns 945666 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53797668ns 945671 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53797953ns 945676 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53798407ns 945684 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53798578ns 945687 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53798862ns 945692 1a110850 fd5ff06f jal x0, -44 +53799146ns 945697 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53799430ns 945702 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53799828ns 945709 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53799999ns 945712 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53800453ns 945720 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53800624ns 945723 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53800908ns 945728 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53801192ns 945733 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53801476ns 945738 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53801931ns 945746 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53802101ns 945749 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53802385ns 945754 1a110850 fd5ff06f jal x0, -44 +53802670ns 945759 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53802954ns 945764 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53803352ns 945771 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53803522ns 945774 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53803977ns 945782 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53804147ns 945785 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53804431ns 945790 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53804716ns 945795 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53805000ns 945800 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53805454ns 945808 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53805625ns 945811 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53805909ns 945816 1a110850 fd5ff06f jal x0, -44 +53806193ns 945821 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53806477ns 945826 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53806875ns 945833 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53807046ns 945836 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53807500ns 945844 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53807671ns 945847 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53807955ns 945852 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53808239ns 945857 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53808523ns 945862 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53808978ns 945870 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53809148ns 945873 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53809433ns 945878 1a110850 fd5ff06f jal x0, -44 +53809717ns 945883 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53810001ns 945888 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53810399ns 945895 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53810569ns 945898 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53811024ns 945906 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53811194ns 945909 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53811479ns 945914 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53811763ns 945919 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53812047ns 945924 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53812502ns 945932 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53812672ns 945935 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53812956ns 945940 1a110850 fd5ff06f jal x0, -44 +53813240ns 945945 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53813525ns 945950 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53813922ns 945957 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53814093ns 945960 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53814547ns 945968 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53814718ns 945971 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53815002ns 945976 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53815286ns 945981 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53815570ns 945986 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53816025ns 945994 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53816196ns 945997 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53816480ns 946002 1a110850 fd5ff06f jal x0, -44 +53816764ns 946007 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53817048ns 946012 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53817446ns 946019 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53817616ns 946022 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53818071ns 946030 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53818242ns 946033 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53818526ns 946038 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53818810ns 946043 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53819094ns 946048 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53819549ns 946056 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53819719ns 946059 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53820003ns 946064 1a110850 fd5ff06f jal x0, -44 +53820288ns 946069 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53820572ns 946074 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53820970ns 946081 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53821140ns 946084 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53821595ns 946092 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53821765ns 946095 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53822049ns 946100 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53822333ns 946105 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53822618ns 946110 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53823072ns 946118 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53823243ns 946121 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53823527ns 946126 1a110850 fd5ff06f jal x0, -44 +53823811ns 946131 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53824095ns 946136 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53824493ns 946143 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53824664ns 946146 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53825118ns 946154 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53825289ns 946157 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53825573ns 946162 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53825857ns 946167 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53826141ns 946172 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53826596ns 946180 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53826766ns 946183 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53827051ns 946188 1a110850 fd5ff06f jal x0, -44 +53827335ns 946193 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53827619ns 946198 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53828017ns 946205 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53828187ns 946208 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53828642ns 946216 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53828812ns 946219 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53829096ns 946224 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53829381ns 946229 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53829665ns 946234 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53830119ns 946242 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53830290ns 946245 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53830574ns 946250 1a110850 fd5ff06f jal x0, -44 +53830858ns 946255 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53831142ns 946260 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53831540ns 946267 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53831711ns 946270 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53832165ns 946278 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53832336ns 946281 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53832620ns 946286 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53832904ns 946291 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53833188ns 946296 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53833643ns 946304 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53833814ns 946307 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53834098ns 946312 1a110850 fd5ff06f jal x0, -44 +53834382ns 946317 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53834666ns 946322 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53835064ns 946329 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53835234ns 946332 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53835689ns 946340 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53835859ns 946343 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53836144ns 946348 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53836428ns 946353 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53836712ns 946358 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53837167ns 946366 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53837337ns 946369 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53837621ns 946374 1a110850 fd5ff06f jal x0, -44 +53837905ns 946379 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53838190ns 946384 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53838587ns 946391 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53838758ns 946394 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53839213ns 946402 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53839383ns 946405 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53839667ns 946410 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53839951ns 946415 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53840236ns 946420 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53840690ns 946428 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53840861ns 946431 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53841145ns 946436 1a110850 fd5ff06f jal x0, -44 +53841429ns 946441 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53841713ns 946446 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53842111ns 946453 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53842282ns 946456 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53842736ns 946464 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53842907ns 946467 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53843191ns 946472 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53843475ns 946477 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53843759ns 946482 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53844214ns 946490 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53844384ns 946493 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53844668ns 946498 1a110850 fd5ff06f jal x0, -44 +53844953ns 946503 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53845237ns 946508 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53845635ns 946515 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53845805ns 946518 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53846260ns 946526 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53846430ns 946529 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53846714ns 946534 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53846999ns 946539 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53847283ns 946544 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53847737ns 946552 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53847908ns 946555 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53848192ns 946560 1a110850 fd5ff06f jal x0, -44 +53848476ns 946565 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53848760ns 946570 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53849158ns 946577 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53849329ns 946580 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53849783ns 946588 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53849954ns 946591 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53850238ns 946596 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53850522ns 946601 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53850806ns 946606 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53851261ns 946614 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53851431ns 946617 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53851716ns 946622 1a110850 fd5ff06f jal x0, -44 +53852000ns 946627 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53852284ns 946632 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53852682ns 946639 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53852852ns 946642 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53853307ns 946650 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53853477ns 946653 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53853762ns 946658 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53854046ns 946663 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53854330ns 946668 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53854785ns 946676 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53854955ns 946679 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53855239ns 946684 1a110850 fd5ff06f jal x0, -44 +53855523ns 946689 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53855808ns 946694 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53856205ns 946701 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53856376ns 946704 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53856831ns 946712 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53857001ns 946715 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53857285ns 946720 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53857569ns 946725 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53857853ns 946730 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53858308ns 946738 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53858479ns 946741 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53858763ns 946746 1a110850 fd5ff06f jal x0, -44 +53859047ns 946751 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53859331ns 946756 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53859729ns 946763 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53859899ns 946766 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53860354ns 946774 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53860525ns 946777 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53860809ns 946782 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53861093ns 946787 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53861377ns 946792 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53861832ns 946800 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53862002ns 946803 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53862286ns 946808 1a110850 fd5ff06f jal x0, -44 +53862571ns 946813 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53862855ns 946818 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53863253ns 946825 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53863423ns 946828 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53863878ns 946836 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53864048ns 946839 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53864332ns 946844 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53864616ns 946849 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53864901ns 946854 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53865355ns 946862 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53865526ns 946865 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53865810ns 946870 1a110850 fd5ff06f jal x0, -44 +53866094ns 946875 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53866378ns 946880 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53866776ns 946887 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53866947ns 946890 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53867401ns 946898 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53867572ns 946901 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53867856ns 946906 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53868140ns 946911 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53868424ns 946916 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53868879ns 946924 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53869049ns 946927 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53869334ns 946932 1a110850 fd5ff06f jal x0, -44 +53869618ns 946937 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53869902ns 946942 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53870300ns 946949 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53870470ns 946952 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53870925ns 946960 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53871095ns 946963 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53871379ns 946968 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53871664ns 946973 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53871948ns 946978 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53872402ns 946986 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53872573ns 946989 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53872857ns 946994 1a110850 fd5ff06f jal x0, -44 +53873141ns 946999 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53873425ns 947004 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53873823ns 947011 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53873994ns 947014 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53874448ns 947022 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53874619ns 947025 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53874903ns 947030 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53875187ns 947035 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53875471ns 947040 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53875926ns 947048 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53876097ns 947051 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53876381ns 947056 1a110850 fd5ff06f jal x0, -44 +53876665ns 947061 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53876949ns 947066 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53877347ns 947073 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53877517ns 947076 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53877972ns 947084 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53878143ns 947087 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53878427ns 947092 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53878711ns 947097 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53878995ns 947102 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53879450ns 947110 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53879620ns 947113 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53879904ns 947118 1a110850 fd5ff06f jal x0, -44 +53880188ns 947123 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53880473ns 947128 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53880870ns 947135 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53881041ns 947138 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53881496ns 947146 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53881666ns 947149 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53881950ns 947154 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53882234ns 947159 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53882519ns 947164 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53882973ns 947172 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53883144ns 947175 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53883428ns 947180 1a110850 fd5ff06f jal x0, -44 +53883712ns 947185 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53883996ns 947190 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53884394ns 947197 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53884565ns 947200 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53885019ns 947208 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53885190ns 947211 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53885474ns 947216 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53885758ns 947221 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53886042ns 947226 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53886497ns 947234 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53886667ns 947237 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53886951ns 947242 1a110850 fd5ff06f jal x0, -44 +53887236ns 947247 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53887520ns 947252 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53887918ns 947259 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53888088ns 947262 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53888543ns 947270 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53888713ns 947273 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53888997ns 947278 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53889282ns 947283 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53889566ns 947288 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53890020ns 947296 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53890191ns 947299 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53890475ns 947304 1a110850 fd5ff06f jal x0, -44 +53890759ns 947309 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53891043ns 947314 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53891441ns 947321 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53891612ns 947324 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53892066ns 947332 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53892237ns 947335 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53892521ns 947340 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53892805ns 947345 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53893089ns 947350 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53893544ns 947358 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53893714ns 947361 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53893999ns 947366 1a110850 fd5ff06f jal x0, -44 +53894283ns 947371 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53894567ns 947376 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53894965ns 947383 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53895135ns 947386 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53895590ns 947394 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53895760ns 947397 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53896045ns 947402 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53896329ns 947407 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53896613ns 947412 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53897068ns 947420 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53897238ns 947423 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53897522ns 947428 1a110850 fd5ff06f jal x0, -44 +53897806ns 947433 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53898091ns 947438 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53898488ns 947445 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53898659ns 947448 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53899114ns 947456 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53899284ns 947459 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53899568ns 947464 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53899852ns 947469 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53900136ns 947474 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53900591ns 947482 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53900762ns 947485 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53901046ns 947490 1a110850 fd5ff06f jal x0, -44 +53901330ns 947495 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53901614ns 947500 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53902012ns 947507 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53902182ns 947510 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53902637ns 947518 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53902808ns 947521 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53903092ns 947526 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53903376ns 947531 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53903660ns 947536 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53904115ns 947544 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53904285ns 947547 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53904569ns 947552 1a110850 fd5ff06f jal x0, -44 +53904854ns 947557 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53905138ns 947562 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53905536ns 947569 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53905706ns 947572 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53906161ns 947580 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53906331ns 947583 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53906615ns 947588 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53906899ns 947593 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53907184ns 947598 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53907638ns 947606 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53907809ns 947609 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53908093ns 947614 1a110850 fd5ff06f jal x0, -44 +53908377ns 947619 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53908661ns 947624 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53909059ns 947631 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53909230ns 947634 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53909684ns 947642 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53909855ns 947645 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53910139ns 947650 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53910423ns 947655 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53910707ns 947660 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53911162ns 947668 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53911332ns 947671 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53911617ns 947676 1a110850 fd5ff06f jal x0, -44 +53911901ns 947681 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53912185ns 947686 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53912583ns 947693 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53912753ns 947696 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53913208ns 947704 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53913378ns 947707 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53913663ns 947712 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53913947ns 947717 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53914231ns 947722 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53914685ns 947730 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53914856ns 947733 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53915140ns 947738 1a110850 fd5ff06f jal x0, -44 +53915424ns 947743 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53915708ns 947748 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53916106ns 947755 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53916277ns 947758 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53916731ns 947766 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53916902ns 947769 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53917186ns 947774 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53917470ns 947779 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53917754ns 947784 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53918209ns 947792 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53918380ns 947795 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53918664ns 947800 1a110850 fd5ff06f jal x0, -44 +53918948ns 947805 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53919232ns 947810 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53919630ns 947817 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53919800ns 947820 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53920255ns 947828 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53920426ns 947831 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53920710ns 947836 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53920994ns 947841 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53921278ns 947846 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53921733ns 947854 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53921903ns 947857 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53922187ns 947862 1a110850 fd5ff06f jal x0, -44 +53922471ns 947867 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53922756ns 947872 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53923153ns 947879 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53923324ns 947882 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53923779ns 947890 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53923949ns 947893 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53924233ns 947898 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53924517ns 947903 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53924802ns 947908 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53925256ns 947916 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53925427ns 947919 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53925711ns 947924 1a110850 fd5ff06f jal x0, -44 +53925995ns 947929 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53926279ns 947934 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53926677ns 947941 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53926848ns 947944 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53927302ns 947952 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53927473ns 947955 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53927757ns 947960 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53928041ns 947965 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53928325ns 947970 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53928780ns 947978 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53928950ns 947981 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53929234ns 947986 1a110850 fd5ff06f jal x0, -44 +53929519ns 947991 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53929803ns 947996 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53930201ns 948003 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53930371ns 948006 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53930826ns 948014 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53930996ns 948017 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53931280ns 948022 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53931565ns 948027 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53931849ns 948032 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53932303ns 948040 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53932474ns 948043 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53932758ns 948048 1a110850 fd5ff06f jal x0, -44 +53933042ns 948053 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53933326ns 948058 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53933724ns 948065 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53933895ns 948068 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53934349ns 948076 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53934520ns 948079 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53934804ns 948084 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53935088ns 948089 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53935372ns 948094 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53935827ns 948102 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53935997ns 948105 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53936282ns 948110 1a110850 fd5ff06f jal x0, -44 +53936566ns 948115 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53936850ns 948120 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53937248ns 948127 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53937418ns 948130 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53937873ns 948138 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53938043ns 948141 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53938328ns 948146 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53938612ns 948151 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53938896ns 948156 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53939351ns 948164 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53939521ns 948167 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53939805ns 948172 1a110850 fd5ff06f jal x0, -44 +53940089ns 948177 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53940374ns 948182 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53940771ns 948189 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53940942ns 948192 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53941397ns 948200 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53941567ns 948203 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53941851ns 948208 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53942135ns 948213 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53942419ns 948218 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53942874ns 948226 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53943045ns 948229 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53943329ns 948234 1a110850 fd5ff06f jal x0, -44 +53943613ns 948239 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53943897ns 948244 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53944295ns 948251 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53944465ns 948254 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53944920ns 948262 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53945091ns 948265 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53945375ns 948270 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53945659ns 948275 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53945943ns 948280 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53946398ns 948288 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53946568ns 948291 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53946852ns 948296 1a110850 fd5ff06f jal x0, -44 +53947137ns 948301 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53947421ns 948306 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53947819ns 948313 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53947989ns 948316 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53948444ns 948324 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53948614ns 948327 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53948898ns 948332 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53949183ns 948337 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53949467ns 948342 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53949921ns 948350 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53950092ns 948353 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53950376ns 948358 1a110850 fd5ff06f jal x0, -44 +53950660ns 948363 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53950944ns 948368 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53951342ns 948375 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53951513ns 948378 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53951967ns 948386 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53952138ns 948389 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53952422ns 948394 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53952706ns 948399 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53952990ns 948404 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53953445ns 948412 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53953615ns 948415 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53953900ns 948420 1a110850 fd5ff06f jal x0, -44 +53954184ns 948425 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53954468ns 948430 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53954866ns 948437 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53955036ns 948440 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53955491ns 948448 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53955661ns 948451 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53955946ns 948456 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53956230ns 948461 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53956514ns 948466 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53956968ns 948474 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53957139ns 948477 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53957423ns 948482 1a110850 fd5ff06f jal x0, -44 +53957707ns 948487 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53957991ns 948492 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53958389ns 948499 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53958560ns 948502 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53959014ns 948510 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53959185ns 948513 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53959469ns 948518 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53959753ns 948523 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53960037ns 948528 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53960492ns 948536 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53960663ns 948539 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53960947ns 948544 1a110850 fd5ff06f jal x0, -44 +53961231ns 948549 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53961515ns 948554 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53961913ns 948561 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53962083ns 948564 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53962538ns 948572 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53962709ns 948575 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53962993ns 948580 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53963277ns 948585 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53963561ns 948590 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53964016ns 948598 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53964186ns 948601 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53964470ns 948606 1a110850 fd5ff06f jal x0, -44 +53964754ns 948611 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53965039ns 948616 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53965436ns 948623 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53965607ns 948626 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53966062ns 948634 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53966232ns 948637 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53966516ns 948642 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53966800ns 948647 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53967085ns 948652 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53967539ns 948660 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53967710ns 948663 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53967994ns 948668 1a110850 fd5ff06f jal x0, -44 +53968278ns 948673 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53968562ns 948678 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53968960ns 948685 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53969131ns 948688 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53969585ns 948696 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53969756ns 948699 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53970040ns 948704 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53970324ns 948709 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53970608ns 948714 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53971063ns 948722 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53971233ns 948725 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53971517ns 948730 1a110850 fd5ff06f jal x0, -44 +53971802ns 948735 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53972086ns 948740 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53972484ns 948747 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53972654ns 948750 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53973109ns 948758 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53973279ns 948761 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53973563ns 948766 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53973848ns 948771 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53974132ns 948776 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53974586ns 948784 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53974757ns 948787 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53975041ns 948792 1a110850 fd5ff06f jal x0, -44 +53975325ns 948797 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53975609ns 948802 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53976007ns 948809 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53976178ns 948812 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53976632ns 948820 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53976803ns 948823 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53977087ns 948828 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53977371ns 948833 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53977655ns 948838 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53978110ns 948846 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53978280ns 948849 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53978565ns 948854 1a110850 fd5ff06f jal x0, -44 +53978849ns 948859 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53979133ns 948864 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53979531ns 948871 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53979701ns 948874 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53980156ns 948882 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53980326ns 948885 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53980611ns 948890 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53980895ns 948895 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53981179ns 948900 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53981634ns 948908 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53981804ns 948911 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53982088ns 948916 1a110850 fd5ff06f jal x0, -44 +53982372ns 948921 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53982657ns 948926 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53983054ns 948933 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53983225ns 948936 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53983680ns 948944 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53983850ns 948947 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53984134ns 948952 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53984418ns 948957 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53984703ns 948962 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53985157ns 948970 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53985328ns 948973 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53985612ns 948978 1a110850 fd5ff06f jal x0, -44 +53985896ns 948983 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53986180ns 948988 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53986578ns 948995 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53986748ns 948998 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53987203ns 949006 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53987374ns 949009 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53987658ns 949014 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53987942ns 949019 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53988226ns 949024 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53988681ns 949032 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53988851ns 949035 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53989135ns 949040 1a110850 fd5ff06f jal x0, -44 +53989420ns 949045 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53989704ns 949050 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53990102ns 949057 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53990272ns 949060 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53990727ns 949068 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53990897ns 949071 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53991181ns 949076 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53991466ns 949081 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53991750ns 949086 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53992204ns 949094 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53992375ns 949097 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53992659ns 949102 1a110850 fd5ff06f jal x0, -44 +53992943ns 949107 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53993227ns 949112 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53993625ns 949119 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53993796ns 949122 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53994250ns 949130 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53994421ns 949133 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53994705ns 949138 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53994989ns 949143 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53995273ns 949148 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53995728ns 949156 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53995898ns 949159 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53996183ns 949164 1a110850 fd5ff06f jal x0, -44 +53996467ns 949169 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53996751ns 949174 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +53997149ns 949181 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53997319ns 949184 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53997774ns 949192 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +53997944ns 949195 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +53998229ns 949200 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +53998513ns 949205 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +53998797ns 949210 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +53999251ns 949218 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +53999422ns 949221 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +53999706ns 949226 1a110850 fd5ff06f jal x0, -44 +53999990ns 949231 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54000274ns 949236 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54000672ns 949243 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54000843ns 949246 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54001297ns 949254 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54001468ns 949257 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54001752ns 949262 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54002036ns 949267 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54002320ns 949272 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54002775ns 949280 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54002946ns 949283 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54003230ns 949288 1a110850 fd5ff06f jal x0, -44 +54003514ns 949293 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54003798ns 949298 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54004196ns 949305 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54004366ns 949308 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54004821ns 949316 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54004992ns 949319 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54005276ns 949324 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54005560ns 949329 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54005844ns 949334 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54006299ns 949342 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54006469ns 949345 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54006753ns 949350 1a110850 fd5ff06f jal x0, -44 +54007037ns 949355 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54007322ns 949360 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54007719ns 949367 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54007890ns 949370 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54008345ns 949378 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54008515ns 949381 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54008799ns 949386 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54009083ns 949391 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54009368ns 949396 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54009822ns 949404 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54009993ns 949407 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54010277ns 949412 1a110850 fd5ff06f jal x0, -44 +54010561ns 949417 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54010845ns 949422 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54011243ns 949429 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54011414ns 949432 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54011868ns 949440 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54012039ns 949443 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54012323ns 949448 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54012607ns 949453 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54012891ns 949458 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54013346ns 949466 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54013516ns 949469 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54013800ns 949474 1a110850 fd5ff06f jal x0, -44 +54014085ns 949479 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54014369ns 949484 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54014767ns 949491 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54014937ns 949494 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54015392ns 949502 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54015562ns 949505 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54015846ns 949510 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54016131ns 949515 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54016415ns 949520 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54016869ns 949528 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54017040ns 949531 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54017324ns 949536 1a110850 fd5ff06f jal x0, -44 +54017608ns 949541 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54017892ns 949546 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54018290ns 949553 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54018461ns 949556 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54018915ns 949564 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54019086ns 949567 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54019370ns 949572 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54019654ns 949577 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54019938ns 949582 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54020393ns 949590 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54020563ns 949593 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54020848ns 949598 1a110850 fd5ff06f jal x0, -44 +54021132ns 949603 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54021416ns 949608 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54021814ns 949615 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54021984ns 949618 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54022439ns 949626 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54022609ns 949629 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54022894ns 949634 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54023178ns 949639 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54023462ns 949644 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54023917ns 949652 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54024087ns 949655 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54024371ns 949660 1a110850 fd5ff06f jal x0, -44 +54024655ns 949665 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54024940ns 949670 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54025337ns 949677 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54025508ns 949680 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54025963ns 949688 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54026133ns 949691 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54026417ns 949696 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54026701ns 949701 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54026986ns 949706 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54027440ns 949714 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54027611ns 949717 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54027895ns 949722 1a110850 fd5ff06f jal x0, -44 +54028179ns 949727 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54028463ns 949732 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54028861ns 949739 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54029031ns 949742 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54029486ns 949750 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54029657ns 949753 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54029941ns 949758 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54030225ns 949763 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54030509ns 949768 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54030964ns 949776 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54031134ns 949779 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54031418ns 949784 1a110850 fd5ff06f jal x0, -44 +54031703ns 949789 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54031987ns 949794 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54032385ns 949801 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54032555ns 949804 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54033010ns 949812 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54033180ns 949815 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54033464ns 949820 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54033749ns 949825 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54034033ns 949830 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54034487ns 949838 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54034658ns 949841 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54034942ns 949846 1a110850 fd5ff06f jal x0, -44 +54035226ns 949851 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54035510ns 949856 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54035908ns 949863 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54036079ns 949866 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54036533ns 949874 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54036704ns 949877 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54036988ns 949882 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54037272ns 949887 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54037556ns 949892 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54038011ns 949900 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54038181ns 949903 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54038466ns 949908 1a110850 fd5ff06f jal x0, -44 +54038750ns 949913 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54039034ns 949918 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54039432ns 949925 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54039602ns 949928 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54040057ns 949936 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54040227ns 949939 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54040512ns 949944 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54040796ns 949949 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54041080ns 949954 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54041535ns 949962 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54041705ns 949965 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54041989ns 949970 1a110850 fd5ff06f jal x0, -44 +54042273ns 949975 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54042557ns 949980 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54042955ns 949987 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54043126ns 949990 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54043580ns 949998 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54043751ns 950001 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54044035ns 950006 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54044319ns 950011 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54044603ns 950016 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54045058ns 950024 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54045229ns 950027 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54045513ns 950032 1a110850 fd5ff06f jal x0, -44 +54045797ns 950037 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54046081ns 950042 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54046479ns 950049 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54046649ns 950052 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54047104ns 950060 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54047275ns 950063 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54047559ns 950068 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54047843ns 950073 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54048127ns 950078 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54048582ns 950086 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54048752ns 950089 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54049036ns 950094 1a110850 fd5ff06f jal x0, -44 +54049320ns 950099 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54049605ns 950104 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54050002ns 950111 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54050173ns 950114 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54050628ns 950122 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54050798ns 950125 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54051082ns 950130 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54051366ns 950135 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54051651ns 950140 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54052105ns 950148 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54052276ns 950151 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54052560ns 950156 1a110850 fd5ff06f jal x0, -44 +54052844ns 950161 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54053128ns 950166 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54053526ns 950173 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54053697ns 950176 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54054151ns 950184 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54054322ns 950187 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54054606ns 950192 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54054890ns 950197 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54055174ns 950202 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54055629ns 950210 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54055799ns 950213 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54056083ns 950218 1a110850 fd5ff06f jal x0, -44 +54056368ns 950223 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54056652ns 950228 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54057050ns 950235 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54057220ns 950238 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54057675ns 950246 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54057845ns 950249 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54058129ns 950254 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54058414ns 950259 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54058698ns 950264 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54059152ns 950272 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54059323ns 950275 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54059607ns 950280 1a110850 fd5ff06f jal x0, -44 +54059891ns 950285 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54060175ns 950290 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54060573ns 950297 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54060744ns 950300 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54061198ns 950308 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54061369ns 950311 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54061653ns 950316 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54061937ns 950321 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54062221ns 950326 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54062676ns 950334 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54062847ns 950337 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54063131ns 950342 1a110850 fd5ff06f jal x0, -44 +54063415ns 950347 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54063699ns 950352 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54064097ns 950359 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54064267ns 950362 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54064722ns 950370 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54064892ns 950373 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54065177ns 950378 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54065461ns 950383 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54065745ns 950388 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54066200ns 950396 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54066370ns 950399 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54066654ns 950404 1a110850 fd5ff06f jal x0, -44 +54066938ns 950409 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54067223ns 950414 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54067620ns 950421 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54067791ns 950424 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54068246ns 950432 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54068416ns 950435 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54068700ns 950440 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54068984ns 950445 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54069269ns 950450 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54069723ns 950458 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54069894ns 950461 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54070178ns 950466 1a110850 fd5ff06f jal x0, -44 +54070462ns 950471 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54070746ns 950476 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54071144ns 950483 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54071314ns 950486 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54071769ns 950494 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54071940ns 950497 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54072224ns 950502 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54072508ns 950507 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54072792ns 950512 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54073247ns 950520 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54073417ns 950523 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54073701ns 950528 1a110850 fd5ff06f jal x0, -44 +54073986ns 950533 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54074270ns 950538 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54074668ns 950545 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54074838ns 950548 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54075293ns 950556 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54075463ns 950559 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54075747ns 950564 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54076032ns 950569 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54076316ns 950574 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54076770ns 950582 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54076941ns 950585 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54077225ns 950590 1a110850 fd5ff06f jal x0, -44 +54077509ns 950595 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54077793ns 950600 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54078191ns 950607 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54078362ns 950610 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54078816ns 950618 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54078987ns 950621 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54079271ns 950626 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54079555ns 950631 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54079839ns 950636 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54080294ns 950644 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54080464ns 950647 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54080749ns 950652 1a110850 fd5ff06f jal x0, -44 +54081033ns 950657 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54081317ns 950662 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54081715ns 950669 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54081885ns 950672 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54082340ns 950680 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54082510ns 950683 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54082795ns 950688 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54083079ns 950693 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54083363ns 950698 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54083818ns 950706 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54083988ns 950709 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54084272ns 950714 1a110850 fd5ff06f jal x0, -44 +54084556ns 950719 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54084840ns 950724 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54085238ns 950731 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54085409ns 950734 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54085863ns 950742 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54086034ns 950745 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54086318ns 950750 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54086602ns 950755 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54086886ns 950760 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54087341ns 950768 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54087512ns 950771 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54087796ns 950776 1a110850 fd5ff06f jal x0, -44 +54088080ns 950781 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54088364ns 950786 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54088762ns 950793 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54088932ns 950796 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54089387ns 950804 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54089558ns 950807 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54089842ns 950812 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54090126ns 950817 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54090410ns 950822 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54090865ns 950830 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54091035ns 950833 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54091319ns 950838 1a110850 fd5ff06f jal x0, -44 +54091603ns 950843 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54091888ns 950848 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54092285ns 950855 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54092456ns 950858 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54092911ns 950866 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54093081ns 950869 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54093365ns 950874 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54093649ns 950879 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54093934ns 950884 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54094388ns 950892 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54094559ns 950895 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54094843ns 950900 1a110850 fd5ff06f jal x0, -44 +54095127ns 950905 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54095411ns 950910 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54095809ns 950917 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54095980ns 950920 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54096434ns 950928 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54096605ns 950931 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54096889ns 950936 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54097173ns 950941 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54097457ns 950946 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54097912ns 950954 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54098082ns 950957 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54098367ns 950962 1a110850 fd5ff06f jal x0, -44 +54098651ns 950967 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54098935ns 950972 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54099333ns 950979 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54099503ns 950982 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54099958ns 950990 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54100128ns 950993 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54100412ns 950998 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54100697ns 951003 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54100981ns 951008 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54101435ns 951016 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54101606ns 951019 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54101890ns 951024 1a110850 fd5ff06f jal x0, -44 +54102174ns 951029 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54102458ns 951034 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54102856ns 951041 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54103027ns 951044 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54103481ns 951052 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54103652ns 951055 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54103936ns 951060 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54104220ns 951065 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54104504ns 951070 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54104959ns 951078 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54105130ns 951081 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54105414ns 951086 1a110850 fd5ff06f jal x0, -44 +54105698ns 951091 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54105982ns 951096 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54106380ns 951103 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54106550ns 951106 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54107005ns 951114 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54107175ns 951117 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54107460ns 951122 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54107744ns 951127 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54108028ns 951132 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54108483ns 951140 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54108653ns 951143 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54108937ns 951148 1a110850 fd5ff06f jal x0, -44 +54109221ns 951153 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54109506ns 951158 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54109903ns 951165 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54110074ns 951168 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54110529ns 951176 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54110699ns 951179 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54110983ns 951184 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54111267ns 951189 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54111552ns 951194 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54112006ns 951202 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54112177ns 951205 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54112461ns 951210 1a110850 fd5ff06f jal x0, -44 +54112745ns 951215 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54113029ns 951220 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54113427ns 951227 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54113597ns 951230 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54114052ns 951238 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54114223ns 951241 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54114507ns 951246 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54114791ns 951251 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54115075ns 951256 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54115530ns 951264 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54115700ns 951267 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54115984ns 951272 1a110850 fd5ff06f jal x0, -44 +54116269ns 951277 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54116553ns 951282 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54116951ns 951289 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54117121ns 951292 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54117576ns 951300 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54117746ns 951303 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54118030ns 951308 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54118315ns 951313 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54118599ns 951318 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54119053ns 951326 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54119224ns 951329 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54119508ns 951334 1a110850 fd5ff06f jal x0, -44 +54119792ns 951339 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54120076ns 951344 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54120474ns 951351 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54120645ns 951354 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54121099ns 951362 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54121270ns 951365 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54121554ns 951370 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54121838ns 951375 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54122122ns 951380 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54122577ns 951388 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54122747ns 951391 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54123032ns 951396 1a110850 fd5ff06f jal x0, -44 +54123316ns 951401 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54123600ns 951406 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54123998ns 951413 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54124168ns 951416 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54124623ns 951424 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54124793ns 951427 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54125078ns 951432 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54125362ns 951437 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54125646ns 951442 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54126101ns 951450 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54126271ns 951453 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54126555ns 951458 1a110850 fd5ff06f jal x0, -44 +54126839ns 951463 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54127123ns 951468 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54127521ns 951475 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54127692ns 951478 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54128146ns 951486 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54128317ns 951489 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54128601ns 951494 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54128885ns 951499 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54129169ns 951504 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54129624ns 951512 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54129795ns 951515 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54130079ns 951520 1a110850 fd5ff06f jal x0, -44 +54130363ns 951525 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54130647ns 951530 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54131045ns 951537 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54131215ns 951540 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54131670ns 951548 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54131841ns 951551 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54132125ns 951556 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54132409ns 951561 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54132693ns 951566 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54133148ns 951574 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54133318ns 951577 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54133602ns 951582 1a110850 fd5ff06f jal x0, -44 +54133887ns 951587 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54134171ns 951592 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54134568ns 951599 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54134739ns 951602 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54135194ns 951610 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54135364ns 951613 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54135648ns 951618 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54135932ns 951623 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54136217ns 951628 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54136671ns 951636 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54136842ns 951639 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54137126ns 951644 1a110850 fd5ff06f jal x0, -44 +54137410ns 951649 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54137694ns 951654 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54138092ns 951661 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54138263ns 951664 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54138717ns 951672 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54138888ns 951675 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54139172ns 951680 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54139456ns 951685 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54139740ns 951690 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54140195ns 951698 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54140365ns 951701 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54140650ns 951706 1a110850 fd5ff06f jal x0, -44 +54140934ns 951711 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54141218ns 951716 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54141616ns 951723 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54141786ns 951726 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54142241ns 951734 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54142411ns 951737 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54142695ns 951742 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54142980ns 951747 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54143264ns 951752 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54143718ns 951760 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54143889ns 951763 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54144173ns 951768 1a110850 fd5ff06f jal x0, -44 +54144457ns 951773 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54144741ns 951778 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54145139ns 951785 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54145310ns 951788 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54145764ns 951796 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54145935ns 951799 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54146219ns 951804 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54146503ns 951809 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54146787ns 951814 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54147242ns 951822 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54147413ns 951825 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54147697ns 951830 1a110850 fd5ff06f jal x0, -44 +54147981ns 951835 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54148265ns 951840 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54148663ns 951847 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54148833ns 951850 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54149288ns 951858 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54149458ns 951861 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54149743ns 951866 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54150027ns 951871 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54150311ns 951876 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54150766ns 951884 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54150936ns 951887 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54151220ns 951892 1a110850 fd5ff06f jal x0, -44 +54151504ns 951897 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54151789ns 951902 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54152186ns 951909 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54152357ns 951912 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54152812ns 951920 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54152982ns 951923 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54153266ns 951928 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54153550ns 951933 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54153835ns 951938 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54154289ns 951946 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54154460ns 951949 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54154744ns 951954 1a110850 fd5ff06f jal x0, -44 +54155028ns 951959 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54155312ns 951964 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54155710ns 951971 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54155880ns 951974 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54156335ns 951982 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54156506ns 951985 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54156790ns 951990 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54157074ns 951995 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54157358ns 952000 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54157813ns 952008 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54157983ns 952011 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54158267ns 952016 1a110850 fd5ff06f jal x0, -44 +54158552ns 952021 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54158836ns 952026 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54159234ns 952033 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54159404ns 952036 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54159859ns 952044 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54160029ns 952047 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54160313ns 952052 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54160598ns 952057 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54160882ns 952062 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54161336ns 952070 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54161507ns 952073 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54161791ns 952078 1a110850 fd5ff06f jal x0, -44 +54162075ns 952083 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54162359ns 952088 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54162757ns 952095 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54162928ns 952098 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54163382ns 952106 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54163553ns 952109 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54163837ns 952114 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54164121ns 952119 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54164405ns 952124 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54164860ns 952132 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54165030ns 952135 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54165315ns 952140 1a110850 fd5ff06f jal x0, -44 +54165599ns 952145 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54165883ns 952150 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54166281ns 952157 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54166451ns 952160 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54166906ns 952168 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54167076ns 952171 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54167361ns 952176 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54167645ns 952181 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54167929ns 952186 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54168384ns 952194 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54168554ns 952197 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54168838ns 952202 1a110850 fd5ff06f jal x0, -44 +54169122ns 952207 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54169407ns 952212 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54169804ns 952219 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54169975ns 952222 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54170429ns 952230 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54170600ns 952233 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54170884ns 952238 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54171168ns 952243 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54171452ns 952248 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54171907ns 952256 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54172078ns 952259 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54172362ns 952264 1a110850 fd5ff06f jal x0, -44 +54172646ns 952269 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54172930ns 952274 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54173328ns 952281 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54173498ns 952284 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54173953ns 952292 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54174124ns 952295 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54174408ns 952300 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54174692ns 952305 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54174976ns 952310 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54175431ns 952318 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54175601ns 952321 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54175885ns 952326 1a110850 fd5ff06f jal x0, -44 +54176170ns 952331 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54176454ns 952336 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54176851ns 952343 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54177022ns 952346 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54177477ns 952354 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54177647ns 952357 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54177931ns 952362 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54178215ns 952367 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54178500ns 952372 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54178954ns 952380 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54179125ns 952383 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54179409ns 952388 1a110850 fd5ff06f jal x0, -44 +54179693ns 952393 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54179977ns 952398 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54180375ns 952405 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54180546ns 952408 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54181000ns 952416 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54181171ns 952419 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54181455ns 952424 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54181739ns 952429 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54182023ns 952434 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54182478ns 952442 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54182648ns 952445 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54182933ns 952450 1a110850 fd5ff06f jal x0, -44 +54183217ns 952455 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54183501ns 952460 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54183899ns 952467 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54184069ns 952470 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54184524ns 952478 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54184694ns 952481 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54184978ns 952486 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54185263ns 952491 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54185547ns 952496 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54186001ns 952504 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54186172ns 952507 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54186456ns 952512 1a110850 fd5ff06f jal x0, -44 +54186740ns 952517 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54187024ns 952522 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54187422ns 952529 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54187593ns 952532 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54188047ns 952540 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54188218ns 952543 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54188502ns 952548 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54188786ns 952553 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54189070ns 952558 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54189525ns 952566 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54189696ns 952569 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54189980ns 952574 1a110850 fd5ff06f jal x0, -44 +54190264ns 952579 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54190548ns 952584 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54190946ns 952591 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54191116ns 952594 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54191571ns 952602 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54191741ns 952605 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54192026ns 952610 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54192310ns 952615 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54192594ns 952620 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54193049ns 952628 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54193219ns 952631 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54193503ns 952636 1a110850 fd5ff06f jal x0, -44 +54193787ns 952641 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54194072ns 952646 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54194469ns 952653 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54194640ns 952656 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54195095ns 952664 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54195265ns 952667 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54195549ns 952672 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54195833ns 952677 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54196118ns 952682 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54196572ns 952690 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54196743ns 952693 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54197027ns 952698 1a110850 fd5ff06f jal x0, -44 +54197311ns 952703 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54197595ns 952708 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54197993ns 952715 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54198163ns 952718 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54198618ns 952726 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54198789ns 952729 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54199073ns 952734 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54199357ns 952739 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54199641ns 952744 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54200096ns 952752 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54200266ns 952755 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54200550ns 952760 1a110850 fd5ff06f jal x0, -44 +54200835ns 952765 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54201119ns 952770 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54201517ns 952777 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54201687ns 952780 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54202142ns 952788 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54202312ns 952791 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54202596ns 952796 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54202881ns 952801 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54203165ns 952806 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54203619ns 952814 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54203790ns 952817 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54204074ns 952822 1a110850 fd5ff06f jal x0, -44 +54204358ns 952827 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54204642ns 952832 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54205040ns 952839 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54205211ns 952842 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54205665ns 952850 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54205836ns 952853 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54206120ns 952858 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54206404ns 952863 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54206688ns 952868 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54207143ns 952876 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54207313ns 952879 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54207598ns 952884 1a110850 fd5ff06f jal x0, -44 +54207882ns 952889 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54208166ns 952894 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54208564ns 952901 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54208734ns 952904 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54209189ns 952912 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54209359ns 952915 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54209644ns 952920 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54209928ns 952925 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54210212ns 952930 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54210667ns 952938 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54210837ns 952941 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54211121ns 952946 1a110850 fd5ff06f jal x0, -44 +54211405ns 952951 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54211690ns 952956 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54212087ns 952963 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54212258ns 952966 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54212712ns 952974 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54212883ns 952977 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54213167ns 952982 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54213451ns 952987 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54213735ns 952992 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54214190ns 953000 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54214361ns 953003 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54214645ns 953008 1a110850 fd5ff06f jal x0, -44 +54214929ns 953013 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54215213ns 953018 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54215611ns 953025 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54215781ns 953028 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54216236ns 953036 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54216407ns 953039 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54216691ns 953044 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54216975ns 953049 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54217259ns 953054 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54217714ns 953062 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54217884ns 953065 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54218168ns 953070 1a110850 fd5ff06f jal x0, -44 +54218453ns 953075 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54218737ns 953080 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54219135ns 953087 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54219305ns 953090 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54219760ns 953098 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54219930ns 953101 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54220214ns 953106 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54220498ns 953111 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54220783ns 953116 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54221237ns 953124 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54221408ns 953127 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54221692ns 953132 1a110850 fd5ff06f jal x0, -44 +54221976ns 953137 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54222260ns 953142 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54222658ns 953149 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54222829ns 953152 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54223283ns 953160 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54223454ns 953163 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54223738ns 953168 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54224022ns 953173 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54224306ns 953178 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54224761ns 953186 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54224931ns 953189 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54225216ns 953194 1a110850 fd5ff06f jal x0, -44 +54225500ns 953199 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54225784ns 953204 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54226182ns 953211 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54226352ns 953214 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54226807ns 953222 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54226977ns 953225 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54227261ns 953230 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54227546ns 953235 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54227830ns 953240 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54228284ns 953248 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54228455ns 953251 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54228739ns 953256 1a110850 fd5ff06f jal x0, -44 +54229023ns 953261 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54229307ns 953266 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54229705ns 953273 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54229876ns 953276 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54230330ns 953284 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54230501ns 953287 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54230785ns 953292 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54231069ns 953297 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54231353ns 953302 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54231808ns 953310 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54231979ns 953313 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54232263ns 953318 1a110850 fd5ff06f jal x0, -44 +54232547ns 953323 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54232831ns 953328 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54233229ns 953335 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54233399ns 953338 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54233854ns 953346 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54234024ns 953349 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54234309ns 953354 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54234593ns 953359 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54234877ns 953364 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54235332ns 953372 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54235502ns 953375 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54235786ns 953380 1a110850 fd5ff06f jal x0, -44 +54236070ns 953385 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54236355ns 953390 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54236752ns 953397 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54236923ns 953400 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54237378ns 953408 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54237548ns 953411 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54237832ns 953416 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54238116ns 953421 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54238401ns 953426 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54238855ns 953434 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54239026ns 953437 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54239310ns 953442 1a110850 fd5ff06f jal x0, -44 +54239594ns 953447 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54239878ns 953452 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54240276ns 953459 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54240447ns 953462 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54240901ns 953470 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54241072ns 953473 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54241356ns 953478 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54241640ns 953483 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54241924ns 953488 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54242379ns 953496 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54242549ns 953499 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54242833ns 953504 1a110850 fd5ff06f jal x0, -44 +54243118ns 953509 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54243402ns 953514 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54243800ns 953521 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54243970ns 953524 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54244425ns 953532 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54244595ns 953535 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54244879ns 953540 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54245164ns 953545 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54245448ns 953550 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54245902ns 953558 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54246073ns 953561 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54246357ns 953566 1a110850 fd5ff06f jal x0, -44 +54246641ns 953571 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54246925ns 953576 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54247323ns 953583 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54247494ns 953586 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54247948ns 953594 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54248119ns 953597 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54248403ns 953602 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54248687ns 953607 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54248971ns 953612 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54249426ns 953620 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54249596ns 953623 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54249881ns 953628 1a110850 fd5ff06f jal x0, -44 +54250165ns 953633 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54250449ns 953638 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54250847ns 953645 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54251017ns 953648 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54251472ns 953656 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54251642ns 953659 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54251927ns 953664 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54252211ns 953669 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54252495ns 953674 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54252950ns 953682 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54253120ns 953685 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54253404ns 953690 1a110850 fd5ff06f jal x0, -44 +54253688ns 953695 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54253973ns 953700 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54254370ns 953707 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54254541ns 953710 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54254995ns 953718 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54255166ns 953721 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54255450ns 953726 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54255734ns 953731 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54256018ns 953736 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54256473ns 953744 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54256644ns 953747 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54256928ns 953752 1a110850 fd5ff06f jal x0, -44 +54257212ns 953757 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54257496ns 953762 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54257894ns 953769 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54258064ns 953772 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54258519ns 953780 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54258690ns 953783 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54258974ns 953788 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54259258ns 953793 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54259542ns 953798 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54259997ns 953806 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54260167ns 953809 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54260451ns 953814 1a110850 fd5ff06f jal x0, -44 +54260736ns 953819 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54261020ns 953824 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54261418ns 953831 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54261588ns 953834 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54262043ns 953842 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54262213ns 953845 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54262497ns 953850 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54262781ns 953855 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54263066ns 953860 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54263520ns 953868 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54263691ns 953871 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54263975ns 953876 1a110850 fd5ff06f jal x0, -44 +54264259ns 953881 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54264543ns 953886 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54264941ns 953893 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54265112ns 953896 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54265566ns 953904 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54265737ns 953907 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54266021ns 953912 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54266305ns 953917 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54266589ns 953922 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54267044ns 953930 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54267214ns 953933 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54267499ns 953938 1a110850 fd5ff06f jal x0, -44 +54267783ns 953943 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54268067ns 953948 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54268465ns 953955 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54268635ns 953958 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54269090ns 953966 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54269260ns 953969 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54269544ns 953974 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54269829ns 953979 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54270113ns 953984 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54270567ns 953992 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54270738ns 953995 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54271022ns 954000 1a110850 fd5ff06f jal x0, -44 +54271306ns 954005 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54271590ns 954010 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54271988ns 954017 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54272159ns 954020 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54272613ns 954028 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54272784ns 954031 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54273068ns 954036 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54273352ns 954041 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54273636ns 954046 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54274091ns 954054 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54274262ns 954057 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54274546ns 954062 1a110850 fd5ff06f jal x0, -44 +54274830ns 954067 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54275114ns 954072 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54275512ns 954079 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54275682ns 954082 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54276137ns 954090 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54276307ns 954093 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54276592ns 954098 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54276876ns 954103 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54277160ns 954108 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54277615ns 954116 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54277785ns 954119 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54278069ns 954124 1a110850 fd5ff06f jal x0, -44 +54278353ns 954129 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54278638ns 954134 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54279035ns 954141 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54279206ns 954144 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54279661ns 954152 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54279831ns 954155 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54280115ns 954160 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54280399ns 954165 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54280684ns 954170 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54281138ns 954178 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54281309ns 954181 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54281593ns 954186 1a110850 fd5ff06f jal x0, -44 +54281877ns 954191 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54282161ns 954196 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54282559ns 954203 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54282730ns 954206 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54283184ns 954214 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54283355ns 954217 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54283639ns 954222 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54283923ns 954227 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54284207ns 954232 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54284662ns 954240 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54284832ns 954243 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54285116ns 954248 1a110850 fd5ff06f jal x0, -44 +54285401ns 954253 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54285685ns 954258 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54286083ns 954265 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54286253ns 954268 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54286708ns 954276 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54286878ns 954279 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54287162ns 954284 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54287447ns 954289 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54287731ns 954294 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54288185ns 954302 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54288356ns 954305 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54288640ns 954310 1a110850 fd5ff06f jal x0, -44 +54288924ns 954315 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54289208ns 954320 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54289606ns 954327 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54289777ns 954330 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54290231ns 954338 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54290402ns 954341 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54290686ns 954346 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54290970ns 954351 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54291254ns 954356 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54291709ns 954364 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54291879ns 954367 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54292164ns 954372 1a110850 fd5ff06f jal x0, -44 +54292448ns 954377 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54292732ns 954382 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54293130ns 954389 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54293300ns 954392 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54293755ns 954400 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54293925ns 954403 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54294210ns 954408 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54294494ns 954413 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54294778ns 954418 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54295233ns 954426 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54295403ns 954429 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54295687ns 954434 1a110850 fd5ff06f jal x0, -44 +54295971ns 954439 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54296256ns 954444 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54296653ns 954451 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54296824ns 954454 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54297279ns 954462 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54297449ns 954465 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54297733ns 954470 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54298017ns 954475 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54298301ns 954480 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54298756ns 954488 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54298927ns 954491 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54299211ns 954496 1a110850 fd5ff06f jal x0, -44 +54299495ns 954501 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54299779ns 954506 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54300177ns 954513 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54300347ns 954516 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54300802ns 954524 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54300973ns 954527 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54301257ns 954532 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54301541ns 954537 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54301825ns 954542 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54302280ns 954550 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54302450ns 954553 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54302734ns 954558 1a110850 fd5ff06f jal x0, -44 +54303019ns 954563 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54303303ns 954568 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54303701ns 954575 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54303871ns 954578 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54304326ns 954586 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54304496ns 954589 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54304780ns 954594 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54305064ns 954599 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54305349ns 954604 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54305803ns 954612 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54305974ns 954615 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54306258ns 954620 1a110850 fd5ff06f jal x0, -44 +54306542ns 954625 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54306826ns 954630 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54307224ns 954637 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54307395ns 954640 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54307849ns 954648 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54308020ns 954651 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54308304ns 954656 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54308588ns 954661 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54308872ns 954666 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54309327ns 954674 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54309497ns 954677 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54309782ns 954682 1a110850 fd5ff06f jal x0, -44 +54310066ns 954687 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54310350ns 954692 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54310748ns 954699 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54310918ns 954702 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54311373ns 954710 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54311543ns 954713 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54311827ns 954718 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54312112ns 954723 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54312396ns 954728 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54312850ns 954736 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54313021ns 954739 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54313305ns 954744 1a110850 fd5ff06f jal x0, -44 +54313589ns 954749 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54313873ns 954754 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54314271ns 954761 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54314442ns 954764 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54314896ns 954772 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54315067ns 954775 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54315351ns 954780 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54315635ns 954785 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54315919ns 954790 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54316374ns 954798 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54316545ns 954801 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54316829ns 954806 1a110850 fd5ff06f jal x0, -44 +54317113ns 954811 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54317397ns 954816 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54317795ns 954823 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54317965ns 954826 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54318420ns 954834 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54318591ns 954837 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54318875ns 954842 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54319159ns 954847 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54319443ns 954852 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54319898ns 954860 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54320068ns 954863 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54320352ns 954868 1a110850 fd5ff06f jal x0, -44 +54320636ns 954873 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54320921ns 954878 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54321318ns 954885 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54321489ns 954888 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54321944ns 954896 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54322114ns 954899 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54322398ns 954904 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54322682ns 954909 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54322967ns 954914 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54323421ns 954922 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54323592ns 954925 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54323876ns 954930 1a110850 fd5ff06f jal x0, -44 +54324160ns 954935 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54324444ns 954940 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54324842ns 954947 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54325013ns 954950 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54325467ns 954958 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54325638ns 954961 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54325922ns 954966 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54326206ns 954971 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54326490ns 954976 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54326945ns 954984 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54327115ns 954987 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54327399ns 954992 1a110850 fd5ff06f jal x0, -44 +54327684ns 954997 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54327968ns 955002 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54328366ns 955009 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54328536ns 955012 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54328991ns 955020 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54329161ns 955023 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54329445ns 955028 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54329730ns 955033 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54330014ns 955038 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54330468ns 955046 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54330639ns 955049 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54330923ns 955054 1a110850 fd5ff06f jal x0, -44 +54331207ns 955059 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54331491ns 955064 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54331889ns 955071 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54332060ns 955074 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54332514ns 955082 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54332685ns 955085 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54332969ns 955090 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54333253ns 955095 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54333537ns 955100 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54333992ns 955108 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54334162ns 955111 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54334447ns 955116 1a110850 fd5ff06f jal x0, -44 +54334731ns 955121 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54335015ns 955126 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54335413ns 955133 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54335583ns 955136 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54336038ns 955144 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54336208ns 955147 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54336493ns 955152 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54336777ns 955157 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54337061ns 955162 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54337516ns 955170 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54337686ns 955173 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54337970ns 955178 1a110850 fd5ff06f jal x0, -44 +54338254ns 955183 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54338539ns 955188 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54338936ns 955195 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54339107ns 955198 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54339562ns 955206 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54339732ns 955209 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54340016ns 955214 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54340300ns 955219 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54340584ns 955224 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54341039ns 955232 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54341210ns 955235 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54341494ns 955240 1a110850 fd5ff06f jal x0, -44 +54341778ns 955245 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54342062ns 955250 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54342460ns 955257 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54342630ns 955260 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54343085ns 955268 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54343256ns 955271 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54343540ns 955276 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54343824ns 955281 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54344108ns 955286 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54344563ns 955294 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54344733ns 955297 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54345017ns 955302 1a110850 fd5ff06f jal x0, -44 +54345302ns 955307 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54345586ns 955312 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54345984ns 955319 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54346154ns 955322 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54346609ns 955330 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54346779ns 955333 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54347063ns 955338 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54347347ns 955343 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54347632ns 955348 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54348086ns 955356 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54348257ns 955359 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54348541ns 955364 1a110850 fd5ff06f jal x0, -44 +54348825ns 955369 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54349109ns 955374 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54349507ns 955381 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54349678ns 955384 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54350132ns 955392 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54350303ns 955395 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54350587ns 955400 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54350871ns 955405 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54351155ns 955410 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54351610ns 955418 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54351780ns 955421 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54352065ns 955426 1a110850 fd5ff06f jal x0, -44 +54352349ns 955431 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54352633ns 955436 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54353031ns 955443 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54353201ns 955446 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54353656ns 955454 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54353826ns 955457 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54354111ns 955462 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54354395ns 955467 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54354679ns 955472 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54355133ns 955480 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54355304ns 955483 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54355588ns 955488 1a110850 fd5ff06f jal x0, -44 +54355872ns 955493 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54356156ns 955498 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54356554ns 955505 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54356725ns 955508 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54357179ns 955516 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54357350ns 955519 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54357634ns 955524 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54357918ns 955529 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54358202ns 955534 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54358657ns 955542 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54358828ns 955545 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54359112ns 955550 1a110850 fd5ff06f jal x0, -44 +54359396ns 955555 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54359680ns 955560 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54360078ns 955567 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54360248ns 955570 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54360703ns 955578 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54360874ns 955581 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54361158ns 955586 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54361442ns 955591 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54361726ns 955596 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54362181ns 955604 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54362351ns 955607 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54362635ns 955612 1a110850 fd5ff06f jal x0, -44 +54362919ns 955617 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54363204ns 955622 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54363601ns 955629 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54363772ns 955632 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54364227ns 955640 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54364397ns 955643 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54364681ns 955648 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54364965ns 955653 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54365250ns 955658 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54365704ns 955666 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54365875ns 955669 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54366159ns 955674 1a110850 fd5ff06f jal x0, -44 +54366443ns 955679 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54366727ns 955684 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54367125ns 955691 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54367296ns 955694 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54367750ns 955702 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54367921ns 955705 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54368205ns 955710 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54368489ns 955715 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54368773ns 955720 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54369228ns 955728 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54369398ns 955731 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54369682ns 955736 1a110850 fd5ff06f jal x0, -44 +54369967ns 955741 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54370251ns 955746 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54370649ns 955753 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54370819ns 955756 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54371274ns 955764 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54371444ns 955767 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54371728ns 955772 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54372013ns 955777 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54372297ns 955782 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54372751ns 955790 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54372922ns 955793 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54373206ns 955798 1a110850 fd5ff06f jal x0, -44 +54373490ns 955803 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54373774ns 955808 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54374172ns 955815 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54374343ns 955818 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54374797ns 955826 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54374968ns 955829 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54375252ns 955834 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54375536ns 955839 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54375820ns 955844 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54376275ns 955852 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54376445ns 955855 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54376730ns 955860 1a110850 fd5ff06f jal x0, -44 +54377014ns 955865 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54377298ns 955870 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54377696ns 955877 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54377866ns 955880 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54378321ns 955888 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54378491ns 955891 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54378776ns 955896 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54379060ns 955901 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54379344ns 955906 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54379799ns 955914 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54379969ns 955917 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54380253ns 955922 1a110850 fd5ff06f jal x0, -44 +54380537ns 955927 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54380822ns 955932 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54381219ns 955939 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54381390ns 955942 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54381845ns 955950 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54382015ns 955953 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54382299ns 955958 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54382583ns 955963 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54382867ns 955968 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54383322ns 955976 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54383493ns 955979 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54383777ns 955984 1a110850 fd5ff06f jal x0, -44 +54384061ns 955989 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54384345ns 955994 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54384743ns 956001 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54384913ns 956004 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54385368ns 956012 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54385539ns 956015 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54385823ns 956020 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54386107ns 956025 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54386391ns 956030 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54386846ns 956038 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54387016ns 956041 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54387300ns 956046 1a110850 fd5ff06f jal x0, -44 +54387585ns 956051 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54387869ns 956056 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54388267ns 956063 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54388437ns 956066 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54388892ns 956074 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54389062ns 956077 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54389346ns 956082 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54389631ns 956087 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54389915ns 956092 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54390369ns 956100 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54390540ns 956103 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54390824ns 956108 1a110850 fd5ff06f jal x0, -44 +54391108ns 956113 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54391392ns 956118 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54391790ns 956125 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54391961ns 956128 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54392415ns 956136 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54392586ns 956139 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54392870ns 956144 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54393154ns 956149 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54393438ns 956154 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54393893ns 956162 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54394063ns 956165 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54394348ns 956170 1a110850 fd5ff06f jal x0, -44 +54394632ns 956175 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54394916ns 956180 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54395314ns 956187 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54395484ns 956190 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54395939ns 956198 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54396109ns 956201 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54396394ns 956206 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54396678ns 956211 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54396962ns 956216 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54397416ns 956224 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54397587ns 956227 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54397871ns 956232 1a110850 fd5ff06f jal x0, -44 +54398155ns 956237 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54398439ns 956242 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54398837ns 956249 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54399008ns 956252 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54399462ns 956260 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54399633ns 956263 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54399917ns 956268 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54400201ns 956273 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54400485ns 956278 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54400940ns 956286 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54401111ns 956289 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54401395ns 956294 1a110850 fd5ff06f jal x0, -44 +54401679ns 956299 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54401963ns 956304 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54402361ns 956311 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54402531ns 956314 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54402986ns 956322 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54403157ns 956325 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54403441ns 956330 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54403725ns 956335 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54404009ns 956340 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54404464ns 956348 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54404634ns 956351 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54404918ns 956356 1a110850 fd5ff06f jal x0, -44 +54405202ns 956361 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54405487ns 956366 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54405884ns 956373 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54406055ns 956376 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54406510ns 956384 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54406680ns 956387 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54406964ns 956392 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54407248ns 956397 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54407533ns 956402 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54407987ns 956410 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54408158ns 956413 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54408442ns 956418 1a110850 fd5ff06f jal x0, -44 +54408726ns 956423 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54409010ns 956428 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54409408ns 956435 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54409579ns 956438 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54410033ns 956446 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54410204ns 956449 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54410488ns 956454 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54410772ns 956459 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54411056ns 956464 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54411511ns 956472 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54411681ns 956475 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54411965ns 956480 1a110850 fd5ff06f jal x0, -44 +54412250ns 956485 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54412534ns 956490 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54412932ns 956497 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54413102ns 956500 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54413557ns 956508 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54413727ns 956511 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54414011ns 956516 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54414296ns 956521 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54414580ns 956526 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54415034ns 956534 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54415205ns 956537 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54415489ns 956542 1a110850 fd5ff06f jal x0, -44 +54415773ns 956547 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54416057ns 956552 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54416455ns 956559 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54416626ns 956562 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54417080ns 956570 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54417251ns 956573 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54417535ns 956578 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54417819ns 956583 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54418103ns 956588 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54418558ns 956596 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54418728ns 956599 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54419013ns 956604 1a110850 fd5ff06f jal x0, -44 +54419297ns 956609 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54419581ns 956614 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54419979ns 956621 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54420149ns 956624 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54420604ns 956632 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54420774ns 956635 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54421059ns 956640 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54421343ns 956645 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54421627ns 956650 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54422082ns 956658 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54422252ns 956661 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54422536ns 956666 1a110850 fd5ff06f jal x0, -44 +54422820ns 956671 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54423105ns 956676 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54423502ns 956683 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54423673ns 956686 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54424128ns 956694 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54424298ns 956697 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54424582ns 956702 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54424866ns 956707 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54425151ns 956712 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54425605ns 956720 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54425776ns 956723 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54426060ns 956728 1a110850 fd5ff06f jal x0, -44 +54426344ns 956733 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54426628ns 956738 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54427026ns 956745 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54427196ns 956748 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54427651ns 956756 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54427822ns 956759 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54428106ns 956764 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54428390ns 956769 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54428674ns 956774 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54429129ns 956782 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54429299ns 956785 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54429583ns 956790 1a110850 fd5ff06f jal x0, -44 +54429868ns 956795 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54430152ns 956800 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54430550ns 956807 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54430720ns 956810 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54431175ns 956818 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54431345ns 956821 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54431629ns 956826 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54431914ns 956831 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54432198ns 956836 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54432652ns 956844 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54432823ns 956847 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54433107ns 956852 1a110850 fd5ff06f jal x0, -44 +54433391ns 956857 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54433675ns 956862 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54434073ns 956869 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54434244ns 956872 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54434698ns 956880 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54434869ns 956883 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54435153ns 956888 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54435437ns 956893 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54435721ns 956898 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54436176ns 956906 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54436346ns 956909 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54436631ns 956914 1a110850 fd5ff06f jal x0, -44 +54436915ns 956919 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54437199ns 956924 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54437597ns 956931 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54437767ns 956934 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54438222ns 956942 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54438392ns 956945 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54438677ns 956950 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54438961ns 956955 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54439245ns 956960 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54439699ns 956968 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54439870ns 956971 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54440154ns 956976 1a110850 fd5ff06f jal x0, -44 +54440438ns 956981 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54440722ns 956986 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54441120ns 956993 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54441291ns 956996 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54441745ns 957004 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54441916ns 957007 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54442200ns 957012 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54442484ns 957017 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54442768ns 957022 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54443223ns 957030 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54443394ns 957033 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54443678ns 957038 1a110850 fd5ff06f jal x0, -44 +54443962ns 957043 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54444246ns 957048 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54444644ns 957055 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54444814ns 957058 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54445269ns 957066 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54445440ns 957069 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54445724ns 957074 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54446008ns 957079 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54446292ns 957084 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54446747ns 957092 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54446917ns 957095 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54447201ns 957100 1a110850 fd5ff06f jal x0, -44 +54447485ns 957105 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54447770ns 957110 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54448167ns 957117 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54448338ns 957120 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54448793ns 957128 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54448963ns 957131 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54449247ns 957136 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54449531ns 957141 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54449816ns 957146 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54450270ns 957154 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54450441ns 957157 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54450725ns 957162 1a110850 fd5ff06f jal x0, -44 +54451009ns 957167 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54451293ns 957172 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54451691ns 957179 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54451862ns 957182 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54452316ns 957190 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54452487ns 957193 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54452771ns 957198 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54453055ns 957203 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54453339ns 957208 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54453794ns 957216 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54453964ns 957219 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54454248ns 957224 1a110850 fd5ff06f jal x0, -44 +54454533ns 957229 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54454817ns 957234 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54455215ns 957241 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54455385ns 957244 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54455840ns 957252 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54456010ns 957255 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54456294ns 957260 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54456579ns 957265 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54456863ns 957270 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54457317ns 957278 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54457488ns 957281 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54457772ns 957286 1a110850 fd5ff06f jal x0, -44 +54458056ns 957291 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54458340ns 957296 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54458738ns 957303 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54458909ns 957306 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54459363ns 957314 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54459534ns 957317 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54459818ns 957322 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54460102ns 957327 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54460386ns 957332 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54460841ns 957340 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54461011ns 957343 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54461296ns 957348 1a110850 fd5ff06f jal x0, -44 +54461580ns 957353 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54461864ns 957358 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54462262ns 957365 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54462432ns 957368 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54462887ns 957376 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54463057ns 957379 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54463342ns 957384 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54463626ns 957389 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54463910ns 957394 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54464365ns 957402 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54464535ns 957405 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54464819ns 957410 1a110850 fd5ff06f jal x0, -44 +54465103ns 957415 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54465388ns 957420 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54465785ns 957427 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54465956ns 957430 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54466411ns 957438 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54466581ns 957441 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54466865ns 957446 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54467149ns 957451 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54467434ns 957456 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54467888ns 957464 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54468059ns 957467 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54468343ns 957472 1a110850 fd5ff06f jal x0, -44 +54468627ns 957477 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54468911ns 957482 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54469309ns 957489 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54469479ns 957492 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54469934ns 957500 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54470105ns 957503 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54470389ns 957508 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54470673ns 957513 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54470957ns 957518 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54471412ns 957526 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54471582ns 957529 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54471866ns 957534 1a110850 fd5ff06f jal x0, -44 +54472151ns 957539 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54472435ns 957544 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54472833ns 957551 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54473003ns 957554 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54473458ns 957562 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54473628ns 957565 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54473912ns 957570 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54474197ns 957575 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54474481ns 957580 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54474935ns 957588 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54475106ns 957591 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54475390ns 957596 1a110850 fd5ff06f jal x0, -44 +54475674ns 957601 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54475958ns 957606 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54476356ns 957613 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54476527ns 957616 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54476981ns 957624 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54477152ns 957627 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54477436ns 957632 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54477720ns 957637 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54478004ns 957642 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54478459ns 957650 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54478629ns 957653 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54478914ns 957658 1a110850 fd5ff06f jal x0, -44 +54479198ns 957663 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54479482ns 957668 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54479880ns 957675 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54480050ns 957678 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54480505ns 957686 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54480675ns 957689 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54480960ns 957694 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54481244ns 957699 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54481528ns 957704 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54481983ns 957712 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54482153ns 957715 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54482437ns 957720 1a110850 fd5ff06f jal x0, -44 +54482721ns 957725 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54483005ns 957730 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54483403ns 957737 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54483574ns 957740 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54484028ns 957748 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54484199ns 957751 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54484483ns 957756 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54484767ns 957761 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54485051ns 957766 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54485506ns 957774 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54485677ns 957777 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54485961ns 957782 1a110850 fd5ff06f jal x0, -44 +54486245ns 957787 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54486529ns 957792 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54486927ns 957799 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54487097ns 957802 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54487552ns 957810 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54487723ns 957813 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54488007ns 957818 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54488291ns 957823 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54488575ns 957828 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54489030ns 957836 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54489200ns 957839 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54489484ns 957844 1a110850 fd5ff06f jal x0, -44 +54489768ns 957849 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54490053ns 957854 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54490450ns 957861 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54490621ns 957864 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54491076ns 957872 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54491246ns 957875 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54491530ns 957880 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54491814ns 957885 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54492099ns 957890 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54492553ns 957898 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54492724ns 957901 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54493008ns 957906 1a110850 fd5ff06f jal x0, -44 +54493292ns 957911 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54493576ns 957916 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54493974ns 957923 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54494145ns 957926 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54494599ns 957934 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54494770ns 957937 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54495054ns 957942 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54495338ns 957947 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54495622ns 957952 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54496077ns 957960 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54496247ns 957963 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54496531ns 957968 1a110850 fd5ff06f jal x0, -44 +54496816ns 957973 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54497100ns 957978 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54497498ns 957985 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54497668ns 957988 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54498123ns 957996 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54498293ns 957999 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54498577ns 958004 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54498862ns 958009 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54499146ns 958014 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54499600ns 958022 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54499771ns 958025 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54500055ns 958030 1a110850 fd5ff06f jal x0, -44 +54500339ns 958035 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54500623ns 958040 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54501021ns 958047 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54501192ns 958050 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54501646ns 958058 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54501817ns 958061 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54502101ns 958066 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54502385ns 958071 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54502669ns 958076 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54503124ns 958084 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54503295ns 958087 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54503579ns 958092 1a110850 fd5ff06f jal x0, -44 +54503863ns 958097 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54504147ns 958102 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54504545ns 958109 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54504715ns 958112 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54505170ns 958120 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54505340ns 958123 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54505625ns 958128 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54505909ns 958133 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54506193ns 958138 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54506648ns 958146 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54506818ns 958149 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54507102ns 958154 1a110850 fd5ff06f jal x0, -44 +54507386ns 958159 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54507671ns 958164 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54508068ns 958171 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54508239ns 958174 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54508694ns 958182 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54508864ns 958185 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54509148ns 958190 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54509432ns 958195 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54509717ns 958200 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54510171ns 958208 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54510342ns 958211 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54510626ns 958216 1a110850 fd5ff06f jal x0, -44 +54510910ns 958221 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54511194ns 958226 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54511592ns 958233 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54511762ns 958236 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54512217ns 958244 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54512388ns 958247 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54512672ns 958252 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54512956ns 958257 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54513240ns 958262 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54513695ns 958270 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54513865ns 958273 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54514149ns 958278 1a110850 fd5ff06f jal x0, -44 +54514434ns 958283 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54514718ns 958288 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54515116ns 958295 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54515286ns 958298 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54515741ns 958306 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54515911ns 958309 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54516195ns 958314 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54516480ns 958319 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54516764ns 958324 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54517218ns 958332 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54517389ns 958335 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54517673ns 958340 1a110850 fd5ff06f jal x0, -44 +54517957ns 958345 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54518241ns 958350 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54518639ns 958357 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54518810ns 958360 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54519264ns 958368 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54519435ns 958371 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54519719ns 958376 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54520003ns 958381 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54520287ns 958386 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54520742ns 958394 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54520912ns 958397 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54521197ns 958402 1a110850 fd5ff06f jal x0, -44 +54521481ns 958407 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54521765ns 958412 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54522163ns 958419 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54522333ns 958422 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54522788ns 958430 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54522958ns 958433 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54523243ns 958438 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54523527ns 958443 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54523811ns 958448 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54524266ns 958456 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54524436ns 958459 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54524720ns 958464 1a110850 fd5ff06f jal x0, -44 +54525004ns 958469 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54525288ns 958474 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54525686ns 958481 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54525857ns 958484 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54526311ns 958492 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54526482ns 958495 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54526766ns 958500 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54527050ns 958505 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54527334ns 958510 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54527789ns 958518 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54527960ns 958521 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54528244ns 958526 1a110850 fd5ff06f jal x0, -44 +54528528ns 958531 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54528812ns 958536 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54529210ns 958543 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54529380ns 958546 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54529835ns 958554 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54530006ns 958557 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54530290ns 958562 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54530574ns 958567 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54530858ns 958572 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54531313ns 958580 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54531483ns 958583 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54531767ns 958588 1a110850 fd5ff06f jal x0, -44 +54532051ns 958593 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54532336ns 958598 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54532733ns 958605 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54532904ns 958608 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54533359ns 958616 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54533529ns 958619 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54533813ns 958624 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54534097ns 958629 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54534382ns 958634 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54534836ns 958642 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54535007ns 958645 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54535291ns 958650 1a110850 fd5ff06f jal x0, -44 +54535575ns 958655 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54535859ns 958660 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54536257ns 958667 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54536428ns 958670 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54536882ns 958678 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54537053ns 958681 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54537337ns 958686 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54537621ns 958691 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54537905ns 958696 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54538360ns 958704 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54538530ns 958707 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54538815ns 958712 1a110850 fd5ff06f jal x0, -44 +54539099ns 958717 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54539383ns 958722 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54539781ns 958729 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54539951ns 958732 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54540406ns 958740 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54540576ns 958743 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54540860ns 958748 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54541145ns 958753 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54541429ns 958758 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54541883ns 958766 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54542054ns 958769 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54542338ns 958774 1a110850 fd5ff06f jal x0, -44 +54542622ns 958779 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54542906ns 958784 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54543304ns 958791 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54543475ns 958794 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54543929ns 958802 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54544100ns 958805 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54544384ns 958810 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54544668ns 958815 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54544952ns 958820 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54545407ns 958828 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54545578ns 958831 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54545862ns 958836 1a110850 fd5ff06f jal x0, -44 +54546146ns 958841 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54546430ns 958846 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54546828ns 958853 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54546998ns 958856 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54547453ns 958864 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54547623ns 958867 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54547908ns 958872 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54548192ns 958877 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54548476ns 958882 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54548931ns 958890 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54549101ns 958893 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54549385ns 958898 1a110850 fd5ff06f jal x0, -44 +54549669ns 958903 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54549954ns 958908 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54550351ns 958915 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54550522ns 958918 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54550977ns 958926 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54551147ns 958929 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54551431ns 958934 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54551715ns 958939 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54552000ns 958944 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54552454ns 958952 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54552625ns 958955 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54552909ns 958960 1a110850 fd5ff06f jal x0, -44 +54553193ns 958965 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54553477ns 958970 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54553875ns 958977 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54554045ns 958980 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54554500ns 958988 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54554671ns 958991 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54554955ns 958996 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54555239ns 959001 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54555523ns 959006 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54555978ns 959014 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54556148ns 959017 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54556432ns 959022 1a110850 fd5ff06f jal x0, -44 +54556717ns 959027 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54557001ns 959032 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54557399ns 959039 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54557569ns 959042 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54558024ns 959050 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54558194ns 959053 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54558478ns 959058 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54558763ns 959063 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54559047ns 959068 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54559501ns 959076 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54559672ns 959079 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54559956ns 959084 1a110850 fd5ff06f jal x0, -44 +54560240ns 959089 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54560524ns 959094 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54560922ns 959101 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54561093ns 959104 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54561547ns 959112 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54561718ns 959115 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54562002ns 959120 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54562286ns 959125 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54562570ns 959130 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54563025ns 959138 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54563195ns 959141 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54563480ns 959146 1a110850 fd5ff06f jal x0, -44 +54563764ns 959151 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54564048ns 959156 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54564446ns 959163 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54564616ns 959166 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54565071ns 959174 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54565241ns 959177 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54565526ns 959182 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54565810ns 959187 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54566094ns 959192 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54566549ns 959200 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54566719ns 959203 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54567003ns 959208 1a110850 fd5ff06f jal x0, -44 +54567287ns 959213 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54567571ns 959218 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54567969ns 959225 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54568140ns 959228 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54568594ns 959236 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54568765ns 959239 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54569049ns 959244 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54569333ns 959249 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54569617ns 959254 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54570072ns 959262 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54570243ns 959265 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54570527ns 959270 1a110850 fd5ff06f jal x0, -44 +54570811ns 959275 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54571095ns 959280 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54571493ns 959287 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54571663ns 959290 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54572118ns 959298 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54572289ns 959301 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54572573ns 959306 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54572857ns 959311 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54573141ns 959316 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54573596ns 959324 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54573766ns 959327 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54574050ns 959332 1a110850 fd5ff06f jal x0, -44 +54574335ns 959337 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54574619ns 959342 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54575016ns 959349 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54575187ns 959352 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54575642ns 959360 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54575812ns 959363 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54576096ns 959368 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54576380ns 959373 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54576665ns 959378 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54577119ns 959386 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54577290ns 959389 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54577574ns 959394 1a110850 fd5ff06f jal x0, -44 +54577858ns 959399 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54578142ns 959404 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54578540ns 959411 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54578711ns 959414 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54579165ns 959422 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54579336ns 959425 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54579620ns 959430 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54579904ns 959435 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54580188ns 959440 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54580643ns 959448 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54580813ns 959451 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54581098ns 959456 1a110850 fd5ff06f jal x0, -44 +54581382ns 959461 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54581666ns 959466 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54582064ns 959473 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54582234ns 959476 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54582689ns 959484 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54582859ns 959487 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54583143ns 959492 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54583428ns 959497 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54583712ns 959502 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54584166ns 959510 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54584337ns 959513 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54584621ns 959518 1a110850 fd5ff06f jal x0, -44 +54584905ns 959523 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54585189ns 959528 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54585587ns 959535 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54585758ns 959538 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54586212ns 959546 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54586383ns 959549 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54586667ns 959554 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54586951ns 959559 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54587235ns 959564 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54587690ns 959572 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54587861ns 959575 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54588145ns 959580 1a110850 fd5ff06f jal x0, -44 +54588429ns 959585 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54588713ns 959590 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54589111ns 959597 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54589281ns 959600 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54589736ns 959608 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54589906ns 959611 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54590191ns 959616 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54590475ns 959621 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54590759ns 959626 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54591214ns 959634 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54591384ns 959637 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54591668ns 959642 1a110850 fd5ff06f jal x0, -44 +54591952ns 959647 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54592237ns 959652 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54592634ns 959659 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54592805ns 959662 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54593260ns 959670 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54593430ns 959673 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54593714ns 959678 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54593998ns 959683 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54594283ns 959688 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54594737ns 959696 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54594908ns 959699 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54595192ns 959704 1a110850 fd5ff06f jal x0, -44 +54595476ns 959709 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54595760ns 959714 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54596158ns 959721 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54596328ns 959724 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54596783ns 959732 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54596954ns 959735 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54597238ns 959740 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54597522ns 959745 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54597806ns 959750 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54598261ns 959758 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54598431ns 959761 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54598715ns 959766 1a110850 fd5ff06f jal x0, -44 +54599000ns 959771 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54599284ns 959776 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54599682ns 959783 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54599852ns 959786 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54600307ns 959794 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54600477ns 959797 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54600761ns 959802 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54601046ns 959807 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54601330ns 959812 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54601784ns 959820 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54601955ns 959823 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54602239ns 959828 1a110850 fd5ff06f jal x0, -44 +54602523ns 959833 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54602807ns 959838 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54603205ns 959845 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54603376ns 959848 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54603830ns 959856 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54604001ns 959859 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54604285ns 959864 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54604569ns 959869 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54604853ns 959874 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54605308ns 959882 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54605478ns 959885 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54605763ns 959890 1a110850 fd5ff06f jal x0, -44 +54606047ns 959895 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54606331ns 959900 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54606729ns 959907 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54606899ns 959910 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54607354ns 959918 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54607524ns 959921 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54607809ns 959926 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54608093ns 959931 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54608377ns 959936 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54608832ns 959944 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54609002ns 959947 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54609286ns 959952 1a110850 fd5ff06f jal x0, -44 +54609570ns 959957 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54609855ns 959962 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54610252ns 959969 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54610423ns 959972 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54610877ns 959980 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54611048ns 959983 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54611332ns 959988 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54611616ns 959993 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54611900ns 959998 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54612355ns 960006 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54612526ns 960009 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54612810ns 960014 1a110850 fd5ff06f jal x0, -44 +54613094ns 960019 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54613378ns 960024 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54613776ns 960031 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54613946ns 960034 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54614401ns 960042 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54614572ns 960045 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54614856ns 960050 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54615140ns 960055 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54615424ns 960060 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54615879ns 960068 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54616049ns 960071 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54616333ns 960076 1a110850 fd5ff06f jal x0, -44 +54616618ns 960081 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54616902ns 960086 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54617299ns 960093 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54617470ns 960096 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54617925ns 960104 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54618095ns 960107 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54618379ns 960112 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54618663ns 960117 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54618948ns 960122 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54619402ns 960130 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54619573ns 960133 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54619857ns 960138 1a110850 fd5ff06f jal x0, -44 +54620141ns 960143 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54620425ns 960148 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54620823ns 960155 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54620994ns 960158 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54621448ns 960166 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54621619ns 960169 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54621903ns 960174 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54622187ns 960179 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54622471ns 960184 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54622926ns 960192 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54623096ns 960195 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54623381ns 960200 1a110850 fd5ff06f jal x0, -44 +54623665ns 960205 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54623949ns 960210 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54624347ns 960217 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54624517ns 960220 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54624972ns 960228 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54625142ns 960231 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54625426ns 960236 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54625711ns 960241 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54625995ns 960246 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54626449ns 960254 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54626620ns 960257 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54626904ns 960262 1a110850 fd5ff06f jal x0, -44 +54627188ns 960267 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54627472ns 960272 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54627870ns 960279 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54628041ns 960282 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54628495ns 960290 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54628666ns 960293 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54628950ns 960298 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54629234ns 960303 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54629518ns 960308 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54629973ns 960316 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54630144ns 960319 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54630428ns 960324 1a110850 fd5ff06f jal x0, -44 +54630712ns 960329 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54630996ns 960334 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54631394ns 960341 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54631564ns 960344 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54632019ns 960352 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54632189ns 960355 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54632474ns 960360 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54632758ns 960365 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54633042ns 960370 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54633497ns 960378 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54633667ns 960381 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54633951ns 960386 1a110850 fd5ff06f jal x0, -44 +54634235ns 960391 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54634520ns 960396 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54634917ns 960403 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54635088ns 960406 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54635543ns 960414 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54635713ns 960417 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54635997ns 960422 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54636281ns 960427 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54636566ns 960432 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54637020ns 960440 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54637191ns 960443 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54637475ns 960448 1a110850 fd5ff06f jal x0, -44 +54637759ns 960453 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54638043ns 960458 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54638441ns 960465 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54638611ns 960468 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54639066ns 960476 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54639237ns 960479 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54639521ns 960484 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54639805ns 960489 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54640089ns 960494 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54640544ns 960502 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54640714ns 960505 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54640998ns 960510 1a110850 fd5ff06f jal x0, -44 +54641283ns 960515 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54641567ns 960520 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54641965ns 960527 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54642135ns 960530 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54642590ns 960538 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54642760ns 960541 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54643044ns 960546 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54643329ns 960551 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54643613ns 960556 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54644067ns 960564 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54644238ns 960567 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54644522ns 960572 1a110850 fd5ff06f jal x0, -44 +54644806ns 960577 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54645090ns 960582 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54645488ns 960589 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54645659ns 960592 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54646113ns 960600 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54646284ns 960603 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54646568ns 960608 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54646852ns 960613 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54647136ns 960618 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54647591ns 960626 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54647761ns 960629 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54648046ns 960634 1a110850 fd5ff06f jal x0, -44 +54648330ns 960639 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54648614ns 960644 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54649012ns 960651 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54649182ns 960654 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54649637ns 960662 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54649807ns 960665 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54650092ns 960670 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54650376ns 960675 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54650660ns 960680 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54651115ns 960688 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54651285ns 960691 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54651569ns 960696 1a110850 fd5ff06f jal x0, -44 +54651853ns 960701 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54652138ns 960706 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54652535ns 960713 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54652706ns 960716 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54653160ns 960724 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54653331ns 960727 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54653615ns 960732 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54653899ns 960737 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54654183ns 960742 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54654638ns 960750 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54654809ns 960753 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54655093ns 960758 1a110850 fd5ff06f jal x0, -44 +54655377ns 960763 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54655661ns 960768 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54656059ns 960775 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54656229ns 960778 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54656684ns 960786 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54656855ns 960789 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54657139ns 960794 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54657423ns 960799 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54657707ns 960804 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54658162ns 960812 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54658332ns 960815 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54658616ns 960820 1a110850 fd5ff06f jal x0, -44 +54658901ns 960825 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54659185ns 960830 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54659583ns 960837 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54659753ns 960840 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54660208ns 960848 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54660378ns 960851 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54660662ns 960856 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54660946ns 960861 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54661231ns 960866 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54661685ns 960874 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54661856ns 960877 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54662140ns 960882 1a110850 fd5ff06f jal x0, -44 +54662424ns 960887 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54662708ns 960892 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54663106ns 960899 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54663277ns 960902 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54663731ns 960910 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54663902ns 960913 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54664186ns 960918 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54664470ns 960923 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54664754ns 960928 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54665209ns 960936 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54665379ns 960939 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54665664ns 960944 1a110850 fd5ff06f jal x0, -44 +54665948ns 960949 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54666232ns 960954 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54666630ns 960961 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54666800ns 960964 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54667255ns 960972 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54667425ns 960975 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54667709ns 960980 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54667994ns 960985 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54668278ns 960990 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54668732ns 960998 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54668903ns 961001 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54669187ns 961006 1a110850 fd5ff06f jal x0, -44 +54669471ns 961011 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54669755ns 961016 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54670153ns 961023 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54670324ns 961026 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54670778ns 961034 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54670949ns 961037 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54671233ns 961042 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54671517ns 961047 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54671801ns 961052 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54672256ns 961060 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54672427ns 961063 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54672711ns 961068 1a110850 fd5ff06f jal x0, -44 +54672995ns 961073 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54673279ns 961078 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54673677ns 961085 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54673847ns 961088 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54674302ns 961096 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54674472ns 961099 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54674757ns 961104 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54675041ns 961109 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54675325ns 961114 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54675780ns 961122 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54675950ns 961125 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54676234ns 961130 1a110850 fd5ff06f jal x0, -44 +54676518ns 961135 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54676803ns 961140 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54677200ns 961147 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54677371ns 961150 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54677826ns 961158 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54677996ns 961161 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54678280ns 961166 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54678564ns 961171 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54678849ns 961176 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54679303ns 961184 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54679474ns 961187 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54679758ns 961192 1a110850 fd5ff06f jal x0, -44 +54680042ns 961197 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54680326ns 961202 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54680724ns 961209 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54680895ns 961212 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54681349ns 961220 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54681520ns 961223 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54681804ns 961228 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54682088ns 961233 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54682372ns 961238 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54682827ns 961246 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54682997ns 961249 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54683281ns 961254 1a110850 fd5ff06f jal x0, -44 +54683566ns 961259 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54683850ns 961264 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54684248ns 961271 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54684418ns 961274 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54684873ns 961282 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54685043ns 961285 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54685327ns 961290 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54685612ns 961295 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54685896ns 961300 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54686350ns 961308 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54686521ns 961311 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54686805ns 961316 1a110850 fd5ff06f jal x0, -44 +54687089ns 961321 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54687373ns 961326 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54687771ns 961333 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54687942ns 961336 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54688396ns 961344 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54688567ns 961347 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54688851ns 961352 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54689135ns 961357 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54689419ns 961362 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54689874ns 961370 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54690044ns 961373 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54690329ns 961378 1a110850 fd5ff06f jal x0, -44 +54690613ns 961383 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54690897ns 961388 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54691295ns 961395 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54691465ns 961398 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54691920ns 961406 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54692090ns 961409 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54692375ns 961414 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54692659ns 961419 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54692943ns 961424 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54693398ns 961432 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54693568ns 961435 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54693852ns 961440 1a110850 fd5ff06f jal x0, -44 +54694136ns 961445 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54694421ns 961450 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54694818ns 961457 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54694989ns 961460 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54695443ns 961468 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54695614ns 961471 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54695898ns 961476 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54696182ns 961481 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54696466ns 961486 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54696921ns 961494 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54697092ns 961497 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54697376ns 961502 1a110850 fd5ff06f jal x0, -44 +54697660ns 961507 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54697944ns 961512 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54698342ns 961519 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54698512ns 961522 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54698967ns 961530 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54699138ns 961533 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54699422ns 961538 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54699706ns 961543 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54699990ns 961548 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54700445ns 961556 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54700615ns 961559 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54700899ns 961564 1a110850 fd5ff06f jal x0, -44 +54701184ns 961569 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54701468ns 961574 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54701866ns 961581 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54702036ns 961584 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54702491ns 961592 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54702661ns 961595 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54702945ns 961600 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54703229ns 961605 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54703514ns 961610 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54703968ns 961618 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54704139ns 961621 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54704423ns 961626 1a110850 fd5ff06f jal x0, -44 +54704707ns 961631 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54704991ns 961636 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54705389ns 961643 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54705560ns 961646 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54706014ns 961654 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54706185ns 961657 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54706469ns 961662 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54706753ns 961667 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54707037ns 961672 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54707492ns 961680 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54707662ns 961683 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54707947ns 961688 1a110850 fd5ff06f jal x0, -44 +54708231ns 961693 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54708515ns 961698 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54708913ns 961705 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54709083ns 961708 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54709538ns 961716 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54709708ns 961719 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54709992ns 961724 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54710277ns 961729 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54710561ns 961734 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54711015ns 961742 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54711186ns 961745 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54711470ns 961750 1a110850 fd5ff06f jal x0, -44 +54711754ns 961755 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54712038ns 961760 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54712436ns 961767 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54712607ns 961770 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54713061ns 961778 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54713232ns 961781 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54713516ns 961786 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54713800ns 961791 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54714084ns 961796 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54714539ns 961804 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54714710ns 961807 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54714994ns 961812 1a110850 fd5ff06f jal x0, -44 +54715278ns 961817 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54715562ns 961822 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54715960ns 961829 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54716130ns 961832 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54716585ns 961840 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54716755ns 961843 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54717040ns 961848 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54717324ns 961853 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54717608ns 961858 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54718063ns 961866 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54718233ns 961869 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54718517ns 961874 1a110850 fd5ff06f jal x0, -44 +54718801ns 961879 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54719086ns 961884 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54719483ns 961891 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54719654ns 961894 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54720109ns 961902 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54720279ns 961905 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54720563ns 961910 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54720847ns 961915 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54721132ns 961920 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54721586ns 961928 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54721757ns 961931 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54722041ns 961936 1a110850 fd5ff06f jal x0, -44 +54722325ns 961941 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54722609ns 961946 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54723007ns 961953 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54723178ns 961956 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54723632ns 961964 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54723803ns 961967 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54724087ns 961972 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54724371ns 961977 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54724655ns 961982 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54725110ns 961990 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54725280ns 961993 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54725564ns 961998 1a110850 fd5ff06f jal x0, -44 +54725849ns 962003 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54726133ns 962008 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54726531ns 962015 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54726701ns 962018 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54727156ns 962026 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54727326ns 962029 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54727610ns 962034 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54727895ns 962039 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54728179ns 962044 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54728633ns 962052 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54728804ns 962055 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54729088ns 962060 1a110850 fd5ff06f jal x0, -44 +54729372ns 962065 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54729656ns 962070 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54730054ns 962077 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54730225ns 962080 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54730679ns 962088 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54730850ns 962091 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54731134ns 962096 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54731418ns 962101 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54731702ns 962106 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54732157ns 962114 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54732327ns 962117 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54732612ns 962122 1a110850 fd5ff06f jal x0, -44 +54732896ns 962127 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54733180ns 962132 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54733578ns 962139 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54733748ns 962142 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54734203ns 962150 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54734373ns 962153 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54734658ns 962158 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54734942ns 962163 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54735226ns 962168 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54735681ns 962176 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54735851ns 962179 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54736135ns 962184 1a110850 fd5ff06f jal x0, -44 +54736419ns 962189 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54736704ns 962194 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54737101ns 962201 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54737272ns 962204 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54737727ns 962212 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54737897ns 962215 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54738181ns 962220 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54738465ns 962225 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54738749ns 962230 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54739204ns 962238 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54739375ns 962241 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54739659ns 962246 1a110850 fd5ff06f jal x0, -44 +54739943ns 962251 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54740227ns 962256 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54740625ns 962263 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54740795ns 962266 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54741250ns 962274 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54741421ns 962277 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54741705ns 962282 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54741989ns 962287 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54742273ns 962292 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54742728ns 962300 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54742898ns 962303 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54743182ns 962308 1a110850 fd5ff06f jal x0, -44 +54743467ns 962313 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54743751ns 962318 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54744149ns 962325 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54744319ns 962328 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54744774ns 962336 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54744944ns 962339 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54745228ns 962344 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54745512ns 962349 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54745797ns 962354 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54746251ns 962362 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54746422ns 962365 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54746706ns 962370 1a110850 fd5ff06f jal x0, -44 +54746990ns 962375 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54747274ns 962380 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54747672ns 962387 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54747843ns 962390 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54748297ns 962398 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54748468ns 962401 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54748752ns 962406 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54749036ns 962411 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54749320ns 962416 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54749775ns 962424 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54749945ns 962427 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54750230ns 962432 1a110850 fd5ff06f jal x0, -44 +54750514ns 962437 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54750798ns 962442 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54751196ns 962449 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54751366ns 962452 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54751821ns 962460 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54751991ns 962463 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54752275ns 962468 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54752560ns 962473 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54752844ns 962478 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54753298ns 962486 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54753469ns 962489 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54753753ns 962494 1a110850 fd5ff06f jal x0, -44 +54754037ns 962499 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54754321ns 962504 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54754719ns 962511 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54754890ns 962514 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54755344ns 962522 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54755515ns 962525 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54755799ns 962530 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54756083ns 962535 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54756367ns 962540 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54756822ns 962548 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54756993ns 962551 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54757277ns 962556 1a110850 fd5ff06f jal x0, -44 +54757561ns 962561 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54757845ns 962566 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54758243ns 962573 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54758413ns 962576 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54758868ns 962584 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54759039ns 962587 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54759323ns 962592 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54759607ns 962597 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54759891ns 962602 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54760346ns 962610 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54760516ns 962613 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54760800ns 962618 1a110850 fd5ff06f jal x0, -44 +54761084ns 962623 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54761369ns 962628 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54761766ns 962635 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54761937ns 962638 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54762392ns 962646 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54762562ns 962649 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54762846ns 962654 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54763130ns 962659 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54763415ns 962664 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54763869ns 962672 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54764040ns 962675 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54764324ns 962680 1a110850 fd5ff06f jal x0, -44 +54764608ns 962685 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54764892ns 962690 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54765290ns 962697 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54765461ns 962700 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54765915ns 962708 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54766086ns 962711 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54766370ns 962716 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54766654ns 962721 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54766938ns 962726 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54767393ns 962734 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54767563ns 962737 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54767847ns 962742 1a110850 fd5ff06f jal x0, -44 +54768132ns 962747 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54768416ns 962752 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54768814ns 962759 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54768984ns 962762 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54769439ns 962770 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54769609ns 962773 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54769893ns 962778 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54770178ns 962783 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54770462ns 962788 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54770916ns 962796 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54771087ns 962799 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54771371ns 962804 1a110850 fd5ff06f jal x0, -44 +54771655ns 962809 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54771939ns 962814 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54772337ns 962821 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54772508ns 962824 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54772962ns 962832 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54773133ns 962835 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54773417ns 962840 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54773701ns 962845 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54773985ns 962850 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54774440ns 962858 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54774610ns 962861 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54774895ns 962866 1a110850 fd5ff06f jal x0, -44 +54775179ns 962871 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54775463ns 962876 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54775861ns 962883 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54776031ns 962886 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54776486ns 962894 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54776656ns 962897 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54776941ns 962902 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54777225ns 962907 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54777509ns 962912 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54777964ns 962920 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54778134ns 962923 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54778418ns 962928 1a110850 fd5ff06f jal x0, -44 +54778702ns 962933 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54778987ns 962938 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54779384ns 962945 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54779555ns 962948 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54780010ns 962956 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54780180ns 962959 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54780464ns 962964 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54780748ns 962969 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54781032ns 962974 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54781487ns 962982 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54781658ns 962985 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54781942ns 962990 1a110850 fd5ff06f jal x0, -44 +54782226ns 962995 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54782510ns 963000 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54782908ns 963007 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54783078ns 963010 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54783533ns 963018 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54783704ns 963021 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54783988ns 963026 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54784272ns 963031 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54784556ns 963036 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54785011ns 963044 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54785181ns 963047 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54785465ns 963052 1a110850 fd5ff06f jal x0, -44 +54785750ns 963057 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54786034ns 963062 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54786432ns 963069 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54786602ns 963072 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54787057ns 963080 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54787227ns 963083 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54787511ns 963088 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54787795ns 963093 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54788080ns 963098 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54788534ns 963106 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54788705ns 963109 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54788989ns 963114 1a110850 fd5ff06f jal x0, -44 +54789273ns 963119 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54789557ns 963124 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54789955ns 963131 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54790126ns 963134 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54790580ns 963142 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54790751ns 963145 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54791035ns 963150 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54791319ns 963155 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54791603ns 963160 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54792058ns 963168 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54792228ns 963171 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54792513ns 963176 1a110850 fd5ff06f jal x0, -44 +54792797ns 963181 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54793081ns 963186 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54793479ns 963193 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54793649ns 963196 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54794104ns 963204 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54794274ns 963207 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54794559ns 963212 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54794843ns 963217 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54795127ns 963222 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54795581ns 963230 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54795752ns 963233 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54796036ns 963238 1a110850 fd5ff06f jal x0, -44 +54796320ns 963243 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54796604ns 963248 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54797002ns 963255 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54797173ns 963258 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54797627ns 963266 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54797798ns 963269 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54798082ns 963274 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54798366ns 963279 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54798650ns 963284 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54799105ns 963292 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54799276ns 963295 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54799560ns 963300 1a110850 fd5ff06f jal x0, -44 +54799844ns 963305 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54800128ns 963310 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54800526ns 963317 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54800696ns 963320 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54801151ns 963328 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54801322ns 963331 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54801606ns 963336 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54801890ns 963341 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54802174ns 963346 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54802629ns 963354 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54802799ns 963357 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54803083ns 963362 1a110850 fd5ff06f jal x0, -44 +54803367ns 963367 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54803652ns 963372 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54804049ns 963379 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54804220ns 963382 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54804675ns 963390 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54804845ns 963393 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54805129ns 963398 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54805413ns 963403 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54805698ns 963408 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54806152ns 963416 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54806323ns 963419 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54806607ns 963424 1a110850 fd5ff06f jal x0, -44 +54806891ns 963429 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54807175ns 963434 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54807573ns 963441 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54807744ns 963444 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54808198ns 963452 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54808369ns 963455 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54808653ns 963460 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54808937ns 963465 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54809221ns 963470 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54809676ns 963478 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54809846ns 963481 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54810130ns 963486 1a110850 fd5ff06f jal x0, -44 +54810415ns 963491 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54810699ns 963496 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54811097ns 963503 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54811267ns 963506 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54811722ns 963514 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54811892ns 963517 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54812176ns 963522 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54812461ns 963527 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54812745ns 963532 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54813199ns 963540 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54813370ns 963543 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54813654ns 963548 1a110850 fd5ff06f jal x0, -44 +54813938ns 963553 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54814222ns 963558 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54814620ns 963565 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54814791ns 963568 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54815245ns 963576 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54815416ns 963579 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54815700ns 963584 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54815984ns 963589 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54816268ns 963594 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54816723ns 963602 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54816893ns 963605 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54817178ns 963610 1a110850 fd5ff06f jal x0, -44 +54817462ns 963615 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54817746ns 963620 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54818144ns 963627 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54818314ns 963630 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54818769ns 963638 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54818939ns 963641 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54819224ns 963646 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54819508ns 963651 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54819792ns 963656 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54820247ns 963664 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54820417ns 963667 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54820701ns 963672 1a110850 fd5ff06f jal x0, -44 +54820985ns 963677 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54821270ns 963682 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54821667ns 963689 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54821838ns 963692 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54822293ns 963700 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54822463ns 963703 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54822747ns 963708 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54823031ns 963713 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54823315ns 963718 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54823770ns 963726 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54823941ns 963729 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54824225ns 963734 1a110850 fd5ff06f jal x0, -44 +54824509ns 963739 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54824793ns 963744 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54825191ns 963751 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54825361ns 963754 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54825816ns 963762 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54825987ns 963765 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54826271ns 963770 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54826555ns 963775 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54826839ns 963780 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54827294ns 963788 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54827464ns 963791 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54827748ns 963796 1a110850 fd5ff06f jal x0, -44 +54828033ns 963801 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54828317ns 963806 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54828715ns 963813 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54828885ns 963816 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54829340ns 963824 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54829510ns 963827 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54829794ns 963832 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54830079ns 963837 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54830363ns 963842 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54830817ns 963850 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54830988ns 963853 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54831272ns 963858 1a110850 fd5ff06f jal x0, -44 +54831556ns 963863 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54831840ns 963868 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54832238ns 963875 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54832409ns 963878 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54832863ns 963886 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54833034ns 963889 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54833318ns 963894 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54833602ns 963899 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54833886ns 963904 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54834341ns 963912 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54834511ns 963915 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54834796ns 963920 1a110850 fd5ff06f jal x0, -44 +54835080ns 963925 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54835364ns 963930 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54835762ns 963937 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54835932ns 963940 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54836387ns 963948 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54836557ns 963951 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54836842ns 963956 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54837126ns 963961 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54837410ns 963966 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54837864ns 963974 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54838035ns 963977 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54838319ns 963982 1a110850 fd5ff06f jal x0, -44 +54838603ns 963987 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54838887ns 963992 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54839285ns 963999 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54839456ns 964002 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54839910ns 964010 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54840081ns 964013 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54840365ns 964018 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54840649ns 964023 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54840933ns 964028 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54841388ns 964036 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54841559ns 964039 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54841843ns 964044 1a110850 fd5ff06f jal x0, -44 +54842127ns 964049 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54842411ns 964054 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54842809ns 964061 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54842979ns 964064 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54843434ns 964072 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54843605ns 964075 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54843889ns 964080 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54844173ns 964085 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54844457ns 964090 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54844912ns 964098 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54845082ns 964101 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54845366ns 964106 1a110850 fd5ff06f jal x0, -44 +54845650ns 964111 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54845935ns 964116 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54846332ns 964123 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54846503ns 964126 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54846958ns 964134 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54847128ns 964137 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54847412ns 964142 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54847696ns 964147 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54847981ns 964152 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54848435ns 964160 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54848606ns 964163 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54848890ns 964168 1a110850 fd5ff06f jal x0, -44 +54849174ns 964173 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54849458ns 964178 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54849856ns 964185 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54850027ns 964188 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54850481ns 964196 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54850652ns 964199 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54850936ns 964204 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54851220ns 964209 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54851504ns 964214 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54851959ns 964222 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54852129ns 964225 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54852413ns 964230 1a110850 fd5ff06f jal x0, -44 +54852698ns 964235 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54852982ns 964240 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54853380ns 964247 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54853550ns 964250 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54854005ns 964258 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54854175ns 964261 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54854459ns 964266 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54854744ns 964271 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54855028ns 964276 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54855482ns 964284 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54855653ns 964287 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54855937ns 964292 1a110850 fd5ff06f jal x0, -44 +54856221ns 964297 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54856505ns 964302 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54856903ns 964309 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54857074ns 964312 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54857528ns 964320 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54857699ns 964323 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54857983ns 964328 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54858267ns 964333 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54858551ns 964338 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54859006ns 964346 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54859176ns 964349 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54859461ns 964354 1a110850 fd5ff06f jal x0, -44 +54859745ns 964359 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54860029ns 964364 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54860427ns 964371 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54860597ns 964374 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54861052ns 964382 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54861222ns 964385 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54861507ns 964390 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54861791ns 964395 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54862075ns 964400 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54862530ns 964408 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54862700ns 964411 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54862984ns 964416 1a110850 fd5ff06f jal x0, -44 +54863268ns 964421 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54863553ns 964426 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54863950ns 964433 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54864121ns 964436 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54864576ns 964444 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54864746ns 964447 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54865030ns 964452 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54865314ns 964457 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54865599ns 964462 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54866053ns 964470 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54866224ns 964473 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54866508ns 964478 1a110850 fd5ff06f jal x0, -44 +54866792ns 964483 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54867076ns 964488 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54867474ns 964495 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54867644ns 964498 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54868099ns 964506 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54868270ns 964509 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54868554ns 964514 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54868838ns 964519 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54869122ns 964524 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54869577ns 964532 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54869747ns 964535 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54870031ns 964540 1a110850 fd5ff06f jal x0, -44 +54870316ns 964545 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54870600ns 964550 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54870998ns 964557 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54871168ns 964560 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54871623ns 964568 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54871793ns 964571 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54872077ns 964576 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54872362ns 964581 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54872646ns 964586 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54873100ns 964594 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54873271ns 964597 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54873555ns 964602 1a110850 fd5ff06f jal x0, -44 +54873839ns 964607 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54874123ns 964612 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54874521ns 964619 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54874692ns 964622 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54875146ns 964630 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54875317ns 964633 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54875601ns 964638 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54875885ns 964643 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54876169ns 964648 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54876624ns 964656 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54876794ns 964659 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54877079ns 964664 1a110850 fd5ff06f jal x0, -44 +54877363ns 964669 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54877647ns 964674 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54878045ns 964681 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54878215ns 964684 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54878670ns 964692 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54878840ns 964695 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54879125ns 964700 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54879409ns 964705 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54879693ns 964710 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54880147ns 964718 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54880318ns 964721 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54880602ns 964726 1a110850 fd5ff06f jal x0, -44 +54880886ns 964731 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54881170ns 964736 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54881568ns 964743 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54881739ns 964746 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54882193ns 964754 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54882364ns 964757 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54882648ns 964762 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54882932ns 964767 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54883216ns 964772 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54883671ns 964780 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54883842ns 964783 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54884126ns 964788 1a110850 fd5ff06f jal x0, -44 +54884410ns 964793 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54884694ns 964798 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54885092ns 964805 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54885262ns 964808 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54885717ns 964816 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54885888ns 964819 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54886172ns 964824 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54886456ns 964829 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54886740ns 964834 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54887195ns 964842 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54887365ns 964845 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54887649ns 964850 1a110850 fd5ff06f jal x0, -44 +54887933ns 964855 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54888218ns 964860 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54888615ns 964867 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54888786ns 964870 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54889241ns 964878 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54889411ns 964881 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54889695ns 964886 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54889979ns 964891 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54890264ns 964896 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54890718ns 964904 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54890889ns 964907 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54891173ns 964912 1a110850 fd5ff06f jal x0, -44 +54891457ns 964917 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54891741ns 964922 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54892139ns 964929 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54892310ns 964932 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54892764ns 964940 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54892935ns 964943 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54893219ns 964948 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54893503ns 964953 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54893787ns 964958 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54894242ns 964966 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54894412ns 964969 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54894696ns 964974 1a110850 fd5ff06f jal x0, -44 +54894981ns 964979 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54895265ns 964984 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54895663ns 964991 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54895833ns 964994 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54896288ns 965002 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54896458ns 965005 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54896742ns 965010 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54897027ns 965015 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54897311ns 965020 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54897765ns 965028 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54897936ns 965031 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54898220ns 965036 1a110850 fd5ff06f jal x0, -44 +54898504ns 965041 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54898788ns 965046 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54899186ns 965053 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54899357ns 965056 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54899811ns 965064 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54899982ns 965067 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54900266ns 965072 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54900550ns 965077 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54900834ns 965082 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54901289ns 965090 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54901459ns 965093 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54901744ns 965098 1a110850 fd5ff06f jal x0, -44 +54902028ns 965103 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54902312ns 965108 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54902710ns 965115 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54902880ns 965118 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54903335ns 965126 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54903505ns 965129 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54903790ns 965134 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54904074ns 965139 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54904358ns 965144 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54904813ns 965152 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54904983ns 965155 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54905267ns 965160 1a110850 fd5ff06f jal x0, -44 +54905551ns 965165 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54905836ns 965170 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54906233ns 965177 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54906404ns 965180 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54906859ns 965188 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54907029ns 965191 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54907313ns 965196 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54907597ns 965201 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54907882ns 965206 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54908336ns 965214 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54908507ns 965217 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54908791ns 965222 1a110850 fd5ff06f jal x0, -44 +54909075ns 965227 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54909359ns 965232 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54909757ns 965239 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54909927ns 965242 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54910382ns 965250 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54910553ns 965253 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54910837ns 965258 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54911121ns 965263 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54911405ns 965268 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54911860ns 965276 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54912030ns 965279 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54912314ns 965284 1a110850 fd5ff06f jal x0, -44 +54912599ns 965289 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54912883ns 965294 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54913281ns 965301 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54913451ns 965304 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54913906ns 965312 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54914076ns 965315 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54914360ns 965320 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54914645ns 965325 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54914929ns 965330 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54915383ns 965338 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54915554ns 965341 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54915838ns 965346 1a110850 fd5ff06f jal x0, -44 +54916122ns 965351 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54916406ns 965356 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54916804ns 965363 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54916975ns 965366 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54917429ns 965374 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54917600ns 965377 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54917884ns 965382 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54918168ns 965387 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54918452ns 965392 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54918907ns 965400 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54919077ns 965403 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54919362ns 965408 1a110850 fd5ff06f jal x0, -44 +54919646ns 965413 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54919930ns 965418 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54920328ns 965425 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54920498ns 965428 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54920953ns 965436 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54921123ns 965439 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54921408ns 965444 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54921692ns 965449 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54921976ns 965454 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54922431ns 965462 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54922601ns 965465 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54922885ns 965470 1a110850 fd5ff06f jal x0, -44 +54923169ns 965475 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54923453ns 965480 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54923851ns 965487 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54924022ns 965490 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54924476ns 965498 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54924647ns 965501 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54924931ns 965506 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54925215ns 965511 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54925499ns 965516 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54925954ns 965524 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54926125ns 965527 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54926409ns 965532 1a110850 fd5ff06f jal x0, -44 +54926693ns 965537 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54926977ns 965542 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54927375ns 965549 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54927545ns 965552 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54928000ns 965560 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54928171ns 965563 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54928455ns 965568 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54928739ns 965573 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54929023ns 965578 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54929478ns 965586 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54929648ns 965589 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54929932ns 965594 1a110850 fd5ff06f jal x0, -44 +54930216ns 965599 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54930501ns 965604 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54930898ns 965611 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54931069ns 965614 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54931524ns 965622 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54931694ns 965625 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54931978ns 965630 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54932262ns 965635 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54932547ns 965640 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54933001ns 965648 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54933172ns 965651 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54933456ns 965656 1a110850 fd5ff06f jal x0, -44 +54933740ns 965661 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54934024ns 965666 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54934422ns 965673 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54934593ns 965676 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54935047ns 965684 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54935218ns 965687 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54935502ns 965692 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54935786ns 965697 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54936070ns 965702 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54936525ns 965710 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54936695ns 965713 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54936979ns 965718 1a110850 fd5ff06f jal x0, -44 +54937264ns 965723 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54937548ns 965728 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54937946ns 965735 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54938116ns 965738 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54938571ns 965746 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54938741ns 965749 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54939025ns 965754 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54939310ns 965759 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54939594ns 965764 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54940048ns 965772 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54940219ns 965775 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54940503ns 965780 1a110850 fd5ff06f jal x0, -44 +54940787ns 965785 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54941071ns 965790 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54941469ns 965797 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54941640ns 965800 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54942094ns 965808 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54942265ns 965811 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54942549ns 965816 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54942833ns 965821 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54943117ns 965826 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54943572ns 965834 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54943743ns 965837 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54944027ns 965842 1a110850 fd5ff06f jal x0, -44 +54944311ns 965847 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54944595ns 965852 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54944993ns 965859 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54945163ns 965862 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54945618ns 965870 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54945788ns 965873 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54946073ns 965878 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54946357ns 965883 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54946641ns 965888 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54947096ns 965896 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54947266ns 965899 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54947550ns 965904 1a110850 fd5ff06f jal x0, -44 +54947834ns 965909 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54948119ns 965914 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54948516ns 965921 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54948687ns 965924 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54949142ns 965932 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54949312ns 965935 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54949596ns 965940 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54949880ns 965945 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54950165ns 965950 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54950619ns 965958 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54950790ns 965961 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54951074ns 965966 1a110850 fd5ff06f jal x0, -44 +54951358ns 965971 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54951642ns 965976 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54952040ns 965983 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54952210ns 965986 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54952665ns 965994 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54952836ns 965997 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54953120ns 966002 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54953404ns 966007 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54953688ns 966012 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54954143ns 966020 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54954313ns 966023 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54954597ns 966028 1a110850 fd5ff06f jal x0, -44 +54954882ns 966033 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54955166ns 966038 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54955564ns 966045 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54955734ns 966048 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54956189ns 966056 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54956359ns 966059 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54956643ns 966064 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54956928ns 966069 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54957212ns 966074 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54957666ns 966082 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54957837ns 966085 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54958121ns 966090 1a110850 fd5ff06f jal x0, -44 +54958405ns 966095 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54958689ns 966100 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54959087ns 966107 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54959258ns 966110 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54959712ns 966118 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54959883ns 966121 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54960167ns 966126 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54960451ns 966131 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54960735ns 966136 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54961190ns 966144 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54961360ns 966147 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54961645ns 966152 1a110850 fd5ff06f jal x0, -44 +54961929ns 966157 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54962213ns 966162 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54962611ns 966169 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54962781ns 966172 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54963236ns 966180 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54963406ns 966183 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54963691ns 966188 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54963975ns 966193 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54964259ns 966198 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54964714ns 966206 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54964884ns 966209 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54965168ns 966214 1a110850 fd5ff06f jal x0, -44 +54965452ns 966219 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54965736ns 966224 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54966134ns 966231 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54966305ns 966234 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54966759ns 966242 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54966930ns 966245 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54967214ns 966250 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54967498ns 966255 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54967782ns 966260 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54968237ns 966268 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54968408ns 966271 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54968692ns 966276 1a110850 fd5ff06f jal x0, -44 +54968976ns 966281 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54969260ns 966286 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54969658ns 966293 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54969828ns 966296 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54970283ns 966304 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54970454ns 966307 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54970738ns 966312 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54971022ns 966317 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54971306ns 966322 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54971761ns 966330 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54971931ns 966333 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54972215ns 966338 1a110850 fd5ff06f jal x0, -44 +54972499ns 966343 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54972784ns 966348 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54973181ns 966355 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54973352ns 966358 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54973807ns 966366 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54973977ns 966369 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54974261ns 966374 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54974545ns 966379 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54974830ns 966384 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54975284ns 966392 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54975455ns 966395 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54975739ns 966400 1a110850 fd5ff06f jal x0, -44 +54976023ns 966405 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54976307ns 966410 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54976705ns 966417 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54976876ns 966420 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54977330ns 966428 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54977501ns 966431 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54977785ns 966436 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54978069ns 966441 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54978353ns 966446 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54978808ns 966454 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54978978ns 966457 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54979263ns 966462 1a110850 fd5ff06f jal x0, -44 +54979547ns 966467 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54979831ns 966472 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54980229ns 966479 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54980399ns 966482 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54980854ns 966490 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54981024ns 966493 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54981308ns 966498 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54981593ns 966503 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54981877ns 966508 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54982331ns 966516 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54982502ns 966519 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54982786ns 966524 1a110850 fd5ff06f jal x0, -44 +54983070ns 966529 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54983354ns 966534 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54983752ns 966541 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54983923ns 966544 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54984377ns 966552 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54984548ns 966555 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54984832ns 966560 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54985116ns 966565 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54985400ns 966570 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54985855ns 966578 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54986026ns 966581 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54986310ns 966586 1a110850 fd5ff06f jal x0, -44 +54986594ns 966591 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54986878ns 966596 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54987276ns 966603 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54987446ns 966606 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54987901ns 966614 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54988071ns 966617 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54988356ns 966622 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54988640ns 966627 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54988924ns 966632 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54989379ns 966640 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54989549ns 966643 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54989833ns 966648 1a110850 fd5ff06f jal x0, -44 +54990117ns 966653 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54990402ns 966658 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54990799ns 966665 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54990970ns 966668 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54991425ns 966676 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54991595ns 966679 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54991879ns 966684 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54992163ns 966689 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54992448ns 966694 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54992902ns 966702 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54993073ns 966705 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54993357ns 966710 1a110850 fd5ff06f jal x0, -44 +54993641ns 966715 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54993925ns 966720 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54994323ns 966727 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54994493ns 966730 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54994948ns 966738 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54995119ns 966741 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54995403ns 966746 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54995687ns 966751 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54995971ns 966756 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54996426ns 966764 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +54996596ns 966767 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +54996880ns 966772 1a110850 fd5ff06f jal x0, -44 +54997165ns 966777 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54997449ns 966782 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +54997847ns 966789 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54998017ns 966792 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54998472ns 966800 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +54998642ns 966803 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +54998926ns 966808 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +54999211ns 966813 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +54999495ns 966818 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +54999949ns 966826 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55000120ns 966829 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55000404ns 966834 1a110850 fd5ff06f jal x0, -44 +55000688ns 966839 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55000972ns 966844 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55001370ns 966851 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55001541ns 966854 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55001995ns 966862 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55002166ns 966865 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55002450ns 966870 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55002734ns 966875 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55003018ns 966880 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55003473ns 966888 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55003643ns 966891 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55003928ns 966896 1a110850 fd5ff06f jal x0, -44 +55004212ns 966901 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55004496ns 966906 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55004894ns 966913 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55005064ns 966916 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55005519ns 966924 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55005689ns 966927 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55005974ns 966932 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55006258ns 966937 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55006542ns 966942 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55006997ns 966950 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55007167ns 966953 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55007451ns 966958 1a110850 fd5ff06f jal x0, -44 +55007735ns 966963 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55008019ns 966968 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55008417ns 966975 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55008588ns 966978 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55009042ns 966986 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55009213ns 966989 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55009497ns 966994 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55009781ns 966999 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55010065ns 967004 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55010520ns 967012 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55010691ns 967015 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55010975ns 967020 1a110850 fd5ff06f jal x0, -44 +55011259ns 967025 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55011543ns 967030 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55011941ns 967037 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55012111ns 967040 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55012566ns 967048 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55012737ns 967051 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55013021ns 967056 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55013305ns 967061 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55013589ns 967066 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55014044ns 967074 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55014214ns 967077 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55014498ns 967082 1a110850 fd5ff06f jal x0, -44 +55014783ns 967087 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55015067ns 967092 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55015464ns 967099 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55015635ns 967102 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55016090ns 967110 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55016260ns 967113 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55016544ns 967118 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55016828ns 967123 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55017113ns 967128 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55017567ns 967136 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55017738ns 967139 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55018022ns 967144 1a110850 fd5ff06f jal x0, -44 +55018306ns 967149 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55018590ns 967154 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55018988ns 967161 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55019159ns 967164 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55019613ns 967172 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55019784ns 967175 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55020068ns 967180 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55020352ns 967185 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55020636ns 967190 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55021091ns 967198 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55021261ns 967201 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55021546ns 967206 1a110850 fd5ff06f jal x0, -44 +55021830ns 967211 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55022114ns 967216 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55022512ns 967223 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55022682ns 967226 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55023137ns 967234 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55023307ns 967237 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55023591ns 967242 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55023876ns 967247 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55024160ns 967252 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55024614ns 967260 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55024785ns 967263 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55025069ns 967268 1a110850 fd5ff06f jal x0, -44 +55025353ns 967273 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55025637ns 967278 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55026035ns 967285 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55026206ns 967288 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55026660ns 967296 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55026831ns 967299 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55027115ns 967304 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55027399ns 967309 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55027683ns 967314 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55028138ns 967322 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55028309ns 967325 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55028593ns 967330 1a110850 fd5ff06f jal x0, -44 +55028877ns 967335 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55029161ns 967340 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55029559ns 967347 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55029729ns 967350 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55030184ns 967358 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55030354ns 967361 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55030639ns 967366 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55030923ns 967371 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55031207ns 967376 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55031662ns 967384 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55031832ns 967387 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55032116ns 967392 1a110850 fd5ff06f jal x0, -44 +55032400ns 967397 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55032685ns 967402 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55033082ns 967409 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55033253ns 967412 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55033708ns 967420 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55033878ns 967423 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55034162ns 967428 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55034446ns 967433 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55034731ns 967438 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55035185ns 967446 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55035356ns 967449 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55035640ns 967454 1a110850 fd5ff06f jal x0, -44 +55035924ns 967459 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55036208ns 967464 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55036606ns 967471 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55036776ns 967474 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55037231ns 967482 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55037402ns 967485 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55037686ns 967490 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55037970ns 967495 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55038254ns 967500 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55038709ns 967508 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55038879ns 967511 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55039163ns 967516 1a110850 fd5ff06f jal x0, -44 +55039448ns 967521 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55039732ns 967526 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55040130ns 967533 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55040300ns 967536 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55040755ns 967544 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55040925ns 967547 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55041209ns 967552 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55041494ns 967557 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55041778ns 967562 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55042232ns 967570 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55042403ns 967573 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55042687ns 967578 1a110850 fd5ff06f jal x0, -44 +55042971ns 967583 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55043255ns 967588 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55043653ns 967595 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55043824ns 967598 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55044278ns 967606 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55044449ns 967609 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55044733ns 967614 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55045017ns 967619 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55045301ns 967624 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55045756ns 967632 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55045926ns 967635 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55046211ns 967640 1a110850 fd5ff06f jal x0, -44 +55046495ns 967645 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55046779ns 967650 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55047177ns 967657 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55047347ns 967660 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55047802ns 967668 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55047972ns 967671 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55048257ns 967676 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55048541ns 967681 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55048825ns 967686 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55049280ns 967694 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55049450ns 967697 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55049734ns 967702 1a110850 fd5ff06f jal x0, -44 +55050018ns 967707 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55050303ns 967712 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55050700ns 967719 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55050871ns 967722 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55051325ns 967730 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55051496ns 967733 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55051780ns 967738 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55052064ns 967743 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55052348ns 967748 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55052803ns 967756 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55052974ns 967759 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55053258ns 967764 1a110850 fd5ff06f jal x0, -44 +55053542ns 967769 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55053826ns 967774 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55054224ns 967781 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55054394ns 967784 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55054849ns 967792 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55055020ns 967795 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55055304ns 967800 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55055588ns 967805 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55055872ns 967810 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55056327ns 967818 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55056497ns 967821 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55056781ns 967826 1a110850 fd5ff06f jal x0, -44 +55057066ns 967831 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55057350ns 967836 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55057747ns 967843 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55057918ns 967846 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55058373ns 967854 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55058543ns 967857 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55058827ns 967862 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55059111ns 967867 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55059396ns 967872 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55059850ns 967880 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55060021ns 967883 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55060305ns 967888 1a110850 fd5ff06f jal x0, -44 +55060589ns 967893 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55060873ns 967898 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55061271ns 967905 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55061442ns 967908 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55061896ns 967916 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55062067ns 967919 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55062351ns 967924 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55062635ns 967929 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55062919ns 967934 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55063374ns 967942 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55063544ns 967945 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55063829ns 967950 1a110850 fd5ff06f jal x0, -44 +55064113ns 967955 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55064397ns 967960 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55064795ns 967967 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55064965ns 967970 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55065420ns 967978 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55065590ns 967981 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55065874ns 967986 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55066159ns 967991 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55066443ns 967996 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55066897ns 968004 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55067068ns 968007 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55067352ns 968012 1a110850 fd5ff06f jal x0, -44 +55067636ns 968017 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55067920ns 968022 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55068318ns 968029 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55068489ns 968032 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55068943ns 968040 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55069114ns 968043 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55069398ns 968048 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55069682ns 968053 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55069966ns 968058 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55070421ns 968066 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55070592ns 968069 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55070876ns 968074 1a110850 fd5ff06f jal x0, -44 +55071160ns 968079 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55071444ns 968084 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55071842ns 968091 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55072012ns 968094 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55072467ns 968102 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55072637ns 968105 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55072922ns 968110 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55073206ns 968115 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55073490ns 968120 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55073945ns 968128 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55074115ns 968131 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55074399ns 968136 1a110850 fd5ff06f jal x0, -44 +55074683ns 968141 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55074968ns 968146 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55075365ns 968153 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55075536ns 968156 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55075991ns 968164 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55076161ns 968167 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55076445ns 968172 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55076729ns 968177 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55077014ns 968182 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55077468ns 968190 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55077639ns 968193 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55077923ns 968198 1a110850 fd5ff06f jal x0, -44 +55078207ns 968203 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55078491ns 968208 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55078889ns 968215 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55079059ns 968218 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55079514ns 968226 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55079685ns 968229 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55079969ns 968234 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55080253ns 968239 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55080537ns 968244 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55080992ns 968252 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55081162ns 968255 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55081446ns 968260 1a110850 fd5ff06f jal x0, -44 +55081731ns 968265 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55082015ns 968270 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55082413ns 968277 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55082583ns 968280 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55083038ns 968288 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55083208ns 968291 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55083492ns 968296 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55083777ns 968301 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55084061ns 968306 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55084515ns 968314 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55084686ns 968317 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55084970ns 968322 1a110850 fd5ff06f jal x0, -44 +55085254ns 968327 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55085538ns 968332 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55085936ns 968339 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55086107ns 968342 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55086561ns 968350 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55086732ns 968353 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55087016ns 968358 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55087300ns 968363 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55087584ns 968368 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55088039ns 968376 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55088209ns 968379 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55088494ns 968384 1a110850 fd5ff06f jal x0, -44 +55088778ns 968389 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55089062ns 968394 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55089460ns 968401 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55089630ns 968404 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55090085ns 968412 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55090255ns 968415 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55090540ns 968420 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55090824ns 968425 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55091108ns 968430 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55091563ns 968438 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55091733ns 968441 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55092017ns 968446 1a110850 fd5ff06f jal x0, -44 +55092301ns 968451 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55092586ns 968456 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55092983ns 968463 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55093154ns 968466 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55093608ns 968474 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55093779ns 968477 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55094063ns 968482 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55094347ns 968487 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55094631ns 968492 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55095086ns 968500 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55095257ns 968503 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55095541ns 968508 1a110850 fd5ff06f jal x0, -44 +55095825ns 968513 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55096109ns 968518 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55096507ns 968525 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55096677ns 968528 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55097132ns 968536 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55097303ns 968539 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55097587ns 968544 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55097871ns 968549 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55098155ns 968554 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55098610ns 968562 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55098780ns 968565 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55099064ns 968570 1a110850 fd5ff06f jal x0, -44 +55099349ns 968575 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55099633ns 968580 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55100031ns 968587 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55100201ns 968590 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55100656ns 968598 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55100826ns 968601 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55101110ns 968606 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55101394ns 968611 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55101679ns 968616 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55102133ns 968624 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55102304ns 968627 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55102588ns 968632 1a110850 fd5ff06f jal x0, -44 +55102872ns 968637 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55103156ns 968642 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55103554ns 968649 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55103725ns 968652 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55104179ns 968660 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55104350ns 968663 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55104634ns 968668 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55104918ns 968673 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55105202ns 968678 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55105657ns 968686 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55105827ns 968689 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55106112ns 968694 1a110850 fd5ff06f jal x0, -44 +55106396ns 968699 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55106680ns 968704 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55107078ns 968711 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55107248ns 968714 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55107703ns 968722 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55107873ns 968725 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55108157ns 968730 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55108442ns 968735 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55108726ns 968740 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55109180ns 968748 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55109351ns 968751 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55109635ns 968756 1a110850 fd5ff06f jal x0, -44 +55109919ns 968761 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55110203ns 968766 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55110601ns 968773 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55110772ns 968776 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55111226ns 968784 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55111397ns 968787 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55111681ns 968792 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55111965ns 968797 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55112249ns 968802 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55112704ns 968810 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55112875ns 968813 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55113159ns 968818 1a110850 fd5ff06f jal x0, -44 +55113443ns 968823 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55113727ns 968828 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55114125ns 968835 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55114295ns 968838 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55114750ns 968846 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55114920ns 968849 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55115205ns 968854 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55115489ns 968859 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55115773ns 968864 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55116228ns 968872 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55116398ns 968875 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55116682ns 968880 1a110850 fd5ff06f jal x0, -44 +55116966ns 968885 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55117251ns 968890 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55117648ns 968897 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55117819ns 968900 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55118274ns 968908 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55118444ns 968911 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55118728ns 968916 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55119012ns 968921 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55119297ns 968926 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55119751ns 968934 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55119922ns 968937 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55120206ns 968942 1a110850 fd5ff06f jal x0, -44 +55120490ns 968947 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55120774ns 968952 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55121172ns 968959 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55121343ns 968962 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55121797ns 968970 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55121968ns 968973 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55122252ns 968978 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55122536ns 968983 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55122820ns 968988 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55123275ns 968996 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55123445ns 968999 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55123729ns 969004 1a110850 fd5ff06f jal x0, -44 +55124014ns 969009 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55124298ns 969014 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55124696ns 969021 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55124866ns 969024 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55125321ns 969032 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55125491ns 969035 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55125775ns 969040 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55126060ns 969045 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55126344ns 969050 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55126798ns 969058 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55126969ns 969061 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55127253ns 969066 1a110850 fd5ff06f jal x0, -44 +55127537ns 969071 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55127821ns 969076 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55128219ns 969083 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55128390ns 969086 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55128844ns 969094 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55129015ns 969097 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55129299ns 969102 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55129583ns 969107 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55129867ns 969112 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55130322ns 969120 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55130492ns 969123 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55130777ns 969128 1a110850 fd5ff06f jal x0, -44 +55131061ns 969133 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55131345ns 969138 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55131743ns 969145 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55131913ns 969148 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55132368ns 969156 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55132538ns 969159 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55132823ns 969164 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55133107ns 969169 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55133391ns 969174 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55133846ns 969182 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55134016ns 969185 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55134300ns 969190 1a110850 fd5ff06f jal x0, -44 +55134584ns 969195 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55134869ns 969200 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55135266ns 969207 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55135437ns 969210 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55135891ns 969218 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55136062ns 969221 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55136346ns 969226 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55136630ns 969231 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55136914ns 969236 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55137369ns 969244 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55137540ns 969247 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55137824ns 969252 1a110850 fd5ff06f jal x0, -44 +55138108ns 969257 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55138392ns 969262 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55138790ns 969269 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55138960ns 969272 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55139415ns 969280 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55139586ns 969283 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55139870ns 969288 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55140154ns 969293 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55140438ns 969298 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55140893ns 969306 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55141063ns 969309 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55141347ns 969314 1a110850 fd5ff06f jal x0, -44 +55141632ns 969319 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55141916ns 969324 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55142314ns 969331 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55142484ns 969334 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55142939ns 969342 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55143109ns 969345 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55143393ns 969350 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55143677ns 969355 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55143962ns 969360 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55144416ns 969368 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55144587ns 969371 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55144871ns 969376 1a110850 fd5ff06f jal x0, -44 +55145155ns 969381 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55145439ns 969386 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55145837ns 969393 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55146008ns 969396 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55146462ns 969404 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55146633ns 969407 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55146917ns 969412 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55147201ns 969417 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55147485ns 969422 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55147940ns 969430 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55148110ns 969433 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55148395ns 969438 1a110850 fd5ff06f jal x0, -44 +55148679ns 969443 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55148963ns 969448 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55149361ns 969455 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55149531ns 969458 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55149986ns 969466 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55150156ns 969469 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55150440ns 969474 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55150725ns 969479 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55151009ns 969484 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55151463ns 969492 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55151634ns 969495 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55151918ns 969500 1a110850 fd5ff06f jal x0, -44 +55152202ns 969505 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55152486ns 969510 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55152884ns 969517 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55153055ns 969520 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55153509ns 969528 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55153680ns 969531 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55153964ns 969536 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55154248ns 969541 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55154532ns 969546 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55154987ns 969554 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55155158ns 969557 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55155442ns 969562 1a110850 fd5ff06f jal x0, -44 +55155726ns 969567 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55156010ns 969572 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55156408ns 969579 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55156578ns 969582 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55157033ns 969590 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55157203ns 969593 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55157488ns 969598 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55157772ns 969603 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55158056ns 969608 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55158511ns 969616 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55158681ns 969619 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55158965ns 969624 1a110850 fd5ff06f jal x0, -44 +55159249ns 969629 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55159534ns 969634 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55159931ns 969641 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55160102ns 969644 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55160557ns 969652 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55160727ns 969655 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55161011ns 969660 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55161295ns 969665 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55161580ns 969670 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55162034ns 969678 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55162205ns 969681 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55162489ns 969686 1a110850 fd5ff06f jal x0, -44 +55162773ns 969691 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55163057ns 969696 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55163455ns 969703 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55163626ns 969706 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55164080ns 969714 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55164251ns 969717 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55164535ns 969722 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55164819ns 969727 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55165103ns 969732 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55165558ns 969740 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55165728ns 969743 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55166012ns 969748 1a110850 fd5ff06f jal x0, -44 +55166297ns 969753 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55166581ns 969758 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55166979ns 969765 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55167149ns 969768 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55167604ns 969776 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55167774ns 969779 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55168058ns 969784 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55168343ns 969789 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55168627ns 969794 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55169081ns 969802 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55169252ns 969805 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55169536ns 969810 1a110850 fd5ff06f jal x0, -44 +55169820ns 969815 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55170104ns 969820 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55170502ns 969827 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55170673ns 969830 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55171127ns 969838 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55171298ns 969841 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55171582ns 969846 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55171866ns 969851 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55172150ns 969856 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55172605ns 969864 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55172775ns 969867 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55173060ns 969872 1a110850 fd5ff06f jal x0, -44 +55173344ns 969877 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55173628ns 969882 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55174026ns 969889 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55174196ns 969892 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55174651ns 969900 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55174821ns 969903 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55175106ns 969908 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55175390ns 969913 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55175674ns 969918 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55176129ns 969926 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55176299ns 969929 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55176583ns 969934 1a110850 fd5ff06f jal x0, -44 +55176867ns 969939 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55177152ns 969944 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55177549ns 969951 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55177720ns 969954 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55178175ns 969962 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55178345ns 969965 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55178629ns 969970 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55178913ns 969975 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55179197ns 969980 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55179652ns 969988 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55179823ns 969991 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55180107ns 969996 1a110850 fd5ff06f jal x0, -44 +55180391ns 970001 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55180675ns 970006 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55181073ns 970013 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55181243ns 970016 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55181698ns 970024 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55181869ns 970027 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55182153ns 970032 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55182437ns 970037 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55182721ns 970042 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55183176ns 970050 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55183346ns 970053 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55183630ns 970058 1a110850 fd5ff06f jal x0, -44 +55183915ns 970063 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55184199ns 970068 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55184597ns 970075 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55184767ns 970078 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55185222ns 970086 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55185392ns 970089 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55185676ns 970094 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55185960ns 970099 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55186245ns 970104 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55186699ns 970112 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55186870ns 970115 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55187154ns 970120 1a110850 fd5ff06f jal x0, -44 +55187438ns 970125 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55187722ns 970130 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55188120ns 970137 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55188291ns 970140 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55188745ns 970148 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55188916ns 970151 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55189200ns 970156 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55189484ns 970161 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55189768ns 970166 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55190223ns 970174 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55190393ns 970177 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55190678ns 970182 1a110850 fd5ff06f jal x0, -44 +55190962ns 970187 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55191246ns 970192 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55191644ns 970199 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55191814ns 970202 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55192269ns 970210 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55192439ns 970213 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55192723ns 970218 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55193008ns 970223 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55193292ns 970228 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55193746ns 970236 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55193917ns 970239 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55194201ns 970244 1a110850 fd5ff06f jal x0, -44 +55194485ns 970249 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55194769ns 970254 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55195167ns 970261 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55195338ns 970264 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55195792ns 970272 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55195963ns 970275 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55196247ns 970280 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55196531ns 970285 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55196815ns 970290 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55197270ns 970298 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55197441ns 970301 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55197725ns 970306 1a110850 fd5ff06f jal x0, -44 +55198009ns 970311 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55198293ns 970316 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55198691ns 970323 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55198861ns 970326 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55199316ns 970334 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55199487ns 970337 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55199771ns 970342 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55200055ns 970347 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55200339ns 970352 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55200794ns 970360 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55200964ns 970363 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55201248ns 970368 1a110850 fd5ff06f jal x0, -44 +55201532ns 970373 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55201817ns 970378 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55202214ns 970385 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55202385ns 970388 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55202840ns 970396 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55203010ns 970399 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55203294ns 970404 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55203578ns 970409 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55203863ns 970414 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55204317ns 970422 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55204488ns 970425 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55204772ns 970430 1a110850 fd5ff06f jal x0, -44 +55205056ns 970435 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55205340ns 970440 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55205738ns 970447 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55205909ns 970450 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55206363ns 970458 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55206534ns 970461 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55206818ns 970466 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55207102ns 970471 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55207386ns 970476 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55207841ns 970484 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55208011ns 970487 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55208295ns 970492 1a110850 fd5ff06f jal x0, -44 +55208580ns 970497 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55208864ns 970502 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55209262ns 970509 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55209432ns 970512 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55209887ns 970520 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55210057ns 970523 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55210341ns 970528 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55210626ns 970533 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55210910ns 970538 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55211364ns 970546 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55211535ns 970549 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55211819ns 970554 1a110850 fd5ff06f jal x0, -44 +55212103ns 970559 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55212387ns 970564 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55212785ns 970571 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55212956ns 970574 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55213410ns 970582 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55213581ns 970585 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55213865ns 970590 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55214149ns 970595 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55214433ns 970600 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55214888ns 970608 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55215058ns 970611 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55215343ns 970616 1a110850 fd5ff06f jal x0, -44 +55215627ns 970621 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55215911ns 970626 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55216309ns 970633 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55216479ns 970636 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55216934ns 970644 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55217104ns 970647 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55217389ns 970652 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55217673ns 970657 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55217957ns 970662 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55218412ns 970670 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55218582ns 970673 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55218866ns 970678 1a110850 fd5ff06f jal x0, -44 +55219150ns 970683 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55219435ns 970688 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55219832ns 970695 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55220003ns 970698 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55220458ns 970706 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55220628ns 970709 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55220912ns 970714 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55221196ns 970719 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55221480ns 970724 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55221935ns 970732 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55222106ns 970735 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55222390ns 970740 1a110850 fd5ff06f jal x0, -44 +55222674ns 970745 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55222958ns 970750 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55223356ns 970757 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55223526ns 970760 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55223981ns 970768 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55224152ns 970771 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55224436ns 970776 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55224720ns 970781 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55225004ns 970786 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55225459ns 970794 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55225629ns 970797 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55225913ns 970802 1a110850 fd5ff06f jal x0, -44 +55226198ns 970807 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55226482ns 970812 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55226880ns 970819 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55227050ns 970822 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55227505ns 970830 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55227675ns 970833 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55227959ns 970838 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55228243ns 970843 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55228528ns 970848 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55228982ns 970856 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55229153ns 970859 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55229437ns 970864 1a110850 fd5ff06f jal x0, -44 +55229721ns 970869 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55230005ns 970874 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55230403ns 970881 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55230574ns 970884 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55231028ns 970892 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55231199ns 970895 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55231483ns 970900 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55231767ns 970905 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55232051ns 970910 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55232506ns 970918 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55232676ns 970921 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55232961ns 970926 1a110850 fd5ff06f jal x0, -44 +55233245ns 970931 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55233529ns 970936 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55233927ns 970943 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55234097ns 970946 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55234552ns 970954 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55234722ns 970957 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55235007ns 970962 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55235291ns 970967 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55235575ns 970972 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55236029ns 970980 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55236200ns 970983 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55236484ns 970988 1a110850 fd5ff06f jal x0, -44 +55236768ns 970993 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55237052ns 970998 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55237450ns 971005 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55237621ns 971008 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55238075ns 971016 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55238246ns 971019 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55238530ns 971024 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55238814ns 971029 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55239098ns 971034 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55239553ns 971042 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55239724ns 971045 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55240008ns 971050 1a110850 fd5ff06f jal x0, -44 +55240292ns 971055 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55240576ns 971060 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55240974ns 971067 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55241144ns 971070 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55241599ns 971078 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55241770ns 971081 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55242054ns 971086 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55242338ns 971091 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55242622ns 971096 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55243077ns 971104 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55243247ns 971107 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55243531ns 971112 1a110850 fd5ff06f jal x0, -44 +55243815ns 971117 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55244100ns 971122 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55244497ns 971129 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55244668ns 971132 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55245123ns 971140 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55245293ns 971143 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55245577ns 971148 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55245861ns 971153 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55246146ns 971158 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55246600ns 971166 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55246771ns 971169 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55247055ns 971174 1a110850 fd5ff06f jal x0, -44 +55247339ns 971179 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55247623ns 971184 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55248021ns 971191 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55248192ns 971194 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55248646ns 971202 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55248817ns 971205 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55249101ns 971210 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55249385ns 971215 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55249669ns 971220 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55250124ns 971228 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55250294ns 971231 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55250578ns 971236 1a110850 fd5ff06f jal x0, -44 +55250863ns 971241 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55251147ns 971246 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55251545ns 971253 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55251715ns 971256 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55252170ns 971264 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55252340ns 971267 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55252624ns 971272 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55252909ns 971277 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55253193ns 971282 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55253647ns 971290 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55253818ns 971293 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55254102ns 971298 1a110850 fd5ff06f jal x0, -44 +55254386ns 971303 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55254670ns 971308 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55255068ns 971315 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55255239ns 971318 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55255693ns 971326 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55255864ns 971329 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55256148ns 971334 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55256432ns 971339 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55256716ns 971344 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55257171ns 971352 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55257341ns 971355 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55257626ns 971360 1a110850 fd5ff06f jal x0, -44 +55257910ns 971365 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55258194ns 971370 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55258592ns 971377 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55258762ns 971380 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55259217ns 971388 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55259387ns 971391 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55259672ns 971396 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55259956ns 971401 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55260240ns 971406 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55260695ns 971414 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55260865ns 971417 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55261149ns 971422 1a110850 fd5ff06f jal x0, -44 +55261433ns 971427 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55261718ns 971432 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55262115ns 971439 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55262286ns 971442 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55262741ns 971450 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55262911ns 971453 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55263195ns 971458 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55263479ns 971463 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55263763ns 971468 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55264218ns 971476 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55264389ns 971479 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55264673ns 971484 1a110850 fd5ff06f jal x0, -44 +55264957ns 971489 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55265241ns 971494 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55265639ns 971501 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55265809ns 971504 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55266264ns 971512 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55266435ns 971515 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55266719ns 971520 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55267003ns 971525 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55267287ns 971530 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55267742ns 971538 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55267912ns 971541 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55268196ns 971546 1a110850 fd5ff06f jal x0, -44 +55268481ns 971551 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55268765ns 971556 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55269163ns 971563 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55269333ns 971566 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55269788ns 971574 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55269958ns 971577 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55270242ns 971582 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55270527ns 971587 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55270811ns 971592 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55271265ns 971600 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55271436ns 971603 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55271720ns 971608 1a110850 fd5ff06f jal x0, -44 +55272004ns 971613 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55272288ns 971618 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55272686ns 971625 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55272857ns 971628 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55273311ns 971636 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55273482ns 971639 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55273766ns 971644 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55274050ns 971649 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55274334ns 971654 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55274789ns 971662 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55274959ns 971665 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55275244ns 971670 1a110850 fd5ff06f jal x0, -44 +55275528ns 971675 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55275812ns 971680 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55276210ns 971687 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55276380ns 971690 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55276835ns 971698 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55277005ns 971701 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55277290ns 971706 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55277574ns 971711 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55277858ns 971716 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55278312ns 971724 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55278483ns 971727 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55278767ns 971732 1a110850 fd5ff06f jal x0, -44 +55279051ns 971737 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55279335ns 971742 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55279733ns 971749 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55279904ns 971752 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55280358ns 971760 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55280529ns 971763 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55280813ns 971768 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55281097ns 971773 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55281381ns 971778 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55281836ns 971786 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55282007ns 971789 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55282291ns 971794 1a110850 fd5ff06f jal x0, -44 +55282575ns 971799 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55282859ns 971804 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55283257ns 971811 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55283427ns 971814 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55283882ns 971822 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55284053ns 971825 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55284337ns 971830 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55284621ns 971835 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55284905ns 971840 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55285360ns 971848 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55285530ns 971851 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55285814ns 971856 1a110850 fd5ff06f jal x0, -44 +55286098ns 971861 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55286383ns 971866 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55286780ns 971873 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55286951ns 971876 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55287406ns 971884 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55287576ns 971887 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55287860ns 971892 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55288144ns 971897 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55288429ns 971902 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55288883ns 971910 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55289054ns 971913 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55289338ns 971918 1a110850 fd5ff06f jal x0, -44 +55289622ns 971923 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55289906ns 971928 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55290304ns 971935 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55290475ns 971938 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55290929ns 971946 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55291100ns 971949 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55291384ns 971954 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55291668ns 971959 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55291952ns 971964 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55292407ns 971972 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55292577ns 971975 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55292861ns 971980 1a110850 fd5ff06f jal x0, -44 +55293146ns 971985 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55293430ns 971990 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55293828ns 971997 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55293998ns 972000 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55294453ns 972008 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55294623ns 972011 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55294907ns 972016 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55295192ns 972021 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55295476ns 972026 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55295930ns 972034 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55296101ns 972037 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55296385ns 972042 1a110850 fd5ff06f jal x0, -44 +55296669ns 972047 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55296953ns 972052 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55297351ns 972059 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55297522ns 972062 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55297976ns 972070 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55298147ns 972073 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55298431ns 972078 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55298715ns 972083 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55298999ns 972088 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55299454ns 972096 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55299624ns 972099 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55299909ns 972104 1a110850 fd5ff06f jal x0, -44 +55300193ns 972109 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55300477ns 972114 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55300875ns 972121 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55301045ns 972124 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55301500ns 972132 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55301670ns 972135 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55301955ns 972140 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55302239ns 972145 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55302523ns 972150 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55302978ns 972158 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55303148ns 972161 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55303432ns 972166 1a110850 fd5ff06f jal x0, -44 +55303716ns 972171 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55304001ns 972176 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55304398ns 972183 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55304569ns 972186 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55305024ns 972194 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55305194ns 972197 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55305478ns 972202 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55305762ns 972207 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55306047ns 972212 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55306501ns 972220 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55306672ns 972223 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55306956ns 972228 1a110850 fd5ff06f jal x0, -44 +55307240ns 972233 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55307524ns 972238 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55307922ns 972245 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55308092ns 972248 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55308547ns 972256 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55308718ns 972259 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55309002ns 972264 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55309286ns 972269 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55309570ns 972274 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55310025ns 972282 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55310195ns 972285 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55310479ns 972290 1a110850 fd5ff06f jal x0, -44 +55310764ns 972295 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55311048ns 972300 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55311446ns 972307 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55311616ns 972310 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55312071ns 972318 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55312241ns 972321 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55312525ns 972326 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55312810ns 972331 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55313094ns 972336 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55313548ns 972344 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55313719ns 972347 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55314003ns 972352 1a110850 fd5ff06f jal x0, -44 +55314287ns 972357 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55314571ns 972362 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55314969ns 972369 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55315140ns 972372 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55315594ns 972380 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55315765ns 972383 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55316049ns 972388 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55316333ns 972393 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55316617ns 972398 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55317072ns 972406 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55317242ns 972409 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55317527ns 972414 1a110850 fd5ff06f jal x0, -44 +55317811ns 972419 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55318095ns 972424 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55318493ns 972431 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55318663ns 972434 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55319118ns 972442 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55319288ns 972445 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55319573ns 972450 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55319857ns 972455 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55320141ns 972460 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55320595ns 972468 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55320766ns 972471 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55321050ns 972476 1a110850 fd5ff06f jal x0, -44 +55321334ns 972481 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55321618ns 972486 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55322016ns 972493 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55322187ns 972496 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55322641ns 972504 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55322812ns 972507 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55323096ns 972512 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55323380ns 972517 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55323664ns 972522 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55324119ns 972530 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55324290ns 972533 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55324574ns 972538 1a110850 fd5ff06f jal x0, -44 +55324858ns 972543 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55325142ns 972548 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55325540ns 972555 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55325710ns 972558 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55326165ns 972566 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55326336ns 972569 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55326620ns 972574 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55326904ns 972579 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55327188ns 972584 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55327643ns 972592 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55327813ns 972595 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55328097ns 972600 1a110850 fd5ff06f jal x0, -44 +55328381ns 972605 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55328666ns 972610 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55329063ns 972617 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55329234ns 972620 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55329689ns 972628 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55329859ns 972631 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55330143ns 972636 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55330427ns 972641 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55330712ns 972646 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55331166ns 972654 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55331337ns 972657 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55331621ns 972662 1a110850 fd5ff06f jal x0, -44 +55331905ns 972667 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55332189ns 972672 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55332587ns 972679 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55332758ns 972682 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55333212ns 972690 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55333383ns 972693 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55333667ns 972698 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55333951ns 972703 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55334235ns 972708 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55334690ns 972716 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55334860ns 972719 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55335144ns 972724 1a110850 fd5ff06f jal x0, -44 +55335429ns 972729 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55335713ns 972734 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55336111ns 972741 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55336281ns 972744 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55336736ns 972752 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55336906ns 972755 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55337190ns 972760 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55337475ns 972765 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55337759ns 972770 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55338213ns 972778 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55338384ns 972781 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55338668ns 972786 1a110850 fd5ff06f jal x0, -44 +55338952ns 972791 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55339236ns 972796 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55339634ns 972803 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55339805ns 972806 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55340259ns 972814 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55340430ns 972817 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55340714ns 972822 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55340998ns 972827 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55341282ns 972832 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55341737ns 972840 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55341907ns 972843 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55342192ns 972848 1a110850 fd5ff06f jal x0, -44 +55342476ns 972853 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55342760ns 972858 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55343158ns 972865 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55343328ns 972868 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55343783ns 972876 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55343953ns 972879 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55344238ns 972884 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55344522ns 972889 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55344806ns 972894 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55345261ns 972902 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55345431ns 972905 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55345715ns 972910 1a110850 fd5ff06f jal x0, -44 +55345999ns 972915 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55346284ns 972920 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55346681ns 972927 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55346852ns 972930 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55347307ns 972938 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55347477ns 972941 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55347761ns 972946 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55348045ns 972951 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55348330ns 972956 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55348784ns 972964 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55348955ns 972967 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55349239ns 972972 1a110850 fd5ff06f jal x0, -44 +55349523ns 972977 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55349807ns 972982 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55350205ns 972989 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55350375ns 972992 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55350830ns 973000 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55351001ns 973003 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55351285ns 973008 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55351569ns 973013 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55351853ns 973018 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55352308ns 973026 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55352478ns 973029 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55352762ns 973034 1a110850 fd5ff06f jal x0, -44 +55353047ns 973039 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55353331ns 973044 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55353729ns 973051 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55353899ns 973054 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55354354ns 973062 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55354524ns 973065 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55354808ns 973070 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55355093ns 973075 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55355377ns 973080 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55355831ns 973088 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55356002ns 973091 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55356286ns 973096 1a110850 fd5ff06f jal x0, -44 +55356570ns 973101 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55356854ns 973106 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55357252ns 973113 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55357423ns 973116 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55357877ns 973124 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55358048ns 973127 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55358332ns 973132 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55358616ns 973137 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55358900ns 973142 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55359355ns 973150 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55359525ns 973153 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55359810ns 973158 1a110850 fd5ff06f jal x0, -44 +55360094ns 973163 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55360378ns 973168 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55360776ns 973175 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55360946ns 973178 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55361401ns 973186 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55361571ns 973189 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55361856ns 973194 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55362140ns 973199 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55362424ns 973204 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55362879ns 973212 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55363049ns 973215 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55363333ns 973220 1a110850 fd5ff06f jal x0, -44 +55363617ns 973225 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55363901ns 973230 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55364299ns 973237 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55364470ns 973240 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55364924ns 973248 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55365095ns 973251 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55365379ns 973256 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55365663ns 973261 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55365947ns 973266 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55366402ns 973274 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55366573ns 973277 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55366857ns 973282 1a110850 fd5ff06f jal x0, -44 +55367141ns 973287 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55367425ns 973292 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55367823ns 973299 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55367993ns 973302 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55368448ns 973310 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55368619ns 973313 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55368903ns 973318 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55369187ns 973323 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55369471ns 973328 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55369926ns 973336 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55370096ns 973339 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55370380ns 973344 1a110850 fd5ff06f jal x0, -44 +55370664ns 973349 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55370949ns 973354 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55371346ns 973361 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55371517ns 973364 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55371972ns 973372 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55372142ns 973375 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55372426ns 973380 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55372710ns 973385 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55372995ns 973390 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55373449ns 973398 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55373620ns 973401 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55373904ns 973406 1a110850 fd5ff06f jal x0, -44 +55374188ns 973411 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55374472ns 973416 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55374870ns 973423 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55375041ns 973426 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55375495ns 973434 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55375666ns 973437 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55375950ns 973442 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55376234ns 973447 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55376518ns 973452 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55376973ns 973460 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55377143ns 973463 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55377427ns 973468 1a110850 fd5ff06f jal x0, -44 +55377712ns 973473 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55377996ns 973478 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55378394ns 973485 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55378564ns 973488 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55379019ns 973496 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55379189ns 973499 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55379473ns 973504 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55379758ns 973509 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55380042ns 973514 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55380496ns 973522 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55380667ns 973525 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55380951ns 973530 1a110850 fd5ff06f jal x0, -44 +55381235ns 973535 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55381519ns 973540 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55381917ns 973547 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55382088ns 973550 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55382542ns 973558 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55382713ns 973561 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55382997ns 973566 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55383281ns 973571 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55383565ns 973576 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55384020ns 973584 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55384191ns 973587 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55384475ns 973592 1a110850 fd5ff06f jal x0, -44 +55384759ns 973597 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55385043ns 973602 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55385441ns 973609 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55385611ns 973612 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55386066ns 973620 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55386236ns 973623 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55386521ns 973628 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55386805ns 973633 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55387089ns 973638 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55387544ns 973646 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55387714ns 973649 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55387998ns 973654 1a110850 fd5ff06f jal x0, -44 +55388282ns 973659 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55388567ns 973664 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55388964ns 973671 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55389135ns 973674 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55389590ns 973682 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55389760ns 973685 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55390044ns 973690 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55390328ns 973695 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55390613ns 973700 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55391067ns 973708 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55391238ns 973711 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55391522ns 973716 1a110850 fd5ff06f jal x0, -44 +55391806ns 973721 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55392090ns 973726 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55392488ns 973733 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55392658ns 973736 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55393113ns 973744 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55393284ns 973747 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55393568ns 973752 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55393852ns 973757 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55394136ns 973762 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55394591ns 973770 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55394761ns 973773 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55395045ns 973778 1a110850 fd5ff06f jal x0, -44 +55395330ns 973783 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55395614ns 973788 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55396012ns 973795 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55396182ns 973798 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55396637ns 973806 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55396807ns 973809 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55397091ns 973814 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55397376ns 973819 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55397660ns 973824 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55398114ns 973832 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55398285ns 973835 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55398569ns 973840 1a110850 fd5ff06f jal x0, -44 +55398853ns 973845 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55399137ns 973850 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55399535ns 973857 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55399706ns 973860 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55400160ns 973868 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55400331ns 973871 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55400615ns 973876 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55400899ns 973881 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55401183ns 973886 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55401638ns 973894 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55401808ns 973897 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55402093ns 973902 1a110850 fd5ff06f jal x0, -44 +55402377ns 973907 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55402661ns 973912 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55403059ns 973919 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55403229ns 973922 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55403684ns 973930 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55403854ns 973933 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55404139ns 973938 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55404423ns 973943 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55404707ns 973948 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55405162ns 973956 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55405332ns 973959 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55405616ns 973964 1a110850 fd5ff06f jal x0, -44 +55405900ns 973969 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55406184ns 973974 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55406582ns 973981 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55406753ns 973984 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55407207ns 973992 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55407378ns 973995 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55407662ns 974000 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55407946ns 974005 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55408230ns 974010 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55408685ns 974018 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55408856ns 974021 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55409140ns 974026 1a110850 fd5ff06f jal x0, -44 +55409424ns 974031 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55409708ns 974036 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55410106ns 974043 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55410276ns 974046 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55410731ns 974054 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55410902ns 974057 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55411186ns 974062 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55411470ns 974067 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55411754ns 974072 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55412209ns 974080 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55412379ns 974083 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55412663ns 974088 1a110850 fd5ff06f jal x0, -44 +55412947ns 974093 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55413232ns 974098 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55413629ns 974105 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55413800ns 974108 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55414255ns 974116 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55414425ns 974119 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55414709ns 974124 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55414993ns 974129 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55415278ns 974134 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55415732ns 974142 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55415903ns 974145 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55416187ns 974150 1a110850 fd5ff06f jal x0, -44 +55416471ns 974155 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55416755ns 974160 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55417153ns 974167 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55417324ns 974170 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55417778ns 974178 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55417949ns 974181 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55418233ns 974186 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55418517ns 974191 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55418801ns 974196 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55419256ns 974204 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55419426ns 974207 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55419711ns 974212 1a110850 fd5ff06f jal x0, -44 +55419995ns 974217 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55420279ns 974222 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55420677ns 974229 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55420847ns 974232 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55421302ns 974240 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55421472ns 974243 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55421756ns 974248 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55422041ns 974253 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55422325ns 974258 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55422779ns 974266 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55422950ns 974269 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55423234ns 974274 1a110850 fd5ff06f jal x0, -44 +55423518ns 974279 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55423802ns 974284 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55424200ns 974291 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55424371ns 974294 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55424825ns 974302 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55424996ns 974305 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55425280ns 974310 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55425564ns 974315 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55425848ns 974320 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55426303ns 974328 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55426474ns 974331 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55426758ns 974336 1a110850 fd5ff06f jal x0, -44 +55427042ns 974341 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55427326ns 974346 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55427724ns 974353 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55427894ns 974356 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55428349ns 974364 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55428519ns 974367 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55428804ns 974372 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55429088ns 974377 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55429372ns 974382 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55429827ns 974390 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55429997ns 974393 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55430281ns 974398 1a110850 fd5ff06f jal x0, -44 +55430565ns 974403 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55430850ns 974408 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55431247ns 974415 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55431418ns 974418 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55431873ns 974426 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55432043ns 974429 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55432327ns 974434 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55432611ns 974439 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55432896ns 974444 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55433350ns 974452 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55433521ns 974455 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55433805ns 974460 1a110850 fd5ff06f jal x0, -44 +55434089ns 974465 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55434373ns 974470 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55434771ns 974477 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55434941ns 974480 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55435396ns 974488 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55435567ns 974491 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55435851ns 974496 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55436135ns 974501 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55436419ns 974506 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55436874ns 974514 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55437044ns 974517 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55437328ns 974522 1a110850 fd5ff06f jal x0, -44 +55437613ns 974527 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55437897ns 974532 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55438295ns 974539 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55438465ns 974542 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55438920ns 974550 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55439090ns 974553 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55439374ns 974558 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55439659ns 974563 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55439943ns 974568 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55440397ns 974576 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55440568ns 974579 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55440852ns 974584 1a110850 fd5ff06f jal x0, -44 +55441136ns 974589 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55441420ns 974594 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55441818ns 974601 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55441989ns 974604 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55442443ns 974612 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55442614ns 974615 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55442898ns 974620 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55443182ns 974625 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55443466ns 974630 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55443921ns 974638 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55444091ns 974641 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55444376ns 974646 1a110850 fd5ff06f jal x0, -44 +55444660ns 974651 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55444944ns 974656 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55445342ns 974663 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55445512ns 974666 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55445967ns 974674 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55446137ns 974677 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55446422ns 974682 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55446706ns 974687 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55446990ns 974692 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55447445ns 974700 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55447615ns 974703 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55447899ns 974708 1a110850 fd5ff06f jal x0, -44 +55448183ns 974713 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55448467ns 974718 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55448865ns 974725 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55449036ns 974728 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55449490ns 974736 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55449661ns 974739 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55449945ns 974744 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55450229ns 974749 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55450513ns 974754 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55450968ns 974762 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55451139ns 974765 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55451423ns 974770 1a110850 fd5ff06f jal x0, -44 +55451707ns 974775 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55451991ns 974780 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55452389ns 974787 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55452559ns 974790 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55453014ns 974798 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55453185ns 974801 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55453469ns 974806 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55453753ns 974811 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55454037ns 974816 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55454492ns 974824 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55454662ns 974827 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55454946ns 974832 1a110850 fd5ff06f jal x0, -44 +55455231ns 974837 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55455515ns 974842 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55455912ns 974849 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55456083ns 974852 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55456538ns 974860 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55456708ns 974863 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55456992ns 974868 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55457276ns 974873 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55457561ns 974878 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55458015ns 974886 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55458186ns 974889 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55458470ns 974894 1a110850 fd5ff06f jal x0, -44 +55458754ns 974899 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55459038ns 974904 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55459436ns 974911 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55459607ns 974914 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55460061ns 974922 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55460232ns 974925 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55460516ns 974930 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55460800ns 974935 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55461084ns 974940 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55461539ns 974948 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55461709ns 974951 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55461994ns 974956 1a110850 fd5ff06f jal x0, -44 +55462278ns 974961 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55462562ns 974966 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55462960ns 974973 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55463130ns 974976 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55463585ns 974984 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55463755ns 974987 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55464039ns 974992 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55464324ns 974997 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55464608ns 975002 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55465062ns 975010 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55465233ns 975013 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55465517ns 975018 1a110850 fd5ff06f jal x0, -44 +55465801ns 975023 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55466085ns 975028 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55466483ns 975035 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55466654ns 975038 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55467108ns 975046 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55467279ns 975049 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55467563ns 975054 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55467847ns 975059 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55468131ns 975064 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55468586ns 975072 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55468757ns 975075 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55469041ns 975080 1a110850 fd5ff06f jal x0, -44 +55469325ns 975085 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55469609ns 975090 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55470007ns 975097 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55470177ns 975100 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55470632ns 975108 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55470802ns 975111 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55471087ns 975116 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55471371ns 975121 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55471655ns 975126 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55472110ns 975134 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55472280ns 975137 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55472564ns 975142 1a110850 fd5ff06f jal x0, -44 +55472848ns 975147 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55473133ns 975152 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55473530ns 975159 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55473701ns 975162 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55474156ns 975170 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55474326ns 975173 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55474610ns 975178 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55474894ns 975183 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55475179ns 975188 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55475633ns 975196 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55475804ns 975199 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55476088ns 975204 1a110850 fd5ff06f jal x0, -44 +55476372ns 975209 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55476656ns 975214 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55477054ns 975221 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55477224ns 975224 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55477679ns 975232 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55477850ns 975235 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55478134ns 975240 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55478418ns 975245 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55478702ns 975250 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55479157ns 975258 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55479327ns 975261 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55479611ns 975266 1a110850 fd5ff06f jal x0, -44 +55479896ns 975271 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55480180ns 975276 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55480578ns 975283 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55480748ns 975286 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55481203ns 975294 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55481373ns 975297 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55481657ns 975302 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55481942ns 975307 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55482226ns 975312 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55482680ns 975320 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55482851ns 975323 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55483135ns 975328 1a110850 fd5ff06f jal x0, -44 +55483419ns 975333 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55483703ns 975338 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55484101ns 975345 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55484272ns 975348 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55484726ns 975356 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55484897ns 975359 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55485181ns 975364 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55485465ns 975369 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55485749ns 975374 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55486204ns 975382 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55486374ns 975385 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55486659ns 975390 1a110850 fd5ff06f jal x0, -44 +55486943ns 975395 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55487227ns 975400 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55487625ns 975407 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55487795ns 975410 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55488250ns 975418 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55488420ns 975421 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55488705ns 975426 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55488989ns 975431 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55489273ns 975436 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55489728ns 975444 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55489898ns 975447 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55490182ns 975452 1a110850 fd5ff06f jal x0, -44 +55490466ns 975457 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55490751ns 975462 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55491148ns 975469 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55491319ns 975472 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55491773ns 975480 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55491944ns 975483 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55492228ns 975488 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55492512ns 975493 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55492796ns 975498 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55493251ns 975506 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55493422ns 975509 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55493706ns 975514 1a110850 fd5ff06f jal x0, -44 +55493990ns 975519 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55494274ns 975524 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55494672ns 975531 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55494842ns 975534 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55495297ns 975542 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55495468ns 975545 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55495752ns 975550 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55496036ns 975555 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55496320ns 975560 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55496775ns 975568 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55496945ns 975571 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55497229ns 975576 1a110850 fd5ff06f jal x0, -44 +55497514ns 975581 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55497798ns 975586 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55498195ns 975593 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55498366ns 975596 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55498821ns 975604 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55498991ns 975607 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55499275ns 975612 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55499559ns 975617 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55499844ns 975622 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55500298ns 975630 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55500469ns 975633 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55500753ns 975638 1a110850 fd5ff06f jal x0, -44 +55501037ns 975643 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55501321ns 975648 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55501719ns 975655 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55501890ns 975658 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55502344ns 975666 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55502515ns 975669 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55502799ns 975674 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55503083ns 975679 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55503367ns 975684 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55503822ns 975692 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55503992ns 975695 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55504277ns 975700 1a110850 fd5ff06f jal x0, -44 +55504561ns 975705 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55504845ns 975710 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55505243ns 975717 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55505413ns 975720 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55505868ns 975728 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55506038ns 975731 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55506322ns 975736 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55506607ns 975741 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55506891ns 975746 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55507345ns 975754 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55507516ns 975757 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55507800ns 975762 1a110850 fd5ff06f jal x0, -44 +55508084ns 975767 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55508368ns 975772 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55508766ns 975779 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55508937ns 975782 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55509391ns 975790 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55509562ns 975793 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55509846ns 975798 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55510130ns 975803 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55510414ns 975808 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55510869ns 975816 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55511040ns 975819 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55511324ns 975824 1a110850 fd5ff06f jal x0, -44 +55511608ns 975829 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55511892ns 975834 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55512290ns 975841 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55512460ns 975844 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55512915ns 975852 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55513085ns 975855 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55513370ns 975860 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55513654ns 975865 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55513938ns 975870 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55514393ns 975878 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55514563ns 975881 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55514847ns 975886 1a110850 fd5ff06f jal x0, -44 +55515131ns 975891 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55515416ns 975896 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55515813ns 975903 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55515984ns 975906 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55516439ns 975914 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55516609ns 975917 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55516893ns 975922 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55517177ns 975927 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55517462ns 975932 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55517916ns 975940 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55518087ns 975943 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55518371ns 975948 1a110850 fd5ff06f jal x0, -44 +55518655ns 975953 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55518939ns 975958 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55519337ns 975965 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55519507ns 975968 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55519962ns 975976 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55520133ns 975979 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55520417ns 975984 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55520701ns 975989 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55520985ns 975994 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55521440ns 976002 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55521610ns 976005 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55521894ns 976010 1a110850 fd5ff06f jal x0, -44 +55522179ns 976015 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55522463ns 976020 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55522861ns 976027 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55523031ns 976030 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55523486ns 976038 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55523656ns 976041 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55523940ns 976046 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55524225ns 976051 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55524509ns 976056 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55524963ns 976064 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55525134ns 976067 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55525418ns 976072 1a110850 fd5ff06f jal x0, -44 +55525702ns 976077 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55525986ns 976082 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55526384ns 976089 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55526555ns 976092 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55527009ns 976100 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55527180ns 976103 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55527464ns 976108 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55527748ns 976113 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55528032ns 976118 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55528487ns 976126 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55528657ns 976129 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55528942ns 976134 1a110850 fd5ff06f jal x0, -44 +55529226ns 976139 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55529510ns 976144 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55529908ns 976151 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55530078ns 976154 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55530533ns 976162 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55530703ns 976165 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55530988ns 976170 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55531272ns 976175 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55531556ns 976180 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55532011ns 976188 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55532181ns 976191 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55532465ns 976196 1a110850 fd5ff06f jal x0, -44 +55532749ns 976201 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55533034ns 976206 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55533431ns 976213 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55533602ns 976216 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55534056ns 976224 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55534227ns 976227 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55534511ns 976232 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55534795ns 976237 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55535079ns 976242 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55535534ns 976250 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55535705ns 976253 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55535989ns 976258 1a110850 fd5ff06f jal x0, -44 +55536273ns 976263 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55536557ns 976268 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55536955ns 976275 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55537125ns 976278 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55537580ns 976286 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55537751ns 976289 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55538035ns 976294 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55538319ns 976299 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55538603ns 976304 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55539058ns 976312 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55539228ns 976315 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55539512ns 976320 1a110850 fd5ff06f jal x0, -44 +55539797ns 976325 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55540081ns 976330 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55540479ns 976337 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55540649ns 976340 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55541104ns 976348 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55541274ns 976351 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55541558ns 976356 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55541842ns 976361 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55542127ns 976366 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55542581ns 976374 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55542752ns 976377 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55543036ns 976382 1a110850 fd5ff06f jal x0, -44 +55543320ns 976387 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55543604ns 976392 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55544002ns 976399 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55544173ns 976402 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55544627ns 976410 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55544798ns 976413 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55545082ns 976418 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55545366ns 976423 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55545650ns 976428 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55546105ns 976436 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55546275ns 976439 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55546560ns 976444 1a110850 fd5ff06f jal x0, -44 +55546844ns 976449 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55547128ns 976454 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55547526ns 976461 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55547696ns 976464 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55548151ns 976472 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55548321ns 976475 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55548605ns 976480 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55548890ns 976485 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55549174ns 976490 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55549628ns 976498 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55549799ns 976501 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55550083ns 976506 1a110850 fd5ff06f jal x0, -44 +55550367ns 976511 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55550651ns 976516 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55551049ns 976523 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55551220ns 976526 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55551674ns 976534 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55551845ns 976537 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55552129ns 976542 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55552413ns 976547 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55552697ns 976552 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55553152ns 976560 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55553323ns 976563 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55553607ns 976568 1a110850 fd5ff06f jal x0, -44 +55553891ns 976573 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55554175ns 976578 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55554573ns 976585 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55554743ns 976588 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55555198ns 976596 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55555368ns 976599 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55555653ns 976604 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55555937ns 976609 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55556221ns 976614 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55556676ns 976622 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55556846ns 976625 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55557130ns 976630 1a110850 fd5ff06f jal x0, -44 +55557414ns 976635 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55557699ns 976640 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55558096ns 976647 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55558267ns 976650 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55558722ns 976658 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55558892ns 976661 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55559176ns 976666 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55559460ns 976671 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55559745ns 976676 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55560199ns 976684 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55560370ns 976687 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55560654ns 976692 1a110850 fd5ff06f jal x0, -44 +55560938ns 976697 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55561222ns 976702 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55561620ns 976709 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55561791ns 976712 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55562245ns 976720 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55562416ns 976723 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55562700ns 976728 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55562984ns 976733 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55563268ns 976738 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55563723ns 976746 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55563893ns 976749 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55564177ns 976754 1a110850 fd5ff06f jal x0, -44 +55564462ns 976759 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55564746ns 976764 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55565144ns 976771 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55565314ns 976774 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55565769ns 976782 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55565939ns 976785 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55566223ns 976790 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55566508ns 976795 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55566792ns 976800 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55567246ns 976808 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55567417ns 976811 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55567701ns 976816 1a110850 fd5ff06f jal x0, -44 +55567985ns 976821 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55568269ns 976826 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55568667ns 976833 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55568838ns 976836 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55569292ns 976844 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55569463ns 976847 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55569747ns 976852 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55570031ns 976857 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55570315ns 976862 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55570770ns 976870 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55570940ns 976873 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55571225ns 976878 1a110850 fd5ff06f jal x0, -44 +55571509ns 976883 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55571793ns 976888 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55572191ns 976895 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55572361ns 976898 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55572816ns 976906 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55572986ns 976909 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55573271ns 976914 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55573555ns 976919 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55573839ns 976924 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55574294ns 976932 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55574464ns 976935 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55574748ns 976940 1a110850 fd5ff06f jal x0, -44 +55575032ns 976945 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55575317ns 976950 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55575714ns 976957 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55575885ns 976960 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55576339ns 976968 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55576510ns 976971 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55576794ns 976976 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55577078ns 976981 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55577362ns 976986 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55577817ns 976994 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55577988ns 976997 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55578272ns 977002 1a110850 fd5ff06f jal x0, -44 +55578556ns 977007 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55578840ns 977012 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55579238ns 977019 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55579408ns 977022 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55579863ns 977030 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55580034ns 977033 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55580318ns 977038 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55580602ns 977043 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55580886ns 977048 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55581341ns 977056 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55581511ns 977059 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55581795ns 977064 1a110850 fd5ff06f jal x0, -44 +55582080ns 977069 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55582364ns 977074 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55582762ns 977081 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55582932ns 977084 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55583387ns 977092 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55583557ns 977095 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55583841ns 977100 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55584125ns 977105 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55584410ns 977110 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55584864ns 977118 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55585035ns 977121 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55585319ns 977126 1a110850 fd5ff06f jal x0, -44 +55585603ns 977131 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55585887ns 977136 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55586285ns 977143 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55586456ns 977146 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55586910ns 977154 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55587081ns 977157 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55587365ns 977162 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55587649ns 977167 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55587933ns 977172 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55588388ns 977180 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55588558ns 977183 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55588843ns 977188 1a110850 fd5ff06f jal x0, -44 +55589127ns 977193 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55589411ns 977198 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55589809ns 977205 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55589979ns 977208 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55590434ns 977216 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55590604ns 977219 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55590888ns 977224 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55591173ns 977229 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55591457ns 977234 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55591911ns 977242 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55592082ns 977245 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55592366ns 977250 1a110850 fd5ff06f jal x0, -44 +55592650ns 977255 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55592934ns 977260 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55593332ns 977267 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55593503ns 977270 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55593957ns 977278 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55594128ns 977281 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55594412ns 977286 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55594696ns 977291 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55594980ns 977296 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55595435ns 977304 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55595606ns 977307 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55595890ns 977312 1a110850 fd5ff06f jal x0, -44 +55596174ns 977317 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55596458ns 977322 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55596856ns 977329 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55597026ns 977332 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55597481ns 977340 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55597651ns 977343 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55597936ns 977348 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55598220ns 977353 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55598504ns 977358 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55598959ns 977366 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55599129ns 977369 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55599413ns 977374 1a110850 fd5ff06f jal x0, -44 +55599697ns 977379 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55599982ns 977384 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55600379ns 977391 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55600550ns 977394 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55601005ns 977402 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55601175ns 977405 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55601459ns 977410 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55601743ns 977415 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55602028ns 977420 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55602482ns 977428 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55602653ns 977431 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55602937ns 977436 1a110850 fd5ff06f jal x0, -44 +55603221ns 977441 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55603505ns 977446 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55603903ns 977453 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55604074ns 977456 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55604528ns 977464 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55604699ns 977467 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55604983ns 977472 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55605267ns 977477 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55605551ns 977482 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55606006ns 977490 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55606176ns 977493 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55606460ns 977498 1a110850 fd5ff06f jal x0, -44 +55606745ns 977503 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55607029ns 977508 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55607427ns 977515 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55607597ns 977518 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55608052ns 977526 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55608222ns 977529 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55608506ns 977534 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55608791ns 977539 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55609075ns 977544 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55609529ns 977552 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55609700ns 977555 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55609984ns 977560 1a110850 fd5ff06f jal x0, -44 +55610268ns 977565 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55610552ns 977570 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55610950ns 977577 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55611121ns 977580 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55611575ns 977588 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55611746ns 977591 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55612030ns 977596 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55612314ns 977601 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55612598ns 977606 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55613053ns 977614 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55613223ns 977617 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55613508ns 977622 1a110850 fd5ff06f jal x0, -44 +55613792ns 977627 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55614076ns 977632 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55614474ns 977639 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55614644ns 977642 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55615099ns 977650 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55615269ns 977653 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55615554ns 977658 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55615838ns 977663 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55616122ns 977668 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55616577ns 977676 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55616747ns 977679 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55617031ns 977684 1a110850 fd5ff06f jal x0, -44 +55617315ns 977689 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55617600ns 977694 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55617997ns 977701 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55618168ns 977704 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55618623ns 977712 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55618793ns 977715 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55619077ns 977720 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55619361ns 977725 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55619645ns 977730 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55620100ns 977738 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55620271ns 977741 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55620555ns 977746 1a110850 fd5ff06f jal x0, -44 +55620839ns 977751 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55621123ns 977756 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55621521ns 977763 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55621691ns 977766 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55622146ns 977774 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55622317ns 977777 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55622601ns 977782 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55622885ns 977787 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55623169ns 977792 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55623624ns 977800 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55623794ns 977803 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55624078ns 977808 1a110850 fd5ff06f jal x0, -44 +55624363ns 977813 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55624647ns 977818 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55625045ns 977825 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55625215ns 977828 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55625670ns 977836 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55625840ns 977839 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55626124ns 977844 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55626408ns 977849 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55626693ns 977854 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55627147ns 977862 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55627318ns 977865 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55627602ns 977870 1a110850 fd5ff06f jal x0, -44 +55627886ns 977875 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55628170ns 977880 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55628568ns 977887 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55628739ns 977890 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55629193ns 977898 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55629364ns 977901 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55629648ns 977906 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55629932ns 977911 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55630216ns 977916 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55630671ns 977924 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55630841ns 977927 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55631126ns 977932 1a110850 fd5ff06f jal x0, -44 +55631410ns 977937 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55631694ns 977942 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55632092ns 977949 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55632262ns 977952 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55632717ns 977960 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55632887ns 977963 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55633171ns 977968 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55633456ns 977973 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55633740ns 977978 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55634194ns 977986 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55634365ns 977989 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55634649ns 977994 1a110850 fd5ff06f jal x0, -44 +55634933ns 977999 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55635217ns 978004 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55635615ns 978011 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55635786ns 978014 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55636240ns 978022 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55636411ns 978025 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55636695ns 978030 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55636979ns 978035 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55637263ns 978040 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55637718ns 978048 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55637889ns 978051 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55638173ns 978056 1a110850 fd5ff06f jal x0, -44 +55638457ns 978061 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55638741ns 978066 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55639139ns 978073 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55639309ns 978076 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55639764ns 978084 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55639935ns 978087 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55640219ns 978092 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55640503ns 978097 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55640787ns 978102 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55641242ns 978110 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55641412ns 978113 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55641696ns 978118 1a110850 fd5ff06f jal x0, -44 +55641980ns 978123 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55642265ns 978128 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55642662ns 978135 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55642833ns 978138 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55643288ns 978146 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55643458ns 978149 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55643742ns 978154 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55644026ns 978159 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55644311ns 978164 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55644765ns 978172 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55644936ns 978175 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55645220ns 978180 1a110850 fd5ff06f jal x0, -44 +55645504ns 978185 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55645788ns 978190 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55646186ns 978197 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55646357ns 978200 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55646811ns 978208 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55646982ns 978211 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55647266ns 978216 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55647550ns 978221 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55647834ns 978226 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55648289ns 978234 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55648459ns 978237 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55648743ns 978242 1a110850 fd5ff06f jal x0, -44 +55649028ns 978247 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55649312ns 978252 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55649710ns 978259 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55649880ns 978262 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55650335ns 978270 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55650505ns 978273 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55650789ns 978278 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55651074ns 978283 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55651358ns 978288 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55651812ns 978296 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55651983ns 978299 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55652267ns 978304 1a110850 fd5ff06f jal x0, -44 +55652551ns 978309 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55652835ns 978314 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55653233ns 978321 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55653404ns 978324 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55653858ns 978332 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55654029ns 978335 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55654313ns 978340 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55654597ns 978345 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55654881ns 978350 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55655336ns 978358 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55655506ns 978361 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55655791ns 978366 1a110850 fd5ff06f jal x0, -44 +55656075ns 978371 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55656359ns 978376 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55656757ns 978383 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55656927ns 978386 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55657382ns 978394 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55657552ns 978397 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55657837ns 978402 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55658121ns 978407 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55658405ns 978412 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55658860ns 978420 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55659030ns 978423 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55659314ns 978428 1a110850 fd5ff06f jal x0, -44 +55659598ns 978433 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55659883ns 978438 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55660280ns 978445 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55660451ns 978448 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55660906ns 978456 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55661076ns 978459 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55661360ns 978464 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55661644ns 978469 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55661928ns 978474 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55662383ns 978482 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55662554ns 978485 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55662838ns 978490 1a110850 fd5ff06f jal x0, -44 +55663122ns 978495 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55663406ns 978500 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55663804ns 978507 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55663974ns 978510 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55664429ns 978518 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55664600ns 978521 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55664884ns 978526 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55665168ns 978531 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55665452ns 978536 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55665907ns 978544 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55666077ns 978547 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55666361ns 978552 1a110850 fd5ff06f jal x0, -44 +55666646ns 978557 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55666930ns 978562 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55667328ns 978569 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55667498ns 978572 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55667953ns 978580 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55668123ns 978583 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55668407ns 978588 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55668691ns 978593 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55668976ns 978598 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55669430ns 978606 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55669601ns 978609 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55669885ns 978614 1a110850 fd5ff06f jal x0, -44 +55670169ns 978619 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55670453ns 978624 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55670851ns 978631 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55671022ns 978634 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55671476ns 978642 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55671647ns 978645 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55671931ns 978650 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55672215ns 978655 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55672499ns 978660 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55672954ns 978668 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55673124ns 978671 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55673409ns 978676 1a110850 fd5ff06f jal x0, -44 +55673693ns 978681 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55673977ns 978686 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55674375ns 978693 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55674545ns 978696 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55675000ns 978704 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55675170ns 978707 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55675455ns 978712 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55675739ns 978717 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55676023ns 978722 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55676477ns 978730 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55676648ns 978733 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55676932ns 978738 1a110850 fd5ff06f jal x0, -44 +55677216ns 978743 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55677500ns 978748 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55677898ns 978755 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55678069ns 978758 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55678523ns 978766 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55678694ns 978769 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55678978ns 978774 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55679262ns 978779 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55679546ns 978784 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55680001ns 978792 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55680172ns 978795 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55680456ns 978800 1a110850 fd5ff06f jal x0, -44 +55680740ns 978805 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55681024ns 978810 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55681422ns 978817 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55681592ns 978820 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55682047ns 978828 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55682218ns 978831 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55682502ns 978836 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55682786ns 978841 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55683070ns 978846 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55683525ns 978854 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55683695ns 978857 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55683979ns 978862 1a110850 fd5ff06f jal x0, -44 +55684263ns 978867 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55684548ns 978872 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55684945ns 978879 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55685116ns 978882 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55685571ns 978890 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55685741ns 978893 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55686025ns 978898 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55686309ns 978903 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55686594ns 978908 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55687048ns 978916 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55687219ns 978919 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55687503ns 978924 1a110850 fd5ff06f jal x0, -44 +55687787ns 978929 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55688071ns 978934 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55688469ns 978941 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55688640ns 978944 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55689094ns 978952 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55689265ns 978955 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55689549ns 978960 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55689833ns 978965 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55690117ns 978970 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55690572ns 978978 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55690742ns 978981 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55691026ns 978986 1a110850 fd5ff06f jal x0, -44 +55691311ns 978991 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55691595ns 978996 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55691993ns 979003 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55692163ns 979006 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55692618ns 979014 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55692788ns 979017 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55693072ns 979022 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55693357ns 979027 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55693641ns 979032 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55694095ns 979040 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55694266ns 979043 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55694550ns 979048 1a110850 fd5ff06f jal x0, -44 +55694834ns 979053 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55695118ns 979058 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55695516ns 979065 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55695687ns 979068 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55696141ns 979076 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55696312ns 979079 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55696596ns 979084 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55696880ns 979089 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55697164ns 979094 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55697619ns 979102 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55697789ns 979105 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55698074ns 979110 1a110850 fd5ff06f jal x0, -44 +55698358ns 979115 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55698642ns 979120 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55699040ns 979127 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55699210ns 979130 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55699665ns 979138 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55699835ns 979141 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55700120ns 979146 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55700404ns 979151 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55700688ns 979156 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55701143ns 979164 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55701313ns 979167 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55701597ns 979172 1a110850 fd5ff06f jal x0, -44 +55701881ns 979177 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55702166ns 979182 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55702563ns 979189 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55702734ns 979192 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55703189ns 979200 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55703359ns 979203 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55703643ns 979208 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55703927ns 979213 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55704211ns 979218 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55704666ns 979226 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55704837ns 979229 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55705121ns 979234 1a110850 fd5ff06f jal x0, -44 +55705405ns 979239 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55705689ns 979244 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55706087ns 979251 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55706257ns 979254 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55706712ns 979262 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55706883ns 979265 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55707167ns 979270 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55707451ns 979275 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55707735ns 979280 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55708190ns 979288 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55708360ns 979291 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55708644ns 979296 1a110850 fd5ff06f jal x0, -44 +55708929ns 979301 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55709213ns 979306 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55709611ns 979313 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55709781ns 979316 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55710236ns 979324 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55710406ns 979327 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55710690ns 979332 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55710975ns 979337 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55711259ns 979342 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55711713ns 979350 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55711884ns 979353 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55712168ns 979358 1a110850 fd5ff06f jal x0, -44 +55712452ns 979363 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55712736ns 979368 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55713134ns 979375 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55713305ns 979378 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55713759ns 979386 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55713930ns 979389 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55714214ns 979394 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55714498ns 979399 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55714782ns 979404 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55715237ns 979412 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55715407ns 979415 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55715692ns 979420 1a110850 fd5ff06f jal x0, -44 +55715976ns 979425 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55716260ns 979430 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55716658ns 979437 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55716828ns 979440 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55717283ns 979448 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55717453ns 979451 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55717738ns 979456 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55718022ns 979461 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55718306ns 979466 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55718760ns 979474 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55718931ns 979477 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55719215ns 979482 1a110850 fd5ff06f jal x0, -44 +55719499ns 979487 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55719783ns 979492 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55720181ns 979499 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55720352ns 979502 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55720806ns 979510 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55720977ns 979513 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55721261ns 979518 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55721545ns 979523 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55721829ns 979528 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55722284ns 979536 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55722455ns 979539 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55722739ns 979544 1a110850 fd5ff06f jal x0, -44 +55723023ns 979549 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55723307ns 979554 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55723705ns 979561 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55723875ns 979564 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55724330ns 979572 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55724501ns 979575 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55724785ns 979580 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55725069ns 979585 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55725353ns 979590 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55725808ns 979598 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55725978ns 979601 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55726262ns 979606 1a110850 fd5ff06f jal x0, -44 +55726546ns 979611 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55726831ns 979616 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55727228ns 979623 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55727399ns 979626 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55727854ns 979634 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55728024ns 979637 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55728308ns 979642 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55728592ns 979647 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55728877ns 979652 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55729331ns 979660 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55729502ns 979663 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55729786ns 979668 1a110850 fd5ff06f jal x0, -44 +55730070ns 979673 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55730354ns 979678 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55730752ns 979685 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55730923ns 979688 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55731377ns 979696 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55731548ns 979699 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55731832ns 979704 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55732116ns 979709 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55732400ns 979714 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55732855ns 979722 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55733025ns 979725 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55733309ns 979730 1a110850 fd5ff06f jal x0, -44 +55733594ns 979735 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55733878ns 979740 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55734276ns 979747 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55734446ns 979750 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55734901ns 979758 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55735071ns 979761 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55735355ns 979766 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55735640ns 979771 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55735924ns 979776 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55736378ns 979784 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55736549ns 979787 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55736833ns 979792 1a110850 fd5ff06f jal x0, -44 +55737117ns 979797 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55737401ns 979802 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55737799ns 979809 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55737970ns 979812 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55738424ns 979820 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55738595ns 979823 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55738879ns 979828 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55739163ns 979833 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55739447ns 979838 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55739902ns 979846 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55740072ns 979849 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55740357ns 979854 1a110850 fd5ff06f jal x0, -44 +55740641ns 979859 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55740925ns 979864 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55741323ns 979871 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55741493ns 979874 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55741948ns 979882 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55742118ns 979885 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55742403ns 979890 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55742687ns 979895 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55742971ns 979900 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55743426ns 979908 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55743596ns 979911 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55743880ns 979916 1a110850 fd5ff06f jal x0, -44 +55744164ns 979921 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55744449ns 979926 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55744846ns 979933 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55745017ns 979936 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55745472ns 979944 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55745642ns 979947 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55745926ns 979952 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55746210ns 979957 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55746495ns 979962 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55746949ns 979970 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55747120ns 979973 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55747404ns 979978 1a110850 fd5ff06f jal x0, -44 +55747688ns 979983 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55747972ns 979988 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55748370ns 979995 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55748540ns 979998 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55748995ns 980006 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55749166ns 980009 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55749450ns 980014 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55749734ns 980019 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55750018ns 980024 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55750473ns 980032 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55750643ns 980035 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55750927ns 980040 1a110850 fd5ff06f jal x0, -44 +55751212ns 980045 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55751496ns 980050 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55751894ns 980057 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55752064ns 980060 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55752519ns 980068 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55752689ns 980071 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55752973ns 980076 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55753258ns 980081 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55753542ns 980086 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55753996ns 980094 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55754167ns 980097 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55754451ns 980102 1a110850 fd5ff06f jal x0, -44 +55754735ns 980107 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55755019ns 980112 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55755417ns 980119 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55755588ns 980122 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55756042ns 980130 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55756213ns 980133 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55756497ns 980138 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55756781ns 980143 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55757065ns 980148 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55757520ns 980156 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55757690ns 980159 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55757975ns 980164 1a110850 fd5ff06f jal x0, -44 +55758259ns 980169 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55758543ns 980174 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55758941ns 980181 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55759111ns 980184 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55759566ns 980192 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55759736ns 980195 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55760021ns 980200 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55760305ns 980205 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55760589ns 980210 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55761043ns 980218 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55761214ns 980221 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55761498ns 980226 1a110850 fd5ff06f jal x0, -44 +55761782ns 980231 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55762066ns 980236 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55762464ns 980243 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55762635ns 980246 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55763089ns 980254 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55763260ns 980257 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55763544ns 980262 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55763828ns 980267 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55764112ns 980272 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55764567ns 980280 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55764738ns 980283 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55765022ns 980288 1a110850 fd5ff06f jal x0, -44 +55765306ns 980293 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55765590ns 980298 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55765988ns 980305 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55766158ns 980308 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55766613ns 980316 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55766784ns 980319 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55767068ns 980324 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55767352ns 980329 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55767636ns 980334 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55768091ns 980342 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55768261ns 980345 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55768545ns 980350 1a110850 fd5ff06f jal x0, -44 +55768829ns 980355 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55769114ns 980360 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55769511ns 980367 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55769682ns 980370 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55770137ns 980378 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55770307ns 980381 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55770591ns 980386 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55770875ns 980391 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55771160ns 980396 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55771614ns 980404 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55771785ns 980407 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55772069ns 980412 1a110850 fd5ff06f jal x0, -44 +55772353ns 980417 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55772637ns 980422 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55773035ns 980429 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55773206ns 980432 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55773660ns 980440 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55773831ns 980443 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55774115ns 980448 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55774399ns 980453 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55774683ns 980458 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55775138ns 980466 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55775308ns 980469 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55775592ns 980474 1a110850 fd5ff06f jal x0, -44 +55775877ns 980479 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55776161ns 980484 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55776559ns 980491 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55776729ns 980494 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55777184ns 980502 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55777354ns 980505 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55777638ns 980510 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55777923ns 980515 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55778207ns 980520 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55778661ns 980528 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55778832ns 980531 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55779116ns 980536 1a110850 fd5ff06f jal x0, -44 +55779400ns 980541 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55779684ns 980546 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55780082ns 980553 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55780253ns 980556 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55780707ns 980564 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55780878ns 980567 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55781162ns 980572 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55781446ns 980577 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55781730ns 980582 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55782185ns 980590 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55782355ns 980593 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55782640ns 980598 1a110850 fd5ff06f jal x0, -44 +55782924ns 980603 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55783208ns 980608 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55783606ns 980615 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55783776ns 980618 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55784231ns 980626 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55784401ns 980629 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55784686ns 980634 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55784970ns 980639 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55785254ns 980644 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55785709ns 980652 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55785879ns 980655 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55786163ns 980660 1a110850 fd5ff06f jal x0, -44 +55786447ns 980665 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55786732ns 980670 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55787129ns 980677 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55787300ns 980680 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55787755ns 980688 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55787925ns 980691 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55788209ns 980696 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55788493ns 980701 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55788778ns 980706 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55789232ns 980714 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55789403ns 980717 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55789687ns 980722 1a110850 fd5ff06f jal x0, -44 +55789971ns 980727 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55790255ns 980732 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55790653ns 980739 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55790823ns 980742 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55791278ns 980750 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55791449ns 980753 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55791733ns 980758 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55792017ns 980763 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55792301ns 980768 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55792756ns 980776 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55792926ns 980779 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55793210ns 980784 1a110850 fd5ff06f jal x0, -44 +55793495ns 980789 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55793779ns 980794 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55794177ns 980801 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55794347ns 980804 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55794802ns 980812 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55794972ns 980815 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55795256ns 980820 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55795541ns 980825 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55795825ns 980830 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55796279ns 980838 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55796450ns 980841 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55796734ns 980846 1a110850 fd5ff06f jal x0, -44 +55797018ns 980851 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55797302ns 980856 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55797700ns 980863 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55797871ns 980866 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55798325ns 980874 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55798496ns 980877 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55798780ns 980882 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55799064ns 980887 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55799348ns 980892 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55799803ns 980900 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55799973ns 980903 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55800258ns 980908 1a110850 fd5ff06f jal x0, -44 +55800542ns 980913 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55800826ns 980918 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55801224ns 980925 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55801394ns 980928 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55801849ns 980936 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55802019ns 980939 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55802304ns 980944 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55802588ns 980949 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55802872ns 980954 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55803327ns 980962 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55803497ns 980965 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55803781ns 980970 1a110850 fd5ff06f jal x0, -44 +55804065ns 980975 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55804349ns 980980 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55804747ns 980987 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55804918ns 980990 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55805372ns 980998 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55805543ns 981001 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55805827ns 981006 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55806111ns 981011 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55806395ns 981016 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55806850ns 981024 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55807021ns 981027 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55807305ns 981032 1a110850 fd5ff06f jal x0, -44 +55807589ns 981037 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55807873ns 981042 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55808271ns 981049 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55808441ns 981052 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55808896ns 981060 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55809067ns 981063 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55809351ns 981068 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55809635ns 981073 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55809919ns 981078 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55810374ns 981086 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55810544ns 981089 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55810828ns 981094 1a110850 fd5ff06f jal x0, -44 +55811112ns 981099 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55811397ns 981104 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55811794ns 981111 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55811965ns 981114 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55812420ns 981122 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55812590ns 981125 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55812874ns 981130 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55813158ns 981135 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55813443ns 981140 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55813897ns 981148 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55814068ns 981151 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55814352ns 981156 1a110850 fd5ff06f jal x0, -44 +55814636ns 981161 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55814920ns 981166 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55815318ns 981173 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55815489ns 981176 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55815943ns 981184 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55816114ns 981187 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55816398ns 981192 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55816682ns 981197 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55816966ns 981202 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55817421ns 981210 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55817591ns 981213 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55817875ns 981218 1a110850 fd5ff06f jal x0, -44 +55818160ns 981223 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55818444ns 981228 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55818842ns 981235 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55819012ns 981238 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55819467ns 981246 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55819637ns 981249 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55819921ns 981254 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55820206ns 981259 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55820490ns 981264 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55820944ns 981272 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55821115ns 981275 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55821399ns 981280 1a110850 fd5ff06f jal x0, -44 +55821683ns 981285 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55821967ns 981290 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55822365ns 981297 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55822536ns 981300 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55822990ns 981308 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55823161ns 981311 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55823445ns 981316 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55823729ns 981321 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55824013ns 981326 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55824468ns 981334 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55824639ns 981337 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55824923ns 981342 1a110850 fd5ff06f jal x0, -44 +55825207ns 981347 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55825491ns 981352 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55825889ns 981359 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55826059ns 981362 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55826514ns 981370 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55826684ns 981373 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55826969ns 981378 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55827253ns 981383 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55827537ns 981388 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55827992ns 981396 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55828162ns 981399 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55828446ns 981404 1a110850 fd5ff06f jal x0, -44 +55828730ns 981409 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55829015ns 981414 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55829412ns 981421 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55829583ns 981424 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55830038ns 981432 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55830208ns 981435 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55830492ns 981440 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55830776ns 981445 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55831061ns 981450 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55831515ns 981458 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55831686ns 981461 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55831970ns 981466 1a110850 fd5ff06f jal x0, -44 +55832254ns 981471 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55832538ns 981476 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55832936ns 981483 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55833106ns 981486 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55833561ns 981494 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55833732ns 981497 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55834016ns 981502 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55834300ns 981507 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55834584ns 981512 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55835039ns 981520 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55835209ns 981523 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55835493ns 981528 1a110850 fd5ff06f jal x0, -44 +55835778ns 981533 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55836062ns 981538 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55836460ns 981545 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55836630ns 981548 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55837085ns 981556 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55837255ns 981559 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55837539ns 981564 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55837824ns 981569 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55838108ns 981574 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55838562ns 981582 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55838733ns 981585 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55839017ns 981590 1a110850 fd5ff06f jal x0, -44 +55839301ns 981595 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55839585ns 981600 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55839983ns 981607 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55840154ns 981610 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55840608ns 981618 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55840779ns 981621 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55841063ns 981626 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55841347ns 981631 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55841631ns 981636 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55842086ns 981644 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55842256ns 981647 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55842541ns 981652 1a110850 fd5ff06f jal x0, -44 +55842825ns 981657 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55843109ns 981662 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55843507ns 981669 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55843677ns 981672 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55844132ns 981680 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55844302ns 981683 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55844587ns 981688 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55844871ns 981693 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55845155ns 981698 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55845610ns 981706 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55845780ns 981709 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55846064ns 981714 1a110850 fd5ff06f jal x0, -44 +55846348ns 981719 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55846632ns 981724 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55847030ns 981731 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55847201ns 981734 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55847655ns 981742 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55847826ns 981745 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55848110ns 981750 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55848394ns 981755 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55848678ns 981760 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55849133ns 981768 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55849304ns 981771 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55849588ns 981776 1a110850 fd5ff06f jal x0, -44 +55849872ns 981781 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55850156ns 981786 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55850554ns 981793 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55850724ns 981796 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55851179ns 981804 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55851350ns 981807 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55851634ns 981812 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55851918ns 981817 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55852202ns 981822 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55852657ns 981830 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55852827ns 981833 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55853111ns 981838 1a110850 fd5ff06f jal x0, -44 +55853395ns 981843 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55853680ns 981848 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55854077ns 981855 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55854248ns 981858 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55854703ns 981866 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55854873ns 981869 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55855157ns 981874 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55855441ns 981879 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55855726ns 981884 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55856180ns 981892 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55856351ns 981895 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55856635ns 981900 1a110850 fd5ff06f jal x0, -44 +55856919ns 981905 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55857203ns 981910 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55857601ns 981917 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55857772ns 981920 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55858226ns 981928 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55858397ns 981931 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55858681ns 981936 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55858965ns 981941 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55859249ns 981946 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55859704ns 981954 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55859874ns 981957 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55860159ns 981962 1a110850 fd5ff06f jal x0, -44 +55860443ns 981967 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55860727ns 981972 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55861125ns 981979 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55861295ns 981982 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55861750ns 981990 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55861920ns 981993 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55862204ns 981998 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55862489ns 982003 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55862773ns 982008 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55863227ns 982016 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55863398ns 982019 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55863682ns 982024 1a110850 fd5ff06f jal x0, -44 +55863966ns 982029 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55864250ns 982034 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55864648ns 982041 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55864819ns 982044 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55865273ns 982052 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55865444ns 982055 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55865728ns 982060 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55866012ns 982065 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55866296ns 982070 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55866751ns 982078 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55866922ns 982081 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55867206ns 982086 1a110850 fd5ff06f jal x0, -44 +55867490ns 982091 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55867774ns 982096 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55868172ns 982103 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55868342ns 982106 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55868797ns 982114 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55868967ns 982117 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55869252ns 982122 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55869536ns 982127 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55869820ns 982132 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55870275ns 982140 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55870445ns 982143 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55870729ns 982148 1a110850 fd5ff06f jal x0, -44 +55871013ns 982153 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55871298ns 982158 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55871695ns 982165 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55871866ns 982168 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55872321ns 982176 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55872491ns 982179 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55872775ns 982184 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55873059ns 982189 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55873344ns 982194 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55873798ns 982202 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55873969ns 982205 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55874253ns 982210 1a110850 fd5ff06f jal x0, -44 +55874537ns 982215 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55874821ns 982220 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55875219ns 982227 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55875389ns 982230 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55875844ns 982238 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55876015ns 982241 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55876299ns 982246 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55876583ns 982251 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55876867ns 982256 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55877322ns 982264 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55877492ns 982267 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55877776ns 982272 1a110850 fd5ff06f jal x0, -44 +55878061ns 982277 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55878345ns 982282 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55878743ns 982289 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55878913ns 982292 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55879368ns 982300 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55879538ns 982303 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55879822ns 982308 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55880107ns 982313 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55880391ns 982318 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55880845ns 982326 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55881016ns 982329 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55881300ns 982334 1a110850 fd5ff06f jal x0, -44 +55881584ns 982339 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55881868ns 982344 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55882266ns 982351 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55882437ns 982354 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55882891ns 982362 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55883062ns 982365 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55883346ns 982370 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55883630ns 982375 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55883914ns 982380 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55884369ns 982388 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55884539ns 982391 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55884824ns 982396 1a110850 fd5ff06f jal x0, -44 +55885108ns 982401 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55885392ns 982406 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55885790ns 982413 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55885960ns 982416 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55886415ns 982424 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55886585ns 982427 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55886870ns 982432 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55887154ns 982437 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55887438ns 982442 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55887893ns 982450 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55888063ns 982453 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55888347ns 982458 1a110850 fd5ff06f jal x0, -44 +55888631ns 982463 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55888915ns 982468 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55889313ns 982475 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55889484ns 982478 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55889938ns 982486 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55890109ns 982489 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55890393ns 982494 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55890677ns 982499 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55890961ns 982504 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55891416ns 982512 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55891587ns 982515 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55891871ns 982520 1a110850 fd5ff06f jal x0, -44 +55892155ns 982525 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55892439ns 982530 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55892837ns 982537 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55893007ns 982540 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55893462ns 982548 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55893633ns 982551 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55893917ns 982556 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55894201ns 982561 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55894485ns 982566 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55894940ns 982574 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55895110ns 982577 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55895394ns 982582 1a110850 fd5ff06f jal x0, -44 +55895679ns 982587 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55895963ns 982592 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55896360ns 982599 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55896531ns 982602 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55896986ns 982610 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55897156ns 982613 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55897440ns 982618 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55897724ns 982623 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55898009ns 982628 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55898463ns 982636 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55898634ns 982639 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55898918ns 982644 1a110850 fd5ff06f jal x0, -44 +55899202ns 982649 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55899486ns 982654 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55899884ns 982661 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55900055ns 982664 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55900509ns 982672 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55900680ns 982675 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55900964ns 982680 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55901248ns 982685 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55901532ns 982690 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55901987ns 982698 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55902157ns 982701 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55902442ns 982706 1a110850 fd5ff06f jal x0, -44 +55902726ns 982711 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55903010ns 982716 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55903408ns 982723 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55903578ns 982726 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55904033ns 982734 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55904203ns 982737 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55904487ns 982742 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55904772ns 982747 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55905056ns 982752 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55905510ns 982760 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55905681ns 982763 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55905965ns 982768 1a110850 fd5ff06f jal x0, -44 +55906249ns 982773 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55906533ns 982778 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55906931ns 982785 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55907102ns 982788 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55907556ns 982796 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55907727ns 982799 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55908011ns 982804 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55908295ns 982809 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55908579ns 982814 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55909034ns 982822 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55909205ns 982825 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55909489ns 982830 1a110850 fd5ff06f jal x0, -44 +55909773ns 982835 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55910057ns 982840 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55910455ns 982847 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55910625ns 982850 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55911080ns 982858 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55911250ns 982861 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55911535ns 982866 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55911819ns 982871 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55912103ns 982876 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55912558ns 982884 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55912728ns 982887 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55913012ns 982892 1a110850 fd5ff06f jal x0, -44 +55913296ns 982897 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55913581ns 982902 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55913978ns 982909 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55914149ns 982912 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55914604ns 982920 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55914774ns 982923 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55915058ns 982928 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55915342ns 982933 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55915627ns 982938 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55916081ns 982946 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55916252ns 982949 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55916536ns 982954 1a110850 fd5ff06f jal x0, -44 +55916820ns 982959 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55917104ns 982964 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55917502ns 982971 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55917672ns 982974 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55918127ns 982982 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55918298ns 982985 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55918582ns 982990 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55918866ns 982995 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55919150ns 983000 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55919605ns 983008 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55919775ns 983011 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55920059ns 983016 1a110850 fd5ff06f jal x0, -44 +55920344ns 983021 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55920628ns 983026 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55921026ns 983033 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55921196ns 983036 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55921651ns 983044 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55921821ns 983047 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55922105ns 983052 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55922390ns 983057 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55922674ns 983062 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55923128ns 983070 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55923299ns 983073 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55923583ns 983078 1a110850 fd5ff06f jal x0, -44 +55923867ns 983083 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55924151ns 983088 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55924549ns 983095 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55924720ns 983098 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55925174ns 983106 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55925345ns 983109 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55925629ns 983114 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55925913ns 983119 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55926197ns 983124 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55926652ns 983132 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55926822ns 983135 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55927107ns 983140 1a110850 fd5ff06f jal x0, -44 +55927391ns 983145 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55927675ns 983150 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55928073ns 983157 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55928243ns 983160 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55928698ns 983168 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55928868ns 983171 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55929153ns 983176 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55929437ns 983181 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55929721ns 983186 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55930176ns 983194 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55930346ns 983197 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55930630ns 983202 1a110850 fd5ff06f jal x0, -44 +55930914ns 983207 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55931199ns 983212 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55931596ns 983219 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55931767ns 983222 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55932221ns 983230 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55932392ns 983233 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55932676ns 983238 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55932960ns 983243 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55933244ns 983248 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55933699ns 983256 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55933870ns 983259 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55934154ns 983264 1a110850 fd5ff06f jal x0, -44 +55934438ns 983269 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55934722ns 983274 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55935120ns 983281 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55935290ns 983284 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55935745ns 983292 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55935916ns 983295 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55936200ns 983300 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55936484ns 983305 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55936768ns 983310 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55937223ns 983318 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55937393ns 983321 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55937677ns 983326 1a110850 fd5ff06f jal x0, -44 +55937962ns 983331 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55938246ns 983336 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55938643ns 983343 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55938814ns 983346 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55939269ns 983354 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55939439ns 983357 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55939723ns 983362 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55940007ns 983367 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55940292ns 983372 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55940746ns 983380 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55940917ns 983383 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55941201ns 983388 1a110850 fd5ff06f jal x0, -44 +55941485ns 983393 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55941769ns 983398 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55942167ns 983405 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55942338ns 983408 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55942792ns 983416 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55942963ns 983419 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55943247ns 983424 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55943531ns 983429 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55943815ns 983434 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55944270ns 983442 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55944440ns 983445 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55944725ns 983450 1a110850 fd5ff06f jal x0, -44 +55945009ns 983455 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55945293ns 983460 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55945691ns 983467 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55945861ns 983470 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55946316ns 983478 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55946486ns 983481 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55946770ns 983486 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55947055ns 983491 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55947339ns 983496 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55947793ns 983504 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55947964ns 983507 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55948248ns 983512 1a110850 fd5ff06f jal x0, -44 +55948532ns 983517 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55948816ns 983522 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55949214ns 983529 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55949385ns 983532 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55949839ns 983540 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55950010ns 983543 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55950294ns 983548 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55950578ns 983553 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55950862ns 983558 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55951317ns 983566 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55951488ns 983569 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55951772ns 983574 1a110850 fd5ff06f jal x0, -44 +55952056ns 983579 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55952340ns 983584 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55952738ns 983591 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55952908ns 983594 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55953363ns 983602 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55953533ns 983605 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55953818ns 983610 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55954102ns 983615 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55954386ns 983620 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55954841ns 983628 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55955011ns 983631 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55955295ns 983636 1a110850 fd5ff06f jal x0, -44 +55955579ns 983641 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55955864ns 983646 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55956261ns 983653 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55956432ns 983656 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55956887ns 983664 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55957057ns 983667 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55957341ns 983672 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55957625ns 983677 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55957910ns 983682 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55958364ns 983690 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55958535ns 983693 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55958819ns 983698 1a110850 fd5ff06f jal x0, -44 +55959103ns 983703 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55959387ns 983708 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55959785ns 983715 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55959955ns 983718 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55960410ns 983726 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55960581ns 983729 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55960865ns 983734 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55961149ns 983739 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55961433ns 983744 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55961888ns 983752 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55962058ns 983755 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55962342ns 983760 1a110850 fd5ff06f jal x0, -44 +55962627ns 983765 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55962911ns 983770 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55963309ns 983777 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55963479ns 983780 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55963934ns 983788 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55964104ns 983791 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55964388ns 983796 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55964673ns 983801 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55964957ns 983806 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55965411ns 983814 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55965582ns 983817 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55965866ns 983822 1a110850 fd5ff06f jal x0, -44 +55966150ns 983827 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55966434ns 983832 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55966832ns 983839 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55967003ns 983842 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55967457ns 983850 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55967628ns 983853 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55967912ns 983858 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55968196ns 983863 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55968480ns 983868 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55968935ns 983876 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55969105ns 983879 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55969390ns 983884 1a110850 fd5ff06f jal x0, -44 +55969674ns 983889 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55969958ns 983894 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55970356ns 983901 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55970526ns 983904 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55970981ns 983912 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55971151ns 983915 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55971436ns 983920 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55971720ns 983925 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55972004ns 983930 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55972459ns 983938 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55972629ns 983941 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55972913ns 983946 1a110850 fd5ff06f jal x0, -44 +55973197ns 983951 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55973482ns 983956 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55973879ns 983963 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55974050ns 983966 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55974504ns 983974 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55974675ns 983977 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55974959ns 983982 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55975243ns 983987 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55975527ns 983992 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55975982ns 984000 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55976153ns 984003 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55976437ns 984008 1a110850 fd5ff06f jal x0, -44 +55976721ns 984013 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55977005ns 984018 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55977403ns 984025 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55977573ns 984028 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55978028ns 984036 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55978199ns 984039 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55978483ns 984044 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55978767ns 984049 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55979051ns 984054 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55979506ns 984062 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55979676ns 984065 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55979960ns 984070 1a110850 fd5ff06f jal x0, -44 +55980245ns 984075 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55980529ns 984080 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55980927ns 984087 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55981097ns 984090 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55981552ns 984098 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55981722ns 984101 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55982006ns 984106 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55982290ns 984111 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55982575ns 984116 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55983029ns 984124 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55983200ns 984127 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55983484ns 984132 1a110850 fd5ff06f jal x0, -44 +55983768ns 984137 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55984052ns 984142 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55984450ns 984149 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55984621ns 984152 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55985075ns 984160 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55985246ns 984163 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55985530ns 984168 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55985814ns 984173 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55986098ns 984178 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55986553ns 984186 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55986723ns 984189 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55987008ns 984194 1a110850 fd5ff06f jal x0, -44 +55987292ns 984199 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55987576ns 984204 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55987974ns 984211 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55988144ns 984214 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55988599ns 984222 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55988769ns 984225 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55989053ns 984230 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55989338ns 984235 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55989622ns 984240 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55990076ns 984248 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55990247ns 984251 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55990531ns 984256 1a110850 fd5ff06f jal x0, -44 +55990815ns 984261 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55991099ns 984266 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55991497ns 984273 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55991668ns 984276 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55992122ns 984284 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55992293ns 984287 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55992577ns 984292 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55992861ns 984297 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55993145ns 984302 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55993600ns 984310 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55993771ns 984313 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55994055ns 984318 1a110850 fd5ff06f jal x0, -44 +55994339ns 984323 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55994623ns 984328 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55995021ns 984335 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55995191ns 984338 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55995646ns 984346 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55995816ns 984349 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55996101ns 984354 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55996385ns 984359 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55996669ns 984364 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55997124ns 984372 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +55997294ns 984375 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +55997578ns 984380 1a110850 fd5ff06f jal x0, -44 +55997862ns 984385 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55998147ns 984390 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +55998544ns 984397 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +55998715ns 984400 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +55999170ns 984408 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +55999340ns 984411 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +55999624ns 984416 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +55999908ns 984421 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56000193ns 984426 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56000647ns 984434 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56000818ns 984437 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56001102ns 984442 1a110850 fd5ff06f jal x0, -44 +56001386ns 984447 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56001670ns 984452 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56002068ns 984459 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56002239ns 984462 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56002693ns 984470 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56002864ns 984473 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56003148ns 984478 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56003432ns 984483 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56003716ns 984488 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56004171ns 984496 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56004341ns 984499 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56004625ns 984504 1a110850 fd5ff06f jal x0, -44 +56004910ns 984509 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56005194ns 984514 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56005592ns 984521 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56005762ns 984524 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56006217ns 984532 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56006387ns 984535 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56006671ns 984540 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56006956ns 984545 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56007240ns 984550 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56007694ns 984558 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56007865ns 984561 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56008149ns 984566 1a110850 fd5ff06f jal x0, -44 +56008433ns 984571 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56008717ns 984576 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56009115ns 984583 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56009286ns 984586 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56009740ns 984594 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56009911ns 984597 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56010195ns 984602 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56010479ns 984607 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56010763ns 984612 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56011218ns 984620 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56011388ns 984623 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56011673ns 984628 1a110850 fd5ff06f jal x0, -44 +56011957ns 984633 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56012241ns 984638 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56012639ns 984645 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56012809ns 984648 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56013264ns 984656 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56013434ns 984659 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56013719ns 984664 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56014003ns 984669 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56014287ns 984674 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56014742ns 984682 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56014912ns 984685 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56015196ns 984690 1a110850 fd5ff06f jal x0, -44 +56015480ns 984695 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56015765ns 984700 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56016162ns 984707 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56016333ns 984710 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56016787ns 984718 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56016958ns 984721 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56017242ns 984726 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56017526ns 984731 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56017810ns 984736 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56018265ns 984744 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56018436ns 984747 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56018720ns 984752 1a110850 fd5ff06f jal x0, -44 +56019004ns 984757 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56019288ns 984762 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56019686ns 984769 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56019856ns 984772 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56020311ns 984780 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56020482ns 984783 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56020766ns 984788 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56021050ns 984793 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56021334ns 984798 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56021789ns 984806 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56021959ns 984809 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56022243ns 984814 1a110850 fd5ff06f jal x0, -44 +56022528ns 984819 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56022812ns 984824 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56023210ns 984831 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56023380ns 984834 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56023835ns 984842 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56024005ns 984845 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56024289ns 984850 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56024573ns 984855 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56024858ns 984860 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56025312ns 984868 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56025483ns 984871 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56025767ns 984876 1a110850 fd5ff06f jal x0, -44 +56026051ns 984881 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56026335ns 984886 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56026733ns 984893 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56026904ns 984896 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56027358ns 984904 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56027529ns 984907 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56027813ns 984912 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56028097ns 984917 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56028381ns 984922 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56028836ns 984930 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56029006ns 984933 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56029291ns 984938 1a110850 fd5ff06f jal x0, -44 +56029575ns 984943 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56029859ns 984948 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56030257ns 984955 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56030427ns 984958 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56030882ns 984966 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56031052ns 984969 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56031336ns 984974 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56031621ns 984979 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56031905ns 984984 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56032359ns 984992 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56032530ns 984995 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56032814ns 985000 1a110850 fd5ff06f jal x0, -44 +56033098ns 985005 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56033382ns 985010 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56033780ns 985017 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56033951ns 985020 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56034405ns 985028 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56034576ns 985031 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56034860ns 985036 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56035144ns 985041 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56035428ns 985046 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56035883ns 985054 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56036054ns 985057 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56036338ns 985062 1a110850 fd5ff06f jal x0, -44 +56036622ns 985067 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56036906ns 985072 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56037304ns 985079 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56037474ns 985082 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56037929ns 985090 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56038099ns 985093 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56038384ns 985098 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56038668ns 985103 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56038952ns 985108 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56039407ns 985116 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56039577ns 985119 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56039861ns 985124 1a110850 fd5ff06f jal x0, -44 +56040145ns 985129 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56040430ns 985134 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56040827ns 985141 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56040998ns 985144 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56041453ns 985152 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56041623ns 985155 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56041907ns 985160 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56042191ns 985165 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56042476ns 985170 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56042930ns 985178 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56043101ns 985181 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56043385ns 985186 1a110850 fd5ff06f jal x0, -44 +56043669ns 985191 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56043953ns 985196 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56044351ns 985203 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56044522ns 985206 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56044976ns 985214 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56045147ns 985217 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56045431ns 985222 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56045715ns 985227 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56045999ns 985232 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56046454ns 985240 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56046624ns 985243 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56046908ns 985248 1a110850 fd5ff06f jal x0, -44 +56047193ns 985253 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56047477ns 985258 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56047875ns 985265 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56048045ns 985268 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56048500ns 985276 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56048670ns 985279 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56048954ns 985284 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56049239ns 985289 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56049523ns 985294 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56049977ns 985302 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56050148ns 985305 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56050432ns 985310 1a110850 fd5ff06f jal x0, -44 +56050716ns 985315 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56051000ns 985320 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56051398ns 985327 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56051569ns 985330 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56052023ns 985338 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56052194ns 985341 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56052478ns 985346 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56052762ns 985351 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56053046ns 985356 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56053501ns 985364 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56053671ns 985367 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56053956ns 985372 1a110850 fd5ff06f jal x0, -44 +56054240ns 985377 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56054524ns 985382 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56054922ns 985389 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56055092ns 985392 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56055547ns 985400 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56055717ns 985403 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56056002ns 985408 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56056286ns 985413 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56056570ns 985418 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56057025ns 985426 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56057195ns 985429 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56057479ns 985434 1a110850 fd5ff06f jal x0, -44 +56057763ns 985439 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56058048ns 985444 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56058445ns 985451 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56058616ns 985454 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56059071ns 985462 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56059241ns 985465 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56059525ns 985470 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56059809ns 985475 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56060093ns 985480 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56060548ns 985488 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56060719ns 985491 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56061003ns 985496 1a110850 fd5ff06f jal x0, -44 +56061287ns 985501 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56061571ns 985506 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56061969ns 985513 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56062139ns 985516 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56062594ns 985524 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56062765ns 985527 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56063049ns 985532 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56063333ns 985537 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56063617ns 985542 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56064072ns 985550 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56064242ns 985553 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56064526ns 985558 1a110850 fd5ff06f jal x0, -44 +56064811ns 985563 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56065095ns 985568 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56065493ns 985575 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56065663ns 985578 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56066118ns 985586 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56066288ns 985589 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56066572ns 985594 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56066856ns 985599 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56067141ns 985604 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56067595ns 985612 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56067766ns 985615 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56068050ns 985620 1a110850 fd5ff06f jal x0, -44 +56068334ns 985625 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56068618ns 985630 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56069016ns 985637 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56069187ns 985640 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56069641ns 985648 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56069812ns 985651 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56070096ns 985656 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56070380ns 985661 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56070664ns 985666 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56071119ns 985674 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56071289ns 985677 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56071574ns 985682 1a110850 fd5ff06f jal x0, -44 +56071858ns 985687 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56072142ns 985692 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56072540ns 985699 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56072710ns 985702 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56073165ns 985710 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56073335ns 985713 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56073619ns 985718 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56073904ns 985723 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56074188ns 985728 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56074642ns 985736 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56074813ns 985739 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56075097ns 985744 1a110850 fd5ff06f jal x0, -44 +56075381ns 985749 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56075665ns 985754 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56076063ns 985761 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56076234ns 985764 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56076688ns 985772 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56076859ns 985775 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56077143ns 985780 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56077427ns 985785 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56077711ns 985790 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56078166ns 985798 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56078337ns 985801 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56078621ns 985806 1a110850 fd5ff06f jal x0, -44 +56078905ns 985811 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56079189ns 985816 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56079587ns 985823 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56079757ns 985826 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56080212ns 985834 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56080383ns 985837 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56080667ns 985842 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56080951ns 985847 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56081235ns 985852 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56081690ns 985860 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56081860ns 985863 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56082144ns 985868 1a110850 fd5ff06f jal x0, -44 +56082428ns 985873 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56082713ns 985878 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56083110ns 985885 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56083281ns 985888 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56083736ns 985896 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56083906ns 985899 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56084190ns 985904 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56084474ns 985909 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56084759ns 985914 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56085213ns 985922 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56085384ns 985925 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56085668ns 985930 1a110850 fd5ff06f jal x0, -44 +56085952ns 985935 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56086236ns 985940 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56086634ns 985947 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56086805ns 985950 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56087259ns 985958 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56087430ns 985961 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56087714ns 985966 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56087998ns 985971 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56088282ns 985976 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56088737ns 985984 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56088907ns 985987 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56089191ns 985992 1a110850 fd5ff06f jal x0, -44 +56089476ns 985997 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56089760ns 986002 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56090158ns 986009 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56090328ns 986012 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56090783ns 986020 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56090953ns 986023 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56091237ns 986028 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56091522ns 986033 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56091806ns 986038 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56092260ns 986046 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56092431ns 986049 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56092715ns 986054 1a110850 fd5ff06f jal x0, -44 +56092999ns 986059 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56093283ns 986064 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56093681ns 986071 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56093852ns 986074 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56094306ns 986082 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56094477ns 986085 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56094761ns 986090 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56095045ns 986095 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56095329ns 986100 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56095784ns 986108 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56095954ns 986111 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56096239ns 986116 1a110850 fd5ff06f jal x0, -44 +56096523ns 986121 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56096807ns 986126 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56097205ns 986133 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56097375ns 986136 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56097830ns 986144 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56098000ns 986147 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56098285ns 986152 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56098569ns 986157 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56098853ns 986162 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56099308ns 986170 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56099478ns 986173 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56099762ns 986178 1a110850 fd5ff06f jal x0, -44 +56100046ns 986183 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56100331ns 986188 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56100728ns 986195 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56100899ns 986198 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56101354ns 986206 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56101524ns 986209 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56101808ns 986214 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56102092ns 986219 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56102376ns 986224 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56102831ns 986232 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56103002ns 986235 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56103286ns 986240 1a110850 fd5ff06f jal x0, -44 +56103570ns 986245 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56103854ns 986250 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56104252ns 986257 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56104422ns 986260 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56104877ns 986268 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56105048ns 986271 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56105332ns 986276 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56105616ns 986281 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56105900ns 986286 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56106355ns 986294 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56106525ns 986297 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56106809ns 986302 1a110850 fd5ff06f jal x0, -44 +56107094ns 986307 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56107378ns 986312 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56107776ns 986319 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56107946ns 986322 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56108401ns 986330 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56108571ns 986333 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56108855ns 986338 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56109139ns 986343 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56109424ns 986348 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56109878ns 986356 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56110049ns 986359 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56110333ns 986364 1a110850 fd5ff06f jal x0, -44 +56110617ns 986369 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56110901ns 986374 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56111299ns 986381 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56111470ns 986384 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56111924ns 986392 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56112095ns 986395 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56112379ns 986400 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56112663ns 986405 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56112947ns 986410 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56113402ns 986418 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56113572ns 986421 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56113857ns 986426 1a110850 fd5ff06f jal x0, -44 +56114141ns 986431 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56114425ns 986436 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56114823ns 986443 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56114993ns 986446 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56115448ns 986454 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56115618ns 986457 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56115903ns 986462 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56116187ns 986467 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56116471ns 986472 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56116925ns 986480 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56117096ns 986483 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56117380ns 986488 1a110850 fd5ff06f jal x0, -44 +56117664ns 986493 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56117948ns 986498 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56118346ns 986505 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56118517ns 986508 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56118971ns 986516 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56119142ns 986519 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56119426ns 986524 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56119710ns 986529 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56119994ns 986534 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56120449ns 986542 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56120620ns 986545 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56120904ns 986550 1a110850 fd5ff06f jal x0, -44 +56121188ns 986555 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56121472ns 986560 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56121870ns 986567 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56122040ns 986570 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56122495ns 986578 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56122666ns 986581 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56122950ns 986586 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56123234ns 986591 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56123518ns 986596 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56123973ns 986604 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56124143ns 986607 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56124427ns 986612 1a110850 fd5ff06f jal x0, -44 +56124711ns 986617 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56124996ns 986622 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56125393ns 986629 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56125564ns 986632 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56126019ns 986640 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56126189ns 986643 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56126473ns 986648 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56126757ns 986653 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56127042ns 986658 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56127496ns 986666 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56127667ns 986669 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56127951ns 986674 1a110850 fd5ff06f jal x0, -44 +56128235ns 986679 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56128519ns 986684 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56128917ns 986691 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56129088ns 986694 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56129542ns 986702 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56129713ns 986705 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56129997ns 986710 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56130281ns 986715 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56130565ns 986720 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56131020ns 986728 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56131190ns 986731 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56131474ns 986736 1a110850 fd5ff06f jal x0, -44 +56131759ns 986741 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56132043ns 986746 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56132441ns 986753 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56132611ns 986756 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56133066ns 986764 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56133236ns 986767 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56133520ns 986772 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56133805ns 986777 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56134089ns 986782 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56134543ns 986790 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56134714ns 986793 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56134998ns 986798 1a110850 fd5ff06f jal x0, -44 +56135282ns 986803 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56135566ns 986808 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56135964ns 986815 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56136135ns 986818 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56136589ns 986826 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56136760ns 986829 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56137044ns 986834 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56137328ns 986839 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56137612ns 986844 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56138067ns 986852 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56138237ns 986855 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56138522ns 986860 1a110850 fd5ff06f jal x0, -44 +56138806ns 986865 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56139090ns 986870 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56139488ns 986877 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56139658ns 986880 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56140113ns 986888 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56140283ns 986891 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56140568ns 986896 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56140852ns 986901 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56141136ns 986906 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56141591ns 986914 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56141761ns 986917 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56142045ns 986922 1a110850 fd5ff06f jal x0, -44 +56142329ns 986927 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56142614ns 986932 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56143011ns 986939 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56143182ns 986942 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56143637ns 986950 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56143807ns 986953 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56144091ns 986958 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56144375ns 986963 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56144659ns 986968 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56145114ns 986976 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56145285ns 986979 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56145569ns 986984 1a110850 fd5ff06f jal x0, -44 +56145853ns 986989 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56146137ns 986994 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56146535ns 987001 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56146705ns 987004 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56147160ns 987012 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56147331ns 987015 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56147615ns 987020 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56147899ns 987025 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56148183ns 987030 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56148638ns 987038 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56148808ns 987041 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56149092ns 987046 1a110850 fd5ff06f jal x0, -44 +56149377ns 987051 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56149661ns 987056 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56150059ns 987063 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56150229ns 987066 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56150684ns 987074 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56150854ns 987077 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56151138ns 987082 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56151423ns 987087 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56151707ns 987092 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56152161ns 987100 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56152332ns 987103 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56152616ns 987108 1a110850 fd5ff06f jal x0, -44 +56152900ns 987113 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56153184ns 987118 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56153582ns 987125 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56153753ns 987128 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56154207ns 987136 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56154378ns 987139 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56154662ns 987144 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56154946ns 987149 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56155230ns 987154 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56155685ns 987162 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56155855ns 987165 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56156140ns 987170 1a110850 fd5ff06f jal x0, -44 +56156424ns 987175 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56156708ns 987180 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56157106ns 987187 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56157276ns 987190 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56157731ns 987198 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56157901ns 987201 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56158186ns 987206 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56158470ns 987211 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56158754ns 987216 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56159208ns 987224 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56159379ns 987227 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56159663ns 987232 1a110850 fd5ff06f jal x0, -44 +56159947ns 987237 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56160231ns 987242 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56160629ns 987249 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56160800ns 987252 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56161254ns 987260 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56161425ns 987263 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56161709ns 987268 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56161993ns 987273 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56162277ns 987278 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56162732ns 987286 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56162903ns 987289 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56163187ns 987294 1a110850 fd5ff06f jal x0, -44 +56163471ns 987299 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56163755ns 987304 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56164153ns 987311 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56164323ns 987314 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56164778ns 987322 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56164949ns 987325 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56165233ns 987330 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56165517ns 987335 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56165801ns 987340 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56166256ns 987348 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56166426ns 987351 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56166710ns 987356 1a110850 fd5ff06f jal x0, -44 +56166994ns 987361 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56167279ns 987366 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56167676ns 987373 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56167847ns 987376 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56168302ns 987384 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56168472ns 987387 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56168756ns 987392 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56169040ns 987397 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56169325ns 987402 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56169779ns 987410 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56169950ns 987413 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56170234ns 987418 1a110850 fd5ff06f jal x0, -44 +56170518ns 987423 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56170802ns 987428 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56171200ns 987435 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56171371ns 987438 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56171825ns 987446 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56171996ns 987449 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56172280ns 987454 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56172564ns 987459 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56172848ns 987464 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56173303ns 987472 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56173473ns 987475 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56173757ns 987480 1a110850 fd5ff06f jal x0, -44 +56174042ns 987485 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56174326ns 987490 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56174724ns 987497 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56174894ns 987500 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56175349ns 987508 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56175519ns 987511 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56175803ns 987516 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56176088ns 987521 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56176372ns 987526 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56176826ns 987534 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56176997ns 987537 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56177281ns 987542 1a110850 fd5ff06f jal x0, -44 +56177565ns 987547 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56177849ns 987552 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56178247ns 987559 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56178418ns 987562 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56178872ns 987570 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56179043ns 987573 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56179327ns 987578 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56179611ns 987583 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56179895ns 987588 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56180350ns 987596 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56180520ns 987599 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56180805ns 987604 1a110850 fd5ff06f jal x0, -44 +56181089ns 987609 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56181373ns 987614 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56181771ns 987621 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56181941ns 987624 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56182396ns 987632 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56182566ns 987635 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56182851ns 987640 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56183135ns 987645 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56183419ns 987650 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56183874ns 987658 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56184044ns 987661 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56184328ns 987666 1a110850 fd5ff06f jal x0, -44 +56184612ns 987671 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56184897ns 987676 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56185294ns 987683 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56185465ns 987686 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56185920ns 987694 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56186090ns 987697 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56186374ns 987702 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56186658ns 987707 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56186943ns 987712 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56187397ns 987720 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56187568ns 987723 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56187852ns 987728 1a110850 fd5ff06f jal x0, -44 +56188136ns 987733 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56188420ns 987738 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56188818ns 987745 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56188988ns 987748 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56189443ns 987756 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56189614ns 987759 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56189898ns 987764 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56190182ns 987769 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56190466ns 987774 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56190921ns 987782 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56191091ns 987785 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56191375ns 987790 1a110850 fd5ff06f jal x0, -44 +56191660ns 987795 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56191944ns 987800 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56192342ns 987807 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56192512ns 987810 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56192967ns 987818 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56193137ns 987821 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56193421ns 987826 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56193706ns 987831 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56193990ns 987836 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56194444ns 987844 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56194615ns 987847 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56194899ns 987852 1a110850 fd5ff06f jal x0, -44 +56195183ns 987857 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56195467ns 987862 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56195865ns 987869 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56196036ns 987872 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56196490ns 987880 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56196661ns 987883 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56196945ns 987888 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56197229ns 987893 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56197513ns 987898 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56197968ns 987906 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56198138ns 987909 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56198423ns 987914 1a110850 fd5ff06f jal x0, -44 +56198707ns 987919 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56198991ns 987924 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56199389ns 987931 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56199559ns 987934 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56200014ns 987942 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56200184ns 987945 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56200469ns 987950 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56200753ns 987955 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56201037ns 987960 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56201491ns 987968 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56201662ns 987971 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56201946ns 987976 1a110850 fd5ff06f jal x0, -44 +56202230ns 987981 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56202514ns 987986 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56202912ns 987993 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56203083ns 987996 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56203537ns 988004 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56203708ns 988007 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56203992ns 988012 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56204276ns 988017 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56204560ns 988022 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56205015ns 988030 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56205186ns 988033 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56205470ns 988038 1a110850 fd5ff06f jal x0, -44 +56205754ns 988043 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56206038ns 988048 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56206436ns 988055 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56206606ns 988058 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56207061ns 988066 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56207232ns 988069 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56207516ns 988074 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56207800ns 988079 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56208084ns 988084 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56208539ns 988092 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56208709ns 988095 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56208993ns 988100 1a110850 fd5ff06f jal x0, -44 +56209277ns 988105 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56209562ns 988110 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56209959ns 988117 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56210130ns 988120 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56210585ns 988128 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56210755ns 988131 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56211039ns 988136 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56211323ns 988141 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56211608ns 988146 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56212062ns 988154 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56212233ns 988157 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56212517ns 988162 1a110850 fd5ff06f jal x0, -44 +56212801ns 988167 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56213085ns 988172 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56213483ns 988179 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56213654ns 988182 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56214108ns 988190 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56214279ns 988193 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56214563ns 988198 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56214847ns 988203 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56215131ns 988208 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56215586ns 988216 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56215756ns 988219 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56216040ns 988224 1a110850 fd5ff06f jal x0, -44 +56216325ns 988229 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56216609ns 988234 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56217007ns 988241 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56217177ns 988244 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56217632ns 988252 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56217802ns 988255 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56218086ns 988260 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56218371ns 988265 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56218655ns 988270 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56219109ns 988278 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56219280ns 988281 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56219564ns 988286 1a110850 fd5ff06f jal x0, -44 +56219848ns 988291 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56220132ns 988296 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56220530ns 988303 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56220701ns 988306 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56221155ns 988314 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56221326ns 988317 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56221610ns 988322 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56221894ns 988327 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56222178ns 988332 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56222633ns 988340 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56222803ns 988343 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56223088ns 988348 1a110850 fd5ff06f jal x0, -44 +56223372ns 988353 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56223656ns 988358 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56224054ns 988365 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56224224ns 988368 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56224679ns 988376 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56224849ns 988379 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56225134ns 988384 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56225418ns 988389 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56225702ns 988394 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56226157ns 988402 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56226327ns 988405 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56226611ns 988410 1a110850 fd5ff06f jal x0, -44 +56226895ns 988415 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56227180ns 988420 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56227577ns 988427 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56227748ns 988430 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56228203ns 988438 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56228373ns 988441 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56228657ns 988446 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56228941ns 988451 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56229226ns 988456 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56229680ns 988464 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56229851ns 988467 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56230135ns 988472 1a110850 fd5ff06f jal x0, -44 +56230419ns 988477 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56230703ns 988482 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56231101ns 988489 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56231271ns 988492 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56231726ns 988500 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56231897ns 988503 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56232181ns 988508 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56232465ns 988513 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56232749ns 988518 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56233204ns 988526 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56233374ns 988529 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56233658ns 988534 1a110850 fd5ff06f jal x0, -44 +56233943ns 988539 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56234227ns 988544 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56234625ns 988551 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56234795ns 988554 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56235250ns 988562 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56235420ns 988565 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56235704ns 988570 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56235989ns 988575 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56236273ns 988580 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56236727ns 988588 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56236898ns 988591 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56237182ns 988596 1a110850 fd5ff06f jal x0, -44 +56237466ns 988601 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56237750ns 988606 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56238148ns 988613 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56238319ns 988616 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56238773ns 988624 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56238944ns 988627 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56239228ns 988632 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56239512ns 988637 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56239796ns 988642 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56240251ns 988650 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56240421ns 988653 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56240706ns 988658 1a110850 fd5ff06f jal x0, -44 +56240990ns 988663 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56241274ns 988668 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56241672ns 988675 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56241842ns 988678 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56242297ns 988686 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56242467ns 988689 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56242752ns 988694 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56243036ns 988699 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56243320ns 988704 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56243775ns 988712 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56243945ns 988715 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56244229ns 988720 1a110850 fd5ff06f jal x0, -44 +56244513ns 988725 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56244797ns 988730 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56245195ns 988737 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56245366ns 988740 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56245820ns 988748 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56245991ns 988751 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56246275ns 988756 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56246559ns 988761 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56246843ns 988766 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56247298ns 988774 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56247469ns 988777 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56247753ns 988782 1a110850 fd5ff06f jal x0, -44 +56248037ns 988787 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56248321ns 988792 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56248719ns 988799 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56248889ns 988802 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56249344ns 988810 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56249515ns 988813 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56249799ns 988818 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56250083ns 988823 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56250367ns 988828 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56250822ns 988836 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56250992ns 988839 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56251276ns 988844 1a110850 fd5ff06f jal x0, -44 +56251560ns 988849 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56251845ns 988854 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56252242ns 988861 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56252413ns 988864 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56252868ns 988872 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56253038ns 988875 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56253322ns 988880 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56253606ns 988885 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56253891ns 988890 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56254345ns 988898 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56254516ns 988901 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56254800ns 988906 1a110850 fd5ff06f jal x0, -44 +56255084ns 988911 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56255368ns 988916 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56255766ns 988923 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56255937ns 988926 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56256391ns 988934 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56256562ns 988937 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56256846ns 988942 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56257130ns 988947 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56257414ns 988952 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56257869ns 988960 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56258039ns 988963 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56258323ns 988968 1a110850 fd5ff06f jal x0, -44 +56258608ns 988973 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56258892ns 988978 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56259290ns 988985 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56259460ns 988988 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56259915ns 988996 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56260085ns 988999 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56260369ns 989004 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56260654ns 989009 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56260938ns 989014 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56261392ns 989022 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56261563ns 989025 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56261847ns 989030 1a110850 fd5ff06f jal x0, -44 +56262131ns 989035 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56262415ns 989040 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56262813ns 989047 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56262984ns 989050 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56263438ns 989058 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56263609ns 989061 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56263893ns 989066 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56264177ns 989071 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56264461ns 989076 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56264916ns 989084 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56265087ns 989087 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56265371ns 989092 1a110850 fd5ff06f jal x0, -44 +56265655ns 989097 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56265939ns 989102 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56266337ns 989109 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56266507ns 989112 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56266962ns 989120 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56267132ns 989123 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56267417ns 989128 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56267701ns 989133 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56267985ns 989138 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56268440ns 989146 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56268610ns 989149 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56268894ns 989154 1a110850 fd5ff06f jal x0, -44 +56269178ns 989159 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56269463ns 989164 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56269860ns 989171 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56270031ns 989174 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56270486ns 989182 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56270656ns 989185 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56270940ns 989190 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56271224ns 989195 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56271509ns 989200 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56271963ns 989208 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56272134ns 989211 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56272418ns 989216 1a110850 fd5ff06f jal x0, -44 +56272702ns 989221 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56272986ns 989226 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56273384ns 989233 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56273554ns 989236 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56274009ns 989244 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56274180ns 989247 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56274464ns 989252 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56274748ns 989257 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56275032ns 989262 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56275487ns 989270 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56275657ns 989273 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56275941ns 989278 1a110850 fd5ff06f jal x0, -44 +56276226ns 989283 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56276510ns 989288 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56276908ns 989295 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56277078ns 989298 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56277533ns 989306 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56277703ns 989309 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56277987ns 989314 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56278272ns 989319 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56278556ns 989324 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56279010ns 989332 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56279181ns 989335 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56279465ns 989340 1a110850 fd5ff06f jal x0, -44 +56279749ns 989345 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56280033ns 989350 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56280431ns 989357 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56280602ns 989360 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56281056ns 989368 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56281227ns 989371 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56281511ns 989376 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56281795ns 989381 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56282079ns 989386 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56282534ns 989394 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56282704ns 989397 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56282989ns 989402 1a110850 fd5ff06f jal x0, -44 +56283273ns 989407 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56283557ns 989412 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56283955ns 989419 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56284125ns 989422 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56284580ns 989430 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56284750ns 989433 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56285035ns 989438 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56285319ns 989443 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56285603ns 989448 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56286058ns 989456 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56286228ns 989459 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56286512ns 989464 1a110850 fd5ff06f jal x0, -44 +56286796ns 989469 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56287080ns 989474 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56287478ns 989481 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56287649ns 989484 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56288103ns 989492 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56288274ns 989495 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56288558ns 989500 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56288842ns 989505 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56289126ns 989510 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56289581ns 989518 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56289752ns 989521 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56290036ns 989526 1a110850 fd5ff06f jal x0, -44 +56290320ns 989531 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56290604ns 989536 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56291002ns 989543 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56291172ns 989546 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56291627ns 989554 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56291798ns 989557 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56292082ns 989562 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56292366ns 989567 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56292650ns 989572 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56293105ns 989580 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56293275ns 989583 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56293559ns 989588 1a110850 fd5ff06f jal x0, -44 +56293843ns 989593 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56294128ns 989598 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56294525ns 989605 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56294696ns 989608 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56295151ns 989616 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56295321ns 989619 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56295605ns 989624 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56295889ns 989629 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56296174ns 989634 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56296628ns 989642 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56296799ns 989645 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56297083ns 989650 1a110850 fd5ff06f jal x0, -44 +56297367ns 989655 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56297651ns 989660 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56298049ns 989667 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56298220ns 989670 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56298674ns 989678 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56298845ns 989681 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56299129ns 989686 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56299413ns 989691 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56299697ns 989696 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56300152ns 989704 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56300322ns 989707 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56300607ns 989712 1a110850 fd5ff06f jal x0, -44 +56300891ns 989717 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56301175ns 989722 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56301573ns 989729 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56301743ns 989732 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56302198ns 989740 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56302368ns 989743 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56302652ns 989748 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56302937ns 989753 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56303221ns 989758 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56303675ns 989766 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56303846ns 989769 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56304130ns 989774 1a110850 fd5ff06f jal x0, -44 +56304414ns 989779 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56304698ns 989784 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56305096ns 989791 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56305267ns 989794 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56305721ns 989802 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56305892ns 989805 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56306176ns 989810 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56306460ns 989815 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56306744ns 989820 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56307199ns 989828 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56307370ns 989831 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56307654ns 989836 1a110850 fd5ff06f jal x0, -44 +56307938ns 989841 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56308222ns 989846 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56308620ns 989853 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56308790ns 989856 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56309245ns 989864 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56309415ns 989867 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56309700ns 989872 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56309984ns 989877 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56310268ns 989882 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56310723ns 989890 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56310893ns 989893 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56311177ns 989898 1a110850 fd5ff06f jal x0, -44 +56311461ns 989903 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56311746ns 989908 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56312143ns 989915 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56312314ns 989918 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56312769ns 989926 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56312939ns 989929 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56313223ns 989934 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56313507ns 989939 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56313792ns 989944 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56314246ns 989952 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56314417ns 989955 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56314701ns 989960 1a110850 fd5ff06f jal x0, -44 +56314985ns 989965 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56315269ns 989970 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56315667ns 989977 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56315837ns 989980 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56316292ns 989988 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56316463ns 989991 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56316747ns 989996 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56317031ns 990001 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56317315ns 990006 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56317770ns 990014 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56317940ns 990017 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56318224ns 990022 1a110850 fd5ff06f jal x0, -44 +56318509ns 990027 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56318793ns 990032 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56319191ns 990039 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56319361ns 990042 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56319816ns 990050 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56319986ns 990053 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56320270ns 990058 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56320555ns 990063 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56320839ns 990068 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56321293ns 990076 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56321464ns 990079 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56321748ns 990084 1a110850 fd5ff06f jal x0, -44 +56322032ns 990089 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56322316ns 990094 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56322714ns 990101 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56322885ns 990104 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56323339ns 990112 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56323510ns 990115 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56323794ns 990120 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56324078ns 990125 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56324362ns 990130 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56324817ns 990138 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56324987ns 990141 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56325272ns 990146 1a110850 fd5ff06f jal x0, -44 +56325556ns 990151 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56325840ns 990156 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56326238ns 990163 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56326408ns 990166 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56326863ns 990174 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56327033ns 990177 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56327318ns 990182 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56327602ns 990187 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56327886ns 990192 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56328341ns 990200 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56328511ns 990203 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56328795ns 990208 1a110850 fd5ff06f jal x0, -44 +56329079ns 990213 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56329363ns 990218 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56329761ns 990225 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56329932ns 990228 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56330386ns 990236 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56330557ns 990239 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56330841ns 990244 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56331125ns 990249 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56331409ns 990254 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56331864ns 990262 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56332035ns 990265 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56332319ns 990270 1a110850 fd5ff06f jal x0, -44 +56332603ns 990275 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56332887ns 990280 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56333285ns 990287 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56333455ns 990290 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56333910ns 990298 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56334081ns 990301 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56334365ns 990306 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56334649ns 990311 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56334933ns 990316 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56335388ns 990324 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56335558ns 990327 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56335842ns 990332 1a110850 fd5ff06f jal x0, -44 +56336127ns 990337 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56336411ns 990342 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56336808ns 990349 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56336979ns 990352 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56337434ns 990360 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56337604ns 990363 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56337888ns 990368 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56338172ns 990373 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56338457ns 990378 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56338911ns 990386 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56339082ns 990389 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56339366ns 990394 1a110850 fd5ff06f jal x0, -44 +56339650ns 990399 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56339934ns 990404 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56340332ns 990411 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56340503ns 990414 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56340957ns 990422 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56341128ns 990425 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56341412ns 990430 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56341696ns 990435 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56341980ns 990440 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56342435ns 990448 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56342605ns 990451 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56342890ns 990456 1a110850 fd5ff06f jal x0, -44 +56343174ns 990461 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56343458ns 990466 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56343856ns 990473 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56344026ns 990476 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56344481ns 990484 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56344651ns 990487 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56344935ns 990492 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56345220ns 990497 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56345504ns 990502 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56345958ns 990510 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56346129ns 990513 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56346413ns 990518 1a110850 fd5ff06f jal x0, -44 +56346697ns 990523 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56346981ns 990528 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56347379ns 990535 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56347550ns 990538 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56348004ns 990546 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56348175ns 990549 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56348459ns 990554 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56348743ns 990559 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56349027ns 990564 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56349482ns 990572 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56349653ns 990575 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56349937ns 990580 1a110850 fd5ff06f jal x0, -44 +56350221ns 990585 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56350505ns 990590 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56350903ns 990597 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56351073ns 990600 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56351528ns 990608 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56351698ns 990611 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56351983ns 990616 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56352267ns 990621 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56352551ns 990626 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56353006ns 990634 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56353176ns 990637 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56353460ns 990642 1a110850 fd5ff06f jal x0, -44 +56353744ns 990647 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56354029ns 990652 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56354426ns 990659 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56354597ns 990662 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56355052ns 990670 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56355222ns 990673 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56355506ns 990678 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56355790ns 990683 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56356075ns 990688 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56356529ns 990696 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56356700ns 990699 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56356984ns 990704 1a110850 fd5ff06f jal x0, -44 +56357268ns 990709 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56357552ns 990714 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56357950ns 990721 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56358120ns 990724 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56358575ns 990732 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56358746ns 990735 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56359030ns 990740 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56359314ns 990745 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56359598ns 990750 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56360053ns 990758 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56360223ns 990761 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56360507ns 990766 1a110850 fd5ff06f jal x0, -44 +56360792ns 990771 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56361076ns 990776 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56361474ns 990783 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56361644ns 990786 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56362099ns 990794 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56362269ns 990797 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56362553ns 990802 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56362838ns 990807 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56363122ns 990812 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56363576ns 990820 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56363747ns 990823 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56364031ns 990828 1a110850 fd5ff06f jal x0, -44 +56364315ns 990833 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56364599ns 990838 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56364997ns 990845 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56365168ns 990848 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56365622ns 990856 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56365793ns 990859 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56366077ns 990864 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56366361ns 990869 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56366645ns 990874 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56367100ns 990882 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56367270ns 990885 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56367555ns 990890 1a110850 fd5ff06f jal x0, -44 +56367839ns 990895 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56368123ns 990900 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56368521ns 990907 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56368691ns 990910 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56369146ns 990918 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56369316ns 990921 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56369601ns 990926 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56369885ns 990931 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56370169ns 990936 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56370624ns 990944 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56370794ns 990947 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56371078ns 990952 1a110850 fd5ff06f jal x0, -44 +56371362ns 990957 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56371647ns 990962 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56372044ns 990969 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56372215ns 990972 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56372669ns 990980 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56372840ns 990983 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56373124ns 990988 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56373408ns 990993 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56373692ns 990998 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56374147ns 991006 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56374318ns 991009 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56374602ns 991014 1a110850 fd5ff06f jal x0, -44 +56374886ns 991019 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56375170ns 991024 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56375568ns 991031 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56375738ns 991034 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56376193ns 991042 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56376364ns 991045 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56376648ns 991050 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56376932ns 991055 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56377216ns 991060 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56377671ns 991068 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56377841ns 991071 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56378125ns 991076 1a110850 fd5ff06f jal x0, -44 +56378410ns 991081 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56378694ns 991086 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56379091ns 991093 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56379262ns 991096 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56379717ns 991104 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56379887ns 991107 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56380171ns 991112 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56380455ns 991117 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56380740ns 991122 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56381194ns 991130 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56381365ns 991133 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56381649ns 991138 1a110850 fd5ff06f jal x0, -44 +56381933ns 991143 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56382217ns 991148 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56382615ns 991155 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56382786ns 991158 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56383240ns 991166 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56383411ns 991169 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56383695ns 991174 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56383979ns 991179 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56384263ns 991184 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56384718ns 991192 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56384888ns 991195 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56385173ns 991200 1a110850 fd5ff06f jal x0, -44 +56385457ns 991205 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56385741ns 991210 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56386139ns 991217 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56386309ns 991220 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56386764ns 991228 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56386934ns 991231 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56387218ns 991236 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56387503ns 991241 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56387787ns 991246 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56388241ns 991254 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56388412ns 991257 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56388696ns 991262 1a110850 fd5ff06f jal x0, -44 +56388980ns 991267 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56389264ns 991272 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56389662ns 991279 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56389833ns 991282 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56390287ns 991290 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56390458ns 991293 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56390742ns 991298 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56391026ns 991303 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56391310ns 991308 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56391765ns 991316 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56391936ns 991319 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56392220ns 991324 1a110850 fd5ff06f jal x0, -44 +56392504ns 991329 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56392788ns 991334 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56393186ns 991341 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56393356ns 991344 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56393811ns 991352 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56393981ns 991355 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56394266ns 991360 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56394550ns 991365 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56394834ns 991370 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56395289ns 991378 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56395459ns 991381 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56395743ns 991386 1a110850 fd5ff06f jal x0, -44 +56396027ns 991391 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56396312ns 991396 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56396709ns 991403 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56396880ns 991406 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56397335ns 991414 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56397505ns 991417 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56397789ns 991422 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56398073ns 991427 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56398358ns 991432 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56398812ns 991440 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56398983ns 991443 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56399267ns 991448 1a110850 fd5ff06f jal x0, -44 +56399551ns 991453 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56399835ns 991458 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56400233ns 991465 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56400403ns 991468 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56400858ns 991476 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56401029ns 991479 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56401313ns 991484 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56401597ns 991489 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56401881ns 991494 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56402336ns 991502 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56402506ns 991505 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56402790ns 991510 1a110850 fd5ff06f jal x0, -44 +56403075ns 991515 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56403359ns 991520 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56403757ns 991527 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56403927ns 991530 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56404382ns 991538 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56404552ns 991541 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56404836ns 991546 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56405121ns 991551 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56405405ns 991556 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56405859ns 991564 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56406030ns 991567 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56406314ns 991572 1a110850 fd5ff06f jal x0, -44 +56406598ns 991577 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56406882ns 991582 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56407280ns 991589 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56407451ns 991592 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56407905ns 991600 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56408076ns 991603 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56408360ns 991608 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56408644ns 991613 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56408928ns 991618 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56409383ns 991626 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56409553ns 991629 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56409838ns 991634 1a110850 fd5ff06f jal x0, -44 +56410122ns 991639 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56410406ns 991644 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56410804ns 991651 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56410974ns 991654 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56411429ns 991662 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56411599ns 991665 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56411884ns 991670 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56412168ns 991675 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56412452ns 991680 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56412907ns 991688 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56413077ns 991691 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56413361ns 991696 1a110850 fd5ff06f jal x0, -44 +56413645ns 991701 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56413930ns 991706 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56414327ns 991713 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56414498ns 991716 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56414952ns 991724 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56415123ns 991727 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56415407ns 991732 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56415691ns 991737 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56415975ns 991742 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56416430ns 991750 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56416601ns 991753 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56416885ns 991758 1a110850 fd5ff06f jal x0, -44 +56417169ns 991763 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56417453ns 991768 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56417851ns 991775 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56418021ns 991778 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56418476ns 991786 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56418647ns 991789 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56418931ns 991794 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56419215ns 991799 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56419499ns 991804 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56419954ns 991812 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56420124ns 991815 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56420408ns 991820 1a110850 fd5ff06f jal x0, -44 +56420693ns 991825 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56420977ns 991830 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56421375ns 991837 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56421545ns 991840 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56422000ns 991848 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56422170ns 991851 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56422454ns 991856 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56422738ns 991861 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56423023ns 991866 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56423477ns 991874 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56423648ns 991877 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56423932ns 991882 1a110850 fd5ff06f jal x0, -44 +56424216ns 991887 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56424500ns 991892 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56424898ns 991899 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56425069ns 991902 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56425523ns 991910 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56425694ns 991913 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56425978ns 991918 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56426262ns 991923 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56426546ns 991928 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56427001ns 991936 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56427171ns 991939 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56427456ns 991944 1a110850 fd5ff06f jal x0, -44 +56427740ns 991949 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56428024ns 991954 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56428422ns 991961 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56428592ns 991964 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56429047ns 991972 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56429217ns 991975 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56429501ns 991980 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56429786ns 991985 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56430070ns 991990 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56430524ns 991998 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56430695ns 992001 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56430979ns 992006 1a110850 fd5ff06f jal x0, -44 +56431263ns 992011 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56431547ns 992016 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56431945ns 992023 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56432116ns 992026 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56432570ns 992034 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56432741ns 992037 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56433025ns 992042 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56433309ns 992047 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56433593ns 992052 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56434048ns 992060 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56434219ns 992063 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56434503ns 992068 1a110850 fd5ff06f jal x0, -44 +56434787ns 992073 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56435071ns 992078 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56435469ns 992085 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56435639ns 992088 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56436094ns 992096 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56436264ns 992099 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56436549ns 992104 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56436833ns 992109 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56437117ns 992114 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56437572ns 992122 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56437742ns 992125 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56438026ns 992130 1a110850 fd5ff06f jal x0, -44 +56438310ns 992135 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56438595ns 992140 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56438992ns 992147 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56439163ns 992150 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56439618ns 992158 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56439788ns 992161 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56440072ns 992166 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56440356ns 992171 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56440641ns 992176 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56441095ns 992184 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56441266ns 992187 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56441550ns 992192 1a110850 fd5ff06f jal x0, -44 +56441834ns 992197 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56442118ns 992202 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56442516ns 992209 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56442687ns 992212 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56443141ns 992220 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56443312ns 992223 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56443596ns 992228 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56443880ns 992233 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56444164ns 992238 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56444619ns 992246 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56444789ns 992249 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56445073ns 992254 1a110850 fd5ff06f jal x0, -44 +56445358ns 992259 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56445642ns 992264 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56446040ns 992271 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56446210ns 992274 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56446665ns 992282 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56446835ns 992285 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56447119ns 992290 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56447404ns 992295 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56447688ns 992300 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56448142ns 992308 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56448313ns 992311 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56448597ns 992316 1a110850 fd5ff06f jal x0, -44 +56448881ns 992321 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56449165ns 992326 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56449563ns 992333 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56449734ns 992336 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56450188ns 992344 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56450359ns 992347 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56450643ns 992352 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56450927ns 992357 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56451211ns 992362 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56451666ns 992370 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56451836ns 992373 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56452121ns 992378 1a110850 fd5ff06f jal x0, -44 +56452405ns 992383 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56452689ns 992388 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56453087ns 992395 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56453257ns 992398 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56453712ns 992406 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56453882ns 992409 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56454167ns 992414 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56454451ns 992419 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56454735ns 992424 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56455190ns 992432 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56455360ns 992435 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56455644ns 992440 1a110850 fd5ff06f jal x0, -44 +56455928ns 992445 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56456213ns 992450 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56456610ns 992457 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56456781ns 992460 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56457235ns 992468 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56457406ns 992471 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56457690ns 992476 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56457974ns 992481 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56458258ns 992486 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56458713ns 992494 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56458884ns 992497 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56459168ns 992502 1a110850 fd5ff06f jal x0, -44 +56459452ns 992507 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56459736ns 992512 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56460134ns 992519 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56460304ns 992522 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56460759ns 992530 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56460930ns 992533 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56461214ns 992538 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56461498ns 992543 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56461782ns 992548 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56462237ns 992556 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56462407ns 992559 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56462691ns 992564 1a110850 fd5ff06f jal x0, -44 +56462976ns 992569 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56463260ns 992574 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56463658ns 992581 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56463828ns 992584 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56464283ns 992592 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56464453ns 992595 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56464737ns 992600 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56465021ns 992605 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56465306ns 992610 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56465760ns 992618 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56465931ns 992621 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56466215ns 992626 1a110850 fd5ff06f jal x0, -44 +56466499ns 992631 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56466783ns 992636 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56467181ns 992643 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56467352ns 992646 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56467806ns 992654 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56467977ns 992657 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56468261ns 992662 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56468545ns 992667 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56468829ns 992672 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56469284ns 992680 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56469454ns 992683 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56469739ns 992688 1a110850 fd5ff06f jal x0, -44 +56470023ns 992693 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56470307ns 992698 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56470705ns 992705 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56470875ns 992708 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56471330ns 992716 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56471500ns 992719 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56471784ns 992724 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56472069ns 992729 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56472353ns 992734 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56472807ns 992742 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56472978ns 992745 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56473262ns 992750 1a110850 fd5ff06f jal x0, -44 +56473546ns 992755 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56473830ns 992760 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56474228ns 992767 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56474399ns 992770 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56474853ns 992778 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56475024ns 992781 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56475308ns 992786 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56475592ns 992791 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56475876ns 992796 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56476331ns 992804 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56476502ns 992807 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56476786ns 992812 1a110850 fd5ff06f jal x0, -44 +56477070ns 992817 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56477354ns 992822 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56477752ns 992829 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56477922ns 992832 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56478377ns 992840 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56478547ns 992843 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56478832ns 992848 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56479116ns 992853 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56479400ns 992858 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56479855ns 992866 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56480025ns 992869 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56480309ns 992874 1a110850 fd5ff06f jal x0, -44 +56480593ns 992879 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56480878ns 992884 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56481275ns 992891 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56481446ns 992894 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56481901ns 992902 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56482071ns 992905 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56482355ns 992910 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56482639ns 992915 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56482924ns 992920 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56483378ns 992928 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56483549ns 992931 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56483833ns 992936 1a110850 fd5ff06f jal x0, -44 +56484117ns 992941 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56484401ns 992946 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56484799ns 992953 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56484970ns 992956 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56485424ns 992964 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56485595ns 992967 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56485879ns 992972 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56486163ns 992977 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56486447ns 992982 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56486902ns 992990 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56487072ns 992993 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56487356ns 992998 1a110850 fd5ff06f jal x0, -44 +56487641ns 993003 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56487925ns 993008 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56488323ns 993015 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56488493ns 993018 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56488948ns 993026 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56489118ns 993029 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56489402ns 993034 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56489687ns 993039 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56489971ns 993044 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56490425ns 993052 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56490596ns 993055 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56490880ns 993060 1a110850 fd5ff06f jal x0, -44 +56491164ns 993065 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56491448ns 993070 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56491846ns 993077 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56492017ns 993080 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56492471ns 993088 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56492642ns 993091 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56492926ns 993096 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56493210ns 993101 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56493494ns 993106 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56493949ns 993114 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56494119ns 993117 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56494404ns 993122 1a110850 fd5ff06f jal x0, -44 +56494688ns 993127 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56494972ns 993132 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56495370ns 993139 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56495540ns 993142 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56495995ns 993150 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56496165ns 993153 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56496450ns 993158 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56496734ns 993163 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56497018ns 993168 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56497473ns 993176 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56497643ns 993179 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56497927ns 993184 1a110850 fd5ff06f jal x0, -44 +56498211ns 993189 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56498496ns 993194 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56498893ns 993201 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56499064ns 993204 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56499519ns 993212 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56499689ns 993215 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56499973ns 993220 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56500257ns 993225 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56500541ns 993230 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56500996ns 993238 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56501167ns 993241 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56501451ns 993246 1a110850 fd5ff06f jal x0, -44 +56501735ns 993251 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56502019ns 993256 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56502417ns 993263 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56502587ns 993266 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56503042ns 993274 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56503213ns 993277 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56503497ns 993282 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56503781ns 993287 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56504065ns 993292 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56504520ns 993300 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56504690ns 993303 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56504974ns 993308 1a110850 fd5ff06f jal x0, -44 +56505259ns 993313 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56505543ns 993318 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56505941ns 993325 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56506111ns 993328 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56506566ns 993336 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56506736ns 993339 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56507020ns 993344 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56507304ns 993349 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56507589ns 993354 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56508043ns 993362 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56508214ns 993365 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56508498ns 993370 1a110850 fd5ff06f jal x0, -44 +56508782ns 993375 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56509066ns 993380 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56509464ns 993387 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56509635ns 993390 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56510089ns 993398 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56510260ns 993401 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56510544ns 993406 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56510828ns 993411 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56511112ns 993416 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56511567ns 993424 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56511737ns 993427 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56512022ns 993432 1a110850 fd5ff06f jal x0, -44 +56512306ns 993437 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56512590ns 993442 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56512988ns 993449 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56513158ns 993452 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56513613ns 993460 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56513783ns 993463 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56514067ns 993468 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56514352ns 993473 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56514636ns 993478 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56515090ns 993486 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56515261ns 993489 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56515545ns 993494 1a110850 fd5ff06f jal x0, -44 +56515829ns 993499 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56516113ns 993504 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56516511ns 993511 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56516682ns 993514 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56517136ns 993522 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56517307ns 993525 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56517591ns 993530 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56517875ns 993535 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56518159ns 993540 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56518614ns 993548 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56518785ns 993551 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56519069ns 993556 1a110850 fd5ff06f jal x0, -44 +56519353ns 993561 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56519637ns 993566 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56520035ns 993573 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56520205ns 993576 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56520660ns 993584 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56520831ns 993587 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56521115ns 993592 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56521399ns 993597 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56521683ns 993602 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56522138ns 993610 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56522308ns 993613 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56522592ns 993618 1a110850 fd5ff06f jal x0, -44 +56522876ns 993623 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56523161ns 993628 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56523558ns 993635 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56523729ns 993638 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56524184ns 993646 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56524354ns 993649 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56524638ns 993654 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56524922ns 993659 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56525207ns 993664 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56525661ns 993672 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56525832ns 993675 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56526116ns 993680 1a110850 fd5ff06f jal x0, -44 +56526400ns 993685 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56526684ns 993690 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56527082ns 993697 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56527253ns 993700 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56527707ns 993708 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56527878ns 993711 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56528162ns 993716 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56528446ns 993721 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56528730ns 993726 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56529185ns 993734 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56529355ns 993737 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56529639ns 993742 1a110850 fd5ff06f jal x0, -44 +56529924ns 993747 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56530208ns 993752 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56530606ns 993759 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56530776ns 993762 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56531231ns 993770 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56531401ns 993773 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56531685ns 993778 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56531970ns 993783 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56532254ns 993788 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56532708ns 993796 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56532879ns 993799 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56533163ns 993804 1a110850 fd5ff06f jal x0, -44 +56533447ns 993809 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56533731ns 993814 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56534129ns 993821 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56534300ns 993824 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56534754ns 993832 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56534925ns 993835 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56535209ns 993840 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56535493ns 993845 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56535777ns 993850 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56536232ns 993858 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56536402ns 993861 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56536687ns 993866 1a110850 fd5ff06f jal x0, -44 +56536971ns 993871 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56537255ns 993876 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56537653ns 993883 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56537823ns 993886 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56538278ns 993894 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56538448ns 993897 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56538733ns 993902 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56539017ns 993907 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56539301ns 993912 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56539756ns 993920 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56539926ns 993923 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56540210ns 993928 1a110850 fd5ff06f jal x0, -44 +56540494ns 993933 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56540779ns 993938 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56541176ns 993945 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56541347ns 993948 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56541802ns 993956 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56541972ns 993959 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56542256ns 993964 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56542540ns 993969 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56542824ns 993974 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56543279ns 993982 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56543450ns 993985 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56543734ns 993990 1a110850 fd5ff06f jal x0, -44 +56544018ns 993995 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56544302ns 994000 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56544700ns 994007 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56544870ns 994010 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56545325ns 994018 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56545496ns 994021 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56545780ns 994026 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56546064ns 994031 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56546348ns 994036 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56546803ns 994044 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56546973ns 994047 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56547257ns 994052 1a110850 fd5ff06f jal x0, -44 +56547542ns 994057 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56547826ns 994062 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56548224ns 994069 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56548394ns 994072 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56548849ns 994080 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56549019ns 994083 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56549303ns 994088 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56549587ns 994093 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56549872ns 994098 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56550326ns 994106 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56550497ns 994109 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56550781ns 994114 1a110850 fd5ff06f jal x0, -44 +56551065ns 994119 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56551349ns 994124 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56551747ns 994131 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56551918ns 994134 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56552372ns 994142 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56552543ns 994145 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56552827ns 994150 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56553111ns 994155 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56553395ns 994160 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56553850ns 994168 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56554020ns 994171 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56554305ns 994176 1a110850 fd5ff06f jal x0, -44 +56554589ns 994181 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56554873ns 994186 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56555271ns 994193 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56555441ns 994196 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56555896ns 994204 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56556066ns 994207 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56556351ns 994212 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56556635ns 994217 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56556919ns 994222 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56557373ns 994230 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56557544ns 994233 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56557828ns 994238 1a110850 fd5ff06f jal x0, -44 +56558112ns 994243 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56558396ns 994248 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56558794ns 994255 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56558965ns 994258 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56559419ns 994266 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56559590ns 994269 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56559874ns 994274 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56560158ns 994279 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56560442ns 994284 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56560897ns 994292 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56561068ns 994295 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56561352ns 994300 1a110850 fd5ff06f jal x0, -44 +56561636ns 994305 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56561920ns 994310 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56562318ns 994317 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56562488ns 994320 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56562943ns 994328 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56563114ns 994331 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56563398ns 994336 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56563682ns 994341 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56563966ns 994346 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56564421ns 994354 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56564591ns 994357 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56564875ns 994362 1a110850 fd5ff06f jal x0, -44 +56565159ns 994367 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56565444ns 994372 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56565841ns 994379 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56566012ns 994382 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56566467ns 994390 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56566637ns 994393 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56566921ns 994398 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56567205ns 994403 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56567490ns 994408 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56567944ns 994416 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56568115ns 994419 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56568399ns 994424 1a110850 fd5ff06f jal x0, -44 +56568683ns 994429 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56568967ns 994434 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56569365ns 994441 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56569536ns 994444 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56569990ns 994452 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56570161ns 994455 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56570445ns 994460 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56570729ns 994465 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56571013ns 994470 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56571468ns 994478 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56571638ns 994481 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56571922ns 994486 1a110850 fd5ff06f jal x0, -44 +56572207ns 994491 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56572491ns 994496 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56572889ns 994503 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56573059ns 994506 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56573514ns 994514 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56573684ns 994517 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56573968ns 994522 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56574253ns 994527 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56574537ns 994532 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56574991ns 994540 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56575162ns 994543 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56575446ns 994548 1a110850 fd5ff06f jal x0, -44 +56575730ns 994553 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56576014ns 994558 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56576412ns 994565 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56576583ns 994568 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56577037ns 994576 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56577208ns 994579 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56577492ns 994584 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56577776ns 994589 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56578060ns 994594 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56578515ns 994602 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56578685ns 994605 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56578970ns 994610 1a110850 fd5ff06f jal x0, -44 +56579254ns 994615 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56579538ns 994620 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56579936ns 994627 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56580106ns 994630 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56580561ns 994638 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56580731ns 994641 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56581016ns 994646 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56581300ns 994651 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56581584ns 994656 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56582039ns 994664 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56582209ns 994667 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56582493ns 994672 1a110850 fd5ff06f jal x0, -44 +56582777ns 994677 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56583062ns 994682 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56583459ns 994689 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56583630ns 994692 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56584085ns 994700 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56584255ns 994703 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56584539ns 994708 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56584823ns 994713 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56585107ns 994718 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56585562ns 994726 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56585733ns 994729 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56586017ns 994734 1a110850 fd5ff06f jal x0, -44 +56586301ns 994739 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56586585ns 994744 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56586983ns 994751 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56587153ns 994754 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56587608ns 994762 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56587779ns 994765 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56588063ns 994770 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56588347ns 994775 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56588631ns 994780 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56589086ns 994788 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56589256ns 994791 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56589540ns 994796 1a110850 fd5ff06f jal x0, -44 +56589825ns 994801 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56590109ns 994806 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56590507ns 994813 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56590677ns 994816 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56591132ns 994824 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56591302ns 994827 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56591586ns 994832 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56591871ns 994837 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56592155ns 994842 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56592609ns 994850 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56592780ns 994853 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56593064ns 994858 1a110850 fd5ff06f jal x0, -44 +56593348ns 994863 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56593632ns 994868 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56594030ns 994875 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56594201ns 994878 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56594655ns 994886 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56594826ns 994889 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56595110ns 994894 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56595394ns 994899 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56595678ns 994904 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56596133ns 994912 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56596303ns 994915 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56596588ns 994920 1a110850 fd5ff06f jal x0, -44 +56596872ns 994925 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56597156ns 994930 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56597554ns 994937 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56597724ns 994940 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56598179ns 994948 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56598349ns 994951 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56598634ns 994956 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56598918ns 994961 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56599202ns 994966 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56599656ns 994974 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56599827ns 994977 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56600111ns 994982 1a110850 fd5ff06f jal x0, -44 +56600395ns 994987 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56600679ns 994992 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56601077ns 994999 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56601248ns 995002 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56601702ns 995010 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56601873ns 995013 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56602157ns 995018 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56602441ns 995023 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56602725ns 995028 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56603180ns 995036 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56603351ns 995039 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56603635ns 995044 1a110850 fd5ff06f jal x0, -44 +56603919ns 995049 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56604203ns 995054 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56604601ns 995061 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56604771ns 995064 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56605226ns 995072 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56605397ns 995075 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56605681ns 995080 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56605965ns 995085 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56606249ns 995090 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56606704ns 995098 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56606874ns 995101 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56607158ns 995106 1a110850 fd5ff06f jal x0, -44 +56607442ns 995111 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56607727ns 995116 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56608124ns 995123 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56608295ns 995126 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56608750ns 995134 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56608920ns 995137 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56609204ns 995142 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56609488ns 995147 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56609773ns 995152 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56610227ns 995160 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56610398ns 995163 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56610682ns 995168 1a110850 fd5ff06f jal x0, -44 +56610966ns 995173 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56611250ns 995178 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56611648ns 995185 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56611819ns 995188 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56612273ns 995196 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56612444ns 995199 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56612728ns 995204 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56613012ns 995209 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56613296ns 995214 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56613751ns 995222 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56613921ns 995225 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56614205ns 995230 1a110850 fd5ff06f jal x0, -44 +56614490ns 995235 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56614774ns 995240 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56615172ns 995247 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56615342ns 995250 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56615797ns 995258 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56615967ns 995261 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56616251ns 995266 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56616536ns 995271 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56616820ns 995276 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56617274ns 995284 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56617445ns 995287 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56617729ns 995292 1a110850 fd5ff06f jal x0, -44 +56618013ns 995297 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56618297ns 995302 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56618695ns 995309 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56618866ns 995312 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56619320ns 995320 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56619491ns 995323 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56619775ns 995328 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56620059ns 995333 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56620343ns 995338 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56620798ns 995346 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56620968ns 995349 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56621253ns 995354 1a110850 fd5ff06f jal x0, -44 +56621537ns 995359 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56621821ns 995364 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56622219ns 995371 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56622389ns 995374 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56622844ns 995382 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56623014ns 995385 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56623299ns 995390 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56623583ns 995395 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56623867ns 995400 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56624322ns 995408 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56624492ns 995411 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56624776ns 995416 1a110850 fd5ff06f jal x0, -44 +56625060ns 995421 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56625345ns 995426 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56625742ns 995433 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56625913ns 995436 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56626368ns 995444 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56626538ns 995447 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56626822ns 995452 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56627106ns 995457 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56627391ns 995462 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56627845ns 995470 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56628016ns 995473 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56628300ns 995478 1a110850 fd5ff06f jal x0, -44 +56628584ns 995483 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56628868ns 995488 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56629266ns 995495 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56629436ns 995498 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56629891ns 995506 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56630062ns 995509 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56630346ns 995514 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56630630ns 995519 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56630914ns 995524 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56631369ns 995532 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56631539ns 995535 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56631823ns 995540 1a110850 fd5ff06f jal x0, -44 +56632108ns 995545 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56632392ns 995550 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56632790ns 995557 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56632960ns 995560 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56633415ns 995568 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56633585ns 995571 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56633869ns 995576 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56634154ns 995581 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56634438ns 995586 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56634892ns 995594 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56635063ns 995597 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56635347ns 995602 1a110850 fd5ff06f jal x0, -44 +56635631ns 995607 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56635915ns 995612 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56636313ns 995619 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56636484ns 995622 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56636938ns 995630 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56637109ns 995633 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56637393ns 995638 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56637677ns 995643 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56637961ns 995648 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56638416ns 995656 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56638586ns 995659 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56638871ns 995664 1a110850 fd5ff06f jal x0, -44 +56639155ns 995669 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56639439ns 995674 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56639837ns 995681 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56640007ns 995684 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56640462ns 995692 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56640632ns 995695 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56640917ns 995700 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56641201ns 995705 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56641485ns 995710 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56641939ns 995718 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56642110ns 995721 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56642394ns 995726 1a110850 fd5ff06f jal x0, -44 +56642678ns 995731 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56642962ns 995736 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56643360ns 995743 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56643531ns 995746 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56643985ns 995754 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56644156ns 995757 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56644440ns 995762 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56644724ns 995767 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56645008ns 995772 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56645463ns 995780 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56645634ns 995783 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56645918ns 995788 1a110850 fd5ff06f jal x0, -44 +56646202ns 995793 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56646486ns 995798 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56646884ns 995805 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56647054ns 995808 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56647509ns 995816 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56647680ns 995819 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56647964ns 995824 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56648248ns 995829 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56648532ns 995834 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56648987ns 995842 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56649157ns 995845 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56649441ns 995850 1a110850 fd5ff06f jal x0, -44 +56649725ns 995855 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56650010ns 995860 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56650407ns 995867 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56650578ns 995870 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56651033ns 995878 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56651203ns 995881 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56651487ns 995886 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56651771ns 995891 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56652056ns 995896 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56652510ns 995904 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56652681ns 995907 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56652965ns 995912 1a110850 fd5ff06f jal x0, -44 +56653249ns 995917 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56653533ns 995922 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56653931ns 995929 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56654102ns 995932 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56654556ns 995940 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56654727ns 995943 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56655011ns 995948 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56655295ns 995953 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56655579ns 995958 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56656034ns 995966 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56656204ns 995969 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56656488ns 995974 1a110850 fd5ff06f jal x0, -44 +56656773ns 995979 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56657057ns 995984 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56657455ns 995991 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56657625ns 995994 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56658080ns 996002 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56658250ns 996005 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56658534ns 996010 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56658819ns 996015 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56659103ns 996020 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56659557ns 996028 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56659728ns 996031 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56660012ns 996036 1a110850 fd5ff06f jal x0, -44 +56660296ns 996041 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56660580ns 996046 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56660978ns 996053 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56661149ns 996056 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56661603ns 996064 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56661774ns 996067 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56662058ns 996072 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56662342ns 996077 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56662626ns 996082 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56663081ns 996090 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56663251ns 996093 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56663536ns 996098 1a110850 fd5ff06f jal x0, -44 +56663820ns 996103 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56664104ns 996108 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56664502ns 996115 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56664672ns 996118 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56665127ns 996126 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56665297ns 996129 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56665582ns 996134 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56665866ns 996139 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56666150ns 996144 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56666605ns 996152 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56666775ns 996155 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56667059ns 996160 1a110850 fd5ff06f jal x0, -44 +56667343ns 996165 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56667628ns 996170 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56668025ns 996177 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56668196ns 996180 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56668651ns 996188 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56668821ns 996191 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56669105ns 996196 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56669389ns 996201 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56669674ns 996206 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56670128ns 996214 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56670299ns 996217 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56670583ns 996222 1a110850 fd5ff06f jal x0, -44 +56670867ns 996227 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56671151ns 996232 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56671549ns 996239 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56671719ns 996242 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56672174ns 996250 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56672345ns 996253 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56672629ns 996258 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56672913ns 996263 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56673197ns 996268 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56673652ns 996276 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56673822ns 996279 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56674106ns 996284 1a110850 fd5ff06f jal x0, -44 +56674391ns 996289 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56674675ns 996294 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56675073ns 996301 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56675243ns 996304 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56675698ns 996312 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56675868ns 996315 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56676152ns 996320 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56676437ns 996325 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56676721ns 996330 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56677175ns 996338 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56677346ns 996341 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56677630ns 996346 1a110850 fd5ff06f jal x0, -44 +56677914ns 996351 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56678198ns 996356 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56678596ns 996363 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56678767ns 996366 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56679221ns 996374 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56679392ns 996377 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56679676ns 996382 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56679960ns 996387 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56680244ns 996392 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56680699ns 996400 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56680869ns 996403 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56681154ns 996408 1a110850 fd5ff06f jal x0, -44 +56681438ns 996413 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56681722ns 996418 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56682120ns 996425 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56682290ns 996428 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56682745ns 996436 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56682915ns 996439 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56683200ns 996444 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56683484ns 996449 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56683768ns 996454 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56684223ns 996462 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56684393ns 996465 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56684677ns 996470 1a110850 fd5ff06f jal x0, -44 +56684961ns 996475 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56685245ns 996480 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56685643ns 996487 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56685814ns 996490 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56686268ns 996498 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56686439ns 996501 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56686723ns 996506 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56687007ns 996511 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56687291ns 996516 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56687746ns 996524 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56687917ns 996527 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56688201ns 996532 1a110850 fd5ff06f jal x0, -44 +56688485ns 996537 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56688769ns 996542 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56689167ns 996549 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56689337ns 996552 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56689792ns 996560 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56689963ns 996563 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56690247ns 996568 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56690531ns 996573 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56690815ns 996578 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56691270ns 996586 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56691440ns 996589 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56691724ns 996594 1a110850 fd5ff06f jal x0, -44 +56692008ns 996599 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56692293ns 996604 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56692690ns 996611 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56692861ns 996614 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56693316ns 996622 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56693486ns 996625 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56693770ns 996630 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56694054ns 996635 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56694339ns 996640 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56694793ns 996648 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56694964ns 996651 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56695248ns 996656 1a110850 fd5ff06f jal x0, -44 +56695532ns 996661 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56695816ns 996666 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56696214ns 996673 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56696385ns 996676 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56696839ns 996684 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56697010ns 996687 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56697294ns 996692 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56697578ns 996697 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56697862ns 996702 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56698317ns 996710 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56698487ns 996713 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56698771ns 996718 1a110850 fd5ff06f jal x0, -44 +56699056ns 996723 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56699340ns 996728 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56699738ns 996735 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56699908ns 996738 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56700363ns 996746 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56700533ns 996749 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56700817ns 996754 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56701102ns 996759 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56701386ns 996764 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56701840ns 996772 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56702011ns 996775 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56702295ns 996780 1a110850 fd5ff06f jal x0, -44 +56702579ns 996785 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56702863ns 996790 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56703261ns 996797 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56703432ns 996800 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56703886ns 996808 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56704057ns 996811 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56704341ns 996816 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56704625ns 996821 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56704909ns 996826 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56705364ns 996834 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56705535ns 996837 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56705819ns 996842 1a110850 fd5ff06f jal x0, -44 +56706103ns 996847 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56706387ns 996852 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56706785ns 996859 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56706955ns 996862 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56707410ns 996870 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56707580ns 996873 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56707865ns 996878 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56708149ns 996883 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56708433ns 996888 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56708888ns 996896 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56709058ns 996899 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56709342ns 996904 1a110850 fd5ff06f jal x0, -44 +56709626ns 996909 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56709911ns 996914 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56710308ns 996921 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56710479ns 996924 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56710934ns 996932 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56711104ns 996935 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56711388ns 996940 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56711672ns 996945 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56711957ns 996950 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56712411ns 996958 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56712582ns 996961 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56712866ns 996966 1a110850 fd5ff06f jal x0, -44 +56713150ns 996971 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56713434ns 996976 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56713832ns 996983 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56714002ns 996986 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56714457ns 996994 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56714628ns 996997 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56714912ns 997002 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56715196ns 997007 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56715480ns 997012 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56715935ns 997020 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56716105ns 997023 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56716389ns 997028 1a110850 fd5ff06f jal x0, -44 +56716674ns 997033 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56716958ns 997038 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56717356ns 997045 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56717526ns 997048 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56717981ns 997056 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56718151ns 997059 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56718435ns 997064 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56718720ns 997069 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56719004ns 997074 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56719458ns 997082 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56719629ns 997085 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56719913ns 997090 1a110850 fd5ff06f jal x0, -44 +56720197ns 997095 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56720481ns 997100 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56720879ns 997107 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56721050ns 997110 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56721504ns 997118 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56721675ns 997121 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56721959ns 997126 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56722243ns 997131 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56722527ns 997136 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56722982ns 997144 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56723152ns 997147 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56723437ns 997152 1a110850 fd5ff06f jal x0, -44 +56723721ns 997157 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56724005ns 997162 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56724403ns 997169 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56724573ns 997172 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56725028ns 997180 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56725198ns 997183 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56725483ns 997188 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56725767ns 997193 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56726051ns 997198 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56726506ns 997206 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56726676ns 997209 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56726960ns 997214 1a110850 fd5ff06f jal x0, -44 +56727244ns 997219 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56727528ns 997224 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56727926ns 997231 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56728097ns 997234 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56728551ns 997242 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56728722ns 997245 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56729006ns 997250 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56729290ns 997255 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56729574ns 997260 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56730029ns 997268 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56730200ns 997271 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56730484ns 997276 1a110850 fd5ff06f jal x0, -44 +56730768ns 997281 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56731052ns 997286 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56731450ns 997293 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56731620ns 997296 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56732075ns 997304 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56732246ns 997307 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56732530ns 997312 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56732814ns 997317 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56733098ns 997322 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56733553ns 997330 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56733723ns 997333 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56734007ns 997338 1a110850 fd5ff06f jal x0, -44 +56734291ns 997343 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56734576ns 997348 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56734973ns 997355 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56735144ns 997358 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56735599ns 997366 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56735769ns 997369 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56736053ns 997374 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56736337ns 997379 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56736622ns 997384 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56737076ns 997392 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56737247ns 997395 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56737531ns 997400 1a110850 fd5ff06f jal x0, -44 +56737815ns 997405 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56738099ns 997410 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56738497ns 997417 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56738668ns 997420 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56739122ns 997428 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56739293ns 997431 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56739577ns 997436 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56739861ns 997441 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56740145ns 997446 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56740600ns 997454 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56740770ns 997457 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56741055ns 997462 1a110850 fd5ff06f jal x0, -44 +56741339ns 997467 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56741623ns 997472 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56742021ns 997479 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56742191ns 997482 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56742646ns 997490 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56742816ns 997493 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56743100ns 997498 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56743385ns 997503 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56743669ns 997508 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56744123ns 997516 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56744294ns 997519 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56744578ns 997524 1a110850 fd5ff06f jal x0, -44 +56744862ns 997529 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56745146ns 997534 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56745544ns 997541 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56745715ns 997544 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56746169ns 997552 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56746340ns 997555 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56746624ns 997560 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56746908ns 997565 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56747192ns 997570 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56747647ns 997578 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56747818ns 997581 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56748102ns 997586 1a110850 fd5ff06f jal x0, -44 +56748386ns 997591 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56748670ns 997596 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56749068ns 997603 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56749238ns 997606 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56749693ns 997614 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56749863ns 997617 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56750148ns 997622 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56750432ns 997627 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56750716ns 997632 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56751171ns 997640 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56751341ns 997643 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56751625ns 997648 1a110850 fd5ff06f jal x0, -44 +56751909ns 997653 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56752194ns 997658 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56752591ns 997665 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56752762ns 997668 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56753217ns 997676 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56753387ns 997679 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56753671ns 997684 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56753955ns 997689 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56754240ns 997694 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56754694ns 997702 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56754865ns 997705 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56755149ns 997710 1a110850 fd5ff06f jal x0, -44 +56755433ns 997715 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56755717ns 997720 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56756115ns 997727 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56756285ns 997730 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56756740ns 997738 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56756911ns 997741 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56757195ns 997746 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56757479ns 997751 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56757763ns 997756 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56758218ns 997764 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56758388ns 997767 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56758672ns 997772 1a110850 fd5ff06f jal x0, -44 +56758957ns 997777 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56759241ns 997782 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56759639ns 997789 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56759809ns 997792 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56760264ns 997800 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56760434ns 997803 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56760718ns 997808 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56761003ns 997813 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56761287ns 997818 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56761741ns 997826 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56761912ns 997829 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56762196ns 997834 1a110850 fd5ff06f jal x0, -44 +56762480ns 997839 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56762764ns 997844 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56763162ns 997851 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56763333ns 997854 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56763787ns 997862 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56763958ns 997865 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56764242ns 997870 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56764526ns 997875 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56764810ns 997880 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56765265ns 997888 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56765435ns 997891 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56765720ns 997896 1a110850 fd5ff06f jal x0, -44 +56766004ns 997901 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56766288ns 997906 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56766686ns 997913 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56766856ns 997916 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56767311ns 997924 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56767481ns 997927 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56767766ns 997932 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56768050ns 997937 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56768334ns 997942 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56768789ns 997950 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56768959ns 997953 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56769243ns 997958 1a110850 fd5ff06f jal x0, -44 +56769527ns 997963 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56769811ns 997968 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56770209ns 997975 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56770380ns 997978 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56770834ns 997986 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56771005ns 997989 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56771289ns 997994 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56771573ns 997999 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56771857ns 998004 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56772312ns 998012 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56772483ns 998015 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56772767ns 998020 1a110850 fd5ff06f jal x0, -44 +56773051ns 998025 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56773335ns 998030 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56773733ns 998037 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56773903ns 998040 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56774358ns 998048 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56774529ns 998051 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56774813ns 998056 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56775097ns 998061 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56775381ns 998066 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56775836ns 998074 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56776006ns 998077 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56776290ns 998082 1a110850 fd5ff06f jal x0, -44 +56776575ns 998087 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56776859ns 998092 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56777256ns 998099 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56777427ns 998102 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56777882ns 998110 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56778052ns 998113 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56778336ns 998118 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56778620ns 998123 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56778905ns 998128 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56779359ns 998136 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56779530ns 998139 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56779814ns 998144 1a110850 fd5ff06f jal x0, -44 +56780098ns 998149 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56780382ns 998154 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56780780ns 998161 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56780951ns 998164 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56781405ns 998172 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56781576ns 998175 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56781860ns 998180 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56782144ns 998185 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56782428ns 998190 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56782883ns 998198 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56783053ns 998201 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56783338ns 998206 1a110850 fd5ff06f jal x0, -44 +56783622ns 998211 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56783906ns 998216 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56784304ns 998223 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56784474ns 998226 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56784929ns 998234 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56785099ns 998237 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56785383ns 998242 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56785668ns 998247 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56785952ns 998252 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56786406ns 998260 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56786577ns 998263 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56786861ns 998268 1a110850 fd5ff06f jal x0, -44 +56787145ns 998273 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56787429ns 998278 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56787827ns 998285 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56787998ns 998288 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56788452ns 998296 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56788623ns 998299 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56788907ns 998304 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56789191ns 998309 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56789475ns 998314 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56789930ns 998322 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56790101ns 998325 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56790385ns 998330 1a110850 fd5ff06f jal x0, -44 +56790669ns 998335 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56790953ns 998340 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56791351ns 998347 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56791521ns 998350 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56791976ns 998358 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56792146ns 998361 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56792431ns 998366 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56792715ns 998371 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56792999ns 998376 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56793454ns 998384 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56793624ns 998387 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56793908ns 998392 1a110850 fd5ff06f jal x0, -44 +56794192ns 998397 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56794477ns 998402 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56794874ns 998409 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56795045ns 998412 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56795500ns 998420 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56795670ns 998423 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56795954ns 998428 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56796238ns 998433 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56796523ns 998438 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56796977ns 998446 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56797148ns 998449 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56797432ns 998454 1a110850 fd5ff06f jal x0, -44 +56797716ns 998459 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56798000ns 998464 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56798398ns 998471 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56798568ns 998474 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56799023ns 998482 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56799194ns 998485 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56799478ns 998490 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56799762ns 998495 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56800046ns 998500 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56800501ns 998508 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56800671ns 998511 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56800955ns 998516 1a110850 fd5ff06f jal x0, -44 +56801240ns 998521 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56801524ns 998526 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56801922ns 998533 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56802092ns 998536 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56802547ns 998544 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56802717ns 998547 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56803001ns 998552 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56803286ns 998557 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56803570ns 998562 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56804024ns 998570 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56804195ns 998573 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56804479ns 998578 1a110850 fd5ff06f jal x0, -44 +56804763ns 998583 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56805047ns 998588 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56805445ns 998595 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56805616ns 998598 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56806070ns 998606 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56806241ns 998609 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56806525ns 998614 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56806809ns 998619 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56807093ns 998624 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56807548ns 998632 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56807718ns 998635 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56808003ns 998640 1a110850 fd5ff06f jal x0, -44 +56808287ns 998645 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56808571ns 998650 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56808969ns 998657 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56809139ns 998660 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56809594ns 998668 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56809764ns 998671 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56810049ns 998676 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56810333ns 998681 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56810617ns 998686 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56811072ns 998694 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56811242ns 998697 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56811526ns 998702 1a110850 fd5ff06f jal x0, -44 +56811810ns 998707 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56812095ns 998712 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56812492ns 998719 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56812663ns 998722 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56813117ns 998730 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56813288ns 998733 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56813572ns 998738 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56813856ns 998743 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56814140ns 998748 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56814595ns 998756 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56814766ns 998759 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56815050ns 998764 1a110850 fd5ff06f jal x0, -44 +56815334ns 998769 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56815618ns 998774 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56816016ns 998781 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56816186ns 998784 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56816641ns 998792 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56816812ns 998795 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56817096ns 998800 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56817380ns 998805 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56817664ns 998810 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56818119ns 998818 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56818289ns 998821 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56818573ns 998826 1a110850 fd5ff06f jal x0, -44 +56818858ns 998831 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56819142ns 998836 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56819539ns 998843 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56819710ns 998846 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56820165ns 998854 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56820335ns 998857 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56820619ns 998862 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56820903ns 998867 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56821188ns 998872 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56821642ns 998880 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56821813ns 998883 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56822097ns 998888 1a110850 fd5ff06f jal x0, -44 +56822381ns 998893 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56822665ns 998898 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56823063ns 998905 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56823234ns 998908 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56823688ns 998916 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56823859ns 998919 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56824143ns 998924 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56824427ns 998929 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56824711ns 998934 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56825166ns 998942 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56825336ns 998945 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56825621ns 998950 1a110850 fd5ff06f jal x0, -44 +56825905ns 998955 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56826189ns 998960 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56826587ns 998967 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56826757ns 998970 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56827212ns 998978 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56827382ns 998981 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56827666ns 998986 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56827951ns 998991 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56828235ns 998996 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56828689ns 999004 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56828860ns 999007 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56829144ns 999012 1a110850 fd5ff06f jal x0, -44 +56829428ns 999017 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56829712ns 999022 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56830110ns 999029 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56830281ns 999032 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56830735ns 999040 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56830906ns 999043 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56831190ns 999048 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56831474ns 999053 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56831758ns 999058 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56832213ns 999066 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56832384ns 999069 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56832668ns 999074 1a110850 fd5ff06f jal x0, -44 +56832952ns 999079 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56833236ns 999084 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56833634ns 999091 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56833804ns 999094 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56834259ns 999102 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56834429ns 999105 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56834714ns 999110 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56834998ns 999115 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56835282ns 999120 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56835737ns 999128 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56835907ns 999131 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56836191ns 999136 1a110850 fd5ff06f jal x0, -44 +56836475ns 999141 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56836760ns 999146 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56837157ns 999153 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56837328ns 999156 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56837783ns 999164 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56837953ns 999167 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56838237ns 999172 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56838521ns 999177 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56838806ns 999182 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56839260ns 999190 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56839431ns 999193 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56839715ns 999198 1a110850 fd5ff06f jal x0, -44 +56839999ns 999203 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56840283ns 999208 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56840681ns 999215 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56840851ns 999218 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56841306ns 999226 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56841477ns 999229 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56841761ns 999234 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56842045ns 999239 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56842329ns 999244 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56842784ns 999252 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56842954ns 999255 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56843238ns 999260 1a110850 fd5ff06f jal x0, -44 +56843523ns 999265 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56843807ns 999270 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56844205ns 999277 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56844375ns 999280 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56844830ns 999288 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56845000ns 999291 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56845284ns 999296 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56845569ns 999301 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56845853ns 999306 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56846307ns 999314 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56846478ns 999317 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56846762ns 999322 1a110850 fd5ff06f jal x0, -44 +56847046ns 999327 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56847330ns 999332 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56847728ns 999339 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56847899ns 999342 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56848353ns 999350 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56848524ns 999353 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56848808ns 999358 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56849092ns 999363 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56849376ns 999368 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56849831ns 999376 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56850001ns 999379 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56850286ns 999384 1a110850 fd5ff06f jal x0, -44 +56850570ns 999389 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56850854ns 999394 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56851252ns 999401 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56851422ns 999404 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56851877ns 999412 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56852047ns 999415 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56852332ns 999420 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56852616ns 999425 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56852900ns 999430 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56853355ns 999438 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56853525ns 999441 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56853809ns 999446 1a110850 fd5ff06f jal x0, -44 +56854093ns 999451 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56854378ns 999456 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56854775ns 999463 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56854946ns 999466 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56855400ns 999474 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56855571ns 999477 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56855855ns 999482 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56856139ns 999487 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56856423ns 999492 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56856878ns 999500 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56857049ns 999503 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56857333ns 999508 1a110850 fd5ff06f jal x0, -44 +56857617ns 999513 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56857901ns 999518 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56858299ns 999525 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56858469ns 999528 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56858924ns 999536 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56859095ns 999539 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56859379ns 999544 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56859663ns 999549 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56859947ns 999554 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56860402ns 999562 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56860572ns 999565 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56860856ns 999570 1a110850 fd5ff06f jal x0, -44 +56861141ns 999575 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56861425ns 999580 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56861823ns 999587 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56861993ns 999590 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56862448ns 999598 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56862618ns 999601 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56862902ns 999606 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56863186ns 999611 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56863471ns 999616 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56863925ns 999624 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56864096ns 999627 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56864380ns 999632 1a110850 fd5ff06f jal x0, -44 +56864664ns 999637 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56864948ns 999642 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56865346ns 999649 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56865517ns 999652 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56865971ns 999660 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56866142ns 999663 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56866426ns 999668 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56866710ns 999673 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56866994ns 999678 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56867449ns 999686 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56867619ns 999689 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56867904ns 999694 1a110850 fd5ff06f jal x0, -44 +56868188ns 999699 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56868472ns 999704 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56868870ns 999711 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56869040ns 999714 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56869495ns 999722 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56869665ns 999725 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56869949ns 999730 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56870234ns 999735 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56870518ns 999740 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56870972ns 999748 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56871143ns 999751 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56871427ns 999756 1a110850 fd5ff06f jal x0, -44 +56871711ns 999761 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56871995ns 999766 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56872393ns 999773 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56872564ns 999776 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56873018ns 999784 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56873189ns 999787 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56873473ns 999792 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56873757ns 999797 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56874041ns 999802 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56874496ns 999810 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56874667ns 999813 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56874951ns 999818 1a110850 fd5ff06f jal x0, -44 +56875235ns 999823 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56875519ns 999828 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56875917ns 999835 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56876087ns 999838 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56876542ns 999846 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56876712ns 999849 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56876997ns 999854 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56877281ns 999859 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56877565ns 999864 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56878020ns 999872 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56878190ns 999875 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56878474ns 999880 1a110850 fd5ff06f jal x0, -44 +56878758ns 999885 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56879043ns 999890 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56879440ns 999897 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56879611ns 999900 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56880066ns 999908 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56880236ns 999911 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56880520ns 999916 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56880804ns 999921 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56881089ns 999926 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56881543ns 999934 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56881714ns 999937 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56881998ns 999942 1a110850 fd5ff06f jal x0, -44 +56882282ns 999947 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56882566ns 999952 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56882964ns 999959 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56883135ns 999962 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56883589ns 999970 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56883760ns 999973 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56884044ns 999978 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56884328ns 999983 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56884612ns 999988 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56885067ns 999996 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56885237ns 999999 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56885521ns 1000004 1a110850 fd5ff06f jal x0, -44 +56885806ns 1000009 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56886090ns 1000014 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56886488ns 1000021 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56886658ns 1000024 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56887113ns 1000032 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56887283ns 1000035 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56887567ns 1000040 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56887852ns 1000045 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56888136ns 1000050 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56888590ns 1000058 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56888761ns 1000061 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56889045ns 1000066 1a110850 fd5ff06f jal x0, -44 +56889329ns 1000071 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56889613ns 1000076 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56890011ns 1000083 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56890182ns 1000086 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56890636ns 1000094 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56890807ns 1000097 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56891091ns 1000102 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56891375ns 1000107 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56891659ns 1000112 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56892114ns 1000120 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56892284ns 1000123 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56892569ns 1000128 1a110850 fd5ff06f jal x0, -44 +56892853ns 1000133 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56893137ns 1000138 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56893535ns 1000145 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56893705ns 1000148 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56894160ns 1000156 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56894330ns 1000159 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56894615ns 1000164 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56894899ns 1000169 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56895183ns 1000174 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56895638ns 1000182 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56895808ns 1000185 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56896092ns 1000190 1a110850 fd5ff06f jal x0, -44 +56896376ns 1000195 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56896661ns 1000200 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56897058ns 1000207 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56897229ns 1000210 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56897683ns 1000218 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56897854ns 1000221 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56898138ns 1000226 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56898422ns 1000231 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56898706ns 1000236 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56899161ns 1000244 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56899332ns 1000247 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56899616ns 1000252 1a110850 fd5ff06f jal x0, -44 +56899900ns 1000257 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56900184ns 1000262 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56900582ns 1000269 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56900752ns 1000272 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56901207ns 1000280 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56901378ns 1000283 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56901662ns 1000288 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56901946ns 1000293 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56902230ns 1000298 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56902685ns 1000306 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56902855ns 1000309 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56903139ns 1000314 1a110850 fd5ff06f jal x0, -44 +56903424ns 1000319 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56903708ns 1000324 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56904106ns 1000331 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56904276ns 1000334 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56904731ns 1000342 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56904901ns 1000345 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56905185ns 1000350 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56905469ns 1000355 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56905754ns 1000360 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56906208ns 1000368 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56906379ns 1000371 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56906663ns 1000376 1a110850 fd5ff06f jal x0, -44 +56906947ns 1000381 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56907231ns 1000386 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56907629ns 1000393 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56907800ns 1000396 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56908254ns 1000404 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56908425ns 1000407 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56908709ns 1000412 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56908993ns 1000417 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56909277ns 1000422 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56909732ns 1000430 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56909902ns 1000433 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56910187ns 1000438 1a110850 fd5ff06f jal x0, -44 +56910471ns 1000443 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56910755ns 1000448 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56911153ns 1000455 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56911323ns 1000458 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56911778ns 1000466 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56911948ns 1000469 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56912232ns 1000474 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56912517ns 1000479 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56912801ns 1000484 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56913255ns 1000492 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56913426ns 1000495 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56913710ns 1000500 1a110850 fd5ff06f jal x0, -44 +56913994ns 1000505 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56914278ns 1000510 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56914676ns 1000517 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56914847ns 1000520 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56915301ns 1000528 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56915472ns 1000531 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56915756ns 1000536 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56916040ns 1000541 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56916324ns 1000546 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56916779ns 1000554 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56916950ns 1000557 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56917234ns 1000562 1a110850 fd5ff06f jal x0, -44 +56917518ns 1000567 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56917802ns 1000572 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56918200ns 1000579 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56918370ns 1000582 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56918825ns 1000590 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56918995ns 1000593 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56919280ns 1000598 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56919564ns 1000603 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56919848ns 1000608 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56920303ns 1000616 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56920473ns 1000619 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56920757ns 1000624 1a110850 fd5ff06f jal x0, -44 +56921041ns 1000629 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56921326ns 1000634 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56921723ns 1000641 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56921894ns 1000644 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56922349ns 1000652 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56922519ns 1000655 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56922803ns 1000660 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56923087ns 1000665 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56923372ns 1000670 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56923826ns 1000678 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56923997ns 1000681 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56924281ns 1000686 1a110850 fd5ff06f jal x0, -44 +56924565ns 1000691 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56924849ns 1000696 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56925247ns 1000703 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56925418ns 1000706 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56925872ns 1000714 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56926043ns 1000717 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56926327ns 1000722 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56926611ns 1000727 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56926895ns 1000732 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56927350ns 1000740 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56927520ns 1000743 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56927804ns 1000748 1a110850 fd5ff06f jal x0, -44 +56928089ns 1000753 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56928373ns 1000758 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56928771ns 1000765 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56928941ns 1000768 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56929396ns 1000776 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56929566ns 1000779 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56929850ns 1000784 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56930135ns 1000789 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56930419ns 1000794 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56930873ns 1000802 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56931044ns 1000805 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56931328ns 1000810 1a110850 fd5ff06f jal x0, -44 +56931612ns 1000815 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56931896ns 1000820 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56932294ns 1000827 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56932465ns 1000830 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56932919ns 1000838 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56933090ns 1000841 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56933374ns 1000846 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56933658ns 1000851 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56933942ns 1000856 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56934397ns 1000864 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56934567ns 1000867 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56934852ns 1000872 1a110850 fd5ff06f jal x0, -44 +56935136ns 1000877 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56935420ns 1000882 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56935818ns 1000889 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56935988ns 1000892 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56936443ns 1000900 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56936613ns 1000903 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56936898ns 1000908 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56937182ns 1000913 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56937466ns 1000918 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56937921ns 1000926 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56938091ns 1000929 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56938375ns 1000934 1a110850 fd5ff06f jal x0, -44 +56938659ns 1000939 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56938944ns 1000944 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56939341ns 1000951 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56939512ns 1000954 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56939967ns 1000962 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56940137ns 1000965 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56940421ns 1000970 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56940705ns 1000975 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56940989ns 1000980 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56941444ns 1000988 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56941615ns 1000991 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56941899ns 1000996 1a110850 fd5ff06f jal x0, -44 +56942183ns 1001001 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56942467ns 1001006 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56942865ns 1001013 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56943035ns 1001016 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56943490ns 1001024 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56943661ns 1001027 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56943945ns 1001032 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56944229ns 1001037 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56944513ns 1001042 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56944968ns 1001050 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56945138ns 1001053 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56945422ns 1001058 1a110850 fd5ff06f jal x0, -44 +56945707ns 1001063 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56945991ns 1001068 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56946389ns 1001075 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56946559ns 1001078 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56947014ns 1001086 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56947184ns 1001089 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56947468ns 1001094 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56947752ns 1001099 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56948037ns 1001104 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56948491ns 1001112 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56948662ns 1001115 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56948946ns 1001120 1a110850 fd5ff06f jal x0, -44 +56949230ns 1001125 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56949514ns 1001130 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56949912ns 1001137 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56950083ns 1001140 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56950537ns 1001148 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56950708ns 1001151 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56950992ns 1001156 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56951276ns 1001161 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56951560ns 1001166 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56952015ns 1001174 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56952185ns 1001177 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56952470ns 1001182 1a110850 fd5ff06f jal x0, -44 +56952754ns 1001187 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56953038ns 1001192 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56953436ns 1001199 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56953606ns 1001202 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56954061ns 1001210 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56954231ns 1001213 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56954515ns 1001218 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56954800ns 1001223 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56955084ns 1001228 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56955538ns 1001236 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56955709ns 1001239 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56955993ns 1001244 1a110850 fd5ff06f jal x0, -44 +56956277ns 1001249 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56956561ns 1001254 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56956959ns 1001261 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56957130ns 1001264 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56957584ns 1001272 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56957755ns 1001275 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56958039ns 1001280 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56958323ns 1001285 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56958607ns 1001290 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56959062ns 1001298 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56959233ns 1001301 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56959517ns 1001306 1a110850 fd5ff06f jal x0, -44 +56959801ns 1001311 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56960085ns 1001316 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56960483ns 1001323 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56960653ns 1001326 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56961108ns 1001334 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56961279ns 1001337 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56961563ns 1001342 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56961847ns 1001347 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56962131ns 1001352 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56962586ns 1001360 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56962756ns 1001363 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56963040ns 1001368 1a110850 fd5ff06f jal x0, -44 +56963324ns 1001373 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56963609ns 1001378 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56964006ns 1001385 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56964177ns 1001388 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56964632ns 1001396 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56964802ns 1001399 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56965086ns 1001404 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56965370ns 1001409 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56965655ns 1001414 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56966109ns 1001422 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56966280ns 1001425 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56966564ns 1001430 1a110850 fd5ff06f jal x0, -44 +56966848ns 1001435 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56967132ns 1001440 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56967530ns 1001447 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56967701ns 1001450 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56968155ns 1001458 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56968326ns 1001461 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56968610ns 1001466 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56968894ns 1001471 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56969178ns 1001476 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56969633ns 1001484 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56969803ns 1001487 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56970087ns 1001492 1a110850 fd5ff06f jal x0, -44 +56970372ns 1001497 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56970656ns 1001502 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56971054ns 1001509 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56971224ns 1001512 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56971679ns 1001520 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56971849ns 1001523 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56972133ns 1001528 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56972418ns 1001533 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56972702ns 1001538 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56973156ns 1001546 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56973327ns 1001549 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56973611ns 1001554 1a110850 fd5ff06f jal x0, -44 +56973895ns 1001559 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56974179ns 1001564 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56974577ns 1001571 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56974748ns 1001574 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56975202ns 1001582 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56975373ns 1001585 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56975657ns 1001590 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56975941ns 1001595 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56976225ns 1001600 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56976680ns 1001608 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56976850ns 1001611 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56977135ns 1001616 1a110850 fd5ff06f jal x0, -44 +56977419ns 1001621 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56977703ns 1001626 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56978101ns 1001633 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56978271ns 1001636 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56978726ns 1001644 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56978896ns 1001647 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56979181ns 1001652 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56979465ns 1001657 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56979749ns 1001662 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56980204ns 1001670 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56980374ns 1001673 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56980658ns 1001678 1a110850 fd5ff06f jal x0, -44 +56980942ns 1001683 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56981227ns 1001688 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56981624ns 1001695 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56981795ns 1001698 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56982250ns 1001706 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56982420ns 1001709 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56982704ns 1001714 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56982988ns 1001719 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56983272ns 1001724 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56983727ns 1001732 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56983898ns 1001735 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56984182ns 1001740 1a110850 fd5ff06f jal x0, -44 +56984466ns 1001745 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56984750ns 1001750 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56985148ns 1001757 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56985318ns 1001760 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56985773ns 1001768 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56985944ns 1001771 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56986228ns 1001776 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56986512ns 1001781 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56986796ns 1001786 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56987251ns 1001794 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56987421ns 1001797 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56987705ns 1001802 1a110850 fd5ff06f jal x0, -44 +56987990ns 1001807 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56988274ns 1001812 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56988672ns 1001819 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56988842ns 1001822 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56989297ns 1001830 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56989467ns 1001833 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56989751ns 1001838 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56990035ns 1001843 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56990320ns 1001848 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56990774ns 1001856 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56990945ns 1001859 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56991229ns 1001864 1a110850 fd5ff06f jal x0, -44 +56991513ns 1001869 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56991797ns 1001874 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56992195ns 1001881 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56992366ns 1001884 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56992820ns 1001892 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56992991ns 1001895 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56993275ns 1001900 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56993559ns 1001905 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56993843ns 1001910 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56994298ns 1001918 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56994468ns 1001921 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56994753ns 1001926 1a110850 fd5ff06f jal x0, -44 +56995037ns 1001931 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56995321ns 1001936 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56995719ns 1001943 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56995889ns 1001946 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56996344ns 1001954 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +56996514ns 1001957 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +56996799ns 1001962 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56997083ns 1001967 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56997367ns 1001972 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56997821ns 1001980 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +56997992ns 1001983 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +56998276ns 1001988 1a110850 fd5ff06f jal x0, -44 +56998560ns 1001993 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +56998844ns 1001998 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +56999242ns 1002005 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +56999413ns 1002008 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +56999867ns 1002016 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57000038ns 1002019 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57000322ns 1002024 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57000606ns 1002029 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57000890ns 1002034 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57001345ns 1002042 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57001516ns 1002045 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57001800ns 1002050 1a110850 fd5ff06f jal x0, -44 +57002084ns 1002055 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57002368ns 1002060 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57002766ns 1002067 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57002936ns 1002070 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57003391ns 1002078 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57003562ns 1002081 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57003846ns 1002086 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57004130ns 1002091 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57004414ns 1002096 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57004869ns 1002104 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57005039ns 1002107 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57005323ns 1002112 1a110850 fd5ff06f jal x0, -44 +57005607ns 1002117 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57005892ns 1002122 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57006289ns 1002129 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57006460ns 1002132 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57006915ns 1002140 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57007085ns 1002143 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57007369ns 1002148 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57007653ns 1002153 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57007938ns 1002158 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57008392ns 1002166 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57008563ns 1002169 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57008847ns 1002174 1a110850 fd5ff06f jal x0, -44 +57009131ns 1002179 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57009415ns 1002184 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57009813ns 1002191 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57009984ns 1002194 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57010438ns 1002202 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57010609ns 1002205 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57010893ns 1002210 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57011177ns 1002215 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57011461ns 1002220 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57011916ns 1002228 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57012086ns 1002231 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57012370ns 1002236 1a110850 fd5ff06f jal x0, -44 +57012655ns 1002241 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57012939ns 1002246 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57013337ns 1002253 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57013507ns 1002256 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57013962ns 1002264 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57014132ns 1002267 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57014416ns 1002272 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57014701ns 1002277 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57014985ns 1002282 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57015439ns 1002290 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57015610ns 1002293 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57015894ns 1002298 1a110850 fd5ff06f jal x0, -44 +57016178ns 1002303 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57016462ns 1002308 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57016860ns 1002315 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57017031ns 1002318 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57017485ns 1002326 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57017656ns 1002329 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57017940ns 1002334 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57018224ns 1002339 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57018508ns 1002344 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57018963ns 1002352 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57019133ns 1002355 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57019418ns 1002360 1a110850 fd5ff06f jal x0, -44 +57019702ns 1002365 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57019986ns 1002370 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57020384ns 1002377 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57020554ns 1002380 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57021009ns 1002388 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57021179ns 1002391 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57021464ns 1002396 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57021748ns 1002401 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57022032ns 1002406 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57022487ns 1002414 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57022657ns 1002417 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57022941ns 1002422 1a110850 fd5ff06f jal x0, -44 +57023225ns 1002427 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57023510ns 1002432 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57023907ns 1002439 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57024078ns 1002442 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57024533ns 1002450 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57024703ns 1002453 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57024987ns 1002458 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57025271ns 1002463 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57025555ns 1002468 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57026010ns 1002476 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57026181ns 1002479 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57026465ns 1002484 1a110850 fd5ff06f jal x0, -44 +57026749ns 1002489 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57027033ns 1002494 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57027431ns 1002501 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57027601ns 1002504 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57028056ns 1002512 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57028227ns 1002515 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57028511ns 1002520 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57028795ns 1002525 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57029079ns 1002530 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57029534ns 1002538 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57029704ns 1002541 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57029988ns 1002546 1a110850 fd5ff06f jal x0, -44 +57030273ns 1002551 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57030557ns 1002556 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57030955ns 1002563 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57031125ns 1002566 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57031580ns 1002574 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57031750ns 1002577 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57032034ns 1002582 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57032319ns 1002587 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57032603ns 1002592 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57033057ns 1002600 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57033228ns 1002603 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57033512ns 1002608 1a110850 fd5ff06f jal x0, -44 +57033796ns 1002613 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57034080ns 1002618 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57034478ns 1002625 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57034649ns 1002628 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57035103ns 1002636 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57035274ns 1002639 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57035558ns 1002644 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57035842ns 1002649 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57036126ns 1002654 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57036581ns 1002662 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57036751ns 1002665 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57037036ns 1002670 1a110850 fd5ff06f jal x0, -44 +57037320ns 1002675 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57037604ns 1002680 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57038002ns 1002687 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57038172ns 1002690 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57038627ns 1002698 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57038797ns 1002701 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57039082ns 1002706 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57039366ns 1002711 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57039650ns 1002716 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57040104ns 1002724 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57040275ns 1002727 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57040559ns 1002732 1a110850 fd5ff06f jal x0, -44 +57040843ns 1002737 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57041127ns 1002742 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57041525ns 1002749 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57041696ns 1002752 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57042150ns 1002760 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57042321ns 1002763 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57042605ns 1002768 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57042889ns 1002773 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57043173ns 1002778 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57043628ns 1002786 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57043799ns 1002789 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57044083ns 1002794 1a110850 fd5ff06f jal x0, -44 +57044367ns 1002799 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57044651ns 1002804 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57045049ns 1002811 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57045219ns 1002814 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57045674ns 1002822 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57045845ns 1002825 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57046129ns 1002830 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57046413ns 1002835 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57046697ns 1002840 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57047152ns 1002848 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57047322ns 1002851 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57047606ns 1002856 1a110850 fd5ff06f jal x0, -44 +57047890ns 1002861 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57048175ns 1002866 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57048572ns 1002873 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57048743ns 1002876 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57049198ns 1002884 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57049368ns 1002887 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57049652ns 1002892 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57049936ns 1002897 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57050221ns 1002902 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57050675ns 1002910 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57050846ns 1002913 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57051130ns 1002918 1a110850 fd5ff06f jal x0, -44 +57051414ns 1002923 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57051698ns 1002928 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57052096ns 1002935 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57052267ns 1002938 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57052721ns 1002946 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57052892ns 1002949 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57053176ns 1002954 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57053460ns 1002959 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57053744ns 1002964 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57054199ns 1002972 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57054369ns 1002975 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57054653ns 1002980 1a110850 fd5ff06f jal x0, -44 +57054938ns 1002985 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57055222ns 1002990 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57055620ns 1002997 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57055790ns 1003000 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57056245ns 1003008 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57056415ns 1003011 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57056699ns 1003016 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57056984ns 1003021 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57057268ns 1003026 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57057722ns 1003034 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57057893ns 1003037 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57058177ns 1003042 1a110850 fd5ff06f jal x0, -44 +57058461ns 1003047 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57058745ns 1003052 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57059143ns 1003059 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57059314ns 1003062 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57059768ns 1003070 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57059939ns 1003073 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57060223ns 1003078 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57060507ns 1003083 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57060791ns 1003088 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57061246ns 1003096 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57061416ns 1003099 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57061701ns 1003104 1a110850 fd5ff06f jal x0, -44 +57061985ns 1003109 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57062269ns 1003114 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57062667ns 1003121 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57062837ns 1003124 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57063292ns 1003132 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57063462ns 1003135 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57063747ns 1003140 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57064031ns 1003145 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57064315ns 1003150 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57064770ns 1003158 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57064940ns 1003161 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57065224ns 1003166 1a110850 fd5ff06f jal x0, -44 +57065508ns 1003171 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57065793ns 1003176 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57066190ns 1003183 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57066361ns 1003186 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57066816ns 1003194 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57066986ns 1003197 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57067270ns 1003202 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57067554ns 1003207 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57067839ns 1003212 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57068293ns 1003220 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57068464ns 1003223 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57068748ns 1003228 1a110850 fd5ff06f jal x0, -44 +57069032ns 1003233 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57069316ns 1003238 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57069714ns 1003245 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57069884ns 1003248 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57070339ns 1003256 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57070510ns 1003259 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57070794ns 1003264 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57071078ns 1003269 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57071362ns 1003274 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57071817ns 1003282 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57071987ns 1003285 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57072271ns 1003290 1a110850 fd5ff06f jal x0, -44 +57072556ns 1003295 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57072840ns 1003300 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57073238ns 1003307 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57073408ns 1003310 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57073863ns 1003318 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57074033ns 1003321 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57074317ns 1003326 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57074602ns 1003331 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57074886ns 1003336 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57075340ns 1003344 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57075511ns 1003347 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57075795ns 1003352 1a110850 fd5ff06f jal x0, -44 +57076079ns 1003357 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57076363ns 1003362 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57076761ns 1003369 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57076932ns 1003372 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57077386ns 1003380 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57077557ns 1003383 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57077841ns 1003388 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57078125ns 1003393 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57078409ns 1003398 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57078864ns 1003406 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57079034ns 1003409 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57079319ns 1003414 1a110850 fd5ff06f jal x0, -44 +57079603ns 1003419 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57079887ns 1003424 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57080285ns 1003431 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57080455ns 1003434 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57080910ns 1003442 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57081080ns 1003445 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57081365ns 1003450 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57081649ns 1003455 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57081933ns 1003460 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57082387ns 1003468 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57082558ns 1003471 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57082842ns 1003476 1a110850 fd5ff06f jal x0, -44 +57083126ns 1003481 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57083410ns 1003486 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57083808ns 1003493 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57083979ns 1003496 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57084433ns 1003504 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57084604ns 1003507 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57084888ns 1003512 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57085172ns 1003517 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57085456ns 1003522 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57085911ns 1003530 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57086082ns 1003533 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57086366ns 1003538 1a110850 fd5ff06f jal x0, -44 +57086650ns 1003543 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57086934ns 1003548 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57087332ns 1003555 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57087502ns 1003558 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57087957ns 1003566 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57088128ns 1003569 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57088412ns 1003574 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57088696ns 1003579 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57088980ns 1003584 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57089435ns 1003592 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57089605ns 1003595 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57089889ns 1003600 1a110850 fd5ff06f jal x0, -44 +57090173ns 1003605 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57090458ns 1003610 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57090855ns 1003617 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57091026ns 1003620 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57091481ns 1003628 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57091651ns 1003631 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57091935ns 1003636 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57092219ns 1003641 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57092504ns 1003646 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57092958ns 1003654 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57093129ns 1003657 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57093413ns 1003662 1a110850 fd5ff06f jal x0, -44 +57093697ns 1003667 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57093981ns 1003672 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57094379ns 1003679 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57094550ns 1003682 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57095004ns 1003690 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57095175ns 1003693 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57095459ns 1003698 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57095743ns 1003703 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57096027ns 1003708 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57096482ns 1003716 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57096652ns 1003719 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57096936ns 1003724 1a110850 fd5ff06f jal x0, -44 +57097221ns 1003729 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57097505ns 1003734 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57097903ns 1003741 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57098073ns 1003744 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57098528ns 1003752 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57098698ns 1003755 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57098982ns 1003760 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57099267ns 1003765 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57099551ns 1003770 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57100005ns 1003778 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57100176ns 1003781 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57100460ns 1003786 1a110850 fd5ff06f jal x0, -44 +57100744ns 1003791 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57101028ns 1003796 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57101426ns 1003803 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57101597ns 1003806 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57102051ns 1003814 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57102222ns 1003817 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57102506ns 1003822 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57102790ns 1003827 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57103074ns 1003832 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57103529ns 1003840 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57103699ns 1003843 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57103984ns 1003848 1a110850 fd5ff06f jal x0, -44 +57104268ns 1003853 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57104552ns 1003858 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57104950ns 1003865 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57105120ns 1003868 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57105575ns 1003876 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57105745ns 1003879 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57106030ns 1003884 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57106314ns 1003889 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57106598ns 1003894 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57107053ns 1003902 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57107223ns 1003905 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57107507ns 1003910 1a110850 fd5ff06f jal x0, -44 +57107791ns 1003915 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57108076ns 1003920 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57108473ns 1003927 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57108644ns 1003930 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57109099ns 1003938 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57109269ns 1003941 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57109553ns 1003946 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57109837ns 1003951 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57110122ns 1003956 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57110576ns 1003964 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57110747ns 1003967 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57111031ns 1003972 1a110850 fd5ff06f jal x0, -44 +57111315ns 1003977 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57111599ns 1003982 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57111997ns 1003989 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57112167ns 1003992 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57112622ns 1004000 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57112793ns 1004003 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57113077ns 1004008 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57113361ns 1004013 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57113645ns 1004018 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57114100ns 1004026 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57114270ns 1004029 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57114554ns 1004034 1a110850 fd5ff06f jal x0, -44 +57114839ns 1004039 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57115123ns 1004044 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57115521ns 1004051 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57115691ns 1004054 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57116146ns 1004062 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57116316ns 1004065 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57116600ns 1004070 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57116885ns 1004075 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57117169ns 1004080 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57117623ns 1004088 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57117794ns 1004091 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57118078ns 1004096 1a110850 fd5ff06f jal x0, -44 +57118362ns 1004101 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57118646ns 1004106 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57119044ns 1004113 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57119215ns 1004116 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57119669ns 1004124 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57119840ns 1004127 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57120124ns 1004132 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57120408ns 1004137 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57120692ns 1004142 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57121147ns 1004150 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57121317ns 1004153 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57121602ns 1004158 1a110850 fd5ff06f jal x0, -44 +57121886ns 1004163 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57122170ns 1004168 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57122568ns 1004175 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57122738ns 1004178 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57123193ns 1004186 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57123363ns 1004189 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57123648ns 1004194 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57123932ns 1004199 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57124216ns 1004204 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57124671ns 1004212 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57124841ns 1004215 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57125125ns 1004220 1a110850 fd5ff06f jal x0, -44 +57125409ns 1004225 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57125693ns 1004230 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57126091ns 1004237 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57126262ns 1004240 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57126716ns 1004248 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57126887ns 1004251 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57127171ns 1004256 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57127455ns 1004261 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57127739ns 1004266 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57128194ns 1004274 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57128365ns 1004277 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57128649ns 1004282 1a110850 fd5ff06f jal x0, -44 +57128933ns 1004287 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57129217ns 1004292 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57129615ns 1004299 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57129785ns 1004302 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57130240ns 1004310 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57130411ns 1004313 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57130695ns 1004318 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57130979ns 1004323 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57131263ns 1004328 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57131718ns 1004336 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57131888ns 1004339 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57132172ns 1004344 1a110850 fd5ff06f jal x0, -44 +57132456ns 1004349 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57132741ns 1004354 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57133138ns 1004361 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57133309ns 1004364 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57133764ns 1004372 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57133934ns 1004375 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57134218ns 1004380 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57134502ns 1004385 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57134787ns 1004390 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57135241ns 1004398 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57135412ns 1004401 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57135696ns 1004406 1a110850 fd5ff06f jal x0, -44 +57135980ns 1004411 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57136264ns 1004416 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57136662ns 1004423 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57136833ns 1004426 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57137287ns 1004434 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57137458ns 1004437 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57137742ns 1004442 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57138026ns 1004447 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57138310ns 1004452 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57138765ns 1004460 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57138935ns 1004463 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57139219ns 1004468 1a110850 fd5ff06f jal x0, -44 +57139504ns 1004473 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57139788ns 1004478 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57140186ns 1004485 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57140356ns 1004488 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57140811ns 1004496 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57140981ns 1004499 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57141265ns 1004504 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57141550ns 1004509 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57141834ns 1004514 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57142288ns 1004522 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57142459ns 1004525 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57142743ns 1004530 1a110850 fd5ff06f jal x0, -44 +57143027ns 1004535 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57143311ns 1004540 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57143709ns 1004547 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57143880ns 1004550 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57144334ns 1004558 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57144505ns 1004561 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57144789ns 1004566 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57145073ns 1004571 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57145357ns 1004576 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57145812ns 1004584 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57145983ns 1004587 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57146267ns 1004592 1a110850 fd5ff06f jal x0, -44 +57146551ns 1004597 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57146835ns 1004602 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57147233ns 1004609 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57147403ns 1004612 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57147858ns 1004620 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57148028ns 1004623 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57148313ns 1004628 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57148597ns 1004633 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57148881ns 1004638 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57149336ns 1004646 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57149506ns 1004649 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57149790ns 1004654 1a110850 fd5ff06f jal x0, -44 +57150074ns 1004659 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57150359ns 1004664 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57150756ns 1004671 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57150927ns 1004674 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57151382ns 1004682 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57151552ns 1004685 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57151836ns 1004690 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57152120ns 1004695 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57152405ns 1004700 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57152859ns 1004708 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57153030ns 1004711 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57153314ns 1004716 1a110850 fd5ff06f jal x0, -44 +57153598ns 1004721 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57153882ns 1004726 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57154280ns 1004733 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57154450ns 1004736 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57154905ns 1004744 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57155076ns 1004747 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57155360ns 1004752 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57155644ns 1004757 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57155928ns 1004762 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57156383ns 1004770 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57156553ns 1004773 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57156837ns 1004778 1a110850 fd5ff06f jal x0, -44 +57157122ns 1004783 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57157406ns 1004788 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57157804ns 1004795 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57157974ns 1004798 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57158429ns 1004806 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57158599ns 1004809 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57158883ns 1004814 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57159168ns 1004819 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57159452ns 1004824 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57159906ns 1004832 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57160077ns 1004835 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57160361ns 1004840 1a110850 fd5ff06f jal x0, -44 +57160645ns 1004845 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57160929ns 1004850 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57161327ns 1004857 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57161498ns 1004860 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57161952ns 1004868 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57162123ns 1004871 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57162407ns 1004876 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57162691ns 1004881 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57162975ns 1004886 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57163430ns 1004894 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57163600ns 1004897 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57163885ns 1004902 1a110850 fd5ff06f jal x0, -44 +57164169ns 1004907 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57164453ns 1004912 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57164851ns 1004919 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57165021ns 1004922 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57165476ns 1004930 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57165646ns 1004933 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57165931ns 1004938 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57166215ns 1004943 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57166499ns 1004948 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57166954ns 1004956 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57167124ns 1004959 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57167408ns 1004964 1a110850 fd5ff06f jal x0, -44 +57167692ns 1004969 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57167976ns 1004974 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57168374ns 1004981 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57168545ns 1004984 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57168999ns 1004992 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57169170ns 1004995 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57169454ns 1005000 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57169738ns 1005005 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57170022ns 1005010 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57170477ns 1005018 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57170648ns 1005021 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57170932ns 1005026 1a110850 fd5ff06f jal x0, -44 +57171216ns 1005031 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57171500ns 1005036 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57171898ns 1005043 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57172068ns 1005046 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57172523ns 1005054 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57172694ns 1005057 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57172978ns 1005062 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57173262ns 1005067 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57173546ns 1005072 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57174001ns 1005080 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57174171ns 1005083 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57174455ns 1005088 1a110850 fd5ff06f jal x0, -44 +57174739ns 1005093 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57175024ns 1005098 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57175421ns 1005105 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57175592ns 1005108 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57176047ns 1005116 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57176217ns 1005119 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57176501ns 1005124 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57176785ns 1005129 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57177070ns 1005134 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57177524ns 1005142 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57177695ns 1005145 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57177979ns 1005150 1a110850 fd5ff06f jal x0, -44 +57178263ns 1005155 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57178547ns 1005160 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57178945ns 1005167 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57179116ns 1005170 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57179570ns 1005178 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57179741ns 1005181 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57180025ns 1005186 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57180309ns 1005191 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57180593ns 1005196 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57181048ns 1005204 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57181218ns 1005207 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57181503ns 1005212 1a110850 fd5ff06f jal x0, -44 +57181787ns 1005217 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57182071ns 1005222 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57182469ns 1005229 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57182639ns 1005232 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57183094ns 1005240 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57183264ns 1005243 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57183548ns 1005248 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57183833ns 1005253 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57184117ns 1005258 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57184571ns 1005266 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57184742ns 1005269 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57185026ns 1005274 1a110850 fd5ff06f jal x0, -44 +57185310ns 1005279 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57185594ns 1005284 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57185992ns 1005291 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57186163ns 1005294 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57186617ns 1005302 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57186788ns 1005305 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57187072ns 1005310 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57187356ns 1005315 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57187640ns 1005320 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57188095ns 1005328 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57188266ns 1005331 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57188550ns 1005336 1a110850 fd5ff06f jal x0, -44 +57188834ns 1005341 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57189118ns 1005346 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57189516ns 1005353 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57189686ns 1005356 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57190141ns 1005364 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57190311ns 1005367 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57190596ns 1005372 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57190880ns 1005377 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57191164ns 1005382 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57191619ns 1005390 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57191789ns 1005393 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57192073ns 1005398 1a110850 fd5ff06f jal x0, -44 +57192357ns 1005403 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57192642ns 1005408 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57193039ns 1005415 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57193210ns 1005418 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57193665ns 1005426 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57193835ns 1005429 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57194119ns 1005434 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57194403ns 1005439 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57194688ns 1005444 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57195142ns 1005452 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57195313ns 1005455 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57195597ns 1005460 1a110850 fd5ff06f jal x0, -44 +57195881ns 1005465 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57196165ns 1005470 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57196563ns 1005477 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57196733ns 1005480 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57197188ns 1005488 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57197359ns 1005491 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57197643ns 1005496 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57197927ns 1005501 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57198211ns 1005506 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57198666ns 1005514 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57198836ns 1005517 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57199120ns 1005522 1a110850 fd5ff06f jal x0, -44 +57199405ns 1005527 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57199689ns 1005532 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57200087ns 1005539 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57200257ns 1005542 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57200712ns 1005550 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57200882ns 1005553 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57201166ns 1005558 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57201451ns 1005563 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57201735ns 1005568 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57202189ns 1005576 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57202360ns 1005579 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57202644ns 1005584 1a110850 fd5ff06f jal x0, -44 +57202928ns 1005589 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57203212ns 1005594 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57203610ns 1005601 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57203781ns 1005604 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57204235ns 1005612 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57204406ns 1005615 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57204690ns 1005620 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57204974ns 1005625 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57205258ns 1005630 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57205713ns 1005638 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57205883ns 1005641 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57206168ns 1005646 1a110850 fd5ff06f jal x0, -44 +57206452ns 1005651 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57206736ns 1005656 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57207134ns 1005663 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57207304ns 1005666 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57207759ns 1005674 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57207929ns 1005677 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57208214ns 1005682 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57208498ns 1005687 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57208782ns 1005692 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57209237ns 1005700 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57209407ns 1005703 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57209691ns 1005708 1a110850 fd5ff06f jal x0, -44 +57209975ns 1005713 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57210259ns 1005718 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57210657ns 1005725 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57210828ns 1005728 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57211282ns 1005736 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57211453ns 1005739 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57211737ns 1005744 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57212021ns 1005749 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57212305ns 1005754 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57212760ns 1005762 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57212931ns 1005765 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57213215ns 1005770 1a110850 fd5ff06f jal x0, -44 +57213499ns 1005775 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57213783ns 1005780 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57214181ns 1005787 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57214351ns 1005790 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57214806ns 1005798 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57214977ns 1005801 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57215261ns 1005806 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57215545ns 1005811 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57215829ns 1005816 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57216284ns 1005824 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57216454ns 1005827 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57216738ns 1005832 1a110850 fd5ff06f jal x0, -44 +57217023ns 1005837 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57217307ns 1005842 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57217704ns 1005849 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57217875ns 1005852 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57218330ns 1005860 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57218500ns 1005863 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57218784ns 1005868 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57219068ns 1005873 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57219353ns 1005878 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57219807ns 1005886 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57219978ns 1005889 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57220262ns 1005894 1a110850 fd5ff06f jal x0, -44 +57220546ns 1005899 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57220830ns 1005904 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57221228ns 1005911 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57221399ns 1005914 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57221853ns 1005922 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57222024ns 1005925 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57222308ns 1005930 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57222592ns 1005935 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57222876ns 1005940 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57223331ns 1005948 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57223501ns 1005951 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57223786ns 1005956 1a110850 fd5ff06f jal x0, -44 +57224070ns 1005961 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57224354ns 1005966 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57224752ns 1005973 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57224922ns 1005976 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57225377ns 1005984 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57225547ns 1005987 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57225831ns 1005992 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57226116ns 1005997 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57226400ns 1006002 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57226854ns 1006010 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57227025ns 1006013 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57227309ns 1006018 1a110850 fd5ff06f jal x0, -44 +57227593ns 1006023 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57227877ns 1006028 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57228275ns 1006035 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57228446ns 1006038 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57228900ns 1006046 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57229071ns 1006049 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57229355ns 1006054 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57229639ns 1006059 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57229923ns 1006064 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57230378ns 1006072 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57230549ns 1006075 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57230833ns 1006080 1a110850 fd5ff06f jal x0, -44 +57231117ns 1006085 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57231401ns 1006090 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57231799ns 1006097 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57231969ns 1006100 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57232424ns 1006108 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57232594ns 1006111 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57232879ns 1006116 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57233163ns 1006121 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57233447ns 1006126 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57233902ns 1006134 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57234072ns 1006137 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57234356ns 1006142 1a110850 fd5ff06f jal x0, -44 +57234640ns 1006147 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57234925ns 1006152 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57235322ns 1006159 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57235493ns 1006162 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57235948ns 1006170 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57236118ns 1006173 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57236402ns 1006178 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57236686ns 1006183 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57236971ns 1006188 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57237425ns 1006196 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57237596ns 1006199 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57237880ns 1006204 1a110850 fd5ff06f jal x0, -44 +57238164ns 1006209 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57238448ns 1006214 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57238846ns 1006221 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57239016ns 1006224 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57239471ns 1006232 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57239642ns 1006235 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57239926ns 1006240 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57240210ns 1006245 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57240494ns 1006250 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57240949ns 1006258 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57241119ns 1006261 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57241403ns 1006266 1a110850 fd5ff06f jal x0, -44 +57241688ns 1006271 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57241972ns 1006276 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57242370ns 1006283 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57242540ns 1006286 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57242995ns 1006294 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57243165ns 1006297 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57243449ns 1006302 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57243734ns 1006307 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57244018ns 1006312 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57244472ns 1006320 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57244643ns 1006323 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57244927ns 1006328 1a110850 fd5ff06f jal x0, -44 +57245211ns 1006333 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57245495ns 1006338 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57245893ns 1006345 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57246064ns 1006348 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57246518ns 1006356 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57246689ns 1006359 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57246973ns 1006364 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57247257ns 1006369 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57247541ns 1006374 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57247996ns 1006382 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57248166ns 1006385 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57248451ns 1006390 1a110850 fd5ff06f jal x0, -44 +57248735ns 1006395 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57249019ns 1006400 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57249417ns 1006407 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57249587ns 1006410 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57250042ns 1006418 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57250212ns 1006421 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57250497ns 1006426 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57250781ns 1006431 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57251065ns 1006436 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57251520ns 1006444 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57251690ns 1006447 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57251974ns 1006452 1a110850 fd5ff06f jal x0, -44 +57252258ns 1006457 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57252543ns 1006462 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57252940ns 1006469 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57253111ns 1006472 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57253565ns 1006480 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57253736ns 1006483 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57254020ns 1006488 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57254304ns 1006493 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57254588ns 1006498 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57255043ns 1006506 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57255214ns 1006509 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57255498ns 1006514 1a110850 fd5ff06f jal x0, -44 +57255782ns 1006519 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57256066ns 1006524 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57256464ns 1006531 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57256634ns 1006534 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57257089ns 1006542 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57257260ns 1006545 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57257544ns 1006550 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57257828ns 1006555 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57258112ns 1006560 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57258567ns 1006568 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57258737ns 1006571 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57259021ns 1006576 1a110850 fd5ff06f jal x0, -44 +57259306ns 1006581 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57259590ns 1006586 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57259987ns 1006593 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57260158ns 1006596 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57260613ns 1006604 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57260783ns 1006607 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57261067ns 1006612 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57261351ns 1006617 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57261636ns 1006622 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57262090ns 1006630 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57262261ns 1006633 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57262545ns 1006638 1a110850 fd5ff06f jal x0, -44 +57262829ns 1006643 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57263113ns 1006648 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57263511ns 1006655 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57263682ns 1006658 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57264136ns 1006666 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57264307ns 1006669 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57264591ns 1006674 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57264875ns 1006679 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57265159ns 1006684 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57265614ns 1006692 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57265784ns 1006695 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57266069ns 1006700 1a110850 fd5ff06f jal x0, -44 +57266353ns 1006705 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57266637ns 1006710 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57267035ns 1006717 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57267205ns 1006720 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57267660ns 1006728 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57267830ns 1006731 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57268114ns 1006736 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57268399ns 1006741 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57268683ns 1006746 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57269137ns 1006754 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57269308ns 1006757 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57269592ns 1006762 1a110850 fd5ff06f jal x0, -44 +57269876ns 1006767 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57270160ns 1006772 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57270558ns 1006779 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57270729ns 1006782 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57271183ns 1006790 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57271354ns 1006793 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57271638ns 1006798 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57271922ns 1006803 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57272206ns 1006808 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57272661ns 1006816 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57272832ns 1006819 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57273116ns 1006824 1a110850 fd5ff06f jal x0, -44 +57273400ns 1006829 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57273684ns 1006834 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57274082ns 1006841 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57274252ns 1006844 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57274707ns 1006852 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57274877ns 1006855 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57275162ns 1006860 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57275446ns 1006865 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57275730ns 1006870 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57276185ns 1006878 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57276355ns 1006881 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57276639ns 1006886 1a110850 fd5ff06f jal x0, -44 +57276923ns 1006891 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57277208ns 1006896 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57277605ns 1006903 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57277776ns 1006906 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57278231ns 1006914 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57278401ns 1006917 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57278685ns 1006922 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57278969ns 1006927 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57279254ns 1006932 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57279708ns 1006940 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57279879ns 1006943 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57280163ns 1006948 1a110850 fd5ff06f jal x0, -44 +57280447ns 1006953 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57280731ns 1006958 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57281129ns 1006965 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57281299ns 1006968 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57281754ns 1006976 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57281925ns 1006979 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57282209ns 1006984 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57282493ns 1006989 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57282777ns 1006994 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57283232ns 1007002 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57283402ns 1007005 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57283686ns 1007010 1a110850 fd5ff06f jal x0, -44 +57283971ns 1007015 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57284255ns 1007020 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57284653ns 1007027 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57284823ns 1007030 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57285278ns 1007038 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57285448ns 1007041 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57285732ns 1007046 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57286017ns 1007051 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57286301ns 1007056 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57286755ns 1007064 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57286926ns 1007067 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57287210ns 1007072 1a110850 fd5ff06f jal x0, -44 +57287494ns 1007077 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57287778ns 1007082 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57288176ns 1007089 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57288347ns 1007092 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57288801ns 1007100 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57288972ns 1007103 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57289256ns 1007108 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57289540ns 1007113 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57289824ns 1007118 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57290279ns 1007126 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57290449ns 1007129 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57290734ns 1007134 1a110850 fd5ff06f jal x0, -44 +57291018ns 1007139 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57291302ns 1007144 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57291700ns 1007151 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57291870ns 1007154 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57292325ns 1007162 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57292495ns 1007165 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57292780ns 1007170 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57293064ns 1007175 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57293348ns 1007180 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57293803ns 1007188 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57293973ns 1007191 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57294257ns 1007196 1a110850 fd5ff06f jal x0, -44 +57294541ns 1007201 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57294826ns 1007206 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57295223ns 1007213 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57295394ns 1007216 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57295848ns 1007224 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57296019ns 1007227 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57296303ns 1007232 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57296587ns 1007237 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57296871ns 1007242 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57297326ns 1007250 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57297497ns 1007253 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57297781ns 1007258 1a110850 fd5ff06f jal x0, -44 +57298065ns 1007263 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57298349ns 1007268 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57298747ns 1007275 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57298917ns 1007278 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57299372ns 1007286 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57299543ns 1007289 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57299827ns 1007294 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57300111ns 1007299 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57300395ns 1007304 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57300850ns 1007312 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57301020ns 1007315 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57301304ns 1007320 1a110850 fd5ff06f jal x0, -44 +57301589ns 1007325 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57301873ns 1007330 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57302271ns 1007337 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57302441ns 1007340 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57302896ns 1007348 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57303066ns 1007351 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57303350ns 1007356 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57303634ns 1007361 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57303919ns 1007366 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57304373ns 1007374 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57304544ns 1007377 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57304828ns 1007382 1a110850 fd5ff06f jal x0, -44 +57305112ns 1007387 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57305396ns 1007392 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57305794ns 1007399 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57305965ns 1007402 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57306419ns 1007410 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57306590ns 1007413 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57306874ns 1007418 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57307158ns 1007423 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57307442ns 1007428 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57307897ns 1007436 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57308067ns 1007439 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57308352ns 1007444 1a110850 fd5ff06f jal x0, -44 +57308636ns 1007449 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57308920ns 1007454 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57309318ns 1007461 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57309488ns 1007464 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57309943ns 1007472 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57310113ns 1007475 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57310397ns 1007480 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57310682ns 1007485 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57310966ns 1007490 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57311420ns 1007498 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57311591ns 1007501 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57311875ns 1007506 1a110850 fd5ff06f jal x0, -44 +57312159ns 1007511 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57312443ns 1007516 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57312841ns 1007523 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57313012ns 1007526 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57313466ns 1007534 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57313637ns 1007537 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57313921ns 1007542 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57314205ns 1007547 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57314489ns 1007552 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57314944ns 1007560 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57315115ns 1007563 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57315399ns 1007568 1a110850 fd5ff06f jal x0, -44 +57315683ns 1007573 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57315967ns 1007578 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57316365ns 1007585 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57316535ns 1007588 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57316990ns 1007596 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57317160ns 1007599 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57317445ns 1007604 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57317729ns 1007609 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57318013ns 1007614 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57318468ns 1007622 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57318638ns 1007625 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57318922ns 1007630 1a110850 fd5ff06f jal x0, -44 +57319206ns 1007635 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57319491ns 1007640 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57319888ns 1007647 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57320059ns 1007650 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57320514ns 1007658 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57320684ns 1007661 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57320968ns 1007666 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57321252ns 1007671 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57321537ns 1007676 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57321991ns 1007684 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57322162ns 1007687 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57322446ns 1007692 1a110850 fd5ff06f jal x0, -44 +57322730ns 1007697 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57323014ns 1007702 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57323412ns 1007709 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57323583ns 1007712 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57324037ns 1007720 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57324208ns 1007723 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57324492ns 1007728 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57324776ns 1007733 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57325060ns 1007738 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57325515ns 1007746 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57325685ns 1007749 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57325969ns 1007754 1a110850 fd5ff06f jal x0, -44 +57326254ns 1007759 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57326538ns 1007764 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57326936ns 1007771 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57327106ns 1007774 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57327561ns 1007782 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57327731ns 1007785 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57328015ns 1007790 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57328300ns 1007795 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57328584ns 1007800 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57329038ns 1007808 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57329209ns 1007811 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57329493ns 1007816 1a110850 fd5ff06f jal x0, -44 +57329777ns 1007821 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57330061ns 1007826 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57330459ns 1007833 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57330630ns 1007836 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57331084ns 1007844 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57331255ns 1007847 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57331539ns 1007852 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57331823ns 1007857 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57332107ns 1007862 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57332562ns 1007870 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57332732ns 1007873 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57333017ns 1007878 1a110850 fd5ff06f jal x0, -44 +57333301ns 1007883 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57333585ns 1007888 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57333983ns 1007895 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57334153ns 1007898 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57334608ns 1007906 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57334778ns 1007909 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57335063ns 1007914 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57335347ns 1007919 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57335631ns 1007924 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57336086ns 1007932 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57336256ns 1007935 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57336540ns 1007940 1a110850 fd5ff06f jal x0, -44 +57336824ns 1007945 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57337109ns 1007950 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57337506ns 1007957 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57337677ns 1007960 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57338131ns 1007968 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57338302ns 1007971 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57338586ns 1007976 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57338870ns 1007981 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57339154ns 1007986 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57339609ns 1007994 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57339780ns 1007997 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57340064ns 1008002 1a110850 fd5ff06f jal x0, -44 +57340348ns 1008007 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57340632ns 1008012 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57341030ns 1008019 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57341200ns 1008022 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57341655ns 1008030 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57341826ns 1008033 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57342110ns 1008038 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57342394ns 1008043 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57342678ns 1008048 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57343133ns 1008056 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57343303ns 1008059 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57343587ns 1008064 1a110850 fd5ff06f jal x0, -44 +57343872ns 1008069 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57344156ns 1008074 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57344554ns 1008081 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57344724ns 1008084 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57345179ns 1008092 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57345349ns 1008095 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57345633ns 1008100 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57345917ns 1008105 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57346202ns 1008110 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57346656ns 1008118 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57346827ns 1008121 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57347111ns 1008126 1a110850 fd5ff06f jal x0, -44 +57347395ns 1008131 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57347679ns 1008136 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57348077ns 1008143 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57348248ns 1008146 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57348702ns 1008154 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57348873ns 1008157 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57349157ns 1008162 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57349441ns 1008167 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57349725ns 1008172 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57350180ns 1008180 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57350350ns 1008183 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57350635ns 1008188 1a110850 fd5ff06f jal x0, -44 +57350919ns 1008193 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57351203ns 1008198 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57351601ns 1008205 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57351771ns 1008208 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57352226ns 1008216 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57352396ns 1008219 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57352680ns 1008224 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57352965ns 1008229 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57353249ns 1008234 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57353703ns 1008242 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57353874ns 1008245 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57354158ns 1008250 1a110850 fd5ff06f jal x0, -44 +57354442ns 1008255 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57354726ns 1008260 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57355124ns 1008267 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57355295ns 1008270 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57355749ns 1008278 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57355920ns 1008281 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57356204ns 1008286 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57356488ns 1008291 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57356772ns 1008296 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57357227ns 1008304 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57357398ns 1008307 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57357682ns 1008312 1a110850 fd5ff06f jal x0, -44 +57357966ns 1008317 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57358250ns 1008322 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57358648ns 1008329 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57358818ns 1008332 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57359273ns 1008340 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57359443ns 1008343 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57359728ns 1008348 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57360012ns 1008353 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57360296ns 1008358 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57360751ns 1008366 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57360921ns 1008369 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57361205ns 1008374 1a110850 fd5ff06f jal x0, -44 +57361489ns 1008379 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57361774ns 1008384 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57362171ns 1008391 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57362342ns 1008394 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57362797ns 1008402 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57362967ns 1008405 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57363251ns 1008410 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57363535ns 1008415 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57363820ns 1008420 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57364274ns 1008428 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57364445ns 1008431 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57364729ns 1008436 1a110850 fd5ff06f jal x0, -44 +57365013ns 1008441 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57365297ns 1008446 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57365695ns 1008453 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57365866ns 1008456 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57366320ns 1008464 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57366491ns 1008467 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57366775ns 1008472 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57367059ns 1008477 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57367343ns 1008482 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57367798ns 1008490 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57367968ns 1008493 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57368252ns 1008498 1a110850 fd5ff06f jal x0, -44 +57368537ns 1008503 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57368821ns 1008508 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57369219ns 1008515 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57369389ns 1008518 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57369844ns 1008526 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57370014ns 1008529 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57370298ns 1008534 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57370583ns 1008539 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57370867ns 1008544 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57371321ns 1008552 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57371492ns 1008555 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57371776ns 1008560 1a110850 fd5ff06f jal x0, -44 +57372060ns 1008565 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57372344ns 1008570 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57372742ns 1008577 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57372913ns 1008580 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57373367ns 1008588 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57373538ns 1008591 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57373822ns 1008596 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57374106ns 1008601 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57374390ns 1008606 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57374845ns 1008614 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57375015ns 1008617 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57375300ns 1008622 1a110850 fd5ff06f jal x0, -44 +57375584ns 1008627 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57375868ns 1008632 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57376266ns 1008639 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57376436ns 1008642 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57376891ns 1008650 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57377061ns 1008653 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57377346ns 1008658 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57377630ns 1008663 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57377914ns 1008668 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57378369ns 1008676 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57378539ns 1008679 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57378823ns 1008684 1a110850 fd5ff06f jal x0, -44 +57379107ns 1008689 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57379392ns 1008694 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57379789ns 1008701 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57379960ns 1008704 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57380415ns 1008712 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57380585ns 1008715 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57380869ns 1008720 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57381153ns 1008725 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57381437ns 1008730 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57381892ns 1008738 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57382063ns 1008741 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57382347ns 1008746 1a110850 fd5ff06f jal x0, -44 +57382631ns 1008751 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57382915ns 1008756 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57383313ns 1008763 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57383483ns 1008766 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57383938ns 1008774 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57384109ns 1008777 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57384393ns 1008782 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57384677ns 1008787 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57384961ns 1008792 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57385416ns 1008800 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57385586ns 1008803 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57385870ns 1008808 1a110850 fd5ff06f jal x0, -44 +57386155ns 1008813 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57386439ns 1008818 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57386837ns 1008825 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57387007ns 1008828 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57387462ns 1008836 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57387632ns 1008839 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57387916ns 1008844 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57388200ns 1008849 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57388485ns 1008854 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57388939ns 1008862 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57389110ns 1008865 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57389394ns 1008870 1a110850 fd5ff06f jal x0, -44 +57389678ns 1008875 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57389962ns 1008880 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57390360ns 1008887 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57390531ns 1008890 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57390985ns 1008898 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57391156ns 1008901 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57391440ns 1008906 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57391724ns 1008911 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57392008ns 1008916 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57392463ns 1008924 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57392633ns 1008927 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57392918ns 1008932 1a110850 fd5ff06f jal x0, -44 +57393202ns 1008937 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57393486ns 1008942 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57393884ns 1008949 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57394054ns 1008952 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57394509ns 1008960 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57394679ns 1008963 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57394963ns 1008968 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57395248ns 1008973 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57395532ns 1008978 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57395986ns 1008986 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57396157ns 1008989 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57396441ns 1008994 1a110850 fd5ff06f jal x0, -44 +57396725ns 1008999 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57397009ns 1009004 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57397407ns 1009011 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57397578ns 1009014 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57398032ns 1009022 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57398203ns 1009025 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57398487ns 1009030 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57398771ns 1009035 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57399055ns 1009040 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57399510ns 1009048 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57399681ns 1009051 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57399965ns 1009056 1a110850 fd5ff06f jal x0, -44 +57400249ns 1009061 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57400533ns 1009066 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57400931ns 1009073 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57401101ns 1009076 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57401556ns 1009084 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57401727ns 1009087 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57402011ns 1009092 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57402295ns 1009097 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57402579ns 1009102 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57403034ns 1009110 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57403204ns 1009113 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57403488ns 1009118 1a110850 fd5ff06f jal x0, -44 +57403772ns 1009123 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57404057ns 1009128 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57404454ns 1009135 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57404625ns 1009138 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57405080ns 1009146 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57405250ns 1009149 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57405534ns 1009154 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57405818ns 1009159 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57406103ns 1009164 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57406557ns 1009172 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57406728ns 1009175 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57407012ns 1009180 1a110850 fd5ff06f jal x0, -44 +57407296ns 1009185 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57407580ns 1009190 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57407978ns 1009197 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57408149ns 1009200 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57408603ns 1009208 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57408774ns 1009211 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57409058ns 1009216 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57409342ns 1009221 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57409626ns 1009226 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57410081ns 1009234 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57410251ns 1009237 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57410535ns 1009242 1a110850 fd5ff06f jal x0, -44 +57410820ns 1009247 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57411104ns 1009252 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57411502ns 1009259 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57411672ns 1009262 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57412127ns 1009270 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57412297ns 1009273 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57412581ns 1009278 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57412866ns 1009283 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57413150ns 1009288 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57413604ns 1009296 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57413775ns 1009299 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57414059ns 1009304 1a110850 fd5ff06f jal x0, -44 +57414343ns 1009309 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57414627ns 1009314 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57415025ns 1009321 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57415196ns 1009324 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57415650ns 1009332 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57415821ns 1009335 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57416105ns 1009340 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57416389ns 1009345 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57416673ns 1009350 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57417128ns 1009358 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57417298ns 1009361 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57417583ns 1009366 1a110850 fd5ff06f jal x0, -44 +57417867ns 1009371 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57418151ns 1009376 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57418549ns 1009383 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57418719ns 1009386 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57419174ns 1009394 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57419344ns 1009397 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57419629ns 1009402 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57419913ns 1009407 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57420197ns 1009412 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57420652ns 1009420 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57420822ns 1009423 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57421106ns 1009428 1a110850 fd5ff06f jal x0, -44 +57421390ns 1009433 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57421675ns 1009438 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57422072ns 1009445 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57422243ns 1009448 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57422698ns 1009456 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57422868ns 1009459 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57423152ns 1009464 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57423436ns 1009469 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57423720ns 1009474 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57424175ns 1009482 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57424346ns 1009485 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57424630ns 1009490 1a110850 fd5ff06f jal x0, -44 +57424914ns 1009495 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57425198ns 1009500 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57425596ns 1009507 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57425766ns 1009510 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57426221ns 1009518 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57426392ns 1009521 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57426676ns 1009526 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57426960ns 1009531 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57427244ns 1009536 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57427699ns 1009544 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57427869ns 1009547 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57428153ns 1009552 1a110850 fd5ff06f jal x0, -44 +57428438ns 1009557 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57428722ns 1009562 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57429120ns 1009569 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57429290ns 1009572 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57429745ns 1009580 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57429915ns 1009583 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57430199ns 1009588 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57430483ns 1009593 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57430768ns 1009598 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57431222ns 1009606 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57431393ns 1009609 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57431677ns 1009614 1a110850 fd5ff06f jal x0, -44 +57431961ns 1009619 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57432245ns 1009624 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57432643ns 1009631 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57432814ns 1009634 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57433268ns 1009642 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57433439ns 1009645 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57433723ns 1009650 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57434007ns 1009655 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57434291ns 1009660 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57434746ns 1009668 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57434916ns 1009671 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57435201ns 1009676 1a110850 fd5ff06f jal x0, -44 +57435485ns 1009681 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57435769ns 1009686 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57436167ns 1009693 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57436337ns 1009696 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57436792ns 1009704 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57436962ns 1009707 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57437247ns 1009712 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57437531ns 1009717 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57437815ns 1009722 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57438269ns 1009730 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57438440ns 1009733 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57438724ns 1009738 1a110850 fd5ff06f jal x0, -44 +57439008ns 1009743 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57439292ns 1009748 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57439690ns 1009755 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57439861ns 1009758 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57440315ns 1009766 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57440486ns 1009769 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57440770ns 1009774 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57441054ns 1009779 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57441338ns 1009784 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57441793ns 1009792 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57441964ns 1009795 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57442248ns 1009800 1a110850 fd5ff06f jal x0, -44 +57442532ns 1009805 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57442816ns 1009810 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57443214ns 1009817 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57443384ns 1009820 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57443839ns 1009828 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57444010ns 1009831 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57444294ns 1009836 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57444578ns 1009841 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57444862ns 1009846 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57445317ns 1009854 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57445487ns 1009857 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57445771ns 1009862 1a110850 fd5ff06f jal x0, -44 +57446055ns 1009867 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57446340ns 1009872 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57446737ns 1009879 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57446908ns 1009882 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57447363ns 1009890 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57447533ns 1009893 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57447817ns 1009898 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57448101ns 1009903 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57448386ns 1009908 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57448840ns 1009916 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57449011ns 1009919 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57449295ns 1009924 1a110850 fd5ff06f jal x0, -44 +57449579ns 1009929 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57449863ns 1009934 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57450261ns 1009941 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57450432ns 1009944 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57450886ns 1009952 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57451057ns 1009955 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57451341ns 1009960 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57451625ns 1009965 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57451909ns 1009970 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57452364ns 1009978 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57452534ns 1009981 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57452818ns 1009986 1a110850 fd5ff06f jal x0, -44 +57453103ns 1009991 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57453387ns 1009996 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57453785ns 1010003 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57453955ns 1010006 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57454410ns 1010014 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57454580ns 1010017 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57454864ns 1010022 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57455149ns 1010027 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57455433ns 1010032 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57455887ns 1010040 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57456058ns 1010043 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57456342ns 1010048 1a110850 fd5ff06f jal x0, -44 +57456626ns 1010053 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57456910ns 1010058 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57457308ns 1010065 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57457479ns 1010068 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57457933ns 1010076 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57458104ns 1010079 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57458388ns 1010084 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57458672ns 1010089 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57458956ns 1010094 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57459411ns 1010102 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57459581ns 1010105 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57459866ns 1010110 1a110850 fd5ff06f jal x0, -44 +57460150ns 1010115 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57460434ns 1010120 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57460832ns 1010127 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57461002ns 1010130 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57461457ns 1010138 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57461627ns 1010141 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57461912ns 1010146 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57462196ns 1010151 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57462480ns 1010156 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57462935ns 1010164 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57463105ns 1010167 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57463389ns 1010172 1a110850 fd5ff06f jal x0, -44 +57463673ns 1010177 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57463958ns 1010182 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57464355ns 1010189 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57464526ns 1010192 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57464981ns 1010200 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57465151ns 1010203 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57465435ns 1010208 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57465719ns 1010213 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57466003ns 1010218 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57466458ns 1010226 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57466629ns 1010229 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57466913ns 1010234 1a110850 fd5ff06f jal x0, -44 +57467197ns 1010239 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57467481ns 1010244 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57467879ns 1010251 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57468049ns 1010254 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57468504ns 1010262 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57468675ns 1010265 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57468959ns 1010270 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57469243ns 1010275 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57469527ns 1010280 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57469982ns 1010288 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57470152ns 1010291 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57470436ns 1010296 1a110850 fd5ff06f jal x0, -44 +57470721ns 1010301 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57471005ns 1010306 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57471403ns 1010313 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57471573ns 1010316 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57472028ns 1010324 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57472198ns 1010327 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57472482ns 1010332 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57472767ns 1010337 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57473051ns 1010342 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57473505ns 1010350 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57473676ns 1010353 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57473960ns 1010358 1a110850 fd5ff06f jal x0, -44 +57474244ns 1010363 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57474528ns 1010368 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57474926ns 1010375 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57475097ns 1010378 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57475551ns 1010386 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57475722ns 1010389 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57476006ns 1010394 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57476290ns 1010399 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57476574ns 1010404 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57477029ns 1010412 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57477199ns 1010415 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57477484ns 1010420 1a110850 fd5ff06f jal x0, -44 +57477768ns 1010425 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57478052ns 1010430 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57478450ns 1010437 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57478620ns 1010440 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57479075ns 1010448 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57479245ns 1010451 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57479530ns 1010456 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57479814ns 1010461 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57480098ns 1010466 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57480552ns 1010474 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57480723ns 1010477 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57481007ns 1010482 1a110850 fd5ff06f jal x0, -44 +57481291ns 1010487 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57481575ns 1010492 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57481973ns 1010499 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57482144ns 1010502 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57482598ns 1010510 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57482769ns 1010513 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57483053ns 1010518 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57483337ns 1010523 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57483621ns 1010528 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57484076ns 1010536 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57484247ns 1010539 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57484531ns 1010544 1a110850 fd5ff06f jal x0, -44 +57484815ns 1010549 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57485099ns 1010554 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57485497ns 1010561 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57485667ns 1010564 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57486122ns 1010572 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57486293ns 1010575 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57486577ns 1010580 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57486861ns 1010585 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57487145ns 1010590 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57487600ns 1010598 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57487770ns 1010601 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57488054ns 1010606 1a110850 fd5ff06f jal x0, -44 +57488338ns 1010611 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57488623ns 1010616 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57489020ns 1010623 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57489191ns 1010626 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57489646ns 1010634 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57489816ns 1010637 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57490100ns 1010642 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57490384ns 1010647 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57490669ns 1010652 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57491123ns 1010660 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57491294ns 1010663 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57491578ns 1010668 1a110850 fd5ff06f jal x0, -44 +57491862ns 1010673 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57492146ns 1010678 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57492544ns 1010685 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57492715ns 1010688 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57493169ns 1010696 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57493340ns 1010699 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57493624ns 1010704 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57493908ns 1010709 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57494192ns 1010714 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57494647ns 1010722 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57494817ns 1010725 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57495101ns 1010730 1a110850 fd5ff06f jal x0, -44 +57495386ns 1010735 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57495670ns 1010740 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57496068ns 1010747 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57496238ns 1010750 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57496693ns 1010758 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57496863ns 1010761 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57497147ns 1010766 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57497432ns 1010771 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57497716ns 1010776 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57498170ns 1010784 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57498341ns 1010787 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57498625ns 1010792 1a110850 fd5ff06f jal x0, -44 +57498909ns 1010797 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57499193ns 1010802 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57499591ns 1010809 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57499762ns 1010812 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57500216ns 1010820 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57500387ns 1010823 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57500671ns 1010828 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57500955ns 1010833 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57501239ns 1010838 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57501694ns 1010846 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57501864ns 1010849 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57502149ns 1010854 1a110850 fd5ff06f jal x0, -44 +57502433ns 1010859 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57502717ns 1010864 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57503115ns 1010871 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57503285ns 1010874 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57503740ns 1010882 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57503910ns 1010885 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57504195ns 1010890 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57504479ns 1010895 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57504763ns 1010900 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57505218ns 1010908 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57505388ns 1010911 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57505672ns 1010916 1a110850 fd5ff06f jal x0, -44 +57505956ns 1010921 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57506241ns 1010926 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57506638ns 1010933 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57506809ns 1010936 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57507264ns 1010944 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57507434ns 1010947 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57507718ns 1010952 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57508002ns 1010957 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57508287ns 1010962 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57508741ns 1010970 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57508912ns 1010973 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57509196ns 1010978 1a110850 fd5ff06f jal x0, -44 +57509480ns 1010983 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57509764ns 1010988 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57510162ns 1010995 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57510332ns 1010998 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57510787ns 1011006 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57510958ns 1011009 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57511242ns 1011014 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57511526ns 1011019 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57511810ns 1011024 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57512265ns 1011032 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57512435ns 1011035 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57512719ns 1011040 1a110850 fd5ff06f jal x0, -44 +57513004ns 1011045 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57513288ns 1011050 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57513686ns 1011057 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57513856ns 1011060 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57514311ns 1011068 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57514481ns 1011071 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57514765ns 1011076 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57515050ns 1011081 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57515334ns 1011086 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57515788ns 1011094 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57515959ns 1011097 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57516243ns 1011102 1a110850 fd5ff06f jal x0, -44 +57516527ns 1011107 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57516811ns 1011112 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57517209ns 1011119 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57517380ns 1011122 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57517834ns 1011130 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57518005ns 1011133 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57518289ns 1011138 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57518573ns 1011143 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57518857ns 1011148 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57519312ns 1011156 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57519482ns 1011159 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57519767ns 1011164 1a110850 fd5ff06f jal x0, -44 +57520051ns 1011169 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57520335ns 1011174 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57520733ns 1011181 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57520903ns 1011184 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57521358ns 1011192 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57521528ns 1011195 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57521813ns 1011200 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57522097ns 1011205 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57522381ns 1011210 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57522835ns 1011218 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57523006ns 1011221 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57523290ns 1011226 1a110850 fd5ff06f jal x0, -44 +57523574ns 1011231 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57523858ns 1011236 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57524256ns 1011243 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57524427ns 1011246 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57524881ns 1011254 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57525052ns 1011257 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57525336ns 1011262 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57525620ns 1011267 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57525904ns 1011272 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57526359ns 1011280 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57526530ns 1011283 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57526814ns 1011288 1a110850 fd5ff06f jal x0, -44 +57527098ns 1011293 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57527382ns 1011298 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57527780ns 1011305 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57527950ns 1011308 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57528405ns 1011316 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57528576ns 1011319 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57528860ns 1011324 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57529144ns 1011329 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57529428ns 1011334 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57529883ns 1011342 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57530053ns 1011345 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57530337ns 1011350 1a110850 fd5ff06f jal x0, -44 +57530621ns 1011355 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57530906ns 1011360 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57531303ns 1011367 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57531474ns 1011370 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57531929ns 1011378 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57532099ns 1011381 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57532383ns 1011386 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57532667ns 1011391 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57532952ns 1011396 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57533406ns 1011404 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57533577ns 1011407 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57533861ns 1011412 1a110850 fd5ff06f jal x0, -44 +57534145ns 1011417 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57534429ns 1011422 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57534827ns 1011429 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57534998ns 1011432 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57535452ns 1011440 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57535623ns 1011443 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57535907ns 1011448 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57536191ns 1011453 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57536475ns 1011458 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57536930ns 1011466 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57537100ns 1011469 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57537384ns 1011474 1a110850 fd5ff06f jal x0, -44 +57537669ns 1011479 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57537953ns 1011484 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57538351ns 1011491 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57538521ns 1011494 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57538976ns 1011502 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57539146ns 1011505 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57539430ns 1011510 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57539715ns 1011515 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57539999ns 1011520 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57540453ns 1011528 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57540624ns 1011531 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57540908ns 1011536 1a110850 fd5ff06f jal x0, -44 +57541192ns 1011541 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57541476ns 1011546 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57541874ns 1011553 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57542045ns 1011556 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57542499ns 1011564 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57542670ns 1011567 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57542954ns 1011572 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57543238ns 1011577 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57543522ns 1011582 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57543977ns 1011590 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57544147ns 1011593 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57544432ns 1011598 1a110850 fd5ff06f jal x0, -44 +57544716ns 1011603 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57545000ns 1011608 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57545398ns 1011615 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57545568ns 1011618 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57546023ns 1011626 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57546193ns 1011629 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57546478ns 1011634 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57546762ns 1011639 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57547046ns 1011644 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57547501ns 1011652 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57547671ns 1011655 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57547955ns 1011660 1a110850 fd5ff06f jal x0, -44 +57548239ns 1011665 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57548524ns 1011670 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57548921ns 1011677 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57549092ns 1011680 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57549547ns 1011688 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57549717ns 1011691 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57550001ns 1011696 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57550285ns 1011701 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57550570ns 1011706 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57551024ns 1011714 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57551195ns 1011717 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57551479ns 1011722 1a110850 fd5ff06f jal x0, -44 +57551763ns 1011727 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57552047ns 1011732 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57552445ns 1011739 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57552615ns 1011742 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57553070ns 1011750 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57553241ns 1011753 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57553525ns 1011758 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57553809ns 1011763 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57554093ns 1011768 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57554548ns 1011776 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57554718ns 1011779 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57555002ns 1011784 1a110850 fd5ff06f jal x0, -44 +57555287ns 1011789 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57555571ns 1011794 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57555969ns 1011801 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57556139ns 1011804 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57556594ns 1011812 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57556764ns 1011815 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57557048ns 1011820 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57557333ns 1011825 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57557617ns 1011830 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57558071ns 1011838 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57558242ns 1011841 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57558526ns 1011846 1a110850 fd5ff06f jal x0, -44 +57558810ns 1011851 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57559094ns 1011856 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57559492ns 1011863 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57559663ns 1011866 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57560117ns 1011874 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57560288ns 1011877 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57560572ns 1011882 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57560856ns 1011887 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57561140ns 1011892 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57561595ns 1011900 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57561765ns 1011903 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57562050ns 1011908 1a110850 fd5ff06f jal x0, -44 +57562334ns 1011913 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57562618ns 1011918 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57563016ns 1011925 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57563186ns 1011928 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57563641ns 1011936 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57563811ns 1011939 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57564096ns 1011944 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57564380ns 1011949 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57564664ns 1011954 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57565119ns 1011962 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57565289ns 1011965 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57565573ns 1011970 1a110850 fd5ff06f jal x0, -44 +57565857ns 1011975 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57566141ns 1011980 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57566539ns 1011987 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57566710ns 1011990 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57567164ns 1011998 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57567335ns 1012001 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57567619ns 1012006 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57567903ns 1012011 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57568187ns 1012016 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57568642ns 1012024 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57568813ns 1012027 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57569097ns 1012032 1a110850 fd5ff06f jal x0, -44 +57569381ns 1012037 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57569665ns 1012042 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57570063ns 1012049 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57570233ns 1012052 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57570688ns 1012060 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57570859ns 1012063 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57571143ns 1012068 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57571427ns 1012073 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57571711ns 1012078 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57572166ns 1012086 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57572336ns 1012089 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57572620ns 1012094 1a110850 fd5ff06f jal x0, -44 +57572904ns 1012099 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57573189ns 1012104 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57573586ns 1012111 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57573757ns 1012114 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57574212ns 1012122 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57574382ns 1012125 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57574666ns 1012130 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57574950ns 1012135 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57575235ns 1012140 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57575689ns 1012148 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57575860ns 1012151 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57576144ns 1012156 1a110850 fd5ff06f jal x0, -44 +57576428ns 1012161 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57576712ns 1012166 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57577110ns 1012173 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57577281ns 1012176 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57577735ns 1012184 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57577906ns 1012187 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57578190ns 1012192 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57578474ns 1012197 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57578758ns 1012202 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57579213ns 1012210 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57579383ns 1012213 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57579667ns 1012218 1a110850 fd5ff06f jal x0, -44 +57579952ns 1012223 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57580236ns 1012228 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57580634ns 1012235 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57580804ns 1012238 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57581259ns 1012246 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57581429ns 1012249 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57581713ns 1012254 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57581998ns 1012259 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57582282ns 1012264 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57582736ns 1012272 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57582907ns 1012275 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57583191ns 1012280 1a110850 fd5ff06f jal x0, -44 +57583475ns 1012285 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57583759ns 1012290 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57584157ns 1012297 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57584328ns 1012300 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57584782ns 1012308 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57584953ns 1012311 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57585237ns 1012316 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57585521ns 1012321 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57585805ns 1012326 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57586260ns 1012334 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57586431ns 1012337 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57586715ns 1012342 1a110850 fd5ff06f jal x0, -44 +57586999ns 1012347 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57587283ns 1012352 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57587681ns 1012359 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57587851ns 1012362 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57588306ns 1012370 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57588476ns 1012373 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57588761ns 1012378 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57589045ns 1012383 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57589329ns 1012388 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57589784ns 1012396 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57589954ns 1012399 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57590238ns 1012404 1a110850 fd5ff06f jal x0, -44 +57590522ns 1012409 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57590807ns 1012414 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57591204ns 1012421 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57591375ns 1012424 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57591830ns 1012432 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57592000ns 1012435 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57592284ns 1012440 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57592568ns 1012445 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57592853ns 1012450 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57593307ns 1012458 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57593478ns 1012461 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57593762ns 1012466 1a110850 fd5ff06f jal x0, -44 +57594046ns 1012471 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57594330ns 1012476 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57594728ns 1012483 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57594898ns 1012486 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57595353ns 1012494 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57595524ns 1012497 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57595808ns 1012502 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57596092ns 1012507 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57596376ns 1012512 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57596831ns 1012520 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57597001ns 1012523 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57597285ns 1012528 1a110850 fd5ff06f jal x0, -44 +57597570ns 1012533 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57597854ns 1012538 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57598252ns 1012545 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57598422ns 1012548 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57598877ns 1012556 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57599047ns 1012559 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57599331ns 1012564 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57599616ns 1012569 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57599900ns 1012574 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57600354ns 1012582 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57600525ns 1012585 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57600809ns 1012590 1a110850 fd5ff06f jal x0, -44 +57601093ns 1012595 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57601377ns 1012600 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57601775ns 1012607 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57601946ns 1012610 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57602400ns 1012618 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57602571ns 1012621 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57602855ns 1012626 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57603139ns 1012631 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57603423ns 1012636 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57603878ns 1012644 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57604048ns 1012647 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57604333ns 1012652 1a110850 fd5ff06f jal x0, -44 +57604617ns 1012657 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57604901ns 1012662 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57605299ns 1012669 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57605469ns 1012672 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57605924ns 1012680 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57606094ns 1012683 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57606379ns 1012688 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57606663ns 1012693 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57606947ns 1012698 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57607402ns 1012706 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57607572ns 1012709 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57607856ns 1012714 1a110850 fd5ff06f jal x0, -44 +57608140ns 1012719 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57608424ns 1012724 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57608822ns 1012731 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57608993ns 1012734 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57609447ns 1012742 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57609618ns 1012745 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57609902ns 1012750 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57610186ns 1012755 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57610470ns 1012760 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57610925ns 1012768 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57611096ns 1012771 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57611380ns 1012776 1a110850 fd5ff06f jal x0, -44 +57611664ns 1012781 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57611948ns 1012786 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57612346ns 1012793 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57612516ns 1012796 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57612971ns 1012804 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57613142ns 1012807 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57613426ns 1012812 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57613710ns 1012817 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57613994ns 1012822 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57614449ns 1012830 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57614619ns 1012833 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57614903ns 1012838 1a110850 fd5ff06f jal x0, -44 +57615187ns 1012843 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57615472ns 1012848 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57615869ns 1012855 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57616040ns 1012858 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57616495ns 1012866 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57616665ns 1012869 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57616949ns 1012874 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57617233ns 1012879 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57617518ns 1012884 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57617972ns 1012892 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57618143ns 1012895 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57618427ns 1012900 1a110850 fd5ff06f jal x0, -44 +57618711ns 1012905 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57618995ns 1012910 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57619393ns 1012917 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57619564ns 1012920 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57620018ns 1012928 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57620189ns 1012931 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57620473ns 1012936 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57620757ns 1012941 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57621041ns 1012946 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57621496ns 1012954 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57621666ns 1012957 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57621951ns 1012962 1a110850 fd5ff06f jal x0, -44 +57622235ns 1012967 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57622519ns 1012972 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57622917ns 1012979 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57623087ns 1012982 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57623542ns 1012990 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57623712ns 1012993 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57623996ns 1012998 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57624281ns 1013003 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57624565ns 1013008 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57625019ns 1013016 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57625190ns 1013019 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57625474ns 1013024 1a110850 fd5ff06f jal x0, -44 +57625758ns 1013029 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57626042ns 1013034 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57626440ns 1013041 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57626611ns 1013044 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57627065ns 1013052 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57627236ns 1013055 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57627520ns 1013060 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57627804ns 1013065 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57628088ns 1013070 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57628543ns 1013078 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57628714ns 1013081 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57628998ns 1013086 1a110850 fd5ff06f jal x0, -44 +57629282ns 1013091 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57629566ns 1013096 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57629964ns 1013103 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57630134ns 1013106 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57630589ns 1013114 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57630759ns 1013117 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57631044ns 1013122 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57631328ns 1013127 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57631612ns 1013132 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57632067ns 1013140 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57632237ns 1013143 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57632521ns 1013148 1a110850 fd5ff06f jal x0, -44 +57632805ns 1013153 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57633090ns 1013158 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57633487ns 1013165 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57633658ns 1013168 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57634113ns 1013176 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57634283ns 1013179 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57634567ns 1013184 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57634851ns 1013189 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57635136ns 1013194 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57635590ns 1013202 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57635761ns 1013205 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57636045ns 1013210 1a110850 fd5ff06f jal x0, -44 +57636329ns 1013215 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57636613ns 1013220 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57637011ns 1013227 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57637181ns 1013230 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57637636ns 1013238 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57637807ns 1013241 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57638091ns 1013246 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57638375ns 1013251 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57638659ns 1013256 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57639114ns 1013264 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57639284ns 1013267 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57639568ns 1013272 1a110850 fd5ff06f jal x0, -44 +57639853ns 1013277 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57640137ns 1013282 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57640535ns 1013289 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57640705ns 1013292 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57641160ns 1013300 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57641330ns 1013303 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57641614ns 1013308 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57641899ns 1013313 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57642183ns 1013318 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57642637ns 1013326 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57642808ns 1013329 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57643092ns 1013334 1a110850 fd5ff06f jal x0, -44 +57643376ns 1013339 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57643660ns 1013344 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57644058ns 1013351 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57644229ns 1013354 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57644683ns 1013362 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57644854ns 1013365 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57645138ns 1013370 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57645422ns 1013375 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57645706ns 1013380 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57646161ns 1013388 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57646331ns 1013391 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57646616ns 1013396 1a110850 fd5ff06f jal x0, -44 +57646900ns 1013401 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57647184ns 1013406 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57647582ns 1013413 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57647752ns 1013416 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57648207ns 1013424 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57648377ns 1013427 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57648662ns 1013432 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57648946ns 1013437 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57649230ns 1013442 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57649685ns 1013450 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57649855ns 1013453 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57650139ns 1013458 1a110850 fd5ff06f jal x0, -44 +57650423ns 1013463 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57650707ns 1013468 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57651105ns 1013475 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57651276ns 1013478 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57651730ns 1013486 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57651901ns 1013489 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57652185ns 1013494 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57652469ns 1013499 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57652753ns 1013504 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57653208ns 1013512 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57653379ns 1013515 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57653663ns 1013520 1a110850 fd5ff06f jal x0, -44 +57653947ns 1013525 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57654231ns 1013530 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57654629ns 1013537 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57654799ns 1013540 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57655254ns 1013548 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57655425ns 1013551 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57655709ns 1013556 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57655993ns 1013561 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57656277ns 1013566 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57656732ns 1013574 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57656902ns 1013577 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57657186ns 1013582 1a110850 fd5ff06f jal x0, -44 +57657471ns 1013587 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57657755ns 1013592 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57658152ns 1013599 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57658323ns 1013602 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57658778ns 1013610 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57658948ns 1013613 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57659232ns 1013618 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57659516ns 1013623 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57659801ns 1013628 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57660255ns 1013636 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57660426ns 1013639 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57660710ns 1013644 1a110850 fd5ff06f jal x0, -44 +57660994ns 1013649 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57661278ns 1013654 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57661676ns 1013661 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57661847ns 1013664 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57662301ns 1013672 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57662472ns 1013675 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57662756ns 1013680 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57663040ns 1013685 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57663324ns 1013690 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57663779ns 1013698 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57663949ns 1013701 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57664234ns 1013706 1a110850 fd5ff06f jal x0, -44 +57664518ns 1013711 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57664802ns 1013716 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57665200ns 1013723 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57665370ns 1013726 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57665825ns 1013734 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57665995ns 1013737 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57666279ns 1013742 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57666564ns 1013747 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57666848ns 1013752 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57667302ns 1013760 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57667473ns 1013763 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57667757ns 1013768 1a110850 fd5ff06f jal x0, -44 +57668041ns 1013773 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57668325ns 1013778 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57668723ns 1013785 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57668894ns 1013788 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57669348ns 1013796 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57669519ns 1013799 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57669803ns 1013804 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57670087ns 1013809 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57670371ns 1013814 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57670826ns 1013822 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57670997ns 1013825 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57671281ns 1013830 1a110850 fd5ff06f jal x0, -44 +57671565ns 1013835 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57671849ns 1013840 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57672247ns 1013847 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57672417ns 1013850 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57672872ns 1013858 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57673042ns 1013861 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57673327ns 1013866 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57673611ns 1013871 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57673895ns 1013876 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57674350ns 1013884 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57674520ns 1013887 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57674804ns 1013892 1a110850 fd5ff06f jal x0, -44 +57675088ns 1013897 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57675373ns 1013902 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57675770ns 1013909 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57675941ns 1013912 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57676396ns 1013920 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57676566ns 1013923 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57676850ns 1013928 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57677134ns 1013933 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57677419ns 1013938 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57677873ns 1013946 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57678044ns 1013949 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57678328ns 1013954 1a110850 fd5ff06f jal x0, -44 +57678612ns 1013959 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57678896ns 1013964 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57679294ns 1013971 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57679464ns 1013974 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57679919ns 1013982 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57680090ns 1013985 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57680374ns 1013990 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57680658ns 1013995 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57680942ns 1014000 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57681397ns 1014008 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57681567ns 1014011 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57681851ns 1014016 1a110850 fd5ff06f jal x0, -44 +57682136ns 1014021 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57682420ns 1014026 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57682818ns 1014033 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57682988ns 1014036 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57683443ns 1014044 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57683613ns 1014047 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57683897ns 1014052 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57684182ns 1014057 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57684466ns 1014062 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57684920ns 1014070 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57685091ns 1014073 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57685375ns 1014078 1a110850 fd5ff06f jal x0, -44 +57685659ns 1014083 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57685943ns 1014088 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57686341ns 1014095 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57686512ns 1014098 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57686966ns 1014106 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57687137ns 1014109 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57687421ns 1014114 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57687705ns 1014119 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57687989ns 1014124 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57688444ns 1014132 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57688614ns 1014135 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57688899ns 1014140 1a110850 fd5ff06f jal x0, -44 +57689183ns 1014145 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57689467ns 1014150 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57689865ns 1014157 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57690035ns 1014160 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57690490ns 1014168 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57690660ns 1014171 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57690945ns 1014176 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57691229ns 1014181 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57691513ns 1014186 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57691968ns 1014194 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57692138ns 1014197 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57692422ns 1014202 1a110850 fd5ff06f jal x0, -44 +57692706ns 1014207 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57692991ns 1014212 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57693388ns 1014219 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57693559ns 1014222 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57694013ns 1014230 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57694184ns 1014233 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57694468ns 1014238 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57694752ns 1014243 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57695036ns 1014248 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57695491ns 1014256 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57695662ns 1014259 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57695946ns 1014264 1a110850 fd5ff06f jal x0, -44 +57696230ns 1014269 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57696514ns 1014274 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57696912ns 1014281 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57697082ns 1014284 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57697537ns 1014292 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57697708ns 1014295 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57697992ns 1014300 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57698276ns 1014305 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57698560ns 1014310 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57699015ns 1014318 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57699185ns 1014321 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57699469ns 1014326 1a110850 fd5ff06f jal x0, -44 +57699754ns 1014331 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57700038ns 1014336 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57700435ns 1014343 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57700606ns 1014346 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57701061ns 1014354 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57701231ns 1014357 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57701515ns 1014362 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57701799ns 1014367 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57702084ns 1014372 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57702538ns 1014380 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57702709ns 1014383 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57702993ns 1014388 1a110850 fd5ff06f jal x0, -44 +57703277ns 1014393 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57703561ns 1014398 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57703959ns 1014405 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57704130ns 1014408 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57704584ns 1014416 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57704755ns 1014419 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57705039ns 1014424 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57705323ns 1014429 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57705607ns 1014434 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57706062ns 1014442 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57706232ns 1014445 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57706517ns 1014450 1a110850 fd5ff06f jal x0, -44 +57706801ns 1014455 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57707085ns 1014460 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57707483ns 1014467 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57707653ns 1014470 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57708108ns 1014478 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57708278ns 1014481 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57708562ns 1014486 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57708847ns 1014491 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57709131ns 1014496 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57709585ns 1014504 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57709756ns 1014507 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57710040ns 1014512 1a110850 fd5ff06f jal x0, -44 +57710324ns 1014517 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57710608ns 1014522 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57711006ns 1014529 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57711177ns 1014532 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57711631ns 1014540 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57711802ns 1014543 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57712086ns 1014548 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57712370ns 1014553 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57712654ns 1014558 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57713109ns 1014566 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57713280ns 1014569 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57713564ns 1014574 1a110850 fd5ff06f jal x0, -44 +57713848ns 1014579 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57714132ns 1014584 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57714530ns 1014591 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57714700ns 1014594 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57715155ns 1014602 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57715325ns 1014605 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57715610ns 1014610 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57715894ns 1014615 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57716178ns 1014620 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57716633ns 1014628 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57716803ns 1014631 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57717087ns 1014636 1a110850 fd5ff06f jal x0, -44 +57717371ns 1014641 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57717656ns 1014646 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57718053ns 1014653 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57718224ns 1014656 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57718679ns 1014664 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57718849ns 1014667 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57719133ns 1014672 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57719417ns 1014677 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57719702ns 1014682 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57720156ns 1014690 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57720327ns 1014693 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57720611ns 1014698 1a110850 fd5ff06f jal x0, -44 +57720895ns 1014703 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57721179ns 1014708 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57721577ns 1014715 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57721747ns 1014718 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57722202ns 1014726 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57722373ns 1014729 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57722657ns 1014734 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57722941ns 1014739 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57723225ns 1014744 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57723680ns 1014752 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57723850ns 1014755 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57724134ns 1014760 1a110850 fd5ff06f jal x0, -44 +57724419ns 1014765 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57724703ns 1014770 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57725101ns 1014777 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57725271ns 1014780 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57725726ns 1014788 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57725896ns 1014791 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57726180ns 1014796 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57726465ns 1014801 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57726749ns 1014806 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57727203ns 1014814 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57727374ns 1014817 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57727658ns 1014822 1a110850 fd5ff06f jal x0, -44 +57727942ns 1014827 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57728226ns 1014832 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57728624ns 1014839 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57728795ns 1014842 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57729249ns 1014850 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57729420ns 1014853 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57729704ns 1014858 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57729988ns 1014863 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57730272ns 1014868 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57730727ns 1014876 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57730897ns 1014879 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57731182ns 1014884 1a110850 fd5ff06f jal x0, -44 +57731466ns 1014889 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57731750ns 1014894 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57732148ns 1014901 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57732318ns 1014904 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57732773ns 1014912 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57732943ns 1014915 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57733228ns 1014920 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57733512ns 1014925 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57733796ns 1014930 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57734251ns 1014938 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57734421ns 1014941 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57734705ns 1014946 1a110850 fd5ff06f jal x0, -44 +57734989ns 1014951 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57735274ns 1014956 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57735671ns 1014963 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57735842ns 1014966 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57736296ns 1014974 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57736467ns 1014977 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57736751ns 1014982 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57737035ns 1014987 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57737319ns 1014992 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57737774ns 1015000 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57737945ns 1015003 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57738229ns 1015008 1a110850 fd5ff06f jal x0, -44 +57738513ns 1015013 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57738797ns 1015018 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57739195ns 1015025 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57739365ns 1015028 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57739820ns 1015036 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57739991ns 1015039 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57740275ns 1015044 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57740559ns 1015049 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57740843ns 1015054 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57741298ns 1015062 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57741468ns 1015065 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57741752ns 1015070 1a110850 fd5ff06f jal x0, -44 +57742037ns 1015075 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57742321ns 1015080 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57742719ns 1015087 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57742889ns 1015090 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57743344ns 1015098 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57743514ns 1015101 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57743798ns 1015106 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57744082ns 1015111 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57744367ns 1015116 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57744821ns 1015124 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57744992ns 1015127 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57745276ns 1015132 1a110850 fd5ff06f jal x0, -44 +57745560ns 1015137 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57745844ns 1015142 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57746242ns 1015149 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57746413ns 1015152 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57746867ns 1015160 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57747038ns 1015163 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57747322ns 1015168 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57747606ns 1015173 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57747890ns 1015178 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57748345ns 1015186 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57748515ns 1015189 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57748800ns 1015194 1a110850 fd5ff06f jal x0, -44 +57749084ns 1015199 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57749368ns 1015204 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57749766ns 1015211 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57749936ns 1015214 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57750391ns 1015222 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57750561ns 1015225 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57750845ns 1015230 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57751130ns 1015235 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57751414ns 1015240 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57751868ns 1015248 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57752039ns 1015251 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57752323ns 1015256 1a110850 fd5ff06f jal x0, -44 +57752607ns 1015261 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57752891ns 1015266 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57753289ns 1015273 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57753460ns 1015276 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57753914ns 1015284 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57754085ns 1015287 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57754369ns 1015292 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57754653ns 1015297 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57754937ns 1015302 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57755392ns 1015310 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57755563ns 1015313 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57755847ns 1015318 1a110850 fd5ff06f jal x0, -44 +57756131ns 1015323 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57756415ns 1015328 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57756813ns 1015335 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57756983ns 1015338 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57757438ns 1015346 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57757608ns 1015349 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57757893ns 1015354 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57758177ns 1015359 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57758461ns 1015364 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57758916ns 1015372 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57759086ns 1015375 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57759370ns 1015380 1a110850 fd5ff06f jal x0, -44 +57759654ns 1015385 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57759939ns 1015390 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57760336ns 1015397 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57760507ns 1015400 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57760962ns 1015408 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57761132ns 1015411 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57761416ns 1015416 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57761700ns 1015421 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57761985ns 1015426 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57762439ns 1015434 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57762610ns 1015437 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57762894ns 1015442 1a110850 fd5ff06f jal x0, -44 +57763178ns 1015447 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57763462ns 1015452 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57763860ns 1015459 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57764031ns 1015462 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57764485ns 1015470 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57764656ns 1015473 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57764940ns 1015478 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57765224ns 1015483 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57765508ns 1015488 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57765963ns 1015496 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57766133ns 1015499 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57766417ns 1015504 1a110850 fd5ff06f jal x0, -44 +57766702ns 1015509 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57766986ns 1015514 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57767384ns 1015521 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57767554ns 1015524 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57768009ns 1015532 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57768179ns 1015535 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57768463ns 1015540 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57768748ns 1015545 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57769032ns 1015550 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57769486ns 1015558 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57769657ns 1015561 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57769941ns 1015566 1a110850 fd5ff06f jal x0, -44 +57770225ns 1015571 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57770509ns 1015576 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57770907ns 1015583 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57771078ns 1015586 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57771532ns 1015594 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57771703ns 1015597 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57771987ns 1015602 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57772271ns 1015607 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57772555ns 1015612 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57773010ns 1015620 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57773180ns 1015623 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57773465ns 1015628 1a110850 fd5ff06f jal x0, -44 +57773749ns 1015633 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57774033ns 1015638 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57774431ns 1015645 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57774601ns 1015648 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57775056ns 1015656 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57775226ns 1015659 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57775511ns 1015664 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57775795ns 1015669 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57776079ns 1015674 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57776534ns 1015682 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57776704ns 1015685 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57776988ns 1015690 1a110850 fd5ff06f jal x0, -44 +57777272ns 1015695 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57777557ns 1015700 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57777954ns 1015707 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57778125ns 1015710 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57778579ns 1015718 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57778750ns 1015721 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57779034ns 1015726 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57779318ns 1015731 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57779602ns 1015736 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57780057ns 1015744 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57780228ns 1015747 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57780512ns 1015752 1a110850 fd5ff06f jal x0, -44 +57780796ns 1015757 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57781080ns 1015762 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57781478ns 1015769 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57781648ns 1015772 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57782103ns 1015780 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57782274ns 1015783 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57782558ns 1015788 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57782842ns 1015793 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57783126ns 1015798 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57783581ns 1015806 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57783751ns 1015809 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57784035ns 1015814 1a110850 fd5ff06f jal x0, -44 +57784320ns 1015819 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57784604ns 1015824 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57785002ns 1015831 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57785172ns 1015834 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57785627ns 1015842 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57785797ns 1015845 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57786081ns 1015850 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57786365ns 1015855 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57786650ns 1015860 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57787104ns 1015868 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57787275ns 1015871 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57787559ns 1015876 1a110850 fd5ff06f jal x0, -44 +57787843ns 1015881 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57788127ns 1015886 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57788525ns 1015893 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57788696ns 1015896 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57789150ns 1015904 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57789321ns 1015907 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57789605ns 1015912 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57789889ns 1015917 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57790173ns 1015922 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57790628ns 1015930 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57790798ns 1015933 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57791083ns 1015938 1a110850 fd5ff06f jal x0, -44 +57791367ns 1015943 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57791651ns 1015948 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57792049ns 1015955 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57792219ns 1015958 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57792674ns 1015966 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57792844ns 1015969 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57793128ns 1015974 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57793413ns 1015979 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57793697ns 1015984 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57794151ns 1015992 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57794322ns 1015995 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57794606ns 1016000 1a110850 fd5ff06f jal x0, -44 +57794890ns 1016005 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57795174ns 1016010 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57795572ns 1016017 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57795743ns 1016020 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57796197ns 1016028 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57796368ns 1016031 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57796652ns 1016036 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57796936ns 1016041 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57797220ns 1016046 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57797675ns 1016054 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57797846ns 1016057 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57798130ns 1016062 1a110850 fd5ff06f jal x0, -44 +57798414ns 1016067 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57798698ns 1016072 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57799096ns 1016079 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57799266ns 1016082 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57799721ns 1016090 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57799891ns 1016093 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57800176ns 1016098 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57800460ns 1016103 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57800744ns 1016108 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57801199ns 1016116 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57801369ns 1016119 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57801653ns 1016124 1a110850 fd5ff06f jal x0, -44 +57801937ns 1016129 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57802222ns 1016134 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57802619ns 1016141 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57802790ns 1016144 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57803245ns 1016152 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57803415ns 1016155 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57803699ns 1016160 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57803983ns 1016165 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57804268ns 1016170 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57804722ns 1016178 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57804893ns 1016181 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57805177ns 1016186 1a110850 fd5ff06f jal x0, -44 +57805461ns 1016191 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57805745ns 1016196 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57806143ns 1016203 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57806314ns 1016206 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57806768ns 1016214 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57806939ns 1016217 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57807223ns 1016222 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57807507ns 1016227 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57807791ns 1016232 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57808246ns 1016240 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57808416ns 1016243 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57808700ns 1016248 1a110850 fd5ff06f jal x0, -44 +57808985ns 1016253 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57809269ns 1016258 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57809667ns 1016265 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57809837ns 1016268 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57810292ns 1016276 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57810462ns 1016279 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57810746ns 1016284 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57811031ns 1016289 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57811315ns 1016294 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57811769ns 1016302 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57811940ns 1016305 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57812224ns 1016310 1a110850 fd5ff06f jal x0, -44 +57812508ns 1016315 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57812792ns 1016320 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57813190ns 1016327 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57813361ns 1016330 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57813815ns 1016338 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57813986ns 1016341 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57814270ns 1016346 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57814554ns 1016351 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57814838ns 1016356 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57815293ns 1016364 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57815463ns 1016367 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57815748ns 1016372 1a110850 fd5ff06f jal x0, -44 +57816032ns 1016377 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57816316ns 1016382 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57816714ns 1016389 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57816884ns 1016392 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57817339ns 1016400 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57817509ns 1016403 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57817794ns 1016408 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57818078ns 1016413 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57818362ns 1016418 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57818817ns 1016426 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57818987ns 1016429 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57819271ns 1016434 1a110850 fd5ff06f jal x0, -44 +57819555ns 1016439 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57819840ns 1016444 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57820237ns 1016451 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57820408ns 1016454 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57820863ns 1016462 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57821033ns 1016465 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57821317ns 1016470 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57821601ns 1016475 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57821885ns 1016480 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57822340ns 1016488 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57822511ns 1016491 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57822795ns 1016496 1a110850 fd5ff06f jal x0, -44 +57823079ns 1016501 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57823363ns 1016506 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57823761ns 1016513 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57823931ns 1016516 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57824386ns 1016524 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57824557ns 1016527 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57824841ns 1016532 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57825125ns 1016537 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57825409ns 1016542 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57825864ns 1016550 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57826034ns 1016553 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57826318ns 1016558 1a110850 fd5ff06f jal x0, -44 +57826603ns 1016563 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57826887ns 1016568 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57827285ns 1016575 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57827455ns 1016578 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57827910ns 1016586 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57828080ns 1016589 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57828364ns 1016594 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57828648ns 1016599 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57828933ns 1016604 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57829387ns 1016612 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57829558ns 1016615 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57829842ns 1016620 1a110850 fd5ff06f jal x0, -44 +57830126ns 1016625 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57830410ns 1016630 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57830808ns 1016637 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57830979ns 1016640 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57831433ns 1016648 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57831604ns 1016651 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57831888ns 1016656 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57832172ns 1016661 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57832456ns 1016666 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57832911ns 1016674 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57833081ns 1016677 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57833366ns 1016682 1a110850 fd5ff06f jal x0, -44 +57833650ns 1016687 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57833934ns 1016692 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57834332ns 1016699 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57834502ns 1016702 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57834957ns 1016710 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57835127ns 1016713 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57835411ns 1016718 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57835696ns 1016723 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57835980ns 1016728 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57836434ns 1016736 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57836605ns 1016739 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57836889ns 1016744 1a110850 fd5ff06f jal x0, -44 +57837173ns 1016749 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57837457ns 1016754 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57837855ns 1016761 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57838026ns 1016764 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57838480ns 1016772 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57838651ns 1016775 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57838935ns 1016780 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57839219ns 1016785 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57839503ns 1016790 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57839958ns 1016798 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57840129ns 1016801 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57840413ns 1016806 1a110850 fd5ff06f jal x0, -44 +57840697ns 1016811 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57840981ns 1016816 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57841379ns 1016823 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57841549ns 1016826 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57842004ns 1016834 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57842175ns 1016837 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57842459ns 1016842 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57842743ns 1016847 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57843027ns 1016852 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57843482ns 1016860 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57843652ns 1016863 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57843936ns 1016868 1a110850 fd5ff06f jal x0, -44 +57844220ns 1016873 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57844505ns 1016878 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57844902ns 1016885 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57845073ns 1016888 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57845528ns 1016896 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57845698ns 1016899 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57845982ns 1016904 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57846266ns 1016909 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57846551ns 1016914 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57847005ns 1016922 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57847176ns 1016925 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57847460ns 1016930 1a110850 fd5ff06f jal x0, -44 +57847744ns 1016935 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57848028ns 1016940 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57848426ns 1016947 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57848597ns 1016950 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57849051ns 1016958 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57849222ns 1016961 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57849506ns 1016966 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57849790ns 1016971 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57850074ns 1016976 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57850529ns 1016984 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57850699ns 1016987 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57850983ns 1016992 1a110850 fd5ff06f jal x0, -44 +57851268ns 1016997 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57851552ns 1017002 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57851950ns 1017009 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57852120ns 1017012 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57852575ns 1017020 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57852745ns 1017023 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57853029ns 1017028 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57853314ns 1017033 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57853598ns 1017038 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57854052ns 1017046 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57854223ns 1017049 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57854507ns 1017054 1a110850 fd5ff06f jal x0, -44 +57854791ns 1017059 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57855075ns 1017064 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57855473ns 1017071 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57855644ns 1017074 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57856098ns 1017082 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57856269ns 1017085 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57856553ns 1017090 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57856837ns 1017095 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57857121ns 1017100 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57857576ns 1017108 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57857746ns 1017111 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57858031ns 1017116 1a110850 fd5ff06f jal x0, -44 +57858315ns 1017121 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57858599ns 1017126 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57858997ns 1017133 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57859167ns 1017136 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57859622ns 1017144 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57859792ns 1017147 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57860077ns 1017152 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57860361ns 1017157 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57860645ns 1017162 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57861100ns 1017170 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57861270ns 1017173 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57861554ns 1017178 1a110850 fd5ff06f jal x0, -44 +57861838ns 1017183 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57862123ns 1017188 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57862520ns 1017195 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57862691ns 1017198 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57863146ns 1017206 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57863316ns 1017209 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57863600ns 1017214 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57863884ns 1017219 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57864168ns 1017224 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57864623ns 1017232 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57864794ns 1017235 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57865078ns 1017240 1a110850 fd5ff06f jal x0, -44 +57865362ns 1017245 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57865646ns 1017250 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57866044ns 1017257 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57866214ns 1017260 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57866669ns 1017268 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57866840ns 1017271 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57867124ns 1017276 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57867408ns 1017281 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57867692ns 1017286 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57868147ns 1017294 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57868317ns 1017297 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57868601ns 1017302 1a110850 fd5ff06f jal x0, -44 +57868886ns 1017307 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57869170ns 1017312 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57869568ns 1017319 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57869738ns 1017322 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57870193ns 1017330 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57870363ns 1017333 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57870647ns 1017338 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57870931ns 1017343 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57871216ns 1017348 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57871670ns 1017356 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57871841ns 1017359 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57872125ns 1017364 1a110850 fd5ff06f jal x0, -44 +57872409ns 1017369 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57872693ns 1017374 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57873091ns 1017381 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57873262ns 1017384 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57873716ns 1017392 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57873887ns 1017395 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57874171ns 1017400 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57874455ns 1017405 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57874739ns 1017410 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57875194ns 1017418 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57875364ns 1017421 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57875649ns 1017426 1a110850 fd5ff06f jal x0, -44 +57875933ns 1017431 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57876217ns 1017436 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57876615ns 1017443 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57876785ns 1017446 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57877240ns 1017454 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57877410ns 1017457 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57877695ns 1017462 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57877979ns 1017467 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57878263ns 1017472 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57878717ns 1017480 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57878888ns 1017483 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57879172ns 1017488 1a110850 fd5ff06f jal x0, -44 +57879456ns 1017493 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57879740ns 1017498 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57880138ns 1017505 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57880309ns 1017508 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57880763ns 1017516 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57880934ns 1017519 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57881218ns 1017524 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57881502ns 1017529 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57881786ns 1017534 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57882241ns 1017542 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57882412ns 1017545 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57882696ns 1017550 1a110850 fd5ff06f jal x0, -44 +57882980ns 1017555 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57883264ns 1017560 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57883662ns 1017567 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57883832ns 1017570 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57884287ns 1017578 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57884458ns 1017581 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57884742ns 1017586 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57885026ns 1017591 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57885310ns 1017596 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57885765ns 1017604 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57885935ns 1017607 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57886219ns 1017612 1a110850 fd5ff06f jal x0, -44 +57886503ns 1017617 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57886788ns 1017622 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57887185ns 1017629 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57887356ns 1017632 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57887811ns 1017640 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57887981ns 1017643 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57888265ns 1017648 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57888549ns 1017653 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57888834ns 1017658 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57889288ns 1017666 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57889459ns 1017669 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57889743ns 1017674 1a110850 fd5ff06f jal x0, -44 +57890027ns 1017679 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57890311ns 1017684 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57890709ns 1017691 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57890880ns 1017694 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57891334ns 1017702 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57891505ns 1017705 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57891789ns 1017710 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57892073ns 1017715 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57892357ns 1017720 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57892812ns 1017728 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57892982ns 1017731 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57893266ns 1017736 1a110850 fd5ff06f jal x0, -44 +57893551ns 1017741 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57893835ns 1017746 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57894233ns 1017753 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57894403ns 1017756 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57894858ns 1017764 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57895028ns 1017767 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57895312ns 1017772 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57895597ns 1017777 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57895881ns 1017782 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57896335ns 1017790 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57896506ns 1017793 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57896790ns 1017798 1a110850 fd5ff06f jal x0, -44 +57897074ns 1017803 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57897358ns 1017808 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57897756ns 1017815 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57897927ns 1017818 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57898381ns 1017826 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57898552ns 1017829 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57898836ns 1017834 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57899120ns 1017839 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57899404ns 1017844 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57899859ns 1017852 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57900029ns 1017855 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57900314ns 1017860 1a110850 fd5ff06f jal x0, -44 +57900598ns 1017865 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57900882ns 1017870 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57901280ns 1017877 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57901450ns 1017880 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57901905ns 1017888 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57902075ns 1017891 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57902360ns 1017896 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57902644ns 1017901 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57902928ns 1017906 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57903383ns 1017914 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57903553ns 1017917 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57903837ns 1017922 1a110850 fd5ff06f jal x0, -44 +57904121ns 1017927 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57904406ns 1017932 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57904803ns 1017939 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57904974ns 1017942 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57905429ns 1017950 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57905599ns 1017953 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57905883ns 1017958 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57906167ns 1017963 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57906451ns 1017968 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57906906ns 1017976 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57907077ns 1017979 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57907361ns 1017984 1a110850 fd5ff06f jal x0, -44 +57907645ns 1017989 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57907929ns 1017994 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57908327ns 1018001 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57908497ns 1018004 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57908952ns 1018012 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57909123ns 1018015 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57909407ns 1018020 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57909691ns 1018025 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57909975ns 1018030 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57910430ns 1018038 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57910600ns 1018041 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57910884ns 1018046 1a110850 fd5ff06f jal x0, -44 +57911169ns 1018051 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57911453ns 1018056 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57911851ns 1018063 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57912021ns 1018066 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57912476ns 1018074 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57912646ns 1018077 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57912930ns 1018082 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57913215ns 1018087 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57913499ns 1018092 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57913953ns 1018100 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57914124ns 1018103 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57914408ns 1018108 1a110850 fd5ff06f jal x0, -44 +57914692ns 1018113 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57914976ns 1018118 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57915374ns 1018125 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57915545ns 1018128 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57915999ns 1018136 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57916170ns 1018139 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57916454ns 1018144 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57916738ns 1018149 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57917022ns 1018154 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57917477ns 1018162 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57917647ns 1018165 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57917932ns 1018170 1a110850 fd5ff06f jal x0, -44 +57918216ns 1018175 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57918500ns 1018180 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57918898ns 1018187 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57919068ns 1018190 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57919523ns 1018198 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57919693ns 1018201 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57919978ns 1018206 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57920262ns 1018211 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57920546ns 1018216 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57921000ns 1018224 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57921171ns 1018227 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57921455ns 1018232 1a110850 fd5ff06f jal x0, -44 +57921739ns 1018237 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57922023ns 1018242 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57922421ns 1018249 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57922592ns 1018252 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57923046ns 1018260 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57923217ns 1018263 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57923501ns 1018268 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57923785ns 1018273 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57924069ns 1018278 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57924524ns 1018286 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57924695ns 1018289 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57924979ns 1018294 1a110850 fd5ff06f jal x0, -44 +57925263ns 1018299 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57925547ns 1018304 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57925945ns 1018311 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57926115ns 1018314 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57926570ns 1018322 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57926741ns 1018325 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57927025ns 1018330 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57927309ns 1018335 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57927593ns 1018340 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57928048ns 1018348 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57928218ns 1018351 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57928502ns 1018356 1a110850 fd5ff06f jal x0, -44 +57928786ns 1018361 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57929071ns 1018366 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57929468ns 1018373 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57929639ns 1018376 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57930094ns 1018384 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57930264ns 1018387 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57930548ns 1018392 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57930832ns 1018397 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57931117ns 1018402 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57931571ns 1018410 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57931742ns 1018413 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57932026ns 1018418 1a110850 fd5ff06f jal x0, -44 +57932310ns 1018423 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57932594ns 1018428 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57932992ns 1018435 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57933163ns 1018438 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57933617ns 1018446 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57933788ns 1018449 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57934072ns 1018454 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57934356ns 1018459 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57934640ns 1018464 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57935095ns 1018472 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57935265ns 1018475 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57935549ns 1018480 1a110850 fd5ff06f jal x0, -44 +57935834ns 1018485 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57936118ns 1018490 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57936516ns 1018497 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57936686ns 1018500 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57937141ns 1018508 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57937311ns 1018511 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57937595ns 1018516 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57937880ns 1018521 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57938164ns 1018526 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57938618ns 1018534 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57938789ns 1018537 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57939073ns 1018542 1a110850 fd5ff06f jal x0, -44 +57939357ns 1018547 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57939641ns 1018552 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57940039ns 1018559 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57940210ns 1018562 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57940664ns 1018570 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57940835ns 1018573 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57941119ns 1018578 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57941403ns 1018583 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57941687ns 1018588 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57942142ns 1018596 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57942312ns 1018599 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57942597ns 1018604 1a110850 fd5ff06f jal x0, -44 +57942881ns 1018609 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57943165ns 1018614 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57943563ns 1018621 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57943733ns 1018624 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57944188ns 1018632 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57944358ns 1018635 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57944643ns 1018640 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57944927ns 1018645 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57945211ns 1018650 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57945666ns 1018658 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57945836ns 1018661 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57946120ns 1018666 1a110850 fd5ff06f jal x0, -44 +57946404ns 1018671 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57946689ns 1018676 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57947086ns 1018683 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57947257ns 1018686 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57947712ns 1018694 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57947882ns 1018697 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57948166ns 1018702 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57948450ns 1018707 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57948735ns 1018712 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57949189ns 1018720 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57949360ns 1018723 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57949644ns 1018728 1a110850 fd5ff06f jal x0, -44 +57949928ns 1018733 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57950212ns 1018738 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57950610ns 1018745 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57950780ns 1018748 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57951235ns 1018756 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57951406ns 1018759 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57951690ns 1018764 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57951974ns 1018769 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57952258ns 1018774 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57952713ns 1018782 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57952883ns 1018785 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57953167ns 1018790 1a110850 fd5ff06f jal x0, -44 +57953452ns 1018795 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57953736ns 1018800 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57954134ns 1018807 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57954304ns 1018810 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57954759ns 1018818 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57954929ns 1018821 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57955213ns 1018826 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57955498ns 1018831 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57955782ns 1018836 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57956236ns 1018844 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57956407ns 1018847 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57956691ns 1018852 1a110850 fd5ff06f jal x0, -44 +57956975ns 1018857 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57957259ns 1018862 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57957657ns 1018869 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57957828ns 1018872 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57958282ns 1018880 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57958453ns 1018883 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57958737ns 1018888 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57959021ns 1018893 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57959305ns 1018898 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57959760ns 1018906 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57959930ns 1018909 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57960215ns 1018914 1a110850 fd5ff06f jal x0, -44 +57960499ns 1018919 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57960783ns 1018924 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57961181ns 1018931 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57961351ns 1018934 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57961806ns 1018942 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57961976ns 1018945 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57962261ns 1018950 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57962545ns 1018955 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57962829ns 1018960 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57963283ns 1018968 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57963454ns 1018971 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57963738ns 1018976 1a110850 fd5ff06f jal x0, -44 +57964022ns 1018981 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57964306ns 1018986 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57964704ns 1018993 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57964875ns 1018996 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57965329ns 1019004 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57965500ns 1019007 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57965784ns 1019012 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57966068ns 1019017 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57966352ns 1019022 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57966807ns 1019030 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57966978ns 1019033 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57967262ns 1019038 1a110850 fd5ff06f jal x0, -44 +57967546ns 1019043 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57967830ns 1019048 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57968228ns 1019055 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57968398ns 1019058 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57968853ns 1019066 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57969024ns 1019069 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57969308ns 1019074 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57969592ns 1019079 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57969876ns 1019084 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57970331ns 1019092 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57970501ns 1019095 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57970785ns 1019100 1a110850 fd5ff06f jal x0, -44 +57971069ns 1019105 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57971354ns 1019110 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57971751ns 1019117 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57971922ns 1019120 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57972377ns 1019128 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57972547ns 1019131 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57972831ns 1019136 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57973115ns 1019141 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57973400ns 1019146 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57973854ns 1019154 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57974025ns 1019157 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57974309ns 1019162 1a110850 fd5ff06f jal x0, -44 +57974593ns 1019167 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57974877ns 1019172 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57975275ns 1019179 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57975446ns 1019182 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57975900ns 1019190 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57976071ns 1019193 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57976355ns 1019198 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57976639ns 1019203 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57976923ns 1019208 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57977378ns 1019216 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57977548ns 1019219 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57977832ns 1019224 1a110850 fd5ff06f jal x0, -44 +57978117ns 1019229 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57978401ns 1019234 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57978799ns 1019241 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57978969ns 1019244 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57979424ns 1019252 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57979594ns 1019255 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57979878ns 1019260 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57980163ns 1019265 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57980447ns 1019270 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57980901ns 1019278 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57981072ns 1019281 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57981356ns 1019286 1a110850 fd5ff06f jal x0, -44 +57981640ns 1019291 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57981924ns 1019296 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57982322ns 1019303 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57982493ns 1019306 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57982947ns 1019314 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57983118ns 1019317 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57983402ns 1019322 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57983686ns 1019327 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57983970ns 1019332 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57984425ns 1019340 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57984595ns 1019343 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57984880ns 1019348 1a110850 fd5ff06f jal x0, -44 +57985164ns 1019353 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57985448ns 1019358 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57985846ns 1019365 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57986016ns 1019368 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57986471ns 1019376 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57986641ns 1019379 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57986926ns 1019384 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57987210ns 1019389 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57987494ns 1019394 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57987949ns 1019402 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57988119ns 1019405 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57988403ns 1019410 1a110850 fd5ff06f jal x0, -44 +57988687ns 1019415 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57988972ns 1019420 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57989369ns 1019427 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57989540ns 1019430 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57989995ns 1019438 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57990165ns 1019441 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57990449ns 1019446 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57990733ns 1019451 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57991018ns 1019456 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57991472ns 1019464 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57991643ns 1019467 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57991927ns 1019472 1a110850 fd5ff06f jal x0, -44 +57992211ns 1019477 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57992495ns 1019482 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57992893ns 1019489 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57993063ns 1019492 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57993518ns 1019500 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57993689ns 1019503 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57993973ns 1019508 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57994257ns 1019513 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57994541ns 1019518 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57994996ns 1019526 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57995166ns 1019529 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57995450ns 1019534 1a110850 fd5ff06f jal x0, -44 +57995735ns 1019539 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57996019ns 1019544 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57996417ns 1019551 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57996587ns 1019554 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57997042ns 1019562 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +57997212ns 1019565 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +57997496ns 1019570 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57997781ns 1019575 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +57998065ns 1019580 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +57998519ns 1019588 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +57998690ns 1019591 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +57998974ns 1019596 1a110850 fd5ff06f jal x0, -44 +57999258ns 1019601 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +57999542ns 1019606 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +57999940ns 1019613 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58000111ns 1019616 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58000565ns 1019624 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58000736ns 1019627 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58001020ns 1019632 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58001304ns 1019637 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58001588ns 1019642 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58002043ns 1019650 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58002213ns 1019653 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58002498ns 1019658 1a110850 fd5ff06f jal x0, -44 +58002782ns 1019663 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58003066ns 1019668 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58003464ns 1019675 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58003634ns 1019678 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58004089ns 1019686 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58004259ns 1019689 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58004544ns 1019694 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58004828ns 1019699 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58005112ns 1019704 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58005567ns 1019712 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58005737ns 1019715 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58006021ns 1019720 1a110850 fd5ff06f jal x0, -44 +58006305ns 1019725 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58006589ns 1019730 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58006987ns 1019737 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58007158ns 1019740 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58007612ns 1019748 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58007783ns 1019751 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58008067ns 1019756 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58008351ns 1019761 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58008635ns 1019766 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58009090ns 1019774 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58009261ns 1019777 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58009545ns 1019782 1a110850 fd5ff06f jal x0, -44 +58009829ns 1019787 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58010113ns 1019792 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58010511ns 1019799 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58010681ns 1019802 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58011136ns 1019810 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58011307ns 1019813 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58011591ns 1019818 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58011875ns 1019823 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58012159ns 1019828 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58012614ns 1019836 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58012784ns 1019839 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58013068ns 1019844 1a110850 fd5ff06f jal x0, -44 +58013352ns 1019849 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58013637ns 1019854 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58014034ns 1019861 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58014205ns 1019864 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58014660ns 1019872 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58014830ns 1019875 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58015114ns 1019880 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58015398ns 1019885 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58015683ns 1019890 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58016137ns 1019898 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58016308ns 1019901 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58016592ns 1019906 1a110850 fd5ff06f jal x0, -44 +58016876ns 1019911 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58017160ns 1019916 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58017558ns 1019923 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58017729ns 1019926 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58018183ns 1019934 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58018354ns 1019937 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58018638ns 1019942 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58018922ns 1019947 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58019206ns 1019952 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58019661ns 1019960 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58019831ns 1019963 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58020115ns 1019968 1a110850 fd5ff06f jal x0, -44 +58020400ns 1019973 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58020684ns 1019978 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58021082ns 1019985 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58021252ns 1019988 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58021707ns 1019996 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58021877ns 1019999 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58022161ns 1020004 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58022446ns 1020009 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58022730ns 1020014 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58023184ns 1020022 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58023355ns 1020025 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58023639ns 1020030 1a110850 fd5ff06f jal x0, -44 +58023923ns 1020035 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58024207ns 1020040 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58024605ns 1020047 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58024776ns 1020050 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58025230ns 1020058 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58025401ns 1020061 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58025685ns 1020066 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58025969ns 1020071 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58026253ns 1020076 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58026708ns 1020084 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58026879ns 1020087 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58027163ns 1020092 1a110850 fd5ff06f jal x0, -44 +58027447ns 1020097 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58027731ns 1020102 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58028129ns 1020109 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58028299ns 1020112 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58028754ns 1020120 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58028924ns 1020123 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58029209ns 1020128 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58029493ns 1020133 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58029777ns 1020138 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58030232ns 1020146 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58030402ns 1020149 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58030686ns 1020154 1a110850 fd5ff06f jal x0, -44 +58030970ns 1020159 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58031255ns 1020164 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58031652ns 1020171 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58031823ns 1020174 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58032278ns 1020182 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58032448ns 1020185 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58032732ns 1020190 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58033016ns 1020195 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58033301ns 1020200 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58033755ns 1020208 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58033926ns 1020211 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58034210ns 1020216 1a110850 fd5ff06f jal x0, -44 +58034494ns 1020221 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58034778ns 1020226 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58035176ns 1020233 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58035346ns 1020236 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58035801ns 1020244 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58035972ns 1020247 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58036256ns 1020252 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58036540ns 1020257 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58036824ns 1020262 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58037279ns 1020270 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58037449ns 1020273 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58037733ns 1020278 1a110850 fd5ff06f jal x0, -44 +58038018ns 1020283 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58038302ns 1020288 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58038700ns 1020295 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58038870ns 1020298 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58039325ns 1020306 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58039495ns 1020309 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58039779ns 1020314 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58040064ns 1020319 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58040348ns 1020324 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58040802ns 1020332 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58040973ns 1020335 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58041257ns 1020340 1a110850 fd5ff06f jal x0, -44 +58041541ns 1020345 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58041825ns 1020350 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58042223ns 1020357 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58042394ns 1020360 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58042848ns 1020368 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58043019ns 1020371 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58043303ns 1020376 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58043587ns 1020381 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58043871ns 1020386 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58044326ns 1020394 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58044496ns 1020397 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58044781ns 1020402 1a110850 fd5ff06f jal x0, -44 +58045065ns 1020407 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58045349ns 1020412 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58045747ns 1020419 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58045917ns 1020422 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58046372ns 1020430 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58046542ns 1020433 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58046827ns 1020438 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58047111ns 1020443 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58047395ns 1020448 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58047850ns 1020456 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58048020ns 1020459 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58048304ns 1020464 1a110850 fd5ff06f jal x0, -44 +58048588ns 1020469 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58048872ns 1020474 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58049270ns 1020481 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58049441ns 1020484 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58049895ns 1020492 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58050066ns 1020495 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58050350ns 1020500 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58050634ns 1020505 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58050918ns 1020510 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58051373ns 1020518 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58051544ns 1020521 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58051828ns 1020526 1a110850 fd5ff06f jal x0, -44 +58052112ns 1020531 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58052396ns 1020536 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58052794ns 1020543 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58052964ns 1020546 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58053419ns 1020554 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58053590ns 1020557 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58053874ns 1020562 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58054158ns 1020567 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58054442ns 1020572 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58054897ns 1020580 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58055067ns 1020583 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58055351ns 1020588 1a110850 fd5ff06f jal x0, -44 +58055635ns 1020593 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58055920ns 1020598 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58056317ns 1020605 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58056488ns 1020608 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58056943ns 1020616 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58057113ns 1020619 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58057397ns 1020624 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58057681ns 1020629 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58057966ns 1020634 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58058420ns 1020642 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58058591ns 1020645 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58058875ns 1020650 1a110850 fd5ff06f jal x0, -44 +58059159ns 1020655 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58059443ns 1020660 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58059841ns 1020667 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58060012ns 1020670 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58060466ns 1020678 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58060637ns 1020681 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58060921ns 1020686 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58061205ns 1020691 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58061489ns 1020696 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58061944ns 1020704 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58062114ns 1020707 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58062399ns 1020712 1a110850 fd5ff06f jal x0, -44 +58062683ns 1020717 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58062967ns 1020722 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58063365ns 1020729 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58063535ns 1020732 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58063990ns 1020740 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58064160ns 1020743 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58064444ns 1020748 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58064729ns 1020753 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58065013ns 1020758 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58065467ns 1020766 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58065638ns 1020769 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58065922ns 1020774 1a110850 fd5ff06f jal x0, -44 +58066206ns 1020779 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58066490ns 1020784 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58066888ns 1020791 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58067059ns 1020794 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58067513ns 1020802 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58067684ns 1020805 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58067968ns 1020810 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58068252ns 1020815 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58068536ns 1020820 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58068991ns 1020828 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58069162ns 1020831 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58069446ns 1020836 1a110850 fd5ff06f jal x0, -44 +58069730ns 1020841 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58070014ns 1020846 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58070412ns 1020853 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58070582ns 1020856 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58071037ns 1020864 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58071207ns 1020867 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58071492ns 1020872 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58071776ns 1020877 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58072060ns 1020882 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58072515ns 1020890 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58072685ns 1020893 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58072969ns 1020898 1a110850 fd5ff06f jal x0, -44 +58073253ns 1020903 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58073538ns 1020908 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58073935ns 1020915 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58074106ns 1020918 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58074561ns 1020926 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58074731ns 1020929 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58075015ns 1020934 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58075299ns 1020939 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58075584ns 1020944 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58076038ns 1020952 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58076209ns 1020955 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58076493ns 1020960 1a110850 fd5ff06f jal x0, -44 +58076777ns 1020965 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58077061ns 1020970 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58077459ns 1020977 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58077629ns 1020980 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58078084ns 1020988 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58078255ns 1020991 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58078539ns 1020996 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58078823ns 1021001 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58079107ns 1021006 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58079562ns 1021014 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58079732ns 1021017 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58080016ns 1021022 1a110850 fd5ff06f jal x0, -44 +58080301ns 1021027 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58080585ns 1021032 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58080983ns 1021039 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58081153ns 1021042 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58081608ns 1021050 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58081778ns 1021053 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58082062ns 1021058 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58082347ns 1021063 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58082631ns 1021068 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58083085ns 1021076 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58083256ns 1021079 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58083540ns 1021084 1a110850 fd5ff06f jal x0, -44 +58083824ns 1021089 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58084108ns 1021094 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58084506ns 1021101 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58084677ns 1021104 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58085131ns 1021112 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58085302ns 1021115 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58085586ns 1021120 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58085870ns 1021125 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58086154ns 1021130 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58086609ns 1021138 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58086779ns 1021141 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58087064ns 1021146 1a110850 fd5ff06f jal x0, -44 +58087348ns 1021151 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58087632ns 1021156 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58088030ns 1021163 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58088200ns 1021166 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58088655ns 1021174 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58088825ns 1021177 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58089110ns 1021182 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58089394ns 1021187 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58089678ns 1021192 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58090133ns 1021200 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58090303ns 1021203 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58090587ns 1021208 1a110850 fd5ff06f jal x0, -44 +58090871ns 1021213 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58091155ns 1021218 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58091553ns 1021225 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58091724ns 1021228 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58092178ns 1021236 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58092349ns 1021239 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58092633ns 1021244 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58092917ns 1021249 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58093201ns 1021254 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58093656ns 1021262 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58093827ns 1021265 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58094111ns 1021270 1a110850 fd5ff06f jal x0, -44 +58094395ns 1021275 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58094679ns 1021280 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58095077ns 1021287 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58095247ns 1021290 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58095702ns 1021298 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58095873ns 1021301 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58096157ns 1021306 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58096441ns 1021311 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58096725ns 1021316 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58097180ns 1021324 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58097350ns 1021327 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58097634ns 1021332 1a110850 fd5ff06f jal x0, -44 +58097919ns 1021337 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58098203ns 1021342 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58098600ns 1021349 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58098771ns 1021352 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58099226ns 1021360 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58099396ns 1021363 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58099680ns 1021368 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58099964ns 1021373 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58100249ns 1021378 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58100703ns 1021386 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58100874ns 1021389 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58101158ns 1021394 1a110850 fd5ff06f jal x0, -44 +58101442ns 1021399 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58101726ns 1021404 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58102124ns 1021411 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58102295ns 1021414 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58102749ns 1021422 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58102920ns 1021425 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58103204ns 1021430 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58103488ns 1021435 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58103772ns 1021440 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58104227ns 1021448 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58104397ns 1021451 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58104682ns 1021456 1a110850 fd5ff06f jal x0, -44 +58104966ns 1021461 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58105250ns 1021466 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58105648ns 1021473 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58105818ns 1021476 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58106273ns 1021484 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58106443ns 1021487 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58106727ns 1021492 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58107012ns 1021497 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58107296ns 1021502 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58107750ns 1021510 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58107921ns 1021513 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58108205ns 1021518 1a110850 fd5ff06f jal x0, -44 +58108489ns 1021523 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58108773ns 1021528 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58109171ns 1021535 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58109342ns 1021538 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58109796ns 1021546 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58109967ns 1021549 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58110251ns 1021554 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58110535ns 1021559 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58110819ns 1021564 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58111274ns 1021572 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58111445ns 1021575 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58111729ns 1021580 1a110850 fd5ff06f jal x0, -44 +58112013ns 1021585 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58112297ns 1021590 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58112695ns 1021597 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58112865ns 1021600 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58113320ns 1021608 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58113490ns 1021611 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58113775ns 1021616 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58114059ns 1021621 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58114343ns 1021626 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58114798ns 1021634 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58114968ns 1021637 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58115252ns 1021642 1a110850 fd5ff06f jal x0, -44 +58115536ns 1021647 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58115821ns 1021652 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58116218ns 1021659 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58116389ns 1021662 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58116844ns 1021670 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58117014ns 1021673 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58117298ns 1021678 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58117582ns 1021683 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58117867ns 1021688 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58118321ns 1021696 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58118492ns 1021699 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58118776ns 1021704 1a110850 fd5ff06f jal x0, -44 +58119060ns 1021709 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58119344ns 1021714 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58119742ns 1021721 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58119912ns 1021724 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58120367ns 1021732 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58120538ns 1021735 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58120822ns 1021740 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58121106ns 1021745 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58121390ns 1021750 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58121845ns 1021758 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58122015ns 1021761 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58122299ns 1021766 1a110850 fd5ff06f jal x0, -44 +58122584ns 1021771 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58122868ns 1021776 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58123266ns 1021783 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58123436ns 1021786 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58123891ns 1021794 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58124061ns 1021797 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58124345ns 1021802 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58124630ns 1021807 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58124914ns 1021812 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58125368ns 1021820 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58125539ns 1021823 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58125823ns 1021828 1a110850 fd5ff06f jal x0, -44 +58126107ns 1021833 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58126391ns 1021838 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58126789ns 1021845 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58126960ns 1021848 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58127414ns 1021856 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58127585ns 1021859 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58127869ns 1021864 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58128153ns 1021869 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58128437ns 1021874 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58128892ns 1021882 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58129062ns 1021885 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58129347ns 1021890 1a110850 fd5ff06f jal x0, -44 +58129631ns 1021895 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58129915ns 1021900 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58130313ns 1021907 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58130483ns 1021910 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58130938ns 1021918 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58131108ns 1021921 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58131393ns 1021926 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58131677ns 1021931 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58131961ns 1021936 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58132416ns 1021944 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58132586ns 1021947 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58132870ns 1021952 1a110850 fd5ff06f jal x0, -44 +58133154ns 1021957 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58133439ns 1021962 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58133836ns 1021969 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58134007ns 1021972 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58134461ns 1021980 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58134632ns 1021983 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58134916ns 1021988 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58135200ns 1021993 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58135484ns 1021998 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58135939ns 1022006 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58136110ns 1022009 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58136394ns 1022014 1a110850 fd5ff06f jal x0, -44 +58136678ns 1022019 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58136962ns 1022024 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58137360ns 1022031 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58137530ns 1022034 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58137985ns 1022042 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58138156ns 1022045 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58138440ns 1022050 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58138724ns 1022055 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58139008ns 1022060 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58139463ns 1022068 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58139633ns 1022071 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58139917ns 1022076 1a110850 fd5ff06f jal x0, -44 +58140202ns 1022081 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58140486ns 1022086 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58140883ns 1022093 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58141054ns 1022096 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58141509ns 1022104 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58141679ns 1022107 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58141963ns 1022112 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58142247ns 1022117 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58142532ns 1022122 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58142986ns 1022130 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58143157ns 1022133 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58143441ns 1022138 1a110850 fd5ff06f jal x0, -44 +58143725ns 1022143 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58144009ns 1022148 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58144407ns 1022155 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58144578ns 1022158 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58145032ns 1022166 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58145203ns 1022169 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58145487ns 1022174 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58145771ns 1022179 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58146055ns 1022184 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58146510ns 1022192 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58146680ns 1022195 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58146965ns 1022200 1a110850 fd5ff06f jal x0, -44 +58147249ns 1022205 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58147533ns 1022210 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58147931ns 1022217 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58148101ns 1022220 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58148556ns 1022228 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58148726ns 1022231 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58149010ns 1022236 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58149295ns 1022241 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58149579ns 1022246 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58150033ns 1022254 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58150204ns 1022257 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58150488ns 1022262 1a110850 fd5ff06f jal x0, -44 +58150772ns 1022267 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58151056ns 1022272 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58151454ns 1022279 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58151625ns 1022282 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58152079ns 1022290 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58152250ns 1022293 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58152534ns 1022298 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58152818ns 1022303 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58153102ns 1022308 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58153557ns 1022316 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58153728ns 1022319 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58154012ns 1022324 1a110850 fd5ff06f jal x0, -44 +58154296ns 1022329 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58154580ns 1022334 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58154978ns 1022341 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58155148ns 1022344 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58155603ns 1022352 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58155773ns 1022355 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58156058ns 1022360 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58156342ns 1022365 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58156626ns 1022370 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58157081ns 1022378 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58157251ns 1022381 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58157535ns 1022386 1a110850 fd5ff06f jal x0, -44 +58157819ns 1022391 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58158104ns 1022396 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58158501ns 1022403 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58158672ns 1022406 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58159127ns 1022414 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58159297ns 1022417 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58159581ns 1022422 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58159865ns 1022427 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58160150ns 1022432 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58160604ns 1022440 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58160775ns 1022443 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58161059ns 1022448 1a110850 fd5ff06f jal x0, -44 +58161343ns 1022453 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58161627ns 1022458 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58162025ns 1022465 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58162195ns 1022468 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58162650ns 1022476 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58162821ns 1022479 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58163105ns 1022484 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58163389ns 1022489 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58163673ns 1022494 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58164128ns 1022502 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58164298ns 1022505 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58164582ns 1022510 1a110850 fd5ff06f jal x0, -44 +58164867ns 1022515 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58165151ns 1022520 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58165549ns 1022527 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58165719ns 1022530 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58166174ns 1022538 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58166344ns 1022541 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58166628ns 1022546 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58166913ns 1022551 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58167197ns 1022556 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58167651ns 1022564 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58167822ns 1022567 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58168106ns 1022572 1a110850 fd5ff06f jal x0, -44 +58168390ns 1022577 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58168674ns 1022582 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58169072ns 1022589 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58169243ns 1022592 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58169697ns 1022600 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58169868ns 1022603 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58170152ns 1022608 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58170436ns 1022613 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58170720ns 1022618 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58171175ns 1022626 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58171345ns 1022629 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58171630ns 1022634 1a110850 fd5ff06f jal x0, -44 +58171914ns 1022639 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58172198ns 1022644 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58172596ns 1022651 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58172766ns 1022654 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58173221ns 1022662 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58173391ns 1022665 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58173676ns 1022670 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58173960ns 1022675 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58174244ns 1022680 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58174699ns 1022688 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58174869ns 1022691 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58175153ns 1022696 1a110850 fd5ff06f jal x0, -44 +58175437ns 1022701 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58175722ns 1022706 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58176119ns 1022713 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58176290ns 1022716 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58176744ns 1022724 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58176915ns 1022727 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58177199ns 1022732 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58177483ns 1022737 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58177767ns 1022742 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58178222ns 1022750 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58178393ns 1022753 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58178677ns 1022758 1a110850 fd5ff06f jal x0, -44 +58178961ns 1022763 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58179245ns 1022768 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58179643ns 1022775 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58179813ns 1022778 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58180268ns 1022786 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58180439ns 1022789 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58180723ns 1022794 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58181007ns 1022799 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58181291ns 1022804 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58181746ns 1022812 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58181916ns 1022815 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58182200ns 1022820 1a110850 fd5ff06f jal x0, -44 +58182485ns 1022825 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58182769ns 1022830 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58183167ns 1022837 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58183337ns 1022840 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58183792ns 1022848 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58183962ns 1022851 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58184246ns 1022856 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58184530ns 1022861 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58184815ns 1022866 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58185269ns 1022874 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58185440ns 1022877 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58185724ns 1022882 1a110850 fd5ff06f jal x0, -44 +58186008ns 1022887 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58186292ns 1022892 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58186690ns 1022899 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58186861ns 1022902 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58187315ns 1022910 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58187486ns 1022913 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58187770ns 1022918 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58188054ns 1022923 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58188338ns 1022928 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58188793ns 1022936 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58188963ns 1022939 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58189248ns 1022944 1a110850 fd5ff06f jal x0, -44 +58189532ns 1022949 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58189816ns 1022954 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58190214ns 1022961 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58190384ns 1022964 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58190839ns 1022972 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58191009ns 1022975 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58191293ns 1022980 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58191578ns 1022985 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58191862ns 1022990 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58192316ns 1022998 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58192487ns 1023001 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58192771ns 1023006 1a110850 fd5ff06f jal x0, -44 +58193055ns 1023011 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58193339ns 1023016 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58193737ns 1023023 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58193908ns 1023026 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58194362ns 1023034 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58194533ns 1023037 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58194817ns 1023042 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58195101ns 1023047 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58195385ns 1023052 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58195840ns 1023060 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58196011ns 1023063 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58196295ns 1023068 1a110850 fd5ff06f jal x0, -44 +58196579ns 1023073 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58196863ns 1023078 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58197261ns 1023085 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58197431ns 1023088 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58197886ns 1023096 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58198056ns 1023099 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58198341ns 1023104 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58198625ns 1023109 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58198909ns 1023114 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58199364ns 1023122 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58199534ns 1023125 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58199818ns 1023130 1a110850 fd5ff06f jal x0, -44 +58200102ns 1023135 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58200387ns 1023140 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58200784ns 1023147 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58200955ns 1023150 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58201410ns 1023158 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58201580ns 1023161 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58201864ns 1023166 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58202148ns 1023171 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58202433ns 1023176 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58202887ns 1023184 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58203058ns 1023187 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58203342ns 1023192 1a110850 fd5ff06f jal x0, -44 +58203626ns 1023197 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58203910ns 1023202 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58204308ns 1023209 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58204479ns 1023212 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58204933ns 1023220 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58205104ns 1023223 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58205388ns 1023228 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58205672ns 1023233 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58205956ns 1023238 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58206411ns 1023246 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58206581ns 1023249 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58206865ns 1023254 1a110850 fd5ff06f jal x0, -44 +58207150ns 1023259 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58207434ns 1023264 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58207832ns 1023271 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58208002ns 1023274 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58208457ns 1023282 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58208627ns 1023285 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58208911ns 1023290 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58209196ns 1023295 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58209480ns 1023300 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58209934ns 1023308 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58210105ns 1023311 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58210389ns 1023316 1a110850 fd5ff06f jal x0, -44 +58210673ns 1023321 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58210957ns 1023326 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58211355ns 1023333 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58211526ns 1023336 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58211980ns 1023344 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58212151ns 1023347 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58212435ns 1023352 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58212719ns 1023357 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58213003ns 1023362 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58213458ns 1023370 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58213628ns 1023373 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58213913ns 1023378 1a110850 fd5ff06f jal x0, -44 +58214197ns 1023383 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58214481ns 1023388 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58214879ns 1023395 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58215049ns 1023398 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58215504ns 1023406 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58215674ns 1023409 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58215959ns 1023414 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58216243ns 1023419 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58216527ns 1023424 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58216982ns 1023432 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58217152ns 1023435 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58217436ns 1023440 1a110850 fd5ff06f jal x0, -44 +58217720ns 1023445 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58218005ns 1023450 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58218402ns 1023457 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58218573ns 1023460 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58219027ns 1023468 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58219198ns 1023471 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58219482ns 1023476 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58219766ns 1023481 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58220050ns 1023486 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58220505ns 1023494 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58220676ns 1023497 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58220960ns 1023502 1a110850 fd5ff06f jal x0, -44 +58221244ns 1023507 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58221528ns 1023512 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58221926ns 1023519 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58222096ns 1023522 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58222551ns 1023530 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58222722ns 1023533 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58223006ns 1023538 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58223290ns 1023543 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58223574ns 1023548 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58224029ns 1023556 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58224199ns 1023559 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58224483ns 1023564 1a110850 fd5ff06f jal x0, -44 +58224768ns 1023569 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58225052ns 1023574 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58225450ns 1023581 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58225620ns 1023584 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58226075ns 1023592 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58226245ns 1023595 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58226529ns 1023600 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58226813ns 1023605 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58227098ns 1023610 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58227552ns 1023618 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58227723ns 1023621 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58228007ns 1023626 1a110850 fd5ff06f jal x0, -44 +58228291ns 1023631 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58228575ns 1023636 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58228973ns 1023643 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58229144ns 1023646 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58229598ns 1023654 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58229769ns 1023657 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58230053ns 1023662 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58230337ns 1023667 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58230621ns 1023672 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58231076ns 1023680 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58231246ns 1023683 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58231531ns 1023688 1a110850 fd5ff06f jal x0, -44 +58231815ns 1023693 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58232099ns 1023698 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58232497ns 1023705 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58232667ns 1023708 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58233122ns 1023716 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58233292ns 1023719 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58233576ns 1023724 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58233861ns 1023729 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58234145ns 1023734 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58234599ns 1023742 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58234770ns 1023745 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58235054ns 1023750 1a110850 fd5ff06f jal x0, -44 +58235338ns 1023755 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58235622ns 1023760 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58236020ns 1023767 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58236191ns 1023770 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58236645ns 1023778 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58236816ns 1023781 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58237100ns 1023786 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58237384ns 1023791 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58237668ns 1023796 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58238123ns 1023804 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58238294ns 1023807 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58238578ns 1023812 1a110850 fd5ff06f jal x0, -44 +58238862ns 1023817 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58239146ns 1023822 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58239544ns 1023829 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58239714ns 1023832 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58240169ns 1023840 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58240339ns 1023843 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58240624ns 1023848 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58240908ns 1023853 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58241192ns 1023858 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58241647ns 1023866 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58241817ns 1023869 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58242101ns 1023874 1a110850 fd5ff06f jal x0, -44 +58242385ns 1023879 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58242670ns 1023884 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58243067ns 1023891 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58243238ns 1023894 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58243693ns 1023902 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58243863ns 1023905 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58244147ns 1023910 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58244431ns 1023915 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58244716ns 1023920 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58245170ns 1023928 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58245341ns 1023931 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58245625ns 1023936 1a110850 fd5ff06f jal x0, -44 +58245909ns 1023941 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58246193ns 1023946 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58246591ns 1023953 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58246762ns 1023956 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58247216ns 1023964 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58247387ns 1023967 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58247671ns 1023972 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58247955ns 1023977 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58248239ns 1023982 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58248694ns 1023990 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58248864ns 1023993 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58249148ns 1023998 1a110850 fd5ff06f jal x0, -44 +58249433ns 1024003 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58249717ns 1024008 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58250115ns 1024015 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58250285ns 1024018 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58250740ns 1024026 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58250910ns 1024029 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58251194ns 1024034 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58251479ns 1024039 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58251763ns 1024044 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58252217ns 1024052 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58252388ns 1024055 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58252672ns 1024060 1a110850 fd5ff06f jal x0, -44 +58252956ns 1024065 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58253240ns 1024070 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58253638ns 1024077 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58253809ns 1024080 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58254263ns 1024088 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58254434ns 1024091 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58254718ns 1024096 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58255002ns 1024101 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58255286ns 1024106 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58255741ns 1024114 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58255911ns 1024117 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58256196ns 1024122 1a110850 fd5ff06f jal x0, -44 +58256480ns 1024127 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58256764ns 1024132 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58257162ns 1024139 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58257332ns 1024142 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58257787ns 1024150 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58257957ns 1024153 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58258242ns 1024158 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58258526ns 1024163 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58258810ns 1024168 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58259265ns 1024176 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58259435ns 1024179 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58259719ns 1024184 1a110850 fd5ff06f jal x0, -44 +58260003ns 1024189 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58260288ns 1024194 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58260685ns 1024201 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58260856ns 1024204 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58261311ns 1024212 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58261481ns 1024215 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58261765ns 1024220 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58262049ns 1024225 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58262333ns 1024230 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58262788ns 1024238 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58262959ns 1024241 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58263243ns 1024246 1a110850 fd5ff06f jal x0, -44 +58263527ns 1024251 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58263811ns 1024256 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58264209ns 1024263 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58264379ns 1024266 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58264834ns 1024274 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58265005ns 1024277 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58265289ns 1024282 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58265573ns 1024287 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58265857ns 1024292 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58266312ns 1024300 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58266482ns 1024303 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58266766ns 1024308 1a110850 fd5ff06f jal x0, -44 +58267051ns 1024313 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58267335ns 1024318 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58267733ns 1024325 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58267903ns 1024328 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58268358ns 1024336 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58268528ns 1024339 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58268812ns 1024344 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58269096ns 1024349 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58269381ns 1024354 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58269835ns 1024362 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58270006ns 1024365 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58270290ns 1024370 1a110850 fd5ff06f jal x0, -44 +58270574ns 1024375 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58270858ns 1024380 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58271256ns 1024387 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58271427ns 1024390 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58271881ns 1024398 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58272052ns 1024401 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58272336ns 1024406 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58272620ns 1024411 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58272904ns 1024416 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58273359ns 1024424 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58273529ns 1024427 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58273814ns 1024432 1a110850 fd5ff06f jal x0, -44 +58274098ns 1024437 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58274382ns 1024442 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58274780ns 1024449 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58274950ns 1024452 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58275405ns 1024460 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58275575ns 1024463 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58275859ns 1024468 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58276144ns 1024473 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58276428ns 1024478 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58276882ns 1024486 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58277053ns 1024489 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58277337ns 1024494 1a110850 fd5ff06f jal x0, -44 +58277621ns 1024499 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58277905ns 1024504 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58278303ns 1024511 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58278474ns 1024514 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58278928ns 1024522 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58279099ns 1024525 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58279383ns 1024530 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58279667ns 1024535 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58279951ns 1024540 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58280406ns 1024548 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58280577ns 1024551 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58280861ns 1024556 1a110850 fd5ff06f jal x0, -44 +58281145ns 1024561 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58281429ns 1024566 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58281827ns 1024573 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58281997ns 1024576 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58282452ns 1024584 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58282623ns 1024587 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58282907ns 1024592 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58283191ns 1024597 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58283475ns 1024602 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58283930ns 1024610 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58284100ns 1024613 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58284384ns 1024618 1a110850 fd5ff06f jal x0, -44 +58284668ns 1024623 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58284953ns 1024628 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58285350ns 1024635 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58285521ns 1024638 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58285976ns 1024646 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58286146ns 1024649 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58286430ns 1024654 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58286714ns 1024659 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58286999ns 1024664 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58287453ns 1024672 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58287624ns 1024675 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58287908ns 1024680 1a110850 fd5ff06f jal x0, -44 +58288192ns 1024685 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58288476ns 1024690 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58288874ns 1024697 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58289045ns 1024700 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58289499ns 1024708 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58289670ns 1024711 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58289954ns 1024716 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58290238ns 1024721 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58290522ns 1024726 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58290977ns 1024734 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58291147ns 1024737 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58291431ns 1024742 1a110850 fd5ff06f jal x0, -44 +58291716ns 1024747 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58292000ns 1024752 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58292398ns 1024759 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58292568ns 1024762 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58293023ns 1024770 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58293193ns 1024773 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58293477ns 1024778 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58293762ns 1024783 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58294046ns 1024788 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58294500ns 1024796 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58294671ns 1024799 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58294955ns 1024804 1a110850 fd5ff06f jal x0, -44 +58295239ns 1024809 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58295523ns 1024814 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58295921ns 1024821 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58296092ns 1024824 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58296546ns 1024832 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58296717ns 1024835 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58297001ns 1024840 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58297285ns 1024845 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58297569ns 1024850 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58298024ns 1024858 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58298194ns 1024861 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58298479ns 1024866 1a110850 fd5ff06f jal x0, -44 +58298763ns 1024871 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58299047ns 1024876 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58299445ns 1024883 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58299615ns 1024886 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58300070ns 1024894 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58300240ns 1024897 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58300525ns 1024902 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58300809ns 1024907 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58301093ns 1024912 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58301548ns 1024920 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58301718ns 1024923 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58302002ns 1024928 1a110850 fd5ff06f jal x0, -44 +58302286ns 1024933 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58302571ns 1024938 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58302968ns 1024945 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58303139ns 1024948 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58303594ns 1024956 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58303764ns 1024959 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58304048ns 1024964 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58304332ns 1024969 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58304616ns 1024974 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58305071ns 1024982 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58305242ns 1024985 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58305526ns 1024990 1a110850 fd5ff06f jal x0, -44 +58305810ns 1024995 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58306094ns 1025000 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58306492ns 1025007 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58306662ns 1025010 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58307117ns 1025018 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58307288ns 1025021 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58307572ns 1025026 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58307856ns 1025031 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58308140ns 1025036 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58308595ns 1025044 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58308765ns 1025047 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58309049ns 1025052 1a110850 fd5ff06f jal x0, -44 +58309334ns 1025057 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58309618ns 1025062 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58310016ns 1025069 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58310186ns 1025072 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58310641ns 1025080 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58310811ns 1025083 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58311095ns 1025088 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58311379ns 1025093 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58311664ns 1025098 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58312118ns 1025106 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58312289ns 1025109 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58312573ns 1025114 1a110850 fd5ff06f jal x0, -44 +58312857ns 1025119 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58313141ns 1025124 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58313539ns 1025131 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58313710ns 1025134 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58314164ns 1025142 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58314335ns 1025145 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58314619ns 1025150 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58314903ns 1025155 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58315187ns 1025160 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58315642ns 1025168 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58315812ns 1025171 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58316097ns 1025176 1a110850 fd5ff06f jal x0, -44 +58316381ns 1025181 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58316665ns 1025186 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58317063ns 1025193 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58317233ns 1025196 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58317688ns 1025204 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58317858ns 1025207 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58318143ns 1025212 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58318427ns 1025217 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58318711ns 1025222 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58319165ns 1025230 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58319336ns 1025233 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58319620ns 1025238 1a110850 fd5ff06f jal x0, -44 +58319904ns 1025243 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58320188ns 1025248 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58320586ns 1025255 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58320757ns 1025258 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58321211ns 1025266 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58321382ns 1025269 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58321666ns 1025274 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58321950ns 1025279 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58322234ns 1025284 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58322689ns 1025292 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58322860ns 1025295 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58323144ns 1025300 1a110850 fd5ff06f jal x0, -44 +58323428ns 1025305 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58323712ns 1025310 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58324110ns 1025317 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58324280ns 1025320 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58324735ns 1025328 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58324906ns 1025331 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58325190ns 1025336 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58325474ns 1025341 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58325758ns 1025346 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58326213ns 1025354 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58326383ns 1025357 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58326667ns 1025362 1a110850 fd5ff06f jal x0, -44 +58326951ns 1025367 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58327236ns 1025372 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58327633ns 1025379 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58327804ns 1025382 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58328259ns 1025390 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58328429ns 1025393 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58328713ns 1025398 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58328997ns 1025403 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58329282ns 1025408 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58329736ns 1025416 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58329907ns 1025419 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58330191ns 1025424 1a110850 fd5ff06f jal x0, -44 +58330475ns 1025429 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58330759ns 1025434 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58331157ns 1025441 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58331328ns 1025444 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58331782ns 1025452 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58331953ns 1025455 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58332237ns 1025460 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58332521ns 1025465 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58332805ns 1025470 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58333260ns 1025478 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58333430ns 1025481 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58333714ns 1025486 1a110850 fd5ff06f jal x0, -44 +58333999ns 1025491 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58334283ns 1025496 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58334681ns 1025503 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58334851ns 1025506 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58335306ns 1025514 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58335476ns 1025517 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58335760ns 1025522 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58336045ns 1025527 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58336329ns 1025532 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58336783ns 1025540 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58336954ns 1025543 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58337238ns 1025548 1a110850 fd5ff06f jal x0, -44 +58337522ns 1025553 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58337806ns 1025558 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58338204ns 1025565 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58338375ns 1025568 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58338829ns 1025576 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58339000ns 1025579 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58339284ns 1025584 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58339568ns 1025589 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58339852ns 1025594 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58340307ns 1025602 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58340477ns 1025605 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58340762ns 1025610 1a110850 fd5ff06f jal x0, -44 +58341046ns 1025615 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58341330ns 1025620 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58341728ns 1025627 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58341898ns 1025630 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58342353ns 1025638 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58342523ns 1025641 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58342808ns 1025646 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58343092ns 1025651 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58343376ns 1025656 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58343831ns 1025664 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58344001ns 1025667 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58344285ns 1025672 1a110850 fd5ff06f jal x0, -44 +58344569ns 1025677 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58344854ns 1025682 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58345251ns 1025689 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58345422ns 1025692 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58345877ns 1025700 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58346047ns 1025703 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58346331ns 1025708 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58346615ns 1025713 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58346899ns 1025718 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58347354ns 1025726 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58347525ns 1025729 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58347809ns 1025734 1a110850 fd5ff06f jal x0, -44 +58348093ns 1025739 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58348377ns 1025744 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58348775ns 1025751 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58348945ns 1025754 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58349400ns 1025762 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58349571ns 1025765 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58349855ns 1025770 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58350139ns 1025775 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58350423ns 1025780 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58350878ns 1025788 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58351048ns 1025791 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58351332ns 1025796 1a110850 fd5ff06f jal x0, -44 +58351617ns 1025801 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58351901ns 1025806 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58352299ns 1025813 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58352469ns 1025816 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58352924ns 1025824 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58353094ns 1025827 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58353378ns 1025832 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58353663ns 1025837 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58353947ns 1025842 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58354401ns 1025850 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58354572ns 1025853 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58354856ns 1025858 1a110850 fd5ff06f jal x0, -44 +58355140ns 1025863 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58355424ns 1025868 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58355822ns 1025875 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58355993ns 1025878 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58356447ns 1025886 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58356618ns 1025889 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58356902ns 1025894 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58357186ns 1025899 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58357470ns 1025904 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58357925ns 1025912 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58358095ns 1025915 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58358380ns 1025920 1a110850 fd5ff06f jal x0, -44 +58358664ns 1025925 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58358948ns 1025930 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58359346ns 1025937 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58359516ns 1025940 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58359971ns 1025948 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58360141ns 1025951 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58360426ns 1025956 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58360710ns 1025961 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58360994ns 1025966 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58361448ns 1025974 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58361619ns 1025977 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58361903ns 1025982 1a110850 fd5ff06f jal x0, -44 +58362187ns 1025987 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58362471ns 1025992 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58362869ns 1025999 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58363040ns 1026002 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58363494ns 1026010 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58363665ns 1026013 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58363949ns 1026018 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58364233ns 1026023 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58364517ns 1026028 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58364972ns 1026036 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58365143ns 1026039 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58365427ns 1026044 1a110850 fd5ff06f jal x0, -44 +58365711ns 1026049 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58365995ns 1026054 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58366393ns 1026061 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58366563ns 1026064 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58367018ns 1026072 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58367189ns 1026075 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58367473ns 1026080 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58367757ns 1026085 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58368041ns 1026090 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58368496ns 1026098 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58368666ns 1026101 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58368950ns 1026106 1a110850 fd5ff06f jal x0, -44 +58369234ns 1026111 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58369519ns 1026116 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58369916ns 1026123 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58370087ns 1026126 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58370542ns 1026134 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58370712ns 1026137 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58370996ns 1026142 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58371280ns 1026147 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58371565ns 1026152 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58372019ns 1026160 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58372190ns 1026163 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58372474ns 1026168 1a110850 fd5ff06f jal x0, -44 +58372758ns 1026173 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58373042ns 1026178 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58373440ns 1026185 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58373611ns 1026188 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58374065ns 1026196 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58374236ns 1026199 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58374520ns 1026204 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58374804ns 1026209 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58375088ns 1026214 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58375543ns 1026222 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58375713ns 1026225 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58375997ns 1026230 1a110850 fd5ff06f jal x0, -44 +58376282ns 1026235 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58376566ns 1026240 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58376964ns 1026247 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58377134ns 1026250 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58377589ns 1026258 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58377759ns 1026261 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58378043ns 1026266 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58378328ns 1026271 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58378612ns 1026276 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58379066ns 1026284 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58379237ns 1026287 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58379521ns 1026292 1a110850 fd5ff06f jal x0, -44 +58379805ns 1026297 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58380089ns 1026302 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58380487ns 1026309 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58380658ns 1026312 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58381112ns 1026320 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58381283ns 1026323 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58381567ns 1026328 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58381851ns 1026333 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58382135ns 1026338 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58382590ns 1026346 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58382760ns 1026349 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58383045ns 1026354 1a110850 fd5ff06f jal x0, -44 +58383329ns 1026359 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58383613ns 1026364 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58384011ns 1026371 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58384181ns 1026374 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58384636ns 1026382 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58384806ns 1026385 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58385091ns 1026390 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58385375ns 1026395 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58385659ns 1026400 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58386114ns 1026408 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58386284ns 1026411 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58386568ns 1026416 1a110850 fd5ff06f jal x0, -44 +58386852ns 1026421 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58387137ns 1026426 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58387534ns 1026433 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58387705ns 1026436 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58388160ns 1026444 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58388330ns 1026447 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58388614ns 1026452 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58388898ns 1026457 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58389183ns 1026462 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58389637ns 1026470 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58389808ns 1026473 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58390092ns 1026478 1a110850 fd5ff06f jal x0, -44 +58390376ns 1026483 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58390660ns 1026488 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58391058ns 1026495 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58391228ns 1026498 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58391683ns 1026506 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58391854ns 1026509 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58392138ns 1026514 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58392422ns 1026519 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58392706ns 1026524 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58393161ns 1026532 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58393331ns 1026535 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58393615ns 1026540 1a110850 fd5ff06f jal x0, -44 +58393900ns 1026545 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58394184ns 1026550 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58394582ns 1026557 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58394752ns 1026560 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58395207ns 1026568 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58395377ns 1026571 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58395661ns 1026576 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58395946ns 1026581 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58396230ns 1026586 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58396684ns 1026594 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58396855ns 1026597 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58397139ns 1026602 1a110850 fd5ff06f jal x0, -44 +58397423ns 1026607 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58397707ns 1026612 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58398105ns 1026619 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58398276ns 1026622 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58398730ns 1026630 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58398901ns 1026633 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58399185ns 1026638 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58399469ns 1026643 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58399753ns 1026648 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58400208ns 1026656 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58400378ns 1026659 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58400663ns 1026664 1a110850 fd5ff06f jal x0, -44 +58400947ns 1026669 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58401231ns 1026674 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58401629ns 1026681 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58401799ns 1026684 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58402254ns 1026692 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58402424ns 1026695 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58402709ns 1026700 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58402993ns 1026705 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58403277ns 1026710 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58403731ns 1026718 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58403902ns 1026721 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58404186ns 1026726 1a110850 fd5ff06f jal x0, -44 +58404470ns 1026731 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58404754ns 1026736 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58405152ns 1026743 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58405323ns 1026746 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58405777ns 1026754 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58405948ns 1026757 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58406232ns 1026762 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58406516ns 1026767 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58406800ns 1026772 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58407255ns 1026780 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58407426ns 1026783 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58407710ns 1026788 1a110850 fd5ff06f jal x0, -44 +58407994ns 1026793 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58408278ns 1026798 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58408676ns 1026805 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58408846ns 1026808 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58409301ns 1026816 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58409472ns 1026819 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58409756ns 1026824 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58410040ns 1026829 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58410324ns 1026834 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58410779ns 1026842 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58410949ns 1026845 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58411233ns 1026850 1a110850 fd5ff06f jal x0, -44 +58411517ns 1026855 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58411802ns 1026860 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58412199ns 1026867 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58412370ns 1026870 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58412825ns 1026878 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58412995ns 1026881 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58413279ns 1026886 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58413563ns 1026891 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58413848ns 1026896 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58414302ns 1026904 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58414473ns 1026907 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58414757ns 1026912 1a110850 fd5ff06f jal x0, -44 +58415041ns 1026917 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58415325ns 1026922 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58415723ns 1026929 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58415894ns 1026932 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58416348ns 1026940 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58416519ns 1026943 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58416803ns 1026948 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58417087ns 1026953 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58417371ns 1026958 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58417826ns 1026966 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58417996ns 1026969 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58418280ns 1026974 1a110850 fd5ff06f jal x0, -44 +58418565ns 1026979 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58418849ns 1026984 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58419247ns 1026991 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58419417ns 1026994 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58419872ns 1027002 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58420042ns 1027005 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58420326ns 1027010 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58420611ns 1027015 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58420895ns 1027020 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58421349ns 1027028 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58421520ns 1027031 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58421804ns 1027036 1a110850 fd5ff06f jal x0, -44 +58422088ns 1027041 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58422372ns 1027046 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58422770ns 1027053 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58422941ns 1027056 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58423395ns 1027064 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58423566ns 1027067 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58423850ns 1027072 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58424134ns 1027077 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58424418ns 1027082 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58424873ns 1027090 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58425043ns 1027093 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58425328ns 1027098 1a110850 fd5ff06f jal x0, -44 +58425612ns 1027103 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58425896ns 1027108 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58426294ns 1027115 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58426464ns 1027118 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58426919ns 1027126 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58427089ns 1027129 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58427374ns 1027134 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58427658ns 1027139 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58427942ns 1027144 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58428397ns 1027152 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58428567ns 1027155 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58428851ns 1027160 1a110850 fd5ff06f jal x0, -44 +58429135ns 1027165 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58429420ns 1027170 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58429817ns 1027177 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58429988ns 1027180 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58430443ns 1027188 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58430613ns 1027191 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58430897ns 1027196 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58431181ns 1027201 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58431466ns 1027206 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58431920ns 1027214 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58432091ns 1027217 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58432375ns 1027222 1a110850 fd5ff06f jal x0, -44 +58432659ns 1027227 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58432943ns 1027232 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58433341ns 1027239 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58433511ns 1027242 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58433966ns 1027250 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58434137ns 1027253 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58434421ns 1027258 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58434705ns 1027263 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58434989ns 1027268 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58435444ns 1027276 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58435614ns 1027279 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58435898ns 1027284 1a110850 fd5ff06f jal x0, -44 +58436183ns 1027289 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58436467ns 1027294 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58436865ns 1027301 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58437035ns 1027304 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58437490ns 1027312 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58437660ns 1027315 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58437944ns 1027320 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58438229ns 1027325 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58438513ns 1027330 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58438967ns 1027338 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58439138ns 1027341 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58439422ns 1027346 1a110850 fd5ff06f jal x0, -44 +58439706ns 1027351 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58439990ns 1027356 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58440388ns 1027363 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58440559ns 1027366 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58441013ns 1027374 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58441184ns 1027377 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58441468ns 1027382 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58441752ns 1027387 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58442036ns 1027392 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58442491ns 1027400 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58442661ns 1027403 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58442946ns 1027408 1a110850 fd5ff06f jal x0, -44 +58443230ns 1027413 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58443514ns 1027418 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58443912ns 1027425 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58444082ns 1027428 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58444537ns 1027436 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58444707ns 1027439 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58444992ns 1027444 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58445276ns 1027449 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58445560ns 1027454 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58446015ns 1027462 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58446185ns 1027465 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58446469ns 1027470 1a110850 fd5ff06f jal x0, -44 +58446753ns 1027475 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58447037ns 1027480 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58447435ns 1027487 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58447606ns 1027490 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58448060ns 1027498 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58448231ns 1027501 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58448515ns 1027506 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58448799ns 1027511 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58449083ns 1027516 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58449538ns 1027524 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58449709ns 1027527 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58449993ns 1027532 1a110850 fd5ff06f jal x0, -44 +58450277ns 1027537 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58450561ns 1027542 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58450959ns 1027549 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58451129ns 1027552 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58451584ns 1027560 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58451755ns 1027563 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58452039ns 1027568 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58452323ns 1027573 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58452607ns 1027578 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58453062ns 1027586 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58453232ns 1027589 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58453516ns 1027594 1a110850 fd5ff06f jal x0, -44 +58453800ns 1027599 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58454085ns 1027604 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58454482ns 1027611 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58454653ns 1027614 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58455108ns 1027622 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58455278ns 1027625 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58455562ns 1027630 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58455846ns 1027635 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58456131ns 1027640 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58456585ns 1027648 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58456756ns 1027651 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58457040ns 1027656 1a110850 fd5ff06f jal x0, -44 +58457324ns 1027661 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58457608ns 1027666 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58458006ns 1027673 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58458177ns 1027676 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58458631ns 1027684 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58458802ns 1027687 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58459086ns 1027692 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58459370ns 1027697 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58459654ns 1027702 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58460109ns 1027710 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58460279ns 1027713 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58460563ns 1027718 1a110850 fd5ff06f jal x0, -44 +58460848ns 1027723 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58461132ns 1027728 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58461530ns 1027735 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58461700ns 1027738 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58462155ns 1027746 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58462325ns 1027749 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58462609ns 1027754 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58462894ns 1027759 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58463178ns 1027764 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58463632ns 1027772 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58463803ns 1027775 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58464087ns 1027780 1a110850 fd5ff06f jal x0, -44 +58464371ns 1027785 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58464655ns 1027790 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58465053ns 1027797 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58465224ns 1027800 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58465678ns 1027808 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58465849ns 1027811 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58466133ns 1027816 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58466417ns 1027821 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58466701ns 1027826 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58467156ns 1027834 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58467327ns 1027837 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58467611ns 1027842 1a110850 fd5ff06f jal x0, -44 +58467895ns 1027847 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58468179ns 1027852 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58468577ns 1027859 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58468747ns 1027862 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58469202ns 1027870 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58469372ns 1027873 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58469657ns 1027878 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58469941ns 1027883 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58470225ns 1027888 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58470680ns 1027896 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58470850ns 1027899 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58471134ns 1027904 1a110850 fd5ff06f jal x0, -44 +58471418ns 1027909 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58471703ns 1027914 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58472100ns 1027921 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58472271ns 1027924 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58472726ns 1027932 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58472896ns 1027935 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58473180ns 1027940 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58473464ns 1027945 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58473749ns 1027950 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58474203ns 1027958 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58474374ns 1027961 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58474658ns 1027966 1a110850 fd5ff06f jal x0, -44 +58474942ns 1027971 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58475226ns 1027976 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58475624ns 1027983 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58475794ns 1027986 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58476249ns 1027994 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58476420ns 1027997 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58476704ns 1028002 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58476988ns 1028007 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58477272ns 1028012 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58477727ns 1028020 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58477897ns 1028023 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58478181ns 1028028 1a110850 fd5ff06f jal x0, -44 +58478466ns 1028033 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58478750ns 1028038 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58479148ns 1028045 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58479318ns 1028048 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58479773ns 1028056 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58479943ns 1028059 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58480227ns 1028064 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58480512ns 1028069 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58480796ns 1028074 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58481250ns 1028082 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58481421ns 1028085 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58481705ns 1028090 1a110850 fd5ff06f jal x0, -44 +58481989ns 1028095 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58482273ns 1028100 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58482671ns 1028107 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58482842ns 1028110 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58483296ns 1028118 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58483467ns 1028121 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58483751ns 1028126 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58484035ns 1028131 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58484319ns 1028136 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58484774ns 1028144 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58484944ns 1028147 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58485229ns 1028152 1a110850 fd5ff06f jal x0, -44 +58485513ns 1028157 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58485797ns 1028162 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58486195ns 1028169 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58486365ns 1028172 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58486820ns 1028180 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58486990ns 1028183 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58487275ns 1028188 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58487559ns 1028193 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58487843ns 1028198 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58488298ns 1028206 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58488468ns 1028209 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58488752ns 1028214 1a110850 fd5ff06f jal x0, -44 +58489036ns 1028219 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58489320ns 1028224 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58489718ns 1028231 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58489889ns 1028234 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58490343ns 1028242 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58490514ns 1028245 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58490798ns 1028250 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58491082ns 1028255 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58491366ns 1028260 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58491821ns 1028268 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58491992ns 1028271 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58492276ns 1028276 1a110850 fd5ff06f jal x0, -44 +58492560ns 1028281 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58492844ns 1028286 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58493242ns 1028293 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58493412ns 1028296 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58493867ns 1028304 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58494038ns 1028307 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58494322ns 1028312 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58494606ns 1028317 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58494890ns 1028322 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58495345ns 1028330 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58495515ns 1028333 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58495799ns 1028338 1a110850 fd5ff06f jal x0, -44 +58496083ns 1028343 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58496368ns 1028348 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58496765ns 1028355 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58496936ns 1028358 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58497391ns 1028366 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58497561ns 1028369 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58497845ns 1028374 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58498129ns 1028379 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58498414ns 1028384 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58498868ns 1028392 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58499039ns 1028395 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58499323ns 1028400 1a110850 fd5ff06f jal x0, -44 +58499607ns 1028405 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58499891ns 1028410 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58500289ns 1028417 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58500460ns 1028420 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58500914ns 1028428 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58501085ns 1028431 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58501369ns 1028436 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58501653ns 1028441 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58501937ns 1028446 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58502392ns 1028454 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58502562ns 1028457 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58502847ns 1028462 1a110850 fd5ff06f jal x0, -44 +58503131ns 1028467 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58503415ns 1028472 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58503813ns 1028479 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58503983ns 1028482 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58504438ns 1028490 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58504608ns 1028493 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58504892ns 1028498 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58505177ns 1028503 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58505461ns 1028508 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58505915ns 1028516 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58506086ns 1028519 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58506370ns 1028524 1a110850 fd5ff06f jal x0, -44 +58506654ns 1028529 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58506938ns 1028534 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58507336ns 1028541 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58507507ns 1028544 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58507961ns 1028552 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58508132ns 1028555 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58508416ns 1028560 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58508700ns 1028565 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58508984ns 1028570 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58509439ns 1028578 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58509610ns 1028581 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58509894ns 1028586 1a110850 fd5ff06f jal x0, -44 +58510178ns 1028591 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58510462ns 1028596 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58510860ns 1028603 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58511030ns 1028606 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58511485ns 1028614 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58511655ns 1028617 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58511940ns 1028622 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58512224ns 1028627 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58512508ns 1028632 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58512963ns 1028640 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58513133ns 1028643 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58513417ns 1028648 1a110850 fd5ff06f jal x0, -44 +58513701ns 1028653 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58513986ns 1028658 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58514383ns 1028665 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58514554ns 1028668 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58515009ns 1028676 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58515179ns 1028679 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58515463ns 1028684 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58515747ns 1028689 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58516032ns 1028694 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58516486ns 1028702 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58516657ns 1028705 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58516941ns 1028710 1a110850 fd5ff06f jal x0, -44 +58517225ns 1028715 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58517509ns 1028720 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58517907ns 1028727 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58518077ns 1028730 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58518532ns 1028738 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58518703ns 1028741 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58518987ns 1028746 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58519271ns 1028751 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58519555ns 1028756 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58520010ns 1028764 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58520180ns 1028767 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58520464ns 1028772 1a110850 fd5ff06f jal x0, -44 +58520749ns 1028777 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58521033ns 1028782 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58521431ns 1028789 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58521601ns 1028792 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58522056ns 1028800 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58522226ns 1028803 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58522510ns 1028808 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58522795ns 1028813 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58523079ns 1028818 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58523533ns 1028826 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58523704ns 1028829 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58523988ns 1028834 1a110850 fd5ff06f jal x0, -44 +58524272ns 1028839 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58524556ns 1028844 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58524954ns 1028851 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58525125ns 1028854 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58525579ns 1028862 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58525750ns 1028865 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58526034ns 1028870 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58526318ns 1028875 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58526602ns 1028880 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58527057ns 1028888 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58527227ns 1028891 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58527512ns 1028896 1a110850 fd5ff06f jal x0, -44 +58527796ns 1028901 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58528080ns 1028906 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58528478ns 1028913 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58528648ns 1028916 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58529103ns 1028924 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58529273ns 1028927 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58529558ns 1028932 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58529842ns 1028937 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58530126ns 1028942 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58530581ns 1028950 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58530751ns 1028953 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58531035ns 1028958 1a110850 fd5ff06f jal x0, -44 +58531319ns 1028963 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58531603ns 1028968 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58532001ns 1028975 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58532172ns 1028978 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58532626ns 1028986 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58532797ns 1028989 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58533081ns 1028994 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58533365ns 1028999 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58533649ns 1029004 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58534104ns 1029012 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58534275ns 1029015 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58534559ns 1029020 1a110850 fd5ff06f jal x0, -44 +58534843ns 1029025 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58535127ns 1029030 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58535525ns 1029037 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58535695ns 1029040 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58536150ns 1029048 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58536321ns 1029051 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58536605ns 1029056 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58536889ns 1029061 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58537173ns 1029066 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58537628ns 1029074 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58537798ns 1029077 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58538082ns 1029082 1a110850 fd5ff06f jal x0, -44 +58538367ns 1029087 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58538651ns 1029092 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58539048ns 1029099 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58539219ns 1029102 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58539674ns 1029110 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58539844ns 1029113 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58540128ns 1029118 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58540412ns 1029123 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58540697ns 1029128 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58541151ns 1029136 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58541322ns 1029139 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58541606ns 1029144 1a110850 fd5ff06f jal x0, -44 +58541890ns 1029149 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58542174ns 1029154 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58542572ns 1029161 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58542743ns 1029164 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58543197ns 1029172 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58543368ns 1029175 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58543652ns 1029180 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58543936ns 1029185 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58544220ns 1029190 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58544675ns 1029198 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58544845ns 1029201 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58545130ns 1029206 1a110850 fd5ff06f jal x0, -44 +58545414ns 1029211 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58545698ns 1029216 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58546096ns 1029223 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58546266ns 1029226 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58546721ns 1029234 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58546891ns 1029237 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58547175ns 1029242 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58547460ns 1029247 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58547744ns 1029252 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58548198ns 1029260 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58548369ns 1029263 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58548653ns 1029268 1a110850 fd5ff06f jal x0, -44 +58548937ns 1029273 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58549221ns 1029278 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58549619ns 1029285 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58549790ns 1029288 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58550244ns 1029296 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58550415ns 1029299 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58550699ns 1029304 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58550983ns 1029309 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58551267ns 1029314 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58551722ns 1029322 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58551893ns 1029325 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58552177ns 1029330 1a110850 fd5ff06f jal x0, -44 +58552461ns 1029335 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58552745ns 1029340 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58553143ns 1029347 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58553313ns 1029350 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58553768ns 1029358 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58553938ns 1029361 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58554223ns 1029366 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58554507ns 1029371 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58554791ns 1029376 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58555246ns 1029384 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58555416ns 1029387 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58555700ns 1029392 1a110850 fd5ff06f jal x0, -44 +58555984ns 1029397 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58556269ns 1029402 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58556666ns 1029409 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58556837ns 1029412 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58557292ns 1029420 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58557462ns 1029423 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58557746ns 1029428 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58558030ns 1029433 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58558315ns 1029438 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58558769ns 1029446 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58558940ns 1029449 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58559224ns 1029454 1a110850 fd5ff06f jal x0, -44 +58559508ns 1029459 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58559792ns 1029464 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58560190ns 1029471 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58560360ns 1029474 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58560815ns 1029482 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58560986ns 1029485 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58561270ns 1029490 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58561554ns 1029495 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58561838ns 1029500 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58562293ns 1029508 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58562463ns 1029511 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58562747ns 1029516 1a110850 fd5ff06f jal x0, -44 +58563032ns 1029521 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58563316ns 1029526 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58563714ns 1029533 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58563884ns 1029536 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58564339ns 1029544 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58564509ns 1029547 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58564793ns 1029552 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58565078ns 1029557 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58565362ns 1029562 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58565816ns 1029570 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58565987ns 1029573 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58566271ns 1029578 1a110850 fd5ff06f jal x0, -44 +58566555ns 1029583 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58566839ns 1029588 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58567237ns 1029595 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58567408ns 1029598 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58567862ns 1029606 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58568033ns 1029609 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58568317ns 1029614 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58568601ns 1029619 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58568885ns 1029624 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58569340ns 1029632 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58569510ns 1029635 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58569795ns 1029640 1a110850 fd5ff06f jal x0, -44 +58570079ns 1029645 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58570363ns 1029650 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58570761ns 1029657 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58570931ns 1029660 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58571386ns 1029668 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58571556ns 1029671 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58571841ns 1029676 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58572125ns 1029681 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58572409ns 1029686 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58572864ns 1029694 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58573034ns 1029697 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58573318ns 1029702 1a110850 fd5ff06f jal x0, -44 +58573602ns 1029707 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58573887ns 1029712 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58574284ns 1029719 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58574455ns 1029722 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58574909ns 1029730 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58575080ns 1029733 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58575364ns 1029738 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58575648ns 1029743 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58575932ns 1029748 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58576387ns 1029756 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58576558ns 1029759 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58576842ns 1029764 1a110850 fd5ff06f jal x0, -44 +58577126ns 1029769 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58577410ns 1029774 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58577808ns 1029781 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58577978ns 1029784 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58578433ns 1029792 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58578604ns 1029795 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58578888ns 1029800 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58579172ns 1029805 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58579456ns 1029810 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58579911ns 1029818 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58580081ns 1029821 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58580365ns 1029826 1a110850 fd5ff06f jal x0, -44 +58580650ns 1029831 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58580934ns 1029836 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58581331ns 1029843 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58581502ns 1029846 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58581957ns 1029854 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58582127ns 1029857 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58582411ns 1029862 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58582695ns 1029867 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58582980ns 1029872 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58583434ns 1029880 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58583605ns 1029883 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58583889ns 1029888 1a110850 fd5ff06f jal x0, -44 +58584173ns 1029893 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58584457ns 1029898 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58584855ns 1029905 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58585026ns 1029908 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58585480ns 1029916 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58585651ns 1029919 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58585935ns 1029924 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58586219ns 1029929 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58586503ns 1029934 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58586958ns 1029942 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58587128ns 1029945 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58587413ns 1029950 1a110850 fd5ff06f jal x0, -44 +58587697ns 1029955 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58587981ns 1029960 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58588379ns 1029967 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58588549ns 1029970 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58589004ns 1029978 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58589174ns 1029981 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58589458ns 1029986 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58589743ns 1029991 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58590027ns 1029996 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58590481ns 1030004 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58590652ns 1030007 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58590936ns 1030012 1a110850 fd5ff06f jal x0, -44 +58591220ns 1030017 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58591504ns 1030022 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58591902ns 1030029 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58592073ns 1030032 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58592527ns 1030040 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58592698ns 1030043 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58592982ns 1030048 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58593266ns 1030053 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58593550ns 1030058 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58594005ns 1030066 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58594176ns 1030069 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58594460ns 1030074 1a110850 fd5ff06f jal x0, -44 +58594744ns 1030079 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58595028ns 1030084 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58595426ns 1030091 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58595596ns 1030094 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58596051ns 1030102 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58596221ns 1030105 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58596506ns 1030110 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58596790ns 1030115 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58597074ns 1030120 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58597529ns 1030128 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58597699ns 1030131 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58597983ns 1030136 1a110850 fd5ff06f jal x0, -44 +58598267ns 1030141 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58598552ns 1030146 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58598949ns 1030153 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58599120ns 1030156 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58599575ns 1030164 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58599745ns 1030167 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58600029ns 1030172 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58600313ns 1030177 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58600598ns 1030182 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58601052ns 1030190 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58601223ns 1030193 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58601507ns 1030198 1a110850 fd5ff06f jal x0, -44 +58601791ns 1030203 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58602075ns 1030208 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58602473ns 1030215 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58602643ns 1030218 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58603098ns 1030226 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58603269ns 1030229 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58603553ns 1030234 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58603837ns 1030239 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58604121ns 1030244 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58604576ns 1030252 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58604746ns 1030255 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58605030ns 1030260 1a110850 fd5ff06f jal x0, -44 +58605315ns 1030265 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58605599ns 1030270 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58605997ns 1030277 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58606167ns 1030280 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58606622ns 1030288 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58606792ns 1030291 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58607076ns 1030296 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58607361ns 1030301 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58607645ns 1030306 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58608099ns 1030314 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58608270ns 1030317 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58608554ns 1030322 1a110850 fd5ff06f jal x0, -44 +58608838ns 1030327 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58609122ns 1030332 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58609520ns 1030339 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58609691ns 1030342 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58610145ns 1030350 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58610316ns 1030353 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58610600ns 1030358 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58610884ns 1030363 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58611168ns 1030368 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58611623ns 1030376 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58611793ns 1030379 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58612078ns 1030384 1a110850 fd5ff06f jal x0, -44 +58612362ns 1030389 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58612646ns 1030394 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58613044ns 1030401 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58613214ns 1030404 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58613669ns 1030412 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58613839ns 1030415 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58614124ns 1030420 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58614408ns 1030425 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58614692ns 1030430 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58615147ns 1030438 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58615317ns 1030441 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58615601ns 1030446 1a110850 fd5ff06f jal x0, -44 +58615885ns 1030451 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58616170ns 1030456 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58616567ns 1030463 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58616738ns 1030466 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58617192ns 1030474 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58617363ns 1030477 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58617647ns 1030482 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58617931ns 1030487 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58618215ns 1030492 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58618670ns 1030500 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58618841ns 1030503 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58619125ns 1030508 1a110850 fd5ff06f jal x0, -44 +58619409ns 1030513 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58619693ns 1030518 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58620091ns 1030525 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58620261ns 1030528 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58620716ns 1030536 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58620887ns 1030539 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58621171ns 1030544 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58621455ns 1030549 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58621739ns 1030554 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58622194ns 1030562 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58622364ns 1030565 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58622648ns 1030570 1a110850 fd5ff06f jal x0, -44 +58622933ns 1030575 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58623217ns 1030580 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58623615ns 1030587 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58623785ns 1030590 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58624240ns 1030598 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58624410ns 1030601 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58624694ns 1030606 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58624978ns 1030611 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58625263ns 1030616 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58625717ns 1030624 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58625888ns 1030627 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58626172ns 1030632 1a110850 fd5ff06f jal x0, -44 +58626456ns 1030637 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58626740ns 1030642 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58627138ns 1030649 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58627309ns 1030652 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58627763ns 1030660 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58627934ns 1030663 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58628218ns 1030668 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58628502ns 1030673 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58628786ns 1030678 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58629241ns 1030686 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58629411ns 1030689 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58629696ns 1030694 1a110850 fd5ff06f jal x0, -44 +58629980ns 1030699 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58630264ns 1030704 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58630662ns 1030711 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58630832ns 1030714 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58631287ns 1030722 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58631457ns 1030725 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58631741ns 1030730 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58632026ns 1030735 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58632310ns 1030740 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58632764ns 1030748 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58632935ns 1030751 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58633219ns 1030756 1a110850 fd5ff06f jal x0, -44 +58633503ns 1030761 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58633787ns 1030766 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58634185ns 1030773 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58634356ns 1030776 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58634810ns 1030784 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58634981ns 1030787 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58635265ns 1030792 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58635549ns 1030797 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58635833ns 1030802 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58636288ns 1030810 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58636459ns 1030813 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58636743ns 1030818 1a110850 fd5ff06f jal x0, -44 +58637027ns 1030823 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58637311ns 1030828 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58637709ns 1030835 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58637879ns 1030838 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58638334ns 1030846 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58638504ns 1030849 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58638789ns 1030854 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58639073ns 1030859 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58639357ns 1030864 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58639812ns 1030872 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58639982ns 1030875 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58640266ns 1030880 1a110850 fd5ff06f jal x0, -44 +58640550ns 1030885 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58640835ns 1030890 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58641232ns 1030897 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58641403ns 1030900 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58641858ns 1030908 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58642028ns 1030911 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58642312ns 1030916 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58642596ns 1030921 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58642881ns 1030926 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58643335ns 1030934 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58643506ns 1030937 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58643790ns 1030942 1a110850 fd5ff06f jal x0, -44 +58644074ns 1030947 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58644358ns 1030952 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58644756ns 1030959 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58644927ns 1030962 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58645381ns 1030970 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58645552ns 1030973 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58645836ns 1030978 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58646120ns 1030983 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58646404ns 1030988 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58646859ns 1030996 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58647029ns 1030999 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58647313ns 1031004 1a110850 fd5ff06f jal x0, -44 +58647598ns 1031009 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58647882ns 1031014 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58648280ns 1031021 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58648450ns 1031024 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58648905ns 1031032 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58649075ns 1031035 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58649359ns 1031040 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58649644ns 1031045 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58649928ns 1031050 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58650382ns 1031058 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58650553ns 1031061 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58650837ns 1031066 1a110850 fd5ff06f jal x0, -44 +58651121ns 1031071 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58651405ns 1031076 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58651803ns 1031083 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58651974ns 1031086 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58652428ns 1031094 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58652599ns 1031097 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58652883ns 1031102 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58653167ns 1031107 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58653451ns 1031112 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58653906ns 1031120 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58654076ns 1031123 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58654361ns 1031128 1a110850 fd5ff06f jal x0, -44 +58654645ns 1031133 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58654929ns 1031138 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58655327ns 1031145 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58655497ns 1031148 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58655952ns 1031156 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58656122ns 1031159 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58656407ns 1031164 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58656691ns 1031169 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58656975ns 1031174 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58657430ns 1031182 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58657600ns 1031185 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58657884ns 1031190 1a110850 fd5ff06f jal x0, -44 +58658168ns 1031195 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58658453ns 1031200 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58658850ns 1031207 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58659021ns 1031210 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58659475ns 1031218 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58659646ns 1031221 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58659930ns 1031226 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58660214ns 1031231 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58660498ns 1031236 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58660953ns 1031244 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58661124ns 1031247 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58661408ns 1031252 1a110850 fd5ff06f jal x0, -44 +58661692ns 1031257 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58661976ns 1031262 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58662374ns 1031269 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58662544ns 1031272 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58662999ns 1031280 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58663170ns 1031283 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58663454ns 1031288 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58663738ns 1031293 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58664022ns 1031298 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58664477ns 1031306 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58664647ns 1031309 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58664931ns 1031314 1a110850 fd5ff06f jal x0, -44 +58665216ns 1031319 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58665500ns 1031324 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58665898ns 1031331 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58666068ns 1031334 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58666523ns 1031342 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58666693ns 1031345 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58666977ns 1031350 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58667261ns 1031355 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58667546ns 1031360 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58668000ns 1031368 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58668171ns 1031371 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58668455ns 1031376 1a110850 fd5ff06f jal x0, -44 +58668739ns 1031381 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58669023ns 1031386 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58669421ns 1031393 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58669592ns 1031396 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58670046ns 1031404 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58670217ns 1031407 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58670501ns 1031412 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58670785ns 1031417 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58671069ns 1031422 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58671524ns 1031430 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58671694ns 1031433 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58671979ns 1031438 1a110850 fd5ff06f jal x0, -44 +58672263ns 1031443 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58672547ns 1031448 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58672945ns 1031455 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58673115ns 1031458 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58673570ns 1031466 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58673740ns 1031469 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58674024ns 1031474 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58674309ns 1031479 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58674593ns 1031484 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58675047ns 1031492 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58675218ns 1031495 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58675502ns 1031500 1a110850 fd5ff06f jal x0, -44 +58675786ns 1031505 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58676070ns 1031510 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58676468ns 1031517 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58676639ns 1031520 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58677093ns 1031528 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58677264ns 1031531 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58677548ns 1031536 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58677832ns 1031541 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58678116ns 1031546 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58678571ns 1031554 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58678742ns 1031557 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58679026ns 1031562 1a110850 fd5ff06f jal x0, -44 +58679310ns 1031567 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58679594ns 1031572 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58679992ns 1031579 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58680162ns 1031582 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58680617ns 1031590 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58680787ns 1031593 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58681072ns 1031598 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58681356ns 1031603 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58681640ns 1031608 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58682095ns 1031616 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58682265ns 1031619 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58682549ns 1031624 1a110850 fd5ff06f jal x0, -44 +58682833ns 1031629 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58683118ns 1031634 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58683515ns 1031641 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58683686ns 1031644 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58684141ns 1031652 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58684311ns 1031655 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58684595ns 1031660 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58684879ns 1031665 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58685164ns 1031670 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58685618ns 1031678 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58685789ns 1031681 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58686073ns 1031686 1a110850 fd5ff06f jal x0, -44 +58686357ns 1031691 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58686641ns 1031696 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58687039ns 1031703 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58687210ns 1031706 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58687664ns 1031714 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58687835ns 1031717 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58688119ns 1031722 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58688403ns 1031727 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58688687ns 1031732 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58689142ns 1031740 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58689312ns 1031743 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58689596ns 1031748 1a110850 fd5ff06f jal x0, -44 +58689881ns 1031753 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58690165ns 1031758 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58690563ns 1031765 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58690733ns 1031768 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58691188ns 1031776 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58691358ns 1031779 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58691642ns 1031784 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58691927ns 1031789 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58692211ns 1031794 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58692665ns 1031802 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58692836ns 1031805 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58693120ns 1031810 1a110850 fd5ff06f jal x0, -44 +58693404ns 1031815 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58693688ns 1031820 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58694086ns 1031827 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58694257ns 1031830 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58694711ns 1031838 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58694882ns 1031841 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58695166ns 1031846 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58695450ns 1031851 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58695734ns 1031856 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58696189ns 1031864 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58696359ns 1031867 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58696644ns 1031872 1a110850 fd5ff06f jal x0, -44 +58696928ns 1031877 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58697212ns 1031882 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58697610ns 1031889 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58697780ns 1031892 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58698235ns 1031900 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58698405ns 1031903 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58698690ns 1031908 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58698974ns 1031913 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58699258ns 1031918 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58699713ns 1031926 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58699883ns 1031929 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58700167ns 1031934 1a110850 fd5ff06f jal x0, -44 +58700451ns 1031939 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58700736ns 1031944 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58701133ns 1031951 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58701304ns 1031954 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58701759ns 1031962 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58701929ns 1031965 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58702213ns 1031970 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58702497ns 1031975 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58702781ns 1031980 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58703236ns 1031988 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58703407ns 1031991 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58703691ns 1031996 1a110850 fd5ff06f jal x0, -44 +58703975ns 1032001 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58704259ns 1032006 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58704657ns 1032013 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58704827ns 1032016 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58705282ns 1032024 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58705453ns 1032027 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58705737ns 1032032 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58706021ns 1032037 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58706305ns 1032042 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58706760ns 1032050 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58706930ns 1032053 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58707214ns 1032058 1a110850 fd5ff06f jal x0, -44 +58707499ns 1032063 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58707783ns 1032068 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58708181ns 1032075 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58708351ns 1032078 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58708806ns 1032086 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58708976ns 1032089 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58709260ns 1032094 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58709544ns 1032099 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58709829ns 1032104 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58710283ns 1032112 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58710454ns 1032115 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58710738ns 1032120 1a110850 fd5ff06f jal x0, -44 +58711022ns 1032125 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58711306ns 1032130 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58711704ns 1032137 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58711875ns 1032140 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58712329ns 1032148 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58712500ns 1032151 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58712784ns 1032156 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58713068ns 1032161 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58713352ns 1032166 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58713807ns 1032174 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58713977ns 1032177 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58714262ns 1032182 1a110850 fd5ff06f jal x0, -44 +58714546ns 1032187 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58714830ns 1032192 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58715228ns 1032199 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58715398ns 1032202 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58715853ns 1032210 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58716023ns 1032213 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58716307ns 1032218 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58716592ns 1032223 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58716876ns 1032228 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58717330ns 1032236 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58717501ns 1032239 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58717785ns 1032244 1a110850 fd5ff06f jal x0, -44 +58718069ns 1032249 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58718353ns 1032254 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58718751ns 1032261 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58718922ns 1032264 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58719376ns 1032272 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58719547ns 1032275 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58719831ns 1032280 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58720115ns 1032285 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58720399ns 1032290 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58720854ns 1032298 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58721025ns 1032301 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58721309ns 1032306 1a110850 fd5ff06f jal x0, -44 +58721593ns 1032311 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58721877ns 1032316 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58722275ns 1032323 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58722445ns 1032326 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58722900ns 1032334 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58723071ns 1032337 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58723355ns 1032342 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58723639ns 1032347 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58723923ns 1032352 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58724378ns 1032360 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58724548ns 1032363 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58724832ns 1032368 1a110850 fd5ff06f jal x0, -44 +58725116ns 1032373 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58725401ns 1032378 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58725798ns 1032385 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58725969ns 1032388 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58726424ns 1032396 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58726594ns 1032399 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58726878ns 1032404 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58727162ns 1032409 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58727447ns 1032414 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58727901ns 1032422 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58728072ns 1032425 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58728356ns 1032430 1a110850 fd5ff06f jal x0, -44 +58728640ns 1032435 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58728924ns 1032440 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58729322ns 1032447 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58729493ns 1032450 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58729947ns 1032458 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58730118ns 1032461 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58730402ns 1032466 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58730686ns 1032471 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58730970ns 1032476 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58731425ns 1032484 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58731595ns 1032487 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58731879ns 1032492 1a110850 fd5ff06f jal x0, -44 +58732164ns 1032497 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58732448ns 1032502 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58732846ns 1032509 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58733016ns 1032512 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58733471ns 1032520 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58733641ns 1032523 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58733925ns 1032528 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58734210ns 1032533 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58734494ns 1032538 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58734948ns 1032546 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58735119ns 1032549 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58735403ns 1032554 1a110850 fd5ff06f jal x0, -44 +58735687ns 1032559 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58735971ns 1032564 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58736369ns 1032571 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58736540ns 1032574 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58736994ns 1032582 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58737165ns 1032585 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58737449ns 1032590 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58737733ns 1032595 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58738017ns 1032600 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58738472ns 1032608 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58738642ns 1032611 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58738927ns 1032616 1a110850 fd5ff06f jal x0, -44 +58739211ns 1032621 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58739495ns 1032626 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58739893ns 1032633 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58740063ns 1032636 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58740518ns 1032644 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58740688ns 1032647 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58740973ns 1032652 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58741257ns 1032657 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58741541ns 1032662 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58741996ns 1032670 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58742166ns 1032673 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58742450ns 1032678 1a110850 fd5ff06f jal x0, -44 +58742734ns 1032683 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58743019ns 1032688 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58743416ns 1032695 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58743587ns 1032698 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58744042ns 1032706 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58744212ns 1032709 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58744496ns 1032714 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58744780ns 1032719 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58745064ns 1032724 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58745519ns 1032732 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58745690ns 1032735 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58745974ns 1032740 1a110850 fd5ff06f jal x0, -44 +58746258ns 1032745 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58746542ns 1032750 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58746940ns 1032757 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58747110ns 1032760 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58747565ns 1032768 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58747736ns 1032771 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58748020ns 1032776 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58748304ns 1032781 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58748588ns 1032786 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58749043ns 1032794 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58749213ns 1032797 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58749497ns 1032802 1a110850 fd5ff06f jal x0, -44 +58749782ns 1032807 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58750066ns 1032812 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58750464ns 1032819 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58750634ns 1032822 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58751089ns 1032830 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58751259ns 1032833 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58751543ns 1032838 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58751827ns 1032843 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58752112ns 1032848 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58752566ns 1032856 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58752737ns 1032859 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58753021ns 1032864 1a110850 fd5ff06f jal x0, -44 +58753305ns 1032869 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58753589ns 1032874 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58753987ns 1032881 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58754158ns 1032884 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58754612ns 1032892 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58754783ns 1032895 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58755067ns 1032900 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58755351ns 1032905 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58755635ns 1032910 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58756090ns 1032918 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58756260ns 1032921 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58756545ns 1032926 1a110850 fd5ff06f jal x0, -44 +58756829ns 1032931 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58757113ns 1032936 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58757511ns 1032943 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58757681ns 1032946 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58758136ns 1032954 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58758306ns 1032957 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58758591ns 1032962 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58758875ns 1032967 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58759159ns 1032972 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58759613ns 1032980 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58759784ns 1032983 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58760068ns 1032988 1a110850 fd5ff06f jal x0, -44 +58760352ns 1032993 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58760636ns 1032998 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58761034ns 1033005 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58761205ns 1033008 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58761659ns 1033016 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58761830ns 1033019 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58762114ns 1033024 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58762398ns 1033029 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58762682ns 1033034 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58763137ns 1033042 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58763308ns 1033045 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58763592ns 1033050 1a110850 fd5ff06f jal x0, -44 +58763876ns 1033055 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58764160ns 1033060 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58764558ns 1033067 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58764728ns 1033070 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58765183ns 1033078 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58765354ns 1033081 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58765638ns 1033086 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58765922ns 1033091 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58766206ns 1033096 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58766661ns 1033104 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58766831ns 1033107 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58767115ns 1033112 1a110850 fd5ff06f jal x0, -44 +58767399ns 1033117 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58767684ns 1033122 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58768081ns 1033129 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58768252ns 1033132 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58768707ns 1033140 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58768877ns 1033143 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58769161ns 1033148 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58769445ns 1033153 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58769730ns 1033158 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58770184ns 1033166 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58770355ns 1033169 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58770639ns 1033174 1a110850 fd5ff06f jal x0, -44 +58770923ns 1033179 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58771207ns 1033184 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58771605ns 1033191 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58771776ns 1033194 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58772230ns 1033202 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58772401ns 1033205 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58772685ns 1033210 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58772969ns 1033215 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58773253ns 1033220 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58773708ns 1033228 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58773878ns 1033231 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58774162ns 1033236 1a110850 fd5ff06f jal x0, -44 +58774447ns 1033241 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58774731ns 1033246 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58775129ns 1033253 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58775299ns 1033256 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58775754ns 1033264 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58775924ns 1033267 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58776208ns 1033272 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58776493ns 1033277 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58776777ns 1033282 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58777231ns 1033290 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58777402ns 1033293 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58777686ns 1033298 1a110850 fd5ff06f jal x0, -44 +58777970ns 1033303 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58778254ns 1033308 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58778652ns 1033315 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58778823ns 1033318 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58779277ns 1033326 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58779448ns 1033329 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58779732ns 1033334 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58780016ns 1033339 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58780300ns 1033344 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58780755ns 1033352 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58780925ns 1033355 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58781210ns 1033360 1a110850 fd5ff06f jal x0, -44 +58781494ns 1033365 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58781778ns 1033370 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58782176ns 1033377 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58782346ns 1033380 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58782801ns 1033388 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58782971ns 1033391 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58783256ns 1033396 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58783540ns 1033401 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58783824ns 1033406 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58784279ns 1033414 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58784449ns 1033417 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58784733ns 1033422 1a110850 fd5ff06f jal x0, -44 +58785017ns 1033427 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58785302ns 1033432 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58785699ns 1033439 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58785870ns 1033442 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58786325ns 1033450 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58786495ns 1033453 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58786779ns 1033458 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58787063ns 1033463 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58787347ns 1033468 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58787802ns 1033476 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58787973ns 1033479 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58788257ns 1033484 1a110850 fd5ff06f jal x0, -44 +58788541ns 1033489 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58788825ns 1033494 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58789223ns 1033501 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58789393ns 1033504 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58789848ns 1033512 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58790019ns 1033515 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58790303ns 1033520 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58790587ns 1033525 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58790871ns 1033530 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58791326ns 1033538 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58791496ns 1033541 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58791780ns 1033546 1a110850 fd5ff06f jal x0, -44 +58792065ns 1033551 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58792349ns 1033556 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58792747ns 1033563 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58792917ns 1033566 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58793372ns 1033574 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58793542ns 1033577 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58793826ns 1033582 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58794111ns 1033587 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58794395ns 1033592 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58794849ns 1033600 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58795020ns 1033603 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58795304ns 1033608 1a110850 fd5ff06f jal x0, -44 +58795588ns 1033613 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58795872ns 1033618 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58796270ns 1033625 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58796441ns 1033628 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58796895ns 1033636 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58797066ns 1033639 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58797350ns 1033644 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58797634ns 1033649 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58797918ns 1033654 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58798373ns 1033662 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58798543ns 1033665 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58798828ns 1033670 1a110850 fd5ff06f jal x0, -44 +58799112ns 1033675 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58799396ns 1033680 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58799794ns 1033687 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58799964ns 1033690 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58800419ns 1033698 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58800589ns 1033701 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58800874ns 1033706 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58801158ns 1033711 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58801442ns 1033716 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58801896ns 1033724 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58802067ns 1033727 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58802351ns 1033732 1a110850 fd5ff06f jal x0, -44 +58802635ns 1033737 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58802919ns 1033742 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58803317ns 1033749 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58803488ns 1033752 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58803942ns 1033760 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58804113ns 1033763 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58804397ns 1033768 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58804681ns 1033773 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58804965ns 1033778 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58805420ns 1033786 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58805591ns 1033789 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58805875ns 1033794 1a110850 fd5ff06f jal x0, -44 +58806159ns 1033799 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58806443ns 1033804 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58806841ns 1033811 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58807011ns 1033814 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58807466ns 1033822 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58807637ns 1033825 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58807921ns 1033830 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58808205ns 1033835 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58808489ns 1033840 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58808944ns 1033848 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58809114ns 1033851 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58809398ns 1033856 1a110850 fd5ff06f jal x0, -44 +58809682ns 1033861 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58809967ns 1033866 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58810364ns 1033873 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58810535ns 1033876 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58810990ns 1033884 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58811160ns 1033887 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58811444ns 1033892 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58811728ns 1033897 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58812013ns 1033902 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58812467ns 1033910 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58812638ns 1033913 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58812922ns 1033918 1a110850 fd5ff06f jal x0, -44 +58813206ns 1033923 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58813490ns 1033928 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58813888ns 1033935 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58814059ns 1033938 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58814513ns 1033946 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58814684ns 1033949 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58814968ns 1033954 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58815252ns 1033959 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58815536ns 1033964 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58815991ns 1033972 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58816161ns 1033975 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58816445ns 1033980 1a110850 fd5ff06f jal x0, -44 +58816730ns 1033985 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58817014ns 1033990 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58817412ns 1033997 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58817582ns 1034000 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58818037ns 1034008 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58818207ns 1034011 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58818491ns 1034016 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58818776ns 1034021 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58819060ns 1034026 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58819514ns 1034034 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58819685ns 1034037 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58819969ns 1034042 1a110850 fd5ff06f jal x0, -44 +58820253ns 1034047 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58820537ns 1034052 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58820935ns 1034059 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58821106ns 1034062 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58821560ns 1034070 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58821731ns 1034073 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58822015ns 1034078 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58822299ns 1034083 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58822583ns 1034088 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58823038ns 1034096 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58823208ns 1034099 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58823493ns 1034104 1a110850 fd5ff06f jal x0, -44 +58823777ns 1034109 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58824061ns 1034114 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58824459ns 1034121 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58824629ns 1034124 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58825084ns 1034132 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58825254ns 1034135 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58825539ns 1034140 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58825823ns 1034145 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58826107ns 1034150 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58826562ns 1034158 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58826732ns 1034161 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58827016ns 1034166 1a110850 fd5ff06f jal x0, -44 +58827300ns 1034171 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58827585ns 1034176 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58827982ns 1034183 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58828153ns 1034186 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58828608ns 1034194 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58828778ns 1034197 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58829062ns 1034202 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58829346ns 1034207 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58829631ns 1034212 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58830085ns 1034220 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58830256ns 1034223 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58830540ns 1034228 1a110850 fd5ff06f jal x0, -44 +58830824ns 1034233 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58831108ns 1034238 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58831506ns 1034245 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58831676ns 1034248 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58832131ns 1034256 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58832302ns 1034259 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58832586ns 1034264 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58832870ns 1034269 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58833154ns 1034274 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58833609ns 1034282 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58833779ns 1034285 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58834063ns 1034290 1a110850 fd5ff06f jal x0, -44 +58834348ns 1034295 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58834632ns 1034300 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58835030ns 1034307 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58835200ns 1034310 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58835655ns 1034318 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58835825ns 1034321 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58836109ns 1034326 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58836394ns 1034331 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58836678ns 1034336 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58837132ns 1034344 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58837303ns 1034347 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58837587ns 1034352 1a110850 fd5ff06f jal x0, -44 +58837871ns 1034357 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58838155ns 1034362 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58838553ns 1034369 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58838724ns 1034372 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58839178ns 1034380 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58839349ns 1034383 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58839633ns 1034388 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58839917ns 1034393 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58840201ns 1034398 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58840656ns 1034406 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58840826ns 1034409 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58841111ns 1034414 1a110850 fd5ff06f jal x0, -44 +58841395ns 1034419 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58841679ns 1034424 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58842077ns 1034431 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58842247ns 1034434 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58842702ns 1034442 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58842872ns 1034445 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58843157ns 1034450 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58843441ns 1034455 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58843725ns 1034460 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58844179ns 1034468 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58844350ns 1034471 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58844634ns 1034476 1a110850 fd5ff06f jal x0, -44 +58844918ns 1034481 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58845202ns 1034486 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58845600ns 1034493 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58845771ns 1034496 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58846225ns 1034504 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58846396ns 1034507 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58846680ns 1034512 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58846964ns 1034517 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58847248ns 1034522 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58847703ns 1034530 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58847874ns 1034533 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58848158ns 1034538 1a110850 fd5ff06f jal x0, -44 +58848442ns 1034543 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58848726ns 1034548 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58849124ns 1034555 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58849294ns 1034558 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58849749ns 1034566 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58849920ns 1034569 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58850204ns 1034574 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58850488ns 1034579 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58850772ns 1034584 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58851227ns 1034592 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58851397ns 1034595 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58851681ns 1034600 1a110850 fd5ff06f jal x0, -44 +58851965ns 1034605 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58852250ns 1034610 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58852647ns 1034617 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58852818ns 1034620 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58853273ns 1034628 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58853443ns 1034631 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58853727ns 1034636 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58854011ns 1034641 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58854296ns 1034646 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58854750ns 1034654 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58854921ns 1034657 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58855205ns 1034662 1a110850 fd5ff06f jal x0, -44 +58855489ns 1034667 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58855773ns 1034672 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58856171ns 1034679 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58856342ns 1034682 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58856796ns 1034690 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58856967ns 1034693 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58857251ns 1034698 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58857535ns 1034703 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58857819ns 1034708 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58858274ns 1034716 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58858444ns 1034719 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58858728ns 1034724 1a110850 fd5ff06f jal x0, -44 +58859013ns 1034729 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58859297ns 1034734 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58859695ns 1034741 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58859865ns 1034744 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58860320ns 1034752 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58860490ns 1034755 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58860774ns 1034760 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58861059ns 1034765 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58861343ns 1034770 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58861797ns 1034778 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58861968ns 1034781 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58862252ns 1034786 1a110850 fd5ff06f jal x0, -44 +58862536ns 1034791 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58862820ns 1034796 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58863218ns 1034803 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58863389ns 1034806 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58863843ns 1034814 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58864014ns 1034817 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58864298ns 1034822 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58864582ns 1034827 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58864866ns 1034832 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58865321ns 1034840 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58865491ns 1034843 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58865776ns 1034848 1a110850 fd5ff06f jal x0, -44 +58866060ns 1034853 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58866344ns 1034858 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58866742ns 1034865 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58866912ns 1034868 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58867367ns 1034876 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58867537ns 1034879 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58867822ns 1034884 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58868106ns 1034889 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58868390ns 1034894 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58868845ns 1034902 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58869015ns 1034905 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58869299ns 1034910 1a110850 fd5ff06f jal x0, -44 +58869583ns 1034915 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58869868ns 1034920 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58870265ns 1034927 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58870436ns 1034930 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58870891ns 1034938 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58871061ns 1034941 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58871345ns 1034946 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58871629ns 1034951 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58871914ns 1034956 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58872368ns 1034964 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58872539ns 1034967 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58872823ns 1034972 1a110850 fd5ff06f jal x0, -44 +58873107ns 1034977 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58873391ns 1034982 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58873789ns 1034989 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58873959ns 1034992 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58874414ns 1035000 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58874585ns 1035003 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58874869ns 1035008 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58875153ns 1035013 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58875437ns 1035018 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58875892ns 1035026 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58876062ns 1035029 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58876346ns 1035034 1a110850 fd5ff06f jal x0, -44 +58876631ns 1035039 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58876915ns 1035044 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58877313ns 1035051 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58877483ns 1035054 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58877938ns 1035062 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58878108ns 1035065 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58878392ns 1035070 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58878677ns 1035075 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58878961ns 1035080 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58879415ns 1035088 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58879586ns 1035091 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58879870ns 1035096 1a110850 fd5ff06f jal x0, -44 +58880154ns 1035101 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58880438ns 1035106 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58880836ns 1035113 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58881007ns 1035116 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58881461ns 1035124 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58881632ns 1035127 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58881916ns 1035132 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58882200ns 1035137 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58882484ns 1035142 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58882939ns 1035150 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58883109ns 1035153 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58883394ns 1035158 1a110850 fd5ff06f jal x0, -44 +58883678ns 1035163 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58883962ns 1035168 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58884360ns 1035175 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58884530ns 1035178 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58884985ns 1035186 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58885155ns 1035189 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58885440ns 1035194 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58885724ns 1035199 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58886008ns 1035204 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58886463ns 1035212 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58886633ns 1035215 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58886917ns 1035220 1a110850 fd5ff06f jal x0, -44 +58887201ns 1035225 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58887485ns 1035230 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58887883ns 1035237 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58888054ns 1035240 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58888508ns 1035248 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58888679ns 1035251 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58888963ns 1035256 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58889247ns 1035261 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58889531ns 1035266 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58889986ns 1035274 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58890157ns 1035277 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58890441ns 1035282 1a110850 fd5ff06f jal x0, -44 +58890725ns 1035287 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58891009ns 1035292 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58891407ns 1035299 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58891577ns 1035302 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58892032ns 1035310 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58892203ns 1035313 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58892487ns 1035318 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58892771ns 1035323 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58893055ns 1035328 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58893510ns 1035336 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58893680ns 1035339 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58893964ns 1035344 1a110850 fd5ff06f jal x0, -44 +58894248ns 1035349 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58894533ns 1035354 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58894930ns 1035361 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58895101ns 1035364 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58895556ns 1035372 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58895726ns 1035375 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58896010ns 1035380 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58896294ns 1035385 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58896579ns 1035390 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58897033ns 1035398 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58897204ns 1035401 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58897488ns 1035406 1a110850 fd5ff06f jal x0, -44 +58897772ns 1035411 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58898056ns 1035416 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58898454ns 1035423 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58898625ns 1035426 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58899079ns 1035434 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58899250ns 1035437 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58899534ns 1035442 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58899818ns 1035447 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58900102ns 1035452 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58900557ns 1035460 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58900727ns 1035463 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58901011ns 1035468 1a110850 fd5ff06f jal x0, -44 +58901296ns 1035473 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58901580ns 1035478 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58901978ns 1035485 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58902148ns 1035488 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58902603ns 1035496 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58902773ns 1035499 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58903057ns 1035504 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58903342ns 1035509 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58903626ns 1035514 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58904080ns 1035522 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58904251ns 1035525 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58904535ns 1035530 1a110850 fd5ff06f jal x0, -44 +58904819ns 1035535 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58905103ns 1035540 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58905501ns 1035547 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58905672ns 1035550 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58906126ns 1035558 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58906297ns 1035561 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58906581ns 1035566 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58906865ns 1035571 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58907149ns 1035576 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58907604ns 1035584 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58907775ns 1035587 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58908059ns 1035592 1a110850 fd5ff06f jal x0, -44 +58908343ns 1035597 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58908627ns 1035602 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58909025ns 1035609 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58909195ns 1035612 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58909650ns 1035620 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58909820ns 1035623 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58910105ns 1035628 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58910389ns 1035633 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58910673ns 1035638 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58911128ns 1035646 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58911298ns 1035649 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58911582ns 1035654 1a110850 fd5ff06f jal x0, -44 +58911866ns 1035659 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58912151ns 1035664 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58912548ns 1035671 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58912719ns 1035674 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58913174ns 1035682 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58913344ns 1035685 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58913628ns 1035690 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58913912ns 1035695 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58914197ns 1035700 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58914651ns 1035708 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58914822ns 1035711 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58915106ns 1035716 1a110850 fd5ff06f jal x0, -44 +58915390ns 1035721 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58915674ns 1035726 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58916072ns 1035733 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58916242ns 1035736 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58916697ns 1035744 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58916868ns 1035747 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58917152ns 1035752 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58917436ns 1035757 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58917720ns 1035762 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58918175ns 1035770 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58918345ns 1035773 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58918629ns 1035778 1a110850 fd5ff06f jal x0, -44 +58918914ns 1035783 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58919198ns 1035788 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58919596ns 1035795 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58919766ns 1035798 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58920221ns 1035806 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58920391ns 1035809 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58920675ns 1035814 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58920960ns 1035819 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58921244ns 1035824 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58921698ns 1035832 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58921869ns 1035835 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58922153ns 1035840 1a110850 fd5ff06f jal x0, -44 +58922437ns 1035845 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58922721ns 1035850 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58923119ns 1035857 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58923290ns 1035860 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58923744ns 1035868 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58923915ns 1035871 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58924199ns 1035876 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58924483ns 1035881 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58924767ns 1035886 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58925222ns 1035894 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58925392ns 1035897 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58925677ns 1035902 1a110850 fd5ff06f jal x0, -44 +58925961ns 1035907 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58926245ns 1035912 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58926643ns 1035919 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58926813ns 1035922 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58927268ns 1035930 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58927438ns 1035933 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58927723ns 1035938 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58928007ns 1035943 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58928291ns 1035948 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58928746ns 1035956 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58928916ns 1035959 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58929200ns 1035964 1a110850 fd5ff06f jal x0, -44 +58929484ns 1035969 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58929768ns 1035974 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58930166ns 1035981 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58930337ns 1035984 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58930791ns 1035992 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58930962ns 1035995 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58931246ns 1036000 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58931530ns 1036005 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58931814ns 1036010 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58932269ns 1036018 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58932440ns 1036021 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58932724ns 1036026 1a110850 fd5ff06f jal x0, -44 +58933008ns 1036031 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58933292ns 1036036 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58933690ns 1036043 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58933860ns 1036046 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58934315ns 1036054 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58934486ns 1036057 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58934770ns 1036062 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58935054ns 1036067 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58935338ns 1036072 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58935793ns 1036080 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58935963ns 1036083 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58936247ns 1036088 1a110850 fd5ff06f jal x0, -44 +58936531ns 1036093 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58936816ns 1036098 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58937213ns 1036105 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58937384ns 1036108 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58937839ns 1036116 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58938009ns 1036119 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58938293ns 1036124 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58938577ns 1036129 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58938862ns 1036134 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58939316ns 1036142 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58939487ns 1036145 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58939771ns 1036150 1a110850 fd5ff06f jal x0, -44 +58940055ns 1036155 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58940339ns 1036160 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58940737ns 1036167 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58940908ns 1036170 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58941362ns 1036178 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58941533ns 1036181 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58941817ns 1036186 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58942101ns 1036191 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58942385ns 1036196 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58942840ns 1036204 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58943010ns 1036207 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58943295ns 1036212 1a110850 fd5ff06f jal x0, -44 +58943579ns 1036217 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58943863ns 1036222 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58944261ns 1036229 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58944431ns 1036232 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58944886ns 1036240 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58945056ns 1036243 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58945340ns 1036248 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58945625ns 1036253 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58945909ns 1036258 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58946363ns 1036266 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58946534ns 1036269 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58946818ns 1036274 1a110850 fd5ff06f jal x0, -44 +58947102ns 1036279 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58947386ns 1036284 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58947784ns 1036291 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58947955ns 1036294 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58948409ns 1036302 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58948580ns 1036305 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58948864ns 1036310 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58949148ns 1036315 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58949432ns 1036320 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58949887ns 1036328 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58950058ns 1036331 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58950342ns 1036336 1a110850 fd5ff06f jal x0, -44 +58950626ns 1036341 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58950910ns 1036346 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58951308ns 1036353 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58951478ns 1036356 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58951933ns 1036364 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58952103ns 1036367 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58952388ns 1036372 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58952672ns 1036377 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58952956ns 1036382 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58953411ns 1036390 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58953581ns 1036393 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58953865ns 1036398 1a110850 fd5ff06f jal x0, -44 +58954149ns 1036403 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58954434ns 1036408 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58954831ns 1036415 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58955002ns 1036418 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58955457ns 1036426 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58955627ns 1036429 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58955911ns 1036434 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58956195ns 1036439 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58956480ns 1036444 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58956934ns 1036452 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58957105ns 1036455 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58957389ns 1036460 1a110850 fd5ff06f jal x0, -44 +58957673ns 1036465 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58957957ns 1036470 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58958355ns 1036477 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58958525ns 1036480 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58958980ns 1036488 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58959151ns 1036491 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58959435ns 1036496 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58959719ns 1036501 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58960003ns 1036506 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58960458ns 1036514 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58960628ns 1036517 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58960912ns 1036522 1a110850 fd5ff06f jal x0, -44 +58961197ns 1036527 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58961481ns 1036532 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58961879ns 1036539 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58962049ns 1036542 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58962504ns 1036550 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58962674ns 1036553 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58962958ns 1036558 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58963243ns 1036563 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58963527ns 1036568 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58963981ns 1036576 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58964152ns 1036579 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58964436ns 1036584 1a110850 fd5ff06f jal x0, -44 +58964720ns 1036589 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58965004ns 1036594 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58965402ns 1036601 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58965573ns 1036604 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58966027ns 1036612 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58966198ns 1036615 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58966482ns 1036620 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58966766ns 1036625 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58967050ns 1036630 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58967505ns 1036638 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58967675ns 1036641 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58967960ns 1036646 1a110850 fd5ff06f jal x0, -44 +58968244ns 1036651 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58968528ns 1036656 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58968926ns 1036663 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58969096ns 1036666 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58969551ns 1036674 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58969721ns 1036677 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58970006ns 1036682 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58970290ns 1036687 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58970574ns 1036692 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58971029ns 1036700 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58971199ns 1036703 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58971483ns 1036708 1a110850 fd5ff06f jal x0, -44 +58971767ns 1036713 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58972051ns 1036718 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58972449ns 1036725 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58972620ns 1036728 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58973074ns 1036736 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58973245ns 1036739 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58973529ns 1036744 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58973813ns 1036749 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58974097ns 1036754 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58974552ns 1036762 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58974723ns 1036765 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58975007ns 1036770 1a110850 fd5ff06f jal x0, -44 +58975291ns 1036775 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58975575ns 1036780 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58975973ns 1036787 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58976143ns 1036790 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58976598ns 1036798 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58976769ns 1036801 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58977053ns 1036806 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58977337ns 1036811 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58977621ns 1036816 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58978076ns 1036824 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58978246ns 1036827 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58978530ns 1036832 1a110850 fd5ff06f jal x0, -44 +58978815ns 1036837 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58979099ns 1036842 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58979496ns 1036849 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58979667ns 1036852 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58980122ns 1036860 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58980292ns 1036863 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58980576ns 1036868 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58980860ns 1036873 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58981145ns 1036878 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58981599ns 1036886 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58981770ns 1036889 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58982054ns 1036894 1a110850 fd5ff06f jal x0, -44 +58982338ns 1036899 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58982622ns 1036904 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58983020ns 1036911 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58983191ns 1036914 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58983645ns 1036922 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58983816ns 1036925 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58984100ns 1036930 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58984384ns 1036935 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58984668ns 1036940 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58985123ns 1036948 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58985293ns 1036951 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58985578ns 1036956 1a110850 fd5ff06f jal x0, -44 +58985862ns 1036961 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58986146ns 1036966 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58986544ns 1036973 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58986714ns 1036976 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58987169ns 1036984 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58987339ns 1036987 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58987623ns 1036992 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58987908ns 1036997 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58988192ns 1037002 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58988646ns 1037010 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58988817ns 1037013 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58989101ns 1037018 1a110850 fd5ff06f jal x0, -44 +58989385ns 1037023 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58989669ns 1037028 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58990067ns 1037035 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58990238ns 1037038 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58990692ns 1037046 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58990863ns 1037049 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58991147ns 1037054 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58991431ns 1037059 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58991715ns 1037064 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58992170ns 1037072 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58992341ns 1037075 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58992625ns 1037080 1a110850 fd5ff06f jal x0, -44 +58992909ns 1037085 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58993193ns 1037090 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58993591ns 1037097 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58993761ns 1037100 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58994216ns 1037108 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58994386ns 1037111 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58994671ns 1037116 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58994955ns 1037121 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58995239ns 1037126 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58995694ns 1037134 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58995864ns 1037137 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58996148ns 1037142 1a110850 fd5ff06f jal x0, -44 +58996432ns 1037147 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58996717ns 1037152 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +58997114ns 1037159 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58997285ns 1037162 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58997740ns 1037170 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +58997910ns 1037173 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +58998194ns 1037178 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +58998478ns 1037183 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +58998763ns 1037188 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +58999217ns 1037196 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +58999388ns 1037199 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +58999672ns 1037204 1a110850 fd5ff06f jal x0, -44 +58999956ns 1037209 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59000240ns 1037214 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59000638ns 1037221 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59000808ns 1037224 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59001263ns 1037232 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59001434ns 1037235 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59001718ns 1037240 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59002002ns 1037245 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59002286ns 1037250 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59002741ns 1037258 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59002911ns 1037261 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59003195ns 1037266 1a110850 fd5ff06f jal x0, -44 +59003480ns 1037271 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59003764ns 1037276 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59004162ns 1037283 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59004332ns 1037286 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59004787ns 1037294 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59004957ns 1037297 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59005241ns 1037302 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59005526ns 1037307 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59005810ns 1037312 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59006264ns 1037320 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59006435ns 1037323 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59006719ns 1037328 1a110850 fd5ff06f jal x0, -44 +59007003ns 1037333 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59007287ns 1037338 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59007685ns 1037345 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59007856ns 1037348 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59008310ns 1037356 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59008481ns 1037359 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59008765ns 1037364 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59009049ns 1037369 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59009333ns 1037374 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59009788ns 1037382 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59009958ns 1037385 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59010243ns 1037390 1a110850 fd5ff06f jal x0, -44 +59010527ns 1037395 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59010811ns 1037400 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59011209ns 1037407 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59011379ns 1037410 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59011834ns 1037418 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59012004ns 1037421 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59012289ns 1037426 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59012573ns 1037431 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59012857ns 1037436 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59013312ns 1037444 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59013482ns 1037447 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59013766ns 1037452 1a110850 fd5ff06f jal x0, -44 +59014050ns 1037457 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59014335ns 1037462 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59014732ns 1037469 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59014903ns 1037472 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59015357ns 1037480 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59015528ns 1037483 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59015812ns 1037488 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59016096ns 1037493 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59016380ns 1037498 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59016835ns 1037506 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59017006ns 1037509 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59017290ns 1037514 1a110850 fd5ff06f jal x0, -44 +59017574ns 1037519 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59017858ns 1037524 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59018256ns 1037531 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59018426ns 1037534 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59018881ns 1037542 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59019052ns 1037545 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59019336ns 1037550 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59019620ns 1037555 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59019904ns 1037560 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59020359ns 1037568 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59020529ns 1037571 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59020813ns 1037576 1a110850 fd5ff06f jal x0, -44 +59021098ns 1037581 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59021382ns 1037586 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59021779ns 1037593 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59021950ns 1037596 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59022405ns 1037604 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59022575ns 1037607 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59022859ns 1037612 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59023143ns 1037617 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59023428ns 1037622 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59023882ns 1037630 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59024053ns 1037633 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59024337ns 1037638 1a110850 fd5ff06f jal x0, -44 +59024621ns 1037643 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59024905ns 1037648 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59025303ns 1037655 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59025474ns 1037658 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59025928ns 1037666 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59026099ns 1037669 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59026383ns 1037674 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59026667ns 1037679 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59026951ns 1037684 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59027406ns 1037692 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59027576ns 1037695 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59027861ns 1037700 1a110850 fd5ff06f jal x0, -44 +59028145ns 1037705 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59028429ns 1037710 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59028827ns 1037717 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59028997ns 1037720 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59029452ns 1037728 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59029622ns 1037731 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59029906ns 1037736 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59030191ns 1037741 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59030475ns 1037746 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59030929ns 1037754 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59031100ns 1037757 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59031384ns 1037762 1a110850 fd5ff06f jal x0, -44 +59031668ns 1037767 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59031952ns 1037772 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59032350ns 1037779 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59032521ns 1037782 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59032975ns 1037790 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59033146ns 1037793 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59033430ns 1037798 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59033714ns 1037803 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59033998ns 1037808 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59034453ns 1037816 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59034624ns 1037819 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59034908ns 1037824 1a110850 fd5ff06f jal x0, -44 +59035192ns 1037829 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59035476ns 1037834 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59035874ns 1037841 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59036044ns 1037844 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59036499ns 1037852 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59036669ns 1037855 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59036954ns 1037860 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59037238ns 1037865 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59037522ns 1037870 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59037977ns 1037878 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59038147ns 1037881 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59038431ns 1037886 1a110850 fd5ff06f jal x0, -44 +59038715ns 1037891 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59039000ns 1037896 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59039397ns 1037903 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59039568ns 1037906 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59040023ns 1037914 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59040193ns 1037917 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59040477ns 1037922 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59040761ns 1037927 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59041046ns 1037932 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59041500ns 1037940 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59041671ns 1037943 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59041955ns 1037948 1a110850 fd5ff06f jal x0, -44 +59042239ns 1037953 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59042523ns 1037958 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59042921ns 1037965 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59043091ns 1037968 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59043546ns 1037976 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59043717ns 1037979 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59044001ns 1037984 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59044285ns 1037989 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59044569ns 1037994 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59045024ns 1038002 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59045194ns 1038005 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59045478ns 1038010 1a110850 fd5ff06f jal x0, -44 +59045763ns 1038015 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59046047ns 1038020 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59046445ns 1038027 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59046615ns 1038030 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59047070ns 1038038 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59047240ns 1038041 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59047524ns 1038046 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59047809ns 1038051 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59048093ns 1038056 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59048547ns 1038064 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59048718ns 1038067 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59049002ns 1038072 1a110850 fd5ff06f jal x0, -44 +59049286ns 1038077 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59049570ns 1038082 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59049968ns 1038089 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59050139ns 1038092 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59050593ns 1038100 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59050764ns 1038103 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59051048ns 1038108 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59051332ns 1038113 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59051616ns 1038118 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59052071ns 1038126 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59052241ns 1038129 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59052526ns 1038134 1a110850 fd5ff06f jal x0, -44 +59052810ns 1038139 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59053094ns 1038144 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59053492ns 1038151 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59053662ns 1038154 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59054117ns 1038162 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59054287ns 1038165 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59054572ns 1038170 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59054856ns 1038175 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59055140ns 1038180 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59055595ns 1038188 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59055765ns 1038191 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59056049ns 1038196 1a110850 fd5ff06f jal x0, -44 +59056333ns 1038201 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59056618ns 1038206 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59057015ns 1038213 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59057186ns 1038216 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59057640ns 1038224 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59057811ns 1038227 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59058095ns 1038232 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59058379ns 1038237 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59058663ns 1038242 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59059118ns 1038250 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59059289ns 1038253 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59059573ns 1038258 1a110850 fd5ff06f jal x0, -44 +59059857ns 1038263 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59060141ns 1038268 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59060539ns 1038275 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59060709ns 1038278 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59061164ns 1038286 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59061335ns 1038289 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59061619ns 1038294 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59061903ns 1038299 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59062187ns 1038304 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59062642ns 1038312 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59062812ns 1038315 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59063096ns 1038320 1a110850 fd5ff06f jal x0, -44 +59063381ns 1038325 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59063665ns 1038330 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59064063ns 1038337 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59064233ns 1038340 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59064688ns 1038348 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59064858ns 1038351 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59065142ns 1038356 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59065426ns 1038361 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59065711ns 1038366 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59066165ns 1038374 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59066336ns 1038377 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59066620ns 1038382 1a110850 fd5ff06f jal x0, -44 +59066904ns 1038387 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59067188ns 1038392 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59067586ns 1038399 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59067757ns 1038402 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59068211ns 1038410 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59068382ns 1038413 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59068666ns 1038418 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59068950ns 1038423 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59069234ns 1038428 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59069689ns 1038436 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59069859ns 1038439 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59070144ns 1038444 1a110850 fd5ff06f jal x0, -44 +59070428ns 1038449 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59070712ns 1038454 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59071110ns 1038461 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59071280ns 1038464 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59071735ns 1038472 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59071905ns 1038475 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59072189ns 1038480 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59072474ns 1038485 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59072758ns 1038490 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59073212ns 1038498 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59073383ns 1038501 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59073667ns 1038506 1a110850 fd5ff06f jal x0, -44 +59073951ns 1038511 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59074235ns 1038516 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59074633ns 1038523 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59074804ns 1038526 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59075258ns 1038534 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59075429ns 1038537 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59075713ns 1038542 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59075997ns 1038547 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59076281ns 1038552 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59076736ns 1038560 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59076907ns 1038563 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59077191ns 1038568 1a110850 fd5ff06f jal x0, -44 +59077475ns 1038573 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59077759ns 1038578 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59078157ns 1038585 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59078327ns 1038588 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59078782ns 1038596 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59078952ns 1038599 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59079237ns 1038604 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59079521ns 1038609 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59079805ns 1038614 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59080260ns 1038622 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59080430ns 1038625 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59080714ns 1038630 1a110850 fd5ff06f jal x0, -44 +59080998ns 1038635 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59081283ns 1038640 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59081680ns 1038647 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59081851ns 1038650 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59082306ns 1038658 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59082476ns 1038661 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59082760ns 1038666 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59083044ns 1038671 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59083329ns 1038676 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59083783ns 1038684 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59083954ns 1038687 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59084238ns 1038692 1a110850 fd5ff06f jal x0, -44 +59084522ns 1038697 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59084806ns 1038702 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59085204ns 1038709 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59085375ns 1038712 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59085829ns 1038720 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59086000ns 1038723 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59086284ns 1038728 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59086568ns 1038733 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59086852ns 1038738 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59087307ns 1038746 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59087477ns 1038749 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59087761ns 1038754 1a110850 fd5ff06f jal x0, -44 +59088046ns 1038759 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59088330ns 1038764 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59088728ns 1038771 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59088898ns 1038774 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59089353ns 1038782 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59089523ns 1038785 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59089807ns 1038790 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59090092ns 1038795 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59090376ns 1038800 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59090830ns 1038808 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59091001ns 1038811 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59091285ns 1038816 1a110850 fd5ff06f jal x0, -44 +59091569ns 1038821 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59091853ns 1038826 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59092251ns 1038833 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59092422ns 1038836 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59092876ns 1038844 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59093047ns 1038847 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59093331ns 1038852 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59093615ns 1038857 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59093899ns 1038862 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59094354ns 1038870 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59094524ns 1038873 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59094809ns 1038878 1a110850 fd5ff06f jal x0, -44 +59095093ns 1038883 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59095377ns 1038888 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59095775ns 1038895 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59095945ns 1038898 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59096400ns 1038906 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59096570ns 1038909 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59096855ns 1038914 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59097139ns 1038919 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59097423ns 1038924 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59097878ns 1038932 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59098048ns 1038935 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59098332ns 1038940 1a110850 fd5ff06f jal x0, -44 +59098616ns 1038945 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59098901ns 1038950 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59099298ns 1038957 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59099469ns 1038960 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59099923ns 1038968 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59100094ns 1038971 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59100378ns 1038976 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59100662ns 1038981 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59100946ns 1038986 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59101401ns 1038994 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59101572ns 1038997 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59101856ns 1039002 1a110850 fd5ff06f jal x0, -44 +59102140ns 1039007 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59102424ns 1039012 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59102822ns 1039019 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59102992ns 1039022 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59103447ns 1039030 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59103618ns 1039033 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59103902ns 1039038 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59104186ns 1039043 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59104470ns 1039048 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59104925ns 1039056 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59105095ns 1039059 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59105379ns 1039064 1a110850 fd5ff06f jal x0, -44 +59105664ns 1039069 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59105948ns 1039074 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59106346ns 1039081 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59106516ns 1039084 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59106971ns 1039092 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59107141ns 1039095 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59107425ns 1039100 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59107709ns 1039105 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59107994ns 1039110 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59108448ns 1039118 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59108619ns 1039121 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59108903ns 1039126 1a110850 fd5ff06f jal x0, -44 +59109187ns 1039131 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59109471ns 1039136 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59109869ns 1039143 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59110040ns 1039146 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59110494ns 1039154 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59110665ns 1039157 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59110949ns 1039162 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59111233ns 1039167 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59111517ns 1039172 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59111972ns 1039180 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59112142ns 1039183 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59112427ns 1039188 1a110850 fd5ff06f jal x0, -44 +59112711ns 1039193 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59112995ns 1039198 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59113393ns 1039205 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59113563ns 1039208 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59114018ns 1039216 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59114188ns 1039219 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59114472ns 1039224 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59114757ns 1039229 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59115041ns 1039234 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59115495ns 1039242 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59115666ns 1039245 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59115950ns 1039250 1a110850 fd5ff06f jal x0, -44 +59116234ns 1039255 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59116518ns 1039260 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59116916ns 1039267 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59117087ns 1039270 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59117541ns 1039278 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59117712ns 1039281 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59117996ns 1039286 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59118280ns 1039291 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59118564ns 1039296 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59119019ns 1039304 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59119190ns 1039307 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59119474ns 1039312 1a110850 fd5ff06f jal x0, -44 +59119758ns 1039317 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59120042ns 1039322 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59120440ns 1039329 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59120610ns 1039332 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59121065ns 1039340 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59121235ns 1039343 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59121520ns 1039348 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59121804ns 1039353 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59122088ns 1039358 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59122543ns 1039366 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59122713ns 1039369 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59122997ns 1039374 1a110850 fd5ff06f jal x0, -44 +59123281ns 1039379 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59123566ns 1039384 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59123963ns 1039391 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59124134ns 1039394 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59124589ns 1039402 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59124759ns 1039405 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59125043ns 1039410 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59125327ns 1039415 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59125612ns 1039420 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59126066ns 1039428 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59126237ns 1039431 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59126521ns 1039436 1a110850 fd5ff06f jal x0, -44 +59126805ns 1039441 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59127089ns 1039446 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59127487ns 1039453 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59127658ns 1039456 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59128112ns 1039464 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59128283ns 1039467 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59128567ns 1039472 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59128851ns 1039477 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59129135ns 1039482 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59129590ns 1039490 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59129760ns 1039493 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59130044ns 1039498 1a110850 fd5ff06f jal x0, -44 +59130329ns 1039503 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59130613ns 1039508 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59131011ns 1039515 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59131181ns 1039518 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59131636ns 1039526 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59131806ns 1039529 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59132090ns 1039534 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59132375ns 1039539 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59132659ns 1039544 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59133113ns 1039552 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59133284ns 1039555 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59133568ns 1039560 1a110850 fd5ff06f jal x0, -44 +59133852ns 1039565 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59134136ns 1039570 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59134534ns 1039577 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59134705ns 1039580 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59135159ns 1039588 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59135330ns 1039591 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59135614ns 1039596 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59135898ns 1039601 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59136182ns 1039606 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59136637ns 1039614 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59136807ns 1039617 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59137092ns 1039622 1a110850 fd5ff06f jal x0, -44 +59137376ns 1039627 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59137660ns 1039632 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59138058ns 1039639 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59138228ns 1039642 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59138683ns 1039650 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59138853ns 1039653 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59139138ns 1039658 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59139422ns 1039663 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59139706ns 1039668 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59140161ns 1039676 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59140331ns 1039679 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59140615ns 1039684 1a110850 fd5ff06f jal x0, -44 +59140899ns 1039689 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59141184ns 1039694 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59141581ns 1039701 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59141752ns 1039704 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59142207ns 1039712 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59142377ns 1039715 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59142661ns 1039720 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59142945ns 1039725 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59143229ns 1039730 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59143684ns 1039738 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59143855ns 1039741 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59144139ns 1039746 1a110850 fd5ff06f jal x0, -44 +59144423ns 1039751 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59144707ns 1039756 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59145105ns 1039763 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59145275ns 1039766 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59145730ns 1039774 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59145901ns 1039777 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59146185ns 1039782 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59146469ns 1039787 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59146753ns 1039792 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59147208ns 1039800 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59147378ns 1039803 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59147662ns 1039808 1a110850 fd5ff06f jal x0, -44 +59147947ns 1039813 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59148231ns 1039818 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59148629ns 1039825 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59148799ns 1039828 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59149254ns 1039836 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59149424ns 1039839 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59149708ns 1039844 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59149992ns 1039849 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59150277ns 1039854 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59150731ns 1039862 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59150902ns 1039865 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59151186ns 1039870 1a110850 fd5ff06f jal x0, -44 +59151470ns 1039875 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59151754ns 1039880 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59152152ns 1039887 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59152323ns 1039890 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59152777ns 1039898 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59152948ns 1039901 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59153232ns 1039906 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59153516ns 1039911 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59153800ns 1039916 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59154255ns 1039924 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59154425ns 1039927 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59154710ns 1039932 1a110850 fd5ff06f jal x0, -44 +59154994ns 1039937 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59155278ns 1039942 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59155676ns 1039949 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59155846ns 1039952 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59156301ns 1039960 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59156471ns 1039963 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59156755ns 1039968 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59157040ns 1039973 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59157324ns 1039978 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59157778ns 1039986 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59157949ns 1039989 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59158233ns 1039994 1a110850 fd5ff06f jal x0, -44 +59158517ns 1039999 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59158801ns 1040004 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59159199ns 1040011 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59159370ns 1040014 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59159824ns 1040022 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59159995ns 1040025 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59160279ns 1040030 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59160563ns 1040035 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59160847ns 1040040 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59161302ns 1040048 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59161473ns 1040051 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59161757ns 1040056 1a110850 fd5ff06f jal x0, -44 +59162041ns 1040061 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59162325ns 1040066 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59162723ns 1040073 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59162893ns 1040076 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59163348ns 1040084 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59163519ns 1040087 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59163803ns 1040092 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59164087ns 1040097 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59164371ns 1040102 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59164826ns 1040110 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59164996ns 1040113 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59165280ns 1040118 1a110850 fd5ff06f jal x0, -44 +59165564ns 1040123 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59165849ns 1040128 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59166246ns 1040135 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59166417ns 1040138 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59166872ns 1040146 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59167042ns 1040149 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59167326ns 1040154 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59167610ns 1040159 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59167895ns 1040164 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59168349ns 1040172 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59168520ns 1040175 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59168804ns 1040180 1a110850 fd5ff06f jal x0, -44 +59169088ns 1040185 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59169372ns 1040190 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59169770ns 1040197 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59169941ns 1040200 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59170395ns 1040208 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59170566ns 1040211 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59170850ns 1040216 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59171134ns 1040221 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59171418ns 1040226 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59171873ns 1040234 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59172043ns 1040237 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59172327ns 1040242 1a110850 fd5ff06f jal x0, -44 +59172612ns 1040247 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59172896ns 1040252 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59173294ns 1040259 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59173464ns 1040262 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59173919ns 1040270 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59174089ns 1040273 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59174373ns 1040278 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59174658ns 1040283 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59174942ns 1040288 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59175396ns 1040296 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59175567ns 1040299 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59175851ns 1040304 1a110850 fd5ff06f jal x0, -44 +59176135ns 1040309 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59176419ns 1040314 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59176817ns 1040321 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59176988ns 1040324 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59177442ns 1040332 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59177613ns 1040335 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59177897ns 1040340 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59178181ns 1040345 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59178465ns 1040350 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59178920ns 1040358 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59179090ns 1040361 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59179375ns 1040366 1a110850 fd5ff06f jal x0, -44 +59179659ns 1040371 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59179943ns 1040376 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59180341ns 1040383 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59180511ns 1040386 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59180966ns 1040394 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59181136ns 1040397 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59181421ns 1040402 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59181705ns 1040407 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59181989ns 1040412 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59182444ns 1040420 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59182614ns 1040423 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59182898ns 1040428 1a110850 fd5ff06f jal x0, -44 +59183182ns 1040433 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59183467ns 1040438 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59183864ns 1040445 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59184035ns 1040448 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59184490ns 1040456 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59184660ns 1040459 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59184944ns 1040464 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59185228ns 1040469 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59185512ns 1040474 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59185967ns 1040482 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59186138ns 1040485 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59186422ns 1040490 1a110850 fd5ff06f jal x0, -44 +59186706ns 1040495 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59186990ns 1040500 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59187388ns 1040507 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59187558ns 1040510 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59188013ns 1040518 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59188184ns 1040521 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59188468ns 1040526 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59188752ns 1040531 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59189036ns 1040536 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59189491ns 1040544 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59189661ns 1040547 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59189945ns 1040552 1a110850 fd5ff06f jal x0, -44 +59190230ns 1040557 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59190514ns 1040562 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59190912ns 1040569 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59191082ns 1040572 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59191537ns 1040580 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59191707ns 1040583 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59191991ns 1040588 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59192275ns 1040593 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59192560ns 1040598 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59193014ns 1040606 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59193185ns 1040609 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59193469ns 1040614 1a110850 fd5ff06f jal x0, -44 +59193753ns 1040619 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59194037ns 1040624 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59194435ns 1040631 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59194606ns 1040634 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59195060ns 1040642 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59195231ns 1040645 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59195515ns 1040650 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59195799ns 1040655 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59196083ns 1040660 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59196538ns 1040668 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59196708ns 1040671 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59196993ns 1040676 1a110850 fd5ff06f jal x0, -44 +59197277ns 1040681 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59197561ns 1040686 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59197959ns 1040693 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59198129ns 1040696 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59198584ns 1040704 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59198754ns 1040707 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59199039ns 1040712 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59199323ns 1040717 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59199607ns 1040722 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59200061ns 1040730 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59200232ns 1040733 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59200516ns 1040738 1a110850 fd5ff06f jal x0, -44 +59200800ns 1040743 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59201084ns 1040748 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59201482ns 1040755 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59201653ns 1040758 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59202107ns 1040766 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59202278ns 1040769 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59202562ns 1040774 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59202846ns 1040779 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59203130ns 1040784 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59203585ns 1040792 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59203756ns 1040795 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59204040ns 1040800 1a110850 fd5ff06f jal x0, -44 +59204324ns 1040805 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59204608ns 1040810 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59205006ns 1040817 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59205176ns 1040820 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59205631ns 1040828 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59205802ns 1040831 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59206086ns 1040836 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59206370ns 1040841 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59206654ns 1040846 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59207109ns 1040854 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59207279ns 1040857 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59207563ns 1040862 1a110850 fd5ff06f jal x0, -44 +59207847ns 1040867 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59208132ns 1040872 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59208529ns 1040879 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59208700ns 1040882 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59209155ns 1040890 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59209325ns 1040893 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59209609ns 1040898 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59209893ns 1040903 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59210178ns 1040908 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59210632ns 1040916 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59210803ns 1040919 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59211087ns 1040924 1a110850 fd5ff06f jal x0, -44 +59211371ns 1040929 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59211655ns 1040934 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59212053ns 1040941 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59212224ns 1040944 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59212678ns 1040952 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59212849ns 1040955 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59213133ns 1040960 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59213417ns 1040965 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59213701ns 1040970 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59214156ns 1040978 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59214326ns 1040981 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59214610ns 1040986 1a110850 fd5ff06f jal x0, -44 +59214895ns 1040991 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59215179ns 1040996 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59215577ns 1041003 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59215747ns 1041006 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59216202ns 1041014 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59216372ns 1041017 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59216656ns 1041022 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59216941ns 1041027 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59217225ns 1041032 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59217679ns 1041040 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59217850ns 1041043 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59218134ns 1041048 1a110850 fd5ff06f jal x0, -44 +59218418ns 1041053 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59218702ns 1041058 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59219100ns 1041065 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59219271ns 1041068 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59219725ns 1041076 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59219896ns 1041079 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59220180ns 1041084 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59220464ns 1041089 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59220748ns 1041094 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59221203ns 1041102 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59221373ns 1041105 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59221658ns 1041110 1a110850 fd5ff06f jal x0, -44 +59221942ns 1041115 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59222226ns 1041120 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59222624ns 1041127 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59222794ns 1041130 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59223249ns 1041138 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59223419ns 1041141 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59223704ns 1041146 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59223988ns 1041151 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59224272ns 1041156 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59224727ns 1041164 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59224897ns 1041167 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59225181ns 1041172 1a110850 fd5ff06f jal x0, -44 +59225465ns 1041177 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59225750ns 1041182 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59226147ns 1041189 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59226318ns 1041192 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59226773ns 1041200 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59226943ns 1041203 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59227227ns 1041208 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59227511ns 1041213 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59227795ns 1041218 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59228250ns 1041226 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59228421ns 1041229 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59228705ns 1041234 1a110850 fd5ff06f jal x0, -44 +59228989ns 1041239 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59229273ns 1041244 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59229671ns 1041251 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59229841ns 1041254 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59230296ns 1041262 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59230467ns 1041265 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59230751ns 1041270 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59231035ns 1041275 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59231319ns 1041280 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59231774ns 1041288 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59231944ns 1041291 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59232228ns 1041296 1a110850 fd5ff06f jal x0, -44 +59232513ns 1041301 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59232797ns 1041306 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59233195ns 1041313 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59233365ns 1041316 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59233820ns 1041324 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59233990ns 1041327 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59234274ns 1041332 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59234559ns 1041337 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59234843ns 1041342 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59235297ns 1041350 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59235468ns 1041353 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59235752ns 1041358 1a110850 fd5ff06f jal x0, -44 +59236036ns 1041363 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59236320ns 1041368 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59236718ns 1041375 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59236889ns 1041378 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59237343ns 1041386 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59237514ns 1041389 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59237798ns 1041394 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59238082ns 1041399 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59238366ns 1041404 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59238821ns 1041412 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59238991ns 1041415 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59239276ns 1041420 1a110850 fd5ff06f jal x0, -44 +59239560ns 1041425 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59239844ns 1041430 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59240242ns 1041437 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59240412ns 1041440 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59240867ns 1041448 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59241037ns 1041451 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59241322ns 1041456 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59241606ns 1041461 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59241890ns 1041466 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59242344ns 1041474 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59242515ns 1041477 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59242799ns 1041482 1a110850 fd5ff06f jal x0, -44 +59243083ns 1041487 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59243367ns 1041492 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59243765ns 1041499 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59243936ns 1041502 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59244390ns 1041510 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59244561ns 1041513 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59244845ns 1041518 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59245129ns 1041523 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59245413ns 1041528 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59245868ns 1041536 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59246039ns 1041539 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59246323ns 1041544 1a110850 fd5ff06f jal x0, -44 +59246607ns 1041549 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59246891ns 1041554 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59247289ns 1041561 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59247459ns 1041564 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59247914ns 1041572 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59248085ns 1041575 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59248369ns 1041580 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59248653ns 1041585 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59248937ns 1041590 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59249392ns 1041598 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59249562ns 1041601 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59249846ns 1041606 1a110850 fd5ff06f jal x0, -44 +59250130ns 1041611 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59250415ns 1041616 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59250812ns 1041623 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59250983ns 1041626 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59251438ns 1041634 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59251608ns 1041637 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59251892ns 1041642 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59252176ns 1041647 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59252461ns 1041652 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59252915ns 1041660 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59253086ns 1041663 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59253370ns 1041668 1a110850 fd5ff06f jal x0, -44 +59253654ns 1041673 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59253938ns 1041678 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59254336ns 1041685 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59254507ns 1041688 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59254961ns 1041696 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59255132ns 1041699 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59255416ns 1041704 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59255700ns 1041709 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59255984ns 1041714 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59256439ns 1041722 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59256609ns 1041725 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59256893ns 1041730 1a110850 fd5ff06f jal x0, -44 +59257178ns 1041735 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59257462ns 1041740 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59257860ns 1041747 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59258030ns 1041750 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59258485ns 1041758 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59258655ns 1041761 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59258939ns 1041766 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59259224ns 1041771 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59259508ns 1041776 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59259962ns 1041784 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59260133ns 1041787 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59260417ns 1041792 1a110850 fd5ff06f jal x0, -44 +59260701ns 1041797 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59260985ns 1041802 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59261383ns 1041809 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59261554ns 1041812 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59262008ns 1041820 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59262179ns 1041823 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59262463ns 1041828 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59262747ns 1041833 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59263031ns 1041838 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59263486ns 1041846 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59263656ns 1041849 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59263941ns 1041854 1a110850 fd5ff06f jal x0, -44 +59264225ns 1041859 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59264509ns 1041864 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59264907ns 1041871 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59265077ns 1041874 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59265532ns 1041882 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59265702ns 1041885 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59265987ns 1041890 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59266271ns 1041895 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59266555ns 1041900 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59267010ns 1041908 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59267180ns 1041911 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59267464ns 1041916 1a110850 fd5ff06f jal x0, -44 +59267748ns 1041921 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59268033ns 1041926 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59268430ns 1041933 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59268601ns 1041936 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59269056ns 1041944 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59269226ns 1041947 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59269510ns 1041952 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59269794ns 1041957 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59270079ns 1041962 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59270533ns 1041970 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59270704ns 1041973 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59270988ns 1041978 1a110850 fd5ff06f jal x0, -44 +59271272ns 1041983 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59271556ns 1041988 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59271954ns 1041995 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59272124ns 1041998 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59272579ns 1042006 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59272750ns 1042009 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59273034ns 1042014 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59273318ns 1042019 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59273602ns 1042024 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59274057ns 1042032 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59274227ns 1042035 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59274511ns 1042040 1a110850 fd5ff06f jal x0, -44 +59274796ns 1042045 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59275080ns 1042050 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59275478ns 1042057 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59275648ns 1042060 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59276103ns 1042068 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59276273ns 1042071 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59276557ns 1042076 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59276842ns 1042081 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59277126ns 1042086 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59277580ns 1042094 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59277751ns 1042097 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59278035ns 1042102 1a110850 fd5ff06f jal x0, -44 +59278319ns 1042107 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59278603ns 1042112 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59279001ns 1042119 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59279172ns 1042122 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59279626ns 1042130 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59279797ns 1042133 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59280081ns 1042138 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59280365ns 1042143 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59280649ns 1042148 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59281104ns 1042156 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59281274ns 1042159 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59281559ns 1042164 1a110850 fd5ff06f jal x0, -44 +59281843ns 1042169 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59282127ns 1042174 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59282525ns 1042181 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59282695ns 1042184 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59283150ns 1042192 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59283320ns 1042195 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59283605ns 1042200 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59283889ns 1042205 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59284173ns 1042210 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59284627ns 1042218 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59284798ns 1042221 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59285082ns 1042226 1a110850 fd5ff06f jal x0, -44 +59285366ns 1042231 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59285650ns 1042236 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59286048ns 1042243 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59286219ns 1042246 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59286673ns 1042254 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59286844ns 1042257 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59287128ns 1042262 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59287412ns 1042267 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59287696ns 1042272 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59288151ns 1042280 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59288322ns 1042283 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59288606ns 1042288 1a110850 fd5ff06f jal x0, -44 +59288890ns 1042293 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59289174ns 1042298 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59289572ns 1042305 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59289742ns 1042308 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59290197ns 1042316 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59290368ns 1042319 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59290652ns 1042324 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59290936ns 1042329 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59291220ns 1042334 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59291675ns 1042342 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59291845ns 1042345 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59292129ns 1042350 1a110850 fd5ff06f jal x0, -44 +59292413ns 1042355 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59292698ns 1042360 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59293095ns 1042367 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59293266ns 1042370 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59293721ns 1042378 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59293891ns 1042381 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59294175ns 1042386 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59294459ns 1042391 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59294744ns 1042396 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59295198ns 1042404 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59295369ns 1042407 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59295653ns 1042412 1a110850 fd5ff06f jal x0, -44 +59295937ns 1042417 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59296221ns 1042422 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59296619ns 1042429 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59296790ns 1042432 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59297244ns 1042440 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59297415ns 1042443 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59297699ns 1042448 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59297983ns 1042453 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59298267ns 1042458 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59298722ns 1042466 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59298892ns 1042469 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59299176ns 1042474 1a110850 fd5ff06f jal x0, -44 +59299461ns 1042479 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59299745ns 1042484 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59300143ns 1042491 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59300313ns 1042494 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59300768ns 1042502 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59300938ns 1042505 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59301222ns 1042510 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59301507ns 1042515 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59301791ns 1042520 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59302245ns 1042528 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59302416ns 1042531 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59302700ns 1042536 1a110850 fd5ff06f jal x0, -44 +59302984ns 1042541 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59303268ns 1042546 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59303666ns 1042553 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59303837ns 1042556 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59304291ns 1042564 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59304462ns 1042567 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59304746ns 1042572 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59305030ns 1042577 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59305314ns 1042582 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59305769ns 1042590 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59305939ns 1042593 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59306224ns 1042598 1a110850 fd5ff06f jal x0, -44 +59306508ns 1042603 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59306792ns 1042608 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59307190ns 1042615 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59307360ns 1042618 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59307815ns 1042626 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59307985ns 1042629 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59308270ns 1042634 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59308554ns 1042639 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59308838ns 1042644 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59309293ns 1042652 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59309463ns 1042655 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59309747ns 1042660 1a110850 fd5ff06f jal x0, -44 +59310031ns 1042665 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59310316ns 1042670 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59310713ns 1042677 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59310884ns 1042680 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59311339ns 1042688 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59311509ns 1042691 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59311793ns 1042696 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59312077ns 1042701 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59312362ns 1042706 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59312816ns 1042714 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59312987ns 1042717 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59313271ns 1042722 1a110850 fd5ff06f jal x0, -44 +59313555ns 1042727 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59313839ns 1042732 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59314237ns 1042739 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59314407ns 1042742 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59314862ns 1042750 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59315033ns 1042753 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59315317ns 1042758 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59315601ns 1042763 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59315885ns 1042768 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59316340ns 1042776 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59316510ns 1042779 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59316794ns 1042784 1a110850 fd5ff06f jal x0, -44 +59317079ns 1042789 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59317363ns 1042794 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59317761ns 1042801 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59317931ns 1042804 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59318386ns 1042812 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59318556ns 1042815 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59318840ns 1042820 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59319125ns 1042825 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59319409ns 1042830 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59319863ns 1042838 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59320034ns 1042841 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59320318ns 1042846 1a110850 fd5ff06f jal x0, -44 +59320602ns 1042851 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59320886ns 1042856 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59321284ns 1042863 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59321455ns 1042866 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59321909ns 1042874 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59322080ns 1042877 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59322364ns 1042882 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59322648ns 1042887 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59322932ns 1042892 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59323387ns 1042900 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59323557ns 1042903 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59323842ns 1042908 1a110850 fd5ff06f jal x0, -44 +59324126ns 1042913 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59324410ns 1042918 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59324808ns 1042925 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59324978ns 1042928 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59325433ns 1042936 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59325603ns 1042939 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59325888ns 1042944 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59326172ns 1042949 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59326456ns 1042954 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59326911ns 1042962 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59327081ns 1042965 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59327365ns 1042970 1a110850 fd5ff06f jal x0, -44 +59327649ns 1042975 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59327933ns 1042980 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59328331ns 1042987 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59328502ns 1042990 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59328956ns 1042998 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59329127ns 1043001 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59329411ns 1043006 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59329695ns 1043011 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59329979ns 1043016 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59330434ns 1043024 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59330605ns 1043027 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59330889ns 1043032 1a110850 fd5ff06f jal x0, -44 +59331173ns 1043037 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59331457ns 1043042 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59331855ns 1043049 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59332025ns 1043052 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59332480ns 1043060 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59332651ns 1043063 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59332935ns 1043068 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59333219ns 1043073 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59333503ns 1043078 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59333958ns 1043086 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59334128ns 1043089 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59334412ns 1043094 1a110850 fd5ff06f jal x0, -44 +59334696ns 1043099 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59334981ns 1043104 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59335378ns 1043111 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59335549ns 1043114 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59336004ns 1043122 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59336174ns 1043125 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59336458ns 1043130 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59336742ns 1043135 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59337027ns 1043140 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59337481ns 1043148 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59337652ns 1043151 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59337936ns 1043156 1a110850 fd5ff06f jal x0, -44 +59338220ns 1043161 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59338504ns 1043166 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59338902ns 1043173 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59339073ns 1043176 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59339527ns 1043184 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59339698ns 1043187 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59339982ns 1043192 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59340266ns 1043197 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59340550ns 1043202 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59341005ns 1043210 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59341175ns 1043213 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59341459ns 1043218 1a110850 fd5ff06f jal x0, -44 +59341744ns 1043223 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59342028ns 1043228 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59342426ns 1043235 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59342596ns 1043238 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59343051ns 1043246 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59343221ns 1043249 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59343505ns 1043254 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59343790ns 1043259 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59344074ns 1043264 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59344528ns 1043272 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59344699ns 1043275 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59344983ns 1043280 1a110850 fd5ff06f jal x0, -44 +59345267ns 1043285 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59345551ns 1043290 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59345949ns 1043297 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59346120ns 1043300 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59346574ns 1043308 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59346745ns 1043311 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59347029ns 1043316 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59347313ns 1043321 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59347597ns 1043326 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59348052ns 1043334 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59348223ns 1043337 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59348507ns 1043342 1a110850 fd5ff06f jal x0, -44 +59348791ns 1043347 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59349075ns 1043352 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59349473ns 1043359 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59349643ns 1043362 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59350098ns 1043370 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59350268ns 1043373 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59350553ns 1043378 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59350837ns 1043383 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59351121ns 1043388 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59351576ns 1043396 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59351746ns 1043399 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59352030ns 1043404 1a110850 fd5ff06f jal x0, -44 +59352314ns 1043409 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59352599ns 1043414 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59352996ns 1043421 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59353167ns 1043424 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59353622ns 1043432 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59353792ns 1043435 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59354076ns 1043440 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59354360ns 1043445 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59354645ns 1043450 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59355099ns 1043458 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59355270ns 1043461 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59355554ns 1043466 1a110850 fd5ff06f jal x0, -44 +59355838ns 1043471 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59356122ns 1043476 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59356520ns 1043483 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59356690ns 1043486 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59357145ns 1043494 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59357316ns 1043497 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59357600ns 1043502 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59357884ns 1043507 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59358168ns 1043512 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59358623ns 1043520 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59358793ns 1043523 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59359077ns 1043528 1a110850 fd5ff06f jal x0, -44 +59359362ns 1043533 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59359646ns 1043538 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59360044ns 1043545 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59360214ns 1043548 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59360669ns 1043556 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59360839ns 1043559 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59361123ns 1043564 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59361408ns 1043569 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59361692ns 1043574 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59362146ns 1043582 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59362317ns 1043585 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59362601ns 1043590 1a110850 fd5ff06f jal x0, -44 +59362885ns 1043595 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59363169ns 1043600 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59363567ns 1043607 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59363738ns 1043610 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59364192ns 1043618 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59364363ns 1043621 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59364647ns 1043626 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59364931ns 1043631 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59365215ns 1043636 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59365670ns 1043644 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59365840ns 1043647 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59366125ns 1043652 1a110850 fd5ff06f jal x0, -44 +59366409ns 1043657 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59366693ns 1043662 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59367091ns 1043669 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59367261ns 1043672 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59367716ns 1043680 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59367886ns 1043683 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59368171ns 1043688 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59368455ns 1043693 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59368739ns 1043698 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59369194ns 1043706 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59369364ns 1043709 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59369648ns 1043714 1a110850 fd5ff06f jal x0, -44 +59369932ns 1043719 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59370216ns 1043724 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59370614ns 1043731 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59370785ns 1043734 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59371239ns 1043742 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59371410ns 1043745 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59371694ns 1043750 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59371978ns 1043755 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59372262ns 1043760 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59372717ns 1043768 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59372888ns 1043771 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59373172ns 1043776 1a110850 fd5ff06f jal x0, -44 +59373456ns 1043781 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59373740ns 1043786 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59374138ns 1043793 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59374308ns 1043796 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59374763ns 1043804 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59374934ns 1043807 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59375218ns 1043812 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59375502ns 1043817 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59375786ns 1043822 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59376241ns 1043830 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59376411ns 1043833 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59376695ns 1043838 1a110850 fd5ff06f jal x0, -44 +59376979ns 1043843 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59377264ns 1043848 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59377661ns 1043855 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59377832ns 1043858 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59378287ns 1043866 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59378457ns 1043869 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59378741ns 1043874 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59379025ns 1043879 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59379310ns 1043884 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59379764ns 1043892 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59379935ns 1043895 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59380219ns 1043900 1a110850 fd5ff06f jal x0, -44 +59380503ns 1043905 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59380787ns 1043910 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59381185ns 1043917 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59381356ns 1043920 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59381810ns 1043928 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59381981ns 1043931 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59382265ns 1043936 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59382549ns 1043941 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59382833ns 1043946 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59383288ns 1043954 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59383458ns 1043957 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59383743ns 1043962 1a110850 fd5ff06f jal x0, -44 +59384027ns 1043967 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59384311ns 1043972 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59384709ns 1043979 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59384879ns 1043982 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59385334ns 1043990 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59385504ns 1043993 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59385788ns 1043998 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59386073ns 1044003 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59386357ns 1044008 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59386811ns 1044016 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59386982ns 1044019 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59387266ns 1044024 1a110850 fd5ff06f jal x0, -44 +59387550ns 1044029 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59387834ns 1044034 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59388232ns 1044041 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59388403ns 1044044 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59388857ns 1044052 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59389028ns 1044055 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59389312ns 1044060 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59389596ns 1044065 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59389880ns 1044070 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59390335ns 1044078 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59390506ns 1044081 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59390790ns 1044086 1a110850 fd5ff06f jal x0, -44 +59391074ns 1044091 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59391358ns 1044096 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59391756ns 1044103 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59391926ns 1044106 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59392381ns 1044114 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59392551ns 1044117 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59392836ns 1044122 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59393120ns 1044127 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59393404ns 1044132 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59393859ns 1044140 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59394029ns 1044143 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59394313ns 1044148 1a110850 fd5ff06f jal x0, -44 +59394597ns 1044153 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59394882ns 1044158 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59395279ns 1044165 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59395450ns 1044168 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59395905ns 1044176 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59396075ns 1044179 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59396359ns 1044184 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59396643ns 1044189 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59396928ns 1044194 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59397382ns 1044202 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59397553ns 1044205 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59397837ns 1044210 1a110850 fd5ff06f jal x0, -44 +59398121ns 1044215 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59398405ns 1044220 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59398803ns 1044227 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59398973ns 1044230 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59399428ns 1044238 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59399599ns 1044241 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59399883ns 1044246 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59400167ns 1044251 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59400451ns 1044256 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59400906ns 1044264 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59401076ns 1044267 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59401360ns 1044272 1a110850 fd5ff06f jal x0, -44 +59401645ns 1044277 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59401929ns 1044282 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59402327ns 1044289 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59402497ns 1044292 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59402952ns 1044300 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59403122ns 1044303 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59403406ns 1044308 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59403691ns 1044313 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59403975ns 1044318 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59404429ns 1044326 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59404600ns 1044329 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59404884ns 1044334 1a110850 fd5ff06f jal x0, -44 +59405168ns 1044339 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59405452ns 1044344 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59405850ns 1044351 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59406021ns 1044354 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59406475ns 1044362 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59406646ns 1044365 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59406930ns 1044370 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59407214ns 1044375 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59407498ns 1044380 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59407953ns 1044388 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59408123ns 1044391 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59408408ns 1044396 1a110850 fd5ff06f jal x0, -44 +59408692ns 1044401 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59408976ns 1044406 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59409374ns 1044413 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59409544ns 1044416 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59409999ns 1044424 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59410169ns 1044427 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59410454ns 1044432 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59410738ns 1044437 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59411022ns 1044442 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59411477ns 1044450 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59411647ns 1044453 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59411931ns 1044458 1a110850 fd5ff06f jal x0, -44 +59412215ns 1044463 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59412499ns 1044468 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59412897ns 1044475 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59413068ns 1044478 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59413522ns 1044486 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59413693ns 1044489 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59413977ns 1044494 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59414261ns 1044499 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59414545ns 1044504 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59415000ns 1044512 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59415171ns 1044515 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59415455ns 1044520 1a110850 fd5ff06f jal x0, -44 +59415739ns 1044525 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59416023ns 1044530 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59416421ns 1044537 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59416591ns 1044540 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59417046ns 1044548 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59417217ns 1044551 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59417501ns 1044556 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59417785ns 1044561 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59418069ns 1044566 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59418524ns 1044574 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59418694ns 1044577 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59418978ns 1044582 1a110850 fd5ff06f jal x0, -44 +59419263ns 1044587 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59419547ns 1044592 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59419944ns 1044599 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59420115ns 1044602 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59420570ns 1044610 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59420740ns 1044613 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59421024ns 1044618 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59421308ns 1044623 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59421593ns 1044628 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59422047ns 1044636 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59422218ns 1044639 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59422502ns 1044644 1a110850 fd5ff06f jal x0, -44 +59422786ns 1044649 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59423070ns 1044654 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59423468ns 1044661 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59423639ns 1044664 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59424093ns 1044672 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59424264ns 1044675 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59424548ns 1044680 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59424832ns 1044685 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59425116ns 1044690 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59425571ns 1044698 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59425741ns 1044701 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59426026ns 1044706 1a110850 fd5ff06f jal x0, -44 +59426310ns 1044711 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59426594ns 1044716 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59426992ns 1044723 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59427162ns 1044726 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59427617ns 1044734 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59427787ns 1044737 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59428071ns 1044742 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59428356ns 1044747 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59428640ns 1044752 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59429094ns 1044760 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59429265ns 1044763 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59429549ns 1044768 1a110850 fd5ff06f jal x0, -44 +59429833ns 1044773 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59430117ns 1044778 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59430515ns 1044785 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59430686ns 1044788 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59431140ns 1044796 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59431311ns 1044799 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59431595ns 1044804 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59431879ns 1044809 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59432163ns 1044814 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59432618ns 1044822 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59432789ns 1044825 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59433073ns 1044830 1a110850 fd5ff06f jal x0, -44 +59433357ns 1044835 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59433641ns 1044840 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59434039ns 1044847 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59434209ns 1044850 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59434664ns 1044858 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59434834ns 1044861 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59435119ns 1044866 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59435403ns 1044871 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59435687ns 1044876 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59436142ns 1044884 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59436312ns 1044887 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59436596ns 1044892 1a110850 fd5ff06f jal x0, -44 +59436880ns 1044897 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59437165ns 1044902 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59437562ns 1044909 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59437733ns 1044912 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59438188ns 1044920 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59438358ns 1044923 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59438642ns 1044928 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59438926ns 1044933 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59439211ns 1044938 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59439665ns 1044946 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59439836ns 1044949 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59440120ns 1044954 1a110850 fd5ff06f jal x0, -44 +59440404ns 1044959 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59440688ns 1044964 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59441086ns 1044971 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59441256ns 1044974 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59441711ns 1044982 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59441882ns 1044985 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59442166ns 1044990 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59442450ns 1044995 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59442734ns 1045000 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59443189ns 1045008 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59443359ns 1045011 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59443643ns 1045016 1a110850 fd5ff06f jal x0, -44 +59443928ns 1045021 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59444212ns 1045026 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59444610ns 1045033 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59444780ns 1045036 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59445235ns 1045044 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59445405ns 1045047 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59445689ns 1045052 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59445974ns 1045057 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59446258ns 1045062 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59446712ns 1045070 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59446883ns 1045073 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59447167ns 1045078 1a110850 fd5ff06f jal x0, -44 +59447451ns 1045083 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59447735ns 1045088 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59448133ns 1045095 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59448304ns 1045098 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59448758ns 1045106 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59448929ns 1045109 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59449213ns 1045114 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59449497ns 1045119 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59449781ns 1045124 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59450236ns 1045132 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59450406ns 1045135 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59450691ns 1045140 1a110850 fd5ff06f jal x0, -44 +59450975ns 1045145 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59451259ns 1045150 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59451657ns 1045157 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59451827ns 1045160 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59452282ns 1045168 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59452452ns 1045171 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59452737ns 1045176 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59453021ns 1045181 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59453305ns 1045186 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59453760ns 1045194 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59453930ns 1045197 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59454214ns 1045202 1a110850 fd5ff06f jal x0, -44 +59454498ns 1045207 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59454783ns 1045212 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59455180ns 1045219 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59455351ns 1045222 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59455805ns 1045230 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59455976ns 1045233 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59456260ns 1045238 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59456544ns 1045243 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59456828ns 1045248 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59457283ns 1045256 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59457454ns 1045259 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59457738ns 1045264 1a110850 fd5ff06f jal x0, -44 +59458022ns 1045269 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59458306ns 1045274 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59458704ns 1045281 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59458874ns 1045284 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59459329ns 1045292 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59459500ns 1045295 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59459784ns 1045300 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59460068ns 1045305 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59460352ns 1045310 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59460807ns 1045318 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59460977ns 1045321 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59461261ns 1045326 1a110850 fd5ff06f jal x0, -44 +59461546ns 1045331 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59461830ns 1045336 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59462227ns 1045343 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59462398ns 1045346 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59462853ns 1045354 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59463023ns 1045357 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59463307ns 1045362 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59463591ns 1045367 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59463876ns 1045372 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59464330ns 1045380 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59464501ns 1045383 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59464785ns 1045388 1a110850 fd5ff06f jal x0, -44 +59465069ns 1045393 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59465353ns 1045398 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59465751ns 1045405 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59465922ns 1045408 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59466376ns 1045416 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59466547ns 1045419 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59466831ns 1045424 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59467115ns 1045429 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59467399ns 1045434 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59467854ns 1045442 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59468024ns 1045445 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59468309ns 1045450 1a110850 fd5ff06f jal x0, -44 +59468593ns 1045455 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59468877ns 1045460 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59469275ns 1045467 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59469445ns 1045470 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59469900ns 1045478 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59470070ns 1045481 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59470354ns 1045486 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59470639ns 1045491 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59470923ns 1045496 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59471377ns 1045504 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59471548ns 1045507 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59471832ns 1045512 1a110850 fd5ff06f jal x0, -44 +59472116ns 1045517 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59472400ns 1045522 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59472798ns 1045529 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59472969ns 1045532 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59473423ns 1045540 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59473594ns 1045543 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59473878ns 1045548 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59474162ns 1045553 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59474446ns 1045558 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59474901ns 1045566 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59475072ns 1045569 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59475356ns 1045574 1a110850 fd5ff06f jal x0, -44 +59475640ns 1045579 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59475924ns 1045584 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59476322ns 1045591 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59476492ns 1045594 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59476947ns 1045602 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59477117ns 1045605 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59477402ns 1045610 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59477686ns 1045615 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59477970ns 1045620 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59478425ns 1045628 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59478595ns 1045631 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59478879ns 1045636 1a110850 fd5ff06f jal x0, -44 +59479163ns 1045641 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59479448ns 1045646 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59479845ns 1045653 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59480016ns 1045656 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59480471ns 1045664 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59480641ns 1045667 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59480925ns 1045672 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59481209ns 1045677 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59481494ns 1045682 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59481948ns 1045690 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59482119ns 1045693 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59482403ns 1045698 1a110850 fd5ff06f jal x0, -44 +59482687ns 1045703 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59482971ns 1045708 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59483369ns 1045715 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59483539ns 1045718 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59483994ns 1045726 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59484165ns 1045729 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59484449ns 1045734 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59484733ns 1045739 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59485017ns 1045744 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59485472ns 1045752 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59485642ns 1045755 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59485926ns 1045760 1a110850 fd5ff06f jal x0, -44 +59486211ns 1045765 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59486495ns 1045770 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59486893ns 1045777 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59487063ns 1045780 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59487518ns 1045788 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59487688ns 1045791 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59487972ns 1045796 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59488257ns 1045801 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59488541ns 1045806 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59488995ns 1045814 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59489166ns 1045817 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59489450ns 1045822 1a110850 fd5ff06f jal x0, -44 +59489734ns 1045827 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59490018ns 1045832 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59490416ns 1045839 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59490587ns 1045842 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59491041ns 1045850 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59491212ns 1045853 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59491496ns 1045858 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59491780ns 1045863 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59492064ns 1045868 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59492519ns 1045876 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59492689ns 1045879 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59492974ns 1045884 1a110850 fd5ff06f jal x0, -44 +59493258ns 1045889 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59493542ns 1045894 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59493940ns 1045901 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59494110ns 1045904 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59494565ns 1045912 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59494735ns 1045915 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59495020ns 1045920 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59495304ns 1045925 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59495588ns 1045930 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59496043ns 1045938 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59496213ns 1045941 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59496497ns 1045946 1a110850 fd5ff06f jal x0, -44 +59496781ns 1045951 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59497066ns 1045956 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59497463ns 1045963 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59497634ns 1045966 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59498088ns 1045974 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59498259ns 1045977 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59498543ns 1045982 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59498827ns 1045987 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59499111ns 1045992 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59499566ns 1046000 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59499737ns 1046003 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59500021ns 1046008 1a110850 fd5ff06f jal x0, -44 +59500305ns 1046013 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59500589ns 1046018 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59500987ns 1046025 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59501157ns 1046028 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59501612ns 1046036 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59501783ns 1046039 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59502067ns 1046044 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59502351ns 1046049 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59502635ns 1046054 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59503090ns 1046062 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59503260ns 1046065 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59503544ns 1046070 1a110850 fd5ff06f jal x0, -44 +59503829ns 1046075 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59504113ns 1046080 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59504511ns 1046087 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59504681ns 1046090 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59505136ns 1046098 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59505306ns 1046101 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59505590ns 1046106 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59505874ns 1046111 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59506159ns 1046116 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59506613ns 1046124 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59506784ns 1046127 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59507068ns 1046132 1a110850 fd5ff06f jal x0, -44 +59507352ns 1046137 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59507636ns 1046142 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59508034ns 1046149 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59508205ns 1046152 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59508659ns 1046160 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59508830ns 1046163 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59509114ns 1046168 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59509398ns 1046173 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59509682ns 1046178 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59510137ns 1046186 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59510307ns 1046189 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59510592ns 1046194 1a110850 fd5ff06f jal x0, -44 +59510876ns 1046199 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59511160ns 1046204 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59511558ns 1046211 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59511728ns 1046214 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59512183ns 1046222 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59512353ns 1046225 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59512637ns 1046230 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59512922ns 1046235 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59513206ns 1046240 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59513660ns 1046248 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59513831ns 1046251 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59514115ns 1046256 1a110850 fd5ff06f jal x0, -44 +59514399ns 1046261 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59514683ns 1046266 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59515081ns 1046273 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59515252ns 1046276 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59515706ns 1046284 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59515877ns 1046287 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59516161ns 1046292 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59516445ns 1046297 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59516729ns 1046302 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59517184ns 1046310 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59517355ns 1046313 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59517639ns 1046318 1a110850 fd5ff06f jal x0, -44 +59517923ns 1046323 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59518207ns 1046328 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59518605ns 1046335 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59518775ns 1046338 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59519230ns 1046346 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59519400ns 1046349 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59519685ns 1046354 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59519969ns 1046359 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59520253ns 1046364 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59520708ns 1046372 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59520878ns 1046375 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59521162ns 1046380 1a110850 fd5ff06f jal x0, -44 +59521446ns 1046385 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59521731ns 1046390 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59522128ns 1046397 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59522299ns 1046400 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59522754ns 1046408 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59522924ns 1046411 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59523208ns 1046416 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59523492ns 1046421 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59523777ns 1046426 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59524231ns 1046434 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59524402ns 1046437 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59524686ns 1046442 1a110850 fd5ff06f jal x0, -44 +59524970ns 1046447 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59525254ns 1046452 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59525652ns 1046459 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59525823ns 1046462 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59526277ns 1046470 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59526448ns 1046473 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59526732ns 1046478 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59527016ns 1046483 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59527300ns 1046488 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59527755ns 1046496 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59527925ns 1046499 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59528209ns 1046504 1a110850 fd5ff06f jal x0, -44 +59528494ns 1046509 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59528778ns 1046514 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59529176ns 1046521 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59529346ns 1046524 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59529801ns 1046532 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59529971ns 1046535 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59530255ns 1046540 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59530540ns 1046545 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59530824ns 1046550 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59531278ns 1046558 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59531449ns 1046561 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59531733ns 1046566 1a110850 fd5ff06f jal x0, -44 +59532017ns 1046571 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59532301ns 1046576 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59532699ns 1046583 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59532870ns 1046586 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59533324ns 1046594 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59533495ns 1046597 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59533779ns 1046602 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59534063ns 1046607 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59534347ns 1046612 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59534802ns 1046620 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59534972ns 1046623 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59535257ns 1046628 1a110850 fd5ff06f jal x0, -44 +59535541ns 1046633 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59535825ns 1046638 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59536223ns 1046645 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59536393ns 1046648 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59536848ns 1046656 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59537018ns 1046659 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59537303ns 1046664 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59537587ns 1046669 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59537871ns 1046674 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59538326ns 1046682 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59538496ns 1046685 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59538780ns 1046690 1a110850 fd5ff06f jal x0, -44 +59539064ns 1046695 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59539349ns 1046700 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59539746ns 1046707 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59539917ns 1046710 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59540371ns 1046718 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59540542ns 1046721 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59540826ns 1046726 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59541110ns 1046731 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59541394ns 1046736 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59541849ns 1046744 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59542020ns 1046747 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59542304ns 1046752 1a110850 fd5ff06f jal x0, -44 +59542588ns 1046757 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59542872ns 1046762 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59543270ns 1046769 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59543440ns 1046772 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59543895ns 1046780 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59544066ns 1046783 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59544350ns 1046788 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59544634ns 1046793 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59544918ns 1046798 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59545373ns 1046806 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59545543ns 1046809 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59545827ns 1046814 1a110850 fd5ff06f jal x0, -44 +59546112ns 1046819 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59546396ns 1046824 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59546794ns 1046831 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59546964ns 1046834 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59547419ns 1046842 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59547589ns 1046845 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59547873ns 1046850 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59548157ns 1046855 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59548442ns 1046860 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59548896ns 1046868 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59549067ns 1046871 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59549351ns 1046876 1a110850 fd5ff06f jal x0, -44 +59549635ns 1046881 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59549919ns 1046886 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59550317ns 1046893 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59550488ns 1046896 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59550942ns 1046904 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59551113ns 1046907 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59551397ns 1046912 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59551681ns 1046917 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59551965ns 1046922 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59552420ns 1046930 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59552590ns 1046933 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59552875ns 1046938 1a110850 fd5ff06f jal x0, -44 +59553159ns 1046943 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59553443ns 1046948 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59553841ns 1046955 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59554011ns 1046958 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59554466ns 1046966 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59554636ns 1046969 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59554920ns 1046974 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59555205ns 1046979 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59555489ns 1046984 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59555943ns 1046992 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59556114ns 1046995 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59556398ns 1047000 1a110850 fd5ff06f jal x0, -44 +59556682ns 1047005 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59556966ns 1047010 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59557364ns 1047017 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59557535ns 1047020 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59557989ns 1047028 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59558160ns 1047031 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59558444ns 1047036 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59558728ns 1047041 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59559012ns 1047046 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59559467ns 1047054 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59559638ns 1047057 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59559922ns 1047062 1a110850 fd5ff06f jal x0, -44 +59560206ns 1047067 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59560490ns 1047072 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59560888ns 1047079 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59561058ns 1047082 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59561513ns 1047090 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59561683ns 1047093 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59561968ns 1047098 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59562252ns 1047103 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59562536ns 1047108 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59562991ns 1047116 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59563161ns 1047119 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59563445ns 1047124 1a110850 fd5ff06f jal x0, -44 +59563729ns 1047129 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59564014ns 1047134 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59564411ns 1047141 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59564582ns 1047144 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59565037ns 1047152 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59565207ns 1047155 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59565491ns 1047160 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59565775ns 1047165 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59566060ns 1047170 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59566514ns 1047178 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59566685ns 1047181 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59566969ns 1047186 1a110850 fd5ff06f jal x0, -44 +59567253ns 1047191 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59567537ns 1047196 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59567935ns 1047203 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59568106ns 1047206 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59568560ns 1047214 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59568731ns 1047217 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59569015ns 1047222 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59569299ns 1047227 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59569583ns 1047232 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59570038ns 1047240 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59570208ns 1047243 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59570492ns 1047248 1a110850 fd5ff06f jal x0, -44 +59570777ns 1047253 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59571061ns 1047258 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59571459ns 1047265 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59571629ns 1047268 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59572084ns 1047276 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59572254ns 1047279 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59572538ns 1047284 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59572823ns 1047289 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59573107ns 1047294 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59573561ns 1047302 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59573732ns 1047305 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59574016ns 1047310 1a110850 fd5ff06f jal x0, -44 +59574300ns 1047315 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59574584ns 1047320 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59574982ns 1047327 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59575153ns 1047330 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59575607ns 1047338 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59575778ns 1047341 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59576062ns 1047346 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59576346ns 1047351 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59576630ns 1047356 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59577085ns 1047364 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59577255ns 1047367 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59577540ns 1047372 1a110850 fd5ff06f jal x0, -44 +59577824ns 1047377 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59578108ns 1047382 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59578506ns 1047389 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59578676ns 1047392 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59579131ns 1047400 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59579301ns 1047403 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59579586ns 1047408 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59579870ns 1047413 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59580154ns 1047418 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59580609ns 1047426 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59580779ns 1047429 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59581063ns 1047434 1a110850 fd5ff06f jal x0, -44 +59581347ns 1047439 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59581632ns 1047444 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59582029ns 1047451 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59582200ns 1047454 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59582655ns 1047462 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59582825ns 1047465 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59583109ns 1047470 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59583393ns 1047475 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59583677ns 1047480 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59584132ns 1047488 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59584303ns 1047491 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59584587ns 1047496 1a110850 fd5ff06f jal x0, -44 +59584871ns 1047501 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59585155ns 1047506 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59585553ns 1047513 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59585723ns 1047516 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59586178ns 1047524 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59586349ns 1047527 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59586633ns 1047532 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59586917ns 1047537 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59587201ns 1047542 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59587656ns 1047550 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59587826ns 1047553 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59588110ns 1047558 1a110850 fd5ff06f jal x0, -44 +59588395ns 1047563 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59588679ns 1047568 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59589077ns 1047575 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59589247ns 1047578 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59589702ns 1047586 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59589872ns 1047589 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59590156ns 1047594 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59590440ns 1047599 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59590725ns 1047604 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59591179ns 1047612 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59591350ns 1047615 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59591634ns 1047620 1a110850 fd5ff06f jal x0, -44 +59591918ns 1047625 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59592202ns 1047630 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59592600ns 1047637 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59592771ns 1047640 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59593225ns 1047648 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59593396ns 1047651 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59593680ns 1047656 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59593964ns 1047661 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59594248ns 1047666 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59594703ns 1047674 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59594873ns 1047677 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59595158ns 1047682 1a110850 fd5ff06f jal x0, -44 +59595442ns 1047687 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59595726ns 1047692 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59596124ns 1047699 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59596294ns 1047702 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59596749ns 1047710 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59596919ns 1047713 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59597203ns 1047718 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59597488ns 1047723 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59597772ns 1047728 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59598226ns 1047736 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59598397ns 1047739 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59598681ns 1047744 1a110850 fd5ff06f jal x0, -44 +59598965ns 1047749 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59599249ns 1047754 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59599647ns 1047761 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59599818ns 1047764 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59600272ns 1047772 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59600443ns 1047775 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59600727ns 1047780 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59601011ns 1047785 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59601295ns 1047790 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59601750ns 1047798 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59601921ns 1047801 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59602205ns 1047806 1a110850 fd5ff06f jal x0, -44 +59602489ns 1047811 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59602773ns 1047816 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59603171ns 1047823 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59603341ns 1047826 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59603796ns 1047834 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59603967ns 1047837 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59604251ns 1047842 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59604535ns 1047847 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59604819ns 1047852 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59605274ns 1047860 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59605444ns 1047863 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59605728ns 1047868 1a110850 fd5ff06f jal x0, -44 +59606012ns 1047873 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59606297ns 1047878 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59606694ns 1047885 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59606865ns 1047888 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59607320ns 1047896 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59607490ns 1047899 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59607774ns 1047904 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59608058ns 1047909 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59608343ns 1047914 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59608797ns 1047922 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59608968ns 1047925 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59609252ns 1047930 1a110850 fd5ff06f jal x0, -44 +59609536ns 1047935 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59609820ns 1047940 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59610218ns 1047947 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59610389ns 1047950 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59610843ns 1047958 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59611014ns 1047961 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59611298ns 1047966 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59611582ns 1047971 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59611866ns 1047976 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59612321ns 1047984 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59612491ns 1047987 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59612775ns 1047992 1a110850 fd5ff06f jal x0, -44 +59613060ns 1047997 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59613344ns 1048002 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59613742ns 1048009 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59613912ns 1048012 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59614367ns 1048020 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59614537ns 1048023 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59614821ns 1048028 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59615106ns 1048033 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59615390ns 1048038 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59615844ns 1048046 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59616015ns 1048049 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59616299ns 1048054 1a110850 fd5ff06f jal x0, -44 +59616583ns 1048059 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59616867ns 1048064 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59617265ns 1048071 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59617436ns 1048074 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59617890ns 1048082 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59618061ns 1048085 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59618345ns 1048090 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59618629ns 1048095 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59618913ns 1048100 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59619368ns 1048108 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59619538ns 1048111 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59619823ns 1048116 1a110850 fd5ff06f jal x0, -44 +59620107ns 1048121 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59620391ns 1048126 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59620789ns 1048133 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59620959ns 1048136 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59621414ns 1048144 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59621584ns 1048147 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59621869ns 1048152 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59622153ns 1048157 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59622437ns 1048162 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59622892ns 1048170 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59623062ns 1048173 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59623346ns 1048178 1a110850 fd5ff06f jal x0, -44 +59623630ns 1048183 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59623915ns 1048188 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59624312ns 1048195 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59624483ns 1048198 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59624938ns 1048206 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59625108ns 1048209 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59625392ns 1048214 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59625676ns 1048219 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59625960ns 1048224 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59626415ns 1048232 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59626586ns 1048235 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59626870ns 1048240 1a110850 fd5ff06f jal x0, -44 +59627154ns 1048245 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59627438ns 1048250 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59627836ns 1048257 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59628006ns 1048260 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59628461ns 1048268 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59628632ns 1048271 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59628916ns 1048276 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59629200ns 1048281 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59629484ns 1048286 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59629939ns 1048294 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59630109ns 1048297 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59630393ns 1048302 1a110850 fd5ff06f jal x0, -44 +59630678ns 1048307 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59630962ns 1048312 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59631360ns 1048319 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59631530ns 1048322 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59631985ns 1048330 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59632155ns 1048333 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59632439ns 1048338 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59632723ns 1048343 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59633008ns 1048348 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59633462ns 1048356 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59633633ns 1048359 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59633917ns 1048364 1a110850 fd5ff06f jal x0, -44 +59634201ns 1048369 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59634485ns 1048374 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59634883ns 1048381 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59635054ns 1048384 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59635508ns 1048392 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59635679ns 1048395 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59635963ns 1048400 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59636247ns 1048405 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59636531ns 1048410 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59636986ns 1048418 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59637156ns 1048421 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59637441ns 1048426 1a110850 fd5ff06f jal x0, -44 +59637725ns 1048431 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59638009ns 1048436 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59638407ns 1048443 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59638577ns 1048446 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59639032ns 1048454 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59639202ns 1048457 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59639487ns 1048462 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59639771ns 1048467 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59640055ns 1048472 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59640509ns 1048480 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59640680ns 1048483 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59640964ns 1048488 1a110850 fd5ff06f jal x0, -44 +59641248ns 1048493 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59641532ns 1048498 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59641930ns 1048505 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59642101ns 1048508 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59642555ns 1048516 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59642726ns 1048519 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59643010ns 1048524 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59643294ns 1048529 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59643578ns 1048534 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59644033ns 1048542 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59644204ns 1048545 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59644488ns 1048550 1a110850 fd5ff06f jal x0, -44 +59644772ns 1048555 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59645056ns 1048560 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59645454ns 1048567 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59645624ns 1048570 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59646079ns 1048578 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59646250ns 1048581 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59646534ns 1048586 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59646818ns 1048591 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59647102ns 1048596 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59647557ns 1048604 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59647727ns 1048607 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59648011ns 1048612 1a110850 fd5ff06f jal x0, -44 +59648295ns 1048617 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59648580ns 1048622 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59648977ns 1048629 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59649148ns 1048632 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59649603ns 1048640 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59649773ns 1048643 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59650057ns 1048648 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59650341ns 1048653 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59650626ns 1048658 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59651080ns 1048666 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59651251ns 1048669 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59651535ns 1048674 1a110850 fd5ff06f jal x0, -44 +59651819ns 1048679 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59652103ns 1048684 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59652501ns 1048691 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59652672ns 1048694 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59653126ns 1048702 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59653297ns 1048705 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59653581ns 1048710 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59653865ns 1048715 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59654149ns 1048720 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59654604ns 1048728 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59654774ns 1048731 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59655058ns 1048736 1a110850 fd5ff06f jal x0, -44 +59655343ns 1048741 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59655627ns 1048746 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59656025ns 1048753 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59656195ns 1048756 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59656650ns 1048764 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59656820ns 1048767 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59657104ns 1048772 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59657389ns 1048777 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59657673ns 1048782 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59658127ns 1048790 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59658298ns 1048793 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59658582ns 1048798 1a110850 fd5ff06f jal x0, -44 +59658866ns 1048803 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59659150ns 1048808 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59659548ns 1048815 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59659719ns 1048818 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59660173ns 1048826 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59660344ns 1048829 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59660628ns 1048834 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59660912ns 1048839 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59661196ns 1048844 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59661651ns 1048852 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59661821ns 1048855 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59662106ns 1048860 1a110850 fd5ff06f jal x0, -44 +59662390ns 1048865 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59662674ns 1048870 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59663072ns 1048877 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59663242ns 1048880 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59663697ns 1048888 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59663867ns 1048891 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59664152ns 1048896 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59664436ns 1048901 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59664720ns 1048906 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59665175ns 1048914 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59665345ns 1048917 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59665629ns 1048922 1a110850 fd5ff06f jal x0, -44 +59665913ns 1048927 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59666198ns 1048932 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59666595ns 1048939 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59666766ns 1048942 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59667221ns 1048950 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59667391ns 1048953 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59667675ns 1048958 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59667959ns 1048963 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59668243ns 1048968 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59668698ns 1048976 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59668869ns 1048979 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59669153ns 1048984 1a110850 fd5ff06f jal x0, -44 +59669437ns 1048989 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59669721ns 1048994 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59670119ns 1049001 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59670289ns 1049004 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59670744ns 1049012 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59670915ns 1049015 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59671199ns 1049020 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59671483ns 1049025 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59671767ns 1049030 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59672222ns 1049038 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59672392ns 1049041 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59672676ns 1049046 1a110850 fd5ff06f jal x0, -44 +59672961ns 1049051 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59673245ns 1049056 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59673643ns 1049063 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59673813ns 1049066 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59674268ns 1049074 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59674438ns 1049077 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59674722ns 1049082 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59675007ns 1049087 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59675291ns 1049092 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59675745ns 1049100 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59675916ns 1049103 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59676200ns 1049108 1a110850 fd5ff06f jal x0, -44 +59676484ns 1049113 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59676768ns 1049118 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59677166ns 1049125 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59677337ns 1049128 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59677791ns 1049136 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59677962ns 1049139 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59678246ns 1049144 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59678530ns 1049149 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59678814ns 1049154 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59679269ns 1049162 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59679439ns 1049165 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59679724ns 1049170 1a110850 fd5ff06f jal x0, -44 +59680008ns 1049175 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59680292ns 1049180 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59680690ns 1049187 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59680860ns 1049190 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59681315ns 1049198 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59681485ns 1049201 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59681770ns 1049206 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59682054ns 1049211 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59682338ns 1049216 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59682792ns 1049224 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59682963ns 1049227 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59683247ns 1049232 1a110850 fd5ff06f jal x0, -44 +59683531ns 1049237 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59683815ns 1049242 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59684213ns 1049249 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59684384ns 1049252 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59684838ns 1049260 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59685009ns 1049263 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59685293ns 1049268 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59685577ns 1049273 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59685861ns 1049278 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59686316ns 1049286 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59686487ns 1049289 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59686771ns 1049294 1a110850 fd5ff06f jal x0, -44 +59687055ns 1049299 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59687339ns 1049304 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59687737ns 1049311 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59687907ns 1049314 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59688362ns 1049322 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59688533ns 1049325 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59688817ns 1049330 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59689101ns 1049335 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59689385ns 1049340 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59689840ns 1049348 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59690010ns 1049351 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59690294ns 1049356 1a110850 fd5ff06f jal x0, -44 +59690578ns 1049361 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59690863ns 1049366 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59691260ns 1049373 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59691431ns 1049376 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59691886ns 1049384 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59692056ns 1049387 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59692340ns 1049392 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59692624ns 1049397 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59692909ns 1049402 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59693363ns 1049410 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59693534ns 1049413 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59693818ns 1049418 1a110850 fd5ff06f jal x0, -44 +59694102ns 1049423 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59694386ns 1049428 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59694784ns 1049435 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59694955ns 1049438 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59695409ns 1049446 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59695580ns 1049449 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59695864ns 1049454 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59696148ns 1049459 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59696432ns 1049464 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59696887ns 1049472 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59697057ns 1049475 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59697341ns 1049480 1a110850 fd5ff06f jal x0, -44 +59697626ns 1049485 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59697910ns 1049490 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59698308ns 1049497 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59698478ns 1049500 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59698933ns 1049508 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59699103ns 1049511 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59699387ns 1049516 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59699672ns 1049521 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59699956ns 1049526 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59700410ns 1049534 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59700581ns 1049537 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59700865ns 1049542 1a110850 fd5ff06f jal x0, -44 +59701149ns 1049547 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59701433ns 1049552 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59701831ns 1049559 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59702002ns 1049562 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59702456ns 1049570 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59702627ns 1049573 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59702911ns 1049578 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59703195ns 1049583 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59703479ns 1049588 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59703934ns 1049596 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59704104ns 1049599 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59704389ns 1049604 1a110850 fd5ff06f jal x0, -44 +59704673ns 1049609 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59704957ns 1049614 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59705355ns 1049621 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59705525ns 1049624 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59705980ns 1049632 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59706150ns 1049635 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59706435ns 1049640 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59706719ns 1049645 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59707003ns 1049650 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59707458ns 1049658 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59707628ns 1049661 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59707912ns 1049666 1a110850 fd5ff06f jal x0, -44 +59708196ns 1049671 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59708481ns 1049676 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59708878ns 1049683 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59709049ns 1049686 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59709504ns 1049694 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59709674ns 1049697 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59709958ns 1049702 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59710242ns 1049707 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59710527ns 1049712 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59710981ns 1049720 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59711152ns 1049723 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59711436ns 1049728 1a110850 fd5ff06f jal x0, -44 +59711720ns 1049733 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59712004ns 1049738 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59712402ns 1049745 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59712572ns 1049748 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59713027ns 1049756 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59713198ns 1049759 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59713482ns 1049764 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59713766ns 1049769 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59714050ns 1049774 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59714505ns 1049782 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59714675ns 1049785 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59714959ns 1049790 1a110850 fd5ff06f jal x0, -44 +59715244ns 1049795 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59715528ns 1049800 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59715926ns 1049807 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59716096ns 1049810 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59716551ns 1049818 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59716721ns 1049821 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59717005ns 1049826 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59717290ns 1049831 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59717574ns 1049836 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59718028ns 1049844 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59718199ns 1049847 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59718483ns 1049852 1a110850 fd5ff06f jal x0, -44 +59718767ns 1049857 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59719051ns 1049862 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59719449ns 1049869 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59719620ns 1049872 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59720074ns 1049880 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59720245ns 1049883 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59720529ns 1049888 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59720813ns 1049893 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59721097ns 1049898 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59721552ns 1049906 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59721722ns 1049909 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59722007ns 1049914 1a110850 fd5ff06f jal x0, -44 +59722291ns 1049919 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59722575ns 1049924 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59722973ns 1049931 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59723143ns 1049934 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59723598ns 1049942 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59723768ns 1049945 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59724053ns 1049950 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59724337ns 1049955 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59724621ns 1049960 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59725075ns 1049968 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59725246ns 1049971 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59725530ns 1049976 1a110850 fd5ff06f jal x0, -44 +59725814ns 1049981 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59726098ns 1049986 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59726496ns 1049993 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59726667ns 1049996 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59727121ns 1050004 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59727292ns 1050007 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59727576ns 1050012 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59727860ns 1050017 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59728144ns 1050022 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59728599ns 1050030 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59728770ns 1050033 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59729054ns 1050038 1a110850 fd5ff06f jal x0, -44 +59729338ns 1050043 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59729622ns 1050048 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59730020ns 1050055 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59730190ns 1050058 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59730645ns 1050066 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59730816ns 1050069 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59731100ns 1050074 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59731384ns 1050079 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59731668ns 1050084 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59732123ns 1050092 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59732293ns 1050095 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59732577ns 1050100 1a110850 fd5ff06f jal x0, -44 +59732861ns 1050105 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59733146ns 1050110 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59733543ns 1050117 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59733714ns 1050120 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59734169ns 1050128 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59734339ns 1050131 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59734623ns 1050136 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59734907ns 1050141 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59735192ns 1050146 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59735646ns 1050154 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59735817ns 1050157 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59736101ns 1050162 1a110850 fd5ff06f jal x0, -44 +59736385ns 1050167 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59736669ns 1050172 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59737067ns 1050179 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59737238ns 1050182 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59737692ns 1050190 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59737863ns 1050193 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59738147ns 1050198 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59738431ns 1050203 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59738715ns 1050208 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59739170ns 1050216 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59739340ns 1050219 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59739624ns 1050224 1a110850 fd5ff06f jal x0, -44 +59739909ns 1050229 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59740193ns 1050234 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59740591ns 1050241 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59740761ns 1050244 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59741216ns 1050252 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59741386ns 1050255 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59741670ns 1050260 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59741955ns 1050265 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59742239ns 1050270 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59742693ns 1050278 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59742864ns 1050281 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59743148ns 1050286 1a110850 fd5ff06f jal x0, -44 +59743432ns 1050291 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59743716ns 1050296 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59744114ns 1050303 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59744285ns 1050306 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59744739ns 1050314 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59744910ns 1050317 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59745194ns 1050322 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59745478ns 1050327 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59745762ns 1050332 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59746217ns 1050340 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59746387ns 1050343 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59746672ns 1050348 1a110850 fd5ff06f jal x0, -44 +59746956ns 1050353 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59747240ns 1050358 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59747638ns 1050365 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59747808ns 1050368 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59748263ns 1050376 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59748433ns 1050379 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59748718ns 1050384 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59749002ns 1050389 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59749286ns 1050394 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59749741ns 1050402 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59749911ns 1050405 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59750195ns 1050410 1a110850 fd5ff06f jal x0, -44 +59750479ns 1050415 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59750764ns 1050420 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59751161ns 1050427 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59751332ns 1050430 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59751787ns 1050438 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59751957ns 1050441 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59752241ns 1050446 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59752525ns 1050451 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59752810ns 1050456 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59753264ns 1050464 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59753435ns 1050467 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59753719ns 1050472 1a110850 fd5ff06f jal x0, -44 +59754003ns 1050477 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59754287ns 1050482 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59754685ns 1050489 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59754855ns 1050492 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59755310ns 1050500 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59755481ns 1050503 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59755765ns 1050508 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59756049ns 1050513 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59756333ns 1050518 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59756788ns 1050526 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59756958ns 1050529 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59757242ns 1050534 1a110850 fd5ff06f jal x0, -44 +59757527ns 1050539 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59757811ns 1050544 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59758209ns 1050551 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59758379ns 1050554 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59758834ns 1050562 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59759004ns 1050565 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59759288ns 1050570 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59759573ns 1050575 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59759857ns 1050580 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59760311ns 1050588 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59760482ns 1050591 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59760766ns 1050596 1a110850 fd5ff06f jal x0, -44 +59761050ns 1050601 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59761334ns 1050606 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59761732ns 1050613 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59761903ns 1050616 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59762357ns 1050624 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59762528ns 1050627 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59762812ns 1050632 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59763096ns 1050637 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59763380ns 1050642 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59763835ns 1050650 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59764005ns 1050653 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59764290ns 1050658 1a110850 fd5ff06f jal x0, -44 +59764574ns 1050663 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59764858ns 1050668 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59765256ns 1050675 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59765426ns 1050678 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59765881ns 1050686 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59766051ns 1050689 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59766336ns 1050694 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59766620ns 1050699 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59766904ns 1050704 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59767359ns 1050712 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59767529ns 1050715 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59767813ns 1050720 1a110850 fd5ff06f jal x0, -44 +59768097ns 1050725 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59768381ns 1050730 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59768779ns 1050737 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59768950ns 1050740 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59769404ns 1050748 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59769575ns 1050751 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59769859ns 1050756 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59770143ns 1050761 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59770427ns 1050766 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59770882ns 1050774 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59771053ns 1050777 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59771337ns 1050782 1a110850 fd5ff06f jal x0, -44 +59771621ns 1050787 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59771905ns 1050792 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59772303ns 1050799 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59772473ns 1050802 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59772928ns 1050810 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59773099ns 1050813 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59773383ns 1050818 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59773667ns 1050823 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59773951ns 1050828 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59774406ns 1050836 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59774576ns 1050839 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59774860ns 1050844 1a110850 fd5ff06f jal x0, -44 +59775144ns 1050849 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59775429ns 1050854 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59775826ns 1050861 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59775997ns 1050864 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59776452ns 1050872 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59776622ns 1050875 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59776906ns 1050880 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59777190ns 1050885 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59777475ns 1050890 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59777929ns 1050898 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59778100ns 1050901 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59778384ns 1050906 1a110850 fd5ff06f jal x0, -44 +59778668ns 1050911 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59778952ns 1050916 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59779350ns 1050923 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59779521ns 1050926 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59779975ns 1050934 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59780146ns 1050937 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59780430ns 1050942 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59780714ns 1050947 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59780998ns 1050952 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59781453ns 1050960 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59781623ns 1050963 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59781907ns 1050968 1a110850 fd5ff06f jal x0, -44 +59782192ns 1050973 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59782476ns 1050978 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59782874ns 1050985 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59783044ns 1050988 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59783499ns 1050996 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59783669ns 1050999 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59783953ns 1051004 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59784238ns 1051009 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59784522ns 1051014 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59784976ns 1051022 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59785147ns 1051025 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59785431ns 1051030 1a110850 fd5ff06f jal x0, -44 +59785715ns 1051035 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59785999ns 1051040 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59786397ns 1051047 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59786568ns 1051050 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59787022ns 1051058 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59787193ns 1051061 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59787477ns 1051066 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59787761ns 1051071 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59788045ns 1051076 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59788500ns 1051084 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59788671ns 1051087 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59788955ns 1051092 1a110850 fd5ff06f jal x0, -44 +59789239ns 1051097 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59789523ns 1051102 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59789921ns 1051109 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59790091ns 1051112 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59790546ns 1051120 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59790716ns 1051123 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59791001ns 1051128 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59791285ns 1051133 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59791569ns 1051138 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59792024ns 1051146 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59792194ns 1051149 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59792478ns 1051154 1a110850 fd5ff06f jal x0, -44 +59792762ns 1051159 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59793047ns 1051164 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59793444ns 1051171 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59793615ns 1051174 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59794070ns 1051182 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59794240ns 1051185 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59794524ns 1051190 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59794808ns 1051195 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59795093ns 1051200 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59795547ns 1051208 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59795718ns 1051211 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59796002ns 1051216 1a110850 fd5ff06f jal x0, -44 +59796286ns 1051221 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59796570ns 1051226 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59796968ns 1051233 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59797138ns 1051236 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59797593ns 1051244 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59797764ns 1051247 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59798048ns 1051252 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59798332ns 1051257 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59798616ns 1051262 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59799071ns 1051270 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59799241ns 1051273 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59799525ns 1051278 1a110850 fd5ff06f jal x0, -44 +59799810ns 1051283 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59800094ns 1051288 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59800492ns 1051295 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59800662ns 1051298 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59801117ns 1051306 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59801287ns 1051309 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59801571ns 1051314 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59801856ns 1051319 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59802140ns 1051324 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59802594ns 1051332 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59802765ns 1051335 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59803049ns 1051340 1a110850 fd5ff06f jal x0, -44 +59803333ns 1051345 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59803617ns 1051350 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59804015ns 1051357 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59804186ns 1051360 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59804640ns 1051368 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59804811ns 1051371 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59805095ns 1051376 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59805379ns 1051381 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59805663ns 1051386 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59806118ns 1051394 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59806288ns 1051397 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59806573ns 1051402 1a110850 fd5ff06f jal x0, -44 +59806857ns 1051407 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59807141ns 1051412 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59807539ns 1051419 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59807709ns 1051422 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59808164ns 1051430 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59808334ns 1051433 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59808619ns 1051438 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59808903ns 1051443 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59809187ns 1051448 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59809642ns 1051456 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59809812ns 1051459 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59810096ns 1051464 1a110850 fd5ff06f jal x0, -44 +59810380ns 1051469 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59810664ns 1051474 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59811062ns 1051481 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59811233ns 1051484 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59811687ns 1051492 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59811858ns 1051495 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59812142ns 1051500 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59812426ns 1051505 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59812710ns 1051510 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59813165ns 1051518 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59813336ns 1051521 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59813620ns 1051526 1a110850 fd5ff06f jal x0, -44 +59813904ns 1051531 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59814188ns 1051536 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59814586ns 1051543 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59814756ns 1051546 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59815211ns 1051554 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59815382ns 1051557 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59815666ns 1051562 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59815950ns 1051567 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59816234ns 1051572 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59816689ns 1051580 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59816859ns 1051583 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59817143ns 1051588 1a110850 fd5ff06f jal x0, -44 +59817427ns 1051593 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59817712ns 1051598 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59818109ns 1051605 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59818280ns 1051608 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59818735ns 1051616 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59818905ns 1051619 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59819189ns 1051624 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59819473ns 1051629 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59819758ns 1051634 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59820212ns 1051642 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59820383ns 1051645 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59820667ns 1051650 1a110850 fd5ff06f jal x0, -44 +59820951ns 1051655 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59821235ns 1051660 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59821633ns 1051667 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59821804ns 1051670 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59822258ns 1051678 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59822429ns 1051681 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59822713ns 1051686 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59822997ns 1051691 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59823281ns 1051696 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59823736ns 1051704 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59823906ns 1051707 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59824191ns 1051712 1a110850 fd5ff06f jal x0, -44 +59824475ns 1051717 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59824759ns 1051722 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59825157ns 1051729 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59825327ns 1051732 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59825782ns 1051740 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59825952ns 1051743 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59826236ns 1051748 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59826521ns 1051753 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59826805ns 1051758 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59827259ns 1051766 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59827430ns 1051769 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59827714ns 1051774 1a110850 fd5ff06f jal x0, -44 +59827998ns 1051779 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59828282ns 1051784 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59828680ns 1051791 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59828851ns 1051794 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59829305ns 1051802 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59829476ns 1051805 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59829760ns 1051810 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59830044ns 1051815 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59830328ns 1051820 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59830783ns 1051828 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59830954ns 1051831 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59831238ns 1051836 1a110850 fd5ff06f jal x0, -44 +59831522ns 1051841 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59831806ns 1051846 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59832204ns 1051853 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59832374ns 1051856 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59832829ns 1051864 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59832999ns 1051867 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59833284ns 1051872 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59833568ns 1051877 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59833852ns 1051882 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59834307ns 1051890 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59834477ns 1051893 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59834761ns 1051898 1a110850 fd5ff06f jal x0, -44 +59835045ns 1051903 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59835330ns 1051908 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59835727ns 1051915 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59835898ns 1051918 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59836353ns 1051926 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59836523ns 1051929 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59836807ns 1051934 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59837091ns 1051939 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59837376ns 1051944 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59837830ns 1051952 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59838001ns 1051955 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59838285ns 1051960 1a110850 fd5ff06f jal x0, -44 +59838569ns 1051965 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59838853ns 1051970 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59839251ns 1051977 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59839421ns 1051980 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59839876ns 1051988 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59840047ns 1051991 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59840331ns 1051996 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59840615ns 1052001 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59840899ns 1052006 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59841354ns 1052014 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59841524ns 1052017 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59841808ns 1052022 1a110850 fd5ff06f jal x0, -44 +59842093ns 1052027 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59842377ns 1052032 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59842775ns 1052039 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59842945ns 1052042 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59843400ns 1052050 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59843570ns 1052053 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59843854ns 1052058 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59844139ns 1052063 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59844423ns 1052068 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59844877ns 1052076 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59845048ns 1052079 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59845332ns 1052084 1a110850 fd5ff06f jal x0, -44 +59845616ns 1052089 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59845900ns 1052094 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59846298ns 1052101 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59846469ns 1052104 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59846923ns 1052112 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59847094ns 1052115 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59847378ns 1052120 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59847662ns 1052125 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59847946ns 1052130 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59848401ns 1052138 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59848571ns 1052141 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59848856ns 1052146 1a110850 fd5ff06f jal x0, -44 +59849140ns 1052151 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59849424ns 1052156 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59849822ns 1052163 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59849992ns 1052166 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59850447ns 1052174 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59850617ns 1052177 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59850902ns 1052182 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59851186ns 1052187 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59851470ns 1052192 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59851925ns 1052200 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59852095ns 1052203 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59852379ns 1052208 1a110850 fd5ff06f jal x0, -44 +59852663ns 1052213 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59852947ns 1052218 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59853345ns 1052225 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59853516ns 1052228 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59853970ns 1052236 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59854141ns 1052239 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59854425ns 1052244 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59854709ns 1052249 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59854993ns 1052254 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59855448ns 1052262 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59855619ns 1052265 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59855903ns 1052270 1a110850 fd5ff06f jal x0, -44 +59856187ns 1052275 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59856471ns 1052280 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59856869ns 1052287 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59857039ns 1052290 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59857494ns 1052298 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59857665ns 1052301 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59857949ns 1052306 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59858233ns 1052311 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59858517ns 1052316 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59858972ns 1052324 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59859142ns 1052327 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59859426ns 1052332 1a110850 fd5ff06f jal x0, -44 +59859711ns 1052337 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59859995ns 1052342 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59860392ns 1052349 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59860563ns 1052352 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59861018ns 1052360 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59861188ns 1052363 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59861472ns 1052368 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59861756ns 1052373 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59862041ns 1052378 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59862495ns 1052386 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59862666ns 1052389 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59862950ns 1052394 1a110850 fd5ff06f jal x0, -44 +59863234ns 1052399 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59863518ns 1052404 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59863916ns 1052411 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59864087ns 1052414 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59864541ns 1052422 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59864712ns 1052425 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59864996ns 1052430 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59865280ns 1052435 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59865564ns 1052440 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59866019ns 1052448 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59866189ns 1052451 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59866474ns 1052456 1a110850 fd5ff06f jal x0, -44 +59866758ns 1052461 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59867042ns 1052466 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59867440ns 1052473 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59867610ns 1052476 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59868065ns 1052484 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59868235ns 1052487 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59868519ns 1052492 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59868804ns 1052497 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59869088ns 1052502 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59869542ns 1052510 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59869713ns 1052513 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59869997ns 1052518 1a110850 fd5ff06f jal x0, -44 +59870281ns 1052523 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59870565ns 1052528 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59870963ns 1052535 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59871134ns 1052538 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59871588ns 1052546 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59871759ns 1052549 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59872043ns 1052554 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59872327ns 1052559 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59872611ns 1052564 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59873066ns 1052572 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59873237ns 1052575 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59873521ns 1052580 1a110850 fd5ff06f jal x0, -44 +59873805ns 1052585 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59874089ns 1052590 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59874487ns 1052597 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59874657ns 1052600 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59875112ns 1052608 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59875282ns 1052611 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59875567ns 1052616 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59875851ns 1052621 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59876135ns 1052626 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59876590ns 1052634 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59876760ns 1052637 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59877044ns 1052642 1a110850 fd5ff06f jal x0, -44 +59877328ns 1052647 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59877613ns 1052652 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59878010ns 1052659 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59878181ns 1052662 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59878636ns 1052670 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59878806ns 1052673 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59879090ns 1052678 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59879374ns 1052683 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59879659ns 1052688 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59880113ns 1052696 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59880284ns 1052699 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59880568ns 1052704 1a110850 fd5ff06f jal x0, -44 +59880852ns 1052709 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59881136ns 1052714 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59881534ns 1052721 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59881704ns 1052724 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59882159ns 1052732 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59882330ns 1052735 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59882614ns 1052740 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59882898ns 1052745 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59883182ns 1052750 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59883637ns 1052758 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59883807ns 1052761 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59884091ns 1052766 1a110850 fd5ff06f jal x0, -44 +59884376ns 1052771 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59884660ns 1052776 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59885058ns 1052783 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59885228ns 1052786 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59885683ns 1052794 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59885853ns 1052797 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59886137ns 1052802 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59886422ns 1052807 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59886706ns 1052812 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59887160ns 1052820 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59887331ns 1052823 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59887615ns 1052828 1a110850 fd5ff06f jal x0, -44 +59887899ns 1052833 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59888183ns 1052838 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59888581ns 1052845 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59888752ns 1052848 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59889206ns 1052856 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59889377ns 1052859 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59889661ns 1052864 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59889945ns 1052869 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59890229ns 1052874 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59890684ns 1052882 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59890854ns 1052885 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59891139ns 1052890 1a110850 fd5ff06f jal x0, -44 +59891423ns 1052895 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59891707ns 1052900 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59892105ns 1052907 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59892275ns 1052910 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59892730ns 1052918 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59892900ns 1052921 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59893185ns 1052926 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59893469ns 1052931 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59893753ns 1052936 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59894208ns 1052944 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59894378ns 1052947 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59894662ns 1052952 1a110850 fd5ff06f jal x0, -44 +59894946ns 1052957 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59895231ns 1052962 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59895628ns 1052969 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59895799ns 1052972 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59896253ns 1052980 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59896424ns 1052983 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59896708ns 1052988 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59896992ns 1052993 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59897276ns 1052998 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59897731ns 1053006 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59897902ns 1053009 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59898186ns 1053014 1a110850 fd5ff06f jal x0, -44 +59898470ns 1053019 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59898754ns 1053024 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59899152ns 1053031 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59899322ns 1053034 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59899777ns 1053042 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59899948ns 1053045 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59900232ns 1053050 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59900516ns 1053055 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59900800ns 1053060 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59901255ns 1053068 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59901425ns 1053071 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59901709ns 1053076 1a110850 fd5ff06f jal x0, -44 +59901994ns 1053081 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59902278ns 1053086 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59902675ns 1053093 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59902846ns 1053096 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59903301ns 1053104 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59903471ns 1053107 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59903755ns 1053112 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59904039ns 1053117 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59904324ns 1053122 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59904778ns 1053130 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59904949ns 1053133 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59905233ns 1053138 1a110850 fd5ff06f jal x0, -44 +59905517ns 1053143 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59905801ns 1053148 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59906199ns 1053155 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59906370ns 1053158 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59906824ns 1053166 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59906995ns 1053169 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59907279ns 1053174 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59907563ns 1053179 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59907847ns 1053184 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59908302ns 1053192 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59908472ns 1053195 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59908757ns 1053200 1a110850 fd5ff06f jal x0, -44 +59909041ns 1053205 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59909325ns 1053210 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59909723ns 1053217 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59909893ns 1053220 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59910348ns 1053228 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59910518ns 1053231 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59910802ns 1053236 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59911087ns 1053241 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59911371ns 1053246 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59911825ns 1053254 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59911996ns 1053257 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59912280ns 1053262 1a110850 fd5ff06f jal x0, -44 +59912564ns 1053267 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59912848ns 1053272 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59913246ns 1053279 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59913417ns 1053282 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59913871ns 1053290 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59914042ns 1053293 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59914326ns 1053298 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59914610ns 1053303 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59914894ns 1053308 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59915349ns 1053316 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59915520ns 1053319 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59915804ns 1053324 1a110850 fd5ff06f jal x0, -44 +59916088ns 1053329 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59916372ns 1053334 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59916770ns 1053341 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59916940ns 1053344 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59917395ns 1053352 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59917565ns 1053355 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59917850ns 1053360 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59918134ns 1053365 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59918418ns 1053370 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59918873ns 1053378 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59919043ns 1053381 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59919327ns 1053386 1a110850 fd5ff06f jal x0, -44 +59919611ns 1053391 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59919896ns 1053396 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59920293ns 1053403 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59920464ns 1053406 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59920919ns 1053414 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59921089ns 1053417 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59921373ns 1053422 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59921657ns 1053427 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59921942ns 1053432 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59922396ns 1053440 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59922567ns 1053443 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59922851ns 1053448 1a110850 fd5ff06f jal x0, -44 +59923135ns 1053453 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59923419ns 1053458 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59923817ns 1053465 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59923987ns 1053468 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59924442ns 1053476 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59924613ns 1053479 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59924897ns 1053484 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59925181ns 1053489 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59925465ns 1053494 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59925920ns 1053502 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59926090ns 1053505 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59926374ns 1053510 1a110850 fd5ff06f jal x0, -44 +59926659ns 1053515 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59926943ns 1053520 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59927341ns 1053527 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59927511ns 1053530 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59927966ns 1053538 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59928136ns 1053541 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59928420ns 1053546 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59928705ns 1053551 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59928989ns 1053556 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59929443ns 1053564 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59929614ns 1053567 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59929898ns 1053572 1a110850 fd5ff06f jal x0, -44 +59930182ns 1053577 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59930466ns 1053582 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59930864ns 1053589 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59931035ns 1053592 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59931489ns 1053600 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59931660ns 1053603 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59931944ns 1053608 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59932228ns 1053613 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59932512ns 1053618 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59932967ns 1053626 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59933137ns 1053629 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59933422ns 1053634 1a110850 fd5ff06f jal x0, -44 +59933706ns 1053639 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59933990ns 1053644 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59934388ns 1053651 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59934558ns 1053654 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59935013ns 1053662 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59935183ns 1053665 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59935468ns 1053670 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59935752ns 1053675 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59936036ns 1053680 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59936491ns 1053688 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59936661ns 1053691 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59936945ns 1053696 1a110850 fd5ff06f jal x0, -44 +59937229ns 1053701 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59937514ns 1053706 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59937911ns 1053713 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59938082ns 1053716 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59938536ns 1053724 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59938707ns 1053727 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59938991ns 1053732 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59939275ns 1053737 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59939559ns 1053742 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59940014ns 1053750 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59940185ns 1053753 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59940469ns 1053758 1a110850 fd5ff06f jal x0, -44 +59940753ns 1053763 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59941037ns 1053768 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59941435ns 1053775 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59941605ns 1053778 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59942060ns 1053786 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59942231ns 1053789 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59942515ns 1053794 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59942799ns 1053799 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59943083ns 1053804 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59943538ns 1053812 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59943708ns 1053815 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59943992ns 1053820 1a110850 fd5ff06f jal x0, -44 +59944277ns 1053825 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59944561ns 1053830 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59944959ns 1053837 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59945129ns 1053840 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59945584ns 1053848 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59945754ns 1053851 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59946038ns 1053856 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59946322ns 1053861 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59946607ns 1053866 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59947061ns 1053874 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59947232ns 1053877 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59947516ns 1053882 1a110850 fd5ff06f jal x0, -44 +59947800ns 1053887 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59948084ns 1053892 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59948482ns 1053899 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59948653ns 1053902 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59949107ns 1053910 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59949278ns 1053913 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59949562ns 1053918 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59949846ns 1053923 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59950130ns 1053928 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59950585ns 1053936 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59950755ns 1053939 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59951040ns 1053944 1a110850 fd5ff06f jal x0, -44 +59951324ns 1053949 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59951608ns 1053954 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59952006ns 1053961 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59952176ns 1053964 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59952631ns 1053972 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59952801ns 1053975 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59953085ns 1053980 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59953370ns 1053985 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59953654ns 1053990 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59954108ns 1053998 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59954279ns 1054001 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59954563ns 1054006 1a110850 fd5ff06f jal x0, -44 +59954847ns 1054011 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59955131ns 1054016 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59955529ns 1054023 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59955700ns 1054026 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59956154ns 1054034 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59956325ns 1054037 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59956609ns 1054042 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59956893ns 1054047 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59957177ns 1054052 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59957632ns 1054060 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59957803ns 1054063 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59958087ns 1054068 1a110850 fd5ff06f jal x0, -44 +59958371ns 1054073 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59958655ns 1054078 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59959053ns 1054085 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59959223ns 1054088 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59959678ns 1054096 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59959848ns 1054099 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59960133ns 1054104 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59960417ns 1054109 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59960701ns 1054114 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59961156ns 1054122 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59961326ns 1054125 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59961610ns 1054130 1a110850 fd5ff06f jal x0, -44 +59961894ns 1054135 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59962179ns 1054140 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59962576ns 1054147 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59962747ns 1054150 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59963202ns 1054158 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59963372ns 1054161 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59963656ns 1054166 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59963940ns 1054171 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59964225ns 1054176 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59964679ns 1054184 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59964850ns 1054187 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59965134ns 1054192 1a110850 fd5ff06f jal x0, -44 +59965418ns 1054197 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59965702ns 1054202 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59966100ns 1054209 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59966271ns 1054212 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59966725ns 1054220 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59966896ns 1054223 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59967180ns 1054228 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59967464ns 1054233 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59967748ns 1054238 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59968203ns 1054246 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59968373ns 1054249 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59968657ns 1054254 1a110850 fd5ff06f jal x0, -44 +59968942ns 1054259 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59969226ns 1054264 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59969624ns 1054271 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59969794ns 1054274 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59970249ns 1054282 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59970419ns 1054285 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59970703ns 1054290 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59970988ns 1054295 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59971272ns 1054300 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59971726ns 1054308 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59971897ns 1054311 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59972181ns 1054316 1a110850 fd5ff06f jal x0, -44 +59972465ns 1054321 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59972749ns 1054326 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59973147ns 1054333 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59973318ns 1054336 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59973772ns 1054344 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59973943ns 1054347 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59974227ns 1054352 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59974511ns 1054357 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59974795ns 1054362 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59975250ns 1054370 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59975420ns 1054373 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59975705ns 1054378 1a110850 fd5ff06f jal x0, -44 +59975989ns 1054383 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59976273ns 1054388 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59976671ns 1054395 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59976841ns 1054398 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59977296ns 1054406 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59977466ns 1054409 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59977751ns 1054414 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59978035ns 1054419 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59978319ns 1054424 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59978774ns 1054432 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59978944ns 1054435 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59979228ns 1054440 1a110850 fd5ff06f jal x0, -44 +59979512ns 1054445 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59979797ns 1054450 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59980194ns 1054457 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59980365ns 1054460 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59980819ns 1054468 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59980990ns 1054471 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59981274ns 1054476 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59981558ns 1054481 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59981842ns 1054486 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59982297ns 1054494 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59982468ns 1054497 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59982752ns 1054502 1a110850 fd5ff06f jal x0, -44 +59983036ns 1054507 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59983320ns 1054512 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59983718ns 1054519 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59983888ns 1054522 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59984343ns 1054530 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59984514ns 1054533 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59984798ns 1054538 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59985082ns 1054543 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59985366ns 1054548 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59985821ns 1054556 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59985991ns 1054559 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59986275ns 1054564 1a110850 fd5ff06f jal x0, -44 +59986560ns 1054569 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59986844ns 1054574 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59987242ns 1054581 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59987412ns 1054584 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59987867ns 1054592 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59988037ns 1054595 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59988321ns 1054600 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59988605ns 1054605 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59988890ns 1054610 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59989344ns 1054618 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59989515ns 1054621 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59989799ns 1054626 1a110850 fd5ff06f jal x0, -44 +59990083ns 1054631 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59990367ns 1054636 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59990765ns 1054643 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59990936ns 1054646 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59991390ns 1054654 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59991561ns 1054657 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59991845ns 1054662 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59992129ns 1054667 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59992413ns 1054672 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59992868ns 1054680 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59993038ns 1054683 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59993323ns 1054688 1a110850 fd5ff06f jal x0, -44 +59993607ns 1054693 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59993891ns 1054698 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59994289ns 1054705 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59994459ns 1054708 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59994914ns 1054716 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59995084ns 1054719 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59995368ns 1054724 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59995653ns 1054729 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59995937ns 1054734 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59996391ns 1054742 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +59996562ns 1054745 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +59996846ns 1054750 1a110850 fd5ff06f jal x0, -44 +59997130ns 1054755 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59997414ns 1054760 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +59997812ns 1054767 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59997983ns 1054770 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59998437ns 1054778 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +59998608ns 1054781 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +59998892ns 1054786 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +59999176ns 1054791 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +59999460ns 1054796 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +59999915ns 1054804 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60000086ns 1054807 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60000370ns 1054812 1a110850 fd5ff06f jal x0, -44 +60000654ns 1054817 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60000938ns 1054822 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60001336ns 1054829 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60001506ns 1054832 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60001961ns 1054840 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60002131ns 1054843 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60002416ns 1054848 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60002700ns 1054853 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60002984ns 1054858 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60003439ns 1054866 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60003609ns 1054869 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60003893ns 1054874 1a110850 fd5ff06f jal x0, -44 +60004177ns 1054879 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60004462ns 1054884 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60004859ns 1054891 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60005030ns 1054894 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60005485ns 1054902 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60005655ns 1054905 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60005939ns 1054910 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60006223ns 1054915 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60006508ns 1054920 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60006962ns 1054928 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60007133ns 1054931 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60007417ns 1054936 1a110850 fd5ff06f jal x0, -44 +60007701ns 1054941 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60007985ns 1054946 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60008383ns 1054953 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60008554ns 1054956 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60009008ns 1054964 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60009179ns 1054967 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60009463ns 1054972 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60009747ns 1054977 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60010031ns 1054982 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60010486ns 1054990 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60010656ns 1054993 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60010940ns 1054998 1a110850 fd5ff06f jal x0, -44 +60011225ns 1055003 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60011509ns 1055008 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60011907ns 1055015 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60012077ns 1055018 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60012532ns 1055026 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60012702ns 1055029 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60012986ns 1055034 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60013271ns 1055039 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60013555ns 1055044 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60014009ns 1055052 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60014180ns 1055055 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60014464ns 1055060 1a110850 fd5ff06f jal x0, -44 +60014748ns 1055065 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60015032ns 1055070 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60015430ns 1055077 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60015601ns 1055080 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60016055ns 1055088 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60016226ns 1055091 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60016510ns 1055096 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60016794ns 1055101 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60017078ns 1055106 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60017533ns 1055114 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60017703ns 1055117 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60017988ns 1055122 1a110850 fd5ff06f jal x0, -44 +60018272ns 1055127 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60018556ns 1055132 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60018954ns 1055139 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60019124ns 1055142 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60019579ns 1055150 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60019749ns 1055153 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60020034ns 1055158 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60020318ns 1055163 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60020602ns 1055168 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60021057ns 1055176 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60021227ns 1055179 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60021511ns 1055184 1a110850 fd5ff06f jal x0, -44 +60021795ns 1055189 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60022080ns 1055194 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60022477ns 1055201 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60022648ns 1055204 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60023103ns 1055212 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60023273ns 1055215 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60023557ns 1055220 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60023841ns 1055225 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60024125ns 1055230 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60024580ns 1055238 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60024751ns 1055241 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60025035ns 1055246 1a110850 fd5ff06f jal x0, -44 +60025319ns 1055251 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60025603ns 1055256 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60026001ns 1055263 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60026171ns 1055266 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60026626ns 1055274 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60026797ns 1055277 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60027081ns 1055282 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60027365ns 1055287 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60027649ns 1055292 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60028104ns 1055300 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60028274ns 1055303 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60028558ns 1055308 1a110850 fd5ff06f jal x0, -44 +60028843ns 1055313 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60029127ns 1055318 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60029525ns 1055325 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60029695ns 1055328 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60030150ns 1055336 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60030320ns 1055339 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60030604ns 1055344 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60030888ns 1055349 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60031173ns 1055354 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60031627ns 1055362 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60031798ns 1055365 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60032082ns 1055370 1a110850 fd5ff06f jal x0, -44 +60032366ns 1055375 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60032650ns 1055380 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60033048ns 1055387 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60033219ns 1055390 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60033673ns 1055398 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60033844ns 1055401 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60034128ns 1055406 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60034412ns 1055411 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60034696ns 1055416 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60035151ns 1055424 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60035321ns 1055427 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60035606ns 1055432 1a110850 fd5ff06f jal x0, -44 +60035890ns 1055437 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60036174ns 1055442 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60036572ns 1055449 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60036742ns 1055452 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60037197ns 1055460 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60037367ns 1055463 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60037651ns 1055468 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60037936ns 1055473 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60038220ns 1055478 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60038674ns 1055486 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60038845ns 1055489 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60039129ns 1055494 1a110850 fd5ff06f jal x0, -44 +60039413ns 1055499 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60039697ns 1055504 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60040095ns 1055511 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60040266ns 1055514 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60040720ns 1055522 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60040891ns 1055525 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60041175ns 1055530 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60041459ns 1055535 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60041743ns 1055540 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60042198ns 1055548 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60042369ns 1055551 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60042653ns 1055556 1a110850 fd5ff06f jal x0, -44 +60042937ns 1055561 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60043221ns 1055566 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60043619ns 1055573 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60043789ns 1055576 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60044244ns 1055584 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60044415ns 1055587 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60044699ns 1055592 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60044983ns 1055597 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60045267ns 1055602 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60045722ns 1055610 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60045892ns 1055613 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60046176ns 1055618 1a110850 fd5ff06f jal x0, -44 +60046460ns 1055623 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60046745ns 1055628 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60047142ns 1055635 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60047313ns 1055638 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60047768ns 1055646 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60047938ns 1055649 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60048222ns 1055654 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60048506ns 1055659 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60048791ns 1055664 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60049245ns 1055672 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60049416ns 1055675 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60049700ns 1055680 1a110850 fd5ff06f jal x0, -44 +60049984ns 1055685 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60050268ns 1055690 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60050666ns 1055697 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60050837ns 1055700 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60051291ns 1055708 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60051462ns 1055711 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60051746ns 1055716 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60052030ns 1055721 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60052314ns 1055726 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60052769ns 1055734 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60052939ns 1055737 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60053223ns 1055742 1a110850 fd5ff06f jal x0, -44 +60053508ns 1055747 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60053792ns 1055752 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60054190ns 1055759 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60054360ns 1055762 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60054815ns 1055770 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60054985ns 1055773 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60055269ns 1055778 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60055554ns 1055783 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60055838ns 1055788 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60056292ns 1055796 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60056463ns 1055799 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60056747ns 1055804 1a110850 fd5ff06f jal x0, -44 +60057031ns 1055809 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60057315ns 1055814 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60057713ns 1055821 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60057884ns 1055824 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60058338ns 1055832 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60058509ns 1055835 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60058793ns 1055840 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60059077ns 1055845 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60059361ns 1055850 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60059816ns 1055858 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60059986ns 1055861 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60060271ns 1055866 1a110850 fd5ff06f jal x0, -44 +60060555ns 1055871 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60060839ns 1055876 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60061237ns 1055883 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60061407ns 1055886 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60061862ns 1055894 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60062032ns 1055897 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60062317ns 1055902 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60062601ns 1055907 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60062885ns 1055912 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60063340ns 1055920 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60063510ns 1055923 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60063794ns 1055928 1a110850 fd5ff06f jal x0, -44 +60064078ns 1055933 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60064363ns 1055938 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60064760ns 1055945 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60064931ns 1055948 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60065386ns 1055956 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60065556ns 1055959 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60065840ns 1055964 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60066124ns 1055969 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60066408ns 1055974 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60066863ns 1055982 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60067034ns 1055985 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60067318ns 1055990 1a110850 fd5ff06f jal x0, -44 +60067602ns 1055995 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60067886ns 1056000 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60068284ns 1056007 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60068454ns 1056010 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60068909ns 1056018 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60069080ns 1056021 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60069364ns 1056026 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60069648ns 1056031 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60069932ns 1056036 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60070387ns 1056044 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60070557ns 1056047 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60070841ns 1056052 1a110850 fd5ff06f jal x0, -44 +60071126ns 1056057 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60071410ns 1056062 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60071808ns 1056069 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60071978ns 1056072 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60072433ns 1056080 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60072603ns 1056083 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60072887ns 1056088 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60073171ns 1056093 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60073456ns 1056098 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60073910ns 1056106 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60074081ns 1056109 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60074365ns 1056114 1a110850 fd5ff06f jal x0, -44 +60074649ns 1056119 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60074933ns 1056124 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60075331ns 1056131 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60075502ns 1056134 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60075956ns 1056142 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60076127ns 1056145 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60076411ns 1056150 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60076695ns 1056155 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60076979ns 1056160 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60077434ns 1056168 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60077604ns 1056171 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60077889ns 1056176 1a110850 fd5ff06f jal x0, -44 +60078173ns 1056181 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60078457ns 1056186 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60078855ns 1056193 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60079025ns 1056196 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60079480ns 1056204 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60079650ns 1056207 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60079935ns 1056212 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60080219ns 1056217 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60080503ns 1056222 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60080957ns 1056230 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60081128ns 1056233 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60081412ns 1056238 1a110850 fd5ff06f jal x0, -44 +60081696ns 1056243 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60081980ns 1056248 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60082378ns 1056255 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60082549ns 1056258 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60083003ns 1056266 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60083174ns 1056269 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60083458ns 1056274 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60083742ns 1056279 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60084026ns 1056284 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60084481ns 1056292 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60084652ns 1056295 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60084936ns 1056300 1a110850 fd5ff06f jal x0, -44 +60085220ns 1056305 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60085504ns 1056310 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60085902ns 1056317 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60086072ns 1056320 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60086527ns 1056328 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60086698ns 1056331 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60086982ns 1056336 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60087266ns 1056341 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60087550ns 1056346 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60088005ns 1056354 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60088175ns 1056357 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60088459ns 1056362 1a110850 fd5ff06f jal x0, -44 +60088743ns 1056367 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60089028ns 1056372 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60089425ns 1056379 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60089596ns 1056382 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60090051ns 1056390 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60090221ns 1056393 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60090505ns 1056398 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60090789ns 1056403 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60091074ns 1056408 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60091528ns 1056416 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60091699ns 1056419 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60091983ns 1056424 1a110850 fd5ff06f jal x0, -44 +60092267ns 1056429 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60092551ns 1056434 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60092949ns 1056441 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60093120ns 1056444 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60093574ns 1056452 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60093745ns 1056455 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60094029ns 1056460 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60094313ns 1056465 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60094597ns 1056470 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60095052ns 1056478 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60095222ns 1056481 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60095506ns 1056486 1a110850 fd5ff06f jal x0, -44 +60095791ns 1056491 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60096075ns 1056496 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60096473ns 1056503 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60096643ns 1056506 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60097098ns 1056514 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60097268ns 1056517 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60097552ns 1056522 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60097837ns 1056527 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60098121ns 1056532 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60098575ns 1056540 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60098746ns 1056543 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60099030ns 1056548 1a110850 fd5ff06f jal x0, -44 +60099314ns 1056553 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60099598ns 1056558 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60099996ns 1056565 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60100167ns 1056568 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60100621ns 1056576 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60100792ns 1056579 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60101076ns 1056584 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60101360ns 1056589 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60101644ns 1056594 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60102099ns 1056602 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60102269ns 1056605 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60102554ns 1056610 1a110850 fd5ff06f jal x0, -44 +60102838ns 1056615 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60103122ns 1056620 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60103520ns 1056627 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60103690ns 1056630 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60104145ns 1056638 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60104315ns 1056641 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60104600ns 1056646 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60104884ns 1056651 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60105168ns 1056656 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60105623ns 1056664 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60105793ns 1056667 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60106077ns 1056672 1a110850 fd5ff06f jal x0, -44 +60106361ns 1056677 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60106646ns 1056682 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60107043ns 1056689 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60107214ns 1056692 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60107669ns 1056700 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60107839ns 1056703 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60108123ns 1056708 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60108407ns 1056713 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60108691ns 1056718 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60109146ns 1056726 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60109317ns 1056729 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60109601ns 1056734 1a110850 fd5ff06f jal x0, -44 +60109885ns 1056739 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60110169ns 1056744 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60110567ns 1056751 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60110737ns 1056754 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60111192ns 1056762 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60111363ns 1056765 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60111647ns 1056770 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60111931ns 1056775 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60112215ns 1056780 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60112670ns 1056788 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60112840ns 1056791 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60113124ns 1056796 1a110850 fd5ff06f jal x0, -44 +60113409ns 1056801 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60113693ns 1056806 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60114091ns 1056813 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60114261ns 1056816 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60114716ns 1056824 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60114886ns 1056827 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60115170ns 1056832 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60115455ns 1056837 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60115739ns 1056842 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60116193ns 1056850 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60116364ns 1056853 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60116648ns 1056858 1a110850 fd5ff06f jal x0, -44 +60116932ns 1056863 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60117216ns 1056868 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60117614ns 1056875 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60117785ns 1056878 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60118239ns 1056886 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60118410ns 1056889 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60118694ns 1056894 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60118978ns 1056899 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60119262ns 1056904 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60119717ns 1056912 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60119887ns 1056915 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60120172ns 1056920 1a110850 fd5ff06f jal x0, -44 +60120456ns 1056925 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60120740ns 1056930 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60121138ns 1056937 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60121308ns 1056940 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60121763ns 1056948 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60121933ns 1056951 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60122218ns 1056956 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60122502ns 1056961 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60122786ns 1056966 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60123240ns 1056974 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60123411ns 1056977 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60123695ns 1056982 1a110850 fd5ff06f jal x0, -44 +60123979ns 1056987 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60124263ns 1056992 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60124661ns 1056999 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60124832ns 1057002 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60125286ns 1057010 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60125457ns 1057013 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60125741ns 1057018 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60126025ns 1057023 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60126309ns 1057028 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60126764ns 1057036 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60126935ns 1057039 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60127219ns 1057044 1a110850 fd5ff06f jal x0, -44 +60127503ns 1057049 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60127787ns 1057054 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60128185ns 1057061 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60128355ns 1057064 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60128810ns 1057072 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60128981ns 1057075 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60129265ns 1057080 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60129549ns 1057085 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60129833ns 1057090 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60130288ns 1057098 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60130458ns 1057101 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60130742ns 1057106 1a110850 fd5ff06f jal x0, -44 +60131026ns 1057111 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60131311ns 1057116 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60131708ns 1057123 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60131879ns 1057126 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60132334ns 1057134 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60132504ns 1057137 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60132788ns 1057142 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60133072ns 1057147 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60133357ns 1057152 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60133811ns 1057160 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60133982ns 1057163 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60134266ns 1057168 1a110850 fd5ff06f jal x0, -44 +60134550ns 1057173 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60134834ns 1057178 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60135232ns 1057185 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60135403ns 1057188 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60135857ns 1057196 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60136028ns 1057199 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60136312ns 1057204 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60136596ns 1057209 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60136880ns 1057214 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60137335ns 1057222 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60137505ns 1057225 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60137789ns 1057230 1a110850 fd5ff06f jal x0, -44 +60138074ns 1057235 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60138358ns 1057240 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60138756ns 1057247 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60138926ns 1057250 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60139381ns 1057258 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60139551ns 1057261 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60139835ns 1057266 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60140120ns 1057271 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60140404ns 1057276 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60140858ns 1057284 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60141029ns 1057287 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60141313ns 1057292 1a110850 fd5ff06f jal x0, -44 +60141597ns 1057297 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60141881ns 1057302 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60142279ns 1057309 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60142450ns 1057312 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60142904ns 1057320 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60143075ns 1057323 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60143359ns 1057328 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60143643ns 1057333 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60143927ns 1057338 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60144382ns 1057346 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60144552ns 1057349 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60144837ns 1057354 1a110850 fd5ff06f jal x0, -44 +60145121ns 1057359 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60145405ns 1057364 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60145803ns 1057371 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60145973ns 1057374 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60146428ns 1057382 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60146598ns 1057385 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60146883ns 1057390 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60147167ns 1057395 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60147451ns 1057400 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60147906ns 1057408 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60148076ns 1057411 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60148360ns 1057416 1a110850 fd5ff06f jal x0, -44 +60148644ns 1057421 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60148929ns 1057426 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60149326ns 1057433 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60149497ns 1057436 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60149952ns 1057444 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60150122ns 1057447 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60150406ns 1057452 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60150690ns 1057457 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60150975ns 1057462 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60151429ns 1057470 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60151600ns 1057473 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60151884ns 1057478 1a110850 fd5ff06f jal x0, -44 +60152168ns 1057483 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60152452ns 1057488 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60152850ns 1057495 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60153020ns 1057498 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60153475ns 1057506 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60153646ns 1057509 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60153930ns 1057514 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60154214ns 1057519 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60154498ns 1057524 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60154953ns 1057532 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60155123ns 1057535 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60155407ns 1057540 1a110850 fd5ff06f jal x0, -44 +60155692ns 1057545 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60155976ns 1057550 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60156374ns 1057557 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60156544ns 1057560 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60156999ns 1057568 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60157169ns 1057571 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60157453ns 1057576 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60157738ns 1057581 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60158022ns 1057586 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60158476ns 1057594 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60158647ns 1057597 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60158931ns 1057602 1a110850 fd5ff06f jal x0, -44 +60159215ns 1057607 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60159499ns 1057612 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60159897ns 1057619 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60160068ns 1057622 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60160522ns 1057630 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60160693ns 1057633 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60160977ns 1057638 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60161261ns 1057643 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60161545ns 1057648 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60162000ns 1057656 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60162170ns 1057659 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60162455ns 1057664 1a110850 fd5ff06f jal x0, -44 +60162739ns 1057669 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60163023ns 1057674 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60163421ns 1057681 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60163591ns 1057684 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60164046ns 1057692 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60164216ns 1057695 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60164501ns 1057700 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60164785ns 1057705 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60165069ns 1057710 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60165523ns 1057718 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60165694ns 1057721 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60165978ns 1057726 1a110850 fd5ff06f jal x0, -44 +60166262ns 1057731 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60166546ns 1057736 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60166944ns 1057743 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60167115ns 1057746 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60167569ns 1057754 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60167740ns 1057757 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60168024ns 1057762 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60168308ns 1057767 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60168592ns 1057772 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60169047ns 1057780 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60169218ns 1057783 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60169502ns 1057788 1a110850 fd5ff06f jal x0, -44 +60169786ns 1057793 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60170070ns 1057798 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60170468ns 1057805 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60170638ns 1057808 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60171093ns 1057816 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60171264ns 1057819 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60171548ns 1057824 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60171832ns 1057829 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60172116ns 1057834 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60172571ns 1057842 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60172741ns 1057845 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60173025ns 1057850 1a110850 fd5ff06f jal x0, -44 +60173309ns 1057855 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60173594ns 1057860 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60173991ns 1057867 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60174162ns 1057870 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60174617ns 1057878 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60174787ns 1057881 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60175071ns 1057886 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60175355ns 1057891 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60175640ns 1057896 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60176094ns 1057904 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60176265ns 1057907 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60176549ns 1057912 1a110850 fd5ff06f jal x0, -44 +60176833ns 1057917 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60177117ns 1057922 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60177515ns 1057929 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60177686ns 1057932 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60178140ns 1057940 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60178311ns 1057943 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60178595ns 1057948 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60178879ns 1057953 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60179163ns 1057958 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60179618ns 1057966 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60179788ns 1057969 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60180072ns 1057974 1a110850 fd5ff06f jal x0, -44 +60180357ns 1057979 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60180641ns 1057984 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60181039ns 1057991 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60181209ns 1057994 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60181664ns 1058002 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60181834ns 1058005 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60182118ns 1058010 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60182403ns 1058015 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60182687ns 1058020 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60183141ns 1058028 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60183312ns 1058031 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60183596ns 1058036 1a110850 fd5ff06f jal x0, -44 +60183880ns 1058041 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60184164ns 1058046 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60184562ns 1058053 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60184733ns 1058056 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60185187ns 1058064 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60185358ns 1058067 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60185642ns 1058072 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60185926ns 1058077 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60186210ns 1058082 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60186665ns 1058090 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60186835ns 1058093 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60187120ns 1058098 1a110850 fd5ff06f jal x0, -44 +60187404ns 1058103 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60187688ns 1058108 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60188086ns 1058115 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60188256ns 1058118 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60188711ns 1058126 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60188881ns 1058129 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60189166ns 1058134 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60189450ns 1058139 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60189734ns 1058144 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60190189ns 1058152 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60190359ns 1058155 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60190643ns 1058160 1a110850 fd5ff06f jal x0, -44 +60190927ns 1058165 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60191212ns 1058170 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60191609ns 1058177 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60191780ns 1058180 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60192235ns 1058188 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60192405ns 1058191 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60192689ns 1058196 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60192973ns 1058201 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60193258ns 1058206 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60193712ns 1058214 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60193883ns 1058217 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60194167ns 1058222 1a110850 fd5ff06f jal x0, -44 +60194451ns 1058227 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60194735ns 1058232 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60195133ns 1058239 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60195303ns 1058242 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60195758ns 1058250 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60195929ns 1058253 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60196213ns 1058258 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60196497ns 1058263 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60196781ns 1058268 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60197236ns 1058276 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60197406ns 1058279 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60197690ns 1058284 1a110850 fd5ff06f jal x0, -44 +60197975ns 1058289 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60198259ns 1058294 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60198657ns 1058301 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60198827ns 1058304 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60199282ns 1058312 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60199452ns 1058315 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60199736ns 1058320 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60200021ns 1058325 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60200305ns 1058330 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60200759ns 1058338 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60200930ns 1058341 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60201214ns 1058346 1a110850 fd5ff06f jal x0, -44 +60201498ns 1058351 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60201782ns 1058356 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60202180ns 1058363 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60202351ns 1058366 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60202805ns 1058374 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60202976ns 1058377 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60203260ns 1058382 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60203544ns 1058387 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60203828ns 1058392 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60204283ns 1058400 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60204453ns 1058403 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60204738ns 1058408 1a110850 fd5ff06f jal x0, -44 +60205022ns 1058413 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60205306ns 1058418 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60205704ns 1058425 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60205874ns 1058428 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60206329ns 1058436 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60206499ns 1058439 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60206784ns 1058444 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60207068ns 1058449 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60207352ns 1058454 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60207807ns 1058462 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60207977ns 1058465 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60208261ns 1058470 1a110850 fd5ff06f jal x0, -44 +60208545ns 1058475 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60208829ns 1058480 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60209227ns 1058487 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60209398ns 1058490 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60209852ns 1058498 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60210023ns 1058501 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60210307ns 1058506 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60210591ns 1058511 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60210875ns 1058516 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60211330ns 1058524 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60211501ns 1058527 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60211785ns 1058532 1a110850 fd5ff06f jal x0, -44 +60212069ns 1058537 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60212353ns 1058542 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60212751ns 1058549 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60212921ns 1058552 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60213376ns 1058560 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60213547ns 1058563 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60213831ns 1058568 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60214115ns 1058573 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60214399ns 1058578 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60214854ns 1058586 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60215024ns 1058589 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60215308ns 1058594 1a110850 fd5ff06f jal x0, -44 +60215592ns 1058599 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60215877ns 1058604 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60216274ns 1058611 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60216445ns 1058614 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60216900ns 1058622 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60217070ns 1058625 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60217354ns 1058630 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60217638ns 1058635 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60217923ns 1058640 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60218377ns 1058648 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60218548ns 1058651 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60218832ns 1058656 1a110850 fd5ff06f jal x0, -44 +60219116ns 1058661 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60219400ns 1058666 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60219798ns 1058673 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60219969ns 1058676 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60220423ns 1058684 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60220594ns 1058687 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60220878ns 1058692 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60221162ns 1058697 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60221446ns 1058702 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60221901ns 1058710 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60222071ns 1058713 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60222355ns 1058718 1a110850 fd5ff06f jal x0, -44 +60222640ns 1058723 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60222924ns 1058728 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60223322ns 1058735 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60223492ns 1058738 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60223947ns 1058746 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60224117ns 1058749 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60224401ns 1058754 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60224686ns 1058759 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60224970ns 1058764 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60225424ns 1058772 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60225595ns 1058775 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60225879ns 1058780 1a110850 fd5ff06f jal x0, -44 +60226163ns 1058785 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60226447ns 1058790 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60226845ns 1058797 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60227016ns 1058800 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60227470ns 1058808 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60227641ns 1058811 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60227925ns 1058816 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60228209ns 1058821 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60228493ns 1058826 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60228948ns 1058834 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60229119ns 1058837 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60229403ns 1058842 1a110850 fd5ff06f jal x0, -44 +60229687ns 1058847 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60229971ns 1058852 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60230369ns 1058859 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60230539ns 1058862 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60230994ns 1058870 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60231164ns 1058873 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60231449ns 1058878 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60231733ns 1058883 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60232017ns 1058888 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60232472ns 1058896 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60232642ns 1058899 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60232926ns 1058904 1a110850 fd5ff06f jal x0, -44 +60233210ns 1058909 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60233495ns 1058914 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60233892ns 1058921 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60234063ns 1058924 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60234518ns 1058932 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60234688ns 1058935 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60234972ns 1058940 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60235256ns 1058945 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60235541ns 1058950 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60235995ns 1058958 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60236166ns 1058961 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60236450ns 1058966 1a110850 fd5ff06f jal x0, -44 +60236734ns 1058971 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60237018ns 1058976 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60237416ns 1058983 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60237586ns 1058986 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60238041ns 1058994 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60238212ns 1058997 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60238496ns 1059002 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60238780ns 1059007 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60239064ns 1059012 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60239519ns 1059020 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60239689ns 1059023 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60239973ns 1059028 1a110850 fd5ff06f jal x0, -44 +60240258ns 1059033 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60240542ns 1059038 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60240940ns 1059045 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60241110ns 1059048 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60241565ns 1059056 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60241735ns 1059059 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60242019ns 1059064 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60242304ns 1059069 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60242588ns 1059074 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60243042ns 1059082 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60243213ns 1059085 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60243497ns 1059090 1a110850 fd5ff06f jal x0, -44 +60243781ns 1059095 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60244065ns 1059100 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60244463ns 1059107 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60244634ns 1059110 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60245088ns 1059118 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60245259ns 1059121 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60245543ns 1059126 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60245827ns 1059131 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60246111ns 1059136 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60246566ns 1059144 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60246736ns 1059147 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60247021ns 1059152 1a110850 fd5ff06f jal x0, -44 +60247305ns 1059157 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60247589ns 1059162 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60247987ns 1059169 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60248157ns 1059172 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60248612ns 1059180 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60248782ns 1059183 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60249067ns 1059188 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60249351ns 1059193 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60249635ns 1059198 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60250090ns 1059206 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60250260ns 1059209 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60250544ns 1059214 1a110850 fd5ff06f jal x0, -44 +60250828ns 1059219 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60251112ns 1059224 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60251510ns 1059231 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60251681ns 1059234 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60252135ns 1059242 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60252306ns 1059245 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60252590ns 1059250 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60252874ns 1059255 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60253158ns 1059260 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60253613ns 1059268 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60253784ns 1059271 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60254068ns 1059276 1a110850 fd5ff06f jal x0, -44 +60254352ns 1059281 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60254636ns 1059286 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60255034ns 1059293 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60255204ns 1059296 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60255659ns 1059304 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60255830ns 1059307 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60256114ns 1059312 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60256398ns 1059317 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60256682ns 1059322 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60257137ns 1059330 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60257307ns 1059333 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60257591ns 1059338 1a110850 fd5ff06f jal x0, -44 +60257875ns 1059343 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60258160ns 1059348 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60258557ns 1059355 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60258728ns 1059358 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60259183ns 1059366 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60259353ns 1059369 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60259637ns 1059374 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60259921ns 1059379 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60260206ns 1059384 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60260660ns 1059392 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60260831ns 1059395 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60261115ns 1059400 1a110850 fd5ff06f jal x0, -44 +60261399ns 1059405 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60261683ns 1059410 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60262081ns 1059417 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60262252ns 1059420 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60262706ns 1059428 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60262877ns 1059431 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60263161ns 1059436 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60263445ns 1059441 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60263729ns 1059446 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60264184ns 1059454 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60264354ns 1059457 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60264639ns 1059462 1a110850 fd5ff06f jal x0, -44 +60264923ns 1059467 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60265207ns 1059472 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60265605ns 1059479 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60265775ns 1059482 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60266230ns 1059490 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60266400ns 1059493 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60266684ns 1059498 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60266969ns 1059503 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60267253ns 1059508 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60267707ns 1059516 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60267878ns 1059519 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60268162ns 1059524 1a110850 fd5ff06f jal x0, -44 +60268446ns 1059529 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60268730ns 1059534 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60269128ns 1059541 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60269299ns 1059544 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60269753ns 1059552 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60269924ns 1059555 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60270208ns 1059560 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60270492ns 1059565 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60270776ns 1059570 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60271231ns 1059578 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60271402ns 1059581 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60271686ns 1059586 1a110850 fd5ff06f jal x0, -44 +60271970ns 1059591 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60272254ns 1059596 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60272652ns 1059603 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60272822ns 1059606 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60273277ns 1059614 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60273447ns 1059617 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60273732ns 1059622 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60274016ns 1059627 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60274300ns 1059632 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60274755ns 1059640 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60274925ns 1059643 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60275209ns 1059648 1a110850 fd5ff06f jal x0, -44 +60275493ns 1059653 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60275778ns 1059658 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60276175ns 1059665 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60276346ns 1059668 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60276801ns 1059676 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60276971ns 1059679 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60277255ns 1059684 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60277539ns 1059689 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60277824ns 1059694 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60278278ns 1059702 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60278449ns 1059705 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60278733ns 1059710 1a110850 fd5ff06f jal x0, -44 +60279017ns 1059715 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60279301ns 1059720 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60279699ns 1059727 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60279869ns 1059730 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60280324ns 1059738 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60280495ns 1059741 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60280779ns 1059746 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60281063ns 1059751 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60281347ns 1059756 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60281802ns 1059764 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60281972ns 1059767 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60282256ns 1059772 1a110850 fd5ff06f jal x0, -44 +60282541ns 1059777 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60282825ns 1059782 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60283223ns 1059789 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60283393ns 1059792 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60283848ns 1059800 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60284018ns 1059803 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60284302ns 1059808 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60284587ns 1059813 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60284871ns 1059818 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60285325ns 1059826 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60285496ns 1059829 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60285780ns 1059834 1a110850 fd5ff06f jal x0, -44 +60286064ns 1059839 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60286348ns 1059844 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60286746ns 1059851 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60286917ns 1059854 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60287371ns 1059862 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60287542ns 1059865 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60287826ns 1059870 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60288110ns 1059875 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60288394ns 1059880 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60288849ns 1059888 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60289019ns 1059891 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60289304ns 1059896 1a110850 fd5ff06f jal x0, -44 +60289588ns 1059901 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60289872ns 1059906 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60290270ns 1059913 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60290440ns 1059916 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60290895ns 1059924 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60291065ns 1059927 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60291350ns 1059932 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60291634ns 1059937 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60291918ns 1059942 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60292373ns 1059950 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60292543ns 1059953 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60292827ns 1059958 1a110850 fd5ff06f jal x0, -44 +60293111ns 1059963 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60293395ns 1059968 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60293793ns 1059975 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60293964ns 1059978 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60294418ns 1059986 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60294589ns 1059989 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60294873ns 1059994 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60295157ns 1059999 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60295441ns 1060004 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60295896ns 1060012 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60296067ns 1060015 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60296351ns 1060020 1a110850 fd5ff06f jal x0, -44 +60296635ns 1060025 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60296919ns 1060030 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60297317ns 1060037 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60297487ns 1060040 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60297942ns 1060048 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60298113ns 1060051 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60298397ns 1060056 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60298681ns 1060061 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60298965ns 1060066 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60299420ns 1060074 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60299590ns 1060077 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60299874ns 1060082 1a110850 fd5ff06f jal x0, -44 +60300159ns 1060087 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60300443ns 1060092 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60300840ns 1060099 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60301011ns 1060102 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60301466ns 1060110 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60301636ns 1060113 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60301920ns 1060118 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60302204ns 1060123 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60302489ns 1060128 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60302943ns 1060136 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60303114ns 1060139 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60303398ns 1060144 1a110850 fd5ff06f jal x0, -44 +60303682ns 1060149 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60303966ns 1060154 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60304364ns 1060161 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60304535ns 1060164 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60304989ns 1060172 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60305160ns 1060175 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60305444ns 1060180 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60305728ns 1060185 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60306012ns 1060190 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60306467ns 1060198 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60306637ns 1060201 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60306922ns 1060206 1a110850 fd5ff06f jal x0, -44 +60307206ns 1060211 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60307490ns 1060216 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60307888ns 1060223 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60308058ns 1060226 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60308513ns 1060234 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60308683ns 1060237 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60308967ns 1060242 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60309252ns 1060247 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60309536ns 1060252 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60309990ns 1060260 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60310161ns 1060263 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60310445ns 1060268 1a110850 fd5ff06f jal x0, -44 +60310729ns 1060273 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60311013ns 1060278 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60311411ns 1060285 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60311582ns 1060288 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60312036ns 1060296 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60312207ns 1060299 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60312491ns 1060304 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60312775ns 1060309 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60313059ns 1060314 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60313514ns 1060322 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60313685ns 1060325 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60313969ns 1060330 1a110850 fd5ff06f jal x0, -44 +60314253ns 1060335 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60314537ns 1060340 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60314935ns 1060347 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60315105ns 1060350 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60315560ns 1060358 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60315730ns 1060361 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60316015ns 1060366 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60316299ns 1060371 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60316583ns 1060376 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60317038ns 1060384 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60317208ns 1060387 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60317492ns 1060392 1a110850 fd5ff06f jal x0, -44 +60317776ns 1060397 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60318061ns 1060402 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60318458ns 1060409 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60318629ns 1060412 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60319084ns 1060420 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60319254ns 1060423 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60319538ns 1060428 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60319822ns 1060433 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60320107ns 1060438 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60320561ns 1060446 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60320732ns 1060449 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60321016ns 1060454 1a110850 fd5ff06f jal x0, -44 +60321300ns 1060459 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60321584ns 1060464 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60321982ns 1060471 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60322152ns 1060474 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60322607ns 1060482 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60322778ns 1060485 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60323062ns 1060490 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60323346ns 1060495 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60323630ns 1060500 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60324085ns 1060508 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60324255ns 1060511 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60324539ns 1060516 1a110850 fd5ff06f jal x0, -44 +60324824ns 1060521 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60325108ns 1060526 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60325506ns 1060533 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60325676ns 1060536 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60326131ns 1060544 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60326301ns 1060547 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60326585ns 1060552 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60326870ns 1060557 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60327154ns 1060562 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60327608ns 1060570 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60327779ns 1060573 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60328063ns 1060578 1a110850 fd5ff06f jal x0, -44 +60328347ns 1060583 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60328631ns 1060588 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60329029ns 1060595 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60329200ns 1060598 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60329654ns 1060606 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60329825ns 1060609 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60330109ns 1060614 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60330393ns 1060619 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60330677ns 1060624 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60331132ns 1060632 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60331302ns 1060635 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60331587ns 1060640 1a110850 fd5ff06f jal x0, -44 +60331871ns 1060645 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60332155ns 1060650 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60332553ns 1060657 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60332723ns 1060660 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60333178ns 1060668 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60333348ns 1060671 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60333633ns 1060676 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60333917ns 1060681 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60334201ns 1060686 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60334656ns 1060694 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60334826ns 1060697 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60335110ns 1060702 1a110850 fd5ff06f jal x0, -44 +60335394ns 1060707 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60335679ns 1060712 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60336076ns 1060719 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60336247ns 1060722 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60336701ns 1060730 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60336872ns 1060733 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60337156ns 1060738 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60337440ns 1060743 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60337724ns 1060748 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60338179ns 1060756 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60338350ns 1060759 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60338634ns 1060764 1a110850 fd5ff06f jal x0, -44 +60338918ns 1060769 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60339202ns 1060774 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60339600ns 1060781 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60339770ns 1060784 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60340225ns 1060792 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60340396ns 1060795 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60340680ns 1060800 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60340964ns 1060805 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60341248ns 1060810 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60341703ns 1060818 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60341873ns 1060821 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60342157ns 1060826 1a110850 fd5ff06f jal x0, -44 +60342442ns 1060831 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60342726ns 1060836 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60343123ns 1060843 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60343294ns 1060846 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60343749ns 1060854 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60343919ns 1060857 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60344203ns 1060862 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60344487ns 1060867 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60344772ns 1060872 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60345226ns 1060880 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60345397ns 1060883 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60345681ns 1060888 1a110850 fd5ff06f jal x0, -44 +60345965ns 1060893 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60346249ns 1060898 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60346647ns 1060905 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60346818ns 1060908 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60347272ns 1060916 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60347443ns 1060919 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60347727ns 1060924 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60348011ns 1060929 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60348295ns 1060934 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60348750ns 1060942 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60348920ns 1060945 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60349205ns 1060950 1a110850 fd5ff06f jal x0, -44 +60349489ns 1060955 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60349773ns 1060960 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60350171ns 1060967 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60350341ns 1060970 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60350796ns 1060978 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60350966ns 1060981 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60351250ns 1060986 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60351535ns 1060991 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60351819ns 1060996 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60352273ns 1061004 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60352444ns 1061007 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60352728ns 1061012 1a110850 fd5ff06f jal x0, -44 +60353012ns 1061017 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60353296ns 1061022 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60353694ns 1061029 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60353865ns 1061032 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60354319ns 1061040 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60354490ns 1061043 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60354774ns 1061048 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60355058ns 1061053 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60355342ns 1061058 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60355797ns 1061066 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60355968ns 1061069 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60356252ns 1061074 1a110850 fd5ff06f jal x0, -44 +60356536ns 1061079 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60356820ns 1061084 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60357218ns 1061091 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60357388ns 1061094 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60357843ns 1061102 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60358013ns 1061105 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60358298ns 1061110 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60358582ns 1061115 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60358866ns 1061120 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60359321ns 1061128 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60359491ns 1061131 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60359775ns 1061136 1a110850 fd5ff06f jal x0, -44 +60360059ns 1061141 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60360344ns 1061146 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60360741ns 1061153 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60360912ns 1061156 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60361367ns 1061164 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60361537ns 1061167 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60361821ns 1061172 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60362105ns 1061177 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60362390ns 1061182 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60362844ns 1061190 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60363015ns 1061193 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60363299ns 1061198 1a110850 fd5ff06f jal x0, -44 +60363583ns 1061203 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60363867ns 1061208 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60364265ns 1061215 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60364435ns 1061218 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60364890ns 1061226 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60365061ns 1061229 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60365345ns 1061234 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60365629ns 1061239 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60365913ns 1061244 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60366368ns 1061252 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60366538ns 1061255 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60366822ns 1061260 1a110850 fd5ff06f jal x0, -44 +60367107ns 1061265 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60367391ns 1061270 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60367789ns 1061277 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60367959ns 1061280 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60368414ns 1061288 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60368584ns 1061291 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60368868ns 1061296 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60369153ns 1061301 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60369437ns 1061306 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60369891ns 1061314 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60370062ns 1061317 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60370346ns 1061322 1a110850 fd5ff06f jal x0, -44 +60370630ns 1061327 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60370914ns 1061332 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60371312ns 1061339 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60371483ns 1061342 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60371937ns 1061350 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60372108ns 1061353 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60372392ns 1061358 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60372676ns 1061363 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60372960ns 1061368 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60373415ns 1061376 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60373585ns 1061379 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60373870ns 1061384 1a110850 fd5ff06f jal x0, -44 +60374154ns 1061389 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60374438ns 1061394 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60374836ns 1061401 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60375006ns 1061404 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60375461ns 1061412 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60375631ns 1061415 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60375916ns 1061420 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60376200ns 1061425 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60376484ns 1061430 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60376939ns 1061438 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60377109ns 1061441 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60377393ns 1061446 1a110850 fd5ff06f jal x0, -44 +60377677ns 1061451 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60377962ns 1061456 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60378359ns 1061463 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60378530ns 1061466 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60378984ns 1061474 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60379155ns 1061477 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60379439ns 1061482 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60379723ns 1061487 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60380007ns 1061492 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60380462ns 1061500 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60380633ns 1061503 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60380917ns 1061508 1a110850 fd5ff06f jal x0, -44 +60381201ns 1061513 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60381485ns 1061518 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60381883ns 1061525 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60382053ns 1061528 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60382508ns 1061536 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60382679ns 1061539 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60382963ns 1061544 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60383247ns 1061549 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60383531ns 1061554 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60383986ns 1061562 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60384156ns 1061565 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60384440ns 1061570 1a110850 fd5ff06f jal x0, -44 +60384725ns 1061575 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60385009ns 1061580 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60385407ns 1061587 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60385577ns 1061590 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60386032ns 1061598 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60386202ns 1061601 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60386486ns 1061606 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60386770ns 1061611 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60387055ns 1061616 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60387509ns 1061624 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60387680ns 1061627 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60387964ns 1061632 1a110850 fd5ff06f jal x0, -44 +60388248ns 1061637 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60388532ns 1061642 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60388930ns 1061649 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60389101ns 1061652 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60389555ns 1061660 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60389726ns 1061663 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60390010ns 1061668 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60390294ns 1061673 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60390578ns 1061678 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60391033ns 1061686 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60391203ns 1061689 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60391488ns 1061694 1a110850 fd5ff06f jal x0, -44 +60391772ns 1061699 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60392056ns 1061704 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60392454ns 1061711 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60392624ns 1061714 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60393079ns 1061722 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60393249ns 1061725 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60393533ns 1061730 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60393818ns 1061735 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60394102ns 1061740 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60394556ns 1061748 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60394727ns 1061751 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60395011ns 1061756 1a110850 fd5ff06f jal x0, -44 +60395295ns 1061761 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60395579ns 1061766 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60395977ns 1061773 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60396148ns 1061776 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60396602ns 1061784 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60396773ns 1061787 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60397057ns 1061792 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60397341ns 1061797 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60397625ns 1061802 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60398080ns 1061810 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60398251ns 1061813 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60398535ns 1061818 1a110850 fd5ff06f jal x0, -44 +60398819ns 1061823 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60399103ns 1061828 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60399501ns 1061835 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60399671ns 1061838 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60400126ns 1061846 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60400296ns 1061849 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60400581ns 1061854 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60400865ns 1061859 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60401149ns 1061864 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60401604ns 1061872 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60401774ns 1061875 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60402058ns 1061880 1a110850 fd5ff06f jal x0, -44 +60402342ns 1061885 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60402627ns 1061890 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60403024ns 1061897 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60403195ns 1061900 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60403650ns 1061908 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60403820ns 1061911 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60404104ns 1061916 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60404388ns 1061921 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60404673ns 1061926 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60405127ns 1061934 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60405298ns 1061937 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60405582ns 1061942 1a110850 fd5ff06f jal x0, -44 +60405866ns 1061947 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60406150ns 1061952 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60406548ns 1061959 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60406719ns 1061962 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60407173ns 1061970 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60407344ns 1061973 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60407628ns 1061978 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60407912ns 1061983 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60408196ns 1061988 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60408651ns 1061996 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60408821ns 1061999 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60409105ns 1062004 1a110850 fd5ff06f jal x0, -44 +60409390ns 1062009 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60409674ns 1062014 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60410072ns 1062021 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60410242ns 1062024 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60410697ns 1062032 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60410867ns 1062035 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60411151ns 1062040 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60411436ns 1062045 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60411720ns 1062050 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60412174ns 1062058 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60412345ns 1062061 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60412629ns 1062066 1a110850 fd5ff06f jal x0, -44 +60412913ns 1062071 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60413197ns 1062076 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60413595ns 1062083 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60413766ns 1062086 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60414220ns 1062094 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60414391ns 1062097 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60414675ns 1062102 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60414959ns 1062107 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60415243ns 1062112 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60415698ns 1062120 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60415868ns 1062123 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60416153ns 1062128 1a110850 fd5ff06f jal x0, -44 +60416437ns 1062133 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60416721ns 1062138 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60417119ns 1062145 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60417289ns 1062148 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60417744ns 1062156 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60417914ns 1062159 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60418199ns 1062164 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60418483ns 1062169 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60418767ns 1062174 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60419222ns 1062182 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60419392ns 1062185 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60419676ns 1062190 1a110850 fd5ff06f jal x0, -44 +60419960ns 1062195 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60420245ns 1062200 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60420642ns 1062207 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60420813ns 1062210 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60421267ns 1062218 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60421438ns 1062221 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60421722ns 1062226 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60422006ns 1062231 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60422290ns 1062236 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60422745ns 1062244 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60422916ns 1062247 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60423200ns 1062252 1a110850 fd5ff06f jal x0, -44 +60423484ns 1062257 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60423768ns 1062262 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60424166ns 1062269 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60424336ns 1062272 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60424791ns 1062280 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60424962ns 1062283 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60425246ns 1062288 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60425530ns 1062293 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60425814ns 1062298 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60426269ns 1062306 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60426439ns 1062309 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60426723ns 1062314 1a110850 fd5ff06f jal x0, -44 +60427008ns 1062319 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60427292ns 1062324 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60427690ns 1062331 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60427860ns 1062334 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60428315ns 1062342 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60428485ns 1062345 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60428769ns 1062350 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60429053ns 1062355 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60429338ns 1062360 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60429792ns 1062368 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60429963ns 1062371 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60430247ns 1062376 1a110850 fd5ff06f jal x0, -44 +60430531ns 1062381 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60430815ns 1062386 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60431213ns 1062393 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60431384ns 1062396 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60431838ns 1062404 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60432009ns 1062407 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60432293ns 1062412 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60432577ns 1062417 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60432861ns 1062422 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60433316ns 1062430 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60433486ns 1062433 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60433771ns 1062438 1a110850 fd5ff06f jal x0, -44 +60434055ns 1062443 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60434339ns 1062448 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60434737ns 1062455 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60434907ns 1062458 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60435362ns 1062466 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60435532ns 1062469 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60435816ns 1062474 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60436101ns 1062479 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60436385ns 1062484 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60436839ns 1062492 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60437010ns 1062495 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60437294ns 1062500 1a110850 fd5ff06f jal x0, -44 +60437578ns 1062505 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60437862ns 1062510 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60438260ns 1062517 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60438431ns 1062520 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60438885ns 1062528 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60439056ns 1062531 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60439340ns 1062536 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60439624ns 1062541 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60439908ns 1062546 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60440363ns 1062554 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60440534ns 1062557 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60440818ns 1062562 1a110850 fd5ff06f jal x0, -44 +60441102ns 1062567 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60441386ns 1062572 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60441784ns 1062579 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60441954ns 1062582 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60442409ns 1062590 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60442579ns 1062593 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60442864ns 1062598 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60443148ns 1062603 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60443432ns 1062608 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60443887ns 1062616 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60444057ns 1062619 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60444341ns 1062624 1a110850 fd5ff06f jal x0, -44 +60444625ns 1062629 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60444910ns 1062634 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60445307ns 1062641 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60445478ns 1062644 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60445933ns 1062652 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60446103ns 1062655 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60446387ns 1062660 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60446671ns 1062665 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60446956ns 1062670 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60447410ns 1062678 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60447581ns 1062681 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60447865ns 1062686 1a110850 fd5ff06f jal x0, -44 +60448149ns 1062691 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60448433ns 1062696 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60448831ns 1062703 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60449002ns 1062706 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60449456ns 1062714 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60449627ns 1062717 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60449911ns 1062722 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60450195ns 1062727 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60450479ns 1062732 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60450934ns 1062740 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60451104ns 1062743 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60451388ns 1062748 1a110850 fd5ff06f jal x0, -44 +60451673ns 1062753 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60451957ns 1062758 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60452355ns 1062765 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60452525ns 1062768 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60452980ns 1062776 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60453150ns 1062779 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60453434ns 1062784 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60453719ns 1062789 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60454003ns 1062794 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60454457ns 1062802 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60454628ns 1062805 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60454912ns 1062810 1a110850 fd5ff06f jal x0, -44 +60455196ns 1062815 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60455480ns 1062820 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60455878ns 1062827 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60456049ns 1062830 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60456503ns 1062838 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60456674ns 1062841 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60456958ns 1062846 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60457242ns 1062851 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60457526ns 1062856 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60457981ns 1062864 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60458151ns 1062867 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60458436ns 1062872 1a110850 fd5ff06f jal x0, -44 +60458720ns 1062877 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60459004ns 1062882 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60459402ns 1062889 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60459572ns 1062892 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60460027ns 1062900 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60460197ns 1062903 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60460482ns 1062908 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60460766ns 1062913 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60461050ns 1062918 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60461505ns 1062926 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60461675ns 1062929 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60461959ns 1062934 1a110850 fd5ff06f jal x0, -44 +60462243ns 1062939 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60462528ns 1062944 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60462925ns 1062951 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60463096ns 1062954 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60463551ns 1062962 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60463721ns 1062965 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60464005ns 1062970 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60464289ns 1062975 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60464573ns 1062980 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60465028ns 1062988 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60465199ns 1062991 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60465483ns 1062996 1a110850 fd5ff06f jal x0, -44 +60465767ns 1063001 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60466051ns 1063006 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60466449ns 1063013 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60466619ns 1063016 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60467074ns 1063024 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60467245ns 1063027 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60467529ns 1063032 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60467813ns 1063037 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60468097ns 1063042 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60468552ns 1063050 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60468722ns 1063053 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60469006ns 1063058 1a110850 fd5ff06f jal x0, -44 +60469291ns 1063063 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60469575ns 1063068 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60469973ns 1063075 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60470143ns 1063078 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60470598ns 1063086 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60470768ns 1063089 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60471052ns 1063094 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60471336ns 1063099 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60471621ns 1063104 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60472075ns 1063112 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60472246ns 1063115 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60472530ns 1063120 1a110850 fd5ff06f jal x0, -44 +60472814ns 1063125 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60473098ns 1063130 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60473496ns 1063137 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60473667ns 1063140 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60474121ns 1063148 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60474292ns 1063151 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60474576ns 1063156 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60474860ns 1063161 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60475144ns 1063166 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60475599ns 1063174 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60475769ns 1063177 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60476054ns 1063182 1a110850 fd5ff06f jal x0, -44 +60476338ns 1063187 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60476622ns 1063192 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60477020ns 1063199 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60477190ns 1063202 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60477645ns 1063210 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60477815ns 1063213 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60478099ns 1063218 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60478384ns 1063223 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60478668ns 1063228 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60479122ns 1063236 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60479293ns 1063239 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60479577ns 1063244 1a110850 fd5ff06f jal x0, -44 +60479861ns 1063249 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60480145ns 1063254 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60480543ns 1063261 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60480714ns 1063264 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60481168ns 1063272 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60481339ns 1063275 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60481623ns 1063280 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60481907ns 1063285 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60482191ns 1063290 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60482646ns 1063298 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60482817ns 1063301 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60483101ns 1063306 1a110850 fd5ff06f jal x0, -44 +60483385ns 1063311 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60483669ns 1063316 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60484067ns 1063323 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60484237ns 1063326 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60484692ns 1063334 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60484863ns 1063337 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60485147ns 1063342 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60485431ns 1063347 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60485715ns 1063352 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60486170ns 1063360 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60486340ns 1063363 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60486624ns 1063368 1a110850 fd5ff06f jal x0, -44 +60486908ns 1063373 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60487193ns 1063378 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60487590ns 1063385 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60487761ns 1063388 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60488216ns 1063396 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60488386ns 1063399 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60488670ns 1063404 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60488954ns 1063409 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60489239ns 1063414 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60489693ns 1063422 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60489864ns 1063425 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60490148ns 1063430 1a110850 fd5ff06f jal x0, -44 +60490432ns 1063435 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60490716ns 1063440 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60491114ns 1063447 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60491285ns 1063450 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60491739ns 1063458 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60491910ns 1063461 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60492194ns 1063466 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60492478ns 1063471 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60492762ns 1063476 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60493217ns 1063484 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60493387ns 1063487 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60493671ns 1063492 1a110850 fd5ff06f jal x0, -44 +60493956ns 1063497 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60494240ns 1063502 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60494638ns 1063509 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60494808ns 1063512 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60495263ns 1063520 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60495433ns 1063523 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60495717ns 1063528 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60496002ns 1063533 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60496286ns 1063538 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60496740ns 1063546 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60496911ns 1063549 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60497195ns 1063554 1a110850 fd5ff06f jal x0, -44 +60497479ns 1063559 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60497763ns 1063564 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60498161ns 1063571 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60498332ns 1063574 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60498786ns 1063582 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60498957ns 1063585 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60499241ns 1063590 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60499525ns 1063595 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60499809ns 1063600 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60500264ns 1063608 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60500434ns 1063611 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60500719ns 1063616 1a110850 fd5ff06f jal x0, -44 +60501003ns 1063621 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60501287ns 1063626 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60501685ns 1063633 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60501855ns 1063636 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60502310ns 1063644 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60502480ns 1063647 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60502765ns 1063652 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60503049ns 1063657 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60503333ns 1063662 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60503788ns 1063670 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60503958ns 1063673 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60504242ns 1063678 1a110850 fd5ff06f jal x0, -44 +60504526ns 1063683 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60504811ns 1063688 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60505208ns 1063695 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60505379ns 1063698 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60505834ns 1063706 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60506004ns 1063709 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60506288ns 1063714 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60506572ns 1063719 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60506856ns 1063724 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60507311ns 1063732 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60507482ns 1063735 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60507766ns 1063740 1a110850 fd5ff06f jal x0, -44 +60508050ns 1063745 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60508334ns 1063750 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60508732ns 1063757 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60508902ns 1063760 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60509357ns 1063768 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60509528ns 1063771 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60509812ns 1063776 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60510096ns 1063781 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60510380ns 1063786 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60510835ns 1063794 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60511005ns 1063797 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60511289ns 1063802 1a110850 fd5ff06f jal x0, -44 +60511574ns 1063807 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60511858ns 1063812 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60512256ns 1063819 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60512426ns 1063822 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60512881ns 1063830 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60513051ns 1063833 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60513335ns 1063838 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60513619ns 1063843 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60513904ns 1063848 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60514358ns 1063856 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60514529ns 1063859 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60514813ns 1063864 1a110850 fd5ff06f jal x0, -44 +60515097ns 1063869 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60515381ns 1063874 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60515779ns 1063881 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60515950ns 1063884 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60516404ns 1063892 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60516575ns 1063895 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60516859ns 1063900 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60517143ns 1063905 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60517427ns 1063910 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60517882ns 1063918 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60518052ns 1063921 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60518337ns 1063926 1a110850 fd5ff06f jal x0, -44 +60518621ns 1063931 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60518905ns 1063936 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60519303ns 1063943 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60519473ns 1063946 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60519928ns 1063954 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60520098ns 1063957 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60520383ns 1063962 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60520667ns 1063967 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60520951ns 1063972 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60521405ns 1063980 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60521576ns 1063983 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60521860ns 1063988 1a110850 fd5ff06f jal x0, -44 +60522144ns 1063993 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60522428ns 1063998 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60522826ns 1064005 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60522997ns 1064008 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60523451ns 1064016 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60523622ns 1064019 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60523906ns 1064024 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60524190ns 1064029 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60524474ns 1064034 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60524929ns 1064042 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60525100ns 1064045 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60525384ns 1064050 1a110850 fd5ff06f jal x0, -44 +60525668ns 1064055 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60525952ns 1064060 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60526350ns 1064067 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60526520ns 1064070 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60526975ns 1064078 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60527146ns 1064081 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60527430ns 1064086 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60527714ns 1064091 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60527998ns 1064096 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60528453ns 1064104 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60528623ns 1064107 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60528907ns 1064112 1a110850 fd5ff06f jal x0, -44 +60529191ns 1064117 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60529476ns 1064122 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60529873ns 1064129 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60530044ns 1064132 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60530499ns 1064140 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60530669ns 1064143 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60530953ns 1064148 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60531237ns 1064153 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60531522ns 1064158 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60531976ns 1064166 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60532147ns 1064169 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60532431ns 1064174 1a110850 fd5ff06f jal x0, -44 +60532715ns 1064179 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60532999ns 1064184 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60533397ns 1064191 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60533568ns 1064194 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60534022ns 1064202 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60534193ns 1064205 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60534477ns 1064210 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60534761ns 1064215 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60535045ns 1064220 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60535500ns 1064228 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60535670ns 1064231 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60535954ns 1064236 1a110850 fd5ff06f jal x0, -44 +60536239ns 1064241 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60536523ns 1064246 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60536921ns 1064253 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60537091ns 1064256 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60537546ns 1064264 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60537716ns 1064267 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60538000ns 1064272 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60538285ns 1064277 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60538569ns 1064282 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60539023ns 1064290 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60539194ns 1064293 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60539478ns 1064298 1a110850 fd5ff06f jal x0, -44 +60539762ns 1064303 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60540046ns 1064308 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60540444ns 1064315 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60540615ns 1064318 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60541069ns 1064326 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60541240ns 1064329 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60541524ns 1064334 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60541808ns 1064339 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60542092ns 1064344 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60542547ns 1064352 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60542717ns 1064355 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60543002ns 1064360 1a110850 fd5ff06f jal x0, -44 +60543286ns 1064365 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60543570ns 1064370 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60543968ns 1064377 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60544138ns 1064380 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60544593ns 1064388 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60544763ns 1064391 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60545048ns 1064396 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60545332ns 1064401 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60545616ns 1064406 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60546071ns 1064414 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60546241ns 1064417 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60546525ns 1064422 1a110850 fd5ff06f jal x0, -44 +60546809ns 1064427 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60547094ns 1064432 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60547491ns 1064439 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60547662ns 1064442 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60548117ns 1064450 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60548287ns 1064453 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60548571ns 1064458 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60548855ns 1064463 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60549139ns 1064468 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60549594ns 1064476 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60549765ns 1064479 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60550049ns 1064484 1a110850 fd5ff06f jal x0, -44 +60550333ns 1064489 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60550617ns 1064494 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60551015ns 1064501 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60551185ns 1064504 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60551640ns 1064512 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60551811ns 1064515 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60552095ns 1064520 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60552379ns 1064525 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60552663ns 1064530 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60553118ns 1064538 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60553288ns 1064541 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60553572ns 1064546 1a110850 fd5ff06f jal x0, -44 +60553857ns 1064551 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60554141ns 1064556 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60554539ns 1064563 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60554709ns 1064566 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60555164ns 1064574 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60555334ns 1064577 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60555618ns 1064582 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60555903ns 1064587 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60556187ns 1064592 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60556641ns 1064600 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60556812ns 1064603 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60557096ns 1064608 1a110850 fd5ff06f jal x0, -44 +60557380ns 1064613 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60557664ns 1064618 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60558062ns 1064625 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60558233ns 1064628 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60558687ns 1064636 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60558858ns 1064639 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60559142ns 1064644 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60559426ns 1064649 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60559710ns 1064654 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60560165ns 1064662 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60560335ns 1064665 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60560620ns 1064670 1a110850 fd5ff06f jal x0, -44 +60560904ns 1064675 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60561188ns 1064680 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60561586ns 1064687 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60561756ns 1064690 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60562211ns 1064698 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60562381ns 1064701 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60562666ns 1064706 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60562950ns 1064711 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60563234ns 1064716 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60563688ns 1064724 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60563859ns 1064727 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60564143ns 1064732 1a110850 fd5ff06f jal x0, -44 +60564427ns 1064737 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60564711ns 1064742 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60565109ns 1064749 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60565280ns 1064752 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60565734ns 1064760 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60565905ns 1064763 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60566189ns 1064768 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60566473ns 1064773 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60566757ns 1064778 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60567212ns 1064786 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60567383ns 1064789 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60567667ns 1064794 1a110850 fd5ff06f jal x0, -44 +60567951ns 1064799 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60568235ns 1064804 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60568633ns 1064811 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60568803ns 1064814 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60569258ns 1064822 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60569429ns 1064825 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60569713ns 1064830 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60569997ns 1064835 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60570281ns 1064840 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60570736ns 1064848 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60570906ns 1064851 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60571190ns 1064856 1a110850 fd5ff06f jal x0, -44 +60571474ns 1064861 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60571759ns 1064866 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60572156ns 1064873 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60572327ns 1064876 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60572782ns 1064884 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60572952ns 1064887 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60573236ns 1064892 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60573520ns 1064897 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60573805ns 1064902 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60574259ns 1064910 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60574430ns 1064913 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60574714ns 1064918 1a110850 fd5ff06f jal x0, -44 +60574998ns 1064923 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60575282ns 1064928 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60575680ns 1064935 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60575851ns 1064938 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60576305ns 1064946 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60576476ns 1064949 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60576760ns 1064954 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60577044ns 1064959 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60577328ns 1064964 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60577783ns 1064972 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60577953ns 1064975 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60578237ns 1064980 1a110850 fd5ff06f jal x0, -44 +60578522ns 1064985 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60578806ns 1064990 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60579204ns 1064997 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60579374ns 1065000 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60579829ns 1065008 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60579999ns 1065011 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60580283ns 1065016 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60580568ns 1065021 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60580852ns 1065026 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60581306ns 1065034 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60581477ns 1065037 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60581761ns 1065042 1a110850 fd5ff06f jal x0, -44 +60582045ns 1065047 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60582329ns 1065052 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60582727ns 1065059 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60582898ns 1065062 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60583352ns 1065070 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60583523ns 1065073 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60583807ns 1065078 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60584091ns 1065083 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60584375ns 1065088 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60584830ns 1065096 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60585000ns 1065099 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60585285ns 1065104 1a110850 fd5ff06f jal x0, -44 +60585569ns 1065109 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60585853ns 1065114 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60586251ns 1065121 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60586421ns 1065124 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60586876ns 1065132 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60587046ns 1065135 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60587331ns 1065140 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60587615ns 1065145 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60587899ns 1065150 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60588354ns 1065158 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60588524ns 1065161 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60588808ns 1065166 1a110850 fd5ff06f jal x0, -44 +60589092ns 1065171 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60589377ns 1065176 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60589774ns 1065183 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60589945ns 1065186 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60590400ns 1065194 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60590570ns 1065197 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60590854ns 1065202 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60591138ns 1065207 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60591423ns 1065212 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60591877ns 1065220 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60592048ns 1065223 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60592332ns 1065228 1a110850 fd5ff06f jal x0, -44 +60592616ns 1065233 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60592900ns 1065238 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60593298ns 1065245 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60593468ns 1065248 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60593923ns 1065256 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60594094ns 1065259 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60594378ns 1065264 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60594662ns 1065269 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60594946ns 1065274 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60595401ns 1065282 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60595571ns 1065285 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60595855ns 1065290 1a110850 fd5ff06f jal x0, -44 +60596140ns 1065295 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60596424ns 1065300 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60596822ns 1065307 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60596992ns 1065310 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60597447ns 1065318 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60597617ns 1065321 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60597901ns 1065326 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60598186ns 1065331 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60598470ns 1065336 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60598924ns 1065344 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60599095ns 1065347 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60599379ns 1065352 1a110850 fd5ff06f jal x0, -44 +60599663ns 1065357 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60599947ns 1065362 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60600345ns 1065369 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60600516ns 1065372 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60600970ns 1065380 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60601141ns 1065383 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60601425ns 1065388 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60601709ns 1065393 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60601993ns 1065398 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60602448ns 1065406 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60602618ns 1065409 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60602903ns 1065414 1a110850 fd5ff06f jal x0, -44 +60603187ns 1065419 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60603471ns 1065424 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60603869ns 1065431 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60604039ns 1065434 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60604494ns 1065442 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60604664ns 1065445 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60604949ns 1065450 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60605233ns 1065455 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60605517ns 1065460 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60605971ns 1065468 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60606142ns 1065471 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60606426ns 1065476 1a110850 fd5ff06f jal x0, -44 +60606710ns 1065481 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60606994ns 1065486 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60607392ns 1065493 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60607563ns 1065496 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60608017ns 1065504 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60608188ns 1065507 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60608472ns 1065512 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60608756ns 1065517 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60609040ns 1065522 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60609495ns 1065530 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60609666ns 1065533 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60609950ns 1065538 1a110850 fd5ff06f jal x0, -44 +60610234ns 1065543 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60610518ns 1065548 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60610916ns 1065555 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60611086ns 1065558 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60611541ns 1065566 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60611712ns 1065569 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60611996ns 1065574 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60612280ns 1065579 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60612564ns 1065584 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60613019ns 1065592 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60613189ns 1065595 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60613473ns 1065600 1a110850 fd5ff06f jal x0, -44 +60613757ns 1065605 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60614042ns 1065610 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60614439ns 1065617 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60614610ns 1065620 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60615065ns 1065628 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60615235ns 1065631 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60615519ns 1065636 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60615803ns 1065641 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60616088ns 1065646 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60616542ns 1065654 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60616713ns 1065657 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60616997ns 1065662 1a110850 fd5ff06f jal x0, -44 +60617281ns 1065667 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60617565ns 1065672 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60617963ns 1065679 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60618134ns 1065682 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60618588ns 1065690 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60618759ns 1065693 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60619043ns 1065698 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60619327ns 1065703 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60619611ns 1065708 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60620066ns 1065716 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60620236ns 1065719 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60620520ns 1065724 1a110850 fd5ff06f jal x0, -44 +60620805ns 1065729 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60621089ns 1065734 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60621487ns 1065741 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60621657ns 1065744 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60622112ns 1065752 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60622282ns 1065755 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60622566ns 1065760 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60622851ns 1065765 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60623135ns 1065770 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60623589ns 1065778 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60623760ns 1065781 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60624044ns 1065786 1a110850 fd5ff06f jal x0, -44 +60624328ns 1065791 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60624612ns 1065796 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60625010ns 1065803 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60625181ns 1065806 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60625635ns 1065814 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60625806ns 1065817 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60626090ns 1065822 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60626374ns 1065827 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60626658ns 1065832 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60627113ns 1065840 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60627283ns 1065843 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60627568ns 1065848 1a110850 fd5ff06f jal x0, -44 +60627852ns 1065853 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60628136ns 1065858 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60628534ns 1065865 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60628704ns 1065868 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60629159ns 1065876 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60629329ns 1065879 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60629614ns 1065884 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60629898ns 1065889 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60630182ns 1065894 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60630637ns 1065902 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60630807ns 1065905 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60631091ns 1065910 1a110850 fd5ff06f jal x0, -44 +60631375ns 1065915 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60631660ns 1065920 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60632057ns 1065927 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60632228ns 1065930 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60632683ns 1065938 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60632853ns 1065941 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60633137ns 1065946 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60633421ns 1065951 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60633706ns 1065956 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60634160ns 1065964 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60634331ns 1065967 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60634615ns 1065972 1a110850 fd5ff06f jal x0, -44 +60634899ns 1065977 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60635183ns 1065982 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60635581ns 1065989 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60635751ns 1065992 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60636206ns 1066000 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60636377ns 1066003 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60636661ns 1066008 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60636945ns 1066013 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60637229ns 1066018 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60637684ns 1066026 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60637854ns 1066029 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60638138ns 1066034 1a110850 fd5ff06f jal x0, -44 +60638423ns 1066039 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60638707ns 1066044 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60639105ns 1066051 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60639275ns 1066054 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60639730ns 1066062 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60639900ns 1066065 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60640184ns 1066070 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60640469ns 1066075 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60640753ns 1066080 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60641207ns 1066088 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60641378ns 1066091 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60641662ns 1066096 1a110850 fd5ff06f jal x0, -44 +60641946ns 1066101 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60642230ns 1066106 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60642628ns 1066113 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60642799ns 1066116 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60643253ns 1066124 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60643424ns 1066127 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60643708ns 1066132 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60643992ns 1066137 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60644276ns 1066142 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60644731ns 1066150 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60644901ns 1066153 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60645186ns 1066158 1a110850 fd5ff06f jal x0, -44 +60645470ns 1066163 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60645754ns 1066168 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60646152ns 1066175 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60646322ns 1066178 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60646777ns 1066186 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60646947ns 1066189 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60647232ns 1066194 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60647516ns 1066199 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60647800ns 1066204 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60648255ns 1066212 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60648425ns 1066215 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60648709ns 1066220 1a110850 fd5ff06f jal x0, -44 +60648993ns 1066225 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60649277ns 1066230 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60649675ns 1066237 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60649846ns 1066240 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60650300ns 1066248 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60650471ns 1066251 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60650755ns 1066256 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60651039ns 1066261 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60651323ns 1066266 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60651778ns 1066274 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60651949ns 1066277 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60652233ns 1066282 1a110850 fd5ff06f jal x0, -44 +60652517ns 1066287 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60652801ns 1066292 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60653199ns 1066299 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60653369ns 1066302 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60653824ns 1066310 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60653995ns 1066313 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60654279ns 1066318 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60654563ns 1066323 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60654847ns 1066328 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60655302ns 1066336 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60655472ns 1066339 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60655756ns 1066344 1a110850 fd5ff06f jal x0, -44 +60656040ns 1066349 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60656325ns 1066354 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60656722ns 1066361 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60656893ns 1066364 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60657348ns 1066372 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60657518ns 1066375 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60657802ns 1066380 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60658086ns 1066385 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60658371ns 1066390 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60658825ns 1066398 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60658996ns 1066401 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60659280ns 1066406 1a110850 fd5ff06f jal x0, -44 +60659564ns 1066411 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60659848ns 1066416 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60660246ns 1066423 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60660417ns 1066426 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60660871ns 1066434 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60661042ns 1066437 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60661326ns 1066442 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60661610ns 1066447 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60661894ns 1066452 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60662349ns 1066460 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60662519ns 1066463 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60662803ns 1066468 1a110850 fd5ff06f jal x0, -44 +60663088ns 1066473 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60663372ns 1066478 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60663770ns 1066485 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60663940ns 1066488 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60664395ns 1066496 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60664565ns 1066499 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60664849ns 1066504 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60665134ns 1066509 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60665418ns 1066514 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60665872ns 1066522 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60666043ns 1066525 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60666327ns 1066530 1a110850 fd5ff06f jal x0, -44 +60666611ns 1066535 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60666895ns 1066540 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60667293ns 1066547 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60667464ns 1066550 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60667918ns 1066558 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60668089ns 1066561 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60668373ns 1066566 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60668657ns 1066571 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60668941ns 1066576 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60669396ns 1066584 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60669567ns 1066587 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60669851ns 1066592 1a110850 fd5ff06f jal x0, -44 +60670135ns 1066597 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60670419ns 1066602 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60670817ns 1066609 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60670987ns 1066612 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60671442ns 1066620 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60671612ns 1066623 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60671897ns 1066628 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60672181ns 1066633 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60672465ns 1066638 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60672920ns 1066646 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60673090ns 1066649 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60673374ns 1066654 1a110850 fd5ff06f jal x0, -44 +60673658ns 1066659 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60673943ns 1066664 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60674340ns 1066671 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60674511ns 1066674 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60674966ns 1066682 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60675136ns 1066685 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60675420ns 1066690 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60675704ns 1066695 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60675989ns 1066700 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60676443ns 1066708 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60676614ns 1066711 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60676898ns 1066716 1a110850 fd5ff06f jal x0, -44 +60677182ns 1066721 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60677466ns 1066726 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60677864ns 1066733 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60678034ns 1066736 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60678489ns 1066744 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60678660ns 1066747 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60678944ns 1066752 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60679228ns 1066757 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60679512ns 1066762 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60679967ns 1066770 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60680137ns 1066773 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60680421ns 1066778 1a110850 fd5ff06f jal x0, -44 +60680706ns 1066783 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60680990ns 1066788 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60681388ns 1066795 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60681558ns 1066798 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60682013ns 1066806 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60682183ns 1066809 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60682467ns 1066814 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60682752ns 1066819 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60683036ns 1066824 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60683490ns 1066832 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60683661ns 1066835 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60683945ns 1066840 1a110850 fd5ff06f jal x0, -44 +60684229ns 1066845 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60684513ns 1066850 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60684911ns 1066857 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60685082ns 1066860 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60685536ns 1066868 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60685707ns 1066871 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60685991ns 1066876 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60686275ns 1066881 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60686559ns 1066886 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60687014ns 1066894 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60687184ns 1066897 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60687469ns 1066902 1a110850 fd5ff06f jal x0, -44 +60687753ns 1066907 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60688037ns 1066912 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60688435ns 1066919 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60688605ns 1066922 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60689060ns 1066930 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60689230ns 1066933 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60689515ns 1066938 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60689799ns 1066943 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60690083ns 1066948 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60690538ns 1066956 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60690708ns 1066959 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60690992ns 1066964 1a110850 fd5ff06f jal x0, -44 +60691276ns 1066969 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60691560ns 1066974 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60691958ns 1066981 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60692129ns 1066984 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60692583ns 1066992 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60692754ns 1066995 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60693038ns 1067000 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60693322ns 1067005 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60693606ns 1067010 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60694061ns 1067018 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60694232ns 1067021 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60694516ns 1067026 1a110850 fd5ff06f jal x0, -44 +60694800ns 1067031 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60695084ns 1067036 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60695482ns 1067043 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60695652ns 1067046 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60696107ns 1067054 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60696278ns 1067057 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60696562ns 1067062 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60696846ns 1067067 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60697130ns 1067072 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60697585ns 1067080 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60697755ns 1067083 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60698039ns 1067088 1a110850 fd5ff06f jal x0, -44 +60698323ns 1067093 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60698608ns 1067098 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60699005ns 1067105 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60699176ns 1067108 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60699631ns 1067116 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60699801ns 1067119 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60700085ns 1067124 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60700369ns 1067129 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60700654ns 1067134 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60701108ns 1067142 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60701279ns 1067145 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60701563ns 1067150 1a110850 fd5ff06f jal x0, -44 +60701847ns 1067155 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60702131ns 1067160 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60702529ns 1067167 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60702700ns 1067170 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60703154ns 1067178 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60703325ns 1067181 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60703609ns 1067186 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60703893ns 1067191 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60704177ns 1067196 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60704632ns 1067204 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60704802ns 1067207 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60705087ns 1067212 1a110850 fd5ff06f jal x0, -44 +60705371ns 1067217 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60705655ns 1067222 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60706053ns 1067229 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60706223ns 1067232 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60706678ns 1067240 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60706848ns 1067243 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60707132ns 1067248 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60707417ns 1067253 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60707701ns 1067258 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60708155ns 1067266 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60708326ns 1067269 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60708610ns 1067274 1a110850 fd5ff06f jal x0, -44 +60708894ns 1067279 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60709178ns 1067284 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60709576ns 1067291 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60709747ns 1067294 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60710201ns 1067302 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60710372ns 1067305 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60710656ns 1067310 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60710940ns 1067315 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60711224ns 1067320 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60711679ns 1067328 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60711850ns 1067331 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60712134ns 1067336 1a110850 fd5ff06f jal x0, -44 +60712418ns 1067341 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60712702ns 1067346 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60713100ns 1067353 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60713270ns 1067356 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60713725ns 1067364 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60713895ns 1067367 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60714180ns 1067372 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60714464ns 1067377 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60714748ns 1067382 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60715203ns 1067390 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60715373ns 1067393 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60715657ns 1067398 1a110850 fd5ff06f jal x0, -44 +60715941ns 1067403 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60716226ns 1067408 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60716623ns 1067415 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60716794ns 1067418 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60717249ns 1067426 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60717419ns 1067429 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60717703ns 1067434 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60717987ns 1067439 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60718272ns 1067444 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60718726ns 1067452 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60718897ns 1067455 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60719181ns 1067460 1a110850 fd5ff06f jal x0, -44 +60719465ns 1067465 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60719749ns 1067470 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60720147ns 1067477 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60720317ns 1067480 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60720772ns 1067488 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60720943ns 1067491 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60721227ns 1067496 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60721511ns 1067501 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60721795ns 1067506 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60722250ns 1067514 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60722420ns 1067517 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60722704ns 1067522 1a110850 fd5ff06f jal x0, -44 +60722989ns 1067527 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60723273ns 1067532 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60723671ns 1067539 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60723841ns 1067542 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60724296ns 1067550 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60724466ns 1067553 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60724750ns 1067558 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60725035ns 1067563 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60725319ns 1067568 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60725773ns 1067576 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60725944ns 1067579 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60726228ns 1067584 1a110850 fd5ff06f jal x0, -44 +60726512ns 1067589 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60726796ns 1067594 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60727194ns 1067601 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60727365ns 1067604 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60727819ns 1067612 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60727990ns 1067615 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60728274ns 1067620 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60728558ns 1067625 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60728842ns 1067630 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60729297ns 1067638 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60729467ns 1067641 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60729752ns 1067646 1a110850 fd5ff06f jal x0, -44 +60730036ns 1067651 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60730320ns 1067656 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60730718ns 1067663 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60730888ns 1067666 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60731343ns 1067674 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60731513ns 1067677 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60731798ns 1067682 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60732082ns 1067687 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60732366ns 1067692 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60732821ns 1067700 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60732991ns 1067703 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60733275ns 1067708 1a110850 fd5ff06f jal x0, -44 +60733559ns 1067713 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60733843ns 1067718 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60734241ns 1067725 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60734412ns 1067728 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60734866ns 1067736 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60735037ns 1067739 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60735321ns 1067744 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60735605ns 1067749 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60735889ns 1067754 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60736344ns 1067762 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60736515ns 1067765 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60736799ns 1067770 1a110850 fd5ff06f jal x0, -44 +60737083ns 1067775 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60737367ns 1067780 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60737765ns 1067787 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60737935ns 1067790 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60738390ns 1067798 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60738561ns 1067801 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60738845ns 1067806 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60739129ns 1067811 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60739413ns 1067816 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60739868ns 1067824 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60740038ns 1067827 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60740322ns 1067832 1a110850 fd5ff06f jal x0, -44 +60740607ns 1067837 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60740891ns 1067842 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60741288ns 1067849 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60741459ns 1067852 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60741914ns 1067860 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60742084ns 1067863 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60742368ns 1067868 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60742652ns 1067873 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60742937ns 1067878 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60743391ns 1067886 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60743562ns 1067889 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60743846ns 1067894 1a110850 fd5ff06f jal x0, -44 +60744130ns 1067899 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60744414ns 1067904 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60744812ns 1067911 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60744983ns 1067914 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60745437ns 1067922 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60745608ns 1067925 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60745892ns 1067930 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60746176ns 1067935 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60746460ns 1067940 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60746915ns 1067948 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60747085ns 1067951 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60747370ns 1067956 1a110850 fd5ff06f jal x0, -44 +60747654ns 1067961 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60747938ns 1067966 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60748336ns 1067973 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60748506ns 1067976 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60748961ns 1067984 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60749131ns 1067987 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60749415ns 1067992 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60749700ns 1067997 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60749984ns 1068002 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60750438ns 1068010 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60750609ns 1068013 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60750893ns 1068018 1a110850 fd5ff06f jal x0, -44 +60751177ns 1068023 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60751461ns 1068028 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60751859ns 1068035 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60752030ns 1068038 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60752484ns 1068046 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60752655ns 1068049 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60752939ns 1068054 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60753223ns 1068059 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60753507ns 1068064 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60753962ns 1068072 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60754133ns 1068075 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60754417ns 1068080 1a110850 fd5ff06f jal x0, -44 +60754701ns 1068085 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60754985ns 1068090 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60755383ns 1068097 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60755553ns 1068100 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60756008ns 1068108 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60756178ns 1068111 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60756463ns 1068116 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60756747ns 1068121 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60757031ns 1068126 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60757486ns 1068134 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60757656ns 1068137 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60757940ns 1068142 1a110850 fd5ff06f jal x0, -44 +60758224ns 1068147 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60758509ns 1068152 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60758906ns 1068159 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60759077ns 1068162 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60759532ns 1068170 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60759702ns 1068173 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60759986ns 1068178 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60760270ns 1068183 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60760555ns 1068188 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60761009ns 1068196 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60761180ns 1068199 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60761464ns 1068204 1a110850 fd5ff06f jal x0, -44 +60761748ns 1068209 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60762032ns 1068214 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60762430ns 1068221 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60762600ns 1068224 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60763055ns 1068232 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60763226ns 1068235 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60763510ns 1068240 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60763794ns 1068245 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60764078ns 1068250 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60764533ns 1068258 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60764703ns 1068261 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60764987ns 1068266 1a110850 fd5ff06f jal x0, -44 +60765272ns 1068271 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60765556ns 1068276 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60765954ns 1068283 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60766124ns 1068286 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60766579ns 1068294 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60766749ns 1068297 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60767033ns 1068302 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60767318ns 1068307 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60767602ns 1068312 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60768056ns 1068320 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60768227ns 1068323 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60768511ns 1068328 1a110850 fd5ff06f jal x0, -44 +60768795ns 1068333 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60769079ns 1068338 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60769477ns 1068345 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60769648ns 1068348 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60770102ns 1068356 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60770273ns 1068359 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60770557ns 1068364 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60770841ns 1068369 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60771125ns 1068374 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60771580ns 1068382 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60771750ns 1068385 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60772035ns 1068390 1a110850 fd5ff06f jal x0, -44 +60772319ns 1068395 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60772603ns 1068400 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60773001ns 1068407 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60773171ns 1068410 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60773626ns 1068418 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60773796ns 1068421 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60774081ns 1068426 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60774365ns 1068431 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60774649ns 1068436 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60775104ns 1068444 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60775274ns 1068447 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60775558ns 1068452 1a110850 fd5ff06f jal x0, -44 +60775842ns 1068457 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60776127ns 1068462 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60776524ns 1068469 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60776695ns 1068472 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60777149ns 1068480 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60777320ns 1068483 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60777604ns 1068488 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60777888ns 1068493 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60778172ns 1068498 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60778627ns 1068506 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60778798ns 1068509 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60779082ns 1068514 1a110850 fd5ff06f jal x0, -44 +60779366ns 1068519 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60779650ns 1068524 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60780048ns 1068531 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60780218ns 1068534 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60780673ns 1068542 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60780844ns 1068545 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60781128ns 1068550 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60781412ns 1068555 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60781696ns 1068560 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60782151ns 1068568 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60782321ns 1068571 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60782605ns 1068576 1a110850 fd5ff06f jal x0, -44 +60782890ns 1068581 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60783174ns 1068586 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60783571ns 1068593 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60783742ns 1068596 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60784197ns 1068604 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60784367ns 1068607 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60784651ns 1068612 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60784935ns 1068617 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60785220ns 1068622 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60785674ns 1068630 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60785845ns 1068633 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60786129ns 1068638 1a110850 fd5ff06f jal x0, -44 +60786413ns 1068643 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60786697ns 1068648 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60787095ns 1068655 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60787266ns 1068658 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60787720ns 1068666 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60787891ns 1068669 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60788175ns 1068674 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60788459ns 1068679 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60788743ns 1068684 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60789198ns 1068692 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60789368ns 1068695 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60789653ns 1068700 1a110850 fd5ff06f jal x0, -44 +60789937ns 1068705 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60790221ns 1068710 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60790619ns 1068717 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60790789ns 1068720 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60791244ns 1068728 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60791414ns 1068731 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60791698ns 1068736 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60791983ns 1068741 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60792267ns 1068746 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60792721ns 1068754 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60792892ns 1068757 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60793176ns 1068762 1a110850 fd5ff06f jal x0, -44 +60793460ns 1068767 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60793744ns 1068772 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60794142ns 1068779 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60794313ns 1068782 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60794767ns 1068790 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60794938ns 1068793 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60795222ns 1068798 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60795506ns 1068803 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60795790ns 1068808 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60796245ns 1068816 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60796416ns 1068819 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60796700ns 1068824 1a110850 fd5ff06f jal x0, -44 +60796984ns 1068829 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60797268ns 1068834 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60797666ns 1068841 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60797836ns 1068844 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60798291ns 1068852 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60798461ns 1068855 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60798746ns 1068860 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60799030ns 1068865 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60799314ns 1068870 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60799769ns 1068878 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60799939ns 1068881 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60800223ns 1068886 1a110850 fd5ff06f jal x0, -44 +60800507ns 1068891 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60800792ns 1068896 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60801189ns 1068903 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60801360ns 1068906 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60801815ns 1068914 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60801985ns 1068917 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60802269ns 1068922 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60802553ns 1068927 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60802838ns 1068932 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60803292ns 1068940 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60803463ns 1068943 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60803747ns 1068948 1a110850 fd5ff06f jal x0, -44 +60804031ns 1068953 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60804315ns 1068958 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60804713ns 1068965 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60804883ns 1068968 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60805338ns 1068976 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60805509ns 1068979 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60805793ns 1068984 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60806077ns 1068989 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60806361ns 1068994 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60806816ns 1069002 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60806986ns 1069005 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60807270ns 1069010 1a110850 fd5ff06f jal x0, -44 +60807555ns 1069015 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60807839ns 1069020 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60808237ns 1069027 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60808407ns 1069030 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60808862ns 1069038 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60809032ns 1069041 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60809316ns 1069046 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60809601ns 1069051 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60809885ns 1069056 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60810339ns 1069064 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60810510ns 1069067 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60810794ns 1069072 1a110850 fd5ff06f jal x0, -44 +60811078ns 1069077 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60811362ns 1069082 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60811760ns 1069089 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60811931ns 1069092 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60812385ns 1069100 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60812556ns 1069103 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60812840ns 1069108 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60813124ns 1069113 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60813408ns 1069118 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60813863ns 1069126 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60814033ns 1069129 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60814318ns 1069134 1a110850 fd5ff06f jal x0, -44 +60814602ns 1069139 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60814886ns 1069144 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60815284ns 1069151 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60815454ns 1069154 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60815909ns 1069162 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60816079ns 1069165 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60816364ns 1069170 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60816648ns 1069175 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60816932ns 1069180 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60817387ns 1069188 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60817557ns 1069191 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60817841ns 1069196 1a110850 fd5ff06f jal x0, -44 +60818125ns 1069201 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60818410ns 1069206 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60818807ns 1069213 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60818978ns 1069216 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60819432ns 1069224 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60819603ns 1069227 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60819887ns 1069232 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60820171ns 1069237 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60820455ns 1069242 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60820910ns 1069250 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60821081ns 1069253 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60821365ns 1069258 1a110850 fd5ff06f jal x0, -44 +60821649ns 1069263 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60821933ns 1069268 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60822331ns 1069275 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60822501ns 1069278 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60822956ns 1069286 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60823127ns 1069289 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60823411ns 1069294 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60823695ns 1069299 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60823979ns 1069304 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60824434ns 1069312 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60824604ns 1069315 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60824888ns 1069320 1a110850 fd5ff06f jal x0, -44 +60825173ns 1069325 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60825457ns 1069330 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60825855ns 1069337 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60826025ns 1069340 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60826480ns 1069348 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60826650ns 1069351 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60826934ns 1069356 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60827218ns 1069361 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60827503ns 1069366 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60827957ns 1069374 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60828128ns 1069377 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60828412ns 1069382 1a110850 fd5ff06f jal x0, -44 +60828696ns 1069387 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60828980ns 1069392 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60829378ns 1069399 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60829549ns 1069402 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60830003ns 1069410 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60830174ns 1069413 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60830458ns 1069418 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60830742ns 1069423 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60831026ns 1069428 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60831481ns 1069436 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60831651ns 1069439 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60831936ns 1069444 1a110850 fd5ff06f jal x0, -44 +60832220ns 1069449 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60832504ns 1069454 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60832902ns 1069461 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60833072ns 1069464 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60833527ns 1069472 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60833697ns 1069475 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60833981ns 1069480 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60834266ns 1069485 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60834550ns 1069490 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60835004ns 1069498 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60835175ns 1069501 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60835459ns 1069506 1a110850 fd5ff06f jal x0, -44 +60835743ns 1069511 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60836027ns 1069516 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60836425ns 1069523 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60836596ns 1069526 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60837050ns 1069534 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60837221ns 1069537 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60837505ns 1069542 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60837789ns 1069547 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60838073ns 1069552 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60838528ns 1069560 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60838699ns 1069563 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60838983ns 1069568 1a110850 fd5ff06f jal x0, -44 +60839267ns 1069573 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60839551ns 1069578 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60839949ns 1069585 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60840119ns 1069588 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60840574ns 1069596 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60840744ns 1069599 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60841029ns 1069604 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60841313ns 1069609 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60841597ns 1069614 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60842052ns 1069622 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60842222ns 1069625 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60842506ns 1069630 1a110850 fd5ff06f jal x0, -44 +60842790ns 1069635 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60843075ns 1069640 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60843472ns 1069647 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60843643ns 1069650 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60844098ns 1069658 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60844268ns 1069661 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60844552ns 1069666 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60844836ns 1069671 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60845121ns 1069676 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60845575ns 1069684 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60845746ns 1069687 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60846030ns 1069692 1a110850 fd5ff06f jal x0, -44 +60846314ns 1069697 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60846598ns 1069702 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60846996ns 1069709 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60847167ns 1069712 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60847621ns 1069720 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60847792ns 1069723 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60848076ns 1069728 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60848360ns 1069733 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60848644ns 1069738 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60849099ns 1069746 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60849269ns 1069749 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60849553ns 1069754 1a110850 fd5ff06f jal x0, -44 +60849838ns 1069759 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60850122ns 1069764 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60850520ns 1069771 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60850690ns 1069774 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60851145ns 1069782 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60851315ns 1069785 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60851599ns 1069790 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60851884ns 1069795 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60852168ns 1069800 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60852622ns 1069808 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60852793ns 1069811 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60853077ns 1069816 1a110850 fd5ff06f jal x0, -44 +60853361ns 1069821 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60853645ns 1069826 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60854043ns 1069833 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60854214ns 1069836 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60854668ns 1069844 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60854839ns 1069847 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60855123ns 1069852 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60855407ns 1069857 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60855691ns 1069862 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60856146ns 1069870 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60856316ns 1069873 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60856601ns 1069878 1a110850 fd5ff06f jal x0, -44 +60856885ns 1069883 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60857169ns 1069888 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60857567ns 1069895 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60857737ns 1069898 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60858192ns 1069906 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60858362ns 1069909 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60858647ns 1069914 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60858931ns 1069919 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60859215ns 1069924 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60859670ns 1069932 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60859840ns 1069935 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60860124ns 1069940 1a110850 fd5ff06f jal x0, -44 +60860408ns 1069945 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60860693ns 1069950 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60861090ns 1069957 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60861261ns 1069960 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60861715ns 1069968 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60861886ns 1069971 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60862170ns 1069976 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60862454ns 1069981 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60862738ns 1069986 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60863193ns 1069994 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60863364ns 1069997 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60863648ns 1070002 1a110850 fd5ff06f jal x0, -44 +60863932ns 1070007 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60864216ns 1070012 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60864614ns 1070019 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60864784ns 1070022 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60865239ns 1070030 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60865410ns 1070033 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60865694ns 1070038 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60865978ns 1070043 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60866262ns 1070048 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60866717ns 1070056 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60866887ns 1070059 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60867171ns 1070064 1a110850 fd5ff06f jal x0, -44 +60867456ns 1070069 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60867740ns 1070074 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60868138ns 1070081 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60868308ns 1070084 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60868763ns 1070092 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60868933ns 1070095 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60869217ns 1070100 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60869501ns 1070105 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60869786ns 1070110 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60870240ns 1070118 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60870411ns 1070121 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60870695ns 1070126 1a110850 fd5ff06f jal x0, -44 +60870979ns 1070131 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60871263ns 1070136 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60871661ns 1070143 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60871832ns 1070146 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60872286ns 1070154 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60872457ns 1070157 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60872741ns 1070162 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60873025ns 1070167 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60873309ns 1070172 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60873764ns 1070180 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60873934ns 1070183 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60874219ns 1070188 1a110850 fd5ff06f jal x0, -44 +60874503ns 1070193 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60874787ns 1070198 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60875185ns 1070205 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60875355ns 1070208 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60875810ns 1070216 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60875980ns 1070219 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60876264ns 1070224 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60876549ns 1070229 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60876833ns 1070234 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60877287ns 1070242 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60877458ns 1070245 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60877742ns 1070250 1a110850 fd5ff06f jal x0, -44 +60878026ns 1070255 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60878310ns 1070260 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60878708ns 1070267 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60878879ns 1070270 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60879333ns 1070278 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60879504ns 1070281 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60879788ns 1070286 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60880072ns 1070291 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60880356ns 1070296 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60880811ns 1070304 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60880982ns 1070307 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60881266ns 1070312 1a110850 fd5ff06f jal x0, -44 +60881550ns 1070317 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60881834ns 1070322 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60882232ns 1070329 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60882402ns 1070332 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60882857ns 1070340 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60883027ns 1070343 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60883312ns 1070348 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60883596ns 1070353 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60883880ns 1070358 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60884335ns 1070366 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60884505ns 1070369 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60884789ns 1070374 1a110850 fd5ff06f jal x0, -44 +60885073ns 1070379 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60885358ns 1070384 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60885755ns 1070391 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60885926ns 1070394 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60886381ns 1070402 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60886551ns 1070405 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60886835ns 1070410 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60887119ns 1070415 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60887404ns 1070420 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60887858ns 1070428 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60888029ns 1070431 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60888313ns 1070436 1a110850 fd5ff06f jal x0, -44 +60888597ns 1070441 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60888881ns 1070446 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60889279ns 1070453 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60889450ns 1070456 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60889904ns 1070464 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60890075ns 1070467 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60890359ns 1070472 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60890643ns 1070477 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60890927ns 1070482 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60891382ns 1070490 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60891552ns 1070493 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60891836ns 1070498 1a110850 fd5ff06f jal x0, -44 +60892121ns 1070503 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60892405ns 1070508 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60892803ns 1070515 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60892973ns 1070518 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60893428ns 1070526 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60893598ns 1070529 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60893882ns 1070534 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60894167ns 1070539 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60894451ns 1070544 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60894905ns 1070552 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60895076ns 1070555 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60895360ns 1070560 1a110850 fd5ff06f jal x0, -44 +60895644ns 1070565 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60895928ns 1070570 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60896326ns 1070577 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60896497ns 1070580 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60896951ns 1070588 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60897122ns 1070591 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60897406ns 1070596 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60897690ns 1070601 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60897974ns 1070606 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60898429ns 1070614 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60898599ns 1070617 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60898884ns 1070622 1a110850 fd5ff06f jal x0, -44 +60899168ns 1070627 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60899452ns 1070632 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60899850ns 1070639 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60900020ns 1070642 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60900475ns 1070650 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60900645ns 1070653 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60900930ns 1070658 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60901214ns 1070663 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60901498ns 1070668 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60901953ns 1070676 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60902123ns 1070679 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60902407ns 1070684 1a110850 fd5ff06f jal x0, -44 +60902691ns 1070689 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60902976ns 1070694 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60903373ns 1070701 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60903544ns 1070704 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60903999ns 1070712 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60904169ns 1070715 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60904453ns 1070720 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60904737ns 1070725 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60905021ns 1070730 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60905476ns 1070738 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60905647ns 1070741 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60905931ns 1070746 1a110850 fd5ff06f jal x0, -44 +60906215ns 1070751 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60906499ns 1070756 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60906897ns 1070763 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60907067ns 1070766 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60907522ns 1070774 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60907693ns 1070777 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60907977ns 1070782 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60908261ns 1070787 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60908545ns 1070792 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60909000ns 1070800 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60909170ns 1070803 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60909454ns 1070808 1a110850 fd5ff06f jal x0, -44 +60909739ns 1070813 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60910023ns 1070818 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60910421ns 1070825 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60910591ns 1070828 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60911046ns 1070836 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60911216ns 1070839 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60911500ns 1070844 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60911784ns 1070849 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60912069ns 1070854 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60912523ns 1070862 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60912694ns 1070865 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60912978ns 1070870 1a110850 fd5ff06f jal x0, -44 +60913262ns 1070875 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60913546ns 1070880 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60913944ns 1070887 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60914115ns 1070890 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60914569ns 1070898 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60914740ns 1070901 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60915024ns 1070906 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60915308ns 1070911 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60915592ns 1070916 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60916047ns 1070924 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60916217ns 1070927 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60916502ns 1070932 1a110850 fd5ff06f jal x0, -44 +60916786ns 1070937 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60917070ns 1070942 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60917468ns 1070949 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60917638ns 1070952 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60918093ns 1070960 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60918263ns 1070963 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60918547ns 1070968 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60918832ns 1070973 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60919116ns 1070978 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60919570ns 1070986 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60919741ns 1070989 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60920025ns 1070994 1a110850 fd5ff06f jal x0, -44 +60920309ns 1070999 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60920593ns 1071004 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60920991ns 1071011 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60921162ns 1071014 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60921616ns 1071022 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60921787ns 1071025 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60922071ns 1071030 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60922355ns 1071035 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60922639ns 1071040 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60923094ns 1071048 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60923265ns 1071051 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60923549ns 1071056 1a110850 fd5ff06f jal x0, -44 +60923833ns 1071061 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60924117ns 1071066 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60924515ns 1071073 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60924685ns 1071076 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60925140ns 1071084 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60925311ns 1071087 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60925595ns 1071092 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60925879ns 1071097 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60926163ns 1071102 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60926618ns 1071110 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60926788ns 1071113 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60927072ns 1071118 1a110850 fd5ff06f jal x0, -44 +60927356ns 1071123 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60927641ns 1071128 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60928038ns 1071135 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60928209ns 1071138 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60928664ns 1071146 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60928834ns 1071149 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60929118ns 1071154 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60929402ns 1071159 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60929687ns 1071164 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60930141ns 1071172 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60930312ns 1071175 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60930596ns 1071180 1a110850 fd5ff06f jal x0, -44 +60930880ns 1071185 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60931164ns 1071190 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60931562ns 1071197 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60931733ns 1071200 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60932187ns 1071208 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60932358ns 1071211 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60932642ns 1071216 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60932926ns 1071221 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60933210ns 1071226 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60933665ns 1071234 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60933835ns 1071237 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60934119ns 1071242 1a110850 fd5ff06f jal x0, -44 +60934404ns 1071247 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60934688ns 1071252 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60935086ns 1071259 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60935256ns 1071262 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60935711ns 1071270 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60935881ns 1071273 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60936165ns 1071278 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60936450ns 1071283 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60936734ns 1071288 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60937188ns 1071296 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60937359ns 1071299 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60937643ns 1071304 1a110850 fd5ff06f jal x0, -44 +60937927ns 1071309 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60938211ns 1071314 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60938609ns 1071321 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60938780ns 1071324 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60939234ns 1071332 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60939405ns 1071335 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60939689ns 1071340 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60939973ns 1071345 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60940257ns 1071350 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60940712ns 1071358 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60940882ns 1071361 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60941167ns 1071366 1a110850 fd5ff06f jal x0, -44 +60941451ns 1071371 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60941735ns 1071376 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60942133ns 1071383 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60942303ns 1071386 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60942758ns 1071394 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60942928ns 1071397 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60943213ns 1071402 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60943497ns 1071407 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60943781ns 1071412 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60944236ns 1071420 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60944406ns 1071423 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60944690ns 1071428 1a110850 fd5ff06f jal x0, -44 +60944974ns 1071433 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60945259ns 1071438 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60945656ns 1071445 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60945827ns 1071448 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60946282ns 1071456 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60946452ns 1071459 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60946736ns 1071464 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60947020ns 1071469 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60947304ns 1071474 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60947759ns 1071482 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60947930ns 1071485 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60948214ns 1071490 1a110850 fd5ff06f jal x0, -44 +60948498ns 1071495 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60948782ns 1071500 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60949180ns 1071507 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60949350ns 1071510 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60949805ns 1071518 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60949976ns 1071521 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60950260ns 1071526 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60950544ns 1071531 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60950828ns 1071536 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60951283ns 1071544 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60951453ns 1071547 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60951737ns 1071552 1a110850 fd5ff06f jal x0, -44 +60952022ns 1071557 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60952306ns 1071562 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60952704ns 1071569 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60952874ns 1071572 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60953329ns 1071580 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60953499ns 1071583 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60953783ns 1071588 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60954067ns 1071593 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60954352ns 1071598 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60954806ns 1071606 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60954977ns 1071609 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60955261ns 1071614 1a110850 fd5ff06f jal x0, -44 +60955545ns 1071619 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60955829ns 1071624 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60956227ns 1071631 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60956398ns 1071634 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60956852ns 1071642 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60957023ns 1071645 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60957307ns 1071650 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60957591ns 1071655 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60957875ns 1071660 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60958330ns 1071668 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60958500ns 1071671 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60958785ns 1071676 1a110850 fd5ff06f jal x0, -44 +60959069ns 1071681 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60959353ns 1071686 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60959751ns 1071693 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60959921ns 1071696 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60960376ns 1071704 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60960546ns 1071707 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60960831ns 1071712 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60961115ns 1071717 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60961399ns 1071722 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60961853ns 1071730 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60962024ns 1071733 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60962308ns 1071738 1a110850 fd5ff06f jal x0, -44 +60962592ns 1071743 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60962876ns 1071748 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60963274ns 1071755 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60963445ns 1071758 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60963899ns 1071766 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60964070ns 1071769 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60964354ns 1071774 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60964638ns 1071779 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60964922ns 1071784 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60965377ns 1071792 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60965548ns 1071795 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60965832ns 1071800 1a110850 fd5ff06f jal x0, -44 +60966116ns 1071805 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60966400ns 1071810 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60966798ns 1071817 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60966968ns 1071820 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60967423ns 1071828 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60967594ns 1071831 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60967878ns 1071836 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60968162ns 1071841 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60968446ns 1071846 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60968901ns 1071854 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60969071ns 1071857 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60969355ns 1071862 1a110850 fd5ff06f jal x0, -44 +60969639ns 1071867 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60969924ns 1071872 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60970321ns 1071879 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60970492ns 1071882 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60970947ns 1071890 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60971117ns 1071893 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60971401ns 1071898 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60971685ns 1071903 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60971970ns 1071908 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60972424ns 1071916 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60972595ns 1071919 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60972879ns 1071924 1a110850 fd5ff06f jal x0, -44 +60973163ns 1071929 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60973447ns 1071934 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60973845ns 1071941 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60974016ns 1071944 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60974470ns 1071952 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60974641ns 1071955 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60974925ns 1071960 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60975209ns 1071965 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60975493ns 1071970 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60975948ns 1071978 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60976118ns 1071981 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60976402ns 1071986 1a110850 fd5ff06f jal x0, -44 +60976687ns 1071991 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60976971ns 1071996 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60977369ns 1072003 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60977539ns 1072006 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60977994ns 1072014 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60978164ns 1072017 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60978448ns 1072022 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60978733ns 1072027 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60979017ns 1072032 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60979471ns 1072040 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60979642ns 1072043 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60979926ns 1072048 1a110850 fd5ff06f jal x0, -44 +60980210ns 1072053 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60980494ns 1072058 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60980892ns 1072065 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60981063ns 1072068 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60981517ns 1072076 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60981688ns 1072079 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60981972ns 1072084 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60982256ns 1072089 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60982540ns 1072094 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60982995ns 1072102 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60983165ns 1072105 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60983450ns 1072110 1a110850 fd5ff06f jal x0, -44 +60983734ns 1072115 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60984018ns 1072120 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60984416ns 1072127 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60984586ns 1072130 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60985041ns 1072138 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60985211ns 1072141 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60985496ns 1072146 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60985780ns 1072151 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60986064ns 1072156 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60986519ns 1072164 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60986689ns 1072167 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60986973ns 1072172 1a110850 fd5ff06f jal x0, -44 +60987257ns 1072177 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60987542ns 1072182 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60987939ns 1072189 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60988110ns 1072192 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60988565ns 1072200 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60988735ns 1072203 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60989019ns 1072208 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60989303ns 1072213 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60989587ns 1072218 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60990042ns 1072226 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60990213ns 1072229 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60990497ns 1072234 1a110850 fd5ff06f jal x0, -44 +60990781ns 1072239 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60991065ns 1072244 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60991463ns 1072251 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60991633ns 1072254 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60992088ns 1072262 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60992259ns 1072265 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60992543ns 1072270 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60992827ns 1072275 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60993111ns 1072280 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60993566ns 1072288 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60993736ns 1072291 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60994020ns 1072296 1a110850 fd5ff06f jal x0, -44 +60994305ns 1072301 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60994589ns 1072306 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60994987ns 1072313 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60995157ns 1072316 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60995612ns 1072324 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60995782ns 1072327 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60996066ns 1072332 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60996351ns 1072337 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60996635ns 1072342 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60997089ns 1072350 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +60997260ns 1072353 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +60997544ns 1072358 1a110850 fd5ff06f jal x0, -44 +60997828ns 1072363 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60998112ns 1072368 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +60998510ns 1072375 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +60998681ns 1072378 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +60999135ns 1072386 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +60999306ns 1072389 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +60999590ns 1072394 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +60999874ns 1072399 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61000158ns 1072404 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61000613ns 1072412 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61000783ns 1072415 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61001068ns 1072420 1a110850 fd5ff06f jal x0, -44 +61001352ns 1072425 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61001636ns 1072430 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61002034ns 1072437 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61002204ns 1072440 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61002659ns 1072448 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61002829ns 1072451 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61003114ns 1072456 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61003398ns 1072461 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61003682ns 1072466 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61004136ns 1072474 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61004307ns 1072477 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61004591ns 1072482 1a110850 fd5ff06f jal x0, -44 +61004875ns 1072487 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61005159ns 1072492 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61005557ns 1072499 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61005728ns 1072502 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61006182ns 1072510 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61006353ns 1072513 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61006637ns 1072518 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61006921ns 1072523 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61007205ns 1072528 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61007660ns 1072536 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61007831ns 1072539 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61008115ns 1072544 1a110850 fd5ff06f jal x0, -44 +61008399ns 1072549 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61008683ns 1072554 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61009081ns 1072561 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61009251ns 1072564 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61009706ns 1072572 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61009877ns 1072575 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61010161ns 1072580 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61010445ns 1072585 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61010729ns 1072590 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61011184ns 1072598 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61011354ns 1072601 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61011638ns 1072606 1a110850 fd5ff06f jal x0, -44 +61011922ns 1072611 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61012207ns 1072616 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61012604ns 1072623 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61012775ns 1072626 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61013230ns 1072634 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61013400ns 1072637 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61013684ns 1072642 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61013968ns 1072647 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61014253ns 1072652 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61014707ns 1072660 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61014878ns 1072663 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61015162ns 1072668 1a110850 fd5ff06f jal x0, -44 +61015446ns 1072673 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61015730ns 1072678 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61016128ns 1072685 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61016299ns 1072688 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61016753ns 1072696 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61016924ns 1072699 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61017208ns 1072704 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61017492ns 1072709 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61017776ns 1072714 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61018231ns 1072722 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61018401ns 1072725 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61018685ns 1072730 1a110850 fd5ff06f jal x0, -44 +61018970ns 1072735 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61019254ns 1072740 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61019652ns 1072747 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61019822ns 1072750 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61020277ns 1072758 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61020447ns 1072761 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61020731ns 1072766 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61021016ns 1072771 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61021300ns 1072776 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61021754ns 1072784 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61021925ns 1072787 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61022209ns 1072792 1a110850 fd5ff06f jal x0, -44 +61022493ns 1072797 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61022777ns 1072802 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61023175ns 1072809 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61023346ns 1072812 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61023800ns 1072820 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61023971ns 1072823 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61024255ns 1072828 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61024539ns 1072833 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61024823ns 1072838 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61025278ns 1072846 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61025448ns 1072849 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61025733ns 1072854 1a110850 fd5ff06f jal x0, -44 +61026017ns 1072859 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61026301ns 1072864 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61026699ns 1072871 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61026869ns 1072874 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61027324ns 1072882 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61027494ns 1072885 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61027779ns 1072890 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61028063ns 1072895 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61028347ns 1072900 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61028802ns 1072908 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61028972ns 1072911 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61029256ns 1072916 1a110850 fd5ff06f jal x0, -44 +61029540ns 1072921 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61029825ns 1072926 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61030222ns 1072933 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61030393ns 1072936 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61030848ns 1072944 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61031018ns 1072947 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61031302ns 1072952 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61031586ns 1072957 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61031871ns 1072962 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61032325ns 1072970 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61032496ns 1072973 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61032780ns 1072978 1a110850 fd5ff06f jal x0, -44 +61033064ns 1072983 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61033348ns 1072988 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61033746ns 1072995 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61033916ns 1072998 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61034371ns 1073006 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61034542ns 1073009 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61034826ns 1073014 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61035110ns 1073019 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61035394ns 1073024 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61035849ns 1073032 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61036019ns 1073035 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61036303ns 1073040 1a110850 fd5ff06f jal x0, -44 +61036588ns 1073045 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61036872ns 1073050 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61037270ns 1073057 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61037440ns 1073060 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61037895ns 1073068 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61038065ns 1073071 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61038349ns 1073076 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61038634ns 1073081 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61038918ns 1073086 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61039372ns 1073094 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61039543ns 1073097 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61039827ns 1073102 1a110850 fd5ff06f jal x0, -44 +61040111ns 1073107 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61040395ns 1073112 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61040793ns 1073119 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61040964ns 1073122 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61041418ns 1073130 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61041589ns 1073133 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61041873ns 1073138 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61042157ns 1073143 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61042441ns 1073148 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61042896ns 1073156 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61043066ns 1073159 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61043351ns 1073164 1a110850 fd5ff06f jal x0, -44 +61043635ns 1073169 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61043919ns 1073174 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61044317ns 1073181 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61044487ns 1073184 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61044942ns 1073192 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61045112ns 1073195 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61045397ns 1073200 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61045681ns 1073205 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61045965ns 1073210 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61046419ns 1073218 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61046590ns 1073221 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61046874ns 1073226 1a110850 fd5ff06f jal x0, -44 +61047158ns 1073231 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61047442ns 1073236 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61047840ns 1073243 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61048011ns 1073246 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61048465ns 1073254 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61048636ns 1073257 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61048920ns 1073262 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61049204ns 1073267 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61049488ns 1073272 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61049943ns 1073280 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61050114ns 1073283 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61050398ns 1073288 1a110850 fd5ff06f jal x0, -44 +61050682ns 1073293 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61050966ns 1073298 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61051364ns 1073305 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61051534ns 1073308 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61051989ns 1073316 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61052160ns 1073319 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61052444ns 1073324 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61052728ns 1073329 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61053012ns 1073334 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61053467ns 1073342 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61053637ns 1073345 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61053921ns 1073350 1a110850 fd5ff06f jal x0, -44 +61054205ns 1073355 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61054490ns 1073360 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61054887ns 1073367 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61055058ns 1073370 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61055513ns 1073378 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61055683ns 1073381 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61055967ns 1073386 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61056251ns 1073391 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61056536ns 1073396 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61056990ns 1073404 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61057161ns 1073407 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61057445ns 1073412 1a110850 fd5ff06f jal x0, -44 +61057729ns 1073417 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61058013ns 1073422 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61058411ns 1073429 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61058582ns 1073432 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61059036ns 1073440 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61059207ns 1073443 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61059491ns 1073448 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61059775ns 1073453 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61060059ns 1073458 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61060514ns 1073466 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61060684ns 1073469 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61060968ns 1073474 1a110850 fd5ff06f jal x0, -44 +61061253ns 1073479 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61061537ns 1073484 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61061935ns 1073491 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61062105ns 1073494 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61062560ns 1073502 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61062730ns 1073505 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61063014ns 1073510 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61063299ns 1073515 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61063583ns 1073520 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61064037ns 1073528 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61064208ns 1073531 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61064492ns 1073536 1a110850 fd5ff06f jal x0, -44 +61064776ns 1073541 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61065060ns 1073546 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61065458ns 1073553 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61065629ns 1073556 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61066083ns 1073564 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61066254ns 1073567 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61066538ns 1073572 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61066822ns 1073577 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61067106ns 1073582 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61067561ns 1073590 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61067731ns 1073593 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61068016ns 1073598 1a110850 fd5ff06f jal x0, -44 +61068300ns 1073603 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61068584ns 1073608 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61068982ns 1073615 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61069152ns 1073618 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61069607ns 1073626 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61069777ns 1073629 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61070062ns 1073634 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61070346ns 1073639 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61070630ns 1073644 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61071085ns 1073652 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61071255ns 1073655 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61071539ns 1073660 1a110850 fd5ff06f jal x0, -44 +61071823ns 1073665 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61072108ns 1073670 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61072505ns 1073677 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61072676ns 1073680 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61073131ns 1073688 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61073301ns 1073691 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61073585ns 1073696 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61073869ns 1073701 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61074154ns 1073706 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61074608ns 1073714 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61074779ns 1073717 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61075063ns 1073722 1a110850 fd5ff06f jal x0, -44 +61075347ns 1073727 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61075631ns 1073732 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61076029ns 1073739 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61076199ns 1073742 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61076654ns 1073750 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61076825ns 1073753 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61077109ns 1073758 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61077393ns 1073763 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61077677ns 1073768 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61078132ns 1073776 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61078302ns 1073779 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61078586ns 1073784 1a110850 fd5ff06f jal x0, -44 +61078871ns 1073789 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61079155ns 1073794 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61079553ns 1073801 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61079723ns 1073804 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61080178ns 1073812 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61080348ns 1073815 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61080632ns 1073820 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61080917ns 1073825 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61081201ns 1073830 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61081655ns 1073838 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61081826ns 1073841 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61082110ns 1073846 1a110850 fd5ff06f jal x0, -44 +61082394ns 1073851 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61082678ns 1073856 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61083076ns 1073863 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61083247ns 1073866 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61083701ns 1073874 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61083872ns 1073877 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61084156ns 1073882 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61084440ns 1073887 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61084724ns 1073892 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61085179ns 1073900 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61085349ns 1073903 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61085634ns 1073908 1a110850 fd5ff06f jal x0, -44 +61085918ns 1073913 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61086202ns 1073918 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61086600ns 1073925 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61086770ns 1073928 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61087225ns 1073936 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61087395ns 1073939 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61087680ns 1073944 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61087964ns 1073949 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61088248ns 1073954 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61088703ns 1073962 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61088873ns 1073965 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61089157ns 1073970 1a110850 fd5ff06f jal x0, -44 +61089441ns 1073975 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61089725ns 1073980 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61090123ns 1073987 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61090294ns 1073990 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61090748ns 1073998 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61090919ns 1074001 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61091203ns 1074006 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61091487ns 1074011 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61091771ns 1074016 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61092226ns 1074024 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61092397ns 1074027 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61092681ns 1074032 1a110850 fd5ff06f jal x0, -44 +61092965ns 1074037 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61093249ns 1074042 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61093647ns 1074049 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61093817ns 1074052 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61094272ns 1074060 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61094443ns 1074063 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61094727ns 1074068 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61095011ns 1074073 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61095295ns 1074078 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61095750ns 1074086 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61095920ns 1074089 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61096204ns 1074094 1a110850 fd5ff06f jal x0, -44 +61096488ns 1074099 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61096773ns 1074104 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61097170ns 1074111 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61097341ns 1074114 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61097796ns 1074122 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61097966ns 1074125 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61098250ns 1074130 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61098534ns 1074135 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61098819ns 1074140 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61099273ns 1074148 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61099444ns 1074151 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61099728ns 1074156 1a110850 fd5ff06f jal x0, -44 +61100012ns 1074161 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61100296ns 1074166 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61100694ns 1074173 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61100865ns 1074176 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61101319ns 1074184 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61101490ns 1074187 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61101774ns 1074192 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61102058ns 1074197 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61102342ns 1074202 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61102797ns 1074210 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61102967ns 1074213 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61103251ns 1074218 1a110850 fd5ff06f jal x0, -44 +61103536ns 1074223 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61103820ns 1074228 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61104218ns 1074235 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61104388ns 1074238 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61104843ns 1074246 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61105013ns 1074249 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61105297ns 1074254 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61105582ns 1074259 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61105866ns 1074264 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61106320ns 1074272 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61106491ns 1074275 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61106775ns 1074280 1a110850 fd5ff06f jal x0, -44 +61107059ns 1074285 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61107343ns 1074290 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61107741ns 1074297 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61107912ns 1074300 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61108366ns 1074308 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61108537ns 1074311 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61108821ns 1074316 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61109105ns 1074321 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61109389ns 1074326 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61109844ns 1074334 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61110015ns 1074337 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61110299ns 1074342 1a110850 fd5ff06f jal x0, -44 +61110583ns 1074347 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61110867ns 1074352 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61111265ns 1074359 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61111435ns 1074362 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61111890ns 1074370 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61112060ns 1074373 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61112345ns 1074378 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61112629ns 1074383 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61112913ns 1074388 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61113368ns 1074396 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61113538ns 1074399 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61113822ns 1074404 1a110850 fd5ff06f jal x0, -44 +61114106ns 1074409 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61114391ns 1074414 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61114788ns 1074421 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61114959ns 1074424 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61115414ns 1074432 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61115584ns 1074435 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61115868ns 1074440 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61116152ns 1074445 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61116437ns 1074450 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61116891ns 1074458 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61117062ns 1074461 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61117346ns 1074466 1a110850 fd5ff06f jal x0, -44 +61117630ns 1074471 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61117914ns 1074476 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61118312ns 1074483 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61118482ns 1074486 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61118937ns 1074494 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61119108ns 1074497 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61119392ns 1074502 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61119676ns 1074507 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61119960ns 1074512 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61120415ns 1074520 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61120585ns 1074523 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61120869ns 1074528 1a110850 fd5ff06f jal x0, -44 +61121154ns 1074533 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61121438ns 1074538 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61121836ns 1074545 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61122006ns 1074548 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61122461ns 1074556 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61122631ns 1074559 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61122915ns 1074564 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61123200ns 1074569 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61123484ns 1074574 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61123938ns 1074582 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61124109ns 1074585 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61124393ns 1074590 1a110850 fd5ff06f jal x0, -44 +61124677ns 1074595 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61124961ns 1074600 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61125359ns 1074607 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61125530ns 1074610 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61125984ns 1074618 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61126155ns 1074621 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61126439ns 1074626 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61126723ns 1074631 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61127007ns 1074636 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61127462ns 1074644 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61127632ns 1074647 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61127917ns 1074652 1a110850 fd5ff06f jal x0, -44 +61128201ns 1074657 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61128485ns 1074662 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61128883ns 1074669 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61129053ns 1074672 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61129508ns 1074680 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61129678ns 1074683 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61129963ns 1074688 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61130247ns 1074693 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61130531ns 1074698 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61130986ns 1074706 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61131156ns 1074709 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61131440ns 1074714 1a110850 fd5ff06f jal x0, -44 +61131724ns 1074719 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61132008ns 1074724 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61132406ns 1074731 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61132577ns 1074734 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61133031ns 1074742 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61133202ns 1074745 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61133486ns 1074750 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61133770ns 1074755 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61134054ns 1074760 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61134509ns 1074768 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61134680ns 1074771 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61134964ns 1074776 1a110850 fd5ff06f jal x0, -44 +61135248ns 1074781 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61135532ns 1074786 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61135930ns 1074793 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61136100ns 1074796 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61136555ns 1074804 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61136726ns 1074807 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61137010ns 1074812 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61137294ns 1074817 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61137578ns 1074822 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61138033ns 1074830 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61138203ns 1074833 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61138487ns 1074838 1a110850 fd5ff06f jal x0, -44 +61138771ns 1074843 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61139056ns 1074848 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61139453ns 1074855 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61139624ns 1074858 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61140079ns 1074866 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61140249ns 1074869 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61140533ns 1074874 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61140817ns 1074879 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61141102ns 1074884 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61141556ns 1074892 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61141727ns 1074895 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61142011ns 1074900 1a110850 fd5ff06f jal x0, -44 +61142295ns 1074905 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61142579ns 1074910 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61142977ns 1074917 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61143148ns 1074920 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61143602ns 1074928 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61143773ns 1074931 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61144057ns 1074936 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61144341ns 1074941 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61144625ns 1074946 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61145080ns 1074954 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61145250ns 1074957 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61145535ns 1074962 1a110850 fd5ff06f jal x0, -44 +61145819ns 1074967 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61146103ns 1074972 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61146501ns 1074979 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61146671ns 1074982 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61147126ns 1074990 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61147296ns 1074993 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61147580ns 1074998 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61147865ns 1075003 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61148149ns 1075008 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61148603ns 1075016 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61148774ns 1075019 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61149058ns 1075024 1a110850 fd5ff06f jal x0, -44 +61149342ns 1075029 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61149626ns 1075034 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61150024ns 1075041 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61150195ns 1075044 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61150649ns 1075052 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61150820ns 1075055 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61151104ns 1075060 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61151388ns 1075065 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61151672ns 1075070 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61152127ns 1075078 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61152298ns 1075081 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61152582ns 1075086 1a110850 fd5ff06f jal x0, -44 +61152866ns 1075091 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61153150ns 1075096 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61153548ns 1075103 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61153718ns 1075106 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61154173ns 1075114 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61154343ns 1075117 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61154628ns 1075122 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61154912ns 1075127 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61155196ns 1075132 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61155651ns 1075140 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61155821ns 1075143 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61156105ns 1075148 1a110850 fd5ff06f jal x0, -44 +61156389ns 1075153 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61156674ns 1075158 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61157071ns 1075165 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61157242ns 1075168 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61157697ns 1075176 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61157867ns 1075179 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61158151ns 1075184 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61158435ns 1075189 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61158720ns 1075194 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61159174ns 1075202 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61159345ns 1075205 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61159629ns 1075210 1a110850 fd5ff06f jal x0, -44 +61159913ns 1075215 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61160197ns 1075220 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61160595ns 1075227 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61160765ns 1075230 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61161220ns 1075238 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61161391ns 1075241 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61161675ns 1075246 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61161959ns 1075251 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61162243ns 1075256 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61162698ns 1075264 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61162868ns 1075267 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61163152ns 1075272 1a110850 fd5ff06f jal x0, -44 +61163437ns 1075277 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61163721ns 1075282 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61164119ns 1075289 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61164289ns 1075292 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61164744ns 1075300 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61164914ns 1075303 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61165198ns 1075308 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61165483ns 1075313 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61165767ns 1075318 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61166221ns 1075326 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61166392ns 1075329 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61166676ns 1075334 1a110850 fd5ff06f jal x0, -44 +61166960ns 1075339 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61167244ns 1075344 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61167642ns 1075351 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61167813ns 1075354 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61168267ns 1075362 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61168438ns 1075365 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61168722ns 1075370 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61169006ns 1075375 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61169290ns 1075380 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61169745ns 1075388 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61169915ns 1075391 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61170200ns 1075396 1a110850 fd5ff06f jal x0, -44 +61170484ns 1075401 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61170768ns 1075406 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61171166ns 1075413 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61171336ns 1075416 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61171791ns 1075424 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61171961ns 1075427 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61172246ns 1075432 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61172530ns 1075437 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61172814ns 1075442 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61173269ns 1075450 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61173439ns 1075453 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61173723ns 1075458 1a110850 fd5ff06f jal x0, -44 +61174007ns 1075463 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61174291ns 1075468 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61174689ns 1075475 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61174860ns 1075478 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61175314ns 1075486 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61175485ns 1075489 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61175769ns 1075494 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61176053ns 1075499 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61176337ns 1075504 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61176792ns 1075512 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61176963ns 1075515 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61177247ns 1075520 1a110850 fd5ff06f jal x0, -44 +61177531ns 1075525 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61177815ns 1075530 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61178213ns 1075537 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61178383ns 1075540 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61178838ns 1075548 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61179009ns 1075551 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61179293ns 1075556 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61179577ns 1075561 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61179861ns 1075566 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61180316ns 1075574 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61180486ns 1075577 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61180770ns 1075582 1a110850 fd5ff06f jal x0, -44 +61181055ns 1075587 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61181339ns 1075592 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61181736ns 1075599 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61181907ns 1075602 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61182362ns 1075610 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61182532ns 1075613 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61182816ns 1075618 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61183100ns 1075623 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61183385ns 1075628 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61183839ns 1075636 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61184010ns 1075639 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61184294ns 1075644 1a110850 fd5ff06f jal x0, -44 +61184578ns 1075649 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61184862ns 1075654 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61185260ns 1075661 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61185431ns 1075664 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61185885ns 1075672 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61186056ns 1075675 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61186340ns 1075680 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61186624ns 1075685 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61186908ns 1075690 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61187363ns 1075698 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61187533ns 1075701 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61187818ns 1075706 1a110850 fd5ff06f jal x0, -44 +61188102ns 1075711 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61188386ns 1075716 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61188784ns 1075723 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61188954ns 1075726 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61189409ns 1075734 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61189579ns 1075737 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61189863ns 1075742 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61190148ns 1075747 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61190432ns 1075752 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61190886ns 1075760 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61191057ns 1075763 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61191341ns 1075768 1a110850 fd5ff06f jal x0, -44 +61191625ns 1075773 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61191909ns 1075778 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61192307ns 1075785 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61192478ns 1075788 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61192932ns 1075796 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61193103ns 1075799 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61193387ns 1075804 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61193671ns 1075809 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61193955ns 1075814 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61194410ns 1075822 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61194581ns 1075825 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61194865ns 1075830 1a110850 fd5ff06f jal x0, -44 +61195149ns 1075835 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61195433ns 1075840 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61195831ns 1075847 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61196001ns 1075850 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61196456ns 1075858 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61196626ns 1075861 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61196911ns 1075866 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61197195ns 1075871 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61197479ns 1075876 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61197934ns 1075884 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61198104ns 1075887 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61198388ns 1075892 1a110850 fd5ff06f jal x0, -44 +61198672ns 1075897 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61198957ns 1075902 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61199354ns 1075909 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61199525ns 1075912 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61199980ns 1075920 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61200150ns 1075923 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61200434ns 1075928 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61200718ns 1075933 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61201003ns 1075938 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61201457ns 1075946 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61201628ns 1075949 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61201912ns 1075954 1a110850 fd5ff06f jal x0, -44 +61202196ns 1075959 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61202480ns 1075964 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61202878ns 1075971 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61203048ns 1075974 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61203503ns 1075982 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61203674ns 1075985 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61203958ns 1075990 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61204242ns 1075995 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61204526ns 1076000 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61204981ns 1076008 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61205151ns 1076011 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61205435ns 1076016 1a110850 fd5ff06f jal x0, -44 +61205720ns 1076021 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61206004ns 1076026 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61206402ns 1076033 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61206572ns 1076036 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61207027ns 1076044 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61207197ns 1076047 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61207481ns 1076052 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61207766ns 1076057 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61208050ns 1076062 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61208504ns 1076070 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61208675ns 1076073 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61208959ns 1076078 1a110850 fd5ff06f jal x0, -44 +61209243ns 1076083 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61209527ns 1076088 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61209925ns 1076095 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61210096ns 1076098 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61210550ns 1076106 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61210721ns 1076109 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61211005ns 1076114 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61211289ns 1076119 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61211573ns 1076124 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61212028ns 1076132 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61212198ns 1076135 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61212483ns 1076140 1a110850 fd5ff06f jal x0, -44 +61212767ns 1076145 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61213051ns 1076150 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61213449ns 1076157 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61213619ns 1076160 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61214074ns 1076168 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61214244ns 1076171 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61214529ns 1076176 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61214813ns 1076181 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61215097ns 1076186 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61215552ns 1076194 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61215722ns 1076197 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61216006ns 1076202 1a110850 fd5ff06f jal x0, -44 +61216290ns 1076207 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61216575ns 1076212 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61216972ns 1076219 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61217143ns 1076222 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61217597ns 1076230 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61217768ns 1076233 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61218052ns 1076238 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61218336ns 1076243 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61218620ns 1076248 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61219075ns 1076256 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61219246ns 1076259 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61219530ns 1076264 1a110850 fd5ff06f jal x0, -44 +61219814ns 1076269 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61220098ns 1076274 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61220496ns 1076281 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61220666ns 1076284 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61221121ns 1076292 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61221292ns 1076295 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61221576ns 1076300 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61221860ns 1076305 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61222144ns 1076310 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61222599ns 1076318 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61222769ns 1076321 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61223053ns 1076326 1a110850 fd5ff06f jal x0, -44 +61223338ns 1076331 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61223622ns 1076336 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61224019ns 1076343 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61224190ns 1076346 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61224645ns 1076354 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61224815ns 1076357 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61225099ns 1076362 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61225383ns 1076367 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61225668ns 1076372 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61226122ns 1076380 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61226293ns 1076383 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61226577ns 1076388 1a110850 fd5ff06f jal x0, -44 +61226861ns 1076393 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61227145ns 1076398 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61227543ns 1076405 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61227714ns 1076408 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61228168ns 1076416 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61228339ns 1076419 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61228623ns 1076424 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61228907ns 1076429 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61229191ns 1076434 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61229646ns 1076442 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61229816ns 1076445 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61230101ns 1076450 1a110850 fd5ff06f jal x0, -44 +61230385ns 1076455 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61230669ns 1076460 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61231067ns 1076467 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61231237ns 1076470 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61231692ns 1076478 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61231862ns 1076481 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61232146ns 1076486 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61232431ns 1076491 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61232715ns 1076496 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61233169ns 1076504 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61233340ns 1076507 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61233624ns 1076512 1a110850 fd5ff06f jal x0, -44 +61233908ns 1076517 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61234192ns 1076522 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61234590ns 1076529 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61234761ns 1076532 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61235215ns 1076540 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61235386ns 1076543 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61235670ns 1076548 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61235954ns 1076553 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61236238ns 1076558 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61236693ns 1076566 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61236864ns 1076569 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61237148ns 1076574 1a110850 fd5ff06f jal x0, -44 +61237432ns 1076579 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61237716ns 1076584 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61238114ns 1076591 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61238284ns 1076594 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61238739ns 1076602 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61238909ns 1076605 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61239194ns 1076610 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61239478ns 1076615 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61239762ns 1076620 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61240217ns 1076628 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61240387ns 1076631 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61240671ns 1076636 1a110850 fd5ff06f jal x0, -44 +61240955ns 1076641 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61241240ns 1076646 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61241637ns 1076653 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61241808ns 1076656 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61242263ns 1076664 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61242433ns 1076667 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61242717ns 1076672 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61243001ns 1076677 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61243286ns 1076682 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61243740ns 1076690 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61243911ns 1076693 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61244195ns 1076698 1a110850 fd5ff06f jal x0, -44 +61244479ns 1076703 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61244763ns 1076708 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61245161ns 1076715 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61245331ns 1076718 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61245786ns 1076726 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61245957ns 1076729 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61246241ns 1076734 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61246525ns 1076739 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61246809ns 1076744 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61247264ns 1076752 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61247434ns 1076755 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61247718ns 1076760 1a110850 fd5ff06f jal x0, -44 +61248003ns 1076765 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61248287ns 1076770 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61248685ns 1076777 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61248855ns 1076780 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61249310ns 1076788 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61249480ns 1076791 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61249764ns 1076796 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61250049ns 1076801 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61250333ns 1076806 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61250787ns 1076814 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61250958ns 1076817 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61251242ns 1076822 1a110850 fd5ff06f jal x0, -44 +61251526ns 1076827 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61251810ns 1076832 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61252208ns 1076839 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61252379ns 1076842 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61252833ns 1076850 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61253004ns 1076853 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61253288ns 1076858 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61253572ns 1076863 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61253856ns 1076868 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61254311ns 1076876 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61254481ns 1076879 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61254766ns 1076884 1a110850 fd5ff06f jal x0, -44 +61255050ns 1076889 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61255334ns 1076894 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61255732ns 1076901 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61255902ns 1076904 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61256357ns 1076912 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61256527ns 1076915 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61256812ns 1076920 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61257096ns 1076925 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61257380ns 1076930 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61257835ns 1076938 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61258005ns 1076941 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61258289ns 1076946 1a110850 fd5ff06f jal x0, -44 +61258573ns 1076951 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61258858ns 1076956 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61259255ns 1076963 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61259426ns 1076966 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61259880ns 1076974 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61260051ns 1076977 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61260335ns 1076982 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61260619ns 1076987 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61260903ns 1076992 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61261358ns 1077000 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61261529ns 1077003 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61261813ns 1077008 1a110850 fd5ff06f jal x0, -44 +61262097ns 1077013 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61262381ns 1077018 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61262779ns 1077025 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61262949ns 1077028 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61263404ns 1077036 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61263575ns 1077039 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61263859ns 1077044 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61264143ns 1077049 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61264427ns 1077054 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61264882ns 1077062 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61265052ns 1077065 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61265336ns 1077070 1a110850 fd5ff06f jal x0, -44 +61265621ns 1077075 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61265905ns 1077080 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61266303ns 1077087 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61266473ns 1077090 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61266928ns 1077098 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61267098ns 1077101 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61267382ns 1077106 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61267666ns 1077111 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61267951ns 1077116 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61268405ns 1077124 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61268576ns 1077127 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61268860ns 1077132 1a110850 fd5ff06f jal x0, -44 +61269144ns 1077137 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61269428ns 1077142 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61269826ns 1077149 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61269997ns 1077152 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61270451ns 1077160 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61270622ns 1077163 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61270906ns 1077168 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61271190ns 1077173 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61271474ns 1077178 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61271929ns 1077186 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61272099ns 1077189 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61272384ns 1077194 1a110850 fd5ff06f jal x0, -44 +61272668ns 1077199 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61272952ns 1077204 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61273350ns 1077211 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61273520ns 1077214 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61273975ns 1077222 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61274145ns 1077225 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61274429ns 1077230 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61274714ns 1077235 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61274998ns 1077240 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61275452ns 1077248 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61275623ns 1077251 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61275907ns 1077256 1a110850 fd5ff06f jal x0, -44 +61276191ns 1077261 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61276475ns 1077266 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61276873ns 1077273 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61277044ns 1077276 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61277498ns 1077284 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61277669ns 1077287 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61277953ns 1077292 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61278237ns 1077297 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61278521ns 1077302 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61278976ns 1077310 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61279147ns 1077313 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61279431ns 1077318 1a110850 fd5ff06f jal x0, -44 +61279715ns 1077323 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61279999ns 1077328 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61280397ns 1077335 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61280567ns 1077338 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61281022ns 1077346 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61281192ns 1077349 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61281477ns 1077354 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61281761ns 1077359 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61282045ns 1077364 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61282500ns 1077372 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61282670ns 1077375 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61282954ns 1077380 1a110850 fd5ff06f jal x0, -44 +61283238ns 1077385 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61283523ns 1077390 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61283920ns 1077397 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61284091ns 1077400 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61284546ns 1077408 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61284716ns 1077411 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61285000ns 1077416 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61285284ns 1077421 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61285569ns 1077426 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61286023ns 1077434 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61286194ns 1077437 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61286478ns 1077442 1a110850 fd5ff06f jal x0, -44 +61286762ns 1077447 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61287046ns 1077452 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61287444ns 1077459 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61287615ns 1077462 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61288069ns 1077470 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61288240ns 1077473 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61288524ns 1077478 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61288808ns 1077483 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61289092ns 1077488 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61289547ns 1077496 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61289717ns 1077499 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61290001ns 1077504 1a110850 fd5ff06f jal x0, -44 +61290286ns 1077509 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61290570ns 1077514 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61290968ns 1077521 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61291138ns 1077524 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61291593ns 1077532 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61291763ns 1077535 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61292047ns 1077540 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61292332ns 1077545 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61292616ns 1077550 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61293070ns 1077558 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61293241ns 1077561 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61293525ns 1077566 1a110850 fd5ff06f jal x0, -44 +61293809ns 1077571 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61294093ns 1077576 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61294491ns 1077583 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61294662ns 1077586 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61295116ns 1077594 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61295287ns 1077597 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61295571ns 1077602 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61295855ns 1077607 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61296139ns 1077612 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61296594ns 1077620 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61296764ns 1077623 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61297049ns 1077628 1a110850 fd5ff06f jal x0, -44 +61297333ns 1077633 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61297617ns 1077638 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61298015ns 1077645 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61298185ns 1077648 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61298640ns 1077656 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61298810ns 1077659 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61299095ns 1077664 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61299379ns 1077669 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61299663ns 1077674 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61300118ns 1077682 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61300288ns 1077685 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61300572ns 1077690 1a110850 fd5ff06f jal x0, -44 +61300856ns 1077695 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61301141ns 1077700 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61301538ns 1077707 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61301709ns 1077710 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61302163ns 1077718 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61302334ns 1077721 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61302618ns 1077726 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61302902ns 1077731 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61303186ns 1077736 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61303641ns 1077744 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61303812ns 1077747 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61304096ns 1077752 1a110850 fd5ff06f jal x0, -44 +61304380ns 1077757 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61304664ns 1077762 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61305062ns 1077769 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61305232ns 1077772 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61305687ns 1077780 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61305858ns 1077783 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61306142ns 1077788 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61306426ns 1077793 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61306710ns 1077798 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61307165ns 1077806 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61307335ns 1077809 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61307619ns 1077814 1a110850 fd5ff06f jal x0, -44 +61307904ns 1077819 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61308188ns 1077824 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61308586ns 1077831 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61308756ns 1077834 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61309211ns 1077842 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61309381ns 1077845 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61309665ns 1077850 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61309949ns 1077855 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61310234ns 1077860 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61310688ns 1077868 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61310859ns 1077871 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61311143ns 1077876 1a110850 fd5ff06f jal x0, -44 +61311427ns 1077881 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61311711ns 1077886 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61312109ns 1077893 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61312280ns 1077896 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61312734ns 1077904 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61312905ns 1077907 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61313189ns 1077912 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61313473ns 1077917 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61313757ns 1077922 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61314212ns 1077930 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61314382ns 1077933 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61314667ns 1077938 1a110850 fd5ff06f jal x0, -44 +61314951ns 1077943 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61315235ns 1077948 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61315633ns 1077955 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61315803ns 1077958 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61316258ns 1077966 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61316428ns 1077969 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61316712ns 1077974 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61316997ns 1077979 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61317281ns 1077984 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61317735ns 1077992 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61317906ns 1077995 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61318190ns 1078000 1a110850 fd5ff06f jal x0, -44 +61318474ns 1078005 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61318758ns 1078010 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61319156ns 1078017 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61319327ns 1078020 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61319781ns 1078028 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61319952ns 1078031 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61320236ns 1078036 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61320520ns 1078041 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61320804ns 1078046 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61321259ns 1078054 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61321430ns 1078057 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61321714ns 1078062 1a110850 fd5ff06f jal x0, -44 +61321998ns 1078067 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61322282ns 1078072 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61322680ns 1078079 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61322850ns 1078082 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61323305ns 1078090 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61323475ns 1078093 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61323760ns 1078098 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61324044ns 1078103 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61324328ns 1078108 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61324783ns 1078116 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61324953ns 1078119 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61325237ns 1078124 1a110850 fd5ff06f jal x0, -44 +61325521ns 1078129 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61325806ns 1078134 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61326203ns 1078141 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61326374ns 1078144 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61326829ns 1078152 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61326999ns 1078155 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61327283ns 1078160 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61327567ns 1078165 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61327852ns 1078170 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61328306ns 1078178 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61328477ns 1078181 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61328761ns 1078186 1a110850 fd5ff06f jal x0, -44 +61329045ns 1078191 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61329329ns 1078196 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61329727ns 1078203 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61329898ns 1078206 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61330352ns 1078214 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61330523ns 1078217 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61330807ns 1078222 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61331091ns 1078227 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61331375ns 1078232 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61331830ns 1078240 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61332000ns 1078243 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61332284ns 1078248 1a110850 fd5ff06f jal x0, -44 +61332569ns 1078253 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61332853ns 1078258 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61333251ns 1078265 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61333421ns 1078268 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61333876ns 1078276 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61334046ns 1078279 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61334330ns 1078284 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61334615ns 1078289 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61334899ns 1078294 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61335353ns 1078302 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61335524ns 1078305 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61335808ns 1078310 1a110850 fd5ff06f jal x0, -44 +61336092ns 1078315 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61336376ns 1078320 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61336774ns 1078327 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61336945ns 1078330 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61337399ns 1078338 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61337570ns 1078341 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61337854ns 1078346 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61338138ns 1078351 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61338422ns 1078356 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61338877ns 1078364 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61339047ns 1078367 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61339332ns 1078372 1a110850 fd5ff06f jal x0, -44 +61339616ns 1078377 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61339900ns 1078382 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61340298ns 1078389 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61340468ns 1078392 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61340923ns 1078400 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61341093ns 1078403 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61341378ns 1078408 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61341662ns 1078413 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61341946ns 1078418 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61342401ns 1078426 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61342571ns 1078429 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61342855ns 1078434 1a110850 fd5ff06f jal x0, -44 +61343139ns 1078439 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61343424ns 1078444 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61343821ns 1078451 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61343992ns 1078454 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61344447ns 1078462 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61344617ns 1078465 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61344901ns 1078470 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61345185ns 1078475 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61345469ns 1078480 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61345924ns 1078488 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61346095ns 1078491 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61346379ns 1078496 1a110850 fd5ff06f jal x0, -44 +61346663ns 1078501 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61346947ns 1078506 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61347345ns 1078513 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61347515ns 1078516 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61347970ns 1078524 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61348141ns 1078527 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61348425ns 1078532 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61348709ns 1078537 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61348993ns 1078542 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61349448ns 1078550 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61349618ns 1078553 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61349902ns 1078558 1a110850 fd5ff06f jal x0, -44 +61350187ns 1078563 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61350471ns 1078568 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61350869ns 1078575 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61351039ns 1078578 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61351494ns 1078586 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61351664ns 1078589 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61351948ns 1078594 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61352232ns 1078599 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61352517ns 1078604 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61352971ns 1078612 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61353142ns 1078615 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61353426ns 1078620 1a110850 fd5ff06f jal x0, -44 +61353710ns 1078625 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61353994ns 1078630 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61354392ns 1078637 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61354563ns 1078640 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61355017ns 1078648 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61355188ns 1078651 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61355472ns 1078656 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61355756ns 1078661 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61356040ns 1078666 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61356495ns 1078674 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61356665ns 1078677 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61356950ns 1078682 1a110850 fd5ff06f jal x0, -44 +61357234ns 1078687 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61357518ns 1078692 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61357916ns 1078699 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61358086ns 1078702 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61358541ns 1078710 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61358711ns 1078713 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61358995ns 1078718 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61359280ns 1078723 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61359564ns 1078728 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61360018ns 1078736 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61360189ns 1078739 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61360473ns 1078744 1a110850 fd5ff06f jal x0, -44 +61360757ns 1078749 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61361041ns 1078754 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61361439ns 1078761 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61361610ns 1078764 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61362064ns 1078772 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61362235ns 1078775 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61362519ns 1078780 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61362803ns 1078785 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61363087ns 1078790 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61363542ns 1078798 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61363713ns 1078801 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61363997ns 1078806 1a110850 fd5ff06f jal x0, -44 +61364281ns 1078811 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61364565ns 1078816 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61364963ns 1078823 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61365133ns 1078826 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61365588ns 1078834 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61365759ns 1078837 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61366043ns 1078842 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61366327ns 1078847 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61366611ns 1078852 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61367066ns 1078860 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61367236ns 1078863 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61367520ns 1078868 1a110850 fd5ff06f jal x0, -44 +61367804ns 1078873 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61368089ns 1078878 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61368486ns 1078885 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61368657ns 1078888 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61369112ns 1078896 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61369282ns 1078899 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61369566ns 1078904 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61369850ns 1078909 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61370135ns 1078914 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61370589ns 1078922 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61370760ns 1078925 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61371044ns 1078930 1a110850 fd5ff06f jal x0, -44 +61371328ns 1078935 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61371612ns 1078940 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61372010ns 1078947 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61372181ns 1078950 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61372635ns 1078958 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61372806ns 1078961 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61373090ns 1078966 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61373374ns 1078971 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61373658ns 1078976 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61374113ns 1078984 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61374283ns 1078987 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61374567ns 1078992 1a110850 fd5ff06f jal x0, -44 +61374852ns 1078997 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61375136ns 1079002 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61375534ns 1079009 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61375704ns 1079012 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61376159ns 1079020 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61376329ns 1079023 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61376613ns 1079028 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61376898ns 1079033 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61377182ns 1079038 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61377636ns 1079046 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61377807ns 1079049 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61378091ns 1079054 1a110850 fd5ff06f jal x0, -44 +61378375ns 1079059 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61378659ns 1079064 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61379057ns 1079071 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61379228ns 1079074 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61379682ns 1079082 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61379853ns 1079085 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61380137ns 1079090 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61380421ns 1079095 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61380705ns 1079100 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61381160ns 1079108 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61381330ns 1079111 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61381615ns 1079116 1a110850 fd5ff06f jal x0, -44 +61381899ns 1079121 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61382183ns 1079126 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61382581ns 1079133 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61382751ns 1079136 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61383206ns 1079144 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61383376ns 1079147 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61383661ns 1079152 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61383945ns 1079157 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61384229ns 1079162 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61384684ns 1079170 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61384854ns 1079173 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61385138ns 1079178 1a110850 fd5ff06f jal x0, -44 +61385422ns 1079183 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61385707ns 1079188 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61386104ns 1079195 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61386275ns 1079198 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61386730ns 1079206 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61386900ns 1079209 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61387184ns 1079214 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61387468ns 1079219 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61387752ns 1079224 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61388207ns 1079232 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61388378ns 1079235 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61388662ns 1079240 1a110850 fd5ff06f jal x0, -44 +61388946ns 1079245 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61389230ns 1079250 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61389628ns 1079257 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61389798ns 1079260 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61390253ns 1079268 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61390424ns 1079271 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61390708ns 1079276 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61390992ns 1079281 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61391276ns 1079286 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61391731ns 1079294 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61391901ns 1079297 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61392185ns 1079302 1a110850 fd5ff06f jal x0, -44 +61392470ns 1079307 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61392754ns 1079312 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61393152ns 1079319 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61393322ns 1079322 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61393777ns 1079330 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61393947ns 1079333 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61394231ns 1079338 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61394515ns 1079343 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61394800ns 1079348 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61395254ns 1079356 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61395425ns 1079359 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61395709ns 1079364 1a110850 fd5ff06f jal x0, -44 +61395993ns 1079369 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61396277ns 1079374 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61396675ns 1079381 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61396846ns 1079384 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61397300ns 1079392 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61397471ns 1079395 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61397755ns 1079400 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61398039ns 1079405 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61398323ns 1079410 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61398778ns 1079418 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61398948ns 1079421 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61399233ns 1079426 1a110850 fd5ff06f jal x0, -44 +61399517ns 1079431 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61399801ns 1079436 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61400199ns 1079443 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61400369ns 1079446 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61400824ns 1079454 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61400994ns 1079457 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61401279ns 1079462 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61401563ns 1079467 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61401847ns 1079472 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61402301ns 1079480 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61402472ns 1079483 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61402756ns 1079488 1a110850 fd5ff06f jal x0, -44 +61403040ns 1079493 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61403324ns 1079498 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61403722ns 1079505 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61403893ns 1079508 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61404347ns 1079516 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61404518ns 1079519 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61404802ns 1079524 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61405086ns 1079529 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61405370ns 1079534 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61405825ns 1079542 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61405996ns 1079545 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61406280ns 1079550 1a110850 fd5ff06f jal x0, -44 +61406564ns 1079555 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61406848ns 1079560 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61407246ns 1079567 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61407416ns 1079570 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61407871ns 1079578 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61408042ns 1079581 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61408326ns 1079586 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61408610ns 1079591 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61408894ns 1079596 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61409349ns 1079604 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61409519ns 1079607 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61409803ns 1079612 1a110850 fd5ff06f jal x0, -44 +61410087ns 1079617 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61410372ns 1079622 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61410769ns 1079629 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61410940ns 1079632 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61411395ns 1079640 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61411565ns 1079643 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61411849ns 1079648 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61412133ns 1079653 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61412418ns 1079658 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61412872ns 1079666 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61413043ns 1079669 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61413327ns 1079674 1a110850 fd5ff06f jal x0, -44 +61413611ns 1079679 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61413895ns 1079684 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61414293ns 1079691 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61414464ns 1079694 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61414918ns 1079702 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61415089ns 1079705 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61415373ns 1079710 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61415657ns 1079715 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61415941ns 1079720 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61416396ns 1079728 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61416566ns 1079731 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61416850ns 1079736 1a110850 fd5ff06f jal x0, -44 +61417135ns 1079741 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61417419ns 1079746 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61417817ns 1079753 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61417987ns 1079756 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61418442ns 1079764 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61418612ns 1079767 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61418896ns 1079772 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61419181ns 1079777 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61419465ns 1079782 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61419919ns 1079790 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61420090ns 1079793 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61420374ns 1079798 1a110850 fd5ff06f jal x0, -44 +61420658ns 1079803 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61420942ns 1079808 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61421340ns 1079815 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61421511ns 1079818 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61421965ns 1079826 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61422136ns 1079829 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61422420ns 1079834 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61422704ns 1079839 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61422988ns 1079844 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61423443ns 1079852 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61423613ns 1079855 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61423898ns 1079860 1a110850 fd5ff06f jal x0, -44 +61424182ns 1079865 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61424466ns 1079870 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61424864ns 1079877 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61425034ns 1079880 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61425489ns 1079888 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61425659ns 1079891 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61425944ns 1079896 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61426228ns 1079901 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61426512ns 1079906 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61426967ns 1079914 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61427137ns 1079917 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61427421ns 1079922 1a110850 fd5ff06f jal x0, -44 +61427705ns 1079927 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61427990ns 1079932 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61428387ns 1079939 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61428558ns 1079942 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61429013ns 1079950 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61429183ns 1079953 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61429467ns 1079958 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61429751ns 1079963 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61430035ns 1079968 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61430490ns 1079976 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61430661ns 1079979 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61430945ns 1079984 1a110850 fd5ff06f jal x0, -44 +61431229ns 1079989 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61431513ns 1079994 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61431911ns 1080001 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61432081ns 1080004 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61432536ns 1080012 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61432707ns 1080015 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61432991ns 1080020 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61433275ns 1080025 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61433559ns 1080030 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61434014ns 1080038 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61434184ns 1080041 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61434468ns 1080046 1a110850 fd5ff06f jal x0, -44 +61434753ns 1080051 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61435037ns 1080056 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61435435ns 1080063 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61435605ns 1080066 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61436060ns 1080074 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61436230ns 1080077 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61436514ns 1080082 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61436799ns 1080087 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61437083ns 1080092 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61437537ns 1080100 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61437708ns 1080103 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61437992ns 1080108 1a110850 fd5ff06f jal x0, -44 +61438276ns 1080113 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61438560ns 1080118 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61438958ns 1080125 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61439129ns 1080128 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61439583ns 1080136 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61439754ns 1080139 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61440038ns 1080144 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61440322ns 1080149 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61440606ns 1080154 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61441061ns 1080162 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61441231ns 1080165 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61441516ns 1080170 1a110850 fd5ff06f jal x0, -44 +61441800ns 1080175 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61442084ns 1080180 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61442482ns 1080187 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61442652ns 1080190 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61443107ns 1080198 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61443277ns 1080201 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61443562ns 1080206 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61443846ns 1080211 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61444130ns 1080216 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61444584ns 1080224 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61444755ns 1080227 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61445039ns 1080232 1a110850 fd5ff06f jal x0, -44 +61445323ns 1080237 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61445607ns 1080242 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61446005ns 1080249 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61446176ns 1080252 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61446630ns 1080260 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61446801ns 1080263 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61447085ns 1080268 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61447369ns 1080273 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61447653ns 1080278 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61448108ns 1080286 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61448279ns 1080289 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61448563ns 1080294 1a110850 fd5ff06f jal x0, -44 +61448847ns 1080299 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61449131ns 1080304 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61449529ns 1080311 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61449699ns 1080314 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61450154ns 1080322 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61450325ns 1080325 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61450609ns 1080330 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61450893ns 1080335 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61451177ns 1080340 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61451632ns 1080348 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61451802ns 1080351 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61452086ns 1080356 1a110850 fd5ff06f jal x0, -44 +61452370ns 1080361 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61452655ns 1080366 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61453052ns 1080373 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61453223ns 1080376 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61453678ns 1080384 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61453848ns 1080387 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61454132ns 1080392 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61454416ns 1080397 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61454701ns 1080402 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61455155ns 1080410 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61455326ns 1080413 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61455610ns 1080418 1a110850 fd5ff06f jal x0, -44 +61455894ns 1080423 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61456178ns 1080428 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61456576ns 1080435 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61456747ns 1080438 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61457201ns 1080446 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61457372ns 1080449 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61457656ns 1080454 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61457940ns 1080459 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61458224ns 1080464 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61458679ns 1080472 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61458849ns 1080475 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61459133ns 1080480 1a110850 fd5ff06f jal x0, -44 +61459418ns 1080485 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61459702ns 1080490 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61460100ns 1080497 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61460270ns 1080500 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61460725ns 1080508 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61460895ns 1080511 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61461179ns 1080516 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61461464ns 1080521 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61461748ns 1080526 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61462202ns 1080534 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61462373ns 1080537 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61462657ns 1080542 1a110850 fd5ff06f jal x0, -44 +61462941ns 1080547 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61463225ns 1080552 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61463623ns 1080559 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61463794ns 1080562 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61464248ns 1080570 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61464419ns 1080573 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61464703ns 1080578 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61464987ns 1080583 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61465271ns 1080588 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61465726ns 1080596 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61465896ns 1080599 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61466181ns 1080604 1a110850 fd5ff06f jal x0, -44 +61466465ns 1080609 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61466749ns 1080614 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61467147ns 1080621 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61467317ns 1080624 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61467772ns 1080632 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61467942ns 1080635 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61468227ns 1080640 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61468511ns 1080645 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61468795ns 1080650 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61469250ns 1080658 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61469420ns 1080661 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61469704ns 1080666 1a110850 fd5ff06f jal x0, -44 +61469988ns 1080671 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61470273ns 1080676 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61470670ns 1080683 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61470841ns 1080686 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61471296ns 1080694 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61471466ns 1080697 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61471750ns 1080702 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61472034ns 1080707 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61472319ns 1080712 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61472773ns 1080720 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61472944ns 1080723 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61473228ns 1080728 1a110850 fd5ff06f jal x0, -44 +61473512ns 1080733 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61473796ns 1080738 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61474194ns 1080745 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61474364ns 1080748 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61474819ns 1080756 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61474990ns 1080759 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61475274ns 1080764 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61475558ns 1080769 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61475842ns 1080774 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61476297ns 1080782 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61476467ns 1080785 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61476751ns 1080790 1a110850 fd5ff06f jal x0, -44 +61477036ns 1080795 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61477320ns 1080800 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61477718ns 1080807 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61477888ns 1080810 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61478343ns 1080818 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61478513ns 1080821 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61478797ns 1080826 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61479082ns 1080831 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61479366ns 1080836 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61479820ns 1080844 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61479991ns 1080847 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61480275ns 1080852 1a110850 fd5ff06f jal x0, -44 +61480559ns 1080857 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61480843ns 1080862 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61481241ns 1080869 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61481412ns 1080872 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61481866ns 1080880 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61482037ns 1080883 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61482321ns 1080888 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61482605ns 1080893 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61482889ns 1080898 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61483344ns 1080906 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61483514ns 1080909 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61483799ns 1080914 1a110850 fd5ff06f jal x0, -44 +61484083ns 1080919 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61484367ns 1080924 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61484765ns 1080931 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61484935ns 1080934 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61485390ns 1080942 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61485560ns 1080945 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61485845ns 1080950 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61486129ns 1080955 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61486413ns 1080960 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61486867ns 1080968 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61487038ns 1080971 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61487322ns 1080976 1a110850 fd5ff06f jal x0, -44 +61487606ns 1080981 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61487890ns 1080986 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61488288ns 1080993 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61488459ns 1080996 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61488913ns 1081004 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61489084ns 1081007 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61489368ns 1081012 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61489652ns 1081017 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61489936ns 1081022 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61490391ns 1081030 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61490562ns 1081033 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61490846ns 1081038 1a110850 fd5ff06f jal x0, -44 +61491130ns 1081043 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61491414ns 1081048 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61491812ns 1081055 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61491982ns 1081058 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61492437ns 1081066 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61492608ns 1081069 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61492892ns 1081074 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61493176ns 1081079 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61493460ns 1081084 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61493915ns 1081092 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61494085ns 1081095 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61494369ns 1081100 1a110850 fd5ff06f jal x0, -44 +61494653ns 1081105 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61494938ns 1081110 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61495335ns 1081117 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61495506ns 1081120 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61495961ns 1081128 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61496131ns 1081131 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61496415ns 1081136 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61496699ns 1081141 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61496984ns 1081146 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61497438ns 1081154 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61497609ns 1081157 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61497893ns 1081162 1a110850 fd5ff06f jal x0, -44 +61498177ns 1081167 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61498461ns 1081172 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61498859ns 1081179 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61499030ns 1081182 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61499484ns 1081190 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61499655ns 1081193 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61499939ns 1081198 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61500223ns 1081203 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61500507ns 1081208 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61500962ns 1081216 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61501132ns 1081219 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61501416ns 1081224 1a110850 fd5ff06f jal x0, -44 +61501701ns 1081229 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61501985ns 1081234 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61502383ns 1081241 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61502553ns 1081244 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61503008ns 1081252 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61503178ns 1081255 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61503462ns 1081260 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61503747ns 1081265 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61504031ns 1081270 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61504485ns 1081278 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61504656ns 1081281 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61504940ns 1081286 1a110850 fd5ff06f jal x0, -44 +61505224ns 1081291 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61505508ns 1081296 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61505906ns 1081303 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61506077ns 1081306 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61506531ns 1081314 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61506702ns 1081317 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61506986ns 1081322 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61507270ns 1081327 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61507554ns 1081332 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61508009ns 1081340 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61508179ns 1081343 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61508464ns 1081348 1a110850 fd5ff06f jal x0, -44 +61508748ns 1081353 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61509032ns 1081358 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61509430ns 1081365 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61509600ns 1081368 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61510055ns 1081376 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61510225ns 1081379 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61510510ns 1081384 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61510794ns 1081389 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61511078ns 1081394 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61511533ns 1081402 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61511703ns 1081405 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61511987ns 1081410 1a110850 fd5ff06f jal x0, -44 +61512271ns 1081415 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61512556ns 1081420 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61512953ns 1081427 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61513124ns 1081430 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61513579ns 1081438 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61513749ns 1081441 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61514033ns 1081446 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61514317ns 1081451 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61514602ns 1081456 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61515056ns 1081464 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61515227ns 1081467 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61515511ns 1081472 1a110850 fd5ff06f jal x0, -44 +61515795ns 1081477 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61516079ns 1081482 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61516477ns 1081489 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61516647ns 1081492 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61517102ns 1081500 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61517273ns 1081503 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61517557ns 1081508 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61517841ns 1081513 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61518125ns 1081518 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61518580ns 1081526 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61518750ns 1081529 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61519034ns 1081534 1a110850 fd5ff06f jal x0, -44 +61519319ns 1081539 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61519603ns 1081544 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61520001ns 1081551 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61520171ns 1081554 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61520626ns 1081562 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61520796ns 1081565 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61521080ns 1081570 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61521365ns 1081575 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61521649ns 1081580 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61522103ns 1081588 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61522274ns 1081591 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61522558ns 1081596 1a110850 fd5ff06f jal x0, -44 +61522842ns 1081601 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61523126ns 1081606 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61523524ns 1081613 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61523695ns 1081616 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61524149ns 1081624 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61524320ns 1081627 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61524604ns 1081632 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61524888ns 1081637 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61525172ns 1081642 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61525627ns 1081650 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61525797ns 1081653 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61526082ns 1081658 1a110850 fd5ff06f jal x0, -44 +61526366ns 1081663 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61526650ns 1081668 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61527048ns 1081675 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61527218ns 1081678 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61527673ns 1081686 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61527843ns 1081689 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61528128ns 1081694 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61528412ns 1081699 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61528696ns 1081704 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61529151ns 1081712 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61529321ns 1081715 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61529605ns 1081720 1a110850 fd5ff06f jal x0, -44 +61529889ns 1081725 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61530173ns 1081730 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61530571ns 1081737 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61530742ns 1081740 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61531196ns 1081748 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61531367ns 1081751 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61531651ns 1081756 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61531935ns 1081761 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61532219ns 1081766 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61532674ns 1081774 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61532845ns 1081777 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61533129ns 1081782 1a110850 fd5ff06f jal x0, -44 +61533413ns 1081787 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61533697ns 1081792 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61534095ns 1081799 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61534265ns 1081802 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61534720ns 1081810 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61534891ns 1081813 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61535175ns 1081818 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61535459ns 1081823 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61535743ns 1081828 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61536198ns 1081836 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61536368ns 1081839 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61536652ns 1081844 1a110850 fd5ff06f jal x0, -44 +61536936ns 1081849 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61537221ns 1081854 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61537618ns 1081861 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61537789ns 1081864 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61538244ns 1081872 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61538414ns 1081875 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61538698ns 1081880 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61538982ns 1081885 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61539267ns 1081890 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61539721ns 1081898 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61539892ns 1081901 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61540176ns 1081906 1a110850 fd5ff06f jal x0, -44 +61540460ns 1081911 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61540744ns 1081916 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61541142ns 1081923 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61541313ns 1081926 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61541767ns 1081934 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61541938ns 1081937 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61542222ns 1081942 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61542506ns 1081947 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61542790ns 1081952 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61543245ns 1081960 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61543415ns 1081963 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61543699ns 1081968 1a110850 fd5ff06f jal x0, -44 +61543984ns 1081973 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61544268ns 1081978 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61544666ns 1081985 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61544836ns 1081988 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61545291ns 1081996 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61545461ns 1081999 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61545745ns 1082004 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61546030ns 1082009 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61546314ns 1082014 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61546768ns 1082022 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61546939ns 1082025 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61547223ns 1082030 1a110850 fd5ff06f jal x0, -44 +61547507ns 1082035 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61547791ns 1082040 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61548189ns 1082047 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61548360ns 1082050 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61548814ns 1082058 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61548985ns 1082061 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61549269ns 1082066 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61549553ns 1082071 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61549837ns 1082076 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61550292ns 1082084 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61550463ns 1082087 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61550747ns 1082092 1a110850 fd5ff06f jal x0, -44 +61551031ns 1082097 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61551315ns 1082102 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61551713ns 1082109 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61551883ns 1082112 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61552338ns 1082120 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61552508ns 1082123 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61552793ns 1082128 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61553077ns 1082133 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61553361ns 1082138 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61553816ns 1082146 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61553986ns 1082149 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61554270ns 1082154 1a110850 fd5ff06f jal x0, -44 +61554554ns 1082159 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61554839ns 1082164 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61555236ns 1082171 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61555407ns 1082174 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61555862ns 1082182 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61556032ns 1082185 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61556316ns 1082190 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61556600ns 1082195 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61556885ns 1082200 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61557339ns 1082208 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61557510ns 1082211 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61557794ns 1082216 1a110850 fd5ff06f jal x0, -44 +61558078ns 1082221 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61558362ns 1082226 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61558760ns 1082233 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61558930ns 1082236 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61559385ns 1082244 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61559556ns 1082247 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61559840ns 1082252 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61560124ns 1082257 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61560408ns 1082262 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61560863ns 1082270 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61561033ns 1082273 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61561317ns 1082278 1a110850 fd5ff06f jal x0, -44 +61561602ns 1082283 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61561886ns 1082288 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61562284ns 1082295 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61562454ns 1082298 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61562909ns 1082306 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61563079ns 1082309 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61563363ns 1082314 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61563648ns 1082319 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61563932ns 1082324 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61564386ns 1082332 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61564557ns 1082335 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61564841ns 1082340 1a110850 fd5ff06f jal x0, -44 +61565125ns 1082345 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61565409ns 1082350 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61565807ns 1082357 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61565978ns 1082360 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61566432ns 1082368 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61566603ns 1082371 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61566887ns 1082376 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61567171ns 1082381 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61567455ns 1082386 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61567910ns 1082394 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61568080ns 1082397 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61568365ns 1082402 1a110850 fd5ff06f jal x0, -44 +61568649ns 1082407 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61568933ns 1082412 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61569331ns 1082419 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61569501ns 1082422 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61569956ns 1082430 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61570126ns 1082433 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61570411ns 1082438 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61570695ns 1082443 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61570979ns 1082448 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61571434ns 1082456 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61571604ns 1082459 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61571888ns 1082464 1a110850 fd5ff06f jal x0, -44 +61572172ns 1082469 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61572456ns 1082474 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61572854ns 1082481 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61573025ns 1082484 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61573479ns 1082492 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61573650ns 1082495 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61573934ns 1082500 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61574218ns 1082505 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61574502ns 1082510 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61574957ns 1082518 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61575128ns 1082521 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61575412ns 1082526 1a110850 fd5ff06f jal x0, -44 +61575696ns 1082531 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61575980ns 1082536 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61576378ns 1082543 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61576548ns 1082546 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61577003ns 1082554 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61577174ns 1082557 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61577458ns 1082562 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61577742ns 1082567 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61578026ns 1082572 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61578481ns 1082580 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61578651ns 1082583 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61578935ns 1082588 1a110850 fd5ff06f jal x0, -44 +61579219ns 1082593 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61579504ns 1082598 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61579901ns 1082605 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61580072ns 1082608 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61580527ns 1082616 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61580697ns 1082619 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61580981ns 1082624 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61581265ns 1082629 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61581550ns 1082634 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61582004ns 1082642 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61582175ns 1082645 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61582459ns 1082650 1a110850 fd5ff06f jal x0, -44 +61582743ns 1082655 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61583027ns 1082660 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61583425ns 1082667 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61583596ns 1082670 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61584050ns 1082678 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61584221ns 1082681 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61584505ns 1082686 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61584789ns 1082691 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61585073ns 1082696 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61585528ns 1082704 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61585698ns 1082707 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61585983ns 1082712 1a110850 fd5ff06f jal x0, -44 +61586267ns 1082717 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61586551ns 1082722 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61586949ns 1082729 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61587119ns 1082732 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61587574ns 1082740 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61587744ns 1082743 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61588028ns 1082748 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61588313ns 1082753 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61588597ns 1082758 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61589051ns 1082766 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61589222ns 1082769 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61589506ns 1082774 1a110850 fd5ff06f jal x0, -44 +61589790ns 1082779 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61590074ns 1082784 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61590472ns 1082791 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61590643ns 1082794 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61591097ns 1082802 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61591268ns 1082805 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61591552ns 1082810 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61591836ns 1082815 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61592120ns 1082820 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61592575ns 1082828 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61592746ns 1082831 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61593030ns 1082836 1a110850 fd5ff06f jal x0, -44 +61593314ns 1082841 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61593598ns 1082846 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61593996ns 1082853 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61594166ns 1082856 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61594621ns 1082864 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61594791ns 1082867 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61595076ns 1082872 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61595360ns 1082877 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61595644ns 1082882 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61596099ns 1082890 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61596269ns 1082893 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61596553ns 1082898 1a110850 fd5ff06f jal x0, -44 +61596837ns 1082903 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61597122ns 1082908 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61597519ns 1082915 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61597690ns 1082918 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61598145ns 1082926 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61598315ns 1082929 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61598599ns 1082934 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61598883ns 1082939 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61599168ns 1082944 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61599622ns 1082952 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61599793ns 1082955 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61600077ns 1082960 1a110850 fd5ff06f jal x0, -44 +61600361ns 1082965 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61600645ns 1082970 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61601043ns 1082977 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61601213ns 1082980 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61601668ns 1082988 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61601839ns 1082991 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61602123ns 1082996 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61602407ns 1083001 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61602691ns 1083006 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61603146ns 1083014 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61603316ns 1083017 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61603600ns 1083022 1a110850 fd5ff06f jal x0, -44 +61603885ns 1083027 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61604169ns 1083032 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61604567ns 1083039 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61604737ns 1083042 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61605192ns 1083050 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61605362ns 1083053 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61605646ns 1083058 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61605931ns 1083063 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61606215ns 1083068 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61606669ns 1083076 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61606840ns 1083079 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61607124ns 1083084 1a110850 fd5ff06f jal x0, -44 +61607408ns 1083089 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61607692ns 1083094 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61608090ns 1083101 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61608261ns 1083104 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61608715ns 1083112 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61608886ns 1083115 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61609170ns 1083120 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61609454ns 1083125 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61609738ns 1083130 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61610193ns 1083138 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61610363ns 1083141 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61610648ns 1083146 1a110850 fd5ff06f jal x0, -44 +61610932ns 1083151 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61611216ns 1083156 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61611614ns 1083163 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61611784ns 1083166 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61612239ns 1083174 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61612409ns 1083177 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61612694ns 1083182 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61612978ns 1083187 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61613262ns 1083192 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61613717ns 1083200 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61613887ns 1083203 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61614171ns 1083208 1a110850 fd5ff06f jal x0, -44 +61614455ns 1083213 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61614739ns 1083218 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61615137ns 1083225 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61615308ns 1083228 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61615762ns 1083236 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61615933ns 1083239 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61616217ns 1083244 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61616501ns 1083249 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61616785ns 1083254 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61617240ns 1083262 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61617411ns 1083265 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61617695ns 1083270 1a110850 fd5ff06f jal x0, -44 +61617979ns 1083275 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61618263ns 1083280 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61618661ns 1083287 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61618831ns 1083290 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61619286ns 1083298 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61619457ns 1083301 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61619741ns 1083306 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61620025ns 1083311 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61620309ns 1083316 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61620764ns 1083324 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61620934ns 1083327 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61621218ns 1083332 1a110850 fd5ff06f jal x0, -44 +61621503ns 1083337 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61621787ns 1083342 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61622184ns 1083349 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61622355ns 1083352 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61622810ns 1083360 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61622980ns 1083363 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61623264ns 1083368 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61623548ns 1083373 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61623833ns 1083378 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61624287ns 1083386 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61624458ns 1083389 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61624742ns 1083394 1a110850 fd5ff06f jal x0, -44 +61625026ns 1083399 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61625310ns 1083404 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61625708ns 1083411 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61625879ns 1083414 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61626333ns 1083422 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61626504ns 1083425 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61626788ns 1083430 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61627072ns 1083435 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61627356ns 1083440 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61627811ns 1083448 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61627981ns 1083451 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61628266ns 1083456 1a110850 fd5ff06f jal x0, -44 +61628550ns 1083461 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61628834ns 1083466 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61629232ns 1083473 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61629402ns 1083476 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61629857ns 1083484 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61630027ns 1083487 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61630311ns 1083492 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61630596ns 1083497 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61630880ns 1083502 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61631334ns 1083510 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61631505ns 1083513 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61631789ns 1083518 1a110850 fd5ff06f jal x0, -44 +61632073ns 1083523 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61632357ns 1083528 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61632755ns 1083535 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61632926ns 1083538 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61633380ns 1083546 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61633551ns 1083549 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61633835ns 1083554 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61634119ns 1083559 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61634403ns 1083564 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61634858ns 1083572 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61635029ns 1083575 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61635313ns 1083580 1a110850 fd5ff06f jal x0, -44 +61635597ns 1083585 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61635881ns 1083590 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61636279ns 1083597 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61636449ns 1083600 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61636904ns 1083608 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61637074ns 1083611 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61637359ns 1083616 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61637643ns 1083621 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61637927ns 1083626 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61638382ns 1083634 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61638552ns 1083637 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61638836ns 1083642 1a110850 fd5ff06f jal x0, -44 +61639120ns 1083647 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61639405ns 1083652 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61639802ns 1083659 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61639973ns 1083662 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61640428ns 1083670 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61640598ns 1083673 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61640882ns 1083678 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61641166ns 1083683 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61641451ns 1083688 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61641905ns 1083696 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61642076ns 1083699 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61642360ns 1083704 1a110850 fd5ff06f jal x0, -44 +61642644ns 1083709 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61642928ns 1083714 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61643326ns 1083721 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61643496ns 1083724 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61643951ns 1083732 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61644122ns 1083735 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61644406ns 1083740 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61644690ns 1083745 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61644974ns 1083750 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61645429ns 1083758 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61645599ns 1083761 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61645883ns 1083766 1a110850 fd5ff06f jal x0, -44 +61646168ns 1083771 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61646452ns 1083776 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61646850ns 1083783 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61647020ns 1083786 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61647475ns 1083794 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61647645ns 1083797 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61647929ns 1083802 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61648214ns 1083807 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61648498ns 1083812 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61648952ns 1083820 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61649123ns 1083823 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61649407ns 1083828 1a110850 fd5ff06f jal x0, -44 +61649691ns 1083833 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61649975ns 1083838 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61650373ns 1083845 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61650544ns 1083848 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61650998ns 1083856 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61651169ns 1083859 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61651453ns 1083864 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61651737ns 1083869 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61652021ns 1083874 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61652476ns 1083882 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61652646ns 1083885 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61652931ns 1083890 1a110850 fd5ff06f jal x0, -44 +61653215ns 1083895 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61653499ns 1083900 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61653897ns 1083907 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61654067ns 1083910 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61654522ns 1083918 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61654692ns 1083921 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61654977ns 1083926 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61655261ns 1083931 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61655545ns 1083936 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61656000ns 1083944 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61656170ns 1083947 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61656454ns 1083952 1a110850 fd5ff06f jal x0, -44 +61656738ns 1083957 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61657023ns 1083962 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61657420ns 1083969 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61657591ns 1083972 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61658045ns 1083980 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61658216ns 1083983 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61658500ns 1083988 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61658784ns 1083993 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61659068ns 1083998 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61659523ns 1084006 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61659694ns 1084009 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61659978ns 1084014 1a110850 fd5ff06f jal x0, -44 +61660262ns 1084019 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61660546ns 1084024 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61660944ns 1084031 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61661114ns 1084034 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61661569ns 1084042 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61661740ns 1084045 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61662024ns 1084050 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61662308ns 1084055 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61662592ns 1084060 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61663047ns 1084068 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61663217ns 1084071 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61663501ns 1084076 1a110850 fd5ff06f jal x0, -44 +61663786ns 1084081 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61664070ns 1084086 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61664467ns 1084093 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61664638ns 1084096 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61665093ns 1084104 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61665263ns 1084107 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61665547ns 1084112 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61665831ns 1084117 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61666116ns 1084122 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61666570ns 1084130 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61666741ns 1084133 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61667025ns 1084138 1a110850 fd5ff06f jal x0, -44 +61667309ns 1084143 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61667593ns 1084148 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61667991ns 1084155 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61668162ns 1084158 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61668616ns 1084166 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61668787ns 1084169 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61669071ns 1084174 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61669355ns 1084179 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61669639ns 1084184 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61670094ns 1084192 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61670264ns 1084195 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61670549ns 1084200 1a110850 fd5ff06f jal x0, -44 +61670833ns 1084205 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61671117ns 1084210 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61671515ns 1084217 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61671685ns 1084220 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61672140ns 1084228 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61672310ns 1084231 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61672594ns 1084236 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61672879ns 1084241 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61673163ns 1084246 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61673617ns 1084254 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61673788ns 1084257 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61674072ns 1084262 1a110850 fd5ff06f jal x0, -44 +61674356ns 1084267 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61674640ns 1084272 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61675038ns 1084279 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61675209ns 1084282 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61675663ns 1084290 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61675834ns 1084293 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61676118ns 1084298 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61676402ns 1084303 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61676686ns 1084308 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61677141ns 1084316 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61677312ns 1084319 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61677596ns 1084324 1a110850 fd5ff06f jal x0, -44 +61677880ns 1084329 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61678164ns 1084334 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61678562ns 1084341 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61678732ns 1084344 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61679187ns 1084352 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61679357ns 1084355 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61679642ns 1084360 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61679926ns 1084365 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61680210ns 1084370 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61680665ns 1084378 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61680835ns 1084381 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61681119ns 1084386 1a110850 fd5ff06f jal x0, -44 +61681403ns 1084391 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61681688ns 1084396 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61682085ns 1084403 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61682256ns 1084406 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61682711ns 1084414 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61682881ns 1084417 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61683165ns 1084422 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61683449ns 1084427 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61683734ns 1084432 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61684188ns 1084440 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61684359ns 1084443 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61684643ns 1084448 1a110850 fd5ff06f jal x0, -44 +61684927ns 1084453 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61685211ns 1084458 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61685609ns 1084465 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61685779ns 1084468 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61686234ns 1084476 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61686405ns 1084479 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61686689ns 1084484 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61686973ns 1084489 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61687257ns 1084494 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61687712ns 1084502 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61687882ns 1084505 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61688166ns 1084510 1a110850 fd5ff06f jal x0, -44 +61688451ns 1084515 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61688735ns 1084520 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61689133ns 1084527 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61689303ns 1084530 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61689758ns 1084538 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61689928ns 1084541 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61690212ns 1084546 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61690497ns 1084551 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61690781ns 1084556 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61691235ns 1084564 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61691406ns 1084567 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61691690ns 1084572 1a110850 fd5ff06f jal x0, -44 +61691974ns 1084577 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61692258ns 1084582 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61692656ns 1084589 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61692827ns 1084592 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61693281ns 1084600 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61693452ns 1084603 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61693736ns 1084608 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61694020ns 1084613 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61694304ns 1084618 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61694759ns 1084626 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61694929ns 1084629 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61695214ns 1084634 1a110850 fd5ff06f jal x0, -44 +61695498ns 1084639 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61695782ns 1084644 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61696180ns 1084651 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61696350ns 1084654 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61696805ns 1084662 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61696975ns 1084665 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61697260ns 1084670 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61697544ns 1084675 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61697828ns 1084680 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61698283ns 1084688 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61698453ns 1084691 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61698737ns 1084696 1a110850 fd5ff06f jal x0, -44 +61699021ns 1084701 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61699306ns 1084706 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61699703ns 1084713 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61699874ns 1084716 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61700328ns 1084724 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61700499ns 1084727 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61700783ns 1084732 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61701067ns 1084737 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61701351ns 1084742 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61701806ns 1084750 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61701977ns 1084753 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61702261ns 1084758 1a110850 fd5ff06f jal x0, -44 +61702545ns 1084763 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61702829ns 1084768 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61703227ns 1084775 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61703397ns 1084778 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61703852ns 1084786 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61704023ns 1084789 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61704307ns 1084794 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61704591ns 1084799 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61704875ns 1084804 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61705330ns 1084812 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61705500ns 1084815 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61705784ns 1084820 1a110850 fd5ff06f jal x0, -44 +61706069ns 1084825 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61706353ns 1084830 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61706751ns 1084837 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61706921ns 1084840 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61707376ns 1084848 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61707546ns 1084851 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61707830ns 1084856 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61708114ns 1084861 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61708399ns 1084866 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61708853ns 1084874 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61709024ns 1084877 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61709308ns 1084882 1a110850 fd5ff06f jal x0, -44 +61709592ns 1084887 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61709876ns 1084892 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61710274ns 1084899 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61710445ns 1084902 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61710899ns 1084910 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61711070ns 1084913 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61711354ns 1084918 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61711638ns 1084923 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61711922ns 1084928 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61712377ns 1084936 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61712547ns 1084939 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61712832ns 1084944 1a110850 fd5ff06f jal x0, -44 +61713116ns 1084949 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61713400ns 1084954 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61713798ns 1084961 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61713968ns 1084964 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61714423ns 1084972 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61714593ns 1084975 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61714877ns 1084980 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61715162ns 1084985 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61715446ns 1084990 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61715900ns 1084998 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61716071ns 1085001 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61716355ns 1085006 1a110850 fd5ff06f jal x0, -44 +61716639ns 1085011 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61716923ns 1085016 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61717321ns 1085023 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61717492ns 1085026 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61717946ns 1085034 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61718117ns 1085037 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61718401ns 1085042 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61718685ns 1085047 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61718969ns 1085052 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61719424ns 1085060 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61719595ns 1085063 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61719879ns 1085068 1a110850 fd5ff06f jal x0, -44 +61720163ns 1085073 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61720447ns 1085078 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61720845ns 1085085 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61721015ns 1085088 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61721470ns 1085096 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61721640ns 1085099 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61721925ns 1085104 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61722209ns 1085109 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61722493ns 1085114 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61722948ns 1085122 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61723118ns 1085125 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61723402ns 1085130 1a110850 fd5ff06f jal x0, -44 +61723686ns 1085135 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61723971ns 1085140 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61724368ns 1085147 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61724539ns 1085150 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61724994ns 1085158 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61725164ns 1085161 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61725448ns 1085166 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61725732ns 1085171 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61726017ns 1085176 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61726471ns 1085184 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61726642ns 1085187 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61726926ns 1085192 1a110850 fd5ff06f jal x0, -44 +61727210ns 1085197 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61727494ns 1085202 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61727892ns 1085209 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61728063ns 1085212 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61728517ns 1085220 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61728688ns 1085223 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61728972ns 1085228 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61729256ns 1085233 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61729540ns 1085238 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61729995ns 1085246 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61730165ns 1085249 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61730449ns 1085254 1a110850 fd5ff06f jal x0, -44 +61730734ns 1085259 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61731018ns 1085264 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61731416ns 1085271 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61731586ns 1085274 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61732041ns 1085282 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61732211ns 1085285 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61732495ns 1085290 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61732780ns 1085295 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61733064ns 1085300 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61733518ns 1085308 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61733689ns 1085311 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61733973ns 1085316 1a110850 fd5ff06f jal x0, -44 +61734257ns 1085321 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61734541ns 1085326 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61734939ns 1085333 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61735110ns 1085336 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61735564ns 1085344 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61735735ns 1085347 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61736019ns 1085352 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61736303ns 1085357 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61736587ns 1085362 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61737042ns 1085370 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61737212ns 1085373 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61737497ns 1085378 1a110850 fd5ff06f jal x0, -44 +61737781ns 1085383 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61738065ns 1085388 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61738463ns 1085395 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61738633ns 1085398 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61739088ns 1085406 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61739258ns 1085409 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61739543ns 1085414 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61739827ns 1085419 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61740111ns 1085424 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61740566ns 1085432 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61740736ns 1085435 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61741020ns 1085440 1a110850 fd5ff06f jal x0, -44 +61741304ns 1085445 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61741589ns 1085450 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61741986ns 1085457 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61742157ns 1085460 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61742611ns 1085468 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61742782ns 1085471 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61743066ns 1085476 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61743350ns 1085481 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61743634ns 1085486 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61744089ns 1085494 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61744260ns 1085497 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61744544ns 1085502 1a110850 fd5ff06f jal x0, -44 +61744828ns 1085507 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61745112ns 1085512 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61745510ns 1085519 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61745680ns 1085522 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61746135ns 1085530 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61746306ns 1085533 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61746590ns 1085538 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61746874ns 1085543 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61747158ns 1085548 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61747613ns 1085556 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61747783ns 1085559 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61748067ns 1085564 1a110850 fd5ff06f jal x0, -44 +61748352ns 1085569 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61748636ns 1085574 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61749034ns 1085581 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61749204ns 1085584 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61749659ns 1085592 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61749829ns 1085595 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61750113ns 1085600 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61750397ns 1085605 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61750682ns 1085610 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61751136ns 1085618 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61751307ns 1085621 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61751591ns 1085626 1a110850 fd5ff06f jal x0, -44 +61751875ns 1085631 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61752159ns 1085636 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61752557ns 1085643 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61752728ns 1085646 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61753182ns 1085654 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61753353ns 1085657 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61753637ns 1085662 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61753921ns 1085667 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61754205ns 1085672 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61754660ns 1085680 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61754830ns 1085683 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61755115ns 1085688 1a110850 fd5ff06f jal x0, -44 +61755399ns 1085693 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61755683ns 1085698 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61756081ns 1085705 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61756251ns 1085708 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61756706ns 1085716 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61756876ns 1085719 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61757160ns 1085724 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61757445ns 1085729 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61757729ns 1085734 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61758183ns 1085742 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61758354ns 1085745 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61758638ns 1085750 1a110850 fd5ff06f jal x0, -44 +61758922ns 1085755 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61759206ns 1085760 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61759604ns 1085767 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61759775ns 1085770 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61760229ns 1085778 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61760400ns 1085781 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61760684ns 1085786 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61760968ns 1085791 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61761252ns 1085796 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61761707ns 1085804 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61761878ns 1085807 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61762162ns 1085812 1a110850 fd5ff06f jal x0, -44 +61762446ns 1085817 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61762730ns 1085822 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61763128ns 1085829 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61763298ns 1085832 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61763753ns 1085840 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61763923ns 1085843 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61764208ns 1085848 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61764492ns 1085853 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61764776ns 1085858 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61765231ns 1085866 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61765401ns 1085869 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61765685ns 1085874 1a110850 fd5ff06f jal x0, -44 +61765969ns 1085879 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61766254ns 1085884 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61766651ns 1085891 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61766822ns 1085894 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61767277ns 1085902 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61767447ns 1085905 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61767731ns 1085910 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61768015ns 1085915 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61768300ns 1085920 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61768754ns 1085928 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61768925ns 1085931 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61769209ns 1085936 1a110850 fd5ff06f jal x0, -44 +61769493ns 1085941 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61769777ns 1085946 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61770175ns 1085953 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61770346ns 1085956 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61770800ns 1085964 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61770971ns 1085967 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61771255ns 1085972 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61771539ns 1085977 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61771823ns 1085982 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61772278ns 1085990 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61772448ns 1085993 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61772732ns 1085998 1a110850 fd5ff06f jal x0, -44 +61773017ns 1086003 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61773301ns 1086008 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61773699ns 1086015 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61773869ns 1086018 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61774324ns 1086026 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61774494ns 1086029 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61774778ns 1086034 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61775063ns 1086039 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61775347ns 1086044 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61775801ns 1086052 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61775972ns 1086055 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61776256ns 1086060 1a110850 fd5ff06f jal x0, -44 +61776540ns 1086065 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61776824ns 1086070 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61777222ns 1086077 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61777393ns 1086080 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61777847ns 1086088 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61778018ns 1086091 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61778302ns 1086096 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61778586ns 1086101 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61778870ns 1086106 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61779325ns 1086114 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61779495ns 1086117 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61779780ns 1086122 1a110850 fd5ff06f jal x0, -44 +61780064ns 1086127 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61780348ns 1086132 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61780746ns 1086139 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61780916ns 1086142 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61781371ns 1086150 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61781541ns 1086153 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61781826ns 1086158 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61782110ns 1086163 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61782394ns 1086168 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61782849ns 1086176 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61783019ns 1086179 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61783303ns 1086184 1a110850 fd5ff06f jal x0, -44 +61783587ns 1086189 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61783872ns 1086194 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61784269ns 1086201 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61784440ns 1086204 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61784895ns 1086212 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61785065ns 1086215 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61785349ns 1086220 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61785633ns 1086225 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61785917ns 1086230 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61786372ns 1086238 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61786543ns 1086241 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61786827ns 1086246 1a110850 fd5ff06f jal x0, -44 +61787111ns 1086251 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61787395ns 1086256 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61787793ns 1086263 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61787963ns 1086266 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61788418ns 1086274 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61788589ns 1086277 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61788873ns 1086282 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61789157ns 1086287 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61789441ns 1086292 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61789896ns 1086300 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61790066ns 1086303 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61790350ns 1086308 1a110850 fd5ff06f jal x0, -44 +61790635ns 1086313 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61790919ns 1086318 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61791317ns 1086325 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61791487ns 1086328 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61791942ns 1086336 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61792112ns 1086339 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61792396ns 1086344 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61792680ns 1086349 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61792965ns 1086354 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61793419ns 1086362 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61793590ns 1086365 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61793874ns 1086370 1a110850 fd5ff06f jal x0, -44 +61794158ns 1086375 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61794442ns 1086380 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61794840ns 1086387 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61795011ns 1086390 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61795465ns 1086398 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61795636ns 1086401 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61795920ns 1086406 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61796204ns 1086411 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61796488ns 1086416 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61796943ns 1086424 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61797113ns 1086427 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61797398ns 1086432 1a110850 fd5ff06f jal x0, -44 +61797682ns 1086437 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61797966ns 1086442 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61798364ns 1086449 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61798534ns 1086452 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61798989ns 1086460 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61799159ns 1086463 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61799443ns 1086468 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61799728ns 1086473 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61800012ns 1086478 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61800466ns 1086486 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61800637ns 1086489 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61800921ns 1086494 1a110850 fd5ff06f jal x0, -44 +61801205ns 1086499 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61801489ns 1086504 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61801887ns 1086511 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61802058ns 1086514 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61802512ns 1086522 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61802683ns 1086525 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61802967ns 1086530 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61803251ns 1086535 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61803535ns 1086540 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61803990ns 1086548 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61804161ns 1086551 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61804445ns 1086556 1a110850 fd5ff06f jal x0, -44 +61804729ns 1086561 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61805013ns 1086566 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61805411ns 1086573 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61805581ns 1086576 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61806036ns 1086584 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61806207ns 1086587 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61806491ns 1086592 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61806775ns 1086597 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61807059ns 1086602 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61807514ns 1086610 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61807684ns 1086613 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61807968ns 1086618 1a110850 fd5ff06f jal x0, -44 +61808252ns 1086623 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61808537ns 1086628 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61808934ns 1086635 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61809105ns 1086638 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61809560ns 1086646 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61809730ns 1086649 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61810014ns 1086654 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61810298ns 1086659 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61810583ns 1086664 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61811037ns 1086672 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61811208ns 1086675 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61811492ns 1086680 1a110850 fd5ff06f jal x0, -44 +61811776ns 1086685 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61812060ns 1086690 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61812458ns 1086697 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61812629ns 1086700 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61813083ns 1086708 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61813254ns 1086711 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61813538ns 1086716 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61813822ns 1086721 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61814106ns 1086726 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61814561ns 1086734 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61814731ns 1086737 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61815015ns 1086742 1a110850 fd5ff06f jal x0, -44 +61815300ns 1086747 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61815584ns 1086752 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61815982ns 1086759 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61816152ns 1086762 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61816607ns 1086770 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61816777ns 1086773 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61817061ns 1086778 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61817346ns 1086783 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61817630ns 1086788 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61818084ns 1086796 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61818255ns 1086799 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61818539ns 1086804 1a110850 fd5ff06f jal x0, -44 +61818823ns 1086809 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61819107ns 1086814 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61819505ns 1086821 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61819676ns 1086824 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61820130ns 1086832 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61820301ns 1086835 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61820585ns 1086840 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61820869ns 1086845 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61821153ns 1086850 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61821608ns 1086858 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61821778ns 1086861 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61822063ns 1086866 1a110850 fd5ff06f jal x0, -44 +61822347ns 1086871 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61822631ns 1086876 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61823029ns 1086883 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61823199ns 1086886 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61823654ns 1086894 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61823824ns 1086897 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61824109ns 1086902 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61824393ns 1086907 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61824677ns 1086912 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61825132ns 1086920 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61825302ns 1086923 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61825586ns 1086928 1a110850 fd5ff06f jal x0, -44 +61825870ns 1086933 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61826155ns 1086938 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61826552ns 1086945 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61826723ns 1086948 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61827178ns 1086956 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61827348ns 1086959 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61827632ns 1086964 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61827916ns 1086969 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61828200ns 1086974 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61828655ns 1086982 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61828826ns 1086985 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61829110ns 1086990 1a110850 fd5ff06f jal x0, -44 +61829394ns 1086995 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61829678ns 1087000 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61830076ns 1087007 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61830246ns 1087010 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61830701ns 1087018 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61830872ns 1087021 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61831156ns 1087026 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61831440ns 1087031 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61831724ns 1087036 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61832179ns 1087044 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61832349ns 1087047 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61832633ns 1087052 1a110850 fd5ff06f jal x0, -44 +61832918ns 1087057 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61833202ns 1087062 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61833600ns 1087069 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61833770ns 1087072 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61834225ns 1087080 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61834395ns 1087083 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61834679ns 1087088 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61834963ns 1087093 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61835248ns 1087098 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61835702ns 1087106 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61835873ns 1087109 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61836157ns 1087114 1a110850 fd5ff06f jal x0, -44 +61836441ns 1087119 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61836725ns 1087124 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61837123ns 1087131 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61837294ns 1087134 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61837748ns 1087142 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61837919ns 1087145 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61838203ns 1087150 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61838487ns 1087155 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61838771ns 1087160 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61839226ns 1087168 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61839396ns 1087171 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61839681ns 1087176 1a110850 fd5ff06f jal x0, -44 +61839965ns 1087181 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61840249ns 1087186 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61840647ns 1087193 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61840817ns 1087196 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61841272ns 1087204 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61841442ns 1087207 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61841727ns 1087212 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61842011ns 1087217 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61842295ns 1087222 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61842749ns 1087230 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61842920ns 1087233 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61843204ns 1087238 1a110850 fd5ff06f jal x0, -44 +61843488ns 1087243 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61843772ns 1087248 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61844170ns 1087255 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61844341ns 1087258 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61844795ns 1087266 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61844966ns 1087269 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61845250ns 1087274 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61845534ns 1087279 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61845818ns 1087284 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61846273ns 1087292 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61846444ns 1087295 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61846728ns 1087300 1a110850 fd5ff06f jal x0, -44 +61847012ns 1087305 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61847296ns 1087310 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61847694ns 1087317 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61847864ns 1087320 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61848319ns 1087328 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61848490ns 1087331 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61848774ns 1087336 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61849058ns 1087341 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61849342ns 1087346 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61849797ns 1087354 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61849967ns 1087357 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61850251ns 1087362 1a110850 fd5ff06f jal x0, -44 +61850535ns 1087367 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61850820ns 1087372 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61851217ns 1087379 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61851388ns 1087382 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61851843ns 1087390 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61852013ns 1087393 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61852297ns 1087398 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61852581ns 1087403 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61852866ns 1087408 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61853320ns 1087416 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61853491ns 1087419 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61853775ns 1087424 1a110850 fd5ff06f jal x0, -44 +61854059ns 1087429 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61854343ns 1087434 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61854741ns 1087441 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61854912ns 1087444 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61855366ns 1087452 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61855537ns 1087455 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61855821ns 1087460 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61856105ns 1087465 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61856389ns 1087470 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61856844ns 1087478 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61857014ns 1087481 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61857298ns 1087486 1a110850 fd5ff06f jal x0, -44 +61857583ns 1087491 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61857867ns 1087496 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61858265ns 1087503 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61858435ns 1087506 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61858890ns 1087514 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61859060ns 1087517 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61859344ns 1087522 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61859629ns 1087527 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61859913ns 1087532 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61860367ns 1087540 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61860538ns 1087543 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61860822ns 1087548 1a110850 fd5ff06f jal x0, -44 +61861106ns 1087553 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61861390ns 1087558 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61861788ns 1087565 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61861959ns 1087568 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61862413ns 1087576 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61862584ns 1087579 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61862868ns 1087584 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61863152ns 1087589 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61863436ns 1087594 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61863891ns 1087602 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61864061ns 1087605 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61864346ns 1087610 1a110850 fd5ff06f jal x0, -44 +61864630ns 1087615 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61864914ns 1087620 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61865312ns 1087627 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61865482ns 1087630 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61865937ns 1087638 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61866107ns 1087641 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61866392ns 1087646 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61866676ns 1087651 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61866960ns 1087656 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61867415ns 1087664 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61867585ns 1087667 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61867869ns 1087672 1a110850 fd5ff06f jal x0, -44 +61868153ns 1087677 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61868438ns 1087682 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61868835ns 1087689 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61869006ns 1087692 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61869461ns 1087700 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61869631ns 1087703 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61869915ns 1087708 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61870199ns 1087713 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61870483ns 1087718 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61870938ns 1087726 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61871109ns 1087729 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61871393ns 1087734 1a110850 fd5ff06f jal x0, -44 +61871677ns 1087739 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61871961ns 1087744 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61872359ns 1087751 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61872529ns 1087754 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61872984ns 1087762 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61873155ns 1087765 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61873439ns 1087770 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61873723ns 1087775 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61874007ns 1087780 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61874462ns 1087788 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61874632ns 1087791 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61874916ns 1087796 1a110850 fd5ff06f jal x0, -44 +61875201ns 1087801 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61875485ns 1087806 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61875883ns 1087813 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61876053ns 1087816 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61876508ns 1087824 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61876678ns 1087827 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61876962ns 1087832 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61877247ns 1087837 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61877531ns 1087842 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61877985ns 1087850 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61878156ns 1087853 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61878440ns 1087858 1a110850 fd5ff06f jal x0, -44 +61878724ns 1087863 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61879008ns 1087868 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61879406ns 1087875 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61879577ns 1087878 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61880031ns 1087886 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61880202ns 1087889 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61880486ns 1087894 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61880770ns 1087899 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61881054ns 1087904 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61881509ns 1087912 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61881679ns 1087915 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61881964ns 1087920 1a110850 fd5ff06f jal x0, -44 +61882248ns 1087925 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61882532ns 1087930 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61882930ns 1087937 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61883100ns 1087940 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61883555ns 1087948 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61883725ns 1087951 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61884010ns 1087956 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61884294ns 1087961 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61884578ns 1087966 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61885032ns 1087974 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61885203ns 1087977 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61885487ns 1087982 1a110850 fd5ff06f jal x0, -44 +61885771ns 1087987 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61886055ns 1087992 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61886453ns 1087999 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61886624ns 1088002 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61887078ns 1088010 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61887249ns 1088013 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61887533ns 1088018 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61887817ns 1088023 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61888101ns 1088028 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61888556ns 1088036 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61888727ns 1088039 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61889011ns 1088044 1a110850 fd5ff06f jal x0, -44 +61889295ns 1088049 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61889579ns 1088054 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61889977ns 1088061 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61890147ns 1088064 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61890602ns 1088072 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61890773ns 1088075 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61891057ns 1088080 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61891341ns 1088085 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61891625ns 1088090 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61892080ns 1088098 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61892250ns 1088101 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61892534ns 1088106 1a110850 fd5ff06f jal x0, -44 +61892818ns 1088111 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61893103ns 1088116 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61893500ns 1088123 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61893671ns 1088126 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61894126ns 1088134 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61894296ns 1088137 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61894580ns 1088142 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61894864ns 1088147 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61895149ns 1088152 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61895603ns 1088160 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61895774ns 1088163 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61896058ns 1088168 1a110850 fd5ff06f jal x0, -44 +61896342ns 1088173 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61896626ns 1088178 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61897024ns 1088185 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61897195ns 1088188 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61897649ns 1088196 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61897820ns 1088199 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61898104ns 1088204 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61898388ns 1088209 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61898672ns 1088214 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61899127ns 1088222 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61899297ns 1088225 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61899581ns 1088230 1a110850 fd5ff06f jal x0, -44 +61899866ns 1088235 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61900150ns 1088240 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61900548ns 1088247 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61900718ns 1088250 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61901173ns 1088258 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61901343ns 1088261 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61901627ns 1088266 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61901912ns 1088271 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61902196ns 1088276 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61902650ns 1088284 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61902821ns 1088287 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61903105ns 1088292 1a110850 fd5ff06f jal x0, -44 +61903389ns 1088297 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61903673ns 1088302 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61904071ns 1088309 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61904242ns 1088312 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61904696ns 1088320 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61904867ns 1088323 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61905151ns 1088328 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61905435ns 1088333 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61905719ns 1088338 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61906174ns 1088346 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61906344ns 1088349 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61906629ns 1088354 1a110850 fd5ff06f jal x0, -44 +61906913ns 1088359 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61907197ns 1088364 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61907595ns 1088371 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61907765ns 1088374 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61908220ns 1088382 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61908390ns 1088385 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61908675ns 1088390 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61908959ns 1088395 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61909243ns 1088400 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61909698ns 1088408 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61909868ns 1088411 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61910152ns 1088416 1a110850 fd5ff06f jal x0, -44 +61910436ns 1088421 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61910721ns 1088426 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61911118ns 1088433 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61911289ns 1088436 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61911744ns 1088444 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61911914ns 1088447 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61912198ns 1088452 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61912482ns 1088457 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61912767ns 1088462 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61913221ns 1088470 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61913392ns 1088473 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61913676ns 1088478 1a110850 fd5ff06f jal x0, -44 +61913960ns 1088483 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61914244ns 1088488 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61914642ns 1088495 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61914812ns 1088498 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61915267ns 1088506 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61915438ns 1088509 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61915722ns 1088514 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61916006ns 1088519 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61916290ns 1088524 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61916745ns 1088532 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61916915ns 1088535 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61917199ns 1088540 1a110850 fd5ff06f jal x0, -44 +61917484ns 1088545 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61917768ns 1088550 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61918166ns 1088557 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61918336ns 1088560 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61918791ns 1088568 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61918961ns 1088571 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61919245ns 1088576 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61919530ns 1088581 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61919814ns 1088586 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61920268ns 1088594 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61920439ns 1088597 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61920723ns 1088602 1a110850 fd5ff06f jal x0, -44 +61921007ns 1088607 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61921291ns 1088612 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61921689ns 1088619 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61921860ns 1088622 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61922314ns 1088630 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61922485ns 1088633 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61922769ns 1088638 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61923053ns 1088643 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61923337ns 1088648 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61923792ns 1088656 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61923962ns 1088659 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61924247ns 1088664 1a110850 fd5ff06f jal x0, -44 +61924531ns 1088669 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61924815ns 1088674 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61925213ns 1088681 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61925383ns 1088684 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61925838ns 1088692 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61926008ns 1088695 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61926293ns 1088700 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61926577ns 1088705 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61926861ns 1088710 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61927315ns 1088718 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61927486ns 1088721 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61927770ns 1088726 1a110850 fd5ff06f jal x0, -44 +61928054ns 1088731 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61928338ns 1088736 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61928736ns 1088743 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61928907ns 1088746 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61929361ns 1088754 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61929532ns 1088757 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61929816ns 1088762 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61930100ns 1088767 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61930384ns 1088772 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61930839ns 1088780 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61931010ns 1088783 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61931294ns 1088788 1a110850 fd5ff06f jal x0, -44 +61931578ns 1088793 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61931862ns 1088798 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61932260ns 1088805 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61932430ns 1088808 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61932885ns 1088816 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61933056ns 1088819 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61933340ns 1088824 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61933624ns 1088829 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61933908ns 1088834 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61934363ns 1088842 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61934533ns 1088845 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61934817ns 1088850 1a110850 fd5ff06f jal x0, -44 +61935101ns 1088855 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61935386ns 1088860 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61935783ns 1088867 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61935954ns 1088870 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61936409ns 1088878 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61936579ns 1088881 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61936863ns 1088886 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61937147ns 1088891 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61937432ns 1088896 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61937886ns 1088904 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61938057ns 1088907 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61938341ns 1088912 1a110850 fd5ff06f jal x0, -44 +61938625ns 1088917 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61938909ns 1088922 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61939307ns 1088929 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61939478ns 1088932 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61939932ns 1088940 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61940103ns 1088943 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61940387ns 1088948 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61940671ns 1088953 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61940955ns 1088958 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61941410ns 1088966 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61941580ns 1088969 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61941864ns 1088974 1a110850 fd5ff06f jal x0, -44 +61942149ns 1088979 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61942433ns 1088984 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61942831ns 1088991 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61943001ns 1088994 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61943456ns 1089002 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61943626ns 1089005 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61943910ns 1089010 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61944195ns 1089015 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61944479ns 1089020 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61944933ns 1089028 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61945104ns 1089031 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61945388ns 1089036 1a110850 fd5ff06f jal x0, -44 +61945672ns 1089041 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61945956ns 1089046 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61946354ns 1089053 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61946525ns 1089056 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61946979ns 1089064 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61947150ns 1089067 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61947434ns 1089072 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61947718ns 1089077 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61948002ns 1089082 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61948457ns 1089090 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61948627ns 1089093 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61948912ns 1089098 1a110850 fd5ff06f jal x0, -44 +61949196ns 1089103 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61949480ns 1089108 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61949878ns 1089115 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61950048ns 1089118 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61950503ns 1089126 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61950673ns 1089129 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61950958ns 1089134 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61951242ns 1089139 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61951526ns 1089144 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61951981ns 1089152 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61952151ns 1089155 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61952435ns 1089160 1a110850 fd5ff06f jal x0, -44 +61952719ns 1089165 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61953004ns 1089170 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61953401ns 1089177 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61953572ns 1089180 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61954027ns 1089188 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61954197ns 1089191 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61954481ns 1089196 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61954765ns 1089201 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61955050ns 1089206 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61955504ns 1089214 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61955675ns 1089217 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61955959ns 1089222 1a110850 fd5ff06f jal x0, -44 +61956243ns 1089227 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61956527ns 1089232 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61956925ns 1089239 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61957095ns 1089242 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61957550ns 1089250 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61957721ns 1089253 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61958005ns 1089258 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61958289ns 1089263 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61958573ns 1089268 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61959028ns 1089276 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61959198ns 1089279 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61959482ns 1089284 1a110850 fd5ff06f jal x0, -44 +61959767ns 1089289 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61960051ns 1089294 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61960449ns 1089301 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61960619ns 1089304 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61961074ns 1089312 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61961244ns 1089315 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61961528ns 1089320 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61961813ns 1089325 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61962097ns 1089330 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61962551ns 1089338 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61962722ns 1089341 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61963006ns 1089346 1a110850 fd5ff06f jal x0, -44 +61963290ns 1089351 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61963574ns 1089356 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61963972ns 1089363 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61964143ns 1089366 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61964597ns 1089374 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61964768ns 1089377 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61965052ns 1089382 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61965336ns 1089387 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61965620ns 1089392 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61966075ns 1089400 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61966245ns 1089403 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61966530ns 1089408 1a110850 fd5ff06f jal x0, -44 +61966814ns 1089413 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61967098ns 1089418 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61967496ns 1089425 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61967666ns 1089428 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61968121ns 1089436 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61968291ns 1089439 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61968576ns 1089444 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61968860ns 1089449 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61969144ns 1089454 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61969599ns 1089462 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61969769ns 1089465 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61970053ns 1089470 1a110850 fd5ff06f jal x0, -44 +61970337ns 1089475 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61970621ns 1089480 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61971019ns 1089487 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61971190ns 1089490 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61971644ns 1089498 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61971815ns 1089501 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61972099ns 1089506 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61972383ns 1089511 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61972667ns 1089516 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61973122ns 1089524 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61973293ns 1089527 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61973577ns 1089532 1a110850 fd5ff06f jal x0, -44 +61973861ns 1089537 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61974145ns 1089542 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61974543ns 1089549 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61974713ns 1089552 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61975168ns 1089560 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61975339ns 1089563 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61975623ns 1089568 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61975907ns 1089573 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61976191ns 1089578 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61976646ns 1089586 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61976816ns 1089589 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61977100ns 1089594 1a110850 fd5ff06f jal x0, -44 +61977384ns 1089599 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61977669ns 1089604 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61978066ns 1089611 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61978237ns 1089614 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61978692ns 1089622 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61978862ns 1089625 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61979146ns 1089630 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61979430ns 1089635 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61979715ns 1089640 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61980169ns 1089648 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61980340ns 1089651 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61980624ns 1089656 1a110850 fd5ff06f jal x0, -44 +61980908ns 1089661 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61981192ns 1089666 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61981590ns 1089673 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61981761ns 1089676 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61982215ns 1089684 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61982386ns 1089687 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61982670ns 1089692 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61982954ns 1089697 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61983238ns 1089702 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61983693ns 1089710 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61983863ns 1089713 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61984147ns 1089718 1a110850 fd5ff06f jal x0, -44 +61984432ns 1089723 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61984716ns 1089728 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61985114ns 1089735 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61985284ns 1089738 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61985739ns 1089746 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61985909ns 1089749 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61986193ns 1089754 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61986478ns 1089759 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61986762ns 1089764 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61987216ns 1089772 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61987387ns 1089775 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61987671ns 1089780 1a110850 fd5ff06f jal x0, -44 +61987955ns 1089785 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61988239ns 1089790 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61988637ns 1089797 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61988808ns 1089800 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61989262ns 1089808 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61989433ns 1089811 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61989717ns 1089816 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61990001ns 1089821 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61990285ns 1089826 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61990740ns 1089834 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61990911ns 1089837 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61991195ns 1089842 1a110850 fd5ff06f jal x0, -44 +61991479ns 1089847 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61991763ns 1089852 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61992161ns 1089859 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61992331ns 1089862 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61992786ns 1089870 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61992956ns 1089873 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61993241ns 1089878 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61993525ns 1089883 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61993809ns 1089888 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61994264ns 1089896 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61994434ns 1089899 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61994718ns 1089904 1a110850 fd5ff06f jal x0, -44 +61995002ns 1089909 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61995287ns 1089914 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61995684ns 1089921 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61995855ns 1089924 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61996310ns 1089932 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +61996480ns 1089935 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +61996764ns 1089940 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61997048ns 1089945 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61997333ns 1089950 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61997787ns 1089958 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +61997958ns 1089961 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +61998242ns 1089966 1a110850 fd5ff06f jal x0, -44 +61998526ns 1089971 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +61998810ns 1089976 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +61999208ns 1089983 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +61999378ns 1089986 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +61999833ns 1089994 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62000004ns 1089997 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62000288ns 1090002 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62000572ns 1090007 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62000856ns 1090012 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62001311ns 1090020 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62001481ns 1090023 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62001765ns 1090028 1a110850 fd5ff06f jal x0, -44 +62002050ns 1090033 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62002334ns 1090038 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62002732ns 1090045 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62002902ns 1090048 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62003357ns 1090056 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62003527ns 1090059 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62003811ns 1090064 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62004096ns 1090069 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62004380ns 1090074 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62004834ns 1090082 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62005005ns 1090085 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62005289ns 1090090 1a110850 fd5ff06f jal x0, -44 +62005573ns 1090095 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62005857ns 1090100 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62006255ns 1090107 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62006426ns 1090110 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62006880ns 1090118 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62007051ns 1090121 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62007335ns 1090126 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62007619ns 1090131 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62007903ns 1090136 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62008358ns 1090144 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62008528ns 1090147 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62008813ns 1090152 1a110850 fd5ff06f jal x0, -44 +62009097ns 1090157 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62009381ns 1090162 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62009779ns 1090169 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62009949ns 1090172 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62010404ns 1090180 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62010574ns 1090183 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62010859ns 1090188 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62011143ns 1090193 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62011427ns 1090198 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62011882ns 1090206 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62012052ns 1090209 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62012336ns 1090214 1a110850 fd5ff06f jal x0, -44 +62012620ns 1090219 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62012904ns 1090224 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62013302ns 1090231 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62013473ns 1090234 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62013927ns 1090242 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62014098ns 1090245 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62014382ns 1090250 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62014666ns 1090255 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62014950ns 1090260 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62015405ns 1090268 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62015576ns 1090271 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62015860ns 1090276 1a110850 fd5ff06f jal x0, -44 +62016144ns 1090281 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62016428ns 1090286 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62016826ns 1090293 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62016996ns 1090296 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62017451ns 1090304 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62017622ns 1090307 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62017906ns 1090312 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62018190ns 1090317 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62018474ns 1090322 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62018929ns 1090330 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62019099ns 1090333 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62019383ns 1090338 1a110850 fd5ff06f jal x0, -44 +62019667ns 1090343 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62019952ns 1090348 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62020349ns 1090355 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62020520ns 1090358 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62020975ns 1090366 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62021145ns 1090369 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62021429ns 1090374 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62021713ns 1090379 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62021998ns 1090384 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62022452ns 1090392 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62022623ns 1090395 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62022907ns 1090400 1a110850 fd5ff06f jal x0, -44 +62023191ns 1090405 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62023475ns 1090410 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62023873ns 1090417 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62024044ns 1090420 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62024498ns 1090428 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62024669ns 1090431 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62024953ns 1090436 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62025237ns 1090441 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62025521ns 1090446 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62025976ns 1090454 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62026146ns 1090457 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62026431ns 1090462 1a110850 fd5ff06f jal x0, -44 +62026715ns 1090467 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62026999ns 1090472 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62027397ns 1090479 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62027567ns 1090482 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62028022ns 1090490 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62028192ns 1090493 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62028476ns 1090498 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62028761ns 1090503 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62029045ns 1090508 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62029499ns 1090516 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62029670ns 1090519 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62029954ns 1090524 1a110850 fd5ff06f jal x0, -44 +62030238ns 1090529 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62030522ns 1090534 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62030920ns 1090541 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62031091ns 1090544 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62031545ns 1090552 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62031716ns 1090555 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62032000ns 1090560 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62032284ns 1090565 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62032568ns 1090570 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62033023ns 1090578 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62033194ns 1090581 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62033478ns 1090586 1a110850 fd5ff06f jal x0, -44 +62033762ns 1090591 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62034046ns 1090596 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62034444ns 1090603 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62034614ns 1090606 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62035069ns 1090614 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62035239ns 1090617 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62035524ns 1090622 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62035808ns 1090627 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62036092ns 1090632 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62036547ns 1090640 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62036717ns 1090643 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62037001ns 1090648 1a110850 fd5ff06f jal x0, -44 +62037285ns 1090653 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62037570ns 1090658 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62037967ns 1090665 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62038138ns 1090668 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62038593ns 1090676 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62038763ns 1090679 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62039047ns 1090684 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62039331ns 1090689 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62039616ns 1090694 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62040070ns 1090702 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62040241ns 1090705 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62040525ns 1090710 1a110850 fd5ff06f jal x0, -44 +62040809ns 1090715 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62041093ns 1090720 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62041491ns 1090727 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62041661ns 1090730 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62042116ns 1090738 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62042287ns 1090741 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62042571ns 1090746 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62042855ns 1090751 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62043139ns 1090756 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62043594ns 1090764 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62043764ns 1090767 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62044048ns 1090772 1a110850 fd5ff06f jal x0, -44 +62044333ns 1090777 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62044617ns 1090782 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62045015ns 1090789 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62045185ns 1090792 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62045640ns 1090800 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62045810ns 1090803 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62046094ns 1090808 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62046379ns 1090813 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62046663ns 1090818 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62047117ns 1090826 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62047288ns 1090829 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62047572ns 1090834 1a110850 fd5ff06f jal x0, -44 +62047856ns 1090839 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62048140ns 1090844 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62048538ns 1090851 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62048709ns 1090854 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62049163ns 1090862 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62049334ns 1090865 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62049618ns 1090870 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62049902ns 1090875 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62050186ns 1090880 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62050641ns 1090888 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62050811ns 1090891 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62051096ns 1090896 1a110850 fd5ff06f jal x0, -44 +62051380ns 1090901 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62051664ns 1090906 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62052062ns 1090913 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62052232ns 1090916 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62052687ns 1090924 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62052857ns 1090927 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62053142ns 1090932 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62053426ns 1090937 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62053710ns 1090942 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62054165ns 1090950 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62054335ns 1090953 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62054619ns 1090958 1a110850 fd5ff06f jal x0, -44 +62054903ns 1090963 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62055187ns 1090968 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62055585ns 1090975 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62055756ns 1090978 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62056210ns 1090986 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62056381ns 1090989 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62056665ns 1090994 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62056949ns 1090999 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62057233ns 1091004 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62057688ns 1091012 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62057859ns 1091015 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62058143ns 1091020 1a110850 fd5ff06f jal x0, -44 +62058427ns 1091025 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62058711ns 1091030 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62059109ns 1091037 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62059279ns 1091040 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62059734ns 1091048 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62059905ns 1091051 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62060189ns 1091056 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62060473ns 1091061 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62060757ns 1091066 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62061212ns 1091074 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62061382ns 1091077 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62061666ns 1091082 1a110850 fd5ff06f jal x0, -44 +62061951ns 1091087 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62062235ns 1091092 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62062632ns 1091099 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62062803ns 1091102 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62063258ns 1091110 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62063428ns 1091113 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62063712ns 1091118 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62063996ns 1091123 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62064281ns 1091128 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62064735ns 1091136 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62064906ns 1091139 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62065190ns 1091144 1a110850 fd5ff06f jal x0, -44 +62065474ns 1091149 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62065758ns 1091154 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62066156ns 1091161 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62066327ns 1091164 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62066781ns 1091172 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62066952ns 1091175 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62067236ns 1091180 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62067520ns 1091185 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62067804ns 1091190 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62068259ns 1091198 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62068429ns 1091201 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62068714ns 1091206 1a110850 fd5ff06f jal x0, -44 +62068998ns 1091211 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62069282ns 1091216 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62069680ns 1091223 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62069850ns 1091226 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62070305ns 1091234 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62070475ns 1091237 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62070759ns 1091242 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62071044ns 1091247 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62071328ns 1091252 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62071782ns 1091260 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62071953ns 1091263 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62072237ns 1091268 1a110850 fd5ff06f jal x0, -44 +62072521ns 1091273 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62072805ns 1091278 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62073203ns 1091285 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62073374ns 1091288 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62073828ns 1091296 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62073999ns 1091299 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62074283ns 1091304 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62074567ns 1091309 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62074851ns 1091314 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62075306ns 1091322 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62075477ns 1091325 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62075761ns 1091330 1a110850 fd5ff06f jal x0, -44 +62076045ns 1091335 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62076329ns 1091340 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62076727ns 1091347 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62076897ns 1091350 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62077352ns 1091358 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62077522ns 1091361 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62077807ns 1091366 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62078091ns 1091371 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62078375ns 1091376 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62078830ns 1091384 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62079000ns 1091387 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62079284ns 1091392 1a110850 fd5ff06f jal x0, -44 +62079568ns 1091397 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62079853ns 1091402 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62080250ns 1091409 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62080421ns 1091412 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62080876ns 1091420 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62081046ns 1091423 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62081330ns 1091428 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62081614ns 1091433 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62081899ns 1091438 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62082353ns 1091446 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62082524ns 1091449 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62082808ns 1091454 1a110850 fd5ff06f jal x0, -44 +62083092ns 1091459 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62083376ns 1091464 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62083774ns 1091471 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62083944ns 1091474 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62084399ns 1091482 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62084570ns 1091485 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62084854ns 1091490 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62085138ns 1091495 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62085422ns 1091500 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62085877ns 1091508 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62086047ns 1091511 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62086331ns 1091516 1a110850 fd5ff06f jal x0, -44 +62086616ns 1091521 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62086900ns 1091526 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62087298ns 1091533 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62087468ns 1091536 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62087923ns 1091544 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62088093ns 1091547 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62088377ns 1091552 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62088662ns 1091557 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62088946ns 1091562 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62089400ns 1091570 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62089571ns 1091573 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62089855ns 1091578 1a110850 fd5ff06f jal x0, -44 +62090139ns 1091583 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62090423ns 1091588 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62090821ns 1091595 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62090992ns 1091598 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62091446ns 1091606 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62091617ns 1091609 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62091901ns 1091614 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62092185ns 1091619 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62092469ns 1091624 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62092924ns 1091632 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62093094ns 1091635 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62093379ns 1091640 1a110850 fd5ff06f jal x0, -44 +62093663ns 1091645 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62093947ns 1091650 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62094345ns 1091657 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62094515ns 1091660 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62094970ns 1091668 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62095140ns 1091671 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62095425ns 1091676 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62095709ns 1091681 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62095993ns 1091686 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62096448ns 1091694 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62096618ns 1091697 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62096902ns 1091702 1a110850 fd5ff06f jal x0, -44 +62097186ns 1091707 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62097471ns 1091712 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62097868ns 1091719 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62098039ns 1091722 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62098493ns 1091730 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62098664ns 1091733 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62098948ns 1091738 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62099232ns 1091743 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62099516ns 1091748 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62099971ns 1091756 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62100142ns 1091759 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62100426ns 1091764 1a110850 fd5ff06f jal x0, -44 +62100710ns 1091769 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62100994ns 1091774 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62101392ns 1091781 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62101562ns 1091784 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62102017ns 1091792 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62102188ns 1091795 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62102472ns 1091800 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62102756ns 1091805 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62103040ns 1091810 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62103495ns 1091818 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62103665ns 1091821 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62103949ns 1091826 1a110850 fd5ff06f jal x0, -44 +62104234ns 1091831 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62104518ns 1091836 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62104915ns 1091843 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62105086ns 1091846 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62105541ns 1091854 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62105711ns 1091857 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62105995ns 1091862 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62106279ns 1091867 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62106564ns 1091872 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62107018ns 1091880 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62107189ns 1091883 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62107473ns 1091888 1a110850 fd5ff06f jal x0, -44 +62107757ns 1091893 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62108041ns 1091898 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62108439ns 1091905 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62108610ns 1091908 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62109064ns 1091916 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62109235ns 1091919 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62109519ns 1091924 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62109803ns 1091929 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62110087ns 1091934 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62110542ns 1091942 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62110712ns 1091945 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62110997ns 1091950 1a110850 fd5ff06f jal x0, -44 +62111281ns 1091955 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62111565ns 1091960 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62111963ns 1091967 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62112133ns 1091970 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62112588ns 1091978 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62112758ns 1091981 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62113042ns 1091986 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62113327ns 1091991 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62113611ns 1091996 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62114065ns 1092004 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62114236ns 1092007 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62114520ns 1092012 1a110850 fd5ff06f jal x0, -44 +62114804ns 1092017 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62115088ns 1092022 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62115486ns 1092029 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62115657ns 1092032 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62116111ns 1092040 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62116282ns 1092043 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62116566ns 1092048 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62116850ns 1092053 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62117134ns 1092058 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62117589ns 1092066 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62117760ns 1092069 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62118044ns 1092074 1a110850 fd5ff06f jal x0, -44 +62118328ns 1092079 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62118612ns 1092084 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62119010ns 1092091 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62119180ns 1092094 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62119635ns 1092102 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62119805ns 1092105 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62120090ns 1092110 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62120374ns 1092115 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62120658ns 1092120 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62121113ns 1092128 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62121283ns 1092131 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62121567ns 1092136 1a110850 fd5ff06f jal x0, -44 +62121851ns 1092141 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62122136ns 1092146 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62122533ns 1092153 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62122704ns 1092156 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62123159ns 1092164 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62123329ns 1092167 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62123613ns 1092172 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62123897ns 1092177 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62124182ns 1092182 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62124636ns 1092190 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62124807ns 1092193 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62125091ns 1092198 1a110850 fd5ff06f jal x0, -44 +62125375ns 1092203 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62125659ns 1092208 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62126057ns 1092215 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62126227ns 1092218 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62126682ns 1092226 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62126853ns 1092229 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62127137ns 1092234 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62127421ns 1092239 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62127705ns 1092244 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62128160ns 1092252 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62128330ns 1092255 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62128614ns 1092260 1a110850 fd5ff06f jal x0, -44 +62128899ns 1092265 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62129183ns 1092270 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62129581ns 1092277 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62129751ns 1092280 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62130206ns 1092288 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62130376ns 1092291 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62130660ns 1092296 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62130945ns 1092301 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62131229ns 1092306 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62131683ns 1092314 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62131854ns 1092317 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62132138ns 1092322 1a110850 fd5ff06f jal x0, -44 +62132422ns 1092327 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62132706ns 1092332 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62133104ns 1092339 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62133275ns 1092342 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62133729ns 1092350 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62133900ns 1092353 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62134184ns 1092358 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62134468ns 1092363 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62134752ns 1092368 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62135207ns 1092376 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62135377ns 1092379 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62135662ns 1092384 1a110850 fd5ff06f jal x0, -44 +62135946ns 1092389 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62136230ns 1092394 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62136628ns 1092401 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62136798ns 1092404 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62137253ns 1092412 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62137423ns 1092415 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62137708ns 1092420 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62137992ns 1092425 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62138276ns 1092430 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62138731ns 1092438 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62138901ns 1092441 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62139185ns 1092446 1a110850 fd5ff06f jal x0, -44 +62139469ns 1092451 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62139754ns 1092456 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62140151ns 1092463 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62140322ns 1092466 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62140776ns 1092474 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62140947ns 1092477 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62141231ns 1092482 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62141515ns 1092487 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62141799ns 1092492 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62142254ns 1092500 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62142425ns 1092503 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62142709ns 1092508 1a110850 fd5ff06f jal x0, -44 +62142993ns 1092513 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62143277ns 1092518 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62143675ns 1092525 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62143845ns 1092528 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62144300ns 1092536 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62144471ns 1092539 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62144755ns 1092544 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62145039ns 1092549 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62145323ns 1092554 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62145778ns 1092562 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62145948ns 1092565 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62146232ns 1092570 1a110850 fd5ff06f jal x0, -44 +62146517ns 1092575 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62146801ns 1092580 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62147199ns 1092587 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62147369ns 1092590 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62147824ns 1092598 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62147994ns 1092601 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62148278ns 1092606 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62148562ns 1092611 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62148847ns 1092616 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62149301ns 1092624 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62149472ns 1092627 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62149756ns 1092632 1a110850 fd5ff06f jal x0, -44 +62150040ns 1092637 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62150324ns 1092642 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62150722ns 1092649 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62150893ns 1092652 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62151347ns 1092660 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62151518ns 1092663 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62151802ns 1092668 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62152086ns 1092673 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62152370ns 1092678 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62152825ns 1092686 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62152995ns 1092689 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62153280ns 1092694 1a110850 fd5ff06f jal x0, -44 +62153564ns 1092699 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62153848ns 1092704 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62154246ns 1092711 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62154416ns 1092714 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62154871ns 1092722 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62155041ns 1092725 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62155325ns 1092730 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62155610ns 1092735 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62155894ns 1092740 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62156348ns 1092748 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62156519ns 1092751 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62156803ns 1092756 1a110850 fd5ff06f jal x0, -44 +62157087ns 1092761 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62157371ns 1092766 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62157769ns 1092773 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62157940ns 1092776 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62158394ns 1092784 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62158565ns 1092787 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62158849ns 1092792 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62159133ns 1092797 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62159417ns 1092802 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62159872ns 1092810 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62160043ns 1092813 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62160327ns 1092818 1a110850 fd5ff06f jal x0, -44 +62160611ns 1092823 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62160895ns 1092828 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62161293ns 1092835 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62161463ns 1092838 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62161918ns 1092846 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62162088ns 1092849 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62162373ns 1092854 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62162657ns 1092859 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62162941ns 1092864 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62163396ns 1092872 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62163566ns 1092875 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62163850ns 1092880 1a110850 fd5ff06f jal x0, -44 +62164134ns 1092885 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62164419ns 1092890 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62164816ns 1092897 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62164987ns 1092900 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62165442ns 1092908 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62165612ns 1092911 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62165896ns 1092916 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62166180ns 1092921 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62166465ns 1092926 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62166919ns 1092934 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62167090ns 1092937 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62167374ns 1092942 1a110850 fd5ff06f jal x0, -44 +62167658ns 1092947 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62167942ns 1092952 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62168340ns 1092959 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62168511ns 1092962 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62168965ns 1092970 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62169136ns 1092973 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62169420ns 1092978 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62169704ns 1092983 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62169988ns 1092988 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62170443ns 1092996 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62170613ns 1092999 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62170897ns 1093004 1a110850 fd5ff06f jal x0, -44 +62171182ns 1093009 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62171466ns 1093014 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62171864ns 1093021 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62172034ns 1093024 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62172489ns 1093032 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62172659ns 1093035 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62172943ns 1093040 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62173228ns 1093045 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62173512ns 1093050 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62173966ns 1093058 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62174137ns 1093061 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62174421ns 1093066 1a110850 fd5ff06f jal x0, -44 +62174705ns 1093071 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62174989ns 1093076 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62175387ns 1093083 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62175558ns 1093086 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62176012ns 1093094 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62176183ns 1093097 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62176467ns 1093102 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62176751ns 1093107 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62177035ns 1093112 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62177490ns 1093120 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62177660ns 1093123 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62177945ns 1093128 1a110850 fd5ff06f jal x0, -44 +62178229ns 1093133 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62178513ns 1093138 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62178911ns 1093145 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62179081ns 1093148 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62179536ns 1093156 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62179706ns 1093159 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62179991ns 1093164 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62180275ns 1093169 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62180559ns 1093174 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62181014ns 1093182 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62181184ns 1093185 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62181468ns 1093190 1a110850 fd5ff06f jal x0, -44 +62181752ns 1093195 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62182037ns 1093200 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62182434ns 1093207 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62182605ns 1093210 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62183059ns 1093218 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62183230ns 1093221 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62183514ns 1093226 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62183798ns 1093231 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62184082ns 1093236 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62184537ns 1093244 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62184708ns 1093247 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62184992ns 1093252 1a110850 fd5ff06f jal x0, -44 +62185276ns 1093257 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62185560ns 1093262 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62185958ns 1093269 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62186128ns 1093272 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62186583ns 1093280 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62186754ns 1093283 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62187038ns 1093288 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62187322ns 1093293 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62187606ns 1093298 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62188061ns 1093306 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62188231ns 1093309 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62188515ns 1093314 1a110850 fd5ff06f jal x0, -44 +62188800ns 1093319 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62189084ns 1093324 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62189482ns 1093331 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62189652ns 1093334 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62190107ns 1093342 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62190277ns 1093345 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62190561ns 1093350 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62190845ns 1093355 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62191130ns 1093360 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62191584ns 1093368 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62191755ns 1093371 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62192039ns 1093376 1a110850 fd5ff06f jal x0, -44 +62192323ns 1093381 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62192607ns 1093386 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62193005ns 1093393 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62193176ns 1093396 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62193630ns 1093404 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62193801ns 1093407 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62194085ns 1093412 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62194369ns 1093417 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62194653ns 1093422 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62195108ns 1093430 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62195278ns 1093433 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62195563ns 1093438 1a110850 fd5ff06f jal x0, -44 +62195847ns 1093443 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62196131ns 1093448 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62196529ns 1093455 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62196699ns 1093458 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62197154ns 1093466 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62197324ns 1093469 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62197608ns 1093474 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62197893ns 1093479 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62198177ns 1093484 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62198631ns 1093492 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62198802ns 1093495 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62199086ns 1093500 1a110850 fd5ff06f jal x0, -44 +62199370ns 1093505 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62199654ns 1093510 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62200052ns 1093517 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62200223ns 1093520 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62200677ns 1093528 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62200848ns 1093531 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62201132ns 1093536 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62201416ns 1093541 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62201700ns 1093546 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62202155ns 1093554 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62202326ns 1093557 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62202610ns 1093562 1a110850 fd5ff06f jal x0, -44 +62202894ns 1093567 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62203178ns 1093572 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62203576ns 1093579 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62203746ns 1093582 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62204201ns 1093590 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62204371ns 1093593 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62204656ns 1093598 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62204940ns 1093603 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62205224ns 1093608 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62205679ns 1093616 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62205849ns 1093619 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62206133ns 1093624 1a110850 fd5ff06f jal x0, -44 +62206417ns 1093629 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62206702ns 1093634 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62207099ns 1093641 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62207270ns 1093644 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62207725ns 1093652 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62207895ns 1093655 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62208179ns 1093660 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62208463ns 1093665 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62208748ns 1093670 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62209202ns 1093678 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62209373ns 1093681 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62209657ns 1093686 1a110850 fd5ff06f jal x0, -44 +62209941ns 1093691 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62210225ns 1093696 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62210623ns 1093703 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62210794ns 1093706 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62211248ns 1093714 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62211419ns 1093717 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62211703ns 1093722 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62211987ns 1093727 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62212271ns 1093732 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62212726ns 1093740 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62212896ns 1093743 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62213180ns 1093748 1a110850 fd5ff06f jal x0, -44 +62213465ns 1093753 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62213749ns 1093758 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62214147ns 1093765 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62214317ns 1093768 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62214772ns 1093776 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62214942ns 1093779 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62215226ns 1093784 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62215511ns 1093789 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62215795ns 1093794 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62216249ns 1093802 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62216420ns 1093805 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62216704ns 1093810 1a110850 fd5ff06f jal x0, -44 +62216988ns 1093815 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62217272ns 1093820 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62217670ns 1093827 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62217841ns 1093830 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62218295ns 1093838 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62218466ns 1093841 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62218750ns 1093846 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62219034ns 1093851 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62219318ns 1093856 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62219773ns 1093864 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62219943ns 1093867 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62220228ns 1093872 1a110850 fd5ff06f jal x0, -44 +62220512ns 1093877 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62220796ns 1093882 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62221194ns 1093889 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62221364ns 1093892 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62221819ns 1093900 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62221989ns 1093903 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62222274ns 1093908 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62222558ns 1093913 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62222842ns 1093918 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62223297ns 1093926 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62223467ns 1093929 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62223751ns 1093934 1a110850 fd5ff06f jal x0, -44 +62224035ns 1093939 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62224320ns 1093944 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62224717ns 1093951 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62224888ns 1093954 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62225343ns 1093962 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62225513ns 1093965 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62225797ns 1093970 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62226081ns 1093975 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62226365ns 1093980 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62226820ns 1093988 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62226991ns 1093991 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62227275ns 1093996 1a110850 fd5ff06f jal x0, -44 +62227559ns 1094001 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62227843ns 1094006 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62228241ns 1094013 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62228411ns 1094016 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62228866ns 1094024 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62229037ns 1094027 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62229321ns 1094032 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62229605ns 1094037 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62229889ns 1094042 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62230344ns 1094050 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62230514ns 1094053 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62230798ns 1094058 1a110850 fd5ff06f jal x0, -44 +62231083ns 1094063 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62231367ns 1094068 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62231765ns 1094075 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62231935ns 1094078 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62232390ns 1094086 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62232560ns 1094089 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62232844ns 1094094 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62233128ns 1094099 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62233413ns 1094104 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62233867ns 1094112 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62234038ns 1094115 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62234322ns 1094120 1a110850 fd5ff06f jal x0, -44 +62234606ns 1094125 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62234890ns 1094130 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62235288ns 1094137 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62235459ns 1094140 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62235913ns 1094148 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62236084ns 1094151 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62236368ns 1094156 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62236652ns 1094161 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62236936ns 1094166 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62237391ns 1094174 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62237561ns 1094177 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62237846ns 1094182 1a110850 fd5ff06f jal x0, -44 +62238130ns 1094187 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62238414ns 1094192 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62238812ns 1094199 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62238982ns 1094202 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62239437ns 1094210 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62239607ns 1094213 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62239891ns 1094218 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62240176ns 1094223 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62240460ns 1094228 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62240914ns 1094236 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62241085ns 1094239 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62241369ns 1094244 1a110850 fd5ff06f jal x0, -44 +62241653ns 1094249 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62241937ns 1094254 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62242335ns 1094261 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62242506ns 1094264 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62242960ns 1094272 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62243131ns 1094275 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62243415ns 1094280 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62243699ns 1094285 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62243983ns 1094290 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62244438ns 1094298 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62244609ns 1094301 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62244893ns 1094306 1a110850 fd5ff06f jal x0, -44 +62245177ns 1094311 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62245461ns 1094316 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62245859ns 1094323 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62246029ns 1094326 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62246484ns 1094334 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62246655ns 1094337 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62246939ns 1094342 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62247223ns 1094347 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62247507ns 1094352 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62247962ns 1094360 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62248132ns 1094363 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62248416ns 1094368 1a110850 fd5ff06f jal x0, -44 +62248700ns 1094373 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62248985ns 1094378 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62249382ns 1094385 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62249553ns 1094388 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62250008ns 1094396 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62250178ns 1094399 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62250462ns 1094404 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62250746ns 1094409 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62251031ns 1094414 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62251485ns 1094422 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62251656ns 1094425 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62251940ns 1094430 1a110850 fd5ff06f jal x0, -44 +62252224ns 1094435 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62252508ns 1094440 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62252906ns 1094447 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62253077ns 1094450 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62253531ns 1094458 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62253702ns 1094461 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62253986ns 1094466 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62254270ns 1094471 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62254554ns 1094476 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62255009ns 1094484 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62255179ns 1094487 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62255463ns 1094492 1a110850 fd5ff06f jal x0, -44 +62255748ns 1094497 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62256032ns 1094502 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62256430ns 1094509 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62256600ns 1094512 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62257055ns 1094520 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62257225ns 1094523 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62257509ns 1094528 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62257794ns 1094533 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62258078ns 1094538 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62258532ns 1094546 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62258703ns 1094549 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62258987ns 1094554 1a110850 fd5ff06f jal x0, -44 +62259271ns 1094559 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62259555ns 1094564 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62259953ns 1094571 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62260124ns 1094574 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62260578ns 1094582 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62260749ns 1094585 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62261033ns 1094590 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62261317ns 1094595 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62261601ns 1094600 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62262056ns 1094608 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62262226ns 1094611 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62262511ns 1094616 1a110850 fd5ff06f jal x0, -44 +62262795ns 1094621 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62263079ns 1094626 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62263477ns 1094633 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62263647ns 1094636 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62264102ns 1094644 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62264272ns 1094647 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62264557ns 1094652 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62264841ns 1094657 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62265125ns 1094662 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62265580ns 1094670 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62265750ns 1094673 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62266034ns 1094678 1a110850 fd5ff06f jal x0, -44 +62266318ns 1094683 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62266603ns 1094688 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62267000ns 1094695 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62267171ns 1094698 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62267626ns 1094706 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62267796ns 1094709 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62268080ns 1094714 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62268364ns 1094719 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62268648ns 1094724 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62269103ns 1094732 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62269274ns 1094735 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62269558ns 1094740 1a110850 fd5ff06f jal x0, -44 +62269842ns 1094745 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62270126ns 1094750 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62270524ns 1094757 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62270694ns 1094760 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62271149ns 1094768 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62271320ns 1094771 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62271604ns 1094776 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62271888ns 1094781 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62272172ns 1094786 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62272627ns 1094794 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62272797ns 1094797 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62273081ns 1094802 1a110850 fd5ff06f jal x0, -44 +62273366ns 1094807 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62273650ns 1094812 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62274048ns 1094819 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62274218ns 1094822 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62274673ns 1094830 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62274843ns 1094833 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62275127ns 1094838 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62275411ns 1094843 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62275696ns 1094848 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62276150ns 1094856 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62276321ns 1094859 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62276605ns 1094864 1a110850 fd5ff06f jal x0, -44 +62276889ns 1094869 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62277173ns 1094874 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62277571ns 1094881 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62277742ns 1094884 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62278196ns 1094892 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62278367ns 1094895 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62278651ns 1094900 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62278935ns 1094905 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62279219ns 1094910 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62279674ns 1094918 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62279844ns 1094921 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62280129ns 1094926 1a110850 fd5ff06f jal x0, -44 +62280413ns 1094931 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62280697ns 1094936 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62281095ns 1094943 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62281265ns 1094946 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62281720ns 1094954 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62281890ns 1094957 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62282175ns 1094962 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62282459ns 1094967 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62282743ns 1094972 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62283197ns 1094980 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62283368ns 1094983 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62283652ns 1094988 1a110850 fd5ff06f jal x0, -44 +62283936ns 1094993 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62284220ns 1094998 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62284618ns 1095005 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62284789ns 1095008 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62285243ns 1095016 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62285414ns 1095019 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62285698ns 1095024 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62285982ns 1095029 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62286266ns 1095034 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62286721ns 1095042 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62286892ns 1095045 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62287176ns 1095050 1a110850 fd5ff06f jal x0, -44 +62287460ns 1095055 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62287744ns 1095060 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62288142ns 1095067 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62288312ns 1095070 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62288767ns 1095078 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62288938ns 1095081 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62289222ns 1095086 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62289506ns 1095091 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62289790ns 1095096 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62290245ns 1095104 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62290415ns 1095107 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62290699ns 1095112 1a110850 fd5ff06f jal x0, -44 +62290983ns 1095117 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62291268ns 1095122 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62291665ns 1095129 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62291836ns 1095132 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62292291ns 1095140 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62292461ns 1095143 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62292745ns 1095148 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62293029ns 1095153 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62293314ns 1095158 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62293768ns 1095166 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62293939ns 1095169 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62294223ns 1095174 1a110850 fd5ff06f jal x0, -44 +62294507ns 1095179 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62294791ns 1095184 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62295189ns 1095191 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62295360ns 1095194 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62295814ns 1095202 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62295985ns 1095205 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62296269ns 1095210 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62296553ns 1095215 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62296837ns 1095220 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62297292ns 1095228 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62297462ns 1095231 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62297746ns 1095236 1a110850 fd5ff06f jal x0, -44 +62298031ns 1095241 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62298315ns 1095246 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62298713ns 1095253 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62298883ns 1095256 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62299338ns 1095264 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62299508ns 1095267 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62299792ns 1095272 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62300077ns 1095277 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62300361ns 1095282 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62300815ns 1095290 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62300986ns 1095293 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62301270ns 1095298 1a110850 fd5ff06f jal x0, -44 +62301554ns 1095303 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62301838ns 1095308 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62302236ns 1095315 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62302407ns 1095318 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62302861ns 1095326 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62303032ns 1095329 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62303316ns 1095334 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62303600ns 1095339 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62303884ns 1095344 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62304339ns 1095352 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62304509ns 1095355 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62304794ns 1095360 1a110850 fd5ff06f jal x0, -44 +62305078ns 1095365 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62305362ns 1095370 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62305760ns 1095377 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62305930ns 1095380 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62306385ns 1095388 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62306555ns 1095391 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62306840ns 1095396 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62307124ns 1095401 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62307408ns 1095406 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62307863ns 1095414 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62308033ns 1095417 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62308317ns 1095422 1a110850 fd5ff06f jal x0, -44 +62308601ns 1095427 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62308886ns 1095432 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62309283ns 1095439 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62309454ns 1095442 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62309909ns 1095450 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62310079ns 1095453 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62310363ns 1095458 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62310647ns 1095463 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62310931ns 1095468 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62311386ns 1095476 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62311557ns 1095479 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62311841ns 1095484 1a110850 fd5ff06f jal x0, -44 +62312125ns 1095489 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62312409ns 1095494 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62312807ns 1095501 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62312977ns 1095504 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62313432ns 1095512 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62313603ns 1095515 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62313887ns 1095520 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62314171ns 1095525 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62314455ns 1095530 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62314910ns 1095538 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62315080ns 1095541 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62315364ns 1095546 1a110850 fd5ff06f jal x0, -44 +62315649ns 1095551 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62315933ns 1095556 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62316331ns 1095563 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62316501ns 1095566 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62316956ns 1095574 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62317126ns 1095577 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62317410ns 1095582 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62317695ns 1095587 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62317979ns 1095592 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62318433ns 1095600 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62318604ns 1095603 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62318888ns 1095608 1a110850 fd5ff06f jal x0, -44 +62319172ns 1095613 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62319456ns 1095618 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62319854ns 1095625 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62320025ns 1095628 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62320479ns 1095636 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62320650ns 1095639 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62320934ns 1095644 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62321218ns 1095649 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62321502ns 1095654 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62321957ns 1095662 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62322127ns 1095665 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62322412ns 1095670 1a110850 fd5ff06f jal x0, -44 +62322696ns 1095675 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62322980ns 1095680 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62323378ns 1095687 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62323548ns 1095690 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62324003ns 1095698 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62324173ns 1095701 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62324458ns 1095706 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62324742ns 1095711 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62325026ns 1095716 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62325480ns 1095724 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62325651ns 1095727 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62325935ns 1095732 1a110850 fd5ff06f jal x0, -44 +62326219ns 1095737 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62326503ns 1095742 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62326901ns 1095749 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62327072ns 1095752 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62327526ns 1095760 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62327697ns 1095763 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62327981ns 1095768 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62328265ns 1095773 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62328549ns 1095778 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62329004ns 1095786 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62329175ns 1095789 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62329459ns 1095794 1a110850 fd5ff06f jal x0, -44 +62329743ns 1095799 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62330027ns 1095804 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62330425ns 1095811 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62330595ns 1095814 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62331050ns 1095822 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62331221ns 1095825 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62331505ns 1095830 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62331789ns 1095835 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62332073ns 1095840 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62332528ns 1095848 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62332698ns 1095851 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62332982ns 1095856 1a110850 fd5ff06f jal x0, -44 +62333266ns 1095861 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62333551ns 1095866 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62333948ns 1095873 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62334119ns 1095876 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62334574ns 1095884 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62334744ns 1095887 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62335028ns 1095892 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62335312ns 1095897 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62335597ns 1095902 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62336051ns 1095910 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62336222ns 1095913 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62336506ns 1095918 1a110850 fd5ff06f jal x0, -44 +62336790ns 1095923 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62337074ns 1095928 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62337472ns 1095935 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62337643ns 1095938 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62338097ns 1095946 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62338268ns 1095949 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62338552ns 1095954 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62338836ns 1095959 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62339120ns 1095964 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62339575ns 1095972 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62339745ns 1095975 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62340029ns 1095980 1a110850 fd5ff06f jal x0, -44 +62340314ns 1095985 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62340598ns 1095990 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62340996ns 1095997 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62341166ns 1096000 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62341621ns 1096008 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62341791ns 1096011 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62342075ns 1096016 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62342360ns 1096021 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62342644ns 1096026 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62343098ns 1096034 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62343269ns 1096037 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62343553ns 1096042 1a110850 fd5ff06f jal x0, -44 +62343837ns 1096047 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62344121ns 1096052 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62344519ns 1096059 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62344690ns 1096062 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62345144ns 1096070 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62345315ns 1096073 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62345599ns 1096078 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62345883ns 1096083 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62346167ns 1096088 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62346622ns 1096096 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62346792ns 1096099 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62347077ns 1096104 1a110850 fd5ff06f jal x0, -44 +62347361ns 1096109 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62347645ns 1096114 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62348043ns 1096121 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62348213ns 1096124 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62348668ns 1096132 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62348838ns 1096135 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62349123ns 1096140 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62349407ns 1096145 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62349691ns 1096150 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62350146ns 1096158 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62350316ns 1096161 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62350600ns 1096166 1a110850 fd5ff06f jal x0, -44 +62350884ns 1096171 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62351169ns 1096176 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62351566ns 1096183 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62351737ns 1096186 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62352192ns 1096194 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62352362ns 1096197 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62352646ns 1096202 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62352930ns 1096207 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62353215ns 1096212 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62353669ns 1096220 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62353840ns 1096223 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62354124ns 1096228 1a110850 fd5ff06f jal x0, -44 +62354408ns 1096233 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62354692ns 1096238 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62355090ns 1096245 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62355260ns 1096248 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62355715ns 1096256 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62355886ns 1096259 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62356170ns 1096264 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62356454ns 1096269 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62356738ns 1096274 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62357193ns 1096282 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62357363ns 1096285 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62357647ns 1096290 1a110850 fd5ff06f jal x0, -44 +62357932ns 1096295 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62358216ns 1096300 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62358614ns 1096307 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62358784ns 1096310 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62359239ns 1096318 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62359409ns 1096321 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62359693ns 1096326 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62359978ns 1096331 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62360262ns 1096336 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62360716ns 1096344 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62360887ns 1096347 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62361171ns 1096352 1a110850 fd5ff06f jal x0, -44 +62361455ns 1096357 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62361739ns 1096362 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62362137ns 1096369 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62362308ns 1096372 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62362762ns 1096380 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62362933ns 1096383 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62363217ns 1096388 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62363501ns 1096393 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62363785ns 1096398 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62364240ns 1096406 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62364410ns 1096409 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62364695ns 1096414 1a110850 fd5ff06f jal x0, -44 +62364979ns 1096419 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62365263ns 1096424 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62365661ns 1096431 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62365831ns 1096434 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62366286ns 1096442 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62366456ns 1096445 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62366741ns 1096450 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62367025ns 1096455 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62367309ns 1096460 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62367763ns 1096468 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62367934ns 1096471 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62368218ns 1096476 1a110850 fd5ff06f jal x0, -44 +62368502ns 1096481 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62368786ns 1096486 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62369184ns 1096493 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62369355ns 1096496 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62369809ns 1096504 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62369980ns 1096507 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62370264ns 1096512 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62370548ns 1096517 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62370832ns 1096522 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62371287ns 1096530 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62371458ns 1096533 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62371742ns 1096538 1a110850 fd5ff06f jal x0, -44 +62372026ns 1096543 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62372310ns 1096548 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62372708ns 1096555 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62372878ns 1096558 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62373333ns 1096566 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62373504ns 1096569 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62373788ns 1096574 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62374072ns 1096579 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62374356ns 1096584 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62374811ns 1096592 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62374981ns 1096595 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62375265ns 1096600 1a110850 fd5ff06f jal x0, -44 +62375549ns 1096605 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62375834ns 1096610 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62376231ns 1096617 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62376402ns 1096620 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62376857ns 1096628 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62377027ns 1096631 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62377311ns 1096636 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62377595ns 1096641 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62377880ns 1096646 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62378334ns 1096654 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62378505ns 1096657 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62378789ns 1096662 1a110850 fd5ff06f jal x0, -44 +62379073ns 1096667 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62379357ns 1096672 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62379755ns 1096679 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62379926ns 1096682 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62380380ns 1096690 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62380551ns 1096693 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62380835ns 1096698 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62381119ns 1096703 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62381403ns 1096708 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62381858ns 1096716 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62382028ns 1096719 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62382312ns 1096724 1a110850 fd5ff06f jal x0, -44 +62382597ns 1096729 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62382881ns 1096734 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62383279ns 1096741 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62383449ns 1096744 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62383904ns 1096752 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62384074ns 1096755 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62384358ns 1096760 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62384643ns 1096765 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62384927ns 1096770 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62385381ns 1096778 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62385552ns 1096781 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62385836ns 1096786 1a110850 fd5ff06f jal x0, -44 +62386120ns 1096791 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62386404ns 1096796 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62386802ns 1096803 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62386973ns 1096806 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62387427ns 1096814 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62387598ns 1096817 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62387882ns 1096822 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62388166ns 1096827 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62388450ns 1096832 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62388905ns 1096840 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62389075ns 1096843 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62389360ns 1096848 1a110850 fd5ff06f jal x0, -44 +62389644ns 1096853 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62389928ns 1096858 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62390326ns 1096865 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62390496ns 1096868 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62390951ns 1096876 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62391121ns 1096879 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62391406ns 1096884 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62391690ns 1096889 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62391974ns 1096894 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62392429ns 1096902 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62392599ns 1096905 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62392883ns 1096910 1a110850 fd5ff06f jal x0, -44 +62393167ns 1096915 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62393452ns 1096920 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62393849ns 1096927 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62394020ns 1096930 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62394475ns 1096938 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62394645ns 1096941 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62394929ns 1096946 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62395213ns 1096951 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62395498ns 1096956 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62395952ns 1096964 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62396123ns 1096967 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62396407ns 1096972 1a110850 fd5ff06f jal x0, -44 +62396691ns 1096977 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62396975ns 1096982 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62397373ns 1096989 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62397543ns 1096992 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62397998ns 1097000 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62398169ns 1097003 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62398453ns 1097008 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62398737ns 1097013 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62399021ns 1097018 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62399476ns 1097026 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62399646ns 1097029 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62399930ns 1097034 1a110850 fd5ff06f jal x0, -44 +62400215ns 1097039 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62400499ns 1097044 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62400897ns 1097051 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62401067ns 1097054 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62401522ns 1097062 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62401692ns 1097065 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62401976ns 1097070 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62402261ns 1097075 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62402545ns 1097080 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62402999ns 1097088 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62403170ns 1097091 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62403454ns 1097096 1a110850 fd5ff06f jal x0, -44 +62403738ns 1097101 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62404022ns 1097106 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62404420ns 1097113 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62404591ns 1097116 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62405045ns 1097124 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62405216ns 1097127 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62405500ns 1097132 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62405784ns 1097137 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62406068ns 1097142 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62406523ns 1097150 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62406693ns 1097153 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62406978ns 1097158 1a110850 fd5ff06f jal x0, -44 +62407262ns 1097163 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62407546ns 1097168 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62407944ns 1097175 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62408114ns 1097178 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62408569ns 1097186 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62408739ns 1097189 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62409024ns 1097194 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62409308ns 1097199 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62409592ns 1097204 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62410047ns 1097212 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62410217ns 1097215 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62410501ns 1097220 1a110850 fd5ff06f jal x0, -44 +62410785ns 1097225 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62411069ns 1097230 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62411467ns 1097237 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62411638ns 1097240 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62412092ns 1097248 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62412263ns 1097251 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62412547ns 1097256 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62412831ns 1097261 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62413115ns 1097266 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62413570ns 1097274 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62413741ns 1097277 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62414025ns 1097282 1a110850 fd5ff06f jal x0, -44 +62414309ns 1097287 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62414593ns 1097292 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62414991ns 1097299 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62415161ns 1097302 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62415616ns 1097310 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62415787ns 1097313 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62416071ns 1097318 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62416355ns 1097323 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62416639ns 1097328 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62417094ns 1097336 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62417264ns 1097339 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62417548ns 1097344 1a110850 fd5ff06f jal x0, -44 +62417832ns 1097349 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62418117ns 1097354 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62418514ns 1097361 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62418685ns 1097364 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62419140ns 1097372 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62419310ns 1097375 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62419594ns 1097380 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62419878ns 1097385 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62420163ns 1097390 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62420617ns 1097398 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62420788ns 1097401 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62421072ns 1097406 1a110850 fd5ff06f jal x0, -44 +62421356ns 1097411 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62421640ns 1097416 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62422038ns 1097423 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62422209ns 1097426 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62422663ns 1097434 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62422834ns 1097437 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62423118ns 1097442 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62423402ns 1097447 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62423686ns 1097452 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62424141ns 1097460 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62424311ns 1097463 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62424595ns 1097468 1a110850 fd5ff06f jal x0, -44 +62424880ns 1097473 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62425164ns 1097478 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62425562ns 1097485 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62425732ns 1097488 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62426187ns 1097496 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62426357ns 1097499 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62426641ns 1097504 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62426926ns 1097509 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62427210ns 1097514 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62427664ns 1097522 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62427835ns 1097525 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62428119ns 1097530 1a110850 fd5ff06f jal x0, -44 +62428403ns 1097535 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62428687ns 1097540 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62429085ns 1097547 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62429256ns 1097550 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62429710ns 1097558 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62429881ns 1097561 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62430165ns 1097566 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62430449ns 1097571 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62430733ns 1097576 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62431188ns 1097584 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62431359ns 1097587 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62431643ns 1097592 1a110850 fd5ff06f jal x0, -44 +62431927ns 1097597 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62432211ns 1097602 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62432609ns 1097609 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62432779ns 1097612 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62433234ns 1097620 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62433404ns 1097623 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62433689ns 1097628 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62433973ns 1097633 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62434257ns 1097638 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62434712ns 1097646 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62434882ns 1097649 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62435166ns 1097654 1a110850 fd5ff06f jal x0, -44 +62435450ns 1097659 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62435735ns 1097664 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62436132ns 1097671 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62436303ns 1097674 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62436758ns 1097682 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62436928ns 1097685 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62437212ns 1097690 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62437496ns 1097695 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62437781ns 1097700 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62438235ns 1097708 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62438406ns 1097711 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62438690ns 1097716 1a110850 fd5ff06f jal x0, -44 +62438974ns 1097721 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62439258ns 1097726 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62439656ns 1097733 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62439826ns 1097736 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62440281ns 1097744 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62440452ns 1097747 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62440736ns 1097752 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62441020ns 1097757 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62441304ns 1097762 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62441759ns 1097770 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62441929ns 1097773 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62442213ns 1097778 1a110850 fd5ff06f jal x0, -44 +62442498ns 1097783 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62442782ns 1097788 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62443180ns 1097795 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62443350ns 1097798 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62443805ns 1097806 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62443975ns 1097809 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62444259ns 1097814 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62444544ns 1097819 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62444828ns 1097824 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62445282ns 1097832 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62445453ns 1097835 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62445737ns 1097840 1a110850 fd5ff06f jal x0, -44 +62446021ns 1097845 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62446305ns 1097850 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62446703ns 1097857 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62446874ns 1097860 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62447328ns 1097868 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62447499ns 1097871 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62447783ns 1097876 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62448067ns 1097881 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62448351ns 1097886 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62448806ns 1097894 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62448976ns 1097897 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62449261ns 1097902 1a110850 fd5ff06f jal x0, -44 +62449545ns 1097907 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62449829ns 1097912 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62450227ns 1097919 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62450397ns 1097922 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62450852ns 1097930 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62451022ns 1097933 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62451307ns 1097938 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62451591ns 1097943 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62451875ns 1097948 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62452330ns 1097956 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62452500ns 1097959 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62452784ns 1097964 1a110850 fd5ff06f jal x0, -44 +62453068ns 1097969 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62453352ns 1097974 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62453750ns 1097981 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62453921ns 1097984 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62454375ns 1097992 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62454546ns 1097995 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62454830ns 1098000 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62455114ns 1098005 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62455398ns 1098010 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62455853ns 1098018 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62456024ns 1098021 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62456308ns 1098026 1a110850 fd5ff06f jal x0, -44 +62456592ns 1098031 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62456876ns 1098036 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62457274ns 1098043 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62457444ns 1098046 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62457899ns 1098054 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62458070ns 1098057 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62458354ns 1098062 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62458638ns 1098067 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62458922ns 1098072 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62459377ns 1098080 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62459547ns 1098083 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62459831ns 1098088 1a110850 fd5ff06f jal x0, -44 +62460115ns 1098093 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62460400ns 1098098 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62460797ns 1098105 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62460968ns 1098108 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62461423ns 1098116 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62461593ns 1098119 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62461877ns 1098124 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62462161ns 1098129 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62462446ns 1098134 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62462900ns 1098142 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62463071ns 1098145 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62463355ns 1098150 1a110850 fd5ff06f jal x0, -44 +62463639ns 1098155 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62463923ns 1098160 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62464321ns 1098167 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62464492ns 1098170 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62464946ns 1098178 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62465117ns 1098181 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62465401ns 1098186 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62465685ns 1098191 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62465969ns 1098196 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62466424ns 1098204 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62466594ns 1098207 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62466879ns 1098212 1a110850 fd5ff06f jal x0, -44 +62467163ns 1098217 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62467447ns 1098222 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62467845ns 1098229 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62468015ns 1098232 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62468470ns 1098240 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62468640ns 1098243 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62468924ns 1098248 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62469209ns 1098253 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62469493ns 1098258 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62469947ns 1098266 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62470118ns 1098269 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62470402ns 1098274 1a110850 fd5ff06f jal x0, -44 +62470686ns 1098279 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62470970ns 1098284 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62471368ns 1098291 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62471539ns 1098294 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62471993ns 1098302 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62472164ns 1098305 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62472448ns 1098310 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62472732ns 1098315 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62473016ns 1098320 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62473471ns 1098328 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62473642ns 1098331 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62473926ns 1098336 1a110850 fd5ff06f jal x0, -44 +62474210ns 1098341 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62474494ns 1098346 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62474892ns 1098353 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62475062ns 1098356 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62475517ns 1098364 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62475687ns 1098367 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62475972ns 1098372 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62476256ns 1098377 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62476540ns 1098382 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62476995ns 1098390 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62477165ns 1098393 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62477449ns 1098398 1a110850 fd5ff06f jal x0, -44 +62477733ns 1098403 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62478018ns 1098408 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62478415ns 1098415 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62478586ns 1098418 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62479041ns 1098426 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62479211ns 1098429 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62479495ns 1098434 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62479779ns 1098439 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62480064ns 1098444 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62480518ns 1098452 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62480689ns 1098455 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62480973ns 1098460 1a110850 fd5ff06f jal x0, -44 +62481257ns 1098465 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62481541ns 1098470 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62481939ns 1098477 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62482109ns 1098480 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62482564ns 1098488 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62482735ns 1098491 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62483019ns 1098496 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62483303ns 1098501 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62483587ns 1098506 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62484042ns 1098514 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62484212ns 1098517 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62484496ns 1098522 1a110850 fd5ff06f jal x0, -44 +62484781ns 1098527 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62485065ns 1098532 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62485463ns 1098539 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62485633ns 1098542 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62486088ns 1098550 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62486258ns 1098553 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62486542ns 1098558 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62486827ns 1098563 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62487111ns 1098568 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62487565ns 1098576 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62487736ns 1098579 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62488020ns 1098584 1a110850 fd5ff06f jal x0, -44 +62488304ns 1098589 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62488588ns 1098594 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62488986ns 1098601 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62489157ns 1098604 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62489611ns 1098612 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62489782ns 1098615 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62490066ns 1098620 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62490350ns 1098625 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62490634ns 1098630 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62491089ns 1098638 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62491259ns 1098641 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62491544ns 1098646 1a110850 fd5ff06f jal x0, -44 +62491828ns 1098651 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62492112ns 1098656 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62492510ns 1098663 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62492680ns 1098666 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62493135ns 1098674 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62493305ns 1098677 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62493590ns 1098682 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62493874ns 1098687 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62494158ns 1098692 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62494613ns 1098700 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62494783ns 1098703 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62495067ns 1098708 1a110850 fd5ff06f jal x0, -44 +62495351ns 1098713 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62495635ns 1098718 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62496033ns 1098725 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62496204ns 1098728 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62496658ns 1098736 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62496829ns 1098739 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62497113ns 1098744 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62497397ns 1098749 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62497681ns 1098754 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62498136ns 1098762 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62498307ns 1098765 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62498591ns 1098770 1a110850 fd5ff06f jal x0, -44 +62498875ns 1098775 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62499159ns 1098780 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62499557ns 1098787 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62499727ns 1098790 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62500182ns 1098798 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62500353ns 1098801 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62500637ns 1098806 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62500921ns 1098811 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62501205ns 1098816 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62501660ns 1098824 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62501830ns 1098827 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62502114ns 1098832 1a110850 fd5ff06f jal x0, -44 +62502399ns 1098837 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62502683ns 1098842 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62503080ns 1098849 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62503251ns 1098852 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62503706ns 1098860 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62503876ns 1098863 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62504160ns 1098868 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62504444ns 1098873 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62504729ns 1098878 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62505183ns 1098886 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62505354ns 1098889 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62505638ns 1098894 1a110850 fd5ff06f jal x0, -44 +62505922ns 1098899 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62506206ns 1098904 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62506604ns 1098911 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62506775ns 1098914 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62507229ns 1098922 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62507400ns 1098925 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62507684ns 1098930 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62507968ns 1098935 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62508252ns 1098940 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62508707ns 1098948 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62508877ns 1098951 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62509162ns 1098956 1a110850 fd5ff06f jal x0, -44 +62509446ns 1098961 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62509730ns 1098966 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62510128ns 1098973 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62510298ns 1098976 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62510753ns 1098984 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62510923ns 1098987 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62511207ns 1098992 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62511492ns 1098997 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62511776ns 1099002 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62512230ns 1099010 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62512401ns 1099013 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62512685ns 1099018 1a110850 fd5ff06f jal x0, -44 +62512969ns 1099023 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62513253ns 1099028 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62513651ns 1099035 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62513822ns 1099038 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62514276ns 1099046 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62514447ns 1099049 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62514731ns 1099054 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62515015ns 1099059 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62515299ns 1099064 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62515754ns 1099072 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62515925ns 1099075 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62516209ns 1099080 1a110850 fd5ff06f jal x0, -44 +62516493ns 1099085 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62516777ns 1099090 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62517175ns 1099097 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62517345ns 1099100 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62517800ns 1099108 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62517970ns 1099111 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62518255ns 1099116 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62518539ns 1099121 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62518823ns 1099126 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62519278ns 1099134 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62519448ns 1099137 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62519732ns 1099142 1a110850 fd5ff06f jal x0, -44 +62520016ns 1099147 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62520301ns 1099152 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62520698ns 1099159 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62520869ns 1099162 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62521324ns 1099170 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62521494ns 1099173 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62521778ns 1099178 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62522062ns 1099183 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62522347ns 1099188 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62522801ns 1099196 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62522972ns 1099199 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62523256ns 1099204 1a110850 fd5ff06f jal x0, -44 +62523540ns 1099209 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62523824ns 1099214 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62524222ns 1099221 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62524392ns 1099224 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62524847ns 1099232 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62525018ns 1099235 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62525302ns 1099240 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62525586ns 1099245 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62525870ns 1099250 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62526325ns 1099258 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62526495ns 1099261 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62526779ns 1099266 1a110850 fd5ff06f jal x0, -44 +62527064ns 1099271 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62527348ns 1099276 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62527746ns 1099283 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62527916ns 1099286 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62528371ns 1099294 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62528541ns 1099297 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62528825ns 1099302 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62529110ns 1099307 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62529394ns 1099312 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62529848ns 1099320 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62530019ns 1099323 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62530303ns 1099328 1a110850 fd5ff06f jal x0, -44 +62530587ns 1099333 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62530871ns 1099338 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62531269ns 1099345 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62531440ns 1099348 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62531894ns 1099356 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62532065ns 1099359 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62532349ns 1099364 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62532633ns 1099369 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62532917ns 1099374 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62533372ns 1099382 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62533542ns 1099385 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62533827ns 1099390 1a110850 fd5ff06f jal x0, -44 +62534111ns 1099395 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62534395ns 1099400 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62534793ns 1099407 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62534963ns 1099410 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62535418ns 1099418 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62535588ns 1099421 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62535873ns 1099426 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62536157ns 1099431 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62536441ns 1099436 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62536896ns 1099444 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62537066ns 1099447 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62537350ns 1099452 1a110850 fd5ff06f jal x0, -44 +62537634ns 1099457 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62537919ns 1099462 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62538316ns 1099469 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62538487ns 1099472 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62538941ns 1099480 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62539112ns 1099483 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62539396ns 1099488 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62539680ns 1099493 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62539964ns 1099498 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62540419ns 1099506 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62540590ns 1099509 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62540874ns 1099514 1a110850 fd5ff06f jal x0, -44 +62541158ns 1099519 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62541442ns 1099524 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62541840ns 1099531 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62542010ns 1099534 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62542465ns 1099542 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62542636ns 1099545 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62542920ns 1099550 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62543204ns 1099555 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62543488ns 1099560 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62543943ns 1099568 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62544113ns 1099571 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62544397ns 1099576 1a110850 fd5ff06f jal x0, -44 +62544682ns 1099581 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62544966ns 1099586 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62545363ns 1099593 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62545534ns 1099596 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62545989ns 1099604 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62546159ns 1099607 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62546443ns 1099612 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62546727ns 1099617 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62547012ns 1099622 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62547466ns 1099630 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62547637ns 1099633 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62547921ns 1099638 1a110850 fd5ff06f jal x0, -44 +62548205ns 1099643 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62548489ns 1099648 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62548887ns 1099655 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62549058ns 1099658 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62549512ns 1099666 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62549683ns 1099669 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62549967ns 1099674 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62550251ns 1099679 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62550535ns 1099684 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62550990ns 1099692 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62551160ns 1099695 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62551445ns 1099700 1a110850 fd5ff06f jal x0, -44 +62551729ns 1099705 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62552013ns 1099710 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62552411ns 1099717 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62552581ns 1099720 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62553036ns 1099728 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62553206ns 1099731 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62553490ns 1099736 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62553775ns 1099741 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62554059ns 1099746 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62554513ns 1099754 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62554684ns 1099757 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62554968ns 1099762 1a110850 fd5ff06f jal x0, -44 +62555252ns 1099767 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62555536ns 1099772 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62555934ns 1099779 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62556105ns 1099782 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62556559ns 1099790 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62556730ns 1099793 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62557014ns 1099798 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62557298ns 1099803 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62557582ns 1099808 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62558037ns 1099816 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62558208ns 1099819 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62558492ns 1099824 1a110850 fd5ff06f jal x0, -44 +62558776ns 1099829 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62559060ns 1099834 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62559458ns 1099841 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62559628ns 1099844 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62560083ns 1099852 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62560253ns 1099855 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62560538ns 1099860 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62560822ns 1099865 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62561106ns 1099870 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62561561ns 1099878 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62561731ns 1099881 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62562015ns 1099886 1a110850 fd5ff06f jal x0, -44 +62562299ns 1099891 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62562584ns 1099896 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62562981ns 1099903 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62563152ns 1099906 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62563607ns 1099914 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62563777ns 1099917 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62564061ns 1099922 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62564345ns 1099927 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62564630ns 1099932 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62565084ns 1099940 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62565255ns 1099943 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62565539ns 1099948 1a110850 fd5ff06f jal x0, -44 +62565823ns 1099953 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62566107ns 1099958 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62566505ns 1099965 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62566675ns 1099968 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62567130ns 1099976 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62567301ns 1099979 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62567585ns 1099984 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62567869ns 1099989 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62568153ns 1099994 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62568608ns 1100002 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62568778ns 1100005 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62569062ns 1100010 1a110850 fd5ff06f jal x0, -44 +62569347ns 1100015 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62569631ns 1100020 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62570029ns 1100027 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62570199ns 1100030 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62570654ns 1100038 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62570824ns 1100041 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62571108ns 1100046 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62571393ns 1100051 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62571677ns 1100056 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62572131ns 1100064 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62572302ns 1100067 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62572586ns 1100072 1a110850 fd5ff06f jal x0, -44 +62572870ns 1100077 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62573154ns 1100082 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62573552ns 1100089 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62573723ns 1100092 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62574177ns 1100100 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62574348ns 1100103 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62574632ns 1100108 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62574916ns 1100113 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62575200ns 1100118 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62575655ns 1100126 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62575825ns 1100129 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62576110ns 1100134 1a110850 fd5ff06f jal x0, -44 +62576394ns 1100139 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62576678ns 1100144 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62577076ns 1100151 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62577246ns 1100154 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62577701ns 1100162 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62577871ns 1100165 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62578156ns 1100170 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62578440ns 1100175 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62578724ns 1100180 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62579179ns 1100188 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62579349ns 1100191 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62579633ns 1100196 1a110850 fd5ff06f jal x0, -44 +62579917ns 1100201 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62580202ns 1100206 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62580599ns 1100213 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62580770ns 1100216 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62581224ns 1100224 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62581395ns 1100227 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62581679ns 1100232 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62581963ns 1100237 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62582247ns 1100242 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62582702ns 1100250 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62582873ns 1100253 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62583157ns 1100258 1a110850 fd5ff06f jal x0, -44 +62583441ns 1100263 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62583725ns 1100268 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62584123ns 1100275 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62584293ns 1100278 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62584748ns 1100286 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62584919ns 1100289 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62585203ns 1100294 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62585487ns 1100299 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62585771ns 1100304 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62586226ns 1100312 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62586396ns 1100315 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62586680ns 1100320 1a110850 fd5ff06f jal x0, -44 +62586965ns 1100325 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62587249ns 1100330 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62587647ns 1100337 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62587817ns 1100340 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62588272ns 1100348 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62588442ns 1100351 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62588726ns 1100356 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62589010ns 1100361 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62589295ns 1100366 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62589749ns 1100374 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62589920ns 1100377 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62590204ns 1100382 1a110850 fd5ff06f jal x0, -44 +62590488ns 1100387 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62590772ns 1100392 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62591170ns 1100399 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62591341ns 1100402 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62591795ns 1100410 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62591966ns 1100413 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62592250ns 1100418 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62592534ns 1100423 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62592818ns 1100428 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62593273ns 1100436 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62593443ns 1100439 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62593728ns 1100444 1a110850 fd5ff06f jal x0, -44 +62594012ns 1100449 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62594296ns 1100454 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62594694ns 1100461 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62594864ns 1100464 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62595319ns 1100472 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62595489ns 1100475 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62595773ns 1100480 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62596058ns 1100485 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62596342ns 1100490 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62596796ns 1100498 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62596967ns 1100501 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62597251ns 1100506 1a110850 fd5ff06f jal x0, -44 +62597535ns 1100511 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62597819ns 1100516 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62598217ns 1100523 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62598388ns 1100526 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62598842ns 1100534 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62599013ns 1100537 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62599297ns 1100542 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62599581ns 1100547 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62599865ns 1100552 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62600320ns 1100560 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62600491ns 1100563 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62600775ns 1100568 1a110850 fd5ff06f jal x0, -44 +62601059ns 1100573 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62601343ns 1100578 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62601741ns 1100585 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62601911ns 1100588 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62602366ns 1100596 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62602536ns 1100599 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62602821ns 1100604 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62603105ns 1100609 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62603389ns 1100614 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62603844ns 1100622 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62604014ns 1100625 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62604298ns 1100630 1a110850 fd5ff06f jal x0, -44 +62604582ns 1100635 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62604867ns 1100640 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62605264ns 1100647 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62605435ns 1100650 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62605890ns 1100658 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62606060ns 1100661 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62606344ns 1100666 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62606628ns 1100671 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62606913ns 1100676 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62607367ns 1100684 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62607538ns 1100687 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62607822ns 1100692 1a110850 fd5ff06f jal x0, -44 +62608106ns 1100697 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62608390ns 1100702 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62608788ns 1100709 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62608959ns 1100712 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62609413ns 1100720 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62609584ns 1100723 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62609868ns 1100728 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62610152ns 1100733 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62610436ns 1100738 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62610891ns 1100746 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62611061ns 1100749 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62611345ns 1100754 1a110850 fd5ff06f jal x0, -44 +62611630ns 1100759 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62611914ns 1100764 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62612312ns 1100771 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62612482ns 1100774 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62612937ns 1100782 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62613107ns 1100785 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62613391ns 1100790 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62613676ns 1100795 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62613960ns 1100800 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62614414ns 1100808 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62614585ns 1100811 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62614869ns 1100816 1a110850 fd5ff06f jal x0, -44 +62615153ns 1100821 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62615437ns 1100826 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62615835ns 1100833 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62616006ns 1100836 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62616460ns 1100844 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62616631ns 1100847 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62616915ns 1100852 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62617199ns 1100857 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62617483ns 1100862 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62617938ns 1100870 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62618108ns 1100873 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62618393ns 1100878 1a110850 fd5ff06f jal x0, -44 +62618677ns 1100883 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62618961ns 1100888 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62619359ns 1100895 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62619529ns 1100898 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62619984ns 1100906 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62620154ns 1100909 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62620439ns 1100914 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62620723ns 1100919 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62621007ns 1100924 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62621462ns 1100932 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62621632ns 1100935 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62621916ns 1100940 1a110850 fd5ff06f jal x0, -44 +62622200ns 1100945 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62622485ns 1100950 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62622882ns 1100957 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62623053ns 1100960 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62623507ns 1100968 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62623678ns 1100971 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62623962ns 1100976 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62624246ns 1100981 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62624530ns 1100986 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62624985ns 1100994 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62625156ns 1100997 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62625440ns 1101002 1a110850 fd5ff06f jal x0, -44 +62625724ns 1101007 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62626008ns 1101012 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62626406ns 1101019 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62626576ns 1101022 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62627031ns 1101030 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62627202ns 1101033 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62627486ns 1101038 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62627770ns 1101043 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62628054ns 1101048 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62628509ns 1101056 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62628679ns 1101059 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62628963ns 1101064 1a110850 fd5ff06f jal x0, -44 +62629248ns 1101069 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62629532ns 1101074 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62629930ns 1101081 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62630100ns 1101084 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62630555ns 1101092 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62630725ns 1101095 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62631009ns 1101100 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62631293ns 1101105 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62631578ns 1101110 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62632032ns 1101118 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62632203ns 1101121 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62632487ns 1101126 1a110850 fd5ff06f jal x0, -44 +62632771ns 1101131 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62633055ns 1101136 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62633453ns 1101143 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62633624ns 1101146 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62634078ns 1101154 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62634249ns 1101157 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62634533ns 1101162 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62634817ns 1101167 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62635101ns 1101172 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62635556ns 1101180 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62635726ns 1101183 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62636011ns 1101188 1a110850 fd5ff06f jal x0, -44 +62636295ns 1101193 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62636579ns 1101198 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62636977ns 1101205 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62637147ns 1101208 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62637602ns 1101216 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62637772ns 1101219 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62638056ns 1101224 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62638341ns 1101229 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62638625ns 1101234 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62639079ns 1101242 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62639250ns 1101245 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62639534ns 1101250 1a110850 fd5ff06f jal x0, -44 +62639818ns 1101255 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62640102ns 1101260 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62640500ns 1101267 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62640671ns 1101270 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62641125ns 1101278 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62641296ns 1101281 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62641580ns 1101286 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62641864ns 1101291 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62642148ns 1101296 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62642603ns 1101304 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62642774ns 1101307 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62643058ns 1101312 1a110850 fd5ff06f jal x0, -44 +62643342ns 1101317 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62643626ns 1101322 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62644024ns 1101329 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62644194ns 1101332 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62644649ns 1101340 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62644819ns 1101343 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62645104ns 1101348 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62645388ns 1101353 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62645672ns 1101358 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62646127ns 1101366 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62646297ns 1101369 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62646581ns 1101374 1a110850 fd5ff06f jal x0, -44 +62646865ns 1101379 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62647150ns 1101384 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62647547ns 1101391 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62647718ns 1101394 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62648173ns 1101402 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62648343ns 1101405 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62648627ns 1101410 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62648911ns 1101415 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62649196ns 1101420 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62649650ns 1101428 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62649821ns 1101431 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62650105ns 1101436 1a110850 fd5ff06f jal x0, -44 +62650389ns 1101441 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62650673ns 1101446 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62651071ns 1101453 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62651242ns 1101456 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62651696ns 1101464 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62651867ns 1101467 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62652151ns 1101472 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62652435ns 1101477 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62652719ns 1101482 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62653174ns 1101490 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62653344ns 1101493 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62653628ns 1101498 1a110850 fd5ff06f jal x0, -44 +62653913ns 1101503 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62654197ns 1101508 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62654595ns 1101515 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62654765ns 1101518 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62655220ns 1101526 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62655390ns 1101529 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62655674ns 1101534 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62655959ns 1101539 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62656243ns 1101544 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62656697ns 1101552 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62656868ns 1101555 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62657152ns 1101560 1a110850 fd5ff06f jal x0, -44 +62657436ns 1101565 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62657720ns 1101570 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62658118ns 1101577 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62658289ns 1101580 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62658743ns 1101588 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62658914ns 1101591 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62659198ns 1101596 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62659482ns 1101601 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62659766ns 1101606 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62660221ns 1101614 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62660391ns 1101617 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62660676ns 1101622 1a110850 fd5ff06f jal x0, -44 +62660960ns 1101627 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62661244ns 1101632 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62661642ns 1101639 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62661812ns 1101642 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62662267ns 1101650 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62662437ns 1101653 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62662722ns 1101658 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62663006ns 1101663 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62663290ns 1101668 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62663745ns 1101676 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62663915ns 1101679 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62664199ns 1101684 1a110850 fd5ff06f jal x0, -44 +62664483ns 1101689 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62664768ns 1101694 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62665165ns 1101701 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62665336ns 1101704 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62665791ns 1101712 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62665961ns 1101715 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62666245ns 1101720 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62666529ns 1101725 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62666813ns 1101730 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62667268ns 1101738 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62667439ns 1101741 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62667723ns 1101746 1a110850 fd5ff06f jal x0, -44 +62668007ns 1101751 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62668291ns 1101756 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62668689ns 1101763 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62668859ns 1101766 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62669314ns 1101774 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62669485ns 1101777 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62669769ns 1101782 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62670053ns 1101787 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62670337ns 1101792 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62670792ns 1101800 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62670962ns 1101803 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62671246ns 1101808 1a110850 fd5ff06f jal x0, -44 +62671531ns 1101813 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62671815ns 1101818 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62672213ns 1101825 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62672383ns 1101828 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62672838ns 1101836 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62673008ns 1101839 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62673292ns 1101844 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62673576ns 1101849 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62673861ns 1101854 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62674315ns 1101862 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62674486ns 1101865 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62674770ns 1101870 1a110850 fd5ff06f jal x0, -44 +62675054ns 1101875 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62675338ns 1101880 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62675736ns 1101887 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62675907ns 1101890 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62676361ns 1101898 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62676532ns 1101901 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62676816ns 1101906 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62677100ns 1101911 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62677384ns 1101916 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62677839ns 1101924 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62678009ns 1101927 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62678294ns 1101932 1a110850 fd5ff06f jal x0, -44 +62678578ns 1101937 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62678862ns 1101942 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62679260ns 1101949 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62679430ns 1101952 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62679885ns 1101960 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62680055ns 1101963 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62680339ns 1101968 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62680624ns 1101973 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62680908ns 1101978 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62681362ns 1101986 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62681533ns 1101989 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62681817ns 1101994 1a110850 fd5ff06f jal x0, -44 +62682101ns 1101999 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62682385ns 1102004 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62682783ns 1102011 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62682954ns 1102014 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62683408ns 1102022 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62683579ns 1102025 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62683863ns 1102030 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62684147ns 1102035 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62684431ns 1102040 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62684886ns 1102048 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62685057ns 1102051 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62685341ns 1102056 1a110850 fd5ff06f jal x0, -44 +62685625ns 1102061 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62685909ns 1102066 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62686307ns 1102073 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62686477ns 1102076 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62686932ns 1102084 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62687103ns 1102087 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62687387ns 1102092 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62687671ns 1102097 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62687955ns 1102102 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62688410ns 1102110 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62688580ns 1102113 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62688864ns 1102118 1a110850 fd5ff06f jal x0, -44 +62689148ns 1102123 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62689433ns 1102128 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62689830ns 1102135 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62690001ns 1102138 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62690456ns 1102146 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62690626ns 1102149 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62690910ns 1102154 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62691194ns 1102159 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62691479ns 1102164 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62691933ns 1102172 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62692104ns 1102175 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62692388ns 1102180 1a110850 fd5ff06f jal x0, -44 +62692672ns 1102185 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62692956ns 1102190 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62693354ns 1102197 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62693525ns 1102200 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62693979ns 1102208 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62694150ns 1102211 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62694434ns 1102216 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62694718ns 1102221 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62695002ns 1102226 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62695457ns 1102234 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62695627ns 1102237 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62695911ns 1102242 1a110850 fd5ff06f jal x0, -44 +62696196ns 1102247 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62696480ns 1102252 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62696878ns 1102259 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62697048ns 1102262 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62697503ns 1102270 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62697673ns 1102273 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62697957ns 1102278 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62698242ns 1102283 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62698526ns 1102288 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62698980ns 1102296 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62699151ns 1102299 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62699435ns 1102304 1a110850 fd5ff06f jal x0, -44 +62699719ns 1102309 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62700003ns 1102314 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62700401ns 1102321 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62700572ns 1102324 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62701026ns 1102332 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62701197ns 1102335 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62701481ns 1102340 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62701765ns 1102345 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62702049ns 1102350 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62702504ns 1102358 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62702674ns 1102361 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62702959ns 1102366 1a110850 fd5ff06f jal x0, -44 +62703243ns 1102371 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62703527ns 1102376 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62703925ns 1102383 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62704095ns 1102386 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62704550ns 1102394 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62704720ns 1102397 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62705005ns 1102402 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62705289ns 1102407 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62705573ns 1102412 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62706028ns 1102420 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62706198ns 1102423 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62706482ns 1102428 1a110850 fd5ff06f jal x0, -44 +62706766ns 1102433 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62707051ns 1102438 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62707448ns 1102445 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62707619ns 1102448 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62708074ns 1102456 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62708244ns 1102459 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62708528ns 1102464 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62708812ns 1102469 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62709096ns 1102474 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62709551ns 1102482 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62709722ns 1102485 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62710006ns 1102490 1a110850 fd5ff06f jal x0, -44 +62710290ns 1102495 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62710574ns 1102500 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62710972ns 1102507 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62711142ns 1102510 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62711597ns 1102518 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62711768ns 1102521 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62712052ns 1102526 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62712336ns 1102531 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62712620ns 1102536 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62713075ns 1102544 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62713245ns 1102547 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62713529ns 1102552 1a110850 fd5ff06f jal x0, -44 +62713814ns 1102557 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62714098ns 1102562 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62714496ns 1102569 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62714666ns 1102572 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62715121ns 1102580 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62715291ns 1102583 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62715575ns 1102588 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62715859ns 1102593 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62716144ns 1102598 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62716598ns 1102606 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62716769ns 1102609 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62717053ns 1102614 1a110850 fd5ff06f jal x0, -44 +62717337ns 1102619 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62717621ns 1102624 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62718019ns 1102631 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62718190ns 1102634 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62718644ns 1102642 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62718815ns 1102645 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62719099ns 1102650 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62719383ns 1102655 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62719667ns 1102660 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62720122ns 1102668 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62720292ns 1102671 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62720577ns 1102676 1a110850 fd5ff06f jal x0, -44 +62720861ns 1102681 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62721145ns 1102686 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62721543ns 1102693 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62721713ns 1102696 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62722168ns 1102704 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62722338ns 1102707 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62722623ns 1102712 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62722907ns 1102717 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62723191ns 1102722 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62723645ns 1102730 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62723816ns 1102733 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62724100ns 1102738 1a110850 fd5ff06f jal x0, -44 +62724384ns 1102743 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62724668ns 1102748 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62725066ns 1102755 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62725237ns 1102758 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62725691ns 1102766 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62725862ns 1102769 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62726146ns 1102774 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62726430ns 1102779 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62726714ns 1102784 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62727169ns 1102792 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62727340ns 1102795 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62727624ns 1102800 1a110850 fd5ff06f jal x0, -44 +62727908ns 1102805 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62728192ns 1102810 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62728590ns 1102817 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62728760ns 1102820 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62729215ns 1102828 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62729386ns 1102831 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62729670ns 1102836 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62729954ns 1102841 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62730238ns 1102846 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62730693ns 1102854 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62730863ns 1102857 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62731147ns 1102862 1a110850 fd5ff06f jal x0, -44 +62731431ns 1102867 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62731716ns 1102872 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62732113ns 1102879 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62732284ns 1102882 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62732739ns 1102890 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62732909ns 1102893 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62733193ns 1102898 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62733477ns 1102903 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62733762ns 1102908 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62734216ns 1102916 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62734387ns 1102919 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62734671ns 1102924 1a110850 fd5ff06f jal x0, -44 +62734955ns 1102929 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62735239ns 1102934 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62735637ns 1102941 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62735808ns 1102944 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62736262ns 1102952 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62736433ns 1102955 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62736717ns 1102960 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62737001ns 1102965 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62737285ns 1102970 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62737740ns 1102978 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62737910ns 1102981 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62738194ns 1102986 1a110850 fd5ff06f jal x0, -44 +62738479ns 1102991 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62738763ns 1102996 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62739161ns 1103003 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62739331ns 1103006 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62739786ns 1103014 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62739956ns 1103017 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62740240ns 1103022 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62740525ns 1103027 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62740809ns 1103032 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62741263ns 1103040 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62741434ns 1103043 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62741718ns 1103048 1a110850 fd5ff06f jal x0, -44 +62742002ns 1103053 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62742286ns 1103058 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62742684ns 1103065 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62742855ns 1103068 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62743309ns 1103076 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62743480ns 1103079 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62743764ns 1103084 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62744048ns 1103089 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62744332ns 1103094 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62744787ns 1103102 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62744957ns 1103105 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62745242ns 1103110 1a110850 fd5ff06f jal x0, -44 +62745526ns 1103115 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62745810ns 1103120 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62746208ns 1103127 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62746378ns 1103130 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62746833ns 1103138 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62747003ns 1103141 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62747288ns 1103146 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62747572ns 1103151 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62747856ns 1103156 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62748311ns 1103164 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62748481ns 1103167 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62748765ns 1103172 1a110850 fd5ff06f jal x0, -44 +62749049ns 1103177 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62749334ns 1103182 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62749731ns 1103189 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62749902ns 1103192 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62750357ns 1103200 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62750527ns 1103203 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62750811ns 1103208 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62751095ns 1103213 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62751379ns 1103218 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62751834ns 1103226 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62752005ns 1103229 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62752289ns 1103234 1a110850 fd5ff06f jal x0, -44 +62752573ns 1103239 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62752857ns 1103244 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62753255ns 1103251 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62753425ns 1103254 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62753880ns 1103262 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62754051ns 1103265 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62754335ns 1103270 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62754619ns 1103275 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62754903ns 1103280 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62755358ns 1103288 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62755528ns 1103291 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62755812ns 1103296 1a110850 fd5ff06f jal x0, -44 +62756097ns 1103301 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62756381ns 1103306 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62756779ns 1103313 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62756949ns 1103316 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62757404ns 1103324 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62757574ns 1103327 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62757858ns 1103332 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62758143ns 1103337 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62758427ns 1103342 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62758881ns 1103350 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62759052ns 1103353 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62759336ns 1103358 1a110850 fd5ff06f jal x0, -44 +62759620ns 1103363 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62759904ns 1103368 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62760302ns 1103375 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62760473ns 1103378 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62760927ns 1103386 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62761098ns 1103389 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62761382ns 1103394 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62761666ns 1103399 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62761950ns 1103404 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62762405ns 1103412 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62762575ns 1103415 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62762860ns 1103420 1a110850 fd5ff06f jal x0, -44 +62763144ns 1103425 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62763428ns 1103430 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62763826ns 1103437 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62763996ns 1103440 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62764451ns 1103448 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62764621ns 1103451 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62764906ns 1103456 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62765190ns 1103461 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62765474ns 1103466 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62765928ns 1103474 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62766099ns 1103477 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62766383ns 1103482 1a110850 fd5ff06f jal x0, -44 +62766667ns 1103487 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62766951ns 1103492 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62767349ns 1103499 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62767520ns 1103502 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62767974ns 1103510 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62768145ns 1103513 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62768429ns 1103518 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62768713ns 1103523 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62768997ns 1103528 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62769452ns 1103536 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62769623ns 1103539 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62769907ns 1103544 1a110850 fd5ff06f jal x0, -44 +62770191ns 1103549 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62770475ns 1103554 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62770873ns 1103561 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62771043ns 1103564 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62771498ns 1103572 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62771669ns 1103575 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62771953ns 1103580 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62772237ns 1103585 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62772521ns 1103590 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62772976ns 1103598 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62773146ns 1103601 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62773430ns 1103606 1a110850 fd5ff06f jal x0, -44 +62773714ns 1103611 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62773999ns 1103616 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62774396ns 1103623 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62774567ns 1103626 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62775022ns 1103634 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62775192ns 1103637 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62775476ns 1103642 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62775760ns 1103647 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62776045ns 1103652 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62776499ns 1103660 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62776670ns 1103663 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62776954ns 1103668 1a110850 fd5ff06f jal x0, -44 +62777238ns 1103673 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62777522ns 1103678 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62777920ns 1103685 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62778091ns 1103688 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62778545ns 1103696 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62778716ns 1103699 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62779000ns 1103704 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62779284ns 1103709 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62779568ns 1103714 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62780023ns 1103722 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62780193ns 1103725 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62780477ns 1103730 1a110850 fd5ff06f jal x0, -44 +62780762ns 1103735 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62781046ns 1103740 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62781444ns 1103747 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62781614ns 1103750 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62782069ns 1103758 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62782239ns 1103761 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62782523ns 1103766 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62782808ns 1103771 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62783092ns 1103776 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62783546ns 1103784 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62783717ns 1103787 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62784001ns 1103792 1a110850 fd5ff06f jal x0, -44 +62784285ns 1103797 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62784569ns 1103802 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62784967ns 1103809 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62785138ns 1103812 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62785592ns 1103820 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62785763ns 1103823 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62786047ns 1103828 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62786331ns 1103833 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62786615ns 1103838 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62787070ns 1103846 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62787240ns 1103849 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62787525ns 1103854 1a110850 fd5ff06f jal x0, -44 +62787809ns 1103859 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62788093ns 1103864 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62788491ns 1103871 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62788661ns 1103874 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62789116ns 1103882 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62789286ns 1103885 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62789571ns 1103890 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62789855ns 1103895 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62790139ns 1103900 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62790594ns 1103908 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62790764ns 1103911 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62791048ns 1103916 1a110850 fd5ff06f jal x0, -44 +62791332ns 1103921 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62791617ns 1103926 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62792014ns 1103933 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62792185ns 1103936 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62792640ns 1103944 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62792810ns 1103947 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62793094ns 1103952 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62793378ns 1103957 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62793663ns 1103962 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62794117ns 1103970 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62794288ns 1103973 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62794572ns 1103978 1a110850 fd5ff06f jal x0, -44 +62794856ns 1103983 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62795140ns 1103988 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62795538ns 1103995 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62795708ns 1103998 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62796163ns 1104006 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62796334ns 1104009 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62796618ns 1104014 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62796902ns 1104019 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62797186ns 1104024 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62797641ns 1104032 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62797811ns 1104035 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62798095ns 1104040 1a110850 fd5ff06f jal x0, -44 +62798380ns 1104045 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62798664ns 1104050 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62799062ns 1104057 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62799232ns 1104060 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62799687ns 1104068 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62799857ns 1104071 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62800141ns 1104076 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62800426ns 1104081 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62800710ns 1104086 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62801164ns 1104094 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62801335ns 1104097 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62801619ns 1104102 1a110850 fd5ff06f jal x0, -44 +62801903ns 1104107 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62802187ns 1104112 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62802585ns 1104119 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62802756ns 1104122 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62803210ns 1104130 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62803381ns 1104133 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62803665ns 1104138 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62803949ns 1104143 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62804233ns 1104148 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62804688ns 1104156 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62804858ns 1104159 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62805143ns 1104164 1a110850 fd5ff06f jal x0, -44 +62805427ns 1104169 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62805711ns 1104174 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62806109ns 1104181 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62806279ns 1104184 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62806734ns 1104192 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62806904ns 1104195 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62807189ns 1104200 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62807473ns 1104205 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62807757ns 1104210 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62808211ns 1104218 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62808382ns 1104221 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62808666ns 1104226 1a110850 fd5ff06f jal x0, -44 +62808950ns 1104231 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62809234ns 1104236 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62809632ns 1104243 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62809803ns 1104246 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62810257ns 1104254 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62810428ns 1104257 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62810712ns 1104262 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62810996ns 1104267 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62811280ns 1104272 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62811735ns 1104280 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62811906ns 1104283 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62812190ns 1104288 1a110850 fd5ff06f jal x0, -44 +62812474ns 1104293 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62812758ns 1104298 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62813156ns 1104305 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62813326ns 1104308 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62813781ns 1104316 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62813952ns 1104319 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62814236ns 1104324 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62814520ns 1104329 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62814804ns 1104334 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62815259ns 1104342 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62815429ns 1104345 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62815713ns 1104350 1a110850 fd5ff06f jal x0, -44 +62815997ns 1104355 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62816282ns 1104360 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62816679ns 1104367 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62816850ns 1104370 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62817305ns 1104378 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62817475ns 1104381 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62817759ns 1104386 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62818043ns 1104391 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62818328ns 1104396 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62818782ns 1104404 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62818953ns 1104407 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62819237ns 1104412 1a110850 fd5ff06f jal x0, -44 +62819521ns 1104417 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62819805ns 1104422 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62820203ns 1104429 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62820374ns 1104432 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62820828ns 1104440 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62820999ns 1104443 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62821283ns 1104448 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62821567ns 1104453 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62821851ns 1104458 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62822306ns 1104466 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62822476ns 1104469 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62822760ns 1104474 1a110850 fd5ff06f jal x0, -44 +62823045ns 1104479 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62823329ns 1104484 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62823727ns 1104491 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62823897ns 1104494 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62824352ns 1104502 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62824522ns 1104505 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62824806ns 1104510 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62825091ns 1104515 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62825375ns 1104520 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62825829ns 1104528 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62826000ns 1104531 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62826284ns 1104536 1a110850 fd5ff06f jal x0, -44 +62826568ns 1104541 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62826852ns 1104546 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62827250ns 1104553 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62827421ns 1104556 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62827875ns 1104564 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62828046ns 1104567 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62828330ns 1104572 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62828614ns 1104577 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62828898ns 1104582 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62829353ns 1104590 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62829523ns 1104593 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62829808ns 1104598 1a110850 fd5ff06f jal x0, -44 +62830092ns 1104603 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62830376ns 1104608 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62830774ns 1104615 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62830944ns 1104618 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62831399ns 1104626 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62831569ns 1104629 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62831854ns 1104634 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62832138ns 1104639 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62832422ns 1104644 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62832877ns 1104652 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62833047ns 1104655 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62833331ns 1104660 1a110850 fd5ff06f jal x0, -44 +62833615ns 1104665 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62833900ns 1104670 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62834297ns 1104677 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62834468ns 1104680 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62834923ns 1104688 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62835093ns 1104691 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62835377ns 1104696 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62835661ns 1104701 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62835946ns 1104706 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62836400ns 1104714 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62836571ns 1104717 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62836855ns 1104722 1a110850 fd5ff06f jal x0, -44 +62837139ns 1104727 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62837423ns 1104732 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62837821ns 1104739 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62837991ns 1104742 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62838446ns 1104750 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62838617ns 1104753 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62838901ns 1104758 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62839185ns 1104763 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62839469ns 1104768 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62839924ns 1104776 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62840094ns 1104779 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62840378ns 1104784 1a110850 fd5ff06f jal x0, -44 +62840663ns 1104789 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62840947ns 1104794 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62841345ns 1104801 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62841515ns 1104804 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62841970ns 1104812 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62842140ns 1104815 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62842424ns 1104820 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62842709ns 1104825 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62842993ns 1104830 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62843447ns 1104838 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62843618ns 1104841 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62843902ns 1104846 1a110850 fd5ff06f jal x0, -44 +62844186ns 1104851 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62844470ns 1104856 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62844868ns 1104863 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62845039ns 1104866 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62845493ns 1104874 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62845664ns 1104877 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62845948ns 1104882 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62846232ns 1104887 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62846516ns 1104892 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62846971ns 1104900 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62847141ns 1104903 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62847426ns 1104908 1a110850 fd5ff06f jal x0, -44 +62847710ns 1104913 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62847994ns 1104918 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62848392ns 1104925 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62848562ns 1104928 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62849017ns 1104936 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62849187ns 1104939 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62849472ns 1104944 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62849756ns 1104949 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62850040ns 1104954 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62850495ns 1104962 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62850665ns 1104965 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62850949ns 1104970 1a110850 fd5ff06f jal x0, -44 +62851233ns 1104975 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62851517ns 1104980 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62851915ns 1104987 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62852086ns 1104990 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62852540ns 1104998 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62852711ns 1105001 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62852995ns 1105006 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62853279ns 1105011 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62853563ns 1105016 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62854018ns 1105024 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62854189ns 1105027 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62854473ns 1105032 1a110850 fd5ff06f jal x0, -44 +62854757ns 1105037 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62855041ns 1105042 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62855439ns 1105049 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62855609ns 1105052 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62856064ns 1105060 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62856235ns 1105063 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62856519ns 1105068 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62856803ns 1105073 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62857087ns 1105078 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62857542ns 1105086 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62857712ns 1105089 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62857996ns 1105094 1a110850 fd5ff06f jal x0, -44 +62858280ns 1105099 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62858565ns 1105104 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62858962ns 1105111 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62859133ns 1105114 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62859588ns 1105122 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62859758ns 1105125 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62860042ns 1105130 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62860326ns 1105135 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62860611ns 1105140 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62861065ns 1105148 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62861236ns 1105151 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62861520ns 1105156 1a110850 fd5ff06f jal x0, -44 +62861804ns 1105161 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62862088ns 1105166 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62862486ns 1105173 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62862657ns 1105176 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62863111ns 1105184 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62863282ns 1105187 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62863566ns 1105192 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62863850ns 1105197 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62864134ns 1105202 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62864589ns 1105210 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62864759ns 1105213 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62865043ns 1105218 1a110850 fd5ff06f jal x0, -44 +62865328ns 1105223 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62865612ns 1105228 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62866010ns 1105235 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62866180ns 1105238 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62866635ns 1105246 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62866805ns 1105249 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62867089ns 1105254 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62867374ns 1105259 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62867658ns 1105264 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62868112ns 1105272 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62868283ns 1105275 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62868567ns 1105280 1a110850 fd5ff06f jal x0, -44 +62868851ns 1105285 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62869135ns 1105290 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62869533ns 1105297 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62869704ns 1105300 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62870158ns 1105308 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62870329ns 1105311 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62870613ns 1105316 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62870897ns 1105321 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62871181ns 1105326 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62871636ns 1105334 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62871807ns 1105337 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62872091ns 1105342 1a110850 fd5ff06f jal x0, -44 +62872375ns 1105347 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62872659ns 1105352 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62873057ns 1105359 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62873227ns 1105362 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62873682ns 1105370 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62873852ns 1105373 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62874137ns 1105378 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62874421ns 1105383 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62874705ns 1105388 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62875160ns 1105396 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62875330ns 1105399 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62875614ns 1105404 1a110850 fd5ff06f jal x0, -44 +62875898ns 1105409 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62876183ns 1105414 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62876580ns 1105421 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62876751ns 1105424 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62877206ns 1105432 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62877376ns 1105435 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62877660ns 1105440 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62877944ns 1105445 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62878229ns 1105450 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62878683ns 1105458 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62878854ns 1105461 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62879138ns 1105466 1a110850 fd5ff06f jal x0, -44 +62879422ns 1105471 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62879706ns 1105476 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62880104ns 1105483 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62880274ns 1105486 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62880729ns 1105494 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62880900ns 1105497 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62881184ns 1105502 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62881468ns 1105507 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62881752ns 1105512 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62882207ns 1105520 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62882377ns 1105523 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62882661ns 1105528 1a110850 fd5ff06f jal x0, -44 +62882946ns 1105533 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62883230ns 1105538 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62883628ns 1105545 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62883798ns 1105548 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62884253ns 1105556 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62884423ns 1105559 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62884707ns 1105564 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62884992ns 1105569 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62885276ns 1105574 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62885730ns 1105582 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62885901ns 1105585 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62886185ns 1105590 1a110850 fd5ff06f jal x0, -44 +62886469ns 1105595 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62886753ns 1105600 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62887151ns 1105607 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62887322ns 1105610 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62887776ns 1105618 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62887947ns 1105621 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62888231ns 1105626 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62888515ns 1105631 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62888799ns 1105636 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62889254ns 1105644 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62889424ns 1105647 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62889709ns 1105652 1a110850 fd5ff06f jal x0, -44 +62889993ns 1105657 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62890277ns 1105662 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62890675ns 1105669 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62890845ns 1105672 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62891300ns 1105680 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62891470ns 1105683 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62891755ns 1105688 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62892039ns 1105693 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62892323ns 1105698 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62892778ns 1105706 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62892948ns 1105709 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62893232ns 1105714 1a110850 fd5ff06f jal x0, -44 +62893516ns 1105719 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62893800ns 1105724 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62894198ns 1105731 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62894369ns 1105734 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62894823ns 1105742 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62894994ns 1105745 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62895278ns 1105750 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62895562ns 1105755 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62895846ns 1105760 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62896301ns 1105768 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62896472ns 1105771 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62896756ns 1105776 1a110850 fd5ff06f jal x0, -44 +62897040ns 1105781 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62897324ns 1105786 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62897722ns 1105793 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62897892ns 1105796 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62898347ns 1105804 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62898518ns 1105807 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62898802ns 1105812 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62899086ns 1105817 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62899370ns 1105822 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62899825ns 1105830 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62899995ns 1105833 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62900279ns 1105838 1a110850 fd5ff06f jal x0, -44 +62900563ns 1105843 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62900848ns 1105848 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62901245ns 1105855 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62901416ns 1105858 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62901871ns 1105866 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62902041ns 1105869 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62902325ns 1105874 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62902609ns 1105879 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62902894ns 1105884 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62903348ns 1105892 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62903519ns 1105895 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62903803ns 1105900 1a110850 fd5ff06f jal x0, -44 +62904087ns 1105905 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62904371ns 1105910 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62904769ns 1105917 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62904940ns 1105920 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62905394ns 1105928 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62905565ns 1105931 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62905849ns 1105936 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62906133ns 1105941 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62906417ns 1105946 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62906872ns 1105954 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62907042ns 1105957 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62907327ns 1105962 1a110850 fd5ff06f jal x0, -44 +62907611ns 1105967 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62907895ns 1105972 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62908293ns 1105979 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62908463ns 1105982 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62908918ns 1105990 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62909088ns 1105993 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62909372ns 1105998 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62909657ns 1106003 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62909941ns 1106008 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62910395ns 1106016 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62910566ns 1106019 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62910850ns 1106024 1a110850 fd5ff06f jal x0, -44 +62911134ns 1106029 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62911418ns 1106034 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62911816ns 1106041 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62911987ns 1106044 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62912441ns 1106052 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62912612ns 1106055 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62912896ns 1106060 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62913180ns 1106065 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62913464ns 1106070 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62913919ns 1106078 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62914090ns 1106081 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62914374ns 1106086 1a110850 fd5ff06f jal x0, -44 +62914658ns 1106091 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62914942ns 1106096 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62915340ns 1106103 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62915510ns 1106106 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62915965ns 1106114 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62916135ns 1106117 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62916420ns 1106122 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62916704ns 1106127 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62916988ns 1106132 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62917443ns 1106140 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62917613ns 1106143 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62917897ns 1106148 1a110850 fd5ff06f jal x0, -44 +62918181ns 1106153 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62918466ns 1106158 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62918863ns 1106165 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62919034ns 1106168 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62919489ns 1106176 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62919659ns 1106179 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62919943ns 1106184 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62920227ns 1106189 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62920512ns 1106194 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62920966ns 1106202 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62921137ns 1106205 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62921421ns 1106210 1a110850 fd5ff06f jal x0, -44 +62921705ns 1106215 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62921989ns 1106220 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62922387ns 1106227 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62922557ns 1106230 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62923012ns 1106238 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62923183ns 1106241 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62923467ns 1106246 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62923751ns 1106251 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62924035ns 1106256 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62924490ns 1106264 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62924660ns 1106267 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62924944ns 1106272 1a110850 fd5ff06f jal x0, -44 +62925229ns 1106277 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62925513ns 1106282 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62925911ns 1106289 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62926081ns 1106292 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62926536ns 1106300 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62926706ns 1106303 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62926990ns 1106308 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62927275ns 1106313 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62927559ns 1106318 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62928013ns 1106326 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62928184ns 1106329 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62928468ns 1106334 1a110850 fd5ff06f jal x0, -44 +62928752ns 1106339 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62929036ns 1106344 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62929434ns 1106351 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62929605ns 1106354 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62930059ns 1106362 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62930230ns 1106365 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62930514ns 1106370 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62930798ns 1106375 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62931082ns 1106380 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62931537ns 1106388 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62931707ns 1106391 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62931992ns 1106396 1a110850 fd5ff06f jal x0, -44 +62932276ns 1106401 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62932560ns 1106406 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62932958ns 1106413 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62933128ns 1106416 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62933583ns 1106424 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62933753ns 1106427 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62934038ns 1106432 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62934322ns 1106437 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62934606ns 1106442 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62935061ns 1106450 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62935231ns 1106453 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62935515ns 1106458 1a110850 fd5ff06f jal x0, -44 +62935799ns 1106463 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62936083ns 1106468 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62936481ns 1106475 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62936652ns 1106478 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62937106ns 1106486 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62937277ns 1106489 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62937561ns 1106494 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62937845ns 1106499 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62938129ns 1106504 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62938584ns 1106512 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62938755ns 1106515 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62939039ns 1106520 1a110850 fd5ff06f jal x0, -44 +62939323ns 1106525 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62939607ns 1106530 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62940005ns 1106537 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62940175ns 1106540 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62940630ns 1106548 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62940801ns 1106551 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62941085ns 1106556 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62941369ns 1106561 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62941653ns 1106566 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62942108ns 1106574 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62942278ns 1106577 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62942562ns 1106582 1a110850 fd5ff06f jal x0, -44 +62942847ns 1106587 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62943131ns 1106592 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62943528ns 1106599 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62943699ns 1106602 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62944154ns 1106610 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62944324ns 1106613 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62944608ns 1106618 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62944892ns 1106623 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62945177ns 1106628 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62945631ns 1106636 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62945802ns 1106639 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62946086ns 1106644 1a110850 fd5ff06f jal x0, -44 +62946370ns 1106649 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62946654ns 1106654 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62947052ns 1106661 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62947223ns 1106664 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62947677ns 1106672 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62947848ns 1106675 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62948132ns 1106680 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62948416ns 1106685 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62948700ns 1106690 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62949155ns 1106698 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62949325ns 1106701 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62949610ns 1106706 1a110850 fd5ff06f jal x0, -44 +62949894ns 1106711 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62950178ns 1106716 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62950576ns 1106723 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62950746ns 1106726 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62951201ns 1106734 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62951371ns 1106737 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62951655ns 1106742 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62951940ns 1106747 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62952224ns 1106752 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62952678ns 1106760 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62952849ns 1106763 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62953133ns 1106768 1a110850 fd5ff06f jal x0, -44 +62953417ns 1106773 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62953701ns 1106778 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62954099ns 1106785 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62954270ns 1106788 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62954724ns 1106796 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62954895ns 1106799 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62955179ns 1106804 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62955463ns 1106809 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62955747ns 1106814 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62956202ns 1106822 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62956373ns 1106825 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62956657ns 1106830 1a110850 fd5ff06f jal x0, -44 +62956941ns 1106835 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62957225ns 1106840 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62957623ns 1106847 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62957793ns 1106850 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62958248ns 1106858 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62958418ns 1106861 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62958703ns 1106866 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62958987ns 1106871 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62959271ns 1106876 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62959726ns 1106884 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62959896ns 1106887 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62960180ns 1106892 1a110850 fd5ff06f jal x0, -44 +62960464ns 1106897 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62960749ns 1106902 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62961146ns 1106909 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62961317ns 1106912 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62961772ns 1106920 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62961942ns 1106923 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62962226ns 1106928 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62962510ns 1106933 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62962795ns 1106938 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62963249ns 1106946 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62963420ns 1106949 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62963704ns 1106954 1a110850 fd5ff06f jal x0, -44 +62963988ns 1106959 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62964272ns 1106964 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62964670ns 1106971 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62964840ns 1106974 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62965295ns 1106982 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62965466ns 1106985 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62965750ns 1106990 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62966034ns 1106995 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62966318ns 1107000 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62966773ns 1107008 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62966943ns 1107011 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62967227ns 1107016 1a110850 fd5ff06f jal x0, -44 +62967512ns 1107021 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62967796ns 1107026 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62968194ns 1107033 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62968364ns 1107036 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62968819ns 1107044 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62968989ns 1107047 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62969273ns 1107052 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62969558ns 1107057 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62969842ns 1107062 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62970296ns 1107070 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62970467ns 1107073 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62970751ns 1107078 1a110850 fd5ff06f jal x0, -44 +62971035ns 1107083 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62971319ns 1107088 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62971717ns 1107095 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62971888ns 1107098 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62972342ns 1107106 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62972513ns 1107109 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62972797ns 1107114 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62973081ns 1107119 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62973365ns 1107124 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62973820ns 1107132 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62973990ns 1107135 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62974275ns 1107140 1a110850 fd5ff06f jal x0, -44 +62974559ns 1107145 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62974843ns 1107150 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62975241ns 1107157 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62975411ns 1107160 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62975866ns 1107168 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62976036ns 1107171 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62976321ns 1107176 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62976605ns 1107181 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62976889ns 1107186 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62977344ns 1107194 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62977514ns 1107197 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62977798ns 1107202 1a110850 fd5ff06f jal x0, -44 +62978082ns 1107207 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62978367ns 1107212 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62978764ns 1107219 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62978935ns 1107222 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62979389ns 1107230 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62979560ns 1107233 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62979844ns 1107238 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62980128ns 1107243 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62980412ns 1107248 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62980867ns 1107256 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62981038ns 1107259 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62981322ns 1107264 1a110850 fd5ff06f jal x0, -44 +62981606ns 1107269 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62981890ns 1107274 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62982288ns 1107281 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62982458ns 1107284 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62982913ns 1107292 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62983084ns 1107295 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62983368ns 1107300 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62983652ns 1107305 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62983936ns 1107310 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62984391ns 1107318 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62984561ns 1107321 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62984845ns 1107326 1a110850 fd5ff06f jal x0, -44 +62985130ns 1107331 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62985414ns 1107336 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62985811ns 1107343 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62985982ns 1107346 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62986437ns 1107354 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62986607ns 1107357 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62986891ns 1107362 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62987175ns 1107367 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62987460ns 1107372 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62987914ns 1107380 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62988085ns 1107383 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62988369ns 1107388 1a110850 fd5ff06f jal x0, -44 +62988653ns 1107393 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62988937ns 1107398 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62989335ns 1107405 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62989506ns 1107408 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62989960ns 1107416 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62990131ns 1107419 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62990415ns 1107424 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62990699ns 1107429 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62990983ns 1107434 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62991438ns 1107442 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62991608ns 1107445 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62991893ns 1107450 1a110850 fd5ff06f jal x0, -44 +62992177ns 1107455 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62992461ns 1107460 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62992859ns 1107467 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62993029ns 1107470 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62993484ns 1107478 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62993654ns 1107481 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62993938ns 1107486 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62994223ns 1107491 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62994507ns 1107496 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62994961ns 1107504 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62995132ns 1107507 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62995416ns 1107512 1a110850 fd5ff06f jal x0, -44 +62995700ns 1107517 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62995984ns 1107522 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62996382ns 1107529 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62996553ns 1107532 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62997007ns 1107540 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +62997178ns 1107543 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +62997462ns 1107548 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62997746ns 1107553 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +62998030ns 1107558 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +62998485ns 1107566 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +62998656ns 1107569 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +62998940ns 1107574 1a110850 fd5ff06f jal x0, -44 +62999224ns 1107579 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +62999508ns 1107584 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +62999906ns 1107591 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63000076ns 1107594 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63000531ns 1107602 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63000701ns 1107605 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63000986ns 1107610 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63001270ns 1107615 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63001554ns 1107620 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63002009ns 1107628 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63002179ns 1107631 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63002463ns 1107636 1a110850 fd5ff06f jal x0, -44 +63002747ns 1107641 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63003032ns 1107646 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63003429ns 1107653 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63003600ns 1107656 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63004055ns 1107664 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63004225ns 1107667 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63004509ns 1107672 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63004793ns 1107677 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63005078ns 1107682 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63005532ns 1107690 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63005703ns 1107693 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63005987ns 1107698 1a110850 fd5ff06f jal x0, -44 +63006271ns 1107703 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63006555ns 1107708 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63006953ns 1107715 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63007123ns 1107718 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63007578ns 1107726 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63007749ns 1107729 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63008033ns 1107734 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63008317ns 1107739 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63008601ns 1107744 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63009056ns 1107752 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63009226ns 1107755 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63009510ns 1107760 1a110850 fd5ff06f jal x0, -44 +63009795ns 1107765 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63010079ns 1107770 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63010477ns 1107777 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63010647ns 1107780 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63011102ns 1107788 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63011272ns 1107791 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63011556ns 1107796 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63011841ns 1107801 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63012125ns 1107806 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63012579ns 1107814 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63012750ns 1107817 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63013034ns 1107822 1a110850 fd5ff06f jal x0, -44 +63013318ns 1107827 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63013602ns 1107832 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63014000ns 1107839 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63014171ns 1107842 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63014625ns 1107850 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63014796ns 1107853 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63015080ns 1107858 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63015364ns 1107863 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63015648ns 1107868 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63016103ns 1107876 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63016273ns 1107879 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63016558ns 1107884 1a110850 fd5ff06f jal x0, -44 +63016842ns 1107889 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63017126ns 1107894 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63017524ns 1107901 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63017694ns 1107904 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63018149ns 1107912 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63018319ns 1107915 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63018604ns 1107920 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63018888ns 1107925 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63019172ns 1107930 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63019627ns 1107938 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63019797ns 1107941 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63020081ns 1107946 1a110850 fd5ff06f jal x0, -44 +63020365ns 1107951 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63020650ns 1107956 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63021047ns 1107963 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63021218ns 1107966 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63021672ns 1107974 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63021843ns 1107977 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63022127ns 1107982 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63022411ns 1107987 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63022695ns 1107992 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63023150ns 1108000 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63023321ns 1108003 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63023605ns 1108008 1a110850 fd5ff06f jal x0, -44 +63023889ns 1108013 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63024173ns 1108018 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63024571ns 1108025 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63024741ns 1108028 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63025196ns 1108036 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63025367ns 1108039 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63025651ns 1108044 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63025935ns 1108049 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63026219ns 1108054 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63026674ns 1108062 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63026844ns 1108065 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63027128ns 1108070 1a110850 fd5ff06f jal x0, -44 +63027413ns 1108075 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63027697ns 1108080 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63028095ns 1108087 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63028265ns 1108090 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63028720ns 1108098 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63028890ns 1108101 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63029174ns 1108106 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63029458ns 1108111 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63029743ns 1108116 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63030197ns 1108124 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63030368ns 1108127 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63030652ns 1108132 1a110850 fd5ff06f jal x0, -44 +63030936ns 1108137 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63031220ns 1108142 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63031618ns 1108149 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63031789ns 1108152 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63032243ns 1108160 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63032414ns 1108163 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63032698ns 1108168 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63032982ns 1108173 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63033266ns 1108178 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63033721ns 1108186 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63033891ns 1108189 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63034176ns 1108194 1a110850 fd5ff06f jal x0, -44 +63034460ns 1108199 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63034744ns 1108204 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63035142ns 1108211 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63035312ns 1108214 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63035767ns 1108222 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63035937ns 1108225 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63036221ns 1108230 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63036506ns 1108235 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63036790ns 1108240 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63037244ns 1108248 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63037415ns 1108251 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63037699ns 1108256 1a110850 fd5ff06f jal x0, -44 +63037983ns 1108261 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63038267ns 1108266 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63038665ns 1108273 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63038836ns 1108276 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63039290ns 1108284 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63039461ns 1108287 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63039745ns 1108292 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63040029ns 1108297 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63040313ns 1108302 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63040768ns 1108310 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63040939ns 1108313 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63041223ns 1108318 1a110850 fd5ff06f jal x0, -44 +63041507ns 1108323 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63041791ns 1108328 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63042189ns 1108335 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63042359ns 1108338 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63042814ns 1108346 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63042984ns 1108349 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63043269ns 1108354 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63043553ns 1108359 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63043837ns 1108364 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63044292ns 1108372 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63044462ns 1108375 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63044746ns 1108380 1a110850 fd5ff06f jal x0, -44 +63045030ns 1108385 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63045315ns 1108390 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63045712ns 1108397 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63045883ns 1108400 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63046338ns 1108408 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63046508ns 1108411 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63046792ns 1108416 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63047076ns 1108421 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63047361ns 1108426 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63047815ns 1108434 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63047986ns 1108437 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63048270ns 1108442 1a110850 fd5ff06f jal x0, -44 +63048554ns 1108447 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63048838ns 1108452 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63049236ns 1108459 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63049407ns 1108462 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63049861ns 1108470 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63050032ns 1108473 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63050316ns 1108478 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63050600ns 1108483 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63050884ns 1108488 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63051339ns 1108496 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63051509ns 1108499 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63051793ns 1108504 1a110850 fd5ff06f jal x0, -44 +63052078ns 1108509 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63052362ns 1108514 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63052760ns 1108521 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63052930ns 1108524 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63053385ns 1108532 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63053555ns 1108535 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63053839ns 1108540 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63054124ns 1108545 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63054408ns 1108550 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63054862ns 1108558 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63055033ns 1108561 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63055317ns 1108566 1a110850 fd5ff06f jal x0, -44 +63055601ns 1108571 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63055885ns 1108576 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63056283ns 1108583 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63056454ns 1108586 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63056908ns 1108594 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63057079ns 1108597 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63057363ns 1108602 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63057647ns 1108607 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63057931ns 1108612 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63058386ns 1108620 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63058556ns 1108623 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63058841ns 1108628 1a110850 fd5ff06f jal x0, -44 +63059125ns 1108633 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63059409ns 1108638 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63059807ns 1108645 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63059977ns 1108648 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63060432ns 1108656 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63060602ns 1108659 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63060887ns 1108664 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63061171ns 1108669 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63061455ns 1108674 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63061910ns 1108682 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63062080ns 1108685 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63062364ns 1108690 1a110850 fd5ff06f jal x0, -44 +63062648ns 1108695 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63062933ns 1108700 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63063330ns 1108707 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63063501ns 1108710 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63063955ns 1108718 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63064126ns 1108721 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63064410ns 1108726 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63064694ns 1108731 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63064978ns 1108736 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63065433ns 1108744 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63065604ns 1108747 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63065888ns 1108752 1a110850 fd5ff06f jal x0, -44 +63066172ns 1108757 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63066456ns 1108762 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63066854ns 1108769 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63067024ns 1108772 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63067479ns 1108780 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63067650ns 1108783 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63067934ns 1108788 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63068218ns 1108793 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63068502ns 1108798 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63068957ns 1108806 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63069127ns 1108809 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63069411ns 1108814 1a110850 fd5ff06f jal x0, -44 +63069696ns 1108819 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63069980ns 1108824 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63070378ns 1108831 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63070548ns 1108834 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63071003ns 1108842 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63071173ns 1108845 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63071457ns 1108850 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63071741ns 1108855 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63072026ns 1108860 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63072480ns 1108868 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63072651ns 1108871 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63072935ns 1108876 1a110850 fd5ff06f jal x0, -44 +63073219ns 1108881 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63073503ns 1108886 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63073901ns 1108893 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63074072ns 1108896 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63074526ns 1108904 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63074697ns 1108907 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63074981ns 1108912 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63075265ns 1108917 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63075549ns 1108922 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63076004ns 1108930 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63076174ns 1108933 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63076459ns 1108938 1a110850 fd5ff06f jal x0, -44 +63076743ns 1108943 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63077027ns 1108948 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63077425ns 1108955 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63077595ns 1108958 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63078050ns 1108966 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63078220ns 1108969 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63078504ns 1108974 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63078789ns 1108979 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63079073ns 1108984 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63079527ns 1108992 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63079698ns 1108995 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63079982ns 1109000 1a110850 fd5ff06f jal x0, -44 +63080266ns 1109005 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63080550ns 1109010 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63080948ns 1109017 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63081119ns 1109020 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63081573ns 1109028 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63081744ns 1109031 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63082028ns 1109036 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63082312ns 1109041 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63082596ns 1109046 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63083051ns 1109054 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63083222ns 1109057 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63083506ns 1109062 1a110850 fd5ff06f jal x0, -44 +63083790ns 1109067 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63084074ns 1109072 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63084472ns 1109079 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63084642ns 1109082 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63085097ns 1109090 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63085267ns 1109093 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63085552ns 1109098 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63085836ns 1109103 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63086120ns 1109108 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63086575ns 1109116 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63086745ns 1109119 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63087029ns 1109124 1a110850 fd5ff06f jal x0, -44 +63087313ns 1109129 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63087598ns 1109134 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63087995ns 1109141 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63088166ns 1109144 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63088621ns 1109152 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63088791ns 1109155 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63089075ns 1109160 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63089359ns 1109165 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63089644ns 1109170 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63090098ns 1109178 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63090269ns 1109181 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63090553ns 1109186 1a110850 fd5ff06f jal x0, -44 +63090837ns 1109191 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63091121ns 1109196 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63091519ns 1109203 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63091690ns 1109206 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63092144ns 1109214 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63092315ns 1109217 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63092599ns 1109222 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63092883ns 1109227 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63093167ns 1109232 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63093622ns 1109240 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63093792ns 1109243 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63094076ns 1109248 1a110850 fd5ff06f jal x0, -44 +63094361ns 1109253 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63094645ns 1109258 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63095043ns 1109265 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63095213ns 1109268 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63095668ns 1109276 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63095838ns 1109279 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63096122ns 1109284 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63096407ns 1109289 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63096691ns 1109294 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63097145ns 1109302 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63097316ns 1109305 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63097600ns 1109310 1a110850 fd5ff06f jal x0, -44 +63097884ns 1109315 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63098168ns 1109320 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63098566ns 1109327 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63098737ns 1109330 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63099191ns 1109338 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63099362ns 1109341 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63099646ns 1109346 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63099930ns 1109351 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63100214ns 1109356 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63100669ns 1109364 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63100839ns 1109367 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63101124ns 1109372 1a110850 fd5ff06f jal x0, -44 +63101408ns 1109377 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63101692ns 1109382 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63102090ns 1109389 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63102260ns 1109392 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63102715ns 1109400 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63102885ns 1109403 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63103170ns 1109408 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63103454ns 1109413 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63103738ns 1109418 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63104193ns 1109426 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63104363ns 1109429 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63104647ns 1109434 1a110850 fd5ff06f jal x0, -44 +63104931ns 1109439 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63105216ns 1109444 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63105613ns 1109451 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63105784ns 1109454 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63106239ns 1109462 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63106409ns 1109465 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63106693ns 1109470 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63106977ns 1109475 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63107261ns 1109480 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63107716ns 1109488 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63107887ns 1109491 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63108171ns 1109496 1a110850 fd5ff06f jal x0, -44 +63108455ns 1109501 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63108739ns 1109506 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63109137ns 1109513 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63109307ns 1109516 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63109762ns 1109524 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63109933ns 1109527 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63110217ns 1109532 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63110501ns 1109537 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63110785ns 1109542 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63111240ns 1109550 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63111410ns 1109553 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63111694ns 1109558 1a110850 fd5ff06f jal x0, -44 +63111979ns 1109563 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63112263ns 1109568 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63112661ns 1109575 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63112831ns 1109578 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63113286ns 1109586 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63113456ns 1109589 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63113740ns 1109594 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63114024ns 1109599 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63114309ns 1109604 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63114763ns 1109612 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63114934ns 1109615 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63115218ns 1109620 1a110850 fd5ff06f jal x0, -44 +63115502ns 1109625 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63115786ns 1109630 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63116184ns 1109637 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63116355ns 1109640 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63116809ns 1109648 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63116980ns 1109651 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63117264ns 1109656 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63117548ns 1109661 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63117832ns 1109666 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63118287ns 1109674 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63118457ns 1109677 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63118742ns 1109682 1a110850 fd5ff06f jal x0, -44 +63119026ns 1109687 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63119310ns 1109692 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63119708ns 1109699 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63119878ns 1109702 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63120333ns 1109710 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63120503ns 1109713 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63120787ns 1109718 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63121072ns 1109723 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63121356ns 1109728 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63121810ns 1109736 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63121981ns 1109739 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63122265ns 1109744 1a110850 fd5ff06f jal x0, -44 +63122549ns 1109749 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63122833ns 1109754 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63123231ns 1109761 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63123402ns 1109764 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63123856ns 1109772 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63124027ns 1109775 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63124311ns 1109780 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63124595ns 1109785 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63124879ns 1109790 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63125334ns 1109798 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63125505ns 1109801 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63125789ns 1109806 1a110850 fd5ff06f jal x0, -44 +63126073ns 1109811 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63126357ns 1109816 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63126755ns 1109823 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63126925ns 1109826 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63127380ns 1109834 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63127551ns 1109837 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63127835ns 1109842 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63128119ns 1109847 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63128403ns 1109852 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63128858ns 1109860 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63129028ns 1109863 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63129312ns 1109868 1a110850 fd5ff06f jal x0, -44 +63129596ns 1109873 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63129881ns 1109878 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63130278ns 1109885 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63130449ns 1109888 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63130904ns 1109896 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63131074ns 1109899 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63131358ns 1109904 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63131642ns 1109909 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63131927ns 1109914 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63132381ns 1109922 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63132552ns 1109925 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63132836ns 1109930 1a110850 fd5ff06f jal x0, -44 +63133120ns 1109935 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63133404ns 1109940 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63133802ns 1109947 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63133973ns 1109950 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63134427ns 1109958 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63134598ns 1109961 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63134882ns 1109966 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63135166ns 1109971 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63135450ns 1109976 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63135905ns 1109984 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63136075ns 1109987 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63136359ns 1109992 1a110850 fd5ff06f jal x0, -44 +63136644ns 1109997 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63136928ns 1110002 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63137326ns 1110009 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63137496ns 1110012 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63137951ns 1110020 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63138121ns 1110023 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63138405ns 1110028 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63138690ns 1110033 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63138974ns 1110038 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63139428ns 1110046 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63139599ns 1110049 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63139883ns 1110054 1a110850 fd5ff06f jal x0, -44 +63140167ns 1110059 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63140451ns 1110064 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63140849ns 1110071 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63141020ns 1110074 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63141474ns 1110082 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63141645ns 1110085 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63141929ns 1110090 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63142213ns 1110095 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63142497ns 1110100 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63142952ns 1110108 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63143122ns 1110111 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63143407ns 1110116 1a110850 fd5ff06f jal x0, -44 +63143691ns 1110121 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63143975ns 1110126 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63144373ns 1110133 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63144543ns 1110136 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63144998ns 1110144 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63145168ns 1110147 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63145453ns 1110152 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63145737ns 1110157 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63146021ns 1110162 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63146476ns 1110170 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63146646ns 1110173 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63146930ns 1110178 1a110850 fd5ff06f jal x0, -44 +63147214ns 1110183 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63147499ns 1110188 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63147896ns 1110195 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63148067ns 1110198 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63148522ns 1110206 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63148692ns 1110209 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63148976ns 1110214 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63149260ns 1110219 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63149544ns 1110224 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63149999ns 1110232 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63150170ns 1110235 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63150454ns 1110240 1a110850 fd5ff06f jal x0, -44 +63150738ns 1110245 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63151022ns 1110250 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63151420ns 1110257 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63151590ns 1110260 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63152045ns 1110268 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63152216ns 1110271 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63152500ns 1110276 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63152784ns 1110281 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63153068ns 1110286 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63153523ns 1110294 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63153693ns 1110297 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63153977ns 1110302 1a110850 fd5ff06f jal x0, -44 +63154262ns 1110307 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63154546ns 1110312 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63154944ns 1110319 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63155114ns 1110322 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63155569ns 1110330 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63155739ns 1110333 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63156023ns 1110338 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63156307ns 1110343 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63156592ns 1110348 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63157046ns 1110356 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63157217ns 1110359 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63157501ns 1110364 1a110850 fd5ff06f jal x0, -44 +63157785ns 1110369 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63158069ns 1110374 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63158467ns 1110381 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63158638ns 1110384 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63159092ns 1110392 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63159263ns 1110395 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63159547ns 1110400 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63159831ns 1110405 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63160115ns 1110410 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63160570ns 1110418 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63160740ns 1110421 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63161025ns 1110426 1a110850 fd5ff06f jal x0, -44 +63161309ns 1110431 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63161593ns 1110436 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63161991ns 1110443 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63162161ns 1110446 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63162616ns 1110454 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63162786ns 1110457 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63163071ns 1110462 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63163355ns 1110467 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63163639ns 1110472 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63164093ns 1110480 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63164264ns 1110483 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63164548ns 1110488 1a110850 fd5ff06f jal x0, -44 +63164832ns 1110493 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63165116ns 1110498 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63165514ns 1110505 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63165685ns 1110508 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63166139ns 1110516 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63166310ns 1110519 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63166594ns 1110524 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63166878ns 1110529 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63167162ns 1110534 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63167617ns 1110542 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63167788ns 1110545 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63168072ns 1110550 1a110850 fd5ff06f jal x0, -44 +63168356ns 1110555 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63168640ns 1110560 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63169038ns 1110567 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63169208ns 1110570 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63169663ns 1110578 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63169834ns 1110581 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63170118ns 1110586 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63170402ns 1110591 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63170686ns 1110596 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63171141ns 1110604 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63171311ns 1110607 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63171595ns 1110612 1a110850 fd5ff06f jal x0, -44 +63171879ns 1110617 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63172164ns 1110622 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63172561ns 1110629 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63172732ns 1110632 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63173187ns 1110640 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63173357ns 1110643 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63173641ns 1110648 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63173925ns 1110653 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63174210ns 1110658 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63174664ns 1110666 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63174835ns 1110669 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63175119ns 1110674 1a110850 fd5ff06f jal x0, -44 +63175403ns 1110679 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63175687ns 1110684 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63176085ns 1110691 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63176256ns 1110694 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63176710ns 1110702 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63176881ns 1110705 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63177165ns 1110710 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63177449ns 1110715 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63177733ns 1110720 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63178188ns 1110728 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63178358ns 1110731 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63178642ns 1110736 1a110850 fd5ff06f jal x0, -44 +63178927ns 1110741 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63179211ns 1110746 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63179609ns 1110753 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63179779ns 1110756 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63180234ns 1110764 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63180404ns 1110767 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63180688ns 1110772 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63180973ns 1110777 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63181257ns 1110782 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63181711ns 1110790 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63181882ns 1110793 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63182166ns 1110798 1a110850 fd5ff06f jal x0, -44 +63182450ns 1110803 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63182734ns 1110808 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63183132ns 1110815 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63183303ns 1110818 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63183757ns 1110826 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63183928ns 1110829 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63184212ns 1110834 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63184496ns 1110839 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63184780ns 1110844 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63185235ns 1110852 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63185405ns 1110855 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63185690ns 1110860 1a110850 fd5ff06f jal x0, -44 +63185974ns 1110865 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63186258ns 1110870 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63186656ns 1110877 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63186826ns 1110880 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63187281ns 1110888 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63187451ns 1110891 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63187736ns 1110896 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63188020ns 1110901 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63188304ns 1110906 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63188759ns 1110914 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63188929ns 1110917 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63189213ns 1110922 1a110850 fd5ff06f jal x0, -44 +63189497ns 1110927 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63189782ns 1110932 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63190179ns 1110939 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63190350ns 1110942 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63190805ns 1110950 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63190975ns 1110953 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63191259ns 1110958 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63191543ns 1110963 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63191827ns 1110968 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63192282ns 1110976 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63192453ns 1110979 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63192737ns 1110984 1a110850 fd5ff06f jal x0, -44 +63193021ns 1110989 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63193305ns 1110994 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63193703ns 1111001 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63193873ns 1111004 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63194328ns 1111012 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63194499ns 1111015 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63194783ns 1111020 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63195067ns 1111025 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63195351ns 1111030 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63195806ns 1111038 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63195976ns 1111041 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63196260ns 1111046 1a110850 fd5ff06f jal x0, -44 +63196545ns 1111051 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63196829ns 1111056 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63197227ns 1111063 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63197397ns 1111066 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63197852ns 1111074 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63198022ns 1111077 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63198306ns 1111082 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63198591ns 1111087 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63198875ns 1111092 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63199329ns 1111100 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63199500ns 1111103 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63199784ns 1111108 1a110850 fd5ff06f jal x0, -44 +63200068ns 1111113 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63200352ns 1111118 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63200750ns 1111125 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63200921ns 1111128 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63201375ns 1111136 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63201546ns 1111139 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63201830ns 1111144 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63202114ns 1111149 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63202398ns 1111154 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63202853ns 1111162 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63203023ns 1111165 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63203308ns 1111170 1a110850 fd5ff06f jal x0, -44 +63203592ns 1111175 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63203876ns 1111180 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63204274ns 1111187 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63204444ns 1111190 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63204899ns 1111198 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63205069ns 1111201 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63205354ns 1111206 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63205638ns 1111211 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63205922ns 1111216 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63206376ns 1111224 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63206547ns 1111227 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63206831ns 1111232 1a110850 fd5ff06f jal x0, -44 +63207115ns 1111237 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63207399ns 1111242 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63207797ns 1111249 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63207968ns 1111252 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63208422ns 1111260 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63208593ns 1111263 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63208877ns 1111268 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63209161ns 1111273 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63209445ns 1111278 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63209900ns 1111286 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63210071ns 1111289 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63210355ns 1111294 1a110850 fd5ff06f jal x0, -44 +63210639ns 1111299 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63210923ns 1111304 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63211321ns 1111311 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63211491ns 1111314 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63211946ns 1111322 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63212117ns 1111325 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63212401ns 1111330 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63212685ns 1111335 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63212969ns 1111340 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63213424ns 1111348 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63213594ns 1111351 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63213878ns 1111356 1a110850 fd5ff06f jal x0, -44 +63214162ns 1111361 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63214447ns 1111366 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63214844ns 1111373 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63215015ns 1111376 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63215470ns 1111384 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63215640ns 1111387 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63215924ns 1111392 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63216208ns 1111397 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63216493ns 1111402 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63216947ns 1111410 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63217118ns 1111413 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63217402ns 1111418 1a110850 fd5ff06f jal x0, -44 +63217686ns 1111423 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63217970ns 1111428 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63218368ns 1111435 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63218539ns 1111438 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63218993ns 1111446 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63219164ns 1111449 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63219448ns 1111454 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63219732ns 1111459 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63220016ns 1111464 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63220471ns 1111472 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63220641ns 1111475 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63220925ns 1111480 1a110850 fd5ff06f jal x0, -44 +63221210ns 1111485 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63221494ns 1111490 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63221892ns 1111497 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63222062ns 1111500 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63222517ns 1111508 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63222687ns 1111511 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63222971ns 1111516 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63223256ns 1111521 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63223540ns 1111526 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63223994ns 1111534 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63224165ns 1111537 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63224449ns 1111542 1a110850 fd5ff06f jal x0, -44 +63224733ns 1111547 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63225017ns 1111552 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63225415ns 1111559 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63225586ns 1111562 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63226040ns 1111570 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63226211ns 1111573 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63226495ns 1111578 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63226779ns 1111583 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63227063ns 1111588 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63227518ns 1111596 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63227688ns 1111599 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63227973ns 1111604 1a110850 fd5ff06f jal x0, -44 +63228257ns 1111609 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63228541ns 1111614 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63228939ns 1111621 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63229109ns 1111624 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63229564ns 1111632 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63229734ns 1111635 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63230019ns 1111640 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63230303ns 1111645 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63230587ns 1111650 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63231042ns 1111658 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63231212ns 1111661 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63231496ns 1111666 1a110850 fd5ff06f jal x0, -44 +63231780ns 1111671 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63232065ns 1111676 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63232462ns 1111683 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63232633ns 1111686 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63233088ns 1111694 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63233258ns 1111697 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63233542ns 1111702 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63233826ns 1111707 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63234111ns 1111712 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63234565ns 1111720 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63234736ns 1111723 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63235020ns 1111728 1a110850 fd5ff06f jal x0, -44 +63235304ns 1111733 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63235588ns 1111738 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63235986ns 1111745 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63236156ns 1111748 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63236611ns 1111756 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63236782ns 1111759 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63237066ns 1111764 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63237350ns 1111769 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63237634ns 1111774 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63238089ns 1111782 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63238259ns 1111785 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63238543ns 1111790 1a110850 fd5ff06f jal x0, -44 +63238828ns 1111795 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63239112ns 1111800 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63239510ns 1111807 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63239680ns 1111810 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63240135ns 1111818 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63240305ns 1111821 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63240589ns 1111826 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63240874ns 1111831 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63241158ns 1111836 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63241612ns 1111844 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63241783ns 1111847 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63242067ns 1111852 1a110850 fd5ff06f jal x0, -44 +63242351ns 1111857 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63242635ns 1111862 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63243033ns 1111869 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63243204ns 1111872 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63243658ns 1111880 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63243829ns 1111883 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63244113ns 1111888 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63244397ns 1111893 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63244681ns 1111898 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63245136ns 1111906 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63245306ns 1111909 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63245591ns 1111914 1a110850 fd5ff06f jal x0, -44 +63245875ns 1111919 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63246159ns 1111924 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63246557ns 1111931 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63246727ns 1111934 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63247182ns 1111942 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63247352ns 1111945 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63247637ns 1111950 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63247921ns 1111955 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63248205ns 1111960 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63248659ns 1111968 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63248830ns 1111971 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63249114ns 1111976 1a110850 fd5ff06f jal x0, -44 +63249398ns 1111981 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63249682ns 1111986 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63250080ns 1111993 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63250251ns 1111996 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63250705ns 1112004 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63250876ns 1112007 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63251160ns 1112012 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63251444ns 1112017 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63251728ns 1112022 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63252183ns 1112030 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63252354ns 1112033 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63252638ns 1112038 1a110850 fd5ff06f jal x0, -44 +63252922ns 1112043 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63253206ns 1112048 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63253604ns 1112055 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63253774ns 1112058 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63254229ns 1112066 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63254400ns 1112069 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63254684ns 1112074 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63254968ns 1112079 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63255252ns 1112084 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63255707ns 1112092 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63255877ns 1112095 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63256161ns 1112100 1a110850 fd5ff06f jal x0, -44 +63256445ns 1112105 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63256730ns 1112110 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63257127ns 1112117 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63257298ns 1112120 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63257753ns 1112128 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63257923ns 1112131 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63258207ns 1112136 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63258491ns 1112141 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63258776ns 1112146 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63259230ns 1112154 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63259401ns 1112157 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63259685ns 1112162 1a110850 fd5ff06f jal x0, -44 +63259969ns 1112167 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63260253ns 1112172 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63260651ns 1112179 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63260822ns 1112182 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63261276ns 1112190 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63261447ns 1112193 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63261731ns 1112198 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63262015ns 1112203 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63262299ns 1112208 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63262754ns 1112216 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63262924ns 1112219 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63263208ns 1112224 1a110850 fd5ff06f jal x0, -44 +63263493ns 1112229 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63263777ns 1112234 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63264175ns 1112241 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63264345ns 1112244 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63264800ns 1112252 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63264970ns 1112255 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63265254ns 1112260 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63265539ns 1112265 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63265823ns 1112270 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63266277ns 1112278 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63266448ns 1112281 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63266732ns 1112286 1a110850 fd5ff06f jal x0, -44 +63267016ns 1112291 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63267300ns 1112296 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63267698ns 1112303 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63267869ns 1112306 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63268323ns 1112314 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63268494ns 1112317 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63268778ns 1112322 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63269062ns 1112327 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63269346ns 1112332 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63269801ns 1112340 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63269971ns 1112343 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63270256ns 1112348 1a110850 fd5ff06f jal x0, -44 +63270540ns 1112353 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63270824ns 1112358 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63271222ns 1112365 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63271392ns 1112368 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63271847ns 1112376 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63272017ns 1112379 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63272302ns 1112384 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63272586ns 1112389 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63272870ns 1112394 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63273325ns 1112402 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63273495ns 1112405 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63273779ns 1112410 1a110850 fd5ff06f jal x0, -44 +63274063ns 1112415 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63274348ns 1112420 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63274745ns 1112427 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63274916ns 1112430 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63275371ns 1112438 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63275541ns 1112441 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63275825ns 1112446 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63276109ns 1112451 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63276394ns 1112456 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63276848ns 1112464 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63277019ns 1112467 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63277303ns 1112472 1a110850 fd5ff06f jal x0, -44 +63277587ns 1112477 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63277871ns 1112482 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63278269ns 1112489 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63278439ns 1112492 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63278894ns 1112500 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63279065ns 1112503 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63279349ns 1112508 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63279633ns 1112513 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63279917ns 1112518 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63280372ns 1112526 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63280542ns 1112529 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63280826ns 1112534 1a110850 fd5ff06f jal x0, -44 +63281111ns 1112539 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63281395ns 1112544 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63281793ns 1112551 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63281963ns 1112554 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63282418ns 1112562 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63282588ns 1112565 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63282872ns 1112570 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63283157ns 1112575 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63283441ns 1112580 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63283895ns 1112588 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63284066ns 1112591 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63284350ns 1112596 1a110850 fd5ff06f jal x0, -44 +63284634ns 1112601 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63284918ns 1112606 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63285316ns 1112613 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63285487ns 1112616 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63285941ns 1112624 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63286112ns 1112627 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63286396ns 1112632 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63286680ns 1112637 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63286964ns 1112642 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63287419ns 1112650 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63287589ns 1112653 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63287874ns 1112658 1a110850 fd5ff06f jal x0, -44 +63288158ns 1112663 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63288442ns 1112668 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63288840ns 1112675 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63289010ns 1112678 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63289465ns 1112686 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63289635ns 1112689 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63289920ns 1112694 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63290204ns 1112699 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63290488ns 1112704 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63290943ns 1112712 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63291113ns 1112715 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63291397ns 1112720 1a110850 fd5ff06f jal x0, -44 +63291681ns 1112725 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63291965ns 1112730 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63292363ns 1112737 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63292534ns 1112740 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63292988ns 1112748 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63293159ns 1112751 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63293443ns 1112756 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63293727ns 1112761 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63294011ns 1112766 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63294466ns 1112774 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63294637ns 1112777 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63294921ns 1112782 1a110850 fd5ff06f jal x0, -44 +63295205ns 1112787 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63295489ns 1112792 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63295887ns 1112799 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63296057ns 1112802 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63296512ns 1112810 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63296683ns 1112813 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63296967ns 1112818 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63297251ns 1112823 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63297535ns 1112828 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63297990ns 1112836 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63298160ns 1112839 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63298444ns 1112844 1a110850 fd5ff06f jal x0, -44 +63298728ns 1112849 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63299013ns 1112854 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63299410ns 1112861 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63299581ns 1112864 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63300036ns 1112872 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63300206ns 1112875 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63300490ns 1112880 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63300774ns 1112885 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63301059ns 1112890 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63301513ns 1112898 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63301684ns 1112901 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63301968ns 1112906 1a110850 fd5ff06f jal x0, -44 +63302252ns 1112911 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63302536ns 1112916 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63302934ns 1112923 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63303105ns 1112926 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63303559ns 1112934 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63303730ns 1112937 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63304014ns 1112942 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63304298ns 1112947 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63304582ns 1112952 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63305037ns 1112960 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63305207ns 1112963 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63305491ns 1112968 1a110850 fd5ff06f jal x0, -44 +63305776ns 1112973 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63306060ns 1112978 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63306458ns 1112985 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63306628ns 1112988 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63307083ns 1112996 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63307253ns 1112999 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63307537ns 1113004 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63307822ns 1113009 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63308106ns 1113014 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63308560ns 1113022 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63308731ns 1113025 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63309015ns 1113030 1a110850 fd5ff06f jal x0, -44 +63309299ns 1113035 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63309583ns 1113040 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63309981ns 1113047 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63310152ns 1113050 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63310606ns 1113058 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63310777ns 1113061 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63311061ns 1113066 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63311345ns 1113071 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63311629ns 1113076 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63312084ns 1113084 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63312255ns 1113087 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63312539ns 1113092 1a110850 fd5ff06f jal x0, -44 +63312823ns 1113097 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63313107ns 1113102 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63313505ns 1113109 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63313675ns 1113112 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63314130ns 1113120 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63314300ns 1113123 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63314585ns 1113128 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63314869ns 1113133 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63315153ns 1113138 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63315608ns 1113146 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63315778ns 1113149 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63316062ns 1113154 1a110850 fd5ff06f jal x0, -44 +63316346ns 1113159 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63316631ns 1113164 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63317028ns 1113171 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63317199ns 1113174 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63317654ns 1113182 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63317824ns 1113185 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63318108ns 1113190 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63318392ns 1113195 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63318677ns 1113200 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63319131ns 1113208 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63319302ns 1113211 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63319586ns 1113216 1a110850 fd5ff06f jal x0, -44 +63319870ns 1113221 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63320154ns 1113226 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63320552ns 1113233 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63320722ns 1113236 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63321177ns 1113244 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63321348ns 1113247 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63321632ns 1113252 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63321916ns 1113257 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63322200ns 1113262 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63322655ns 1113270 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63322825ns 1113273 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63323109ns 1113278 1a110850 fd5ff06f jal x0, -44 +63323394ns 1113283 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63323678ns 1113288 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63324076ns 1113295 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63324246ns 1113298 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63324701ns 1113306 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63324871ns 1113309 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63325155ns 1113314 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63325440ns 1113319 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63325724ns 1113324 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63326178ns 1113332 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63326349ns 1113335 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63326633ns 1113340 1a110850 fd5ff06f jal x0, -44 +63326917ns 1113345 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63327201ns 1113350 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63327599ns 1113357 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63327770ns 1113360 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63328224ns 1113368 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63328395ns 1113371 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63328679ns 1113376 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63328963ns 1113381 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63329247ns 1113386 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63329702ns 1113394 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63329872ns 1113397 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63330157ns 1113402 1a110850 fd5ff06f jal x0, -44 +63330441ns 1113407 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63330725ns 1113412 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63331123ns 1113419 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63331293ns 1113422 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63331748ns 1113430 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63331918ns 1113433 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63332203ns 1113438 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63332487ns 1113443 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63332771ns 1113448 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63333226ns 1113456 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63333396ns 1113459 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63333680ns 1113464 1a110850 fd5ff06f jal x0, -44 +63333964ns 1113469 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63334248ns 1113474 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63334646ns 1113481 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63334817ns 1113484 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63335271ns 1113492 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63335442ns 1113495 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63335726ns 1113500 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63336010ns 1113505 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63336294ns 1113510 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63336749ns 1113518 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63336920ns 1113521 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63337204ns 1113526 1a110850 fd5ff06f jal x0, -44 +63337488ns 1113531 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63337772ns 1113536 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63338170ns 1113543 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63338340ns 1113546 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63338795ns 1113554 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63338966ns 1113557 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63339250ns 1113562 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63339534ns 1113567 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63339818ns 1113572 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63340273ns 1113580 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63340443ns 1113583 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63340727ns 1113588 1a110850 fd5ff06f jal x0, -44 +63341011ns 1113593 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63341296ns 1113598 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63341693ns 1113605 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63341864ns 1113608 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63342319ns 1113616 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63342489ns 1113619 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63342773ns 1113624 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63343057ns 1113629 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63343342ns 1113634 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63343796ns 1113642 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63343967ns 1113645 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63344251ns 1113650 1a110850 fd5ff06f jal x0, -44 +63344535ns 1113655 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63344819ns 1113660 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63345217ns 1113667 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63345388ns 1113670 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63345842ns 1113678 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63346013ns 1113681 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63346297ns 1113686 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63346581ns 1113691 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63346865ns 1113696 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63347320ns 1113704 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63347490ns 1113707 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63347775ns 1113712 1a110850 fd5ff06f jal x0, -44 +63348059ns 1113717 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63348343ns 1113722 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63348741ns 1113729 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63348911ns 1113732 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63349366ns 1113740 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63349536ns 1113743 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63349820ns 1113748 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63350105ns 1113753 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63350389ns 1113758 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63350843ns 1113766 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63351014ns 1113769 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63351298ns 1113774 1a110850 fd5ff06f jal x0, -44 +63351582ns 1113779 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63351866ns 1113784 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63352264ns 1113791 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63352435ns 1113794 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63352889ns 1113802 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63353060ns 1113805 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63353344ns 1113810 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63353628ns 1113815 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63353912ns 1113820 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63354367ns 1113828 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63354538ns 1113831 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63354822ns 1113836 1a110850 fd5ff06f jal x0, -44 +63355106ns 1113841 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63355390ns 1113846 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63355788ns 1113853 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63355958ns 1113856 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63356413ns 1113864 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63356583ns 1113867 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63356868ns 1113872 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63357152ns 1113877 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63357436ns 1113882 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63357891ns 1113890 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63358061ns 1113893 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63358345ns 1113898 1a110850 fd5ff06f jal x0, -44 +63358629ns 1113903 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63358914ns 1113908 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63359311ns 1113915 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63359482ns 1113918 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63359937ns 1113926 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63360107ns 1113929 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63360391ns 1113934 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63360675ns 1113939 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63360960ns 1113944 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63361414ns 1113952 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63361585ns 1113955 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63361869ns 1113960 1a110850 fd5ff06f jal x0, -44 +63362153ns 1113965 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63362437ns 1113970 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63362835ns 1113977 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63363005ns 1113980 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63363460ns 1113988 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63363631ns 1113991 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63363915ns 1113996 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63364199ns 1114001 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63364483ns 1114006 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63364938ns 1114014 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63365108ns 1114017 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63365392ns 1114022 1a110850 fd5ff06f jal x0, -44 +63365677ns 1114027 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63365961ns 1114032 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63366359ns 1114039 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63366529ns 1114042 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63366984ns 1114050 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63367154ns 1114053 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63367438ns 1114058 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63367723ns 1114063 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63368007ns 1114068 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63368461ns 1114076 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63368632ns 1114079 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63368916ns 1114084 1a110850 fd5ff06f jal x0, -44 +63369200ns 1114089 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63369484ns 1114094 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63369882ns 1114101 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63370053ns 1114104 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63370507ns 1114112 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63370678ns 1114115 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63370962ns 1114120 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63371246ns 1114125 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63371530ns 1114130 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63371985ns 1114138 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63372155ns 1114141 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63372440ns 1114146 1a110850 fd5ff06f jal x0, -44 +63372724ns 1114151 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63373008ns 1114156 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63373406ns 1114163 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63373576ns 1114166 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63374031ns 1114174 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63374201ns 1114177 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63374486ns 1114182 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63374770ns 1114187 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63375054ns 1114192 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63375509ns 1114200 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63375679ns 1114203 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63375963ns 1114208 1a110850 fd5ff06f jal x0, -44 +63376247ns 1114213 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63376531ns 1114218 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63376929ns 1114225 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63377100ns 1114228 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63377554ns 1114236 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63377725ns 1114239 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63378009ns 1114244 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63378293ns 1114249 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63378577ns 1114254 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63379032ns 1114262 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63379203ns 1114265 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63379487ns 1114270 1a110850 fd5ff06f jal x0, -44 +63379771ns 1114275 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63380055ns 1114280 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63380453ns 1114287 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63380623ns 1114290 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63381078ns 1114298 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63381249ns 1114301 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63381533ns 1114306 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63381817ns 1114311 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63382101ns 1114316 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63382556ns 1114324 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63382726ns 1114327 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63383010ns 1114332 1a110850 fd5ff06f jal x0, -44 +63383295ns 1114337 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63383579ns 1114342 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63383976ns 1114349 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63384147ns 1114352 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63384602ns 1114360 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63384772ns 1114363 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63385056ns 1114368 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63385340ns 1114373 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63385625ns 1114378 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63386079ns 1114386 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63386250ns 1114389 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63386534ns 1114394 1a110850 fd5ff06f jal x0, -44 +63386818ns 1114399 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63387102ns 1114404 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63387500ns 1114411 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63387671ns 1114414 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63388125ns 1114422 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63388296ns 1114425 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63388580ns 1114430 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63388864ns 1114435 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63389148ns 1114440 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63389603ns 1114448 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63389773ns 1114451 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63390058ns 1114456 1a110850 fd5ff06f jal x0, -44 +63390342ns 1114461 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63390626ns 1114466 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63391024ns 1114473 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63391194ns 1114476 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63391649ns 1114484 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63391819ns 1114487 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63392103ns 1114492 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63392388ns 1114497 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63392672ns 1114502 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63393126ns 1114510 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63393297ns 1114513 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63393581ns 1114518 1a110850 fd5ff06f jal x0, -44 +63393865ns 1114523 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63394149ns 1114528 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63394547ns 1114535 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63394718ns 1114538 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63395172ns 1114546 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63395343ns 1114549 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63395627ns 1114554 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63395911ns 1114559 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63396195ns 1114564 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63396650ns 1114572 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63396821ns 1114575 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63397105ns 1114580 1a110850 fd5ff06f jal x0, -44 +63397389ns 1114585 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63397673ns 1114590 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63398071ns 1114597 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63398241ns 1114600 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63398696ns 1114608 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63398866ns 1114611 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63399151ns 1114616 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63399435ns 1114621 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63399719ns 1114626 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63400174ns 1114634 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63400344ns 1114637 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63400628ns 1114642 1a110850 fd5ff06f jal x0, -44 +63400912ns 1114647 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63401197ns 1114652 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63401594ns 1114659 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63401765ns 1114662 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63402220ns 1114670 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63402390ns 1114673 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63402674ns 1114678 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63402958ns 1114683 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63403243ns 1114688 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63403697ns 1114696 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63403868ns 1114699 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63404152ns 1114704 1a110850 fd5ff06f jal x0, -44 +63404436ns 1114709 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63404720ns 1114714 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63405118ns 1114721 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63405288ns 1114724 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63405743ns 1114732 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63405914ns 1114735 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63406198ns 1114740 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63406482ns 1114745 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63406766ns 1114750 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63407221ns 1114758 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63407391ns 1114761 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63407675ns 1114766 1a110850 fd5ff06f jal x0, -44 +63407960ns 1114771 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63408244ns 1114776 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63408642ns 1114783 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63408812ns 1114786 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63409267ns 1114794 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63409437ns 1114797 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63409721ns 1114802 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63410006ns 1114807 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63410290ns 1114812 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63410744ns 1114820 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63410915ns 1114823 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63411199ns 1114828 1a110850 fd5ff06f jal x0, -44 +63411483ns 1114833 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63411767ns 1114838 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63412165ns 1114845 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63412336ns 1114848 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63412790ns 1114856 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63412961ns 1114859 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63413245ns 1114864 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63413529ns 1114869 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63413813ns 1114874 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63414268ns 1114882 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63414438ns 1114885 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63414723ns 1114890 1a110850 fd5ff06f jal x0, -44 +63415007ns 1114895 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63415291ns 1114900 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63415689ns 1114907 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63415859ns 1114910 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63416314ns 1114918 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63416484ns 1114921 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63416769ns 1114926 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63417053ns 1114931 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63417337ns 1114936 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63417792ns 1114944 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63417962ns 1114947 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63418246ns 1114952 1a110850 fd5ff06f jal x0, -44 +63418530ns 1114957 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63418815ns 1114962 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63419212ns 1114969 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63419383ns 1114972 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63419837ns 1114980 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63420008ns 1114983 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63420292ns 1114988 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63420576ns 1114993 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63420860ns 1114998 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63421315ns 1115006 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63421486ns 1115009 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63421770ns 1115014 1a110850 fd5ff06f jal x0, -44 +63422054ns 1115019 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63422338ns 1115024 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63422736ns 1115031 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63422906ns 1115034 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63423361ns 1115042 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63423532ns 1115045 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63423816ns 1115050 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63424100ns 1115055 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63424384ns 1115060 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63424839ns 1115068 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63425009ns 1115071 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63425293ns 1115076 1a110850 fd5ff06f jal x0, -44 +63425578ns 1115081 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63425862ns 1115086 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63426259ns 1115093 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63426430ns 1115096 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63426885ns 1115104 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63427055ns 1115107 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63427339ns 1115112 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63427623ns 1115117 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63427908ns 1115122 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63428362ns 1115130 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63428533ns 1115133 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63428817ns 1115138 1a110850 fd5ff06f jal x0, -44 +63429101ns 1115143 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63429385ns 1115148 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63429783ns 1115155 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63429954ns 1115158 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63430408ns 1115166 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63430579ns 1115169 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63430863ns 1115174 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63431147ns 1115179 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63431431ns 1115184 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63431886ns 1115192 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63432056ns 1115195 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63432341ns 1115200 1a110850 fd5ff06f jal x0, -44 +63432625ns 1115205 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63432909ns 1115210 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63433307ns 1115217 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63433477ns 1115220 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63433932ns 1115228 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63434102ns 1115231 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63434386ns 1115236 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63434671ns 1115241 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63434955ns 1115246 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63435409ns 1115254 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63435580ns 1115257 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63435864ns 1115262 1a110850 fd5ff06f jal x0, -44 +63436148ns 1115267 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63436432ns 1115272 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63436830ns 1115279 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63437001ns 1115282 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63437455ns 1115290 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63437626ns 1115293 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63437910ns 1115298 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63438194ns 1115303 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63438478ns 1115308 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63438933ns 1115316 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63439104ns 1115319 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63439388ns 1115324 1a110850 fd5ff06f jal x0, -44 +63439672ns 1115329 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63439956ns 1115334 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63440354ns 1115341 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63440524ns 1115344 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63440979ns 1115352 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63441149ns 1115355 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63441434ns 1115360 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63441718ns 1115365 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63442002ns 1115370 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63442457ns 1115378 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63442627ns 1115381 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63442911ns 1115386 1a110850 fd5ff06f jal x0, -44 +63443195ns 1115391 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63443480ns 1115396 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63443877ns 1115403 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63444048ns 1115406 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63444503ns 1115414 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63444673ns 1115417 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63444957ns 1115422 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63445241ns 1115427 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63445526ns 1115432 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63445980ns 1115440 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63446151ns 1115443 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63446435ns 1115448 1a110850 fd5ff06f jal x0, -44 +63446719ns 1115453 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63447003ns 1115458 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63447401ns 1115465 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63447571ns 1115468 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63448026ns 1115476 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63448197ns 1115479 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63448481ns 1115484 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63448765ns 1115489 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63449049ns 1115494 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63449504ns 1115502 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63449674ns 1115505 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63449958ns 1115510 1a110850 fd5ff06f jal x0, -44 +63450243ns 1115515 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63450527ns 1115520 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63450925ns 1115527 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63451095ns 1115530 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63451550ns 1115538 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63451720ns 1115541 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63452004ns 1115546 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63452289ns 1115551 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63452573ns 1115556 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63453027ns 1115564 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63453198ns 1115567 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63453482ns 1115572 1a110850 fd5ff06f jal x0, -44 +63453766ns 1115577 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63454050ns 1115582 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63454448ns 1115589 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63454619ns 1115592 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63455073ns 1115600 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63455244ns 1115603 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63455528ns 1115608 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63455812ns 1115613 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63456096ns 1115618 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63456551ns 1115626 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63456721ns 1115629 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63457006ns 1115634 1a110850 fd5ff06f jal x0, -44 +63457290ns 1115639 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63457574ns 1115644 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63457972ns 1115651 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63458142ns 1115654 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63458597ns 1115662 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63458767ns 1115665 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63459052ns 1115670 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63459336ns 1115675 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63459620ns 1115680 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63460075ns 1115688 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63460245ns 1115691 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63460529ns 1115696 1a110850 fd5ff06f jal x0, -44 +63460813ns 1115701 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63461098ns 1115706 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63461495ns 1115713 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63461666ns 1115716 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63462120ns 1115724 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63462291ns 1115727 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63462575ns 1115732 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63462859ns 1115737 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63463143ns 1115742 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63463598ns 1115750 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63463769ns 1115753 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63464053ns 1115758 1a110850 fd5ff06f jal x0, -44 +63464337ns 1115763 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63464621ns 1115768 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63465019ns 1115775 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63465189ns 1115778 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63465644ns 1115786 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63465815ns 1115789 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63466099ns 1115794 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63466383ns 1115799 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63466667ns 1115804 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63467122ns 1115812 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63467292ns 1115815 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63467576ns 1115820 1a110850 fd5ff06f jal x0, -44 +63467861ns 1115825 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63468145ns 1115830 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63468543ns 1115837 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63468713ns 1115840 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63469168ns 1115848 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63469338ns 1115851 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63469622ns 1115856 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63469906ns 1115861 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63470191ns 1115866 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63470645ns 1115874 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63470816ns 1115877 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63471100ns 1115882 1a110850 fd5ff06f jal x0, -44 +63471384ns 1115887 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63471668ns 1115892 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63472066ns 1115899 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63472237ns 1115902 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63472691ns 1115910 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63472862ns 1115913 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63473146ns 1115918 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63473430ns 1115923 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63473714ns 1115928 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63474169ns 1115936 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63474339ns 1115939 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63474624ns 1115944 1a110850 fd5ff06f jal x0, -44 +63474908ns 1115949 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63475192ns 1115954 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63475590ns 1115961 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63475760ns 1115964 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63476215ns 1115972 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63476385ns 1115975 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63476669ns 1115980 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63476954ns 1115985 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63477238ns 1115990 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63477692ns 1115998 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63477863ns 1116001 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63478147ns 1116006 1a110850 fd5ff06f jal x0, -44 +63478431ns 1116011 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63478715ns 1116016 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63479113ns 1116023 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63479284ns 1116026 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63479738ns 1116034 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63479909ns 1116037 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63480193ns 1116042 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63480477ns 1116047 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63480761ns 1116052 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63481216ns 1116060 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63481387ns 1116063 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63481671ns 1116068 1a110850 fd5ff06f jal x0, -44 +63481955ns 1116073 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63482239ns 1116078 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63482637ns 1116085 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63482807ns 1116088 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63483262ns 1116096 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63483432ns 1116099 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63483717ns 1116104 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63484001ns 1116109 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63484285ns 1116114 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63484740ns 1116122 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63484910ns 1116125 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63485194ns 1116130 1a110850 fd5ff06f jal x0, -44 +63485478ns 1116135 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63485763ns 1116140 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63486160ns 1116147 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63486331ns 1116150 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63486786ns 1116158 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63486956ns 1116161 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63487240ns 1116166 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63487524ns 1116171 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63487809ns 1116176 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63488263ns 1116184 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63488434ns 1116187 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63488718ns 1116192 1a110850 fd5ff06f jal x0, -44 +63489002ns 1116197 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63489286ns 1116202 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63489684ns 1116209 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63489855ns 1116212 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63490309ns 1116220 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63490480ns 1116223 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63490764ns 1116228 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63491048ns 1116233 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63491332ns 1116238 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63491787ns 1116246 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63491957ns 1116249 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63492241ns 1116254 1a110850 fd5ff06f jal x0, -44 +63492526ns 1116259 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63492810ns 1116264 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63493208ns 1116271 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63493378ns 1116274 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63493833ns 1116282 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63494003ns 1116285 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63494287ns 1116290 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63494572ns 1116295 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63494856ns 1116300 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63495310ns 1116308 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63495481ns 1116311 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63495765ns 1116316 1a110850 fd5ff06f jal x0, -44 +63496049ns 1116321 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63496333ns 1116326 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63496731ns 1116333 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63496902ns 1116336 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63497356ns 1116344 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63497527ns 1116347 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63497811ns 1116352 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63498095ns 1116357 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63498379ns 1116362 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63498834ns 1116370 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63499004ns 1116373 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63499289ns 1116378 1a110850 fd5ff06f jal x0, -44 +63499573ns 1116383 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63499857ns 1116388 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63500255ns 1116395 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63500425ns 1116398 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63500880ns 1116406 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63501050ns 1116409 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63501335ns 1116414 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63501619ns 1116419 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63501903ns 1116424 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63502358ns 1116432 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63502528ns 1116435 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63502812ns 1116440 1a110850 fd5ff06f jal x0, -44 +63503096ns 1116445 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63503381ns 1116450 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63503778ns 1116457 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63503949ns 1116460 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63504403ns 1116468 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63504574ns 1116471 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63504858ns 1116476 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63505142ns 1116481 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63505426ns 1116486 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63505881ns 1116494 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63506052ns 1116497 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63506336ns 1116502 1a110850 fd5ff06f jal x0, -44 +63506620ns 1116507 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63506904ns 1116512 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63507302ns 1116519 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63507472ns 1116522 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63507927ns 1116530 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63508098ns 1116533 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63508382ns 1116538 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63508666ns 1116543 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63508950ns 1116548 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63509405ns 1116556 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63509575ns 1116559 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63509859ns 1116564 1a110850 fd5ff06f jal x0, -44 +63510144ns 1116569 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63510428ns 1116574 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63510826ns 1116581 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63510996ns 1116584 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63511451ns 1116592 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63511621ns 1116595 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63511905ns 1116600 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63512189ns 1116605 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63512474ns 1116610 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63512928ns 1116618 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63513099ns 1116621 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63513383ns 1116626 1a110850 fd5ff06f jal x0, -44 +63513667ns 1116631 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63513951ns 1116636 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63514349ns 1116643 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63514520ns 1116646 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63514974ns 1116654 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63515145ns 1116657 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63515429ns 1116662 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63515713ns 1116667 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63515997ns 1116672 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63516452ns 1116680 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63516622ns 1116683 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63516907ns 1116688 1a110850 fd5ff06f jal x0, -44 +63517191ns 1116693 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63517475ns 1116698 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63517873ns 1116705 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63518043ns 1116708 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63518498ns 1116716 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63518668ns 1116719 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63518952ns 1116724 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63519237ns 1116729 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63519521ns 1116734 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63519975ns 1116742 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63520146ns 1116745 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63520430ns 1116750 1a110850 fd5ff06f jal x0, -44 +63520714ns 1116755 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63520998ns 1116760 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63521396ns 1116767 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63521567ns 1116770 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63522021ns 1116778 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63522192ns 1116781 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63522476ns 1116786 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63522760ns 1116791 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63523044ns 1116796 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63523499ns 1116804 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63523670ns 1116807 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63523954ns 1116812 1a110850 fd5ff06f jal x0, -44 +63524238ns 1116817 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63524522ns 1116822 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63524920ns 1116829 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63525090ns 1116832 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63525545ns 1116840 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63525715ns 1116843 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63526000ns 1116848 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63526284ns 1116853 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63526568ns 1116858 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63527023ns 1116866 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63527193ns 1116869 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63527477ns 1116874 1a110850 fd5ff06f jal x0, -44 +63527761ns 1116879 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63528046ns 1116884 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63528443ns 1116891 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63528614ns 1116894 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63529069ns 1116902 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63529239ns 1116905 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63529523ns 1116910 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63529807ns 1116915 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63530092ns 1116920 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63530546ns 1116928 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63530717ns 1116931 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63531001ns 1116936 1a110850 fd5ff06f jal x0, -44 +63531285ns 1116941 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63531569ns 1116946 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63531967ns 1116953 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63532138ns 1116956 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63532592ns 1116964 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63532763ns 1116967 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63533047ns 1116972 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63533331ns 1116977 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63533615ns 1116982 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63534070ns 1116990 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63534240ns 1116993 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63534524ns 1116998 1a110850 fd5ff06f jal x0, -44 +63534809ns 1117003 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63535093ns 1117008 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63535491ns 1117015 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63535661ns 1117018 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63536116ns 1117026 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63536286ns 1117029 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63536570ns 1117034 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63536855ns 1117039 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63537139ns 1117044 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63537593ns 1117052 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63537764ns 1117055 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63538048ns 1117060 1a110850 fd5ff06f jal x0, -44 +63538332ns 1117065 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63538616ns 1117070 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63539014ns 1117077 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63539185ns 1117080 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63539639ns 1117088 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63539810ns 1117091 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63540094ns 1117096 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63540378ns 1117101 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63540662ns 1117106 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63541117ns 1117114 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63541287ns 1117117 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63541572ns 1117122 1a110850 fd5ff06f jal x0, -44 +63541856ns 1117127 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63542140ns 1117132 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63542538ns 1117139 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63542708ns 1117142 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63543163ns 1117150 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63543333ns 1117153 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63543618ns 1117158 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63543902ns 1117163 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63544186ns 1117168 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63544641ns 1117176 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63544811ns 1117179 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63545095ns 1117184 1a110850 fd5ff06f jal x0, -44 +63545379ns 1117189 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63545664ns 1117194 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63546061ns 1117201 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63546232ns 1117204 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63546687ns 1117212 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63546857ns 1117215 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63547141ns 1117220 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63547425ns 1117225 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63547709ns 1117230 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63548164ns 1117238 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63548335ns 1117241 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63548619ns 1117246 1a110850 fd5ff06f jal x0, -44 +63548903ns 1117251 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63549187ns 1117256 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63549585ns 1117263 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63549755ns 1117266 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63550210ns 1117274 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63550381ns 1117277 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63550665ns 1117282 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63550949ns 1117287 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63551233ns 1117292 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63551688ns 1117300 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63551858ns 1117303 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63552142ns 1117308 1a110850 fd5ff06f jal x0, -44 +63552427ns 1117313 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63552711ns 1117318 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63553109ns 1117325 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63553279ns 1117328 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63553734ns 1117336 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63553904ns 1117339 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63554188ns 1117344 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63554472ns 1117349 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63554757ns 1117354 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63555211ns 1117362 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63555382ns 1117365 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63555666ns 1117370 1a110850 fd5ff06f jal x0, -44 +63555950ns 1117375 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63556234ns 1117380 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63556632ns 1117387 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63556803ns 1117390 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63557257ns 1117398 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63557428ns 1117401 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63557712ns 1117406 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63557996ns 1117411 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63558280ns 1117416 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63558735ns 1117424 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63558905ns 1117427 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63559190ns 1117432 1a110850 fd5ff06f jal x0, -44 +63559474ns 1117437 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63559758ns 1117442 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63560156ns 1117449 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63560326ns 1117452 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63560781ns 1117460 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63560951ns 1117463 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63561235ns 1117468 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63561520ns 1117473 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63561804ns 1117478 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63562258ns 1117486 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63562429ns 1117489 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63562713ns 1117494 1a110850 fd5ff06f jal x0, -44 +63562997ns 1117499 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63563281ns 1117504 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63563679ns 1117511 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63563850ns 1117514 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63564304ns 1117522 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63564475ns 1117525 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63564759ns 1117530 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63565043ns 1117535 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63565327ns 1117540 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63565782ns 1117548 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63565953ns 1117551 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63566237ns 1117556 1a110850 fd5ff06f jal x0, -44 +63566521ns 1117561 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63566805ns 1117566 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63567203ns 1117573 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63567373ns 1117576 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63567828ns 1117584 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63567999ns 1117587 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63568283ns 1117592 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63568567ns 1117597 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63568851ns 1117602 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63569306ns 1117610 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63569476ns 1117613 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63569760ns 1117618 1a110850 fd5ff06f jal x0, -44 +63570044ns 1117623 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63570329ns 1117628 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63570726ns 1117635 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63570897ns 1117638 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63571352ns 1117646 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63571522ns 1117649 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63571806ns 1117654 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63572090ns 1117659 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63572375ns 1117664 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63572829ns 1117672 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63573000ns 1117675 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63573284ns 1117680 1a110850 fd5ff06f jal x0, -44 +63573568ns 1117685 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63573852ns 1117690 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63574250ns 1117697 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63574421ns 1117700 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63574875ns 1117708 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63575046ns 1117711 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63575330ns 1117716 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63575614ns 1117721 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63575898ns 1117726 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63576353ns 1117734 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63576523ns 1117737 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63576807ns 1117742 1a110850 fd5ff06f jal x0, -44 +63577092ns 1117747 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63577376ns 1117752 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63577774ns 1117759 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63577944ns 1117762 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63578399ns 1117770 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63578569ns 1117773 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63578853ns 1117778 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63579138ns 1117783 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63579422ns 1117788 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63579876ns 1117796 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63580047ns 1117799 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63580331ns 1117804 1a110850 fd5ff06f jal x0, -44 +63580615ns 1117809 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63580899ns 1117814 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63581297ns 1117821 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63581468ns 1117824 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63581922ns 1117832 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63582093ns 1117835 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63582377ns 1117840 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63582661ns 1117845 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63582945ns 1117850 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63583400ns 1117858 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63583570ns 1117861 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63583855ns 1117866 1a110850 fd5ff06f jal x0, -44 +63584139ns 1117871 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63584423ns 1117876 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63584821ns 1117883 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63584991ns 1117886 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63585446ns 1117894 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63585616ns 1117897 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63585901ns 1117902 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63586185ns 1117907 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63586469ns 1117912 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63586924ns 1117920 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63587094ns 1117923 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63587378ns 1117928 1a110850 fd5ff06f jal x0, -44 +63587662ns 1117933 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63587947ns 1117938 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63588344ns 1117945 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63588515ns 1117948 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63588970ns 1117956 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63589140ns 1117959 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63589424ns 1117964 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63589708ns 1117969 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63589992ns 1117974 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63590447ns 1117982 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63590618ns 1117985 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63590902ns 1117990 1a110850 fd5ff06f jal x0, -44 +63591186ns 1117995 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63591470ns 1118000 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63591868ns 1118007 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63592038ns 1118010 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63592493ns 1118018 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63592664ns 1118021 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63592948ns 1118026 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63593232ns 1118031 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63593516ns 1118036 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63593971ns 1118044 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63594141ns 1118047 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63594425ns 1118052 1a110850 fd5ff06f jal x0, -44 +63594710ns 1118057 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63594994ns 1118062 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63595392ns 1118069 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63595562ns 1118072 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63596017ns 1118080 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63596187ns 1118083 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63596471ns 1118088 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63596755ns 1118093 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63597040ns 1118098 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63597494ns 1118106 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63597665ns 1118109 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63597949ns 1118114 1a110850 fd5ff06f jal x0, -44 +63598233ns 1118119 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63598517ns 1118124 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63598915ns 1118131 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63599086ns 1118134 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63599540ns 1118142 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63599711ns 1118145 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63599995ns 1118150 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63600279ns 1118155 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63600563ns 1118160 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63601018ns 1118168 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63601188ns 1118171 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63601473ns 1118176 1a110850 fd5ff06f jal x0, -44 +63601757ns 1118181 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63602041ns 1118186 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63602439ns 1118193 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63602609ns 1118196 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63603064ns 1118204 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63603234ns 1118207 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63603519ns 1118212 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63603803ns 1118217 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63604087ns 1118222 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63604541ns 1118230 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63604712ns 1118233 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63604996ns 1118238 1a110850 fd5ff06f jal x0, -44 +63605280ns 1118243 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63605564ns 1118248 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63605962ns 1118255 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63606133ns 1118258 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63606587ns 1118266 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63606758ns 1118269 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63607042ns 1118274 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63607326ns 1118279 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63607610ns 1118284 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63608065ns 1118292 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63608236ns 1118295 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63608520ns 1118300 1a110850 fd5ff06f jal x0, -44 +63608804ns 1118305 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63609088ns 1118310 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63609486ns 1118317 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63609656ns 1118320 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63610111ns 1118328 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63610282ns 1118331 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63610566ns 1118336 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63610850ns 1118341 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63611134ns 1118346 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63611589ns 1118354 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63611759ns 1118357 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63612043ns 1118362 1a110850 fd5ff06f jal x0, -44 +63612327ns 1118367 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63612612ns 1118372 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63613009ns 1118379 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63613180ns 1118382 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63613635ns 1118390 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63613805ns 1118393 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63614089ns 1118398 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63614373ns 1118403 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63614658ns 1118408 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63615112ns 1118416 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63615283ns 1118419 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63615567ns 1118424 1a110850 fd5ff06f jal x0, -44 +63615851ns 1118429 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63616135ns 1118434 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63616533ns 1118441 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63616704ns 1118444 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63617158ns 1118452 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63617329ns 1118455 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63617613ns 1118460 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63617897ns 1118465 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63618181ns 1118470 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63618636ns 1118478 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63618806ns 1118481 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63619090ns 1118486 1a110850 fd5ff06f jal x0, -44 +63619375ns 1118491 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63619659ns 1118496 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63620057ns 1118503 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63620227ns 1118506 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63620682ns 1118514 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63620852ns 1118517 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63621136ns 1118522 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63621421ns 1118527 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63621705ns 1118532 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63622159ns 1118540 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63622330ns 1118543 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63622614ns 1118548 1a110850 fd5ff06f jal x0, -44 +63622898ns 1118553 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63623182ns 1118558 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63623580ns 1118565 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63623751ns 1118568 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63624205ns 1118576 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63624376ns 1118579 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63624660ns 1118584 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63624944ns 1118589 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63625228ns 1118594 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63625683ns 1118602 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63625853ns 1118605 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63626138ns 1118610 1a110850 fd5ff06f jal x0, -44 +63626422ns 1118615 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63626706ns 1118620 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63627104ns 1118627 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63627274ns 1118630 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63627729ns 1118638 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63627899ns 1118641 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63628184ns 1118646 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63628468ns 1118651 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63628752ns 1118656 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63629207ns 1118664 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63629377ns 1118667 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63629661ns 1118672 1a110850 fd5ff06f jal x0, -44 +63629945ns 1118677 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63630230ns 1118682 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63630627ns 1118689 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63630798ns 1118692 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63631253ns 1118700 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63631423ns 1118703 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63631707ns 1118708 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63631991ns 1118713 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63632275ns 1118718 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63632730ns 1118726 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63632901ns 1118729 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63633185ns 1118734 1a110850 fd5ff06f jal x0, -44 +63633469ns 1118739 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63633753ns 1118744 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63634151ns 1118751 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63634321ns 1118754 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63634776ns 1118762 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63634947ns 1118765 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63635231ns 1118770 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63635515ns 1118775 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63635799ns 1118780 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63636254ns 1118788 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63636424ns 1118791 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63636708ns 1118796 1a110850 fd5ff06f jal x0, -44 +63636993ns 1118801 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63637277ns 1118806 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63637675ns 1118813 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63637845ns 1118816 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63638300ns 1118824 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63638470ns 1118827 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63638754ns 1118832 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63639039ns 1118837 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63639323ns 1118842 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63639777ns 1118850 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63639948ns 1118853 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63640232ns 1118858 1a110850 fd5ff06f jal x0, -44 +63640516ns 1118863 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63640800ns 1118868 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63641198ns 1118875 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63641369ns 1118878 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63641823ns 1118886 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63641994ns 1118889 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63642278ns 1118894 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63642562ns 1118899 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63642846ns 1118904 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63643301ns 1118912 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63643471ns 1118915 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63643756ns 1118920 1a110850 fd5ff06f jal x0, -44 +63644040ns 1118925 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63644324ns 1118930 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63644722ns 1118937 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63644892ns 1118940 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63645347ns 1118948 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63645517ns 1118951 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63645802ns 1118956 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63646086ns 1118961 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63646370ns 1118966 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63646824ns 1118974 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63646995ns 1118977 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63647279ns 1118982 1a110850 fd5ff06f jal x0, -44 +63647563ns 1118987 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63647847ns 1118992 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63648245ns 1118999 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63648416ns 1119002 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63648870ns 1119010 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63649041ns 1119013 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63649325ns 1119018 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63649609ns 1119023 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63649893ns 1119028 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63650348ns 1119036 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63650519ns 1119039 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63650803ns 1119044 1a110850 fd5ff06f jal x0, -44 +63651087ns 1119049 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63651371ns 1119054 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63651769ns 1119061 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63651939ns 1119064 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63652394ns 1119072 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63652565ns 1119075 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63652849ns 1119080 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63653133ns 1119085 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63653417ns 1119090 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63653872ns 1119098 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63654042ns 1119101 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63654326ns 1119106 1a110850 fd5ff06f jal x0, -44 +63654610ns 1119111 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63654895ns 1119116 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63655292ns 1119123 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63655463ns 1119126 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63655918ns 1119134 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63656088ns 1119137 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63656372ns 1119142 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63656656ns 1119147 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63656941ns 1119152 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63657395ns 1119160 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63657566ns 1119163 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63657850ns 1119168 1a110850 fd5ff06f jal x0, -44 +63658134ns 1119173 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63658418ns 1119178 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63658816ns 1119185 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63658987ns 1119188 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63659441ns 1119196 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63659612ns 1119199 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63659896ns 1119204 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63660180ns 1119209 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63660464ns 1119214 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63660919ns 1119222 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63661089ns 1119225 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63661373ns 1119230 1a110850 fd5ff06f jal x0, -44 +63661658ns 1119235 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63661942ns 1119240 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63662340ns 1119247 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63662510ns 1119250 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63662965ns 1119258 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63663135ns 1119261 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63663419ns 1119266 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63663704ns 1119271 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63663988ns 1119276 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63664442ns 1119284 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63664613ns 1119287 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63664897ns 1119292 1a110850 fd5ff06f jal x0, -44 +63665181ns 1119297 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63665465ns 1119302 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63665863ns 1119309 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63666034ns 1119312 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63666488ns 1119320 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63666659ns 1119323 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63666943ns 1119328 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63667227ns 1119333 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63667511ns 1119338 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63667966ns 1119346 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63668136ns 1119349 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63668421ns 1119354 1a110850 fd5ff06f jal x0, -44 +63668705ns 1119359 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63668989ns 1119364 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63669387ns 1119371 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63669557ns 1119374 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63670012ns 1119382 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63670182ns 1119385 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63670467ns 1119390 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63670751ns 1119395 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63671035ns 1119400 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63671490ns 1119408 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63671660ns 1119411 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63671944ns 1119416 1a110850 fd5ff06f jal x0, -44 +63672228ns 1119421 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63672513ns 1119426 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63672910ns 1119433 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63673081ns 1119436 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63673536ns 1119444 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63673706ns 1119447 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63673990ns 1119452 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63674274ns 1119457 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63674559ns 1119462 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63675013ns 1119470 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63675184ns 1119473 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63675468ns 1119478 1a110850 fd5ff06f jal x0, -44 +63675752ns 1119483 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63676036ns 1119488 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63676434ns 1119495 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63676604ns 1119498 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63677059ns 1119506 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63677230ns 1119509 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63677514ns 1119514 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63677798ns 1119519 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63678082ns 1119524 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63678537ns 1119532 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63678707ns 1119535 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63678991ns 1119540 1a110850 fd5ff06f jal x0, -44 +63679276ns 1119545 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63679560ns 1119550 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63679958ns 1119557 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63680128ns 1119560 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63680583ns 1119568 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63680753ns 1119571 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63681037ns 1119576 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63681322ns 1119581 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63681606ns 1119586 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63682060ns 1119594 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63682231ns 1119597 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63682515ns 1119602 1a110850 fd5ff06f jal x0, -44 +63682799ns 1119607 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63683083ns 1119612 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63683481ns 1119619 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63683652ns 1119622 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63684106ns 1119630 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63684277ns 1119633 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63684561ns 1119638 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63684845ns 1119643 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63685129ns 1119648 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63685584ns 1119656 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63685754ns 1119659 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63686039ns 1119664 1a110850 fd5ff06f jal x0, -44 +63686323ns 1119669 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63686607ns 1119674 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63687005ns 1119681 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63687175ns 1119684 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63687630ns 1119692 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63687800ns 1119695 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63688085ns 1119700 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63688369ns 1119705 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63688653ns 1119710 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63689107ns 1119718 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63689278ns 1119721 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63689562ns 1119726 1a110850 fd5ff06f jal x0, -44 +63689846ns 1119731 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63690130ns 1119736 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63690528ns 1119743 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63690699ns 1119746 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63691153ns 1119754 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63691324ns 1119757 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63691608ns 1119762 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63691892ns 1119767 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63692176ns 1119772 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63692631ns 1119780 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63692802ns 1119783 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63693086ns 1119788 1a110850 fd5ff06f jal x0, -44 +63693370ns 1119793 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63693654ns 1119798 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63694052ns 1119805 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63694222ns 1119808 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63694677ns 1119816 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63694848ns 1119819 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63695132ns 1119824 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63695416ns 1119829 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63695700ns 1119834 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63696155ns 1119842 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63696325ns 1119845 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63696609ns 1119850 1a110850 fd5ff06f jal x0, -44 +63696893ns 1119855 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63697178ns 1119860 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63697575ns 1119867 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63697746ns 1119870 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63698201ns 1119878 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63698371ns 1119881 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63698655ns 1119886 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63698939ns 1119891 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63699224ns 1119896 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63699678ns 1119904 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63699849ns 1119907 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63700133ns 1119912 1a110850 fd5ff06f jal x0, -44 +63700417ns 1119917 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63700701ns 1119922 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63701099ns 1119929 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63701270ns 1119932 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63701724ns 1119940 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63701895ns 1119943 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63702179ns 1119948 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63702463ns 1119953 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63702747ns 1119958 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63703202ns 1119966 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63703372ns 1119969 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63703656ns 1119974 1a110850 fd5ff06f jal x0, -44 +63703941ns 1119979 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63704225ns 1119984 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63704623ns 1119991 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63704793ns 1119994 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63705248ns 1120002 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63705418ns 1120005 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63705702ns 1120010 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63705987ns 1120015 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63706271ns 1120020 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63706725ns 1120028 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63706896ns 1120031 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63707180ns 1120036 1a110850 fd5ff06f jal x0, -44 +63707464ns 1120041 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63707748ns 1120046 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63708146ns 1120053 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63708317ns 1120056 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63708771ns 1120064 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63708942ns 1120067 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63709226ns 1120072 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63709510ns 1120077 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63709794ns 1120082 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63710249ns 1120090 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63710419ns 1120093 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63710704ns 1120098 1a110850 fd5ff06f jal x0, -44 +63710988ns 1120103 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63711272ns 1120108 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63711670ns 1120115 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63711840ns 1120118 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63712295ns 1120126 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63712465ns 1120129 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63712750ns 1120134 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63713034ns 1120139 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63713318ns 1120144 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63713773ns 1120152 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63713943ns 1120155 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63714227ns 1120160 1a110850 fd5ff06f jal x0, -44 +63714511ns 1120165 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63714796ns 1120170 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63715193ns 1120177 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63715364ns 1120180 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63715819ns 1120188 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63715989ns 1120191 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63716273ns 1120196 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63716557ns 1120201 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63716842ns 1120206 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63717296ns 1120214 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63717467ns 1120217 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63717751ns 1120222 1a110850 fd5ff06f jal x0, -44 +63718035ns 1120227 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63718319ns 1120232 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63718717ns 1120239 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63718887ns 1120242 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63719342ns 1120250 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63719513ns 1120253 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63719797ns 1120258 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63720081ns 1120263 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63720365ns 1120268 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63720820ns 1120276 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63720990ns 1120279 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63721274ns 1120284 1a110850 fd5ff06f jal x0, -44 +63721559ns 1120289 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63721843ns 1120294 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63722241ns 1120301 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63722411ns 1120304 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63722866ns 1120312 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63723036ns 1120315 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63723320ns 1120320 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63723605ns 1120325 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63723889ns 1120330 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63724343ns 1120338 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63724514ns 1120341 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63724798ns 1120346 1a110850 fd5ff06f jal x0, -44 +63725082ns 1120351 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63725366ns 1120356 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63725764ns 1120363 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63725935ns 1120366 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63726389ns 1120374 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63726560ns 1120377 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63726844ns 1120382 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63727128ns 1120387 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63727412ns 1120392 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63727867ns 1120400 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63728037ns 1120403 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63728322ns 1120408 1a110850 fd5ff06f jal x0, -44 +63728606ns 1120413 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63728890ns 1120418 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63729288ns 1120425 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63729458ns 1120428 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63729913ns 1120436 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63730083ns 1120439 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63730368ns 1120444 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63730652ns 1120449 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63730936ns 1120454 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63731391ns 1120462 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63731561ns 1120465 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63731845ns 1120470 1a110850 fd5ff06f jal x0, -44 +63732129ns 1120475 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63732413ns 1120480 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63732811ns 1120487 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63732982ns 1120490 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63733436ns 1120498 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63733607ns 1120501 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63733891ns 1120506 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63734175ns 1120511 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63734459ns 1120516 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63734914ns 1120524 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63735085ns 1120527 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63735369ns 1120532 1a110850 fd5ff06f jal x0, -44 +63735653ns 1120537 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63735937ns 1120542 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63736335ns 1120549 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63736505ns 1120552 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63736960ns 1120560 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63737131ns 1120563 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63737415ns 1120568 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63737699ns 1120573 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63737983ns 1120578 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63738438ns 1120586 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63738608ns 1120589 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63738892ns 1120594 1a110850 fd5ff06f jal x0, -44 +63739176ns 1120599 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63739461ns 1120604 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63739858ns 1120611 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63740029ns 1120614 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63740484ns 1120622 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63740654ns 1120625 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63740938ns 1120630 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63741222ns 1120635 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63741507ns 1120640 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63741961ns 1120648 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63742132ns 1120651 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63742416ns 1120656 1a110850 fd5ff06f jal x0, -44 +63742700ns 1120661 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63742984ns 1120666 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63743382ns 1120673 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63743553ns 1120676 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63744007ns 1120684 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63744178ns 1120687 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63744462ns 1120692 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63744746ns 1120697 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63745030ns 1120702 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63745485ns 1120710 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63745655ns 1120713 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63745939ns 1120718 1a110850 fd5ff06f jal x0, -44 +63746224ns 1120723 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63746508ns 1120728 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63746906ns 1120735 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63747076ns 1120738 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63747531ns 1120746 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63747701ns 1120749 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63747985ns 1120754 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63748270ns 1120759 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63748554ns 1120764 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63749008ns 1120772 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63749179ns 1120775 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63749463ns 1120780 1a110850 fd5ff06f jal x0, -44 +63749747ns 1120785 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63750031ns 1120790 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63750429ns 1120797 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63750600ns 1120800 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63751054ns 1120808 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63751225ns 1120811 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63751509ns 1120816 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63751793ns 1120821 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63752077ns 1120826 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63752532ns 1120834 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63752703ns 1120837 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63752987ns 1120842 1a110850 fd5ff06f jal x0, -44 +63753271ns 1120847 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63753555ns 1120852 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63753953ns 1120859 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63754123ns 1120862 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63754578ns 1120870 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63754748ns 1120873 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63755033ns 1120878 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63755317ns 1120883 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63755601ns 1120888 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63756056ns 1120896 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63756226ns 1120899 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63756510ns 1120904 1a110850 fd5ff06f jal x0, -44 +63756794ns 1120909 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63757079ns 1120914 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63757476ns 1120921 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63757647ns 1120924 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63758102ns 1120932 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63758272ns 1120935 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63758556ns 1120940 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63758840ns 1120945 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63759125ns 1120950 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63759579ns 1120958 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63759750ns 1120961 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63760034ns 1120966 1a110850 fd5ff06f jal x0, -44 +63760318ns 1120971 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63760602ns 1120976 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63761000ns 1120983 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63761170ns 1120986 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63761625ns 1120994 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63761796ns 1120997 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63762080ns 1121002 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63762364ns 1121007 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63762648ns 1121012 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63763103ns 1121020 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63763273ns 1121023 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63763557ns 1121028 1a110850 fd5ff06f jal x0, -44 +63763842ns 1121033 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63764126ns 1121038 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63764524ns 1121045 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63764694ns 1121048 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63765149ns 1121056 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63765319ns 1121059 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63765603ns 1121064 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63765888ns 1121069 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63766172ns 1121074 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63766626ns 1121082 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63766797ns 1121085 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63767081ns 1121090 1a110850 fd5ff06f jal x0, -44 +63767365ns 1121095 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63767649ns 1121100 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63768047ns 1121107 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63768218ns 1121110 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63768672ns 1121118 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63768843ns 1121121 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63769127ns 1121126 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63769411ns 1121131 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63769695ns 1121136 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63770150ns 1121144 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63770320ns 1121147 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63770605ns 1121152 1a110850 fd5ff06f jal x0, -44 +63770889ns 1121157 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63771173ns 1121162 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63771571ns 1121169 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63771741ns 1121172 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63772196ns 1121180 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63772366ns 1121183 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63772651ns 1121188 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63772935ns 1121193 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63773219ns 1121198 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63773674ns 1121206 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63773844ns 1121209 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63774128ns 1121214 1a110850 fd5ff06f jal x0, -44 +63774412ns 1121219 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63774696ns 1121224 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63775094ns 1121231 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63775265ns 1121234 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63775719ns 1121242 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63775890ns 1121245 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63776174ns 1121250 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63776458ns 1121255 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63776742ns 1121260 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63777197ns 1121268 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63777368ns 1121271 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63777652ns 1121276 1a110850 fd5ff06f jal x0, -44 +63777936ns 1121281 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63778220ns 1121286 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63778618ns 1121293 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63778788ns 1121296 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63779243ns 1121304 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63779414ns 1121307 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63779698ns 1121312 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63779982ns 1121317 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63780266ns 1121322 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63780721ns 1121330 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63780891ns 1121333 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63781175ns 1121338 1a110850 fd5ff06f jal x0, -44 +63781459ns 1121343 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63781744ns 1121348 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63782141ns 1121355 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63782312ns 1121358 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63782767ns 1121366 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63782937ns 1121369 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63783221ns 1121374 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63783505ns 1121379 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63783790ns 1121384 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63784244ns 1121392 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63784415ns 1121395 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63784699ns 1121400 1a110850 fd5ff06f jal x0, -44 +63784983ns 1121405 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63785267ns 1121410 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63785665ns 1121417 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63785836ns 1121420 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63786290ns 1121428 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63786461ns 1121431 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63786745ns 1121436 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63787029ns 1121441 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63787313ns 1121446 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63787768ns 1121454 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63787938ns 1121457 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63788223ns 1121462 1a110850 fd5ff06f jal x0, -44 +63788507ns 1121467 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63788791ns 1121472 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63789189ns 1121479 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63789359ns 1121482 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63789814ns 1121490 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63789984ns 1121493 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63790268ns 1121498 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63790553ns 1121503 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63790837ns 1121508 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63791291ns 1121516 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63791462ns 1121519 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63791746ns 1121524 1a110850 fd5ff06f jal x0, -44 +63792030ns 1121529 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63792314ns 1121534 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63792712ns 1121541 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63792883ns 1121544 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63793337ns 1121552 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63793508ns 1121555 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63793792ns 1121560 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63794076ns 1121565 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63794360ns 1121570 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63794815ns 1121578 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63794986ns 1121581 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63795270ns 1121586 1a110850 fd5ff06f jal x0, -44 +63795554ns 1121591 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63795838ns 1121596 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63796236ns 1121603 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63796406ns 1121606 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63796861ns 1121614 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63797031ns 1121617 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63797316ns 1121622 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63797600ns 1121627 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63797884ns 1121632 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63798339ns 1121640 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63798509ns 1121643 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63798793ns 1121648 1a110850 fd5ff06f jal x0, -44 +63799077ns 1121653 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63799362ns 1121658 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63799759ns 1121665 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63799930ns 1121668 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63800385ns 1121676 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63800555ns 1121679 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63800839ns 1121684 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63801123ns 1121689 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63801408ns 1121694 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63801862ns 1121702 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63802033ns 1121705 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63802317ns 1121710 1a110850 fd5ff06f jal x0, -44 +63802601ns 1121715 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63802885ns 1121720 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63803283ns 1121727 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63803453ns 1121730 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63803908ns 1121738 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63804079ns 1121741 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63804363ns 1121746 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63804647ns 1121751 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63804931ns 1121756 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63805386ns 1121764 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63805556ns 1121767 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63805840ns 1121772 1a110850 fd5ff06f jal x0, -44 +63806125ns 1121777 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63806409ns 1121782 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63806807ns 1121789 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63806977ns 1121792 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63807432ns 1121800 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63807602ns 1121803 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63807886ns 1121808 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63808171ns 1121813 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63808455ns 1121818 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63808909ns 1121826 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63809080ns 1121829 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63809364ns 1121834 1a110850 fd5ff06f jal x0, -44 +63809648ns 1121839 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63809932ns 1121844 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63810330ns 1121851 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63810501ns 1121854 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63810955ns 1121862 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63811126ns 1121865 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63811410ns 1121870 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63811694ns 1121875 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63811978ns 1121880 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63812433ns 1121888 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63812603ns 1121891 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63812888ns 1121896 1a110850 fd5ff06f jal x0, -44 +63813172ns 1121901 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63813456ns 1121906 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63813854ns 1121913 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63814024ns 1121916 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63814479ns 1121924 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63814649ns 1121927 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63814934ns 1121932 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63815218ns 1121937 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63815502ns 1121942 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63815957ns 1121950 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63816127ns 1121953 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63816411ns 1121958 1a110850 fd5ff06f jal x0, -44 +63816695ns 1121963 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63816979ns 1121968 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63817377ns 1121975 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63817548ns 1121978 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63818002ns 1121986 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63818173ns 1121989 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63818457ns 1121994 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63818741ns 1121999 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63819025ns 1122004 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63819480ns 1122012 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63819651ns 1122015 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63819935ns 1122020 1a110850 fd5ff06f jal x0, -44 +63820219ns 1122025 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63820503ns 1122030 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63820901ns 1122037 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63821071ns 1122040 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63821526ns 1122048 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63821697ns 1122051 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63821981ns 1122056 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63822265ns 1122061 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63822549ns 1122066 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63823004ns 1122074 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63823174ns 1122077 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63823458ns 1122082 1a110850 fd5ff06f jal x0, -44 +63823743ns 1122087 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63824027ns 1122092 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63824424ns 1122099 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63824595ns 1122102 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63825050ns 1122110 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63825220ns 1122113 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63825504ns 1122118 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63825788ns 1122123 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63826073ns 1122128 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63826527ns 1122136 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63826698ns 1122139 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63826982ns 1122144 1a110850 fd5ff06f jal x0, -44 +63827266ns 1122149 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63827550ns 1122154 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63827948ns 1122161 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63828119ns 1122164 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63828573ns 1122172 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63828744ns 1122175 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63829028ns 1122180 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63829312ns 1122185 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63829596ns 1122190 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63830051ns 1122198 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63830221ns 1122201 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63830506ns 1122206 1a110850 fd5ff06f jal x0, -44 +63830790ns 1122211 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63831074ns 1122216 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63831472ns 1122223 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63831642ns 1122226 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63832097ns 1122234 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63832267ns 1122237 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63832551ns 1122242 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63832836ns 1122247 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63833120ns 1122252 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63833574ns 1122260 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63833745ns 1122263 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63834029ns 1122268 1a110850 fd5ff06f jal x0, -44 +63834313ns 1122273 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63834597ns 1122278 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63834995ns 1122285 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63835166ns 1122288 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63835620ns 1122296 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63835791ns 1122299 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63836075ns 1122304 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63836359ns 1122309 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63836643ns 1122314 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63837098ns 1122322 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63837269ns 1122325 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63837553ns 1122330 1a110850 fd5ff06f jal x0, -44 +63837837ns 1122335 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63838121ns 1122340 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63838519ns 1122347 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63838689ns 1122350 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63839144ns 1122358 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63839314ns 1122361 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63839599ns 1122366 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63839883ns 1122371 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63840167ns 1122376 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63840622ns 1122384 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63840792ns 1122387 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63841076ns 1122392 1a110850 fd5ff06f jal x0, -44 +63841360ns 1122397 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63841645ns 1122402 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63842042ns 1122409 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63842213ns 1122412 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63842668ns 1122420 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63842838ns 1122423 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63843122ns 1122428 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63843406ns 1122433 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63843691ns 1122438 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63844145ns 1122446 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63844316ns 1122449 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63844600ns 1122454 1a110850 fd5ff06f jal x0, -44 +63844884ns 1122459 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63845168ns 1122464 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63845566ns 1122471 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63845736ns 1122474 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63846191ns 1122482 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63846362ns 1122485 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63846646ns 1122490 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63846930ns 1122495 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63847214ns 1122500 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63847669ns 1122508 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63847839ns 1122511 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63848123ns 1122516 1a110850 fd5ff06f jal x0, -44 +63848408ns 1122521 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63848692ns 1122526 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63849090ns 1122533 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63849260ns 1122536 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63849715ns 1122544 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63849885ns 1122547 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63850169ns 1122552 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63850454ns 1122557 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63850738ns 1122562 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63851192ns 1122570 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63851363ns 1122573 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63851647ns 1122578 1a110850 fd5ff06f jal x0, -44 +63851931ns 1122583 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63852215ns 1122588 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63852613ns 1122595 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63852784ns 1122598 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63853238ns 1122606 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63853409ns 1122609 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63853693ns 1122614 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63853977ns 1122619 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63854261ns 1122624 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63854716ns 1122632 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63854886ns 1122635 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63855171ns 1122640 1a110850 fd5ff06f jal x0, -44 +63855455ns 1122645 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63855739ns 1122650 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63856137ns 1122657 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63856307ns 1122660 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63856762ns 1122668 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63856932ns 1122671 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63857217ns 1122676 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63857501ns 1122681 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63857785ns 1122686 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63858240ns 1122694 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63858410ns 1122697 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63858694ns 1122702 1a110850 fd5ff06f jal x0, -44 +63858978ns 1122707 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63859263ns 1122712 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63859660ns 1122719 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63859831ns 1122722 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63860285ns 1122730 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63860456ns 1122733 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63860740ns 1122738 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63861024ns 1122743 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63861308ns 1122748 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63861763ns 1122756 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63861934ns 1122759 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63862218ns 1122764 1a110850 fd5ff06f jal x0, -44 +63862502ns 1122769 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63862786ns 1122774 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63863184ns 1122781 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63863354ns 1122784 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63863809ns 1122792 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63863980ns 1122795 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63864264ns 1122800 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63864548ns 1122805 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63864832ns 1122810 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63865287ns 1122818 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63865457ns 1122821 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63865741ns 1122826 1a110850 fd5ff06f jal x0, -44 +63866026ns 1122831 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63866310ns 1122836 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63866707ns 1122843 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63866878ns 1122846 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63867333ns 1122854 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63867503ns 1122857 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63867787ns 1122862 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63868071ns 1122867 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63868356ns 1122872 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63868810ns 1122880 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63868981ns 1122883 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63869265ns 1122888 1a110850 fd5ff06f jal x0, -44 +63869549ns 1122893 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63869833ns 1122898 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63870231ns 1122905 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63870402ns 1122908 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63870856ns 1122916 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63871027ns 1122919 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63871311ns 1122924 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63871595ns 1122929 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63871879ns 1122934 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63872334ns 1122942 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63872504ns 1122945 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63872789ns 1122950 1a110850 fd5ff06f jal x0, -44 +63873073ns 1122955 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63873357ns 1122960 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63873755ns 1122967 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63873925ns 1122970 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63874380ns 1122978 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63874550ns 1122981 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63874834ns 1122986 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63875119ns 1122991 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63875403ns 1122996 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63875857ns 1123004 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63876028ns 1123007 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63876312ns 1123012 1a110850 fd5ff06f jal x0, -44 +63876596ns 1123017 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63876880ns 1123022 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63877278ns 1123029 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63877449ns 1123032 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63877903ns 1123040 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63878074ns 1123043 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63878358ns 1123048 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63878642ns 1123053 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63878926ns 1123058 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63879381ns 1123066 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63879552ns 1123069 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63879836ns 1123074 1a110850 fd5ff06f jal x0, -44 +63880120ns 1123079 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63880404ns 1123084 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63880802ns 1123091 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63880972ns 1123094 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63881427ns 1123102 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63881597ns 1123105 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63881882ns 1123110 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63882166ns 1123115 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63882450ns 1123120 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63882905ns 1123128 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63883075ns 1123131 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63883359ns 1123136 1a110850 fd5ff06f jal x0, -44 +63883643ns 1123141 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63883928ns 1123146 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63884325ns 1123153 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63884496ns 1123156 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63884951ns 1123164 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63885121ns 1123167 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63885405ns 1123172 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63885689ns 1123177 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63885974ns 1123182 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63886428ns 1123190 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63886599ns 1123193 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63886883ns 1123198 1a110850 fd5ff06f jal x0, -44 +63887167ns 1123203 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63887451ns 1123208 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63887849ns 1123215 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63888019ns 1123218 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63888474ns 1123226 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63888645ns 1123229 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63888929ns 1123234 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63889213ns 1123239 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63889497ns 1123244 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63889952ns 1123252 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63890122ns 1123255 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63890406ns 1123260 1a110850 fd5ff06f jal x0, -44 +63890691ns 1123265 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63890975ns 1123270 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63891373ns 1123277 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63891543ns 1123280 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63891998ns 1123288 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63892168ns 1123291 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63892452ns 1123296 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63892737ns 1123301 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63893021ns 1123306 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63893475ns 1123314 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63893646ns 1123317 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63893930ns 1123322 1a110850 fd5ff06f jal x0, -44 +63894214ns 1123327 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63894498ns 1123332 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63894896ns 1123339 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63895067ns 1123342 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63895521ns 1123350 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63895692ns 1123353 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63895976ns 1123358 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63896260ns 1123363 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63896544ns 1123368 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63896999ns 1123376 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63897169ns 1123379 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63897454ns 1123384 1a110850 fd5ff06f jal x0, -44 +63897738ns 1123389 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63898022ns 1123394 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63898420ns 1123401 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63898590ns 1123404 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63899045ns 1123412 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63899215ns 1123415 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63899500ns 1123420 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63899784ns 1123425 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63900068ns 1123430 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63900523ns 1123438 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63900693ns 1123441 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63900977ns 1123446 1a110850 fd5ff06f jal x0, -44 +63901261ns 1123451 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63901546ns 1123456 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63901943ns 1123463 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63902114ns 1123466 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63902568ns 1123474 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63902739ns 1123477 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63903023ns 1123482 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63903307ns 1123487 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63903591ns 1123492 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63904046ns 1123500 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63904217ns 1123503 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63904501ns 1123508 1a110850 fd5ff06f jal x0, -44 +63904785ns 1123513 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63905069ns 1123518 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63905467ns 1123525 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63905637ns 1123528 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63906092ns 1123536 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63906263ns 1123539 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63906547ns 1123544 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63906831ns 1123549 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63907115ns 1123554 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63907570ns 1123562 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63907740ns 1123565 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63908024ns 1123570 1a110850 fd5ff06f jal x0, -44 +63908309ns 1123575 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63908593ns 1123580 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63908991ns 1123587 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63909161ns 1123590 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63909616ns 1123598 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63909786ns 1123601 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63910070ns 1123606 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63910354ns 1123611 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63910639ns 1123616 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63911093ns 1123624 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63911264ns 1123627 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63911548ns 1123632 1a110850 fd5ff06f jal x0, -44 +63911832ns 1123637 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63912116ns 1123642 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63912514ns 1123649 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63912685ns 1123652 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63913139ns 1123660 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63913310ns 1123663 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63913594ns 1123668 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63913878ns 1123673 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63914162ns 1123678 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63914617ns 1123686 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63914787ns 1123689 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63915072ns 1123694 1a110850 fd5ff06f jal x0, -44 +63915356ns 1123699 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63915640ns 1123704 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63916038ns 1123711 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63916208ns 1123714 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63916663ns 1123722 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63916833ns 1123725 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63917117ns 1123730 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63917402ns 1123735 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63917686ns 1123740 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63918140ns 1123748 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63918311ns 1123751 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63918595ns 1123756 1a110850 fd5ff06f jal x0, -44 +63918879ns 1123761 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63919163ns 1123766 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63919561ns 1123773 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63919732ns 1123776 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63920186ns 1123784 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63920357ns 1123787 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63920641ns 1123792 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63920925ns 1123797 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63921209ns 1123802 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63921664ns 1123810 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63921835ns 1123813 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63922119ns 1123818 1a110850 fd5ff06f jal x0, -44 +63922403ns 1123823 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63922687ns 1123828 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63923085ns 1123835 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63923255ns 1123838 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63923710ns 1123846 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63923880ns 1123849 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63924165ns 1123854 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63924449ns 1123859 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63924733ns 1123864 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63925188ns 1123872 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63925358ns 1123875 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63925642ns 1123880 1a110850 fd5ff06f jal x0, -44 +63925926ns 1123885 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63926211ns 1123890 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63926608ns 1123897 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63926779ns 1123900 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63927234ns 1123908 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63927404ns 1123911 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63927688ns 1123916 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63927972ns 1123921 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63928257ns 1123926 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63928711ns 1123934 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63928882ns 1123937 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63929166ns 1123942 1a110850 fd5ff06f jal x0, -44 +63929450ns 1123947 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63929734ns 1123952 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63930132ns 1123959 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63930303ns 1123962 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63930757ns 1123970 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63930928ns 1123973 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63931212ns 1123978 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63931496ns 1123983 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63931780ns 1123988 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63932235ns 1123996 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63932405ns 1123999 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63932689ns 1124004 1a110850 fd5ff06f jal x0, -44 +63932974ns 1124009 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63933258ns 1124014 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63933656ns 1124021 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63933826ns 1124024 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63934281ns 1124032 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63934451ns 1124035 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63934735ns 1124040 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63935020ns 1124045 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63935304ns 1124050 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63935758ns 1124058 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63935929ns 1124061 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63936213ns 1124066 1a110850 fd5ff06f jal x0, -44 +63936497ns 1124071 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63936781ns 1124076 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63937179ns 1124083 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63937350ns 1124086 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63937804ns 1124094 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63937975ns 1124097 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63938259ns 1124102 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63938543ns 1124107 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63938827ns 1124112 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63939282ns 1124120 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63939452ns 1124123 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63939737ns 1124128 1a110850 fd5ff06f jal x0, -44 +63940021ns 1124133 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63940305ns 1124138 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63940703ns 1124145 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63940873ns 1124148 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63941328ns 1124156 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63941498ns 1124159 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63941783ns 1124164 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63942067ns 1124169 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63942351ns 1124174 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63942806ns 1124182 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63942976ns 1124185 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63943260ns 1124190 1a110850 fd5ff06f jal x0, -44 +63943544ns 1124195 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63943829ns 1124200 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63944226ns 1124207 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63944397ns 1124210 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63944851ns 1124218 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63945022ns 1124221 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63945306ns 1124226 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63945590ns 1124231 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63945874ns 1124236 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63946329ns 1124244 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63946500ns 1124247 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63946784ns 1124252 1a110850 fd5ff06f jal x0, -44 +63947068ns 1124257 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63947352ns 1124262 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63947750ns 1124269 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63947920ns 1124272 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63948375ns 1124280 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63948546ns 1124283 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63948830ns 1124288 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63949114ns 1124293 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63949398ns 1124298 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63949853ns 1124306 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63950023ns 1124309 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63950307ns 1124314 1a110850 fd5ff06f jal x0, -44 +63950592ns 1124319 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63950876ns 1124324 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63951274ns 1124331 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63951444ns 1124334 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63951899ns 1124342 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63952069ns 1124345 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63952353ns 1124350 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63952637ns 1124355 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63952922ns 1124360 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63953376ns 1124368 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63953547ns 1124371 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63953831ns 1124376 1a110850 fd5ff06f jal x0, -44 +63954115ns 1124381 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63954399ns 1124386 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63954797ns 1124393 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63954968ns 1124396 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63955422ns 1124404 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63955593ns 1124407 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63955877ns 1124412 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63956161ns 1124417 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63956445ns 1124422 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63956900ns 1124430 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63957070ns 1124433 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63957355ns 1124438 1a110850 fd5ff06f jal x0, -44 +63957639ns 1124443 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63957923ns 1124448 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63958321ns 1124455 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63958491ns 1124458 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63958946ns 1124466 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63959116ns 1124469 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63959400ns 1124474 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63959685ns 1124479 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63959969ns 1124484 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63960423ns 1124492 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63960594ns 1124495 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63960878ns 1124500 1a110850 fd5ff06f jal x0, -44 +63961162ns 1124505 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63961446ns 1124510 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63961844ns 1124517 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63962015ns 1124520 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63962469ns 1124528 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63962640ns 1124531 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63962924ns 1124536 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63963208ns 1124541 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63963492ns 1124546 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63963947ns 1124554 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63964118ns 1124557 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63964402ns 1124562 1a110850 fd5ff06f jal x0, -44 +63964686ns 1124567 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63964970ns 1124572 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63965368ns 1124579 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63965538ns 1124582 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63965993ns 1124590 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63966163ns 1124593 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63966448ns 1124598 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63966732ns 1124603 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63967016ns 1124608 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63967471ns 1124616 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63967641ns 1124619 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63967925ns 1124624 1a110850 fd5ff06f jal x0, -44 +63968209ns 1124629 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63968494ns 1124634 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63968891ns 1124641 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63969062ns 1124644 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63969517ns 1124652 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63969687ns 1124655 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63969971ns 1124660 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63970255ns 1124665 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63970540ns 1124670 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63970994ns 1124678 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63971165ns 1124681 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63971449ns 1124686 1a110850 fd5ff06f jal x0, -44 +63971733ns 1124691 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63972017ns 1124696 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63972415ns 1124703 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63972586ns 1124706 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63973040ns 1124714 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63973211ns 1124717 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63973495ns 1124722 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63973779ns 1124727 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63974063ns 1124732 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63974518ns 1124740 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63974688ns 1124743 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63974972ns 1124748 1a110850 fd5ff06f jal x0, -44 +63975257ns 1124753 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63975541ns 1124758 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63975939ns 1124765 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63976109ns 1124768 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63976564ns 1124776 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63976734ns 1124779 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63977018ns 1124784 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63977303ns 1124789 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63977587ns 1124794 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63978041ns 1124802 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63978212ns 1124805 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63978496ns 1124810 1a110850 fd5ff06f jal x0, -44 +63978780ns 1124815 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63979064ns 1124820 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63979462ns 1124827 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63979633ns 1124830 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63980087ns 1124838 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63980258ns 1124841 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63980542ns 1124846 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63980826ns 1124851 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63981110ns 1124856 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63981565ns 1124864 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63981735ns 1124867 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63982020ns 1124872 1a110850 fd5ff06f jal x0, -44 +63982304ns 1124877 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63982588ns 1124882 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63982986ns 1124889 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63983156ns 1124892 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63983611ns 1124900 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63983781ns 1124903 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63984066ns 1124908 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63984350ns 1124913 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63984634ns 1124918 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63985089ns 1124926 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63985259ns 1124929 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63985543ns 1124934 1a110850 fd5ff06f jal x0, -44 +63985827ns 1124939 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63986112ns 1124944 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63986509ns 1124951 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63986680ns 1124954 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63987135ns 1124962 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63987305ns 1124965 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63987589ns 1124970 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63987873ns 1124975 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63988157ns 1124980 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63988612ns 1124988 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63988783ns 1124991 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63989067ns 1124996 1a110850 fd5ff06f jal x0, -44 +63989351ns 1125001 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63989635ns 1125006 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63990033ns 1125013 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63990203ns 1125016 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63990658ns 1125024 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63990829ns 1125027 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63991113ns 1125032 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63991397ns 1125037 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63991681ns 1125042 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63992136ns 1125050 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63992306ns 1125053 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63992590ns 1125058 1a110850 fd5ff06f jal x0, -44 +63992875ns 1125063 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63993159ns 1125068 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63993557ns 1125075 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63993727ns 1125078 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63994182ns 1125086 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63994352ns 1125089 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63994636ns 1125094 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63994920ns 1125099 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63995205ns 1125104 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63995659ns 1125112 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63995830ns 1125115 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63996114ns 1125120 1a110850 fd5ff06f jal x0, -44 +63996398ns 1125125 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63996682ns 1125130 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +63997080ns 1125137 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63997251ns 1125140 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63997705ns 1125148 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +63997876ns 1125151 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +63998160ns 1125156 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +63998444ns 1125161 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +63998728ns 1125166 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +63999183ns 1125174 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +63999353ns 1125177 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +63999638ns 1125182 1a110850 fd5ff06f jal x0, -44 +63999922ns 1125187 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64000206ns 1125192 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64000604ns 1125199 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64000774ns 1125202 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64001229ns 1125210 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64001399ns 1125213 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64001683ns 1125218 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64001968ns 1125223 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64002252ns 1125228 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64002706ns 1125236 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64002877ns 1125239 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64003161ns 1125244 1a110850 fd5ff06f jal x0, -44 +64003445ns 1125249 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64003729ns 1125254 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64004127ns 1125261 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64004298ns 1125264 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64004752ns 1125272 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64004923ns 1125275 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64005207ns 1125280 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64005491ns 1125285 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64005775ns 1125290 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64006230ns 1125298 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64006401ns 1125301 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64006685ns 1125306 1a110850 fd5ff06f jal x0, -44 +64006969ns 1125311 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64007253ns 1125316 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64007651ns 1125323 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64007821ns 1125326 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64008276ns 1125334 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64008447ns 1125337 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64008731ns 1125342 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64009015ns 1125347 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64009299ns 1125352 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64009754ns 1125360 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64009924ns 1125363 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64010208ns 1125368 1a110850 fd5ff06f jal x0, -44 +64010492ns 1125373 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64010777ns 1125378 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64011174ns 1125385 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64011345ns 1125388 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64011800ns 1125396 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64011970ns 1125399 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64012254ns 1125404 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64012538ns 1125409 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64012823ns 1125414 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64013277ns 1125422 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64013448ns 1125425 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64013732ns 1125430 1a110850 fd5ff06f jal x0, -44 +64014016ns 1125435 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64014300ns 1125440 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64014698ns 1125447 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64014869ns 1125450 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64015323ns 1125458 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64015494ns 1125461 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64015778ns 1125466 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64016062ns 1125471 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64016346ns 1125476 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64016801ns 1125484 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64016971ns 1125487 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64017255ns 1125492 1a110850 fd5ff06f jal x0, -44 +64017540ns 1125497 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64017824ns 1125502 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64018222ns 1125509 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64018392ns 1125512 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64018847ns 1125520 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64019017ns 1125523 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64019301ns 1125528 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64019586ns 1125533 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64019870ns 1125538 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64020324ns 1125546 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64020495ns 1125549 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64020779ns 1125554 1a110850 fd5ff06f jal x0, -44 +64021063ns 1125559 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64021347ns 1125564 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64021745ns 1125571 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64021916ns 1125574 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64022370ns 1125582 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64022541ns 1125585 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64022825ns 1125590 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64023109ns 1125595 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64023393ns 1125600 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64023848ns 1125608 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64024018ns 1125611 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64024303ns 1125616 1a110850 fd5ff06f jal x0, -44 +64024587ns 1125621 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64024871ns 1125626 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64025269ns 1125633 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64025439ns 1125636 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64025894ns 1125644 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64026064ns 1125647 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64026349ns 1125652 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64026633ns 1125657 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64026917ns 1125662 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64027372ns 1125670 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64027542ns 1125673 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64027826ns 1125678 1a110850 fd5ff06f jal x0, -44 +64028110ns 1125683 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64028395ns 1125688 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64028792ns 1125695 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64028963ns 1125698 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64029418ns 1125706 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64029588ns 1125709 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64029872ns 1125714 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64030156ns 1125719 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64030440ns 1125724 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64030895ns 1125732 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64031066ns 1125735 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64031350ns 1125740 1a110850 fd5ff06f jal x0, -44 +64031634ns 1125745 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64031918ns 1125750 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64032316ns 1125757 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64032486ns 1125760 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64032941ns 1125768 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64033112ns 1125771 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64033396ns 1125776 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64033680ns 1125781 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64033964ns 1125786 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64034419ns 1125794 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64034589ns 1125797 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64034873ns 1125802 1a110850 fd5ff06f jal x0, -44 +64035158ns 1125807 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64035442ns 1125812 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64035840ns 1125819 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64036010ns 1125822 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64036465ns 1125830 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64036635ns 1125833 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64036919ns 1125838 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64037203ns 1125843 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64037488ns 1125848 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64037942ns 1125856 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64038113ns 1125859 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64038397ns 1125864 1a110850 fd5ff06f jal x0, -44 +64038681ns 1125869 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64038965ns 1125874 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64039363ns 1125881 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64039534ns 1125884 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64039988ns 1125892 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64040159ns 1125895 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64040443ns 1125900 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64040727ns 1125905 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64041011ns 1125910 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64041466ns 1125918 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64041636ns 1125921 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64041921ns 1125926 1a110850 fd5ff06f jal x0, -44 +64042205ns 1125931 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64042489ns 1125936 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64042887ns 1125943 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64043057ns 1125946 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64043512ns 1125954 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64043682ns 1125957 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64043967ns 1125962 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64044251ns 1125967 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64044535ns 1125972 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64044989ns 1125980 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64045160ns 1125983 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64045444ns 1125988 1a110850 fd5ff06f jal x0, -44 +64045728ns 1125993 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64046012ns 1125998 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64046410ns 1126005 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64046581ns 1126008 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64047035ns 1126016 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64047206ns 1126019 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64047490ns 1126024 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64047774ns 1126029 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64048058ns 1126034 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64048513ns 1126042 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64048684ns 1126045 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64048968ns 1126050 1a110850 fd5ff06f jal x0, -44 +64049252ns 1126055 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64049536ns 1126060 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64049934ns 1126067 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64050104ns 1126070 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64050559ns 1126078 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64050730ns 1126081 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64051014ns 1126086 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64051298ns 1126091 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64051582ns 1126096 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64052037ns 1126104 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64052207ns 1126107 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64052491ns 1126112 1a110850 fd5ff06f jal x0, -44 +64052775ns 1126117 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64053060ns 1126122 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64053457ns 1126129 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64053628ns 1126132 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64054083ns 1126140 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64054253ns 1126143 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64054537ns 1126148 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64054821ns 1126153 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64055106ns 1126158 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64055560ns 1126166 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64055731ns 1126169 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64056015ns 1126174 1a110850 fd5ff06f jal x0, -44 +64056299ns 1126179 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64056583ns 1126184 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64056981ns 1126191 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64057152ns 1126194 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64057606ns 1126202 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64057777ns 1126205 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64058061ns 1126210 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64058345ns 1126215 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64058629ns 1126220 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64059084ns 1126228 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64059254ns 1126231 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64059538ns 1126236 1a110850 fd5ff06f jal x0, -44 +64059823ns 1126241 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64060107ns 1126246 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64060505ns 1126253 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64060675ns 1126256 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64061130ns 1126264 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64061300ns 1126267 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64061584ns 1126272 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64061869ns 1126277 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64062153ns 1126282 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64062607ns 1126290 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64062778ns 1126293 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64063062ns 1126298 1a110850 fd5ff06f jal x0, -44 +64063346ns 1126303 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64063630ns 1126308 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64064028ns 1126315 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64064199ns 1126318 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64064653ns 1126326 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64064824ns 1126329 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64065108ns 1126334 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64065392ns 1126339 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64065676ns 1126344 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64066131ns 1126352 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64066301ns 1126355 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64066586ns 1126360 1a110850 fd5ff06f jal x0, -44 +64066870ns 1126365 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64067154ns 1126370 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64067552ns 1126377 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64067722ns 1126380 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64068177ns 1126388 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64068347ns 1126391 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64068632ns 1126396 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64068916ns 1126401 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64069200ns 1126406 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64069655ns 1126414 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64069825ns 1126417 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64070109ns 1126422 1a110850 fd5ff06f jal x0, -44 +64070393ns 1126427 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64070678ns 1126432 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64071075ns 1126439 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64071246ns 1126442 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64071701ns 1126450 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64071871ns 1126453 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64072155ns 1126458 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64072439ns 1126463 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64072723ns 1126468 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64073178ns 1126476 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64073349ns 1126479 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64073633ns 1126484 1a110850 fd5ff06f jal x0, -44 +64073917ns 1126489 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64074201ns 1126494 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64074599ns 1126501 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64074769ns 1126504 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64075224ns 1126512 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64075395ns 1126515 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64075679ns 1126520 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64075963ns 1126525 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64076247ns 1126530 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64076702ns 1126538 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64076872ns 1126541 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64077156ns 1126546 1a110850 fd5ff06f jal x0, -44 +64077441ns 1126551 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64077725ns 1126556 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64078123ns 1126563 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64078293ns 1126566 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64078748ns 1126574 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64078918ns 1126577 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64079202ns 1126582 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64079487ns 1126587 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64079771ns 1126592 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64080225ns 1126600 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64080396ns 1126603 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64080680ns 1126608 1a110850 fd5ff06f jal x0, -44 +64080964ns 1126613 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64081248ns 1126618 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64081646ns 1126625 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64081817ns 1126628 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64082271ns 1126636 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64082442ns 1126639 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64082726ns 1126644 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64083010ns 1126649 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64083294ns 1126654 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64083749ns 1126662 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64083919ns 1126665 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64084204ns 1126670 1a110850 fd5ff06f jal x0, -44 +64084488ns 1126675 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64084772ns 1126680 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64085170ns 1126687 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64085340ns 1126690 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64085795ns 1126698 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64085965ns 1126701 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64086250ns 1126706 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64086534ns 1126711 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64086818ns 1126716 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64087272ns 1126724 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64087443ns 1126727 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64087727ns 1126732 1a110850 fd5ff06f jal x0, -44 +64088011ns 1126737 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64088295ns 1126742 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64088693ns 1126749 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64088864ns 1126752 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64089318ns 1126760 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64089489ns 1126763 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64089773ns 1126768 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64090057ns 1126773 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64090341ns 1126778 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64090796ns 1126786 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64090967ns 1126789 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64091251ns 1126794 1a110850 fd5ff06f jal x0, -44 +64091535ns 1126799 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64091819ns 1126804 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64092217ns 1126811 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64092387ns 1126814 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64092842ns 1126822 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64093013ns 1126825 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64093297ns 1126830 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64093581ns 1126835 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64093865ns 1126840 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64094320ns 1126848 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64094490ns 1126851 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64094774ns 1126856 1a110850 fd5ff06f jal x0, -44 +64095058ns 1126861 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64095343ns 1126866 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64095740ns 1126873 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64095911ns 1126876 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64096366ns 1126884 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64096536ns 1126887 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64096820ns 1126892 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64097104ns 1126897 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64097389ns 1126902 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64097843ns 1126910 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64098014ns 1126913 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64098298ns 1126918 1a110850 fd5ff06f jal x0, -44 +64098582ns 1126923 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64098866ns 1126928 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64099264ns 1126935 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64099435ns 1126938 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64099889ns 1126946 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64100060ns 1126949 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64100344ns 1126954 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64100628ns 1126959 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64100912ns 1126964 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64101367ns 1126972 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64101537ns 1126975 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64101821ns 1126980 1a110850 fd5ff06f jal x0, -44 +64102106ns 1126985 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64102390ns 1126990 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64102788ns 1126997 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64102958ns 1127000 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64103413ns 1127008 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64103583ns 1127011 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64103867ns 1127016 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64104152ns 1127021 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64104436ns 1127026 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64104890ns 1127034 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64105061ns 1127037 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64105345ns 1127042 1a110850 fd5ff06f jal x0, -44 +64105629ns 1127047 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64105913ns 1127052 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64106311ns 1127059 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64106482ns 1127062 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64106936ns 1127070 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64107107ns 1127073 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64107391ns 1127078 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64107675ns 1127083 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64107959ns 1127088 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64108414ns 1127096 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64108584ns 1127099 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64108869ns 1127104 1a110850 fd5ff06f jal x0, -44 +64109153ns 1127109 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64109437ns 1127114 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64109835ns 1127121 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64110005ns 1127124 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64110460ns 1127132 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64110630ns 1127135 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64110915ns 1127140 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64111199ns 1127145 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64111483ns 1127150 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64111938ns 1127158 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64112108ns 1127161 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64112392ns 1127166 1a110850 fd5ff06f jal x0, -44 +64112676ns 1127171 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64112961ns 1127176 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64113358ns 1127183 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64113529ns 1127186 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64113984ns 1127194 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64114154ns 1127197 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64114438ns 1127202 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64114722ns 1127207 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64115007ns 1127212 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64115461ns 1127220 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64115632ns 1127223 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64115916ns 1127228 1a110850 fd5ff06f jal x0, -44 +64116200ns 1127233 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64116484ns 1127238 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64116882ns 1127245 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64117052ns 1127248 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64117507ns 1127256 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64117678ns 1127259 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64117962ns 1127264 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64118246ns 1127269 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64118530ns 1127274 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64118985ns 1127282 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64119155ns 1127285 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64119439ns 1127290 1a110850 fd5ff06f jal x0, -44 +64119724ns 1127295 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64120008ns 1127300 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64120406ns 1127307 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64120576ns 1127310 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64121031ns 1127318 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64121201ns 1127321 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64121485ns 1127326 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64121770ns 1127331 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64122054ns 1127336 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64122508ns 1127344 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64122679ns 1127347 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64122963ns 1127352 1a110850 fd5ff06f jal x0, -44 +64123247ns 1127357 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64123531ns 1127362 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64123929ns 1127369 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64124100ns 1127372 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64124554ns 1127380 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64124725ns 1127383 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64125009ns 1127388 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64125293ns 1127393 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64125577ns 1127398 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64126032ns 1127406 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64126202ns 1127409 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64126487ns 1127414 1a110850 fd5ff06f jal x0, -44 +64126771ns 1127419 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64127055ns 1127424 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64127453ns 1127431 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64127623ns 1127434 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64128078ns 1127442 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64128248ns 1127445 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64128533ns 1127450 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64128817ns 1127455 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64129101ns 1127460 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64129555ns 1127468 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64129726ns 1127471 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64130010ns 1127476 1a110850 fd5ff06f jal x0, -44 +64130294ns 1127481 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64130578ns 1127486 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64130976ns 1127493 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64131147ns 1127496 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64131601ns 1127504 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64131772ns 1127507 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64132056ns 1127512 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64132340ns 1127517 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64132624ns 1127522 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64133079ns 1127530 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64133250ns 1127533 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64133534ns 1127538 1a110850 fd5ff06f jal x0, -44 +64133818ns 1127543 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64134102ns 1127548 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64134500ns 1127555 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64134670ns 1127558 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64135125ns 1127566 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64135296ns 1127569 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64135580ns 1127574 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64135864ns 1127579 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64136148ns 1127584 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64136603ns 1127592 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64136773ns 1127595 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64137057ns 1127600 1a110850 fd5ff06f jal x0, -44 +64137341ns 1127605 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64137626ns 1127610 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64138023ns 1127617 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64138194ns 1127620 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64138649ns 1127628 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64138819ns 1127631 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64139103ns 1127636 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64139387ns 1127641 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64139672ns 1127646 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64140126ns 1127654 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64140297ns 1127657 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64140581ns 1127662 1a110850 fd5ff06f jal x0, -44 +64140865ns 1127667 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64141149ns 1127672 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64141547ns 1127679 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64141718ns 1127682 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64142172ns 1127690 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64142343ns 1127693 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64142627ns 1127698 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64142911ns 1127703 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64143195ns 1127708 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64143650ns 1127716 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64143820ns 1127719 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64144104ns 1127724 1a110850 fd5ff06f jal x0, -44 +64144389ns 1127729 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64144673ns 1127734 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64145071ns 1127741 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64145241ns 1127744 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64145696ns 1127752 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64145866ns 1127755 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64146150ns 1127760 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64146435ns 1127765 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64146719ns 1127770 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64147173ns 1127778 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64147344ns 1127781 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64147628ns 1127786 1a110850 fd5ff06f jal x0, -44 +64147912ns 1127791 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64148196ns 1127796 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64148594ns 1127803 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64148765ns 1127806 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64149219ns 1127814 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64149390ns 1127817 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64149674ns 1127822 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64149958ns 1127827 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64150242ns 1127832 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64150697ns 1127840 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64150867ns 1127843 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64151152ns 1127848 1a110850 fd5ff06f jal x0, -44 +64151436ns 1127853 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64151720ns 1127858 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64152118ns 1127865 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64152288ns 1127868 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64152743ns 1127876 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64152913ns 1127879 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64153198ns 1127884 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64153482ns 1127889 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64153766ns 1127894 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64154221ns 1127902 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64154391ns 1127905 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64154675ns 1127910 1a110850 fd5ff06f jal x0, -44 +64154959ns 1127915 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64155244ns 1127920 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64155641ns 1127927 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64155812ns 1127930 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64156267ns 1127938 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64156437ns 1127941 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64156721ns 1127946 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64157005ns 1127951 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64157290ns 1127956 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64157744ns 1127964 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64157915ns 1127967 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64158199ns 1127972 1a110850 fd5ff06f jal x0, -44 +64158483ns 1127977 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64158767ns 1127982 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64159165ns 1127989 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64159335ns 1127992 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64159790ns 1128000 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64159961ns 1128003 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64160245ns 1128008 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64160529ns 1128013 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64160813ns 1128018 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64161268ns 1128026 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64161438ns 1128029 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64161722ns 1128034 1a110850 fd5ff06f jal x0, -44 +64162007ns 1128039 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64162291ns 1128044 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64162689ns 1128051 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64162859ns 1128054 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64163314ns 1128062 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64163484ns 1128065 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64163768ns 1128070 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64164053ns 1128075 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64164337ns 1128080 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64164791ns 1128088 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64164962ns 1128091 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64165246ns 1128096 1a110850 fd5ff06f jal x0, -44 +64165530ns 1128101 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64165814ns 1128106 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64166212ns 1128113 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64166383ns 1128116 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64166837ns 1128124 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64167008ns 1128127 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64167292ns 1128132 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64167576ns 1128137 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64167860ns 1128142 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64168315ns 1128150 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64168485ns 1128153 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64168770ns 1128158 1a110850 fd5ff06f jal x0, -44 +64169054ns 1128163 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64169338ns 1128168 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64169736ns 1128175 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64169906ns 1128178 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64170361ns 1128186 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64170531ns 1128189 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64170816ns 1128194 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64171100ns 1128199 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64171384ns 1128204 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64171839ns 1128212 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64172009ns 1128215 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64172293ns 1128220 1a110850 fd5ff06f jal x0, -44 +64172577ns 1128225 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64172861ns 1128230 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64173259ns 1128237 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64173430ns 1128240 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64173884ns 1128248 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64174055ns 1128251 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64174339ns 1128256 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64174623ns 1128261 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64174907ns 1128266 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64175362ns 1128274 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64175533ns 1128277 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64175817ns 1128282 1a110850 fd5ff06f jal x0, -44 +64176101ns 1128287 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64176385ns 1128292 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64176783ns 1128299 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64176953ns 1128302 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64177408ns 1128310 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64177579ns 1128313 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64177863ns 1128318 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64178147ns 1128323 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64178431ns 1128328 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64178886ns 1128336 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64179056ns 1128339 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64179340ns 1128344 1a110850 fd5ff06f jal x0, -44 +64179624ns 1128349 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64179909ns 1128354 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64180306ns 1128361 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64180477ns 1128364 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64180932ns 1128372 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64181102ns 1128375 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64181386ns 1128380 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64181670ns 1128385 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64181955ns 1128390 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64182409ns 1128398 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64182580ns 1128401 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64182864ns 1128406 1a110850 fd5ff06f jal x0, -44 +64183148ns 1128411 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64183432ns 1128416 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64183830ns 1128423 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64184001ns 1128426 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64184455ns 1128434 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64184626ns 1128437 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64184910ns 1128442 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64185194ns 1128447 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64185478ns 1128452 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64185933ns 1128460 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64186103ns 1128463 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64186387ns 1128468 1a110850 fd5ff06f jal x0, -44 +64186672ns 1128473 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64186956ns 1128478 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64187354ns 1128485 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64187524ns 1128488 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64187979ns 1128496 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64188149ns 1128499 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64188433ns 1128504 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64188718ns 1128509 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64189002ns 1128514 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64189456ns 1128522 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64189627ns 1128525 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64189911ns 1128530 1a110850 fd5ff06f jal x0, -44 +64190195ns 1128535 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64190479ns 1128540 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64190877ns 1128547 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64191048ns 1128550 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64191502ns 1128558 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64191673ns 1128561 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64191957ns 1128566 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64192241ns 1128571 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64192525ns 1128576 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64192980ns 1128584 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64193151ns 1128587 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64193435ns 1128592 1a110850 fd5ff06f jal x0, -44 +64193719ns 1128597 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64194003ns 1128602 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64194401ns 1128609 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64194571ns 1128612 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64195026ns 1128620 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64195196ns 1128623 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64195481ns 1128628 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64195765ns 1128633 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64196049ns 1128638 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64196504ns 1128646 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64196674ns 1128649 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64196958ns 1128654 1a110850 fd5ff06f jal x0, -44 +64197242ns 1128659 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64197527ns 1128664 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64197924ns 1128671 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64198095ns 1128674 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64198550ns 1128682 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64198720ns 1128685 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64199004ns 1128690 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64199288ns 1128695 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64199573ns 1128700 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64200027ns 1128708 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64200198ns 1128711 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64200482ns 1128716 1a110850 fd5ff06f jal x0, -44 +64200766ns 1128721 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64201050ns 1128726 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64201448ns 1128733 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64201618ns 1128736 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64202073ns 1128744 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64202244ns 1128747 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64202528ns 1128752 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64202812ns 1128757 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64203096ns 1128762 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64203551ns 1128770 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64203721ns 1128773 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64204005ns 1128778 1a110850 fd5ff06f jal x0, -44 +64204290ns 1128783 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64204574ns 1128788 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64204972ns 1128795 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64205142ns 1128798 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64205597ns 1128806 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64205767ns 1128809 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64206051ns 1128814 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64206336ns 1128819 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64206620ns 1128824 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64207074ns 1128832 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64207245ns 1128835 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64207529ns 1128840 1a110850 fd5ff06f jal x0, -44 +64207813ns 1128845 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64208097ns 1128850 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64208495ns 1128857 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64208666ns 1128860 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64209120ns 1128868 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64209291ns 1128871 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64209575ns 1128876 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64209859ns 1128881 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64210143ns 1128886 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64210598ns 1128894 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64210768ns 1128897 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64211053ns 1128902 1a110850 fd5ff06f jal x0, -44 +64211337ns 1128907 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64211621ns 1128912 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64212019ns 1128919 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64212189ns 1128922 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64212644ns 1128930 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64212814ns 1128933 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64213099ns 1128938 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64213383ns 1128943 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64213667ns 1128948 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64214122ns 1128956 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64214292ns 1128959 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64214576ns 1128964 1a110850 fd5ff06f jal x0, -44 +64214860ns 1128969 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64215144ns 1128974 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64215542ns 1128981 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64215713ns 1128984 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64216167ns 1128992 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64216338ns 1128995 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64216622ns 1129000 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64216906ns 1129005 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64217190ns 1129010 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64217645ns 1129018 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64217816ns 1129021 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64218100ns 1129026 1a110850 fd5ff06f jal x0, -44 +64218384ns 1129031 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64218668ns 1129036 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64219066ns 1129043 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64219236ns 1129046 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64219691ns 1129054 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64219862ns 1129057 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64220146ns 1129062 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64220430ns 1129067 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64220714ns 1129072 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64221169ns 1129080 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64221339ns 1129083 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64221623ns 1129088 1a110850 fd5ff06f jal x0, -44 +64221907ns 1129093 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64222192ns 1129098 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64222589ns 1129105 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64222760ns 1129108 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64223215ns 1129116 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64223385ns 1129119 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64223669ns 1129124 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64223953ns 1129129 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64224238ns 1129134 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64224692ns 1129142 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64224863ns 1129145 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64225147ns 1129150 1a110850 fd5ff06f jal x0, -44 +64225431ns 1129155 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64225715ns 1129160 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64226113ns 1129167 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64226284ns 1129170 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64226738ns 1129178 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64226909ns 1129181 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64227193ns 1129186 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64227477ns 1129191 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64227761ns 1129196 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64228216ns 1129204 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64228386ns 1129207 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64228671ns 1129212 1a110850 fd5ff06f jal x0, -44 +64228955ns 1129217 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64229239ns 1129222 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64229637ns 1129229 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64229807ns 1129232 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64230262ns 1129240 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64230432ns 1129243 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64230716ns 1129248 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64231001ns 1129253 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64231285ns 1129258 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64231739ns 1129266 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64231910ns 1129269 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64232194ns 1129274 1a110850 fd5ff06f jal x0, -44 +64232478ns 1129279 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64232762ns 1129284 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64233160ns 1129291 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64233331ns 1129294 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64233785ns 1129302 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64233956ns 1129305 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64234240ns 1129310 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64234524ns 1129315 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64234808ns 1129320 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64235263ns 1129328 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64235434ns 1129331 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64235718ns 1129336 1a110850 fd5ff06f jal x0, -44 +64236002ns 1129341 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64236286ns 1129346 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64236684ns 1129353 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64236854ns 1129356 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64237309ns 1129364 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64237479ns 1129367 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64237764ns 1129372 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64238048ns 1129377 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64238332ns 1129382 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64238787ns 1129390 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64238957ns 1129393 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64239241ns 1129398 1a110850 fd5ff06f jal x0, -44 +64239525ns 1129403 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64239810ns 1129408 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64240207ns 1129415 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64240378ns 1129418 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64240833ns 1129426 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64241003ns 1129429 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64241287ns 1129434 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64241571ns 1129439 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64241856ns 1129444 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64242310ns 1129452 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64242481ns 1129455 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64242765ns 1129460 1a110850 fd5ff06f jal x0, -44 +64243049ns 1129465 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64243333ns 1129470 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64243731ns 1129477 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64243901ns 1129480 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64244356ns 1129488 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64244527ns 1129491 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64244811ns 1129496 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64245095ns 1129501 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64245379ns 1129506 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64245834ns 1129514 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64246004ns 1129517 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64246288ns 1129522 1a110850 fd5ff06f jal x0, -44 +64246573ns 1129527 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64246857ns 1129532 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64247255ns 1129539 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64247425ns 1129542 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64247880ns 1129550 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64248050ns 1129553 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64248334ns 1129558 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64248619ns 1129563 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64248903ns 1129568 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64249357ns 1129576 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64249528ns 1129579 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64249812ns 1129584 1a110850 fd5ff06f jal x0, -44 +64250096ns 1129589 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64250380ns 1129594 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64250778ns 1129601 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64250949ns 1129604 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64251403ns 1129612 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64251574ns 1129615 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64251858ns 1129620 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64252142ns 1129625 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64252426ns 1129630 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64252881ns 1129638 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64253051ns 1129641 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64253336ns 1129646 1a110850 fd5ff06f jal x0, -44 +64253620ns 1129651 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64253904ns 1129656 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64254302ns 1129663 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64254472ns 1129666 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64254927ns 1129674 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64255097ns 1129677 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64255382ns 1129682 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64255666ns 1129687 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64255950ns 1129692 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64256405ns 1129700 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64256575ns 1129703 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64256859ns 1129708 1a110850 fd5ff06f jal x0, -44 +64257143ns 1129713 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64257427ns 1129718 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64257825ns 1129725 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64257996ns 1129728 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64258450ns 1129736 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64258621ns 1129739 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64258905ns 1129744 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64259189ns 1129749 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64259473ns 1129754 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64259928ns 1129762 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64260099ns 1129765 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64260383ns 1129770 1a110850 fd5ff06f jal x0, -44 +64260667ns 1129775 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64260951ns 1129780 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64261349ns 1129787 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64261519ns 1129790 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64261974ns 1129798 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64262145ns 1129801 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64262429ns 1129806 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64262713ns 1129811 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64262997ns 1129816 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64263452ns 1129824 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64263622ns 1129827 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64263906ns 1129832 1a110850 fd5ff06f jal x0, -44 +64264191ns 1129837 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64264475ns 1129842 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64264872ns 1129849 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64265043ns 1129852 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64265498ns 1129860 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64265668ns 1129863 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64265952ns 1129868 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64266236ns 1129873 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64266521ns 1129878 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64266975ns 1129886 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64267146ns 1129889 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64267430ns 1129894 1a110850 fd5ff06f jal x0, -44 +64267714ns 1129899 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64267998ns 1129904 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64268396ns 1129911 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64268567ns 1129914 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64269021ns 1129922 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64269192ns 1129925 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64269476ns 1129930 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64269760ns 1129935 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64270044ns 1129940 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64270499ns 1129948 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64270669ns 1129951 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64270954ns 1129956 1a110850 fd5ff06f jal x0, -44 +64271238ns 1129961 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64271522ns 1129966 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64271920ns 1129973 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64272090ns 1129976 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64272545ns 1129984 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64272715ns 1129987 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64272999ns 1129992 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64273284ns 1129997 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64273568ns 1130002 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64274022ns 1130010 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64274193ns 1130013 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64274477ns 1130018 1a110850 fd5ff06f jal x0, -44 +64274761ns 1130023 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64275045ns 1130028 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64275443ns 1130035 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64275614ns 1130038 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64276068ns 1130046 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64276239ns 1130049 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64276523ns 1130054 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64276807ns 1130059 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64277091ns 1130064 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64277546ns 1130072 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64277717ns 1130075 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64278001ns 1130080 1a110850 fd5ff06f jal x0, -44 +64278285ns 1130085 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64278569ns 1130090 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64278967ns 1130097 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64279137ns 1130100 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64279592ns 1130108 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64279762ns 1130111 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64280047ns 1130116 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64280331ns 1130121 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64280615ns 1130126 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64281070ns 1130134 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64281240ns 1130137 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64281524ns 1130142 1a110850 fd5ff06f jal x0, -44 +64281808ns 1130147 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64282093ns 1130152 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64282490ns 1130159 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64282661ns 1130162 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64283116ns 1130170 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64283286ns 1130173 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64283570ns 1130178 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64283854ns 1130183 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64284139ns 1130188 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64284593ns 1130196 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64284764ns 1130199 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64285048ns 1130204 1a110850 fd5ff06f jal x0, -44 +64285332ns 1130209 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64285616ns 1130214 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64286014ns 1130221 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64286184ns 1130224 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64286639ns 1130232 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64286810ns 1130235 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64287094ns 1130240 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64287378ns 1130245 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64287662ns 1130250 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64288117ns 1130258 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64288287ns 1130261 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64288571ns 1130266 1a110850 fd5ff06f jal x0, -44 +64288856ns 1130271 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64289140ns 1130276 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64289538ns 1130283 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64289708ns 1130286 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64290163ns 1130294 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64290333ns 1130297 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64290617ns 1130302 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64290902ns 1130307 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64291186ns 1130312 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64291640ns 1130320 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64291811ns 1130323 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64292095ns 1130328 1a110850 fd5ff06f jal x0, -44 +64292379ns 1130333 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64292663ns 1130338 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64293061ns 1130345 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64293232ns 1130348 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64293686ns 1130356 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64293857ns 1130359 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64294141ns 1130364 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64294425ns 1130369 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64294709ns 1130374 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64295164ns 1130382 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64295334ns 1130385 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64295619ns 1130390 1a110850 fd5ff06f jal x0, -44 +64295903ns 1130395 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64296187ns 1130400 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64296585ns 1130407 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64296755ns 1130410 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64297210ns 1130418 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64297380ns 1130421 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64297665ns 1130426 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64297949ns 1130431 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64298233ns 1130436 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64298688ns 1130444 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64298858ns 1130447 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64299142ns 1130452 1a110850 fd5ff06f jal x0, -44 +64299426ns 1130457 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64299711ns 1130462 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64300108ns 1130469 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64300279ns 1130472 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64300733ns 1130480 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64300904ns 1130483 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64301188ns 1130488 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64301472ns 1130493 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64301756ns 1130498 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64302211ns 1130506 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64302382ns 1130509 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64302666ns 1130514 1a110850 fd5ff06f jal x0, -44 +64302950ns 1130519 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64303234ns 1130524 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64303632ns 1130531 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64303802ns 1130534 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64304257ns 1130542 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64304428ns 1130545 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64304712ns 1130550 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64304996ns 1130555 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64305280ns 1130560 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64305735ns 1130568 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64305905ns 1130571 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64306189ns 1130576 1a110850 fd5ff06f jal x0, -44 +64306474ns 1130581 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64306758ns 1130586 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64307155ns 1130593 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64307326ns 1130596 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64307781ns 1130604 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64307951ns 1130607 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64308235ns 1130612 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64308519ns 1130617 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64308804ns 1130622 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64309258ns 1130630 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64309429ns 1130633 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64309713ns 1130638 1a110850 fd5ff06f jal x0, -44 +64309997ns 1130643 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64310281ns 1130648 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64310679ns 1130655 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64310850ns 1130658 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64311304ns 1130666 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64311475ns 1130669 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64311759ns 1130674 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64312043ns 1130679 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64312327ns 1130684 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64312782ns 1130692 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64312952ns 1130695 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64313237ns 1130700 1a110850 fd5ff06f jal x0, -44 +64313521ns 1130705 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64313805ns 1130710 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64314203ns 1130717 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64314373ns 1130720 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64314828ns 1130728 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64314998ns 1130731 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64315282ns 1130736 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64315567ns 1130741 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64315851ns 1130746 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64316305ns 1130754 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64316476ns 1130757 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64316760ns 1130762 1a110850 fd5ff06f jal x0, -44 +64317044ns 1130767 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64317328ns 1130772 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64317726ns 1130779 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64317897ns 1130782 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64318351ns 1130790 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64318522ns 1130793 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64318806ns 1130798 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64319090ns 1130803 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64319374ns 1130808 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64319829ns 1130816 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64320000ns 1130819 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64320284ns 1130824 1a110850 fd5ff06f jal x0, -44 +64320568ns 1130829 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64320852ns 1130834 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64321250ns 1130841 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64321420ns 1130844 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64321875ns 1130852 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64322045ns 1130855 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64322330ns 1130860 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64322614ns 1130865 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64322898ns 1130870 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64323353ns 1130878 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64323523ns 1130881 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64323807ns 1130886 1a110850 fd5ff06f jal x0, -44 +64324091ns 1130891 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64324376ns 1130896 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64324773ns 1130903 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64324944ns 1130906 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64325399ns 1130914 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64325569ns 1130917 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64325853ns 1130922 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64326137ns 1130927 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64326422ns 1130932 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64326876ns 1130940 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64327047ns 1130943 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64327331ns 1130948 1a110850 fd5ff06f jal x0, -44 +64327615ns 1130953 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64327899ns 1130958 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64328297ns 1130965 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64328467ns 1130968 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64328922ns 1130976 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64329093ns 1130979 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64329377ns 1130984 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64329661ns 1130989 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64329945ns 1130994 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64330400ns 1131002 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64330570ns 1131005 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64330854ns 1131010 1a110850 fd5ff06f jal x0, -44 +64331139ns 1131015 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64331423ns 1131020 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64331821ns 1131027 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64331991ns 1131030 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64332446ns 1131038 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64332616ns 1131041 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64332900ns 1131046 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64333185ns 1131051 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64333469ns 1131056 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64333923ns 1131064 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64334094ns 1131067 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64334378ns 1131072 1a110850 fd5ff06f jal x0, -44 +64334662ns 1131077 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64334946ns 1131082 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64335344ns 1131089 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64335515ns 1131092 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64335969ns 1131100 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64336140ns 1131103 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64336424ns 1131108 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64336708ns 1131113 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64336992ns 1131118 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64337447ns 1131126 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64337617ns 1131129 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64337902ns 1131134 1a110850 fd5ff06f jal x0, -44 +64338186ns 1131139 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64338470ns 1131144 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64338868ns 1131151 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64339038ns 1131154 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64339493ns 1131162 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64339663ns 1131165 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64339948ns 1131170 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64340232ns 1131175 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64340516ns 1131180 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64340971ns 1131188 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64341141ns 1131191 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64341425ns 1131196 1a110850 fd5ff06f jal x0, -44 +64341709ns 1131201 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64341994ns 1131206 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64342391ns 1131213 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64342562ns 1131216 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64343016ns 1131224 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64343187ns 1131227 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64343471ns 1131232 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64343755ns 1131237 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64344039ns 1131242 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64344494ns 1131250 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64344665ns 1131253 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64344949ns 1131258 1a110850 fd5ff06f jal x0, -44 +64345233ns 1131263 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64345517ns 1131268 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64345915ns 1131275 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64346085ns 1131278 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64346540ns 1131286 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64346711ns 1131289 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64346995ns 1131294 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64347279ns 1131299 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64347563ns 1131304 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64348018ns 1131312 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64348188ns 1131315 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64348472ns 1131320 1a110850 fd5ff06f jal x0, -44 +64348757ns 1131325 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64349041ns 1131330 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64349439ns 1131337 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64349609ns 1131340 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64350064ns 1131348 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64350234ns 1131351 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64350518ns 1131356 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64350802ns 1131361 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64351087ns 1131366 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64351541ns 1131374 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64351712ns 1131377 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64351996ns 1131382 1a110850 fd5ff06f jal x0, -44 +64352280ns 1131387 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64352564ns 1131392 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64352962ns 1131399 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64353133ns 1131402 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64353587ns 1131410 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64353758ns 1131413 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64354042ns 1131418 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64354326ns 1131423 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64354610ns 1131428 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64355065ns 1131436 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64355235ns 1131439 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64355520ns 1131444 1a110850 fd5ff06f jal x0, -44 +64355804ns 1131449 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64356088ns 1131454 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64356486ns 1131461 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64356656ns 1131464 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64357111ns 1131472 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64357281ns 1131475 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64357565ns 1131480 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64357850ns 1131485 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64358134ns 1131490 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64358588ns 1131498 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64358759ns 1131501 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64359043ns 1131506 1a110850 fd5ff06f jal x0, -44 +64359327ns 1131511 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64359611ns 1131516 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64360009ns 1131523 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64360180ns 1131526 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64360634ns 1131534 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64360805ns 1131537 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64361089ns 1131542 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64361373ns 1131547 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64361657ns 1131552 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64362112ns 1131560 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64362283ns 1131563 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64362567ns 1131568 1a110850 fd5ff06f jal x0, -44 +64362851ns 1131573 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64363135ns 1131578 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64363533ns 1131585 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64363703ns 1131588 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64364158ns 1131596 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64364328ns 1131599 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64364613ns 1131604 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64364897ns 1131609 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64365181ns 1131614 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64365636ns 1131622 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64365806ns 1131625 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64366090ns 1131630 1a110850 fd5ff06f jal x0, -44 +64366374ns 1131635 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64366659ns 1131640 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64367056ns 1131647 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64367227ns 1131650 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64367682ns 1131658 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64367852ns 1131661 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64368136ns 1131666 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64368420ns 1131671 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64368705ns 1131676 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64369159ns 1131684 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64369330ns 1131687 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64369614ns 1131692 1a110850 fd5ff06f jal x0, -44 +64369898ns 1131697 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64370182ns 1131702 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64370580ns 1131709 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64370751ns 1131712 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64371205ns 1131720 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64371376ns 1131723 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64371660ns 1131728 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64371944ns 1131733 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64372228ns 1131738 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64372683ns 1131746 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64372853ns 1131749 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64373137ns 1131754 1a110850 fd5ff06f jal x0, -44 +64373422ns 1131759 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64373706ns 1131764 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64374104ns 1131771 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64374274ns 1131774 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64374729ns 1131782 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64374899ns 1131785 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64375183ns 1131790 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64375468ns 1131795 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64375752ns 1131800 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64376206ns 1131808 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64376377ns 1131811 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64376661ns 1131816 1a110850 fd5ff06f jal x0, -44 +64376945ns 1131821 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64377229ns 1131826 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64377627ns 1131833 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64377798ns 1131836 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64378252ns 1131844 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64378423ns 1131847 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64378707ns 1131852 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64378991ns 1131857 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64379275ns 1131862 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64379730ns 1131870 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64379900ns 1131873 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64380185ns 1131878 1a110850 fd5ff06f jal x0, -44 +64380469ns 1131883 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64380753ns 1131888 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64381151ns 1131895 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64381321ns 1131898 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64381776ns 1131906 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64381946ns 1131909 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64382231ns 1131914 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64382515ns 1131919 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64382799ns 1131924 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64383254ns 1131932 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64383424ns 1131935 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64383708ns 1131940 1a110850 fd5ff06f jal x0, -44 +64383992ns 1131945 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64384277ns 1131950 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64384674ns 1131957 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64384845ns 1131960 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64385299ns 1131968 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64385470ns 1131971 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64385754ns 1131976 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64386038ns 1131981 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64386322ns 1131986 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64386777ns 1131994 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64386948ns 1131997 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64387232ns 1132002 1a110850 fd5ff06f jal x0, -44 +64387516ns 1132007 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64387800ns 1132012 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64388198ns 1132019 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64388368ns 1132022 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64388823ns 1132030 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64388994ns 1132033 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64389278ns 1132038 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64389562ns 1132043 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64389846ns 1132048 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64390301ns 1132056 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64390471ns 1132059 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64390755ns 1132064 1a110850 fd5ff06f jal x0, -44 +64391040ns 1132069 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64391324ns 1132074 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64391722ns 1132081 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64391892ns 1132084 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64392347ns 1132092 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64392517ns 1132095 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64392801ns 1132100 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64393085ns 1132105 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64393370ns 1132110 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64393824ns 1132118 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64393995ns 1132121 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64394279ns 1132126 1a110850 fd5ff06f jal x0, -44 +64394563ns 1132131 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64394847ns 1132136 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64395245ns 1132143 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64395416ns 1132146 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64395870ns 1132154 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64396041ns 1132157 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64396325ns 1132162 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64396609ns 1132167 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64396893ns 1132172 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64397348ns 1132180 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64397518ns 1132183 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64397803ns 1132188 1a110850 fd5ff06f jal x0, -44 +64398087ns 1132193 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64398371ns 1132198 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64398769ns 1132205 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64398939ns 1132208 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64399394ns 1132216 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64399564ns 1132219 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64399848ns 1132224 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64400133ns 1132229 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64400417ns 1132234 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64400871ns 1132242 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64401042ns 1132245 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64401326ns 1132250 1a110850 fd5ff06f jal x0, -44 +64401610ns 1132255 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64401894ns 1132260 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64402292ns 1132267 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64402463ns 1132270 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64402917ns 1132278 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64403088ns 1132281 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64403372ns 1132286 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64403656ns 1132291 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64403940ns 1132296 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64404395ns 1132304 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64404566ns 1132307 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64404850ns 1132312 1a110850 fd5ff06f jal x0, -44 +64405134ns 1132317 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64405418ns 1132322 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64405816ns 1132329 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64405986ns 1132332 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64406441ns 1132340 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64406611ns 1132343 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64406896ns 1132348 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64407180ns 1132353 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64407464ns 1132358 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64407919ns 1132366 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64408089ns 1132369 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64408373ns 1132374 1a110850 fd5ff06f jal x0, -44 +64408657ns 1132379 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64408942ns 1132384 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64409339ns 1132391 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64409510ns 1132394 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64409965ns 1132402 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64410135ns 1132405 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64410419ns 1132410 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64410703ns 1132415 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64410988ns 1132420 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64411442ns 1132428 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64411613ns 1132431 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64411897ns 1132436 1a110850 fd5ff06f jal x0, -44 +64412181ns 1132441 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64412465ns 1132446 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64412863ns 1132453 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64413034ns 1132456 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64413488ns 1132464 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64413659ns 1132467 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64413943ns 1132472 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64414227ns 1132477 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64414511ns 1132482 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64414966ns 1132490 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64415136ns 1132493 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64415420ns 1132498 1a110850 fd5ff06f jal x0, -44 +64415705ns 1132503 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64415989ns 1132508 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64416387ns 1132515 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64416557ns 1132518 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64417012ns 1132526 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64417182ns 1132529 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64417466ns 1132534 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64417751ns 1132539 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64418035ns 1132544 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64418489ns 1132552 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64418660ns 1132555 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64418944ns 1132560 1a110850 fd5ff06f jal x0, -44 +64419228ns 1132565 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64419512ns 1132570 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64419910ns 1132577 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64420081ns 1132580 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64420535ns 1132588 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64420706ns 1132591 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64420990ns 1132596 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64421274ns 1132601 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64421558ns 1132606 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64422013ns 1132614 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64422183ns 1132617 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64422468ns 1132622 1a110850 fd5ff06f jal x0, -44 +64422752ns 1132627 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64423036ns 1132632 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64423434ns 1132639 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64423604ns 1132642 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64424059ns 1132650 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64424229ns 1132653 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64424514ns 1132658 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64424798ns 1132663 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64425082ns 1132668 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64425537ns 1132676 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64425707ns 1132679 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64425991ns 1132684 1a110850 fd5ff06f jal x0, -44 +64426275ns 1132689 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64426560ns 1132694 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64426957ns 1132701 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64427128ns 1132704 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64427583ns 1132712 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64427753ns 1132715 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64428037ns 1132720 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64428321ns 1132725 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64428605ns 1132730 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64429060ns 1132738 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64429231ns 1132741 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64429515ns 1132746 1a110850 fd5ff06f jal x0, -44 +64429799ns 1132751 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64430083ns 1132756 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64430481ns 1132763 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64430651ns 1132766 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64431106ns 1132774 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64431277ns 1132777 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64431561ns 1132782 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64431845ns 1132787 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64432129ns 1132792 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64432584ns 1132800 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64432754ns 1132803 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64433038ns 1132808 1a110850 fd5ff06f jal x0, -44 +64433323ns 1132813 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64433607ns 1132818 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64434005ns 1132825 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64434175ns 1132828 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64434630ns 1132836 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64434800ns 1132839 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64435084ns 1132844 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64435368ns 1132849 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64435653ns 1132854 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64436107ns 1132862 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64436278ns 1132865 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64436562ns 1132870 1a110850 fd5ff06f jal x0, -44 +64436846ns 1132875 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64437130ns 1132880 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64437528ns 1132887 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64437699ns 1132890 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64438153ns 1132898 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64438324ns 1132901 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64438608ns 1132906 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64438892ns 1132911 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64439176ns 1132916 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64439631ns 1132924 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64439801ns 1132927 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64440086ns 1132932 1a110850 fd5ff06f jal x0, -44 +64440370ns 1132937 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64440654ns 1132942 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64441052ns 1132949 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64441222ns 1132952 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64441677ns 1132960 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64441847ns 1132963 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64442131ns 1132968 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64442416ns 1132973 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64442700ns 1132978 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64443154ns 1132986 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64443325ns 1132989 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64443609ns 1132994 1a110850 fd5ff06f jal x0, -44 +64443893ns 1132999 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64444177ns 1133004 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64444575ns 1133011 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64444746ns 1133014 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64445200ns 1133022 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64445371ns 1133025 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64445655ns 1133030 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64445939ns 1133035 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64446223ns 1133040 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64446678ns 1133048 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64446849ns 1133051 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64447133ns 1133056 1a110850 fd5ff06f jal x0, -44 +64447417ns 1133061 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64447701ns 1133066 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64448099ns 1133073 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64448269ns 1133076 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64448724ns 1133084 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64448895ns 1133087 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64449179ns 1133092 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64449463ns 1133097 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64449747ns 1133102 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64450202ns 1133110 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64450372ns 1133113 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64450656ns 1133118 1a110850 fd5ff06f jal x0, -44 +64450940ns 1133123 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64451225ns 1133128 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64451622ns 1133135 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64451793ns 1133138 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64452248ns 1133146 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64452418ns 1133149 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64452702ns 1133154 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64452986ns 1133159 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64453271ns 1133164 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64453725ns 1133172 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64453896ns 1133175 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64454180ns 1133180 1a110850 fd5ff06f jal x0, -44 +64454464ns 1133185 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64454748ns 1133190 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64455146ns 1133197 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64455317ns 1133200 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64455771ns 1133208 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64455942ns 1133211 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64456226ns 1133216 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64456510ns 1133221 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64456794ns 1133226 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64457249ns 1133234 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64457419ns 1133237 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64457703ns 1133242 1a110850 fd5ff06f jal x0, -44 +64457988ns 1133247 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64458272ns 1133252 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64458670ns 1133259 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64458840ns 1133262 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64459295ns 1133270 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64459465ns 1133273 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64459749ns 1133278 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64460034ns 1133283 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64460318ns 1133288 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64460772ns 1133296 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64460943ns 1133299 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64461227ns 1133304 1a110850 fd5ff06f jal x0, -44 +64461511ns 1133309 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64461795ns 1133314 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64462193ns 1133321 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64462364ns 1133324 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64462818ns 1133332 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64462989ns 1133335 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64463273ns 1133340 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64463557ns 1133345 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64463841ns 1133350 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64464296ns 1133358 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64464466ns 1133361 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64464751ns 1133366 1a110850 fd5ff06f jal x0, -44 +64465035ns 1133371 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64465319ns 1133376 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64465717ns 1133383 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64465887ns 1133386 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64466342ns 1133394 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64466512ns 1133397 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64466797ns 1133402 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64467081ns 1133407 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64467365ns 1133412 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64467820ns 1133420 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64467990ns 1133423 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64468274ns 1133428 1a110850 fd5ff06f jal x0, -44 +64468558ns 1133433 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64468843ns 1133438 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64469240ns 1133445 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64469411ns 1133448 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64469866ns 1133456 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64470036ns 1133459 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64470320ns 1133464 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64470604ns 1133469 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64470888ns 1133474 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64471343ns 1133482 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64471514ns 1133485 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64471798ns 1133490 1a110850 fd5ff06f jal x0, -44 +64472082ns 1133495 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64472366ns 1133500 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64472764ns 1133507 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64472934ns 1133510 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64473389ns 1133518 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64473560ns 1133521 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64473844ns 1133526 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64474128ns 1133531 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64474412ns 1133536 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64474867ns 1133544 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64475037ns 1133547 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64475321ns 1133552 1a110850 fd5ff06f jal x0, -44 +64475606ns 1133557 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64475890ns 1133562 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64476288ns 1133569 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64476458ns 1133572 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64476913ns 1133580 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64477083ns 1133583 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64477367ns 1133588 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64477651ns 1133593 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64477936ns 1133598 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64478390ns 1133606 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64478561ns 1133609 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64478845ns 1133614 1a110850 fd5ff06f jal x0, -44 +64479129ns 1133619 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64479413ns 1133624 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64479811ns 1133631 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64479982ns 1133634 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64480436ns 1133642 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64480607ns 1133645 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64480891ns 1133650 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64481175ns 1133655 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64481459ns 1133660 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64481914ns 1133668 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64482084ns 1133671 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64482369ns 1133676 1a110850 fd5ff06f jal x0, -44 +64482653ns 1133681 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64482937ns 1133686 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64483335ns 1133693 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64483505ns 1133696 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64483960ns 1133704 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64484130ns 1133707 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64484415ns 1133712 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64484699ns 1133717 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64484983ns 1133722 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64485437ns 1133730 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64485608ns 1133733 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64485892ns 1133738 1a110850 fd5ff06f jal x0, -44 +64486176ns 1133743 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64486460ns 1133748 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64486858ns 1133755 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64487029ns 1133758 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64487483ns 1133766 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64487654ns 1133769 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64487938ns 1133774 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64488222ns 1133779 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64488506ns 1133784 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64488961ns 1133792 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64489132ns 1133795 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64489416ns 1133800 1a110850 fd5ff06f jal x0, -44 +64489700ns 1133805 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64489984ns 1133810 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64490382ns 1133817 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64490552ns 1133820 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64491007ns 1133828 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64491178ns 1133831 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64491462ns 1133836 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64491746ns 1133841 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64492030ns 1133846 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64492485ns 1133854 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64492655ns 1133857 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64492939ns 1133862 1a110850 fd5ff06f jal x0, -44 +64493223ns 1133867 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64493508ns 1133872 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64493905ns 1133879 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64494076ns 1133882 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64494531ns 1133890 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64494701ns 1133893 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64494985ns 1133898 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64495269ns 1133903 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64495554ns 1133908 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64496008ns 1133916 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64496179ns 1133919 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64496463ns 1133924 1a110850 fd5ff06f jal x0, -44 +64496747ns 1133929 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64497031ns 1133934 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64497429ns 1133941 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64497600ns 1133944 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64498054ns 1133952 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64498225ns 1133955 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64498509ns 1133960 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64498793ns 1133965 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64499077ns 1133970 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64499532ns 1133978 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64499702ns 1133981 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64499986ns 1133986 1a110850 fd5ff06f jal x0, -44 +64500271ns 1133991 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64500555ns 1133996 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64500953ns 1134003 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64501123ns 1134006 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64501578ns 1134014 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64501748ns 1134017 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64502032ns 1134022 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64502317ns 1134027 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64502601ns 1134032 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64503055ns 1134040 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64503226ns 1134043 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64503510ns 1134048 1a110850 fd5ff06f jal x0, -44 +64503794ns 1134053 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64504078ns 1134058 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64504476ns 1134065 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64504647ns 1134068 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64505101ns 1134076 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64505272ns 1134079 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64505556ns 1134084 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64505840ns 1134089 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64506124ns 1134094 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64506579ns 1134102 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64506749ns 1134105 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64507034ns 1134110 1a110850 fd5ff06f jal x0, -44 +64507318ns 1134115 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64507602ns 1134120 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64508000ns 1134127 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64508170ns 1134130 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64508625ns 1134138 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64508795ns 1134141 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64509080ns 1134146 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64509364ns 1134151 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64509648ns 1134156 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64510103ns 1134164 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64510273ns 1134167 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64510557ns 1134172 1a110850 fd5ff06f jal x0, -44 +64510841ns 1134177 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64511126ns 1134182 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64511523ns 1134189 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64511694ns 1134192 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64512149ns 1134200 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64512319ns 1134203 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64512603ns 1134208 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64512887ns 1134213 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64513171ns 1134218 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64513626ns 1134226 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64513797ns 1134229 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64514081ns 1134234 1a110850 fd5ff06f jal x0, -44 +64514365ns 1134239 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64514649ns 1134244 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64515047ns 1134251 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64515217ns 1134254 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64515672ns 1134262 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64515843ns 1134265 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64516127ns 1134270 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64516411ns 1134275 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64516695ns 1134280 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64517150ns 1134288 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64517320ns 1134291 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64517604ns 1134296 1a110850 fd5ff06f jal x0, -44 +64517889ns 1134301 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64518173ns 1134306 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64518571ns 1134313 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64518741ns 1134316 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64519196ns 1134324 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64519366ns 1134327 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64519650ns 1134332 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64519935ns 1134337 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64520219ns 1134342 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64520673ns 1134350 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64520844ns 1134353 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64521128ns 1134358 1a110850 fd5ff06f jal x0, -44 +64521412ns 1134363 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64521696ns 1134368 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64522094ns 1134375 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64522265ns 1134378 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64522719ns 1134386 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64522890ns 1134389 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64523174ns 1134394 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64523458ns 1134399 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64523742ns 1134404 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64524197ns 1134412 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64524367ns 1134415 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64524652ns 1134420 1a110850 fd5ff06f jal x0, -44 +64524936ns 1134425 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64525220ns 1134430 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64525618ns 1134437 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64525788ns 1134440 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64526243ns 1134448 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64526413ns 1134451 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64526698ns 1134456 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64526982ns 1134461 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64527266ns 1134466 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64527720ns 1134474 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64527891ns 1134477 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64528175ns 1134482 1a110850 fd5ff06f jal x0, -44 +64528459ns 1134487 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64528743ns 1134492 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64529141ns 1134499 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64529312ns 1134502 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64529766ns 1134510 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64529937ns 1134513 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64530221ns 1134518 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64530505ns 1134523 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64530789ns 1134528 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64531244ns 1134536 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64531415ns 1134539 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64531699ns 1134544 1a110850 fd5ff06f jal x0, -44 +64531983ns 1134549 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64532267ns 1134554 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64532665ns 1134561 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64532835ns 1134564 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64533290ns 1134572 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64533461ns 1134575 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64533745ns 1134580 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64534029ns 1134585 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64534313ns 1134590 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64534768ns 1134598 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64534938ns 1134601 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64535222ns 1134606 1a110850 fd5ff06f jal x0, -44 +64535506ns 1134611 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64535791ns 1134616 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64536188ns 1134623 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64536359ns 1134626 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64536814ns 1134634 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64536984ns 1134637 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64537268ns 1134642 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64537552ns 1134647 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64537837ns 1134652 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64538291ns 1134660 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64538462ns 1134663 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64538746ns 1134668 1a110850 fd5ff06f jal x0, -44 +64539030ns 1134673 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64539314ns 1134678 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64539712ns 1134685 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64539883ns 1134688 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64540337ns 1134696 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64540508ns 1134699 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64540792ns 1134704 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64541076ns 1134709 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64541360ns 1134714 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64541815ns 1134722 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64541985ns 1134725 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64542269ns 1134730 1a110850 fd5ff06f jal x0, -44 +64542554ns 1134735 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64542838ns 1134740 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64543236ns 1134747 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64543406ns 1134750 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64543861ns 1134758 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64544031ns 1134761 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64544315ns 1134766 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64544600ns 1134771 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64544884ns 1134776 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64545338ns 1134784 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64545509ns 1134787 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64545793ns 1134792 1a110850 fd5ff06f jal x0, -44 +64546077ns 1134797 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64546361ns 1134802 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64546759ns 1134809 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64546930ns 1134812 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64547384ns 1134820 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64547555ns 1134823 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64547839ns 1134828 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64548123ns 1134833 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64548407ns 1134838 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64548862ns 1134846 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64549032ns 1134849 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64549317ns 1134854 1a110850 fd5ff06f jal x0, -44 +64549601ns 1134859 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64549885ns 1134864 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64550283ns 1134871 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64550453ns 1134874 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64550908ns 1134882 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64551078ns 1134885 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64551363ns 1134890 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64551647ns 1134895 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64551931ns 1134900 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64552386ns 1134908 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64552556ns 1134911 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64552840ns 1134916 1a110850 fd5ff06f jal x0, -44 +64553124ns 1134921 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64553409ns 1134926 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64553806ns 1134933 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64553977ns 1134936 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64554432ns 1134944 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64554602ns 1134947 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64554886ns 1134952 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64555170ns 1134957 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64555455ns 1134962 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64555909ns 1134970 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64556080ns 1134973 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64556364ns 1134978 1a110850 fd5ff06f jal x0, -44 +64556648ns 1134983 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64556932ns 1134988 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64557330ns 1134995 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64557500ns 1134998 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64557955ns 1135006 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64558126ns 1135009 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64558410ns 1135014 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64558694ns 1135019 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64558978ns 1135024 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64559433ns 1135032 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64559603ns 1135035 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64559887ns 1135040 1a110850 fd5ff06f jal x0, -44 +64560172ns 1135045 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64560456ns 1135050 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64560854ns 1135057 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64561024ns 1135060 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64561479ns 1135068 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64561649ns 1135071 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64561933ns 1135076 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64562218ns 1135081 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64562502ns 1135086 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64562956ns 1135094 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64563127ns 1135097 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64563411ns 1135102 1a110850 fd5ff06f jal x0, -44 +64563695ns 1135107 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64563979ns 1135112 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64564377ns 1135119 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64564548ns 1135122 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64565002ns 1135130 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64565173ns 1135133 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64565457ns 1135138 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64565741ns 1135143 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64566025ns 1135148 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64566480ns 1135156 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64566650ns 1135159 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64566935ns 1135164 1a110850 fd5ff06f jal x0, -44 +64567219ns 1135169 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64567503ns 1135174 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64567901ns 1135181 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64568071ns 1135184 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64568526ns 1135192 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64568696ns 1135195 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64568981ns 1135200 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64569265ns 1135205 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64569549ns 1135210 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64570003ns 1135218 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64570174ns 1135221 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64570458ns 1135226 1a110850 fd5ff06f jal x0, -44 +64570742ns 1135231 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64571026ns 1135236 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64571424ns 1135243 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64571595ns 1135246 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64572049ns 1135254 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64572220ns 1135257 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64572504ns 1135262 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64572788ns 1135267 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64573072ns 1135272 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64573527ns 1135280 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64573698ns 1135283 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64573982ns 1135288 1a110850 fd5ff06f jal x0, -44 +64574266ns 1135293 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64574550ns 1135298 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64574948ns 1135305 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64575118ns 1135308 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64575573ns 1135316 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64575744ns 1135319 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64576028ns 1135324 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64576312ns 1135329 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64576596ns 1135334 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64577051ns 1135342 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64577221ns 1135345 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64577505ns 1135350 1a110850 fd5ff06f jal x0, -44 +64577789ns 1135355 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64578074ns 1135360 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64578471ns 1135367 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64578642ns 1135370 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64579097ns 1135378 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64579267ns 1135381 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64579551ns 1135386 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64579835ns 1135391 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64580120ns 1135396 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64580574ns 1135404 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64580745ns 1135407 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64581029ns 1135412 1a110850 fd5ff06f jal x0, -44 +64581313ns 1135417 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64581597ns 1135422 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64581995ns 1135429 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64582166ns 1135432 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64582620ns 1135440 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64582791ns 1135443 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64583075ns 1135448 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64583359ns 1135453 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64583643ns 1135458 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64584098ns 1135466 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64584268ns 1135469 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64584552ns 1135474 1a110850 fd5ff06f jal x0, -44 +64584837ns 1135479 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64585121ns 1135484 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64585519ns 1135491 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64585689ns 1135494 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64586144ns 1135502 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64586314ns 1135505 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64586598ns 1135510 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64586883ns 1135515 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64587167ns 1135520 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64587621ns 1135528 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64587792ns 1135531 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64588076ns 1135536 1a110850 fd5ff06f jal x0, -44 +64588360ns 1135541 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64588644ns 1135546 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64589042ns 1135553 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64589213ns 1135556 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64589667ns 1135564 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64589838ns 1135567 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64590122ns 1135572 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64590406ns 1135577 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64590690ns 1135582 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64591145ns 1135590 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64591315ns 1135593 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64591600ns 1135598 1a110850 fd5ff06f jal x0, -44 +64591884ns 1135603 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64592168ns 1135608 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64592566ns 1135615 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64592736ns 1135618 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64593191ns 1135626 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64593361ns 1135629 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64593646ns 1135634 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64593930ns 1135639 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64594214ns 1135644 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64594669ns 1135652 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64594839ns 1135655 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64595123ns 1135660 1a110850 fd5ff06f jal x0, -44 +64595407ns 1135665 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64595692ns 1135670 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64596089ns 1135677 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64596260ns 1135680 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64596715ns 1135688 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64596885ns 1135691 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64597169ns 1135696 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64597453ns 1135701 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64597738ns 1135706 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64598192ns 1135714 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64598363ns 1135717 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64598647ns 1135722 1a110850 fd5ff06f jal x0, -44 +64598931ns 1135727 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64599215ns 1135732 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64599613ns 1135739 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64599783ns 1135742 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64600238ns 1135750 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64600409ns 1135753 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64600693ns 1135758 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64600977ns 1135763 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64601261ns 1135768 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64601716ns 1135776 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64601886ns 1135779 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64602170ns 1135784 1a110850 fd5ff06f jal x0, -44 +64602455ns 1135789 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64602739ns 1135794 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64603137ns 1135801 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64603307ns 1135804 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64603762ns 1135812 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64603932ns 1135815 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64604216ns 1135820 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64604501ns 1135825 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64604785ns 1135830 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64605239ns 1135838 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64605410ns 1135841 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64605694ns 1135846 1a110850 fd5ff06f jal x0, -44 +64605978ns 1135851 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64606262ns 1135856 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64606660ns 1135863 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64606831ns 1135866 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64607285ns 1135874 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64607456ns 1135877 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64607740ns 1135882 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64608024ns 1135887 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64608308ns 1135892 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64608763ns 1135900 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64608933ns 1135903 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64609218ns 1135908 1a110850 fd5ff06f jal x0, -44 +64609502ns 1135913 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64609786ns 1135918 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64610184ns 1135925 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64610354ns 1135928 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64610809ns 1135936 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64610979ns 1135939 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64611264ns 1135944 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64611548ns 1135949 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64611832ns 1135954 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64612287ns 1135962 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64612457ns 1135965 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64612741ns 1135970 1a110850 fd5ff06f jal x0, -44 +64613025ns 1135975 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64613309ns 1135980 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64613707ns 1135987 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64613878ns 1135990 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64614332ns 1135998 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64614503ns 1136001 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64614787ns 1136006 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64615071ns 1136011 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64615355ns 1136016 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64615810ns 1136024 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64615981ns 1136027 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64616265ns 1136032 1a110850 fd5ff06f jal x0, -44 +64616549ns 1136037 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64616833ns 1136042 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64617231ns 1136049 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64617401ns 1136052 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64617856ns 1136060 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64618027ns 1136063 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64618311ns 1136068 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64618595ns 1136073 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64618879ns 1136078 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64619334ns 1136086 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64619504ns 1136089 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64619788ns 1136094 1a110850 fd5ff06f jal x0, -44 +64620072ns 1136099 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64620357ns 1136104 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64620754ns 1136111 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64620925ns 1136114 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64621380ns 1136122 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64621550ns 1136125 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64621834ns 1136130 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64622118ns 1136135 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64622403ns 1136140 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64622857ns 1136148 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64623028ns 1136151 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64623312ns 1136156 1a110850 fd5ff06f jal x0, -44 +64623596ns 1136161 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64623880ns 1136166 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64624278ns 1136173 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64624449ns 1136176 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64624903ns 1136184 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64625074ns 1136187 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64625358ns 1136192 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64625642ns 1136197 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64625926ns 1136202 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64626381ns 1136210 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64626551ns 1136213 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64626835ns 1136218 1a110850 fd5ff06f jal x0, -44 +64627120ns 1136223 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64627404ns 1136228 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64627802ns 1136235 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64627972ns 1136238 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64628427ns 1136246 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64628597ns 1136249 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64628881ns 1136254 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64629166ns 1136259 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64629450ns 1136264 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64629904ns 1136272 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64630075ns 1136275 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64630359ns 1136280 1a110850 fd5ff06f jal x0, -44 +64630643ns 1136285 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64630927ns 1136290 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64631325ns 1136297 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64631496ns 1136300 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64631950ns 1136308 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64632121ns 1136311 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64632405ns 1136316 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64632689ns 1136321 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64632973ns 1136326 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64633428ns 1136334 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64633599ns 1136337 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64633883ns 1136342 1a110850 fd5ff06f jal x0, -44 +64634167ns 1136347 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64634451ns 1136352 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64634849ns 1136359 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64635019ns 1136362 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64635474ns 1136370 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64635644ns 1136373 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64635929ns 1136378 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64636213ns 1136383 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64636497ns 1136388 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64636952ns 1136396 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64637122ns 1136399 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64637406ns 1136404 1a110850 fd5ff06f jal x0, -44 +64637690ns 1136409 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64637975ns 1136414 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64638372ns 1136421 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64638543ns 1136424 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64638998ns 1136432 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64639168ns 1136435 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64639452ns 1136440 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64639736ns 1136445 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64640021ns 1136450 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64640475ns 1136458 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64640646ns 1136461 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64640930ns 1136466 1a110850 fd5ff06f jal x0, -44 +64641214ns 1136471 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64641498ns 1136476 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64641896ns 1136483 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64642066ns 1136486 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64642521ns 1136494 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64642692ns 1136497 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64642976ns 1136502 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64643260ns 1136507 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64643544ns 1136512 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64643999ns 1136520 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64644169ns 1136523 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64644453ns 1136528 1a110850 fd5ff06f jal x0, -44 +64644738ns 1136533 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64645022ns 1136538 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64645420ns 1136545 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64645590ns 1136548 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64646045ns 1136556 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64646215ns 1136559 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64646499ns 1136564 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64646784ns 1136569 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64647068ns 1136574 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64647522ns 1136582 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64647693ns 1136585 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64647977ns 1136590 1a110850 fd5ff06f jal x0, -44 +64648261ns 1136595 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64648545ns 1136600 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64648943ns 1136607 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64649114ns 1136610 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64649568ns 1136618 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64649739ns 1136621 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64650023ns 1136626 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64650307ns 1136631 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64650591ns 1136636 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64651046ns 1136644 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64651216ns 1136647 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64651501ns 1136652 1a110850 fd5ff06f jal x0, -44 +64651785ns 1136657 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64652069ns 1136662 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64652467ns 1136669 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64652637ns 1136672 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64653092ns 1136680 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64653262ns 1136683 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64653547ns 1136688 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64653831ns 1136693 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64654115ns 1136698 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64654570ns 1136706 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64654740ns 1136709 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64655024ns 1136714 1a110850 fd5ff06f jal x0, -44 +64655308ns 1136719 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64655592ns 1136724 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64655990ns 1136731 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64656161ns 1136734 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64656615ns 1136742 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64656786ns 1136745 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64657070ns 1136750 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64657354ns 1136755 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64657638ns 1136760 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64658093ns 1136768 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64658264ns 1136771 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64658548ns 1136776 1a110850 fd5ff06f jal x0, -44 +64658832ns 1136781 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64659116ns 1136786 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64659514ns 1136793 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64659684ns 1136796 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64660139ns 1136804 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64660310ns 1136807 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64660594ns 1136812 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64660878ns 1136817 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64661162ns 1136822 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64661617ns 1136830 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64661787ns 1136833 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64662071ns 1136838 1a110850 fd5ff06f jal x0, -44 +64662355ns 1136843 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64662640ns 1136848 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64663037ns 1136855 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64663208ns 1136858 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64663663ns 1136866 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64663833ns 1136869 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64664117ns 1136874 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64664401ns 1136879 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64664686ns 1136884 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64665140ns 1136892 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64665311ns 1136895 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64665595ns 1136900 1a110850 fd5ff06f jal x0, -44 +64665879ns 1136905 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64666163ns 1136910 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64666561ns 1136917 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64666732ns 1136920 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64667186ns 1136928 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64667357ns 1136931 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64667641ns 1136936 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64667925ns 1136941 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64668209ns 1136946 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64668664ns 1136954 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64668834ns 1136957 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64669119ns 1136962 1a110850 fd5ff06f jal x0, -44 +64669403ns 1136967 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64669687ns 1136972 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64670085ns 1136979 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64670255ns 1136982 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64670710ns 1136990 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64670880ns 1136993 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64671164ns 1136998 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64671449ns 1137003 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64671733ns 1137008 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64672187ns 1137016 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64672358ns 1137019 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64672642ns 1137024 1a110850 fd5ff06f jal x0, -44 +64672926ns 1137029 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64673210ns 1137034 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64673608ns 1137041 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64673779ns 1137044 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64674233ns 1137052 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64674404ns 1137055 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64674688ns 1137060 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64674972ns 1137065 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64675256ns 1137070 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64675711ns 1137078 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64675882ns 1137081 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64676166ns 1137086 1a110850 fd5ff06f jal x0, -44 +64676450ns 1137091 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64676734ns 1137096 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64677132ns 1137103 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64677302ns 1137106 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64677757ns 1137114 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64677927ns 1137117 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64678212ns 1137122 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64678496ns 1137127 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64678780ns 1137132 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64679235ns 1137140 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64679405ns 1137143 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64679689ns 1137148 1a110850 fd5ff06f jal x0, -44 +64679973ns 1137153 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64680258ns 1137158 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64680655ns 1137165 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64680826ns 1137168 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64681281ns 1137176 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64681451ns 1137179 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64681735ns 1137184 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64682019ns 1137189 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64682304ns 1137194 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64682758ns 1137202 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64682929ns 1137205 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64683213ns 1137210 1a110850 fd5ff06f jal x0, -44 +64683497ns 1137215 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64683781ns 1137220 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64684179ns 1137227 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64684349ns 1137230 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64684804ns 1137238 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64684975ns 1137241 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64685259ns 1137246 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64685543ns 1137251 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64685827ns 1137256 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64686282ns 1137264 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64686452ns 1137267 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64686736ns 1137272 1a110850 fd5ff06f jal x0, -44 +64687021ns 1137277 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64687305ns 1137282 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64687703ns 1137289 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64687873ns 1137292 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64688328ns 1137300 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64688498ns 1137303 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64688782ns 1137308 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64689067ns 1137313 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64689351ns 1137318 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64689805ns 1137326 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64689976ns 1137329 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64690260ns 1137334 1a110850 fd5ff06f jal x0, -44 +64690544ns 1137339 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64690828ns 1137344 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64691226ns 1137351 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64691397ns 1137354 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64691851ns 1137362 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64692022ns 1137365 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64692306ns 1137370 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64692590ns 1137375 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64692874ns 1137380 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64693329ns 1137388 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64693499ns 1137391 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64693784ns 1137396 1a110850 fd5ff06f jal x0, -44 +64694068ns 1137401 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64694352ns 1137406 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64694750ns 1137413 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64694920ns 1137416 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64695375ns 1137424 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64695545ns 1137427 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64695830ns 1137432 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64696114ns 1137437 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64696398ns 1137442 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64696853ns 1137450 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64697023ns 1137453 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64697307ns 1137458 1a110850 fd5ff06f jal x0, -44 +64697591ns 1137463 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64697875ns 1137468 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64698273ns 1137475 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64698444ns 1137478 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64698898ns 1137486 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64699069ns 1137489 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64699353ns 1137494 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64699637ns 1137499 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64699921ns 1137504 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64700376ns 1137512 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64700547ns 1137515 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64700831ns 1137520 1a110850 fd5ff06f jal x0, -44 +64701115ns 1137525 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64701399ns 1137530 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64701797ns 1137537 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64701967ns 1137540 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64702422ns 1137548 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64702593ns 1137551 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64702877ns 1137556 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64703161ns 1137561 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64703445ns 1137566 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64703900ns 1137574 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64704070ns 1137577 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64704354ns 1137582 1a110850 fd5ff06f jal x0, -44 +64704639ns 1137587 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64704923ns 1137592 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64705320ns 1137599 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64705491ns 1137602 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64705946ns 1137610 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64706116ns 1137613 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64706400ns 1137618 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64706684ns 1137623 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64706969ns 1137628 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64707423ns 1137636 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64707594ns 1137639 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64707878ns 1137644 1a110850 fd5ff06f jal x0, -44 +64708162ns 1137649 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64708446ns 1137654 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64708844ns 1137661 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64709015ns 1137664 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64709469ns 1137672 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64709640ns 1137675 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64709924ns 1137680 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64710208ns 1137685 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64710492ns 1137690 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64710947ns 1137698 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64711117ns 1137701 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64711402ns 1137706 1a110850 fd5ff06f jal x0, -44 +64711686ns 1137711 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64711970ns 1137716 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64712368ns 1137723 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64712538ns 1137726 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64712993ns 1137734 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64713163ns 1137737 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64713447ns 1137742 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64713732ns 1137747 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64714016ns 1137752 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64714470ns 1137760 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64714641ns 1137763 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64714925ns 1137768 1a110850 fd5ff06f jal x0, -44 +64715209ns 1137773 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64715493ns 1137778 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64715891ns 1137785 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64716062ns 1137788 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64716516ns 1137796 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64716687ns 1137799 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64716971ns 1137804 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64717255ns 1137809 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64717539ns 1137814 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64717994ns 1137822 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64718165ns 1137825 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64718449ns 1137830 1a110850 fd5ff06f jal x0, -44 +64718733ns 1137835 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64719017ns 1137840 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64719415ns 1137847 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64719585ns 1137850 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64720040ns 1137858 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64720210ns 1137861 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64720495ns 1137866 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64720779ns 1137871 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64721063ns 1137876 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64721518ns 1137884 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64721688ns 1137887 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64721972ns 1137892 1a110850 fd5ff06f jal x0, -44 +64722256ns 1137897 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64722541ns 1137902 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64722938ns 1137909 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64723109ns 1137912 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64723564ns 1137920 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64723734ns 1137923 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64724018ns 1137928 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64724302ns 1137933 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64724587ns 1137938 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64725041ns 1137946 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64725212ns 1137949 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64725496ns 1137954 1a110850 fd5ff06f jal x0, -44 +64725780ns 1137959 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64726064ns 1137964 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64726462ns 1137971 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64726632ns 1137974 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64727087ns 1137982 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64727258ns 1137985 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64727542ns 1137990 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64727826ns 1137995 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64728110ns 1138000 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64728565ns 1138008 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64728735ns 1138011 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64729019ns 1138016 1a110850 fd5ff06f jal x0, -44 +64729304ns 1138021 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64729588ns 1138026 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64729986ns 1138033 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64730156ns 1138036 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64730611ns 1138044 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64730781ns 1138047 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64731065ns 1138052 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64731350ns 1138057 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64731634ns 1138062 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64732088ns 1138070 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64732259ns 1138073 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64732543ns 1138078 1a110850 fd5ff06f jal x0, -44 +64732827ns 1138083 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64733111ns 1138088 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64733509ns 1138095 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64733680ns 1138098 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64734134ns 1138106 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64734305ns 1138109 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64734589ns 1138114 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64734873ns 1138119 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64735157ns 1138124 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64735612ns 1138132 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64735782ns 1138135 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64736067ns 1138140 1a110850 fd5ff06f jal x0, -44 +64736351ns 1138145 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64736635ns 1138150 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64737033ns 1138157 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64737203ns 1138160 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64737658ns 1138168 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64737828ns 1138171 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64738113ns 1138176 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64738397ns 1138181 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64738681ns 1138186 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64739136ns 1138194 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64739306ns 1138197 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64739590ns 1138202 1a110850 fd5ff06f jal x0, -44 +64739874ns 1138207 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64740159ns 1138212 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64740556ns 1138219 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64740727ns 1138222 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64741181ns 1138230 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64741352ns 1138233 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64741636ns 1138238 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64741920ns 1138243 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64742204ns 1138248 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64742659ns 1138256 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64742830ns 1138259 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64743114ns 1138264 1a110850 fd5ff06f jal x0, -44 +64743398ns 1138269 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64743682ns 1138274 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64744080ns 1138281 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64744250ns 1138284 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64744705ns 1138292 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64744876ns 1138295 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64745160ns 1138300 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64745444ns 1138305 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64745728ns 1138310 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64746183ns 1138318 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64746353ns 1138321 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64746637ns 1138326 1a110850 fd5ff06f jal x0, -44 +64746922ns 1138331 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64747206ns 1138336 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64747603ns 1138343 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64747774ns 1138346 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64748229ns 1138354 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64748399ns 1138357 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64748683ns 1138362 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64748967ns 1138367 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64749252ns 1138372 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64749706ns 1138380 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64749877ns 1138383 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64750161ns 1138388 1a110850 fd5ff06f jal x0, -44 +64750445ns 1138393 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64750729ns 1138398 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64751127ns 1138405 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64751298ns 1138408 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64751752ns 1138416 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64751923ns 1138419 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64752207ns 1138424 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64752491ns 1138429 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64752775ns 1138434 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64753230ns 1138442 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64753400ns 1138445 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64753685ns 1138450 1a110850 fd5ff06f jal x0, -44 +64753969ns 1138455 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64754253ns 1138460 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64754651ns 1138467 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64754821ns 1138470 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64755276ns 1138478 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64755446ns 1138481 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64755730ns 1138486 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64756015ns 1138491 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64756299ns 1138496 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64756753ns 1138504 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64756924ns 1138507 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64757208ns 1138512 1a110850 fd5ff06f jal x0, -44 +64757492ns 1138517 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64757776ns 1138522 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64758174ns 1138529 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64758345ns 1138532 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64758799ns 1138540 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64758970ns 1138543 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64759254ns 1138548 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64759538ns 1138553 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64759822ns 1138558 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64760277ns 1138566 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64760448ns 1138569 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64760732ns 1138574 1a110850 fd5ff06f jal x0, -44 +64761016ns 1138579 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64761300ns 1138584 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64761698ns 1138591 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64761868ns 1138594 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64762323ns 1138602 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64762493ns 1138605 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64762778ns 1138610 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64763062ns 1138615 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64763346ns 1138620 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64763801ns 1138628 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64763971ns 1138631 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64764255ns 1138636 1a110850 fd5ff06f jal x0, -44 +64764539ns 1138641 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64764824ns 1138646 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64765221ns 1138653 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64765392ns 1138656 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64765847ns 1138664 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64766017ns 1138667 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64766301ns 1138672 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64766585ns 1138677 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64766870ns 1138682 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64767324ns 1138690 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64767495ns 1138693 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64767779ns 1138698 1a110850 fd5ff06f jal x0, -44 +64768063ns 1138703 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64768347ns 1138708 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64768745ns 1138715 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64768915ns 1138718 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64769370ns 1138726 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64769541ns 1138729 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64769825ns 1138734 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64770109ns 1138739 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64770393ns 1138744 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64770848ns 1138752 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64771018ns 1138755 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64771302ns 1138760 1a110850 fd5ff06f jal x0, -44 +64771587ns 1138765 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64771871ns 1138770 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64772269ns 1138777 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64772439ns 1138780 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64772894ns 1138788 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64773064ns 1138791 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64773348ns 1138796 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64773633ns 1138801 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64773917ns 1138806 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64774371ns 1138814 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64774542ns 1138817 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64774826ns 1138822 1a110850 fd5ff06f jal x0, -44 +64775110ns 1138827 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64775394ns 1138832 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64775792ns 1138839 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64775963ns 1138842 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64776417ns 1138850 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64776588ns 1138853 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64776872ns 1138858 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64777156ns 1138863 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64777440ns 1138868 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64777895ns 1138876 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64778065ns 1138879 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64778350ns 1138884 1a110850 fd5ff06f jal x0, -44 +64778634ns 1138889 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64778918ns 1138894 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64779316ns 1138901 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64779486ns 1138904 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64779941ns 1138912 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64780111ns 1138915 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64780396ns 1138920 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64780680ns 1138925 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64780964ns 1138930 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64781419ns 1138938 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64781589ns 1138941 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64781873ns 1138946 1a110850 fd5ff06f jal x0, -44 +64782157ns 1138951 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64782442ns 1138956 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64782839ns 1138963 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64783010ns 1138966 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64783464ns 1138974 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64783635ns 1138977 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64783919ns 1138982 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64784203ns 1138987 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64784487ns 1138992 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64784942ns 1139000 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64785113ns 1139003 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64785397ns 1139008 1a110850 fd5ff06f jal x0, -44 +64785681ns 1139013 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64785965ns 1139018 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64786363ns 1139025 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64786533ns 1139028 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64786988ns 1139036 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64787159ns 1139039 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64787443ns 1139044 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64787727ns 1139049 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64788011ns 1139054 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64788466ns 1139062 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64788636ns 1139065 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64788920ns 1139070 1a110850 fd5ff06f jal x0, -44 +64789205ns 1139075 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64789489ns 1139080 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64789887ns 1139087 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64790057ns 1139090 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64790512ns 1139098 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64790682ns 1139101 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64790966ns 1139106 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64791250ns 1139111 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64791535ns 1139116 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64791989ns 1139124 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64792160ns 1139127 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64792444ns 1139132 1a110850 fd5ff06f jal x0, -44 +64792728ns 1139137 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64793012ns 1139142 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64793410ns 1139149 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64793581ns 1139152 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64794035ns 1139160 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64794206ns 1139163 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64794490ns 1139168 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64794774ns 1139173 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64795058ns 1139178 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64795513ns 1139186 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64795683ns 1139189 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64795968ns 1139194 1a110850 fd5ff06f jal x0, -44 +64796252ns 1139199 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64796536ns 1139204 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64796934ns 1139211 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64797104ns 1139214 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64797559ns 1139222 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64797729ns 1139225 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64798013ns 1139230 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64798298ns 1139235 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64798582ns 1139240 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64799036ns 1139248 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64799207ns 1139251 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64799491ns 1139256 1a110850 fd5ff06f jal x0, -44 +64799775ns 1139261 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64800059ns 1139266 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64800457ns 1139273 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64800628ns 1139276 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64801082ns 1139284 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64801253ns 1139287 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64801537ns 1139292 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64801821ns 1139297 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64802105ns 1139302 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64802560ns 1139310 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64802731ns 1139313 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64803015ns 1139318 1a110850 fd5ff06f jal x0, -44 +64803299ns 1139323 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64803583ns 1139328 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64803981ns 1139335 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64804151ns 1139338 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64804606ns 1139346 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64804776ns 1139349 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64805061ns 1139354 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64805345ns 1139359 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64805629ns 1139364 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64806084ns 1139372 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64806254ns 1139375 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64806538ns 1139380 1a110850 fd5ff06f jal x0, -44 +64806822ns 1139385 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64807107ns 1139390 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64807504ns 1139397 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64807675ns 1139400 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64808130ns 1139408 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64808300ns 1139411 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64808584ns 1139416 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64808868ns 1139421 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64809153ns 1139426 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64809607ns 1139434 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64809778ns 1139437 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64810062ns 1139442 1a110850 fd5ff06f jal x0, -44 +64810346ns 1139447 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64810630ns 1139452 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64811028ns 1139459 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64811199ns 1139462 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64811653ns 1139470 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64811824ns 1139473 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64812108ns 1139478 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64812392ns 1139483 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64812676ns 1139488 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64813131ns 1139496 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64813301ns 1139499 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64813585ns 1139504 1a110850 fd5ff06f jal x0, -44 +64813870ns 1139509 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64814154ns 1139514 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64814552ns 1139521 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64814722ns 1139524 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64815177ns 1139532 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64815347ns 1139535 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64815631ns 1139540 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64815916ns 1139545 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64816200ns 1139550 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64816654ns 1139558 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64816825ns 1139561 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64817109ns 1139566 1a110850 fd5ff06f jal x0, -44 +64817393ns 1139571 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64817677ns 1139576 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64818075ns 1139583 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64818246ns 1139586 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64818700ns 1139594 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64818871ns 1139597 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64819155ns 1139602 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64819439ns 1139607 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64819723ns 1139612 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64820178ns 1139620 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64820348ns 1139623 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64820633ns 1139628 1a110850 fd5ff06f jal x0, -44 +64820917ns 1139633 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64821201ns 1139638 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64821599ns 1139645 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64821769ns 1139648 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64822224ns 1139656 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64822394ns 1139659 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64822679ns 1139664 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64822963ns 1139669 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64823247ns 1139674 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64823702ns 1139682 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64823872ns 1139685 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64824156ns 1139690 1a110850 fd5ff06f jal x0, -44 +64824440ns 1139695 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64824725ns 1139700 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64825122ns 1139707 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64825293ns 1139710 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64825747ns 1139718 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64825918ns 1139721 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64826202ns 1139726 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64826486ns 1139731 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64826770ns 1139736 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64827225ns 1139744 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64827396ns 1139747 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64827680ns 1139752 1a110850 fd5ff06f jal x0, -44 +64827964ns 1139757 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64828248ns 1139762 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64828646ns 1139769 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64828816ns 1139772 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64829271ns 1139780 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64829442ns 1139783 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64829726ns 1139788 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64830010ns 1139793 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64830294ns 1139798 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64830749ns 1139806 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64830919ns 1139809 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64831203ns 1139814 1a110850 fd5ff06f jal x0, -44 +64831488ns 1139819 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64831772ns 1139824 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64832170ns 1139831 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64832340ns 1139834 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64832795ns 1139842 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64832965ns 1139845 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64833249ns 1139850 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64833533ns 1139855 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64833818ns 1139860 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64834272ns 1139868 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64834443ns 1139871 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64834727ns 1139876 1a110850 fd5ff06f jal x0, -44 +64835011ns 1139881 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64835295ns 1139886 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64835693ns 1139893 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64835864ns 1139896 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64836318ns 1139904 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64836489ns 1139907 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64836773ns 1139912 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64837057ns 1139917 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64837341ns 1139922 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64837796ns 1139930 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64837966ns 1139933 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64838251ns 1139938 1a110850 fd5ff06f jal x0, -44 +64838535ns 1139943 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64838819ns 1139948 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64839217ns 1139955 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64839387ns 1139958 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64839842ns 1139966 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64840012ns 1139969 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64840296ns 1139974 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64840581ns 1139979 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64840865ns 1139984 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64841319ns 1139992 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64841490ns 1139995 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64841774ns 1140000 1a110850 fd5ff06f jal x0, -44 +64842058ns 1140005 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64842342ns 1140010 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64842740ns 1140017 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64842911ns 1140020 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64843365ns 1140028 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64843536ns 1140031 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64843820ns 1140036 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64844104ns 1140041 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64844388ns 1140046 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64844843ns 1140054 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64845014ns 1140057 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64845298ns 1140062 1a110850 fd5ff06f jal x0, -44 +64845582ns 1140067 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64845866ns 1140072 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64846264ns 1140079 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64846434ns 1140082 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64846889ns 1140090 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64847059ns 1140093 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64847344ns 1140098 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64847628ns 1140103 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64847912ns 1140108 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64848367ns 1140116 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64848537ns 1140119 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64848821ns 1140124 1a110850 fd5ff06f jal x0, -44 +64849105ns 1140129 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64849390ns 1140134 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64849787ns 1140141 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64849958ns 1140144 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64850413ns 1140152 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64850583ns 1140155 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64850867ns 1140160 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64851151ns 1140165 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64851436ns 1140170 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64851890ns 1140178 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64852061ns 1140181 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64852345ns 1140186 1a110850 fd5ff06f jal x0, -44 +64852629ns 1140191 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64852913ns 1140196 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64853311ns 1140203 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64853482ns 1140206 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64853936ns 1140214 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64854107ns 1140217 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64854391ns 1140222 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64854675ns 1140227 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64854959ns 1140232 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64855414ns 1140240 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64855584ns 1140243 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64855868ns 1140248 1a110850 fd5ff06f jal x0, -44 +64856153ns 1140253 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64856437ns 1140258 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64856835ns 1140265 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64857005ns 1140268 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64857460ns 1140276 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64857630ns 1140279 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64857914ns 1140284 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64858199ns 1140289 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64858483ns 1140294 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64858937ns 1140302 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64859108ns 1140305 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64859392ns 1140310 1a110850 fd5ff06f jal x0, -44 +64859676ns 1140315 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64859960ns 1140320 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64860358ns 1140327 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64860529ns 1140330 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64860983ns 1140338 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64861154ns 1140341 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64861438ns 1140346 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64861722ns 1140351 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64862006ns 1140356 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64862461ns 1140364 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64862631ns 1140367 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64862916ns 1140372 1a110850 fd5ff06f jal x0, -44 +64863200ns 1140377 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64863484ns 1140382 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64863882ns 1140389 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64864052ns 1140392 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64864507ns 1140400 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64864677ns 1140403 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64864962ns 1140408 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64865246ns 1140413 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64865530ns 1140418 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64865985ns 1140426 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64866155ns 1140429 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64866439ns 1140434 1a110850 fd5ff06f jal x0, -44 +64866723ns 1140439 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64867008ns 1140444 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64867405ns 1140451 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64867576ns 1140454 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64868031ns 1140462 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64868201ns 1140465 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64868485ns 1140470 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64868769ns 1140475 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64869053ns 1140480 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64869508ns 1140488 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64869679ns 1140491 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64869963ns 1140496 1a110850 fd5ff06f jal x0, -44 +64870247ns 1140501 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64870531ns 1140506 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64870929ns 1140513 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64871099ns 1140516 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64871554ns 1140524 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64871725ns 1140527 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64872009ns 1140532 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64872293ns 1140537 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64872577ns 1140542 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64873032ns 1140550 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64873202ns 1140553 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64873486ns 1140558 1a110850 fd5ff06f jal x0, -44 +64873771ns 1140563 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64874055ns 1140568 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64874453ns 1140575 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64874623ns 1140578 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64875078ns 1140586 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64875248ns 1140589 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64875532ns 1140594 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64875816ns 1140599 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64876101ns 1140604 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64876555ns 1140612 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64876726ns 1140615 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64877010ns 1140620 1a110850 fd5ff06f jal x0, -44 +64877294ns 1140625 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64877578ns 1140630 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64877976ns 1140637 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64878147ns 1140640 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64878601ns 1140648 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64878772ns 1140651 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64879056ns 1140656 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64879340ns 1140661 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64879624ns 1140666 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64880079ns 1140674 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64880249ns 1140677 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64880534ns 1140682 1a110850 fd5ff06f jal x0, -44 +64880818ns 1140687 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64881102ns 1140692 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64881500ns 1140699 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64881670ns 1140702 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64882125ns 1140710 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64882295ns 1140713 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64882579ns 1140718 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64882864ns 1140723 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64883148ns 1140728 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64883602ns 1140736 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64883773ns 1140739 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64884057ns 1140744 1a110850 fd5ff06f jal x0, -44 +64884341ns 1140749 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64884625ns 1140754 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64885023ns 1140761 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64885194ns 1140764 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64885648ns 1140772 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64885819ns 1140775 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64886103ns 1140780 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64886387ns 1140785 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64886671ns 1140790 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64887126ns 1140798 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64887297ns 1140801 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64887581ns 1140806 1a110850 fd5ff06f jal x0, -44 +64887865ns 1140811 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64888149ns 1140816 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64888547ns 1140823 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64888717ns 1140826 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64889172ns 1140834 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64889343ns 1140837 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64889627ns 1140842 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64889911ns 1140847 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64890195ns 1140852 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64890650ns 1140860 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64890820ns 1140863 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64891104ns 1140868 1a110850 fd5ff06f jal x0, -44 +64891388ns 1140873 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64891673ns 1140878 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64892070ns 1140885 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64892241ns 1140888 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64892696ns 1140896 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64892866ns 1140899 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64893150ns 1140904 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64893434ns 1140909 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64893719ns 1140914 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64894173ns 1140922 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64894344ns 1140925 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64894628ns 1140930 1a110850 fd5ff06f jal x0, -44 +64894912ns 1140935 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64895196ns 1140940 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64895594ns 1140947 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64895765ns 1140950 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64896219ns 1140958 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64896390ns 1140961 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64896674ns 1140966 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64896958ns 1140971 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64897242ns 1140976 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64897697ns 1140984 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64897867ns 1140987 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64898151ns 1140992 1a110850 fd5ff06f jal x0, -44 +64898436ns 1140997 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64898720ns 1141002 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64899118ns 1141009 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64899288ns 1141012 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64899743ns 1141020 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64899913ns 1141023 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64900197ns 1141028 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64900482ns 1141033 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64900766ns 1141038 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64901220ns 1141046 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64901391ns 1141049 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64901675ns 1141054 1a110850 fd5ff06f jal x0, -44 +64901959ns 1141059 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64902243ns 1141064 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64902641ns 1141071 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64902812ns 1141074 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64903266ns 1141082 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64903437ns 1141085 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64903721ns 1141090 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64904005ns 1141095 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64904289ns 1141100 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64904744ns 1141108 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64904914ns 1141111 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64905199ns 1141116 1a110850 fd5ff06f jal x0, -44 +64905483ns 1141121 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64905767ns 1141126 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64906165ns 1141133 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64906335ns 1141136 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64906790ns 1141144 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64906960ns 1141147 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64907245ns 1141152 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64907529ns 1141157 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64907813ns 1141162 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64908268ns 1141170 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64908438ns 1141173 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64908722ns 1141178 1a110850 fd5ff06f jal x0, -44 +64909006ns 1141183 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64909291ns 1141188 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64909688ns 1141195 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64909859ns 1141198 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64910314ns 1141206 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64910484ns 1141209 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64910768ns 1141214 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64911052ns 1141219 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64911336ns 1141224 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64911791ns 1141232 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64911962ns 1141235 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64912246ns 1141240 1a110850 fd5ff06f jal x0, -44 +64912530ns 1141245 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64912814ns 1141250 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64913212ns 1141257 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64913382ns 1141260 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64913837ns 1141268 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64914008ns 1141271 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64914292ns 1141276 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64914576ns 1141281 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64914860ns 1141286 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64915315ns 1141294 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64915485ns 1141297 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64915769ns 1141302 1a110850 fd5ff06f jal x0, -44 +64916054ns 1141307 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64916338ns 1141312 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64916736ns 1141319 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64916906ns 1141322 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64917361ns 1141330 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64917531ns 1141333 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64917815ns 1141338 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64918099ns 1141343 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64918384ns 1141348 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64918838ns 1141356 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64919009ns 1141359 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64919293ns 1141364 1a110850 fd5ff06f jal x0, -44 +64919577ns 1141369 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64919861ns 1141374 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64920259ns 1141381 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64920430ns 1141384 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64920884ns 1141392 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64921055ns 1141395 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64921339ns 1141400 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64921623ns 1141405 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64921907ns 1141410 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64922362ns 1141418 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64922532ns 1141421 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64922817ns 1141426 1a110850 fd5ff06f jal x0, -44 +64923101ns 1141431 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64923385ns 1141436 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64923783ns 1141443 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64923953ns 1141446 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64924408ns 1141454 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64924578ns 1141457 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64924863ns 1141462 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64925147ns 1141467 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64925431ns 1141472 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64925885ns 1141480 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64926056ns 1141483 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64926340ns 1141488 1a110850 fd5ff06f jal x0, -44 +64926624ns 1141493 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64926908ns 1141498 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64927306ns 1141505 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64927477ns 1141508 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64927931ns 1141516 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64928102ns 1141519 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64928386ns 1141524 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64928670ns 1141529 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64928954ns 1141534 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64929409ns 1141542 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64929580ns 1141545 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64929864ns 1141550 1a110850 fd5ff06f jal x0, -44 +64930148ns 1141555 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64930432ns 1141560 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64930830ns 1141567 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64931000ns 1141570 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64931455ns 1141578 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64931626ns 1141581 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64931910ns 1141586 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64932194ns 1141591 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64932478ns 1141596 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64932933ns 1141604 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64933103ns 1141607 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64933387ns 1141612 1a110850 fd5ff06f jal x0, -44 +64933671ns 1141617 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64933956ns 1141622 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64934353ns 1141629 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64934524ns 1141632 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64934979ns 1141640 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64935149ns 1141643 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64935433ns 1141648 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64935717ns 1141653 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64936002ns 1141658 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64936456ns 1141666 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64936627ns 1141669 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64936911ns 1141674 1a110850 fd5ff06f jal x0, -44 +64937195ns 1141679 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64937479ns 1141684 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64937877ns 1141691 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64938048ns 1141694 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64938502ns 1141702 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64938673ns 1141705 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64938957ns 1141710 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64939241ns 1141715 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64939525ns 1141720 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64939980ns 1141728 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64940150ns 1141731 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64940434ns 1141736 1a110850 fd5ff06f jal x0, -44 +64940719ns 1141741 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64941003ns 1141746 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64941401ns 1141753 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64941571ns 1141756 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64942026ns 1141764 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64942196ns 1141767 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64942480ns 1141772 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64942765ns 1141777 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64943049ns 1141782 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64943503ns 1141790 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64943674ns 1141793 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64943958ns 1141798 1a110850 fd5ff06f jal x0, -44 +64944242ns 1141803 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64944526ns 1141808 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64944924ns 1141815 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64945095ns 1141818 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64945549ns 1141826 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64945720ns 1141829 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64946004ns 1141834 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64946288ns 1141839 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64946572ns 1141844 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64947027ns 1141852 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64947197ns 1141855 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64947482ns 1141860 1a110850 fd5ff06f jal x0, -44 +64947766ns 1141865 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64948050ns 1141870 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64948448ns 1141877 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64948618ns 1141880 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64949073ns 1141888 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64949243ns 1141891 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64949528ns 1141896 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64949812ns 1141901 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64950096ns 1141906 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64950551ns 1141914 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64950721ns 1141917 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64951005ns 1141922 1a110850 fd5ff06f jal x0, -44 +64951289ns 1141927 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64951574ns 1141932 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64951971ns 1141939 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64952142ns 1141942 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64952597ns 1141950 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64952767ns 1141953 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64953051ns 1141958 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64953335ns 1141963 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64953619ns 1141968 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64954074ns 1141976 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64954245ns 1141979 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64954529ns 1141984 1a110850 fd5ff06f jal x0, -44 +64954813ns 1141989 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64955097ns 1141994 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64955495ns 1142001 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64955665ns 1142004 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64956120ns 1142012 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64956291ns 1142015 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64956575ns 1142020 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64956859ns 1142025 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64957143ns 1142030 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64957598ns 1142038 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64957768ns 1142041 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64958052ns 1142046 1a110850 fd5ff06f jal x0, -44 +64958337ns 1142051 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64958621ns 1142056 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64959019ns 1142063 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64959189ns 1142066 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64959644ns 1142074 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64959814ns 1142077 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64960098ns 1142082 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64960383ns 1142087 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64960667ns 1142092 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64961121ns 1142100 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64961292ns 1142103 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64961576ns 1142108 1a110850 fd5ff06f jal x0, -44 +64961860ns 1142113 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64962144ns 1142118 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64962542ns 1142125 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64962713ns 1142128 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64963167ns 1142136 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64963338ns 1142139 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64963622ns 1142144 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64963906ns 1142149 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64964190ns 1142154 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64964645ns 1142162 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64964815ns 1142165 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64965100ns 1142170 1a110850 fd5ff06f jal x0, -44 +64965384ns 1142175 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64965668ns 1142180 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64966066ns 1142187 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64966236ns 1142190 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64966691ns 1142198 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64966861ns 1142201 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64967146ns 1142206 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64967430ns 1142211 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64967714ns 1142216 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64968168ns 1142224 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64968339ns 1142227 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64968623ns 1142232 1a110850 fd5ff06f jal x0, -44 +64968907ns 1142237 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64969191ns 1142242 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64969589ns 1142249 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64969760ns 1142252 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64970214ns 1142260 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64970385ns 1142263 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64970669ns 1142268 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64970953ns 1142273 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64971237ns 1142278 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64971692ns 1142286 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64971863ns 1142289 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64972147ns 1142294 1a110850 fd5ff06f jal x0, -44 +64972431ns 1142299 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64972715ns 1142304 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64973113ns 1142311 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64973283ns 1142314 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64973738ns 1142322 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64973909ns 1142325 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64974193ns 1142330 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64974477ns 1142335 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64974761ns 1142340 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64975216ns 1142348 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64975386ns 1142351 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64975670ns 1142356 1a110850 fd5ff06f jal x0, -44 +64975954ns 1142361 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64976239ns 1142366 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64976636ns 1142373 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64976807ns 1142376 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64977262ns 1142384 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64977432ns 1142387 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64977716ns 1142392 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64978000ns 1142397 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64978285ns 1142402 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64978739ns 1142410 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64978910ns 1142413 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64979194ns 1142418 1a110850 fd5ff06f jal x0, -44 +64979478ns 1142423 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64979762ns 1142428 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64980160ns 1142435 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64980331ns 1142438 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64980785ns 1142446 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64980956ns 1142449 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64981240ns 1142454 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64981524ns 1142459 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64981808ns 1142464 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64982263ns 1142472 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64982433ns 1142475 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64982717ns 1142480 1a110850 fd5ff06f jal x0, -44 +64983002ns 1142485 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64983286ns 1142490 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64983684ns 1142497 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64983854ns 1142500 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64984309ns 1142508 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64984479ns 1142511 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64984763ns 1142516 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64985048ns 1142521 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64985332ns 1142526 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64985786ns 1142534 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64985957ns 1142537 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64986241ns 1142542 1a110850 fd5ff06f jal x0, -44 +64986525ns 1142547 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64986809ns 1142552 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64987207ns 1142559 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64987378ns 1142562 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64987832ns 1142570 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64988003ns 1142573 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64988287ns 1142578 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64988571ns 1142583 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64988855ns 1142588 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64989310ns 1142596 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64989480ns 1142599 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64989765ns 1142604 1a110850 fd5ff06f jal x0, -44 +64990049ns 1142609 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64990333ns 1142614 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64990731ns 1142621 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64990901ns 1142624 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64991356ns 1142632 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64991526ns 1142635 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64991811ns 1142640 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64992095ns 1142645 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64992379ns 1142650 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64992834ns 1142658 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64993004ns 1142661 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64993288ns 1142666 1a110850 fd5ff06f jal x0, -44 +64993572ns 1142671 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64993857ns 1142676 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64994254ns 1142683 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64994425ns 1142686 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64994880ns 1142694 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64995050ns 1142697 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64995334ns 1142702 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64995618ns 1142707 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64995903ns 1142712 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64996357ns 1142720 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +64996528ns 1142723 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +64996812ns 1142728 1a110850 fd5ff06f jal x0, -44 +64997096ns 1142733 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64997380ns 1142738 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +64997778ns 1142745 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64997948ns 1142748 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64998403ns 1142756 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +64998574ns 1142759 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +64998858ns 1142764 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +64999142ns 1142769 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +64999426ns 1142774 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +64999881ns 1142782 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65000051ns 1142785 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65000335ns 1142790 1a110850 fd5ff06f jal x0, -44 +65000620ns 1142795 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65000904ns 1142800 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65001302ns 1142807 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65001472ns 1142810 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65001927ns 1142818 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65002097ns 1142821 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65002381ns 1142826 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65002666ns 1142831 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65002950ns 1142836 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65003404ns 1142844 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65003575ns 1142847 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65003859ns 1142852 1a110850 fd5ff06f jal x0, -44 +65004143ns 1142857 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65004427ns 1142862 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65004825ns 1142869 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65004996ns 1142872 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65005450ns 1142880 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65005621ns 1142883 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65005905ns 1142888 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65006189ns 1142893 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65006473ns 1142898 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65006928ns 1142906 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65007098ns 1142909 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65007383ns 1142914 1a110850 fd5ff06f jal x0, -44 +65007667ns 1142919 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65007951ns 1142924 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65008349ns 1142931 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65008519ns 1142934 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65008974ns 1142942 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65009144ns 1142945 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65009429ns 1142950 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65009713ns 1142955 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65009997ns 1142960 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65010451ns 1142968 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65010622ns 1142971 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65010906ns 1142976 1a110850 fd5ff06f jal x0, -44 +65011190ns 1142981 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65011474ns 1142986 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65011872ns 1142993 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65012043ns 1142996 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65012497ns 1143004 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65012668ns 1143007 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65012952ns 1143012 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65013236ns 1143017 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65013520ns 1143022 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65013975ns 1143030 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65014146ns 1143033 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65014430ns 1143038 1a110850 fd5ff06f jal x0, -44 +65014714ns 1143043 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65014998ns 1143048 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65015396ns 1143055 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65015566ns 1143058 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65016021ns 1143066 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65016192ns 1143069 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65016476ns 1143074 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65016760ns 1143079 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65017044ns 1143084 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65017499ns 1143092 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65017669ns 1143095 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65017953ns 1143100 1a110850 fd5ff06f jal x0, -44 +65018237ns 1143105 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65018522ns 1143110 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65018919ns 1143117 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65019090ns 1143120 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65019545ns 1143128 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65019715ns 1143131 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65019999ns 1143136 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65020283ns 1143141 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65020568ns 1143146 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65021022ns 1143154 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65021193ns 1143157 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65021477ns 1143162 1a110850 fd5ff06f jal x0, -44 +65021761ns 1143167 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65022045ns 1143172 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65022443ns 1143179 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65022614ns 1143182 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65023068ns 1143190 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65023239ns 1143193 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65023523ns 1143198 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65023807ns 1143203 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65024091ns 1143208 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65024546ns 1143216 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65024716ns 1143219 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65025000ns 1143224 1a110850 fd5ff06f jal x0, -44 +65025285ns 1143229 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65025569ns 1143234 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65025967ns 1143241 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65026137ns 1143244 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65026592ns 1143252 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65026762ns 1143255 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65027046ns 1143260 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65027331ns 1143265 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65027615ns 1143270 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65028069ns 1143278 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65028240ns 1143281 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65028524ns 1143286 1a110850 fd5ff06f jal x0, -44 +65028808ns 1143291 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65029092ns 1143296 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65029490ns 1143303 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65029661ns 1143306 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65030115ns 1143314 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65030286ns 1143317 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65030570ns 1143322 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65030854ns 1143327 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65031138ns 1143332 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65031593ns 1143340 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65031763ns 1143343 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65032048ns 1143348 1a110850 fd5ff06f jal x0, -44 +65032332ns 1143353 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65032616ns 1143358 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65033014ns 1143365 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65033184ns 1143368 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65033639ns 1143376 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65033809ns 1143379 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65034094ns 1143384 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65034378ns 1143389 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65034662ns 1143394 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65035117ns 1143402 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65035287ns 1143405 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65035571ns 1143410 1a110850 fd5ff06f jal x0, -44 +65035855ns 1143415 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65036140ns 1143420 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65036537ns 1143427 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65036708ns 1143430 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65037163ns 1143438 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65037333ns 1143441 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65037617ns 1143446 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65037901ns 1143451 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65038186ns 1143456 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65038640ns 1143464 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65038811ns 1143467 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65039095ns 1143472 1a110850 fd5ff06f jal x0, -44 +65039379ns 1143477 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65039663ns 1143482 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65040061ns 1143489 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65040231ns 1143492 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65040686ns 1143500 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65040857ns 1143503 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65041141ns 1143508 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65041425ns 1143513 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65041709ns 1143518 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65042164ns 1143526 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65042334ns 1143529 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65042618ns 1143534 1a110850 fd5ff06f jal x0, -44 +65042903ns 1143539 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65043187ns 1143544 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65043585ns 1143551 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65043755ns 1143554 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65044210ns 1143562 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65044380ns 1143565 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65044664ns 1143570 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65044949ns 1143575 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65045233ns 1143580 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65045687ns 1143588 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65045858ns 1143591 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65046142ns 1143596 1a110850 fd5ff06f jal x0, -44 +65046426ns 1143601 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65046710ns 1143606 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65047108ns 1143613 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65047279ns 1143616 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65047733ns 1143624 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65047904ns 1143627 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65048188ns 1143632 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65048472ns 1143637 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65048756ns 1143642 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65049211ns 1143650 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65049381ns 1143653 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65049666ns 1143658 1a110850 fd5ff06f jal x0, -44 +65049950ns 1143663 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65050234ns 1143668 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65050632ns 1143675 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65050802ns 1143678 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65051257ns 1143686 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65051427ns 1143689 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65051712ns 1143694 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65051996ns 1143699 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65052280ns 1143704 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65052735ns 1143712 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65052905ns 1143715 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65053189ns 1143720 1a110850 fd5ff06f jal x0, -44 +65053473ns 1143725 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65053757ns 1143730 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65054155ns 1143737 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65054326ns 1143740 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65054780ns 1143748 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65054951ns 1143751 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65055235ns 1143756 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65055519ns 1143761 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65055803ns 1143766 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65056258ns 1143774 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65056429ns 1143777 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65056713ns 1143782 1a110850 fd5ff06f jal x0, -44 +65056997ns 1143787 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65057281ns 1143792 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65057679ns 1143799 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65057849ns 1143802 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65058304ns 1143810 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65058475ns 1143813 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65058759ns 1143818 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65059043ns 1143823 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65059327ns 1143828 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65059782ns 1143836 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65059952ns 1143839 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65060236ns 1143844 1a110850 fd5ff06f jal x0, -44 +65060520ns 1143849 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65060805ns 1143854 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65061202ns 1143861 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65061373ns 1143864 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65061828ns 1143872 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65061998ns 1143875 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65062282ns 1143880 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65062566ns 1143885 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65062851ns 1143890 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65063305ns 1143898 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65063476ns 1143901 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65063760ns 1143906 1a110850 fd5ff06f jal x0, -44 +65064044ns 1143911 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65064328ns 1143916 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65064726ns 1143923 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65064897ns 1143926 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65065351ns 1143934 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65065522ns 1143937 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65065806ns 1143942 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65066090ns 1143947 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65066374ns 1143952 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65066829ns 1143960 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65066999ns 1143963 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65067283ns 1143968 1a110850 fd5ff06f jal x0, -44 +65067568ns 1143973 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65067852ns 1143978 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65068250ns 1143985 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65068420ns 1143988 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65068875ns 1143996 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65069045ns 1143999 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65069329ns 1144004 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65069614ns 1144009 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65069898ns 1144014 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65070352ns 1144022 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65070523ns 1144025 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65070807ns 1144030 1a110850 fd5ff06f jal x0, -44 +65071091ns 1144035 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65071375ns 1144040 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65071773ns 1144047 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65071944ns 1144050 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65072398ns 1144058 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65072569ns 1144061 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65072853ns 1144066 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65073137ns 1144071 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65073421ns 1144076 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65073876ns 1144084 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65074047ns 1144087 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65074331ns 1144092 1a110850 fd5ff06f jal x0, -44 +65074615ns 1144097 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65074899ns 1144102 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65075297ns 1144109 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65075467ns 1144112 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65075922ns 1144120 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65076092ns 1144123 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65076377ns 1144128 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65076661ns 1144133 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65076945ns 1144138 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65077400ns 1144146 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65077570ns 1144149 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65077854ns 1144154 1a110850 fd5ff06f jal x0, -44 +65078138ns 1144159 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65078423ns 1144164 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65078820ns 1144171 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65078991ns 1144174 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65079446ns 1144182 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65079616ns 1144185 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65079900ns 1144190 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65080184ns 1144195 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65080469ns 1144200 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65080923ns 1144208 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65081094ns 1144211 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65081378ns 1144216 1a110850 fd5ff06f jal x0, -44 +65081662ns 1144221 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65081946ns 1144226 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65082344ns 1144233 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65082514ns 1144236 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65082969ns 1144244 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65083140ns 1144247 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65083424ns 1144252 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65083708ns 1144257 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65083992ns 1144262 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65084447ns 1144270 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65084617ns 1144273 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65084901ns 1144278 1a110850 fd5ff06f jal x0, -44 +65085186ns 1144283 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65085470ns 1144288 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65085868ns 1144295 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65086038ns 1144298 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65086493ns 1144306 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65086663ns 1144309 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65086947ns 1144314 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65087232ns 1144319 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65087516ns 1144324 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65087970ns 1144332 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65088141ns 1144335 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65088425ns 1144340 1a110850 fd5ff06f jal x0, -44 +65088709ns 1144345 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65088993ns 1144350 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65089391ns 1144357 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65089562ns 1144360 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65090016ns 1144368 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65090187ns 1144371 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65090471ns 1144376 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65090755ns 1144381 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65091039ns 1144386 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65091494ns 1144394 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65091664ns 1144397 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65091949ns 1144402 1a110850 fd5ff06f jal x0, -44 +65092233ns 1144407 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65092517ns 1144412 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65092915ns 1144419 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65093085ns 1144422 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65093540ns 1144430 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65093710ns 1144433 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65093995ns 1144438 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65094279ns 1144443 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65094563ns 1144448 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65095018ns 1144456 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65095188ns 1144459 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65095472ns 1144464 1a110850 fd5ff06f jal x0, -44 +65095756ns 1144469 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65096040ns 1144474 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65096438ns 1144481 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65096609ns 1144484 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65097063ns 1144492 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65097234ns 1144495 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65097518ns 1144500 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65097802ns 1144505 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65098086ns 1144510 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65098541ns 1144518 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65098712ns 1144521 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65098996ns 1144526 1a110850 fd5ff06f jal x0, -44 +65099280ns 1144531 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65099564ns 1144536 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65099962ns 1144543 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65100132ns 1144546 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65100587ns 1144554 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65100758ns 1144557 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65101042ns 1144562 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65101326ns 1144567 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65101610ns 1144572 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65102065ns 1144580 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65102235ns 1144583 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65102519ns 1144588 1a110850 fd5ff06f jal x0, -44 +65102803ns 1144593 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65103088ns 1144598 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65103485ns 1144605 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65103656ns 1144608 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65104111ns 1144616 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65104281ns 1144619 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65104565ns 1144624 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65104849ns 1144629 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65105134ns 1144634 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65105588ns 1144642 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65105759ns 1144645 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65106043ns 1144650 1a110850 fd5ff06f jal x0, -44 +65106327ns 1144655 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65106611ns 1144660 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65107009ns 1144667 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65107180ns 1144670 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65107634ns 1144678 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65107805ns 1144681 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65108089ns 1144686 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65108373ns 1144691 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65108657ns 1144696 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65109112ns 1144704 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65109282ns 1144707 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65109567ns 1144712 1a110850 fd5ff06f jal x0, -44 +65109851ns 1144717 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65110135ns 1144722 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65110533ns 1144729 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65110703ns 1144732 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65111158ns 1144740 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65111328ns 1144743 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65111612ns 1144748 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65111897ns 1144753 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65112181ns 1144758 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65112635ns 1144766 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65112806ns 1144769 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65113090ns 1144774 1a110850 fd5ff06f jal x0, -44 +65113374ns 1144779 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65113658ns 1144784 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65114056ns 1144791 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65114227ns 1144794 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65114681ns 1144802 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65114852ns 1144805 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65115136ns 1144810 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65115420ns 1144815 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65115704ns 1144820 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65116159ns 1144828 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65116330ns 1144831 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65116614ns 1144836 1a110850 fd5ff06f jal x0, -44 +65116898ns 1144841 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65117182ns 1144846 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65117580ns 1144853 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65117750ns 1144856 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65118205ns 1144864 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65118375ns 1144867 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65118660ns 1144872 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65118944ns 1144877 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65119228ns 1144882 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65119683ns 1144890 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65119853ns 1144893 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65120137ns 1144898 1a110850 fd5ff06f jal x0, -44 +65120421ns 1144903 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65120706ns 1144908 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65121103ns 1144915 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65121274ns 1144918 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65121729ns 1144926 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65121899ns 1144929 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65122183ns 1144934 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65122467ns 1144939 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65122752ns 1144944 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65123206ns 1144952 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65123377ns 1144955 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65123661ns 1144960 1a110850 fd5ff06f jal x0, -44 +65123945ns 1144965 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65124229ns 1144970 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65124627ns 1144977 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65124797ns 1144980 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65125252ns 1144988 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65125423ns 1144991 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65125707ns 1144996 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65125991ns 1145001 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65126275ns 1145006 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65126730ns 1145014 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65126900ns 1145017 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65127184ns 1145022 1a110850 fd5ff06f jal x0, -44 +65127469ns 1145027 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65127753ns 1145032 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65128151ns 1145039 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65128321ns 1145042 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65128776ns 1145050 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65128946ns 1145053 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65129230ns 1145058 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65129515ns 1145063 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65129799ns 1145068 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65130253ns 1145076 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65130424ns 1145079 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65130708ns 1145084 1a110850 fd5ff06f jal x0, -44 +65130992ns 1145089 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65131276ns 1145094 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65131674ns 1145101 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65131845ns 1145104 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65132299ns 1145112 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65132470ns 1145115 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65132754ns 1145120 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65133038ns 1145125 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65133322ns 1145130 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65133777ns 1145138 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65133947ns 1145141 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65134232ns 1145146 1a110850 fd5ff06f jal x0, -44 +65134516ns 1145151 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65134800ns 1145156 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65135198ns 1145163 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65135368ns 1145166 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65135823ns 1145174 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65135993ns 1145177 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65136278ns 1145182 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65136562ns 1145187 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65136846ns 1145192 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65137301ns 1145200 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65137471ns 1145203 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65137755ns 1145208 1a110850 fd5ff06f jal x0, -44 +65138039ns 1145213 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65138323ns 1145218 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65138721ns 1145225 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65138892ns 1145228 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65139346ns 1145236 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65139517ns 1145239 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65139801ns 1145244 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65140085ns 1145249 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65140369ns 1145254 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65140824ns 1145262 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65140995ns 1145265 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65141279ns 1145270 1a110850 fd5ff06f jal x0, -44 +65141563ns 1145275 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65141847ns 1145280 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65142245ns 1145287 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65142415ns 1145290 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65142870ns 1145298 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65143041ns 1145301 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65143325ns 1145306 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65143609ns 1145311 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65143893ns 1145316 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65144348ns 1145324 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65144518ns 1145327 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65144802ns 1145332 1a110850 fd5ff06f jal x0, -44 +65145087ns 1145337 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65145371ns 1145342 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65145768ns 1145349 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65145939ns 1145352 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65146394ns 1145360 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65146564ns 1145363 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65146848ns 1145368 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65147132ns 1145373 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65147417ns 1145378 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65147871ns 1145386 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65148042ns 1145389 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65148326ns 1145394 1a110850 fd5ff06f jal x0, -44 +65148610ns 1145399 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65148894ns 1145404 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65149292ns 1145411 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65149463ns 1145414 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65149917ns 1145422 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65150088ns 1145425 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65150372ns 1145430 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65150656ns 1145435 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65150940ns 1145440 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65151395ns 1145448 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65151565ns 1145451 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65151850ns 1145456 1a110850 fd5ff06f jal x0, -44 +65152134ns 1145461 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65152418ns 1145466 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65152816ns 1145473 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65152986ns 1145476 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65153441ns 1145484 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65153611ns 1145487 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65153895ns 1145492 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65154180ns 1145497 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65154464ns 1145502 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65154918ns 1145510 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65155089ns 1145513 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65155373ns 1145518 1a110850 fd5ff06f jal x0, -44 +65155657ns 1145523 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65155941ns 1145528 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65156339ns 1145535 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65156510ns 1145538 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65156964ns 1145546 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65157135ns 1145549 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65157419ns 1145554 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65157703ns 1145559 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65157987ns 1145564 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65158442ns 1145572 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65158613ns 1145575 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65158897ns 1145580 1a110850 fd5ff06f jal x0, -44 +65159181ns 1145585 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65159465ns 1145590 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65159863ns 1145597 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65160033ns 1145600 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65160488ns 1145608 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65160658ns 1145611 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65160943ns 1145616 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65161227ns 1145621 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65161511ns 1145626 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65161966ns 1145634 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65162136ns 1145637 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65162420ns 1145642 1a110850 fd5ff06f jal x0, -44 +65162704ns 1145647 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65162989ns 1145652 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65163386ns 1145659 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65163557ns 1145662 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65164012ns 1145670 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65164182ns 1145673 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65164466ns 1145678 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65164750ns 1145683 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65165035ns 1145688 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65165489ns 1145696 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65165660ns 1145699 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65165944ns 1145704 1a110850 fd5ff06f jal x0, -44 +65166228ns 1145709 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65166512ns 1145714 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65166910ns 1145721 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65167080ns 1145724 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65167535ns 1145732 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65167706ns 1145735 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65167990ns 1145740 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65168274ns 1145745 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65168558ns 1145750 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65169013ns 1145758 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65169183ns 1145761 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65169467ns 1145766 1a110850 fd5ff06f jal x0, -44 +65169752ns 1145771 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65170036ns 1145776 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65170434ns 1145783 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65170604ns 1145786 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65171059ns 1145794 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65171229ns 1145797 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65171513ns 1145802 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65171798ns 1145807 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65172082ns 1145812 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65172536ns 1145820 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65172707ns 1145823 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65172991ns 1145828 1a110850 fd5ff06f jal x0, -44 +65173275ns 1145833 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65173559ns 1145838 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65173957ns 1145845 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65174128ns 1145848 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65174582ns 1145856 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65174753ns 1145859 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65175037ns 1145864 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65175321ns 1145869 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65175605ns 1145874 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65176060ns 1145882 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65176230ns 1145885 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65176515ns 1145890 1a110850 fd5ff06f jal x0, -44 +65176799ns 1145895 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65177083ns 1145900 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65177481ns 1145907 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65177651ns 1145910 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65178106ns 1145918 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65178276ns 1145921 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65178561ns 1145926 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65178845ns 1145931 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65179129ns 1145936 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65179584ns 1145944 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65179754ns 1145947 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65180038ns 1145952 1a110850 fd5ff06f jal x0, -44 +65180322ns 1145957 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65180607ns 1145962 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65181004ns 1145969 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65181175ns 1145972 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65181629ns 1145980 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65181800ns 1145983 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65182084ns 1145988 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65182368ns 1145993 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65182652ns 1145998 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65183107ns 1146006 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65183278ns 1146009 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65183562ns 1146014 1a110850 fd5ff06f jal x0, -44 +65183846ns 1146019 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65184130ns 1146024 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65184528ns 1146031 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65184698ns 1146034 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65185153ns 1146042 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65185324ns 1146045 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65185608ns 1146050 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65185892ns 1146055 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65186176ns 1146060 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65186631ns 1146068 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65186801ns 1146071 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65187085ns 1146076 1a110850 fd5ff06f jal x0, -44 +65187370ns 1146081 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65187654ns 1146086 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65188051ns 1146093 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65188222ns 1146096 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65188677ns 1146104 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65188847ns 1146107 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65189131ns 1146112 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65189415ns 1146117 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65189700ns 1146122 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65190154ns 1146130 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65190325ns 1146133 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65190609ns 1146138 1a110850 fd5ff06f jal x0, -44 +65190893ns 1146143 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65191177ns 1146148 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65191575ns 1146155 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65191746ns 1146158 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65192200ns 1146166 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65192371ns 1146169 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65192655ns 1146174 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65192939ns 1146179 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65193223ns 1146184 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65193678ns 1146192 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65193848ns 1146195 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65194133ns 1146200 1a110850 fd5ff06f jal x0, -44 +65194417ns 1146205 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65194701ns 1146210 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65195099ns 1146217 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65195269ns 1146220 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65195724ns 1146228 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65195894ns 1146231 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65196178ns 1146236 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65196463ns 1146241 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65196747ns 1146246 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65197201ns 1146254 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65197372ns 1146257 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65197656ns 1146262 1a110850 fd5ff06f jal x0, -44 +65197940ns 1146267 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65198224ns 1146272 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65198622ns 1146279 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65198793ns 1146282 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65199247ns 1146290 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65199418ns 1146293 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65199702ns 1146298 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65199986ns 1146303 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65200270ns 1146308 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65200725ns 1146316 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65200896ns 1146319 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65201180ns 1146324 1a110850 fd5ff06f jal x0, -44 +65201464ns 1146329 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65201748ns 1146334 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65202146ns 1146341 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65202316ns 1146344 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65202771ns 1146352 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65202941ns 1146355 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65203226ns 1146360 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65203510ns 1146365 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65203794ns 1146370 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65204249ns 1146378 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65204419ns 1146381 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65204703ns 1146386 1a110850 fd5ff06f jal x0, -44 +65204987ns 1146391 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65205272ns 1146396 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65205669ns 1146403 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65205840ns 1146406 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65206295ns 1146414 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65206465ns 1146417 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65206749ns 1146422 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65207033ns 1146427 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65207318ns 1146432 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65207772ns 1146440 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65207943ns 1146443 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65208227ns 1146448 1a110850 fd5ff06f jal x0, -44 +65208511ns 1146453 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65208795ns 1146458 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65209193ns 1146465 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65209363ns 1146468 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65209818ns 1146476 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65209989ns 1146479 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65210273ns 1146484 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65210557ns 1146489 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65210841ns 1146494 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65211296ns 1146502 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65211466ns 1146505 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65211750ns 1146510 1a110850 fd5ff06f jal x0, -44 +65212035ns 1146515 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65212319ns 1146520 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65212717ns 1146527 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65212887ns 1146530 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65213342ns 1146538 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65213512ns 1146541 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65213796ns 1146546 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65214081ns 1146551 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65214365ns 1146556 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65214819ns 1146564 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65214990ns 1146567 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65215274ns 1146572 1a110850 fd5ff06f jal x0, -44 +65215558ns 1146577 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65215842ns 1146582 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65216240ns 1146589 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65216411ns 1146592 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65216865ns 1146600 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65217036ns 1146603 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65217320ns 1146608 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65217604ns 1146613 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65217888ns 1146618 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65218343ns 1146626 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65218513ns 1146629 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65218798ns 1146634 1a110850 fd5ff06f jal x0, -44 +65219082ns 1146639 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65219366ns 1146644 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65219764ns 1146651 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65219934ns 1146654 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65220389ns 1146662 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65220559ns 1146665 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65220844ns 1146670 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65221128ns 1146675 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65221412ns 1146680 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65221867ns 1146688 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65222037ns 1146691 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65222321ns 1146696 1a110850 fd5ff06f jal x0, -44 +65222605ns 1146701 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65222890ns 1146706 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65223287ns 1146713 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65223458ns 1146716 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65223912ns 1146724 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65224083ns 1146727 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65224367ns 1146732 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65224651ns 1146737 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65224935ns 1146742 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65225390ns 1146750 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65225561ns 1146753 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65225845ns 1146758 1a110850 fd5ff06f jal x0, -44 +65226129ns 1146763 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65226413ns 1146768 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65226811ns 1146775 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65226981ns 1146778 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65227436ns 1146786 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65227607ns 1146789 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65227891ns 1146794 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65228175ns 1146799 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65228459ns 1146804 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65228914ns 1146812 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65229084ns 1146815 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65229368ns 1146820 1a110850 fd5ff06f jal x0, -44 +65229653ns 1146825 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65229937ns 1146830 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65230335ns 1146837 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65230505ns 1146840 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65230960ns 1146848 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65231130ns 1146851 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65231414ns 1146856 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65231698ns 1146861 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65231983ns 1146866 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65232437ns 1146874 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65232608ns 1146877 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65232892ns 1146882 1a110850 fd5ff06f jal x0, -44 +65233176ns 1146887 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65233460ns 1146892 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65233858ns 1146899 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65234029ns 1146902 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65234483ns 1146910 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65234654ns 1146913 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65234938ns 1146918 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65235222ns 1146923 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65235506ns 1146928 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65235961ns 1146936 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65236131ns 1146939 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65236416ns 1146944 1a110850 fd5ff06f jal x0, -44 +65236700ns 1146949 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65236984ns 1146954 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65237382ns 1146961 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65237552ns 1146964 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65238007ns 1146972 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65238177ns 1146975 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65238461ns 1146980 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65238746ns 1146985 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65239030ns 1146990 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65239484ns 1146998 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65239655ns 1147001 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65239939ns 1147006 1a110850 fd5ff06f jal x0, -44 +65240223ns 1147011 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65240507ns 1147016 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65240905ns 1147023 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65241076ns 1147026 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65241530ns 1147034 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65241701ns 1147037 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65241985ns 1147042 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65242269ns 1147047 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65242553ns 1147052 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65243008ns 1147060 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65243179ns 1147063 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65243463ns 1147068 1a110850 fd5ff06f jal x0, -44 +65243747ns 1147073 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65244031ns 1147078 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65244429ns 1147085 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65244599ns 1147088 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65245054ns 1147096 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65245224ns 1147099 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65245509ns 1147104 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65245793ns 1147109 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65246077ns 1147114 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65246532ns 1147122 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65246702ns 1147125 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65246986ns 1147130 1a110850 fd5ff06f jal x0, -44 +65247270ns 1147135 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65247555ns 1147140 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65247952ns 1147147 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65248123ns 1147150 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65248578ns 1147158 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65248748ns 1147161 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65249032ns 1147166 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65249316ns 1147171 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65249601ns 1147176 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65250055ns 1147184 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65250226ns 1147187 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65250510ns 1147192 1a110850 fd5ff06f jal x0, -44 +65250794ns 1147197 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65251078ns 1147202 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65251476ns 1147209 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65251647ns 1147212 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65252101ns 1147220 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65252272ns 1147223 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65252556ns 1147228 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65252840ns 1147233 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65253124ns 1147238 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65253579ns 1147246 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65253749ns 1147249 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65254033ns 1147254 1a110850 fd5ff06f jal x0, -44 +65254318ns 1147259 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65254602ns 1147264 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65255000ns 1147271 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65255170ns 1147274 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65255625ns 1147282 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65255795ns 1147285 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65256079ns 1147290 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65256364ns 1147295 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65256648ns 1147300 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65257102ns 1147308 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65257273ns 1147311 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65257557ns 1147316 1a110850 fd5ff06f jal x0, -44 +65257841ns 1147321 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65258125ns 1147326 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65258523ns 1147333 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65258694ns 1147336 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65259148ns 1147344 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65259319ns 1147347 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65259603ns 1147352 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65259887ns 1147357 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65260171ns 1147362 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65260626ns 1147370 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65260796ns 1147373 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65261081ns 1147378 1a110850 fd5ff06f jal x0, -44 +65261365ns 1147383 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65261649ns 1147388 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65262047ns 1147395 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65262217ns 1147398 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65262672ns 1147406 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65262842ns 1147409 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65263127ns 1147414 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65263411ns 1147419 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65263695ns 1147424 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65264150ns 1147432 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65264320ns 1147435 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65264604ns 1147440 1a110850 fd5ff06f jal x0, -44 +65264888ns 1147445 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65265173ns 1147450 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65265570ns 1147457 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65265741ns 1147460 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65266195ns 1147468 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65266366ns 1147471 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65266650ns 1147476 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65266934ns 1147481 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65267218ns 1147486 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65267673ns 1147494 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65267844ns 1147497 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65268128ns 1147502 1a110850 fd5ff06f jal x0, -44 +65268412ns 1147507 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65268696ns 1147512 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65269094ns 1147519 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65269264ns 1147522 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65269719ns 1147530 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65269890ns 1147533 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65270174ns 1147538 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65270458ns 1147543 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65270742ns 1147548 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65271197ns 1147556 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65271367ns 1147559 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65271651ns 1147564 1a110850 fd5ff06f jal x0, -44 +65271936ns 1147569 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65272220ns 1147574 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65272618ns 1147581 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65272788ns 1147584 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65273243ns 1147592 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65273413ns 1147595 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65273697ns 1147600 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65273981ns 1147605 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65274266ns 1147610 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65274720ns 1147618 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65274891ns 1147621 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65275175ns 1147626 1a110850 fd5ff06f jal x0, -44 +65275459ns 1147631 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65275743ns 1147636 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65276141ns 1147643 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65276312ns 1147646 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65276766ns 1147654 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65276937ns 1147657 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65277221ns 1147662 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65277505ns 1147667 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65277789ns 1147672 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65278244ns 1147680 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65278414ns 1147683 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65278699ns 1147688 1a110850 fd5ff06f jal x0, -44 +65278983ns 1147693 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65279267ns 1147698 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65279665ns 1147705 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65279835ns 1147708 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65280290ns 1147716 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65280460ns 1147719 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65280744ns 1147724 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65281029ns 1147729 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65281313ns 1147734 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65281767ns 1147742 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65281938ns 1147745 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65282222ns 1147750 1a110850 fd5ff06f jal x0, -44 +65282506ns 1147755 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65282790ns 1147760 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65283188ns 1147767 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65283359ns 1147770 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65283813ns 1147778 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65283984ns 1147781 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65284268ns 1147786 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65284552ns 1147791 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65284836ns 1147796 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65285291ns 1147804 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65285462ns 1147807 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65285746ns 1147812 1a110850 fd5ff06f jal x0, -44 +65286030ns 1147817 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65286314ns 1147822 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65286712ns 1147829 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65286882ns 1147832 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65287337ns 1147840 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65287507ns 1147843 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65287792ns 1147848 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65288076ns 1147853 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65288360ns 1147858 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65288815ns 1147866 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65288985ns 1147869 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65289269ns 1147874 1a110850 fd5ff06f jal x0, -44 +65289553ns 1147879 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65289838ns 1147884 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65290235ns 1147891 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65290406ns 1147894 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65290861ns 1147902 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65291031ns 1147905 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65291315ns 1147910 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65291599ns 1147915 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65291884ns 1147920 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65292338ns 1147928 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65292509ns 1147931 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65292793ns 1147936 1a110850 fd5ff06f jal x0, -44 +65293077ns 1147941 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65293361ns 1147946 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65293759ns 1147953 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65293930ns 1147956 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65294384ns 1147964 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65294555ns 1147967 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65294839ns 1147972 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65295123ns 1147977 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65295407ns 1147982 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65295862ns 1147990 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65296032ns 1147993 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65296316ns 1147998 1a110850 fd5ff06f jal x0, -44 +65296601ns 1148003 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65296885ns 1148008 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65297283ns 1148015 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65297453ns 1148018 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65297908ns 1148026 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65298078ns 1148029 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65298362ns 1148034 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65298647ns 1148039 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65298931ns 1148044 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65299385ns 1148052 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65299556ns 1148055 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65299840ns 1148060 1a110850 fd5ff06f jal x0, -44 +65300124ns 1148065 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65300408ns 1148070 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65300806ns 1148077 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65300977ns 1148080 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65301431ns 1148088 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65301602ns 1148091 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65301886ns 1148096 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65302170ns 1148101 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65302454ns 1148106 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65302909ns 1148114 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65303079ns 1148117 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65303364ns 1148122 1a110850 fd5ff06f jal x0, -44 +65303648ns 1148127 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65303932ns 1148132 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65304330ns 1148139 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65304500ns 1148142 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65304955ns 1148150 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65305125ns 1148153 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65305410ns 1148158 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65305694ns 1148163 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65305978ns 1148168 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65306433ns 1148176 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65306603ns 1148179 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65306887ns 1148184 1a110850 fd5ff06f jal x0, -44 +65307171ns 1148189 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65307456ns 1148194 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65307853ns 1148201 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65308024ns 1148204 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65308479ns 1148212 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65308649ns 1148215 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65308933ns 1148220 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65309217ns 1148225 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65309501ns 1148230 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65309956ns 1148238 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65310127ns 1148241 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65310411ns 1148246 1a110850 fd5ff06f jal x0, -44 +65310695ns 1148251 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65310979ns 1148256 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65311377ns 1148263 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65311547ns 1148266 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65312002ns 1148274 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65312173ns 1148277 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65312457ns 1148282 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65312741ns 1148287 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65313025ns 1148292 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65313480ns 1148300 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65313650ns 1148303 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65313934ns 1148308 1a110850 fd5ff06f jal x0, -44 +65314219ns 1148313 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65314503ns 1148318 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65314901ns 1148325 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65315071ns 1148328 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65315526ns 1148336 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65315696ns 1148339 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65315980ns 1148344 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65316264ns 1148349 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65316549ns 1148354 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65317003ns 1148362 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65317174ns 1148365 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65317458ns 1148370 1a110850 fd5ff06f jal x0, -44 +65317742ns 1148375 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65318026ns 1148380 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65318424ns 1148387 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65318595ns 1148390 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65319049ns 1148398 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65319220ns 1148401 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65319504ns 1148406 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65319788ns 1148411 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65320072ns 1148416 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65320527ns 1148424 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65320697ns 1148427 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65320982ns 1148432 1a110850 fd5ff06f jal x0, -44 +65321266ns 1148437 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65321550ns 1148442 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65321948ns 1148449 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65322118ns 1148452 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65322573ns 1148460 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65322743ns 1148463 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65323027ns 1148468 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65323312ns 1148473 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65323596ns 1148478 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65324050ns 1148486 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65324221ns 1148489 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65324505ns 1148494 1a110850 fd5ff06f jal x0, -44 +65324789ns 1148499 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65325073ns 1148504 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65325471ns 1148511 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65325642ns 1148514 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65326096ns 1148522 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65326267ns 1148525 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65326551ns 1148530 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65326835ns 1148535 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65327119ns 1148540 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65327574ns 1148548 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65327745ns 1148551 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65328029ns 1148556 1a110850 fd5ff06f jal x0, -44 +65328313ns 1148561 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65328597ns 1148566 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65328995ns 1148573 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65329165ns 1148576 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65329620ns 1148584 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65329791ns 1148587 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65330075ns 1148592 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65330359ns 1148597 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65330643ns 1148602 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65331098ns 1148610 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65331268ns 1148613 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65331552ns 1148618 1a110850 fd5ff06f jal x0, -44 +65331836ns 1148623 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65332121ns 1148628 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65332518ns 1148635 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65332689ns 1148638 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65333144ns 1148646 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65333314ns 1148649 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65333598ns 1148654 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65333882ns 1148659 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65334167ns 1148664 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65334621ns 1148672 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65334792ns 1148675 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65335076ns 1148680 1a110850 fd5ff06f jal x0, -44 +65335360ns 1148685 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65335644ns 1148690 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65336042ns 1148697 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65336213ns 1148700 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65336667ns 1148708 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65336838ns 1148711 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65337122ns 1148716 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65337406ns 1148721 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65337690ns 1148726 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65338145ns 1148734 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65338315ns 1148737 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65338599ns 1148742 1a110850 fd5ff06f jal x0, -44 +65338884ns 1148747 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65339168ns 1148752 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65339566ns 1148759 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65339736ns 1148762 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65340191ns 1148770 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65340361ns 1148773 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65340645ns 1148778 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65340930ns 1148783 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65341214ns 1148788 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65341668ns 1148796 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65341839ns 1148799 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65342123ns 1148804 1a110850 fd5ff06f jal x0, -44 +65342407ns 1148809 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65342691ns 1148814 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65343089ns 1148821 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65343260ns 1148824 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65343714ns 1148832 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65343885ns 1148835 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65344169ns 1148840 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65344453ns 1148845 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65344737ns 1148850 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65345192ns 1148858 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65345362ns 1148861 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65345647ns 1148866 1a110850 fd5ff06f jal x0, -44 +65345931ns 1148871 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65346215ns 1148876 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65346613ns 1148883 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65346783ns 1148886 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65347238ns 1148894 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65347408ns 1148897 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65347693ns 1148902 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65347977ns 1148907 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65348261ns 1148912 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65348716ns 1148920 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65348886ns 1148923 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65349170ns 1148928 1a110850 fd5ff06f jal x0, -44 +65349454ns 1148933 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65349739ns 1148938 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65350136ns 1148945 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65350307ns 1148948 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65350762ns 1148956 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65350932ns 1148959 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65351216ns 1148964 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65351500ns 1148969 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65351784ns 1148974 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65352239ns 1148982 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65352410ns 1148985 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65352694ns 1148990 1a110850 fd5ff06f jal x0, -44 +65352978ns 1148995 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65353262ns 1149000 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65353660ns 1149007 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65353830ns 1149010 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65354285ns 1149018 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65354456ns 1149021 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65354740ns 1149026 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65355024ns 1149031 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65355308ns 1149036 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65355763ns 1149044 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65355933ns 1149047 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65356217ns 1149052 1a110850 fd5ff06f jal x0, -44 +65356502ns 1149057 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65356786ns 1149062 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65357184ns 1149069 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65357354ns 1149072 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65357809ns 1149080 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65357979ns 1149083 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65358263ns 1149088 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65358547ns 1149093 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65358832ns 1149098 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65359286ns 1149106 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65359457ns 1149109 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65359741ns 1149114 1a110850 fd5ff06f jal x0, -44 +65360025ns 1149119 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65360309ns 1149124 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65360707ns 1149131 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65360878ns 1149134 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65361332ns 1149142 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65361503ns 1149145 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65361787ns 1149150 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65362071ns 1149155 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65362355ns 1149160 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65362810ns 1149168 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65362980ns 1149171 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65363265ns 1149176 1a110850 fd5ff06f jal x0, -44 +65363549ns 1149181 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65363833ns 1149186 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65364231ns 1149193 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65364401ns 1149196 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65364856ns 1149204 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65365026ns 1149207 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65365311ns 1149212 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65365595ns 1149217 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65365879ns 1149222 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65366333ns 1149230 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65366504ns 1149233 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65366788ns 1149238 1a110850 fd5ff06f jal x0, -44 +65367072ns 1149243 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65367356ns 1149248 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65367754ns 1149255 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65367925ns 1149258 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65368379ns 1149266 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65368550ns 1149269 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65368834ns 1149274 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65369118ns 1149279 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65369402ns 1149284 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65369857ns 1149292 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65370028ns 1149295 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65370312ns 1149300 1a110850 fd5ff06f jal x0, -44 +65370596ns 1149305 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65370880ns 1149310 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65371278ns 1149317 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65371448ns 1149320 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65371903ns 1149328 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65372074ns 1149331 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65372358ns 1149336 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65372642ns 1149341 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65372926ns 1149346 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65373381ns 1149354 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65373551ns 1149357 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65373835ns 1149362 1a110850 fd5ff06f jal x0, -44 +65374119ns 1149367 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65374404ns 1149372 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65374801ns 1149379 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65374972ns 1149382 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65375427ns 1149390 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65375597ns 1149393 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65375881ns 1149398 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65376165ns 1149403 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65376450ns 1149408 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65376904ns 1149416 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65377075ns 1149419 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65377359ns 1149424 1a110850 fd5ff06f jal x0, -44 +65377643ns 1149429 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65377927ns 1149434 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65378325ns 1149441 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65378496ns 1149444 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65378950ns 1149452 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65379121ns 1149455 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65379405ns 1149460 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65379689ns 1149465 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65379973ns 1149470 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65380428ns 1149478 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65380598ns 1149481 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65380882ns 1149486 1a110850 fd5ff06f jal x0, -44 +65381167ns 1149491 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65381451ns 1149496 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65381849ns 1149503 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65382019ns 1149506 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65382474ns 1149514 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65382644ns 1149517 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65382928ns 1149522 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65383213ns 1149527 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65383497ns 1149532 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65383951ns 1149540 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65384122ns 1149543 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65384406ns 1149548 1a110850 fd5ff06f jal x0, -44 +65384690ns 1149553 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65384974ns 1149558 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65385372ns 1149565 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65385543ns 1149568 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65385997ns 1149576 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65386168ns 1149579 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65386452ns 1149584 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65386736ns 1149589 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65387020ns 1149594 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65387475ns 1149602 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65387645ns 1149605 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65387930ns 1149610 1a110850 fd5ff06f jal x0, -44 +65388214ns 1149615 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65388498ns 1149620 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65388896ns 1149627 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65389066ns 1149630 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65389521ns 1149638 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65389691ns 1149641 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65389976ns 1149646 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65390260ns 1149651 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65390544ns 1149656 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65390999ns 1149664 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65391169ns 1149667 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65391453ns 1149672 1a110850 fd5ff06f jal x0, -44 +65391737ns 1149677 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65392022ns 1149682 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65392419ns 1149689 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65392590ns 1149692 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65393045ns 1149700 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65393215ns 1149703 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65393499ns 1149708 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65393783ns 1149713 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65394067ns 1149718 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65394522ns 1149726 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65394693ns 1149729 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65394977ns 1149734 1a110850 fd5ff06f jal x0, -44 +65395261ns 1149739 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65395545ns 1149744 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65395943ns 1149751 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65396113ns 1149754 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65396568ns 1149762 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65396739ns 1149765 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65397023ns 1149770 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65397307ns 1149775 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65397591ns 1149780 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65398046ns 1149788 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65398216ns 1149791 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65398500ns 1149796 1a110850 fd5ff06f jal x0, -44 +65398785ns 1149801 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65399069ns 1149806 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65399467ns 1149813 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65399637ns 1149816 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65400092ns 1149824 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65400262ns 1149827 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65400546ns 1149832 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65400831ns 1149837 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65401115ns 1149842 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65401569ns 1149850 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65401740ns 1149853 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65402024ns 1149858 1a110850 fd5ff06f jal x0, -44 +65402308ns 1149863 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65402592ns 1149868 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65402990ns 1149875 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65403161ns 1149878 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65403615ns 1149886 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65403786ns 1149889 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65404070ns 1149894 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65404354ns 1149899 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65404638ns 1149904 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65405093ns 1149912 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65405263ns 1149915 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65405548ns 1149920 1a110850 fd5ff06f jal x0, -44 +65405832ns 1149925 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65406116ns 1149930 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65406514ns 1149937 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65406684ns 1149940 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65407139ns 1149948 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65407309ns 1149951 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65407594ns 1149956 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65407878ns 1149961 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65408162ns 1149966 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65408616ns 1149974 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65408787ns 1149977 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65409071ns 1149982 1a110850 fd5ff06f jal x0, -44 +65409355ns 1149987 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65409639ns 1149992 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65410037ns 1149999 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65410208ns 1150002 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65410662ns 1150010 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65410833ns 1150013 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65411117ns 1150018 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65411401ns 1150023 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65411685ns 1150028 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65412140ns 1150036 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65412311ns 1150039 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65412595ns 1150044 1a110850 fd5ff06f jal x0, -44 +65412879ns 1150049 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65413163ns 1150054 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65413561ns 1150061 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65413731ns 1150064 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65414186ns 1150072 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65414357ns 1150075 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65414641ns 1150080 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65414925ns 1150085 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65415209ns 1150090 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65415664ns 1150098 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65415834ns 1150101 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65416118ns 1150106 1a110850 fd5ff06f jal x0, -44 +65416402ns 1150111 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65416687ns 1150116 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65417084ns 1150123 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65417255ns 1150126 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65417710ns 1150134 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65417880ns 1150137 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65418164ns 1150142 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65418448ns 1150147 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65418733ns 1150152 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65419187ns 1150160 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65419358ns 1150163 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65419642ns 1150168 1a110850 fd5ff06f jal x0, -44 +65419926ns 1150173 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65420210ns 1150178 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65420608ns 1150185 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65420779ns 1150188 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65421233ns 1150196 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65421404ns 1150199 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65421688ns 1150204 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65421972ns 1150209 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65422256ns 1150214 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65422711ns 1150222 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65422881ns 1150225 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65423165ns 1150230 1a110850 fd5ff06f jal x0, -44 +65423450ns 1150235 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65423734ns 1150240 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65424132ns 1150247 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65424302ns 1150250 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65424757ns 1150258 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65424927ns 1150261 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65425211ns 1150266 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65425496ns 1150271 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65425780ns 1150276 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65426234ns 1150284 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65426405ns 1150287 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65426689ns 1150292 1a110850 fd5ff06f jal x0, -44 +65426973ns 1150297 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65427257ns 1150302 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65427655ns 1150309 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65427826ns 1150312 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65428280ns 1150320 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65428451ns 1150323 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65428735ns 1150328 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65429019ns 1150333 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65429303ns 1150338 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65429758ns 1150346 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65429928ns 1150349 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65430213ns 1150354 1a110850 fd5ff06f jal x0, -44 +65430497ns 1150359 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65430781ns 1150364 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65431179ns 1150371 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65431349ns 1150374 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65431804ns 1150382 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65431974ns 1150385 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65432259ns 1150390 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65432543ns 1150395 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65432827ns 1150400 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65433282ns 1150408 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65433452ns 1150411 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65433736ns 1150416 1a110850 fd5ff06f jal x0, -44 +65434020ns 1150421 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65434305ns 1150426 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65434702ns 1150433 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65434873ns 1150436 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65435328ns 1150444 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65435498ns 1150447 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65435782ns 1150452 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65436066ns 1150457 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65436351ns 1150462 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65436805ns 1150470 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65436976ns 1150473 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65437260ns 1150478 1a110850 fd5ff06f jal x0, -44 +65437544ns 1150483 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65437828ns 1150488 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65438226ns 1150495 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65438396ns 1150498 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65438851ns 1150506 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65439022ns 1150509 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65439306ns 1150514 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65439590ns 1150519 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65439874ns 1150524 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65440329ns 1150532 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65440499ns 1150535 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65440783ns 1150540 1a110850 fd5ff06f jal x0, -44 +65441068ns 1150545 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65441352ns 1150550 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65441750ns 1150557 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65441920ns 1150560 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65442375ns 1150568 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65442545ns 1150571 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65442829ns 1150576 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65443114ns 1150581 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65443398ns 1150586 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65443852ns 1150594 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65444023ns 1150597 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65444307ns 1150602 1a110850 fd5ff06f jal x0, -44 +65444591ns 1150607 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65444875ns 1150612 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65445273ns 1150619 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65445444ns 1150622 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65445898ns 1150630 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65446069ns 1150633 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65446353ns 1150638 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65446637ns 1150643 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65446921ns 1150648 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65447376ns 1150656 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65447546ns 1150659 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65447831ns 1150664 1a110850 fd5ff06f jal x0, -44 +65448115ns 1150669 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65448399ns 1150674 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65448797ns 1150681 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65448967ns 1150684 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65449422ns 1150692 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65449592ns 1150695 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65449877ns 1150700 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65450161ns 1150705 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65450445ns 1150710 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65450899ns 1150718 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65451070ns 1150721 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65451354ns 1150726 1a110850 fd5ff06f jal x0, -44 +65451638ns 1150731 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65451922ns 1150736 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65452320ns 1150743 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65452491ns 1150746 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65452945ns 1150754 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65453116ns 1150757 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65453400ns 1150762 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65453684ns 1150767 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65453968ns 1150772 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65454423ns 1150780 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65454594ns 1150783 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65454878ns 1150788 1a110850 fd5ff06f jal x0, -44 +65455162ns 1150793 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65455446ns 1150798 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65455844ns 1150805 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65456014ns 1150808 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65456469ns 1150816 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65456640ns 1150819 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65456924ns 1150824 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65457208ns 1150829 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65457492ns 1150834 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65457947ns 1150842 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65458117ns 1150845 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65458401ns 1150850 1a110850 fd5ff06f jal x0, -44 +65458685ns 1150855 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65458970ns 1150860 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65459367ns 1150867 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65459538ns 1150870 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65459993ns 1150878 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65460163ns 1150881 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65460447ns 1150886 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65460731ns 1150891 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65461016ns 1150896 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65461470ns 1150904 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65461641ns 1150907 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65461925ns 1150912 1a110850 fd5ff06f jal x0, -44 +65462209ns 1150917 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65462493ns 1150922 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65462891ns 1150929 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65463062ns 1150932 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65463516ns 1150940 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65463687ns 1150943 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65463971ns 1150948 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65464255ns 1150953 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65464539ns 1150958 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65464994ns 1150966 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65465164ns 1150969 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65465448ns 1150974 1a110850 fd5ff06f jal x0, -44 +65465733ns 1150979 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65466017ns 1150984 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65466415ns 1150991 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65466585ns 1150994 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65467040ns 1151002 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65467210ns 1151005 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65467494ns 1151010 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65467779ns 1151015 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65468063ns 1151020 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65468517ns 1151028 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65468688ns 1151031 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65468972ns 1151036 1a110850 fd5ff06f jal x0, -44 +65469256ns 1151041 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65469540ns 1151046 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65469938ns 1151053 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65470109ns 1151056 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65470563ns 1151064 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65470734ns 1151067 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65471018ns 1151072 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65471302ns 1151077 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65471586ns 1151082 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65472041ns 1151090 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65472211ns 1151093 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65472496ns 1151098 1a110850 fd5ff06f jal x0, -44 +65472780ns 1151103 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65473064ns 1151108 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65473462ns 1151115 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65473632ns 1151118 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65474087ns 1151126 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65474257ns 1151129 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65474542ns 1151134 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65474826ns 1151139 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65475110ns 1151144 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65475565ns 1151152 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65475735ns 1151155 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65476019ns 1151160 1a110850 fd5ff06f jal x0, -44 +65476303ns 1151165 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65476588ns 1151170 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65476985ns 1151177 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65477156ns 1151180 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65477611ns 1151188 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65477781ns 1151191 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65478065ns 1151196 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65478349ns 1151201 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65478634ns 1151206 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65479088ns 1151214 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65479259ns 1151217 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65479543ns 1151222 1a110850 fd5ff06f jal x0, -44 +65479827ns 1151227 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65480111ns 1151232 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65480509ns 1151239 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65480679ns 1151242 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65481134ns 1151250 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65481305ns 1151253 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65481589ns 1151258 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65481873ns 1151263 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65482157ns 1151268 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65482612ns 1151276 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65482782ns 1151279 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65483066ns 1151284 1a110850 fd5ff06f jal x0, -44 +65483351ns 1151289 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65483635ns 1151294 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65484033ns 1151301 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65484203ns 1151304 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65484658ns 1151312 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65484828ns 1151315 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65485112ns 1151320 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65485397ns 1151325 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65485681ns 1151330 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65486135ns 1151338 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65486306ns 1151341 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65486590ns 1151346 1a110850 fd5ff06f jal x0, -44 +65486874ns 1151351 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65487158ns 1151356 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65487556ns 1151363 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65487727ns 1151366 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65488181ns 1151374 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65488352ns 1151377 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65488636ns 1151382 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65488920ns 1151387 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65489204ns 1151392 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65489659ns 1151400 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65489829ns 1151403 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65490114ns 1151408 1a110850 fd5ff06f jal x0, -44 +65490398ns 1151413 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65490682ns 1151418 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65491080ns 1151425 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65491250ns 1151428 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65491705ns 1151436 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65491875ns 1151439 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65492160ns 1151444 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65492444ns 1151449 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65492728ns 1151454 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65493183ns 1151462 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65493353ns 1151465 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65493637ns 1151470 1a110850 fd5ff06f jal x0, -44 +65493921ns 1151475 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65494205ns 1151480 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65494603ns 1151487 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65494774ns 1151490 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65495228ns 1151498 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65495399ns 1151501 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65495683ns 1151506 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65495967ns 1151511 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65496251ns 1151516 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65496706ns 1151524 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65496877ns 1151527 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65497161ns 1151532 1a110850 fd5ff06f jal x0, -44 +65497445ns 1151537 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65497729ns 1151542 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65498127ns 1151549 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65498297ns 1151552 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65498752ns 1151560 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65498923ns 1151563 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65499207ns 1151568 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65499491ns 1151573 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65499775ns 1151578 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65500230ns 1151586 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65500400ns 1151589 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65500684ns 1151594 1a110850 fd5ff06f jal x0, -44 +65500968ns 1151599 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65501253ns 1151604 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65501650ns 1151611 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65501821ns 1151614 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65502276ns 1151622 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65502446ns 1151625 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65502730ns 1151630 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65503014ns 1151635 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65503299ns 1151640 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65503753ns 1151648 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65503924ns 1151651 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65504208ns 1151656 1a110850 fd5ff06f jal x0, -44 +65504492ns 1151661 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65504776ns 1151666 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65505174ns 1151673 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65505345ns 1151676 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65505799ns 1151684 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65505970ns 1151687 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65506254ns 1151692 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65506538ns 1151697 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65506822ns 1151702 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65507277ns 1151710 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65507447ns 1151713 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65507731ns 1151718 1a110850 fd5ff06f jal x0, -44 +65508016ns 1151723 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65508300ns 1151728 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65508698ns 1151735 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65508868ns 1151738 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65509323ns 1151746 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65509493ns 1151749 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65509777ns 1151754 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65510062ns 1151759 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65510346ns 1151764 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65510800ns 1151772 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65510971ns 1151775 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65511255ns 1151780 1a110850 fd5ff06f jal x0, -44 +65511539ns 1151785 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65511823ns 1151790 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65512221ns 1151797 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65512392ns 1151800 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65512846ns 1151808 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65513017ns 1151811 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65513301ns 1151816 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65513585ns 1151821 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65513869ns 1151826 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65514324ns 1151834 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65514495ns 1151837 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65514779ns 1151842 1a110850 fd5ff06f jal x0, -44 +65515063ns 1151847 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65515347ns 1151852 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65515745ns 1151859 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65515915ns 1151862 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65516370ns 1151870 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65516540ns 1151873 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65516825ns 1151878 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65517109ns 1151883 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65517393ns 1151888 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65517848ns 1151896 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65518018ns 1151899 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65518302ns 1151904 1a110850 fd5ff06f jal x0, -44 +65518586ns 1151909 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65518871ns 1151914 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65519268ns 1151921 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65519439ns 1151924 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65519894ns 1151932 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65520064ns 1151935 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65520348ns 1151940 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65520632ns 1151945 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65520917ns 1151950 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65521371ns 1151958 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65521542ns 1151961 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65521826ns 1151966 1a110850 fd5ff06f jal x0, -44 +65522110ns 1151971 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65522394ns 1151976 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65522792ns 1151983 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65522962ns 1151986 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65523417ns 1151994 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65523588ns 1151997 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65523872ns 1152002 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65524156ns 1152007 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65524440ns 1152012 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65524895ns 1152020 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65525065ns 1152023 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65525349ns 1152028 1a110850 fd5ff06f jal x0, -44 +65525634ns 1152033 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65525918ns 1152038 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65526316ns 1152045 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65526486ns 1152048 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65526941ns 1152056 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65527111ns 1152059 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65527395ns 1152064 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65527680ns 1152069 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65527964ns 1152074 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65528418ns 1152082 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65528589ns 1152085 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65528873ns 1152090 1a110850 fd5ff06f jal x0, -44 +65529157ns 1152095 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65529441ns 1152100 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65529839ns 1152107 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65530010ns 1152110 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65530464ns 1152118 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65530635ns 1152121 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65530919ns 1152126 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65531203ns 1152131 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65531487ns 1152136 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65531942ns 1152144 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65532112ns 1152147 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65532397ns 1152152 1a110850 fd5ff06f jal x0, -44 +65532681ns 1152157 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65532965ns 1152162 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65533363ns 1152169 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65533533ns 1152172 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65533988ns 1152180 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65534158ns 1152183 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65534443ns 1152188 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65534727ns 1152193 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65535011ns 1152198 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65535466ns 1152206 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65535636ns 1152209 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65535920ns 1152214 1a110850 fd5ff06f jal x0, -44 +65536204ns 1152219 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65536488ns 1152224 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65536886ns 1152231 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65537057ns 1152234 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65537511ns 1152242 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65537682ns 1152245 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65537966ns 1152250 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65538250ns 1152255 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65538534ns 1152260 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65538989ns 1152268 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65539160ns 1152271 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65539444ns 1152276 1a110850 fd5ff06f jal x0, -44 +65539728ns 1152281 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65540012ns 1152286 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65540410ns 1152293 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65540580ns 1152296 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65541035ns 1152304 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65541206ns 1152307 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65541490ns 1152312 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65541774ns 1152317 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65542058ns 1152322 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65542513ns 1152330 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65542683ns 1152333 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65542967ns 1152338 1a110850 fd5ff06f jal x0, -44 +65543251ns 1152343 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65543536ns 1152348 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65543933ns 1152355 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65544104ns 1152358 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65544559ns 1152366 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65544729ns 1152369 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65545013ns 1152374 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65545297ns 1152379 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65545582ns 1152384 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65546036ns 1152392 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65546207ns 1152395 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65546491ns 1152400 1a110850 fd5ff06f jal x0, -44 +65546775ns 1152405 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65547059ns 1152410 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65547457ns 1152417 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65547628ns 1152420 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65548082ns 1152428 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65548253ns 1152431 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65548537ns 1152436 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65548821ns 1152441 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65549105ns 1152446 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65549560ns 1152454 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65549730ns 1152457 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65550015ns 1152462 1a110850 fd5ff06f jal x0, -44 +65550299ns 1152467 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65550583ns 1152472 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65550981ns 1152479 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65551151ns 1152482 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65551606ns 1152490 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65551776ns 1152493 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65552060ns 1152498 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65552345ns 1152503 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65552629ns 1152508 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65553083ns 1152516 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65553254ns 1152519 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65553538ns 1152524 1a110850 fd5ff06f jal x0, -44 +65553822ns 1152529 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65554106ns 1152534 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65554504ns 1152541 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65554675ns 1152544 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65555129ns 1152552 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65555300ns 1152555 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65555584ns 1152560 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65555868ns 1152565 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65556152ns 1152570 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65556607ns 1152578 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65556778ns 1152581 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65557062ns 1152586 1a110850 fd5ff06f jal x0, -44 +65557346ns 1152591 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65557630ns 1152596 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65558028ns 1152603 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65558198ns 1152606 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65558653ns 1152614 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65558823ns 1152617 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65559108ns 1152622 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65559392ns 1152627 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65559676ns 1152632 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65560131ns 1152640 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65560301ns 1152643 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65560585ns 1152648 1a110850 fd5ff06f jal x0, -44 +65560869ns 1152653 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65561154ns 1152658 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65561551ns 1152665 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65561722ns 1152668 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65562177ns 1152676 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65562347ns 1152679 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65562631ns 1152684 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65562915ns 1152689 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65563200ns 1152694 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65563654ns 1152702 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65563825ns 1152705 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65564109ns 1152710 1a110850 fd5ff06f jal x0, -44 +65564393ns 1152715 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65564677ns 1152720 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65565075ns 1152727 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65565245ns 1152730 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65565700ns 1152738 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65565871ns 1152741 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65566155ns 1152746 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65566439ns 1152751 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65566723ns 1152756 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65567178ns 1152764 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65567348ns 1152767 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65567632ns 1152772 1a110850 fd5ff06f jal x0, -44 +65567917ns 1152777 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65568201ns 1152782 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65568599ns 1152789 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65568769ns 1152792 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65569224ns 1152800 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65569394ns 1152803 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65569678ns 1152808 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65569963ns 1152813 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65570247ns 1152818 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65570701ns 1152826 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65570872ns 1152829 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65571156ns 1152834 1a110850 fd5ff06f jal x0, -44 +65571440ns 1152839 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65571724ns 1152844 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65572122ns 1152851 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65572293ns 1152854 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65572747ns 1152862 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65572918ns 1152865 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65573202ns 1152870 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65573486ns 1152875 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65573770ns 1152880 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65574225ns 1152888 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65574395ns 1152891 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65574680ns 1152896 1a110850 fd5ff06f jal x0, -44 +65574964ns 1152901 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65575248ns 1152906 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65575646ns 1152913 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65575816ns 1152916 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65576271ns 1152924 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65576441ns 1152927 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65576726ns 1152932 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65577010ns 1152937 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65577294ns 1152942 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65577749ns 1152950 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65577919ns 1152953 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65578203ns 1152958 1a110850 fd5ff06f jal x0, -44 +65578487ns 1152963 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65578771ns 1152968 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65579169ns 1152975 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65579340ns 1152978 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65579794ns 1152986 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65579965ns 1152989 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65580249ns 1152994 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65580533ns 1152999 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65580817ns 1153004 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65581272ns 1153012 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65581443ns 1153015 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65581727ns 1153020 1a110850 fd5ff06f jal x0, -44 +65582011ns 1153025 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65582295ns 1153030 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65582693ns 1153037 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65582863ns 1153040 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65583318ns 1153048 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65583489ns 1153051 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65583773ns 1153056 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65584057ns 1153061 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65584341ns 1153066 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65584796ns 1153074 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65584966ns 1153077 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65585250ns 1153082 1a110850 fd5ff06f jal x0, -44 +65585535ns 1153087 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65585819ns 1153092 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65586216ns 1153099 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65586387ns 1153102 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65586842ns 1153110 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65587012ns 1153113 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65587296ns 1153118 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65587580ns 1153123 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65587865ns 1153128 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65588319ns 1153136 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65588490ns 1153139 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65588774ns 1153144 1a110850 fd5ff06f jal x0, -44 +65589058ns 1153149 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65589342ns 1153154 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65589740ns 1153161 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65589911ns 1153164 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65590365ns 1153172 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65590536ns 1153175 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65590820ns 1153180 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65591104ns 1153185 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65591388ns 1153190 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65591843ns 1153198 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65592013ns 1153201 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65592298ns 1153206 1a110850 fd5ff06f jal x0, -44 +65592582ns 1153211 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65592866ns 1153216 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65593264ns 1153223 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65593434ns 1153226 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65593889ns 1153234 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65594059ns 1153237 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65594343ns 1153242 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65594628ns 1153247 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65594912ns 1153252 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65595366ns 1153260 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65595537ns 1153263 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65595821ns 1153268 1a110850 fd5ff06f jal x0, -44 +65596105ns 1153273 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65596389ns 1153278 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65596787ns 1153285 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65596958ns 1153288 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65597412ns 1153296 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65597583ns 1153299 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65597867ns 1153304 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65598151ns 1153309 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65598435ns 1153314 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65598890ns 1153322 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65599061ns 1153325 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65599345ns 1153330 1a110850 fd5ff06f jal x0, -44 +65599629ns 1153335 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65599913ns 1153340 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65600311ns 1153347 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65600481ns 1153350 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65600936ns 1153358 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65601106ns 1153361 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65601391ns 1153366 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65601675ns 1153371 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65601959ns 1153376 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65602414ns 1153384 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65602584ns 1153387 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65602868ns 1153392 1a110850 fd5ff06f jal x0, -44 +65603152ns 1153397 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65603437ns 1153402 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65603834ns 1153409 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65604005ns 1153412 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65604460ns 1153420 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65604630ns 1153423 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65604914ns 1153428 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65605198ns 1153433 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65605483ns 1153438 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65605937ns 1153446 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65606108ns 1153449 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65606392ns 1153454 1a110850 fd5ff06f jal x0, -44 +65606676ns 1153459 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65606960ns 1153464 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65607358ns 1153471 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65607528ns 1153474 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65607983ns 1153482 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65608154ns 1153485 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65608438ns 1153490 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65608722ns 1153495 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65609006ns 1153500 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65609461ns 1153508 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65609631ns 1153511 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65609915ns 1153516 1a110850 fd5ff06f jal x0, -44 +65610200ns 1153521 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65610484ns 1153526 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65610882ns 1153533 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65611052ns 1153536 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65611507ns 1153544 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65611677ns 1153547 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65611961ns 1153552 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65612246ns 1153557 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65612530ns 1153562 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65612984ns 1153570 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65613155ns 1153573 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65613439ns 1153578 1a110850 fd5ff06f jal x0, -44 +65613723ns 1153583 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65614007ns 1153588 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65614405ns 1153595 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65614576ns 1153598 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65615030ns 1153606 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65615201ns 1153609 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65615485ns 1153614 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65615769ns 1153619 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65616053ns 1153624 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65616508ns 1153632 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65616678ns 1153635 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65616963ns 1153640 1a110850 fd5ff06f jal x0, -44 +65617247ns 1153645 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65617531ns 1153650 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65617929ns 1153657 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65618099ns 1153660 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65618554ns 1153668 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65618724ns 1153671 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65619009ns 1153676 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65619293ns 1153681 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65619577ns 1153686 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65620032ns 1153694 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65620202ns 1153697 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65620486ns 1153702 1a110850 fd5ff06f jal x0, -44 +65620770ns 1153707 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65621055ns 1153712 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65621452ns 1153719 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65621623ns 1153722 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65622077ns 1153730 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65622248ns 1153733 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65622532ns 1153738 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65622816ns 1153743 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65623100ns 1153748 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65623555ns 1153756 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65623726ns 1153759 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65624010ns 1153764 1a110850 fd5ff06f jal x0, -44 +65624294ns 1153769 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65624578ns 1153774 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65624976ns 1153781 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65625146ns 1153784 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65625601ns 1153792 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65625772ns 1153795 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65626056ns 1153800 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65626340ns 1153805 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65626624ns 1153810 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65627079ns 1153818 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65627249ns 1153821 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65627533ns 1153826 1a110850 fd5ff06f jal x0, -44 +65627818ns 1153831 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65628102ns 1153836 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65628499ns 1153843 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65628670ns 1153846 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65629125ns 1153854 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65629295ns 1153857 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65629579ns 1153862 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65629863ns 1153867 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65630148ns 1153872 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65630602ns 1153880 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65630773ns 1153883 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65631057ns 1153888 1a110850 fd5ff06f jal x0, -44 +65631341ns 1153893 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65631625ns 1153898 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65632023ns 1153905 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65632194ns 1153908 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65632648ns 1153916 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65632819ns 1153919 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65633103ns 1153924 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65633387ns 1153929 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65633671ns 1153934 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65634126ns 1153942 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65634296ns 1153945 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65634581ns 1153950 1a110850 fd5ff06f jal x0, -44 +65634865ns 1153955 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65635149ns 1153960 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65635547ns 1153967 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65635717ns 1153970 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65636172ns 1153978 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65636342ns 1153981 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65636626ns 1153986 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65636911ns 1153991 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65637195ns 1153996 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65637649ns 1154004 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65637820ns 1154007 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65638104ns 1154012 1a110850 fd5ff06f jal x0, -44 +65638388ns 1154017 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65638672ns 1154022 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65639070ns 1154029 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65639241ns 1154032 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65639695ns 1154040 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65639866ns 1154043 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65640150ns 1154048 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65640434ns 1154053 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65640718ns 1154058 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65641173ns 1154066 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65641344ns 1154069 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65641628ns 1154074 1a110850 fd5ff06f jal x0, -44 +65641912ns 1154079 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65642196ns 1154084 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65642594ns 1154091 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65642764ns 1154094 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65643219ns 1154102 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65643389ns 1154105 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65643674ns 1154110 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65643958ns 1154115 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65644242ns 1154120 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65644697ns 1154128 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65644867ns 1154131 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65645151ns 1154136 1a110850 fd5ff06f jal x0, -44 +65645435ns 1154141 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65645720ns 1154146 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65646117ns 1154153 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65646288ns 1154156 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65646743ns 1154164 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65646913ns 1154167 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65647197ns 1154172 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65647481ns 1154177 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65647766ns 1154182 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65648220ns 1154190 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65648391ns 1154193 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65648675ns 1154198 1a110850 fd5ff06f jal x0, -44 +65648959ns 1154203 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65649243ns 1154208 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65649641ns 1154215 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65649811ns 1154218 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65650266ns 1154226 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65650437ns 1154229 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65650721ns 1154234 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65651005ns 1154239 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65651289ns 1154244 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65651744ns 1154252 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65651914ns 1154255 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65652198ns 1154260 1a110850 fd5ff06f jal x0, -44 +65652483ns 1154265 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65652767ns 1154270 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65653165ns 1154277 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65653335ns 1154280 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65653790ns 1154288 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65653960ns 1154291 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65654244ns 1154296 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65654529ns 1154301 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65654813ns 1154306 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65655267ns 1154314 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65655438ns 1154317 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65655722ns 1154322 1a110850 fd5ff06f jal x0, -44 +65656006ns 1154327 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65656290ns 1154332 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65656688ns 1154339 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65656859ns 1154342 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65657313ns 1154350 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65657484ns 1154353 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65657768ns 1154358 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65658052ns 1154363 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65658336ns 1154368 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65658791ns 1154376 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65658961ns 1154379 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65659246ns 1154384 1a110850 fd5ff06f jal x0, -44 +65659530ns 1154389 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65659814ns 1154394 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65660212ns 1154401 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65660382ns 1154404 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65660837ns 1154412 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65661007ns 1154415 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65661292ns 1154420 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65661576ns 1154425 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65661860ns 1154430 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65662315ns 1154438 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65662485ns 1154441 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65662769ns 1154446 1a110850 fd5ff06f jal x0, -44 +65663053ns 1154451 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65663338ns 1154456 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65663735ns 1154463 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65663906ns 1154466 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65664360ns 1154474 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65664531ns 1154477 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65664815ns 1154482 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65665099ns 1154487 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65665383ns 1154492 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65665838ns 1154500 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65666009ns 1154503 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65666293ns 1154508 1a110850 fd5ff06f jal x0, -44 +65666577ns 1154513 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65666861ns 1154518 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65667259ns 1154525 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65667429ns 1154528 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65667884ns 1154536 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65668055ns 1154539 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65668339ns 1154544 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65668623ns 1154549 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65668907ns 1154554 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65669362ns 1154562 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65669532ns 1154565 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65669816ns 1154570 1a110850 fd5ff06f jal x0, -44 +65670101ns 1154575 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65670385ns 1154580 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65670783ns 1154587 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65670953ns 1154590 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65671408ns 1154598 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65671578ns 1154601 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65671862ns 1154606 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65672146ns 1154611 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65672431ns 1154616 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65672885ns 1154624 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65673056ns 1154627 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65673340ns 1154632 1a110850 fd5ff06f jal x0, -44 +65673624ns 1154637 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65673908ns 1154642 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65674306ns 1154649 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65674477ns 1154652 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65674931ns 1154660 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65675102ns 1154663 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65675386ns 1154668 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65675670ns 1154673 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65675954ns 1154678 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65676409ns 1154686 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65676579ns 1154689 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65676864ns 1154694 1a110850 fd5ff06f jal x0, -44 +65677148ns 1154699 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65677432ns 1154704 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65677830ns 1154711 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65678000ns 1154714 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65678455ns 1154722 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65678625ns 1154725 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65678909ns 1154730 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65679194ns 1154735 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65679478ns 1154740 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65679932ns 1154748 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65680103ns 1154751 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65680387ns 1154756 1a110850 fd5ff06f jal x0, -44 +65680671ns 1154761 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65680955ns 1154766 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65681353ns 1154773 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65681524ns 1154776 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65681978ns 1154784 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65682149ns 1154787 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65682433ns 1154792 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65682717ns 1154797 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65683001ns 1154802 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65683456ns 1154810 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65683627ns 1154813 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65683911ns 1154818 1a110850 fd5ff06f jal x0, -44 +65684195ns 1154823 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65684479ns 1154828 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65684877ns 1154835 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65685047ns 1154838 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65685502ns 1154846 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65685672ns 1154849 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65685957ns 1154854 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65686241ns 1154859 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65686525ns 1154864 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65686980ns 1154872 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65687150ns 1154875 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65687434ns 1154880 1a110850 fd5ff06f jal x0, -44 +65687718ns 1154885 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65688003ns 1154890 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65688400ns 1154897 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65688571ns 1154900 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65689026ns 1154908 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65689196ns 1154911 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65689480ns 1154916 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65689764ns 1154921 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65690049ns 1154926 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65690503ns 1154934 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65690674ns 1154937 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65690958ns 1154942 1a110850 fd5ff06f jal x0, -44 +65691242ns 1154947 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65691526ns 1154952 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65691924ns 1154959 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65692095ns 1154962 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65692549ns 1154970 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65692720ns 1154973 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65693004ns 1154978 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65693288ns 1154983 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65693572ns 1154988 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65694027ns 1154996 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65694197ns 1154999 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65694481ns 1155004 1a110850 fd5ff06f jal x0, -44 +65694766ns 1155009 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65695050ns 1155014 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65695448ns 1155021 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65695618ns 1155024 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65696073ns 1155032 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65696243ns 1155035 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65696527ns 1155040 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65696812ns 1155045 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65697096ns 1155050 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65697550ns 1155058 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65697721ns 1155061 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65698005ns 1155066 1a110850 fd5ff06f jal x0, -44 +65698289ns 1155071 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65698573ns 1155076 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65698971ns 1155083 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65699142ns 1155086 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65699596ns 1155094 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65699767ns 1155097 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65700051ns 1155102 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65700335ns 1155107 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65700619ns 1155112 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65701074ns 1155120 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65701244ns 1155123 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65701529ns 1155128 1a110850 fd5ff06f jal x0, -44 +65701813ns 1155133 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65702097ns 1155138 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65702495ns 1155145 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65702665ns 1155148 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65703120ns 1155156 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65703290ns 1155159 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65703575ns 1155164 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65703859ns 1155169 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65704143ns 1155174 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65704598ns 1155182 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65704768ns 1155185 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65705052ns 1155190 1a110850 fd5ff06f jal x0, -44 +65705336ns 1155195 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65705621ns 1155200 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65706018ns 1155207 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65706189ns 1155210 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65706643ns 1155218 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65706814ns 1155221 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65707098ns 1155226 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65707382ns 1155231 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65707666ns 1155236 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65708121ns 1155244 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65708292ns 1155247 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65708576ns 1155252 1a110850 fd5ff06f jal x0, -44 +65708860ns 1155257 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65709144ns 1155262 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65709542ns 1155269 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65709712ns 1155272 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65710167ns 1155280 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65710338ns 1155283 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65710622ns 1155288 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65710906ns 1155293 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65711190ns 1155298 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65711645ns 1155306 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65711815ns 1155309 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65712099ns 1155314 1a110850 fd5ff06f jal x0, -44 +65712384ns 1155319 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65712668ns 1155324 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65713066ns 1155331 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65713236ns 1155334 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65713691ns 1155342 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65713861ns 1155345 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65714145ns 1155350 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65714429ns 1155355 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65714714ns 1155360 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65715168ns 1155368 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65715339ns 1155371 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65715623ns 1155376 1a110850 fd5ff06f jal x0, -44 +65715907ns 1155381 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65716191ns 1155386 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65716589ns 1155393 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65716760ns 1155396 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65717214ns 1155404 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65717385ns 1155407 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65717669ns 1155412 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65717953ns 1155417 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65718237ns 1155422 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65718692ns 1155430 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65718862ns 1155433 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65719147ns 1155438 1a110850 fd5ff06f jal x0, -44 +65719431ns 1155443 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65719715ns 1155448 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65720113ns 1155455 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65720283ns 1155458 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65720738ns 1155466 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65720908ns 1155469 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65721192ns 1155474 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65721477ns 1155479 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65721761ns 1155484 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65722215ns 1155492 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65722386ns 1155495 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65722670ns 1155500 1a110850 fd5ff06f jal x0, -44 +65722954ns 1155505 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65723238ns 1155510 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65723636ns 1155517 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65723807ns 1155520 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65724261ns 1155528 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65724432ns 1155531 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65724716ns 1155536 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65725000ns 1155541 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65725284ns 1155546 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65725739ns 1155554 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65725910ns 1155557 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65726194ns 1155562 1a110850 fd5ff06f jal x0, -44 +65726478ns 1155567 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65726762ns 1155572 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65727160ns 1155579 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65727330ns 1155582 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65727785ns 1155590 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65727955ns 1155593 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65728240ns 1155598 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65728524ns 1155603 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65728808ns 1155608 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65729263ns 1155616 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65729433ns 1155619 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65729717ns 1155624 1a110850 fd5ff06f jal x0, -44 +65730001ns 1155629 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65730286ns 1155634 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65730683ns 1155641 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65730854ns 1155644 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65731309ns 1155652 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65731479ns 1155655 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65731763ns 1155660 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65732047ns 1155665 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65732332ns 1155670 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65732786ns 1155678 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65732957ns 1155681 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65733241ns 1155686 1a110850 fd5ff06f jal x0, -44 +65733525ns 1155691 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65733809ns 1155696 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65734207ns 1155703 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65734378ns 1155706 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65734832ns 1155714 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65735003ns 1155717 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65735287ns 1155722 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65735571ns 1155727 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65735855ns 1155732 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65736310ns 1155740 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65736480ns 1155743 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65736764ns 1155748 1a110850 fd5ff06f jal x0, -44 +65737049ns 1155753 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65737333ns 1155758 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65737731ns 1155765 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65737901ns 1155768 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65738356ns 1155776 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65738526ns 1155779 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65738810ns 1155784 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65739095ns 1155789 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65739379ns 1155794 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65739833ns 1155802 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65740004ns 1155805 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65740288ns 1155810 1a110850 fd5ff06f jal x0, -44 +65740572ns 1155815 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65740856ns 1155820 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65741254ns 1155827 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65741425ns 1155830 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65741879ns 1155838 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65742050ns 1155841 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65742334ns 1155846 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65742618ns 1155851 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65742902ns 1155856 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65743357ns 1155864 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65743527ns 1155867 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65743812ns 1155872 1a110850 fd5ff06f jal x0, -44 +65744096ns 1155877 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65744380ns 1155882 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65744778ns 1155889 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65744948ns 1155892 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65745403ns 1155900 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65745573ns 1155903 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65745858ns 1155908 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65746142ns 1155913 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65746426ns 1155918 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65746881ns 1155926 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65747051ns 1155929 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65747335ns 1155934 1a110850 fd5ff06f jal x0, -44 +65747619ns 1155939 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65747904ns 1155944 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65748301ns 1155951 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65748472ns 1155954 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65748927ns 1155962 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65749097ns 1155965 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65749381ns 1155970 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65749665ns 1155975 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65749949ns 1155980 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65750404ns 1155988 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65750575ns 1155991 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65750859ns 1155996 1a110850 fd5ff06f jal x0, -44 +65751143ns 1156001 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65751427ns 1156006 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65751825ns 1156013 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65751995ns 1156016 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65752450ns 1156024 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65752621ns 1156027 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65752905ns 1156032 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65753189ns 1156037 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65753473ns 1156042 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65753928ns 1156050 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65754098ns 1156053 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65754382ns 1156058 1a110850 fd5ff06f jal x0, -44 +65754667ns 1156063 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65754951ns 1156068 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65755349ns 1156075 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65755519ns 1156078 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65755974ns 1156086 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65756144ns 1156089 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65756428ns 1156094 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65756712ns 1156099 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65756997ns 1156104 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65757451ns 1156112 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65757622ns 1156115 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65757906ns 1156120 1a110850 fd5ff06f jal x0, -44 +65758190ns 1156125 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65758474ns 1156130 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65758872ns 1156137 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65759043ns 1156140 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65759497ns 1156148 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65759668ns 1156151 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65759952ns 1156156 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65760236ns 1156161 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65760520ns 1156166 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65760975ns 1156174 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65761145ns 1156177 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65761430ns 1156182 1a110850 fd5ff06f jal x0, -44 +65761714ns 1156187 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65761998ns 1156192 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65762396ns 1156199 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65762566ns 1156202 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65763021ns 1156210 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65763191ns 1156213 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65763475ns 1156218 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65763760ns 1156223 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65764044ns 1156228 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65764498ns 1156236 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65764669ns 1156239 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65764953ns 1156244 1a110850 fd5ff06f jal x0, -44 +65765237ns 1156249 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65765521ns 1156254 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65765919ns 1156261 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65766090ns 1156264 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65766544ns 1156272 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65766715ns 1156275 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65766999ns 1156280 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65767283ns 1156285 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65767567ns 1156290 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65768022ns 1156298 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65768193ns 1156301 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65768477ns 1156306 1a110850 fd5ff06f jal x0, -44 +65768761ns 1156311 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65769045ns 1156316 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65769443ns 1156323 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65769613ns 1156326 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65770068ns 1156334 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65770239ns 1156337 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65770523ns 1156342 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65770807ns 1156347 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65771091ns 1156352 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65771546ns 1156360 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65771716ns 1156363 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65772000ns 1156368 1a110850 fd5ff06f jal x0, -44 +65772284ns 1156373 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65772569ns 1156378 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65772966ns 1156385 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65773137ns 1156388 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65773592ns 1156396 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65773762ns 1156399 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65774046ns 1156404 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65774330ns 1156409 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65774615ns 1156414 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65775069ns 1156422 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65775240ns 1156425 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65775524ns 1156430 1a110850 fd5ff06f jal x0, -44 +65775808ns 1156435 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65776092ns 1156440 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65776490ns 1156447 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65776661ns 1156450 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65777115ns 1156458 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65777286ns 1156461 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65777570ns 1156466 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65777854ns 1156471 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65778138ns 1156476 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65778593ns 1156484 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65778763ns 1156487 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65779047ns 1156492 1a110850 fd5ff06f jal x0, -44 +65779332ns 1156497 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65779616ns 1156502 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65780014ns 1156509 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65780184ns 1156512 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65780639ns 1156520 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65780809ns 1156523 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65781093ns 1156528 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65781378ns 1156533 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65781662ns 1156538 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65782116ns 1156546 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65782287ns 1156549 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65782571ns 1156554 1a110850 fd5ff06f jal x0, -44 +65782855ns 1156559 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65783139ns 1156564 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65783537ns 1156571 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65783708ns 1156574 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65784162ns 1156582 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65784333ns 1156585 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65784617ns 1156590 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65784901ns 1156595 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65785185ns 1156600 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65785640ns 1156608 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65785810ns 1156611 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65786095ns 1156616 1a110850 fd5ff06f jal x0, -44 +65786379ns 1156621 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65786663ns 1156626 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65787061ns 1156633 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65787231ns 1156636 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65787686ns 1156644 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65787856ns 1156647 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65788141ns 1156652 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65788425ns 1156657 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65788709ns 1156662 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65789164ns 1156670 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65789334ns 1156673 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65789618ns 1156678 1a110850 fd5ff06f jal x0, -44 +65789902ns 1156683 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65790187ns 1156688 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65790584ns 1156695 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65790755ns 1156698 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65791210ns 1156706 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65791380ns 1156709 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65791664ns 1156714 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65791948ns 1156719 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65792232ns 1156724 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65792687ns 1156732 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65792858ns 1156735 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65793142ns 1156740 1a110850 fd5ff06f jal x0, -44 +65793426ns 1156745 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65793710ns 1156750 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65794108ns 1156757 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65794278ns 1156760 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65794733ns 1156768 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65794904ns 1156771 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65795188ns 1156776 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65795472ns 1156781 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65795756ns 1156786 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65796211ns 1156794 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65796381ns 1156797 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65796665ns 1156802 1a110850 fd5ff06f jal x0, -44 +65796950ns 1156807 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65797234ns 1156812 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65797632ns 1156819 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65797802ns 1156822 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65798257ns 1156830 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65798427ns 1156833 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65798711ns 1156838 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65798995ns 1156843 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65799280ns 1156848 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65799734ns 1156856 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65799905ns 1156859 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65800189ns 1156864 1a110850 fd5ff06f jal x0, -44 +65800473ns 1156869 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65800757ns 1156874 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65801155ns 1156881 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65801326ns 1156884 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65801780ns 1156892 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65801951ns 1156895 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65802235ns 1156900 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65802519ns 1156905 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65802803ns 1156910 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65803258ns 1156918 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65803428ns 1156921 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65803713ns 1156926 1a110850 fd5ff06f jal x0, -44 +65803997ns 1156931 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65804281ns 1156936 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65804679ns 1156943 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65804849ns 1156946 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65805304ns 1156954 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65805474ns 1156957 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65805759ns 1156962 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65806043ns 1156967 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65806327ns 1156972 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65806781ns 1156980 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65806952ns 1156983 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65807236ns 1156988 1a110850 fd5ff06f jal x0, -44 +65807520ns 1156993 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65807804ns 1156998 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65808202ns 1157005 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65808373ns 1157008 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65808827ns 1157016 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65808998ns 1157019 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65809282ns 1157024 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65809566ns 1157029 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65809850ns 1157034 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65810305ns 1157042 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65810476ns 1157045 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65810760ns 1157050 1a110850 fd5ff06f jal x0, -44 +65811044ns 1157055 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65811328ns 1157060 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65811726ns 1157067 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65811896ns 1157070 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65812351ns 1157078 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65812522ns 1157081 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65812806ns 1157086 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65813090ns 1157091 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65813374ns 1157096 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65813829ns 1157104 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65813999ns 1157107 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65814283ns 1157112 1a110850 fd5ff06f jal x0, -44 +65814567ns 1157117 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65814852ns 1157122 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65815249ns 1157129 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65815420ns 1157132 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65815875ns 1157140 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65816045ns 1157143 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65816329ns 1157148 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65816613ns 1157153 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65816898ns 1157158 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65817352ns 1157166 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65817523ns 1157169 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65817807ns 1157174 1a110850 fd5ff06f jal x0, -44 +65818091ns 1157179 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65818375ns 1157184 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65818773ns 1157191 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65818944ns 1157194 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65819398ns 1157202 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65819569ns 1157205 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65819853ns 1157210 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65820137ns 1157215 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65820421ns 1157220 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65820876ns 1157228 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65821046ns 1157231 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65821330ns 1157236 1a110850 fd5ff06f jal x0, -44 +65821615ns 1157241 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65821899ns 1157246 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65822297ns 1157253 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65822467ns 1157256 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65822922ns 1157264 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65823092ns 1157267 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65823376ns 1157272 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65823661ns 1157277 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65823945ns 1157282 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65824399ns 1157290 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65824570ns 1157293 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65824854ns 1157298 1a110850 fd5ff06f jal x0, -44 +65825138ns 1157303 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65825422ns 1157308 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65825820ns 1157315 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65825991ns 1157318 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65826445ns 1157326 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65826616ns 1157329 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65826900ns 1157334 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65827184ns 1157339 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65827468ns 1157344 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65827923ns 1157352 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65828093ns 1157355 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65828378ns 1157360 1a110850 fd5ff06f jal x0, -44 +65828662ns 1157365 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65828946ns 1157370 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65829344ns 1157377 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65829514ns 1157380 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65829969ns 1157388 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65830139ns 1157391 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65830424ns 1157396 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65830708ns 1157401 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65830992ns 1157406 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65831447ns 1157414 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65831617ns 1157417 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65831901ns 1157422 1a110850 fd5ff06f jal x0, -44 +65832185ns 1157427 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65832470ns 1157432 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65832867ns 1157439 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65833038ns 1157442 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65833493ns 1157450 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65833663ns 1157453 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65833947ns 1157458 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65834231ns 1157463 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65834515ns 1157468 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65834970ns 1157476 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65835141ns 1157479 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65835425ns 1157484 1a110850 fd5ff06f jal x0, -44 +65835709ns 1157489 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65835993ns 1157494 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65836391ns 1157501 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65836561ns 1157504 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65837016ns 1157512 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65837187ns 1157515 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65837471ns 1157520 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65837755ns 1157525 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65838039ns 1157530 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65838494ns 1157538 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65838664ns 1157541 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65838948ns 1157546 1a110850 fd5ff06f jal x0, -44 +65839233ns 1157551 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65839517ns 1157556 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65839915ns 1157563 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65840085ns 1157566 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65840540ns 1157574 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65840710ns 1157577 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65840994ns 1157582 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65841279ns 1157587 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65841563ns 1157592 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65842017ns 1157600 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65842188ns 1157603 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65842472ns 1157608 1a110850 fd5ff06f jal x0, -44 +65842756ns 1157613 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65843040ns 1157618 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65843438ns 1157625 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65843609ns 1157628 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65844063ns 1157636 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65844234ns 1157639 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65844518ns 1157644 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65844802ns 1157649 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65845086ns 1157654 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65845541ns 1157662 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65845711ns 1157665 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65845996ns 1157670 1a110850 fd5ff06f jal x0, -44 +65846280ns 1157675 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65846564ns 1157680 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65846962ns 1157687 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65847132ns 1157690 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65847587ns 1157698 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65847757ns 1157701 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65848042ns 1157706 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65848326ns 1157711 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65848610ns 1157716 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65849064ns 1157724 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65849235ns 1157727 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65849519ns 1157732 1a110850 fd5ff06f jal x0, -44 +65849803ns 1157737 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65850087ns 1157742 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65850485ns 1157749 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65850656ns 1157752 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65851110ns 1157760 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65851281ns 1157763 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65851565ns 1157768 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65851849ns 1157773 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65852133ns 1157778 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65852588ns 1157786 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65852759ns 1157789 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65853043ns 1157794 1a110850 fd5ff06f jal x0, -44 +65853327ns 1157799 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65853611ns 1157804 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65854009ns 1157811 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65854179ns 1157814 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65854634ns 1157822 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65854805ns 1157825 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65855089ns 1157830 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65855373ns 1157835 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65855657ns 1157840 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65856112ns 1157848 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65856282ns 1157851 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65856566ns 1157856 1a110850 fd5ff06f jal x0, -44 +65856850ns 1157861 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65857135ns 1157866 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65857532ns 1157873 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65857703ns 1157876 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65858158ns 1157884 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65858328ns 1157887 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65858612ns 1157892 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65858896ns 1157897 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65859181ns 1157902 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65859635ns 1157910 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65859806ns 1157913 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65860090ns 1157918 1a110850 fd5ff06f jal x0, -44 +65860374ns 1157923 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65860658ns 1157928 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65861056ns 1157935 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65861227ns 1157938 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65861681ns 1157946 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65861852ns 1157949 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65862136ns 1157954 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65862420ns 1157959 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65862704ns 1157964 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65863159ns 1157972 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65863329ns 1157975 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65863613ns 1157980 1a110850 fd5ff06f jal x0, -44 +65863898ns 1157985 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65864182ns 1157990 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65864580ns 1157997 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65864750ns 1158000 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65865205ns 1158008 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65865375ns 1158011 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65865659ns 1158016 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65865944ns 1158021 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65866228ns 1158026 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65866682ns 1158034 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65866853ns 1158037 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65867137ns 1158042 1a110850 fd5ff06f jal x0, -44 +65867421ns 1158047 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65867705ns 1158052 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65868103ns 1158059 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65868274ns 1158062 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65868728ns 1158070 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65868899ns 1158073 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65869183ns 1158078 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65869467ns 1158083 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65869751ns 1158088 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65870206ns 1158096 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65870376ns 1158099 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65870661ns 1158104 1a110850 fd5ff06f jal x0, -44 +65870945ns 1158109 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65871229ns 1158114 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65871627ns 1158121 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65871797ns 1158124 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65872252ns 1158132 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65872422ns 1158135 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65872707ns 1158140 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65872991ns 1158145 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65873275ns 1158150 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65873730ns 1158158 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65873900ns 1158161 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65874184ns 1158166 1a110850 fd5ff06f jal x0, -44 +65874468ns 1158171 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65874753ns 1158176 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65875150ns 1158183 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65875321ns 1158186 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65875776ns 1158194 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65875946ns 1158197 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65876230ns 1158202 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65876514ns 1158207 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65876799ns 1158212 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65877253ns 1158220 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65877424ns 1158223 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65877708ns 1158228 1a110850 fd5ff06f jal x0, -44 +65877992ns 1158233 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65878276ns 1158238 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65878674ns 1158245 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65878844ns 1158248 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65879299ns 1158256 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65879470ns 1158259 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65879754ns 1158264 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65880038ns 1158269 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65880322ns 1158274 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65880777ns 1158282 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65880947ns 1158285 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65881231ns 1158290 1a110850 fd5ff06f jal x0, -44 +65881516ns 1158295 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65881800ns 1158300 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65882198ns 1158307 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65882368ns 1158310 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65882823ns 1158318 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65882993ns 1158321 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65883277ns 1158326 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65883562ns 1158331 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65883846ns 1158336 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65884300ns 1158344 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65884471ns 1158347 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65884755ns 1158352 1a110850 fd5ff06f jal x0, -44 +65885039ns 1158357 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65885323ns 1158362 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65885721ns 1158369 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65885892ns 1158372 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65886346ns 1158380 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65886517ns 1158383 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65886801ns 1158388 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65887085ns 1158393 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65887369ns 1158398 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65887824ns 1158406 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65887994ns 1158409 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65888279ns 1158414 1a110850 fd5ff06f jal x0, -44 +65888563ns 1158419 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65888847ns 1158424 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65889245ns 1158431 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65889415ns 1158434 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65889870ns 1158442 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65890040ns 1158445 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65890325ns 1158450 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65890609ns 1158455 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65890893ns 1158460 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65891347ns 1158468 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65891518ns 1158471 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65891802ns 1158476 1a110850 fd5ff06f jal x0, -44 +65892086ns 1158481 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65892370ns 1158486 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65892768ns 1158493 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65892939ns 1158496 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65893393ns 1158504 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65893564ns 1158507 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65893848ns 1158512 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65894132ns 1158517 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65894416ns 1158522 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65894871ns 1158530 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65895042ns 1158533 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65895326ns 1158538 1a110850 fd5ff06f jal x0, -44 +65895610ns 1158543 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65895894ns 1158548 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65896292ns 1158555 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65896462ns 1158558 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65896917ns 1158566 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65897088ns 1158569 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65897372ns 1158574 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65897656ns 1158579 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65897940ns 1158584 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65898395ns 1158592 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65898565ns 1158595 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65898849ns 1158600 1a110850 fd5ff06f jal x0, -44 +65899133ns 1158605 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65899418ns 1158610 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65899815ns 1158617 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65899986ns 1158620 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65900441ns 1158628 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65900611ns 1158631 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65900895ns 1158636 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65901179ns 1158641 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65901464ns 1158646 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65901918ns 1158654 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65902089ns 1158657 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65902373ns 1158662 1a110850 fd5ff06f jal x0, -44 +65902657ns 1158667 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65902941ns 1158672 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65903339ns 1158679 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65903510ns 1158682 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65903964ns 1158690 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65904135ns 1158693 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65904419ns 1158698 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65904703ns 1158703 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65904987ns 1158708 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65905442ns 1158716 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65905612ns 1158719 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65905896ns 1158724 1a110850 fd5ff06f jal x0, -44 +65906181ns 1158729 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65906465ns 1158734 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65906863ns 1158741 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65907033ns 1158744 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65907488ns 1158752 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65907658ns 1158755 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65907942ns 1158760 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65908227ns 1158765 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65908511ns 1158770 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65908965ns 1158778 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65909136ns 1158781 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65909420ns 1158786 1a110850 fd5ff06f jal x0, -44 +65909704ns 1158791 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65909988ns 1158796 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65910386ns 1158803 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65910557ns 1158806 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65911011ns 1158814 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65911182ns 1158817 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65911466ns 1158822 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65911750ns 1158827 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65912034ns 1158832 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65912489ns 1158840 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65912659ns 1158843 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65912944ns 1158848 1a110850 fd5ff06f jal x0, -44 +65913228ns 1158853 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65913512ns 1158858 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65913910ns 1158865 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65914080ns 1158868 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65914535ns 1158876 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65914705ns 1158879 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65914990ns 1158884 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65915274ns 1158889 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65915558ns 1158894 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65916013ns 1158902 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65916183ns 1158905 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65916467ns 1158910 1a110850 fd5ff06f jal x0, -44 +65916751ns 1158915 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65917036ns 1158920 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65917433ns 1158927 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65917604ns 1158930 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65918059ns 1158938 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65918229ns 1158941 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65918513ns 1158946 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65918797ns 1158951 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65919082ns 1158956 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65919536ns 1158964 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65919707ns 1158967 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65919991ns 1158972 1a110850 fd5ff06f jal x0, -44 +65920275ns 1158977 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65920559ns 1158982 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65920957ns 1158989 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65921127ns 1158992 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65921582ns 1159000 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65921753ns 1159003 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65922037ns 1159008 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65922321ns 1159013 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65922605ns 1159018 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65923060ns 1159026 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65923230ns 1159029 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65923514ns 1159034 1a110850 fd5ff06f jal x0, -44 +65923799ns 1159039 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65924083ns 1159044 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65924481ns 1159051 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65924651ns 1159054 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65925106ns 1159062 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65925276ns 1159065 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65925560ns 1159070 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65925845ns 1159075 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65926129ns 1159080 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65926583ns 1159088 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65926754ns 1159091 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65927038ns 1159096 1a110850 fd5ff06f jal x0, -44 +65927322ns 1159101 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65927606ns 1159106 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65928004ns 1159113 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65928175ns 1159116 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65928629ns 1159124 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65928800ns 1159127 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65929084ns 1159132 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65929368ns 1159137 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65929652ns 1159142 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65930107ns 1159150 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65930277ns 1159153 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65930562ns 1159158 1a110850 fd5ff06f jal x0, -44 +65930846ns 1159163 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65931130ns 1159168 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65931528ns 1159175 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65931698ns 1159178 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65932153ns 1159186 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65932323ns 1159189 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65932608ns 1159194 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65932892ns 1159199 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65933176ns 1159204 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65933631ns 1159212 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65933801ns 1159215 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65934085ns 1159220 1a110850 fd5ff06f jal x0, -44 +65934369ns 1159225 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65934653ns 1159230 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65935051ns 1159237 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65935222ns 1159240 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65935676ns 1159248 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65935847ns 1159251 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65936131ns 1159256 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65936415ns 1159261 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65936699ns 1159266 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65937154ns 1159274 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65937325ns 1159277 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65937609ns 1159282 1a110850 fd5ff06f jal x0, -44 +65937893ns 1159287 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65938177ns 1159292 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65938575ns 1159299 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65938745ns 1159302 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65939200ns 1159310 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65939371ns 1159313 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65939655ns 1159318 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65939939ns 1159323 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65940223ns 1159328 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65940678ns 1159336 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65940848ns 1159339 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65941132ns 1159344 1a110850 fd5ff06f jal x0, -44 +65941416ns 1159349 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65941701ns 1159354 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65942098ns 1159361 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65942269ns 1159364 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65942724ns 1159372 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65942894ns 1159375 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65943178ns 1159380 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65943462ns 1159385 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65943747ns 1159390 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65944201ns 1159398 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65944372ns 1159401 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65944656ns 1159406 1a110850 fd5ff06f jal x0, -44 +65944940ns 1159411 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65945224ns 1159416 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65945622ns 1159423 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65945793ns 1159426 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65946247ns 1159434 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65946418ns 1159437 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65946702ns 1159442 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65946986ns 1159447 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65947270ns 1159452 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65947725ns 1159460 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65947895ns 1159463 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65948179ns 1159468 1a110850 fd5ff06f jal x0, -44 +65948464ns 1159473 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65948748ns 1159478 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65949146ns 1159485 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65949316ns 1159488 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65949771ns 1159496 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65949941ns 1159499 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65950225ns 1159504 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65950510ns 1159509 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65950794ns 1159514 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65951248ns 1159522 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65951419ns 1159525 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65951703ns 1159530 1a110850 fd5ff06f jal x0, -44 +65951987ns 1159535 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65952271ns 1159540 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65952669ns 1159547 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65952840ns 1159550 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65953294ns 1159558 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65953465ns 1159561 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65953749ns 1159566 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65954033ns 1159571 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65954317ns 1159576 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65954772ns 1159584 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65954943ns 1159587 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65955227ns 1159592 1a110850 fd5ff06f jal x0, -44 +65955511ns 1159597 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65955795ns 1159602 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65956193ns 1159609 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65956363ns 1159612 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65956818ns 1159620 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65956988ns 1159623 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65957273ns 1159628 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65957557ns 1159633 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65957841ns 1159638 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65958296ns 1159646 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65958466ns 1159649 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65958750ns 1159654 1a110850 fd5ff06f jal x0, -44 +65959034ns 1159659 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65959319ns 1159664 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65959716ns 1159671 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65959887ns 1159674 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65960342ns 1159682 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65960512ns 1159685 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65960796ns 1159690 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65961080ns 1159695 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65961365ns 1159700 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65961819ns 1159708 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65961990ns 1159711 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65962274ns 1159716 1a110850 fd5ff06f jal x0, -44 +65962558ns 1159721 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65962842ns 1159726 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65963240ns 1159733 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65963410ns 1159736 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65963865ns 1159744 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65964036ns 1159747 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65964320ns 1159752 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65964604ns 1159757 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65964888ns 1159762 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65965343ns 1159770 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65965513ns 1159773 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65965797ns 1159778 1a110850 fd5ff06f jal x0, -44 +65966082ns 1159783 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65966366ns 1159788 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65966764ns 1159795 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65966934ns 1159798 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65967389ns 1159806 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65967559ns 1159809 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65967843ns 1159814 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65968128ns 1159819 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65968412ns 1159824 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65968866ns 1159832 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65969037ns 1159835 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65969321ns 1159840 1a110850 fd5ff06f jal x0, -44 +65969605ns 1159845 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65969889ns 1159850 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65970287ns 1159857 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65970458ns 1159860 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65970912ns 1159868 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65971083ns 1159871 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65971367ns 1159876 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65971651ns 1159881 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65971935ns 1159886 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65972390ns 1159894 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65972560ns 1159897 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65972845ns 1159902 1a110850 fd5ff06f jal x0, -44 +65973129ns 1159907 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65973413ns 1159912 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65973811ns 1159919 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65973981ns 1159922 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65974436ns 1159930 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65974606ns 1159933 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65974891ns 1159938 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65975175ns 1159943 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65975459ns 1159948 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65975914ns 1159956 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65976084ns 1159959 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65976368ns 1159964 1a110850 fd5ff06f jal x0, -44 +65976652ns 1159969 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65976936ns 1159974 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65977334ns 1159981 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65977505ns 1159984 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65977959ns 1159992 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65978130ns 1159995 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65978414ns 1160000 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65978698ns 1160005 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65978982ns 1160010 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65979437ns 1160018 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65979608ns 1160021 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65979892ns 1160026 1a110850 fd5ff06f jal x0, -44 +65980176ns 1160031 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65980460ns 1160036 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65980858ns 1160043 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65981028ns 1160046 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65981483ns 1160054 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65981654ns 1160057 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65981938ns 1160062 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65982222ns 1160067 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65982506ns 1160072 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65982961ns 1160080 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65983131ns 1160083 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65983415ns 1160088 1a110850 fd5ff06f jal x0, -44 +65983699ns 1160093 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65983984ns 1160098 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65984381ns 1160105 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65984552ns 1160108 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65985007ns 1160116 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65985177ns 1160119 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65985461ns 1160124 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65985745ns 1160129 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65986030ns 1160134 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65986484ns 1160142 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65986655ns 1160145 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65986939ns 1160150 1a110850 fd5ff06f jal x0, -44 +65987223ns 1160155 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65987507ns 1160160 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65987905ns 1160167 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65988076ns 1160170 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65988530ns 1160178 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65988701ns 1160181 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65988985ns 1160186 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65989269ns 1160191 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65989553ns 1160196 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65990008ns 1160204 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65990178ns 1160207 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65990463ns 1160212 1a110850 fd5ff06f jal x0, -44 +65990747ns 1160217 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65991031ns 1160222 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65991429ns 1160229 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65991599ns 1160232 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65992054ns 1160240 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65992224ns 1160243 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65992508ns 1160248 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65992793ns 1160253 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65993077ns 1160258 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65993531ns 1160266 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65993702ns 1160269 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65993986ns 1160274 1a110850 fd5ff06f jal x0, -44 +65994270ns 1160279 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65994554ns 1160284 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65994952ns 1160291 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65995123ns 1160294 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65995577ns 1160302 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65995748ns 1160305 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65996032ns 1160310 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65996316ns 1160315 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65996600ns 1160320 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65997055ns 1160328 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +65997226ns 1160331 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +65997510ns 1160336 1a110850 fd5ff06f jal x0, -44 +65997794ns 1160341 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65998078ns 1160346 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +65998476ns 1160353 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +65998646ns 1160356 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +65999101ns 1160364 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +65999271ns 1160367 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +65999556ns 1160372 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +65999840ns 1160377 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66000124ns 1160382 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66000579ns 1160390 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66000749ns 1160393 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66001033ns 1160398 1a110850 fd5ff06f jal x0, -44 +66001317ns 1160403 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66001602ns 1160408 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66001999ns 1160415 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66002170ns 1160418 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66002625ns 1160426 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66002795ns 1160429 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66003079ns 1160434 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66003363ns 1160439 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66003648ns 1160444 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66004102ns 1160452 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66004273ns 1160455 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66004557ns 1160460 1a110850 fd5ff06f jal x0, -44 +66004841ns 1160465 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66005125ns 1160470 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66005523ns 1160477 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66005693ns 1160480 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66006148ns 1160488 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66006319ns 1160491 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66006603ns 1160496 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66006887ns 1160501 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66007171ns 1160506 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66007626ns 1160514 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66007796ns 1160517 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66008080ns 1160522 1a110850 fd5ff06f jal x0, -44 +66008365ns 1160527 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66008649ns 1160532 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66009047ns 1160539 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66009217ns 1160542 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66009672ns 1160550 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66009842ns 1160553 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66010126ns 1160558 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66010411ns 1160563 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66010695ns 1160568 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66011149ns 1160576 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66011320ns 1160579 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66011604ns 1160584 1a110850 fd5ff06f jal x0, -44 +66011888ns 1160589 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66012172ns 1160594 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66012570ns 1160601 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66012741ns 1160604 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66013195ns 1160612 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66013366ns 1160615 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66013650ns 1160620 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66013934ns 1160625 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66014218ns 1160630 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66014673ns 1160638 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66014843ns 1160641 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66015128ns 1160646 1a110850 fd5ff06f jal x0, -44 +66015412ns 1160651 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66015696ns 1160656 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66016094ns 1160663 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66016264ns 1160666 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66016719ns 1160674 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66016889ns 1160677 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66017174ns 1160682 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66017458ns 1160687 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66017742ns 1160692 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66018197ns 1160700 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66018367ns 1160703 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66018651ns 1160708 1a110850 fd5ff06f jal x0, -44 +66018935ns 1160713 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66019219ns 1160718 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66019617ns 1160725 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66019788ns 1160728 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66020242ns 1160736 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66020413ns 1160739 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66020697ns 1160744 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66020981ns 1160749 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66021265ns 1160754 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66021720ns 1160762 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66021891ns 1160765 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66022175ns 1160770 1a110850 fd5ff06f jal x0, -44 +66022459ns 1160775 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66022743ns 1160780 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66023141ns 1160787 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66023311ns 1160790 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66023766ns 1160798 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66023937ns 1160801 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66024221ns 1160806 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66024505ns 1160811 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66024789ns 1160816 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66025244ns 1160824 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66025414ns 1160827 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66025698ns 1160832 1a110850 fd5ff06f jal x0, -44 +66025983ns 1160837 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66026267ns 1160842 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66026664ns 1160849 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66026835ns 1160852 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66027290ns 1160860 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66027460ns 1160863 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66027744ns 1160868 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66028028ns 1160873 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66028313ns 1160878 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66028767ns 1160886 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66028938ns 1160889 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66029222ns 1160894 1a110850 fd5ff06f jal x0, -44 +66029506ns 1160899 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66029790ns 1160904 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66030188ns 1160911 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66030359ns 1160914 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66030813ns 1160922 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66030984ns 1160925 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66031268ns 1160930 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66031552ns 1160935 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66031836ns 1160940 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66032291ns 1160948 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66032461ns 1160951 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66032746ns 1160956 1a110850 fd5ff06f jal x0, -44 +66033030ns 1160961 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66033314ns 1160966 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66033712ns 1160973 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66033882ns 1160976 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66034337ns 1160984 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66034507ns 1160987 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66034791ns 1160992 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66035076ns 1160997 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66035360ns 1161002 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66035814ns 1161010 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66035985ns 1161013 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66036269ns 1161018 1a110850 fd5ff06f jal x0, -44 +66036553ns 1161023 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66036837ns 1161028 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66037235ns 1161035 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66037406ns 1161038 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66037860ns 1161046 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66038031ns 1161049 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66038315ns 1161054 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66038599ns 1161059 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66038883ns 1161064 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66039338ns 1161072 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66039509ns 1161075 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66039793ns 1161080 1a110850 fd5ff06f jal x0, -44 +66040077ns 1161085 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66040361ns 1161090 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66040759ns 1161097 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66040929ns 1161100 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66041384ns 1161108 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66041554ns 1161111 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66041839ns 1161116 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66042123ns 1161121 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66042407ns 1161126 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66042862ns 1161134 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66043032ns 1161137 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66043316ns 1161142 1a110850 fd5ff06f jal x0, -44 +66043600ns 1161147 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66043885ns 1161152 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66044282ns 1161159 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66044453ns 1161162 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66044908ns 1161170 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66045078ns 1161173 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66045362ns 1161178 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66045646ns 1161183 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66045931ns 1161188 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66046385ns 1161196 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66046556ns 1161199 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66046840ns 1161204 1a110850 fd5ff06f jal x0, -44 +66047124ns 1161209 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66047408ns 1161214 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66047806ns 1161221 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66047976ns 1161224 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66048431ns 1161232 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66048602ns 1161235 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66048886ns 1161240 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66049170ns 1161245 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66049454ns 1161250 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66049909ns 1161258 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66050079ns 1161261 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66050363ns 1161266 1a110850 fd5ff06f jal x0, -44 +66050648ns 1161271 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66050932ns 1161276 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66051330ns 1161283 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66051500ns 1161286 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66051955ns 1161294 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66052125ns 1161297 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66052409ns 1161302 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66052694ns 1161307 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66052978ns 1161312 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66053432ns 1161320 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66053603ns 1161323 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66053887ns 1161328 1a110850 fd5ff06f jal x0, -44 +66054171ns 1161333 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66054455ns 1161338 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66054853ns 1161345 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66055024ns 1161348 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66055478ns 1161356 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66055649ns 1161359 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66055933ns 1161364 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66056217ns 1161369 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66056501ns 1161374 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66056956ns 1161382 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66057126ns 1161385 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66057411ns 1161390 1a110850 fd5ff06f jal x0, -44 +66057695ns 1161395 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66057979ns 1161400 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66058377ns 1161407 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66058547ns 1161410 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66059002ns 1161418 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66059172ns 1161421 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66059457ns 1161426 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66059741ns 1161431 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66060025ns 1161436 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66060480ns 1161444 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66060650ns 1161447 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66060934ns 1161452 1a110850 fd5ff06f jal x0, -44 +66061218ns 1161457 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66061503ns 1161462 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66061900ns 1161469 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66062071ns 1161472 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66062525ns 1161480 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66062696ns 1161483 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66062980ns 1161488 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66063264ns 1161493 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66063548ns 1161498 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66064003ns 1161506 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66064174ns 1161509 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66064458ns 1161514 1a110850 fd5ff06f jal x0, -44 +66064742ns 1161519 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66065026ns 1161524 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66065424ns 1161531 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66065594ns 1161534 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66066049ns 1161542 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66066220ns 1161545 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66066504ns 1161550 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66066788ns 1161555 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66067072ns 1161560 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66067527ns 1161568 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66067697ns 1161571 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66067981ns 1161576 1a110850 fd5ff06f jal x0, -44 +66068266ns 1161581 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66068550ns 1161586 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66068947ns 1161593 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66069118ns 1161596 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66069573ns 1161604 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66069743ns 1161607 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66070027ns 1161612 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66070311ns 1161617 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66070596ns 1161622 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66071050ns 1161630 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66071221ns 1161633 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66071505ns 1161638 1a110850 fd5ff06f jal x0, -44 +66071789ns 1161643 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66072073ns 1161648 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66072471ns 1161655 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66072642ns 1161658 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66073096ns 1161666 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66073267ns 1161669 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66073551ns 1161674 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66073835ns 1161679 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66074119ns 1161684 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66074574ns 1161692 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66074744ns 1161695 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66075029ns 1161700 1a110850 fd5ff06f jal x0, -44 +66075313ns 1161705 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66075597ns 1161710 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66075995ns 1161717 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66076165ns 1161720 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66076620ns 1161728 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66076790ns 1161731 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66077074ns 1161736 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66077359ns 1161741 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66077643ns 1161746 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66078097ns 1161754 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66078268ns 1161757 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66078552ns 1161762 1a110850 fd5ff06f jal x0, -44 +66078836ns 1161767 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66079120ns 1161772 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66079518ns 1161779 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66079689ns 1161782 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66080143ns 1161790 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66080314ns 1161793 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66080598ns 1161798 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66080882ns 1161803 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66081166ns 1161808 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66081621ns 1161816 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66081792ns 1161819 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66082076ns 1161824 1a110850 fd5ff06f jal x0, -44 +66082360ns 1161829 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66082644ns 1161834 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66083042ns 1161841 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66083212ns 1161844 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66083667ns 1161852 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66083837ns 1161855 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66084122ns 1161860 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66084406ns 1161865 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66084690ns 1161870 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66085145ns 1161878 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66085315ns 1161881 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66085599ns 1161886 1a110850 fd5ff06f jal x0, -44 +66085883ns 1161891 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66086168ns 1161896 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66086565ns 1161903 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66086736ns 1161906 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66087191ns 1161914 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66087361ns 1161917 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66087645ns 1161922 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66087929ns 1161927 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66088214ns 1161932 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66088668ns 1161940 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66088839ns 1161943 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66089123ns 1161948 1a110850 fd5ff06f jal x0, -44 +66089407ns 1161953 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66089691ns 1161958 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66090089ns 1161965 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66090259ns 1161968 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66090714ns 1161976 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66090885ns 1161979 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66091169ns 1161984 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66091453ns 1161989 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66091737ns 1161994 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66092192ns 1162002 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66092362ns 1162005 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66092646ns 1162010 1a110850 fd5ff06f jal x0, -44 +66092931ns 1162015 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66093215ns 1162020 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66093613ns 1162027 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66093783ns 1162030 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66094238ns 1162038 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66094408ns 1162041 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66094692ns 1162046 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66094977ns 1162051 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66095261ns 1162056 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66095715ns 1162064 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66095886ns 1162067 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66096170ns 1162072 1a110850 fd5ff06f jal x0, -44 +66096454ns 1162077 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66096738ns 1162082 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66097136ns 1162089 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66097307ns 1162092 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66097761ns 1162100 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66097932ns 1162103 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66098216ns 1162108 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66098500ns 1162113 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66098784ns 1162118 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66099239ns 1162126 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66099409ns 1162129 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66099694ns 1162134 1a110850 fd5ff06f jal x0, -44 +66099978ns 1162139 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66100262ns 1162144 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66100660ns 1162151 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66100830ns 1162154 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66101285ns 1162162 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66101455ns 1162165 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66101740ns 1162170 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66102024ns 1162175 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66102308ns 1162180 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66102763ns 1162188 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66102933ns 1162191 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66103217ns 1162196 1a110850 fd5ff06f jal x0, -44 +66103501ns 1162201 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66103786ns 1162206 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66104183ns 1162213 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66104354ns 1162216 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66104808ns 1162224 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66104979ns 1162227 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66105263ns 1162232 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66105547ns 1162237 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66105831ns 1162242 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66106286ns 1162250 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66106457ns 1162253 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66106741ns 1162258 1a110850 fd5ff06f jal x0, -44 +66107025ns 1162263 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66107309ns 1162268 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66107707ns 1162275 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66107877ns 1162278 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66108332ns 1162286 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66108503ns 1162289 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66108787ns 1162294 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66109071ns 1162299 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66109355ns 1162304 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66109810ns 1162312 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66109980ns 1162315 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66110264ns 1162320 1a110850 fd5ff06f jal x0, -44 +66110549ns 1162325 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66110833ns 1162330 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66111231ns 1162337 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66111401ns 1162340 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66111856ns 1162348 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66112026ns 1162351 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66112310ns 1162356 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66112594ns 1162361 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66112879ns 1162366 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66113333ns 1162374 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66113504ns 1162377 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66113788ns 1162382 1a110850 fd5ff06f jal x0, -44 +66114072ns 1162387 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66114356ns 1162392 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66114754ns 1162399 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66114925ns 1162402 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66115379ns 1162410 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66115550ns 1162413 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66115834ns 1162418 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66116118ns 1162423 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66116402ns 1162428 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66116857ns 1162436 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66117027ns 1162439 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66117312ns 1162444 1a110850 fd5ff06f jal x0, -44 +66117596ns 1162449 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66117880ns 1162454 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66118278ns 1162461 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66118448ns 1162464 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66118903ns 1162472 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66119073ns 1162475 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66119357ns 1162480 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66119642ns 1162485 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66119926ns 1162490 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66120380ns 1162498 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66120551ns 1162501 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66120835ns 1162506 1a110850 fd5ff06f jal x0, -44 +66121119ns 1162511 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66121403ns 1162516 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66121801ns 1162523 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66121972ns 1162526 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66122426ns 1162534 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66122597ns 1162537 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66122881ns 1162542 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66123165ns 1162547 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66123449ns 1162552 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66123904ns 1162560 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66124075ns 1162563 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66124359ns 1162568 1a110850 fd5ff06f jal x0, -44 +66124643ns 1162573 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66124927ns 1162578 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66125325ns 1162585 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66125495ns 1162588 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66125950ns 1162596 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66126120ns 1162599 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66126405ns 1162604 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66126689ns 1162609 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66126973ns 1162614 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66127428ns 1162622 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66127598ns 1162625 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66127882ns 1162630 1a110850 fd5ff06f jal x0, -44 +66128166ns 1162635 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66128451ns 1162640 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66128848ns 1162647 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66129019ns 1162650 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66129474ns 1162658 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66129644ns 1162661 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66129928ns 1162666 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66130212ns 1162671 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66130497ns 1162676 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66130951ns 1162684 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66131122ns 1162687 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66131406ns 1162692 1a110850 fd5ff06f jal x0, -44 +66131690ns 1162697 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66131974ns 1162702 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66132372ns 1162709 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66132543ns 1162712 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66132997ns 1162720 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66133168ns 1162723 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66133452ns 1162728 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66133736ns 1162733 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66134020ns 1162738 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66134475ns 1162746 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66134645ns 1162749 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66134929ns 1162754 1a110850 fd5ff06f jal x0, -44 +66135214ns 1162759 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66135498ns 1162764 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66135896ns 1162771 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66136066ns 1162774 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66136521ns 1162782 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66136691ns 1162785 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66136975ns 1162790 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66137260ns 1162795 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66137544ns 1162800 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66137998ns 1162808 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66138169ns 1162811 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66138453ns 1162816 1a110850 fd5ff06f jal x0, -44 +66138737ns 1162821 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66139021ns 1162826 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66139419ns 1162833 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66139590ns 1162836 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66140044ns 1162844 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66140215ns 1162847 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66140499ns 1162852 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66140783ns 1162857 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66141067ns 1162862 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66141522ns 1162870 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66141692ns 1162873 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66141977ns 1162878 1a110850 fd5ff06f jal x0, -44 +66142261ns 1162883 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66142545ns 1162888 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66142943ns 1162895 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66143113ns 1162898 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66143568ns 1162906 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66143738ns 1162909 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66144023ns 1162914 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66144307ns 1162919 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66144591ns 1162924 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66145046ns 1162932 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66145216ns 1162935 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66145500ns 1162940 1a110850 fd5ff06f jal x0, -44 +66145784ns 1162945 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66146069ns 1162950 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66146466ns 1162957 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66146637ns 1162960 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66147091ns 1162968 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66147262ns 1162971 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66147546ns 1162976 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66147830ns 1162981 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66148114ns 1162986 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66148569ns 1162994 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66148740ns 1162997 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66149024ns 1163002 1a110850 fd5ff06f jal x0, -44 +66149308ns 1163007 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66149592ns 1163012 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66149990ns 1163019 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66150160ns 1163022 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66150615ns 1163030 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66150786ns 1163033 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66151070ns 1163038 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66151354ns 1163043 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66151638ns 1163048 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66152093ns 1163056 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66152263ns 1163059 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66152547ns 1163064 1a110850 fd5ff06f jal x0, -44 +66152832ns 1163069 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66153116ns 1163074 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66153514ns 1163081 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66153684ns 1163084 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66154139ns 1163092 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66154309ns 1163095 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66154593ns 1163100 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66154877ns 1163105 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66155162ns 1163110 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66155616ns 1163118 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66155787ns 1163121 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66156071ns 1163126 1a110850 fd5ff06f jal x0, -44 +66156355ns 1163131 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66156639ns 1163136 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66157037ns 1163143 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66157208ns 1163146 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66157662ns 1163154 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66157833ns 1163157 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66158117ns 1163162 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66158401ns 1163167 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66158685ns 1163172 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66159140ns 1163180 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66159310ns 1163183 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66159595ns 1163188 1a110850 fd5ff06f jal x0, -44 +66159879ns 1163193 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66160163ns 1163198 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66160561ns 1163205 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66160731ns 1163208 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66161186ns 1163216 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66161356ns 1163219 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66161640ns 1163224 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66161925ns 1163229 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66162209ns 1163234 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66162663ns 1163242 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66162834ns 1163245 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66163118ns 1163250 1a110850 fd5ff06f jal x0, -44 +66163402ns 1163255 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66163686ns 1163260 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66164084ns 1163267 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66164255ns 1163270 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66164709ns 1163278 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66164880ns 1163281 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66165164ns 1163286 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66165448ns 1163291 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66165732ns 1163296 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66166187ns 1163304 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66166358ns 1163307 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66166642ns 1163312 1a110850 fd5ff06f jal x0, -44 +66166926ns 1163317 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66167210ns 1163322 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66167608ns 1163329 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66167778ns 1163332 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66168233ns 1163340 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66168403ns 1163343 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66168688ns 1163348 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66168972ns 1163353 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66169256ns 1163358 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66169711ns 1163366 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66169881ns 1163369 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66170165ns 1163374 1a110850 fd5ff06f jal x0, -44 +66170449ns 1163379 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66170734ns 1163384 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66171131ns 1163391 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66171302ns 1163394 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66171757ns 1163402 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66171927ns 1163405 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66172211ns 1163410 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66172495ns 1163415 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66172780ns 1163420 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66173234ns 1163428 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66173405ns 1163431 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66173689ns 1163436 1a110850 fd5ff06f jal x0, -44 +66173973ns 1163441 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66174257ns 1163446 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66174655ns 1163453 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66174826ns 1163456 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66175280ns 1163464 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66175451ns 1163467 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66175735ns 1163472 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66176019ns 1163477 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66176303ns 1163482 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66176758ns 1163490 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66176928ns 1163493 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66177212ns 1163498 1a110850 fd5ff06f jal x0, -44 +66177497ns 1163503 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66177781ns 1163508 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66178179ns 1163515 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66178349ns 1163518 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66178804ns 1163526 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66178974ns 1163529 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66179258ns 1163534 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66179543ns 1163539 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66179827ns 1163544 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66180281ns 1163552 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66180452ns 1163555 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66180736ns 1163560 1a110850 fd5ff06f jal x0, -44 +66181020ns 1163565 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66181304ns 1163570 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66181702ns 1163577 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66181873ns 1163580 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66182327ns 1163588 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66182498ns 1163591 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66182782ns 1163596 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66183066ns 1163601 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66183350ns 1163606 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66183805ns 1163614 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66183975ns 1163617 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66184260ns 1163622 1a110850 fd5ff06f jal x0, -44 +66184544ns 1163627 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66184828ns 1163632 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66185226ns 1163639 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66185396ns 1163642 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66185851ns 1163650 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66186021ns 1163653 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66186306ns 1163658 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66186590ns 1163663 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66186874ns 1163668 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66187329ns 1163676 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66187499ns 1163679 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66187783ns 1163684 1a110850 fd5ff06f jal x0, -44 +66188067ns 1163689 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66188352ns 1163694 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66188749ns 1163701 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66188920ns 1163704 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66189375ns 1163712 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66189545ns 1163715 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66189829ns 1163720 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66190113ns 1163725 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66190397ns 1163730 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66190852ns 1163738 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66191023ns 1163741 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66191307ns 1163746 1a110850 fd5ff06f jal x0, -44 +66191591ns 1163751 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66191875ns 1163756 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66192273ns 1163763 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66192443ns 1163766 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66192898ns 1163774 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66193069ns 1163777 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66193353ns 1163782 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66193637ns 1163787 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66193921ns 1163792 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66194376ns 1163800 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66194546ns 1163803 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66194830ns 1163808 1a110850 fd5ff06f jal x0, -44 +66195115ns 1163813 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66195399ns 1163818 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66195797ns 1163825 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66195967ns 1163828 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66196422ns 1163836 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66196592ns 1163839 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66196876ns 1163844 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66197160ns 1163849 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66197445ns 1163854 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66197899ns 1163862 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66198070ns 1163865 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66198354ns 1163870 1a110850 fd5ff06f jal x0, -44 +66198638ns 1163875 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66198922ns 1163880 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66199320ns 1163887 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66199491ns 1163890 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66199945ns 1163898 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66200116ns 1163901 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66200400ns 1163906 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66200684ns 1163911 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66200968ns 1163916 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66201423ns 1163924 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66201593ns 1163927 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66201878ns 1163932 1a110850 fd5ff06f jal x0, -44 +66202162ns 1163937 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66202446ns 1163942 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66202844ns 1163949 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66203014ns 1163952 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66203469ns 1163960 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66203639ns 1163963 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66203923ns 1163968 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66204208ns 1163973 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66204492ns 1163978 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66204946ns 1163986 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66205117ns 1163989 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66205401ns 1163994 1a110850 fd5ff06f jal x0, -44 +66205685ns 1163999 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66205969ns 1164004 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66206367ns 1164011 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66206538ns 1164014 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66206992ns 1164022 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66207163ns 1164025 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66207447ns 1164030 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66207731ns 1164035 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66208015ns 1164040 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66208470ns 1164048 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66208641ns 1164051 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66208925ns 1164056 1a110850 fd5ff06f jal x0, -44 +66209209ns 1164061 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66209493ns 1164066 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66209891ns 1164073 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66210061ns 1164076 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66210516ns 1164084 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66210687ns 1164087 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66210971ns 1164092 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66211255ns 1164097 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66211539ns 1164102 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66211994ns 1164110 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66212164ns 1164113 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66212448ns 1164118 1a110850 fd5ff06f jal x0, -44 +66212732ns 1164123 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66213017ns 1164128 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66213414ns 1164135 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66213585ns 1164138 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66214040ns 1164146 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66214210ns 1164149 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66214494ns 1164154 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66214778ns 1164159 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66215063ns 1164164 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66215517ns 1164172 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66215688ns 1164175 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66215972ns 1164180 1a110850 fd5ff06f jal x0, -44 +66216256ns 1164185 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66216540ns 1164190 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66216938ns 1164197 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66217109ns 1164200 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66217563ns 1164208 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66217734ns 1164211 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66218018ns 1164216 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66218302ns 1164221 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66218586ns 1164226 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66219041ns 1164234 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66219211ns 1164237 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66219495ns 1164242 1a110850 fd5ff06f jal x0, -44 +66219780ns 1164247 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66220064ns 1164252 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66220462ns 1164259 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66220632ns 1164262 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66221087ns 1164270 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66221257ns 1164273 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66221541ns 1164278 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66221826ns 1164283 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66222110ns 1164288 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66222564ns 1164296 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66222735ns 1164299 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66223019ns 1164304 1a110850 fd5ff06f jal x0, -44 +66223303ns 1164309 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66223587ns 1164314 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66223985ns 1164321 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66224156ns 1164324 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66224610ns 1164332 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66224781ns 1164335 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66225065ns 1164340 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66225349ns 1164345 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66225633ns 1164350 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66226088ns 1164358 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66226258ns 1164361 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66226543ns 1164366 1a110850 fd5ff06f jal x0, -44 +66226827ns 1164371 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66227111ns 1164376 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66227509ns 1164383 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66227679ns 1164386 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66228134ns 1164394 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66228304ns 1164397 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66228589ns 1164402 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66228873ns 1164407 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66229157ns 1164412 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66229612ns 1164420 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66229782ns 1164423 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66230066ns 1164428 1a110850 fd5ff06f jal x0, -44 +66230350ns 1164433 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66230635ns 1164438 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66231032ns 1164445 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66231203ns 1164448 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66231658ns 1164456 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66231828ns 1164459 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66232112ns 1164464 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66232396ns 1164469 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66232680ns 1164474 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66233135ns 1164482 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66233306ns 1164485 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66233590ns 1164490 1a110850 fd5ff06f jal x0, -44 +66233874ns 1164495 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66234158ns 1164500 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66234556ns 1164507 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66234726ns 1164510 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66235181ns 1164518 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66235352ns 1164521 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66235636ns 1164526 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66235920ns 1164531 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66236204ns 1164536 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66236659ns 1164544 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66236829ns 1164547 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66237113ns 1164552 1a110850 fd5ff06f jal x0, -44 +66237398ns 1164557 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66237682ns 1164562 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66238080ns 1164569 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66238250ns 1164572 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66238705ns 1164580 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66238875ns 1164583 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66239159ns 1164588 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66239443ns 1164593 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66239728ns 1164598 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66240182ns 1164606 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66240353ns 1164609 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66240637ns 1164614 1a110850 fd5ff06f jal x0, -44 +66240921ns 1164619 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66241205ns 1164624 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66241603ns 1164631 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66241774ns 1164634 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66242228ns 1164642 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66242399ns 1164645 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66242683ns 1164650 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66242967ns 1164655 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66243251ns 1164660 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66243706ns 1164668 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66243876ns 1164671 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66244161ns 1164676 1a110850 fd5ff06f jal x0, -44 +66244445ns 1164681 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66244729ns 1164686 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66245127ns 1164693 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66245297ns 1164696 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66245752ns 1164704 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66245922ns 1164707 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66246207ns 1164712 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66246491ns 1164717 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66246775ns 1164722 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66247229ns 1164730 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66247400ns 1164733 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66247684ns 1164738 1a110850 fd5ff06f jal x0, -44 +66247968ns 1164743 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66248252ns 1164748 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66248650ns 1164755 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66248821ns 1164758 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66249275ns 1164766 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66249446ns 1164769 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66249730ns 1164774 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66250014ns 1164779 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66250298ns 1164784 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66250753ns 1164792 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66250924ns 1164795 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66251208ns 1164800 1a110850 fd5ff06f jal x0, -44 +66251492ns 1164805 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66251776ns 1164810 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66252174ns 1164817 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66252344ns 1164820 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66252799ns 1164828 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66252970ns 1164831 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66253254ns 1164836 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66253538ns 1164841 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66253822ns 1164846 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66254277ns 1164854 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66254447ns 1164857 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66254731ns 1164862 1a110850 fd5ff06f jal x0, -44 +66255015ns 1164867 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66255300ns 1164872 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66255697ns 1164879 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66255868ns 1164882 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66256323ns 1164890 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66256493ns 1164893 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66256777ns 1164898 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66257061ns 1164903 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66257346ns 1164908 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66257800ns 1164916 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66257971ns 1164919 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66258255ns 1164924 1a110850 fd5ff06f jal x0, -44 +66258539ns 1164929 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66258823ns 1164934 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66259221ns 1164941 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66259392ns 1164944 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66259846ns 1164952 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66260017ns 1164955 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66260301ns 1164960 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66260585ns 1164965 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66260869ns 1164970 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66261324ns 1164978 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66261494ns 1164981 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66261778ns 1164986 1a110850 fd5ff06f jal x0, -44 +66262063ns 1164991 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66262347ns 1164996 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66262745ns 1165003 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66262915ns 1165006 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66263370ns 1165014 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66263540ns 1165017 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66263824ns 1165022 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66264109ns 1165027 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66264393ns 1165032 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66264847ns 1165040 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66265018ns 1165043 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66265302ns 1165048 1a110850 fd5ff06f jal x0, -44 +66265586ns 1165053 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66265870ns 1165058 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66266268ns 1165065 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66266439ns 1165068 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66266893ns 1165076 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66267064ns 1165079 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66267348ns 1165084 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66267632ns 1165089 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66267916ns 1165094 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66268371ns 1165102 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66268541ns 1165105 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66268826ns 1165110 1a110850 fd5ff06f jal x0, -44 +66269110ns 1165115 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66269394ns 1165120 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66269792ns 1165127 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66269962ns 1165130 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66270417ns 1165138 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66270587ns 1165141 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66270872ns 1165146 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66271156ns 1165151 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66271440ns 1165156 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66271895ns 1165164 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66272065ns 1165167 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66272349ns 1165172 1a110850 fd5ff06f jal x0, -44 +66272633ns 1165177 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66272918ns 1165182 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66273315ns 1165189 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66273486ns 1165192 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66273941ns 1165200 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66274111ns 1165203 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66274395ns 1165208 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66274679ns 1165213 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66274963ns 1165218 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66275418ns 1165226 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66275589ns 1165229 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66275873ns 1165234 1a110850 fd5ff06f jal x0, -44 +66276157ns 1165239 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66276441ns 1165244 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66276839ns 1165251 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66277009ns 1165254 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66277464ns 1165262 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66277635ns 1165265 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66277919ns 1165270 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66278203ns 1165275 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66278487ns 1165280 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66278942ns 1165288 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66279112ns 1165291 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66279396ns 1165296 1a110850 fd5ff06f jal x0, -44 +66279681ns 1165301 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66279965ns 1165306 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66280363ns 1165313 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66280533ns 1165316 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66280988ns 1165324 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66281158ns 1165327 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66281442ns 1165332 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66281727ns 1165337 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66282011ns 1165342 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66282465ns 1165350 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66282636ns 1165353 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66282920ns 1165358 1a110850 fd5ff06f jal x0, -44 +66283204ns 1165363 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66283488ns 1165368 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66283886ns 1165375 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66284057ns 1165378 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66284511ns 1165386 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66284682ns 1165389 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66284966ns 1165394 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66285250ns 1165399 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66285534ns 1165404 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66285989ns 1165412 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66286159ns 1165415 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66286444ns 1165420 1a110850 fd5ff06f jal x0, -44 +66286728ns 1165425 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66287012ns 1165430 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66287410ns 1165437 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66287580ns 1165440 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66288035ns 1165448 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66288205ns 1165451 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66288490ns 1165456 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66288774ns 1165461 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66289058ns 1165466 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66289512ns 1165474 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66289683ns 1165477 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66289967ns 1165482 1a110850 fd5ff06f jal x0, -44 +66290251ns 1165487 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66290535ns 1165492 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66290933ns 1165499 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66291104ns 1165502 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66291558ns 1165510 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66291729ns 1165513 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66292013ns 1165518 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66292297ns 1165523 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66292581ns 1165528 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66293036ns 1165536 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66293207ns 1165539 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66293491ns 1165544 1a110850 fd5ff06f jal x0, -44 +66293775ns 1165549 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66294059ns 1165554 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66294457ns 1165561 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66294627ns 1165564 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66295082ns 1165572 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66295253ns 1165575 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66295537ns 1165580 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66295821ns 1165585 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66296105ns 1165590 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66296560ns 1165598 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66296730ns 1165601 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66297014ns 1165606 1a110850 fd5ff06f jal x0, -44 +66297298ns 1165611 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66297583ns 1165616 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66297980ns 1165623 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66298151ns 1165626 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66298606ns 1165634 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66298776ns 1165637 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66299060ns 1165642 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66299344ns 1165647 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66299629ns 1165652 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66300083ns 1165660 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66300254ns 1165663 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66300538ns 1165668 1a110850 fd5ff06f jal x0, -44 +66300822ns 1165673 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66301106ns 1165678 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66301504ns 1165685 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66301675ns 1165688 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66302129ns 1165696 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66302300ns 1165699 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66302584ns 1165704 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66302868ns 1165709 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66303152ns 1165714 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66303607ns 1165722 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66303777ns 1165725 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66304061ns 1165730 1a110850 fd5ff06f jal x0, -44 +66304346ns 1165735 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66304630ns 1165740 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66305028ns 1165747 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66305198ns 1165750 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66305653ns 1165758 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66305823ns 1165761 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66306107ns 1165766 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66306392ns 1165771 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66306676ns 1165776 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66307130ns 1165784 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66307301ns 1165787 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66307585ns 1165792 1a110850 fd5ff06f jal x0, -44 +66307869ns 1165797 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66308153ns 1165802 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66308551ns 1165809 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66308722ns 1165812 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66309176ns 1165820 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66309347ns 1165823 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66309631ns 1165828 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66309915ns 1165833 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66310199ns 1165838 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66310654ns 1165846 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66310824ns 1165849 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66311109ns 1165854 1a110850 fd5ff06f jal x0, -44 +66311393ns 1165859 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66311677ns 1165864 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66312075ns 1165871 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66312245ns 1165874 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66312700ns 1165882 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66312870ns 1165885 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66313155ns 1165890 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66313439ns 1165895 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66313723ns 1165900 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66314178ns 1165908 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66314348ns 1165911 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66314632ns 1165916 1a110850 fd5ff06f jal x0, -44 +66314916ns 1165921 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66315201ns 1165926 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66315598ns 1165933 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66315769ns 1165936 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66316224ns 1165944 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66316394ns 1165947 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66316678ns 1165952 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66316962ns 1165957 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66317247ns 1165962 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66317701ns 1165970 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66317872ns 1165973 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66318156ns 1165978 1a110850 fd5ff06f jal x0, -44 +66318440ns 1165983 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66318724ns 1165988 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66319122ns 1165995 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66319292ns 1165998 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66319747ns 1166006 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66319918ns 1166009 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66320202ns 1166014 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66320486ns 1166019 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66320770ns 1166024 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66321225ns 1166032 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66321395ns 1166035 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66321679ns 1166040 1a110850 fd5ff06f jal x0, -44 +66321964ns 1166045 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66322248ns 1166050 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66322646ns 1166057 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66322816ns 1166060 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66323271ns 1166068 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66323441ns 1166071 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66323725ns 1166076 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66324010ns 1166081 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66324294ns 1166086 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66324748ns 1166094 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66324919ns 1166097 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66325203ns 1166102 1a110850 fd5ff06f jal x0, -44 +66325487ns 1166107 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66325771ns 1166112 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66326169ns 1166119 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66326340ns 1166122 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66326794ns 1166130 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66326965ns 1166133 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66327249ns 1166138 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66327533ns 1166143 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66327817ns 1166148 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66328272ns 1166156 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66328442ns 1166159 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66328727ns 1166164 1a110850 fd5ff06f jal x0, -44 +66329011ns 1166169 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66329295ns 1166174 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66329693ns 1166181 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66329863ns 1166184 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66330318ns 1166192 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66330488ns 1166195 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66330773ns 1166200 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66331057ns 1166205 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66331341ns 1166210 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66331795ns 1166218 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66331966ns 1166221 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66332250ns 1166226 1a110850 fd5ff06f jal x0, -44 +66332534ns 1166231 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66332818ns 1166236 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66333216ns 1166243 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66333387ns 1166246 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66333841ns 1166254 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66334012ns 1166257 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66334296ns 1166262 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66334580ns 1166267 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66334864ns 1166272 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66335319ns 1166280 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66335490ns 1166283 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66335774ns 1166288 1a110850 fd5ff06f jal x0, -44 +66336058ns 1166293 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66336342ns 1166298 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66336740ns 1166305 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66336910ns 1166308 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66337365ns 1166316 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66337536ns 1166319 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66337820ns 1166324 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66338104ns 1166329 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66338388ns 1166334 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66338843ns 1166342 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66339013ns 1166345 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66339297ns 1166350 1a110850 fd5ff06f jal x0, -44 +66339581ns 1166355 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66339866ns 1166360 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66340263ns 1166367 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66340434ns 1166370 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66340889ns 1166378 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66341059ns 1166381 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66341343ns 1166386 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66341627ns 1166391 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66341912ns 1166396 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66342366ns 1166404 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66342537ns 1166407 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66342821ns 1166412 1a110850 fd5ff06f jal x0, -44 +66343105ns 1166417 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66343389ns 1166422 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66343787ns 1166429 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66343958ns 1166432 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66344412ns 1166440 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66344583ns 1166443 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66344867ns 1166448 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66345151ns 1166453 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66345435ns 1166458 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66345890ns 1166466 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66346060ns 1166469 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66346344ns 1166474 1a110850 fd5ff06f jal x0, -44 +66346629ns 1166479 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66346913ns 1166484 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66347311ns 1166491 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66347481ns 1166494 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66347936ns 1166502 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66348106ns 1166505 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66348390ns 1166510 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66348675ns 1166515 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66348959ns 1166520 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66349413ns 1166528 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66349584ns 1166531 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66349868ns 1166536 1a110850 fd5ff06f jal x0, -44 +66350152ns 1166541 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66350436ns 1166546 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66350834ns 1166553 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66351005ns 1166556 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66351459ns 1166564 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66351630ns 1166567 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66351914ns 1166572 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66352198ns 1166577 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66352482ns 1166582 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66352937ns 1166590 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66353107ns 1166593 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66353392ns 1166598 1a110850 fd5ff06f jal x0, -44 +66353676ns 1166603 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66353960ns 1166608 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66354358ns 1166615 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66354528ns 1166618 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66354983ns 1166626 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66355153ns 1166629 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66355438ns 1166634 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66355722ns 1166639 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66356006ns 1166644 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66356461ns 1166652 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66356631ns 1166655 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66356915ns 1166660 1a110850 fd5ff06f jal x0, -44 +66357199ns 1166665 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66357484ns 1166670 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66357881ns 1166677 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66358052ns 1166680 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66358507ns 1166688 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66358677ns 1166691 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66358961ns 1166696 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66359245ns 1166701 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66359530ns 1166706 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66359984ns 1166714 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66360155ns 1166717 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66360439ns 1166722 1a110850 fd5ff06f jal x0, -44 +66360723ns 1166727 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66361007ns 1166732 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66361405ns 1166739 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66361575ns 1166742 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66362030ns 1166750 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66362201ns 1166753 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66362485ns 1166758 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66362769ns 1166763 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66363053ns 1166768 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66363508ns 1166776 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66363678ns 1166779 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66363962ns 1166784 1a110850 fd5ff06f jal x0, -44 +66364247ns 1166789 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66364531ns 1166794 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66364929ns 1166801 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66365099ns 1166804 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66365554ns 1166812 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66365724ns 1166815 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66366008ns 1166820 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66366293ns 1166825 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66366577ns 1166830 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66367031ns 1166838 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66367202ns 1166841 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66367486ns 1166846 1a110850 fd5ff06f jal x0, -44 +66367770ns 1166851 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66368054ns 1166856 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66368452ns 1166863 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66368623ns 1166866 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66369077ns 1166874 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66369248ns 1166877 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66369532ns 1166882 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66369816ns 1166887 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66370100ns 1166892 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66370555ns 1166900 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66370725ns 1166903 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66371010ns 1166908 1a110850 fd5ff06f jal x0, -44 +66371294ns 1166913 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66371578ns 1166918 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66371976ns 1166925 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66372146ns 1166928 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66372601ns 1166936 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66372771ns 1166939 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66373056ns 1166944 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66373340ns 1166949 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66373624ns 1166954 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66374079ns 1166962 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66374249ns 1166965 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66374533ns 1166970 1a110850 fd5ff06f jal x0, -44 +66374817ns 1166975 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66375101ns 1166980 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66375499ns 1166987 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66375670ns 1166990 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66376124ns 1166998 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66376295ns 1167001 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66376579ns 1167006 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66376863ns 1167011 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66377147ns 1167016 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66377602ns 1167024 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66377773ns 1167027 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66378057ns 1167032 1a110850 fd5ff06f jal x0, -44 +66378341ns 1167037 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66378625ns 1167042 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66379023ns 1167049 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66379193ns 1167052 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66379648ns 1167060 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66379819ns 1167063 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66380103ns 1167068 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66380387ns 1167073 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66380671ns 1167078 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66381126ns 1167086 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66381296ns 1167089 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66381580ns 1167094 1a110850 fd5ff06f jal x0, -44 +66381864ns 1167099 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66382149ns 1167104 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66382546ns 1167111 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66382717ns 1167114 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66383172ns 1167122 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66383342ns 1167125 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66383626ns 1167130 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66383910ns 1167135 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66384195ns 1167140 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66384649ns 1167148 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66384820ns 1167151 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66385104ns 1167156 1a110850 fd5ff06f jal x0, -44 +66385388ns 1167161 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66385672ns 1167166 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66386070ns 1167173 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66386241ns 1167176 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66386695ns 1167184 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66386866ns 1167187 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66387150ns 1167192 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66387434ns 1167197 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66387718ns 1167202 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66388173ns 1167210 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66388343ns 1167213 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66388627ns 1167218 1a110850 fd5ff06f jal x0, -44 +66388912ns 1167223 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66389196ns 1167228 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66389594ns 1167235 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66389764ns 1167238 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66390219ns 1167246 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66390389ns 1167249 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66390673ns 1167254 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66390958ns 1167259 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66391242ns 1167264 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66391696ns 1167272 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66391867ns 1167275 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66392151ns 1167280 1a110850 fd5ff06f jal x0, -44 +66392435ns 1167285 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66392719ns 1167290 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66393117ns 1167297 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66393288ns 1167300 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66393742ns 1167308 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66393913ns 1167311 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66394197ns 1167316 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66394481ns 1167321 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66394765ns 1167326 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66395220ns 1167334 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66395391ns 1167337 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66395675ns 1167342 1a110850 fd5ff06f jal x0, -44 +66395959ns 1167347 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66396243ns 1167352 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66396641ns 1167359 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66396811ns 1167362 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66397266ns 1167370 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66397436ns 1167373 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66397721ns 1167378 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66398005ns 1167383 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66398289ns 1167388 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66398744ns 1167396 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66398914ns 1167399 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66399198ns 1167404 1a110850 fd5ff06f jal x0, -44 +66399482ns 1167409 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66399767ns 1167414 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66400164ns 1167421 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66400335ns 1167424 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66400790ns 1167432 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66400960ns 1167435 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66401244ns 1167440 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66401528ns 1167445 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66401813ns 1167450 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66402267ns 1167458 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66402438ns 1167461 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66402722ns 1167466 1a110850 fd5ff06f jal x0, -44 +66403006ns 1167471 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66403290ns 1167476 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66403688ns 1167483 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66403858ns 1167486 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66404313ns 1167494 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66404484ns 1167497 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66404768ns 1167502 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66405052ns 1167507 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66405336ns 1167512 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66405791ns 1167520 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66405961ns 1167523 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66406245ns 1167528 1a110850 fd5ff06f jal x0, -44 +66406530ns 1167533 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66406814ns 1167538 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66407212ns 1167545 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66407382ns 1167548 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66407837ns 1167556 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66408007ns 1167559 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66408291ns 1167564 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66408576ns 1167569 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66408860ns 1167574 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66409314ns 1167582 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66409485ns 1167585 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66409769ns 1167590 1a110850 fd5ff06f jal x0, -44 +66410053ns 1167595 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66410337ns 1167600 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66410735ns 1167607 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66410906ns 1167610 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66411360ns 1167618 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66411531ns 1167621 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66411815ns 1167626 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66412099ns 1167631 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66412383ns 1167636 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66412838ns 1167644 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66413008ns 1167647 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66413293ns 1167652 1a110850 fd5ff06f jal x0, -44 +66413577ns 1167657 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66413861ns 1167662 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66414259ns 1167669 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66414429ns 1167672 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66414884ns 1167680 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66415054ns 1167683 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66415339ns 1167688 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66415623ns 1167693 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66415907ns 1167698 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66416362ns 1167706 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66416532ns 1167709 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66416816ns 1167714 1a110850 fd5ff06f jal x0, -44 +66417100ns 1167719 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66417384ns 1167724 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66417782ns 1167731 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66417953ns 1167734 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66418407ns 1167742 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66418578ns 1167745 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66418862ns 1167750 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66419146ns 1167755 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66419430ns 1167760 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66419885ns 1167768 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66420056ns 1167771 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66420340ns 1167776 1a110850 fd5ff06f jal x0, -44 +66420624ns 1167781 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66420908ns 1167786 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66421306ns 1167793 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66421476ns 1167796 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66421931ns 1167804 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66422102ns 1167807 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66422386ns 1167812 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66422670ns 1167817 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66422954ns 1167822 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66423409ns 1167830 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66423579ns 1167833 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66423863ns 1167838 1a110850 fd5ff06f jal x0, -44 +66424147ns 1167843 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66424432ns 1167848 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66424829ns 1167855 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66425000ns 1167858 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66425455ns 1167866 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66425625ns 1167869 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66425909ns 1167874 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66426193ns 1167879 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66426478ns 1167884 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66426932ns 1167892 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66427103ns 1167895 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66427387ns 1167900 1a110850 fd5ff06f jal x0, -44 +66427671ns 1167905 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66427955ns 1167910 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66428353ns 1167917 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66428524ns 1167920 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66428978ns 1167928 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66429149ns 1167931 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66429433ns 1167936 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66429717ns 1167941 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66430001ns 1167946 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66430456ns 1167954 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66430626ns 1167957 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66430911ns 1167962 1a110850 fd5ff06f jal x0, -44 +66431195ns 1167967 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66431479ns 1167972 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66431877ns 1167979 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66432047ns 1167982 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66432502ns 1167990 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66432672ns 1167993 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66432956ns 1167998 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66433241ns 1168003 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66433525ns 1168008 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66433979ns 1168016 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66434150ns 1168019 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66434434ns 1168024 1a110850 fd5ff06f jal x0, -44 +66434718ns 1168029 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66435002ns 1168034 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66435400ns 1168041 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66435571ns 1168044 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66436025ns 1168052 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66436196ns 1168055 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66436480ns 1168060 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66436764ns 1168065 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66437048ns 1168070 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66437503ns 1168078 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66437674ns 1168081 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66437958ns 1168086 1a110850 fd5ff06f jal x0, -44 +66438242ns 1168091 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66438526ns 1168096 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66438924ns 1168103 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66439094ns 1168106 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66439549ns 1168114 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66439719ns 1168117 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66440004ns 1168122 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66440288ns 1168127 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66440572ns 1168132 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66441027ns 1168140 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66441197ns 1168143 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66441481ns 1168148 1a110850 fd5ff06f jal x0, -44 +66441765ns 1168153 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66442050ns 1168158 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66442447ns 1168165 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66442618ns 1168168 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66443073ns 1168176 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66443243ns 1168179 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66443527ns 1168184 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66443811ns 1168189 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66444096ns 1168194 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66444550ns 1168202 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66444721ns 1168205 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66445005ns 1168210 1a110850 fd5ff06f jal x0, -44 +66445289ns 1168215 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66445573ns 1168220 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66445971ns 1168227 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66446141ns 1168230 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66446596ns 1168238 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66446767ns 1168241 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66447051ns 1168246 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66447335ns 1168251 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66447619ns 1168256 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66448074ns 1168264 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66448244ns 1168267 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66448528ns 1168272 1a110850 fd5ff06f jal x0, -44 +66448813ns 1168277 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66449097ns 1168282 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66449495ns 1168289 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66449665ns 1168292 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66450120ns 1168300 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66450290ns 1168303 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66450574ns 1168308 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66450859ns 1168313 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66451143ns 1168318 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66451597ns 1168326 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66451768ns 1168329 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66452052ns 1168334 1a110850 fd5ff06f jal x0, -44 +66452336ns 1168339 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66452620ns 1168344 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66453018ns 1168351 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66453189ns 1168354 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66453643ns 1168362 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66453814ns 1168365 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66454098ns 1168370 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66454382ns 1168375 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66454666ns 1168380 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66455121ns 1168388 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66455291ns 1168391 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66455576ns 1168396 1a110850 fd5ff06f jal x0, -44 +66455860ns 1168401 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66456144ns 1168406 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66456542ns 1168413 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66456712ns 1168416 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66457167ns 1168424 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66457337ns 1168427 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66457622ns 1168432 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66457906ns 1168437 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66458190ns 1168442 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66458645ns 1168450 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66458815ns 1168453 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66459099ns 1168458 1a110850 fd5ff06f jal x0, -44 +66459383ns 1168463 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66459667ns 1168468 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66460065ns 1168475 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66460236ns 1168478 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66460690ns 1168486 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66460861ns 1168489 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66461145ns 1168494 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66461429ns 1168499 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66461713ns 1168504 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66462168ns 1168512 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66462339ns 1168515 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66462623ns 1168520 1a110850 fd5ff06f jal x0, -44 +66462907ns 1168525 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66463191ns 1168530 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66463589ns 1168537 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66463759ns 1168540 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66464214ns 1168548 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66464385ns 1168551 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66464669ns 1168556 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66464953ns 1168561 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66465237ns 1168566 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66465692ns 1168574 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66465862ns 1168577 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66466146ns 1168582 1a110850 fd5ff06f jal x0, -44 +66466431ns 1168587 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66466715ns 1168592 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66467112ns 1168599 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66467283ns 1168602 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66467738ns 1168610 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66467908ns 1168613 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66468192ns 1168618 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66468476ns 1168623 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66468761ns 1168628 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66469215ns 1168636 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66469386ns 1168639 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66469670ns 1168644 1a110850 fd5ff06f jal x0, -44 +66469954ns 1168649 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66470238ns 1168654 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66470636ns 1168661 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66470807ns 1168664 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66471261ns 1168672 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66471432ns 1168675 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66471716ns 1168680 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66472000ns 1168685 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66472284ns 1168690 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66472739ns 1168698 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66472909ns 1168701 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66473194ns 1168706 1a110850 fd5ff06f jal x0, -44 +66473478ns 1168711 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66473762ns 1168716 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66474160ns 1168723 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66474330ns 1168726 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66474785ns 1168734 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66474955ns 1168737 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66475239ns 1168742 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66475524ns 1168747 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66475808ns 1168752 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66476262ns 1168760 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66476433ns 1168763 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66476717ns 1168768 1a110850 fd5ff06f jal x0, -44 +66477001ns 1168773 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66477285ns 1168778 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66477683ns 1168785 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66477854ns 1168788 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66478308ns 1168796 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66478479ns 1168799 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66478763ns 1168804 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66479047ns 1168809 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66479331ns 1168814 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66479786ns 1168822 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66479957ns 1168825 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66480241ns 1168830 1a110850 fd5ff06f jal x0, -44 +66480525ns 1168835 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66480809ns 1168840 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66481207ns 1168847 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66481377ns 1168850 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66481832ns 1168858 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66482002ns 1168861 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66482287ns 1168866 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66482571ns 1168871 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66482855ns 1168876 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66483310ns 1168884 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66483480ns 1168887 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66483764ns 1168892 1a110850 fd5ff06f jal x0, -44 +66484048ns 1168897 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66484333ns 1168902 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66484730ns 1168909 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66484901ns 1168912 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66485356ns 1168920 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66485526ns 1168923 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66485810ns 1168928 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66486094ns 1168933 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66486379ns 1168938 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66486833ns 1168946 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66487004ns 1168949 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66487288ns 1168954 1a110850 fd5ff06f jal x0, -44 +66487572ns 1168959 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66487856ns 1168964 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66488254ns 1168971 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66488424ns 1168974 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66488879ns 1168982 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66489050ns 1168985 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66489334ns 1168990 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66489618ns 1168995 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66489902ns 1169000 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66490357ns 1169008 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66490527ns 1169011 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66490811ns 1169016 1a110850 fd5ff06f jal x0, -44 +66491096ns 1169021 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66491380ns 1169026 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66491778ns 1169033 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66491948ns 1169036 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66492403ns 1169044 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66492573ns 1169047 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66492857ns 1169052 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66493142ns 1169057 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66493426ns 1169062 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66493880ns 1169070 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66494051ns 1169073 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66494335ns 1169078 1a110850 fd5ff06f jal x0, -44 +66494619ns 1169083 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66494903ns 1169088 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66495301ns 1169095 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66495472ns 1169098 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66495926ns 1169106 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66496097ns 1169109 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66496381ns 1169114 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66496665ns 1169119 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66496949ns 1169124 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66497404ns 1169132 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66497574ns 1169135 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66497859ns 1169140 1a110850 fd5ff06f jal x0, -44 +66498143ns 1169145 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66498427ns 1169150 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66498825ns 1169157 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66498995ns 1169160 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66499450ns 1169168 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66499620ns 1169171 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66499905ns 1169176 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66500189ns 1169181 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66500473ns 1169186 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66500928ns 1169194 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66501098ns 1169197 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66501382ns 1169202 1a110850 fd5ff06f jal x0, -44 +66501666ns 1169207 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66501951ns 1169212 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66502348ns 1169219 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66502519ns 1169222 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66502973ns 1169230 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66503144ns 1169233 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66503428ns 1169238 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66503712ns 1169243 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66503996ns 1169248 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66504451ns 1169256 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66504622ns 1169259 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66504906ns 1169264 1a110850 fd5ff06f jal x0, -44 +66505190ns 1169269 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66505474ns 1169274 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66505872ns 1169281 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66506042ns 1169284 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66506497ns 1169292 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66506668ns 1169295 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66506952ns 1169300 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66507236ns 1169305 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66507520ns 1169310 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66507975ns 1169318 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66508145ns 1169321 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66508429ns 1169326 1a110850 fd5ff06f jal x0, -44 +66508714ns 1169331 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66508998ns 1169336 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66509395ns 1169343 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66509566ns 1169346 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66510021ns 1169354 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66510191ns 1169357 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66510475ns 1169362 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66510759ns 1169367 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66511044ns 1169372 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66511498ns 1169380 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66511669ns 1169383 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66511953ns 1169388 1a110850 fd5ff06f jal x0, -44 +66512237ns 1169393 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66512521ns 1169398 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66512919ns 1169405 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66513090ns 1169408 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66513544ns 1169416 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66513715ns 1169419 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66513999ns 1169424 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66514283ns 1169429 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66514567ns 1169434 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66515022ns 1169442 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66515192ns 1169445 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66515477ns 1169450 1a110850 fd5ff06f jal x0, -44 +66515761ns 1169455 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66516045ns 1169460 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66516443ns 1169467 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66516613ns 1169470 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66517068ns 1169478 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66517238ns 1169481 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66517522ns 1169486 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66517807ns 1169491 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66518091ns 1169496 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66518545ns 1169504 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66518716ns 1169507 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66519000ns 1169512 1a110850 fd5ff06f jal x0, -44 +66519284ns 1169517 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66519568ns 1169522 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66519966ns 1169529 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66520137ns 1169532 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66520591ns 1169540 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66520762ns 1169543 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66521046ns 1169548 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66521330ns 1169553 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66521614ns 1169558 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66522069ns 1169566 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66522240ns 1169569 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66522524ns 1169574 1a110850 fd5ff06f jal x0, -44 +66522808ns 1169579 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66523092ns 1169584 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66523490ns 1169591 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66523660ns 1169594 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66524115ns 1169602 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66524285ns 1169605 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66524570ns 1169610 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66524854ns 1169615 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66525138ns 1169620 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66525593ns 1169628 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66525763ns 1169631 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66526047ns 1169636 1a110850 fd5ff06f jal x0, -44 +66526331ns 1169641 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66526616ns 1169646 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66527013ns 1169653 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66527184ns 1169656 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66527639ns 1169664 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66527809ns 1169667 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66528093ns 1169672 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66528377ns 1169677 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66528662ns 1169682 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66529116ns 1169690 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66529287ns 1169693 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66529571ns 1169698 1a110850 fd5ff06f jal x0, -44 +66529855ns 1169703 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66530139ns 1169708 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66530537ns 1169715 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66530707ns 1169718 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66531162ns 1169726 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66531333ns 1169729 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66531617ns 1169734 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66531901ns 1169739 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66532185ns 1169744 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66532640ns 1169752 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66532810ns 1169755 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66533094ns 1169760 1a110850 fd5ff06f jal x0, -44 +66533379ns 1169765 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66533663ns 1169770 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66534061ns 1169777 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66534231ns 1169780 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66534686ns 1169788 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66534856ns 1169791 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66535140ns 1169796 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66535425ns 1169801 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66535709ns 1169806 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66536163ns 1169814 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66536334ns 1169817 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66536618ns 1169822 1a110850 fd5ff06f jal x0, -44 +66536902ns 1169827 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66537186ns 1169832 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66537584ns 1169839 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66537755ns 1169842 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66538209ns 1169850 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66538380ns 1169853 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66538664ns 1169858 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66538948ns 1169863 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66539232ns 1169868 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66539687ns 1169876 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66539857ns 1169879 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66540142ns 1169884 1a110850 fd5ff06f jal x0, -44 +66540426ns 1169889 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66540710ns 1169894 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66541108ns 1169901 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66541278ns 1169904 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66541733ns 1169912 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66541903ns 1169915 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66542188ns 1169920 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66542472ns 1169925 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66542756ns 1169930 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66543211ns 1169938 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66543381ns 1169941 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66543665ns 1169946 1a110850 fd5ff06f jal x0, -44 +66543949ns 1169951 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66544234ns 1169956 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66544631ns 1169963 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66544802ns 1169966 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66545256ns 1169974 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66545427ns 1169977 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66545711ns 1169982 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66545995ns 1169987 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66546279ns 1169992 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66546734ns 1170000 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66546905ns 1170003 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66547189ns 1170008 1a110850 fd5ff06f jal x0, -44 +66547473ns 1170013 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66547757ns 1170018 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66548155ns 1170025 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66548325ns 1170028 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66548780ns 1170036 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66548951ns 1170039 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66549235ns 1170044 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66549519ns 1170049 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66549803ns 1170054 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66550258ns 1170062 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66550428ns 1170065 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66550712ns 1170070 1a110850 fd5ff06f jal x0, -44 +66550997ns 1170075 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66551281ns 1170080 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66551679ns 1170087 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66551849ns 1170090 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66552304ns 1170098 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66552474ns 1170101 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66552758ns 1170106 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66553042ns 1170111 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66553327ns 1170116 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66553781ns 1170124 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66553952ns 1170127 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66554236ns 1170132 1a110850 fd5ff06f jal x0, -44 +66554520ns 1170137 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66554804ns 1170142 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66555202ns 1170149 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66555373ns 1170152 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66555827ns 1170160 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66555998ns 1170163 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66556282ns 1170168 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66556566ns 1170173 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66556850ns 1170178 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66557305ns 1170186 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66557475ns 1170189 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66557760ns 1170194 1a110850 fd5ff06f jal x0, -44 +66558044ns 1170199 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66558328ns 1170204 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66558726ns 1170211 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66558896ns 1170214 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66559351ns 1170222 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66559521ns 1170225 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66559805ns 1170230 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66560090ns 1170235 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66560374ns 1170240 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66560828ns 1170248 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66560999ns 1170251 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66561283ns 1170256 1a110850 fd5ff06f jal x0, -44 +66561567ns 1170261 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66561851ns 1170266 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66562249ns 1170273 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66562420ns 1170276 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66562874ns 1170284 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66563045ns 1170287 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66563329ns 1170292 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66563613ns 1170297 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66563897ns 1170302 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66564352ns 1170310 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66564523ns 1170313 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66564807ns 1170318 1a110850 fd5ff06f jal x0, -44 +66565091ns 1170323 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66565375ns 1170328 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66565773ns 1170335 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66565943ns 1170338 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66566398ns 1170346 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66566568ns 1170349 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66566853ns 1170354 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66567137ns 1170359 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66567421ns 1170364 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66567876ns 1170372 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66568046ns 1170375 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66568330ns 1170380 1a110850 fd5ff06f jal x0, -44 +66568614ns 1170385 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66568899ns 1170390 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66569296ns 1170397 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66569467ns 1170400 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66569922ns 1170408 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66570092ns 1170411 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66570376ns 1170416 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66570660ns 1170421 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66570945ns 1170426 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66571399ns 1170434 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66571570ns 1170437 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66571854ns 1170442 1a110850 fd5ff06f jal x0, -44 +66572138ns 1170447 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66572422ns 1170452 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66572820ns 1170459 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66572991ns 1170462 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66573445ns 1170470 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66573616ns 1170473 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66573900ns 1170478 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66574184ns 1170483 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66574468ns 1170488 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66574923ns 1170496 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66575093ns 1170499 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66575377ns 1170504 1a110850 fd5ff06f jal x0, -44 +66575662ns 1170509 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66575946ns 1170514 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66576344ns 1170521 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66576514ns 1170524 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66576969ns 1170532 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66577139ns 1170535 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66577423ns 1170540 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66577708ns 1170545 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66577992ns 1170550 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66578446ns 1170558 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66578617ns 1170561 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66578901ns 1170566 1a110850 fd5ff06f jal x0, -44 +66579185ns 1170571 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66579469ns 1170576 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66579867ns 1170583 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66580038ns 1170586 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66580492ns 1170594 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66580663ns 1170597 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66580947ns 1170602 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66581231ns 1170607 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66581515ns 1170612 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66581970ns 1170620 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66582140ns 1170623 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66582425ns 1170628 1a110850 fd5ff06f jal x0, -44 +66582709ns 1170633 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66582993ns 1170638 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66583391ns 1170645 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66583561ns 1170648 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66584016ns 1170656 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66584186ns 1170659 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66584471ns 1170664 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66584755ns 1170669 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66585039ns 1170674 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66585494ns 1170682 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66585664ns 1170685 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66585948ns 1170690 1a110850 fd5ff06f jal x0, -44 +66586232ns 1170695 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66586517ns 1170700 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66586914ns 1170707 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66587085ns 1170710 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66587539ns 1170718 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66587710ns 1170721 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66587994ns 1170726 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66588278ns 1170731 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66588562ns 1170736 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66589017ns 1170744 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66589188ns 1170747 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66589472ns 1170752 1a110850 fd5ff06f jal x0, -44 +66589756ns 1170757 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66590040ns 1170762 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66590438ns 1170769 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66590608ns 1170772 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66591063ns 1170780 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66591234ns 1170783 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66591518ns 1170788 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66591802ns 1170793 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66592086ns 1170798 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66592541ns 1170806 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66592711ns 1170809 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66592995ns 1170814 1a110850 fd5ff06f jal x0, -44 +66593280ns 1170819 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66593564ns 1170824 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66593962ns 1170831 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66594132ns 1170834 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66594587ns 1170842 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66594757ns 1170845 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66595041ns 1170850 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66595325ns 1170855 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66595610ns 1170860 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66596064ns 1170868 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66596235ns 1170871 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66596519ns 1170876 1a110850 fd5ff06f jal x0, -44 +66596803ns 1170881 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66597087ns 1170886 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66597485ns 1170893 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66597656ns 1170896 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66598110ns 1170904 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66598281ns 1170907 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66598565ns 1170912 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66598849ns 1170917 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66599133ns 1170922 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66599588ns 1170930 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66599758ns 1170933 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66600043ns 1170938 1a110850 fd5ff06f jal x0, -44 +66600327ns 1170943 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66600611ns 1170948 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66601009ns 1170955 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66601179ns 1170958 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66601634ns 1170966 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66601804ns 1170969 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66602088ns 1170974 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66602373ns 1170979 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66602657ns 1170984 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66603111ns 1170992 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66603282ns 1170995 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66603566ns 1171000 1a110850 fd5ff06f jal x0, -44 +66603850ns 1171005 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66604134ns 1171010 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66604532ns 1171017 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66604703ns 1171020 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66605157ns 1171028 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66605328ns 1171031 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66605612ns 1171036 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66605896ns 1171041 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66606180ns 1171046 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66606635ns 1171054 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66606806ns 1171057 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66607090ns 1171062 1a110850 fd5ff06f jal x0, -44 +66607374ns 1171067 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66607658ns 1171072 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66608056ns 1171079 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66608226ns 1171082 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66608681ns 1171090 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66608851ns 1171093 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66609136ns 1171098 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66609420ns 1171103 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66609704ns 1171108 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66610159ns 1171116 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66610329ns 1171119 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66610613ns 1171124 1a110850 fd5ff06f jal x0, -44 +66610897ns 1171129 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66611182ns 1171134 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66611579ns 1171141 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66611750ns 1171144 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66612205ns 1171152 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66612375ns 1171155 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66612659ns 1171160 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66612943ns 1171165 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66613228ns 1171170 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66613682ns 1171178 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66613853ns 1171181 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66614137ns 1171186 1a110850 fd5ff06f jal x0, -44 +66614421ns 1171191 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66614705ns 1171196 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66615103ns 1171203 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66615274ns 1171206 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66615728ns 1171214 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66615899ns 1171217 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66616183ns 1171222 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66616467ns 1171227 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66616751ns 1171232 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66617206ns 1171240 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66617376ns 1171243 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66617660ns 1171248 1a110850 fd5ff06f jal x0, -44 +66617945ns 1171253 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66618229ns 1171258 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66618627ns 1171265 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66618797ns 1171268 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66619252ns 1171276 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66619422ns 1171279 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66619706ns 1171284 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66619991ns 1171289 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66620275ns 1171294 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66620729ns 1171302 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66620900ns 1171305 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66621184ns 1171310 1a110850 fd5ff06f jal x0, -44 +66621468ns 1171315 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66621752ns 1171320 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66622150ns 1171327 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66622321ns 1171330 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66622775ns 1171338 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66622946ns 1171341 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66623230ns 1171346 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66623514ns 1171351 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66623798ns 1171356 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66624253ns 1171364 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66624423ns 1171367 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66624708ns 1171372 1a110850 fd5ff06f jal x0, -44 +66624992ns 1171377 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66625276ns 1171382 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66625674ns 1171389 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66625844ns 1171392 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66626299ns 1171400 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66626469ns 1171403 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66626754ns 1171408 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66627038ns 1171413 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66627322ns 1171418 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66627777ns 1171426 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66627947ns 1171429 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66628231ns 1171434 1a110850 fd5ff06f jal x0, -44 +66628515ns 1171439 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66628800ns 1171444 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66629197ns 1171451 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66629368ns 1171454 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66629823ns 1171462 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66629993ns 1171465 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66630277ns 1171470 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66630561ns 1171475 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66630845ns 1171480 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66631300ns 1171488 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66631471ns 1171491 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66631755ns 1171496 1a110850 fd5ff06f jal x0, -44 +66632039ns 1171501 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66632323ns 1171506 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66632721ns 1171513 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66632891ns 1171516 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66633346ns 1171524 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66633517ns 1171527 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66633801ns 1171532 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66634085ns 1171537 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66634369ns 1171542 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66634824ns 1171550 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66634994ns 1171553 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66635278ns 1171558 1a110850 fd5ff06f jal x0, -44 +66635563ns 1171563 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66635847ns 1171568 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66636245ns 1171575 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66636415ns 1171578 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66636870ns 1171586 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66637040ns 1171589 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66637324ns 1171594 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66637608ns 1171599 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66637893ns 1171604 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66638347ns 1171612 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66638518ns 1171615 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66638802ns 1171620 1a110850 fd5ff06f jal x0, -44 +66639086ns 1171625 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66639370ns 1171630 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66639768ns 1171637 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66639939ns 1171640 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66640393ns 1171648 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66640564ns 1171651 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66640848ns 1171656 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66641132ns 1171661 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66641416ns 1171666 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66641871ns 1171674 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66642041ns 1171677 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66642326ns 1171682 1a110850 fd5ff06f jal x0, -44 +66642610ns 1171687 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66642894ns 1171692 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66643292ns 1171699 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66643462ns 1171702 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66643917ns 1171710 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66644087ns 1171713 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66644371ns 1171718 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66644656ns 1171723 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66644940ns 1171728 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66645394ns 1171736 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66645565ns 1171739 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66645849ns 1171744 1a110850 fd5ff06f jal x0, -44 +66646133ns 1171749 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66646417ns 1171754 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66646815ns 1171761 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66646986ns 1171764 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66647440ns 1171772 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66647611ns 1171775 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66647895ns 1171780 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66648179ns 1171785 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66648463ns 1171790 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66648918ns 1171798 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66649089ns 1171801 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66649373ns 1171806 1a110850 fd5ff06f jal x0, -44 +66649657ns 1171811 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66649941ns 1171816 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66650339ns 1171823 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66650509ns 1171826 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66650964ns 1171834 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66651135ns 1171837 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66651419ns 1171842 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66651703ns 1171847 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66651987ns 1171852 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66652442ns 1171860 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66652612ns 1171863 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66652896ns 1171868 1a110850 fd5ff06f jal x0, -44 +66653180ns 1171873 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66653465ns 1171878 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66653862ns 1171885 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66654033ns 1171888 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66654488ns 1171896 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66654658ns 1171899 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66654942ns 1171904 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66655226ns 1171909 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66655511ns 1171914 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66655965ns 1171922 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66656136ns 1171925 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66656420ns 1171930 1a110850 fd5ff06f jal x0, -44 +66656704ns 1171935 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66656988ns 1171940 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66657386ns 1171947 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66657557ns 1171950 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66658011ns 1171958 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66658182ns 1171961 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66658466ns 1171966 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66658750ns 1171971 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66659034ns 1171976 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66659489ns 1171984 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66659659ns 1171987 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66659943ns 1171992 1a110850 fd5ff06f jal x0, -44 +66660228ns 1171997 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66660512ns 1172002 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66660910ns 1172009 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66661080ns 1172012 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66661535ns 1172020 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66661705ns 1172023 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66661989ns 1172028 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66662274ns 1172033 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66662558ns 1172038 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66663012ns 1172046 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66663183ns 1172049 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66663467ns 1172054 1a110850 fd5ff06f jal x0, -44 +66663751ns 1172059 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66664035ns 1172064 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66664433ns 1172071 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66664604ns 1172074 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66665058ns 1172082 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66665229ns 1172085 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66665513ns 1172090 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66665797ns 1172095 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66666081ns 1172100 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66666536ns 1172108 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66666706ns 1172111 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66666991ns 1172116 1a110850 fd5ff06f jal x0, -44 +66667275ns 1172121 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66667559ns 1172126 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66667957ns 1172133 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66668127ns 1172136 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66668582ns 1172144 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66668752ns 1172147 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66669037ns 1172152 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66669321ns 1172157 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66669605ns 1172162 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66670060ns 1172170 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66670230ns 1172173 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66670514ns 1172178 1a110850 fd5ff06f jal x0, -44 +66670798ns 1172183 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66671083ns 1172188 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66671480ns 1172195 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66671651ns 1172198 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66672106ns 1172206 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66672276ns 1172209 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66672560ns 1172214 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66672844ns 1172219 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66673128ns 1172224 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66673583ns 1172232 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66673754ns 1172235 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66674038ns 1172240 1a110850 fd5ff06f jal x0, -44 +66674322ns 1172245 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66674606ns 1172250 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66675004ns 1172257 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66675174ns 1172260 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66675629ns 1172268 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66675800ns 1172271 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66676084ns 1172276 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66676368ns 1172281 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66676652ns 1172286 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66677107ns 1172294 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66677277ns 1172297 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66677561ns 1172302 1a110850 fd5ff06f jal x0, -44 +66677846ns 1172307 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66678130ns 1172312 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66678528ns 1172319 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66678698ns 1172322 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66679153ns 1172330 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66679323ns 1172333 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66679607ns 1172338 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66679891ns 1172343 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66680176ns 1172348 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66680630ns 1172356 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66680801ns 1172359 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66681085ns 1172364 1a110850 fd5ff06f jal x0, -44 +66681369ns 1172369 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66681653ns 1172374 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66682051ns 1172381 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66682222ns 1172384 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66682676ns 1172392 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66682847ns 1172395 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66683131ns 1172400 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66683415ns 1172405 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66683699ns 1172410 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66684154ns 1172418 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66684324ns 1172421 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66684609ns 1172426 1a110850 fd5ff06f jal x0, -44 +66684893ns 1172431 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66685177ns 1172436 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66685575ns 1172443 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66685745ns 1172446 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66686200ns 1172454 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66686370ns 1172457 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66686655ns 1172462 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66686939ns 1172467 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66687223ns 1172472 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66687677ns 1172480 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66687848ns 1172483 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66688132ns 1172488 1a110850 fd5ff06f jal x0, -44 +66688416ns 1172493 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66688700ns 1172498 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66689098ns 1172505 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66689269ns 1172508 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66689723ns 1172516 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66689894ns 1172519 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66690178ns 1172524 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66690462ns 1172529 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66690746ns 1172534 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66691201ns 1172542 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66691372ns 1172545 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66691656ns 1172550 1a110850 fd5ff06f jal x0, -44 +66691940ns 1172555 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66692224ns 1172560 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66692622ns 1172567 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66692792ns 1172570 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66693247ns 1172578 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66693418ns 1172581 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66693702ns 1172586 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66693986ns 1172591 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66694270ns 1172596 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66694725ns 1172604 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66694895ns 1172607 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66695179ns 1172612 1a110850 fd5ff06f jal x0, -44 +66695463ns 1172617 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66695748ns 1172622 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66696145ns 1172629 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66696316ns 1172632 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66696771ns 1172640 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66696941ns 1172643 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66697225ns 1172648 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66697509ns 1172653 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66697794ns 1172658 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66698248ns 1172666 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66698419ns 1172669 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66698703ns 1172674 1a110850 fd5ff06f jal x0, -44 +66698987ns 1172679 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66699271ns 1172684 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66699669ns 1172691 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66699840ns 1172694 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66700294ns 1172702 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66700465ns 1172705 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66700749ns 1172710 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66701033ns 1172715 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66701317ns 1172720 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66701772ns 1172728 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66701942ns 1172731 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66702226ns 1172736 1a110850 fd5ff06f jal x0, -44 +66702511ns 1172741 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66702795ns 1172746 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66703193ns 1172753 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66703363ns 1172756 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66703818ns 1172764 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66703988ns 1172767 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66704272ns 1172772 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66704557ns 1172777 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66704841ns 1172782 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66705295ns 1172790 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66705466ns 1172793 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66705750ns 1172798 1a110850 fd5ff06f jal x0, -44 +66706034ns 1172803 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66706318ns 1172808 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66706716ns 1172815 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66706887ns 1172818 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66707341ns 1172826 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66707512ns 1172829 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66707796ns 1172834 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66708080ns 1172839 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66708364ns 1172844 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66708819ns 1172852 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66708989ns 1172855 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66709274ns 1172860 1a110850 fd5ff06f jal x0, -44 +66709558ns 1172865 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66709842ns 1172870 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66710240ns 1172877 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66710410ns 1172880 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66710865ns 1172888 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66711035ns 1172891 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66711320ns 1172896 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66711604ns 1172901 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66711888ns 1172906 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66712343ns 1172914 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66712513ns 1172917 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66712797ns 1172922 1a110850 fd5ff06f jal x0, -44 +66713081ns 1172927 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66713366ns 1172932 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66713763ns 1172939 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66713934ns 1172942 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66714389ns 1172950 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66714559ns 1172953 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66714843ns 1172958 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66715127ns 1172963 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66715411ns 1172968 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66715866ns 1172976 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66716037ns 1172979 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66716321ns 1172984 1a110850 fd5ff06f jal x0, -44 +66716605ns 1172989 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66716889ns 1172994 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66717287ns 1173001 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66717457ns 1173004 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66717912ns 1173012 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66718083ns 1173015 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66718367ns 1173020 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66718651ns 1173025 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66718935ns 1173030 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66719390ns 1173038 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66719560ns 1173041 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66719844ns 1173046 1a110850 fd5ff06f jal x0, -44 +66720129ns 1173051 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66720413ns 1173056 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66720811ns 1173063 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66720981ns 1173066 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66721436ns 1173074 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66721606ns 1173077 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66721890ns 1173082 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66722175ns 1173087 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66722459ns 1173092 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66722913ns 1173100 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66723084ns 1173103 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66723368ns 1173108 1a110850 fd5ff06f jal x0, -44 +66723652ns 1173113 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66723936ns 1173118 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66724334ns 1173125 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66724505ns 1173128 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66724959ns 1173136 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66725130ns 1173139 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66725414ns 1173144 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66725698ns 1173149 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66725982ns 1173154 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66726437ns 1173162 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66726607ns 1173165 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66726892ns 1173170 1a110850 fd5ff06f jal x0, -44 +66727176ns 1173175 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66727460ns 1173180 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66727858ns 1173187 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66728028ns 1173190 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66728483ns 1173198 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66728653ns 1173201 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66728938ns 1173206 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66729222ns 1173211 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66729506ns 1173216 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66729960ns 1173224 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66730131ns 1173227 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66730415ns 1173232 1a110850 fd5ff06f jal x0, -44 +66730699ns 1173237 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66730983ns 1173242 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66731381ns 1173249 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66731552ns 1173252 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66732006ns 1173260 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66732177ns 1173263 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66732461ns 1173268 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66732745ns 1173273 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66733029ns 1173278 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66733484ns 1173286 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66733655ns 1173289 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66733939ns 1173294 1a110850 fd5ff06f jal x0, -44 +66734223ns 1173299 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66734507ns 1173304 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66734905ns 1173311 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66735075ns 1173314 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66735530ns 1173322 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66735701ns 1173325 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66735985ns 1173330 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66736269ns 1173335 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66736553ns 1173340 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66737008ns 1173348 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66737178ns 1173351 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66737462ns 1173356 1a110850 fd5ff06f jal x0, -44 +66737746ns 1173361 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66738031ns 1173366 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66738428ns 1173373 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66738599ns 1173376 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66739054ns 1173384 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66739224ns 1173387 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66739508ns 1173392 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66739792ns 1173397 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66740077ns 1173402 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66740531ns 1173410 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66740702ns 1173413 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66740986ns 1173418 1a110850 fd5ff06f jal x0, -44 +66741270ns 1173423 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66741554ns 1173428 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66741952ns 1173435 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66742123ns 1173438 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66742577ns 1173446 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66742748ns 1173449 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66743032ns 1173454 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66743316ns 1173459 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66743600ns 1173464 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66744055ns 1173472 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66744225ns 1173475 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66744509ns 1173480 1a110850 fd5ff06f jal x0, -44 +66744794ns 1173485 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66745078ns 1173490 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66745476ns 1173497 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66745646ns 1173500 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66746101ns 1173508 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66746271ns 1173511 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66746555ns 1173516 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66746840ns 1173521 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66747124ns 1173526 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66747578ns 1173534 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66747749ns 1173537 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66748033ns 1173542 1a110850 fd5ff06f jal x0, -44 +66748317ns 1173547 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66748601ns 1173552 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66748999ns 1173559 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66749170ns 1173562 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66749624ns 1173570 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66749795ns 1173573 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66750079ns 1173578 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66750363ns 1173583 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66750647ns 1173588 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66751102ns 1173596 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66751272ns 1173599 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66751557ns 1173604 1a110850 fd5ff06f jal x0, -44 +66751841ns 1173609 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66752125ns 1173614 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66752523ns 1173621 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66752693ns 1173624 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66753148ns 1173632 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66753318ns 1173635 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66753603ns 1173640 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66753887ns 1173645 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66754171ns 1173650 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66754626ns 1173658 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66754796ns 1173661 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66755080ns 1173666 1a110850 fd5ff06f jal x0, -44 +66755364ns 1173671 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66755649ns 1173676 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66756046ns 1173683 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66756217ns 1173686 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66756672ns 1173694 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66756842ns 1173697 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66757126ns 1173702 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66757410ns 1173707 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66757695ns 1173712 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66758149ns 1173720 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66758320ns 1173723 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66758604ns 1173728 1a110850 fd5ff06f jal x0, -44 +66758888ns 1173733 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66759172ns 1173738 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66759570ns 1173745 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66759740ns 1173748 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66760195ns 1173756 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66760366ns 1173759 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66760650ns 1173764 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66760934ns 1173769 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66761218ns 1173774 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66761673ns 1173782 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66761843ns 1173785 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66762127ns 1173790 1a110850 fd5ff06f jal x0, -44 +66762412ns 1173795 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66762696ns 1173800 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66763094ns 1173807 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66763264ns 1173810 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66763719ns 1173818 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66763889ns 1173821 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66764173ns 1173826 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66764458ns 1173831 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66764742ns 1173836 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66765196ns 1173844 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66765367ns 1173847 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66765651ns 1173852 1a110850 fd5ff06f jal x0, -44 +66765935ns 1173857 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66766219ns 1173862 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66766617ns 1173869 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66766788ns 1173872 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66767242ns 1173880 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66767413ns 1173883 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66767697ns 1173888 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66767981ns 1173893 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66768265ns 1173898 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66768720ns 1173906 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66768890ns 1173909 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66769175ns 1173914 1a110850 fd5ff06f jal x0, -44 +66769459ns 1173919 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66769743ns 1173924 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66770141ns 1173931 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66770311ns 1173934 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66770766ns 1173942 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66770936ns 1173945 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66771221ns 1173950 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66771505ns 1173955 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66771789ns 1173960 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66772243ns 1173968 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66772414ns 1173971 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66772698ns 1173976 1a110850 fd5ff06f jal x0, -44 +66772982ns 1173981 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66773266ns 1173986 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66773664ns 1173993 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66773835ns 1173996 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66774289ns 1174004 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66774460ns 1174007 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66774744ns 1174012 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66775028ns 1174017 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66775312ns 1174022 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66775767ns 1174030 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66775938ns 1174033 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66776222ns 1174038 1a110850 fd5ff06f jal x0, -44 +66776506ns 1174043 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66776790ns 1174048 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66777188ns 1174055 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66777358ns 1174058 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66777813ns 1174066 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66777984ns 1174069 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66778268ns 1174074 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66778552ns 1174079 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66778836ns 1174084 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66779291ns 1174092 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66779461ns 1174095 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66779745ns 1174100 1a110850 fd5ff06f jal x0, -44 +66780029ns 1174105 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66780314ns 1174110 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66780711ns 1174117 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66780882ns 1174120 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66781337ns 1174128 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66781507ns 1174131 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66781791ns 1174136 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66782075ns 1174141 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66782360ns 1174146 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66782814ns 1174154 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66782985ns 1174157 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66783269ns 1174162 1a110850 fd5ff06f jal x0, -44 +66783553ns 1174167 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66783837ns 1174172 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66784235ns 1174179 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66784406ns 1174182 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66784860ns 1174190 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66785031ns 1174193 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66785315ns 1174198 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66785599ns 1174203 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66785883ns 1174208 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66786338ns 1174216 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66786508ns 1174219 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66786792ns 1174224 1a110850 fd5ff06f jal x0, -44 +66787077ns 1174229 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66787361ns 1174234 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66787759ns 1174241 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66787929ns 1174244 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66788384ns 1174252 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66788554ns 1174255 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66788838ns 1174260 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66789123ns 1174265 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66789407ns 1174270 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66789861ns 1174278 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66790032ns 1174281 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66790316ns 1174286 1a110850 fd5ff06f jal x0, -44 +66790600ns 1174291 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66790884ns 1174296 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66791282ns 1174303 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66791453ns 1174306 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66791907ns 1174314 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66792078ns 1174317 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66792362ns 1174322 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66792646ns 1174327 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66792930ns 1174332 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66793385ns 1174340 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66793555ns 1174343 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66793840ns 1174348 1a110850 fd5ff06f jal x0, -44 +66794124ns 1174353 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66794408ns 1174358 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66794806ns 1174365 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66794976ns 1174368 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66795431ns 1174376 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66795601ns 1174379 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66795886ns 1174384 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66796170ns 1174389 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66796454ns 1174394 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66796909ns 1174402 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66797079ns 1174405 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66797363ns 1174410 1a110850 fd5ff06f jal x0, -44 +66797647ns 1174415 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66797932ns 1174420 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66798329ns 1174427 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66798500ns 1174430 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66798955ns 1174438 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66799125ns 1174441 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66799409ns 1174446 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66799693ns 1174451 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66799978ns 1174456 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66800432ns 1174464 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66800603ns 1174467 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66800887ns 1174472 1a110850 fd5ff06f jal x0, -44 +66801171ns 1174477 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66801455ns 1174482 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66801853ns 1174489 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66802023ns 1174492 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66802478ns 1174500 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66802649ns 1174503 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66802933ns 1174508 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66803217ns 1174513 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66803501ns 1174518 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66803956ns 1174526 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66804126ns 1174529 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66804410ns 1174534 1a110850 fd5ff06f jal x0, -44 +66804695ns 1174539 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66804979ns 1174544 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66805377ns 1174551 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66805547ns 1174554 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66806002ns 1174562 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66806172ns 1174565 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66806456ns 1174570 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66806741ns 1174575 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66807025ns 1174580 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66807479ns 1174588 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66807650ns 1174591 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66807934ns 1174596 1a110850 fd5ff06f jal x0, -44 +66808218ns 1174601 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66808502ns 1174606 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66808900ns 1174613 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66809071ns 1174616 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66809525ns 1174624 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66809696ns 1174627 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66809980ns 1174632 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66810264ns 1174637 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66810548ns 1174642 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66811003ns 1174650 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66811173ns 1174653 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66811458ns 1174658 1a110850 fd5ff06f jal x0, -44 +66811742ns 1174663 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66812026ns 1174668 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66812424ns 1174675 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66812594ns 1174678 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66813049ns 1174686 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66813219ns 1174689 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66813504ns 1174694 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66813788ns 1174699 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66814072ns 1174704 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66814527ns 1174712 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66814697ns 1174715 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66814981ns 1174720 1a110850 fd5ff06f jal x0, -44 +66815265ns 1174725 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66815549ns 1174730 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66815947ns 1174737 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66816118ns 1174740 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66816572ns 1174748 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66816743ns 1174751 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66817027ns 1174756 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66817311ns 1174761 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66817595ns 1174766 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66818050ns 1174774 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66818221ns 1174777 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66818505ns 1174782 1a110850 fd5ff06f jal x0, -44 +66818789ns 1174787 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66819073ns 1174792 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66819471ns 1174799 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66819641ns 1174802 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66820096ns 1174810 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66820267ns 1174813 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66820551ns 1174818 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66820835ns 1174823 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66821119ns 1174828 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66821574ns 1174836 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66821744ns 1174839 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66822028ns 1174844 1a110850 fd5ff06f jal x0, -44 +66822312ns 1174849 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66822597ns 1174854 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66822994ns 1174861 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66823165ns 1174864 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66823620ns 1174872 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66823790ns 1174875 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66824074ns 1174880 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66824358ns 1174885 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66824643ns 1174890 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66825097ns 1174898 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66825268ns 1174901 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66825552ns 1174906 1a110850 fd5ff06f jal x0, -44 +66825836ns 1174911 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66826120ns 1174916 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66826518ns 1174923 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66826689ns 1174926 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66827143ns 1174934 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66827314ns 1174937 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66827598ns 1174942 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66827882ns 1174947 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66828166ns 1174952 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66828621ns 1174960 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66828791ns 1174963 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66829075ns 1174968 1a110850 fd5ff06f jal x0, -44 +66829360ns 1174973 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66829644ns 1174978 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66830042ns 1174985 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66830212ns 1174988 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66830667ns 1174996 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66830837ns 1174999 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66831121ns 1175004 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66831406ns 1175009 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66831690ns 1175014 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66832144ns 1175022 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66832315ns 1175025 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66832599ns 1175030 1a110850 fd5ff06f jal x0, -44 +66832883ns 1175035 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66833167ns 1175040 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66833565ns 1175047 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66833736ns 1175050 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66834190ns 1175058 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66834361ns 1175061 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66834645ns 1175066 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66834929ns 1175071 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66835213ns 1175076 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66835668ns 1175084 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66835839ns 1175087 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66836123ns 1175092 1a110850 fd5ff06f jal x0, -44 +66836407ns 1175097 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66836691ns 1175102 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66837089ns 1175109 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66837259ns 1175112 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66837714ns 1175120 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66837884ns 1175123 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66838169ns 1175128 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66838453ns 1175133 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66838737ns 1175138 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66839192ns 1175146 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66839362ns 1175149 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66839646ns 1175154 1a110850 fd5ff06f jal x0, -44 +66839930ns 1175159 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66840215ns 1175164 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66840612ns 1175171 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66840783ns 1175174 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66841238ns 1175182 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66841408ns 1175185 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66841692ns 1175190 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66841976ns 1175195 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66842261ns 1175200 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66842715ns 1175208 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66842886ns 1175211 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66843170ns 1175216 1a110850 fd5ff06f jal x0, -44 +66843454ns 1175221 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66843738ns 1175226 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66844136ns 1175233 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66844306ns 1175236 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66844761ns 1175244 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66844932ns 1175247 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66845216ns 1175252 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66845500ns 1175257 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66845784ns 1175262 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66846239ns 1175270 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66846409ns 1175273 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66846693ns 1175278 1a110850 fd5ff06f jal x0, -44 +66846978ns 1175283 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66847262ns 1175288 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66847660ns 1175295 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66847830ns 1175298 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66848285ns 1175306 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66848455ns 1175309 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66848739ns 1175314 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66849024ns 1175319 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66849308ns 1175324 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66849762ns 1175332 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66849933ns 1175335 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66850217ns 1175340 1a110850 fd5ff06f jal x0, -44 +66850501ns 1175345 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66850785ns 1175350 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66851183ns 1175357 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66851354ns 1175360 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66851808ns 1175368 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66851979ns 1175371 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66852263ns 1175376 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66852547ns 1175381 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66852831ns 1175386 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66853286ns 1175394 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66853456ns 1175397 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66853741ns 1175402 1a110850 fd5ff06f jal x0, -44 +66854025ns 1175407 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66854309ns 1175412 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66854707ns 1175419 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66854877ns 1175422 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66855332ns 1175430 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66855502ns 1175433 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66855787ns 1175438 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66856071ns 1175443 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66856355ns 1175448 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66856810ns 1175456 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66856980ns 1175459 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66857264ns 1175464 1a110850 fd5ff06f jal x0, -44 +66857548ns 1175469 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66857832ns 1175474 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66858230ns 1175481 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66858401ns 1175484 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66858855ns 1175492 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66859026ns 1175495 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66859310ns 1175500 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66859594ns 1175505 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66859878ns 1175510 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66860333ns 1175518 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66860504ns 1175521 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66860788ns 1175526 1a110850 fd5ff06f jal x0, -44 +66861072ns 1175531 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66861356ns 1175536 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66861754ns 1175543 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66861924ns 1175546 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66862379ns 1175554 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66862550ns 1175557 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66862834ns 1175562 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66863118ns 1175567 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66863402ns 1175572 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66863857ns 1175580 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66864027ns 1175583 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66864311ns 1175588 1a110850 fd5ff06f jal x0, -44 +66864595ns 1175593 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66864880ns 1175598 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66865277ns 1175605 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66865448ns 1175608 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66865903ns 1175616 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66866073ns 1175619 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66866357ns 1175624 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66866641ns 1175629 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66866926ns 1175634 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66867380ns 1175642 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66867551ns 1175645 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66867835ns 1175650 1a110850 fd5ff06f jal x0, -44 +66868119ns 1175655 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66868403ns 1175660 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66868801ns 1175667 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66868972ns 1175670 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66869426ns 1175678 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66869597ns 1175681 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66869881ns 1175686 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66870165ns 1175691 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66870449ns 1175696 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66870904ns 1175704 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66871074ns 1175707 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66871359ns 1175712 1a110850 fd5ff06f jal x0, -44 +66871643ns 1175717 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66871927ns 1175722 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66872325ns 1175729 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66872495ns 1175732 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66872950ns 1175740 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66873120ns 1175743 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66873404ns 1175748 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66873689ns 1175753 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66873973ns 1175758 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66874427ns 1175766 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66874598ns 1175769 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66874882ns 1175774 1a110850 fd5ff06f jal x0, -44 +66875166ns 1175779 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66875450ns 1175784 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66875848ns 1175791 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66876019ns 1175794 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66876473ns 1175802 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66876644ns 1175805 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66876928ns 1175810 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66877212ns 1175815 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66877496ns 1175820 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66877951ns 1175828 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66878122ns 1175831 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66878406ns 1175836 1a110850 fd5ff06f jal x0, -44 +66878690ns 1175841 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66878974ns 1175846 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66879372ns 1175853 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66879542ns 1175856 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66879997ns 1175864 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66880167ns 1175867 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66880452ns 1175872 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66880736ns 1175877 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66881020ns 1175882 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66881475ns 1175890 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66881645ns 1175893 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66881929ns 1175898 1a110850 fd5ff06f jal x0, -44 +66882213ns 1175903 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66882498ns 1175908 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66882895ns 1175915 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66883066ns 1175918 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66883521ns 1175926 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66883691ns 1175929 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66883975ns 1175934 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66884259ns 1175939 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66884544ns 1175944 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66884998ns 1175952 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66885169ns 1175955 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66885453ns 1175960 1a110850 fd5ff06f jal x0, -44 +66885737ns 1175965 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66886021ns 1175970 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66886419ns 1175977 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66886589ns 1175980 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66887044ns 1175988 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66887215ns 1175991 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66887499ns 1175996 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66887783ns 1176001 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66888067ns 1176006 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66888522ns 1176014 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66888692ns 1176017 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66888976ns 1176022 1a110850 fd5ff06f jal x0, -44 +66889261ns 1176027 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66889545ns 1176032 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66889943ns 1176039 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66890113ns 1176042 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66890568ns 1176050 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66890738ns 1176053 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66891022ns 1176058 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66891307ns 1176063 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66891591ns 1176068 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66892045ns 1176076 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66892216ns 1176079 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66892500ns 1176084 1a110850 fd5ff06f jal x0, -44 +66892784ns 1176089 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66893068ns 1176094 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66893466ns 1176101 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66893637ns 1176104 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66894091ns 1176112 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66894262ns 1176115 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66894546ns 1176120 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66894830ns 1176125 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66895114ns 1176130 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66895569ns 1176138 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66895739ns 1176141 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66896024ns 1176146 1a110850 fd5ff06f jal x0, -44 +66896308ns 1176151 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66896592ns 1176156 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66896990ns 1176163 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66897160ns 1176166 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66897615ns 1176174 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66897785ns 1176177 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66898070ns 1176182 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66898354ns 1176187 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66898638ns 1176192 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66899093ns 1176200 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66899263ns 1176203 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66899547ns 1176208 1a110850 fd5ff06f jal x0, -44 +66899831ns 1176213 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66900115ns 1176218 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66900513ns 1176225 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66900684ns 1176228 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66901138ns 1176236 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66901309ns 1176239 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66901593ns 1176244 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66901877ns 1176249 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66902161ns 1176254 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66902616ns 1176262 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66902787ns 1176265 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66903071ns 1176270 1a110850 fd5ff06f jal x0, -44 +66903355ns 1176275 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66903639ns 1176280 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66904037ns 1176287 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66904207ns 1176290 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66904662ns 1176298 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66904833ns 1176301 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66905117ns 1176306 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66905401ns 1176311 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66905685ns 1176316 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66906140ns 1176324 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66906310ns 1176327 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66906594ns 1176332 1a110850 fd5ff06f jal x0, -44 +66906879ns 1176337 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66907163ns 1176342 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66907560ns 1176349 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66907731ns 1176352 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66908186ns 1176360 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66908356ns 1176363 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66908640ns 1176368 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66908924ns 1176373 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66909209ns 1176378 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66909663ns 1176386 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66909834ns 1176389 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66910118ns 1176394 1a110850 fd5ff06f jal x0, -44 +66910402ns 1176399 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66910686ns 1176404 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66911084ns 1176411 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66911255ns 1176414 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66911709ns 1176422 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66911880ns 1176425 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66912164ns 1176430 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66912448ns 1176435 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66912732ns 1176440 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66913187ns 1176448 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66913357ns 1176451 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66913642ns 1176456 1a110850 fd5ff06f jal x0, -44 +66913926ns 1176461 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66914210ns 1176466 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66914608ns 1176473 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66914778ns 1176476 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66915233ns 1176484 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66915403ns 1176487 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66915687ns 1176492 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66915972ns 1176497 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66916256ns 1176502 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66916710ns 1176510 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66916881ns 1176513 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66917165ns 1176518 1a110850 fd5ff06f jal x0, -44 +66917449ns 1176523 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66917733ns 1176528 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66918131ns 1176535 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66918302ns 1176538 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66918756ns 1176546 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66918927ns 1176549 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66919211ns 1176554 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66919495ns 1176559 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66919779ns 1176564 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66920234ns 1176572 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66920405ns 1176575 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66920689ns 1176580 1a110850 fd5ff06f jal x0, -44 +66920973ns 1176585 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66921257ns 1176590 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66921655ns 1176597 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66921825ns 1176600 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66922280ns 1176608 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66922450ns 1176611 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66922735ns 1176616 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66923019ns 1176621 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66923303ns 1176626 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66923758ns 1176634 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66923928ns 1176637 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66924212ns 1176642 1a110850 fd5ff06f jal x0, -44 +66924496ns 1176647 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66924781ns 1176652 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66925178ns 1176659 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66925349ns 1176662 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66925804ns 1176670 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66925974ns 1176673 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66926258ns 1176678 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66926542ns 1176683 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66926827ns 1176688 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66927281ns 1176696 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66927452ns 1176699 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66927736ns 1176704 1a110850 fd5ff06f jal x0, -44 +66928020ns 1176709 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66928304ns 1176714 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66928702ns 1176721 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66928872ns 1176724 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66929327ns 1176732 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66929498ns 1176735 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66929782ns 1176740 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66930066ns 1176745 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66930350ns 1176750 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66930805ns 1176758 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66930975ns 1176761 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66931259ns 1176766 1a110850 fd5ff06f jal x0, -44 +66931544ns 1176771 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66931828ns 1176776 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66932226ns 1176783 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66932396ns 1176786 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66932851ns 1176794 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66933021ns 1176797 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66933305ns 1176802 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66933590ns 1176807 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66933874ns 1176812 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66934328ns 1176820 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66934499ns 1176823 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66934783ns 1176828 1a110850 fd5ff06f jal x0, -44 +66935067ns 1176833 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66935351ns 1176838 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66935749ns 1176845 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66935920ns 1176848 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66936374ns 1176856 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66936545ns 1176859 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66936829ns 1176864 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66937113ns 1176869 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66937397ns 1176874 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66937852ns 1176882 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66938022ns 1176885 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66938307ns 1176890 1a110850 fd5ff06f jal x0, -44 +66938591ns 1176895 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66938875ns 1176900 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66939273ns 1176907 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66939443ns 1176910 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66939898ns 1176918 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66940068ns 1176921 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66940353ns 1176926 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66940637ns 1176931 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66940921ns 1176936 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66941376ns 1176944 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66941546ns 1176947 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66941830ns 1176952 1a110850 fd5ff06f jal x0, -44 +66942114ns 1176957 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66942399ns 1176962 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66942796ns 1176969 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66942967ns 1176972 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66943421ns 1176980 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66943592ns 1176983 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66943876ns 1176988 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66944160ns 1176993 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66944444ns 1176998 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66944899ns 1177006 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66945070ns 1177009 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66945354ns 1177014 1a110850 fd5ff06f jal x0, -44 +66945638ns 1177019 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66945922ns 1177024 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66946320ns 1177031 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66946490ns 1177034 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66946945ns 1177042 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66947116ns 1177045 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66947400ns 1177050 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66947684ns 1177055 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66947968ns 1177060 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66948423ns 1177068 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66948593ns 1177071 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66948877ns 1177076 1a110850 fd5ff06f jal x0, -44 +66949162ns 1177081 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66949446ns 1177086 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66949843ns 1177093 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66950014ns 1177096 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66950469ns 1177104 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66950639ns 1177107 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66950923ns 1177112 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66951207ns 1177117 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66951492ns 1177122 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66951946ns 1177130 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66952117ns 1177133 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66952401ns 1177138 1a110850 fd5ff06f jal x0, -44 +66952685ns 1177143 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66952969ns 1177148 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66953367ns 1177155 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66953538ns 1177158 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66953992ns 1177166 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66954163ns 1177169 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66954447ns 1177174 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66954731ns 1177179 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66955015ns 1177184 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66955470ns 1177192 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66955640ns 1177195 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66955925ns 1177200 1a110850 fd5ff06f jal x0, -44 +66956209ns 1177205 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66956493ns 1177210 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66956891ns 1177217 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66957061ns 1177220 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66957516ns 1177228 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66957686ns 1177231 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66957970ns 1177236 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66958255ns 1177241 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66958539ns 1177246 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66958993ns 1177254 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66959164ns 1177257 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66959448ns 1177262 1a110850 fd5ff06f jal x0, -44 +66959732ns 1177267 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66960016ns 1177272 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66960414ns 1177279 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66960585ns 1177282 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66961039ns 1177290 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66961210ns 1177293 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66961494ns 1177298 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66961778ns 1177303 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66962062ns 1177308 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66962517ns 1177316 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66962688ns 1177319 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66962972ns 1177324 1a110850 fd5ff06f jal x0, -44 +66963256ns 1177329 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66963540ns 1177334 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66963938ns 1177341 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66964108ns 1177344 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66964563ns 1177352 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66964733ns 1177355 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66965018ns 1177360 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66965302ns 1177365 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66965586ns 1177370 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66966041ns 1177378 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66966211ns 1177381 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66966495ns 1177386 1a110850 fd5ff06f jal x0, -44 +66966779ns 1177391 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66967064ns 1177396 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66967461ns 1177403 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66967632ns 1177406 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66968087ns 1177414 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66968257ns 1177417 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66968541ns 1177422 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66968825ns 1177427 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66969110ns 1177432 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66969564ns 1177440 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66969735ns 1177443 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66970019ns 1177448 1a110850 fd5ff06f jal x0, -44 +66970303ns 1177453 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66970587ns 1177458 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66970985ns 1177465 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66971155ns 1177468 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66971610ns 1177476 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66971781ns 1177479 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66972065ns 1177484 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66972349ns 1177489 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66972633ns 1177494 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66973088ns 1177502 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66973258ns 1177505 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66973542ns 1177510 1a110850 fd5ff06f jal x0, -44 +66973827ns 1177515 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66974111ns 1177520 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66974509ns 1177527 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66974679ns 1177530 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66975134ns 1177538 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66975304ns 1177541 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66975588ns 1177546 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66975873ns 1177551 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66976157ns 1177556 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66976611ns 1177564 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66976782ns 1177567 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66977066ns 1177572 1a110850 fd5ff06f jal x0, -44 +66977350ns 1177577 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66977634ns 1177582 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66978032ns 1177589 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66978203ns 1177592 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66978657ns 1177600 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66978828ns 1177603 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66979112ns 1177608 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66979396ns 1177613 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66979680ns 1177618 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66980135ns 1177626 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66980305ns 1177629 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66980590ns 1177634 1a110850 fd5ff06f jal x0, -44 +66980874ns 1177639 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66981158ns 1177644 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66981556ns 1177651 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66981726ns 1177654 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66982181ns 1177662 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66982351ns 1177665 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66982636ns 1177670 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66982920ns 1177675 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66983204ns 1177680 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66983659ns 1177688 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66983829ns 1177691 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66984113ns 1177696 1a110850 fd5ff06f jal x0, -44 +66984397ns 1177701 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66984682ns 1177706 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66985079ns 1177713 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66985250ns 1177716 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66985704ns 1177724 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66985875ns 1177727 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66986159ns 1177732 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66986443ns 1177737 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66986727ns 1177742 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66987182ns 1177750 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66987353ns 1177753 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66987637ns 1177758 1a110850 fd5ff06f jal x0, -44 +66987921ns 1177763 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66988205ns 1177768 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66988603ns 1177775 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66988773ns 1177778 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66989228ns 1177786 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66989399ns 1177789 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66989683ns 1177794 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66989967ns 1177799 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66990251ns 1177804 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66990706ns 1177812 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66990876ns 1177815 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66991160ns 1177820 1a110850 fd5ff06f jal x0, -44 +66991445ns 1177825 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66991729ns 1177830 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66992127ns 1177837 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66992297ns 1177840 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66992752ns 1177848 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66992922ns 1177851 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66993206ns 1177856 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66993490ns 1177861 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66993775ns 1177866 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66994229ns 1177874 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66994400ns 1177877 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66994684ns 1177882 1a110850 fd5ff06f jal x0, -44 +66994968ns 1177887 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66995252ns 1177892 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66995650ns 1177899 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66995821ns 1177902 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66996275ns 1177910 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66996446ns 1177913 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +66996730ns 1177918 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66997014ns 1177923 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66997298ns 1177928 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66997753ns 1177936 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +66997923ns 1177939 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +66998208ns 1177944 1a110850 fd5ff06f jal x0, -44 +66998492ns 1177949 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +66998776ns 1177954 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +66999174ns 1177961 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +66999344ns 1177964 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +66999799ns 1177972 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +66999969ns 1177975 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67000253ns 1177980 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67000538ns 1177985 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67000822ns 1177990 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67001276ns 1177998 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67001447ns 1178001 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67001731ns 1178006 1a110850 fd5ff06f jal x0, -44 +67002015ns 1178011 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67002299ns 1178016 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67002697ns 1178023 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67002868ns 1178026 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67003322ns 1178034 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67003493ns 1178037 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67003777ns 1178042 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67004061ns 1178047 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67004345ns 1178052 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67004800ns 1178060 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67004971ns 1178063 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67005255ns 1178068 1a110850 fd5ff06f jal x0, -44 +67005539ns 1178073 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67005823ns 1178078 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67006221ns 1178085 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67006391ns 1178088 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67006846ns 1178096 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67007016ns 1178099 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67007301ns 1178104 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67007585ns 1178109 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67007869ns 1178114 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67008324ns 1178122 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67008494ns 1178125 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67008778ns 1178130 1a110850 fd5ff06f jal x0, -44 +67009062ns 1178135 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67009347ns 1178140 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67009744ns 1178147 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67009915ns 1178150 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67010370ns 1178158 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67010540ns 1178161 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67010824ns 1178166 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67011108ns 1178171 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67011393ns 1178176 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67011847ns 1178184 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67012018ns 1178187 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67012302ns 1178192 1a110850 fd5ff06f jal x0, -44 +67012586ns 1178197 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67012870ns 1178202 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67013268ns 1178209 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67013439ns 1178212 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67013893ns 1178220 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67014064ns 1178223 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67014348ns 1178228 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67014632ns 1178233 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67014916ns 1178238 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67015371ns 1178246 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67015541ns 1178249 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67015825ns 1178254 1a110850 fd5ff06f jal x0, -44 +67016110ns 1178259 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67016394ns 1178264 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67016792ns 1178271 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67016962ns 1178274 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67017417ns 1178282 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67017587ns 1178285 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67017871ns 1178290 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67018156ns 1178295 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67018440ns 1178300 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67018894ns 1178308 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67019065ns 1178311 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67019349ns 1178316 1a110850 fd5ff06f jal x0, -44 +67019633ns 1178321 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67019917ns 1178326 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67020315ns 1178333 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67020486ns 1178336 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67020940ns 1178344 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67021111ns 1178347 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67021395ns 1178352 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67021679ns 1178357 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67021963ns 1178362 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67022418ns 1178370 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67022588ns 1178373 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67022873ns 1178378 1a110850 fd5ff06f jal x0, -44 +67023157ns 1178383 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67023441ns 1178388 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67023839ns 1178395 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67024009ns 1178398 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67024464ns 1178406 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67024634ns 1178409 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67024919ns 1178414 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67025203ns 1178419 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67025487ns 1178424 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67025942ns 1178432 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67026112ns 1178435 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67026396ns 1178440 1a110850 fd5ff06f jal x0, -44 +67026680ns 1178445 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67026965ns 1178450 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67027362ns 1178457 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67027533ns 1178460 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67027987ns 1178468 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67028158ns 1178471 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67028442ns 1178476 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67028726ns 1178481 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67029010ns 1178486 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67029465ns 1178494 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67029636ns 1178497 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67029920ns 1178502 1a110850 fd5ff06f jal x0, -44 +67030204ns 1178507 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67030488ns 1178512 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67030886ns 1178519 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67031056ns 1178522 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67031511ns 1178530 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67031682ns 1178533 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67031966ns 1178538 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67032250ns 1178543 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67032534ns 1178548 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67032989ns 1178556 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67033159ns 1178559 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67033443ns 1178564 1a110850 fd5ff06f jal x0, -44 +67033728ns 1178569 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67034012ns 1178574 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67034410ns 1178581 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67034580ns 1178584 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67035035ns 1178592 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67035205ns 1178595 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67035489ns 1178600 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67035773ns 1178605 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67036058ns 1178610 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67036512ns 1178618 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67036683ns 1178621 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67036967ns 1178626 1a110850 fd5ff06f jal x0, -44 +67037251ns 1178631 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67037535ns 1178636 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67037933ns 1178643 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67038104ns 1178646 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67038558ns 1178654 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67038729ns 1178657 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67039013ns 1178662 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67039297ns 1178667 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67039581ns 1178672 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67040036ns 1178680 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67040206ns 1178683 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67040491ns 1178688 1a110850 fd5ff06f jal x0, -44 +67040775ns 1178693 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67041059ns 1178698 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67041457ns 1178705 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67041627ns 1178708 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67042082ns 1178716 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67042252ns 1178719 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67042536ns 1178724 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67042821ns 1178729 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67043105ns 1178734 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67043559ns 1178742 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67043730ns 1178745 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67044014ns 1178750 1a110850 fd5ff06f jal x0, -44 +67044298ns 1178755 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67044582ns 1178760 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67044980ns 1178767 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67045151ns 1178770 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67045605ns 1178778 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67045776ns 1178781 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67046060ns 1178786 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67046344ns 1178791 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67046628ns 1178796 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67047083ns 1178804 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67047254ns 1178807 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67047538ns 1178812 1a110850 fd5ff06f jal x0, -44 +67047822ns 1178817 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67048106ns 1178822 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67048504ns 1178829 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67048674ns 1178832 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67049129ns 1178840 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67049299ns 1178843 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67049584ns 1178848 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67049868ns 1178853 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67050152ns 1178858 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67050607ns 1178866 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67050777ns 1178869 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67051061ns 1178874 1a110850 fd5ff06f jal x0, -44 +67051345ns 1178879 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67051630ns 1178884 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67052027ns 1178891 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67052198ns 1178894 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67052653ns 1178902 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67052823ns 1178905 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67053107ns 1178910 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67053391ns 1178915 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67053676ns 1178920 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67054130ns 1178928 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67054301ns 1178931 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67054585ns 1178936 1a110850 fd5ff06f jal x0, -44 +67054869ns 1178941 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67055153ns 1178946 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67055551ns 1178953 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67055722ns 1178956 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67056176ns 1178964 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67056347ns 1178967 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67056631ns 1178972 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67056915ns 1178977 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67057199ns 1178982 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67057654ns 1178990 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67057824ns 1178993 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67058108ns 1178998 1a110850 fd5ff06f jal x0, -44 +67058393ns 1179003 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67058677ns 1179008 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67059075ns 1179015 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67059245ns 1179018 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67059700ns 1179026 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67059870ns 1179029 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67060154ns 1179034 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67060439ns 1179039 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67060723ns 1179044 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67061177ns 1179052 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67061348ns 1179055 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67061632ns 1179060 1a110850 fd5ff06f jal x0, -44 +67061916ns 1179065 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67062200ns 1179070 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67062598ns 1179077 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67062769ns 1179080 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67063223ns 1179088 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67063394ns 1179091 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67063678ns 1179096 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67063962ns 1179101 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67064246ns 1179106 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67064701ns 1179114 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67064871ns 1179117 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67065156ns 1179122 1a110850 fd5ff06f jal x0, -44 +67065440ns 1179127 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67065724ns 1179132 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67066122ns 1179139 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67066292ns 1179142 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67066747ns 1179150 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67066917ns 1179153 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67067202ns 1179158 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67067486ns 1179163 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67067770ns 1179168 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67068225ns 1179176 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67068395ns 1179179 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67068679ns 1179184 1a110850 fd5ff06f jal x0, -44 +67068963ns 1179189 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67069248ns 1179194 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67069645ns 1179201 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67069816ns 1179204 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67070271ns 1179212 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67070441ns 1179215 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67070725ns 1179220 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67071009ns 1179225 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67071293ns 1179230 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67071748ns 1179238 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67071919ns 1179241 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67072203ns 1179246 1a110850 fd5ff06f jal x0, -44 +67072487ns 1179251 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67072771ns 1179256 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67073169ns 1179263 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67073339ns 1179266 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67073794ns 1179274 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67073965ns 1179277 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67074249ns 1179282 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67074533ns 1179287 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67074817ns 1179292 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67075272ns 1179300 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67075442ns 1179303 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67075726ns 1179308 1a110850 fd5ff06f jal x0, -44 +67076011ns 1179313 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67076295ns 1179318 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67076693ns 1179325 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67076863ns 1179328 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67077318ns 1179336 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67077488ns 1179339 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67077772ns 1179344 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67078056ns 1179349 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67078341ns 1179354 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67078795ns 1179362 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67078966ns 1179365 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67079250ns 1179370 1a110850 fd5ff06f jal x0, -44 +67079534ns 1179375 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67079818ns 1179380 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67080216ns 1179387 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67080387ns 1179390 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67080841ns 1179398 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67081012ns 1179401 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67081296ns 1179406 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67081580ns 1179411 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67081864ns 1179416 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67082319ns 1179424 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67082489ns 1179427 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67082774ns 1179432 1a110850 fd5ff06f jal x0, -44 +67083058ns 1179437 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67083342ns 1179442 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67083740ns 1179449 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67083910ns 1179452 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67084365ns 1179460 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67084535ns 1179463 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67084819ns 1179468 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67085104ns 1179473 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67085388ns 1179478 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67085842ns 1179486 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67086013ns 1179489 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67086297ns 1179494 1a110850 fd5ff06f jal x0, -44 +67086581ns 1179499 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67086865ns 1179504 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67087263ns 1179511 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67087434ns 1179514 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67087888ns 1179522 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67088059ns 1179525 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67088343ns 1179530 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67088627ns 1179535 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67088911ns 1179540 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67089366ns 1179548 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67089537ns 1179551 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67089821ns 1179556 1a110850 fd5ff06f jal x0, -44 +67090105ns 1179561 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67090389ns 1179566 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67090787ns 1179573 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67090957ns 1179576 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67091412ns 1179584 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67091583ns 1179587 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67091867ns 1179592 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67092151ns 1179597 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67092435ns 1179602 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67092890ns 1179610 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67093060ns 1179613 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67093344ns 1179618 1a110850 fd5ff06f jal x0, -44 +67093628ns 1179623 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67093913ns 1179628 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67094310ns 1179635 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67094481ns 1179638 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67094936ns 1179646 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67095106ns 1179649 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67095390ns 1179654 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67095674ns 1179659 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67095959ns 1179664 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67096413ns 1179672 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67096584ns 1179675 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67096868ns 1179680 1a110850 fd5ff06f jal x0, -44 +67097152ns 1179685 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67097436ns 1179690 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67097834ns 1179697 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67098005ns 1179700 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67098459ns 1179708 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67098630ns 1179711 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67098914ns 1179716 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67099198ns 1179721 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67099482ns 1179726 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67099937ns 1179734 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67100107ns 1179737 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67100391ns 1179742 1a110850 fd5ff06f jal x0, -44 +67100676ns 1179747 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67100960ns 1179752 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67101358ns 1179759 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67101528ns 1179762 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67101983ns 1179770 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67102153ns 1179773 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67102437ns 1179778 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67102722ns 1179783 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67103006ns 1179788 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67103460ns 1179796 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67103631ns 1179799 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67103915ns 1179804 1a110850 fd5ff06f jal x0, -44 +67104199ns 1179809 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67104483ns 1179814 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67104881ns 1179821 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67105052ns 1179824 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67105506ns 1179832 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67105677ns 1179835 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67105961ns 1179840 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67106245ns 1179845 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67106529ns 1179850 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67106984ns 1179858 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67107154ns 1179861 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67107439ns 1179866 1a110850 fd5ff06f jal x0, -44 +67107723ns 1179871 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67108007ns 1179876 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67108405ns 1179883 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67108575ns 1179886 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67109030ns 1179894 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67109200ns 1179897 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67109485ns 1179902 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67109769ns 1179907 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67110053ns 1179912 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67110508ns 1179920 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67110678ns 1179923 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67110962ns 1179928 1a110850 fd5ff06f jal x0, -44 +67111246ns 1179933 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67111531ns 1179938 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67111928ns 1179945 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67112099ns 1179948 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67112554ns 1179956 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67112724ns 1179959 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67113008ns 1179964 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67113292ns 1179969 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67113576ns 1179974 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67114031ns 1179982 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67114202ns 1179985 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67114486ns 1179990 1a110850 fd5ff06f jal x0, -44 +67114770ns 1179995 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67115054ns 1180000 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67115452ns 1180007 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67115622ns 1180010 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67116077ns 1180018 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67116248ns 1180021 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67116532ns 1180026 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67116816ns 1180031 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67117100ns 1180036 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67117555ns 1180044 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67117725ns 1180047 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67118009ns 1180052 1a110850 fd5ff06f jal x0, -44 +67118294ns 1180057 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67118578ns 1180062 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67118976ns 1180069 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67119146ns 1180072 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67119601ns 1180080 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67119771ns 1180083 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67120055ns 1180088 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67120339ns 1180093 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67120624ns 1180098 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67121078ns 1180106 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67121249ns 1180109 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67121533ns 1180114 1a110850 fd5ff06f jal x0, -44 +67121817ns 1180119 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67122101ns 1180124 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67122499ns 1180131 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67122670ns 1180134 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67123124ns 1180142 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67123295ns 1180145 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67123579ns 1180150 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67123863ns 1180155 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67124147ns 1180160 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67124602ns 1180168 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67124772ns 1180171 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67125057ns 1180176 1a110850 fd5ff06f jal x0, -44 +67125341ns 1180181 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67125625ns 1180186 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67126023ns 1180193 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67126193ns 1180196 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67126648ns 1180204 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67126818ns 1180207 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67127103ns 1180212 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67127387ns 1180217 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67127671ns 1180222 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67128125ns 1180230 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67128296ns 1180233 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67128580ns 1180238 1a110850 fd5ff06f jal x0, -44 +67128864ns 1180243 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67129148ns 1180248 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67129546ns 1180255 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67129717ns 1180258 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67130171ns 1180266 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67130342ns 1180269 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67130626ns 1180274 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67130910ns 1180279 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67131194ns 1180284 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67131649ns 1180292 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67131820ns 1180295 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67132104ns 1180300 1a110850 fd5ff06f jal x0, -44 +67132388ns 1180305 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67132672ns 1180310 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67133070ns 1180317 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67133240ns 1180320 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67133695ns 1180328 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67133866ns 1180331 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67134150ns 1180336 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67134434ns 1180341 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67134718ns 1180346 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67135173ns 1180354 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67135343ns 1180357 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67135627ns 1180362 1a110850 fd5ff06f jal x0, -44 +67135911ns 1180367 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67136196ns 1180372 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67136593ns 1180379 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67136764ns 1180382 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67137219ns 1180390 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67137389ns 1180393 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67137673ns 1180398 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67137957ns 1180403 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67138242ns 1180408 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67138696ns 1180416 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67138867ns 1180419 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67139151ns 1180424 1a110850 fd5ff06f jal x0, -44 +67139435ns 1180429 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67139719ns 1180434 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67140117ns 1180441 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67140288ns 1180444 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67140742ns 1180452 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67140913ns 1180455 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67141197ns 1180460 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67141481ns 1180465 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67141765ns 1180470 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67142220ns 1180478 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67142390ns 1180481 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67142674ns 1180486 1a110850 fd5ff06f jal x0, -44 +67142959ns 1180491 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67143243ns 1180496 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67143641ns 1180503 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67143811ns 1180506 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67144266ns 1180514 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67144436ns 1180517 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67144720ns 1180522 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67145005ns 1180527 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67145289ns 1180532 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67145743ns 1180540 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67145914ns 1180543 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67146198ns 1180548 1a110850 fd5ff06f jal x0, -44 +67146482ns 1180553 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67146766ns 1180558 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67147164ns 1180565 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67147335ns 1180568 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67147789ns 1180576 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67147960ns 1180579 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67148244ns 1180584 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67148528ns 1180589 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67148812ns 1180594 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67149267ns 1180602 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67149437ns 1180605 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67149722ns 1180610 1a110850 fd5ff06f jal x0, -44 +67150006ns 1180615 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67150290ns 1180620 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67150688ns 1180627 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67150858ns 1180630 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67151313ns 1180638 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67151483ns 1180641 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67151768ns 1180646 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67152052ns 1180651 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67152336ns 1180656 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67152791ns 1180664 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67152961ns 1180667 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67153245ns 1180672 1a110850 fd5ff06f jal x0, -44 +67153529ns 1180677 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67153814ns 1180682 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67154211ns 1180689 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67154382ns 1180692 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67154837ns 1180700 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67155007ns 1180703 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67155291ns 1180708 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67155575ns 1180713 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67155859ns 1180718 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67156314ns 1180726 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67156485ns 1180729 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67156769ns 1180734 1a110850 fd5ff06f jal x0, -44 +67157053ns 1180739 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67157337ns 1180744 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67157735ns 1180751 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67157905ns 1180754 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67158360ns 1180762 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67158531ns 1180765 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67158815ns 1180770 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67159099ns 1180775 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67159383ns 1180780 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67159838ns 1180788 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67160008ns 1180791 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67160292ns 1180796 1a110850 fd5ff06f jal x0, -44 +67160577ns 1180801 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67160861ns 1180806 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67161259ns 1180813 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67161429ns 1180816 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67161884ns 1180824 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67162054ns 1180827 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67162338ns 1180832 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67162623ns 1180837 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67162907ns 1180842 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67163361ns 1180850 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67163532ns 1180853 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67163816ns 1180858 1a110850 fd5ff06f jal x0, -44 +67164100ns 1180863 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67164384ns 1180868 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67164782ns 1180875 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67164953ns 1180878 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67165407ns 1180886 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67165578ns 1180889 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67165862ns 1180894 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67166146ns 1180899 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67166430ns 1180904 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67166885ns 1180912 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67167055ns 1180915 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67167340ns 1180920 1a110850 fd5ff06f jal x0, -44 +67167624ns 1180925 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67167908ns 1180930 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67168306ns 1180937 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67168476ns 1180940 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67168931ns 1180948 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67169101ns 1180951 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67169386ns 1180956 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67169670ns 1180961 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67169954ns 1180966 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67170408ns 1180974 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67170579ns 1180977 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67170863ns 1180982 1a110850 fd5ff06f jal x0, -44 +67171147ns 1180987 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67171431ns 1180992 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67171829ns 1180999 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67172000ns 1181002 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67172454ns 1181010 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67172625ns 1181013 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67172909ns 1181018 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67173193ns 1181023 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67173477ns 1181028 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67173932ns 1181036 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67174103ns 1181039 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67174387ns 1181044 1a110850 fd5ff06f jal x0, -44 +67174671ns 1181049 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67174955ns 1181054 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67175353ns 1181061 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67175523ns 1181064 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67175978ns 1181072 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67176149ns 1181075 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67176433ns 1181080 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67176717ns 1181085 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67177001ns 1181090 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67177456ns 1181098 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67177626ns 1181101 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67177910ns 1181106 1a110850 fd5ff06f jal x0, -44 +67178194ns 1181111 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67178479ns 1181116 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67178876ns 1181123 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67179047ns 1181126 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67179502ns 1181134 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67179672ns 1181137 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67179956ns 1181142 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67180240ns 1181147 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67180525ns 1181152 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67180979ns 1181160 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67181150ns 1181163 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67181434ns 1181168 1a110850 fd5ff06f jal x0, -44 +67181718ns 1181173 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67182002ns 1181178 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67182400ns 1181185 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67182571ns 1181188 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67183025ns 1181196 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67183196ns 1181199 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67183480ns 1181204 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67183764ns 1181209 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67184048ns 1181214 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67184503ns 1181222 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67184673ns 1181225 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67184957ns 1181230 1a110850 fd5ff06f jal x0, -44 +67185242ns 1181235 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67185526ns 1181240 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67185924ns 1181247 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67186094ns 1181250 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67186549ns 1181258 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67186719ns 1181261 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67187003ns 1181266 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67187288ns 1181271 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67187572ns 1181276 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67188026ns 1181284 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67188197ns 1181287 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67188481ns 1181292 1a110850 fd5ff06f jal x0, -44 +67188765ns 1181297 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67189049ns 1181302 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67189447ns 1181309 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67189618ns 1181312 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67190072ns 1181320 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67190243ns 1181323 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67190527ns 1181328 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67190811ns 1181333 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67191095ns 1181338 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67191550ns 1181346 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67191720ns 1181349 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67192005ns 1181354 1a110850 fd5ff06f jal x0, -44 +67192289ns 1181359 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67192573ns 1181364 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67192971ns 1181371 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67193141ns 1181374 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67193596ns 1181382 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67193766ns 1181385 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67194051ns 1181390 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67194335ns 1181395 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67194619ns 1181400 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67195074ns 1181408 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67195244ns 1181411 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67195528ns 1181416 1a110850 fd5ff06f jal x0, -44 +67195812ns 1181421 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67196097ns 1181426 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67196494ns 1181433 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67196665ns 1181436 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67197120ns 1181444 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67197290ns 1181447 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67197574ns 1181452 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67197858ns 1181457 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67198143ns 1181462 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67198597ns 1181470 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67198768ns 1181473 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67199052ns 1181478 1a110850 fd5ff06f jal x0, -44 +67199336ns 1181483 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67199620ns 1181488 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67200018ns 1181495 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67200188ns 1181498 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67200643ns 1181506 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67200814ns 1181509 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67201098ns 1181514 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67201382ns 1181519 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67201666ns 1181524 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67202121ns 1181532 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67202291ns 1181535 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67202575ns 1181540 1a110850 fd5ff06f jal x0, -44 +67202860ns 1181545 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67203144ns 1181550 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67203542ns 1181557 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67203712ns 1181560 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67204167ns 1181568 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67204337ns 1181571 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67204621ns 1181576 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67204906ns 1181581 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67205190ns 1181586 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67205644ns 1181594 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67205815ns 1181597 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67206099ns 1181602 1a110850 fd5ff06f jal x0, -44 +67206383ns 1181607 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67206667ns 1181612 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67207065ns 1181619 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67207236ns 1181622 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67207690ns 1181630 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67207861ns 1181633 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67208145ns 1181638 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67208429ns 1181643 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67208713ns 1181648 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67209168ns 1181656 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67209338ns 1181659 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67209623ns 1181664 1a110850 fd5ff06f jal x0, -44 +67209907ns 1181669 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67210191ns 1181674 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67210589ns 1181681 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67210759ns 1181684 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67211214ns 1181692 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67211384ns 1181695 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67211669ns 1181700 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67211953ns 1181705 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67212237ns 1181710 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67212691ns 1181718 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67212862ns 1181721 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67213146ns 1181726 1a110850 fd5ff06f jal x0, -44 +67213430ns 1181731 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67213714ns 1181736 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67214112ns 1181743 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67214283ns 1181746 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67214737ns 1181754 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67214908ns 1181757 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67215192ns 1181762 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67215476ns 1181767 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67215760ns 1181772 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67216215ns 1181780 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67216386ns 1181783 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67216670ns 1181788 1a110850 fd5ff06f jal x0, -44 +67216954ns 1181793 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67217238ns 1181798 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67217636ns 1181805 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67217806ns 1181808 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67218261ns 1181816 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67218432ns 1181819 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67218716ns 1181824 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67219000ns 1181829 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67219284ns 1181834 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67219739ns 1181842 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67219909ns 1181845 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67220193ns 1181850 1a110850 fd5ff06f jal x0, -44 +67220477ns 1181855 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67220762ns 1181860 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67221159ns 1181867 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67221330ns 1181870 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67221785ns 1181878 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67221955ns 1181881 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67222239ns 1181886 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67222523ns 1181891 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67222808ns 1181896 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67223262ns 1181904 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67223433ns 1181907 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67223717ns 1181912 1a110850 fd5ff06f jal x0, -44 +67224001ns 1181917 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67224285ns 1181922 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67224683ns 1181929 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67224854ns 1181932 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67225308ns 1181940 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67225479ns 1181943 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67225763ns 1181948 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67226047ns 1181953 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67226331ns 1181958 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67226786ns 1181966 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67226956ns 1181969 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67227240ns 1181974 1a110850 fd5ff06f jal x0, -44 +67227525ns 1181979 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67227809ns 1181984 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67228207ns 1181991 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67228377ns 1181994 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67228832ns 1182002 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67229002ns 1182005 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67229286ns 1182010 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67229571ns 1182015 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67229855ns 1182020 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67230309ns 1182028 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67230480ns 1182031 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67230764ns 1182036 1a110850 fd5ff06f jal x0, -44 +67231048ns 1182041 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67231332ns 1182046 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67231730ns 1182053 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67231901ns 1182056 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67232355ns 1182064 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67232526ns 1182067 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67232810ns 1182072 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67233094ns 1182077 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67233378ns 1182082 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67233833ns 1182090 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67234003ns 1182093 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67234288ns 1182098 1a110850 fd5ff06f jal x0, -44 +67234572ns 1182103 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67234856ns 1182108 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67235254ns 1182115 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67235424ns 1182118 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67235879ns 1182126 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67236049ns 1182129 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67236334ns 1182134 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67236618ns 1182139 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67236902ns 1182144 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67237357ns 1182152 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67237527ns 1182155 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67237811ns 1182160 1a110850 fd5ff06f jal x0, -44 +67238095ns 1182165 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67238380ns 1182170 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67238777ns 1182177 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67238948ns 1182180 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67239403ns 1182188 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67239573ns 1182191 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67239857ns 1182196 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67240141ns 1182201 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67240426ns 1182206 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67240880ns 1182214 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67241051ns 1182217 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67241335ns 1182222 1a110850 fd5ff06f jal x0, -44 +67241619ns 1182227 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67241903ns 1182232 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67242301ns 1182239 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67242471ns 1182242 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67242926ns 1182250 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67243097ns 1182253 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67243381ns 1182258 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67243665ns 1182263 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67243949ns 1182268 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67244404ns 1182276 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67244574ns 1182279 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67244858ns 1182284 1a110850 fd5ff06f jal x0, -44 +67245143ns 1182289 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67245427ns 1182294 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67245825ns 1182301 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67245995ns 1182304 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67246450ns 1182312 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67246620ns 1182315 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67246904ns 1182320 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67247189ns 1182325 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67247473ns 1182330 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67247927ns 1182338 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67248098ns 1182341 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67248382ns 1182346 1a110850 fd5ff06f jal x0, -44 +67248666ns 1182351 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67248950ns 1182356 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67249348ns 1182363 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67249519ns 1182366 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67249973ns 1182374 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67250144ns 1182377 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67250428ns 1182382 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67250712ns 1182387 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67250996ns 1182392 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67251451ns 1182400 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67251621ns 1182403 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67251906ns 1182408 1a110850 fd5ff06f jal x0, -44 +67252190ns 1182413 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67252474ns 1182418 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67252872ns 1182425 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67253042ns 1182428 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67253497ns 1182436 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67253667ns 1182439 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67253952ns 1182444 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67254236ns 1182449 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67254520ns 1182454 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67254975ns 1182462 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67255145ns 1182465 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67255429ns 1182470 1a110850 fd5ff06f jal x0, -44 +67255713ns 1182475 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67255997ns 1182480 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67256395ns 1182487 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67256566ns 1182490 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67257020ns 1182498 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67257191ns 1182501 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67257475ns 1182506 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67257759ns 1182511 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67258043ns 1182516 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67258498ns 1182524 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67258669ns 1182527 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67258953ns 1182532 1a110850 fd5ff06f jal x0, -44 +67259237ns 1182537 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67259521ns 1182542 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67259919ns 1182549 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67260089ns 1182552 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67260544ns 1182560 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67260715ns 1182563 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67260999ns 1182568 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67261283ns 1182573 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67261567ns 1182578 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67262022ns 1182586 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67262192ns 1182589 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67262476ns 1182594 1a110850 fd5ff06f jal x0, -44 +67262760ns 1182599 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67263045ns 1182604 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67263442ns 1182611 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67263613ns 1182614 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67264068ns 1182622 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67264238ns 1182625 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67264522ns 1182630 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67264806ns 1182635 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67265091ns 1182640 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67265545ns 1182648 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67265716ns 1182651 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67266000ns 1182656 1a110850 fd5ff06f jal x0, -44 +67266284ns 1182661 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67266568ns 1182666 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67266966ns 1182673 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67267137ns 1182676 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67267591ns 1182684 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67267762ns 1182687 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67268046ns 1182692 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67268330ns 1182697 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67268614ns 1182702 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67269069ns 1182710 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67269239ns 1182713 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67269523ns 1182718 1a110850 fd5ff06f jal x0, -44 +67269808ns 1182723 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67270092ns 1182728 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67270490ns 1182735 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67270660ns 1182738 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67271115ns 1182746 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67271285ns 1182749 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67271569ns 1182754 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67271854ns 1182759 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67272138ns 1182764 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67272592ns 1182772 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67272763ns 1182775 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67273047ns 1182780 1a110850 fd5ff06f jal x0, -44 +67273331ns 1182785 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67273615ns 1182790 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67274013ns 1182797 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67274184ns 1182800 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67274638ns 1182808 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67274809ns 1182811 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67275093ns 1182816 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67275377ns 1182821 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67275661ns 1182826 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67276116ns 1182834 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67276287ns 1182837 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67276571ns 1182842 1a110850 fd5ff06f jal x0, -44 +67276855ns 1182847 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67277139ns 1182852 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67277537ns 1182859 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67277707ns 1182862 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67278162ns 1182870 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67278332ns 1182873 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67278617ns 1182878 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67278901ns 1182883 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67279185ns 1182888 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67279640ns 1182896 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67279810ns 1182899 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67280094ns 1182904 1a110850 fd5ff06f jal x0, -44 +67280378ns 1182909 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67280663ns 1182914 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67281060ns 1182921 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67281231ns 1182924 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67281686ns 1182932 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67281856ns 1182935 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67282140ns 1182940 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67282424ns 1182945 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67282709ns 1182950 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67283163ns 1182958 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67283334ns 1182961 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67283618ns 1182966 1a110850 fd5ff06f jal x0, -44 +67283902ns 1182971 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67284186ns 1182976 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67284584ns 1182983 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67284754ns 1182986 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67285209ns 1182994 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67285380ns 1182997 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67285664ns 1183002 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67285948ns 1183007 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67286232ns 1183012 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67286687ns 1183020 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67286857ns 1183023 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67287141ns 1183028 1a110850 fd5ff06f jal x0, -44 +67287426ns 1183033 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67287710ns 1183038 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67288108ns 1183045 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67288278ns 1183048 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67288733ns 1183056 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67288903ns 1183059 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67289187ns 1183064 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67289472ns 1183069 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67289756ns 1183074 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67290210ns 1183082 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67290381ns 1183085 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67290665ns 1183090 1a110850 fd5ff06f jal x0, -44 +67290949ns 1183095 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67291233ns 1183100 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67291631ns 1183107 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67291802ns 1183110 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67292256ns 1183118 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67292427ns 1183121 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67292711ns 1183126 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67292995ns 1183131 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67293279ns 1183136 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67293734ns 1183144 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67293904ns 1183147 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67294189ns 1183152 1a110850 fd5ff06f jal x0, -44 +67294473ns 1183157 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67294757ns 1183162 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67295155ns 1183169 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67295325ns 1183172 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67295780ns 1183180 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67295950ns 1183183 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67296235ns 1183188 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67296519ns 1183193 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67296803ns 1183198 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67297258ns 1183206 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67297428ns 1183209 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67297712ns 1183214 1a110850 fd5ff06f jal x0, -44 +67297996ns 1183219 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67298280ns 1183224 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67298678ns 1183231 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67298849ns 1183234 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67299303ns 1183242 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67299474ns 1183245 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67299758ns 1183250 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67300042ns 1183255 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67300326ns 1183260 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67300781ns 1183268 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67300952ns 1183271 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67301236ns 1183276 1a110850 fd5ff06f jal x0, -44 +67301520ns 1183281 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67301804ns 1183286 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67302202ns 1183293 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67302372ns 1183296 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67302827ns 1183304 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67302998ns 1183307 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67303282ns 1183312 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67303566ns 1183317 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67303850ns 1183322 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67304305ns 1183330 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67304475ns 1183333 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67304759ns 1183338 1a110850 fd5ff06f jal x0, -44 +67305043ns 1183343 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67305328ns 1183348 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67305725ns 1183355 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67305896ns 1183358 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67306351ns 1183366 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67306521ns 1183369 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67306805ns 1183374 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67307089ns 1183379 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67307374ns 1183384 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67307828ns 1183392 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67307999ns 1183395 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67308283ns 1183400 1a110850 fd5ff06f jal x0, -44 +67308567ns 1183405 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67308851ns 1183410 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67309249ns 1183417 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67309420ns 1183420 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67309874ns 1183428 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67310045ns 1183431 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67310329ns 1183436 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67310613ns 1183441 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67310897ns 1183446 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67311352ns 1183454 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67311522ns 1183457 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67311807ns 1183462 1a110850 fd5ff06f jal x0, -44 +67312091ns 1183467 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67312375ns 1183472 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67312773ns 1183479 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67312943ns 1183482 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67313398ns 1183490 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67313568ns 1183493 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67313852ns 1183498 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67314137ns 1183503 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67314421ns 1183508 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67314875ns 1183516 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67315046ns 1183519 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67315330ns 1183524 1a110850 fd5ff06f jal x0, -44 +67315614ns 1183529 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67315898ns 1183534 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67316296ns 1183541 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67316467ns 1183544 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67316921ns 1183552 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67317092ns 1183555 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67317376ns 1183560 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67317660ns 1183565 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67317944ns 1183570 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67318399ns 1183578 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67318570ns 1183581 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67318854ns 1183586 1a110850 fd5ff06f jal x0, -44 +67319138ns 1183591 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67319422ns 1183596 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67319820ns 1183603 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67319990ns 1183606 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67320445ns 1183614 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67320615ns 1183617 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67320900ns 1183622 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67321184ns 1183627 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67321468ns 1183632 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67321923ns 1183640 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67322093ns 1183643 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67322377ns 1183648 1a110850 fd5ff06f jal x0, -44 +67322661ns 1183653 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67322946ns 1183658 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67323343ns 1183665 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67323514ns 1183668 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67323969ns 1183676 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67324139ns 1183679 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67324423ns 1183684 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67324707ns 1183689 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67324992ns 1183694 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67325446ns 1183702 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67325617ns 1183705 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67325901ns 1183710 1a110850 fd5ff06f jal x0, -44 +67326185ns 1183715 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67326469ns 1183720 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67326867ns 1183727 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67327037ns 1183730 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67327492ns 1183738 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67327663ns 1183741 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67327947ns 1183746 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67328231ns 1183751 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67328515ns 1183756 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67328970ns 1183764 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67329140ns 1183767 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67329424ns 1183772 1a110850 fd5ff06f jal x0, -44 +67329709ns 1183777 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67329993ns 1183782 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67330391ns 1183789 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67330561ns 1183792 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67331016ns 1183800 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67331186ns 1183803 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67331470ns 1183808 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67331755ns 1183813 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67332039ns 1183818 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67332493ns 1183826 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67332664ns 1183829 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67332948ns 1183834 1a110850 fd5ff06f jal x0, -44 +67333232ns 1183839 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67333516ns 1183844 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67333914ns 1183851 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67334085ns 1183854 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67334539ns 1183862 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67334710ns 1183865 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67334994ns 1183870 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67335278ns 1183875 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67335562ns 1183880 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67336017ns 1183888 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67336187ns 1183891 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67336472ns 1183896 1a110850 fd5ff06f jal x0, -44 +67336756ns 1183901 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67337040ns 1183906 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67337438ns 1183913 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67337608ns 1183916 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67338063ns 1183924 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67338233ns 1183927 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67338518ns 1183932 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67338802ns 1183937 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67339086ns 1183942 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67339541ns 1183950 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67339711ns 1183953 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67339995ns 1183958 1a110850 fd5ff06f jal x0, -44 +67340279ns 1183963 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67340563ns 1183968 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67340961ns 1183975 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67341132ns 1183978 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67341586ns 1183986 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67341757ns 1183989 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67342041ns 1183994 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67342325ns 1183999 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67342609ns 1184004 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67343064ns 1184012 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67343235ns 1184015 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67343519ns 1184020 1a110850 fd5ff06f jal x0, -44 +67343803ns 1184025 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67344087ns 1184030 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67344485ns 1184037 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67344655ns 1184040 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67345110ns 1184048 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67345281ns 1184051 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67345565ns 1184056 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67345849ns 1184061 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67346133ns 1184066 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67346588ns 1184074 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67346758ns 1184077 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67347042ns 1184082 1a110850 fd5ff06f jal x0, -44 +67347327ns 1184087 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67347611ns 1184092 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67348008ns 1184099 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67348179ns 1184102 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67348634ns 1184110 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67348804ns 1184113 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67349088ns 1184118 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67349372ns 1184123 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67349657ns 1184128 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67350111ns 1184136 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67350282ns 1184139 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67350566ns 1184144 1a110850 fd5ff06f jal x0, -44 +67350850ns 1184149 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67351134ns 1184154 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67351532ns 1184161 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67351703ns 1184164 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67352157ns 1184172 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67352328ns 1184175 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67352612ns 1184180 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67352896ns 1184185 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67353180ns 1184190 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67353635ns 1184198 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67353805ns 1184201 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67354090ns 1184206 1a110850 fd5ff06f jal x0, -44 +67354374ns 1184211 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67354658ns 1184216 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67355056ns 1184223 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67355226ns 1184226 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67355681ns 1184234 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67355851ns 1184237 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67356135ns 1184242 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67356420ns 1184247 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67356704ns 1184252 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67357158ns 1184260 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67357329ns 1184263 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67357613ns 1184268 1a110850 fd5ff06f jal x0, -44 +67357897ns 1184273 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67358181ns 1184278 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67358579ns 1184285 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67358750ns 1184288 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67359204ns 1184296 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67359375ns 1184299 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67359659ns 1184304 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67359943ns 1184309 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67360227ns 1184314 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67360682ns 1184322 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67360853ns 1184325 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67361137ns 1184330 1a110850 fd5ff06f jal x0, -44 +67361421ns 1184335 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67361705ns 1184340 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67362103ns 1184347 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67362273ns 1184350 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67362728ns 1184358 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67362898ns 1184361 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67363183ns 1184366 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67363467ns 1184371 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67363751ns 1184376 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67364206ns 1184384 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67364376ns 1184387 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67364660ns 1184392 1a110850 fd5ff06f jal x0, -44 +67364944ns 1184397 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67365229ns 1184402 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67365626ns 1184409 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67365797ns 1184412 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67366252ns 1184420 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67366422ns 1184423 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67366706ns 1184428 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67366990ns 1184433 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67367275ns 1184438 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67367729ns 1184446 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67367900ns 1184449 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67368184ns 1184454 1a110850 fd5ff06f jal x0, -44 +67368468ns 1184459 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67368752ns 1184464 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67369150ns 1184471 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67369320ns 1184474 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67369775ns 1184482 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67369946ns 1184485 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67370230ns 1184490 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67370514ns 1184495 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67370798ns 1184500 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67371253ns 1184508 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67371423ns 1184511 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67371707ns 1184516 1a110850 fd5ff06f jal x0, -44 +67371992ns 1184521 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67372276ns 1184526 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67372674ns 1184533 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67372844ns 1184536 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67373299ns 1184544 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67373469ns 1184547 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67373753ns 1184552 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67374038ns 1184557 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67374322ns 1184562 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67374776ns 1184570 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67374947ns 1184573 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67375231ns 1184578 1a110850 fd5ff06f jal x0, -44 +67375515ns 1184583 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67375799ns 1184588 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67376197ns 1184595 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67376368ns 1184598 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67376822ns 1184606 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67376993ns 1184609 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67377277ns 1184614 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67377561ns 1184619 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67377845ns 1184624 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67378300ns 1184632 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67378470ns 1184635 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67378755ns 1184640 1a110850 fd5ff06f jal x0, -44 +67379039ns 1184645 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67379323ns 1184650 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67379721ns 1184657 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67379891ns 1184660 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67380346ns 1184668 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67380516ns 1184671 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67380801ns 1184676 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67381085ns 1184681 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67381369ns 1184686 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67381824ns 1184694 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67381994ns 1184697 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67382278ns 1184702 1a110850 fd5ff06f jal x0, -44 +67382562ns 1184707 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67382847ns 1184712 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67383244ns 1184719 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67383415ns 1184722 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67383869ns 1184730 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67384040ns 1184733 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67384324ns 1184738 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67384608ns 1184743 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67384892ns 1184748 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67385347ns 1184756 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67385518ns 1184759 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67385802ns 1184764 1a110850 fd5ff06f jal x0, -44 +67386086ns 1184769 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67386370ns 1184774 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67386768ns 1184781 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67386938ns 1184784 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67387393ns 1184792 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67387564ns 1184795 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67387848ns 1184800 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67388132ns 1184805 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67388416ns 1184810 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67388871ns 1184818 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67389041ns 1184821 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67389325ns 1184826 1a110850 fd5ff06f jal x0, -44 +67389610ns 1184831 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67389894ns 1184836 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67390291ns 1184843 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67390462ns 1184846 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67390917ns 1184854 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67391087ns 1184857 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67391371ns 1184862 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67391655ns 1184867 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67391940ns 1184872 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67392394ns 1184880 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67392565ns 1184883 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67392849ns 1184888 1a110850 fd5ff06f jal x0, -44 +67393133ns 1184893 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67393417ns 1184898 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67393815ns 1184905 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67393986ns 1184908 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67394440ns 1184916 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67394611ns 1184919 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67394895ns 1184924 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67395179ns 1184929 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67395463ns 1184934 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67395918ns 1184942 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67396088ns 1184945 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67396373ns 1184950 1a110850 fd5ff06f jal x0, -44 +67396657ns 1184955 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67396941ns 1184960 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67397339ns 1184967 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67397509ns 1184970 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67397964ns 1184978 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67398134ns 1184981 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67398418ns 1184986 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67398703ns 1184991 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67398987ns 1184996 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67399441ns 1185004 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67399612ns 1185007 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67399896ns 1185012 1a110850 fd5ff06f jal x0, -44 +67400180ns 1185017 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67400464ns 1185022 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67400862ns 1185029 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67401033ns 1185032 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67401487ns 1185040 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67401658ns 1185043 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67401942ns 1185048 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67402226ns 1185053 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67402510ns 1185058 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67402965ns 1185066 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67403136ns 1185069 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67403420ns 1185074 1a110850 fd5ff06f jal x0, -44 +67403704ns 1185079 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67403988ns 1185084 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67404386ns 1185091 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67404556ns 1185094 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67405011ns 1185102 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67405181ns 1185105 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67405466ns 1185110 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67405750ns 1185115 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67406034ns 1185120 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67406489ns 1185128 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67406659ns 1185131 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67406943ns 1185136 1a110850 fd5ff06f jal x0, -44 +67407227ns 1185141 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67407512ns 1185146 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67407909ns 1185153 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67408080ns 1185156 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67408535ns 1185164 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67408705ns 1185167 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67408989ns 1185172 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67409273ns 1185177 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67409558ns 1185182 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67410012ns 1185190 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67410183ns 1185193 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67410467ns 1185198 1a110850 fd5ff06f jal x0, -44 +67410751ns 1185203 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67411035ns 1185208 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67411433ns 1185215 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67411603ns 1185218 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67412058ns 1185226 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67412229ns 1185229 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67412513ns 1185234 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67412797ns 1185239 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67413081ns 1185244 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67413536ns 1185252 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67413706ns 1185255 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67413990ns 1185260 1a110850 fd5ff06f jal x0, -44 +67414275ns 1185265 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67414559ns 1185270 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67414957ns 1185277 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67415127ns 1185280 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67415582ns 1185288 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67415752ns 1185291 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67416036ns 1185296 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67416321ns 1185301 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67416605ns 1185306 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67417059ns 1185314 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67417230ns 1185317 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67417514ns 1185322 1a110850 fd5ff06f jal x0, -44 +67417798ns 1185327 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67418082ns 1185332 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67418480ns 1185339 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67418651ns 1185342 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67419105ns 1185350 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67419276ns 1185353 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67419560ns 1185358 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67419844ns 1185363 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67420128ns 1185368 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67420583ns 1185376 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67420753ns 1185379 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67421038ns 1185384 1a110850 fd5ff06f jal x0, -44 +67421322ns 1185389 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67421606ns 1185394 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67422004ns 1185401 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67422174ns 1185404 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67422629ns 1185412 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67422799ns 1185415 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67423084ns 1185420 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67423368ns 1185425 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67423652ns 1185430 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67424107ns 1185438 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67424277ns 1185441 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67424561ns 1185446 1a110850 fd5ff06f jal x0, -44 +67424845ns 1185451 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67425130ns 1185456 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67425527ns 1185463 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67425698ns 1185466 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67426152ns 1185474 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67426323ns 1185477 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67426607ns 1185482 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67426891ns 1185487 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67427175ns 1185492 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67427630ns 1185500 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67427801ns 1185503 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67428085ns 1185508 1a110850 fd5ff06f jal x0, -44 +67428369ns 1185513 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67428653ns 1185518 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67429051ns 1185525 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67429221ns 1185528 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67429676ns 1185536 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67429847ns 1185539 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67430131ns 1185544 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67430415ns 1185549 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67430699ns 1185554 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67431154ns 1185562 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67431324ns 1185565 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67431608ns 1185570 1a110850 fd5ff06f jal x0, -44 +67431893ns 1185575 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67432177ns 1185580 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67432575ns 1185587 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67432745ns 1185590 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67433200ns 1185598 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67433370ns 1185601 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67433654ns 1185606 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67433938ns 1185611 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67434223ns 1185616 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67434677ns 1185624 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67434848ns 1185627 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67435132ns 1185632 1a110850 fd5ff06f jal x0, -44 +67435416ns 1185637 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67435700ns 1185642 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67436098ns 1185649 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67436269ns 1185652 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67436723ns 1185660 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67436894ns 1185663 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67437178ns 1185668 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67437462ns 1185673 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67437746ns 1185678 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67438201ns 1185686 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67438371ns 1185689 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67438656ns 1185694 1a110850 fd5ff06f jal x0, -44 +67438940ns 1185699 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67439224ns 1185704 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67439622ns 1185711 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67439792ns 1185714 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67440247ns 1185722 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67440417ns 1185725 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67440701ns 1185730 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67440986ns 1185735 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67441270ns 1185740 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67441724ns 1185748 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67441895ns 1185751 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67442179ns 1185756 1a110850 fd5ff06f jal x0, -44 +67442463ns 1185761 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67442747ns 1185766 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67443145ns 1185773 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67443316ns 1185776 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67443770ns 1185784 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67443941ns 1185787 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67444225ns 1185792 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67444509ns 1185797 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67444793ns 1185802 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67445248ns 1185810 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67445419ns 1185813 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67445703ns 1185818 1a110850 fd5ff06f jal x0, -44 +67445987ns 1185823 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67446271ns 1185828 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67446669ns 1185835 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67446839ns 1185838 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67447294ns 1185846 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67447464ns 1185849 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67447749ns 1185854 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67448033ns 1185859 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67448317ns 1185864 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67448772ns 1185872 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67448942ns 1185875 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67449226ns 1185880 1a110850 fd5ff06f jal x0, -44 +67449510ns 1185885 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67449795ns 1185890 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67450192ns 1185897 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67450363ns 1185900 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67450818ns 1185908 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67450988ns 1185911 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67451272ns 1185916 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67451556ns 1185921 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67451841ns 1185926 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67452295ns 1185934 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67452466ns 1185937 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67452750ns 1185942 1a110850 fd5ff06f jal x0, -44 +67453034ns 1185947 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67453318ns 1185952 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67453716ns 1185959 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67453887ns 1185962 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67454341ns 1185970 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67454512ns 1185973 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67454796ns 1185978 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67455080ns 1185983 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67455364ns 1185988 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67455819ns 1185996 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67455989ns 1185999 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67456273ns 1186004 1a110850 fd5ff06f jal x0, -44 +67456558ns 1186009 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67456842ns 1186014 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67457240ns 1186021 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67457410ns 1186024 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67457865ns 1186032 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67458035ns 1186035 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67458319ns 1186040 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67458604ns 1186045 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67458888ns 1186050 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67459342ns 1186058 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67459513ns 1186061 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67459797ns 1186066 1a110850 fd5ff06f jal x0, -44 +67460081ns 1186071 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67460365ns 1186076 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67460763ns 1186083 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67460934ns 1186086 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67461388ns 1186094 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67461559ns 1186097 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67461843ns 1186102 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67462127ns 1186107 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67462411ns 1186112 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67462866ns 1186120 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67463036ns 1186123 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67463321ns 1186128 1a110850 fd5ff06f jal x0, -44 +67463605ns 1186133 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67463889ns 1186138 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67464287ns 1186145 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67464457ns 1186148 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67464912ns 1186156 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67465082ns 1186159 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67465367ns 1186164 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67465651ns 1186169 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67465935ns 1186174 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67466390ns 1186182 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67466560ns 1186185 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67466844ns 1186190 1a110850 fd5ff06f jal x0, -44 +67467128ns 1186195 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67467413ns 1186200 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67467810ns 1186207 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67467981ns 1186210 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67468435ns 1186218 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67468606ns 1186221 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67468890ns 1186226 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67469174ns 1186231 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67469458ns 1186236 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67469913ns 1186244 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67470084ns 1186247 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67470368ns 1186252 1a110850 fd5ff06f jal x0, -44 +67470652ns 1186257 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67470936ns 1186262 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67471334ns 1186269 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67471504ns 1186272 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67471959ns 1186280 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67472130ns 1186283 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67472414ns 1186288 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67472698ns 1186293 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67472982ns 1186298 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67473437ns 1186306 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67473607ns 1186309 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67473891ns 1186314 1a110850 fd5ff06f jal x0, -44 +67474176ns 1186319 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67474460ns 1186324 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67474858ns 1186331 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67475028ns 1186334 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67475483ns 1186342 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67475653ns 1186345 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67475937ns 1186350 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67476221ns 1186355 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67476506ns 1186360 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67476960ns 1186368 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67477131ns 1186371 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67477415ns 1186376 1a110850 fd5ff06f jal x0, -44 +67477699ns 1186381 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67477983ns 1186386 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67478381ns 1186393 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67478552ns 1186396 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67479006ns 1186404 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67479177ns 1186407 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67479461ns 1186412 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67479745ns 1186417 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67480029ns 1186422 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67480484ns 1186430 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67480654ns 1186433 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67480939ns 1186438 1a110850 fd5ff06f jal x0, -44 +67481223ns 1186443 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67481507ns 1186448 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67481905ns 1186455 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67482075ns 1186458 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67482530ns 1186466 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67482700ns 1186469 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67482984ns 1186474 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67483269ns 1186479 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67483553ns 1186484 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67484007ns 1186492 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67484178ns 1186495 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67484462ns 1186500 1a110850 fd5ff06f jal x0, -44 +67484746ns 1186505 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67485030ns 1186510 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67485428ns 1186517 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67485599ns 1186520 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67486053ns 1186528 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67486224ns 1186531 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67486508ns 1186536 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67486792ns 1186541 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67487076ns 1186546 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67487531ns 1186554 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67487702ns 1186557 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67487986ns 1186562 1a110850 fd5ff06f jal x0, -44 +67488270ns 1186567 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67488554ns 1186572 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67488952ns 1186579 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67489122ns 1186582 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67489577ns 1186590 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67489747ns 1186593 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67490032ns 1186598 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67490316ns 1186603 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67490600ns 1186608 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67491055ns 1186616 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67491225ns 1186619 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67491509ns 1186624 1a110850 fd5ff06f jal x0, -44 +67491793ns 1186629 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67492078ns 1186634 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67492475ns 1186641 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67492646ns 1186644 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67493101ns 1186652 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67493271ns 1186655 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67493555ns 1186660 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67493839ns 1186665 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67494124ns 1186670 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67494578ns 1186678 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67494749ns 1186681 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67495033ns 1186686 1a110850 fd5ff06f jal x0, -44 +67495317ns 1186691 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67495601ns 1186696 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67495999ns 1186703 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67496170ns 1186706 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67496624ns 1186714 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67496795ns 1186717 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67497079ns 1186722 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67497363ns 1186727 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67497647ns 1186732 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67498102ns 1186740 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67498272ns 1186743 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67498556ns 1186748 1a110850 fd5ff06f jal x0, -44 +67498841ns 1186753 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67499125ns 1186758 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67499523ns 1186765 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67499693ns 1186768 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67500148ns 1186776 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67500318ns 1186779 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67500602ns 1186784 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67500887ns 1186789 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67501171ns 1186794 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67501625ns 1186802 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67501796ns 1186805 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67502080ns 1186810 1a110850 fd5ff06f jal x0, -44 +67502364ns 1186815 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67502648ns 1186820 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67503046ns 1186827 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67503217ns 1186830 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67503671ns 1186838 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67503842ns 1186841 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67504126ns 1186846 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67504410ns 1186851 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67504694ns 1186856 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67505149ns 1186864 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67505319ns 1186867 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67505604ns 1186872 1a110850 fd5ff06f jal x0, -44 +67505888ns 1186877 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67506172ns 1186882 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67506570ns 1186889 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67506740ns 1186892 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67507195ns 1186900 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67507365ns 1186903 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67507650ns 1186908 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67507934ns 1186913 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67508218ns 1186918 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67508673ns 1186926 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67508843ns 1186929 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67509127ns 1186934 1a110850 fd5ff06f jal x0, -44 +67509411ns 1186939 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67509696ns 1186944 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67510093ns 1186951 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67510264ns 1186954 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67510719ns 1186962 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67510889ns 1186965 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67511173ns 1186970 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67511457ns 1186975 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67511741ns 1186980 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67512196ns 1186988 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67512367ns 1186991 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67512651ns 1186996 1a110850 fd5ff06f jal x0, -44 +67512935ns 1187001 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67513219ns 1187006 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67513617ns 1187013 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67513787ns 1187016 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67514242ns 1187024 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67514413ns 1187027 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67514697ns 1187032 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67514981ns 1187037 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67515265ns 1187042 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67515720ns 1187050 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67515890ns 1187053 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67516174ns 1187058 1a110850 fd5ff06f jal x0, -44 +67516459ns 1187063 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67516743ns 1187068 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67517141ns 1187075 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67517311ns 1187078 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67517766ns 1187086 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67517936ns 1187089 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67518220ns 1187094 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67518504ns 1187099 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67518789ns 1187104 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67519243ns 1187112 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67519414ns 1187115 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67519698ns 1187120 1a110850 fd5ff06f jal x0, -44 +67519982ns 1187125 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67520266ns 1187130 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67520664ns 1187137 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67520835ns 1187140 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67521289ns 1187148 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67521460ns 1187151 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67521744ns 1187156 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67522028ns 1187161 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67522312ns 1187166 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67522767ns 1187174 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67522937ns 1187177 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67523222ns 1187182 1a110850 fd5ff06f jal x0, -44 +67523506ns 1187187 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67523790ns 1187192 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67524188ns 1187199 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67524358ns 1187202 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67524813ns 1187210 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67524983ns 1187213 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67525267ns 1187218 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67525552ns 1187223 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67525836ns 1187228 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67526290ns 1187236 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67526461ns 1187239 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67526745ns 1187244 1a110850 fd5ff06f jal x0, -44 +67527029ns 1187249 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67527313ns 1187254 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67527711ns 1187261 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67527882ns 1187264 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67528336ns 1187272 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67528507ns 1187275 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67528791ns 1187280 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67529075ns 1187285 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67529359ns 1187290 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67529814ns 1187298 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67529985ns 1187301 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67530269ns 1187306 1a110850 fd5ff06f jal x0, -44 +67530553ns 1187311 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67530837ns 1187316 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67531235ns 1187323 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67531405ns 1187326 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67531860ns 1187334 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67532031ns 1187337 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67532315ns 1187342 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67532599ns 1187347 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67532883ns 1187352 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67533338ns 1187360 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67533508ns 1187363 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67533792ns 1187368 1a110850 fd5ff06f jal x0, -44 +67534076ns 1187373 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67534361ns 1187378 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67534758ns 1187385 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67534929ns 1187388 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67535384ns 1187396 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67535554ns 1187399 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67535838ns 1187404 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67536122ns 1187409 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67536407ns 1187414 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67536861ns 1187422 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67537032ns 1187425 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67537316ns 1187430 1a110850 fd5ff06f jal x0, -44 +67537600ns 1187435 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67537884ns 1187440 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67538282ns 1187447 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67538453ns 1187450 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67538907ns 1187458 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67539078ns 1187461 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67539362ns 1187466 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67539646ns 1187471 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67539930ns 1187476 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67540385ns 1187484 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67540555ns 1187487 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67540839ns 1187492 1a110850 fd5ff06f jal x0, -44 +67541124ns 1187497 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67541408ns 1187502 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67541806ns 1187509 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67541976ns 1187512 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67542431ns 1187520 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67542601ns 1187523 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67542885ns 1187528 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67543170ns 1187533 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67543454ns 1187538 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67543908ns 1187546 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67544079ns 1187549 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67544363ns 1187554 1a110850 fd5ff06f jal x0, -44 +67544647ns 1187559 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67544931ns 1187564 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67545329ns 1187571 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67545500ns 1187574 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67545954ns 1187582 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67546125ns 1187585 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67546409ns 1187590 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67546693ns 1187595 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67546977ns 1187600 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67547432ns 1187608 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67547602ns 1187611 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67547887ns 1187616 1a110850 fd5ff06f jal x0, -44 +67548171ns 1187621 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67548455ns 1187626 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67548853ns 1187633 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67549023ns 1187636 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67549478ns 1187644 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67549648ns 1187647 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67549933ns 1187652 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67550217ns 1187657 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67550501ns 1187662 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67550956ns 1187670 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67551126ns 1187673 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67551410ns 1187678 1a110850 fd5ff06f jal x0, -44 +67551694ns 1187683 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67551979ns 1187688 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67552376ns 1187695 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67552547ns 1187698 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67553002ns 1187706 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67553172ns 1187709 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67553456ns 1187714 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67553740ns 1187719 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67554024ns 1187724 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67554479ns 1187732 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67554650ns 1187735 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67554934ns 1187740 1a110850 fd5ff06f jal x0, -44 +67555218ns 1187745 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67555502ns 1187750 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67555900ns 1187757 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67556070ns 1187760 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67556525ns 1187768 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67556696ns 1187771 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67556980ns 1187776 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67557264ns 1187781 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67557548ns 1187786 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67558003ns 1187794 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67558173ns 1187797 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67558457ns 1187802 1a110850 fd5ff06f jal x0, -44 +67558742ns 1187807 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67559026ns 1187812 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67559424ns 1187819 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67559594ns 1187822 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67560049ns 1187830 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67560219ns 1187833 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67560503ns 1187838 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67560787ns 1187843 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67561072ns 1187848 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67561526ns 1187856 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67561697ns 1187859 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67561981ns 1187864 1a110850 fd5ff06f jal x0, -44 +67562265ns 1187869 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67562549ns 1187874 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67562947ns 1187881 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67563118ns 1187884 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67563572ns 1187892 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67563743ns 1187895 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67564027ns 1187900 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67564311ns 1187905 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67564595ns 1187910 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67565050ns 1187918 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67565220ns 1187921 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67565505ns 1187926 1a110850 fd5ff06f jal x0, -44 +67565789ns 1187931 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67566073ns 1187936 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67566471ns 1187943 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67566641ns 1187946 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67567096ns 1187954 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67567266ns 1187957 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67567551ns 1187962 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67567835ns 1187967 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67568119ns 1187972 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67568573ns 1187980 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67568744ns 1187983 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67569028ns 1187988 1a110850 fd5ff06f jal x0, -44 +67569312ns 1187993 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67569596ns 1187998 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67569994ns 1188005 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67570165ns 1188008 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67570619ns 1188016 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67570790ns 1188019 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67571074ns 1188024 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67571358ns 1188029 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67571642ns 1188034 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67572097ns 1188042 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67572268ns 1188045 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67572552ns 1188050 1a110850 fd5ff06f jal x0, -44 +67572836ns 1188055 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67573120ns 1188060 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67573518ns 1188067 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67573688ns 1188070 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67574143ns 1188078 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67574314ns 1188081 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67574598ns 1188086 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67574882ns 1188091 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67575166ns 1188096 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67575621ns 1188104 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67575791ns 1188107 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67576075ns 1188112 1a110850 fd5ff06f jal x0, -44 +67576359ns 1188117 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67576644ns 1188122 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67577041ns 1188129 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67577212ns 1188132 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67577667ns 1188140 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67577837ns 1188143 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67578121ns 1188148 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67578405ns 1188153 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67578690ns 1188158 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67579144ns 1188166 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67579315ns 1188169 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67579599ns 1188174 1a110850 fd5ff06f jal x0, -44 +67579883ns 1188179 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67580167ns 1188184 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67580565ns 1188191 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67580736ns 1188194 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67581190ns 1188202 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67581361ns 1188205 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67581645ns 1188210 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67581929ns 1188215 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67582213ns 1188220 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67582668ns 1188228 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67582838ns 1188231 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67583122ns 1188236 1a110850 fd5ff06f jal x0, -44 +67583407ns 1188241 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67583691ns 1188246 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67584089ns 1188253 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67584259ns 1188256 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67584714ns 1188264 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67584884ns 1188267 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67585168ns 1188272 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67585453ns 1188277 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67585737ns 1188282 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67586191ns 1188290 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67586362ns 1188293 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67586646ns 1188298 1a110850 fd5ff06f jal x0, -44 +67586930ns 1188303 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67587214ns 1188308 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67587612ns 1188315 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67587783ns 1188318 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67588237ns 1188326 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67588408ns 1188329 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67588692ns 1188334 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67588976ns 1188339 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67589260ns 1188344 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67589715ns 1188352 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67589885ns 1188355 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67590170ns 1188360 1a110850 fd5ff06f jal x0, -44 +67590454ns 1188365 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67590738ns 1188370 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67591136ns 1188377 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67591306ns 1188380 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67591761ns 1188388 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67591931ns 1188391 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67592216ns 1188396 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67592500ns 1188401 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67592784ns 1188406 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67593239ns 1188414 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67593409ns 1188417 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67593693ns 1188422 1a110850 fd5ff06f jal x0, -44 +67593977ns 1188427 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67594262ns 1188432 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67594659ns 1188439 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67594830ns 1188442 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67595285ns 1188450 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67595455ns 1188453 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67595739ns 1188458 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67596023ns 1188463 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67596307ns 1188468 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67596762ns 1188476 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67596933ns 1188479 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67597217ns 1188484 1a110850 fd5ff06f jal x0, -44 +67597501ns 1188489 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67597785ns 1188494 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67598183ns 1188501 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67598353ns 1188504 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67598808ns 1188512 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67598979ns 1188515 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67599263ns 1188520 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67599547ns 1188525 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67599831ns 1188530 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67600286ns 1188538 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67600456ns 1188541 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67600740ns 1188546 1a110850 fd5ff06f jal x0, -44 +67601025ns 1188551 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67601309ns 1188556 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67601707ns 1188563 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67601877ns 1188566 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67602332ns 1188574 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67602502ns 1188577 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67602786ns 1188582 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67603071ns 1188587 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67603355ns 1188592 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67603809ns 1188600 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67603980ns 1188603 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67604264ns 1188608 1a110850 fd5ff06f jal x0, -44 +67604548ns 1188613 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67604832ns 1188618 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67605230ns 1188625 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67605401ns 1188628 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67605855ns 1188636 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67606026ns 1188639 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67606310ns 1188644 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67606594ns 1188649 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67606878ns 1188654 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67607333ns 1188662 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67607503ns 1188665 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67607788ns 1188670 1a110850 fd5ff06f jal x0, -44 +67608072ns 1188675 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67608356ns 1188680 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67608754ns 1188687 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67608924ns 1188690 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67609379ns 1188698 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67609549ns 1188701 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67609834ns 1188706 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67610118ns 1188711 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67610402ns 1188716 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67610856ns 1188724 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67611027ns 1188727 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67611311ns 1188732 1a110850 fd5ff06f jal x0, -44 +67611595ns 1188737 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67611879ns 1188742 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67612277ns 1188749 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67612448ns 1188752 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67612902ns 1188760 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67613073ns 1188763 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67613357ns 1188768 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67613641ns 1188773 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67613925ns 1188778 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67614380ns 1188786 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67614551ns 1188789 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67614835ns 1188794 1a110850 fd5ff06f jal x0, -44 +67615119ns 1188799 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67615403ns 1188804 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67615801ns 1188811 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67615971ns 1188814 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67616426ns 1188822 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67616597ns 1188825 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67616881ns 1188830 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67617165ns 1188835 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67617449ns 1188840 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67617904ns 1188848 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67618074ns 1188851 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67618358ns 1188856 1a110850 fd5ff06f jal x0, -44 +67618642ns 1188861 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67618927ns 1188866 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67619324ns 1188873 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67619495ns 1188876 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67619950ns 1188884 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67620120ns 1188887 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67620404ns 1188892 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67620688ns 1188897 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67620973ns 1188902 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67621427ns 1188910 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67621598ns 1188913 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67621882ns 1188918 1a110850 fd5ff06f jal x0, -44 +67622166ns 1188923 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67622450ns 1188928 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67622848ns 1188935 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67623019ns 1188938 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67623473ns 1188946 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67623644ns 1188949 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67623928ns 1188954 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67624212ns 1188959 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67624496ns 1188964 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67624951ns 1188972 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67625121ns 1188975 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67625405ns 1188980 1a110850 fd5ff06f jal x0, -44 +67625690ns 1188985 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67625974ns 1188990 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67626372ns 1188997 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67626542ns 1189000 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67626997ns 1189008 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67627167ns 1189011 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67627451ns 1189016 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67627736ns 1189021 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67628020ns 1189026 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67628474ns 1189034 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67628645ns 1189037 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67628929ns 1189042 1a110850 fd5ff06f jal x0, -44 +67629213ns 1189047 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67629497ns 1189052 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67629895ns 1189059 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67630066ns 1189062 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67630520ns 1189070 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67630691ns 1189073 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67630975ns 1189078 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67631259ns 1189083 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67631543ns 1189088 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67631998ns 1189096 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67632168ns 1189099 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67632453ns 1189104 1a110850 fd5ff06f jal x0, -44 +67632737ns 1189109 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67633021ns 1189114 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67633419ns 1189121 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67633589ns 1189124 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67634044ns 1189132 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67634214ns 1189135 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67634499ns 1189140 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67634783ns 1189145 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67635067ns 1189150 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67635522ns 1189158 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67635692ns 1189161 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67635976ns 1189166 1a110850 fd5ff06f jal x0, -44 +67636260ns 1189171 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67636545ns 1189176 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67636942ns 1189183 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67637113ns 1189186 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67637568ns 1189194 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67637738ns 1189197 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67638022ns 1189202 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67638306ns 1189207 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67638591ns 1189212 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67639045ns 1189220 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67639216ns 1189223 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67639500ns 1189228 1a110850 fd5ff06f jal x0, -44 +67639784ns 1189233 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67640068ns 1189238 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67640466ns 1189245 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67640636ns 1189248 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67641091ns 1189256 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67641262ns 1189259 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67641546ns 1189264 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67641830ns 1189269 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67642114ns 1189274 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67642569ns 1189282 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67642739ns 1189285 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67643023ns 1189290 1a110850 fd5ff06f jal x0, -44 +67643308ns 1189295 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67643592ns 1189300 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67643990ns 1189307 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67644160ns 1189310 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67644615ns 1189318 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67644785ns 1189321 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67645069ns 1189326 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67645354ns 1189331 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67645638ns 1189336 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67646092ns 1189344 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67646263ns 1189347 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67646547ns 1189352 1a110850 fd5ff06f jal x0, -44 +67646831ns 1189357 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67647115ns 1189362 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67647513ns 1189369 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67647684ns 1189372 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67648138ns 1189380 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67648309ns 1189383 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67648593ns 1189388 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67648877ns 1189393 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67649161ns 1189398 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67649616ns 1189406 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67649786ns 1189409 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67650071ns 1189414 1a110850 fd5ff06f jal x0, -44 +67650355ns 1189419 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67650639ns 1189424 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67651037ns 1189431 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67651207ns 1189434 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67651662ns 1189442 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67651832ns 1189445 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67652117ns 1189450 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67652401ns 1189455 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67652685ns 1189460 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67653139ns 1189468 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67653310ns 1189471 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67653594ns 1189476 1a110850 fd5ff06f jal x0, -44 +67653878ns 1189481 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67654162ns 1189486 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67654560ns 1189493 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67654731ns 1189496 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67655185ns 1189504 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67655356ns 1189507 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67655640ns 1189512 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67655924ns 1189517 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67656208ns 1189522 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67656663ns 1189530 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67656834ns 1189533 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67657118ns 1189538 1a110850 fd5ff06f jal x0, -44 +67657402ns 1189543 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67657686ns 1189548 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67658084ns 1189555 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67658254ns 1189558 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67658709ns 1189566 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67658880ns 1189569 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67659164ns 1189574 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67659448ns 1189579 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67659732ns 1189584 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67660187ns 1189592 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67660357ns 1189595 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67660641ns 1189600 1a110850 fd5ff06f jal x0, -44 +67660925ns 1189605 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67661210ns 1189610 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67661607ns 1189617 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67661778ns 1189620 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67662233ns 1189628 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67662403ns 1189631 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67662687ns 1189636 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67662971ns 1189641 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67663256ns 1189646 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67663710ns 1189654 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67663881ns 1189657 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67664165ns 1189662 1a110850 fd5ff06f jal x0, -44 +67664449ns 1189667 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67664733ns 1189672 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67665131ns 1189679 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67665302ns 1189682 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67665756ns 1189690 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67665927ns 1189693 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67666211ns 1189698 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67666495ns 1189703 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67666779ns 1189708 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67667234ns 1189716 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67667404ns 1189719 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67667688ns 1189724 1a110850 fd5ff06f jal x0, -44 +67667973ns 1189729 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67668257ns 1189734 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67668655ns 1189741 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67668825ns 1189744 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67669280ns 1189752 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67669450ns 1189755 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67669734ns 1189760 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67670019ns 1189765 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67670303ns 1189770 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67670757ns 1189778 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67670928ns 1189781 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67671212ns 1189786 1a110850 fd5ff06f jal x0, -44 +67671496ns 1189791 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67671780ns 1189796 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67672178ns 1189803 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67672349ns 1189806 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67672803ns 1189814 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67672974ns 1189817 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67673258ns 1189822 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67673542ns 1189827 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67673826ns 1189832 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67674281ns 1189840 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67674451ns 1189843 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67674736ns 1189848 1a110850 fd5ff06f jal x0, -44 +67675020ns 1189853 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67675304ns 1189858 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67675702ns 1189865 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67675872ns 1189868 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67676327ns 1189876 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67676497ns 1189879 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67676782ns 1189884 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67677066ns 1189889 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67677350ns 1189894 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67677805ns 1189902 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67677975ns 1189905 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67678259ns 1189910 1a110850 fd5ff06f jal x0, -44 +67678543ns 1189915 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67678828ns 1189920 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67679225ns 1189927 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67679396ns 1189930 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67679851ns 1189938 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67680021ns 1189941 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67680305ns 1189946 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67680589ns 1189951 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67680874ns 1189956 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67681328ns 1189964 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67681499ns 1189967 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67681783ns 1189972 1a110850 fd5ff06f jal x0, -44 +67682067ns 1189977 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67682351ns 1189982 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67682749ns 1189989 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67682919ns 1189992 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67683374ns 1190000 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67683545ns 1190003 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67683829ns 1190008 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67684113ns 1190013 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67684397ns 1190018 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67684852ns 1190026 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67685022ns 1190029 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67685306ns 1190034 1a110850 fd5ff06f jal x0, -44 +67685591ns 1190039 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67685875ns 1190044 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67686273ns 1190051 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67686443ns 1190054 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67686898ns 1190062 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67687068ns 1190065 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67687352ns 1190070 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67687637ns 1190075 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67687921ns 1190080 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67688375ns 1190088 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67688546ns 1190091 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67688830ns 1190096 1a110850 fd5ff06f jal x0, -44 +67689114ns 1190101 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67689398ns 1190106 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67689796ns 1190113 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67689967ns 1190116 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67690421ns 1190124 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67690592ns 1190127 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67690876ns 1190132 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67691160ns 1190137 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67691444ns 1190142 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67691899ns 1190150 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67692069ns 1190153 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67692354ns 1190158 1a110850 fd5ff06f jal x0, -44 +67692638ns 1190163 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67692922ns 1190168 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67693320ns 1190175 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67693490ns 1190178 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67693945ns 1190186 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67694115ns 1190189 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67694400ns 1190194 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67694684ns 1190199 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67694968ns 1190204 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67695423ns 1190212 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67695593ns 1190215 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67695877ns 1190220 1a110850 fd5ff06f jal x0, -44 +67696161ns 1190225 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67696445ns 1190230 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67696843ns 1190237 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67697014ns 1190240 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67697468ns 1190248 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67697639ns 1190251 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67697923ns 1190256 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67698207ns 1190261 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67698491ns 1190266 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67698946ns 1190274 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67699117ns 1190277 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67699401ns 1190282 1a110850 fd5ff06f jal x0, -44 +67699685ns 1190287 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67699969ns 1190292 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67700367ns 1190299 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67700537ns 1190302 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67700992ns 1190310 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67701163ns 1190313 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67701447ns 1190318 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67701731ns 1190323 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67702015ns 1190328 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67702470ns 1190336 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67702640ns 1190339 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67702924ns 1190344 1a110850 fd5ff06f jal x0, -44 +67703208ns 1190349 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67703493ns 1190354 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67703890ns 1190361 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67704061ns 1190364 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67704516ns 1190372 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67704686ns 1190375 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67704970ns 1190380 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67705254ns 1190385 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67705539ns 1190390 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67705993ns 1190398 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67706164ns 1190401 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67706448ns 1190406 1a110850 fd5ff06f jal x0, -44 +67706732ns 1190411 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67707016ns 1190416 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67707414ns 1190423 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67707585ns 1190426 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67708039ns 1190434 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67708210ns 1190437 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67708494ns 1190442 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67708778ns 1190447 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67709062ns 1190452 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67709517ns 1190460 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67709687ns 1190463 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67709971ns 1190468 1a110850 fd5ff06f jal x0, -44 +67710256ns 1190473 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67710540ns 1190478 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67710938ns 1190485 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67711108ns 1190488 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67711563ns 1190496 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67711733ns 1190499 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67712017ns 1190504 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67712302ns 1190509 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67712586ns 1190514 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67713040ns 1190522 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67713211ns 1190525 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67713495ns 1190530 1a110850 fd5ff06f jal x0, -44 +67713779ns 1190535 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67714063ns 1190540 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67714461ns 1190547 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67714632ns 1190550 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67715086ns 1190558 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67715257ns 1190561 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67715541ns 1190566 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67715825ns 1190571 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67716109ns 1190576 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67716564ns 1190584 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67716735ns 1190587 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67717019ns 1190592 1a110850 fd5ff06f jal x0, -44 +67717303ns 1190597 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67717587ns 1190602 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67717985ns 1190609 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67718155ns 1190612 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67718610ns 1190620 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67718780ns 1190623 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67719065ns 1190628 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67719349ns 1190633 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67719633ns 1190638 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67720088ns 1190646 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67720258ns 1190649 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67720542ns 1190654 1a110850 fd5ff06f jal x0, -44 +67720826ns 1190659 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67721111ns 1190664 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67721508ns 1190671 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67721679ns 1190674 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67722134ns 1190682 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67722304ns 1190685 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67722588ns 1190690 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67722872ns 1190695 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67723157ns 1190700 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67723611ns 1190708 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67723782ns 1190711 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67724066ns 1190716 1a110850 fd5ff06f jal x0, -44 +67724350ns 1190721 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67724634ns 1190726 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67725032ns 1190733 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67725202ns 1190736 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67725657ns 1190744 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67725828ns 1190747 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67726112ns 1190752 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67726396ns 1190757 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67726680ns 1190762 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67727135ns 1190770 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67727305ns 1190773 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67727589ns 1190778 1a110850 fd5ff06f jal x0, -44 +67727874ns 1190783 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67728158ns 1190788 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67728556ns 1190795 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67728726ns 1190798 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67729181ns 1190806 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67729351ns 1190809 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67729635ns 1190814 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67729920ns 1190819 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67730204ns 1190824 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67730658ns 1190832 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67730829ns 1190835 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67731113ns 1190840 1a110850 fd5ff06f jal x0, -44 +67731397ns 1190845 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67731681ns 1190850 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67732079ns 1190857 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67732250ns 1190860 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67732704ns 1190868 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67732875ns 1190871 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67733159ns 1190876 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67733443ns 1190881 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67733727ns 1190886 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67734182ns 1190894 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67734352ns 1190897 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67734637ns 1190902 1a110850 fd5ff06f jal x0, -44 +67734921ns 1190907 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67735205ns 1190912 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67735603ns 1190919 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67735773ns 1190922 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67736228ns 1190930 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67736398ns 1190933 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67736683ns 1190938 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67736967ns 1190943 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67737251ns 1190948 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67737706ns 1190956 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67737876ns 1190959 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67738160ns 1190964 1a110850 fd5ff06f jal x0, -44 +67738444ns 1190969 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67738728ns 1190974 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67739126ns 1190981 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67739297ns 1190984 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67739751ns 1190992 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67739922ns 1190995 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67740206ns 1191000 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67740490ns 1191005 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67740774ns 1191010 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67741229ns 1191018 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67741400ns 1191021 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67741684ns 1191026 1a110850 fd5ff06f jal x0, -44 +67741968ns 1191031 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67742252ns 1191036 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67742650ns 1191043 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67742820ns 1191046 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67743275ns 1191054 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67743446ns 1191057 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67743730ns 1191062 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67744014ns 1191067 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67744298ns 1191072 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67744753ns 1191080 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67744923ns 1191083 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67745207ns 1191088 1a110850 fd5ff06f jal x0, -44 +67745491ns 1191093 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67745776ns 1191098 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67746173ns 1191105 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67746344ns 1191108 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67746799ns 1191116 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67746969ns 1191119 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67747253ns 1191124 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67747537ns 1191129 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67747822ns 1191134 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67748276ns 1191142 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67748447ns 1191145 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67748731ns 1191150 1a110850 fd5ff06f jal x0, -44 +67749015ns 1191155 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67749299ns 1191160 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67749697ns 1191167 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67749868ns 1191170 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67750322ns 1191178 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67750493ns 1191181 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67750777ns 1191186 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67751061ns 1191191 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67751345ns 1191196 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67751800ns 1191204 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67751970ns 1191207 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67752255ns 1191212 1a110850 fd5ff06f jal x0, -44 +67752539ns 1191217 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67752823ns 1191222 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67753221ns 1191229 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67753391ns 1191232 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67753846ns 1191240 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67754016ns 1191243 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67754300ns 1191248 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67754585ns 1191253 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67754869ns 1191258 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67755323ns 1191266 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67755494ns 1191269 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67755778ns 1191274 1a110850 fd5ff06f jal x0, -44 +67756062ns 1191279 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67756346ns 1191284 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67756744ns 1191291 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67756915ns 1191294 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67757369ns 1191302 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67757540ns 1191305 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67757824ns 1191310 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67758108ns 1191315 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67758392ns 1191320 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67758847ns 1191328 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67759018ns 1191331 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67759302ns 1191336 1a110850 fd5ff06f jal x0, -44 +67759586ns 1191341 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67759870ns 1191346 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67760268ns 1191353 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67760438ns 1191356 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67760893ns 1191364 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67761063ns 1191367 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67761348ns 1191372 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67761632ns 1191377 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67761916ns 1191382 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67762371ns 1191390 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67762541ns 1191393 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67762825ns 1191398 1a110850 fd5ff06f jal x0, -44 +67763109ns 1191403 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67763394ns 1191408 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67763791ns 1191415 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67763962ns 1191418 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67764417ns 1191426 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67764587ns 1191429 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67764871ns 1191434 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67765155ns 1191439 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67765440ns 1191444 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67765894ns 1191452 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67766065ns 1191455 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67766349ns 1191460 1a110850 fd5ff06f jal x0, -44 +67766633ns 1191465 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67766917ns 1191470 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67767315ns 1191477 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67767485ns 1191480 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67767940ns 1191488 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67768111ns 1191491 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67768395ns 1191496 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67768679ns 1191501 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67768963ns 1191506 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67769418ns 1191514 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67769588ns 1191517 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67769872ns 1191522 1a110850 fd5ff06f jal x0, -44 +67770157ns 1191527 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67770441ns 1191532 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67770839ns 1191539 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67771009ns 1191542 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67771464ns 1191550 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67771634ns 1191553 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67771918ns 1191558 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67772203ns 1191563 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67772487ns 1191568 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67772941ns 1191576 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67773112ns 1191579 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67773396ns 1191584 1a110850 fd5ff06f jal x0, -44 +67773680ns 1191589 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67773964ns 1191594 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67774362ns 1191601 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67774533ns 1191604 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67774987ns 1191612 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67775158ns 1191615 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67775442ns 1191620 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67775726ns 1191625 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67776010ns 1191630 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67776465ns 1191638 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67776635ns 1191641 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67776920ns 1191646 1a110850 fd5ff06f jal x0, -44 +67777204ns 1191651 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67777488ns 1191656 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67777886ns 1191663 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67778056ns 1191666 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67778511ns 1191674 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67778681ns 1191677 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67778966ns 1191682 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67779250ns 1191687 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67779534ns 1191692 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67779989ns 1191700 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67780159ns 1191703 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67780443ns 1191708 1a110850 fd5ff06f jal x0, -44 +67780727ns 1191713 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67781011ns 1191718 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67781409ns 1191725 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67781580ns 1191728 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67782034ns 1191736 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67782205ns 1191739 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67782489ns 1191744 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67782773ns 1191749 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67783057ns 1191754 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67783512ns 1191762 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67783683ns 1191765 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67783967ns 1191770 1a110850 fd5ff06f jal x0, -44 +67784251ns 1191775 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67784535ns 1191780 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67784933ns 1191787 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67785103ns 1191790 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67785558ns 1191798 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67785729ns 1191801 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67786013ns 1191806 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67786297ns 1191811 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67786581ns 1191816 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67787036ns 1191824 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67787206ns 1191827 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67787490ns 1191832 1a110850 fd5ff06f jal x0, -44 +67787775ns 1191837 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67788059ns 1191842 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67788456ns 1191849 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67788627ns 1191852 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67789082ns 1191860 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67789252ns 1191863 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67789536ns 1191868 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67789820ns 1191873 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67790105ns 1191878 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67790559ns 1191886 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67790730ns 1191889 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67791014ns 1191894 1a110850 fd5ff06f jal x0, -44 +67791298ns 1191899 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67791582ns 1191904 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67791980ns 1191911 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67792151ns 1191914 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67792605ns 1191922 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67792776ns 1191925 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67793060ns 1191930 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67793344ns 1191935 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67793628ns 1191940 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67794083ns 1191948 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67794253ns 1191951 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67794538ns 1191956 1a110850 fd5ff06f jal x0, -44 +67794822ns 1191961 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67795106ns 1191966 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67795504ns 1191973 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67795674ns 1191976 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67796129ns 1191984 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67796299ns 1191987 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67796583ns 1191992 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67796868ns 1191997 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67797152ns 1192002 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67797606ns 1192010 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67797777ns 1192013 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67798061ns 1192018 1a110850 fd5ff06f jal x0, -44 +67798345ns 1192023 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67798629ns 1192028 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67799027ns 1192035 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67799198ns 1192038 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67799652ns 1192046 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67799823ns 1192049 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67800107ns 1192054 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67800391ns 1192059 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67800675ns 1192064 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67801130ns 1192072 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67801301ns 1192075 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67801585ns 1192080 1a110850 fd5ff06f jal x0, -44 +67801869ns 1192085 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67802153ns 1192090 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67802551ns 1192097 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67802721ns 1192100 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67803176ns 1192108 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67803346ns 1192111 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67803631ns 1192116 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67803915ns 1192121 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67804199ns 1192126 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67804654ns 1192134 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67804824ns 1192137 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67805108ns 1192142 1a110850 fd5ff06f jal x0, -44 +67805392ns 1192147 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67805677ns 1192152 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67806074ns 1192159 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67806245ns 1192162 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67806700ns 1192170 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67806870ns 1192173 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67807154ns 1192178 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67807438ns 1192183 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67807723ns 1192188 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67808177ns 1192196 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67808348ns 1192199 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67808632ns 1192204 1a110850 fd5ff06f jal x0, -44 +67808916ns 1192209 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67809200ns 1192214 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67809598ns 1192221 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67809768ns 1192224 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67810223ns 1192232 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67810394ns 1192235 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67810678ns 1192240 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67810962ns 1192245 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67811246ns 1192250 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67811701ns 1192258 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67811871ns 1192261 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67812155ns 1192266 1a110850 fd5ff06f jal x0, -44 +67812440ns 1192271 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67812724ns 1192276 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67813122ns 1192283 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67813292ns 1192286 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67813747ns 1192294 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67813917ns 1192297 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67814201ns 1192302 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67814486ns 1192307 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67814770ns 1192312 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67815224ns 1192320 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67815395ns 1192323 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67815679ns 1192328 1a110850 fd5ff06f jal x0, -44 +67815963ns 1192333 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67816247ns 1192338 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67816645ns 1192345 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67816816ns 1192348 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67817270ns 1192356 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67817441ns 1192359 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67817725ns 1192364 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67818009ns 1192369 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67818293ns 1192374 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67818748ns 1192382 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67818918ns 1192385 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67819203ns 1192390 1a110850 fd5ff06f jal x0, -44 +67819487ns 1192395 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67819771ns 1192400 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67820169ns 1192407 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67820339ns 1192410 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67820794ns 1192418 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67820964ns 1192421 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67821249ns 1192426 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67821533ns 1192431 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67821817ns 1192436 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67822272ns 1192444 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67822442ns 1192447 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67822726ns 1192452 1a110850 fd5ff06f jal x0, -44 +67823010ns 1192457 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67823295ns 1192462 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67823692ns 1192469 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67823863ns 1192472 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67824317ns 1192480 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67824488ns 1192483 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67824772ns 1192488 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67825056ns 1192493 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67825340ns 1192498 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67825795ns 1192506 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67825966ns 1192509 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67826250ns 1192514 1a110850 fd5ff06f jal x0, -44 +67826534ns 1192519 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67826818ns 1192524 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67827216ns 1192531 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67827386ns 1192534 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67827841ns 1192542 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67828012ns 1192545 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67828296ns 1192550 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67828580ns 1192555 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67828864ns 1192560 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67829319ns 1192568 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67829489ns 1192571 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67829773ns 1192576 1a110850 fd5ff06f jal x0, -44 +67830058ns 1192581 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67830342ns 1192586 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67830739ns 1192593 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67830910ns 1192596 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67831365ns 1192604 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67831535ns 1192607 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67831819ns 1192612 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67832103ns 1192617 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67832388ns 1192622 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67832842ns 1192630 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67833013ns 1192633 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67833297ns 1192638 1a110850 fd5ff06f jal x0, -44 +67833581ns 1192643 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67833865ns 1192648 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67834263ns 1192655 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67834434ns 1192658 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67834888ns 1192666 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67835059ns 1192669 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67835343ns 1192674 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67835627ns 1192679 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67835911ns 1192684 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67836366ns 1192692 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67836536ns 1192695 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67836821ns 1192700 1a110850 fd5ff06f jal x0, -44 +67837105ns 1192705 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67837389ns 1192710 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67837787ns 1192717 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67837957ns 1192720 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67838412ns 1192728 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67838582ns 1192731 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67838866ns 1192736 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67839151ns 1192741 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67839435ns 1192746 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67839889ns 1192754 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67840060ns 1192757 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67840344ns 1192762 1a110850 fd5ff06f jal x0, -44 +67840628ns 1192767 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67840912ns 1192772 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67841310ns 1192779 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67841481ns 1192782 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67841935ns 1192790 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67842106ns 1192793 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67842390ns 1192798 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67842674ns 1192803 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67842958ns 1192808 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67843413ns 1192816 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67843584ns 1192819 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67843868ns 1192824 1a110850 fd5ff06f jal x0, -44 +67844152ns 1192829 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67844436ns 1192834 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67844834ns 1192841 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67845004ns 1192844 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67845459ns 1192852 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67845629ns 1192855 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67845914ns 1192860 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67846198ns 1192865 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67846482ns 1192870 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67846937ns 1192878 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67847107ns 1192881 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67847391ns 1192886 1a110850 fd5ff06f jal x0, -44 +67847675ns 1192891 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67847960ns 1192896 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67848357ns 1192903 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67848528ns 1192906 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67848983ns 1192914 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67849153ns 1192917 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67849437ns 1192922 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67849721ns 1192927 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67850006ns 1192932 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67850460ns 1192940 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67850631ns 1192943 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67850915ns 1192948 1a110850 fd5ff06f jal x0, -44 +67851199ns 1192953 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67851483ns 1192958 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67851881ns 1192965 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67852051ns 1192968 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67852506ns 1192976 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67852677ns 1192979 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67852961ns 1192984 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67853245ns 1192989 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67853529ns 1192994 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67853984ns 1193002 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67854154ns 1193005 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67854438ns 1193010 1a110850 fd5ff06f jal x0, -44 +67854723ns 1193015 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67855007ns 1193020 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67855405ns 1193027 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67855575ns 1193030 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67856030ns 1193038 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67856200ns 1193041 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67856484ns 1193046 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67856769ns 1193051 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67857053ns 1193056 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67857507ns 1193064 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67857678ns 1193067 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67857962ns 1193072 1a110850 fd5ff06f jal x0, -44 +67858246ns 1193077 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67858530ns 1193082 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67858928ns 1193089 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67859099ns 1193092 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67859553ns 1193100 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67859724ns 1193103 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67860008ns 1193108 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67860292ns 1193113 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67860576ns 1193118 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67861031ns 1193126 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67861201ns 1193129 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67861486ns 1193134 1a110850 fd5ff06f jal x0, -44 +67861770ns 1193139 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67862054ns 1193144 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67862452ns 1193151 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67862622ns 1193154 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67863077ns 1193162 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67863247ns 1193165 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67863532ns 1193170 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67863816ns 1193175 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67864100ns 1193180 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67864555ns 1193188 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67864725ns 1193191 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67865009ns 1193196 1a110850 fd5ff06f jal x0, -44 +67865293ns 1193201 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67865578ns 1193206 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67865975ns 1193213 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67866146ns 1193216 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67866600ns 1193224 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67866771ns 1193227 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67867055ns 1193232 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67867339ns 1193237 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67867623ns 1193242 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67868078ns 1193250 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67868249ns 1193253 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67868533ns 1193258 1a110850 fd5ff06f jal x0, -44 +67868817ns 1193263 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67869101ns 1193268 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67869499ns 1193275 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67869669ns 1193278 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67870124ns 1193286 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67870295ns 1193289 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67870579ns 1193294 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67870863ns 1193299 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67871147ns 1193304 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67871602ns 1193312 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67871772ns 1193315 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67872056ns 1193320 1a110850 fd5ff06f jal x0, -44 +67872341ns 1193325 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67872625ns 1193330 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67873023ns 1193337 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67873193ns 1193340 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67873648ns 1193348 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67873818ns 1193351 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67874102ns 1193356 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67874386ns 1193361 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67874671ns 1193366 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67875125ns 1193374 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67875296ns 1193377 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67875580ns 1193382 1a110850 fd5ff06f jal x0, -44 +67875864ns 1193387 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67876148ns 1193392 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67876546ns 1193399 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67876717ns 1193402 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67877171ns 1193410 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67877342ns 1193413 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67877626ns 1193418 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67877910ns 1193423 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67878194ns 1193428 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67878649ns 1193436 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67878819ns 1193439 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67879104ns 1193444 1a110850 fd5ff06f jal x0, -44 +67879388ns 1193449 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67879672ns 1193454 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67880070ns 1193461 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67880240ns 1193464 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67880695ns 1193472 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67880865ns 1193475 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67881149ns 1193480 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67881434ns 1193485 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67881718ns 1193490 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67882172ns 1193498 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67882343ns 1193501 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67882627ns 1193506 1a110850 fd5ff06f jal x0, -44 +67882911ns 1193511 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67883195ns 1193516 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67883593ns 1193523 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67883764ns 1193526 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67884218ns 1193534 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67884389ns 1193537 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67884673ns 1193542 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67884957ns 1193547 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67885241ns 1193552 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67885696ns 1193560 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67885867ns 1193563 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67886151ns 1193568 1a110850 fd5ff06f jal x0, -44 +67886435ns 1193573 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67886719ns 1193578 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67887117ns 1193585 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67887287ns 1193588 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67887742ns 1193596 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67887912ns 1193599 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67888197ns 1193604 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67888481ns 1193609 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67888765ns 1193614 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67889220ns 1193622 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67889390ns 1193625 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67889674ns 1193630 1a110850 fd5ff06f jal x0, -44 +67889958ns 1193635 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67890243ns 1193640 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67890640ns 1193647 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67890811ns 1193650 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67891266ns 1193658 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67891436ns 1193661 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67891720ns 1193666 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67892004ns 1193671 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67892289ns 1193676 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67892743ns 1193684 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67892914ns 1193687 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67893198ns 1193692 1a110850 fd5ff06f jal x0, -44 +67893482ns 1193697 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67893766ns 1193702 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67894164ns 1193709 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67894335ns 1193712 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67894789ns 1193720 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67894960ns 1193723 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67895244ns 1193728 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67895528ns 1193733 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67895812ns 1193738 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67896267ns 1193746 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67896437ns 1193749 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67896721ns 1193754 1a110850 fd5ff06f jal x0, -44 +67897006ns 1193759 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67897290ns 1193764 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67897688ns 1193771 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67897858ns 1193774 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67898313ns 1193782 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67898483ns 1193785 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67898767ns 1193790 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67899052ns 1193795 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67899336ns 1193800 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67899790ns 1193808 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67899961ns 1193811 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67900245ns 1193816 1a110850 fd5ff06f jal x0, -44 +67900529ns 1193821 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67900813ns 1193826 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67901211ns 1193833 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67901382ns 1193836 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67901836ns 1193844 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67902007ns 1193847 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67902291ns 1193852 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67902575ns 1193857 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67902859ns 1193862 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67903314ns 1193870 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67903484ns 1193873 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67903769ns 1193878 1a110850 fd5ff06f jal x0, -44 +67904053ns 1193883 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67904337ns 1193888 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67904735ns 1193895 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67904905ns 1193898 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67905360ns 1193906 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67905530ns 1193909 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67905815ns 1193914 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67906099ns 1193919 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67906383ns 1193924 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67906838ns 1193932 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67907008ns 1193935 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67907292ns 1193940 1a110850 fd5ff06f jal x0, -44 +67907576ns 1193945 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67907861ns 1193950 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67908258ns 1193957 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67908429ns 1193960 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67908883ns 1193968 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67909054ns 1193971 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67909338ns 1193976 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67909622ns 1193981 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67909906ns 1193986 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67910361ns 1193994 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67910532ns 1193997 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67910816ns 1194002 1a110850 fd5ff06f jal x0, -44 +67911100ns 1194007 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67911384ns 1194012 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67911782ns 1194019 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67911952ns 1194022 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67912407ns 1194030 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67912578ns 1194033 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67912862ns 1194038 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67913146ns 1194043 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67913430ns 1194048 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67913885ns 1194056 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67914055ns 1194059 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67914339ns 1194064 1a110850 fd5ff06f jal x0, -44 +67914624ns 1194069 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67914908ns 1194074 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67915306ns 1194081 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67915476ns 1194084 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67915931ns 1194092 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67916101ns 1194095 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67916385ns 1194100 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67916669ns 1194105 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67916954ns 1194110 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67917408ns 1194118 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67917579ns 1194121 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67917863ns 1194126 1a110850 fd5ff06f jal x0, -44 +67918147ns 1194131 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67918431ns 1194136 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67918829ns 1194143 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67919000ns 1194146 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67919454ns 1194154 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67919625ns 1194157 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67919909ns 1194162 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67920193ns 1194167 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67920477ns 1194172 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67920932ns 1194180 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67921102ns 1194183 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67921387ns 1194188 1a110850 fd5ff06f jal x0, -44 +67921671ns 1194193 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67921955ns 1194198 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67922353ns 1194205 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67922523ns 1194208 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67922978ns 1194216 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67923148ns 1194219 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67923432ns 1194224 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67923717ns 1194229 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67924001ns 1194234 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67924455ns 1194242 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67924626ns 1194245 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67924910ns 1194250 1a110850 fd5ff06f jal x0, -44 +67925194ns 1194255 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67925478ns 1194260 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67925876ns 1194267 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67926047ns 1194270 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67926501ns 1194278 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67926672ns 1194281 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67926956ns 1194286 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67927240ns 1194291 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67927524ns 1194296 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67927979ns 1194304 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67928150ns 1194307 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67928434ns 1194312 1a110850 fd5ff06f jal x0, -44 +67928718ns 1194317 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67929002ns 1194322 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67929400ns 1194329 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67929570ns 1194332 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67930025ns 1194340 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67930195ns 1194343 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67930480ns 1194348 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67930764ns 1194353 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67931048ns 1194358 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67931503ns 1194366 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67931673ns 1194369 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67931957ns 1194374 1a110850 fd5ff06f jal x0, -44 +67932241ns 1194379 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67932526ns 1194384 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67932923ns 1194391 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67933094ns 1194394 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67933549ns 1194402 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67933719ns 1194405 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67934003ns 1194410 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67934287ns 1194415 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67934572ns 1194420 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67935026ns 1194428 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67935197ns 1194431 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67935481ns 1194436 1a110850 fd5ff06f jal x0, -44 +67935765ns 1194441 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67936049ns 1194446 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67936447ns 1194453 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67936618ns 1194456 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67937072ns 1194464 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67937243ns 1194467 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67937527ns 1194472 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67937811ns 1194477 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67938095ns 1194482 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67938550ns 1194490 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67938720ns 1194493 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67939004ns 1194498 1a110850 fd5ff06f jal x0, -44 +67939289ns 1194503 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67939573ns 1194508 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67939971ns 1194515 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67940141ns 1194518 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67940596ns 1194526 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67940766ns 1194529 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67941050ns 1194534 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67941335ns 1194539 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67941619ns 1194544 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67942073ns 1194552 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67942244ns 1194555 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67942528ns 1194560 1a110850 fd5ff06f jal x0, -44 +67942812ns 1194565 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67943096ns 1194570 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67943494ns 1194577 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67943665ns 1194580 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67944119ns 1194588 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67944290ns 1194591 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67944574ns 1194596 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67944858ns 1194601 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67945142ns 1194606 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67945597ns 1194614 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67945767ns 1194617 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67946052ns 1194622 1a110850 fd5ff06f jal x0, -44 +67946336ns 1194627 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67946620ns 1194632 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67947018ns 1194639 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67947188ns 1194642 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67947643ns 1194650 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67947813ns 1194653 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67948098ns 1194658 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67948382ns 1194663 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67948666ns 1194668 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67949121ns 1194676 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67949291ns 1194679 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67949575ns 1194684 1a110850 fd5ff06f jal x0, -44 +67949859ns 1194689 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67950144ns 1194694 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67950541ns 1194701 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67950712ns 1194704 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67951167ns 1194712 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67951337ns 1194715 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67951621ns 1194720 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67951905ns 1194725 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67952189ns 1194730 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67952644ns 1194738 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67952815ns 1194741 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67953099ns 1194746 1a110850 fd5ff06f jal x0, -44 +67953383ns 1194751 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67953667ns 1194756 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67954065ns 1194763 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67954235ns 1194766 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67954690ns 1194774 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67954861ns 1194777 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67955145ns 1194782 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67955429ns 1194787 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67955713ns 1194792 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67956168ns 1194800 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67956338ns 1194803 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67956622ns 1194808 1a110850 fd5ff06f jal x0, -44 +67956907ns 1194813 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67957191ns 1194818 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67957589ns 1194825 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67957759ns 1194828 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67958214ns 1194836 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67958384ns 1194839 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67958668ns 1194844 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67958952ns 1194849 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67959237ns 1194854 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67959691ns 1194862 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67959862ns 1194865 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67960146ns 1194870 1a110850 fd5ff06f jal x0, -44 +67960430ns 1194875 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67960714ns 1194880 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67961112ns 1194887 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67961283ns 1194890 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67961737ns 1194898 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67961908ns 1194901 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67962192ns 1194906 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67962476ns 1194911 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67962760ns 1194916 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67963215ns 1194924 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67963385ns 1194927 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67963670ns 1194932 1a110850 fd5ff06f jal x0, -44 +67963954ns 1194937 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67964238ns 1194942 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67964636ns 1194949 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67964806ns 1194952 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67965261ns 1194960 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67965431ns 1194963 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67965715ns 1194968 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67966000ns 1194973 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67966284ns 1194978 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67966738ns 1194986 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67966909ns 1194989 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67967193ns 1194994 1a110850 fd5ff06f jal x0, -44 +67967477ns 1194999 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67967761ns 1195004 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67968159ns 1195011 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67968330ns 1195014 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67968784ns 1195022 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67968955ns 1195025 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67969239ns 1195030 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67969523ns 1195035 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67969807ns 1195040 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67970262ns 1195048 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67970433ns 1195051 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67970717ns 1195056 1a110850 fd5ff06f jal x0, -44 +67971001ns 1195061 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67971285ns 1195066 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67971683ns 1195073 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67971853ns 1195076 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67972308ns 1195084 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67972479ns 1195087 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67972763ns 1195092 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67973047ns 1195097 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67973331ns 1195102 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67973786ns 1195110 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67973956ns 1195113 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67974240ns 1195118 1a110850 fd5ff06f jal x0, -44 +67974524ns 1195123 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67974809ns 1195128 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67975206ns 1195135 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67975377ns 1195138 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67975832ns 1195146 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67976002ns 1195149 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67976286ns 1195154 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67976570ns 1195159 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67976855ns 1195164 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67977309ns 1195172 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67977480ns 1195175 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67977764ns 1195180 1a110850 fd5ff06f jal x0, -44 +67978048ns 1195185 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67978332ns 1195190 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67978730ns 1195197 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67978901ns 1195200 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67979355ns 1195208 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67979526ns 1195211 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67979810ns 1195216 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67980094ns 1195221 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67980378ns 1195226 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67980833ns 1195234 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67981003ns 1195237 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67981287ns 1195242 1a110850 fd5ff06f jal x0, -44 +67981572ns 1195247 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67981856ns 1195252 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67982254ns 1195259 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67982424ns 1195262 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67982879ns 1195270 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67983049ns 1195273 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67983333ns 1195278 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67983618ns 1195283 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67983902ns 1195288 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67984356ns 1195296 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67984527ns 1195299 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67984811ns 1195304 1a110850 fd5ff06f jal x0, -44 +67985095ns 1195309 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67985379ns 1195314 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67985777ns 1195321 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67985948ns 1195324 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67986402ns 1195332 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67986573ns 1195335 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67986857ns 1195340 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67987141ns 1195345 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67987425ns 1195350 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67987880ns 1195358 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67988050ns 1195361 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67988335ns 1195366 1a110850 fd5ff06f jal x0, -44 +67988619ns 1195371 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67988903ns 1195376 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67989301ns 1195383 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67989471ns 1195386 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67989926ns 1195394 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67990096ns 1195397 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67990381ns 1195402 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67990665ns 1195407 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67990949ns 1195412 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67991404ns 1195420 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67991574ns 1195423 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67991858ns 1195428 1a110850 fd5ff06f jal x0, -44 +67992142ns 1195433 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67992427ns 1195438 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67992824ns 1195445 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67992995ns 1195448 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67993450ns 1195456 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67993620ns 1195459 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67993904ns 1195464 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67994188ns 1195469 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67994472ns 1195474 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67994927ns 1195482 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67995098ns 1195485 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67995382ns 1195490 1a110850 fd5ff06f jal x0, -44 +67995666ns 1195495 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67995950ns 1195500 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67996348ns 1195507 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67996518ns 1195510 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67996973ns 1195518 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +67997144ns 1195521 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +67997428ns 1195526 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67997712ns 1195531 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +67997996ns 1195536 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +67998451ns 1195544 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +67998621ns 1195547 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +67998905ns 1195552 1a110850 fd5ff06f jal x0, -44 +67999190ns 1195557 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +67999474ns 1195562 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +67999872ns 1195569 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68000042ns 1195572 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68000497ns 1195580 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68000667ns 1195583 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68000951ns 1195588 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68001235ns 1195593 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68001520ns 1195598 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68001974ns 1195606 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68002145ns 1195609 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68002429ns 1195614 1a110850 fd5ff06f jal x0, -44 +68002713ns 1195619 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68002997ns 1195624 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68003395ns 1195631 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68003566ns 1195634 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68004020ns 1195642 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68004191ns 1195645 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68004475ns 1195650 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68004759ns 1195655 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68005043ns 1195660 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68005498ns 1195668 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68005668ns 1195671 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68005953ns 1195676 1a110850 fd5ff06f jal x0, -44 +68006237ns 1195681 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68006521ns 1195686 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68006919ns 1195693 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68007089ns 1195696 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68007544ns 1195704 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68007714ns 1195707 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68007999ns 1195712 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68008283ns 1195717 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68008567ns 1195722 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68009021ns 1195730 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68009192ns 1195733 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68009476ns 1195738 1a110850 fd5ff06f jal x0, -44 +68009760ns 1195743 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68010044ns 1195748 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68010442ns 1195755 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68010613ns 1195758 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68011067ns 1195766 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68011238ns 1195769 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68011522ns 1195774 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68011806ns 1195779 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68012090ns 1195784 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68012545ns 1195792 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68012716ns 1195795 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68013000ns 1195800 1a110850 fd5ff06f jal x0, -44 +68013284ns 1195805 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68013568ns 1195810 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68013966ns 1195817 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68014136ns 1195820 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68014591ns 1195828 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68014762ns 1195831 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68015046ns 1195836 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68015330ns 1195841 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68015614ns 1195846 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68016069ns 1195854 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68016239ns 1195857 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68016523ns 1195862 1a110850 fd5ff06f jal x0, -44 +68016807ns 1195867 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68017092ns 1195872 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68017489ns 1195879 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68017660ns 1195882 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68018115ns 1195890 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68018285ns 1195893 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68018569ns 1195898 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68018853ns 1195903 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68019138ns 1195908 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68019592ns 1195916 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68019763ns 1195919 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68020047ns 1195924 1a110850 fd5ff06f jal x0, -44 +68020331ns 1195929 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68020615ns 1195934 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68021013ns 1195941 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68021184ns 1195944 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68021638ns 1195952 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68021809ns 1195955 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68022093ns 1195960 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68022377ns 1195965 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68022661ns 1195970 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68023116ns 1195978 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68023286ns 1195981 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68023570ns 1195986 1a110850 fd5ff06f jal x0, -44 +68023855ns 1195991 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68024139ns 1195996 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68024537ns 1196003 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68024707ns 1196006 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68025162ns 1196014 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68025332ns 1196017 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68025616ns 1196022 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68025901ns 1196027 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68026185ns 1196032 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68026639ns 1196040 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68026810ns 1196043 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68027094ns 1196048 1a110850 fd5ff06f jal x0, -44 +68027378ns 1196053 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68027662ns 1196058 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68028060ns 1196065 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68028231ns 1196068 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68028685ns 1196076 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68028856ns 1196079 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68029140ns 1196084 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68029424ns 1196089 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68029708ns 1196094 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68030163ns 1196102 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68030333ns 1196105 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68030618ns 1196110 1a110850 fd5ff06f jal x0, -44 +68030902ns 1196115 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68031186ns 1196120 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68031584ns 1196127 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68031754ns 1196130 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68032209ns 1196138 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68032379ns 1196141 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68032664ns 1196146 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68032948ns 1196151 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68033232ns 1196156 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68033687ns 1196164 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68033857ns 1196167 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68034141ns 1196172 1a110850 fd5ff06f jal x0, -44 +68034425ns 1196177 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68034710ns 1196182 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68035107ns 1196189 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68035278ns 1196192 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68035733ns 1196200 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68035903ns 1196203 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68036187ns 1196208 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68036471ns 1196213 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68036755ns 1196218 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68037210ns 1196226 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68037381ns 1196229 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68037665ns 1196234 1a110850 fd5ff06f jal x0, -44 +68037949ns 1196239 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68038233ns 1196244 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68038631ns 1196251 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68038801ns 1196254 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68039256ns 1196262 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68039427ns 1196265 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68039711ns 1196270 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68039995ns 1196275 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68040279ns 1196280 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68040734ns 1196288 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68040904ns 1196291 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68041188ns 1196296 1a110850 fd5ff06f jal x0, -44 +68041473ns 1196301 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68041757ns 1196306 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68042155ns 1196313 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68042325ns 1196316 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68042780ns 1196324 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68042950ns 1196327 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68043234ns 1196332 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68043519ns 1196337 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68043803ns 1196342 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68044257ns 1196350 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68044428ns 1196353 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68044712ns 1196358 1a110850 fd5ff06f jal x0, -44 +68044996ns 1196363 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68045280ns 1196368 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68045678ns 1196375 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68045849ns 1196378 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68046303ns 1196386 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68046474ns 1196389 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68046758ns 1196394 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68047042ns 1196399 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68047326ns 1196404 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68047781ns 1196412 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68047951ns 1196415 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68048236ns 1196420 1a110850 fd5ff06f jal x0, -44 +68048520ns 1196425 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68048804ns 1196430 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68049202ns 1196437 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68049372ns 1196440 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68049827ns 1196448 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68049997ns 1196451 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68050282ns 1196456 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68050566ns 1196461 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68050850ns 1196466 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68051304ns 1196474 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68051475ns 1196477 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68051759ns 1196482 1a110850 fd5ff06f jal x0, -44 +68052043ns 1196487 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68052327ns 1196492 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68052725ns 1196499 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68052896ns 1196502 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68053350ns 1196510 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68053521ns 1196513 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68053805ns 1196518 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68054089ns 1196523 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68054373ns 1196528 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68054828ns 1196536 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68054999ns 1196539 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68055283ns 1196544 1a110850 fd5ff06f jal x0, -44 +68055567ns 1196549 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68055851ns 1196554 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68056249ns 1196561 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68056419ns 1196564 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68056874ns 1196572 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68057045ns 1196575 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68057329ns 1196580 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68057613ns 1196585 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68057897ns 1196590 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68058352ns 1196598 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68058522ns 1196601 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68058806ns 1196606 1a110850 fd5ff06f jal x0, -44 +68059090ns 1196611 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68059375ns 1196616 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68059772ns 1196623 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68059943ns 1196626 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68060398ns 1196634 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68060568ns 1196637 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68060852ns 1196642 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68061136ns 1196647 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68061421ns 1196652 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68061875ns 1196660 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68062046ns 1196663 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68062330ns 1196668 1a110850 fd5ff06f jal x0, -44 +68062614ns 1196673 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68062898ns 1196678 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68063296ns 1196685 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68063467ns 1196688 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68063921ns 1196696 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68064092ns 1196699 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68064376ns 1196704 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68064660ns 1196709 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68064944ns 1196714 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68065399ns 1196722 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68065569ns 1196725 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68065853ns 1196730 1a110850 fd5ff06f jal x0, -44 +68066138ns 1196735 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68066422ns 1196740 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68066820ns 1196747 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68066990ns 1196750 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68067445ns 1196758 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68067615ns 1196761 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68067899ns 1196766 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68068184ns 1196771 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68068468ns 1196776 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68068922ns 1196784 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68069093ns 1196787 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68069377ns 1196792 1a110850 fd5ff06f jal x0, -44 +68069661ns 1196797 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68069945ns 1196802 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68070343ns 1196809 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68070514ns 1196812 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68070968ns 1196820 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68071139ns 1196823 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68071423ns 1196828 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68071707ns 1196833 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68071991ns 1196838 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68072446ns 1196846 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68072616ns 1196849 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68072901ns 1196854 1a110850 fd5ff06f jal x0, -44 +68073185ns 1196859 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68073469ns 1196864 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68073867ns 1196871 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68074037ns 1196874 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68074492ns 1196882 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68074662ns 1196885 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68074947ns 1196890 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68075231ns 1196895 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68075515ns 1196900 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68075970ns 1196908 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68076140ns 1196911 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68076424ns 1196916 1a110850 fd5ff06f jal x0, -44 +68076708ns 1196921 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68076993ns 1196926 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68077390ns 1196933 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68077561ns 1196936 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68078016ns 1196944 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68078186ns 1196947 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68078470ns 1196952 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68078754ns 1196957 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68079039ns 1196962 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68079493ns 1196970 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68079664ns 1196973 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68079948ns 1196978 1a110850 fd5ff06f jal x0, -44 +68080232ns 1196983 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68080516ns 1196988 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68080914ns 1196995 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68081084ns 1196998 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68081539ns 1197006 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68081710ns 1197009 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68081994ns 1197014 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68082278ns 1197019 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68082562ns 1197024 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68083017ns 1197032 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68083187ns 1197035 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68083471ns 1197040 1a110850 fd5ff06f jal x0, -44 +68083756ns 1197045 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68084040ns 1197050 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68084438ns 1197057 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68084608ns 1197060 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68085063ns 1197068 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68085233ns 1197071 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68085517ns 1197076 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68085802ns 1197081 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68086086ns 1197086 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68086540ns 1197094 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68086711ns 1197097 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68086995ns 1197102 1a110850 fd5ff06f jal x0, -44 +68087279ns 1197107 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68087563ns 1197112 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68087961ns 1197119 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68088132ns 1197122 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68088586ns 1197130 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68088757ns 1197133 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68089041ns 1197138 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68089325ns 1197143 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68089609ns 1197148 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68090064ns 1197156 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68090234ns 1197159 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68090519ns 1197164 1a110850 fd5ff06f jal x0, -44 +68090803ns 1197169 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68091087ns 1197174 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68091485ns 1197181 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68091655ns 1197184 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68092110ns 1197192 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68092280ns 1197195 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68092565ns 1197200 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68092849ns 1197205 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68093133ns 1197210 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68093587ns 1197218 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68093758ns 1197221 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68094042ns 1197226 1a110850 fd5ff06f jal x0, -44 +68094326ns 1197231 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68094610ns 1197236 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68095008ns 1197243 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68095179ns 1197246 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68095633ns 1197254 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68095804ns 1197257 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68096088ns 1197262 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68096372ns 1197267 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68096656ns 1197272 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68097111ns 1197280 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68097282ns 1197283 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68097566ns 1197288 1a110850 fd5ff06f jal x0, -44 +68097850ns 1197293 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68098134ns 1197298 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68098532ns 1197305 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68098702ns 1197308 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68099157ns 1197316 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68099328ns 1197319 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68099612ns 1197324 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68099896ns 1197329 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68100180ns 1197334 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68100635ns 1197342 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68100805ns 1197345 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68101089ns 1197350 1a110850 fd5ff06f jal x0, -44 +68101373ns 1197355 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68101658ns 1197360 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68102055ns 1197367 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68102226ns 1197370 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68102681ns 1197378 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68102851ns 1197381 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68103135ns 1197386 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68103419ns 1197391 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68103704ns 1197396 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68104158ns 1197404 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68104329ns 1197407 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68104613ns 1197412 1a110850 fd5ff06f jal x0, -44 +68104897ns 1197417 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68105181ns 1197422 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68105579ns 1197429 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68105750ns 1197432 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68106204ns 1197440 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68106375ns 1197443 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68106659ns 1197448 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68106943ns 1197453 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68107227ns 1197458 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68107682ns 1197466 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68107852ns 1197469 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68108136ns 1197474 1a110850 fd5ff06f jal x0, -44 +68108421ns 1197479 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68108705ns 1197484 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68109103ns 1197491 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68109273ns 1197494 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68109728ns 1197502 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68109898ns 1197505 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68110182ns 1197510 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68110467ns 1197515 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68110751ns 1197520 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68111205ns 1197528 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68111376ns 1197531 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68111660ns 1197536 1a110850 fd5ff06f jal x0, -44 +68111944ns 1197541 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68112228ns 1197546 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68112626ns 1197553 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68112797ns 1197556 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68113251ns 1197564 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68113422ns 1197567 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68113706ns 1197572 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68113990ns 1197577 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68114274ns 1197582 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68114729ns 1197590 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68114899ns 1197593 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68115184ns 1197598 1a110850 fd5ff06f jal x0, -44 +68115468ns 1197603 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68115752ns 1197608 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68116150ns 1197615 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68116320ns 1197618 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68116775ns 1197626 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68116945ns 1197629 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68117230ns 1197634 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68117514ns 1197639 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68117798ns 1197644 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68118253ns 1197652 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68118423ns 1197655 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68118707ns 1197660 1a110850 fd5ff06f jal x0, -44 +68118991ns 1197665 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68119276ns 1197670 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68119673ns 1197677 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68119844ns 1197680 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68120299ns 1197688 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68120469ns 1197691 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68120753ns 1197696 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68121037ns 1197701 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68121322ns 1197706 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68121776ns 1197714 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68121947ns 1197717 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68122231ns 1197722 1a110850 fd5ff06f jal x0, -44 +68122515ns 1197727 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68122799ns 1197732 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68123197ns 1197739 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68123367ns 1197742 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68123822ns 1197750 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68123993ns 1197753 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68124277ns 1197758 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68124561ns 1197763 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68124845ns 1197768 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68125300ns 1197776 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68125470ns 1197779 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68125754ns 1197784 1a110850 fd5ff06f jal x0, -44 +68126039ns 1197789 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68126323ns 1197794 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68126721ns 1197801 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68126891ns 1197804 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68127346ns 1197812 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68127516ns 1197815 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68127800ns 1197820 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68128085ns 1197825 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68128369ns 1197830 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68128823ns 1197838 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68128994ns 1197841 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68129278ns 1197846 1a110850 fd5ff06f jal x0, -44 +68129562ns 1197851 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68129846ns 1197856 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68130244ns 1197863 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68130415ns 1197866 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68130869ns 1197874 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68131040ns 1197877 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68131324ns 1197882 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68131608ns 1197887 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68131892ns 1197892 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68132347ns 1197900 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68132517ns 1197903 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68132802ns 1197908 1a110850 fd5ff06f jal x0, -44 +68133086ns 1197913 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68133370ns 1197918 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68133768ns 1197925 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68133938ns 1197928 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68134393ns 1197936 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68134563ns 1197939 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68134848ns 1197944 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68135132ns 1197949 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68135416ns 1197954 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68135871ns 1197962 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68136041ns 1197965 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68136325ns 1197970 1a110850 fd5ff06f jal x0, -44 +68136609ns 1197975 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68136893ns 1197980 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68137291ns 1197987 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68137462ns 1197990 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68137916ns 1197998 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68138087ns 1198001 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68138371ns 1198006 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68138655ns 1198011 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68138939ns 1198016 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68139394ns 1198024 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68139565ns 1198027 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68139849ns 1198032 1a110850 fd5ff06f jal x0, -44 +68140133ns 1198037 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68140417ns 1198042 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68140815ns 1198049 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68140985ns 1198052 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68141440ns 1198060 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68141611ns 1198063 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68141895ns 1198068 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68142179ns 1198073 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68142463ns 1198078 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68142918ns 1198086 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68143088ns 1198089 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68143372ns 1198094 1a110850 fd5ff06f jal x0, -44 +68143656ns 1198099 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68143941ns 1198104 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68144338ns 1198111 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68144509ns 1198114 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68144964ns 1198122 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68145134ns 1198125 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68145418ns 1198130 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68145702ns 1198135 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68145987ns 1198140 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68146441ns 1198148 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68146612ns 1198151 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68146896ns 1198156 1a110850 fd5ff06f jal x0, -44 +68147180ns 1198161 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68147464ns 1198166 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68147862ns 1198173 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68148033ns 1198176 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68148487ns 1198184 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68148658ns 1198187 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68148942ns 1198192 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68149226ns 1198197 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68149510ns 1198202 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68149965ns 1198210 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68150135ns 1198213 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68150419ns 1198218 1a110850 fd5ff06f jal x0, -44 +68150704ns 1198223 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68150988ns 1198228 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68151386ns 1198235 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68151556ns 1198238 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68152011ns 1198246 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68152181ns 1198249 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68152465ns 1198254 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68152750ns 1198259 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68153034ns 1198264 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68153488ns 1198272 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68153659ns 1198275 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68153943ns 1198280 1a110850 fd5ff06f jal x0, -44 +68154227ns 1198285 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68154511ns 1198290 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68154909ns 1198297 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68155080ns 1198300 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68155534ns 1198308 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68155705ns 1198311 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68155989ns 1198316 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68156273ns 1198321 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68156557ns 1198326 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68157012ns 1198334 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68157183ns 1198337 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68157467ns 1198342 1a110850 fd5ff06f jal x0, -44 +68157751ns 1198347 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68158035ns 1198352 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68158433ns 1198359 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68158603ns 1198362 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68159058ns 1198370 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68159228ns 1198373 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68159513ns 1198378 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68159797ns 1198383 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68160081ns 1198388 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68160536ns 1198396 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68160706ns 1198399 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68160990ns 1198404 1a110850 fd5ff06f jal x0, -44 +68161274ns 1198409 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68161559ns 1198414 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68161956ns 1198421 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68162127ns 1198424 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68162582ns 1198432 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68162752ns 1198435 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68163036ns 1198440 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68163320ns 1198445 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68163605ns 1198450 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68164059ns 1198458 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68164230ns 1198461 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68164514ns 1198466 1a110850 fd5ff06f jal x0, -44 +68164798ns 1198471 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68165082ns 1198476 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68165480ns 1198483 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68165650ns 1198486 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68166105ns 1198494 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68166276ns 1198497 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68166560ns 1198502 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68166844ns 1198507 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68167128ns 1198512 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68167583ns 1198520 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68167753ns 1198523 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68168037ns 1198528 1a110850 fd5ff06f jal x0, -44 +68168322ns 1198533 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68168606ns 1198538 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68169004ns 1198545 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68169174ns 1198548 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68169629ns 1198556 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68169799ns 1198559 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68170083ns 1198564 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68170368ns 1198569 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68170652ns 1198574 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68171106ns 1198582 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68171277ns 1198585 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68171561ns 1198590 1a110850 fd5ff06f jal x0, -44 +68171845ns 1198595 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68172129ns 1198600 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68172527ns 1198607 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68172698ns 1198610 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68173152ns 1198618 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68173323ns 1198621 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68173607ns 1198626 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68173891ns 1198631 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68174175ns 1198636 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68174630ns 1198644 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68174800ns 1198647 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68175085ns 1198652 1a110850 fd5ff06f jal x0, -44 +68175369ns 1198657 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68175653ns 1198662 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68176051ns 1198669 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68176221ns 1198672 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68176676ns 1198680 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68176846ns 1198683 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68177131ns 1198688 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68177415ns 1198693 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68177699ns 1198698 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68178154ns 1198706 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68178324ns 1198709 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68178608ns 1198714 1a110850 fd5ff06f jal x0, -44 +68178892ns 1198719 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68179176ns 1198724 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68179574ns 1198731 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68179745ns 1198734 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68180199ns 1198742 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68180370ns 1198745 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68180654ns 1198750 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68180938ns 1198755 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68181222ns 1198760 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68181677ns 1198768 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68181848ns 1198771 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68182132ns 1198776 1a110850 fd5ff06f jal x0, -44 +68182416ns 1198781 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68182700ns 1198786 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68183098ns 1198793 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68183268ns 1198796 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68183723ns 1198804 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68183894ns 1198807 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68184178ns 1198812 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68184462ns 1198817 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68184746ns 1198822 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68185201ns 1198830 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68185371ns 1198833 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68185655ns 1198838 1a110850 fd5ff06f jal x0, -44 +68185939ns 1198843 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68186224ns 1198848 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68186621ns 1198855 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68186792ns 1198858 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68187247ns 1198866 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68187417ns 1198869 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68187701ns 1198874 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68187985ns 1198879 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68188270ns 1198884 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68188724ns 1198892 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68188895ns 1198895 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68189179ns 1198900 1a110850 fd5ff06f jal x0, -44 +68189463ns 1198905 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68189747ns 1198910 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68190145ns 1198917 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68190316ns 1198920 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68190770ns 1198928 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68190941ns 1198931 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68191225ns 1198936 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68191509ns 1198941 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68191793ns 1198946 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68192248ns 1198954 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68192418ns 1198957 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68192703ns 1198962 1a110850 fd5ff06f jal x0, -44 +68192987ns 1198967 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68193271ns 1198972 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68193669ns 1198979 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68193839ns 1198982 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68194294ns 1198990 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68194464ns 1198993 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68194748ns 1198998 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68195033ns 1199003 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68195317ns 1199008 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68195771ns 1199016 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68195942ns 1199019 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68196226ns 1199024 1a110850 fd5ff06f jal x0, -44 +68196510ns 1199029 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68196794ns 1199034 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68197192ns 1199041 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68197363ns 1199044 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68197817ns 1199052 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68197988ns 1199055 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68198272ns 1199060 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68198556ns 1199065 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68198840ns 1199070 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68199295ns 1199078 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68199466ns 1199081 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68199750ns 1199086 1a110850 fd5ff06f jal x0, -44 +68200034ns 1199091 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68200318ns 1199096 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68200716ns 1199103 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68200886ns 1199106 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68201341ns 1199114 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68201511ns 1199117 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68201796ns 1199122 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68202080ns 1199127 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68202364ns 1199132 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68202819ns 1199140 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68202989ns 1199143 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68203273ns 1199148 1a110850 fd5ff06f jal x0, -44 +68203557ns 1199153 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68203842ns 1199158 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68204239ns 1199165 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68204410ns 1199168 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68204865ns 1199176 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68205035ns 1199179 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68205319ns 1199184 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68205603ns 1199189 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68205888ns 1199194 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68206342ns 1199202 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68206513ns 1199205 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68206797ns 1199210 1a110850 fd5ff06f jal x0, -44 +68207081ns 1199215 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68207365ns 1199220 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68207763ns 1199227 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68207933ns 1199230 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68208388ns 1199238 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68208559ns 1199241 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68208843ns 1199246 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68209127ns 1199251 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68209411ns 1199256 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68209866ns 1199264 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68210036ns 1199267 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68210320ns 1199272 1a110850 fd5ff06f jal x0, -44 +68210605ns 1199277 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68210889ns 1199282 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68211287ns 1199289 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68211457ns 1199292 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68211912ns 1199300 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68212082ns 1199303 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68212366ns 1199308 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68212651ns 1199313 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68212935ns 1199318 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68213389ns 1199326 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68213560ns 1199329 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68213844ns 1199334 1a110850 fd5ff06f jal x0, -44 +68214128ns 1199339 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68214412ns 1199344 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68214810ns 1199351 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68214981ns 1199354 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68215435ns 1199362 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68215606ns 1199365 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68215890ns 1199370 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68216174ns 1199375 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68216458ns 1199380 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68216913ns 1199388 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68217083ns 1199391 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68217368ns 1199396 1a110850 fd5ff06f jal x0, -44 +68217652ns 1199401 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68217936ns 1199406 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68218334ns 1199413 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68218504ns 1199416 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68218959ns 1199424 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68219129ns 1199427 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68219414ns 1199432 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68219698ns 1199437 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68219982ns 1199442 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68220437ns 1199450 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68220607ns 1199453 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68220891ns 1199458 1a110850 fd5ff06f jal x0, -44 +68221175ns 1199463 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68221459ns 1199468 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68221857ns 1199475 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68222028ns 1199478 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68222482ns 1199486 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68222653ns 1199489 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68222937ns 1199494 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68223221ns 1199499 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68223505ns 1199504 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68223960ns 1199512 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68224131ns 1199515 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68224415ns 1199520 1a110850 fd5ff06f jal x0, -44 +68224699ns 1199525 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68224983ns 1199530 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68225381ns 1199537 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68225551ns 1199540 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68226006ns 1199548 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68226177ns 1199551 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68226461ns 1199556 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68226745ns 1199561 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68227029ns 1199566 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68227484ns 1199574 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68227654ns 1199577 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68227938ns 1199582 1a110850 fd5ff06f jal x0, -44 +68228223ns 1199587 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68228507ns 1199592 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68228904ns 1199599 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68229075ns 1199602 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68229530ns 1199610 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68229700ns 1199613 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68229984ns 1199618 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68230268ns 1199623 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68230553ns 1199628 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68231007ns 1199636 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68231178ns 1199639 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68231462ns 1199644 1a110850 fd5ff06f jal x0, -44 +68231746ns 1199649 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68232030ns 1199654 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68232428ns 1199661 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68232599ns 1199664 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68233053ns 1199672 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68233224ns 1199675 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68233508ns 1199680 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68233792ns 1199685 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68234076ns 1199690 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68234531ns 1199698 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68234701ns 1199701 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68234986ns 1199706 1a110850 fd5ff06f jal x0, -44 +68235270ns 1199711 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68235554ns 1199716 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68235952ns 1199723 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68236122ns 1199726 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68236577ns 1199734 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68236747ns 1199737 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68237031ns 1199742 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68237316ns 1199747 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68237600ns 1199752 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68238054ns 1199760 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68238225ns 1199763 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68238509ns 1199768 1a110850 fd5ff06f jal x0, -44 +68238793ns 1199773 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68239077ns 1199778 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68239475ns 1199785 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68239646ns 1199788 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68240100ns 1199796 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68240271ns 1199799 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68240555ns 1199804 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68240839ns 1199809 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68241123ns 1199814 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68241578ns 1199822 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68241749ns 1199825 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68242033ns 1199830 1a110850 fd5ff06f jal x0, -44 +68242317ns 1199835 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68242601ns 1199840 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68242999ns 1199847 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68243169ns 1199850 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68243624ns 1199858 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68243794ns 1199861 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68244079ns 1199866 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68244363ns 1199871 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68244647ns 1199876 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68245102ns 1199884 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68245272ns 1199887 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68245556ns 1199892 1a110850 fd5ff06f jal x0, -44 +68245840ns 1199897 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68246125ns 1199902 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68246522ns 1199909 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68246693ns 1199912 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68247148ns 1199920 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68247318ns 1199923 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68247602ns 1199928 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68247886ns 1199933 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68248171ns 1199938 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68248625ns 1199946 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68248796ns 1199949 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68249080ns 1199954 1a110850 fd5ff06f jal x0, -44 +68249364ns 1199959 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68249648ns 1199964 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68250046ns 1199971 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68250216ns 1199974 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68250671ns 1199982 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68250842ns 1199985 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68251126ns 1199990 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68251410ns 1199995 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68251694ns 1200000 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68252149ns 1200008 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68252319ns 1200011 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68252603ns 1200016 1a110850 fd5ff06f jal x0, -44 +68252888ns 1200021 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68253172ns 1200026 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68253570ns 1200033 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68253740ns 1200036 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68254195ns 1200044 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68254365ns 1200047 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68254649ns 1200052 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68254934ns 1200057 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68255218ns 1200062 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68255672ns 1200070 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68255843ns 1200073 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68256127ns 1200078 1a110850 fd5ff06f jal x0, -44 +68256411ns 1200083 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68256695ns 1200088 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68257093ns 1200095 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68257264ns 1200098 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68257718ns 1200106 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68257889ns 1200109 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68258173ns 1200114 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68258457ns 1200119 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68258741ns 1200124 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68259196ns 1200132 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68259366ns 1200135 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68259651ns 1200140 1a110850 fd5ff06f jal x0, -44 +68259935ns 1200145 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68260219ns 1200150 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68260617ns 1200157 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68260787ns 1200160 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68261242ns 1200168 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68261412ns 1200171 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68261697ns 1200176 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68261981ns 1200181 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68262265ns 1200186 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68262720ns 1200194 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68262890ns 1200197 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68263174ns 1200202 1a110850 fd5ff06f jal x0, -44 +68263458ns 1200207 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68263743ns 1200212 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68264140ns 1200219 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68264311ns 1200222 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68264765ns 1200230 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68264936ns 1200233 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68265220ns 1200238 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68265504ns 1200243 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68265788ns 1200248 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68266243ns 1200256 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68266414ns 1200259 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68266698ns 1200264 1a110850 fd5ff06f jal x0, -44 +68266982ns 1200269 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68267266ns 1200274 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68267664ns 1200281 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68267834ns 1200284 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68268289ns 1200292 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68268460ns 1200295 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68268744ns 1200300 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68269028ns 1200305 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68269312ns 1200310 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68269767ns 1200318 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68269937ns 1200321 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68270221ns 1200326 1a110850 fd5ff06f jal x0, -44 +68270506ns 1200331 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68270790ns 1200336 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68271187ns 1200343 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68271358ns 1200346 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68271813ns 1200354 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68271983ns 1200357 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68272267ns 1200362 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68272551ns 1200367 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68272836ns 1200372 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68273290ns 1200380 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68273461ns 1200383 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68273745ns 1200388 1a110850 fd5ff06f jal x0, -44 +68274029ns 1200393 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68274313ns 1200398 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68274711ns 1200405 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68274882ns 1200408 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68275336ns 1200416 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68275507ns 1200419 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68275791ns 1200424 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68276075ns 1200429 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68276359ns 1200434 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68276814ns 1200442 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68276984ns 1200445 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68277269ns 1200450 1a110850 fd5ff06f jal x0, -44 +68277553ns 1200455 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68277837ns 1200460 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68278235ns 1200467 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68278405ns 1200470 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68278860ns 1200478 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68279030ns 1200481 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68279314ns 1200486 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68279599ns 1200491 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68279883ns 1200496 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68280337ns 1200504 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68280508ns 1200507 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68280792ns 1200512 1a110850 fd5ff06f jal x0, -44 +68281076ns 1200517 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68281360ns 1200522 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68281758ns 1200529 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68281929ns 1200532 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68282383ns 1200540 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68282554ns 1200543 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68282838ns 1200548 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68283122ns 1200553 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68283406ns 1200558 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68283861ns 1200566 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68284032ns 1200569 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68284316ns 1200574 1a110850 fd5ff06f jal x0, -44 +68284600ns 1200579 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68284884ns 1200584 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68285282ns 1200591 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68285452ns 1200594 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68285907ns 1200602 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68286077ns 1200605 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68286362ns 1200610 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68286646ns 1200615 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68286930ns 1200620 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68287385ns 1200628 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68287555ns 1200631 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68287839ns 1200636 1a110850 fd5ff06f jal x0, -44 +68288123ns 1200641 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68288408ns 1200646 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68288805ns 1200653 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68288976ns 1200656 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68289431ns 1200664 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68289601ns 1200667 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68289885ns 1200672 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68290169ns 1200677 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68290454ns 1200682 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68290908ns 1200690 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68291079ns 1200693 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68291363ns 1200698 1a110850 fd5ff06f jal x0, -44 +68291647ns 1200703 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68291931ns 1200708 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68292329ns 1200715 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68292499ns 1200718 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68292954ns 1200726 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68293125ns 1200729 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68293409ns 1200734 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68293693ns 1200739 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68293977ns 1200744 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68294432ns 1200752 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68294602ns 1200755 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68294886ns 1200760 1a110850 fd5ff06f jal x0, -44 +68295171ns 1200765 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68295455ns 1200770 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68295853ns 1200777 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68296023ns 1200780 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68296478ns 1200788 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68296648ns 1200791 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68296932ns 1200796 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68297217ns 1200801 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68297501ns 1200806 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68297955ns 1200814 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68298126ns 1200817 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68298410ns 1200822 1a110850 fd5ff06f jal x0, -44 +68298694ns 1200827 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68298978ns 1200832 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68299376ns 1200839 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68299547ns 1200842 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68300001ns 1200850 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68300172ns 1200853 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68300456ns 1200858 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68300740ns 1200863 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68301024ns 1200868 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68301479ns 1200876 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68301649ns 1200879 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68301934ns 1200884 1a110850 fd5ff06f jal x0, -44 +68302218ns 1200889 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68302502ns 1200894 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68302900ns 1200901 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68303070ns 1200904 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68303525ns 1200912 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68303695ns 1200915 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68303980ns 1200920 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68304264ns 1200925 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68304548ns 1200930 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68305003ns 1200938 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68305173ns 1200941 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68305457ns 1200946 1a110850 fd5ff06f jal x0, -44 +68305741ns 1200951 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68306026ns 1200956 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68306423ns 1200963 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68306594ns 1200966 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68307048ns 1200974 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68307219ns 1200977 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68307503ns 1200982 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68307787ns 1200987 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68308071ns 1200992 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68308526ns 1201000 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68308697ns 1201003 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68308981ns 1201008 1a110850 fd5ff06f jal x0, -44 +68309265ns 1201013 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68309549ns 1201018 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68309947ns 1201025 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68310117ns 1201028 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68310572ns 1201036 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68310743ns 1201039 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68311027ns 1201044 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68311311ns 1201049 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68311595ns 1201054 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68312050ns 1201062 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68312220ns 1201065 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68312504ns 1201070 1a110850 fd5ff06f jal x0, -44 +68312789ns 1201075 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68313073ns 1201080 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68313471ns 1201087 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68313641ns 1201090 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68314096ns 1201098 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68314266ns 1201101 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68314550ns 1201106 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68314834ns 1201111 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68315119ns 1201116 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68315573ns 1201124 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68315744ns 1201127 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68316028ns 1201132 1a110850 fd5ff06f jal x0, -44 +68316312ns 1201137 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68316596ns 1201142 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68316994ns 1201149 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68317165ns 1201152 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68317619ns 1201160 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68317790ns 1201163 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68318074ns 1201168 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68318358ns 1201173 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68318642ns 1201178 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68319097ns 1201186 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68319267ns 1201189 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68319552ns 1201194 1a110850 fd5ff06f jal x0, -44 +68319836ns 1201199 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68320120ns 1201204 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68320518ns 1201211 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68320688ns 1201214 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68321143ns 1201222 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68321313ns 1201225 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68321597ns 1201230 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68321882ns 1201235 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68322166ns 1201240 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68322620ns 1201248 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68322791ns 1201251 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68323075ns 1201256 1a110850 fd5ff06f jal x0, -44 +68323359ns 1201261 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68323643ns 1201266 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68324041ns 1201273 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68324212ns 1201276 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68324666ns 1201284 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68324837ns 1201287 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68325121ns 1201292 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68325405ns 1201297 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68325689ns 1201302 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68326144ns 1201310 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68326315ns 1201313 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68326599ns 1201318 1a110850 fd5ff06f jal x0, -44 +68326883ns 1201323 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68327167ns 1201328 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68327565ns 1201335 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68327735ns 1201338 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68328190ns 1201346 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68328360ns 1201349 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68328645ns 1201354 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68328929ns 1201359 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68329213ns 1201364 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68329668ns 1201372 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68329838ns 1201375 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68330122ns 1201380 1a110850 fd5ff06f jal x0, -44 +68330406ns 1201385 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68330691ns 1201390 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68331088ns 1201397 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68331259ns 1201400 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68331714ns 1201408 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68331884ns 1201411 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68332168ns 1201416 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68332452ns 1201421 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68332737ns 1201426 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68333191ns 1201434 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68333362ns 1201437 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68333646ns 1201442 1a110850 fd5ff06f jal x0, -44 +68333930ns 1201447 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68334214ns 1201452 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68334612ns 1201459 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68334783ns 1201462 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68335237ns 1201470 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68335408ns 1201473 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68335692ns 1201478 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68335976ns 1201483 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68336260ns 1201488 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68336715ns 1201496 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68336885ns 1201499 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68337169ns 1201504 1a110850 fd5ff06f jal x0, -44 +68337454ns 1201509 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68337738ns 1201514 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68338136ns 1201521 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68338306ns 1201524 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68338761ns 1201532 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68338931ns 1201535 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68339215ns 1201540 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68339500ns 1201545 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68339784ns 1201550 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68340238ns 1201558 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68340409ns 1201561 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68340693ns 1201566 1a110850 fd5ff06f jal x0, -44 +68340977ns 1201571 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68341261ns 1201576 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68341659ns 1201583 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68341830ns 1201586 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68342284ns 1201594 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68342455ns 1201597 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68342739ns 1201602 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68343023ns 1201607 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68343307ns 1201612 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68343762ns 1201620 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68343932ns 1201623 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68344217ns 1201628 1a110850 fd5ff06f jal x0, -44 +68344501ns 1201633 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68344785ns 1201638 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68345183ns 1201645 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68345353ns 1201648 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68345808ns 1201656 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68345978ns 1201659 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68346263ns 1201664 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68346547ns 1201669 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68346831ns 1201674 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68347286ns 1201682 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68347456ns 1201685 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68347740ns 1201690 1a110850 fd5ff06f jal x0, -44 +68348024ns 1201695 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68348309ns 1201700 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68348706ns 1201707 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68348877ns 1201710 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68349331ns 1201718 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68349502ns 1201721 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68349786ns 1201726 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68350070ns 1201731 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68350354ns 1201736 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68350809ns 1201744 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68350980ns 1201747 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68351264ns 1201752 1a110850 fd5ff06f jal x0, -44 +68351548ns 1201757 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68351832ns 1201762 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68352230ns 1201769 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68352400ns 1201772 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68352855ns 1201780 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68353026ns 1201783 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68353310ns 1201788 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68353594ns 1201793 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68353878ns 1201798 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68354333ns 1201806 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68354503ns 1201809 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68354787ns 1201814 1a110850 fd5ff06f jal x0, -44 +68355072ns 1201819 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68355356ns 1201824 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68355754ns 1201831 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68355924ns 1201834 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68356379ns 1201842 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68356549ns 1201845 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68356833ns 1201850 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68357117ns 1201855 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68357402ns 1201860 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68357856ns 1201868 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68358027ns 1201871 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68358311ns 1201876 1a110850 fd5ff06f jal x0, -44 +68358595ns 1201881 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68358879ns 1201886 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68359277ns 1201893 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68359448ns 1201896 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68359902ns 1201904 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68360073ns 1201907 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68360357ns 1201912 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68360641ns 1201917 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68360925ns 1201922 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68361380ns 1201930 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68361550ns 1201933 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68361835ns 1201938 1a110850 fd5ff06f jal x0, -44 +68362119ns 1201943 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68362403ns 1201948 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68362801ns 1201955 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68362971ns 1201958 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68363426ns 1201966 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68363596ns 1201969 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68363880ns 1201974 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68364165ns 1201979 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68364449ns 1201984 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68364903ns 1201992 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68365074ns 1201995 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68365358ns 1202000 1a110850 fd5ff06f jal x0, -44 +68365642ns 1202005 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68365926ns 1202010 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68366324ns 1202017 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68366495ns 1202020 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68366949ns 1202028 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68367120ns 1202031 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68367404ns 1202036 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68367688ns 1202041 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68367972ns 1202046 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68368427ns 1202054 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68368598ns 1202057 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68368882ns 1202062 1a110850 fd5ff06f jal x0, -44 +68369166ns 1202067 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68369450ns 1202072 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68369848ns 1202079 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68370018ns 1202082 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68370473ns 1202090 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68370643ns 1202093 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68370928ns 1202098 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68371212ns 1202103 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68371496ns 1202108 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68371951ns 1202116 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68372121ns 1202119 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68372405ns 1202124 1a110850 fd5ff06f jal x0, -44 +68372689ns 1202129 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68372974ns 1202134 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68373371ns 1202141 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68373542ns 1202144 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68373997ns 1202152 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68374167ns 1202155 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68374451ns 1202160 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68374735ns 1202165 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68375020ns 1202170 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68375474ns 1202178 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68375645ns 1202181 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68375929ns 1202186 1a110850 fd5ff06f jal x0, -44 +68376213ns 1202191 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68376497ns 1202196 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68376895ns 1202203 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68377066ns 1202206 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68377520ns 1202214 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68377691ns 1202217 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68377975ns 1202222 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68378259ns 1202227 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68378543ns 1202232 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68378998ns 1202240 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68379168ns 1202243 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68379452ns 1202248 1a110850 fd5ff06f jal x0, -44 +68379737ns 1202253 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68380021ns 1202258 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68380419ns 1202265 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68380589ns 1202268 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68381044ns 1202276 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68381214ns 1202279 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68381498ns 1202284 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68381783ns 1202289 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68382067ns 1202294 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68382521ns 1202302 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68382692ns 1202305 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68382976ns 1202310 1a110850 fd5ff06f jal x0, -44 +68383260ns 1202315 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68383544ns 1202320 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68383942ns 1202327 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68384113ns 1202330 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68384567ns 1202338 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68384738ns 1202341 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68385022ns 1202346 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68385306ns 1202351 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68385590ns 1202356 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68386045ns 1202364 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68386215ns 1202367 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68386500ns 1202372 1a110850 fd5ff06f jal x0, -44 +68386784ns 1202377 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68387068ns 1202382 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68387466ns 1202389 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68387636ns 1202392 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68388091ns 1202400 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68388261ns 1202403 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68388546ns 1202408 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68388830ns 1202413 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68389114ns 1202418 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68389569ns 1202426 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68389739ns 1202429 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68390023ns 1202434 1a110850 fd5ff06f jal x0, -44 +68390307ns 1202439 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68390592ns 1202444 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68390989ns 1202451 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68391160ns 1202454 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68391615ns 1202462 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68391785ns 1202465 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68392069ns 1202470 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68392353ns 1202475 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68392637ns 1202480 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68393092ns 1202488 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68393263ns 1202491 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68393547ns 1202496 1a110850 fd5ff06f jal x0, -44 +68393831ns 1202501 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68394115ns 1202506 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68394513ns 1202513 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68394683ns 1202516 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68395138ns 1202524 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68395309ns 1202527 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68395593ns 1202532 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68395877ns 1202537 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68396161ns 1202542 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68396616ns 1202550 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68396786ns 1202553 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68397070ns 1202558 1a110850 fd5ff06f jal x0, -44 +68397355ns 1202563 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68397639ns 1202568 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68398037ns 1202575 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68398207ns 1202578 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68398662ns 1202586 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68398832ns 1202589 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68399116ns 1202594 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68399400ns 1202599 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68399685ns 1202604 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68400139ns 1202612 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68400310ns 1202615 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68400594ns 1202620 1a110850 fd5ff06f jal x0, -44 +68400878ns 1202625 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68401162ns 1202630 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68401560ns 1202637 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68401731ns 1202640 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68402185ns 1202648 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68402356ns 1202651 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68402640ns 1202656 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68402924ns 1202661 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68403208ns 1202666 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68403663ns 1202674 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68403833ns 1202677 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68404118ns 1202682 1a110850 fd5ff06f jal x0, -44 +68404402ns 1202687 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68404686ns 1202692 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68405084ns 1202699 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68405254ns 1202702 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68405709ns 1202710 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68405879ns 1202713 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68406163ns 1202718 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68406448ns 1202723 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68406732ns 1202728 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68407186ns 1202736 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68407357ns 1202739 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68407641ns 1202744 1a110850 fd5ff06f jal x0, -44 +68407925ns 1202749 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68408209ns 1202754 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68408607ns 1202761 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68408778ns 1202764 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68409232ns 1202772 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68409403ns 1202775 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68409687ns 1202780 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68409971ns 1202785 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68410255ns 1202790 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68410710ns 1202798 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68410881ns 1202801 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68411165ns 1202806 1a110850 fd5ff06f jal x0, -44 +68411449ns 1202811 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68411733ns 1202816 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68412131ns 1202823 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68412301ns 1202826 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68412756ns 1202834 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68412927ns 1202837 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68413211ns 1202842 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68413495ns 1202847 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68413779ns 1202852 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68414234ns 1202860 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68414404ns 1202863 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68414688ns 1202868 1a110850 fd5ff06f jal x0, -44 +68414972ns 1202873 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68415257ns 1202878 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68415654ns 1202885 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68415825ns 1202888 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68416280ns 1202896 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68416450ns 1202899 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68416734ns 1202904 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68417018ns 1202909 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68417303ns 1202914 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68417757ns 1202922 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68417928ns 1202925 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68418212ns 1202930 1a110850 fd5ff06f jal x0, -44 +68418496ns 1202935 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68418780ns 1202940 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68419178ns 1202947 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68419349ns 1202950 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68419803ns 1202958 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68419974ns 1202961 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68420258ns 1202966 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68420542ns 1202971 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68420826ns 1202976 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68421281ns 1202984 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68421451ns 1202987 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68421735ns 1202992 1a110850 fd5ff06f jal x0, -44 +68422020ns 1202997 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68422304ns 1203002 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68422702ns 1203009 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68422872ns 1203012 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68423327ns 1203020 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68423497ns 1203023 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68423781ns 1203028 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68424066ns 1203033 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68424350ns 1203038 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68424804ns 1203046 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68424975ns 1203049 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68425259ns 1203054 1a110850 fd5ff06f jal x0, -44 +68425543ns 1203059 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68425827ns 1203064 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68426225ns 1203071 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68426396ns 1203074 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68426850ns 1203082 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68427021ns 1203085 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68427305ns 1203090 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68427589ns 1203095 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68427873ns 1203100 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68428328ns 1203108 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68428498ns 1203111 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68428783ns 1203116 1a110850 fd5ff06f jal x0, -44 +68429067ns 1203121 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68429351ns 1203126 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68429749ns 1203133 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68429919ns 1203136 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68430374ns 1203144 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68430544ns 1203147 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68430829ns 1203152 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68431113ns 1203157 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68431397ns 1203162 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68431852ns 1203170 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68432022ns 1203173 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68432306ns 1203178 1a110850 fd5ff06f jal x0, -44 +68432590ns 1203183 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68432875ns 1203188 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68433272ns 1203195 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68433443ns 1203198 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68433898ns 1203206 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68434068ns 1203209 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68434352ns 1203214 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68434636ns 1203219 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68434920ns 1203224 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68435375ns 1203232 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68435546ns 1203235 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68435830ns 1203240 1a110850 fd5ff06f jal x0, -44 +68436114ns 1203245 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68436398ns 1203250 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68436796ns 1203257 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68436966ns 1203260 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68437421ns 1203268 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68437592ns 1203271 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68437876ns 1203276 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68438160ns 1203281 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68438444ns 1203286 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68438899ns 1203294 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68439069ns 1203297 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68439353ns 1203302 1a110850 fd5ff06f jal x0, -44 +68439638ns 1203307 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68439922ns 1203312 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68440320ns 1203319 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68440490ns 1203322 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68440945ns 1203330 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68441115ns 1203333 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68441399ns 1203338 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68441683ns 1203343 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68441968ns 1203348 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68442422ns 1203356 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68442593ns 1203359 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68442877ns 1203364 1a110850 fd5ff06f jal x0, -44 +68443161ns 1203369 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68443445ns 1203374 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68443843ns 1203381 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68444014ns 1203384 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68444468ns 1203392 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68444639ns 1203395 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68444923ns 1203400 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68445207ns 1203405 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68445491ns 1203410 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68445946ns 1203418 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68446116ns 1203421 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68446401ns 1203426 1a110850 fd5ff06f jal x0, -44 +68446685ns 1203431 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68446969ns 1203436 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68447367ns 1203443 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68447537ns 1203446 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68447992ns 1203454 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68448162ns 1203457 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68448447ns 1203462 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68448731ns 1203467 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68449015ns 1203472 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68449469ns 1203480 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68449640ns 1203483 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68449924ns 1203488 1a110850 fd5ff06f jal x0, -44 +68450208ns 1203493 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68450492ns 1203498 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68450890ns 1203505 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68451061ns 1203508 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68451515ns 1203516 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68451686ns 1203519 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68451970ns 1203524 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68452254ns 1203529 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68452538ns 1203534 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68452993ns 1203542 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68453164ns 1203545 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68453448ns 1203550 1a110850 fd5ff06f jal x0, -44 +68453732ns 1203555 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68454016ns 1203560 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68454414ns 1203567 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68454584ns 1203570 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68455039ns 1203578 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68455210ns 1203581 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68455494ns 1203586 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68455778ns 1203591 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68456062ns 1203596 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68456517ns 1203604 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68456687ns 1203607 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68456971ns 1203612 1a110850 fd5ff06f jal x0, -44 +68457255ns 1203617 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68457540ns 1203622 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68457937ns 1203629 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68458108ns 1203632 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68458563ns 1203640 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68458733ns 1203643 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68459017ns 1203648 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68459301ns 1203653 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68459586ns 1203658 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68460040ns 1203666 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68460211ns 1203669 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68460495ns 1203674 1a110850 fd5ff06f jal x0, -44 +68460779ns 1203679 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68461063ns 1203684 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68461461ns 1203691 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68461632ns 1203694 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68462086ns 1203702 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68462257ns 1203705 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68462541ns 1203710 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68462825ns 1203715 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68463109ns 1203720 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68463564ns 1203728 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68463734ns 1203731 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68464018ns 1203736 1a110850 fd5ff06f jal x0, -44 +68464303ns 1203741 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68464587ns 1203746 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68464985ns 1203753 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68465155ns 1203756 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68465610ns 1203764 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68465780ns 1203767 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68466064ns 1203772 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68466349ns 1203777 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68466633ns 1203782 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68467087ns 1203790 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68467258ns 1203793 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68467542ns 1203798 1a110850 fd5ff06f jal x0, -44 +68467826ns 1203803 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68468110ns 1203808 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68468508ns 1203815 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68468679ns 1203818 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68469133ns 1203826 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68469304ns 1203829 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68469588ns 1203834 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68469872ns 1203839 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68470156ns 1203844 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68470611ns 1203852 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68470781ns 1203855 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68471066ns 1203860 1a110850 fd5ff06f jal x0, -44 +68471350ns 1203865 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68471634ns 1203870 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68472032ns 1203877 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68472202ns 1203880 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68472657ns 1203888 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68472827ns 1203891 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68473112ns 1203896 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68473396ns 1203901 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68473680ns 1203906 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68474135ns 1203914 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68474305ns 1203917 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68474589ns 1203922 1a110850 fd5ff06f jal x0, -44 +68474873ns 1203927 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68475158ns 1203932 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68475555ns 1203939 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68475726ns 1203942 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68476181ns 1203950 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68476351ns 1203953 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68476635ns 1203958 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68476919ns 1203963 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68477203ns 1203968 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68477658ns 1203976 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68477829ns 1203979 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68478113ns 1203984 1a110850 fd5ff06f jal x0, -44 +68478397ns 1203989 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68478681ns 1203994 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68479079ns 1204001 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68479249ns 1204004 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68479704ns 1204012 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68479875ns 1204015 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68480159ns 1204020 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68480443ns 1204025 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68480727ns 1204030 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68481182ns 1204038 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68481352ns 1204041 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68481636ns 1204046 1a110850 fd5ff06f jal x0, -44 +68481921ns 1204051 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68482205ns 1204056 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68482603ns 1204063 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68482773ns 1204066 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68483228ns 1204074 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68483398ns 1204077 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68483682ns 1204082 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68483967ns 1204087 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68484251ns 1204092 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68484705ns 1204100 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68484876ns 1204103 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68485160ns 1204108 1a110850 fd5ff06f jal x0, -44 +68485444ns 1204113 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68485728ns 1204118 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68486126ns 1204125 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68486297ns 1204128 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68486751ns 1204136 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68486922ns 1204139 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68487206ns 1204144 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68487490ns 1204149 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68487774ns 1204154 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68488229ns 1204162 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68488399ns 1204165 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68488684ns 1204170 1a110850 fd5ff06f jal x0, -44 +68488968ns 1204175 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68489252ns 1204180 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68489650ns 1204187 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68489820ns 1204190 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68490275ns 1204198 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68490445ns 1204201 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68490730ns 1204206 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68491014ns 1204211 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68491298ns 1204216 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68491752ns 1204224 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68491923ns 1204227 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68492207ns 1204232 1a110850 fd5ff06f jal x0, -44 +68492491ns 1204237 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68492775ns 1204242 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68493173ns 1204249 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68493344ns 1204252 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68493798ns 1204260 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68493969ns 1204263 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68494253ns 1204268 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68494537ns 1204273 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68494821ns 1204278 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68495276ns 1204286 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68495447ns 1204289 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68495731ns 1204294 1a110850 fd5ff06f jal x0, -44 +68496015ns 1204299 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68496299ns 1204304 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68496697ns 1204311 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68496867ns 1204314 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68497322ns 1204322 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68497493ns 1204325 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68497777ns 1204330 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68498061ns 1204335 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68498345ns 1204340 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68498800ns 1204348 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68498970ns 1204351 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68499254ns 1204356 1a110850 fd5ff06f jal x0, -44 +68499538ns 1204361 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68499823ns 1204366 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68500220ns 1204373 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68500391ns 1204376 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68500846ns 1204384 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68501016ns 1204387 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68501300ns 1204392 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68501584ns 1204397 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68501869ns 1204402 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68502323ns 1204410 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68502494ns 1204413 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68502778ns 1204418 1a110850 fd5ff06f jal x0, -44 +68503062ns 1204423 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68503346ns 1204428 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68503744ns 1204435 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68503915ns 1204438 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68504369ns 1204446 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68504540ns 1204449 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68504824ns 1204454 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68505108ns 1204459 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68505392ns 1204464 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68505847ns 1204472 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68506017ns 1204475 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68506301ns 1204480 1a110850 fd5ff06f jal x0, -44 +68506586ns 1204485 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68506870ns 1204490 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68507268ns 1204497 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68507438ns 1204500 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68507893ns 1204508 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68508063ns 1204511 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68508347ns 1204516 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68508632ns 1204521 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68508916ns 1204526 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68509370ns 1204534 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68509541ns 1204537 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68509825ns 1204542 1a110850 fd5ff06f jal x0, -44 +68510109ns 1204547 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68510393ns 1204552 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68510791ns 1204559 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68510962ns 1204562 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68511416ns 1204570 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68511587ns 1204573 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68511871ns 1204578 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68512155ns 1204583 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68512439ns 1204588 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68512894ns 1204596 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68513064ns 1204599 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68513349ns 1204604 1a110850 fd5ff06f jal x0, -44 +68513633ns 1204609 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68513917ns 1204614 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68514315ns 1204621 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68514485ns 1204624 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68514940ns 1204632 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68515110ns 1204635 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68515395ns 1204640 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68515679ns 1204645 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68515963ns 1204650 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68516418ns 1204658 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68516588ns 1204661 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68516872ns 1204666 1a110850 fd5ff06f jal x0, -44 +68517156ns 1204671 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68517441ns 1204676 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68517838ns 1204683 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68518009ns 1204686 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68518464ns 1204694 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68518634ns 1204697 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68518918ns 1204702 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68519202ns 1204707 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68519487ns 1204712 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68519941ns 1204720 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68520112ns 1204723 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68520396ns 1204728 1a110850 fd5ff06f jal x0, -44 +68520680ns 1204733 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68520964ns 1204738 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68521362ns 1204745 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68521532ns 1204748 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68521987ns 1204756 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68522158ns 1204759 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68522442ns 1204764 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68522726ns 1204769 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68523010ns 1204774 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68523465ns 1204782 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68523635ns 1204785 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68523919ns 1204790 1a110850 fd5ff06f jal x0, -44 +68524204ns 1204795 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68524488ns 1204800 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68524886ns 1204807 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68525056ns 1204810 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68525511ns 1204818 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68525681ns 1204821 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68525965ns 1204826 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68526250ns 1204831 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68526534ns 1204836 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68526988ns 1204844 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68527159ns 1204847 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68527443ns 1204852 1a110850 fd5ff06f jal x0, -44 +68527727ns 1204857 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68528011ns 1204862 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68528409ns 1204869 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68528580ns 1204872 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68529034ns 1204880 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68529205ns 1204883 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68529489ns 1204888 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68529773ns 1204893 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68530057ns 1204898 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68530512ns 1204906 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68530682ns 1204909 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68530967ns 1204914 1a110850 fd5ff06f jal x0, -44 +68531251ns 1204919 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68531535ns 1204924 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68531933ns 1204931 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68532103ns 1204934 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68532558ns 1204942 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68532728ns 1204945 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68533013ns 1204950 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68533297ns 1204955 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68533581ns 1204960 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68534035ns 1204968 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68534206ns 1204971 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68534490ns 1204976 1a110850 fd5ff06f jal x0, -44 +68534774ns 1204981 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68535058ns 1204986 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68535456ns 1204993 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68535627ns 1204996 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68536081ns 1205004 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68536252ns 1205007 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68536536ns 1205012 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68536820ns 1205017 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68537104ns 1205022 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68537559ns 1205030 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68537730ns 1205033 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68538014ns 1205038 1a110850 fd5ff06f jal x0, -44 +68538298ns 1205043 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68538582ns 1205048 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68538980ns 1205055 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68539150ns 1205058 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68539605ns 1205066 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68539776ns 1205069 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68540060ns 1205074 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68540344ns 1205079 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68540628ns 1205084 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68541083ns 1205092 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68541253ns 1205095 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68541537ns 1205100 1a110850 fd5ff06f jal x0, -44 +68541821ns 1205105 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68542106ns 1205110 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68542503ns 1205117 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68542674ns 1205120 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68543129ns 1205128 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68543299ns 1205131 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68543583ns 1205136 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68543867ns 1205141 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68544152ns 1205146 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68544606ns 1205154 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68544777ns 1205157 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68545061ns 1205162 1a110850 fd5ff06f jal x0, -44 +68545345ns 1205167 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68545629ns 1205172 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68546027ns 1205179 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68546198ns 1205182 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68546652ns 1205190 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68546823ns 1205193 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68547107ns 1205198 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68547391ns 1205203 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68547675ns 1205208 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68548130ns 1205216 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68548300ns 1205219 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68548584ns 1205224 1a110850 fd5ff06f jal x0, -44 +68548869ns 1205229 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68549153ns 1205234 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68549551ns 1205241 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68549721ns 1205244 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68550176ns 1205252 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68550346ns 1205255 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68550630ns 1205260 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68550915ns 1205265 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68551199ns 1205270 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68551653ns 1205278 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68551824ns 1205281 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68552108ns 1205286 1a110850 fd5ff06f jal x0, -44 +68552392ns 1205291 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68552676ns 1205296 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68553074ns 1205303 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68553245ns 1205306 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68553699ns 1205314 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68553870ns 1205317 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68554154ns 1205322 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68554438ns 1205327 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68554722ns 1205332 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68555177ns 1205340 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68555347ns 1205343 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68555632ns 1205348 1a110850 fd5ff06f jal x0, -44 +68555916ns 1205353 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68556200ns 1205358 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68556598ns 1205365 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68556768ns 1205368 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68557223ns 1205376 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68557393ns 1205379 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68557678ns 1205384 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68557962ns 1205389 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68558246ns 1205394 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68558701ns 1205402 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68558871ns 1205405 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68559155ns 1205410 1a110850 fd5ff06f jal x0, -44 +68559439ns 1205415 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68559724ns 1205420 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68560121ns 1205427 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68560292ns 1205430 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68560747ns 1205438 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68560917ns 1205441 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68561201ns 1205446 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68561485ns 1205451 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68561770ns 1205456 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68562224ns 1205464 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68562395ns 1205467 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68562679ns 1205472 1a110850 fd5ff06f jal x0, -44 +68562963ns 1205477 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68563247ns 1205482 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68563645ns 1205489 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68563815ns 1205492 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68564270ns 1205500 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68564441ns 1205503 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68564725ns 1205508 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68565009ns 1205513 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68565293ns 1205518 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68565748ns 1205526 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68565918ns 1205529 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68566202ns 1205534 1a110850 fd5ff06f jal x0, -44 +68566487ns 1205539 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68566771ns 1205544 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68567169ns 1205551 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68567339ns 1205554 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68567794ns 1205562 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68567964ns 1205565 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68568248ns 1205570 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68568533ns 1205575 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68568817ns 1205580 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68569271ns 1205588 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68569442ns 1205591 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68569726ns 1205596 1a110850 fd5ff06f jal x0, -44 +68570010ns 1205601 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68570294ns 1205606 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68570692ns 1205613 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68570863ns 1205616 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68571317ns 1205624 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68571488ns 1205627 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68571772ns 1205632 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68572056ns 1205637 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68572340ns 1205642 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68572795ns 1205650 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68572965ns 1205653 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68573250ns 1205658 1a110850 fd5ff06f jal x0, -44 +68573534ns 1205663 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68573818ns 1205668 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68574216ns 1205675 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68574386ns 1205678 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68574841ns 1205686 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68575011ns 1205689 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68575296ns 1205694 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68575580ns 1205699 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68575864ns 1205704 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68576319ns 1205712 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68576489ns 1205715 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68576773ns 1205720 1a110850 fd5ff06f jal x0, -44 +68577057ns 1205725 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68577341ns 1205730 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68577739ns 1205737 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68577910ns 1205740 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68578364ns 1205748 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68578535ns 1205751 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68578819ns 1205756 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68579103ns 1205761 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68579387ns 1205766 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68579842ns 1205774 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68580013ns 1205777 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68580297ns 1205782 1a110850 fd5ff06f jal x0, -44 +68580581ns 1205787 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68580865ns 1205792 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68581263ns 1205799 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68581433ns 1205802 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68581888ns 1205810 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68582059ns 1205813 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68582343ns 1205818 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68582627ns 1205823 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68582911ns 1205828 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68583366ns 1205836 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68583536ns 1205839 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68583820ns 1205844 1a110850 fd5ff06f jal x0, -44 +68584104ns 1205849 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68584389ns 1205854 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68584786ns 1205861 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68584957ns 1205864 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68585412ns 1205872 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68585582ns 1205875 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68585866ns 1205880 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68586150ns 1205885 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68586435ns 1205890 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68586889ns 1205898 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68587060ns 1205901 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68587344ns 1205906 1a110850 fd5ff06f jal x0, -44 +68587628ns 1205911 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68587912ns 1205916 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68588310ns 1205923 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68588481ns 1205926 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68588935ns 1205934 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68589106ns 1205937 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68589390ns 1205942 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68589674ns 1205947 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68589958ns 1205952 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68590413ns 1205960 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68590583ns 1205963 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68590867ns 1205968 1a110850 fd5ff06f jal x0, -44 +68591152ns 1205973 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68591436ns 1205978 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68591834ns 1205985 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68592004ns 1205988 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68592459ns 1205996 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68592629ns 1205999 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68592913ns 1206004 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68593198ns 1206009 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68593482ns 1206014 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68593936ns 1206022 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68594107ns 1206025 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68594391ns 1206030 1a110850 fd5ff06f jal x0, -44 +68594675ns 1206035 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68594959ns 1206040 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68595357ns 1206047 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68595528ns 1206050 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68595982ns 1206058 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68596153ns 1206061 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68596437ns 1206066 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68596721ns 1206071 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68597005ns 1206076 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68597460ns 1206084 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68597631ns 1206087 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68597915ns 1206092 1a110850 fd5ff06f jal x0, -44 +68598199ns 1206097 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68598483ns 1206102 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68598881ns 1206109 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68599051ns 1206112 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68599506ns 1206120 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68599676ns 1206123 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68599961ns 1206128 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68600245ns 1206133 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68600529ns 1206138 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68600984ns 1206146 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68601154ns 1206149 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68601438ns 1206154 1a110850 fd5ff06f jal x0, -44 +68601722ns 1206159 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68602007ns 1206164 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68602404ns 1206171 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68602575ns 1206174 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68603030ns 1206182 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68603200ns 1206185 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68603484ns 1206190 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68603768ns 1206195 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68604053ns 1206200 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68604507ns 1206208 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68604678ns 1206211 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68604962ns 1206216 1a110850 fd5ff06f jal x0, -44 +68605246ns 1206221 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68605530ns 1206226 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68605928ns 1206233 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68606098ns 1206236 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68606553ns 1206244 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68606724ns 1206247 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68607008ns 1206252 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68607292ns 1206257 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68607576ns 1206262 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68608031ns 1206270 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68608201ns 1206273 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68608485ns 1206278 1a110850 fd5ff06f jal x0, -44 +68608770ns 1206283 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68609054ns 1206288 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68609452ns 1206295 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68609622ns 1206298 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68610077ns 1206306 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68610247ns 1206309 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68610531ns 1206314 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68610816ns 1206319 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68611100ns 1206324 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68611554ns 1206332 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68611725ns 1206335 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68612009ns 1206340 1a110850 fd5ff06f jal x0, -44 +68612293ns 1206345 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68612577ns 1206350 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68612975ns 1206357 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68613146ns 1206360 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68613600ns 1206368 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68613771ns 1206371 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68614055ns 1206376 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68614339ns 1206381 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68614623ns 1206386 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68615078ns 1206394 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68615248ns 1206397 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68615533ns 1206402 1a110850 fd5ff06f jal x0, -44 +68615817ns 1206407 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68616101ns 1206412 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68616499ns 1206419 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68616669ns 1206422 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68617124ns 1206430 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68617294ns 1206433 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68617579ns 1206438 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68617863ns 1206443 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68618147ns 1206448 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68618602ns 1206456 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68618772ns 1206459 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68619056ns 1206464 1a110850 fd5ff06f jal x0, -44 +68619340ns 1206469 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68619624ns 1206474 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68620022ns 1206481 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68620193ns 1206484 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68620647ns 1206492 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68620818ns 1206495 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68621102ns 1206500 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68621386ns 1206505 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68621670ns 1206510 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68622125ns 1206518 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68622296ns 1206521 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68622580ns 1206526 1a110850 fd5ff06f jal x0, -44 +68622864ns 1206531 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68623148ns 1206536 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68623546ns 1206543 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68623716ns 1206546 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68624171ns 1206554 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68624342ns 1206557 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68624626ns 1206562 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68624910ns 1206567 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68625194ns 1206572 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68625649ns 1206580 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68625819ns 1206583 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68626103ns 1206588 1a110850 fd5ff06f jal x0, -44 +68626387ns 1206593 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68626672ns 1206598 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68627069ns 1206605 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68627240ns 1206608 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68627695ns 1206616 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68627865ns 1206619 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68628149ns 1206624 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68628433ns 1206629 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68628718ns 1206634 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68629172ns 1206642 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68629343ns 1206645 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68629627ns 1206650 1a110850 fd5ff06f jal x0, -44 +68629911ns 1206655 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68630195ns 1206660 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68630593ns 1206667 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68630764ns 1206670 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68631218ns 1206678 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68631389ns 1206681 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68631673ns 1206686 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68631957ns 1206691 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68632241ns 1206696 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68632696ns 1206704 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68632866ns 1206707 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68633151ns 1206712 1a110850 fd5ff06f jal x0, -44 +68633435ns 1206717 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68633719ns 1206722 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68634117ns 1206729 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68634287ns 1206732 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68634742ns 1206740 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68634912ns 1206743 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68635196ns 1206748 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68635481ns 1206753 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68635765ns 1206758 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68636219ns 1206766 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68636390ns 1206769 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68636674ns 1206774 1a110850 fd5ff06f jal x0, -44 +68636958ns 1206779 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68637242ns 1206784 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68637640ns 1206791 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68637811ns 1206794 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68638265ns 1206802 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68638436ns 1206805 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68638720ns 1206810 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68639004ns 1206815 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68639288ns 1206820 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68639743ns 1206828 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68639914ns 1206831 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68640198ns 1206836 1a110850 fd5ff06f jal x0, -44 +68640482ns 1206841 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68640766ns 1206846 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68641164ns 1206853 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68641334ns 1206856 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68641789ns 1206864 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68641959ns 1206867 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68642244ns 1206872 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68642528ns 1206877 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68642812ns 1206882 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68643267ns 1206890 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68643437ns 1206893 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68643721ns 1206898 1a110850 fd5ff06f jal x0, -44 +68644005ns 1206903 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68644290ns 1206908 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68644687ns 1206915 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68644858ns 1206918 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68645313ns 1206926 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68645483ns 1206929 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68645767ns 1206934 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68646051ns 1206939 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68646336ns 1206944 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68646790ns 1206952 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68646961ns 1206955 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68647245ns 1206960 1a110850 fd5ff06f jal x0, -44 +68647529ns 1206965 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68647813ns 1206970 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68648211ns 1206977 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68648381ns 1206980 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68648836ns 1206988 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68649007ns 1206991 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68649291ns 1206996 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68649575ns 1207001 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68649859ns 1207006 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68650314ns 1207014 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68650484ns 1207017 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68650768ns 1207022 1a110850 fd5ff06f jal x0, -44 +68651053ns 1207027 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68651337ns 1207032 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68651735ns 1207039 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68651905ns 1207042 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68652360ns 1207050 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68652530ns 1207053 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68652814ns 1207058 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68653099ns 1207063 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68653383ns 1207068 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68653837ns 1207076 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68654008ns 1207079 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68654292ns 1207084 1a110850 fd5ff06f jal x0, -44 +68654576ns 1207089 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68654860ns 1207094 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68655258ns 1207101 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68655429ns 1207104 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68655883ns 1207112 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68656054ns 1207115 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68656338ns 1207120 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68656622ns 1207125 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68656906ns 1207130 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68657361ns 1207138 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68657531ns 1207141 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68657816ns 1207146 1a110850 fd5ff06f jal x0, -44 +68658100ns 1207151 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68658384ns 1207156 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68658782ns 1207163 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68658952ns 1207166 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68659407ns 1207174 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68659577ns 1207177 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68659862ns 1207182 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68660146ns 1207187 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68660430ns 1207192 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68660885ns 1207200 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68661055ns 1207203 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68661339ns 1207208 1a110850 fd5ff06f jal x0, -44 +68661623ns 1207213 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68661907ns 1207218 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68662305ns 1207225 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68662476ns 1207228 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68662930ns 1207236 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68663101ns 1207239 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68663385ns 1207244 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68663669ns 1207249 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68663953ns 1207254 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68664408ns 1207262 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68664579ns 1207265 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68664863ns 1207270 1a110850 fd5ff06f jal x0, -44 +68665147ns 1207275 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68665431ns 1207280 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68665829ns 1207287 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68665999ns 1207290 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68666454ns 1207298 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68666625ns 1207301 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68666909ns 1207306 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68667193ns 1207311 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68667477ns 1207316 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68667932ns 1207324 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68668102ns 1207327 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68668386ns 1207332 1a110850 fd5ff06f jal x0, -44 +68668671ns 1207337 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68668955ns 1207342 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68669352ns 1207349 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68669523ns 1207352 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68669978ns 1207360 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68670148ns 1207363 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68670432ns 1207368 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68670716ns 1207373 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68671001ns 1207378 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68671455ns 1207386 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68671626ns 1207389 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68671910ns 1207394 1a110850 fd5ff06f jal x0, -44 +68672194ns 1207399 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68672478ns 1207404 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68672876ns 1207411 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68673047ns 1207414 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68673501ns 1207422 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68673672ns 1207425 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68673956ns 1207430 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68674240ns 1207435 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68674524ns 1207440 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68674979ns 1207448 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68675149ns 1207451 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68675434ns 1207456 1a110850 fd5ff06f jal x0, -44 +68675718ns 1207461 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68676002ns 1207466 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68676400ns 1207473 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68676570ns 1207476 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68677025ns 1207484 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68677195ns 1207487 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68677479ns 1207492 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68677764ns 1207497 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68678048ns 1207502 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68678502ns 1207510 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68678673ns 1207513 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68678957ns 1207518 1a110850 fd5ff06f jal x0, -44 +68679241ns 1207523 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68679525ns 1207528 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68679923ns 1207535 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68680094ns 1207538 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68680548ns 1207546 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68680719ns 1207549 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68681003ns 1207554 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68681287ns 1207559 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68681571ns 1207564 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68682026ns 1207572 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68682197ns 1207575 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68682481ns 1207580 1a110850 fd5ff06f jal x0, -44 +68682765ns 1207585 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68683049ns 1207590 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68683447ns 1207597 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68683617ns 1207600 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68684072ns 1207608 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68684242ns 1207611 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68684527ns 1207616 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68684811ns 1207621 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68685095ns 1207626 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68685550ns 1207634 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68685720ns 1207637 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68686004ns 1207642 1a110850 fd5ff06f jal x0, -44 +68686288ns 1207647 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68686573ns 1207652 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68686970ns 1207659 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68687141ns 1207662 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68687596ns 1207670 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68687766ns 1207673 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68688050ns 1207678 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68688334ns 1207683 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68688619ns 1207688 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68689073ns 1207696 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68689244ns 1207699 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68689528ns 1207704 1a110850 fd5ff06f jal x0, -44 +68689812ns 1207709 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68690096ns 1207714 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68690494ns 1207721 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68690664ns 1207724 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68691119ns 1207732 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68691290ns 1207735 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68691574ns 1207740 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68691858ns 1207745 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68692142ns 1207750 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68692597ns 1207758 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68692767ns 1207761 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68693051ns 1207766 1a110850 fd5ff06f jal x0, -44 +68693336ns 1207771 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68693620ns 1207776 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68694018ns 1207783 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68694188ns 1207786 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68694643ns 1207794 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68694813ns 1207797 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68695097ns 1207802 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68695382ns 1207807 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68695666ns 1207812 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68696120ns 1207820 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68696291ns 1207823 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68696575ns 1207828 1a110850 fd5ff06f jal x0, -44 +68696859ns 1207833 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68697143ns 1207838 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68697541ns 1207845 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68697712ns 1207848 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68698166ns 1207856 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68698337ns 1207859 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68698621ns 1207864 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68698905ns 1207869 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68699189ns 1207874 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68699644ns 1207882 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68699814ns 1207885 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68700099ns 1207890 1a110850 fd5ff06f jal x0, -44 +68700383ns 1207895 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68700667ns 1207900 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68701065ns 1207907 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68701235ns 1207910 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68701690ns 1207918 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68701860ns 1207921 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68702145ns 1207926 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68702429ns 1207931 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68702713ns 1207936 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68703168ns 1207944 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68703338ns 1207947 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68703622ns 1207952 1a110850 fd5ff06f jal x0, -44 +68703906ns 1207957 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68704191ns 1207962 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68704588ns 1207969 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68704759ns 1207972 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68705213ns 1207980 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68705384ns 1207983 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68705668ns 1207988 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68705952ns 1207993 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68706236ns 1207998 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68706691ns 1208006 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68706862ns 1208009 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68707146ns 1208014 1a110850 fd5ff06f jal x0, -44 +68707430ns 1208019 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68707714ns 1208024 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68708112ns 1208031 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68708282ns 1208034 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68708737ns 1208042 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68708908ns 1208045 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68709192ns 1208050 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68709476ns 1208055 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68709760ns 1208060 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68710215ns 1208068 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68710385ns 1208071 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68710669ns 1208076 1a110850 fd5ff06f jal x0, -44 +68710954ns 1208081 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68711238ns 1208086 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68711635ns 1208093 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68711806ns 1208096 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68712261ns 1208104 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68712431ns 1208107 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68712715ns 1208112 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68712999ns 1208117 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68713284ns 1208122 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68713738ns 1208130 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68713909ns 1208133 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68714193ns 1208138 1a110850 fd5ff06f jal x0, -44 +68714477ns 1208143 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68714761ns 1208148 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68715159ns 1208155 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68715330ns 1208158 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68715784ns 1208166 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68715955ns 1208169 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68716239ns 1208174 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68716523ns 1208179 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68716807ns 1208184 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68717262ns 1208192 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68717432ns 1208195 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68717717ns 1208200 1a110850 fd5ff06f jal x0, -44 +68718001ns 1208205 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68718285ns 1208210 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68718683ns 1208217 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68718853ns 1208220 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68719308ns 1208228 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68719478ns 1208231 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68719762ns 1208236 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68720047ns 1208241 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68720331ns 1208246 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68720785ns 1208254 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68720956ns 1208257 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68721240ns 1208262 1a110850 fd5ff06f jal x0, -44 +68721524ns 1208267 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68721808ns 1208272 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68722206ns 1208279 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68722377ns 1208282 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68722831ns 1208290 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68723002ns 1208293 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68723286ns 1208298 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68723570ns 1208303 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68723854ns 1208308 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68724309ns 1208316 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68724480ns 1208319 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68724764ns 1208324 1a110850 fd5ff06f jal x0, -44 +68725048ns 1208329 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68725332ns 1208334 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68725730ns 1208341 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68725900ns 1208344 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68726355ns 1208352 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68726525ns 1208355 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68726810ns 1208360 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68727094ns 1208365 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68727378ns 1208370 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68727833ns 1208378 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68728003ns 1208381 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68728287ns 1208386 1a110850 fd5ff06f jal x0, -44 +68728571ns 1208391 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68728856ns 1208396 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68729253ns 1208403 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68729424ns 1208406 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68729879ns 1208414 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68730049ns 1208417 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68730333ns 1208422 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68730617ns 1208427 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68730902ns 1208432 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68731356ns 1208440 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68731527ns 1208443 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68731811ns 1208448 1a110850 fd5ff06f jal x0, -44 +68732095ns 1208453 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68732379ns 1208458 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68732777ns 1208465 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68732947ns 1208468 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68733402ns 1208476 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68733573ns 1208479 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68733857ns 1208484 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68734141ns 1208489 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68734425ns 1208494 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68734880ns 1208502 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68735050ns 1208505 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68735334ns 1208510 1a110850 fd5ff06f jal x0, -44 +68735619ns 1208515 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68735903ns 1208520 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68736301ns 1208527 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68736471ns 1208530 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68736926ns 1208538 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68737096ns 1208541 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68737380ns 1208546 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68737665ns 1208551 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68737949ns 1208556 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68738403ns 1208564 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68738574ns 1208567 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68738858ns 1208572 1a110850 fd5ff06f jal x0, -44 +68739142ns 1208577 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68739426ns 1208582 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68739824ns 1208589 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68739995ns 1208592 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68740449ns 1208600 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68740620ns 1208603 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68740904ns 1208608 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68741188ns 1208613 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68741472ns 1208618 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68741927ns 1208626 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68742097ns 1208629 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68742382ns 1208634 1a110850 fd5ff06f jal x0, -44 +68742666ns 1208639 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68742950ns 1208644 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68743348ns 1208651 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68743518ns 1208654 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68743973ns 1208662 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68744143ns 1208665 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68744428ns 1208670 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68744712ns 1208675 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68744996ns 1208680 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68745451ns 1208688 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68745621ns 1208691 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68745905ns 1208696 1a110850 fd5ff06f jal x0, -44 +68746189ns 1208701 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68746474ns 1208706 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68746871ns 1208713 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68747042ns 1208716 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68747496ns 1208724 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68747667ns 1208727 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68747951ns 1208732 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68748235ns 1208737 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68748519ns 1208742 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68748974ns 1208750 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68749145ns 1208753 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68749429ns 1208758 1a110850 fd5ff06f jal x0, -44 +68749713ns 1208763 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68749997ns 1208768 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68750395ns 1208775 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68750565ns 1208778 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68751020ns 1208786 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68751191ns 1208789 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68751475ns 1208794 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68751759ns 1208799 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68752043ns 1208804 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68752498ns 1208812 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68752668ns 1208815 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68752952ns 1208820 1a110850 fd5ff06f jal x0, -44 +68753237ns 1208825 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68753521ns 1208830 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68753919ns 1208837 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68754089ns 1208840 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68754544ns 1208848 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68754714ns 1208851 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68754998ns 1208856 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68755282ns 1208861 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68755567ns 1208866 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68756021ns 1208874 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68756192ns 1208877 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68756476ns 1208882 1a110850 fd5ff06f jal x0, -44 +68756760ns 1208887 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68757044ns 1208892 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68757442ns 1208899 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68757613ns 1208902 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68758067ns 1208910 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68758238ns 1208913 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68758522ns 1208918 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68758806ns 1208923 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68759090ns 1208928 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68759545ns 1208936 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68759715ns 1208939 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68760000ns 1208944 1a110850 fd5ff06f jal x0, -44 +68760284ns 1208949 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68760568ns 1208954 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68760966ns 1208961 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68761136ns 1208964 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68761591ns 1208972 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68761761ns 1208975 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68762045ns 1208980 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68762330ns 1208985 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68762614ns 1208990 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68763068ns 1208998 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68763239ns 1209001 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68763523ns 1209006 1a110850 fd5ff06f jal x0, -44 +68763807ns 1209011 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68764091ns 1209016 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68764489ns 1209023 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68764660ns 1209026 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68765114ns 1209034 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68765285ns 1209037 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68765569ns 1209042 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68765853ns 1209047 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68766137ns 1209052 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68766592ns 1209060 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68766763ns 1209063 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68767047ns 1209068 1a110850 fd5ff06f jal x0, -44 +68767331ns 1209073 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68767615ns 1209078 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68768013ns 1209085 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68768183ns 1209088 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68768638ns 1209096 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68768808ns 1209099 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68769093ns 1209104 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68769377ns 1209109 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68769661ns 1209114 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68770116ns 1209122 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68770286ns 1209125 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68770570ns 1209130 1a110850 fd5ff06f jal x0, -44 +68770854ns 1209135 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68771139ns 1209140 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68771536ns 1209147 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68771707ns 1209150 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68772162ns 1209158 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68772332ns 1209161 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68772616ns 1209166 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68772900ns 1209171 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68773185ns 1209176 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68773639ns 1209184 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68773810ns 1209187 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68774094ns 1209192 1a110850 fd5ff06f jal x0, -44 +68774378ns 1209197 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68774662ns 1209202 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68775060ns 1209209 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68775231ns 1209212 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68775685ns 1209220 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68775856ns 1209223 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68776140ns 1209228 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68776424ns 1209233 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68776708ns 1209238 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68777163ns 1209246 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68777333ns 1209249 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68777617ns 1209254 1a110850 fd5ff06f jal x0, -44 +68777902ns 1209259 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68778186ns 1209264 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68778584ns 1209271 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68778754ns 1209274 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68779209ns 1209282 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68779379ns 1209285 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68779663ns 1209290 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68779948ns 1209295 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68780232ns 1209300 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68780686ns 1209308 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68780857ns 1209311 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68781141ns 1209316 1a110850 fd5ff06f jal x0, -44 +68781425ns 1209321 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68781709ns 1209326 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68782107ns 1209333 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68782278ns 1209336 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68782732ns 1209344 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68782903ns 1209347 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68783187ns 1209352 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68783471ns 1209357 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68783755ns 1209362 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68784210ns 1209370 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68784380ns 1209373 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68784665ns 1209378 1a110850 fd5ff06f jal x0, -44 +68784949ns 1209383 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68785233ns 1209388 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68785631ns 1209395 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68785801ns 1209398 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68786256ns 1209406 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68786426ns 1209409 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68786711ns 1209414 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68786995ns 1209419 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68787279ns 1209424 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68787734ns 1209432 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68787904ns 1209435 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68788188ns 1209440 1a110850 fd5ff06f jal x0, -44 +68788472ns 1209445 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68788757ns 1209450 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68789154ns 1209457 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68789325ns 1209460 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68789779ns 1209468 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68789950ns 1209471 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68790234ns 1209476 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68790518ns 1209481 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68790802ns 1209486 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68791257ns 1209494 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68791428ns 1209497 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68791712ns 1209502 1a110850 fd5ff06f jal x0, -44 +68791996ns 1209507 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68792280ns 1209512 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68792678ns 1209519 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68792848ns 1209522 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68793303ns 1209530 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68793474ns 1209533 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68793758ns 1209538 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68794042ns 1209543 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68794326ns 1209548 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68794781ns 1209556 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68794951ns 1209559 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68795235ns 1209564 1a110850 fd5ff06f jal x0, -44 +68795520ns 1209569 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68795804ns 1209574 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68796202ns 1209581 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68796372ns 1209584 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68796827ns 1209592 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68796997ns 1209595 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68797281ns 1209600 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68797565ns 1209605 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68797850ns 1209610 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68798304ns 1209618 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68798475ns 1209621 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68798759ns 1209626 1a110850 fd5ff06f jal x0, -44 +68799043ns 1209631 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68799327ns 1209636 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68799725ns 1209643 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68799896ns 1209646 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68800350ns 1209654 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68800521ns 1209657 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68800805ns 1209662 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68801089ns 1209667 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68801373ns 1209672 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68801828ns 1209680 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68801998ns 1209683 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68802283ns 1209688 1a110850 fd5ff06f jal x0, -44 +68802567ns 1209693 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68802851ns 1209698 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68803249ns 1209705 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68803419ns 1209708 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68803874ns 1209716 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68804044ns 1209719 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68804328ns 1209724 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68804613ns 1209729 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68804897ns 1209734 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68805351ns 1209742 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68805522ns 1209745 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68805806ns 1209750 1a110850 fd5ff06f jal x0, -44 +68806090ns 1209755 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68806374ns 1209760 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68806772ns 1209767 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68806943ns 1209770 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68807397ns 1209778 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68807568ns 1209781 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68807852ns 1209786 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68808136ns 1209791 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68808420ns 1209796 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68808875ns 1209804 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68809046ns 1209807 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68809330ns 1209812 1a110850 fd5ff06f jal x0, -44 +68809614ns 1209817 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68809898ns 1209822 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68810296ns 1209829 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68810466ns 1209832 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68810921ns 1209840 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68811091ns 1209843 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68811376ns 1209848 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68811660ns 1209853 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68811944ns 1209858 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68812399ns 1209866 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68812569ns 1209869 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68812853ns 1209874 1a110850 fd5ff06f jal x0, -44 +68813137ns 1209879 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68813422ns 1209884 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68813819ns 1209891 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68813990ns 1209894 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68814445ns 1209902 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68814615ns 1209905 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68814899ns 1209910 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68815183ns 1209915 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68815468ns 1209920 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68815922ns 1209928 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68816093ns 1209931 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68816377ns 1209936 1a110850 fd5ff06f jal x0, -44 +68816661ns 1209941 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68816945ns 1209946 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68817343ns 1209953 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68817514ns 1209956 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68817968ns 1209964 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68818139ns 1209967 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68818423ns 1209972 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68818707ns 1209977 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68818991ns 1209982 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68819446ns 1209990 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68819616ns 1209993 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68819900ns 1209998 1a110850 fd5ff06f jal x0, -44 +68820185ns 1210003 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68820469ns 1210008 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68820867ns 1210015 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68821037ns 1210018 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68821492ns 1210026 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68821662ns 1210029 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68821946ns 1210034 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68822231ns 1210039 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68822515ns 1210044 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68822969ns 1210052 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68823140ns 1210055 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68823424ns 1210060 1a110850 fd5ff06f jal x0, -44 +68823708ns 1210065 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68823992ns 1210070 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68824390ns 1210077 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68824561ns 1210080 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68825015ns 1210088 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68825186ns 1210091 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68825470ns 1210096 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68825754ns 1210101 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68826038ns 1210106 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68826493ns 1210114 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68826663ns 1210117 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68826948ns 1210122 1a110850 fd5ff06f jal x0, -44 +68827232ns 1210127 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68827516ns 1210132 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68827914ns 1210139 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68828084ns 1210142 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68828539ns 1210150 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68828709ns 1210153 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68828994ns 1210158 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68829278ns 1210163 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68829562ns 1210168 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68830017ns 1210176 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68830187ns 1210179 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68830471ns 1210184 1a110850 fd5ff06f jal x0, -44 +68830755ns 1210189 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68831040ns 1210194 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68831437ns 1210201 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68831608ns 1210204 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68832063ns 1210212 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68832233ns 1210215 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68832517ns 1210220 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68832801ns 1210225 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68833085ns 1210230 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68833540ns 1210238 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68833711ns 1210241 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68833995ns 1210246 1a110850 fd5ff06f jal x0, -44 +68834279ns 1210251 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68834563ns 1210256 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68834961ns 1210263 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68835131ns 1210266 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68835586ns 1210274 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68835757ns 1210277 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68836041ns 1210282 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68836325ns 1210287 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68836609ns 1210292 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68837064ns 1210300 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68837234ns 1210303 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68837518ns 1210308 1a110850 fd5ff06f jal x0, -44 +68837803ns 1210313 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68838087ns 1210318 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68838485ns 1210325 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68838655ns 1210328 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68839110ns 1210336 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68839280ns 1210339 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68839564ns 1210344 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68839848ns 1210349 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68840133ns 1210354 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68840587ns 1210362 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68840758ns 1210365 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68841042ns 1210370 1a110850 fd5ff06f jal x0, -44 +68841326ns 1210375 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68841610ns 1210380 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68842008ns 1210387 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68842179ns 1210390 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68842633ns 1210398 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68842804ns 1210401 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68843088ns 1210406 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68843372ns 1210411 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68843656ns 1210416 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68844111ns 1210424 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68844281ns 1210427 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68844566ns 1210432 1a110850 fd5ff06f jal x0, -44 +68844850ns 1210437 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68845134ns 1210442 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68845532ns 1210449 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68845702ns 1210452 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68846157ns 1210460 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68846327ns 1210463 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68846611ns 1210468 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68846896ns 1210473 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68847180ns 1210478 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68847634ns 1210486 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68847805ns 1210489 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68848089ns 1210494 1a110850 fd5ff06f jal x0, -44 +68848373ns 1210499 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68848657ns 1210504 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68849055ns 1210511 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68849226ns 1210514 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68849680ns 1210522 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68849851ns 1210525 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68850135ns 1210530 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68850419ns 1210535 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68850703ns 1210540 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68851158ns 1210548 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68851329ns 1210551 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68851613ns 1210556 1a110850 fd5ff06f jal x0, -44 +68851897ns 1210561 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68852181ns 1210566 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68852579ns 1210573 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68852749ns 1210576 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68853204ns 1210584 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68853375ns 1210587 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68853659ns 1210592 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68853943ns 1210597 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68854227ns 1210602 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68854682ns 1210610 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68854852ns 1210613 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68855136ns 1210618 1a110850 fd5ff06f jal x0, -44 +68855420ns 1210623 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68855705ns 1210628 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68856102ns 1210635 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68856273ns 1210638 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68856728ns 1210646 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68856898ns 1210649 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68857182ns 1210654 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68857466ns 1210659 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68857751ns 1210664 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68858205ns 1210672 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68858376ns 1210675 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68858660ns 1210680 1a110850 fd5ff06f jal x0, -44 +68858944ns 1210685 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68859228ns 1210690 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68859626ns 1210697 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68859797ns 1210700 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68860251ns 1210708 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68860422ns 1210711 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68860706ns 1210716 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68860990ns 1210721 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68861274ns 1210726 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68861729ns 1210734 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68861899ns 1210737 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68862183ns 1210742 1a110850 fd5ff06f jal x0, -44 +68862468ns 1210747 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68862752ns 1210752 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68863150ns 1210759 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68863320ns 1210762 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68863775ns 1210770 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68863945ns 1210773 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68864229ns 1210778 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68864514ns 1210783 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68864798ns 1210788 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68865252ns 1210796 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68865423ns 1210799 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68865707ns 1210804 1a110850 fd5ff06f jal x0, -44 +68865991ns 1210809 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68866275ns 1210814 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68866673ns 1210821 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68866844ns 1210824 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68867298ns 1210832 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68867469ns 1210835 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68867753ns 1210840 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68868037ns 1210845 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68868321ns 1210850 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68868776ns 1210858 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68868946ns 1210861 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68869231ns 1210866 1a110850 fd5ff06f jal x0, -44 +68869515ns 1210871 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68869799ns 1210876 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68870197ns 1210883 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68870367ns 1210886 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68870822ns 1210894 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68870992ns 1210897 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68871277ns 1210902 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68871561ns 1210907 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68871845ns 1210912 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68872300ns 1210920 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68872470ns 1210923 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68872754ns 1210928 1a110850 fd5ff06f jal x0, -44 +68873038ns 1210933 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68873323ns 1210938 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68873720ns 1210945 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68873891ns 1210948 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68874346ns 1210956 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68874516ns 1210959 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68874800ns 1210964 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68875084ns 1210969 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68875368ns 1210974 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68875823ns 1210982 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68875994ns 1210985 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68876278ns 1210990 1a110850 fd5ff06f jal x0, -44 +68876562ns 1210995 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68876846ns 1211000 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68877244ns 1211007 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68877414ns 1211010 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68877869ns 1211018 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68878040ns 1211021 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68878324ns 1211026 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68878608ns 1211031 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68878892ns 1211036 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68879347ns 1211044 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68879517ns 1211047 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68879801ns 1211052 1a110850 fd5ff06f jal x0, -44 +68880086ns 1211057 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68880370ns 1211062 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68880768ns 1211069 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68880938ns 1211072 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68881393ns 1211080 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68881563ns 1211083 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68881847ns 1211088 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68882131ns 1211093 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68882416ns 1211098 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68882870ns 1211106 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68883041ns 1211109 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68883325ns 1211114 1a110850 fd5ff06f jal x0, -44 +68883609ns 1211119 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68883893ns 1211124 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68884291ns 1211131 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68884462ns 1211134 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68884916ns 1211142 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68885087ns 1211145 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68885371ns 1211150 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68885655ns 1211155 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68885939ns 1211160 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68886394ns 1211168 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68886564ns 1211171 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68886849ns 1211176 1a110850 fd5ff06f jal x0, -44 +68887133ns 1211181 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68887417ns 1211186 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68887815ns 1211193 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68887985ns 1211196 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68888440ns 1211204 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68888610ns 1211207 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68888895ns 1211212 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68889179ns 1211217 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68889463ns 1211222 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68889917ns 1211230 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68890088ns 1211233 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68890372ns 1211238 1a110850 fd5ff06f jal x0, -44 +68890656ns 1211243 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68890940ns 1211248 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68891338ns 1211255 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68891509ns 1211258 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68891963ns 1211266 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68892134ns 1211269 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68892418ns 1211274 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68892702ns 1211279 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68892986ns 1211284 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68893441ns 1211292 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68893612ns 1211295 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68893896ns 1211300 1a110850 fd5ff06f jal x0, -44 +68894180ns 1211305 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68894464ns 1211310 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68894862ns 1211317 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68895032ns 1211320 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68895487ns 1211328 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68895658ns 1211331 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68895942ns 1211336 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68896226ns 1211341 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68896510ns 1211346 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68896965ns 1211354 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68897135ns 1211357 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68897419ns 1211362 1a110850 fd5ff06f jal x0, -44 +68897703ns 1211367 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68897988ns 1211372 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68898385ns 1211379 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68898556ns 1211382 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68899011ns 1211390 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68899181ns 1211393 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68899465ns 1211398 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68899749ns 1211403 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68900034ns 1211408 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68900488ns 1211416 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68900659ns 1211419 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68900943ns 1211424 1a110850 fd5ff06f jal x0, -44 +68901227ns 1211429 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68901511ns 1211434 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68901909ns 1211441 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68902080ns 1211444 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68902534ns 1211452 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68902705ns 1211455 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68902989ns 1211460 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68903273ns 1211465 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68903557ns 1211470 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68904012ns 1211478 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68904182ns 1211481 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68904466ns 1211486 1a110850 fd5ff06f jal x0, -44 +68904751ns 1211491 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68905035ns 1211496 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68905433ns 1211503 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68905603ns 1211506 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68906058ns 1211514 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68906228ns 1211517 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68906512ns 1211522 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68906797ns 1211527 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68907081ns 1211532 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68907535ns 1211540 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68907706ns 1211543 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68907990ns 1211548 1a110850 fd5ff06f jal x0, -44 +68908274ns 1211553 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68908558ns 1211558 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68908956ns 1211565 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68909127ns 1211568 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68909581ns 1211576 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68909752ns 1211579 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68910036ns 1211584 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68910320ns 1211589 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68910604ns 1211594 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68911059ns 1211602 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68911229ns 1211605 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68911514ns 1211610 1a110850 fd5ff06f jal x0, -44 +68911798ns 1211615 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68912082ns 1211620 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68912480ns 1211627 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68912650ns 1211630 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68913105ns 1211638 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68913275ns 1211641 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68913560ns 1211646 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68913844ns 1211651 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68914128ns 1211656 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68914583ns 1211664 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68914753ns 1211667 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68915037ns 1211672 1a110850 fd5ff06f jal x0, -44 +68915321ns 1211677 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68915606ns 1211682 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68916003ns 1211689 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68916174ns 1211692 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68916629ns 1211700 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68916799ns 1211703 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68917083ns 1211708 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68917367ns 1211713 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68917651ns 1211718 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68918106ns 1211726 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68918277ns 1211729 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68918561ns 1211734 1a110850 fd5ff06f jal x0, -44 +68918845ns 1211739 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68919129ns 1211744 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68919527ns 1211751 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68919697ns 1211754 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68920152ns 1211762 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68920323ns 1211765 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68920607ns 1211770 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68920891ns 1211775 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68921175ns 1211780 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68921630ns 1211788 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68921800ns 1211791 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68922084ns 1211796 1a110850 fd5ff06f jal x0, -44 +68922369ns 1211801 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68922653ns 1211806 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68923051ns 1211813 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68923221ns 1211816 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68923676ns 1211824 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68923846ns 1211827 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68924130ns 1211832 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68924415ns 1211837 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68924699ns 1211842 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68925153ns 1211850 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68925324ns 1211853 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68925608ns 1211858 1a110850 fd5ff06f jal x0, -44 +68925892ns 1211863 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68926176ns 1211868 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68926574ns 1211875 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68926745ns 1211878 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68927199ns 1211886 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68927370ns 1211889 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68927654ns 1211894 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68927938ns 1211899 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68928222ns 1211904 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68928677ns 1211912 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68928847ns 1211915 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68929132ns 1211920 1a110850 fd5ff06f jal x0, -44 +68929416ns 1211925 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68929700ns 1211930 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68930098ns 1211937 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68930268ns 1211940 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68930723ns 1211948 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68930893ns 1211951 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68931178ns 1211956 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68931462ns 1211961 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68931746ns 1211966 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68932200ns 1211974 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68932371ns 1211977 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68932655ns 1211982 1a110850 fd5ff06f jal x0, -44 +68932939ns 1211987 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68933223ns 1211992 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68933621ns 1211999 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68933792ns 1212002 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68934246ns 1212010 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68934417ns 1212013 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68934701ns 1212018 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68934985ns 1212023 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68935269ns 1212028 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68935724ns 1212036 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68935895ns 1212039 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68936179ns 1212044 1a110850 fd5ff06f jal x0, -44 +68936463ns 1212049 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68936747ns 1212054 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68937145ns 1212061 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68937315ns 1212064 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68937770ns 1212072 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68937941ns 1212075 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68938225ns 1212080 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68938509ns 1212085 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68938793ns 1212090 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68939248ns 1212098 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68939418ns 1212101 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68939702ns 1212106 1a110850 fd5ff06f jal x0, -44 +68939986ns 1212111 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68940271ns 1212116 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68940668ns 1212123 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68940839ns 1212126 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68941294ns 1212134 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68941464ns 1212137 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68941748ns 1212142 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68942032ns 1212147 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68942317ns 1212152 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68942771ns 1212160 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68942942ns 1212163 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68943226ns 1212168 1a110850 fd5ff06f jal x0, -44 +68943510ns 1212173 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68943794ns 1212178 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68944192ns 1212185 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68944363ns 1212188 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68944817ns 1212196 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68944988ns 1212199 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68945272ns 1212204 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68945556ns 1212209 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68945840ns 1212214 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68946295ns 1212222 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68946465ns 1212225 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68946749ns 1212230 1a110850 fd5ff06f jal x0, -44 +68947034ns 1212235 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68947318ns 1212240 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68947716ns 1212247 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68947886ns 1212250 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68948341ns 1212258 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68948511ns 1212261 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68948795ns 1212266 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68949080ns 1212271 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68949364ns 1212276 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68949818ns 1212284 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68949989ns 1212287 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68950273ns 1212292 1a110850 fd5ff06f jal x0, -44 +68950557ns 1212297 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68950841ns 1212302 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68951239ns 1212309 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68951410ns 1212312 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68951864ns 1212320 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68952035ns 1212323 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68952319ns 1212328 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68952603ns 1212333 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68952887ns 1212338 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68953342ns 1212346 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68953512ns 1212349 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68953797ns 1212354 1a110850 fd5ff06f jal x0, -44 +68954081ns 1212359 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68954365ns 1212364 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68954763ns 1212371 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68954933ns 1212374 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68955388ns 1212382 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68955558ns 1212385 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68955843ns 1212390 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68956127ns 1212395 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68956411ns 1212400 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68956866ns 1212408 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68957036ns 1212411 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68957320ns 1212416 1a110850 fd5ff06f jal x0, -44 +68957604ns 1212421 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68957889ns 1212426 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68958286ns 1212433 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68958457ns 1212436 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68958912ns 1212444 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68959082ns 1212447 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68959366ns 1212452 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68959650ns 1212457 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68959935ns 1212462 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68960389ns 1212470 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68960560ns 1212473 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68960844ns 1212478 1a110850 fd5ff06f jal x0, -44 +68961128ns 1212483 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68961412ns 1212488 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68961810ns 1212495 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68961980ns 1212498 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68962435ns 1212506 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68962606ns 1212509 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68962890ns 1212514 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68963174ns 1212519 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68963458ns 1212524 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68963913ns 1212532 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68964083ns 1212535 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68964367ns 1212540 1a110850 fd5ff06f jal x0, -44 +68964652ns 1212545 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68964936ns 1212550 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68965334ns 1212557 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68965504ns 1212560 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68965959ns 1212568 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68966129ns 1212571 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68966413ns 1212576 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68966698ns 1212581 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68966982ns 1212586 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68967436ns 1212594 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68967607ns 1212597 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68967891ns 1212602 1a110850 fd5ff06f jal x0, -44 +68968175ns 1212607 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68968459ns 1212612 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68968857ns 1212619 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68969028ns 1212622 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68969482ns 1212630 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68969653ns 1212633 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68969937ns 1212638 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68970221ns 1212643 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68970505ns 1212648 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68970960ns 1212656 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68971130ns 1212659 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68971415ns 1212664 1a110850 fd5ff06f jal x0, -44 +68971699ns 1212669 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68971983ns 1212674 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68972381ns 1212681 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68972551ns 1212684 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68973006ns 1212692 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68973176ns 1212695 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68973461ns 1212700 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68973745ns 1212705 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68974029ns 1212710 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68974483ns 1212718 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68974654ns 1212721 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68974938ns 1212726 1a110850 fd5ff06f jal x0, -44 +68975222ns 1212731 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68975506ns 1212736 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68975904ns 1212743 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68976075ns 1212746 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68976529ns 1212754 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68976700ns 1212757 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68976984ns 1212762 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68977268ns 1212767 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68977552ns 1212772 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68978007ns 1212780 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68978178ns 1212783 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68978462ns 1212788 1a110850 fd5ff06f jal x0, -44 +68978746ns 1212793 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68979030ns 1212798 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68979428ns 1212805 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68979598ns 1212808 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68980053ns 1212816 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68980224ns 1212819 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68980508ns 1212824 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68980792ns 1212829 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68981076ns 1212834 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68981531ns 1212842 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68981701ns 1212845 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68981985ns 1212850 1a110850 fd5ff06f jal x0, -44 +68982269ns 1212855 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68982554ns 1212860 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68982951ns 1212867 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68983122ns 1212870 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68983577ns 1212878 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68983747ns 1212881 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68984031ns 1212886 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68984315ns 1212891 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68984600ns 1212896 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68985054ns 1212904 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68985225ns 1212907 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68985509ns 1212912 1a110850 fd5ff06f jal x0, -44 +68985793ns 1212917 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68986077ns 1212922 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68986475ns 1212929 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68986646ns 1212932 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68987100ns 1212940 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68987271ns 1212943 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68987555ns 1212948 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68987839ns 1212953 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68988123ns 1212958 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68988578ns 1212966 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68988748ns 1212969 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68989032ns 1212974 1a110850 fd5ff06f jal x0, -44 +68989317ns 1212979 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68989601ns 1212984 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68989999ns 1212991 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68990169ns 1212994 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68990624ns 1213002 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68990794ns 1213005 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68991078ns 1213010 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68991363ns 1213015 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68991647ns 1213020 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68992101ns 1213028 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68992272ns 1213031 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68992556ns 1213036 1a110850 fd5ff06f jal x0, -44 +68992840ns 1213041 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68993124ns 1213046 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68993522ns 1213053 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68993693ns 1213056 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68994147ns 1213064 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68994318ns 1213067 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68994602ns 1213072 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68994886ns 1213077 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68995170ns 1213082 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68995625ns 1213090 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68995795ns 1213093 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68996080ns 1213098 1a110850 fd5ff06f jal x0, -44 +68996364ns 1213103 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68996648ns 1213108 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +68997046ns 1213115 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68997216ns 1213118 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68997671ns 1213126 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +68997841ns 1213129 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +68998126ns 1213134 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +68998410ns 1213139 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +68998694ns 1213144 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +68999149ns 1213152 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +68999319ns 1213155 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +68999603ns 1213160 1a110850 fd5ff06f jal x0, -44 +68999887ns 1213165 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69000172ns 1213170 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69000569ns 1213177 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69000740ns 1213180 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69001195ns 1213188 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69001365ns 1213191 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69001649ns 1213196 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69001933ns 1213201 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69002218ns 1213206 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69002672ns 1213214 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69002843ns 1213217 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69003127ns 1213222 1a110850 fd5ff06f jal x0, -44 +69003411ns 1213227 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69003695ns 1213232 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69004093ns 1213239 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69004263ns 1213242 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69004718ns 1213250 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69004889ns 1213253 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69005173ns 1213258 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69005457ns 1213263 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69005741ns 1213268 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69006196ns 1213276 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69006366ns 1213279 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69006650ns 1213284 1a110850 fd5ff06f jal x0, -44 +69006935ns 1213289 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69007219ns 1213294 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69007617ns 1213301 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69007787ns 1213304 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69008242ns 1213312 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69008412ns 1213315 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69008696ns 1213320 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69008981ns 1213325 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69009265ns 1213330 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69009719ns 1213338 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69009890ns 1213341 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69010174ns 1213346 1a110850 fd5ff06f jal x0, -44 +69010458ns 1213351 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69010742ns 1213356 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69011140ns 1213363 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69011311ns 1213366 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69011765ns 1213374 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69011936ns 1213377 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69012220ns 1213382 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69012504ns 1213387 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69012788ns 1213392 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69013243ns 1213400 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69013413ns 1213403 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69013698ns 1213408 1a110850 fd5ff06f jal x0, -44 +69013982ns 1213413 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69014266ns 1213418 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69014664ns 1213425 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69014834ns 1213428 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69015289ns 1213436 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69015459ns 1213439 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69015744ns 1213444 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69016028ns 1213449 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69016312ns 1213454 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69016767ns 1213462 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69016937ns 1213465 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69017221ns 1213470 1a110850 fd5ff06f jal x0, -44 +69017505ns 1213475 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69017789ns 1213480 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69018187ns 1213487 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69018358ns 1213490 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69018812ns 1213498 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69018983ns 1213501 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69019267ns 1213506 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69019551ns 1213511 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69019835ns 1213516 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69020290ns 1213524 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69020461ns 1213527 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69020745ns 1213532 1a110850 fd5ff06f jal x0, -44 +69021029ns 1213537 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69021313ns 1213542 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69021711ns 1213549 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69021881ns 1213552 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69022336ns 1213560 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69022507ns 1213563 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69022791ns 1213568 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69023075ns 1213573 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69023359ns 1213578 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69023814ns 1213586 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69023984ns 1213589 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69024268ns 1213594 1a110850 fd5ff06f jal x0, -44 +69024552ns 1213599 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69024837ns 1213604 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69025234ns 1213611 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69025405ns 1213614 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69025860ns 1213622 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69026030ns 1213625 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69026314ns 1213630 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69026598ns 1213635 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69026883ns 1213640 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69027337ns 1213648 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69027508ns 1213651 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69027792ns 1213656 1a110850 fd5ff06f jal x0, -44 +69028076ns 1213661 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69028360ns 1213666 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69028758ns 1213673 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69028929ns 1213676 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69029383ns 1213684 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69029554ns 1213687 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69029838ns 1213692 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69030122ns 1213697 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69030406ns 1213702 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69030861ns 1213710 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69031031ns 1213713 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69031315ns 1213718 1a110850 fd5ff06f jal x0, -44 +69031600ns 1213723 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69031884ns 1213728 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69032282ns 1213735 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69032452ns 1213738 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69032907ns 1213746 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69033077ns 1213749 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69033361ns 1213754 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69033646ns 1213759 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69033930ns 1213764 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69034384ns 1213772 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69034555ns 1213775 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69034839ns 1213780 1a110850 fd5ff06f jal x0, -44 +69035123ns 1213785 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69035407ns 1213790 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69035805ns 1213797 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69035976ns 1213800 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69036430ns 1213808 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69036601ns 1213811 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69036885ns 1213816 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69037169ns 1213821 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69037453ns 1213826 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69037908ns 1213834 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69038079ns 1213837 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69038363ns 1213842 1a110850 fd5ff06f jal x0, -44 +69038647ns 1213847 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69038931ns 1213852 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69039329ns 1213859 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69039499ns 1213862 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69039954ns 1213870 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69040124ns 1213873 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69040409ns 1213878 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69040693ns 1213883 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69040977ns 1213888 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69041432ns 1213896 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69041602ns 1213899 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69041886ns 1213904 1a110850 fd5ff06f jal x0, -44 +69042170ns 1213909 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69042455ns 1213914 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69042852ns 1213921 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69043023ns 1213924 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69043478ns 1213932 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69043648ns 1213935 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69043932ns 1213940 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69044216ns 1213945 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69044501ns 1213950 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69044955ns 1213958 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69045126ns 1213961 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69045410ns 1213966 1a110850 fd5ff06f jal x0, -44 +69045694ns 1213971 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69045978ns 1213976 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69046376ns 1213983 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69046546ns 1213986 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69047001ns 1213994 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69047172ns 1213997 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69047456ns 1214002 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69047740ns 1214007 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69048024ns 1214012 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69048479ns 1214020 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69048649ns 1214023 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69048933ns 1214028 1a110850 fd5ff06f jal x0, -44 +69049218ns 1214033 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69049502ns 1214038 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69049900ns 1214045 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69050070ns 1214048 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69050525ns 1214056 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69050695ns 1214059 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69050979ns 1214064 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69051264ns 1214069 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69051548ns 1214074 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69052002ns 1214082 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69052173ns 1214085 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69052457ns 1214090 1a110850 fd5ff06f jal x0, -44 +69052741ns 1214095 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69053025ns 1214100 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69053423ns 1214107 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69053594ns 1214110 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69054048ns 1214118 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69054219ns 1214121 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69054503ns 1214126 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69054787ns 1214131 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69055071ns 1214136 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69055526ns 1214144 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69055696ns 1214147 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69055981ns 1214152 1a110850 fd5ff06f jal x0, -44 +69056265ns 1214157 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69056549ns 1214162 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69056947ns 1214169 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69057117ns 1214172 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69057572ns 1214180 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69057742ns 1214183 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69058027ns 1214188 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69058311ns 1214193 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69058595ns 1214198 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69059050ns 1214206 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69059220ns 1214209 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69059504ns 1214214 1a110850 fd5ff06f jal x0, -44 +69059788ns 1214219 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69060072ns 1214224 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69060470ns 1214231 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69060641ns 1214234 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69061095ns 1214242 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69061266ns 1214245 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69061550ns 1214250 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69061834ns 1214255 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69062118ns 1214260 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69062573ns 1214268 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69062744ns 1214271 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69063028ns 1214276 1a110850 fd5ff06f jal x0, -44 +69063312ns 1214281 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69063596ns 1214286 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69063994ns 1214293 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69064164ns 1214296 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69064619ns 1214304 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69064790ns 1214307 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69065074ns 1214312 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69065358ns 1214317 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69065642ns 1214322 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69066097ns 1214330 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69066267ns 1214333 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69066551ns 1214338 1a110850 fd5ff06f jal x0, -44 +69066835ns 1214343 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69067120ns 1214348 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69067517ns 1214355 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69067688ns 1214358 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69068143ns 1214366 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69068313ns 1214369 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69068597ns 1214374 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69068881ns 1214379 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69069166ns 1214384 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69069620ns 1214392 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69069791ns 1214395 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69070075ns 1214400 1a110850 fd5ff06f jal x0, -44 +69070359ns 1214405 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69070643ns 1214410 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69071041ns 1214417 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69071212ns 1214420 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69071666ns 1214428 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69071837ns 1214431 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69072121ns 1214436 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69072405ns 1214441 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69072689ns 1214446 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69073144ns 1214454 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69073314ns 1214457 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69073599ns 1214462 1a110850 fd5ff06f jal x0, -44 +69073883ns 1214467 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69074167ns 1214472 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69074565ns 1214479 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69074735ns 1214482 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69075190ns 1214490 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69075360ns 1214493 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69075644ns 1214498 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69075929ns 1214503 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69076213ns 1214508 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69076667ns 1214516 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69076838ns 1214519 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69077122ns 1214524 1a110850 fd5ff06f jal x0, -44 +69077406ns 1214529 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69077690ns 1214534 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69078088ns 1214541 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69078259ns 1214544 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69078713ns 1214552 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69078884ns 1214555 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69079168ns 1214560 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69079452ns 1214565 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69079736ns 1214570 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69080191ns 1214578 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69080362ns 1214581 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69080646ns 1214586 1a110850 fd5ff06f jal x0, -44 +69080930ns 1214591 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69081214ns 1214596 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69081612ns 1214603 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69081782ns 1214606 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69082237ns 1214614 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69082407ns 1214617 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69082692ns 1214622 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69082976ns 1214627 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69083260ns 1214632 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69083715ns 1214640 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69083885ns 1214643 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69084169ns 1214648 1a110850 fd5ff06f jal x0, -44 +69084453ns 1214653 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69084738ns 1214658 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69085135ns 1214665 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69085306ns 1214668 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69085761ns 1214676 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69085931ns 1214679 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69086215ns 1214684 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69086499ns 1214689 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69086784ns 1214694 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69087238ns 1214702 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69087409ns 1214705 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69087693ns 1214710 1a110850 fd5ff06f jal x0, -44 +69087977ns 1214715 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69088261ns 1214720 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69088659ns 1214727 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69088829ns 1214730 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69089284ns 1214738 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69089455ns 1214741 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69089739ns 1214746 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69090023ns 1214751 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69090307ns 1214756 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69090762ns 1214764 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69090932ns 1214767 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69091216ns 1214772 1a110850 fd5ff06f jal x0, -44 +69091501ns 1214777 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69091785ns 1214782 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69092183ns 1214789 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69092353ns 1214792 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69092808ns 1214800 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69092978ns 1214803 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69093262ns 1214808 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69093547ns 1214813 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69093831ns 1214818 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69094285ns 1214826 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69094456ns 1214829 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69094740ns 1214834 1a110850 fd5ff06f jal x0, -44 +69095024ns 1214839 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69095308ns 1214844 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69095706ns 1214851 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69095877ns 1214854 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69096331ns 1214862 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69096502ns 1214865 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69096786ns 1214870 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69097070ns 1214875 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69097354ns 1214880 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69097809ns 1214888 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69097979ns 1214891 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69098264ns 1214896 1a110850 fd5ff06f jal x0, -44 +69098548ns 1214901 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69098832ns 1214906 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69099230ns 1214913 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69099400ns 1214916 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69099855ns 1214924 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69100025ns 1214927 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69100310ns 1214932 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69100594ns 1214937 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69100878ns 1214942 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69101333ns 1214950 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69101503ns 1214953 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69101787ns 1214958 1a110850 fd5ff06f jal x0, -44 +69102071ns 1214963 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69102355ns 1214968 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69102753ns 1214975 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69102924ns 1214978 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69103378ns 1214986 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69103549ns 1214989 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69103833ns 1214994 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69104117ns 1214999 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69104401ns 1215004 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69104856ns 1215012 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69105027ns 1215015 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69105311ns 1215020 1a110850 fd5ff06f jal x0, -44 +69105595ns 1215025 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69105879ns 1215030 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69106277ns 1215037 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69106447ns 1215040 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69106902ns 1215048 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69107073ns 1215051 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69107357ns 1215056 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69107641ns 1215061 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69107925ns 1215066 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69108380ns 1215074 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69108550ns 1215077 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69108834ns 1215082 1a110850 fd5ff06f jal x0, -44 +69109119ns 1215087 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69109403ns 1215092 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69109800ns 1215099 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69109971ns 1215102 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69110426ns 1215110 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69110596ns 1215113 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69110880ns 1215118 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69111164ns 1215123 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69111449ns 1215128 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69111903ns 1215136 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69112074ns 1215139 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69112358ns 1215144 1a110850 fd5ff06f jal x0, -44 +69112642ns 1215149 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69112926ns 1215154 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69113324ns 1215161 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69113495ns 1215164 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69113949ns 1215172 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69114120ns 1215175 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69114404ns 1215180 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69114688ns 1215185 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69114972ns 1215190 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69115427ns 1215198 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69115597ns 1215201 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69115882ns 1215206 1a110850 fd5ff06f jal x0, -44 +69116166ns 1215211 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69116450ns 1215216 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69116848ns 1215223 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69117018ns 1215226 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69117473ns 1215234 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69117643ns 1215237 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69117927ns 1215242 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69118212ns 1215247 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69118496ns 1215252 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69118950ns 1215260 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69119121ns 1215263 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69119405ns 1215268 1a110850 fd5ff06f jal x0, -44 +69119689ns 1215273 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69119973ns 1215278 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69120371ns 1215285 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69120542ns 1215288 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69120996ns 1215296 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69121167ns 1215299 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69121451ns 1215304 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69121735ns 1215309 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69122019ns 1215314 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69122474ns 1215322 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69122645ns 1215325 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69122929ns 1215330 1a110850 fd5ff06f jal x0, -44 +69123213ns 1215335 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69123497ns 1215340 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69123895ns 1215347 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69124065ns 1215350 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69124520ns 1215358 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69124690ns 1215361 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69124975ns 1215366 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69125259ns 1215371 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69125543ns 1215376 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69125998ns 1215384 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69126168ns 1215387 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69126452ns 1215392 1a110850 fd5ff06f jal x0, -44 +69126736ns 1215397 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69127021ns 1215402 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69127418ns 1215409 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69127589ns 1215412 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69128044ns 1215420 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69128214ns 1215423 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69128498ns 1215428 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69128782ns 1215433 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69129067ns 1215438 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69129521ns 1215446 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69129692ns 1215449 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69129976ns 1215454 1a110850 fd5ff06f jal x0, -44 +69130260ns 1215459 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69130544ns 1215464 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69130942ns 1215471 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69131112ns 1215474 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69131567ns 1215482 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69131738ns 1215485 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69132022ns 1215490 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69132306ns 1215495 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69132590ns 1215500 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69133045ns 1215508 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69133215ns 1215511 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69133499ns 1215516 1a110850 fd5ff06f jal x0, -44 +69133784ns 1215521 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69134068ns 1215526 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69134466ns 1215533 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69134636ns 1215536 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69135091ns 1215544 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69135261ns 1215547 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69135545ns 1215552 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69135830ns 1215557 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69136114ns 1215562 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69136568ns 1215570 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69136739ns 1215573 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69137023ns 1215578 1a110850 fd5ff06f jal x0, -44 +69137307ns 1215583 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69137591ns 1215588 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69137989ns 1215595 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69138160ns 1215598 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69138614ns 1215606 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69138785ns 1215609 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69139069ns 1215614 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69139353ns 1215619 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69139637ns 1215624 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69140092ns 1215632 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69140262ns 1215635 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69140547ns 1215640 1a110850 fd5ff06f jal x0, -44 +69140831ns 1215645 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69141115ns 1215650 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69141513ns 1215657 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69141683ns 1215660 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69142138ns 1215668 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69142308ns 1215671 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69142593ns 1215676 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69142877ns 1215681 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69143161ns 1215686 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69143616ns 1215694 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69143786ns 1215697 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69144070ns 1215702 1a110850 fd5ff06f jal x0, -44 +69144354ns 1215707 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69144639ns 1215712 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69145036ns 1215719 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69145207ns 1215722 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69145661ns 1215730 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69145832ns 1215733 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69146116ns 1215738 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69146400ns 1215743 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69146684ns 1215748 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69147139ns 1215756 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69147310ns 1215759 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69147594ns 1215764 1a110850 fd5ff06f jal x0, -44 +69147878ns 1215769 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69148162ns 1215774 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69148560ns 1215781 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69148730ns 1215784 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69149185ns 1215792 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69149356ns 1215795 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69149640ns 1215800 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69149924ns 1215805 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69150208ns 1215810 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69150663ns 1215818 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69150833ns 1215821 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69151117ns 1215826 1a110850 fd5ff06f jal x0, -44 +69151402ns 1215831 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69151686ns 1215836 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69152083ns 1215843 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69152254ns 1215846 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69152709ns 1215854 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69152879ns 1215857 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69153163ns 1215862 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69153447ns 1215867 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69153732ns 1215872 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69154186ns 1215880 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69154357ns 1215883 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69154641ns 1215888 1a110850 fd5ff06f jal x0, -44 +69154925ns 1215893 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69155209ns 1215898 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69155607ns 1215905 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69155778ns 1215908 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69156232ns 1215916 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69156403ns 1215919 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69156687ns 1215924 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69156971ns 1215929 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69157255ns 1215934 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69157710ns 1215942 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69157880ns 1215945 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69158165ns 1215950 1a110850 fd5ff06f jal x0, -44 +69158449ns 1215955 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69158733ns 1215960 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69159131ns 1215967 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69159301ns 1215970 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69159756ns 1215978 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69159926ns 1215981 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69160210ns 1215986 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69160495ns 1215991 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69160779ns 1215996 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69161233ns 1216004 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69161404ns 1216007 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69161688ns 1216012 1a110850 fd5ff06f jal x0, -44 +69161972ns 1216017 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69162256ns 1216022 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69162654ns 1216029 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69162825ns 1216032 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69163279ns 1216040 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69163450ns 1216043 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69163734ns 1216048 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69164018ns 1216053 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69164302ns 1216058 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69164757ns 1216066 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69164928ns 1216069 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69165212ns 1216074 1a110850 fd5ff06f jal x0, -44 +69165496ns 1216079 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69165780ns 1216084 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69166178ns 1216091 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69166348ns 1216094 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69166803ns 1216102 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69166973ns 1216105 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69167258ns 1216110 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69167542ns 1216115 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69167826ns 1216120 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69168281ns 1216128 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69168451ns 1216131 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69168735ns 1216136 1a110850 fd5ff06f jal x0, -44 +69169019ns 1216141 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69169304ns 1216146 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69169701ns 1216153 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69169872ns 1216156 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69170327ns 1216164 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69170497ns 1216167 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69170781ns 1216172 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69171065ns 1216177 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69171350ns 1216182 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69171804ns 1216190 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69171975ns 1216193 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69172259ns 1216198 1a110850 fd5ff06f jal x0, -44 +69172543ns 1216203 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69172827ns 1216208 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69173225ns 1216215 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69173395ns 1216218 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69173850ns 1216226 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69174021ns 1216229 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69174305ns 1216234 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69174589ns 1216239 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69174873ns 1216244 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69175328ns 1216252 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69175498ns 1216255 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69175782ns 1216260 1a110850 fd5ff06f jal x0, -44 +69176067ns 1216265 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69176351ns 1216270 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69176749ns 1216277 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69176919ns 1216280 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69177374ns 1216288 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69177544ns 1216291 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69177828ns 1216296 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69178113ns 1216301 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69178397ns 1216306 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69178851ns 1216314 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69179022ns 1216317 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69179306ns 1216322 1a110850 fd5ff06f jal x0, -44 +69179590ns 1216327 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69179874ns 1216332 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69180272ns 1216339 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69180443ns 1216342 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69180897ns 1216350 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69181068ns 1216353 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69181352ns 1216358 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69181636ns 1216363 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69181920ns 1216368 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69182375ns 1216376 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69182545ns 1216379 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69182830ns 1216384 1a110850 fd5ff06f jal x0, -44 +69183114ns 1216389 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69183398ns 1216394 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69183796ns 1216401 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69183966ns 1216404 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69184421ns 1216412 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69184591ns 1216415 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69184876ns 1216420 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69185160ns 1216425 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69185444ns 1216430 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69185899ns 1216438 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69186069ns 1216441 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69186353ns 1216446 1a110850 fd5ff06f jal x0, -44 +69186637ns 1216451 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69186922ns 1216456 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69187319ns 1216463 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69187490ns 1216466 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69187944ns 1216474 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69188115ns 1216477 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69188399ns 1216482 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69188683ns 1216487 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69188967ns 1216492 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69189422ns 1216500 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69189593ns 1216503 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69189877ns 1216508 1a110850 fd5ff06f jal x0, -44 +69190161ns 1216513 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69190445ns 1216518 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69190843ns 1216525 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69191013ns 1216528 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69191468ns 1216536 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69191639ns 1216539 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69191923ns 1216544 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69192207ns 1216549 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69192491ns 1216554 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69192946ns 1216562 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69193116ns 1216565 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69193400ns 1216570 1a110850 fd5ff06f jal x0, -44 +69193685ns 1216575 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69193969ns 1216580 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69194367ns 1216587 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69194537ns 1216590 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69194992ns 1216598 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69195162ns 1216601 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69195446ns 1216606 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69195730ns 1216611 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69196015ns 1216616 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69196469ns 1216624 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69196640ns 1216627 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69196924ns 1216632 1a110850 fd5ff06f jal x0, -44 +69197208ns 1216637 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69197492ns 1216642 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69197890ns 1216649 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69198061ns 1216652 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69198515ns 1216660 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69198686ns 1216663 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69198970ns 1216668 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69199254ns 1216673 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69199538ns 1216678 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69199993ns 1216686 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69200163ns 1216689 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69200448ns 1216694 1a110850 fd5ff06f jal x0, -44 +69200732ns 1216699 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69201016ns 1216704 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69201414ns 1216711 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69201584ns 1216714 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69202039ns 1216722 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69202209ns 1216725 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69202493ns 1216730 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69202778ns 1216735 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69203062ns 1216740 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69203516ns 1216748 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69203687ns 1216751 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69203971ns 1216756 1a110850 fd5ff06f jal x0, -44 +69204255ns 1216761 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69204539ns 1216766 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69204937ns 1216773 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69205108ns 1216776 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69205562ns 1216784 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69205733ns 1216787 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69206017ns 1216792 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69206301ns 1216797 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69206585ns 1216802 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69207040ns 1216810 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69207211ns 1216813 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69207495ns 1216818 1a110850 fd5ff06f jal x0, -44 +69207779ns 1216823 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69208063ns 1216828 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69208461ns 1216835 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69208631ns 1216838 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69209086ns 1216846 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69209256ns 1216849 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69209541ns 1216854 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69209825ns 1216859 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69210109ns 1216864 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69210564ns 1216872 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69210734ns 1216875 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69211018ns 1216880 1a110850 fd5ff06f jal x0, -44 +69211302ns 1216885 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69211587ns 1216890 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69211984ns 1216897 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69212155ns 1216900 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69212610ns 1216908 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69212780ns 1216911 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69213064ns 1216916 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69213348ns 1216921 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69213633ns 1216926 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69214087ns 1216934 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69214258ns 1216937 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69214542ns 1216942 1a110850 fd5ff06f jal x0, -44 +69214826ns 1216947 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69215110ns 1216952 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69215508ns 1216959 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69215679ns 1216962 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69216133ns 1216970 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69216304ns 1216973 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69216588ns 1216978 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69216872ns 1216983 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69217156ns 1216988 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69217611ns 1216996 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69217781ns 1216999 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69218065ns 1217004 1a110850 fd5ff06f jal x0, -44 +69218350ns 1217009 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69218634ns 1217014 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69219032ns 1217021 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69219202ns 1217024 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69219657ns 1217032 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69219827ns 1217035 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69220111ns 1217040 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69220396ns 1217045 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69220680ns 1217050 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69221134ns 1217058 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69221305ns 1217061 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69221589ns 1217066 1a110850 fd5ff06f jal x0, -44 +69221873ns 1217071 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69222157ns 1217076 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69222555ns 1217083 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69222726ns 1217086 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69223180ns 1217094 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69223351ns 1217097 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69223635ns 1217102 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69223919ns 1217107 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69224203ns 1217112 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69224658ns 1217120 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69224828ns 1217123 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69225113ns 1217128 1a110850 fd5ff06f jal x0, -44 +69225397ns 1217133 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69225681ns 1217138 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69226079ns 1217145 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69226249ns 1217148 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69226704ns 1217156 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69226874ns 1217159 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69227159ns 1217164 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69227443ns 1217169 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69227727ns 1217174 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69228182ns 1217182 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69228352ns 1217185 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69228636ns 1217190 1a110850 fd5ff06f jal x0, -44 +69228920ns 1217195 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69229205ns 1217200 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69229602ns 1217207 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69229773ns 1217210 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69230227ns 1217218 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69230398ns 1217221 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69230682ns 1217226 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69230966ns 1217231 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69231250ns 1217236 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69231705ns 1217244 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69231876ns 1217247 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69232160ns 1217252 1a110850 fd5ff06f jal x0, -44 +69232444ns 1217257 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69232728ns 1217262 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69233126ns 1217269 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69233296ns 1217272 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69233751ns 1217280 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69233922ns 1217283 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69234206ns 1217288 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69234490ns 1217293 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69234774ns 1217298 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69235229ns 1217306 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69235399ns 1217309 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69235683ns 1217314 1a110850 fd5ff06f jal x0, -44 +69235968ns 1217319 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69236252ns 1217324 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69236650ns 1217331 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69236820ns 1217334 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69237275ns 1217342 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69237445ns 1217345 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69237729ns 1217350 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69238013ns 1217355 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69238298ns 1217360 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69238752ns 1217368 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69238923ns 1217371 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69239207ns 1217376 1a110850 fd5ff06f jal x0, -44 +69239491ns 1217381 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69239775ns 1217386 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69240173ns 1217393 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69240344ns 1217396 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69240798ns 1217404 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69240969ns 1217407 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69241253ns 1217412 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69241537ns 1217417 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69241821ns 1217422 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69242276ns 1217430 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69242446ns 1217433 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69242731ns 1217438 1a110850 fd5ff06f jal x0, -44 +69243015ns 1217443 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69243299ns 1217448 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69243697ns 1217455 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69243867ns 1217458 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69244322ns 1217466 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69244492ns 1217469 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69244776ns 1217474 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69245061ns 1217479 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69245345ns 1217484 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69245799ns 1217492 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69245970ns 1217495 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69246254ns 1217500 1a110850 fd5ff06f jal x0, -44 +69246538ns 1217505 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69246822ns 1217510 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69247220ns 1217517 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69247391ns 1217520 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69247845ns 1217528 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69248016ns 1217531 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69248300ns 1217536 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69248584ns 1217541 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69248868ns 1217546 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69249323ns 1217554 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69249494ns 1217557 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69249778ns 1217562 1a110850 fd5ff06f jal x0, -44 +69250062ns 1217567 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69250346ns 1217572 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69250744ns 1217579 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69250914ns 1217582 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69251369ns 1217590 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69251539ns 1217593 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69251824ns 1217598 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69252108ns 1217603 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69252392ns 1217608 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69252847ns 1217616 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69253017ns 1217619 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69253301ns 1217624 1a110850 fd5ff06f jal x0, -44 +69253585ns 1217629 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69253870ns 1217634 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69254267ns 1217641 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69254438ns 1217644 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69254893ns 1217652 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69255063ns 1217655 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69255347ns 1217660 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69255631ns 1217665 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69255916ns 1217670 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69256370ns 1217678 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69256541ns 1217681 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69256825ns 1217686 1a110850 fd5ff06f jal x0, -44 +69257109ns 1217691 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69257393ns 1217696 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69257791ns 1217703 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69257962ns 1217706 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69258416ns 1217714 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69258587ns 1217717 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69258871ns 1217722 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69259155ns 1217727 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69259439ns 1217732 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69259894ns 1217740 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69260064ns 1217743 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69260348ns 1217748 1a110850 fd5ff06f jal x0, -44 +69260633ns 1217753 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69260917ns 1217758 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69261315ns 1217765 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69261485ns 1217768 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69261940ns 1217776 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69262110ns 1217779 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69262394ns 1217784 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69262679ns 1217789 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69262963ns 1217794 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69263417ns 1217802 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69263588ns 1217805 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69263872ns 1217810 1a110850 fd5ff06f jal x0, -44 +69264156ns 1217815 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69264440ns 1217820 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69264838ns 1217827 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69265009ns 1217830 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69265463ns 1217838 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69265634ns 1217841 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69265918ns 1217846 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69266202ns 1217851 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69266486ns 1217856 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69266941ns 1217864 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69267111ns 1217867 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69267396ns 1217872 1a110850 fd5ff06f jal x0, -44 +69267680ns 1217877 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69267964ns 1217882 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69268362ns 1217889 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69268532ns 1217892 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69268987ns 1217900 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69269157ns 1217903 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69269442ns 1217908 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69269726ns 1217913 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69270010ns 1217918 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69270465ns 1217926 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69270635ns 1217929 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69270919ns 1217934 1a110850 fd5ff06f jal x0, -44 +69271203ns 1217939 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69271488ns 1217944 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69271885ns 1217951 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69272056ns 1217954 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69272511ns 1217962 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69272681ns 1217965 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69272965ns 1217970 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69273249ns 1217975 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69273533ns 1217980 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69273988ns 1217988 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69274159ns 1217991 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69274443ns 1217996 1a110850 fd5ff06f jal x0, -44 +69274727ns 1218001 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69275011ns 1218006 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69275409ns 1218013 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69275579ns 1218016 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69276034ns 1218024 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69276205ns 1218027 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69276489ns 1218032 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69276773ns 1218037 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69277057ns 1218042 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69277512ns 1218050 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69277682ns 1218053 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69277966ns 1218058 1a110850 fd5ff06f jal x0, -44 +69278251ns 1218063 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69278535ns 1218068 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69278933ns 1218075 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69279103ns 1218078 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69279558ns 1218086 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69279728ns 1218089 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69280012ns 1218094 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69280296ns 1218099 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69280581ns 1218104 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69281035ns 1218112 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69281206ns 1218115 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69281490ns 1218120 1a110850 fd5ff06f jal x0, -44 +69281774ns 1218125 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69282058ns 1218130 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69282456ns 1218137 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69282627ns 1218140 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69283081ns 1218148 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69283252ns 1218151 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69283536ns 1218156 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69283820ns 1218161 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69284104ns 1218166 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69284559ns 1218174 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69284729ns 1218177 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69285014ns 1218182 1a110850 fd5ff06f jal x0, -44 +69285298ns 1218187 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69285582ns 1218192 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69285980ns 1218199 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69286150ns 1218202 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69286605ns 1218210 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69286775ns 1218213 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69287059ns 1218218 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69287344ns 1218223 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69287628ns 1218228 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69288082ns 1218236 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69288253ns 1218239 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69288537ns 1218244 1a110850 fd5ff06f jal x0, -44 +69288821ns 1218249 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69289105ns 1218254 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69289503ns 1218261 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69289674ns 1218264 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69290128ns 1218272 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69290299ns 1218275 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69290583ns 1218280 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69290867ns 1218285 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69291151ns 1218290 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69291606ns 1218298 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69291777ns 1218301 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69292061ns 1218306 1a110850 fd5ff06f jal x0, -44 +69292345ns 1218311 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69292629ns 1218316 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69293027ns 1218323 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69293197ns 1218326 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69293652ns 1218334 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69293823ns 1218337 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69294107ns 1218342 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69294391ns 1218347 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69294675ns 1218352 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69295130ns 1218360 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69295300ns 1218363 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69295584ns 1218368 1a110850 fd5ff06f jal x0, -44 +69295868ns 1218373 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69296153ns 1218378 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69296550ns 1218385 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69296721ns 1218388 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69297176ns 1218396 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69297346ns 1218399 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69297630ns 1218404 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69297914ns 1218409 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69298199ns 1218414 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69298653ns 1218422 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69298824ns 1218425 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69299108ns 1218430 1a110850 fd5ff06f jal x0, -44 +69299392ns 1218435 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69299676ns 1218440 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69300074ns 1218447 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69300245ns 1218450 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69300699ns 1218458 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69300870ns 1218461 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69301154ns 1218466 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69301438ns 1218471 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69301722ns 1218476 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69302177ns 1218484 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69302347ns 1218487 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69302631ns 1218492 1a110850 fd5ff06f jal x0, -44 +69302916ns 1218497 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69303200ns 1218502 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69303598ns 1218509 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69303768ns 1218512 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69304223ns 1218520 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69304393ns 1218523 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69304677ns 1218528 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69304962ns 1218533 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69305246ns 1218538 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69305700ns 1218546 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69305871ns 1218549 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69306155ns 1218554 1a110850 fd5ff06f jal x0, -44 +69306439ns 1218559 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69306723ns 1218564 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69307121ns 1218571 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69307292ns 1218574 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69307746ns 1218582 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69307917ns 1218585 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69308201ns 1218590 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69308485ns 1218595 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69308769ns 1218600 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69309224ns 1218608 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69309394ns 1218611 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69309679ns 1218616 1a110850 fd5ff06f jal x0, -44 +69309963ns 1218621 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69310247ns 1218626 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69310645ns 1218633 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69310815ns 1218636 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69311270ns 1218644 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69311440ns 1218647 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69311725ns 1218652 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69312009ns 1218657 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69312293ns 1218662 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69312748ns 1218670 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69312918ns 1218673 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69313202ns 1218678 1a110850 fd5ff06f jal x0, -44 +69313486ns 1218683 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69313771ns 1218688 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69314168ns 1218695 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69314339ns 1218698 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69314794ns 1218706 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69314964ns 1218709 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69315248ns 1218714 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69315532ns 1218719 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69315816ns 1218724 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69316271ns 1218732 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69316442ns 1218735 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69316726ns 1218740 1a110850 fd5ff06f jal x0, -44 +69317010ns 1218745 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69317294ns 1218750 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69317692ns 1218757 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69317862ns 1218760 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69318317ns 1218768 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69318488ns 1218771 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69318772ns 1218776 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69319056ns 1218781 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69319340ns 1218786 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69319795ns 1218794 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69319965ns 1218797 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69320249ns 1218802 1a110850 fd5ff06f jal x0, -44 +69320534ns 1218807 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69320818ns 1218812 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69321216ns 1218819 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69321386ns 1218822 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69321841ns 1218830 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69322011ns 1218833 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69322295ns 1218838 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69322579ns 1218843 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69322864ns 1218848 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69323318ns 1218856 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69323489ns 1218859 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69323773ns 1218864 1a110850 fd5ff06f jal x0, -44 +69324057ns 1218869 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69324341ns 1218874 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69324739ns 1218881 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69324910ns 1218884 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69325364ns 1218892 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69325535ns 1218895 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69325819ns 1218900 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69326103ns 1218905 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69326387ns 1218910 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69326842ns 1218918 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69327012ns 1218921 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69327297ns 1218926 1a110850 fd5ff06f jal x0, -44 +69327581ns 1218931 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69327865ns 1218936 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69328263ns 1218943 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69328433ns 1218946 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69328888ns 1218954 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69329058ns 1218957 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69329343ns 1218962 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69329627ns 1218967 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69329911ns 1218972 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69330365ns 1218980 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69330536ns 1218983 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69330820ns 1218988 1a110850 fd5ff06f jal x0, -44 +69331104ns 1218993 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69331388ns 1218998 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69331786ns 1219005 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69331957ns 1219008 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69332411ns 1219016 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69332582ns 1219019 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69332866ns 1219024 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69333150ns 1219029 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69333434ns 1219034 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69333889ns 1219042 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69334060ns 1219045 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69334344ns 1219050 1a110850 fd5ff06f jal x0, -44 +69334628ns 1219055 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69334912ns 1219060 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69335310ns 1219067 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69335480ns 1219070 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69335935ns 1219078 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69336106ns 1219081 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69336390ns 1219086 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69336674ns 1219091 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69336958ns 1219096 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69337413ns 1219104 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69337583ns 1219107 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69337867ns 1219112 1a110850 fd5ff06f jal x0, -44 +69338151ns 1219117 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69338436ns 1219122 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69338833ns 1219129 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69339004ns 1219132 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69339459ns 1219140 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69339629ns 1219143 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69339913ns 1219148 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69340197ns 1219153 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69340482ns 1219158 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69340936ns 1219166 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69341107ns 1219169 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69341391ns 1219174 1a110850 fd5ff06f jal x0, -44 +69341675ns 1219179 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69341959ns 1219184 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69342357ns 1219191 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69342528ns 1219194 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69342982ns 1219202 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69343153ns 1219205 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69343437ns 1219210 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69343721ns 1219215 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69344005ns 1219220 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69344460ns 1219228 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69344630ns 1219231 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69344914ns 1219236 1a110850 fd5ff06f jal x0, -44 +69345199ns 1219241 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69345483ns 1219246 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69345881ns 1219253 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69346051ns 1219256 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69346506ns 1219264 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69346676ns 1219267 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69346960ns 1219272 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69347245ns 1219277 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69347529ns 1219282 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69347983ns 1219290 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69348154ns 1219293 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69348438ns 1219298 1a110850 fd5ff06f jal x0, -44 +69348722ns 1219303 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69349006ns 1219308 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69349404ns 1219315 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69349575ns 1219318 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69350029ns 1219326 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69350200ns 1219329 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69350484ns 1219334 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69350768ns 1219339 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69351052ns 1219344 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69351507ns 1219352 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69351677ns 1219355 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69351962ns 1219360 1a110850 fd5ff06f jal x0, -44 +69352246ns 1219365 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69352530ns 1219370 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69352928ns 1219377 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69353098ns 1219380 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69353553ns 1219388 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69353723ns 1219391 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69354008ns 1219396 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69354292ns 1219401 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69354576ns 1219406 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69355031ns 1219414 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69355201ns 1219417 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69355485ns 1219422 1a110850 fd5ff06f jal x0, -44 +69355769ns 1219427 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69356054ns 1219432 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69356451ns 1219439 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69356622ns 1219442 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69357077ns 1219450 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69357247ns 1219453 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69357531ns 1219458 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69357815ns 1219463 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69358099ns 1219468 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69358554ns 1219476 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69358725ns 1219479 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69359009ns 1219484 1a110850 fd5ff06f jal x0, -44 +69359293ns 1219489 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69359577ns 1219494 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69359975ns 1219501 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69360145ns 1219504 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69360600ns 1219512 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69360771ns 1219515 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69361055ns 1219520 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69361339ns 1219525 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69361623ns 1219530 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69362078ns 1219538 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69362248ns 1219541 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69362532ns 1219546 1a110850 fd5ff06f jal x0, -44 +69362817ns 1219551 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69363101ns 1219556 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69363499ns 1219563 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69363669ns 1219566 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69364124ns 1219574 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69364294ns 1219577 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69364578ns 1219582 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69364863ns 1219587 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69365147ns 1219592 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69365601ns 1219600 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69365772ns 1219603 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69366056ns 1219608 1a110850 fd5ff06f jal x0, -44 +69366340ns 1219613 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69366624ns 1219618 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69367022ns 1219625 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69367193ns 1219628 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69367647ns 1219636 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69367818ns 1219639 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69368102ns 1219644 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69368386ns 1219649 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69368670ns 1219654 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69369125ns 1219662 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69369295ns 1219665 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69369580ns 1219670 1a110850 fd5ff06f jal x0, -44 +69369864ns 1219675 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69370148ns 1219680 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69370546ns 1219687 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69370716ns 1219690 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69371171ns 1219698 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69371341ns 1219701 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69371626ns 1219706 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69371910ns 1219711 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69372194ns 1219716 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69372648ns 1219724 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69372819ns 1219727 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69373103ns 1219732 1a110850 fd5ff06f jal x0, -44 +69373387ns 1219737 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69373671ns 1219742 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69374069ns 1219749 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69374240ns 1219752 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69374694ns 1219760 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69374865ns 1219763 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69375149ns 1219768 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69375433ns 1219773 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69375717ns 1219778 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69376172ns 1219786 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69376343ns 1219789 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69376627ns 1219794 1a110850 fd5ff06f jal x0, -44 +69376911ns 1219799 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69377195ns 1219804 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69377593ns 1219811 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69377763ns 1219814 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69378218ns 1219822 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69378389ns 1219825 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69378673ns 1219830 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69378957ns 1219835 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69379241ns 1219840 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69379696ns 1219848 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69379866ns 1219851 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69380150ns 1219856 1a110850 fd5ff06f jal x0, -44 +69380434ns 1219861 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69380719ns 1219866 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69381116ns 1219873 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69381287ns 1219876 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69381742ns 1219884 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69381912ns 1219887 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69382196ns 1219892 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69382480ns 1219897 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69382765ns 1219902 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69383219ns 1219910 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69383390ns 1219913 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69383674ns 1219918 1a110850 fd5ff06f jal x0, -44 +69383958ns 1219923 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69384242ns 1219928 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69384640ns 1219935 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69384811ns 1219938 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69385265ns 1219946 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69385436ns 1219949 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69385720ns 1219954 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69386004ns 1219959 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69386288ns 1219964 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69386743ns 1219972 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69386913ns 1219975 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69387197ns 1219980 1a110850 fd5ff06f jal x0, -44 +69387482ns 1219985 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69387766ns 1219990 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69388164ns 1219997 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69388334ns 1220000 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69388789ns 1220008 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69388959ns 1220011 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69389243ns 1220016 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69389528ns 1220021 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69389812ns 1220026 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69390266ns 1220034 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69390437ns 1220037 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69390721ns 1220042 1a110850 fd5ff06f jal x0, -44 +69391005ns 1220047 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69391289ns 1220052 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69391687ns 1220059 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69391858ns 1220062 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69392312ns 1220070 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69392483ns 1220073 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69392767ns 1220078 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69393051ns 1220083 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69393335ns 1220088 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69393790ns 1220096 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69393960ns 1220099 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69394245ns 1220104 1a110850 fd5ff06f jal x0, -44 +69394529ns 1220109 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69394813ns 1220114 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69395211ns 1220121 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69395381ns 1220124 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69395836ns 1220132 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69396006ns 1220135 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69396291ns 1220140 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69396575ns 1220145 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69396859ns 1220150 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69397314ns 1220158 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69397484ns 1220161 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69397768ns 1220166 1a110850 fd5ff06f jal x0, -44 +69398052ns 1220171 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69398337ns 1220176 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69398734ns 1220183 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69398905ns 1220186 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69399360ns 1220194 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69399530ns 1220197 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69399814ns 1220202 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69400098ns 1220207 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69400383ns 1220212 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69400837ns 1220220 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69401008ns 1220223 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69401292ns 1220228 1a110850 fd5ff06f jal x0, -44 +69401576ns 1220233 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69401860ns 1220238 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69402258ns 1220245 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69402428ns 1220248 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69402883ns 1220256 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69403054ns 1220259 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69403338ns 1220264 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69403622ns 1220269 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69403906ns 1220274 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69404361ns 1220282 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69404531ns 1220285 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69404815ns 1220290 1a110850 fd5ff06f jal x0, -44 +69405100ns 1220295 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69405384ns 1220300 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69405782ns 1220307 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69405952ns 1220310 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69406407ns 1220318 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69406577ns 1220321 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69406861ns 1220326 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69407146ns 1220331 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69407430ns 1220336 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69407884ns 1220344 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69408055ns 1220347 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69408339ns 1220352 1a110850 fd5ff06f jal x0, -44 +69408623ns 1220357 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69408907ns 1220362 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69409305ns 1220369 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69409476ns 1220372 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69409930ns 1220380 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69410101ns 1220383 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69410385ns 1220388 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69410669ns 1220393 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69410953ns 1220398 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69411408ns 1220406 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69411578ns 1220409 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69411863ns 1220414 1a110850 fd5ff06f jal x0, -44 +69412147ns 1220419 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69412431ns 1220424 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69412829ns 1220431 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69412999ns 1220434 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69413454ns 1220442 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69413624ns 1220445 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69413909ns 1220450 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69414193ns 1220455 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69414477ns 1220460 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69414931ns 1220468 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69415102ns 1220471 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69415386ns 1220476 1a110850 fd5ff06f jal x0, -44 +69415670ns 1220481 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69415954ns 1220486 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69416352ns 1220493 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69416523ns 1220496 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69416977ns 1220504 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69417148ns 1220507 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69417432ns 1220512 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69417716ns 1220517 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69418000ns 1220522 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69418455ns 1220530 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69418626ns 1220533 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69418910ns 1220538 1a110850 fd5ff06f jal x0, -44 +69419194ns 1220543 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69419478ns 1220548 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69419876ns 1220555 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69420046ns 1220558 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69420501ns 1220566 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69420672ns 1220569 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69420956ns 1220574 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69421240ns 1220579 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69421524ns 1220584 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69421979ns 1220592 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69422149ns 1220595 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69422433ns 1220600 1a110850 fd5ff06f jal x0, -44 +69422717ns 1220605 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69423002ns 1220610 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69423399ns 1220617 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69423570ns 1220620 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69424025ns 1220628 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69424195ns 1220631 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69424479ns 1220636 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69424763ns 1220641 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69425048ns 1220646 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69425502ns 1220654 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69425673ns 1220657 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69425957ns 1220662 1a110850 fd5ff06f jal x0, -44 +69426241ns 1220667 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69426525ns 1220672 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69426923ns 1220679 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69427094ns 1220682 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69427548ns 1220690 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69427719ns 1220693 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69428003ns 1220698 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69428287ns 1220703 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69428571ns 1220708 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69429026ns 1220716 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69429196ns 1220719 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69429480ns 1220724 1a110850 fd5ff06f jal x0, -44 +69429765ns 1220729 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69430049ns 1220734 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69430447ns 1220741 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69430617ns 1220744 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69431072ns 1220752 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69431242ns 1220755 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69431526ns 1220760 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69431811ns 1220765 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69432095ns 1220770 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69432549ns 1220778 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69432720ns 1220781 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69433004ns 1220786 1a110850 fd5ff06f jal x0, -44 +69433288ns 1220791 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69433572ns 1220796 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69433970ns 1220803 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69434141ns 1220806 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69434595ns 1220814 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69434766ns 1220817 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69435050ns 1220822 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69435334ns 1220827 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69435618ns 1220832 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69436073ns 1220840 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69436243ns 1220843 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69436528ns 1220848 1a110850 fd5ff06f jal x0, -44 +69436812ns 1220853 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69437096ns 1220858 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69437494ns 1220865 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69437664ns 1220868 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69438119ns 1220876 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69438289ns 1220879 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69438574ns 1220884 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69438858ns 1220889 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69439142ns 1220894 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69439597ns 1220902 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69439767ns 1220905 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69440051ns 1220910 1a110850 fd5ff06f jal x0, -44 +69440335ns 1220915 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69440620ns 1220920 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69441017ns 1220927 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69441188ns 1220930 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69441643ns 1220938 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69441813ns 1220941 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69442097ns 1220946 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69442381ns 1220951 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69442666ns 1220956 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69443120ns 1220964 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69443291ns 1220967 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69443575ns 1220972 1a110850 fd5ff06f jal x0, -44 +69443859ns 1220977 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69444143ns 1220982 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69444541ns 1220989 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69444711ns 1220992 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69445166ns 1221000 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69445337ns 1221003 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69445621ns 1221008 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69445905ns 1221013 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69446189ns 1221018 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69446644ns 1221026 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69446814ns 1221029 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69447098ns 1221034 1a110850 fd5ff06f jal x0, -44 +69447383ns 1221039 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69447667ns 1221044 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69448065ns 1221051 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69448235ns 1221054 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69448690ns 1221062 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69448860ns 1221065 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69449144ns 1221070 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69449429ns 1221075 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69449713ns 1221080 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69450167ns 1221088 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69450338ns 1221091 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69450622ns 1221096 1a110850 fd5ff06f jal x0, -44 +69450906ns 1221101 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69451190ns 1221106 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69451588ns 1221113 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69451759ns 1221116 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69452213ns 1221124 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69452384ns 1221127 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69452668ns 1221132 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69452952ns 1221137 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69453236ns 1221142 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69453691ns 1221150 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69453861ns 1221153 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69454146ns 1221158 1a110850 fd5ff06f jal x0, -44 +69454430ns 1221163 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69454714ns 1221168 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69455112ns 1221175 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69455282ns 1221178 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69455737ns 1221186 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69455907ns 1221189 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69456192ns 1221194 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69456476ns 1221199 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69456760ns 1221204 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69457215ns 1221212 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69457385ns 1221215 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69457669ns 1221220 1a110850 fd5ff06f jal x0, -44 +69457953ns 1221225 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69458237ns 1221230 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69458635ns 1221237 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69458806ns 1221240 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69459260ns 1221248 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69459431ns 1221251 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69459715ns 1221256 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69459999ns 1221261 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69460283ns 1221266 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69460738ns 1221274 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69460909ns 1221277 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69461193ns 1221282 1a110850 fd5ff06f jal x0, -44 +69461477ns 1221287 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69461761ns 1221292 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69462159ns 1221299 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69462329ns 1221302 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69462784ns 1221310 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69462955ns 1221313 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69463239ns 1221318 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69463523ns 1221323 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69463807ns 1221328 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69464262ns 1221336 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69464432ns 1221339 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69464716ns 1221344 1a110850 fd5ff06f jal x0, -44 +69465000ns 1221349 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69465285ns 1221354 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69465682ns 1221361 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69465853ns 1221364 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69466308ns 1221372 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69466478ns 1221375 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69466762ns 1221380 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69467046ns 1221385 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69467331ns 1221390 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69467785ns 1221398 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69467956ns 1221401 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69468240ns 1221406 1a110850 fd5ff06f jal x0, -44 +69468524ns 1221411 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69468808ns 1221416 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69469206ns 1221423 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69469377ns 1221426 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69469831ns 1221434 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69470002ns 1221437 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69470286ns 1221442 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69470570ns 1221447 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69470854ns 1221452 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69471309ns 1221460 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69471479ns 1221463 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69471763ns 1221468 1a110850 fd5ff06f jal x0, -44 +69472048ns 1221473 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69472332ns 1221478 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69472730ns 1221485 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69472900ns 1221488 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69473355ns 1221496 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69473525ns 1221499 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69473809ns 1221504 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69474094ns 1221509 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69474378ns 1221514 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69474832ns 1221522 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69475003ns 1221525 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69475287ns 1221530 1a110850 fd5ff06f jal x0, -44 +69475571ns 1221535 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69475855ns 1221540 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69476253ns 1221547 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69476424ns 1221550 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69476878ns 1221558 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69477049ns 1221561 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69477333ns 1221566 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69477617ns 1221571 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69477901ns 1221576 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69478356ns 1221584 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69478527ns 1221587 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69478811ns 1221592 1a110850 fd5ff06f jal x0, -44 +69479095ns 1221597 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69479379ns 1221602 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69479777ns 1221609 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69479947ns 1221612 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69480402ns 1221620 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69480572ns 1221623 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69480857ns 1221628 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69481141ns 1221633 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69481425ns 1221638 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69481880ns 1221646 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69482050ns 1221649 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69482334ns 1221654 1a110850 fd5ff06f jal x0, -44 +69482618ns 1221659 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69482903ns 1221664 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69483300ns 1221671 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69483471ns 1221674 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69483926ns 1221682 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69484096ns 1221685 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69484380ns 1221690 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69484664ns 1221695 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69484949ns 1221700 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69485403ns 1221708 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69485574ns 1221711 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69485858ns 1221716 1a110850 fd5ff06f jal x0, -44 +69486142ns 1221721 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69486426ns 1221726 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69486824ns 1221733 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69486994ns 1221736 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69487449ns 1221744 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69487620ns 1221747 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69487904ns 1221752 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69488188ns 1221757 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69488472ns 1221762 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69488927ns 1221770 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69489097ns 1221773 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69489381ns 1221778 1a110850 fd5ff06f jal x0, -44 +69489666ns 1221783 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69489950ns 1221788 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69490348ns 1221795 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69490518ns 1221798 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69490973ns 1221806 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69491143ns 1221809 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69491427ns 1221814 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69491712ns 1221819 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69491996ns 1221824 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69492450ns 1221832 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69492621ns 1221835 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69492905ns 1221840 1a110850 fd5ff06f jal x0, -44 +69493189ns 1221845 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69493473ns 1221850 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69493871ns 1221857 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69494042ns 1221860 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69494496ns 1221868 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69494667ns 1221871 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69494951ns 1221876 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69495235ns 1221881 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69495519ns 1221886 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69495974ns 1221894 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69496144ns 1221897 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69496429ns 1221902 1a110850 fd5ff06f jal x0, -44 +69496713ns 1221907 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69496997ns 1221912 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69497395ns 1221919 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69497565ns 1221922 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69498020ns 1221930 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69498190ns 1221933 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69498475ns 1221938 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69498759ns 1221943 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69499043ns 1221948 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69499498ns 1221956 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69499668ns 1221959 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69499952ns 1221964 1a110850 fd5ff06f jal x0, -44 +69500236ns 1221969 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69500520ns 1221974 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69500918ns 1221981 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69501089ns 1221984 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69501543ns 1221992 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69501714ns 1221995 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69501998ns 1222000 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69502282ns 1222005 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69502566ns 1222010 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69503021ns 1222018 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69503192ns 1222021 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69503476ns 1222026 1a110850 fd5ff06f jal x0, -44 +69503760ns 1222031 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69504044ns 1222036 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69504442ns 1222043 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69504612ns 1222046 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69505067ns 1222054 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69505238ns 1222057 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69505522ns 1222062 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69505806ns 1222067 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69506090ns 1222072 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69506545ns 1222080 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69506715ns 1222083 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69506999ns 1222088 1a110850 fd5ff06f jal x0, -44 +69507283ns 1222093 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69507568ns 1222098 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69507965ns 1222105 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69508136ns 1222108 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69508591ns 1222116 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69508761ns 1222119 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69509045ns 1222124 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69509329ns 1222129 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69509614ns 1222134 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69510068ns 1222142 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69510239ns 1222145 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69510523ns 1222150 1a110850 fd5ff06f jal x0, -44 +69510807ns 1222155 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69511091ns 1222160 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69511489ns 1222167 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69511660ns 1222170 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69512114ns 1222178 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69512285ns 1222181 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69512569ns 1222186 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69512853ns 1222191 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69513137ns 1222196 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69513592ns 1222204 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69513762ns 1222207 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69514047ns 1222212 1a110850 fd5ff06f jal x0, -44 +69514331ns 1222217 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69514615ns 1222222 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69515013ns 1222229 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69515183ns 1222232 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69515638ns 1222240 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69515808ns 1222243 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69516092ns 1222248 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69516377ns 1222253 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69516661ns 1222258 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69517115ns 1222266 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69517286ns 1222269 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69517570ns 1222274 1a110850 fd5ff06f jal x0, -44 +69517854ns 1222279 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69518138ns 1222284 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69518536ns 1222291 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69518707ns 1222294 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69519161ns 1222302 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69519332ns 1222305 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69519616ns 1222310 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69519900ns 1222315 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69520184ns 1222320 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69520639ns 1222328 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69520810ns 1222331 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69521094ns 1222336 1a110850 fd5ff06f jal x0, -44 +69521378ns 1222341 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69521662ns 1222346 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69522060ns 1222353 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69522230ns 1222356 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69522685ns 1222364 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69522855ns 1222367 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69523140ns 1222372 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69523424ns 1222377 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69523708ns 1222382 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69524163ns 1222390 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69524333ns 1222393 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69524617ns 1222398 1a110850 fd5ff06f jal x0, -44 +69524901ns 1222403 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69525186ns 1222408 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69525583ns 1222415 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69525754ns 1222418 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69526209ns 1222426 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69526379ns 1222429 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69526663ns 1222434 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69526947ns 1222439 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69527232ns 1222444 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69527686ns 1222452 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69527857ns 1222455 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69528141ns 1222460 1a110850 fd5ff06f jal x0, -44 +69528425ns 1222465 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69528709ns 1222470 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69529107ns 1222477 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69529277ns 1222480 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69529732ns 1222488 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69529903ns 1222491 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69530187ns 1222496 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69530471ns 1222501 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69530755ns 1222506 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69531210ns 1222514 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69531380ns 1222517 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69531664ns 1222522 1a110850 fd5ff06f jal x0, -44 +69531949ns 1222527 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69532233ns 1222532 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69532631ns 1222539 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69532801ns 1222542 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69533256ns 1222550 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69533426ns 1222553 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69533710ns 1222558 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69533995ns 1222563 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69534279ns 1222568 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69534733ns 1222576 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69534904ns 1222579 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69535188ns 1222584 1a110850 fd5ff06f jal x0, -44 +69535472ns 1222589 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69535756ns 1222594 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69536154ns 1222601 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69536325ns 1222604 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69536779ns 1222612 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69536950ns 1222615 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69537234ns 1222620 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69537518ns 1222625 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69537802ns 1222630 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69538257ns 1222638 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69538427ns 1222641 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69538712ns 1222646 1a110850 fd5ff06f jal x0, -44 +69538996ns 1222651 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69539280ns 1222656 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69539678ns 1222663 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69539848ns 1222666 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69540303ns 1222674 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69540473ns 1222677 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69540758ns 1222682 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69541042ns 1222687 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69541326ns 1222692 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69541781ns 1222700 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69541951ns 1222703 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69542235ns 1222708 1a110850 fd5ff06f jal x0, -44 +69542519ns 1222713 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69542803ns 1222718 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69543201ns 1222725 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69543372ns 1222728 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69543826ns 1222736 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69543997ns 1222739 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69544281ns 1222744 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69544565ns 1222749 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69544849ns 1222754 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69545304ns 1222762 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69545475ns 1222765 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69545759ns 1222770 1a110850 fd5ff06f jal x0, -44 +69546043ns 1222775 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69546327ns 1222780 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69546725ns 1222787 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69546895ns 1222790 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69547350ns 1222798 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69547521ns 1222801 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69547805ns 1222806 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69548089ns 1222811 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69548373ns 1222816 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69548828ns 1222824 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69548998ns 1222827 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69549282ns 1222832 1a110850 fd5ff06f jal x0, -44 +69549567ns 1222837 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69549851ns 1222842 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69550248ns 1222849 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69550419ns 1222852 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69550874ns 1222860 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69551044ns 1222863 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69551328ns 1222868 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69551612ns 1222873 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69551897ns 1222878 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69552351ns 1222886 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69552522ns 1222889 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69552806ns 1222894 1a110850 fd5ff06f jal x0, -44 +69553090ns 1222899 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69553374ns 1222904 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69553772ns 1222911 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69553943ns 1222914 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69554397ns 1222922 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69554568ns 1222925 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69554852ns 1222930 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69555136ns 1222935 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69555420ns 1222940 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69555875ns 1222948 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69556045ns 1222951 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69556330ns 1222956 1a110850 fd5ff06f jal x0, -44 +69556614ns 1222961 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69556898ns 1222966 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69557296ns 1222973 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69557466ns 1222976 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69557921ns 1222984 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69558091ns 1222987 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69558375ns 1222992 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69558660ns 1222997 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69558944ns 1223002 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69559398ns 1223010 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69559569ns 1223013 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69559853ns 1223018 1a110850 fd5ff06f jal x0, -44 +69560137ns 1223023 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69560421ns 1223028 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69560819ns 1223035 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69560990ns 1223038 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69561444ns 1223046 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69561615ns 1223049 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69561899ns 1223054 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69562183ns 1223059 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69562467ns 1223064 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69562922ns 1223072 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69563093ns 1223075 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69563377ns 1223080 1a110850 fd5ff06f jal x0, -44 +69563661ns 1223085 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69563945ns 1223090 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69564343ns 1223097 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69564513ns 1223100 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69564968ns 1223108 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69565138ns 1223111 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69565423ns 1223116 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69565707ns 1223121 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69565991ns 1223126 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69566446ns 1223134 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69566616ns 1223137 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69566900ns 1223142 1a110850 fd5ff06f jal x0, -44 +69567184ns 1223147 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69567469ns 1223152 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69567866ns 1223159 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69568037ns 1223162 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69568492ns 1223170 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69568662ns 1223173 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69568946ns 1223178 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69569230ns 1223183 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69569515ns 1223188 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69569969ns 1223196 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69570140ns 1223199 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69570424ns 1223204 1a110850 fd5ff06f jal x0, -44 +69570708ns 1223209 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69570992ns 1223214 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69571390ns 1223221 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69571560ns 1223224 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69572015ns 1223232 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69572186ns 1223235 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69572470ns 1223240 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69572754ns 1223245 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69573038ns 1223250 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69573493ns 1223258 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69573663ns 1223261 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69573947ns 1223266 1a110850 fd5ff06f jal x0, -44 +69574232ns 1223271 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69574516ns 1223276 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69574914ns 1223283 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69575084ns 1223286 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69575539ns 1223294 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69575709ns 1223297 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69575993ns 1223302 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69576278ns 1223307 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69576562ns 1223312 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69577016ns 1223320 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69577187ns 1223323 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69577471ns 1223328 1a110850 fd5ff06f jal x0, -44 +69577755ns 1223333 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69578039ns 1223338 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69578437ns 1223345 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69578608ns 1223348 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69579062ns 1223356 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69579233ns 1223359 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69579517ns 1223364 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69579801ns 1223369 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69580085ns 1223374 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69580540ns 1223382 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69580710ns 1223385 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69580995ns 1223390 1a110850 fd5ff06f jal x0, -44 +69581279ns 1223395 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69581563ns 1223400 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69581961ns 1223407 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69582131ns 1223410 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69582586ns 1223418 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69582756ns 1223421 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69583041ns 1223426 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69583325ns 1223431 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69583609ns 1223436 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69584064ns 1223444 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69584234ns 1223447 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69584518ns 1223452 1a110850 fd5ff06f jal x0, -44 +69584802ns 1223457 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69585087ns 1223462 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69585484ns 1223469 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69585655ns 1223472 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69586109ns 1223480 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69586280ns 1223483 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69586564ns 1223488 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69586848ns 1223493 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69587132ns 1223498 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69587587ns 1223506 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69587758ns 1223509 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69588042ns 1223514 1a110850 fd5ff06f jal x0, -44 +69588326ns 1223519 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69588610ns 1223524 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69589008ns 1223531 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69589178ns 1223534 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69589633ns 1223542 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69589804ns 1223545 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69590088ns 1223550 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69590372ns 1223555 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69590656ns 1223560 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69591111ns 1223568 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69591281ns 1223571 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69591565ns 1223576 1a110850 fd5ff06f jal x0, -44 +69591850ns 1223581 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69592134ns 1223586 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69592531ns 1223593 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69592702ns 1223596 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69593157ns 1223604 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69593327ns 1223607 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69593611ns 1223612 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69593895ns 1223617 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69594180ns 1223622 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69594634ns 1223630 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69594805ns 1223633 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69595089ns 1223638 1a110850 fd5ff06f jal x0, -44 +69595373ns 1223643 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69595657ns 1223648 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69596055ns 1223655 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69596226ns 1223658 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69596680ns 1223666 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69596851ns 1223669 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69597135ns 1223674 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69597419ns 1223679 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69597703ns 1223684 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69598158ns 1223692 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69598328ns 1223695 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69598613ns 1223700 1a110850 fd5ff06f jal x0, -44 +69598897ns 1223705 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69599181ns 1223710 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69599579ns 1223717 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69599749ns 1223720 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69600204ns 1223728 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69600374ns 1223731 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69600658ns 1223736 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69600943ns 1223741 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69601227ns 1223746 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69601681ns 1223754 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69601852ns 1223757 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69602136ns 1223762 1a110850 fd5ff06f jal x0, -44 +69602420ns 1223767 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69602704ns 1223772 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69603102ns 1223779 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69603273ns 1223782 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69603727ns 1223790 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69603898ns 1223793 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69604182ns 1223798 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69604466ns 1223803 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69604750ns 1223808 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69605205ns 1223816 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69605376ns 1223819 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69605660ns 1223824 1a110850 fd5ff06f jal x0, -44 +69605944ns 1223829 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69606228ns 1223834 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69606626ns 1223841 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69606796ns 1223844 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69607251ns 1223852 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69607421ns 1223855 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69607706ns 1223860 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69607990ns 1223865 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69608274ns 1223870 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69608729ns 1223878 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69608899ns 1223881 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69609183ns 1223886 1a110850 fd5ff06f jal x0, -44 +69609467ns 1223891 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69609752ns 1223896 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69610149ns 1223903 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69610320ns 1223906 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69610775ns 1223914 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69610945ns 1223917 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69611229ns 1223922 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69611513ns 1223927 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69611798ns 1223932 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69612252ns 1223940 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69612423ns 1223943 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69612707ns 1223948 1a110850 fd5ff06f jal x0, -44 +69612991ns 1223953 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69613275ns 1223958 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69613673ns 1223965 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69613843ns 1223968 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69614298ns 1223976 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69614469ns 1223979 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69614753ns 1223984 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69615037ns 1223989 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69615321ns 1223994 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69615776ns 1224002 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69615946ns 1224005 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69616230ns 1224010 1a110850 fd5ff06f jal x0, -44 +69616515ns 1224015 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69616799ns 1224020 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69617197ns 1224027 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69617367ns 1224030 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69617822ns 1224038 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69617992ns 1224041 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69618276ns 1224046 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69618561ns 1224051 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69618845ns 1224056 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69619299ns 1224064 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69619470ns 1224067 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69619754ns 1224072 1a110850 fd5ff06f jal x0, -44 +69620038ns 1224077 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69620322ns 1224082 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69620720ns 1224089 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69620891ns 1224092 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69621345ns 1224100 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69621516ns 1224103 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69621800ns 1224108 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69622084ns 1224113 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69622368ns 1224118 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69622823ns 1224126 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69622993ns 1224129 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69623278ns 1224134 1a110850 fd5ff06f jal x0, -44 +69623562ns 1224139 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69623846ns 1224144 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69624244ns 1224151 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69624414ns 1224154 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69624869ns 1224162 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69625039ns 1224165 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69625324ns 1224170 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69625608ns 1224175 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69625892ns 1224180 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69626347ns 1224188 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69626517ns 1224191 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69626801ns 1224196 1a110850 fd5ff06f jal x0, -44 +69627085ns 1224201 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69627370ns 1224206 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69627767ns 1224213 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69627938ns 1224216 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69628392ns 1224224 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69628563ns 1224227 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69628847ns 1224232 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69629131ns 1224237 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69629415ns 1224242 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69629870ns 1224250 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69630041ns 1224253 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69630325ns 1224258 1a110850 fd5ff06f jal x0, -44 +69630609ns 1224263 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69630893ns 1224268 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69631291ns 1224275 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69631461ns 1224278 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69631916ns 1224286 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69632087ns 1224289 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69632371ns 1224294 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69632655ns 1224299 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69632939ns 1224304 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69633394ns 1224312 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69633564ns 1224315 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69633848ns 1224320 1a110850 fd5ff06f jal x0, -44 +69634133ns 1224325 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69634417ns 1224330 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69634815ns 1224337 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69634985ns 1224340 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69635440ns 1224348 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69635610ns 1224351 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69635894ns 1224356 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69636178ns 1224361 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69636463ns 1224366 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69636917ns 1224374 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69637088ns 1224377 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69637372ns 1224382 1a110850 fd5ff06f jal x0, -44 +69637656ns 1224387 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69637940ns 1224392 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69638338ns 1224399 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69638509ns 1224402 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69638963ns 1224410 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69639134ns 1224413 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69639418ns 1224418 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69639702ns 1224423 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69639986ns 1224428 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69640441ns 1224436 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69640611ns 1224439 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69640896ns 1224444 1a110850 fd5ff06f jal x0, -44 +69641180ns 1224449 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69641464ns 1224454 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69641862ns 1224461 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69642032ns 1224464 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69642487ns 1224472 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69642657ns 1224475 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69642941ns 1224480 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69643226ns 1224485 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69643510ns 1224490 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69643964ns 1224498 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69644135ns 1224501 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69644419ns 1224506 1a110850 fd5ff06f jal x0, -44 +69644703ns 1224511 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69644987ns 1224516 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69645385ns 1224523 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69645556ns 1224526 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69646010ns 1224534 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69646181ns 1224537 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69646465ns 1224542 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69646749ns 1224547 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69647033ns 1224552 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69647488ns 1224560 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69647659ns 1224563 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69647943ns 1224568 1a110850 fd5ff06f jal x0, -44 +69648227ns 1224573 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69648511ns 1224578 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69648909ns 1224585 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69649079ns 1224588 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69649534ns 1224596 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69649704ns 1224599 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69649989ns 1224604 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69650273ns 1224609 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69650557ns 1224614 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69651012ns 1224622 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69651182ns 1224625 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69651466ns 1224630 1a110850 fd5ff06f jal x0, -44 +69651750ns 1224635 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69652035ns 1224640 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69652432ns 1224647 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69652603ns 1224650 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69653058ns 1224658 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69653228ns 1224661 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69653512ns 1224666 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69653796ns 1224671 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69654081ns 1224676 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69654535ns 1224684 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69654706ns 1224687 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69654990ns 1224692 1a110850 fd5ff06f jal x0, -44 +69655274ns 1224697 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69655558ns 1224702 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69655956ns 1224709 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69656127ns 1224712 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69656581ns 1224720 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69656752ns 1224723 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69657036ns 1224728 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69657320ns 1224733 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69657604ns 1224738 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69658059ns 1224746 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69658229ns 1224749 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69658513ns 1224754 1a110850 fd5ff06f jal x0, -44 +69658798ns 1224759 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69659082ns 1224764 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69659480ns 1224771 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69659650ns 1224774 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69660105ns 1224782 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69660275ns 1224785 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69660559ns 1224790 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69660844ns 1224795 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69661128ns 1224800 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69661582ns 1224808 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69661753ns 1224811 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69662037ns 1224816 1a110850 fd5ff06f jal x0, -44 +69662321ns 1224821 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69662605ns 1224826 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69663003ns 1224833 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69663174ns 1224836 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69663628ns 1224844 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69663799ns 1224847 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69664083ns 1224852 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69664367ns 1224857 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69664651ns 1224862 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69665106ns 1224870 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69665276ns 1224873 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69665561ns 1224878 1a110850 fd5ff06f jal x0, -44 +69665845ns 1224883 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69666129ns 1224888 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69666527ns 1224895 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69666697ns 1224898 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69667152ns 1224906 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69667322ns 1224909 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69667607ns 1224914 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69667891ns 1224919 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69668175ns 1224924 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69668630ns 1224932 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69668800ns 1224935 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69669084ns 1224940 1a110850 fd5ff06f jal x0, -44 +69669368ns 1224945 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69669653ns 1224950 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69670050ns 1224957 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69670221ns 1224960 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69670675ns 1224968 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69670846ns 1224971 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69671130ns 1224976 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69671414ns 1224981 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69671698ns 1224986 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69672153ns 1224994 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69672324ns 1224997 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69672608ns 1225002 1a110850 fd5ff06f jal x0, -44 +69672892ns 1225007 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69673176ns 1225012 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69673574ns 1225019 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69673744ns 1225022 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69674199ns 1225030 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69674370ns 1225033 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69674654ns 1225038 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69674938ns 1225043 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69675222ns 1225048 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69675677ns 1225056 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69675847ns 1225059 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69676131ns 1225064 1a110850 fd5ff06f jal x0, -44 +69676416ns 1225069 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69676700ns 1225074 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69677098ns 1225081 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69677268ns 1225084 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69677723ns 1225092 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69677893ns 1225095 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69678177ns 1225100 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69678461ns 1225105 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69678746ns 1225110 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69679200ns 1225118 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69679371ns 1225121 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69679655ns 1225126 1a110850 fd5ff06f jal x0, -44 +69679939ns 1225131 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69680223ns 1225136 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69680621ns 1225143 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69680792ns 1225146 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69681246ns 1225154 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69681417ns 1225157 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69681701ns 1225162 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69681985ns 1225167 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69682269ns 1225172 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69682724ns 1225180 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69682894ns 1225183 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69683179ns 1225188 1a110850 fd5ff06f jal x0, -44 +69683463ns 1225193 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69683747ns 1225198 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69684145ns 1225205 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69684315ns 1225208 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69684770ns 1225216 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69684940ns 1225219 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69685224ns 1225224 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69685509ns 1225229 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69685793ns 1225234 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69686247ns 1225242 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69686418ns 1225245 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69686702ns 1225250 1a110850 fd5ff06f jal x0, -44 +69686986ns 1225255 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69687270ns 1225260 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69687668ns 1225267 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69687839ns 1225270 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69688293ns 1225278 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69688464ns 1225281 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69688748ns 1225286 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69689032ns 1225291 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69689316ns 1225296 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69689771ns 1225304 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69689942ns 1225307 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69690226ns 1225312 1a110850 fd5ff06f jal x0, -44 +69690510ns 1225317 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69690794ns 1225322 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69691192ns 1225329 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69691362ns 1225332 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69691817ns 1225340 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69691987ns 1225343 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69692272ns 1225348 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69692556ns 1225353 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69692840ns 1225358 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69693295ns 1225366 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69693465ns 1225369 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69693749ns 1225374 1a110850 fd5ff06f jal x0, -44 +69694033ns 1225379 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69694318ns 1225384 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69694715ns 1225391 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69694886ns 1225394 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69695341ns 1225402 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69695511ns 1225405 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69695795ns 1225410 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69696079ns 1225415 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69696364ns 1225420 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69696818ns 1225428 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69696989ns 1225431 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69697273ns 1225436 1a110850 fd5ff06f jal x0, -44 +69697557ns 1225441 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69697841ns 1225446 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69698239ns 1225453 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69698410ns 1225456 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69698864ns 1225464 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69699035ns 1225467 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69699319ns 1225472 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69699603ns 1225477 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69699887ns 1225482 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69700342ns 1225490 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69700512ns 1225493 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69700796ns 1225498 1a110850 fd5ff06f jal x0, -44 +69701081ns 1225503 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69701365ns 1225508 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69701763ns 1225515 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69701933ns 1225518 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69702388ns 1225526 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69702558ns 1225529 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69702842ns 1225534 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69703127ns 1225539 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69703411ns 1225544 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69703865ns 1225552 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69704036ns 1225555 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69704320ns 1225560 1a110850 fd5ff06f jal x0, -44 +69704604ns 1225565 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69704888ns 1225570 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69705286ns 1225577 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69705457ns 1225580 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69705911ns 1225588 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69706082ns 1225591 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69706366ns 1225596 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69706650ns 1225601 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69706934ns 1225606 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69707389ns 1225614 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69707559ns 1225617 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69707844ns 1225622 1a110850 fd5ff06f jal x0, -44 +69708128ns 1225627 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69708412ns 1225632 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69708810ns 1225639 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69708980ns 1225642 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69709435ns 1225650 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69709605ns 1225653 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69709890ns 1225658 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69710174ns 1225663 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69710458ns 1225668 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69710913ns 1225676 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69711083ns 1225679 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69711367ns 1225684 1a110850 fd5ff06f jal x0, -44 +69711651ns 1225689 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69711936ns 1225694 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69712333ns 1225701 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69712504ns 1225704 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69712959ns 1225712 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69713129ns 1225715 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69713413ns 1225720 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69713697ns 1225725 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69713981ns 1225730 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69714436ns 1225738 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69714607ns 1225741 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69714891ns 1225746 1a110850 fd5ff06f jal x0, -44 +69715175ns 1225751 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69715459ns 1225756 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69715857ns 1225763 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69716027ns 1225766 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69716482ns 1225774 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69716653ns 1225777 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69716937ns 1225782 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69717221ns 1225787 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69717505ns 1225792 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69717960ns 1225800 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69718130ns 1225803 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69718414ns 1225808 1a110850 fd5ff06f jal x0, -44 +69718699ns 1225813 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69718983ns 1225818 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69719381ns 1225825 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69719551ns 1225828 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69720006ns 1225836 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69720176ns 1225839 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69720460ns 1225844 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69720744ns 1225849 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69721029ns 1225854 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69721483ns 1225862 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69721654ns 1225865 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69721938ns 1225870 1a110850 fd5ff06f jal x0, -44 +69722222ns 1225875 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69722506ns 1225880 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69722904ns 1225887 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69723075ns 1225890 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69723529ns 1225898 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69723700ns 1225901 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69723984ns 1225906 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69724268ns 1225911 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69724552ns 1225916 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69725007ns 1225924 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69725177ns 1225927 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69725462ns 1225932 1a110850 fd5ff06f jal x0, -44 +69725746ns 1225937 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69726030ns 1225942 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69726428ns 1225949 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69726598ns 1225952 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69727053ns 1225960 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69727223ns 1225963 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69727507ns 1225968 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69727792ns 1225973 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69728076ns 1225978 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69728530ns 1225986 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69728701ns 1225989 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69728985ns 1225994 1a110850 fd5ff06f jal x0, -44 +69729269ns 1225999 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69729553ns 1226004 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69729951ns 1226011 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69730122ns 1226014 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69730576ns 1226022 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69730747ns 1226025 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69731031ns 1226030 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69731315ns 1226035 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69731599ns 1226040 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69732054ns 1226048 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69732225ns 1226051 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69732509ns 1226056 1a110850 fd5ff06f jal x0, -44 +69732793ns 1226061 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69733077ns 1226066 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69733475ns 1226073 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69733645ns 1226076 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69734100ns 1226084 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69734271ns 1226087 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69734555ns 1226092 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69734839ns 1226097 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69735123ns 1226102 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69735578ns 1226110 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69735748ns 1226113 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69736032ns 1226118 1a110850 fd5ff06f jal x0, -44 +69736316ns 1226123 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69736601ns 1226128 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69736998ns 1226135 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69737169ns 1226138 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69737624ns 1226146 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69737794ns 1226149 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69738078ns 1226154 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69738362ns 1226159 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69738647ns 1226164 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69739101ns 1226172 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69739272ns 1226175 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69739556ns 1226180 1a110850 fd5ff06f jal x0, -44 +69739840ns 1226185 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69740124ns 1226190 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69740522ns 1226197 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69740693ns 1226200 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69741147ns 1226208 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69741318ns 1226211 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69741602ns 1226216 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69741886ns 1226221 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69742170ns 1226226 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69742625ns 1226234 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69742795ns 1226237 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69743079ns 1226242 1a110850 fd5ff06f jal x0, -44 +69743364ns 1226247 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69743648ns 1226252 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69744046ns 1226259 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69744216ns 1226262 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69744671ns 1226270 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69744841ns 1226273 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69745125ns 1226278 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69745410ns 1226283 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69745694ns 1226288 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69746148ns 1226296 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69746319ns 1226299 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69746603ns 1226304 1a110850 fd5ff06f jal x0, -44 +69746887ns 1226309 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69747171ns 1226314 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69747569ns 1226321 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69747740ns 1226324 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69748194ns 1226332 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69748365ns 1226335 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69748649ns 1226340 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69748933ns 1226345 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69749217ns 1226350 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69749672ns 1226358 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69749842ns 1226361 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69750127ns 1226366 1a110850 fd5ff06f jal x0, -44 +69750411ns 1226371 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69750695ns 1226376 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69751093ns 1226383 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69751263ns 1226386 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69751718ns 1226394 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69751888ns 1226397 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69752173ns 1226402 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69752457ns 1226407 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69752741ns 1226412 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69753196ns 1226420 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69753366ns 1226423 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69753650ns 1226428 1a110850 fd5ff06f jal x0, -44 +69753934ns 1226433 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69754219ns 1226438 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69754616ns 1226445 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69754787ns 1226448 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69755242ns 1226456 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69755412ns 1226459 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69755696ns 1226464 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69755980ns 1226469 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69756264ns 1226474 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69756719ns 1226482 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69756890ns 1226485 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69757174ns 1226490 1a110850 fd5ff06f jal x0, -44 +69757458ns 1226495 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69757742ns 1226500 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69758140ns 1226507 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69758310ns 1226510 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69758765ns 1226518 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69758936ns 1226521 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69759220ns 1226526 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69759504ns 1226531 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69759788ns 1226536 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69760243ns 1226544 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69760413ns 1226547 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69760697ns 1226552 1a110850 fd5ff06f jal x0, -44 +69760982ns 1226557 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69761266ns 1226562 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69761664ns 1226569 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69761834ns 1226572 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69762289ns 1226580 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69762459ns 1226583 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69762743ns 1226588 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69763027ns 1226593 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69763312ns 1226598 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69763766ns 1226606 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69763937ns 1226609 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69764221ns 1226614 1a110850 fd5ff06f jal x0, -44 +69764505ns 1226619 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69764789ns 1226624 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69765187ns 1226631 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69765358ns 1226634 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69765812ns 1226642 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69765983ns 1226645 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69766267ns 1226650 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69766551ns 1226655 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69766835ns 1226660 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69767290ns 1226668 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69767460ns 1226671 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69767745ns 1226676 1a110850 fd5ff06f jal x0, -44 +69768029ns 1226681 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69768313ns 1226686 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69768711ns 1226693 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69768881ns 1226696 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69769336ns 1226704 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69769506ns 1226707 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69769791ns 1226712 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69770075ns 1226717 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69770359ns 1226722 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69770813ns 1226730 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69770984ns 1226733 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69771268ns 1226738 1a110850 fd5ff06f jal x0, -44 +69771552ns 1226743 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69771836ns 1226748 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69772234ns 1226755 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69772405ns 1226758 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69772859ns 1226766 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69773030ns 1226769 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69773314ns 1226774 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69773598ns 1226779 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69773882ns 1226784 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69774337ns 1226792 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69774508ns 1226795 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69774792ns 1226800 1a110850 fd5ff06f jal x0, -44 +69775076ns 1226805 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69775360ns 1226810 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69775758ns 1226817 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69775928ns 1226820 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69776383ns 1226828 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69776554ns 1226831 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69776838ns 1226836 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69777122ns 1226841 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69777406ns 1226846 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69777861ns 1226854 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69778031ns 1226857 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69778315ns 1226862 1a110850 fd5ff06f jal x0, -44 +69778599ns 1226867 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69778884ns 1226872 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69779281ns 1226879 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69779452ns 1226882 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69779907ns 1226890 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69780077ns 1226893 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69780361ns 1226898 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69780645ns 1226903 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69780930ns 1226908 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69781384ns 1226916 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69781555ns 1226919 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69781839ns 1226924 1a110850 fd5ff06f jal x0, -44 +69782123ns 1226929 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69782407ns 1226934 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69782805ns 1226941 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69782976ns 1226944 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69783430ns 1226952 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69783601ns 1226955 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69783885ns 1226960 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69784169ns 1226965 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69784453ns 1226970 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69784908ns 1226978 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69785078ns 1226981 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69785362ns 1226986 1a110850 fd5ff06f jal x0, -44 +69785647ns 1226991 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69785931ns 1226996 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69786329ns 1227003 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69786499ns 1227006 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69786954ns 1227014 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69787124ns 1227017 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69787408ns 1227022 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69787693ns 1227027 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69787977ns 1227032 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69788431ns 1227040 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69788602ns 1227043 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69788886ns 1227048 1a110850 fd5ff06f jal x0, -44 +69789170ns 1227053 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69789454ns 1227058 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69789852ns 1227065 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69790023ns 1227068 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69790477ns 1227076 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69790648ns 1227079 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69790932ns 1227084 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69791216ns 1227089 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69791500ns 1227094 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69791955ns 1227102 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69792125ns 1227105 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69792410ns 1227110 1a110850 fd5ff06f jal x0, -44 +69792694ns 1227115 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69792978ns 1227120 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69793376ns 1227127 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69793546ns 1227130 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69794001ns 1227138 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69794171ns 1227141 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69794456ns 1227146 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69794740ns 1227151 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69795024ns 1227156 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69795479ns 1227164 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69795649ns 1227167 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69795933ns 1227172 1a110850 fd5ff06f jal x0, -44 +69796217ns 1227177 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69796502ns 1227182 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69796899ns 1227189 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69797070ns 1227192 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69797525ns 1227200 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69797695ns 1227203 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69797979ns 1227208 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69798263ns 1227213 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69798547ns 1227218 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69799002ns 1227226 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69799173ns 1227229 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69799457ns 1227234 1a110850 fd5ff06f jal x0, -44 +69799741ns 1227239 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69800025ns 1227244 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69800423ns 1227251 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69800593ns 1227254 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69801048ns 1227262 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69801219ns 1227265 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69801503ns 1227270 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69801787ns 1227275 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69802071ns 1227280 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69802526ns 1227288 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69802696ns 1227291 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69802980ns 1227296 1a110850 fd5ff06f jal x0, -44 +69803265ns 1227301 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69803549ns 1227306 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69803947ns 1227313 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69804117ns 1227316 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69804572ns 1227324 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69804742ns 1227327 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69805026ns 1227332 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69805311ns 1227337 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69805595ns 1227342 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69806049ns 1227350 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69806220ns 1227353 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69806504ns 1227358 1a110850 fd5ff06f jal x0, -44 +69806788ns 1227363 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69807072ns 1227368 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69807470ns 1227375 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69807641ns 1227378 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69808095ns 1227386 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69808266ns 1227389 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69808550ns 1227394 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69808834ns 1227399 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69809118ns 1227404 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69809573ns 1227412 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69809743ns 1227415 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69810028ns 1227420 1a110850 fd5ff06f jal x0, -44 +69810312ns 1227425 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69810596ns 1227430 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69810994ns 1227437 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69811164ns 1227440 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69811619ns 1227448 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69811789ns 1227451 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69812074ns 1227456 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69812358ns 1227461 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69812642ns 1227466 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69813096ns 1227474 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69813267ns 1227477 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69813551ns 1227482 1a110850 fd5ff06f jal x0, -44 +69813835ns 1227487 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69814119ns 1227492 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69814517ns 1227499 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69814688ns 1227502 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69815142ns 1227510 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69815313ns 1227513 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69815597ns 1227518 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69815881ns 1227523 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69816165ns 1227528 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69816620ns 1227536 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69816791ns 1227539 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69817075ns 1227544 1a110850 fd5ff06f jal x0, -44 +69817359ns 1227549 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69817643ns 1227554 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69818041ns 1227561 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69818211ns 1227564 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69818666ns 1227572 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69818837ns 1227575 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69819121ns 1227580 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69819405ns 1227585 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69819689ns 1227590 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69820144ns 1227598 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69820314ns 1227601 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69820598ns 1227606 1a110850 fd5ff06f jal x0, -44 +69820882ns 1227611 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69821167ns 1227616 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69821564ns 1227623 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69821735ns 1227626 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69822190ns 1227634 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69822360ns 1227637 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69822644ns 1227642 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69822928ns 1227647 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69823213ns 1227652 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69823667ns 1227660 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69823838ns 1227663 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69824122ns 1227668 1a110850 fd5ff06f jal x0, -44 +69824406ns 1227673 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69824690ns 1227678 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69825088ns 1227685 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69825259ns 1227688 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69825713ns 1227696 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69825884ns 1227699 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69826168ns 1227704 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69826452ns 1227709 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69826736ns 1227714 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69827191ns 1227722 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69827361ns 1227725 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69827645ns 1227730 1a110850 fd5ff06f jal x0, -44 +69827930ns 1227735 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69828214ns 1227740 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69828612ns 1227747 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69828782ns 1227750 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69829237ns 1227758 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69829407ns 1227761 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69829691ns 1227766 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69829976ns 1227771 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69830260ns 1227776 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69830714ns 1227784 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69830885ns 1227787 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69831169ns 1227792 1a110850 fd5ff06f jal x0, -44 +69831453ns 1227797 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69831737ns 1227802 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69832135ns 1227809 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69832306ns 1227812 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69832760ns 1227820 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69832931ns 1227823 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69833215ns 1227828 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69833499ns 1227833 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69833783ns 1227838 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69834238ns 1227846 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69834408ns 1227849 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69834693ns 1227854 1a110850 fd5ff06f jal x0, -44 +69834977ns 1227859 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69835261ns 1227864 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69835659ns 1227871 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69835829ns 1227874 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69836284ns 1227882 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69836454ns 1227885 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69836739ns 1227890 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69837023ns 1227895 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69837307ns 1227900 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69837762ns 1227908 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69837932ns 1227911 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69838216ns 1227916 1a110850 fd5ff06f jal x0, -44 +69838500ns 1227921 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69838785ns 1227926 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69839182ns 1227933 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69839353ns 1227936 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69839808ns 1227944 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69839978ns 1227947 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69840262ns 1227952 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69840546ns 1227957 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69840831ns 1227962 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69841285ns 1227970 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69841456ns 1227973 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69841740ns 1227978 1a110850 fd5ff06f jal x0, -44 +69842024ns 1227983 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69842308ns 1227988 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69842706ns 1227995 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69842876ns 1227998 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69843331ns 1228006 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69843502ns 1228009 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69843786ns 1228014 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69844070ns 1228019 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69844354ns 1228024 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69844809ns 1228032 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69844979ns 1228035 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69845263ns 1228040 1a110850 fd5ff06f jal x0, -44 +69845548ns 1228045 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69845832ns 1228050 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69846230ns 1228057 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69846400ns 1228060 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69846855ns 1228068 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69847025ns 1228071 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69847309ns 1228076 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69847594ns 1228081 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69847878ns 1228086 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69848332ns 1228094 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69848503ns 1228097 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69848787ns 1228102 1a110850 fd5ff06f jal x0, -44 +69849071ns 1228107 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69849355ns 1228112 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69849753ns 1228119 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69849924ns 1228122 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69850378ns 1228130 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69850549ns 1228133 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69850833ns 1228138 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69851117ns 1228143 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69851401ns 1228148 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69851856ns 1228156 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69852026ns 1228159 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69852311ns 1228164 1a110850 fd5ff06f jal x0, -44 +69852595ns 1228169 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69852879ns 1228174 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69853277ns 1228181 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69853447ns 1228184 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69853902ns 1228192 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69854072ns 1228195 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69854357ns 1228200 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69854641ns 1228205 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69854925ns 1228210 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69855379ns 1228218 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69855550ns 1228221 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69855834ns 1228226 1a110850 fd5ff06f jal x0, -44 +69856118ns 1228231 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69856402ns 1228236 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69856800ns 1228243 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69856971ns 1228246 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69857425ns 1228254 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69857596ns 1228257 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69857880ns 1228262 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69858164ns 1228267 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69858448ns 1228272 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69858903ns 1228280 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69859074ns 1228283 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69859358ns 1228288 1a110850 fd5ff06f jal x0, -44 +69859642ns 1228293 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69859926ns 1228298 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69860324ns 1228305 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69860494ns 1228308 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69860949ns 1228316 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69861120ns 1228319 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69861404ns 1228324 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69861688ns 1228329 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69861972ns 1228334 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69862427ns 1228342 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69862597ns 1228345 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69862881ns 1228350 1a110850 fd5ff06f jal x0, -44 +69863165ns 1228355 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69863450ns 1228360 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69863847ns 1228367 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69864018ns 1228370 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69864473ns 1228378 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69864643ns 1228381 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69864927ns 1228386 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69865211ns 1228391 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69865496ns 1228396 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69865950ns 1228404 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69866121ns 1228407 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69866405ns 1228412 1a110850 fd5ff06f jal x0, -44 +69866689ns 1228417 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69866973ns 1228422 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69867371ns 1228429 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69867542ns 1228432 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69867996ns 1228440 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69868167ns 1228443 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69868451ns 1228448 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69868735ns 1228453 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69869019ns 1228458 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69869474ns 1228466 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69869644ns 1228469 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69869928ns 1228474 1a110850 fd5ff06f jal x0, -44 +69870213ns 1228479 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69870497ns 1228484 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69870895ns 1228491 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69871065ns 1228494 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69871520ns 1228502 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69871690ns 1228505 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69871974ns 1228510 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69872259ns 1228515 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69872543ns 1228520 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69872997ns 1228528 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69873168ns 1228531 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69873452ns 1228536 1a110850 fd5ff06f jal x0, -44 +69873736ns 1228541 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69874020ns 1228546 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69874418ns 1228553 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69874589ns 1228556 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69875043ns 1228564 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69875214ns 1228567 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69875498ns 1228572 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69875782ns 1228577 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69876066ns 1228582 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69876521ns 1228590 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69876691ns 1228593 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69876976ns 1228598 1a110850 fd5ff06f jal x0, -44 +69877260ns 1228603 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69877544ns 1228608 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69877942ns 1228615 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69878112ns 1228618 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69878567ns 1228626 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69878737ns 1228629 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69879022ns 1228634 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69879306ns 1228639 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69879590ns 1228644 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69880045ns 1228652 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69880215ns 1228655 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69880499ns 1228660 1a110850 fd5ff06f jal x0, -44 +69880783ns 1228665 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69881068ns 1228670 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69881465ns 1228677 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69881636ns 1228680 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69882091ns 1228688 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69882261ns 1228691 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69882545ns 1228696 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69882829ns 1228701 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69883114ns 1228706 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69883568ns 1228714 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69883739ns 1228717 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69884023ns 1228722 1a110850 fd5ff06f jal x0, -44 +69884307ns 1228727 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69884591ns 1228732 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69884989ns 1228739 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69885159ns 1228742 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69885614ns 1228750 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69885785ns 1228753 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69886069ns 1228758 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69886353ns 1228763 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69886637ns 1228768 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69887092ns 1228776 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69887262ns 1228779 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69887546ns 1228784 1a110850 fd5ff06f jal x0, -44 +69887831ns 1228789 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69888115ns 1228794 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69888513ns 1228801 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69888683ns 1228804 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69889138ns 1228812 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69889308ns 1228815 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69889592ns 1228820 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69889877ns 1228825 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69890161ns 1228830 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69890615ns 1228838 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69890786ns 1228841 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69891070ns 1228846 1a110850 fd5ff06f jal x0, -44 +69891354ns 1228851 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69891638ns 1228856 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69892036ns 1228863 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69892207ns 1228866 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69892661ns 1228874 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69892832ns 1228877 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69893116ns 1228882 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69893400ns 1228887 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69893684ns 1228892 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69894139ns 1228900 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69894309ns 1228903 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69894594ns 1228908 1a110850 fd5ff06f jal x0, -44 +69894878ns 1228913 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69895162ns 1228918 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69895560ns 1228925 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69895730ns 1228928 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69896185ns 1228936 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69896355ns 1228939 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69896640ns 1228944 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69896924ns 1228949 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69897208ns 1228954 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69897663ns 1228962 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69897833ns 1228965 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69898117ns 1228970 1a110850 fd5ff06f jal x0, -44 +69898401ns 1228975 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69898685ns 1228980 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69899083ns 1228987 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69899254ns 1228990 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69899708ns 1228998 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69899879ns 1229001 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69900163ns 1229006 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69900447ns 1229011 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69900731ns 1229016 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69901186ns 1229024 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69901357ns 1229027 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69901641ns 1229032 1a110850 fd5ff06f jal x0, -44 +69901925ns 1229037 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69902209ns 1229042 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69902607ns 1229049 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69902777ns 1229052 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69903232ns 1229060 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69903403ns 1229063 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69903687ns 1229068 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69903971ns 1229073 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69904255ns 1229078 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69904710ns 1229086 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69904880ns 1229089 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69905164ns 1229094 1a110850 fd5ff06f jal x0, -44 +69905448ns 1229099 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69905733ns 1229104 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69906130ns 1229111 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69906301ns 1229114 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69906756ns 1229122 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69906926ns 1229125 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69907210ns 1229130 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69907494ns 1229135 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69907779ns 1229140 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69908233ns 1229148 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69908404ns 1229151 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69908688ns 1229156 1a110850 fd5ff06f jal x0, -44 +69908972ns 1229161 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69909256ns 1229166 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69909654ns 1229173 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69909825ns 1229176 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69910279ns 1229184 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69910450ns 1229187 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69910734ns 1229192 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69911018ns 1229197 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69911302ns 1229202 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69911757ns 1229210 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69911927ns 1229213 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69912211ns 1229218 1a110850 fd5ff06f jal x0, -44 +69912496ns 1229223 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69912780ns 1229228 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69913178ns 1229235 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69913348ns 1229238 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69913803ns 1229246 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69913973ns 1229249 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69914257ns 1229254 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69914542ns 1229259 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69914826ns 1229264 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69915280ns 1229272 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69915451ns 1229275 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69915735ns 1229280 1a110850 fd5ff06f jal x0, -44 +69916019ns 1229285 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69916303ns 1229290 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69916701ns 1229297 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69916872ns 1229300 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69917326ns 1229308 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69917497ns 1229311 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69917781ns 1229316 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69918065ns 1229321 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69918349ns 1229326 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69918804ns 1229334 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69918975ns 1229337 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69919259ns 1229342 1a110850 fd5ff06f jal x0, -44 +69919543ns 1229347 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69919827ns 1229352 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69920225ns 1229359 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69920395ns 1229362 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69920850ns 1229370 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69921020ns 1229373 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69921305ns 1229378 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69921589ns 1229383 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69921873ns 1229388 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69922328ns 1229396 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69922498ns 1229399 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69922782ns 1229404 1a110850 fd5ff06f jal x0, -44 +69923066ns 1229409 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69923351ns 1229414 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69923748ns 1229421 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69923919ns 1229424 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69924374ns 1229432 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69924544ns 1229435 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69924828ns 1229440 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69925112ns 1229445 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69925397ns 1229450 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69925851ns 1229458 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69926022ns 1229461 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69926306ns 1229466 1a110850 fd5ff06f jal x0, -44 +69926590ns 1229471 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69926874ns 1229476 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69927272ns 1229483 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69927442ns 1229486 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69927897ns 1229494 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69928068ns 1229497 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69928352ns 1229502 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69928636ns 1229507 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69928920ns 1229512 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69929375ns 1229520 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69929545ns 1229523 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69929829ns 1229528 1a110850 fd5ff06f jal x0, -44 +69930114ns 1229533 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69930398ns 1229538 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69930796ns 1229545 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69930966ns 1229548 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69931421ns 1229556 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69931591ns 1229559 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69931875ns 1229564 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69932160ns 1229569 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69932444ns 1229574 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69932898ns 1229582 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69933069ns 1229585 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69933353ns 1229590 1a110850 fd5ff06f jal x0, -44 +69933637ns 1229595 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69933921ns 1229600 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69934319ns 1229607 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69934490ns 1229610 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69934944ns 1229618 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69935115ns 1229621 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69935399ns 1229626 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69935683ns 1229631 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69935967ns 1229636 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69936422ns 1229644 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69936592ns 1229647 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69936877ns 1229652 1a110850 fd5ff06f jal x0, -44 +69937161ns 1229657 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69937445ns 1229662 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69937843ns 1229669 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69938013ns 1229672 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69938468ns 1229680 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69938638ns 1229683 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69938923ns 1229688 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69939207ns 1229693 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69939491ns 1229698 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69939946ns 1229706 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69940116ns 1229709 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69940400ns 1229714 1a110850 fd5ff06f jal x0, -44 +69940684ns 1229719 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69940968ns 1229724 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69941366ns 1229731 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69941537ns 1229734 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69941991ns 1229742 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69942162ns 1229745 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69942446ns 1229750 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69942730ns 1229755 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69943014ns 1229760 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69943469ns 1229768 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69943640ns 1229771 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69943924ns 1229776 1a110850 fd5ff06f jal x0, -44 +69944208ns 1229781 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69944492ns 1229786 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69944890ns 1229793 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69945060ns 1229796 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69945515ns 1229804 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69945686ns 1229807 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69945970ns 1229812 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69946254ns 1229817 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69946538ns 1229822 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69946993ns 1229830 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69947163ns 1229833 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69947447ns 1229838 1a110850 fd5ff06f jal x0, -44 +69947731ns 1229843 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69948016ns 1229848 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69948413ns 1229855 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69948584ns 1229858 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69949039ns 1229866 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69949209ns 1229869 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69949493ns 1229874 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69949777ns 1229879 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69950062ns 1229884 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69950516ns 1229892 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69950687ns 1229895 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69950971ns 1229900 1a110850 fd5ff06f jal x0, -44 +69951255ns 1229905 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69951539ns 1229910 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69951937ns 1229917 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69952108ns 1229920 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69952562ns 1229928 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69952733ns 1229931 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69953017ns 1229936 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69953301ns 1229941 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69953585ns 1229946 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69954040ns 1229954 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69954210ns 1229957 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69954495ns 1229962 1a110850 fd5ff06f jal x0, -44 +69954779ns 1229967 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69955063ns 1229972 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69955461ns 1229979 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69955631ns 1229982 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69956086ns 1229990 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69956256ns 1229993 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69956540ns 1229998 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69956825ns 1230003 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69957109ns 1230008 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69957563ns 1230016 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69957734ns 1230019 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69958018ns 1230024 1a110850 fd5ff06f jal x0, -44 +69958302ns 1230029 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69958586ns 1230034 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69958984ns 1230041 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69959155ns 1230044 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69959609ns 1230052 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69959780ns 1230055 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69960064ns 1230060 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69960348ns 1230065 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69960632ns 1230070 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69961087ns 1230078 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69961258ns 1230081 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69961542ns 1230086 1a110850 fd5ff06f jal x0, -44 +69961826ns 1230091 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69962110ns 1230096 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69962508ns 1230103 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69962678ns 1230106 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69963133ns 1230114 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69963303ns 1230117 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69963588ns 1230122 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69963872ns 1230127 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69964156ns 1230132 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69964611ns 1230140 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69964781ns 1230143 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69965065ns 1230148 1a110850 fd5ff06f jal x0, -44 +69965349ns 1230153 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69965634ns 1230158 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69966031ns 1230165 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69966202ns 1230168 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69966657ns 1230176 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69966827ns 1230179 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69967111ns 1230184 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69967395ns 1230189 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69967680ns 1230194 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69968134ns 1230202 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69968305ns 1230205 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69968589ns 1230210 1a110850 fd5ff06f jal x0, -44 +69968873ns 1230215 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69969157ns 1230220 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69969555ns 1230227 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69969725ns 1230230 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69970180ns 1230238 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69970351ns 1230241 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69970635ns 1230246 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69970919ns 1230251 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69971203ns 1230256 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69971658ns 1230264 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69971828ns 1230267 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69972112ns 1230272 1a110850 fd5ff06f jal x0, -44 +69972397ns 1230277 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69972681ns 1230282 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69973079ns 1230289 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69973249ns 1230292 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69973704ns 1230300 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69973874ns 1230303 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69974158ns 1230308 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69974443ns 1230313 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69974727ns 1230318 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69975181ns 1230326 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69975352ns 1230329 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69975636ns 1230334 1a110850 fd5ff06f jal x0, -44 +69975920ns 1230339 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69976204ns 1230344 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69976602ns 1230351 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69976773ns 1230354 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69977227ns 1230362 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69977398ns 1230365 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69977682ns 1230370 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69977966ns 1230375 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69978250ns 1230380 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69978705ns 1230388 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69978875ns 1230391 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69979160ns 1230396 1a110850 fd5ff06f jal x0, -44 +69979444ns 1230401 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69979728ns 1230406 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69980126ns 1230413 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69980296ns 1230416 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69980751ns 1230424 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69980921ns 1230427 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69981206ns 1230432 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69981490ns 1230437 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69981774ns 1230442 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69982229ns 1230450 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69982399ns 1230453 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69982683ns 1230458 1a110850 fd5ff06f jal x0, -44 +69982967ns 1230463 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69983251ns 1230468 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69983649ns 1230475 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69983820ns 1230478 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69984274ns 1230486 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69984445ns 1230489 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69984729ns 1230494 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69985013ns 1230499 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69985297ns 1230504 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69985752ns 1230512 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69985923ns 1230515 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69986207ns 1230520 1a110850 fd5ff06f jal x0, -44 +69986491ns 1230525 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69986775ns 1230530 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69987173ns 1230537 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69987343ns 1230540 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69987798ns 1230548 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69987969ns 1230551 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69988253ns 1230556 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69988537ns 1230561 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69988821ns 1230566 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69989276ns 1230574 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69989446ns 1230577 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69989730ns 1230582 1a110850 fd5ff06f jal x0, -44 +69990015ns 1230587 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69990299ns 1230592 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69990696ns 1230599 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69990867ns 1230602 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69991322ns 1230610 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69991492ns 1230613 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69991776ns 1230618 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69992060ns 1230623 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69992345ns 1230628 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69992799ns 1230636 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69992970ns 1230639 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69993254ns 1230644 1a110850 fd5ff06f jal x0, -44 +69993538ns 1230649 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69993822ns 1230654 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69994220ns 1230661 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69994391ns 1230664 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69994845ns 1230672 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69995016ns 1230675 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69995300ns 1230680 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69995584ns 1230685 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69995868ns 1230690 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69996323ns 1230698 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +69996493ns 1230701 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +69996778ns 1230706 1a110850 fd5ff06f jal x0, -44 +69997062ns 1230711 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69997346ns 1230716 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +69997744ns 1230723 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69997914ns 1230726 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69998369ns 1230734 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +69998539ns 1230737 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +69998823ns 1230742 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +69999108ns 1230747 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +69999392ns 1230752 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +69999846ns 1230760 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70000017ns 1230763 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70000301ns 1230768 1a110850 fd5ff06f jal x0, -44 +70000585ns 1230773 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70000869ns 1230778 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70001267ns 1230785 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70001438ns 1230788 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70001892ns 1230796 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70002063ns 1230799 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70002347ns 1230804 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70002631ns 1230809 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70002915ns 1230814 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70003370ns 1230822 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70003541ns 1230825 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70003825ns 1230830 1a110850 fd5ff06f jal x0, -44 +70004109ns 1230835 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70004393ns 1230840 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70004791ns 1230847 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70004961ns 1230850 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70005416ns 1230858 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70005586ns 1230861 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70005871ns 1230866 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70006155ns 1230871 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70006439ns 1230876 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70006894ns 1230884 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70007064ns 1230887 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70007348ns 1230892 1a110850 fd5ff06f jal x0, -44 +70007632ns 1230897 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70007917ns 1230902 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70008314ns 1230909 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70008485ns 1230912 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70008940ns 1230920 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70009110ns 1230923 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70009394ns 1230928 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70009678ns 1230933 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70009963ns 1230938 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70010417ns 1230946 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70010588ns 1230949 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70010872ns 1230954 1a110850 fd5ff06f jal x0, -44 +70011156ns 1230959 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70011440ns 1230964 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70011838ns 1230971 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70012008ns 1230974 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70012463ns 1230982 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70012634ns 1230985 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70012918ns 1230990 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70013202ns 1230995 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70013486ns 1231000 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70013941ns 1231008 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70014111ns 1231011 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70014395ns 1231016 1a110850 fd5ff06f jal x0, -44 +70014680ns 1231021 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70014964ns 1231026 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70015362ns 1231033 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70015532ns 1231036 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70015987ns 1231044 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70016157ns 1231047 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70016441ns 1231052 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70016726ns 1231057 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70017010ns 1231062 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70017464ns 1231070 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70017635ns 1231073 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70017919ns 1231078 1a110850 fd5ff06f jal x0, -44 +70018203ns 1231083 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70018487ns 1231088 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70018885ns 1231095 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70019056ns 1231098 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70019510ns 1231106 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70019681ns 1231109 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70019965ns 1231114 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70020249ns 1231119 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70020533ns 1231124 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70020988ns 1231132 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70021158ns 1231135 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70021443ns 1231140 1a110850 fd5ff06f jal x0, -44 +70021727ns 1231145 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70022011ns 1231150 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70022409ns 1231157 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70022579ns 1231160 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70023034ns 1231168 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70023204ns 1231171 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70023489ns 1231176 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70023773ns 1231181 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70024057ns 1231186 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70024512ns 1231194 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70024682ns 1231197 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70024966ns 1231202 1a110850 fd5ff06f jal x0, -44 +70025250ns 1231207 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70025535ns 1231212 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70025932ns 1231219 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70026103ns 1231222 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70026557ns 1231230 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70026728ns 1231233 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70027012ns 1231238 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70027296ns 1231243 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70027580ns 1231248 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70028035ns 1231256 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70028206ns 1231259 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70028490ns 1231264 1a110850 fd5ff06f jal x0, -44 +70028774ns 1231269 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70029058ns 1231274 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70029456ns 1231281 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70029626ns 1231284 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70030081ns 1231292 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70030252ns 1231295 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70030536ns 1231300 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70030820ns 1231305 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70031104ns 1231310 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70031559ns 1231318 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70031729ns 1231321 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70032013ns 1231326 1a110850 fd5ff06f jal x0, -44 +70032298ns 1231331 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70032582ns 1231336 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70032979ns 1231343 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70033150ns 1231346 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70033605ns 1231354 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70033775ns 1231357 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70034059ns 1231362 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70034343ns 1231367 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70034628ns 1231372 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70035082ns 1231380 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70035253ns 1231383 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70035537ns 1231388 1a110850 fd5ff06f jal x0, -44 +70035821ns 1231393 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70036105ns 1231398 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70036503ns 1231405 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70036674ns 1231408 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70037128ns 1231416 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70037299ns 1231419 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70037583ns 1231424 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70037867ns 1231429 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70038151ns 1231434 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70038606ns 1231442 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70038776ns 1231445 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70039061ns 1231450 1a110850 fd5ff06f jal x0, -44 +70039345ns 1231455 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70039629ns 1231460 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70040027ns 1231467 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70040197ns 1231470 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70040652ns 1231478 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70040822ns 1231481 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70041106ns 1231486 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70041391ns 1231491 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70041675ns 1231496 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70042129ns 1231504 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70042300ns 1231507 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70042584ns 1231512 1a110850 fd5ff06f jal x0, -44 +70042868ns 1231517 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70043152ns 1231522 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70043550ns 1231529 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70043721ns 1231532 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70044175ns 1231540 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70044346ns 1231543 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70044630ns 1231548 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70044914ns 1231553 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70045198ns 1231558 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70045653ns 1231566 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70045824ns 1231569 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70046108ns 1231574 1a110850 fd5ff06f jal x0, -44 +70046392ns 1231579 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70046676ns 1231584 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70047074ns 1231591 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70047244ns 1231594 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70047699ns 1231602 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70047869ns 1231605 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70048154ns 1231610 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70048438ns 1231615 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70048722ns 1231620 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70049177ns 1231628 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70049347ns 1231631 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70049631ns 1231636 1a110850 fd5ff06f jal x0, -44 +70049915ns 1231641 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70050200ns 1231646 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70050597ns 1231653 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70050768ns 1231656 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70051223ns 1231664 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70051393ns 1231667 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70051677ns 1231672 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70051961ns 1231677 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70052246ns 1231682 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70052700ns 1231690 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70052871ns 1231693 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70053155ns 1231698 1a110850 fd5ff06f jal x0, -44 +70053439ns 1231703 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70053723ns 1231708 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70054121ns 1231715 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70054291ns 1231718 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70054746ns 1231726 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70054917ns 1231729 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70055201ns 1231734 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70055485ns 1231739 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70055769ns 1231744 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70056224ns 1231752 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70056394ns 1231755 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70056678ns 1231760 1a110850 fd5ff06f jal x0, -44 +70056963ns 1231765 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70057247ns 1231770 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70057645ns 1231777 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70057815ns 1231780 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70058270ns 1231788 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70058440ns 1231791 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70058724ns 1231796 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70059009ns 1231801 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70059293ns 1231806 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70059747ns 1231814 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70059918ns 1231817 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70060202ns 1231822 1a110850 fd5ff06f jal x0, -44 +70060486ns 1231827 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70060770ns 1231832 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70061168ns 1231839 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70061339ns 1231842 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70061793ns 1231850 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70061964ns 1231853 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70062248ns 1231858 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70062532ns 1231863 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70062816ns 1231868 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70063271ns 1231876 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70063441ns 1231879 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70063726ns 1231884 1a110850 fd5ff06f jal x0, -44 +70064010ns 1231889 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70064294ns 1231894 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70064692ns 1231901 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70064862ns 1231904 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70065317ns 1231912 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70065487ns 1231915 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70065772ns 1231920 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70066056ns 1231925 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70066340ns 1231930 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70066795ns 1231938 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70066965ns 1231941 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70067249ns 1231946 1a110850 fd5ff06f jal x0, -44 +70067533ns 1231951 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70067818ns 1231956 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70068215ns 1231963 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70068386ns 1231966 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70068840ns 1231974 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70069011ns 1231977 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70069295ns 1231982 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70069579ns 1231987 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70069863ns 1231992 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70070318ns 1232000 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70070489ns 1232003 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70070773ns 1232008 1a110850 fd5ff06f jal x0, -44 +70071057ns 1232013 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70071341ns 1232018 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70071739ns 1232025 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70071909ns 1232028 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70072364ns 1232036 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70072535ns 1232039 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70072819ns 1232044 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70073103ns 1232049 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70073387ns 1232054 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70073842ns 1232062 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70074012ns 1232065 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70074296ns 1232070 1a110850 fd5ff06f jal x0, -44 +70074581ns 1232075 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70074865ns 1232080 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70075263ns 1232087 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70075433ns 1232090 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70075888ns 1232098 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70076058ns 1232101 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70076342ns 1232106 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70076626ns 1232111 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70076911ns 1232116 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70077365ns 1232124 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70077536ns 1232127 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70077820ns 1232132 1a110850 fd5ff06f jal x0, -44 +70078104ns 1232137 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70078388ns 1232142 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70078786ns 1232149 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70078957ns 1232152 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70079411ns 1232160 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70079582ns 1232163 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70079866ns 1232168 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70080150ns 1232173 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70080434ns 1232178 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70080889ns 1232186 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70081059ns 1232189 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70081344ns 1232194 1a110850 fd5ff06f jal x0, -44 +70081628ns 1232199 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70081912ns 1232204 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70082310ns 1232211 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70082480ns 1232214 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70082935ns 1232222 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70083105ns 1232225 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70083389ns 1232230 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70083674ns 1232235 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70083958ns 1232240 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70084412ns 1232248 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70084583ns 1232251 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70084867ns 1232256 1a110850 fd5ff06f jal x0, -44 +70085151ns 1232261 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70085435ns 1232266 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70085833ns 1232273 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70086004ns 1232276 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70086458ns 1232284 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70086629ns 1232287 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70086913ns 1232292 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70087197ns 1232297 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70087481ns 1232302 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70087936ns 1232310 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70088107ns 1232313 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70088391ns 1232318 1a110850 fd5ff06f jal x0, -44 +70088675ns 1232323 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70088959ns 1232328 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70089357ns 1232335 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70089527ns 1232338 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70089982ns 1232346 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70090152ns 1232349 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70090437ns 1232354 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70090721ns 1232359 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70091005ns 1232364 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70091460ns 1232372 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70091630ns 1232375 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70091914ns 1232380 1a110850 fd5ff06f jal x0, -44 +70092198ns 1232385 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70092483ns 1232390 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70092880ns 1232397 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70093051ns 1232400 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70093506ns 1232408 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70093676ns 1232411 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70093960ns 1232416 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70094244ns 1232421 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70094529ns 1232426 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70094983ns 1232434 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70095154ns 1232437 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70095438ns 1232442 1a110850 fd5ff06f jal x0, -44 +70095722ns 1232447 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70096006ns 1232452 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70096404ns 1232459 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70096575ns 1232462 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70097029ns 1232470 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70097200ns 1232473 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70097484ns 1232478 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70097768ns 1232483 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70098052ns 1232488 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70098507ns 1232496 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70098677ns 1232499 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70098961ns 1232504 1a110850 fd5ff06f jal x0, -44 +70099246ns 1232509 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70099530ns 1232514 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70099928ns 1232521 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70100098ns 1232524 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70100553ns 1232532 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70100723ns 1232535 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70101007ns 1232540 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70101292ns 1232545 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70101576ns 1232550 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70102030ns 1232558 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70102201ns 1232561 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70102485ns 1232566 1a110850 fd5ff06f jal x0, -44 +70102769ns 1232571 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70103053ns 1232576 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70103451ns 1232583 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70103622ns 1232586 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70104076ns 1232594 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70104247ns 1232597 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70104531ns 1232602 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70104815ns 1232607 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70105099ns 1232612 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70105554ns 1232620 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70105724ns 1232623 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70106009ns 1232628 1a110850 fd5ff06f jal x0, -44 +70106293ns 1232633 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70106577ns 1232638 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70106975ns 1232645 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70107145ns 1232648 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70107600ns 1232656 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70107770ns 1232659 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70108055ns 1232664 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70108339ns 1232669 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70108623ns 1232674 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70109078ns 1232682 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70109248ns 1232685 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70109532ns 1232690 1a110850 fd5ff06f jal x0, -44 +70109816ns 1232695 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70110101ns 1232700 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70110498ns 1232707 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70110669ns 1232710 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70111123ns 1232718 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70111294ns 1232721 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70111578ns 1232726 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70111862ns 1232731 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70112146ns 1232736 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70112601ns 1232744 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70112772ns 1232747 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70113056ns 1232752 1a110850 fd5ff06f jal x0, -44 +70113340ns 1232757 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70113624ns 1232762 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70114022ns 1232769 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70114192ns 1232772 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70114647ns 1232780 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70114818ns 1232783 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70115102ns 1232788 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70115386ns 1232793 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70115670ns 1232798 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70116125ns 1232806 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70116295ns 1232809 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70116579ns 1232814 1a110850 fd5ff06f jal x0, -44 +70116864ns 1232819 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70117148ns 1232824 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70117546ns 1232831 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70117716ns 1232834 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70118171ns 1232842 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70118341ns 1232845 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70118625ns 1232850 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70118909ns 1232855 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70119194ns 1232860 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70119648ns 1232868 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70119819ns 1232871 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70120103ns 1232876 1a110850 fd5ff06f jal x0, -44 +70120387ns 1232881 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70120671ns 1232886 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70121069ns 1232893 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70121240ns 1232896 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70121694ns 1232904 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70121865ns 1232907 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70122149ns 1232912 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70122433ns 1232917 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70122717ns 1232922 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70123172ns 1232930 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70123342ns 1232933 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70123627ns 1232938 1a110850 fd5ff06f jal x0, -44 +70123911ns 1232943 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70124195ns 1232948 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70124593ns 1232955 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70124763ns 1232958 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70125218ns 1232966 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70125388ns 1232969 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70125672ns 1232974 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70125957ns 1232979 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70126241ns 1232984 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70126695ns 1232992 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70126866ns 1232995 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70127150ns 1233000 1a110850 fd5ff06f jal x0, -44 +70127434ns 1233005 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70127718ns 1233010 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70128116ns 1233017 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70128287ns 1233020 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70128741ns 1233028 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70128912ns 1233031 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70129196ns 1233036 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70129480ns 1233041 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70129764ns 1233046 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70130219ns 1233054 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70130390ns 1233057 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70130674ns 1233062 1a110850 fd5ff06f jal x0, -44 +70130958ns 1233067 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70131242ns 1233072 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70131640ns 1233079 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70131810ns 1233082 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70132265ns 1233090 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70132435ns 1233093 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70132720ns 1233098 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70133004ns 1233103 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70133288ns 1233108 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70133743ns 1233116 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70133913ns 1233119 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70134197ns 1233124 1a110850 fd5ff06f jal x0, -44 +70134481ns 1233129 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70134766ns 1233134 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70135163ns 1233141 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70135334ns 1233144 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70135789ns 1233152 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70135959ns 1233155 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70136243ns 1233160 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70136527ns 1233165 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70136812ns 1233170 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70137266ns 1233178 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70137437ns 1233181 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70137721ns 1233186 1a110850 fd5ff06f jal x0, -44 +70138005ns 1233191 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70138289ns 1233196 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70138687ns 1233203 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70138858ns 1233206 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70139312ns 1233214 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70139483ns 1233217 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70139767ns 1233222 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70140051ns 1233227 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70140335ns 1233232 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70140790ns 1233240 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70140960ns 1233243 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70141244ns 1233248 1a110850 fd5ff06f jal x0, -44 +70141529ns 1233253 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70141813ns 1233258 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70142211ns 1233265 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70142381ns 1233268 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70142836ns 1233276 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70143006ns 1233279 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70143290ns 1233284 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70143575ns 1233289 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70143859ns 1233294 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70144313ns 1233302 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70144484ns 1233305 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70144768ns 1233310 1a110850 fd5ff06f jal x0, -44 +70145052ns 1233315 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70145336ns 1233320 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70145734ns 1233327 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70145905ns 1233330 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70146359ns 1233338 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70146530ns 1233341 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70146814ns 1233346 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70147098ns 1233351 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70147382ns 1233356 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70147837ns 1233364 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70148007ns 1233367 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70148292ns 1233372 1a110850 fd5ff06f jal x0, -44 +70148576ns 1233377 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70148860ns 1233382 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70149258ns 1233389 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70149428ns 1233392 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70149883ns 1233400 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70150053ns 1233403 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70150338ns 1233408 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70150622ns 1233413 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70150906ns 1233418 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70151361ns 1233426 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70151531ns 1233429 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70151815ns 1233434 1a110850 fd5ff06f jal x0, -44 +70152099ns 1233439 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70152384ns 1233444 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70152781ns 1233451 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70152952ns 1233454 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70153407ns 1233462 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70153577ns 1233465 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70153861ns 1233470 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70154145ns 1233475 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70154429ns 1233480 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70154884ns 1233488 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70155055ns 1233491 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70155339ns 1233496 1a110850 fd5ff06f jal x0, -44 +70155623ns 1233501 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70155907ns 1233506 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70156305ns 1233513 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70156475ns 1233516 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70156930ns 1233524 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70157101ns 1233527 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70157385ns 1233532 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70157669ns 1233537 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70157953ns 1233542 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70158408ns 1233550 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70158578ns 1233553 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70158862ns 1233558 1a110850 fd5ff06f jal x0, -44 +70159147ns 1233563 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70159431ns 1233568 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70159829ns 1233575 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70159999ns 1233578 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70160454ns 1233586 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70160624ns 1233589 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70160908ns 1233594 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70161192ns 1233599 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70161477ns 1233604 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70161931ns 1233612 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70162102ns 1233615 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70162386ns 1233620 1a110850 fd5ff06f jal x0, -44 +70162670ns 1233625 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70162954ns 1233630 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70163352ns 1233637 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70163523ns 1233640 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70163977ns 1233648 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70164148ns 1233651 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70164432ns 1233656 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70164716ns 1233661 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70165000ns 1233666 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70165455ns 1233674 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70165625ns 1233677 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70165910ns 1233682 1a110850 fd5ff06f jal x0, -44 +70166194ns 1233687 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70166478ns 1233692 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70166876ns 1233699 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70167046ns 1233702 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70167501ns 1233710 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70167671ns 1233713 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70167955ns 1233718 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70168240ns 1233723 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70168524ns 1233728 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70168978ns 1233736 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70169149ns 1233739 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70169433ns 1233744 1a110850 fd5ff06f jal x0, -44 +70169717ns 1233749 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70170001ns 1233754 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70170399ns 1233761 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70170570ns 1233764 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70171024ns 1233772 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70171195ns 1233775 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70171479ns 1233780 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70171763ns 1233785 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70172047ns 1233790 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70172502ns 1233798 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70172673ns 1233801 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70172957ns 1233806 1a110850 fd5ff06f jal x0, -44 +70173241ns 1233811 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70173525ns 1233816 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70173923ns 1233823 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70174093ns 1233826 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70174548ns 1233834 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70174719ns 1233837 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70175003ns 1233842 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70175287ns 1233847 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70175571ns 1233852 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70176026ns 1233860 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70176196ns 1233863 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70176480ns 1233868 1a110850 fd5ff06f jal x0, -44 +70176764ns 1233873 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70177049ns 1233878 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70177446ns 1233885 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70177617ns 1233888 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70178072ns 1233896 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70178242ns 1233899 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70178526ns 1233904 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70178810ns 1233909 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70179095ns 1233914 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70179549ns 1233922 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70179720ns 1233925 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70180004ns 1233930 1a110850 fd5ff06f jal x0, -44 +70180288ns 1233935 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70180572ns 1233940 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70180970ns 1233947 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70181141ns 1233950 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70181595ns 1233958 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70181766ns 1233961 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70182050ns 1233966 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70182334ns 1233971 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70182618ns 1233976 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70183073ns 1233984 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70183243ns 1233987 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70183527ns 1233992 1a110850 fd5ff06f jal x0, -44 +70183812ns 1233997 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70184096ns 1234002 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70184494ns 1234009 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70184664ns 1234012 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70185119ns 1234020 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70185289ns 1234023 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70185573ns 1234028 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70185858ns 1234033 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70186142ns 1234038 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70186596ns 1234046 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70186767ns 1234049 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70187051ns 1234054 1a110850 fd5ff06f jal x0, -44 +70187335ns 1234059 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70187619ns 1234064 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70188017ns 1234071 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70188188ns 1234074 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70188642ns 1234082 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70188813ns 1234085 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70189097ns 1234090 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70189381ns 1234095 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70189665ns 1234100 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70190120ns 1234108 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70190290ns 1234111 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70190575ns 1234116 1a110850 fd5ff06f jal x0, -44 +70190859ns 1234121 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70191143ns 1234126 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70191541ns 1234133 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70191711ns 1234136 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70192166ns 1234144 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70192336ns 1234147 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70192621ns 1234152 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70192905ns 1234157 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70193189ns 1234162 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70193644ns 1234170 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70193814ns 1234173 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70194098ns 1234178 1a110850 fd5ff06f jal x0, -44 +70194382ns 1234183 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70194667ns 1234188 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70195064ns 1234195 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70195235ns 1234198 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70195690ns 1234206 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70195860ns 1234209 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70196144ns 1234214 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70196428ns 1234219 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70196712ns 1234224 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70197167ns 1234232 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70197338ns 1234235 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70197622ns 1234240 1a110850 fd5ff06f jal x0, -44 +70197906ns 1234245 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70198190ns 1234250 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70198588ns 1234257 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70198758ns 1234260 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70199213ns 1234268 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70199384ns 1234271 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70199668ns 1234276 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70199952ns 1234281 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70200236ns 1234286 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70200691ns 1234294 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70200861ns 1234297 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70201145ns 1234302 1a110850 fd5ff06f jal x0, -44 +70201430ns 1234307 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70201714ns 1234312 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70202112ns 1234319 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70202282ns 1234322 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70202737ns 1234330 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70202907ns 1234333 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70203191ns 1234338 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70203475ns 1234343 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70203760ns 1234348 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70204214ns 1234356 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70204385ns 1234359 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70204669ns 1234364 1a110850 fd5ff06f jal x0, -44 +70204953ns 1234369 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70205237ns 1234374 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70205635ns 1234381 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70205806ns 1234384 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70206260ns 1234392 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70206431ns 1234395 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70206715ns 1234400 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70206999ns 1234405 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70207283ns 1234410 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70207738ns 1234418 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70207908ns 1234421 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70208193ns 1234426 1a110850 fd5ff06f jal x0, -44 +70208477ns 1234431 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70208761ns 1234436 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70209159ns 1234443 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70209329ns 1234446 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70209784ns 1234454 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70209954ns 1234457 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70210239ns 1234462 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70210523ns 1234467 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70210807ns 1234472 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70211261ns 1234480 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70211432ns 1234483 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70211716ns 1234488 1a110850 fd5ff06f jal x0, -44 +70212000ns 1234493 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70212284ns 1234498 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70212682ns 1234505 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70212853ns 1234508 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70213307ns 1234516 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70213478ns 1234519 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70213762ns 1234524 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70214046ns 1234529 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70214330ns 1234534 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70214785ns 1234542 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70214956ns 1234545 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70215240ns 1234550 1a110850 fd5ff06f jal x0, -44 +70215524ns 1234555 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70215808ns 1234560 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70216206ns 1234567 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70216376ns 1234570 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70216831ns 1234578 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70217002ns 1234581 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70217286ns 1234586 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70217570ns 1234591 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70217854ns 1234596 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70218309ns 1234604 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70218479ns 1234607 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70218763ns 1234612 1a110850 fd5ff06f jal x0, -44 +70219047ns 1234617 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70219332ns 1234622 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70219729ns 1234629 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70219900ns 1234632 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70220355ns 1234640 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70220525ns 1234643 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70220809ns 1234648 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70221093ns 1234653 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70221378ns 1234658 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70221832ns 1234666 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70222003ns 1234669 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70222287ns 1234674 1a110850 fd5ff06f jal x0, -44 +70222571ns 1234679 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70222855ns 1234684 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70223253ns 1234691 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70223424ns 1234694 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70223878ns 1234702 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70224049ns 1234705 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70224333ns 1234710 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70224617ns 1234715 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70224901ns 1234720 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70225356ns 1234728 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70225526ns 1234731 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70225810ns 1234736 1a110850 fd5ff06f jal x0, -44 +70226095ns 1234741 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70226379ns 1234746 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70226777ns 1234753 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70226947ns 1234756 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70227402ns 1234764 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70227572ns 1234767 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70227856ns 1234772 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70228141ns 1234777 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70228425ns 1234782 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70228879ns 1234790 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70229050ns 1234793 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70229334ns 1234798 1a110850 fd5ff06f jal x0, -44 +70229618ns 1234803 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70229902ns 1234808 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70230300ns 1234815 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70230471ns 1234818 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70230925ns 1234826 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70231096ns 1234829 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70231380ns 1234834 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70231664ns 1234839 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70231948ns 1234844 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70232403ns 1234852 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70232573ns 1234855 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70232858ns 1234860 1a110850 fd5ff06f jal x0, -44 +70233142ns 1234865 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70233426ns 1234870 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70233824ns 1234877 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70233994ns 1234880 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70234449ns 1234888 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70234619ns 1234891 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70234904ns 1234896 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70235188ns 1234901 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70235472ns 1234906 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70235927ns 1234914 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70236097ns 1234917 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70236381ns 1234922 1a110850 fd5ff06f jal x0, -44 +70236665ns 1234927 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70236950ns 1234932 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70237347ns 1234939 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70237518ns 1234942 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70237973ns 1234950 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70238143ns 1234953 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70238427ns 1234958 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70238711ns 1234963 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70238995ns 1234968 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70239450ns 1234976 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70239621ns 1234979 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70239905ns 1234984 1a110850 fd5ff06f jal x0, -44 +70240189ns 1234989 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70240473ns 1234994 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70240871ns 1235001 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70241041ns 1235004 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70241496ns 1235012 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70241667ns 1235015 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70241951ns 1235020 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70242235ns 1235025 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70242519ns 1235030 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70242974ns 1235038 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70243144ns 1235041 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70243428ns 1235046 1a110850 fd5ff06f jal x0, -44 +70243713ns 1235051 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70243997ns 1235056 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70244395ns 1235063 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70244565ns 1235066 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70245020ns 1235074 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70245190ns 1235077 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70245474ns 1235082 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70245759ns 1235087 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70246043ns 1235092 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70246497ns 1235100 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70246668ns 1235103 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70246952ns 1235108 1a110850 fd5ff06f jal x0, -44 +70247236ns 1235113 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70247520ns 1235118 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70247918ns 1235125 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70248089ns 1235128 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70248543ns 1235136 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70248714ns 1235139 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70248998ns 1235144 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70249282ns 1235149 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70249566ns 1235154 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70250021ns 1235162 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70250191ns 1235165 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70250476ns 1235170 1a110850 fd5ff06f jal x0, -44 +70250760ns 1235175 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70251044ns 1235180 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70251442ns 1235187 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70251612ns 1235190 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70252067ns 1235198 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70252237ns 1235201 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70252522ns 1235206 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70252806ns 1235211 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70253090ns 1235216 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70253544ns 1235224 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70253715ns 1235227 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70253999ns 1235232 1a110850 fd5ff06f jal x0, -44 +70254283ns 1235237 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70254567ns 1235242 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70254965ns 1235249 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70255136ns 1235252 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70255590ns 1235260 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70255761ns 1235263 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70256045ns 1235268 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70256329ns 1235273 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70256613ns 1235278 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70257068ns 1235286 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70257239ns 1235289 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70257523ns 1235294 1a110850 fd5ff06f jal x0, -44 +70257807ns 1235299 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70258091ns 1235304 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70258489ns 1235311 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70258659ns 1235314 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70259114ns 1235322 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70259285ns 1235325 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70259569ns 1235330 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70259853ns 1235335 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70260137ns 1235340 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70260592ns 1235348 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70260762ns 1235351 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70261046ns 1235356 1a110850 fd5ff06f jal x0, -44 +70261330ns 1235361 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70261615ns 1235366 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70262012ns 1235373 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70262183ns 1235376 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70262638ns 1235384 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70262808ns 1235387 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70263092ns 1235392 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70263376ns 1235397 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70263661ns 1235402 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70264115ns 1235410 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70264286ns 1235413 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70264570ns 1235418 1a110850 fd5ff06f jal x0, -44 +70264854ns 1235423 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70265138ns 1235428 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70265536ns 1235435 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70265707ns 1235438 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70266161ns 1235446 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70266332ns 1235449 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70266616ns 1235454 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70266900ns 1235459 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70267184ns 1235464 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70267639ns 1235472 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70267809ns 1235475 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70268093ns 1235480 1a110850 fd5ff06f jal x0, -44 +70268378ns 1235485 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70268662ns 1235490 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70269060ns 1235497 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70269230ns 1235500 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70269685ns 1235508 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70269855ns 1235511 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70270139ns 1235516 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70270424ns 1235521 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70270708ns 1235526 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70271162ns 1235534 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70271333ns 1235537 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70271617ns 1235542 1a110850 fd5ff06f jal x0, -44 +70271901ns 1235547 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70272185ns 1235552 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70272583ns 1235559 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70272754ns 1235562 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70273208ns 1235570 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70273379ns 1235573 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70273663ns 1235578 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70273947ns 1235583 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70274231ns 1235588 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70274686ns 1235596 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70274856ns 1235599 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70275141ns 1235604 1a110850 fd5ff06f jal x0, -44 +70275425ns 1235609 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70275709ns 1235614 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70276107ns 1235621 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70276277ns 1235624 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70276732ns 1235632 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70276902ns 1235635 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70277187ns 1235640 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70277471ns 1235645 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70277755ns 1235650 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70278210ns 1235658 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70278380ns 1235661 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70278664ns 1235666 1a110850 fd5ff06f jal x0, -44 +70278948ns 1235671 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70279233ns 1235676 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70279630ns 1235683 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70279801ns 1235686 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70280256ns 1235694 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70280426ns 1235697 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70280710ns 1235702 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70280994ns 1235707 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70281279ns 1235712 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70281733ns 1235720 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70281904ns 1235723 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70282188ns 1235728 1a110850 fd5ff06f jal x0, -44 +70282472ns 1235733 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70282756ns 1235738 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70283154ns 1235745 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70283324ns 1235748 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70283779ns 1235756 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70283950ns 1235759 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70284234ns 1235764 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70284518ns 1235769 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70284802ns 1235774 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70285257ns 1235782 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70285427ns 1235785 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70285711ns 1235790 1a110850 fd5ff06f jal x0, -44 +70285996ns 1235795 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70286280ns 1235800 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70286678ns 1235807 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70286848ns 1235810 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70287303ns 1235818 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70287473ns 1235821 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70287757ns 1235826 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70288042ns 1235831 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70288326ns 1235836 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70288780ns 1235844 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70288951ns 1235847 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70289235ns 1235852 1a110850 fd5ff06f jal x0, -44 +70289519ns 1235857 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70289803ns 1235862 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70290201ns 1235869 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70290372ns 1235872 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70290826ns 1235880 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70290997ns 1235883 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70291281ns 1235888 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70291565ns 1235893 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70291849ns 1235898 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70292304ns 1235906 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70292474ns 1235909 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70292759ns 1235914 1a110850 fd5ff06f jal x0, -44 +70293043ns 1235919 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70293327ns 1235924 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70293725ns 1235931 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70293895ns 1235934 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70294350ns 1235942 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70294520ns 1235945 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70294805ns 1235950 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70295089ns 1235955 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70295373ns 1235960 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70295827ns 1235968 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70295998ns 1235971 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70296282ns 1235976 1a110850 fd5ff06f jal x0, -44 +70296566ns 1235981 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70296850ns 1235986 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70297248ns 1235993 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70297419ns 1235996 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70297873ns 1236004 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70298044ns 1236007 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70298328ns 1236012 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70298612ns 1236017 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70298896ns 1236022 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70299351ns 1236030 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70299522ns 1236033 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70299806ns 1236038 1a110850 fd5ff06f jal x0, -44 +70300090ns 1236043 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70300374ns 1236048 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70300772ns 1236055 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70300942ns 1236058 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70301397ns 1236066 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70301568ns 1236069 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70301852ns 1236074 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70302136ns 1236079 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70302420ns 1236084 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70302875ns 1236092 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70303045ns 1236095 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70303329ns 1236100 1a110850 fd5ff06f jal x0, -44 +70303613ns 1236105 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70303898ns 1236110 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70304295ns 1236117 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70304466ns 1236120 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70304921ns 1236128 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70305091ns 1236131 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70305375ns 1236136 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70305659ns 1236141 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70305944ns 1236146 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70306398ns 1236154 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70306569ns 1236157 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70306853ns 1236162 1a110850 fd5ff06f jal x0, -44 +70307137ns 1236167 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70307421ns 1236172 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70307819ns 1236179 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70307990ns 1236182 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70308444ns 1236190 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70308615ns 1236193 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70308899ns 1236198 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70309183ns 1236203 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70309467ns 1236208 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70309922ns 1236216 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70310092ns 1236219 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70310376ns 1236224 1a110850 fd5ff06f jal x0, -44 +70310661ns 1236229 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70310945ns 1236234 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70311343ns 1236241 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70311513ns 1236244 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70311968ns 1236252 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70312138ns 1236255 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70312422ns 1236260 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70312707ns 1236265 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70312991ns 1236270 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70313445ns 1236278 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70313616ns 1236281 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70313900ns 1236286 1a110850 fd5ff06f jal x0, -44 +70314184ns 1236291 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70314468ns 1236296 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70314866ns 1236303 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70315037ns 1236306 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70315491ns 1236314 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70315662ns 1236317 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70315946ns 1236322 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70316230ns 1236327 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70316514ns 1236332 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70316969ns 1236340 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70317139ns 1236343 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70317424ns 1236348 1a110850 fd5ff06f jal x0, -44 +70317708ns 1236353 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70317992ns 1236358 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70318390ns 1236365 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70318560ns 1236368 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70319015ns 1236376 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70319185ns 1236379 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70319470ns 1236384 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70319754ns 1236389 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70320038ns 1236394 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70320493ns 1236402 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70320663ns 1236405 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70320947ns 1236410 1a110850 fd5ff06f jal x0, -44 +70321231ns 1236415 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70321516ns 1236420 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70321913ns 1236427 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70322084ns 1236430 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70322539ns 1236438 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70322709ns 1236441 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70322993ns 1236446 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70323277ns 1236451 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70323562ns 1236456 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70324016ns 1236464 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70324187ns 1236467 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70324471ns 1236472 1a110850 fd5ff06f jal x0, -44 +70324755ns 1236477 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70325039ns 1236482 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70325437ns 1236489 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70325607ns 1236492 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70326062ns 1236500 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70326233ns 1236503 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70326517ns 1236508 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70326801ns 1236513 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70327085ns 1236518 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70327540ns 1236526 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70327710ns 1236529 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70327994ns 1236534 1a110850 fd5ff06f jal x0, -44 +70328279ns 1236539 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70328563ns 1236544 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70328961ns 1236551 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70329131ns 1236554 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70329586ns 1236562 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70329756ns 1236565 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70330040ns 1236570 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70330325ns 1236575 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70330609ns 1236580 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70331063ns 1236588 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70331234ns 1236591 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70331518ns 1236596 1a110850 fd5ff06f jal x0, -44 +70331802ns 1236601 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70332086ns 1236606 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70332484ns 1236613 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70332655ns 1236616 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70333109ns 1236624 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70333280ns 1236627 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70333564ns 1236632 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70333848ns 1236637 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70334132ns 1236642 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70334587ns 1236650 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70334757ns 1236653 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70335042ns 1236658 1a110850 fd5ff06f jal x0, -44 +70335326ns 1236663 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70335610ns 1236668 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70336008ns 1236675 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70336178ns 1236678 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70336633ns 1236686 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70336803ns 1236689 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70337088ns 1236694 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70337372ns 1236699 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70337656ns 1236704 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70338111ns 1236712 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70338281ns 1236715 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70338565ns 1236720 1a110850 fd5ff06f jal x0, -44 +70338849ns 1236725 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70339133ns 1236730 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70339531ns 1236737 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70339702ns 1236740 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70340156ns 1236748 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70340327ns 1236751 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70340611ns 1236756 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70340895ns 1236761 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70341179ns 1236766 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70341634ns 1236774 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70341805ns 1236777 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70342089ns 1236782 1a110850 fd5ff06f jal x0, -44 +70342373ns 1236787 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70342657ns 1236792 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70343055ns 1236799 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70343225ns 1236802 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70343680ns 1236810 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70343851ns 1236813 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70344135ns 1236818 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70344419ns 1236823 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70344703ns 1236828 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70345158ns 1236836 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70345328ns 1236839 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70345612ns 1236844 1a110850 fd5ff06f jal x0, -44 +70345896ns 1236849 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70346181ns 1236854 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70346578ns 1236861 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70346749ns 1236864 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70347204ns 1236872 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70347374ns 1236875 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70347658ns 1236880 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70347942ns 1236885 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70348227ns 1236890 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70348681ns 1236898 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70348852ns 1236901 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70349136ns 1236906 1a110850 fd5ff06f jal x0, -44 +70349420ns 1236911 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70349704ns 1236916 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70350102ns 1236923 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70350273ns 1236926 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70350727ns 1236934 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70350898ns 1236937 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70351182ns 1236942 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70351466ns 1236947 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70351750ns 1236952 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70352205ns 1236960 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70352375ns 1236963 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70352659ns 1236968 1a110850 fd5ff06f jal x0, -44 +70352944ns 1236973 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70353228ns 1236978 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70353626ns 1236985 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70353796ns 1236988 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70354251ns 1236996 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70354421ns 1236999 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70354705ns 1237004 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70354990ns 1237009 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70355274ns 1237014 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70355728ns 1237022 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70355899ns 1237025 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70356183ns 1237030 1a110850 fd5ff06f jal x0, -44 +70356467ns 1237035 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70356751ns 1237040 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70357149ns 1237047 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70357320ns 1237050 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70357774ns 1237058 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70357945ns 1237061 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70358229ns 1237066 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70358513ns 1237071 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70358797ns 1237076 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70359252ns 1237084 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70359423ns 1237087 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70359707ns 1237092 1a110850 fd5ff06f jal x0, -44 +70359991ns 1237097 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70360275ns 1237102 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70360673ns 1237109 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70360843ns 1237112 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70361298ns 1237120 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70361468ns 1237123 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70361753ns 1237128 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70362037ns 1237133 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70362321ns 1237138 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70362776ns 1237146 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70362946ns 1237149 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70363230ns 1237154 1a110850 fd5ff06f jal x0, -44 +70363514ns 1237159 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70363799ns 1237164 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70364196ns 1237171 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70364367ns 1237174 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70364822ns 1237182 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70364992ns 1237185 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70365276ns 1237190 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70365560ns 1237195 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70365845ns 1237200 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70366299ns 1237208 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70366470ns 1237211 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70366754ns 1237216 1a110850 fd5ff06f jal x0, -44 +70367038ns 1237221 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70367322ns 1237226 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70367720ns 1237233 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70367890ns 1237236 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70368345ns 1237244 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70368516ns 1237247 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70368800ns 1237252 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70369084ns 1237257 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70369368ns 1237262 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70369823ns 1237270 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70369993ns 1237273 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70370277ns 1237278 1a110850 fd5ff06f jal x0, -44 +70370562ns 1237283 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70370846ns 1237288 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70371244ns 1237295 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70371414ns 1237298 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70371869ns 1237306 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70372039ns 1237309 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70372323ns 1237314 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70372608ns 1237319 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70372892ns 1237324 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70373346ns 1237332 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70373517ns 1237335 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70373801ns 1237340 1a110850 fd5ff06f jal x0, -44 +70374085ns 1237345 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70374369ns 1237350 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70374767ns 1237357 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70374938ns 1237360 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70375392ns 1237368 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70375563ns 1237371 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70375847ns 1237376 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70376131ns 1237381 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70376415ns 1237386 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70376870ns 1237394 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70377040ns 1237397 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70377325ns 1237402 1a110850 fd5ff06f jal x0, -44 +70377609ns 1237407 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70377893ns 1237412 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70378291ns 1237419 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70378461ns 1237422 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70378916ns 1237430 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70379086ns 1237433 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70379371ns 1237438 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70379655ns 1237443 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70379939ns 1237448 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70380394ns 1237456 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70380564ns 1237459 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70380848ns 1237464 1a110850 fd5ff06f jal x0, -44 +70381132ns 1237469 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70381416ns 1237474 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70381814ns 1237481 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70381985ns 1237484 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70382439ns 1237492 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70382610ns 1237495 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70382894ns 1237500 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70383178ns 1237505 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70383462ns 1237510 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70383917ns 1237518 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70384088ns 1237521 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70384372ns 1237526 1a110850 fd5ff06f jal x0, -44 +70384656ns 1237531 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70384940ns 1237536 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70385338ns 1237543 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70385508ns 1237546 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70385963ns 1237554 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70386134ns 1237557 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70386418ns 1237562 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70386702ns 1237567 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70386986ns 1237572 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70387441ns 1237580 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70387611ns 1237583 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70387895ns 1237588 1a110850 fd5ff06f jal x0, -44 +70388179ns 1237593 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70388464ns 1237598 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70388861ns 1237605 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70389032ns 1237608 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70389487ns 1237616 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70389657ns 1237619 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70389941ns 1237624 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70390225ns 1237629 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70390510ns 1237634 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70390964ns 1237642 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70391135ns 1237645 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70391419ns 1237650 1a110850 fd5ff06f jal x0, -44 +70391703ns 1237655 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70391987ns 1237660 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70392385ns 1237667 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70392556ns 1237670 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70393010ns 1237678 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70393181ns 1237681 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70393465ns 1237686 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70393749ns 1237691 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70394033ns 1237696 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70394488ns 1237704 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70394658ns 1237707 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70394943ns 1237712 1a110850 fd5ff06f jal x0, -44 +70395227ns 1237717 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70395511ns 1237722 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70395909ns 1237729 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70396079ns 1237732 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70396534ns 1237740 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70396704ns 1237743 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70396988ns 1237748 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70397273ns 1237753 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70397557ns 1237758 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70398011ns 1237766 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70398182ns 1237769 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70398466ns 1237774 1a110850 fd5ff06f jal x0, -44 +70398750ns 1237779 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70399034ns 1237784 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70399432ns 1237791 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70399603ns 1237794 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70400057ns 1237802 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70400228ns 1237805 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70400512ns 1237810 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70400796ns 1237815 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70401080ns 1237820 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70401535ns 1237828 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70401706ns 1237831 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70401990ns 1237836 1a110850 fd5ff06f jal x0, -44 +70402274ns 1237841 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70402558ns 1237846 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70402956ns 1237853 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70403126ns 1237856 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70403581ns 1237864 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70403751ns 1237867 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70404036ns 1237872 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70404320ns 1237877 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70404604ns 1237882 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70405059ns 1237890 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70405229ns 1237893 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70405513ns 1237898 1a110850 fd5ff06f jal x0, -44 +70405797ns 1237903 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70406082ns 1237908 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70406479ns 1237915 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70406650ns 1237918 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70407105ns 1237926 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70407275ns 1237929 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70407559ns 1237934 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70407843ns 1237939 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70408128ns 1237944 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70408582ns 1237952 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70408753ns 1237955 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70409037ns 1237960 1a110850 fd5ff06f jal x0, -44 +70409321ns 1237965 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70409605ns 1237970 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70410003ns 1237977 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70410173ns 1237980 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70410628ns 1237988 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70410799ns 1237991 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70411083ns 1237996 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70411367ns 1238001 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70411651ns 1238006 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70412106ns 1238014 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70412276ns 1238017 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70412560ns 1238022 1a110850 fd5ff06f jal x0, -44 +70412845ns 1238027 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70413129ns 1238032 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70413527ns 1238039 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70413697ns 1238042 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70414152ns 1238050 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70414322ns 1238053 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70414606ns 1238058 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70414891ns 1238063 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70415175ns 1238068 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70415629ns 1238076 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70415800ns 1238079 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70416084ns 1238084 1a110850 fd5ff06f jal x0, -44 +70416368ns 1238089 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70416652ns 1238094 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70417050ns 1238101 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70417221ns 1238104 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70417675ns 1238112 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70417846ns 1238115 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70418130ns 1238120 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70418414ns 1238125 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70418698ns 1238130 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70419153ns 1238138 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70419323ns 1238141 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70419608ns 1238146 1a110850 fd5ff06f jal x0, -44 +70419892ns 1238151 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70420176ns 1238156 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70420574ns 1238163 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70420744ns 1238166 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70421199ns 1238174 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70421369ns 1238177 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70421654ns 1238182 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70421938ns 1238187 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70422222ns 1238192 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70422677ns 1238200 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70422847ns 1238203 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70423131ns 1238208 1a110850 fd5ff06f jal x0, -44 +70423415ns 1238213 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70423699ns 1238218 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70424097ns 1238225 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70424268ns 1238228 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70424722ns 1238236 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70424893ns 1238239 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70425177ns 1238244 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70425461ns 1238249 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70425745ns 1238254 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70426200ns 1238262 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70426371ns 1238265 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70426655ns 1238270 1a110850 fd5ff06f jal x0, -44 +70426939ns 1238275 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70427223ns 1238280 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70427621ns 1238287 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70427791ns 1238290 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70428246ns 1238298 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70428417ns 1238301 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70428701ns 1238306 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70428985ns 1238311 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70429269ns 1238316 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70429724ns 1238324 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70429894ns 1238327 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70430178ns 1238332 1a110850 fd5ff06f jal x0, -44 +70430463ns 1238337 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70430747ns 1238342 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70431144ns 1238349 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70431315ns 1238352 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70431770ns 1238360 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70431940ns 1238363 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70432224ns 1238368 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70432508ns 1238373 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70432793ns 1238378 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70433247ns 1238386 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70433418ns 1238389 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70433702ns 1238394 1a110850 fd5ff06f jal x0, -44 +70433986ns 1238399 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70434270ns 1238404 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70434668ns 1238411 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70434839ns 1238414 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70435293ns 1238422 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70435464ns 1238425 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70435748ns 1238430 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70436032ns 1238435 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70436316ns 1238440 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70436771ns 1238448 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70436941ns 1238451 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70437226ns 1238456 1a110850 fd5ff06f jal x0, -44 +70437510ns 1238461 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70437794ns 1238466 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70438192ns 1238473 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70438362ns 1238476 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70438817ns 1238484 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70438987ns 1238487 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70439271ns 1238492 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70439556ns 1238497 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70439840ns 1238502 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70440294ns 1238510 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70440465ns 1238513 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70440749ns 1238518 1a110850 fd5ff06f jal x0, -44 +70441033ns 1238523 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70441317ns 1238528 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70441715ns 1238535 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70441886ns 1238538 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70442340ns 1238546 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70442511ns 1238549 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70442795ns 1238554 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70443079ns 1238559 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70443363ns 1238564 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70443818ns 1238572 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70443989ns 1238575 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70444273ns 1238580 1a110850 fd5ff06f jal x0, -44 +70444557ns 1238585 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70444841ns 1238590 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70445239ns 1238597 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70445409ns 1238600 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70445864ns 1238608 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70446034ns 1238611 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70446319ns 1238616 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70446603ns 1238621 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70446887ns 1238626 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70447342ns 1238634 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70447512ns 1238637 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70447796ns 1238642 1a110850 fd5ff06f jal x0, -44 +70448080ns 1238647 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70448365ns 1238652 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70448762ns 1238659 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70448933ns 1238662 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70449388ns 1238670 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70449558ns 1238673 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70449842ns 1238678 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70450126ns 1238683 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70450411ns 1238688 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70450865ns 1238696 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70451036ns 1238699 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70451320ns 1238704 1a110850 fd5ff06f jal x0, -44 +70451604ns 1238709 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70451888ns 1238714 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70452286ns 1238721 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70452456ns 1238724 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70452911ns 1238732 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70453082ns 1238735 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70453366ns 1238740 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70453650ns 1238745 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70453934ns 1238750 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70454389ns 1238758 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70454559ns 1238761 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70454843ns 1238766 1a110850 fd5ff06f jal x0, -44 +70455128ns 1238771 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70455412ns 1238776 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70455810ns 1238783 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70455980ns 1238786 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70456435ns 1238794 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70456605ns 1238797 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70456889ns 1238802 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70457174ns 1238807 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70457458ns 1238812 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70457912ns 1238820 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70458083ns 1238823 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70458367ns 1238828 1a110850 fd5ff06f jal x0, -44 +70458651ns 1238833 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70458935ns 1238838 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70459333ns 1238845 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70459504ns 1238848 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70459958ns 1238856 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70460129ns 1238859 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70460413ns 1238864 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70460697ns 1238869 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70460981ns 1238874 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70461436ns 1238882 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70461606ns 1238885 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70461891ns 1238890 1a110850 fd5ff06f jal x0, -44 +70462175ns 1238895 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70462459ns 1238900 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70462857ns 1238907 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70463027ns 1238910 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70463482ns 1238918 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70463652ns 1238921 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70463937ns 1238926 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70464221ns 1238931 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70464505ns 1238936 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70464960ns 1238944 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70465130ns 1238947 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70465414ns 1238952 1a110850 fd5ff06f jal x0, -44 +70465698ns 1238957 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70465983ns 1238962 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70466380ns 1238969 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70466551ns 1238972 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70467005ns 1238980 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70467176ns 1238983 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70467460ns 1238988 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70467744ns 1238993 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70468028ns 1238998 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70468483ns 1239006 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70468654ns 1239009 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70468938ns 1239014 1a110850 fd5ff06f jal x0, -44 +70469222ns 1239019 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70469506ns 1239024 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70469904ns 1239031 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70470074ns 1239034 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70470529ns 1239042 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70470700ns 1239045 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70470984ns 1239050 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70471268ns 1239055 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70471552ns 1239060 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70472007ns 1239068 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70472177ns 1239071 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70472461ns 1239076 1a110850 fd5ff06f jal x0, -44 +70472746ns 1239081 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70473030ns 1239086 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70473427ns 1239093 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70473598ns 1239096 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70474053ns 1239104 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70474223ns 1239107 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70474507ns 1239112 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70474791ns 1239117 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70475076ns 1239122 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70475530ns 1239130 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70475701ns 1239133 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70475985ns 1239138 1a110850 fd5ff06f jal x0, -44 +70476269ns 1239143 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70476553ns 1239148 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70476951ns 1239155 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70477122ns 1239158 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70477576ns 1239166 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70477747ns 1239169 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70478031ns 1239174 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70478315ns 1239179 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70478599ns 1239184 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70479054ns 1239192 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70479224ns 1239195 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70479509ns 1239200 1a110850 fd5ff06f jal x0, -44 +70479793ns 1239205 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70480077ns 1239210 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70480475ns 1239217 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70480645ns 1239220 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70481100ns 1239228 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70481270ns 1239231 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70481554ns 1239236 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70481839ns 1239241 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70482123ns 1239246 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70482577ns 1239254 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70482748ns 1239257 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70483032ns 1239262 1a110850 fd5ff06f jal x0, -44 +70483316ns 1239267 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70483600ns 1239272 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70483998ns 1239279 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70484169ns 1239282 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70484623ns 1239290 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70484794ns 1239293 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70485078ns 1239298 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70485362ns 1239303 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70485646ns 1239308 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70486101ns 1239316 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70486272ns 1239319 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70486556ns 1239324 1a110850 fd5ff06f jal x0, -44 +70486840ns 1239329 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70487124ns 1239334 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70487522ns 1239341 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70487692ns 1239344 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70488147ns 1239352 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70488317ns 1239355 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70488602ns 1239360 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70488886ns 1239365 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70489170ns 1239370 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70489625ns 1239378 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70489795ns 1239381 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70490079ns 1239386 1a110850 fd5ff06f jal x0, -44 +70490363ns 1239391 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70490648ns 1239396 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70491045ns 1239403 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70491216ns 1239406 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70491671ns 1239414 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70491841ns 1239417 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70492125ns 1239422 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70492409ns 1239427 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70492694ns 1239432 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70493148ns 1239440 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70493319ns 1239443 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70493603ns 1239448 1a110850 fd5ff06f jal x0, -44 +70493887ns 1239453 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70494171ns 1239458 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70494569ns 1239465 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70494739ns 1239468 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70495194ns 1239476 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70495365ns 1239479 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70495649ns 1239484 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70495933ns 1239489 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70496217ns 1239494 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70496672ns 1239502 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70496842ns 1239505 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70497126ns 1239510 1a110850 fd5ff06f jal x0, -44 +70497411ns 1239515 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70497695ns 1239520 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70498093ns 1239527 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70498263ns 1239530 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70498718ns 1239538 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70498888ns 1239541 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70499172ns 1239546 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70499457ns 1239551 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70499741ns 1239556 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70500195ns 1239564 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70500366ns 1239567 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70500650ns 1239572 1a110850 fd5ff06f jal x0, -44 +70500934ns 1239577 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70501218ns 1239582 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70501616ns 1239589 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70501787ns 1239592 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70502241ns 1239600 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70502412ns 1239603 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70502696ns 1239608 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70502980ns 1239613 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70503264ns 1239618 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70503719ns 1239626 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70503889ns 1239629 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70504174ns 1239634 1a110850 fd5ff06f jal x0, -44 +70504458ns 1239639 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70504742ns 1239644 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70505140ns 1239651 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70505310ns 1239654 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70505765ns 1239662 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70505935ns 1239665 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70506220ns 1239670 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70506504ns 1239675 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70506788ns 1239680 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70507243ns 1239688 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70507413ns 1239691 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70507697ns 1239696 1a110850 fd5ff06f jal x0, -44 +70507981ns 1239701 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70508266ns 1239706 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70508663ns 1239713 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70508834ns 1239716 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70509288ns 1239724 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70509459ns 1239727 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70509743ns 1239732 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70510027ns 1239737 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70510311ns 1239742 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70510766ns 1239750 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70510937ns 1239753 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70511221ns 1239758 1a110850 fd5ff06f jal x0, -44 +70511505ns 1239763 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70511789ns 1239768 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70512187ns 1239775 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70512357ns 1239778 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70512812ns 1239786 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70512983ns 1239789 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70513267ns 1239794 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70513551ns 1239799 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70513835ns 1239804 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70514290ns 1239812 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70514460ns 1239815 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70514744ns 1239820 1a110850 fd5ff06f jal x0, -44 +70515029ns 1239825 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70515313ns 1239830 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70515711ns 1239837 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70515881ns 1239840 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70516336ns 1239848 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70516506ns 1239851 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70516790ns 1239856 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70517074ns 1239861 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70517359ns 1239866 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70517813ns 1239874 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70517984ns 1239877 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70518268ns 1239882 1a110850 fd5ff06f jal x0, -44 +70518552ns 1239887 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70518836ns 1239892 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70519234ns 1239899 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70519405ns 1239902 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70519859ns 1239910 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70520030ns 1239913 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70520314ns 1239918 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70520598ns 1239923 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70520882ns 1239928 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70521337ns 1239936 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70521507ns 1239939 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70521792ns 1239944 1a110850 fd5ff06f jal x0, -44 +70522076ns 1239949 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70522360ns 1239954 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70522758ns 1239961 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70522928ns 1239964 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70523383ns 1239972 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70523553ns 1239975 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70523837ns 1239980 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70524122ns 1239985 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70524406ns 1239990 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70524860ns 1239998 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70525031ns 1240001 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70525315ns 1240006 1a110850 fd5ff06f jal x0, -44 +70525599ns 1240011 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70525883ns 1240016 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70526281ns 1240023 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70526452ns 1240026 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70526906ns 1240034 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70527077ns 1240037 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70527361ns 1240042 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70527645ns 1240047 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70527929ns 1240052 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70528384ns 1240060 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70528555ns 1240063 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70528839ns 1240068 1a110850 fd5ff06f jal x0, -44 +70529123ns 1240073 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70529407ns 1240078 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70529805ns 1240085 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70529975ns 1240088 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70530430ns 1240096 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70530600ns 1240099 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70530885ns 1240104 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70531169ns 1240109 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70531453ns 1240114 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70531908ns 1240122 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70532078ns 1240125 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70532362ns 1240130 1a110850 fd5ff06f jal x0, -44 +70532646ns 1240135 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70532931ns 1240140 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70533328ns 1240147 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70533499ns 1240150 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70533954ns 1240158 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70534124ns 1240161 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70534408ns 1240166 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70534692ns 1240171 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70534977ns 1240176 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70535431ns 1240184 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70535602ns 1240187 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70535886ns 1240192 1a110850 fd5ff06f jal x0, -44 +70536170ns 1240197 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70536454ns 1240202 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70536852ns 1240209 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70537023ns 1240212 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70537477ns 1240220 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70537648ns 1240223 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70537932ns 1240228 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70538216ns 1240233 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70538500ns 1240238 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70538955ns 1240246 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70539125ns 1240249 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70539409ns 1240254 1a110850 fd5ff06f jal x0, -44 +70539694ns 1240259 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70539978ns 1240264 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70540376ns 1240271 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70540546ns 1240274 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70541001ns 1240282 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70541171ns 1240285 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70541455ns 1240290 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70541740ns 1240295 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70542024ns 1240300 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70542478ns 1240308 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70542649ns 1240311 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70542933ns 1240316 1a110850 fd5ff06f jal x0, -44 +70543217ns 1240321 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70543501ns 1240326 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70543899ns 1240333 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70544070ns 1240336 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70544524ns 1240344 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70544695ns 1240347 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70544979ns 1240352 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70545263ns 1240357 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70545547ns 1240362 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70546002ns 1240370 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70546172ns 1240373 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70546457ns 1240378 1a110850 fd5ff06f jal x0, -44 +70546741ns 1240383 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70547025ns 1240388 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70547423ns 1240395 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70547593ns 1240398 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70548048ns 1240406 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70548218ns 1240409 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70548503ns 1240414 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70548787ns 1240419 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70549071ns 1240424 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70549526ns 1240432 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70549696ns 1240435 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70549980ns 1240440 1a110850 fd5ff06f jal x0, -44 +70550264ns 1240445 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70550549ns 1240450 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70550946ns 1240457 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70551117ns 1240460 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70551571ns 1240468 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70551742ns 1240471 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70552026ns 1240476 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70552310ns 1240481 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70552594ns 1240486 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70553049ns 1240494 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70553220ns 1240497 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70553504ns 1240502 1a110850 fd5ff06f jal x0, -44 +70553788ns 1240507 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70554072ns 1240512 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70554470ns 1240519 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70554640ns 1240522 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70555095ns 1240530 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70555266ns 1240533 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70555550ns 1240538 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70555834ns 1240543 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70556118ns 1240548 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70556573ns 1240556 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70556743ns 1240559 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70557027ns 1240564 1a110850 fd5ff06f jal x0, -44 +70557312ns 1240569 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70557596ns 1240574 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70557994ns 1240581 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70558164ns 1240584 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70558619ns 1240592 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70558789ns 1240595 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70559073ns 1240600 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70559357ns 1240605 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70559642ns 1240610 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70560096ns 1240618 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70560267ns 1240621 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70560551ns 1240626 1a110850 fd5ff06f jal x0, -44 +70560835ns 1240631 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70561119ns 1240636 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70561517ns 1240643 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70561688ns 1240646 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70562142ns 1240654 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70562313ns 1240657 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70562597ns 1240662 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70562881ns 1240667 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70563165ns 1240672 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70563620ns 1240680 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70563790ns 1240683 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70564075ns 1240688 1a110850 fd5ff06f jal x0, -44 +70564359ns 1240693 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70564643ns 1240698 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70565041ns 1240705 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70565211ns 1240708 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70565666ns 1240716 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70565836ns 1240719 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70566120ns 1240724 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70566405ns 1240729 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70566689ns 1240734 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70567143ns 1240742 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70567314ns 1240745 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70567598ns 1240750 1a110850 fd5ff06f jal x0, -44 +70567882ns 1240755 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70568166ns 1240760 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70568564ns 1240767 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70568735ns 1240770 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70569189ns 1240778 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70569360ns 1240781 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70569644ns 1240786 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70569928ns 1240791 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70570212ns 1240796 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70570667ns 1240804 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70570838ns 1240807 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70571122ns 1240812 1a110850 fd5ff06f jal x0, -44 +70571406ns 1240817 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70571690ns 1240822 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70572088ns 1240829 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70572258ns 1240832 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70572713ns 1240840 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70572883ns 1240843 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70573168ns 1240848 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70573452ns 1240853 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70573736ns 1240858 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70574191ns 1240866 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70574361ns 1240869 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70574645ns 1240874 1a110850 fd5ff06f jal x0, -44 +70574929ns 1240879 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70575214ns 1240884 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70575611ns 1240891 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70575782ns 1240894 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70576237ns 1240902 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70576407ns 1240905 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70576691ns 1240910 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70576975ns 1240915 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70577260ns 1240920 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70577714ns 1240928 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70577885ns 1240931 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70578169ns 1240936 1a110850 fd5ff06f jal x0, -44 +70578453ns 1240941 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70578737ns 1240946 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70579135ns 1240953 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70579306ns 1240956 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70579760ns 1240964 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70579931ns 1240967 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70580215ns 1240972 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70580499ns 1240977 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70580783ns 1240982 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70581238ns 1240990 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70581408ns 1240993 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70581692ns 1240998 1a110850 fd5ff06f jal x0, -44 +70581977ns 1241003 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70582261ns 1241008 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70582659ns 1241015 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70582829ns 1241018 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70583284ns 1241026 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70583454ns 1241029 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70583738ns 1241034 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70584023ns 1241039 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70584307ns 1241044 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70584761ns 1241052 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70584932ns 1241055 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70585216ns 1241060 1a110850 fd5ff06f jal x0, -44 +70585500ns 1241065 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70585784ns 1241070 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70586182ns 1241077 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70586353ns 1241080 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70586807ns 1241088 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70586978ns 1241091 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70587262ns 1241096 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70587546ns 1241101 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70587830ns 1241106 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70588285ns 1241114 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70588455ns 1241117 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70588740ns 1241122 1a110850 fd5ff06f jal x0, -44 +70589024ns 1241127 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70589308ns 1241132 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70589706ns 1241139 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70589876ns 1241142 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70590331ns 1241150 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70590501ns 1241153 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70590786ns 1241158 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70591070ns 1241163 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70591354ns 1241168 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70591809ns 1241176 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70591979ns 1241179 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70592263ns 1241184 1a110850 fd5ff06f jal x0, -44 +70592547ns 1241189 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70592832ns 1241194 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70593229ns 1241201 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70593400ns 1241204 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70593855ns 1241212 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70594025ns 1241215 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70594309ns 1241220 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70594593ns 1241225 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70594877ns 1241230 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70595332ns 1241238 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70595503ns 1241241 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70595787ns 1241246 1a110850 fd5ff06f jal x0, -44 +70596071ns 1241251 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70596355ns 1241256 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70596753ns 1241263 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70596923ns 1241266 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70597378ns 1241274 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70597549ns 1241277 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70597833ns 1241282 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70598117ns 1241287 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70598401ns 1241292 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70598856ns 1241300 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70599026ns 1241303 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70599310ns 1241308 1a110850 fd5ff06f jal x0, -44 +70599595ns 1241313 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70599879ns 1241318 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70600277ns 1241325 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70600447ns 1241328 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70600902ns 1241336 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70601072ns 1241339 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70601356ns 1241344 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70601640ns 1241349 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70601925ns 1241354 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70602379ns 1241362 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70602550ns 1241365 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70602834ns 1241370 1a110850 fd5ff06f jal x0, -44 +70603118ns 1241375 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70603402ns 1241380 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70603800ns 1241387 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70603971ns 1241390 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70604425ns 1241398 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70604596ns 1241401 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70604880ns 1241406 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70605164ns 1241411 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70605448ns 1241416 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70605903ns 1241424 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70606073ns 1241427 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70606358ns 1241432 1a110850 fd5ff06f jal x0, -44 +70606642ns 1241437 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70606926ns 1241442 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70607324ns 1241449 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70607494ns 1241452 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70607949ns 1241460 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70608119ns 1241463 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70608403ns 1241468 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70608688ns 1241473 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70608972ns 1241478 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70609426ns 1241486 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70609597ns 1241489 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70609881ns 1241494 1a110850 fd5ff06f jal x0, -44 +70610165ns 1241499 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70610449ns 1241504 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70610847ns 1241511 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70611018ns 1241514 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70611472ns 1241522 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70611643ns 1241525 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70611927ns 1241530 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70612211ns 1241535 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70612495ns 1241540 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70612950ns 1241548 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70613121ns 1241551 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70613405ns 1241556 1a110850 fd5ff06f jal x0, -44 +70613689ns 1241561 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70613973ns 1241566 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70614371ns 1241573 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70614541ns 1241576 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70614996ns 1241584 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70615167ns 1241587 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70615451ns 1241592 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70615735ns 1241597 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70616019ns 1241602 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70616474ns 1241610 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70616644ns 1241613 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70616928ns 1241618 1a110850 fd5ff06f jal x0, -44 +70617212ns 1241623 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70617497ns 1241628 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70617894ns 1241635 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70618065ns 1241638 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70618520ns 1241646 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70618690ns 1241649 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70618974ns 1241654 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70619258ns 1241659 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70619543ns 1241664 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70619997ns 1241672 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70620168ns 1241675 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70620452ns 1241680 1a110850 fd5ff06f jal x0, -44 +70620736ns 1241685 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70621020ns 1241690 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70621418ns 1241697 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70621589ns 1241700 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70622043ns 1241708 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70622214ns 1241711 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70622498ns 1241716 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70622782ns 1241721 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70623066ns 1241726 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70623521ns 1241734 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70623691ns 1241737 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70623975ns 1241742 1a110850 fd5ff06f jal x0, -44 +70624260ns 1241747 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70624544ns 1241752 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70624942ns 1241759 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70625112ns 1241762 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70625567ns 1241770 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70625737ns 1241773 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70626021ns 1241778 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70626306ns 1241783 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70626590ns 1241788 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70627044ns 1241796 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70627215ns 1241799 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70627499ns 1241804 1a110850 fd5ff06f jal x0, -44 +70627783ns 1241809 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70628067ns 1241814 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70628465ns 1241821 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70628636ns 1241824 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70629090ns 1241832 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70629261ns 1241835 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70629545ns 1241840 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70629829ns 1241845 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70630113ns 1241850 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70630568ns 1241858 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70630738ns 1241861 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70631023ns 1241866 1a110850 fd5ff06f jal x0, -44 +70631307ns 1241871 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70631591ns 1241876 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70631989ns 1241883 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70632159ns 1241886 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70632614ns 1241894 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70632784ns 1241897 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70633069ns 1241902 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70633353ns 1241907 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70633637ns 1241912 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70634092ns 1241920 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70634262ns 1241923 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70634546ns 1241928 1a110850 fd5ff06f jal x0, -44 +70634830ns 1241933 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70635115ns 1241938 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70635512ns 1241945 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70635683ns 1241948 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70636138ns 1241956 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70636308ns 1241959 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70636592ns 1241964 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70636876ns 1241969 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70637160ns 1241974 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70637615ns 1241982 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70637786ns 1241985 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70638070ns 1241990 1a110850 fd5ff06f jal x0, -44 +70638354ns 1241995 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70638638ns 1242000 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70639036ns 1242007 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70639206ns 1242010 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70639661ns 1242018 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70639832ns 1242021 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70640116ns 1242026 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70640400ns 1242031 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70640684ns 1242036 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70641139ns 1242044 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70641309ns 1242047 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70641593ns 1242052 1a110850 fd5ff06f jal x0, -44 +70641878ns 1242057 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70642162ns 1242062 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70642560ns 1242069 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70642730ns 1242072 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70643185ns 1242080 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70643355ns 1242083 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70643639ns 1242088 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70643923ns 1242093 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70644208ns 1242098 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70644662ns 1242106 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70644833ns 1242109 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70645117ns 1242114 1a110850 fd5ff06f jal x0, -44 +70645401ns 1242119 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70645685ns 1242124 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70646083ns 1242131 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70646254ns 1242134 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70646708ns 1242142 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70646879ns 1242145 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70647163ns 1242150 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70647447ns 1242155 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70647731ns 1242160 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70648186ns 1242168 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70648356ns 1242171 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70648641ns 1242176 1a110850 fd5ff06f jal x0, -44 +70648925ns 1242181 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70649209ns 1242186 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70649607ns 1242193 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70649777ns 1242196 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70650232ns 1242204 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70650402ns 1242207 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70650687ns 1242212 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70650971ns 1242217 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70651255ns 1242222 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70651709ns 1242230 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70651880ns 1242233 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70652164ns 1242238 1a110850 fd5ff06f jal x0, -44 +70652448ns 1242243 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70652732ns 1242248 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70653130ns 1242255 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70653301ns 1242258 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70653755ns 1242266 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70653926ns 1242269 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70654210ns 1242274 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70654494ns 1242279 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70654778ns 1242284 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70655233ns 1242292 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70655404ns 1242295 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70655688ns 1242300 1a110850 fd5ff06f jal x0, -44 +70655972ns 1242305 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70656256ns 1242310 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70656654ns 1242317 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70656824ns 1242320 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70657279ns 1242328 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70657450ns 1242331 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70657734ns 1242336 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70658018ns 1242341 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70658302ns 1242346 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70658757ns 1242354 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70658927ns 1242357 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70659211ns 1242362 1a110850 fd5ff06f jal x0, -44 +70659495ns 1242367 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70659780ns 1242372 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70660177ns 1242379 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70660348ns 1242382 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70660803ns 1242390 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70660973ns 1242393 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70661257ns 1242398 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70661541ns 1242403 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70661826ns 1242408 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70662280ns 1242416 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70662451ns 1242419 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70662735ns 1242424 1a110850 fd5ff06f jal x0, -44 +70663019ns 1242429 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70663303ns 1242434 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70663701ns 1242441 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70663872ns 1242444 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70664326ns 1242452 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70664497ns 1242455 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70664781ns 1242460 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70665065ns 1242465 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70665349ns 1242470 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70665804ns 1242478 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70665974ns 1242481 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70666258ns 1242486 1a110850 fd5ff06f jal x0, -44 +70666543ns 1242491 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70666827ns 1242496 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70667225ns 1242503 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70667395ns 1242506 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70667850ns 1242514 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70668020ns 1242517 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70668304ns 1242522 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70668589ns 1242527 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70668873ns 1242532 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70669327ns 1242540 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70669498ns 1242543 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70669782ns 1242548 1a110850 fd5ff06f jal x0, -44 +70670066ns 1242553 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70670350ns 1242558 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70670748ns 1242565 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70670919ns 1242568 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70671373ns 1242576 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70671544ns 1242579 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70671828ns 1242584 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70672112ns 1242589 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70672396ns 1242594 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70672851ns 1242602 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70673021ns 1242605 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70673306ns 1242610 1a110850 fd5ff06f jal x0, -44 +70673590ns 1242615 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70673874ns 1242620 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70674272ns 1242627 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70674442ns 1242630 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70674897ns 1242638 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70675067ns 1242641 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70675352ns 1242646 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70675636ns 1242651 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70675920ns 1242656 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70676375ns 1242664 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70676545ns 1242667 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70676829ns 1242672 1a110850 fd5ff06f jal x0, -44 +70677113ns 1242677 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70677398ns 1242682 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70677795ns 1242689 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70677966ns 1242692 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70678421ns 1242700 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70678591ns 1242703 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70678875ns 1242708 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70679159ns 1242713 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70679443ns 1242718 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70679898ns 1242726 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70680069ns 1242729 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70680353ns 1242734 1a110850 fd5ff06f jal x0, -44 +70680637ns 1242739 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70680921ns 1242744 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70681319ns 1242751 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70681489ns 1242754 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70681944ns 1242762 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70682115ns 1242765 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70682399ns 1242770 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70682683ns 1242775 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70682967ns 1242780 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70683422ns 1242788 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70683592ns 1242791 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70683876ns 1242796 1a110850 fd5ff06f jal x0, -44 +70684161ns 1242801 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70684445ns 1242806 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70684843ns 1242813 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70685013ns 1242816 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70685468ns 1242824 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70685638ns 1242827 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70685922ns 1242832 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70686207ns 1242837 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70686491ns 1242842 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70686945ns 1242850 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70687116ns 1242853 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70687400ns 1242858 1a110850 fd5ff06f jal x0, -44 +70687684ns 1242863 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70687968ns 1242868 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70688366ns 1242875 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70688537ns 1242878 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70688991ns 1242886 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70689162ns 1242889 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70689446ns 1242894 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70689730ns 1242899 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70690014ns 1242904 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70690469ns 1242912 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70690639ns 1242915 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70690924ns 1242920 1a110850 fd5ff06f jal x0, -44 +70691208ns 1242925 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70691492ns 1242930 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70691890ns 1242937 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70692060ns 1242940 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70692515ns 1242948 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70692685ns 1242951 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70692970ns 1242956 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70693254ns 1242961 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70693538ns 1242966 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70693992ns 1242974 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70694163ns 1242977 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70694447ns 1242982 1a110850 fd5ff06f jal x0, -44 +70694731ns 1242987 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70695015ns 1242992 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70695413ns 1242999 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70695584ns 1243002 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70696038ns 1243010 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70696209ns 1243013 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70696493ns 1243018 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70696777ns 1243023 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70697061ns 1243028 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70697516ns 1243036 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70697687ns 1243039 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70697971ns 1243044 1a110850 fd5ff06f jal x0, -44 +70698255ns 1243049 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70698539ns 1243054 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70698937ns 1243061 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70699107ns 1243064 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70699562ns 1243072 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70699733ns 1243075 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70700017ns 1243080 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70700301ns 1243085 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70700585ns 1243090 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70701040ns 1243098 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70701210ns 1243101 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70701494ns 1243106 1a110850 fd5ff06f jal x0, -44 +70701778ns 1243111 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70702063ns 1243116 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70702460ns 1243123 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70702631ns 1243126 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70703086ns 1243134 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70703256ns 1243137 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70703540ns 1243142 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70703824ns 1243147 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70704109ns 1243152 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70704563ns 1243160 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70704734ns 1243163 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70705018ns 1243168 1a110850 fd5ff06f jal x0, -44 +70705302ns 1243173 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70705586ns 1243178 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70705984ns 1243185 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70706155ns 1243188 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70706609ns 1243196 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70706780ns 1243199 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70707064ns 1243204 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70707348ns 1243209 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70707632ns 1243214 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70708087ns 1243222 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70708257ns 1243225 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70708541ns 1243230 1a110850 fd5ff06f jal x0, -44 +70708826ns 1243235 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70709110ns 1243240 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70709508ns 1243247 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70709678ns 1243250 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70710133ns 1243258 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70710303ns 1243261 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70710587ns 1243266 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70710872ns 1243271 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70711156ns 1243276 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70711610ns 1243284 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70711781ns 1243287 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70712065ns 1243292 1a110850 fd5ff06f jal x0, -44 +70712349ns 1243297 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70712633ns 1243302 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70713031ns 1243309 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70713202ns 1243312 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70713656ns 1243320 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70713827ns 1243323 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70714111ns 1243328 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70714395ns 1243333 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70714679ns 1243338 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70715134ns 1243346 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70715304ns 1243349 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70715589ns 1243354 1a110850 fd5ff06f jal x0, -44 +70715873ns 1243359 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70716157ns 1243364 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70716555ns 1243371 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70716725ns 1243374 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70717180ns 1243382 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70717350ns 1243385 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70717635ns 1243390 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70717919ns 1243395 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70718203ns 1243400 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70718658ns 1243408 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70718828ns 1243411 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70719112ns 1243416 1a110850 fd5ff06f jal x0, -44 +70719396ns 1243421 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70719681ns 1243426 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70720078ns 1243433 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70720249ns 1243436 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70720704ns 1243444 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70720874ns 1243447 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70721158ns 1243452 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70721442ns 1243457 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70721727ns 1243462 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70722181ns 1243470 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70722352ns 1243473 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70722636ns 1243478 1a110850 fd5ff06f jal x0, -44 +70722920ns 1243483 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70723204ns 1243488 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70723602ns 1243495 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70723772ns 1243498 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70724227ns 1243506 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70724398ns 1243509 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70724682ns 1243514 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70724966ns 1243519 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70725250ns 1243524 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70725705ns 1243532 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70725875ns 1243535 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70726159ns 1243540 1a110850 fd5ff06f jal x0, -44 +70726444ns 1243545 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70726728ns 1243550 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70727126ns 1243557 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70727296ns 1243560 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70727751ns 1243568 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70727921ns 1243571 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70728205ns 1243576 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70728490ns 1243581 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70728774ns 1243586 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70729228ns 1243594 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70729399ns 1243597 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70729683ns 1243602 1a110850 fd5ff06f jal x0, -44 +70729967ns 1243607 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70730251ns 1243612 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70730649ns 1243619 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70730820ns 1243622 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70731274ns 1243630 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70731445ns 1243633 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70731729ns 1243638 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70732013ns 1243643 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70732297ns 1243648 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70732752ns 1243656 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70732922ns 1243659 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70733207ns 1243664 1a110850 fd5ff06f jal x0, -44 +70733491ns 1243669 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70733775ns 1243674 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70734173ns 1243681 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70734343ns 1243684 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70734798ns 1243692 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70734968ns 1243695 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70735253ns 1243700 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70735537ns 1243705 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70735821ns 1243710 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70736275ns 1243718 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70736446ns 1243721 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70736730ns 1243726 1a110850 fd5ff06f jal x0, -44 +70737014ns 1243731 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70737298ns 1243736 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70737696ns 1243743 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70737867ns 1243746 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70738321ns 1243754 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70738492ns 1243757 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70738776ns 1243762 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70739060ns 1243767 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70739344ns 1243772 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70739799ns 1243780 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70739970ns 1243783 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70740254ns 1243788 1a110850 fd5ff06f jal x0, -44 +70740538ns 1243793 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70740822ns 1243798 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70741220ns 1243805 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70741390ns 1243808 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70741845ns 1243816 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70742016ns 1243819 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70742300ns 1243824 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70742584ns 1243829 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70742868ns 1243834 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70743323ns 1243842 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70743493ns 1243845 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70743777ns 1243850 1a110850 fd5ff06f jal x0, -44 +70744061ns 1243855 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70744346ns 1243860 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70744743ns 1243867 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70744914ns 1243870 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70745369ns 1243878 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70745539ns 1243881 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70745823ns 1243886 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70746107ns 1243891 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70746392ns 1243896 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70746846ns 1243904 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70747017ns 1243907 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70747301ns 1243912 1a110850 fd5ff06f jal x0, -44 +70747585ns 1243917 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70747869ns 1243922 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70748267ns 1243929 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70748438ns 1243932 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70748892ns 1243940 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70749063ns 1243943 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70749347ns 1243948 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70749631ns 1243953 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70749915ns 1243958 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70750370ns 1243966 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70750540ns 1243969 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70750824ns 1243974 1a110850 fd5ff06f jal x0, -44 +70751109ns 1243979 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70751393ns 1243984 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70751791ns 1243991 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70751961ns 1243994 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70752416ns 1244002 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70752586ns 1244005 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70752870ns 1244010 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70753155ns 1244015 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70753439ns 1244020 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70753893ns 1244028 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70754064ns 1244031 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70754348ns 1244036 1a110850 fd5ff06f jal x0, -44 +70754632ns 1244041 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70754916ns 1244046 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70755314ns 1244053 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70755485ns 1244056 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70755939ns 1244064 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70756110ns 1244067 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70756394ns 1244072 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70756678ns 1244077 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70756962ns 1244082 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70757417ns 1244090 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70757587ns 1244093 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70757872ns 1244098 1a110850 fd5ff06f jal x0, -44 +70758156ns 1244103 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70758440ns 1244108 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70758838ns 1244115 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70759008ns 1244118 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70759463ns 1244126 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70759633ns 1244129 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70759918ns 1244134 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70760202ns 1244139 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70760486ns 1244144 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70760941ns 1244152 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70761111ns 1244155 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70761395ns 1244160 1a110850 fd5ff06f jal x0, -44 +70761679ns 1244165 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70761964ns 1244170 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70762361ns 1244177 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70762532ns 1244180 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70762987ns 1244188 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70763157ns 1244191 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70763441ns 1244196 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70763725ns 1244201 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70764010ns 1244206 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70764464ns 1244214 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70764635ns 1244217 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70764919ns 1244222 1a110850 fd5ff06f jal x0, -44 +70765203ns 1244227 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70765487ns 1244232 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70765885ns 1244239 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70766055ns 1244242 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70766510ns 1244250 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70766681ns 1244253 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70766965ns 1244258 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70767249ns 1244263 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70767533ns 1244268 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70767988ns 1244276 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70768158ns 1244279 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70768442ns 1244284 1a110850 fd5ff06f jal x0, -44 +70768727ns 1244289 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70769011ns 1244294 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70769409ns 1244301 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70769579ns 1244304 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70770034ns 1244312 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70770204ns 1244315 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70770488ns 1244320 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70770773ns 1244325 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70771057ns 1244330 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70771511ns 1244338 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70771682ns 1244341 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70771966ns 1244346 1a110850 fd5ff06f jal x0, -44 +70772250ns 1244351 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70772534ns 1244356 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70772932ns 1244363 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70773103ns 1244366 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70773557ns 1244374 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70773728ns 1244377 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70774012ns 1244382 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70774296ns 1244387 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70774580ns 1244392 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70775035ns 1244400 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70775205ns 1244403 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70775490ns 1244408 1a110850 fd5ff06f jal x0, -44 +70775774ns 1244413 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70776058ns 1244418 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70776456ns 1244425 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70776626ns 1244428 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70777081ns 1244436 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70777251ns 1244439 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70777536ns 1244444 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70777820ns 1244449 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70778104ns 1244454 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70778559ns 1244462 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70778729ns 1244465 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70779013ns 1244470 1a110850 fd5ff06f jal x0, -44 +70779297ns 1244475 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70779581ns 1244480 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70779979ns 1244487 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70780150ns 1244490 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70780604ns 1244498 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70780775ns 1244501 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70781059ns 1244506 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70781343ns 1244511 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70781627ns 1244516 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70782082ns 1244524 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70782253ns 1244527 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70782537ns 1244532 1a110850 fd5ff06f jal x0, -44 +70782821ns 1244537 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70783105ns 1244542 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70783503ns 1244549 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70783673ns 1244552 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70784128ns 1244560 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70784299ns 1244563 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70784583ns 1244568 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70784867ns 1244573 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70785151ns 1244578 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70785606ns 1244586 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70785776ns 1244589 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70786060ns 1244594 1a110850 fd5ff06f jal x0, -44 +70786344ns 1244599 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70786629ns 1244604 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70787026ns 1244611 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70787197ns 1244614 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70787652ns 1244622 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70787822ns 1244625 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70788106ns 1244630 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70788390ns 1244635 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70788675ns 1244640 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70789129ns 1244648 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70789300ns 1244651 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70789584ns 1244656 1a110850 fd5ff06f jal x0, -44 +70789868ns 1244661 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70790152ns 1244666 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70790550ns 1244673 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70790721ns 1244676 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70791175ns 1244684 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70791346ns 1244687 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70791630ns 1244692 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70791914ns 1244697 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70792198ns 1244702 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70792653ns 1244710 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70792823ns 1244713 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70793107ns 1244718 1a110850 fd5ff06f jal x0, -44 +70793392ns 1244723 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70793676ns 1244728 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70794074ns 1244735 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70794244ns 1244738 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70794699ns 1244746 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70794869ns 1244749 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70795153ns 1244754 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70795438ns 1244759 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70795722ns 1244764 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70796176ns 1244772 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70796347ns 1244775 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70796631ns 1244780 1a110850 fd5ff06f jal x0, -44 +70796915ns 1244785 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70797199ns 1244790 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70797597ns 1244797 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70797768ns 1244800 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70798222ns 1244808 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70798393ns 1244811 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70798677ns 1244816 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70798961ns 1244821 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70799245ns 1244826 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70799700ns 1244834 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70799871ns 1244837 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70800155ns 1244842 1a110850 fd5ff06f jal x0, -44 +70800439ns 1244847 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70800723ns 1244852 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70801121ns 1244859 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70801291ns 1244862 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70801746ns 1244870 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70801916ns 1244873 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70802201ns 1244878 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70802485ns 1244883 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70802769ns 1244888 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70803224ns 1244896 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70803394ns 1244899 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70803678ns 1244904 1a110850 fd5ff06f jal x0, -44 +70803962ns 1244909 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70804247ns 1244914 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70804644ns 1244921 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70804815ns 1244924 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70805270ns 1244932 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70805440ns 1244935 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70805724ns 1244940 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70806008ns 1244945 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70806293ns 1244950 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70806747ns 1244958 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70806918ns 1244961 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70807202ns 1244966 1a110850 fd5ff06f jal x0, -44 +70807486ns 1244971 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70807770ns 1244976 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70808168ns 1244983 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70808338ns 1244986 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70808793ns 1244994 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70808964ns 1244997 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70809248ns 1245002 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70809532ns 1245007 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70809816ns 1245012 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70810271ns 1245020 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70810441ns 1245023 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70810725ns 1245028 1a110850 fd5ff06f jal x0, -44 +70811010ns 1245033 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70811294ns 1245038 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70811692ns 1245045 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70811862ns 1245048 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70812317ns 1245056 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70812487ns 1245059 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70812771ns 1245064 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70813056ns 1245069 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70813340ns 1245074 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70813794ns 1245082 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70813965ns 1245085 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70814249ns 1245090 1a110850 fd5ff06f jal x0, -44 +70814533ns 1245095 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70814817ns 1245100 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70815215ns 1245107 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70815386ns 1245110 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70815840ns 1245118 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70816011ns 1245121 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70816295ns 1245126 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70816579ns 1245131 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70816863ns 1245136 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70817318ns 1245144 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70817488ns 1245147 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70817773ns 1245152 1a110850 fd5ff06f jal x0, -44 +70818057ns 1245157 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70818341ns 1245162 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70818739ns 1245169 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70818909ns 1245172 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70819364ns 1245180 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70819534ns 1245183 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70819819ns 1245188 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70820103ns 1245193 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70820387ns 1245198 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70820842ns 1245206 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70821012ns 1245209 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70821296ns 1245214 1a110850 fd5ff06f jal x0, -44 +70821580ns 1245219 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70821864ns 1245224 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70822262ns 1245231 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70822433ns 1245234 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70822887ns 1245242 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70823058ns 1245245 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70823342ns 1245250 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70823626ns 1245255 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70823910ns 1245260 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70824365ns 1245268 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70824536ns 1245271 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70824820ns 1245276 1a110850 fd5ff06f jal x0, -44 +70825104ns 1245281 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70825388ns 1245286 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70825786ns 1245293 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70825956ns 1245296 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70826411ns 1245304 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70826582ns 1245307 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70826866ns 1245312 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70827150ns 1245317 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70827434ns 1245322 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70827889ns 1245330 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70828059ns 1245333 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70828343ns 1245338 1a110850 fd5ff06f jal x0, -44 +70828627ns 1245343 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70828912ns 1245348 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70829309ns 1245355 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70829480ns 1245358 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70829935ns 1245366 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70830105ns 1245369 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70830389ns 1245374 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70830673ns 1245379 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70830958ns 1245384 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70831412ns 1245392 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70831583ns 1245395 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70831867ns 1245400 1a110850 fd5ff06f jal x0, -44 +70832151ns 1245405 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70832435ns 1245410 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70832833ns 1245417 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70833004ns 1245420 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70833458ns 1245428 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70833629ns 1245431 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70833913ns 1245436 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70834197ns 1245441 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70834481ns 1245446 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70834936ns 1245454 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70835106ns 1245457 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70835391ns 1245462 1a110850 fd5ff06f jal x0, -44 +70835675ns 1245467 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70835959ns 1245472 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70836357ns 1245479 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70836527ns 1245482 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70836982ns 1245490 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70837152ns 1245493 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70837436ns 1245498 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70837721ns 1245503 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70838005ns 1245508 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70838459ns 1245516 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70838630ns 1245519 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70838914ns 1245524 1a110850 fd5ff06f jal x0, -44 +70839198ns 1245529 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70839482ns 1245534 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70839880ns 1245541 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70840051ns 1245544 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70840505ns 1245552 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70840676ns 1245555 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70840960ns 1245560 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70841244ns 1245565 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70841528ns 1245570 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70841983ns 1245578 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70842154ns 1245581 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70842438ns 1245586 1a110850 fd5ff06f jal x0, -44 +70842722ns 1245591 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70843006ns 1245596 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70843404ns 1245603 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70843574ns 1245606 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70844029ns 1245614 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70844199ns 1245617 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70844484ns 1245622 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70844768ns 1245627 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70845052ns 1245632 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70845507ns 1245640 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70845677ns 1245643 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70845961ns 1245648 1a110850 fd5ff06f jal x0, -44 +70846245ns 1245653 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70846530ns 1245658 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70846927ns 1245665 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70847098ns 1245668 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70847553ns 1245676 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70847723ns 1245679 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70848007ns 1245684 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70848291ns 1245689 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70848576ns 1245694 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70849030ns 1245702 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70849201ns 1245705 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70849485ns 1245710 1a110850 fd5ff06f jal x0, -44 +70849769ns 1245715 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70850053ns 1245720 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70850451ns 1245727 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70850621ns 1245730 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70851076ns 1245738 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70851247ns 1245741 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70851531ns 1245746 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70851815ns 1245751 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70852099ns 1245756 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70852554ns 1245764 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70852724ns 1245767 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70853008ns 1245772 1a110850 fd5ff06f jal x0, -44 +70853293ns 1245777 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70853577ns 1245782 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70853975ns 1245789 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70854145ns 1245792 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70854600ns 1245800 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70854770ns 1245803 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70855054ns 1245808 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70855339ns 1245813 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70855623ns 1245818 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70856077ns 1245826 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70856248ns 1245829 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70856532ns 1245834 1a110850 fd5ff06f jal x0, -44 +70856816ns 1245839 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70857100ns 1245844 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70857498ns 1245851 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70857669ns 1245854 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70858123ns 1245862 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70858294ns 1245865 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70858578ns 1245870 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70858862ns 1245875 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70859146ns 1245880 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70859601ns 1245888 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70859771ns 1245891 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70860056ns 1245896 1a110850 fd5ff06f jal x0, -44 +70860340ns 1245901 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70860624ns 1245906 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70861022ns 1245913 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70861192ns 1245916 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70861647ns 1245924 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70861817ns 1245927 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70862102ns 1245932 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70862386ns 1245937 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70862670ns 1245942 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70863125ns 1245950 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70863295ns 1245953 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70863579ns 1245958 1a110850 fd5ff06f jal x0, -44 +70863863ns 1245963 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70864147ns 1245968 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70864545ns 1245975 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70864716ns 1245978 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70865170ns 1245986 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70865341ns 1245989 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70865625ns 1245994 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70865909ns 1245999 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70866193ns 1246004 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70866648ns 1246012 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70866819ns 1246015 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70867103ns 1246020 1a110850 fd5ff06f jal x0, -44 +70867387ns 1246025 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70867671ns 1246030 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70868069ns 1246037 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70868239ns 1246040 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70868694ns 1246048 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70868865ns 1246051 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70869149ns 1246056 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70869433ns 1246061 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70869717ns 1246066 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70870172ns 1246074 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70870342ns 1246077 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70870626ns 1246082 1a110850 fd5ff06f jal x0, -44 +70870911ns 1246087 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70871195ns 1246092 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70871592ns 1246099 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70871763ns 1246102 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70872218ns 1246110 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70872388ns 1246113 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70872672ns 1246118 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70872956ns 1246123 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70873241ns 1246128 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70873695ns 1246136 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70873866ns 1246139 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70874150ns 1246144 1a110850 fd5ff06f jal x0, -44 +70874434ns 1246149 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70874718ns 1246154 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70875116ns 1246161 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70875287ns 1246164 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70875741ns 1246172 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70875912ns 1246175 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70876196ns 1246180 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70876480ns 1246185 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70876764ns 1246190 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70877219ns 1246198 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70877389ns 1246201 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70877674ns 1246206 1a110850 fd5ff06f jal x0, -44 +70877958ns 1246211 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70878242ns 1246216 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70878640ns 1246223 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70878810ns 1246226 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70879265ns 1246234 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70879435ns 1246237 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70879719ns 1246242 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70880004ns 1246247 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70880288ns 1246252 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70880742ns 1246260 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70880913ns 1246263 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70881197ns 1246268 1a110850 fd5ff06f jal x0, -44 +70881481ns 1246273 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70881765ns 1246278 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70882163ns 1246285 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70882334ns 1246288 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70882788ns 1246296 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70882959ns 1246299 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70883243ns 1246304 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70883527ns 1246309 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70883811ns 1246314 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70884266ns 1246322 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70884437ns 1246325 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70884721ns 1246330 1a110850 fd5ff06f jal x0, -44 +70885005ns 1246335 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70885289ns 1246340 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70885687ns 1246347 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70885857ns 1246350 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70886312ns 1246358 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70886482ns 1246361 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70886767ns 1246366 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70887051ns 1246371 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70887335ns 1246376 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70887790ns 1246384 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70887960ns 1246387 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70888244ns 1246392 1a110850 fd5ff06f jal x0, -44 +70888528ns 1246397 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70888813ns 1246402 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70889210ns 1246409 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70889381ns 1246412 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70889836ns 1246420 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70890006ns 1246423 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70890290ns 1246428 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70890574ns 1246433 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70890859ns 1246438 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70891313ns 1246446 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70891484ns 1246449 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70891768ns 1246454 1a110850 fd5ff06f jal x0, -44 +70892052ns 1246459 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70892336ns 1246464 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70892734ns 1246471 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70892904ns 1246474 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70893359ns 1246482 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70893530ns 1246485 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70893814ns 1246490 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70894098ns 1246495 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70894382ns 1246500 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70894837ns 1246508 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70895007ns 1246511 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70895291ns 1246516 1a110850 fd5ff06f jal x0, -44 +70895576ns 1246521 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70895860ns 1246526 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70896258ns 1246533 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70896428ns 1246536 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70896883ns 1246544 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70897053ns 1246547 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70897337ns 1246552 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70897622ns 1246557 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70897906ns 1246562 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70898360ns 1246570 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70898531ns 1246573 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70898815ns 1246578 1a110850 fd5ff06f jal x0, -44 +70899099ns 1246583 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70899383ns 1246588 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70899781ns 1246595 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70899952ns 1246598 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70900406ns 1246606 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70900577ns 1246609 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70900861ns 1246614 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70901145ns 1246619 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70901429ns 1246624 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70901884ns 1246632 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70902054ns 1246635 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70902339ns 1246640 1a110850 fd5ff06f jal x0, -44 +70902623ns 1246645 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70902907ns 1246650 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70903305ns 1246657 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70903475ns 1246660 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70903930ns 1246668 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70904100ns 1246671 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70904385ns 1246676 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70904669ns 1246681 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70904953ns 1246686 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70905408ns 1246694 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70905578ns 1246697 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70905862ns 1246702 1a110850 fd5ff06f jal x0, -44 +70906146ns 1246707 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70906431ns 1246712 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70906828ns 1246719 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70906999ns 1246722 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70907453ns 1246730 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70907624ns 1246733 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70907908ns 1246738 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70908192ns 1246743 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70908476ns 1246748 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70908931ns 1246756 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70909102ns 1246759 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70909386ns 1246764 1a110850 fd5ff06f jal x0, -44 +70909670ns 1246769 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70909954ns 1246774 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70910352ns 1246781 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70910522ns 1246784 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70910977ns 1246792 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70911148ns 1246795 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70911432ns 1246800 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70911716ns 1246805 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70912000ns 1246810 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70912455ns 1246818 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70912625ns 1246821 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70912909ns 1246826 1a110850 fd5ff06f jal x0, -44 +70913194ns 1246831 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70913478ns 1246836 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70913875ns 1246843 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70914046ns 1246846 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70914501ns 1246854 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70914671ns 1246857 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70914955ns 1246862 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70915239ns 1246867 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70915524ns 1246872 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70915978ns 1246880 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70916149ns 1246883 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70916433ns 1246888 1a110850 fd5ff06f jal x0, -44 +70916717ns 1246893 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70917001ns 1246898 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70917399ns 1246905 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70917570ns 1246908 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70918024ns 1246916 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70918195ns 1246919 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70918479ns 1246924 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70918763ns 1246929 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70919047ns 1246934 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70919502ns 1246942 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70919672ns 1246945 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70919957ns 1246950 1a110850 fd5ff06f jal x0, -44 +70920241ns 1246955 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70920525ns 1246960 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70920923ns 1246967 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70921093ns 1246970 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70921548ns 1246978 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70921718ns 1246981 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70922002ns 1246986 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70922287ns 1246991 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70922571ns 1246996 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70923025ns 1247004 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70923196ns 1247007 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70923480ns 1247012 1a110850 fd5ff06f jal x0, -44 +70923764ns 1247017 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70924048ns 1247022 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70924446ns 1247029 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70924617ns 1247032 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70925071ns 1247040 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70925242ns 1247043 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70925526ns 1247048 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70925810ns 1247053 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70926094ns 1247058 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70926549ns 1247066 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70926720ns 1247069 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70927004ns 1247074 1a110850 fd5ff06f jal x0, -44 +70927288ns 1247079 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70927572ns 1247084 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70927970ns 1247091 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70928140ns 1247094 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70928595ns 1247102 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70928765ns 1247105 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70929050ns 1247110 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70929334ns 1247115 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70929618ns 1247120 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70930073ns 1247128 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70930243ns 1247131 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70930527ns 1247136 1a110850 fd5ff06f jal x0, -44 +70930811ns 1247141 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70931096ns 1247146 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70931493ns 1247153 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70931664ns 1247156 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70932119ns 1247164 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70932289ns 1247167 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70932573ns 1247172 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70932857ns 1247177 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70933142ns 1247182 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70933596ns 1247190 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70933767ns 1247193 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70934051ns 1247198 1a110850 fd5ff06f jal x0, -44 +70934335ns 1247203 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70934619ns 1247208 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70935017ns 1247215 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70935187ns 1247218 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70935642ns 1247226 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70935813ns 1247229 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70936097ns 1247234 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70936381ns 1247239 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70936665ns 1247244 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70937120ns 1247252 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70937290ns 1247255 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70937574ns 1247260 1a110850 fd5ff06f jal x0, -44 +70937859ns 1247265 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70938143ns 1247270 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70938541ns 1247277 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70938711ns 1247280 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70939166ns 1247288 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70939336ns 1247291 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70939620ns 1247296 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70939905ns 1247301 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70940189ns 1247306 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70940643ns 1247314 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70940814ns 1247317 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70941098ns 1247322 1a110850 fd5ff06f jal x0, -44 +70941382ns 1247327 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70941666ns 1247332 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70942064ns 1247339 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70942235ns 1247342 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70942689ns 1247350 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70942860ns 1247353 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70943144ns 1247358 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70943428ns 1247363 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70943712ns 1247368 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70944167ns 1247376 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70944337ns 1247379 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70944622ns 1247384 1a110850 fd5ff06f jal x0, -44 +70944906ns 1247389 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70945190ns 1247394 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70945588ns 1247401 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70945758ns 1247404 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70946213ns 1247412 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70946383ns 1247415 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70946668ns 1247420 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70946952ns 1247425 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70947236ns 1247430 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70947691ns 1247438 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70947861ns 1247441 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70948145ns 1247446 1a110850 fd5ff06f jal x0, -44 +70948429ns 1247451 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70948714ns 1247456 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70949111ns 1247463 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70949282ns 1247466 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70949736ns 1247474 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70949907ns 1247477 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70950191ns 1247482 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70950475ns 1247487 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70950759ns 1247492 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70951214ns 1247500 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70951385ns 1247503 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70951669ns 1247508 1a110850 fd5ff06f jal x0, -44 +70951953ns 1247513 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70952237ns 1247518 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70952635ns 1247525 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70952805ns 1247528 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70953260ns 1247536 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70953431ns 1247539 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70953715ns 1247544 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70953999ns 1247549 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70954283ns 1247554 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70954738ns 1247562 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70954908ns 1247565 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70955192ns 1247570 1a110850 fd5ff06f jal x0, -44 +70955477ns 1247575 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70955761ns 1247580 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70956159ns 1247587 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70956329ns 1247590 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70956784ns 1247598 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70956954ns 1247601 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70957238ns 1247606 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70957522ns 1247611 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70957807ns 1247616 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70958261ns 1247624 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70958432ns 1247627 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70958716ns 1247632 1a110850 fd5ff06f jal x0, -44 +70959000ns 1247637 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70959284ns 1247642 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70959682ns 1247649 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70959853ns 1247652 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70960307ns 1247660 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70960478ns 1247663 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70960762ns 1247668 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70961046ns 1247673 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70961330ns 1247678 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70961785ns 1247686 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70961955ns 1247689 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70962240ns 1247694 1a110850 fd5ff06f jal x0, -44 +70962524ns 1247699 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70962808ns 1247704 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70963206ns 1247711 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70963376ns 1247714 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70963831ns 1247722 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70964001ns 1247725 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70964285ns 1247730 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70964570ns 1247735 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70964854ns 1247740 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70965308ns 1247748 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70965479ns 1247751 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70965763ns 1247756 1a110850 fd5ff06f jal x0, -44 +70966047ns 1247761 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70966331ns 1247766 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70966729ns 1247773 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70966900ns 1247776 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70967354ns 1247784 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70967525ns 1247787 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70967809ns 1247792 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70968093ns 1247797 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70968377ns 1247802 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70968832ns 1247810 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70969003ns 1247813 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70969287ns 1247818 1a110850 fd5ff06f jal x0, -44 +70969571ns 1247823 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70969855ns 1247828 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70970253ns 1247835 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70970423ns 1247838 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70970878ns 1247846 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70971048ns 1247849 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70971333ns 1247854 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70971617ns 1247859 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70971901ns 1247864 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70972356ns 1247872 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70972526ns 1247875 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70972810ns 1247880 1a110850 fd5ff06f jal x0, -44 +70973094ns 1247885 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70973379ns 1247890 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70973776ns 1247897 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70973947ns 1247900 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70974402ns 1247908 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70974572ns 1247911 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70974856ns 1247916 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70975140ns 1247921 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70975425ns 1247926 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70975879ns 1247934 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70976050ns 1247937 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70976334ns 1247942 1a110850 fd5ff06f jal x0, -44 +70976618ns 1247947 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70976902ns 1247952 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70977300ns 1247959 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70977471ns 1247962 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70977925ns 1247970 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70978096ns 1247973 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70978380ns 1247978 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70978664ns 1247983 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70978948ns 1247988 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70979403ns 1247996 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70979573ns 1247999 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70979857ns 1248004 1a110850 fd5ff06f jal x0, -44 +70980142ns 1248009 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70980426ns 1248014 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70980824ns 1248021 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70980994ns 1248024 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70981449ns 1248032 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70981619ns 1248035 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70981903ns 1248040 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70982188ns 1248045 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70982472ns 1248050 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70982926ns 1248058 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70983097ns 1248061 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70983381ns 1248066 1a110850 fd5ff06f jal x0, -44 +70983665ns 1248071 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70983949ns 1248076 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70984347ns 1248083 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70984518ns 1248086 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70984972ns 1248094 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70985143ns 1248097 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70985427ns 1248102 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70985711ns 1248107 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70985995ns 1248112 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70986450ns 1248120 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70986620ns 1248123 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70986905ns 1248128 1a110850 fd5ff06f jal x0, -44 +70987189ns 1248133 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70987473ns 1248138 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70987871ns 1248145 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70988041ns 1248148 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70988496ns 1248156 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70988666ns 1248159 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70988951ns 1248164 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70989235ns 1248169 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70989519ns 1248174 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70989974ns 1248182 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70990144ns 1248185 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70990428ns 1248190 1a110850 fd5ff06f jal x0, -44 +70990712ns 1248195 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70990997ns 1248200 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70991394ns 1248207 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70991565ns 1248210 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70992019ns 1248218 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70992190ns 1248221 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70992474ns 1248226 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70992758ns 1248231 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70993042ns 1248236 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70993497ns 1248244 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70993668ns 1248247 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70993952ns 1248252 1a110850 fd5ff06f jal x0, -44 +70994236ns 1248257 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70994520ns 1248262 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70994918ns 1248269 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70995088ns 1248272 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70995543ns 1248280 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70995714ns 1248283 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70995998ns 1248288 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70996282ns 1248293 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70996566ns 1248298 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70997021ns 1248306 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +70997191ns 1248309 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +70997475ns 1248314 1a110850 fd5ff06f jal x0, -44 +70997760ns 1248319 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70998044ns 1248324 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +70998442ns 1248331 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +70998612ns 1248334 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +70999067ns 1248342 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +70999237ns 1248345 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +70999521ns 1248350 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +70999805ns 1248355 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71000090ns 1248360 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71000544ns 1248368 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71000715ns 1248371 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71000999ns 1248376 1a110850 fd5ff06f jal x0, -44 +71001283ns 1248381 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71001567ns 1248386 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71001965ns 1248393 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71002136ns 1248396 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71002590ns 1248404 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71002761ns 1248407 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71003045ns 1248412 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71003329ns 1248417 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71003613ns 1248422 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71004068ns 1248430 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71004238ns 1248433 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71004523ns 1248438 1a110850 fd5ff06f jal x0, -44 +71004807ns 1248443 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71005091ns 1248448 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71005489ns 1248455 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71005659ns 1248458 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71006114ns 1248466 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71006284ns 1248469 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71006568ns 1248474 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71006853ns 1248479 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71007137ns 1248484 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71007591ns 1248492 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71007762ns 1248495 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71008046ns 1248500 1a110850 fd5ff06f jal x0, -44 +71008330ns 1248505 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71008614ns 1248510 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71009012ns 1248517 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71009183ns 1248520 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71009637ns 1248528 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71009808ns 1248531 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71010092ns 1248536 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71010376ns 1248541 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71010660ns 1248546 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71011115ns 1248554 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71011286ns 1248557 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71011570ns 1248562 1a110850 fd5ff06f jal x0, -44 +71011854ns 1248567 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71012138ns 1248572 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71012536ns 1248579 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71012706ns 1248582 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71013161ns 1248590 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71013331ns 1248593 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71013616ns 1248598 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71013900ns 1248603 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71014184ns 1248608 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71014639ns 1248616 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71014809ns 1248619 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71015093ns 1248624 1a110850 fd5ff06f jal x0, -44 +71015377ns 1248629 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71015662ns 1248634 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71016059ns 1248641 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71016230ns 1248644 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71016685ns 1248652 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71016855ns 1248655 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71017139ns 1248660 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71017423ns 1248665 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71017708ns 1248670 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71018162ns 1248678 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71018333ns 1248681 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71018617ns 1248686 1a110850 fd5ff06f jal x0, -44 +71018901ns 1248691 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71019185ns 1248696 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71019583ns 1248703 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71019754ns 1248706 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71020208ns 1248714 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71020379ns 1248717 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71020663ns 1248722 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71020947ns 1248727 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71021231ns 1248732 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71021686ns 1248740 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71021856ns 1248743 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71022140ns 1248748 1a110850 fd5ff06f jal x0, -44 +71022425ns 1248753 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71022709ns 1248758 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71023107ns 1248765 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71023277ns 1248768 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71023732ns 1248776 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71023902ns 1248779 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71024186ns 1248784 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71024471ns 1248789 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71024755ns 1248794 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71025209ns 1248802 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71025380ns 1248805 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71025664ns 1248810 1a110850 fd5ff06f jal x0, -44 +71025948ns 1248815 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71026232ns 1248820 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71026630ns 1248827 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71026801ns 1248830 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71027255ns 1248838 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71027426ns 1248841 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71027710ns 1248846 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71027994ns 1248851 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71028278ns 1248856 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71028733ns 1248864 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71028903ns 1248867 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71029188ns 1248872 1a110850 fd5ff06f jal x0, -44 +71029472ns 1248877 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71029756ns 1248882 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71030154ns 1248889 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71030324ns 1248892 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71030779ns 1248900 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71030949ns 1248903 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71031234ns 1248908 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71031518ns 1248913 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71031802ns 1248918 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71032257ns 1248926 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71032427ns 1248929 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71032711ns 1248934 1a110850 fd5ff06f jal x0, -44 +71032995ns 1248939 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71033280ns 1248944 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71033677ns 1248951 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71033848ns 1248954 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71034303ns 1248962 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71034473ns 1248965 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71034757ns 1248970 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71035041ns 1248975 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71035325ns 1248980 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71035780ns 1248988 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71035951ns 1248991 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71036235ns 1248996 1a110850 fd5ff06f jal x0, -44 +71036519ns 1249001 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71036803ns 1249006 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71037201ns 1249013 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71037371ns 1249016 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71037826ns 1249024 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71037997ns 1249027 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71038281ns 1249032 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71038565ns 1249037 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71038849ns 1249042 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71039304ns 1249050 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71039474ns 1249053 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71039758ns 1249058 1a110850 fd5ff06f jal x0, -44 +71040043ns 1249063 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71040327ns 1249068 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71040725ns 1249075 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71040895ns 1249078 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71041350ns 1249086 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71041520ns 1249089 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71041804ns 1249094 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71042088ns 1249099 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71042373ns 1249104 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71042827ns 1249112 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71042998ns 1249115 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71043282ns 1249120 1a110850 fd5ff06f jal x0, -44 +71043566ns 1249125 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71043850ns 1249130 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71044248ns 1249137 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71044419ns 1249140 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71044873ns 1249148 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71045044ns 1249151 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71045328ns 1249156 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71045612ns 1249161 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71045896ns 1249166 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71046351ns 1249174 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71046521ns 1249177 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71046806ns 1249182 1a110850 fd5ff06f jal x0, -44 +71047090ns 1249187 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71047374ns 1249192 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71047772ns 1249199 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71047942ns 1249202 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71048397ns 1249210 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71048567ns 1249213 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71048851ns 1249218 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71049136ns 1249223 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71049420ns 1249228 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71049874ns 1249236 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71050045ns 1249239 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71050329ns 1249244 1a110850 fd5ff06f jal x0, -44 +71050613ns 1249249 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71050897ns 1249254 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71051295ns 1249261 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71051466ns 1249264 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71051920ns 1249272 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71052091ns 1249275 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71052375ns 1249280 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71052659ns 1249285 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71052943ns 1249290 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71053398ns 1249298 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71053569ns 1249301 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71053853ns 1249306 1a110850 fd5ff06f jal x0, -44 +71054137ns 1249311 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71054421ns 1249316 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71054819ns 1249323 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71054989ns 1249326 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71055444ns 1249334 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71055615ns 1249337 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71055899ns 1249342 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71056183ns 1249347 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71056467ns 1249352 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71056922ns 1249360 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71057092ns 1249363 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71057376ns 1249368 1a110850 fd5ff06f jal x0, -44 +71057660ns 1249373 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71057945ns 1249378 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71058342ns 1249385 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71058513ns 1249388 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71058968ns 1249396 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71059138ns 1249399 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71059422ns 1249404 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71059706ns 1249409 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71059991ns 1249414 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71060445ns 1249422 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71060616ns 1249425 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71060900ns 1249430 1a110850 fd5ff06f jal x0, -44 +71061184ns 1249435 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71061468ns 1249440 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71061866ns 1249447 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71062037ns 1249450 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71062491ns 1249458 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71062662ns 1249461 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71062946ns 1249466 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71063230ns 1249471 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71063514ns 1249476 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71063969ns 1249484 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71064139ns 1249487 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71064423ns 1249492 1a110850 fd5ff06f jal x0, -44 +71064708ns 1249497 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71064992ns 1249502 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71065390ns 1249509 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71065560ns 1249512 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71066015ns 1249520 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71066185ns 1249523 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71066469ns 1249528 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71066754ns 1249533 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71067038ns 1249538 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71067492ns 1249546 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71067663ns 1249549 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71067947ns 1249554 1a110850 fd5ff06f jal x0, -44 +71068231ns 1249559 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71068515ns 1249564 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71068913ns 1249571 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71069084ns 1249574 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71069538ns 1249582 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71069709ns 1249585 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71069993ns 1249590 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71070277ns 1249595 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71070561ns 1249600 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71071016ns 1249608 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71071186ns 1249611 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71071471ns 1249616 1a110850 fd5ff06f jal x0, -44 +71071755ns 1249621 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71072039ns 1249626 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71072437ns 1249633 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71072607ns 1249636 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71073062ns 1249644 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71073232ns 1249647 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71073517ns 1249652 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71073801ns 1249657 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71074085ns 1249662 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71074540ns 1249670 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71074710ns 1249673 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71074994ns 1249678 1a110850 fd5ff06f jal x0, -44 +71075278ns 1249683 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71075563ns 1249688 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71075960ns 1249695 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71076131ns 1249698 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71076586ns 1249706 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71076756ns 1249709 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71077040ns 1249714 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71077324ns 1249719 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71077608ns 1249724 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71078063ns 1249732 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71078234ns 1249735 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71078518ns 1249740 1a110850 fd5ff06f jal x0, -44 +71078802ns 1249745 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71079086ns 1249750 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71079484ns 1249757 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71079654ns 1249760 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71080109ns 1249768 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71080280ns 1249771 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71080564ns 1249776 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71080848ns 1249781 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71081132ns 1249786 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71081587ns 1249794 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71081757ns 1249797 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71082041ns 1249802 1a110850 fd5ff06f jal x0, -44 +71082326ns 1249807 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71082610ns 1249812 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71083008ns 1249819 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71083178ns 1249822 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71083633ns 1249830 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71083803ns 1249833 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71084087ns 1249838 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71084371ns 1249843 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71084656ns 1249848 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71085110ns 1249856 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71085281ns 1249859 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71085565ns 1249864 1a110850 fd5ff06f jal x0, -44 +71085849ns 1249869 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71086133ns 1249874 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71086531ns 1249881 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71086702ns 1249884 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71087156ns 1249892 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71087327ns 1249895 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71087611ns 1249900 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71087895ns 1249905 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71088179ns 1249910 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71088634ns 1249918 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71088804ns 1249921 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71089089ns 1249926 1a110850 fd5ff06f jal x0, -44 +71089373ns 1249931 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71089657ns 1249936 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71090055ns 1249943 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71090225ns 1249946 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71090680ns 1249954 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71090850ns 1249957 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71091135ns 1249962 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71091419ns 1249967 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71091703ns 1249972 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71092157ns 1249980 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71092328ns 1249983 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71092612ns 1249988 1a110850 fd5ff06f jal x0, -44 +71092896ns 1249993 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71093180ns 1249998 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71093578ns 1250005 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71093749ns 1250008 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71094203ns 1250016 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71094374ns 1250019 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71094658ns 1250024 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71094942ns 1250029 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71095226ns 1250034 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71095681ns 1250042 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71095852ns 1250045 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71096136ns 1250050 1a110850 fd5ff06f jal x0, -44 +71096420ns 1250055 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71096704ns 1250060 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71097102ns 1250067 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71097272ns 1250070 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71097727ns 1250078 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71097898ns 1250081 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71098182ns 1250086 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71098466ns 1250091 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71098750ns 1250096 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71099205ns 1250104 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71099375ns 1250107 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71099659ns 1250112 1a110850 fd5ff06f jal x0, -44 +71099943ns 1250117 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71100228ns 1250122 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71100625ns 1250129 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71100796ns 1250132 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71101251ns 1250140 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71101421ns 1250143 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71101705ns 1250148 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71101989ns 1250153 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71102274ns 1250158 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71102728ns 1250166 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71102899ns 1250169 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71103183ns 1250174 1a110850 fd5ff06f jal x0, -44 +71103467ns 1250179 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71103751ns 1250184 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71104149ns 1250191 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71104320ns 1250194 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71104774ns 1250202 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71104945ns 1250205 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71105229ns 1250210 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71105513ns 1250215 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71105797ns 1250220 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71106252ns 1250228 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71106422ns 1250231 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71106706ns 1250236 1a110850 fd5ff06f jal x0, -44 +71106991ns 1250241 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71107275ns 1250246 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71107673ns 1250253 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71107843ns 1250256 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71108298ns 1250264 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71108468ns 1250267 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71108752ns 1250272 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71109037ns 1250277 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71109321ns 1250282 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71109775ns 1250290 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71109946ns 1250293 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71110230ns 1250298 1a110850 fd5ff06f jal x0, -44 +71110514ns 1250303 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71110798ns 1250308 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71111196ns 1250315 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71111367ns 1250318 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71111821ns 1250326 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71111992ns 1250329 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71112276ns 1250334 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71112560ns 1250339 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71112844ns 1250344 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71113299ns 1250352 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71113469ns 1250355 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71113754ns 1250360 1a110850 fd5ff06f jal x0, -44 +71114038ns 1250365 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71114322ns 1250370 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71114720ns 1250377 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71114890ns 1250380 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71115345ns 1250388 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71115515ns 1250391 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71115800ns 1250396 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71116084ns 1250401 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71116368ns 1250406 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71116823ns 1250414 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71116993ns 1250417 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71117277ns 1250422 1a110850 fd5ff06f jal x0, -44 +71117561ns 1250427 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71117846ns 1250432 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71118243ns 1250439 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71118414ns 1250442 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71118869ns 1250450 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71119039ns 1250453 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71119323ns 1250458 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71119607ns 1250463 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71119891ns 1250468 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71120346ns 1250476 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71120517ns 1250479 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71120801ns 1250484 1a110850 fd5ff06f jal x0, -44 +71121085ns 1250489 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71121369ns 1250494 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71121767ns 1250501 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71121937ns 1250504 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71122392ns 1250512 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71122563ns 1250515 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71122847ns 1250520 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71123131ns 1250525 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71123415ns 1250530 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71123870ns 1250538 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71124040ns 1250541 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71124324ns 1250546 1a110850 fd5ff06f jal x0, -44 +71124609ns 1250551 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71124893ns 1250556 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71125291ns 1250563 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71125461ns 1250566 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71125916ns 1250574 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71126086ns 1250577 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71126370ns 1250582 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71126655ns 1250587 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71126939ns 1250592 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71127393ns 1250600 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71127564ns 1250603 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71127848ns 1250608 1a110850 fd5ff06f jal x0, -44 +71128132ns 1250613 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71128416ns 1250618 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71128814ns 1250625 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71128985ns 1250628 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71129439ns 1250636 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71129610ns 1250639 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71129894ns 1250644 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71130178ns 1250649 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71130462ns 1250654 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71130917ns 1250662 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71131087ns 1250665 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71131372ns 1250670 1a110850 fd5ff06f jal x0, -44 +71131656ns 1250675 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71131940ns 1250680 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71132338ns 1250687 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71132508ns 1250690 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71132963ns 1250698 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71133133ns 1250701 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71133418ns 1250706 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71133702ns 1250711 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71133986ns 1250716 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71134440ns 1250724 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71134611ns 1250727 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71134895ns 1250732 1a110850 fd5ff06f jal x0, -44 +71135179ns 1250737 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71135463ns 1250742 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71135861ns 1250749 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71136032ns 1250752 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71136486ns 1250760 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71136657ns 1250763 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71136941ns 1250768 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71137225ns 1250773 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71137509ns 1250778 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71137964ns 1250786 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71138135ns 1250789 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71138419ns 1250794 1a110850 fd5ff06f jal x0, -44 +71138703ns 1250799 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71138987ns 1250804 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71139385ns 1250811 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71139555ns 1250814 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71140010ns 1250822 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71140181ns 1250825 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71140465ns 1250830 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71140749ns 1250835 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71141033ns 1250840 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71141488ns 1250848 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71141658ns 1250851 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71141942ns 1250856 1a110850 fd5ff06f jal x0, -44 +71142226ns 1250861 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71142511ns 1250866 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71142908ns 1250873 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71143079ns 1250876 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71143534ns 1250884 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71143704ns 1250887 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71143988ns 1250892 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71144272ns 1250897 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71144557ns 1250902 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71145011ns 1250910 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71145182ns 1250913 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71145466ns 1250918 1a110850 fd5ff06f jal x0, -44 +71145750ns 1250923 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71146034ns 1250928 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71146432ns 1250935 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71146603ns 1250938 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71147057ns 1250946 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71147228ns 1250949 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71147512ns 1250954 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71147796ns 1250959 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71148080ns 1250964 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71148535ns 1250972 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71148705ns 1250975 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71148989ns 1250980 1a110850 fd5ff06f jal x0, -44 +71149274ns 1250985 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71149558ns 1250990 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71149956ns 1250997 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71150126ns 1251000 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71150581ns 1251008 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71150751ns 1251011 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71151035ns 1251016 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71151320ns 1251021 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71151604ns 1251026 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71152058ns 1251034 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71152229ns 1251037 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71152513ns 1251042 1a110850 fd5ff06f jal x0, -44 +71152797ns 1251047 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71153081ns 1251052 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71153479ns 1251059 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71153650ns 1251062 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71154104ns 1251070 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71154275ns 1251073 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71154559ns 1251078 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71154843ns 1251083 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71155127ns 1251088 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71155582ns 1251096 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71155752ns 1251099 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71156037ns 1251104 1a110850 fd5ff06f jal x0, -44 +71156321ns 1251109 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71156605ns 1251114 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71157003ns 1251121 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71157173ns 1251124 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71157628ns 1251132 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71157798ns 1251135 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71158083ns 1251140 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71158367ns 1251145 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71158651ns 1251150 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71159106ns 1251158 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71159276ns 1251161 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71159560ns 1251166 1a110850 fd5ff06f jal x0, -44 +71159844ns 1251171 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71160129ns 1251176 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71160526ns 1251183 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71160697ns 1251186 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71161152ns 1251194 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71161322ns 1251197 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71161606ns 1251202 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71161890ns 1251207 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71162175ns 1251212 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71162629ns 1251220 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71162800ns 1251223 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71163084ns 1251228 1a110850 fd5ff06f jal x0, -44 +71163368ns 1251233 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71163652ns 1251238 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71164050ns 1251245 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71164220ns 1251248 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71164675ns 1251256 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71164846ns 1251259 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71165130ns 1251264 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71165414ns 1251269 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71165698ns 1251274 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71166153ns 1251282 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71166323ns 1251285 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71166607ns 1251290 1a110850 fd5ff06f jal x0, -44 +71166892ns 1251295 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71167176ns 1251300 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71167574ns 1251307 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71167744ns 1251310 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71168199ns 1251318 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71168369ns 1251321 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71168653ns 1251326 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71168938ns 1251331 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71169222ns 1251336 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71169676ns 1251344 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71169847ns 1251347 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71170131ns 1251352 1a110850 fd5ff06f jal x0, -44 +71170415ns 1251357 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71170699ns 1251362 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71171097ns 1251369 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71171268ns 1251372 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71171722ns 1251380 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71171893ns 1251383 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71172177ns 1251388 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71172461ns 1251393 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71172745ns 1251398 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71173200ns 1251406 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71173370ns 1251409 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71173655ns 1251414 1a110850 fd5ff06f jal x0, -44 +71173939ns 1251419 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71174223ns 1251424 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71174621ns 1251431 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71174791ns 1251434 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71175246ns 1251442 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71175416ns 1251445 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71175701ns 1251450 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71175985ns 1251455 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71176269ns 1251460 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71176723ns 1251468 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71176894ns 1251471 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71177178ns 1251476 1a110850 fd5ff06f jal x0, -44 +71177462ns 1251481 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71177746ns 1251486 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71178144ns 1251493 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71178315ns 1251496 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71178769ns 1251504 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71178940ns 1251507 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71179224ns 1251512 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71179508ns 1251517 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71179792ns 1251522 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71180247ns 1251530 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71180418ns 1251533 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71180702ns 1251538 1a110850 fd5ff06f jal x0, -44 +71180986ns 1251543 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71181270ns 1251548 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71181668ns 1251555 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71181838ns 1251558 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71182293ns 1251566 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71182464ns 1251569 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71182748ns 1251574 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71183032ns 1251579 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71183316ns 1251584 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71183771ns 1251592 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71183941ns 1251595 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71184225ns 1251600 1a110850 fd5ff06f jal x0, -44 +71184509ns 1251605 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71184794ns 1251610 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71185191ns 1251617 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71185362ns 1251620 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71185817ns 1251628 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71185987ns 1251631 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71186271ns 1251636 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71186555ns 1251641 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71186840ns 1251646 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71187294ns 1251654 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71187465ns 1251657 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71187749ns 1251662 1a110850 fd5ff06f jal x0, -44 +71188033ns 1251667 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71188317ns 1251672 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71188715ns 1251679 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71188886ns 1251682 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71189340ns 1251690 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71189511ns 1251693 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71189795ns 1251698 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71190079ns 1251703 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71190363ns 1251708 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71190818ns 1251716 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71190988ns 1251719 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71191272ns 1251724 1a110850 fd5ff06f jal x0, -44 +71191557ns 1251729 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71191841ns 1251734 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71192239ns 1251741 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71192409ns 1251744 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71192864ns 1251752 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71193034ns 1251755 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71193318ns 1251760 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71193603ns 1251765 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71193887ns 1251770 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71194341ns 1251778 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71194512ns 1251781 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71194796ns 1251786 1a110850 fd5ff06f jal x0, -44 +71195080ns 1251791 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71195364ns 1251796 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71195762ns 1251803 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71195933ns 1251806 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71196387ns 1251814 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71196558ns 1251817 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71196842ns 1251822 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71197126ns 1251827 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71197410ns 1251832 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71197865ns 1251840 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71198035ns 1251843 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71198320ns 1251848 1a110850 fd5ff06f jal x0, -44 +71198604ns 1251853 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71198888ns 1251858 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71199286ns 1251865 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71199456ns 1251868 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71199911ns 1251876 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71200081ns 1251879 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71200366ns 1251884 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71200650ns 1251889 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71200934ns 1251894 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71201389ns 1251902 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71201559ns 1251905 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71201843ns 1251910 1a110850 fd5ff06f jal x0, -44 +71202127ns 1251915 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71202412ns 1251920 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71202809ns 1251927 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71202980ns 1251930 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71203435ns 1251938 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71203605ns 1251941 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71203889ns 1251946 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71204173ns 1251951 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71204458ns 1251956 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71204912ns 1251964 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71205083ns 1251967 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71205367ns 1251972 1a110850 fd5ff06f jal x0, -44 +71205651ns 1251977 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71205935ns 1251982 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71206333ns 1251989 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71206503ns 1251992 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71206958ns 1252000 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71207129ns 1252003 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71207413ns 1252008 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71207697ns 1252013 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71207981ns 1252018 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71208436ns 1252026 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71208606ns 1252029 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71208890ns 1252034 1a110850 fd5ff06f jal x0, -44 +71209175ns 1252039 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71209459ns 1252044 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71209857ns 1252051 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71210027ns 1252054 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71210482ns 1252062 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71210652ns 1252065 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71210936ns 1252070 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71211221ns 1252075 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71211505ns 1252080 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71211959ns 1252088 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71212130ns 1252091 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71212414ns 1252096 1a110850 fd5ff06f jal x0, -44 +71212698ns 1252101 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71212982ns 1252106 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71213380ns 1252113 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71213551ns 1252116 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71214005ns 1252124 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71214176ns 1252127 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71214460ns 1252132 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71214744ns 1252137 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71215028ns 1252142 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71215483ns 1252150 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71215653ns 1252153 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71215938ns 1252158 1a110850 fd5ff06f jal x0, -44 +71216222ns 1252163 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71216506ns 1252168 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71216904ns 1252175 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71217074ns 1252178 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71217529ns 1252186 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71217699ns 1252189 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71217984ns 1252194 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71218268ns 1252199 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71218552ns 1252204 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71219007ns 1252212 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71219177ns 1252215 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71219461ns 1252220 1a110850 fd5ff06f jal x0, -44 +71219745ns 1252225 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71220029ns 1252230 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71220427ns 1252237 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71220598ns 1252240 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71221052ns 1252248 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71221223ns 1252251 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71221507ns 1252256 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71221791ns 1252261 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71222075ns 1252266 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71222530ns 1252274 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71222701ns 1252277 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71222985ns 1252282 1a110850 fd5ff06f jal x0, -44 +71223269ns 1252287 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71223553ns 1252292 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71223951ns 1252299 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71224121ns 1252302 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71224576ns 1252310 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71224747ns 1252313 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71225031ns 1252318 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71225315ns 1252323 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71225599ns 1252328 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71226054ns 1252336 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71226224ns 1252339 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71226508ns 1252344 1a110850 fd5ff06f jal x0, -44 +71226792ns 1252349 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71227077ns 1252354 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71227474ns 1252361 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71227645ns 1252364 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71228100ns 1252372 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71228270ns 1252375 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71228554ns 1252380 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71228838ns 1252385 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71229123ns 1252390 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71229577ns 1252398 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71229748ns 1252401 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71230032ns 1252406 1a110850 fd5ff06f jal x0, -44 +71230316ns 1252411 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71230600ns 1252416 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71230998ns 1252423 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71231169ns 1252426 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71231623ns 1252434 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71231794ns 1252437 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71232078ns 1252442 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71232362ns 1252447 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71232646ns 1252452 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71233101ns 1252460 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71233271ns 1252463 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71233555ns 1252468 1a110850 fd5ff06f jal x0, -44 +71233840ns 1252473 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71234124ns 1252478 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71234522ns 1252485 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71234692ns 1252488 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71235147ns 1252496 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71235317ns 1252499 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71235601ns 1252504 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71235886ns 1252509 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71236170ns 1252514 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71236624ns 1252522 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71236795ns 1252525 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71237079ns 1252530 1a110850 fd5ff06f jal x0, -44 +71237363ns 1252535 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71237647ns 1252540 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71238045ns 1252547 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71238216ns 1252550 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71238670ns 1252558 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71238841ns 1252561 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71239125ns 1252566 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71239409ns 1252571 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71239693ns 1252576 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71240148ns 1252584 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71240319ns 1252587 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71240603ns 1252592 1a110850 fd5ff06f jal x0, -44 +71240887ns 1252597 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71241171ns 1252602 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71241569ns 1252609 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71241739ns 1252612 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71242194ns 1252620 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71242364ns 1252623 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71242649ns 1252628 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71242933ns 1252633 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71243217ns 1252638 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71243672ns 1252646 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71243842ns 1252649 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71244126ns 1252654 1a110850 fd5ff06f jal x0, -44 +71244410ns 1252659 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71244695ns 1252664 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71245092ns 1252671 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71245263ns 1252674 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71245718ns 1252682 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71245888ns 1252685 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71246172ns 1252690 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71246456ns 1252695 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71246741ns 1252700 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71247195ns 1252708 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71247366ns 1252711 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71247650ns 1252716 1a110850 fd5ff06f jal x0, -44 +71247934ns 1252721 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71248218ns 1252726 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71248616ns 1252733 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71248786ns 1252736 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71249241ns 1252744 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71249412ns 1252747 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71249696ns 1252752 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71249980ns 1252757 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71250264ns 1252762 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71250719ns 1252770 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71250889ns 1252773 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71251173ns 1252778 1a110850 fd5ff06f jal x0, -44 +71251458ns 1252783 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71251742ns 1252788 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71252140ns 1252795 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71252310ns 1252798 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71252765ns 1252806 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71252935ns 1252809 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71253219ns 1252814 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71253504ns 1252819 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71253788ns 1252824 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71254242ns 1252832 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71254413ns 1252835 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71254697ns 1252840 1a110850 fd5ff06f jal x0, -44 +71254981ns 1252845 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71255265ns 1252850 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71255663ns 1252857 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71255834ns 1252860 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71256288ns 1252868 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71256459ns 1252871 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71256743ns 1252876 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71257027ns 1252881 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71257311ns 1252886 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71257766ns 1252894 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71257936ns 1252897 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71258221ns 1252902 1a110850 fd5ff06f jal x0, -44 +71258505ns 1252907 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71258789ns 1252912 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71259187ns 1252919 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71259357ns 1252922 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71259812ns 1252930 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71259982ns 1252933 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71260267ns 1252938 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71260551ns 1252943 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71260835ns 1252948 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71261290ns 1252956 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71261460ns 1252959 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71261744ns 1252964 1a110850 fd5ff06f jal x0, -44 +71262028ns 1252969 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71262312ns 1252974 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71262710ns 1252981 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71262881ns 1252984 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71263335ns 1252992 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71263506ns 1252995 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71263790ns 1253000 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71264074ns 1253005 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71264358ns 1253010 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71264813ns 1253018 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71264984ns 1253021 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71265268ns 1253026 1a110850 fd5ff06f jal x0, -44 +71265552ns 1253031 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71265836ns 1253036 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71266234ns 1253043 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71266404ns 1253046 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71266859ns 1253054 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71267030ns 1253057 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71267314ns 1253062 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71267598ns 1253067 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71267882ns 1253072 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71268337ns 1253080 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71268507ns 1253083 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71268791ns 1253088 1a110850 fd5ff06f jal x0, -44 +71269075ns 1253093 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71269360ns 1253098 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71269757ns 1253105 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71269928ns 1253108 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71270383ns 1253116 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71270553ns 1253119 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71270837ns 1253124 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71271121ns 1253129 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71271406ns 1253134 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71271860ns 1253142 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71272031ns 1253145 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71272315ns 1253150 1a110850 fd5ff06f jal x0, -44 +71272599ns 1253155 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71272883ns 1253160 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71273281ns 1253167 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71273452ns 1253170 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71273906ns 1253178 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71274077ns 1253181 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71274361ns 1253186 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71274645ns 1253191 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71274929ns 1253196 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71275384ns 1253204 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71275554ns 1253207 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71275839ns 1253212 1a110850 fd5ff06f jal x0, -44 +71276123ns 1253217 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71276407ns 1253222 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71276805ns 1253229 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71276975ns 1253232 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71277430ns 1253240 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71277600ns 1253243 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71277884ns 1253248 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71278169ns 1253253 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71278453ns 1253258 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71278907ns 1253266 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71279078ns 1253269 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71279362ns 1253274 1a110850 fd5ff06f jal x0, -44 +71279646ns 1253279 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71279930ns 1253284 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71280328ns 1253291 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71280499ns 1253294 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71280953ns 1253302 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71281124ns 1253305 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71281408ns 1253310 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71281692ns 1253315 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71281976ns 1253320 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71282431ns 1253328 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71282602ns 1253331 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71282886ns 1253336 1a110850 fd5ff06f jal x0, -44 +71283170ns 1253341 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71283454ns 1253346 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71283852ns 1253353 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71284022ns 1253356 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71284477ns 1253364 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71284647ns 1253367 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71284932ns 1253372 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71285216ns 1253377 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71285500ns 1253382 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71285955ns 1253390 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71286125ns 1253393 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71286409ns 1253398 1a110850 fd5ff06f jal x0, -44 +71286693ns 1253403 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71286978ns 1253408 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71287375ns 1253415 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71287546ns 1253418 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71288001ns 1253426 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71288171ns 1253429 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71288455ns 1253434 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71288739ns 1253439 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71289024ns 1253444 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71289478ns 1253452 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71289649ns 1253455 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71289933ns 1253460 1a110850 fd5ff06f jal x0, -44 +71290217ns 1253465 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71290501ns 1253470 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71290899ns 1253477 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71291069ns 1253480 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71291524ns 1253488 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71291695ns 1253491 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71291979ns 1253496 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71292263ns 1253501 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71292547ns 1253506 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71293002ns 1253514 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71293172ns 1253517 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71293456ns 1253522 1a110850 fd5ff06f jal x0, -44 +71293741ns 1253527 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71294025ns 1253532 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71294423ns 1253539 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71294593ns 1253542 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71295048ns 1253550 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71295218ns 1253553 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71295502ns 1253558 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71295787ns 1253563 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71296071ns 1253568 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71296525ns 1253576 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71296696ns 1253579 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71296980ns 1253584 1a110850 fd5ff06f jal x0, -44 +71297264ns 1253589 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71297548ns 1253594 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71297946ns 1253601 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71298117ns 1253604 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71298571ns 1253612 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71298742ns 1253615 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71299026ns 1253620 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71299310ns 1253625 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71299594ns 1253630 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71300049ns 1253638 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71300219ns 1253641 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71300504ns 1253646 1a110850 fd5ff06f jal x0, -44 +71300788ns 1253651 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71301072ns 1253656 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71301470ns 1253663 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71301640ns 1253666 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71302095ns 1253674 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71302265ns 1253677 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71302550ns 1253682 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71302834ns 1253687 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71303118ns 1253692 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71303573ns 1253700 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71303743ns 1253703 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71304027ns 1253708 1a110850 fd5ff06f jal x0, -44 +71304311ns 1253713 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71304595ns 1253718 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71304993ns 1253725 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71305164ns 1253728 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71305618ns 1253736 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71305789ns 1253739 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71306073ns 1253744 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71306357ns 1253749 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71306641ns 1253754 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71307096ns 1253762 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71307267ns 1253765 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71307551ns 1253770 1a110850 fd5ff06f jal x0, -44 +71307835ns 1253775 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71308119ns 1253780 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71308517ns 1253787 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71308687ns 1253790 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71309142ns 1253798 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71309313ns 1253801 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71309597ns 1253806 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71309881ns 1253811 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71310165ns 1253816 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71310620ns 1253824 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71310790ns 1253827 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71311074ns 1253832 1a110850 fd5ff06f jal x0, -44 +71311359ns 1253837 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71311643ns 1253842 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71312040ns 1253849 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71312211ns 1253852 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71312666ns 1253860 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71312836ns 1253863 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71313120ns 1253868 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71313404ns 1253873 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71313689ns 1253878 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71314143ns 1253886 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71314314ns 1253889 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71314598ns 1253894 1a110850 fd5ff06f jal x0, -44 +71314882ns 1253899 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71315166ns 1253904 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71315564ns 1253911 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71315735ns 1253914 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71316189ns 1253922 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71316360ns 1253925 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71316644ns 1253930 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71316928ns 1253935 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71317212ns 1253940 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71317667ns 1253948 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71317837ns 1253951 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71318122ns 1253956 1a110850 fd5ff06f jal x0, -44 +71318406ns 1253961 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71318690ns 1253966 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71319088ns 1253973 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71319258ns 1253976 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71319713ns 1253984 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71319883ns 1253987 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71320167ns 1253992 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71320452ns 1253997 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71320736ns 1254002 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71321190ns 1254010 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71321361ns 1254013 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71321645ns 1254018 1a110850 fd5ff06f jal x0, -44 +71321929ns 1254023 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71322213ns 1254028 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71322611ns 1254035 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71322782ns 1254038 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71323236ns 1254046 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71323407ns 1254049 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71323691ns 1254054 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71323975ns 1254059 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71324259ns 1254064 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71324714ns 1254072 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71324885ns 1254075 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71325169ns 1254080 1a110850 fd5ff06f jal x0, -44 +71325453ns 1254085 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71325737ns 1254090 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71326135ns 1254097 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71326305ns 1254100 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71326760ns 1254108 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71326930ns 1254111 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71327215ns 1254116 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71327499ns 1254121 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71327783ns 1254126 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71328238ns 1254134 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71328408ns 1254137 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71328692ns 1254142 1a110850 fd5ff06f jal x0, -44 +71328976ns 1254147 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71329261ns 1254152 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71329658ns 1254159 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71329829ns 1254162 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71330284ns 1254170 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71330454ns 1254173 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71330738ns 1254178 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71331022ns 1254183 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71331307ns 1254188 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71331761ns 1254196 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71331932ns 1254199 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71332216ns 1254204 1a110850 fd5ff06f jal x0, -44 +71332500ns 1254209 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71332784ns 1254214 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71333182ns 1254221 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71333352ns 1254224 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71333807ns 1254232 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71333978ns 1254235 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71334262ns 1254240 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71334546ns 1254245 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71334830ns 1254250 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71335285ns 1254258 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71335455ns 1254261 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71335739ns 1254266 1a110850 fd5ff06f jal x0, -44 +71336024ns 1254271 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71336308ns 1254276 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71336706ns 1254283 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71336876ns 1254286 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71337331ns 1254294 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71337501ns 1254297 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71337785ns 1254302 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71338070ns 1254307 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71338354ns 1254312 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71338808ns 1254320 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71338979ns 1254323 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71339263ns 1254328 1a110850 fd5ff06f jal x0, -44 +71339547ns 1254333 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71339831ns 1254338 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71340229ns 1254345 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71340400ns 1254348 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71340854ns 1254356 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71341025ns 1254359 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71341309ns 1254364 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71341593ns 1254369 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71341877ns 1254374 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71342332ns 1254382 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71342502ns 1254385 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71342787ns 1254390 1a110850 fd5ff06f jal x0, -44 +71343071ns 1254395 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71343355ns 1254400 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71343753ns 1254407 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71343923ns 1254410 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71344378ns 1254418 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71344548ns 1254421 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71344833ns 1254426 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71345117ns 1254431 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71345401ns 1254436 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71345856ns 1254444 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71346026ns 1254447 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71346310ns 1254452 1a110850 fd5ff06f jal x0, -44 +71346594ns 1254457 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71346879ns 1254462 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71347276ns 1254469 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71347447ns 1254472 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71347901ns 1254480 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71348072ns 1254483 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71348356ns 1254488 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71348640ns 1254493 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71348924ns 1254498 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71349379ns 1254506 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71349550ns 1254509 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71349834ns 1254514 1a110850 fd5ff06f jal x0, -44 +71350118ns 1254519 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71350402ns 1254524 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71350800ns 1254531 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71350970ns 1254534 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71351425ns 1254542 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71351596ns 1254545 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71351880ns 1254550 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71352164ns 1254555 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71352448ns 1254560 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71352903ns 1254568 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71353073ns 1254571 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71353357ns 1254576 1a110850 fd5ff06f jal x0, -44 +71353642ns 1254581 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71353926ns 1254586 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71354323ns 1254593 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71354494ns 1254596 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71354949ns 1254604 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71355119ns 1254607 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71355403ns 1254612 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71355687ns 1254617 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71355972ns 1254622 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71356426ns 1254630 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71356597ns 1254633 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71356881ns 1254638 1a110850 fd5ff06f jal x0, -44 +71357165ns 1254643 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71357449ns 1254648 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71357847ns 1254655 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71358018ns 1254658 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71358472ns 1254666 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71358643ns 1254669 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71358927ns 1254674 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71359211ns 1254679 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71359495ns 1254684 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71359950ns 1254692 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71360120ns 1254695 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71360405ns 1254700 1a110850 fd5ff06f jal x0, -44 +71360689ns 1254705 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71360973ns 1254710 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71361371ns 1254717 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71361541ns 1254720 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71361996ns 1254728 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71362166ns 1254731 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71362450ns 1254736 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71362735ns 1254741 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71363019ns 1254746 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71363473ns 1254754 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71363644ns 1254757 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71363928ns 1254762 1a110850 fd5ff06f jal x0, -44 +71364212ns 1254767 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71364496ns 1254772 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71364894ns 1254779 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71365065ns 1254782 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71365519ns 1254790 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71365690ns 1254793 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71365974ns 1254798 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71366258ns 1254803 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71366542ns 1254808 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71366997ns 1254816 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71367168ns 1254819 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71367452ns 1254824 1a110850 fd5ff06f jal x0, -44 +71367736ns 1254829 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71368020ns 1254834 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71368418ns 1254841 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71368588ns 1254844 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71369043ns 1254852 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71369213ns 1254855 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71369498ns 1254860 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71369782ns 1254865 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71370066ns 1254870 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71370521ns 1254878 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71370691ns 1254881 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71370975ns 1254886 1a110850 fd5ff06f jal x0, -44 +71371259ns 1254891 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71371544ns 1254896 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71371941ns 1254903 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71372112ns 1254906 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71372567ns 1254914 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71372737ns 1254917 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71373021ns 1254922 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71373305ns 1254927 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71373590ns 1254932 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71374044ns 1254940 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71374215ns 1254943 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71374499ns 1254948 1a110850 fd5ff06f jal x0, -44 +71374783ns 1254953 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71375067ns 1254958 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71375465ns 1254965 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71375635ns 1254968 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71376090ns 1254976 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71376261ns 1254979 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71376545ns 1254984 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71376829ns 1254989 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71377113ns 1254994 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71377568ns 1255002 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71377738ns 1255005 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71378022ns 1255010 1a110850 fd5ff06f jal x0, -44 +71378307ns 1255015 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71378591ns 1255020 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71378989ns 1255027 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71379159ns 1255030 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71379614ns 1255038 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71379784ns 1255041 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71380068ns 1255046 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71380353ns 1255051 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71380637ns 1255056 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71381091ns 1255064 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71381262ns 1255067 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71381546ns 1255072 1a110850 fd5ff06f jal x0, -44 +71381830ns 1255077 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71382114ns 1255082 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71382512ns 1255089 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71382683ns 1255092 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71383137ns 1255100 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71383308ns 1255103 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71383592ns 1255108 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71383876ns 1255113 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71384160ns 1255118 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71384615ns 1255126 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71384785ns 1255129 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71385070ns 1255134 1a110850 fd5ff06f jal x0, -44 +71385354ns 1255139 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71385638ns 1255144 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71386036ns 1255151 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71386206ns 1255154 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71386661ns 1255162 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71386831ns 1255165 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71387116ns 1255170 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71387400ns 1255175 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71387684ns 1255180 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71388139ns 1255188 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71388309ns 1255191 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71388593ns 1255196 1a110850 fd5ff06f jal x0, -44 +71388877ns 1255201 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71389162ns 1255206 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71389559ns 1255213 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71389730ns 1255216 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71390184ns 1255224 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71390355ns 1255227 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71390639ns 1255232 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71390923ns 1255237 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71391207ns 1255242 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71391662ns 1255250 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71391833ns 1255253 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71392117ns 1255258 1a110850 fd5ff06f jal x0, -44 +71392401ns 1255263 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71392685ns 1255268 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71393083ns 1255275 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71393253ns 1255278 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71393708ns 1255286 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71393879ns 1255289 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71394163ns 1255294 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71394447ns 1255299 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71394731ns 1255304 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71395186ns 1255312 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71395356ns 1255315 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71395640ns 1255320 1a110850 fd5ff06f jal x0, -44 +71395925ns 1255325 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71396209ns 1255330 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71396607ns 1255337 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71396777ns 1255340 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71397232ns 1255348 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71397402ns 1255351 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71397686ns 1255356 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71397970ns 1255361 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71398255ns 1255366 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71398709ns 1255374 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71398880ns 1255377 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71399164ns 1255382 1a110850 fd5ff06f jal x0, -44 +71399448ns 1255387 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71399732ns 1255392 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71400130ns 1255399 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71400301ns 1255402 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71400755ns 1255410 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71400926ns 1255413 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71401210ns 1255418 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71401494ns 1255423 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71401778ns 1255428 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71402233ns 1255436 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71402403ns 1255439 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71402688ns 1255444 1a110850 fd5ff06f jal x0, -44 +71402972ns 1255449 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71403256ns 1255454 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71403654ns 1255461 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71403824ns 1255464 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71404279ns 1255472 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71404449ns 1255475 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71404733ns 1255480 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71405018ns 1255485 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71405302ns 1255490 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71405756ns 1255498 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71405927ns 1255501 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71406211ns 1255506 1a110850 fd5ff06f jal x0, -44 +71406495ns 1255511 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71406779ns 1255516 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71407177ns 1255523 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71407348ns 1255526 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71407802ns 1255534 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71407973ns 1255537 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71408257ns 1255542 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71408541ns 1255547 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71408825ns 1255552 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71409280ns 1255560 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71409451ns 1255563 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71409735ns 1255568 1a110850 fd5ff06f jal x0, -44 +71410019ns 1255573 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71410303ns 1255578 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71410701ns 1255585 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71410871ns 1255588 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71411326ns 1255596 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71411496ns 1255599 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71411781ns 1255604 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71412065ns 1255609 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71412349ns 1255614 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71412804ns 1255622 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71412974ns 1255625 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71413258ns 1255630 1a110850 fd5ff06f jal x0, -44 +71413542ns 1255635 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71413827ns 1255640 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71414224ns 1255647 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71414395ns 1255650 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71414850ns 1255658 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71415020ns 1255661 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71415304ns 1255666 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71415588ns 1255671 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71415873ns 1255676 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71416327ns 1255684 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71416498ns 1255687 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71416782ns 1255692 1a110850 fd5ff06f jal x0, -44 +71417066ns 1255697 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71417350ns 1255702 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71417748ns 1255709 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71417919ns 1255712 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71418373ns 1255720 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71418544ns 1255723 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71418828ns 1255728 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71419112ns 1255733 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71419396ns 1255738 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71419851ns 1255746 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71420021ns 1255749 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71420305ns 1255754 1a110850 fd5ff06f jal x0, -44 +71420590ns 1255759 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71420874ns 1255764 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71421272ns 1255771 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71421442ns 1255774 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71421897ns 1255782 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71422067ns 1255785 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71422351ns 1255790 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71422636ns 1255795 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71422920ns 1255800 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71423374ns 1255808 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71423545ns 1255811 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71423829ns 1255816 1a110850 fd5ff06f jal x0, -44 +71424113ns 1255821 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71424397ns 1255826 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71424795ns 1255833 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71424966ns 1255836 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71425420ns 1255844 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71425591ns 1255847 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71425875ns 1255852 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71426159ns 1255857 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71426443ns 1255862 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71426898ns 1255870 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71427068ns 1255873 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71427353ns 1255878 1a110850 fd5ff06f jal x0, -44 +71427637ns 1255883 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71427921ns 1255888 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71428319ns 1255895 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71428489ns 1255898 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71428944ns 1255906 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71429114ns 1255909 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71429399ns 1255914 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71429683ns 1255919 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71429967ns 1255924 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71430422ns 1255932 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71430592ns 1255935 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71430876ns 1255940 1a110850 fd5ff06f jal x0, -44 +71431160ns 1255945 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71431445ns 1255950 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71431842ns 1255957 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71432013ns 1255960 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71432467ns 1255968 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71432638ns 1255971 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71432922ns 1255976 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71433206ns 1255981 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71433490ns 1255986 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71433945ns 1255994 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71434116ns 1255997 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71434400ns 1256002 1a110850 fd5ff06f jal x0, -44 +71434684ns 1256007 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71434968ns 1256012 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71435366ns 1256019 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71435536ns 1256022 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71435991ns 1256030 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71436162ns 1256033 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71436446ns 1256038 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71436730ns 1256043 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71437014ns 1256048 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71437469ns 1256056 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71437639ns 1256059 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71437923ns 1256064 1a110850 fd5ff06f jal x0, -44 +71438208ns 1256069 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71438492ns 1256074 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71438890ns 1256081 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71439060ns 1256084 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71439515ns 1256092 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71439685ns 1256095 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71439969ns 1256100 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71440253ns 1256105 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71440538ns 1256110 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71440992ns 1256118 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71441163ns 1256121 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71441447ns 1256126 1a110850 fd5ff06f jal x0, -44 +71441731ns 1256131 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71442015ns 1256136 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71442413ns 1256143 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71442584ns 1256146 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71443038ns 1256154 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71443209ns 1256157 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71443493ns 1256162 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71443777ns 1256167 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71444061ns 1256172 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71444516ns 1256180 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71444686ns 1256183 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71444971ns 1256188 1a110850 fd5ff06f jal x0, -44 +71445255ns 1256193 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71445539ns 1256198 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71445937ns 1256205 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71446107ns 1256208 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71446562ns 1256216 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71446732ns 1256219 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71447016ns 1256224 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71447301ns 1256229 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71447585ns 1256234 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71448039ns 1256242 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71448210ns 1256245 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71448494ns 1256250 1a110850 fd5ff06f jal x0, -44 +71448778ns 1256255 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71449062ns 1256260 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71449460ns 1256267 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71449631ns 1256270 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71450085ns 1256278 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71450256ns 1256281 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71450540ns 1256286 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71450824ns 1256291 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71451108ns 1256296 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71451563ns 1256304 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71451734ns 1256307 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71452018ns 1256312 1a110850 fd5ff06f jal x0, -44 +71452302ns 1256317 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71452586ns 1256322 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71452984ns 1256329 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71453154ns 1256332 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71453609ns 1256340 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71453779ns 1256343 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71454064ns 1256348 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71454348ns 1256353 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71454632ns 1256358 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71455087ns 1256366 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71455257ns 1256369 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71455541ns 1256374 1a110850 fd5ff06f jal x0, -44 +71455825ns 1256379 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71456110ns 1256384 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71456507ns 1256391 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71456678ns 1256394 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71457133ns 1256402 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71457303ns 1256405 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71457587ns 1256410 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71457871ns 1256415 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71458156ns 1256420 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71458610ns 1256428 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71458781ns 1256431 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71459065ns 1256436 1a110850 fd5ff06f jal x0, -44 +71459349ns 1256441 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71459633ns 1256446 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71460031ns 1256453 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71460202ns 1256456 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71460656ns 1256464 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71460827ns 1256467 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71461111ns 1256472 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71461395ns 1256477 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71461679ns 1256482 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71462134ns 1256490 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71462304ns 1256493 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71462588ns 1256498 1a110850 fd5ff06f jal x0, -44 +71462873ns 1256503 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71463157ns 1256508 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71463555ns 1256515 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71463725ns 1256518 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71464180ns 1256526 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71464350ns 1256529 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71464634ns 1256534 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71464919ns 1256539 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71465203ns 1256544 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71465657ns 1256552 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71465828ns 1256555 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71466112ns 1256560 1a110850 fd5ff06f jal x0, -44 +71466396ns 1256565 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71466680ns 1256570 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71467078ns 1256577 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71467249ns 1256580 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71467703ns 1256588 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71467874ns 1256591 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71468158ns 1256596 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71468442ns 1256601 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71468726ns 1256606 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71469181ns 1256614 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71469351ns 1256617 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71469636ns 1256622 1a110850 fd5ff06f jal x0, -44 +71469920ns 1256627 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71470204ns 1256632 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71470602ns 1256639 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71470772ns 1256642 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71471227ns 1256650 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71471397ns 1256653 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71471682ns 1256658 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71471966ns 1256663 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71472250ns 1256668 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71472705ns 1256676 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71472875ns 1256679 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71473159ns 1256684 1a110850 fd5ff06f jal x0, -44 +71473443ns 1256689 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71473728ns 1256694 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71474125ns 1256701 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71474296ns 1256704 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71474751ns 1256712 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71474921ns 1256715 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71475205ns 1256720 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71475489ns 1256725 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71475773ns 1256730 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71476228ns 1256738 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71476399ns 1256741 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71476683ns 1256746 1a110850 fd5ff06f jal x0, -44 +71476967ns 1256751 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71477251ns 1256756 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71477649ns 1256763 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71477819ns 1256766 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71478274ns 1256774 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71478445ns 1256777 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71478729ns 1256782 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71479013ns 1256787 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71479297ns 1256792 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71479752ns 1256800 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71479922ns 1256803 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71480206ns 1256808 1a110850 fd5ff06f jal x0, -44 +71480491ns 1256813 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71480775ns 1256818 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71481173ns 1256825 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71481343ns 1256828 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71481798ns 1256836 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71481968ns 1256839 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71482252ns 1256844 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71482536ns 1256849 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71482821ns 1256854 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71483275ns 1256862 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71483446ns 1256865 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71483730ns 1256870 1a110850 fd5ff06f jal x0, -44 +71484014ns 1256875 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71484298ns 1256880 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71484696ns 1256887 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71484867ns 1256890 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71485321ns 1256898 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71485492ns 1256901 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71485776ns 1256906 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71486060ns 1256911 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71486344ns 1256916 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71486799ns 1256924 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71486969ns 1256927 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71487254ns 1256932 1a110850 fd5ff06f jal x0, -44 +71487538ns 1256937 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71487822ns 1256942 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71488220ns 1256949 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71488390ns 1256952 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71488845ns 1256960 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71489015ns 1256963 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71489299ns 1256968 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71489584ns 1256973 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71489868ns 1256978 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71490322ns 1256986 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71490493ns 1256989 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71490777ns 1256994 1a110850 fd5ff06f jal x0, -44 +71491061ns 1256999 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71491345ns 1257004 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71491743ns 1257011 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71491914ns 1257014 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71492368ns 1257022 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71492539ns 1257025 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71492823ns 1257030 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71493107ns 1257035 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71493391ns 1257040 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71493846ns 1257048 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71494017ns 1257051 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71494301ns 1257056 1a110850 fd5ff06f jal x0, -44 +71494585ns 1257061 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71494869ns 1257066 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71495267ns 1257073 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71495437ns 1257076 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71495892ns 1257084 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71496063ns 1257087 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71496347ns 1257092 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71496631ns 1257097 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71496915ns 1257102 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71497370ns 1257110 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71497540ns 1257113 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71497824ns 1257118 1a110850 fd5ff06f jal x0, -44 +71498108ns 1257123 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71498393ns 1257128 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71498790ns 1257135 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71498961ns 1257138 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71499416ns 1257146 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71499586ns 1257149 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71499870ns 1257154 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71500154ns 1257159 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71500439ns 1257164 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71500893ns 1257172 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71501064ns 1257175 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71501348ns 1257180 1a110850 fd5ff06f jal x0, -44 +71501632ns 1257185 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71501916ns 1257190 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71502314ns 1257197 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71502485ns 1257200 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71502939ns 1257208 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71503110ns 1257211 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71503394ns 1257216 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71503678ns 1257221 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71503962ns 1257226 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71504417ns 1257234 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71504587ns 1257237 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71504871ns 1257242 1a110850 fd5ff06f jal x0, -44 +71505156ns 1257247 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71505440ns 1257252 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71505838ns 1257259 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71506008ns 1257262 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71506463ns 1257270 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71506633ns 1257273 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71506917ns 1257278 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71507202ns 1257283 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71507486ns 1257288 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71507940ns 1257296 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71508111ns 1257299 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71508395ns 1257304 1a110850 fd5ff06f jal x0, -44 +71508679ns 1257309 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71508963ns 1257314 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71509361ns 1257321 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71509532ns 1257324 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71509986ns 1257332 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71510157ns 1257335 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71510441ns 1257340 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71510725ns 1257345 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71511009ns 1257350 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71511464ns 1257358 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71511634ns 1257361 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71511919ns 1257366 1a110850 fd5ff06f jal x0, -44 +71512203ns 1257371 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71512487ns 1257376 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71512885ns 1257383 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71513055ns 1257386 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71513510ns 1257394 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71513680ns 1257397 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71513965ns 1257402 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71514249ns 1257407 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71514533ns 1257412 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71514988ns 1257420 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71515158ns 1257423 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71515442ns 1257428 1a110850 fd5ff06f jal x0, -44 +71515726ns 1257433 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71516011ns 1257438 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71516408ns 1257445 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71516579ns 1257448 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71517034ns 1257456 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71517204ns 1257459 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71517488ns 1257464 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71517772ns 1257469 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71518056ns 1257474 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71518511ns 1257482 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71518682ns 1257485 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71518966ns 1257490 1a110850 fd5ff06f jal x0, -44 +71519250ns 1257495 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71519534ns 1257500 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71519932ns 1257507 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71520102ns 1257510 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71520557ns 1257518 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71520728ns 1257521 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71521012ns 1257526 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71521296ns 1257531 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71521580ns 1257536 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71522035ns 1257544 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71522205ns 1257547 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71522489ns 1257552 1a110850 fd5ff06f jal x0, -44 +71522774ns 1257557 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71523058ns 1257562 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71523456ns 1257569 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71523626ns 1257572 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71524081ns 1257580 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71524251ns 1257583 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71524535ns 1257588 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71524819ns 1257593 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71525104ns 1257598 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71525558ns 1257606 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71525729ns 1257609 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71526013ns 1257614 1a110850 fd5ff06f jal x0, -44 +71526297ns 1257619 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71526581ns 1257624 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71526979ns 1257631 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71527150ns 1257634 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71527604ns 1257642 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71527775ns 1257645 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71528059ns 1257650 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71528343ns 1257655 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71528627ns 1257660 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71529082ns 1257668 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71529252ns 1257671 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71529537ns 1257676 1a110850 fd5ff06f jal x0, -44 +71529821ns 1257681 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71530105ns 1257686 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71530503ns 1257693 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71530673ns 1257696 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71531128ns 1257704 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71531298ns 1257707 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71531583ns 1257712 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71531867ns 1257717 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71532151ns 1257722 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71532605ns 1257730 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71532776ns 1257733 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71533060ns 1257738 1a110850 fd5ff06f jal x0, -44 +71533344ns 1257743 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71533628ns 1257748 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71534026ns 1257755 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71534197ns 1257758 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71534651ns 1257766 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71534822ns 1257769 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71535106ns 1257774 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71535390ns 1257779 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71535674ns 1257784 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71536129ns 1257792 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71536300ns 1257795 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71536584ns 1257800 1a110850 fd5ff06f jal x0, -44 +71536868ns 1257805 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71537152ns 1257810 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71537550ns 1257817 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71537720ns 1257820 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71538175ns 1257828 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71538346ns 1257831 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71538630ns 1257836 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71538914ns 1257841 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71539198ns 1257846 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71539653ns 1257854 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71539823ns 1257857 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71540107ns 1257862 1a110850 fd5ff06f jal x0, -44 +71540391ns 1257867 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71540676ns 1257872 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71541073ns 1257879 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71541244ns 1257882 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71541699ns 1257890 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71541869ns 1257893 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71542153ns 1257898 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71542437ns 1257903 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71542722ns 1257908 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71543176ns 1257916 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71543347ns 1257919 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71543631ns 1257924 1a110850 fd5ff06f jal x0, -44 +71543915ns 1257929 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71544199ns 1257934 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71544597ns 1257941 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71544768ns 1257944 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71545222ns 1257952 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71545393ns 1257955 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71545677ns 1257960 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71545961ns 1257965 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71546245ns 1257970 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71546700ns 1257978 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71546870ns 1257981 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71547154ns 1257986 1a110850 fd5ff06f jal x0, -44 +71547439ns 1257991 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71547723ns 1257996 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71548121ns 1258003 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71548291ns 1258006 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71548746ns 1258014 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71548916ns 1258017 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71549200ns 1258022 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71549485ns 1258027 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71549769ns 1258032 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71550223ns 1258040 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71550394ns 1258043 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71550678ns 1258048 1a110850 fd5ff06f jal x0, -44 +71550962ns 1258053 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71551246ns 1258058 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71551644ns 1258065 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71551815ns 1258068 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71552269ns 1258076 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71552440ns 1258079 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71552724ns 1258084 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71553008ns 1258089 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71553292ns 1258094 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71553747ns 1258102 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71553917ns 1258105 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71554202ns 1258110 1a110850 fd5ff06f jal x0, -44 +71554486ns 1258115 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71554770ns 1258120 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71555168ns 1258127 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71555338ns 1258130 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71555793ns 1258138 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71555963ns 1258141 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71556248ns 1258146 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71556532ns 1258151 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71556816ns 1258156 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71557271ns 1258164 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71557441ns 1258167 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71557725ns 1258172 1a110850 fd5ff06f jal x0, -44 +71558009ns 1258177 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71558294ns 1258182 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71558691ns 1258189 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71558862ns 1258192 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71559317ns 1258200 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71559487ns 1258203 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71559771ns 1258208 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71560055ns 1258213 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71560339ns 1258218 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71560794ns 1258226 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71560965ns 1258229 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71561249ns 1258234 1a110850 fd5ff06f jal x0, -44 +71561533ns 1258239 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71561817ns 1258244 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71562215ns 1258251 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71562385ns 1258254 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71562840ns 1258262 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71563011ns 1258265 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71563295ns 1258270 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71563579ns 1258275 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71563863ns 1258280 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71564318ns 1258288 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71564488ns 1258291 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71564772ns 1258296 1a110850 fd5ff06f jal x0, -44 +71565057ns 1258301 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71565341ns 1258306 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71565739ns 1258313 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71565909ns 1258316 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71566364ns 1258324 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71566534ns 1258327 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71566818ns 1258332 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71567103ns 1258337 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71567387ns 1258342 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71567841ns 1258350 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71568012ns 1258353 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71568296ns 1258358 1a110850 fd5ff06f jal x0, -44 +71568580ns 1258363 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71568864ns 1258368 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71569262ns 1258375 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71569433ns 1258378 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71569887ns 1258386 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71570058ns 1258389 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71570342ns 1258394 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71570626ns 1258399 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71570910ns 1258404 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71571365ns 1258412 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71571535ns 1258415 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71571820ns 1258420 1a110850 fd5ff06f jal x0, -44 +71572104ns 1258425 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71572388ns 1258430 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71572786ns 1258437 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71572956ns 1258440 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71573411ns 1258448 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71573581ns 1258451 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71573866ns 1258456 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71574150ns 1258461 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71574434ns 1258466 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71574888ns 1258474 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71575059ns 1258477 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71575343ns 1258482 1a110850 fd5ff06f jal x0, -44 +71575627ns 1258487 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71575911ns 1258492 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71576309ns 1258499 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71576480ns 1258502 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71576934ns 1258510 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71577105ns 1258513 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71577389ns 1258518 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71577673ns 1258523 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71577957ns 1258528 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71578412ns 1258536 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71578583ns 1258539 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71578867ns 1258544 1a110850 fd5ff06f jal x0, -44 +71579151ns 1258549 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71579435ns 1258554 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71579833ns 1258561 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71580003ns 1258564 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71580458ns 1258572 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71580629ns 1258575 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71580913ns 1258580 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71581197ns 1258585 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71581481ns 1258590 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71581936ns 1258598 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71582106ns 1258601 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71582390ns 1258606 1a110850 fd5ff06f jal x0, -44 +71582674ns 1258611 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71582959ns 1258616 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71583356ns 1258623 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71583527ns 1258626 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71583982ns 1258634 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71584152ns 1258637 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71584436ns 1258642 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71584720ns 1258647 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71585005ns 1258652 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71585459ns 1258660 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71585630ns 1258663 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71585914ns 1258668 1a110850 fd5ff06f jal x0, -44 +71586198ns 1258673 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71586482ns 1258678 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71586880ns 1258685 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71587051ns 1258688 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71587505ns 1258696 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71587676ns 1258699 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71587960ns 1258704 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71588244ns 1258709 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71588528ns 1258714 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71588983ns 1258722 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71589153ns 1258725 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71589437ns 1258730 1a110850 fd5ff06f jal x0, -44 +71589722ns 1258735 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71590006ns 1258740 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71590404ns 1258747 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71590574ns 1258750 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71591029ns 1258758 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71591199ns 1258761 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71591483ns 1258766 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71591768ns 1258771 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71592052ns 1258776 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71592506ns 1258784 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71592677ns 1258787 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71592961ns 1258792 1a110850 fd5ff06f jal x0, -44 +71593245ns 1258797 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71593529ns 1258802 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71593927ns 1258809 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71594098ns 1258812 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71594552ns 1258820 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71594723ns 1258823 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71595007ns 1258828 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71595291ns 1258833 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71595575ns 1258838 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71596030ns 1258846 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71596200ns 1258849 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71596485ns 1258854 1a110850 fd5ff06f jal x0, -44 +71596769ns 1258859 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71597053ns 1258864 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71597451ns 1258871 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71597621ns 1258874 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71598076ns 1258882 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71598246ns 1258885 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71598531ns 1258890 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71598815ns 1258895 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71599099ns 1258900 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71599554ns 1258908 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71599724ns 1258911 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71600008ns 1258916 1a110850 fd5ff06f jal x0, -44 +71600292ns 1258921 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71600577ns 1258926 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71600974ns 1258933 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71601145ns 1258936 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71601600ns 1258944 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71601770ns 1258947 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71602054ns 1258952 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71602338ns 1258957 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71602623ns 1258962 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71603077ns 1258970 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71603248ns 1258973 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71603532ns 1258978 1a110850 fd5ff06f jal x0, -44 +71603816ns 1258983 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71604100ns 1258988 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71604498ns 1258995 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71604668ns 1258998 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71605123ns 1259006 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71605294ns 1259009 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71605578ns 1259014 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71605862ns 1259019 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71606146ns 1259024 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71606601ns 1259032 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71606771ns 1259035 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71607055ns 1259040 1a110850 fd5ff06f jal x0, -44 +71607340ns 1259045 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71607624ns 1259050 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71608022ns 1259057 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71608192ns 1259060 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71608647ns 1259068 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71608817ns 1259071 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71609101ns 1259076 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71609386ns 1259081 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71609670ns 1259086 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71610124ns 1259094 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71610295ns 1259097 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71610579ns 1259102 1a110850 fd5ff06f jal x0, -44 +71610863ns 1259107 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71611147ns 1259112 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71611545ns 1259119 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71611716ns 1259122 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71612170ns 1259130 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71612341ns 1259133 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71612625ns 1259138 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71612909ns 1259143 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71613193ns 1259148 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71613648ns 1259156 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71613818ns 1259159 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71614103ns 1259164 1a110850 fd5ff06f jal x0, -44 +71614387ns 1259169 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71614671ns 1259174 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71615069ns 1259181 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71615239ns 1259184 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71615694ns 1259192 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71615864ns 1259195 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71616149ns 1259200 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71616433ns 1259205 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71616717ns 1259210 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71617171ns 1259218 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71617342ns 1259221 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71617626ns 1259226 1a110850 fd5ff06f jal x0, -44 +71617910ns 1259231 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71618194ns 1259236 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71618592ns 1259243 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71618763ns 1259246 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71619217ns 1259254 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71619388ns 1259257 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71619672ns 1259262 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71619956ns 1259267 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71620240ns 1259272 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71620695ns 1259280 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71620866ns 1259283 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71621150ns 1259288 1a110850 fd5ff06f jal x0, -44 +71621434ns 1259293 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71621718ns 1259298 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71622116ns 1259305 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71622286ns 1259308 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71622741ns 1259316 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71622912ns 1259319 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71623196ns 1259324 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71623480ns 1259329 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71623764ns 1259334 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71624219ns 1259342 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71624389ns 1259345 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71624673ns 1259350 1a110850 fd5ff06f jal x0, -44 +71624957ns 1259355 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71625242ns 1259360 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71625639ns 1259367 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71625810ns 1259370 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71626265ns 1259378 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71626435ns 1259381 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71626719ns 1259386 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71627003ns 1259391 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71627288ns 1259396 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71627742ns 1259404 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71627913ns 1259407 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71628197ns 1259412 1a110850 fd5ff06f jal x0, -44 +71628481ns 1259417 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71628765ns 1259422 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71629163ns 1259429 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71629334ns 1259432 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71629788ns 1259440 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71629959ns 1259443 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71630243ns 1259448 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71630527ns 1259453 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71630811ns 1259458 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71631266ns 1259466 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71631436ns 1259469 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71631720ns 1259474 1a110850 fd5ff06f jal x0, -44 +71632005ns 1259479 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71632289ns 1259484 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71632687ns 1259491 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71632857ns 1259494 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71633312ns 1259502 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71633482ns 1259505 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71633766ns 1259510 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71634051ns 1259515 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71634335ns 1259520 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71634789ns 1259528 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71634960ns 1259531 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71635244ns 1259536 1a110850 fd5ff06f jal x0, -44 +71635528ns 1259541 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71635812ns 1259546 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71636210ns 1259553 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71636381ns 1259556 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71636835ns 1259564 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71637006ns 1259567 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71637290ns 1259572 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71637574ns 1259577 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71637858ns 1259582 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71638313ns 1259590 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71638483ns 1259593 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71638768ns 1259598 1a110850 fd5ff06f jal x0, -44 +71639052ns 1259603 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71639336ns 1259608 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71639734ns 1259615 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71639904ns 1259618 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71640359ns 1259626 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71640529ns 1259629 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71640814ns 1259634 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71641098ns 1259639 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71641382ns 1259644 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71641837ns 1259652 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71642007ns 1259655 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71642291ns 1259660 1a110850 fd5ff06f jal x0, -44 +71642575ns 1259665 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71642860ns 1259670 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71643257ns 1259677 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71643428ns 1259680 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71643883ns 1259688 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71644053ns 1259691 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71644337ns 1259696 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71644621ns 1259701 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71644906ns 1259706 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71645360ns 1259714 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71645531ns 1259717 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71645815ns 1259722 1a110850 fd5ff06f jal x0, -44 +71646099ns 1259727 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71646383ns 1259732 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71646781ns 1259739 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71646951ns 1259742 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71647406ns 1259750 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71647577ns 1259753 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71647861ns 1259758 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71648145ns 1259763 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71648429ns 1259768 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71648884ns 1259776 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71649054ns 1259779 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71649338ns 1259784 1a110850 fd5ff06f jal x0, -44 +71649623ns 1259789 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71649907ns 1259794 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71650305ns 1259801 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71650475ns 1259804 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71650930ns 1259812 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71651100ns 1259815 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71651384ns 1259820 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71651669ns 1259825 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71651953ns 1259830 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71652407ns 1259838 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71652578ns 1259841 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71652862ns 1259846 1a110850 fd5ff06f jal x0, -44 +71653146ns 1259851 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71653430ns 1259856 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71653828ns 1259863 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71653999ns 1259866 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71654453ns 1259874 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71654624ns 1259877 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71654908ns 1259882 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71655192ns 1259887 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71655476ns 1259892 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71655931ns 1259900 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71656101ns 1259903 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71656386ns 1259908 1a110850 fd5ff06f jal x0, -44 +71656670ns 1259913 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71656954ns 1259918 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71657352ns 1259925 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71657522ns 1259928 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71657977ns 1259936 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71658147ns 1259939 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71658432ns 1259944 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71658716ns 1259949 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71659000ns 1259954 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71659455ns 1259962 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71659625ns 1259965 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71659909ns 1259970 1a110850 fd5ff06f jal x0, -44 +71660193ns 1259975 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71660477ns 1259980 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71660875ns 1259987 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71661046ns 1259990 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71661500ns 1259998 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71661671ns 1260001 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71661955ns 1260006 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71662239ns 1260011 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71662523ns 1260016 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71662978ns 1260024 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71663149ns 1260027 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71663433ns 1260032 1a110850 fd5ff06f jal x0, -44 +71663717ns 1260037 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71664001ns 1260042 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71664399ns 1260049 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71664569ns 1260052 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71665024ns 1260060 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71665195ns 1260063 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71665479ns 1260068 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71665763ns 1260073 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71666047ns 1260078 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71666502ns 1260086 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71666672ns 1260089 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71666956ns 1260094 1a110850 fd5ff06f jal x0, -44 +71667240ns 1260099 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71667525ns 1260104 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71667922ns 1260111 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71668093ns 1260114 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71668548ns 1260122 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71668718ns 1260125 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71669002ns 1260130 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71669286ns 1260135 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71669571ns 1260140 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71670025ns 1260148 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71670196ns 1260151 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71670480ns 1260156 1a110850 fd5ff06f jal x0, -44 +71670764ns 1260161 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71671048ns 1260166 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71671446ns 1260173 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71671617ns 1260176 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71672071ns 1260184 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71672242ns 1260187 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71672526ns 1260192 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71672810ns 1260197 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71673094ns 1260202 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71673549ns 1260210 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71673719ns 1260213 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71674003ns 1260218 1a110850 fd5ff06f jal x0, -44 +71674288ns 1260223 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71674572ns 1260228 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71674970ns 1260235 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71675140ns 1260238 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71675595ns 1260246 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71675765ns 1260249 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71676049ns 1260254 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71676334ns 1260259 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71676618ns 1260264 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71677072ns 1260272 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71677243ns 1260275 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71677527ns 1260280 1a110850 fd5ff06f jal x0, -44 +71677811ns 1260285 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71678095ns 1260290 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71678493ns 1260297 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71678664ns 1260300 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71679118ns 1260308 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71679289ns 1260311 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71679573ns 1260316 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71679857ns 1260321 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71680141ns 1260326 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71680596ns 1260334 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71680767ns 1260337 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71681051ns 1260342 1a110850 fd5ff06f jal x0, -44 +71681335ns 1260347 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71681619ns 1260352 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71682017ns 1260359 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71682187ns 1260362 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71682642ns 1260370 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71682812ns 1260373 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71683097ns 1260378 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71683381ns 1260383 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71683665ns 1260388 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71684120ns 1260396 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71684290ns 1260399 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71684574ns 1260404 1a110850 fd5ff06f jal x0, -44 +71684858ns 1260409 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71685143ns 1260414 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71685540ns 1260421 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71685711ns 1260424 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71686166ns 1260432 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71686336ns 1260435 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71686620ns 1260440 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71686904ns 1260445 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71687189ns 1260450 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71687643ns 1260458 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71687814ns 1260461 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71688098ns 1260466 1a110850 fd5ff06f jal x0, -44 +71688382ns 1260471 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71688666ns 1260476 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71689064ns 1260483 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71689234ns 1260486 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71689689ns 1260494 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71689860ns 1260497 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71690144ns 1260502 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71690428ns 1260507 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71690712ns 1260512 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71691167ns 1260520 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71691337ns 1260523 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71691621ns 1260528 1a110850 fd5ff06f jal x0, -44 +71691906ns 1260533 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71692190ns 1260538 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71692588ns 1260545 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71692758ns 1260548 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71693213ns 1260556 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71693383ns 1260559 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71693667ns 1260564 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71693952ns 1260569 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71694236ns 1260574 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71694690ns 1260582 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71694861ns 1260585 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71695145ns 1260590 1a110850 fd5ff06f jal x0, -44 +71695429ns 1260595 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71695713ns 1260600 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71696111ns 1260607 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71696282ns 1260610 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71696736ns 1260618 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71696907ns 1260621 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71697191ns 1260626 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71697475ns 1260631 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71697759ns 1260636 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71698214ns 1260644 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71698384ns 1260647 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71698669ns 1260652 1a110850 fd5ff06f jal x0, -44 +71698953ns 1260657 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71699237ns 1260662 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71699635ns 1260669 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71699805ns 1260672 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71700260ns 1260680 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71700430ns 1260683 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71700715ns 1260688 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71700999ns 1260693 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71701283ns 1260698 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71701738ns 1260706 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71701908ns 1260709 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71702192ns 1260714 1a110850 fd5ff06f jal x0, -44 +71702476ns 1260719 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71702760ns 1260724 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71703158ns 1260731 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71703329ns 1260734 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71703783ns 1260742 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71703954ns 1260745 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71704238ns 1260750 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71704522ns 1260755 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71704806ns 1260760 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71705261ns 1260768 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71705432ns 1260771 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71705716ns 1260776 1a110850 fd5ff06f jal x0, -44 +71706000ns 1260781 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71706284ns 1260786 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71706682ns 1260793 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71706852ns 1260796 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71707307ns 1260804 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71707478ns 1260807 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71707762ns 1260812 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71708046ns 1260817 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71708330ns 1260822 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71708785ns 1260830 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71708955ns 1260833 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71709239ns 1260838 1a110850 fd5ff06f jal x0, -44 +71709523ns 1260843 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71709808ns 1260848 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71710205ns 1260855 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71710376ns 1260858 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71710831ns 1260866 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71711001ns 1260869 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71711285ns 1260874 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71711569ns 1260879 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71711854ns 1260884 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71712308ns 1260892 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71712479ns 1260895 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71712763ns 1260900 1a110850 fd5ff06f jal x0, -44 +71713047ns 1260905 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71713331ns 1260910 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71713729ns 1260917 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71713900ns 1260920 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71714354ns 1260928 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71714525ns 1260931 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71714809ns 1260936 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71715093ns 1260941 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71715377ns 1260946 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71715832ns 1260954 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71716002ns 1260957 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71716287ns 1260962 1a110850 fd5ff06f jal x0, -44 +71716571ns 1260967 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71716855ns 1260972 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71717253ns 1260979 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71717423ns 1260982 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71717878ns 1260990 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71718048ns 1260993 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71718332ns 1260998 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71718617ns 1261003 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71718901ns 1261008 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71719355ns 1261016 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71719526ns 1261019 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71719810ns 1261024 1a110850 fd5ff06f jal x0, -44 +71720094ns 1261029 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71720378ns 1261034 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71720776ns 1261041 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71720947ns 1261044 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71721401ns 1261052 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71721572ns 1261055 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71721856ns 1261060 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71722140ns 1261065 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71722424ns 1261070 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71722879ns 1261078 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71723050ns 1261081 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71723334ns 1261086 1a110850 fd5ff06f jal x0, -44 +71723618ns 1261091 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71723902ns 1261096 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71724300ns 1261103 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71724470ns 1261106 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71724925ns 1261114 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71725095ns 1261117 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71725380ns 1261122 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71725664ns 1261127 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71725948ns 1261132 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71726403ns 1261140 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71726573ns 1261143 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71726857ns 1261148 1a110850 fd5ff06f jal x0, -44 +71727141ns 1261153 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71727426ns 1261158 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71727823ns 1261165 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71727994ns 1261168 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71728449ns 1261176 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71728619ns 1261179 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71728903ns 1261184 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71729187ns 1261189 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71729472ns 1261194 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71729926ns 1261202 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71730097ns 1261205 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71730381ns 1261210 1a110850 fd5ff06f jal x0, -44 +71730665ns 1261215 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71730949ns 1261220 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71731347ns 1261227 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71731517ns 1261230 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71731972ns 1261238 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71732143ns 1261241 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71732427ns 1261246 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71732711ns 1261251 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71732995ns 1261256 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71733450ns 1261264 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71733620ns 1261267 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71733904ns 1261272 1a110850 fd5ff06f jal x0, -44 +71734189ns 1261277 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71734473ns 1261282 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71734871ns 1261289 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71735041ns 1261292 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71735496ns 1261300 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71735666ns 1261303 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71735950ns 1261308 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71736235ns 1261313 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71736519ns 1261318 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71736973ns 1261326 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71737144ns 1261329 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71737428ns 1261334 1a110850 fd5ff06f jal x0, -44 +71737712ns 1261339 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71737996ns 1261344 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71738394ns 1261351 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71738565ns 1261354 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71739019ns 1261362 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71739190ns 1261365 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71739474ns 1261370 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71739758ns 1261375 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71740042ns 1261380 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71740497ns 1261388 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71740667ns 1261391 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71740952ns 1261396 1a110850 fd5ff06f jal x0, -44 +71741236ns 1261401 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71741520ns 1261406 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71741918ns 1261413 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71742088ns 1261416 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71742543ns 1261424 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71742713ns 1261427 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71742998ns 1261432 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71743282ns 1261437 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71743566ns 1261442 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71744021ns 1261450 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71744191ns 1261453 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71744475ns 1261458 1a110850 fd5ff06f jal x0, -44 +71744759ns 1261463 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71745043ns 1261468 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71745441ns 1261475 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71745612ns 1261478 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71746066ns 1261486 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71746237ns 1261489 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71746521ns 1261494 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71746805ns 1261499 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71747089ns 1261504 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71747544ns 1261512 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71747715ns 1261515 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71747999ns 1261520 1a110850 fd5ff06f jal x0, -44 +71748283ns 1261525 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71748567ns 1261530 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71748965ns 1261537 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71749135ns 1261540 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71749590ns 1261548 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71749761ns 1261551 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71750045ns 1261556 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71750329ns 1261561 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71750613ns 1261566 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71751068ns 1261574 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71751238ns 1261577 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71751522ns 1261582 1a110850 fd5ff06f jal x0, -44 +71751807ns 1261587 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71752091ns 1261592 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71752488ns 1261599 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71752659ns 1261602 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71753114ns 1261610 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71753284ns 1261613 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71753568ns 1261618 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71753852ns 1261623 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71754137ns 1261628 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71754591ns 1261636 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71754762ns 1261639 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71755046ns 1261644 1a110850 fd5ff06f jal x0, -44 +71755330ns 1261649 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71755614ns 1261654 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71756012ns 1261661 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71756183ns 1261664 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71756637ns 1261672 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71756808ns 1261675 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71757092ns 1261680 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71757376ns 1261685 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71757660ns 1261690 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71758115ns 1261698 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71758285ns 1261701 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71758570ns 1261706 1a110850 fd5ff06f jal x0, -44 +71758854ns 1261711 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71759138ns 1261716 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71759536ns 1261723 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71759706ns 1261726 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71760161ns 1261734 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71760331ns 1261737 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71760615ns 1261742 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71760900ns 1261747 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71761184ns 1261752 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71761638ns 1261760 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71761809ns 1261763 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71762093ns 1261768 1a110850 fd5ff06f jal x0, -44 +71762377ns 1261773 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71762661ns 1261778 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71763059ns 1261785 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71763230ns 1261788 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71763684ns 1261796 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71763855ns 1261799 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71764139ns 1261804 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71764423ns 1261809 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71764707ns 1261814 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71765162ns 1261822 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71765333ns 1261825 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71765617ns 1261830 1a110850 fd5ff06f jal x0, -44 +71765901ns 1261835 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71766185ns 1261840 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71766583ns 1261847 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71766753ns 1261850 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71767208ns 1261858 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71767378ns 1261861 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71767663ns 1261866 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71767947ns 1261871 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71768231ns 1261876 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71768686ns 1261884 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71768856ns 1261887 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71769140ns 1261892 1a110850 fd5ff06f jal x0, -44 +71769424ns 1261897 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71769709ns 1261902 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71770106ns 1261909 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71770277ns 1261912 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71770732ns 1261920 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71770902ns 1261923 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71771186ns 1261928 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71771470ns 1261933 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71771755ns 1261938 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71772209ns 1261946 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71772380ns 1261949 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71772664ns 1261954 1a110850 fd5ff06f jal x0, -44 +71772948ns 1261959 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71773232ns 1261964 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71773630ns 1261971 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71773800ns 1261974 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71774255ns 1261982 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71774426ns 1261985 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71774710ns 1261990 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71774994ns 1261995 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71775278ns 1262000 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71775733ns 1262008 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71775903ns 1262011 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71776187ns 1262016 1a110850 fd5ff06f jal x0, -44 +71776472ns 1262021 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71776756ns 1262026 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71777154ns 1262033 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71777324ns 1262036 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71777779ns 1262044 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71777949ns 1262047 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71778233ns 1262052 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71778518ns 1262057 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71778802ns 1262062 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71779256ns 1262070 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71779427ns 1262073 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71779711ns 1262078 1a110850 fd5ff06f jal x0, -44 +71779995ns 1262083 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71780279ns 1262088 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71780677ns 1262095 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71780848ns 1262098 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71781302ns 1262106 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71781473ns 1262109 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71781757ns 1262114 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71782041ns 1262119 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71782325ns 1262124 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71782780ns 1262132 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71782950ns 1262135 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71783235ns 1262140 1a110850 fd5ff06f jal x0, -44 +71783519ns 1262145 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71783803ns 1262150 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71784201ns 1262157 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71784371ns 1262160 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71784826ns 1262168 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71784996ns 1262171 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71785281ns 1262176 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71785565ns 1262181 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71785849ns 1262186 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71786304ns 1262194 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71786474ns 1262197 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71786758ns 1262202 1a110850 fd5ff06f jal x0, -44 +71787042ns 1262207 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71787327ns 1262212 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71787724ns 1262219 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71787895ns 1262222 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71788349ns 1262230 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71788520ns 1262233 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71788804ns 1262238 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71789088ns 1262243 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71789372ns 1262248 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71789827ns 1262256 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71789998ns 1262259 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71790282ns 1262264 1a110850 fd5ff06f jal x0, -44 +71790566ns 1262269 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71790850ns 1262274 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71791248ns 1262281 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71791418ns 1262284 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71791873ns 1262292 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71792044ns 1262295 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71792328ns 1262300 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71792612ns 1262305 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71792896ns 1262310 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71793351ns 1262318 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71793521ns 1262321 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71793805ns 1262326 1a110850 fd5ff06f jal x0, -44 +71794090ns 1262331 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71794374ns 1262336 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71794771ns 1262343 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71794942ns 1262346 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71795397ns 1262354 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71795567ns 1262357 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71795851ns 1262362 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71796135ns 1262367 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71796420ns 1262372 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71796874ns 1262380 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71797045ns 1262383 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71797329ns 1262388 1a110850 fd5ff06f jal x0, -44 +71797613ns 1262393 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71797897ns 1262398 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71798295ns 1262405 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71798466ns 1262408 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71798920ns 1262416 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71799091ns 1262419 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71799375ns 1262424 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71799659ns 1262429 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71799943ns 1262434 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71800398ns 1262442 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71800568ns 1262445 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71800853ns 1262450 1a110850 fd5ff06f jal x0, -44 +71801137ns 1262455 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71801421ns 1262460 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71801819ns 1262467 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71801989ns 1262470 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71802444ns 1262478 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71802614ns 1262481 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71802898ns 1262486 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71803183ns 1262491 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71803467ns 1262496 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71803921ns 1262504 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71804092ns 1262507 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71804376ns 1262512 1a110850 fd5ff06f jal x0, -44 +71804660ns 1262517 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71804944ns 1262522 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71805342ns 1262529 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71805513ns 1262532 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71805967ns 1262540 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71806138ns 1262543 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71806422ns 1262548 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71806706ns 1262553 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71806990ns 1262558 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71807445ns 1262566 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71807616ns 1262569 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71807900ns 1262574 1a110850 fd5ff06f jal x0, -44 +71808184ns 1262579 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71808468ns 1262584 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71808866ns 1262591 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71809036ns 1262594 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71809491ns 1262602 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71809661ns 1262605 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71809946ns 1262610 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71810230ns 1262615 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71810514ns 1262620 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71810969ns 1262628 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71811139ns 1262631 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71811423ns 1262636 1a110850 fd5ff06f jal x0, -44 +71811707ns 1262641 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71811992ns 1262646 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71812389ns 1262653 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71812560ns 1262656 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71813015ns 1262664 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71813185ns 1262667 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71813469ns 1262672 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71813753ns 1262677 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71814038ns 1262682 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71814492ns 1262690 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71814663ns 1262693 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71814947ns 1262698 1a110850 fd5ff06f jal x0, -44 +71815231ns 1262703 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71815515ns 1262708 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71815913ns 1262715 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71816083ns 1262718 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71816538ns 1262726 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71816709ns 1262729 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71816993ns 1262734 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71817277ns 1262739 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71817561ns 1262744 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71818016ns 1262752 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71818186ns 1262755 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71818470ns 1262760 1a110850 fd5ff06f jal x0, -44 +71818755ns 1262765 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71819039ns 1262770 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71819437ns 1262777 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71819607ns 1262780 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71820062ns 1262788 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71820232ns 1262791 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71820516ns 1262796 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71820801ns 1262801 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71821085ns 1262806 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71821539ns 1262814 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71821710ns 1262817 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71821994ns 1262822 1a110850 fd5ff06f jal x0, -44 +71822278ns 1262827 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71822562ns 1262832 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71822960ns 1262839 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71823131ns 1262842 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71823585ns 1262850 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71823756ns 1262853 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71824040ns 1262858 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71824324ns 1262863 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71824608ns 1262868 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71825063ns 1262876 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71825233ns 1262879 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71825518ns 1262884 1a110850 fd5ff06f jal x0, -44 +71825802ns 1262889 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71826086ns 1262894 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71826484ns 1262901 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71826654ns 1262904 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71827109ns 1262912 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71827279ns 1262915 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71827564ns 1262920 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71827848ns 1262925 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71828132ns 1262930 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71828587ns 1262938 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71828757ns 1262941 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71829041ns 1262946 1a110850 fd5ff06f jal x0, -44 +71829325ns 1262951 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71829610ns 1262956 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71830007ns 1262963 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71830178ns 1262966 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71830632ns 1262974 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71830803ns 1262977 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71831087ns 1262982 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71831371ns 1262987 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71831655ns 1262992 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71832110ns 1263000 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71832281ns 1263003 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71832565ns 1263008 1a110850 fd5ff06f jal x0, -44 +71832849ns 1263013 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71833133ns 1263018 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71833531ns 1263025 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71833701ns 1263028 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71834156ns 1263036 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71834327ns 1263039 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71834611ns 1263044 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71834895ns 1263049 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71835179ns 1263054 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71835634ns 1263062 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71835804ns 1263065 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71836088ns 1263070 1a110850 fd5ff06f jal x0, -44 +71836373ns 1263075 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71836657ns 1263080 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71837055ns 1263087 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71837225ns 1263090 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71837680ns 1263098 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71837850ns 1263101 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71838134ns 1263106 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71838418ns 1263111 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71838703ns 1263116 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71839157ns 1263124 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71839328ns 1263127 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71839612ns 1263132 1a110850 fd5ff06f jal x0, -44 +71839896ns 1263137 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71840180ns 1263142 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71840578ns 1263149 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71840749ns 1263152 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71841203ns 1263160 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71841374ns 1263163 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71841658ns 1263168 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71841942ns 1263173 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71842226ns 1263178 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71842681ns 1263186 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71842851ns 1263189 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71843136ns 1263194 1a110850 fd5ff06f jal x0, -44 +71843420ns 1263199 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71843704ns 1263204 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71844102ns 1263211 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71844272ns 1263214 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71844727ns 1263222 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71844897ns 1263225 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71845181ns 1263230 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71845466ns 1263235 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71845750ns 1263240 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71846204ns 1263248 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71846375ns 1263251 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71846659ns 1263256 1a110850 fd5ff06f jal x0, -44 +71846943ns 1263261 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71847227ns 1263266 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71847625ns 1263273 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71847796ns 1263276 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71848250ns 1263284 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71848421ns 1263287 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71848705ns 1263292 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71848989ns 1263297 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71849273ns 1263302 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71849728ns 1263310 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71849899ns 1263313 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71850183ns 1263318 1a110850 fd5ff06f jal x0, -44 +71850467ns 1263323 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71850751ns 1263328 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71851149ns 1263335 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71851319ns 1263338 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71851774ns 1263346 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71851944ns 1263349 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71852229ns 1263354 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71852513ns 1263359 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71852797ns 1263364 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71853252ns 1263372 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71853422ns 1263375 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71853706ns 1263380 1a110850 fd5ff06f jal x0, -44 +71853990ns 1263385 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71854275ns 1263390 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71854672ns 1263397 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71854843ns 1263400 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71855298ns 1263408 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71855468ns 1263411 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71855752ns 1263416 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71856036ns 1263421 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71856321ns 1263426 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71856775ns 1263434 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71856946ns 1263437 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71857230ns 1263442 1a110850 fd5ff06f jal x0, -44 +71857514ns 1263447 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71857798ns 1263452 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71858196ns 1263459 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71858367ns 1263462 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71858821ns 1263470 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71858992ns 1263473 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71859276ns 1263478 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71859560ns 1263483 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71859844ns 1263488 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71860299ns 1263496 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71860469ns 1263499 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71860753ns 1263504 1a110850 fd5ff06f jal x0, -44 +71861038ns 1263509 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71861322ns 1263514 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71861720ns 1263521 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71861890ns 1263524 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71862345ns 1263532 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71862515ns 1263535 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71862799ns 1263540 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71863084ns 1263545 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71863368ns 1263550 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71863822ns 1263558 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71863993ns 1263561 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71864277ns 1263566 1a110850 fd5ff06f jal x0, -44 +71864561ns 1263571 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71864845ns 1263576 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71865243ns 1263583 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71865414ns 1263586 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71865868ns 1263594 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71866039ns 1263597 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71866323ns 1263602 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71866607ns 1263607 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71866891ns 1263612 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71867346ns 1263620 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71867516ns 1263623 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71867801ns 1263628 1a110850 fd5ff06f jal x0, -44 +71868085ns 1263633 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71868369ns 1263638 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71868767ns 1263645 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71868937ns 1263648 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71869392ns 1263656 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71869562ns 1263659 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71869847ns 1263664 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71870131ns 1263669 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71870415ns 1263674 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71870870ns 1263682 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71871040ns 1263685 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71871324ns 1263690 1a110850 fd5ff06f jal x0, -44 +71871608ns 1263695 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71871893ns 1263700 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71872290ns 1263707 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71872461ns 1263710 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71872915ns 1263718 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71873086ns 1263721 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71873370ns 1263726 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71873654ns 1263731 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71873938ns 1263736 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71874393ns 1263744 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71874564ns 1263747 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71874848ns 1263752 1a110850 fd5ff06f jal x0, -44 +71875132ns 1263757 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71875416ns 1263762 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71875814ns 1263769 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71875984ns 1263772 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71876439ns 1263780 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71876610ns 1263783 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71876894ns 1263788 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71877178ns 1263793 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71877462ns 1263798 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71877917ns 1263806 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71878087ns 1263809 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71878371ns 1263814 1a110850 fd5ff06f jal x0, -44 +71878656ns 1263819 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71878940ns 1263824 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71879338ns 1263831 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71879508ns 1263834 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71879963ns 1263842 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71880133ns 1263845 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71880417ns 1263850 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71880701ns 1263855 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71880986ns 1263860 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71881440ns 1263868 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71881611ns 1263871 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71881895ns 1263876 1a110850 fd5ff06f jal x0, -44 +71882179ns 1263881 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71882463ns 1263886 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71882861ns 1263893 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71883032ns 1263896 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71883486ns 1263904 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71883657ns 1263907 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71883941ns 1263912 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71884225ns 1263917 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71884509ns 1263922 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71884964ns 1263930 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71885134ns 1263933 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71885419ns 1263938 1a110850 fd5ff06f jal x0, -44 +71885703ns 1263943 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71885987ns 1263948 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71886385ns 1263955 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71886555ns 1263958 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71887010ns 1263966 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71887180ns 1263969 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71887464ns 1263974 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71887749ns 1263979 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71888033ns 1263984 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71888487ns 1263992 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71888658ns 1263995 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71888942ns 1264000 1a110850 fd5ff06f jal x0, -44 +71889226ns 1264005 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71889510ns 1264010 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71889908ns 1264017 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71890079ns 1264020 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71890533ns 1264028 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71890704ns 1264031 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71890988ns 1264036 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71891272ns 1264041 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71891556ns 1264046 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71892011ns 1264054 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71892182ns 1264057 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71892466ns 1264062 1a110850 fd5ff06f jal x0, -44 +71892750ns 1264067 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71893034ns 1264072 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71893432ns 1264079 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71893602ns 1264082 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71894057ns 1264090 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71894227ns 1264093 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71894512ns 1264098 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71894796ns 1264103 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71895080ns 1264108 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71895535ns 1264116 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71895705ns 1264119 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71895989ns 1264124 1a110850 fd5ff06f jal x0, -44 +71896273ns 1264129 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71896558ns 1264134 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71896955ns 1264141 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71897126ns 1264144 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71897581ns 1264152 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71897751ns 1264155 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71898035ns 1264160 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71898319ns 1264165 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71898604ns 1264170 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71899058ns 1264178 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71899229ns 1264181 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71899513ns 1264186 1a110850 fd5ff06f jal x0, -44 +71899797ns 1264191 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71900081ns 1264196 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71900479ns 1264203 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71900650ns 1264206 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71901104ns 1264214 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71901275ns 1264217 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71901559ns 1264222 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71901843ns 1264227 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71902127ns 1264232 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71902582ns 1264240 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71902752ns 1264243 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71903036ns 1264248 1a110850 fd5ff06f jal x0, -44 +71903321ns 1264253 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71903605ns 1264258 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71904003ns 1264265 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71904173ns 1264268 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71904628ns 1264276 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71904798ns 1264279 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71905082ns 1264284 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71905367ns 1264289 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71905651ns 1264294 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71906105ns 1264302 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71906276ns 1264305 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71906560ns 1264310 1a110850 fd5ff06f jal x0, -44 +71906844ns 1264315 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71907128ns 1264320 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71907526ns 1264327 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71907697ns 1264330 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71908151ns 1264338 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71908322ns 1264341 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71908606ns 1264346 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71908890ns 1264351 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71909174ns 1264356 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71909629ns 1264364 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71909799ns 1264367 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71910084ns 1264372 1a110850 fd5ff06f jal x0, -44 +71910368ns 1264377 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71910652ns 1264382 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71911050ns 1264389 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71911220ns 1264392 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71911675ns 1264400 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71911845ns 1264403 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71912130ns 1264408 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71912414ns 1264413 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71912698ns 1264418 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71913153ns 1264426 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71913323ns 1264429 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71913607ns 1264434 1a110850 fd5ff06f jal x0, -44 +71913891ns 1264439 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71914176ns 1264444 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71914573ns 1264451 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71914744ns 1264454 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71915199ns 1264462 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71915369ns 1264465 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71915653ns 1264470 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71915937ns 1264475 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71916221ns 1264480 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71916676ns 1264488 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71916847ns 1264491 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71917131ns 1264496 1a110850 fd5ff06f jal x0, -44 +71917415ns 1264501 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71917699ns 1264506 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71918097ns 1264513 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71918267ns 1264516 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71918722ns 1264524 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71918893ns 1264527 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71919177ns 1264532 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71919461ns 1264537 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71919745ns 1264542 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71920200ns 1264550 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71920370ns 1264553 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71920654ns 1264558 1a110850 fd5ff06f jal x0, -44 +71920939ns 1264563 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71921223ns 1264568 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71921621ns 1264575 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71921791ns 1264578 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71922246ns 1264586 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71922416ns 1264589 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71922700ns 1264594 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71922984ns 1264599 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71923269ns 1264604 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71923723ns 1264612 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71923894ns 1264615 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71924178ns 1264620 1a110850 fd5ff06f jal x0, -44 +71924462ns 1264625 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71924746ns 1264630 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71925144ns 1264637 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71925315ns 1264640 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71925769ns 1264648 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71925940ns 1264651 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71926224ns 1264656 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71926508ns 1264661 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71926792ns 1264666 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71927247ns 1264674 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71927417ns 1264677 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71927702ns 1264682 1a110850 fd5ff06f jal x0, -44 +71927986ns 1264687 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71928270ns 1264692 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71928668ns 1264699 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71928838ns 1264702 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71929293ns 1264710 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71929463ns 1264713 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71929747ns 1264718 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71930032ns 1264723 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71930316ns 1264728 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71930770ns 1264736 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71930941ns 1264739 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71931225ns 1264744 1a110850 fd5ff06f jal x0, -44 +71931509ns 1264749 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71931793ns 1264754 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71932191ns 1264761 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71932362ns 1264764 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71932816ns 1264772 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71932987ns 1264775 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71933271ns 1264780 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71933555ns 1264785 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71933839ns 1264790 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71934294ns 1264798 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71934465ns 1264801 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71934749ns 1264806 1a110850 fd5ff06f jal x0, -44 +71935033ns 1264811 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71935317ns 1264816 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71935715ns 1264823 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71935885ns 1264826 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71936340ns 1264834 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71936511ns 1264837 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71936795ns 1264842 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71937079ns 1264847 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71937363ns 1264852 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71937818ns 1264860 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71937988ns 1264863 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71938272ns 1264868 1a110850 fd5ff06f jal x0, -44 +71938556ns 1264873 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71938841ns 1264878 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71939238ns 1264885 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71939409ns 1264888 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71939864ns 1264896 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71940034ns 1264899 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71940318ns 1264904 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71940602ns 1264909 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71940887ns 1264914 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71941341ns 1264922 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71941512ns 1264925 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71941796ns 1264930 1a110850 fd5ff06f jal x0, -44 +71942080ns 1264935 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71942364ns 1264940 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71942762ns 1264947 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71942933ns 1264950 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71943387ns 1264958 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71943558ns 1264961 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71943842ns 1264966 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71944126ns 1264971 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71944410ns 1264976 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71944865ns 1264984 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71945035ns 1264987 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71945319ns 1264992 1a110850 fd5ff06f jal x0, -44 +71945604ns 1264997 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71945888ns 1265002 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71946286ns 1265009 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71946456ns 1265012 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71946911ns 1265020 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71947081ns 1265023 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71947365ns 1265028 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71947650ns 1265033 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71947934ns 1265038 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71948388ns 1265046 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71948559ns 1265049 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71948843ns 1265054 1a110850 fd5ff06f jal x0, -44 +71949127ns 1265059 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71949411ns 1265064 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71949809ns 1265071 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71949980ns 1265074 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71950434ns 1265082 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71950605ns 1265085 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71950889ns 1265090 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71951173ns 1265095 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71951457ns 1265100 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71951912ns 1265108 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71952082ns 1265111 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71952367ns 1265116 1a110850 fd5ff06f jal x0, -44 +71952651ns 1265121 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71952935ns 1265126 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71953333ns 1265133 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71953503ns 1265136 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71953958ns 1265144 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71954128ns 1265147 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71954413ns 1265152 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71954697ns 1265157 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71954981ns 1265162 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71955436ns 1265170 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71955606ns 1265173 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71955890ns 1265178 1a110850 fd5ff06f jal x0, -44 +71956174ns 1265183 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71956459ns 1265188 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71956856ns 1265195 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71957027ns 1265198 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71957482ns 1265206 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71957652ns 1265209 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71957936ns 1265214 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71958220ns 1265219 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71958504ns 1265224 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71958959ns 1265232 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71959130ns 1265235 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71959414ns 1265240 1a110850 fd5ff06f jal x0, -44 +71959698ns 1265245 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71959982ns 1265250 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71960380ns 1265257 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71960550ns 1265260 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71961005ns 1265268 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71961176ns 1265271 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71961460ns 1265276 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71961744ns 1265281 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71962028ns 1265286 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71962483ns 1265294 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71962653ns 1265297 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71962937ns 1265302 1a110850 fd5ff06f jal x0, -44 +71963222ns 1265307 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71963506ns 1265312 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71963904ns 1265319 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71964074ns 1265322 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71964529ns 1265330 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71964699ns 1265333 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71964983ns 1265338 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71965267ns 1265343 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71965552ns 1265348 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71966006ns 1265356 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71966177ns 1265359 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71966461ns 1265364 1a110850 fd5ff06f jal x0, -44 +71966745ns 1265369 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71967029ns 1265374 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71967427ns 1265381 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71967598ns 1265384 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71968052ns 1265392 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71968223ns 1265395 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71968507ns 1265400 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71968791ns 1265405 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71969075ns 1265410 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71969530ns 1265418 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71969700ns 1265421 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71969985ns 1265426 1a110850 fd5ff06f jal x0, -44 +71970269ns 1265431 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71970553ns 1265436 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71970951ns 1265443 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71971121ns 1265446 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71971576ns 1265454 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71971746ns 1265457 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71972031ns 1265462 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71972315ns 1265467 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71972599ns 1265472 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71973053ns 1265480 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71973224ns 1265483 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71973508ns 1265488 1a110850 fd5ff06f jal x0, -44 +71973792ns 1265493 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71974076ns 1265498 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71974474ns 1265505 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71974645ns 1265508 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71975099ns 1265516 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71975270ns 1265519 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71975554ns 1265524 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71975838ns 1265529 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71976122ns 1265534 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71976577ns 1265542 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71976748ns 1265545 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71977032ns 1265550 1a110850 fd5ff06f jal x0, -44 +71977316ns 1265555 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71977600ns 1265560 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71977998ns 1265567 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71978168ns 1265570 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71978623ns 1265578 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71978794ns 1265581 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71979078ns 1265586 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71979362ns 1265591 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71979646ns 1265596 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71980101ns 1265604 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71980271ns 1265607 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71980555ns 1265612 1a110850 fd5ff06f jal x0, -44 +71980839ns 1265617 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71981124ns 1265622 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71981521ns 1265629 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71981692ns 1265632 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71982147ns 1265640 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71982317ns 1265643 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71982601ns 1265648 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71982885ns 1265653 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71983170ns 1265658 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71983624ns 1265666 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71983795ns 1265669 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71984079ns 1265674 1a110850 fd5ff06f jal x0, -44 +71984363ns 1265679 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71984647ns 1265684 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71985045ns 1265691 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71985216ns 1265694 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71985670ns 1265702 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71985841ns 1265705 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71986125ns 1265710 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71986409ns 1265715 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71986693ns 1265720 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71987148ns 1265728 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71987318ns 1265731 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71987602ns 1265736 1a110850 fd5ff06f jal x0, -44 +71987887ns 1265741 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71988171ns 1265746 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71988569ns 1265753 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71988739ns 1265756 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71989194ns 1265764 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71989364ns 1265767 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71989648ns 1265772 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71989933ns 1265777 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71990217ns 1265782 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71990671ns 1265790 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71990842ns 1265793 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71991126ns 1265798 1a110850 fd5ff06f jal x0, -44 +71991410ns 1265803 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71991694ns 1265808 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71992092ns 1265815 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71992263ns 1265818 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71992717ns 1265826 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71992888ns 1265829 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71993172ns 1265834 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71993456ns 1265839 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71993740ns 1265844 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71994195ns 1265852 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71994365ns 1265855 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71994650ns 1265860 1a110850 fd5ff06f jal x0, -44 +71994934ns 1265865 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71995218ns 1265870 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71995616ns 1265877 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71995786ns 1265880 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71996241ns 1265888 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71996411ns 1265891 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +71996696ns 1265896 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71996980ns 1265901 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71997264ns 1265906 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71997719ns 1265914 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +71997889ns 1265917 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +71998173ns 1265922 1a110850 fd5ff06f jal x0, -44 +71998457ns 1265927 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +71998742ns 1265932 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +71999139ns 1265939 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +71999310ns 1265942 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +71999765ns 1265950 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +71999935ns 1265953 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72000219ns 1265958 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72000503ns 1265963 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72000787ns 1265968 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72001242ns 1265976 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72001413ns 1265979 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72001697ns 1265984 1a110850 fd5ff06f jal x0, -44 +72001981ns 1265989 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72002265ns 1265994 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72002663ns 1266001 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72002833ns 1266004 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72003288ns 1266012 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72003459ns 1266015 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72003743ns 1266020 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72004027ns 1266025 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72004311ns 1266030 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72004766ns 1266038 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72004936ns 1266041 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72005220ns 1266046 1a110850 fd5ff06f jal x0, -44 +72005505ns 1266051 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72005789ns 1266056 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72006187ns 1266063 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72006357ns 1266066 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72006812ns 1266074 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72006982ns 1266077 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72007266ns 1266082 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72007551ns 1266087 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72007835ns 1266092 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72008289ns 1266100 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72008460ns 1266103 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72008744ns 1266108 1a110850 fd5ff06f jal x0, -44 +72009028ns 1266113 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72009312ns 1266118 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72009710ns 1266125 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72009881ns 1266128 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72010335ns 1266136 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72010506ns 1266139 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72010790ns 1266144 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72011074ns 1266149 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72011358ns 1266154 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72011813ns 1266162 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72011983ns 1266165 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72012268ns 1266170 1a110850 fd5ff06f jal x0, -44 +72012552ns 1266175 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72012836ns 1266180 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72013234ns 1266187 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72013404ns 1266190 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72013859ns 1266198 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72014029ns 1266201 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72014314ns 1266206 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72014598ns 1266211 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72014882ns 1266216 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72015336ns 1266224 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72015507ns 1266227 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72015791ns 1266232 1a110850 fd5ff06f jal x0, -44 +72016075ns 1266237 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72016359ns 1266242 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72016757ns 1266249 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72016928ns 1266252 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72017382ns 1266260 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72017553ns 1266263 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72017837ns 1266268 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72018121ns 1266273 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72018405ns 1266278 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72018860ns 1266286 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72019031ns 1266289 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72019315ns 1266294 1a110850 fd5ff06f jal x0, -44 +72019599ns 1266299 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72019883ns 1266304 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72020281ns 1266311 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72020451ns 1266314 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72020906ns 1266322 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72021077ns 1266325 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72021361ns 1266330 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72021645ns 1266335 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72021929ns 1266340 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72022384ns 1266348 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72022554ns 1266351 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72022838ns 1266356 1a110850 fd5ff06f jal x0, -44 +72023122ns 1266361 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72023407ns 1266366 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72023804ns 1266373 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72023975ns 1266376 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72024430ns 1266384 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72024600ns 1266387 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72024884ns 1266392 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72025168ns 1266397 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72025453ns 1266402 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72025907ns 1266410 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72026078ns 1266413 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72026362ns 1266418 1a110850 fd5ff06f jal x0, -44 +72026646ns 1266423 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72026930ns 1266428 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72027328ns 1266435 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72027499ns 1266438 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72027953ns 1266446 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72028124ns 1266449 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72028408ns 1266454 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72028692ns 1266459 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72028976ns 1266464 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72029431ns 1266472 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72029601ns 1266475 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72029885ns 1266480 1a110850 fd5ff06f jal x0, -44 +72030170ns 1266485 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72030454ns 1266490 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72030852ns 1266497 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72031022ns 1266500 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72031477ns 1266508 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72031647ns 1266511 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72031931ns 1266516 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72032216ns 1266521 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72032500ns 1266526 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72032954ns 1266534 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72033125ns 1266537 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72033409ns 1266542 1a110850 fd5ff06f jal x0, -44 +72033693ns 1266547 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72033977ns 1266552 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72034375ns 1266559 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72034546ns 1266562 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72035000ns 1266570 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72035171ns 1266573 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72035455ns 1266578 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72035739ns 1266583 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72036023ns 1266588 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72036478ns 1266596 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72036648ns 1266599 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72036933ns 1266604 1a110850 fd5ff06f jal x0, -44 +72037217ns 1266609 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72037501ns 1266614 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72037899ns 1266621 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72038069ns 1266624 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72038524ns 1266632 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72038694ns 1266635 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72038979ns 1266640 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72039263ns 1266645 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72039547ns 1266650 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72040002ns 1266658 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72040172ns 1266661 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72040456ns 1266666 1a110850 fd5ff06f jal x0, -44 +72040740ns 1266671 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72041025ns 1266676 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72041422ns 1266683 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72041593ns 1266686 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72042048ns 1266694 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72042218ns 1266697 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72042502ns 1266702 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72042786ns 1266707 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72043071ns 1266712 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72043525ns 1266720 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72043696ns 1266723 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72043980ns 1266728 1a110850 fd5ff06f jal x0, -44 +72044264ns 1266733 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72044548ns 1266738 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72044946ns 1266745 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72045116ns 1266748 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72045571ns 1266756 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72045742ns 1266759 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72046026ns 1266764 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72046310ns 1266769 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72046594ns 1266774 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72047049ns 1266782 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72047219ns 1266785 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72047503ns 1266790 1a110850 fd5ff06f jal x0, -44 +72047788ns 1266795 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72048072ns 1266800 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72048470ns 1266807 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72048640ns 1266810 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72049095ns 1266818 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72049265ns 1266821 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72049549ns 1266826 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72049834ns 1266831 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72050118ns 1266836 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72050572ns 1266844 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72050743ns 1266847 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72051027ns 1266852 1a110850 fd5ff06f jal x0, -44 +72051311ns 1266857 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72051595ns 1266862 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72051993ns 1266869 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72052164ns 1266872 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72052618ns 1266880 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72052789ns 1266883 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72053073ns 1266888 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72053357ns 1266893 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72053641ns 1266898 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72054096ns 1266906 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72054266ns 1266909 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72054551ns 1266914 1a110850 fd5ff06f jal x0, -44 +72054835ns 1266919 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72055119ns 1266924 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72055517ns 1266931 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72055687ns 1266934 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72056142ns 1266942 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72056312ns 1266945 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72056597ns 1266950 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72056881ns 1266955 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72057165ns 1266960 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72057619ns 1266968 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72057790ns 1266971 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72058074ns 1266976 1a110850 fd5ff06f jal x0, -44 +72058358ns 1266981 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72058642ns 1266986 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72059040ns 1266993 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72059211ns 1266996 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72059665ns 1267004 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72059836ns 1267007 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72060120ns 1267012 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72060404ns 1267017 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72060688ns 1267022 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72061143ns 1267030 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72061314ns 1267033 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72061598ns 1267038 1a110850 fd5ff06f jal x0, -44 +72061882ns 1267043 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72062166ns 1267048 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72062564ns 1267055 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72062734ns 1267058 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72063189ns 1267066 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72063360ns 1267069 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72063644ns 1267074 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72063928ns 1267079 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72064212ns 1267084 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72064667ns 1267092 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72064837ns 1267095 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72065121ns 1267100 1a110850 fd5ff06f jal x0, -44 +72065405ns 1267105 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72065690ns 1267110 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72066087ns 1267117 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72066258ns 1267120 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72066713ns 1267128 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72066883ns 1267131 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72067167ns 1267136 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72067451ns 1267141 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72067736ns 1267146 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72068190ns 1267154 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72068361ns 1267157 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72068645ns 1267162 1a110850 fd5ff06f jal x0, -44 +72068929ns 1267167 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72069213ns 1267172 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72069611ns 1267179 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72069782ns 1267182 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72070236ns 1267190 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72070407ns 1267193 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72070691ns 1267198 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72070975ns 1267203 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72071259ns 1267208 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72071714ns 1267216 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72071884ns 1267219 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72072168ns 1267224 1a110850 fd5ff06f jal x0, -44 +72072453ns 1267229 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72072737ns 1267234 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72073135ns 1267241 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72073305ns 1267244 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72073760ns 1267252 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72073930ns 1267255 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72074214ns 1267260 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72074499ns 1267265 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72074783ns 1267270 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72075237ns 1267278 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72075408ns 1267281 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72075692ns 1267286 1a110850 fd5ff06f jal x0, -44 +72075976ns 1267291 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72076260ns 1267296 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72076658ns 1267303 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72076829ns 1267306 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72077283ns 1267314 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72077454ns 1267317 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72077738ns 1267322 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72078022ns 1267327 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72078306ns 1267332 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72078761ns 1267340 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72078931ns 1267343 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72079216ns 1267348 1a110850 fd5ff06f jal x0, -44 +72079500ns 1267353 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72079784ns 1267358 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72080182ns 1267365 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72080352ns 1267368 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72080807ns 1267376 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72080977ns 1267379 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72081262ns 1267384 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72081546ns 1267389 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72081830ns 1267394 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72082285ns 1267402 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72082455ns 1267405 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72082739ns 1267410 1a110850 fd5ff06f jal x0, -44 +72083023ns 1267415 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72083308ns 1267420 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72083705ns 1267427 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72083876ns 1267430 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72084331ns 1267438 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72084501ns 1267441 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72084785ns 1267446 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72085069ns 1267451 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72085354ns 1267456 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72085808ns 1267464 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72085979ns 1267467 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72086263ns 1267472 1a110850 fd5ff06f jal x0, -44 +72086547ns 1267477 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72086831ns 1267482 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72087229ns 1267489 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72087399ns 1267492 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72087854ns 1267500 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72088025ns 1267503 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72088309ns 1267508 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72088593ns 1267513 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72088877ns 1267518 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72089332ns 1267526 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72089502ns 1267529 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72089786ns 1267534 1a110850 fd5ff06f jal x0, -44 +72090071ns 1267539 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72090355ns 1267544 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72090753ns 1267551 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72090923ns 1267554 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72091378ns 1267562 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72091548ns 1267565 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72091832ns 1267570 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72092117ns 1267575 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72092401ns 1267580 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72092855ns 1267588 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72093026ns 1267591 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72093310ns 1267596 1a110850 fd5ff06f jal x0, -44 +72093594ns 1267601 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72093878ns 1267606 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72094276ns 1267613 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72094447ns 1267616 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72094901ns 1267624 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72095072ns 1267627 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72095356ns 1267632 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72095640ns 1267637 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72095924ns 1267642 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72096379ns 1267650 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72096549ns 1267653 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72096834ns 1267658 1a110850 fd5ff06f jal x0, -44 +72097118ns 1267663 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72097402ns 1267668 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72097800ns 1267675 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72097970ns 1267678 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72098425ns 1267686 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72098595ns 1267689 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72098880ns 1267694 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72099164ns 1267699 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72099448ns 1267704 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72099903ns 1267712 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72100073ns 1267715 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72100357ns 1267720 1a110850 fd5ff06f jal x0, -44 +72100641ns 1267725 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72100925ns 1267730 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72101323ns 1267737 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72101494ns 1267740 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72101948ns 1267748 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72102119ns 1267751 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72102403ns 1267756 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72102687ns 1267761 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72102971ns 1267766 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72103426ns 1267774 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72103597ns 1267777 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72103881ns 1267782 1a110850 fd5ff06f jal x0, -44 +72104165ns 1267787 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72104449ns 1267792 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72104847ns 1267799 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72105017ns 1267802 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72105472ns 1267810 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72105643ns 1267813 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72105927ns 1267818 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72106211ns 1267823 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72106495ns 1267828 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72106950ns 1267836 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72107120ns 1267839 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72107404ns 1267844 1a110850 fd5ff06f jal x0, -44 +72107688ns 1267849 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72107973ns 1267854 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72108370ns 1267861 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72108541ns 1267864 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72108996ns 1267872 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72109166ns 1267875 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72109450ns 1267880 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72109734ns 1267885 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72110019ns 1267890 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72110473ns 1267898 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72110644ns 1267901 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72110928ns 1267906 1a110850 fd5ff06f jal x0, -44 +72111212ns 1267911 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72111496ns 1267916 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72111894ns 1267923 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72112065ns 1267926 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72112519ns 1267934 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72112690ns 1267937 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72112974ns 1267942 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72113258ns 1267947 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72113542ns 1267952 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72113997ns 1267960 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72114167ns 1267963 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72114451ns 1267968 1a110850 fd5ff06f jal x0, -44 +72114736ns 1267973 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72115020ns 1267978 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72115418ns 1267985 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72115588ns 1267988 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72116043ns 1267996 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72116213ns 1267999 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72116497ns 1268004 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72116782ns 1268009 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72117066ns 1268014 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72117520ns 1268022 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72117691ns 1268025 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72117975ns 1268030 1a110850 fd5ff06f jal x0, -44 +72118259ns 1268035 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72118543ns 1268040 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72118941ns 1268047 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72119112ns 1268050 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72119566ns 1268058 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72119737ns 1268061 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72120021ns 1268066 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72120305ns 1268071 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72120589ns 1268076 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72121044ns 1268084 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72121215ns 1268087 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72121499ns 1268092 1a110850 fd5ff06f jal x0, -44 +72121783ns 1268097 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72122067ns 1268102 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72122465ns 1268109 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72122635ns 1268112 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72123090ns 1268120 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72123260ns 1268123 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72123545ns 1268128 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72123829ns 1268133 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72124113ns 1268138 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72124568ns 1268146 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72124738ns 1268149 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72125022ns 1268154 1a110850 fd5ff06f jal x0, -44 +72125306ns 1268159 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72125591ns 1268164 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72125988ns 1268171 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72126159ns 1268174 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72126614ns 1268182 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72126784ns 1268185 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72127068ns 1268190 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72127352ns 1268195 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72127637ns 1268200 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72128091ns 1268208 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72128262ns 1268211 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72128546ns 1268216 1a110850 fd5ff06f jal x0, -44 +72128830ns 1268221 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72129114ns 1268226 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72129512ns 1268233 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72129682ns 1268236 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72130137ns 1268244 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72130308ns 1268247 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72130592ns 1268252 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72130876ns 1268257 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72131160ns 1268262 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72131615ns 1268270 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72131785ns 1268273 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72132069ns 1268278 1a110850 fd5ff06f jal x0, -44 +72132354ns 1268283 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72132638ns 1268288 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72133036ns 1268295 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72133206ns 1268298 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72133661ns 1268306 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72133831ns 1268309 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72134115ns 1268314 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72134400ns 1268319 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72134684ns 1268324 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72135138ns 1268332 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72135309ns 1268335 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72135593ns 1268340 1a110850 fd5ff06f jal x0, -44 +72135877ns 1268345 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72136161ns 1268350 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72136559ns 1268357 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72136730ns 1268360 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72137184ns 1268368 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72137355ns 1268371 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72137639ns 1268376 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72137923ns 1268381 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72138207ns 1268386 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72138662ns 1268394 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72138832ns 1268397 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72139117ns 1268402 1a110850 fd5ff06f jal x0, -44 +72139401ns 1268407 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72139685ns 1268412 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72140083ns 1268419 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72140253ns 1268422 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72140708ns 1268430 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72140878ns 1268433 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72141163ns 1268438 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72141447ns 1268443 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72141731ns 1268448 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72142186ns 1268456 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72142356ns 1268459 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72142640ns 1268464 1a110850 fd5ff06f jal x0, -44 +72142924ns 1268469 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72143208ns 1268474 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72143606ns 1268481 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72143777ns 1268484 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72144231ns 1268492 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72144402ns 1268495 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72144686ns 1268500 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72144970ns 1268505 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72145254ns 1268510 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72145709ns 1268518 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72145880ns 1268521 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72146164ns 1268526 1a110850 fd5ff06f jal x0, -44 +72146448ns 1268531 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72146732ns 1268536 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72147130ns 1268543 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72147300ns 1268546 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72147755ns 1268554 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72147926ns 1268557 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72148210ns 1268562 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72148494ns 1268567 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72148778ns 1268572 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72149233ns 1268580 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72149403ns 1268583 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72149687ns 1268588 1a110850 fd5ff06f jal x0, -44 +72149971ns 1268593 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72150256ns 1268598 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72150653ns 1268605 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72150824ns 1268608 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72151279ns 1268616 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72151449ns 1268619 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72151733ns 1268624 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72152017ns 1268629 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72152302ns 1268634 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72152756ns 1268642 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72152927ns 1268645 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72153211ns 1268650 1a110850 fd5ff06f jal x0, -44 +72153495ns 1268655 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72153779ns 1268660 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72154177ns 1268667 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72154348ns 1268670 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72154802ns 1268678 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72154973ns 1268681 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72155257ns 1268686 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72155541ns 1268691 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72155825ns 1268696 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72156280ns 1268704 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72156450ns 1268707 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72156735ns 1268712 1a110850 fd5ff06f jal x0, -44 +72157019ns 1268717 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72157303ns 1268722 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72157701ns 1268729 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72157871ns 1268732 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72158326ns 1268740 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72158496ns 1268743 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72158780ns 1268748 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72159065ns 1268753 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72159349ns 1268758 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72159803ns 1268766 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72159974ns 1268769 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72160258ns 1268774 1a110850 fd5ff06f jal x0, -44 +72160542ns 1268779 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72160826ns 1268784 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72161224ns 1268791 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72161395ns 1268794 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72161849ns 1268802 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72162020ns 1268805 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72162304ns 1268810 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72162588ns 1268815 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72162872ns 1268820 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72163327ns 1268828 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72163498ns 1268831 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72163782ns 1268836 1a110850 fd5ff06f jal x0, -44 +72164066ns 1268841 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72164350ns 1268846 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72164748ns 1268853 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72164918ns 1268856 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72165373ns 1268864 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72165543ns 1268867 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72165828ns 1268872 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72166112ns 1268877 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72166396ns 1268882 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72166851ns 1268890 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72167021ns 1268893 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72167305ns 1268898 1a110850 fd5ff06f jal x0, -44 +72167589ns 1268903 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72167874ns 1268908 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72168271ns 1268915 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72168442ns 1268918 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72168897ns 1268926 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72169067ns 1268929 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72169351ns 1268934 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72169635ns 1268939 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72169920ns 1268944 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72170374ns 1268952 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72170545ns 1268955 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72170829ns 1268960 1a110850 fd5ff06f jal x0, -44 +72171113ns 1268965 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72171397ns 1268970 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72171795ns 1268977 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72171965ns 1268980 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72172420ns 1268988 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72172591ns 1268991 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72172875ns 1268996 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72173159ns 1269001 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72173443ns 1269006 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72173898ns 1269014 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72174068ns 1269017 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72174352ns 1269022 1a110850 fd5ff06f jal x0, -44 +72174637ns 1269027 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72174921ns 1269032 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72175319ns 1269039 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72175489ns 1269042 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72175944ns 1269050 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72176114ns 1269053 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72176398ns 1269058 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72176683ns 1269063 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72176967ns 1269068 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72177421ns 1269076 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72177592ns 1269079 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72177876ns 1269084 1a110850 fd5ff06f jal x0, -44 +72178160ns 1269089 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72178444ns 1269094 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72178842ns 1269101 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72179013ns 1269104 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72179467ns 1269112 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72179638ns 1269115 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72179922ns 1269120 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72180206ns 1269125 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72180490ns 1269130 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72180945ns 1269138 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72181115ns 1269141 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72181400ns 1269146 1a110850 fd5ff06f jal x0, -44 +72181684ns 1269151 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72181968ns 1269156 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72182366ns 1269163 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72182536ns 1269166 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72182991ns 1269174 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72183161ns 1269177 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72183446ns 1269182 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72183730ns 1269187 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72184014ns 1269192 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72184469ns 1269200 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72184639ns 1269203 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72184923ns 1269208 1a110850 fd5ff06f jal x0, -44 +72185207ns 1269213 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72185491ns 1269218 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72185889ns 1269225 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72186060ns 1269228 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72186514ns 1269236 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72186685ns 1269239 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72186969ns 1269244 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72187253ns 1269249 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72187537ns 1269254 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72187992ns 1269262 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72188163ns 1269265 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72188447ns 1269270 1a110850 fd5ff06f jal x0, -44 +72188731ns 1269275 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72189015ns 1269280 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72189413ns 1269287 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72189583ns 1269290 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72190038ns 1269298 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72190209ns 1269301 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72190493ns 1269306 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72190777ns 1269311 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72191061ns 1269316 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72191516ns 1269324 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72191686ns 1269327 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72191970ns 1269332 1a110850 fd5ff06f jal x0, -44 +72192255ns 1269337 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72192539ns 1269342 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72192936ns 1269349 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72193107ns 1269352 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72193562ns 1269360 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72193732ns 1269363 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72194016ns 1269368 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72194300ns 1269373 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72194585ns 1269378 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72195039ns 1269386 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72195210ns 1269389 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72195494ns 1269394 1a110850 fd5ff06f jal x0, -44 +72195778ns 1269399 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72196062ns 1269404 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72196460ns 1269411 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72196631ns 1269414 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72197085ns 1269422 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72197256ns 1269425 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72197540ns 1269430 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72197824ns 1269435 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72198108ns 1269440 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72198563ns 1269448 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72198733ns 1269451 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72199018ns 1269456 1a110850 fd5ff06f jal x0, -44 +72199302ns 1269461 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72199586ns 1269466 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72199984ns 1269473 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72200154ns 1269476 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72200609ns 1269484 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72200779ns 1269487 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72201063ns 1269492 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72201348ns 1269497 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72201632ns 1269502 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72202086ns 1269510 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72202257ns 1269513 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72202541ns 1269518 1a110850 fd5ff06f jal x0, -44 +72202825ns 1269523 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72203109ns 1269528 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72203507ns 1269535 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72203678ns 1269538 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72204132ns 1269546 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72204303ns 1269549 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72204587ns 1269554 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72204871ns 1269559 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72205155ns 1269564 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72205610ns 1269572 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72205781ns 1269575 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72206065ns 1269580 1a110850 fd5ff06f jal x0, -44 +72206349ns 1269585 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72206633ns 1269590 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72207031ns 1269597 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72207201ns 1269600 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72207656ns 1269608 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72207826ns 1269611 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72208111ns 1269616 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72208395ns 1269621 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72208679ns 1269626 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72209134ns 1269634 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72209304ns 1269637 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72209588ns 1269642 1a110850 fd5ff06f jal x0, -44 +72209872ns 1269647 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72210157ns 1269652 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72210554ns 1269659 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72210725ns 1269662 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72211180ns 1269670 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72211350ns 1269673 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72211634ns 1269678 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72211918ns 1269683 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72212203ns 1269688 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72212657ns 1269696 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72212828ns 1269699 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72213112ns 1269704 1a110850 fd5ff06f jal x0, -44 +72213396ns 1269709 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72213680ns 1269714 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72214078ns 1269721 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72214248ns 1269724 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72214703ns 1269732 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72214874ns 1269735 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72215158ns 1269740 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72215442ns 1269745 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72215726ns 1269750 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72216181ns 1269758 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72216351ns 1269761 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72216635ns 1269766 1a110850 fd5ff06f jal x0, -44 +72216920ns 1269771 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72217204ns 1269776 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72217602ns 1269783 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72217772ns 1269786 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72218227ns 1269794 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72218397ns 1269797 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72218681ns 1269802 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72218966ns 1269807 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72219250ns 1269812 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72219704ns 1269820 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72219875ns 1269823 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72220159ns 1269828 1a110850 fd5ff06f jal x0, -44 +72220443ns 1269833 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72220727ns 1269838 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72221125ns 1269845 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72221296ns 1269848 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72221750ns 1269856 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72221921ns 1269859 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72222205ns 1269864 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72222489ns 1269869 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72222773ns 1269874 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72223228ns 1269882 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72223398ns 1269885 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72223683ns 1269890 1a110850 fd5ff06f jal x0, -44 +72223967ns 1269895 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72224251ns 1269900 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72224649ns 1269907 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72224819ns 1269910 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72225274ns 1269918 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72225444ns 1269921 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72225729ns 1269926 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72226013ns 1269931 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72226297ns 1269936 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72226752ns 1269944 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72226922ns 1269947 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72227206ns 1269952 1a110850 fd5ff06f jal x0, -44 +72227490ns 1269957 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72227775ns 1269962 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72228172ns 1269969 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72228343ns 1269972 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72228797ns 1269980 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72228968ns 1269983 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72229252ns 1269988 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72229536ns 1269993 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72229820ns 1269998 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72230275ns 1270006 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72230446ns 1270009 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72230730ns 1270014 1a110850 fd5ff06f jal x0, -44 +72231014ns 1270019 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72231298ns 1270024 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72231696ns 1270031 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72231866ns 1270034 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72232321ns 1270042 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72232492ns 1270045 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72232776ns 1270050 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72233060ns 1270055 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72233344ns 1270060 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72233799ns 1270068 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72233969ns 1270071 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72234253ns 1270076 1a110850 fd5ff06f jal x0, -44 +72234538ns 1270081 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72234822ns 1270086 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72235219ns 1270093 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72235390ns 1270096 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72235845ns 1270104 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72236015ns 1270107 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72236299ns 1270112 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72236583ns 1270117 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72236868ns 1270122 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72237322ns 1270130 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72237493ns 1270133 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72237777ns 1270138 1a110850 fd5ff06f jal x0, -44 +72238061ns 1270143 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72238345ns 1270148 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72238743ns 1270155 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72238914ns 1270158 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72239368ns 1270166 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72239539ns 1270169 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72239823ns 1270174 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72240107ns 1270179 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72240391ns 1270184 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72240846ns 1270192 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72241016ns 1270195 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72241301ns 1270200 1a110850 fd5ff06f jal x0, -44 +72241585ns 1270205 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72241869ns 1270210 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72242267ns 1270217 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72242437ns 1270220 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72242892ns 1270228 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72243062ns 1270231 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72243346ns 1270236 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72243631ns 1270241 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72243915ns 1270246 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72244369ns 1270254 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72244540ns 1270257 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72244824ns 1270262 1a110850 fd5ff06f jal x0, -44 +72245108ns 1270267 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72245392ns 1270272 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72245790ns 1270279 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72245961ns 1270282 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72246415ns 1270290 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72246586ns 1270293 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72246870ns 1270298 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72247154ns 1270303 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72247438ns 1270308 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72247893ns 1270316 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72248064ns 1270319 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72248348ns 1270324 1a110850 fd5ff06f jal x0, -44 +72248632ns 1270329 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72248916ns 1270334 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72249314ns 1270341 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72249484ns 1270344 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72249939ns 1270352 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72250109ns 1270355 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72250394ns 1270360 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72250678ns 1270365 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72250962ns 1270370 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72251417ns 1270378 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72251587ns 1270381 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72251871ns 1270386 1a110850 fd5ff06f jal x0, -44 +72252155ns 1270391 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72252440ns 1270396 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72252837ns 1270403 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72253008ns 1270406 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72253463ns 1270414 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72253633ns 1270417 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72253917ns 1270422 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72254201ns 1270427 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72254486ns 1270432 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72254940ns 1270440 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72255111ns 1270443 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72255395ns 1270448 1a110850 fd5ff06f jal x0, -44 +72255679ns 1270453 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72255963ns 1270458 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72256361ns 1270465 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72256531ns 1270468 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72256986ns 1270476 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72257157ns 1270479 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72257441ns 1270484 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72257725ns 1270489 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72258009ns 1270494 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72258464ns 1270502 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72258634ns 1270505 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72258918ns 1270510 1a110850 fd5ff06f jal x0, -44 +72259203ns 1270515 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72259487ns 1270520 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72259885ns 1270527 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72260055ns 1270530 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72260510ns 1270538 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72260680ns 1270541 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72260964ns 1270546 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72261249ns 1270551 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72261533ns 1270556 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72261987ns 1270564 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72262158ns 1270567 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72262442ns 1270572 1a110850 fd5ff06f jal x0, -44 +72262726ns 1270577 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72263010ns 1270582 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72263408ns 1270589 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72263579ns 1270592 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72264033ns 1270600 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72264204ns 1270603 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72264488ns 1270608 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72264772ns 1270613 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72265056ns 1270618 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72265511ns 1270626 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72265681ns 1270629 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72265966ns 1270634 1a110850 fd5ff06f jal x0, -44 +72266250ns 1270639 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72266534ns 1270644 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72266932ns 1270651 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72267102ns 1270654 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72267557ns 1270662 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72267727ns 1270665 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72268012ns 1270670 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72268296ns 1270675 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72268580ns 1270680 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72269035ns 1270688 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72269205ns 1270691 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72269489ns 1270696 1a110850 fd5ff06f jal x0, -44 +72269773ns 1270701 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72270058ns 1270706 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72270455ns 1270713 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72270626ns 1270716 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72271080ns 1270724 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72271251ns 1270727 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72271535ns 1270732 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72271819ns 1270737 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72272103ns 1270742 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72272558ns 1270750 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72272729ns 1270753 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72273013ns 1270758 1a110850 fd5ff06f jal x0, -44 +72273297ns 1270763 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72273581ns 1270768 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72273979ns 1270775 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72274149ns 1270778 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72274604ns 1270786 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72274775ns 1270789 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72275059ns 1270794 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72275343ns 1270799 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72275627ns 1270804 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72276082ns 1270812 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72276252ns 1270815 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72276536ns 1270820 1a110850 fd5ff06f jal x0, -44 +72276821ns 1270825 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72277105ns 1270830 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72277503ns 1270837 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72277673ns 1270840 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72278128ns 1270848 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72278298ns 1270851 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72278582ns 1270856 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72278866ns 1270861 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72279151ns 1270866 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72279605ns 1270874 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72279776ns 1270877 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72280060ns 1270882 1a110850 fd5ff06f jal x0, -44 +72280344ns 1270887 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72280628ns 1270892 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72281026ns 1270899 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72281197ns 1270902 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72281651ns 1270910 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72281822ns 1270913 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72282106ns 1270918 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72282390ns 1270923 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72282674ns 1270928 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72283129ns 1270936 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72283299ns 1270939 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72283584ns 1270944 1a110850 fd5ff06f jal x0, -44 +72283868ns 1270949 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72284152ns 1270954 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72284550ns 1270961 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72284720ns 1270964 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72285175ns 1270972 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72285345ns 1270975 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72285629ns 1270980 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72285914ns 1270985 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72286198ns 1270990 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72286652ns 1270998 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72286823ns 1271001 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72287107ns 1271006 1a110850 fd5ff06f jal x0, -44 +72287391ns 1271011 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72287675ns 1271016 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72288073ns 1271023 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72288244ns 1271026 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72288698ns 1271034 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72288869ns 1271037 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72289153ns 1271042 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72289437ns 1271047 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72289721ns 1271052 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72290176ns 1271060 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72290347ns 1271063 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72290631ns 1271068 1a110850 fd5ff06f jal x0, -44 +72290915ns 1271073 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72291199ns 1271078 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72291597ns 1271085 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72291767ns 1271088 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72292222ns 1271096 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72292392ns 1271099 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72292677ns 1271104 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72292961ns 1271109 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72293245ns 1271114 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72293700ns 1271122 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72293870ns 1271125 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72294154ns 1271130 1a110850 fd5ff06f jal x0, -44 +72294438ns 1271135 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72294723ns 1271140 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72295120ns 1271147 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72295291ns 1271150 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72295746ns 1271158 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72295916ns 1271161 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72296200ns 1271166 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72296484ns 1271171 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72296769ns 1271176 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72297223ns 1271184 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72297394ns 1271187 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72297678ns 1271192 1a110850 fd5ff06f jal x0, -44 +72297962ns 1271197 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72298246ns 1271202 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72298644ns 1271209 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72298815ns 1271212 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72299269ns 1271220 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72299440ns 1271223 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72299724ns 1271228 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72300008ns 1271233 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72300292ns 1271238 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72300747ns 1271246 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72300917ns 1271249 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72301201ns 1271254 1a110850 fd5ff06f jal x0, -44 +72301486ns 1271259 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72301770ns 1271264 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72302168ns 1271271 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72302338ns 1271274 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72302793ns 1271282 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72302963ns 1271285 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72303247ns 1271290 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72303532ns 1271295 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72303816ns 1271300 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72304270ns 1271308 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72304441ns 1271311 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72304725ns 1271316 1a110850 fd5ff06f jal x0, -44 +72305009ns 1271321 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72305293ns 1271326 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72305691ns 1271333 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72305862ns 1271336 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72306316ns 1271344 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72306487ns 1271347 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72306771ns 1271352 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72307055ns 1271357 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72307339ns 1271362 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72307794ns 1271370 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72307964ns 1271373 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72308249ns 1271378 1a110850 fd5ff06f jal x0, -44 +72308533ns 1271383 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72308817ns 1271388 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72309215ns 1271395 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72309385ns 1271398 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72309840ns 1271406 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72310010ns 1271409 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72310295ns 1271414 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72310579ns 1271419 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72310863ns 1271424 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72311318ns 1271432 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72311488ns 1271435 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72311772ns 1271440 1a110850 fd5ff06f jal x0, -44 +72312056ns 1271445 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72312341ns 1271450 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72312738ns 1271457 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72312909ns 1271460 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72313363ns 1271468 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72313534ns 1271471 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72313818ns 1271476 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72314102ns 1271481 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72314386ns 1271486 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72314841ns 1271494 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72315012ns 1271497 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72315296ns 1271502 1a110850 fd5ff06f jal x0, -44 +72315580ns 1271507 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72315864ns 1271512 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72316262ns 1271519 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72316432ns 1271522 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72316887ns 1271530 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72317058ns 1271533 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72317342ns 1271538 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72317626ns 1271543 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72317910ns 1271548 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72318365ns 1271556 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72318535ns 1271559 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72318819ns 1271564 1a110850 fd5ff06f jal x0, -44 +72319104ns 1271569 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72319388ns 1271574 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72319786ns 1271581 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72319956ns 1271584 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72320411ns 1271592 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72320581ns 1271595 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72320865ns 1271600 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72321149ns 1271605 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72321434ns 1271610 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72321888ns 1271618 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72322059ns 1271621 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72322343ns 1271626 1a110850 fd5ff06f jal x0, -44 +72322627ns 1271631 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72322911ns 1271636 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72323309ns 1271643 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72323480ns 1271646 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72323934ns 1271654 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72324105ns 1271657 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72324389ns 1271662 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72324673ns 1271667 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72324957ns 1271672 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72325412ns 1271680 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72325582ns 1271683 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72325867ns 1271688 1a110850 fd5ff06f jal x0, -44 +72326151ns 1271693 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72326435ns 1271698 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72326833ns 1271705 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72327003ns 1271708 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72327458ns 1271716 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72327628ns 1271719 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72327912ns 1271724 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72328197ns 1271729 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72328481ns 1271734 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72328935ns 1271742 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72329106ns 1271745 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72329390ns 1271750 1a110850 fd5ff06f jal x0, -44 +72329674ns 1271755 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72329958ns 1271760 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72330356ns 1271767 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72330527ns 1271770 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72330981ns 1271778 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72331152ns 1271781 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72331436ns 1271786 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72331720ns 1271791 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72332004ns 1271796 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72332459ns 1271804 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72332630ns 1271807 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72332914ns 1271812 1a110850 fd5ff06f jal x0, -44 +72333198ns 1271817 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72333482ns 1271822 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72333880ns 1271829 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72334050ns 1271832 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72334505ns 1271840 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72334675ns 1271843 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72334960ns 1271848 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72335244ns 1271853 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72335528ns 1271858 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72335983ns 1271866 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72336153ns 1271869 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72336437ns 1271874 1a110850 fd5ff06f jal x0, -44 +72336721ns 1271879 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72337006ns 1271884 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72337403ns 1271891 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72337574ns 1271894 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72338029ns 1271902 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72338199ns 1271905 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72338483ns 1271910 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72338767ns 1271915 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72339052ns 1271920 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72339506ns 1271928 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72339677ns 1271931 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72339961ns 1271936 1a110850 fd5ff06f jal x0, -44 +72340245ns 1271941 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72340529ns 1271946 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72340927ns 1271953 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72341098ns 1271956 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72341552ns 1271964 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72341723ns 1271967 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72342007ns 1271972 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72342291ns 1271977 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72342575ns 1271982 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72343030ns 1271990 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72343200ns 1271993 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72343484ns 1271998 1a110850 fd5ff06f jal x0, -44 +72343769ns 1272003 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72344053ns 1272008 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72344451ns 1272015 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72344621ns 1272018 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72345076ns 1272026 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72345246ns 1272029 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72345530ns 1272034 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72345815ns 1272039 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72346099ns 1272044 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72346553ns 1272052 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72346724ns 1272055 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72347008ns 1272060 1a110850 fd5ff06f jal x0, -44 +72347292ns 1272065 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72347576ns 1272070 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72347974ns 1272077 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72348145ns 1272080 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72348599ns 1272088 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72348770ns 1272091 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72349054ns 1272096 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72349338ns 1272101 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72349622ns 1272106 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72350077ns 1272114 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72350247ns 1272117 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72350532ns 1272122 1a110850 fd5ff06f jal x0, -44 +72350816ns 1272127 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72351100ns 1272132 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72351498ns 1272139 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72351668ns 1272142 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72352123ns 1272150 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72352293ns 1272153 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72352578ns 1272158 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72352862ns 1272163 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72353146ns 1272168 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72353601ns 1272176 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72353771ns 1272179 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72354055ns 1272184 1a110850 fd5ff06f jal x0, -44 +72354339ns 1272189 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72354624ns 1272194 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72355021ns 1272201 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72355192ns 1272204 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72355647ns 1272212 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72355817ns 1272215 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72356101ns 1272220 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72356385ns 1272225 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72356669ns 1272230 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72357124ns 1272238 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72357295ns 1272241 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72357579ns 1272246 1a110850 fd5ff06f jal x0, -44 +72357863ns 1272251 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72358147ns 1272256 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72358545ns 1272263 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72358715ns 1272266 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72359170ns 1272274 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72359341ns 1272277 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72359625ns 1272282 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72359909ns 1272287 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72360193ns 1272292 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72360648ns 1272300 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72360818ns 1272303 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72361102ns 1272308 1a110850 fd5ff06f jal x0, -44 +72361387ns 1272313 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72361671ns 1272318 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72362069ns 1272325 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72362239ns 1272328 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72362694ns 1272336 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72362864ns 1272339 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72363148ns 1272344 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72363432ns 1272349 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72363717ns 1272354 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72364171ns 1272362 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72364342ns 1272365 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72364626ns 1272370 1a110850 fd5ff06f jal x0, -44 +72364910ns 1272375 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72365194ns 1272380 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72365592ns 1272387 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72365763ns 1272390 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72366217ns 1272398 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72366388ns 1272401 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72366672ns 1272406 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72366956ns 1272411 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72367240ns 1272416 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72367695ns 1272424 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72367865ns 1272427 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72368150ns 1272432 1a110850 fd5ff06f jal x0, -44 +72368434ns 1272437 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72368718ns 1272442 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72369116ns 1272449 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72369286ns 1272452 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72369741ns 1272460 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72369911ns 1272463 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72370195ns 1272468 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72370480ns 1272473 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72370764ns 1272478 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72371218ns 1272486 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72371389ns 1272489 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72371673ns 1272494 1a110850 fd5ff06f jal x0, -44 +72371957ns 1272499 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72372241ns 1272504 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72372639ns 1272511 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72372810ns 1272514 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72373264ns 1272522 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72373435ns 1272525 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72373719ns 1272530 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72374003ns 1272535 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72374287ns 1272540 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72374742ns 1272548 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72374913ns 1272551 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72375197ns 1272556 1a110850 fd5ff06f jal x0, -44 +72375481ns 1272561 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72375765ns 1272566 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72376163ns 1272573 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72376333ns 1272576 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72376788ns 1272584 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72376959ns 1272587 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72377243ns 1272592 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72377527ns 1272597 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72377811ns 1272602 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72378266ns 1272610 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72378436ns 1272613 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72378720ns 1272618 1a110850 fd5ff06f jal x0, -44 +72379004ns 1272623 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72379289ns 1272628 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72379686ns 1272635 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72379857ns 1272638 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72380312ns 1272646 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72380482ns 1272649 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72380766ns 1272654 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72381050ns 1272659 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72381335ns 1272664 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72381789ns 1272672 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72381960ns 1272675 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72382244ns 1272680 1a110850 fd5ff06f jal x0, -44 +72382528ns 1272685 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72382812ns 1272690 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72383210ns 1272697 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72383381ns 1272700 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72383835ns 1272708 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72384006ns 1272711 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72384290ns 1272716 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72384574ns 1272721 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72384858ns 1272726 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72385313ns 1272734 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72385483ns 1272737 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72385767ns 1272742 1a110850 fd5ff06f jal x0, -44 +72386052ns 1272747 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72386336ns 1272752 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72386734ns 1272759 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72386904ns 1272762 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72387359ns 1272770 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72387529ns 1272773 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72387813ns 1272778 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72388098ns 1272783 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72388382ns 1272788 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72388836ns 1272796 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72389007ns 1272799 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72389291ns 1272804 1a110850 fd5ff06f jal x0, -44 +72389575ns 1272809 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72389859ns 1272814 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72390257ns 1272821 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72390428ns 1272824 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72390882ns 1272832 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72391053ns 1272835 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72391337ns 1272840 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72391621ns 1272845 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72391905ns 1272850 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72392360ns 1272858 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72392530ns 1272861 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72392815ns 1272866 1a110850 fd5ff06f jal x0, -44 +72393099ns 1272871 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72393383ns 1272876 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72393781ns 1272883 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72393951ns 1272886 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72394406ns 1272894 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72394576ns 1272897 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72394861ns 1272902 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72395145ns 1272907 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72395429ns 1272912 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72395884ns 1272920 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72396054ns 1272923 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72396338ns 1272928 1a110850 fd5ff06f jal x0, -44 +72396622ns 1272933 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72396907ns 1272938 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72397304ns 1272945 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72397475ns 1272948 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72397930ns 1272956 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72398100ns 1272959 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72398384ns 1272964 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72398668ns 1272969 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72398952ns 1272974 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72399407ns 1272982 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72399578ns 1272985 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72399862ns 1272990 1a110850 fd5ff06f jal x0, -44 +72400146ns 1272995 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72400430ns 1273000 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72400828ns 1273007 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72400998ns 1273010 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72401453ns 1273018 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72401624ns 1273021 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72401908ns 1273026 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72402192ns 1273031 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72402476ns 1273036 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72402931ns 1273044 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72403101ns 1273047 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72403385ns 1273052 1a110850 fd5ff06f jal x0, -44 +72403670ns 1273057 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72403954ns 1273062 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72404352ns 1273069 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72404522ns 1273072 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72404977ns 1273080 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72405147ns 1273083 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72405431ns 1273088 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72405715ns 1273093 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72406000ns 1273098 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72406454ns 1273106 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72406625ns 1273109 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72406909ns 1273114 1a110850 fd5ff06f jal x0, -44 +72407193ns 1273119 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72407477ns 1273124 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72407875ns 1273131 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72408046ns 1273134 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72408500ns 1273142 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72408671ns 1273145 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72408955ns 1273150 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72409239ns 1273155 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72409523ns 1273160 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72409978ns 1273168 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72410148ns 1273171 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72410433ns 1273176 1a110850 fd5ff06f jal x0, -44 +72410717ns 1273181 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72411001ns 1273186 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72411399ns 1273193 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72411569ns 1273196 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72412024ns 1273204 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72412194ns 1273207 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72412479ns 1273212 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72412763ns 1273217 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72413047ns 1273222 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72413501ns 1273230 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72413672ns 1273233 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72413956ns 1273238 1a110850 fd5ff06f jal x0, -44 +72414240ns 1273243 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72414524ns 1273248 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72414922ns 1273255 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72415093ns 1273258 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72415547ns 1273266 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72415718ns 1273269 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72416002ns 1273274 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72416286ns 1273279 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72416570ns 1273284 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72417025ns 1273292 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72417196ns 1273295 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72417480ns 1273300 1a110850 fd5ff06f jal x0, -44 +72417764ns 1273305 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72418048ns 1273310 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72418446ns 1273317 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72418616ns 1273320 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72419071ns 1273328 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72419242ns 1273331 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72419526ns 1273336 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72419810ns 1273341 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72420094ns 1273346 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72420549ns 1273354 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72420719ns 1273357 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72421003ns 1273362 1a110850 fd5ff06f jal x0, -44 +72421287ns 1273367 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72421572ns 1273372 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72421969ns 1273379 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72422140ns 1273382 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72422595ns 1273390 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72422765ns 1273393 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72423049ns 1273398 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72423333ns 1273403 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72423618ns 1273408 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72424072ns 1273416 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72424243ns 1273419 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72424527ns 1273424 1a110850 fd5ff06f jal x0, -44 +72424811ns 1273429 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72425095ns 1273434 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72425493ns 1273441 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72425664ns 1273444 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72426118ns 1273452 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72426289ns 1273455 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72426573ns 1273460 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72426857ns 1273465 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72427141ns 1273470 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72427596ns 1273478 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72427766ns 1273481 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72428050ns 1273486 1a110850 fd5ff06f jal x0, -44 +72428335ns 1273491 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72428619ns 1273496 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72429017ns 1273503 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72429187ns 1273506 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72429642ns 1273514 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72429812ns 1273517 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72430096ns 1273522 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72430381ns 1273527 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72430665ns 1273532 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72431119ns 1273540 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72431290ns 1273543 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72431574ns 1273548 1a110850 fd5ff06f jal x0, -44 +72431858ns 1273553 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72432142ns 1273558 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72432540ns 1273565 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72432711ns 1273568 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72433165ns 1273576 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72433336ns 1273579 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72433620ns 1273584 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72433904ns 1273589 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72434188ns 1273594 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72434643ns 1273602 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72434813ns 1273605 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72435098ns 1273610 1a110850 fd5ff06f jal x0, -44 +72435382ns 1273615 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72435666ns 1273620 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72436064ns 1273627 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72436234ns 1273630 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72436689ns 1273638 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72436859ns 1273641 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72437144ns 1273646 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72437428ns 1273651 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72437712ns 1273656 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72438167ns 1273664 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72438337ns 1273667 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72438621ns 1273672 1a110850 fd5ff06f jal x0, -44 +72438905ns 1273677 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72439190ns 1273682 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72439587ns 1273689 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72439758ns 1273692 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72440213ns 1273700 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72440383ns 1273703 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72440667ns 1273708 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72440951ns 1273713 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72441235ns 1273718 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72441690ns 1273726 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72441861ns 1273729 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72442145ns 1273734 1a110850 fd5ff06f jal x0, -44 +72442429ns 1273739 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72442713ns 1273744 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72443111ns 1273751 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72443281ns 1273754 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72443736ns 1273762 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72443907ns 1273765 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72444191ns 1273770 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72444475ns 1273775 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72444759ns 1273780 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72445214ns 1273788 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72445384ns 1273791 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72445668ns 1273796 1a110850 fd5ff06f jal x0, -44 +72445953ns 1273801 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72446237ns 1273806 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72446635ns 1273813 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72446805ns 1273816 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72447260ns 1273824 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72447430ns 1273827 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72447714ns 1273832 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72447999ns 1273837 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72448283ns 1273842 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72448737ns 1273850 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72448908ns 1273853 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72449192ns 1273858 1a110850 fd5ff06f jal x0, -44 +72449476ns 1273863 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72449760ns 1273868 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72450158ns 1273875 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72450329ns 1273878 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72450783ns 1273886 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72450954ns 1273889 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72451238ns 1273894 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72451522ns 1273899 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72451806ns 1273904 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72452261ns 1273912 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72452431ns 1273915 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72452716ns 1273920 1a110850 fd5ff06f jal x0, -44 +72453000ns 1273925 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72453284ns 1273930 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72453682ns 1273937 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72453852ns 1273940 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72454307ns 1273948 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72454477ns 1273951 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72454762ns 1273956 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72455046ns 1273961 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72455330ns 1273966 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72455784ns 1273974 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72455955ns 1273977 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72456239ns 1273982 1a110850 fd5ff06f jal x0, -44 +72456523ns 1273987 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72456807ns 1273992 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72457205ns 1273999 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72457376ns 1274002 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72457830ns 1274010 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72458001ns 1274013 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72458285ns 1274018 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72458569ns 1274023 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72458853ns 1274028 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72459308ns 1274036 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72459479ns 1274039 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72459763ns 1274044 1a110850 fd5ff06f jal x0, -44 +72460047ns 1274049 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72460331ns 1274054 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72460729ns 1274061 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72460899ns 1274064 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72461354ns 1274072 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72461525ns 1274075 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72461809ns 1274080 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72462093ns 1274085 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72462377ns 1274090 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72462832ns 1274098 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72463002ns 1274101 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72463286ns 1274106 1a110850 fd5ff06f jal x0, -44 +72463570ns 1274111 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72463855ns 1274116 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72464252ns 1274123 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72464423ns 1274126 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72464878ns 1274134 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72465048ns 1274137 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72465332ns 1274142 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72465616ns 1274147 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72465901ns 1274152 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72466355ns 1274160 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72466526ns 1274163 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72466810ns 1274168 1a110850 fd5ff06f jal x0, -44 +72467094ns 1274173 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72467378ns 1274178 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72467776ns 1274185 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72467947ns 1274188 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72468401ns 1274196 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72468572ns 1274199 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72468856ns 1274204 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72469140ns 1274209 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72469424ns 1274214 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72469879ns 1274222 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72470049ns 1274225 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72470333ns 1274230 1a110850 fd5ff06f jal x0, -44 +72470618ns 1274235 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72470902ns 1274240 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72471300ns 1274247 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72471470ns 1274250 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72471925ns 1274258 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72472095ns 1274261 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72472379ns 1274266 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72472664ns 1274271 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72472948ns 1274276 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72473402ns 1274284 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72473573ns 1274287 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72473857ns 1274292 1a110850 fd5ff06f jal x0, -44 +72474141ns 1274297 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72474425ns 1274302 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72474823ns 1274309 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72474994ns 1274312 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72475448ns 1274320 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72475619ns 1274323 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72475903ns 1274328 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72476187ns 1274333 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72476471ns 1274338 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72476926ns 1274346 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72477096ns 1274349 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72477381ns 1274354 1a110850 fd5ff06f jal x0, -44 +72477665ns 1274359 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72477949ns 1274364 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72478347ns 1274371 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72478517ns 1274374 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72478972ns 1274382 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72479142ns 1274385 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72479427ns 1274390 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72479711ns 1274395 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72479995ns 1274400 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72480450ns 1274408 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72480620ns 1274411 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72480904ns 1274416 1a110850 fd5ff06f jal x0, -44 +72481188ns 1274421 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72481473ns 1274426 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72481870ns 1274433 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72482041ns 1274436 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72482496ns 1274444 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72482666ns 1274447 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72482950ns 1274452 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72483234ns 1274457 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72483519ns 1274462 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72483973ns 1274470 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72484144ns 1274473 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72484428ns 1274478 1a110850 fd5ff06f jal x0, -44 +72484712ns 1274483 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72484996ns 1274488 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72485394ns 1274495 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72485564ns 1274498 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72486019ns 1274506 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72486190ns 1274509 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72486474ns 1274514 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72486758ns 1274519 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72487042ns 1274524 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72487497ns 1274532 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72487667ns 1274535 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72487951ns 1274540 1a110850 fd5ff06f jal x0, -44 +72488236ns 1274545 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72488520ns 1274550 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72488918ns 1274557 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72489088ns 1274560 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72489543ns 1274568 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72489713ns 1274571 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72489997ns 1274576 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72490282ns 1274581 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72490566ns 1274586 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72491020ns 1274594 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72491191ns 1274597 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72491475ns 1274602 1a110850 fd5ff06f jal x0, -44 +72491759ns 1274607 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72492043ns 1274612 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72492441ns 1274619 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72492612ns 1274622 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72493066ns 1274630 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72493237ns 1274633 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72493521ns 1274638 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72493805ns 1274643 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72494089ns 1274648 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72494544ns 1274656 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72494714ns 1274659 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72494999ns 1274664 1a110850 fd5ff06f jal x0, -44 +72495283ns 1274669 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72495567ns 1274674 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72495965ns 1274681 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72496135ns 1274684 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72496590ns 1274692 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72496760ns 1274695 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72497045ns 1274700 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72497329ns 1274705 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72497613ns 1274710 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72498067ns 1274718 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72498238ns 1274721 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72498522ns 1274726 1a110850 fd5ff06f jal x0, -44 +72498806ns 1274731 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72499090ns 1274736 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72499488ns 1274743 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72499659ns 1274746 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72500113ns 1274754 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72500284ns 1274757 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72500568ns 1274762 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72500852ns 1274767 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72501136ns 1274772 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72501591ns 1274780 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72501762ns 1274783 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72502046ns 1274788 1a110850 fd5ff06f jal x0, -44 +72502330ns 1274793 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72502614ns 1274798 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72503012ns 1274805 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72503182ns 1274808 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72503637ns 1274816 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72503808ns 1274819 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72504092ns 1274824 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72504376ns 1274829 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72504660ns 1274834 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72505115ns 1274842 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72505285ns 1274845 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72505569ns 1274850 1a110850 fd5ff06f jal x0, -44 +72505853ns 1274855 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72506138ns 1274860 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72506535ns 1274867 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72506706ns 1274870 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72507161ns 1274878 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72507331ns 1274881 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72507615ns 1274886 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72507899ns 1274891 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72508184ns 1274896 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72508638ns 1274904 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72508809ns 1274907 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72509093ns 1274912 1a110850 fd5ff06f jal x0, -44 +72509377ns 1274917 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72509661ns 1274922 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72510059ns 1274929 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72510230ns 1274932 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72510684ns 1274940 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72510855ns 1274943 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72511139ns 1274948 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72511423ns 1274953 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72511707ns 1274958 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72512162ns 1274966 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72512332ns 1274969 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72512616ns 1274974 1a110850 fd5ff06f jal x0, -44 +72512901ns 1274979 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72513185ns 1274984 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72513583ns 1274991 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72513753ns 1274994 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72514208ns 1275002 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72514378ns 1275005 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72514662ns 1275010 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72514947ns 1275015 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72515231ns 1275020 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72515685ns 1275028 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72515856ns 1275031 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72516140ns 1275036 1a110850 fd5ff06f jal x0, -44 +72516424ns 1275041 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72516708ns 1275046 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72517106ns 1275053 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72517277ns 1275056 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72517731ns 1275064 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72517902ns 1275067 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72518186ns 1275072 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72518470ns 1275077 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72518754ns 1275082 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72519209ns 1275090 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72519379ns 1275093 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72519664ns 1275098 1a110850 fd5ff06f jal x0, -44 +72519948ns 1275103 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72520232ns 1275108 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72520630ns 1275115 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72520800ns 1275118 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72521255ns 1275126 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72521425ns 1275129 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72521710ns 1275134 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72521994ns 1275139 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72522278ns 1275144 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72522733ns 1275152 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72522903ns 1275155 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72523187ns 1275160 1a110850 fd5ff06f jal x0, -44 +72523471ns 1275165 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72523756ns 1275170 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72524153ns 1275177 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72524324ns 1275180 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72524779ns 1275188 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72524949ns 1275191 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72525233ns 1275196 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72525517ns 1275201 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72525802ns 1275206 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72526256ns 1275214 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72526427ns 1275217 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72526711ns 1275222 1a110850 fd5ff06f jal x0, -44 +72526995ns 1275227 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72527279ns 1275232 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72527677ns 1275239 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72527847ns 1275242 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72528302ns 1275250 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72528473ns 1275253 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72528757ns 1275258 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72529041ns 1275263 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72529325ns 1275268 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72529780ns 1275276 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72529950ns 1275279 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72530234ns 1275284 1a110850 fd5ff06f jal x0, -44 +72530519ns 1275289 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72530803ns 1275294 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72531201ns 1275301 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72531371ns 1275304 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72531826ns 1275312 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72531996ns 1275315 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72532280ns 1275320 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72532565ns 1275325 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72532849ns 1275330 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72533303ns 1275338 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72533474ns 1275341 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72533758ns 1275346 1a110850 fd5ff06f jal x0, -44 +72534042ns 1275351 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72534326ns 1275356 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72534724ns 1275363 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72534895ns 1275366 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72535349ns 1275374 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72535520ns 1275377 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72535804ns 1275382 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72536088ns 1275387 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72536372ns 1275392 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72536827ns 1275400 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72536997ns 1275403 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72537282ns 1275408 1a110850 fd5ff06f jal x0, -44 +72537566ns 1275413 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72537850ns 1275418 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72538248ns 1275425 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72538418ns 1275428 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72538873ns 1275436 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72539043ns 1275439 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72539328ns 1275444 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72539612ns 1275449 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72539896ns 1275454 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72540351ns 1275462 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72540521ns 1275465 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72540805ns 1275470 1a110850 fd5ff06f jal x0, -44 +72541089ns 1275475 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72541373ns 1275480 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72541771ns 1275487 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72541942ns 1275490 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72542396ns 1275498 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72542567ns 1275501 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72542851ns 1275506 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72543135ns 1275511 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72543419ns 1275516 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72543874ns 1275524 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72544045ns 1275527 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72544329ns 1275532 1a110850 fd5ff06f jal x0, -44 +72544613ns 1275537 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72544897ns 1275542 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72545295ns 1275549 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72545465ns 1275552 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72545920ns 1275560 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72546091ns 1275563 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72546375ns 1275568 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72546659ns 1275573 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72546943ns 1275578 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72547398ns 1275586 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72547568ns 1275589 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72547852ns 1275594 1a110850 fd5ff06f jal x0, -44 +72548136ns 1275599 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72548421ns 1275604 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72548818ns 1275611 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72548989ns 1275614 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72549444ns 1275622 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72549614ns 1275625 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72549898ns 1275630 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72550182ns 1275635 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72550467ns 1275640 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72550921ns 1275648 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72551092ns 1275651 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72551376ns 1275656 1a110850 fd5ff06f jal x0, -44 +72551660ns 1275661 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72551944ns 1275666 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72552342ns 1275673 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72552513ns 1275676 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72552967ns 1275684 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72553138ns 1275687 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72553422ns 1275692 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72553706ns 1275697 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72553990ns 1275702 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72554445ns 1275710 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72554615ns 1275713 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72554899ns 1275718 1a110850 fd5ff06f jal x0, -44 +72555184ns 1275723 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72555468ns 1275728 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72555866ns 1275735 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72556036ns 1275738 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72556491ns 1275746 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72556661ns 1275749 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72556945ns 1275754 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72557230ns 1275759 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72557514ns 1275764 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72557968ns 1275772 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72558139ns 1275775 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72558423ns 1275780 1a110850 fd5ff06f jal x0, -44 +72558707ns 1275785 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72558991ns 1275790 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72559389ns 1275797 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72559560ns 1275800 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72560014ns 1275808 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72560185ns 1275811 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72560469ns 1275816 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72560753ns 1275821 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72561037ns 1275826 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72561492ns 1275834 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72561663ns 1275837 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72561947ns 1275842 1a110850 fd5ff06f jal x0, -44 +72562231ns 1275847 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72562515ns 1275852 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72562913ns 1275859 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72563083ns 1275862 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72563538ns 1275870 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72563708ns 1275873 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72563993ns 1275878 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72564277ns 1275883 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72564561ns 1275888 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72565016ns 1275896 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72565186ns 1275899 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72565470ns 1275904 1a110850 fd5ff06f jal x0, -44 +72565754ns 1275909 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72566039ns 1275914 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72566436ns 1275921 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72566607ns 1275924 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72567062ns 1275932 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72567232ns 1275935 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72567516ns 1275940 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72567800ns 1275945 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72568085ns 1275950 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72568539ns 1275958 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72568710ns 1275961 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72568994ns 1275966 1a110850 fd5ff06f jal x0, -44 +72569278ns 1275971 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72569562ns 1275976 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72569960ns 1275983 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72570130ns 1275986 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72570585ns 1275994 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72570756ns 1275997 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72571040ns 1276002 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72571324ns 1276007 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72571608ns 1276012 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72572063ns 1276020 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72572233ns 1276023 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72572517ns 1276028 1a110850 fd5ff06f jal x0, -44 +72572802ns 1276033 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72573086ns 1276038 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72573484ns 1276045 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72573654ns 1276048 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72574109ns 1276056 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72574279ns 1276059 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72574563ns 1276064 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72574848ns 1276069 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72575132ns 1276074 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72575586ns 1276082 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72575757ns 1276085 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72576041ns 1276090 1a110850 fd5ff06f jal x0, -44 +72576325ns 1276095 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72576609ns 1276100 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72577007ns 1276107 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72577178ns 1276110 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72577632ns 1276118 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72577803ns 1276121 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72578087ns 1276126 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72578371ns 1276131 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72578655ns 1276136 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72579110ns 1276144 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72579280ns 1276147 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72579565ns 1276152 1a110850 fd5ff06f jal x0, -44 +72579849ns 1276157 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72580133ns 1276162 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72580531ns 1276169 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72580701ns 1276172 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72581156ns 1276180 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72581326ns 1276183 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72581611ns 1276188 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72581895ns 1276193 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72582179ns 1276198 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72582634ns 1276206 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72582804ns 1276209 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72583088ns 1276214 1a110850 fd5ff06f jal x0, -44 +72583372ns 1276219 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72583656ns 1276224 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72584054ns 1276231 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72584225ns 1276234 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72584679ns 1276242 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72584850ns 1276245 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72585134ns 1276250 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72585418ns 1276255 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72585702ns 1276260 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72586157ns 1276268 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72586328ns 1276271 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72586612ns 1276276 1a110850 fd5ff06f jal x0, -44 +72586896ns 1276281 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72587180ns 1276286 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72587578ns 1276293 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72587748ns 1276296 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72588203ns 1276304 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72588374ns 1276307 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72588658ns 1276312 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72588942ns 1276317 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72589226ns 1276322 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72589681ns 1276330 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72589851ns 1276333 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72590135ns 1276338 1a110850 fd5ff06f jal x0, -44 +72590419ns 1276343 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72590704ns 1276348 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72591101ns 1276355 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72591272ns 1276358 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72591727ns 1276366 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72591897ns 1276369 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72592181ns 1276374 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72592465ns 1276379 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72592750ns 1276384 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72593204ns 1276392 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72593375ns 1276395 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72593659ns 1276400 1a110850 fd5ff06f jal x0, -44 +72593943ns 1276405 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72594227ns 1276410 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72594625ns 1276417 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72594796ns 1276420 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72595250ns 1276428 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72595421ns 1276431 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72595705ns 1276436 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72595989ns 1276441 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72596273ns 1276446 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72596728ns 1276454 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72596898ns 1276457 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72597183ns 1276462 1a110850 fd5ff06f jal x0, -44 +72597467ns 1276467 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72597751ns 1276472 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72598149ns 1276479 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72598319ns 1276482 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72598774ns 1276490 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72598944ns 1276493 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72599228ns 1276498 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72599513ns 1276503 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72599797ns 1276508 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72600251ns 1276516 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72600422ns 1276519 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72600706ns 1276524 1a110850 fd5ff06f jal x0, -44 +72600990ns 1276529 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72601274ns 1276534 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72601672ns 1276541 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72601843ns 1276544 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72602297ns 1276552 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72602468ns 1276555 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72602752ns 1276560 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72603036ns 1276565 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72603320ns 1276570 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72603775ns 1276578 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72603946ns 1276581 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72604230ns 1276586 1a110850 fd5ff06f jal x0, -44 +72604514ns 1276591 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72604798ns 1276596 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72605196ns 1276603 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72605366ns 1276606 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72605821ns 1276614 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72605991ns 1276617 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72606276ns 1276622 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72606560ns 1276627 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72606844ns 1276632 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72607299ns 1276640 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72607469ns 1276643 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72607753ns 1276648 1a110850 fd5ff06f jal x0, -44 +72608037ns 1276653 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72608322ns 1276658 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72608719ns 1276665 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72608890ns 1276668 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72609345ns 1276676 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72609515ns 1276679 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72609799ns 1276684 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72610083ns 1276689 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72610368ns 1276694 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72610822ns 1276702 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72610993ns 1276705 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72611277ns 1276710 1a110850 fd5ff06f jal x0, -44 +72611561ns 1276715 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72611845ns 1276720 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72612243ns 1276727 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72612413ns 1276730 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72612868ns 1276738 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72613039ns 1276741 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72613323ns 1276746 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72613607ns 1276751 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72613891ns 1276756 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72614346ns 1276764 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72614516ns 1276767 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72614800ns 1276772 1a110850 fd5ff06f jal x0, -44 +72615085ns 1276777 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72615369ns 1276782 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72615767ns 1276789 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72615937ns 1276792 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72616392ns 1276800 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72616562ns 1276803 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72616846ns 1276808 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72617131ns 1276813 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72617415ns 1276818 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72617869ns 1276826 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72618040ns 1276829 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72618324ns 1276834 1a110850 fd5ff06f jal x0, -44 +72618608ns 1276839 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72618892ns 1276844 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72619290ns 1276851 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72619461ns 1276854 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72619915ns 1276862 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72620086ns 1276865 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72620370ns 1276870 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72620654ns 1276875 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72620938ns 1276880 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72621393ns 1276888 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72621563ns 1276891 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72621848ns 1276896 1a110850 fd5ff06f jal x0, -44 +72622132ns 1276901 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72622416ns 1276906 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72622814ns 1276913 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72622984ns 1276916 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72623439ns 1276924 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72623609ns 1276927 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72623894ns 1276932 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72624178ns 1276937 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72624462ns 1276942 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72624917ns 1276950 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72625087ns 1276953 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72625371ns 1276958 1a110850 fd5ff06f jal x0, -44 +72625655ns 1276963 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72625939ns 1276968 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72626337ns 1276975 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72626508ns 1276978 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72626962ns 1276986 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72627133ns 1276989 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72627417ns 1276994 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72627701ns 1276999 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72627985ns 1277004 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72628440ns 1277012 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72628611ns 1277015 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72628895ns 1277020 1a110850 fd5ff06f jal x0, -44 +72629179ns 1277025 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72629463ns 1277030 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72629861ns 1277037 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72630031ns 1277040 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72630486ns 1277048 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72630657ns 1277051 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72630941ns 1277056 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72631225ns 1277061 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72631509ns 1277066 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72631964ns 1277074 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72632134ns 1277077 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72632418ns 1277082 1a110850 fd5ff06f jal x0, -44 +72632703ns 1277087 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72632987ns 1277092 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72633384ns 1277099 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72633555ns 1277102 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72634010ns 1277110 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72634180ns 1277113 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72634464ns 1277118 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72634748ns 1277123 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72635033ns 1277128 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72635487ns 1277136 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72635658ns 1277139 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72635942ns 1277144 1a110850 fd5ff06f jal x0, -44 +72636226ns 1277149 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72636510ns 1277154 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72636908ns 1277161 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72637079ns 1277164 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72637533ns 1277172 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72637704ns 1277175 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72637988ns 1277180 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72638272ns 1277185 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72638556ns 1277190 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72639011ns 1277198 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72639181ns 1277201 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72639466ns 1277206 1a110850 fd5ff06f jal x0, -44 +72639750ns 1277211 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72640034ns 1277216 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72640432ns 1277223 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72640602ns 1277226 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72641057ns 1277234 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72641227ns 1277237 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72641511ns 1277242 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72641796ns 1277247 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72642080ns 1277252 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72642534ns 1277260 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72642705ns 1277263 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72642989ns 1277268 1a110850 fd5ff06f jal x0, -44 +72643273ns 1277273 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72643557ns 1277278 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72643955ns 1277285 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72644126ns 1277288 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72644580ns 1277296 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72644751ns 1277299 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72645035ns 1277304 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72645319ns 1277309 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72645603ns 1277314 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72646058ns 1277322 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72646229ns 1277325 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72646513ns 1277330 1a110850 fd5ff06f jal x0, -44 +72646797ns 1277335 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72647081ns 1277340 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72647479ns 1277347 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72647649ns 1277350 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72648104ns 1277358 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72648274ns 1277361 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72648559ns 1277366 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72648843ns 1277371 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72649127ns 1277376 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72649582ns 1277384 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72649752ns 1277387 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72650036ns 1277392 1a110850 fd5ff06f jal x0, -44 +72650320ns 1277397 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72650605ns 1277402 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72651002ns 1277409 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72651173ns 1277412 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72651628ns 1277420 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72651798ns 1277423 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72652082ns 1277428 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72652366ns 1277433 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72652651ns 1277438 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72653105ns 1277446 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72653276ns 1277449 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72653560ns 1277454 1a110850 fd5ff06f jal x0, -44 +72653844ns 1277459 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72654128ns 1277464 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72654526ns 1277471 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72654696ns 1277474 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72655151ns 1277482 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72655322ns 1277485 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72655606ns 1277490 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72655890ns 1277495 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72656174ns 1277500 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72656629ns 1277508 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72656799ns 1277511 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72657083ns 1277516 1a110850 fd5ff06f jal x0, -44 +72657368ns 1277521 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72657652ns 1277526 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72658050ns 1277533 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72658220ns 1277536 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72658675ns 1277544 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72658845ns 1277547 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72659129ns 1277552 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72659414ns 1277557 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72659698ns 1277562 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72660152ns 1277570 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72660323ns 1277573 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72660607ns 1277578 1a110850 fd5ff06f jal x0, -44 +72660891ns 1277583 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72661175ns 1277588 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72661573ns 1277595 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72661744ns 1277598 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72662198ns 1277606 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72662369ns 1277609 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72662653ns 1277614 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72662937ns 1277619 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72663221ns 1277624 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72663676ns 1277632 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72663846ns 1277635 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72664131ns 1277640 1a110850 fd5ff06f jal x0, -44 +72664415ns 1277645 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72664699ns 1277650 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72665097ns 1277657 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72665267ns 1277660 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72665722ns 1277668 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72665892ns 1277671 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72666177ns 1277676 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72666461ns 1277681 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72666745ns 1277686 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72667200ns 1277694 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72667370ns 1277697 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72667654ns 1277702 1a110850 fd5ff06f jal x0, -44 +72667938ns 1277707 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72668223ns 1277712 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72668620ns 1277719 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72668791ns 1277722 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72669245ns 1277730 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72669416ns 1277733 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72669700ns 1277738 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72669984ns 1277743 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72670268ns 1277748 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72670723ns 1277756 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72670894ns 1277759 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72671178ns 1277764 1a110850 fd5ff06f jal x0, -44 +72671462ns 1277769 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72671746ns 1277774 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72672144ns 1277781 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72672314ns 1277784 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72672769ns 1277792 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72672940ns 1277795 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72673224ns 1277800 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72673508ns 1277805 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72673792ns 1277810 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72674247ns 1277818 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72674417ns 1277821 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72674701ns 1277826 1a110850 fd5ff06f jal x0, -44 +72674986ns 1277831 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72675270ns 1277836 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72675667ns 1277843 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72675838ns 1277846 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72676293ns 1277854 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72676463ns 1277857 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72676747ns 1277862 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72677031ns 1277867 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72677316ns 1277872 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72677770ns 1277880 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72677941ns 1277883 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72678225ns 1277888 1a110850 fd5ff06f jal x0, -44 +72678509ns 1277893 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72678793ns 1277898 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72679191ns 1277905 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72679362ns 1277908 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72679816ns 1277916 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72679987ns 1277919 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72680271ns 1277924 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72680555ns 1277929 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72680839ns 1277934 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72681294ns 1277942 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72681464ns 1277945 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72681749ns 1277950 1a110850 fd5ff06f jal x0, -44 +72682033ns 1277955 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72682317ns 1277960 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72682715ns 1277967 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72682885ns 1277970 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72683340ns 1277978 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72683510ns 1277981 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72683794ns 1277986 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72684079ns 1277991 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72684363ns 1277996 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72684817ns 1278004 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72684988ns 1278007 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72685272ns 1278012 1a110850 fd5ff06f jal x0, -44 +72685556ns 1278017 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72685840ns 1278022 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72686238ns 1278029 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72686409ns 1278032 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72686863ns 1278040 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72687034ns 1278043 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72687318ns 1278048 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72687602ns 1278053 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72687886ns 1278058 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72688341ns 1278066 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72688512ns 1278069 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72688796ns 1278074 1a110850 fd5ff06f jal x0, -44 +72689080ns 1278079 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72689364ns 1278084 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72689762ns 1278091 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72689932ns 1278094 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72690387ns 1278102 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72690557ns 1278105 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72690842ns 1278110 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72691126ns 1278115 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72691410ns 1278120 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72691865ns 1278128 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72692035ns 1278131 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72692319ns 1278136 1a110850 fd5ff06f jal x0, -44 +72692603ns 1278141 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72692888ns 1278146 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72693285ns 1278153 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72693456ns 1278156 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72693911ns 1278164 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72694081ns 1278167 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72694365ns 1278172 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72694649ns 1278177 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72694934ns 1278182 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72695388ns 1278190 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72695559ns 1278193 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72695843ns 1278198 1a110850 fd5ff06f jal x0, -44 +72696127ns 1278203 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72696411ns 1278208 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72696809ns 1278215 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72696979ns 1278218 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72697434ns 1278226 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72697605ns 1278229 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72697889ns 1278234 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72698173ns 1278239 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72698457ns 1278244 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72698912ns 1278252 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72699082ns 1278255 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72699366ns 1278260 1a110850 fd5ff06f jal x0, -44 +72699651ns 1278265 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72699935ns 1278270 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72700333ns 1278277 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72700503ns 1278280 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72700958ns 1278288 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72701128ns 1278291 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72701412ns 1278296 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72701697ns 1278301 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72701981ns 1278306 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72702435ns 1278314 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72702606ns 1278317 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72702890ns 1278322 1a110850 fd5ff06f jal x0, -44 +72703174ns 1278327 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72703458ns 1278332 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72703856ns 1278339 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72704027ns 1278342 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72704481ns 1278350 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72704652ns 1278353 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72704936ns 1278358 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72705220ns 1278363 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72705504ns 1278368 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72705959ns 1278376 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72706129ns 1278379 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72706414ns 1278384 1a110850 fd5ff06f jal x0, -44 +72706698ns 1278389 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72706982ns 1278394 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72707380ns 1278401 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72707550ns 1278404 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72708005ns 1278412 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72708175ns 1278415 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72708460ns 1278420 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72708744ns 1278425 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72709028ns 1278430 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72709483ns 1278438 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72709653ns 1278441 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72709937ns 1278446 1a110850 fd5ff06f jal x0, -44 +72710221ns 1278451 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72710506ns 1278456 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72710903ns 1278463 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72711074ns 1278466 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72711528ns 1278474 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72711699ns 1278477 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72711983ns 1278482 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72712267ns 1278487 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72712551ns 1278492 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72713006ns 1278500 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72713177ns 1278503 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72713461ns 1278508 1a110850 fd5ff06f jal x0, -44 +72713745ns 1278513 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72714029ns 1278518 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72714427ns 1278525 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72714597ns 1278528 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72715052ns 1278536 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72715223ns 1278539 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72715507ns 1278544 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72715791ns 1278549 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72716075ns 1278554 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72716530ns 1278562 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72716700ns 1278565 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72716984ns 1278570 1a110850 fd5ff06f jal x0, -44 +72717269ns 1278575 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72717553ns 1278580 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72717951ns 1278587 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72718121ns 1278590 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72718576ns 1278598 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72718746ns 1278601 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72719030ns 1278606 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72719314ns 1278611 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72719599ns 1278616 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72720053ns 1278624 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72720224ns 1278627 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72720508ns 1278632 1a110850 fd5ff06f jal x0, -44 +72720792ns 1278637 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72721076ns 1278642 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72721474ns 1278649 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72721645ns 1278652 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72722099ns 1278660 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72722270ns 1278663 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72722554ns 1278668 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72722838ns 1278673 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72723122ns 1278678 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72723577ns 1278686 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72723747ns 1278689 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72724032ns 1278694 1a110850 fd5ff06f jal x0, -44 +72724316ns 1278699 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72724600ns 1278704 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72724998ns 1278711 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72725168ns 1278714 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72725623ns 1278722 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72725793ns 1278725 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72726077ns 1278730 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72726362ns 1278735 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72726646ns 1278740 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72727100ns 1278748 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72727271ns 1278751 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72727555ns 1278756 1a110850 fd5ff06f jal x0, -44 +72727839ns 1278761 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72728123ns 1278766 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72728521ns 1278773 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72728692ns 1278776 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72729146ns 1278784 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72729317ns 1278787 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72729601ns 1278792 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72729885ns 1278797 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72730169ns 1278802 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72730624ns 1278810 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72730795ns 1278813 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72731079ns 1278818 1a110850 fd5ff06f jal x0, -44 +72731363ns 1278823 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72731647ns 1278828 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72732045ns 1278835 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72732215ns 1278838 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72732670ns 1278846 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72732840ns 1278849 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72733125ns 1278854 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72733409ns 1278859 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72733693ns 1278864 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72734148ns 1278872 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72734318ns 1278875 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72734602ns 1278880 1a110850 fd5ff06f jal x0, -44 +72734886ns 1278885 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72735171ns 1278890 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72735568ns 1278897 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72735739ns 1278900 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72736194ns 1278908 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72736364ns 1278911 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72736648ns 1278916 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72736932ns 1278921 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72737217ns 1278926 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72737671ns 1278934 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72737842ns 1278937 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72738126ns 1278942 1a110850 fd5ff06f jal x0, -44 +72738410ns 1278947 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72738694ns 1278952 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72739092ns 1278959 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72739263ns 1278962 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72739717ns 1278970 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72739888ns 1278973 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72740172ns 1278978 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72740456ns 1278983 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72740740ns 1278988 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72741195ns 1278996 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72741365ns 1278999 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72741649ns 1279004 1a110850 fd5ff06f jal x0, -44 +72741934ns 1279009 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72742218ns 1279014 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72742616ns 1279021 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72742786ns 1279024 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72743241ns 1279032 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72743411ns 1279035 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72743695ns 1279040 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72743980ns 1279045 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72744264ns 1279050 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72744718ns 1279058 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72744889ns 1279061 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72745173ns 1279066 1a110850 fd5ff06f jal x0, -44 +72745457ns 1279071 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72745741ns 1279076 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72746139ns 1279083 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72746310ns 1279086 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72746764ns 1279094 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72746935ns 1279097 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72747219ns 1279102 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72747503ns 1279107 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72747787ns 1279112 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72748242ns 1279120 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72748412ns 1279123 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72748697ns 1279128 1a110850 fd5ff06f jal x0, -44 +72748981ns 1279133 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72749265ns 1279138 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72749663ns 1279145 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72749833ns 1279148 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72750288ns 1279156 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72750458ns 1279159 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72750743ns 1279164 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72751027ns 1279169 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72751311ns 1279174 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72751766ns 1279182 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72751936ns 1279185 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72752220ns 1279190 1a110850 fd5ff06f jal x0, -44 +72752504ns 1279195 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72752789ns 1279200 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72753186ns 1279207 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72753357ns 1279210 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72753811ns 1279218 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72753982ns 1279221 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72754266ns 1279226 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72754550ns 1279231 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72754834ns 1279236 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72755289ns 1279244 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72755460ns 1279247 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72755744ns 1279252 1a110850 fd5ff06f jal x0, -44 +72756028ns 1279257 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72756312ns 1279262 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72756710ns 1279269 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72756880ns 1279272 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72757335ns 1279280 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72757506ns 1279283 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72757790ns 1279288 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72758074ns 1279293 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72758358ns 1279298 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72758813ns 1279306 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72758983ns 1279309 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72759267ns 1279314 1a110850 fd5ff06f jal x0, -44 +72759552ns 1279319 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72759836ns 1279324 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72760234ns 1279331 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72760404ns 1279334 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72760859ns 1279342 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72761029ns 1279345 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72761313ns 1279350 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72761597ns 1279355 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72761882ns 1279360 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72762336ns 1279368 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72762507ns 1279371 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72762791ns 1279376 1a110850 fd5ff06f jal x0, -44 +72763075ns 1279381 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72763359ns 1279386 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72763757ns 1279393 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72763928ns 1279396 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72764382ns 1279404 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72764553ns 1279407 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72764837ns 1279412 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72765121ns 1279417 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72765405ns 1279422 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72765860ns 1279430 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72766030ns 1279433 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72766315ns 1279438 1a110850 fd5ff06f jal x0, -44 +72766599ns 1279443 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72766883ns 1279448 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72767281ns 1279455 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72767451ns 1279458 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72767906ns 1279466 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72768076ns 1279469 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72768360ns 1279474 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72768645ns 1279479 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72768929ns 1279484 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72769383ns 1279492 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72769554ns 1279495 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72769838ns 1279500 1a110850 fd5ff06f jal x0, -44 +72770122ns 1279505 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72770406ns 1279510 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72770804ns 1279517 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72770975ns 1279520 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72771429ns 1279528 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72771600ns 1279531 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72771884ns 1279536 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72772168ns 1279541 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72772452ns 1279546 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72772907ns 1279554 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72773078ns 1279557 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72773362ns 1279562 1a110850 fd5ff06f jal x0, -44 +72773646ns 1279567 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72773930ns 1279572 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72774328ns 1279579 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72774498ns 1279582 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72774953ns 1279590 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72775123ns 1279593 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72775408ns 1279598 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72775692ns 1279603 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72775976ns 1279608 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72776431ns 1279616 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72776601ns 1279619 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72776885ns 1279624 1a110850 fd5ff06f jal x0, -44 +72777169ns 1279629 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72777454ns 1279634 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72777851ns 1279641 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72778022ns 1279644 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72778477ns 1279652 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72778647ns 1279655 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72778931ns 1279660 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72779215ns 1279665 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72779500ns 1279670 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72779954ns 1279678 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72780125ns 1279681 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72780409ns 1279686 1a110850 fd5ff06f jal x0, -44 +72780693ns 1279691 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72780977ns 1279696 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72781375ns 1279703 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72781546ns 1279706 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72782000ns 1279714 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72782171ns 1279717 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72782455ns 1279722 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72782739ns 1279727 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72783023ns 1279732 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72783478ns 1279740 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72783648ns 1279743 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72783932ns 1279748 1a110850 fd5ff06f jal x0, -44 +72784217ns 1279753 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72784501ns 1279758 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72784899ns 1279765 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72785069ns 1279768 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72785524ns 1279776 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72785694ns 1279779 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72785978ns 1279784 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72786263ns 1279789 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72786547ns 1279794 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72787001ns 1279802 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72787172ns 1279805 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72787456ns 1279810 1a110850 fd5ff06f jal x0, -44 +72787740ns 1279815 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72788024ns 1279820 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72788422ns 1279827 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72788593ns 1279830 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72789047ns 1279838 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72789218ns 1279841 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72789502ns 1279846 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72789786ns 1279851 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72790070ns 1279856 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72790525ns 1279864 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72790695ns 1279867 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72790980ns 1279872 1a110850 fd5ff06f jal x0, -44 +72791264ns 1279877 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72791548ns 1279882 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72791946ns 1279889 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72792116ns 1279892 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72792571ns 1279900 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72792741ns 1279903 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72793026ns 1279908 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72793310ns 1279913 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72793594ns 1279918 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72794049ns 1279926 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72794219ns 1279929 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72794503ns 1279934 1a110850 fd5ff06f jal x0, -44 +72794787ns 1279939 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72795072ns 1279944 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72795469ns 1279951 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72795640ns 1279954 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72796095ns 1279962 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72796265ns 1279965 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72796549ns 1279970 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72796833ns 1279975 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72797117ns 1279980 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72797572ns 1279988 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72797743ns 1279991 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72798027ns 1279996 1a110850 fd5ff06f jal x0, -44 +72798311ns 1280001 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72798595ns 1280006 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72798993ns 1280013 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72799163ns 1280016 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72799618ns 1280024 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72799789ns 1280027 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72800073ns 1280032 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72800357ns 1280037 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72800641ns 1280042 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72801096ns 1280050 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72801266ns 1280053 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72801550ns 1280058 1a110850 fd5ff06f jal x0, -44 +72801835ns 1280063 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72802119ns 1280068 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72802517ns 1280075 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72802687ns 1280078 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72803142ns 1280086 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72803312ns 1280089 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72803596ns 1280094 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72803880ns 1280099 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72804165ns 1280104 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72804619ns 1280112 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72804790ns 1280115 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72805074ns 1280120 1a110850 fd5ff06f jal x0, -44 +72805358ns 1280125 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72805642ns 1280130 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72806040ns 1280137 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72806211ns 1280140 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72806665ns 1280148 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72806836ns 1280151 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72807120ns 1280156 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72807404ns 1280161 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72807688ns 1280166 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72808143ns 1280174 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72808313ns 1280177 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72808598ns 1280182 1a110850 fd5ff06f jal x0, -44 +72808882ns 1280187 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72809166ns 1280192 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72809564ns 1280199 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72809734ns 1280202 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72810189ns 1280210 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72810359ns 1280213 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72810643ns 1280218 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72810928ns 1280223 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72811212ns 1280228 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72811666ns 1280236 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72811837ns 1280239 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72812121ns 1280244 1a110850 fd5ff06f jal x0, -44 +72812405ns 1280249 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72812689ns 1280254 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72813087ns 1280261 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72813258ns 1280264 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72813712ns 1280272 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72813883ns 1280275 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72814167ns 1280280 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72814451ns 1280285 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72814735ns 1280290 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72815190ns 1280298 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72815361ns 1280301 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72815645ns 1280306 1a110850 fd5ff06f jal x0, -44 +72815929ns 1280311 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72816213ns 1280316 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72816611ns 1280323 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72816781ns 1280326 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72817236ns 1280334 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72817407ns 1280337 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72817691ns 1280342 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72817975ns 1280347 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72818259ns 1280352 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72818714ns 1280360 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72818884ns 1280363 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72819168ns 1280368 1a110850 fd5ff06f jal x0, -44 +72819452ns 1280373 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72819737ns 1280378 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72820134ns 1280385 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72820305ns 1280388 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72820760ns 1280396 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72820930ns 1280399 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72821214ns 1280404 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72821498ns 1280409 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72821783ns 1280414 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72822237ns 1280422 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72822408ns 1280425 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72822692ns 1280430 1a110850 fd5ff06f jal x0, -44 +72822976ns 1280435 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72823260ns 1280440 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72823658ns 1280447 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72823829ns 1280450 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72824283ns 1280458 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72824454ns 1280461 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72824738ns 1280466 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72825022ns 1280471 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72825306ns 1280476 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72825761ns 1280484 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72825931ns 1280487 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72826215ns 1280492 1a110850 fd5ff06f jal x0, -44 +72826500ns 1280497 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72826784ns 1280502 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72827182ns 1280509 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72827352ns 1280512 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72827807ns 1280520 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72827977ns 1280523 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72828261ns 1280528 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72828546ns 1280533 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72828830ns 1280538 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72829284ns 1280546 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72829455ns 1280549 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72829739ns 1280554 1a110850 fd5ff06f jal x0, -44 +72830023ns 1280559 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72830307ns 1280564 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72830705ns 1280571 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72830876ns 1280574 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72831330ns 1280582 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72831501ns 1280585 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72831785ns 1280590 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72832069ns 1280595 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72832353ns 1280600 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72832808ns 1280608 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72832978ns 1280611 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72833263ns 1280616 1a110850 fd5ff06f jal x0, -44 +72833547ns 1280621 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72833831ns 1280626 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72834229ns 1280633 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72834399ns 1280636 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72834854ns 1280644 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72835024ns 1280647 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72835309ns 1280652 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72835593ns 1280657 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72835877ns 1280662 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72836332ns 1280670 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72836502ns 1280673 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72836786ns 1280678 1a110850 fd5ff06f jal x0, -44 +72837070ns 1280683 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72837355ns 1280688 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72837752ns 1280695 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72837923ns 1280698 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72838378ns 1280706 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72838548ns 1280709 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72838832ns 1280714 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72839116ns 1280719 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72839400ns 1280724 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72839855ns 1280732 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72840026ns 1280735 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72840310ns 1280740 1a110850 fd5ff06f jal x0, -44 +72840594ns 1280745 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72840878ns 1280750 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72841276ns 1280757 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72841446ns 1280760 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72841901ns 1280768 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72842072ns 1280771 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72842356ns 1280776 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72842640ns 1280781 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72842924ns 1280786 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72843379ns 1280794 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72843549ns 1280797 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72843833ns 1280802 1a110850 fd5ff06f jal x0, -44 +72844118ns 1280807 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72844402ns 1280812 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72844800ns 1280819 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72844970ns 1280822 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72845425ns 1280830 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72845595ns 1280833 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72845879ns 1280838 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72846163ns 1280843 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72846448ns 1280848 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72846902ns 1280856 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72847073ns 1280859 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72847357ns 1280864 1a110850 fd5ff06f jal x0, -44 +72847641ns 1280869 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72847925ns 1280874 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72848323ns 1280881 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72848494ns 1280884 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72848948ns 1280892 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72849119ns 1280895 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72849403ns 1280900 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72849687ns 1280905 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72849971ns 1280910 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72850426ns 1280918 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72850596ns 1280921 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72850881ns 1280926 1a110850 fd5ff06f jal x0, -44 +72851165ns 1280931 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72851449ns 1280936 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72851847ns 1280943 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72852017ns 1280946 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72852472ns 1280954 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72852642ns 1280957 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72852927ns 1280962 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72853211ns 1280967 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72853495ns 1280972 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72853949ns 1280980 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72854120ns 1280983 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72854404ns 1280988 1a110850 fd5ff06f jal x0, -44 +72854688ns 1280993 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72854972ns 1280998 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72855370ns 1281005 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72855541ns 1281008 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72855995ns 1281016 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72856166ns 1281019 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72856450ns 1281024 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72856734ns 1281029 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72857018ns 1281034 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72857473ns 1281042 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72857644ns 1281045 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72857928ns 1281050 1a110850 fd5ff06f jal x0, -44 +72858212ns 1281055 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72858496ns 1281060 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72858894ns 1281067 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72859064ns 1281070 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72859519ns 1281078 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72859690ns 1281081 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72859974ns 1281086 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72860258ns 1281091 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72860542ns 1281096 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72860997ns 1281104 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72861167ns 1281107 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72861451ns 1281112 1a110850 fd5ff06f jal x0, -44 +72861735ns 1281117 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72862020ns 1281122 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72862417ns 1281129 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72862588ns 1281132 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72863043ns 1281140 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72863213ns 1281143 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72863497ns 1281148 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72863781ns 1281153 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72864066ns 1281158 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72864520ns 1281166 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72864691ns 1281169 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72864975ns 1281174 1a110850 fd5ff06f jal x0, -44 +72865259ns 1281179 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72865543ns 1281184 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72865941ns 1281191 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72866112ns 1281194 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72866566ns 1281202 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72866737ns 1281205 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72867021ns 1281210 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72867305ns 1281215 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72867589ns 1281220 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72868044ns 1281228 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72868214ns 1281231 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72868498ns 1281236 1a110850 fd5ff06f jal x0, -44 +72868783ns 1281241 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72869067ns 1281246 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72869465ns 1281253 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72869635ns 1281256 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72870090ns 1281264 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72870260ns 1281267 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72870544ns 1281272 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72870829ns 1281277 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72871113ns 1281282 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72871567ns 1281290 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72871738ns 1281293 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72872022ns 1281298 1a110850 fd5ff06f jal x0, -44 +72872306ns 1281303 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72872590ns 1281308 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72872988ns 1281315 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72873159ns 1281318 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72873613ns 1281326 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72873784ns 1281329 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72874068ns 1281334 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72874352ns 1281339 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72874636ns 1281344 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72875091ns 1281352 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72875261ns 1281355 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72875546ns 1281360 1a110850 fd5ff06f jal x0, -44 +72875830ns 1281365 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72876114ns 1281370 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72876512ns 1281377 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72876682ns 1281380 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72877137ns 1281388 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72877307ns 1281391 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72877592ns 1281396 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72877876ns 1281401 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72878160ns 1281406 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72878615ns 1281414 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72878785ns 1281417 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72879069ns 1281422 1a110850 fd5ff06f jal x0, -44 +72879353ns 1281427 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72879638ns 1281432 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72880035ns 1281439 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72880206ns 1281442 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72880661ns 1281450 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72880831ns 1281453 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72881115ns 1281458 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72881399ns 1281463 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72881683ns 1281468 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72882138ns 1281476 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72882309ns 1281479 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72882593ns 1281484 1a110850 fd5ff06f jal x0, -44 +72882877ns 1281489 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72883161ns 1281494 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72883559ns 1281501 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72883729ns 1281504 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72884184ns 1281512 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72884355ns 1281515 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72884639ns 1281520 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72884923ns 1281525 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72885207ns 1281530 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72885662ns 1281538 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72885832ns 1281541 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72886116ns 1281546 1a110850 fd5ff06f jal x0, -44 +72886401ns 1281551 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72886685ns 1281556 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72887083ns 1281563 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72887253ns 1281566 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72887708ns 1281574 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72887878ns 1281577 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72888162ns 1281582 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72888447ns 1281587 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72888731ns 1281592 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72889185ns 1281600 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72889356ns 1281603 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72889640ns 1281608 1a110850 fd5ff06f jal x0, -44 +72889924ns 1281613 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72890208ns 1281618 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72890606ns 1281625 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72890777ns 1281628 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72891231ns 1281636 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72891402ns 1281639 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72891686ns 1281644 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72891970ns 1281649 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72892254ns 1281654 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72892709ns 1281662 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72892879ns 1281665 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72893164ns 1281670 1a110850 fd5ff06f jal x0, -44 +72893448ns 1281675 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72893732ns 1281680 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72894130ns 1281687 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72894300ns 1281690 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72894755ns 1281698 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72894925ns 1281701 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72895210ns 1281706 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72895494ns 1281711 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72895778ns 1281716 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72896232ns 1281724 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72896403ns 1281727 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72896687ns 1281732 1a110850 fd5ff06f jal x0, -44 +72896971ns 1281737 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72897255ns 1281742 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72897653ns 1281749 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72897824ns 1281752 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72898278ns 1281760 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72898449ns 1281763 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72898733ns 1281768 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72899017ns 1281773 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72899301ns 1281778 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72899756ns 1281786 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72899927ns 1281789 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72900211ns 1281794 1a110850 fd5ff06f jal x0, -44 +72900495ns 1281799 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72900779ns 1281804 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72901177ns 1281811 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72901347ns 1281814 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72901802ns 1281822 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72901973ns 1281825 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72902257ns 1281830 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72902541ns 1281835 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72902825ns 1281840 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72903280ns 1281848 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72903450ns 1281851 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72903734ns 1281856 1a110850 fd5ff06f jal x0, -44 +72904018ns 1281861 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72904303ns 1281866 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72904700ns 1281873 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72904871ns 1281876 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72905326ns 1281884 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72905496ns 1281887 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72905780ns 1281892 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72906064ns 1281897 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72906349ns 1281902 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72906803ns 1281910 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72906974ns 1281913 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72907258ns 1281918 1a110850 fd5ff06f jal x0, -44 +72907542ns 1281923 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72907826ns 1281928 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72908224ns 1281935 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72908395ns 1281938 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72908849ns 1281946 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72909020ns 1281949 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72909304ns 1281954 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72909588ns 1281959 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72909872ns 1281964 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72910327ns 1281972 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72910497ns 1281975 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72910781ns 1281980 1a110850 fd5ff06f jal x0, -44 +72911066ns 1281985 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72911350ns 1281990 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72911748ns 1281997 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72911918ns 1282000 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72912373ns 1282008 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72912543ns 1282011 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72912827ns 1282016 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72913112ns 1282021 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72913396ns 1282026 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72913850ns 1282034 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72914021ns 1282037 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72914305ns 1282042 1a110850 fd5ff06f jal x0, -44 +72914589ns 1282047 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72914873ns 1282052 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72915271ns 1282059 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72915442ns 1282062 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72915896ns 1282070 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72916067ns 1282073 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72916351ns 1282078 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72916635ns 1282083 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72916919ns 1282088 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72917374ns 1282096 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72917544ns 1282099 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72917829ns 1282104 1a110850 fd5ff06f jal x0, -44 +72918113ns 1282109 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72918397ns 1282114 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72918795ns 1282121 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72918965ns 1282124 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72919420ns 1282132 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72919590ns 1282135 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72919875ns 1282140 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72920159ns 1282145 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72920443ns 1282150 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72920898ns 1282158 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72921068ns 1282161 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72921352ns 1282166 1a110850 fd5ff06f jal x0, -44 +72921636ns 1282171 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72921921ns 1282176 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72922318ns 1282183 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72922489ns 1282186 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72922944ns 1282194 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72923114ns 1282197 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72923398ns 1282202 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72923682ns 1282207 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72923967ns 1282212 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72924421ns 1282220 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72924592ns 1282223 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72924876ns 1282228 1a110850 fd5ff06f jal x0, -44 +72925160ns 1282233 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72925444ns 1282238 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72925842ns 1282245 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72926012ns 1282248 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72926467ns 1282256 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72926638ns 1282259 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72926922ns 1282264 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72927206ns 1282269 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72927490ns 1282274 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72927945ns 1282282 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72928115ns 1282285 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72928399ns 1282290 1a110850 fd5ff06f jal x0, -44 +72928684ns 1282295 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72928968ns 1282300 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72929366ns 1282307 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72929536ns 1282310 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72929991ns 1282318 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72930161ns 1282321 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72930445ns 1282326 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72930730ns 1282331 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72931014ns 1282336 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72931468ns 1282344 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72931639ns 1282347 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72931923ns 1282352 1a110850 fd5ff06f jal x0, -44 +72932207ns 1282357 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72932491ns 1282362 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72932889ns 1282369 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72933060ns 1282372 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72933514ns 1282380 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72933685ns 1282383 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72933969ns 1282388 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72934253ns 1282393 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72934537ns 1282398 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72934992ns 1282406 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72935162ns 1282409 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72935447ns 1282414 1a110850 fd5ff06f jal x0, -44 +72935731ns 1282419 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72936015ns 1282424 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72936413ns 1282431 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72936583ns 1282434 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72937038ns 1282442 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72937208ns 1282445 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72937493ns 1282450 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72937777ns 1282455 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72938061ns 1282460 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72938515ns 1282468 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72938686ns 1282471 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72938970ns 1282476 1a110850 fd5ff06f jal x0, -44 +72939254ns 1282481 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72939538ns 1282486 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72939936ns 1282493 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72940107ns 1282496 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72940561ns 1282504 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72940732ns 1282507 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72941016ns 1282512 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72941300ns 1282517 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72941584ns 1282522 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72942039ns 1282530 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72942210ns 1282533 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72942494ns 1282538 1a110850 fd5ff06f jal x0, -44 +72942778ns 1282543 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72943062ns 1282548 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72943460ns 1282555 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72943630ns 1282558 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72944085ns 1282566 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72944256ns 1282569 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72944540ns 1282574 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72944824ns 1282579 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72945108ns 1282584 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72945563ns 1282592 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72945733ns 1282595 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72946017ns 1282600 1a110850 fd5ff06f jal x0, -44 +72946301ns 1282605 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72946586ns 1282610 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72946983ns 1282617 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72947154ns 1282620 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72947609ns 1282628 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72947779ns 1282631 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72948063ns 1282636 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72948347ns 1282641 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72948632ns 1282646 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72949086ns 1282654 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72949257ns 1282657 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72949541ns 1282662 1a110850 fd5ff06f jal x0, -44 +72949825ns 1282667 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72950109ns 1282672 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72950507ns 1282679 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72950678ns 1282682 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72951132ns 1282690 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72951303ns 1282693 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72951587ns 1282698 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72951871ns 1282703 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72952155ns 1282708 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72952610ns 1282716 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72952780ns 1282719 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72953064ns 1282724 1a110850 fd5ff06f jal x0, -44 +72953349ns 1282729 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72953633ns 1282734 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72954031ns 1282741 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72954201ns 1282744 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72954656ns 1282752 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72954826ns 1282755 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72955110ns 1282760 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72955395ns 1282765 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72955679ns 1282770 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72956133ns 1282778 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72956304ns 1282781 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72956588ns 1282786 1a110850 fd5ff06f jal x0, -44 +72956872ns 1282791 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72957156ns 1282796 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72957554ns 1282803 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72957725ns 1282806 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72958179ns 1282814 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72958350ns 1282817 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72958634ns 1282822 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72958918ns 1282827 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72959202ns 1282832 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72959657ns 1282840 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72959827ns 1282843 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72960112ns 1282848 1a110850 fd5ff06f jal x0, -44 +72960396ns 1282853 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72960680ns 1282858 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72961078ns 1282865 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72961248ns 1282868 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72961703ns 1282876 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72961873ns 1282879 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72962158ns 1282884 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72962442ns 1282889 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72962726ns 1282894 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72963181ns 1282902 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72963351ns 1282905 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72963635ns 1282910 1a110850 fd5ff06f jal x0, -44 +72963919ns 1282915 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72964204ns 1282920 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72964601ns 1282927 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72964772ns 1282930 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72965227ns 1282938 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72965397ns 1282941 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72965681ns 1282946 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72965965ns 1282951 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72966250ns 1282956 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72966704ns 1282964 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72966875ns 1282967 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72967159ns 1282972 1a110850 fd5ff06f jal x0, -44 +72967443ns 1282977 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72967727ns 1282982 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72968125ns 1282989 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72968295ns 1282992 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72968750ns 1283000 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72968921ns 1283003 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72969205ns 1283008 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72969489ns 1283013 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72969773ns 1283018 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72970228ns 1283026 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72970398ns 1283029 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72970682ns 1283034 1a110850 fd5ff06f jal x0, -44 +72970967ns 1283039 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72971251ns 1283044 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72971649ns 1283051 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72971819ns 1283054 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72972274ns 1283062 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72972444ns 1283065 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72972728ns 1283070 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72973013ns 1283075 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72973297ns 1283080 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72973751ns 1283088 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72973922ns 1283091 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72974206ns 1283096 1a110850 fd5ff06f jal x0, -44 +72974490ns 1283101 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72974774ns 1283106 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72975172ns 1283113 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72975343ns 1283116 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72975797ns 1283124 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72975968ns 1283127 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72976252ns 1283132 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72976536ns 1283137 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72976820ns 1283142 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72977275ns 1283150 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72977445ns 1283153 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72977730ns 1283158 1a110850 fd5ff06f jal x0, -44 +72978014ns 1283163 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72978298ns 1283168 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72978696ns 1283175 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72978866ns 1283178 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72979321ns 1283186 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72979491ns 1283189 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72979776ns 1283194 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72980060ns 1283199 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72980344ns 1283204 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72980799ns 1283212 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72980969ns 1283215 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72981253ns 1283220 1a110850 fd5ff06f jal x0, -44 +72981537ns 1283225 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72981821ns 1283230 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72982219ns 1283237 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72982390ns 1283240 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72982844ns 1283248 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72983015ns 1283251 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72983299ns 1283256 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72983583ns 1283261 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72983867ns 1283266 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72984322ns 1283274 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72984493ns 1283277 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72984777ns 1283282 1a110850 fd5ff06f jal x0, -44 +72985061ns 1283287 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72985345ns 1283292 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72985743ns 1283299 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72985913ns 1283302 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72986368ns 1283310 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72986539ns 1283313 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72986823ns 1283318 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72987107ns 1283323 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72987391ns 1283328 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72987846ns 1283336 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72988016ns 1283339 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72988300ns 1283344 1a110850 fd5ff06f jal x0, -44 +72988584ns 1283349 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72988869ns 1283354 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72989266ns 1283361 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72989437ns 1283364 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72989892ns 1283372 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72990062ns 1283375 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72990346ns 1283380 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72990630ns 1283385 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72990915ns 1283390 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72991369ns 1283398 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72991540ns 1283401 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72991824ns 1283406 1a110850 fd5ff06f jal x0, -44 +72992108ns 1283411 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72992392ns 1283416 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72992790ns 1283423 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72992961ns 1283426 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72993415ns 1283434 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72993586ns 1283437 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72993870ns 1283442 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72994154ns 1283447 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72994438ns 1283452 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72994893ns 1283460 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72995063ns 1283463 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72995347ns 1283468 1a110850 fd5ff06f jal x0, -44 +72995632ns 1283473 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72995916ns 1283478 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72996314ns 1283485 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72996484ns 1283488 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72996939ns 1283496 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +72997109ns 1283499 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +72997393ns 1283504 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72997678ns 1283509 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +72997962ns 1283514 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +72998416ns 1283522 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +72998587ns 1283525 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +72998871ns 1283530 1a110850 fd5ff06f jal x0, -44 +72999155ns 1283535 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +72999439ns 1283540 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +72999837ns 1283547 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73000008ns 1283550 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73000462ns 1283558 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73000633ns 1283561 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73000917ns 1283566 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73001201ns 1283571 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73001485ns 1283576 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73001940ns 1283584 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73002111ns 1283587 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73002395ns 1283592 1a110850 fd5ff06f jal x0, -44 +73002679ns 1283597 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73002963ns 1283602 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73003361ns 1283609 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73003531ns 1283612 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73003986ns 1283620 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73004156ns 1283623 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73004441ns 1283628 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73004725ns 1283633 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73005009ns 1283638 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73005464ns 1283646 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73005634ns 1283649 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73005918ns 1283654 1a110850 fd5ff06f jal x0, -44 +73006202ns 1283659 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73006487ns 1283664 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73006884ns 1283671 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73007055ns 1283674 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73007510ns 1283682 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73007680ns 1283685 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73007964ns 1283690 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73008248ns 1283695 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73008533ns 1283700 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73008987ns 1283708 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73009158ns 1283711 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73009442ns 1283716 1a110850 fd5ff06f jal x0, -44 +73009726ns 1283721 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73010010ns 1283726 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73010408ns 1283733 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73010578ns 1283736 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73011033ns 1283744 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73011204ns 1283747 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73011488ns 1283752 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73011772ns 1283757 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73012056ns 1283762 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73012511ns 1283770 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73012681ns 1283773 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73012965ns 1283778 1a110850 fd5ff06f jal x0, -44 +73013250ns 1283783 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73013534ns 1283788 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73013932ns 1283795 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73014102ns 1283798 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73014557ns 1283806 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73014727ns 1283809 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73015011ns 1283814 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73015296ns 1283819 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73015580ns 1283824 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73016034ns 1283832 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73016205ns 1283835 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73016489ns 1283840 1a110850 fd5ff06f jal x0, -44 +73016773ns 1283845 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73017057ns 1283850 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73017455ns 1283857 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73017626ns 1283860 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73018080ns 1283868 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73018251ns 1283871 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73018535ns 1283876 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73018819ns 1283881 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73019103ns 1283886 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73019558ns 1283894 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73019728ns 1283897 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73020013ns 1283902 1a110850 fd5ff06f jal x0, -44 +73020297ns 1283907 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73020581ns 1283912 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73020979ns 1283919 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73021149ns 1283922 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73021604ns 1283930 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73021774ns 1283933 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73022059ns 1283938 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73022343ns 1283943 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73022627ns 1283948 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73023082ns 1283956 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73023252ns 1283959 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73023536ns 1283964 1a110850 fd5ff06f jal x0, -44 +73023820ns 1283969 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73024104ns 1283974 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73024502ns 1283981 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73024673ns 1283984 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73025127ns 1283992 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73025298ns 1283995 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73025582ns 1284000 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73025866ns 1284005 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73026150ns 1284010 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73026605ns 1284018 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73026776ns 1284021 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73027060ns 1284026 1a110850 fd5ff06f jal x0, -44 +73027344ns 1284031 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73027628ns 1284036 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73028026ns 1284043 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73028196ns 1284046 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73028651ns 1284054 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73028822ns 1284057 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73029106ns 1284062 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73029390ns 1284067 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73029674ns 1284072 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73030129ns 1284080 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73030299ns 1284083 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73030583ns 1284088 1a110850 fd5ff06f jal x0, -44 +73030867ns 1284093 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73031152ns 1284098 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73031549ns 1284105 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73031720ns 1284108 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73032175ns 1284116 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73032345ns 1284119 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73032629ns 1284124 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73032913ns 1284129 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73033198ns 1284134 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73033652ns 1284142 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73033823ns 1284145 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73034107ns 1284150 1a110850 fd5ff06f jal x0, -44 +73034391ns 1284155 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73034675ns 1284160 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73035073ns 1284167 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73035244ns 1284170 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73035698ns 1284178 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73035869ns 1284181 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73036153ns 1284186 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73036437ns 1284191 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73036721ns 1284196 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73037176ns 1284204 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73037346ns 1284207 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73037631ns 1284212 1a110850 fd5ff06f jal x0, -44 +73037915ns 1284217 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73038199ns 1284222 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73038597ns 1284229 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73038767ns 1284232 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73039222ns 1284240 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73039392ns 1284243 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73039676ns 1284248 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73039961ns 1284253 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73040245ns 1284258 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73040699ns 1284266 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73040870ns 1284269 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73041154ns 1284274 1a110850 fd5ff06f jal x0, -44 +73041438ns 1284279 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73041722ns 1284284 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73042120ns 1284291 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73042291ns 1284294 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73042745ns 1284302 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73042916ns 1284305 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73043200ns 1284310 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73043484ns 1284315 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73043768ns 1284320 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73044223ns 1284328 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73044394ns 1284331 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73044678ns 1284336 1a110850 fd5ff06f jal x0, -44 +73044962ns 1284341 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73045246ns 1284346 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73045644ns 1284353 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73045814ns 1284356 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73046269ns 1284364 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73046439ns 1284367 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73046724ns 1284372 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73047008ns 1284377 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73047292ns 1284382 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73047747ns 1284390 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73047917ns 1284393 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73048201ns 1284398 1a110850 fd5ff06f jal x0, -44 +73048485ns 1284403 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73048770ns 1284408 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73049167ns 1284415 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73049338ns 1284418 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73049793ns 1284426 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73049963ns 1284429 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73050247ns 1284434 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73050531ns 1284439 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73050816ns 1284444 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73051270ns 1284452 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73051441ns 1284455 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73051725ns 1284460 1a110850 fd5ff06f jal x0, -44 +73052009ns 1284465 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73052293ns 1284470 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73052691ns 1284477 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73052861ns 1284480 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73053316ns 1284488 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73053487ns 1284491 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73053771ns 1284496 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73054055ns 1284501 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73054339ns 1284506 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73054794ns 1284514 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73054964ns 1284517 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73055248ns 1284522 1a110850 fd5ff06f jal x0, -44 +73055533ns 1284527 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73055817ns 1284532 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73056215ns 1284539 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73056385ns 1284542 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73056840ns 1284550 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73057010ns 1284553 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73057294ns 1284558 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73057579ns 1284563 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73057863ns 1284568 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73058317ns 1284576 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73058488ns 1284579 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73058772ns 1284584 1a110850 fd5ff06f jal x0, -44 +73059056ns 1284589 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73059340ns 1284594 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73059738ns 1284601 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73059909ns 1284604 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73060363ns 1284612 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73060534ns 1284615 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73060818ns 1284620 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73061102ns 1284625 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73061386ns 1284630 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73061841ns 1284638 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73062011ns 1284641 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73062296ns 1284646 1a110850 fd5ff06f jal x0, -44 +73062580ns 1284651 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73062864ns 1284656 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73063262ns 1284663 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73063432ns 1284666 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73063887ns 1284674 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73064057ns 1284677 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73064342ns 1284682 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73064626ns 1284687 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73064910ns 1284692 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73065365ns 1284700 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73065535ns 1284703 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73065819ns 1284708 1a110850 fd5ff06f jal x0, -44 +73066103ns 1284713 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73066387ns 1284718 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73066785ns 1284725 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73066956ns 1284728 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73067410ns 1284736 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73067581ns 1284739 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73067865ns 1284744 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73068149ns 1284749 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73068433ns 1284754 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73068888ns 1284762 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73069059ns 1284765 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73069343ns 1284770 1a110850 fd5ff06f jal x0, -44 +73069627ns 1284775 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73069911ns 1284780 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73070309ns 1284787 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73070479ns 1284790 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73070934ns 1284798 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73071105ns 1284801 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73071389ns 1284806 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73071673ns 1284811 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73071957ns 1284816 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73072412ns 1284824 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73072582ns 1284827 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73072866ns 1284832 1a110850 fd5ff06f jal x0, -44 +73073151ns 1284837 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73073435ns 1284842 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73073832ns 1284849 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73074003ns 1284852 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73074458ns 1284860 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73074628ns 1284863 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73074912ns 1284868 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73075196ns 1284873 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73075481ns 1284878 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73075935ns 1284886 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73076106ns 1284889 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73076390ns 1284894 1a110850 fd5ff06f jal x0, -44 +73076674ns 1284899 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73076958ns 1284904 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73077356ns 1284911 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73077527ns 1284914 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73077981ns 1284922 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73078152ns 1284925 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73078436ns 1284930 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73078720ns 1284935 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73079004ns 1284940 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73079459ns 1284948 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73079629ns 1284951 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73079914ns 1284956 1a110850 fd5ff06f jal x0, -44 +73080198ns 1284961 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73080482ns 1284966 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73080880ns 1284973 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73081050ns 1284976 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73081505ns 1284984 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73081675ns 1284987 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73081959ns 1284992 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73082244ns 1284997 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73082528ns 1285002 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73082982ns 1285010 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73083153ns 1285013 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73083437ns 1285018 1a110850 fd5ff06f jal x0, -44 +73083721ns 1285023 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73084005ns 1285028 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73084403ns 1285035 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73084574ns 1285038 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73085028ns 1285046 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73085199ns 1285049 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73085483ns 1285054 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73085767ns 1285059 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73086051ns 1285064 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73086506ns 1285072 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73086677ns 1285075 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73086961ns 1285080 1a110850 fd5ff06f jal x0, -44 +73087245ns 1285085 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73087529ns 1285090 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73087927ns 1285097 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73088097ns 1285100 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73088552ns 1285108 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73088722ns 1285111 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73089007ns 1285116 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73089291ns 1285121 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73089575ns 1285126 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73090030ns 1285134 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73090200ns 1285137 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73090484ns 1285142 1a110850 fd5ff06f jal x0, -44 +73090768ns 1285147 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73091053ns 1285152 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73091450ns 1285159 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73091621ns 1285162 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73092076ns 1285170 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73092246ns 1285173 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73092530ns 1285178 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73092814ns 1285183 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73093099ns 1285188 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73093553ns 1285196 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73093724ns 1285199 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73094008ns 1285204 1a110850 fd5ff06f jal x0, -44 +73094292ns 1285209 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73094576ns 1285214 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73094974ns 1285221 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73095144ns 1285224 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73095599ns 1285232 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73095770ns 1285235 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73096054ns 1285240 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73096338ns 1285245 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73096622ns 1285250 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73097077ns 1285258 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73097247ns 1285261 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73097531ns 1285266 1a110850 fd5ff06f jal x0, -44 +73097816ns 1285271 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73098100ns 1285276 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73098498ns 1285283 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73098668ns 1285286 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73099123ns 1285294 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73099293ns 1285297 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73099577ns 1285302 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73099862ns 1285307 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73100146ns 1285312 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73100600ns 1285320 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73100771ns 1285323 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73101055ns 1285328 1a110850 fd5ff06f jal x0, -44 +73101339ns 1285333 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73101623ns 1285338 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73102021ns 1285345 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73102192ns 1285348 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73102646ns 1285356 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73102817ns 1285359 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73103101ns 1285364 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73103385ns 1285369 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73103669ns 1285374 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73104124ns 1285382 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73104294ns 1285385 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73104579ns 1285390 1a110850 fd5ff06f jal x0, -44 +73104863ns 1285395 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73105147ns 1285400 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73105545ns 1285407 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73105715ns 1285410 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73106170ns 1285418 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73106340ns 1285421 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73106625ns 1285426 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73106909ns 1285431 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73107193ns 1285436 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73107648ns 1285444 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73107818ns 1285447 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73108102ns 1285452 1a110850 fd5ff06f jal x0, -44 +73108386ns 1285457 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73108671ns 1285462 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73109068ns 1285469 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73109239ns 1285472 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73109693ns 1285480 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73109864ns 1285483 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73110148ns 1285488 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73110432ns 1285493 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73110716ns 1285498 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73111171ns 1285506 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73111342ns 1285509 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73111626ns 1285514 1a110850 fd5ff06f jal x0, -44 +73111910ns 1285519 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73112194ns 1285524 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73112592ns 1285531 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73112762ns 1285534 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73113217ns 1285542 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73113388ns 1285545 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73113672ns 1285550 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73113956ns 1285555 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73114240ns 1285560 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73114695ns 1285568 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73114865ns 1285571 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73115149ns 1285576 1a110850 fd5ff06f jal x0, -44 +73115434ns 1285581 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73115718ns 1285586 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73116115ns 1285593 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73116286ns 1285596 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73116741ns 1285604 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73116911ns 1285607 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73117195ns 1285612 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73117479ns 1285617 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73117764ns 1285622 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73118218ns 1285630 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73118389ns 1285633 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73118673ns 1285638 1a110850 fd5ff06f jal x0, -44 +73118957ns 1285643 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73119241ns 1285648 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73119639ns 1285655 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73119810ns 1285658 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73120264ns 1285666 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73120435ns 1285669 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73120719ns 1285674 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73121003ns 1285679 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73121287ns 1285684 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73121742ns 1285692 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73121912ns 1285695 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73122197ns 1285700 1a110850 fd5ff06f jal x0, -44 +73122481ns 1285705 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73122765ns 1285710 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73123163ns 1285717 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73123333ns 1285720 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73123788ns 1285728 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73123958ns 1285731 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73124242ns 1285736 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73124527ns 1285741 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73124811ns 1285746 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73125265ns 1285754 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73125436ns 1285757 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73125720ns 1285762 1a110850 fd5ff06f jal x0, -44 +73126004ns 1285767 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73126288ns 1285772 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73126686ns 1285779 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73126857ns 1285782 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73127311ns 1285790 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73127482ns 1285793 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73127766ns 1285798 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73128050ns 1285803 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73128334ns 1285808 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73128789ns 1285816 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73128960ns 1285819 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73129244ns 1285824 1a110850 fd5ff06f jal x0, -44 +73129528ns 1285829 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73129812ns 1285834 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73130210ns 1285841 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73130380ns 1285844 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73130835ns 1285852 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73131005ns 1285855 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73131290ns 1285860 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73131574ns 1285865 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73131858ns 1285870 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73132313ns 1285878 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73132483ns 1285881 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73132767ns 1285886 1a110850 fd5ff06f jal x0, -44 +73133051ns 1285891 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73133336ns 1285896 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73133733ns 1285903 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73133904ns 1285906 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73134359ns 1285914 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73134529ns 1285917 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73134813ns 1285922 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73135097ns 1285927 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73135382ns 1285932 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73135836ns 1285940 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73136007ns 1285943 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73136291ns 1285948 1a110850 fd5ff06f jal x0, -44 +73136575ns 1285953 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73136859ns 1285958 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73137257ns 1285965 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73137427ns 1285968 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73137882ns 1285976 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73138053ns 1285979 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73138337ns 1285984 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73138621ns 1285989 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73138905ns 1285994 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73139360ns 1286002 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73139530ns 1286005 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73139814ns 1286010 1a110850 fd5ff06f jal x0, -44 +73140099ns 1286015 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73140383ns 1286020 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73140781ns 1286027 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73140951ns 1286030 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73141406ns 1286038 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73141576ns 1286041 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73141860ns 1286046 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73142145ns 1286051 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73142429ns 1286056 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73142883ns 1286064 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73143054ns 1286067 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73143338ns 1286072 1a110850 fd5ff06f jal x0, -44 +73143622ns 1286077 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73143906ns 1286082 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73144304ns 1286089 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73144475ns 1286092 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73144929ns 1286100 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73145100ns 1286103 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73145384ns 1286108 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73145668ns 1286113 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73145952ns 1286118 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73146407ns 1286126 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73146577ns 1286129 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73146862ns 1286134 1a110850 fd5ff06f jal x0, -44 +73147146ns 1286139 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73147430ns 1286144 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73147828ns 1286151 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73147998ns 1286154 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73148453ns 1286162 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73148623ns 1286165 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73148908ns 1286170 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73149192ns 1286175 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73149476ns 1286180 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73149931ns 1286188 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73150101ns 1286191 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73150385ns 1286196 1a110850 fd5ff06f jal x0, -44 +73150669ns 1286201 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73150954ns 1286206 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73151351ns 1286213 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73151522ns 1286216 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73151976ns 1286224 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73152147ns 1286227 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73152431ns 1286232 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73152715ns 1286237 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73152999ns 1286242 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73153454ns 1286250 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73153625ns 1286253 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73153909ns 1286258 1a110850 fd5ff06f jal x0, -44 +73154193ns 1286263 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73154477ns 1286268 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73154875ns 1286275 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73155045ns 1286278 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73155500ns 1286286 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73155671ns 1286289 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73155955ns 1286294 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73156239ns 1286299 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73156523ns 1286304 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73156978ns 1286312 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73157148ns 1286315 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73157432ns 1286320 1a110850 fd5ff06f jal x0, -44 +73157717ns 1286325 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73158001ns 1286330 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73158399ns 1286337 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73158569ns 1286340 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73159024ns 1286348 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73159194ns 1286351 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73159478ns 1286356 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73159762ns 1286361 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73160047ns 1286366 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73160501ns 1286374 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73160672ns 1286377 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73160956ns 1286382 1a110850 fd5ff06f jal x0, -44 +73161240ns 1286387 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73161524ns 1286392 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73161922ns 1286399 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73162093ns 1286402 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73162547ns 1286410 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73162718ns 1286413 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73163002ns 1286418 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73163286ns 1286423 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73163570ns 1286428 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73164025ns 1286436 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73164195ns 1286439 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73164480ns 1286444 1a110850 fd5ff06f jal x0, -44 +73164764ns 1286449 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73165048ns 1286454 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73165446ns 1286461 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73165616ns 1286464 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73166071ns 1286472 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73166241ns 1286475 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73166525ns 1286480 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73166810ns 1286485 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73167094ns 1286490 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73167548ns 1286498 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73167719ns 1286501 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73168003ns 1286506 1a110850 fd5ff06f jal x0, -44 +73168287ns 1286511 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73168571ns 1286516 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73168969ns 1286523 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73169140ns 1286526 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73169594ns 1286534 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73169765ns 1286537 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73170049ns 1286542 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73170333ns 1286547 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73170617ns 1286552 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73171072ns 1286560 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73171243ns 1286563 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73171527ns 1286568 1a110850 fd5ff06f jal x0, -44 +73171811ns 1286573 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73172095ns 1286578 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73172493ns 1286585 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73172663ns 1286588 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73173118ns 1286596 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73173288ns 1286599 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73173573ns 1286604 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73173857ns 1286609 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73174141ns 1286614 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73174596ns 1286622 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73174766ns 1286625 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73175050ns 1286630 1a110850 fd5ff06f jal x0, -44 +73175334ns 1286635 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73175619ns 1286640 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73176016ns 1286647 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73176187ns 1286650 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73176642ns 1286658 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73176812ns 1286661 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73177096ns 1286666 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73177380ns 1286671 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73177665ns 1286676 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73178119ns 1286684 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73178290ns 1286687 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73178574ns 1286692 1a110850 fd5ff06f jal x0, -44 +73178858ns 1286697 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73179142ns 1286702 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73179540ns 1286709 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73179711ns 1286712 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73180165ns 1286720 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73180336ns 1286723 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73180620ns 1286728 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73180904ns 1286733 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73181188ns 1286738 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73181643ns 1286746 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73181813ns 1286749 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73182097ns 1286754 1a110850 fd5ff06f jal x0, -44 +73182382ns 1286759 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73182666ns 1286764 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73183064ns 1286771 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73183234ns 1286774 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73183689ns 1286782 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73183859ns 1286785 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73184143ns 1286790 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73184428ns 1286795 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73184712ns 1286800 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73185166ns 1286808 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73185337ns 1286811 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73185621ns 1286816 1a110850 fd5ff06f jal x0, -44 +73185905ns 1286821 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73186189ns 1286826 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73186587ns 1286833 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73186758ns 1286836 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73187212ns 1286844 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73187383ns 1286847 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73187667ns 1286852 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73187951ns 1286857 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73188235ns 1286862 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73188690ns 1286870 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73188860ns 1286873 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73189145ns 1286878 1a110850 fd5ff06f jal x0, -44 +73189429ns 1286883 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73189713ns 1286888 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73190111ns 1286895 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73190281ns 1286898 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73190736ns 1286906 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73190906ns 1286909 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73191191ns 1286914 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73191475ns 1286919 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73191759ns 1286924 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73192214ns 1286932 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73192384ns 1286935 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73192668ns 1286940 1a110850 fd5ff06f jal x0, -44 +73192952ns 1286945 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73193237ns 1286950 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73193634ns 1286957 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73193805ns 1286960 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73194259ns 1286968 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73194430ns 1286971 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73194714ns 1286976 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73194998ns 1286981 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73195282ns 1286986 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73195737ns 1286994 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73195908ns 1286997 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73196192ns 1287002 1a110850 fd5ff06f jal x0, -44 +73196476ns 1287007 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73196760ns 1287012 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73197158ns 1287019 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73197328ns 1287022 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73197783ns 1287030 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73197954ns 1287033 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73198238ns 1287038 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73198522ns 1287043 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73198806ns 1287048 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73199261ns 1287056 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73199431ns 1287059 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73199715ns 1287064 1a110850 fd5ff06f jal x0, -44 +73200000ns 1287069 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73200284ns 1287074 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73200682ns 1287081 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73200852ns 1287084 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73201307ns 1287092 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73201477ns 1287095 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73201761ns 1287100 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73202045ns 1287105 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73202330ns 1287110 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73202784ns 1287118 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73202955ns 1287121 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73203239ns 1287126 1a110850 fd5ff06f jal x0, -44 +73203523ns 1287131 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73203807ns 1287136 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73204205ns 1287143 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73204376ns 1287146 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73204830ns 1287154 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73205001ns 1287157 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73205285ns 1287162 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73205569ns 1287167 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73205853ns 1287172 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73206308ns 1287180 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73206478ns 1287183 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73206763ns 1287188 1a110850 fd5ff06f jal x0, -44 +73207047ns 1287193 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73207331ns 1287198 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73207729ns 1287205 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73207899ns 1287208 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73208354ns 1287216 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73208524ns 1287219 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73208808ns 1287224 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73209093ns 1287229 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73209377ns 1287234 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73209831ns 1287242 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73210002ns 1287245 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73210286ns 1287250 1a110850 fd5ff06f jal x0, -44 +73210570ns 1287255 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73210854ns 1287260 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73211252ns 1287267 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73211423ns 1287270 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73211877ns 1287278 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73212048ns 1287281 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73212332ns 1287286 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73212616ns 1287291 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73212900ns 1287296 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73213355ns 1287304 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73213526ns 1287307 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73213810ns 1287312 1a110850 fd5ff06f jal x0, -44 +73214094ns 1287317 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73214378ns 1287322 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73214776ns 1287329 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73214946ns 1287332 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73215401ns 1287340 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73215571ns 1287343 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73215856ns 1287348 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73216140ns 1287353 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73216424ns 1287358 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73216879ns 1287366 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73217049ns 1287369 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73217333ns 1287374 1a110850 fd5ff06f jal x0, -44 +73217617ns 1287379 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73217902ns 1287384 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73218299ns 1287391 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73218470ns 1287394 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73218925ns 1287402 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73219095ns 1287405 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73219379ns 1287410 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73219663ns 1287415 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73219948ns 1287420 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73220402ns 1287428 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73220573ns 1287431 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73220857ns 1287436 1a110850 fd5ff06f jal x0, -44 +73221141ns 1287441 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73221425ns 1287446 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73221823ns 1287453 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73221994ns 1287456 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73222448ns 1287464 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73222619ns 1287467 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73222903ns 1287472 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73223187ns 1287477 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73223471ns 1287482 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73223926ns 1287490 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73224096ns 1287493 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73224380ns 1287498 1a110850 fd5ff06f jal x0, -44 +73224665ns 1287503 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73224949ns 1287508 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73225347ns 1287515 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73225517ns 1287518 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73225972ns 1287526 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73226142ns 1287529 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73226426ns 1287534 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73226711ns 1287539 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73226995ns 1287544 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73227449ns 1287552 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73227620ns 1287555 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73227904ns 1287560 1a110850 fd5ff06f jal x0, -44 +73228188ns 1287565 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73228472ns 1287570 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73228870ns 1287577 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73229041ns 1287580 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73229495ns 1287588 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73229666ns 1287591 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73229950ns 1287596 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73230234ns 1287601 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73230518ns 1287606 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73230973ns 1287614 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73231143ns 1287617 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73231428ns 1287622 1a110850 fd5ff06f jal x0, -44 +73231712ns 1287627 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73231996ns 1287632 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73232394ns 1287639 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73232564ns 1287642 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73233019ns 1287650 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73233189ns 1287653 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73233474ns 1287658 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73233758ns 1287663 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73234042ns 1287668 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73234497ns 1287676 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73234667ns 1287679 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73234951ns 1287684 1a110850 fd5ff06f jal x0, -44 +73235235ns 1287689 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73235520ns 1287694 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73235917ns 1287701 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73236088ns 1287704 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73236543ns 1287712 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73236713ns 1287715 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73236997ns 1287720 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73237281ns 1287725 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73237565ns 1287730 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73238020ns 1287738 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73238191ns 1287741 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73238475ns 1287746 1a110850 fd5ff06f jal x0, -44 +73238759ns 1287751 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73239043ns 1287756 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73239441ns 1287763 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73239611ns 1287766 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73240066ns 1287774 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73240237ns 1287777 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73240521ns 1287782 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73240805ns 1287787 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73241089ns 1287792 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73241544ns 1287800 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73241714ns 1287803 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73241998ns 1287808 1a110850 fd5ff06f jal x0, -44 +73242283ns 1287813 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73242567ns 1287818 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73242965ns 1287825 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73243135ns 1287828 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73243590ns 1287836 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73243760ns 1287839 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73244044ns 1287844 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73244328ns 1287849 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73244613ns 1287854 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73245067ns 1287862 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73245238ns 1287865 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73245522ns 1287870 1a110850 fd5ff06f jal x0, -44 +73245806ns 1287875 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73246090ns 1287880 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73246488ns 1287887 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73246659ns 1287890 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73247113ns 1287898 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73247284ns 1287901 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73247568ns 1287906 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73247852ns 1287911 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73248136ns 1287916 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73248591ns 1287924 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73248761ns 1287927 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73249046ns 1287932 1a110850 fd5ff06f jal x0, -44 +73249330ns 1287937 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73249614ns 1287942 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73250012ns 1287949 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73250182ns 1287952 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73250637ns 1287960 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73250807ns 1287963 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73251091ns 1287968 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73251376ns 1287973 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73251660ns 1287978 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73252114ns 1287986 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73252285ns 1287989 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73252569ns 1287994 1a110850 fd5ff06f jal x0, -44 +73252853ns 1287999 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73253137ns 1288004 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73253535ns 1288011 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73253706ns 1288014 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73254160ns 1288022 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73254331ns 1288025 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73254615ns 1288030 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73254899ns 1288035 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73255183ns 1288040 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73255638ns 1288048 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73255809ns 1288051 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73256093ns 1288056 1a110850 fd5ff06f jal x0, -44 +73256377ns 1288061 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73256661ns 1288066 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73257059ns 1288073 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73257229ns 1288076 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73257684ns 1288084 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73257855ns 1288087 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73258139ns 1288092 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73258423ns 1288097 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73258707ns 1288102 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73259162ns 1288110 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73259332ns 1288113 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73259616ns 1288118 1a110850 fd5ff06f jal x0, -44 +73259900ns 1288123 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73260185ns 1288128 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73260582ns 1288135 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73260753ns 1288138 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73261208ns 1288146 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73261378ns 1288149 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73261662ns 1288154 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73261946ns 1288159 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73262231ns 1288164 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73262685ns 1288172 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73262856ns 1288175 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73263140ns 1288180 1a110850 fd5ff06f jal x0, -44 +73263424ns 1288185 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73263708ns 1288190 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73264106ns 1288197 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73264277ns 1288200 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73264731ns 1288208 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73264902ns 1288211 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73265186ns 1288216 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73265470ns 1288221 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73265754ns 1288226 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73266209ns 1288234 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73266379ns 1288237 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73266663ns 1288242 1a110850 fd5ff06f jal x0, -44 +73266948ns 1288247 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73267232ns 1288252 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73267630ns 1288259 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73267800ns 1288262 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73268255ns 1288270 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73268425ns 1288273 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73268709ns 1288278 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73268994ns 1288283 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73269278ns 1288288 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73269732ns 1288296 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73269903ns 1288299 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73270187ns 1288304 1a110850 fd5ff06f jal x0, -44 +73270471ns 1288309 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73270755ns 1288314 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73271153ns 1288321 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73271324ns 1288324 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73271778ns 1288332 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73271949ns 1288335 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73272233ns 1288340 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73272517ns 1288345 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73272801ns 1288350 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73273256ns 1288358 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73273426ns 1288361 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73273711ns 1288366 1a110850 fd5ff06f jal x0, -44 +73273995ns 1288371 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73274279ns 1288376 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73274677ns 1288383 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73274847ns 1288386 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73275302ns 1288394 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73275472ns 1288397 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73275757ns 1288402 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73276041ns 1288407 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73276325ns 1288412 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73276780ns 1288420 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73276950ns 1288423 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73277234ns 1288428 1a110850 fd5ff06f jal x0, -44 +73277518ns 1288433 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73277803ns 1288438 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73278200ns 1288445 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73278371ns 1288448 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73278826ns 1288456 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73278996ns 1288459 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73279280ns 1288464 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73279564ns 1288469 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73279848ns 1288474 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73280303ns 1288482 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73280474ns 1288485 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73280758ns 1288490 1a110850 fd5ff06f jal x0, -44 +73281042ns 1288495 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73281326ns 1288500 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73281724ns 1288507 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73281894ns 1288510 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73282349ns 1288518 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73282520ns 1288521 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73282804ns 1288526 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73283088ns 1288531 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73283372ns 1288536 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73283827ns 1288544 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73283997ns 1288547 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73284281ns 1288552 1a110850 fd5ff06f jal x0, -44 +73284566ns 1288557 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73284850ns 1288562 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73285248ns 1288569 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73285418ns 1288572 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73285873ns 1288580 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73286043ns 1288583 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73286327ns 1288588 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73286611ns 1288593 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73286896ns 1288598 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73287350ns 1288606 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73287521ns 1288609 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73287805ns 1288614 1a110850 fd5ff06f jal x0, -44 +73288089ns 1288619 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73288373ns 1288624 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73288771ns 1288631 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73288942ns 1288634 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73289396ns 1288642 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73289567ns 1288645 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73289851ns 1288650 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73290135ns 1288655 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73290419ns 1288660 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73290874ns 1288668 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73291044ns 1288671 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73291329ns 1288676 1a110850 fd5ff06f jal x0, -44 +73291613ns 1288681 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73291897ns 1288686 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73292295ns 1288693 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73292465ns 1288696 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73292920ns 1288704 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73293090ns 1288707 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73293375ns 1288712 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73293659ns 1288717 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73293943ns 1288722 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73294397ns 1288730 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73294568ns 1288733 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73294852ns 1288738 1a110850 fd5ff06f jal x0, -44 +73295136ns 1288743 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73295420ns 1288748 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73295818ns 1288755 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73295989ns 1288758 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73296443ns 1288766 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73296614ns 1288769 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73296898ns 1288774 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73297182ns 1288779 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73297466ns 1288784 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73297921ns 1288792 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73298092ns 1288795 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73298376ns 1288800 1a110850 fd5ff06f jal x0, -44 +73298660ns 1288805 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73298944ns 1288810 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73299342ns 1288817 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73299512ns 1288820 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73299967ns 1288828 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73300138ns 1288831 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73300422ns 1288836 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73300706ns 1288841 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73300990ns 1288846 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73301445ns 1288854 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73301615ns 1288857 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73301899ns 1288862 1a110850 fd5ff06f jal x0, -44 +73302183ns 1288867 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73302468ns 1288872 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73302865ns 1288879 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73303036ns 1288882 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73303491ns 1288890 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73303661ns 1288893 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73303945ns 1288898 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73304229ns 1288903 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73304514ns 1288908 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73304968ns 1288916 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73305139ns 1288919 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73305423ns 1288924 1a110850 fd5ff06f jal x0, -44 +73305707ns 1288929 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73305991ns 1288934 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73306389ns 1288941 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73306560ns 1288944 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73307014ns 1288952 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73307185ns 1288955 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73307469ns 1288960 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73307753ns 1288965 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73308037ns 1288970 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73308492ns 1288978 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73308662ns 1288981 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73308946ns 1288986 1a110850 fd5ff06f jal x0, -44 +73309231ns 1288991 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73309515ns 1288996 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73309913ns 1289003 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73310083ns 1289006 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73310538ns 1289014 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73310708ns 1289017 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73310992ns 1289022 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73311277ns 1289027 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73311561ns 1289032 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73312015ns 1289040 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73312186ns 1289043 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73312470ns 1289048 1a110850 fd5ff06f jal x0, -44 +73312754ns 1289053 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73313038ns 1289058 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73313436ns 1289065 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73313607ns 1289068 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73314061ns 1289076 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73314232ns 1289079 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73314516ns 1289084 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73314800ns 1289089 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73315084ns 1289094 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73315539ns 1289102 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73315709ns 1289105 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73315994ns 1289110 1a110850 fd5ff06f jal x0, -44 +73316278ns 1289115 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73316562ns 1289120 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73316960ns 1289127 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73317130ns 1289130 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73317585ns 1289138 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73317755ns 1289141 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73318040ns 1289146 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73318324ns 1289151 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73318608ns 1289156 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73319063ns 1289164 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73319233ns 1289167 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73319517ns 1289172 1a110850 fd5ff06f jal x0, -44 +73319801ns 1289177 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73320086ns 1289182 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73320483ns 1289189 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73320654ns 1289192 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73321109ns 1289200 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73321279ns 1289203 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73321563ns 1289208 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73321847ns 1289213 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73322131ns 1289218 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73322586ns 1289226 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73322757ns 1289229 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73323041ns 1289234 1a110850 fd5ff06f jal x0, -44 +73323325ns 1289239 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73323609ns 1289244 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73324007ns 1289251 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73324177ns 1289254 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73324632ns 1289262 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73324803ns 1289265 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73325087ns 1289270 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73325371ns 1289275 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73325655ns 1289280 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73326110ns 1289288 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73326280ns 1289291 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73326564ns 1289296 1a110850 fd5ff06f jal x0, -44 +73326849ns 1289301 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73327133ns 1289306 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73327531ns 1289313 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73327701ns 1289316 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73328156ns 1289324 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73328326ns 1289327 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73328610ns 1289332 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73328895ns 1289337 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73329179ns 1289342 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73329633ns 1289350 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73329804ns 1289353 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73330088ns 1289358 1a110850 fd5ff06f jal x0, -44 +73330372ns 1289363 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73330656ns 1289368 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73331054ns 1289375 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73331225ns 1289378 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73331679ns 1289386 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73331850ns 1289389 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73332134ns 1289394 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73332418ns 1289399 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73332702ns 1289404 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73333157ns 1289412 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73333327ns 1289415 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73333612ns 1289420 1a110850 fd5ff06f jal x0, -44 +73333896ns 1289425 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73334180ns 1289430 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73334578ns 1289437 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73334748ns 1289440 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73335203ns 1289448 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73335373ns 1289451 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73335658ns 1289456 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73335942ns 1289461 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73336226ns 1289466 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73336680ns 1289474 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73336851ns 1289477 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73337135ns 1289482 1a110850 fd5ff06f jal x0, -44 +73337419ns 1289487 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73337703ns 1289492 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73338101ns 1289499 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73338272ns 1289502 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73338726ns 1289510 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73338897ns 1289513 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73339181ns 1289518 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73339465ns 1289523 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73339749ns 1289528 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73340204ns 1289536 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73340375ns 1289539 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73340659ns 1289544 1a110850 fd5ff06f jal x0, -44 +73340943ns 1289549 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73341227ns 1289554 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73341625ns 1289561 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73341795ns 1289564 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73342250ns 1289572 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73342421ns 1289575 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73342705ns 1289580 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73342989ns 1289585 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73343273ns 1289590 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73343728ns 1289598 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73343898ns 1289601 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73344182ns 1289606 1a110850 fd5ff06f jal x0, -44 +73344466ns 1289611 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73344751ns 1289616 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73345148ns 1289623 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73345319ns 1289626 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73345774ns 1289634 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73345944ns 1289637 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73346228ns 1289642 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73346512ns 1289647 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73346797ns 1289652 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73347251ns 1289660 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73347422ns 1289663 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73347706ns 1289668 1a110850 fd5ff06f jal x0, -44 +73347990ns 1289673 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73348274ns 1289678 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73348672ns 1289685 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73348843ns 1289688 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73349297ns 1289696 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73349468ns 1289699 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73349752ns 1289704 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73350036ns 1289709 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73350320ns 1289714 1a110844 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73350775ns 1289722 1a110848 00247413 andi x8, x8, 2 x8=00000000 x8:00000000 +73350945ns 1289725 1a11084c fa041ce3 bne x8, x0, -72 x8:00000000 +73351229ns 1289730 1a110850 fd5ff06f jal x0, -44 +73351514ns 1289735 1a110824 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73351798ns 1289740 1a110828 10852023 sw x8, 256(x10) x8:000003e0 x10:1a110000 PA:1a110100 +73352196ns 1289747 1a11082c 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73352366ns 1289750 1a110830 40044403 lbu x8, 1024(x8) x8=00000000 x8:1a1103e0 PA:1a1107e0 +73352821ns 1289758 1a110834 00147413 andi x8, x8, 1 x8=00000000 x8:00000000 +73352991ns 1289761 1a110838 02041c63 bne x8, x0, 56 x8:00000000 +73353275ns 1289766 1a11083c f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73353560ns 1289771 1a110840 00a40433 add x8, x8, x10 x8=1a1103e0 x8:000003e0 x10:1a110000 +73353844ns 1289776 1a110844 40044403 lbu x8, 1024(x8) x8=00000002 x8:1a1103e0 PA:1a1107e0 +73354298ns 1289784 1a110848 00247413 andi x8, x8, 2 x8=00000002 x8:00000002 +73354469ns 1289787 1a11084c fa041ce3 bne x8, x0, -72 x8:00000002 +73355037ns 1289797 1a110804 07c0006f jal x0, 124 +73355321ns 1289802 1a110880 f1402473 csrrs x8, x0, 0xf14 x8=000003e0 +73355606ns 1289807 1a110884 10852423 sw x8, 264(x10) x8:000003e0 x10:1a110000 PA:1a110108 +73356003ns 1289814 1a110888 7b302573 csrrs x10, x0, 0x7b3 x10=xxxxxxxx +73356231ns 1289818 1a11088c 7b202473 csrrs x8, x0, 0x7b2 x8=xxxxxxxx +73356458ns 1289822 1a110890 7b200073 dret +73356799ns 1289828 1c000880 00009197 auipc x3, 0x9000 x3=1c009880 +73356856ns 1289829 1c000884 b5c18193 addi x3, x3, -1188 x3=1c0093dc x3:1c009880 +73356913ns 1289830 1c000888 f1402573 csrrs x10, x0, 0xf14 x10=000003e0 +73356970ns 1289831 1c00088c 01f57593 andi x11, x10, 31 x11=00000000 x10:000003e0 +73357026ns 1289832 1c000890 00555513 srli x10, x10, 0x5 x10=0000001f x10:000003e0 +73357083ns 1289833 1c000892 00019117 auipc x2, 0x19000 x2=1c019892 +73357140ns 1289834 1c000896 11e10113 addi x2, x2, 286 x2=1c0199b0 x2:1c019892 +73357197ns 1289835 1c00089a 00000517 auipc x10, 0x0 x10=1c00089a +73357254ns 1289836 1c00089e f6650513 addi x10, x10, -154 x10=1c000800 x10:1c00089a +73357311ns 1289837 1c0008a2 00156513 ori x10, x10, 1 x10=1c000801 x10:1c000800 +73357367ns 1289838 1c0008a6 30551073 csrrw x0, x10, 0x305 x10:1c000801 +73357424ns 1289839 1c0008aa 00008297 auipc x5, 0x8000 x5=1c0088aa +73357481ns 1289840 1c0008ae 39e28293 addi x5, x5, 926 x5=1c008c48 x5:1c0088aa +73357538ns 1289841 1c0008b2 dc818313 addi x6, x3, -568 x6=1c0091a4 x3:1c0093dc +73357595ns 1289842 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008c48 PA:1c008c48 +73357651ns 1289843 1c0008ba 00428293 addi x5, x5, 4 x5=1c008c4c x5:1c008c48 +73357708ns 1289844 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008c4c x6:1c0091a4 +73357936ns 1289848 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008c4c PA:1c008c4c +73357992ns 1289849 1c0008ba 00428293 addi x5, x5, 4 x5=1c008c50 x5:1c008c4c +73358049ns 1289850 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008c50 x6:1c0091a4 +73358277ns 1289854 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008c50 PA:1c008c50 +73358333ns 1289855 1c0008ba 00428293 addi x5, x5, 4 x5=1c008c54 x5:1c008c50 +73358390ns 1289856 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008c54 x6:1c0091a4 +73358618ns 1289860 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008c54 PA:1c008c54 +73358674ns 1289861 1c0008ba 00428293 addi x5, x5, 4 x5=1c008c58 x5:1c008c54 +73358731ns 1289862 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008c58 x6:1c0091a4 +73358959ns 1289866 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008c58 PA:1c008c58 +73359015ns 1289867 1c0008ba 00428293 addi x5, x5, 4 x5=1c008c5c x5:1c008c58 +73359072ns 1289868 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008c5c x6:1c0091a4 +73359300ns 1289872 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008c5c PA:1c008c5c +73359356ns 1289873 1c0008ba 00428293 addi x5, x5, 4 x5=1c008c60 x5:1c008c5c +73359413ns 1289874 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008c60 x6:1c0091a4 +73359641ns 1289878 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008c60 PA:1c008c60 +73359697ns 1289879 1c0008ba 00428293 addi x5, x5, 4 x5=1c008c64 x5:1c008c60 +73359754ns 1289880 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008c64 x6:1c0091a4 +73359982ns 1289884 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008c64 PA:1c008c64 +73360038ns 1289885 1c0008ba 00428293 addi x5, x5, 4 x5=1c008c68 x5:1c008c64 +73360095ns 1289886 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008c68 x6:1c0091a4 +73360323ns 1289890 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008c68 PA:1c008c68 +73360379ns 1289891 1c0008ba 00428293 addi x5, x5, 4 x5=1c008c6c x5:1c008c68 +73360436ns 1289892 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008c6c x6:1c0091a4 +73360664ns 1289896 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008c6c PA:1c008c6c +73360720ns 1289897 1c0008ba 00428293 addi x5, x5, 4 x5=1c008c70 x5:1c008c6c +73360777ns 1289898 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008c70 x6:1c0091a4 +73361005ns 1289902 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008c70 PA:1c008c70 +73361061ns 1289903 1c0008ba 00428293 addi x5, x5, 4 x5=1c008c74 x5:1c008c70 +73361118ns 1289904 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008c74 x6:1c0091a4 +73361346ns 1289908 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008c74 PA:1c008c74 +73361402ns 1289909 1c0008ba 00428293 addi x5, x5, 4 x5=1c008c78 x5:1c008c74 +73361459ns 1289910 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008c78 x6:1c0091a4 +73361687ns 1289914 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008c78 PA:1c008c78 +73361743ns 1289915 1c0008ba 00428293 addi x5, x5, 4 x5=1c008c7c x5:1c008c78 +73361800ns 1289916 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008c7c x6:1c0091a4 +73362028ns 1289920 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008c7c PA:1c008c7c +73362084ns 1289921 1c0008ba 00428293 addi x5, x5, 4 x5=1c008c80 x5:1c008c7c +73362141ns 1289922 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008c80 x6:1c0091a4 +73362369ns 1289926 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008c80 PA:1c008c80 +73362425ns 1289927 1c0008ba 00428293 addi x5, x5, 4 x5=1c008c84 x5:1c008c80 +73362482ns 1289928 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008c84 x6:1c0091a4 +73362710ns 1289932 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008c84 PA:1c008c84 +73362766ns 1289933 1c0008ba 00428293 addi x5, x5, 4 x5=1c008c88 x5:1c008c84 +73362823ns 1289934 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008c88 x6:1c0091a4 +73363051ns 1289938 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008c88 PA:1c008c88 +73363107ns 1289939 1c0008ba 00428293 addi x5, x5, 4 x5=1c008c8c x5:1c008c88 +73363164ns 1289940 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008c8c x6:1c0091a4 +73363392ns 1289944 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008c8c PA:1c008c8c +73363448ns 1289945 1c0008ba 00428293 addi x5, x5, 4 x5=1c008c90 x5:1c008c8c +73363505ns 1289946 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008c90 x6:1c0091a4 +73363733ns 1289950 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008c90 PA:1c008c90 +73363789ns 1289951 1c0008ba 00428293 addi x5, x5, 4 x5=1c008c94 x5:1c008c90 +73363846ns 1289952 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008c94 x6:1c0091a4 +73364074ns 1289956 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008c94 PA:1c008c94 +73364130ns 1289957 1c0008ba 00428293 addi x5, x5, 4 x5=1c008c98 x5:1c008c94 +73364187ns 1289958 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008c98 x6:1c0091a4 +73364415ns 1289962 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008c98 PA:1c008c98 +73364471ns 1289963 1c0008ba 00428293 addi x5, x5, 4 x5=1c008c9c x5:1c008c98 +73364528ns 1289964 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008c9c x6:1c0091a4 +73364755ns 1289968 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008c9c PA:1c008c9c +73364812ns 1289969 1c0008ba 00428293 addi x5, x5, 4 x5=1c008ca0 x5:1c008c9c +73364869ns 1289970 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008ca0 x6:1c0091a4 +73365096ns 1289974 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008ca0 PA:1c008ca0 +73365153ns 1289975 1c0008ba 00428293 addi x5, x5, 4 x5=1c008ca4 x5:1c008ca0 +73365210ns 1289976 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008ca4 x6:1c0091a4 +73365437ns 1289980 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008ca4 PA:1c008ca4 +73365494ns 1289981 1c0008ba 00428293 addi x5, x5, 4 x5=1c008ca8 x5:1c008ca4 +73365551ns 1289982 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008ca8 x6:1c0091a4 +73365778ns 1289986 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008ca8 PA:1c008ca8 +73365835ns 1289987 1c0008ba 00428293 addi x5, x5, 4 x5=1c008cac x5:1c008ca8 +73365892ns 1289988 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008cac x6:1c0091a4 +73366119ns 1289992 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008cac PA:1c008cac +73366176ns 1289993 1c0008ba 00428293 addi x5, x5, 4 x5=1c008cb0 x5:1c008cac +73366233ns 1289994 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008cb0 x6:1c0091a4 +73366460ns 1289998 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008cb0 PA:1c008cb0 +73366517ns 1289999 1c0008ba 00428293 addi x5, x5, 4 x5=1c008cb4 x5:1c008cb0 +73366574ns 1290000 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008cb4 x6:1c0091a4 +73366801ns 1290004 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008cb4 PA:1c008cb4 +73366858ns 1290005 1c0008ba 00428293 addi x5, x5, 4 x5=1c008cb8 x5:1c008cb4 +73366915ns 1290006 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008cb8 x6:1c0091a4 +73367142ns 1290010 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008cb8 PA:1c008cb8 +73367199ns 1290011 1c0008ba 00428293 addi x5, x5, 4 x5=1c008cbc x5:1c008cb8 +73367256ns 1290012 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008cbc x6:1c0091a4 +73367483ns 1290016 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008cbc PA:1c008cbc +73367540ns 1290017 1c0008ba 00428293 addi x5, x5, 4 x5=1c008cc0 x5:1c008cbc +73367597ns 1290018 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008cc0 x6:1c0091a4 +73367824ns 1290022 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008cc0 PA:1c008cc0 +73367881ns 1290023 1c0008ba 00428293 addi x5, x5, 4 x5=1c008cc4 x5:1c008cc0 +73367938ns 1290024 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008cc4 x6:1c0091a4 +73368165ns 1290028 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008cc4 PA:1c008cc4 +73368222ns 1290029 1c0008ba 00428293 addi x5, x5, 4 x5=1c008cc8 x5:1c008cc4 +73368279ns 1290030 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008cc8 x6:1c0091a4 +73368506ns 1290034 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008cc8 PA:1c008cc8 +73368563ns 1290035 1c0008ba 00428293 addi x5, x5, 4 x5=1c008ccc x5:1c008cc8 +73368620ns 1290036 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008ccc x6:1c0091a4 +73368847ns 1290040 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008ccc PA:1c008ccc +73368904ns 1290041 1c0008ba 00428293 addi x5, x5, 4 x5=1c008cd0 x5:1c008ccc +73368961ns 1290042 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008cd0 x6:1c0091a4 +73369188ns 1290046 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008cd0 PA:1c008cd0 +73369245ns 1290047 1c0008ba 00428293 addi x5, x5, 4 x5=1c008cd4 x5:1c008cd0 +73369302ns 1290048 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008cd4 x6:1c0091a4 +73369529ns 1290052 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008cd4 PA:1c008cd4 +73369586ns 1290053 1c0008ba 00428293 addi x5, x5, 4 x5=1c008cd8 x5:1c008cd4 +73369643ns 1290054 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008cd8 x6:1c0091a4 +73369870ns 1290058 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008cd8 PA:1c008cd8 +73369927ns 1290059 1c0008ba 00428293 addi x5, x5, 4 x5=1c008cdc x5:1c008cd8 +73369984ns 1290060 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008cdc x6:1c0091a4 +73370211ns 1290064 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008cdc PA:1c008cdc +73370268ns 1290065 1c0008ba 00428293 addi x5, x5, 4 x5=1c008ce0 x5:1c008cdc +73370325ns 1290066 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008ce0 x6:1c0091a4 +73370552ns 1290070 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008ce0 PA:1c008ce0 +73370609ns 1290071 1c0008ba 00428293 addi x5, x5, 4 x5=1c008ce4 x5:1c008ce0 +73370666ns 1290072 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008ce4 x6:1c0091a4 +73370893ns 1290076 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008ce4 PA:1c008ce4 +73370950ns 1290077 1c0008ba 00428293 addi x5, x5, 4 x5=1c008ce8 x5:1c008ce4 +73371007ns 1290078 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008ce8 x6:1c0091a4 +73371234ns 1290082 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008ce8 PA:1c008ce8 +73371291ns 1290083 1c0008ba 00428293 addi x5, x5, 4 x5=1c008cec x5:1c008ce8 +73371348ns 1290084 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008cec x6:1c0091a4 +73371575ns 1290088 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008cec PA:1c008cec +73371632ns 1290089 1c0008ba 00428293 addi x5, x5, 4 x5=1c008cf0 x5:1c008cec +73371689ns 1290090 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008cf0 x6:1c0091a4 +73371916ns 1290094 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008cf0 PA:1c008cf0 +73371973ns 1290095 1c0008ba 00428293 addi x5, x5, 4 x5=1c008cf4 x5:1c008cf0 +73372030ns 1290096 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008cf4 x6:1c0091a4 +73372257ns 1290100 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008cf4 PA:1c008cf4 +73372314ns 1290101 1c0008ba 00428293 addi x5, x5, 4 x5=1c008cf8 x5:1c008cf4 +73372371ns 1290102 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008cf8 x6:1c0091a4 +73372598ns 1290106 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008cf8 PA:1c008cf8 +73372655ns 1290107 1c0008ba 00428293 addi x5, x5, 4 x5=1c008cfc x5:1c008cf8 +73372712ns 1290108 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008cfc x6:1c0091a4 +73372939ns 1290112 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008cfc PA:1c008cfc +73372996ns 1290113 1c0008ba 00428293 addi x5, x5, 4 x5=1c008d00 x5:1c008cfc +73373053ns 1290114 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008d00 x6:1c0091a4 +73373280ns 1290118 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008d00 PA:1c008d00 +73373337ns 1290119 1c0008ba 00428293 addi x5, x5, 4 x5=1c008d04 x5:1c008d00 +73373394ns 1290120 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008d04 x6:1c0091a4 +73373621ns 1290124 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008d04 PA:1c008d04 +73373678ns 1290125 1c0008ba 00428293 addi x5, x5, 4 x5=1c008d08 x5:1c008d04 +73373735ns 1290126 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008d08 x6:1c0091a4 +73373962ns 1290130 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008d08 PA:1c008d08 +73374019ns 1290131 1c0008ba 00428293 addi x5, x5, 4 x5=1c008d0c x5:1c008d08 +73374076ns 1290132 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008d0c x6:1c0091a4 +73374303ns 1290136 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008d0c PA:1c008d0c +73374360ns 1290137 1c0008ba 00428293 addi x5, x5, 4 x5=1c008d10 x5:1c008d0c +73374417ns 1290138 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008d10 x6:1c0091a4 +73374644ns 1290142 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008d10 PA:1c008d10 +73374701ns 1290143 1c0008ba 00428293 addi x5, x5, 4 x5=1c008d14 x5:1c008d10 +73374758ns 1290144 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008d14 x6:1c0091a4 +73374985ns 1290148 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008d14 PA:1c008d14 +73375042ns 1290149 1c0008ba 00428293 addi x5, x5, 4 x5=1c008d18 x5:1c008d14 +73375099ns 1290150 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008d18 x6:1c0091a4 +73375326ns 1290154 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008d18 PA:1c008d18 +73375383ns 1290155 1c0008ba 00428293 addi x5, x5, 4 x5=1c008d1c x5:1c008d18 +73375440ns 1290156 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008d1c x6:1c0091a4 +73375667ns 1290160 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008d1c PA:1c008d1c +73375724ns 1290161 1c0008ba 00428293 addi x5, x5, 4 x5=1c008d20 x5:1c008d1c +73375781ns 1290162 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008d20 x6:1c0091a4 +73376008ns 1290166 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008d20 PA:1c008d20 +73376065ns 1290167 1c0008ba 00428293 addi x5, x5, 4 x5=1c008d24 x5:1c008d20 +73376122ns 1290168 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008d24 x6:1c0091a4 +73376349ns 1290172 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008d24 PA:1c008d24 +73376406ns 1290173 1c0008ba 00428293 addi x5, x5, 4 x5=1c008d28 x5:1c008d24 +73376463ns 1290174 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008d28 x6:1c0091a4 +73376690ns 1290178 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008d28 PA:1c008d28 +73376747ns 1290179 1c0008ba 00428293 addi x5, x5, 4 x5=1c008d2c x5:1c008d28 +73376804ns 1290180 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008d2c x6:1c0091a4 +73377031ns 1290184 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008d2c PA:1c008d2c +73377088ns 1290185 1c0008ba 00428293 addi x5, x5, 4 x5=1c008d30 x5:1c008d2c +73377145ns 1290186 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008d30 x6:1c0091a4 +73377372ns 1290190 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008d30 PA:1c008d30 +73377429ns 1290191 1c0008ba 00428293 addi x5, x5, 4 x5=1c008d34 x5:1c008d30 +73377486ns 1290192 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008d34 x6:1c0091a4 +73377713ns 1290196 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008d34 PA:1c008d34 +73377770ns 1290197 1c0008ba 00428293 addi x5, x5, 4 x5=1c008d38 x5:1c008d34 +73377827ns 1290198 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008d38 x6:1c0091a4 +73378054ns 1290202 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008d38 PA:1c008d38 +73378111ns 1290203 1c0008ba 00428293 addi x5, x5, 4 x5=1c008d3c x5:1c008d38 +73378168ns 1290204 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008d3c x6:1c0091a4 +73378395ns 1290208 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008d3c PA:1c008d3c +73378452ns 1290209 1c0008ba 00428293 addi x5, x5, 4 x5=1c008d40 x5:1c008d3c +73378509ns 1290210 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008d40 x6:1c0091a4 +73378736ns 1290214 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008d40 PA:1c008d40 +73378793ns 1290215 1c0008ba 00428293 addi x5, x5, 4 x5=1c008d44 x5:1c008d40 +73378850ns 1290216 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008d44 x6:1c0091a4 +73379077ns 1290220 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008d44 PA:1c008d44 +73379134ns 1290221 1c0008ba 00428293 addi x5, x5, 4 x5=1c008d48 x5:1c008d44 +73379191ns 1290222 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008d48 x6:1c0091a4 +73379418ns 1290226 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008d48 PA:1c008d48 +73379475ns 1290227 1c0008ba 00428293 addi x5, x5, 4 x5=1c008d4c x5:1c008d48 +73379532ns 1290228 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008d4c x6:1c0091a4 +73379759ns 1290232 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008d4c PA:1c008d4c +73379816ns 1290233 1c0008ba 00428293 addi x5, x5, 4 x5=1c008d50 x5:1c008d4c +73379873ns 1290234 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008d50 x6:1c0091a4 +73380100ns 1290238 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008d50 PA:1c008d50 +73380157ns 1290239 1c0008ba 00428293 addi x5, x5, 4 x5=1c008d54 x5:1c008d50 +73380214ns 1290240 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008d54 x6:1c0091a4 +73380441ns 1290244 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008d54 PA:1c008d54 +73380498ns 1290245 1c0008ba 00428293 addi x5, x5, 4 x5=1c008d58 x5:1c008d54 +73380555ns 1290246 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008d58 x6:1c0091a4 +73380782ns 1290250 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008d58 PA:1c008d58 +73380839ns 1290251 1c0008ba 00428293 addi x5, x5, 4 x5=1c008d5c x5:1c008d58 +73380896ns 1290252 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008d5c x6:1c0091a4 +73381123ns 1290256 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008d5c PA:1c008d5c +73381180ns 1290257 1c0008ba 00428293 addi x5, x5, 4 x5=1c008d60 x5:1c008d5c +73381237ns 1290258 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008d60 x6:1c0091a4 +73381464ns 1290262 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008d60 PA:1c008d60 +73381521ns 1290263 1c0008ba 00428293 addi x5, x5, 4 x5=1c008d64 x5:1c008d60 +73381578ns 1290264 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008d64 x6:1c0091a4 +73381805ns 1290268 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008d64 PA:1c008d64 +73381862ns 1290269 1c0008ba 00428293 addi x5, x5, 4 x5=1c008d68 x5:1c008d64 +73381919ns 1290270 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008d68 x6:1c0091a4 +73382146ns 1290274 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008d68 PA:1c008d68 +73382203ns 1290275 1c0008ba 00428293 addi x5, x5, 4 x5=1c008d6c x5:1c008d68 +73382260ns 1290276 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008d6c x6:1c0091a4 +73382487ns 1290280 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008d6c PA:1c008d6c +73382544ns 1290281 1c0008ba 00428293 addi x5, x5, 4 x5=1c008d70 x5:1c008d6c +73382601ns 1290282 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008d70 x6:1c0091a4 +73382828ns 1290286 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008d70 PA:1c008d70 +73382885ns 1290287 1c0008ba 00428293 addi x5, x5, 4 x5=1c008d74 x5:1c008d70 +73382942ns 1290288 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008d74 x6:1c0091a4 +73383169ns 1290292 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008d74 PA:1c008d74 +73383226ns 1290293 1c0008ba 00428293 addi x5, x5, 4 x5=1c008d78 x5:1c008d74 +73383283ns 1290294 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008d78 x6:1c0091a4 +73383510ns 1290298 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008d78 PA:1c008d78 +73383567ns 1290299 1c0008ba 00428293 addi x5, x5, 4 x5=1c008d7c x5:1c008d78 +73383624ns 1290300 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008d7c x6:1c0091a4 +73383851ns 1290304 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008d7c PA:1c008d7c +73383908ns 1290305 1c0008ba 00428293 addi x5, x5, 4 x5=1c008d80 x5:1c008d7c +73383965ns 1290306 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008d80 x6:1c0091a4 +73384192ns 1290310 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008d80 PA:1c008d80 +73384249ns 1290311 1c0008ba 00428293 addi x5, x5, 4 x5=1c008d84 x5:1c008d80 +73384306ns 1290312 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008d84 x6:1c0091a4 +73384533ns 1290316 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008d84 PA:1c008d84 +73384590ns 1290317 1c0008ba 00428293 addi x5, x5, 4 x5=1c008d88 x5:1c008d84 +73384647ns 1290318 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008d88 x6:1c0091a4 +73384874ns 1290322 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008d88 PA:1c008d88 +73384931ns 1290323 1c0008ba 00428293 addi x5, x5, 4 x5=1c008d8c x5:1c008d88 +73384988ns 1290324 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008d8c x6:1c0091a4 +73385215ns 1290328 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008d8c PA:1c008d8c +73385272ns 1290329 1c0008ba 00428293 addi x5, x5, 4 x5=1c008d90 x5:1c008d8c +73385329ns 1290330 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008d90 x6:1c0091a4 +73385556ns 1290334 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008d90 PA:1c008d90 +73385613ns 1290335 1c0008ba 00428293 addi x5, x5, 4 x5=1c008d94 x5:1c008d90 +73385670ns 1290336 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008d94 x6:1c0091a4 +73385897ns 1290340 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008d94 PA:1c008d94 +73385954ns 1290341 1c0008ba 00428293 addi x5, x5, 4 x5=1c008d98 x5:1c008d94 +73386011ns 1290342 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008d98 x6:1c0091a4 +73386238ns 1290346 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008d98 PA:1c008d98 +73386295ns 1290347 1c0008ba 00428293 addi x5, x5, 4 x5=1c008d9c x5:1c008d98 +73386352ns 1290348 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008d9c x6:1c0091a4 +73386579ns 1290352 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008d9c PA:1c008d9c +73386636ns 1290353 1c0008ba 00428293 addi x5, x5, 4 x5=1c008da0 x5:1c008d9c +73386693ns 1290354 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008da0 x6:1c0091a4 +73386920ns 1290358 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008da0 PA:1c008da0 +73386977ns 1290359 1c0008ba 00428293 addi x5, x5, 4 x5=1c008da4 x5:1c008da0 +73387034ns 1290360 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008da4 x6:1c0091a4 +73387261ns 1290364 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008da4 PA:1c008da4 +73387318ns 1290365 1c0008ba 00428293 addi x5, x5, 4 x5=1c008da8 x5:1c008da4 +73387375ns 1290366 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008da8 x6:1c0091a4 +73387602ns 1290370 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008da8 PA:1c008da8 +73387659ns 1290371 1c0008ba 00428293 addi x5, x5, 4 x5=1c008dac x5:1c008da8 +73387716ns 1290372 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008dac x6:1c0091a4 +73387943ns 1290376 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008dac PA:1c008dac +73388000ns 1290377 1c0008ba 00428293 addi x5, x5, 4 x5=1c008db0 x5:1c008dac +73388057ns 1290378 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008db0 x6:1c0091a4 +73388284ns 1290382 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008db0 PA:1c008db0 +73388341ns 1290383 1c0008ba 00428293 addi x5, x5, 4 x5=1c008db4 x5:1c008db0 +73388398ns 1290384 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008db4 x6:1c0091a4 +73388625ns 1290388 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008db4 PA:1c008db4 +73388682ns 1290389 1c0008ba 00428293 addi x5, x5, 4 x5=1c008db8 x5:1c008db4 +73388739ns 1290390 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008db8 x6:1c0091a4 +73388966ns 1290394 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008db8 PA:1c008db8 +73389023ns 1290395 1c0008ba 00428293 addi x5, x5, 4 x5=1c008dbc x5:1c008db8 +73389080ns 1290396 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008dbc x6:1c0091a4 +73389307ns 1290400 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008dbc PA:1c008dbc +73389364ns 1290401 1c0008ba 00428293 addi x5, x5, 4 x5=1c008dc0 x5:1c008dbc +73389421ns 1290402 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008dc0 x6:1c0091a4 +73389648ns 1290406 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008dc0 PA:1c008dc0 +73389705ns 1290407 1c0008ba 00428293 addi x5, x5, 4 x5=1c008dc4 x5:1c008dc0 +73389762ns 1290408 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008dc4 x6:1c0091a4 +73389989ns 1290412 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008dc4 PA:1c008dc4 +73390046ns 1290413 1c0008ba 00428293 addi x5, x5, 4 x5=1c008dc8 x5:1c008dc4 +73390103ns 1290414 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008dc8 x6:1c0091a4 +73390330ns 1290418 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008dc8 PA:1c008dc8 +73390387ns 1290419 1c0008ba 00428293 addi x5, x5, 4 x5=1c008dcc x5:1c008dc8 +73390444ns 1290420 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008dcc x6:1c0091a4 +73390671ns 1290424 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008dcc PA:1c008dcc +73390728ns 1290425 1c0008ba 00428293 addi x5, x5, 4 x5=1c008dd0 x5:1c008dcc +73390785ns 1290426 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008dd0 x6:1c0091a4 +73391012ns 1290430 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008dd0 PA:1c008dd0 +73391069ns 1290431 1c0008ba 00428293 addi x5, x5, 4 x5=1c008dd4 x5:1c008dd0 +73391126ns 1290432 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008dd4 x6:1c0091a4 +73391353ns 1290436 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008dd4 PA:1c008dd4 +73391410ns 1290437 1c0008ba 00428293 addi x5, x5, 4 x5=1c008dd8 x5:1c008dd4 +73391467ns 1290438 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008dd8 x6:1c0091a4 +73391694ns 1290442 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008dd8 PA:1c008dd8 +73391751ns 1290443 1c0008ba 00428293 addi x5, x5, 4 x5=1c008ddc x5:1c008dd8 +73391808ns 1290444 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008ddc x6:1c0091a4 +73392035ns 1290448 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008ddc PA:1c008ddc +73392092ns 1290449 1c0008ba 00428293 addi x5, x5, 4 x5=1c008de0 x5:1c008ddc +73392149ns 1290450 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008de0 x6:1c0091a4 +73392376ns 1290454 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008de0 PA:1c008de0 +73392433ns 1290455 1c0008ba 00428293 addi x5, x5, 4 x5=1c008de4 x5:1c008de0 +73392490ns 1290456 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008de4 x6:1c0091a4 +73392717ns 1290460 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008de4 PA:1c008de4 +73392774ns 1290461 1c0008ba 00428293 addi x5, x5, 4 x5=1c008de8 x5:1c008de4 +73392831ns 1290462 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008de8 x6:1c0091a4 +73393058ns 1290466 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008de8 PA:1c008de8 +73393115ns 1290467 1c0008ba 00428293 addi x5, x5, 4 x5=1c008dec x5:1c008de8 +73393171ns 1290468 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008dec x6:1c0091a4 +73393399ns 1290472 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008dec PA:1c008dec +73393456ns 1290473 1c0008ba 00428293 addi x5, x5, 4 x5=1c008df0 x5:1c008dec +73393512ns 1290474 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008df0 x6:1c0091a4 +73393740ns 1290478 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008df0 PA:1c008df0 +73393797ns 1290479 1c0008ba 00428293 addi x5, x5, 4 x5=1c008df4 x5:1c008df0 +73393853ns 1290480 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008df4 x6:1c0091a4 +73394081ns 1290484 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008df4 PA:1c008df4 +73394138ns 1290485 1c0008ba 00428293 addi x5, x5, 4 x5=1c008df8 x5:1c008df4 +73394194ns 1290486 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008df8 x6:1c0091a4 +73394422ns 1290490 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008df8 PA:1c008df8 +73394479ns 1290491 1c0008ba 00428293 addi x5, x5, 4 x5=1c008dfc x5:1c008df8 +73394535ns 1290492 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008dfc x6:1c0091a4 +73394763ns 1290496 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008dfc PA:1c008dfc +73394820ns 1290497 1c0008ba 00428293 addi x5, x5, 4 x5=1c008e00 x5:1c008dfc +73394876ns 1290498 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008e00 x6:1c0091a4 +73395104ns 1290502 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008e00 PA:1c008e00 +73395161ns 1290503 1c0008ba 00428293 addi x5, x5, 4 x5=1c008e04 x5:1c008e00 +73395217ns 1290504 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008e04 x6:1c0091a4 +73395445ns 1290508 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008e04 PA:1c008e04 +73395502ns 1290509 1c0008ba 00428293 addi x5, x5, 4 x5=1c008e08 x5:1c008e04 +73395558ns 1290510 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008e08 x6:1c0091a4 +73395786ns 1290514 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008e08 PA:1c008e08 +73395843ns 1290515 1c0008ba 00428293 addi x5, x5, 4 x5=1c008e0c x5:1c008e08 +73395899ns 1290516 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008e0c x6:1c0091a4 +73396127ns 1290520 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008e0c PA:1c008e0c +73396184ns 1290521 1c0008ba 00428293 addi x5, x5, 4 x5=1c008e10 x5:1c008e0c +73396240ns 1290522 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008e10 x6:1c0091a4 +73396468ns 1290526 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008e10 PA:1c008e10 +73396525ns 1290527 1c0008ba 00428293 addi x5, x5, 4 x5=1c008e14 x5:1c008e10 +73396581ns 1290528 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008e14 x6:1c0091a4 +73396809ns 1290532 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008e14 PA:1c008e14 +73396866ns 1290533 1c0008ba 00428293 addi x5, x5, 4 x5=1c008e18 x5:1c008e14 +73396922ns 1290534 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008e18 x6:1c0091a4 +73397150ns 1290538 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008e18 PA:1c008e18 +73397207ns 1290539 1c0008ba 00428293 addi x5, x5, 4 x5=1c008e1c x5:1c008e18 +73397263ns 1290540 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008e1c x6:1c0091a4 +73397491ns 1290544 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008e1c PA:1c008e1c +73397548ns 1290545 1c0008ba 00428293 addi x5, x5, 4 x5=1c008e20 x5:1c008e1c +73397604ns 1290546 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008e20 x6:1c0091a4 +73397832ns 1290550 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008e20 PA:1c008e20 +73397889ns 1290551 1c0008ba 00428293 addi x5, x5, 4 x5=1c008e24 x5:1c008e20 +73397945ns 1290552 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008e24 x6:1c0091a4 +73398173ns 1290556 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008e24 PA:1c008e24 +73398230ns 1290557 1c0008ba 00428293 addi x5, x5, 4 x5=1c008e28 x5:1c008e24 +73398286ns 1290558 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008e28 x6:1c0091a4 +73398514ns 1290562 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008e28 PA:1c008e28 +73398571ns 1290563 1c0008ba 00428293 addi x5, x5, 4 x5=1c008e2c x5:1c008e28 +73398627ns 1290564 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008e2c x6:1c0091a4 +73398855ns 1290568 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008e2c PA:1c008e2c +73398912ns 1290569 1c0008ba 00428293 addi x5, x5, 4 x5=1c008e30 x5:1c008e2c +73398968ns 1290570 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008e30 x6:1c0091a4 +73399196ns 1290574 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008e30 PA:1c008e30 +73399253ns 1290575 1c0008ba 00428293 addi x5, x5, 4 x5=1c008e34 x5:1c008e30 +73399309ns 1290576 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008e34 x6:1c0091a4 +73399537ns 1290580 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008e34 PA:1c008e34 +73399594ns 1290581 1c0008ba 00428293 addi x5, x5, 4 x5=1c008e38 x5:1c008e34 +73399650ns 1290582 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008e38 x6:1c0091a4 +73399878ns 1290586 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008e38 PA:1c008e38 +73399935ns 1290587 1c0008ba 00428293 addi x5, x5, 4 x5=1c008e3c x5:1c008e38 +73399991ns 1290588 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008e3c x6:1c0091a4 +73400219ns 1290592 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008e3c PA:1c008e3c +73400275ns 1290593 1c0008ba 00428293 addi x5, x5, 4 x5=1c008e40 x5:1c008e3c +73400332ns 1290594 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008e40 x6:1c0091a4 +73400560ns 1290598 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008e40 PA:1c008e40 +73400616ns 1290599 1c0008ba 00428293 addi x5, x5, 4 x5=1c008e44 x5:1c008e40 +73400673ns 1290600 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008e44 x6:1c0091a4 +73400901ns 1290604 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008e44 PA:1c008e44 +73400957ns 1290605 1c0008ba 00428293 addi x5, x5, 4 x5=1c008e48 x5:1c008e44 +73401014ns 1290606 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008e48 x6:1c0091a4 +73401242ns 1290610 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008e48 PA:1c008e48 +73401298ns 1290611 1c0008ba 00428293 addi x5, x5, 4 x5=1c008e4c x5:1c008e48 +73401355ns 1290612 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008e4c x6:1c0091a4 +73401583ns 1290616 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008e4c PA:1c008e4c +73401639ns 1290617 1c0008ba 00428293 addi x5, x5, 4 x5=1c008e50 x5:1c008e4c +73401696ns 1290618 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008e50 x6:1c0091a4 +73401924ns 1290622 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008e50 PA:1c008e50 +73401980ns 1290623 1c0008ba 00428293 addi x5, x5, 4 x5=1c008e54 x5:1c008e50 +73402037ns 1290624 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008e54 x6:1c0091a4 +73402265ns 1290628 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008e54 PA:1c008e54 +73402321ns 1290629 1c0008ba 00428293 addi x5, x5, 4 x5=1c008e58 x5:1c008e54 +73402378ns 1290630 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008e58 x6:1c0091a4 +73402606ns 1290634 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008e58 PA:1c008e58 +73402662ns 1290635 1c0008ba 00428293 addi x5, x5, 4 x5=1c008e5c x5:1c008e58 +73402719ns 1290636 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008e5c x6:1c0091a4 +73402947ns 1290640 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008e5c PA:1c008e5c +73403003ns 1290641 1c0008ba 00428293 addi x5, x5, 4 x5=1c008e60 x5:1c008e5c +73403060ns 1290642 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008e60 x6:1c0091a4 +73403288ns 1290646 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008e60 PA:1c008e60 +73403344ns 1290647 1c0008ba 00428293 addi x5, x5, 4 x5=1c008e64 x5:1c008e60 +73403401ns 1290648 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008e64 x6:1c0091a4 +73403629ns 1290652 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008e64 PA:1c008e64 +73403685ns 1290653 1c0008ba 00428293 addi x5, x5, 4 x5=1c008e68 x5:1c008e64 +73403742ns 1290654 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008e68 x6:1c0091a4 +73403970ns 1290658 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008e68 PA:1c008e68 +73404026ns 1290659 1c0008ba 00428293 addi x5, x5, 4 x5=1c008e6c x5:1c008e68 +73404083ns 1290660 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008e6c x6:1c0091a4 +73404311ns 1290664 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008e6c PA:1c008e6c +73404367ns 1290665 1c0008ba 00428293 addi x5, x5, 4 x5=1c008e70 x5:1c008e6c +73404424ns 1290666 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008e70 x6:1c0091a4 +73404652ns 1290670 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008e70 PA:1c008e70 +73404708ns 1290671 1c0008ba 00428293 addi x5, x5, 4 x5=1c008e74 x5:1c008e70 +73404765ns 1290672 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008e74 x6:1c0091a4 +73404993ns 1290676 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008e74 PA:1c008e74 +73405049ns 1290677 1c0008ba 00428293 addi x5, x5, 4 x5=1c008e78 x5:1c008e74 +73405106ns 1290678 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008e78 x6:1c0091a4 +73405334ns 1290682 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008e78 PA:1c008e78 +73405390ns 1290683 1c0008ba 00428293 addi x5, x5, 4 x5=1c008e7c x5:1c008e78 +73405447ns 1290684 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008e7c x6:1c0091a4 +73405675ns 1290688 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008e7c PA:1c008e7c +73405731ns 1290689 1c0008ba 00428293 addi x5, x5, 4 x5=1c008e80 x5:1c008e7c +73405788ns 1290690 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008e80 x6:1c0091a4 +73406016ns 1290694 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008e80 PA:1c008e80 +73406072ns 1290695 1c0008ba 00428293 addi x5, x5, 4 x5=1c008e84 x5:1c008e80 +73406129ns 1290696 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008e84 x6:1c0091a4 +73406357ns 1290700 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008e84 PA:1c008e84 +73406413ns 1290701 1c0008ba 00428293 addi x5, x5, 4 x5=1c008e88 x5:1c008e84 +73406470ns 1290702 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008e88 x6:1c0091a4 +73406698ns 1290706 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008e88 PA:1c008e88 +73406754ns 1290707 1c0008ba 00428293 addi x5, x5, 4 x5=1c008e8c x5:1c008e88 +73406811ns 1290708 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008e8c x6:1c0091a4 +73407039ns 1290712 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008e8c PA:1c008e8c +73407095ns 1290713 1c0008ba 00428293 addi x5, x5, 4 x5=1c008e90 x5:1c008e8c +73407152ns 1290714 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008e90 x6:1c0091a4 +73407379ns 1290718 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008e90 PA:1c008e90 +73407436ns 1290719 1c0008ba 00428293 addi x5, x5, 4 x5=1c008e94 x5:1c008e90 +73407493ns 1290720 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008e94 x6:1c0091a4 +73407720ns 1290724 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008e94 PA:1c008e94 +73407777ns 1290725 1c0008ba 00428293 addi x5, x5, 4 x5=1c008e98 x5:1c008e94 +73407834ns 1290726 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008e98 x6:1c0091a4 +73408061ns 1290730 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008e98 PA:1c008e98 +73408118ns 1290731 1c0008ba 00428293 addi x5, x5, 4 x5=1c008e9c x5:1c008e98 +73408175ns 1290732 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008e9c x6:1c0091a4 +73408402ns 1290736 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008e9c PA:1c008e9c +73408459ns 1290737 1c0008ba 00428293 addi x5, x5, 4 x5=1c008ea0 x5:1c008e9c +73408516ns 1290738 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008ea0 x6:1c0091a4 +73408743ns 1290742 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008ea0 PA:1c008ea0 +73408800ns 1290743 1c0008ba 00428293 addi x5, x5, 4 x5=1c008ea4 x5:1c008ea0 +73408857ns 1290744 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008ea4 x6:1c0091a4 +73409084ns 1290748 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008ea4 PA:1c008ea4 +73409141ns 1290749 1c0008ba 00428293 addi x5, x5, 4 x5=1c008ea8 x5:1c008ea4 +73409198ns 1290750 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008ea8 x6:1c0091a4 +73409425ns 1290754 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008ea8 PA:1c008ea8 +73409482ns 1290755 1c0008ba 00428293 addi x5, x5, 4 x5=1c008eac x5:1c008ea8 +73409539ns 1290756 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008eac x6:1c0091a4 +73409766ns 1290760 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008eac PA:1c008eac +73409823ns 1290761 1c0008ba 00428293 addi x5, x5, 4 x5=1c008eb0 x5:1c008eac +73409880ns 1290762 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008eb0 x6:1c0091a4 +73410107ns 1290766 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008eb0 PA:1c008eb0 +73410164ns 1290767 1c0008ba 00428293 addi x5, x5, 4 x5=1c008eb4 x5:1c008eb0 +73410221ns 1290768 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008eb4 x6:1c0091a4 +73410448ns 1290772 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008eb4 PA:1c008eb4 +73410505ns 1290773 1c0008ba 00428293 addi x5, x5, 4 x5=1c008eb8 x5:1c008eb4 +73410562ns 1290774 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008eb8 x6:1c0091a4 +73410789ns 1290778 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008eb8 PA:1c008eb8 +73410846ns 1290779 1c0008ba 00428293 addi x5, x5, 4 x5=1c008ebc x5:1c008eb8 +73410903ns 1290780 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008ebc x6:1c0091a4 +73411130ns 1290784 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008ebc PA:1c008ebc +73411187ns 1290785 1c0008ba 00428293 addi x5, x5, 4 x5=1c008ec0 x5:1c008ebc +73411244ns 1290786 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008ec0 x6:1c0091a4 +73411471ns 1290790 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008ec0 PA:1c008ec0 +73411528ns 1290791 1c0008ba 00428293 addi x5, x5, 4 x5=1c008ec4 x5:1c008ec0 +73411585ns 1290792 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008ec4 x6:1c0091a4 +73411812ns 1290796 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008ec4 PA:1c008ec4 +73411869ns 1290797 1c0008ba 00428293 addi x5, x5, 4 x5=1c008ec8 x5:1c008ec4 +73411926ns 1290798 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008ec8 x6:1c0091a4 +73412153ns 1290802 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008ec8 PA:1c008ec8 +73412210ns 1290803 1c0008ba 00428293 addi x5, x5, 4 x5=1c008ecc x5:1c008ec8 +73412267ns 1290804 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008ecc x6:1c0091a4 +73412494ns 1290808 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008ecc PA:1c008ecc +73412551ns 1290809 1c0008ba 00428293 addi x5, x5, 4 x5=1c008ed0 x5:1c008ecc +73412608ns 1290810 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008ed0 x6:1c0091a4 +73412835ns 1290814 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008ed0 PA:1c008ed0 +73412892ns 1290815 1c0008ba 00428293 addi x5, x5, 4 x5=1c008ed4 x5:1c008ed0 +73412949ns 1290816 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008ed4 x6:1c0091a4 +73413176ns 1290820 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008ed4 PA:1c008ed4 +73413233ns 1290821 1c0008ba 00428293 addi x5, x5, 4 x5=1c008ed8 x5:1c008ed4 +73413290ns 1290822 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008ed8 x6:1c0091a4 +73413517ns 1290826 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008ed8 PA:1c008ed8 +73413574ns 1290827 1c0008ba 00428293 addi x5, x5, 4 x5=1c008edc x5:1c008ed8 +73413631ns 1290828 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008edc x6:1c0091a4 +73413858ns 1290832 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008edc PA:1c008edc +73413915ns 1290833 1c0008ba 00428293 addi x5, x5, 4 x5=1c008ee0 x5:1c008edc +73413972ns 1290834 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008ee0 x6:1c0091a4 +73414199ns 1290838 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008ee0 PA:1c008ee0 +73414256ns 1290839 1c0008ba 00428293 addi x5, x5, 4 x5=1c008ee4 x5:1c008ee0 +73414313ns 1290840 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008ee4 x6:1c0091a4 +73414540ns 1290844 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008ee4 PA:1c008ee4 +73414597ns 1290845 1c0008ba 00428293 addi x5, x5, 4 x5=1c008ee8 x5:1c008ee4 +73414654ns 1290846 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008ee8 x6:1c0091a4 +73414881ns 1290850 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008ee8 PA:1c008ee8 +73414938ns 1290851 1c0008ba 00428293 addi x5, x5, 4 x5=1c008eec x5:1c008ee8 +73414995ns 1290852 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008eec x6:1c0091a4 +73415222ns 1290856 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008eec PA:1c008eec +73415279ns 1290857 1c0008ba 00428293 addi x5, x5, 4 x5=1c008ef0 x5:1c008eec +73415336ns 1290858 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008ef0 x6:1c0091a4 +73415563ns 1290862 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008ef0 PA:1c008ef0 +73415620ns 1290863 1c0008ba 00428293 addi x5, x5, 4 x5=1c008ef4 x5:1c008ef0 +73415677ns 1290864 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008ef4 x6:1c0091a4 +73415904ns 1290868 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008ef4 PA:1c008ef4 +73415961ns 1290869 1c0008ba 00428293 addi x5, x5, 4 x5=1c008ef8 x5:1c008ef4 +73416018ns 1290870 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008ef8 x6:1c0091a4 +73416245ns 1290874 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008ef8 PA:1c008ef8 +73416302ns 1290875 1c0008ba 00428293 addi x5, x5, 4 x5=1c008efc x5:1c008ef8 +73416359ns 1290876 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008efc x6:1c0091a4 +73416586ns 1290880 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008efc PA:1c008efc +73416643ns 1290881 1c0008ba 00428293 addi x5, x5, 4 x5=1c008f00 x5:1c008efc +73416700ns 1290882 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008f00 x6:1c0091a4 +73416927ns 1290886 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008f00 PA:1c008f00 +73416984ns 1290887 1c0008ba 00428293 addi x5, x5, 4 x5=1c008f04 x5:1c008f00 +73417041ns 1290888 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008f04 x6:1c0091a4 +73417268ns 1290892 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008f04 PA:1c008f04 +73417325ns 1290893 1c0008ba 00428293 addi x5, x5, 4 x5=1c008f08 x5:1c008f04 +73417382ns 1290894 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008f08 x6:1c0091a4 +73417609ns 1290898 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008f08 PA:1c008f08 +73417666ns 1290899 1c0008ba 00428293 addi x5, x5, 4 x5=1c008f0c x5:1c008f08 +73417723ns 1290900 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008f0c x6:1c0091a4 +73417950ns 1290904 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008f0c PA:1c008f0c +73418007ns 1290905 1c0008ba 00428293 addi x5, x5, 4 x5=1c008f10 x5:1c008f0c +73418064ns 1290906 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008f10 x6:1c0091a4 +73418291ns 1290910 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008f10 PA:1c008f10 +73418348ns 1290911 1c0008ba 00428293 addi x5, x5, 4 x5=1c008f14 x5:1c008f10 +73418405ns 1290912 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008f14 x6:1c0091a4 +73418632ns 1290916 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008f14 PA:1c008f14 +73418689ns 1290917 1c0008ba 00428293 addi x5, x5, 4 x5=1c008f18 x5:1c008f14 +73418746ns 1290918 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008f18 x6:1c0091a4 +73418973ns 1290922 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008f18 PA:1c008f18 +73419030ns 1290923 1c0008ba 00428293 addi x5, x5, 4 x5=1c008f1c x5:1c008f18 +73419087ns 1290924 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008f1c x6:1c0091a4 +73419314ns 1290928 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008f1c PA:1c008f1c +73419371ns 1290929 1c0008ba 00428293 addi x5, x5, 4 x5=1c008f20 x5:1c008f1c +73419428ns 1290930 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008f20 x6:1c0091a4 +73419655ns 1290934 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008f20 PA:1c008f20 +73419712ns 1290935 1c0008ba 00428293 addi x5, x5, 4 x5=1c008f24 x5:1c008f20 +73419769ns 1290936 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008f24 x6:1c0091a4 +73419996ns 1290940 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008f24 PA:1c008f24 +73420053ns 1290941 1c0008ba 00428293 addi x5, x5, 4 x5=1c008f28 x5:1c008f24 +73420110ns 1290942 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008f28 x6:1c0091a4 +73420337ns 1290946 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008f28 PA:1c008f28 +73420394ns 1290947 1c0008ba 00428293 addi x5, x5, 4 x5=1c008f2c x5:1c008f28 +73420451ns 1290948 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008f2c x6:1c0091a4 +73420678ns 1290952 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008f2c PA:1c008f2c +73420735ns 1290953 1c0008ba 00428293 addi x5, x5, 4 x5=1c008f30 x5:1c008f2c +73420792ns 1290954 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008f30 x6:1c0091a4 +73421019ns 1290958 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008f30 PA:1c008f30 +73421076ns 1290959 1c0008ba 00428293 addi x5, x5, 4 x5=1c008f34 x5:1c008f30 +73421133ns 1290960 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008f34 x6:1c0091a4 +73421360ns 1290964 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008f34 PA:1c008f34 +73421417ns 1290965 1c0008ba 00428293 addi x5, x5, 4 x5=1c008f38 x5:1c008f34 +73421474ns 1290966 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008f38 x6:1c0091a4 +73421701ns 1290970 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008f38 PA:1c008f38 +73421758ns 1290971 1c0008ba 00428293 addi x5, x5, 4 x5=1c008f3c x5:1c008f38 +73421815ns 1290972 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008f3c x6:1c0091a4 +73422042ns 1290976 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008f3c PA:1c008f3c +73422099ns 1290977 1c0008ba 00428293 addi x5, x5, 4 x5=1c008f40 x5:1c008f3c +73422156ns 1290978 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008f40 x6:1c0091a4 +73422383ns 1290982 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008f40 PA:1c008f40 +73422440ns 1290983 1c0008ba 00428293 addi x5, x5, 4 x5=1c008f44 x5:1c008f40 +73422497ns 1290984 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008f44 x6:1c0091a4 +73422724ns 1290988 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008f44 PA:1c008f44 +73422781ns 1290989 1c0008ba 00428293 addi x5, x5, 4 x5=1c008f48 x5:1c008f44 +73422838ns 1290990 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008f48 x6:1c0091a4 +73423065ns 1290994 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008f48 PA:1c008f48 +73423122ns 1290995 1c0008ba 00428293 addi x5, x5, 4 x5=1c008f4c x5:1c008f48 +73423179ns 1290996 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008f4c x6:1c0091a4 +73423406ns 1291000 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008f4c PA:1c008f4c +73423463ns 1291001 1c0008ba 00428293 addi x5, x5, 4 x5=1c008f50 x5:1c008f4c +73423520ns 1291002 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008f50 x6:1c0091a4 +73423747ns 1291006 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008f50 PA:1c008f50 +73423804ns 1291007 1c0008ba 00428293 addi x5, x5, 4 x5=1c008f54 x5:1c008f50 +73423861ns 1291008 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008f54 x6:1c0091a4 +73424088ns 1291012 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008f54 PA:1c008f54 +73424145ns 1291013 1c0008ba 00428293 addi x5, x5, 4 x5=1c008f58 x5:1c008f54 +73424202ns 1291014 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008f58 x6:1c0091a4 +73424429ns 1291018 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008f58 PA:1c008f58 +73424486ns 1291019 1c0008ba 00428293 addi x5, x5, 4 x5=1c008f5c x5:1c008f58 +73424543ns 1291020 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008f5c x6:1c0091a4 +73424770ns 1291024 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008f5c PA:1c008f5c +73424827ns 1291025 1c0008ba 00428293 addi x5, x5, 4 x5=1c008f60 x5:1c008f5c +73424884ns 1291026 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008f60 x6:1c0091a4 +73425111ns 1291030 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008f60 PA:1c008f60 +73425168ns 1291031 1c0008ba 00428293 addi x5, x5, 4 x5=1c008f64 x5:1c008f60 +73425225ns 1291032 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008f64 x6:1c0091a4 +73425452ns 1291036 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008f64 PA:1c008f64 +73425509ns 1291037 1c0008ba 00428293 addi x5, x5, 4 x5=1c008f68 x5:1c008f64 +73425566ns 1291038 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008f68 x6:1c0091a4 +73425793ns 1291042 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008f68 PA:1c008f68 +73425850ns 1291043 1c0008ba 00428293 addi x5, x5, 4 x5=1c008f6c x5:1c008f68 +73425907ns 1291044 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008f6c x6:1c0091a4 +73426134ns 1291048 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008f6c PA:1c008f6c +73426191ns 1291049 1c0008ba 00428293 addi x5, x5, 4 x5=1c008f70 x5:1c008f6c +73426248ns 1291050 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008f70 x6:1c0091a4 +73426475ns 1291054 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008f70 PA:1c008f70 +73426532ns 1291055 1c0008ba 00428293 addi x5, x5, 4 x5=1c008f74 x5:1c008f70 +73426589ns 1291056 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008f74 x6:1c0091a4 +73426816ns 1291060 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008f74 PA:1c008f74 +73426873ns 1291061 1c0008ba 00428293 addi x5, x5, 4 x5=1c008f78 x5:1c008f74 +73426930ns 1291062 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008f78 x6:1c0091a4 +73427157ns 1291066 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008f78 PA:1c008f78 +73427214ns 1291067 1c0008ba 00428293 addi x5, x5, 4 x5=1c008f7c x5:1c008f78 +73427271ns 1291068 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008f7c x6:1c0091a4 +73427498ns 1291072 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008f7c PA:1c008f7c +73427555ns 1291073 1c0008ba 00428293 addi x5, x5, 4 x5=1c008f80 x5:1c008f7c +73427612ns 1291074 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008f80 x6:1c0091a4 +73427839ns 1291078 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008f80 PA:1c008f80 +73427896ns 1291079 1c0008ba 00428293 addi x5, x5, 4 x5=1c008f84 x5:1c008f80 +73427953ns 1291080 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008f84 x6:1c0091a4 +73428180ns 1291084 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008f84 PA:1c008f84 +73428237ns 1291085 1c0008ba 00428293 addi x5, x5, 4 x5=1c008f88 x5:1c008f84 +73428294ns 1291086 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008f88 x6:1c0091a4 +73428521ns 1291090 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008f88 PA:1c008f88 +73428578ns 1291091 1c0008ba 00428293 addi x5, x5, 4 x5=1c008f8c x5:1c008f88 +73428635ns 1291092 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008f8c x6:1c0091a4 +73428862ns 1291096 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008f8c PA:1c008f8c +73428919ns 1291097 1c0008ba 00428293 addi x5, x5, 4 x5=1c008f90 x5:1c008f8c +73428976ns 1291098 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008f90 x6:1c0091a4 +73429203ns 1291102 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008f90 PA:1c008f90 +73429260ns 1291103 1c0008ba 00428293 addi x5, x5, 4 x5=1c008f94 x5:1c008f90 +73429317ns 1291104 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008f94 x6:1c0091a4 +73429544ns 1291108 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008f94 PA:1c008f94 +73429601ns 1291109 1c0008ba 00428293 addi x5, x5, 4 x5=1c008f98 x5:1c008f94 +73429658ns 1291110 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008f98 x6:1c0091a4 +73429885ns 1291114 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008f98 PA:1c008f98 +73429942ns 1291115 1c0008ba 00428293 addi x5, x5, 4 x5=1c008f9c x5:1c008f98 +73429999ns 1291116 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008f9c x6:1c0091a4 +73430226ns 1291120 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008f9c PA:1c008f9c +73430283ns 1291121 1c0008ba 00428293 addi x5, x5, 4 x5=1c008fa0 x5:1c008f9c +73430340ns 1291122 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008fa0 x6:1c0091a4 +73430567ns 1291126 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008fa0 PA:1c008fa0 +73430624ns 1291127 1c0008ba 00428293 addi x5, x5, 4 x5=1c008fa4 x5:1c008fa0 +73430681ns 1291128 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008fa4 x6:1c0091a4 +73430908ns 1291132 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008fa4 PA:1c008fa4 +73430965ns 1291133 1c0008ba 00428293 addi x5, x5, 4 x5=1c008fa8 x5:1c008fa4 +73431022ns 1291134 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008fa8 x6:1c0091a4 +73431249ns 1291138 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008fa8 PA:1c008fa8 +73431306ns 1291139 1c0008ba 00428293 addi x5, x5, 4 x5=1c008fac x5:1c008fa8 +73431363ns 1291140 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008fac x6:1c0091a4 +73431590ns 1291144 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008fac PA:1c008fac +73431647ns 1291145 1c0008ba 00428293 addi x5, x5, 4 x5=1c008fb0 x5:1c008fac +73431704ns 1291146 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008fb0 x6:1c0091a4 +73431931ns 1291150 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008fb0 PA:1c008fb0 +73431988ns 1291151 1c0008ba 00428293 addi x5, x5, 4 x5=1c008fb4 x5:1c008fb0 +73432045ns 1291152 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008fb4 x6:1c0091a4 +73432272ns 1291156 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008fb4 PA:1c008fb4 +73432329ns 1291157 1c0008ba 00428293 addi x5, x5, 4 x5=1c008fb8 x5:1c008fb4 +73432386ns 1291158 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008fb8 x6:1c0091a4 +73432613ns 1291162 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008fb8 PA:1c008fb8 +73432670ns 1291163 1c0008ba 00428293 addi x5, x5, 4 x5=1c008fbc x5:1c008fb8 +73432727ns 1291164 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008fbc x6:1c0091a4 +73432954ns 1291168 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008fbc PA:1c008fbc +73433011ns 1291169 1c0008ba 00428293 addi x5, x5, 4 x5=1c008fc0 x5:1c008fbc +73433068ns 1291170 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008fc0 x6:1c0091a4 +73433295ns 1291174 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008fc0 PA:1c008fc0 +73433352ns 1291175 1c0008ba 00428293 addi x5, x5, 4 x5=1c008fc4 x5:1c008fc0 +73433409ns 1291176 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008fc4 x6:1c0091a4 +73433636ns 1291180 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008fc4 PA:1c008fc4 +73433693ns 1291181 1c0008ba 00428293 addi x5, x5, 4 x5=1c008fc8 x5:1c008fc4 +73433750ns 1291182 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008fc8 x6:1c0091a4 +73433977ns 1291186 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008fc8 PA:1c008fc8 +73434034ns 1291187 1c0008ba 00428293 addi x5, x5, 4 x5=1c008fcc x5:1c008fc8 +73434091ns 1291188 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008fcc x6:1c0091a4 +73434318ns 1291192 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008fcc PA:1c008fcc +73434375ns 1291193 1c0008ba 00428293 addi x5, x5, 4 x5=1c008fd0 x5:1c008fcc +73434432ns 1291194 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008fd0 x6:1c0091a4 +73434659ns 1291198 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008fd0 PA:1c008fd0 +73434716ns 1291199 1c0008ba 00428293 addi x5, x5, 4 x5=1c008fd4 x5:1c008fd0 +73434773ns 1291200 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008fd4 x6:1c0091a4 +73435000ns 1291204 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008fd4 PA:1c008fd4 +73435057ns 1291205 1c0008ba 00428293 addi x5, x5, 4 x5=1c008fd8 x5:1c008fd4 +73435114ns 1291206 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008fd8 x6:1c0091a4 +73435341ns 1291210 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008fd8 PA:1c008fd8 +73435398ns 1291211 1c0008ba 00428293 addi x5, x5, 4 x5=1c008fdc x5:1c008fd8 +73435455ns 1291212 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008fdc x6:1c0091a4 +73435682ns 1291216 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008fdc PA:1c008fdc +73435739ns 1291217 1c0008ba 00428293 addi x5, x5, 4 x5=1c008fe0 x5:1c008fdc +73435795ns 1291218 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008fe0 x6:1c0091a4 +73436023ns 1291222 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008fe0 PA:1c008fe0 +73436080ns 1291223 1c0008ba 00428293 addi x5, x5, 4 x5=1c008fe4 x5:1c008fe0 +73436136ns 1291224 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008fe4 x6:1c0091a4 +73436364ns 1291228 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008fe4 PA:1c008fe4 +73436421ns 1291229 1c0008ba 00428293 addi x5, x5, 4 x5=1c008fe8 x5:1c008fe4 +73436477ns 1291230 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008fe8 x6:1c0091a4 +73436705ns 1291234 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008fe8 PA:1c008fe8 +73436762ns 1291235 1c0008ba 00428293 addi x5, x5, 4 x5=1c008fec x5:1c008fe8 +73436818ns 1291236 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008fec x6:1c0091a4 +73437046ns 1291240 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008fec PA:1c008fec +73437103ns 1291241 1c0008ba 00428293 addi x5, x5, 4 x5=1c008ff0 x5:1c008fec +73437159ns 1291242 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008ff0 x6:1c0091a4 +73437387ns 1291246 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008ff0 PA:1c008ff0 +73437444ns 1291247 1c0008ba 00428293 addi x5, x5, 4 x5=1c008ff4 x5:1c008ff0 +73437500ns 1291248 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008ff4 x6:1c0091a4 +73437728ns 1291252 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008ff4 PA:1c008ff4 +73437785ns 1291253 1c0008ba 00428293 addi x5, x5, 4 x5=1c008ff8 x5:1c008ff4 +73437841ns 1291254 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008ff8 x6:1c0091a4 +73438069ns 1291258 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008ff8 PA:1c008ff8 +73438126ns 1291259 1c0008ba 00428293 addi x5, x5, 4 x5=1c008ffc x5:1c008ff8 +73438182ns 1291260 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c008ffc x6:1c0091a4 +73438410ns 1291264 1c0008b6 0002a023 sw x0, 0(x5) x5:1c008ffc PA:1c008ffc +73438467ns 1291265 1c0008ba 00428293 addi x5, x5, 4 x5=1c009000 x5:1c008ffc +73438523ns 1291266 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c009000 x6:1c0091a4 +73438751ns 1291270 1c0008b6 0002a023 sw x0, 0(x5) x5:1c009000 PA:1c009000 +73438808ns 1291271 1c0008ba 00428293 addi x5, x5, 4 x5=1c009004 x5:1c009000 +73438864ns 1291272 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c009004 x6:1c0091a4 +73439092ns 1291276 1c0008b6 0002a023 sw x0, 0(x5) x5:1c009004 PA:1c009004 +73439149ns 1291277 1c0008ba 00428293 addi x5, x5, 4 x5=1c009008 x5:1c009004 +73439205ns 1291278 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c009008 x6:1c0091a4 +73439433ns 1291282 1c0008b6 0002a023 sw x0, 0(x5) x5:1c009008 PA:1c009008 +73439490ns 1291283 1c0008ba 00428293 addi x5, x5, 4 x5=1c00900c x5:1c009008 +73439546ns 1291284 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c00900c x6:1c0091a4 +73439774ns 1291288 1c0008b6 0002a023 sw x0, 0(x5) x5:1c00900c PA:1c00900c +73439831ns 1291289 1c0008ba 00428293 addi x5, x5, 4 x5=1c009010 x5:1c00900c +73439887ns 1291290 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c009010 x6:1c0091a4 +73440115ns 1291294 1c0008b6 0002a023 sw x0, 0(x5) x5:1c009010 PA:1c009010 +73440172ns 1291295 1c0008ba 00428293 addi x5, x5, 4 x5=1c009014 x5:1c009010 +73440228ns 1291296 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c009014 x6:1c0091a4 +73440456ns 1291300 1c0008b6 0002a023 sw x0, 0(x5) x5:1c009014 PA:1c009014 +73440513ns 1291301 1c0008ba 00428293 addi x5, x5, 4 x5=1c009018 x5:1c009014 +73440569ns 1291302 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c009018 x6:1c0091a4 +73440797ns 1291306 1c0008b6 0002a023 sw x0, 0(x5) x5:1c009018 PA:1c009018 +73440854ns 1291307 1c0008ba 00428293 addi x5, x5, 4 x5=1c00901c x5:1c009018 +73440910ns 1291308 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c00901c x6:1c0091a4 +73441138ns 1291312 1c0008b6 0002a023 sw x0, 0(x5) x5:1c00901c PA:1c00901c +73441195ns 1291313 1c0008ba 00428293 addi x5, x5, 4 x5=1c009020 x5:1c00901c +73441251ns 1291314 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c009020 x6:1c0091a4 +73441479ns 1291318 1c0008b6 0002a023 sw x0, 0(x5) x5:1c009020 PA:1c009020 +73441536ns 1291319 1c0008ba 00428293 addi x5, x5, 4 x5=1c009024 x5:1c009020 +73441592ns 1291320 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c009024 x6:1c0091a4 +73441820ns 1291324 1c0008b6 0002a023 sw x0, 0(x5) x5:1c009024 PA:1c009024 +73441877ns 1291325 1c0008ba 00428293 addi x5, x5, 4 x5=1c009028 x5:1c009024 +73441933ns 1291326 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c009028 x6:1c0091a4 +73442161ns 1291330 1c0008b6 0002a023 sw x0, 0(x5) x5:1c009028 PA:1c009028 +73442218ns 1291331 1c0008ba 00428293 addi x5, x5, 4 x5=1c00902c x5:1c009028 +73442274ns 1291332 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c00902c x6:1c0091a4 +73442502ns 1291336 1c0008b6 0002a023 sw x0, 0(x5) x5:1c00902c PA:1c00902c +73442559ns 1291337 1c0008ba 00428293 addi x5, x5, 4 x5=1c009030 x5:1c00902c +73442615ns 1291338 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c009030 x6:1c0091a4 +73442843ns 1291342 1c0008b6 0002a023 sw x0, 0(x5) x5:1c009030 PA:1c009030 +73442899ns 1291343 1c0008ba 00428293 addi x5, x5, 4 x5=1c009034 x5:1c009030 +73442956ns 1291344 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c009034 x6:1c0091a4 +73443184ns 1291348 1c0008b6 0002a023 sw x0, 0(x5) x5:1c009034 PA:1c009034 +73443240ns 1291349 1c0008ba 00428293 addi x5, x5, 4 x5=1c009038 x5:1c009034 +73443297ns 1291350 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c009038 x6:1c0091a4 +73443525ns 1291354 1c0008b6 0002a023 sw x0, 0(x5) x5:1c009038 PA:1c009038 +73443581ns 1291355 1c0008ba 00428293 addi x5, x5, 4 x5=1c00903c x5:1c009038 +73443638ns 1291356 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c00903c x6:1c0091a4 +73443866ns 1291360 1c0008b6 0002a023 sw x0, 0(x5) x5:1c00903c PA:1c00903c +73443922ns 1291361 1c0008ba 00428293 addi x5, x5, 4 x5=1c009040 x5:1c00903c +73443979ns 1291362 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c009040 x6:1c0091a4 +73444207ns 1291366 1c0008b6 0002a023 sw x0, 0(x5) x5:1c009040 PA:1c009040 +73444263ns 1291367 1c0008ba 00428293 addi x5, x5, 4 x5=1c009044 x5:1c009040 +73444320ns 1291368 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c009044 x6:1c0091a4 +73444548ns 1291372 1c0008b6 0002a023 sw x0, 0(x5) x5:1c009044 PA:1c009044 +73444604ns 1291373 1c0008ba 00428293 addi x5, x5, 4 x5=1c009048 x5:1c009044 +73444661ns 1291374 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c009048 x6:1c0091a4 +73444889ns 1291378 1c0008b6 0002a023 sw x0, 0(x5) x5:1c009048 PA:1c009048 +73444945ns 1291379 1c0008ba 00428293 addi x5, x5, 4 x5=1c00904c x5:1c009048 +73445002ns 1291380 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c00904c x6:1c0091a4 +73445230ns 1291384 1c0008b6 0002a023 sw x0, 0(x5) x5:1c00904c PA:1c00904c +73445286ns 1291385 1c0008ba 00428293 addi x5, x5, 4 x5=1c009050 x5:1c00904c +73445343ns 1291386 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c009050 x6:1c0091a4 +73445571ns 1291390 1c0008b6 0002a023 sw x0, 0(x5) x5:1c009050 PA:1c009050 +73445627ns 1291391 1c0008ba 00428293 addi x5, x5, 4 x5=1c009054 x5:1c009050 +73445684ns 1291392 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c009054 x6:1c0091a4 +73445912ns 1291396 1c0008b6 0002a023 sw x0, 0(x5) x5:1c009054 PA:1c009054 +73445968ns 1291397 1c0008ba 00428293 addi x5, x5, 4 x5=1c009058 x5:1c009054 +73446025ns 1291398 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c009058 x6:1c0091a4 +73446253ns 1291402 1c0008b6 0002a023 sw x0, 0(x5) x5:1c009058 PA:1c009058 +73446309ns 1291403 1c0008ba 00428293 addi x5, x5, 4 x5=1c00905c x5:1c009058 +73446366ns 1291404 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c00905c x6:1c0091a4 +73446594ns 1291408 1c0008b6 0002a023 sw x0, 0(x5) x5:1c00905c PA:1c00905c +73446650ns 1291409 1c0008ba 00428293 addi x5, x5, 4 x5=1c009060 x5:1c00905c +73446707ns 1291410 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c009060 x6:1c0091a4 +73446935ns 1291414 1c0008b6 0002a023 sw x0, 0(x5) x5:1c009060 PA:1c009060 +73446991ns 1291415 1c0008ba 00428293 addi x5, x5, 4 x5=1c009064 x5:1c009060 +73447048ns 1291416 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c009064 x6:1c0091a4 +73447276ns 1291420 1c0008b6 0002a023 sw x0, 0(x5) x5:1c009064 PA:1c009064 +73447332ns 1291421 1c0008ba 00428293 addi x5, x5, 4 x5=1c009068 x5:1c009064 +73447389ns 1291422 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c009068 x6:1c0091a4 +73447617ns 1291426 1c0008b6 0002a023 sw x0, 0(x5) x5:1c009068 PA:1c009068 +73447673ns 1291427 1c0008ba 00428293 addi x5, x5, 4 x5=1c00906c x5:1c009068 +73447730ns 1291428 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c00906c x6:1c0091a4 +73447958ns 1291432 1c0008b6 0002a023 sw x0, 0(x5) x5:1c00906c PA:1c00906c +73448014ns 1291433 1c0008ba 00428293 addi x5, x5, 4 x5=1c009070 x5:1c00906c +73448071ns 1291434 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c009070 x6:1c0091a4 +73448299ns 1291438 1c0008b6 0002a023 sw x0, 0(x5) x5:1c009070 PA:1c009070 +73448355ns 1291439 1c0008ba 00428293 addi x5, x5, 4 x5=1c009074 x5:1c009070 +73448412ns 1291440 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c009074 x6:1c0091a4 +73448640ns 1291444 1c0008b6 0002a023 sw x0, 0(x5) x5:1c009074 PA:1c009074 +73448696ns 1291445 1c0008ba 00428293 addi x5, x5, 4 x5=1c009078 x5:1c009074 +73448753ns 1291446 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c009078 x6:1c0091a4 +73448981ns 1291450 1c0008b6 0002a023 sw x0, 0(x5) x5:1c009078 PA:1c009078 +73449037ns 1291451 1c0008ba 00428293 addi x5, x5, 4 x5=1c00907c x5:1c009078 +73449094ns 1291452 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c00907c x6:1c0091a4 +73449322ns 1291456 1c0008b6 0002a023 sw x0, 0(x5) x5:1c00907c PA:1c00907c +73449378ns 1291457 1c0008ba 00428293 addi x5, x5, 4 x5=1c009080 x5:1c00907c +73449435ns 1291458 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c009080 x6:1c0091a4 +73449663ns 1291462 1c0008b6 0002a023 sw x0, 0(x5) x5:1c009080 PA:1c009080 +73449719ns 1291463 1c0008ba 00428293 addi x5, x5, 4 x5=1c009084 x5:1c009080 +73449776ns 1291464 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c009084 x6:1c0091a4 +73450003ns 1291468 1c0008b6 0002a023 sw x0, 0(x5) x5:1c009084 PA:1c009084 +73450060ns 1291469 1c0008ba 00428293 addi x5, x5, 4 x5=1c009088 x5:1c009084 +73450117ns 1291470 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c009088 x6:1c0091a4 +73450344ns 1291474 1c0008b6 0002a023 sw x0, 0(x5) x5:1c009088 PA:1c009088 +73450401ns 1291475 1c0008ba 00428293 addi x5, x5, 4 x5=1c00908c x5:1c009088 +73450458ns 1291476 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c00908c x6:1c0091a4 +73450685ns 1291480 1c0008b6 0002a023 sw x0, 0(x5) x5:1c00908c PA:1c00908c +73450742ns 1291481 1c0008ba 00428293 addi x5, x5, 4 x5=1c009090 x5:1c00908c +73450799ns 1291482 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c009090 x6:1c0091a4 +73451026ns 1291486 1c0008b6 0002a023 sw x0, 0(x5) x5:1c009090 PA:1c009090 +73451083ns 1291487 1c0008ba 00428293 addi x5, x5, 4 x5=1c009094 x5:1c009090 +73451140ns 1291488 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c009094 x6:1c0091a4 +73451367ns 1291492 1c0008b6 0002a023 sw x0, 0(x5) x5:1c009094 PA:1c009094 +73451424ns 1291493 1c0008ba 00428293 addi x5, x5, 4 x5=1c009098 x5:1c009094 +73451481ns 1291494 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c009098 x6:1c0091a4 +73451708ns 1291498 1c0008b6 0002a023 sw x0, 0(x5) x5:1c009098 PA:1c009098 +73451765ns 1291499 1c0008ba 00428293 addi x5, x5, 4 x5=1c00909c x5:1c009098 +73451822ns 1291500 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c00909c x6:1c0091a4 +73452049ns 1291504 1c0008b6 0002a023 sw x0, 0(x5) x5:1c00909c PA:1c00909c +73452106ns 1291505 1c0008ba 00428293 addi x5, x5, 4 x5=1c0090a0 x5:1c00909c +73452163ns 1291506 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c0090a0 x6:1c0091a4 +73452390ns 1291510 1c0008b6 0002a023 sw x0, 0(x5) x5:1c0090a0 PA:1c0090a0 +73452447ns 1291511 1c0008ba 00428293 addi x5, x5, 4 x5=1c0090a4 x5:1c0090a0 +73452504ns 1291512 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c0090a4 x6:1c0091a4 +73452731ns 1291516 1c0008b6 0002a023 sw x0, 0(x5) x5:1c0090a4 PA:1c0090a4 +73452788ns 1291517 1c0008ba 00428293 addi x5, x5, 4 x5=1c0090a8 x5:1c0090a4 +73452845ns 1291518 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c0090a8 x6:1c0091a4 +73453072ns 1291522 1c0008b6 0002a023 sw x0, 0(x5) x5:1c0090a8 PA:1c0090a8 +73453129ns 1291523 1c0008ba 00428293 addi x5, x5, 4 x5=1c0090ac x5:1c0090a8 +73453186ns 1291524 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c0090ac x6:1c0091a4 +73453413ns 1291528 1c0008b6 0002a023 sw x0, 0(x5) x5:1c0090ac PA:1c0090ac +73453470ns 1291529 1c0008ba 00428293 addi x5, x5, 4 x5=1c0090b0 x5:1c0090ac +73453527ns 1291530 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c0090b0 x6:1c0091a4 +73453754ns 1291534 1c0008b6 0002a023 sw x0, 0(x5) x5:1c0090b0 PA:1c0090b0 +73453811ns 1291535 1c0008ba 00428293 addi x5, x5, 4 x5=1c0090b4 x5:1c0090b0 +73453868ns 1291536 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c0090b4 x6:1c0091a4 +73454095ns 1291540 1c0008b6 0002a023 sw x0, 0(x5) x5:1c0090b4 PA:1c0090b4 +73454152ns 1291541 1c0008ba 00428293 addi x5, x5, 4 x5=1c0090b8 x5:1c0090b4 +73454209ns 1291542 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c0090b8 x6:1c0091a4 +73454436ns 1291546 1c0008b6 0002a023 sw x0, 0(x5) x5:1c0090b8 PA:1c0090b8 +73454493ns 1291547 1c0008ba 00428293 addi x5, x5, 4 x5=1c0090bc x5:1c0090b8 +73454550ns 1291548 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c0090bc x6:1c0091a4 +73454777ns 1291552 1c0008b6 0002a023 sw x0, 0(x5) x5:1c0090bc PA:1c0090bc +73454834ns 1291553 1c0008ba 00428293 addi x5, x5, 4 x5=1c0090c0 x5:1c0090bc +73454891ns 1291554 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c0090c0 x6:1c0091a4 +73455118ns 1291558 1c0008b6 0002a023 sw x0, 0(x5) x5:1c0090c0 PA:1c0090c0 +73455175ns 1291559 1c0008ba 00428293 addi x5, x5, 4 x5=1c0090c4 x5:1c0090c0 +73455232ns 1291560 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c0090c4 x6:1c0091a4 +73455459ns 1291564 1c0008b6 0002a023 sw x0, 0(x5) x5:1c0090c4 PA:1c0090c4 +73455516ns 1291565 1c0008ba 00428293 addi x5, x5, 4 x5=1c0090c8 x5:1c0090c4 +73455573ns 1291566 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c0090c8 x6:1c0091a4 +73455800ns 1291570 1c0008b6 0002a023 sw x0, 0(x5) x5:1c0090c8 PA:1c0090c8 +73455857ns 1291571 1c0008ba 00428293 addi x5, x5, 4 x5=1c0090cc x5:1c0090c8 +73455914ns 1291572 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c0090cc x6:1c0091a4 +73456141ns 1291576 1c0008b6 0002a023 sw x0, 0(x5) x5:1c0090cc PA:1c0090cc +73456198ns 1291577 1c0008ba 00428293 addi x5, x5, 4 x5=1c0090d0 x5:1c0090cc +73456255ns 1291578 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c0090d0 x6:1c0091a4 +73456482ns 1291582 1c0008b6 0002a023 sw x0, 0(x5) x5:1c0090d0 PA:1c0090d0 +73456539ns 1291583 1c0008ba 00428293 addi x5, x5, 4 x5=1c0090d4 x5:1c0090d0 +73456596ns 1291584 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c0090d4 x6:1c0091a4 +73456823ns 1291588 1c0008b6 0002a023 sw x0, 0(x5) x5:1c0090d4 PA:1c0090d4 +73456880ns 1291589 1c0008ba 00428293 addi x5, x5, 4 x5=1c0090d8 x5:1c0090d4 +73456937ns 1291590 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c0090d8 x6:1c0091a4 +73457164ns 1291594 1c0008b6 0002a023 sw x0, 0(x5) x5:1c0090d8 PA:1c0090d8 +73457221ns 1291595 1c0008ba 00428293 addi x5, x5, 4 x5=1c0090dc x5:1c0090d8 +73457278ns 1291596 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c0090dc x6:1c0091a4 +73457505ns 1291600 1c0008b6 0002a023 sw x0, 0(x5) x5:1c0090dc PA:1c0090dc +73457562ns 1291601 1c0008ba 00428293 addi x5, x5, 4 x5=1c0090e0 x5:1c0090dc +73457619ns 1291602 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c0090e0 x6:1c0091a4 +73457846ns 1291606 1c0008b6 0002a023 sw x0, 0(x5) x5:1c0090e0 PA:1c0090e0 +73457903ns 1291607 1c0008ba 00428293 addi x5, x5, 4 x5=1c0090e4 x5:1c0090e0 +73457960ns 1291608 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c0090e4 x6:1c0091a4 +73458187ns 1291612 1c0008b6 0002a023 sw x0, 0(x5) x5:1c0090e4 PA:1c0090e4 +73458244ns 1291613 1c0008ba 00428293 addi x5, x5, 4 x5=1c0090e8 x5:1c0090e4 +73458301ns 1291614 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c0090e8 x6:1c0091a4 +73458528ns 1291618 1c0008b6 0002a023 sw x0, 0(x5) x5:1c0090e8 PA:1c0090e8 +73458585ns 1291619 1c0008ba 00428293 addi x5, x5, 4 x5=1c0090ec x5:1c0090e8 +73458642ns 1291620 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c0090ec x6:1c0091a4 +73458869ns 1291624 1c0008b6 0002a023 sw x0, 0(x5) x5:1c0090ec PA:1c0090ec +73458926ns 1291625 1c0008ba 00428293 addi x5, x5, 4 x5=1c0090f0 x5:1c0090ec +73458983ns 1291626 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c0090f0 x6:1c0091a4 +73459210ns 1291630 1c0008b6 0002a023 sw x0, 0(x5) x5:1c0090f0 PA:1c0090f0 +73459267ns 1291631 1c0008ba 00428293 addi x5, x5, 4 x5=1c0090f4 x5:1c0090f0 +73459324ns 1291632 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c0090f4 x6:1c0091a4 +73459551ns 1291636 1c0008b6 0002a023 sw x0, 0(x5) x5:1c0090f4 PA:1c0090f4 +73459608ns 1291637 1c0008ba 00428293 addi x5, x5, 4 x5=1c0090f8 x5:1c0090f4 +73459665ns 1291638 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c0090f8 x6:1c0091a4 +73459892ns 1291642 1c0008b6 0002a023 sw x0, 0(x5) x5:1c0090f8 PA:1c0090f8 +73459949ns 1291643 1c0008ba 00428293 addi x5, x5, 4 x5=1c0090fc x5:1c0090f8 +73460006ns 1291644 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c0090fc x6:1c0091a4 +73460233ns 1291648 1c0008b6 0002a023 sw x0, 0(x5) x5:1c0090fc PA:1c0090fc +73460290ns 1291649 1c0008ba 00428293 addi x5, x5, 4 x5=1c009100 x5:1c0090fc +73460347ns 1291650 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c009100 x6:1c0091a4 +73460574ns 1291654 1c0008b6 0002a023 sw x0, 0(x5) x5:1c009100 PA:1c009100 +73460631ns 1291655 1c0008ba 00428293 addi x5, x5, 4 x5=1c009104 x5:1c009100 +73460688ns 1291656 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c009104 x6:1c0091a4 +73460915ns 1291660 1c0008b6 0002a023 sw x0, 0(x5) x5:1c009104 PA:1c009104 +73460972ns 1291661 1c0008ba 00428293 addi x5, x5, 4 x5=1c009108 x5:1c009104 +73461029ns 1291662 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c009108 x6:1c0091a4 +73461256ns 1291666 1c0008b6 0002a023 sw x0, 0(x5) x5:1c009108 PA:1c009108 +73461313ns 1291667 1c0008ba 00428293 addi x5, x5, 4 x5=1c00910c x5:1c009108 +73461370ns 1291668 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c00910c x6:1c0091a4 +73461597ns 1291672 1c0008b6 0002a023 sw x0, 0(x5) x5:1c00910c PA:1c00910c +73461654ns 1291673 1c0008ba 00428293 addi x5, x5, 4 x5=1c009110 x5:1c00910c +73461711ns 1291674 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c009110 x6:1c0091a4 +73461938ns 1291678 1c0008b6 0002a023 sw x0, 0(x5) x5:1c009110 PA:1c009110 +73461995ns 1291679 1c0008ba 00428293 addi x5, x5, 4 x5=1c009114 x5:1c009110 +73462052ns 1291680 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c009114 x6:1c0091a4 +73462279ns 1291684 1c0008b6 0002a023 sw x0, 0(x5) x5:1c009114 PA:1c009114 +73462336ns 1291685 1c0008ba 00428293 addi x5, x5, 4 x5=1c009118 x5:1c009114 +73462393ns 1291686 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c009118 x6:1c0091a4 +73462620ns 1291690 1c0008b6 0002a023 sw x0, 0(x5) x5:1c009118 PA:1c009118 +73462677ns 1291691 1c0008ba 00428293 addi x5, x5, 4 x5=1c00911c x5:1c009118 +73462734ns 1291692 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c00911c x6:1c0091a4 +73462961ns 1291696 1c0008b6 0002a023 sw x0, 0(x5) x5:1c00911c PA:1c00911c +73463018ns 1291697 1c0008ba 00428293 addi x5, x5, 4 x5=1c009120 x5:1c00911c +73463075ns 1291698 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c009120 x6:1c0091a4 +73463302ns 1291702 1c0008b6 0002a023 sw x0, 0(x5) x5:1c009120 PA:1c009120 +73463359ns 1291703 1c0008ba 00428293 addi x5, x5, 4 x5=1c009124 x5:1c009120 +73463416ns 1291704 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c009124 x6:1c0091a4 +73463643ns 1291708 1c0008b6 0002a023 sw x0, 0(x5) x5:1c009124 PA:1c009124 +73463700ns 1291709 1c0008ba 00428293 addi x5, x5, 4 x5=1c009128 x5:1c009124 +73463757ns 1291710 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c009128 x6:1c0091a4 +73463984ns 1291714 1c0008b6 0002a023 sw x0, 0(x5) x5:1c009128 PA:1c009128 +73464041ns 1291715 1c0008ba 00428293 addi x5, x5, 4 x5=1c00912c x5:1c009128 +73464098ns 1291716 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c00912c x6:1c0091a4 +73464325ns 1291720 1c0008b6 0002a023 sw x0, 0(x5) x5:1c00912c PA:1c00912c +73464382ns 1291721 1c0008ba 00428293 addi x5, x5, 4 x5=1c009130 x5:1c00912c +73464439ns 1291722 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c009130 x6:1c0091a4 +73464666ns 1291726 1c0008b6 0002a023 sw x0, 0(x5) x5:1c009130 PA:1c009130 +73464723ns 1291727 1c0008ba 00428293 addi x5, x5, 4 x5=1c009134 x5:1c009130 +73464780ns 1291728 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c009134 x6:1c0091a4 +73465007ns 1291732 1c0008b6 0002a023 sw x0, 0(x5) x5:1c009134 PA:1c009134 +73465064ns 1291733 1c0008ba 00428293 addi x5, x5, 4 x5=1c009138 x5:1c009134 +73465121ns 1291734 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c009138 x6:1c0091a4 +73465348ns 1291738 1c0008b6 0002a023 sw x0, 0(x5) x5:1c009138 PA:1c009138 +73465405ns 1291739 1c0008ba 00428293 addi x5, x5, 4 x5=1c00913c x5:1c009138 +73465462ns 1291740 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c00913c x6:1c0091a4 +73465689ns 1291744 1c0008b6 0002a023 sw x0, 0(x5) x5:1c00913c PA:1c00913c +73465746ns 1291745 1c0008ba 00428293 addi x5, x5, 4 x5=1c009140 x5:1c00913c +73465803ns 1291746 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c009140 x6:1c0091a4 +73466030ns 1291750 1c0008b6 0002a023 sw x0, 0(x5) x5:1c009140 PA:1c009140 +73466087ns 1291751 1c0008ba 00428293 addi x5, x5, 4 x5=1c009144 x5:1c009140 +73466144ns 1291752 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c009144 x6:1c0091a4 +73466371ns 1291756 1c0008b6 0002a023 sw x0, 0(x5) x5:1c009144 PA:1c009144 +73466428ns 1291757 1c0008ba 00428293 addi x5, x5, 4 x5=1c009148 x5:1c009144 +73466485ns 1291758 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c009148 x6:1c0091a4 +73466712ns 1291762 1c0008b6 0002a023 sw x0, 0(x5) x5:1c009148 PA:1c009148 +73466769ns 1291763 1c0008ba 00428293 addi x5, x5, 4 x5=1c00914c x5:1c009148 +73466826ns 1291764 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c00914c x6:1c0091a4 +73467053ns 1291768 1c0008b6 0002a023 sw x0, 0(x5) x5:1c00914c PA:1c00914c +73467110ns 1291769 1c0008ba 00428293 addi x5, x5, 4 x5=1c009150 x5:1c00914c +73467167ns 1291770 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c009150 x6:1c0091a4 +73467394ns 1291774 1c0008b6 0002a023 sw x0, 0(x5) x5:1c009150 PA:1c009150 +73467451ns 1291775 1c0008ba 00428293 addi x5, x5, 4 x5=1c009154 x5:1c009150 +73467508ns 1291776 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c009154 x6:1c0091a4 +73467735ns 1291780 1c0008b6 0002a023 sw x0, 0(x5) x5:1c009154 PA:1c009154 +73467792ns 1291781 1c0008ba 00428293 addi x5, x5, 4 x5=1c009158 x5:1c009154 +73467849ns 1291782 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c009158 x6:1c0091a4 +73468076ns 1291786 1c0008b6 0002a023 sw x0, 0(x5) x5:1c009158 PA:1c009158 +73468133ns 1291787 1c0008ba 00428293 addi x5, x5, 4 x5=1c00915c x5:1c009158 +73468190ns 1291788 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c00915c x6:1c0091a4 +73468417ns 1291792 1c0008b6 0002a023 sw x0, 0(x5) x5:1c00915c PA:1c00915c +73468474ns 1291793 1c0008ba 00428293 addi x5, x5, 4 x5=1c009160 x5:1c00915c +73468531ns 1291794 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c009160 x6:1c0091a4 +73468758ns 1291798 1c0008b6 0002a023 sw x0, 0(x5) x5:1c009160 PA:1c009160 +73468815ns 1291799 1c0008ba 00428293 addi x5, x5, 4 x5=1c009164 x5:1c009160 +73468872ns 1291800 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c009164 x6:1c0091a4 +73469099ns 1291804 1c0008b6 0002a023 sw x0, 0(x5) x5:1c009164 PA:1c009164 +73469156ns 1291805 1c0008ba 00428293 addi x5, x5, 4 x5=1c009168 x5:1c009164 +73469213ns 1291806 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c009168 x6:1c0091a4 +73469440ns 1291810 1c0008b6 0002a023 sw x0, 0(x5) x5:1c009168 PA:1c009168 +73469497ns 1291811 1c0008ba 00428293 addi x5, x5, 4 x5=1c00916c x5:1c009168 +73469554ns 1291812 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c00916c x6:1c0091a4 +73469781ns 1291816 1c0008b6 0002a023 sw x0, 0(x5) x5:1c00916c PA:1c00916c +73469838ns 1291817 1c0008ba 00428293 addi x5, x5, 4 x5=1c009170 x5:1c00916c +73469895ns 1291818 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c009170 x6:1c0091a4 +73470122ns 1291822 1c0008b6 0002a023 sw x0, 0(x5) x5:1c009170 PA:1c009170 +73470179ns 1291823 1c0008ba 00428293 addi x5, x5, 4 x5=1c009174 x5:1c009170 +73470236ns 1291824 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c009174 x6:1c0091a4 +73470463ns 1291828 1c0008b6 0002a023 sw x0, 0(x5) x5:1c009174 PA:1c009174 +73470520ns 1291829 1c0008ba 00428293 addi x5, x5, 4 x5=1c009178 x5:1c009174 +73470577ns 1291830 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c009178 x6:1c0091a4 +73470804ns 1291834 1c0008b6 0002a023 sw x0, 0(x5) x5:1c009178 PA:1c009178 +73470861ns 1291835 1c0008ba 00428293 addi x5, x5, 4 x5=1c00917c x5:1c009178 +73470918ns 1291836 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c00917c x6:1c0091a4 +73471145ns 1291840 1c0008b6 0002a023 sw x0, 0(x5) x5:1c00917c PA:1c00917c +73471202ns 1291841 1c0008ba 00428293 addi x5, x5, 4 x5=1c009180 x5:1c00917c +73471259ns 1291842 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c009180 x6:1c0091a4 +73471486ns 1291846 1c0008b6 0002a023 sw x0, 0(x5) x5:1c009180 PA:1c009180 +73471543ns 1291847 1c0008ba 00428293 addi x5, x5, 4 x5=1c009184 x5:1c009180 +73471600ns 1291848 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c009184 x6:1c0091a4 +73471827ns 1291852 1c0008b6 0002a023 sw x0, 0(x5) x5:1c009184 PA:1c009184 +73471884ns 1291853 1c0008ba 00428293 addi x5, x5, 4 x5=1c009188 x5:1c009184 +73471941ns 1291854 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c009188 x6:1c0091a4 +73472168ns 1291858 1c0008b6 0002a023 sw x0, 0(x5) x5:1c009188 PA:1c009188 +73472225ns 1291859 1c0008ba 00428293 addi x5, x5, 4 x5=1c00918c x5:1c009188 +73472282ns 1291860 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c00918c x6:1c0091a4 +73472509ns 1291864 1c0008b6 0002a023 sw x0, 0(x5) x5:1c00918c PA:1c00918c +73472566ns 1291865 1c0008ba 00428293 addi x5, x5, 4 x5=1c009190 x5:1c00918c +73472623ns 1291866 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c009190 x6:1c0091a4 +73472850ns 1291870 1c0008b6 0002a023 sw x0, 0(x5) x5:1c009190 PA:1c009190 +73472907ns 1291871 1c0008ba 00428293 addi x5, x5, 4 x5=1c009194 x5:1c009190 +73472964ns 1291872 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c009194 x6:1c0091a4 +73473191ns 1291876 1c0008b6 0002a023 sw x0, 0(x5) x5:1c009194 PA:1c009194 +73473248ns 1291877 1c0008ba 00428293 addi x5, x5, 4 x5=1c009198 x5:1c009194 +73473305ns 1291878 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c009198 x6:1c0091a4 +73473532ns 1291882 1c0008b6 0002a023 sw x0, 0(x5) x5:1c009198 PA:1c009198 +73473589ns 1291883 1c0008ba 00428293 addi x5, x5, 4 x5=1c00919c x5:1c009198 +73473646ns 1291884 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c00919c x6:1c0091a4 +73473873ns 1291888 1c0008b6 0002a023 sw x0, 0(x5) x5:1c00919c PA:1c00919c +73473930ns 1291889 1c0008ba 00428293 addi x5, x5, 4 x5=1c0091a0 x5:1c00919c +73473987ns 1291890 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c0091a0 x6:1c0091a4 +73474214ns 1291894 1c0008b6 0002a023 sw x0, 0(x5) x5:1c0091a0 PA:1c0091a0 +73474271ns 1291895 1c0008ba 00428293 addi x5, x5, 4 x5=1c0091a4 x5:1c0091a0 +73474328ns 1291896 1c0008bc fe62ede3 bltu x5, x6, -6 x5:1c0091a4 x6:1c0091a4 +73474384ns 1291897 1c0008c0 00003517 auipc x10, 0x3000 x10=1c0038c0 +73474441ns 1291898 1c0008c4 f8050513 addi x10, x10, -128 x10=1c003840 x10:1c0038c0 +73474498ns 1291899 1c0008c8 741020ef jal x1, 12096 x1=1c0008cc +73474612ns 1291901 1c003808 00a005b3 add x11, x0, x10 x11=1c003840 x10:1c003840 +73474669ns 1291902 1c00380a 00000693 addi x13, x0, 0 x13=00000000 +73474725ns 1291903 1c00380c 00000613 addi x12, x0, 0 x12=00000000 +73474782ns 1291904 1c00380e 00000513 addi x10, x0, 0 x10=00000000 +73474839ns 1291905 1c003810 2670006f jal x0, 2662 +73475010ns 1291908 1c004276 dc41a783 lw x15, -572(x3) x15=00000000 x3:1c0093dc PA:1c0091a0 +73475066ns 1291909 1c00427a 00a008b3 add x17, x0, x10 x17=00000000 x10:00000000 +73475123ns 1291910 1c00427c 02079163 bne x15, x0, 34 x15:00000000 +73475180ns 1291911 1c00427e cc818513 addi x10, x3, -824 x10=1c0090a4 x3:1c0093dc +73475237ns 1291912 1c004282 dca1a223 sw x10, -572(x3) x10:1c0090a4 x3:1c0093dc PA:1c0091a0 +73475294ns 1291913 1c004286 00000313 addi x6, x0, 0 x6=00000000 +73475351ns 1291914 1c00428a cc818793 addi x15, x3, -824 x15=1c0090a4 x3:1c0093dc +73475407ns 1291915 1c00428e 00030863 beq x6, x0, 16 x6:00000000 +73475578ns 1291918 1c00429e 0047a703 lw x14, 4(x15) x14=00000000 x15:1c0090a4 PA:1c0090a8 +73475635ns 1291919 1c0042a0 01f00813 addi x16, x0, 31 x16=0000001f +73475692ns 1291920 1c0042a2 fff00513 addi x10, x0, -1 x10=ffffffff +73475748ns 1291921 1c0042a4 04e84663 blt x16, x14, 76 x16:0000001f x14:00000000 +73475805ns 1291922 1c0042a8 02088d63 beq x17, x0, 58 x17:00000000 +73476033ns 1291926 1c0042e2 00170693 addi x13, x14, 1 x13=00000001 x14:00000000 +73476089ns 1291927 1c0042e6 00271713 slli x14, x14, 0x2 x14=00000000 x14:00000000 +73476146ns 1291928 1c0042e8 00d7a223 sw x13, 4(x15) x13:00000001 x15:1c0090a4 PA:1c0090a8 +73476203ns 1291929 1c0042ea 00e787b3 add x15, x15, x14 x15=1c0090a4 x15:1c0090a4 x14:00000000 +73476260ns 1291930 1c0042ec 00b7a423 sw x11, 8(x15) x11:1c003840 x15:1c0090a4 PA:1c0090ac +73476317ns 1291931 1c0042ee 00000513 addi x10, x0, 0 x10=00000000 +73476374ns 1291932 1c0042f0 00008067 jalr x0, x1, 0 x1:1c0008cc +73476487ns 1291934 1c0008cc 7d7020ef jal x1, 12246 x1=1c0008d0 +73476601ns 1291936 1c0038a2 ff010113 addi x2, x2, -16 x2=1c0199a0 x2:1c0199b0 +73476658ns 1291937 1c0038a4 00812423 sw x8, 8(x2) x8:xxxxxxxx x2:1c0199a0 PA:1c0199a8 +73476715ns 1291938 1c0038a6 00912223 sw x9, 4(x2) x9:xxxxxxxx x2:1c0199a0 PA:1c0199a4 +73476771ns 1291939 1c0038a8 1c009437 lui x8, 0x1c009000 x8=1c009000 +73476828ns 1291940 1c0038ac 1c0094b7 lui x9, 0x1c009000 x9=1c009000 +73476885ns 1291941 1c0038b0 bdc48793 addi x15, x9, -1060 x15=1c008bdc x9:1c009000 +73476942ns 1291942 1c0038b4 bdc40413 addi x8, x8, -1060 x8=1c008bdc x8:1c009000 +73476999ns 1291943 1c0038b8 40f40433 sub x8, x8, x15 x8=00000000 x8:1c008bdc x15:1c008bdc +73477056ns 1291944 1c0038ba 01212023 sw x18, 0(x2) x18:xxxxxxxx x2:1c0199a0 PA:1c0199a0 +73477112ns 1291945 1c0038bc 00112623 sw x1, 12(x2) x1:1c0008d0 x2:1c0199a0 PA:1c0199ac +73477169ns 1291946 1c0038be 40245413 srai x8, x8, 0x402 x8=00000000 x8:00000000 +73477226ns 1291947 1c0038c0 bdc48493 addi x9, x9, -1060 x9=1c008bdc x9:1c009000 +73477283ns 1291948 1c0038c4 00000913 addi x18, x0, 0 x18=00000000 +73477340ns 1291949 1c0038c6 02891763 bne x18, x8, 46 x18:00000000 x8:00000000 +73477397ns 1291950 1c0038ca 1c0094b7 lui x9, 0x1c009000 x9=1c009000 +73477453ns 1291951 1c0038ce 1c009437 lui x8, 0x1c009000 x8=1c009000 +73477510ns 1291952 1c0038d2 bdc48793 addi x15, x9, -1060 x15=1c008bdc x9:1c009000 +73477567ns 1291953 1c0038d6 bdc40413 addi x8, x8, -1060 x8=1c008bdc x8:1c009000 +73477624ns 1291954 1c0038da 40f40433 sub x8, x8, x15 x8=00000000 x8:1c008bdc x15:1c008bdc +73477681ns 1291955 1c0038dc 40245413 srai x8, x8, 0x402 x8=00000000 x8:00000000 +73477738ns 1291956 1c0038de bdc48493 addi x9, x9, -1060 x9=1c008bdc x9:1c009000 +73477794ns 1291957 1c0038e2 00000913 addi x18, x0, 0 x18=00000000 +73477851ns 1291958 1c0038e4 00891d63 bne x18, x8, 26 x18:00000000 x8:00000000 +73477908ns 1291959 1c0038e8 00c12083 lw x1, 12(x2) x1=1c0008d0 x2:1c0199a0 PA:1c0199ac +73477965ns 1291960 1c0038ea 00812403 lw x8, 8(x2) x8=xxxxxxxx x2:1c0199a0 PA:1c0199a8 +73478022ns 1291961 1c0038ec 00412483 lw x9, 4(x2) x9=xxxxxxxx x2:1c0199a0 PA:1c0199a4 +73478079ns 1291962 1c0038ee 00012903 lw x18, 0(x2) x18=xxxxxxxx x2:1c0199a0 PA:1c0199a0 +73478135ns 1291963 1c0038f0 01010113 addi x2, x2, 16 x2=1c0199b0 x2:1c0199a0 +73478192ns 1291964 1c0038f2 00008067 jalr x0, x1, 0 x1:1c0008d0 +73478306ns 1291966 1c0008d0 00012503 lw x10, 0(x2) x10=00000000 x2:1c0199b0 PA:1c0199b0 +73478363ns 1291967 1c0008d2 00410593 addi x11, x2, 4 x11=1c0199b4 x2:1c0199b0 +73478419ns 1291968 1c0008d4 00000613 addi x12, x0, 0 x12=00000000 +73478476ns 1291969 1c0008d6 689020ef jal x1, 11912 x1=1c0008da +73478590ns 1291971 1c00375e fe010113 addi x2, x2, -32 x2=1c019990 x2:1c0199b0 +73478647ns 1291972 1c003760 00112e23 sw x1, 28(x2) x1:1c0008da x2:1c019990 PA:1c0199ac +73478704ns 1291973 1c003762 b28ff0ef jal x1, -3288 x1=1c003766 +73478817ns 1291975 1c002a8a ff010113 addi x2, x2, -16 x2=1c019980 x2:1c019990 +73478874ns 1291976 1c002a8c 00000593 addi x11, x0, 0 x11=00000000 +73478931ns 1291977 1c002a8e 00000513 addi x10, x0, 0 x10=00000000 +73478988ns 1291978 1c002a90 00112623 sw x1, 12(x2) x1:1c003766 x2:1c019980 PA:1c01998c +73479045ns 1291979 1c002a92 7ce000ef jal x1, 1998 x1=1c002a96 +73479158ns 1291981 1c003260 00058463 beq x11, x0, 8 x11:00000000 +73479329ns 1291984 1c003268 00451793 slli x15, x10, 0x4 x15=00000000 x10:00000000 +73479386ns 1291985 1c00326c 1a100737 lui x14, 0x1a100000 x14=1a100000 +73479442ns 1291986 1c003270 00f70733 add x14, x14, x15 x14=1a100000 x14:1a100000 x15:00000000 +73479499ns 1291987 1c003272 00472783 lw x15, 4(x14) x15=448805f5 x14:1a100000 PA:1a100004 +73479556ns 1291988 1c003274 00a006b3 add x13, x0, x10 x13=00000000 x10:00000000 +73480124ns 1291998 1c003276 0207cb63 blt x15, x0, 54 x15:448805f5 +73480181ns 1291999 1c00327a 00872603 lw x12, 8(x14) x12=02004107 x14:1a100000 PA:1a100008 +73480238ns 1292000 1c00327c f00005b7 lui x11, 0xf0000000 x11=f0000000 +73480920ns 1292012 1c003280 3ff58593 addi x11, x11, 1023 x11=f00003ff x11:f0000000 +73480977ns 1292013 1c003284 00b67633 and x12, x12, x11 x12=00000107 x12:02004107 x11:f00003ff +73481034ns 1292014 1c003286 005025b7 lui x11, 0x502000 x11=00502000 +73481091ns 1292015 1c00328a 80058593 addi x11, x11, -2048 x11=00501800 x11:00502000 +73481147ns 1292016 1c00328e 00b66633 or x12, x12, x11 x12=00501907 x12:00000107 x11:00501800 +73481204ns 1292017 1c003290 00c72423 sw x12, 8(x14) x12:00501907 x14:1a100000 PA:1a100008 +73481261ns 1292018 1c003292 00c72603 lw x12, 12(x14) x12=00880000 x14:1a100000 PA:1a10000c +73481886ns 1292029 1c003294 fc0105b7 lui x11, 0xfc010000 x11=fc010000 +73482625ns 1292042 1c003298 fff58593 addi x11, x11, -1 x11=fc00ffff x11:fc010000 +73482682ns 1292043 1c00329a 00b67633 and x12, x12, x11 x12=00000000 x12:00880000 x11:fc00ffff +73482739ns 1292044 1c00329c 014c05b7 lui x11, 0x14c0000 x11=014c0000 +73482796ns 1292045 1c0032a0 00b66633 or x12, x12, x11 x12=014c0000 x12:00000000 x11:014c0000 +73482852ns 1292046 1c0032a2 00c72623 sw x12, 12(x14) x12:014c0000 x14:1a100000 PA:1a10000c +73482909ns 1292047 1c0032a4 c0000637 lui x12, 0xc0000000 x12=c0000000 +73483478ns 1292057 1c0032a8 00c7e7b3 or x15, x15, x12 x15=c48805f5 x15:448805f5 x12:c0000000 +73483534ns 1292058 1c0032aa 00f72223 sw x15, 4(x14) x15:c48805f5 x14:1a100000 PA:1a100004 +73483591ns 1292059 1c0032ac a1c18613 addi x12, x3, -1508 x12=1c008df8 x3:1c0093dc +74186882ns 1292070 1c0032b0 00269513 slli x10, x13, 0x2 x10=00000000 x13:00000000 +74186901ns 1292071 1c0032b4 00a60633 add x12, x12, x10 x12=1c008df8 x12:1c008df8 x10:00000000 +74186921ns 1292072 1c0032b6 00062583 lw x11, 0(x12) x11=00000000 x12:1c008df8 PA:1c008df8 +74186941ns 1292073 1c0032b8 a1c18713 addi x14, x3, -1508 x14=1c008df8 x3:1c0093dc +74186961ns 1292074 1c0032bc 00058963 beq x11, x0, 18 x11:00000000 +74187040ns 1292078 1c0032ce 01a7d693 srli x13, x15, 0x1a x13=00000031 x15:c48805f5 +74187060ns 1292079 1c0032d2 01079793 slli x15, x15, 0x10 x15=05f50000 x15:c48805f5 +74187080ns 1292080 1c0032d4 0107d793 srli x15, x15, 0x10 x15=000005f5 x15:05f50000 +74187099ns 1292081 1c0032d6 00f6f693 andi x13, x13, 15 x13=00000001 x13:00000031 +74187119ns 1292082 1c0032d8 00f79793 slli x15, x15, 0xf x15=02fa8000 x15:000005f5 +74187139ns 1292083 1c0032da 00068463 beq x13, x0, 8 x13:00000001 +74187159ns 1292084 1c0032dc fff68693 addi x13, x13, -1 x13=00000000 x13:00000001 +74187178ns 1292085 1c0032de 00d7d7b3 srl x15, x15, x13 x15=02fa8000 x15:02fa8000 x13:00000000 +74187198ns 1292086 1c0032e2 00a70733 add x14, x14, x10 x14=1c008df8 x14:1c008df8 x10:00000000 +74187218ns 1292087 1c0032e4 00f72023 sw x15, 0(x14) x15:02fa8000 x14:1c008df8 PA:1c008df8 +74187238ns 1292088 1c0032e6 00008067 jalr x0, x1, 0 x1:1c002a96 +74187277ns 1292090 1c002a96 00000593 addi x11, x0, 0 x11=00000000 +74187297ns 1292091 1c002a98 00100513 addi x10, x0, 1 x10=00000001 +74187317ns 1292092 1c002a9a 7c6000ef jal x1, 1990 x1=1c002a9e +74187357ns 1292094 1c003260 00058463 beq x11, x0, 8 x11:00000000 +74187416ns 1292097 1c003268 00451793 slli x15, x10, 0x4 x15=00000010 x10:00000001 +74187436ns 1292098 1c00326c 1a100737 lui x14, 0x1a100000 x14=1a100000 +74187456ns 1292099 1c003270 00f70733 add x14, x14, x15 x14=1a100010 x14:1a100000 x15:00000010 +74187475ns 1292100 1c003272 00472783 lw x15, 4(x14) x15=448805f5 x14:1a100010 PA:1a100014 +74187495ns 1292101 1c003274 00a006b3 add x13, x0, x10 x13=00000001 x10:00000001 +74309216ns 1298251 1c003276 0207cb63 blt x15, x0, 54 x15:448805f5 +74309236ns 1298252 1c00327a 00872603 lw x12, 8(x14) x12=02004107 x14:1a100010 PA:1a100018 +74309256ns 1298253 1c00327c f00005b7 lui x11, 0xf0000000 x11=f0000000 +74309731ns 1298277 1c003280 3ff58593 addi x11, x11, 1023 x11=f00003ff x11:f0000000 +74309750ns 1298278 1c003284 00b67633 and x12, x12, x11 x12=00000107 x12:02004107 x11:f00003ff +74309770ns 1298279 1c003286 005025b7 lui x11, 0x502000 x11=00502000 +74309790ns 1298280 1c00328a 80058593 addi x11, x11, -2048 x11=00501800 x11:00502000 +74309810ns 1298281 1c00328e 00b66633 or x12, x12, x11 x12=00501907 x12:00000107 x11:00501800 +74309829ns 1298282 1c003290 00c72423 sw x12, 8(x14) x12:00501907 x14:1a100010 PA:1a100018 +74309849ns 1298283 1c003292 00c72603 lw x12, 12(x14) x12=00880000 x14:1a100010 PA:1a10001c +74310265ns 1298304 1c003294 fc0105b7 lui x11, 0xfc010000 x11=fc010000 +74310760ns 1298329 1c003298 fff58593 addi x11, x11, -1 x11=fc00ffff x11:fc010000 +74310780ns 1298330 1c00329a 00b67633 and x12, x12, x11 x12=00000000 x12:00880000 x11:fc00ffff +74310799ns 1298331 1c00329c 014c05b7 lui x11, 0x14c0000 x11=014c0000 +74310819ns 1298332 1c0032a0 00b66633 or x12, x12, x11 x12=014c0000 x12:00000000 x11:014c0000 +74310839ns 1298333 1c0032a2 00c72623 sw x12, 12(x14) x12:014c0000 x14:1a100010 PA:1a10001c +74310859ns 1298334 1c0032a4 c0000637 lui x12, 0xc0000000 x12=c0000000 +74311274ns 1298355 1c0032a8 00c7e7b3 or x15, x15, x12 x15=c48805f5 x15:448805f5 x12:c0000000 +74311294ns 1298356 1c0032aa 00f72223 sw x15, 4(x14) x15:c48805f5 x14:1a100010 PA:1a100014 +74311314ns 1298357 1c0032ac a1c18613 addi x12, x3, -1508 x12=1c008df8 x3:1c0093dc +74311749ns 1298379 1c0032b0 00269513 slli x10, x13, 0x2 x10=00000004 x13:00000001 +74311769ns 1298380 1c0032b4 00a60633 add x12, x12, x10 x12=1c008dfc x12:1c008df8 x10:00000004 +74311789ns 1298381 1c0032b6 00062583 lw x11, 0(x12) x11=00000000 x12:1c008dfc PA:1c008dfc +74311809ns 1298382 1c0032b8 a1c18713 addi x14, x3, -1508 x14=1c008df8 x3:1c0093dc +74311828ns 1298383 1c0032bc 00058963 beq x11, x0, 18 x11:00000000 +74311908ns 1298387 1c0032ce 01a7d693 srli x13, x15, 0x1a x13=00000031 x15:c48805f5 +74311927ns 1298388 1c0032d2 01079793 slli x15, x15, 0x10 x15=05f50000 x15:c48805f5 +74311947ns 1298389 1c0032d4 0107d793 srli x15, x15, 0x10 x15=000005f5 x15:05f50000 +74311967ns 1298390 1c0032d6 00f6f693 andi x13, x13, 15 x13=00000001 x13:00000031 +74311987ns 1298391 1c0032d8 00f79793 slli x15, x15, 0xf x15=02fa8000 x15:000005f5 +74312007ns 1298392 1c0032da 00068463 beq x13, x0, 8 x13:00000001 +74312026ns 1298393 1c0032dc fff68693 addi x13, x13, -1 x13=00000000 x13:00000001 +74312046ns 1298394 1c0032de 00d7d7b3 srl x15, x15, x13 x15=02fa8000 x15:02fa8000 x13:00000000 +74312066ns 1298395 1c0032e2 00a70733 add x14, x14, x10 x14=1c008dfc x14:1c008df8 x10:00000004 +74312086ns 1298396 1c0032e4 00f72023 sw x15, 0(x14) x15:02fa8000 x14:1c008dfc PA:1c008dfc +74312106ns 1298397 1c0032e6 00008067 jalr x0, x1, 0 x1:1c002a9e +74312145ns 1298399 1c002a9e 00000593 addi x11, x0, 0 x11=00000000 +74312165ns 1298400 1c002aa0 00200513 addi x10, x0, 2 x10=00000002 +74312185ns 1298401 1c002aa2 7be000ef jal x1, 1982 x1=1c002aa6 +74312224ns 1298403 1c003260 00058463 beq x11, x0, 8 x11:00000000 +74312284ns 1298406 1c003268 00451793 slli x15, x10, 0x4 x15=00000020 x10:00000002 +74312303ns 1298407 1c00326c 1a100737 lui x14, 0x1a100000 x14=1a100000 +74312323ns 1298408 1c003270 00f70733 add x14, x14, x15 x14=1a100020 x14:1a100000 x15:00000020 +74312343ns 1298409 1c003272 00472783 lw x15, 4(x14) x15=448805f5 x14:1a100020 PA:1a100024 +74312363ns 1298410 1c003274 00a006b3 add x13, x0, x10 x13=00000002 x10:00000002 +74461812ns 1305961 1c003276 0207cb63 blt x15, x0, 54 x15:448805f5 +74461832ns 1305962 1c00327a 00872603 lw x12, 8(x14) x12=02004107 x14:1a100020 PA:1a100028 +74461852ns 1305963 1c00327c f00005b7 lui x11, 0xf0000000 x11=f0000000 +74462327ns 1305987 1c003280 3ff58593 addi x11, x11, 1023 x11=f00003ff x11:f0000000 +74462347ns 1305988 1c003284 00b67633 and x12, x12, x11 x12=00000107 x12:02004107 x11:f00003ff +74462366ns 1305989 1c003286 005025b7 lui x11, 0x502000 x11=00502000 +74462386ns 1305990 1c00328a 80058593 addi x11, x11, -2048 x11=00501800 x11:00502000 +74462406ns 1305991 1c00328e 00b66633 or x12, x12, x11 x12=00501907 x12:00000107 x11:00501800 +74462426ns 1305992 1c003290 00c72423 sw x12, 8(x14) x12:00501907 x14:1a100020 PA:1a100028 +74462446ns 1305993 1c003292 00c72603 lw x12, 12(x14) x12=00880000 x14:1a100020 PA:1a10002c +74462861ns 1306014 1c003294 fc0105b7 lui x11, 0xfc010000 x11=fc010000 +74463356ns 1306039 1c003298 fff58593 addi x11, x11, -1 x11=fc00ffff x11:fc010000 +74463376ns 1306040 1c00329a 00b67633 and x12, x12, x11 x12=00000000 x12:00880000 x11:fc00ffff +74463396ns 1306041 1c00329c 014c05b7 lui x11, 0x14c0000 x11=014c0000 +74463415ns 1306042 1c0032a0 00b66633 or x12, x12, x11 x12=014c0000 x12:00000000 x11:014c0000 +74463435ns 1306043 1c0032a2 00c72623 sw x12, 12(x14) x12:014c0000 x14:1a100020 PA:1a10002c +74463455ns 1306044 1c0032a4 c0000637 lui x12, 0xc0000000 x12=c0000000 +74463851ns 1306064 1c0032a8 00c7e7b3 or x15, x15, x12 x15=c48805f5 x15:448805f5 x12:c0000000 +74463871ns 1306065 1c0032aa 00f72223 sw x15, 4(x14) x15:c48805f5 x14:1a100020 PA:1a100024 +74463890ns 1306066 1c0032ac a1c18613 addi x12, x3, -1508 x12=1c008df8 x3:1c0093dc +74464326ns 1306088 1c0032b0 00269513 slli x10, x13, 0x2 x10=00000008 x13:00000002 +74464346ns 1306089 1c0032b4 00a60633 add x12, x12, x10 x12=1c008e00 x12:1c008df8 x10:00000008 +74464365ns 1306090 1c0032b6 00062583 lw x11, 0(x12) x11=00000000 x12:1c008e00 PA:1c008e00 +74464385ns 1306091 1c0032b8 a1c18713 addi x14, x3, -1508 x14=1c008df8 x3:1c0093dc +74464405ns 1306092 1c0032bc 00058963 beq x11, x0, 18 x11:00000000 +74464484ns 1306096 1c0032ce 01a7d693 srli x13, x15, 0x1a x13=00000031 x15:c48805f5 +74464504ns 1306097 1c0032d2 01079793 slli x15, x15, 0x10 x15=05f50000 x15:c48805f5 +74464524ns 1306098 1c0032d4 0107d793 srli x15, x15, 0x10 x15=000005f5 x15:05f50000 +74464544ns 1306099 1c0032d6 00f6f693 andi x13, x13, 15 x13=00000001 x13:00000031 +74464563ns 1306100 1c0032d8 00f79793 slli x15, x15, 0xf x15=02fa8000 x15:000005f5 +74464583ns 1306101 1c0032da 00068463 beq x13, x0, 8 x13:00000001 +74464603ns 1306102 1c0032dc fff68693 addi x13, x13, -1 x13=00000000 x13:00000001 +74464623ns 1306103 1c0032de 00d7d7b3 srl x15, x15, x13 x15=02fa8000 x15:02fa8000 x13:00000000 +74464643ns 1306104 1c0032e2 00a70733 add x14, x14, x10 x14=1c008e00 x14:1c008df8 x10:00000008 +74464662ns 1306105 1c0032e4 00f72023 sw x15, 0(x14) x15:02fa8000 x14:1c008e00 PA:1c008e00 +74464682ns 1306106 1c0032e6 00008067 jalr x0, x1, 0 x1:1c002aa6 +74464741ns 1306109 1c002aa6 097000ef jal x1, 2198 x1=1c002aaa +74464781ns 1306111 1c00333c 1a10a7b7 lui x15, 0x1a10a000 x15=1a10a000 +74464801ns 1306112 1c003340 fff00713 addi x14, x0, -1 x14=ffffffff +74464821ns 1306113 1c003342 80878793 addi x15, x15, -2040 x15=1a109808 x15:1a10a000 +74464840ns 1306114 1c003346 00e7a023 sw x14, 0(x15) x14:ffffffff x15:1a109808 PA:1a109808 +74464860ns 1306115 1c003348 00008067 jalr x0, x1, 0 x1:1c002aaa +74464939ns 1306119 1c002aaa 1c003737 lui x14, 0x1c003000 x14=1c003000 +74464959ns 1306120 1c002aae 99c18793 addi x15, x3, -1636 x15=1c008d78 x3:1c0093dc +74464979ns 1306121 1c002ab2 a7270713 addi x14, x14, -1422 x14=1c002a72 x14:1c003000 +74464999ns 1306122 1c002ab6 02e7a423 sw x14, 40(x15) x14:1c002a72 x15:1c008d78 PA:1c008da0 +74465019ns 1306123 1c002ab8 1c001737 lui x14, 0x1c001000 x14=1c001000 +74465038ns 1306124 1c002abc e4270713 addi x14, x14, -446 x14=1c000e42 x14:1c001000 +74465058ns 1306125 1c002ac0 06e7a423 sw x14, 104(x15) x14:1c000e42 x15:1c008d78 PA:1c008de0 +74465078ns 1306126 1c002ac2 089000ef jal x1, 2184 x1=1c002ac6 +74465137ns 1306129 1c00334a 1a1067b7 lui x15, 0x1a106000 x15=1a106000 +74465157ns 1306130 1c00334e fff00713 addi x14, x0, -1 x14=ffffffff +74465177ns 1306131 1c003350 00478693 addi x13, x15, 4 x13=1a106004 x15:1a106000 +74465197ns 1306132 1c003354 00e6a023 sw x14, 0(x13) x14:ffffffff x13:1a106004 PA:1a106004 +74465216ns 1306133 1c003356 00878693 addi x13, x15, 8 x13=1a106008 x15:1a106000 +74465276ns 1306136 1c00335a 00e6a023 sw x14, 0(x13) x14:ffffffff x13:1a106008 PA:1a106008 +74465296ns 1306137 1c00335c 00c78693 addi x13, x15, 12 x13=1a10600c x15:1a106000 +74465355ns 1306140 1c003360 00e6a023 sw x14, 0(x13) x14:ffffffff x13:1a10600c PA:1a10600c +74465375ns 1306141 1c003362 01078693 addi x13, x15, 16 x13=1a106010 x15:1a106000 +74465434ns 1306144 1c003366 00e6a023 sw x14, 0(x13) x14:ffffffff x13:1a106010 PA:1a106010 +74465454ns 1306145 1c003368 01478693 addi x13, x15, 20 x13=1a106014 x15:1a106000 +74465513ns 1306148 1c00336c 00e6a023 sw x14, 0(x13) x14:ffffffff x13:1a106014 PA:1a106014 +74465533ns 1306149 1c00336e 01878693 addi x13, x15, 24 x13=1a106018 x15:1a106000 +74465593ns 1306152 1c003372 00e6a023 sw x14, 0(x13) x14:ffffffff x13:1a106018 PA:1a106018 +74465612ns 1306153 1c003374 01c78693 addi x13, x15, 28 x13=1a10601c x15:1a106000 +74465672ns 1306156 1c003378 00e6a023 sw x14, 0(x13) x14:ffffffff x13:1a10601c PA:1a10601c +74465691ns 1306157 1c00337a 02078793 addi x15, x15, 32 x15=1a106020 x15:1a106000 +74465751ns 1306160 1c00337e 00e7a023 sw x14, 0(x15) x14:ffffffff x15:1a106020 PA:1a106020 +74465771ns 1306161 1c003380 00008067 jalr x0, x1, 0 x1:1c002ac6 +74465850ns 1306165 1c002ac6 01a00513 addi x10, x0, 26 x10=0000001a +74465870ns 1306166 1c002ac8 0bd000ef jal x1, 2236 x1=1c002acc +74465909ns 1306168 1c003384 1c0036b7 lui x13, 0x1c003000 x13=1c003000 +74465929ns 1306169 1c003388 00000793 addi x15, x0, 0 x15=00000000 +74465949ns 1306170 1c00338a a2818613 addi x12, x3, -1496 x12=1c008e04 x3:1c0093dc +74465969ns 1306171 1c00338e 38268693 addi x13, x13, 898 x13=1c003382 x13:1c003000 +74465988ns 1306172 1c003392 0a800593 addi x11, x0, 168 x11=000000a8 +74466008ns 1306173 1c003396 00279713 slli x14, x15, 0x2 x14=00000000 x15:00000000 +74466028ns 1306174 1c00339a 00c70733 add x14, x14, x12 x14=1c008e04 x14:00000000 x12:1c008e04 +74466048ns 1306175 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008e04 PA:1c008e04 +74466068ns 1306176 1c00339e 00178793 addi x15, x15, 1 x15=00000001 x15:00000000 +74466087ns 1306177 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000001 x11:000000a8 +74466167ns 1306181 1c003396 00279713 slli x14, x15, 0x2 x14=00000004 x15:00000001 +74466186ns 1306182 1c00339a 00c70733 add x14, x14, x12 x14=1c008e08 x14:00000004 x12:1c008e04 +74466206ns 1306183 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008e08 PA:1c008e08 +74466226ns 1306184 1c00339e 00178793 addi x15, x15, 1 x15=00000002 x15:00000001 +74466246ns 1306185 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000002 x11:000000a8 +74466325ns 1306189 1c003396 00279713 slli x14, x15, 0x2 x14=00000008 x15:00000002 +74466345ns 1306190 1c00339a 00c70733 add x14, x14, x12 x14=1c008e0c x14:00000008 x12:1c008e04 +74466364ns 1306191 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008e0c PA:1c008e0c +74466384ns 1306192 1c00339e 00178793 addi x15, x15, 1 x15=00000003 x15:00000002 +74466404ns 1306193 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000003 x11:000000a8 +74466483ns 1306197 1c003396 00279713 slli x14, x15, 0x2 x14=0000000c x15:00000003 +74466503ns 1306198 1c00339a 00c70733 add x14, x14, x12 x14=1c008e10 x14:0000000c x12:1c008e04 +74466523ns 1306199 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008e10 PA:1c008e10 +74466543ns 1306200 1c00339e 00178793 addi x15, x15, 1 x15=00000004 x15:00000003 +74466562ns 1306201 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000004 x11:000000a8 +74466642ns 1306205 1c003396 00279713 slli x14, x15, 0x2 x14=00000010 x15:00000004 +74466661ns 1306206 1c00339a 00c70733 add x14, x14, x12 x14=1c008e14 x14:00000010 x12:1c008e04 +74466681ns 1306207 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008e14 PA:1c008e14 +74466701ns 1306208 1c00339e 00178793 addi x15, x15, 1 x15=00000005 x15:00000004 +74466721ns 1306209 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000005 x11:000000a8 +74466800ns 1306213 1c003396 00279713 slli x14, x15, 0x2 x14=00000014 x15:00000005 +74466820ns 1306214 1c00339a 00c70733 add x14, x14, x12 x14=1c008e18 x14:00000014 x12:1c008e04 +74466839ns 1306215 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008e18 PA:1c008e18 +74466859ns 1306216 1c00339e 00178793 addi x15, x15, 1 x15=00000006 x15:00000005 +74466879ns 1306217 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000006 x11:000000a8 +74466958ns 1306221 1c003396 00279713 slli x14, x15, 0x2 x14=00000018 x15:00000006 +74466978ns 1306222 1c00339a 00c70733 add x14, x14, x12 x14=1c008e1c x14:00000018 x12:1c008e04 +74466998ns 1306223 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008e1c PA:1c008e1c +74467018ns 1306224 1c00339e 00178793 addi x15, x15, 1 x15=00000007 x15:00000006 +74467037ns 1306225 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000007 x11:000000a8 +74467117ns 1306229 1c003396 00279713 slli x14, x15, 0x2 x14=0000001c x15:00000007 +74467136ns 1306230 1c00339a 00c70733 add x14, x14, x12 x14=1c008e20 x14:0000001c x12:1c008e04 +74467156ns 1306231 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008e20 PA:1c008e20 +74467176ns 1306232 1c00339e 00178793 addi x15, x15, 1 x15=00000008 x15:00000007 +74467196ns 1306233 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000008 x11:000000a8 +74467275ns 1306237 1c003396 00279713 slli x14, x15, 0x2 x14=00000020 x15:00000008 +74467295ns 1306238 1c00339a 00c70733 add x14, x14, x12 x14=1c008e24 x14:00000020 x12:1c008e04 +74467314ns 1306239 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008e24 PA:1c008e24 +74467334ns 1306240 1c00339e 00178793 addi x15, x15, 1 x15=00000009 x15:00000008 +74467354ns 1306241 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000009 x11:000000a8 +74467433ns 1306245 1c003396 00279713 slli x14, x15, 0x2 x14=00000024 x15:00000009 +74467453ns 1306246 1c00339a 00c70733 add x14, x14, x12 x14=1c008e28 x14:00000024 x12:1c008e04 +74467473ns 1306247 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008e28 PA:1c008e28 +74467493ns 1306248 1c00339e 00178793 addi x15, x15, 1 x15=0000000a x15:00000009 +74467512ns 1306249 1c0033a0 feb79be3 bne x15, x11, -10 x15:0000000a x11:000000a8 +74467592ns 1306253 1c003396 00279713 slli x14, x15, 0x2 x14=00000028 x15:0000000a +74467611ns 1306254 1c00339a 00c70733 add x14, x14, x12 x14=1c008e2c x14:00000028 x12:1c008e04 +74467631ns 1306255 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008e2c PA:1c008e2c +74467651ns 1306256 1c00339e 00178793 addi x15, x15, 1 x15=0000000b x15:0000000a +74467671ns 1306257 1c0033a0 feb79be3 bne x15, x11, -10 x15:0000000b x11:000000a8 +74467750ns 1306261 1c003396 00279713 slli x14, x15, 0x2 x14=0000002c x15:0000000b +74467770ns 1306262 1c00339a 00c70733 add x14, x14, x12 x14=1c008e30 x14:0000002c x12:1c008e04 +74467789ns 1306263 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008e30 PA:1c008e30 +74467809ns 1306264 1c00339e 00178793 addi x15, x15, 1 x15=0000000c x15:0000000b +74467829ns 1306265 1c0033a0 feb79be3 bne x15, x11, -10 x15:0000000c x11:000000a8 +74467908ns 1306269 1c003396 00279713 slli x14, x15, 0x2 x14=00000030 x15:0000000c +74467928ns 1306270 1c00339a 00c70733 add x14, x14, x12 x14=1c008e34 x14:00000030 x12:1c008e04 +74467948ns 1306271 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008e34 PA:1c008e34 +74467968ns 1306272 1c00339e 00178793 addi x15, x15, 1 x15=0000000d x15:0000000c +74467987ns 1306273 1c0033a0 feb79be3 bne x15, x11, -10 x15:0000000d x11:000000a8 +74468067ns 1306277 1c003396 00279713 slli x14, x15, 0x2 x14=00000034 x15:0000000d +74468086ns 1306278 1c00339a 00c70733 add x14, x14, x12 x14=1c008e38 x14:00000034 x12:1c008e04 +74468106ns 1306279 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008e38 PA:1c008e38 +74468126ns 1306280 1c00339e 00178793 addi x15, x15, 1 x15=0000000e x15:0000000d +74468146ns 1306281 1c0033a0 feb79be3 bne x15, x11, -10 x15:0000000e x11:000000a8 +74468225ns 1306285 1c003396 00279713 slli x14, x15, 0x2 x14=00000038 x15:0000000e +74468245ns 1306286 1c00339a 00c70733 add x14, x14, x12 x14=1c008e3c x14:00000038 x12:1c008e04 +74468264ns 1306287 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008e3c PA:1c008e3c +74468284ns 1306288 1c00339e 00178793 addi x15, x15, 1 x15=0000000f x15:0000000e +74468304ns 1306289 1c0033a0 feb79be3 bne x15, x11, -10 x15:0000000f x11:000000a8 +74468383ns 1306293 1c003396 00279713 slli x14, x15, 0x2 x14=0000003c x15:0000000f +74468403ns 1306294 1c00339a 00c70733 add x14, x14, x12 x14=1c008e40 x14:0000003c x12:1c008e04 +74468423ns 1306295 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008e40 PA:1c008e40 +74468443ns 1306296 1c00339e 00178793 addi x15, x15, 1 x15=00000010 x15:0000000f +74468462ns 1306297 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000010 x11:000000a8 +74468542ns 1306301 1c003396 00279713 slli x14, x15, 0x2 x14=00000040 x15:00000010 +74468561ns 1306302 1c00339a 00c70733 add x14, x14, x12 x14=1c008e44 x14:00000040 x12:1c008e04 +74468581ns 1306303 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008e44 PA:1c008e44 +74468601ns 1306304 1c00339e 00178793 addi x15, x15, 1 x15=00000011 x15:00000010 +74468621ns 1306305 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000011 x11:000000a8 +74468700ns 1306309 1c003396 00279713 slli x14, x15, 0x2 x14=00000044 x15:00000011 +74468720ns 1306310 1c00339a 00c70733 add x14, x14, x12 x14=1c008e48 x14:00000044 x12:1c008e04 +74468739ns 1306311 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008e48 PA:1c008e48 +74468759ns 1306312 1c00339e 00178793 addi x15, x15, 1 x15=00000012 x15:00000011 +74468779ns 1306313 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000012 x11:000000a8 +74468858ns 1306317 1c003396 00279713 slli x14, x15, 0x2 x14=00000048 x15:00000012 +74468878ns 1306318 1c00339a 00c70733 add x14, x14, x12 x14=1c008e4c x14:00000048 x12:1c008e04 +74468898ns 1306319 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008e4c PA:1c008e4c +74468918ns 1306320 1c00339e 00178793 addi x15, x15, 1 x15=00000013 x15:00000012 +74468937ns 1306321 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000013 x11:000000a8 +74469017ns 1306325 1c003396 00279713 slli x14, x15, 0x2 x14=0000004c x15:00000013 +74469036ns 1306326 1c00339a 00c70733 add x14, x14, x12 x14=1c008e50 x14:0000004c x12:1c008e04 +74469056ns 1306327 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008e50 PA:1c008e50 +74469076ns 1306328 1c00339e 00178793 addi x15, x15, 1 x15=00000014 x15:00000013 +74469096ns 1306329 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000014 x11:000000a8 +74469175ns 1306333 1c003396 00279713 slli x14, x15, 0x2 x14=00000050 x15:00000014 +74469195ns 1306334 1c00339a 00c70733 add x14, x14, x12 x14=1c008e54 x14:00000050 x12:1c008e04 +74469214ns 1306335 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008e54 PA:1c008e54 +74469234ns 1306336 1c00339e 00178793 addi x15, x15, 1 x15=00000015 x15:00000014 +74469254ns 1306337 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000015 x11:000000a8 +74469333ns 1306341 1c003396 00279713 slli x14, x15, 0x2 x14=00000054 x15:00000015 +74469353ns 1306342 1c00339a 00c70733 add x14, x14, x12 x14=1c008e58 x14:00000054 x12:1c008e04 +74469373ns 1306343 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008e58 PA:1c008e58 +74469393ns 1306344 1c00339e 00178793 addi x15, x15, 1 x15=00000016 x15:00000015 +74469412ns 1306345 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000016 x11:000000a8 +74469492ns 1306349 1c003396 00279713 slli x14, x15, 0x2 x14=00000058 x15:00000016 +74469511ns 1306350 1c00339a 00c70733 add x14, x14, x12 x14=1c008e5c x14:00000058 x12:1c008e04 +74469531ns 1306351 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008e5c PA:1c008e5c +74469551ns 1306352 1c00339e 00178793 addi x15, x15, 1 x15=00000017 x15:00000016 +74469571ns 1306353 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000017 x11:000000a8 +74469650ns 1306357 1c003396 00279713 slli x14, x15, 0x2 x14=0000005c x15:00000017 +74469670ns 1306358 1c00339a 00c70733 add x14, x14, x12 x14=1c008e60 x14:0000005c x12:1c008e04 +74469689ns 1306359 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008e60 PA:1c008e60 +74469709ns 1306360 1c00339e 00178793 addi x15, x15, 1 x15=00000018 x15:00000017 +74469729ns 1306361 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000018 x11:000000a8 +74469808ns 1306365 1c003396 00279713 slli x14, x15, 0x2 x14=00000060 x15:00000018 +74469828ns 1306366 1c00339a 00c70733 add x14, x14, x12 x14=1c008e64 x14:00000060 x12:1c008e04 +74469848ns 1306367 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008e64 PA:1c008e64 +74469868ns 1306368 1c00339e 00178793 addi x15, x15, 1 x15=00000019 x15:00000018 +74469887ns 1306369 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000019 x11:000000a8 +74469967ns 1306373 1c003396 00279713 slli x14, x15, 0x2 x14=00000064 x15:00000019 +74469986ns 1306374 1c00339a 00c70733 add x14, x14, x12 x14=1c008e68 x14:00000064 x12:1c008e04 +74470006ns 1306375 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008e68 PA:1c008e68 +74470026ns 1306376 1c00339e 00178793 addi x15, x15, 1 x15=0000001a x15:00000019 +74470046ns 1306377 1c0033a0 feb79be3 bne x15, x11, -10 x15:0000001a x11:000000a8 +74470125ns 1306381 1c003396 00279713 slli x14, x15, 0x2 x14=00000068 x15:0000001a +74470145ns 1306382 1c00339a 00c70733 add x14, x14, x12 x14=1c008e6c x14:00000068 x12:1c008e04 +74470164ns 1306383 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008e6c PA:1c008e6c +74470184ns 1306384 1c00339e 00178793 addi x15, x15, 1 x15=0000001b x15:0000001a +74470204ns 1306385 1c0033a0 feb79be3 bne x15, x11, -10 x15:0000001b x11:000000a8 +74470283ns 1306389 1c003396 00279713 slli x14, x15, 0x2 x14=0000006c x15:0000001b +74470303ns 1306390 1c00339a 00c70733 add x14, x14, x12 x14=1c008e70 x14:0000006c x12:1c008e04 +74470323ns 1306391 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008e70 PA:1c008e70 +74470343ns 1306392 1c00339e 00178793 addi x15, x15, 1 x15=0000001c x15:0000001b +74470362ns 1306393 1c0033a0 feb79be3 bne x15, x11, -10 x15:0000001c x11:000000a8 +74470442ns 1306397 1c003396 00279713 slli x14, x15, 0x2 x14=00000070 x15:0000001c +74470461ns 1306398 1c00339a 00c70733 add x14, x14, x12 x14=1c008e74 x14:00000070 x12:1c008e04 +74470481ns 1306399 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008e74 PA:1c008e74 +74470501ns 1306400 1c00339e 00178793 addi x15, x15, 1 x15=0000001d x15:0000001c +74470521ns 1306401 1c0033a0 feb79be3 bne x15, x11, -10 x15:0000001d x11:000000a8 +74470600ns 1306405 1c003396 00279713 slli x14, x15, 0x2 x14=00000074 x15:0000001d +74470620ns 1306406 1c00339a 00c70733 add x14, x14, x12 x14=1c008e78 x14:00000074 x12:1c008e04 +74470639ns 1306407 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008e78 PA:1c008e78 +74470659ns 1306408 1c00339e 00178793 addi x15, x15, 1 x15=0000001e x15:0000001d +74470679ns 1306409 1c0033a0 feb79be3 bne x15, x11, -10 x15:0000001e x11:000000a8 +74470758ns 1306413 1c003396 00279713 slli x14, x15, 0x2 x14=00000078 x15:0000001e +74470778ns 1306414 1c00339a 00c70733 add x14, x14, x12 x14=1c008e7c x14:00000078 x12:1c008e04 +74470798ns 1306415 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008e7c PA:1c008e7c +74470818ns 1306416 1c00339e 00178793 addi x15, x15, 1 x15=0000001f x15:0000001e +74470837ns 1306417 1c0033a0 feb79be3 bne x15, x11, -10 x15:0000001f x11:000000a8 +74470917ns 1306421 1c003396 00279713 slli x14, x15, 0x2 x14=0000007c x15:0000001f +74470936ns 1306422 1c00339a 00c70733 add x14, x14, x12 x14=1c008e80 x14:0000007c x12:1c008e04 +74470956ns 1306423 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008e80 PA:1c008e80 +74470976ns 1306424 1c00339e 00178793 addi x15, x15, 1 x15=00000020 x15:0000001f +74470996ns 1306425 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000020 x11:000000a8 +74471075ns 1306429 1c003396 00279713 slli x14, x15, 0x2 x14=00000080 x15:00000020 +74471095ns 1306430 1c00339a 00c70733 add x14, x14, x12 x14=1c008e84 x14:00000080 x12:1c008e04 +74471115ns 1306431 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008e84 PA:1c008e84 +74471134ns 1306432 1c00339e 00178793 addi x15, x15, 1 x15=00000021 x15:00000020 +74471154ns 1306433 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000021 x11:000000a8 +74471233ns 1306437 1c003396 00279713 slli x14, x15, 0x2 x14=00000084 x15:00000021 +74471253ns 1306438 1c00339a 00c70733 add x14, x14, x12 x14=1c008e88 x14:00000084 x12:1c008e04 +74471273ns 1306439 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008e88 PA:1c008e88 +74471293ns 1306440 1c00339e 00178793 addi x15, x15, 1 x15=00000022 x15:00000021 +74471312ns 1306441 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000022 x11:000000a8 +74471392ns 1306445 1c003396 00279713 slli x14, x15, 0x2 x14=00000088 x15:00000022 +74471411ns 1306446 1c00339a 00c70733 add x14, x14, x12 x14=1c008e8c x14:00000088 x12:1c008e04 +74471431ns 1306447 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008e8c PA:1c008e8c +74471451ns 1306448 1c00339e 00178793 addi x15, x15, 1 x15=00000023 x15:00000022 +74471471ns 1306449 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000023 x11:000000a8 +74471550ns 1306453 1c003396 00279713 slli x14, x15, 0x2 x14=0000008c x15:00000023 +74471570ns 1306454 1c00339a 00c70733 add x14, x14, x12 x14=1c008e90 x14:0000008c x12:1c008e04 +74471590ns 1306455 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008e90 PA:1c008e90 +74471609ns 1306456 1c00339e 00178793 addi x15, x15, 1 x15=00000024 x15:00000023 +74471629ns 1306457 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000024 x11:000000a8 +74471708ns 1306461 1c003396 00279713 slli x14, x15, 0x2 x14=00000090 x15:00000024 +74471728ns 1306462 1c00339a 00c70733 add x14, x14, x12 x14=1c008e94 x14:00000090 x12:1c008e04 +74471748ns 1306463 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008e94 PA:1c008e94 +74471768ns 1306464 1c00339e 00178793 addi x15, x15, 1 x15=00000025 x15:00000024 +74471787ns 1306465 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000025 x11:000000a8 +74471867ns 1306469 1c003396 00279713 slli x14, x15, 0x2 x14=00000094 x15:00000025 +74471886ns 1306470 1c00339a 00c70733 add x14, x14, x12 x14=1c008e98 x14:00000094 x12:1c008e04 +74471906ns 1306471 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008e98 PA:1c008e98 +74471926ns 1306472 1c00339e 00178793 addi x15, x15, 1 x15=00000026 x15:00000025 +74471946ns 1306473 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000026 x11:000000a8 +74472025ns 1306477 1c003396 00279713 slli x14, x15, 0x2 x14=00000098 x15:00000026 +74472045ns 1306478 1c00339a 00c70733 add x14, x14, x12 x14=1c008e9c x14:00000098 x12:1c008e04 +74472065ns 1306479 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008e9c PA:1c008e9c +74472084ns 1306480 1c00339e 00178793 addi x15, x15, 1 x15=00000027 x15:00000026 +74472104ns 1306481 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000027 x11:000000a8 +74472183ns 1306485 1c003396 00279713 slli x14, x15, 0x2 x14=0000009c x15:00000027 +74472203ns 1306486 1c00339a 00c70733 add x14, x14, x12 x14=1c008ea0 x14:0000009c x12:1c008e04 +74472223ns 1306487 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008ea0 PA:1c008ea0 +74472243ns 1306488 1c00339e 00178793 addi x15, x15, 1 x15=00000028 x15:00000027 +74472262ns 1306489 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000028 x11:000000a8 +74472342ns 1306493 1c003396 00279713 slli x14, x15, 0x2 x14=000000a0 x15:00000028 +74472361ns 1306494 1c00339a 00c70733 add x14, x14, x12 x14=1c008ea4 x14:000000a0 x12:1c008e04 +74472381ns 1306495 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008ea4 PA:1c008ea4 +74472401ns 1306496 1c00339e 00178793 addi x15, x15, 1 x15=00000029 x15:00000028 +74472421ns 1306497 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000029 x11:000000a8 +74472500ns 1306501 1c003396 00279713 slli x14, x15, 0x2 x14=000000a4 x15:00000029 +74472520ns 1306502 1c00339a 00c70733 add x14, x14, x12 x14=1c008ea8 x14:000000a4 x12:1c008e04 +74472540ns 1306503 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008ea8 PA:1c008ea8 +74472559ns 1306504 1c00339e 00178793 addi x15, x15, 1 x15=0000002a x15:00000029 +74472579ns 1306505 1c0033a0 feb79be3 bne x15, x11, -10 x15:0000002a x11:000000a8 +74472658ns 1306509 1c003396 00279713 slli x14, x15, 0x2 x14=000000a8 x15:0000002a +74472678ns 1306510 1c00339a 00c70733 add x14, x14, x12 x14=1c008eac x14:000000a8 x12:1c008e04 +74472698ns 1306511 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008eac PA:1c008eac +74472718ns 1306512 1c00339e 00178793 addi x15, x15, 1 x15=0000002b x15:0000002a +74472737ns 1306513 1c0033a0 feb79be3 bne x15, x11, -10 x15:0000002b x11:000000a8 +74472817ns 1306517 1c003396 00279713 slli x14, x15, 0x2 x14=000000ac x15:0000002b +74472836ns 1306518 1c00339a 00c70733 add x14, x14, x12 x14=1c008eb0 x14:000000ac x12:1c008e04 +74472856ns 1306519 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008eb0 PA:1c008eb0 +74472876ns 1306520 1c00339e 00178793 addi x15, x15, 1 x15=0000002c x15:0000002b +74472896ns 1306521 1c0033a0 feb79be3 bne x15, x11, -10 x15:0000002c x11:000000a8 +74472975ns 1306525 1c003396 00279713 slli x14, x15, 0x2 x14=000000b0 x15:0000002c +74472995ns 1306526 1c00339a 00c70733 add x14, x14, x12 x14=1c008eb4 x14:000000b0 x12:1c008e04 +74473015ns 1306527 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008eb4 PA:1c008eb4 +74473034ns 1306528 1c00339e 00178793 addi x15, x15, 1 x15=0000002d x15:0000002c +74473054ns 1306529 1c0033a0 feb79be3 bne x15, x11, -10 x15:0000002d x11:000000a8 +74473133ns 1306533 1c003396 00279713 slli x14, x15, 0x2 x14=000000b4 x15:0000002d +74473153ns 1306534 1c00339a 00c70733 add x14, x14, x12 x14=1c008eb8 x14:000000b4 x12:1c008e04 +74473173ns 1306535 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008eb8 PA:1c008eb8 +74473193ns 1306536 1c00339e 00178793 addi x15, x15, 1 x15=0000002e x15:0000002d +74473212ns 1306537 1c0033a0 feb79be3 bne x15, x11, -10 x15:0000002e x11:000000a8 +74473292ns 1306541 1c003396 00279713 slli x14, x15, 0x2 x14=000000b8 x15:0000002e +74473311ns 1306542 1c00339a 00c70733 add x14, x14, x12 x14=1c008ebc x14:000000b8 x12:1c008e04 +74473331ns 1306543 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008ebc PA:1c008ebc +74473351ns 1306544 1c00339e 00178793 addi x15, x15, 1 x15=0000002f x15:0000002e +74473371ns 1306545 1c0033a0 feb79be3 bne x15, x11, -10 x15:0000002f x11:000000a8 +74473450ns 1306549 1c003396 00279713 slli x14, x15, 0x2 x14=000000bc x15:0000002f +74473470ns 1306550 1c00339a 00c70733 add x14, x14, x12 x14=1c008ec0 x14:000000bc x12:1c008e04 +74473490ns 1306551 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008ec0 PA:1c008ec0 +74473509ns 1306552 1c00339e 00178793 addi x15, x15, 1 x15=00000030 x15:0000002f +74473529ns 1306553 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000030 x11:000000a8 +74473608ns 1306557 1c003396 00279713 slli x14, x15, 0x2 x14=000000c0 x15:00000030 +74473628ns 1306558 1c00339a 00c70733 add x14, x14, x12 x14=1c008ec4 x14:000000c0 x12:1c008e04 +74473648ns 1306559 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008ec4 PA:1c008ec4 +74473668ns 1306560 1c00339e 00178793 addi x15, x15, 1 x15=00000031 x15:00000030 +74473687ns 1306561 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000031 x11:000000a8 +74473767ns 1306565 1c003396 00279713 slli x14, x15, 0x2 x14=000000c4 x15:00000031 +74473786ns 1306566 1c00339a 00c70733 add x14, x14, x12 x14=1c008ec8 x14:000000c4 x12:1c008e04 +74473806ns 1306567 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008ec8 PA:1c008ec8 +74473826ns 1306568 1c00339e 00178793 addi x15, x15, 1 x15=00000032 x15:00000031 +74473846ns 1306569 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000032 x11:000000a8 +74473925ns 1306573 1c003396 00279713 slli x14, x15, 0x2 x14=000000c8 x15:00000032 +74473945ns 1306574 1c00339a 00c70733 add x14, x14, x12 x14=1c008ecc x14:000000c8 x12:1c008e04 +74473965ns 1306575 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008ecc PA:1c008ecc +74473984ns 1306576 1c00339e 00178793 addi x15, x15, 1 x15=00000033 x15:00000032 +74474004ns 1306577 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000033 x11:000000a8 +74474083ns 1306581 1c003396 00279713 slli x14, x15, 0x2 x14=000000cc x15:00000033 +74474103ns 1306582 1c00339a 00c70733 add x14, x14, x12 x14=1c008ed0 x14:000000cc x12:1c008e04 +74474123ns 1306583 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008ed0 PA:1c008ed0 +74474143ns 1306584 1c00339e 00178793 addi x15, x15, 1 x15=00000034 x15:00000033 +74474162ns 1306585 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000034 x11:000000a8 +74474242ns 1306589 1c003396 00279713 slli x14, x15, 0x2 x14=000000d0 x15:00000034 +74474261ns 1306590 1c00339a 00c70733 add x14, x14, x12 x14=1c008ed4 x14:000000d0 x12:1c008e04 +74474281ns 1306591 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008ed4 PA:1c008ed4 +74474301ns 1306592 1c00339e 00178793 addi x15, x15, 1 x15=00000035 x15:00000034 +74474321ns 1306593 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000035 x11:000000a8 +74474400ns 1306597 1c003396 00279713 slli x14, x15, 0x2 x14=000000d4 x15:00000035 +74474420ns 1306598 1c00339a 00c70733 add x14, x14, x12 x14=1c008ed8 x14:000000d4 x12:1c008e04 +74474440ns 1306599 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008ed8 PA:1c008ed8 +74474459ns 1306600 1c00339e 00178793 addi x15, x15, 1 x15=00000036 x15:00000035 +74474479ns 1306601 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000036 x11:000000a8 +74474558ns 1306605 1c003396 00279713 slli x14, x15, 0x2 x14=000000d8 x15:00000036 +74474578ns 1306606 1c00339a 00c70733 add x14, x14, x12 x14=1c008edc x14:000000d8 x12:1c008e04 +74474598ns 1306607 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008edc PA:1c008edc +74474618ns 1306608 1c00339e 00178793 addi x15, x15, 1 x15=00000037 x15:00000036 +74474637ns 1306609 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000037 x11:000000a8 +74474717ns 1306613 1c003396 00279713 slli x14, x15, 0x2 x14=000000dc x15:00000037 +74474736ns 1306614 1c00339a 00c70733 add x14, x14, x12 x14=1c008ee0 x14:000000dc x12:1c008e04 +74474756ns 1306615 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008ee0 PA:1c008ee0 +74474776ns 1306616 1c00339e 00178793 addi x15, x15, 1 x15=00000038 x15:00000037 +74474796ns 1306617 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000038 x11:000000a8 +74474875ns 1306621 1c003396 00279713 slli x14, x15, 0x2 x14=000000e0 x15:00000038 +74474895ns 1306622 1c00339a 00c70733 add x14, x14, x12 x14=1c008ee4 x14:000000e0 x12:1c008e04 +74474915ns 1306623 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008ee4 PA:1c008ee4 +74474934ns 1306624 1c00339e 00178793 addi x15, x15, 1 x15=00000039 x15:00000038 +74474954ns 1306625 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000039 x11:000000a8 +74475033ns 1306629 1c003396 00279713 slli x14, x15, 0x2 x14=000000e4 x15:00000039 +74475053ns 1306630 1c00339a 00c70733 add x14, x14, x12 x14=1c008ee8 x14:000000e4 x12:1c008e04 +74475073ns 1306631 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008ee8 PA:1c008ee8 +74475093ns 1306632 1c00339e 00178793 addi x15, x15, 1 x15=0000003a x15:00000039 +74475112ns 1306633 1c0033a0 feb79be3 bne x15, x11, -10 x15:0000003a x11:000000a8 +74475192ns 1306637 1c003396 00279713 slli x14, x15, 0x2 x14=000000e8 x15:0000003a +74475211ns 1306638 1c00339a 00c70733 add x14, x14, x12 x14=1c008eec x14:000000e8 x12:1c008e04 +74475231ns 1306639 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008eec PA:1c008eec +74475251ns 1306640 1c00339e 00178793 addi x15, x15, 1 x15=0000003b x15:0000003a +74475271ns 1306641 1c0033a0 feb79be3 bne x15, x11, -10 x15:0000003b x11:000000a8 +74475350ns 1306645 1c003396 00279713 slli x14, x15, 0x2 x14=000000ec x15:0000003b +74475370ns 1306646 1c00339a 00c70733 add x14, x14, x12 x14=1c008ef0 x14:000000ec x12:1c008e04 +74475390ns 1306647 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008ef0 PA:1c008ef0 +74475409ns 1306648 1c00339e 00178793 addi x15, x15, 1 x15=0000003c x15:0000003b +74475429ns 1306649 1c0033a0 feb79be3 bne x15, x11, -10 x15:0000003c x11:000000a8 +74475508ns 1306653 1c003396 00279713 slli x14, x15, 0x2 x14=000000f0 x15:0000003c +74475528ns 1306654 1c00339a 00c70733 add x14, x14, x12 x14=1c008ef4 x14:000000f0 x12:1c008e04 +74475548ns 1306655 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008ef4 PA:1c008ef4 +74475568ns 1306656 1c00339e 00178793 addi x15, x15, 1 x15=0000003d x15:0000003c +74475587ns 1306657 1c0033a0 feb79be3 bne x15, x11, -10 x15:0000003d x11:000000a8 +74475667ns 1306661 1c003396 00279713 slli x14, x15, 0x2 x14=000000f4 x15:0000003d +74475686ns 1306662 1c00339a 00c70733 add x14, x14, x12 x14=1c008ef8 x14:000000f4 x12:1c008e04 +74475706ns 1306663 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008ef8 PA:1c008ef8 +74475726ns 1306664 1c00339e 00178793 addi x15, x15, 1 x15=0000003e x15:0000003d +74475746ns 1306665 1c0033a0 feb79be3 bne x15, x11, -10 x15:0000003e x11:000000a8 +74475825ns 1306669 1c003396 00279713 slli x14, x15, 0x2 x14=000000f8 x15:0000003e +74475845ns 1306670 1c00339a 00c70733 add x14, x14, x12 x14=1c008efc x14:000000f8 x12:1c008e04 +74475865ns 1306671 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008efc PA:1c008efc +74475884ns 1306672 1c00339e 00178793 addi x15, x15, 1 x15=0000003f x15:0000003e +74475904ns 1306673 1c0033a0 feb79be3 bne x15, x11, -10 x15:0000003f x11:000000a8 +74475983ns 1306677 1c003396 00279713 slli x14, x15, 0x2 x14=000000fc x15:0000003f +74476003ns 1306678 1c00339a 00c70733 add x14, x14, x12 x14=1c008f00 x14:000000fc x12:1c008e04 +74476023ns 1306679 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008f00 PA:1c008f00 +74476043ns 1306680 1c00339e 00178793 addi x15, x15, 1 x15=00000040 x15:0000003f +74476063ns 1306681 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000040 x11:000000a8 +74476142ns 1306685 1c003396 00279713 slli x14, x15, 0x2 x14=00000100 x15:00000040 +74476161ns 1306686 1c00339a 00c70733 add x14, x14, x12 x14=1c008f04 x14:00000100 x12:1c008e04 +74476181ns 1306687 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008f04 PA:1c008f04 +74476201ns 1306688 1c00339e 00178793 addi x15, x15, 1 x15=00000041 x15:00000040 +74476221ns 1306689 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000041 x11:000000a8 +74476300ns 1306693 1c003396 00279713 slli x14, x15, 0x2 x14=00000104 x15:00000041 +74476320ns 1306694 1c00339a 00c70733 add x14, x14, x12 x14=1c008f08 x14:00000104 x12:1c008e04 +74476340ns 1306695 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008f08 PA:1c008f08 +74476359ns 1306696 1c00339e 00178793 addi x15, x15, 1 x15=00000042 x15:00000041 +74476379ns 1306697 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000042 x11:000000a8 +74476458ns 1306701 1c003396 00279713 slli x14, x15, 0x2 x14=00000108 x15:00000042 +74476478ns 1306702 1c00339a 00c70733 add x14, x14, x12 x14=1c008f0c x14:00000108 x12:1c008e04 +74476498ns 1306703 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008f0c PA:1c008f0c +74476518ns 1306704 1c00339e 00178793 addi x15, x15, 1 x15=00000043 x15:00000042 +74476538ns 1306705 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000043 x11:000000a8 +74476617ns 1306709 1c003396 00279713 slli x14, x15, 0x2 x14=0000010c x15:00000043 +74476636ns 1306710 1c00339a 00c70733 add x14, x14, x12 x14=1c008f10 x14:0000010c x12:1c008e04 +74476656ns 1306711 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008f10 PA:1c008f10 +74476676ns 1306712 1c00339e 00178793 addi x15, x15, 1 x15=00000044 x15:00000043 +74476696ns 1306713 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000044 x11:000000a8 +74476775ns 1306717 1c003396 00279713 slli x14, x15, 0x2 x14=00000110 x15:00000044 +74476795ns 1306718 1c00339a 00c70733 add x14, x14, x12 x14=1c008f14 x14:00000110 x12:1c008e04 +74476815ns 1306719 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008f14 PA:1c008f14 +74476834ns 1306720 1c00339e 00178793 addi x15, x15, 1 x15=00000045 x15:00000044 +74476854ns 1306721 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000045 x11:000000a8 +74476933ns 1306725 1c003396 00279713 slli x14, x15, 0x2 x14=00000114 x15:00000045 +74476953ns 1306726 1c00339a 00c70733 add x14, x14, x12 x14=1c008f18 x14:00000114 x12:1c008e04 +74476973ns 1306727 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008f18 PA:1c008f18 +74476993ns 1306728 1c00339e 00178793 addi x15, x15, 1 x15=00000046 x15:00000045 +74477013ns 1306729 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000046 x11:000000a8 +74477092ns 1306733 1c003396 00279713 slli x14, x15, 0x2 x14=00000118 x15:00000046 +74477111ns 1306734 1c00339a 00c70733 add x14, x14, x12 x14=1c008f1c x14:00000118 x12:1c008e04 +74477131ns 1306735 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008f1c PA:1c008f1c +74477151ns 1306736 1c00339e 00178793 addi x15, x15, 1 x15=00000047 x15:00000046 +74477171ns 1306737 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000047 x11:000000a8 +74477250ns 1306741 1c003396 00279713 slli x14, x15, 0x2 x14=0000011c x15:00000047 +74477270ns 1306742 1c00339a 00c70733 add x14, x14, x12 x14=1c008f20 x14:0000011c x12:1c008e04 +74477290ns 1306743 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008f20 PA:1c008f20 +74477309ns 1306744 1c00339e 00178793 addi x15, x15, 1 x15=00000048 x15:00000047 +74477329ns 1306745 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000048 x11:000000a8 +74477408ns 1306749 1c003396 00279713 slli x14, x15, 0x2 x14=00000120 x15:00000048 +74477428ns 1306750 1c00339a 00c70733 add x14, x14, x12 x14=1c008f24 x14:00000120 x12:1c008e04 +74477448ns 1306751 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008f24 PA:1c008f24 +74477468ns 1306752 1c00339e 00178793 addi x15, x15, 1 x15=00000049 x15:00000048 +74477488ns 1306753 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000049 x11:000000a8 +74477567ns 1306757 1c003396 00279713 slli x14, x15, 0x2 x14=00000124 x15:00000049 +74477586ns 1306758 1c00339a 00c70733 add x14, x14, x12 x14=1c008f28 x14:00000124 x12:1c008e04 +74477606ns 1306759 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008f28 PA:1c008f28 +74477626ns 1306760 1c00339e 00178793 addi x15, x15, 1 x15=0000004a x15:00000049 +74477646ns 1306761 1c0033a0 feb79be3 bne x15, x11, -10 x15:0000004a x11:000000a8 +74477725ns 1306765 1c003396 00279713 slli x14, x15, 0x2 x14=00000128 x15:0000004a +74477745ns 1306766 1c00339a 00c70733 add x14, x14, x12 x14=1c008f2c x14:00000128 x12:1c008e04 +74477765ns 1306767 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008f2c PA:1c008f2c +74477784ns 1306768 1c00339e 00178793 addi x15, x15, 1 x15=0000004b x15:0000004a +74477804ns 1306769 1c0033a0 feb79be3 bne x15, x11, -10 x15:0000004b x11:000000a8 +74477883ns 1306773 1c003396 00279713 slli x14, x15, 0x2 x14=0000012c x15:0000004b +74477903ns 1306774 1c00339a 00c70733 add x14, x14, x12 x14=1c008f30 x14:0000012c x12:1c008e04 +74477923ns 1306775 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008f30 PA:1c008f30 +74477943ns 1306776 1c00339e 00178793 addi x15, x15, 1 x15=0000004c x15:0000004b +74477963ns 1306777 1c0033a0 feb79be3 bne x15, x11, -10 x15:0000004c x11:000000a8 +74478042ns 1306781 1c003396 00279713 slli x14, x15, 0x2 x14=00000130 x15:0000004c +74478061ns 1306782 1c00339a 00c70733 add x14, x14, x12 x14=1c008f34 x14:00000130 x12:1c008e04 +74478081ns 1306783 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008f34 PA:1c008f34 +74478101ns 1306784 1c00339e 00178793 addi x15, x15, 1 x15=0000004d x15:0000004c +74478121ns 1306785 1c0033a0 feb79be3 bne x15, x11, -10 x15:0000004d x11:000000a8 +74478200ns 1306789 1c003396 00279713 slli x14, x15, 0x2 x14=00000134 x15:0000004d +74478220ns 1306790 1c00339a 00c70733 add x14, x14, x12 x14=1c008f38 x14:00000134 x12:1c008e04 +74478240ns 1306791 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008f38 PA:1c008f38 +74478259ns 1306792 1c00339e 00178793 addi x15, x15, 1 x15=0000004e x15:0000004d +74478279ns 1306793 1c0033a0 feb79be3 bne x15, x11, -10 x15:0000004e x11:000000a8 +74478358ns 1306797 1c003396 00279713 slli x14, x15, 0x2 x14=00000138 x15:0000004e +74478378ns 1306798 1c00339a 00c70733 add x14, x14, x12 x14=1c008f3c x14:00000138 x12:1c008e04 +74478398ns 1306799 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008f3c PA:1c008f3c +74478418ns 1306800 1c00339e 00178793 addi x15, x15, 1 x15=0000004f x15:0000004e +74478438ns 1306801 1c0033a0 feb79be3 bne x15, x11, -10 x15:0000004f x11:000000a8 +74478517ns 1306805 1c003396 00279713 slli x14, x15, 0x2 x14=0000013c x15:0000004f +74478537ns 1306806 1c00339a 00c70733 add x14, x14, x12 x14=1c008f40 x14:0000013c x12:1c008e04 +74478556ns 1306807 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008f40 PA:1c008f40 +74478576ns 1306808 1c00339e 00178793 addi x15, x15, 1 x15=00000050 x15:0000004f +74478596ns 1306809 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000050 x11:000000a8 +74478675ns 1306813 1c003396 00279713 slli x14, x15, 0x2 x14=00000140 x15:00000050 +74478695ns 1306814 1c00339a 00c70733 add x14, x14, x12 x14=1c008f44 x14:00000140 x12:1c008e04 +74478715ns 1306815 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008f44 PA:1c008f44 +74478734ns 1306816 1c00339e 00178793 addi x15, x15, 1 x15=00000051 x15:00000050 +74478754ns 1306817 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000051 x11:000000a8 +74478833ns 1306821 1c003396 00279713 slli x14, x15, 0x2 x14=00000144 x15:00000051 +74478853ns 1306822 1c00339a 00c70733 add x14, x14, x12 x14=1c008f48 x14:00000144 x12:1c008e04 +74478873ns 1306823 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008f48 PA:1c008f48 +74478893ns 1306824 1c00339e 00178793 addi x15, x15, 1 x15=00000052 x15:00000051 +74478913ns 1306825 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000052 x11:000000a8 +74478992ns 1306829 1c003396 00279713 slli x14, x15, 0x2 x14=00000148 x15:00000052 +74479012ns 1306830 1c00339a 00c70733 add x14, x14, x12 x14=1c008f4c x14:00000148 x12:1c008e04 +74479031ns 1306831 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008f4c PA:1c008f4c +74479051ns 1306832 1c00339e 00178793 addi x15, x15, 1 x15=00000053 x15:00000052 +74479071ns 1306833 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000053 x11:000000a8 +74479150ns 1306837 1c003396 00279713 slli x14, x15, 0x2 x14=0000014c x15:00000053 +74479170ns 1306838 1c00339a 00c70733 add x14, x14, x12 x14=1c008f50 x14:0000014c x12:1c008e04 +74479190ns 1306839 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008f50 PA:1c008f50 +74479209ns 1306840 1c00339e 00178793 addi x15, x15, 1 x15=00000054 x15:00000053 +74479229ns 1306841 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000054 x11:000000a8 +74479308ns 1306845 1c003396 00279713 slli x14, x15, 0x2 x14=00000150 x15:00000054 +74479328ns 1306846 1c00339a 00c70733 add x14, x14, x12 x14=1c008f54 x14:00000150 x12:1c008e04 +74479348ns 1306847 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008f54 PA:1c008f54 +74479368ns 1306848 1c00339e 00178793 addi x15, x15, 1 x15=00000055 x15:00000054 +74479388ns 1306849 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000055 x11:000000a8 +74479467ns 1306853 1c003396 00279713 slli x14, x15, 0x2 x14=00000154 x15:00000055 +74479487ns 1306854 1c00339a 00c70733 add x14, x14, x12 x14=1c008f58 x14:00000154 x12:1c008e04 +74479506ns 1306855 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008f58 PA:1c008f58 +74479526ns 1306856 1c00339e 00178793 addi x15, x15, 1 x15=00000056 x15:00000055 +74479546ns 1306857 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000056 x11:000000a8 +74479625ns 1306861 1c003396 00279713 slli x14, x15, 0x2 x14=00000158 x15:00000056 +74479645ns 1306862 1c00339a 00c70733 add x14, x14, x12 x14=1c008f5c x14:00000158 x12:1c008e04 +74479665ns 1306863 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008f5c PA:1c008f5c +74479684ns 1306864 1c00339e 00178793 addi x15, x15, 1 x15=00000057 x15:00000056 +74479704ns 1306865 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000057 x11:000000a8 +74479783ns 1306869 1c003396 00279713 slli x14, x15, 0x2 x14=0000015c x15:00000057 +74479803ns 1306870 1c00339a 00c70733 add x14, x14, x12 x14=1c008f60 x14:0000015c x12:1c008e04 +74479823ns 1306871 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008f60 PA:1c008f60 +74479843ns 1306872 1c00339e 00178793 addi x15, x15, 1 x15=00000058 x15:00000057 +74479863ns 1306873 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000058 x11:000000a8 +74479942ns 1306877 1c003396 00279713 slli x14, x15, 0x2 x14=00000160 x15:00000058 +74479962ns 1306878 1c00339a 00c70733 add x14, x14, x12 x14=1c008f64 x14:00000160 x12:1c008e04 +74479981ns 1306879 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008f64 PA:1c008f64 +74480001ns 1306880 1c00339e 00178793 addi x15, x15, 1 x15=00000059 x15:00000058 +74480021ns 1306881 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000059 x11:000000a8 +74480100ns 1306885 1c003396 00279713 slli x14, x15, 0x2 x14=00000164 x15:00000059 +74480120ns 1306886 1c00339a 00c70733 add x14, x14, x12 x14=1c008f68 x14:00000164 x12:1c008e04 +74480140ns 1306887 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008f68 PA:1c008f68 +74480159ns 1306888 1c00339e 00178793 addi x15, x15, 1 x15=0000005a x15:00000059 +74480179ns 1306889 1c0033a0 feb79be3 bne x15, x11, -10 x15:0000005a x11:000000a8 +74480258ns 1306893 1c003396 00279713 slli x14, x15, 0x2 x14=00000168 x15:0000005a +74480278ns 1306894 1c00339a 00c70733 add x14, x14, x12 x14=1c008f6c x14:00000168 x12:1c008e04 +74480298ns 1306895 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008f6c PA:1c008f6c +74480318ns 1306896 1c00339e 00178793 addi x15, x15, 1 x15=0000005b x15:0000005a +74480338ns 1306897 1c0033a0 feb79be3 bne x15, x11, -10 x15:0000005b x11:000000a8 +74480417ns 1306901 1c003396 00279713 slli x14, x15, 0x2 x14=0000016c x15:0000005b +74480437ns 1306902 1c00339a 00c70733 add x14, x14, x12 x14=1c008f70 x14:0000016c x12:1c008e04 +74480456ns 1306903 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008f70 PA:1c008f70 +74480476ns 1306904 1c00339e 00178793 addi x15, x15, 1 x15=0000005c x15:0000005b +74480496ns 1306905 1c0033a0 feb79be3 bne x15, x11, -10 x15:0000005c x11:000000a8 +74480575ns 1306909 1c003396 00279713 slli x14, x15, 0x2 x14=00000170 x15:0000005c +74480595ns 1306910 1c00339a 00c70733 add x14, x14, x12 x14=1c008f74 x14:00000170 x12:1c008e04 +74480615ns 1306911 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008f74 PA:1c008f74 +74480634ns 1306912 1c00339e 00178793 addi x15, x15, 1 x15=0000005d x15:0000005c +74480654ns 1306913 1c0033a0 feb79be3 bne x15, x11, -10 x15:0000005d x11:000000a8 +74480733ns 1306917 1c003396 00279713 slli x14, x15, 0x2 x14=00000174 x15:0000005d +74480753ns 1306918 1c00339a 00c70733 add x14, x14, x12 x14=1c008f78 x14:00000174 x12:1c008e04 +74480773ns 1306919 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008f78 PA:1c008f78 +74480793ns 1306920 1c00339e 00178793 addi x15, x15, 1 x15=0000005e x15:0000005d +74480813ns 1306921 1c0033a0 feb79be3 bne x15, x11, -10 x15:0000005e x11:000000a8 +74480892ns 1306925 1c003396 00279713 slli x14, x15, 0x2 x14=00000178 x15:0000005e +74480912ns 1306926 1c00339a 00c70733 add x14, x14, x12 x14=1c008f7c x14:00000178 x12:1c008e04 +74480931ns 1306927 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008f7c PA:1c008f7c +74480951ns 1306928 1c00339e 00178793 addi x15, x15, 1 x15=0000005f x15:0000005e +74480971ns 1306929 1c0033a0 feb79be3 bne x15, x11, -10 x15:0000005f x11:000000a8 +74481050ns 1306933 1c003396 00279713 slli x14, x15, 0x2 x14=0000017c x15:0000005f +74481070ns 1306934 1c00339a 00c70733 add x14, x14, x12 x14=1c008f80 x14:0000017c x12:1c008e04 +74481090ns 1306935 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008f80 PA:1c008f80 +74481109ns 1306936 1c00339e 00178793 addi x15, x15, 1 x15=00000060 x15:0000005f +74481129ns 1306937 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000060 x11:000000a8 +74481208ns 1306941 1c003396 00279713 slli x14, x15, 0x2 x14=00000180 x15:00000060 +74481228ns 1306942 1c00339a 00c70733 add x14, x14, x12 x14=1c008f84 x14:00000180 x12:1c008e04 +74481248ns 1306943 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008f84 PA:1c008f84 +74481268ns 1306944 1c00339e 00178793 addi x15, x15, 1 x15=00000061 x15:00000060 +74481288ns 1306945 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000061 x11:000000a8 +74481367ns 1306949 1c003396 00279713 slli x14, x15, 0x2 x14=00000184 x15:00000061 +74481387ns 1306950 1c00339a 00c70733 add x14, x14, x12 x14=1c008f88 x14:00000184 x12:1c008e04 +74481406ns 1306951 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008f88 PA:1c008f88 +74481426ns 1306952 1c00339e 00178793 addi x15, x15, 1 x15=00000062 x15:00000061 +74481446ns 1306953 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000062 x11:000000a8 +74481525ns 1306957 1c003396 00279713 slli x14, x15, 0x2 x14=00000188 x15:00000062 +74481545ns 1306958 1c00339a 00c70733 add x14, x14, x12 x14=1c008f8c x14:00000188 x12:1c008e04 +74481565ns 1306959 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008f8c PA:1c008f8c +74481584ns 1306960 1c00339e 00178793 addi x15, x15, 1 x15=00000063 x15:00000062 +74481604ns 1306961 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000063 x11:000000a8 +74481683ns 1306965 1c003396 00279713 slli x14, x15, 0x2 x14=0000018c x15:00000063 +74481703ns 1306966 1c00339a 00c70733 add x14, x14, x12 x14=1c008f90 x14:0000018c x12:1c008e04 +74481723ns 1306967 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008f90 PA:1c008f90 +74481743ns 1306968 1c00339e 00178793 addi x15, x15, 1 x15=00000064 x15:00000063 +74481763ns 1306969 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000064 x11:000000a8 +74481842ns 1306973 1c003396 00279713 slli x14, x15, 0x2 x14=00000190 x15:00000064 +74481862ns 1306974 1c00339a 00c70733 add x14, x14, x12 x14=1c008f94 x14:00000190 x12:1c008e04 +74481881ns 1306975 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008f94 PA:1c008f94 +74481901ns 1306976 1c00339e 00178793 addi x15, x15, 1 x15=00000065 x15:00000064 +74481921ns 1306977 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000065 x11:000000a8 +74482000ns 1306981 1c003396 00279713 slli x14, x15, 0x2 x14=00000194 x15:00000065 +74482020ns 1306982 1c00339a 00c70733 add x14, x14, x12 x14=1c008f98 x14:00000194 x12:1c008e04 +74482040ns 1306983 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008f98 PA:1c008f98 +74482059ns 1306984 1c00339e 00178793 addi x15, x15, 1 x15=00000066 x15:00000065 +74482079ns 1306985 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000066 x11:000000a8 +74482158ns 1306989 1c003396 00279713 slli x14, x15, 0x2 x14=00000198 x15:00000066 +74482178ns 1306990 1c00339a 00c70733 add x14, x14, x12 x14=1c008f9c x14:00000198 x12:1c008e04 +74482198ns 1306991 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008f9c PA:1c008f9c +74482218ns 1306992 1c00339e 00178793 addi x15, x15, 1 x15=00000067 x15:00000066 +74482238ns 1306993 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000067 x11:000000a8 +74482317ns 1306997 1c003396 00279713 slli x14, x15, 0x2 x14=0000019c x15:00000067 +74482337ns 1306998 1c00339a 00c70733 add x14, x14, x12 x14=1c008fa0 x14:0000019c x12:1c008e04 +74482356ns 1306999 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008fa0 PA:1c008fa0 +74482376ns 1307000 1c00339e 00178793 addi x15, x15, 1 x15=00000068 x15:00000067 +74482396ns 1307001 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000068 x11:000000a8 +74482475ns 1307005 1c003396 00279713 slli x14, x15, 0x2 x14=000001a0 x15:00000068 +74482495ns 1307006 1c00339a 00c70733 add x14, x14, x12 x14=1c008fa4 x14:000001a0 x12:1c008e04 +74482515ns 1307007 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008fa4 PA:1c008fa4 +74482534ns 1307008 1c00339e 00178793 addi x15, x15, 1 x15=00000069 x15:00000068 +74482554ns 1307009 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000069 x11:000000a8 +74482633ns 1307013 1c003396 00279713 slli x14, x15, 0x2 x14=000001a4 x15:00000069 +74482653ns 1307014 1c00339a 00c70733 add x14, x14, x12 x14=1c008fa8 x14:000001a4 x12:1c008e04 +74482673ns 1307015 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008fa8 PA:1c008fa8 +74482693ns 1307016 1c00339e 00178793 addi x15, x15, 1 x15=0000006a x15:00000069 +74482713ns 1307017 1c0033a0 feb79be3 bne x15, x11, -10 x15:0000006a x11:000000a8 +74482792ns 1307021 1c003396 00279713 slli x14, x15, 0x2 x14=000001a8 x15:0000006a +74482812ns 1307022 1c00339a 00c70733 add x14, x14, x12 x14=1c008fac x14:000001a8 x12:1c008e04 +74482831ns 1307023 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008fac PA:1c008fac +74482851ns 1307024 1c00339e 00178793 addi x15, x15, 1 x15=0000006b x15:0000006a +74482871ns 1307025 1c0033a0 feb79be3 bne x15, x11, -10 x15:0000006b x11:000000a8 +74482950ns 1307029 1c003396 00279713 slli x14, x15, 0x2 x14=000001ac x15:0000006b +74482970ns 1307030 1c00339a 00c70733 add x14, x14, x12 x14=1c008fb0 x14:000001ac x12:1c008e04 +74482990ns 1307031 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008fb0 PA:1c008fb0 +74483009ns 1307032 1c00339e 00178793 addi x15, x15, 1 x15=0000006c x15:0000006b +74483029ns 1307033 1c0033a0 feb79be3 bne x15, x11, -10 x15:0000006c x11:000000a8 +74483108ns 1307037 1c003396 00279713 slli x14, x15, 0x2 x14=000001b0 x15:0000006c +74483128ns 1307038 1c00339a 00c70733 add x14, x14, x12 x14=1c008fb4 x14:000001b0 x12:1c008e04 +74483148ns 1307039 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008fb4 PA:1c008fb4 +74483168ns 1307040 1c00339e 00178793 addi x15, x15, 1 x15=0000006d x15:0000006c +74483188ns 1307041 1c0033a0 feb79be3 bne x15, x11, -10 x15:0000006d x11:000000a8 +74483267ns 1307045 1c003396 00279713 slli x14, x15, 0x2 x14=000001b4 x15:0000006d +74483287ns 1307046 1c00339a 00c70733 add x14, x14, x12 x14=1c008fb8 x14:000001b4 x12:1c008e04 +74483306ns 1307047 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008fb8 PA:1c008fb8 +74483326ns 1307048 1c00339e 00178793 addi x15, x15, 1 x15=0000006e x15:0000006d +74483346ns 1307049 1c0033a0 feb79be3 bne x15, x11, -10 x15:0000006e x11:000000a8 +74483425ns 1307053 1c003396 00279713 slli x14, x15, 0x2 x14=000001b8 x15:0000006e +74483445ns 1307054 1c00339a 00c70733 add x14, x14, x12 x14=1c008fbc x14:000001b8 x12:1c008e04 +74483465ns 1307055 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008fbc PA:1c008fbc +74483485ns 1307056 1c00339e 00178793 addi x15, x15, 1 x15=0000006f x15:0000006e +74483504ns 1307057 1c0033a0 feb79be3 bne x15, x11, -10 x15:0000006f x11:000000a8 +74483583ns 1307061 1c003396 00279713 slli x14, x15, 0x2 x14=000001bc x15:0000006f +74483603ns 1307062 1c00339a 00c70733 add x14, x14, x12 x14=1c008fc0 x14:000001bc x12:1c008e04 +74483623ns 1307063 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008fc0 PA:1c008fc0 +74483643ns 1307064 1c00339e 00178793 addi x15, x15, 1 x15=00000070 x15:0000006f +74483663ns 1307065 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000070 x11:000000a8 +74483742ns 1307069 1c003396 00279713 slli x14, x15, 0x2 x14=000001c0 x15:00000070 +74483762ns 1307070 1c00339a 00c70733 add x14, x14, x12 x14=1c008fc4 x14:000001c0 x12:1c008e04 +74483781ns 1307071 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008fc4 PA:1c008fc4 +74483801ns 1307072 1c00339e 00178793 addi x15, x15, 1 x15=00000071 x15:00000070 +74483821ns 1307073 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000071 x11:000000a8 +74483900ns 1307077 1c003396 00279713 slli x14, x15, 0x2 x14=000001c4 x15:00000071 +74483920ns 1307078 1c00339a 00c70733 add x14, x14, x12 x14=1c008fc8 x14:000001c4 x12:1c008e04 +74483940ns 1307079 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008fc8 PA:1c008fc8 +74483960ns 1307080 1c00339e 00178793 addi x15, x15, 1 x15=00000072 x15:00000071 +74483979ns 1307081 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000072 x11:000000a8 +74484058ns 1307085 1c003396 00279713 slli x14, x15, 0x2 x14=000001c8 x15:00000072 +74484078ns 1307086 1c00339a 00c70733 add x14, x14, x12 x14=1c008fcc x14:000001c8 x12:1c008e04 +74484098ns 1307087 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008fcc PA:1c008fcc +74484118ns 1307088 1c00339e 00178793 addi x15, x15, 1 x15=00000073 x15:00000072 +74484138ns 1307089 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000073 x11:000000a8 +74484217ns 1307093 1c003396 00279713 slli x14, x15, 0x2 x14=000001cc x15:00000073 +74484237ns 1307094 1c00339a 00c70733 add x14, x14, x12 x14=1c008fd0 x14:000001cc x12:1c008e04 +74484256ns 1307095 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008fd0 PA:1c008fd0 +74484276ns 1307096 1c00339e 00178793 addi x15, x15, 1 x15=00000074 x15:00000073 +74484296ns 1307097 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000074 x11:000000a8 +74484375ns 1307101 1c003396 00279713 slli x14, x15, 0x2 x14=000001d0 x15:00000074 +74484395ns 1307102 1c00339a 00c70733 add x14, x14, x12 x14=1c008fd4 x14:000001d0 x12:1c008e04 +74484415ns 1307103 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008fd4 PA:1c008fd4 +74484435ns 1307104 1c00339e 00178793 addi x15, x15, 1 x15=00000075 x15:00000074 +74484454ns 1307105 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000075 x11:000000a8 +74484533ns 1307109 1c003396 00279713 slli x14, x15, 0x2 x14=000001d4 x15:00000075 +74484553ns 1307110 1c00339a 00c70733 add x14, x14, x12 x14=1c008fd8 x14:000001d4 x12:1c008e04 +74484573ns 1307111 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008fd8 PA:1c008fd8 +74484593ns 1307112 1c00339e 00178793 addi x15, x15, 1 x15=00000076 x15:00000075 +74484613ns 1307113 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000076 x11:000000a8 +74484692ns 1307117 1c003396 00279713 slli x14, x15, 0x2 x14=000001d8 x15:00000076 +74484712ns 1307118 1c00339a 00c70733 add x14, x14, x12 x14=1c008fdc x14:000001d8 x12:1c008e04 +74484731ns 1307119 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008fdc PA:1c008fdc +74484751ns 1307120 1c00339e 00178793 addi x15, x15, 1 x15=00000077 x15:00000076 +74484771ns 1307121 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000077 x11:000000a8 +74484850ns 1307125 1c003396 00279713 slli x14, x15, 0x2 x14=000001dc x15:00000077 +74484870ns 1307126 1c00339a 00c70733 add x14, x14, x12 x14=1c008fe0 x14:000001dc x12:1c008e04 +74484890ns 1307127 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008fe0 PA:1c008fe0 +74484910ns 1307128 1c00339e 00178793 addi x15, x15, 1 x15=00000078 x15:00000077 +74484929ns 1307129 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000078 x11:000000a8 +74485008ns 1307133 1c003396 00279713 slli x14, x15, 0x2 x14=000001e0 x15:00000078 +74485028ns 1307134 1c00339a 00c70733 add x14, x14, x12 x14=1c008fe4 x14:000001e0 x12:1c008e04 +74485048ns 1307135 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008fe4 PA:1c008fe4 +74485068ns 1307136 1c00339e 00178793 addi x15, x15, 1 x15=00000079 x15:00000078 +74485088ns 1307137 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000079 x11:000000a8 +74485167ns 1307141 1c003396 00279713 slli x14, x15, 0x2 x14=000001e4 x15:00000079 +74485187ns 1307142 1c00339a 00c70733 add x14, x14, x12 x14=1c008fe8 x14:000001e4 x12:1c008e04 +74485206ns 1307143 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008fe8 PA:1c008fe8 +74485226ns 1307144 1c00339e 00178793 addi x15, x15, 1 x15=0000007a x15:00000079 +74485246ns 1307145 1c0033a0 feb79be3 bne x15, x11, -10 x15:0000007a x11:000000a8 +74485325ns 1307149 1c003396 00279713 slli x14, x15, 0x2 x14=000001e8 x15:0000007a +74485345ns 1307150 1c00339a 00c70733 add x14, x14, x12 x14=1c008fec x14:000001e8 x12:1c008e04 +74485365ns 1307151 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008fec PA:1c008fec +74485385ns 1307152 1c00339e 00178793 addi x15, x15, 1 x15=0000007b x15:0000007a +74485404ns 1307153 1c0033a0 feb79be3 bne x15, x11, -10 x15:0000007b x11:000000a8 +74485483ns 1307157 1c003396 00279713 slli x14, x15, 0x2 x14=000001ec x15:0000007b +74485503ns 1307158 1c00339a 00c70733 add x14, x14, x12 x14=1c008ff0 x14:000001ec x12:1c008e04 +74485523ns 1307159 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008ff0 PA:1c008ff0 +74485543ns 1307160 1c00339e 00178793 addi x15, x15, 1 x15=0000007c x15:0000007b +74485563ns 1307161 1c0033a0 feb79be3 bne x15, x11, -10 x15:0000007c x11:000000a8 +74485642ns 1307165 1c003396 00279713 slli x14, x15, 0x2 x14=000001f0 x15:0000007c +74485662ns 1307166 1c00339a 00c70733 add x14, x14, x12 x14=1c008ff4 x14:000001f0 x12:1c008e04 +74485681ns 1307167 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008ff4 PA:1c008ff4 +74485701ns 1307168 1c00339e 00178793 addi x15, x15, 1 x15=0000007d x15:0000007c +74485721ns 1307169 1c0033a0 feb79be3 bne x15, x11, -10 x15:0000007d x11:000000a8 +74485800ns 1307173 1c003396 00279713 slli x14, x15, 0x2 x14=000001f4 x15:0000007d +74485820ns 1307174 1c00339a 00c70733 add x14, x14, x12 x14=1c008ff8 x14:000001f4 x12:1c008e04 +74485840ns 1307175 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008ff8 PA:1c008ff8 +74485860ns 1307176 1c00339e 00178793 addi x15, x15, 1 x15=0000007e x15:0000007d +74485879ns 1307177 1c0033a0 feb79be3 bne x15, x11, -10 x15:0000007e x11:000000a8 +74485959ns 1307181 1c003396 00279713 slli x14, x15, 0x2 x14=000001f8 x15:0000007e +74485978ns 1307182 1c00339a 00c70733 add x14, x14, x12 x14=1c008ffc x14:000001f8 x12:1c008e04 +74485998ns 1307183 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c008ffc PA:1c008ffc +74486018ns 1307184 1c00339e 00178793 addi x15, x15, 1 x15=0000007f x15:0000007e +74486038ns 1307185 1c0033a0 feb79be3 bne x15, x11, -10 x15:0000007f x11:000000a8 +74486117ns 1307189 1c003396 00279713 slli x14, x15, 0x2 x14=000001fc x15:0000007f +74486137ns 1307190 1c00339a 00c70733 add x14, x14, x12 x14=1c009000 x14:000001fc x12:1c008e04 +74486156ns 1307191 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c009000 PA:1c009000 +74486176ns 1307192 1c00339e 00178793 addi x15, x15, 1 x15=00000080 x15:0000007f +74486196ns 1307193 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000080 x11:000000a8 +74486275ns 1307197 1c003396 00279713 slli x14, x15, 0x2 x14=00000200 x15:00000080 +74486295ns 1307198 1c00339a 00c70733 add x14, x14, x12 x14=1c009004 x14:00000200 x12:1c008e04 +74486315ns 1307199 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c009004 PA:1c009004 +74486335ns 1307200 1c00339e 00178793 addi x15, x15, 1 x15=00000081 x15:00000080 +74486354ns 1307201 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000081 x11:000000a8 +74486434ns 1307205 1c003396 00279713 slli x14, x15, 0x2 x14=00000204 x15:00000081 +74486453ns 1307206 1c00339a 00c70733 add x14, x14, x12 x14=1c009008 x14:00000204 x12:1c008e04 +74486473ns 1307207 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c009008 PA:1c009008 +74486493ns 1307208 1c00339e 00178793 addi x15, x15, 1 x15=00000082 x15:00000081 +74486513ns 1307209 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000082 x11:000000a8 +74486592ns 1307213 1c003396 00279713 slli x14, x15, 0x2 x14=00000208 x15:00000082 +74486612ns 1307214 1c00339a 00c70733 add x14, x14, x12 x14=1c00900c x14:00000208 x12:1c008e04 +74486631ns 1307215 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c00900c PA:1c00900c +74486651ns 1307216 1c00339e 00178793 addi x15, x15, 1 x15=00000083 x15:00000082 +74486671ns 1307217 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000083 x11:000000a8 +74486750ns 1307221 1c003396 00279713 slli x14, x15, 0x2 x14=0000020c x15:00000083 +74486770ns 1307222 1c00339a 00c70733 add x14, x14, x12 x14=1c009010 x14:0000020c x12:1c008e04 +74486790ns 1307223 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c009010 PA:1c009010 +74486810ns 1307224 1c00339e 00178793 addi x15, x15, 1 x15=00000084 x15:00000083 +74486829ns 1307225 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000084 x11:000000a8 +74486909ns 1307229 1c003396 00279713 slli x14, x15, 0x2 x14=00000210 x15:00000084 +74486928ns 1307230 1c00339a 00c70733 add x14, x14, x12 x14=1c009014 x14:00000210 x12:1c008e04 +74486948ns 1307231 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c009014 PA:1c009014 +74486968ns 1307232 1c00339e 00178793 addi x15, x15, 1 x15=00000085 x15:00000084 +74486988ns 1307233 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000085 x11:000000a8 +74487067ns 1307237 1c003396 00279713 slli x14, x15, 0x2 x14=00000214 x15:00000085 +74487087ns 1307238 1c00339a 00c70733 add x14, x14, x12 x14=1c009018 x14:00000214 x12:1c008e04 +74487106ns 1307239 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c009018 PA:1c009018 +74487126ns 1307240 1c00339e 00178793 addi x15, x15, 1 x15=00000086 x15:00000085 +74487146ns 1307241 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000086 x11:000000a8 +74487225ns 1307245 1c003396 00279713 slli x14, x15, 0x2 x14=00000218 x15:00000086 +74487245ns 1307246 1c00339a 00c70733 add x14, x14, x12 x14=1c00901c x14:00000218 x12:1c008e04 +74487265ns 1307247 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c00901c PA:1c00901c +74487285ns 1307248 1c00339e 00178793 addi x15, x15, 1 x15=00000087 x15:00000086 +74487304ns 1307249 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000087 x11:000000a8 +74487384ns 1307253 1c003396 00279713 slli x14, x15, 0x2 x14=0000021c x15:00000087 +74487403ns 1307254 1c00339a 00c70733 add x14, x14, x12 x14=1c009020 x14:0000021c x12:1c008e04 +74487423ns 1307255 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c009020 PA:1c009020 +74487443ns 1307256 1c00339e 00178793 addi x15, x15, 1 x15=00000088 x15:00000087 +74487463ns 1307257 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000088 x11:000000a8 +74487542ns 1307261 1c003396 00279713 slli x14, x15, 0x2 x14=00000220 x15:00000088 +74487562ns 1307262 1c00339a 00c70733 add x14, x14, x12 x14=1c009024 x14:00000220 x12:1c008e04 +74487581ns 1307263 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c009024 PA:1c009024 +74487601ns 1307264 1c00339e 00178793 addi x15, x15, 1 x15=00000089 x15:00000088 +74487621ns 1307265 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000089 x11:000000a8 +74487700ns 1307269 1c003396 00279713 slli x14, x15, 0x2 x14=00000224 x15:00000089 +74487720ns 1307270 1c00339a 00c70733 add x14, x14, x12 x14=1c009028 x14:00000224 x12:1c008e04 +74487740ns 1307271 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c009028 PA:1c009028 +74487760ns 1307272 1c00339e 00178793 addi x15, x15, 1 x15=0000008a x15:00000089 +74487779ns 1307273 1c0033a0 feb79be3 bne x15, x11, -10 x15:0000008a x11:000000a8 +74487859ns 1307277 1c003396 00279713 slli x14, x15, 0x2 x14=00000228 x15:0000008a +74487878ns 1307278 1c00339a 00c70733 add x14, x14, x12 x14=1c00902c x14:00000228 x12:1c008e04 +74487898ns 1307279 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c00902c PA:1c00902c +74487918ns 1307280 1c00339e 00178793 addi x15, x15, 1 x15=0000008b x15:0000008a +74487938ns 1307281 1c0033a0 feb79be3 bne x15, x11, -10 x15:0000008b x11:000000a8 +74488017ns 1307285 1c003396 00279713 slli x14, x15, 0x2 x14=0000022c x15:0000008b +74488037ns 1307286 1c00339a 00c70733 add x14, x14, x12 x14=1c009030 x14:0000022c x12:1c008e04 +74488056ns 1307287 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c009030 PA:1c009030 +74488076ns 1307288 1c00339e 00178793 addi x15, x15, 1 x15=0000008c x15:0000008b +74488096ns 1307289 1c0033a0 feb79be3 bne x15, x11, -10 x15:0000008c x11:000000a8 +74488175ns 1307293 1c003396 00279713 slli x14, x15, 0x2 x14=00000230 x15:0000008c +74488195ns 1307294 1c00339a 00c70733 add x14, x14, x12 x14=1c009034 x14:00000230 x12:1c008e04 +74488215ns 1307295 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c009034 PA:1c009034 +74488235ns 1307296 1c00339e 00178793 addi x15, x15, 1 x15=0000008d x15:0000008c +74488254ns 1307297 1c0033a0 feb79be3 bne x15, x11, -10 x15:0000008d x11:000000a8 +74488334ns 1307301 1c003396 00279713 slli x14, x15, 0x2 x14=00000234 x15:0000008d +74488353ns 1307302 1c00339a 00c70733 add x14, x14, x12 x14=1c009038 x14:00000234 x12:1c008e04 +74488373ns 1307303 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c009038 PA:1c009038 +74488393ns 1307304 1c00339e 00178793 addi x15, x15, 1 x15=0000008e x15:0000008d +74488413ns 1307305 1c0033a0 feb79be3 bne x15, x11, -10 x15:0000008e x11:000000a8 +74488492ns 1307309 1c003396 00279713 slli x14, x15, 0x2 x14=00000238 x15:0000008e +74488512ns 1307310 1c00339a 00c70733 add x14, x14, x12 x14=1c00903c x14:00000238 x12:1c008e04 +74488531ns 1307311 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c00903c PA:1c00903c +74488551ns 1307312 1c00339e 00178793 addi x15, x15, 1 x15=0000008f x15:0000008e +74488571ns 1307313 1c0033a0 feb79be3 bne x15, x11, -10 x15:0000008f x11:000000a8 +74488650ns 1307317 1c003396 00279713 slli x14, x15, 0x2 x14=0000023c x15:0000008f +74488670ns 1307318 1c00339a 00c70733 add x14, x14, x12 x14=1c009040 x14:0000023c x12:1c008e04 +74488690ns 1307319 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c009040 PA:1c009040 +74488710ns 1307320 1c00339e 00178793 addi x15, x15, 1 x15=00000090 x15:0000008f +74488729ns 1307321 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000090 x11:000000a8 +74488809ns 1307325 1c003396 00279713 slli x14, x15, 0x2 x14=00000240 x15:00000090 +74488828ns 1307326 1c00339a 00c70733 add x14, x14, x12 x14=1c009044 x14:00000240 x12:1c008e04 +74488848ns 1307327 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c009044 PA:1c009044 +74488868ns 1307328 1c00339e 00178793 addi x15, x15, 1 x15=00000091 x15:00000090 +74488888ns 1307329 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000091 x11:000000a8 +74488967ns 1307333 1c003396 00279713 slli x14, x15, 0x2 x14=00000244 x15:00000091 +74488987ns 1307334 1c00339a 00c70733 add x14, x14, x12 x14=1c009048 x14:00000244 x12:1c008e04 +74489006ns 1307335 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c009048 PA:1c009048 +74489026ns 1307336 1c00339e 00178793 addi x15, x15, 1 x15=00000092 x15:00000091 +74489046ns 1307337 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000092 x11:000000a8 +74489125ns 1307341 1c003396 00279713 slli x14, x15, 0x2 x14=00000248 x15:00000092 +74489145ns 1307342 1c00339a 00c70733 add x14, x14, x12 x14=1c00904c x14:00000248 x12:1c008e04 +74489165ns 1307343 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c00904c PA:1c00904c +74489185ns 1307344 1c00339e 00178793 addi x15, x15, 1 x15=00000093 x15:00000092 +74489204ns 1307345 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000093 x11:000000a8 +74489284ns 1307349 1c003396 00279713 slli x14, x15, 0x2 x14=0000024c x15:00000093 +74489303ns 1307350 1c00339a 00c70733 add x14, x14, x12 x14=1c009050 x14:0000024c x12:1c008e04 +74489323ns 1307351 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c009050 PA:1c009050 +74489343ns 1307352 1c00339e 00178793 addi x15, x15, 1 x15=00000094 x15:00000093 +74489363ns 1307353 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000094 x11:000000a8 +74489442ns 1307357 1c003396 00279713 slli x14, x15, 0x2 x14=00000250 x15:00000094 +74489462ns 1307358 1c00339a 00c70733 add x14, x14, x12 x14=1c009054 x14:00000250 x12:1c008e04 +74489481ns 1307359 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c009054 PA:1c009054 +74489501ns 1307360 1c00339e 00178793 addi x15, x15, 1 x15=00000095 x15:00000094 +74489521ns 1307361 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000095 x11:000000a8 +74489600ns 1307365 1c003396 00279713 slli x14, x15, 0x2 x14=00000254 x15:00000095 +74489620ns 1307366 1c00339a 00c70733 add x14, x14, x12 x14=1c009058 x14:00000254 x12:1c008e04 +74489640ns 1307367 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c009058 PA:1c009058 +74489660ns 1307368 1c00339e 00178793 addi x15, x15, 1 x15=00000096 x15:00000095 +74489679ns 1307369 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000096 x11:000000a8 +74489759ns 1307373 1c003396 00279713 slli x14, x15, 0x2 x14=00000258 x15:00000096 +74489778ns 1307374 1c00339a 00c70733 add x14, x14, x12 x14=1c00905c x14:00000258 x12:1c008e04 +74489798ns 1307375 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c00905c PA:1c00905c +74489818ns 1307376 1c00339e 00178793 addi x15, x15, 1 x15=00000097 x15:00000096 +74489838ns 1307377 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000097 x11:000000a8 +74489917ns 1307381 1c003396 00279713 slli x14, x15, 0x2 x14=0000025c x15:00000097 +74489937ns 1307382 1c00339a 00c70733 add x14, x14, x12 x14=1c009060 x14:0000025c x12:1c008e04 +74489956ns 1307383 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c009060 PA:1c009060 +74489976ns 1307384 1c00339e 00178793 addi x15, x15, 1 x15=00000098 x15:00000097 +74489996ns 1307385 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000098 x11:000000a8 +74490075ns 1307389 1c003396 00279713 slli x14, x15, 0x2 x14=00000260 x15:00000098 +74490095ns 1307390 1c00339a 00c70733 add x14, x14, x12 x14=1c009064 x14:00000260 x12:1c008e04 +74490115ns 1307391 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c009064 PA:1c009064 +74490135ns 1307392 1c00339e 00178793 addi x15, x15, 1 x15=00000099 x15:00000098 +74490154ns 1307393 1c0033a0 feb79be3 bne x15, x11, -10 x15:00000099 x11:000000a8 +74490234ns 1307397 1c003396 00279713 slli x14, x15, 0x2 x14=00000264 x15:00000099 +74490253ns 1307398 1c00339a 00c70733 add x14, x14, x12 x14=1c009068 x14:00000264 x12:1c008e04 +74490273ns 1307399 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c009068 PA:1c009068 +74490293ns 1307400 1c00339e 00178793 addi x15, x15, 1 x15=0000009a x15:00000099 +74490313ns 1307401 1c0033a0 feb79be3 bne x15, x11, -10 x15:0000009a x11:000000a8 +74490392ns 1307405 1c003396 00279713 slli x14, x15, 0x2 x14=00000268 x15:0000009a +74490412ns 1307406 1c00339a 00c70733 add x14, x14, x12 x14=1c00906c x14:00000268 x12:1c008e04 +74490431ns 1307407 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c00906c PA:1c00906c +74490451ns 1307408 1c00339e 00178793 addi x15, x15, 1 x15=0000009b x15:0000009a +74490471ns 1307409 1c0033a0 feb79be3 bne x15, x11, -10 x15:0000009b x11:000000a8 +74490550ns 1307413 1c003396 00279713 slli x14, x15, 0x2 x14=0000026c x15:0000009b +74490570ns 1307414 1c00339a 00c70733 add x14, x14, x12 x14=1c009070 x14:0000026c x12:1c008e04 +74490590ns 1307415 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c009070 PA:1c009070 +74490610ns 1307416 1c00339e 00178793 addi x15, x15, 1 x15=0000009c x15:0000009b +74490629ns 1307417 1c0033a0 feb79be3 bne x15, x11, -10 x15:0000009c x11:000000a8 +74490709ns 1307421 1c003396 00279713 slli x14, x15, 0x2 x14=00000270 x15:0000009c +74490728ns 1307422 1c00339a 00c70733 add x14, x14, x12 x14=1c009074 x14:00000270 x12:1c008e04 +74490748ns 1307423 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c009074 PA:1c009074 +74490768ns 1307424 1c00339e 00178793 addi x15, x15, 1 x15=0000009d x15:0000009c +74490788ns 1307425 1c0033a0 feb79be3 bne x15, x11, -10 x15:0000009d x11:000000a8 +74490867ns 1307429 1c003396 00279713 slli x14, x15, 0x2 x14=00000274 x15:0000009d +74490887ns 1307430 1c00339a 00c70733 add x14, x14, x12 x14=1c009078 x14:00000274 x12:1c008e04 +74490907ns 1307431 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c009078 PA:1c009078 +74490926ns 1307432 1c00339e 00178793 addi x15, x15, 1 x15=0000009e x15:0000009d +74490946ns 1307433 1c0033a0 feb79be3 bne x15, x11, -10 x15:0000009e x11:000000a8 +74491025ns 1307437 1c003396 00279713 slli x14, x15, 0x2 x14=00000278 x15:0000009e +74491045ns 1307438 1c00339a 00c70733 add x14, x14, x12 x14=1c00907c x14:00000278 x12:1c008e04 +74491065ns 1307439 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c00907c PA:1c00907c +74491085ns 1307440 1c00339e 00178793 addi x15, x15, 1 x15=0000009f x15:0000009e +74491104ns 1307441 1c0033a0 feb79be3 bne x15, x11, -10 x15:0000009f x11:000000a8 +74491184ns 1307445 1c003396 00279713 slli x14, x15, 0x2 x14=0000027c x15:0000009f +74491203ns 1307446 1c00339a 00c70733 add x14, x14, x12 x14=1c009080 x14:0000027c x12:1c008e04 +74491223ns 1307447 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c009080 PA:1c009080 +74491243ns 1307448 1c00339e 00178793 addi x15, x15, 1 x15=000000a0 x15:0000009f +74491263ns 1307449 1c0033a0 feb79be3 bne x15, x11, -10 x15:000000a0 x11:000000a8 +74491342ns 1307453 1c003396 00279713 slli x14, x15, 0x2 x14=00000280 x15:000000a0 +74491362ns 1307454 1c00339a 00c70733 add x14, x14, x12 x14=1c009084 x14:00000280 x12:1c008e04 +74491382ns 1307455 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c009084 PA:1c009084 +74491401ns 1307456 1c00339e 00178793 addi x15, x15, 1 x15=000000a1 x15:000000a0 +74491421ns 1307457 1c0033a0 feb79be3 bne x15, x11, -10 x15:000000a1 x11:000000a8 +74491500ns 1307461 1c003396 00279713 slli x14, x15, 0x2 x14=00000284 x15:000000a1 +74491520ns 1307462 1c00339a 00c70733 add x14, x14, x12 x14=1c009088 x14:00000284 x12:1c008e04 +74491540ns 1307463 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c009088 PA:1c009088 +74491560ns 1307464 1c00339e 00178793 addi x15, x15, 1 x15=000000a2 x15:000000a1 +74491579ns 1307465 1c0033a0 feb79be3 bne x15, x11, -10 x15:000000a2 x11:000000a8 +74491659ns 1307469 1c003396 00279713 slli x14, x15, 0x2 x14=00000288 x15:000000a2 +74491678ns 1307470 1c00339a 00c70733 add x14, x14, x12 x14=1c00908c x14:00000288 x12:1c008e04 +74491698ns 1307471 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c00908c PA:1c00908c +74491718ns 1307472 1c00339e 00178793 addi x15, x15, 1 x15=000000a3 x15:000000a2 +74491738ns 1307473 1c0033a0 feb79be3 bne x15, x11, -10 x15:000000a3 x11:000000a8 +74491817ns 1307477 1c003396 00279713 slli x14, x15, 0x2 x14=0000028c x15:000000a3 +74491837ns 1307478 1c00339a 00c70733 add x14, x14, x12 x14=1c009090 x14:0000028c x12:1c008e04 +74491857ns 1307479 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c009090 PA:1c009090 +74491876ns 1307480 1c00339e 00178793 addi x15, x15, 1 x15=000000a4 x15:000000a3 +74491896ns 1307481 1c0033a0 feb79be3 bne x15, x11, -10 x15:000000a4 x11:000000a8 +74491975ns 1307485 1c003396 00279713 slli x14, x15, 0x2 x14=00000290 x15:000000a4 +74491995ns 1307486 1c00339a 00c70733 add x14, x14, x12 x14=1c009094 x14:00000290 x12:1c008e04 +74492015ns 1307487 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c009094 PA:1c009094 +74492035ns 1307488 1c00339e 00178793 addi x15, x15, 1 x15=000000a5 x15:000000a4 +74492054ns 1307489 1c0033a0 feb79be3 bne x15, x11, -10 x15:000000a5 x11:000000a8 +74492134ns 1307493 1c003396 00279713 slli x14, x15, 0x2 x14=00000294 x15:000000a5 +74492153ns 1307494 1c00339a 00c70733 add x14, x14, x12 x14=1c009098 x14:00000294 x12:1c008e04 +74492173ns 1307495 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c009098 PA:1c009098 +74492193ns 1307496 1c00339e 00178793 addi x15, x15, 1 x15=000000a6 x15:000000a5 +74492213ns 1307497 1c0033a0 feb79be3 bne x15, x11, -10 x15:000000a6 x11:000000a8 +74492292ns 1307501 1c003396 00279713 slli x14, x15, 0x2 x14=00000298 x15:000000a6 +74492312ns 1307502 1c00339a 00c70733 add x14, x14, x12 x14=1c00909c x14:00000298 x12:1c008e04 +74492332ns 1307503 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c00909c PA:1c00909c +74492351ns 1307504 1c00339e 00178793 addi x15, x15, 1 x15=000000a7 x15:000000a6 +74492371ns 1307505 1c0033a0 feb79be3 bne x15, x11, -10 x15:000000a7 x11:000000a8 +74492450ns 1307509 1c003396 00279713 slli x14, x15, 0x2 x14=0000029c x15:000000a7 +74492470ns 1307510 1c00339a 00c70733 add x14, x14, x12 x14=1c0090a0 x14:0000029c x12:1c008e04 +74492490ns 1307511 1c00339c 00d72023 sw x13, 0(x14) x13:1c003382 x14:1c0090a0 PA:1c0090a0 +74492510ns 1307512 1c00339e 00178793 addi x15, x15, 1 x15=000000a8 x15:000000a7 +74492529ns 1307513 1c0033a0 feb79be3 bne x15, x11, -10 x15:000000a8 x11:000000a8 +74492549ns 1307514 1c0033a4 00100793 addi x15, x0, 1 x15=00000001 +74492569ns 1307515 1c0033a6 00a79533 sll x10, x15, x10 x10=04000000 x15:00000001 x10:0000001a +74492589ns 1307516 1c0033aa 1a10a7b7 lui x15, 0x1a10a000 x15=1a10a000 +74492609ns 1307517 1c0033ae 80478793 addi x15, x15, -2044 x15=1a109804 x15:1a10a000 +74492628ns 1307518 1c0033b2 00a7a023 sw x10, 0(x15) x10:04000000 x15:1a109804 PA:1a109804 +74492648ns 1307519 1c0033b4 00008067 jalr x0, x1, 0 x1:1c002acc +74492727ns 1307523 1c002acc 00c12083 lw x1, 12(x2) x1=1c003766 x2:1c019980 PA:1c01998c +74492747ns 1307524 1c002ace 01010113 addi x2, x2, 16 x2=1c019990 x2:1c019980 +74492767ns 1307525 1c002ad0 0670006f jal x0, 2150 +74492826ns 1307528 1c003336 30046573 csrrsi x10, 0x00000008, 0x300 x10=00001800 +74492905ns 1307532 1c00333a 00008067 jalr x0, x1, 0 x1:1c003766 +74492965ns 1307535 1c003766 1c009537 lui x10, 0x1c009000 x10=1c009000 +74492985ns 1307536 1c00376a 96450513 addi x10, x10, -1692 x10=1c008964 x10:1c009000 +74493004ns 1307537 1c00376e 764000ef jal x1, 1892 x1=1c003772 +74493064ns 1307540 1c003ed2 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +74493084ns 1307541 1c003ed6 00a005b3 add x11, x0, x10 x11=1c008964 x10:1c008964 +74493103ns 1307542 1c003ed8 c447a503 lw x10, -956(x15) x10=1c008bdc x15:1c009000 PA:1c008c44 +74493123ns 1307543 1c003edc f19ff06f jal x0, -232 +74493163ns 1307545 1c003df4 fe010113 addi x2, x2, -32 x2=1c019970 x2:1c019990 +74493183ns 1307546 1c003df6 00912a23 sw x9, 20(x2) x9:xxxxxxxx x2:1c019970 PA:1c019984 +74493202ns 1307547 1c003df8 01212823 sw x18, 16(x2) x18:xxxxxxxx x2:1c019970 PA:1c019980 +74493222ns 1307548 1c003dfa 00112e23 sw x1, 28(x2) x1:1c003772 x2:1c019970 PA:1c01998c +74493242ns 1307549 1c003dfc 00812c23 sw x8, 24(x2) x8:xxxxxxxx x2:1c019970 PA:1c019988 +74493262ns 1307550 1c003dfe 01312623 sw x19, 12(x2) x19:xxxxxxxx x2:1c019970 PA:1c01997c +74493282ns 1307551 1c003e00 01412423 sw x20, 8(x2) x20:xxxxxxxx x2:1c019970 PA:1c019978 +74493301ns 1307552 1c003e02 00a004b3 add x9, x0, x10 x9=1c008bdc x10:1c008bdc +74493321ns 1307553 1c003e04 00b00933 add x18, x0, x11 x18=1c008964 x11:1c008964 +74493341ns 1307554 1c003e06 00050563 beq x10, x0, 10 x10:1c008bdc +74493361ns 1307555 1c003e08 01852783 lw x15, 24(x10) x15=00000000 x10:1c008bdc PA:1c008bf4 +74493400ns 1307557 1c003e0a 00079363 bne x15, x0, 6 x15:00000000 +74493420ns 1307558 1c003e0c 019000ef jal x1, 2072 x1=1c003e10 +74493460ns 1307560 1c004624 01852783 lw x15, 24(x10) x15=00000000 x10:1c008bdc PA:1c008bf4 +74493499ns 1307562 1c004626 06079663 bne x15, x0, 108 x15:00000000 +74493519ns 1307563 1c004628 ff010113 addi x2, x2, -16 x2=1c019960 x2:1c019970 +74493539ns 1307564 1c00462a 1c0047b7 lui x15, 0x1c004000 x15=1c004000 +74493559ns 1307565 1c00462e 00812423 sw x8, 8(x2) x8:xxxxxxxx x2:1c019960 PA:1c019968 +74493578ns 1307566 1c004630 00112623 sw x1, 12(x2) x1:1c003e10 x2:1c019960 PA:1c01996c +74493598ns 1307567 1c004632 5d278793 addi x15, x15, 1490 x15=1c0045d2 x15:1c004000 +74493618ns 1307568 1c004636 02f52423 sw x15, 40(x10) x15:1c0045d2 x10:1c008bdc PA:1c008c04 +74493638ns 1307569 1c004638 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +74493658ns 1307570 1c00463c bd87a783 lw x15, -1064(x15) x15=1c008bdc x15:1c009000 PA:1c008bd8 +74493677ns 1307571 1c004640 04052423 sw x0, 72(x10) x10:1c008bdc PA:1c008c24 +74493697ns 1307572 1c004644 04052623 sw x0, 76(x10) x10:1c008bdc PA:1c008c28 +74493717ns 1307573 1c004648 04052823 sw x0, 80(x10) x10:1c008bdc PA:1c008c2c +74493737ns 1307574 1c00464c 00a00433 add x8, x0, x10 x8=1c008bdc x10:1c008bdc +74493757ns 1307575 1c00464e 00f51463 bne x10, x15, 8 x10:1c008bdc x15:1c008bdc +74493776ns 1307576 1c004652 00100793 addi x15, x0, 1 x15=00000001 +74493796ns 1307577 1c004654 00f52c23 sw x15, 24(x10) x15:00000001 x10:1c008bdc PA:1c008bf4 +74493816ns 1307578 1c004656 00800533 add x10, x0, x8 x10=1c008bdc x8:1c008bdc +74493836ns 1307579 1c004658 03c000ef jal x1, 60 x1=1c00465a +74493875ns 1307581 1c004694 ff010113 addi x2, x2, -16 x2=1c019950 x2:1c019960 +74493895ns 1307582 1c004696 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +74493915ns 1307583 1c00469a 00912223 sw x9, 4(x2) x9:1c008bdc x2:1c019950 PA:1c019954 +74493935ns 1307584 1c00469c bd87a483 lw x9, -1064(x15) x9=1c008bdc x15:1c009000 PA:1c008bd8 +74493954ns 1307585 1c0046a0 01212023 sw x18, 0(x2) x18:1c008964 x2:1c019950 PA:1c019950 +74493974ns 1307586 1c0046a2 00112623 sw x1, 12(x2) x1:1c00465a x2:1c019950 PA:1c01995c +74493994ns 1307587 1c0046a4 0184a783 lw x15, 24(x9) x15=00000001 x9:1c008bdc PA:1c008bf4 +74494014ns 1307588 1c0046a6 00812423 sw x8, 8(x2) x8:1c008bdc x2:1c019950 PA:1c019958 +74494034ns 1307589 1c0046a8 00a00933 add x18, x0, x10 x18=1c008bdc x10:1c008bdc +74494053ns 1307590 1c0046aa 00079463 bne x15, x0, 8 x15:00000001 +74494133ns 1307594 1c0046b2 04848493 addi x9, x9, 72 x9=1c008c24 x9:1c008bdc +74494152ns 1307595 1c0046b6 0084a403 lw x8, 8(x9) x8=00000000 x9:1c008c24 PA:1c008c2c +74494172ns 1307596 1c0046b8 0044a783 lw x15, 4(x9) x15=00000000 x9:1c008c24 PA:1c008c28 +74494212ns 1307598 1c0046ba fff78793 addi x15, x15, -1 x15=ffffffff x15:00000000 +74494232ns 1307599 1c0046bc 0007d663 bge x15, x0, 12 x15:ffffffff +74494251ns 1307600 1c0046c0 0004a783 lw x15, 0(x9) x15=00000000 x9:1c008c24 PA:1c008c24 +74494291ns 1307602 1c0046c2 04078f63 beq x15, x0, 94 x15:00000000 +74494350ns 1307605 1c004720 00400593 addi x11, x0, 4 x11=00000004 +74494370ns 1307606 1c004722 01200533 add x10, x0, x18 x10=1c008bdc x18:1c008bdc +74494390ns 1307607 1c004724 eb9ff0ef jal x1, -328 x1=1c004728 +74494429ns 1307609 1c0045dc ff010113 addi x2, x2, -16 x2=1c019940 x2:1c019950 +74494449ns 1307610 1c0045de 00912223 sw x9, 4(x2) x9:1c008c24 x2:1c019940 PA:1c019944 +74494469ns 1307611 1c0045e0 06800613 addi x12, x0, 104 x12=00000068 +74494489ns 1307612 1c0045e4 fff58493 addi x9, x11, -1 x9=00000003 x11:00000004 +74494509ns 1307613 1c0045e8 02c484b3 mul x9, x9, x12 x9=00000138 x9:00000003 x12:00000068 +74494528ns 1307614 1c0045ec 01212023 sw x18, 0(x2) x18:1c008bdc x2:1c019940 PA:1c019940 +74494548ns 1307615 1c0045ee 00b00933 add x18, x0, x11 x18=00000004 x11:00000004 +74494568ns 1307616 1c0045f0 00812423 sw x8, 8(x2) x8:00000000 x2:1c019940 PA:1c019948 +74494588ns 1307617 1c0045f2 00112623 sw x1, 12(x2) x1:1c004728 x2:1c019940 PA:1c01994c +74494608ns 1307618 1c0045f4 07448593 addi x11, x9, 116 x11=000001ac x9:00000138 +74494627ns 1307619 1c0045f8 bd0ff0ef jal x1, -3120 x1=1c0045fc +74494667ns 1307621 1c0039c8 fe010113 addi x2, x2, -32 x2=1c019920 x2:1c019940 +74494687ns 1307622 1c0039ca 00912a23 sw x9, 20(x2) x9:00000138 x2:1c019920 PA:1c019934 +74494707ns 1307623 1c0039cc 00358493 addi x9, x11, 3 x9=000001af x11:000001ac +74494726ns 1307624 1c0039d0 ffc4f493 andi x9, x9, -4 x9=000001ac x9:000001af +74494746ns 1307625 1c0039d2 01212823 sw x18, 16(x2) x18:00000004 x2:1c019920 PA:1c019930 +74494766ns 1307626 1c0039d4 00112e23 sw x1, 28(x2) x1:1c0045fc x2:1c019920 PA:1c01993c +74494786ns 1307627 1c0039d6 00812c23 sw x8, 24(x2) x8:00000000 x2:1c019920 PA:1c019938 +74494806ns 1307628 1c0039d8 01312623 sw x19, 12(x2) x19:xxxxxxxx x2:1c019920 PA:1c01992c +74494825ns 1307629 1c0039da 00848493 addi x9, x9, 8 x9=000001b4 x9:000001ac +74494845ns 1307630 1c0039dc 00c00793 addi x15, x0, 12 x15=0000000c +74494865ns 1307631 1c0039de 00a00933 add x18, x0, x10 x18=1c008bdc x10:1c008bdc +74494885ns 1307632 1c0039e0 04f4f363 bgeu x9, x15, 70 x9:000001b4 x15:0000000c +74494964ns 1307636 1c003a26 fc04d0e3 bge x9, x0, -64 x9:000001b4 +74495043ns 1307640 1c0039e6 04b4e263 bltu x9, x11, 68 x9:000001b4 x11:000001ac +74495063ns 1307641 1c0039ea 01200533 add x10, x0, x18 x10=1c008bdc x18:1c008bdc +74495083ns 1307642 1c0039ec 87aff0ef jal x1, -3974 x1=1c0039f0 +74495142ns 1307645 1c002a66 fb1fe06f jal x0, -4176 +74495201ns 1307648 1c001a16 d6818793 addi x15, x3, -664 x15=1c009144 x3:1c0093dc +74495221ns 1307649 1c001a1a 0007a703 lw x14, 0(x15) x14=00000000 x15:1c009144 PA:1c009144 +74495261ns 1307651 1c001a1c 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +74495281ns 1307652 1c001a1e 00e7a023 sw x14, 0(x15) x14:00000001 x15:1c009144 PA:1c009144 +74495300ns 1307653 1c001a20 00008067 jalr x0, x1, 0 x1:1c0039f0 +74495340ns 1307655 1c0039f0 db81a703 lw x14, -584(x3) x14=00000000 x3:1c0093dc PA:1c009194 +74495360ns 1307656 1c0039f4 db818693 addi x13, x3, -584 x13=1c009194 x3:1c0093dc +74495379ns 1307657 1c0039f8 00e00433 add x8, x0, x14 x8=00000000 x14:00000000 +74495399ns 1307658 1c0039fa 04041363 bne x8, x0, 70 x8:00000000 +74495419ns 1307659 1c0039fc dbc18413 addi x8, x3, -580 x8=1c009198 x3:1c0093dc +74495439ns 1307660 1c003a00 00042783 lw x15, 0(x8) x15=00000000 x8:1c009198 PA:1c009198 +74495478ns 1307662 1c003a02 00079563 bne x15, x0, 10 x15:00000000 +74495498ns 1307663 1c003a04 00000593 addi x11, x0, 0 x11=00000000 +74495518ns 1307664 1c003a06 01200533 add x10, x0, x18 x10=1c008bdc x18:1c008bdc +74495538ns 1307665 1c003a08 5d4000ef jal x1, 1492 x1=1c003a0a +74495577ns 1307667 1c003fdc ff010113 addi x2, x2, -16 x2=1c019910 x2:1c019920 +74495597ns 1307668 1c003fde 00812423 sw x8, 8(x2) x8:1c009198 x2:1c019910 PA:1c019918 +74495617ns 1307669 1c003fe0 00912223 sw x9, 4(x2) x9:000001b4 x2:1c019910 PA:1c019914 +74495637ns 1307670 1c003fe2 00a00433 add x8, x0, x10 x8=1c008bdc x10:1c008bdc +74495657ns 1307671 1c003fe4 00b00533 add x10, x0, x11 x10=00000000 x11:00000000 +74495676ns 1307672 1c003fe6 00112623 sw x1, 12(x2) x1:1c003a0a x2:1c019910 PA:1c01991c +74495696ns 1307673 1c003fe8 dc01a023 sw x0, -576(x3) x3:1c0093dc PA:1c00919c +74495716ns 1307674 1c003fec a53fe0ef jal x1, -5550 x1=1c003ff0 +74495775ns 1307677 1c002a3e 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +74495795ns 1307678 1c002a42 c3c78793 addi x15, x15, -964 x15=1c008c3c x15:1c009000 +74495815ns 1307679 1c002a46 00a00733 add x14, x0, x10 x14=00000000 x10:00000000 +74495835ns 1307680 1c002a48 0007a503 lw x10, 0(x15) x10=1c0091b0 x15:1c008c3c PA:1c008c3c +74495855ns 1307681 1c002a4a 1c0196b7 lui x13, 0x1c019000 x13=1c019000 +74495874ns 1307682 1c002a4e 1b068693 addi x13, x13, 432 x13=1c0191b0 x13:1c019000 +74495894ns 1307683 1c002a52 00a70733 add x14, x14, x10 x14=1c0091b0 x14:00000000 x10:1c0091b0 +74495914ns 1307684 1c002a54 00d76763 bltu x14, x13, 14 x14:1c0091b0 x13:1c0191b0 +74495973ns 1307687 1c002a62 00e7a023 sw x14, 0(x15) x14:1c0091b0 x15:1c008c3c PA:1c008c3c +74495993ns 1307688 1c002a64 00008067 jalr x0, x1, 0 x1:1c003ff0 +74496033ns 1307690 1c003ff0 fff00793 addi x15, x0, -1 x15=ffffffff +74496052ns 1307691 1c003ff2 00f51663 bne x10, x15, 12 x10:1c0091b0 x15:ffffffff +74496112ns 1307694 1c003ffe 00c12083 lw x1, 12(x2) x1=1c003a0a x2:1c019910 PA:1c01991c +74496132ns 1307695 1c004000 00812403 lw x8, 8(x2) x8=1c009198 x2:1c019910 PA:1c019918 +74496151ns 1307696 1c004002 00412483 lw x9, 4(x2) x9=000001b4 x2:1c019910 PA:1c019914 +74496171ns 1307697 1c004004 01010113 addi x2, x2, 16 x2=1c019920 x2:1c019910 +74496191ns 1307698 1c004006 00008067 jalr x0, x1, 0 x1:1c003a0a +74496231ns 1307700 1c003a0a 00a42023 sw x10, 0(x8) x10:1c0091b0 x8:1c009198 PA:1c009198 +74496250ns 1307701 1c003a0c 009005b3 add x11, x0, x9 x11=000001b4 x9:000001b4 +74496270ns 1307702 1c003a0e 01200533 add x10, x0, x18 x10=1c008bdc x18:1c008bdc +74496290ns 1307703 1c003a10 5cc000ef jal x1, 1484 x1=1c003a12 +74496330ns 1307705 1c003fdc ff010113 addi x2, x2, -16 x2=1c019910 x2:1c019920 +74496349ns 1307706 1c003fde 00812423 sw x8, 8(x2) x8:1c009198 x2:1c019910 PA:1c019918 +74496369ns 1307707 1c003fe0 00912223 sw x9, 4(x2) x9:000001b4 x2:1c019910 PA:1c019914 +74496389ns 1307708 1c003fe2 00a00433 add x8, x0, x10 x8=1c008bdc x10:1c008bdc +74496409ns 1307709 1c003fe4 00b00533 add x10, x0, x11 x10=000001b4 x11:000001b4 +74496428ns 1307710 1c003fe6 00112623 sw x1, 12(x2) x1:1c003a12 x2:1c019910 PA:1c01991c +74496448ns 1307711 1c003fe8 dc01a023 sw x0, -576(x3) x3:1c0093dc PA:1c00919c +74496468ns 1307712 1c003fec a53fe0ef jal x1, -5550 x1=1c003ff0 +74496527ns 1307715 1c002a3e 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +74496547ns 1307716 1c002a42 c3c78793 addi x15, x15, -964 x15=1c008c3c x15:1c009000 +74496567ns 1307717 1c002a46 00a00733 add x14, x0, x10 x14=000001b4 x10:000001b4 +74496587ns 1307718 1c002a48 0007a503 lw x10, 0(x15) x10=1c0091b0 x15:1c008c3c PA:1c008c3c +74496607ns 1307719 1c002a4a 1c0196b7 lui x13, 0x1c019000 x13=1c019000 +74496626ns 1307720 1c002a4e 1b068693 addi x13, x13, 432 x13=1c0191b0 x13:1c019000 +74496646ns 1307721 1c002a52 00a70733 add x14, x14, x10 x14=1c009364 x14:000001b4 x10:1c0091b0 +74496666ns 1307722 1c002a54 00d76763 bltu x14, x13, 14 x14:1c009364 x13:1c0191b0 +74496725ns 1307725 1c002a62 00e7a023 sw x14, 0(x15) x14:1c009364 x15:1c008c3c PA:1c008c3c +74496745ns 1307726 1c002a64 00008067 jalr x0, x1, 0 x1:1c003ff0 +74496785ns 1307728 1c003ff0 fff00793 addi x15, x0, -1 x15=ffffffff +74496805ns 1307729 1c003ff2 00f51663 bne x10, x15, 12 x10:1c0091b0 x15:ffffffff +74496864ns 1307732 1c003ffe 00c12083 lw x1, 12(x2) x1=1c003a12 x2:1c019910 PA:1c01991c +74496884ns 1307733 1c004000 00812403 lw x8, 8(x2) x8=1c009198 x2:1c019910 PA:1c019918 +74496903ns 1307734 1c004002 00412483 lw x9, 4(x2) x9=000001b4 x2:1c019910 PA:1c019914 +74496923ns 1307735 1c004004 01010113 addi x2, x2, 16 x2=1c019920 x2:1c019910 +74496943ns 1307736 1c004006 00008067 jalr x0, x1, 0 x1:1c003a12 +74496983ns 1307738 1c003a12 fff00993 addi x19, x0, -1 x19=ffffffff +74497002ns 1307739 1c003a14 07351a63 bne x10, x19, 116 x10:1c0091b0 x19:ffffffff +74497062ns 1307742 1c003a88 00350413 addi x8, x10, 3 x8=1c0091b3 x10:1c0091b0 +74497082ns 1307743 1c003a8c ffc47413 andi x8, x8, -4 x8=1c0091b0 x8:1c0091b3 +74497101ns 1307744 1c003a8e fc8502e3 beq x10, x8, -60 x10:1c0091b0 x8:1c0091b0 +74497161ns 1307747 1c003a52 00942023 sw x9, 0(x8) x9:000001b4 x8:1c0091b0 PA:1c0091b0 +74497181ns 1307748 1c003a54 00a0006f jal x0, 10 +74497220ns 1307750 1c003a5e 01200533 add x10, x0, x18 x10=1c008bdc x18:1c008bdc +74497240ns 1307751 1c003a60 80aff0ef jal x1, -4086 x1=1c003a64 +74497299ns 1307754 1c002a6a 8e3ff06f jal x0, -1822 +74497339ns 1307756 1c00234c fc010113 addi x2, x2, -64 x2=1c0198e0 x2:1c019920 +74497359ns 1307757 1c00234e 02812c23 sw x8, 56(x2) x8:1c0091b0 x2:1c0198e0 PA:1c019918 +74497378ns 1307758 1c002350 d6818413 addi x8, x3, -664 x8=1c009144 x3:1c0093dc +74497398ns 1307759 1c002354 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +74497418ns 1307760 1c002356 02112e23 sw x1, 60(x2) x1:1c003a64 x2:1c0198e0 PA:1c01991c +74497438ns 1307761 1c002358 02912a23 sw x9, 52(x2) x9:000001b4 x2:1c0198e0 PA:1c019914 +74497458ns 1307762 1c00235a 03212823 sw x18, 48(x2) x18:1c008bdc x2:1c0198e0 PA:1c019910 +74497477ns 1307763 1c00235c 03312623 sw x19, 44(x2) x19:ffffffff x2:1c0198e0 PA:1c01990c +74497497ns 1307764 1c00235e 03412423 sw x20, 40(x2) x20:xxxxxxxx x2:1c0198e0 PA:1c019908 +74497517ns 1307765 1c002360 03512223 sw x21, 36(x2) x21:xxxxxxxx x2:1c0198e0 PA:1c019904 +74497537ns 1307766 1c002362 03612023 sw x22, 32(x2) x22:xxxxxxxx x2:1c0198e0 PA:1c019900 +74497557ns 1307767 1c002364 01712e23 sw x23, 28(x2) x23:xxxxxxxx x2:1c0198e0 PA:1c0198fc +74497576ns 1307768 1c002366 02079263 bne x15, x0, 36 x15:00000001 +74497656ns 1307772 1c00238a c83ff0ef jal x1, -894 x1=1c00238e +74497695ns 1307774 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +74497774ns 1307778 1c002010 d841a783 lw x15, -636(x3) x15=00000000 x3:1c0093dc PA:1c009160 +74497814ns 1307780 1c002014 00078863 beq x15, x0, 16 x15:00000000 +74497873ns 1307783 1c002024 00008067 jalr x0, x1, 0 x1:1c00238e +74497913ns 1307785 1c00238e 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +74497952ns 1307787 1c002390 fff78793 addi x15, x15, -1 x15=00000000 x15:00000001 +74497972ns 1307788 1c002392 00f42023 sw x15, 0(x8) x15:00000000 x8:1c009144 PA:1c009144 +74497992ns 1307789 1c002394 00042783 lw x15, 0(x8) x15=00000000 x8:1c009144 PA:1c009144 +74498032ns 1307791 1c002396 02078163 beq x15, x0, 34 x15:00000000 +74498091ns 1307794 1c0023b8 d601a783 lw x15, -672(x3) x15=00000000 x3:1c0093dc PA:1c00913c +74498131ns 1307796 1c0023bc fc078ee3 beq x15, x0, -36 x15:00000000 +74498190ns 1307799 1c002398 00000513 addi x10, x0, 0 x10=00000000 +74498210ns 1307800 1c00239a 00a12623 sw x10, 12(x2) x10:00000000 x2:1c0198e0 PA:1c0198ec +74498230ns 1307801 1c00239c c8bff0ef jal x1, -886 x1=1c0023a0 +74498289ns 1307804 1c002026 d841a783 lw x15, -636(x3) x15=00000000 x3:1c0093dc PA:1c009160 +74498329ns 1307806 1c00202a 00078f63 beq x15, x0, 30 x15:00000000 +74498388ns 1307809 1c002048 00008067 jalr x0, x1, 0 x1:1c0023a0 +74498427ns 1307811 1c0023a0 03c12083 lw x1, 60(x2) x1=1c003a64 x2:1c0198e0 PA:1c01991c +74498447ns 1307812 1c0023a2 03812403 lw x8, 56(x2) x8=1c0091b0 x2:1c0198e0 PA:1c019918 +74498467ns 1307813 1c0023a4 00c12503 lw x10, 12(x2) x10=00000000 x2:1c0198e0 PA:1c0198ec +74498487ns 1307814 1c0023a6 03412483 lw x9, 52(x2) x9=000001b4 x2:1c0198e0 PA:1c019914 +74498507ns 1307815 1c0023a8 03012903 lw x18, 48(x2) x18=1c008bdc x2:1c0198e0 PA:1c019910 +74498526ns 1307816 1c0023aa 02c12983 lw x19, 44(x2) x19=ffffffff x2:1c0198e0 PA:1c01990c +74498546ns 1307817 1c0023ac 02812a03 lw x20, 40(x2) x20=xxxxxxxx x2:1c0198e0 PA:1c019908 +74498566ns 1307818 1c0023ae 02412a83 lw x21, 36(x2) x21=xxxxxxxx x2:1c0198e0 PA:1c019904 +74498586ns 1307819 1c0023b0 02012b03 lw x22, 32(x2) x22=xxxxxxxx x2:1c0198e0 PA:1c019900 +74498606ns 1307820 1c0023b2 01c12b83 lw x23, 28(x2) x23=xxxxxxxx x2:1c0198e0 PA:1c0198fc +74498625ns 1307821 1c0023b4 04010113 addi x2, x2, 64 x2=1c019920 x2:1c0198e0 +74498645ns 1307822 1c0023b6 00008067 jalr x0, x1, 0 x1:1c003a64 +74498685ns 1307824 1c003a64 00b40513 addi x10, x8, 11 x10=1c0091bb x8:1c0091b0 +74498705ns 1307825 1c003a68 00440793 addi x15, x8, 4 x15=1c0091b4 x8:1c0091b0 +74498724ns 1307826 1c003a6c ff857513 andi x10, x10, -8 x10=1c0091b8 x10:1c0091bb +74498744ns 1307827 1c003a6e 40f50733 sub x14, x10, x15 x14=00000004 x10:1c0091b8 x15:1c0091b4 +74498764ns 1307828 1c003a72 fcf500e3 beq x10, x15, -64 x10:1c0091b8 x15:1c0091b4 +74498784ns 1307829 1c003a76 00e40433 add x8, x8, x14 x8=1c0091b4 x8:1c0091b0 x14:00000004 +74498804ns 1307830 1c003a78 40a787b3 sub x15, x15, x10 x15=fffffffc x15:1c0091b4 x10:1c0091b8 +74498823ns 1307831 1c003a7a 00f42023 sw x15, 0(x8) x15:fffffffc x8:1c0091b4 PA:1c0091b4 +74498843ns 1307832 1c003a7c fb7ff06f jal x0, -74 +74498883ns 1307834 1c003a32 01c12083 lw x1, 28(x2) x1=1c0045fc x2:1c019920 PA:1c01993c +74498902ns 1307835 1c003a34 01812403 lw x8, 24(x2) x8=00000000 x2:1c019920 PA:1c019938 +74498922ns 1307836 1c003a36 01412483 lw x9, 20(x2) x9=00000138 x2:1c019920 PA:1c019934 +74498942ns 1307837 1c003a38 01012903 lw x18, 16(x2) x18=00000004 x2:1c019920 PA:1c019930 +74498962ns 1307838 1c003a3a 00c12983 lw x19, 12(x2) x19=xxxxxxxx x2:1c019920 PA:1c01992c +74498982ns 1307839 1c003a3c 02010113 addi x2, x2, 32 x2=1c019940 x2:1c019920 +74499001ns 1307840 1c003a3e 00008067 jalr x0, x1, 0 x1:1c0045fc +74499041ns 1307842 1c0045fc 00a00433 add x8, x0, x10 x8=1c0091b8 x10:1c0091b8 +74499061ns 1307843 1c0045fe 00050c63 beq x10, x0, 24 x10:1c0091b8 +74499081ns 1307844 1c004600 00052023 sw x0, 0(x10) x10:1c0091b8 PA:1c0091b8 +74499100ns 1307845 1c004604 01252223 sw x18, 4(x10) x18:00000004 x10:1c0091b8 PA:1c0091bc +74499120ns 1307846 1c004608 00c50513 addi x10, x10, 12 x10=1c0091c4 x10:1c0091b8 +74499140ns 1307847 1c00460a 00a42423 sw x10, 8(x8) x10:1c0091c4 x8:1c0091b8 PA:1c0091c0 +74499160ns 1307848 1c00460c 06848613 addi x12, x9, 104 x12=000001a0 x9:00000138 +74499180ns 1307849 1c004610 00000593 addi x11, x0, 0 x11=00000000 +74499199ns 1307850 1c004612 869fc0ef jal x1, -14232 x1=1c004616 +74499239ns 1307852 1c000e7a 00a00333 add x6, x0, x10 x6=1c0091c4 x10:1c0091c4 +74499259ns 1307853 1c000e7c 00060663 beq x12, x0, 12 x12:000001a0 +74499279ns 1307854 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0091c4 PA:1c0091c4 +74499298ns 1307855 1c000e82 fff60613 addi x12, x12, -1 x12=0000019f x12:000001a0 +74499318ns 1307856 1c000e84 00130313 addi x6, x6, 1 x6=1c0091c5 x6:1c0091c4 +74499338ns 1307857 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000019f +74499417ns 1307861 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0091c5 PA:1c0091c5 +74499437ns 1307862 1c000e82 fff60613 addi x12, x12, -1 x12=0000019e x12:0000019f +74499457ns 1307863 1c000e84 00130313 addi x6, x6, 1 x6=1c0091c6 x6:1c0091c5 +74499476ns 1307864 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000019e +74499556ns 1307868 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0091c6 PA:1c0091c6 +74499575ns 1307869 1c000e82 fff60613 addi x12, x12, -1 x12=0000019d x12:0000019e +74499595ns 1307870 1c000e84 00130313 addi x6, x6, 1 x6=1c0091c7 x6:1c0091c6 +74499615ns 1307871 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000019d +74499694ns 1307875 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0091c7 PA:1c0091c7 +74499714ns 1307876 1c000e82 fff60613 addi x12, x12, -1 x12=0000019c x12:0000019d +74499734ns 1307877 1c000e84 00130313 addi x6, x6, 1 x6=1c0091c8 x6:1c0091c7 +74499754ns 1307878 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000019c +74499833ns 1307882 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0091c8 PA:1c0091c8 +74499852ns 1307883 1c000e82 fff60613 addi x12, x12, -1 x12=0000019b x12:0000019c +74499872ns 1307884 1c000e84 00130313 addi x6, x6, 1 x6=1c0091c9 x6:1c0091c8 +74499892ns 1307885 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000019b +74499971ns 1307889 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0091c9 PA:1c0091c9 +74499991ns 1307890 1c000e82 fff60613 addi x12, x12, -1 x12=0000019a x12:0000019b +74500011ns 1307891 1c000e84 00130313 addi x6, x6, 1 x6=1c0091ca x6:1c0091c9 +74500031ns 1307892 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000019a +74500110ns 1307896 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0091ca PA:1c0091ca +74500130ns 1307897 1c000e82 fff60613 addi x12, x12, -1 x12=00000199 x12:0000019a +74500149ns 1307898 1c000e84 00130313 addi x6, x6, 1 x6=1c0091cb x6:1c0091ca +74500169ns 1307899 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000199 +74500248ns 1307903 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0091cb PA:1c0091cb +74500268ns 1307904 1c000e82 fff60613 addi x12, x12, -1 x12=00000198 x12:00000199 +74500288ns 1307905 1c000e84 00130313 addi x6, x6, 1 x6=1c0091cc x6:1c0091cb +74500308ns 1307906 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000198 +74500387ns 1307910 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0091cc PA:1c0091cc +74500407ns 1307911 1c000e82 fff60613 addi x12, x12, -1 x12=00000197 x12:00000198 +74500426ns 1307912 1c000e84 00130313 addi x6, x6, 1 x6=1c0091cd x6:1c0091cc +74500446ns 1307913 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000197 +74500525ns 1307917 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0091cd PA:1c0091cd +74500545ns 1307918 1c000e82 fff60613 addi x12, x12, -1 x12=00000196 x12:00000197 +74500565ns 1307919 1c000e84 00130313 addi x6, x6, 1 x6=1c0091ce x6:1c0091cd +74500585ns 1307920 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000196 +74500664ns 1307924 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0091ce PA:1c0091ce +74500684ns 1307925 1c000e82 fff60613 addi x12, x12, -1 x12=00000195 x12:00000196 +74500704ns 1307926 1c000e84 00130313 addi x6, x6, 1 x6=1c0091cf x6:1c0091ce +74500723ns 1307927 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000195 +74500803ns 1307931 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0091cf PA:1c0091cf +74500822ns 1307932 1c000e82 fff60613 addi x12, x12, -1 x12=00000194 x12:00000195 +74500842ns 1307933 1c000e84 00130313 addi x6, x6, 1 x6=1c0091d0 x6:1c0091cf +74500862ns 1307934 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000194 +74500941ns 1307938 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0091d0 PA:1c0091d0 +74500961ns 1307939 1c000e82 fff60613 addi x12, x12, -1 x12=00000193 x12:00000194 +74500981ns 1307940 1c000e84 00130313 addi x6, x6, 1 x6=1c0091d1 x6:1c0091d0 +74501000ns 1307941 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000193 +74501080ns 1307945 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0091d1 PA:1c0091d1 +74501099ns 1307946 1c000e82 fff60613 addi x12, x12, -1 x12=00000192 x12:00000193 +74501119ns 1307947 1c000e84 00130313 addi x6, x6, 1 x6=1c0091d2 x6:1c0091d1 +74501139ns 1307948 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000192 +74501218ns 1307952 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0091d2 PA:1c0091d2 +74501238ns 1307953 1c000e82 fff60613 addi x12, x12, -1 x12=00000191 x12:00000192 +74501258ns 1307954 1c000e84 00130313 addi x6, x6, 1 x6=1c0091d3 x6:1c0091d2 +74501278ns 1307955 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000191 +74501357ns 1307959 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0091d3 PA:1c0091d3 +74501376ns 1307960 1c000e82 fff60613 addi x12, x12, -1 x12=00000190 x12:00000191 +74501396ns 1307961 1c000e84 00130313 addi x6, x6, 1 x6=1c0091d4 x6:1c0091d3 +74501416ns 1307962 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000190 +74501495ns 1307966 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0091d4 PA:1c0091d4 +74501515ns 1307967 1c000e82 fff60613 addi x12, x12, -1 x12=0000018f x12:00000190 +74501535ns 1307968 1c000e84 00130313 addi x6, x6, 1 x6=1c0091d5 x6:1c0091d4 +74501555ns 1307969 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000018f +74501634ns 1307973 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0091d5 PA:1c0091d5 +74501654ns 1307974 1c000e82 fff60613 addi x12, x12, -1 x12=0000018e x12:0000018f +74501673ns 1307975 1c000e84 00130313 addi x6, x6, 1 x6=1c0091d6 x6:1c0091d5 +74501693ns 1307976 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000018e +74501772ns 1307980 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0091d6 PA:1c0091d6 +74501792ns 1307981 1c000e82 fff60613 addi x12, x12, -1 x12=0000018d x12:0000018e +74501812ns 1307982 1c000e84 00130313 addi x6, x6, 1 x6=1c0091d7 x6:1c0091d6 +74501832ns 1307983 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000018d +74501911ns 1307987 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0091d7 PA:1c0091d7 +74501931ns 1307988 1c000e82 fff60613 addi x12, x12, -1 x12=0000018c x12:0000018d +74501950ns 1307989 1c000e84 00130313 addi x6, x6, 1 x6=1c0091d8 x6:1c0091d7 +74501970ns 1307990 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000018c +74502049ns 1307994 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0091d8 PA:1c0091d8 +74502069ns 1307995 1c000e82 fff60613 addi x12, x12, -1 x12=0000018b x12:0000018c +74502089ns 1307996 1c000e84 00130313 addi x6, x6, 1 x6=1c0091d9 x6:1c0091d8 +74502109ns 1307997 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000018b +74502188ns 1308001 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0091d9 PA:1c0091d9 +74502208ns 1308002 1c000e82 fff60613 addi x12, x12, -1 x12=0000018a x12:0000018b +74502228ns 1308003 1c000e84 00130313 addi x6, x6, 1 x6=1c0091da x6:1c0091d9 +74502247ns 1308004 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000018a +74502326ns 1308008 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0091da PA:1c0091da +74502346ns 1308009 1c000e82 fff60613 addi x12, x12, -1 x12=00000189 x12:0000018a +74502366ns 1308010 1c000e84 00130313 addi x6, x6, 1 x6=1c0091db x6:1c0091da +74502386ns 1308011 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000189 +74502465ns 1308015 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0091db PA:1c0091db +74502485ns 1308016 1c000e82 fff60613 addi x12, x12, -1 x12=00000188 x12:00000189 +74502505ns 1308017 1c000e84 00130313 addi x6, x6, 1 x6=1c0091dc x6:1c0091db +74502524ns 1308018 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000188 +74502604ns 1308022 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0091dc PA:1c0091dc +74502623ns 1308023 1c000e82 fff60613 addi x12, x12, -1 x12=00000187 x12:00000188 +74502643ns 1308024 1c000e84 00130313 addi x6, x6, 1 x6=1c0091dd x6:1c0091dc +74502663ns 1308025 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000187 +74502742ns 1308029 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0091dd PA:1c0091dd +74502762ns 1308030 1c000e82 fff60613 addi x12, x12, -1 x12=00000186 x12:00000187 +74502782ns 1308031 1c000e84 00130313 addi x6, x6, 1 x6=1c0091de x6:1c0091dd +74502801ns 1308032 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000186 +74502881ns 1308036 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0091de PA:1c0091de +74502900ns 1308037 1c000e82 fff60613 addi x12, x12, -1 x12=00000185 x12:00000186 +74502920ns 1308038 1c000e84 00130313 addi x6, x6, 1 x6=1c0091df x6:1c0091de +74502940ns 1308039 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000185 +74503019ns 1308043 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0091df PA:1c0091df +74503039ns 1308044 1c000e82 fff60613 addi x12, x12, -1 x12=00000184 x12:00000185 +74503059ns 1308045 1c000e84 00130313 addi x6, x6, 1 x6=1c0091e0 x6:1c0091df +74503079ns 1308046 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000184 +74503158ns 1308050 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0091e0 PA:1c0091e0 +74503178ns 1308051 1c000e82 fff60613 addi x12, x12, -1 x12=00000183 x12:00000184 +74503197ns 1308052 1c000e84 00130313 addi x6, x6, 1 x6=1c0091e1 x6:1c0091e0 +74503217ns 1308053 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000183 +74503296ns 1308057 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0091e1 PA:1c0091e1 +74503316ns 1308058 1c000e82 fff60613 addi x12, x12, -1 x12=00000182 x12:00000183 +74503336ns 1308059 1c000e84 00130313 addi x6, x6, 1 x6=1c0091e2 x6:1c0091e1 +74503356ns 1308060 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000182 +74503435ns 1308064 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0091e2 PA:1c0091e2 +74503455ns 1308065 1c000e82 fff60613 addi x12, x12, -1 x12=00000181 x12:00000182 +74503474ns 1308066 1c000e84 00130313 addi x6, x6, 1 x6=1c0091e3 x6:1c0091e2 +74503494ns 1308067 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000181 +74503573ns 1308071 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0091e3 PA:1c0091e3 +74503593ns 1308072 1c000e82 fff60613 addi x12, x12, -1 x12=00000180 x12:00000181 +74503613ns 1308073 1c000e84 00130313 addi x6, x6, 1 x6=1c0091e4 x6:1c0091e3 +74503633ns 1308074 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000180 +74503712ns 1308078 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0091e4 PA:1c0091e4 +74503732ns 1308079 1c000e82 fff60613 addi x12, x12, -1 x12=0000017f x12:00000180 +74503752ns 1308080 1c000e84 00130313 addi x6, x6, 1 x6=1c0091e5 x6:1c0091e4 +74503771ns 1308081 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000017f +74503850ns 1308085 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0091e5 PA:1c0091e5 +74503870ns 1308086 1c000e82 fff60613 addi x12, x12, -1 x12=0000017e x12:0000017f +74503890ns 1308087 1c000e84 00130313 addi x6, x6, 1 x6=1c0091e6 x6:1c0091e5 +74503910ns 1308088 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000017e +74503989ns 1308092 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0091e6 PA:1c0091e6 +74504009ns 1308093 1c000e82 fff60613 addi x12, x12, -1 x12=0000017d x12:0000017e +74504029ns 1308094 1c000e84 00130313 addi x6, x6, 1 x6=1c0091e7 x6:1c0091e6 +74504048ns 1308095 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000017d +74504128ns 1308099 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0091e7 PA:1c0091e7 +74504147ns 1308100 1c000e82 fff60613 addi x12, x12, -1 x12=0000017c x12:0000017d +74504167ns 1308101 1c000e84 00130313 addi x6, x6, 1 x6=1c0091e8 x6:1c0091e7 +74504187ns 1308102 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000017c +74504266ns 1308106 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0091e8 PA:1c0091e8 +74504286ns 1308107 1c000e82 fff60613 addi x12, x12, -1 x12=0000017b x12:0000017c +74504306ns 1308108 1c000e84 00130313 addi x6, x6, 1 x6=1c0091e9 x6:1c0091e8 +74504325ns 1308109 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000017b +74504405ns 1308113 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0091e9 PA:1c0091e9 +74504424ns 1308114 1c000e82 fff60613 addi x12, x12, -1 x12=0000017a x12:0000017b +74504444ns 1308115 1c000e84 00130313 addi x6, x6, 1 x6=1c0091ea x6:1c0091e9 +74504464ns 1308116 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000017a +74504543ns 1308120 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0091ea PA:1c0091ea +74504563ns 1308121 1c000e82 fff60613 addi x12, x12, -1 x12=00000179 x12:0000017a +74504583ns 1308122 1c000e84 00130313 addi x6, x6, 1 x6=1c0091eb x6:1c0091ea +74504603ns 1308123 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000179 +74504682ns 1308127 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0091eb PA:1c0091eb +74504702ns 1308128 1c000e82 fff60613 addi x12, x12, -1 x12=00000178 x12:00000179 +74504721ns 1308129 1c000e84 00130313 addi x6, x6, 1 x6=1c0091ec x6:1c0091eb +74504741ns 1308130 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000178 +74504820ns 1308134 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0091ec PA:1c0091ec +74504840ns 1308135 1c000e82 fff60613 addi x12, x12, -1 x12=00000177 x12:00000178 +74504860ns 1308136 1c000e84 00130313 addi x6, x6, 1 x6=1c0091ed x6:1c0091ec +74504880ns 1308137 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000177 +74504959ns 1308141 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0091ed PA:1c0091ed +74504979ns 1308142 1c000e82 fff60613 addi x12, x12, -1 x12=00000176 x12:00000177 +74504998ns 1308143 1c000e84 00130313 addi x6, x6, 1 x6=1c0091ee x6:1c0091ed +74505018ns 1308144 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000176 +74505097ns 1308148 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0091ee PA:1c0091ee +74505117ns 1308149 1c000e82 fff60613 addi x12, x12, -1 x12=00000175 x12:00000176 +74505137ns 1308150 1c000e84 00130313 addi x6, x6, 1 x6=1c0091ef x6:1c0091ee +74505157ns 1308151 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000175 +74505236ns 1308155 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0091ef PA:1c0091ef +74505256ns 1308156 1c000e82 fff60613 addi x12, x12, -1 x12=00000174 x12:00000175 +74505275ns 1308157 1c000e84 00130313 addi x6, x6, 1 x6=1c0091f0 x6:1c0091ef +74505295ns 1308158 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000174 +74505374ns 1308162 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0091f0 PA:1c0091f0 +74505394ns 1308163 1c000e82 fff60613 addi x12, x12, -1 x12=00000173 x12:00000174 +74505414ns 1308164 1c000e84 00130313 addi x6, x6, 1 x6=1c0091f1 x6:1c0091f0 +74505434ns 1308165 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000173 +74505513ns 1308169 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0091f1 PA:1c0091f1 +74505533ns 1308170 1c000e82 fff60613 addi x12, x12, -1 x12=00000172 x12:00000173 +74505553ns 1308171 1c000e84 00130313 addi x6, x6, 1 x6=1c0091f2 x6:1c0091f1 +74505572ns 1308172 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000172 +74505652ns 1308176 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0091f2 PA:1c0091f2 +74505671ns 1308177 1c000e82 fff60613 addi x12, x12, -1 x12=00000171 x12:00000172 +74505691ns 1308178 1c000e84 00130313 addi x6, x6, 1 x6=1c0091f3 x6:1c0091f2 +74505711ns 1308179 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000171 +74505790ns 1308183 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0091f3 PA:1c0091f3 +74505810ns 1308184 1c000e82 fff60613 addi x12, x12, -1 x12=00000170 x12:00000171 +74505830ns 1308185 1c000e84 00130313 addi x6, x6, 1 x6=1c0091f4 x6:1c0091f3 +74505849ns 1308186 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000170 +74505929ns 1308190 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0091f4 PA:1c0091f4 +74505948ns 1308191 1c000e82 fff60613 addi x12, x12, -1 x12=0000016f x12:00000170 +74505968ns 1308192 1c000e84 00130313 addi x6, x6, 1 x6=1c0091f5 x6:1c0091f4 +74505988ns 1308193 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000016f +74506067ns 1308197 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0091f5 PA:1c0091f5 +74506087ns 1308198 1c000e82 fff60613 addi x12, x12, -1 x12=0000016e x12:0000016f +74506107ns 1308199 1c000e84 00130313 addi x6, x6, 1 x6=1c0091f6 x6:1c0091f5 +74506127ns 1308200 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000016e +74506206ns 1308204 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0091f6 PA:1c0091f6 +74506226ns 1308205 1c000e82 fff60613 addi x12, x12, -1 x12=0000016d x12:0000016e +74506245ns 1308206 1c000e84 00130313 addi x6, x6, 1 x6=1c0091f7 x6:1c0091f6 +74506265ns 1308207 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000016d +74506344ns 1308211 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0091f7 PA:1c0091f7 +74506364ns 1308212 1c000e82 fff60613 addi x12, x12, -1 x12=0000016c x12:0000016d +74506384ns 1308213 1c000e84 00130313 addi x6, x6, 1 x6=1c0091f8 x6:1c0091f7 +74506404ns 1308214 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000016c +74506483ns 1308218 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0091f8 PA:1c0091f8 +74506503ns 1308219 1c000e82 fff60613 addi x12, x12, -1 x12=0000016b x12:0000016c +74506522ns 1308220 1c000e84 00130313 addi x6, x6, 1 x6=1c0091f9 x6:1c0091f8 +74506542ns 1308221 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000016b +74506621ns 1308225 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0091f9 PA:1c0091f9 +74506641ns 1308226 1c000e82 fff60613 addi x12, x12, -1 x12=0000016a x12:0000016b +74506661ns 1308227 1c000e84 00130313 addi x6, x6, 1 x6=1c0091fa x6:1c0091f9 +74506681ns 1308228 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000016a +74506760ns 1308232 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0091fa PA:1c0091fa +74506780ns 1308233 1c000e82 fff60613 addi x12, x12, -1 x12=00000169 x12:0000016a +74506799ns 1308234 1c000e84 00130313 addi x6, x6, 1 x6=1c0091fb x6:1c0091fa +74506819ns 1308235 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000169 +74506898ns 1308239 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0091fb PA:1c0091fb +74506918ns 1308240 1c000e82 fff60613 addi x12, x12, -1 x12=00000168 x12:00000169 +74506938ns 1308241 1c000e84 00130313 addi x6, x6, 1 x6=1c0091fc x6:1c0091fb +74506958ns 1308242 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000168 +74507037ns 1308246 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0091fc PA:1c0091fc +74507057ns 1308247 1c000e82 fff60613 addi x12, x12, -1 x12=00000167 x12:00000168 +74507077ns 1308248 1c000e84 00130313 addi x6, x6, 1 x6=1c0091fd x6:1c0091fc +74507096ns 1308249 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000167 +74507176ns 1308253 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0091fd PA:1c0091fd +74507195ns 1308254 1c000e82 fff60613 addi x12, x12, -1 x12=00000166 x12:00000167 +74507215ns 1308255 1c000e84 00130313 addi x6, x6, 1 x6=1c0091fe x6:1c0091fd +74507235ns 1308256 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000166 +74507314ns 1308260 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0091fe PA:1c0091fe +74507334ns 1308261 1c000e82 fff60613 addi x12, x12, -1 x12=00000165 x12:00000166 +74507354ns 1308262 1c000e84 00130313 addi x6, x6, 1 x6=1c0091ff x6:1c0091fe +74507373ns 1308263 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000165 +74507453ns 1308267 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0091ff PA:1c0091ff +74507472ns 1308268 1c000e82 fff60613 addi x12, x12, -1 x12=00000164 x12:00000165 +74507492ns 1308269 1c000e84 00130313 addi x6, x6, 1 x6=1c009200 x6:1c0091ff +74507512ns 1308270 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000164 +74507591ns 1308274 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009200 PA:1c009200 +74507611ns 1308275 1c000e82 fff60613 addi x12, x12, -1 x12=00000163 x12:00000164 +74507631ns 1308276 1c000e84 00130313 addi x6, x6, 1 x6=1c009201 x6:1c009200 +74507651ns 1308277 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000163 +74507730ns 1308281 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009201 PA:1c009201 +74507749ns 1308282 1c000e82 fff60613 addi x12, x12, -1 x12=00000162 x12:00000163 +74507769ns 1308283 1c000e84 00130313 addi x6, x6, 1 x6=1c009202 x6:1c009201 +74507789ns 1308284 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000162 +74507868ns 1308288 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009202 PA:1c009202 +74507888ns 1308289 1c000e82 fff60613 addi x12, x12, -1 x12=00000161 x12:00000162 +74507908ns 1308290 1c000e84 00130313 addi x6, x6, 1 x6=1c009203 x6:1c009202 +74507928ns 1308291 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000161 +74508007ns 1308295 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009203 PA:1c009203 +74508027ns 1308296 1c000e82 fff60613 addi x12, x12, -1 x12=00000160 x12:00000161 +74508046ns 1308297 1c000e84 00130313 addi x6, x6, 1 x6=1c009204 x6:1c009203 +74508066ns 1308298 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000160 +74508145ns 1308302 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009204 PA:1c009204 +74508165ns 1308303 1c000e82 fff60613 addi x12, x12, -1 x12=0000015f x12:00000160 +74508185ns 1308304 1c000e84 00130313 addi x6, x6, 1 x6=1c009205 x6:1c009204 +74508205ns 1308305 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000015f +74508284ns 1308309 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009205 PA:1c009205 +74508304ns 1308310 1c000e82 fff60613 addi x12, x12, -1 x12=0000015e x12:0000015f +74508323ns 1308311 1c000e84 00130313 addi x6, x6, 1 x6=1c009206 x6:1c009205 +74508343ns 1308312 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000015e +74508422ns 1308316 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009206 PA:1c009206 +74508442ns 1308317 1c000e82 fff60613 addi x12, x12, -1 x12=0000015d x12:0000015e +74508462ns 1308318 1c000e84 00130313 addi x6, x6, 1 x6=1c009207 x6:1c009206 +74508482ns 1308319 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000015d +74508561ns 1308323 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009207 PA:1c009207 +74508581ns 1308324 1c000e82 fff60613 addi x12, x12, -1 x12=0000015c x12:0000015d +74508601ns 1308325 1c000e84 00130313 addi x6, x6, 1 x6=1c009208 x6:1c009207 +74508620ns 1308326 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000015c +74508700ns 1308330 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009208 PA:1c009208 +74508719ns 1308331 1c000e82 fff60613 addi x12, x12, -1 x12=0000015b x12:0000015c +74508739ns 1308332 1c000e84 00130313 addi x6, x6, 1 x6=1c009209 x6:1c009208 +74508759ns 1308333 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000015b +74508838ns 1308337 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009209 PA:1c009209 +74508858ns 1308338 1c000e82 fff60613 addi x12, x12, -1 x12=0000015a x12:0000015b +74508878ns 1308339 1c000e84 00130313 addi x6, x6, 1 x6=1c00920a x6:1c009209 +74508897ns 1308340 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000015a +74508977ns 1308344 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00920a PA:1c00920a +74508996ns 1308345 1c000e82 fff60613 addi x12, x12, -1 x12=00000159 x12:0000015a +74509016ns 1308346 1c000e84 00130313 addi x6, x6, 1 x6=1c00920b x6:1c00920a +74509036ns 1308347 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000159 +74509115ns 1308351 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00920b PA:1c00920b +74509135ns 1308352 1c000e82 fff60613 addi x12, x12, -1 x12=00000158 x12:00000159 +74509155ns 1308353 1c000e84 00130313 addi x6, x6, 1 x6=1c00920c x6:1c00920b +74509175ns 1308354 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000158 +74509254ns 1308358 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00920c PA:1c00920c +74509273ns 1308359 1c000e82 fff60613 addi x12, x12, -1 x12=00000157 x12:00000158 +74509293ns 1308360 1c000e84 00130313 addi x6, x6, 1 x6=1c00920d x6:1c00920c +74509313ns 1308361 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000157 +74509392ns 1308365 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00920d PA:1c00920d +74509412ns 1308366 1c000e82 fff60613 addi x12, x12, -1 x12=00000156 x12:00000157 +74509432ns 1308367 1c000e84 00130313 addi x6, x6, 1 x6=1c00920e x6:1c00920d +74509452ns 1308368 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000156 +74509531ns 1308372 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00920e PA:1c00920e +74509551ns 1308373 1c000e82 fff60613 addi x12, x12, -1 x12=00000155 x12:00000156 +74509570ns 1308374 1c000e84 00130313 addi x6, x6, 1 x6=1c00920f x6:1c00920e +74509590ns 1308375 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000155 +74509669ns 1308379 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00920f PA:1c00920f +74509689ns 1308380 1c000e82 fff60613 addi x12, x12, -1 x12=00000154 x12:00000155 +74509709ns 1308381 1c000e84 00130313 addi x6, x6, 1 x6=1c009210 x6:1c00920f +74509729ns 1308382 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000154 +74509808ns 1308386 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009210 PA:1c009210 +74509828ns 1308387 1c000e82 fff60613 addi x12, x12, -1 x12=00000153 x12:00000154 +74509847ns 1308388 1c000e84 00130313 addi x6, x6, 1 x6=1c009211 x6:1c009210 +74509867ns 1308389 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000153 +74509946ns 1308393 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009211 PA:1c009211 +74509966ns 1308394 1c000e82 fff60613 addi x12, x12, -1 x12=00000152 x12:00000153 +74509986ns 1308395 1c000e84 00130313 addi x6, x6, 1 x6=1c009212 x6:1c009211 +74510006ns 1308396 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000152 +74510085ns 1308400 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009212 PA:1c009212 +74510105ns 1308401 1c000e82 fff60613 addi x12, x12, -1 x12=00000151 x12:00000152 +74510125ns 1308402 1c000e84 00130313 addi x6, x6, 1 x6=1c009213 x6:1c009212 +74510144ns 1308403 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000151 +74510223ns 1308407 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009213 PA:1c009213 +74510243ns 1308408 1c000e82 fff60613 addi x12, x12, -1 x12=00000150 x12:00000151 +74510263ns 1308409 1c000e84 00130313 addi x6, x6, 1 x6=1c009214 x6:1c009213 +74510283ns 1308410 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000150 +74510362ns 1308414 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009214 PA:1c009214 +74510382ns 1308415 1c000e82 fff60613 addi x12, x12, -1 x12=0000014f x12:00000150 +74510402ns 1308416 1c000e84 00130313 addi x6, x6, 1 x6=1c009215 x6:1c009214 +74510421ns 1308417 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000014f +74510501ns 1308421 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009215 PA:1c009215 +74510520ns 1308422 1c000e82 fff60613 addi x12, x12, -1 x12=0000014e x12:0000014f +74510540ns 1308423 1c000e84 00130313 addi x6, x6, 1 x6=1c009216 x6:1c009215 +74510560ns 1308424 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000014e +74510639ns 1308428 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009216 PA:1c009216 +74510659ns 1308429 1c000e82 fff60613 addi x12, x12, -1 x12=0000014d x12:0000014e +74510679ns 1308430 1c000e84 00130313 addi x6, x6, 1 x6=1c009217 x6:1c009216 +74510699ns 1308431 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000014d +74510778ns 1308435 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009217 PA:1c009217 +74510797ns 1308436 1c000e82 fff60613 addi x12, x12, -1 x12=0000014c x12:0000014d +74510817ns 1308437 1c000e84 00130313 addi x6, x6, 1 x6=1c009218 x6:1c009217 +74510837ns 1308438 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000014c +74510916ns 1308442 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009218 PA:1c009218 +74510936ns 1308443 1c000e82 fff60613 addi x12, x12, -1 x12=0000014b x12:0000014c +74510956ns 1308444 1c000e84 00130313 addi x6, x6, 1 x6=1c009219 x6:1c009218 +74510976ns 1308445 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000014b +74511055ns 1308449 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009219 PA:1c009219 +74511075ns 1308450 1c000e82 fff60613 addi x12, x12, -1 x12=0000014a x12:0000014b +74511094ns 1308451 1c000e84 00130313 addi x6, x6, 1 x6=1c00921a x6:1c009219 +74511114ns 1308452 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000014a +74511193ns 1308456 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00921a PA:1c00921a +74511213ns 1308457 1c000e82 fff60613 addi x12, x12, -1 x12=00000149 x12:0000014a +74511233ns 1308458 1c000e84 00130313 addi x6, x6, 1 x6=1c00921b x6:1c00921a +74511253ns 1308459 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000149 +74511332ns 1308463 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00921b PA:1c00921b +74511352ns 1308464 1c000e82 fff60613 addi x12, x12, -1 x12=00000148 x12:00000149 +74511371ns 1308465 1c000e84 00130313 addi x6, x6, 1 x6=1c00921c x6:1c00921b +74511391ns 1308466 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000148 +74511470ns 1308470 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00921c PA:1c00921c +74511490ns 1308471 1c000e82 fff60613 addi x12, x12, -1 x12=00000147 x12:00000148 +74511510ns 1308472 1c000e84 00130313 addi x6, x6, 1 x6=1c00921d x6:1c00921c +74511530ns 1308473 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000147 +74511609ns 1308477 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00921d PA:1c00921d +74511629ns 1308478 1c000e82 fff60613 addi x12, x12, -1 x12=00000146 x12:00000147 +74511649ns 1308479 1c000e84 00130313 addi x6, x6, 1 x6=1c00921e x6:1c00921d +74511668ns 1308480 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000146 +74511747ns 1308484 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00921e PA:1c00921e +74511767ns 1308485 1c000e82 fff60613 addi x12, x12, -1 x12=00000145 x12:00000146 +74511787ns 1308486 1c000e84 00130313 addi x6, x6, 1 x6=1c00921f x6:1c00921e +74511807ns 1308487 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000145 +74511886ns 1308491 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00921f PA:1c00921f +74511906ns 1308492 1c000e82 fff60613 addi x12, x12, -1 x12=00000144 x12:00000145 +74511926ns 1308493 1c000e84 00130313 addi x6, x6, 1 x6=1c009220 x6:1c00921f +74511945ns 1308494 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000144 +74512025ns 1308498 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009220 PA:1c009220 +74512044ns 1308499 1c000e82 fff60613 addi x12, x12, -1 x12=00000143 x12:00000144 +74512064ns 1308500 1c000e84 00130313 addi x6, x6, 1 x6=1c009221 x6:1c009220 +74512084ns 1308501 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000143 +74512163ns 1308505 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009221 PA:1c009221 +74512183ns 1308506 1c000e82 fff60613 addi x12, x12, -1 x12=00000142 x12:00000143 +74512203ns 1308507 1c000e84 00130313 addi x6, x6, 1 x6=1c009222 x6:1c009221 +74512222ns 1308508 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000142 +74512302ns 1308512 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009222 PA:1c009222 +74512321ns 1308513 1c000e82 fff60613 addi x12, x12, -1 x12=00000141 x12:00000142 +74512341ns 1308514 1c000e84 00130313 addi x6, x6, 1 x6=1c009223 x6:1c009222 +74512361ns 1308515 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000141 +74512440ns 1308519 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009223 PA:1c009223 +74512460ns 1308520 1c000e82 fff60613 addi x12, x12, -1 x12=00000140 x12:00000141 +74512480ns 1308521 1c000e84 00130313 addi x6, x6, 1 x6=1c009224 x6:1c009223 +74512500ns 1308522 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000140 +74512579ns 1308526 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009224 PA:1c009224 +74512599ns 1308527 1c000e82 fff60613 addi x12, x12, -1 x12=0000013f x12:00000140 +74512618ns 1308528 1c000e84 00130313 addi x6, x6, 1 x6=1c009225 x6:1c009224 +74512638ns 1308529 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000013f +74512717ns 1308533 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009225 PA:1c009225 +74512737ns 1308534 1c000e82 fff60613 addi x12, x12, -1 x12=0000013e x12:0000013f +74512757ns 1308535 1c000e84 00130313 addi x6, x6, 1 x6=1c009226 x6:1c009225 +74512777ns 1308536 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000013e +74512856ns 1308540 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009226 PA:1c009226 +74512876ns 1308541 1c000e82 fff60613 addi x12, x12, -1 x12=0000013d x12:0000013e +74512895ns 1308542 1c000e84 00130313 addi x6, x6, 1 x6=1c009227 x6:1c009226 +74512915ns 1308543 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000013d +74512994ns 1308547 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009227 PA:1c009227 +74513014ns 1308548 1c000e82 fff60613 addi x12, x12, -1 x12=0000013c x12:0000013d +74513034ns 1308549 1c000e84 00130313 addi x6, x6, 1 x6=1c009228 x6:1c009227 +74513054ns 1308550 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000013c +74513133ns 1308554 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009228 PA:1c009228 +74513153ns 1308555 1c000e82 fff60613 addi x12, x12, -1 x12=0000013b x12:0000013c +74513173ns 1308556 1c000e84 00130313 addi x6, x6, 1 x6=1c009229 x6:1c009228 +74513192ns 1308557 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000013b +74513271ns 1308561 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009229 PA:1c009229 +74513291ns 1308562 1c000e82 fff60613 addi x12, x12, -1 x12=0000013a x12:0000013b +74513311ns 1308563 1c000e84 00130313 addi x6, x6, 1 x6=1c00922a x6:1c009229 +74513331ns 1308564 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000013a +74513410ns 1308568 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00922a PA:1c00922a +74513430ns 1308569 1c000e82 fff60613 addi x12, x12, -1 x12=00000139 x12:0000013a +74513450ns 1308570 1c000e84 00130313 addi x6, x6, 1 x6=1c00922b x6:1c00922a +74513469ns 1308571 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000139 +74513549ns 1308575 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00922b PA:1c00922b +74513568ns 1308576 1c000e82 fff60613 addi x12, x12, -1 x12=00000138 x12:00000139 +74513588ns 1308577 1c000e84 00130313 addi x6, x6, 1 x6=1c00922c x6:1c00922b +74513608ns 1308578 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000138 +74513687ns 1308582 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00922c PA:1c00922c +74513707ns 1308583 1c000e82 fff60613 addi x12, x12, -1 x12=00000137 x12:00000138 +74513727ns 1308584 1c000e84 00130313 addi x6, x6, 1 x6=1c00922d x6:1c00922c +74513746ns 1308585 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000137 +74513826ns 1308589 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00922d PA:1c00922d +74513845ns 1308590 1c000e82 fff60613 addi x12, x12, -1 x12=00000136 x12:00000137 +74513865ns 1308591 1c000e84 00130313 addi x6, x6, 1 x6=1c00922e x6:1c00922d +74513885ns 1308592 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000136 +74513964ns 1308596 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00922e PA:1c00922e +74513984ns 1308597 1c000e82 fff60613 addi x12, x12, -1 x12=00000135 x12:00000136 +74514004ns 1308598 1c000e84 00130313 addi x6, x6, 1 x6=1c00922f x6:1c00922e +74514024ns 1308599 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000135 +74514103ns 1308603 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00922f PA:1c00922f +74514123ns 1308604 1c000e82 fff60613 addi x12, x12, -1 x12=00000134 x12:00000135 +74514142ns 1308605 1c000e84 00130313 addi x6, x6, 1 x6=1c009230 x6:1c00922f +74514162ns 1308606 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000134 +74514241ns 1308610 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009230 PA:1c009230 +74514261ns 1308611 1c000e82 fff60613 addi x12, x12, -1 x12=00000133 x12:00000134 +74514281ns 1308612 1c000e84 00130313 addi x6, x6, 1 x6=1c009231 x6:1c009230 +74514301ns 1308613 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000133 +74514380ns 1308617 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009231 PA:1c009231 +74514400ns 1308618 1c000e82 fff60613 addi x12, x12, -1 x12=00000132 x12:00000133 +74514419ns 1308619 1c000e84 00130313 addi x6, x6, 1 x6=1c009232 x6:1c009231 +74514439ns 1308620 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000132 +74514518ns 1308624 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009232 PA:1c009232 +74514538ns 1308625 1c000e82 fff60613 addi x12, x12, -1 x12=00000131 x12:00000132 +74514558ns 1308626 1c000e84 00130313 addi x6, x6, 1 x6=1c009233 x6:1c009232 +74514578ns 1308627 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000131 +74514657ns 1308631 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009233 PA:1c009233 +74514677ns 1308632 1c000e82 fff60613 addi x12, x12, -1 x12=00000130 x12:00000131 +74514696ns 1308633 1c000e84 00130313 addi x6, x6, 1 x6=1c009234 x6:1c009233 +74514716ns 1308634 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000130 +74514795ns 1308638 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009234 PA:1c009234 +74514815ns 1308639 1c000e82 fff60613 addi x12, x12, -1 x12=0000012f x12:00000130 +74514835ns 1308640 1c000e84 00130313 addi x6, x6, 1 x6=1c009235 x6:1c009234 +74514855ns 1308641 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000012f +74514934ns 1308645 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009235 PA:1c009235 +74514954ns 1308646 1c000e82 fff60613 addi x12, x12, -1 x12=0000012e x12:0000012f +74514974ns 1308647 1c000e84 00130313 addi x6, x6, 1 x6=1c009236 x6:1c009235 +74514993ns 1308648 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000012e +74515073ns 1308652 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009236 PA:1c009236 +74515092ns 1308653 1c000e82 fff60613 addi x12, x12, -1 x12=0000012d x12:0000012e +74515112ns 1308654 1c000e84 00130313 addi x6, x6, 1 x6=1c009237 x6:1c009236 +74515132ns 1308655 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000012d +74515211ns 1308659 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009237 PA:1c009237 +74515231ns 1308660 1c000e82 fff60613 addi x12, x12, -1 x12=0000012c x12:0000012d +74515251ns 1308661 1c000e84 00130313 addi x6, x6, 1 x6=1c009238 x6:1c009237 +74515270ns 1308662 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000012c +74515350ns 1308666 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009238 PA:1c009238 +74515369ns 1308667 1c000e82 fff60613 addi x12, x12, -1 x12=0000012b x12:0000012c +74515389ns 1308668 1c000e84 00130313 addi x6, x6, 1 x6=1c009239 x6:1c009238 +74515409ns 1308669 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000012b +74515488ns 1308673 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009239 PA:1c009239 +74515508ns 1308674 1c000e82 fff60613 addi x12, x12, -1 x12=0000012a x12:0000012b +74515528ns 1308675 1c000e84 00130313 addi x6, x6, 1 x6=1c00923a x6:1c009239 +74515548ns 1308676 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000012a +74515627ns 1308680 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00923a PA:1c00923a +74515647ns 1308681 1c000e82 fff60613 addi x12, x12, -1 x12=00000129 x12:0000012a +74515666ns 1308682 1c000e84 00130313 addi x6, x6, 1 x6=1c00923b x6:1c00923a +74515686ns 1308683 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000129 +74515765ns 1308687 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00923b PA:1c00923b +74515785ns 1308688 1c000e82 fff60613 addi x12, x12, -1 x12=00000128 x12:00000129 +74515805ns 1308689 1c000e84 00130313 addi x6, x6, 1 x6=1c00923c x6:1c00923b +74515825ns 1308690 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000128 +74515904ns 1308694 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00923c PA:1c00923c +74515924ns 1308695 1c000e82 fff60613 addi x12, x12, -1 x12=00000127 x12:00000128 +74515943ns 1308696 1c000e84 00130313 addi x6, x6, 1 x6=1c00923d x6:1c00923c +74515963ns 1308697 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000127 +74516042ns 1308701 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00923d PA:1c00923d +74516062ns 1308702 1c000e82 fff60613 addi x12, x12, -1 x12=00000126 x12:00000127 +74516082ns 1308703 1c000e84 00130313 addi x6, x6, 1 x6=1c00923e x6:1c00923d +74516102ns 1308704 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000126 +74516181ns 1308708 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00923e PA:1c00923e +74516201ns 1308709 1c000e82 fff60613 addi x12, x12, -1 x12=00000125 x12:00000126 +74516220ns 1308710 1c000e84 00130313 addi x6, x6, 1 x6=1c00923f x6:1c00923e +74516240ns 1308711 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000125 +74516319ns 1308715 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00923f PA:1c00923f +74516339ns 1308716 1c000e82 fff60613 addi x12, x12, -1 x12=00000124 x12:00000125 +74516359ns 1308717 1c000e84 00130313 addi x6, x6, 1 x6=1c009240 x6:1c00923f +74516379ns 1308718 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000124 +74516458ns 1308722 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009240 PA:1c009240 +74516478ns 1308723 1c000e82 fff60613 addi x12, x12, -1 x12=00000123 x12:00000124 +74516498ns 1308724 1c000e84 00130313 addi x6, x6, 1 x6=1c009241 x6:1c009240 +74516517ns 1308725 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000123 +74516597ns 1308729 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009241 PA:1c009241 +74516616ns 1308730 1c000e82 fff60613 addi x12, x12, -1 x12=00000122 x12:00000123 +74516636ns 1308731 1c000e84 00130313 addi x6, x6, 1 x6=1c009242 x6:1c009241 +74516656ns 1308732 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000122 +74516735ns 1308736 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009242 PA:1c009242 +74516755ns 1308737 1c000e82 fff60613 addi x12, x12, -1 x12=00000121 x12:00000122 +74516775ns 1308738 1c000e84 00130313 addi x6, x6, 1 x6=1c009243 x6:1c009242 +74516794ns 1308739 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000121 +74516874ns 1308743 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009243 PA:1c009243 +74516893ns 1308744 1c000e82 fff60613 addi x12, x12, -1 x12=00000120 x12:00000121 +74516913ns 1308745 1c000e84 00130313 addi x6, x6, 1 x6=1c009244 x6:1c009243 +74516933ns 1308746 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000120 +74517012ns 1308750 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009244 PA:1c009244 +74517032ns 1308751 1c000e82 fff60613 addi x12, x12, -1 x12=0000011f x12:00000120 +74517052ns 1308752 1c000e84 00130313 addi x6, x6, 1 x6=1c009245 x6:1c009244 +74517072ns 1308753 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000011f +74517151ns 1308757 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009245 PA:1c009245 +74517170ns 1308758 1c000e82 fff60613 addi x12, x12, -1 x12=0000011e x12:0000011f +74517190ns 1308759 1c000e84 00130313 addi x6, x6, 1 x6=1c009246 x6:1c009245 +74517210ns 1308760 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000011e +74517289ns 1308764 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009246 PA:1c009246 +74517309ns 1308765 1c000e82 fff60613 addi x12, x12, -1 x12=0000011d x12:0000011e +74517329ns 1308766 1c000e84 00130313 addi x6, x6, 1 x6=1c009247 x6:1c009246 +74517349ns 1308767 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000011d +74517428ns 1308771 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009247 PA:1c009247 +74517448ns 1308772 1c000e82 fff60613 addi x12, x12, -1 x12=0000011c x12:0000011d +74517467ns 1308773 1c000e84 00130313 addi x6, x6, 1 x6=1c009248 x6:1c009247 +74517487ns 1308774 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000011c +74517566ns 1308778 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009248 PA:1c009248 +74517586ns 1308779 1c000e82 fff60613 addi x12, x12, -1 x12=0000011b x12:0000011c +74517606ns 1308780 1c000e84 00130313 addi x6, x6, 1 x6=1c009249 x6:1c009248 +74517626ns 1308781 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000011b +74517705ns 1308785 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009249 PA:1c009249 +74517725ns 1308786 1c000e82 fff60613 addi x12, x12, -1 x12=0000011a x12:0000011b +74517744ns 1308787 1c000e84 00130313 addi x6, x6, 1 x6=1c00924a x6:1c009249 +74517764ns 1308788 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000011a +74517843ns 1308792 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00924a PA:1c00924a +74517863ns 1308793 1c000e82 fff60613 addi x12, x12, -1 x12=00000119 x12:0000011a +74517883ns 1308794 1c000e84 00130313 addi x6, x6, 1 x6=1c00924b x6:1c00924a +74517903ns 1308795 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000119 +74517982ns 1308799 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00924b PA:1c00924b +74518002ns 1308800 1c000e82 fff60613 addi x12, x12, -1 x12=00000118 x12:00000119 +74518022ns 1308801 1c000e84 00130313 addi x6, x6, 1 x6=1c00924c x6:1c00924b +74518041ns 1308802 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000118 +74518121ns 1308806 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00924c PA:1c00924c +74518140ns 1308807 1c000e82 fff60613 addi x12, x12, -1 x12=00000117 x12:00000118 +74518160ns 1308808 1c000e84 00130313 addi x6, x6, 1 x6=1c00924d x6:1c00924c +74518180ns 1308809 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000117 +74518259ns 1308813 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00924d PA:1c00924d +74518279ns 1308814 1c000e82 fff60613 addi x12, x12, -1 x12=00000116 x12:00000117 +74518299ns 1308815 1c000e84 00130313 addi x6, x6, 1 x6=1c00924e x6:1c00924d +74518318ns 1308816 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000116 +74518398ns 1308820 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00924e PA:1c00924e +74518417ns 1308821 1c000e82 fff60613 addi x12, x12, -1 x12=00000115 x12:00000116 +74518437ns 1308822 1c000e84 00130313 addi x6, x6, 1 x6=1c00924f x6:1c00924e +74518457ns 1308823 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000115 +74518536ns 1308827 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00924f PA:1c00924f +74518556ns 1308828 1c000e82 fff60613 addi x12, x12, -1 x12=00000114 x12:00000115 +74518576ns 1308829 1c000e84 00130313 addi x6, x6, 1 x6=1c009250 x6:1c00924f +74518596ns 1308830 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000114 +74518675ns 1308834 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009250 PA:1c009250 +74518694ns 1308835 1c000e82 fff60613 addi x12, x12, -1 x12=00000113 x12:00000114 +74518714ns 1308836 1c000e84 00130313 addi x6, x6, 1 x6=1c009251 x6:1c009250 +74518734ns 1308837 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000113 +74518813ns 1308841 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009251 PA:1c009251 +74518833ns 1308842 1c000e82 fff60613 addi x12, x12, -1 x12=00000112 x12:00000113 +74518853ns 1308843 1c000e84 00130313 addi x6, x6, 1 x6=1c009252 x6:1c009251 +74518873ns 1308844 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000112 +74518952ns 1308848 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009252 PA:1c009252 +74518972ns 1308849 1c000e82 fff60613 addi x12, x12, -1 x12=00000111 x12:00000112 +74518991ns 1308850 1c000e84 00130313 addi x6, x6, 1 x6=1c009253 x6:1c009252 +74519011ns 1308851 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000111 +74519090ns 1308855 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009253 PA:1c009253 +74519110ns 1308856 1c000e82 fff60613 addi x12, x12, -1 x12=00000110 x12:00000111 +74519130ns 1308857 1c000e84 00130313 addi x6, x6, 1 x6=1c009254 x6:1c009253 +74519150ns 1308858 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000110 +74519229ns 1308862 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009254 PA:1c009254 +74519249ns 1308863 1c000e82 fff60613 addi x12, x12, -1 x12=0000010f x12:00000110 +74519268ns 1308864 1c000e84 00130313 addi x6, x6, 1 x6=1c009255 x6:1c009254 +74519288ns 1308865 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000010f +74519367ns 1308869 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009255 PA:1c009255 +74519387ns 1308870 1c000e82 fff60613 addi x12, x12, -1 x12=0000010e x12:0000010f +74519407ns 1308871 1c000e84 00130313 addi x6, x6, 1 x6=1c009256 x6:1c009255 +74519427ns 1308872 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000010e +74519506ns 1308876 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009256 PA:1c009256 +74519526ns 1308877 1c000e82 fff60613 addi x12, x12, -1 x12=0000010d x12:0000010e +74519546ns 1308878 1c000e84 00130313 addi x6, x6, 1 x6=1c009257 x6:1c009256 +74519565ns 1308879 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000010d +74519644ns 1308883 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009257 PA:1c009257 +74519664ns 1308884 1c000e82 fff60613 addi x12, x12, -1 x12=0000010c x12:0000010d +74519684ns 1308885 1c000e84 00130313 addi x6, x6, 1 x6=1c009258 x6:1c009257 +74519704ns 1308886 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000010c +74519783ns 1308890 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009258 PA:1c009258 +74519803ns 1308891 1c000e82 fff60613 addi x12, x12, -1 x12=0000010b x12:0000010c +74519823ns 1308892 1c000e84 00130313 addi x6, x6, 1 x6=1c009259 x6:1c009258 +74519842ns 1308893 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000010b +74519922ns 1308897 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009259 PA:1c009259 +74519941ns 1308898 1c000e82 fff60613 addi x12, x12, -1 x12=0000010a x12:0000010b +74519961ns 1308899 1c000e84 00130313 addi x6, x6, 1 x6=1c00925a x6:1c009259 +74519981ns 1308900 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000010a +74520060ns 1308904 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00925a PA:1c00925a +74520080ns 1308905 1c000e82 fff60613 addi x12, x12, -1 x12=00000109 x12:0000010a +74520100ns 1308906 1c000e84 00130313 addi x6, x6, 1 x6=1c00925b x6:1c00925a +74520119ns 1308907 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000109 +74520199ns 1308911 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00925b PA:1c00925b +74520218ns 1308912 1c000e82 fff60613 addi x12, x12, -1 x12=00000108 x12:00000109 +74520238ns 1308913 1c000e84 00130313 addi x6, x6, 1 x6=1c00925c x6:1c00925b +74520258ns 1308914 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000108 +74520337ns 1308918 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00925c PA:1c00925c +74520357ns 1308919 1c000e82 fff60613 addi x12, x12, -1 x12=00000107 x12:00000108 +74520377ns 1308920 1c000e84 00130313 addi x6, x6, 1 x6=1c00925d x6:1c00925c +74520397ns 1308921 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000107 +74520476ns 1308925 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00925d PA:1c00925d +74520496ns 1308926 1c000e82 fff60613 addi x12, x12, -1 x12=00000106 x12:00000107 +74520515ns 1308927 1c000e84 00130313 addi x6, x6, 1 x6=1c00925e x6:1c00925d +74520535ns 1308928 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000106 +74520614ns 1308932 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00925e PA:1c00925e +74520634ns 1308933 1c000e82 fff60613 addi x12, x12, -1 x12=00000105 x12:00000106 +74520654ns 1308934 1c000e84 00130313 addi x6, x6, 1 x6=1c00925f x6:1c00925e +74520674ns 1308935 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000105 +74520753ns 1308939 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00925f PA:1c00925f +74520773ns 1308940 1c000e82 fff60613 addi x12, x12, -1 x12=00000104 x12:00000105 +74520792ns 1308941 1c000e84 00130313 addi x6, x6, 1 x6=1c009260 x6:1c00925f +74520812ns 1308942 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000104 +74520891ns 1308946 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009260 PA:1c009260 +74520911ns 1308947 1c000e82 fff60613 addi x12, x12, -1 x12=00000103 x12:00000104 +74520931ns 1308948 1c000e84 00130313 addi x6, x6, 1 x6=1c009261 x6:1c009260 +74520951ns 1308949 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000103 +74521030ns 1308953 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009261 PA:1c009261 +74521050ns 1308954 1c000e82 fff60613 addi x12, x12, -1 x12=00000102 x12:00000103 +74521070ns 1308955 1c000e84 00130313 addi x6, x6, 1 x6=1c009262 x6:1c009261 +74521089ns 1308956 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000102 +74521168ns 1308960 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009262 PA:1c009262 +74521188ns 1308961 1c000e82 fff60613 addi x12, x12, -1 x12=00000101 x12:00000102 +74521208ns 1308962 1c000e84 00130313 addi x6, x6, 1 x6=1c009263 x6:1c009262 +74521228ns 1308963 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000101 +74521307ns 1308967 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009263 PA:1c009263 +74521327ns 1308968 1c000e82 fff60613 addi x12, x12, -1 x12=00000100 x12:00000101 +74521347ns 1308969 1c000e84 00130313 addi x6, x6, 1 x6=1c009264 x6:1c009263 +74521366ns 1308970 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000100 +74521446ns 1308974 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009264 PA:1c009264 +74521465ns 1308975 1c000e82 fff60613 addi x12, x12, -1 x12=000000ff x12:00000100 +74521485ns 1308976 1c000e84 00130313 addi x6, x6, 1 x6=1c009265 x6:1c009264 +74521505ns 1308977 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ff +74521584ns 1308981 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009265 PA:1c009265 +74521604ns 1308982 1c000e82 fff60613 addi x12, x12, -1 x12=000000fe x12:000000ff +74521624ns 1308983 1c000e84 00130313 addi x6, x6, 1 x6=1c009266 x6:1c009265 +74521643ns 1308984 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000fe +74521723ns 1308988 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009266 PA:1c009266 +74521742ns 1308989 1c000e82 fff60613 addi x12, x12, -1 x12=000000fd x12:000000fe +74521762ns 1308990 1c000e84 00130313 addi x6, x6, 1 x6=1c009267 x6:1c009266 +74521782ns 1308991 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000fd +74521861ns 1308995 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009267 PA:1c009267 +74521881ns 1308996 1c000e82 fff60613 addi x12, x12, -1 x12=000000fc x12:000000fd +74521901ns 1308997 1c000e84 00130313 addi x6, x6, 1 x6=1c009268 x6:1c009267 +74521921ns 1308998 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000fc +74522000ns 1309002 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009268 PA:1c009268 +74522020ns 1309003 1c000e82 fff60613 addi x12, x12, -1 x12=000000fb x12:000000fc +74522039ns 1309004 1c000e84 00130313 addi x6, x6, 1 x6=1c009269 x6:1c009268 +74522059ns 1309005 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000fb +74522138ns 1309009 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009269 PA:1c009269 +74522158ns 1309010 1c000e82 fff60613 addi x12, x12, -1 x12=000000fa x12:000000fb +74522178ns 1309011 1c000e84 00130313 addi x6, x6, 1 x6=1c00926a x6:1c009269 +74522198ns 1309012 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000fa +74522277ns 1309016 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00926a PA:1c00926a +74522297ns 1309017 1c000e82 fff60613 addi x12, x12, -1 x12=000000f9 x12:000000fa +74522316ns 1309018 1c000e84 00130313 addi x6, x6, 1 x6=1c00926b x6:1c00926a +74522336ns 1309019 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f9 +74522415ns 1309023 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00926b PA:1c00926b +74522435ns 1309024 1c000e82 fff60613 addi x12, x12, -1 x12=000000f8 x12:000000f9 +74522455ns 1309025 1c000e84 00130313 addi x6, x6, 1 x6=1c00926c x6:1c00926b +74522475ns 1309026 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f8 +74522554ns 1309030 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00926c PA:1c00926c +74522574ns 1309031 1c000e82 fff60613 addi x12, x12, -1 x12=000000f7 x12:000000f8 +74522593ns 1309032 1c000e84 00130313 addi x6, x6, 1 x6=1c00926d x6:1c00926c +74522613ns 1309033 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f7 +74522692ns 1309037 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00926d PA:1c00926d +74522712ns 1309038 1c000e82 fff60613 addi x12, x12, -1 x12=000000f6 x12:000000f7 +74522732ns 1309039 1c000e84 00130313 addi x6, x6, 1 x6=1c00926e x6:1c00926d +74522752ns 1309040 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f6 +74522831ns 1309044 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00926e PA:1c00926e +74522851ns 1309045 1c000e82 fff60613 addi x12, x12, -1 x12=000000f5 x12:000000f6 +74522871ns 1309046 1c000e84 00130313 addi x6, x6, 1 x6=1c00926f x6:1c00926e +74522890ns 1309047 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f5 +74522970ns 1309051 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00926f PA:1c00926f +74522989ns 1309052 1c000e82 fff60613 addi x12, x12, -1 x12=000000f4 x12:000000f5 +74523009ns 1309053 1c000e84 00130313 addi x6, x6, 1 x6=1c009270 x6:1c00926f +74523029ns 1309054 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f4 +74523108ns 1309058 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009270 PA:1c009270 +74523128ns 1309059 1c000e82 fff60613 addi x12, x12, -1 x12=000000f3 x12:000000f4 +74523148ns 1309060 1c000e84 00130313 addi x6, x6, 1 x6=1c009271 x6:1c009270 +74523167ns 1309061 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f3 +74523247ns 1309065 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009271 PA:1c009271 +74523266ns 1309066 1c000e82 fff60613 addi x12, x12, -1 x12=000000f2 x12:000000f3 +74523286ns 1309067 1c000e84 00130313 addi x6, x6, 1 x6=1c009272 x6:1c009271 +74523306ns 1309068 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f2 +74523385ns 1309072 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009272 PA:1c009272 +74523405ns 1309073 1c000e82 fff60613 addi x12, x12, -1 x12=000000f1 x12:000000f2 +74523425ns 1309074 1c000e84 00130313 addi x6, x6, 1 x6=1c009273 x6:1c009272 +74523445ns 1309075 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f1 +74523524ns 1309079 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009273 PA:1c009273 +74523544ns 1309080 1c000e82 fff60613 addi x12, x12, -1 x12=000000f0 x12:000000f1 +74523563ns 1309081 1c000e84 00130313 addi x6, x6, 1 x6=1c009274 x6:1c009273 +74523583ns 1309082 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f0 +74523662ns 1309086 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009274 PA:1c009274 +74523682ns 1309087 1c000e82 fff60613 addi x12, x12, -1 x12=000000ef x12:000000f0 +74523702ns 1309088 1c000e84 00130313 addi x6, x6, 1 x6=1c009275 x6:1c009274 +74523722ns 1309089 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ef +74523801ns 1309093 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009275 PA:1c009275 +74523821ns 1309094 1c000e82 fff60613 addi x12, x12, -1 x12=000000ee x12:000000ef +74523840ns 1309095 1c000e84 00130313 addi x6, x6, 1 x6=1c009276 x6:1c009275 +74523860ns 1309096 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ee +74523939ns 1309100 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009276 PA:1c009276 +74523959ns 1309101 1c000e82 fff60613 addi x12, x12, -1 x12=000000ed x12:000000ee +74523979ns 1309102 1c000e84 00130313 addi x6, x6, 1 x6=1c009277 x6:1c009276 +74523999ns 1309103 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ed +74524078ns 1309107 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009277 PA:1c009277 +74524098ns 1309108 1c000e82 fff60613 addi x12, x12, -1 x12=000000ec x12:000000ed +74524117ns 1309109 1c000e84 00130313 addi x6, x6, 1 x6=1c009278 x6:1c009277 +74524137ns 1309110 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ec +74524216ns 1309114 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009278 PA:1c009278 +74524236ns 1309115 1c000e82 fff60613 addi x12, x12, -1 x12=000000eb x12:000000ec +74524256ns 1309116 1c000e84 00130313 addi x6, x6, 1 x6=1c009279 x6:1c009278 +74524276ns 1309117 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000eb +74524355ns 1309121 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009279 PA:1c009279 +74524375ns 1309122 1c000e82 fff60613 addi x12, x12, -1 x12=000000ea x12:000000eb +74524395ns 1309123 1c000e84 00130313 addi x6, x6, 1 x6=1c00927a x6:1c009279 +74524414ns 1309124 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ea +74524494ns 1309128 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00927a PA:1c00927a +74524513ns 1309129 1c000e82 fff60613 addi x12, x12, -1 x12=000000e9 x12:000000ea +74524533ns 1309130 1c000e84 00130313 addi x6, x6, 1 x6=1c00927b x6:1c00927a +74524553ns 1309131 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e9 +74524632ns 1309135 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00927b PA:1c00927b +74524652ns 1309136 1c000e82 fff60613 addi x12, x12, -1 x12=000000e8 x12:000000e9 +74524672ns 1309137 1c000e84 00130313 addi x6, x6, 1 x6=1c00927c x6:1c00927b +74524691ns 1309138 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e8 +74524771ns 1309142 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00927c PA:1c00927c +74524790ns 1309143 1c000e82 fff60613 addi x12, x12, -1 x12=000000e7 x12:000000e8 +74524810ns 1309144 1c000e84 00130313 addi x6, x6, 1 x6=1c00927d x6:1c00927c +74524830ns 1309145 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e7 +74524909ns 1309149 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00927d PA:1c00927d +74524929ns 1309150 1c000e82 fff60613 addi x12, x12, -1 x12=000000e6 x12:000000e7 +74524949ns 1309151 1c000e84 00130313 addi x6, x6, 1 x6=1c00927e x6:1c00927d +74524969ns 1309152 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e6 +74525048ns 1309156 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00927e PA:1c00927e +74525067ns 1309157 1c000e82 fff60613 addi x12, x12, -1 x12=000000e5 x12:000000e6 +74525087ns 1309158 1c000e84 00130313 addi x6, x6, 1 x6=1c00927f x6:1c00927e +74525107ns 1309159 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e5 +74525186ns 1309163 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00927f PA:1c00927f +74525206ns 1309164 1c000e82 fff60613 addi x12, x12, -1 x12=000000e4 x12:000000e5 +74525226ns 1309165 1c000e84 00130313 addi x6, x6, 1 x6=1c009280 x6:1c00927f +74525246ns 1309166 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e4 +74525325ns 1309170 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009280 PA:1c009280 +74525345ns 1309171 1c000e82 fff60613 addi x12, x12, -1 x12=000000e3 x12:000000e4 +74525364ns 1309172 1c000e84 00130313 addi x6, x6, 1 x6=1c009281 x6:1c009280 +74525384ns 1309173 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e3 +74525463ns 1309177 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009281 PA:1c009281 +74525483ns 1309178 1c000e82 fff60613 addi x12, x12, -1 x12=000000e2 x12:000000e3 +74525503ns 1309179 1c000e84 00130313 addi x6, x6, 1 x6=1c009282 x6:1c009281 +74525523ns 1309180 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e2 +74525602ns 1309184 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009282 PA:1c009282 +74525622ns 1309185 1c000e82 fff60613 addi x12, x12, -1 x12=000000e1 x12:000000e2 +74525641ns 1309186 1c000e84 00130313 addi x6, x6, 1 x6=1c009283 x6:1c009282 +74525661ns 1309187 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e1 +74525740ns 1309191 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009283 PA:1c009283 +74525760ns 1309192 1c000e82 fff60613 addi x12, x12, -1 x12=000000e0 x12:000000e1 +74525780ns 1309193 1c000e84 00130313 addi x6, x6, 1 x6=1c009284 x6:1c009283 +74525800ns 1309194 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e0 +74525879ns 1309198 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009284 PA:1c009284 +74525899ns 1309199 1c000e82 fff60613 addi x12, x12, -1 x12=000000df x12:000000e0 +74525919ns 1309200 1c000e84 00130313 addi x6, x6, 1 x6=1c009285 x6:1c009284 +74525938ns 1309201 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000df +74526018ns 1309205 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009285 PA:1c009285 +74526037ns 1309206 1c000e82 fff60613 addi x12, x12, -1 x12=000000de x12:000000df +74526057ns 1309207 1c000e84 00130313 addi x6, x6, 1 x6=1c009286 x6:1c009285 +74526077ns 1309208 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000de +74526156ns 1309212 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009286 PA:1c009286 +74526176ns 1309213 1c000e82 fff60613 addi x12, x12, -1 x12=000000dd x12:000000de +74526196ns 1309214 1c000e84 00130313 addi x6, x6, 1 x6=1c009287 x6:1c009286 +74526215ns 1309215 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000dd +74526295ns 1309219 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009287 PA:1c009287 +74526314ns 1309220 1c000e82 fff60613 addi x12, x12, -1 x12=000000dc x12:000000dd +74526334ns 1309221 1c000e84 00130313 addi x6, x6, 1 x6=1c009288 x6:1c009287 +74526354ns 1309222 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000dc +74526433ns 1309226 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009288 PA:1c009288 +74526453ns 1309227 1c000e82 fff60613 addi x12, x12, -1 x12=000000db x12:000000dc +74526473ns 1309228 1c000e84 00130313 addi x6, x6, 1 x6=1c009289 x6:1c009288 +74526493ns 1309229 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000db +74526572ns 1309233 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009289 PA:1c009289 +74526591ns 1309234 1c000e82 fff60613 addi x12, x12, -1 x12=000000da x12:000000db +74526611ns 1309235 1c000e84 00130313 addi x6, x6, 1 x6=1c00928a x6:1c009289 +74526631ns 1309236 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000da +74526710ns 1309240 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00928a PA:1c00928a +74526730ns 1309241 1c000e82 fff60613 addi x12, x12, -1 x12=000000d9 x12:000000da +74526750ns 1309242 1c000e84 00130313 addi x6, x6, 1 x6=1c00928b x6:1c00928a +74526770ns 1309243 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d9 +74526849ns 1309247 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00928b PA:1c00928b +74526869ns 1309248 1c000e82 fff60613 addi x12, x12, -1 x12=000000d8 x12:000000d9 +74526888ns 1309249 1c000e84 00130313 addi x6, x6, 1 x6=1c00928c x6:1c00928b +74526908ns 1309250 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d8 +74526987ns 1309254 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00928c PA:1c00928c +74527007ns 1309255 1c000e82 fff60613 addi x12, x12, -1 x12=000000d7 x12:000000d8 +74527027ns 1309256 1c000e84 00130313 addi x6, x6, 1 x6=1c00928d x6:1c00928c +74527047ns 1309257 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d7 +74527126ns 1309261 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00928d PA:1c00928d +74527146ns 1309262 1c000e82 fff60613 addi x12, x12, -1 x12=000000d6 x12:000000d7 +74527165ns 1309263 1c000e84 00130313 addi x6, x6, 1 x6=1c00928e x6:1c00928d +74527185ns 1309264 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d6 +74527264ns 1309268 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00928e PA:1c00928e +74527284ns 1309269 1c000e82 fff60613 addi x12, x12, -1 x12=000000d5 x12:000000d6 +74527304ns 1309270 1c000e84 00130313 addi x6, x6, 1 x6=1c00928f x6:1c00928e +74527324ns 1309271 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d5 +74527403ns 1309275 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00928f PA:1c00928f +74527423ns 1309276 1c000e82 fff60613 addi x12, x12, -1 x12=000000d4 x12:000000d5 +74527443ns 1309277 1c000e84 00130313 addi x6, x6, 1 x6=1c009290 x6:1c00928f +74527462ns 1309278 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d4 +74527541ns 1309282 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009290 PA:1c009290 +74527561ns 1309283 1c000e82 fff60613 addi x12, x12, -1 x12=000000d3 x12:000000d4 +74527581ns 1309284 1c000e84 00130313 addi x6, x6, 1 x6=1c009291 x6:1c009290 +74527601ns 1309285 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d3 +74527680ns 1309289 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009291 PA:1c009291 +74527700ns 1309290 1c000e82 fff60613 addi x12, x12, -1 x12=000000d2 x12:000000d3 +74527720ns 1309291 1c000e84 00130313 addi x6, x6, 1 x6=1c009292 x6:1c009291 +74527739ns 1309292 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d2 +74527819ns 1309296 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009292 PA:1c009292 +74527838ns 1309297 1c000e82 fff60613 addi x12, x12, -1 x12=000000d1 x12:000000d2 +74527858ns 1309298 1c000e84 00130313 addi x6, x6, 1 x6=1c009293 x6:1c009292 +74527878ns 1309299 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d1 +74527957ns 1309303 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009293 PA:1c009293 +74527977ns 1309304 1c000e82 fff60613 addi x12, x12, -1 x12=000000d0 x12:000000d1 +74527997ns 1309305 1c000e84 00130313 addi x6, x6, 1 x6=1c009294 x6:1c009293 +74528017ns 1309306 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d0 +74528096ns 1309310 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009294 PA:1c009294 +74528115ns 1309311 1c000e82 fff60613 addi x12, x12, -1 x12=000000cf x12:000000d0 +74528135ns 1309312 1c000e84 00130313 addi x6, x6, 1 x6=1c009295 x6:1c009294 +74528155ns 1309313 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000cf +74528234ns 1309317 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009295 PA:1c009295 +74528254ns 1309318 1c000e82 fff60613 addi x12, x12, -1 x12=000000ce x12:000000cf +74528274ns 1309319 1c000e84 00130313 addi x6, x6, 1 x6=1c009296 x6:1c009295 +74528294ns 1309320 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ce +74528373ns 1309324 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009296 PA:1c009296 +74528393ns 1309325 1c000e82 fff60613 addi x12, x12, -1 x12=000000cd x12:000000ce +74528412ns 1309326 1c000e84 00130313 addi x6, x6, 1 x6=1c009297 x6:1c009296 +74528432ns 1309327 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000cd +74528511ns 1309331 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009297 PA:1c009297 +74528531ns 1309332 1c000e82 fff60613 addi x12, x12, -1 x12=000000cc x12:000000cd +74528551ns 1309333 1c000e84 00130313 addi x6, x6, 1 x6=1c009298 x6:1c009297 +74528571ns 1309334 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000cc +74528650ns 1309338 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009298 PA:1c009298 +74528670ns 1309339 1c000e82 fff60613 addi x12, x12, -1 x12=000000cb x12:000000cc +74528689ns 1309340 1c000e84 00130313 addi x6, x6, 1 x6=1c009299 x6:1c009298 +74528709ns 1309341 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000cb +74528788ns 1309345 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009299 PA:1c009299 +74528808ns 1309346 1c000e82 fff60613 addi x12, x12, -1 x12=000000ca x12:000000cb +74528828ns 1309347 1c000e84 00130313 addi x6, x6, 1 x6=1c00929a x6:1c009299 +74528848ns 1309348 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ca +74528927ns 1309352 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00929a PA:1c00929a +74528947ns 1309353 1c000e82 fff60613 addi x12, x12, -1 x12=000000c9 x12:000000ca +74528967ns 1309354 1c000e84 00130313 addi x6, x6, 1 x6=1c00929b x6:1c00929a +74528986ns 1309355 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c9 +74529065ns 1309359 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00929b PA:1c00929b +74529085ns 1309360 1c000e82 fff60613 addi x12, x12, -1 x12=000000c8 x12:000000c9 +74529105ns 1309361 1c000e84 00130313 addi x6, x6, 1 x6=1c00929c x6:1c00929b +74529125ns 1309362 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c8 +74529204ns 1309366 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00929c PA:1c00929c +74529224ns 1309367 1c000e82 fff60613 addi x12, x12, -1 x12=000000c7 x12:000000c8 +74529244ns 1309368 1c000e84 00130313 addi x6, x6, 1 x6=1c00929d x6:1c00929c +74529263ns 1309369 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c7 +74529343ns 1309373 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00929d PA:1c00929d +74529362ns 1309374 1c000e82 fff60613 addi x12, x12, -1 x12=000000c6 x12:000000c7 +74529382ns 1309375 1c000e84 00130313 addi x6, x6, 1 x6=1c00929e x6:1c00929d +74529402ns 1309376 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c6 +74529481ns 1309380 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00929e PA:1c00929e +74529501ns 1309381 1c000e82 fff60613 addi x12, x12, -1 x12=000000c5 x12:000000c6 +74529521ns 1309382 1c000e84 00130313 addi x6, x6, 1 x6=1c00929f x6:1c00929e +74529540ns 1309383 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c5 +74529620ns 1309387 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00929f PA:1c00929f +74529639ns 1309388 1c000e82 fff60613 addi x12, x12, -1 x12=000000c4 x12:000000c5 +74529659ns 1309389 1c000e84 00130313 addi x6, x6, 1 x6=1c0092a0 x6:1c00929f +74529679ns 1309390 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c4 +74529758ns 1309394 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092a0 PA:1c0092a0 +74529778ns 1309395 1c000e82 fff60613 addi x12, x12, -1 x12=000000c3 x12:000000c4 +74529798ns 1309396 1c000e84 00130313 addi x6, x6, 1 x6=1c0092a1 x6:1c0092a0 +74529818ns 1309397 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c3 +74529897ns 1309401 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092a1 PA:1c0092a1 +74529917ns 1309402 1c000e82 fff60613 addi x12, x12, -1 x12=000000c2 x12:000000c3 +74529936ns 1309403 1c000e84 00130313 addi x6, x6, 1 x6=1c0092a2 x6:1c0092a1 +74529956ns 1309404 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c2 +74530035ns 1309408 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092a2 PA:1c0092a2 +74530055ns 1309409 1c000e82 fff60613 addi x12, x12, -1 x12=000000c1 x12:000000c2 +74530075ns 1309410 1c000e84 00130313 addi x6, x6, 1 x6=1c0092a3 x6:1c0092a2 +74530095ns 1309411 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c1 +74530174ns 1309415 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092a3 PA:1c0092a3 +74530194ns 1309416 1c000e82 fff60613 addi x12, x12, -1 x12=000000c0 x12:000000c1 +74530213ns 1309417 1c000e84 00130313 addi x6, x6, 1 x6=1c0092a4 x6:1c0092a3 +74530233ns 1309418 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c0 +74530312ns 1309422 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092a4 PA:1c0092a4 +74530332ns 1309423 1c000e82 fff60613 addi x12, x12, -1 x12=000000bf x12:000000c0 +74530352ns 1309424 1c000e84 00130313 addi x6, x6, 1 x6=1c0092a5 x6:1c0092a4 +74530372ns 1309425 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000bf +74530451ns 1309429 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092a5 PA:1c0092a5 +74530471ns 1309430 1c000e82 fff60613 addi x12, x12, -1 x12=000000be x12:000000bf +74530491ns 1309431 1c000e84 00130313 addi x6, x6, 1 x6=1c0092a6 x6:1c0092a5 +74530510ns 1309432 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000be +74530589ns 1309436 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092a6 PA:1c0092a6 +74530609ns 1309437 1c000e82 fff60613 addi x12, x12, -1 x12=000000bd x12:000000be +74530629ns 1309438 1c000e84 00130313 addi x6, x6, 1 x6=1c0092a7 x6:1c0092a6 +74530649ns 1309439 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000bd +74530728ns 1309443 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092a7 PA:1c0092a7 +74530748ns 1309444 1c000e82 fff60613 addi x12, x12, -1 x12=000000bc x12:000000bd +74530768ns 1309445 1c000e84 00130313 addi x6, x6, 1 x6=1c0092a8 x6:1c0092a7 +74530787ns 1309446 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000bc +74530867ns 1309450 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092a8 PA:1c0092a8 +74530886ns 1309451 1c000e82 fff60613 addi x12, x12, -1 x12=000000bb x12:000000bc +74530906ns 1309452 1c000e84 00130313 addi x6, x6, 1 x6=1c0092a9 x6:1c0092a8 +74530926ns 1309453 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000bb +74531005ns 1309457 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092a9 PA:1c0092a9 +74531025ns 1309458 1c000e82 fff60613 addi x12, x12, -1 x12=000000ba x12:000000bb +74531045ns 1309459 1c000e84 00130313 addi x6, x6, 1 x6=1c0092aa x6:1c0092a9 +74531064ns 1309460 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ba +74531144ns 1309464 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092aa PA:1c0092aa +74531163ns 1309465 1c000e82 fff60613 addi x12, x12, -1 x12=000000b9 x12:000000ba +74531183ns 1309466 1c000e84 00130313 addi x6, x6, 1 x6=1c0092ab x6:1c0092aa +74531203ns 1309467 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b9 +74531282ns 1309471 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092ab PA:1c0092ab +74531302ns 1309472 1c000e82 fff60613 addi x12, x12, -1 x12=000000b8 x12:000000b9 +74531322ns 1309473 1c000e84 00130313 addi x6, x6, 1 x6=1c0092ac x6:1c0092ab +74531342ns 1309474 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b8 +74531421ns 1309478 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092ac PA:1c0092ac +74531441ns 1309479 1c000e82 fff60613 addi x12, x12, -1 x12=000000b7 x12:000000b8 +74531460ns 1309480 1c000e84 00130313 addi x6, x6, 1 x6=1c0092ad x6:1c0092ac +74531480ns 1309481 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b7 +74531559ns 1309485 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092ad PA:1c0092ad +74531579ns 1309486 1c000e82 fff60613 addi x12, x12, -1 x12=000000b6 x12:000000b7 +74531599ns 1309487 1c000e84 00130313 addi x6, x6, 1 x6=1c0092ae x6:1c0092ad +74531619ns 1309488 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b6 +74531698ns 1309492 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092ae PA:1c0092ae +74531718ns 1309493 1c000e82 fff60613 addi x12, x12, -1 x12=000000b5 x12:000000b6 +74531737ns 1309494 1c000e84 00130313 addi x6, x6, 1 x6=1c0092af x6:1c0092ae +74531757ns 1309495 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b5 +74531836ns 1309499 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092af PA:1c0092af +74531856ns 1309500 1c000e82 fff60613 addi x12, x12, -1 x12=000000b4 x12:000000b5 +74531876ns 1309501 1c000e84 00130313 addi x6, x6, 1 x6=1c0092b0 x6:1c0092af +74531896ns 1309502 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b4 +74531975ns 1309506 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092b0 PA:1c0092b0 +74531995ns 1309507 1c000e82 fff60613 addi x12, x12, -1 x12=000000b3 x12:000000b4 +74532014ns 1309508 1c000e84 00130313 addi x6, x6, 1 x6=1c0092b1 x6:1c0092b0 +74532034ns 1309509 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b3 +74532113ns 1309513 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092b1 PA:1c0092b1 +74532133ns 1309514 1c000e82 fff60613 addi x12, x12, -1 x12=000000b2 x12:000000b3 +74532153ns 1309515 1c000e84 00130313 addi x6, x6, 1 x6=1c0092b2 x6:1c0092b1 +74532173ns 1309516 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b2 +74532252ns 1309520 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092b2 PA:1c0092b2 +74532272ns 1309521 1c000e82 fff60613 addi x12, x12, -1 x12=000000b1 x12:000000b2 +74532292ns 1309522 1c000e84 00130313 addi x6, x6, 1 x6=1c0092b3 x6:1c0092b2 +74532311ns 1309523 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b1 +74532391ns 1309527 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092b3 PA:1c0092b3 +74532410ns 1309528 1c000e82 fff60613 addi x12, x12, -1 x12=000000b0 x12:000000b1 +74532430ns 1309529 1c000e84 00130313 addi x6, x6, 1 x6=1c0092b4 x6:1c0092b3 +74532450ns 1309530 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b0 +74532529ns 1309534 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092b4 PA:1c0092b4 +74532549ns 1309535 1c000e82 fff60613 addi x12, x12, -1 x12=000000af x12:000000b0 +74532569ns 1309536 1c000e84 00130313 addi x6, x6, 1 x6=1c0092b5 x6:1c0092b4 +74532588ns 1309537 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000af +74532668ns 1309541 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092b5 PA:1c0092b5 +74532687ns 1309542 1c000e82 fff60613 addi x12, x12, -1 x12=000000ae x12:000000af +74532707ns 1309543 1c000e84 00130313 addi x6, x6, 1 x6=1c0092b6 x6:1c0092b5 +74532727ns 1309544 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ae +74532806ns 1309548 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092b6 PA:1c0092b6 +74532826ns 1309549 1c000e82 fff60613 addi x12, x12, -1 x12=000000ad x12:000000ae +74532846ns 1309550 1c000e84 00130313 addi x6, x6, 1 x6=1c0092b7 x6:1c0092b6 +74532866ns 1309551 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ad +74532945ns 1309555 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092b7 PA:1c0092b7 +74532965ns 1309556 1c000e82 fff60613 addi x12, x12, -1 x12=000000ac x12:000000ad +74532984ns 1309557 1c000e84 00130313 addi x6, x6, 1 x6=1c0092b8 x6:1c0092b7 +74533004ns 1309558 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ac +74533083ns 1309562 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092b8 PA:1c0092b8 +74533103ns 1309563 1c000e82 fff60613 addi x12, x12, -1 x12=000000ab x12:000000ac +74533123ns 1309564 1c000e84 00130313 addi x6, x6, 1 x6=1c0092b9 x6:1c0092b8 +74533143ns 1309565 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ab +74533222ns 1309569 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092b9 PA:1c0092b9 +74533242ns 1309570 1c000e82 fff60613 addi x12, x12, -1 x12=000000aa x12:000000ab +74533261ns 1309571 1c000e84 00130313 addi x6, x6, 1 x6=1c0092ba x6:1c0092b9 +74533281ns 1309572 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000aa +74533360ns 1309576 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092ba PA:1c0092ba +74533380ns 1309577 1c000e82 fff60613 addi x12, x12, -1 x12=000000a9 x12:000000aa +74533400ns 1309578 1c000e84 00130313 addi x6, x6, 1 x6=1c0092bb x6:1c0092ba +74533420ns 1309579 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a9 +74533499ns 1309583 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092bb PA:1c0092bb +74533519ns 1309584 1c000e82 fff60613 addi x12, x12, -1 x12=000000a8 x12:000000a9 +74533538ns 1309585 1c000e84 00130313 addi x6, x6, 1 x6=1c0092bc x6:1c0092bb +74533558ns 1309586 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a8 +74533637ns 1309590 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092bc PA:1c0092bc +74533657ns 1309591 1c000e82 fff60613 addi x12, x12, -1 x12=000000a7 x12:000000a8 +74533677ns 1309592 1c000e84 00130313 addi x6, x6, 1 x6=1c0092bd x6:1c0092bc +74533697ns 1309593 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a7 +74533776ns 1309597 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092bd PA:1c0092bd +74533796ns 1309598 1c000e82 fff60613 addi x12, x12, -1 x12=000000a6 x12:000000a7 +74533816ns 1309599 1c000e84 00130313 addi x6, x6, 1 x6=1c0092be x6:1c0092bd +74533835ns 1309600 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a6 +74533915ns 1309604 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092be PA:1c0092be +74533934ns 1309605 1c000e82 fff60613 addi x12, x12, -1 x12=000000a5 x12:000000a6 +74533954ns 1309606 1c000e84 00130313 addi x6, x6, 1 x6=1c0092bf x6:1c0092be +74533974ns 1309607 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a5 +74534053ns 1309611 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092bf PA:1c0092bf +74534073ns 1309612 1c000e82 fff60613 addi x12, x12, -1 x12=000000a4 x12:000000a5 +74534093ns 1309613 1c000e84 00130313 addi x6, x6, 1 x6=1c0092c0 x6:1c0092bf +74534112ns 1309614 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a4 +74534192ns 1309618 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092c0 PA:1c0092c0 +74534211ns 1309619 1c000e82 fff60613 addi x12, x12, -1 x12=000000a3 x12:000000a4 +74534231ns 1309620 1c000e84 00130313 addi x6, x6, 1 x6=1c0092c1 x6:1c0092c0 +74534251ns 1309621 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a3 +74534330ns 1309625 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092c1 PA:1c0092c1 +74534350ns 1309626 1c000e82 fff60613 addi x12, x12, -1 x12=000000a2 x12:000000a3 +74534370ns 1309627 1c000e84 00130313 addi x6, x6, 1 x6=1c0092c2 x6:1c0092c1 +74534390ns 1309628 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a2 +74534469ns 1309632 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092c2 PA:1c0092c2 +74534488ns 1309633 1c000e82 fff60613 addi x12, x12, -1 x12=000000a1 x12:000000a2 +74534508ns 1309634 1c000e84 00130313 addi x6, x6, 1 x6=1c0092c3 x6:1c0092c2 +74534528ns 1309635 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a1 +74534607ns 1309639 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092c3 PA:1c0092c3 +74534627ns 1309640 1c000e82 fff60613 addi x12, x12, -1 x12=000000a0 x12:000000a1 +74534647ns 1309641 1c000e84 00130313 addi x6, x6, 1 x6=1c0092c4 x6:1c0092c3 +74534667ns 1309642 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a0 +74534746ns 1309646 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092c4 PA:1c0092c4 +74534766ns 1309647 1c000e82 fff60613 addi x12, x12, -1 x12=0000009f x12:000000a0 +74534785ns 1309648 1c000e84 00130313 addi x6, x6, 1 x6=1c0092c5 x6:1c0092c4 +74534805ns 1309649 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000009f +74534884ns 1309653 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092c5 PA:1c0092c5 +74534904ns 1309654 1c000e82 fff60613 addi x12, x12, -1 x12=0000009e x12:0000009f +74534924ns 1309655 1c000e84 00130313 addi x6, x6, 1 x6=1c0092c6 x6:1c0092c5 +74534944ns 1309656 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000009e +74535023ns 1309660 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092c6 PA:1c0092c6 +74535043ns 1309661 1c000e82 fff60613 addi x12, x12, -1 x12=0000009d x12:0000009e +74535062ns 1309662 1c000e84 00130313 addi x6, x6, 1 x6=1c0092c7 x6:1c0092c6 +74535082ns 1309663 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000009d +74535161ns 1309667 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092c7 PA:1c0092c7 +74535181ns 1309668 1c000e82 fff60613 addi x12, x12, -1 x12=0000009c x12:0000009d +74535201ns 1309669 1c000e84 00130313 addi x6, x6, 1 x6=1c0092c8 x6:1c0092c7 +74535221ns 1309670 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000009c +74535300ns 1309674 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092c8 PA:1c0092c8 +74535320ns 1309675 1c000e82 fff60613 addi x12, x12, -1 x12=0000009b x12:0000009c +74535340ns 1309676 1c000e84 00130313 addi x6, x6, 1 x6=1c0092c9 x6:1c0092c8 +74535359ns 1309677 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000009b +74535439ns 1309681 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092c9 PA:1c0092c9 +74535458ns 1309682 1c000e82 fff60613 addi x12, x12, -1 x12=0000009a x12:0000009b +74535478ns 1309683 1c000e84 00130313 addi x6, x6, 1 x6=1c0092ca x6:1c0092c9 +74535498ns 1309684 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000009a +74535577ns 1309688 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092ca PA:1c0092ca +74535597ns 1309689 1c000e82 fff60613 addi x12, x12, -1 x12=00000099 x12:0000009a +74535617ns 1309690 1c000e84 00130313 addi x6, x6, 1 x6=1c0092cb x6:1c0092ca +74535636ns 1309691 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000099 +74535716ns 1309695 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092cb PA:1c0092cb +74535735ns 1309696 1c000e82 fff60613 addi x12, x12, -1 x12=00000098 x12:00000099 +74535755ns 1309697 1c000e84 00130313 addi x6, x6, 1 x6=1c0092cc x6:1c0092cb +74535775ns 1309698 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000098 +74535854ns 1309702 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092cc PA:1c0092cc +74535874ns 1309703 1c000e82 fff60613 addi x12, x12, -1 x12=00000097 x12:00000098 +74535894ns 1309704 1c000e84 00130313 addi x6, x6, 1 x6=1c0092cd x6:1c0092cc +74535914ns 1309705 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000097 +74535993ns 1309709 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092cd PA:1c0092cd +74536012ns 1309710 1c000e82 fff60613 addi x12, x12, -1 x12=00000096 x12:00000097 +74536032ns 1309711 1c000e84 00130313 addi x6, x6, 1 x6=1c0092ce x6:1c0092cd +74536052ns 1309712 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000096 +74536131ns 1309716 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092ce PA:1c0092ce +74536151ns 1309717 1c000e82 fff60613 addi x12, x12, -1 x12=00000095 x12:00000096 +74536171ns 1309718 1c000e84 00130313 addi x6, x6, 1 x6=1c0092cf x6:1c0092ce +74536191ns 1309719 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000095 +74536270ns 1309723 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092cf PA:1c0092cf +74536290ns 1309724 1c000e82 fff60613 addi x12, x12, -1 x12=00000094 x12:00000095 +74536309ns 1309725 1c000e84 00130313 addi x6, x6, 1 x6=1c0092d0 x6:1c0092cf +74536329ns 1309726 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000094 +74536408ns 1309730 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092d0 PA:1c0092d0 +74536428ns 1309731 1c000e82 fff60613 addi x12, x12, -1 x12=00000093 x12:00000094 +74536448ns 1309732 1c000e84 00130313 addi x6, x6, 1 x6=1c0092d1 x6:1c0092d0 +74536468ns 1309733 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000093 +74536547ns 1309737 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092d1 PA:1c0092d1 +74536567ns 1309738 1c000e82 fff60613 addi x12, x12, -1 x12=00000092 x12:00000093 +74536586ns 1309739 1c000e84 00130313 addi x6, x6, 1 x6=1c0092d2 x6:1c0092d1 +74536606ns 1309740 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000092 +74536685ns 1309744 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092d2 PA:1c0092d2 +74536705ns 1309745 1c000e82 fff60613 addi x12, x12, -1 x12=00000091 x12:00000092 +74536725ns 1309746 1c000e84 00130313 addi x6, x6, 1 x6=1c0092d3 x6:1c0092d2 +74536745ns 1309747 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000091 +74536824ns 1309751 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092d3 PA:1c0092d3 +74536844ns 1309752 1c000e82 fff60613 addi x12, x12, -1 x12=00000090 x12:00000091 +74536864ns 1309753 1c000e84 00130313 addi x6, x6, 1 x6=1c0092d4 x6:1c0092d3 +74536883ns 1309754 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000090 +74536962ns 1309758 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092d4 PA:1c0092d4 +74536982ns 1309759 1c000e82 fff60613 addi x12, x12, -1 x12=0000008f x12:00000090 +74537002ns 1309760 1c000e84 00130313 addi x6, x6, 1 x6=1c0092d5 x6:1c0092d4 +74537022ns 1309761 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000008f +74537101ns 1309765 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092d5 PA:1c0092d5 +74537121ns 1309766 1c000e82 fff60613 addi x12, x12, -1 x12=0000008e x12:0000008f +74537141ns 1309767 1c000e84 00130313 addi x6, x6, 1 x6=1c0092d6 x6:1c0092d5 +74537160ns 1309768 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000008e +74537240ns 1309772 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092d6 PA:1c0092d6 +74537259ns 1309773 1c000e82 fff60613 addi x12, x12, -1 x12=0000008d x12:0000008e +74537279ns 1309774 1c000e84 00130313 addi x6, x6, 1 x6=1c0092d7 x6:1c0092d6 +74537299ns 1309775 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000008d +74537378ns 1309779 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092d7 PA:1c0092d7 +74537398ns 1309780 1c000e82 fff60613 addi x12, x12, -1 x12=0000008c x12:0000008d +74537418ns 1309781 1c000e84 00130313 addi x6, x6, 1 x6=1c0092d8 x6:1c0092d7 +74537437ns 1309782 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000008c +74537517ns 1309786 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092d8 PA:1c0092d8 +74537536ns 1309787 1c000e82 fff60613 addi x12, x12, -1 x12=0000008b x12:0000008c +74537556ns 1309788 1c000e84 00130313 addi x6, x6, 1 x6=1c0092d9 x6:1c0092d8 +74537576ns 1309789 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000008b +74537655ns 1309793 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092d9 PA:1c0092d9 +74537675ns 1309794 1c000e82 fff60613 addi x12, x12, -1 x12=0000008a x12:0000008b +74537695ns 1309795 1c000e84 00130313 addi x6, x6, 1 x6=1c0092da x6:1c0092d9 +74537715ns 1309796 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000008a +74537794ns 1309800 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092da PA:1c0092da +74537814ns 1309801 1c000e82 fff60613 addi x12, x12, -1 x12=00000089 x12:0000008a +74537833ns 1309802 1c000e84 00130313 addi x6, x6, 1 x6=1c0092db x6:1c0092da +74537853ns 1309803 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000089 +74537932ns 1309807 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092db PA:1c0092db +74537952ns 1309808 1c000e82 fff60613 addi x12, x12, -1 x12=00000088 x12:00000089 +74537972ns 1309809 1c000e84 00130313 addi x6, x6, 1 x6=1c0092dc x6:1c0092db +74537992ns 1309810 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000088 +74538071ns 1309814 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092dc PA:1c0092dc +74538091ns 1309815 1c000e82 fff60613 addi x12, x12, -1 x12=00000087 x12:00000088 +74538110ns 1309816 1c000e84 00130313 addi x6, x6, 1 x6=1c0092dd x6:1c0092dc +74538130ns 1309817 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000087 +74538209ns 1309821 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092dd PA:1c0092dd +74538229ns 1309822 1c000e82 fff60613 addi x12, x12, -1 x12=00000086 x12:00000087 +74538249ns 1309823 1c000e84 00130313 addi x6, x6, 1 x6=1c0092de x6:1c0092dd +74538269ns 1309824 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000086 +74538348ns 1309828 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092de PA:1c0092de +74538368ns 1309829 1c000e82 fff60613 addi x12, x12, -1 x12=00000085 x12:00000086 +74538388ns 1309830 1c000e84 00130313 addi x6, x6, 1 x6=1c0092df x6:1c0092de +74538407ns 1309831 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000085 +74538486ns 1309835 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092df PA:1c0092df +74538506ns 1309836 1c000e82 fff60613 addi x12, x12, -1 x12=00000084 x12:00000085 +74538526ns 1309837 1c000e84 00130313 addi x6, x6, 1 x6=1c0092e0 x6:1c0092df +74538546ns 1309838 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000084 +74538625ns 1309842 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092e0 PA:1c0092e0 +74538645ns 1309843 1c000e82 fff60613 addi x12, x12, -1 x12=00000083 x12:00000084 +74538665ns 1309844 1c000e84 00130313 addi x6, x6, 1 x6=1c0092e1 x6:1c0092e0 +74538684ns 1309845 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000083 +74538764ns 1309849 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092e1 PA:1c0092e1 +74538783ns 1309850 1c000e82 fff60613 addi x12, x12, -1 x12=00000082 x12:00000083 +74538803ns 1309851 1c000e84 00130313 addi x6, x6, 1 x6=1c0092e2 x6:1c0092e1 +74538823ns 1309852 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000082 +74538902ns 1309856 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092e2 PA:1c0092e2 +74538922ns 1309857 1c000e82 fff60613 addi x12, x12, -1 x12=00000081 x12:00000082 +74538942ns 1309858 1c000e84 00130313 addi x6, x6, 1 x6=1c0092e3 x6:1c0092e2 +74538961ns 1309859 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000081 +74539041ns 1309863 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092e3 PA:1c0092e3 +74539060ns 1309864 1c000e82 fff60613 addi x12, x12, -1 x12=00000080 x12:00000081 +74539080ns 1309865 1c000e84 00130313 addi x6, x6, 1 x6=1c0092e4 x6:1c0092e3 +74539100ns 1309866 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000080 +74539179ns 1309870 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092e4 PA:1c0092e4 +74539199ns 1309871 1c000e82 fff60613 addi x12, x12, -1 x12=0000007f x12:00000080 +74539219ns 1309872 1c000e84 00130313 addi x6, x6, 1 x6=1c0092e5 x6:1c0092e4 +74539239ns 1309873 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000007f +74539318ns 1309877 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092e5 PA:1c0092e5 +74539338ns 1309878 1c000e82 fff60613 addi x12, x12, -1 x12=0000007e x12:0000007f +74539357ns 1309879 1c000e84 00130313 addi x6, x6, 1 x6=1c0092e6 x6:1c0092e5 +74539377ns 1309880 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000007e +74539456ns 1309884 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092e6 PA:1c0092e6 +74539476ns 1309885 1c000e82 fff60613 addi x12, x12, -1 x12=0000007d x12:0000007e +74539496ns 1309886 1c000e84 00130313 addi x6, x6, 1 x6=1c0092e7 x6:1c0092e6 +74539516ns 1309887 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000007d +74539595ns 1309891 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092e7 PA:1c0092e7 +74539615ns 1309892 1c000e82 fff60613 addi x12, x12, -1 x12=0000007c x12:0000007d +74539634ns 1309893 1c000e84 00130313 addi x6, x6, 1 x6=1c0092e8 x6:1c0092e7 +74539654ns 1309894 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000007c +74539733ns 1309898 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092e8 PA:1c0092e8 +74539753ns 1309899 1c000e82 fff60613 addi x12, x12, -1 x12=0000007b x12:0000007c +74539773ns 1309900 1c000e84 00130313 addi x6, x6, 1 x6=1c0092e9 x6:1c0092e8 +74539793ns 1309901 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000007b +74539872ns 1309905 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092e9 PA:1c0092e9 +74539892ns 1309906 1c000e82 fff60613 addi x12, x12, -1 x12=0000007a x12:0000007b +74539911ns 1309907 1c000e84 00130313 addi x6, x6, 1 x6=1c0092ea x6:1c0092e9 +74539931ns 1309908 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000007a +74540010ns 1309912 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092ea PA:1c0092ea +74540030ns 1309913 1c000e82 fff60613 addi x12, x12, -1 x12=00000079 x12:0000007a +74540050ns 1309914 1c000e84 00130313 addi x6, x6, 1 x6=1c0092eb x6:1c0092ea +74540070ns 1309915 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000079 +74540149ns 1309919 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092eb PA:1c0092eb +74540169ns 1309920 1c000e82 fff60613 addi x12, x12, -1 x12=00000078 x12:00000079 +74540189ns 1309921 1c000e84 00130313 addi x6, x6, 1 x6=1c0092ec x6:1c0092eb +74540208ns 1309922 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000078 +74540288ns 1309926 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092ec PA:1c0092ec +74540307ns 1309927 1c000e82 fff60613 addi x12, x12, -1 x12=00000077 x12:00000078 +74540327ns 1309928 1c000e84 00130313 addi x6, x6, 1 x6=1c0092ed x6:1c0092ec +74540347ns 1309929 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000077 +74540426ns 1309933 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092ed PA:1c0092ed +74540446ns 1309934 1c000e82 fff60613 addi x12, x12, -1 x12=00000076 x12:00000077 +74540466ns 1309935 1c000e84 00130313 addi x6, x6, 1 x6=1c0092ee x6:1c0092ed +74540485ns 1309936 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000076 +74540565ns 1309940 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092ee PA:1c0092ee +74540584ns 1309941 1c000e82 fff60613 addi x12, x12, -1 x12=00000075 x12:00000076 +74540604ns 1309942 1c000e84 00130313 addi x6, x6, 1 x6=1c0092ef x6:1c0092ee +74540624ns 1309943 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000075 +74540703ns 1309947 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092ef PA:1c0092ef +74540723ns 1309948 1c000e82 fff60613 addi x12, x12, -1 x12=00000074 x12:00000075 +74540743ns 1309949 1c000e84 00130313 addi x6, x6, 1 x6=1c0092f0 x6:1c0092ef +74540763ns 1309950 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000074 +74540842ns 1309954 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092f0 PA:1c0092f0 +74540862ns 1309955 1c000e82 fff60613 addi x12, x12, -1 x12=00000073 x12:00000074 +74540881ns 1309956 1c000e84 00130313 addi x6, x6, 1 x6=1c0092f1 x6:1c0092f0 +74540901ns 1309957 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000073 +74540980ns 1309961 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092f1 PA:1c0092f1 +74541000ns 1309962 1c000e82 fff60613 addi x12, x12, -1 x12=00000072 x12:00000073 +74541020ns 1309963 1c000e84 00130313 addi x6, x6, 1 x6=1c0092f2 x6:1c0092f1 +74541040ns 1309964 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000072 +74541119ns 1309968 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092f2 PA:1c0092f2 +74541139ns 1309969 1c000e82 fff60613 addi x12, x12, -1 x12=00000071 x12:00000072 +74541158ns 1309970 1c000e84 00130313 addi x6, x6, 1 x6=1c0092f3 x6:1c0092f2 +74541178ns 1309971 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000071 +74541257ns 1309975 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092f3 PA:1c0092f3 +74541277ns 1309976 1c000e82 fff60613 addi x12, x12, -1 x12=00000070 x12:00000071 +74541297ns 1309977 1c000e84 00130313 addi x6, x6, 1 x6=1c0092f4 x6:1c0092f3 +74541317ns 1309978 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000070 +74541396ns 1309982 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092f4 PA:1c0092f4 +74541416ns 1309983 1c000e82 fff60613 addi x12, x12, -1 x12=0000006f x12:00000070 +74541435ns 1309984 1c000e84 00130313 addi x6, x6, 1 x6=1c0092f5 x6:1c0092f4 +74541455ns 1309985 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000006f +74541534ns 1309989 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092f5 PA:1c0092f5 +74541554ns 1309990 1c000e82 fff60613 addi x12, x12, -1 x12=0000006e x12:0000006f +74541574ns 1309991 1c000e84 00130313 addi x6, x6, 1 x6=1c0092f6 x6:1c0092f5 +74541594ns 1309992 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000006e +74541673ns 1309996 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092f6 PA:1c0092f6 +74541693ns 1309997 1c000e82 fff60613 addi x12, x12, -1 x12=0000006d x12:0000006e +74541713ns 1309998 1c000e84 00130313 addi x6, x6, 1 x6=1c0092f7 x6:1c0092f6 +74541732ns 1309999 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000006d +74541812ns 1310003 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092f7 PA:1c0092f7 +74541831ns 1310004 1c000e82 fff60613 addi x12, x12, -1 x12=0000006c x12:0000006d +74541851ns 1310005 1c000e84 00130313 addi x6, x6, 1 x6=1c0092f8 x6:1c0092f7 +74541871ns 1310006 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000006c +74541950ns 1310010 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092f8 PA:1c0092f8 +74541970ns 1310011 1c000e82 fff60613 addi x12, x12, -1 x12=0000006b x12:0000006c +74541990ns 1310012 1c000e84 00130313 addi x6, x6, 1 x6=1c0092f9 x6:1c0092f8 +74542009ns 1310013 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000006b +74542089ns 1310017 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092f9 PA:1c0092f9 +74542108ns 1310018 1c000e82 fff60613 addi x12, x12, -1 x12=0000006a x12:0000006b +74542128ns 1310019 1c000e84 00130313 addi x6, x6, 1 x6=1c0092fa x6:1c0092f9 +74542148ns 1310020 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000006a +74542227ns 1310024 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092fa PA:1c0092fa +74542247ns 1310025 1c000e82 fff60613 addi x12, x12, -1 x12=00000069 x12:0000006a +74542267ns 1310026 1c000e84 00130313 addi x6, x6, 1 x6=1c0092fb x6:1c0092fa +74542287ns 1310027 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000069 +74542366ns 1310031 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092fb PA:1c0092fb +74542385ns 1310032 1c000e82 fff60613 addi x12, x12, -1 x12=00000068 x12:00000069 +74542405ns 1310033 1c000e84 00130313 addi x6, x6, 1 x6=1c0092fc x6:1c0092fb +74542425ns 1310034 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000068 +74542504ns 1310038 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092fc PA:1c0092fc +74542524ns 1310039 1c000e82 fff60613 addi x12, x12, -1 x12=00000067 x12:00000068 +74542544ns 1310040 1c000e84 00130313 addi x6, x6, 1 x6=1c0092fd x6:1c0092fc +74542564ns 1310041 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000067 +74542643ns 1310045 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092fd PA:1c0092fd +74542663ns 1310046 1c000e82 fff60613 addi x12, x12, -1 x12=00000066 x12:00000067 +74542682ns 1310047 1c000e84 00130313 addi x6, x6, 1 x6=1c0092fe x6:1c0092fd +74542702ns 1310048 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000066 +74542781ns 1310052 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092fe PA:1c0092fe +74542801ns 1310053 1c000e82 fff60613 addi x12, x12, -1 x12=00000065 x12:00000066 +74542821ns 1310054 1c000e84 00130313 addi x6, x6, 1 x6=1c0092ff x6:1c0092fe +74542841ns 1310055 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000065 +74542920ns 1310059 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092ff PA:1c0092ff +74542940ns 1310060 1c000e82 fff60613 addi x12, x12, -1 x12=00000064 x12:00000065 +74542959ns 1310061 1c000e84 00130313 addi x6, x6, 1 x6=1c009300 x6:1c0092ff +74542979ns 1310062 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000064 +74543058ns 1310066 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009300 PA:1c009300 +74543078ns 1310067 1c000e82 fff60613 addi x12, x12, -1 x12=00000063 x12:00000064 +74543098ns 1310068 1c000e84 00130313 addi x6, x6, 1 x6=1c009301 x6:1c009300 +74543118ns 1310069 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000063 +74543197ns 1310073 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009301 PA:1c009301 +74543217ns 1310074 1c000e82 fff60613 addi x12, x12, -1 x12=00000062 x12:00000063 +74543237ns 1310075 1c000e84 00130313 addi x6, x6, 1 x6=1c009302 x6:1c009301 +74543256ns 1310076 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000062 +74543336ns 1310080 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009302 PA:1c009302 +74543355ns 1310081 1c000e82 fff60613 addi x12, x12, -1 x12=00000061 x12:00000062 +74543375ns 1310082 1c000e84 00130313 addi x6, x6, 1 x6=1c009303 x6:1c009302 +74543395ns 1310083 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000061 +74543474ns 1310087 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009303 PA:1c009303 +74543494ns 1310088 1c000e82 fff60613 addi x12, x12, -1 x12=00000060 x12:00000061 +74543514ns 1310089 1c000e84 00130313 addi x6, x6, 1 x6=1c009304 x6:1c009303 +74543533ns 1310090 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000060 +74543613ns 1310094 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009304 PA:1c009304 +74543632ns 1310095 1c000e82 fff60613 addi x12, x12, -1 x12=0000005f x12:00000060 +74543652ns 1310096 1c000e84 00130313 addi x6, x6, 1 x6=1c009305 x6:1c009304 +74543672ns 1310097 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000005f +74543751ns 1310101 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009305 PA:1c009305 +74543771ns 1310102 1c000e82 fff60613 addi x12, x12, -1 x12=0000005e x12:0000005f +74543791ns 1310103 1c000e84 00130313 addi x6, x6, 1 x6=1c009306 x6:1c009305 +74543811ns 1310104 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000005e +74543890ns 1310108 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009306 PA:1c009306 +74543909ns 1310109 1c000e82 fff60613 addi x12, x12, -1 x12=0000005d x12:0000005e +74543929ns 1310110 1c000e84 00130313 addi x6, x6, 1 x6=1c009307 x6:1c009306 +74543949ns 1310111 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000005d +74544028ns 1310115 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009307 PA:1c009307 +74544048ns 1310116 1c000e82 fff60613 addi x12, x12, -1 x12=0000005c x12:0000005d +74544068ns 1310117 1c000e84 00130313 addi x6, x6, 1 x6=1c009308 x6:1c009307 +74544088ns 1310118 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000005c +74544167ns 1310122 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009308 PA:1c009308 +74544187ns 1310123 1c000e82 fff60613 addi x12, x12, -1 x12=0000005b x12:0000005c +74544206ns 1310124 1c000e84 00130313 addi x6, x6, 1 x6=1c009309 x6:1c009308 +74544226ns 1310125 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000005b +74544305ns 1310129 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009309 PA:1c009309 +74544325ns 1310130 1c000e82 fff60613 addi x12, x12, -1 x12=0000005a x12:0000005b +74544345ns 1310131 1c000e84 00130313 addi x6, x6, 1 x6=1c00930a x6:1c009309 +74544365ns 1310132 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000005a +74544444ns 1310136 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00930a PA:1c00930a +74544464ns 1310137 1c000e82 fff60613 addi x12, x12, -1 x12=00000059 x12:0000005a +74544483ns 1310138 1c000e84 00130313 addi x6, x6, 1 x6=1c00930b x6:1c00930a +74544503ns 1310139 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000059 +74544582ns 1310143 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00930b PA:1c00930b +74544602ns 1310144 1c000e82 fff60613 addi x12, x12, -1 x12=00000058 x12:00000059 +74544622ns 1310145 1c000e84 00130313 addi x6, x6, 1 x6=1c00930c x6:1c00930b +74544642ns 1310146 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000058 +74544721ns 1310150 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00930c PA:1c00930c +74544741ns 1310151 1c000e82 fff60613 addi x12, x12, -1 x12=00000057 x12:00000058 +74544761ns 1310152 1c000e84 00130313 addi x6, x6, 1 x6=1c00930d x6:1c00930c +74544780ns 1310153 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000057 +74544859ns 1310157 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00930d PA:1c00930d +74544879ns 1310158 1c000e82 fff60613 addi x12, x12, -1 x12=00000056 x12:00000057 +74544899ns 1310159 1c000e84 00130313 addi x6, x6, 1 x6=1c00930e x6:1c00930d +74544919ns 1310160 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000056 +74544998ns 1310164 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00930e PA:1c00930e +74545018ns 1310165 1c000e82 fff60613 addi x12, x12, -1 x12=00000055 x12:00000056 +74545038ns 1310166 1c000e84 00130313 addi x6, x6, 1 x6=1c00930f x6:1c00930e +74545057ns 1310167 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000055 +74545137ns 1310171 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00930f PA:1c00930f +74545156ns 1310172 1c000e82 fff60613 addi x12, x12, -1 x12=00000054 x12:00000055 +74545176ns 1310173 1c000e84 00130313 addi x6, x6, 1 x6=1c009310 x6:1c00930f +74545196ns 1310174 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000054 +74545275ns 1310178 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009310 PA:1c009310 +74545295ns 1310179 1c000e82 fff60613 addi x12, x12, -1 x12=00000053 x12:00000054 +74545315ns 1310180 1c000e84 00130313 addi x6, x6, 1 x6=1c009311 x6:1c009310 +74545335ns 1310181 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000053 +74545414ns 1310185 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009311 PA:1c009311 +74545433ns 1310186 1c000e82 fff60613 addi x12, x12, -1 x12=00000052 x12:00000053 +74545453ns 1310187 1c000e84 00130313 addi x6, x6, 1 x6=1c009312 x6:1c009311 +74545473ns 1310188 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000052 +74545552ns 1310192 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009312 PA:1c009312 +74545572ns 1310193 1c000e82 fff60613 addi x12, x12, -1 x12=00000051 x12:00000052 +74545592ns 1310194 1c000e84 00130313 addi x6, x6, 1 x6=1c009313 x6:1c009312 +74545612ns 1310195 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000051 +74545691ns 1310199 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009313 PA:1c009313 +74545711ns 1310200 1c000e82 fff60613 addi x12, x12, -1 x12=00000050 x12:00000051 +74545730ns 1310201 1c000e84 00130313 addi x6, x6, 1 x6=1c009314 x6:1c009313 +74545750ns 1310202 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000050 +74545829ns 1310206 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009314 PA:1c009314 +74545849ns 1310207 1c000e82 fff60613 addi x12, x12, -1 x12=0000004f x12:00000050 +74545869ns 1310208 1c000e84 00130313 addi x6, x6, 1 x6=1c009315 x6:1c009314 +74545889ns 1310209 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000004f +74545968ns 1310213 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009315 PA:1c009315 +74545988ns 1310214 1c000e82 fff60613 addi x12, x12, -1 x12=0000004e x12:0000004f +74546007ns 1310215 1c000e84 00130313 addi x6, x6, 1 x6=1c009316 x6:1c009315 +74546027ns 1310216 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000004e +74546106ns 1310220 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009316 PA:1c009316 +74546126ns 1310221 1c000e82 fff60613 addi x12, x12, -1 x12=0000004d x12:0000004e +74546146ns 1310222 1c000e84 00130313 addi x6, x6, 1 x6=1c009317 x6:1c009316 +74546166ns 1310223 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000004d +74546245ns 1310227 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009317 PA:1c009317 +74546265ns 1310228 1c000e82 fff60613 addi x12, x12, -1 x12=0000004c x12:0000004d +74546285ns 1310229 1c000e84 00130313 addi x6, x6, 1 x6=1c009318 x6:1c009317 +74546304ns 1310230 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000004c +74546383ns 1310234 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009318 PA:1c009318 +74546403ns 1310235 1c000e82 fff60613 addi x12, x12, -1 x12=0000004b x12:0000004c +74546423ns 1310236 1c000e84 00130313 addi x6, x6, 1 x6=1c009319 x6:1c009318 +74546443ns 1310237 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000004b +74546522ns 1310241 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009319 PA:1c009319 +74546542ns 1310242 1c000e82 fff60613 addi x12, x12, -1 x12=0000004a x12:0000004b +74546562ns 1310243 1c000e84 00130313 addi x6, x6, 1 x6=1c00931a x6:1c009319 +74546581ns 1310244 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000004a +74546661ns 1310248 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00931a PA:1c00931a +74546680ns 1310249 1c000e82 fff60613 addi x12, x12, -1 x12=00000049 x12:0000004a +74546700ns 1310250 1c000e84 00130313 addi x6, x6, 1 x6=1c00931b x6:1c00931a +74546720ns 1310251 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000049 +74546799ns 1310255 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00931b PA:1c00931b +74546819ns 1310256 1c000e82 fff60613 addi x12, x12, -1 x12=00000048 x12:00000049 +74546839ns 1310257 1c000e84 00130313 addi x6, x6, 1 x6=1c00931c x6:1c00931b +74546858ns 1310258 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000048 +74546938ns 1310262 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00931c PA:1c00931c +74546957ns 1310263 1c000e82 fff60613 addi x12, x12, -1 x12=00000047 x12:00000048 +74546977ns 1310264 1c000e84 00130313 addi x6, x6, 1 x6=1c00931d x6:1c00931c +74546997ns 1310265 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000047 +74547076ns 1310269 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00931d PA:1c00931d +74547096ns 1310270 1c000e82 fff60613 addi x12, x12, -1 x12=00000046 x12:00000047 +74547116ns 1310271 1c000e84 00130313 addi x6, x6, 1 x6=1c00931e x6:1c00931d +74547136ns 1310272 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000046 +74547215ns 1310276 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00931e PA:1c00931e +74547235ns 1310277 1c000e82 fff60613 addi x12, x12, -1 x12=00000045 x12:00000046 +74547254ns 1310278 1c000e84 00130313 addi x6, x6, 1 x6=1c00931f x6:1c00931e +74547274ns 1310279 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000045 +74547353ns 1310283 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00931f PA:1c00931f +74547373ns 1310284 1c000e82 fff60613 addi x12, x12, -1 x12=00000044 x12:00000045 +74547393ns 1310285 1c000e84 00130313 addi x6, x6, 1 x6=1c009320 x6:1c00931f +74547413ns 1310286 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000044 +74547492ns 1310290 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009320 PA:1c009320 +74547512ns 1310291 1c000e82 fff60613 addi x12, x12, -1 x12=00000043 x12:00000044 +74547531ns 1310292 1c000e84 00130313 addi x6, x6, 1 x6=1c009321 x6:1c009320 +74547551ns 1310293 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000043 +74547630ns 1310297 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009321 PA:1c009321 +74547650ns 1310298 1c000e82 fff60613 addi x12, x12, -1 x12=00000042 x12:00000043 +74547670ns 1310299 1c000e84 00130313 addi x6, x6, 1 x6=1c009322 x6:1c009321 +74547690ns 1310300 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000042 +74547769ns 1310304 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009322 PA:1c009322 +74547789ns 1310305 1c000e82 fff60613 addi x12, x12, -1 x12=00000041 x12:00000042 +74547809ns 1310306 1c000e84 00130313 addi x6, x6, 1 x6=1c009323 x6:1c009322 +74547828ns 1310307 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000041 +74547907ns 1310311 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009323 PA:1c009323 +74547927ns 1310312 1c000e82 fff60613 addi x12, x12, -1 x12=00000040 x12:00000041 +74547947ns 1310313 1c000e84 00130313 addi x6, x6, 1 x6=1c009324 x6:1c009323 +74547967ns 1310314 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000040 +74548046ns 1310318 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009324 PA:1c009324 +74548066ns 1310319 1c000e82 fff60613 addi x12, x12, -1 x12=0000003f x12:00000040 +74548086ns 1310320 1c000e84 00130313 addi x6, x6, 1 x6=1c009325 x6:1c009324 +74548105ns 1310321 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000003f +74548185ns 1310325 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009325 PA:1c009325 +74548204ns 1310326 1c000e82 fff60613 addi x12, x12, -1 x12=0000003e x12:0000003f +74548224ns 1310327 1c000e84 00130313 addi x6, x6, 1 x6=1c009326 x6:1c009325 +74548244ns 1310328 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000003e +74548323ns 1310332 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009326 PA:1c009326 +74548343ns 1310333 1c000e82 fff60613 addi x12, x12, -1 x12=0000003d x12:0000003e +74548363ns 1310334 1c000e84 00130313 addi x6, x6, 1 x6=1c009327 x6:1c009326 +74548382ns 1310335 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000003d +74548462ns 1310339 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009327 PA:1c009327 +74548481ns 1310340 1c000e82 fff60613 addi x12, x12, -1 x12=0000003c x12:0000003d +74548501ns 1310341 1c000e84 00130313 addi x6, x6, 1 x6=1c009328 x6:1c009327 +74548521ns 1310342 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000003c +74548600ns 1310346 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009328 PA:1c009328 +74548620ns 1310347 1c000e82 fff60613 addi x12, x12, -1 x12=0000003b x12:0000003c +74548640ns 1310348 1c000e84 00130313 addi x6, x6, 1 x6=1c009329 x6:1c009328 +74548660ns 1310349 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000003b +74548739ns 1310353 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009329 PA:1c009329 +74548759ns 1310354 1c000e82 fff60613 addi x12, x12, -1 x12=0000003a x12:0000003b +74548778ns 1310355 1c000e84 00130313 addi x6, x6, 1 x6=1c00932a x6:1c009329 +74548798ns 1310356 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000003a +74548877ns 1310360 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00932a PA:1c00932a +74548897ns 1310361 1c000e82 fff60613 addi x12, x12, -1 x12=00000039 x12:0000003a +74548917ns 1310362 1c000e84 00130313 addi x6, x6, 1 x6=1c00932b x6:1c00932a +74548937ns 1310363 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000039 +74549016ns 1310367 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00932b PA:1c00932b +74549036ns 1310368 1c000e82 fff60613 addi x12, x12, -1 x12=00000038 x12:00000039 +74549055ns 1310369 1c000e84 00130313 addi x6, x6, 1 x6=1c00932c x6:1c00932b +74549075ns 1310370 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000038 +74549154ns 1310374 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00932c PA:1c00932c +74549174ns 1310375 1c000e82 fff60613 addi x12, x12, -1 x12=00000037 x12:00000038 +74549194ns 1310376 1c000e84 00130313 addi x6, x6, 1 x6=1c00932d x6:1c00932c +74549214ns 1310377 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000037 +74549293ns 1310381 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00932d PA:1c00932d +74549313ns 1310382 1c000e82 fff60613 addi x12, x12, -1 x12=00000036 x12:00000037 +74549332ns 1310383 1c000e84 00130313 addi x6, x6, 1 x6=1c00932e x6:1c00932d +74549352ns 1310384 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000036 +74549431ns 1310388 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00932e PA:1c00932e +74549451ns 1310389 1c000e82 fff60613 addi x12, x12, -1 x12=00000035 x12:00000036 +74549471ns 1310390 1c000e84 00130313 addi x6, x6, 1 x6=1c00932f x6:1c00932e +74549491ns 1310391 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000035 +74549570ns 1310395 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00932f PA:1c00932f +74549590ns 1310396 1c000e82 fff60613 addi x12, x12, -1 x12=00000034 x12:00000035 +74549610ns 1310397 1c000e84 00130313 addi x6, x6, 1 x6=1c009330 x6:1c00932f +74549629ns 1310398 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000034 +74549709ns 1310402 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009330 PA:1c009330 +74549728ns 1310403 1c000e82 fff60613 addi x12, x12, -1 x12=00000033 x12:00000034 +74549748ns 1310404 1c000e84 00130313 addi x6, x6, 1 x6=1c009331 x6:1c009330 +74549768ns 1310405 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000033 +74549847ns 1310409 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009331 PA:1c009331 +74549867ns 1310410 1c000e82 fff60613 addi x12, x12, -1 x12=00000032 x12:00000033 +74549887ns 1310411 1c000e84 00130313 addi x6, x6, 1 x6=1c009332 x6:1c009331 +74549906ns 1310412 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000032 +74549986ns 1310416 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009332 PA:1c009332 +74550005ns 1310417 1c000e82 fff60613 addi x12, x12, -1 x12=00000031 x12:00000032 +74550025ns 1310418 1c000e84 00130313 addi x6, x6, 1 x6=1c009333 x6:1c009332 +74550045ns 1310419 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000031 +74550124ns 1310423 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009333 PA:1c009333 +74550144ns 1310424 1c000e82 fff60613 addi x12, x12, -1 x12=00000030 x12:00000031 +74550164ns 1310425 1c000e84 00130313 addi x6, x6, 1 x6=1c009334 x6:1c009333 +74550184ns 1310426 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000030 +74550263ns 1310430 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009334 PA:1c009334 +74550283ns 1310431 1c000e82 fff60613 addi x12, x12, -1 x12=0000002f x12:00000030 +74550302ns 1310432 1c000e84 00130313 addi x6, x6, 1 x6=1c009335 x6:1c009334 +74550322ns 1310433 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000002f +74550401ns 1310437 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009335 PA:1c009335 +74550421ns 1310438 1c000e82 fff60613 addi x12, x12, -1 x12=0000002e x12:0000002f +74550441ns 1310439 1c000e84 00130313 addi x6, x6, 1 x6=1c009336 x6:1c009335 +74550461ns 1310440 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000002e +74550540ns 1310444 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009336 PA:1c009336 +74550560ns 1310445 1c000e82 fff60613 addi x12, x12, -1 x12=0000002d x12:0000002e +74550579ns 1310446 1c000e84 00130313 addi x6, x6, 1 x6=1c009337 x6:1c009336 +74550599ns 1310447 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000002d +74550678ns 1310451 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009337 PA:1c009337 +74550698ns 1310452 1c000e82 fff60613 addi x12, x12, -1 x12=0000002c x12:0000002d +74550718ns 1310453 1c000e84 00130313 addi x6, x6, 1 x6=1c009338 x6:1c009337 +74550738ns 1310454 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000002c +74550817ns 1310458 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009338 PA:1c009338 +74550837ns 1310459 1c000e82 fff60613 addi x12, x12, -1 x12=0000002b x12:0000002c +74550856ns 1310460 1c000e84 00130313 addi x6, x6, 1 x6=1c009339 x6:1c009338 +74550876ns 1310461 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000002b +74550955ns 1310465 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009339 PA:1c009339 +74550975ns 1310466 1c000e82 fff60613 addi x12, x12, -1 x12=0000002a x12:0000002b +74550995ns 1310467 1c000e84 00130313 addi x6, x6, 1 x6=1c00933a x6:1c009339 +74551015ns 1310468 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000002a +74551094ns 1310472 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00933a PA:1c00933a +74551114ns 1310473 1c000e82 fff60613 addi x12, x12, -1 x12=00000029 x12:0000002a +74551134ns 1310474 1c000e84 00130313 addi x6, x6, 1 x6=1c00933b x6:1c00933a +74551153ns 1310475 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000029 +74551233ns 1310479 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00933b PA:1c00933b +74551252ns 1310480 1c000e82 fff60613 addi x12, x12, -1 x12=00000028 x12:00000029 +74551272ns 1310481 1c000e84 00130313 addi x6, x6, 1 x6=1c00933c x6:1c00933b +74551292ns 1310482 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000028 +74551371ns 1310486 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00933c PA:1c00933c +74551391ns 1310487 1c000e82 fff60613 addi x12, x12, -1 x12=00000027 x12:00000028 +74551411ns 1310488 1c000e84 00130313 addi x6, x6, 1 x6=1c00933d x6:1c00933c +74551430ns 1310489 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000027 +74551510ns 1310493 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00933d PA:1c00933d +74551529ns 1310494 1c000e82 fff60613 addi x12, x12, -1 x12=00000026 x12:00000027 +74551549ns 1310495 1c000e84 00130313 addi x6, x6, 1 x6=1c00933e x6:1c00933d +74551569ns 1310496 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000026 +74551648ns 1310500 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00933e PA:1c00933e +74551668ns 1310501 1c000e82 fff60613 addi x12, x12, -1 x12=00000025 x12:00000026 +74551688ns 1310502 1c000e84 00130313 addi x6, x6, 1 x6=1c00933f x6:1c00933e +74551708ns 1310503 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000025 +74551787ns 1310507 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00933f PA:1c00933f +74551806ns 1310508 1c000e82 fff60613 addi x12, x12, -1 x12=00000024 x12:00000025 +74551826ns 1310509 1c000e84 00130313 addi x6, x6, 1 x6=1c009340 x6:1c00933f +74551846ns 1310510 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000024 +74551925ns 1310514 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009340 PA:1c009340 +74551945ns 1310515 1c000e82 fff60613 addi x12, x12, -1 x12=00000023 x12:00000024 +74551965ns 1310516 1c000e84 00130313 addi x6, x6, 1 x6=1c009341 x6:1c009340 +74551985ns 1310517 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000023 +74552064ns 1310521 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009341 PA:1c009341 +74552084ns 1310522 1c000e82 fff60613 addi x12, x12, -1 x12=00000022 x12:00000023 +74552103ns 1310523 1c000e84 00130313 addi x6, x6, 1 x6=1c009342 x6:1c009341 +74552123ns 1310524 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000022 +74552202ns 1310528 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009342 PA:1c009342 +74552222ns 1310529 1c000e82 fff60613 addi x12, x12, -1 x12=00000021 x12:00000022 +74552242ns 1310530 1c000e84 00130313 addi x6, x6, 1 x6=1c009343 x6:1c009342 +74552262ns 1310531 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000021 +74552341ns 1310535 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009343 PA:1c009343 +74552361ns 1310536 1c000e82 fff60613 addi x12, x12, -1 x12=00000020 x12:00000021 +74552380ns 1310537 1c000e84 00130313 addi x6, x6, 1 x6=1c009344 x6:1c009343 +74552400ns 1310538 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000020 +74552479ns 1310542 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009344 PA:1c009344 +74552499ns 1310543 1c000e82 fff60613 addi x12, x12, -1 x12=0000001f x12:00000020 +74552519ns 1310544 1c000e84 00130313 addi x6, x6, 1 x6=1c009345 x6:1c009344 +74552539ns 1310545 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000001f +74552618ns 1310549 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009345 PA:1c009345 +74552638ns 1310550 1c000e82 fff60613 addi x12, x12, -1 x12=0000001e x12:0000001f +74552658ns 1310551 1c000e84 00130313 addi x6, x6, 1 x6=1c009346 x6:1c009345 +74552677ns 1310552 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000001e +74552757ns 1310556 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009346 PA:1c009346 +74552776ns 1310557 1c000e82 fff60613 addi x12, x12, -1 x12=0000001d x12:0000001e +74552796ns 1310558 1c000e84 00130313 addi x6, x6, 1 x6=1c009347 x6:1c009346 +74552816ns 1310559 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000001d +74552895ns 1310563 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009347 PA:1c009347 +74552915ns 1310564 1c000e82 fff60613 addi x12, x12, -1 x12=0000001c x12:0000001d +74552935ns 1310565 1c000e84 00130313 addi x6, x6, 1 x6=1c009348 x6:1c009347 +74552954ns 1310566 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000001c +74553034ns 1310570 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009348 PA:1c009348 +74553053ns 1310571 1c000e82 fff60613 addi x12, x12, -1 x12=0000001b x12:0000001c +74553073ns 1310572 1c000e84 00130313 addi x6, x6, 1 x6=1c009349 x6:1c009348 +74553093ns 1310573 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000001b +74553172ns 1310577 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009349 PA:1c009349 +74553192ns 1310578 1c000e82 fff60613 addi x12, x12, -1 x12=0000001a x12:0000001b +74553212ns 1310579 1c000e84 00130313 addi x6, x6, 1 x6=1c00934a x6:1c009349 +74553232ns 1310580 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000001a +74553311ns 1310584 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00934a PA:1c00934a +74553330ns 1310585 1c000e82 fff60613 addi x12, x12, -1 x12=00000019 x12:0000001a +74553350ns 1310586 1c000e84 00130313 addi x6, x6, 1 x6=1c00934b x6:1c00934a +74553370ns 1310587 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000019 +74553449ns 1310591 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00934b PA:1c00934b +74553469ns 1310592 1c000e82 fff60613 addi x12, x12, -1 x12=00000018 x12:00000019 +74553489ns 1310593 1c000e84 00130313 addi x6, x6, 1 x6=1c00934c x6:1c00934b +74553509ns 1310594 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000018 +74553588ns 1310598 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00934c PA:1c00934c +74553608ns 1310599 1c000e82 fff60613 addi x12, x12, -1 x12=00000017 x12:00000018 +74553627ns 1310600 1c000e84 00130313 addi x6, x6, 1 x6=1c00934d x6:1c00934c +74553647ns 1310601 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000017 +74553726ns 1310605 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00934d PA:1c00934d +74553746ns 1310606 1c000e82 fff60613 addi x12, x12, -1 x12=00000016 x12:00000017 +74553766ns 1310607 1c000e84 00130313 addi x6, x6, 1 x6=1c00934e x6:1c00934d +74553786ns 1310608 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000016 +74553865ns 1310612 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00934e PA:1c00934e +74553885ns 1310613 1c000e82 fff60613 addi x12, x12, -1 x12=00000015 x12:00000016 +74553904ns 1310614 1c000e84 00130313 addi x6, x6, 1 x6=1c00934f x6:1c00934e +74553924ns 1310615 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000015 +74554003ns 1310619 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00934f PA:1c00934f +74554023ns 1310620 1c000e82 fff60613 addi x12, x12, -1 x12=00000014 x12:00000015 +74554043ns 1310621 1c000e84 00130313 addi x6, x6, 1 x6=1c009350 x6:1c00934f +74554063ns 1310622 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000014 +74554142ns 1310626 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009350 PA:1c009350 +74554162ns 1310627 1c000e82 fff60613 addi x12, x12, -1 x12=00000013 x12:00000014 +74554182ns 1310628 1c000e84 00130313 addi x6, x6, 1 x6=1c009351 x6:1c009350 +74554201ns 1310629 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000013 +74554280ns 1310633 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009351 PA:1c009351 +74554300ns 1310634 1c000e82 fff60613 addi x12, x12, -1 x12=00000012 x12:00000013 +74554320ns 1310635 1c000e84 00130313 addi x6, x6, 1 x6=1c009352 x6:1c009351 +74554340ns 1310636 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000012 +74554419ns 1310640 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009352 PA:1c009352 +74554439ns 1310641 1c000e82 fff60613 addi x12, x12, -1 x12=00000011 x12:00000012 +74554459ns 1310642 1c000e84 00130313 addi x6, x6, 1 x6=1c009353 x6:1c009352 +74554478ns 1310643 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000011 +74554558ns 1310647 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009353 PA:1c009353 +74554577ns 1310648 1c000e82 fff60613 addi x12, x12, -1 x12=00000010 x12:00000011 +74554597ns 1310649 1c000e84 00130313 addi x6, x6, 1 x6=1c009354 x6:1c009353 +74554617ns 1310650 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000010 +74554696ns 1310654 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009354 PA:1c009354 +74554716ns 1310655 1c000e82 fff60613 addi x12, x12, -1 x12=0000000f x12:00000010 +74554736ns 1310656 1c000e84 00130313 addi x6, x6, 1 x6=1c009355 x6:1c009354 +74554755ns 1310657 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000000f +74554835ns 1310661 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009355 PA:1c009355 +74554854ns 1310662 1c000e82 fff60613 addi x12, x12, -1 x12=0000000e x12:0000000f +74554874ns 1310663 1c000e84 00130313 addi x6, x6, 1 x6=1c009356 x6:1c009355 +74554894ns 1310664 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000000e +74554973ns 1310668 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009356 PA:1c009356 +74554993ns 1310669 1c000e82 fff60613 addi x12, x12, -1 x12=0000000d x12:0000000e +74555013ns 1310670 1c000e84 00130313 addi x6, x6, 1 x6=1c009357 x6:1c009356 +74555033ns 1310671 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000000d +74555112ns 1310675 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009357 PA:1c009357 +74555132ns 1310676 1c000e82 fff60613 addi x12, x12, -1 x12=0000000c x12:0000000d +74555151ns 1310677 1c000e84 00130313 addi x6, x6, 1 x6=1c009358 x6:1c009357 +74555171ns 1310678 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000000c +74555250ns 1310682 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009358 PA:1c009358 +74555270ns 1310683 1c000e82 fff60613 addi x12, x12, -1 x12=0000000b x12:0000000c +74555290ns 1310684 1c000e84 00130313 addi x6, x6, 1 x6=1c009359 x6:1c009358 +74555310ns 1310685 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000000b +74555389ns 1310689 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009359 PA:1c009359 +74555409ns 1310690 1c000e82 fff60613 addi x12, x12, -1 x12=0000000a x12:0000000b +74555428ns 1310691 1c000e84 00130313 addi x6, x6, 1 x6=1c00935a x6:1c009359 +74555448ns 1310692 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000000a +74555527ns 1310696 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00935a PA:1c00935a +74555547ns 1310697 1c000e82 fff60613 addi x12, x12, -1 x12=00000009 x12:0000000a +74555567ns 1310698 1c000e84 00130313 addi x6, x6, 1 x6=1c00935b x6:1c00935a +74555587ns 1310699 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000009 +74555666ns 1310703 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00935b PA:1c00935b +74555686ns 1310704 1c000e82 fff60613 addi x12, x12, -1 x12=00000008 x12:00000009 +74555706ns 1310705 1c000e84 00130313 addi x6, x6, 1 x6=1c00935c x6:1c00935b +74555725ns 1310706 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000008 +74555804ns 1310710 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00935c PA:1c00935c +74555824ns 1310711 1c000e82 fff60613 addi x12, x12, -1 x12=00000007 x12:00000008 +74555844ns 1310712 1c000e84 00130313 addi x6, x6, 1 x6=1c00935d x6:1c00935c +74555864ns 1310713 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000007 +74555943ns 1310717 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00935d PA:1c00935d +74555963ns 1310718 1c000e82 fff60613 addi x12, x12, -1 x12=00000006 x12:00000007 +74555983ns 1310719 1c000e84 00130313 addi x6, x6, 1 x6=1c00935e x6:1c00935d +74556002ns 1310720 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000006 +74556082ns 1310724 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00935e PA:1c00935e +74556101ns 1310725 1c000e82 fff60613 addi x12, x12, -1 x12=00000005 x12:00000006 +74556121ns 1310726 1c000e84 00130313 addi x6, x6, 1 x6=1c00935f x6:1c00935e +74556141ns 1310727 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000005 +74556220ns 1310731 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00935f PA:1c00935f +74556240ns 1310732 1c000e82 fff60613 addi x12, x12, -1 x12=00000004 x12:00000005 +74556260ns 1310733 1c000e84 00130313 addi x6, x6, 1 x6=1c009360 x6:1c00935f +74556279ns 1310734 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000004 +74556359ns 1310738 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009360 PA:1c009360 +74556378ns 1310739 1c000e82 fff60613 addi x12, x12, -1 x12=00000003 x12:00000004 +74556398ns 1310740 1c000e84 00130313 addi x6, x6, 1 x6=1c009361 x6:1c009360 +74556418ns 1310741 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000003 +74556497ns 1310745 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009361 PA:1c009361 +74556517ns 1310746 1c000e82 fff60613 addi x12, x12, -1 x12=00000002 x12:00000003 +74556537ns 1310747 1c000e84 00130313 addi x6, x6, 1 x6=1c009362 x6:1c009361 +74556557ns 1310748 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000002 +74556636ns 1310752 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009362 PA:1c009362 +74556656ns 1310753 1c000e82 fff60613 addi x12, x12, -1 x12=00000001 x12:00000002 +74556675ns 1310754 1c000e84 00130313 addi x6, x6, 1 x6=1c009363 x6:1c009362 +74556695ns 1310755 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000001 +74556774ns 1310759 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009363 PA:1c009363 +74556794ns 1310760 1c000e82 fff60613 addi x12, x12, -1 x12=00000000 x12:00000001 +74556814ns 1310761 1c000e84 00130313 addi x6, x6, 1 x6=1c009364 x6:1c009363 +74556834ns 1310762 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000000 +74556853ns 1310763 1c000e88 00008067 jalr x0, x1, 0 x1:1c004616 +74556893ns 1310765 1c004616 00c12083 lw x1, 12(x2) x1=1c004728 x2:1c019940 PA:1c01994c +74556913ns 1310766 1c004618 00800533 add x10, x0, x8 x10=1c0091b8 x8:1c0091b8 +74556933ns 1310767 1c00461a 00812403 lw x8, 8(x2) x8=00000000 x2:1c019940 PA:1c019948 +74556952ns 1310768 1c00461c 00412483 lw x9, 4(x2) x9=1c008c24 x2:1c019940 PA:1c019944 +74556972ns 1310769 1c00461e 00012903 lw x18, 0(x2) x18=1c008bdc x2:1c019940 PA:1c019940 +74556992ns 1310770 1c004620 01010113 addi x2, x2, 16 x2=1c019950 x2:1c019940 +74557012ns 1310771 1c004622 00008067 jalr x0, x1, 0 x1:1c004728 +74557051ns 1310773 1c004728 00a4a023 sw x10, 0(x9) x10:1c0091b8 x9:1c008c24 PA:1c008c24 +74557071ns 1310774 1c00472a 00a00433 add x8, x0, x10 x8=1c0091b8 x10:1c0091b8 +74557091ns 1310775 1c00472c f8051ce3 bne x10, x0, -104 x10:1c0091b8 +74557150ns 1310778 1c0046c4 0004a483 lw x9, 0(x9) x9=1c0091b8 x9:1c008c24 PA:1c008c24 +74557170ns 1310779 1c0046c6 ff1ff06f jal x0, -16 +74557210ns 1310781 1c0046b6 0084a403 lw x8, 8(x9) x8=1c0091c4 x9:1c0091b8 PA:1c0091c0 +74557229ns 1310782 1c0046b8 0044a783 lw x15, 4(x9) x15=00000004 x9:1c0091b8 PA:1c0091bc +74557269ns 1310784 1c0046ba fff78793 addi x15, x15, -1 x15=00000003 x15:00000004 +74557289ns 1310785 1c0046bc 0007d663 bge x15, x0, 12 x15:00000003 +74557348ns 1310788 1c0046c8 00c41703 lh x14, 12(x8) x14=00000000 x8:1c0091c4 PA:1c0091d0 +74557388ns 1310790 1c0046cc 04071763 bne x14, x0, 78 x14:00000000 +74557408ns 1310791 1c0046ce ffff07b7 lui x15, 0xffff0000 x15=ffff0000 +74557427ns 1310792 1c0046d0 00178793 addi x15, x15, 1 x15=ffff0001 x15:ffff0000 +74557447ns 1310793 1c0046d2 06042223 sw x0, 100(x8) x8:1c0091c4 PA:1c009228 +74557467ns 1310794 1c0046d6 00042023 sw x0, 0(x8) x8:1c0091c4 PA:1c0091c4 +74557487ns 1310795 1c0046da 00042223 sw x0, 4(x8) x8:1c0091c4 PA:1c0091c8 +74557507ns 1310796 1c0046de 00042423 sw x0, 8(x8) x8:1c0091c4 PA:1c0091cc +74557526ns 1310797 1c0046e2 00f42623 sw x15, 12(x8) x15:ffff0001 x8:1c0091c4 PA:1c0091d0 +74557546ns 1310798 1c0046e4 00042823 sw x0, 16(x8) x8:1c0091c4 PA:1c0091d4 +74557566ns 1310799 1c0046e8 00042a23 sw x0, 20(x8) x8:1c0091c4 PA:1c0091d8 +74557586ns 1310800 1c0046ec 00042c23 sw x0, 24(x8) x8:1c0091c4 PA:1c0091dc +74557606ns 1310801 1c0046f0 00800613 addi x12, x0, 8 x12=00000008 +74557625ns 1310802 1c0046f2 00000593 addi x11, x0, 0 x11=00000000 +74557645ns 1310803 1c0046f4 05c40513 addi x10, x8, 92 x10=1c009220 x8:1c0091c4 +74557665ns 1310804 1c0046f8 f82fc0ef jal x1, -14462 x1=1c0046fc +74557705ns 1310806 1c000e7a 00a00333 add x6, x0, x10 x6=1c009220 x10:1c009220 +74557724ns 1310807 1c000e7c 00060663 beq x12, x0, 12 x12:00000008 +74557744ns 1310808 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009220 PA:1c009220 +74557764ns 1310809 1c000e82 fff60613 addi x12, x12, -1 x12=00000007 x12:00000008 +74557784ns 1310810 1c000e84 00130313 addi x6, x6, 1 x6=1c009221 x6:1c009220 +74557803ns 1310811 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000007 +74557883ns 1310815 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009221 PA:1c009221 +74557902ns 1310816 1c000e82 fff60613 addi x12, x12, -1 x12=00000006 x12:00000007 +74557922ns 1310817 1c000e84 00130313 addi x6, x6, 1 x6=1c009222 x6:1c009221 +74557942ns 1310818 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000006 +74558021ns 1310822 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009222 PA:1c009222 +74558041ns 1310823 1c000e82 fff60613 addi x12, x12, -1 x12=00000005 x12:00000006 +74558061ns 1310824 1c000e84 00130313 addi x6, x6, 1 x6=1c009223 x6:1c009222 +74558081ns 1310825 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000005 +74558160ns 1310829 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009223 PA:1c009223 +74558180ns 1310830 1c000e82 fff60613 addi x12, x12, -1 x12=00000004 x12:00000005 +74558199ns 1310831 1c000e84 00130313 addi x6, x6, 1 x6=1c009224 x6:1c009223 +74558219ns 1310832 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000004 +74558298ns 1310836 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009224 PA:1c009224 +74558318ns 1310837 1c000e82 fff60613 addi x12, x12, -1 x12=00000003 x12:00000004 +74558338ns 1310838 1c000e84 00130313 addi x6, x6, 1 x6=1c009225 x6:1c009224 +74558358ns 1310839 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000003 +74558437ns 1310843 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009225 PA:1c009225 +74558457ns 1310844 1c000e82 fff60613 addi x12, x12, -1 x12=00000002 x12:00000003 +74558476ns 1310845 1c000e84 00130313 addi x6, x6, 1 x6=1c009226 x6:1c009225 +74558496ns 1310846 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000002 +74558575ns 1310850 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009226 PA:1c009226 +74558595ns 1310851 1c000e82 fff60613 addi x12, x12, -1 x12=00000001 x12:00000002 +74558615ns 1310852 1c000e84 00130313 addi x6, x6, 1 x6=1c009227 x6:1c009226 +74558635ns 1310853 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000001 +74558714ns 1310857 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009227 PA:1c009227 +74558734ns 1310858 1c000e82 fff60613 addi x12, x12, -1 x12=00000000 x12:00000001 +74558753ns 1310859 1c000e84 00130313 addi x6, x6, 1 x6=1c009228 x6:1c009227 +74558773ns 1310860 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000000 +74558793ns 1310861 1c000e88 00008067 jalr x0, x1, 0 x1:1c0046fc +74558833ns 1310863 1c0046fc 02042a23 sw x0, 52(x8) x8:1c0091c4 PA:1c0091f8 +74558852ns 1310864 1c004700 02042c23 sw x0, 56(x8) x8:1c0091c4 PA:1c0091fc +74558872ns 1310865 1c004704 04042423 sw x0, 72(x8) x8:1c0091c4 PA:1c00920c +74558892ns 1310866 1c004708 04042623 sw x0, 76(x8) x8:1c0091c4 PA:1c009210 +74558912ns 1310867 1c00470c 00c12083 lw x1, 12(x2) x1=1c00465a x2:1c019950 PA:1c01995c +74558932ns 1310868 1c00470e 00800533 add x10, x0, x8 x10=1c0091c4 x8:1c0091c4 +74558951ns 1310869 1c004710 00812403 lw x8, 8(x2) x8=1c008bdc x2:1c019950 PA:1c019958 +74558971ns 1310870 1c004712 00412483 lw x9, 4(x2) x9=1c008bdc x2:1c019950 PA:1c019954 +74558991ns 1310871 1c004714 00012903 lw x18, 0(x2) x18=1c008964 x2:1c019950 PA:1c019950 +74559011ns 1310872 1c004716 01010113 addi x2, x2, 16 x2=1c019960 x2:1c019950 +74559031ns 1310873 1c004718 00008067 jalr x0, x1, 0 x1:1c00465a +74559070ns 1310875 1c00465a 00a42223 sw x10, 4(x8) x10:1c0091c4 x8:1c008bdc PA:1c008be0 +74559090ns 1310876 1c00465c 00800533 add x10, x0, x8 x10=1c008bdc x8:1c008bdc +74559110ns 1310877 1c00465e 036000ef jal x1, 54 x1=1c004660 +74559149ns 1310879 1c004694 ff010113 addi x2, x2, -16 x2=1c019950 x2:1c019960 +74559169ns 1310880 1c004696 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +74559189ns 1310881 1c00469a 00912223 sw x9, 4(x2) x9:1c008bdc x2:1c019950 PA:1c019954 +74559209ns 1310882 1c00469c bd87a483 lw x9, -1064(x15) x9=1c008bdc x15:1c009000 PA:1c008bd8 +74559228ns 1310883 1c0046a0 01212023 sw x18, 0(x2) x18:1c008964 x2:1c019950 PA:1c019950 +74559248ns 1310884 1c0046a2 00112623 sw x1, 12(x2) x1:1c004660 x2:1c019950 PA:1c01995c +74559268ns 1310885 1c0046a4 0184a783 lw x15, 24(x9) x15=00000001 x9:1c008bdc PA:1c008bf4 +74559288ns 1310886 1c0046a6 00812423 sw x8, 8(x2) x8:1c008bdc x2:1c019950 PA:1c019958 +74559308ns 1310887 1c0046a8 00a00933 add x18, x0, x10 x18=1c008bdc x10:1c008bdc +74559327ns 1310888 1c0046aa 00079463 bne x15, x0, 8 x15:00000001 +74559407ns 1310892 1c0046b2 04848493 addi x9, x9, 72 x9=1c008c24 x9:1c008bdc +74559426ns 1310893 1c0046b6 0084a403 lw x8, 8(x9) x8=00000000 x9:1c008c24 PA:1c008c2c +74559446ns 1310894 1c0046b8 0044a783 lw x15, 4(x9) x15=00000000 x9:1c008c24 PA:1c008c28 +74559486ns 1310896 1c0046ba fff78793 addi x15, x15, -1 x15=ffffffff x15:00000000 +74559506ns 1310897 1c0046bc 0007d663 bge x15, x0, 12 x15:ffffffff +74559525ns 1310898 1c0046c0 0004a783 lw x15, 0(x9) x15=1c0091b8 x9:1c008c24 PA:1c008c24 +74559565ns 1310900 1c0046c2 04078f63 beq x15, x0, 94 x15:1c0091b8 +74559585ns 1310901 1c0046c4 0004a483 lw x9, 0(x9) x9=1c0091b8 x9:1c008c24 PA:1c008c24 +74559605ns 1310902 1c0046c6 ff1ff06f jal x0, -16 +74559644ns 1310904 1c0046b6 0084a403 lw x8, 8(x9) x8=1c0091c4 x9:1c0091b8 PA:1c0091c0 +74559664ns 1310905 1c0046b8 0044a783 lw x15, 4(x9) x15=00000004 x9:1c0091b8 PA:1c0091bc +74559703ns 1310907 1c0046ba fff78793 addi x15, x15, -1 x15=00000003 x15:00000004 +74559723ns 1310908 1c0046bc 0007d663 bge x15, x0, 12 x15:00000003 +74559783ns 1310911 1c0046c8 00c41703 lh x14, 12(x8) x14=00000001 x8:1c0091c4 PA:1c0091d0 +74559822ns 1310913 1c0046cc 04071763 bne x14, x0, 78 x14:00000001 +74559901ns 1310917 1c00471a 06840413 addi x8, x8, 104 x8=1c00922c x8:1c0091c4 +74559921ns 1310918 1c00471e f9dff06f jal x0, -100 +74559961ns 1310920 1c0046ba fff78793 addi x15, x15, -1 x15=00000002 x15:00000003 +74559981ns 1310921 1c0046bc 0007d663 bge x15, x0, 12 x15:00000002 +74560040ns 1310924 1c0046c8 00c41703 lh x14, 12(x8) x14=00000000 x8:1c00922c PA:1c009238 +74560080ns 1310926 1c0046cc 04071763 bne x14, x0, 78 x14:00000000 +74560099ns 1310927 1c0046ce ffff07b7 lui x15, 0xffff0000 x15=ffff0000 +74560119ns 1310928 1c0046d0 00178793 addi x15, x15, 1 x15=ffff0001 x15:ffff0000 +74560139ns 1310929 1c0046d2 06042223 sw x0, 100(x8) x8:1c00922c PA:1c009290 +74560159ns 1310930 1c0046d6 00042023 sw x0, 0(x8) x8:1c00922c PA:1c00922c +74560179ns 1310931 1c0046da 00042223 sw x0, 4(x8) x8:1c00922c PA:1c009230 +74560198ns 1310932 1c0046de 00042423 sw x0, 8(x8) x8:1c00922c PA:1c009234 +74560218ns 1310933 1c0046e2 00f42623 sw x15, 12(x8) x15:ffff0001 x8:1c00922c PA:1c009238 +74560238ns 1310934 1c0046e4 00042823 sw x0, 16(x8) x8:1c00922c PA:1c00923c +74560258ns 1310935 1c0046e8 00042a23 sw x0, 20(x8) x8:1c00922c PA:1c009240 +74560277ns 1310936 1c0046ec 00042c23 sw x0, 24(x8) x8:1c00922c PA:1c009244 +74560297ns 1310937 1c0046f0 00800613 addi x12, x0, 8 x12=00000008 +74560317ns 1310938 1c0046f2 00000593 addi x11, x0, 0 x11=00000000 +74560337ns 1310939 1c0046f4 05c40513 addi x10, x8, 92 x10=1c009288 x8:1c00922c +74560357ns 1310940 1c0046f8 f82fc0ef jal x1, -14462 x1=1c0046fc +74560396ns 1310942 1c000e7a 00a00333 add x6, x0, x10 x6=1c009288 x10:1c009288 +74560416ns 1310943 1c000e7c 00060663 beq x12, x0, 12 x12:00000008 +74560436ns 1310944 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009288 PA:1c009288 +74560456ns 1310945 1c000e82 fff60613 addi x12, x12, -1 x12=00000007 x12:00000008 +74560475ns 1310946 1c000e84 00130313 addi x6, x6, 1 x6=1c009289 x6:1c009288 +74560495ns 1310947 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000007 +74560574ns 1310951 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009289 PA:1c009289 +74560594ns 1310952 1c000e82 fff60613 addi x12, x12, -1 x12=00000006 x12:00000007 +74560614ns 1310953 1c000e84 00130313 addi x6, x6, 1 x6=1c00928a x6:1c009289 +74560634ns 1310954 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000006 +74560713ns 1310958 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00928a PA:1c00928a +74560733ns 1310959 1c000e82 fff60613 addi x12, x12, -1 x12=00000005 x12:00000006 +74560752ns 1310960 1c000e84 00130313 addi x6, x6, 1 x6=1c00928b x6:1c00928a +74560772ns 1310961 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000005 +74560851ns 1310965 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00928b PA:1c00928b +74560871ns 1310966 1c000e82 fff60613 addi x12, x12, -1 x12=00000004 x12:00000005 +74560891ns 1310967 1c000e84 00130313 addi x6, x6, 1 x6=1c00928c x6:1c00928b +74560911ns 1310968 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000004 +74560990ns 1310972 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00928c PA:1c00928c +74561010ns 1310973 1c000e82 fff60613 addi x12, x12, -1 x12=00000003 x12:00000004 +74561030ns 1310974 1c000e84 00130313 addi x6, x6, 1 x6=1c00928d x6:1c00928c +74561049ns 1310975 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000003 +74561129ns 1310979 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00928d PA:1c00928d +74561148ns 1310980 1c000e82 fff60613 addi x12, x12, -1 x12=00000002 x12:00000003 +74561168ns 1310981 1c000e84 00130313 addi x6, x6, 1 x6=1c00928e x6:1c00928d +74561188ns 1310982 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000002 +74561267ns 1310986 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00928e PA:1c00928e +74561287ns 1310987 1c000e82 fff60613 addi x12, x12, -1 x12=00000001 x12:00000002 +74561307ns 1310988 1c000e84 00130313 addi x6, x6, 1 x6=1c00928f x6:1c00928e +74561326ns 1310989 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000001 +74561406ns 1310993 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00928f PA:1c00928f +74561425ns 1310994 1c000e82 fff60613 addi x12, x12, -1 x12=00000000 x12:00000001 +74561445ns 1310995 1c000e84 00130313 addi x6, x6, 1 x6=1c009290 x6:1c00928f +74561465ns 1310996 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000000 +74561485ns 1310997 1c000e88 00008067 jalr x0, x1, 0 x1:1c0046fc +74561524ns 1310999 1c0046fc 02042a23 sw x0, 52(x8) x8:1c00922c PA:1c009260 +74561544ns 1311000 1c004700 02042c23 sw x0, 56(x8) x8:1c00922c PA:1c009264 +74561564ns 1311001 1c004704 04042423 sw x0, 72(x8) x8:1c00922c PA:1c009274 +74561584ns 1311002 1c004708 04042623 sw x0, 76(x8) x8:1c00922c PA:1c009278 +74561604ns 1311003 1c00470c 00c12083 lw x1, 12(x2) x1=1c004660 x2:1c019950 PA:1c01995c +74561623ns 1311004 1c00470e 00800533 add x10, x0, x8 x10=1c00922c x8:1c00922c +74561643ns 1311005 1c004710 00812403 lw x8, 8(x2) x8=1c008bdc x2:1c019950 PA:1c019958 +74561663ns 1311006 1c004712 00412483 lw x9, 4(x2) x9=1c008bdc x2:1c019950 PA:1c019954 +74561683ns 1311007 1c004714 00012903 lw x18, 0(x2) x18=1c008964 x2:1c019950 PA:1c019950 +74561702ns 1311008 1c004716 01010113 addi x2, x2, 16 x2=1c019960 x2:1c019950 +74561722ns 1311009 1c004718 00008067 jalr x0, x1, 0 x1:1c004660 +74561762ns 1311011 1c004660 00a42423 sw x10, 8(x8) x10:1c00922c x8:1c008bdc PA:1c008be4 +74561782ns 1311012 1c004662 00800533 add x10, x0, x8 x10=1c008bdc x8:1c008bdc +74561801ns 1311013 1c004664 030000ef jal x1, 48 x1=1c004666 +74561841ns 1311015 1c004694 ff010113 addi x2, x2, -16 x2=1c019950 x2:1c019960 +74561861ns 1311016 1c004696 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +74561881ns 1311017 1c00469a 00912223 sw x9, 4(x2) x9:1c008bdc x2:1c019950 PA:1c019954 +74561900ns 1311018 1c00469c bd87a483 lw x9, -1064(x15) x9=1c008bdc x15:1c009000 PA:1c008bd8 +74561920ns 1311019 1c0046a0 01212023 sw x18, 0(x2) x18:1c008964 x2:1c019950 PA:1c019950 +74561940ns 1311020 1c0046a2 00112623 sw x1, 12(x2) x1:1c004666 x2:1c019950 PA:1c01995c +74561960ns 1311021 1c0046a4 0184a783 lw x15, 24(x9) x15=00000001 x9:1c008bdc PA:1c008bf4 +74561980ns 1311022 1c0046a6 00812423 sw x8, 8(x2) x8:1c008bdc x2:1c019950 PA:1c019958 +74561999ns 1311023 1c0046a8 00a00933 add x18, x0, x10 x18=1c008bdc x10:1c008bdc +74562019ns 1311024 1c0046aa 00079463 bne x15, x0, 8 x15:00000001 +74562098ns 1311028 1c0046b2 04848493 addi x9, x9, 72 x9=1c008c24 x9:1c008bdc +74562118ns 1311029 1c0046b6 0084a403 lw x8, 8(x9) x8=00000000 x9:1c008c24 PA:1c008c2c +74562138ns 1311030 1c0046b8 0044a783 lw x15, 4(x9) x15=00000000 x9:1c008c24 PA:1c008c28 +74562177ns 1311032 1c0046ba fff78793 addi x15, x15, -1 x15=ffffffff x15:00000000 +74562197ns 1311033 1c0046bc 0007d663 bge x15, x0, 12 x15:ffffffff +74562217ns 1311034 1c0046c0 0004a783 lw x15, 0(x9) x15=1c0091b8 x9:1c008c24 PA:1c008c24 +74562257ns 1311036 1c0046c2 04078f63 beq x15, x0, 94 x15:1c0091b8 +74562276ns 1311037 1c0046c4 0004a483 lw x9, 0(x9) x9=1c0091b8 x9:1c008c24 PA:1c008c24 +74562296ns 1311038 1c0046c6 ff1ff06f jal x0, -16 +74562336ns 1311040 1c0046b6 0084a403 lw x8, 8(x9) x8=1c0091c4 x9:1c0091b8 PA:1c0091c0 +74562356ns 1311041 1c0046b8 0044a783 lw x15, 4(x9) x15=00000004 x9:1c0091b8 PA:1c0091bc +74562395ns 1311043 1c0046ba fff78793 addi x15, x15, -1 x15=00000003 x15:00000004 +74562415ns 1311044 1c0046bc 0007d663 bge x15, x0, 12 x15:00000003 +74562474ns 1311047 1c0046c8 00c41703 lh x14, 12(x8) x14=00000001 x8:1c0091c4 PA:1c0091d0 +74562514ns 1311049 1c0046cc 04071763 bne x14, x0, 78 x14:00000001 +74562593ns 1311053 1c00471a 06840413 addi x8, x8, 104 x8=1c00922c x8:1c0091c4 +74562613ns 1311054 1c00471e f9dff06f jal x0, -100 +74562653ns 1311056 1c0046ba fff78793 addi x15, x15, -1 x15=00000002 x15:00000003 +74562672ns 1311057 1c0046bc 0007d663 bge x15, x0, 12 x15:00000002 +74562732ns 1311060 1c0046c8 00c41703 lh x14, 12(x8) x14=00000001 x8:1c00922c PA:1c009238 +74562771ns 1311062 1c0046cc 04071763 bne x14, x0, 78 x14:00000001 +74562850ns 1311066 1c00471a 06840413 addi x8, x8, 104 x8=1c009294 x8:1c00922c +74562870ns 1311067 1c00471e f9dff06f jal x0, -100 +74562910ns 1311069 1c0046ba fff78793 addi x15, x15, -1 x15=00000001 x15:00000002 +74562930ns 1311070 1c0046bc 0007d663 bge x15, x0, 12 x15:00000001 +74562989ns 1311073 1c0046c8 00c41703 lh x14, 12(x8) x14=00000000 x8:1c009294 PA:1c0092a0 +74563029ns 1311075 1c0046cc 04071763 bne x14, x0, 78 x14:00000000 +74563048ns 1311076 1c0046ce ffff07b7 lui x15, 0xffff0000 x15=ffff0000 +74563068ns 1311077 1c0046d0 00178793 addi x15, x15, 1 x15=ffff0001 x15:ffff0000 +74563088ns 1311078 1c0046d2 06042223 sw x0, 100(x8) x8:1c009294 PA:1c0092f8 +74563108ns 1311079 1c0046d6 00042023 sw x0, 0(x8) x8:1c009294 PA:1c009294 +74563128ns 1311080 1c0046da 00042223 sw x0, 4(x8) x8:1c009294 PA:1c009298 +74563147ns 1311081 1c0046de 00042423 sw x0, 8(x8) x8:1c009294 PA:1c00929c +74563167ns 1311082 1c0046e2 00f42623 sw x15, 12(x8) x15:ffff0001 x8:1c009294 PA:1c0092a0 +74563187ns 1311083 1c0046e4 00042823 sw x0, 16(x8) x8:1c009294 PA:1c0092a4 +74563207ns 1311084 1c0046e8 00042a23 sw x0, 20(x8) x8:1c009294 PA:1c0092a8 +74563226ns 1311085 1c0046ec 00042c23 sw x0, 24(x8) x8:1c009294 PA:1c0092ac +74563246ns 1311086 1c0046f0 00800613 addi x12, x0, 8 x12=00000008 +74563266ns 1311087 1c0046f2 00000593 addi x11, x0, 0 x11=00000000 +74563286ns 1311088 1c0046f4 05c40513 addi x10, x8, 92 x10=1c0092f0 x8:1c009294 +74563306ns 1311089 1c0046f8 f82fc0ef jal x1, -14462 x1=1c0046fc +74563345ns 1311091 1c000e7a 00a00333 add x6, x0, x10 x6=1c0092f0 x10:1c0092f0 +74563365ns 1311092 1c000e7c 00060663 beq x12, x0, 12 x12:00000008 +74563385ns 1311093 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092f0 PA:1c0092f0 +74563405ns 1311094 1c000e82 fff60613 addi x12, x12, -1 x12=00000007 x12:00000008 +74563424ns 1311095 1c000e84 00130313 addi x6, x6, 1 x6=1c0092f1 x6:1c0092f0 +74563444ns 1311096 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000007 +74563523ns 1311100 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092f1 PA:1c0092f1 +74563543ns 1311101 1c000e82 fff60613 addi x12, x12, -1 x12=00000006 x12:00000007 +74563563ns 1311102 1c000e84 00130313 addi x6, x6, 1 x6=1c0092f2 x6:1c0092f1 +74563583ns 1311103 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000006 +74563662ns 1311107 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092f2 PA:1c0092f2 +74563682ns 1311108 1c000e82 fff60613 addi x12, x12, -1 x12=00000005 x12:00000006 +74563701ns 1311109 1c000e84 00130313 addi x6, x6, 1 x6=1c0092f3 x6:1c0092f2 +74563721ns 1311110 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000005 +74563800ns 1311114 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092f3 PA:1c0092f3 +74563820ns 1311115 1c000e82 fff60613 addi x12, x12, -1 x12=00000004 x12:00000005 +74563840ns 1311116 1c000e84 00130313 addi x6, x6, 1 x6=1c0092f4 x6:1c0092f3 +74563860ns 1311117 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000004 +74563939ns 1311121 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092f4 PA:1c0092f4 +74563959ns 1311122 1c000e82 fff60613 addi x12, x12, -1 x12=00000003 x12:00000004 +74563979ns 1311123 1c000e84 00130313 addi x6, x6, 1 x6=1c0092f5 x6:1c0092f4 +74563998ns 1311124 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000003 +74564078ns 1311128 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092f5 PA:1c0092f5 +74564097ns 1311129 1c000e82 fff60613 addi x12, x12, -1 x12=00000002 x12:00000003 +74564117ns 1311130 1c000e84 00130313 addi x6, x6, 1 x6=1c0092f6 x6:1c0092f5 +74564137ns 1311131 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000002 +74564216ns 1311135 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092f6 PA:1c0092f6 +74564236ns 1311136 1c000e82 fff60613 addi x12, x12, -1 x12=00000001 x12:00000002 +74564256ns 1311137 1c000e84 00130313 addi x6, x6, 1 x6=1c0092f7 x6:1c0092f6 +74564275ns 1311138 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000001 +74564355ns 1311142 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092f7 PA:1c0092f7 +74564374ns 1311143 1c000e82 fff60613 addi x12, x12, -1 x12=00000000 x12:00000001 +74564394ns 1311144 1c000e84 00130313 addi x6, x6, 1 x6=1c0092f8 x6:1c0092f7 +74564414ns 1311145 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000000 +74564434ns 1311146 1c000e88 00008067 jalr x0, x1, 0 x1:1c0046fc +74564473ns 1311148 1c0046fc 02042a23 sw x0, 52(x8) x8:1c009294 PA:1c0092c8 +74564493ns 1311149 1c004700 02042c23 sw x0, 56(x8) x8:1c009294 PA:1c0092cc +74564513ns 1311150 1c004704 04042423 sw x0, 72(x8) x8:1c009294 PA:1c0092dc +74564533ns 1311151 1c004708 04042623 sw x0, 76(x8) x8:1c009294 PA:1c0092e0 +74564553ns 1311152 1c00470c 00c12083 lw x1, 12(x2) x1=1c004666 x2:1c019950 PA:1c01995c +74564572ns 1311153 1c00470e 00800533 add x10, x0, x8 x10=1c009294 x8:1c009294 +74564592ns 1311154 1c004710 00812403 lw x8, 8(x2) x8=1c008bdc x2:1c019950 PA:1c019958 +74564612ns 1311155 1c004712 00412483 lw x9, 4(x2) x9=1c008bdc x2:1c019950 PA:1c019954 +74564632ns 1311156 1c004714 00012903 lw x18, 0(x2) x18=1c008964 x2:1c019950 PA:1c019950 +74564651ns 1311157 1c004716 01010113 addi x2, x2, 16 x2=1c019960 x2:1c019950 +74564671ns 1311158 1c004718 00008067 jalr x0, x1, 0 x1:1c004666 +74564711ns 1311160 1c004666 00a42623 sw x10, 12(x8) x10:1c009294 x8:1c008bdc PA:1c008be8 +74564731ns 1311161 1c004668 00442503 lw x10, 4(x8) x10=1c0091c4 x8:1c008bdc PA:1c008be0 +74564750ns 1311162 1c00466a 00000613 addi x12, x0, 0 x12=00000000 +74564770ns 1311163 1c00466c 00400593 addi x11, x0, 4 x11=00000004 +74564790ns 1311164 1c00466e efbff0ef jal x1, -262 x1=1c004672 +74564830ns 1311166 1c004568 ff010113 addi x2, x2, -16 x2=1c019950 x2:1c019960 +74564849ns 1311167 1c00456a 00812423 sw x8, 8(x2) x8:1c008bdc x2:1c019950 PA:1c019958 +74564869ns 1311168 1c00456c 00112623 sw x1, 12(x2) x1:1c004672 x2:1c019950 PA:1c01995c +74564889ns 1311169 1c00456e 00a00433 add x8, x0, x10 x8=1c0091c4 x10:1c0091c4 +74564909ns 1311170 1c004570 00b51623 sh x11, 12(x10) x11:00000004 x10:1c0091c4 PA:1c0091d0 +74564929ns 1311171 1c004574 00c51723 sh x12, 14(x10) x12:00000000 x10:1c0091c4 PA:1c0091d2 +74564948ns 1311172 1c004578 00052023 sw x0, 0(x10) x10:1c0091c4 PA:1c0091c4 +74564968ns 1311173 1c00457c 00052223 sw x0, 4(x10) x10:1c0091c4 PA:1c0091c8 +74564988ns 1311174 1c004580 00052423 sw x0, 8(x10) x10:1c0091c4 PA:1c0091cc +74565008ns 1311175 1c004584 06052223 sw x0, 100(x10) x10:1c0091c4 PA:1c009228 +74565028ns 1311176 1c004588 00052823 sw x0, 16(x10) x10:1c0091c4 PA:1c0091d4 +74565047ns 1311177 1c00458c 00052a23 sw x0, 20(x10) x10:1c0091c4 PA:1c0091d8 +74565067ns 1311178 1c004590 00052c23 sw x0, 24(x10) x10:1c0091c4 PA:1c0091dc +74565087ns 1311179 1c004594 00800613 addi x12, x0, 8 x12=00000008 +74565107ns 1311180 1c004596 00000593 addi x11, x0, 0 x11=00000000 +74565127ns 1311181 1c004598 05c50513 addi x10, x10, 92 x10=1c009220 x10:1c0091c4 +74565146ns 1311182 1c00459c 8dffc0ef jal x1, -14114 x1=1c0045a0 +74565186ns 1311184 1c000e7a 00a00333 add x6, x0, x10 x6=1c009220 x10:1c009220 +74565206ns 1311185 1c000e7c 00060663 beq x12, x0, 12 x12:00000008 +74565225ns 1311186 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009220 PA:1c009220 +74565245ns 1311187 1c000e82 fff60613 addi x12, x12, -1 x12=00000007 x12:00000008 +74565265ns 1311188 1c000e84 00130313 addi x6, x6, 1 x6=1c009221 x6:1c009220 +74565285ns 1311189 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000007 +74565364ns 1311193 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009221 PA:1c009221 +74565384ns 1311194 1c000e82 fff60613 addi x12, x12, -1 x12=00000006 x12:00000007 +74565404ns 1311195 1c000e84 00130313 addi x6, x6, 1 x6=1c009222 x6:1c009221 +74565423ns 1311196 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000006 +74565503ns 1311200 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009222 PA:1c009222 +74565522ns 1311201 1c000e82 fff60613 addi x12, x12, -1 x12=00000005 x12:00000006 +74565542ns 1311202 1c000e84 00130313 addi x6, x6, 1 x6=1c009223 x6:1c009222 +74565562ns 1311203 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000005 +74565641ns 1311207 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009223 PA:1c009223 +74565661ns 1311208 1c000e82 fff60613 addi x12, x12, -1 x12=00000004 x12:00000005 +74565681ns 1311209 1c000e84 00130313 addi x6, x6, 1 x6=1c009224 x6:1c009223 +74565700ns 1311210 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000004 +74565780ns 1311214 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009224 PA:1c009224 +74565799ns 1311215 1c000e82 fff60613 addi x12, x12, -1 x12=00000003 x12:00000004 +74565819ns 1311216 1c000e84 00130313 addi x6, x6, 1 x6=1c009225 x6:1c009224 +74565839ns 1311217 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000003 +74565918ns 1311221 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009225 PA:1c009225 +74565938ns 1311222 1c000e82 fff60613 addi x12, x12, -1 x12=00000002 x12:00000003 +74565958ns 1311223 1c000e84 00130313 addi x6, x6, 1 x6=1c009226 x6:1c009225 +74565978ns 1311224 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000002 +74566057ns 1311228 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009226 PA:1c009226 +74566077ns 1311229 1c000e82 fff60613 addi x12, x12, -1 x12=00000001 x12:00000002 +74566096ns 1311230 1c000e84 00130313 addi x6, x6, 1 x6=1c009227 x6:1c009226 +74566116ns 1311231 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000001 +74566195ns 1311235 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009227 PA:1c009227 +74566215ns 1311236 1c000e82 fff60613 addi x12, x12, -1 x12=00000000 x12:00000001 +74566235ns 1311237 1c000e84 00130313 addi x6, x6, 1 x6=1c009228 x6:1c009227 +74566255ns 1311238 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000000 +74566274ns 1311239 1c000e88 00008067 jalr x0, x1, 0 x1:1c0045a0 +74566314ns 1311241 1c0045a0 1c0057b7 lui x15, 0x1c005000 x15=1c005000 +74566334ns 1311242 1c0045a4 c2e78793 addi x15, x15, -978 x15=1c004c2e x15:1c005000 +74566354ns 1311243 1c0045a8 02f42223 sw x15, 36(x8) x15:1c004c2e x8:1c0091c4 PA:1c0091e8 +74566373ns 1311244 1c0045aa 1c0057b7 lui x15, 0x1c005000 x15=1c005000 +74566393ns 1311245 1c0045ae c5e78793 addi x15, x15, -930 x15=1c004c5e x15:1c005000 +74566413ns 1311246 1c0045b2 02f42423 sw x15, 40(x8) x15:1c004c5e x8:1c0091c4 PA:1c0091ec +74566433ns 1311247 1c0045b4 1c0057b7 lui x15, 0x1c005000 x15=1c005000 +74566453ns 1311248 1c0045b8 cac78793 addi x15, x15, -852 x15=1c004cac x15:1c005000 +74566472ns 1311249 1c0045bc 02f42623 sw x15, 44(x8) x15:1c004cac x8:1c0091c4 PA:1c0091f0 +74566492ns 1311250 1c0045be 1c0057b7 lui x15, 0x1c005000 x15=1c005000 +74566512ns 1311251 1c0045c2 ce278793 addi x15, x15, -798 x15=1c004ce2 x15:1c005000 +74566532ns 1311252 1c0045c6 00c12083 lw x1, 12(x2) x1=1c004672 x2:1c019950 PA:1c01995c +74566552ns 1311253 1c0045c8 02842023 sw x8, 32(x8) x8:1c0091c4 x8:1c0091c4 PA:1c0091e4 +74566571ns 1311254 1c0045ca 02f42823 sw x15, 48(x8) x15:1c004ce2 x8:1c0091c4 PA:1c0091f4 +74566591ns 1311255 1c0045cc 00812403 lw x8, 8(x2) x8=1c008bdc x2:1c019950 PA:1c019958 +74566611ns 1311256 1c0045ce 01010113 addi x2, x2, 16 x2=1c019960 x2:1c019950 +74566631ns 1311257 1c0045d0 00008067 jalr x0, x1, 0 x1:1c004672 +74566670ns 1311259 1c004672 00842503 lw x10, 8(x8) x10=1c00922c x8:1c008bdc PA:1c008be4 +74566690ns 1311260 1c004674 00100613 addi x12, x0, 1 x12=00000001 +74566710ns 1311261 1c004676 00900593 addi x11, x0, 9 x11=00000009 +74566730ns 1311262 1c004678 ef1ff0ef jal x1, -272 x1=1c00467c +74566769ns 1311264 1c004568 ff010113 addi x2, x2, -16 x2=1c019950 x2:1c019960 +74566789ns 1311265 1c00456a 00812423 sw x8, 8(x2) x8:1c008bdc x2:1c019950 PA:1c019958 +74566809ns 1311266 1c00456c 00112623 sw x1, 12(x2) x1:1c00467c x2:1c019950 PA:1c01995c +74566829ns 1311267 1c00456e 00a00433 add x8, x0, x10 x8=1c00922c x10:1c00922c +74566848ns 1311268 1c004570 00b51623 sh x11, 12(x10) x11:00000009 x10:1c00922c PA:1c009238 +74566868ns 1311269 1c004574 00c51723 sh x12, 14(x10) x12:00000001 x10:1c00922c PA:1c00923a +74566888ns 1311270 1c004578 00052023 sw x0, 0(x10) x10:1c00922c PA:1c00922c +74566908ns 1311271 1c00457c 00052223 sw x0, 4(x10) x10:1c00922c PA:1c009230 +74566928ns 1311272 1c004580 00052423 sw x0, 8(x10) x10:1c00922c PA:1c009234 +74566947ns 1311273 1c004584 06052223 sw x0, 100(x10) x10:1c00922c PA:1c009290 +74566967ns 1311274 1c004588 00052823 sw x0, 16(x10) x10:1c00922c PA:1c00923c +74566987ns 1311275 1c00458c 00052a23 sw x0, 20(x10) x10:1c00922c PA:1c009240 +74567007ns 1311276 1c004590 00052c23 sw x0, 24(x10) x10:1c00922c PA:1c009244 +74567027ns 1311277 1c004594 00800613 addi x12, x0, 8 x12=00000008 +74567046ns 1311278 1c004596 00000593 addi x11, x0, 0 x11=00000000 +74567066ns 1311279 1c004598 05c50513 addi x10, x10, 92 x10=1c009288 x10:1c00922c +74567086ns 1311280 1c00459c 8dffc0ef jal x1, -14114 x1=1c0045a0 +74567125ns 1311282 1c000e7a 00a00333 add x6, x0, x10 x6=1c009288 x10:1c009288 +74567145ns 1311283 1c000e7c 00060663 beq x12, x0, 12 x12:00000008 +74567165ns 1311284 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009288 PA:1c009288 +74567185ns 1311285 1c000e82 fff60613 addi x12, x12, -1 x12=00000007 x12:00000008 +74567205ns 1311286 1c000e84 00130313 addi x6, x6, 1 x6=1c009289 x6:1c009288 +74567224ns 1311287 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000007 +74567304ns 1311291 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009289 PA:1c009289 +74567323ns 1311292 1c000e82 fff60613 addi x12, x12, -1 x12=00000006 x12:00000007 +74567343ns 1311293 1c000e84 00130313 addi x6, x6, 1 x6=1c00928a x6:1c009289 +74567363ns 1311294 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000006 +74567442ns 1311298 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00928a PA:1c00928a +74567462ns 1311299 1c000e82 fff60613 addi x12, x12, -1 x12=00000005 x12:00000006 +74567482ns 1311300 1c000e84 00130313 addi x6, x6, 1 x6=1c00928b x6:1c00928a +74567502ns 1311301 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000005 +74567581ns 1311305 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00928b PA:1c00928b +74567601ns 1311306 1c000e82 fff60613 addi x12, x12, -1 x12=00000004 x12:00000005 +74567620ns 1311307 1c000e84 00130313 addi x6, x6, 1 x6=1c00928c x6:1c00928b +74567640ns 1311308 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000004 +74567719ns 1311312 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00928c PA:1c00928c +74567739ns 1311313 1c000e82 fff60613 addi x12, x12, -1 x12=00000003 x12:00000004 +74567759ns 1311314 1c000e84 00130313 addi x6, x6, 1 x6=1c00928d x6:1c00928c +74567779ns 1311315 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000003 +74567858ns 1311319 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00928d PA:1c00928d +74567878ns 1311320 1c000e82 fff60613 addi x12, x12, -1 x12=00000002 x12:00000003 +74567897ns 1311321 1c000e84 00130313 addi x6, x6, 1 x6=1c00928e x6:1c00928d +74567917ns 1311322 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000002 +74567996ns 1311326 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00928e PA:1c00928e +74568016ns 1311327 1c000e82 fff60613 addi x12, x12, -1 x12=00000001 x12:00000002 +74568036ns 1311328 1c000e84 00130313 addi x6, x6, 1 x6=1c00928f x6:1c00928e +74568056ns 1311329 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000001 +74568135ns 1311333 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00928f PA:1c00928f +74568155ns 1311334 1c000e82 fff60613 addi x12, x12, -1 x12=00000000 x12:00000001 +74568174ns 1311335 1c000e84 00130313 addi x6, x6, 1 x6=1c009290 x6:1c00928f +74568194ns 1311336 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000000 +74568214ns 1311337 1c000e88 00008067 jalr x0, x1, 0 x1:1c0045a0 +74568254ns 1311339 1c0045a0 1c0057b7 lui x15, 0x1c005000 x15=1c005000 +74568273ns 1311340 1c0045a4 c2e78793 addi x15, x15, -978 x15=1c004c2e x15:1c005000 +74568293ns 1311341 1c0045a8 02f42223 sw x15, 36(x8) x15:1c004c2e x8:1c00922c PA:1c009250 +74568313ns 1311342 1c0045aa 1c0057b7 lui x15, 0x1c005000 x15=1c005000 +74568333ns 1311343 1c0045ae c5e78793 addi x15, x15, -930 x15=1c004c5e x15:1c005000 +74568353ns 1311344 1c0045b2 02f42423 sw x15, 40(x8) x15:1c004c5e x8:1c00922c PA:1c009254 +74568372ns 1311345 1c0045b4 1c0057b7 lui x15, 0x1c005000 x15=1c005000 +74568392ns 1311346 1c0045b8 cac78793 addi x15, x15, -852 x15=1c004cac x15:1c005000 +74568412ns 1311347 1c0045bc 02f42623 sw x15, 44(x8) x15:1c004cac x8:1c00922c PA:1c009258 +74568432ns 1311348 1c0045be 1c0057b7 lui x15, 0x1c005000 x15=1c005000 +74568452ns 1311349 1c0045c2 ce278793 addi x15, x15, -798 x15=1c004ce2 x15:1c005000 +74568471ns 1311350 1c0045c6 00c12083 lw x1, 12(x2) x1=1c00467c x2:1c019950 PA:1c01995c +74568491ns 1311351 1c0045c8 02842023 sw x8, 32(x8) x8:1c00922c x8:1c00922c PA:1c00924c +74568511ns 1311352 1c0045ca 02f42823 sw x15, 48(x8) x15:1c004ce2 x8:1c00922c PA:1c00925c +74568531ns 1311353 1c0045cc 00812403 lw x8, 8(x2) x8=1c008bdc x2:1c019950 PA:1c019958 +74568551ns 1311354 1c0045ce 01010113 addi x2, x2, 16 x2=1c019960 x2:1c019950 +74568570ns 1311355 1c0045d0 00008067 jalr x0, x1, 0 x1:1c00467c +74568610ns 1311357 1c00467c 00c42503 lw x10, 12(x8) x10=1c009294 x8:1c008bdc PA:1c008be8 +74568630ns 1311358 1c00467e 00200613 addi x12, x0, 2 x12=00000002 +74568649ns 1311359 1c004680 01200593 addi x11, x0, 18 x11=00000012 +74568669ns 1311360 1c004682 ee7ff0ef jal x1, -282 x1=1c004686 +74568709ns 1311362 1c004568 ff010113 addi x2, x2, -16 x2=1c019950 x2:1c019960 +74568729ns 1311363 1c00456a 00812423 sw x8, 8(x2) x8:1c008bdc x2:1c019950 PA:1c019958 +74568748ns 1311364 1c00456c 00112623 sw x1, 12(x2) x1:1c004686 x2:1c019950 PA:1c01995c +74568768ns 1311365 1c00456e 00a00433 add x8, x0, x10 x8=1c009294 x10:1c009294 +74568788ns 1311366 1c004570 00b51623 sh x11, 12(x10) x11:00000012 x10:1c009294 PA:1c0092a0 +74568808ns 1311367 1c004574 00c51723 sh x12, 14(x10) x12:00000002 x10:1c009294 PA:1c0092a2 +74568828ns 1311368 1c004578 00052023 sw x0, 0(x10) x10:1c009294 PA:1c009294 +74568847ns 1311369 1c00457c 00052223 sw x0, 4(x10) x10:1c009294 PA:1c009298 +74568867ns 1311370 1c004580 00052423 sw x0, 8(x10) x10:1c009294 PA:1c00929c +74568887ns 1311371 1c004584 06052223 sw x0, 100(x10) x10:1c009294 PA:1c0092f8 +74568907ns 1311372 1c004588 00052823 sw x0, 16(x10) x10:1c009294 PA:1c0092a4 +74568927ns 1311373 1c00458c 00052a23 sw x0, 20(x10) x10:1c009294 PA:1c0092a8 +74568946ns 1311374 1c004590 00052c23 sw x0, 24(x10) x10:1c009294 PA:1c0092ac +74568966ns 1311375 1c004594 00800613 addi x12, x0, 8 x12=00000008 +74568986ns 1311376 1c004596 00000593 addi x11, x0, 0 x11=00000000 +74569006ns 1311377 1c004598 05c50513 addi x10, x10, 92 x10=1c0092f0 x10:1c009294 +74569026ns 1311378 1c00459c 8dffc0ef jal x1, -14114 x1=1c0045a0 +74569065ns 1311380 1c000e7a 00a00333 add x6, x0, x10 x6=1c0092f0 x10:1c0092f0 +74569085ns 1311381 1c000e7c 00060663 beq x12, x0, 12 x12:00000008 +74569105ns 1311382 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092f0 PA:1c0092f0 +74569124ns 1311383 1c000e82 fff60613 addi x12, x12, -1 x12=00000007 x12:00000008 +74569144ns 1311384 1c000e84 00130313 addi x6, x6, 1 x6=1c0092f1 x6:1c0092f0 +74569164ns 1311385 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000007 +74569243ns 1311389 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092f1 PA:1c0092f1 +74569263ns 1311390 1c000e82 fff60613 addi x12, x12, -1 x12=00000006 x12:00000007 +74569283ns 1311391 1c000e84 00130313 addi x6, x6, 1 x6=1c0092f2 x6:1c0092f1 +74569303ns 1311392 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000006 +74569382ns 1311396 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092f2 PA:1c0092f2 +74569402ns 1311397 1c000e82 fff60613 addi x12, x12, -1 x12=00000005 x12:00000006 +74569421ns 1311398 1c000e84 00130313 addi x6, x6, 1 x6=1c0092f3 x6:1c0092f2 +74569441ns 1311399 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000005 +74569520ns 1311403 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092f3 PA:1c0092f3 +74569540ns 1311404 1c000e82 fff60613 addi x12, x12, -1 x12=00000004 x12:00000005 +74569560ns 1311405 1c000e84 00130313 addi x6, x6, 1 x6=1c0092f4 x6:1c0092f3 +74569580ns 1311406 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000004 +74569659ns 1311410 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092f4 PA:1c0092f4 +74569679ns 1311411 1c000e82 fff60613 addi x12, x12, -1 x12=00000003 x12:00000004 +74569698ns 1311412 1c000e84 00130313 addi x6, x6, 1 x6=1c0092f5 x6:1c0092f4 +74569718ns 1311413 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000003 +74569797ns 1311417 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092f5 PA:1c0092f5 +74569817ns 1311418 1c000e82 fff60613 addi x12, x12, -1 x12=00000002 x12:00000003 +74569837ns 1311419 1c000e84 00130313 addi x6, x6, 1 x6=1c0092f6 x6:1c0092f5 +74569857ns 1311420 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000002 +74569936ns 1311424 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092f6 PA:1c0092f6 +74569956ns 1311425 1c000e82 fff60613 addi x12, x12, -1 x12=00000001 x12:00000002 +74569976ns 1311426 1c000e84 00130313 addi x6, x6, 1 x6=1c0092f7 x6:1c0092f6 +74569995ns 1311427 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000001 +74570075ns 1311431 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c0092f7 PA:1c0092f7 +74570094ns 1311432 1c000e82 fff60613 addi x12, x12, -1 x12=00000000 x12:00000001 +74570114ns 1311433 1c000e84 00130313 addi x6, x6, 1 x6=1c0092f8 x6:1c0092f7 +74570134ns 1311434 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000000 +74570154ns 1311435 1c000e88 00008067 jalr x0, x1, 0 x1:1c0045a0 +74570193ns 1311437 1c0045a0 1c0057b7 lui x15, 0x1c005000 x15=1c005000 +74570213ns 1311438 1c0045a4 c2e78793 addi x15, x15, -978 x15=1c004c2e x15:1c005000 +74570233ns 1311439 1c0045a8 02f42223 sw x15, 36(x8) x15:1c004c2e x8:1c009294 PA:1c0092b8 +74570253ns 1311440 1c0045aa 1c0057b7 lui x15, 0x1c005000 x15=1c005000 +74570272ns 1311441 1c0045ae c5e78793 addi x15, x15, -930 x15=1c004c5e x15:1c005000 +74570292ns 1311442 1c0045b2 02f42423 sw x15, 40(x8) x15:1c004c5e x8:1c009294 PA:1c0092bc +74570312ns 1311443 1c0045b4 1c0057b7 lui x15, 0x1c005000 x15=1c005000 +74570332ns 1311444 1c0045b8 cac78793 addi x15, x15, -852 x15=1c004cac x15:1c005000 +74570352ns 1311445 1c0045bc 02f42623 sw x15, 44(x8) x15:1c004cac x8:1c009294 PA:1c0092c0 +74570371ns 1311446 1c0045be 1c0057b7 lui x15, 0x1c005000 x15=1c005000 +74570391ns 1311447 1c0045c2 ce278793 addi x15, x15, -798 x15=1c004ce2 x15:1c005000 +74570411ns 1311448 1c0045c6 00c12083 lw x1, 12(x2) x1=1c004686 x2:1c019950 PA:1c01995c +74570431ns 1311449 1c0045c8 02842023 sw x8, 32(x8) x8:1c009294 x8:1c009294 PA:1c0092b4 +74570451ns 1311450 1c0045ca 02f42823 sw x15, 48(x8) x15:1c004ce2 x8:1c009294 PA:1c0092c4 +74570470ns 1311451 1c0045cc 00812403 lw x8, 8(x2) x8=1c008bdc x2:1c019950 PA:1c019958 +74570490ns 1311452 1c0045ce 01010113 addi x2, x2, 16 x2=1c019960 x2:1c019950 +74570510ns 1311453 1c0045d0 00008067 jalr x0, x1, 0 x1:1c004686 +74570550ns 1311455 1c004686 00100793 addi x15, x0, 1 x15=00000001 +74570569ns 1311456 1c004688 00c12083 lw x1, 12(x2) x1=1c003e10 x2:1c019960 PA:1c01996c +74570589ns 1311457 1c00468a 00f42c23 sw x15, 24(x8) x15:00000001 x8:1c008bdc PA:1c008bf4 +74570609ns 1311458 1c00468c 00812403 lw x8, 8(x2) x8=xxxxxxxx x2:1c019960 PA:1c019968 +74570629ns 1311459 1c00468e 01010113 addi x2, x2, 16 x2=1c019970 x2:1c019960 +74570648ns 1311460 1c004690 00008067 jalr x0, x1, 0 x1:1c003e10 +74570688ns 1311462 1c003e10 0184a783 lw x15, 24(x9) x15=00000001 x9:1c008bdc PA:1c008bf4 +74570708ns 1311463 1c003e12 0084a403 lw x8, 8(x9) x8=1c00922c x9:1c008bdc PA:1c008be4 +74570728ns 1311464 1c003e14 00079463 bne x15, x0, 8 x15:00000001 +74570787ns 1311467 1c003e1c 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +74570807ns 1311468 1c003e20 a1478793 addi x15, x15, -1516 x15=1c008a14 x15:1c009000 +74570827ns 1311469 1c003e24 02f41c63 bne x8, x15, 56 x8:1c00922c x15:1c008a14 +74570886ns 1311472 1c003e5c 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +74570906ns 1311473 1c003e60 a3478793 addi x15, x15, -1484 x15=1c008a34 x15:1c009000 +74570926ns 1311474 1c003e64 00f41463 bne x8, x15, 8 x8:1c00922c x15:1c008a34 +74570985ns 1311477 1c003e6c 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +74571005ns 1311478 1c003e70 9f478793 addi x15, x15, -1548 x15=1c0089f4 x15:1c009000 +74571025ns 1311479 1c003e74 faf41be3 bne x8, x15, -74 x8:1c00922c x15:1c0089f4 +74571104ns 1311483 1c003e2a 00c45783 lhu x15, 12(x8) x15=00000009 x8:1c00922c PA:1c009238 +74571143ns 1311485 1c003e2e 0087f793 andi x15, x15, 8 x15=00000008 x15:00000009 +74571163ns 1311486 1c003e30 04078663 beq x15, x0, 76 x15:00000008 +74571183ns 1311487 1c003e32 01042783 lw x15, 16(x8) x15=00000000 x8:1c00922c PA:1c00923c +74571222ns 1311489 1c003e34 04078463 beq x15, x0, 72 x15:00000000 +74571282ns 1311492 1c003e7c 008005b3 add x11, x0, x8 x11=1c00922c x8:1c00922c +74571302ns 1311493 1c003e7e 00900533 add x10, x0, x9 x10=1c008bdc x9:1c008bdc +74571321ns 1311494 1c003e80 2ea000ef jal x1, 746 x1=1c003e82 +74571361ns 1311496 1c00416a ff010113 addi x2, x2, -16 x2=1c019960 x2:1c019970 +74571381ns 1311497 1c00416c 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +74571401ns 1311498 1c004170 00912223 sw x9, 4(x2) x9:1c008bdc x2:1c019960 PA:1c019964 +74571420ns 1311499 1c004172 c447a483 lw x9, -956(x15) x9=1c008bdc x15:1c009000 PA:1c008c44 +74571440ns 1311500 1c004176 00812423 sw x8, 8(x2) x8:1c00922c x2:1c019960 PA:1c019968 +74571460ns 1311501 1c004178 01212023 sw x18, 0(x2) x18:1c008964 x2:1c019960 PA:1c019960 +74571480ns 1311502 1c00417a 00112623 sw x1, 12(x2) x1:1c003e82 x2:1c019960 PA:1c01996c +74571500ns 1311503 1c00417c 00a00933 add x18, x0, x10 x18=1c008bdc x10:1c008bdc +74571519ns 1311504 1c00417e 00b00433 add x8, x0, x11 x8=1c00922c x11:1c00922c +74571539ns 1311505 1c004180 00048563 beq x9, x0, 10 x9:1c008bdc +74571559ns 1311506 1c004182 0184a783 lw x15, 24(x9) x15=00000001 x9:1c008bdc PA:1c008bf4 +74571598ns 1311508 1c004184 00079363 bne x15, x0, 6 x15:00000001 +74571678ns 1311512 1c00418a 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +74571697ns 1311513 1c00418e a1478793 addi x15, x15, -1516 x15=1c008a14 x15:1c009000 +74571717ns 1311514 1c004192 02f41763 bne x8, x15, 46 x8:1c00922c x15:1c008a14 +74571777ns 1311517 1c0041c0 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +74571796ns 1311518 1c0041c4 a3478793 addi x15, x15, -1484 x15=1c008a34 x15:1c009000 +74571816ns 1311519 1c0041c8 00f41463 bne x8, x15, 8 x8:1c00922c x15:1c008a34 +74571876ns 1311522 1c0041d0 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +74571895ns 1311523 1c0041d4 9f478793 addi x15, x15, -1548 x15=1c0089f4 x15:1c009000 +74571915ns 1311524 1c0041d8 fcf410e3 bne x8, x15, -64 x8:1c00922c x15:1c0089f4 +74571975ns 1311527 1c004198 00c41783 lh x15, 12(x8) x15=00000009 x8:1c00922c PA:1c009238 +74572014ns 1311529 1c00419c 01079713 slli x14, x15, 0x10 x14=00090000 x15:00000009 +74572034ns 1311530 1c0041a0 0087f693 andi x13, x15, 8 x13=00000008 x15:00000009 +74572054ns 1311531 1c0041a4 01075713 srli x14, x14, 0x10 x14=00000009 x14:00090000 +74572073ns 1311532 1c0041a6 06069a63 bne x13, x0, 116 x13:00000008 +74572133ns 1311535 1c00421a 01042783 lw x15, 16(x8) x15=00000000 x8:1c00922c PA:1c00923c +74572172ns 1311537 1c00421c 00079c63 bne x15, x0, 24 x15:00000000 +74572192ns 1311538 1c00421e 00c45783 lhu x15, 12(x8) x15=00000009 x8:1c00922c PA:1c009238 +74572212ns 1311539 1c004222 20000713 addi x14, x0, 512 x14=00000200 +74572232ns 1311540 1c004226 2807f793 andi x15, x15, 640 x15=00000000 x15:00000009 +74572252ns 1311541 1c00422a 00e78563 beq x15, x14, 10 x15:00000000 x14:00000200 +74572271ns 1311542 1c00422e 008005b3 add x11, x0, x8 x11=1c00922c x8:1c00922c +74572291ns 1311543 1c004230 01200533 add x10, x0, x18 x10=1c008bdc x18:1c008bdc +74572311ns 1311544 1c004232 5c8000ef jal x1, 1480 x1=1c004234 +74572370ns 1311547 1c0047fa 00c5d783 lhu x15, 12(x11) x15=00000009 x11:1c00922c PA:1c009238 +74572390ns 1311548 1c0047fe fe010113 addi x2, x2, -32 x2=1c019940 x2:1c019960 +74572410ns 1311549 1c004800 00812c23 sw x8, 24(x2) x8:1c00922c x2:1c019940 PA:1c019958 +74572430ns 1311550 1c004802 00112e23 sw x1, 28(x2) x1:1c004234 x2:1c019940 PA:1c01995c +74572450ns 1311551 1c004804 00912a23 sw x9, 20(x2) x9:1c008bdc x2:1c019940 PA:1c019954 +74572469ns 1311552 1c004806 01212823 sw x18, 16(x2) x18:1c008bdc x2:1c019940 PA:1c019950 +74572489ns 1311553 1c004808 0027f793 andi x15, x15, 2 x15=00000000 x15:00000009 +74572509ns 1311554 1c00480a 00b00433 add x8, x0, x11 x8=1c00922c x11:1c00922c +74572529ns 1311555 1c00480c 00078d63 beq x15, x0, 26 x15:00000000 +74572588ns 1311558 1c004826 00c10693 addi x13, x2, 12 x13=1c01994c x2:1c019940 +74572608ns 1311559 1c004828 00810613 addi x12, x2, 8 x12=1c019948 x2:1c019940 +74572628ns 1311560 1c00482a 00a00933 add x18, x0, x10 x18=1c008bdc x10:1c008bdc +74572647ns 1311561 1c00482c f75ff0ef jal x1, -140 x1=1c004830 +74572687ns 1311563 1c0047a0 f9010113 addi x2, x2, -112 x2=1c0198d0 x2:1c019940 +74572707ns 1311564 1c0047a2 07212023 sw x18, 96(x2) x18:1c008bdc x2:1c0198d0 PA:1c019930 +74572727ns 1311565 1c0047a4 00b00933 add x18, x0, x11 x18=1c00922c x11:1c00922c +74572746ns 1311566 1c0047a6 00e59583 lh x11, 14(x11) x11=00000001 x11:1c00922c PA:1c00923a +74572766ns 1311567 1c0047aa 06812423 sw x8, 104(x2) x8:1c00922c x2:1c0198d0 PA:1c019938 +74572786ns 1311568 1c0047ac 06912223 sw x9, 100(x2) x9:1c008bdc x2:1c0198d0 PA:1c019934 +74572806ns 1311569 1c0047ae 06112623 sw x1, 108(x2) x1:1c004830 x2:1c0198d0 PA:1c01993c +74572826ns 1311570 1c0047b0 00c00433 add x8, x0, x12 x8=1c019948 x12:1c019948 +74572845ns 1311571 1c0047b2 00d004b3 add x9, x0, x13 x9=1c01994c x13:1c01994c +74572865ns 1311572 1c0047b4 0005dc63 bge x11, x0, 24 x11:00000001 +74572925ns 1311575 1c0047cc 00810613 addi x12, x2, 8 x12=1c0198d8 x2:1c0198d0 +74572944ns 1311576 1c0047ce 576000ef jal x1, 1398 x1=1c0047d0 +74572984ns 1311578 1c004d44 ff010113 addi x2, x2, -16 x2=1c0198c0 x2:1c0198d0 +74573004ns 1311579 1c004d46 00812423 sw x8, 8(x2) x8:1c019948 x2:1c0198c0 PA:1c0198c8 +74573024ns 1311580 1c004d48 00912223 sw x9, 4(x2) x9:1c01994c x2:1c0198c0 PA:1c0198c4 +74573043ns 1311581 1c004d4a 00a00433 add x8, x0, x10 x8=1c008bdc x10:1c008bdc +74573063ns 1311582 1c004d4c 00b00533 add x10, x0, x11 x10=00000001 x11:00000001 +74573083ns 1311583 1c004d4e 00c005b3 add x11, x0, x12 x11=1c0198d8 x12:1c0198d8 +74573103ns 1311584 1c004d50 00112623 sw x1, 12(x2) x1:1c0047d0 x2:1c0198c0 PA:1c0198cc +74573122ns 1311585 1c004d52 dc01a023 sw x0, -576(x3) x3:1c0093dc PA:1c00919c +74573142ns 1311586 1c004d56 c77fd0ef jal x1, -9098 x1=1c004d5a +74573182ns 1311588 1c0029cc 000027b7 lui x15, 0x2000 x15=00002000 +74573202ns 1311589 1c0029ce 00f5a223 sw x15, 4(x11) x15:00002000 x11:1c0198d8 PA:1c0198dc +74573221ns 1311590 1c0029d0 00000513 addi x10, x0, 0 x10=00000000 +74573241ns 1311591 1c0029d2 00008067 jalr x0, x1, 0 x1:1c004d5a +74573281ns 1311593 1c004d5a fff00793 addi x15, x0, -1 x15=ffffffff +74573301ns 1311594 1c004d5c 00f51663 bne x10, x15, 12 x10:00000000 x15:ffffffff +74573360ns 1311597 1c004d68 00c12083 lw x1, 12(x2) x1=1c0047d0 x2:1c0198c0 PA:1c0198cc +74573380ns 1311598 1c004d6a 00812403 lw x8, 8(x2) x8=1c019948 x2:1c0198c0 PA:1c0198c8 +74573400ns 1311599 1c004d6c 00412483 lw x9, 4(x2) x9=1c01994c x2:1c0198c0 PA:1c0198c4 +74573419ns 1311600 1c004d6e 01010113 addi x2, x2, 16 x2=1c0198d0 x2:1c0198c0 +74573439ns 1311601 1c004d70 00008067 jalr x0, x1, 0 x1:1c0047d0 +74573479ns 1311603 1c0047d0 fe0544e3 blt x10, x0, -24 x10:00000000 +74573499ns 1311604 1c0047d4 00c12703 lw x14, 12(x2) x14=00002000 x2:1c0198d0 PA:1c0198dc +74573518ns 1311605 1c0047d6 0000f7b7 lui x15, 0xf000 x15=0000f000 +74573538ns 1311606 1c0047d8 00e7f7b3 and x15, x15, x14 x15=00002000 x15:0000f000 x14:00002000 +74573558ns 1311607 1c0047da ffffe737 lui x14, 0xffffe000 x14=ffffe000 +74573578ns 1311608 1c0047dc 00e787b3 add x15, x15, x14 x15=00000000 x15:00002000 x14:ffffe000 +74573597ns 1311609 1c0047de 0017b793 sltiu x15, x15, 1 x15=00000001 x15:00000000 +74573617ns 1311610 1c0047e2 00f4a023 sw x15, 0(x9) x15:00000001 x9:1c01994c PA:1c01994c +74573637ns 1311611 1c0047e4 fe3ff06f jal x0, -30 +74573696ns 1311614 1c0047c6 40000793 addi x15, x0, 1024 x15=00000400 +74573716ns 1311615 1c0047ca 0200006f jal x0, 32 +74573756ns 1311617 1c0047ea 06c12083 lw x1, 108(x2) x1=1c004830 x2:1c0198d0 PA:1c01993c +74573776ns 1311618 1c0047ec 00f42023 sw x15, 0(x8) x15:00000400 x8:1c019948 PA:1c019948 +74573795ns 1311619 1c0047ee 06812403 lw x8, 104(x2) x8=1c00922c x2:1c0198d0 PA:1c019938 +74573815ns 1311620 1c0047f0 06412483 lw x9, 100(x2) x9=1c008bdc x2:1c0198d0 PA:1c019934 +74573835ns 1311621 1c0047f2 06012903 lw x18, 96(x2) x18=1c008bdc x2:1c0198d0 PA:1c019930 +74573855ns 1311622 1c0047f4 00000513 addi x10, x0, 0 x10=00000000 +74573875ns 1311623 1c0047f6 07010113 addi x2, x2, 112 x2=1c019940 x2:1c0198d0 +74573894ns 1311624 1c0047f8 00008067 jalr x0, x1, 0 x1:1c004830 +74573934ns 1311626 1c004830 00812583 lw x11, 8(x2) x11=00000400 x2:1c019940 PA:1c019948 +74573954ns 1311627 1c004832 00a004b3 add x9, x0, x10 x9=00000000 x10:00000000 +74573974ns 1311628 1c004834 01200533 add x10, x0, x18 x10=1c008bdc x18:1c008bdc +74573993ns 1311629 1c004836 992ff0ef jal x1, -3694 x1=1c00483a +74574033ns 1311631 1c0039c8 fe010113 addi x2, x2, -32 x2=1c019920 x2:1c019940 +74574053ns 1311632 1c0039ca 00912a23 sw x9, 20(x2) x9:00000000 x2:1c019920 PA:1c019934 +74574072ns 1311633 1c0039cc 00358493 addi x9, x11, 3 x9=00000403 x11:00000400 +74574092ns 1311634 1c0039d0 ffc4f493 andi x9, x9, -4 x9=00000400 x9:00000403 +74574112ns 1311635 1c0039d2 01212823 sw x18, 16(x2) x18:1c008bdc x2:1c019920 PA:1c019930 +74574132ns 1311636 1c0039d4 00112e23 sw x1, 28(x2) x1:1c00483a x2:1c019920 PA:1c01993c +74574152ns 1311637 1c0039d6 00812c23 sw x8, 24(x2) x8:1c00922c x2:1c019920 PA:1c019938 +74574171ns 1311638 1c0039d8 01312623 sw x19, 12(x2) x19:xxxxxxxx x2:1c019920 PA:1c01992c +74574191ns 1311639 1c0039da 00848493 addi x9, x9, 8 x9=00000408 x9:00000400 +74574211ns 1311640 1c0039dc 00c00793 addi x15, x0, 12 x15=0000000c +74574231ns 1311641 1c0039de 00a00933 add x18, x0, x10 x18=1c008bdc x10:1c008bdc +74574251ns 1311642 1c0039e0 04f4f363 bgeu x9, x15, 70 x9:00000408 x15:0000000c +74574330ns 1311646 1c003a26 fc04d0e3 bge x9, x0, -64 x9:00000408 +74574409ns 1311650 1c0039e6 04b4e263 bltu x9, x11, 68 x9:00000408 x11:00000400 +74574429ns 1311651 1c0039ea 01200533 add x10, x0, x18 x10=1c008bdc x18:1c008bdc +74574449ns 1311652 1c0039ec 87aff0ef jal x1, -3974 x1=1c0039f0 +74574508ns 1311655 1c002a66 fb1fe06f jal x0, -4176 +74574567ns 1311658 1c001a16 d6818793 addi x15, x3, -664 x15=1c009144 x3:1c0093dc +74574587ns 1311659 1c001a1a 0007a703 lw x14, 0(x15) x14=00000000 x15:1c009144 PA:1c009144 +74574627ns 1311661 1c001a1c 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +74574646ns 1311662 1c001a1e 00e7a023 sw x14, 0(x15) x14:00000001 x15:1c009144 PA:1c009144 +74574666ns 1311663 1c001a20 00008067 jalr x0, x1, 0 x1:1c0039f0 +74574706ns 1311665 1c0039f0 db81a703 lw x14, -584(x3) x14=00000000 x3:1c0093dc PA:1c009194 +74574726ns 1311666 1c0039f4 db818693 addi x13, x3, -584 x13=1c009194 x3:1c0093dc +74574745ns 1311667 1c0039f8 00e00433 add x8, x0, x14 x8=00000000 x14:00000000 +74574765ns 1311668 1c0039fa 04041363 bne x8, x0, 70 x8:00000000 +74574785ns 1311669 1c0039fc dbc18413 addi x8, x3, -580 x8=1c009198 x3:1c0093dc +74574805ns 1311670 1c003a00 00042783 lw x15, 0(x8) x15=1c0091b0 x8:1c009198 PA:1c009198 +74574844ns 1311672 1c003a02 00079563 bne x15, x0, 10 x15:1c0091b0 +74574904ns 1311675 1c003a0c 009005b3 add x11, x0, x9 x11=00000408 x9:00000408 +74574924ns 1311676 1c003a0e 01200533 add x10, x0, x18 x10=1c008bdc x18:1c008bdc +74574943ns 1311677 1c003a10 5cc000ef jal x1, 1484 x1=1c003a12 +74574983ns 1311679 1c003fdc ff010113 addi x2, x2, -16 x2=1c019910 x2:1c019920 +74575003ns 1311680 1c003fde 00812423 sw x8, 8(x2) x8:1c009198 x2:1c019910 PA:1c019918 +74575023ns 1311681 1c003fe0 00912223 sw x9, 4(x2) x9:00000408 x2:1c019910 PA:1c019914 +74575042ns 1311682 1c003fe2 00a00433 add x8, x0, x10 x8=1c008bdc x10:1c008bdc +74575062ns 1311683 1c003fe4 00b00533 add x10, x0, x11 x10=00000408 x11:00000408 +74575082ns 1311684 1c003fe6 00112623 sw x1, 12(x2) x1:1c003a12 x2:1c019910 PA:1c01991c +74575102ns 1311685 1c003fe8 dc01a023 sw x0, -576(x3) x3:1c0093dc PA:1c00919c +74575121ns 1311686 1c003fec a53fe0ef jal x1, -5550 x1=1c003ff0 +74575181ns 1311689 1c002a3e 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +74575201ns 1311690 1c002a42 c3c78793 addi x15, x15, -964 x15=1c008c3c x15:1c009000 +74575220ns 1311691 1c002a46 00a00733 add x14, x0, x10 x14=00000408 x10:00000408 +74575240ns 1311692 1c002a48 0007a503 lw x10, 0(x15) x10=1c009364 x15:1c008c3c PA:1c008c3c +74575260ns 1311693 1c002a4a 1c0196b7 lui x13, 0x1c019000 x13=1c019000 +74575280ns 1311694 1c002a4e 1b068693 addi x13, x13, 432 x13=1c0191b0 x13:1c019000 +74575300ns 1311695 1c002a52 00a70733 add x14, x14, x10 x14=1c00976c x14:00000408 x10:1c009364 +74575319ns 1311696 1c002a54 00d76763 bltu x14, x13, 14 x14:1c00976c x13:1c0191b0 +74575379ns 1311699 1c002a62 00e7a023 sw x14, 0(x15) x14:1c00976c x15:1c008c3c PA:1c008c3c +74575399ns 1311700 1c002a64 00008067 jalr x0, x1, 0 x1:1c003ff0 +74575438ns 1311702 1c003ff0 fff00793 addi x15, x0, -1 x15=ffffffff +74575458ns 1311703 1c003ff2 00f51663 bne x10, x15, 12 x10:1c009364 x15:ffffffff +74575517ns 1311706 1c003ffe 00c12083 lw x1, 12(x2) x1=1c003a12 x2:1c019910 PA:1c01991c +74575537ns 1311707 1c004000 00812403 lw x8, 8(x2) x8=1c009198 x2:1c019910 PA:1c019918 +74575557ns 1311708 1c004002 00412483 lw x9, 4(x2) x9=00000408 x2:1c019910 PA:1c019914 +74575577ns 1311709 1c004004 01010113 addi x2, x2, 16 x2=1c019920 x2:1c019910 +74575596ns 1311710 1c004006 00008067 jalr x0, x1, 0 x1:1c003a12 +74575636ns 1311712 1c003a12 fff00993 addi x19, x0, -1 x19=ffffffff +74575656ns 1311713 1c003a14 07351a63 bne x10, x19, 116 x10:1c009364 x19:ffffffff +74575715ns 1311716 1c003a88 00350413 addi x8, x10, 3 x8=1c009367 x10:1c009364 +74575735ns 1311717 1c003a8c ffc47413 andi x8, x8, -4 x8=1c009364 x8:1c009367 +74575755ns 1311718 1c003a8e fc8502e3 beq x10, x8, -60 x10:1c009364 x8:1c009364 +74575814ns 1311721 1c003a52 00942023 sw x9, 0(x8) x9:00000408 x8:1c009364 PA:1c009364 +74575834ns 1311722 1c003a54 00a0006f jal x0, 10 +74575874ns 1311724 1c003a5e 01200533 add x10, x0, x18 x10=1c008bdc x18:1c008bdc +74575893ns 1311725 1c003a60 80aff0ef jal x1, -4086 x1=1c003a64 +74575953ns 1311728 1c002a6a 8e3ff06f jal x0, -1822 +74575992ns 1311730 1c00234c fc010113 addi x2, x2, -64 x2=1c0198e0 x2:1c019920 +74576012ns 1311731 1c00234e 02812c23 sw x8, 56(x2) x8:1c009364 x2:1c0198e0 PA:1c019918 +74576032ns 1311732 1c002350 d6818413 addi x8, x3, -664 x8=1c009144 x3:1c0093dc +74576052ns 1311733 1c002354 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +74576071ns 1311734 1c002356 02112e23 sw x1, 60(x2) x1:1c003a64 x2:1c0198e0 PA:1c01991c +74576091ns 1311735 1c002358 02912a23 sw x9, 52(x2) x9:00000408 x2:1c0198e0 PA:1c019914 +74576111ns 1311736 1c00235a 03212823 sw x18, 48(x2) x18:1c008bdc x2:1c0198e0 PA:1c019910 +74576131ns 1311737 1c00235c 03312623 sw x19, 44(x2) x19:ffffffff x2:1c0198e0 PA:1c01990c +74576151ns 1311738 1c00235e 03412423 sw x20, 40(x2) x20:xxxxxxxx x2:1c0198e0 PA:1c019908 +74576170ns 1311739 1c002360 03512223 sw x21, 36(x2) x21:xxxxxxxx x2:1c0198e0 PA:1c019904 +74576190ns 1311740 1c002362 03612023 sw x22, 32(x2) x22:xxxxxxxx x2:1c0198e0 PA:1c019900 +74576210ns 1311741 1c002364 01712e23 sw x23, 28(x2) x23:xxxxxxxx x2:1c0198e0 PA:1c0198fc +74576230ns 1311742 1c002366 02079263 bne x15, x0, 36 x15:00000001 +74576309ns 1311746 1c00238a c83ff0ef jal x1, -894 x1=1c00238e +74576349ns 1311748 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +74576428ns 1311752 1c002010 d841a783 lw x15, -636(x3) x15=00000000 x3:1c0093dc PA:1c009160 +74576467ns 1311754 1c002014 00078863 beq x15, x0, 16 x15:00000000 +74576527ns 1311757 1c002024 00008067 jalr x0, x1, 0 x1:1c00238e +74576566ns 1311759 1c00238e 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +74576606ns 1311761 1c002390 fff78793 addi x15, x15, -1 x15=00000000 x15:00000001 +74576626ns 1311762 1c002392 00f42023 sw x15, 0(x8) x15:00000000 x8:1c009144 PA:1c009144 +74576645ns 1311763 1c002394 00042783 lw x15, 0(x8) x15=00000000 x8:1c009144 PA:1c009144 +74576685ns 1311765 1c002396 02078163 beq x15, x0, 34 x15:00000000 +74576744ns 1311768 1c0023b8 d601a783 lw x15, -672(x3) x15=00000000 x3:1c0093dc PA:1c00913c +74576784ns 1311770 1c0023bc fc078ee3 beq x15, x0, -36 x15:00000000 +74576843ns 1311773 1c002398 00000513 addi x10, x0, 0 x10=00000000 +74576863ns 1311774 1c00239a 00a12623 sw x10, 12(x2) x10:00000000 x2:1c0198e0 PA:1c0198ec +74576883ns 1311775 1c00239c c8bff0ef jal x1, -886 x1=1c0023a0 +74576942ns 1311778 1c002026 d841a783 lw x15, -636(x3) x15=00000000 x3:1c0093dc PA:1c009160 +74576982ns 1311780 1c00202a 00078f63 beq x15, x0, 30 x15:00000000 +74577041ns 1311783 1c002048 00008067 jalr x0, x1, 0 x1:1c0023a0 +74577081ns 1311785 1c0023a0 03c12083 lw x1, 60(x2) x1=1c003a64 x2:1c0198e0 PA:1c01991c +74577101ns 1311786 1c0023a2 03812403 lw x8, 56(x2) x8=1c009364 x2:1c0198e0 PA:1c019918 +74577120ns 1311787 1c0023a4 00c12503 lw x10, 12(x2) x10=00000000 x2:1c0198e0 PA:1c0198ec +74577140ns 1311788 1c0023a6 03412483 lw x9, 52(x2) x9=00000408 x2:1c0198e0 PA:1c019914 +74577160ns 1311789 1c0023a8 03012903 lw x18, 48(x2) x18=1c008bdc x2:1c0198e0 PA:1c019910 +74577180ns 1311790 1c0023aa 02c12983 lw x19, 44(x2) x19=ffffffff x2:1c0198e0 PA:1c01990c +74577200ns 1311791 1c0023ac 02812a03 lw x20, 40(x2) x20=xxxxxxxx x2:1c0198e0 PA:1c019908 +74577219ns 1311792 1c0023ae 02412a83 lw x21, 36(x2) x21=xxxxxxxx x2:1c0198e0 PA:1c019904 +74577239ns 1311793 1c0023b0 02012b03 lw x22, 32(x2) x22=xxxxxxxx x2:1c0198e0 PA:1c019900 +74577259ns 1311794 1c0023b2 01c12b83 lw x23, 28(x2) x23=xxxxxxxx x2:1c0198e0 PA:1c0198fc +74577279ns 1311795 1c0023b4 04010113 addi x2, x2, 64 x2=1c019920 x2:1c0198e0 +74577299ns 1311796 1c0023b6 00008067 jalr x0, x1, 0 x1:1c003a64 +74577338ns 1311798 1c003a64 00b40513 addi x10, x8, 11 x10=1c00936f x8:1c009364 +74577358ns 1311799 1c003a68 00440793 addi x15, x8, 4 x15=1c009368 x8:1c009364 +74577378ns 1311800 1c003a6c ff857513 andi x10, x10, -8 x10=1c009368 x10:1c00936f +74577398ns 1311801 1c003a6e 40f50733 sub x14, x10, x15 x14=00000000 x10:1c009368 x15:1c009368 +74577417ns 1311802 1c003a72 fcf500e3 beq x10, x15, -64 x10:1c009368 x15:1c009368 +74577477ns 1311805 1c003a32 01c12083 lw x1, 28(x2) x1=1c00483a x2:1c019920 PA:1c01993c +74577497ns 1311806 1c003a34 01812403 lw x8, 24(x2) x8=1c00922c x2:1c019920 PA:1c019938 +74577516ns 1311807 1c003a36 01412483 lw x9, 20(x2) x9=00000000 x2:1c019920 PA:1c019934 +74577536ns 1311808 1c003a38 01012903 lw x18, 16(x2) x18=1c008bdc x2:1c019920 PA:1c019930 +74577556ns 1311809 1c003a3a 00c12983 lw x19, 12(x2) x19=xxxxxxxx x2:1c019920 PA:1c01992c +74577576ns 1311810 1c003a3c 02010113 addi x2, x2, 32 x2=1c019940 x2:1c019920 +74577595ns 1311811 1c003a3e 00008067 jalr x0, x1, 0 x1:1c00483a +74577635ns 1311813 1c00483a 00051c63 bne x10, x0, 24 x10:1c009368 +74577714ns 1311817 1c004852 1c0047b7 lui x15, 0x1c004000 x15=1c004000 +74577734ns 1311818 1c004856 5d278793 addi x15, x15, 1490 x15=1c0045d2 x15:1c004000 +74577754ns 1311819 1c00485a 02f92423 sw x15, 40(x18) x15:1c0045d2 x18:1c008bdc PA:1c008c04 +74577774ns 1311820 1c00485e 00c45783 lhu x15, 12(x8) x15=00000009 x8:1c00922c PA:1c009238 +74577793ns 1311821 1c004862 00a42023 sw x10, 0(x8) x10:1c009368 x8:1c00922c PA:1c00922c +74577813ns 1311822 1c004864 00a42823 sw x10, 16(x8) x10:1c009368 x8:1c00922c PA:1c00923c +74577833ns 1311823 1c004866 0807e793 ori x15, x15, 128 x15=00000089 x15:00000009 +74577853ns 1311824 1c00486a 00f41623 sh x15, 12(x8) x15:00000089 x8:1c00922c PA:1c009238 +74577873ns 1311825 1c00486e 00812783 lw x15, 8(x2) x15=00000400 x2:1c019940 PA:1c019948 +74577912ns 1311827 1c004870 00f42a23 sw x15, 20(x8) x15:00000400 x8:1c00922c PA:1c009240 +74577932ns 1311828 1c004872 00c12783 lw x15, 12(x2) x15=00000001 x2:1c019940 PA:1c01994c +74577972ns 1311830 1c004874 00078d63 beq x15, x0, 26 x15:00000001 +74577991ns 1311831 1c004876 00e41583 lh x11, 14(x8) x11=00000001 x8:1c00922c PA:1c00923a +74578011ns 1311832 1c00487a 01200533 add x10, x0, x18 x10=1c008bdc x18:1c008bdc +74578031ns 1311833 1c00487c 4f6000ef jal x1, 1270 x1=1c00487e +74578070ns 1311835 1c004d72 ff010113 addi x2, x2, -16 x2=1c019930 x2:1c019940 +74578090ns 1311836 1c004d74 00812423 sw x8, 8(x2) x8:1c00922c x2:1c019930 PA:1c019938 +74578110ns 1311837 1c004d76 00912223 sw x9, 4(x2) x9:00000000 x2:1c019930 PA:1c019934 +74578130ns 1311838 1c004d78 00a00433 add x8, x0, x10 x8=1c008bdc x10:1c008bdc +74578150ns 1311839 1c004d7a 00b00533 add x10, x0, x11 x10=00000001 x11:00000001 +74578169ns 1311840 1c004d7c 00112623 sw x1, 12(x2) x1:1c00487e x2:1c019930 PA:1c01993c +74578189ns 1311841 1c004d7e dc01a023 sw x0, -576(x3) x3:1c0093dc PA:1c00919c +74578209ns 1311842 1c004d82 c57fd0ef jal x1, -9130 x1=1c004d86 +74578249ns 1311844 1c0029d8 fff50513 addi x10, x10, -1 x10=00000000 x10:00000001 +74578268ns 1311845 1c0029da 00153513 sltiu x10, x10, 1 x10=00000001 x10:00000000 +74578288ns 1311846 1c0029de 00008067 jalr x0, x1, 0 x1:1c004d86 +74578328ns 1311848 1c004d86 fff00793 addi x15, x0, -1 x15=ffffffff +74578348ns 1311849 1c004d88 00f51663 bne x10, x15, 12 x10:00000001 x15:ffffffff +74578407ns 1311852 1c004d94 00c12083 lw x1, 12(x2) x1=1c00487e x2:1c019930 PA:1c01993c +74578427ns 1311853 1c004d96 00812403 lw x8, 8(x2) x8=1c00922c x2:1c019930 PA:1c019938 +74578447ns 1311854 1c004d98 00412483 lw x9, 4(x2) x9=00000000 x2:1c019930 PA:1c019934 +74578466ns 1311855 1c004d9a 01010113 addi x2, x2, 16 x2=1c019940 x2:1c019930 +74578486ns 1311856 1c004d9c 00008067 jalr x0, x1, 0 x1:1c00487e +74578526ns 1311858 1c00487e 00050863 beq x10, x0, 16 x10:00000001 +74578545ns 1311859 1c004880 00c45783 lhu x15, 12(x8) x15=00000089 x8:1c00922c PA:1c009238 +74578585ns 1311861 1c004884 ffc7f793 andi x15, x15, -4 x15=00000088 x15:00000089 +74578605ns 1311862 1c004886 0017e793 ori x15, x15, 1 x15=00000089 x15:00000088 +74578625ns 1311863 1c00488a 00f41623 sh x15, 12(x8) x15:00000089 x8:1c00922c PA:1c009238 +74578644ns 1311864 1c00488e 00c45503 lhu x10, 12(x8) x10=00000089 x8:1c00922c PA:1c009238 +74578684ns 1311866 1c004892 00a4e4b3 or x9, x9, x10 x9=00000089 x9:00000000 x10:00000089 +74578704ns 1311867 1c004894 00941623 sh x9, 12(x8) x9:00000089 x8:1c00922c PA:1c009238 +74578724ns 1311868 1c004898 f83ff06f jal x0, -126 +74578763ns 1311870 1c00481a 01c12083 lw x1, 28(x2) x1=1c004234 x2:1c019940 PA:1c01995c +74578783ns 1311871 1c00481c 01812403 lw x8, 24(x2) x8=1c00922c x2:1c019940 PA:1c019958 +74578803ns 1311872 1c00481e 01412483 lw x9, 20(x2) x9=1c008bdc x2:1c019940 PA:1c019954 +74578823ns 1311873 1c004820 01012903 lw x18, 16(x2) x18=1c008bdc x2:1c019940 PA:1c019950 +74578842ns 1311874 1c004822 02010113 addi x2, x2, 32 x2=1c019960 x2:1c019940 +74578862ns 1311875 1c004824 00008067 jalr x0, x1, 0 x1:1c004234 +74578902ns 1311877 1c004234 00c41783 lh x15, 12(x8) x15=00000089 x8:1c00922c PA:1c009238 +74578941ns 1311879 1c004238 01079713 slli x14, x15, 0x10 x14=00890000 x15:00000089 +74578961ns 1311880 1c00423c 0017f693 andi x13, x15, 1 x13=00000001 x15:00000089 +74578981ns 1311881 1c004240 01075713 srli x14, x14, 0x10 x14=00000089 x14:00890000 +74579001ns 1311882 1c004242 02068363 beq x13, x0, 38 x13:00000001 +74579020ns 1311883 1c004244 01442683 lw x13, 20(x8) x13=00000400 x8:1c00922c PA:1c009240 +74579040ns 1311884 1c004246 00042423 sw x0, 8(x8) x8:1c00922c PA:1c009234 +74579060ns 1311885 1c00424a 40d006b3 sub x13, x0, x13 x13=fffffc00 x13:00000400 +74579080ns 1311886 1c00424e 00d42c23 sw x13, 24(x8) x13:fffffc00 x8:1c00922c PA:1c009244 +74579100ns 1311887 1c004250 01042683 lw x13, 16(x8) x13=1c009368 x8:1c00922c PA:1c00923c +74579119ns 1311888 1c004252 00000513 addi x10, x0, 0 x10=00000000 +74579139ns 1311889 1c004254 00069463 bne x13, x0, 8 x13:1c009368 +74579199ns 1311892 1c00425c 00c12083 lw x1, 12(x2) x1=1c003e82 x2:1c019960 PA:1c01996c +74579218ns 1311893 1c00425e 00812403 lw x8, 8(x2) x8=1c00922c x2:1c019960 PA:1c019968 +74579238ns 1311894 1c004260 00412483 lw x9, 4(x2) x9=1c008bdc x2:1c019960 PA:1c019964 +74579258ns 1311895 1c004262 00012903 lw x18, 0(x2) x18=1c008964 x2:1c019960 PA:1c019960 +74579278ns 1311896 1c004264 01010113 addi x2, x2, 16 x2=1c019970 x2:1c019960 +74579298ns 1311897 1c004266 00008067 jalr x0, x1, 0 x1:1c003e82 +74579337ns 1311899 1c003e82 fa050ae3 beq x10, x0, -76 x10:00000000 +74579397ns 1311902 1c003e36 fff00993 addi x19, x0, -1 x19=ffffffff +74579416ns 1311903 1c003e38 00a00a13 addi x20, x0, 10 x20=0000000a +74579436ns 1311904 1c003e3a 00842783 lw x15, 8(x8) x15=00000000 x8:1c00922c PA:1c009234 +74579456ns 1311905 1c003e3c 00094583 lbu x11, 0(x18) x11=0000000a x18:1c008964 PA:1c008964 +74579476ns 1311906 1c003e40 fff78793 addi x15, x15, -1 x15=ffffffff x15:00000000 +74579495ns 1311907 1c003e42 04059a63 bne x11, x0, 84 x11:0000000a +74579555ns 1311910 1c003e96 00f42423 sw x15, 8(x8) x15:ffffffff x8:1c00922c PA:1c009234 +74579575ns 1311911 1c003e98 00190913 addi x18, x18, 1 x18=1c008965 x18:1c008964 +74579594ns 1311912 1c003e9a 0007d763 bge x15, x0, 14 x15:ffffffff +74579614ns 1311913 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00922c PA:1c009244 +74579654ns 1311915 1c003ea0 00e7cb63 blt x15, x14, 22 x15:ffffffff x14:fffffc00 +74579674ns 1311916 1c003ea4 01458963 beq x11, x20, 18 x11:0000000a x20:0000000a +74579733ns 1311919 1c003eb6 00800633 add x12, x0, x8 x12=1c00922c x8:1c00922c +74579753ns 1311920 1c003eb8 00900533 add x10, x0, x9 x10=1c008bdc x9:1c008bdc +74579773ns 1311921 1c003eba 1f0000ef jal x1, 496 x1=1c003ebc +74579812ns 1311923 1c0040aa fe010113 addi x2, x2, -32 x2=1c019950 x2:1c019970 +74579832ns 1311924 1c0040ac 00812c23 sw x8, 24(x2) x8:1c00922c x2:1c019950 PA:1c019968 +74579852ns 1311925 1c0040ae 00912a23 sw x9, 20(x2) x9:1c008bdc x2:1c019950 PA:1c019964 +74579872ns 1311926 1c0040b0 01212823 sw x18, 16(x2) x18:1c008965 x2:1c019950 PA:1c019960 +74579891ns 1311927 1c0040b2 00112e23 sw x1, 28(x2) x1:1c003ebc x2:1c019950 PA:1c01996c +74579911ns 1311928 1c0040b4 01312623 sw x19, 12(x2) x19:ffffffff x2:1c019950 PA:1c01995c +74579931ns 1311929 1c0040b6 00a004b3 add x9, x0, x10 x9=1c008bdc x10:1c008bdc +74579951ns 1311930 1c0040b8 00b00933 add x18, x0, x11 x18=0000000a x11:0000000a +74579971ns 1311931 1c0040ba 00c00433 add x8, x0, x12 x8=1c00922c x12:1c00922c +74579990ns 1311932 1c0040bc 00050463 beq x10, x0, 8 x10:1c008bdc +74580010ns 1311933 1c0040be 01852783 lw x15, 24(x10) x15=00000001 x10:1c008bdc PA:1c008bf4 +74580050ns 1311935 1c0040c0 00079263 bne x15, x0, 4 x15:00000001 +74580109ns 1311938 1c0040c4 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +74580129ns 1311939 1c0040c8 a1478793 addi x15, x15, -1516 x15=1c008a14 x15:1c009000 +74580149ns 1311940 1c0040cc 06f41963 bne x8, x15, 114 x8:1c00922c x15:1c008a14 +74580228ns 1311944 1c00413e 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +74580248ns 1311945 1c004142 a3478793 addi x15, x15, -1484 x15=1c008a34 x15:1c009000 +74580267ns 1311946 1c004146 00f41463 bne x8, x15, 8 x8:1c00922c x15:1c008a34 +74580347ns 1311950 1c00414e 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +74580366ns 1311951 1c004152 9f478793 addi x15, x15, -1548 x15=1c0089f4 x15:1c009000 +74580386ns 1311952 1c004156 f6f41ee3 bne x8, x15, -132 x8:1c00922c x15:1c0089f4 +74580446ns 1311955 1c0040d2 01842783 lw x15, 24(x8) x15=fffffc00 x8:1c00922c PA:1c009244 +74580485ns 1311957 1c0040d4 00f42423 sw x15, 8(x8) x15:fffffc00 x8:1c00922c PA:1c009234 +74580505ns 1311958 1c0040d6 00c45783 lhu x15, 12(x8) x15=00000089 x8:1c00922c PA:1c009238 +74580544ns 1311960 1c0040da 0087f793 andi x15, x15, 8 x15=00000008 x15:00000089 +74580564ns 1311961 1c0040dc 08078163 beq x15, x0, 130 x15:00000008 +74580584ns 1311962 1c0040de 01042783 lw x15, 16(x8) x15=1c009368 x8:1c00922c PA:1c00923c +74580624ns 1311964 1c0040e0 06078f63 beq x15, x0, 126 x15:1c009368 +74580643ns 1311965 1c0040e2 01042783 lw x15, 16(x8) x15=1c009368 x8:1c00922c PA:1c00923c +74580663ns 1311966 1c0040e4 00042503 lw x10, 0(x8) x10=1c009368 x8:1c00922c PA:1c00922c +74580683ns 1311967 1c0040e6 0ff97993 andi x19, x18, 255 x19=0000000a x18:0000000a +74580703ns 1311968 1c0040ea 0ff97913 andi x18, x18, 255 x18=0000000a x18:0000000a +74580723ns 1311969 1c0040ee 40f50533 sub x10, x10, x15 x10=00000000 x10:1c009368 x15:1c009368 +74580742ns 1311970 1c0040f0 01442783 lw x15, 20(x8) x15=00000400 x8:1c00922c PA:1c009240 +74580782ns 1311972 1c0040f2 00f54663 blt x10, x15, 12 x10:00000000 x15:00000400 +74580841ns 1311975 1c0040fe 00842783 lw x15, 8(x8) x15=fffffc00 x8:1c00922c PA:1c009234 +74580861ns 1311976 1c004100 00150513 addi x10, x10, 1 x10=00000001 x10:00000000 +74580881ns 1311977 1c004102 fff78793 addi x15, x15, -1 x15=fffffbff x15:fffffc00 +74580901ns 1311978 1c004104 00f42423 sw x15, 8(x8) x15:fffffbff x8:1c00922c PA:1c009234 +74580921ns 1311979 1c004106 00042783 lw x15, 0(x8) x15=1c009368 x8:1c00922c PA:1c00922c +74580960ns 1311981 1c004108 00178713 addi x14, x15, 1 x14=1c009369 x15:1c009368 +74580980ns 1311982 1c00410c 00e42023 sw x14, 0(x8) x14:1c009369 x8:1c00922c PA:1c00922c +74581000ns 1311983 1c00410e 01378023 sb x19, 0(x15) x19:0000000a x15:1c009368 PA:1c009368 +74581019ns 1311984 1c004112 01442783 lw x15, 20(x8) x15=00000400 x8:1c00922c PA:1c009240 +74581059ns 1311986 1c004114 00a78963 beq x15, x10, 18 x15:00000400 x10:00000001 +74581079ns 1311987 1c004118 00c45783 lhu x15, 12(x8) x15=00000089 x8:1c00922c PA:1c009238 +74581118ns 1311989 1c00411c 0017f793 andi x15, x15, 1 x15=00000001 x15:00000089 +74581138ns 1311990 1c00411e 00078863 beq x15, x0, 16 x15:00000001 +74581158ns 1311991 1c004120 00a00793 addi x15, x0, 10 x15=0000000a +74581178ns 1311992 1c004122 00f91663 bne x18, x15, 12 x18:0000000a x15:0000000a +74581198ns 1311993 1c004126 008005b3 add x11, x0, x8 x11=1c00922c x8:1c00922c +74581217ns 1311994 1c004128 00900533 add x10, x0, x9 x10=1c008bdc x9:1c008bdc +74581237ns 1311995 1c00412a 3d8000ef jal x1, 984 x1=1c00412c +74581277ns 1311997 1c004502 0105a783 lw x15, 16(x11) x15=1c009368 x11:1c00922c PA:1c00923c +74581316ns 1311999 1c004504 06078063 beq x15, x0, 96 x15:1c009368 +74581336ns 1312000 1c004506 fe010113 addi x2, x2, -32 x2=1c019930 x2:1c019950 +74581356ns 1312001 1c004508 00812c23 sw x8, 24(x2) x8:1c00922c x2:1c019930 PA:1c019948 +74581376ns 1312002 1c00450a 00112e23 sw x1, 28(x2) x1:1c00412c x2:1c019930 PA:1c01994c +74581396ns 1312003 1c00450c 00a00433 add x8, x0, x10 x8=1c008bdc x10:1c008bdc +74581415ns 1312004 1c00450e 00050663 beq x10, x0, 12 x10:1c008bdc +74581435ns 1312005 1c004510 01852783 lw x15, 24(x10) x15=00000001 x10:1c008bdc PA:1c008bf4 +74581475ns 1312007 1c004512 00079463 bne x15, x0, 8 x15:00000001 +74581554ns 1312011 1c00451a 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +74581574ns 1312012 1c00451e a1478793 addi x15, x15, -1516 x15=1c008a14 x15:1c009000 +74581593ns 1312013 1c004522 00f59c63 bne x11, x15, 24 x11:1c00922c x15:1c008a14 +74581673ns 1312017 1c00453a 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +74581692ns 1312018 1c00453e a3478793 addi x15, x15, -1484 x15=1c008a34 x15:1c009000 +74581712ns 1312019 1c004542 00f59463 bne x11, x15, 8 x11:1c00922c x15:1c008a34 +74581791ns 1312023 1c00454a 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +74581811ns 1312024 1c00454e 9f478793 addi x15, x15, -1548 x15=1c0089f4 x15:1c009000 +74581831ns 1312025 1c004552 fcf59be3 bne x11, x15, -42 x11:1c00922c x15:1c0089f4 +74581890ns 1312028 1c004528 00c59783 lh x15, 12(x11) x15=00000089 x11:1c00922c PA:1c009238 +74581930ns 1312030 1c00452c 02078763 beq x15, x0, 46 x15:00000089 +74581950ns 1312031 1c00452e 00800533 add x10, x0, x8 x10=1c008bdc x8:1c008bdc +74581969ns 1312032 1c004530 01812403 lw x8, 24(x2) x8=1c00922c x2:1c019930 PA:1c019948 +74581989ns 1312033 1c004532 01c12083 lw x1, 28(x2) x1=1c00412c x2:1c019930 PA:1c01994c +74582009ns 1312034 1c004534 02010113 addi x2, x2, 32 x2=1c019950 x2:1c019930 +74582029ns 1312035 1c004536 e85ff06f jal x0, -380 +74582088ns 1312038 1c0043ba 00c5d783 lhu x15, 12(x11) x15=00000089 x11:1c00922c PA:1c009238 +74582108ns 1312039 1c0043be fe010113 addi x2, x2, -32 x2=1c019930 x2:1c019950 +74582128ns 1312040 1c0043c0 00812c23 sw x8, 24(x2) x8:1c00922c x2:1c019930 PA:1c019948 +74582148ns 1312041 1c0043c2 00912a23 sw x9, 20(x2) x9:1c008bdc x2:1c019930 PA:1c019944 +74582167ns 1312042 1c0043c4 00112e23 sw x1, 28(x2) x1:1c00412c x2:1c019930 PA:1c01994c +74582187ns 1312043 1c0043c6 01212823 sw x18, 16(x2) x18:0000000a x2:1c019930 PA:1c019940 +74582207ns 1312044 1c0043c8 01312623 sw x19, 12(x2) x19:0000000a x2:1c019930 PA:1c01993c +74582227ns 1312045 1c0043ca 0087f713 andi x14, x15, 8 x14=00000008 x15:00000089 +74582247ns 1312046 1c0043ce 00a004b3 add x9, x0, x10 x9=1c008bdc x10:1c008bdc +74582266ns 1312047 1c0043d0 00b00433 add x8, x0, x11 x8=1c00922c x11:1c00922c +74582286ns 1312048 1c0043d2 0e071363 bne x14, x0, 230 x14:00000008 +74582346ns 1312051 1c0044b8 0105a983 lw x19, 16(x11) x19=1c009368 x11:1c00922c PA:1c00923c +74582385ns 1312053 1c0044bc f20982e3 beq x19, x0, -220 x19:1c009368 +74582405ns 1312054 1c0044c0 0005a903 lw x18, 0(x11) x18=1c009369 x11:1c00922c PA:1c00922c +74582425ns 1312055 1c0044c4 0037f793 andi x15, x15, 3 x15=00000001 x15:00000089 +74582445ns 1312056 1c0044c6 0135a023 sw x19, 0(x11) x19:1c009368 x11:1c00922c PA:1c00922c +74582464ns 1312057 1c0044ca 41390933 sub x18, x18, x19 x18=00000001 x18:1c009369 x19:1c009368 +74582484ns 1312058 1c0044ce 00000713 addi x14, x0, 0 x14=00000000 +74582504ns 1312059 1c0044d0 00079263 bne x15, x0, 4 x15:00000001 +74582563ns 1312062 1c0044d4 00e42423 sw x14, 8(x8) x14:00000000 x8:1c00922c PA:1c009234 +74582583ns 1312063 1c0044d6 f12055e3 bge x0, x18, -246 x18:00000001 +74582603ns 1312064 1c0044da 02842783 lw x15, 40(x8) x15=1c004c5e x8:1c00922c PA:1c009254 +74582623ns 1312065 1c0044dc 02042583 lw x11, 32(x8) x11=1c00922c x8:1c00922c PA:1c00924c +74582642ns 1312066 1c0044de 012006b3 add x13, x0, x18 x13=00000001 x18:00000001 +74582662ns 1312067 1c0044e0 01300633 add x12, x0, x19 x12=1c009368 x19:1c009368 +74582682ns 1312068 1c0044e2 00900533 add x10, x0, x9 x10=1c008bdc x9:1c008bdc +74582702ns 1312069 1c0044e4 000780e7 jalr x1, x15, 0 x1=1c0044e6 x15:1c004c5e +74582761ns 1312072 1c004c5e 00c5d783 lhu x15, 12(x11) x15=00000089 x11:1c00922c PA:1c009238 +74582781ns 1312073 1c004c62 fe010113 addi x2, x2, -32 x2=1c019910 x2:1c019930 +74582801ns 1312074 1c004c64 00812c23 sw x8, 24(x2) x8:1c00922c x2:1c019910 PA:1c019928 +74582821ns 1312075 1c004c66 00912a23 sw x9, 20(x2) x9:1c008bdc x2:1c019910 PA:1c019924 +74582840ns 1312076 1c004c68 01212823 sw x18, 16(x2) x18:00000001 x2:1c019910 PA:1c019920 +74582860ns 1312077 1c004c6a 01312623 sw x19, 12(x2) x19:1c009368 x2:1c019910 PA:1c01991c +74582880ns 1312078 1c004c6c 00112e23 sw x1, 28(x2) x1:1c0044e6 x2:1c019910 PA:1c01992c +74582900ns 1312079 1c004c6e 1007f793 andi x15, x15, 256 x15=00000000 x15:00000089 +74582920ns 1312080 1c004c72 00a004b3 add x9, x0, x10 x9=1c008bdc x10:1c008bdc +74582939ns 1312081 1c004c74 00b00433 add x8, x0, x11 x8=1c00922c x11:1c00922c +74582959ns 1312082 1c004c76 00c00933 add x18, x0, x12 x18=1c009368 x12:1c009368 +74582979ns 1312083 1c004c78 00d009b3 add x19, x0, x13 x19=00000001 x13:00000001 +74582999ns 1312084 1c004c7a 00078663 beq x15, x0, 12 x15:00000000 +74583078ns 1312088 1c004c86 00c45783 lhu x15, 12(x8) x15=00000089 x8:1c00922c PA:1c009238 +74583098ns 1312089 1c004c8a fffff737 lui x14, 0xfffff000 x14=fffff000 +74583117ns 1312090 1c004c8c fff70713 addi x14, x14, -1 x14=ffffefff x14:fffff000 +74583137ns 1312091 1c004c8e 00e7f7b3 and x15, x15, x14 x15=00000089 x15:00000089 x14:ffffefff +74583157ns 1312092 1c004c90 00e41583 lh x11, 14(x8) x11=00000001 x8:1c00922c PA:1c00923a +74583177ns 1312093 1c004c94 00f41623 sh x15, 12(x8) x15:00000089 x8:1c00922c PA:1c009238 +74583197ns 1312094 1c004c98 01812403 lw x8, 24(x2) x8=1c00922c x2:1c019910 PA:1c019928 +74583216ns 1312095 1c004c9a 01c12083 lw x1, 28(x2) x1=1c0044e6 x2:1c019910 PA:1c01992c +74583236ns 1312096 1c004c9c 013006b3 add x13, x0, x19 x13=00000001 x19:00000001 +74583256ns 1312097 1c004c9e 01200633 add x12, x0, x18 x12=1c009368 x18:1c009368 +74583276ns 1312098 1c004ca0 00c12983 lw x19, 12(x2) x19=1c009368 x2:1c019910 PA:1c01991c +74583296ns 1312099 1c004ca2 01012903 lw x18, 16(x2) x18=00000001 x2:1c019910 PA:1c019920 +74583315ns 1312100 1c004ca4 00900533 add x10, x0, x9 x10=1c008bdc x9:1c008bdc +74583335ns 1312101 1c004ca6 01412483 lw x9, 20(x2) x9=1c008bdc x2:1c019910 PA:1c019924 +74583355ns 1312102 1c004ca8 02010113 addi x2, x2, 32 x2=1c019930 x2:1c019910 +74583375ns 1312103 1c004caa 03e0006f jal x0, 62 +74583414ns 1312105 1c004ce8 ff010113 addi x2, x2, -16 x2=1c019920 x2:1c019930 +74583434ns 1312106 1c004cea 00812423 sw x8, 8(x2) x8:1c00922c x2:1c019920 PA:1c019928 +74583454ns 1312107 1c004cec 00912223 sw x9, 4(x2) x9:1c008bdc x2:1c019920 PA:1c019924 +74583474ns 1312108 1c004cee 00a00433 add x8, x0, x10 x8=1c008bdc x10:1c008bdc +74583493ns 1312109 1c004cf0 00b00533 add x10, x0, x11 x10=00000001 x11:00000001 +74583513ns 1312110 1c004cf2 00c005b3 add x11, x0, x12 x11=1c009368 x12:1c009368 +74583533ns 1312111 1c004cf4 00d00633 add x12, x0, x13 x12=00000001 x13:00000001 +74583553ns 1312112 1c004cf6 00112623 sw x1, 12(x2) x1:1c0044e6 x2:1c019920 PA:1c01992c +74583573ns 1312113 1c004cf8 dc01a023 sw x0, -576(x3) x3:1c0093dc PA:1c00919c +74583592ns 1312114 1c004cfc cf7fd0ef jal x1, -8970 x1=1c004d00 +74583632ns 1312116 1c0029f2 fff50513 addi x10, x10, -1 x10=00000000 x10:00000001 +74583652ns 1312117 1c0029f4 00100793 addi x15, x0, 1 x15=00000001 +74583672ns 1312118 1c0029f6 00c58833 add x16, x11, x12 x16=1c009369 x11:1c009368 x12:00000001 +74583691ns 1312119 1c0029fa 00a7eb63 bltu x15, x10, 22 x15:00000001 x10:00000000 +74583711ns 1312120 1c0029fe 000026b7 lui x13, 0x2000 x13=00002000 +74583731ns 1312121 1c002a00 f8068693 addi x13, x13, -128 x13=00001f80 x13:00002000 +74583751ns 1312122 1c002a04 1a10f537 lui x10, 0x1a10f000 x10=1a10f000 +74583771ns 1312123 1c002a08 01059a63 bne x11, x16, 20 x11:1c009368 x16:1c009369 +74583830ns 1312126 1c002a1c 00158593 addi x11, x11, 1 x11=1c009369 x11:1c009368 +74583850ns 1312127 1c002a1e fff5c883 lbu x17, -1(x11) x17=0000000a x11:1c009369 PA:1c009368 +74583870ns 1312128 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +74583889ns 1312129 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +74583909ns 1312130 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +74583929ns 1312131 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +74583949ns 1312132 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +74583968ns 1312133 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +74583988ns 1312134 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +74584008ns 1312135 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +74584028ns 1312136 1c002a38 0117a023 sw x17, 0(x15) x17:0000000a x15:1a10ff80 PA:1a10ff80 +74584048ns 1312137 1c002a3c fcdff06f jal x0, -52 +74584147ns 1312142 1c002a08 01059a63 bne x11, x16, 20 x11:1c009369 x16:1c009369 +74584166ns 1312143 1c002a0c 00c00533 add x10, x0, x12 x10=00000001 x12:00000001 +74584186ns 1312144 1c002a0e 00008067 jalr x0, x1, 0 x1:1c004d00 +74584226ns 1312146 1c004d00 fff00793 addi x15, x0, -1 x15=ffffffff +74584246ns 1312147 1c004d02 00f51663 bne x10, x15, 12 x10:00000001 x15:ffffffff +74584305ns 1312150 1c004d0e 00c12083 lw x1, 12(x2) x1=1c0044e6 x2:1c019920 PA:1c01992c +74584325ns 1312151 1c004d10 00812403 lw x8, 8(x2) x8=1c00922c x2:1c019920 PA:1c019928 +74584345ns 1312152 1c004d12 00412483 lw x9, 4(x2) x9=1c008bdc x2:1c019920 PA:1c019924 +74584364ns 1312153 1c004d14 01010113 addi x2, x2, 16 x2=1c019930 x2:1c019920 +74584384ns 1312154 1c004d16 00008067 jalr x0, x1, 0 x1:1c0044e6 +74584443ns 1312157 1c0044e6 00a04a63 blt x0, x10, 20 x10:00000001 +74584503ns 1312160 1c0044fa 00a989b3 add x19, x19, x10 x19=1c009369 x19:1c009368 x10:00000001 +74584523ns 1312161 1c0044fc 40a90933 sub x18, x18, x10 x18=00000000 x18:00000001 x10:00000001 +74584542ns 1312162 1c004500 fd7ff06f jal x0, -42 +74584602ns 1312165 1c0044d6 f12055e3 bge x0, x18, -246 x18:00000000 +74584661ns 1312168 1c0043e0 00000513 addi x10, x0, 0 x10=00000000 +74584681ns 1312169 1c0043e2 0be0006f jal x0, 190 +74584721ns 1312171 1c0044a0 01c12083 lw x1, 28(x2) x1=1c00412c x2:1c019930 PA:1c01994c +74584740ns 1312172 1c0044a2 01812403 lw x8, 24(x2) x8=1c00922c x2:1c019930 PA:1c019948 +74584760ns 1312173 1c0044a4 01412483 lw x9, 20(x2) x9=1c008bdc x2:1c019930 PA:1c019944 +74584780ns 1312174 1c0044a6 01012903 lw x18, 16(x2) x18=0000000a x2:1c019930 PA:1c019940 +74584800ns 1312175 1c0044a8 00c12983 lw x19, 12(x2) x19=0000000a x2:1c019930 PA:1c01993c +74584820ns 1312176 1c0044aa 02010113 addi x2, x2, 32 x2=1c019950 x2:1c019930 +74584839ns 1312177 1c0044ac 00008067 jalr x0, x1, 0 x1:1c00412c +74584879ns 1312179 1c00412c 02051d63 bne x10, x0, 58 x10:00000000 +74584899ns 1312180 1c00412e 01c12083 lw x1, 28(x2) x1=1c003ebc x2:1c019950 PA:1c01996c +74584919ns 1312181 1c004130 01812403 lw x8, 24(x2) x8=1c00922c x2:1c019950 PA:1c019968 +74584938ns 1312182 1c004132 01412483 lw x9, 20(x2) x9=1c008bdc x2:1c019950 PA:1c019964 +74584958ns 1312183 1c004134 00c12983 lw x19, 12(x2) x19=ffffffff x2:1c019950 PA:1c01995c +74584978ns 1312184 1c004136 01200533 add x10, x0, x18 x10=0000000a x18:0000000a +74584998ns 1312185 1c004138 01012903 lw x18, 16(x2) x18=1c008965 x2:1c019950 PA:1c019960 +74585017ns 1312186 1c00413a 02010113 addi x2, x2, 32 x2=1c019970 x2:1c019950 +74585037ns 1312187 1c00413c 00008067 jalr x0, x1, 0 x1:1c003ebc +74585077ns 1312189 1c003ebc f7351fe3 bne x10, x19, -130 x10:0000000a x19:ffffffff +74585136ns 1312192 1c003e3a 00842783 lw x15, 8(x8) x15=00000000 x8:1c00922c PA:1c009234 +74585156ns 1312193 1c003e3c 00094583 lbu x11, 0(x18) x11=0000000a x18:1c008965 PA:1c008965 +74585176ns 1312194 1c003e40 fff78793 addi x15, x15, -1 x15=ffffffff x15:00000000 +74585196ns 1312195 1c003e42 04059a63 bne x11, x0, 84 x11:0000000a +74585255ns 1312198 1c003e96 00f42423 sw x15, 8(x8) x15:ffffffff x8:1c00922c PA:1c009234 +74585275ns 1312199 1c003e98 00190913 addi x18, x18, 1 x18=1c008966 x18:1c008965 +74585295ns 1312200 1c003e9a 0007d763 bge x15, x0, 14 x15:ffffffff +74585314ns 1312201 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00922c PA:1c009244 +74585354ns 1312203 1c003ea0 00e7cb63 blt x15, x14, 22 x15:ffffffff x14:fffffc00 +74585374ns 1312204 1c003ea4 01458963 beq x11, x20, 18 x11:0000000a x20:0000000a +74585433ns 1312207 1c003eb6 00800633 add x12, x0, x8 x12=1c00922c x8:1c00922c +74585453ns 1312208 1c003eb8 00900533 add x10, x0, x9 x10=1c008bdc x9:1c008bdc +74585473ns 1312209 1c003eba 1f0000ef jal x1, 496 x1=1c003ebc +74585512ns 1312211 1c0040aa fe010113 addi x2, x2, -32 x2=1c019950 x2:1c019970 +74585532ns 1312212 1c0040ac 00812c23 sw x8, 24(x2) x8:1c00922c x2:1c019950 PA:1c019968 +74585552ns 1312213 1c0040ae 00912a23 sw x9, 20(x2) x9:1c008bdc x2:1c019950 PA:1c019964 +74585572ns 1312214 1c0040b0 01212823 sw x18, 16(x2) x18:1c008966 x2:1c019950 PA:1c019960 +74585591ns 1312215 1c0040b2 00112e23 sw x1, 28(x2) x1:1c003ebc x2:1c019950 PA:1c01996c +74585611ns 1312216 1c0040b4 01312623 sw x19, 12(x2) x19:ffffffff x2:1c019950 PA:1c01995c +74585631ns 1312217 1c0040b6 00a004b3 add x9, x0, x10 x9=1c008bdc x10:1c008bdc +74585651ns 1312218 1c0040b8 00b00933 add x18, x0, x11 x18=0000000a x11:0000000a +74585671ns 1312219 1c0040ba 00c00433 add x8, x0, x12 x8=1c00922c x12:1c00922c +74585690ns 1312220 1c0040bc 00050463 beq x10, x0, 8 x10:1c008bdc +74585710ns 1312221 1c0040be 01852783 lw x15, 24(x10) x15=00000001 x10:1c008bdc PA:1c008bf4 +74585750ns 1312223 1c0040c0 00079263 bne x15, x0, 4 x15:00000001 +74585809ns 1312226 1c0040c4 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +74585829ns 1312227 1c0040c8 a1478793 addi x15, x15, -1516 x15=1c008a14 x15:1c009000 +74585849ns 1312228 1c0040cc 06f41963 bne x8, x15, 114 x8:1c00922c x15:1c008a14 +74585928ns 1312232 1c00413e 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +74585948ns 1312233 1c004142 a3478793 addi x15, x15, -1484 x15=1c008a34 x15:1c009000 +74585967ns 1312234 1c004146 00f41463 bne x8, x15, 8 x8:1c00922c x15:1c008a34 +74586047ns 1312238 1c00414e 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +74586066ns 1312239 1c004152 9f478793 addi x15, x15, -1548 x15=1c0089f4 x15:1c009000 +74586086ns 1312240 1c004156 f6f41ee3 bne x8, x15, -132 x8:1c00922c x15:1c0089f4 +74586146ns 1312243 1c0040d2 01842783 lw x15, 24(x8) x15=fffffc00 x8:1c00922c PA:1c009244 +74586185ns 1312245 1c0040d4 00f42423 sw x15, 8(x8) x15:fffffc00 x8:1c00922c PA:1c009234 +74586205ns 1312246 1c0040d6 00c45783 lhu x15, 12(x8) x15=00000089 x8:1c00922c PA:1c009238 +74586245ns 1312248 1c0040da 0087f793 andi x15, x15, 8 x15=00000008 x15:00000089 +74586264ns 1312249 1c0040dc 08078163 beq x15, x0, 130 x15:00000008 +74586284ns 1312250 1c0040de 01042783 lw x15, 16(x8) x15=1c009368 x8:1c00922c PA:1c00923c +74586324ns 1312252 1c0040e0 06078f63 beq x15, x0, 126 x15:1c009368 +74586344ns 1312253 1c0040e2 01042783 lw x15, 16(x8) x15=1c009368 x8:1c00922c PA:1c00923c +74586363ns 1312254 1c0040e4 00042503 lw x10, 0(x8) x10=1c009368 x8:1c00922c PA:1c00922c +74586383ns 1312255 1c0040e6 0ff97993 andi x19, x18, 255 x19=0000000a x18:0000000a +74586403ns 1312256 1c0040ea 0ff97913 andi x18, x18, 255 x18=0000000a x18:0000000a +74586423ns 1312257 1c0040ee 40f50533 sub x10, x10, x15 x10=00000000 x10:1c009368 x15:1c009368 +74586442ns 1312258 1c0040f0 01442783 lw x15, 20(x8) x15=00000400 x8:1c00922c PA:1c009240 +74586482ns 1312260 1c0040f2 00f54663 blt x10, x15, 12 x10:00000000 x15:00000400 +74586541ns 1312263 1c0040fe 00842783 lw x15, 8(x8) x15=fffffc00 x8:1c00922c PA:1c009234 +74586561ns 1312264 1c004100 00150513 addi x10, x10, 1 x10=00000001 x10:00000000 +74586581ns 1312265 1c004102 fff78793 addi x15, x15, -1 x15=fffffbff x15:fffffc00 +74586601ns 1312266 1c004104 00f42423 sw x15, 8(x8) x15:fffffbff x8:1c00922c PA:1c009234 +74586621ns 1312267 1c004106 00042783 lw x15, 0(x8) x15=1c009368 x8:1c00922c PA:1c00922c +74586660ns 1312269 1c004108 00178713 addi x14, x15, 1 x14=1c009369 x15:1c009368 +74586680ns 1312270 1c00410c 00e42023 sw x14, 0(x8) x14:1c009369 x8:1c00922c PA:1c00922c +74586700ns 1312271 1c00410e 01378023 sb x19, 0(x15) x19:0000000a x15:1c009368 PA:1c009368 +74586720ns 1312272 1c004112 01442783 lw x15, 20(x8) x15=00000400 x8:1c00922c PA:1c009240 +74586759ns 1312274 1c004114 00a78963 beq x15, x10, 18 x15:00000400 x10:00000001 +74586779ns 1312275 1c004118 00c45783 lhu x15, 12(x8) x15=00000089 x8:1c00922c PA:1c009238 +74586819ns 1312277 1c00411c 0017f793 andi x15, x15, 1 x15=00000001 x15:00000089 +74586838ns 1312278 1c00411e 00078863 beq x15, x0, 16 x15:00000001 +74586858ns 1312279 1c004120 00a00793 addi x15, x0, 10 x15=0000000a +74586878ns 1312280 1c004122 00f91663 bne x18, x15, 12 x18:0000000a x15:0000000a +74586898ns 1312281 1c004126 008005b3 add x11, x0, x8 x11=1c00922c x8:1c00922c +74586917ns 1312282 1c004128 00900533 add x10, x0, x9 x10=1c008bdc x9:1c008bdc +74586937ns 1312283 1c00412a 3d8000ef jal x1, 984 x1=1c00412c +74586977ns 1312285 1c004502 0105a783 lw x15, 16(x11) x15=1c009368 x11:1c00922c PA:1c00923c +74587016ns 1312287 1c004504 06078063 beq x15, x0, 96 x15:1c009368 +74587036ns 1312288 1c004506 fe010113 addi x2, x2, -32 x2=1c019930 x2:1c019950 +74587056ns 1312289 1c004508 00812c23 sw x8, 24(x2) x8:1c00922c x2:1c019930 PA:1c019948 +74587076ns 1312290 1c00450a 00112e23 sw x1, 28(x2) x1:1c00412c x2:1c019930 PA:1c01994c +74587096ns 1312291 1c00450c 00a00433 add x8, x0, x10 x8=1c008bdc x10:1c008bdc +74587115ns 1312292 1c00450e 00050663 beq x10, x0, 12 x10:1c008bdc +74587135ns 1312293 1c004510 01852783 lw x15, 24(x10) x15=00000001 x10:1c008bdc PA:1c008bf4 +74587175ns 1312295 1c004512 00079463 bne x15, x0, 8 x15:00000001 +74587254ns 1312299 1c00451a 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +74587274ns 1312300 1c00451e a1478793 addi x15, x15, -1516 x15=1c008a14 x15:1c009000 +74587294ns 1312301 1c004522 00f59c63 bne x11, x15, 24 x11:1c00922c x15:1c008a14 +74587373ns 1312305 1c00453a 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +74587393ns 1312306 1c00453e a3478793 addi x15, x15, -1484 x15=1c008a34 x15:1c009000 +74587412ns 1312307 1c004542 00f59463 bne x11, x15, 8 x11:1c00922c x15:1c008a34 +74587491ns 1312311 1c00454a 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +74587511ns 1312312 1c00454e 9f478793 addi x15, x15, -1548 x15=1c0089f4 x15:1c009000 +74587531ns 1312313 1c004552 fcf59be3 bne x11, x15, -42 x11:1c00922c x15:1c0089f4 +74587590ns 1312316 1c004528 00c59783 lh x15, 12(x11) x15=00000089 x11:1c00922c PA:1c009238 +74587630ns 1312318 1c00452c 02078763 beq x15, x0, 46 x15:00000089 +74587650ns 1312319 1c00452e 00800533 add x10, x0, x8 x10=1c008bdc x8:1c008bdc +74587670ns 1312320 1c004530 01812403 lw x8, 24(x2) x8=1c00922c x2:1c019930 PA:1c019948 +74587689ns 1312321 1c004532 01c12083 lw x1, 28(x2) x1=1c00412c x2:1c019930 PA:1c01994c +74587709ns 1312322 1c004534 02010113 addi x2, x2, 32 x2=1c019950 x2:1c019930 +74587729ns 1312323 1c004536 e85ff06f jal x0, -380 +74587788ns 1312326 1c0043ba 00c5d783 lhu x15, 12(x11) x15=00000089 x11:1c00922c PA:1c009238 +74587808ns 1312327 1c0043be fe010113 addi x2, x2, -32 x2=1c019930 x2:1c019950 +74587828ns 1312328 1c0043c0 00812c23 sw x8, 24(x2) x8:1c00922c x2:1c019930 PA:1c019948 +74587848ns 1312329 1c0043c2 00912a23 sw x9, 20(x2) x9:1c008bdc x2:1c019930 PA:1c019944 +74587868ns 1312330 1c0043c4 00112e23 sw x1, 28(x2) x1:1c00412c x2:1c019930 PA:1c01994c +74587887ns 1312331 1c0043c6 01212823 sw x18, 16(x2) x18:0000000a x2:1c019930 PA:1c019940 +74587907ns 1312332 1c0043c8 01312623 sw x19, 12(x2) x19:0000000a x2:1c019930 PA:1c01993c +74587927ns 1312333 1c0043ca 0087f713 andi x14, x15, 8 x14=00000008 x15:00000089 +74587947ns 1312334 1c0043ce 00a004b3 add x9, x0, x10 x9=1c008bdc x10:1c008bdc +74587966ns 1312335 1c0043d0 00b00433 add x8, x0, x11 x8=1c00922c x11:1c00922c +74587986ns 1312336 1c0043d2 0e071363 bne x14, x0, 230 x14:00000008 +74588046ns 1312339 1c0044b8 0105a983 lw x19, 16(x11) x19=1c009368 x11:1c00922c PA:1c00923c +74588085ns 1312341 1c0044bc f20982e3 beq x19, x0, -220 x19:1c009368 +74588105ns 1312342 1c0044c0 0005a903 lw x18, 0(x11) x18=1c009369 x11:1c00922c PA:1c00922c +74588125ns 1312343 1c0044c4 0037f793 andi x15, x15, 3 x15=00000001 x15:00000089 +74588145ns 1312344 1c0044c6 0135a023 sw x19, 0(x11) x19:1c009368 x11:1c00922c PA:1c00922c +74588164ns 1312345 1c0044ca 41390933 sub x18, x18, x19 x18=00000001 x18:1c009369 x19:1c009368 +74588184ns 1312346 1c0044ce 00000713 addi x14, x0, 0 x14=00000000 +74588204ns 1312347 1c0044d0 00079263 bne x15, x0, 4 x15:00000001 +74588263ns 1312350 1c0044d4 00e42423 sw x14, 8(x8) x14:00000000 x8:1c00922c PA:1c009234 +74588283ns 1312351 1c0044d6 f12055e3 bge x0, x18, -246 x18:00000001 +74588303ns 1312352 1c0044da 02842783 lw x15, 40(x8) x15=1c004c5e x8:1c00922c PA:1c009254 +74588323ns 1312353 1c0044dc 02042583 lw x11, 32(x8) x11=1c00922c x8:1c00922c PA:1c00924c +74588343ns 1312354 1c0044de 012006b3 add x13, x0, x18 x13=00000001 x18:00000001 +74588362ns 1312355 1c0044e0 01300633 add x12, x0, x19 x12=1c009368 x19:1c009368 +74588382ns 1312356 1c0044e2 00900533 add x10, x0, x9 x10=1c008bdc x9:1c008bdc +74588402ns 1312357 1c0044e4 000780e7 jalr x1, x15, 0 x1=1c0044e6 x15:1c004c5e +74588461ns 1312360 1c004c5e 00c5d783 lhu x15, 12(x11) x15=00000089 x11:1c00922c PA:1c009238 +74588481ns 1312361 1c004c62 fe010113 addi x2, x2, -32 x2=1c019910 x2:1c019930 +74588501ns 1312362 1c004c64 00812c23 sw x8, 24(x2) x8:1c00922c x2:1c019910 PA:1c019928 +74588521ns 1312363 1c004c66 00912a23 sw x9, 20(x2) x9:1c008bdc x2:1c019910 PA:1c019924 +74588540ns 1312364 1c004c68 01212823 sw x18, 16(x2) x18:00000001 x2:1c019910 PA:1c019920 +74588560ns 1312365 1c004c6a 01312623 sw x19, 12(x2) x19:1c009368 x2:1c019910 PA:1c01991c +74588580ns 1312366 1c004c6c 00112e23 sw x1, 28(x2) x1:1c0044e6 x2:1c019910 PA:1c01992c +74588600ns 1312367 1c004c6e 1007f793 andi x15, x15, 256 x15=00000000 x15:00000089 +74588620ns 1312368 1c004c72 00a004b3 add x9, x0, x10 x9=1c008bdc x10:1c008bdc +74588639ns 1312369 1c004c74 00b00433 add x8, x0, x11 x8=1c00922c x11:1c00922c +74588659ns 1312370 1c004c76 00c00933 add x18, x0, x12 x18=1c009368 x12:1c009368 +74588679ns 1312371 1c004c78 00d009b3 add x19, x0, x13 x19=00000001 x13:00000001 +74588699ns 1312372 1c004c7a 00078663 beq x15, x0, 12 x15:00000000 +74588778ns 1312376 1c004c86 00c45783 lhu x15, 12(x8) x15=00000089 x8:1c00922c PA:1c009238 +74588798ns 1312377 1c004c8a fffff737 lui x14, 0xfffff000 x14=fffff000 +74588818ns 1312378 1c004c8c fff70713 addi x14, x14, -1 x14=ffffefff x14:fffff000 +74588837ns 1312379 1c004c8e 00e7f7b3 and x15, x15, x14 x15=00000089 x15:00000089 x14:ffffefff +74588857ns 1312380 1c004c90 00e41583 lh x11, 14(x8) x11=00000001 x8:1c00922c PA:1c00923a +74588877ns 1312381 1c004c94 00f41623 sh x15, 12(x8) x15:00000089 x8:1c00922c PA:1c009238 +74588897ns 1312382 1c004c98 01812403 lw x8, 24(x2) x8=1c00922c x2:1c019910 PA:1c019928 +74588916ns 1312383 1c004c9a 01c12083 lw x1, 28(x2) x1=1c0044e6 x2:1c019910 PA:1c01992c +74588936ns 1312384 1c004c9c 013006b3 add x13, x0, x19 x13=00000001 x19:00000001 +74588956ns 1312385 1c004c9e 01200633 add x12, x0, x18 x12=1c009368 x18:1c009368 +74588976ns 1312386 1c004ca0 00c12983 lw x19, 12(x2) x19=1c009368 x2:1c019910 PA:1c01991c +74588996ns 1312387 1c004ca2 01012903 lw x18, 16(x2) x18=00000001 x2:1c019910 PA:1c019920 +74589015ns 1312388 1c004ca4 00900533 add x10, x0, x9 x10=1c008bdc x9:1c008bdc +74589035ns 1312389 1c004ca6 01412483 lw x9, 20(x2) x9=1c008bdc x2:1c019910 PA:1c019924 +74589055ns 1312390 1c004ca8 02010113 addi x2, x2, 32 x2=1c019930 x2:1c019910 +74589075ns 1312391 1c004caa 03e0006f jal x0, 62 +74589114ns 1312393 1c004ce8 ff010113 addi x2, x2, -16 x2=1c019920 x2:1c019930 +74589134ns 1312394 1c004cea 00812423 sw x8, 8(x2) x8:1c00922c x2:1c019920 PA:1c019928 +74589154ns 1312395 1c004cec 00912223 sw x9, 4(x2) x9:1c008bdc x2:1c019920 PA:1c019924 +74589174ns 1312396 1c004cee 00a00433 add x8, x0, x10 x8=1c008bdc x10:1c008bdc +74589194ns 1312397 1c004cf0 00b00533 add x10, x0, x11 x10=00000001 x11:00000001 +74589213ns 1312398 1c004cf2 00c005b3 add x11, x0, x12 x11=1c009368 x12:1c009368 +74589233ns 1312399 1c004cf4 00d00633 add x12, x0, x13 x12=00000001 x13:00000001 +74589253ns 1312400 1c004cf6 00112623 sw x1, 12(x2) x1:1c0044e6 x2:1c019920 PA:1c01992c +74589273ns 1312401 1c004cf8 dc01a023 sw x0, -576(x3) x3:1c0093dc PA:1c00919c +74589293ns 1312402 1c004cfc cf7fd0ef jal x1, -8970 x1=1c004d00 +74589332ns 1312404 1c0029f2 fff50513 addi x10, x10, -1 x10=00000000 x10:00000001 +74589352ns 1312405 1c0029f4 00100793 addi x15, x0, 1 x15=00000001 +74589372ns 1312406 1c0029f6 00c58833 add x16, x11, x12 x16=1c009369 x11:1c009368 x12:00000001 +74589391ns 1312407 1c0029fa 00a7eb63 bltu x15, x10, 22 x15:00000001 x10:00000000 +74589411ns 1312408 1c0029fe 000026b7 lui x13, 0x2000 x13=00002000 +74589431ns 1312409 1c002a00 f8068693 addi x13, x13, -128 x13=00001f80 x13:00002000 +74589451ns 1312410 1c002a04 1a10f537 lui x10, 0x1a10f000 x10=1a10f000 +74589471ns 1312411 1c002a08 01059a63 bne x11, x16, 20 x11:1c009368 x16:1c009369 +74589530ns 1312414 1c002a1c 00158593 addi x11, x11, 1 x11=1c009369 x11:1c009368 +74589550ns 1312415 1c002a1e fff5c883 lbu x17, -1(x11) x17=0000000a x11:1c009369 PA:1c009368 +74589570ns 1312416 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +74589589ns 1312417 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +74589609ns 1312418 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +74589629ns 1312419 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +74589649ns 1312420 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +74589669ns 1312421 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +74589688ns 1312422 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +74589708ns 1312423 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +74589728ns 1312424 1c002a38 0117a023 sw x17, 0(x15) x17:0000000a x15:1a10ff80 PA:1a10ff80 +74589748ns 1312425 1c002a3c fcdff06f jal x0, -52 +74589847ns 1312430 1c002a08 01059a63 bne x11, x16, 20 x11:1c009369 x16:1c009369 +74589867ns 1312431 1c002a0c 00c00533 add x10, x0, x12 x10=00000001 x12:00000001 +74589886ns 1312432 1c002a0e 00008067 jalr x0, x1, 0 x1:1c004d00 +74589926ns 1312434 1c004d00 fff00793 addi x15, x0, -1 x15=ffffffff +74589946ns 1312435 1c004d02 00f51663 bne x10, x15, 12 x10:00000001 x15:ffffffff +74590005ns 1312438 1c004d0e 00c12083 lw x1, 12(x2) x1=1c0044e6 x2:1c019920 PA:1c01992c +74590025ns 1312439 1c004d10 00812403 lw x8, 8(x2) x8=1c00922c x2:1c019920 PA:1c019928 +74590045ns 1312440 1c004d12 00412483 lw x9, 4(x2) x9=1c008bdc x2:1c019920 PA:1c019924 +74590064ns 1312441 1c004d14 01010113 addi x2, x2, 16 x2=1c019930 x2:1c019920 +74590084ns 1312442 1c004d16 00008067 jalr x0, x1, 0 x1:1c0044e6 +74590144ns 1312445 1c0044e6 00a04a63 blt x0, x10, 20 x10:00000001 +74590203ns 1312448 1c0044fa 00a989b3 add x19, x19, x10 x19=1c009369 x19:1c009368 x10:00000001 +74590223ns 1312449 1c0044fc 40a90933 sub x18, x18, x10 x18=00000000 x18:00000001 x10:00000001 +74590243ns 1312450 1c004500 fd7ff06f jal x0, -42 +74590302ns 1312453 1c0044d6 f12055e3 bge x0, x18, -246 x18:00000000 +74590361ns 1312456 1c0043e0 00000513 addi x10, x0, 0 x10=00000000 +74590381ns 1312457 1c0043e2 0be0006f jal x0, 190 +74590421ns 1312459 1c0044a0 01c12083 lw x1, 28(x2) x1=1c00412c x2:1c019930 PA:1c01994c +74590440ns 1312460 1c0044a2 01812403 lw x8, 24(x2) x8=1c00922c x2:1c019930 PA:1c019948 +74590460ns 1312461 1c0044a4 01412483 lw x9, 20(x2) x9=1c008bdc x2:1c019930 PA:1c019944 +74590480ns 1312462 1c0044a6 01012903 lw x18, 16(x2) x18=0000000a x2:1c019930 PA:1c019940 +74590500ns 1312463 1c0044a8 00c12983 lw x19, 12(x2) x19=0000000a x2:1c019930 PA:1c01993c +74590520ns 1312464 1c0044aa 02010113 addi x2, x2, 32 x2=1c019950 x2:1c019930 +74590539ns 1312465 1c0044ac 00008067 jalr x0, x1, 0 x1:1c00412c +74590579ns 1312467 1c00412c 02051d63 bne x10, x0, 58 x10:00000000 +74590599ns 1312468 1c00412e 01c12083 lw x1, 28(x2) x1=1c003ebc x2:1c019950 PA:1c01996c +74590619ns 1312469 1c004130 01812403 lw x8, 24(x2) x8=1c00922c x2:1c019950 PA:1c019968 +74590638ns 1312470 1c004132 01412483 lw x9, 20(x2) x9=1c008bdc x2:1c019950 PA:1c019964 +74590658ns 1312471 1c004134 00c12983 lw x19, 12(x2) x19=ffffffff x2:1c019950 PA:1c01995c +74590678ns 1312472 1c004136 01200533 add x10, x0, x18 x10=0000000a x18:0000000a +74590698ns 1312473 1c004138 01012903 lw x18, 16(x2) x18=1c008966 x2:1c019950 PA:1c019960 +74590718ns 1312474 1c00413a 02010113 addi x2, x2, 32 x2=1c019970 x2:1c019950 +74590737ns 1312475 1c00413c 00008067 jalr x0, x1, 0 x1:1c003ebc +74590777ns 1312477 1c003ebc f7351fe3 bne x10, x19, -130 x10:0000000a x19:ffffffff +74590836ns 1312480 1c003e3a 00842783 lw x15, 8(x8) x15=00000000 x8:1c00922c PA:1c009234 +74590856ns 1312481 1c003e3c 00094583 lbu x11, 0(x18) x11=00000009 x18:1c008966 PA:1c008966 +74590876ns 1312482 1c003e40 fff78793 addi x15, x15, -1 x15=ffffffff x15:00000000 +74590896ns 1312483 1c003e42 04059a63 bne x11, x0, 84 x11:00000009 +74590955ns 1312486 1c003e96 00f42423 sw x15, 8(x8) x15:ffffffff x8:1c00922c PA:1c009234 +74590975ns 1312487 1c003e98 00190913 addi x18, x18, 1 x18=1c008967 x18:1c008966 +74590995ns 1312488 1c003e9a 0007d763 bge x15, x0, 14 x15:ffffffff +74591014ns 1312489 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00922c PA:1c009244 +74591054ns 1312491 1c003ea0 00e7cb63 blt x15, x14, 22 x15:ffffffff x14:fffffc00 +74591074ns 1312492 1c003ea4 01458963 beq x11, x20, 18 x11:00000009 x20:0000000a +74591094ns 1312493 1c003ea8 00042783 lw x15, 0(x8) x15=1c009368 x8:1c00922c PA:1c00922c +74591133ns 1312495 1c003eaa 00178713 addi x14, x15, 1 x14=1c009369 x15:1c009368 +74591153ns 1312496 1c003eae 00e42023 sw x14, 0(x8) x14:1c009369 x8:1c00922c PA:1c00922c +74591173ns 1312497 1c003eb0 00b78023 sb x11, 0(x15) x11:00000009 x15:1c009368 PA:1c009368 +74591193ns 1312498 1c003eb4 f87ff06f jal x0, -122 +74591232ns 1312500 1c003e3a 00842783 lw x15, 8(x8) x15=ffffffff x8:1c00922c PA:1c009234 +74591252ns 1312501 1c003e3c 00094583 lbu x11, 0(x18) x11=00000020 x18:1c008967 PA:1c008967 +74591272ns 1312502 1c003e40 fff78793 addi x15, x15, -1 x15=fffffffe x15:ffffffff +74591292ns 1312503 1c003e42 04059a63 bne x11, x0, 84 x11:00000020 +74591351ns 1312506 1c003e96 00f42423 sw x15, 8(x8) x15:fffffffe x8:1c00922c PA:1c009234 +74591371ns 1312507 1c003e98 00190913 addi x18, x18, 1 x18=1c008968 x18:1c008967 +74591390ns 1312508 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffffe +74591410ns 1312509 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00922c PA:1c009244 +74591450ns 1312511 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffffe x14:fffffc00 +74591470ns 1312512 1c003ea4 01458963 beq x11, x20, 18 x11:00000020 x20:0000000a +74591489ns 1312513 1c003ea8 00042783 lw x15, 0(x8) x15=1c009369 x8:1c00922c PA:1c00922c +74591529ns 1312515 1c003eaa 00178713 addi x14, x15, 1 x14=1c00936a x15:1c009369 +74591549ns 1312516 1c003eae 00e42023 sw x14, 0(x8) x14:1c00936a x8:1c00922c PA:1c00922c +74591569ns 1312517 1c003eb0 00b78023 sb x11, 0(x15) x11:00000020 x15:1c009369 PA:1c009369 +74591588ns 1312518 1c003eb4 f87ff06f jal x0, -122 +74591628ns 1312520 1c003e3a 00842783 lw x15, 8(x8) x15=fffffffe x8:1c00922c PA:1c009234 +74591648ns 1312521 1c003e3c 00094583 lbu x11, 0(x18) x11=0000002a x18:1c008968 PA:1c008968 +74591668ns 1312522 1c003e40 fff78793 addi x15, x15, -1 x15=fffffffd x15:fffffffe +74591687ns 1312523 1c003e42 04059a63 bne x11, x0, 84 x11:0000002a +74591747ns 1312526 1c003e96 00f42423 sw x15, 8(x8) x15:fffffffd x8:1c00922c PA:1c009234 +74591767ns 1312527 1c003e98 00190913 addi x18, x18, 1 x18=1c008969 x18:1c008968 +74591786ns 1312528 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffffd +74591806ns 1312529 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00922c PA:1c009244 +74591846ns 1312531 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffffd x14:fffffc00 +74591865ns 1312532 1c003ea4 01458963 beq x11, x20, 18 x11:0000002a x20:0000000a +74591885ns 1312533 1c003ea8 00042783 lw x15, 0(x8) x15=1c00936a x8:1c00922c PA:1c00922c +74591925ns 1312535 1c003eaa 00178713 addi x14, x15, 1 x14=1c00936b x15:1c00936a +74591945ns 1312536 1c003eae 00e42023 sw x14, 0(x8) x14:1c00936b x8:1c00922c PA:1c00922c +74591964ns 1312537 1c003eb0 00b78023 sb x11, 0(x15) x11:0000002a x15:1c00936a PA:1c00936a +74591984ns 1312538 1c003eb4 f87ff06f jal x0, -122 +74592024ns 1312540 1c003e3a 00842783 lw x15, 8(x8) x15=fffffffd x8:1c00922c PA:1c009234 +74592044ns 1312541 1c003e3c 00094583 lbu x11, 0(x18) x11=0000002a x18:1c008969 PA:1c008969 +74592063ns 1312542 1c003e40 fff78793 addi x15, x15, -1 x15=fffffffc x15:fffffffd +74592083ns 1312543 1c003e42 04059a63 bne x11, x0, 84 x11:0000002a +74592143ns 1312546 1c003e96 00f42423 sw x15, 8(x8) x15:fffffffc x8:1c00922c PA:1c009234 +74592162ns 1312547 1c003e98 00190913 addi x18, x18, 1 x18=1c00896a x18:1c008969 +74592182ns 1312548 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffffc +74592202ns 1312549 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00922c PA:1c009244 +74592242ns 1312551 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffffc x14:fffffc00 +74592261ns 1312552 1c003ea4 01458963 beq x11, x20, 18 x11:0000002a x20:0000000a +74592281ns 1312553 1c003ea8 00042783 lw x15, 0(x8) x15=1c00936b x8:1c00922c PA:1c00922c +74592321ns 1312555 1c003eaa 00178713 addi x14, x15, 1 x14=1c00936c x15:1c00936b +74592341ns 1312556 1c003eae 00e42023 sw x14, 0(x8) x14:1c00936c x8:1c00922c PA:1c00922c +74592360ns 1312557 1c003eb0 00b78023 sb x11, 0(x15) x11:0000002a x15:1c00936b PA:1c00936b +74592380ns 1312558 1c003eb4 f87ff06f jal x0, -122 +74592420ns 1312560 1c003e3a 00842783 lw x15, 8(x8) x15=fffffffc x8:1c00922c PA:1c009234 +74592439ns 1312561 1c003e3c 00094583 lbu x11, 0(x18) x11=0000002a x18:1c00896a PA:1c00896a +74592459ns 1312562 1c003e40 fff78793 addi x15, x15, -1 x15=fffffffb x15:fffffffc +74592479ns 1312563 1c003e42 04059a63 bne x11, x0, 84 x11:0000002a +74592538ns 1312566 1c003e96 00f42423 sw x15, 8(x8) x15:fffffffb x8:1c00922c PA:1c009234 +74592558ns 1312567 1c003e98 00190913 addi x18, x18, 1 x18=1c00896b x18:1c00896a +74592578ns 1312568 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffffb +74592598ns 1312569 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00922c PA:1c009244 +74592637ns 1312571 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffffb x14:fffffc00 +74592657ns 1312572 1c003ea4 01458963 beq x11, x20, 18 x11:0000002a x20:0000000a +74592677ns 1312573 1c003ea8 00042783 lw x15, 0(x8) x15=1c00936c x8:1c00922c PA:1c00922c +74592717ns 1312575 1c003eaa 00178713 addi x14, x15, 1 x14=1c00936d x15:1c00936c +74592736ns 1312576 1c003eae 00e42023 sw x14, 0(x8) x14:1c00936d x8:1c00922c PA:1c00922c +74592756ns 1312577 1c003eb0 00b78023 sb x11, 0(x15) x11:0000002a x15:1c00936c PA:1c00936c +74592776ns 1312578 1c003eb4 f87ff06f jal x0, -122 +74592816ns 1312580 1c003e3a 00842783 lw x15, 8(x8) x15=fffffffb x8:1c00922c PA:1c009234 +74592835ns 1312581 1c003e3c 00094583 lbu x11, 0(x18) x11=00000020 x18:1c00896b PA:1c00896b +74592855ns 1312582 1c003e40 fff78793 addi x15, x15, -1 x15=fffffffa x15:fffffffb +74592875ns 1312583 1c003e42 04059a63 bne x11, x0, 84 x11:00000020 +74592934ns 1312586 1c003e96 00f42423 sw x15, 8(x8) x15:fffffffa x8:1c00922c PA:1c009234 +74592954ns 1312587 1c003e98 00190913 addi x18, x18, 1 x18=1c00896c x18:1c00896b +74592974ns 1312588 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffffa +74592994ns 1312589 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00922c PA:1c009244 +74593033ns 1312591 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffffa x14:fffffc00 +74593053ns 1312592 1c003ea4 01458963 beq x11, x20, 18 x11:00000020 x20:0000000a +74593073ns 1312593 1c003ea8 00042783 lw x15, 0(x8) x15=1c00936d x8:1c00922c PA:1c00922c +74593112ns 1312595 1c003eaa 00178713 addi x14, x15, 1 x14=1c00936e x15:1c00936d +74593132ns 1312596 1c003eae 00e42023 sw x14, 0(x8) x14:1c00936e x8:1c00922c PA:1c00922c +74593152ns 1312597 1c003eb0 00b78023 sb x11, 0(x15) x11:00000020 x15:1c00936d PA:1c00936d +74593172ns 1312598 1c003eb4 f87ff06f jal x0, -122 +74593211ns 1312600 1c003e3a 00842783 lw x15, 8(x8) x15=fffffffa x8:1c00922c PA:1c009234 +74593231ns 1312601 1c003e3c 00094583 lbu x11, 0(x18) x11=00000046 x18:1c00896c PA:1c00896c +74593251ns 1312602 1c003e40 fff78793 addi x15, x15, -1 x15=fffffff9 x15:fffffffa +74593271ns 1312603 1c003e42 04059a63 bne x11, x0, 84 x11:00000046 +74593330ns 1312606 1c003e96 00f42423 sw x15, 8(x8) x15:fffffff9 x8:1c00922c PA:1c009234 +74593350ns 1312607 1c003e98 00190913 addi x18, x18, 1 x18=1c00896d x18:1c00896c +74593370ns 1312608 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffff9 +74593389ns 1312609 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00922c PA:1c009244 +74593429ns 1312611 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffff9 x14:fffffc00 +74593449ns 1312612 1c003ea4 01458963 beq x11, x20, 18 x11:00000046 x20:0000000a +74593469ns 1312613 1c003ea8 00042783 lw x15, 0(x8) x15=1c00936e x8:1c00922c PA:1c00922c +74593508ns 1312615 1c003eaa 00178713 addi x14, x15, 1 x14=1c00936f x15:1c00936e +74593528ns 1312616 1c003eae 00e42023 sw x14, 0(x8) x14:1c00936f x8:1c00922c PA:1c00922c +74593548ns 1312617 1c003eb0 00b78023 sb x11, 0(x15) x11:00000046 x15:1c00936e PA:1c00936e +74593568ns 1312618 1c003eb4 f87ff06f jal x0, -122 +74593607ns 1312620 1c003e3a 00842783 lw x15, 8(x8) x15=fffffff9 x8:1c00922c PA:1c009234 +74593627ns 1312621 1c003e3c 00094583 lbu x11, 0(x18) x11=00000072 x18:1c00896d PA:1c00896d +74593647ns 1312622 1c003e40 fff78793 addi x15, x15, -1 x15=fffffff8 x15:fffffff9 +74593667ns 1312623 1c003e42 04059a63 bne x11, x0, 84 x11:00000072 +74593726ns 1312626 1c003e96 00f42423 sw x15, 8(x8) x15:fffffff8 x8:1c00922c PA:1c009234 +74593746ns 1312627 1c003e98 00190913 addi x18, x18, 1 x18=1c00896e x18:1c00896d +74593766ns 1312628 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffff8 +74593785ns 1312629 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00922c PA:1c009244 +74593825ns 1312631 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffff8 x14:fffffc00 +74593845ns 1312632 1c003ea4 01458963 beq x11, x20, 18 x11:00000072 x20:0000000a +74593864ns 1312633 1c003ea8 00042783 lw x15, 0(x8) x15=1c00936f x8:1c00922c PA:1c00922c +74593904ns 1312635 1c003eaa 00178713 addi x14, x15, 1 x14=1c009370 x15:1c00936f +74593924ns 1312636 1c003eae 00e42023 sw x14, 0(x8) x14:1c009370 x8:1c00922c PA:1c00922c +74593944ns 1312637 1c003eb0 00b78023 sb x11, 0(x15) x11:00000072 x15:1c00936f PA:1c00936f +74593963ns 1312638 1c003eb4 f87ff06f jal x0, -122 +74594003ns 1312640 1c003e3a 00842783 lw x15, 8(x8) x15=fffffff8 x8:1c00922c PA:1c009234 +74594023ns 1312641 1c003e3c 00094583 lbu x11, 0(x18) x11=00000065 x18:1c00896e PA:1c00896e +74594043ns 1312642 1c003e40 fff78793 addi x15, x15, -1 x15=fffffff7 x15:fffffff8 +74594062ns 1312643 1c003e42 04059a63 bne x11, x0, 84 x11:00000065 +74594122ns 1312646 1c003e96 00f42423 sw x15, 8(x8) x15:fffffff7 x8:1c00922c PA:1c009234 +74594142ns 1312647 1c003e98 00190913 addi x18, x18, 1 x18=1c00896f x18:1c00896e +74594161ns 1312648 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffff7 +74594181ns 1312649 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00922c PA:1c009244 +74594221ns 1312651 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffff7 x14:fffffc00 +74594241ns 1312652 1c003ea4 01458963 beq x11, x20, 18 x11:00000065 x20:0000000a +74594260ns 1312653 1c003ea8 00042783 lw x15, 0(x8) x15=1c009370 x8:1c00922c PA:1c00922c +74594300ns 1312655 1c003eaa 00178713 addi x14, x15, 1 x14=1c009371 x15:1c009370 +74594320ns 1312656 1c003eae 00e42023 sw x14, 0(x8) x14:1c009371 x8:1c00922c PA:1c00922c +74594339ns 1312657 1c003eb0 00b78023 sb x11, 0(x15) x11:00000065 x15:1c009370 PA:1c009370 +74594359ns 1312658 1c003eb4 f87ff06f jal x0, -122 +74594399ns 1312660 1c003e3a 00842783 lw x15, 8(x8) x15=fffffff7 x8:1c00922c PA:1c009234 +74594419ns 1312661 1c003e3c 00094583 lbu x11, 0(x18) x11=00000065 x18:1c00896f PA:1c00896f +74594438ns 1312662 1c003e40 fff78793 addi x15, x15, -1 x15=fffffff6 x15:fffffff7 +74594458ns 1312663 1c003e42 04059a63 bne x11, x0, 84 x11:00000065 +74594518ns 1312666 1c003e96 00f42423 sw x15, 8(x8) x15:fffffff6 x8:1c00922c PA:1c009234 +74594537ns 1312667 1c003e98 00190913 addi x18, x18, 1 x18=1c008970 x18:1c00896f +74594557ns 1312668 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffff6 +74594577ns 1312669 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00922c PA:1c009244 +74594617ns 1312671 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffff6 x14:fffffc00 +74594636ns 1312672 1c003ea4 01458963 beq x11, x20, 18 x11:00000065 x20:0000000a +74594656ns 1312673 1c003ea8 00042783 lw x15, 0(x8) x15=1c009371 x8:1c00922c PA:1c00922c +74594696ns 1312675 1c003eaa 00178713 addi x14, x15, 1 x14=1c009372 x15:1c009371 +74594716ns 1312676 1c003eae 00e42023 sw x14, 0(x8) x14:1c009372 x8:1c00922c PA:1c00922c +74594735ns 1312677 1c003eb0 00b78023 sb x11, 0(x15) x11:00000065 x15:1c009371 PA:1c009371 +74594755ns 1312678 1c003eb4 f87ff06f jal x0, -122 +74594795ns 1312680 1c003e3a 00842783 lw x15, 8(x8) x15=fffffff6 x8:1c00922c PA:1c009234 +74594815ns 1312681 1c003e3c 00094583 lbu x11, 0(x18) x11=00000052 x18:1c008970 PA:1c008970 +74594834ns 1312682 1c003e40 fff78793 addi x15, x15, -1 x15=fffffff5 x15:fffffff6 +74594854ns 1312683 1c003e42 04059a63 bne x11, x0, 84 x11:00000052 +74594913ns 1312686 1c003e96 00f42423 sw x15, 8(x8) x15:fffffff5 x8:1c00922c PA:1c009234 +74594933ns 1312687 1c003e98 00190913 addi x18, x18, 1 x18=1c008971 x18:1c008970 +74594953ns 1312688 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffff5 +74594973ns 1312689 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00922c PA:1c009244 +74595012ns 1312691 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffff5 x14:fffffc00 +74595032ns 1312692 1c003ea4 01458963 beq x11, x20, 18 x11:00000052 x20:0000000a +74595052ns 1312693 1c003ea8 00042783 lw x15, 0(x8) x15=1c009372 x8:1c00922c PA:1c00922c +74595092ns 1312695 1c003eaa 00178713 addi x14, x15, 1 x14=1c009373 x15:1c009372 +74595111ns 1312696 1c003eae 00e42023 sw x14, 0(x8) x14:1c009373 x8:1c00922c PA:1c00922c +74595131ns 1312697 1c003eb0 00b78023 sb x11, 0(x15) x11:00000052 x15:1c009372 PA:1c009372 +74595151ns 1312698 1c003eb4 f87ff06f jal x0, -122 +74595191ns 1312700 1c003e3a 00842783 lw x15, 8(x8) x15=fffffff5 x8:1c00922c PA:1c009234 +74595210ns 1312701 1c003e3c 00094583 lbu x11, 0(x18) x11=00000054 x18:1c008971 PA:1c008971 +74595230ns 1312702 1c003e40 fff78793 addi x15, x15, -1 x15=fffffff4 x15:fffffff5 +74595250ns 1312703 1c003e42 04059a63 bne x11, x0, 84 x11:00000054 +74595309ns 1312706 1c003e96 00f42423 sw x15, 8(x8) x15:fffffff4 x8:1c00922c PA:1c009234 +74595329ns 1312707 1c003e98 00190913 addi x18, x18, 1 x18=1c008972 x18:1c008971 +74595349ns 1312708 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffff4 +74595369ns 1312709 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00922c PA:1c009244 +74595408ns 1312711 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffff4 x14:fffffc00 +74595428ns 1312712 1c003ea4 01458963 beq x11, x20, 18 x11:00000054 x20:0000000a +74595448ns 1312713 1c003ea8 00042783 lw x15, 0(x8) x15=1c009373 x8:1c00922c PA:1c00922c +74595487ns 1312715 1c003eaa 00178713 addi x14, x15, 1 x14=1c009374 x15:1c009373 +74595507ns 1312716 1c003eae 00e42023 sw x14, 0(x8) x14:1c009374 x8:1c00922c PA:1c00922c +74595527ns 1312717 1c003eb0 00b78023 sb x11, 0(x15) x11:00000054 x15:1c009373 PA:1c009373 +74595547ns 1312718 1c003eb4 f87ff06f jal x0, -122 +74595586ns 1312720 1c003e3a 00842783 lw x15, 8(x8) x15=fffffff4 x8:1c00922c PA:1c009234 +74595606ns 1312721 1c003e3c 00094583 lbu x11, 0(x18) x11=0000004f x18:1c008972 PA:1c008972 +74595626ns 1312722 1c003e40 fff78793 addi x15, x15, -1 x15=fffffff3 x15:fffffff4 +74595646ns 1312723 1c003e42 04059a63 bne x11, x0, 84 x11:0000004f +74595705ns 1312726 1c003e96 00f42423 sw x15, 8(x8) x15:fffffff3 x8:1c00922c PA:1c009234 +74595725ns 1312727 1c003e98 00190913 addi x18, x18, 1 x18=1c008973 x18:1c008972 +74595745ns 1312728 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffff3 +74595765ns 1312729 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00922c PA:1c009244 +74595804ns 1312731 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffff3 x14:fffffc00 +74595824ns 1312732 1c003ea4 01458963 beq x11, x20, 18 x11:0000004f x20:0000000a +74595844ns 1312733 1c003ea8 00042783 lw x15, 0(x8) x15=1c009374 x8:1c00922c PA:1c00922c +74595883ns 1312735 1c003eaa 00178713 addi x14, x15, 1 x14=1c009375 x15:1c009374 +74595903ns 1312736 1c003eae 00e42023 sw x14, 0(x8) x14:1c009375 x8:1c00922c PA:1c00922c +74595923ns 1312737 1c003eb0 00b78023 sb x11, 0(x15) x11:0000004f x15:1c009374 PA:1c009374 +74595943ns 1312738 1c003eb4 f87ff06f jal x0, -122 +74595982ns 1312740 1c003e3a 00842783 lw x15, 8(x8) x15=fffffff3 x8:1c00922c PA:1c009234 +74596002ns 1312741 1c003e3c 00094583 lbu x11, 0(x18) x11=00000053 x18:1c008973 PA:1c008973 +74596022ns 1312742 1c003e40 fff78793 addi x15, x15, -1 x15=fffffff2 x15:fffffff3 +74596042ns 1312743 1c003e42 04059a63 bne x11, x0, 84 x11:00000053 +74596101ns 1312746 1c003e96 00f42423 sw x15, 8(x8) x15:fffffff2 x8:1c00922c PA:1c009234 +74596121ns 1312747 1c003e98 00190913 addi x18, x18, 1 x18=1c008974 x18:1c008973 +74596141ns 1312748 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffff2 +74596160ns 1312749 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00922c PA:1c009244 +74596200ns 1312751 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffff2 x14:fffffc00 +74596220ns 1312752 1c003ea4 01458963 beq x11, x20, 18 x11:00000053 x20:0000000a +74596240ns 1312753 1c003ea8 00042783 lw x15, 0(x8) x15=1c009375 x8:1c00922c PA:1c00922c +74596279ns 1312755 1c003eaa 00178713 addi x14, x15, 1 x14=1c009376 x15:1c009375 +74596299ns 1312756 1c003eae 00e42023 sw x14, 0(x8) x14:1c009376 x8:1c00922c PA:1c00922c +74596319ns 1312757 1c003eb0 00b78023 sb x11, 0(x15) x11:00000053 x15:1c009375 PA:1c009375 +74596338ns 1312758 1c003eb4 f87ff06f jal x0, -122 +74596378ns 1312760 1c003e3a 00842783 lw x15, 8(x8) x15=fffffff2 x8:1c00922c PA:1c009234 +74596398ns 1312761 1c003e3c 00094583 lbu x11, 0(x18) x11=00000020 x18:1c008974 PA:1c008974 +74596418ns 1312762 1c003e40 fff78793 addi x15, x15, -1 x15=fffffff1 x15:fffffff2 +74596437ns 1312763 1c003e42 04059a63 bne x11, x0, 84 x11:00000020 +74596497ns 1312766 1c003e96 00f42423 sw x15, 8(x8) x15:fffffff1 x8:1c00922c PA:1c009234 +74596517ns 1312767 1c003e98 00190913 addi x18, x18, 1 x18=1c008975 x18:1c008974 +74596536ns 1312768 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffff1 +74596556ns 1312769 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00922c PA:1c009244 +74596596ns 1312771 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffff1 x14:fffffc00 +74596616ns 1312772 1c003ea4 01458963 beq x11, x20, 18 x11:00000020 x20:0000000a +74596635ns 1312773 1c003ea8 00042783 lw x15, 0(x8) x15=1c009376 x8:1c00922c PA:1c00922c +74596675ns 1312775 1c003eaa 00178713 addi x14, x15, 1 x14=1c009377 x15:1c009376 +74596695ns 1312776 1c003eae 00e42023 sw x14, 0(x8) x14:1c009377 x8:1c00922c PA:1c00922c +74596715ns 1312777 1c003eb0 00b78023 sb x11, 0(x15) x11:00000020 x15:1c009376 PA:1c009376 +74596734ns 1312778 1c003eb4 f87ff06f jal x0, -122 +74596774ns 1312780 1c003e3a 00842783 lw x15, 8(x8) x15=fffffff1 x8:1c00922c PA:1c009234 +74596794ns 1312781 1c003e3c 00094583 lbu x11, 0(x18) x11=00000048 x18:1c008975 PA:1c008975 +74596813ns 1312782 1c003e40 fff78793 addi x15, x15, -1 x15=fffffff0 x15:fffffff1 +74596833ns 1312783 1c003e42 04059a63 bne x11, x0, 84 x11:00000048 +74596893ns 1312786 1c003e96 00f42423 sw x15, 8(x8) x15:fffffff0 x8:1c00922c PA:1c009234 +74596912ns 1312787 1c003e98 00190913 addi x18, x18, 1 x18=1c008976 x18:1c008975 +74596932ns 1312788 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffff0 +74596952ns 1312789 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00922c PA:1c009244 +74596992ns 1312791 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffff0 x14:fffffc00 +74597011ns 1312792 1c003ea4 01458963 beq x11, x20, 18 x11:00000048 x20:0000000a +74597031ns 1312793 1c003ea8 00042783 lw x15, 0(x8) x15=1c009377 x8:1c00922c PA:1c00922c +74597071ns 1312795 1c003eaa 00178713 addi x14, x15, 1 x14=1c009378 x15:1c009377 +74597091ns 1312796 1c003eae 00e42023 sw x14, 0(x8) x14:1c009378 x8:1c00922c PA:1c00922c +74597110ns 1312797 1c003eb0 00b78023 sb x11, 0(x15) x11:00000048 x15:1c009377 PA:1c009377 +74597130ns 1312798 1c003eb4 f87ff06f jal x0, -122 +74597170ns 1312800 1c003e3a 00842783 lw x15, 8(x8) x15=fffffff0 x8:1c00922c PA:1c009234 +74597190ns 1312801 1c003e3c 00094583 lbu x11, 0(x18) x11=00000065 x18:1c008976 PA:1c008976 +74597209ns 1312802 1c003e40 fff78793 addi x15, x15, -1 x15=ffffffef x15:fffffff0 +74597229ns 1312803 1c003e42 04059a63 bne x11, x0, 84 x11:00000065 +74597289ns 1312806 1c003e96 00f42423 sw x15, 8(x8) x15:ffffffef x8:1c00922c PA:1c009234 +74597308ns 1312807 1c003e98 00190913 addi x18, x18, 1 x18=1c008977 x18:1c008976 +74597328ns 1312808 1c003e9a 0007d763 bge x15, x0, 14 x15:ffffffef +74597348ns 1312809 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00922c PA:1c009244 +74597387ns 1312811 1c003ea0 00e7cb63 blt x15, x14, 22 x15:ffffffef x14:fffffc00 +74597407ns 1312812 1c003ea4 01458963 beq x11, x20, 18 x11:00000065 x20:0000000a +74597427ns 1312813 1c003ea8 00042783 lw x15, 0(x8) x15=1c009378 x8:1c00922c PA:1c00922c +74597467ns 1312815 1c003eaa 00178713 addi x14, x15, 1 x14=1c009379 x15:1c009378 +74597486ns 1312816 1c003eae 00e42023 sw x14, 0(x8) x14:1c009379 x8:1c00922c PA:1c00922c +74597506ns 1312817 1c003eb0 00b78023 sb x11, 0(x15) x11:00000065 x15:1c009378 PA:1c009378 +74597526ns 1312818 1c003eb4 f87ff06f jal x0, -122 +74597566ns 1312820 1c003e3a 00842783 lw x15, 8(x8) x15=ffffffef x8:1c00922c PA:1c009234 +74597585ns 1312821 1c003e3c 00094583 lbu x11, 0(x18) x11=0000006c x18:1c008977 PA:1c008977 +74597605ns 1312822 1c003e40 fff78793 addi x15, x15, -1 x15=ffffffee x15:ffffffef +74597625ns 1312823 1c003e42 04059a63 bne x11, x0, 84 x11:0000006c +74597684ns 1312826 1c003e96 00f42423 sw x15, 8(x8) x15:ffffffee x8:1c00922c PA:1c009234 +74597704ns 1312827 1c003e98 00190913 addi x18, x18, 1 x18=1c008978 x18:1c008977 +74597724ns 1312828 1c003e9a 0007d763 bge x15, x0, 14 x15:ffffffee +74597744ns 1312829 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00922c PA:1c009244 +74597783ns 1312831 1c003ea0 00e7cb63 blt x15, x14, 22 x15:ffffffee x14:fffffc00 +74597803ns 1312832 1c003ea4 01458963 beq x11, x20, 18 x11:0000006c x20:0000000a +74597823ns 1312833 1c003ea8 00042783 lw x15, 0(x8) x15=1c009379 x8:1c00922c PA:1c00922c +74597862ns 1312835 1c003eaa 00178713 addi x14, x15, 1 x14=1c00937a x15:1c009379 +74597882ns 1312836 1c003eae 00e42023 sw x14, 0(x8) x14:1c00937a x8:1c00922c PA:1c00922c +74597902ns 1312837 1c003eb0 00b78023 sb x11, 0(x15) x11:0000006c x15:1c009379 PA:1c009379 +74597922ns 1312838 1c003eb4 f87ff06f jal x0, -122 +74597961ns 1312840 1c003e3a 00842783 lw x15, 8(x8) x15=ffffffee x8:1c00922c PA:1c009234 +74597981ns 1312841 1c003e3c 00094583 lbu x11, 0(x18) x11=0000006c x18:1c008978 PA:1c008978 +74598001ns 1312842 1c003e40 fff78793 addi x15, x15, -1 x15=ffffffed x15:ffffffee +74598021ns 1312843 1c003e42 04059a63 bne x11, x0, 84 x11:0000006c +74598080ns 1312846 1c003e96 00f42423 sw x15, 8(x8) x15:ffffffed x8:1c00922c PA:1c009234 +74598100ns 1312847 1c003e98 00190913 addi x18, x18, 1 x18=1c008979 x18:1c008978 +74598120ns 1312848 1c003e9a 0007d763 bge x15, x0, 14 x15:ffffffed +74598140ns 1312849 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00922c PA:1c009244 +74598179ns 1312851 1c003ea0 00e7cb63 blt x15, x14, 22 x15:ffffffed x14:fffffc00 +74598199ns 1312852 1c003ea4 01458963 beq x11, x20, 18 x11:0000006c x20:0000000a +74598219ns 1312853 1c003ea8 00042783 lw x15, 0(x8) x15=1c00937a x8:1c00922c PA:1c00922c +74598258ns 1312855 1c003eaa 00178713 addi x14, x15, 1 x14=1c00937b x15:1c00937a +74598278ns 1312856 1c003eae 00e42023 sw x14, 0(x8) x14:1c00937b x8:1c00922c PA:1c00922c +74598298ns 1312857 1c003eb0 00b78023 sb x11, 0(x15) x11:0000006c x15:1c00937a PA:1c00937a +74598318ns 1312858 1c003eb4 f87ff06f jal x0, -122 +74598357ns 1312860 1c003e3a 00842783 lw x15, 8(x8) x15=ffffffed x8:1c00922c PA:1c009234 +74598377ns 1312861 1c003e3c 00094583 lbu x11, 0(x18) x11=0000006f x18:1c008979 PA:1c008979 +74598397ns 1312862 1c003e40 fff78793 addi x15, x15, -1 x15=ffffffec x15:ffffffed +74598417ns 1312863 1c003e42 04059a63 bne x11, x0, 84 x11:0000006f +74598476ns 1312866 1c003e96 00f42423 sw x15, 8(x8) x15:ffffffec x8:1c00922c PA:1c009234 +74598496ns 1312867 1c003e98 00190913 addi x18, x18, 1 x18=1c00897a x18:1c008979 +74598516ns 1312868 1c003e9a 0007d763 bge x15, x0, 14 x15:ffffffec +74598535ns 1312869 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00922c PA:1c009244 +74598575ns 1312871 1c003ea0 00e7cb63 blt x15, x14, 22 x15:ffffffec x14:fffffc00 +74598595ns 1312872 1c003ea4 01458963 beq x11, x20, 18 x11:0000006f x20:0000000a +74598615ns 1312873 1c003ea8 00042783 lw x15, 0(x8) x15=1c00937b x8:1c00922c PA:1c00922c +74598654ns 1312875 1c003eaa 00178713 addi x14, x15, 1 x14=1c00937c x15:1c00937b +74598674ns 1312876 1c003eae 00e42023 sw x14, 0(x8) x14:1c00937c x8:1c00922c PA:1c00922c +74598694ns 1312877 1c003eb0 00b78023 sb x11, 0(x15) x11:0000006f x15:1c00937b PA:1c00937b +74598714ns 1312878 1c003eb4 f87ff06f jal x0, -122 +74598753ns 1312880 1c003e3a 00842783 lw x15, 8(x8) x15=ffffffec x8:1c00922c PA:1c009234 +74598773ns 1312881 1c003e3c 00094583 lbu x11, 0(x18) x11=00000020 x18:1c00897a PA:1c00897a +74598793ns 1312882 1c003e40 fff78793 addi x15, x15, -1 x15=ffffffeb x15:ffffffec +74598812ns 1312883 1c003e42 04059a63 bne x11, x0, 84 x11:00000020 +74598872ns 1312886 1c003e96 00f42423 sw x15, 8(x8) x15:ffffffeb x8:1c00922c PA:1c009234 +74598892ns 1312887 1c003e98 00190913 addi x18, x18, 1 x18=1c00897b x18:1c00897a +74598911ns 1312888 1c003e9a 0007d763 bge x15, x0, 14 x15:ffffffeb +74598931ns 1312889 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00922c PA:1c009244 +74598971ns 1312891 1c003ea0 00e7cb63 blt x15, x14, 22 x15:ffffffeb x14:fffffc00 +74598991ns 1312892 1c003ea4 01458963 beq x11, x20, 18 x11:00000020 x20:0000000a +74599010ns 1312893 1c003ea8 00042783 lw x15, 0(x8) x15=1c00937c x8:1c00922c PA:1c00922c +74599050ns 1312895 1c003eaa 00178713 addi x14, x15, 1 x14=1c00937d x15:1c00937c +74599070ns 1312896 1c003eae 00e42023 sw x14, 0(x8) x14:1c00937d x8:1c00922c PA:1c00922c +74599090ns 1312897 1c003eb0 00b78023 sb x11, 0(x15) x11:00000020 x15:1c00937c PA:1c00937c +74599109ns 1312898 1c003eb4 f87ff06f jal x0, -122 +74599149ns 1312900 1c003e3a 00842783 lw x15, 8(x8) x15=ffffffeb x8:1c00922c PA:1c009234 +74599169ns 1312901 1c003e3c 00094583 lbu x11, 0(x18) x11=00000057 x18:1c00897b PA:1c00897b +74599189ns 1312902 1c003e40 fff78793 addi x15, x15, -1 x15=ffffffea x15:ffffffeb +74599208ns 1312903 1c003e42 04059a63 bne x11, x0, 84 x11:00000057 +74599268ns 1312906 1c003e96 00f42423 sw x15, 8(x8) x15:ffffffea x8:1c00922c PA:1c009234 +74599287ns 1312907 1c003e98 00190913 addi x18, x18, 1 x18=1c00897c x18:1c00897b +74599307ns 1312908 1c003e9a 0007d763 bge x15, x0, 14 x15:ffffffea +74599327ns 1312909 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00922c PA:1c009244 +74599367ns 1312911 1c003ea0 00e7cb63 blt x15, x14, 22 x15:ffffffea x14:fffffc00 +74599386ns 1312912 1c003ea4 01458963 beq x11, x20, 18 x11:00000057 x20:0000000a +74599406ns 1312913 1c003ea8 00042783 lw x15, 0(x8) x15=1c00937d x8:1c00922c PA:1c00922c +74599446ns 1312915 1c003eaa 00178713 addi x14, x15, 1 x14=1c00937e x15:1c00937d +74599466ns 1312916 1c003eae 00e42023 sw x14, 0(x8) x14:1c00937e x8:1c00922c PA:1c00922c +74599485ns 1312917 1c003eb0 00b78023 sb x11, 0(x15) x11:00000057 x15:1c00937d PA:1c00937d +74599505ns 1312918 1c003eb4 f87ff06f jal x0, -122 +74599545ns 1312920 1c003e3a 00842783 lw x15, 8(x8) x15=ffffffea x8:1c00922c PA:1c009234 +74599565ns 1312921 1c003e3c 00094583 lbu x11, 0(x18) x11=0000006f x18:1c00897c PA:1c00897c +74599584ns 1312922 1c003e40 fff78793 addi x15, x15, -1 x15=ffffffe9 x15:ffffffea +74599604ns 1312923 1c003e42 04059a63 bne x11, x0, 84 x11:0000006f +74599664ns 1312926 1c003e96 00f42423 sw x15, 8(x8) x15:ffffffe9 x8:1c00922c PA:1c009234 +74599683ns 1312927 1c003e98 00190913 addi x18, x18, 1 x18=1c00897d x18:1c00897c +74599703ns 1312928 1c003e9a 0007d763 bge x15, x0, 14 x15:ffffffe9 +74599723ns 1312929 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00922c PA:1c009244 +74599763ns 1312931 1c003ea0 00e7cb63 blt x15, x14, 22 x15:ffffffe9 x14:fffffc00 +74599782ns 1312932 1c003ea4 01458963 beq x11, x20, 18 x11:0000006f x20:0000000a +74599802ns 1312933 1c003ea8 00042783 lw x15, 0(x8) x15=1c00937e x8:1c00922c PA:1c00922c +74599842ns 1312935 1c003eaa 00178713 addi x14, x15, 1 x14=1c00937f x15:1c00937e +74599861ns 1312936 1c003eae 00e42023 sw x14, 0(x8) x14:1c00937f x8:1c00922c PA:1c00922c +74599881ns 1312937 1c003eb0 00b78023 sb x11, 0(x15) x11:0000006f x15:1c00937e PA:1c00937e +74599901ns 1312938 1c003eb4 f87ff06f jal x0, -122 +74599941ns 1312940 1c003e3a 00842783 lw x15, 8(x8) x15=ffffffe9 x8:1c00922c PA:1c009234 +74599960ns 1312941 1c003e3c 00094583 lbu x11, 0(x18) x11=00000072 x18:1c00897d PA:1c00897d +74599980ns 1312942 1c003e40 fff78793 addi x15, x15, -1 x15=ffffffe8 x15:ffffffe9 +74600000ns 1312943 1c003e42 04059a63 bne x11, x0, 84 x11:00000072 +74600059ns 1312946 1c003e96 00f42423 sw x15, 8(x8) x15:ffffffe8 x8:1c00922c PA:1c009234 +74600079ns 1312947 1c003e98 00190913 addi x18, x18, 1 x18=1c00897e x18:1c00897d +74600099ns 1312948 1c003e9a 0007d763 bge x15, x0, 14 x15:ffffffe8 +74600119ns 1312949 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00922c PA:1c009244 +74600158ns 1312951 1c003ea0 00e7cb63 blt x15, x14, 22 x15:ffffffe8 x14:fffffc00 +74600178ns 1312952 1c003ea4 01458963 beq x11, x20, 18 x11:00000072 x20:0000000a +74600198ns 1312953 1c003ea8 00042783 lw x15, 0(x8) x15=1c00937f x8:1c00922c PA:1c00922c +74600238ns 1312955 1c003eaa 00178713 addi x14, x15, 1 x14=1c009380 x15:1c00937f +74600257ns 1312956 1c003eae 00e42023 sw x14, 0(x8) x14:1c009380 x8:1c00922c PA:1c00922c +74600277ns 1312957 1c003eb0 00b78023 sb x11, 0(x15) x11:00000072 x15:1c00937f PA:1c00937f +74600297ns 1312958 1c003eb4 f87ff06f jal x0, -122 +74600336ns 1312960 1c003e3a 00842783 lw x15, 8(x8) x15=ffffffe8 x8:1c00922c PA:1c009234 +74600356ns 1312961 1c003e3c 00094583 lbu x11, 0(x18) x11=0000006c x18:1c00897e PA:1c00897e +74600376ns 1312962 1c003e40 fff78793 addi x15, x15, -1 x15=ffffffe7 x15:ffffffe8 +74600396ns 1312963 1c003e42 04059a63 bne x11, x0, 84 x11:0000006c +74600455ns 1312966 1c003e96 00f42423 sw x15, 8(x8) x15:ffffffe7 x8:1c00922c PA:1c009234 +74600475ns 1312967 1c003e98 00190913 addi x18, x18, 1 x18=1c00897f x18:1c00897e +74600495ns 1312968 1c003e9a 0007d763 bge x15, x0, 14 x15:ffffffe7 +74600515ns 1312969 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00922c PA:1c009244 +74600554ns 1312971 1c003ea0 00e7cb63 blt x15, x14, 22 x15:ffffffe7 x14:fffffc00 +74600574ns 1312972 1c003ea4 01458963 beq x11, x20, 18 x11:0000006c x20:0000000a +74600594ns 1312973 1c003ea8 00042783 lw x15, 0(x8) x15=1c009380 x8:1c00922c PA:1c00922c +74600633ns 1312975 1c003eaa 00178713 addi x14, x15, 1 x14=1c009381 x15:1c009380 +74600653ns 1312976 1c003eae 00e42023 sw x14, 0(x8) x14:1c009381 x8:1c00922c PA:1c00922c +74600673ns 1312977 1c003eb0 00b78023 sb x11, 0(x15) x11:0000006c x15:1c009380 PA:1c009380 +74600693ns 1312978 1c003eb4 f87ff06f jal x0, -122 +74600732ns 1312980 1c003e3a 00842783 lw x15, 8(x8) x15=ffffffe7 x8:1c00922c PA:1c009234 +74600752ns 1312981 1c003e3c 00094583 lbu x11, 0(x18) x11=00000064 x18:1c00897f PA:1c00897f +74600772ns 1312982 1c003e40 fff78793 addi x15, x15, -1 x15=ffffffe6 x15:ffffffe7 +74600792ns 1312983 1c003e42 04059a63 bne x11, x0, 84 x11:00000064 +74600851ns 1312986 1c003e96 00f42423 sw x15, 8(x8) x15:ffffffe6 x8:1c00922c PA:1c009234 +74600871ns 1312987 1c003e98 00190913 addi x18, x18, 1 x18=1c008980 x18:1c00897f +74600891ns 1312988 1c003e9a 0007d763 bge x15, x0, 14 x15:ffffffe6 +74600910ns 1312989 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00922c PA:1c009244 +74600950ns 1312991 1c003ea0 00e7cb63 blt x15, x14, 22 x15:ffffffe6 x14:fffffc00 +74600970ns 1312992 1c003ea4 01458963 beq x11, x20, 18 x11:00000064 x20:0000000a +74600990ns 1312993 1c003ea8 00042783 lw x15, 0(x8) x15=1c009381 x8:1c00922c PA:1c00922c +74601029ns 1312995 1c003eaa 00178713 addi x14, x15, 1 x14=1c009382 x15:1c009381 +74601049ns 1312996 1c003eae 00e42023 sw x14, 0(x8) x14:1c009382 x8:1c00922c PA:1c00922c +74601069ns 1312997 1c003eb0 00b78023 sb x11, 0(x15) x11:00000064 x15:1c009381 PA:1c009381 +74601089ns 1312998 1c003eb4 f87ff06f jal x0, -122 +74601128ns 1313000 1c003e3a 00842783 lw x15, 8(x8) x15=ffffffe6 x8:1c00922c PA:1c009234 +74601148ns 1313001 1c003e3c 00094583 lbu x11, 0(x18) x11=00000020 x18:1c008980 PA:1c008980 +74601168ns 1313002 1c003e40 fff78793 addi x15, x15, -1 x15=ffffffe5 x15:ffffffe6 +74601188ns 1313003 1c003e42 04059a63 bne x11, x0, 84 x11:00000020 +74601247ns 1313006 1c003e96 00f42423 sw x15, 8(x8) x15:ffffffe5 x8:1c00922c PA:1c009234 +74601267ns 1313007 1c003e98 00190913 addi x18, x18, 1 x18=1c008981 x18:1c008980 +74601286ns 1313008 1c003e9a 0007d763 bge x15, x0, 14 x15:ffffffe5 +74601306ns 1313009 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00922c PA:1c009244 +74601346ns 1313011 1c003ea0 00e7cb63 blt x15, x14, 22 x15:ffffffe5 x14:fffffc00 +74601366ns 1313012 1c003ea4 01458963 beq x11, x20, 18 x11:00000020 x20:0000000a +74601385ns 1313013 1c003ea8 00042783 lw x15, 0(x8) x15=1c009382 x8:1c00922c PA:1c00922c +74601425ns 1313015 1c003eaa 00178713 addi x14, x15, 1 x14=1c009383 x15:1c009382 +74601445ns 1313016 1c003eae 00e42023 sw x14, 0(x8) x14:1c009383 x8:1c00922c PA:1c00922c +74601465ns 1313017 1c003eb0 00b78023 sb x11, 0(x15) x11:00000020 x15:1c009382 PA:1c009382 +74601484ns 1313018 1c003eb4 f87ff06f jal x0, -122 +74601524ns 1313020 1c003e3a 00842783 lw x15, 8(x8) x15=ffffffe5 x8:1c00922c PA:1c009234 +74601544ns 1313021 1c003e3c 00094583 lbu x11, 0(x18) x11=0000002a x18:1c008981 PA:1c008981 +74601564ns 1313022 1c003e40 fff78793 addi x15, x15, -1 x15=ffffffe4 x15:ffffffe5 +74601583ns 1313023 1c003e42 04059a63 bne x11, x0, 84 x11:0000002a +74601643ns 1313026 1c003e96 00f42423 sw x15, 8(x8) x15:ffffffe4 x8:1c00922c PA:1c009234 +74601663ns 1313027 1c003e98 00190913 addi x18, x18, 1 x18=1c008982 x18:1c008981 +74601682ns 1313028 1c003e9a 0007d763 bge x15, x0, 14 x15:ffffffe4 +74601702ns 1313029 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00922c PA:1c009244 +74601742ns 1313031 1c003ea0 00e7cb63 blt x15, x14, 22 x15:ffffffe4 x14:fffffc00 +74601761ns 1313032 1c003ea4 01458963 beq x11, x20, 18 x11:0000002a x20:0000000a +74601781ns 1313033 1c003ea8 00042783 lw x15, 0(x8) x15=1c009383 x8:1c00922c PA:1c00922c +74601821ns 1313035 1c003eaa 00178713 addi x14, x15, 1 x14=1c009384 x15:1c009383 +74601841ns 1313036 1c003eae 00e42023 sw x14, 0(x8) x14:1c009384 x8:1c00922c PA:1c00922c +74601860ns 1313037 1c003eb0 00b78023 sb x11, 0(x15) x11:0000002a x15:1c009383 PA:1c009383 +74601880ns 1313038 1c003eb4 f87ff06f jal x0, -122 +74601920ns 1313040 1c003e3a 00842783 lw x15, 8(x8) x15=ffffffe4 x8:1c00922c PA:1c009234 +74601940ns 1313041 1c003e3c 00094583 lbu x11, 0(x18) x11=0000002a x18:1c008982 PA:1c008982 +74601959ns 1313042 1c003e40 fff78793 addi x15, x15, -1 x15=ffffffe3 x15:ffffffe4 +74601979ns 1313043 1c003e42 04059a63 bne x11, x0, 84 x11:0000002a +74602039ns 1313046 1c003e96 00f42423 sw x15, 8(x8) x15:ffffffe3 x8:1c00922c PA:1c009234 +74602058ns 1313047 1c003e98 00190913 addi x18, x18, 1 x18=1c008983 x18:1c008982 +74602078ns 1313048 1c003e9a 0007d763 bge x15, x0, 14 x15:ffffffe3 +74602098ns 1313049 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00922c PA:1c009244 +74602138ns 1313051 1c003ea0 00e7cb63 blt x15, x14, 22 x15:ffffffe3 x14:fffffc00 +74602157ns 1313052 1c003ea4 01458963 beq x11, x20, 18 x11:0000002a x20:0000000a +74602177ns 1313053 1c003ea8 00042783 lw x15, 0(x8) x15=1c009384 x8:1c00922c PA:1c00922c +74602217ns 1313055 1c003eaa 00178713 addi x14, x15, 1 x14=1c009385 x15:1c009384 +74602237ns 1313056 1c003eae 00e42023 sw x14, 0(x8) x14:1c009385 x8:1c00922c PA:1c00922c +74602256ns 1313057 1c003eb0 00b78023 sb x11, 0(x15) x11:0000002a x15:1c009384 PA:1c009384 +74602276ns 1313058 1c003eb4 f87ff06f jal x0, -122 +74602316ns 1313060 1c003e3a 00842783 lw x15, 8(x8) x15=ffffffe3 x8:1c00922c PA:1c009234 +74602335ns 1313061 1c003e3c 00094583 lbu x11, 0(x18) x11=0000002a x18:1c008983 PA:1c008983 +74602355ns 1313062 1c003e40 fff78793 addi x15, x15, -1 x15=ffffffe2 x15:ffffffe3 +74602375ns 1313063 1c003e42 04059a63 bne x11, x0, 84 x11:0000002a +74602434ns 1313066 1c003e96 00f42423 sw x15, 8(x8) x15:ffffffe2 x8:1c00922c PA:1c009234 +74602454ns 1313067 1c003e98 00190913 addi x18, x18, 1 x18=1c008984 x18:1c008983 +74602474ns 1313068 1c003e9a 0007d763 bge x15, x0, 14 x15:ffffffe2 +74602494ns 1313069 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00922c PA:1c009244 +74602533ns 1313071 1c003ea0 00e7cb63 blt x15, x14, 22 x15:ffffffe2 x14:fffffc00 +74602553ns 1313072 1c003ea4 01458963 beq x11, x20, 18 x11:0000002a x20:0000000a +74602573ns 1313073 1c003ea8 00042783 lw x15, 0(x8) x15=1c009385 x8:1c00922c PA:1c00922c +74602613ns 1313075 1c003eaa 00178713 addi x14, x15, 1 x14=1c009386 x15:1c009385 +74602632ns 1313076 1c003eae 00e42023 sw x14, 0(x8) x14:1c009386 x8:1c00922c PA:1c00922c +74602652ns 1313077 1c003eb0 00b78023 sb x11, 0(x15) x11:0000002a x15:1c009385 PA:1c009385 +74602672ns 1313078 1c003eb4 f87ff06f jal x0, -122 +74602712ns 1313080 1c003e3a 00842783 lw x15, 8(x8) x15=ffffffe2 x8:1c00922c PA:1c009234 +74602731ns 1313081 1c003e3c 00094583 lbu x11, 0(x18) x11=00000020 x18:1c008984 PA:1c008984 +74602751ns 1313082 1c003e40 fff78793 addi x15, x15, -1 x15=ffffffe1 x15:ffffffe2 +74602771ns 1313083 1c003e42 04059a63 bne x11, x0, 84 x11:00000020 +74602830ns 1313086 1c003e96 00f42423 sw x15, 8(x8) x15:ffffffe1 x8:1c00922c PA:1c009234 +74602850ns 1313087 1c003e98 00190913 addi x18, x18, 1 x18=1c008985 x18:1c008984 +74602870ns 1313088 1c003e9a 0007d763 bge x15, x0, 14 x15:ffffffe1 +74602890ns 1313089 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00922c PA:1c009244 +74602929ns 1313091 1c003ea0 00e7cb63 blt x15, x14, 22 x15:ffffffe1 x14:fffffc00 +74602949ns 1313092 1c003ea4 01458963 beq x11, x20, 18 x11:00000020 x20:0000000a +74602969ns 1313093 1c003ea8 00042783 lw x15, 0(x8) x15=1c009386 x8:1c00922c PA:1c00922c +74603008ns 1313095 1c003eaa 00178713 addi x14, x15, 1 x14=1c009387 x15:1c009386 +74603028ns 1313096 1c003eae 00e42023 sw x14, 0(x8) x14:1c009387 x8:1c00922c PA:1c00922c +74603048ns 1313097 1c003eb0 00b78023 sb x11, 0(x15) x11:00000020 x15:1c009386 PA:1c009386 +74603068ns 1313098 1c003eb4 f87ff06f jal x0, -122 +74603107ns 1313100 1c003e3a 00842783 lw x15, 8(x8) x15=ffffffe1 x8:1c00922c PA:1c009234 +74603127ns 1313101 1c003e3c 00094583 lbu x11, 0(x18) x11=0000000a x18:1c008985 PA:1c008985 +74603147ns 1313102 1c003e40 fff78793 addi x15, x15, -1 x15=ffffffe0 x15:ffffffe1 +74603167ns 1313103 1c003e42 04059a63 bne x11, x0, 84 x11:0000000a +74603226ns 1313106 1c003e96 00f42423 sw x15, 8(x8) x15:ffffffe0 x8:1c00922c PA:1c009234 +74603246ns 1313107 1c003e98 00190913 addi x18, x18, 1 x18=1c008986 x18:1c008985 +74603266ns 1313108 1c003e9a 0007d763 bge x15, x0, 14 x15:ffffffe0 +74603285ns 1313109 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00922c PA:1c009244 +74603325ns 1313111 1c003ea0 00e7cb63 blt x15, x14, 22 x15:ffffffe0 x14:fffffc00 +74603345ns 1313112 1c003ea4 01458963 beq x11, x20, 18 x11:0000000a x20:0000000a +74603404ns 1313115 1c003eb6 00800633 add x12, x0, x8 x12=1c00922c x8:1c00922c +74603424ns 1313116 1c003eb8 00900533 add x10, x0, x9 x10=1c008bdc x9:1c008bdc +74603444ns 1313117 1c003eba 1f0000ef jal x1, 496 x1=1c003ebc +74603483ns 1313119 1c0040aa fe010113 addi x2, x2, -32 x2=1c019950 x2:1c019970 +74603503ns 1313120 1c0040ac 00812c23 sw x8, 24(x2) x8:1c00922c x2:1c019950 PA:1c019968 +74603523ns 1313121 1c0040ae 00912a23 sw x9, 20(x2) x9:1c008bdc x2:1c019950 PA:1c019964 +74603543ns 1313122 1c0040b0 01212823 sw x18, 16(x2) x18:1c008986 x2:1c019950 PA:1c019960 +74603563ns 1313123 1c0040b2 00112e23 sw x1, 28(x2) x1:1c003ebc x2:1c019950 PA:1c01996c +74603582ns 1313124 1c0040b4 01312623 sw x19, 12(x2) x19:ffffffff x2:1c019950 PA:1c01995c +74603602ns 1313125 1c0040b6 00a004b3 add x9, x0, x10 x9=1c008bdc x10:1c008bdc +74603622ns 1313126 1c0040b8 00b00933 add x18, x0, x11 x18=0000000a x11:0000000a +74603642ns 1313127 1c0040ba 00c00433 add x8, x0, x12 x8=1c00922c x12:1c00922c +74603662ns 1313128 1c0040bc 00050463 beq x10, x0, 8 x10:1c008bdc +74603681ns 1313129 1c0040be 01852783 lw x15, 24(x10) x15=00000001 x10:1c008bdc PA:1c008bf4 +74603721ns 1313131 1c0040c0 00079263 bne x15, x0, 4 x15:00000001 +74603780ns 1313134 1c0040c4 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +74603800ns 1313135 1c0040c8 a1478793 addi x15, x15, -1516 x15=1c008a14 x15:1c009000 +74603820ns 1313136 1c0040cc 06f41963 bne x8, x15, 114 x8:1c00922c x15:1c008a14 +74603899ns 1313140 1c00413e 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +74603919ns 1313141 1c004142 a3478793 addi x15, x15, -1484 x15=1c008a34 x15:1c009000 +74603939ns 1313142 1c004146 00f41463 bne x8, x15, 8 x8:1c00922c x15:1c008a34 +74604018ns 1313146 1c00414e 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +74604038ns 1313147 1c004152 9f478793 addi x15, x15, -1548 x15=1c0089f4 x15:1c009000 +74604057ns 1313148 1c004156 f6f41ee3 bne x8, x15, -132 x8:1c00922c x15:1c0089f4 +74604117ns 1313151 1c0040d2 01842783 lw x15, 24(x8) x15=fffffc00 x8:1c00922c PA:1c009244 +74604156ns 1313153 1c0040d4 00f42423 sw x15, 8(x8) x15:fffffc00 x8:1c00922c PA:1c009234 +74604176ns 1313154 1c0040d6 00c45783 lhu x15, 12(x8) x15=00000089 x8:1c00922c PA:1c009238 +74604216ns 1313156 1c0040da 0087f793 andi x15, x15, 8 x15=00000008 x15:00000089 +74604235ns 1313157 1c0040dc 08078163 beq x15, x0, 130 x15:00000008 +74604255ns 1313158 1c0040de 01042783 lw x15, 16(x8) x15=1c009368 x8:1c00922c PA:1c00923c +74604295ns 1313160 1c0040e0 06078f63 beq x15, x0, 126 x15:1c009368 +74604315ns 1313161 1c0040e2 01042783 lw x15, 16(x8) x15=1c009368 x8:1c00922c PA:1c00923c +74604334ns 1313162 1c0040e4 00042503 lw x10, 0(x8) x10=1c009387 x8:1c00922c PA:1c00922c +74604354ns 1313163 1c0040e6 0ff97993 andi x19, x18, 255 x19=0000000a x18:0000000a +74604374ns 1313164 1c0040ea 0ff97913 andi x18, x18, 255 x18=0000000a x18:0000000a +74604394ns 1313165 1c0040ee 40f50533 sub x10, x10, x15 x10=0000001f x10:1c009387 x15:1c009368 +74604414ns 1313166 1c0040f0 01442783 lw x15, 20(x8) x15=00000400 x8:1c00922c PA:1c009240 +74604453ns 1313168 1c0040f2 00f54663 blt x10, x15, 12 x10:0000001f x15:00000400 +74604513ns 1313171 1c0040fe 00842783 lw x15, 8(x8) x15=fffffc00 x8:1c00922c PA:1c009234 +74604532ns 1313172 1c004100 00150513 addi x10, x10, 1 x10=00000020 x10:0000001f +74604552ns 1313173 1c004102 fff78793 addi x15, x15, -1 x15=fffffbff x15:fffffc00 +74604572ns 1313174 1c004104 00f42423 sw x15, 8(x8) x15:fffffbff x8:1c00922c PA:1c009234 +74604592ns 1313175 1c004106 00042783 lw x15, 0(x8) x15=1c009387 x8:1c00922c PA:1c00922c +74604631ns 1313177 1c004108 00178713 addi x14, x15, 1 x14=1c009388 x15:1c009387 +74604651ns 1313178 1c00410c 00e42023 sw x14, 0(x8) x14:1c009388 x8:1c00922c PA:1c00922c +74604671ns 1313179 1c00410e 01378023 sb x19, 0(x15) x19:0000000a x15:1c009387 PA:1c009387 +74604691ns 1313180 1c004112 01442783 lw x15, 20(x8) x15=00000400 x8:1c00922c PA:1c009240 +74604730ns 1313182 1c004114 00a78963 beq x15, x10, 18 x15:00000400 x10:00000020 +74604750ns 1313183 1c004118 00c45783 lhu x15, 12(x8) x15=00000089 x8:1c00922c PA:1c009238 +74604790ns 1313185 1c00411c 0017f793 andi x15, x15, 1 x15=00000001 x15:00000089 +74604809ns 1313186 1c00411e 00078863 beq x15, x0, 16 x15:00000001 +74604829ns 1313187 1c004120 00a00793 addi x15, x0, 10 x15=0000000a +74604849ns 1313188 1c004122 00f91663 bne x18, x15, 12 x18:0000000a x15:0000000a +74604869ns 1313189 1c004126 008005b3 add x11, x0, x8 x11=1c00922c x8:1c00922c +74604889ns 1313190 1c004128 00900533 add x10, x0, x9 x10=1c008bdc x9:1c008bdc +74604908ns 1313191 1c00412a 3d8000ef jal x1, 984 x1=1c00412c +74604948ns 1313193 1c004502 0105a783 lw x15, 16(x11) x15=1c009368 x11:1c00922c PA:1c00923c +74604988ns 1313195 1c004504 06078063 beq x15, x0, 96 x15:1c009368 +74605007ns 1313196 1c004506 fe010113 addi x2, x2, -32 x2=1c019930 x2:1c019950 +74605027ns 1313197 1c004508 00812c23 sw x8, 24(x2) x8:1c00922c x2:1c019930 PA:1c019948 +74605047ns 1313198 1c00450a 00112e23 sw x1, 28(x2) x1:1c00412c x2:1c019930 PA:1c01994c +74605067ns 1313199 1c00450c 00a00433 add x8, x0, x10 x8=1c008bdc x10:1c008bdc +74605087ns 1313200 1c00450e 00050663 beq x10, x0, 12 x10:1c008bdc +74605106ns 1313201 1c004510 01852783 lw x15, 24(x10) x15=00000001 x10:1c008bdc PA:1c008bf4 +74605146ns 1313203 1c004512 00079463 bne x15, x0, 8 x15:00000001 +74605225ns 1313207 1c00451a 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +74605245ns 1313208 1c00451e a1478793 addi x15, x15, -1516 x15=1c008a14 x15:1c009000 +74605265ns 1313209 1c004522 00f59c63 bne x11, x15, 24 x11:1c00922c x15:1c008a14 +74605344ns 1313213 1c00453a 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +74605364ns 1313214 1c00453e a3478793 addi x15, x15, -1484 x15=1c008a34 x15:1c009000 +74605383ns 1313215 1c004542 00f59463 bne x11, x15, 8 x11:1c00922c x15:1c008a34 +74605463ns 1313219 1c00454a 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +74605482ns 1313220 1c00454e 9f478793 addi x15, x15, -1548 x15=1c0089f4 x15:1c009000 +74605502ns 1313221 1c004552 fcf59be3 bne x11, x15, -42 x11:1c00922c x15:1c0089f4 +74605562ns 1313224 1c004528 00c59783 lh x15, 12(x11) x15=00000089 x11:1c00922c PA:1c009238 +74605601ns 1313226 1c00452c 02078763 beq x15, x0, 46 x15:00000089 +74605621ns 1313227 1c00452e 00800533 add x10, x0, x8 x10=1c008bdc x8:1c008bdc +74605641ns 1313228 1c004530 01812403 lw x8, 24(x2) x8=1c00922c x2:1c019930 PA:1c019948 +74605661ns 1313229 1c004532 01c12083 lw x1, 28(x2) x1=1c00412c x2:1c019930 PA:1c01994c +74605680ns 1313230 1c004534 02010113 addi x2, x2, 32 x2=1c019950 x2:1c019930 +74605700ns 1313231 1c004536 e85ff06f jal x0, -380 +74605759ns 1313234 1c0043ba 00c5d783 lhu x15, 12(x11) x15=00000089 x11:1c00922c PA:1c009238 +74605779ns 1313235 1c0043be fe010113 addi x2, x2, -32 x2=1c019930 x2:1c019950 +74605799ns 1313236 1c0043c0 00812c23 sw x8, 24(x2) x8:1c00922c x2:1c019930 PA:1c019948 +74605819ns 1313237 1c0043c2 00912a23 sw x9, 20(x2) x9:1c008bdc x2:1c019930 PA:1c019944 +74605839ns 1313238 1c0043c4 00112e23 sw x1, 28(x2) x1:1c00412c x2:1c019930 PA:1c01994c +74605858ns 1313239 1c0043c6 01212823 sw x18, 16(x2) x18:0000000a x2:1c019930 PA:1c019940 +74605878ns 1313240 1c0043c8 01312623 sw x19, 12(x2) x19:0000000a x2:1c019930 PA:1c01993c +74605898ns 1313241 1c0043ca 0087f713 andi x14, x15, 8 x14=00000008 x15:00000089 +74605918ns 1313242 1c0043ce 00a004b3 add x9, x0, x10 x9=1c008bdc x10:1c008bdc +74605938ns 1313243 1c0043d0 00b00433 add x8, x0, x11 x8=1c00922c x11:1c00922c +74605957ns 1313244 1c0043d2 0e071363 bne x14, x0, 230 x14:00000008 +74606017ns 1313247 1c0044b8 0105a983 lw x19, 16(x11) x19=1c009368 x11:1c00922c PA:1c00923c +74606056ns 1313249 1c0044bc f20982e3 beq x19, x0, -220 x19:1c009368 +74606076ns 1313250 1c0044c0 0005a903 lw x18, 0(x11) x18=1c009388 x11:1c00922c PA:1c00922c +74606096ns 1313251 1c0044c4 0037f793 andi x15, x15, 3 x15=00000001 x15:00000089 +74606116ns 1313252 1c0044c6 0135a023 sw x19, 0(x11) x19:1c009368 x11:1c00922c PA:1c00922c +74606136ns 1313253 1c0044ca 41390933 sub x18, x18, x19 x18=00000020 x18:1c009388 x19:1c009368 +74606155ns 1313254 1c0044ce 00000713 addi x14, x0, 0 x14=00000000 +74606175ns 1313255 1c0044d0 00079263 bne x15, x0, 4 x15:00000001 +74606234ns 1313258 1c0044d4 00e42423 sw x14, 8(x8) x14:00000000 x8:1c00922c PA:1c009234 +74606254ns 1313259 1c0044d6 f12055e3 bge x0, x18, -246 x18:00000020 +74606274ns 1313260 1c0044da 02842783 lw x15, 40(x8) x15=1c004c5e x8:1c00922c PA:1c009254 +74606294ns 1313261 1c0044dc 02042583 lw x11, 32(x8) x11=1c00922c x8:1c00922c PA:1c00924c +74606314ns 1313262 1c0044de 012006b3 add x13, x0, x18 x13=00000020 x18:00000020 +74606333ns 1313263 1c0044e0 01300633 add x12, x0, x19 x12=1c009368 x19:1c009368 +74606353ns 1313264 1c0044e2 00900533 add x10, x0, x9 x10=1c008bdc x9:1c008bdc +74606373ns 1313265 1c0044e4 000780e7 jalr x1, x15, 0 x1=1c0044e6 x15:1c004c5e +74606432ns 1313268 1c004c5e 00c5d783 lhu x15, 12(x11) x15=00000089 x11:1c00922c PA:1c009238 +74606452ns 1313269 1c004c62 fe010113 addi x2, x2, -32 x2=1c019910 x2:1c019930 +74606472ns 1313270 1c004c64 00812c23 sw x8, 24(x2) x8:1c00922c x2:1c019910 PA:1c019928 +74606492ns 1313271 1c004c66 00912a23 sw x9, 20(x2) x9:1c008bdc x2:1c019910 PA:1c019924 +74606512ns 1313272 1c004c68 01212823 sw x18, 16(x2) x18:00000020 x2:1c019910 PA:1c019920 +74606531ns 1313273 1c004c6a 01312623 sw x19, 12(x2) x19:1c009368 x2:1c019910 PA:1c01991c +74606551ns 1313274 1c004c6c 00112e23 sw x1, 28(x2) x1:1c0044e6 x2:1c019910 PA:1c01992c +74606571ns 1313275 1c004c6e 1007f793 andi x15, x15, 256 x15=00000000 x15:00000089 +74606591ns 1313276 1c004c72 00a004b3 add x9, x0, x10 x9=1c008bdc x10:1c008bdc +74606611ns 1313277 1c004c74 00b00433 add x8, x0, x11 x8=1c00922c x11:1c00922c +74606630ns 1313278 1c004c76 00c00933 add x18, x0, x12 x18=1c009368 x12:1c009368 +74606650ns 1313279 1c004c78 00d009b3 add x19, x0, x13 x19=00000020 x13:00000020 +74606670ns 1313280 1c004c7a 00078663 beq x15, x0, 12 x15:00000000 +74606749ns 1313284 1c004c86 00c45783 lhu x15, 12(x8) x15=00000089 x8:1c00922c PA:1c009238 +74606769ns 1313285 1c004c8a fffff737 lui x14, 0xfffff000 x14=fffff000 +74606789ns 1313286 1c004c8c fff70713 addi x14, x14, -1 x14=ffffefff x14:fffff000 +74606808ns 1313287 1c004c8e 00e7f7b3 and x15, x15, x14 x15=00000089 x15:00000089 x14:ffffefff +74606828ns 1313288 1c004c90 00e41583 lh x11, 14(x8) x11=00000001 x8:1c00922c PA:1c00923a +74606848ns 1313289 1c004c94 00f41623 sh x15, 12(x8) x15:00000089 x8:1c00922c PA:1c009238 +74606868ns 1313290 1c004c98 01812403 lw x8, 24(x2) x8=1c00922c x2:1c019910 PA:1c019928 +74606888ns 1313291 1c004c9a 01c12083 lw x1, 28(x2) x1=1c0044e6 x2:1c019910 PA:1c01992c +74606907ns 1313292 1c004c9c 013006b3 add x13, x0, x19 x13=00000020 x19:00000020 +74606927ns 1313293 1c004c9e 01200633 add x12, x0, x18 x12=1c009368 x18:1c009368 +74606947ns 1313294 1c004ca0 00c12983 lw x19, 12(x2) x19=1c009368 x2:1c019910 PA:1c01991c +74606967ns 1313295 1c004ca2 01012903 lw x18, 16(x2) x18=00000020 x2:1c019910 PA:1c019920 +74606987ns 1313296 1c004ca4 00900533 add x10, x0, x9 x10=1c008bdc x9:1c008bdc +74607006ns 1313297 1c004ca6 01412483 lw x9, 20(x2) x9=1c008bdc x2:1c019910 PA:1c019924 +74607026ns 1313298 1c004ca8 02010113 addi x2, x2, 32 x2=1c019930 x2:1c019910 +74607046ns 1313299 1c004caa 03e0006f jal x0, 62 +74607086ns 1313301 1c004ce8 ff010113 addi x2, x2, -16 x2=1c019920 x2:1c019930 +74607105ns 1313302 1c004cea 00812423 sw x8, 8(x2) x8:1c00922c x2:1c019920 PA:1c019928 +74607125ns 1313303 1c004cec 00912223 sw x9, 4(x2) x9:1c008bdc x2:1c019920 PA:1c019924 +74607145ns 1313304 1c004cee 00a00433 add x8, x0, x10 x8=1c008bdc x10:1c008bdc +74607165ns 1313305 1c004cf0 00b00533 add x10, x0, x11 x10=00000001 x11:00000001 +74607185ns 1313306 1c004cf2 00c005b3 add x11, x0, x12 x11=1c009368 x12:1c009368 +74607204ns 1313307 1c004cf4 00d00633 add x12, x0, x13 x12=00000020 x13:00000020 +74607224ns 1313308 1c004cf6 00112623 sw x1, 12(x2) x1:1c0044e6 x2:1c019920 PA:1c01992c +74607244ns 1313309 1c004cf8 dc01a023 sw x0, -576(x3) x3:1c0093dc PA:1c00919c +74607264ns 1313310 1c004cfc cf7fd0ef jal x1, -8970 x1=1c004d00 +74607303ns 1313312 1c0029f2 fff50513 addi x10, x10, -1 x10=00000000 x10:00000001 +74607323ns 1313313 1c0029f4 00100793 addi x15, x0, 1 x15=00000001 +74607343ns 1313314 1c0029f6 00c58833 add x16, x11, x12 x16=1c009388 x11:1c009368 x12:00000020 +74607363ns 1313315 1c0029fa 00a7eb63 bltu x15, x10, 22 x15:00000001 x10:00000000 +74607382ns 1313316 1c0029fe 000026b7 lui x13, 0x2000 x13=00002000 +74607402ns 1313317 1c002a00 f8068693 addi x13, x13, -128 x13=00001f80 x13:00002000 +74607422ns 1313318 1c002a04 1a10f537 lui x10, 0x1a10f000 x10=1a10f000 +74607442ns 1313319 1c002a08 01059a63 bne x11, x16, 20 x11:1c009368 x16:1c009388 +74607501ns 1313322 1c002a1c 00158593 addi x11, x11, 1 x11=1c009369 x11:1c009368 +74607521ns 1313323 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000009 x11:1c009369 PA:1c009368 +74607541ns 1313324 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +74607561ns 1313325 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +74607580ns 1313326 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +74607600ns 1313327 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +74607620ns 1313328 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +74607640ns 1313329 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +74607660ns 1313330 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +74607679ns 1313331 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +74607699ns 1313332 1c002a38 0117a023 sw x17, 0(x15) x17:00000009 x15:1a10ff80 PA:1a10ff80 +74607719ns 1313333 1c002a3c fcdff06f jal x0, -52 +74607818ns 1313338 1c002a08 01059a63 bne x11, x16, 20 x11:1c009369 x16:1c009388 +74607877ns 1313341 1c002a1c 00158593 addi x11, x11, 1 x11=1c00936a x11:1c009369 +74607897ns 1313342 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000020 x11:1c00936a PA:1c009369 +74607917ns 1313343 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +74607937ns 1313344 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +74607956ns 1313345 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +74607976ns 1313346 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +74607996ns 1313347 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +74608016ns 1313348 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +74608036ns 1313349 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +74608055ns 1313350 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +74608075ns 1313351 1c002a38 0117a023 sw x17, 0(x15) x17:00000020 x15:1a10ff80 PA:1a10ff80 +74608095ns 1313352 1c002a3c fcdff06f jal x0, -52 +74608194ns 1313357 1c002a08 01059a63 bne x11, x16, 20 x11:1c00936a x16:1c009388 +74608253ns 1313360 1c002a1c 00158593 addi x11, x11, 1 x11=1c00936b x11:1c00936a +74608273ns 1313361 1c002a1e fff5c883 lbu x17, -1(x11) x17=0000002a x11:1c00936b PA:1c00936a +74608293ns 1313362 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +74608313ns 1313363 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +74608332ns 1313364 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +74608352ns 1313365 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +74608372ns 1313366 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +74608392ns 1313367 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +74608412ns 1313368 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +74608431ns 1313369 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +74608451ns 1313370 1c002a38 0117a023 sw x17, 0(x15) x17:0000002a x15:1a10ff80 PA:1a10ff80 +74608471ns 1313371 1c002a3c fcdff06f jal x0, -52 +74608570ns 1313376 1c002a08 01059a63 bne x11, x16, 20 x11:1c00936b x16:1c009388 +74608629ns 1313379 1c002a1c 00158593 addi x11, x11, 1 x11=1c00936c x11:1c00936b +74608649ns 1313380 1c002a1e fff5c883 lbu x17, -1(x11) x17=0000002a x11:1c00936c PA:1c00936b +74608669ns 1313381 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +74608689ns 1313382 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +74608708ns 1313383 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +74608728ns 1313384 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +74608748ns 1313385 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +74608768ns 1313386 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +74608788ns 1313387 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +74608807ns 1313388 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +74608827ns 1313389 1c002a38 0117a023 sw x17, 0(x15) x17:0000002a x15:1a10ff80 PA:1a10ff80 +74608847ns 1313390 1c002a3c fcdff06f jal x0, -52 +74608946ns 1313395 1c002a08 01059a63 bne x11, x16, 20 x11:1c00936c x16:1c009388 +74609005ns 1313398 1c002a1c 00158593 addi x11, x11, 1 x11=1c00936d x11:1c00936c +74609025ns 1313399 1c002a1e fff5c883 lbu x17, -1(x11) x17=0000002a x11:1c00936d PA:1c00936c +74609045ns 1313400 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +74609065ns 1313401 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +74609085ns 1313402 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +74609104ns 1313403 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +74609124ns 1313404 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +74609144ns 1313405 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +74609164ns 1313406 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +74609183ns 1313407 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +74609203ns 1313408 1c002a38 0117a023 sw x17, 0(x15) x17:0000002a x15:1a10ff80 PA:1a10ff80 +74609223ns 1313409 1c002a3c fcdff06f jal x0, -52 +74609322ns 1313414 1c002a08 01059a63 bne x11, x16, 20 x11:1c00936d x16:1c009388 +74609381ns 1313417 1c002a1c 00158593 addi x11, x11, 1 x11=1c00936e x11:1c00936d +74609401ns 1313418 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000020 x11:1c00936e PA:1c00936d +74609421ns 1313419 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +74609441ns 1313420 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +74609461ns 1313421 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +74609480ns 1313422 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +74609500ns 1313423 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +74609520ns 1313424 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +74609540ns 1313425 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +74609560ns 1313426 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +74609579ns 1313427 1c002a38 0117a023 sw x17, 0(x15) x17:00000020 x15:1a10ff80 PA:1a10ff80 +74609599ns 1313428 1c002a3c fcdff06f jal x0, -52 +74609698ns 1313433 1c002a08 01059a63 bne x11, x16, 20 x11:1c00936e x16:1c009388 +74609757ns 1313436 1c002a1c 00158593 addi x11, x11, 1 x11=1c00936f x11:1c00936e +74609777ns 1313437 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000046 x11:1c00936f PA:1c00936e +74609797ns 1313438 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +74609817ns 1313439 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +74609837ns 1313440 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +74609856ns 1313441 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +74609876ns 1313442 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +74609896ns 1313443 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +74609916ns 1313444 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +74609936ns 1313445 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +74609955ns 1313446 1c002a38 0117a023 sw x17, 0(x15) x17:00000046 x15:1a10ff80 PA:1a10ff80 +74609975ns 1313447 1c002a3c fcdff06f jal x0, -52 +74610074ns 1313452 1c002a08 01059a63 bne x11, x16, 20 x11:1c00936f x16:1c009388 +74610134ns 1313455 1c002a1c 00158593 addi x11, x11, 1 x11=1c009370 x11:1c00936f +74610153ns 1313456 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000072 x11:1c009370 PA:1c00936f +74610173ns 1313457 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +74610193ns 1313458 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +74610213ns 1313459 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +74610232ns 1313460 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +74610252ns 1313461 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +74610272ns 1313462 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +74610292ns 1313463 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +74610312ns 1313464 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +74610331ns 1313465 1c002a38 0117a023 sw x17, 0(x15) x17:00000072 x15:1a10ff80 PA:1a10ff80 +74610351ns 1313466 1c002a3c fcdff06f jal x0, -52 +74610450ns 1313471 1c002a08 01059a63 bne x11, x16, 20 x11:1c009370 x16:1c009388 +74610510ns 1313474 1c002a1c 00158593 addi x11, x11, 1 x11=1c009371 x11:1c009370 +74610529ns 1313475 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000065 x11:1c009371 PA:1c009370 +74610549ns 1313476 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +74610569ns 1313477 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +74610589ns 1313478 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +74610609ns 1313479 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +74610628ns 1313480 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +74610648ns 1313481 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +74610668ns 1313482 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +74610688ns 1313483 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +74610707ns 1313484 1c002a38 0117a023 sw x17, 0(x15) x17:00000065 x15:1a10ff80 PA:1a10ff80 +74610727ns 1313485 1c002a3c fcdff06f jal x0, -52 +74610826ns 1313490 1c002a08 01059a63 bne x11, x16, 20 x11:1c009371 x16:1c009388 +74610886ns 1313493 1c002a1c 00158593 addi x11, x11, 1 x11=1c009372 x11:1c009371 +74610905ns 1313494 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000065 x11:1c009372 PA:1c009371 +74610925ns 1313495 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +74610945ns 1313496 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +74610965ns 1313497 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +74610985ns 1313498 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +74611004ns 1313499 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +74611024ns 1313500 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +74611044ns 1313501 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +74611064ns 1313502 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +74611084ns 1313503 1c002a38 0117a023 sw x17, 0(x15) x17:00000065 x15:1a10ff80 PA:1a10ff80 +74611103ns 1313504 1c002a3c fcdff06f jal x0, -52 +74611202ns 1313509 1c002a08 01059a63 bne x11, x16, 20 x11:1c009372 x16:1c009388 +74611262ns 1313512 1c002a1c 00158593 addi x11, x11, 1 x11=1c009373 x11:1c009372 +74611281ns 1313513 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000052 x11:1c009373 PA:1c009372 +74611301ns 1313514 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +74611321ns 1313515 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +74611341ns 1313516 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +74611361ns 1313517 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +74611380ns 1313518 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +74611400ns 1313519 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +74611420ns 1313520 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +74611440ns 1313521 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +74611460ns 1313522 1c002a38 0117a023 sw x17, 0(x15) x17:00000052 x15:1a10ff80 PA:1a10ff80 +74611479ns 1313523 1c002a3c fcdff06f jal x0, -52 +74611578ns 1313528 1c002a08 01059a63 bne x11, x16, 20 x11:1c009373 x16:1c009388 +74611638ns 1313531 1c002a1c 00158593 addi x11, x11, 1 x11=1c009374 x11:1c009373 +74611657ns 1313532 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000054 x11:1c009374 PA:1c009373 +74611677ns 1313533 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +74611697ns 1313534 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +74611717ns 1313535 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +74611737ns 1313536 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +74611756ns 1313537 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +74611776ns 1313538 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +74611796ns 1313539 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +74611816ns 1313540 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +74611836ns 1313541 1c002a38 0117a023 sw x17, 0(x15) x17:00000054 x15:1a10ff80 PA:1a10ff80 +74611855ns 1313542 1c002a3c fcdff06f jal x0, -52 +74611954ns 1313547 1c002a08 01059a63 bne x11, x16, 20 x11:1c009374 x16:1c009388 +74612014ns 1313550 1c002a1c 00158593 addi x11, x11, 1 x11=1c009375 x11:1c009374 +74612034ns 1313551 1c002a1e fff5c883 lbu x17, -1(x11) x17=0000004f x11:1c009375 PA:1c009374 +74612053ns 1313552 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +74612073ns 1313553 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +74612093ns 1313554 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +74612113ns 1313555 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +74612133ns 1313556 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +74612152ns 1313557 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +74612172ns 1313558 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +74612192ns 1313559 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +74612212ns 1313560 1c002a38 0117a023 sw x17, 0(x15) x17:0000004f x15:1a10ff80 PA:1a10ff80 +74612231ns 1313561 1c002a3c fcdff06f jal x0, -52 +74612330ns 1313566 1c002a08 01059a63 bne x11, x16, 20 x11:1c009375 x16:1c009388 +74612390ns 1313569 1c002a1c 00158593 addi x11, x11, 1 x11=1c009376 x11:1c009375 +74612410ns 1313570 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000053 x11:1c009376 PA:1c009375 +74612429ns 1313571 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +74612449ns 1313572 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +74612469ns 1313573 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +74612489ns 1313574 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +74612509ns 1313575 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +74612528ns 1313576 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +74612548ns 1313577 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +74612568ns 1313578 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +74612588ns 1313579 1c002a38 0117a023 sw x17, 0(x15) x17:00000053 x15:1a10ff80 PA:1a10ff80 +74612608ns 1313580 1c002a3c fcdff06f jal x0, -52 +74612706ns 1313585 1c002a08 01059a63 bne x11, x16, 20 x11:1c009376 x16:1c009388 +74612766ns 1313588 1c002a1c 00158593 addi x11, x11, 1 x11=1c009377 x11:1c009376 +74612786ns 1313589 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000020 x11:1c009377 PA:1c009376 +74612805ns 1313590 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +74612825ns 1313591 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +74612845ns 1313592 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +74612865ns 1313593 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +74612885ns 1313594 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +74612904ns 1313595 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +74612924ns 1313596 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +74612944ns 1313597 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +74612964ns 1313598 1c002a38 0117a023 sw x17, 0(x15) x17:00000020 x15:1a10ff80 PA:1a10ff80 +74612984ns 1313599 1c002a3c fcdff06f jal x0, -52 +74613083ns 1313604 1c002a08 01059a63 bne x11, x16, 20 x11:1c009377 x16:1c009388 +74613142ns 1313607 1c002a1c 00158593 addi x11, x11, 1 x11=1c009378 x11:1c009377 +74613162ns 1313608 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000048 x11:1c009378 PA:1c009377 +74613181ns 1313609 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +74613201ns 1313610 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +74613221ns 1313611 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +74613241ns 1313612 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +74613261ns 1313613 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +74613280ns 1313614 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +74613300ns 1313615 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +74613320ns 1313616 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +74613340ns 1313617 1c002a38 0117a023 sw x17, 0(x15) x17:00000048 x15:1a10ff80 PA:1a10ff80 +74613360ns 1313618 1c002a3c fcdff06f jal x0, -52 +74613459ns 1313623 1c002a08 01059a63 bne x11, x16, 20 x11:1c009378 x16:1c009388 +74613518ns 1313626 1c002a1c 00158593 addi x11, x11, 1 x11=1c009379 x11:1c009378 +74613538ns 1313627 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000065 x11:1c009379 PA:1c009378 +74613558ns 1313628 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +74613577ns 1313629 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +74613597ns 1313630 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +74613617ns 1313631 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +74613637ns 1313632 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +74613656ns 1313633 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +74613676ns 1313634 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +74613696ns 1313635 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +74613716ns 1313636 1c002a38 0117a023 sw x17, 0(x15) x17:00000065 x15:1a10ff80 PA:1a10ff80 +74613736ns 1313637 1c002a3c fcdff06f jal x0, -52 +74613835ns 1313642 1c002a08 01059a63 bne x11, x16, 20 x11:1c009379 x16:1c009388 +74613894ns 1313645 1c002a1c 00158593 addi x11, x11, 1 x11=1c00937a x11:1c009379 +74613914ns 1313646 1c002a1e fff5c883 lbu x17, -1(x11) x17=0000006c x11:1c00937a PA:1c009379 +74613934ns 1313647 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +74613953ns 1313648 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +74613973ns 1313649 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +74613993ns 1313650 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +74614013ns 1313651 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +74614033ns 1313652 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +74614052ns 1313653 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +74614072ns 1313654 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +74614092ns 1313655 1c002a38 0117a023 sw x17, 0(x15) x17:0000006c x15:1a10ff80 PA:1a10ff80 +74614112ns 1313656 1c002a3c fcdff06f jal x0, -52 +74614211ns 1313661 1c002a08 01059a63 bne x11, x16, 20 x11:1c00937a x16:1c009388 +74614270ns 1313664 1c002a1c 00158593 addi x11, x11, 1 x11=1c00937b x11:1c00937a +74614290ns 1313665 1c002a1e fff5c883 lbu x17, -1(x11) x17=0000006c x11:1c00937b PA:1c00937a +74614310ns 1313666 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +74614329ns 1313667 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +74614349ns 1313668 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +74614369ns 1313669 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +74614389ns 1313670 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +74614409ns 1313671 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +74614428ns 1313672 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +74614448ns 1313673 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +74614468ns 1313674 1c002a38 0117a023 sw x17, 0(x15) x17:0000006c x15:1a10ff80 PA:1a10ff80 +74614488ns 1313675 1c002a3c fcdff06f jal x0, -52 +74614587ns 1313680 1c002a08 01059a63 bne x11, x16, 20 x11:1c00937b x16:1c009388 +74614646ns 1313683 1c002a1c 00158593 addi x11, x11, 1 x11=1c00937c x11:1c00937b +74614666ns 1313684 1c002a1e fff5c883 lbu x17, -1(x11) x17=0000006f x11:1c00937c PA:1c00937b +74614686ns 1313685 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +74614705ns 1313686 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +74614725ns 1313687 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +74614745ns 1313688 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +74614765ns 1313689 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +74614785ns 1313690 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +74614804ns 1313691 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +74614824ns 1313692 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +74614844ns 1313693 1c002a38 0117a023 sw x17, 0(x15) x17:0000006f x15:1a10ff80 PA:1a10ff80 +74614864ns 1313694 1c002a3c fcdff06f jal x0, -52 +74614963ns 1313699 1c002a08 01059a63 bne x11, x16, 20 x11:1c00937c x16:1c009388 +74615022ns 1313702 1c002a1c 00158593 addi x11, x11, 1 x11=1c00937d x11:1c00937c +74615042ns 1313703 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000020 x11:1c00937d PA:1c00937c +74615062ns 1313704 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +74615082ns 1313705 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +74615101ns 1313706 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +74615121ns 1313707 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +74615141ns 1313708 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +74615161ns 1313709 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +74615180ns 1313710 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +74615200ns 1313711 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +74615220ns 1313712 1c002a38 0117a023 sw x17, 0(x15) x17:00000020 x15:1a10ff80 PA:1a10ff80 +74615240ns 1313713 1c002a3c fcdff06f jal x0, -52 +74615339ns 1313718 1c002a08 01059a63 bne x11, x16, 20 x11:1c00937d x16:1c009388 +74615398ns 1313721 1c002a1c 00158593 addi x11, x11, 1 x11=1c00937e x11:1c00937d +74615418ns 1313722 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000057 x11:1c00937e PA:1c00937d +74615438ns 1313723 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +74615458ns 1313724 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +74615477ns 1313725 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +74615497ns 1313726 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +74615517ns 1313727 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +74615537ns 1313728 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +74615557ns 1313729 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +74615576ns 1313730 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +74615596ns 1313731 1c002a38 0117a023 sw x17, 0(x15) x17:00000057 x15:1a10ff80 PA:1a10ff80 +74615616ns 1313732 1c002a3c fcdff06f jal x0, -52 +74615715ns 1313737 1c002a08 01059a63 bne x11, x16, 20 x11:1c00937e x16:1c009388 +74615774ns 1313740 1c002a1c 00158593 addi x11, x11, 1 x11=1c00937f x11:1c00937e +74615794ns 1313741 1c002a1e fff5c883 lbu x17, -1(x11) x17=0000006f x11:1c00937f PA:1c00937e +74615814ns 1313742 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +74615834ns 1313743 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +74615853ns 1313744 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +74615873ns 1313745 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +74615893ns 1313746 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +74615913ns 1313747 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +74615933ns 1313748 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +74615952ns 1313749 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +74615972ns 1313750 1c002a38 0117a023 sw x17, 0(x15) x17:0000006f x15:1a10ff80 PA:1a10ff80 +74615992ns 1313751 1c002a3c fcdff06f jal x0, -52 +74616091ns 1313756 1c002a08 01059a63 bne x11, x16, 20 x11:1c00937f x16:1c009388 +74616150ns 1313759 1c002a1c 00158593 addi x11, x11, 1 x11=1c009380 x11:1c00937f +74616170ns 1313760 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000072 x11:1c009380 PA:1c00937f +74616190ns 1313761 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +74616210ns 1313762 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +74616229ns 1313763 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +74616249ns 1313764 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +74616269ns 1313765 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +74616289ns 1313766 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +74616309ns 1313767 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +74616328ns 1313768 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +74616348ns 1313769 1c002a38 0117a023 sw x17, 0(x15) x17:00000072 x15:1a10ff80 PA:1a10ff80 +74616368ns 1313770 1c002a3c fcdff06f jal x0, -52 +74616467ns 1313775 1c002a08 01059a63 bne x11, x16, 20 x11:1c009380 x16:1c009388 +74616526ns 1313778 1c002a1c 00158593 addi x11, x11, 1 x11=1c009381 x11:1c009380 +74616546ns 1313779 1c002a1e fff5c883 lbu x17, -1(x11) x17=0000006c x11:1c009381 PA:1c009380 +74616566ns 1313780 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +74616586ns 1313781 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +74616605ns 1313782 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +74616625ns 1313783 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +74616645ns 1313784 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +74616665ns 1313785 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +74616685ns 1313786 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +74616704ns 1313787 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +74616724ns 1313788 1c002a38 0117a023 sw x17, 0(x15) x17:0000006c x15:1a10ff80 PA:1a10ff80 +74616744ns 1313789 1c002a3c fcdff06f jal x0, -52 +74616843ns 1313794 1c002a08 01059a63 bne x11, x16, 20 x11:1c009381 x16:1c009388 +74616902ns 1313797 1c002a1c 00158593 addi x11, x11, 1 x11=1c009382 x11:1c009381 +74616922ns 1313798 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000064 x11:1c009382 PA:1c009381 +74616942ns 1313799 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +74616962ns 1313800 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +74616982ns 1313801 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +74617001ns 1313802 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +74617021ns 1313803 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +74617041ns 1313804 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +74617061ns 1313805 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +74617081ns 1313806 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +74617100ns 1313807 1c002a38 0117a023 sw x17, 0(x15) x17:00000064 x15:1a10ff80 PA:1a10ff80 +74617120ns 1313808 1c002a3c fcdff06f jal x0, -52 +74617219ns 1313813 1c002a08 01059a63 bne x11, x16, 20 x11:1c009382 x16:1c009388 +74617278ns 1313816 1c002a1c 00158593 addi x11, x11, 1 x11=1c009383 x11:1c009382 +74617298ns 1313817 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000020 x11:1c009383 PA:1c009382 +74617318ns 1313818 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +74617338ns 1313819 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +74617358ns 1313820 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +74617377ns 1313821 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +74617397ns 1313822 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +74617417ns 1313823 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +74617437ns 1313824 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +74617457ns 1313825 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +74617476ns 1313826 1c002a38 0117a023 sw x17, 0(x15) x17:00000020 x15:1a10ff80 PA:1a10ff80 +74617496ns 1313827 1c002a3c fcdff06f jal x0, -52 +74617595ns 1313832 1c002a08 01059a63 bne x11, x16, 20 x11:1c009383 x16:1c009388 +74617654ns 1313835 1c002a1c 00158593 addi x11, x11, 1 x11=1c009384 x11:1c009383 +74617674ns 1313836 1c002a1e fff5c883 lbu x17, -1(x11) x17=0000002a x11:1c009384 PA:1c009383 +74617694ns 1313837 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +74617714ns 1313838 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +74617734ns 1313839 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +74617753ns 1313840 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +74617773ns 1313841 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +74617793ns 1313842 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +74617813ns 1313843 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +74617833ns 1313844 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +74617852ns 1313845 1c002a38 0117a023 sw x17, 0(x15) x17:0000002a x15:1a10ff80 PA:1a10ff80 +74617872ns 1313846 1c002a3c fcdff06f jal x0, -52 +74617971ns 1313851 1c002a08 01059a63 bne x11, x16, 20 x11:1c009384 x16:1c009388 +74618031ns 1313854 1c002a1c 00158593 addi x11, x11, 1 x11=1c009385 x11:1c009384 +74618050ns 1313855 1c002a1e fff5c883 lbu x17, -1(x11) x17=0000002a x11:1c009385 PA:1c009384 +74618070ns 1313856 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +74618090ns 1313857 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +74618110ns 1313858 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +74618129ns 1313859 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +74618149ns 1313860 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +74618169ns 1313861 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +74618189ns 1313862 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +74618209ns 1313863 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +74618228ns 1313864 1c002a38 0117a023 sw x17, 0(x15) x17:0000002a x15:1a10ff80 PA:1a10ff80 +74618248ns 1313865 1c002a3c fcdff06f jal x0, -52 +74618347ns 1313870 1c002a08 01059a63 bne x11, x16, 20 x11:1c009385 x16:1c009388 +74618407ns 1313873 1c002a1c 00158593 addi x11, x11, 1 x11=1c009386 x11:1c009385 +74618426ns 1313874 1c002a1e fff5c883 lbu x17, -1(x11) x17=0000002a x11:1c009386 PA:1c009385 +74618446ns 1313875 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +74618466ns 1313876 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +74618486ns 1313877 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +74618506ns 1313878 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +74618525ns 1313879 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +74618545ns 1313880 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +74618565ns 1313881 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +74618585ns 1313882 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +74618604ns 1313883 1c002a38 0117a023 sw x17, 0(x15) x17:0000002a x15:1a10ff80 PA:1a10ff80 +74618624ns 1313884 1c002a3c fcdff06f jal x0, -52 +74618723ns 1313889 1c002a08 01059a63 bne x11, x16, 20 x11:1c009386 x16:1c009388 +74618783ns 1313892 1c002a1c 00158593 addi x11, x11, 1 x11=1c009387 x11:1c009386 +74618802ns 1313893 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000020 x11:1c009387 PA:1c009386 +74618822ns 1313894 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +74618842ns 1313895 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +74618862ns 1313896 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +74618882ns 1313897 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +74618901ns 1313898 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +74618921ns 1313899 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +74618941ns 1313900 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +74618961ns 1313901 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +74618981ns 1313902 1c002a38 0117a023 sw x17, 0(x15) x17:00000020 x15:1a10ff80 PA:1a10ff80 +74619000ns 1313903 1c002a3c fcdff06f jal x0, -52 +74619099ns 1313908 1c002a08 01059a63 bne x11, x16, 20 x11:1c009387 x16:1c009388 +74619159ns 1313911 1c002a1c 00158593 addi x11, x11, 1 x11=1c009388 x11:1c009387 +74619178ns 1313912 1c002a1e fff5c883 lbu x17, -1(x11) x17=0000000a x11:1c009388 PA:1c009387 +74619198ns 1313913 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +74619218ns 1313914 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +74619238ns 1313915 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +74619258ns 1313916 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +74619277ns 1313917 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +74619297ns 1313918 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +74619317ns 1313919 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +74619337ns 1313920 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +74619357ns 1313921 1c002a38 0117a023 sw x17, 0(x15) x17:0000000a x15:1a10ff80 PA:1a10ff80 +74619376ns 1313922 1c002a3c fcdff06f jal x0, -52 +74619475ns 1313927 1c002a08 01059a63 bne x11, x16, 20 x11:1c009388 x16:1c009388 +74619495ns 1313928 1c002a0c 00c00533 add x10, x0, x12 x10=00000020 x12:00000020 +74619515ns 1313929 1c002a0e 00008067 jalr x0, x1, 0 x1:1c004d00 +74619555ns 1313931 1c004d00 fff00793 addi x15, x0, -1 x15=ffffffff +74619574ns 1313932 1c004d02 00f51663 bne x10, x15, 12 x10:00000020 x15:ffffffff +74619634ns 1313935 1c004d0e 00c12083 lw x1, 12(x2) x1=1c0044e6 x2:1c019920 PA:1c01992c +74619653ns 1313936 1c004d10 00812403 lw x8, 8(x2) x8=1c00922c x2:1c019920 PA:1c019928 +74619673ns 1313937 1c004d12 00412483 lw x9, 4(x2) x9=1c008bdc x2:1c019920 PA:1c019924 +74619693ns 1313938 1c004d14 01010113 addi x2, x2, 16 x2=1c019930 x2:1c019920 +74619713ns 1313939 1c004d16 00008067 jalr x0, x1, 0 x1:1c0044e6 +74619772ns 1313942 1c0044e6 00a04a63 blt x0, x10, 20 x10:00000020 +74619832ns 1313945 1c0044fa 00a989b3 add x19, x19, x10 x19=1c009388 x19:1c009368 x10:00000020 +74619851ns 1313946 1c0044fc 40a90933 sub x18, x18, x10 x18=00000000 x18:00000020 x10:00000020 +74619871ns 1313947 1c004500 fd7ff06f jal x0, -42 +74619931ns 1313950 1c0044d6 f12055e3 bge x0, x18, -246 x18:00000000 +74619990ns 1313953 1c0043e0 00000513 addi x10, x0, 0 x10=00000000 +74620010ns 1313954 1c0043e2 0be0006f jal x0, 190 +74620049ns 1313956 1c0044a0 01c12083 lw x1, 28(x2) x1=1c00412c x2:1c019930 PA:1c01994c +74620069ns 1313957 1c0044a2 01812403 lw x8, 24(x2) x8=1c00922c x2:1c019930 PA:1c019948 +74620089ns 1313958 1c0044a4 01412483 lw x9, 20(x2) x9=1c008bdc x2:1c019930 PA:1c019944 +74620109ns 1313959 1c0044a6 01012903 lw x18, 16(x2) x18=0000000a x2:1c019930 PA:1c019940 +74620128ns 1313960 1c0044a8 00c12983 lw x19, 12(x2) x19=0000000a x2:1c019930 PA:1c01993c +74620148ns 1313961 1c0044aa 02010113 addi x2, x2, 32 x2=1c019950 x2:1c019930 +74620168ns 1313962 1c0044ac 00008067 jalr x0, x1, 0 x1:1c00412c +74620208ns 1313964 1c00412c 02051d63 bne x10, x0, 58 x10:00000000 +74620227ns 1313965 1c00412e 01c12083 lw x1, 28(x2) x1=1c003ebc x2:1c019950 PA:1c01996c +74620247ns 1313966 1c004130 01812403 lw x8, 24(x2) x8=1c00922c x2:1c019950 PA:1c019968 +74620267ns 1313967 1c004132 01412483 lw x9, 20(x2) x9=1c008bdc x2:1c019950 PA:1c019964 +74620287ns 1313968 1c004134 00c12983 lw x19, 12(x2) x19=ffffffff x2:1c019950 PA:1c01995c +74620307ns 1313969 1c004136 01200533 add x10, x0, x18 x10=0000000a x18:0000000a +74620326ns 1313970 1c004138 01012903 lw x18, 16(x2) x18=1c008986 x2:1c019950 PA:1c019960 +74620346ns 1313971 1c00413a 02010113 addi x2, x2, 32 x2=1c019970 x2:1c019950 +74620366ns 1313972 1c00413c 00008067 jalr x0, x1, 0 x1:1c003ebc +74620406ns 1313974 1c003ebc f7351fe3 bne x10, x19, -130 x10:0000000a x19:ffffffff +74620465ns 1313977 1c003e3a 00842783 lw x15, 8(x8) x15=00000000 x8:1c00922c PA:1c009234 +74620485ns 1313978 1c003e3c 00094583 lbu x11, 0(x18) x11=00000000 x18:1c008986 PA:1c008986 +74620505ns 1313979 1c003e40 fff78793 addi x15, x15, -1 x15=ffffffff x15:00000000 +74620524ns 1313980 1c003e42 04059a63 bne x11, x0, 84 x11:00000000 +74620544ns 1313981 1c003e44 00f42423 sw x15, 8(x8) x15:ffffffff x8:1c00922c PA:1c009234 +74620564ns 1313982 1c003e46 0607de63 bge x15, x0, 124 x15:ffffffff +74620584ns 1313983 1c003e4a 00800633 add x12, x0, x8 x12=1c00922c x8:1c00922c +74620603ns 1313984 1c003e4c 00a00593 addi x11, x0, 10 x11=0000000a +74620623ns 1313985 1c003e4e 00900533 add x10, x0, x9 x10=1c008bdc x9:1c008bdc +74620643ns 1313986 1c003e50 25a000ef jal x1, 602 x1=1c003e52 +74620683ns 1313988 1c0040aa fe010113 addi x2, x2, -32 x2=1c019950 x2:1c019970 +74620702ns 1313989 1c0040ac 00812c23 sw x8, 24(x2) x8:1c00922c x2:1c019950 PA:1c019968 +74620722ns 1313990 1c0040ae 00912a23 sw x9, 20(x2) x9:1c008bdc x2:1c019950 PA:1c019964 +74620742ns 1313991 1c0040b0 01212823 sw x18, 16(x2) x18:1c008986 x2:1c019950 PA:1c019960 +74620762ns 1313992 1c0040b2 00112e23 sw x1, 28(x2) x1:1c003e52 x2:1c019950 PA:1c01996c +74620782ns 1313993 1c0040b4 01312623 sw x19, 12(x2) x19:ffffffff x2:1c019950 PA:1c01995c +74620801ns 1313994 1c0040b6 00a004b3 add x9, x0, x10 x9=1c008bdc x10:1c008bdc +74620821ns 1313995 1c0040b8 00b00933 add x18, x0, x11 x18=0000000a x11:0000000a +74620841ns 1313996 1c0040ba 00c00433 add x8, x0, x12 x8=1c00922c x12:1c00922c +74620861ns 1313997 1c0040bc 00050463 beq x10, x0, 8 x10:1c008bdc +74620881ns 1313998 1c0040be 01852783 lw x15, 24(x10) x15=00000001 x10:1c008bdc PA:1c008bf4 +74620920ns 1314000 1c0040c0 00079263 bne x15, x0, 4 x15:00000001 +74620980ns 1314003 1c0040c4 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +74620999ns 1314004 1c0040c8 a1478793 addi x15, x15, -1516 x15=1c008a14 x15:1c009000 +74621019ns 1314005 1c0040cc 06f41963 bne x8, x15, 114 x8:1c00922c x15:1c008a14 +74621098ns 1314009 1c00413e 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +74621118ns 1314010 1c004142 a3478793 addi x15, x15, -1484 x15=1c008a34 x15:1c009000 +74621138ns 1314011 1c004146 00f41463 bne x8, x15, 8 x8:1c00922c x15:1c008a34 +74621217ns 1314015 1c00414e 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +74621237ns 1314016 1c004152 9f478793 addi x15, x15, -1548 x15=1c0089f4 x15:1c009000 +74621257ns 1314017 1c004156 f6f41ee3 bne x8, x15, -132 x8:1c00922c x15:1c0089f4 +74621316ns 1314020 1c0040d2 01842783 lw x15, 24(x8) x15=fffffc00 x8:1c00922c PA:1c009244 +74621356ns 1314022 1c0040d4 00f42423 sw x15, 8(x8) x15:fffffc00 x8:1c00922c PA:1c009234 +74621375ns 1314023 1c0040d6 00c45783 lhu x15, 12(x8) x15=00000089 x8:1c00922c PA:1c009238 +74621415ns 1314025 1c0040da 0087f793 andi x15, x15, 8 x15=00000008 x15:00000089 +74621435ns 1314026 1c0040dc 08078163 beq x15, x0, 130 x15:00000008 +74621455ns 1314027 1c0040de 01042783 lw x15, 16(x8) x15=1c009368 x8:1c00922c PA:1c00923c +74621494ns 1314029 1c0040e0 06078f63 beq x15, x0, 126 x15:1c009368 +74621514ns 1314030 1c0040e2 01042783 lw x15, 16(x8) x15=1c009368 x8:1c00922c PA:1c00923c +74621534ns 1314031 1c0040e4 00042503 lw x10, 0(x8) x10=1c009368 x8:1c00922c PA:1c00922c +74621553ns 1314032 1c0040e6 0ff97993 andi x19, x18, 255 x19=0000000a x18:0000000a +74621573ns 1314033 1c0040ea 0ff97913 andi x18, x18, 255 x18=0000000a x18:0000000a +74621593ns 1314034 1c0040ee 40f50533 sub x10, x10, x15 x10=00000000 x10:1c009368 x15:1c009368 +74621613ns 1314035 1c0040f0 01442783 lw x15, 20(x8) x15=00000400 x8:1c00922c PA:1c009240 +74621652ns 1314037 1c0040f2 00f54663 blt x10, x15, 12 x10:00000000 x15:00000400 +74621712ns 1314040 1c0040fe 00842783 lw x15, 8(x8) x15=fffffc00 x8:1c00922c PA:1c009234 +74621732ns 1314041 1c004100 00150513 addi x10, x10, 1 x10=00000001 x10:00000000 +74621751ns 1314042 1c004102 fff78793 addi x15, x15, -1 x15=fffffbff x15:fffffc00 +74621771ns 1314043 1c004104 00f42423 sw x15, 8(x8) x15:fffffbff x8:1c00922c PA:1c009234 +74621791ns 1314044 1c004106 00042783 lw x15, 0(x8) x15=1c009368 x8:1c00922c PA:1c00922c +74621831ns 1314046 1c004108 00178713 addi x14, x15, 1 x14=1c009369 x15:1c009368 +74621850ns 1314047 1c00410c 00e42023 sw x14, 0(x8) x14:1c009369 x8:1c00922c PA:1c00922c +74621870ns 1314048 1c00410e 01378023 sb x19, 0(x15) x19:0000000a x15:1c009368 PA:1c009368 +74621890ns 1314049 1c004112 01442783 lw x15, 20(x8) x15=00000400 x8:1c00922c PA:1c009240 +74621930ns 1314051 1c004114 00a78963 beq x15, x10, 18 x15:00000400 x10:00000001 +74621949ns 1314052 1c004118 00c45783 lhu x15, 12(x8) x15=00000089 x8:1c00922c PA:1c009238 +74621989ns 1314054 1c00411c 0017f793 andi x15, x15, 1 x15=00000001 x15:00000089 +74622009ns 1314055 1c00411e 00078863 beq x15, x0, 16 x15:00000001 +74622029ns 1314056 1c004120 00a00793 addi x15, x0, 10 x15=0000000a +74622048ns 1314057 1c004122 00f91663 bne x18, x15, 12 x18:0000000a x15:0000000a +74622068ns 1314058 1c004126 008005b3 add x11, x0, x8 x11=1c00922c x8:1c00922c +74622088ns 1314059 1c004128 00900533 add x10, x0, x9 x10=1c008bdc x9:1c008bdc +74622108ns 1314060 1c00412a 3d8000ef jal x1, 984 x1=1c00412c +74622147ns 1314062 1c004502 0105a783 lw x15, 16(x11) x15=1c009368 x11:1c00922c PA:1c00923c +74622187ns 1314064 1c004504 06078063 beq x15, x0, 96 x15:1c009368 +74622207ns 1314065 1c004506 fe010113 addi x2, x2, -32 x2=1c019930 x2:1c019950 +74622226ns 1314066 1c004508 00812c23 sw x8, 24(x2) x8:1c00922c x2:1c019930 PA:1c019948 +74622246ns 1314067 1c00450a 00112e23 sw x1, 28(x2) x1:1c00412c x2:1c019930 PA:1c01994c +74622266ns 1314068 1c00450c 00a00433 add x8, x0, x10 x8=1c008bdc x10:1c008bdc +74622286ns 1314069 1c00450e 00050663 beq x10, x0, 12 x10:1c008bdc +74622306ns 1314070 1c004510 01852783 lw x15, 24(x10) x15=00000001 x10:1c008bdc PA:1c008bf4 +74622345ns 1314072 1c004512 00079463 bne x15, x0, 8 x15:00000001 +74622424ns 1314076 1c00451a 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +74622444ns 1314077 1c00451e a1478793 addi x15, x15, -1516 x15=1c008a14 x15:1c009000 +74622464ns 1314078 1c004522 00f59c63 bne x11, x15, 24 x11:1c00922c x15:1c008a14 +74622543ns 1314082 1c00453a 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +74622563ns 1314083 1c00453e a3478793 addi x15, x15, -1484 x15=1c008a34 x15:1c009000 +74622583ns 1314084 1c004542 00f59463 bne x11, x15, 8 x11:1c00922c x15:1c008a34 +74622662ns 1314088 1c00454a 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +74622682ns 1314089 1c00454e 9f478793 addi x15, x15, -1548 x15=1c0089f4 x15:1c009000 +74622701ns 1314090 1c004552 fcf59be3 bne x11, x15, -42 x11:1c00922c x15:1c0089f4 +74622761ns 1314093 1c004528 00c59783 lh x15, 12(x11) x15=00000089 x11:1c00922c PA:1c009238 +74622800ns 1314095 1c00452c 02078763 beq x15, x0, 46 x15:00000089 +74622820ns 1314096 1c00452e 00800533 add x10, x0, x8 x10=1c008bdc x8:1c008bdc +74622840ns 1314097 1c004530 01812403 lw x8, 24(x2) x8=1c00922c x2:1c019930 PA:1c019948 +74622860ns 1314098 1c004532 01c12083 lw x1, 28(x2) x1=1c00412c x2:1c019930 PA:1c01994c +74622880ns 1314099 1c004534 02010113 addi x2, x2, 32 x2=1c019950 x2:1c019930 +74622899ns 1314100 1c004536 e85ff06f jal x0, -380 +74622959ns 1314103 1c0043ba 00c5d783 lhu x15, 12(x11) x15=00000089 x11:1c00922c PA:1c009238 +74622979ns 1314104 1c0043be fe010113 addi x2, x2, -32 x2=1c019930 x2:1c019950 +74622998ns 1314105 1c0043c0 00812c23 sw x8, 24(x2) x8:1c00922c x2:1c019930 PA:1c019948 +74623018ns 1314106 1c0043c2 00912a23 sw x9, 20(x2) x9:1c008bdc x2:1c019930 PA:1c019944 +74623038ns 1314107 1c0043c4 00112e23 sw x1, 28(x2) x1:1c00412c x2:1c019930 PA:1c01994c +74623058ns 1314108 1c0043c6 01212823 sw x18, 16(x2) x18:0000000a x2:1c019930 PA:1c019940 +74623077ns 1314109 1c0043c8 01312623 sw x19, 12(x2) x19:0000000a x2:1c019930 PA:1c01993c +74623097ns 1314110 1c0043ca 0087f713 andi x14, x15, 8 x14=00000008 x15:00000089 +74623117ns 1314111 1c0043ce 00a004b3 add x9, x0, x10 x9=1c008bdc x10:1c008bdc +74623137ns 1314112 1c0043d0 00b00433 add x8, x0, x11 x8=1c00922c x11:1c00922c +74623157ns 1314113 1c0043d2 0e071363 bne x14, x0, 230 x14:00000008 +74623216ns 1314116 1c0044b8 0105a983 lw x19, 16(x11) x19=1c009368 x11:1c00922c PA:1c00923c +74623256ns 1314118 1c0044bc f20982e3 beq x19, x0, -220 x19:1c009368 +74623275ns 1314119 1c0044c0 0005a903 lw x18, 0(x11) x18=1c009369 x11:1c00922c PA:1c00922c +74623295ns 1314120 1c0044c4 0037f793 andi x15, x15, 3 x15=00000001 x15:00000089 +74623315ns 1314121 1c0044c6 0135a023 sw x19, 0(x11) x19:1c009368 x11:1c00922c PA:1c00922c +74623335ns 1314122 1c0044ca 41390933 sub x18, x18, x19 x18=00000001 x18:1c009369 x19:1c009368 +74623355ns 1314123 1c0044ce 00000713 addi x14, x0, 0 x14=00000000 +74623374ns 1314124 1c0044d0 00079263 bne x15, x0, 4 x15:00000001 +74623434ns 1314127 1c0044d4 00e42423 sw x14, 8(x8) x14:00000000 x8:1c00922c PA:1c009234 +74623454ns 1314128 1c0044d6 f12055e3 bge x0, x18, -246 x18:00000001 +74623473ns 1314129 1c0044da 02842783 lw x15, 40(x8) x15=1c004c5e x8:1c00922c PA:1c009254 +74623493ns 1314130 1c0044dc 02042583 lw x11, 32(x8) x11=1c00922c x8:1c00922c PA:1c00924c +74623513ns 1314131 1c0044de 012006b3 add x13, x0, x18 x13=00000001 x18:00000001 +74623533ns 1314132 1c0044e0 01300633 add x12, x0, x19 x12=1c009368 x19:1c009368 +74623552ns 1314133 1c0044e2 00900533 add x10, x0, x9 x10=1c008bdc x9:1c008bdc +74623572ns 1314134 1c0044e4 000780e7 jalr x1, x15, 0 x1=1c0044e6 x15:1c004c5e +74623632ns 1314137 1c004c5e 00c5d783 lhu x15, 12(x11) x15=00000089 x11:1c00922c PA:1c009238 +74623651ns 1314138 1c004c62 fe010113 addi x2, x2, -32 x2=1c019910 x2:1c019930 +74623671ns 1314139 1c004c64 00812c23 sw x8, 24(x2) x8:1c00922c x2:1c019910 PA:1c019928 +74623691ns 1314140 1c004c66 00912a23 sw x9, 20(x2) x9:1c008bdc x2:1c019910 PA:1c019924 +74623711ns 1314141 1c004c68 01212823 sw x18, 16(x2) x18:00000001 x2:1c019910 PA:1c019920 +74623731ns 1314142 1c004c6a 01312623 sw x19, 12(x2) x19:1c009368 x2:1c019910 PA:1c01991c +74623750ns 1314143 1c004c6c 00112e23 sw x1, 28(x2) x1:1c0044e6 x2:1c019910 PA:1c01992c +74623770ns 1314144 1c004c6e 1007f793 andi x15, x15, 256 x15=00000000 x15:00000089 +74623790ns 1314145 1c004c72 00a004b3 add x9, x0, x10 x9=1c008bdc x10:1c008bdc +74623810ns 1314146 1c004c74 00b00433 add x8, x0, x11 x8=1c00922c x11:1c00922c +74623830ns 1314147 1c004c76 00c00933 add x18, x0, x12 x18=1c009368 x12:1c009368 +74623849ns 1314148 1c004c78 00d009b3 add x19, x0, x13 x19=00000001 x13:00000001 +74623869ns 1314149 1c004c7a 00078663 beq x15, x0, 12 x15:00000000 +74623948ns 1314153 1c004c86 00c45783 lhu x15, 12(x8) x15=00000089 x8:1c00922c PA:1c009238 +74623968ns 1314154 1c004c8a fffff737 lui x14, 0xfffff000 x14=fffff000 +74623988ns 1314155 1c004c8c fff70713 addi x14, x14, -1 x14=ffffefff x14:fffff000 +74624008ns 1314156 1c004c8e 00e7f7b3 and x15, x15, x14 x15=00000089 x15:00000089 x14:ffffefff +74624027ns 1314157 1c004c90 00e41583 lh x11, 14(x8) x11=00000001 x8:1c00922c PA:1c00923a +74624047ns 1314158 1c004c94 00f41623 sh x15, 12(x8) x15:00000089 x8:1c00922c PA:1c009238 +74624067ns 1314159 1c004c98 01812403 lw x8, 24(x2) x8=1c00922c x2:1c019910 PA:1c019928 +74624087ns 1314160 1c004c9a 01c12083 lw x1, 28(x2) x1=1c0044e6 x2:1c019910 PA:1c01992c +74624107ns 1314161 1c004c9c 013006b3 add x13, x0, x19 x13=00000001 x19:00000001 +74624126ns 1314162 1c004c9e 01200633 add x12, x0, x18 x12=1c009368 x18:1c009368 +74624146ns 1314163 1c004ca0 00c12983 lw x19, 12(x2) x19=1c009368 x2:1c019910 PA:1c01991c +74624166ns 1314164 1c004ca2 01012903 lw x18, 16(x2) x18=00000001 x2:1c019910 PA:1c019920 +74624186ns 1314165 1c004ca4 00900533 add x10, x0, x9 x10=1c008bdc x9:1c008bdc +74624206ns 1314166 1c004ca6 01412483 lw x9, 20(x2) x9=1c008bdc x2:1c019910 PA:1c019924 +74624225ns 1314167 1c004ca8 02010113 addi x2, x2, 32 x2=1c019930 x2:1c019910 +74624245ns 1314168 1c004caa 03e0006f jal x0, 62 +74624285ns 1314170 1c004ce8 ff010113 addi x2, x2, -16 x2=1c019920 x2:1c019930 +74624305ns 1314171 1c004cea 00812423 sw x8, 8(x2) x8:1c00922c x2:1c019920 PA:1c019928 +74624324ns 1314172 1c004cec 00912223 sw x9, 4(x2) x9:1c008bdc x2:1c019920 PA:1c019924 +74624344ns 1314173 1c004cee 00a00433 add x8, x0, x10 x8=1c008bdc x10:1c008bdc +74624364ns 1314174 1c004cf0 00b00533 add x10, x0, x11 x10=00000001 x11:00000001 +74624384ns 1314175 1c004cf2 00c005b3 add x11, x0, x12 x11=1c009368 x12:1c009368 +74624404ns 1314176 1c004cf4 00d00633 add x12, x0, x13 x12=00000001 x13:00000001 +74624423ns 1314177 1c004cf6 00112623 sw x1, 12(x2) x1:1c0044e6 x2:1c019920 PA:1c01992c +74624443ns 1314178 1c004cf8 dc01a023 sw x0, -576(x3) x3:1c0093dc PA:1c00919c +74624463ns 1314179 1c004cfc cf7fd0ef jal x1, -8970 x1=1c004d00 +74624503ns 1314181 1c0029f2 fff50513 addi x10, x10, -1 x10=00000000 x10:00000001 +74624522ns 1314182 1c0029f4 00100793 addi x15, x0, 1 x15=00000001 +74624542ns 1314183 1c0029f6 00c58833 add x16, x11, x12 x16=1c009369 x11:1c009368 x12:00000001 +74624562ns 1314184 1c0029fa 00a7eb63 bltu x15, x10, 22 x15:00000001 x10:00000000 +74624582ns 1314185 1c0029fe 000026b7 lui x13, 0x2000 x13=00002000 +74624601ns 1314186 1c002a00 f8068693 addi x13, x13, -128 x13=00001f80 x13:00002000 +74624621ns 1314187 1c002a04 1a10f537 lui x10, 0x1a10f000 x10=1a10f000 +74624641ns 1314188 1c002a08 01059a63 bne x11, x16, 20 x11:1c009368 x16:1c009369 +74624700ns 1314191 1c002a1c 00158593 addi x11, x11, 1 x11=1c009369 x11:1c009368 +74624720ns 1314192 1c002a1e fff5c883 lbu x17, -1(x11) x17=0000000a x11:1c009369 PA:1c009368 +74624740ns 1314193 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +74624760ns 1314194 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +74624780ns 1314195 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +74624799ns 1314196 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +74624819ns 1314197 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +74624839ns 1314198 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +74624859ns 1314199 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +74624879ns 1314200 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +74624898ns 1314201 1c002a38 0117a023 sw x17, 0(x15) x17:0000000a x15:1a10ff80 PA:1a10ff80 +74624918ns 1314202 1c002a3c fcdff06f jal x0, -52 +74625017ns 1314207 1c002a08 01059a63 bne x11, x16, 20 x11:1c009369 x16:1c009369 +74625037ns 1314208 1c002a0c 00c00533 add x10, x0, x12 x10=00000001 x12:00000001 +74625057ns 1314209 1c002a0e 00008067 jalr x0, x1, 0 x1:1c004d00 +74625096ns 1314211 1c004d00 fff00793 addi x15, x0, -1 x15=ffffffff +74625116ns 1314212 1c004d02 00f51663 bne x10, x15, 12 x10:00000001 x15:ffffffff +74625175ns 1314215 1c004d0e 00c12083 lw x1, 12(x2) x1=1c0044e6 x2:1c019920 PA:1c01992c +74625195ns 1314216 1c004d10 00812403 lw x8, 8(x2) x8=1c00922c x2:1c019920 PA:1c019928 +74625215ns 1314217 1c004d12 00412483 lw x9, 4(x2) x9=1c008bdc x2:1c019920 PA:1c019924 +74625235ns 1314218 1c004d14 01010113 addi x2, x2, 16 x2=1c019930 x2:1c019920 +74625255ns 1314219 1c004d16 00008067 jalr x0, x1, 0 x1:1c0044e6 +74625314ns 1314222 1c0044e6 00a04a63 blt x0, x10, 20 x10:00000001 +74625373ns 1314225 1c0044fa 00a989b3 add x19, x19, x10 x19=1c009369 x19:1c009368 x10:00000001 +74625393ns 1314226 1c0044fc 40a90933 sub x18, x18, x10 x18=00000000 x18:00000001 x10:00000001 +74625413ns 1314227 1c004500 fd7ff06f jal x0, -42 +74625472ns 1314230 1c0044d6 f12055e3 bge x0, x18, -246 x18:00000000 +74625532ns 1314233 1c0043e0 00000513 addi x10, x0, 0 x10=00000000 +74625551ns 1314234 1c0043e2 0be0006f jal x0, 190 +74625591ns 1314236 1c0044a0 01c12083 lw x1, 28(x2) x1=1c00412c x2:1c019930 PA:1c01994c +74625611ns 1314237 1c0044a2 01812403 lw x8, 24(x2) x8=1c00922c x2:1c019930 PA:1c019948 +74625631ns 1314238 1c0044a4 01412483 lw x9, 20(x2) x9=1c008bdc x2:1c019930 PA:1c019944 +74625650ns 1314239 1c0044a6 01012903 lw x18, 16(x2) x18=0000000a x2:1c019930 PA:1c019940 +74625670ns 1314240 1c0044a8 00c12983 lw x19, 12(x2) x19=0000000a x2:1c019930 PA:1c01993c +74625690ns 1314241 1c0044aa 02010113 addi x2, x2, 32 x2=1c019950 x2:1c019930 +74625710ns 1314242 1c0044ac 00008067 jalr x0, x1, 0 x1:1c00412c +74625749ns 1314244 1c00412c 02051d63 bne x10, x0, 58 x10:00000000 +74625769ns 1314245 1c00412e 01c12083 lw x1, 28(x2) x1=1c003e52 x2:1c019950 PA:1c01996c +74625789ns 1314246 1c004130 01812403 lw x8, 24(x2) x8=1c00922c x2:1c019950 PA:1c019968 +74625809ns 1314247 1c004132 01412483 lw x9, 20(x2) x9=1c008bdc x2:1c019950 PA:1c019964 +74625829ns 1314248 1c004134 00c12983 lw x19, 12(x2) x19=ffffffff x2:1c019950 PA:1c01995c +74625848ns 1314249 1c004136 01200533 add x10, x0, x18 x10=0000000a x18:0000000a +74625868ns 1314250 1c004138 01012903 lw x18, 16(x2) x18=1c008986 x2:1c019950 PA:1c019960 +74625888ns 1314251 1c00413a 02010113 addi x2, x2, 32 x2=1c019970 x2:1c019950 +74625908ns 1314252 1c00413c 00008067 jalr x0, x1, 0 x1:1c003e52 +74625947ns 1314254 1c003e52 fff00793 addi x15, x0, -1 x15=ffffffff +74625967ns 1314255 1c003e54 02f50863 beq x10, x15, 48 x10:0000000a x15:ffffffff +74625987ns 1314256 1c003e58 00a00513 addi x10, x0, 10 x10=0000000a +74626007ns 1314257 1c003e5a 02c0006f jal x0, 44 +74626046ns 1314259 1c003e86 01c12083 lw x1, 28(x2) x1=1c003772 x2:1c019970 PA:1c01998c +74626066ns 1314260 1c003e88 01812403 lw x8, 24(x2) x8=xxxxxxxx x2:1c019970 PA:1c019988 +74626086ns 1314261 1c003e8a 01412483 lw x9, 20(x2) x9=xxxxxxxx x2:1c019970 PA:1c019984 +74626106ns 1314262 1c003e8c 01012903 lw x18, 16(x2) x18=xxxxxxxx x2:1c019970 PA:1c019980 +74626125ns 1314263 1c003e8e 00c12983 lw x19, 12(x2) x19=xxxxxxxx x2:1c019970 PA:1c01997c +74626145ns 1314264 1c003e90 00812a03 lw x20, 8(x2) x20=xxxxxxxx x2:1c019970 PA:1c019978 +74626165ns 1314265 1c003e92 02010113 addi x2, x2, 32 x2=1c019990 x2:1c019970 +74626185ns 1314266 1c003e94 00008067 jalr x0, x1, 0 x1:1c003772 +74626244ns 1314269 1c003772 1c0095b7 lui x11, 0x1c009000 x11=1c009000 +74626264ns 1314270 1c003776 1c003537 lui x10, 0x1c003000 x10=1c003000 +74626284ns 1314271 1c00377a 00c10793 addi x15, x2, 12 x15=1c01999c x2:1c019990 +74626304ns 1314272 1c00377c 00100713 addi x14, x0, 1 x14=00000001 +74626323ns 1314273 1c00377e 00000693 addi x13, x0, 0 x13=00000000 +74626343ns 1314274 1c003780 19000613 addi x12, x0, 400 x12=00000190 +74626363ns 1314275 1c003784 98858593 addi x11, x11, -1656 x11=1c008988 x11:1c009000 +74626383ns 1314276 1c003788 75450513 addi x10, x10, 1876 x10=1c003754 x10:1c003000 +74626403ns 1314277 1c00378c 00012623 sw x0, 12(x2) x2:1c019990 PA:1c01999c +74626422ns 1314278 1c00378e 8bdfe0ef jal x1, -5956 x1=1c003792 +74626462ns 1314280 1c00204a fd010113 addi x2, x2, -48 x2=1c019960 x2:1c019990 +74626482ns 1314281 1c00204c 01312e23 sw x19, 28(x2) x19:xxxxxxxx x2:1c019960 PA:1c01997c +74626501ns 1314282 1c00204e 00261993 slli x19, x12, 0x2 x19=00000640 x12:00000190 +74626521ns 1314283 1c002052 01612823 sw x22, 16(x2) x22:xxxxxxxx x2:1c019960 PA:1c019970 +74626541ns 1314284 1c002054 00a00b33 add x22, x0, x10 x22=1c003754 x10:1c003754 +74626561ns 1314285 1c002056 01300533 add x10, x0, x19 x10=00000640 x19:00000640 +74626581ns 1314286 1c002058 02912223 sw x9, 36(x2) x9:xxxxxxxx x2:1c019960 PA:1c019984 +74626600ns 1314287 1c00205a 03212023 sw x18, 32(x2) x18:xxxxxxxx x2:1c019960 PA:1c019980 +74626620ns 1314288 1c00205c 01512a23 sw x21, 20(x2) x21:xxxxxxxx x2:1c019960 PA:1c019974 +74626640ns 1314289 1c00205e 01712623 sw x23, 12(x2) x23:xxxxxxxx x2:1c019960 PA:1c01996c +74626660ns 1314290 1c002060 02112623 sw x1, 44(x2) x1:1c003792 x2:1c019960 PA:1c01998c +74626680ns 1314291 1c002062 02812423 sw x8, 40(x2) x8:xxxxxxxx x2:1c019960 PA:1c019988 +74626699ns 1314292 1c002064 01412c23 sw x20, 24(x2) x20:xxxxxxxx x2:1c019960 PA:1c019978 +74626719ns 1314293 1c002066 01812423 sw x24, 8(x2) x24:xxxxxxxx x2:1c019960 PA:1c019968 +74626739ns 1314294 1c002068 00b004b3 add x9, x0, x11 x9=1c008988 x11:1c008988 +74626759ns 1314295 1c00206a 00d00bb3 add x23, x0, x13 x23=00000000 x13:00000000 +74626779ns 1314296 1c00206c 00e00933 add x18, x0, x14 x18=00000001 x14:00000001 +74626798ns 1314297 1c00206e 00f00ab3 add x21, x0, x15 x21=1c01999c x15:1c01999c +74626818ns 1314298 1c002070 0fb000ef jal x1, 2298 x1=1c002074 +74626858ns 1314300 1c00296a fe010113 addi x2, x2, -32 x2=1c019940 x2:1c019960 +74626878ns 1314301 1c00296c 00112e23 sw x1, 28(x2) x1:1c002074 x2:1c019940 PA:1c01995c +74626897ns 1314302 1c00296e 00812c23 sw x8, 24(x2) x8:xxxxxxxx x2:1c019940 PA:1c019958 +74626917ns 1314303 1c002970 00a12623 sw x10, 12(x2) x10:00000640 x2:1c019940 PA:1c01994c +74626937ns 1314304 1c002972 8a4ff0ef jal x1, -3932 x1=1c002976 +74626996ns 1314307 1c001a16 d6818793 addi x15, x3, -664 x15=1c009144 x3:1c0093dc +74627016ns 1314308 1c001a1a 0007a703 lw x14, 0(x15) x14=00000000 x15:1c009144 PA:1c009144 +74627056ns 1314310 1c001a1c 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +74627075ns 1314311 1c001a1e 00e7a023 sw x14, 0(x15) x14:00000001 x15:1c009144 PA:1c009144 +74627095ns 1314312 1c001a20 00008067 jalr x0, x1, 0 x1:1c002976 +74627135ns 1314314 1c002976 00c12503 lw x10, 12(x2) x10=00000640 x2:1c019940 PA:1c01994c +74627155ns 1314315 1c002978 791000ef jal x1, 3984 x1=1c00297c +74627194ns 1314317 1c003908 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +74627214ns 1314318 1c00390c 00a005b3 add x11, x0, x10 x11=00000640 x10:00000640 +74627234ns 1314319 1c00390e c447a503 lw x10, -956(x15) x10=1c008bdc x15:1c009000 PA:1c008c44 +74627254ns 1314320 1c003912 0b60006f jal x0, 182 +74627293ns 1314322 1c0039c8 fe010113 addi x2, x2, -32 x2=1c019920 x2:1c019940 +74627313ns 1314323 1c0039ca 00912a23 sw x9, 20(x2) x9:1c008988 x2:1c019920 PA:1c019934 +74627333ns 1314324 1c0039cc 00358493 addi x9, x11, 3 x9=00000643 x11:00000640 +74627353ns 1314325 1c0039d0 ffc4f493 andi x9, x9, -4 x9=00000640 x9:00000643 +74627372ns 1314326 1c0039d2 01212823 sw x18, 16(x2) x18:00000001 x2:1c019920 PA:1c019930 +74627392ns 1314327 1c0039d4 00112e23 sw x1, 28(x2) x1:1c00297c x2:1c019920 PA:1c01993c +74627412ns 1314328 1c0039d6 00812c23 sw x8, 24(x2) x8:xxxxxxxx x2:1c019920 PA:1c019938 +74627432ns 1314329 1c0039d8 01312623 sw x19, 12(x2) x19:00000640 x2:1c019920 PA:1c01992c +74627452ns 1314330 1c0039da 00848493 addi x9, x9, 8 x9=00000648 x9:00000640 +74627471ns 1314331 1c0039dc 00c00793 addi x15, x0, 12 x15=0000000c +74627491ns 1314332 1c0039de 00a00933 add x18, x0, x10 x18=1c008bdc x10:1c008bdc +74627511ns 1314333 1c0039e0 04f4f363 bgeu x9, x15, 70 x9:00000648 x15:0000000c +74627590ns 1314337 1c003a26 fc04d0e3 bge x9, x0, -64 x9:00000648 +74627669ns 1314341 1c0039e6 04b4e263 bltu x9, x11, 68 x9:00000648 x11:00000640 +74627689ns 1314342 1c0039ea 01200533 add x10, x0, x18 x10=1c008bdc x18:1c008bdc +74627709ns 1314343 1c0039ec 87aff0ef jal x1, -3974 x1=1c0039f0 +74627768ns 1314346 1c002a66 fb1fe06f jal x0, -4176 +74627828ns 1314349 1c001a16 d6818793 addi x15, x3, -664 x15=1c009144 x3:1c0093dc +74627847ns 1314350 1c001a1a 0007a703 lw x14, 0(x15) x14=00000001 x15:1c009144 PA:1c009144 +74627887ns 1314352 1c001a1c 00170713 addi x14, x14, 1 x14=00000002 x14:00000001 +74627907ns 1314353 1c001a1e 00e7a023 sw x14, 0(x15) x14:00000002 x15:1c009144 PA:1c009144 +74627927ns 1314354 1c001a20 00008067 jalr x0, x1, 0 x1:1c0039f0 +74627966ns 1314356 1c0039f0 db81a703 lw x14, -584(x3) x14=00000000 x3:1c0093dc PA:1c009194 +74627986ns 1314357 1c0039f4 db818693 addi x13, x3, -584 x13=1c009194 x3:1c0093dc +74628006ns 1314358 1c0039f8 00e00433 add x8, x0, x14 x8=00000000 x14:00000000 +74628025ns 1314359 1c0039fa 04041363 bne x8, x0, 70 x8:00000000 +74628045ns 1314360 1c0039fc dbc18413 addi x8, x3, -580 x8=1c009198 x3:1c0093dc +74628065ns 1314361 1c003a00 00042783 lw x15, 0(x8) x15=1c0091b0 x8:1c009198 PA:1c009198 +74628105ns 1314363 1c003a02 00079563 bne x15, x0, 10 x15:1c0091b0 +74628164ns 1314366 1c003a0c 009005b3 add x11, x0, x9 x11=00000648 x9:00000648 +74628184ns 1314367 1c003a0e 01200533 add x10, x0, x18 x10=1c008bdc x18:1c008bdc +74628204ns 1314368 1c003a10 5cc000ef jal x1, 1484 x1=1c003a12 +74628243ns 1314370 1c003fdc ff010113 addi x2, x2, -16 x2=1c019910 x2:1c019920 +74628263ns 1314371 1c003fde 00812423 sw x8, 8(x2) x8:1c009198 x2:1c019910 PA:1c019918 +74628283ns 1314372 1c003fe0 00912223 sw x9, 4(x2) x9:00000648 x2:1c019910 PA:1c019914 +74628303ns 1314373 1c003fe2 00a00433 add x8, x0, x10 x8=1c008bdc x10:1c008bdc +74628322ns 1314374 1c003fe4 00b00533 add x10, x0, x11 x10=00000648 x11:00000648 +74628342ns 1314375 1c003fe6 00112623 sw x1, 12(x2) x1:1c003a12 x2:1c019910 PA:1c01991c +74628362ns 1314376 1c003fe8 dc01a023 sw x0, -576(x3) x3:1c0093dc PA:1c00919c +74628382ns 1314377 1c003fec a53fe0ef jal x1, -5550 x1=1c003ff0 +74628441ns 1314380 1c002a3e 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +74628461ns 1314381 1c002a42 c3c78793 addi x15, x15, -964 x15=1c008c3c x15:1c009000 +74628481ns 1314382 1c002a46 00a00733 add x14, x0, x10 x14=00000648 x10:00000648 +74628500ns 1314383 1c002a48 0007a503 lw x10, 0(x15) x10=1c00976c x15:1c008c3c PA:1c008c3c +74628520ns 1314384 1c002a4a 1c0196b7 lui x13, 0x1c019000 x13=1c019000 +74628540ns 1314385 1c002a4e 1b068693 addi x13, x13, 432 x13=1c0191b0 x13:1c019000 +74628560ns 1314386 1c002a52 00a70733 add x14, x14, x10 x14=1c009db4 x14:00000648 x10:1c00976c +74628580ns 1314387 1c002a54 00d76763 bltu x14, x13, 14 x14:1c009db4 x13:1c0191b0 +74628639ns 1314390 1c002a62 00e7a023 sw x14, 0(x15) x14:1c009db4 x15:1c008c3c PA:1c008c3c +74628659ns 1314391 1c002a64 00008067 jalr x0, x1, 0 x1:1c003ff0 +74628698ns 1314393 1c003ff0 fff00793 addi x15, x0, -1 x15=ffffffff +74628718ns 1314394 1c003ff2 00f51663 bne x10, x15, 12 x10:1c00976c x15:ffffffff +74628778ns 1314397 1c003ffe 00c12083 lw x1, 12(x2) x1=1c003a12 x2:1c019910 PA:1c01991c +74628797ns 1314398 1c004000 00812403 lw x8, 8(x2) x8=1c009198 x2:1c019910 PA:1c019918 +74628817ns 1314399 1c004002 00412483 lw x9, 4(x2) x9=00000648 x2:1c019910 PA:1c019914 +74628837ns 1314400 1c004004 01010113 addi x2, x2, 16 x2=1c019920 x2:1c019910 +74628857ns 1314401 1c004006 00008067 jalr x0, x1, 0 x1:1c003a12 +74628896ns 1314403 1c003a12 fff00993 addi x19, x0, -1 x19=ffffffff +74628916ns 1314404 1c003a14 07351a63 bne x10, x19, 116 x10:1c00976c x19:ffffffff +74628975ns 1314407 1c003a88 00350413 addi x8, x10, 3 x8=1c00976f x10:1c00976c +74628995ns 1314408 1c003a8c ffc47413 andi x8, x8, -4 x8=1c00976c x8:1c00976f +74629015ns 1314409 1c003a8e fc8502e3 beq x10, x8, -60 x10:1c00976c x8:1c00976c +74629074ns 1314412 1c003a52 00942023 sw x9, 0(x8) x9:00000648 x8:1c00976c PA:1c00976c +74629094ns 1314413 1c003a54 00a0006f jal x0, 10 +74629134ns 1314415 1c003a5e 01200533 add x10, x0, x18 x10=1c008bdc x18:1c008bdc +74629154ns 1314416 1c003a60 80aff0ef jal x1, -4086 x1=1c003a64 +74629213ns 1314419 1c002a6a 8e3ff06f jal x0, -1822 +74629253ns 1314421 1c00234c fc010113 addi x2, x2, -64 x2=1c0198e0 x2:1c019920 +74629272ns 1314422 1c00234e 02812c23 sw x8, 56(x2) x8:1c00976c x2:1c0198e0 PA:1c019918 +74629292ns 1314423 1c002350 d6818413 addi x8, x3, -664 x8=1c009144 x3:1c0093dc +74629312ns 1314424 1c002354 00042783 lw x15, 0(x8) x15=00000002 x8:1c009144 PA:1c009144 +74629332ns 1314425 1c002356 02112e23 sw x1, 60(x2) x1:1c003a64 x2:1c0198e0 PA:1c01991c +74629352ns 1314426 1c002358 02912a23 sw x9, 52(x2) x9:00000648 x2:1c0198e0 PA:1c019914 +74629371ns 1314427 1c00235a 03212823 sw x18, 48(x2) x18:1c008bdc x2:1c0198e0 PA:1c019910 +74629391ns 1314428 1c00235c 03312623 sw x19, 44(x2) x19:ffffffff x2:1c0198e0 PA:1c01990c +74629411ns 1314429 1c00235e 03412423 sw x20, 40(x2) x20:xxxxxxxx x2:1c0198e0 PA:1c019908 +74629431ns 1314430 1c002360 03512223 sw x21, 36(x2) x21:1c01999c x2:1c0198e0 PA:1c019904 +74629451ns 1314431 1c002362 03612023 sw x22, 32(x2) x22:1c003754 x2:1c0198e0 PA:1c019900 +74629470ns 1314432 1c002364 01712e23 sw x23, 28(x2) x23:00000000 x2:1c0198e0 PA:1c0198fc +74629490ns 1314433 1c002366 02079263 bne x15, x0, 36 x15:00000002 +74629569ns 1314437 1c00238a c83ff0ef jal x1, -894 x1=1c00238e +74629609ns 1314439 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +74629688ns 1314443 1c002010 d841a783 lw x15, -636(x3) x15=00000000 x3:1c0093dc PA:1c009160 +74629728ns 1314445 1c002014 00078863 beq x15, x0, 16 x15:00000000 +74629787ns 1314448 1c002024 00008067 jalr x0, x1, 0 x1:1c00238e +74629827ns 1314450 1c00238e 00042783 lw x15, 0(x8) x15=00000002 x8:1c009144 PA:1c009144 +74629866ns 1314452 1c002390 fff78793 addi x15, x15, -1 x15=00000001 x15:00000002 +74629886ns 1314453 1c002392 00f42023 sw x15, 0(x8) x15:00000001 x8:1c009144 PA:1c009144 +74629906ns 1314454 1c002394 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +74629945ns 1314456 1c002396 02078163 beq x15, x0, 34 x15:00000001 +74629965ns 1314457 1c002398 00000513 addi x10, x0, 0 x10=00000000 +74629985ns 1314458 1c00239a 00a12623 sw x10, 12(x2) x10:00000000 x2:1c0198e0 PA:1c0198ec +74630005ns 1314459 1c00239c c8bff0ef jal x1, -886 x1=1c0023a0 +74630064ns 1314462 1c002026 d841a783 lw x15, -636(x3) x15=00000000 x3:1c0093dc PA:1c009160 +74630104ns 1314464 1c00202a 00078f63 beq x15, x0, 30 x15:00000000 +74630163ns 1314467 1c002048 00008067 jalr x0, x1, 0 x1:1c0023a0 +74630203ns 1314469 1c0023a0 03c12083 lw x1, 60(x2) x1=1c003a64 x2:1c0198e0 PA:1c01991c +74630222ns 1314470 1c0023a2 03812403 lw x8, 56(x2) x8=1c00976c x2:1c0198e0 PA:1c019918 +74630242ns 1314471 1c0023a4 00c12503 lw x10, 12(x2) x10=00000000 x2:1c0198e0 PA:1c0198ec +74630262ns 1314472 1c0023a6 03412483 lw x9, 52(x2) x9=00000648 x2:1c0198e0 PA:1c019914 +74630282ns 1314473 1c0023a8 03012903 lw x18, 48(x2) x18=1c008bdc x2:1c0198e0 PA:1c019910 +74630302ns 1314474 1c0023aa 02c12983 lw x19, 44(x2) x19=ffffffff x2:1c0198e0 PA:1c01990c +74630321ns 1314475 1c0023ac 02812a03 lw x20, 40(x2) x20=xxxxxxxx x2:1c0198e0 PA:1c019908 +74630341ns 1314476 1c0023ae 02412a83 lw x21, 36(x2) x21=1c01999c x2:1c0198e0 PA:1c019904 +74630361ns 1314477 1c0023b0 02012b03 lw x22, 32(x2) x22=1c003754 x2:1c0198e0 PA:1c019900 +74630381ns 1314478 1c0023b2 01c12b83 lw x23, 28(x2) x23=00000000 x2:1c0198e0 PA:1c0198fc +74630401ns 1314479 1c0023b4 04010113 addi x2, x2, 64 x2=1c019920 x2:1c0198e0 +74630420ns 1314480 1c0023b6 00008067 jalr x0, x1, 0 x1:1c003a64 +74630460ns 1314482 1c003a64 00b40513 addi x10, x8, 11 x10=1c009777 x8:1c00976c +74630480ns 1314483 1c003a68 00440793 addi x15, x8, 4 x15=1c009770 x8:1c00976c +74630499ns 1314484 1c003a6c ff857513 andi x10, x10, -8 x10=1c009770 x10:1c009777 +74630519ns 1314485 1c003a6e 40f50733 sub x14, x10, x15 x14=00000000 x10:1c009770 x15:1c009770 +74630539ns 1314486 1c003a72 fcf500e3 beq x10, x15, -64 x10:1c009770 x15:1c009770 +74630598ns 1314489 1c003a32 01c12083 lw x1, 28(x2) x1=1c00297c x2:1c019920 PA:1c01993c +74630618ns 1314490 1c003a34 01812403 lw x8, 24(x2) x8=xxxxxxxx x2:1c019920 PA:1c019938 +74630638ns 1314491 1c003a36 01412483 lw x9, 20(x2) x9=1c008988 x2:1c019920 PA:1c019934 +74630658ns 1314492 1c003a38 01012903 lw x18, 16(x2) x18=00000001 x2:1c019920 PA:1c019930 +74630678ns 1314493 1c003a3a 00c12983 lw x19, 12(x2) x19=00000640 x2:1c019920 PA:1c01992c +74630697ns 1314494 1c003a3c 02010113 addi x2, x2, 32 x2=1c019940 x2:1c019920 +74630717ns 1314495 1c003a3e 00008067 jalr x0, x1, 0 x1:1c00297c +74630757ns 1314497 1c00297c 00a00433 add x8, x0, x10 x8=1c009770 x10:1c009770 +74630777ns 1314498 1c00297e 9cfff0ef jal x1, -1586 x1=1c002982 +74630816ns 1314500 1c00234c fc010113 addi x2, x2, -64 x2=1c019900 x2:1c019940 +74630836ns 1314501 1c00234e 02812c23 sw x8, 56(x2) x8:1c009770 x2:1c019900 PA:1c019938 +74630856ns 1314502 1c002350 d6818413 addi x8, x3, -664 x8=1c009144 x3:1c0093dc +74630876ns 1314503 1c002354 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +74630895ns 1314504 1c002356 02112e23 sw x1, 60(x2) x1:1c002982 x2:1c019900 PA:1c01993c +74630915ns 1314505 1c002358 02912a23 sw x9, 52(x2) x9:1c008988 x2:1c019900 PA:1c019934 +74630935ns 1314506 1c00235a 03212823 sw x18, 48(x2) x18:00000001 x2:1c019900 PA:1c019930 +74630955ns 1314507 1c00235c 03312623 sw x19, 44(x2) x19:00000640 x2:1c019900 PA:1c01992c +74630974ns 1314508 1c00235e 03412423 sw x20, 40(x2) x20:xxxxxxxx x2:1c019900 PA:1c019928 +74630994ns 1314509 1c002360 03512223 sw x21, 36(x2) x21:1c01999c x2:1c019900 PA:1c019924 +74631014ns 1314510 1c002362 03612023 sw x22, 32(x2) x22:1c003754 x2:1c019900 PA:1c019920 +74631034ns 1314511 1c002364 01712e23 sw x23, 28(x2) x23:00000000 x2:1c019900 PA:1c01991c +74631054ns 1314512 1c002366 02079263 bne x15, x0, 36 x15:00000001 +74631133ns 1314516 1c00238a c83ff0ef jal x1, -894 x1=1c00238e +74631172ns 1314518 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +74631252ns 1314522 1c002010 d841a783 lw x15, -636(x3) x15=00000000 x3:1c0093dc PA:1c009160 +74631291ns 1314524 1c002014 00078863 beq x15, x0, 16 x15:00000000 +74631351ns 1314527 1c002024 00008067 jalr x0, x1, 0 x1:1c00238e +74631390ns 1314529 1c00238e 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +74631430ns 1314531 1c002390 fff78793 addi x15, x15, -1 x15=00000000 x15:00000001 +74631449ns 1314532 1c002392 00f42023 sw x15, 0(x8) x15:00000000 x8:1c009144 PA:1c009144 +74631469ns 1314533 1c002394 00042783 lw x15, 0(x8) x15=00000000 x8:1c009144 PA:1c009144 +74631509ns 1314535 1c002396 02078163 beq x15, x0, 34 x15:00000000 +74631568ns 1314538 1c0023b8 d601a783 lw x15, -672(x3) x15=00000000 x3:1c0093dc PA:1c00913c +74631608ns 1314540 1c0023bc fc078ee3 beq x15, x0, -36 x15:00000000 +74631667ns 1314543 1c002398 00000513 addi x10, x0, 0 x10=00000000 +74631687ns 1314544 1c00239a 00a12623 sw x10, 12(x2) x10:00000000 x2:1c019900 PA:1c01990c +74631707ns 1314545 1c00239c c8bff0ef jal x1, -886 x1=1c0023a0 +74631766ns 1314548 1c002026 d841a783 lw x15, -636(x3) x15=00000000 x3:1c0093dc PA:1c009160 +74631806ns 1314550 1c00202a 00078f63 beq x15, x0, 30 x15:00000000 +74631865ns 1314553 1c002048 00008067 jalr x0, x1, 0 x1:1c0023a0 +74631905ns 1314555 1c0023a0 03c12083 lw x1, 60(x2) x1=1c002982 x2:1c019900 PA:1c01993c +74631925ns 1314556 1c0023a2 03812403 lw x8, 56(x2) x8=1c009770 x2:1c019900 PA:1c019938 +74631944ns 1314557 1c0023a4 00c12503 lw x10, 12(x2) x10=00000000 x2:1c019900 PA:1c01990c +74631964ns 1314558 1c0023a6 03412483 lw x9, 52(x2) x9=1c008988 x2:1c019900 PA:1c019934 +74631984ns 1314559 1c0023a8 03012903 lw x18, 48(x2) x18=00000001 x2:1c019900 PA:1c019930 +74632004ns 1314560 1c0023aa 02c12983 lw x19, 44(x2) x19=00000640 x2:1c019900 PA:1c01992c +74632023ns 1314561 1c0023ac 02812a03 lw x20, 40(x2) x20=xxxxxxxx x2:1c019900 PA:1c019928 +74632043ns 1314562 1c0023ae 02412a83 lw x21, 36(x2) x21=1c01999c x2:1c019900 PA:1c019924 +74632063ns 1314563 1c0023b0 02012b03 lw x22, 32(x2) x22=1c003754 x2:1c019900 PA:1c019920 +74632083ns 1314564 1c0023b2 01c12b83 lw x23, 28(x2) x23=00000000 x2:1c019900 PA:1c01991c +74632103ns 1314565 1c0023b4 04010113 addi x2, x2, 64 x2=1c019940 x2:1c019900 +74632122ns 1314566 1c0023b6 00008067 jalr x0, x1, 0 x1:1c002982 +74632162ns 1314568 1c002982 00041363 bne x8, x0, 6 x8:1c009770 +74632221ns 1314571 1c002988 01c12083 lw x1, 28(x2) x1=1c002074 x2:1c019940 PA:1c01995c +74632241ns 1314572 1c00298a 00800533 add x10, x0, x8 x10=1c009770 x8:1c009770 +74632261ns 1314573 1c00298c 01812403 lw x8, 24(x2) x8=xxxxxxxx x2:1c019940 PA:1c019958 +74632281ns 1314574 1c00298e 02010113 addi x2, x2, 32 x2=1c019960 x2:1c019940 +74632301ns 1314575 1c002990 00008067 jalr x0, x1, 0 x1:1c002074 +74632340ns 1314577 1c002074 02050963 beq x10, x0, 50 x10:1c009770 +74632360ns 1314578 1c002076 00a00a33 add x20, x0, x10 x20=1c009770 x10:1c009770 +74632380ns 1314579 1c002078 48800513 addi x10, x0, 1160 x10=00000488 +74632400ns 1314580 1c00207c 0ef000ef jal x1, 2286 x1=1c002080 +74632439ns 1314582 1c00296a fe010113 addi x2, x2, -32 x2=1c019940 x2:1c019960 +74632459ns 1314583 1c00296c 00112e23 sw x1, 28(x2) x1:1c002080 x2:1c019940 PA:1c01995c +74632479ns 1314584 1c00296e 00812c23 sw x8, 24(x2) x8:xxxxxxxx x2:1c019940 PA:1c019958 +74632498ns 1314585 1c002970 00a12623 sw x10, 12(x2) x10:00000488 x2:1c019940 PA:1c01994c +74632518ns 1314586 1c002972 8a4ff0ef jal x1, -3932 x1=1c002976 +74632578ns 1314589 1c001a16 d6818793 addi x15, x3, -664 x15=1c009144 x3:1c0093dc +74632597ns 1314590 1c001a1a 0007a703 lw x14, 0(x15) x14=00000000 x15:1c009144 PA:1c009144 +74632637ns 1314592 1c001a1c 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +74632657ns 1314593 1c001a1e 00e7a023 sw x14, 0(x15) x14:00000001 x15:1c009144 PA:1c009144 +74632677ns 1314594 1c001a20 00008067 jalr x0, x1, 0 x1:1c002976 +74632716ns 1314596 1c002976 00c12503 lw x10, 12(x2) x10=00000488 x2:1c019940 PA:1c01994c +74632736ns 1314597 1c002978 791000ef jal x1, 3984 x1=1c00297c +74632776ns 1314599 1c003908 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +74632795ns 1314600 1c00390c 00a005b3 add x11, x0, x10 x11=00000488 x10:00000488 +74632815ns 1314601 1c00390e c447a503 lw x10, -956(x15) x10=1c008bdc x15:1c009000 PA:1c008c44 +74632835ns 1314602 1c003912 0b60006f jal x0, 182 +74632875ns 1314604 1c0039c8 fe010113 addi x2, x2, -32 x2=1c019920 x2:1c019940 +74632894ns 1314605 1c0039ca 00912a23 sw x9, 20(x2) x9:1c008988 x2:1c019920 PA:1c019934 +74632914ns 1314606 1c0039cc 00358493 addi x9, x11, 3 x9=0000048b x11:00000488 +74632934ns 1314607 1c0039d0 ffc4f493 andi x9, x9, -4 x9=00000488 x9:0000048b +74632954ns 1314608 1c0039d2 01212823 sw x18, 16(x2) x18:00000001 x2:1c019920 PA:1c019930 +74632973ns 1314609 1c0039d4 00112e23 sw x1, 28(x2) x1:1c00297c x2:1c019920 PA:1c01993c +74632993ns 1314610 1c0039d6 00812c23 sw x8, 24(x2) x8:xxxxxxxx x2:1c019920 PA:1c019938 +74633013ns 1314611 1c0039d8 01312623 sw x19, 12(x2) x19:00000640 x2:1c019920 PA:1c01992c +74633033ns 1314612 1c0039da 00848493 addi x9, x9, 8 x9=00000490 x9:00000488 +74633053ns 1314613 1c0039dc 00c00793 addi x15, x0, 12 x15=0000000c +74633072ns 1314614 1c0039de 00a00933 add x18, x0, x10 x18=1c008bdc x10:1c008bdc +74633092ns 1314615 1c0039e0 04f4f363 bgeu x9, x15, 70 x9:00000490 x15:0000000c +74633171ns 1314619 1c003a26 fc04d0e3 bge x9, x0, -64 x9:00000490 +74633251ns 1314623 1c0039e6 04b4e263 bltu x9, x11, 68 x9:00000490 x11:00000488 +74633270ns 1314624 1c0039ea 01200533 add x10, x0, x18 x10=1c008bdc x18:1c008bdc +74633290ns 1314625 1c0039ec 87aff0ef jal x1, -3974 x1=1c0039f0 +74633350ns 1314628 1c002a66 fb1fe06f jal x0, -4176 +74633409ns 1314631 1c001a16 d6818793 addi x15, x3, -664 x15=1c009144 x3:1c0093dc +74633429ns 1314632 1c001a1a 0007a703 lw x14, 0(x15) x14=00000001 x15:1c009144 PA:1c009144 +74633468ns 1314634 1c001a1c 00170713 addi x14, x14, 1 x14=00000002 x14:00000001 +74633488ns 1314635 1c001a1e 00e7a023 sw x14, 0(x15) x14:00000002 x15:1c009144 PA:1c009144 +74633508ns 1314636 1c001a20 00008067 jalr x0, x1, 0 x1:1c0039f0 +74633547ns 1314638 1c0039f0 db81a703 lw x14, -584(x3) x14=00000000 x3:1c0093dc PA:1c009194 +74633567ns 1314639 1c0039f4 db818693 addi x13, x3, -584 x13=1c009194 x3:1c0093dc +74633587ns 1314640 1c0039f8 00e00433 add x8, x0, x14 x8=00000000 x14:00000000 +74633607ns 1314641 1c0039fa 04041363 bne x8, x0, 70 x8:00000000 +74633627ns 1314642 1c0039fc dbc18413 addi x8, x3, -580 x8=1c009198 x3:1c0093dc +74633646ns 1314643 1c003a00 00042783 lw x15, 0(x8) x15=1c0091b0 x8:1c009198 PA:1c009198 +74633686ns 1314645 1c003a02 00079563 bne x15, x0, 10 x15:1c0091b0 +74633745ns 1314648 1c003a0c 009005b3 add x11, x0, x9 x11=00000490 x9:00000490 +74633765ns 1314649 1c003a0e 01200533 add x10, x0, x18 x10=1c008bdc x18:1c008bdc +74633785ns 1314650 1c003a10 5cc000ef jal x1, 1484 x1=1c003a12 +74633825ns 1314652 1c003fdc ff010113 addi x2, x2, -16 x2=1c019910 x2:1c019920 +74633844ns 1314653 1c003fde 00812423 sw x8, 8(x2) x8:1c009198 x2:1c019910 PA:1c019918 +74633864ns 1314654 1c003fe0 00912223 sw x9, 4(x2) x9:00000490 x2:1c019910 PA:1c019914 +74633884ns 1314655 1c003fe2 00a00433 add x8, x0, x10 x8=1c008bdc x10:1c008bdc +74633904ns 1314656 1c003fe4 00b00533 add x10, x0, x11 x10=00000490 x11:00000490 +74633923ns 1314657 1c003fe6 00112623 sw x1, 12(x2) x1:1c003a12 x2:1c019910 PA:1c01991c +74633943ns 1314658 1c003fe8 dc01a023 sw x0, -576(x3) x3:1c0093dc PA:1c00919c +74633963ns 1314659 1c003fec a53fe0ef jal x1, -5550 x1=1c003ff0 +74634022ns 1314662 1c002a3e 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +74634042ns 1314663 1c002a42 c3c78793 addi x15, x15, -964 x15=1c008c3c x15:1c009000 +74634062ns 1314664 1c002a46 00a00733 add x14, x0, x10 x14=00000490 x10:00000490 +74634082ns 1314665 1c002a48 0007a503 lw x10, 0(x15) x10=1c009db4 x15:1c008c3c PA:1c008c3c +74634102ns 1314666 1c002a4a 1c0196b7 lui x13, 0x1c019000 x13=1c019000 +74634121ns 1314667 1c002a4e 1b068693 addi x13, x13, 432 x13=1c0191b0 x13:1c019000 +74634141ns 1314668 1c002a52 00a70733 add x14, x14, x10 x14=1c00a244 x14:00000490 x10:1c009db4 +74634161ns 1314669 1c002a54 00d76763 bltu x14, x13, 14 x14:1c00a244 x13:1c0191b0 +74634220ns 1314672 1c002a62 00e7a023 sw x14, 0(x15) x14:1c00a244 x15:1c008c3c PA:1c008c3c +74634240ns 1314673 1c002a64 00008067 jalr x0, x1, 0 x1:1c003ff0 +74634280ns 1314675 1c003ff0 fff00793 addi x15, x0, -1 x15=ffffffff +74634300ns 1314676 1c003ff2 00f51663 bne x10, x15, 12 x10:1c009db4 x15:ffffffff +74634359ns 1314679 1c003ffe 00c12083 lw x1, 12(x2) x1=1c003a12 x2:1c019910 PA:1c01991c +74634379ns 1314680 1c004000 00812403 lw x8, 8(x2) x8=1c009198 x2:1c019910 PA:1c019918 +74634399ns 1314681 1c004002 00412483 lw x9, 4(x2) x9=00000490 x2:1c019910 PA:1c019914 +74634418ns 1314682 1c004004 01010113 addi x2, x2, 16 x2=1c019920 x2:1c019910 +74634438ns 1314683 1c004006 00008067 jalr x0, x1, 0 x1:1c003a12 +74634478ns 1314685 1c003a12 fff00993 addi x19, x0, -1 x19=ffffffff +74634497ns 1314686 1c003a14 07351a63 bne x10, x19, 116 x10:1c009db4 x19:ffffffff +74634557ns 1314689 1c003a88 00350413 addi x8, x10, 3 x8=1c009db7 x10:1c009db4 +74634577ns 1314690 1c003a8c ffc47413 andi x8, x8, -4 x8=1c009db4 x8:1c009db7 +74634596ns 1314691 1c003a8e fc8502e3 beq x10, x8, -60 x10:1c009db4 x8:1c009db4 +74634656ns 1314694 1c003a52 00942023 sw x9, 0(x8) x9:00000490 x8:1c009db4 PA:1c009db4 +74634676ns 1314695 1c003a54 00a0006f jal x0, 10 +74634715ns 1314697 1c003a5e 01200533 add x10, x0, x18 x10=1c008bdc x18:1c008bdc +74634735ns 1314698 1c003a60 80aff0ef jal x1, -4086 x1=1c003a64 +74634794ns 1314701 1c002a6a 8e3ff06f jal x0, -1822 +74634834ns 1314703 1c00234c fc010113 addi x2, x2, -64 x2=1c0198e0 x2:1c019920 +74634854ns 1314704 1c00234e 02812c23 sw x8, 56(x2) x8:1c009db4 x2:1c0198e0 PA:1c019918 +74634874ns 1314705 1c002350 d6818413 addi x8, x3, -664 x8=1c009144 x3:1c0093dc +74634893ns 1314706 1c002354 00042783 lw x15, 0(x8) x15=00000002 x8:1c009144 PA:1c009144 +74634913ns 1314707 1c002356 02112e23 sw x1, 60(x2) x1:1c003a64 x2:1c0198e0 PA:1c01991c +74634933ns 1314708 1c002358 02912a23 sw x9, 52(x2) x9:00000490 x2:1c0198e0 PA:1c019914 +74634953ns 1314709 1c00235a 03212823 sw x18, 48(x2) x18:1c008bdc x2:1c0198e0 PA:1c019910 +74634972ns 1314710 1c00235c 03312623 sw x19, 44(x2) x19:ffffffff x2:1c0198e0 PA:1c01990c +74634992ns 1314711 1c00235e 03412423 sw x20, 40(x2) x20:1c009770 x2:1c0198e0 PA:1c019908 +74635012ns 1314712 1c002360 03512223 sw x21, 36(x2) x21:1c01999c x2:1c0198e0 PA:1c019904 +74635032ns 1314713 1c002362 03612023 sw x22, 32(x2) x22:1c003754 x2:1c0198e0 PA:1c019900 +74635052ns 1314714 1c002364 01712e23 sw x23, 28(x2) x23:00000000 x2:1c0198e0 PA:1c0198fc +74635071ns 1314715 1c002366 02079263 bne x15, x0, 36 x15:00000002 +74635151ns 1314719 1c00238a c83ff0ef jal x1, -894 x1=1c00238e +74635190ns 1314721 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +74635269ns 1314725 1c002010 d841a783 lw x15, -636(x3) x15=00000000 x3:1c0093dc PA:1c009160 +74635309ns 1314727 1c002014 00078863 beq x15, x0, 16 x15:00000000 +74635368ns 1314730 1c002024 00008067 jalr x0, x1, 0 x1:1c00238e +74635408ns 1314732 1c00238e 00042783 lw x15, 0(x8) x15=00000002 x8:1c009144 PA:1c009144 +74635447ns 1314734 1c002390 fff78793 addi x15, x15, -1 x15=00000001 x15:00000002 +74635467ns 1314735 1c002392 00f42023 sw x15, 0(x8) x15:00000001 x8:1c009144 PA:1c009144 +74635487ns 1314736 1c002394 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +74635527ns 1314738 1c002396 02078163 beq x15, x0, 34 x15:00000001 +74635546ns 1314739 1c002398 00000513 addi x10, x0, 0 x10=00000000 +74635566ns 1314740 1c00239a 00a12623 sw x10, 12(x2) x10:00000000 x2:1c0198e0 PA:1c0198ec +74635586ns 1314741 1c00239c c8bff0ef jal x1, -886 x1=1c0023a0 +74635645ns 1314744 1c002026 d841a783 lw x15, -636(x3) x15=00000000 x3:1c0093dc PA:1c009160 +74635685ns 1314746 1c00202a 00078f63 beq x15, x0, 30 x15:00000000 +74635744ns 1314749 1c002048 00008067 jalr x0, x1, 0 x1:1c0023a0 +74635784ns 1314751 1c0023a0 03c12083 lw x1, 60(x2) x1=1c003a64 x2:1c0198e0 PA:1c01991c +74635804ns 1314752 1c0023a2 03812403 lw x8, 56(x2) x8=1c009db4 x2:1c0198e0 PA:1c019918 +74635824ns 1314753 1c0023a4 00c12503 lw x10, 12(x2) x10=00000000 x2:1c0198e0 PA:1c0198ec +74635843ns 1314754 1c0023a6 03412483 lw x9, 52(x2) x9=00000490 x2:1c0198e0 PA:1c019914 +74635863ns 1314755 1c0023a8 03012903 lw x18, 48(x2) x18=1c008bdc x2:1c0198e0 PA:1c019910 +74635883ns 1314756 1c0023aa 02c12983 lw x19, 44(x2) x19=ffffffff x2:1c0198e0 PA:1c01990c +74635903ns 1314757 1c0023ac 02812a03 lw x20, 40(x2) x20=1c009770 x2:1c0198e0 PA:1c019908 +74635922ns 1314758 1c0023ae 02412a83 lw x21, 36(x2) x21=1c01999c x2:1c0198e0 PA:1c019904 +74635942ns 1314759 1c0023b0 02012b03 lw x22, 32(x2) x22=1c003754 x2:1c0198e0 PA:1c019900 +74635962ns 1314760 1c0023b2 01c12b83 lw x23, 28(x2) x23=00000000 x2:1c0198e0 PA:1c0198fc +74635982ns 1314761 1c0023b4 04010113 addi x2, x2, 64 x2=1c019920 x2:1c0198e0 +74636002ns 1314762 1c0023b6 00008067 jalr x0, x1, 0 x1:1c003a64 +74636041ns 1314764 1c003a64 00b40513 addi x10, x8, 11 x10=1c009dbf x8:1c009db4 +74636061ns 1314765 1c003a68 00440793 addi x15, x8, 4 x15=1c009db8 x8:1c009db4 +74636081ns 1314766 1c003a6c ff857513 andi x10, x10, -8 x10=1c009db8 x10:1c009dbf +74636101ns 1314767 1c003a6e 40f50733 sub x14, x10, x15 x14=00000000 x10:1c009db8 x15:1c009db8 +74636120ns 1314768 1c003a72 fcf500e3 beq x10, x15, -64 x10:1c009db8 x15:1c009db8 +74636180ns 1314771 1c003a32 01c12083 lw x1, 28(x2) x1=1c00297c x2:1c019920 PA:1c01993c +74636200ns 1314772 1c003a34 01812403 lw x8, 24(x2) x8=xxxxxxxx x2:1c019920 PA:1c019938 +74636219ns 1314773 1c003a36 01412483 lw x9, 20(x2) x9=1c008988 x2:1c019920 PA:1c019934 +74636239ns 1314774 1c003a38 01012903 lw x18, 16(x2) x18=00000001 x2:1c019920 PA:1c019930 +74636259ns 1314775 1c003a3a 00c12983 lw x19, 12(x2) x19=00000640 x2:1c019920 PA:1c01992c +74636279ns 1314776 1c003a3c 02010113 addi x2, x2, 32 x2=1c019940 x2:1c019920 +74636299ns 1314777 1c003a3e 00008067 jalr x0, x1, 0 x1:1c00297c +74636338ns 1314779 1c00297c 00a00433 add x8, x0, x10 x8=1c009db8 x10:1c009db8 +74636358ns 1314780 1c00297e 9cfff0ef jal x1, -1586 x1=1c002982 +74636397ns 1314782 1c00234c fc010113 addi x2, x2, -64 x2=1c019900 x2:1c019940 +74636417ns 1314783 1c00234e 02812c23 sw x8, 56(x2) x8:1c009db8 x2:1c019900 PA:1c019938 +74636437ns 1314784 1c002350 d6818413 addi x8, x3, -664 x8=1c009144 x3:1c0093dc +74636457ns 1314785 1c002354 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +74636477ns 1314786 1c002356 02112e23 sw x1, 60(x2) x1:1c002982 x2:1c019900 PA:1c01993c +74636496ns 1314787 1c002358 02912a23 sw x9, 52(x2) x9:1c008988 x2:1c019900 PA:1c019934 +74636516ns 1314788 1c00235a 03212823 sw x18, 48(x2) x18:00000001 x2:1c019900 PA:1c019930 +74636536ns 1314789 1c00235c 03312623 sw x19, 44(x2) x19:00000640 x2:1c019900 PA:1c01992c +74636556ns 1314790 1c00235e 03412423 sw x20, 40(x2) x20:1c009770 x2:1c019900 PA:1c019928 +74636576ns 1314791 1c002360 03512223 sw x21, 36(x2) x21:1c01999c x2:1c019900 PA:1c019924 +74636595ns 1314792 1c002362 03612023 sw x22, 32(x2) x22:1c003754 x2:1c019900 PA:1c019920 +74636615ns 1314793 1c002364 01712e23 sw x23, 28(x2) x23:00000000 x2:1c019900 PA:1c01991c +74636635ns 1314794 1c002366 02079263 bne x15, x0, 36 x15:00000001 +74636714ns 1314798 1c00238a c83ff0ef jal x1, -894 x1=1c00238e +74636754ns 1314800 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +74636833ns 1314804 1c002010 d841a783 lw x15, -636(x3) x15=00000000 x3:1c0093dc PA:1c009160 +74636873ns 1314806 1c002014 00078863 beq x15, x0, 16 x15:00000000 +74636932ns 1314809 1c002024 00008067 jalr x0, x1, 0 x1:1c00238e +74636971ns 1314811 1c00238e 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +74637011ns 1314813 1c002390 fff78793 addi x15, x15, -1 x15=00000000 x15:00000001 +74637031ns 1314814 1c002392 00f42023 sw x15, 0(x8) x15:00000000 x8:1c009144 PA:1c009144 +74637051ns 1314815 1c002394 00042783 lw x15, 0(x8) x15=00000000 x8:1c009144 PA:1c009144 +74637090ns 1314817 1c002396 02078163 beq x15, x0, 34 x15:00000000 +74637150ns 1314820 1c0023b8 d601a783 lw x15, -672(x3) x15=00000000 x3:1c0093dc PA:1c00913c +74637189ns 1314822 1c0023bc fc078ee3 beq x15, x0, -36 x15:00000000 +74637249ns 1314825 1c002398 00000513 addi x10, x0, 0 x10=00000000 +74637268ns 1314826 1c00239a 00a12623 sw x10, 12(x2) x10:00000000 x2:1c019900 PA:1c01990c +74637288ns 1314827 1c00239c c8bff0ef jal x1, -886 x1=1c0023a0 +74637348ns 1314830 1c002026 d841a783 lw x15, -636(x3) x15=00000000 x3:1c0093dc PA:1c009160 +74637387ns 1314832 1c00202a 00078f63 beq x15, x0, 30 x15:00000000 +74637446ns 1314835 1c002048 00008067 jalr x0, x1, 0 x1:1c0023a0 +74637486ns 1314837 1c0023a0 03c12083 lw x1, 60(x2) x1=1c002982 x2:1c019900 PA:1c01993c +74637506ns 1314838 1c0023a2 03812403 lw x8, 56(x2) x8=1c009db8 x2:1c019900 PA:1c019938 +74637526ns 1314839 1c0023a4 00c12503 lw x10, 12(x2) x10=00000000 x2:1c019900 PA:1c01990c +74637545ns 1314840 1c0023a6 03412483 lw x9, 52(x2) x9=1c008988 x2:1c019900 PA:1c019934 +74637565ns 1314841 1c0023a8 03012903 lw x18, 48(x2) x18=00000001 x2:1c019900 PA:1c019930 +74637585ns 1314842 1c0023aa 02c12983 lw x19, 44(x2) x19=00000640 x2:1c019900 PA:1c01992c +74637605ns 1314843 1c0023ac 02812a03 lw x20, 40(x2) x20=1c009770 x2:1c019900 PA:1c019928 +74637625ns 1314844 1c0023ae 02412a83 lw x21, 36(x2) x21=1c01999c x2:1c019900 PA:1c019924 +74637644ns 1314845 1c0023b0 02012b03 lw x22, 32(x2) x22=1c003754 x2:1c019900 PA:1c019920 +74637664ns 1314846 1c0023b2 01c12b83 lw x23, 28(x2) x23=00000000 x2:1c019900 PA:1c01991c +74637684ns 1314847 1c0023b4 04010113 addi x2, x2, 64 x2=1c019940 x2:1c019900 +74637704ns 1314848 1c0023b6 00008067 jalr x0, x1, 0 x1:1c002982 +74637743ns 1314850 1c002982 00041363 bne x8, x0, 6 x8:1c009db8 +74637803ns 1314853 1c002988 01c12083 lw x1, 28(x2) x1=1c002080 x2:1c019940 PA:1c01995c +74637823ns 1314854 1c00298a 00800533 add x10, x0, x8 x10=1c009db8 x8:1c009db8 +74637842ns 1314855 1c00298c 01812403 lw x8, 24(x2) x8=xxxxxxxx x2:1c019940 PA:1c019958 +74637862ns 1314856 1c00298e 02010113 addi x2, x2, 32 x2=1c019960 x2:1c019940 +74637882ns 1314857 1c002990 00008067 jalr x0, x1, 0 x1:1c002080 +74637921ns 1314859 1c002080 00a00433 add x8, x0, x10 x8=1c009db8 x10:1c009db8 +74637941ns 1314860 1c002082 00050f63 beq x10, x0, 30 x10:1c009db8 +74637961ns 1314861 1c002084 03452823 sw x20, 48(x10) x20:1c009770 x10:1c009db8 PA:1c009de8 +74637981ns 1314862 1c002088 01300633 add x12, x0, x19 x12=00000640 x19:00000640 +74638001ns 1314863 1c00208a 0a500593 addi x11, x0, 165 x11=000000a5 +74638020ns 1314864 1c00208e 01400533 add x10, x0, x20 x10=1c009770 x20:1c009770 +74638040ns 1314865 1c002090 debfe0ef jal x1, -4630 x1=1c002094 +74638080ns 1314867 1c000e7a 00a00333 add x6, x0, x10 x6=1c009770 x10:1c009770 +74638100ns 1314868 1c000e7c 00060663 beq x12, x0, 12 x12:00000640 +74638119ns 1314869 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009770 PA:1c009770 +74638139ns 1314870 1c000e82 fff60613 addi x12, x12, -1 x12=0000063f x12:00000640 +74638159ns 1314871 1c000e84 00130313 addi x6, x6, 1 x6=1c009771 x6:1c009770 +74638179ns 1314872 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000063f +74638258ns 1314876 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009771 PA:1c009771 +74638278ns 1314877 1c000e82 fff60613 addi x12, x12, -1 x12=0000063e x12:0000063f +74638298ns 1314878 1c000e84 00130313 addi x6, x6, 1 x6=1c009772 x6:1c009771 +74638317ns 1314879 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000063e +74638396ns 1314883 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009772 PA:1c009772 +74638416ns 1314884 1c000e82 fff60613 addi x12, x12, -1 x12=0000063d x12:0000063e +74638436ns 1314885 1c000e84 00130313 addi x6, x6, 1 x6=1c009773 x6:1c009772 +74638456ns 1314886 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000063d +74638535ns 1314890 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009773 PA:1c009773 +74638555ns 1314891 1c000e82 fff60613 addi x12, x12, -1 x12=0000063c x12:0000063d +74638575ns 1314892 1c000e84 00130313 addi x6, x6, 1 x6=1c009774 x6:1c009773 +74638594ns 1314893 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000063c +74638674ns 1314897 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009774 PA:1c009774 +74638693ns 1314898 1c000e82 fff60613 addi x12, x12, -1 x12=0000063b x12:0000063c +74638713ns 1314899 1c000e84 00130313 addi x6, x6, 1 x6=1c009775 x6:1c009774 +74638733ns 1314900 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000063b +74638812ns 1314904 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009775 PA:1c009775 +74638832ns 1314905 1c000e82 fff60613 addi x12, x12, -1 x12=0000063a x12:0000063b +74638852ns 1314906 1c000e84 00130313 addi x6, x6, 1 x6=1c009776 x6:1c009775 +74638871ns 1314907 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000063a +74638951ns 1314911 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009776 PA:1c009776 +74638970ns 1314912 1c000e82 fff60613 addi x12, x12, -1 x12=00000639 x12:0000063a +74638990ns 1314913 1c000e84 00130313 addi x6, x6, 1 x6=1c009777 x6:1c009776 +74639010ns 1314914 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000639 +74639089ns 1314918 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009777 PA:1c009777 +74639109ns 1314919 1c000e82 fff60613 addi x12, x12, -1 x12=00000638 x12:00000639 +74639129ns 1314920 1c000e84 00130313 addi x6, x6, 1 x6=1c009778 x6:1c009777 +74639149ns 1314921 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000638 +74639228ns 1314925 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009778 PA:1c009778 +74639248ns 1314926 1c000e82 fff60613 addi x12, x12, -1 x12=00000637 x12:00000638 +74639267ns 1314927 1c000e84 00130313 addi x6, x6, 1 x6=1c009779 x6:1c009778 +74639287ns 1314928 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000637 +74639366ns 1314932 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009779 PA:1c009779 +74639386ns 1314933 1c000e82 fff60613 addi x12, x12, -1 x12=00000636 x12:00000637 +74639406ns 1314934 1c000e84 00130313 addi x6, x6, 1 x6=1c00977a x6:1c009779 +74639426ns 1314935 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000636 +74639505ns 1314939 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00977a PA:1c00977a +74639525ns 1314940 1c000e82 fff60613 addi x12, x12, -1 x12=00000635 x12:00000636 +74639544ns 1314941 1c000e84 00130313 addi x6, x6, 1 x6=1c00977b x6:1c00977a +74639564ns 1314942 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000635 +74639643ns 1314946 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00977b PA:1c00977b +74639663ns 1314947 1c000e82 fff60613 addi x12, x12, -1 x12=00000634 x12:00000635 +74639683ns 1314948 1c000e84 00130313 addi x6, x6, 1 x6=1c00977c x6:1c00977b +74639703ns 1314949 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000634 +74639782ns 1314953 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00977c PA:1c00977c +74639802ns 1314954 1c000e82 fff60613 addi x12, x12, -1 x12=00000633 x12:00000634 +74639822ns 1314955 1c000e84 00130313 addi x6, x6, 1 x6=1c00977d x6:1c00977c +74639841ns 1314956 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000633 +74639920ns 1314960 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00977d PA:1c00977d +74639940ns 1314961 1c000e82 fff60613 addi x12, x12, -1 x12=00000632 x12:00000633 +74639960ns 1314962 1c000e84 00130313 addi x6, x6, 1 x6=1c00977e x6:1c00977d +74639980ns 1314963 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000632 +74640059ns 1314967 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00977e PA:1c00977e +74640079ns 1314968 1c000e82 fff60613 addi x12, x12, -1 x12=00000631 x12:00000632 +74640099ns 1314969 1c000e84 00130313 addi x6, x6, 1 x6=1c00977f x6:1c00977e +74640118ns 1314970 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000631 +74640198ns 1314974 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00977f PA:1c00977f +74640217ns 1314975 1c000e82 fff60613 addi x12, x12, -1 x12=00000630 x12:00000631 +74640237ns 1314976 1c000e84 00130313 addi x6, x6, 1 x6=1c009780 x6:1c00977f +74640257ns 1314977 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000630 +74640336ns 1314981 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009780 PA:1c009780 +74640356ns 1314982 1c000e82 fff60613 addi x12, x12, -1 x12=0000062f x12:00000630 +74640376ns 1314983 1c000e84 00130313 addi x6, x6, 1 x6=1c009781 x6:1c009780 +74640395ns 1314984 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000062f +74640475ns 1314988 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009781 PA:1c009781 +74640494ns 1314989 1c000e82 fff60613 addi x12, x12, -1 x12=0000062e x12:0000062f +74640514ns 1314990 1c000e84 00130313 addi x6, x6, 1 x6=1c009782 x6:1c009781 +74640534ns 1314991 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000062e +74640613ns 1314995 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009782 PA:1c009782 +74640633ns 1314996 1c000e82 fff60613 addi x12, x12, -1 x12=0000062d x12:0000062e +74640653ns 1314997 1c000e84 00130313 addi x6, x6, 1 x6=1c009783 x6:1c009782 +74640673ns 1314998 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000062d +74640752ns 1315002 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009783 PA:1c009783 +74640772ns 1315003 1c000e82 fff60613 addi x12, x12, -1 x12=0000062c x12:0000062d +74640791ns 1315004 1c000e84 00130313 addi x6, x6, 1 x6=1c009784 x6:1c009783 +74640811ns 1315005 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000062c +74640890ns 1315009 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009784 PA:1c009784 +74640910ns 1315010 1c000e82 fff60613 addi x12, x12, -1 x12=0000062b x12:0000062c +74640930ns 1315011 1c000e84 00130313 addi x6, x6, 1 x6=1c009785 x6:1c009784 +74640950ns 1315012 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000062b +74641029ns 1315016 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009785 PA:1c009785 +74641049ns 1315017 1c000e82 fff60613 addi x12, x12, -1 x12=0000062a x12:0000062b +74641068ns 1315018 1c000e84 00130313 addi x6, x6, 1 x6=1c009786 x6:1c009785 +74641088ns 1315019 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000062a +74641167ns 1315023 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009786 PA:1c009786 +74641187ns 1315024 1c000e82 fff60613 addi x12, x12, -1 x12=00000629 x12:0000062a +74641207ns 1315025 1c000e84 00130313 addi x6, x6, 1 x6=1c009787 x6:1c009786 +74641227ns 1315026 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000629 +74641306ns 1315030 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009787 PA:1c009787 +74641326ns 1315031 1c000e82 fff60613 addi x12, x12, -1 x12=00000628 x12:00000629 +74641345ns 1315032 1c000e84 00130313 addi x6, x6, 1 x6=1c009788 x6:1c009787 +74641365ns 1315033 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000628 +74641444ns 1315037 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009788 PA:1c009788 +74641464ns 1315038 1c000e82 fff60613 addi x12, x12, -1 x12=00000627 x12:00000628 +74641484ns 1315039 1c000e84 00130313 addi x6, x6, 1 x6=1c009789 x6:1c009788 +74641504ns 1315040 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000627 +74641583ns 1315044 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009789 PA:1c009789 +74641603ns 1315045 1c000e82 fff60613 addi x12, x12, -1 x12=00000626 x12:00000627 +74641623ns 1315046 1c000e84 00130313 addi x6, x6, 1 x6=1c00978a x6:1c009789 +74641642ns 1315047 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000626 +74641722ns 1315051 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00978a PA:1c00978a +74641741ns 1315052 1c000e82 fff60613 addi x12, x12, -1 x12=00000625 x12:00000626 +74641761ns 1315053 1c000e84 00130313 addi x6, x6, 1 x6=1c00978b x6:1c00978a +74641781ns 1315054 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000625 +74641860ns 1315058 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00978b PA:1c00978b +74641880ns 1315059 1c000e82 fff60613 addi x12, x12, -1 x12=00000624 x12:00000625 +74641900ns 1315060 1c000e84 00130313 addi x6, x6, 1 x6=1c00978c x6:1c00978b +74641919ns 1315061 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000624 +74641999ns 1315065 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00978c PA:1c00978c +74642018ns 1315066 1c000e82 fff60613 addi x12, x12, -1 x12=00000623 x12:00000624 +74642038ns 1315067 1c000e84 00130313 addi x6, x6, 1 x6=1c00978d x6:1c00978c +74642058ns 1315068 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000623 +74642137ns 1315072 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00978d PA:1c00978d +74642157ns 1315073 1c000e82 fff60613 addi x12, x12, -1 x12=00000622 x12:00000623 +74642177ns 1315074 1c000e84 00130313 addi x6, x6, 1 x6=1c00978e x6:1c00978d +74642197ns 1315075 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000622 +74642276ns 1315079 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00978e PA:1c00978e +74642296ns 1315080 1c000e82 fff60613 addi x12, x12, -1 x12=00000621 x12:00000622 +74642315ns 1315081 1c000e84 00130313 addi x6, x6, 1 x6=1c00978f x6:1c00978e +74642335ns 1315082 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000621 +74642414ns 1315086 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00978f PA:1c00978f +74642434ns 1315087 1c000e82 fff60613 addi x12, x12, -1 x12=00000620 x12:00000621 +74642454ns 1315088 1c000e84 00130313 addi x6, x6, 1 x6=1c009790 x6:1c00978f +74642474ns 1315089 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000620 +74642553ns 1315093 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009790 PA:1c009790 +74642573ns 1315094 1c000e82 fff60613 addi x12, x12, -1 x12=0000061f x12:00000620 +74642592ns 1315095 1c000e84 00130313 addi x6, x6, 1 x6=1c009791 x6:1c009790 +74642612ns 1315096 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000061f +74642691ns 1315100 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009791 PA:1c009791 +74642711ns 1315101 1c000e82 fff60613 addi x12, x12, -1 x12=0000061e x12:0000061f +74642731ns 1315102 1c000e84 00130313 addi x6, x6, 1 x6=1c009792 x6:1c009791 +74642751ns 1315103 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000061e +74642830ns 1315107 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009792 PA:1c009792 +74642850ns 1315108 1c000e82 fff60613 addi x12, x12, -1 x12=0000061d x12:0000061e +74642869ns 1315109 1c000e84 00130313 addi x6, x6, 1 x6=1c009793 x6:1c009792 +74642889ns 1315110 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000061d +74642968ns 1315114 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009793 PA:1c009793 +74642988ns 1315115 1c000e82 fff60613 addi x12, x12, -1 x12=0000061c x12:0000061d +74643008ns 1315116 1c000e84 00130313 addi x6, x6, 1 x6=1c009794 x6:1c009793 +74643028ns 1315117 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000061c +74643107ns 1315121 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009794 PA:1c009794 +74643127ns 1315122 1c000e82 fff60613 addi x12, x12, -1 x12=0000061b x12:0000061c +74643147ns 1315123 1c000e84 00130313 addi x6, x6, 1 x6=1c009795 x6:1c009794 +74643166ns 1315124 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000061b +74643246ns 1315128 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009795 PA:1c009795 +74643265ns 1315129 1c000e82 fff60613 addi x12, x12, -1 x12=0000061a x12:0000061b +74643285ns 1315130 1c000e84 00130313 addi x6, x6, 1 x6=1c009796 x6:1c009795 +74643305ns 1315131 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000061a +74643384ns 1315135 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009796 PA:1c009796 +74643404ns 1315136 1c000e82 fff60613 addi x12, x12, -1 x12=00000619 x12:0000061a +74643424ns 1315137 1c000e84 00130313 addi x6, x6, 1 x6=1c009797 x6:1c009796 +74643443ns 1315138 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000619 +74643523ns 1315142 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009797 PA:1c009797 +74643542ns 1315143 1c000e82 fff60613 addi x12, x12, -1 x12=00000618 x12:00000619 +74643562ns 1315144 1c000e84 00130313 addi x6, x6, 1 x6=1c009798 x6:1c009797 +74643582ns 1315145 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000618 +74643661ns 1315149 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009798 PA:1c009798 +74643681ns 1315150 1c000e82 fff60613 addi x12, x12, -1 x12=00000617 x12:00000618 +74643701ns 1315151 1c000e84 00130313 addi x6, x6, 1 x6=1c009799 x6:1c009798 +74643721ns 1315152 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000617 +74643800ns 1315156 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009799 PA:1c009799 +74643819ns 1315157 1c000e82 fff60613 addi x12, x12, -1 x12=00000616 x12:00000617 +74643839ns 1315158 1c000e84 00130313 addi x6, x6, 1 x6=1c00979a x6:1c009799 +74643859ns 1315159 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000616 +74643938ns 1315163 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00979a PA:1c00979a +74643958ns 1315164 1c000e82 fff60613 addi x12, x12, -1 x12=00000615 x12:00000616 +74643978ns 1315165 1c000e84 00130313 addi x6, x6, 1 x6=1c00979b x6:1c00979a +74643998ns 1315166 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000615 +74644077ns 1315170 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00979b PA:1c00979b +74644097ns 1315171 1c000e82 fff60613 addi x12, x12, -1 x12=00000614 x12:00000615 +74644116ns 1315172 1c000e84 00130313 addi x6, x6, 1 x6=1c00979c x6:1c00979b +74644136ns 1315173 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000614 +74644215ns 1315177 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00979c PA:1c00979c +74644235ns 1315178 1c000e82 fff60613 addi x12, x12, -1 x12=00000613 x12:00000614 +74644255ns 1315179 1c000e84 00130313 addi x6, x6, 1 x6=1c00979d x6:1c00979c +74644275ns 1315180 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000613 +74644354ns 1315184 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00979d PA:1c00979d +74644374ns 1315185 1c000e82 fff60613 addi x12, x12, -1 x12=00000612 x12:00000613 +74644393ns 1315186 1c000e84 00130313 addi x6, x6, 1 x6=1c00979e x6:1c00979d +74644413ns 1315187 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000612 +74644492ns 1315191 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00979e PA:1c00979e +74644512ns 1315192 1c000e82 fff60613 addi x12, x12, -1 x12=00000611 x12:00000612 +74644532ns 1315193 1c000e84 00130313 addi x6, x6, 1 x6=1c00979f x6:1c00979e +74644552ns 1315194 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000611 +74644631ns 1315198 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00979f PA:1c00979f +74644651ns 1315199 1c000e82 fff60613 addi x12, x12, -1 x12=00000610 x12:00000611 +74644671ns 1315200 1c000e84 00130313 addi x6, x6, 1 x6=1c0097a0 x6:1c00979f +74644690ns 1315201 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000610 +74644770ns 1315205 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097a0 PA:1c0097a0 +74644789ns 1315206 1c000e82 fff60613 addi x12, x12, -1 x12=0000060f x12:00000610 +74644809ns 1315207 1c000e84 00130313 addi x6, x6, 1 x6=1c0097a1 x6:1c0097a0 +74644829ns 1315208 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000060f +74644908ns 1315212 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097a1 PA:1c0097a1 +74644928ns 1315213 1c000e82 fff60613 addi x12, x12, -1 x12=0000060e x12:0000060f +74644948ns 1315214 1c000e84 00130313 addi x6, x6, 1 x6=1c0097a2 x6:1c0097a1 +74644967ns 1315215 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000060e +74645047ns 1315219 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097a2 PA:1c0097a2 +74645066ns 1315220 1c000e82 fff60613 addi x12, x12, -1 x12=0000060d x12:0000060e +74645086ns 1315221 1c000e84 00130313 addi x6, x6, 1 x6=1c0097a3 x6:1c0097a2 +74645106ns 1315222 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000060d +74645185ns 1315226 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097a3 PA:1c0097a3 +74645205ns 1315227 1c000e82 fff60613 addi x12, x12, -1 x12=0000060c x12:0000060d +74645225ns 1315228 1c000e84 00130313 addi x6, x6, 1 x6=1c0097a4 x6:1c0097a3 +74645245ns 1315229 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000060c +74645324ns 1315233 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097a4 PA:1c0097a4 +74645343ns 1315234 1c000e82 fff60613 addi x12, x12, -1 x12=0000060b x12:0000060c +74645363ns 1315235 1c000e84 00130313 addi x6, x6, 1 x6=1c0097a5 x6:1c0097a4 +74645383ns 1315236 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000060b +74645462ns 1315240 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097a5 PA:1c0097a5 +74645482ns 1315241 1c000e82 fff60613 addi x12, x12, -1 x12=0000060a x12:0000060b +74645502ns 1315242 1c000e84 00130313 addi x6, x6, 1 x6=1c0097a6 x6:1c0097a5 +74645522ns 1315243 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000060a +74645601ns 1315247 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097a6 PA:1c0097a6 +74645621ns 1315248 1c000e82 fff60613 addi x12, x12, -1 x12=00000609 x12:0000060a +74645640ns 1315249 1c000e84 00130313 addi x6, x6, 1 x6=1c0097a7 x6:1c0097a6 +74645660ns 1315250 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000609 +74645739ns 1315254 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097a7 PA:1c0097a7 +74645759ns 1315255 1c000e82 fff60613 addi x12, x12, -1 x12=00000608 x12:00000609 +74645779ns 1315256 1c000e84 00130313 addi x6, x6, 1 x6=1c0097a8 x6:1c0097a7 +74645799ns 1315257 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000608 +74645878ns 1315261 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097a8 PA:1c0097a8 +74645898ns 1315262 1c000e82 fff60613 addi x12, x12, -1 x12=00000607 x12:00000608 +74645917ns 1315263 1c000e84 00130313 addi x6, x6, 1 x6=1c0097a9 x6:1c0097a8 +74645937ns 1315264 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000607 +74646016ns 1315268 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097a9 PA:1c0097a9 +74646036ns 1315269 1c000e82 fff60613 addi x12, x12, -1 x12=00000606 x12:00000607 +74646056ns 1315270 1c000e84 00130313 addi x6, x6, 1 x6=1c0097aa x6:1c0097a9 +74646076ns 1315271 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000606 +74646155ns 1315275 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097aa PA:1c0097aa +74646175ns 1315276 1c000e82 fff60613 addi x12, x12, -1 x12=00000605 x12:00000606 +74646195ns 1315277 1c000e84 00130313 addi x6, x6, 1 x6=1c0097ab x6:1c0097aa +74646214ns 1315278 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000605 +74646293ns 1315282 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097ab PA:1c0097ab +74646313ns 1315283 1c000e82 fff60613 addi x12, x12, -1 x12=00000604 x12:00000605 +74646333ns 1315284 1c000e84 00130313 addi x6, x6, 1 x6=1c0097ac x6:1c0097ab +74646353ns 1315285 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000604 +74646432ns 1315289 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097ac PA:1c0097ac +74646452ns 1315290 1c000e82 fff60613 addi x12, x12, -1 x12=00000603 x12:00000604 +74646472ns 1315291 1c000e84 00130313 addi x6, x6, 1 x6=1c0097ad x6:1c0097ac +74646491ns 1315292 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000603 +74646571ns 1315296 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097ad PA:1c0097ad +74646590ns 1315297 1c000e82 fff60613 addi x12, x12, -1 x12=00000602 x12:00000603 +74646610ns 1315298 1c000e84 00130313 addi x6, x6, 1 x6=1c0097ae x6:1c0097ad +74646630ns 1315299 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000602 +74646709ns 1315303 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097ae PA:1c0097ae +74646729ns 1315304 1c000e82 fff60613 addi x12, x12, -1 x12=00000601 x12:00000602 +74646749ns 1315305 1c000e84 00130313 addi x6, x6, 1 x6=1c0097af x6:1c0097ae +74646769ns 1315306 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000601 +74646848ns 1315310 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097af PA:1c0097af +74646867ns 1315311 1c000e82 fff60613 addi x12, x12, -1 x12=00000600 x12:00000601 +74646887ns 1315312 1c000e84 00130313 addi x6, x6, 1 x6=1c0097b0 x6:1c0097af +74646907ns 1315313 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000600 +74646986ns 1315317 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097b0 PA:1c0097b0 +74647006ns 1315318 1c000e82 fff60613 addi x12, x12, -1 x12=000005ff x12:00000600 +74647026ns 1315319 1c000e84 00130313 addi x6, x6, 1 x6=1c0097b1 x6:1c0097b0 +74647046ns 1315320 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005ff +74647125ns 1315324 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097b1 PA:1c0097b1 +74647145ns 1315325 1c000e82 fff60613 addi x12, x12, -1 x12=000005fe x12:000005ff +74647164ns 1315326 1c000e84 00130313 addi x6, x6, 1 x6=1c0097b2 x6:1c0097b1 +74647184ns 1315327 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005fe +74647263ns 1315331 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097b2 PA:1c0097b2 +74647283ns 1315332 1c000e82 fff60613 addi x12, x12, -1 x12=000005fd x12:000005fe +74647303ns 1315333 1c000e84 00130313 addi x6, x6, 1 x6=1c0097b3 x6:1c0097b2 +74647323ns 1315334 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005fd +74647402ns 1315338 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097b3 PA:1c0097b3 +74647422ns 1315339 1c000e82 fff60613 addi x12, x12, -1 x12=000005fc x12:000005fd +74647441ns 1315340 1c000e84 00130313 addi x6, x6, 1 x6=1c0097b4 x6:1c0097b3 +74647461ns 1315341 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005fc +74647540ns 1315345 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097b4 PA:1c0097b4 +74647560ns 1315346 1c000e82 fff60613 addi x12, x12, -1 x12=000005fb x12:000005fc +74647580ns 1315347 1c000e84 00130313 addi x6, x6, 1 x6=1c0097b5 x6:1c0097b4 +74647600ns 1315348 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005fb +74647679ns 1315352 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097b5 PA:1c0097b5 +74647699ns 1315353 1c000e82 fff60613 addi x12, x12, -1 x12=000005fa x12:000005fb +74647719ns 1315354 1c000e84 00130313 addi x6, x6, 1 x6=1c0097b6 x6:1c0097b5 +74647738ns 1315355 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005fa +74647817ns 1315359 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097b6 PA:1c0097b6 +74647837ns 1315360 1c000e82 fff60613 addi x12, x12, -1 x12=000005f9 x12:000005fa +74647857ns 1315361 1c000e84 00130313 addi x6, x6, 1 x6=1c0097b7 x6:1c0097b6 +74647877ns 1315362 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005f9 +74647956ns 1315366 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097b7 PA:1c0097b7 +74647976ns 1315367 1c000e82 fff60613 addi x12, x12, -1 x12=000005f8 x12:000005f9 +74647996ns 1315368 1c000e84 00130313 addi x6, x6, 1 x6=1c0097b8 x6:1c0097b7 +74648015ns 1315369 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005f8 +74648095ns 1315373 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097b8 PA:1c0097b8 +74648114ns 1315374 1c000e82 fff60613 addi x12, x12, -1 x12=000005f7 x12:000005f8 +74648134ns 1315375 1c000e84 00130313 addi x6, x6, 1 x6=1c0097b9 x6:1c0097b8 +74648154ns 1315376 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005f7 +74648233ns 1315380 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097b9 PA:1c0097b9 +74648253ns 1315381 1c000e82 fff60613 addi x12, x12, -1 x12=000005f6 x12:000005f7 +74648273ns 1315382 1c000e84 00130313 addi x6, x6, 1 x6=1c0097ba x6:1c0097b9 +74648292ns 1315383 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005f6 +74648372ns 1315387 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097ba PA:1c0097ba +74648391ns 1315388 1c000e82 fff60613 addi x12, x12, -1 x12=000005f5 x12:000005f6 +74648411ns 1315389 1c000e84 00130313 addi x6, x6, 1 x6=1c0097bb x6:1c0097ba +74648431ns 1315390 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005f5 +74648510ns 1315394 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097bb PA:1c0097bb +74648530ns 1315395 1c000e82 fff60613 addi x12, x12, -1 x12=000005f4 x12:000005f5 +74648550ns 1315396 1c000e84 00130313 addi x6, x6, 1 x6=1c0097bc x6:1c0097bb +74648570ns 1315397 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005f4 +74648649ns 1315401 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097bc PA:1c0097bc +74648669ns 1315402 1c000e82 fff60613 addi x12, x12, -1 x12=000005f3 x12:000005f4 +74648688ns 1315403 1c000e84 00130313 addi x6, x6, 1 x6=1c0097bd x6:1c0097bc +74648708ns 1315404 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005f3 +74648787ns 1315408 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097bd PA:1c0097bd +74648807ns 1315409 1c000e82 fff60613 addi x12, x12, -1 x12=000005f2 x12:000005f3 +74648827ns 1315410 1c000e84 00130313 addi x6, x6, 1 x6=1c0097be x6:1c0097bd +74648847ns 1315411 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005f2 +74648926ns 1315415 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097be PA:1c0097be +74648946ns 1315416 1c000e82 fff60613 addi x12, x12, -1 x12=000005f1 x12:000005f2 +74648965ns 1315417 1c000e84 00130313 addi x6, x6, 1 x6=1c0097bf x6:1c0097be +74648985ns 1315418 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005f1 +74649064ns 1315422 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097bf PA:1c0097bf +74649084ns 1315423 1c000e82 fff60613 addi x12, x12, -1 x12=000005f0 x12:000005f1 +74649104ns 1315424 1c000e84 00130313 addi x6, x6, 1 x6=1c0097c0 x6:1c0097bf +74649124ns 1315425 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005f0 +74649203ns 1315429 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097c0 PA:1c0097c0 +74649223ns 1315430 1c000e82 fff60613 addi x12, x12, -1 x12=000005ef x12:000005f0 +74649243ns 1315431 1c000e84 00130313 addi x6, x6, 1 x6=1c0097c1 x6:1c0097c0 +74649262ns 1315432 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005ef +74649341ns 1315436 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097c1 PA:1c0097c1 +74649361ns 1315437 1c000e82 fff60613 addi x12, x12, -1 x12=000005ee x12:000005ef +74649381ns 1315438 1c000e84 00130313 addi x6, x6, 1 x6=1c0097c2 x6:1c0097c1 +74649401ns 1315439 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005ee +74649480ns 1315443 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097c2 PA:1c0097c2 +74649500ns 1315444 1c000e82 fff60613 addi x12, x12, -1 x12=000005ed x12:000005ee +74649520ns 1315445 1c000e84 00130313 addi x6, x6, 1 x6=1c0097c3 x6:1c0097c2 +74649539ns 1315446 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005ed +74649619ns 1315450 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097c3 PA:1c0097c3 +74649638ns 1315451 1c000e82 fff60613 addi x12, x12, -1 x12=000005ec x12:000005ed +74649658ns 1315452 1c000e84 00130313 addi x6, x6, 1 x6=1c0097c4 x6:1c0097c3 +74649678ns 1315453 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005ec +74649757ns 1315457 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097c4 PA:1c0097c4 +74649777ns 1315458 1c000e82 fff60613 addi x12, x12, -1 x12=000005eb x12:000005ec +74649797ns 1315459 1c000e84 00130313 addi x6, x6, 1 x6=1c0097c5 x6:1c0097c4 +74649816ns 1315460 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005eb +74649896ns 1315464 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097c5 PA:1c0097c5 +74649915ns 1315465 1c000e82 fff60613 addi x12, x12, -1 x12=000005ea x12:000005eb +74649935ns 1315466 1c000e84 00130313 addi x6, x6, 1 x6=1c0097c6 x6:1c0097c5 +74649955ns 1315467 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005ea +74650034ns 1315471 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097c6 PA:1c0097c6 +74650054ns 1315472 1c000e82 fff60613 addi x12, x12, -1 x12=000005e9 x12:000005ea +74650074ns 1315473 1c000e84 00130313 addi x6, x6, 1 x6=1c0097c7 x6:1c0097c6 +74650094ns 1315474 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005e9 +74650173ns 1315478 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097c7 PA:1c0097c7 +74650193ns 1315479 1c000e82 fff60613 addi x12, x12, -1 x12=000005e8 x12:000005e9 +74650212ns 1315480 1c000e84 00130313 addi x6, x6, 1 x6=1c0097c8 x6:1c0097c7 +74650232ns 1315481 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005e8 +74650311ns 1315485 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097c8 PA:1c0097c8 +74650331ns 1315486 1c000e82 fff60613 addi x12, x12, -1 x12=000005e7 x12:000005e8 +74650351ns 1315487 1c000e84 00130313 addi x6, x6, 1 x6=1c0097c9 x6:1c0097c8 +74650371ns 1315488 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005e7 +74650450ns 1315492 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097c9 PA:1c0097c9 +74650470ns 1315493 1c000e82 fff60613 addi x12, x12, -1 x12=000005e6 x12:000005e7 +74650489ns 1315494 1c000e84 00130313 addi x6, x6, 1 x6=1c0097ca x6:1c0097c9 +74650509ns 1315495 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005e6 +74650588ns 1315499 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097ca PA:1c0097ca +74650608ns 1315500 1c000e82 fff60613 addi x12, x12, -1 x12=000005e5 x12:000005e6 +74650628ns 1315501 1c000e84 00130313 addi x6, x6, 1 x6=1c0097cb x6:1c0097ca +74650648ns 1315502 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005e5 +74650727ns 1315506 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097cb PA:1c0097cb +74650747ns 1315507 1c000e82 fff60613 addi x12, x12, -1 x12=000005e4 x12:000005e5 +74650766ns 1315508 1c000e84 00130313 addi x6, x6, 1 x6=1c0097cc x6:1c0097cb +74650786ns 1315509 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005e4 +74650865ns 1315513 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097cc PA:1c0097cc +74650885ns 1315514 1c000e82 fff60613 addi x12, x12, -1 x12=000005e3 x12:000005e4 +74650905ns 1315515 1c000e84 00130313 addi x6, x6, 1 x6=1c0097cd x6:1c0097cc +74650925ns 1315516 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005e3 +74651004ns 1315520 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097cd PA:1c0097cd +74651024ns 1315521 1c000e82 fff60613 addi x12, x12, -1 x12=000005e2 x12:000005e3 +74651044ns 1315522 1c000e84 00130313 addi x6, x6, 1 x6=1c0097ce x6:1c0097cd +74651063ns 1315523 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005e2 +74651143ns 1315527 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097ce PA:1c0097ce +74651162ns 1315528 1c000e82 fff60613 addi x12, x12, -1 x12=000005e1 x12:000005e2 +74651182ns 1315529 1c000e84 00130313 addi x6, x6, 1 x6=1c0097cf x6:1c0097ce +74651202ns 1315530 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005e1 +74651281ns 1315534 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097cf PA:1c0097cf +74651301ns 1315535 1c000e82 fff60613 addi x12, x12, -1 x12=000005e0 x12:000005e1 +74651321ns 1315536 1c000e84 00130313 addi x6, x6, 1 x6=1c0097d0 x6:1c0097cf +74651340ns 1315537 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005e0 +74651420ns 1315541 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097d0 PA:1c0097d0 +74651439ns 1315542 1c000e82 fff60613 addi x12, x12, -1 x12=000005df x12:000005e0 +74651459ns 1315543 1c000e84 00130313 addi x6, x6, 1 x6=1c0097d1 x6:1c0097d0 +74651479ns 1315544 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005df +74651558ns 1315548 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097d1 PA:1c0097d1 +74651578ns 1315549 1c000e82 fff60613 addi x12, x12, -1 x12=000005de x12:000005df +74651598ns 1315550 1c000e84 00130313 addi x6, x6, 1 x6=1c0097d2 x6:1c0097d1 +74651618ns 1315551 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005de +74651697ns 1315555 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097d2 PA:1c0097d2 +74651717ns 1315556 1c000e82 fff60613 addi x12, x12, -1 x12=000005dd x12:000005de +74651736ns 1315557 1c000e84 00130313 addi x6, x6, 1 x6=1c0097d3 x6:1c0097d2 +74651756ns 1315558 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005dd +74651835ns 1315562 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097d3 PA:1c0097d3 +74651855ns 1315563 1c000e82 fff60613 addi x12, x12, -1 x12=000005dc x12:000005dd +74651875ns 1315564 1c000e84 00130313 addi x6, x6, 1 x6=1c0097d4 x6:1c0097d3 +74651895ns 1315565 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005dc +74651974ns 1315569 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097d4 PA:1c0097d4 +74651994ns 1315570 1c000e82 fff60613 addi x12, x12, -1 x12=000005db x12:000005dc +74652013ns 1315571 1c000e84 00130313 addi x6, x6, 1 x6=1c0097d5 x6:1c0097d4 +74652033ns 1315572 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005db +74652112ns 1315576 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097d5 PA:1c0097d5 +74652132ns 1315577 1c000e82 fff60613 addi x12, x12, -1 x12=000005da x12:000005db +74652152ns 1315578 1c000e84 00130313 addi x6, x6, 1 x6=1c0097d6 x6:1c0097d5 +74652172ns 1315579 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005da +74652251ns 1315583 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097d6 PA:1c0097d6 +74652271ns 1315584 1c000e82 fff60613 addi x12, x12, -1 x12=000005d9 x12:000005da +74652290ns 1315585 1c000e84 00130313 addi x6, x6, 1 x6=1c0097d7 x6:1c0097d6 +74652310ns 1315586 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005d9 +74652389ns 1315590 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097d7 PA:1c0097d7 +74652409ns 1315591 1c000e82 fff60613 addi x12, x12, -1 x12=000005d8 x12:000005d9 +74652429ns 1315592 1c000e84 00130313 addi x6, x6, 1 x6=1c0097d8 x6:1c0097d7 +74652449ns 1315593 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005d8 +74652528ns 1315597 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097d8 PA:1c0097d8 +74652548ns 1315598 1c000e82 fff60613 addi x12, x12, -1 x12=000005d7 x12:000005d8 +74652568ns 1315599 1c000e84 00130313 addi x6, x6, 1 x6=1c0097d9 x6:1c0097d8 +74652587ns 1315600 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005d7 +74652667ns 1315604 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097d9 PA:1c0097d9 +74652686ns 1315605 1c000e82 fff60613 addi x12, x12, -1 x12=000005d6 x12:000005d7 +74652706ns 1315606 1c000e84 00130313 addi x6, x6, 1 x6=1c0097da x6:1c0097d9 +74652726ns 1315607 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005d6 +74652805ns 1315611 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097da PA:1c0097da +74652825ns 1315612 1c000e82 fff60613 addi x12, x12, -1 x12=000005d5 x12:000005d6 +74652845ns 1315613 1c000e84 00130313 addi x6, x6, 1 x6=1c0097db x6:1c0097da +74652864ns 1315614 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005d5 +74652944ns 1315618 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097db PA:1c0097db +74652963ns 1315619 1c000e82 fff60613 addi x12, x12, -1 x12=000005d4 x12:000005d5 +74652983ns 1315620 1c000e84 00130313 addi x6, x6, 1 x6=1c0097dc x6:1c0097db +74653003ns 1315621 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005d4 +74653082ns 1315625 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097dc PA:1c0097dc +74653102ns 1315626 1c000e82 fff60613 addi x12, x12, -1 x12=000005d3 x12:000005d4 +74653122ns 1315627 1c000e84 00130313 addi x6, x6, 1 x6=1c0097dd x6:1c0097dc +74653142ns 1315628 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005d3 +74653221ns 1315632 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097dd PA:1c0097dd +74653240ns 1315633 1c000e82 fff60613 addi x12, x12, -1 x12=000005d2 x12:000005d3 +74653260ns 1315634 1c000e84 00130313 addi x6, x6, 1 x6=1c0097de x6:1c0097dd +74653280ns 1315635 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005d2 +74653359ns 1315639 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097de PA:1c0097de +74653379ns 1315640 1c000e82 fff60613 addi x12, x12, -1 x12=000005d1 x12:000005d2 +74653399ns 1315641 1c000e84 00130313 addi x6, x6, 1 x6=1c0097df x6:1c0097de +74653419ns 1315642 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005d1 +74653498ns 1315646 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097df PA:1c0097df +74653518ns 1315647 1c000e82 fff60613 addi x12, x12, -1 x12=000005d0 x12:000005d1 +74653537ns 1315648 1c000e84 00130313 addi x6, x6, 1 x6=1c0097e0 x6:1c0097df +74653557ns 1315649 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005d0 +74653636ns 1315653 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097e0 PA:1c0097e0 +74653656ns 1315654 1c000e82 fff60613 addi x12, x12, -1 x12=000005cf x12:000005d0 +74653676ns 1315655 1c000e84 00130313 addi x6, x6, 1 x6=1c0097e1 x6:1c0097e0 +74653696ns 1315656 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005cf +74653775ns 1315660 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097e1 PA:1c0097e1 +74653795ns 1315661 1c000e82 fff60613 addi x12, x12, -1 x12=000005ce x12:000005cf +74653814ns 1315662 1c000e84 00130313 addi x6, x6, 1 x6=1c0097e2 x6:1c0097e1 +74653834ns 1315663 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005ce +74653913ns 1315667 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097e2 PA:1c0097e2 +74653933ns 1315668 1c000e82 fff60613 addi x12, x12, -1 x12=000005cd x12:000005ce +74653953ns 1315669 1c000e84 00130313 addi x6, x6, 1 x6=1c0097e3 x6:1c0097e2 +74653973ns 1315670 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005cd +74654052ns 1315674 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097e3 PA:1c0097e3 +74654072ns 1315675 1c000e82 fff60613 addi x12, x12, -1 x12=000005cc x12:000005cd +74654092ns 1315676 1c000e84 00130313 addi x6, x6, 1 x6=1c0097e4 x6:1c0097e3 +74654111ns 1315677 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005cc +74654191ns 1315681 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097e4 PA:1c0097e4 +74654210ns 1315682 1c000e82 fff60613 addi x12, x12, -1 x12=000005cb x12:000005cc +74654230ns 1315683 1c000e84 00130313 addi x6, x6, 1 x6=1c0097e5 x6:1c0097e4 +74654250ns 1315684 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005cb +74654329ns 1315688 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097e5 PA:1c0097e5 +74654349ns 1315689 1c000e82 fff60613 addi x12, x12, -1 x12=000005ca x12:000005cb +74654369ns 1315690 1c000e84 00130313 addi x6, x6, 1 x6=1c0097e6 x6:1c0097e5 +74654388ns 1315691 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005ca +74654468ns 1315695 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097e6 PA:1c0097e6 +74654487ns 1315696 1c000e82 fff60613 addi x12, x12, -1 x12=000005c9 x12:000005ca +74654507ns 1315697 1c000e84 00130313 addi x6, x6, 1 x6=1c0097e7 x6:1c0097e6 +74654527ns 1315698 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005c9 +74654606ns 1315702 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097e7 PA:1c0097e7 +74654626ns 1315703 1c000e82 fff60613 addi x12, x12, -1 x12=000005c8 x12:000005c9 +74654646ns 1315704 1c000e84 00130313 addi x6, x6, 1 x6=1c0097e8 x6:1c0097e7 +74654666ns 1315705 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005c8 +74654745ns 1315709 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097e8 PA:1c0097e8 +74654764ns 1315710 1c000e82 fff60613 addi x12, x12, -1 x12=000005c7 x12:000005c8 +74654784ns 1315711 1c000e84 00130313 addi x6, x6, 1 x6=1c0097e9 x6:1c0097e8 +74654804ns 1315712 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005c7 +74654883ns 1315716 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097e9 PA:1c0097e9 +74654903ns 1315717 1c000e82 fff60613 addi x12, x12, -1 x12=000005c6 x12:000005c7 +74654923ns 1315718 1c000e84 00130313 addi x6, x6, 1 x6=1c0097ea x6:1c0097e9 +74654943ns 1315719 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005c6 +74655022ns 1315723 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097ea PA:1c0097ea +74655042ns 1315724 1c000e82 fff60613 addi x12, x12, -1 x12=000005c5 x12:000005c6 +74655061ns 1315725 1c000e84 00130313 addi x6, x6, 1 x6=1c0097eb x6:1c0097ea +74655081ns 1315726 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005c5 +74655160ns 1315730 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097eb PA:1c0097eb +74655180ns 1315731 1c000e82 fff60613 addi x12, x12, -1 x12=000005c4 x12:000005c5 +74655200ns 1315732 1c000e84 00130313 addi x6, x6, 1 x6=1c0097ec x6:1c0097eb +74655220ns 1315733 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005c4 +74655299ns 1315737 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097ec PA:1c0097ec +74655319ns 1315738 1c000e82 fff60613 addi x12, x12, -1 x12=000005c3 x12:000005c4 +74655338ns 1315739 1c000e84 00130313 addi x6, x6, 1 x6=1c0097ed x6:1c0097ec +74655358ns 1315740 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005c3 +74655437ns 1315744 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097ed PA:1c0097ed +74655457ns 1315745 1c000e82 fff60613 addi x12, x12, -1 x12=000005c2 x12:000005c3 +74655477ns 1315746 1c000e84 00130313 addi x6, x6, 1 x6=1c0097ee x6:1c0097ed +74655497ns 1315747 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005c2 +74655576ns 1315751 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097ee PA:1c0097ee +74655596ns 1315752 1c000e82 fff60613 addi x12, x12, -1 x12=000005c1 x12:000005c2 +74655616ns 1315753 1c000e84 00130313 addi x6, x6, 1 x6=1c0097ef x6:1c0097ee +74655635ns 1315754 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005c1 +74655714ns 1315758 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097ef PA:1c0097ef +74655734ns 1315759 1c000e82 fff60613 addi x12, x12, -1 x12=000005c0 x12:000005c1 +74655754ns 1315760 1c000e84 00130313 addi x6, x6, 1 x6=1c0097f0 x6:1c0097ef +74655774ns 1315761 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005c0 +74655853ns 1315765 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097f0 PA:1c0097f0 +74655873ns 1315766 1c000e82 fff60613 addi x12, x12, -1 x12=000005bf x12:000005c0 +74655893ns 1315767 1c000e84 00130313 addi x6, x6, 1 x6=1c0097f1 x6:1c0097f0 +74655912ns 1315768 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005bf +74655992ns 1315772 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097f1 PA:1c0097f1 +74656011ns 1315773 1c000e82 fff60613 addi x12, x12, -1 x12=000005be x12:000005bf +74656031ns 1315774 1c000e84 00130313 addi x6, x6, 1 x6=1c0097f2 x6:1c0097f1 +74656051ns 1315775 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005be +74656130ns 1315779 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097f2 PA:1c0097f2 +74656150ns 1315780 1c000e82 fff60613 addi x12, x12, -1 x12=000005bd x12:000005be +74656170ns 1315781 1c000e84 00130313 addi x6, x6, 1 x6=1c0097f3 x6:1c0097f2 +74656189ns 1315782 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005bd +74656269ns 1315786 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097f3 PA:1c0097f3 +74656288ns 1315787 1c000e82 fff60613 addi x12, x12, -1 x12=000005bc x12:000005bd +74656308ns 1315788 1c000e84 00130313 addi x6, x6, 1 x6=1c0097f4 x6:1c0097f3 +74656328ns 1315789 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005bc +74656407ns 1315793 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097f4 PA:1c0097f4 +74656427ns 1315794 1c000e82 fff60613 addi x12, x12, -1 x12=000005bb x12:000005bc +74656447ns 1315795 1c000e84 00130313 addi x6, x6, 1 x6=1c0097f5 x6:1c0097f4 +74656467ns 1315796 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005bb +74656546ns 1315800 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097f5 PA:1c0097f5 +74656566ns 1315801 1c000e82 fff60613 addi x12, x12, -1 x12=000005ba x12:000005bb +74656585ns 1315802 1c000e84 00130313 addi x6, x6, 1 x6=1c0097f6 x6:1c0097f5 +74656605ns 1315803 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005ba +74656684ns 1315807 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097f6 PA:1c0097f6 +74656704ns 1315808 1c000e82 fff60613 addi x12, x12, -1 x12=000005b9 x12:000005ba +74656724ns 1315809 1c000e84 00130313 addi x6, x6, 1 x6=1c0097f7 x6:1c0097f6 +74656744ns 1315810 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005b9 +74656823ns 1315814 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097f7 PA:1c0097f7 +74656843ns 1315815 1c000e82 fff60613 addi x12, x12, -1 x12=000005b8 x12:000005b9 +74656862ns 1315816 1c000e84 00130313 addi x6, x6, 1 x6=1c0097f8 x6:1c0097f7 +74656882ns 1315817 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005b8 +74656961ns 1315821 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097f8 PA:1c0097f8 +74656981ns 1315822 1c000e82 fff60613 addi x12, x12, -1 x12=000005b7 x12:000005b8 +74657001ns 1315823 1c000e84 00130313 addi x6, x6, 1 x6=1c0097f9 x6:1c0097f8 +74657021ns 1315824 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005b7 +74657100ns 1315828 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097f9 PA:1c0097f9 +74657120ns 1315829 1c000e82 fff60613 addi x12, x12, -1 x12=000005b6 x12:000005b7 +74657140ns 1315830 1c000e84 00130313 addi x6, x6, 1 x6=1c0097fa x6:1c0097f9 +74657159ns 1315831 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005b6 +74657238ns 1315835 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097fa PA:1c0097fa +74657258ns 1315836 1c000e82 fff60613 addi x12, x12, -1 x12=000005b5 x12:000005b6 +74657278ns 1315837 1c000e84 00130313 addi x6, x6, 1 x6=1c0097fb x6:1c0097fa +74657298ns 1315838 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005b5 +74657377ns 1315842 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097fb PA:1c0097fb +74657397ns 1315843 1c000e82 fff60613 addi x12, x12, -1 x12=000005b4 x12:000005b5 +74657417ns 1315844 1c000e84 00130313 addi x6, x6, 1 x6=1c0097fc x6:1c0097fb +74657436ns 1315845 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005b4 +74657516ns 1315849 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097fc PA:1c0097fc +74657535ns 1315850 1c000e82 fff60613 addi x12, x12, -1 x12=000005b3 x12:000005b4 +74657555ns 1315851 1c000e84 00130313 addi x6, x6, 1 x6=1c0097fd x6:1c0097fc +74657575ns 1315852 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005b3 +74657654ns 1315856 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097fd PA:1c0097fd +74657674ns 1315857 1c000e82 fff60613 addi x12, x12, -1 x12=000005b2 x12:000005b3 +74657694ns 1315858 1c000e84 00130313 addi x6, x6, 1 x6=1c0097fe x6:1c0097fd +74657713ns 1315859 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005b2 +74657793ns 1315863 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097fe PA:1c0097fe +74657812ns 1315864 1c000e82 fff60613 addi x12, x12, -1 x12=000005b1 x12:000005b2 +74657832ns 1315865 1c000e84 00130313 addi x6, x6, 1 x6=1c0097ff x6:1c0097fe +74657852ns 1315866 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005b1 +74657931ns 1315870 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0097ff PA:1c0097ff +74657951ns 1315871 1c000e82 fff60613 addi x12, x12, -1 x12=000005b0 x12:000005b1 +74657971ns 1315872 1c000e84 00130313 addi x6, x6, 1 x6=1c009800 x6:1c0097ff +74657991ns 1315873 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005b0 +74658070ns 1315877 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009800 PA:1c009800 +74658090ns 1315878 1c000e82 fff60613 addi x12, x12, -1 x12=000005af x12:000005b0 +74658109ns 1315879 1c000e84 00130313 addi x6, x6, 1 x6=1c009801 x6:1c009800 +74658129ns 1315880 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005af +74658208ns 1315884 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009801 PA:1c009801 +74658228ns 1315885 1c000e82 fff60613 addi x12, x12, -1 x12=000005ae x12:000005af +74658248ns 1315886 1c000e84 00130313 addi x6, x6, 1 x6=1c009802 x6:1c009801 +74658268ns 1315887 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005ae +74658347ns 1315891 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009802 PA:1c009802 +74658367ns 1315892 1c000e82 fff60613 addi x12, x12, -1 x12=000005ad x12:000005ae +74658386ns 1315893 1c000e84 00130313 addi x6, x6, 1 x6=1c009803 x6:1c009802 +74658406ns 1315894 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005ad +74658485ns 1315898 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009803 PA:1c009803 +74658505ns 1315899 1c000e82 fff60613 addi x12, x12, -1 x12=000005ac x12:000005ad +74658525ns 1315900 1c000e84 00130313 addi x6, x6, 1 x6=1c009804 x6:1c009803 +74658545ns 1315901 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005ac +74658624ns 1315905 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009804 PA:1c009804 +74658644ns 1315906 1c000e82 fff60613 addi x12, x12, -1 x12=000005ab x12:000005ac +74658663ns 1315907 1c000e84 00130313 addi x6, x6, 1 x6=1c009805 x6:1c009804 +74658683ns 1315908 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005ab +74658762ns 1315912 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009805 PA:1c009805 +74658782ns 1315913 1c000e82 fff60613 addi x12, x12, -1 x12=000005aa x12:000005ab +74658802ns 1315914 1c000e84 00130313 addi x6, x6, 1 x6=1c009806 x6:1c009805 +74658822ns 1315915 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005aa +74658901ns 1315919 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009806 PA:1c009806 +74658921ns 1315920 1c000e82 fff60613 addi x12, x12, -1 x12=000005a9 x12:000005aa +74658941ns 1315921 1c000e84 00130313 addi x6, x6, 1 x6=1c009807 x6:1c009806 +74658960ns 1315922 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005a9 +74659040ns 1315926 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009807 PA:1c009807 +74659059ns 1315927 1c000e82 fff60613 addi x12, x12, -1 x12=000005a8 x12:000005a9 +74659079ns 1315928 1c000e84 00130313 addi x6, x6, 1 x6=1c009808 x6:1c009807 +74659099ns 1315929 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005a8 +74659178ns 1315933 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009808 PA:1c009808 +74659198ns 1315934 1c000e82 fff60613 addi x12, x12, -1 x12=000005a7 x12:000005a8 +74659218ns 1315935 1c000e84 00130313 addi x6, x6, 1 x6=1c009809 x6:1c009808 +74659237ns 1315936 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005a7 +74659317ns 1315940 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009809 PA:1c009809 +74659336ns 1315941 1c000e82 fff60613 addi x12, x12, -1 x12=000005a6 x12:000005a7 +74659356ns 1315942 1c000e84 00130313 addi x6, x6, 1 x6=1c00980a x6:1c009809 +74659376ns 1315943 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005a6 +74659455ns 1315947 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00980a PA:1c00980a +74659475ns 1315948 1c000e82 fff60613 addi x12, x12, -1 x12=000005a5 x12:000005a6 +74659495ns 1315949 1c000e84 00130313 addi x6, x6, 1 x6=1c00980b x6:1c00980a +74659515ns 1315950 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005a5 +74659594ns 1315954 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00980b PA:1c00980b +74659614ns 1315955 1c000e82 fff60613 addi x12, x12, -1 x12=000005a4 x12:000005a5 +74659633ns 1315956 1c000e84 00130313 addi x6, x6, 1 x6=1c00980c x6:1c00980b +74659653ns 1315957 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005a4 +74659732ns 1315961 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00980c PA:1c00980c +74659752ns 1315962 1c000e82 fff60613 addi x12, x12, -1 x12=000005a3 x12:000005a4 +74659772ns 1315963 1c000e84 00130313 addi x6, x6, 1 x6=1c00980d x6:1c00980c +74659792ns 1315964 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005a3 +74659871ns 1315968 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00980d PA:1c00980d +74659891ns 1315969 1c000e82 fff60613 addi x12, x12, -1 x12=000005a2 x12:000005a3 +74659910ns 1315970 1c000e84 00130313 addi x6, x6, 1 x6=1c00980e x6:1c00980d +74659930ns 1315971 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005a2 +74660009ns 1315975 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00980e PA:1c00980e +74660029ns 1315976 1c000e82 fff60613 addi x12, x12, -1 x12=000005a1 x12:000005a2 +74660049ns 1315977 1c000e84 00130313 addi x6, x6, 1 x6=1c00980f x6:1c00980e +74660069ns 1315978 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005a1 +74660148ns 1315982 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00980f PA:1c00980f +74660168ns 1315983 1c000e82 fff60613 addi x12, x12, -1 x12=000005a0 x12:000005a1 +74660187ns 1315984 1c000e84 00130313 addi x6, x6, 1 x6=1c009810 x6:1c00980f +74660207ns 1315985 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005a0 +74660286ns 1315989 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009810 PA:1c009810 +74660306ns 1315990 1c000e82 fff60613 addi x12, x12, -1 x12=0000059f x12:000005a0 +74660326ns 1315991 1c000e84 00130313 addi x6, x6, 1 x6=1c009811 x6:1c009810 +74660346ns 1315992 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000059f +74660425ns 1315996 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009811 PA:1c009811 +74660445ns 1315997 1c000e82 fff60613 addi x12, x12, -1 x12=0000059e x12:0000059f +74660465ns 1315998 1c000e84 00130313 addi x6, x6, 1 x6=1c009812 x6:1c009811 +74660484ns 1315999 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000059e +74660564ns 1316003 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009812 PA:1c009812 +74660583ns 1316004 1c000e82 fff60613 addi x12, x12, -1 x12=0000059d x12:0000059e +74660603ns 1316005 1c000e84 00130313 addi x6, x6, 1 x6=1c009813 x6:1c009812 +74660623ns 1316006 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000059d +74660702ns 1316010 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009813 PA:1c009813 +74660722ns 1316011 1c000e82 fff60613 addi x12, x12, -1 x12=0000059c x12:0000059d +74660742ns 1316012 1c000e84 00130313 addi x6, x6, 1 x6=1c009814 x6:1c009813 +74660761ns 1316013 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000059c +74660841ns 1316017 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009814 PA:1c009814 +74660860ns 1316018 1c000e82 fff60613 addi x12, x12, -1 x12=0000059b x12:0000059c +74660880ns 1316019 1c000e84 00130313 addi x6, x6, 1 x6=1c009815 x6:1c009814 +74660900ns 1316020 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000059b +74660979ns 1316024 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009815 PA:1c009815 +74660999ns 1316025 1c000e82 fff60613 addi x12, x12, -1 x12=0000059a x12:0000059b +74661019ns 1316026 1c000e84 00130313 addi x6, x6, 1 x6=1c009816 x6:1c009815 +74661039ns 1316027 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000059a +74661118ns 1316031 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009816 PA:1c009816 +74661137ns 1316032 1c000e82 fff60613 addi x12, x12, -1 x12=00000599 x12:0000059a +74661157ns 1316033 1c000e84 00130313 addi x6, x6, 1 x6=1c009817 x6:1c009816 +74661177ns 1316034 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000599 +74661256ns 1316038 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009817 PA:1c009817 +74661276ns 1316039 1c000e82 fff60613 addi x12, x12, -1 x12=00000598 x12:00000599 +74661296ns 1316040 1c000e84 00130313 addi x6, x6, 1 x6=1c009818 x6:1c009817 +74661316ns 1316041 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000598 +74661395ns 1316045 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009818 PA:1c009818 +74661415ns 1316046 1c000e82 fff60613 addi x12, x12, -1 x12=00000597 x12:00000598 +74661434ns 1316047 1c000e84 00130313 addi x6, x6, 1 x6=1c009819 x6:1c009818 +74661454ns 1316048 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000597 +74661533ns 1316052 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009819 PA:1c009819 +74661553ns 1316053 1c000e82 fff60613 addi x12, x12, -1 x12=00000596 x12:00000597 +74661573ns 1316054 1c000e84 00130313 addi x6, x6, 1 x6=1c00981a x6:1c009819 +74661593ns 1316055 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000596 +74661672ns 1316059 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00981a PA:1c00981a +74661692ns 1316060 1c000e82 fff60613 addi x12, x12, -1 x12=00000595 x12:00000596 +74661711ns 1316061 1c000e84 00130313 addi x6, x6, 1 x6=1c00981b x6:1c00981a +74661731ns 1316062 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000595 +74661810ns 1316066 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00981b PA:1c00981b +74661830ns 1316067 1c000e82 fff60613 addi x12, x12, -1 x12=00000594 x12:00000595 +74661850ns 1316068 1c000e84 00130313 addi x6, x6, 1 x6=1c00981c x6:1c00981b +74661870ns 1316069 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000594 +74661949ns 1316073 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00981c PA:1c00981c +74661969ns 1316074 1c000e82 fff60613 addi x12, x12, -1 x12=00000593 x12:00000594 +74661989ns 1316075 1c000e84 00130313 addi x6, x6, 1 x6=1c00981d x6:1c00981c +74662008ns 1316076 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000593 +74662088ns 1316080 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00981d PA:1c00981d +74662107ns 1316081 1c000e82 fff60613 addi x12, x12, -1 x12=00000592 x12:00000593 +74662127ns 1316082 1c000e84 00130313 addi x6, x6, 1 x6=1c00981e x6:1c00981d +74662147ns 1316083 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000592 +74662226ns 1316087 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00981e PA:1c00981e +74662246ns 1316088 1c000e82 fff60613 addi x12, x12, -1 x12=00000591 x12:00000592 +74662266ns 1316089 1c000e84 00130313 addi x6, x6, 1 x6=1c00981f x6:1c00981e +74662285ns 1316090 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000591 +74662365ns 1316094 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00981f PA:1c00981f +74662384ns 1316095 1c000e82 fff60613 addi x12, x12, -1 x12=00000590 x12:00000591 +74662404ns 1316096 1c000e84 00130313 addi x6, x6, 1 x6=1c009820 x6:1c00981f +74662424ns 1316097 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000590 +74662503ns 1316101 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009820 PA:1c009820 +74662523ns 1316102 1c000e82 fff60613 addi x12, x12, -1 x12=0000058f x12:00000590 +74662543ns 1316103 1c000e84 00130313 addi x6, x6, 1 x6=1c009821 x6:1c009820 +74662563ns 1316104 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000058f +74662642ns 1316108 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009821 PA:1c009821 +74662661ns 1316109 1c000e82 fff60613 addi x12, x12, -1 x12=0000058e x12:0000058f +74662681ns 1316110 1c000e84 00130313 addi x6, x6, 1 x6=1c009822 x6:1c009821 +74662701ns 1316111 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000058e +74662780ns 1316115 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009822 PA:1c009822 +74662800ns 1316116 1c000e82 fff60613 addi x12, x12, -1 x12=0000058d x12:0000058e +74662820ns 1316117 1c000e84 00130313 addi x6, x6, 1 x6=1c009823 x6:1c009822 +74662840ns 1316118 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000058d +74662919ns 1316122 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009823 PA:1c009823 +74662939ns 1316123 1c000e82 fff60613 addi x12, x12, -1 x12=0000058c x12:0000058d +74662958ns 1316124 1c000e84 00130313 addi x6, x6, 1 x6=1c009824 x6:1c009823 +74662978ns 1316125 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000058c +74663057ns 1316129 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009824 PA:1c009824 +74663077ns 1316130 1c000e82 fff60613 addi x12, x12, -1 x12=0000058b x12:0000058c +74663097ns 1316131 1c000e84 00130313 addi x6, x6, 1 x6=1c009825 x6:1c009824 +74663117ns 1316132 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000058b +74663196ns 1316136 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009825 PA:1c009825 +74663216ns 1316137 1c000e82 fff60613 addi x12, x12, -1 x12=0000058a x12:0000058b +74663235ns 1316138 1c000e84 00130313 addi x6, x6, 1 x6=1c009826 x6:1c009825 +74663255ns 1316139 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000058a +74663334ns 1316143 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009826 PA:1c009826 +74663354ns 1316144 1c000e82 fff60613 addi x12, x12, -1 x12=00000589 x12:0000058a +74663374ns 1316145 1c000e84 00130313 addi x6, x6, 1 x6=1c009827 x6:1c009826 +74663394ns 1316146 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000589 +74663473ns 1316150 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009827 PA:1c009827 +74663493ns 1316151 1c000e82 fff60613 addi x12, x12, -1 x12=00000588 x12:00000589 +74663513ns 1316152 1c000e84 00130313 addi x6, x6, 1 x6=1c009828 x6:1c009827 +74663532ns 1316153 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000588 +74663611ns 1316157 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009828 PA:1c009828 +74663631ns 1316158 1c000e82 fff60613 addi x12, x12, -1 x12=00000587 x12:00000588 +74663651ns 1316159 1c000e84 00130313 addi x6, x6, 1 x6=1c009829 x6:1c009828 +74663671ns 1316160 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000587 +74663750ns 1316164 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009829 PA:1c009829 +74663770ns 1316165 1c000e82 fff60613 addi x12, x12, -1 x12=00000586 x12:00000587 +74663790ns 1316166 1c000e84 00130313 addi x6, x6, 1 x6=1c00982a x6:1c009829 +74663809ns 1316167 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000586 +74663889ns 1316171 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00982a PA:1c00982a +74663908ns 1316172 1c000e82 fff60613 addi x12, x12, -1 x12=00000585 x12:00000586 +74663928ns 1316173 1c000e84 00130313 addi x6, x6, 1 x6=1c00982b x6:1c00982a +74663948ns 1316174 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000585 +74664027ns 1316178 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00982b PA:1c00982b +74664047ns 1316179 1c000e82 fff60613 addi x12, x12, -1 x12=00000584 x12:00000585 +74664067ns 1316180 1c000e84 00130313 addi x6, x6, 1 x6=1c00982c x6:1c00982b +74664087ns 1316181 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000584 +74664166ns 1316185 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00982c PA:1c00982c +74664185ns 1316186 1c000e82 fff60613 addi x12, x12, -1 x12=00000583 x12:00000584 +74664205ns 1316187 1c000e84 00130313 addi x6, x6, 1 x6=1c00982d x6:1c00982c +74664225ns 1316188 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000583 +74664304ns 1316192 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00982d PA:1c00982d +74664324ns 1316193 1c000e82 fff60613 addi x12, x12, -1 x12=00000582 x12:00000583 +74664344ns 1316194 1c000e84 00130313 addi x6, x6, 1 x6=1c00982e x6:1c00982d +74664364ns 1316195 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000582 +74664443ns 1316199 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00982e PA:1c00982e +74664463ns 1316200 1c000e82 fff60613 addi x12, x12, -1 x12=00000581 x12:00000582 +74664482ns 1316201 1c000e84 00130313 addi x6, x6, 1 x6=1c00982f x6:1c00982e +74664502ns 1316202 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000581 +74664581ns 1316206 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00982f PA:1c00982f +74664601ns 1316207 1c000e82 fff60613 addi x12, x12, -1 x12=00000580 x12:00000581 +74664621ns 1316208 1c000e84 00130313 addi x6, x6, 1 x6=1c009830 x6:1c00982f +74664641ns 1316209 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000580 +74664720ns 1316213 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009830 PA:1c009830 +74664740ns 1316214 1c000e82 fff60613 addi x12, x12, -1 x12=0000057f x12:00000580 +74664759ns 1316215 1c000e84 00130313 addi x6, x6, 1 x6=1c009831 x6:1c009830 +74664779ns 1316216 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000057f +74664858ns 1316220 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009831 PA:1c009831 +74664878ns 1316221 1c000e82 fff60613 addi x12, x12, -1 x12=0000057e x12:0000057f +74664898ns 1316222 1c000e84 00130313 addi x6, x6, 1 x6=1c009832 x6:1c009831 +74664918ns 1316223 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000057e +74664997ns 1316227 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009832 PA:1c009832 +74665017ns 1316228 1c000e82 fff60613 addi x12, x12, -1 x12=0000057d x12:0000057e +74665037ns 1316229 1c000e84 00130313 addi x6, x6, 1 x6=1c009833 x6:1c009832 +74665056ns 1316230 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000057d +74665135ns 1316234 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009833 PA:1c009833 +74665155ns 1316235 1c000e82 fff60613 addi x12, x12, -1 x12=0000057c x12:0000057d +74665175ns 1316236 1c000e84 00130313 addi x6, x6, 1 x6=1c009834 x6:1c009833 +74665195ns 1316237 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000057c +74665274ns 1316241 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009834 PA:1c009834 +74665294ns 1316242 1c000e82 fff60613 addi x12, x12, -1 x12=0000057b x12:0000057c +74665314ns 1316243 1c000e84 00130313 addi x6, x6, 1 x6=1c009835 x6:1c009834 +74665333ns 1316244 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000057b +74665413ns 1316248 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009835 PA:1c009835 +74665432ns 1316249 1c000e82 fff60613 addi x12, x12, -1 x12=0000057a x12:0000057b +74665452ns 1316250 1c000e84 00130313 addi x6, x6, 1 x6=1c009836 x6:1c009835 +74665472ns 1316251 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000057a +74665551ns 1316255 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009836 PA:1c009836 +74665571ns 1316256 1c000e82 fff60613 addi x12, x12, -1 x12=00000579 x12:0000057a +74665591ns 1316257 1c000e84 00130313 addi x6, x6, 1 x6=1c009837 x6:1c009836 +74665610ns 1316258 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000579 +74665690ns 1316262 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009837 PA:1c009837 +74665709ns 1316263 1c000e82 fff60613 addi x12, x12, -1 x12=00000578 x12:00000579 +74665729ns 1316264 1c000e84 00130313 addi x6, x6, 1 x6=1c009838 x6:1c009837 +74665749ns 1316265 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000578 +74665828ns 1316269 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009838 PA:1c009838 +74665848ns 1316270 1c000e82 fff60613 addi x12, x12, -1 x12=00000577 x12:00000578 +74665868ns 1316271 1c000e84 00130313 addi x6, x6, 1 x6=1c009839 x6:1c009838 +74665888ns 1316272 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000577 +74665967ns 1316276 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009839 PA:1c009839 +74665987ns 1316277 1c000e82 fff60613 addi x12, x12, -1 x12=00000576 x12:00000577 +74666006ns 1316278 1c000e84 00130313 addi x6, x6, 1 x6=1c00983a x6:1c009839 +74666026ns 1316279 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000576 +74666105ns 1316283 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00983a PA:1c00983a +74666125ns 1316284 1c000e82 fff60613 addi x12, x12, -1 x12=00000575 x12:00000576 +74666145ns 1316285 1c000e84 00130313 addi x6, x6, 1 x6=1c00983b x6:1c00983a +74666165ns 1316286 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000575 +74666244ns 1316290 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00983b PA:1c00983b +74666264ns 1316291 1c000e82 fff60613 addi x12, x12, -1 x12=00000574 x12:00000575 +74666283ns 1316292 1c000e84 00130313 addi x6, x6, 1 x6=1c00983c x6:1c00983b +74666303ns 1316293 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000574 +74666382ns 1316297 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00983c PA:1c00983c +74666402ns 1316298 1c000e82 fff60613 addi x12, x12, -1 x12=00000573 x12:00000574 +74666422ns 1316299 1c000e84 00130313 addi x6, x6, 1 x6=1c00983d x6:1c00983c +74666442ns 1316300 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000573 +74666521ns 1316304 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00983d PA:1c00983d +74666541ns 1316305 1c000e82 fff60613 addi x12, x12, -1 x12=00000572 x12:00000573 +74666561ns 1316306 1c000e84 00130313 addi x6, x6, 1 x6=1c00983e x6:1c00983d +74666580ns 1316307 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000572 +74666659ns 1316311 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00983e PA:1c00983e +74666679ns 1316312 1c000e82 fff60613 addi x12, x12, -1 x12=00000571 x12:00000572 +74666699ns 1316313 1c000e84 00130313 addi x6, x6, 1 x6=1c00983f x6:1c00983e +74666719ns 1316314 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000571 +74666798ns 1316318 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00983f PA:1c00983f +74666818ns 1316319 1c000e82 fff60613 addi x12, x12, -1 x12=00000570 x12:00000571 +74666838ns 1316320 1c000e84 00130313 addi x6, x6, 1 x6=1c009840 x6:1c00983f +74666857ns 1316321 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000570 +74666937ns 1316325 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009840 PA:1c009840 +74666956ns 1316326 1c000e82 fff60613 addi x12, x12, -1 x12=0000056f x12:00000570 +74666976ns 1316327 1c000e84 00130313 addi x6, x6, 1 x6=1c009841 x6:1c009840 +74666996ns 1316328 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000056f +74667075ns 1316332 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009841 PA:1c009841 +74667095ns 1316333 1c000e82 fff60613 addi x12, x12, -1 x12=0000056e x12:0000056f +74667115ns 1316334 1c000e84 00130313 addi x6, x6, 1 x6=1c009842 x6:1c009841 +74667134ns 1316335 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000056e +74667214ns 1316339 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009842 PA:1c009842 +74667233ns 1316340 1c000e82 fff60613 addi x12, x12, -1 x12=0000056d x12:0000056e +74667253ns 1316341 1c000e84 00130313 addi x6, x6, 1 x6=1c009843 x6:1c009842 +74667273ns 1316342 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000056d +74667352ns 1316346 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009843 PA:1c009843 +74667372ns 1316347 1c000e82 fff60613 addi x12, x12, -1 x12=0000056c x12:0000056d +74667392ns 1316348 1c000e84 00130313 addi x6, x6, 1 x6=1c009844 x6:1c009843 +74667412ns 1316349 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000056c +74667491ns 1316353 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009844 PA:1c009844 +74667511ns 1316354 1c000e82 fff60613 addi x12, x12, -1 x12=0000056b x12:0000056c +74667530ns 1316355 1c000e84 00130313 addi x6, x6, 1 x6=1c009845 x6:1c009844 +74667550ns 1316356 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000056b +74667629ns 1316360 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009845 PA:1c009845 +74667649ns 1316361 1c000e82 fff60613 addi x12, x12, -1 x12=0000056a x12:0000056b +74667669ns 1316362 1c000e84 00130313 addi x6, x6, 1 x6=1c009846 x6:1c009845 +74667689ns 1316363 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000056a +74667768ns 1316367 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009846 PA:1c009846 +74667788ns 1316368 1c000e82 fff60613 addi x12, x12, -1 x12=00000569 x12:0000056a +74667807ns 1316369 1c000e84 00130313 addi x6, x6, 1 x6=1c009847 x6:1c009846 +74667827ns 1316370 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000569 +74667906ns 1316374 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009847 PA:1c009847 +74667926ns 1316375 1c000e82 fff60613 addi x12, x12, -1 x12=00000568 x12:00000569 +74667946ns 1316376 1c000e84 00130313 addi x6, x6, 1 x6=1c009848 x6:1c009847 +74667966ns 1316377 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000568 +74668045ns 1316381 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009848 PA:1c009848 +74668065ns 1316382 1c000e82 fff60613 addi x12, x12, -1 x12=00000567 x12:00000568 +74668084ns 1316383 1c000e84 00130313 addi x6, x6, 1 x6=1c009849 x6:1c009848 +74668104ns 1316384 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000567 +74668183ns 1316388 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009849 PA:1c009849 +74668203ns 1316389 1c000e82 fff60613 addi x12, x12, -1 x12=00000566 x12:00000567 +74668223ns 1316390 1c000e84 00130313 addi x6, x6, 1 x6=1c00984a x6:1c009849 +74668243ns 1316391 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000566 +74668322ns 1316395 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00984a PA:1c00984a +74668342ns 1316396 1c000e82 fff60613 addi x12, x12, -1 x12=00000565 x12:00000566 +74668362ns 1316397 1c000e84 00130313 addi x6, x6, 1 x6=1c00984b x6:1c00984a +74668381ns 1316398 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000565 +74668461ns 1316402 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00984b PA:1c00984b +74668480ns 1316403 1c000e82 fff60613 addi x12, x12, -1 x12=00000564 x12:00000565 +74668500ns 1316404 1c000e84 00130313 addi x6, x6, 1 x6=1c00984c x6:1c00984b +74668520ns 1316405 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000564 +74668599ns 1316409 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00984c PA:1c00984c +74668619ns 1316410 1c000e82 fff60613 addi x12, x12, -1 x12=00000563 x12:00000564 +74668639ns 1316411 1c000e84 00130313 addi x6, x6, 1 x6=1c00984d x6:1c00984c +74668658ns 1316412 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000563 +74668738ns 1316416 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00984d PA:1c00984d +74668757ns 1316417 1c000e82 fff60613 addi x12, x12, -1 x12=00000562 x12:00000563 +74668777ns 1316418 1c000e84 00130313 addi x6, x6, 1 x6=1c00984e x6:1c00984d +74668797ns 1316419 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000562 +74668876ns 1316423 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00984e PA:1c00984e +74668896ns 1316424 1c000e82 fff60613 addi x12, x12, -1 x12=00000561 x12:00000562 +74668916ns 1316425 1c000e84 00130313 addi x6, x6, 1 x6=1c00984f x6:1c00984e +74668936ns 1316426 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000561 +74669015ns 1316430 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00984f PA:1c00984f +74669035ns 1316431 1c000e82 fff60613 addi x12, x12, -1 x12=00000560 x12:00000561 +74669054ns 1316432 1c000e84 00130313 addi x6, x6, 1 x6=1c009850 x6:1c00984f +74669074ns 1316433 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000560 +74669153ns 1316437 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009850 PA:1c009850 +74669173ns 1316438 1c000e82 fff60613 addi x12, x12, -1 x12=0000055f x12:00000560 +74669193ns 1316439 1c000e84 00130313 addi x6, x6, 1 x6=1c009851 x6:1c009850 +74669213ns 1316440 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000055f +74669292ns 1316444 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009851 PA:1c009851 +74669312ns 1316445 1c000e82 fff60613 addi x12, x12, -1 x12=0000055e x12:0000055f +74669331ns 1316446 1c000e84 00130313 addi x6, x6, 1 x6=1c009852 x6:1c009851 +74669351ns 1316447 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000055e +74669430ns 1316451 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009852 PA:1c009852 +74669450ns 1316452 1c000e82 fff60613 addi x12, x12, -1 x12=0000055d x12:0000055e +74669470ns 1316453 1c000e84 00130313 addi x6, x6, 1 x6=1c009853 x6:1c009852 +74669490ns 1316454 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000055d +74669569ns 1316458 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009853 PA:1c009853 +74669589ns 1316459 1c000e82 fff60613 addi x12, x12, -1 x12=0000055c x12:0000055d +74669608ns 1316460 1c000e84 00130313 addi x6, x6, 1 x6=1c009854 x6:1c009853 +74669628ns 1316461 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000055c +74669707ns 1316465 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009854 PA:1c009854 +74669727ns 1316466 1c000e82 fff60613 addi x12, x12, -1 x12=0000055b x12:0000055c +74669747ns 1316467 1c000e84 00130313 addi x6, x6, 1 x6=1c009855 x6:1c009854 +74669767ns 1316468 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000055b +74669846ns 1316472 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009855 PA:1c009855 +74669866ns 1316473 1c000e82 fff60613 addi x12, x12, -1 x12=0000055a x12:0000055b +74669886ns 1316474 1c000e84 00130313 addi x6, x6, 1 x6=1c009856 x6:1c009855 +74669905ns 1316475 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000055a +74669985ns 1316479 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009856 PA:1c009856 +74670004ns 1316480 1c000e82 fff60613 addi x12, x12, -1 x12=00000559 x12:0000055a +74670024ns 1316481 1c000e84 00130313 addi x6, x6, 1 x6=1c009857 x6:1c009856 +74670044ns 1316482 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000559 +74670123ns 1316486 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009857 PA:1c009857 +74670143ns 1316487 1c000e82 fff60613 addi x12, x12, -1 x12=00000558 x12:00000559 +74670163ns 1316488 1c000e84 00130313 addi x6, x6, 1 x6=1c009858 x6:1c009857 +74670182ns 1316489 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000558 +74670262ns 1316493 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009858 PA:1c009858 +74670281ns 1316494 1c000e82 fff60613 addi x12, x12, -1 x12=00000557 x12:00000558 +74670301ns 1316495 1c000e84 00130313 addi x6, x6, 1 x6=1c009859 x6:1c009858 +74670321ns 1316496 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000557 +74670400ns 1316500 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009859 PA:1c009859 +74670420ns 1316501 1c000e82 fff60613 addi x12, x12, -1 x12=00000556 x12:00000557 +74670440ns 1316502 1c000e84 00130313 addi x6, x6, 1 x6=1c00985a x6:1c009859 +74670460ns 1316503 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000556 +74670539ns 1316507 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00985a PA:1c00985a +74670558ns 1316508 1c000e82 fff60613 addi x12, x12, -1 x12=00000555 x12:00000556 +74670578ns 1316509 1c000e84 00130313 addi x6, x6, 1 x6=1c00985b x6:1c00985a +74670598ns 1316510 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000555 +74670677ns 1316514 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00985b PA:1c00985b +74670697ns 1316515 1c000e82 fff60613 addi x12, x12, -1 x12=00000554 x12:00000555 +74670717ns 1316516 1c000e84 00130313 addi x6, x6, 1 x6=1c00985c x6:1c00985b +74670737ns 1316517 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000554 +74670816ns 1316521 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00985c PA:1c00985c +74670836ns 1316522 1c000e82 fff60613 addi x12, x12, -1 x12=00000553 x12:00000554 +74670855ns 1316523 1c000e84 00130313 addi x6, x6, 1 x6=1c00985d x6:1c00985c +74670875ns 1316524 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000553 +74670954ns 1316528 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00985d PA:1c00985d +74670974ns 1316529 1c000e82 fff60613 addi x12, x12, -1 x12=00000552 x12:00000553 +74670994ns 1316530 1c000e84 00130313 addi x6, x6, 1 x6=1c00985e x6:1c00985d +74671014ns 1316531 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000552 +74671093ns 1316535 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00985e PA:1c00985e +74671113ns 1316536 1c000e82 fff60613 addi x12, x12, -1 x12=00000551 x12:00000552 +74671132ns 1316537 1c000e84 00130313 addi x6, x6, 1 x6=1c00985f x6:1c00985e +74671152ns 1316538 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000551 +74671231ns 1316542 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00985f PA:1c00985f +74671251ns 1316543 1c000e82 fff60613 addi x12, x12, -1 x12=00000550 x12:00000551 +74671271ns 1316544 1c000e84 00130313 addi x6, x6, 1 x6=1c009860 x6:1c00985f +74671291ns 1316545 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000550 +74671370ns 1316549 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009860 PA:1c009860 +74671390ns 1316550 1c000e82 fff60613 addi x12, x12, -1 x12=0000054f x12:00000550 +74671410ns 1316551 1c000e84 00130313 addi x6, x6, 1 x6=1c009861 x6:1c009860 +74671429ns 1316552 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000054f +74671509ns 1316556 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009861 PA:1c009861 +74671528ns 1316557 1c000e82 fff60613 addi x12, x12, -1 x12=0000054e x12:0000054f +74671548ns 1316558 1c000e84 00130313 addi x6, x6, 1 x6=1c009862 x6:1c009861 +74671568ns 1316559 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000054e +74671647ns 1316563 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009862 PA:1c009862 +74671667ns 1316564 1c000e82 fff60613 addi x12, x12, -1 x12=0000054d x12:0000054e +74671687ns 1316565 1c000e84 00130313 addi x6, x6, 1 x6=1c009863 x6:1c009862 +74671706ns 1316566 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000054d +74671786ns 1316570 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009863 PA:1c009863 +74671805ns 1316571 1c000e82 fff60613 addi x12, x12, -1 x12=0000054c x12:0000054d +74671825ns 1316572 1c000e84 00130313 addi x6, x6, 1 x6=1c009864 x6:1c009863 +74671845ns 1316573 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000054c +74671924ns 1316577 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009864 PA:1c009864 +74671944ns 1316578 1c000e82 fff60613 addi x12, x12, -1 x12=0000054b x12:0000054c +74671964ns 1316579 1c000e84 00130313 addi x6, x6, 1 x6=1c009865 x6:1c009864 +74671984ns 1316580 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000054b +74672063ns 1316584 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009865 PA:1c009865 +74672082ns 1316585 1c000e82 fff60613 addi x12, x12, -1 x12=0000054a x12:0000054b +74672102ns 1316586 1c000e84 00130313 addi x6, x6, 1 x6=1c009866 x6:1c009865 +74672122ns 1316587 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000054a +74672201ns 1316591 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009866 PA:1c009866 +74672221ns 1316592 1c000e82 fff60613 addi x12, x12, -1 x12=00000549 x12:0000054a +74672241ns 1316593 1c000e84 00130313 addi x6, x6, 1 x6=1c009867 x6:1c009866 +74672261ns 1316594 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000549 +74672340ns 1316598 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009867 PA:1c009867 +74672360ns 1316599 1c000e82 fff60613 addi x12, x12, -1 x12=00000548 x12:00000549 +74672379ns 1316600 1c000e84 00130313 addi x6, x6, 1 x6=1c009868 x6:1c009867 +74672399ns 1316601 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000548 +74672478ns 1316605 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009868 PA:1c009868 +74672498ns 1316606 1c000e82 fff60613 addi x12, x12, -1 x12=00000547 x12:00000548 +74672518ns 1316607 1c000e84 00130313 addi x6, x6, 1 x6=1c009869 x6:1c009868 +74672538ns 1316608 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000547 +74672617ns 1316612 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009869 PA:1c009869 +74672637ns 1316613 1c000e82 fff60613 addi x12, x12, -1 x12=00000546 x12:00000547 +74672656ns 1316614 1c000e84 00130313 addi x6, x6, 1 x6=1c00986a x6:1c009869 +74672676ns 1316615 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000546 +74672755ns 1316619 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00986a PA:1c00986a +74672775ns 1316620 1c000e82 fff60613 addi x12, x12, -1 x12=00000545 x12:00000546 +74672795ns 1316621 1c000e84 00130313 addi x6, x6, 1 x6=1c00986b x6:1c00986a +74672815ns 1316622 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000545 +74672894ns 1316626 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00986b PA:1c00986b +74672914ns 1316627 1c000e82 fff60613 addi x12, x12, -1 x12=00000544 x12:00000545 +74672934ns 1316628 1c000e84 00130313 addi x6, x6, 1 x6=1c00986c x6:1c00986b +74672953ns 1316629 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000544 +74673032ns 1316633 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00986c PA:1c00986c +74673052ns 1316634 1c000e82 fff60613 addi x12, x12, -1 x12=00000543 x12:00000544 +74673072ns 1316635 1c000e84 00130313 addi x6, x6, 1 x6=1c00986d x6:1c00986c +74673092ns 1316636 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000543 +74673171ns 1316640 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00986d PA:1c00986d +74673191ns 1316641 1c000e82 fff60613 addi x12, x12, -1 x12=00000542 x12:00000543 +74673211ns 1316642 1c000e84 00130313 addi x6, x6, 1 x6=1c00986e x6:1c00986d +74673230ns 1316643 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000542 +74673310ns 1316647 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00986e PA:1c00986e +74673329ns 1316648 1c000e82 fff60613 addi x12, x12, -1 x12=00000541 x12:00000542 +74673349ns 1316649 1c000e84 00130313 addi x6, x6, 1 x6=1c00986f x6:1c00986e +74673369ns 1316650 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000541 +74673448ns 1316654 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00986f PA:1c00986f +74673468ns 1316655 1c000e82 fff60613 addi x12, x12, -1 x12=00000540 x12:00000541 +74673488ns 1316656 1c000e84 00130313 addi x6, x6, 1 x6=1c009870 x6:1c00986f +74673507ns 1316657 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000540 +74673587ns 1316661 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009870 PA:1c009870 +74673606ns 1316662 1c000e82 fff60613 addi x12, x12, -1 x12=0000053f x12:00000540 +74673626ns 1316663 1c000e84 00130313 addi x6, x6, 1 x6=1c009871 x6:1c009870 +74673646ns 1316664 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000053f +74673725ns 1316668 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009871 PA:1c009871 +74673745ns 1316669 1c000e82 fff60613 addi x12, x12, -1 x12=0000053e x12:0000053f +74673765ns 1316670 1c000e84 00130313 addi x6, x6, 1 x6=1c009872 x6:1c009871 +74673785ns 1316671 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000053e +74673864ns 1316675 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009872 PA:1c009872 +74673884ns 1316676 1c000e82 fff60613 addi x12, x12, -1 x12=0000053d x12:0000053e +74673903ns 1316677 1c000e84 00130313 addi x6, x6, 1 x6=1c009873 x6:1c009872 +74673923ns 1316678 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000053d +74674002ns 1316682 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009873 PA:1c009873 +74674022ns 1316683 1c000e82 fff60613 addi x12, x12, -1 x12=0000053c x12:0000053d +74674042ns 1316684 1c000e84 00130313 addi x6, x6, 1 x6=1c009874 x6:1c009873 +74674062ns 1316685 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000053c +74674141ns 1316689 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009874 PA:1c009874 +74674161ns 1316690 1c000e82 fff60613 addi x12, x12, -1 x12=0000053b x12:0000053c +74674180ns 1316691 1c000e84 00130313 addi x6, x6, 1 x6=1c009875 x6:1c009874 +74674200ns 1316692 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000053b +74674279ns 1316696 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009875 PA:1c009875 +74674299ns 1316697 1c000e82 fff60613 addi x12, x12, -1 x12=0000053a x12:0000053b +74674319ns 1316698 1c000e84 00130313 addi x6, x6, 1 x6=1c009876 x6:1c009875 +74674339ns 1316699 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000053a +74674418ns 1316703 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009876 PA:1c009876 +74674438ns 1316704 1c000e82 fff60613 addi x12, x12, -1 x12=00000539 x12:0000053a +74674458ns 1316705 1c000e84 00130313 addi x6, x6, 1 x6=1c009877 x6:1c009876 +74674477ns 1316706 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000539 +74674556ns 1316710 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009877 PA:1c009877 +74674576ns 1316711 1c000e82 fff60613 addi x12, x12, -1 x12=00000538 x12:00000539 +74674596ns 1316712 1c000e84 00130313 addi x6, x6, 1 x6=1c009878 x6:1c009877 +74674616ns 1316713 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000538 +74674695ns 1316717 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009878 PA:1c009878 +74674715ns 1316718 1c000e82 fff60613 addi x12, x12, -1 x12=00000537 x12:00000538 +74674735ns 1316719 1c000e84 00130313 addi x6, x6, 1 x6=1c009879 x6:1c009878 +74674754ns 1316720 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000537 +74674834ns 1316724 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009879 PA:1c009879 +74674853ns 1316725 1c000e82 fff60613 addi x12, x12, -1 x12=00000536 x12:00000537 +74674873ns 1316726 1c000e84 00130313 addi x6, x6, 1 x6=1c00987a x6:1c009879 +74674893ns 1316727 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000536 +74674972ns 1316731 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00987a PA:1c00987a +74674992ns 1316732 1c000e82 fff60613 addi x12, x12, -1 x12=00000535 x12:00000536 +74675012ns 1316733 1c000e84 00130313 addi x6, x6, 1 x6=1c00987b x6:1c00987a +74675031ns 1316734 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000535 +74675111ns 1316738 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00987b PA:1c00987b +74675130ns 1316739 1c000e82 fff60613 addi x12, x12, -1 x12=00000534 x12:00000535 +74675150ns 1316740 1c000e84 00130313 addi x6, x6, 1 x6=1c00987c x6:1c00987b +74675170ns 1316741 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000534 +74675249ns 1316745 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00987c PA:1c00987c +74675269ns 1316746 1c000e82 fff60613 addi x12, x12, -1 x12=00000533 x12:00000534 +74675289ns 1316747 1c000e84 00130313 addi x6, x6, 1 x6=1c00987d x6:1c00987c +74675309ns 1316748 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000533 +74675388ns 1316752 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00987d PA:1c00987d +74675408ns 1316753 1c000e82 fff60613 addi x12, x12, -1 x12=00000532 x12:00000533 +74675427ns 1316754 1c000e84 00130313 addi x6, x6, 1 x6=1c00987e x6:1c00987d +74675447ns 1316755 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000532 +74675526ns 1316759 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00987e PA:1c00987e +74675546ns 1316760 1c000e82 fff60613 addi x12, x12, -1 x12=00000531 x12:00000532 +74675566ns 1316761 1c000e84 00130313 addi x6, x6, 1 x6=1c00987f x6:1c00987e +74675586ns 1316762 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000531 +74675665ns 1316766 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00987f PA:1c00987f +74675685ns 1316767 1c000e82 fff60613 addi x12, x12, -1 x12=00000530 x12:00000531 +74675704ns 1316768 1c000e84 00130313 addi x6, x6, 1 x6=1c009880 x6:1c00987f +74675724ns 1316769 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000530 +74675803ns 1316773 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009880 PA:1c009880 +74675823ns 1316774 1c000e82 fff60613 addi x12, x12, -1 x12=0000052f x12:00000530 +74675843ns 1316775 1c000e84 00130313 addi x6, x6, 1 x6=1c009881 x6:1c009880 +74675863ns 1316776 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000052f +74675942ns 1316780 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009881 PA:1c009881 +74675962ns 1316781 1c000e82 fff60613 addi x12, x12, -1 x12=0000052e x12:0000052f +74675981ns 1316782 1c000e84 00130313 addi x6, x6, 1 x6=1c009882 x6:1c009881 +74676001ns 1316783 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000052e +74676080ns 1316787 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009882 PA:1c009882 +74676100ns 1316788 1c000e82 fff60613 addi x12, x12, -1 x12=0000052d x12:0000052e +74676120ns 1316789 1c000e84 00130313 addi x6, x6, 1 x6=1c009883 x6:1c009882 +74676140ns 1316790 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000052d +74676219ns 1316794 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009883 PA:1c009883 +74676239ns 1316795 1c000e82 fff60613 addi x12, x12, -1 x12=0000052c x12:0000052d +74676259ns 1316796 1c000e84 00130313 addi x6, x6, 1 x6=1c009884 x6:1c009883 +74676278ns 1316797 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000052c +74676358ns 1316801 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009884 PA:1c009884 +74676377ns 1316802 1c000e82 fff60613 addi x12, x12, -1 x12=0000052b x12:0000052c +74676397ns 1316803 1c000e84 00130313 addi x6, x6, 1 x6=1c009885 x6:1c009884 +74676417ns 1316804 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000052b +74676496ns 1316808 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009885 PA:1c009885 +74676516ns 1316809 1c000e82 fff60613 addi x12, x12, -1 x12=0000052a x12:0000052b +74676536ns 1316810 1c000e84 00130313 addi x6, x6, 1 x6=1c009886 x6:1c009885 +74676555ns 1316811 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000052a +74676635ns 1316815 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009886 PA:1c009886 +74676654ns 1316816 1c000e82 fff60613 addi x12, x12, -1 x12=00000529 x12:0000052a +74676674ns 1316817 1c000e84 00130313 addi x6, x6, 1 x6=1c009887 x6:1c009886 +74676694ns 1316818 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000529 +74676773ns 1316822 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009887 PA:1c009887 +74676793ns 1316823 1c000e82 fff60613 addi x12, x12, -1 x12=00000528 x12:00000529 +74676813ns 1316824 1c000e84 00130313 addi x6, x6, 1 x6=1c009888 x6:1c009887 +74676833ns 1316825 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000528 +74676912ns 1316829 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009888 PA:1c009888 +74676932ns 1316830 1c000e82 fff60613 addi x12, x12, -1 x12=00000527 x12:00000528 +74676951ns 1316831 1c000e84 00130313 addi x6, x6, 1 x6=1c009889 x6:1c009888 +74676971ns 1316832 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000527 +74677050ns 1316836 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009889 PA:1c009889 +74677070ns 1316837 1c000e82 fff60613 addi x12, x12, -1 x12=00000526 x12:00000527 +74677090ns 1316838 1c000e84 00130313 addi x6, x6, 1 x6=1c00988a x6:1c009889 +74677110ns 1316839 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000526 +74677189ns 1316843 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00988a PA:1c00988a +74677209ns 1316844 1c000e82 fff60613 addi x12, x12, -1 x12=00000525 x12:00000526 +74677228ns 1316845 1c000e84 00130313 addi x6, x6, 1 x6=1c00988b x6:1c00988a +74677248ns 1316846 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000525 +74677327ns 1316850 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00988b PA:1c00988b +74677347ns 1316851 1c000e82 fff60613 addi x12, x12, -1 x12=00000524 x12:00000525 +74677367ns 1316852 1c000e84 00130313 addi x6, x6, 1 x6=1c00988c x6:1c00988b +74677387ns 1316853 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000524 +74677466ns 1316857 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00988c PA:1c00988c +74677486ns 1316858 1c000e82 fff60613 addi x12, x12, -1 x12=00000523 x12:00000524 +74677505ns 1316859 1c000e84 00130313 addi x6, x6, 1 x6=1c00988d x6:1c00988c +74677525ns 1316860 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000523 +74677604ns 1316864 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00988d PA:1c00988d +74677624ns 1316865 1c000e82 fff60613 addi x12, x12, -1 x12=00000522 x12:00000523 +74677644ns 1316866 1c000e84 00130313 addi x6, x6, 1 x6=1c00988e x6:1c00988d +74677664ns 1316867 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000522 +74677743ns 1316871 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00988e PA:1c00988e +74677763ns 1316872 1c000e82 fff60613 addi x12, x12, -1 x12=00000521 x12:00000522 +74677783ns 1316873 1c000e84 00130313 addi x6, x6, 1 x6=1c00988f x6:1c00988e +74677802ns 1316874 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000521 +74677882ns 1316878 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00988f PA:1c00988f +74677901ns 1316879 1c000e82 fff60613 addi x12, x12, -1 x12=00000520 x12:00000521 +74677921ns 1316880 1c000e84 00130313 addi x6, x6, 1 x6=1c009890 x6:1c00988f +74677941ns 1316881 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000520 +74678020ns 1316885 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009890 PA:1c009890 +74678040ns 1316886 1c000e82 fff60613 addi x12, x12, -1 x12=0000051f x12:00000520 +74678060ns 1316887 1c000e84 00130313 addi x6, x6, 1 x6=1c009891 x6:1c009890 +74678079ns 1316888 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000051f +74678159ns 1316892 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009891 PA:1c009891 +74678178ns 1316893 1c000e82 fff60613 addi x12, x12, -1 x12=0000051e x12:0000051f +74678198ns 1316894 1c000e84 00130313 addi x6, x6, 1 x6=1c009892 x6:1c009891 +74678218ns 1316895 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000051e +74678297ns 1316899 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009892 PA:1c009892 +74678317ns 1316900 1c000e82 fff60613 addi x12, x12, -1 x12=0000051d x12:0000051e +74678337ns 1316901 1c000e84 00130313 addi x6, x6, 1 x6=1c009893 x6:1c009892 +74678357ns 1316902 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000051d +74678436ns 1316906 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009893 PA:1c009893 +74678455ns 1316907 1c000e82 fff60613 addi x12, x12, -1 x12=0000051c x12:0000051d +74678475ns 1316908 1c000e84 00130313 addi x6, x6, 1 x6=1c009894 x6:1c009893 +74678495ns 1316909 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000051c +74678574ns 1316913 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009894 PA:1c009894 +74678594ns 1316914 1c000e82 fff60613 addi x12, x12, -1 x12=0000051b x12:0000051c +74678614ns 1316915 1c000e84 00130313 addi x6, x6, 1 x6=1c009895 x6:1c009894 +74678634ns 1316916 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000051b +74678713ns 1316920 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009895 PA:1c009895 +74678733ns 1316921 1c000e82 fff60613 addi x12, x12, -1 x12=0000051a x12:0000051b +74678752ns 1316922 1c000e84 00130313 addi x6, x6, 1 x6=1c009896 x6:1c009895 +74678772ns 1316923 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000051a +74678851ns 1316927 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009896 PA:1c009896 +74678871ns 1316928 1c000e82 fff60613 addi x12, x12, -1 x12=00000519 x12:0000051a +74678891ns 1316929 1c000e84 00130313 addi x6, x6, 1 x6=1c009897 x6:1c009896 +74678911ns 1316930 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000519 +74678990ns 1316934 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009897 PA:1c009897 +74679010ns 1316935 1c000e82 fff60613 addi x12, x12, -1 x12=00000518 x12:00000519 +74679029ns 1316936 1c000e84 00130313 addi x6, x6, 1 x6=1c009898 x6:1c009897 +74679049ns 1316937 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000518 +74679128ns 1316941 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009898 PA:1c009898 +74679148ns 1316942 1c000e82 fff60613 addi x12, x12, -1 x12=00000517 x12:00000518 +74679168ns 1316943 1c000e84 00130313 addi x6, x6, 1 x6=1c009899 x6:1c009898 +74679188ns 1316944 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000517 +74679267ns 1316948 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009899 PA:1c009899 +74679287ns 1316949 1c000e82 fff60613 addi x12, x12, -1 x12=00000516 x12:00000517 +74679307ns 1316950 1c000e84 00130313 addi x6, x6, 1 x6=1c00989a x6:1c009899 +74679326ns 1316951 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000516 +74679406ns 1316955 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00989a PA:1c00989a +74679425ns 1316956 1c000e82 fff60613 addi x12, x12, -1 x12=00000515 x12:00000516 +74679445ns 1316957 1c000e84 00130313 addi x6, x6, 1 x6=1c00989b x6:1c00989a +74679465ns 1316958 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000515 +74679544ns 1316962 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00989b PA:1c00989b +74679564ns 1316963 1c000e82 fff60613 addi x12, x12, -1 x12=00000514 x12:00000515 +74679584ns 1316964 1c000e84 00130313 addi x6, x6, 1 x6=1c00989c x6:1c00989b +74679603ns 1316965 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000514 +74679683ns 1316969 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00989c PA:1c00989c +74679702ns 1316970 1c000e82 fff60613 addi x12, x12, -1 x12=00000513 x12:00000514 +74679722ns 1316971 1c000e84 00130313 addi x6, x6, 1 x6=1c00989d x6:1c00989c +74679742ns 1316972 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000513 +74679821ns 1316976 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00989d PA:1c00989d +74679841ns 1316977 1c000e82 fff60613 addi x12, x12, -1 x12=00000512 x12:00000513 +74679861ns 1316978 1c000e84 00130313 addi x6, x6, 1 x6=1c00989e x6:1c00989d +74679881ns 1316979 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000512 +74679960ns 1316983 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00989e PA:1c00989e +74679979ns 1316984 1c000e82 fff60613 addi x12, x12, -1 x12=00000511 x12:00000512 +74679999ns 1316985 1c000e84 00130313 addi x6, x6, 1 x6=1c00989f x6:1c00989e +74680019ns 1316986 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000511 +74680098ns 1316990 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00989f PA:1c00989f +74680118ns 1316991 1c000e82 fff60613 addi x12, x12, -1 x12=00000510 x12:00000511 +74680138ns 1316992 1c000e84 00130313 addi x6, x6, 1 x6=1c0098a0 x6:1c00989f +74680158ns 1316993 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000510 +74680237ns 1316997 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098a0 PA:1c0098a0 +74680257ns 1316998 1c000e82 fff60613 addi x12, x12, -1 x12=0000050f x12:00000510 +74680276ns 1316999 1c000e84 00130313 addi x6, x6, 1 x6=1c0098a1 x6:1c0098a0 +74680296ns 1317000 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000050f +74680375ns 1317004 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098a1 PA:1c0098a1 +74680395ns 1317005 1c000e82 fff60613 addi x12, x12, -1 x12=0000050e x12:0000050f +74680415ns 1317006 1c000e84 00130313 addi x6, x6, 1 x6=1c0098a2 x6:1c0098a1 +74680435ns 1317007 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000050e +74680514ns 1317011 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098a2 PA:1c0098a2 +74680534ns 1317012 1c000e82 fff60613 addi x12, x12, -1 x12=0000050d x12:0000050e +74680553ns 1317013 1c000e84 00130313 addi x6, x6, 1 x6=1c0098a3 x6:1c0098a2 +74680573ns 1317014 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000050d +74680652ns 1317018 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098a3 PA:1c0098a3 +74680672ns 1317019 1c000e82 fff60613 addi x12, x12, -1 x12=0000050c x12:0000050d +74680692ns 1317020 1c000e84 00130313 addi x6, x6, 1 x6=1c0098a4 x6:1c0098a3 +74680712ns 1317021 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000050c +74680791ns 1317025 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098a4 PA:1c0098a4 +74680811ns 1317026 1c000e82 fff60613 addi x12, x12, -1 x12=0000050b x12:0000050c +74680831ns 1317027 1c000e84 00130313 addi x6, x6, 1 x6=1c0098a5 x6:1c0098a4 +74680850ns 1317028 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000050b +74680929ns 1317032 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098a5 PA:1c0098a5 +74680949ns 1317033 1c000e82 fff60613 addi x12, x12, -1 x12=0000050a x12:0000050b +74680969ns 1317034 1c000e84 00130313 addi x6, x6, 1 x6=1c0098a6 x6:1c0098a5 +74680989ns 1317035 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000050a +74681068ns 1317039 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098a6 PA:1c0098a6 +74681088ns 1317040 1c000e82 fff60613 addi x12, x12, -1 x12=00000509 x12:0000050a +74681108ns 1317041 1c000e84 00130313 addi x6, x6, 1 x6=1c0098a7 x6:1c0098a6 +74681127ns 1317042 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000509 +74681207ns 1317046 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098a7 PA:1c0098a7 +74681226ns 1317047 1c000e82 fff60613 addi x12, x12, -1 x12=00000508 x12:00000509 +74681246ns 1317048 1c000e84 00130313 addi x6, x6, 1 x6=1c0098a8 x6:1c0098a7 +74681266ns 1317049 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000508 +74681345ns 1317053 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098a8 PA:1c0098a8 +74681365ns 1317054 1c000e82 fff60613 addi x12, x12, -1 x12=00000507 x12:00000508 +74681385ns 1317055 1c000e84 00130313 addi x6, x6, 1 x6=1c0098a9 x6:1c0098a8 +74681405ns 1317056 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000507 +74681484ns 1317060 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098a9 PA:1c0098a9 +74681503ns 1317061 1c000e82 fff60613 addi x12, x12, -1 x12=00000506 x12:00000507 +74681523ns 1317062 1c000e84 00130313 addi x6, x6, 1 x6=1c0098aa x6:1c0098a9 +74681543ns 1317063 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000506 +74681622ns 1317067 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098aa PA:1c0098aa +74681642ns 1317068 1c000e82 fff60613 addi x12, x12, -1 x12=00000505 x12:00000506 +74681662ns 1317069 1c000e84 00130313 addi x6, x6, 1 x6=1c0098ab x6:1c0098aa +74681682ns 1317070 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000505 +74681761ns 1317074 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098ab PA:1c0098ab +74681781ns 1317075 1c000e82 fff60613 addi x12, x12, -1 x12=00000504 x12:00000505 +74681800ns 1317076 1c000e84 00130313 addi x6, x6, 1 x6=1c0098ac x6:1c0098ab +74681820ns 1317077 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000504 +74681899ns 1317081 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098ac PA:1c0098ac +74681919ns 1317082 1c000e82 fff60613 addi x12, x12, -1 x12=00000503 x12:00000504 +74681939ns 1317083 1c000e84 00130313 addi x6, x6, 1 x6=1c0098ad x6:1c0098ac +74681959ns 1317084 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000503 +74682038ns 1317088 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098ad PA:1c0098ad +74682058ns 1317089 1c000e82 fff60613 addi x12, x12, -1 x12=00000502 x12:00000503 +74682077ns 1317090 1c000e84 00130313 addi x6, x6, 1 x6=1c0098ae x6:1c0098ad +74682097ns 1317091 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000502 +74682176ns 1317095 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098ae PA:1c0098ae +74682196ns 1317096 1c000e82 fff60613 addi x12, x12, -1 x12=00000501 x12:00000502 +74682216ns 1317097 1c000e84 00130313 addi x6, x6, 1 x6=1c0098af x6:1c0098ae +74682236ns 1317098 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000501 +74682315ns 1317102 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098af PA:1c0098af +74682335ns 1317103 1c000e82 fff60613 addi x12, x12, -1 x12=00000500 x12:00000501 +74682355ns 1317104 1c000e84 00130313 addi x6, x6, 1 x6=1c0098b0 x6:1c0098af +74682374ns 1317105 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000500 +74682453ns 1317109 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098b0 PA:1c0098b0 +74682473ns 1317110 1c000e82 fff60613 addi x12, x12, -1 x12=000004ff x12:00000500 +74682493ns 1317111 1c000e84 00130313 addi x6, x6, 1 x6=1c0098b1 x6:1c0098b0 +74682513ns 1317112 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004ff +74682592ns 1317116 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098b1 PA:1c0098b1 +74682612ns 1317117 1c000e82 fff60613 addi x12, x12, -1 x12=000004fe x12:000004ff +74682632ns 1317118 1c000e84 00130313 addi x6, x6, 1 x6=1c0098b2 x6:1c0098b1 +74682651ns 1317119 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004fe +74682731ns 1317123 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098b2 PA:1c0098b2 +74682750ns 1317124 1c000e82 fff60613 addi x12, x12, -1 x12=000004fd x12:000004fe +74682770ns 1317125 1c000e84 00130313 addi x6, x6, 1 x6=1c0098b3 x6:1c0098b2 +74682790ns 1317126 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004fd +74682869ns 1317130 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098b3 PA:1c0098b3 +74682889ns 1317131 1c000e82 fff60613 addi x12, x12, -1 x12=000004fc x12:000004fd +74682909ns 1317132 1c000e84 00130313 addi x6, x6, 1 x6=1c0098b4 x6:1c0098b3 +74682928ns 1317133 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004fc +74683008ns 1317137 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098b4 PA:1c0098b4 +74683027ns 1317138 1c000e82 fff60613 addi x12, x12, -1 x12=000004fb x12:000004fc +74683047ns 1317139 1c000e84 00130313 addi x6, x6, 1 x6=1c0098b5 x6:1c0098b4 +74683067ns 1317140 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004fb +74683146ns 1317144 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098b5 PA:1c0098b5 +74683166ns 1317145 1c000e82 fff60613 addi x12, x12, -1 x12=000004fa x12:000004fb +74683186ns 1317146 1c000e84 00130313 addi x6, x6, 1 x6=1c0098b6 x6:1c0098b5 +74683206ns 1317147 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004fa +74683285ns 1317151 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098b6 PA:1c0098b6 +74683305ns 1317152 1c000e82 fff60613 addi x12, x12, -1 x12=000004f9 x12:000004fa +74683324ns 1317153 1c000e84 00130313 addi x6, x6, 1 x6=1c0098b7 x6:1c0098b6 +74683344ns 1317154 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004f9 +74683423ns 1317158 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098b7 PA:1c0098b7 +74683443ns 1317159 1c000e82 fff60613 addi x12, x12, -1 x12=000004f8 x12:000004f9 +74683463ns 1317160 1c000e84 00130313 addi x6, x6, 1 x6=1c0098b8 x6:1c0098b7 +74683483ns 1317161 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004f8 +74683562ns 1317165 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098b8 PA:1c0098b8 +74683582ns 1317166 1c000e82 fff60613 addi x12, x12, -1 x12=000004f7 x12:000004f8 +74683601ns 1317167 1c000e84 00130313 addi x6, x6, 1 x6=1c0098b9 x6:1c0098b8 +74683621ns 1317168 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004f7 +74683700ns 1317172 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098b9 PA:1c0098b9 +74683720ns 1317173 1c000e82 fff60613 addi x12, x12, -1 x12=000004f6 x12:000004f7 +74683740ns 1317174 1c000e84 00130313 addi x6, x6, 1 x6=1c0098ba x6:1c0098b9 +74683760ns 1317175 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004f6 +74683839ns 1317179 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098ba PA:1c0098ba +74683859ns 1317180 1c000e82 fff60613 addi x12, x12, -1 x12=000004f5 x12:000004f6 +74683879ns 1317181 1c000e84 00130313 addi x6, x6, 1 x6=1c0098bb x6:1c0098ba +74683898ns 1317182 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004f5 +74683977ns 1317186 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098bb PA:1c0098bb +74683997ns 1317187 1c000e82 fff60613 addi x12, x12, -1 x12=000004f4 x12:000004f5 +74684017ns 1317188 1c000e84 00130313 addi x6, x6, 1 x6=1c0098bc x6:1c0098bb +74684037ns 1317189 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004f4 +74684116ns 1317193 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098bc PA:1c0098bc +74684136ns 1317194 1c000e82 fff60613 addi x12, x12, -1 x12=000004f3 x12:000004f4 +74684156ns 1317195 1c000e84 00130313 addi x6, x6, 1 x6=1c0098bd x6:1c0098bc +74684175ns 1317196 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004f3 +74684255ns 1317200 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098bd PA:1c0098bd +74684274ns 1317201 1c000e82 fff60613 addi x12, x12, -1 x12=000004f2 x12:000004f3 +74684294ns 1317202 1c000e84 00130313 addi x6, x6, 1 x6=1c0098be x6:1c0098bd +74684314ns 1317203 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004f2 +74684393ns 1317207 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098be PA:1c0098be +74684413ns 1317208 1c000e82 fff60613 addi x12, x12, -1 x12=000004f1 x12:000004f2 +74684433ns 1317209 1c000e84 00130313 addi x6, x6, 1 x6=1c0098bf x6:1c0098be +74684452ns 1317210 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004f1 +74684532ns 1317214 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098bf PA:1c0098bf +74684551ns 1317215 1c000e82 fff60613 addi x12, x12, -1 x12=000004f0 x12:000004f1 +74684571ns 1317216 1c000e84 00130313 addi x6, x6, 1 x6=1c0098c0 x6:1c0098bf +74684591ns 1317217 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004f0 +74684670ns 1317221 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098c0 PA:1c0098c0 +74684690ns 1317222 1c000e82 fff60613 addi x12, x12, -1 x12=000004ef x12:000004f0 +74684710ns 1317223 1c000e84 00130313 addi x6, x6, 1 x6=1c0098c1 x6:1c0098c0 +74684730ns 1317224 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004ef +74684809ns 1317228 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098c1 PA:1c0098c1 +74684829ns 1317229 1c000e82 fff60613 addi x12, x12, -1 x12=000004ee x12:000004ef +74684848ns 1317230 1c000e84 00130313 addi x6, x6, 1 x6=1c0098c2 x6:1c0098c1 +74684868ns 1317231 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004ee +74684947ns 1317235 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098c2 PA:1c0098c2 +74684967ns 1317236 1c000e82 fff60613 addi x12, x12, -1 x12=000004ed x12:000004ee +74684987ns 1317237 1c000e84 00130313 addi x6, x6, 1 x6=1c0098c3 x6:1c0098c2 +74685007ns 1317238 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004ed +74685086ns 1317242 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098c3 PA:1c0098c3 +74685106ns 1317243 1c000e82 fff60613 addi x12, x12, -1 x12=000004ec x12:000004ed +74685125ns 1317244 1c000e84 00130313 addi x6, x6, 1 x6=1c0098c4 x6:1c0098c3 +74685145ns 1317245 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004ec +74685224ns 1317249 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098c4 PA:1c0098c4 +74685244ns 1317250 1c000e82 fff60613 addi x12, x12, -1 x12=000004eb x12:000004ec +74685264ns 1317251 1c000e84 00130313 addi x6, x6, 1 x6=1c0098c5 x6:1c0098c4 +74685284ns 1317252 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004eb +74685363ns 1317256 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098c5 PA:1c0098c5 +74685383ns 1317257 1c000e82 fff60613 addi x12, x12, -1 x12=000004ea x12:000004eb +74685402ns 1317258 1c000e84 00130313 addi x6, x6, 1 x6=1c0098c6 x6:1c0098c5 +74685422ns 1317259 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004ea +74685501ns 1317263 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098c6 PA:1c0098c6 +74685521ns 1317264 1c000e82 fff60613 addi x12, x12, -1 x12=000004e9 x12:000004ea +74685541ns 1317265 1c000e84 00130313 addi x6, x6, 1 x6=1c0098c7 x6:1c0098c6 +74685561ns 1317266 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004e9 +74685640ns 1317270 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098c7 PA:1c0098c7 +74685660ns 1317271 1c000e82 fff60613 addi x12, x12, -1 x12=000004e8 x12:000004e9 +74685680ns 1317272 1c000e84 00130313 addi x6, x6, 1 x6=1c0098c8 x6:1c0098c7 +74685699ns 1317273 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004e8 +74685779ns 1317277 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098c8 PA:1c0098c8 +74685798ns 1317278 1c000e82 fff60613 addi x12, x12, -1 x12=000004e7 x12:000004e8 +74685818ns 1317279 1c000e84 00130313 addi x6, x6, 1 x6=1c0098c9 x6:1c0098c8 +74685838ns 1317280 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004e7 +74685917ns 1317284 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098c9 PA:1c0098c9 +74685937ns 1317285 1c000e82 fff60613 addi x12, x12, -1 x12=000004e6 x12:000004e7 +74685957ns 1317286 1c000e84 00130313 addi x6, x6, 1 x6=1c0098ca x6:1c0098c9 +74685976ns 1317287 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004e6 +74686056ns 1317291 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098ca PA:1c0098ca +74686075ns 1317292 1c000e82 fff60613 addi x12, x12, -1 x12=000004e5 x12:000004e6 +74686095ns 1317293 1c000e84 00130313 addi x6, x6, 1 x6=1c0098cb x6:1c0098ca +74686115ns 1317294 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004e5 +74686194ns 1317298 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098cb PA:1c0098cb +74686214ns 1317299 1c000e82 fff60613 addi x12, x12, -1 x12=000004e4 x12:000004e5 +74686234ns 1317300 1c000e84 00130313 addi x6, x6, 1 x6=1c0098cc x6:1c0098cb +74686254ns 1317301 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004e4 +74686333ns 1317305 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098cc PA:1c0098cc +74686353ns 1317306 1c000e82 fff60613 addi x12, x12, -1 x12=000004e3 x12:000004e4 +74686372ns 1317307 1c000e84 00130313 addi x6, x6, 1 x6=1c0098cd x6:1c0098cc +74686392ns 1317308 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004e3 +74686471ns 1317312 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098cd PA:1c0098cd +74686491ns 1317313 1c000e82 fff60613 addi x12, x12, -1 x12=000004e2 x12:000004e3 +74686511ns 1317314 1c000e84 00130313 addi x6, x6, 1 x6=1c0098ce x6:1c0098cd +74686531ns 1317315 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004e2 +74686610ns 1317319 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098ce PA:1c0098ce +74686630ns 1317320 1c000e82 fff60613 addi x12, x12, -1 x12=000004e1 x12:000004e2 +74686649ns 1317321 1c000e84 00130313 addi x6, x6, 1 x6=1c0098cf x6:1c0098ce +74686669ns 1317322 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004e1 +74686748ns 1317326 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098cf PA:1c0098cf +74686768ns 1317327 1c000e82 fff60613 addi x12, x12, -1 x12=000004e0 x12:000004e1 +74686788ns 1317328 1c000e84 00130313 addi x6, x6, 1 x6=1c0098d0 x6:1c0098cf +74686808ns 1317329 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004e0 +74686887ns 1317333 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098d0 PA:1c0098d0 +74686907ns 1317334 1c000e82 fff60613 addi x12, x12, -1 x12=000004df x12:000004e0 +74686926ns 1317335 1c000e84 00130313 addi x6, x6, 1 x6=1c0098d1 x6:1c0098d0 +74686946ns 1317336 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004df +74687025ns 1317340 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098d1 PA:1c0098d1 +74687045ns 1317341 1c000e82 fff60613 addi x12, x12, -1 x12=000004de x12:000004df +74687065ns 1317342 1c000e84 00130313 addi x6, x6, 1 x6=1c0098d2 x6:1c0098d1 +74687085ns 1317343 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004de +74687164ns 1317347 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098d2 PA:1c0098d2 +74687184ns 1317348 1c000e82 fff60613 addi x12, x12, -1 x12=000004dd x12:000004de +74687204ns 1317349 1c000e84 00130313 addi x6, x6, 1 x6=1c0098d3 x6:1c0098d2 +74687223ns 1317350 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004dd +74687303ns 1317354 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098d3 PA:1c0098d3 +74687322ns 1317355 1c000e82 fff60613 addi x12, x12, -1 x12=000004dc x12:000004dd +74687342ns 1317356 1c000e84 00130313 addi x6, x6, 1 x6=1c0098d4 x6:1c0098d3 +74687362ns 1317357 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004dc +74687441ns 1317361 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098d4 PA:1c0098d4 +74687461ns 1317362 1c000e82 fff60613 addi x12, x12, -1 x12=000004db x12:000004dc +74687481ns 1317363 1c000e84 00130313 addi x6, x6, 1 x6=1c0098d5 x6:1c0098d4 +74687500ns 1317364 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004db +74687580ns 1317368 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098d5 PA:1c0098d5 +74687599ns 1317369 1c000e82 fff60613 addi x12, x12, -1 x12=000004da x12:000004db +74687619ns 1317370 1c000e84 00130313 addi x6, x6, 1 x6=1c0098d6 x6:1c0098d5 +74687639ns 1317371 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004da +74687718ns 1317375 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098d6 PA:1c0098d6 +74687738ns 1317376 1c000e82 fff60613 addi x12, x12, -1 x12=000004d9 x12:000004da +74687758ns 1317377 1c000e84 00130313 addi x6, x6, 1 x6=1c0098d7 x6:1c0098d6 +74687778ns 1317378 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004d9 +74687857ns 1317382 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098d7 PA:1c0098d7 +74687876ns 1317383 1c000e82 fff60613 addi x12, x12, -1 x12=000004d8 x12:000004d9 +74687896ns 1317384 1c000e84 00130313 addi x6, x6, 1 x6=1c0098d8 x6:1c0098d7 +74687916ns 1317385 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004d8 +74687995ns 1317389 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098d8 PA:1c0098d8 +74688015ns 1317390 1c000e82 fff60613 addi x12, x12, -1 x12=000004d7 x12:000004d8 +74688035ns 1317391 1c000e84 00130313 addi x6, x6, 1 x6=1c0098d9 x6:1c0098d8 +74688055ns 1317392 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004d7 +74688134ns 1317396 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098d9 PA:1c0098d9 +74688154ns 1317397 1c000e82 fff60613 addi x12, x12, -1 x12=000004d6 x12:000004d7 +74688173ns 1317398 1c000e84 00130313 addi x6, x6, 1 x6=1c0098da x6:1c0098d9 +74688193ns 1317399 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004d6 +74688272ns 1317403 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098da PA:1c0098da +74688292ns 1317404 1c000e82 fff60613 addi x12, x12, -1 x12=000004d5 x12:000004d6 +74688312ns 1317405 1c000e84 00130313 addi x6, x6, 1 x6=1c0098db x6:1c0098da +74688332ns 1317406 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004d5 +74688411ns 1317410 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098db PA:1c0098db +74688431ns 1317411 1c000e82 fff60613 addi x12, x12, -1 x12=000004d4 x12:000004d5 +74688450ns 1317412 1c000e84 00130313 addi x6, x6, 1 x6=1c0098dc x6:1c0098db +74688470ns 1317413 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004d4 +74688549ns 1317417 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098dc PA:1c0098dc +74688569ns 1317418 1c000e82 fff60613 addi x12, x12, -1 x12=000004d3 x12:000004d4 +74688589ns 1317419 1c000e84 00130313 addi x6, x6, 1 x6=1c0098dd x6:1c0098dc +74688609ns 1317420 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004d3 +74688688ns 1317424 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098dd PA:1c0098dd +74688708ns 1317425 1c000e82 fff60613 addi x12, x12, -1 x12=000004d2 x12:000004d3 +74688728ns 1317426 1c000e84 00130313 addi x6, x6, 1 x6=1c0098de x6:1c0098dd +74688747ns 1317427 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004d2 +74688827ns 1317431 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098de PA:1c0098de +74688846ns 1317432 1c000e82 fff60613 addi x12, x12, -1 x12=000004d1 x12:000004d2 +74688866ns 1317433 1c000e84 00130313 addi x6, x6, 1 x6=1c0098df x6:1c0098de +74688886ns 1317434 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004d1 +74688965ns 1317438 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098df PA:1c0098df +74688985ns 1317439 1c000e82 fff60613 addi x12, x12, -1 x12=000004d0 x12:000004d1 +74689005ns 1317440 1c000e84 00130313 addi x6, x6, 1 x6=1c0098e0 x6:1c0098df +74689024ns 1317441 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004d0 +74689104ns 1317445 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098e0 PA:1c0098e0 +74689123ns 1317446 1c000e82 fff60613 addi x12, x12, -1 x12=000004cf x12:000004d0 +74689143ns 1317447 1c000e84 00130313 addi x6, x6, 1 x6=1c0098e1 x6:1c0098e0 +74689163ns 1317448 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004cf +74689242ns 1317452 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098e1 PA:1c0098e1 +74689262ns 1317453 1c000e82 fff60613 addi x12, x12, -1 x12=000004ce x12:000004cf +74689282ns 1317454 1c000e84 00130313 addi x6, x6, 1 x6=1c0098e2 x6:1c0098e1 +74689302ns 1317455 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004ce +74689381ns 1317459 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098e2 PA:1c0098e2 +74689400ns 1317460 1c000e82 fff60613 addi x12, x12, -1 x12=000004cd x12:000004ce +74689420ns 1317461 1c000e84 00130313 addi x6, x6, 1 x6=1c0098e3 x6:1c0098e2 +74689440ns 1317462 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004cd +74689519ns 1317466 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098e3 PA:1c0098e3 +74689539ns 1317467 1c000e82 fff60613 addi x12, x12, -1 x12=000004cc x12:000004cd +74689559ns 1317468 1c000e84 00130313 addi x6, x6, 1 x6=1c0098e4 x6:1c0098e3 +74689579ns 1317469 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004cc +74689658ns 1317473 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098e4 PA:1c0098e4 +74689678ns 1317474 1c000e82 fff60613 addi x12, x12, -1 x12=000004cb x12:000004cc +74689697ns 1317475 1c000e84 00130313 addi x6, x6, 1 x6=1c0098e5 x6:1c0098e4 +74689717ns 1317476 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004cb +74689796ns 1317480 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098e5 PA:1c0098e5 +74689816ns 1317481 1c000e82 fff60613 addi x12, x12, -1 x12=000004ca x12:000004cb +74689836ns 1317482 1c000e84 00130313 addi x6, x6, 1 x6=1c0098e6 x6:1c0098e5 +74689856ns 1317483 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004ca +74689935ns 1317487 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098e6 PA:1c0098e6 +74689955ns 1317488 1c000e82 fff60613 addi x12, x12, -1 x12=000004c9 x12:000004ca +74689974ns 1317489 1c000e84 00130313 addi x6, x6, 1 x6=1c0098e7 x6:1c0098e6 +74689994ns 1317490 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004c9 +74690073ns 1317494 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098e7 PA:1c0098e7 +74690093ns 1317495 1c000e82 fff60613 addi x12, x12, -1 x12=000004c8 x12:000004c9 +74690113ns 1317496 1c000e84 00130313 addi x6, x6, 1 x6=1c0098e8 x6:1c0098e7 +74690133ns 1317497 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004c8 +74690212ns 1317501 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098e8 PA:1c0098e8 +74690232ns 1317502 1c000e82 fff60613 addi x12, x12, -1 x12=000004c7 x12:000004c8 +74690252ns 1317503 1c000e84 00130313 addi x6, x6, 1 x6=1c0098e9 x6:1c0098e8 +74690271ns 1317504 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004c7 +74690350ns 1317508 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098e9 PA:1c0098e9 +74690370ns 1317509 1c000e82 fff60613 addi x12, x12, -1 x12=000004c6 x12:000004c7 +74690390ns 1317510 1c000e84 00130313 addi x6, x6, 1 x6=1c0098ea x6:1c0098e9 +74690410ns 1317511 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004c6 +74690489ns 1317515 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098ea PA:1c0098ea +74690509ns 1317516 1c000e82 fff60613 addi x12, x12, -1 x12=000004c5 x12:000004c6 +74690529ns 1317517 1c000e84 00130313 addi x6, x6, 1 x6=1c0098eb x6:1c0098ea +74690548ns 1317518 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004c5 +74690628ns 1317522 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098eb PA:1c0098eb +74690647ns 1317523 1c000e82 fff60613 addi x12, x12, -1 x12=000004c4 x12:000004c5 +74690667ns 1317524 1c000e84 00130313 addi x6, x6, 1 x6=1c0098ec x6:1c0098eb +74690687ns 1317525 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004c4 +74690766ns 1317529 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098ec PA:1c0098ec +74690786ns 1317530 1c000e82 fff60613 addi x12, x12, -1 x12=000004c3 x12:000004c4 +74690806ns 1317531 1c000e84 00130313 addi x6, x6, 1 x6=1c0098ed x6:1c0098ec +74690825ns 1317532 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004c3 +74690905ns 1317536 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098ed PA:1c0098ed +74690924ns 1317537 1c000e82 fff60613 addi x12, x12, -1 x12=000004c2 x12:000004c3 +74690944ns 1317538 1c000e84 00130313 addi x6, x6, 1 x6=1c0098ee x6:1c0098ed +74690964ns 1317539 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004c2 +74691043ns 1317543 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098ee PA:1c0098ee +74691063ns 1317544 1c000e82 fff60613 addi x12, x12, -1 x12=000004c1 x12:000004c2 +74691083ns 1317545 1c000e84 00130313 addi x6, x6, 1 x6=1c0098ef x6:1c0098ee +74691103ns 1317546 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004c1 +74691182ns 1317550 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098ef PA:1c0098ef +74691202ns 1317551 1c000e82 fff60613 addi x12, x12, -1 x12=000004c0 x12:000004c1 +74691221ns 1317552 1c000e84 00130313 addi x6, x6, 1 x6=1c0098f0 x6:1c0098ef +74691241ns 1317553 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004c0 +74691320ns 1317557 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098f0 PA:1c0098f0 +74691340ns 1317558 1c000e82 fff60613 addi x12, x12, -1 x12=000004bf x12:000004c0 +74691360ns 1317559 1c000e84 00130313 addi x6, x6, 1 x6=1c0098f1 x6:1c0098f0 +74691380ns 1317560 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004bf +74691459ns 1317564 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098f1 PA:1c0098f1 +74691479ns 1317565 1c000e82 fff60613 addi x12, x12, -1 x12=000004be x12:000004bf +74691498ns 1317566 1c000e84 00130313 addi x6, x6, 1 x6=1c0098f2 x6:1c0098f1 +74691518ns 1317567 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004be +74691597ns 1317571 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098f2 PA:1c0098f2 +74691617ns 1317572 1c000e82 fff60613 addi x12, x12, -1 x12=000004bd x12:000004be +74691637ns 1317573 1c000e84 00130313 addi x6, x6, 1 x6=1c0098f3 x6:1c0098f2 +74691657ns 1317574 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004bd +74691736ns 1317578 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098f3 PA:1c0098f3 +74691756ns 1317579 1c000e82 fff60613 addi x12, x12, -1 x12=000004bc x12:000004bd +74691776ns 1317580 1c000e84 00130313 addi x6, x6, 1 x6=1c0098f4 x6:1c0098f3 +74691795ns 1317581 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004bc +74691874ns 1317585 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098f4 PA:1c0098f4 +74691894ns 1317586 1c000e82 fff60613 addi x12, x12, -1 x12=000004bb x12:000004bc +74691914ns 1317587 1c000e84 00130313 addi x6, x6, 1 x6=1c0098f5 x6:1c0098f4 +74691934ns 1317588 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004bb +74692013ns 1317592 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098f5 PA:1c0098f5 +74692033ns 1317593 1c000e82 fff60613 addi x12, x12, -1 x12=000004ba x12:000004bb +74692053ns 1317594 1c000e84 00130313 addi x6, x6, 1 x6=1c0098f6 x6:1c0098f5 +74692072ns 1317595 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004ba +74692152ns 1317599 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098f6 PA:1c0098f6 +74692171ns 1317600 1c000e82 fff60613 addi x12, x12, -1 x12=000004b9 x12:000004ba +74692191ns 1317601 1c000e84 00130313 addi x6, x6, 1 x6=1c0098f7 x6:1c0098f6 +74692211ns 1317602 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004b9 +74692290ns 1317606 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098f7 PA:1c0098f7 +74692310ns 1317607 1c000e82 fff60613 addi x12, x12, -1 x12=000004b8 x12:000004b9 +74692330ns 1317608 1c000e84 00130313 addi x6, x6, 1 x6=1c0098f8 x6:1c0098f7 +74692349ns 1317609 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004b8 +74692429ns 1317613 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098f8 PA:1c0098f8 +74692448ns 1317614 1c000e82 fff60613 addi x12, x12, -1 x12=000004b7 x12:000004b8 +74692468ns 1317615 1c000e84 00130313 addi x6, x6, 1 x6=1c0098f9 x6:1c0098f8 +74692488ns 1317616 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004b7 +74692567ns 1317620 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098f9 PA:1c0098f9 +74692587ns 1317621 1c000e82 fff60613 addi x12, x12, -1 x12=000004b6 x12:000004b7 +74692607ns 1317622 1c000e84 00130313 addi x6, x6, 1 x6=1c0098fa x6:1c0098f9 +74692627ns 1317623 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004b6 +74692706ns 1317627 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098fa PA:1c0098fa +74692726ns 1317628 1c000e82 fff60613 addi x12, x12, -1 x12=000004b5 x12:000004b6 +74692745ns 1317629 1c000e84 00130313 addi x6, x6, 1 x6=1c0098fb x6:1c0098fa +74692765ns 1317630 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004b5 +74692844ns 1317634 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098fb PA:1c0098fb +74692864ns 1317635 1c000e82 fff60613 addi x12, x12, -1 x12=000004b4 x12:000004b5 +74692884ns 1317636 1c000e84 00130313 addi x6, x6, 1 x6=1c0098fc x6:1c0098fb +74692904ns 1317637 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004b4 +74692983ns 1317641 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098fc PA:1c0098fc +74693003ns 1317642 1c000e82 fff60613 addi x12, x12, -1 x12=000004b3 x12:000004b4 +74693022ns 1317643 1c000e84 00130313 addi x6, x6, 1 x6=1c0098fd x6:1c0098fc +74693042ns 1317644 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004b3 +74693121ns 1317648 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098fd PA:1c0098fd +74693141ns 1317649 1c000e82 fff60613 addi x12, x12, -1 x12=000004b2 x12:000004b3 +74693161ns 1317650 1c000e84 00130313 addi x6, x6, 1 x6=1c0098fe x6:1c0098fd +74693181ns 1317651 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004b2 +74693260ns 1317655 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098fe PA:1c0098fe +74693280ns 1317656 1c000e82 fff60613 addi x12, x12, -1 x12=000004b1 x12:000004b2 +74693299ns 1317657 1c000e84 00130313 addi x6, x6, 1 x6=1c0098ff x6:1c0098fe +74693319ns 1317658 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004b1 +74693398ns 1317662 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0098ff PA:1c0098ff +74693418ns 1317663 1c000e82 fff60613 addi x12, x12, -1 x12=000004b0 x12:000004b1 +74693438ns 1317664 1c000e84 00130313 addi x6, x6, 1 x6=1c009900 x6:1c0098ff +74693458ns 1317665 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004b0 +74693537ns 1317669 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009900 PA:1c009900 +74693557ns 1317670 1c000e82 fff60613 addi x12, x12, -1 x12=000004af x12:000004b0 +74693577ns 1317671 1c000e84 00130313 addi x6, x6, 1 x6=1c009901 x6:1c009900 +74693596ns 1317672 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004af +74693676ns 1317676 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009901 PA:1c009901 +74693695ns 1317677 1c000e82 fff60613 addi x12, x12, -1 x12=000004ae x12:000004af +74693715ns 1317678 1c000e84 00130313 addi x6, x6, 1 x6=1c009902 x6:1c009901 +74693735ns 1317679 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004ae +74693814ns 1317683 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009902 PA:1c009902 +74693834ns 1317684 1c000e82 fff60613 addi x12, x12, -1 x12=000004ad x12:000004ae +74693854ns 1317685 1c000e84 00130313 addi x6, x6, 1 x6=1c009903 x6:1c009902 +74693873ns 1317686 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004ad +74693953ns 1317690 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009903 PA:1c009903 +74693972ns 1317691 1c000e82 fff60613 addi x12, x12, -1 x12=000004ac x12:000004ad +74693992ns 1317692 1c000e84 00130313 addi x6, x6, 1 x6=1c009904 x6:1c009903 +74694012ns 1317693 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004ac +74694091ns 1317697 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009904 PA:1c009904 +74694111ns 1317698 1c000e82 fff60613 addi x12, x12, -1 x12=000004ab x12:000004ac +74694131ns 1317699 1c000e84 00130313 addi x6, x6, 1 x6=1c009905 x6:1c009904 +74694151ns 1317700 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004ab +74694230ns 1317704 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009905 PA:1c009905 +74694250ns 1317705 1c000e82 fff60613 addi x12, x12, -1 x12=000004aa x12:000004ab +74694269ns 1317706 1c000e84 00130313 addi x6, x6, 1 x6=1c009906 x6:1c009905 +74694289ns 1317707 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004aa +74694368ns 1317711 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009906 PA:1c009906 +74694388ns 1317712 1c000e82 fff60613 addi x12, x12, -1 x12=000004a9 x12:000004aa +74694408ns 1317713 1c000e84 00130313 addi x6, x6, 1 x6=1c009907 x6:1c009906 +74694428ns 1317714 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004a9 +74694507ns 1317718 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009907 PA:1c009907 +74694527ns 1317719 1c000e82 fff60613 addi x12, x12, -1 x12=000004a8 x12:000004a9 +74694546ns 1317720 1c000e84 00130313 addi x6, x6, 1 x6=1c009908 x6:1c009907 +74694566ns 1317721 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004a8 +74694645ns 1317725 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009908 PA:1c009908 +74694665ns 1317726 1c000e82 fff60613 addi x12, x12, -1 x12=000004a7 x12:000004a8 +74694685ns 1317727 1c000e84 00130313 addi x6, x6, 1 x6=1c009909 x6:1c009908 +74694705ns 1317728 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004a7 +74694784ns 1317732 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009909 PA:1c009909 +74694804ns 1317733 1c000e82 fff60613 addi x12, x12, -1 x12=000004a6 x12:000004a7 +74694823ns 1317734 1c000e84 00130313 addi x6, x6, 1 x6=1c00990a x6:1c009909 +74694843ns 1317735 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004a6 +74694922ns 1317739 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00990a PA:1c00990a +74694942ns 1317740 1c000e82 fff60613 addi x12, x12, -1 x12=000004a5 x12:000004a6 +74694962ns 1317741 1c000e84 00130313 addi x6, x6, 1 x6=1c00990b x6:1c00990a +74694982ns 1317742 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004a5 +74695061ns 1317746 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00990b PA:1c00990b +74695081ns 1317747 1c000e82 fff60613 addi x12, x12, -1 x12=000004a4 x12:000004a5 +74695101ns 1317748 1c000e84 00130313 addi x6, x6, 1 x6=1c00990c x6:1c00990b +74695120ns 1317749 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004a4 +74695200ns 1317753 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00990c PA:1c00990c +74695219ns 1317754 1c000e82 fff60613 addi x12, x12, -1 x12=000004a3 x12:000004a4 +74695239ns 1317755 1c000e84 00130313 addi x6, x6, 1 x6=1c00990d x6:1c00990c +74695259ns 1317756 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004a3 +74695338ns 1317760 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00990d PA:1c00990d +74695358ns 1317761 1c000e82 fff60613 addi x12, x12, -1 x12=000004a2 x12:000004a3 +74695378ns 1317762 1c000e84 00130313 addi x6, x6, 1 x6=1c00990e x6:1c00990d +74695397ns 1317763 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004a2 +74695477ns 1317767 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00990e PA:1c00990e +74695496ns 1317768 1c000e82 fff60613 addi x12, x12, -1 x12=000004a1 x12:000004a2 +74695516ns 1317769 1c000e84 00130313 addi x6, x6, 1 x6=1c00990f x6:1c00990e +74695536ns 1317770 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004a1 +74695615ns 1317774 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00990f PA:1c00990f +74695635ns 1317775 1c000e82 fff60613 addi x12, x12, -1 x12=000004a0 x12:000004a1 +74695655ns 1317776 1c000e84 00130313 addi x6, x6, 1 x6=1c009910 x6:1c00990f +74695675ns 1317777 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004a0 +74695754ns 1317781 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009910 PA:1c009910 +74695773ns 1317782 1c000e82 fff60613 addi x12, x12, -1 x12=0000049f x12:000004a0 +74695793ns 1317783 1c000e84 00130313 addi x6, x6, 1 x6=1c009911 x6:1c009910 +74695813ns 1317784 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000049f +74695892ns 1317788 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009911 PA:1c009911 +74695912ns 1317789 1c000e82 fff60613 addi x12, x12, -1 x12=0000049e x12:0000049f +74695932ns 1317790 1c000e84 00130313 addi x6, x6, 1 x6=1c009912 x6:1c009911 +74695952ns 1317791 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000049e +74696031ns 1317795 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009912 PA:1c009912 +74696051ns 1317796 1c000e82 fff60613 addi x12, x12, -1 x12=0000049d x12:0000049e +74696070ns 1317797 1c000e84 00130313 addi x6, x6, 1 x6=1c009913 x6:1c009912 +74696090ns 1317798 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000049d +74696169ns 1317802 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009913 PA:1c009913 +74696189ns 1317803 1c000e82 fff60613 addi x12, x12, -1 x12=0000049c x12:0000049d +74696209ns 1317804 1c000e84 00130313 addi x6, x6, 1 x6=1c009914 x6:1c009913 +74696229ns 1317805 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000049c +74696308ns 1317809 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009914 PA:1c009914 +74696328ns 1317810 1c000e82 fff60613 addi x12, x12, -1 x12=0000049b x12:0000049c +74696347ns 1317811 1c000e84 00130313 addi x6, x6, 1 x6=1c009915 x6:1c009914 +74696367ns 1317812 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000049b +74696446ns 1317816 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009915 PA:1c009915 +74696466ns 1317817 1c000e82 fff60613 addi x12, x12, -1 x12=0000049a x12:0000049b +74696486ns 1317818 1c000e84 00130313 addi x6, x6, 1 x6=1c009916 x6:1c009915 +74696506ns 1317819 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000049a +74696585ns 1317823 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009916 PA:1c009916 +74696605ns 1317824 1c000e82 fff60613 addi x12, x12, -1 x12=00000499 x12:0000049a +74696625ns 1317825 1c000e84 00130313 addi x6, x6, 1 x6=1c009917 x6:1c009916 +74696644ns 1317826 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000499 +74696724ns 1317830 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009917 PA:1c009917 +74696743ns 1317831 1c000e82 fff60613 addi x12, x12, -1 x12=00000498 x12:00000499 +74696763ns 1317832 1c000e84 00130313 addi x6, x6, 1 x6=1c009918 x6:1c009917 +74696783ns 1317833 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000498 +74696862ns 1317837 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009918 PA:1c009918 +74696882ns 1317838 1c000e82 fff60613 addi x12, x12, -1 x12=00000497 x12:00000498 +74696902ns 1317839 1c000e84 00130313 addi x6, x6, 1 x6=1c009919 x6:1c009918 +74696921ns 1317840 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000497 +74697001ns 1317844 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009919 PA:1c009919 +74697020ns 1317845 1c000e82 fff60613 addi x12, x12, -1 x12=00000496 x12:00000497 +74697040ns 1317846 1c000e84 00130313 addi x6, x6, 1 x6=1c00991a x6:1c009919 +74697060ns 1317847 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000496 +74697139ns 1317851 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00991a PA:1c00991a +74697159ns 1317852 1c000e82 fff60613 addi x12, x12, -1 x12=00000495 x12:00000496 +74697179ns 1317853 1c000e84 00130313 addi x6, x6, 1 x6=1c00991b x6:1c00991a +74697199ns 1317854 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000495 +74697278ns 1317858 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00991b PA:1c00991b +74697297ns 1317859 1c000e82 fff60613 addi x12, x12, -1 x12=00000494 x12:00000495 +74697317ns 1317860 1c000e84 00130313 addi x6, x6, 1 x6=1c00991c x6:1c00991b +74697337ns 1317861 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000494 +74697416ns 1317865 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00991c PA:1c00991c +74697436ns 1317866 1c000e82 fff60613 addi x12, x12, -1 x12=00000493 x12:00000494 +74697456ns 1317867 1c000e84 00130313 addi x6, x6, 1 x6=1c00991d x6:1c00991c +74697476ns 1317868 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000493 +74697555ns 1317872 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00991d PA:1c00991d +74697575ns 1317873 1c000e82 fff60613 addi x12, x12, -1 x12=00000492 x12:00000493 +74697594ns 1317874 1c000e84 00130313 addi x6, x6, 1 x6=1c00991e x6:1c00991d +74697614ns 1317875 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000492 +74697693ns 1317879 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00991e PA:1c00991e +74697713ns 1317880 1c000e82 fff60613 addi x12, x12, -1 x12=00000491 x12:00000492 +74697733ns 1317881 1c000e84 00130313 addi x6, x6, 1 x6=1c00991f x6:1c00991e +74697753ns 1317882 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000491 +74697832ns 1317886 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00991f PA:1c00991f +74697852ns 1317887 1c000e82 fff60613 addi x12, x12, -1 x12=00000490 x12:00000491 +74697871ns 1317888 1c000e84 00130313 addi x6, x6, 1 x6=1c009920 x6:1c00991f +74697891ns 1317889 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000490 +74697970ns 1317893 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009920 PA:1c009920 +74697990ns 1317894 1c000e82 fff60613 addi x12, x12, -1 x12=0000048f x12:00000490 +74698010ns 1317895 1c000e84 00130313 addi x6, x6, 1 x6=1c009921 x6:1c009920 +74698030ns 1317896 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000048f +74698109ns 1317900 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009921 PA:1c009921 +74698129ns 1317901 1c000e82 fff60613 addi x12, x12, -1 x12=0000048e x12:0000048f +74698149ns 1317902 1c000e84 00130313 addi x6, x6, 1 x6=1c009922 x6:1c009921 +74698168ns 1317903 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000048e +74698247ns 1317907 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009922 PA:1c009922 +74698267ns 1317908 1c000e82 fff60613 addi x12, x12, -1 x12=0000048d x12:0000048e +74698287ns 1317909 1c000e84 00130313 addi x6, x6, 1 x6=1c009923 x6:1c009922 +74698307ns 1317910 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000048d +74698386ns 1317914 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009923 PA:1c009923 +74698406ns 1317915 1c000e82 fff60613 addi x12, x12, -1 x12=0000048c x12:0000048d +74698426ns 1317916 1c000e84 00130313 addi x6, x6, 1 x6=1c009924 x6:1c009923 +74698445ns 1317917 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000048c +74698525ns 1317921 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009924 PA:1c009924 +74698544ns 1317922 1c000e82 fff60613 addi x12, x12, -1 x12=0000048b x12:0000048c +74698564ns 1317923 1c000e84 00130313 addi x6, x6, 1 x6=1c009925 x6:1c009924 +74698584ns 1317924 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000048b +74698663ns 1317928 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009925 PA:1c009925 +74698683ns 1317929 1c000e82 fff60613 addi x12, x12, -1 x12=0000048a x12:0000048b +74698703ns 1317930 1c000e84 00130313 addi x6, x6, 1 x6=1c009926 x6:1c009925 +74698723ns 1317931 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000048a +74698802ns 1317935 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009926 PA:1c009926 +74698821ns 1317936 1c000e82 fff60613 addi x12, x12, -1 x12=00000489 x12:0000048a +74698841ns 1317937 1c000e84 00130313 addi x6, x6, 1 x6=1c009927 x6:1c009926 +74698861ns 1317938 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000489 +74698940ns 1317942 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009927 PA:1c009927 +74698960ns 1317943 1c000e82 fff60613 addi x12, x12, -1 x12=00000488 x12:00000489 +74698980ns 1317944 1c000e84 00130313 addi x6, x6, 1 x6=1c009928 x6:1c009927 +74699000ns 1317945 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000488 +74699079ns 1317949 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009928 PA:1c009928 +74699099ns 1317950 1c000e82 fff60613 addi x12, x12, -1 x12=00000487 x12:00000488 +74699118ns 1317951 1c000e84 00130313 addi x6, x6, 1 x6=1c009929 x6:1c009928 +74699138ns 1317952 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000487 +74699217ns 1317956 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009929 PA:1c009929 +74699237ns 1317957 1c000e82 fff60613 addi x12, x12, -1 x12=00000486 x12:00000487 +74699257ns 1317958 1c000e84 00130313 addi x6, x6, 1 x6=1c00992a x6:1c009929 +74699277ns 1317959 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000486 +74699356ns 1317963 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00992a PA:1c00992a +74699376ns 1317964 1c000e82 fff60613 addi x12, x12, -1 x12=00000485 x12:00000486 +74699395ns 1317965 1c000e84 00130313 addi x6, x6, 1 x6=1c00992b x6:1c00992a +74699415ns 1317966 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000485 +74699494ns 1317970 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00992b PA:1c00992b +74699514ns 1317971 1c000e82 fff60613 addi x12, x12, -1 x12=00000484 x12:00000485 +74699534ns 1317972 1c000e84 00130313 addi x6, x6, 1 x6=1c00992c x6:1c00992b +74699554ns 1317973 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000484 +74699633ns 1317977 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00992c PA:1c00992c +74699653ns 1317978 1c000e82 fff60613 addi x12, x12, -1 x12=00000483 x12:00000484 +74699673ns 1317979 1c000e84 00130313 addi x6, x6, 1 x6=1c00992d x6:1c00992c +74699692ns 1317980 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000483 +74699771ns 1317984 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00992d PA:1c00992d +74699791ns 1317985 1c000e82 fff60613 addi x12, x12, -1 x12=00000482 x12:00000483 +74699811ns 1317986 1c000e84 00130313 addi x6, x6, 1 x6=1c00992e x6:1c00992d +74699831ns 1317987 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000482 +74699910ns 1317991 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00992e PA:1c00992e +74699930ns 1317992 1c000e82 fff60613 addi x12, x12, -1 x12=00000481 x12:00000482 +74699950ns 1317993 1c000e84 00130313 addi x6, x6, 1 x6=1c00992f x6:1c00992e +74699969ns 1317994 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000481 +74700049ns 1317998 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00992f PA:1c00992f +74700068ns 1317999 1c000e82 fff60613 addi x12, x12, -1 x12=00000480 x12:00000481 +74700088ns 1318000 1c000e84 00130313 addi x6, x6, 1 x6=1c009930 x6:1c00992f +74700108ns 1318001 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000480 +74700187ns 1318005 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009930 PA:1c009930 +74700207ns 1318006 1c000e82 fff60613 addi x12, x12, -1 x12=0000047f x12:00000480 +74700227ns 1318007 1c000e84 00130313 addi x6, x6, 1 x6=1c009931 x6:1c009930 +74700246ns 1318008 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000047f +74700326ns 1318012 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009931 PA:1c009931 +74700345ns 1318013 1c000e82 fff60613 addi x12, x12, -1 x12=0000047e x12:0000047f +74700365ns 1318014 1c000e84 00130313 addi x6, x6, 1 x6=1c009932 x6:1c009931 +74700385ns 1318015 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000047e +74700464ns 1318019 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009932 PA:1c009932 +74700484ns 1318020 1c000e82 fff60613 addi x12, x12, -1 x12=0000047d x12:0000047e +74700504ns 1318021 1c000e84 00130313 addi x6, x6, 1 x6=1c009933 x6:1c009932 +74700524ns 1318022 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000047d +74700603ns 1318026 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009933 PA:1c009933 +74700623ns 1318027 1c000e82 fff60613 addi x12, x12, -1 x12=0000047c x12:0000047d +74700642ns 1318028 1c000e84 00130313 addi x6, x6, 1 x6=1c009934 x6:1c009933 +74700662ns 1318029 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000047c +74700741ns 1318033 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009934 PA:1c009934 +74700761ns 1318034 1c000e82 fff60613 addi x12, x12, -1 x12=0000047b x12:0000047c +74700781ns 1318035 1c000e84 00130313 addi x6, x6, 1 x6=1c009935 x6:1c009934 +74700801ns 1318036 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000047b +74700880ns 1318040 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009935 PA:1c009935 +74700900ns 1318041 1c000e82 fff60613 addi x12, x12, -1 x12=0000047a x12:0000047b +74700919ns 1318042 1c000e84 00130313 addi x6, x6, 1 x6=1c009936 x6:1c009935 +74700939ns 1318043 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000047a +74701018ns 1318047 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009936 PA:1c009936 +74701038ns 1318048 1c000e82 fff60613 addi x12, x12, -1 x12=00000479 x12:0000047a +74701058ns 1318049 1c000e84 00130313 addi x6, x6, 1 x6=1c009937 x6:1c009936 +74701078ns 1318050 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000479 +74701157ns 1318054 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009937 PA:1c009937 +74701177ns 1318055 1c000e82 fff60613 addi x12, x12, -1 x12=00000478 x12:00000479 +74701197ns 1318056 1c000e84 00130313 addi x6, x6, 1 x6=1c009938 x6:1c009937 +74701216ns 1318057 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000478 +74701295ns 1318061 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009938 PA:1c009938 +74701315ns 1318062 1c000e82 fff60613 addi x12, x12, -1 x12=00000477 x12:00000478 +74701335ns 1318063 1c000e84 00130313 addi x6, x6, 1 x6=1c009939 x6:1c009938 +74701355ns 1318064 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000477 +74701434ns 1318068 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009939 PA:1c009939 +74701454ns 1318069 1c000e82 fff60613 addi x12, x12, -1 x12=00000476 x12:00000477 +74701474ns 1318070 1c000e84 00130313 addi x6, x6, 1 x6=1c00993a x6:1c009939 +74701493ns 1318071 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000476 +74701573ns 1318075 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00993a PA:1c00993a +74701592ns 1318076 1c000e82 fff60613 addi x12, x12, -1 x12=00000475 x12:00000476 +74701612ns 1318077 1c000e84 00130313 addi x6, x6, 1 x6=1c00993b x6:1c00993a +74701632ns 1318078 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000475 +74701711ns 1318082 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00993b PA:1c00993b +74701731ns 1318083 1c000e82 fff60613 addi x12, x12, -1 x12=00000474 x12:00000475 +74701751ns 1318084 1c000e84 00130313 addi x6, x6, 1 x6=1c00993c x6:1c00993b +74701770ns 1318085 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000474 +74701850ns 1318089 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00993c PA:1c00993c +74701869ns 1318090 1c000e82 fff60613 addi x12, x12, -1 x12=00000473 x12:00000474 +74701889ns 1318091 1c000e84 00130313 addi x6, x6, 1 x6=1c00993d x6:1c00993c +74701909ns 1318092 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000473 +74701988ns 1318096 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00993d PA:1c00993d +74702008ns 1318097 1c000e82 fff60613 addi x12, x12, -1 x12=00000472 x12:00000473 +74702028ns 1318098 1c000e84 00130313 addi x6, x6, 1 x6=1c00993e x6:1c00993d +74702048ns 1318099 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000472 +74702127ns 1318103 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00993e PA:1c00993e +74702147ns 1318104 1c000e82 fff60613 addi x12, x12, -1 x12=00000471 x12:00000472 +74702166ns 1318105 1c000e84 00130313 addi x6, x6, 1 x6=1c00993f x6:1c00993e +74702186ns 1318106 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000471 +74702265ns 1318110 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00993f PA:1c00993f +74702285ns 1318111 1c000e82 fff60613 addi x12, x12, -1 x12=00000470 x12:00000471 +74702305ns 1318112 1c000e84 00130313 addi x6, x6, 1 x6=1c009940 x6:1c00993f +74702325ns 1318113 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000470 +74702404ns 1318117 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009940 PA:1c009940 +74702424ns 1318118 1c000e82 fff60613 addi x12, x12, -1 x12=0000046f x12:00000470 +74702443ns 1318119 1c000e84 00130313 addi x6, x6, 1 x6=1c009941 x6:1c009940 +74702463ns 1318120 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000046f +74702542ns 1318124 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009941 PA:1c009941 +74702562ns 1318125 1c000e82 fff60613 addi x12, x12, -1 x12=0000046e x12:0000046f +74702582ns 1318126 1c000e84 00130313 addi x6, x6, 1 x6=1c009942 x6:1c009941 +74702602ns 1318127 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000046e +74702681ns 1318131 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009942 PA:1c009942 +74702701ns 1318132 1c000e82 fff60613 addi x12, x12, -1 x12=0000046d x12:0000046e +74702720ns 1318133 1c000e84 00130313 addi x6, x6, 1 x6=1c009943 x6:1c009942 +74702740ns 1318134 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000046d +74702819ns 1318138 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009943 PA:1c009943 +74702839ns 1318139 1c000e82 fff60613 addi x12, x12, -1 x12=0000046c x12:0000046d +74702859ns 1318140 1c000e84 00130313 addi x6, x6, 1 x6=1c009944 x6:1c009943 +74702879ns 1318141 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000046c +74702958ns 1318145 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009944 PA:1c009944 +74702978ns 1318146 1c000e82 fff60613 addi x12, x12, -1 x12=0000046b x12:0000046c +74702998ns 1318147 1c000e84 00130313 addi x6, x6, 1 x6=1c009945 x6:1c009944 +74703017ns 1318148 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000046b +74703097ns 1318152 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009945 PA:1c009945 +74703116ns 1318153 1c000e82 fff60613 addi x12, x12, -1 x12=0000046a x12:0000046b +74703136ns 1318154 1c000e84 00130313 addi x6, x6, 1 x6=1c009946 x6:1c009945 +74703156ns 1318155 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000046a +74703235ns 1318159 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009946 PA:1c009946 +74703255ns 1318160 1c000e82 fff60613 addi x12, x12, -1 x12=00000469 x12:0000046a +74703275ns 1318161 1c000e84 00130313 addi x6, x6, 1 x6=1c009947 x6:1c009946 +74703294ns 1318162 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000469 +74703374ns 1318166 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009947 PA:1c009947 +74703393ns 1318167 1c000e82 fff60613 addi x12, x12, -1 x12=00000468 x12:00000469 +74703413ns 1318168 1c000e84 00130313 addi x6, x6, 1 x6=1c009948 x6:1c009947 +74703433ns 1318169 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000468 +74703512ns 1318173 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009948 PA:1c009948 +74703532ns 1318174 1c000e82 fff60613 addi x12, x12, -1 x12=00000467 x12:00000468 +74703552ns 1318175 1c000e84 00130313 addi x6, x6, 1 x6=1c009949 x6:1c009948 +74703572ns 1318176 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000467 +74703651ns 1318180 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009949 PA:1c009949 +74703671ns 1318181 1c000e82 fff60613 addi x12, x12, -1 x12=00000466 x12:00000467 +74703690ns 1318182 1c000e84 00130313 addi x6, x6, 1 x6=1c00994a x6:1c009949 +74703710ns 1318183 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000466 +74703789ns 1318187 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00994a PA:1c00994a +74703809ns 1318188 1c000e82 fff60613 addi x12, x12, -1 x12=00000465 x12:00000466 +74703829ns 1318189 1c000e84 00130313 addi x6, x6, 1 x6=1c00994b x6:1c00994a +74703849ns 1318190 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000465 +74703928ns 1318194 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00994b PA:1c00994b +74703948ns 1318195 1c000e82 fff60613 addi x12, x12, -1 x12=00000464 x12:00000465 +74703967ns 1318196 1c000e84 00130313 addi x6, x6, 1 x6=1c00994c x6:1c00994b +74703987ns 1318197 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000464 +74704066ns 1318201 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00994c PA:1c00994c +74704086ns 1318202 1c000e82 fff60613 addi x12, x12, -1 x12=00000463 x12:00000464 +74704106ns 1318203 1c000e84 00130313 addi x6, x6, 1 x6=1c00994d x6:1c00994c +74704126ns 1318204 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000463 +74704205ns 1318208 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00994d PA:1c00994d +74704225ns 1318209 1c000e82 fff60613 addi x12, x12, -1 x12=00000462 x12:00000463 +74704244ns 1318210 1c000e84 00130313 addi x6, x6, 1 x6=1c00994e x6:1c00994d +74704264ns 1318211 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000462 +74704343ns 1318215 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00994e PA:1c00994e +74704363ns 1318216 1c000e82 fff60613 addi x12, x12, -1 x12=00000461 x12:00000462 +74704383ns 1318217 1c000e84 00130313 addi x6, x6, 1 x6=1c00994f x6:1c00994e +74704403ns 1318218 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000461 +74704482ns 1318222 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00994f PA:1c00994f +74704502ns 1318223 1c000e82 fff60613 addi x12, x12, -1 x12=00000460 x12:00000461 +74704522ns 1318224 1c000e84 00130313 addi x6, x6, 1 x6=1c009950 x6:1c00994f +74704541ns 1318225 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000460 +74704621ns 1318229 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009950 PA:1c009950 +74704640ns 1318230 1c000e82 fff60613 addi x12, x12, -1 x12=0000045f x12:00000460 +74704660ns 1318231 1c000e84 00130313 addi x6, x6, 1 x6=1c009951 x6:1c009950 +74704680ns 1318232 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000045f +74704759ns 1318236 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009951 PA:1c009951 +74704779ns 1318237 1c000e82 fff60613 addi x12, x12, -1 x12=0000045e x12:0000045f +74704799ns 1318238 1c000e84 00130313 addi x6, x6, 1 x6=1c009952 x6:1c009951 +74704818ns 1318239 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000045e +74704898ns 1318243 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009952 PA:1c009952 +74704917ns 1318244 1c000e82 fff60613 addi x12, x12, -1 x12=0000045d x12:0000045e +74704937ns 1318245 1c000e84 00130313 addi x6, x6, 1 x6=1c009953 x6:1c009952 +74704957ns 1318246 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000045d +74705036ns 1318250 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009953 PA:1c009953 +74705056ns 1318251 1c000e82 fff60613 addi x12, x12, -1 x12=0000045c x12:0000045d +74705076ns 1318252 1c000e84 00130313 addi x6, x6, 1 x6=1c009954 x6:1c009953 +74705096ns 1318253 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000045c +74705175ns 1318257 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009954 PA:1c009954 +74705194ns 1318258 1c000e82 fff60613 addi x12, x12, -1 x12=0000045b x12:0000045c +74705214ns 1318259 1c000e84 00130313 addi x6, x6, 1 x6=1c009955 x6:1c009954 +74705234ns 1318260 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000045b +74705313ns 1318264 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009955 PA:1c009955 +74705333ns 1318265 1c000e82 fff60613 addi x12, x12, -1 x12=0000045a x12:0000045b +74705353ns 1318266 1c000e84 00130313 addi x6, x6, 1 x6=1c009956 x6:1c009955 +74705373ns 1318267 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000045a +74705452ns 1318271 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009956 PA:1c009956 +74705472ns 1318272 1c000e82 fff60613 addi x12, x12, -1 x12=00000459 x12:0000045a +74705491ns 1318273 1c000e84 00130313 addi x6, x6, 1 x6=1c009957 x6:1c009956 +74705511ns 1318274 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000459 +74705590ns 1318278 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009957 PA:1c009957 +74705610ns 1318279 1c000e82 fff60613 addi x12, x12, -1 x12=00000458 x12:00000459 +74705630ns 1318280 1c000e84 00130313 addi x6, x6, 1 x6=1c009958 x6:1c009957 +74705650ns 1318281 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000458 +74705729ns 1318285 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009958 PA:1c009958 +74705749ns 1318286 1c000e82 fff60613 addi x12, x12, -1 x12=00000457 x12:00000458 +74705768ns 1318287 1c000e84 00130313 addi x6, x6, 1 x6=1c009959 x6:1c009958 +74705788ns 1318288 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000457 +74705867ns 1318292 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009959 PA:1c009959 +74705887ns 1318293 1c000e82 fff60613 addi x12, x12, -1 x12=00000456 x12:00000457 +74705907ns 1318294 1c000e84 00130313 addi x6, x6, 1 x6=1c00995a x6:1c009959 +74705927ns 1318295 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000456 +74706006ns 1318299 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00995a PA:1c00995a +74706026ns 1318300 1c000e82 fff60613 addi x12, x12, -1 x12=00000455 x12:00000456 +74706046ns 1318301 1c000e84 00130313 addi x6, x6, 1 x6=1c00995b x6:1c00995a +74706065ns 1318302 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000455 +74706145ns 1318306 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00995b PA:1c00995b +74706164ns 1318307 1c000e82 fff60613 addi x12, x12, -1 x12=00000454 x12:00000455 +74706184ns 1318308 1c000e84 00130313 addi x6, x6, 1 x6=1c00995c x6:1c00995b +74706204ns 1318309 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000454 +74706283ns 1318313 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00995c PA:1c00995c +74706303ns 1318314 1c000e82 fff60613 addi x12, x12, -1 x12=00000453 x12:00000454 +74706323ns 1318315 1c000e84 00130313 addi x6, x6, 1 x6=1c00995d x6:1c00995c +74706342ns 1318316 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000453 +74706422ns 1318320 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00995d PA:1c00995d +74706441ns 1318321 1c000e82 fff60613 addi x12, x12, -1 x12=00000452 x12:00000453 +74706461ns 1318322 1c000e84 00130313 addi x6, x6, 1 x6=1c00995e x6:1c00995d +74706481ns 1318323 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000452 +74706560ns 1318327 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00995e PA:1c00995e +74706580ns 1318328 1c000e82 fff60613 addi x12, x12, -1 x12=00000451 x12:00000452 +74706600ns 1318329 1c000e84 00130313 addi x6, x6, 1 x6=1c00995f x6:1c00995e +74706620ns 1318330 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000451 +74706699ns 1318334 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00995f PA:1c00995f +74706718ns 1318335 1c000e82 fff60613 addi x12, x12, -1 x12=00000450 x12:00000451 +74706738ns 1318336 1c000e84 00130313 addi x6, x6, 1 x6=1c009960 x6:1c00995f +74706758ns 1318337 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000450 +74706837ns 1318341 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009960 PA:1c009960 +74706857ns 1318342 1c000e82 fff60613 addi x12, x12, -1 x12=0000044f x12:00000450 +74706877ns 1318343 1c000e84 00130313 addi x6, x6, 1 x6=1c009961 x6:1c009960 +74706897ns 1318344 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000044f +74706976ns 1318348 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009961 PA:1c009961 +74706996ns 1318349 1c000e82 fff60613 addi x12, x12, -1 x12=0000044e x12:0000044f +74707015ns 1318350 1c000e84 00130313 addi x6, x6, 1 x6=1c009962 x6:1c009961 +74707035ns 1318351 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000044e +74707114ns 1318355 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009962 PA:1c009962 +74707134ns 1318356 1c000e82 fff60613 addi x12, x12, -1 x12=0000044d x12:0000044e +74707154ns 1318357 1c000e84 00130313 addi x6, x6, 1 x6=1c009963 x6:1c009962 +74707174ns 1318358 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000044d +74707253ns 1318362 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009963 PA:1c009963 +74707273ns 1318363 1c000e82 fff60613 addi x12, x12, -1 x12=0000044c x12:0000044d +74707292ns 1318364 1c000e84 00130313 addi x6, x6, 1 x6=1c009964 x6:1c009963 +74707312ns 1318365 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000044c +74707391ns 1318369 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009964 PA:1c009964 +74707411ns 1318370 1c000e82 fff60613 addi x12, x12, -1 x12=0000044b x12:0000044c +74707431ns 1318371 1c000e84 00130313 addi x6, x6, 1 x6=1c009965 x6:1c009964 +74707451ns 1318372 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000044b +74707530ns 1318376 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009965 PA:1c009965 +74707550ns 1318377 1c000e82 fff60613 addi x12, x12, -1 x12=0000044a x12:0000044b +74707570ns 1318378 1c000e84 00130313 addi x6, x6, 1 x6=1c009966 x6:1c009965 +74707589ns 1318379 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000044a +74707668ns 1318383 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009966 PA:1c009966 +74707688ns 1318384 1c000e82 fff60613 addi x12, x12, -1 x12=00000449 x12:0000044a +74707708ns 1318385 1c000e84 00130313 addi x6, x6, 1 x6=1c009967 x6:1c009966 +74707728ns 1318386 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000449 +74707807ns 1318390 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009967 PA:1c009967 +74707827ns 1318391 1c000e82 fff60613 addi x12, x12, -1 x12=00000448 x12:00000449 +74707847ns 1318392 1c000e84 00130313 addi x6, x6, 1 x6=1c009968 x6:1c009967 +74707866ns 1318393 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000448 +74707946ns 1318397 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009968 PA:1c009968 +74707965ns 1318398 1c000e82 fff60613 addi x12, x12, -1 x12=00000447 x12:00000448 +74707985ns 1318399 1c000e84 00130313 addi x6, x6, 1 x6=1c009969 x6:1c009968 +74708005ns 1318400 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000447 +74708084ns 1318404 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009969 PA:1c009969 +74708104ns 1318405 1c000e82 fff60613 addi x12, x12, -1 x12=00000446 x12:00000447 +74708124ns 1318406 1c000e84 00130313 addi x6, x6, 1 x6=1c00996a x6:1c009969 +74708143ns 1318407 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000446 +74708223ns 1318411 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00996a PA:1c00996a +74708242ns 1318412 1c000e82 fff60613 addi x12, x12, -1 x12=00000445 x12:00000446 +74708262ns 1318413 1c000e84 00130313 addi x6, x6, 1 x6=1c00996b x6:1c00996a +74708282ns 1318414 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000445 +74708361ns 1318418 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00996b PA:1c00996b +74708381ns 1318419 1c000e82 fff60613 addi x12, x12, -1 x12=00000444 x12:00000445 +74708401ns 1318420 1c000e84 00130313 addi x6, x6, 1 x6=1c00996c x6:1c00996b +74708421ns 1318421 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000444 +74708500ns 1318425 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00996c PA:1c00996c +74708520ns 1318426 1c000e82 fff60613 addi x12, x12, -1 x12=00000443 x12:00000444 +74708539ns 1318427 1c000e84 00130313 addi x6, x6, 1 x6=1c00996d x6:1c00996c +74708559ns 1318428 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000443 +74708638ns 1318432 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00996d PA:1c00996d +74708658ns 1318433 1c000e82 fff60613 addi x12, x12, -1 x12=00000442 x12:00000443 +74708678ns 1318434 1c000e84 00130313 addi x6, x6, 1 x6=1c00996e x6:1c00996d +74708698ns 1318435 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000442 +74708777ns 1318439 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00996e PA:1c00996e +74708797ns 1318440 1c000e82 fff60613 addi x12, x12, -1 x12=00000441 x12:00000442 +74708816ns 1318441 1c000e84 00130313 addi x6, x6, 1 x6=1c00996f x6:1c00996e +74708836ns 1318442 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000441 +74708915ns 1318446 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00996f PA:1c00996f +74708935ns 1318447 1c000e82 fff60613 addi x12, x12, -1 x12=00000440 x12:00000441 +74708955ns 1318448 1c000e84 00130313 addi x6, x6, 1 x6=1c009970 x6:1c00996f +74708975ns 1318449 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000440 +74709054ns 1318453 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009970 PA:1c009970 +74709074ns 1318454 1c000e82 fff60613 addi x12, x12, -1 x12=0000043f x12:00000440 +74709094ns 1318455 1c000e84 00130313 addi x6, x6, 1 x6=1c009971 x6:1c009970 +74709113ns 1318456 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000043f +74709192ns 1318460 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009971 PA:1c009971 +74709212ns 1318461 1c000e82 fff60613 addi x12, x12, -1 x12=0000043e x12:0000043f +74709232ns 1318462 1c000e84 00130313 addi x6, x6, 1 x6=1c009972 x6:1c009971 +74709252ns 1318463 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000043e +74709331ns 1318467 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009972 PA:1c009972 +74709351ns 1318468 1c000e82 fff60613 addi x12, x12, -1 x12=0000043d x12:0000043e +74709371ns 1318469 1c000e84 00130313 addi x6, x6, 1 x6=1c009973 x6:1c009972 +74709390ns 1318470 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000043d +74709470ns 1318474 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009973 PA:1c009973 +74709489ns 1318475 1c000e82 fff60613 addi x12, x12, -1 x12=0000043c x12:0000043d +74709509ns 1318476 1c000e84 00130313 addi x6, x6, 1 x6=1c009974 x6:1c009973 +74709529ns 1318477 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000043c +74709608ns 1318481 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009974 PA:1c009974 +74709628ns 1318482 1c000e82 fff60613 addi x12, x12, -1 x12=0000043b x12:0000043c +74709648ns 1318483 1c000e84 00130313 addi x6, x6, 1 x6=1c009975 x6:1c009974 +74709667ns 1318484 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000043b +74709747ns 1318488 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009975 PA:1c009975 +74709766ns 1318489 1c000e82 fff60613 addi x12, x12, -1 x12=0000043a x12:0000043b +74709786ns 1318490 1c000e84 00130313 addi x6, x6, 1 x6=1c009976 x6:1c009975 +74709806ns 1318491 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000043a +74709885ns 1318495 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009976 PA:1c009976 +74709905ns 1318496 1c000e82 fff60613 addi x12, x12, -1 x12=00000439 x12:0000043a +74709925ns 1318497 1c000e84 00130313 addi x6, x6, 1 x6=1c009977 x6:1c009976 +74709945ns 1318498 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000439 +74710024ns 1318502 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009977 PA:1c009977 +74710044ns 1318503 1c000e82 fff60613 addi x12, x12, -1 x12=00000438 x12:00000439 +74710063ns 1318504 1c000e84 00130313 addi x6, x6, 1 x6=1c009978 x6:1c009977 +74710083ns 1318505 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000438 +74710162ns 1318509 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009978 PA:1c009978 +74710182ns 1318510 1c000e82 fff60613 addi x12, x12, -1 x12=00000437 x12:00000438 +74710202ns 1318511 1c000e84 00130313 addi x6, x6, 1 x6=1c009979 x6:1c009978 +74710222ns 1318512 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000437 +74710301ns 1318516 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009979 PA:1c009979 +74710321ns 1318517 1c000e82 fff60613 addi x12, x12, -1 x12=00000436 x12:00000437 +74710340ns 1318518 1c000e84 00130313 addi x6, x6, 1 x6=1c00997a x6:1c009979 +74710360ns 1318519 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000436 +74710439ns 1318523 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00997a PA:1c00997a +74710459ns 1318524 1c000e82 fff60613 addi x12, x12, -1 x12=00000435 x12:00000436 +74710479ns 1318525 1c000e84 00130313 addi x6, x6, 1 x6=1c00997b x6:1c00997a +74710499ns 1318526 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000435 +74710578ns 1318530 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00997b PA:1c00997b +74710598ns 1318531 1c000e82 fff60613 addi x12, x12, -1 x12=00000434 x12:00000435 +74710617ns 1318532 1c000e84 00130313 addi x6, x6, 1 x6=1c00997c x6:1c00997b +74710637ns 1318533 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000434 +74710716ns 1318537 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00997c PA:1c00997c +74710736ns 1318538 1c000e82 fff60613 addi x12, x12, -1 x12=00000433 x12:00000434 +74710756ns 1318539 1c000e84 00130313 addi x6, x6, 1 x6=1c00997d x6:1c00997c +74710776ns 1318540 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000433 +74710855ns 1318544 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00997d PA:1c00997d +74710875ns 1318545 1c000e82 fff60613 addi x12, x12, -1 x12=00000432 x12:00000433 +74710895ns 1318546 1c000e84 00130313 addi x6, x6, 1 x6=1c00997e x6:1c00997d +74710914ns 1318547 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000432 +74710994ns 1318551 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00997e PA:1c00997e +74711013ns 1318552 1c000e82 fff60613 addi x12, x12, -1 x12=00000431 x12:00000432 +74711033ns 1318553 1c000e84 00130313 addi x6, x6, 1 x6=1c00997f x6:1c00997e +74711053ns 1318554 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000431 +74711132ns 1318558 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00997f PA:1c00997f +74711152ns 1318559 1c000e82 fff60613 addi x12, x12, -1 x12=00000430 x12:00000431 +74711172ns 1318560 1c000e84 00130313 addi x6, x6, 1 x6=1c009980 x6:1c00997f +74711191ns 1318561 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000430 +74711271ns 1318565 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009980 PA:1c009980 +74711290ns 1318566 1c000e82 fff60613 addi x12, x12, -1 x12=0000042f x12:00000430 +74711310ns 1318567 1c000e84 00130313 addi x6, x6, 1 x6=1c009981 x6:1c009980 +74711330ns 1318568 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000042f +74711409ns 1318572 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009981 PA:1c009981 +74711429ns 1318573 1c000e82 fff60613 addi x12, x12, -1 x12=0000042e x12:0000042f +74711449ns 1318574 1c000e84 00130313 addi x6, x6, 1 x6=1c009982 x6:1c009981 +74711469ns 1318575 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000042e +74711548ns 1318579 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009982 PA:1c009982 +74711568ns 1318580 1c000e82 fff60613 addi x12, x12, -1 x12=0000042d x12:0000042e +74711587ns 1318581 1c000e84 00130313 addi x6, x6, 1 x6=1c009983 x6:1c009982 +74711607ns 1318582 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000042d +74711686ns 1318586 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009983 PA:1c009983 +74711706ns 1318587 1c000e82 fff60613 addi x12, x12, -1 x12=0000042c x12:0000042d +74711726ns 1318588 1c000e84 00130313 addi x6, x6, 1 x6=1c009984 x6:1c009983 +74711746ns 1318589 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000042c +74711825ns 1318593 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009984 PA:1c009984 +74711845ns 1318594 1c000e82 fff60613 addi x12, x12, -1 x12=0000042b x12:0000042c +74711864ns 1318595 1c000e84 00130313 addi x6, x6, 1 x6=1c009985 x6:1c009984 +74711884ns 1318596 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000042b +74711963ns 1318600 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009985 PA:1c009985 +74711983ns 1318601 1c000e82 fff60613 addi x12, x12, -1 x12=0000042a x12:0000042b +74712003ns 1318602 1c000e84 00130313 addi x6, x6, 1 x6=1c009986 x6:1c009985 +74712023ns 1318603 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000042a +74712102ns 1318607 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009986 PA:1c009986 +74712122ns 1318608 1c000e82 fff60613 addi x12, x12, -1 x12=00000429 x12:0000042a +74712141ns 1318609 1c000e84 00130313 addi x6, x6, 1 x6=1c009987 x6:1c009986 +74712161ns 1318610 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000429 +74712240ns 1318614 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009987 PA:1c009987 +74712260ns 1318615 1c000e82 fff60613 addi x12, x12, -1 x12=00000428 x12:00000429 +74712280ns 1318616 1c000e84 00130313 addi x6, x6, 1 x6=1c009988 x6:1c009987 +74712300ns 1318617 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000428 +74712379ns 1318621 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009988 PA:1c009988 +74712399ns 1318622 1c000e82 fff60613 addi x12, x12, -1 x12=00000427 x12:00000428 +74712419ns 1318623 1c000e84 00130313 addi x6, x6, 1 x6=1c009989 x6:1c009988 +74712438ns 1318624 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000427 +74712518ns 1318628 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009989 PA:1c009989 +74712537ns 1318629 1c000e82 fff60613 addi x12, x12, -1 x12=00000426 x12:00000427 +74712557ns 1318630 1c000e84 00130313 addi x6, x6, 1 x6=1c00998a x6:1c009989 +74712577ns 1318631 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000426 +74712656ns 1318635 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00998a PA:1c00998a +74712676ns 1318636 1c000e82 fff60613 addi x12, x12, -1 x12=00000425 x12:00000426 +74712696ns 1318637 1c000e84 00130313 addi x6, x6, 1 x6=1c00998b x6:1c00998a +74712715ns 1318638 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000425 +74712795ns 1318642 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00998b PA:1c00998b +74712814ns 1318643 1c000e82 fff60613 addi x12, x12, -1 x12=00000424 x12:00000425 +74712834ns 1318644 1c000e84 00130313 addi x6, x6, 1 x6=1c00998c x6:1c00998b +74712854ns 1318645 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000424 +74712933ns 1318649 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00998c PA:1c00998c +74712953ns 1318650 1c000e82 fff60613 addi x12, x12, -1 x12=00000423 x12:00000424 +74712973ns 1318651 1c000e84 00130313 addi x6, x6, 1 x6=1c00998d x6:1c00998c +74712993ns 1318652 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000423 +74713072ns 1318656 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00998d PA:1c00998d +74713091ns 1318657 1c000e82 fff60613 addi x12, x12, -1 x12=00000422 x12:00000423 +74713111ns 1318658 1c000e84 00130313 addi x6, x6, 1 x6=1c00998e x6:1c00998d +74713131ns 1318659 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000422 +74713210ns 1318663 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00998e PA:1c00998e +74713230ns 1318664 1c000e82 fff60613 addi x12, x12, -1 x12=00000421 x12:00000422 +74713250ns 1318665 1c000e84 00130313 addi x6, x6, 1 x6=1c00998f x6:1c00998e +74713270ns 1318666 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000421 +74713349ns 1318670 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00998f PA:1c00998f +74713369ns 1318671 1c000e82 fff60613 addi x12, x12, -1 x12=00000420 x12:00000421 +74713388ns 1318672 1c000e84 00130313 addi x6, x6, 1 x6=1c009990 x6:1c00998f +74713408ns 1318673 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000420 +74713487ns 1318677 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009990 PA:1c009990 +74713507ns 1318678 1c000e82 fff60613 addi x12, x12, -1 x12=0000041f x12:00000420 +74713527ns 1318679 1c000e84 00130313 addi x6, x6, 1 x6=1c009991 x6:1c009990 +74713547ns 1318680 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000041f +74713626ns 1318684 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009991 PA:1c009991 +74713646ns 1318685 1c000e82 fff60613 addi x12, x12, -1 x12=0000041e x12:0000041f +74713665ns 1318686 1c000e84 00130313 addi x6, x6, 1 x6=1c009992 x6:1c009991 +74713685ns 1318687 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000041e +74713764ns 1318691 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009992 PA:1c009992 +74713784ns 1318692 1c000e82 fff60613 addi x12, x12, -1 x12=0000041d x12:0000041e +74713804ns 1318693 1c000e84 00130313 addi x6, x6, 1 x6=1c009993 x6:1c009992 +74713824ns 1318694 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000041d +74713903ns 1318698 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009993 PA:1c009993 +74713923ns 1318699 1c000e82 fff60613 addi x12, x12, -1 x12=0000041c x12:0000041d +74713943ns 1318700 1c000e84 00130313 addi x6, x6, 1 x6=1c009994 x6:1c009993 +74713962ns 1318701 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000041c +74714042ns 1318705 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009994 PA:1c009994 +74714061ns 1318706 1c000e82 fff60613 addi x12, x12, -1 x12=0000041b x12:0000041c +74714081ns 1318707 1c000e84 00130313 addi x6, x6, 1 x6=1c009995 x6:1c009994 +74714101ns 1318708 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000041b +74714180ns 1318712 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009995 PA:1c009995 +74714200ns 1318713 1c000e82 fff60613 addi x12, x12, -1 x12=0000041a x12:0000041b +74714220ns 1318714 1c000e84 00130313 addi x6, x6, 1 x6=1c009996 x6:1c009995 +74714239ns 1318715 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000041a +74714319ns 1318719 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009996 PA:1c009996 +74714338ns 1318720 1c000e82 fff60613 addi x12, x12, -1 x12=00000419 x12:0000041a +74714358ns 1318721 1c000e84 00130313 addi x6, x6, 1 x6=1c009997 x6:1c009996 +74714378ns 1318722 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000419 +74714457ns 1318726 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009997 PA:1c009997 +74714477ns 1318727 1c000e82 fff60613 addi x12, x12, -1 x12=00000418 x12:00000419 +74714497ns 1318728 1c000e84 00130313 addi x6, x6, 1 x6=1c009998 x6:1c009997 +74714517ns 1318729 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000418 +74714596ns 1318733 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009998 PA:1c009998 +74714615ns 1318734 1c000e82 fff60613 addi x12, x12, -1 x12=00000417 x12:00000418 +74714635ns 1318735 1c000e84 00130313 addi x6, x6, 1 x6=1c009999 x6:1c009998 +74714655ns 1318736 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000417 +74714734ns 1318740 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009999 PA:1c009999 +74714754ns 1318741 1c000e82 fff60613 addi x12, x12, -1 x12=00000416 x12:00000417 +74714774ns 1318742 1c000e84 00130313 addi x6, x6, 1 x6=1c00999a x6:1c009999 +74714794ns 1318743 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000416 +74714873ns 1318747 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00999a PA:1c00999a +74714893ns 1318748 1c000e82 fff60613 addi x12, x12, -1 x12=00000415 x12:00000416 +74714912ns 1318749 1c000e84 00130313 addi x6, x6, 1 x6=1c00999b x6:1c00999a +74714932ns 1318750 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000415 +74715011ns 1318754 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00999b PA:1c00999b +74715031ns 1318755 1c000e82 fff60613 addi x12, x12, -1 x12=00000414 x12:00000415 +74715051ns 1318756 1c000e84 00130313 addi x6, x6, 1 x6=1c00999c x6:1c00999b +74715071ns 1318757 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000414 +74715150ns 1318761 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00999c PA:1c00999c +74715170ns 1318762 1c000e82 fff60613 addi x12, x12, -1 x12=00000413 x12:00000414 +74715189ns 1318763 1c000e84 00130313 addi x6, x6, 1 x6=1c00999d x6:1c00999c +74715209ns 1318764 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000413 +74715288ns 1318768 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00999d PA:1c00999d +74715308ns 1318769 1c000e82 fff60613 addi x12, x12, -1 x12=00000412 x12:00000413 +74715328ns 1318770 1c000e84 00130313 addi x6, x6, 1 x6=1c00999e x6:1c00999d +74715348ns 1318771 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000412 +74715427ns 1318775 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00999e PA:1c00999e +74715447ns 1318776 1c000e82 fff60613 addi x12, x12, -1 x12=00000411 x12:00000412 +74715467ns 1318777 1c000e84 00130313 addi x6, x6, 1 x6=1c00999f x6:1c00999e +74715486ns 1318778 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000411 +74715565ns 1318782 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00999f PA:1c00999f +74715585ns 1318783 1c000e82 fff60613 addi x12, x12, -1 x12=00000410 x12:00000411 +74715605ns 1318784 1c000e84 00130313 addi x6, x6, 1 x6=1c0099a0 x6:1c00999f +74715625ns 1318785 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000410 +74715704ns 1318789 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099a0 PA:1c0099a0 +74715724ns 1318790 1c000e82 fff60613 addi x12, x12, -1 x12=0000040f x12:00000410 +74715744ns 1318791 1c000e84 00130313 addi x6, x6, 1 x6=1c0099a1 x6:1c0099a0 +74715763ns 1318792 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000040f +74715843ns 1318796 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099a1 PA:1c0099a1 +74715862ns 1318797 1c000e82 fff60613 addi x12, x12, -1 x12=0000040e x12:0000040f +74715882ns 1318798 1c000e84 00130313 addi x6, x6, 1 x6=1c0099a2 x6:1c0099a1 +74715902ns 1318799 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000040e +74715981ns 1318803 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099a2 PA:1c0099a2 +74716001ns 1318804 1c000e82 fff60613 addi x12, x12, -1 x12=0000040d x12:0000040e +74716021ns 1318805 1c000e84 00130313 addi x6, x6, 1 x6=1c0099a3 x6:1c0099a2 +74716041ns 1318806 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000040d +74716120ns 1318810 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099a3 PA:1c0099a3 +74716139ns 1318811 1c000e82 fff60613 addi x12, x12, -1 x12=0000040c x12:0000040d +74716159ns 1318812 1c000e84 00130313 addi x6, x6, 1 x6=1c0099a4 x6:1c0099a3 +74716179ns 1318813 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000040c +74716258ns 1318817 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099a4 PA:1c0099a4 +74716278ns 1318818 1c000e82 fff60613 addi x12, x12, -1 x12=0000040b x12:0000040c +74716298ns 1318819 1c000e84 00130313 addi x6, x6, 1 x6=1c0099a5 x6:1c0099a4 +74716318ns 1318820 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000040b +74716397ns 1318824 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099a5 PA:1c0099a5 +74716417ns 1318825 1c000e82 fff60613 addi x12, x12, -1 x12=0000040a x12:0000040b +74716436ns 1318826 1c000e84 00130313 addi x6, x6, 1 x6=1c0099a6 x6:1c0099a5 +74716456ns 1318827 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000040a +74716535ns 1318831 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099a6 PA:1c0099a6 +74716555ns 1318832 1c000e82 fff60613 addi x12, x12, -1 x12=00000409 x12:0000040a +74716575ns 1318833 1c000e84 00130313 addi x6, x6, 1 x6=1c0099a7 x6:1c0099a6 +74716595ns 1318834 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000409 +74716674ns 1318838 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099a7 PA:1c0099a7 +74716694ns 1318839 1c000e82 fff60613 addi x12, x12, -1 x12=00000408 x12:00000409 +74716713ns 1318840 1c000e84 00130313 addi x6, x6, 1 x6=1c0099a8 x6:1c0099a7 +74716733ns 1318841 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000408 +74716812ns 1318845 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099a8 PA:1c0099a8 +74716832ns 1318846 1c000e82 fff60613 addi x12, x12, -1 x12=00000407 x12:00000408 +74716852ns 1318847 1c000e84 00130313 addi x6, x6, 1 x6=1c0099a9 x6:1c0099a8 +74716872ns 1318848 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000407 +74716951ns 1318852 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099a9 PA:1c0099a9 +74716971ns 1318853 1c000e82 fff60613 addi x12, x12, -1 x12=00000406 x12:00000407 +74716991ns 1318854 1c000e84 00130313 addi x6, x6, 1 x6=1c0099aa x6:1c0099a9 +74717010ns 1318855 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000406 +74717089ns 1318859 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099aa PA:1c0099aa +74717109ns 1318860 1c000e82 fff60613 addi x12, x12, -1 x12=00000405 x12:00000406 +74717129ns 1318861 1c000e84 00130313 addi x6, x6, 1 x6=1c0099ab x6:1c0099aa +74717149ns 1318862 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000405 +74717228ns 1318866 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099ab PA:1c0099ab +74717248ns 1318867 1c000e82 fff60613 addi x12, x12, -1 x12=00000404 x12:00000405 +74717268ns 1318868 1c000e84 00130313 addi x6, x6, 1 x6=1c0099ac x6:1c0099ab +74717287ns 1318869 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000404 +74717367ns 1318873 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099ac PA:1c0099ac +74717386ns 1318874 1c000e82 fff60613 addi x12, x12, -1 x12=00000403 x12:00000404 +74717406ns 1318875 1c000e84 00130313 addi x6, x6, 1 x6=1c0099ad x6:1c0099ac +74717426ns 1318876 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000403 +74717505ns 1318880 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099ad PA:1c0099ad +74717525ns 1318881 1c000e82 fff60613 addi x12, x12, -1 x12=00000402 x12:00000403 +74717545ns 1318882 1c000e84 00130313 addi x6, x6, 1 x6=1c0099ae x6:1c0099ad +74717564ns 1318883 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000402 +74717644ns 1318887 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099ae PA:1c0099ae +74717663ns 1318888 1c000e82 fff60613 addi x12, x12, -1 x12=00000401 x12:00000402 +74717683ns 1318889 1c000e84 00130313 addi x6, x6, 1 x6=1c0099af x6:1c0099ae +74717703ns 1318890 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000401 +74717782ns 1318894 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099af PA:1c0099af +74717802ns 1318895 1c000e82 fff60613 addi x12, x12, -1 x12=00000400 x12:00000401 +74717822ns 1318896 1c000e84 00130313 addi x6, x6, 1 x6=1c0099b0 x6:1c0099af +74717842ns 1318897 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000400 +74717921ns 1318901 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099b0 PA:1c0099b0 +74717941ns 1318902 1c000e82 fff60613 addi x12, x12, -1 x12=000003ff x12:00000400 +74717960ns 1318903 1c000e84 00130313 addi x6, x6, 1 x6=1c0099b1 x6:1c0099b0 +74717980ns 1318904 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ff +74718059ns 1318908 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099b1 PA:1c0099b1 +74718079ns 1318909 1c000e82 fff60613 addi x12, x12, -1 x12=000003fe x12:000003ff +74718099ns 1318910 1c000e84 00130313 addi x6, x6, 1 x6=1c0099b2 x6:1c0099b1 +74718119ns 1318911 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003fe +74718198ns 1318915 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099b2 PA:1c0099b2 +74718218ns 1318916 1c000e82 fff60613 addi x12, x12, -1 x12=000003fd x12:000003fe +74718237ns 1318917 1c000e84 00130313 addi x6, x6, 1 x6=1c0099b3 x6:1c0099b2 +74718257ns 1318918 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003fd +74718336ns 1318922 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099b3 PA:1c0099b3 +74718356ns 1318923 1c000e82 fff60613 addi x12, x12, -1 x12=000003fc x12:000003fd +74718376ns 1318924 1c000e84 00130313 addi x6, x6, 1 x6=1c0099b4 x6:1c0099b3 +74718396ns 1318925 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003fc +74718475ns 1318929 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099b4 PA:1c0099b4 +74718495ns 1318930 1c000e82 fff60613 addi x12, x12, -1 x12=000003fb x12:000003fc +74718515ns 1318931 1c000e84 00130313 addi x6, x6, 1 x6=1c0099b5 x6:1c0099b4 +74718534ns 1318932 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003fb +74718613ns 1318936 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099b5 PA:1c0099b5 +74718633ns 1318937 1c000e82 fff60613 addi x12, x12, -1 x12=000003fa x12:000003fb +74718653ns 1318938 1c000e84 00130313 addi x6, x6, 1 x6=1c0099b6 x6:1c0099b5 +74718673ns 1318939 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003fa +74718752ns 1318943 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099b6 PA:1c0099b6 +74718772ns 1318944 1c000e82 fff60613 addi x12, x12, -1 x12=000003f9 x12:000003fa +74718792ns 1318945 1c000e84 00130313 addi x6, x6, 1 x6=1c0099b7 x6:1c0099b6 +74718811ns 1318946 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003f9 +74718891ns 1318950 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099b7 PA:1c0099b7 +74718910ns 1318951 1c000e82 fff60613 addi x12, x12, -1 x12=000003f8 x12:000003f9 +74718930ns 1318952 1c000e84 00130313 addi x6, x6, 1 x6=1c0099b8 x6:1c0099b7 +74718950ns 1318953 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003f8 +74719029ns 1318957 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099b8 PA:1c0099b8 +74719049ns 1318958 1c000e82 fff60613 addi x12, x12, -1 x12=000003f7 x12:000003f8 +74719069ns 1318959 1c000e84 00130313 addi x6, x6, 1 x6=1c0099b9 x6:1c0099b8 +74719088ns 1318960 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003f7 +74719168ns 1318964 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099b9 PA:1c0099b9 +74719187ns 1318965 1c000e82 fff60613 addi x12, x12, -1 x12=000003f6 x12:000003f7 +74719207ns 1318966 1c000e84 00130313 addi x6, x6, 1 x6=1c0099ba x6:1c0099b9 +74719227ns 1318967 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003f6 +74719306ns 1318971 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099ba PA:1c0099ba +74719326ns 1318972 1c000e82 fff60613 addi x12, x12, -1 x12=000003f5 x12:000003f6 +74719346ns 1318973 1c000e84 00130313 addi x6, x6, 1 x6=1c0099bb x6:1c0099ba +74719366ns 1318974 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003f5 +74719445ns 1318978 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099bb PA:1c0099bb +74719465ns 1318979 1c000e82 fff60613 addi x12, x12, -1 x12=000003f4 x12:000003f5 +74719484ns 1318980 1c000e84 00130313 addi x6, x6, 1 x6=1c0099bc x6:1c0099bb +74719504ns 1318981 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003f4 +74719583ns 1318985 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099bc PA:1c0099bc +74719603ns 1318986 1c000e82 fff60613 addi x12, x12, -1 x12=000003f3 x12:000003f4 +74719623ns 1318987 1c000e84 00130313 addi x6, x6, 1 x6=1c0099bd x6:1c0099bc +74719643ns 1318988 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003f3 +74719722ns 1318992 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099bd PA:1c0099bd +74719742ns 1318993 1c000e82 fff60613 addi x12, x12, -1 x12=000003f2 x12:000003f3 +74719761ns 1318994 1c000e84 00130313 addi x6, x6, 1 x6=1c0099be x6:1c0099bd +74719781ns 1318995 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003f2 +74719860ns 1318999 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099be PA:1c0099be +74719880ns 1319000 1c000e82 fff60613 addi x12, x12, -1 x12=000003f1 x12:000003f2 +74719900ns 1319001 1c000e84 00130313 addi x6, x6, 1 x6=1c0099bf x6:1c0099be +74719920ns 1319002 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003f1 +74719999ns 1319006 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099bf PA:1c0099bf +74720019ns 1319007 1c000e82 fff60613 addi x12, x12, -1 x12=000003f0 x12:000003f1 +74720038ns 1319008 1c000e84 00130313 addi x6, x6, 1 x6=1c0099c0 x6:1c0099bf +74720058ns 1319009 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003f0 +74720137ns 1319013 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099c0 PA:1c0099c0 +74720157ns 1319014 1c000e82 fff60613 addi x12, x12, -1 x12=000003ef x12:000003f0 +74720177ns 1319015 1c000e84 00130313 addi x6, x6, 1 x6=1c0099c1 x6:1c0099c0 +74720197ns 1319016 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ef +74720276ns 1319020 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099c1 PA:1c0099c1 +74720296ns 1319021 1c000e82 fff60613 addi x12, x12, -1 x12=000003ee x12:000003ef +74720316ns 1319022 1c000e84 00130313 addi x6, x6, 1 x6=1c0099c2 x6:1c0099c1 +74720335ns 1319023 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ee +74720415ns 1319027 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099c2 PA:1c0099c2 +74720434ns 1319028 1c000e82 fff60613 addi x12, x12, -1 x12=000003ed x12:000003ee +74720454ns 1319029 1c000e84 00130313 addi x6, x6, 1 x6=1c0099c3 x6:1c0099c2 +74720474ns 1319030 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ed +74720553ns 1319034 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099c3 PA:1c0099c3 +74720573ns 1319035 1c000e82 fff60613 addi x12, x12, -1 x12=000003ec x12:000003ed +74720593ns 1319036 1c000e84 00130313 addi x6, x6, 1 x6=1c0099c4 x6:1c0099c3 +74720612ns 1319037 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ec +74720692ns 1319041 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099c4 PA:1c0099c4 +74720711ns 1319042 1c000e82 fff60613 addi x12, x12, -1 x12=000003eb x12:000003ec +74720731ns 1319043 1c000e84 00130313 addi x6, x6, 1 x6=1c0099c5 x6:1c0099c4 +74720751ns 1319044 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003eb +74720830ns 1319048 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099c5 PA:1c0099c5 +74720850ns 1319049 1c000e82 fff60613 addi x12, x12, -1 x12=000003ea x12:000003eb +74720870ns 1319050 1c000e84 00130313 addi x6, x6, 1 x6=1c0099c6 x6:1c0099c5 +74720890ns 1319051 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ea +74720969ns 1319055 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099c6 PA:1c0099c6 +74720989ns 1319056 1c000e82 fff60613 addi x12, x12, -1 x12=000003e9 x12:000003ea +74721008ns 1319057 1c000e84 00130313 addi x6, x6, 1 x6=1c0099c7 x6:1c0099c6 +74721028ns 1319058 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003e9 +74721107ns 1319062 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099c7 PA:1c0099c7 +74721127ns 1319063 1c000e82 fff60613 addi x12, x12, -1 x12=000003e8 x12:000003e9 +74721147ns 1319064 1c000e84 00130313 addi x6, x6, 1 x6=1c0099c8 x6:1c0099c7 +74721167ns 1319065 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003e8 +74721246ns 1319069 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099c8 PA:1c0099c8 +74721266ns 1319070 1c000e82 fff60613 addi x12, x12, -1 x12=000003e7 x12:000003e8 +74721285ns 1319071 1c000e84 00130313 addi x6, x6, 1 x6=1c0099c9 x6:1c0099c8 +74721305ns 1319072 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003e7 +74721384ns 1319076 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099c9 PA:1c0099c9 +74721404ns 1319077 1c000e82 fff60613 addi x12, x12, -1 x12=000003e6 x12:000003e7 +74721424ns 1319078 1c000e84 00130313 addi x6, x6, 1 x6=1c0099ca x6:1c0099c9 +74721444ns 1319079 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003e6 +74721523ns 1319083 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099ca PA:1c0099ca +74721543ns 1319084 1c000e82 fff60613 addi x12, x12, -1 x12=000003e5 x12:000003e6 +74721562ns 1319085 1c000e84 00130313 addi x6, x6, 1 x6=1c0099cb x6:1c0099ca +74721582ns 1319086 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003e5 +74721661ns 1319090 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099cb PA:1c0099cb +74721681ns 1319091 1c000e82 fff60613 addi x12, x12, -1 x12=000003e4 x12:000003e5 +74721701ns 1319092 1c000e84 00130313 addi x6, x6, 1 x6=1c0099cc x6:1c0099cb +74721721ns 1319093 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003e4 +74721800ns 1319097 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099cc PA:1c0099cc +74721820ns 1319098 1c000e82 fff60613 addi x12, x12, -1 x12=000003e3 x12:000003e4 +74721840ns 1319099 1c000e84 00130313 addi x6, x6, 1 x6=1c0099cd x6:1c0099cc +74721859ns 1319100 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003e3 +74721939ns 1319104 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099cd PA:1c0099cd +74721958ns 1319105 1c000e82 fff60613 addi x12, x12, -1 x12=000003e2 x12:000003e3 +74721978ns 1319106 1c000e84 00130313 addi x6, x6, 1 x6=1c0099ce x6:1c0099cd +74721998ns 1319107 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003e2 +74722077ns 1319111 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099ce PA:1c0099ce +74722097ns 1319112 1c000e82 fff60613 addi x12, x12, -1 x12=000003e1 x12:000003e2 +74722117ns 1319113 1c000e84 00130313 addi x6, x6, 1 x6=1c0099cf x6:1c0099ce +74722136ns 1319114 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003e1 +74722216ns 1319118 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099cf PA:1c0099cf +74722235ns 1319119 1c000e82 fff60613 addi x12, x12, -1 x12=000003e0 x12:000003e1 +74722255ns 1319120 1c000e84 00130313 addi x6, x6, 1 x6=1c0099d0 x6:1c0099cf +74722275ns 1319121 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003e0 +74722354ns 1319125 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099d0 PA:1c0099d0 +74722374ns 1319126 1c000e82 fff60613 addi x12, x12, -1 x12=000003df x12:000003e0 +74722394ns 1319127 1c000e84 00130313 addi x6, x6, 1 x6=1c0099d1 x6:1c0099d0 +74722414ns 1319128 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003df +74722493ns 1319132 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099d1 PA:1c0099d1 +74722512ns 1319133 1c000e82 fff60613 addi x12, x12, -1 x12=000003de x12:000003df +74722532ns 1319134 1c000e84 00130313 addi x6, x6, 1 x6=1c0099d2 x6:1c0099d1 +74722552ns 1319135 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003de +74722631ns 1319139 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099d2 PA:1c0099d2 +74722651ns 1319140 1c000e82 fff60613 addi x12, x12, -1 x12=000003dd x12:000003de +74722671ns 1319141 1c000e84 00130313 addi x6, x6, 1 x6=1c0099d3 x6:1c0099d2 +74722691ns 1319142 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003dd +74722770ns 1319146 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099d3 PA:1c0099d3 +74722790ns 1319147 1c000e82 fff60613 addi x12, x12, -1 x12=000003dc x12:000003dd +74722809ns 1319148 1c000e84 00130313 addi x6, x6, 1 x6=1c0099d4 x6:1c0099d3 +74722829ns 1319149 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003dc +74722908ns 1319153 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099d4 PA:1c0099d4 +74722928ns 1319154 1c000e82 fff60613 addi x12, x12, -1 x12=000003db x12:000003dc +74722948ns 1319155 1c000e84 00130313 addi x6, x6, 1 x6=1c0099d5 x6:1c0099d4 +74722968ns 1319156 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003db +74723047ns 1319160 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099d5 PA:1c0099d5 +74723067ns 1319161 1c000e82 fff60613 addi x12, x12, -1 x12=000003da x12:000003db +74723086ns 1319162 1c000e84 00130313 addi x6, x6, 1 x6=1c0099d6 x6:1c0099d5 +74723106ns 1319163 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003da +74723185ns 1319167 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099d6 PA:1c0099d6 +74723205ns 1319168 1c000e82 fff60613 addi x12, x12, -1 x12=000003d9 x12:000003da +74723225ns 1319169 1c000e84 00130313 addi x6, x6, 1 x6=1c0099d7 x6:1c0099d6 +74723245ns 1319170 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003d9 +74723324ns 1319174 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099d7 PA:1c0099d7 +74723344ns 1319175 1c000e82 fff60613 addi x12, x12, -1 x12=000003d8 x12:000003d9 +74723364ns 1319176 1c000e84 00130313 addi x6, x6, 1 x6=1c0099d8 x6:1c0099d7 +74723383ns 1319177 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003d8 +74723463ns 1319181 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099d8 PA:1c0099d8 +74723482ns 1319182 1c000e82 fff60613 addi x12, x12, -1 x12=000003d7 x12:000003d8 +74723502ns 1319183 1c000e84 00130313 addi x6, x6, 1 x6=1c0099d9 x6:1c0099d8 +74723522ns 1319184 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003d7 +74723601ns 1319188 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099d9 PA:1c0099d9 +74723621ns 1319189 1c000e82 fff60613 addi x12, x12, -1 x12=000003d6 x12:000003d7 +74723641ns 1319190 1c000e84 00130313 addi x6, x6, 1 x6=1c0099da x6:1c0099d9 +74723660ns 1319191 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003d6 +74723740ns 1319195 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099da PA:1c0099da +74723759ns 1319196 1c000e82 fff60613 addi x12, x12, -1 x12=000003d5 x12:000003d6 +74723779ns 1319197 1c000e84 00130313 addi x6, x6, 1 x6=1c0099db x6:1c0099da +74723799ns 1319198 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003d5 +74723878ns 1319202 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099db PA:1c0099db +74723898ns 1319203 1c000e82 fff60613 addi x12, x12, -1 x12=000003d4 x12:000003d5 +74723918ns 1319204 1c000e84 00130313 addi x6, x6, 1 x6=1c0099dc x6:1c0099db +74723938ns 1319205 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003d4 +74724017ns 1319209 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099dc PA:1c0099dc +74724036ns 1319210 1c000e82 fff60613 addi x12, x12, -1 x12=000003d3 x12:000003d4 +74724056ns 1319211 1c000e84 00130313 addi x6, x6, 1 x6=1c0099dd x6:1c0099dc +74724076ns 1319212 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003d3 +74724155ns 1319216 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099dd PA:1c0099dd +74724175ns 1319217 1c000e82 fff60613 addi x12, x12, -1 x12=000003d2 x12:000003d3 +74724195ns 1319218 1c000e84 00130313 addi x6, x6, 1 x6=1c0099de x6:1c0099dd +74724215ns 1319219 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003d2 +74724294ns 1319223 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099de PA:1c0099de +74724314ns 1319224 1c000e82 fff60613 addi x12, x12, -1 x12=000003d1 x12:000003d2 +74724333ns 1319225 1c000e84 00130313 addi x6, x6, 1 x6=1c0099df x6:1c0099de +74724353ns 1319226 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003d1 +74724432ns 1319230 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099df PA:1c0099df +74724452ns 1319231 1c000e82 fff60613 addi x12, x12, -1 x12=000003d0 x12:000003d1 +74724472ns 1319232 1c000e84 00130313 addi x6, x6, 1 x6=1c0099e0 x6:1c0099df +74724492ns 1319233 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003d0 +74724571ns 1319237 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099e0 PA:1c0099e0 +74724591ns 1319238 1c000e82 fff60613 addi x12, x12, -1 x12=000003cf x12:000003d0 +74724610ns 1319239 1c000e84 00130313 addi x6, x6, 1 x6=1c0099e1 x6:1c0099e0 +74724630ns 1319240 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003cf +74724709ns 1319244 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099e1 PA:1c0099e1 +74724729ns 1319245 1c000e82 fff60613 addi x12, x12, -1 x12=000003ce x12:000003cf +74724749ns 1319246 1c000e84 00130313 addi x6, x6, 1 x6=1c0099e2 x6:1c0099e1 +74724769ns 1319247 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ce +74724848ns 1319251 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099e2 PA:1c0099e2 +74724868ns 1319252 1c000e82 fff60613 addi x12, x12, -1 x12=000003cd x12:000003ce +74724888ns 1319253 1c000e84 00130313 addi x6, x6, 1 x6=1c0099e3 x6:1c0099e2 +74724907ns 1319254 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003cd +74724986ns 1319258 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099e3 PA:1c0099e3 +74725006ns 1319259 1c000e82 fff60613 addi x12, x12, -1 x12=000003cc x12:000003cd +74725026ns 1319260 1c000e84 00130313 addi x6, x6, 1 x6=1c0099e4 x6:1c0099e3 +74725046ns 1319261 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003cc +74725125ns 1319265 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099e4 PA:1c0099e4 +74725145ns 1319266 1c000e82 fff60613 addi x12, x12, -1 x12=000003cb x12:000003cc +74725165ns 1319267 1c000e84 00130313 addi x6, x6, 1 x6=1c0099e5 x6:1c0099e4 +74725184ns 1319268 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003cb +74725264ns 1319272 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099e5 PA:1c0099e5 +74725283ns 1319273 1c000e82 fff60613 addi x12, x12, -1 x12=000003ca x12:000003cb +74725303ns 1319274 1c000e84 00130313 addi x6, x6, 1 x6=1c0099e6 x6:1c0099e5 +74725323ns 1319275 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ca +74725402ns 1319279 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099e6 PA:1c0099e6 +74725422ns 1319280 1c000e82 fff60613 addi x12, x12, -1 x12=000003c9 x12:000003ca +74725442ns 1319281 1c000e84 00130313 addi x6, x6, 1 x6=1c0099e7 x6:1c0099e6 +74725461ns 1319282 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003c9 +74725541ns 1319286 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099e7 PA:1c0099e7 +74725560ns 1319287 1c000e82 fff60613 addi x12, x12, -1 x12=000003c8 x12:000003c9 +74725580ns 1319288 1c000e84 00130313 addi x6, x6, 1 x6=1c0099e8 x6:1c0099e7 +74725600ns 1319289 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003c8 +74725679ns 1319293 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099e8 PA:1c0099e8 +74725699ns 1319294 1c000e82 fff60613 addi x12, x12, -1 x12=000003c7 x12:000003c8 +74725719ns 1319295 1c000e84 00130313 addi x6, x6, 1 x6=1c0099e9 x6:1c0099e8 +74725739ns 1319296 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003c7 +74725818ns 1319300 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099e9 PA:1c0099e9 +74725838ns 1319301 1c000e82 fff60613 addi x12, x12, -1 x12=000003c6 x12:000003c7 +74725857ns 1319302 1c000e84 00130313 addi x6, x6, 1 x6=1c0099ea x6:1c0099e9 +74725877ns 1319303 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003c6 +74725956ns 1319307 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099ea PA:1c0099ea +74725976ns 1319308 1c000e82 fff60613 addi x12, x12, -1 x12=000003c5 x12:000003c6 +74725996ns 1319309 1c000e84 00130313 addi x6, x6, 1 x6=1c0099eb x6:1c0099ea +74726016ns 1319310 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003c5 +74726095ns 1319314 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099eb PA:1c0099eb +74726115ns 1319315 1c000e82 fff60613 addi x12, x12, -1 x12=000003c4 x12:000003c5 +74726134ns 1319316 1c000e84 00130313 addi x6, x6, 1 x6=1c0099ec x6:1c0099eb +74726154ns 1319317 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003c4 +74726233ns 1319321 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099ec PA:1c0099ec +74726253ns 1319322 1c000e82 fff60613 addi x12, x12, -1 x12=000003c3 x12:000003c4 +74726273ns 1319323 1c000e84 00130313 addi x6, x6, 1 x6=1c0099ed x6:1c0099ec +74726293ns 1319324 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003c3 +74726372ns 1319328 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099ed PA:1c0099ed +74726392ns 1319329 1c000e82 fff60613 addi x12, x12, -1 x12=000003c2 x12:000003c3 +74726412ns 1319330 1c000e84 00130313 addi x6, x6, 1 x6=1c0099ee x6:1c0099ed +74726431ns 1319331 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003c2 +74726510ns 1319335 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099ee PA:1c0099ee +74726530ns 1319336 1c000e82 fff60613 addi x12, x12, -1 x12=000003c1 x12:000003c2 +74726550ns 1319337 1c000e84 00130313 addi x6, x6, 1 x6=1c0099ef x6:1c0099ee +74726570ns 1319338 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003c1 +74726649ns 1319342 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099ef PA:1c0099ef +74726669ns 1319343 1c000e82 fff60613 addi x12, x12, -1 x12=000003c0 x12:000003c1 +74726689ns 1319344 1c000e84 00130313 addi x6, x6, 1 x6=1c0099f0 x6:1c0099ef +74726708ns 1319345 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003c0 +74726788ns 1319349 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099f0 PA:1c0099f0 +74726807ns 1319350 1c000e82 fff60613 addi x12, x12, -1 x12=000003bf x12:000003c0 +74726827ns 1319351 1c000e84 00130313 addi x6, x6, 1 x6=1c0099f1 x6:1c0099f0 +74726847ns 1319352 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003bf +74726926ns 1319356 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099f1 PA:1c0099f1 +74726946ns 1319357 1c000e82 fff60613 addi x12, x12, -1 x12=000003be x12:000003bf +74726966ns 1319358 1c000e84 00130313 addi x6, x6, 1 x6=1c0099f2 x6:1c0099f1 +74726985ns 1319359 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003be +74727065ns 1319363 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099f2 PA:1c0099f2 +74727084ns 1319364 1c000e82 fff60613 addi x12, x12, -1 x12=000003bd x12:000003be +74727104ns 1319365 1c000e84 00130313 addi x6, x6, 1 x6=1c0099f3 x6:1c0099f2 +74727124ns 1319366 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003bd +74727203ns 1319370 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099f3 PA:1c0099f3 +74727223ns 1319371 1c000e82 fff60613 addi x12, x12, -1 x12=000003bc x12:000003bd +74727243ns 1319372 1c000e84 00130313 addi x6, x6, 1 x6=1c0099f4 x6:1c0099f3 +74727263ns 1319373 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003bc +74727342ns 1319377 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099f4 PA:1c0099f4 +74727362ns 1319378 1c000e82 fff60613 addi x12, x12, -1 x12=000003bb x12:000003bc +74727381ns 1319379 1c000e84 00130313 addi x6, x6, 1 x6=1c0099f5 x6:1c0099f4 +74727401ns 1319380 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003bb +74727480ns 1319384 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099f5 PA:1c0099f5 +74727500ns 1319385 1c000e82 fff60613 addi x12, x12, -1 x12=000003ba x12:000003bb +74727520ns 1319386 1c000e84 00130313 addi x6, x6, 1 x6=1c0099f6 x6:1c0099f5 +74727540ns 1319387 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ba +74727619ns 1319391 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099f6 PA:1c0099f6 +74727639ns 1319392 1c000e82 fff60613 addi x12, x12, -1 x12=000003b9 x12:000003ba +74727658ns 1319393 1c000e84 00130313 addi x6, x6, 1 x6=1c0099f7 x6:1c0099f6 +74727678ns 1319394 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003b9 +74727757ns 1319398 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099f7 PA:1c0099f7 +74727777ns 1319399 1c000e82 fff60613 addi x12, x12, -1 x12=000003b8 x12:000003b9 +74727797ns 1319400 1c000e84 00130313 addi x6, x6, 1 x6=1c0099f8 x6:1c0099f7 +74727817ns 1319401 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003b8 +74727896ns 1319405 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099f8 PA:1c0099f8 +74727916ns 1319406 1c000e82 fff60613 addi x12, x12, -1 x12=000003b7 x12:000003b8 +74727935ns 1319407 1c000e84 00130313 addi x6, x6, 1 x6=1c0099f9 x6:1c0099f8 +74727955ns 1319408 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003b7 +74728034ns 1319412 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099f9 PA:1c0099f9 +74728054ns 1319413 1c000e82 fff60613 addi x12, x12, -1 x12=000003b6 x12:000003b7 +74728074ns 1319414 1c000e84 00130313 addi x6, x6, 1 x6=1c0099fa x6:1c0099f9 +74728094ns 1319415 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003b6 +74728173ns 1319419 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099fa PA:1c0099fa +74728193ns 1319420 1c000e82 fff60613 addi x12, x12, -1 x12=000003b5 x12:000003b6 +74728213ns 1319421 1c000e84 00130313 addi x6, x6, 1 x6=1c0099fb x6:1c0099fa +74728232ns 1319422 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003b5 +74728312ns 1319426 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099fb PA:1c0099fb +74728331ns 1319427 1c000e82 fff60613 addi x12, x12, -1 x12=000003b4 x12:000003b5 +74728351ns 1319428 1c000e84 00130313 addi x6, x6, 1 x6=1c0099fc x6:1c0099fb +74728371ns 1319429 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003b4 +74728450ns 1319433 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099fc PA:1c0099fc +74728470ns 1319434 1c000e82 fff60613 addi x12, x12, -1 x12=000003b3 x12:000003b4 +74728490ns 1319435 1c000e84 00130313 addi x6, x6, 1 x6=1c0099fd x6:1c0099fc +74728509ns 1319436 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003b3 +74728589ns 1319440 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099fd PA:1c0099fd +74728608ns 1319441 1c000e82 fff60613 addi x12, x12, -1 x12=000003b2 x12:000003b3 +74728628ns 1319442 1c000e84 00130313 addi x6, x6, 1 x6=1c0099fe x6:1c0099fd +74728648ns 1319443 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003b2 +74728727ns 1319447 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099fe PA:1c0099fe +74728747ns 1319448 1c000e82 fff60613 addi x12, x12, -1 x12=000003b1 x12:000003b2 +74728767ns 1319449 1c000e84 00130313 addi x6, x6, 1 x6=1c0099ff x6:1c0099fe +74728787ns 1319450 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003b1 +74728866ns 1319454 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c0099ff PA:1c0099ff +74728886ns 1319455 1c000e82 fff60613 addi x12, x12, -1 x12=000003b0 x12:000003b1 +74728905ns 1319456 1c000e84 00130313 addi x6, x6, 1 x6=1c009a00 x6:1c0099ff +74728925ns 1319457 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003b0 +74729004ns 1319461 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a00 PA:1c009a00 +74729024ns 1319462 1c000e82 fff60613 addi x12, x12, -1 x12=000003af x12:000003b0 +74729044ns 1319463 1c000e84 00130313 addi x6, x6, 1 x6=1c009a01 x6:1c009a00 +74729064ns 1319464 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003af +74729143ns 1319468 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a01 PA:1c009a01 +74729163ns 1319469 1c000e82 fff60613 addi x12, x12, -1 x12=000003ae x12:000003af +74729182ns 1319470 1c000e84 00130313 addi x6, x6, 1 x6=1c009a02 x6:1c009a01 +74729202ns 1319471 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ae +74729281ns 1319475 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a02 PA:1c009a02 +74729301ns 1319476 1c000e82 fff60613 addi x12, x12, -1 x12=000003ad x12:000003ae +74729321ns 1319477 1c000e84 00130313 addi x6, x6, 1 x6=1c009a03 x6:1c009a02 +74729341ns 1319478 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ad +74729420ns 1319482 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a03 PA:1c009a03 +74729440ns 1319483 1c000e82 fff60613 addi x12, x12, -1 x12=000003ac x12:000003ad +74729459ns 1319484 1c000e84 00130313 addi x6, x6, 1 x6=1c009a04 x6:1c009a03 +74729479ns 1319485 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ac +74729558ns 1319489 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a04 PA:1c009a04 +74729578ns 1319490 1c000e82 fff60613 addi x12, x12, -1 x12=000003ab x12:000003ac +74729598ns 1319491 1c000e84 00130313 addi x6, x6, 1 x6=1c009a05 x6:1c009a04 +74729618ns 1319492 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ab +74729697ns 1319496 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a05 PA:1c009a05 +74729717ns 1319497 1c000e82 fff60613 addi x12, x12, -1 x12=000003aa x12:000003ab +74729737ns 1319498 1c000e84 00130313 addi x6, x6, 1 x6=1c009a06 x6:1c009a05 +74729756ns 1319499 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003aa +74729836ns 1319503 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a06 PA:1c009a06 +74729855ns 1319504 1c000e82 fff60613 addi x12, x12, -1 x12=000003a9 x12:000003aa +74729875ns 1319505 1c000e84 00130313 addi x6, x6, 1 x6=1c009a07 x6:1c009a06 +74729895ns 1319506 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003a9 +74729974ns 1319510 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a07 PA:1c009a07 +74729994ns 1319511 1c000e82 fff60613 addi x12, x12, -1 x12=000003a8 x12:000003a9 +74730014ns 1319512 1c000e84 00130313 addi x6, x6, 1 x6=1c009a08 x6:1c009a07 +74730033ns 1319513 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003a8 +74730113ns 1319517 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a08 PA:1c009a08 +74730132ns 1319518 1c000e82 fff60613 addi x12, x12, -1 x12=000003a7 x12:000003a8 +74730152ns 1319519 1c000e84 00130313 addi x6, x6, 1 x6=1c009a09 x6:1c009a08 +74730172ns 1319520 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003a7 +74730251ns 1319524 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a09 PA:1c009a09 +74730271ns 1319525 1c000e82 fff60613 addi x12, x12, -1 x12=000003a6 x12:000003a7 +74730291ns 1319526 1c000e84 00130313 addi x6, x6, 1 x6=1c009a0a x6:1c009a09 +74730311ns 1319527 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003a6 +74730390ns 1319531 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a0a PA:1c009a0a +74730409ns 1319532 1c000e82 fff60613 addi x12, x12, -1 x12=000003a5 x12:000003a6 +74730429ns 1319533 1c000e84 00130313 addi x6, x6, 1 x6=1c009a0b x6:1c009a0a +74730449ns 1319534 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003a5 +74730528ns 1319538 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a0b PA:1c009a0b +74730548ns 1319539 1c000e82 fff60613 addi x12, x12, -1 x12=000003a4 x12:000003a5 +74730568ns 1319540 1c000e84 00130313 addi x6, x6, 1 x6=1c009a0c x6:1c009a0b +74730588ns 1319541 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003a4 +74730667ns 1319545 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a0c PA:1c009a0c +74730687ns 1319546 1c000e82 fff60613 addi x12, x12, -1 x12=000003a3 x12:000003a4 +74730706ns 1319547 1c000e84 00130313 addi x6, x6, 1 x6=1c009a0d x6:1c009a0c +74730726ns 1319548 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003a3 +74730805ns 1319552 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a0d PA:1c009a0d +74730825ns 1319553 1c000e82 fff60613 addi x12, x12, -1 x12=000003a2 x12:000003a3 +74730845ns 1319554 1c000e84 00130313 addi x6, x6, 1 x6=1c009a0e x6:1c009a0d +74730865ns 1319555 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003a2 +74730944ns 1319559 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a0e PA:1c009a0e +74730964ns 1319560 1c000e82 fff60613 addi x12, x12, -1 x12=000003a1 x12:000003a2 +74730983ns 1319561 1c000e84 00130313 addi x6, x6, 1 x6=1c009a0f x6:1c009a0e +74731003ns 1319562 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003a1 +74731082ns 1319566 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a0f PA:1c009a0f +74731102ns 1319567 1c000e82 fff60613 addi x12, x12, -1 x12=000003a0 x12:000003a1 +74731122ns 1319568 1c000e84 00130313 addi x6, x6, 1 x6=1c009a10 x6:1c009a0f +74731142ns 1319569 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003a0 +74731221ns 1319573 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a10 PA:1c009a10 +74731241ns 1319574 1c000e82 fff60613 addi x12, x12, -1 x12=0000039f x12:000003a0 +74731261ns 1319575 1c000e84 00130313 addi x6, x6, 1 x6=1c009a11 x6:1c009a10 +74731280ns 1319576 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000039f +74731360ns 1319580 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a11 PA:1c009a11 +74731379ns 1319581 1c000e82 fff60613 addi x12, x12, -1 x12=0000039e x12:0000039f +74731399ns 1319582 1c000e84 00130313 addi x6, x6, 1 x6=1c009a12 x6:1c009a11 +74731419ns 1319583 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000039e +74731498ns 1319587 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a12 PA:1c009a12 +74731518ns 1319588 1c000e82 fff60613 addi x12, x12, -1 x12=0000039d x12:0000039e +74731538ns 1319589 1c000e84 00130313 addi x6, x6, 1 x6=1c009a13 x6:1c009a12 +74731557ns 1319590 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000039d +74731637ns 1319594 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a13 PA:1c009a13 +74731656ns 1319595 1c000e82 fff60613 addi x12, x12, -1 x12=0000039c x12:0000039d +74731676ns 1319596 1c000e84 00130313 addi x6, x6, 1 x6=1c009a14 x6:1c009a13 +74731696ns 1319597 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000039c +74731775ns 1319601 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a14 PA:1c009a14 +74731795ns 1319602 1c000e82 fff60613 addi x12, x12, -1 x12=0000039b x12:0000039c +74731815ns 1319603 1c000e84 00130313 addi x6, x6, 1 x6=1c009a15 x6:1c009a14 +74731835ns 1319604 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000039b +74731914ns 1319608 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a15 PA:1c009a15 +74731933ns 1319609 1c000e82 fff60613 addi x12, x12, -1 x12=0000039a x12:0000039b +74731953ns 1319610 1c000e84 00130313 addi x6, x6, 1 x6=1c009a16 x6:1c009a15 +74731973ns 1319611 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000039a +74732052ns 1319615 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a16 PA:1c009a16 +74732072ns 1319616 1c000e82 fff60613 addi x12, x12, -1 x12=00000399 x12:0000039a +74732092ns 1319617 1c000e84 00130313 addi x6, x6, 1 x6=1c009a17 x6:1c009a16 +74732112ns 1319618 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000399 +74732191ns 1319622 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a17 PA:1c009a17 +74732211ns 1319623 1c000e82 fff60613 addi x12, x12, -1 x12=00000398 x12:00000399 +74732230ns 1319624 1c000e84 00130313 addi x6, x6, 1 x6=1c009a18 x6:1c009a17 +74732250ns 1319625 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000398 +74732329ns 1319629 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a18 PA:1c009a18 +74732349ns 1319630 1c000e82 fff60613 addi x12, x12, -1 x12=00000397 x12:00000398 +74732369ns 1319631 1c000e84 00130313 addi x6, x6, 1 x6=1c009a19 x6:1c009a18 +74732389ns 1319632 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000397 +74732468ns 1319636 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a19 PA:1c009a19 +74732488ns 1319637 1c000e82 fff60613 addi x12, x12, -1 x12=00000396 x12:00000397 +74732507ns 1319638 1c000e84 00130313 addi x6, x6, 1 x6=1c009a1a x6:1c009a19 +74732527ns 1319639 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000396 +74732606ns 1319643 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a1a PA:1c009a1a +74732626ns 1319644 1c000e82 fff60613 addi x12, x12, -1 x12=00000395 x12:00000396 +74732646ns 1319645 1c000e84 00130313 addi x6, x6, 1 x6=1c009a1b x6:1c009a1a +74732666ns 1319646 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000395 +74732745ns 1319650 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a1b PA:1c009a1b +74732765ns 1319651 1c000e82 fff60613 addi x12, x12, -1 x12=00000394 x12:00000395 +74732785ns 1319652 1c000e84 00130313 addi x6, x6, 1 x6=1c009a1c x6:1c009a1b +74732804ns 1319653 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000394 +74732883ns 1319657 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a1c PA:1c009a1c +74732903ns 1319658 1c000e82 fff60613 addi x12, x12, -1 x12=00000393 x12:00000394 +74732923ns 1319659 1c000e84 00130313 addi x6, x6, 1 x6=1c009a1d x6:1c009a1c +74732943ns 1319660 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000393 +74733022ns 1319664 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a1d PA:1c009a1d +74733042ns 1319665 1c000e82 fff60613 addi x12, x12, -1 x12=00000392 x12:00000393 +74733062ns 1319666 1c000e84 00130313 addi x6, x6, 1 x6=1c009a1e x6:1c009a1d +74733081ns 1319667 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000392 +74733161ns 1319671 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a1e PA:1c009a1e +74733180ns 1319672 1c000e82 fff60613 addi x12, x12, -1 x12=00000391 x12:00000392 +74733200ns 1319673 1c000e84 00130313 addi x6, x6, 1 x6=1c009a1f x6:1c009a1e +74733220ns 1319674 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000391 +74733299ns 1319678 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a1f PA:1c009a1f +74733319ns 1319679 1c000e82 fff60613 addi x12, x12, -1 x12=00000390 x12:00000391 +74733339ns 1319680 1c000e84 00130313 addi x6, x6, 1 x6=1c009a20 x6:1c009a1f +74733359ns 1319681 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000390 +74733438ns 1319685 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a20 PA:1c009a20 +74733457ns 1319686 1c000e82 fff60613 addi x12, x12, -1 x12=0000038f x12:00000390 +74733477ns 1319687 1c000e84 00130313 addi x6, x6, 1 x6=1c009a21 x6:1c009a20 +74733497ns 1319688 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000038f +74733576ns 1319692 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a21 PA:1c009a21 +74733596ns 1319693 1c000e82 fff60613 addi x12, x12, -1 x12=0000038e x12:0000038f +74733616ns 1319694 1c000e84 00130313 addi x6, x6, 1 x6=1c009a22 x6:1c009a21 +74733636ns 1319695 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000038e +74733715ns 1319699 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a22 PA:1c009a22 +74733735ns 1319700 1c000e82 fff60613 addi x12, x12, -1 x12=0000038d x12:0000038e +74733754ns 1319701 1c000e84 00130313 addi x6, x6, 1 x6=1c009a23 x6:1c009a22 +74733774ns 1319702 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000038d +74733853ns 1319706 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a23 PA:1c009a23 +74733873ns 1319707 1c000e82 fff60613 addi x12, x12, -1 x12=0000038c x12:0000038d +74733893ns 1319708 1c000e84 00130313 addi x6, x6, 1 x6=1c009a24 x6:1c009a23 +74733913ns 1319709 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000038c +74733992ns 1319713 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a24 PA:1c009a24 +74734012ns 1319714 1c000e82 fff60613 addi x12, x12, -1 x12=0000038b x12:0000038c +74734031ns 1319715 1c000e84 00130313 addi x6, x6, 1 x6=1c009a25 x6:1c009a24 +74734051ns 1319716 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000038b +74734130ns 1319720 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a25 PA:1c009a25 +74734150ns 1319721 1c000e82 fff60613 addi x12, x12, -1 x12=0000038a x12:0000038b +74734170ns 1319722 1c000e84 00130313 addi x6, x6, 1 x6=1c009a26 x6:1c009a25 +74734190ns 1319723 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000038a +74734269ns 1319727 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a26 PA:1c009a26 +74734289ns 1319728 1c000e82 fff60613 addi x12, x12, -1 x12=00000389 x12:0000038a +74734309ns 1319729 1c000e84 00130313 addi x6, x6, 1 x6=1c009a27 x6:1c009a26 +74734328ns 1319730 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000389 +74734407ns 1319734 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a27 PA:1c009a27 +74734427ns 1319735 1c000e82 fff60613 addi x12, x12, -1 x12=00000388 x12:00000389 +74734447ns 1319736 1c000e84 00130313 addi x6, x6, 1 x6=1c009a28 x6:1c009a27 +74734467ns 1319737 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000388 +74734546ns 1319741 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a28 PA:1c009a28 +74734566ns 1319742 1c000e82 fff60613 addi x12, x12, -1 x12=00000387 x12:00000388 +74734586ns 1319743 1c000e84 00130313 addi x6, x6, 1 x6=1c009a29 x6:1c009a28 +74734605ns 1319744 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000387 +74734685ns 1319748 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a29 PA:1c009a29 +74734704ns 1319749 1c000e82 fff60613 addi x12, x12, -1 x12=00000386 x12:00000387 +74734724ns 1319750 1c000e84 00130313 addi x6, x6, 1 x6=1c009a2a x6:1c009a29 +74734744ns 1319751 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000386 +74734823ns 1319755 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a2a PA:1c009a2a +74734843ns 1319756 1c000e82 fff60613 addi x12, x12, -1 x12=00000385 x12:00000386 +74734863ns 1319757 1c000e84 00130313 addi x6, x6, 1 x6=1c009a2b x6:1c009a2a +74734882ns 1319758 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000385 +74734962ns 1319762 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a2b PA:1c009a2b +74734981ns 1319763 1c000e82 fff60613 addi x12, x12, -1 x12=00000384 x12:00000385 +74735001ns 1319764 1c000e84 00130313 addi x6, x6, 1 x6=1c009a2c x6:1c009a2b +74735021ns 1319765 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000384 +74735100ns 1319769 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a2c PA:1c009a2c +74735120ns 1319770 1c000e82 fff60613 addi x12, x12, -1 x12=00000383 x12:00000384 +74735140ns 1319771 1c000e84 00130313 addi x6, x6, 1 x6=1c009a2d x6:1c009a2c +74735160ns 1319772 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000383 +74735239ns 1319776 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a2d PA:1c009a2d +74735259ns 1319777 1c000e82 fff60613 addi x12, x12, -1 x12=00000382 x12:00000383 +74735278ns 1319778 1c000e84 00130313 addi x6, x6, 1 x6=1c009a2e x6:1c009a2d +74735298ns 1319779 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000382 +74735377ns 1319783 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a2e PA:1c009a2e +74735397ns 1319784 1c000e82 fff60613 addi x12, x12, -1 x12=00000381 x12:00000382 +74735417ns 1319785 1c000e84 00130313 addi x6, x6, 1 x6=1c009a2f x6:1c009a2e +74735437ns 1319786 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000381 +74735516ns 1319790 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a2f PA:1c009a2f +74735536ns 1319791 1c000e82 fff60613 addi x12, x12, -1 x12=00000380 x12:00000381 +74735555ns 1319792 1c000e84 00130313 addi x6, x6, 1 x6=1c009a30 x6:1c009a2f +74735575ns 1319793 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000380 +74735654ns 1319797 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a30 PA:1c009a30 +74735674ns 1319798 1c000e82 fff60613 addi x12, x12, -1 x12=0000037f x12:00000380 +74735694ns 1319799 1c000e84 00130313 addi x6, x6, 1 x6=1c009a31 x6:1c009a30 +74735714ns 1319800 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000037f +74735793ns 1319804 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a31 PA:1c009a31 +74735813ns 1319805 1c000e82 fff60613 addi x12, x12, -1 x12=0000037e x12:0000037f +74735833ns 1319806 1c000e84 00130313 addi x6, x6, 1 x6=1c009a32 x6:1c009a31 +74735852ns 1319807 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000037e +74735931ns 1319811 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a32 PA:1c009a32 +74735951ns 1319812 1c000e82 fff60613 addi x12, x12, -1 x12=0000037d x12:0000037e +74735971ns 1319813 1c000e84 00130313 addi x6, x6, 1 x6=1c009a33 x6:1c009a32 +74735991ns 1319814 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000037d +74736070ns 1319818 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a33 PA:1c009a33 +74736090ns 1319819 1c000e82 fff60613 addi x12, x12, -1 x12=0000037c x12:0000037d +74736110ns 1319820 1c000e84 00130313 addi x6, x6, 1 x6=1c009a34 x6:1c009a33 +74736129ns 1319821 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000037c +74736209ns 1319825 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a34 PA:1c009a34 +74736228ns 1319826 1c000e82 fff60613 addi x12, x12, -1 x12=0000037b x12:0000037c +74736248ns 1319827 1c000e84 00130313 addi x6, x6, 1 x6=1c009a35 x6:1c009a34 +74736268ns 1319828 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000037b +74736347ns 1319832 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a35 PA:1c009a35 +74736367ns 1319833 1c000e82 fff60613 addi x12, x12, -1 x12=0000037a x12:0000037b +74736387ns 1319834 1c000e84 00130313 addi x6, x6, 1 x6=1c009a36 x6:1c009a35 +74736406ns 1319835 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000037a +74736486ns 1319839 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a36 PA:1c009a36 +74736505ns 1319840 1c000e82 fff60613 addi x12, x12, -1 x12=00000379 x12:0000037a +74736525ns 1319841 1c000e84 00130313 addi x6, x6, 1 x6=1c009a37 x6:1c009a36 +74736545ns 1319842 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000379 +74736624ns 1319846 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a37 PA:1c009a37 +74736644ns 1319847 1c000e82 fff60613 addi x12, x12, -1 x12=00000378 x12:00000379 +74736664ns 1319848 1c000e84 00130313 addi x6, x6, 1 x6=1c009a38 x6:1c009a37 +74736684ns 1319849 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000378 +74736763ns 1319853 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a38 PA:1c009a38 +74736783ns 1319854 1c000e82 fff60613 addi x12, x12, -1 x12=00000377 x12:00000378 +74736802ns 1319855 1c000e84 00130313 addi x6, x6, 1 x6=1c009a39 x6:1c009a38 +74736822ns 1319856 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000377 +74736901ns 1319860 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a39 PA:1c009a39 +74736921ns 1319861 1c000e82 fff60613 addi x12, x12, -1 x12=00000376 x12:00000377 +74736941ns 1319862 1c000e84 00130313 addi x6, x6, 1 x6=1c009a3a x6:1c009a39 +74736961ns 1319863 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000376 +74737040ns 1319867 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a3a PA:1c009a3a +74737060ns 1319868 1c000e82 fff60613 addi x12, x12, -1 x12=00000375 x12:00000376 +74737079ns 1319869 1c000e84 00130313 addi x6, x6, 1 x6=1c009a3b x6:1c009a3a +74737099ns 1319870 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000375 +74737178ns 1319874 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a3b PA:1c009a3b +74737198ns 1319875 1c000e82 fff60613 addi x12, x12, -1 x12=00000374 x12:00000375 +74737218ns 1319876 1c000e84 00130313 addi x6, x6, 1 x6=1c009a3c x6:1c009a3b +74737238ns 1319877 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000374 +74737317ns 1319881 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a3c PA:1c009a3c +74737337ns 1319882 1c000e82 fff60613 addi x12, x12, -1 x12=00000373 x12:00000374 +74737356ns 1319883 1c000e84 00130313 addi x6, x6, 1 x6=1c009a3d x6:1c009a3c +74737376ns 1319884 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000373 +74737455ns 1319888 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a3d PA:1c009a3d +74737475ns 1319889 1c000e82 fff60613 addi x12, x12, -1 x12=00000372 x12:00000373 +74737495ns 1319890 1c000e84 00130313 addi x6, x6, 1 x6=1c009a3e x6:1c009a3d +74737515ns 1319891 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000372 +74737594ns 1319895 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a3e PA:1c009a3e +74737614ns 1319896 1c000e82 fff60613 addi x12, x12, -1 x12=00000371 x12:00000372 +74737634ns 1319897 1c000e84 00130313 addi x6, x6, 1 x6=1c009a3f x6:1c009a3e +74737653ns 1319898 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000371 +74737733ns 1319902 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a3f PA:1c009a3f +74737752ns 1319903 1c000e82 fff60613 addi x12, x12, -1 x12=00000370 x12:00000371 +74737772ns 1319904 1c000e84 00130313 addi x6, x6, 1 x6=1c009a40 x6:1c009a3f +74737792ns 1319905 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000370 +74737871ns 1319909 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a40 PA:1c009a40 +74737891ns 1319910 1c000e82 fff60613 addi x12, x12, -1 x12=0000036f x12:00000370 +74737911ns 1319911 1c000e84 00130313 addi x6, x6, 1 x6=1c009a41 x6:1c009a40 +74737930ns 1319912 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000036f +74738010ns 1319916 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a41 PA:1c009a41 +74738029ns 1319917 1c000e82 fff60613 addi x12, x12, -1 x12=0000036e x12:0000036f +74738049ns 1319918 1c000e84 00130313 addi x6, x6, 1 x6=1c009a42 x6:1c009a41 +74738069ns 1319919 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000036e +74738148ns 1319923 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a42 PA:1c009a42 +74738168ns 1319924 1c000e82 fff60613 addi x12, x12, -1 x12=0000036d x12:0000036e +74738188ns 1319925 1c000e84 00130313 addi x6, x6, 1 x6=1c009a43 x6:1c009a42 +74738208ns 1319926 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000036d +74738287ns 1319930 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a43 PA:1c009a43 +74738307ns 1319931 1c000e82 fff60613 addi x12, x12, -1 x12=0000036c x12:0000036d +74738326ns 1319932 1c000e84 00130313 addi x6, x6, 1 x6=1c009a44 x6:1c009a43 +74738346ns 1319933 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000036c +74738425ns 1319937 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a44 PA:1c009a44 +74738445ns 1319938 1c000e82 fff60613 addi x12, x12, -1 x12=0000036b x12:0000036c +74738465ns 1319939 1c000e84 00130313 addi x6, x6, 1 x6=1c009a45 x6:1c009a44 +74738485ns 1319940 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000036b +74738564ns 1319944 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a45 PA:1c009a45 +74738584ns 1319945 1c000e82 fff60613 addi x12, x12, -1 x12=0000036a x12:0000036b +74738603ns 1319946 1c000e84 00130313 addi x6, x6, 1 x6=1c009a46 x6:1c009a45 +74738623ns 1319947 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000036a +74738702ns 1319951 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a46 PA:1c009a46 +74738722ns 1319952 1c000e82 fff60613 addi x12, x12, -1 x12=00000369 x12:0000036a +74738742ns 1319953 1c000e84 00130313 addi x6, x6, 1 x6=1c009a47 x6:1c009a46 +74738762ns 1319954 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000369 +74738841ns 1319958 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a47 PA:1c009a47 +74738861ns 1319959 1c000e82 fff60613 addi x12, x12, -1 x12=00000368 x12:00000369 +74738880ns 1319960 1c000e84 00130313 addi x6, x6, 1 x6=1c009a48 x6:1c009a47 +74738900ns 1319961 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000368 +74738979ns 1319965 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a48 PA:1c009a48 +74738999ns 1319966 1c000e82 fff60613 addi x12, x12, -1 x12=00000367 x12:00000368 +74739019ns 1319967 1c000e84 00130313 addi x6, x6, 1 x6=1c009a49 x6:1c009a48 +74739039ns 1319968 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000367 +74739118ns 1319972 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a49 PA:1c009a49 +74739138ns 1319973 1c000e82 fff60613 addi x12, x12, -1 x12=00000366 x12:00000367 +74739158ns 1319974 1c000e84 00130313 addi x6, x6, 1 x6=1c009a4a x6:1c009a49 +74739177ns 1319975 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000366 +74739257ns 1319979 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a4a PA:1c009a4a +74739276ns 1319980 1c000e82 fff60613 addi x12, x12, -1 x12=00000365 x12:00000366 +74739296ns 1319981 1c000e84 00130313 addi x6, x6, 1 x6=1c009a4b x6:1c009a4a +74739316ns 1319982 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000365 +74739395ns 1319986 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a4b PA:1c009a4b +74739415ns 1319987 1c000e82 fff60613 addi x12, x12, -1 x12=00000364 x12:00000365 +74739435ns 1319988 1c000e84 00130313 addi x6, x6, 1 x6=1c009a4c x6:1c009a4b +74739454ns 1319989 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000364 +74739534ns 1319993 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a4c PA:1c009a4c +74739553ns 1319994 1c000e82 fff60613 addi x12, x12, -1 x12=00000363 x12:00000364 +74739573ns 1319995 1c000e84 00130313 addi x6, x6, 1 x6=1c009a4d x6:1c009a4c +74739593ns 1319996 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000363 +74739672ns 1320000 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a4d PA:1c009a4d +74739692ns 1320001 1c000e82 fff60613 addi x12, x12, -1 x12=00000362 x12:00000363 +74739712ns 1320002 1c000e84 00130313 addi x6, x6, 1 x6=1c009a4e x6:1c009a4d +74739732ns 1320003 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000362 +74739811ns 1320007 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a4e PA:1c009a4e +74739830ns 1320008 1c000e82 fff60613 addi x12, x12, -1 x12=00000361 x12:00000362 +74739850ns 1320009 1c000e84 00130313 addi x6, x6, 1 x6=1c009a4f x6:1c009a4e +74739870ns 1320010 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000361 +74739949ns 1320014 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a4f PA:1c009a4f +74739969ns 1320015 1c000e82 fff60613 addi x12, x12, -1 x12=00000360 x12:00000361 +74739989ns 1320016 1c000e84 00130313 addi x6, x6, 1 x6=1c009a50 x6:1c009a4f +74740009ns 1320017 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000360 +74740088ns 1320021 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a50 PA:1c009a50 +74740108ns 1320022 1c000e82 fff60613 addi x12, x12, -1 x12=0000035f x12:00000360 +74740127ns 1320023 1c000e84 00130313 addi x6, x6, 1 x6=1c009a51 x6:1c009a50 +74740147ns 1320024 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000035f +74740226ns 1320028 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a51 PA:1c009a51 +74740246ns 1320029 1c000e82 fff60613 addi x12, x12, -1 x12=0000035e x12:0000035f +74740266ns 1320030 1c000e84 00130313 addi x6, x6, 1 x6=1c009a52 x6:1c009a51 +74740286ns 1320031 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000035e +74740365ns 1320035 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a52 PA:1c009a52 +74740385ns 1320036 1c000e82 fff60613 addi x12, x12, -1 x12=0000035d x12:0000035e +74740404ns 1320037 1c000e84 00130313 addi x6, x6, 1 x6=1c009a53 x6:1c009a52 +74740424ns 1320038 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000035d +74740503ns 1320042 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a53 PA:1c009a53 +74740523ns 1320043 1c000e82 fff60613 addi x12, x12, -1 x12=0000035c x12:0000035d +74740543ns 1320044 1c000e84 00130313 addi x6, x6, 1 x6=1c009a54 x6:1c009a53 +74740563ns 1320045 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000035c +74740642ns 1320049 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a54 PA:1c009a54 +74740662ns 1320050 1c000e82 fff60613 addi x12, x12, -1 x12=0000035b x12:0000035c +74740682ns 1320051 1c000e84 00130313 addi x6, x6, 1 x6=1c009a55 x6:1c009a54 +74740701ns 1320052 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000035b +74740781ns 1320056 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a55 PA:1c009a55 +74740800ns 1320057 1c000e82 fff60613 addi x12, x12, -1 x12=0000035a x12:0000035b +74740820ns 1320058 1c000e84 00130313 addi x6, x6, 1 x6=1c009a56 x6:1c009a55 +74740840ns 1320059 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000035a +74740919ns 1320063 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a56 PA:1c009a56 +74740939ns 1320064 1c000e82 fff60613 addi x12, x12, -1 x12=00000359 x12:0000035a +74740959ns 1320065 1c000e84 00130313 addi x6, x6, 1 x6=1c009a57 x6:1c009a56 +74740978ns 1320066 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000359 +74741058ns 1320070 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a57 PA:1c009a57 +74741077ns 1320071 1c000e82 fff60613 addi x12, x12, -1 x12=00000358 x12:00000359 +74741097ns 1320072 1c000e84 00130313 addi x6, x6, 1 x6=1c009a58 x6:1c009a57 +74741117ns 1320073 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000358 +74741196ns 1320077 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a58 PA:1c009a58 +74741216ns 1320078 1c000e82 fff60613 addi x12, x12, -1 x12=00000357 x12:00000358 +74741236ns 1320079 1c000e84 00130313 addi x6, x6, 1 x6=1c009a59 x6:1c009a58 +74741256ns 1320080 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000357 +74741335ns 1320084 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a59 PA:1c009a59 +74741354ns 1320085 1c000e82 fff60613 addi x12, x12, -1 x12=00000356 x12:00000357 +74741374ns 1320086 1c000e84 00130313 addi x6, x6, 1 x6=1c009a5a x6:1c009a59 +74741394ns 1320087 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000356 +74741473ns 1320091 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a5a PA:1c009a5a +74741493ns 1320092 1c000e82 fff60613 addi x12, x12, -1 x12=00000355 x12:00000356 +74741513ns 1320093 1c000e84 00130313 addi x6, x6, 1 x6=1c009a5b x6:1c009a5a +74741533ns 1320094 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000355 +74741612ns 1320098 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a5b PA:1c009a5b +74741632ns 1320099 1c000e82 fff60613 addi x12, x12, -1 x12=00000354 x12:00000355 +74741651ns 1320100 1c000e84 00130313 addi x6, x6, 1 x6=1c009a5c x6:1c009a5b +74741671ns 1320101 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000354 +74741750ns 1320105 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a5c PA:1c009a5c +74741770ns 1320106 1c000e82 fff60613 addi x12, x12, -1 x12=00000353 x12:00000354 +74741790ns 1320107 1c000e84 00130313 addi x6, x6, 1 x6=1c009a5d x6:1c009a5c +74741810ns 1320108 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000353 +74741889ns 1320112 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a5d PA:1c009a5d +74741909ns 1320113 1c000e82 fff60613 addi x12, x12, -1 x12=00000352 x12:00000353 +74741928ns 1320114 1c000e84 00130313 addi x6, x6, 1 x6=1c009a5e x6:1c009a5d +74741948ns 1320115 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000352 +74742027ns 1320119 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a5e PA:1c009a5e +74742047ns 1320120 1c000e82 fff60613 addi x12, x12, -1 x12=00000351 x12:00000352 +74742067ns 1320121 1c000e84 00130313 addi x6, x6, 1 x6=1c009a5f x6:1c009a5e +74742087ns 1320122 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000351 +74742166ns 1320126 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a5f PA:1c009a5f +74742186ns 1320127 1c000e82 fff60613 addi x12, x12, -1 x12=00000350 x12:00000351 +74742206ns 1320128 1c000e84 00130313 addi x6, x6, 1 x6=1c009a60 x6:1c009a5f +74742225ns 1320129 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000350 +74742304ns 1320133 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a60 PA:1c009a60 +74742324ns 1320134 1c000e82 fff60613 addi x12, x12, -1 x12=0000034f x12:00000350 +74742344ns 1320135 1c000e84 00130313 addi x6, x6, 1 x6=1c009a61 x6:1c009a60 +74742364ns 1320136 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000034f +74742443ns 1320140 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a61 PA:1c009a61 +74742463ns 1320141 1c000e82 fff60613 addi x12, x12, -1 x12=0000034e x12:0000034f +74742483ns 1320142 1c000e84 00130313 addi x6, x6, 1 x6=1c009a62 x6:1c009a61 +74742502ns 1320143 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000034e +74742582ns 1320147 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a62 PA:1c009a62 +74742601ns 1320148 1c000e82 fff60613 addi x12, x12, -1 x12=0000034d x12:0000034e +74742621ns 1320149 1c000e84 00130313 addi x6, x6, 1 x6=1c009a63 x6:1c009a62 +74742641ns 1320150 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000034d +74742720ns 1320154 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a63 PA:1c009a63 +74742740ns 1320155 1c000e82 fff60613 addi x12, x12, -1 x12=0000034c x12:0000034d +74742760ns 1320156 1c000e84 00130313 addi x6, x6, 1 x6=1c009a64 x6:1c009a63 +74742779ns 1320157 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000034c +74742859ns 1320161 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a64 PA:1c009a64 +74742878ns 1320162 1c000e82 fff60613 addi x12, x12, -1 x12=0000034b x12:0000034c +74742898ns 1320163 1c000e84 00130313 addi x6, x6, 1 x6=1c009a65 x6:1c009a64 +74742918ns 1320164 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000034b +74742997ns 1320168 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a65 PA:1c009a65 +74743017ns 1320169 1c000e82 fff60613 addi x12, x12, -1 x12=0000034a x12:0000034b +74743037ns 1320170 1c000e84 00130313 addi x6, x6, 1 x6=1c009a66 x6:1c009a65 +74743057ns 1320171 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000034a +74743136ns 1320175 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a66 PA:1c009a66 +74743156ns 1320176 1c000e82 fff60613 addi x12, x12, -1 x12=00000349 x12:0000034a +74743175ns 1320177 1c000e84 00130313 addi x6, x6, 1 x6=1c009a67 x6:1c009a66 +74743195ns 1320178 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000349 +74743274ns 1320182 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a67 PA:1c009a67 +74743294ns 1320183 1c000e82 fff60613 addi x12, x12, -1 x12=00000348 x12:00000349 +74743314ns 1320184 1c000e84 00130313 addi x6, x6, 1 x6=1c009a68 x6:1c009a67 +74743334ns 1320185 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000348 +74743413ns 1320189 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a68 PA:1c009a68 +74743433ns 1320190 1c000e82 fff60613 addi x12, x12, -1 x12=00000347 x12:00000348 +74743452ns 1320191 1c000e84 00130313 addi x6, x6, 1 x6=1c009a69 x6:1c009a68 +74743472ns 1320192 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000347 +74743551ns 1320196 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a69 PA:1c009a69 +74743571ns 1320197 1c000e82 fff60613 addi x12, x12, -1 x12=00000346 x12:00000347 +74743591ns 1320198 1c000e84 00130313 addi x6, x6, 1 x6=1c009a6a x6:1c009a69 +74743611ns 1320199 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000346 +74743690ns 1320203 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a6a PA:1c009a6a +74743710ns 1320204 1c000e82 fff60613 addi x12, x12, -1 x12=00000345 x12:00000346 +74743730ns 1320205 1c000e84 00130313 addi x6, x6, 1 x6=1c009a6b x6:1c009a6a +74743749ns 1320206 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000345 +74743828ns 1320210 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a6b PA:1c009a6b +74743848ns 1320211 1c000e82 fff60613 addi x12, x12, -1 x12=00000344 x12:00000345 +74743868ns 1320212 1c000e84 00130313 addi x6, x6, 1 x6=1c009a6c x6:1c009a6b +74743888ns 1320213 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000344 +74743967ns 1320217 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a6c PA:1c009a6c +74743987ns 1320218 1c000e82 fff60613 addi x12, x12, -1 x12=00000343 x12:00000344 +74744007ns 1320219 1c000e84 00130313 addi x6, x6, 1 x6=1c009a6d x6:1c009a6c +74744026ns 1320220 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000343 +74744106ns 1320224 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a6d PA:1c009a6d +74744125ns 1320225 1c000e82 fff60613 addi x12, x12, -1 x12=00000342 x12:00000343 +74744145ns 1320226 1c000e84 00130313 addi x6, x6, 1 x6=1c009a6e x6:1c009a6d +74744165ns 1320227 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000342 +74744244ns 1320231 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a6e PA:1c009a6e +74744264ns 1320232 1c000e82 fff60613 addi x12, x12, -1 x12=00000341 x12:00000342 +74744284ns 1320233 1c000e84 00130313 addi x6, x6, 1 x6=1c009a6f x6:1c009a6e +74744303ns 1320234 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000341 +74744383ns 1320238 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a6f PA:1c009a6f +74744402ns 1320239 1c000e82 fff60613 addi x12, x12, -1 x12=00000340 x12:00000341 +74744422ns 1320240 1c000e84 00130313 addi x6, x6, 1 x6=1c009a70 x6:1c009a6f +74744442ns 1320241 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000340 +74744521ns 1320245 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a70 PA:1c009a70 +74744541ns 1320246 1c000e82 fff60613 addi x12, x12, -1 x12=0000033f x12:00000340 +74744561ns 1320247 1c000e84 00130313 addi x6, x6, 1 x6=1c009a71 x6:1c009a70 +74744581ns 1320248 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000033f +74744660ns 1320252 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a71 PA:1c009a71 +74744680ns 1320253 1c000e82 fff60613 addi x12, x12, -1 x12=0000033e x12:0000033f +74744699ns 1320254 1c000e84 00130313 addi x6, x6, 1 x6=1c009a72 x6:1c009a71 +74744719ns 1320255 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000033e +74744798ns 1320259 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a72 PA:1c009a72 +74744818ns 1320260 1c000e82 fff60613 addi x12, x12, -1 x12=0000033d x12:0000033e +74744838ns 1320261 1c000e84 00130313 addi x6, x6, 1 x6=1c009a73 x6:1c009a72 +74744858ns 1320262 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000033d +74744937ns 1320266 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a73 PA:1c009a73 +74744957ns 1320267 1c000e82 fff60613 addi x12, x12, -1 x12=0000033c x12:0000033d +74744976ns 1320268 1c000e84 00130313 addi x6, x6, 1 x6=1c009a74 x6:1c009a73 +74744996ns 1320269 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000033c +74745075ns 1320273 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a74 PA:1c009a74 +74745095ns 1320274 1c000e82 fff60613 addi x12, x12, -1 x12=0000033b x12:0000033c +74745115ns 1320275 1c000e84 00130313 addi x6, x6, 1 x6=1c009a75 x6:1c009a74 +74745135ns 1320276 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000033b +74745214ns 1320280 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a75 PA:1c009a75 +74745234ns 1320281 1c000e82 fff60613 addi x12, x12, -1 x12=0000033a x12:0000033b +74745253ns 1320282 1c000e84 00130313 addi x6, x6, 1 x6=1c009a76 x6:1c009a75 +74745273ns 1320283 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000033a +74745352ns 1320287 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a76 PA:1c009a76 +74745372ns 1320288 1c000e82 fff60613 addi x12, x12, -1 x12=00000339 x12:0000033a +74745392ns 1320289 1c000e84 00130313 addi x6, x6, 1 x6=1c009a77 x6:1c009a76 +74745412ns 1320290 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000339 +74745491ns 1320294 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a77 PA:1c009a77 +74745511ns 1320295 1c000e82 fff60613 addi x12, x12, -1 x12=00000338 x12:00000339 +74745531ns 1320296 1c000e84 00130313 addi x6, x6, 1 x6=1c009a78 x6:1c009a77 +74745550ns 1320297 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000338 +74745630ns 1320301 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a78 PA:1c009a78 +74745649ns 1320302 1c000e82 fff60613 addi x12, x12, -1 x12=00000337 x12:00000338 +74745669ns 1320303 1c000e84 00130313 addi x6, x6, 1 x6=1c009a79 x6:1c009a78 +74745689ns 1320304 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000337 +74745768ns 1320308 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a79 PA:1c009a79 +74745788ns 1320309 1c000e82 fff60613 addi x12, x12, -1 x12=00000336 x12:00000337 +74745808ns 1320310 1c000e84 00130313 addi x6, x6, 1 x6=1c009a7a x6:1c009a79 +74745827ns 1320311 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000336 +74745907ns 1320315 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a7a PA:1c009a7a +74745926ns 1320316 1c000e82 fff60613 addi x12, x12, -1 x12=00000335 x12:00000336 +74745946ns 1320317 1c000e84 00130313 addi x6, x6, 1 x6=1c009a7b x6:1c009a7a +74745966ns 1320318 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000335 +74746045ns 1320322 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a7b PA:1c009a7b +74746065ns 1320323 1c000e82 fff60613 addi x12, x12, -1 x12=00000334 x12:00000335 +74746085ns 1320324 1c000e84 00130313 addi x6, x6, 1 x6=1c009a7c x6:1c009a7b +74746105ns 1320325 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000334 +74746184ns 1320329 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a7c PA:1c009a7c +74746204ns 1320330 1c000e82 fff60613 addi x12, x12, -1 x12=00000333 x12:00000334 +74746223ns 1320331 1c000e84 00130313 addi x6, x6, 1 x6=1c009a7d x6:1c009a7c +74746243ns 1320332 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000333 +74746322ns 1320336 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a7d PA:1c009a7d +74746342ns 1320337 1c000e82 fff60613 addi x12, x12, -1 x12=00000332 x12:00000333 +74746362ns 1320338 1c000e84 00130313 addi x6, x6, 1 x6=1c009a7e x6:1c009a7d +74746382ns 1320339 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000332 +74746461ns 1320343 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a7e PA:1c009a7e +74746481ns 1320344 1c000e82 fff60613 addi x12, x12, -1 x12=00000331 x12:00000332 +74746500ns 1320345 1c000e84 00130313 addi x6, x6, 1 x6=1c009a7f x6:1c009a7e +74746520ns 1320346 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000331 +74746599ns 1320350 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a7f PA:1c009a7f +74746619ns 1320351 1c000e82 fff60613 addi x12, x12, -1 x12=00000330 x12:00000331 +74746639ns 1320352 1c000e84 00130313 addi x6, x6, 1 x6=1c009a80 x6:1c009a7f +74746659ns 1320353 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000330 +74746738ns 1320357 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a80 PA:1c009a80 +74746758ns 1320358 1c000e82 fff60613 addi x12, x12, -1 x12=0000032f x12:00000330 +74746777ns 1320359 1c000e84 00130313 addi x6, x6, 1 x6=1c009a81 x6:1c009a80 +74746797ns 1320360 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000032f +74746876ns 1320364 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a81 PA:1c009a81 +74746896ns 1320365 1c000e82 fff60613 addi x12, x12, -1 x12=0000032e x12:0000032f +74746916ns 1320366 1c000e84 00130313 addi x6, x6, 1 x6=1c009a82 x6:1c009a81 +74746936ns 1320367 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000032e +74747015ns 1320371 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a82 PA:1c009a82 +74747035ns 1320372 1c000e82 fff60613 addi x12, x12, -1 x12=0000032d x12:0000032e +74747055ns 1320373 1c000e84 00130313 addi x6, x6, 1 x6=1c009a83 x6:1c009a82 +74747074ns 1320374 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000032d +74747154ns 1320378 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a83 PA:1c009a83 +74747173ns 1320379 1c000e82 fff60613 addi x12, x12, -1 x12=0000032c x12:0000032d +74747193ns 1320380 1c000e84 00130313 addi x6, x6, 1 x6=1c009a84 x6:1c009a83 +74747213ns 1320381 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000032c +74747292ns 1320385 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a84 PA:1c009a84 +74747312ns 1320386 1c000e82 fff60613 addi x12, x12, -1 x12=0000032b x12:0000032c +74747332ns 1320387 1c000e84 00130313 addi x6, x6, 1 x6=1c009a85 x6:1c009a84 +74747351ns 1320388 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000032b +74747431ns 1320392 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a85 PA:1c009a85 +74747450ns 1320393 1c000e82 fff60613 addi x12, x12, -1 x12=0000032a x12:0000032b +74747470ns 1320394 1c000e84 00130313 addi x6, x6, 1 x6=1c009a86 x6:1c009a85 +74747490ns 1320395 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000032a +74747569ns 1320399 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a86 PA:1c009a86 +74747589ns 1320400 1c000e82 fff60613 addi x12, x12, -1 x12=00000329 x12:0000032a +74747609ns 1320401 1c000e84 00130313 addi x6, x6, 1 x6=1c009a87 x6:1c009a86 +74747629ns 1320402 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000329 +74747708ns 1320406 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a87 PA:1c009a87 +74747727ns 1320407 1c000e82 fff60613 addi x12, x12, -1 x12=00000328 x12:00000329 +74747747ns 1320408 1c000e84 00130313 addi x6, x6, 1 x6=1c009a88 x6:1c009a87 +74747767ns 1320409 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000328 +74747846ns 1320413 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a88 PA:1c009a88 +74747866ns 1320414 1c000e82 fff60613 addi x12, x12, -1 x12=00000327 x12:00000328 +74747886ns 1320415 1c000e84 00130313 addi x6, x6, 1 x6=1c009a89 x6:1c009a88 +74747906ns 1320416 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000327 +74747985ns 1320420 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a89 PA:1c009a89 +74748005ns 1320421 1c000e82 fff60613 addi x12, x12, -1 x12=00000326 x12:00000327 +74748024ns 1320422 1c000e84 00130313 addi x6, x6, 1 x6=1c009a8a x6:1c009a89 +74748044ns 1320423 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000326 +74748123ns 1320427 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a8a PA:1c009a8a +74748143ns 1320428 1c000e82 fff60613 addi x12, x12, -1 x12=00000325 x12:00000326 +74748163ns 1320429 1c000e84 00130313 addi x6, x6, 1 x6=1c009a8b x6:1c009a8a +74748183ns 1320430 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000325 +74748262ns 1320434 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a8b PA:1c009a8b +74748282ns 1320435 1c000e82 fff60613 addi x12, x12, -1 x12=00000324 x12:00000325 +74748301ns 1320436 1c000e84 00130313 addi x6, x6, 1 x6=1c009a8c x6:1c009a8b +74748321ns 1320437 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000324 +74748400ns 1320441 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a8c PA:1c009a8c +74748420ns 1320442 1c000e82 fff60613 addi x12, x12, -1 x12=00000323 x12:00000324 +74748440ns 1320443 1c000e84 00130313 addi x6, x6, 1 x6=1c009a8d x6:1c009a8c +74748460ns 1320444 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000323 +74748539ns 1320448 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a8d PA:1c009a8d +74748559ns 1320449 1c000e82 fff60613 addi x12, x12, -1 x12=00000322 x12:00000323 +74748579ns 1320450 1c000e84 00130313 addi x6, x6, 1 x6=1c009a8e x6:1c009a8d +74748598ns 1320451 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000322 +74748678ns 1320455 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a8e PA:1c009a8e +74748697ns 1320456 1c000e82 fff60613 addi x12, x12, -1 x12=00000321 x12:00000322 +74748717ns 1320457 1c000e84 00130313 addi x6, x6, 1 x6=1c009a8f x6:1c009a8e +74748737ns 1320458 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000321 +74748816ns 1320462 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a8f PA:1c009a8f +74748836ns 1320463 1c000e82 fff60613 addi x12, x12, -1 x12=00000320 x12:00000321 +74748856ns 1320464 1c000e84 00130313 addi x6, x6, 1 x6=1c009a90 x6:1c009a8f +74748875ns 1320465 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000320 +74748955ns 1320469 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a90 PA:1c009a90 +74748974ns 1320470 1c000e82 fff60613 addi x12, x12, -1 x12=0000031f x12:00000320 +74748994ns 1320471 1c000e84 00130313 addi x6, x6, 1 x6=1c009a91 x6:1c009a90 +74749014ns 1320472 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000031f +74749093ns 1320476 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a91 PA:1c009a91 +74749113ns 1320477 1c000e82 fff60613 addi x12, x12, -1 x12=0000031e x12:0000031f +74749133ns 1320478 1c000e84 00130313 addi x6, x6, 1 x6=1c009a92 x6:1c009a91 +74749153ns 1320479 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000031e +74749232ns 1320483 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a92 PA:1c009a92 +74749251ns 1320484 1c000e82 fff60613 addi x12, x12, -1 x12=0000031d x12:0000031e +74749271ns 1320485 1c000e84 00130313 addi x6, x6, 1 x6=1c009a93 x6:1c009a92 +74749291ns 1320486 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000031d +74749370ns 1320490 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a93 PA:1c009a93 +74749390ns 1320491 1c000e82 fff60613 addi x12, x12, -1 x12=0000031c x12:0000031d +74749410ns 1320492 1c000e84 00130313 addi x6, x6, 1 x6=1c009a94 x6:1c009a93 +74749430ns 1320493 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000031c +74749509ns 1320497 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a94 PA:1c009a94 +74749529ns 1320498 1c000e82 fff60613 addi x12, x12, -1 x12=0000031b x12:0000031c +74749548ns 1320499 1c000e84 00130313 addi x6, x6, 1 x6=1c009a95 x6:1c009a94 +74749568ns 1320500 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000031b +74749647ns 1320504 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a95 PA:1c009a95 +74749667ns 1320505 1c000e82 fff60613 addi x12, x12, -1 x12=0000031a x12:0000031b +74749687ns 1320506 1c000e84 00130313 addi x6, x6, 1 x6=1c009a96 x6:1c009a95 +74749707ns 1320507 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000031a +74749786ns 1320511 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a96 PA:1c009a96 +74749806ns 1320512 1c000e82 fff60613 addi x12, x12, -1 x12=00000319 x12:0000031a +74749825ns 1320513 1c000e84 00130313 addi x6, x6, 1 x6=1c009a97 x6:1c009a96 +74749845ns 1320514 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000319 +74749924ns 1320518 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a97 PA:1c009a97 +74749944ns 1320519 1c000e82 fff60613 addi x12, x12, -1 x12=00000318 x12:00000319 +74749964ns 1320520 1c000e84 00130313 addi x6, x6, 1 x6=1c009a98 x6:1c009a97 +74749984ns 1320521 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000318 +74750063ns 1320525 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a98 PA:1c009a98 +74750083ns 1320526 1c000e82 fff60613 addi x12, x12, -1 x12=00000317 x12:00000318 +74750103ns 1320527 1c000e84 00130313 addi x6, x6, 1 x6=1c009a99 x6:1c009a98 +74750122ns 1320528 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000317 +74750201ns 1320532 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a99 PA:1c009a99 +74750221ns 1320533 1c000e82 fff60613 addi x12, x12, -1 x12=00000316 x12:00000317 +74750241ns 1320534 1c000e84 00130313 addi x6, x6, 1 x6=1c009a9a x6:1c009a99 +74750261ns 1320535 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000316 +74750340ns 1320539 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a9a PA:1c009a9a +74750360ns 1320540 1c000e82 fff60613 addi x12, x12, -1 x12=00000315 x12:00000316 +74750380ns 1320541 1c000e84 00130313 addi x6, x6, 1 x6=1c009a9b x6:1c009a9a +74750399ns 1320542 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000315 +74750479ns 1320546 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a9b PA:1c009a9b +74750498ns 1320547 1c000e82 fff60613 addi x12, x12, -1 x12=00000314 x12:00000315 +74750518ns 1320548 1c000e84 00130313 addi x6, x6, 1 x6=1c009a9c x6:1c009a9b +74750538ns 1320549 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000314 +74750617ns 1320553 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a9c PA:1c009a9c +74750637ns 1320554 1c000e82 fff60613 addi x12, x12, -1 x12=00000313 x12:00000314 +74750657ns 1320555 1c000e84 00130313 addi x6, x6, 1 x6=1c009a9d x6:1c009a9c +74750677ns 1320556 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000313 +74750756ns 1320560 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a9d PA:1c009a9d +74750775ns 1320561 1c000e82 fff60613 addi x12, x12, -1 x12=00000312 x12:00000313 +74750795ns 1320562 1c000e84 00130313 addi x6, x6, 1 x6=1c009a9e x6:1c009a9d +74750815ns 1320563 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000312 +74750894ns 1320567 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a9e PA:1c009a9e +74750914ns 1320568 1c000e82 fff60613 addi x12, x12, -1 x12=00000311 x12:00000312 +74750934ns 1320569 1c000e84 00130313 addi x6, x6, 1 x6=1c009a9f x6:1c009a9e +74750954ns 1320570 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000311 +74751033ns 1320574 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009a9f PA:1c009a9f +74751053ns 1320575 1c000e82 fff60613 addi x12, x12, -1 x12=00000310 x12:00000311 +74751072ns 1320576 1c000e84 00130313 addi x6, x6, 1 x6=1c009aa0 x6:1c009a9f +74751092ns 1320577 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000310 +74751171ns 1320581 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009aa0 PA:1c009aa0 +74751191ns 1320582 1c000e82 fff60613 addi x12, x12, -1 x12=0000030f x12:00000310 +74751211ns 1320583 1c000e84 00130313 addi x6, x6, 1 x6=1c009aa1 x6:1c009aa0 +74751231ns 1320584 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000030f +74751310ns 1320588 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009aa1 PA:1c009aa1 +74751330ns 1320589 1c000e82 fff60613 addi x12, x12, -1 x12=0000030e x12:0000030f +74751349ns 1320590 1c000e84 00130313 addi x6, x6, 1 x6=1c009aa2 x6:1c009aa1 +74751369ns 1320591 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000030e +74751448ns 1320595 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009aa2 PA:1c009aa2 +74751468ns 1320596 1c000e82 fff60613 addi x12, x12, -1 x12=0000030d x12:0000030e +74751488ns 1320597 1c000e84 00130313 addi x6, x6, 1 x6=1c009aa3 x6:1c009aa2 +74751508ns 1320598 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000030d +74751587ns 1320602 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009aa3 PA:1c009aa3 +74751607ns 1320603 1c000e82 fff60613 addi x12, x12, -1 x12=0000030c x12:0000030d +74751627ns 1320604 1c000e84 00130313 addi x6, x6, 1 x6=1c009aa4 x6:1c009aa3 +74751646ns 1320605 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000030c +74751725ns 1320609 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009aa4 PA:1c009aa4 +74751745ns 1320610 1c000e82 fff60613 addi x12, x12, -1 x12=0000030b x12:0000030c +74751765ns 1320611 1c000e84 00130313 addi x6, x6, 1 x6=1c009aa5 x6:1c009aa4 +74751785ns 1320612 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000030b +74751864ns 1320616 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009aa5 PA:1c009aa5 +74751884ns 1320617 1c000e82 fff60613 addi x12, x12, -1 x12=0000030a x12:0000030b +74751904ns 1320618 1c000e84 00130313 addi x6, x6, 1 x6=1c009aa6 x6:1c009aa5 +74751923ns 1320619 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000030a +74752003ns 1320623 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009aa6 PA:1c009aa6 +74752022ns 1320624 1c000e82 fff60613 addi x12, x12, -1 x12=00000309 x12:0000030a +74752042ns 1320625 1c000e84 00130313 addi x6, x6, 1 x6=1c009aa7 x6:1c009aa6 +74752062ns 1320626 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000309 +74752141ns 1320630 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009aa7 PA:1c009aa7 +74752161ns 1320631 1c000e82 fff60613 addi x12, x12, -1 x12=00000308 x12:00000309 +74752181ns 1320632 1c000e84 00130313 addi x6, x6, 1 x6=1c009aa8 x6:1c009aa7 +74752200ns 1320633 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000308 +74752280ns 1320637 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009aa8 PA:1c009aa8 +74752299ns 1320638 1c000e82 fff60613 addi x12, x12, -1 x12=00000307 x12:00000308 +74752319ns 1320639 1c000e84 00130313 addi x6, x6, 1 x6=1c009aa9 x6:1c009aa8 +74752339ns 1320640 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000307 +74752418ns 1320644 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009aa9 PA:1c009aa9 +74752438ns 1320645 1c000e82 fff60613 addi x12, x12, -1 x12=00000306 x12:00000307 +74752458ns 1320646 1c000e84 00130313 addi x6, x6, 1 x6=1c009aaa x6:1c009aa9 +74752478ns 1320647 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000306 +74752557ns 1320651 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009aaa PA:1c009aaa +74752577ns 1320652 1c000e82 fff60613 addi x12, x12, -1 x12=00000305 x12:00000306 +74752596ns 1320653 1c000e84 00130313 addi x6, x6, 1 x6=1c009aab x6:1c009aaa +74752616ns 1320654 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000305 +74752695ns 1320658 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009aab PA:1c009aab +74752715ns 1320659 1c000e82 fff60613 addi x12, x12, -1 x12=00000304 x12:00000305 +74752735ns 1320660 1c000e84 00130313 addi x6, x6, 1 x6=1c009aac x6:1c009aab +74752755ns 1320661 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000304 +74752834ns 1320665 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009aac PA:1c009aac +74752854ns 1320666 1c000e82 fff60613 addi x12, x12, -1 x12=00000303 x12:00000304 +74752873ns 1320667 1c000e84 00130313 addi x6, x6, 1 x6=1c009aad x6:1c009aac +74752893ns 1320668 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000303 +74752972ns 1320672 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009aad PA:1c009aad +74752992ns 1320673 1c000e82 fff60613 addi x12, x12, -1 x12=00000302 x12:00000303 +74753012ns 1320674 1c000e84 00130313 addi x6, x6, 1 x6=1c009aae x6:1c009aad +74753032ns 1320675 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000302 +74753111ns 1320679 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009aae PA:1c009aae +74753131ns 1320680 1c000e82 fff60613 addi x12, x12, -1 x12=00000301 x12:00000302 +74753151ns 1320681 1c000e84 00130313 addi x6, x6, 1 x6=1c009aaf x6:1c009aae +74753170ns 1320682 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000301 +74753249ns 1320686 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009aaf PA:1c009aaf +74753269ns 1320687 1c000e82 fff60613 addi x12, x12, -1 x12=00000300 x12:00000301 +74753289ns 1320688 1c000e84 00130313 addi x6, x6, 1 x6=1c009ab0 x6:1c009aaf +74753309ns 1320689 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000300 +74753388ns 1320693 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ab0 PA:1c009ab0 +74753408ns 1320694 1c000e82 fff60613 addi x12, x12, -1 x12=000002ff x12:00000300 +74753428ns 1320695 1c000e84 00130313 addi x6, x6, 1 x6=1c009ab1 x6:1c009ab0 +74753447ns 1320696 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ff +74753527ns 1320700 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ab1 PA:1c009ab1 +74753546ns 1320701 1c000e82 fff60613 addi x12, x12, -1 x12=000002fe x12:000002ff +74753566ns 1320702 1c000e84 00130313 addi x6, x6, 1 x6=1c009ab2 x6:1c009ab1 +74753586ns 1320703 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002fe +74753665ns 1320707 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ab2 PA:1c009ab2 +74753685ns 1320708 1c000e82 fff60613 addi x12, x12, -1 x12=000002fd x12:000002fe +74753705ns 1320709 1c000e84 00130313 addi x6, x6, 1 x6=1c009ab3 x6:1c009ab2 +74753724ns 1320710 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002fd +74753804ns 1320714 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ab3 PA:1c009ab3 +74753823ns 1320715 1c000e82 fff60613 addi x12, x12, -1 x12=000002fc x12:000002fd +74753843ns 1320716 1c000e84 00130313 addi x6, x6, 1 x6=1c009ab4 x6:1c009ab3 +74753863ns 1320717 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002fc +74753942ns 1320721 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ab4 PA:1c009ab4 +74753962ns 1320722 1c000e82 fff60613 addi x12, x12, -1 x12=000002fb x12:000002fc +74753982ns 1320723 1c000e84 00130313 addi x6, x6, 1 x6=1c009ab5 x6:1c009ab4 +74754002ns 1320724 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002fb +74754081ns 1320728 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ab5 PA:1c009ab5 +74754101ns 1320729 1c000e82 fff60613 addi x12, x12, -1 x12=000002fa x12:000002fb +74754120ns 1320730 1c000e84 00130313 addi x6, x6, 1 x6=1c009ab6 x6:1c009ab5 +74754140ns 1320731 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002fa +74754219ns 1320735 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ab6 PA:1c009ab6 +74754239ns 1320736 1c000e82 fff60613 addi x12, x12, -1 x12=000002f9 x12:000002fa +74754259ns 1320737 1c000e84 00130313 addi x6, x6, 1 x6=1c009ab7 x6:1c009ab6 +74754279ns 1320738 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002f9 +74754358ns 1320742 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ab7 PA:1c009ab7 +74754378ns 1320743 1c000e82 fff60613 addi x12, x12, -1 x12=000002f8 x12:000002f9 +74754397ns 1320744 1c000e84 00130313 addi x6, x6, 1 x6=1c009ab8 x6:1c009ab7 +74754417ns 1320745 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002f8 +74754496ns 1320749 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ab8 PA:1c009ab8 +74754516ns 1320750 1c000e82 fff60613 addi x12, x12, -1 x12=000002f7 x12:000002f8 +74754536ns 1320751 1c000e84 00130313 addi x6, x6, 1 x6=1c009ab9 x6:1c009ab8 +74754556ns 1320752 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002f7 +74754635ns 1320756 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ab9 PA:1c009ab9 +74754655ns 1320757 1c000e82 fff60613 addi x12, x12, -1 x12=000002f6 x12:000002f7 +74754674ns 1320758 1c000e84 00130313 addi x6, x6, 1 x6=1c009aba x6:1c009ab9 +74754694ns 1320759 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002f6 +74754773ns 1320763 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009aba PA:1c009aba +74754793ns 1320764 1c000e82 fff60613 addi x12, x12, -1 x12=000002f5 x12:000002f6 +74754813ns 1320765 1c000e84 00130313 addi x6, x6, 1 x6=1c009abb x6:1c009aba +74754833ns 1320766 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002f5 +74754912ns 1320770 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009abb PA:1c009abb +74754932ns 1320771 1c000e82 fff60613 addi x12, x12, -1 x12=000002f4 x12:000002f5 +74754952ns 1320772 1c000e84 00130313 addi x6, x6, 1 x6=1c009abc x6:1c009abb +74754971ns 1320773 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002f4 +74755051ns 1320777 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009abc PA:1c009abc +74755070ns 1320778 1c000e82 fff60613 addi x12, x12, -1 x12=000002f3 x12:000002f4 +74755090ns 1320779 1c000e84 00130313 addi x6, x6, 1 x6=1c009abd x6:1c009abc +74755110ns 1320780 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002f3 +74755189ns 1320784 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009abd PA:1c009abd +74755209ns 1320785 1c000e82 fff60613 addi x12, x12, -1 x12=000002f2 x12:000002f3 +74755229ns 1320786 1c000e84 00130313 addi x6, x6, 1 x6=1c009abe x6:1c009abd +74755248ns 1320787 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002f2 +74755328ns 1320791 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009abe PA:1c009abe +74755347ns 1320792 1c000e82 fff60613 addi x12, x12, -1 x12=000002f1 x12:000002f2 +74755367ns 1320793 1c000e84 00130313 addi x6, x6, 1 x6=1c009abf x6:1c009abe +74755387ns 1320794 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002f1 +74755466ns 1320798 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009abf PA:1c009abf +74755486ns 1320799 1c000e82 fff60613 addi x12, x12, -1 x12=000002f0 x12:000002f1 +74755506ns 1320800 1c000e84 00130313 addi x6, x6, 1 x6=1c009ac0 x6:1c009abf +74755526ns 1320801 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002f0 +74755605ns 1320805 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ac0 PA:1c009ac0 +74755625ns 1320806 1c000e82 fff60613 addi x12, x12, -1 x12=000002ef x12:000002f0 +74755644ns 1320807 1c000e84 00130313 addi x6, x6, 1 x6=1c009ac1 x6:1c009ac0 +74755664ns 1320808 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ef +74755743ns 1320812 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ac1 PA:1c009ac1 +74755763ns 1320813 1c000e82 fff60613 addi x12, x12, -1 x12=000002ee x12:000002ef +74755783ns 1320814 1c000e84 00130313 addi x6, x6, 1 x6=1c009ac2 x6:1c009ac1 +74755803ns 1320815 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ee +74755882ns 1320819 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ac2 PA:1c009ac2 +74755902ns 1320820 1c000e82 fff60613 addi x12, x12, -1 x12=000002ed x12:000002ee +74755921ns 1320821 1c000e84 00130313 addi x6, x6, 1 x6=1c009ac3 x6:1c009ac2 +74755941ns 1320822 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ed +74756020ns 1320826 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ac3 PA:1c009ac3 +74756040ns 1320827 1c000e82 fff60613 addi x12, x12, -1 x12=000002ec x12:000002ed +74756060ns 1320828 1c000e84 00130313 addi x6, x6, 1 x6=1c009ac4 x6:1c009ac3 +74756080ns 1320829 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ec +74756159ns 1320833 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ac4 PA:1c009ac4 +74756179ns 1320834 1c000e82 fff60613 addi x12, x12, -1 x12=000002eb x12:000002ec +74756198ns 1320835 1c000e84 00130313 addi x6, x6, 1 x6=1c009ac5 x6:1c009ac4 +74756218ns 1320836 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002eb +74756297ns 1320840 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ac5 PA:1c009ac5 +74756317ns 1320841 1c000e82 fff60613 addi x12, x12, -1 x12=000002ea x12:000002eb +74756337ns 1320842 1c000e84 00130313 addi x6, x6, 1 x6=1c009ac6 x6:1c009ac5 +74756357ns 1320843 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ea +74756436ns 1320847 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ac6 PA:1c009ac6 +74756456ns 1320848 1c000e82 fff60613 addi x12, x12, -1 x12=000002e9 x12:000002ea +74756476ns 1320849 1c000e84 00130313 addi x6, x6, 1 x6=1c009ac7 x6:1c009ac6 +74756495ns 1320850 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002e9 +74756575ns 1320854 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ac7 PA:1c009ac7 +74756594ns 1320855 1c000e82 fff60613 addi x12, x12, -1 x12=000002e8 x12:000002e9 +74756614ns 1320856 1c000e84 00130313 addi x6, x6, 1 x6=1c009ac8 x6:1c009ac7 +74756634ns 1320857 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002e8 +74756713ns 1320861 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ac8 PA:1c009ac8 +74756733ns 1320862 1c000e82 fff60613 addi x12, x12, -1 x12=000002e7 x12:000002e8 +74756753ns 1320863 1c000e84 00130313 addi x6, x6, 1 x6=1c009ac9 x6:1c009ac8 +74756772ns 1320864 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002e7 +74756852ns 1320868 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ac9 PA:1c009ac9 +74756871ns 1320869 1c000e82 fff60613 addi x12, x12, -1 x12=000002e6 x12:000002e7 +74756891ns 1320870 1c000e84 00130313 addi x6, x6, 1 x6=1c009aca x6:1c009ac9 +74756911ns 1320871 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002e6 +74756990ns 1320875 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009aca PA:1c009aca +74757010ns 1320876 1c000e82 fff60613 addi x12, x12, -1 x12=000002e5 x12:000002e6 +74757030ns 1320877 1c000e84 00130313 addi x6, x6, 1 x6=1c009acb x6:1c009aca +74757050ns 1320878 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002e5 +74757129ns 1320882 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009acb PA:1c009acb +74757148ns 1320883 1c000e82 fff60613 addi x12, x12, -1 x12=000002e4 x12:000002e5 +74757168ns 1320884 1c000e84 00130313 addi x6, x6, 1 x6=1c009acc x6:1c009acb +74757188ns 1320885 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002e4 +74757267ns 1320889 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009acc PA:1c009acc +74757287ns 1320890 1c000e82 fff60613 addi x12, x12, -1 x12=000002e3 x12:000002e4 +74757307ns 1320891 1c000e84 00130313 addi x6, x6, 1 x6=1c009acd x6:1c009acc +74757327ns 1320892 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002e3 +74757406ns 1320896 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009acd PA:1c009acd +74757426ns 1320897 1c000e82 fff60613 addi x12, x12, -1 x12=000002e2 x12:000002e3 +74757445ns 1320898 1c000e84 00130313 addi x6, x6, 1 x6=1c009ace x6:1c009acd +74757465ns 1320899 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002e2 +74757544ns 1320903 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ace PA:1c009ace +74757564ns 1320904 1c000e82 fff60613 addi x12, x12, -1 x12=000002e1 x12:000002e2 +74757584ns 1320905 1c000e84 00130313 addi x6, x6, 1 x6=1c009acf x6:1c009ace +74757604ns 1320906 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002e1 +74757683ns 1320910 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009acf PA:1c009acf +74757703ns 1320911 1c000e82 fff60613 addi x12, x12, -1 x12=000002e0 x12:000002e1 +74757722ns 1320912 1c000e84 00130313 addi x6, x6, 1 x6=1c009ad0 x6:1c009acf +74757742ns 1320913 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002e0 +74757821ns 1320917 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ad0 PA:1c009ad0 +74757841ns 1320918 1c000e82 fff60613 addi x12, x12, -1 x12=000002df x12:000002e0 +74757861ns 1320919 1c000e84 00130313 addi x6, x6, 1 x6=1c009ad1 x6:1c009ad0 +74757881ns 1320920 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002df +74757960ns 1320924 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ad1 PA:1c009ad1 +74757980ns 1320925 1c000e82 fff60613 addi x12, x12, -1 x12=000002de x12:000002df +74758000ns 1320926 1c000e84 00130313 addi x6, x6, 1 x6=1c009ad2 x6:1c009ad1 +74758019ns 1320927 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002de +74758099ns 1320931 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ad2 PA:1c009ad2 +74758118ns 1320932 1c000e82 fff60613 addi x12, x12, -1 x12=000002dd x12:000002de +74758138ns 1320933 1c000e84 00130313 addi x6, x6, 1 x6=1c009ad3 x6:1c009ad2 +74758158ns 1320934 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002dd +74758237ns 1320938 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ad3 PA:1c009ad3 +74758257ns 1320939 1c000e82 fff60613 addi x12, x12, -1 x12=000002dc x12:000002dd +74758277ns 1320940 1c000e84 00130313 addi x6, x6, 1 x6=1c009ad4 x6:1c009ad3 +74758296ns 1320941 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002dc +74758376ns 1320945 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ad4 PA:1c009ad4 +74758395ns 1320946 1c000e82 fff60613 addi x12, x12, -1 x12=000002db x12:000002dc +74758415ns 1320947 1c000e84 00130313 addi x6, x6, 1 x6=1c009ad5 x6:1c009ad4 +74758435ns 1320948 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002db +74758514ns 1320952 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ad5 PA:1c009ad5 +74758534ns 1320953 1c000e82 fff60613 addi x12, x12, -1 x12=000002da x12:000002db +74758554ns 1320954 1c000e84 00130313 addi x6, x6, 1 x6=1c009ad6 x6:1c009ad5 +74758574ns 1320955 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002da +74758653ns 1320959 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ad6 PA:1c009ad6 +74758672ns 1320960 1c000e82 fff60613 addi x12, x12, -1 x12=000002d9 x12:000002da +74758692ns 1320961 1c000e84 00130313 addi x6, x6, 1 x6=1c009ad7 x6:1c009ad6 +74758712ns 1320962 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002d9 +74758791ns 1320966 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ad7 PA:1c009ad7 +74758811ns 1320967 1c000e82 fff60613 addi x12, x12, -1 x12=000002d8 x12:000002d9 +74758831ns 1320968 1c000e84 00130313 addi x6, x6, 1 x6=1c009ad8 x6:1c009ad7 +74758851ns 1320969 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002d8 +74758930ns 1320973 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ad8 PA:1c009ad8 +74758950ns 1320974 1c000e82 fff60613 addi x12, x12, -1 x12=000002d7 x12:000002d8 +74758969ns 1320975 1c000e84 00130313 addi x6, x6, 1 x6=1c009ad9 x6:1c009ad8 +74758989ns 1320976 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002d7 +74759068ns 1320980 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ad9 PA:1c009ad9 +74759088ns 1320981 1c000e82 fff60613 addi x12, x12, -1 x12=000002d6 x12:000002d7 +74759108ns 1320982 1c000e84 00130313 addi x6, x6, 1 x6=1c009ada x6:1c009ad9 +74759128ns 1320983 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002d6 +74759207ns 1320987 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ada PA:1c009ada +74759227ns 1320988 1c000e82 fff60613 addi x12, x12, -1 x12=000002d5 x12:000002d6 +74759246ns 1320989 1c000e84 00130313 addi x6, x6, 1 x6=1c009adb x6:1c009ada +74759266ns 1320990 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002d5 +74759345ns 1320994 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009adb PA:1c009adb +74759365ns 1320995 1c000e82 fff60613 addi x12, x12, -1 x12=000002d4 x12:000002d5 +74759385ns 1320996 1c000e84 00130313 addi x6, x6, 1 x6=1c009adc x6:1c009adb +74759405ns 1320997 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002d4 +74759484ns 1321001 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009adc PA:1c009adc +74759504ns 1321002 1c000e82 fff60613 addi x12, x12, -1 x12=000002d3 x12:000002d4 +74759524ns 1321003 1c000e84 00130313 addi x6, x6, 1 x6=1c009add x6:1c009adc +74759543ns 1321004 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002d3 +74759622ns 1321008 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009add PA:1c009add +74759642ns 1321009 1c000e82 fff60613 addi x12, x12, -1 x12=000002d2 x12:000002d3 +74759662ns 1321010 1c000e84 00130313 addi x6, x6, 1 x6=1c009ade x6:1c009add +74759682ns 1321011 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002d2 +74759761ns 1321015 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ade PA:1c009ade +74759781ns 1321016 1c000e82 fff60613 addi x12, x12, -1 x12=000002d1 x12:000002d2 +74759801ns 1321017 1c000e84 00130313 addi x6, x6, 1 x6=1c009adf x6:1c009ade +74759820ns 1321018 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002d1 +74759900ns 1321022 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009adf PA:1c009adf +74759919ns 1321023 1c000e82 fff60613 addi x12, x12, -1 x12=000002d0 x12:000002d1 +74759939ns 1321024 1c000e84 00130313 addi x6, x6, 1 x6=1c009ae0 x6:1c009adf +74759959ns 1321025 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002d0 +74760038ns 1321029 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ae0 PA:1c009ae0 +74760058ns 1321030 1c000e82 fff60613 addi x12, x12, -1 x12=000002cf x12:000002d0 +74760078ns 1321031 1c000e84 00130313 addi x6, x6, 1 x6=1c009ae1 x6:1c009ae0 +74760097ns 1321032 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002cf +74760177ns 1321036 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ae1 PA:1c009ae1 +74760196ns 1321037 1c000e82 fff60613 addi x12, x12, -1 x12=000002ce x12:000002cf +74760216ns 1321038 1c000e84 00130313 addi x6, x6, 1 x6=1c009ae2 x6:1c009ae1 +74760236ns 1321039 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ce +74760315ns 1321043 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ae2 PA:1c009ae2 +74760335ns 1321044 1c000e82 fff60613 addi x12, x12, -1 x12=000002cd x12:000002ce +74760355ns 1321045 1c000e84 00130313 addi x6, x6, 1 x6=1c009ae3 x6:1c009ae2 +74760375ns 1321046 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002cd +74760454ns 1321050 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ae3 PA:1c009ae3 +74760474ns 1321051 1c000e82 fff60613 addi x12, x12, -1 x12=000002cc x12:000002cd +74760493ns 1321052 1c000e84 00130313 addi x6, x6, 1 x6=1c009ae4 x6:1c009ae3 +74760513ns 1321053 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002cc +74760592ns 1321057 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ae4 PA:1c009ae4 +74760612ns 1321058 1c000e82 fff60613 addi x12, x12, -1 x12=000002cb x12:000002cc +74760632ns 1321059 1c000e84 00130313 addi x6, x6, 1 x6=1c009ae5 x6:1c009ae4 +74760652ns 1321060 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002cb +74760731ns 1321064 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ae5 PA:1c009ae5 +74760751ns 1321065 1c000e82 fff60613 addi x12, x12, -1 x12=000002ca x12:000002cb +74760770ns 1321066 1c000e84 00130313 addi x6, x6, 1 x6=1c009ae6 x6:1c009ae5 +74760790ns 1321067 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ca +74760869ns 1321071 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ae6 PA:1c009ae6 +74760889ns 1321072 1c000e82 fff60613 addi x12, x12, -1 x12=000002c9 x12:000002ca +74760909ns 1321073 1c000e84 00130313 addi x6, x6, 1 x6=1c009ae7 x6:1c009ae6 +74760929ns 1321074 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002c9 +74761008ns 1321078 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ae7 PA:1c009ae7 +74761028ns 1321079 1c000e82 fff60613 addi x12, x12, -1 x12=000002c8 x12:000002c9 +74761048ns 1321080 1c000e84 00130313 addi x6, x6, 1 x6=1c009ae8 x6:1c009ae7 +74761067ns 1321081 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002c8 +74761146ns 1321085 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ae8 PA:1c009ae8 +74761166ns 1321086 1c000e82 fff60613 addi x12, x12, -1 x12=000002c7 x12:000002c8 +74761186ns 1321087 1c000e84 00130313 addi x6, x6, 1 x6=1c009ae9 x6:1c009ae8 +74761206ns 1321088 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002c7 +74761285ns 1321092 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ae9 PA:1c009ae9 +74761305ns 1321093 1c000e82 fff60613 addi x12, x12, -1 x12=000002c6 x12:000002c7 +74761325ns 1321094 1c000e84 00130313 addi x6, x6, 1 x6=1c009aea x6:1c009ae9 +74761344ns 1321095 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002c6 +74761424ns 1321099 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009aea PA:1c009aea +74761443ns 1321100 1c000e82 fff60613 addi x12, x12, -1 x12=000002c5 x12:000002c6 +74761463ns 1321101 1c000e84 00130313 addi x6, x6, 1 x6=1c009aeb x6:1c009aea +74761483ns 1321102 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002c5 +74761562ns 1321106 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009aeb PA:1c009aeb +74761582ns 1321107 1c000e82 fff60613 addi x12, x12, -1 x12=000002c4 x12:000002c5 +74761602ns 1321108 1c000e84 00130313 addi x6, x6, 1 x6=1c009aec x6:1c009aeb +74761621ns 1321109 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002c4 +74761701ns 1321113 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009aec PA:1c009aec +74761720ns 1321114 1c000e82 fff60613 addi x12, x12, -1 x12=000002c3 x12:000002c4 +74761740ns 1321115 1c000e84 00130313 addi x6, x6, 1 x6=1c009aed x6:1c009aec +74761760ns 1321116 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002c3 +74761839ns 1321120 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009aed PA:1c009aed +74761859ns 1321121 1c000e82 fff60613 addi x12, x12, -1 x12=000002c2 x12:000002c3 +74761879ns 1321122 1c000e84 00130313 addi x6, x6, 1 x6=1c009aee x6:1c009aed +74761899ns 1321123 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002c2 +74761978ns 1321127 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009aee PA:1c009aee +74761998ns 1321128 1c000e82 fff60613 addi x12, x12, -1 x12=000002c1 x12:000002c2 +74762017ns 1321129 1c000e84 00130313 addi x6, x6, 1 x6=1c009aef x6:1c009aee +74762037ns 1321130 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002c1 +74762116ns 1321134 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009aef PA:1c009aef +74762136ns 1321135 1c000e82 fff60613 addi x12, x12, -1 x12=000002c0 x12:000002c1 +74762156ns 1321136 1c000e84 00130313 addi x6, x6, 1 x6=1c009af0 x6:1c009aef +74762176ns 1321137 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002c0 +74762255ns 1321141 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009af0 PA:1c009af0 +74762275ns 1321142 1c000e82 fff60613 addi x12, x12, -1 x12=000002bf x12:000002c0 +74762294ns 1321143 1c000e84 00130313 addi x6, x6, 1 x6=1c009af1 x6:1c009af0 +74762314ns 1321144 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002bf +74762393ns 1321148 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009af1 PA:1c009af1 +74762413ns 1321149 1c000e82 fff60613 addi x12, x12, -1 x12=000002be x12:000002bf +74762433ns 1321150 1c000e84 00130313 addi x6, x6, 1 x6=1c009af2 x6:1c009af1 +74762453ns 1321151 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002be +74762532ns 1321155 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009af2 PA:1c009af2 +74762552ns 1321156 1c000e82 fff60613 addi x12, x12, -1 x12=000002bd x12:000002be +74762571ns 1321157 1c000e84 00130313 addi x6, x6, 1 x6=1c009af3 x6:1c009af2 +74762591ns 1321158 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002bd +74762670ns 1321162 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009af3 PA:1c009af3 +74762690ns 1321163 1c000e82 fff60613 addi x12, x12, -1 x12=000002bc x12:000002bd +74762710ns 1321164 1c000e84 00130313 addi x6, x6, 1 x6=1c009af4 x6:1c009af3 +74762730ns 1321165 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002bc +74762809ns 1321169 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009af4 PA:1c009af4 +74762829ns 1321170 1c000e82 fff60613 addi x12, x12, -1 x12=000002bb x12:000002bc +74762849ns 1321171 1c000e84 00130313 addi x6, x6, 1 x6=1c009af5 x6:1c009af4 +74762868ns 1321172 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002bb +74762948ns 1321176 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009af5 PA:1c009af5 +74762967ns 1321177 1c000e82 fff60613 addi x12, x12, -1 x12=000002ba x12:000002bb +74762987ns 1321178 1c000e84 00130313 addi x6, x6, 1 x6=1c009af6 x6:1c009af5 +74763007ns 1321179 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ba +74763086ns 1321183 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009af6 PA:1c009af6 +74763106ns 1321184 1c000e82 fff60613 addi x12, x12, -1 x12=000002b9 x12:000002ba +74763126ns 1321185 1c000e84 00130313 addi x6, x6, 1 x6=1c009af7 x6:1c009af6 +74763145ns 1321186 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002b9 +74763225ns 1321190 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009af7 PA:1c009af7 +74763244ns 1321191 1c000e82 fff60613 addi x12, x12, -1 x12=000002b8 x12:000002b9 +74763264ns 1321192 1c000e84 00130313 addi x6, x6, 1 x6=1c009af8 x6:1c009af7 +74763284ns 1321193 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002b8 +74763363ns 1321197 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009af8 PA:1c009af8 +74763383ns 1321198 1c000e82 fff60613 addi x12, x12, -1 x12=000002b7 x12:000002b8 +74763403ns 1321199 1c000e84 00130313 addi x6, x6, 1 x6=1c009af9 x6:1c009af8 +74763423ns 1321200 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002b7 +74763502ns 1321204 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009af9 PA:1c009af9 +74763522ns 1321205 1c000e82 fff60613 addi x12, x12, -1 x12=000002b6 x12:000002b7 +74763541ns 1321206 1c000e84 00130313 addi x6, x6, 1 x6=1c009afa x6:1c009af9 +74763561ns 1321207 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002b6 +74763640ns 1321211 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009afa PA:1c009afa +74763660ns 1321212 1c000e82 fff60613 addi x12, x12, -1 x12=000002b5 x12:000002b6 +74763680ns 1321213 1c000e84 00130313 addi x6, x6, 1 x6=1c009afb x6:1c009afa +74763700ns 1321214 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002b5 +74763779ns 1321218 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009afb PA:1c009afb +74763799ns 1321219 1c000e82 fff60613 addi x12, x12, -1 x12=000002b4 x12:000002b5 +74763818ns 1321220 1c000e84 00130313 addi x6, x6, 1 x6=1c009afc x6:1c009afb +74763838ns 1321221 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002b4 +74763917ns 1321225 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009afc PA:1c009afc +74763937ns 1321226 1c000e82 fff60613 addi x12, x12, -1 x12=000002b3 x12:000002b4 +74763957ns 1321227 1c000e84 00130313 addi x6, x6, 1 x6=1c009afd x6:1c009afc +74763977ns 1321228 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002b3 +74764056ns 1321232 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009afd PA:1c009afd +74764076ns 1321233 1c000e82 fff60613 addi x12, x12, -1 x12=000002b2 x12:000002b3 +74764095ns 1321234 1c000e84 00130313 addi x6, x6, 1 x6=1c009afe x6:1c009afd +74764115ns 1321235 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002b2 +74764194ns 1321239 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009afe PA:1c009afe +74764214ns 1321240 1c000e82 fff60613 addi x12, x12, -1 x12=000002b1 x12:000002b2 +74764234ns 1321241 1c000e84 00130313 addi x6, x6, 1 x6=1c009aff x6:1c009afe +74764254ns 1321242 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002b1 +74764333ns 1321246 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009aff PA:1c009aff +74764353ns 1321247 1c000e82 fff60613 addi x12, x12, -1 x12=000002b0 x12:000002b1 +74764373ns 1321248 1c000e84 00130313 addi x6, x6, 1 x6=1c009b00 x6:1c009aff +74764392ns 1321249 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002b0 +74764472ns 1321253 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b00 PA:1c009b00 +74764491ns 1321254 1c000e82 fff60613 addi x12, x12, -1 x12=000002af x12:000002b0 +74764511ns 1321255 1c000e84 00130313 addi x6, x6, 1 x6=1c009b01 x6:1c009b00 +74764531ns 1321256 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002af +74764610ns 1321260 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b01 PA:1c009b01 +74764630ns 1321261 1c000e82 fff60613 addi x12, x12, -1 x12=000002ae x12:000002af +74764650ns 1321262 1c000e84 00130313 addi x6, x6, 1 x6=1c009b02 x6:1c009b01 +74764669ns 1321263 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ae +74764749ns 1321267 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b02 PA:1c009b02 +74764768ns 1321268 1c000e82 fff60613 addi x12, x12, -1 x12=000002ad x12:000002ae +74764788ns 1321269 1c000e84 00130313 addi x6, x6, 1 x6=1c009b03 x6:1c009b02 +74764808ns 1321270 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ad +74764887ns 1321274 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b03 PA:1c009b03 +74764907ns 1321275 1c000e82 fff60613 addi x12, x12, -1 x12=000002ac x12:000002ad +74764927ns 1321276 1c000e84 00130313 addi x6, x6, 1 x6=1c009b04 x6:1c009b03 +74764947ns 1321277 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ac +74765026ns 1321281 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b04 PA:1c009b04 +74765045ns 1321282 1c000e82 fff60613 addi x12, x12, -1 x12=000002ab x12:000002ac +74765065ns 1321283 1c000e84 00130313 addi x6, x6, 1 x6=1c009b05 x6:1c009b04 +74765085ns 1321284 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ab +74765164ns 1321288 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b05 PA:1c009b05 +74765184ns 1321289 1c000e82 fff60613 addi x12, x12, -1 x12=000002aa x12:000002ab +74765204ns 1321290 1c000e84 00130313 addi x6, x6, 1 x6=1c009b06 x6:1c009b05 +74765224ns 1321291 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002aa +74765303ns 1321295 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b06 PA:1c009b06 +74765323ns 1321296 1c000e82 fff60613 addi x12, x12, -1 x12=000002a9 x12:000002aa +74765342ns 1321297 1c000e84 00130313 addi x6, x6, 1 x6=1c009b07 x6:1c009b06 +74765362ns 1321298 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002a9 +74765441ns 1321302 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b07 PA:1c009b07 +74765461ns 1321303 1c000e82 fff60613 addi x12, x12, -1 x12=000002a8 x12:000002a9 +74765481ns 1321304 1c000e84 00130313 addi x6, x6, 1 x6=1c009b08 x6:1c009b07 +74765501ns 1321305 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002a8 +74765580ns 1321309 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b08 PA:1c009b08 +74765600ns 1321310 1c000e82 fff60613 addi x12, x12, -1 x12=000002a7 x12:000002a8 +74765619ns 1321311 1c000e84 00130313 addi x6, x6, 1 x6=1c009b09 x6:1c009b08 +74765639ns 1321312 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002a7 +74765718ns 1321316 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b09 PA:1c009b09 +74765738ns 1321317 1c000e82 fff60613 addi x12, x12, -1 x12=000002a6 x12:000002a7 +74765758ns 1321318 1c000e84 00130313 addi x6, x6, 1 x6=1c009b0a x6:1c009b09 +74765778ns 1321319 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002a6 +74765857ns 1321323 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b0a PA:1c009b0a +74765877ns 1321324 1c000e82 fff60613 addi x12, x12, -1 x12=000002a5 x12:000002a6 +74765897ns 1321325 1c000e84 00130313 addi x6, x6, 1 x6=1c009b0b x6:1c009b0a +74765916ns 1321326 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002a5 +74765996ns 1321330 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b0b PA:1c009b0b +74766015ns 1321331 1c000e82 fff60613 addi x12, x12, -1 x12=000002a4 x12:000002a5 +74766035ns 1321332 1c000e84 00130313 addi x6, x6, 1 x6=1c009b0c x6:1c009b0b +74766055ns 1321333 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002a4 +74766134ns 1321337 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b0c PA:1c009b0c +74766154ns 1321338 1c000e82 fff60613 addi x12, x12, -1 x12=000002a3 x12:000002a4 +74766174ns 1321339 1c000e84 00130313 addi x6, x6, 1 x6=1c009b0d x6:1c009b0c +74766193ns 1321340 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002a3 +74766273ns 1321344 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b0d PA:1c009b0d +74766292ns 1321345 1c000e82 fff60613 addi x12, x12, -1 x12=000002a2 x12:000002a3 +74766312ns 1321346 1c000e84 00130313 addi x6, x6, 1 x6=1c009b0e x6:1c009b0d +74766332ns 1321347 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002a2 +74766411ns 1321351 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b0e PA:1c009b0e +74766431ns 1321352 1c000e82 fff60613 addi x12, x12, -1 x12=000002a1 x12:000002a2 +74766451ns 1321353 1c000e84 00130313 addi x6, x6, 1 x6=1c009b0f x6:1c009b0e +74766471ns 1321354 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002a1 +74766550ns 1321358 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b0f PA:1c009b0f +74766569ns 1321359 1c000e82 fff60613 addi x12, x12, -1 x12=000002a0 x12:000002a1 +74766589ns 1321360 1c000e84 00130313 addi x6, x6, 1 x6=1c009b10 x6:1c009b0f +74766609ns 1321361 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002a0 +74766688ns 1321365 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b10 PA:1c009b10 +74766708ns 1321366 1c000e82 fff60613 addi x12, x12, -1 x12=0000029f x12:000002a0 +74766728ns 1321367 1c000e84 00130313 addi x6, x6, 1 x6=1c009b11 x6:1c009b10 +74766748ns 1321368 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000029f +74766827ns 1321372 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b11 PA:1c009b11 +74766847ns 1321373 1c000e82 fff60613 addi x12, x12, -1 x12=0000029e x12:0000029f +74766866ns 1321374 1c000e84 00130313 addi x6, x6, 1 x6=1c009b12 x6:1c009b11 +74766886ns 1321375 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000029e +74766965ns 1321379 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b12 PA:1c009b12 +74766985ns 1321380 1c000e82 fff60613 addi x12, x12, -1 x12=0000029d x12:0000029e +74767005ns 1321381 1c000e84 00130313 addi x6, x6, 1 x6=1c009b13 x6:1c009b12 +74767025ns 1321382 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000029d +74767104ns 1321386 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b13 PA:1c009b13 +74767124ns 1321387 1c000e82 fff60613 addi x12, x12, -1 x12=0000029c x12:0000029d +74767143ns 1321388 1c000e84 00130313 addi x6, x6, 1 x6=1c009b14 x6:1c009b13 +74767163ns 1321389 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000029c +74767242ns 1321393 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b14 PA:1c009b14 +74767262ns 1321394 1c000e82 fff60613 addi x12, x12, -1 x12=0000029b x12:0000029c +74767282ns 1321395 1c000e84 00130313 addi x6, x6, 1 x6=1c009b15 x6:1c009b14 +74767302ns 1321396 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000029b +74767381ns 1321400 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b15 PA:1c009b15 +74767401ns 1321401 1c000e82 fff60613 addi x12, x12, -1 x12=0000029a x12:0000029b +74767421ns 1321402 1c000e84 00130313 addi x6, x6, 1 x6=1c009b16 x6:1c009b15 +74767440ns 1321403 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000029a +74767519ns 1321407 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b16 PA:1c009b16 +74767539ns 1321408 1c000e82 fff60613 addi x12, x12, -1 x12=00000299 x12:0000029a +74767559ns 1321409 1c000e84 00130313 addi x6, x6, 1 x6=1c009b17 x6:1c009b16 +74767579ns 1321410 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000299 +74767658ns 1321414 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b17 PA:1c009b17 +74767678ns 1321415 1c000e82 fff60613 addi x12, x12, -1 x12=00000298 x12:00000299 +74767698ns 1321416 1c000e84 00130313 addi x6, x6, 1 x6=1c009b18 x6:1c009b17 +74767717ns 1321417 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000298 +74767797ns 1321421 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b18 PA:1c009b18 +74767816ns 1321422 1c000e82 fff60613 addi x12, x12, -1 x12=00000297 x12:00000298 +74767836ns 1321423 1c000e84 00130313 addi x6, x6, 1 x6=1c009b19 x6:1c009b18 +74767856ns 1321424 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000297 +74767935ns 1321428 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b19 PA:1c009b19 +74767955ns 1321429 1c000e82 fff60613 addi x12, x12, -1 x12=00000296 x12:00000297 +74767975ns 1321430 1c000e84 00130313 addi x6, x6, 1 x6=1c009b1a x6:1c009b19 +74767995ns 1321431 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000296 +74768074ns 1321435 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b1a PA:1c009b1a +74768093ns 1321436 1c000e82 fff60613 addi x12, x12, -1 x12=00000295 x12:00000296 +74768113ns 1321437 1c000e84 00130313 addi x6, x6, 1 x6=1c009b1b x6:1c009b1a +74768133ns 1321438 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000295 +74768212ns 1321442 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b1b PA:1c009b1b +74768232ns 1321443 1c000e82 fff60613 addi x12, x12, -1 x12=00000294 x12:00000295 +74768252ns 1321444 1c000e84 00130313 addi x6, x6, 1 x6=1c009b1c x6:1c009b1b +74768272ns 1321445 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000294 +74768351ns 1321449 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b1c PA:1c009b1c +74768371ns 1321450 1c000e82 fff60613 addi x12, x12, -1 x12=00000293 x12:00000294 +74768390ns 1321451 1c000e84 00130313 addi x6, x6, 1 x6=1c009b1d x6:1c009b1c +74768410ns 1321452 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000293 +74768489ns 1321456 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b1d PA:1c009b1d +74768509ns 1321457 1c000e82 fff60613 addi x12, x12, -1 x12=00000292 x12:00000293 +74768529ns 1321458 1c000e84 00130313 addi x6, x6, 1 x6=1c009b1e x6:1c009b1d +74768549ns 1321459 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000292 +74768628ns 1321463 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b1e PA:1c009b1e +74768648ns 1321464 1c000e82 fff60613 addi x12, x12, -1 x12=00000291 x12:00000292 +74768667ns 1321465 1c000e84 00130313 addi x6, x6, 1 x6=1c009b1f x6:1c009b1e +74768687ns 1321466 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000291 +74768766ns 1321470 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b1f PA:1c009b1f +74768786ns 1321471 1c000e82 fff60613 addi x12, x12, -1 x12=00000290 x12:00000291 +74768806ns 1321472 1c000e84 00130313 addi x6, x6, 1 x6=1c009b20 x6:1c009b1f +74768826ns 1321473 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000290 +74768905ns 1321477 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b20 PA:1c009b20 +74768925ns 1321478 1c000e82 fff60613 addi x12, x12, -1 x12=0000028f x12:00000290 +74768945ns 1321479 1c000e84 00130313 addi x6, x6, 1 x6=1c009b21 x6:1c009b20 +74768964ns 1321480 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000028f +74769043ns 1321484 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b21 PA:1c009b21 +74769063ns 1321485 1c000e82 fff60613 addi x12, x12, -1 x12=0000028e x12:0000028f +74769083ns 1321486 1c000e84 00130313 addi x6, x6, 1 x6=1c009b22 x6:1c009b21 +74769103ns 1321487 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000028e +74769182ns 1321491 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b22 PA:1c009b22 +74769202ns 1321492 1c000e82 fff60613 addi x12, x12, -1 x12=0000028d x12:0000028e +74769222ns 1321493 1c000e84 00130313 addi x6, x6, 1 x6=1c009b23 x6:1c009b22 +74769241ns 1321494 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000028d +74769321ns 1321498 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b23 PA:1c009b23 +74769340ns 1321499 1c000e82 fff60613 addi x12, x12, -1 x12=0000028c x12:0000028d +74769360ns 1321500 1c000e84 00130313 addi x6, x6, 1 x6=1c009b24 x6:1c009b23 +74769380ns 1321501 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000028c +74769459ns 1321505 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b24 PA:1c009b24 +74769479ns 1321506 1c000e82 fff60613 addi x12, x12, -1 x12=0000028b x12:0000028c +74769499ns 1321507 1c000e84 00130313 addi x6, x6, 1 x6=1c009b25 x6:1c009b24 +74769518ns 1321508 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000028b +74769598ns 1321512 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b25 PA:1c009b25 +74769617ns 1321513 1c000e82 fff60613 addi x12, x12, -1 x12=0000028a x12:0000028b +74769637ns 1321514 1c000e84 00130313 addi x6, x6, 1 x6=1c009b26 x6:1c009b25 +74769657ns 1321515 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000028a +74769736ns 1321519 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b26 PA:1c009b26 +74769756ns 1321520 1c000e82 fff60613 addi x12, x12, -1 x12=00000289 x12:0000028a +74769776ns 1321521 1c000e84 00130313 addi x6, x6, 1 x6=1c009b27 x6:1c009b26 +74769796ns 1321522 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000289 +74769875ns 1321526 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b27 PA:1c009b27 +74769895ns 1321527 1c000e82 fff60613 addi x12, x12, -1 x12=00000288 x12:00000289 +74769914ns 1321528 1c000e84 00130313 addi x6, x6, 1 x6=1c009b28 x6:1c009b27 +74769934ns 1321529 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000288 +74770013ns 1321533 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b28 PA:1c009b28 +74770033ns 1321534 1c000e82 fff60613 addi x12, x12, -1 x12=00000287 x12:00000288 +74770053ns 1321535 1c000e84 00130313 addi x6, x6, 1 x6=1c009b29 x6:1c009b28 +74770073ns 1321536 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000287 +74770152ns 1321540 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b29 PA:1c009b29 +74770172ns 1321541 1c000e82 fff60613 addi x12, x12, -1 x12=00000286 x12:00000287 +74770191ns 1321542 1c000e84 00130313 addi x6, x6, 1 x6=1c009b2a x6:1c009b29 +74770211ns 1321543 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000286 +74770290ns 1321547 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b2a PA:1c009b2a +74770310ns 1321548 1c000e82 fff60613 addi x12, x12, -1 x12=00000285 x12:00000286 +74770330ns 1321549 1c000e84 00130313 addi x6, x6, 1 x6=1c009b2b x6:1c009b2a +74770350ns 1321550 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000285 +74770429ns 1321554 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b2b PA:1c009b2b +74770449ns 1321555 1c000e82 fff60613 addi x12, x12, -1 x12=00000284 x12:00000285 +74770469ns 1321556 1c000e84 00130313 addi x6, x6, 1 x6=1c009b2c x6:1c009b2b +74770488ns 1321557 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000284 +74770567ns 1321561 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b2c PA:1c009b2c +74770587ns 1321562 1c000e82 fff60613 addi x12, x12, -1 x12=00000283 x12:00000284 +74770607ns 1321563 1c000e84 00130313 addi x6, x6, 1 x6=1c009b2d x6:1c009b2c +74770627ns 1321564 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000283 +74770706ns 1321568 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b2d PA:1c009b2d +74770726ns 1321569 1c000e82 fff60613 addi x12, x12, -1 x12=00000282 x12:00000283 +74770746ns 1321570 1c000e84 00130313 addi x6, x6, 1 x6=1c009b2e x6:1c009b2d +74770765ns 1321571 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000282 +74770845ns 1321575 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b2e PA:1c009b2e +74770864ns 1321576 1c000e82 fff60613 addi x12, x12, -1 x12=00000281 x12:00000282 +74770884ns 1321577 1c000e84 00130313 addi x6, x6, 1 x6=1c009b2f x6:1c009b2e +74770904ns 1321578 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000281 +74770983ns 1321582 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b2f PA:1c009b2f +74771003ns 1321583 1c000e82 fff60613 addi x12, x12, -1 x12=00000280 x12:00000281 +74771023ns 1321584 1c000e84 00130313 addi x6, x6, 1 x6=1c009b30 x6:1c009b2f +74771042ns 1321585 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000280 +74771122ns 1321589 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b30 PA:1c009b30 +74771141ns 1321590 1c000e82 fff60613 addi x12, x12, -1 x12=0000027f x12:00000280 +74771161ns 1321591 1c000e84 00130313 addi x6, x6, 1 x6=1c009b31 x6:1c009b30 +74771181ns 1321592 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000027f +74771260ns 1321596 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b31 PA:1c009b31 +74771280ns 1321597 1c000e82 fff60613 addi x12, x12, -1 x12=0000027e x12:0000027f +74771300ns 1321598 1c000e84 00130313 addi x6, x6, 1 x6=1c009b32 x6:1c009b31 +74771320ns 1321599 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000027e +74771399ns 1321603 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b32 PA:1c009b32 +74771419ns 1321604 1c000e82 fff60613 addi x12, x12, -1 x12=0000027d x12:0000027e +74771438ns 1321605 1c000e84 00130313 addi x6, x6, 1 x6=1c009b33 x6:1c009b32 +74771458ns 1321606 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000027d +74771537ns 1321610 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b33 PA:1c009b33 +74771557ns 1321611 1c000e82 fff60613 addi x12, x12, -1 x12=0000027c x12:0000027d +74771577ns 1321612 1c000e84 00130313 addi x6, x6, 1 x6=1c009b34 x6:1c009b33 +74771597ns 1321613 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000027c +74771676ns 1321617 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b34 PA:1c009b34 +74771696ns 1321618 1c000e82 fff60613 addi x12, x12, -1 x12=0000027b x12:0000027c +74771715ns 1321619 1c000e84 00130313 addi x6, x6, 1 x6=1c009b35 x6:1c009b34 +74771735ns 1321620 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000027b +74771814ns 1321624 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b35 PA:1c009b35 +74771834ns 1321625 1c000e82 fff60613 addi x12, x12, -1 x12=0000027a x12:0000027b +74771854ns 1321626 1c000e84 00130313 addi x6, x6, 1 x6=1c009b36 x6:1c009b35 +74771874ns 1321627 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000027a +74771953ns 1321631 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b36 PA:1c009b36 +74771973ns 1321632 1c000e82 fff60613 addi x12, x12, -1 x12=00000279 x12:0000027a +74771992ns 1321633 1c000e84 00130313 addi x6, x6, 1 x6=1c009b37 x6:1c009b36 +74772012ns 1321634 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000279 +74772091ns 1321638 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b37 PA:1c009b37 +74772111ns 1321639 1c000e82 fff60613 addi x12, x12, -1 x12=00000278 x12:00000279 +74772131ns 1321640 1c000e84 00130313 addi x6, x6, 1 x6=1c009b38 x6:1c009b37 +74772151ns 1321641 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000278 +74772230ns 1321645 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b38 PA:1c009b38 +74772250ns 1321646 1c000e82 fff60613 addi x12, x12, -1 x12=00000277 x12:00000278 +74772270ns 1321647 1c000e84 00130313 addi x6, x6, 1 x6=1c009b39 x6:1c009b38 +74772289ns 1321648 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000277 +74772369ns 1321652 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b39 PA:1c009b39 +74772388ns 1321653 1c000e82 fff60613 addi x12, x12, -1 x12=00000276 x12:00000277 +74772408ns 1321654 1c000e84 00130313 addi x6, x6, 1 x6=1c009b3a x6:1c009b39 +74772428ns 1321655 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000276 +74772507ns 1321659 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b3a PA:1c009b3a +74772527ns 1321660 1c000e82 fff60613 addi x12, x12, -1 x12=00000275 x12:00000276 +74772547ns 1321661 1c000e84 00130313 addi x6, x6, 1 x6=1c009b3b x6:1c009b3a +74772566ns 1321662 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000275 +74772646ns 1321666 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b3b PA:1c009b3b +74772665ns 1321667 1c000e82 fff60613 addi x12, x12, -1 x12=00000274 x12:00000275 +74772685ns 1321668 1c000e84 00130313 addi x6, x6, 1 x6=1c009b3c x6:1c009b3b +74772705ns 1321669 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000274 +74772784ns 1321673 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b3c PA:1c009b3c +74772804ns 1321674 1c000e82 fff60613 addi x12, x12, -1 x12=00000273 x12:00000274 +74772824ns 1321675 1c000e84 00130313 addi x6, x6, 1 x6=1c009b3d x6:1c009b3c +74772844ns 1321676 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000273 +74772923ns 1321680 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b3d PA:1c009b3d +74772943ns 1321681 1c000e82 fff60613 addi x12, x12, -1 x12=00000272 x12:00000273 +74772962ns 1321682 1c000e84 00130313 addi x6, x6, 1 x6=1c009b3e x6:1c009b3d +74772982ns 1321683 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000272 +74773061ns 1321687 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b3e PA:1c009b3e +74773081ns 1321688 1c000e82 fff60613 addi x12, x12, -1 x12=00000271 x12:00000272 +74773101ns 1321689 1c000e84 00130313 addi x6, x6, 1 x6=1c009b3f x6:1c009b3e +74773121ns 1321690 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000271 +74773200ns 1321694 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b3f PA:1c009b3f +74773220ns 1321695 1c000e82 fff60613 addi x12, x12, -1 x12=00000270 x12:00000271 +74773239ns 1321696 1c000e84 00130313 addi x6, x6, 1 x6=1c009b40 x6:1c009b3f +74773259ns 1321697 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000270 +74773338ns 1321701 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b40 PA:1c009b40 +74773358ns 1321702 1c000e82 fff60613 addi x12, x12, -1 x12=0000026f x12:00000270 +74773378ns 1321703 1c000e84 00130313 addi x6, x6, 1 x6=1c009b41 x6:1c009b40 +74773398ns 1321704 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000026f +74773477ns 1321708 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b41 PA:1c009b41 +74773497ns 1321709 1c000e82 fff60613 addi x12, x12, -1 x12=0000026e x12:0000026f +74773516ns 1321710 1c000e84 00130313 addi x6, x6, 1 x6=1c009b42 x6:1c009b41 +74773536ns 1321711 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000026e +74773615ns 1321715 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b42 PA:1c009b42 +74773635ns 1321716 1c000e82 fff60613 addi x12, x12, -1 x12=0000026d x12:0000026e +74773655ns 1321717 1c000e84 00130313 addi x6, x6, 1 x6=1c009b43 x6:1c009b42 +74773675ns 1321718 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000026d +74773754ns 1321722 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b43 PA:1c009b43 +74773774ns 1321723 1c000e82 fff60613 addi x12, x12, -1 x12=0000026c x12:0000026d +74773794ns 1321724 1c000e84 00130313 addi x6, x6, 1 x6=1c009b44 x6:1c009b43 +74773813ns 1321725 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000026c +74773893ns 1321729 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b44 PA:1c009b44 +74773912ns 1321730 1c000e82 fff60613 addi x12, x12, -1 x12=0000026b x12:0000026c +74773932ns 1321731 1c000e84 00130313 addi x6, x6, 1 x6=1c009b45 x6:1c009b44 +74773952ns 1321732 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000026b +74774031ns 1321736 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b45 PA:1c009b45 +74774051ns 1321737 1c000e82 fff60613 addi x12, x12, -1 x12=0000026a x12:0000026b +74774071ns 1321738 1c000e84 00130313 addi x6, x6, 1 x6=1c009b46 x6:1c009b45 +74774090ns 1321739 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000026a +74774170ns 1321743 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b46 PA:1c009b46 +74774189ns 1321744 1c000e82 fff60613 addi x12, x12, -1 x12=00000269 x12:0000026a +74774209ns 1321745 1c000e84 00130313 addi x6, x6, 1 x6=1c009b47 x6:1c009b46 +74774229ns 1321746 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000269 +74774308ns 1321750 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b47 PA:1c009b47 +74774328ns 1321751 1c000e82 fff60613 addi x12, x12, -1 x12=00000268 x12:00000269 +74774348ns 1321752 1c000e84 00130313 addi x6, x6, 1 x6=1c009b48 x6:1c009b47 +74774368ns 1321753 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000268 +74774447ns 1321757 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b48 PA:1c009b48 +74774466ns 1321758 1c000e82 fff60613 addi x12, x12, -1 x12=00000267 x12:00000268 +74774486ns 1321759 1c000e84 00130313 addi x6, x6, 1 x6=1c009b49 x6:1c009b48 +74774506ns 1321760 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000267 +74774585ns 1321764 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b49 PA:1c009b49 +74774605ns 1321765 1c000e82 fff60613 addi x12, x12, -1 x12=00000266 x12:00000267 +74774625ns 1321766 1c000e84 00130313 addi x6, x6, 1 x6=1c009b4a x6:1c009b49 +74774645ns 1321767 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000266 +74774724ns 1321771 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b4a PA:1c009b4a +74774744ns 1321772 1c000e82 fff60613 addi x12, x12, -1 x12=00000265 x12:00000266 +74774763ns 1321773 1c000e84 00130313 addi x6, x6, 1 x6=1c009b4b x6:1c009b4a +74774783ns 1321774 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000265 +74774862ns 1321778 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b4b PA:1c009b4b +74774882ns 1321779 1c000e82 fff60613 addi x12, x12, -1 x12=00000264 x12:00000265 +74774902ns 1321780 1c000e84 00130313 addi x6, x6, 1 x6=1c009b4c x6:1c009b4b +74774922ns 1321781 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000264 +74775001ns 1321785 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b4c PA:1c009b4c +74775021ns 1321786 1c000e82 fff60613 addi x12, x12, -1 x12=00000263 x12:00000264 +74775040ns 1321787 1c000e84 00130313 addi x6, x6, 1 x6=1c009b4d x6:1c009b4c +74775060ns 1321788 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000263 +74775139ns 1321792 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b4d PA:1c009b4d +74775159ns 1321793 1c000e82 fff60613 addi x12, x12, -1 x12=00000262 x12:00000263 +74775179ns 1321794 1c000e84 00130313 addi x6, x6, 1 x6=1c009b4e x6:1c009b4d +74775199ns 1321795 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000262 +74775278ns 1321799 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b4e PA:1c009b4e +74775298ns 1321800 1c000e82 fff60613 addi x12, x12, -1 x12=00000261 x12:00000262 +74775318ns 1321801 1c000e84 00130313 addi x6, x6, 1 x6=1c009b4f x6:1c009b4e +74775337ns 1321802 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000261 +74775417ns 1321806 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b4f PA:1c009b4f +74775436ns 1321807 1c000e82 fff60613 addi x12, x12, -1 x12=00000260 x12:00000261 +74775456ns 1321808 1c000e84 00130313 addi x6, x6, 1 x6=1c009b50 x6:1c009b4f +74775476ns 1321809 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000260 +74775555ns 1321813 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b50 PA:1c009b50 +74775575ns 1321814 1c000e82 fff60613 addi x12, x12, -1 x12=0000025f x12:00000260 +74775595ns 1321815 1c000e84 00130313 addi x6, x6, 1 x6=1c009b51 x6:1c009b50 +74775614ns 1321816 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000025f +74775694ns 1321820 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b51 PA:1c009b51 +74775713ns 1321821 1c000e82 fff60613 addi x12, x12, -1 x12=0000025e x12:0000025f +74775733ns 1321822 1c000e84 00130313 addi x6, x6, 1 x6=1c009b52 x6:1c009b51 +74775753ns 1321823 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000025e +74775832ns 1321827 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b52 PA:1c009b52 +74775852ns 1321828 1c000e82 fff60613 addi x12, x12, -1 x12=0000025d x12:0000025e +74775872ns 1321829 1c000e84 00130313 addi x6, x6, 1 x6=1c009b53 x6:1c009b52 +74775892ns 1321830 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000025d +74775971ns 1321834 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b53 PA:1c009b53 +74775990ns 1321835 1c000e82 fff60613 addi x12, x12, -1 x12=0000025c x12:0000025d +74776010ns 1321836 1c000e84 00130313 addi x6, x6, 1 x6=1c009b54 x6:1c009b53 +74776030ns 1321837 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000025c +74776109ns 1321841 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b54 PA:1c009b54 +74776129ns 1321842 1c000e82 fff60613 addi x12, x12, -1 x12=0000025b x12:0000025c +74776149ns 1321843 1c000e84 00130313 addi x6, x6, 1 x6=1c009b55 x6:1c009b54 +74776169ns 1321844 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000025b +74776248ns 1321848 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b55 PA:1c009b55 +74776268ns 1321849 1c000e82 fff60613 addi x12, x12, -1 x12=0000025a x12:0000025b +74776287ns 1321850 1c000e84 00130313 addi x6, x6, 1 x6=1c009b56 x6:1c009b55 +74776307ns 1321851 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000025a +74776386ns 1321855 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b56 PA:1c009b56 +74776406ns 1321856 1c000e82 fff60613 addi x12, x12, -1 x12=00000259 x12:0000025a +74776426ns 1321857 1c000e84 00130313 addi x6, x6, 1 x6=1c009b57 x6:1c009b56 +74776446ns 1321858 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000259 +74776525ns 1321862 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b57 PA:1c009b57 +74776545ns 1321863 1c000e82 fff60613 addi x12, x12, -1 x12=00000258 x12:00000259 +74776564ns 1321864 1c000e84 00130313 addi x6, x6, 1 x6=1c009b58 x6:1c009b57 +74776584ns 1321865 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000258 +74776663ns 1321869 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b58 PA:1c009b58 +74776683ns 1321870 1c000e82 fff60613 addi x12, x12, -1 x12=00000257 x12:00000258 +74776703ns 1321871 1c000e84 00130313 addi x6, x6, 1 x6=1c009b59 x6:1c009b58 +74776723ns 1321872 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000257 +74776802ns 1321876 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b59 PA:1c009b59 +74776822ns 1321877 1c000e82 fff60613 addi x12, x12, -1 x12=00000256 x12:00000257 +74776842ns 1321878 1c000e84 00130313 addi x6, x6, 1 x6=1c009b5a x6:1c009b59 +74776861ns 1321879 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000256 +74776940ns 1321883 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b5a PA:1c009b5a +74776960ns 1321884 1c000e82 fff60613 addi x12, x12, -1 x12=00000255 x12:00000256 +74776980ns 1321885 1c000e84 00130313 addi x6, x6, 1 x6=1c009b5b x6:1c009b5a +74777000ns 1321886 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000255 +74777079ns 1321890 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b5b PA:1c009b5b +74777099ns 1321891 1c000e82 fff60613 addi x12, x12, -1 x12=00000254 x12:00000255 +74777119ns 1321892 1c000e84 00130313 addi x6, x6, 1 x6=1c009b5c x6:1c009b5b +74777138ns 1321893 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000254 +74777218ns 1321897 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b5c PA:1c009b5c +74777237ns 1321898 1c000e82 fff60613 addi x12, x12, -1 x12=00000253 x12:00000254 +74777257ns 1321899 1c000e84 00130313 addi x6, x6, 1 x6=1c009b5d x6:1c009b5c +74777277ns 1321900 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000253 +74777356ns 1321904 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b5d PA:1c009b5d +74777376ns 1321905 1c000e82 fff60613 addi x12, x12, -1 x12=00000252 x12:00000253 +74777396ns 1321906 1c000e84 00130313 addi x6, x6, 1 x6=1c009b5e x6:1c009b5d +74777415ns 1321907 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000252 +74777495ns 1321911 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b5e PA:1c009b5e +74777514ns 1321912 1c000e82 fff60613 addi x12, x12, -1 x12=00000251 x12:00000252 +74777534ns 1321913 1c000e84 00130313 addi x6, x6, 1 x6=1c009b5f x6:1c009b5e +74777554ns 1321914 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000251 +74777633ns 1321918 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b5f PA:1c009b5f +74777653ns 1321919 1c000e82 fff60613 addi x12, x12, -1 x12=00000250 x12:00000251 +74777673ns 1321920 1c000e84 00130313 addi x6, x6, 1 x6=1c009b60 x6:1c009b5f +74777693ns 1321921 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000250 +74777772ns 1321925 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b60 PA:1c009b60 +74777792ns 1321926 1c000e82 fff60613 addi x12, x12, -1 x12=0000024f x12:00000250 +74777811ns 1321927 1c000e84 00130313 addi x6, x6, 1 x6=1c009b61 x6:1c009b60 +74777831ns 1321928 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000024f +74777910ns 1321932 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b61 PA:1c009b61 +74777930ns 1321933 1c000e82 fff60613 addi x12, x12, -1 x12=0000024e x12:0000024f +74777950ns 1321934 1c000e84 00130313 addi x6, x6, 1 x6=1c009b62 x6:1c009b61 +74777970ns 1321935 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000024e +74778049ns 1321939 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b62 PA:1c009b62 +74778069ns 1321940 1c000e82 fff60613 addi x12, x12, -1 x12=0000024d x12:0000024e +74778088ns 1321941 1c000e84 00130313 addi x6, x6, 1 x6=1c009b63 x6:1c009b62 +74778108ns 1321942 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000024d +74778187ns 1321946 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b63 PA:1c009b63 +74778207ns 1321947 1c000e82 fff60613 addi x12, x12, -1 x12=0000024c x12:0000024d +74778227ns 1321948 1c000e84 00130313 addi x6, x6, 1 x6=1c009b64 x6:1c009b63 +74778247ns 1321949 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000024c +74778326ns 1321953 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b64 PA:1c009b64 +74778346ns 1321954 1c000e82 fff60613 addi x12, x12, -1 x12=0000024b x12:0000024c +74778366ns 1321955 1c000e84 00130313 addi x6, x6, 1 x6=1c009b65 x6:1c009b64 +74778385ns 1321956 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000024b +74778464ns 1321960 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b65 PA:1c009b65 +74778484ns 1321961 1c000e82 fff60613 addi x12, x12, -1 x12=0000024a x12:0000024b +74778504ns 1321962 1c000e84 00130313 addi x6, x6, 1 x6=1c009b66 x6:1c009b65 +74778524ns 1321963 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000024a +74778603ns 1321967 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b66 PA:1c009b66 +74778623ns 1321968 1c000e82 fff60613 addi x12, x12, -1 x12=00000249 x12:0000024a +74778643ns 1321969 1c000e84 00130313 addi x6, x6, 1 x6=1c009b67 x6:1c009b66 +74778662ns 1321970 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000249 +74778742ns 1321974 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b67 PA:1c009b67 +74778761ns 1321975 1c000e82 fff60613 addi x12, x12, -1 x12=00000248 x12:00000249 +74778781ns 1321976 1c000e84 00130313 addi x6, x6, 1 x6=1c009b68 x6:1c009b67 +74778801ns 1321977 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000248 +74778880ns 1321981 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b68 PA:1c009b68 +74778900ns 1321982 1c000e82 fff60613 addi x12, x12, -1 x12=00000247 x12:00000248 +74778920ns 1321983 1c000e84 00130313 addi x6, x6, 1 x6=1c009b69 x6:1c009b68 +74778939ns 1321984 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000247 +74779019ns 1321988 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b69 PA:1c009b69 +74779038ns 1321989 1c000e82 fff60613 addi x12, x12, -1 x12=00000246 x12:00000247 +74779058ns 1321990 1c000e84 00130313 addi x6, x6, 1 x6=1c009b6a x6:1c009b69 +74779078ns 1321991 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000246 +74779157ns 1321995 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b6a PA:1c009b6a +74779177ns 1321996 1c000e82 fff60613 addi x12, x12, -1 x12=00000245 x12:00000246 +74779197ns 1321997 1c000e84 00130313 addi x6, x6, 1 x6=1c009b6b x6:1c009b6a +74779217ns 1321998 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000245 +74779296ns 1322002 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b6b PA:1c009b6b +74779316ns 1322003 1c000e82 fff60613 addi x12, x12, -1 x12=00000244 x12:00000245 +74779335ns 1322004 1c000e84 00130313 addi x6, x6, 1 x6=1c009b6c x6:1c009b6b +74779355ns 1322005 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000244 +74779434ns 1322009 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b6c PA:1c009b6c +74779454ns 1322010 1c000e82 fff60613 addi x12, x12, -1 x12=00000243 x12:00000244 +74779474ns 1322011 1c000e84 00130313 addi x6, x6, 1 x6=1c009b6d x6:1c009b6c +74779494ns 1322012 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000243 +74779573ns 1322016 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b6d PA:1c009b6d +74779593ns 1322017 1c000e82 fff60613 addi x12, x12, -1 x12=00000242 x12:00000243 +74779612ns 1322018 1c000e84 00130313 addi x6, x6, 1 x6=1c009b6e x6:1c009b6d +74779632ns 1322019 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000242 +74779711ns 1322023 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b6e PA:1c009b6e +74779731ns 1322024 1c000e82 fff60613 addi x12, x12, -1 x12=00000241 x12:00000242 +74779751ns 1322025 1c000e84 00130313 addi x6, x6, 1 x6=1c009b6f x6:1c009b6e +74779771ns 1322026 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000241 +74779850ns 1322030 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b6f PA:1c009b6f +74779870ns 1322031 1c000e82 fff60613 addi x12, x12, -1 x12=00000240 x12:00000241 +74779889ns 1322032 1c000e84 00130313 addi x6, x6, 1 x6=1c009b70 x6:1c009b6f +74779909ns 1322033 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000240 +74779988ns 1322037 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b70 PA:1c009b70 +74780008ns 1322038 1c000e82 fff60613 addi x12, x12, -1 x12=0000023f x12:00000240 +74780028ns 1322039 1c000e84 00130313 addi x6, x6, 1 x6=1c009b71 x6:1c009b70 +74780048ns 1322040 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000023f +74780127ns 1322044 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b71 PA:1c009b71 +74780147ns 1322045 1c000e82 fff60613 addi x12, x12, -1 x12=0000023e x12:0000023f +74780167ns 1322046 1c000e84 00130313 addi x6, x6, 1 x6=1c009b72 x6:1c009b71 +74780186ns 1322047 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000023e +74780266ns 1322051 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b72 PA:1c009b72 +74780285ns 1322052 1c000e82 fff60613 addi x12, x12, -1 x12=0000023d x12:0000023e +74780305ns 1322053 1c000e84 00130313 addi x6, x6, 1 x6=1c009b73 x6:1c009b72 +74780325ns 1322054 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000023d +74780404ns 1322058 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b73 PA:1c009b73 +74780424ns 1322059 1c000e82 fff60613 addi x12, x12, -1 x12=0000023c x12:0000023d +74780444ns 1322060 1c000e84 00130313 addi x6, x6, 1 x6=1c009b74 x6:1c009b73 +74780463ns 1322061 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000023c +74780543ns 1322065 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b74 PA:1c009b74 +74780562ns 1322066 1c000e82 fff60613 addi x12, x12, -1 x12=0000023b x12:0000023c +74780582ns 1322067 1c000e84 00130313 addi x6, x6, 1 x6=1c009b75 x6:1c009b74 +74780602ns 1322068 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000023b +74780681ns 1322072 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b75 PA:1c009b75 +74780701ns 1322073 1c000e82 fff60613 addi x12, x12, -1 x12=0000023a x12:0000023b +74780721ns 1322074 1c000e84 00130313 addi x6, x6, 1 x6=1c009b76 x6:1c009b75 +74780741ns 1322075 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000023a +74780820ns 1322079 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b76 PA:1c009b76 +74780840ns 1322080 1c000e82 fff60613 addi x12, x12, -1 x12=00000239 x12:0000023a +74780859ns 1322081 1c000e84 00130313 addi x6, x6, 1 x6=1c009b77 x6:1c009b76 +74780879ns 1322082 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000239 +74780958ns 1322086 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b77 PA:1c009b77 +74780978ns 1322087 1c000e82 fff60613 addi x12, x12, -1 x12=00000238 x12:00000239 +74780998ns 1322088 1c000e84 00130313 addi x6, x6, 1 x6=1c009b78 x6:1c009b77 +74781018ns 1322089 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000238 +74781097ns 1322093 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b78 PA:1c009b78 +74781117ns 1322094 1c000e82 fff60613 addi x12, x12, -1 x12=00000237 x12:00000238 +74781136ns 1322095 1c000e84 00130313 addi x6, x6, 1 x6=1c009b79 x6:1c009b78 +74781156ns 1322096 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000237 +74781235ns 1322100 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b79 PA:1c009b79 +74781255ns 1322101 1c000e82 fff60613 addi x12, x12, -1 x12=00000236 x12:00000237 +74781275ns 1322102 1c000e84 00130313 addi x6, x6, 1 x6=1c009b7a x6:1c009b79 +74781295ns 1322103 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000236 +74781374ns 1322107 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b7a PA:1c009b7a +74781394ns 1322108 1c000e82 fff60613 addi x12, x12, -1 x12=00000235 x12:00000236 +74781413ns 1322109 1c000e84 00130313 addi x6, x6, 1 x6=1c009b7b x6:1c009b7a +74781433ns 1322110 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000235 +74781512ns 1322114 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b7b PA:1c009b7b +74781532ns 1322115 1c000e82 fff60613 addi x12, x12, -1 x12=00000234 x12:00000235 +74781552ns 1322116 1c000e84 00130313 addi x6, x6, 1 x6=1c009b7c x6:1c009b7b +74781572ns 1322117 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000234 +74781651ns 1322121 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b7c PA:1c009b7c +74781671ns 1322122 1c000e82 fff60613 addi x12, x12, -1 x12=00000233 x12:00000234 +74781691ns 1322123 1c000e84 00130313 addi x6, x6, 1 x6=1c009b7d x6:1c009b7c +74781710ns 1322124 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000233 +74781790ns 1322128 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b7d PA:1c009b7d +74781809ns 1322129 1c000e82 fff60613 addi x12, x12, -1 x12=00000232 x12:00000233 +74781829ns 1322130 1c000e84 00130313 addi x6, x6, 1 x6=1c009b7e x6:1c009b7d +74781849ns 1322131 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000232 +74781928ns 1322135 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b7e PA:1c009b7e +74781948ns 1322136 1c000e82 fff60613 addi x12, x12, -1 x12=00000231 x12:00000232 +74781968ns 1322137 1c000e84 00130313 addi x6, x6, 1 x6=1c009b7f x6:1c009b7e +74781987ns 1322138 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000231 +74782067ns 1322142 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b7f PA:1c009b7f +74782086ns 1322143 1c000e82 fff60613 addi x12, x12, -1 x12=00000230 x12:00000231 +74782106ns 1322144 1c000e84 00130313 addi x6, x6, 1 x6=1c009b80 x6:1c009b7f +74782126ns 1322145 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000230 +74782205ns 1322149 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b80 PA:1c009b80 +74782225ns 1322150 1c000e82 fff60613 addi x12, x12, -1 x12=0000022f x12:00000230 +74782245ns 1322151 1c000e84 00130313 addi x6, x6, 1 x6=1c009b81 x6:1c009b80 +74782265ns 1322152 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000022f +74782344ns 1322156 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b81 PA:1c009b81 +74782363ns 1322157 1c000e82 fff60613 addi x12, x12, -1 x12=0000022e x12:0000022f +74782383ns 1322158 1c000e84 00130313 addi x6, x6, 1 x6=1c009b82 x6:1c009b81 +74782403ns 1322159 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000022e +74782482ns 1322163 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b82 PA:1c009b82 +74782502ns 1322164 1c000e82 fff60613 addi x12, x12, -1 x12=0000022d x12:0000022e +74782522ns 1322165 1c000e84 00130313 addi x6, x6, 1 x6=1c009b83 x6:1c009b82 +74782542ns 1322166 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000022d +74782621ns 1322170 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b83 PA:1c009b83 +74782641ns 1322171 1c000e82 fff60613 addi x12, x12, -1 x12=0000022c x12:0000022d +74782660ns 1322172 1c000e84 00130313 addi x6, x6, 1 x6=1c009b84 x6:1c009b83 +74782680ns 1322173 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000022c +74782759ns 1322177 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b84 PA:1c009b84 +74782779ns 1322178 1c000e82 fff60613 addi x12, x12, -1 x12=0000022b x12:0000022c +74782799ns 1322179 1c000e84 00130313 addi x6, x6, 1 x6=1c009b85 x6:1c009b84 +74782819ns 1322180 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000022b +74782898ns 1322184 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b85 PA:1c009b85 +74782918ns 1322185 1c000e82 fff60613 addi x12, x12, -1 x12=0000022a x12:0000022b +74782937ns 1322186 1c000e84 00130313 addi x6, x6, 1 x6=1c009b86 x6:1c009b85 +74782957ns 1322187 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000022a +74783036ns 1322191 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b86 PA:1c009b86 +74783056ns 1322192 1c000e82 fff60613 addi x12, x12, -1 x12=00000229 x12:0000022a +74783076ns 1322193 1c000e84 00130313 addi x6, x6, 1 x6=1c009b87 x6:1c009b86 +74783096ns 1322194 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000229 +74783175ns 1322198 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b87 PA:1c009b87 +74783195ns 1322199 1c000e82 fff60613 addi x12, x12, -1 x12=00000228 x12:00000229 +74783215ns 1322200 1c000e84 00130313 addi x6, x6, 1 x6=1c009b88 x6:1c009b87 +74783234ns 1322201 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000228 +74783314ns 1322205 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b88 PA:1c009b88 +74783333ns 1322206 1c000e82 fff60613 addi x12, x12, -1 x12=00000227 x12:00000228 +74783353ns 1322207 1c000e84 00130313 addi x6, x6, 1 x6=1c009b89 x6:1c009b88 +74783373ns 1322208 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000227 +74783452ns 1322212 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b89 PA:1c009b89 +74783472ns 1322213 1c000e82 fff60613 addi x12, x12, -1 x12=00000226 x12:00000227 +74783492ns 1322214 1c000e84 00130313 addi x6, x6, 1 x6=1c009b8a x6:1c009b89 +74783511ns 1322215 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000226 +74783591ns 1322219 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b8a PA:1c009b8a +74783610ns 1322220 1c000e82 fff60613 addi x12, x12, -1 x12=00000225 x12:00000226 +74783630ns 1322221 1c000e84 00130313 addi x6, x6, 1 x6=1c009b8b x6:1c009b8a +74783650ns 1322222 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000225 +74783729ns 1322226 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b8b PA:1c009b8b +74783749ns 1322227 1c000e82 fff60613 addi x12, x12, -1 x12=00000224 x12:00000225 +74783769ns 1322228 1c000e84 00130313 addi x6, x6, 1 x6=1c009b8c x6:1c009b8b +74783789ns 1322229 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000224 +74783868ns 1322233 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b8c PA:1c009b8c +74783887ns 1322234 1c000e82 fff60613 addi x12, x12, -1 x12=00000223 x12:00000224 +74783907ns 1322235 1c000e84 00130313 addi x6, x6, 1 x6=1c009b8d x6:1c009b8c +74783927ns 1322236 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000223 +74784006ns 1322240 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b8d PA:1c009b8d +74784026ns 1322241 1c000e82 fff60613 addi x12, x12, -1 x12=00000222 x12:00000223 +74784046ns 1322242 1c000e84 00130313 addi x6, x6, 1 x6=1c009b8e x6:1c009b8d +74784066ns 1322243 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000222 +74784145ns 1322247 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b8e PA:1c009b8e +74784165ns 1322248 1c000e82 fff60613 addi x12, x12, -1 x12=00000221 x12:00000222 +74784184ns 1322249 1c000e84 00130313 addi x6, x6, 1 x6=1c009b8f x6:1c009b8e +74784204ns 1322250 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000221 +74784283ns 1322254 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b8f PA:1c009b8f +74784303ns 1322255 1c000e82 fff60613 addi x12, x12, -1 x12=00000220 x12:00000221 +74784323ns 1322256 1c000e84 00130313 addi x6, x6, 1 x6=1c009b90 x6:1c009b8f +74784343ns 1322257 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000220 +74784422ns 1322261 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b90 PA:1c009b90 +74784442ns 1322262 1c000e82 fff60613 addi x12, x12, -1 x12=0000021f x12:00000220 +74784461ns 1322263 1c000e84 00130313 addi x6, x6, 1 x6=1c009b91 x6:1c009b90 +74784481ns 1322264 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000021f +74784560ns 1322268 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b91 PA:1c009b91 +74784580ns 1322269 1c000e82 fff60613 addi x12, x12, -1 x12=0000021e x12:0000021f +74784600ns 1322270 1c000e84 00130313 addi x6, x6, 1 x6=1c009b92 x6:1c009b91 +74784620ns 1322271 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000021e +74784699ns 1322275 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b92 PA:1c009b92 +74784719ns 1322276 1c000e82 fff60613 addi x12, x12, -1 x12=0000021d x12:0000021e +74784739ns 1322277 1c000e84 00130313 addi x6, x6, 1 x6=1c009b93 x6:1c009b92 +74784758ns 1322278 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000021d +74784837ns 1322282 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b93 PA:1c009b93 +74784857ns 1322283 1c000e82 fff60613 addi x12, x12, -1 x12=0000021c x12:0000021d +74784877ns 1322284 1c000e84 00130313 addi x6, x6, 1 x6=1c009b94 x6:1c009b93 +74784897ns 1322285 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000021c +74784976ns 1322289 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b94 PA:1c009b94 +74784996ns 1322290 1c000e82 fff60613 addi x12, x12, -1 x12=0000021b x12:0000021c +74785016ns 1322291 1c000e84 00130313 addi x6, x6, 1 x6=1c009b95 x6:1c009b94 +74785035ns 1322292 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000021b +74785115ns 1322296 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b95 PA:1c009b95 +74785134ns 1322297 1c000e82 fff60613 addi x12, x12, -1 x12=0000021a x12:0000021b +74785154ns 1322298 1c000e84 00130313 addi x6, x6, 1 x6=1c009b96 x6:1c009b95 +74785174ns 1322299 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000021a +74785253ns 1322303 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b96 PA:1c009b96 +74785273ns 1322304 1c000e82 fff60613 addi x12, x12, -1 x12=00000219 x12:0000021a +74785293ns 1322305 1c000e84 00130313 addi x6, x6, 1 x6=1c009b97 x6:1c009b96 +74785313ns 1322306 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000219 +74785392ns 1322310 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b97 PA:1c009b97 +74785411ns 1322311 1c000e82 fff60613 addi x12, x12, -1 x12=00000218 x12:00000219 +74785431ns 1322312 1c000e84 00130313 addi x6, x6, 1 x6=1c009b98 x6:1c009b97 +74785451ns 1322313 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000218 +74785530ns 1322317 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b98 PA:1c009b98 +74785550ns 1322318 1c000e82 fff60613 addi x12, x12, -1 x12=00000217 x12:00000218 +74785570ns 1322319 1c000e84 00130313 addi x6, x6, 1 x6=1c009b99 x6:1c009b98 +74785590ns 1322320 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000217 +74785669ns 1322324 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b99 PA:1c009b99 +74785689ns 1322325 1c000e82 fff60613 addi x12, x12, -1 x12=00000216 x12:00000217 +74785708ns 1322326 1c000e84 00130313 addi x6, x6, 1 x6=1c009b9a x6:1c009b99 +74785728ns 1322327 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000216 +74785807ns 1322331 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b9a PA:1c009b9a +74785827ns 1322332 1c000e82 fff60613 addi x12, x12, -1 x12=00000215 x12:00000216 +74785847ns 1322333 1c000e84 00130313 addi x6, x6, 1 x6=1c009b9b x6:1c009b9a +74785867ns 1322334 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000215 +74785946ns 1322338 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b9b PA:1c009b9b +74785966ns 1322339 1c000e82 fff60613 addi x12, x12, -1 x12=00000214 x12:00000215 +74785985ns 1322340 1c000e84 00130313 addi x6, x6, 1 x6=1c009b9c x6:1c009b9b +74786005ns 1322341 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000214 +74786084ns 1322345 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b9c PA:1c009b9c +74786104ns 1322346 1c000e82 fff60613 addi x12, x12, -1 x12=00000213 x12:00000214 +74786124ns 1322347 1c000e84 00130313 addi x6, x6, 1 x6=1c009b9d x6:1c009b9c +74786144ns 1322348 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000213 +74786223ns 1322352 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b9d PA:1c009b9d +74786243ns 1322353 1c000e82 fff60613 addi x12, x12, -1 x12=00000212 x12:00000213 +74786263ns 1322354 1c000e84 00130313 addi x6, x6, 1 x6=1c009b9e x6:1c009b9d +74786282ns 1322355 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000212 +74786361ns 1322359 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b9e PA:1c009b9e +74786381ns 1322360 1c000e82 fff60613 addi x12, x12, -1 x12=00000211 x12:00000212 +74786401ns 1322361 1c000e84 00130313 addi x6, x6, 1 x6=1c009b9f x6:1c009b9e +74786421ns 1322362 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000211 +74786500ns 1322366 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009b9f PA:1c009b9f +74786520ns 1322367 1c000e82 fff60613 addi x12, x12, -1 x12=00000210 x12:00000211 +74786540ns 1322368 1c000e84 00130313 addi x6, x6, 1 x6=1c009ba0 x6:1c009b9f +74786559ns 1322369 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000210 +74786639ns 1322373 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ba0 PA:1c009ba0 +74786658ns 1322374 1c000e82 fff60613 addi x12, x12, -1 x12=0000020f x12:00000210 +74786678ns 1322375 1c000e84 00130313 addi x6, x6, 1 x6=1c009ba1 x6:1c009ba0 +74786698ns 1322376 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000020f +74786777ns 1322380 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ba1 PA:1c009ba1 +74786797ns 1322381 1c000e82 fff60613 addi x12, x12, -1 x12=0000020e x12:0000020f +74786817ns 1322382 1c000e84 00130313 addi x6, x6, 1 x6=1c009ba2 x6:1c009ba1 +74786836ns 1322383 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000020e +74786916ns 1322387 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ba2 PA:1c009ba2 +74786935ns 1322388 1c000e82 fff60613 addi x12, x12, -1 x12=0000020d x12:0000020e +74786955ns 1322389 1c000e84 00130313 addi x6, x6, 1 x6=1c009ba3 x6:1c009ba2 +74786975ns 1322390 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000020d +74787054ns 1322394 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ba3 PA:1c009ba3 +74787074ns 1322395 1c000e82 fff60613 addi x12, x12, -1 x12=0000020c x12:0000020d +74787094ns 1322396 1c000e84 00130313 addi x6, x6, 1 x6=1c009ba4 x6:1c009ba3 +74787114ns 1322397 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000020c +74787193ns 1322401 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ba4 PA:1c009ba4 +74787213ns 1322402 1c000e82 fff60613 addi x12, x12, -1 x12=0000020b x12:0000020c +74787232ns 1322403 1c000e84 00130313 addi x6, x6, 1 x6=1c009ba5 x6:1c009ba4 +74787252ns 1322404 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000020b +74787331ns 1322408 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ba5 PA:1c009ba5 +74787351ns 1322409 1c000e82 fff60613 addi x12, x12, -1 x12=0000020a x12:0000020b +74787371ns 1322410 1c000e84 00130313 addi x6, x6, 1 x6=1c009ba6 x6:1c009ba5 +74787391ns 1322411 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000020a +74787470ns 1322415 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ba6 PA:1c009ba6 +74787490ns 1322416 1c000e82 fff60613 addi x12, x12, -1 x12=00000209 x12:0000020a +74787509ns 1322417 1c000e84 00130313 addi x6, x6, 1 x6=1c009ba7 x6:1c009ba6 +74787529ns 1322418 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000209 +74787608ns 1322422 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ba7 PA:1c009ba7 +74787628ns 1322423 1c000e82 fff60613 addi x12, x12, -1 x12=00000208 x12:00000209 +74787648ns 1322424 1c000e84 00130313 addi x6, x6, 1 x6=1c009ba8 x6:1c009ba7 +74787668ns 1322425 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000208 +74787747ns 1322429 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ba8 PA:1c009ba8 +74787767ns 1322430 1c000e82 fff60613 addi x12, x12, -1 x12=00000207 x12:00000208 +74787787ns 1322431 1c000e84 00130313 addi x6, x6, 1 x6=1c009ba9 x6:1c009ba8 +74787806ns 1322432 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000207 +74787885ns 1322436 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ba9 PA:1c009ba9 +74787905ns 1322437 1c000e82 fff60613 addi x12, x12, -1 x12=00000206 x12:00000207 +74787925ns 1322438 1c000e84 00130313 addi x6, x6, 1 x6=1c009baa x6:1c009ba9 +74787945ns 1322439 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000206 +74788024ns 1322443 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009baa PA:1c009baa +74788044ns 1322444 1c000e82 fff60613 addi x12, x12, -1 x12=00000205 x12:00000206 +74788064ns 1322445 1c000e84 00130313 addi x6, x6, 1 x6=1c009bab x6:1c009baa +74788083ns 1322446 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000205 +74788163ns 1322450 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009bab PA:1c009bab +74788182ns 1322451 1c000e82 fff60613 addi x12, x12, -1 x12=00000204 x12:00000205 +74788202ns 1322452 1c000e84 00130313 addi x6, x6, 1 x6=1c009bac x6:1c009bab +74788222ns 1322453 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000204 +74788301ns 1322457 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009bac PA:1c009bac +74788321ns 1322458 1c000e82 fff60613 addi x12, x12, -1 x12=00000203 x12:00000204 +74788341ns 1322459 1c000e84 00130313 addi x6, x6, 1 x6=1c009bad x6:1c009bac +74788360ns 1322460 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000203 +74788440ns 1322464 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009bad PA:1c009bad +74788459ns 1322465 1c000e82 fff60613 addi x12, x12, -1 x12=00000202 x12:00000203 +74788479ns 1322466 1c000e84 00130313 addi x6, x6, 1 x6=1c009bae x6:1c009bad +74788499ns 1322467 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000202 +74788578ns 1322471 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009bae PA:1c009bae +74788598ns 1322472 1c000e82 fff60613 addi x12, x12, -1 x12=00000201 x12:00000202 +74788618ns 1322473 1c000e84 00130313 addi x6, x6, 1 x6=1c009baf x6:1c009bae +74788638ns 1322474 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000201 +74788717ns 1322478 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009baf PA:1c009baf +74788737ns 1322479 1c000e82 fff60613 addi x12, x12, -1 x12=00000200 x12:00000201 +74788756ns 1322480 1c000e84 00130313 addi x6, x6, 1 x6=1c009bb0 x6:1c009baf +74788776ns 1322481 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000200 +74788855ns 1322485 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009bb0 PA:1c009bb0 +74788875ns 1322486 1c000e82 fff60613 addi x12, x12, -1 x12=000001ff x12:00000200 +74788895ns 1322487 1c000e84 00130313 addi x6, x6, 1 x6=1c009bb1 x6:1c009bb0 +74788915ns 1322488 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ff +74788994ns 1322492 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009bb1 PA:1c009bb1 +74789014ns 1322493 1c000e82 fff60613 addi x12, x12, -1 x12=000001fe x12:000001ff +74789033ns 1322494 1c000e84 00130313 addi x6, x6, 1 x6=1c009bb2 x6:1c009bb1 +74789053ns 1322495 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001fe +74789132ns 1322499 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009bb2 PA:1c009bb2 +74789152ns 1322500 1c000e82 fff60613 addi x12, x12, -1 x12=000001fd x12:000001fe +74789172ns 1322501 1c000e84 00130313 addi x6, x6, 1 x6=1c009bb3 x6:1c009bb2 +74789192ns 1322502 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001fd +74789271ns 1322506 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009bb3 PA:1c009bb3 +74789291ns 1322507 1c000e82 fff60613 addi x12, x12, -1 x12=000001fc x12:000001fd +74789310ns 1322508 1c000e84 00130313 addi x6, x6, 1 x6=1c009bb4 x6:1c009bb3 +74789330ns 1322509 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001fc +74789409ns 1322513 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009bb4 PA:1c009bb4 +74789429ns 1322514 1c000e82 fff60613 addi x12, x12, -1 x12=000001fb x12:000001fc +74789449ns 1322515 1c000e84 00130313 addi x6, x6, 1 x6=1c009bb5 x6:1c009bb4 +74789469ns 1322516 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001fb +74789548ns 1322520 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009bb5 PA:1c009bb5 +74789568ns 1322521 1c000e82 fff60613 addi x12, x12, -1 x12=000001fa x12:000001fb +74789588ns 1322522 1c000e84 00130313 addi x6, x6, 1 x6=1c009bb6 x6:1c009bb5 +74789607ns 1322523 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001fa +74789687ns 1322527 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009bb6 PA:1c009bb6 +74789706ns 1322528 1c000e82 fff60613 addi x12, x12, -1 x12=000001f9 x12:000001fa +74789726ns 1322529 1c000e84 00130313 addi x6, x6, 1 x6=1c009bb7 x6:1c009bb6 +74789746ns 1322530 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001f9 +74789825ns 1322534 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009bb7 PA:1c009bb7 +74789845ns 1322535 1c000e82 fff60613 addi x12, x12, -1 x12=000001f8 x12:000001f9 +74789865ns 1322536 1c000e84 00130313 addi x6, x6, 1 x6=1c009bb8 x6:1c009bb7 +74789884ns 1322537 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001f8 +74789964ns 1322541 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009bb8 PA:1c009bb8 +74789983ns 1322542 1c000e82 fff60613 addi x12, x12, -1 x12=000001f7 x12:000001f8 +74790003ns 1322543 1c000e84 00130313 addi x6, x6, 1 x6=1c009bb9 x6:1c009bb8 +74790023ns 1322544 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001f7 +74790102ns 1322548 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009bb9 PA:1c009bb9 +74790122ns 1322549 1c000e82 fff60613 addi x12, x12, -1 x12=000001f6 x12:000001f7 +74790142ns 1322550 1c000e84 00130313 addi x6, x6, 1 x6=1c009bba x6:1c009bb9 +74790162ns 1322551 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001f6 +74790241ns 1322555 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009bba PA:1c009bba +74790261ns 1322556 1c000e82 fff60613 addi x12, x12, -1 x12=000001f5 x12:000001f6 +74790280ns 1322557 1c000e84 00130313 addi x6, x6, 1 x6=1c009bbb x6:1c009bba +74790300ns 1322558 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001f5 +74790379ns 1322562 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009bbb PA:1c009bbb +74790399ns 1322563 1c000e82 fff60613 addi x12, x12, -1 x12=000001f4 x12:000001f5 +74790419ns 1322564 1c000e84 00130313 addi x6, x6, 1 x6=1c009bbc x6:1c009bbb +74790439ns 1322565 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001f4 +74790518ns 1322569 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009bbc PA:1c009bbc +74790538ns 1322570 1c000e82 fff60613 addi x12, x12, -1 x12=000001f3 x12:000001f4 +74790557ns 1322571 1c000e84 00130313 addi x6, x6, 1 x6=1c009bbd x6:1c009bbc +74790577ns 1322572 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001f3 +74790656ns 1322576 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009bbd PA:1c009bbd +74790676ns 1322577 1c000e82 fff60613 addi x12, x12, -1 x12=000001f2 x12:000001f3 +74790696ns 1322578 1c000e84 00130313 addi x6, x6, 1 x6=1c009bbe x6:1c009bbd +74790716ns 1322579 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001f2 +74790795ns 1322583 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009bbe PA:1c009bbe +74790815ns 1322584 1c000e82 fff60613 addi x12, x12, -1 x12=000001f1 x12:000001f2 +74790834ns 1322585 1c000e84 00130313 addi x6, x6, 1 x6=1c009bbf x6:1c009bbe +74790854ns 1322586 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001f1 +74790933ns 1322590 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009bbf PA:1c009bbf +74790953ns 1322591 1c000e82 fff60613 addi x12, x12, -1 x12=000001f0 x12:000001f1 +74790973ns 1322592 1c000e84 00130313 addi x6, x6, 1 x6=1c009bc0 x6:1c009bbf +74790993ns 1322593 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001f0 +74791072ns 1322597 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009bc0 PA:1c009bc0 +74791092ns 1322598 1c000e82 fff60613 addi x12, x12, -1 x12=000001ef x12:000001f0 +74791112ns 1322599 1c000e84 00130313 addi x6, x6, 1 x6=1c009bc1 x6:1c009bc0 +74791131ns 1322600 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ef +74791211ns 1322604 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009bc1 PA:1c009bc1 +74791230ns 1322605 1c000e82 fff60613 addi x12, x12, -1 x12=000001ee x12:000001ef +74791250ns 1322606 1c000e84 00130313 addi x6, x6, 1 x6=1c009bc2 x6:1c009bc1 +74791270ns 1322607 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ee +74791349ns 1322611 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009bc2 PA:1c009bc2 +74791369ns 1322612 1c000e82 fff60613 addi x12, x12, -1 x12=000001ed x12:000001ee +74791389ns 1322613 1c000e84 00130313 addi x6, x6, 1 x6=1c009bc3 x6:1c009bc2 +74791408ns 1322614 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ed +74791488ns 1322618 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009bc3 PA:1c009bc3 +74791507ns 1322619 1c000e82 fff60613 addi x12, x12, -1 x12=000001ec x12:000001ed +74791527ns 1322620 1c000e84 00130313 addi x6, x6, 1 x6=1c009bc4 x6:1c009bc3 +74791547ns 1322621 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ec +74791626ns 1322625 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009bc4 PA:1c009bc4 +74791646ns 1322626 1c000e82 fff60613 addi x12, x12, -1 x12=000001eb x12:000001ec +74791666ns 1322627 1c000e84 00130313 addi x6, x6, 1 x6=1c009bc5 x6:1c009bc4 +74791686ns 1322628 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001eb +74791765ns 1322632 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009bc5 PA:1c009bc5 +74791784ns 1322633 1c000e82 fff60613 addi x12, x12, -1 x12=000001ea x12:000001eb +74791804ns 1322634 1c000e84 00130313 addi x6, x6, 1 x6=1c009bc6 x6:1c009bc5 +74791824ns 1322635 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ea +74791903ns 1322639 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009bc6 PA:1c009bc6 +74791923ns 1322640 1c000e82 fff60613 addi x12, x12, -1 x12=000001e9 x12:000001ea +74791943ns 1322641 1c000e84 00130313 addi x6, x6, 1 x6=1c009bc7 x6:1c009bc6 +74791963ns 1322642 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001e9 +74792042ns 1322646 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009bc7 PA:1c009bc7 +74792062ns 1322647 1c000e82 fff60613 addi x12, x12, -1 x12=000001e8 x12:000001e9 +74792081ns 1322648 1c000e84 00130313 addi x6, x6, 1 x6=1c009bc8 x6:1c009bc7 +74792101ns 1322649 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001e8 +74792180ns 1322653 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009bc8 PA:1c009bc8 +74792200ns 1322654 1c000e82 fff60613 addi x12, x12, -1 x12=000001e7 x12:000001e8 +74792220ns 1322655 1c000e84 00130313 addi x6, x6, 1 x6=1c009bc9 x6:1c009bc8 +74792240ns 1322656 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001e7 +74792319ns 1322660 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009bc9 PA:1c009bc9 +74792339ns 1322661 1c000e82 fff60613 addi x12, x12, -1 x12=000001e6 x12:000001e7 +74792358ns 1322662 1c000e84 00130313 addi x6, x6, 1 x6=1c009bca x6:1c009bc9 +74792378ns 1322663 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001e6 +74792457ns 1322667 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009bca PA:1c009bca +74792477ns 1322668 1c000e82 fff60613 addi x12, x12, -1 x12=000001e5 x12:000001e6 +74792497ns 1322669 1c000e84 00130313 addi x6, x6, 1 x6=1c009bcb x6:1c009bca +74792517ns 1322670 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001e5 +74792596ns 1322674 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009bcb PA:1c009bcb +74792616ns 1322675 1c000e82 fff60613 addi x12, x12, -1 x12=000001e4 x12:000001e5 +74792636ns 1322676 1c000e84 00130313 addi x6, x6, 1 x6=1c009bcc x6:1c009bcb +74792655ns 1322677 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001e4 +74792735ns 1322681 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009bcc PA:1c009bcc +74792754ns 1322682 1c000e82 fff60613 addi x12, x12, -1 x12=000001e3 x12:000001e4 +74792774ns 1322683 1c000e84 00130313 addi x6, x6, 1 x6=1c009bcd x6:1c009bcc +74792794ns 1322684 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001e3 +74792873ns 1322688 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009bcd PA:1c009bcd +74792893ns 1322689 1c000e82 fff60613 addi x12, x12, -1 x12=000001e2 x12:000001e3 +74792913ns 1322690 1c000e84 00130313 addi x6, x6, 1 x6=1c009bce x6:1c009bcd +74792932ns 1322691 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001e2 +74793012ns 1322695 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009bce PA:1c009bce +74793031ns 1322696 1c000e82 fff60613 addi x12, x12, -1 x12=000001e1 x12:000001e2 +74793051ns 1322697 1c000e84 00130313 addi x6, x6, 1 x6=1c009bcf x6:1c009bce +74793071ns 1322698 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001e1 +74793150ns 1322702 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009bcf PA:1c009bcf +74793170ns 1322703 1c000e82 fff60613 addi x12, x12, -1 x12=000001e0 x12:000001e1 +74793190ns 1322704 1c000e84 00130313 addi x6, x6, 1 x6=1c009bd0 x6:1c009bcf +74793210ns 1322705 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001e0 +74793289ns 1322709 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009bd0 PA:1c009bd0 +74793308ns 1322710 1c000e82 fff60613 addi x12, x12, -1 x12=000001df x12:000001e0 +74793328ns 1322711 1c000e84 00130313 addi x6, x6, 1 x6=1c009bd1 x6:1c009bd0 +74793348ns 1322712 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001df +74793427ns 1322716 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009bd1 PA:1c009bd1 +74793447ns 1322717 1c000e82 fff60613 addi x12, x12, -1 x12=000001de x12:000001df +74793467ns 1322718 1c000e84 00130313 addi x6, x6, 1 x6=1c009bd2 x6:1c009bd1 +74793487ns 1322719 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001de +74793566ns 1322723 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009bd2 PA:1c009bd2 +74793586ns 1322724 1c000e82 fff60613 addi x12, x12, -1 x12=000001dd x12:000001de +74793605ns 1322725 1c000e84 00130313 addi x6, x6, 1 x6=1c009bd3 x6:1c009bd2 +74793625ns 1322726 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001dd +74793704ns 1322730 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009bd3 PA:1c009bd3 +74793724ns 1322731 1c000e82 fff60613 addi x12, x12, -1 x12=000001dc x12:000001dd +74793744ns 1322732 1c000e84 00130313 addi x6, x6, 1 x6=1c009bd4 x6:1c009bd3 +74793764ns 1322733 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001dc +74793843ns 1322737 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009bd4 PA:1c009bd4 +74793863ns 1322738 1c000e82 fff60613 addi x12, x12, -1 x12=000001db x12:000001dc +74793882ns 1322739 1c000e84 00130313 addi x6, x6, 1 x6=1c009bd5 x6:1c009bd4 +74793902ns 1322740 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001db +74793981ns 1322744 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009bd5 PA:1c009bd5 +74794001ns 1322745 1c000e82 fff60613 addi x12, x12, -1 x12=000001da x12:000001db +74794021ns 1322746 1c000e84 00130313 addi x6, x6, 1 x6=1c009bd6 x6:1c009bd5 +74794041ns 1322747 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001da +74794120ns 1322751 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009bd6 PA:1c009bd6 +74794140ns 1322752 1c000e82 fff60613 addi x12, x12, -1 x12=000001d9 x12:000001da +74794160ns 1322753 1c000e84 00130313 addi x6, x6, 1 x6=1c009bd7 x6:1c009bd6 +74794179ns 1322754 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001d9 +74794258ns 1322758 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009bd7 PA:1c009bd7 +74794278ns 1322759 1c000e82 fff60613 addi x12, x12, -1 x12=000001d8 x12:000001d9 +74794298ns 1322760 1c000e84 00130313 addi x6, x6, 1 x6=1c009bd8 x6:1c009bd7 +74794318ns 1322761 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001d8 +74794397ns 1322765 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009bd8 PA:1c009bd8 +74794417ns 1322766 1c000e82 fff60613 addi x12, x12, -1 x12=000001d7 x12:000001d8 +74794437ns 1322767 1c000e84 00130313 addi x6, x6, 1 x6=1c009bd9 x6:1c009bd8 +74794456ns 1322768 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001d7 +74794536ns 1322772 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009bd9 PA:1c009bd9 +74794555ns 1322773 1c000e82 fff60613 addi x12, x12, -1 x12=000001d6 x12:000001d7 +74794575ns 1322774 1c000e84 00130313 addi x6, x6, 1 x6=1c009bda x6:1c009bd9 +74794595ns 1322775 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001d6 +74794674ns 1322779 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009bda PA:1c009bda +74794694ns 1322780 1c000e82 fff60613 addi x12, x12, -1 x12=000001d5 x12:000001d6 +74794714ns 1322781 1c000e84 00130313 addi x6, x6, 1 x6=1c009bdb x6:1c009bda +74794733ns 1322782 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001d5 +74794813ns 1322786 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009bdb PA:1c009bdb +74794832ns 1322787 1c000e82 fff60613 addi x12, x12, -1 x12=000001d4 x12:000001d5 +74794852ns 1322788 1c000e84 00130313 addi x6, x6, 1 x6=1c009bdc x6:1c009bdb +74794872ns 1322789 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001d4 +74794951ns 1322793 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009bdc PA:1c009bdc +74794971ns 1322794 1c000e82 fff60613 addi x12, x12, -1 x12=000001d3 x12:000001d4 +74794991ns 1322795 1c000e84 00130313 addi x6, x6, 1 x6=1c009bdd x6:1c009bdc +74795011ns 1322796 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001d3 +74795090ns 1322800 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009bdd PA:1c009bdd +74795110ns 1322801 1c000e82 fff60613 addi x12, x12, -1 x12=000001d2 x12:000001d3 +74795129ns 1322802 1c000e84 00130313 addi x6, x6, 1 x6=1c009bde x6:1c009bdd +74795149ns 1322803 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001d2 +74795228ns 1322807 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009bde PA:1c009bde +74795248ns 1322808 1c000e82 fff60613 addi x12, x12, -1 x12=000001d1 x12:000001d2 +74795268ns 1322809 1c000e84 00130313 addi x6, x6, 1 x6=1c009bdf x6:1c009bde +74795288ns 1322810 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001d1 +74795367ns 1322814 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009bdf PA:1c009bdf +74795387ns 1322815 1c000e82 fff60613 addi x12, x12, -1 x12=000001d0 x12:000001d1 +74795406ns 1322816 1c000e84 00130313 addi x6, x6, 1 x6=1c009be0 x6:1c009bdf +74795426ns 1322817 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001d0 +74795505ns 1322821 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009be0 PA:1c009be0 +74795525ns 1322822 1c000e82 fff60613 addi x12, x12, -1 x12=000001cf x12:000001d0 +74795545ns 1322823 1c000e84 00130313 addi x6, x6, 1 x6=1c009be1 x6:1c009be0 +74795565ns 1322824 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001cf +74795644ns 1322828 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009be1 PA:1c009be1 +74795664ns 1322829 1c000e82 fff60613 addi x12, x12, -1 x12=000001ce x12:000001cf +74795684ns 1322830 1c000e84 00130313 addi x6, x6, 1 x6=1c009be2 x6:1c009be1 +74795703ns 1322831 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ce +74795782ns 1322835 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009be2 PA:1c009be2 +74795802ns 1322836 1c000e82 fff60613 addi x12, x12, -1 x12=000001cd x12:000001ce +74795822ns 1322837 1c000e84 00130313 addi x6, x6, 1 x6=1c009be3 x6:1c009be2 +74795842ns 1322838 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001cd +74795921ns 1322842 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009be3 PA:1c009be3 +74795941ns 1322843 1c000e82 fff60613 addi x12, x12, -1 x12=000001cc x12:000001cd +74795961ns 1322844 1c000e84 00130313 addi x6, x6, 1 x6=1c009be4 x6:1c009be3 +74795980ns 1322845 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001cc +74796060ns 1322849 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009be4 PA:1c009be4 +74796079ns 1322850 1c000e82 fff60613 addi x12, x12, -1 x12=000001cb x12:000001cc +74796099ns 1322851 1c000e84 00130313 addi x6, x6, 1 x6=1c009be5 x6:1c009be4 +74796119ns 1322852 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001cb +74796198ns 1322856 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009be5 PA:1c009be5 +74796218ns 1322857 1c000e82 fff60613 addi x12, x12, -1 x12=000001ca x12:000001cb +74796238ns 1322858 1c000e84 00130313 addi x6, x6, 1 x6=1c009be6 x6:1c009be5 +74796257ns 1322859 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ca +74796337ns 1322863 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009be6 PA:1c009be6 +74796356ns 1322864 1c000e82 fff60613 addi x12, x12, -1 x12=000001c9 x12:000001ca +74796376ns 1322865 1c000e84 00130313 addi x6, x6, 1 x6=1c009be7 x6:1c009be6 +74796396ns 1322866 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001c9 +74796475ns 1322870 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009be7 PA:1c009be7 +74796495ns 1322871 1c000e82 fff60613 addi x12, x12, -1 x12=000001c8 x12:000001c9 +74796515ns 1322872 1c000e84 00130313 addi x6, x6, 1 x6=1c009be8 x6:1c009be7 +74796535ns 1322873 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001c8 +74796614ns 1322877 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009be8 PA:1c009be8 +74796634ns 1322878 1c000e82 fff60613 addi x12, x12, -1 x12=000001c7 x12:000001c8 +74796653ns 1322879 1c000e84 00130313 addi x6, x6, 1 x6=1c009be9 x6:1c009be8 +74796673ns 1322880 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001c7 +74796752ns 1322884 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009be9 PA:1c009be9 +74796772ns 1322885 1c000e82 fff60613 addi x12, x12, -1 x12=000001c6 x12:000001c7 +74796792ns 1322886 1c000e84 00130313 addi x6, x6, 1 x6=1c009bea x6:1c009be9 +74796812ns 1322887 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001c6 +74796891ns 1322891 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009bea PA:1c009bea +74796911ns 1322892 1c000e82 fff60613 addi x12, x12, -1 x12=000001c5 x12:000001c6 +74796930ns 1322893 1c000e84 00130313 addi x6, x6, 1 x6=1c009beb x6:1c009bea +74796950ns 1322894 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001c5 +74797029ns 1322898 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009beb PA:1c009beb +74797049ns 1322899 1c000e82 fff60613 addi x12, x12, -1 x12=000001c4 x12:000001c5 +74797069ns 1322900 1c000e84 00130313 addi x6, x6, 1 x6=1c009bec x6:1c009beb +74797089ns 1322901 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001c4 +74797168ns 1322905 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009bec PA:1c009bec +74797188ns 1322906 1c000e82 fff60613 addi x12, x12, -1 x12=000001c3 x12:000001c4 +74797207ns 1322907 1c000e84 00130313 addi x6, x6, 1 x6=1c009bed x6:1c009bec +74797227ns 1322908 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001c3 +74797306ns 1322912 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009bed PA:1c009bed +74797326ns 1322913 1c000e82 fff60613 addi x12, x12, -1 x12=000001c2 x12:000001c3 +74797346ns 1322914 1c000e84 00130313 addi x6, x6, 1 x6=1c009bee x6:1c009bed +74797366ns 1322915 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001c2 +74797445ns 1322919 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009bee PA:1c009bee +74797465ns 1322920 1c000e82 fff60613 addi x12, x12, -1 x12=000001c1 x12:000001c2 +74797485ns 1322921 1c000e84 00130313 addi x6, x6, 1 x6=1c009bef x6:1c009bee +74797504ns 1322922 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001c1 +74797584ns 1322926 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009bef PA:1c009bef +74797603ns 1322927 1c000e82 fff60613 addi x12, x12, -1 x12=000001c0 x12:000001c1 +74797623ns 1322928 1c000e84 00130313 addi x6, x6, 1 x6=1c009bf0 x6:1c009bef +74797643ns 1322929 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001c0 +74797722ns 1322933 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009bf0 PA:1c009bf0 +74797742ns 1322934 1c000e82 fff60613 addi x12, x12, -1 x12=000001bf x12:000001c0 +74797762ns 1322935 1c000e84 00130313 addi x6, x6, 1 x6=1c009bf1 x6:1c009bf0 +74797781ns 1322936 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001bf +74797861ns 1322940 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009bf1 PA:1c009bf1 +74797880ns 1322941 1c000e82 fff60613 addi x12, x12, -1 x12=000001be x12:000001bf +74797900ns 1322942 1c000e84 00130313 addi x6, x6, 1 x6=1c009bf2 x6:1c009bf1 +74797920ns 1322943 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001be +74797999ns 1322947 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009bf2 PA:1c009bf2 +74798019ns 1322948 1c000e82 fff60613 addi x12, x12, -1 x12=000001bd x12:000001be +74798039ns 1322949 1c000e84 00130313 addi x6, x6, 1 x6=1c009bf3 x6:1c009bf2 +74798059ns 1322950 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001bd +74798138ns 1322954 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009bf3 PA:1c009bf3 +74798158ns 1322955 1c000e82 fff60613 addi x12, x12, -1 x12=000001bc x12:000001bd +74798177ns 1322956 1c000e84 00130313 addi x6, x6, 1 x6=1c009bf4 x6:1c009bf3 +74798197ns 1322957 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001bc +74798276ns 1322961 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009bf4 PA:1c009bf4 +74798296ns 1322962 1c000e82 fff60613 addi x12, x12, -1 x12=000001bb x12:000001bc +74798316ns 1322963 1c000e84 00130313 addi x6, x6, 1 x6=1c009bf5 x6:1c009bf4 +74798336ns 1322964 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001bb +74798415ns 1322968 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009bf5 PA:1c009bf5 +74798435ns 1322969 1c000e82 fff60613 addi x12, x12, -1 x12=000001ba x12:000001bb +74798454ns 1322970 1c000e84 00130313 addi x6, x6, 1 x6=1c009bf6 x6:1c009bf5 +74798474ns 1322971 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ba +74798553ns 1322975 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009bf6 PA:1c009bf6 +74798573ns 1322976 1c000e82 fff60613 addi x12, x12, -1 x12=000001b9 x12:000001ba +74798593ns 1322977 1c000e84 00130313 addi x6, x6, 1 x6=1c009bf7 x6:1c009bf6 +74798613ns 1322978 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001b9 +74798692ns 1322982 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009bf7 PA:1c009bf7 +74798712ns 1322983 1c000e82 fff60613 addi x12, x12, -1 x12=000001b8 x12:000001b9 +74798731ns 1322984 1c000e84 00130313 addi x6, x6, 1 x6=1c009bf8 x6:1c009bf7 +74798751ns 1322985 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001b8 +74798830ns 1322989 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009bf8 PA:1c009bf8 +74798850ns 1322990 1c000e82 fff60613 addi x12, x12, -1 x12=000001b7 x12:000001b8 +74798870ns 1322991 1c000e84 00130313 addi x6, x6, 1 x6=1c009bf9 x6:1c009bf8 +74798890ns 1322992 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001b7 +74798969ns 1322996 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009bf9 PA:1c009bf9 +74798989ns 1322997 1c000e82 fff60613 addi x12, x12, -1 x12=000001b6 x12:000001b7 +74799009ns 1322998 1c000e84 00130313 addi x6, x6, 1 x6=1c009bfa x6:1c009bf9 +74799028ns 1322999 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001b6 +74799108ns 1323003 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009bfa PA:1c009bfa +74799127ns 1323004 1c000e82 fff60613 addi x12, x12, -1 x12=000001b5 x12:000001b6 +74799147ns 1323005 1c000e84 00130313 addi x6, x6, 1 x6=1c009bfb x6:1c009bfa +74799167ns 1323006 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001b5 +74799246ns 1323010 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009bfb PA:1c009bfb +74799266ns 1323011 1c000e82 fff60613 addi x12, x12, -1 x12=000001b4 x12:000001b5 +74799286ns 1323012 1c000e84 00130313 addi x6, x6, 1 x6=1c009bfc x6:1c009bfb +74799305ns 1323013 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001b4 +74799385ns 1323017 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009bfc PA:1c009bfc +74799404ns 1323018 1c000e82 fff60613 addi x12, x12, -1 x12=000001b3 x12:000001b4 +74799424ns 1323019 1c000e84 00130313 addi x6, x6, 1 x6=1c009bfd x6:1c009bfc +74799444ns 1323020 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001b3 +74799523ns 1323024 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009bfd PA:1c009bfd +74799543ns 1323025 1c000e82 fff60613 addi x12, x12, -1 x12=000001b2 x12:000001b3 +74799563ns 1323026 1c000e84 00130313 addi x6, x6, 1 x6=1c009bfe x6:1c009bfd +74799583ns 1323027 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001b2 +74799662ns 1323031 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009bfe PA:1c009bfe +74799681ns 1323032 1c000e82 fff60613 addi x12, x12, -1 x12=000001b1 x12:000001b2 +74799701ns 1323033 1c000e84 00130313 addi x6, x6, 1 x6=1c009bff x6:1c009bfe +74799721ns 1323034 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001b1 +74799800ns 1323038 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009bff PA:1c009bff +74799820ns 1323039 1c000e82 fff60613 addi x12, x12, -1 x12=000001b0 x12:000001b1 +74799840ns 1323040 1c000e84 00130313 addi x6, x6, 1 x6=1c009c00 x6:1c009bff +74799860ns 1323041 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001b0 +74799939ns 1323045 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c00 PA:1c009c00 +74799959ns 1323046 1c000e82 fff60613 addi x12, x12, -1 x12=000001af x12:000001b0 +74799978ns 1323047 1c000e84 00130313 addi x6, x6, 1 x6=1c009c01 x6:1c009c00 +74799998ns 1323048 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001af +74800077ns 1323052 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c01 PA:1c009c01 +74800097ns 1323053 1c000e82 fff60613 addi x12, x12, -1 x12=000001ae x12:000001af +74800117ns 1323054 1c000e84 00130313 addi x6, x6, 1 x6=1c009c02 x6:1c009c01 +74800137ns 1323055 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ae +74800216ns 1323059 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c02 PA:1c009c02 +74800236ns 1323060 1c000e82 fff60613 addi x12, x12, -1 x12=000001ad x12:000001ae +74800255ns 1323061 1c000e84 00130313 addi x6, x6, 1 x6=1c009c03 x6:1c009c02 +74800275ns 1323062 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ad +74800354ns 1323066 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c03 PA:1c009c03 +74800374ns 1323067 1c000e82 fff60613 addi x12, x12, -1 x12=000001ac x12:000001ad +74800394ns 1323068 1c000e84 00130313 addi x6, x6, 1 x6=1c009c04 x6:1c009c03 +74800414ns 1323069 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ac +74800493ns 1323073 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c04 PA:1c009c04 +74800513ns 1323074 1c000e82 fff60613 addi x12, x12, -1 x12=000001ab x12:000001ac +74800533ns 1323075 1c000e84 00130313 addi x6, x6, 1 x6=1c009c05 x6:1c009c04 +74800552ns 1323076 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ab +74800632ns 1323080 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c05 PA:1c009c05 +74800651ns 1323081 1c000e82 fff60613 addi x12, x12, -1 x12=000001aa x12:000001ab +74800671ns 1323082 1c000e84 00130313 addi x6, x6, 1 x6=1c009c06 x6:1c009c05 +74800691ns 1323083 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001aa +74800770ns 1323087 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c06 PA:1c009c06 +74800790ns 1323088 1c000e82 fff60613 addi x12, x12, -1 x12=000001a9 x12:000001aa +74800810ns 1323089 1c000e84 00130313 addi x6, x6, 1 x6=1c009c07 x6:1c009c06 +74800829ns 1323090 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001a9 +74800909ns 1323094 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c07 PA:1c009c07 +74800928ns 1323095 1c000e82 fff60613 addi x12, x12, -1 x12=000001a8 x12:000001a9 +74800948ns 1323096 1c000e84 00130313 addi x6, x6, 1 x6=1c009c08 x6:1c009c07 +74800968ns 1323097 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001a8 +74801047ns 1323101 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c08 PA:1c009c08 +74801067ns 1323102 1c000e82 fff60613 addi x12, x12, -1 x12=000001a7 x12:000001a8 +74801087ns 1323103 1c000e84 00130313 addi x6, x6, 1 x6=1c009c09 x6:1c009c08 +74801107ns 1323104 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001a7 +74801186ns 1323108 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c09 PA:1c009c09 +74801205ns 1323109 1c000e82 fff60613 addi x12, x12, -1 x12=000001a6 x12:000001a7 +74801225ns 1323110 1c000e84 00130313 addi x6, x6, 1 x6=1c009c0a x6:1c009c09 +74801245ns 1323111 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001a6 +74801324ns 1323115 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c0a PA:1c009c0a +74801344ns 1323116 1c000e82 fff60613 addi x12, x12, -1 x12=000001a5 x12:000001a6 +74801364ns 1323117 1c000e84 00130313 addi x6, x6, 1 x6=1c009c0b x6:1c009c0a +74801384ns 1323118 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001a5 +74801463ns 1323122 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c0b PA:1c009c0b +74801483ns 1323123 1c000e82 fff60613 addi x12, x12, -1 x12=000001a4 x12:000001a5 +74801502ns 1323124 1c000e84 00130313 addi x6, x6, 1 x6=1c009c0c x6:1c009c0b +74801522ns 1323125 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001a4 +74801601ns 1323129 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c0c PA:1c009c0c +74801621ns 1323130 1c000e82 fff60613 addi x12, x12, -1 x12=000001a3 x12:000001a4 +74801641ns 1323131 1c000e84 00130313 addi x6, x6, 1 x6=1c009c0d x6:1c009c0c +74801661ns 1323132 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001a3 +74801740ns 1323136 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c0d PA:1c009c0d +74801760ns 1323137 1c000e82 fff60613 addi x12, x12, -1 x12=000001a2 x12:000001a3 +74801779ns 1323138 1c000e84 00130313 addi x6, x6, 1 x6=1c009c0e x6:1c009c0d +74801799ns 1323139 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001a2 +74801878ns 1323143 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c0e PA:1c009c0e +74801898ns 1323144 1c000e82 fff60613 addi x12, x12, -1 x12=000001a1 x12:000001a2 +74801918ns 1323145 1c000e84 00130313 addi x6, x6, 1 x6=1c009c0f x6:1c009c0e +74801938ns 1323146 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001a1 +74802017ns 1323150 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c0f PA:1c009c0f +74802037ns 1323151 1c000e82 fff60613 addi x12, x12, -1 x12=000001a0 x12:000001a1 +74802057ns 1323152 1c000e84 00130313 addi x6, x6, 1 x6=1c009c10 x6:1c009c0f +74802076ns 1323153 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001a0 +74802155ns 1323157 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c10 PA:1c009c10 +74802175ns 1323158 1c000e82 fff60613 addi x12, x12, -1 x12=0000019f x12:000001a0 +74802195ns 1323159 1c000e84 00130313 addi x6, x6, 1 x6=1c009c11 x6:1c009c10 +74802215ns 1323160 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000019f +74802294ns 1323164 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c11 PA:1c009c11 +74802314ns 1323165 1c000e82 fff60613 addi x12, x12, -1 x12=0000019e x12:0000019f +74802334ns 1323166 1c000e84 00130313 addi x6, x6, 1 x6=1c009c12 x6:1c009c11 +74802353ns 1323167 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000019e +74802433ns 1323171 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c12 PA:1c009c12 +74802452ns 1323172 1c000e82 fff60613 addi x12, x12, -1 x12=0000019d x12:0000019e +74802472ns 1323173 1c000e84 00130313 addi x6, x6, 1 x6=1c009c13 x6:1c009c12 +74802492ns 1323174 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000019d +74802571ns 1323178 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c13 PA:1c009c13 +74802591ns 1323179 1c000e82 fff60613 addi x12, x12, -1 x12=0000019c x12:0000019d +74802611ns 1323180 1c000e84 00130313 addi x6, x6, 1 x6=1c009c14 x6:1c009c13 +74802631ns 1323181 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000019c +74802710ns 1323185 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c14 PA:1c009c14 +74802729ns 1323186 1c000e82 fff60613 addi x12, x12, -1 x12=0000019b x12:0000019c +74802749ns 1323187 1c000e84 00130313 addi x6, x6, 1 x6=1c009c15 x6:1c009c14 +74802769ns 1323188 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000019b +74802848ns 1323192 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c15 PA:1c009c15 +74802868ns 1323193 1c000e82 fff60613 addi x12, x12, -1 x12=0000019a x12:0000019b +74802888ns 1323194 1c000e84 00130313 addi x6, x6, 1 x6=1c009c16 x6:1c009c15 +74802908ns 1323195 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000019a +74802987ns 1323199 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c16 PA:1c009c16 +74803007ns 1323200 1c000e82 fff60613 addi x12, x12, -1 x12=00000199 x12:0000019a +74803026ns 1323201 1c000e84 00130313 addi x6, x6, 1 x6=1c009c17 x6:1c009c16 +74803046ns 1323202 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000199 +74803125ns 1323206 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c17 PA:1c009c17 +74803145ns 1323207 1c000e82 fff60613 addi x12, x12, -1 x12=00000198 x12:00000199 +74803165ns 1323208 1c000e84 00130313 addi x6, x6, 1 x6=1c009c18 x6:1c009c17 +74803185ns 1323209 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000198 +74803264ns 1323213 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c18 PA:1c009c18 +74803284ns 1323214 1c000e82 fff60613 addi x12, x12, -1 x12=00000197 x12:00000198 +74803303ns 1323215 1c000e84 00130313 addi x6, x6, 1 x6=1c009c19 x6:1c009c18 +74803323ns 1323216 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000197 +74803402ns 1323220 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c19 PA:1c009c19 +74803422ns 1323221 1c000e82 fff60613 addi x12, x12, -1 x12=00000196 x12:00000197 +74803442ns 1323222 1c000e84 00130313 addi x6, x6, 1 x6=1c009c1a x6:1c009c19 +74803462ns 1323223 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000196 +74803541ns 1323227 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c1a PA:1c009c1a +74803561ns 1323228 1c000e82 fff60613 addi x12, x12, -1 x12=00000195 x12:00000196 +74803581ns 1323229 1c000e84 00130313 addi x6, x6, 1 x6=1c009c1b x6:1c009c1a +74803600ns 1323230 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000195 +74803679ns 1323234 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c1b PA:1c009c1b +74803699ns 1323235 1c000e82 fff60613 addi x12, x12, -1 x12=00000194 x12:00000195 +74803719ns 1323236 1c000e84 00130313 addi x6, x6, 1 x6=1c009c1c x6:1c009c1b +74803739ns 1323237 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000194 +74803818ns 1323241 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c1c PA:1c009c1c +74803838ns 1323242 1c000e82 fff60613 addi x12, x12, -1 x12=00000193 x12:00000194 +74803858ns 1323243 1c000e84 00130313 addi x6, x6, 1 x6=1c009c1d x6:1c009c1c +74803877ns 1323244 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000193 +74803957ns 1323248 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c1d PA:1c009c1d +74803976ns 1323249 1c000e82 fff60613 addi x12, x12, -1 x12=00000192 x12:00000193 +74803996ns 1323250 1c000e84 00130313 addi x6, x6, 1 x6=1c009c1e x6:1c009c1d +74804016ns 1323251 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000192 +74804095ns 1323255 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c1e PA:1c009c1e +74804115ns 1323256 1c000e82 fff60613 addi x12, x12, -1 x12=00000191 x12:00000192 +74804135ns 1323257 1c000e84 00130313 addi x6, x6, 1 x6=1c009c1f x6:1c009c1e +74804154ns 1323258 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000191 +74804234ns 1323262 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c1f PA:1c009c1f +74804253ns 1323263 1c000e82 fff60613 addi x12, x12, -1 x12=00000190 x12:00000191 +74804273ns 1323264 1c000e84 00130313 addi x6, x6, 1 x6=1c009c20 x6:1c009c1f +74804293ns 1323265 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000190 +74804372ns 1323269 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c20 PA:1c009c20 +74804392ns 1323270 1c000e82 fff60613 addi x12, x12, -1 x12=0000018f x12:00000190 +74804412ns 1323271 1c000e84 00130313 addi x6, x6, 1 x6=1c009c21 x6:1c009c20 +74804432ns 1323272 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000018f +74804511ns 1323276 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c21 PA:1c009c21 +74804531ns 1323277 1c000e82 fff60613 addi x12, x12, -1 x12=0000018e x12:0000018f +74804550ns 1323278 1c000e84 00130313 addi x6, x6, 1 x6=1c009c22 x6:1c009c21 +74804570ns 1323279 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000018e +74804649ns 1323283 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c22 PA:1c009c22 +74804669ns 1323284 1c000e82 fff60613 addi x12, x12, -1 x12=0000018d x12:0000018e +74804689ns 1323285 1c000e84 00130313 addi x6, x6, 1 x6=1c009c23 x6:1c009c22 +74804709ns 1323286 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000018d +74804788ns 1323290 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c23 PA:1c009c23 +74804808ns 1323291 1c000e82 fff60613 addi x12, x12, -1 x12=0000018c x12:0000018d +74804827ns 1323292 1c000e84 00130313 addi x6, x6, 1 x6=1c009c24 x6:1c009c23 +74804847ns 1323293 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000018c +74804926ns 1323297 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c24 PA:1c009c24 +74804946ns 1323298 1c000e82 fff60613 addi x12, x12, -1 x12=0000018b x12:0000018c +74804966ns 1323299 1c000e84 00130313 addi x6, x6, 1 x6=1c009c25 x6:1c009c24 +74804986ns 1323300 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000018b +74805065ns 1323304 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c25 PA:1c009c25 +74805085ns 1323305 1c000e82 fff60613 addi x12, x12, -1 x12=0000018a x12:0000018b +74805105ns 1323306 1c000e84 00130313 addi x6, x6, 1 x6=1c009c26 x6:1c009c25 +74805124ns 1323307 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000018a +74805203ns 1323311 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c26 PA:1c009c26 +74805223ns 1323312 1c000e82 fff60613 addi x12, x12, -1 x12=00000189 x12:0000018a +74805243ns 1323313 1c000e84 00130313 addi x6, x6, 1 x6=1c009c27 x6:1c009c26 +74805263ns 1323314 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000189 +74805342ns 1323318 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c27 PA:1c009c27 +74805362ns 1323319 1c000e82 fff60613 addi x12, x12, -1 x12=00000188 x12:00000189 +74805382ns 1323320 1c000e84 00130313 addi x6, x6, 1 x6=1c009c28 x6:1c009c27 +74805401ns 1323321 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000188 +74805481ns 1323325 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c28 PA:1c009c28 +74805500ns 1323326 1c000e82 fff60613 addi x12, x12, -1 x12=00000187 x12:00000188 +74805520ns 1323327 1c000e84 00130313 addi x6, x6, 1 x6=1c009c29 x6:1c009c28 +74805540ns 1323328 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000187 +74805619ns 1323332 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c29 PA:1c009c29 +74805639ns 1323333 1c000e82 fff60613 addi x12, x12, -1 x12=00000186 x12:00000187 +74805659ns 1323334 1c000e84 00130313 addi x6, x6, 1 x6=1c009c2a x6:1c009c29 +74805678ns 1323335 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000186 +74805758ns 1323339 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c2a PA:1c009c2a +74805777ns 1323340 1c000e82 fff60613 addi x12, x12, -1 x12=00000185 x12:00000186 +74805797ns 1323341 1c000e84 00130313 addi x6, x6, 1 x6=1c009c2b x6:1c009c2a +74805817ns 1323342 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000185 +74805896ns 1323346 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c2b PA:1c009c2b +74805916ns 1323347 1c000e82 fff60613 addi x12, x12, -1 x12=00000184 x12:00000185 +74805936ns 1323348 1c000e84 00130313 addi x6, x6, 1 x6=1c009c2c x6:1c009c2b +74805956ns 1323349 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000184 +74806035ns 1323353 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c2c PA:1c009c2c +74806055ns 1323354 1c000e82 fff60613 addi x12, x12, -1 x12=00000183 x12:00000184 +74806074ns 1323355 1c000e84 00130313 addi x6, x6, 1 x6=1c009c2d x6:1c009c2c +74806094ns 1323356 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000183 +74806173ns 1323360 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c2d PA:1c009c2d +74806193ns 1323361 1c000e82 fff60613 addi x12, x12, -1 x12=00000182 x12:00000183 +74806213ns 1323362 1c000e84 00130313 addi x6, x6, 1 x6=1c009c2e x6:1c009c2d +74806233ns 1323363 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000182 +74806312ns 1323367 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c2e PA:1c009c2e +74806332ns 1323368 1c000e82 fff60613 addi x12, x12, -1 x12=00000181 x12:00000182 +74806351ns 1323369 1c000e84 00130313 addi x6, x6, 1 x6=1c009c2f x6:1c009c2e +74806371ns 1323370 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000181 +74806450ns 1323374 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c2f PA:1c009c2f +74806470ns 1323375 1c000e82 fff60613 addi x12, x12, -1 x12=00000180 x12:00000181 +74806490ns 1323376 1c000e84 00130313 addi x6, x6, 1 x6=1c009c30 x6:1c009c2f +74806510ns 1323377 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000180 +74806589ns 1323381 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c30 PA:1c009c30 +74806609ns 1323382 1c000e82 fff60613 addi x12, x12, -1 x12=0000017f x12:00000180 +74806628ns 1323383 1c000e84 00130313 addi x6, x6, 1 x6=1c009c31 x6:1c009c30 +74806648ns 1323384 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000017f +74806727ns 1323388 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c31 PA:1c009c31 +74806747ns 1323389 1c000e82 fff60613 addi x12, x12, -1 x12=0000017e x12:0000017f +74806767ns 1323390 1c000e84 00130313 addi x6, x6, 1 x6=1c009c32 x6:1c009c31 +74806787ns 1323391 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000017e +74806866ns 1323395 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c32 PA:1c009c32 +74806886ns 1323396 1c000e82 fff60613 addi x12, x12, -1 x12=0000017d x12:0000017e +74806906ns 1323397 1c000e84 00130313 addi x6, x6, 1 x6=1c009c33 x6:1c009c32 +74806925ns 1323398 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000017d +74807005ns 1323402 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c33 PA:1c009c33 +74807024ns 1323403 1c000e82 fff60613 addi x12, x12, -1 x12=0000017c x12:0000017d +74807044ns 1323404 1c000e84 00130313 addi x6, x6, 1 x6=1c009c34 x6:1c009c33 +74807064ns 1323405 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000017c +74807143ns 1323409 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c34 PA:1c009c34 +74807163ns 1323410 1c000e82 fff60613 addi x12, x12, -1 x12=0000017b x12:0000017c +74807183ns 1323411 1c000e84 00130313 addi x6, x6, 1 x6=1c009c35 x6:1c009c34 +74807202ns 1323412 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000017b +74807282ns 1323416 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c35 PA:1c009c35 +74807301ns 1323417 1c000e82 fff60613 addi x12, x12, -1 x12=0000017a x12:0000017b +74807321ns 1323418 1c000e84 00130313 addi x6, x6, 1 x6=1c009c36 x6:1c009c35 +74807341ns 1323419 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000017a +74807420ns 1323423 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c36 PA:1c009c36 +74807440ns 1323424 1c000e82 fff60613 addi x12, x12, -1 x12=00000179 x12:0000017a +74807460ns 1323425 1c000e84 00130313 addi x6, x6, 1 x6=1c009c37 x6:1c009c36 +74807480ns 1323426 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000179 +74807559ns 1323430 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c37 PA:1c009c37 +74807579ns 1323431 1c000e82 fff60613 addi x12, x12, -1 x12=00000178 x12:00000179 +74807598ns 1323432 1c000e84 00130313 addi x6, x6, 1 x6=1c009c38 x6:1c009c37 +74807618ns 1323433 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000178 +74807697ns 1323437 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c38 PA:1c009c38 +74807717ns 1323438 1c000e82 fff60613 addi x12, x12, -1 x12=00000177 x12:00000178 +74807737ns 1323439 1c000e84 00130313 addi x6, x6, 1 x6=1c009c39 x6:1c009c38 +74807757ns 1323440 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000177 +74807836ns 1323444 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c39 PA:1c009c39 +74807856ns 1323445 1c000e82 fff60613 addi x12, x12, -1 x12=00000176 x12:00000177 +74807875ns 1323446 1c000e84 00130313 addi x6, x6, 1 x6=1c009c3a x6:1c009c39 +74807895ns 1323447 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000176 +74807974ns 1323451 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c3a PA:1c009c3a +74807994ns 1323452 1c000e82 fff60613 addi x12, x12, -1 x12=00000175 x12:00000176 +74808014ns 1323453 1c000e84 00130313 addi x6, x6, 1 x6=1c009c3b x6:1c009c3a +74808034ns 1323454 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000175 +74808113ns 1323458 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c3b PA:1c009c3b +74808133ns 1323459 1c000e82 fff60613 addi x12, x12, -1 x12=00000174 x12:00000175 +74808152ns 1323460 1c000e84 00130313 addi x6, x6, 1 x6=1c009c3c x6:1c009c3b +74808172ns 1323461 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000174 +74808251ns 1323465 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c3c PA:1c009c3c +74808271ns 1323466 1c000e82 fff60613 addi x12, x12, -1 x12=00000173 x12:00000174 +74808291ns 1323467 1c000e84 00130313 addi x6, x6, 1 x6=1c009c3d x6:1c009c3c +74808311ns 1323468 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000173 +74808390ns 1323472 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c3d PA:1c009c3d +74808410ns 1323473 1c000e82 fff60613 addi x12, x12, -1 x12=00000172 x12:00000173 +74808430ns 1323474 1c000e84 00130313 addi x6, x6, 1 x6=1c009c3e x6:1c009c3d +74808449ns 1323475 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000172 +74808529ns 1323479 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c3e PA:1c009c3e +74808548ns 1323480 1c000e82 fff60613 addi x12, x12, -1 x12=00000171 x12:00000172 +74808568ns 1323481 1c000e84 00130313 addi x6, x6, 1 x6=1c009c3f x6:1c009c3e +74808588ns 1323482 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000171 +74808667ns 1323486 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c3f PA:1c009c3f +74808687ns 1323487 1c000e82 fff60613 addi x12, x12, -1 x12=00000170 x12:00000171 +74808707ns 1323488 1c000e84 00130313 addi x6, x6, 1 x6=1c009c40 x6:1c009c3f +74808726ns 1323489 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000170 +74808806ns 1323493 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c40 PA:1c009c40 +74808825ns 1323494 1c000e82 fff60613 addi x12, x12, -1 x12=0000016f x12:00000170 +74808845ns 1323495 1c000e84 00130313 addi x6, x6, 1 x6=1c009c41 x6:1c009c40 +74808865ns 1323496 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000016f +74808944ns 1323500 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c41 PA:1c009c41 +74808964ns 1323501 1c000e82 fff60613 addi x12, x12, -1 x12=0000016e x12:0000016f +74808984ns 1323502 1c000e84 00130313 addi x6, x6, 1 x6=1c009c42 x6:1c009c41 +74809004ns 1323503 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000016e +74809083ns 1323507 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c42 PA:1c009c42 +74809102ns 1323508 1c000e82 fff60613 addi x12, x12, -1 x12=0000016d x12:0000016e +74809122ns 1323509 1c000e84 00130313 addi x6, x6, 1 x6=1c009c43 x6:1c009c42 +74809142ns 1323510 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000016d +74809221ns 1323514 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c43 PA:1c009c43 +74809241ns 1323515 1c000e82 fff60613 addi x12, x12, -1 x12=0000016c x12:0000016d +74809261ns 1323516 1c000e84 00130313 addi x6, x6, 1 x6=1c009c44 x6:1c009c43 +74809281ns 1323517 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000016c +74809360ns 1323521 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c44 PA:1c009c44 +74809380ns 1323522 1c000e82 fff60613 addi x12, x12, -1 x12=0000016b x12:0000016c +74809399ns 1323523 1c000e84 00130313 addi x6, x6, 1 x6=1c009c45 x6:1c009c44 +74809419ns 1323524 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000016b +74809498ns 1323528 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c45 PA:1c009c45 +74809518ns 1323529 1c000e82 fff60613 addi x12, x12, -1 x12=0000016a x12:0000016b +74809538ns 1323530 1c000e84 00130313 addi x6, x6, 1 x6=1c009c46 x6:1c009c45 +74809558ns 1323531 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000016a +74809637ns 1323535 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c46 PA:1c009c46 +74809657ns 1323536 1c000e82 fff60613 addi x12, x12, -1 x12=00000169 x12:0000016a +74809676ns 1323537 1c000e84 00130313 addi x6, x6, 1 x6=1c009c47 x6:1c009c46 +74809696ns 1323538 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000169 +74809775ns 1323542 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c47 PA:1c009c47 +74809795ns 1323543 1c000e82 fff60613 addi x12, x12, -1 x12=00000168 x12:00000169 +74809815ns 1323544 1c000e84 00130313 addi x6, x6, 1 x6=1c009c48 x6:1c009c47 +74809835ns 1323545 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000168 +74809914ns 1323549 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c48 PA:1c009c48 +74809934ns 1323550 1c000e82 fff60613 addi x12, x12, -1 x12=00000167 x12:00000168 +74809954ns 1323551 1c000e84 00130313 addi x6, x6, 1 x6=1c009c49 x6:1c009c48 +74809973ns 1323552 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000167 +74810053ns 1323556 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c49 PA:1c009c49 +74810072ns 1323557 1c000e82 fff60613 addi x12, x12, -1 x12=00000166 x12:00000167 +74810092ns 1323558 1c000e84 00130313 addi x6, x6, 1 x6=1c009c4a x6:1c009c49 +74810112ns 1323559 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000166 +74810191ns 1323563 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c4a PA:1c009c4a +74810211ns 1323564 1c000e82 fff60613 addi x12, x12, -1 x12=00000165 x12:00000166 +74810231ns 1323565 1c000e84 00130313 addi x6, x6, 1 x6=1c009c4b x6:1c009c4a +74810250ns 1323566 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000165 +74810330ns 1323570 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c4b PA:1c009c4b +74810349ns 1323571 1c000e82 fff60613 addi x12, x12, -1 x12=00000164 x12:00000165 +74810369ns 1323572 1c000e84 00130313 addi x6, x6, 1 x6=1c009c4c x6:1c009c4b +74810389ns 1323573 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000164 +74810468ns 1323577 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c4c PA:1c009c4c +74810488ns 1323578 1c000e82 fff60613 addi x12, x12, -1 x12=00000163 x12:00000164 +74810508ns 1323579 1c000e84 00130313 addi x6, x6, 1 x6=1c009c4d x6:1c009c4c +74810528ns 1323580 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000163 +74810607ns 1323584 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c4d PA:1c009c4d +74810626ns 1323585 1c000e82 fff60613 addi x12, x12, -1 x12=00000162 x12:00000163 +74810646ns 1323586 1c000e84 00130313 addi x6, x6, 1 x6=1c009c4e x6:1c009c4d +74810666ns 1323587 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000162 +74810745ns 1323591 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c4e PA:1c009c4e +74810765ns 1323592 1c000e82 fff60613 addi x12, x12, -1 x12=00000161 x12:00000162 +74810785ns 1323593 1c000e84 00130313 addi x6, x6, 1 x6=1c009c4f x6:1c009c4e +74810805ns 1323594 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000161 +74810884ns 1323598 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c4f PA:1c009c4f +74810904ns 1323599 1c000e82 fff60613 addi x12, x12, -1 x12=00000160 x12:00000161 +74810923ns 1323600 1c000e84 00130313 addi x6, x6, 1 x6=1c009c50 x6:1c009c4f +74810943ns 1323601 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000160 +74811022ns 1323605 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c50 PA:1c009c50 +74811042ns 1323606 1c000e82 fff60613 addi x12, x12, -1 x12=0000015f x12:00000160 +74811062ns 1323607 1c000e84 00130313 addi x6, x6, 1 x6=1c009c51 x6:1c009c50 +74811082ns 1323608 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000015f +74811161ns 1323612 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c51 PA:1c009c51 +74811181ns 1323613 1c000e82 fff60613 addi x12, x12, -1 x12=0000015e x12:0000015f +74811200ns 1323614 1c000e84 00130313 addi x6, x6, 1 x6=1c009c52 x6:1c009c51 +74811220ns 1323615 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000015e +74811299ns 1323619 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c52 PA:1c009c52 +74811319ns 1323620 1c000e82 fff60613 addi x12, x12, -1 x12=0000015d x12:0000015e +74811339ns 1323621 1c000e84 00130313 addi x6, x6, 1 x6=1c009c53 x6:1c009c52 +74811359ns 1323622 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000015d +74811438ns 1323626 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c53 PA:1c009c53 +74811458ns 1323627 1c000e82 fff60613 addi x12, x12, -1 x12=0000015c x12:0000015d +74811478ns 1323628 1c000e84 00130313 addi x6, x6, 1 x6=1c009c54 x6:1c009c53 +74811497ns 1323629 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000015c +74811576ns 1323633 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c54 PA:1c009c54 +74811596ns 1323634 1c000e82 fff60613 addi x12, x12, -1 x12=0000015b x12:0000015c +74811616ns 1323635 1c000e84 00130313 addi x6, x6, 1 x6=1c009c55 x6:1c009c54 +74811636ns 1323636 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000015b +74811715ns 1323640 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c55 PA:1c009c55 +74811735ns 1323641 1c000e82 fff60613 addi x12, x12, -1 x12=0000015a x12:0000015b +74811755ns 1323642 1c000e84 00130313 addi x6, x6, 1 x6=1c009c56 x6:1c009c55 +74811774ns 1323643 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000015a +74811854ns 1323647 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c56 PA:1c009c56 +74811873ns 1323648 1c000e82 fff60613 addi x12, x12, -1 x12=00000159 x12:0000015a +74811893ns 1323649 1c000e84 00130313 addi x6, x6, 1 x6=1c009c57 x6:1c009c56 +74811913ns 1323650 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000159 +74811992ns 1323654 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c57 PA:1c009c57 +74812012ns 1323655 1c000e82 fff60613 addi x12, x12, -1 x12=00000158 x12:00000159 +74812032ns 1323656 1c000e84 00130313 addi x6, x6, 1 x6=1c009c58 x6:1c009c57 +74812051ns 1323657 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000158 +74812131ns 1323661 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c58 PA:1c009c58 +74812150ns 1323662 1c000e82 fff60613 addi x12, x12, -1 x12=00000157 x12:00000158 +74812170ns 1323663 1c000e84 00130313 addi x6, x6, 1 x6=1c009c59 x6:1c009c58 +74812190ns 1323664 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000157 +74812269ns 1323668 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c59 PA:1c009c59 +74812289ns 1323669 1c000e82 fff60613 addi x12, x12, -1 x12=00000156 x12:00000157 +74812309ns 1323670 1c000e84 00130313 addi x6, x6, 1 x6=1c009c5a x6:1c009c59 +74812329ns 1323671 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000156 +74812408ns 1323675 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c5a PA:1c009c5a +74812428ns 1323676 1c000e82 fff60613 addi x12, x12, -1 x12=00000155 x12:00000156 +74812447ns 1323677 1c000e84 00130313 addi x6, x6, 1 x6=1c009c5b x6:1c009c5a +74812467ns 1323678 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000155 +74812546ns 1323682 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c5b PA:1c009c5b +74812566ns 1323683 1c000e82 fff60613 addi x12, x12, -1 x12=00000154 x12:00000155 +74812586ns 1323684 1c000e84 00130313 addi x6, x6, 1 x6=1c009c5c x6:1c009c5b +74812606ns 1323685 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000154 +74812685ns 1323689 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c5c PA:1c009c5c +74812705ns 1323690 1c000e82 fff60613 addi x12, x12, -1 x12=00000153 x12:00000154 +74812724ns 1323691 1c000e84 00130313 addi x6, x6, 1 x6=1c009c5d x6:1c009c5c +74812744ns 1323692 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000153 +74812823ns 1323696 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c5d PA:1c009c5d +74812843ns 1323697 1c000e82 fff60613 addi x12, x12, -1 x12=00000152 x12:00000153 +74812863ns 1323698 1c000e84 00130313 addi x6, x6, 1 x6=1c009c5e x6:1c009c5d +74812883ns 1323699 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000152 +74812962ns 1323703 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c5e PA:1c009c5e +74812982ns 1323704 1c000e82 fff60613 addi x12, x12, -1 x12=00000151 x12:00000152 +74813002ns 1323705 1c000e84 00130313 addi x6, x6, 1 x6=1c009c5f x6:1c009c5e +74813021ns 1323706 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000151 +74813100ns 1323710 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c5f PA:1c009c5f +74813120ns 1323711 1c000e82 fff60613 addi x12, x12, -1 x12=00000150 x12:00000151 +74813140ns 1323712 1c000e84 00130313 addi x6, x6, 1 x6=1c009c60 x6:1c009c5f +74813160ns 1323713 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000150 +74813239ns 1323717 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c60 PA:1c009c60 +74813259ns 1323718 1c000e82 fff60613 addi x12, x12, -1 x12=0000014f x12:00000150 +74813279ns 1323719 1c000e84 00130313 addi x6, x6, 1 x6=1c009c61 x6:1c009c60 +74813298ns 1323720 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000014f +74813378ns 1323724 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c61 PA:1c009c61 +74813397ns 1323725 1c000e82 fff60613 addi x12, x12, -1 x12=0000014e x12:0000014f +74813417ns 1323726 1c000e84 00130313 addi x6, x6, 1 x6=1c009c62 x6:1c009c61 +74813437ns 1323727 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000014e +74813516ns 1323731 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c62 PA:1c009c62 +74813536ns 1323732 1c000e82 fff60613 addi x12, x12, -1 x12=0000014d x12:0000014e +74813556ns 1323733 1c000e84 00130313 addi x6, x6, 1 x6=1c009c63 x6:1c009c62 +74813575ns 1323734 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000014d +74813655ns 1323738 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c63 PA:1c009c63 +74813674ns 1323739 1c000e82 fff60613 addi x12, x12, -1 x12=0000014c x12:0000014d +74813694ns 1323740 1c000e84 00130313 addi x6, x6, 1 x6=1c009c64 x6:1c009c63 +74813714ns 1323741 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000014c +74813793ns 1323745 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c64 PA:1c009c64 +74813813ns 1323746 1c000e82 fff60613 addi x12, x12, -1 x12=0000014b x12:0000014c +74813833ns 1323747 1c000e84 00130313 addi x6, x6, 1 x6=1c009c65 x6:1c009c64 +74813853ns 1323748 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000014b +74813932ns 1323752 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c65 PA:1c009c65 +74813952ns 1323753 1c000e82 fff60613 addi x12, x12, -1 x12=0000014a x12:0000014b +74813971ns 1323754 1c000e84 00130313 addi x6, x6, 1 x6=1c009c66 x6:1c009c65 +74813991ns 1323755 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000014a +74814070ns 1323759 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c66 PA:1c009c66 +74814090ns 1323760 1c000e82 fff60613 addi x12, x12, -1 x12=00000149 x12:0000014a +74814110ns 1323761 1c000e84 00130313 addi x6, x6, 1 x6=1c009c67 x6:1c009c66 +74814130ns 1323762 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000149 +74814209ns 1323766 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c67 PA:1c009c67 +74814229ns 1323767 1c000e82 fff60613 addi x12, x12, -1 x12=00000148 x12:00000149 +74814248ns 1323768 1c000e84 00130313 addi x6, x6, 1 x6=1c009c68 x6:1c009c67 +74814268ns 1323769 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000148 +74814347ns 1323773 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c68 PA:1c009c68 +74814367ns 1323774 1c000e82 fff60613 addi x12, x12, -1 x12=00000147 x12:00000148 +74814387ns 1323775 1c000e84 00130313 addi x6, x6, 1 x6=1c009c69 x6:1c009c68 +74814407ns 1323776 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000147 +74814486ns 1323780 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c69 PA:1c009c69 +74814506ns 1323781 1c000e82 fff60613 addi x12, x12, -1 x12=00000146 x12:00000147 +74814525ns 1323782 1c000e84 00130313 addi x6, x6, 1 x6=1c009c6a x6:1c009c69 +74814545ns 1323783 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000146 +74814624ns 1323787 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c6a PA:1c009c6a +74814644ns 1323788 1c000e82 fff60613 addi x12, x12, -1 x12=00000145 x12:00000146 +74814664ns 1323789 1c000e84 00130313 addi x6, x6, 1 x6=1c009c6b x6:1c009c6a +74814684ns 1323790 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000145 +74814763ns 1323794 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c6b PA:1c009c6b +74814783ns 1323795 1c000e82 fff60613 addi x12, x12, -1 x12=00000144 x12:00000145 +74814803ns 1323796 1c000e84 00130313 addi x6, x6, 1 x6=1c009c6c x6:1c009c6b +74814822ns 1323797 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000144 +74814902ns 1323801 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c6c PA:1c009c6c +74814921ns 1323802 1c000e82 fff60613 addi x12, x12, -1 x12=00000143 x12:00000144 +74814941ns 1323803 1c000e84 00130313 addi x6, x6, 1 x6=1c009c6d x6:1c009c6c +74814961ns 1323804 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000143 +74815040ns 1323808 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c6d PA:1c009c6d +74815060ns 1323809 1c000e82 fff60613 addi x12, x12, -1 x12=00000142 x12:00000143 +74815080ns 1323810 1c000e84 00130313 addi x6, x6, 1 x6=1c009c6e x6:1c009c6d +74815099ns 1323811 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000142 +74815179ns 1323815 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c6e PA:1c009c6e +74815198ns 1323816 1c000e82 fff60613 addi x12, x12, -1 x12=00000141 x12:00000142 +74815218ns 1323817 1c000e84 00130313 addi x6, x6, 1 x6=1c009c6f x6:1c009c6e +74815238ns 1323818 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000141 +74815317ns 1323822 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c6f PA:1c009c6f +74815337ns 1323823 1c000e82 fff60613 addi x12, x12, -1 x12=00000140 x12:00000141 +74815357ns 1323824 1c000e84 00130313 addi x6, x6, 1 x6=1c009c70 x6:1c009c6f +74815377ns 1323825 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000140 +74815456ns 1323829 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c70 PA:1c009c70 +74815476ns 1323830 1c000e82 fff60613 addi x12, x12, -1 x12=0000013f x12:00000140 +74815495ns 1323831 1c000e84 00130313 addi x6, x6, 1 x6=1c009c71 x6:1c009c70 +74815515ns 1323832 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000013f +74815594ns 1323836 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c71 PA:1c009c71 +74815614ns 1323837 1c000e82 fff60613 addi x12, x12, -1 x12=0000013e x12:0000013f +74815634ns 1323838 1c000e84 00130313 addi x6, x6, 1 x6=1c009c72 x6:1c009c71 +74815654ns 1323839 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000013e +74815733ns 1323843 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c72 PA:1c009c72 +74815753ns 1323844 1c000e82 fff60613 addi x12, x12, -1 x12=0000013d x12:0000013e +74815772ns 1323845 1c000e84 00130313 addi x6, x6, 1 x6=1c009c73 x6:1c009c72 +74815792ns 1323846 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000013d +74815871ns 1323850 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c73 PA:1c009c73 +74815891ns 1323851 1c000e82 fff60613 addi x12, x12, -1 x12=0000013c x12:0000013d +74815911ns 1323852 1c000e84 00130313 addi x6, x6, 1 x6=1c009c74 x6:1c009c73 +74815931ns 1323853 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000013c +74816010ns 1323857 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c74 PA:1c009c74 +74816030ns 1323858 1c000e82 fff60613 addi x12, x12, -1 x12=0000013b x12:0000013c +74816049ns 1323859 1c000e84 00130313 addi x6, x6, 1 x6=1c009c75 x6:1c009c74 +74816069ns 1323860 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000013b +74816148ns 1323864 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c75 PA:1c009c75 +74816168ns 1323865 1c000e82 fff60613 addi x12, x12, -1 x12=0000013a x12:0000013b +74816188ns 1323866 1c000e84 00130313 addi x6, x6, 1 x6=1c009c76 x6:1c009c75 +74816208ns 1323867 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000013a +74816287ns 1323871 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c76 PA:1c009c76 +74816307ns 1323872 1c000e82 fff60613 addi x12, x12, -1 x12=00000139 x12:0000013a +74816327ns 1323873 1c000e84 00130313 addi x6, x6, 1 x6=1c009c77 x6:1c009c76 +74816346ns 1323874 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000139 +74816426ns 1323878 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c77 PA:1c009c77 +74816445ns 1323879 1c000e82 fff60613 addi x12, x12, -1 x12=00000138 x12:00000139 +74816465ns 1323880 1c000e84 00130313 addi x6, x6, 1 x6=1c009c78 x6:1c009c77 +74816485ns 1323881 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000138 +74816564ns 1323885 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c78 PA:1c009c78 +74816584ns 1323886 1c000e82 fff60613 addi x12, x12, -1 x12=00000137 x12:00000138 +74816604ns 1323887 1c000e84 00130313 addi x6, x6, 1 x6=1c009c79 x6:1c009c78 +74816623ns 1323888 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000137 +74816703ns 1323892 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c79 PA:1c009c79 +74816722ns 1323893 1c000e82 fff60613 addi x12, x12, -1 x12=00000136 x12:00000137 +74816742ns 1323894 1c000e84 00130313 addi x6, x6, 1 x6=1c009c7a x6:1c009c79 +74816762ns 1323895 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000136 +74816841ns 1323899 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c7a PA:1c009c7a +74816861ns 1323900 1c000e82 fff60613 addi x12, x12, -1 x12=00000135 x12:00000136 +74816881ns 1323901 1c000e84 00130313 addi x6, x6, 1 x6=1c009c7b x6:1c009c7a +74816901ns 1323902 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000135 +74816980ns 1323906 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c7b PA:1c009c7b +74816999ns 1323907 1c000e82 fff60613 addi x12, x12, -1 x12=00000134 x12:00000135 +74817019ns 1323908 1c000e84 00130313 addi x6, x6, 1 x6=1c009c7c x6:1c009c7b +74817039ns 1323909 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000134 +74817118ns 1323913 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c7c PA:1c009c7c +74817138ns 1323914 1c000e82 fff60613 addi x12, x12, -1 x12=00000133 x12:00000134 +74817158ns 1323915 1c000e84 00130313 addi x6, x6, 1 x6=1c009c7d x6:1c009c7c +74817178ns 1323916 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000133 +74817257ns 1323920 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c7d PA:1c009c7d +74817277ns 1323921 1c000e82 fff60613 addi x12, x12, -1 x12=00000132 x12:00000133 +74817296ns 1323922 1c000e84 00130313 addi x6, x6, 1 x6=1c009c7e x6:1c009c7d +74817316ns 1323923 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000132 +74817395ns 1323927 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c7e PA:1c009c7e +74817415ns 1323928 1c000e82 fff60613 addi x12, x12, -1 x12=00000131 x12:00000132 +74817435ns 1323929 1c000e84 00130313 addi x6, x6, 1 x6=1c009c7f x6:1c009c7e +74817455ns 1323930 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000131 +74817534ns 1323934 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c7f PA:1c009c7f +74817554ns 1323935 1c000e82 fff60613 addi x12, x12, -1 x12=00000130 x12:00000131 +74817573ns 1323936 1c000e84 00130313 addi x6, x6, 1 x6=1c009c80 x6:1c009c7f +74817593ns 1323937 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000130 +74817672ns 1323941 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c80 PA:1c009c80 +74817692ns 1323942 1c000e82 fff60613 addi x12, x12, -1 x12=0000012f x12:00000130 +74817712ns 1323943 1c000e84 00130313 addi x6, x6, 1 x6=1c009c81 x6:1c009c80 +74817732ns 1323944 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000012f +74817811ns 1323948 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c81 PA:1c009c81 +74817831ns 1323949 1c000e82 fff60613 addi x12, x12, -1 x12=0000012e x12:0000012f +74817851ns 1323950 1c000e84 00130313 addi x6, x6, 1 x6=1c009c82 x6:1c009c81 +74817870ns 1323951 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000012e +74817950ns 1323955 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c82 PA:1c009c82 +74817969ns 1323956 1c000e82 fff60613 addi x12, x12, -1 x12=0000012d x12:0000012e +74817989ns 1323957 1c000e84 00130313 addi x6, x6, 1 x6=1c009c83 x6:1c009c82 +74818009ns 1323958 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000012d +74818088ns 1323962 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c83 PA:1c009c83 +74818108ns 1323963 1c000e82 fff60613 addi x12, x12, -1 x12=0000012c x12:0000012d +74818128ns 1323964 1c000e84 00130313 addi x6, x6, 1 x6=1c009c84 x6:1c009c83 +74818147ns 1323965 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000012c +74818227ns 1323969 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c84 PA:1c009c84 +74818246ns 1323970 1c000e82 fff60613 addi x12, x12, -1 x12=0000012b x12:0000012c +74818266ns 1323971 1c000e84 00130313 addi x6, x6, 1 x6=1c009c85 x6:1c009c84 +74818286ns 1323972 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000012b +74818365ns 1323976 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c85 PA:1c009c85 +74818385ns 1323977 1c000e82 fff60613 addi x12, x12, -1 x12=0000012a x12:0000012b +74818405ns 1323978 1c000e84 00130313 addi x6, x6, 1 x6=1c009c86 x6:1c009c85 +74818425ns 1323979 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000012a +74818504ns 1323983 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c86 PA:1c009c86 +74818523ns 1323984 1c000e82 fff60613 addi x12, x12, -1 x12=00000129 x12:0000012a +74818543ns 1323985 1c000e84 00130313 addi x6, x6, 1 x6=1c009c87 x6:1c009c86 +74818563ns 1323986 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000129 +74818642ns 1323990 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c87 PA:1c009c87 +74818662ns 1323991 1c000e82 fff60613 addi x12, x12, -1 x12=00000128 x12:00000129 +74818682ns 1323992 1c000e84 00130313 addi x6, x6, 1 x6=1c009c88 x6:1c009c87 +74818702ns 1323993 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000128 +74818781ns 1323997 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c88 PA:1c009c88 +74818801ns 1323998 1c000e82 fff60613 addi x12, x12, -1 x12=00000127 x12:00000128 +74818820ns 1323999 1c000e84 00130313 addi x6, x6, 1 x6=1c009c89 x6:1c009c88 +74818840ns 1324000 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000127 +74818919ns 1324004 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c89 PA:1c009c89 +74818939ns 1324005 1c000e82 fff60613 addi x12, x12, -1 x12=00000126 x12:00000127 +74818959ns 1324006 1c000e84 00130313 addi x6, x6, 1 x6=1c009c8a x6:1c009c89 +74818979ns 1324007 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000126 +74819058ns 1324011 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c8a PA:1c009c8a +74819078ns 1324012 1c000e82 fff60613 addi x12, x12, -1 x12=00000125 x12:00000126 +74819097ns 1324013 1c000e84 00130313 addi x6, x6, 1 x6=1c009c8b x6:1c009c8a +74819117ns 1324014 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000125 +74819196ns 1324018 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c8b PA:1c009c8b +74819216ns 1324019 1c000e82 fff60613 addi x12, x12, -1 x12=00000124 x12:00000125 +74819236ns 1324020 1c000e84 00130313 addi x6, x6, 1 x6=1c009c8c x6:1c009c8b +74819256ns 1324021 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000124 +74819335ns 1324025 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c8c PA:1c009c8c +74819355ns 1324026 1c000e82 fff60613 addi x12, x12, -1 x12=00000123 x12:00000124 +74819375ns 1324027 1c000e84 00130313 addi x6, x6, 1 x6=1c009c8d x6:1c009c8c +74819394ns 1324028 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000123 +74819473ns 1324032 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c8d PA:1c009c8d +74819493ns 1324033 1c000e82 fff60613 addi x12, x12, -1 x12=00000122 x12:00000123 +74819513ns 1324034 1c000e84 00130313 addi x6, x6, 1 x6=1c009c8e x6:1c009c8d +74819533ns 1324035 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000122 +74819612ns 1324039 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c8e PA:1c009c8e +74819632ns 1324040 1c000e82 fff60613 addi x12, x12, -1 x12=00000121 x12:00000122 +74819652ns 1324041 1c000e84 00130313 addi x6, x6, 1 x6=1c009c8f x6:1c009c8e +74819671ns 1324042 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000121 +74819751ns 1324046 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c8f PA:1c009c8f +74819770ns 1324047 1c000e82 fff60613 addi x12, x12, -1 x12=00000120 x12:00000121 +74819790ns 1324048 1c000e84 00130313 addi x6, x6, 1 x6=1c009c90 x6:1c009c8f +74819810ns 1324049 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000120 +74819889ns 1324053 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c90 PA:1c009c90 +74819909ns 1324054 1c000e82 fff60613 addi x12, x12, -1 x12=0000011f x12:00000120 +74819929ns 1324055 1c000e84 00130313 addi x6, x6, 1 x6=1c009c91 x6:1c009c90 +74819949ns 1324056 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000011f +74820028ns 1324060 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c91 PA:1c009c91 +74820047ns 1324061 1c000e82 fff60613 addi x12, x12, -1 x12=0000011e x12:0000011f +74820067ns 1324062 1c000e84 00130313 addi x6, x6, 1 x6=1c009c92 x6:1c009c91 +74820087ns 1324063 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000011e +74820166ns 1324067 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c92 PA:1c009c92 +74820186ns 1324068 1c000e82 fff60613 addi x12, x12, -1 x12=0000011d x12:0000011e +74820206ns 1324069 1c000e84 00130313 addi x6, x6, 1 x6=1c009c93 x6:1c009c92 +74820226ns 1324070 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000011d +74820305ns 1324074 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c93 PA:1c009c93 +74820325ns 1324075 1c000e82 fff60613 addi x12, x12, -1 x12=0000011c x12:0000011d +74820344ns 1324076 1c000e84 00130313 addi x6, x6, 1 x6=1c009c94 x6:1c009c93 +74820364ns 1324077 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000011c +74820443ns 1324081 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c94 PA:1c009c94 +74820463ns 1324082 1c000e82 fff60613 addi x12, x12, -1 x12=0000011b x12:0000011c +74820483ns 1324083 1c000e84 00130313 addi x6, x6, 1 x6=1c009c95 x6:1c009c94 +74820503ns 1324084 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000011b +74820582ns 1324088 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c95 PA:1c009c95 +74820602ns 1324089 1c000e82 fff60613 addi x12, x12, -1 x12=0000011a x12:0000011b +74820621ns 1324090 1c000e84 00130313 addi x6, x6, 1 x6=1c009c96 x6:1c009c95 +74820641ns 1324091 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000011a +74820720ns 1324095 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c96 PA:1c009c96 +74820740ns 1324096 1c000e82 fff60613 addi x12, x12, -1 x12=00000119 x12:0000011a +74820760ns 1324097 1c000e84 00130313 addi x6, x6, 1 x6=1c009c97 x6:1c009c96 +74820780ns 1324098 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000119 +74820859ns 1324102 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c97 PA:1c009c97 +74820879ns 1324103 1c000e82 fff60613 addi x12, x12, -1 x12=00000118 x12:00000119 +74820899ns 1324104 1c000e84 00130313 addi x6, x6, 1 x6=1c009c98 x6:1c009c97 +74820918ns 1324105 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000118 +74820997ns 1324109 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c98 PA:1c009c98 +74821017ns 1324110 1c000e82 fff60613 addi x12, x12, -1 x12=00000117 x12:00000118 +74821037ns 1324111 1c000e84 00130313 addi x6, x6, 1 x6=1c009c99 x6:1c009c98 +74821057ns 1324112 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000117 +74821136ns 1324116 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c99 PA:1c009c99 +74821156ns 1324117 1c000e82 fff60613 addi x12, x12, -1 x12=00000116 x12:00000117 +74821176ns 1324118 1c000e84 00130313 addi x6, x6, 1 x6=1c009c9a x6:1c009c99 +74821195ns 1324119 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000116 +74821275ns 1324123 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c9a PA:1c009c9a +74821294ns 1324124 1c000e82 fff60613 addi x12, x12, -1 x12=00000115 x12:00000116 +74821314ns 1324125 1c000e84 00130313 addi x6, x6, 1 x6=1c009c9b x6:1c009c9a +74821334ns 1324126 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000115 +74821413ns 1324130 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c9b PA:1c009c9b +74821433ns 1324131 1c000e82 fff60613 addi x12, x12, -1 x12=00000114 x12:00000115 +74821453ns 1324132 1c000e84 00130313 addi x6, x6, 1 x6=1c009c9c x6:1c009c9b +74821472ns 1324133 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000114 +74821552ns 1324137 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c9c PA:1c009c9c +74821571ns 1324138 1c000e82 fff60613 addi x12, x12, -1 x12=00000113 x12:00000114 +74821591ns 1324139 1c000e84 00130313 addi x6, x6, 1 x6=1c009c9d x6:1c009c9c +74821611ns 1324140 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000113 +74821690ns 1324144 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c9d PA:1c009c9d +74821710ns 1324145 1c000e82 fff60613 addi x12, x12, -1 x12=00000112 x12:00000113 +74821730ns 1324146 1c000e84 00130313 addi x6, x6, 1 x6=1c009c9e x6:1c009c9d +74821750ns 1324147 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000112 +74821829ns 1324151 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c9e PA:1c009c9e +74821849ns 1324152 1c000e82 fff60613 addi x12, x12, -1 x12=00000111 x12:00000112 +74821868ns 1324153 1c000e84 00130313 addi x6, x6, 1 x6=1c009c9f x6:1c009c9e +74821888ns 1324154 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000111 +74821967ns 1324158 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009c9f PA:1c009c9f +74821987ns 1324159 1c000e82 fff60613 addi x12, x12, -1 x12=00000110 x12:00000111 +74822007ns 1324160 1c000e84 00130313 addi x6, x6, 1 x6=1c009ca0 x6:1c009c9f +74822027ns 1324161 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000110 +74822106ns 1324165 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ca0 PA:1c009ca0 +74822126ns 1324166 1c000e82 fff60613 addi x12, x12, -1 x12=0000010f x12:00000110 +74822145ns 1324167 1c000e84 00130313 addi x6, x6, 1 x6=1c009ca1 x6:1c009ca0 +74822165ns 1324168 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000010f +74822244ns 1324172 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ca1 PA:1c009ca1 +74822264ns 1324173 1c000e82 fff60613 addi x12, x12, -1 x12=0000010e x12:0000010f +74822284ns 1324174 1c000e84 00130313 addi x6, x6, 1 x6=1c009ca2 x6:1c009ca1 +74822304ns 1324175 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000010e +74822383ns 1324179 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ca2 PA:1c009ca2 +74822403ns 1324180 1c000e82 fff60613 addi x12, x12, -1 x12=0000010d x12:0000010e +74822423ns 1324181 1c000e84 00130313 addi x6, x6, 1 x6=1c009ca3 x6:1c009ca2 +74822442ns 1324182 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000010d +74822521ns 1324186 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ca3 PA:1c009ca3 +74822541ns 1324187 1c000e82 fff60613 addi x12, x12, -1 x12=0000010c x12:0000010d +74822561ns 1324188 1c000e84 00130313 addi x6, x6, 1 x6=1c009ca4 x6:1c009ca3 +74822581ns 1324189 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000010c +74822660ns 1324193 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ca4 PA:1c009ca4 +74822680ns 1324194 1c000e82 fff60613 addi x12, x12, -1 x12=0000010b x12:0000010c +74822700ns 1324195 1c000e84 00130313 addi x6, x6, 1 x6=1c009ca5 x6:1c009ca4 +74822719ns 1324196 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000010b +74822799ns 1324200 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ca5 PA:1c009ca5 +74822818ns 1324201 1c000e82 fff60613 addi x12, x12, -1 x12=0000010a x12:0000010b +74822838ns 1324202 1c000e84 00130313 addi x6, x6, 1 x6=1c009ca6 x6:1c009ca5 +74822858ns 1324203 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000010a +74822937ns 1324207 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ca6 PA:1c009ca6 +74822957ns 1324208 1c000e82 fff60613 addi x12, x12, -1 x12=00000109 x12:0000010a +74822977ns 1324209 1c000e84 00130313 addi x6, x6, 1 x6=1c009ca7 x6:1c009ca6 +74822996ns 1324210 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000109 +74823076ns 1324214 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ca7 PA:1c009ca7 +74823095ns 1324215 1c000e82 fff60613 addi x12, x12, -1 x12=00000108 x12:00000109 +74823115ns 1324216 1c000e84 00130313 addi x6, x6, 1 x6=1c009ca8 x6:1c009ca7 +74823135ns 1324217 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000108 +74823214ns 1324221 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ca8 PA:1c009ca8 +74823234ns 1324222 1c000e82 fff60613 addi x12, x12, -1 x12=00000107 x12:00000108 +74823254ns 1324223 1c000e84 00130313 addi x6, x6, 1 x6=1c009ca9 x6:1c009ca8 +74823274ns 1324224 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000107 +74823353ns 1324228 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ca9 PA:1c009ca9 +74823373ns 1324229 1c000e82 fff60613 addi x12, x12, -1 x12=00000106 x12:00000107 +74823392ns 1324230 1c000e84 00130313 addi x6, x6, 1 x6=1c009caa x6:1c009ca9 +74823412ns 1324231 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000106 +74823491ns 1324235 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009caa PA:1c009caa +74823511ns 1324236 1c000e82 fff60613 addi x12, x12, -1 x12=00000105 x12:00000106 +74823531ns 1324237 1c000e84 00130313 addi x6, x6, 1 x6=1c009cab x6:1c009caa +74823551ns 1324238 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000105 +74823630ns 1324242 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009cab PA:1c009cab +74823650ns 1324243 1c000e82 fff60613 addi x12, x12, -1 x12=00000104 x12:00000105 +74823669ns 1324244 1c000e84 00130313 addi x6, x6, 1 x6=1c009cac x6:1c009cab +74823689ns 1324245 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000104 +74823768ns 1324249 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009cac PA:1c009cac +74823788ns 1324250 1c000e82 fff60613 addi x12, x12, -1 x12=00000103 x12:00000104 +74823808ns 1324251 1c000e84 00130313 addi x6, x6, 1 x6=1c009cad x6:1c009cac +74823828ns 1324252 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000103 +74823907ns 1324256 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009cad PA:1c009cad +74823927ns 1324257 1c000e82 fff60613 addi x12, x12, -1 x12=00000102 x12:00000103 +74823946ns 1324258 1c000e84 00130313 addi x6, x6, 1 x6=1c009cae x6:1c009cad +74823966ns 1324259 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000102 +74824045ns 1324263 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009cae PA:1c009cae +74824065ns 1324264 1c000e82 fff60613 addi x12, x12, -1 x12=00000101 x12:00000102 +74824085ns 1324265 1c000e84 00130313 addi x6, x6, 1 x6=1c009caf x6:1c009cae +74824105ns 1324266 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000101 +74824184ns 1324270 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009caf PA:1c009caf +74824204ns 1324271 1c000e82 fff60613 addi x12, x12, -1 x12=00000100 x12:00000101 +74824224ns 1324272 1c000e84 00130313 addi x6, x6, 1 x6=1c009cb0 x6:1c009caf +74824243ns 1324273 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000100 +74824323ns 1324277 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009cb0 PA:1c009cb0 +74824342ns 1324278 1c000e82 fff60613 addi x12, x12, -1 x12=000000ff x12:00000100 +74824362ns 1324279 1c000e84 00130313 addi x6, x6, 1 x6=1c009cb1 x6:1c009cb0 +74824382ns 1324280 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ff +74824461ns 1324284 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009cb1 PA:1c009cb1 +74824481ns 1324285 1c000e82 fff60613 addi x12, x12, -1 x12=000000fe x12:000000ff +74824501ns 1324286 1c000e84 00130313 addi x6, x6, 1 x6=1c009cb2 x6:1c009cb1 +74824520ns 1324287 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000fe +74824600ns 1324291 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009cb2 PA:1c009cb2 +74824619ns 1324292 1c000e82 fff60613 addi x12, x12, -1 x12=000000fd x12:000000fe +74824639ns 1324293 1c000e84 00130313 addi x6, x6, 1 x6=1c009cb3 x6:1c009cb2 +74824659ns 1324294 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000fd +74824738ns 1324298 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009cb3 PA:1c009cb3 +74824758ns 1324299 1c000e82 fff60613 addi x12, x12, -1 x12=000000fc x12:000000fd +74824778ns 1324300 1c000e84 00130313 addi x6, x6, 1 x6=1c009cb4 x6:1c009cb3 +74824798ns 1324301 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000fc +74824877ns 1324305 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009cb4 PA:1c009cb4 +74824897ns 1324306 1c000e82 fff60613 addi x12, x12, -1 x12=000000fb x12:000000fc +74824916ns 1324307 1c000e84 00130313 addi x6, x6, 1 x6=1c009cb5 x6:1c009cb4 +74824936ns 1324308 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000fb +74825015ns 1324312 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009cb5 PA:1c009cb5 +74825035ns 1324313 1c000e82 fff60613 addi x12, x12, -1 x12=000000fa x12:000000fb +74825055ns 1324314 1c000e84 00130313 addi x6, x6, 1 x6=1c009cb6 x6:1c009cb5 +74825075ns 1324315 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000fa +74825154ns 1324319 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009cb6 PA:1c009cb6 +74825174ns 1324320 1c000e82 fff60613 addi x12, x12, -1 x12=000000f9 x12:000000fa +74825193ns 1324321 1c000e84 00130313 addi x6, x6, 1 x6=1c009cb7 x6:1c009cb6 +74825213ns 1324322 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f9 +74825292ns 1324326 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009cb7 PA:1c009cb7 +74825312ns 1324327 1c000e82 fff60613 addi x12, x12, -1 x12=000000f8 x12:000000f9 +74825332ns 1324328 1c000e84 00130313 addi x6, x6, 1 x6=1c009cb8 x6:1c009cb7 +74825352ns 1324329 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f8 +74825431ns 1324333 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009cb8 PA:1c009cb8 +74825451ns 1324334 1c000e82 fff60613 addi x12, x12, -1 x12=000000f7 x12:000000f8 +74825470ns 1324335 1c000e84 00130313 addi x6, x6, 1 x6=1c009cb9 x6:1c009cb8 +74825490ns 1324336 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f7 +74825569ns 1324340 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009cb9 PA:1c009cb9 +74825589ns 1324341 1c000e82 fff60613 addi x12, x12, -1 x12=000000f6 x12:000000f7 +74825609ns 1324342 1c000e84 00130313 addi x6, x6, 1 x6=1c009cba x6:1c009cb9 +74825629ns 1324343 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f6 +74825708ns 1324347 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009cba PA:1c009cba +74825728ns 1324348 1c000e82 fff60613 addi x12, x12, -1 x12=000000f5 x12:000000f6 +74825748ns 1324349 1c000e84 00130313 addi x6, x6, 1 x6=1c009cbb x6:1c009cba +74825767ns 1324350 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f5 +74825847ns 1324354 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009cbb PA:1c009cbb +74825866ns 1324355 1c000e82 fff60613 addi x12, x12, -1 x12=000000f4 x12:000000f5 +74825886ns 1324356 1c000e84 00130313 addi x6, x6, 1 x6=1c009cbc x6:1c009cbb +74825906ns 1324357 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f4 +74825985ns 1324361 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009cbc PA:1c009cbc +74826005ns 1324362 1c000e82 fff60613 addi x12, x12, -1 x12=000000f3 x12:000000f4 +74826025ns 1324363 1c000e84 00130313 addi x6, x6, 1 x6=1c009cbd x6:1c009cbc +74826044ns 1324364 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f3 +74826124ns 1324368 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009cbd PA:1c009cbd +74826143ns 1324369 1c000e82 fff60613 addi x12, x12, -1 x12=000000f2 x12:000000f3 +74826163ns 1324370 1c000e84 00130313 addi x6, x6, 1 x6=1c009cbe x6:1c009cbd +74826183ns 1324371 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f2 +74826262ns 1324375 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009cbe PA:1c009cbe +74826282ns 1324376 1c000e82 fff60613 addi x12, x12, -1 x12=000000f1 x12:000000f2 +74826302ns 1324377 1c000e84 00130313 addi x6, x6, 1 x6=1c009cbf x6:1c009cbe +74826322ns 1324378 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f1 +74826401ns 1324382 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009cbf PA:1c009cbf +74826420ns 1324383 1c000e82 fff60613 addi x12, x12, -1 x12=000000f0 x12:000000f1 +74826440ns 1324384 1c000e84 00130313 addi x6, x6, 1 x6=1c009cc0 x6:1c009cbf +74826460ns 1324385 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f0 +74826539ns 1324389 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009cc0 PA:1c009cc0 +74826559ns 1324390 1c000e82 fff60613 addi x12, x12, -1 x12=000000ef x12:000000f0 +74826579ns 1324391 1c000e84 00130313 addi x6, x6, 1 x6=1c009cc1 x6:1c009cc0 +74826599ns 1324392 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ef +74826678ns 1324396 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009cc1 PA:1c009cc1 +74826698ns 1324397 1c000e82 fff60613 addi x12, x12, -1 x12=000000ee x12:000000ef +74826717ns 1324398 1c000e84 00130313 addi x6, x6, 1 x6=1c009cc2 x6:1c009cc1 +74826737ns 1324399 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ee +74826816ns 1324403 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009cc2 PA:1c009cc2 +74826836ns 1324404 1c000e82 fff60613 addi x12, x12, -1 x12=000000ed x12:000000ee +74826856ns 1324405 1c000e84 00130313 addi x6, x6, 1 x6=1c009cc3 x6:1c009cc2 +74826876ns 1324406 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ed +74826955ns 1324410 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009cc3 PA:1c009cc3 +74826975ns 1324411 1c000e82 fff60613 addi x12, x12, -1 x12=000000ec x12:000000ed +74826994ns 1324412 1c000e84 00130313 addi x6, x6, 1 x6=1c009cc4 x6:1c009cc3 +74827014ns 1324413 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ec +74827093ns 1324417 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009cc4 PA:1c009cc4 +74827113ns 1324418 1c000e82 fff60613 addi x12, x12, -1 x12=000000eb x12:000000ec +74827133ns 1324419 1c000e84 00130313 addi x6, x6, 1 x6=1c009cc5 x6:1c009cc4 +74827153ns 1324420 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000eb +74827232ns 1324424 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009cc5 PA:1c009cc5 +74827252ns 1324425 1c000e82 fff60613 addi x12, x12, -1 x12=000000ea x12:000000eb +74827272ns 1324426 1c000e84 00130313 addi x6, x6, 1 x6=1c009cc6 x6:1c009cc5 +74827291ns 1324427 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ea +74827371ns 1324431 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009cc6 PA:1c009cc6 +74827390ns 1324432 1c000e82 fff60613 addi x12, x12, -1 x12=000000e9 x12:000000ea +74827410ns 1324433 1c000e84 00130313 addi x6, x6, 1 x6=1c009cc7 x6:1c009cc6 +74827430ns 1324434 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e9 +74827509ns 1324438 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009cc7 PA:1c009cc7 +74827529ns 1324439 1c000e82 fff60613 addi x12, x12, -1 x12=000000e8 x12:000000e9 +74827549ns 1324440 1c000e84 00130313 addi x6, x6, 1 x6=1c009cc8 x6:1c009cc7 +74827568ns 1324441 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e8 +74827648ns 1324445 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009cc8 PA:1c009cc8 +74827667ns 1324446 1c000e82 fff60613 addi x12, x12, -1 x12=000000e7 x12:000000e8 +74827687ns 1324447 1c000e84 00130313 addi x6, x6, 1 x6=1c009cc9 x6:1c009cc8 +74827707ns 1324448 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e7 +74827786ns 1324452 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009cc9 PA:1c009cc9 +74827806ns 1324453 1c000e82 fff60613 addi x12, x12, -1 x12=000000e6 x12:000000e7 +74827826ns 1324454 1c000e84 00130313 addi x6, x6, 1 x6=1c009cca x6:1c009cc9 +74827846ns 1324455 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e6 +74827925ns 1324459 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009cca PA:1c009cca +74827944ns 1324460 1c000e82 fff60613 addi x12, x12, -1 x12=000000e5 x12:000000e6 +74827964ns 1324461 1c000e84 00130313 addi x6, x6, 1 x6=1c009ccb x6:1c009cca +74827984ns 1324462 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e5 +74828063ns 1324466 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ccb PA:1c009ccb +74828083ns 1324467 1c000e82 fff60613 addi x12, x12, -1 x12=000000e4 x12:000000e5 +74828103ns 1324468 1c000e84 00130313 addi x6, x6, 1 x6=1c009ccc x6:1c009ccb +74828123ns 1324469 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e4 +74828202ns 1324473 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ccc PA:1c009ccc +74828222ns 1324474 1c000e82 fff60613 addi x12, x12, -1 x12=000000e3 x12:000000e4 +74828241ns 1324475 1c000e84 00130313 addi x6, x6, 1 x6=1c009ccd x6:1c009ccc +74828261ns 1324476 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e3 +74828340ns 1324480 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ccd PA:1c009ccd +74828360ns 1324481 1c000e82 fff60613 addi x12, x12, -1 x12=000000e2 x12:000000e3 +74828380ns 1324482 1c000e84 00130313 addi x6, x6, 1 x6=1c009cce x6:1c009ccd +74828400ns 1324483 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e2 +74828479ns 1324487 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009cce PA:1c009cce +74828499ns 1324488 1c000e82 fff60613 addi x12, x12, -1 x12=000000e1 x12:000000e2 +74828518ns 1324489 1c000e84 00130313 addi x6, x6, 1 x6=1c009ccf x6:1c009cce +74828538ns 1324490 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e1 +74828617ns 1324494 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ccf PA:1c009ccf +74828637ns 1324495 1c000e82 fff60613 addi x12, x12, -1 x12=000000e0 x12:000000e1 +74828657ns 1324496 1c000e84 00130313 addi x6, x6, 1 x6=1c009cd0 x6:1c009ccf +74828677ns 1324497 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e0 +74828756ns 1324501 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009cd0 PA:1c009cd0 +74828776ns 1324502 1c000e82 fff60613 addi x12, x12, -1 x12=000000df x12:000000e0 +74828796ns 1324503 1c000e84 00130313 addi x6, x6, 1 x6=1c009cd1 x6:1c009cd0 +74828815ns 1324504 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000df +74828894ns 1324508 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009cd1 PA:1c009cd1 +74828914ns 1324509 1c000e82 fff60613 addi x12, x12, -1 x12=000000de x12:000000df +74828934ns 1324510 1c000e84 00130313 addi x6, x6, 1 x6=1c009cd2 x6:1c009cd1 +74828954ns 1324511 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000de +74829033ns 1324515 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009cd2 PA:1c009cd2 +74829053ns 1324516 1c000e82 fff60613 addi x12, x12, -1 x12=000000dd x12:000000de +74829073ns 1324517 1c000e84 00130313 addi x6, x6, 1 x6=1c009cd3 x6:1c009cd2 +74829092ns 1324518 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000dd +74829172ns 1324522 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009cd3 PA:1c009cd3 +74829191ns 1324523 1c000e82 fff60613 addi x12, x12, -1 x12=000000dc x12:000000dd +74829211ns 1324524 1c000e84 00130313 addi x6, x6, 1 x6=1c009cd4 x6:1c009cd3 +74829231ns 1324525 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000dc +74829310ns 1324529 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009cd4 PA:1c009cd4 +74829330ns 1324530 1c000e82 fff60613 addi x12, x12, -1 x12=000000db x12:000000dc +74829350ns 1324531 1c000e84 00130313 addi x6, x6, 1 x6=1c009cd5 x6:1c009cd4 +74829369ns 1324532 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000db +74829449ns 1324536 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009cd5 PA:1c009cd5 +74829468ns 1324537 1c000e82 fff60613 addi x12, x12, -1 x12=000000da x12:000000db +74829488ns 1324538 1c000e84 00130313 addi x6, x6, 1 x6=1c009cd6 x6:1c009cd5 +74829508ns 1324539 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000da +74829587ns 1324543 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009cd6 PA:1c009cd6 +74829607ns 1324544 1c000e82 fff60613 addi x12, x12, -1 x12=000000d9 x12:000000da +74829627ns 1324545 1c000e84 00130313 addi x6, x6, 1 x6=1c009cd7 x6:1c009cd6 +74829647ns 1324546 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d9 +74829726ns 1324550 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009cd7 PA:1c009cd7 +74829746ns 1324551 1c000e82 fff60613 addi x12, x12, -1 x12=000000d8 x12:000000d9 +74829765ns 1324552 1c000e84 00130313 addi x6, x6, 1 x6=1c009cd8 x6:1c009cd7 +74829785ns 1324553 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d8 +74829864ns 1324557 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009cd8 PA:1c009cd8 +74829884ns 1324558 1c000e82 fff60613 addi x12, x12, -1 x12=000000d7 x12:000000d8 +74829904ns 1324559 1c000e84 00130313 addi x6, x6, 1 x6=1c009cd9 x6:1c009cd8 +74829924ns 1324560 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d7 +74830003ns 1324564 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009cd9 PA:1c009cd9 +74830023ns 1324565 1c000e82 fff60613 addi x12, x12, -1 x12=000000d6 x12:000000d7 +74830042ns 1324566 1c000e84 00130313 addi x6, x6, 1 x6=1c009cda x6:1c009cd9 +74830062ns 1324567 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d6 +74830141ns 1324571 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009cda PA:1c009cda +74830161ns 1324572 1c000e82 fff60613 addi x12, x12, -1 x12=000000d5 x12:000000d6 +74830181ns 1324573 1c000e84 00130313 addi x6, x6, 1 x6=1c009cdb x6:1c009cda +74830201ns 1324574 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d5 +74830280ns 1324578 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009cdb PA:1c009cdb +74830300ns 1324579 1c000e82 fff60613 addi x12, x12, -1 x12=000000d4 x12:000000d5 +74830320ns 1324580 1c000e84 00130313 addi x6, x6, 1 x6=1c009cdc x6:1c009cdb +74830339ns 1324581 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d4 +74830418ns 1324585 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009cdc PA:1c009cdc +74830438ns 1324586 1c000e82 fff60613 addi x12, x12, -1 x12=000000d3 x12:000000d4 +74830458ns 1324587 1c000e84 00130313 addi x6, x6, 1 x6=1c009cdd x6:1c009cdc +74830478ns 1324588 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d3 +74830557ns 1324592 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009cdd PA:1c009cdd +74830577ns 1324593 1c000e82 fff60613 addi x12, x12, -1 x12=000000d2 x12:000000d3 +74830597ns 1324594 1c000e84 00130313 addi x6, x6, 1 x6=1c009cde x6:1c009cdd +74830616ns 1324595 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d2 +74830696ns 1324599 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009cde PA:1c009cde +74830715ns 1324600 1c000e82 fff60613 addi x12, x12, -1 x12=000000d1 x12:000000d2 +74830735ns 1324601 1c000e84 00130313 addi x6, x6, 1 x6=1c009cdf x6:1c009cde +74830755ns 1324602 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d1 +74830834ns 1324606 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009cdf PA:1c009cdf +74830854ns 1324607 1c000e82 fff60613 addi x12, x12, -1 x12=000000d0 x12:000000d1 +74830874ns 1324608 1c000e84 00130313 addi x6, x6, 1 x6=1c009ce0 x6:1c009cdf +74830893ns 1324609 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d0 +74830973ns 1324613 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ce0 PA:1c009ce0 +74830992ns 1324614 1c000e82 fff60613 addi x12, x12, -1 x12=000000cf x12:000000d0 +74831012ns 1324615 1c000e84 00130313 addi x6, x6, 1 x6=1c009ce1 x6:1c009ce0 +74831032ns 1324616 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000cf +74831111ns 1324620 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ce1 PA:1c009ce1 +74831131ns 1324621 1c000e82 fff60613 addi x12, x12, -1 x12=000000ce x12:000000cf +74831151ns 1324622 1c000e84 00130313 addi x6, x6, 1 x6=1c009ce2 x6:1c009ce1 +74831171ns 1324623 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ce +74831250ns 1324627 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ce2 PA:1c009ce2 +74831270ns 1324628 1c000e82 fff60613 addi x12, x12, -1 x12=000000cd x12:000000ce +74831289ns 1324629 1c000e84 00130313 addi x6, x6, 1 x6=1c009ce3 x6:1c009ce2 +74831309ns 1324630 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000cd +74831388ns 1324634 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ce3 PA:1c009ce3 +74831408ns 1324635 1c000e82 fff60613 addi x12, x12, -1 x12=000000cc x12:000000cd +74831428ns 1324636 1c000e84 00130313 addi x6, x6, 1 x6=1c009ce4 x6:1c009ce3 +74831448ns 1324637 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000cc +74831527ns 1324641 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ce4 PA:1c009ce4 +74831547ns 1324642 1c000e82 fff60613 addi x12, x12, -1 x12=000000cb x12:000000cc +74831566ns 1324643 1c000e84 00130313 addi x6, x6, 1 x6=1c009ce5 x6:1c009ce4 +74831586ns 1324644 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000cb +74831665ns 1324648 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ce5 PA:1c009ce5 +74831685ns 1324649 1c000e82 fff60613 addi x12, x12, -1 x12=000000ca x12:000000cb +74831705ns 1324650 1c000e84 00130313 addi x6, x6, 1 x6=1c009ce6 x6:1c009ce5 +74831725ns 1324651 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ca +74831804ns 1324655 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ce6 PA:1c009ce6 +74831824ns 1324656 1c000e82 fff60613 addi x12, x12, -1 x12=000000c9 x12:000000ca +74831843ns 1324657 1c000e84 00130313 addi x6, x6, 1 x6=1c009ce7 x6:1c009ce6 +74831863ns 1324658 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c9 +74831942ns 1324662 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ce7 PA:1c009ce7 +74831962ns 1324663 1c000e82 fff60613 addi x12, x12, -1 x12=000000c8 x12:000000c9 +74831982ns 1324664 1c000e84 00130313 addi x6, x6, 1 x6=1c009ce8 x6:1c009ce7 +74832002ns 1324665 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c8 +74832081ns 1324669 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ce8 PA:1c009ce8 +74832101ns 1324670 1c000e82 fff60613 addi x12, x12, -1 x12=000000c7 x12:000000c8 +74832121ns 1324671 1c000e84 00130313 addi x6, x6, 1 x6=1c009ce9 x6:1c009ce8 +74832140ns 1324672 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c7 +74832220ns 1324676 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ce9 PA:1c009ce9 +74832239ns 1324677 1c000e82 fff60613 addi x12, x12, -1 x12=000000c6 x12:000000c7 +74832259ns 1324678 1c000e84 00130313 addi x6, x6, 1 x6=1c009cea x6:1c009ce9 +74832279ns 1324679 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c6 +74832358ns 1324683 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009cea PA:1c009cea +74832378ns 1324684 1c000e82 fff60613 addi x12, x12, -1 x12=000000c5 x12:000000c6 +74832398ns 1324685 1c000e84 00130313 addi x6, x6, 1 x6=1c009ceb x6:1c009cea +74832417ns 1324686 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c5 +74832497ns 1324690 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ceb PA:1c009ceb +74832516ns 1324691 1c000e82 fff60613 addi x12, x12, -1 x12=000000c4 x12:000000c5 +74832536ns 1324692 1c000e84 00130313 addi x6, x6, 1 x6=1c009cec x6:1c009ceb +74832556ns 1324693 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c4 +74832635ns 1324697 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009cec PA:1c009cec +74832655ns 1324698 1c000e82 fff60613 addi x12, x12, -1 x12=000000c3 x12:000000c4 +74832675ns 1324699 1c000e84 00130313 addi x6, x6, 1 x6=1c009ced x6:1c009cec +74832695ns 1324700 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c3 +74832774ns 1324704 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009ced PA:1c009ced +74832794ns 1324705 1c000e82 fff60613 addi x12, x12, -1 x12=000000c2 x12:000000c3 +74832813ns 1324706 1c000e84 00130313 addi x6, x6, 1 x6=1c009cee x6:1c009ced +74832833ns 1324707 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c2 +74832912ns 1324711 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009cee PA:1c009cee +74832932ns 1324712 1c000e82 fff60613 addi x12, x12, -1 x12=000000c1 x12:000000c2 +74832952ns 1324713 1c000e84 00130313 addi x6, x6, 1 x6=1c009cef x6:1c009cee +74832972ns 1324714 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c1 +74833051ns 1324718 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009cef PA:1c009cef +74833071ns 1324719 1c000e82 fff60613 addi x12, x12, -1 x12=000000c0 x12:000000c1 +74833090ns 1324720 1c000e84 00130313 addi x6, x6, 1 x6=1c009cf0 x6:1c009cef +74833110ns 1324721 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c0 +74833189ns 1324725 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009cf0 PA:1c009cf0 +74833209ns 1324726 1c000e82 fff60613 addi x12, x12, -1 x12=000000bf x12:000000c0 +74833229ns 1324727 1c000e84 00130313 addi x6, x6, 1 x6=1c009cf1 x6:1c009cf0 +74833249ns 1324728 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000bf +74833328ns 1324732 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009cf1 PA:1c009cf1 +74833348ns 1324733 1c000e82 fff60613 addi x12, x12, -1 x12=000000be x12:000000bf +74833367ns 1324734 1c000e84 00130313 addi x6, x6, 1 x6=1c009cf2 x6:1c009cf1 +74833387ns 1324735 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000be +74833466ns 1324739 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009cf2 PA:1c009cf2 +74833486ns 1324740 1c000e82 fff60613 addi x12, x12, -1 x12=000000bd x12:000000be +74833506ns 1324741 1c000e84 00130313 addi x6, x6, 1 x6=1c009cf3 x6:1c009cf2 +74833526ns 1324742 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000bd +74833605ns 1324746 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009cf3 PA:1c009cf3 +74833625ns 1324747 1c000e82 fff60613 addi x12, x12, -1 x12=000000bc x12:000000bd +74833645ns 1324748 1c000e84 00130313 addi x6, x6, 1 x6=1c009cf4 x6:1c009cf3 +74833664ns 1324749 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000bc +74833744ns 1324753 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009cf4 PA:1c009cf4 +74833763ns 1324754 1c000e82 fff60613 addi x12, x12, -1 x12=000000bb x12:000000bc +74833783ns 1324755 1c000e84 00130313 addi x6, x6, 1 x6=1c009cf5 x6:1c009cf4 +74833803ns 1324756 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000bb +74833882ns 1324760 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009cf5 PA:1c009cf5 +74833902ns 1324761 1c000e82 fff60613 addi x12, x12, -1 x12=000000ba x12:000000bb +74833922ns 1324762 1c000e84 00130313 addi x6, x6, 1 x6=1c009cf6 x6:1c009cf5 +74833941ns 1324763 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ba +74834021ns 1324767 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009cf6 PA:1c009cf6 +74834040ns 1324768 1c000e82 fff60613 addi x12, x12, -1 x12=000000b9 x12:000000ba +74834060ns 1324769 1c000e84 00130313 addi x6, x6, 1 x6=1c009cf7 x6:1c009cf6 +74834080ns 1324770 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b9 +74834159ns 1324774 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009cf7 PA:1c009cf7 +74834179ns 1324775 1c000e82 fff60613 addi x12, x12, -1 x12=000000b8 x12:000000b9 +74834199ns 1324776 1c000e84 00130313 addi x6, x6, 1 x6=1c009cf8 x6:1c009cf7 +74834219ns 1324777 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b8 +74834298ns 1324781 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009cf8 PA:1c009cf8 +74834317ns 1324782 1c000e82 fff60613 addi x12, x12, -1 x12=000000b7 x12:000000b8 +74834337ns 1324783 1c000e84 00130313 addi x6, x6, 1 x6=1c009cf9 x6:1c009cf8 +74834357ns 1324784 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b7 +74834436ns 1324788 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009cf9 PA:1c009cf9 +74834456ns 1324789 1c000e82 fff60613 addi x12, x12, -1 x12=000000b6 x12:000000b7 +74834476ns 1324790 1c000e84 00130313 addi x6, x6, 1 x6=1c009cfa x6:1c009cf9 +74834496ns 1324791 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b6 +74834575ns 1324795 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009cfa PA:1c009cfa +74834595ns 1324796 1c000e82 fff60613 addi x12, x12, -1 x12=000000b5 x12:000000b6 +74834614ns 1324797 1c000e84 00130313 addi x6, x6, 1 x6=1c009cfb x6:1c009cfa +74834634ns 1324798 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b5 +74834713ns 1324802 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009cfb PA:1c009cfb +74834733ns 1324803 1c000e82 fff60613 addi x12, x12, -1 x12=000000b4 x12:000000b5 +74834753ns 1324804 1c000e84 00130313 addi x6, x6, 1 x6=1c009cfc x6:1c009cfb +74834773ns 1324805 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b4 +74834852ns 1324809 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009cfc PA:1c009cfc +74834872ns 1324810 1c000e82 fff60613 addi x12, x12, -1 x12=000000b3 x12:000000b4 +74834891ns 1324811 1c000e84 00130313 addi x6, x6, 1 x6=1c009cfd x6:1c009cfc +74834911ns 1324812 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b3 +74834990ns 1324816 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009cfd PA:1c009cfd +74835010ns 1324817 1c000e82 fff60613 addi x12, x12, -1 x12=000000b2 x12:000000b3 +74835030ns 1324818 1c000e84 00130313 addi x6, x6, 1 x6=1c009cfe x6:1c009cfd +74835050ns 1324819 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b2 +74835129ns 1324823 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009cfe PA:1c009cfe +74835149ns 1324824 1c000e82 fff60613 addi x12, x12, -1 x12=000000b1 x12:000000b2 +74835169ns 1324825 1c000e84 00130313 addi x6, x6, 1 x6=1c009cff x6:1c009cfe +74835188ns 1324826 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b1 +74835268ns 1324830 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009cff PA:1c009cff +74835287ns 1324831 1c000e82 fff60613 addi x12, x12, -1 x12=000000b0 x12:000000b1 +74835307ns 1324832 1c000e84 00130313 addi x6, x6, 1 x6=1c009d00 x6:1c009cff +74835327ns 1324833 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b0 +74835406ns 1324837 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d00 PA:1c009d00 +74835426ns 1324838 1c000e82 fff60613 addi x12, x12, -1 x12=000000af x12:000000b0 +74835446ns 1324839 1c000e84 00130313 addi x6, x6, 1 x6=1c009d01 x6:1c009d00 +74835465ns 1324840 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000af +74835545ns 1324844 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d01 PA:1c009d01 +74835564ns 1324845 1c000e82 fff60613 addi x12, x12, -1 x12=000000ae x12:000000af +74835584ns 1324846 1c000e84 00130313 addi x6, x6, 1 x6=1c009d02 x6:1c009d01 +74835604ns 1324847 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ae +74835683ns 1324851 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d02 PA:1c009d02 +74835703ns 1324852 1c000e82 fff60613 addi x12, x12, -1 x12=000000ad x12:000000ae +74835723ns 1324853 1c000e84 00130313 addi x6, x6, 1 x6=1c009d03 x6:1c009d02 +74835743ns 1324854 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ad +74835822ns 1324858 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d03 PA:1c009d03 +74835841ns 1324859 1c000e82 fff60613 addi x12, x12, -1 x12=000000ac x12:000000ad +74835861ns 1324860 1c000e84 00130313 addi x6, x6, 1 x6=1c009d04 x6:1c009d03 +74835881ns 1324861 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ac +74835960ns 1324865 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d04 PA:1c009d04 +74835980ns 1324866 1c000e82 fff60613 addi x12, x12, -1 x12=000000ab x12:000000ac +74836000ns 1324867 1c000e84 00130313 addi x6, x6, 1 x6=1c009d05 x6:1c009d04 +74836020ns 1324868 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ab +74836099ns 1324872 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d05 PA:1c009d05 +74836119ns 1324873 1c000e82 fff60613 addi x12, x12, -1 x12=000000aa x12:000000ab +74836138ns 1324874 1c000e84 00130313 addi x6, x6, 1 x6=1c009d06 x6:1c009d05 +74836158ns 1324875 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000aa +74836237ns 1324879 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d06 PA:1c009d06 +74836257ns 1324880 1c000e82 fff60613 addi x12, x12, -1 x12=000000a9 x12:000000aa +74836277ns 1324881 1c000e84 00130313 addi x6, x6, 1 x6=1c009d07 x6:1c009d06 +74836297ns 1324882 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a9 +74836376ns 1324886 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d07 PA:1c009d07 +74836396ns 1324887 1c000e82 fff60613 addi x12, x12, -1 x12=000000a8 x12:000000a9 +74836415ns 1324888 1c000e84 00130313 addi x6, x6, 1 x6=1c009d08 x6:1c009d07 +74836435ns 1324889 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a8 +74836514ns 1324893 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d08 PA:1c009d08 +74836534ns 1324894 1c000e82 fff60613 addi x12, x12, -1 x12=000000a7 x12:000000a8 +74836554ns 1324895 1c000e84 00130313 addi x6, x6, 1 x6=1c009d09 x6:1c009d08 +74836574ns 1324896 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a7 +74836653ns 1324900 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d09 PA:1c009d09 +74836673ns 1324901 1c000e82 fff60613 addi x12, x12, -1 x12=000000a6 x12:000000a7 +74836693ns 1324902 1c000e84 00130313 addi x6, x6, 1 x6=1c009d0a x6:1c009d09 +74836712ns 1324903 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a6 +74836791ns 1324907 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d0a PA:1c009d0a +74836811ns 1324908 1c000e82 fff60613 addi x12, x12, -1 x12=000000a5 x12:000000a6 +74836831ns 1324909 1c000e84 00130313 addi x6, x6, 1 x6=1c009d0b x6:1c009d0a +74836851ns 1324910 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a5 +74836930ns 1324914 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d0b PA:1c009d0b +74836950ns 1324915 1c000e82 fff60613 addi x12, x12, -1 x12=000000a4 x12:000000a5 +74836970ns 1324916 1c000e84 00130313 addi x6, x6, 1 x6=1c009d0c x6:1c009d0b +74836989ns 1324917 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a4 +74837069ns 1324921 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d0c PA:1c009d0c +74837088ns 1324922 1c000e82 fff60613 addi x12, x12, -1 x12=000000a3 x12:000000a4 +74837108ns 1324923 1c000e84 00130313 addi x6, x6, 1 x6=1c009d0d x6:1c009d0c +74837128ns 1324924 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a3 +74837207ns 1324928 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d0d PA:1c009d0d +74837227ns 1324929 1c000e82 fff60613 addi x12, x12, -1 x12=000000a2 x12:000000a3 +74837247ns 1324930 1c000e84 00130313 addi x6, x6, 1 x6=1c009d0e x6:1c009d0d +74837267ns 1324931 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a2 +74837346ns 1324935 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d0e PA:1c009d0e +74837365ns 1324936 1c000e82 fff60613 addi x12, x12, -1 x12=000000a1 x12:000000a2 +74837385ns 1324937 1c000e84 00130313 addi x6, x6, 1 x6=1c009d0f x6:1c009d0e +74837405ns 1324938 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a1 +74837484ns 1324942 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d0f PA:1c009d0f +74837504ns 1324943 1c000e82 fff60613 addi x12, x12, -1 x12=000000a0 x12:000000a1 +74837524ns 1324944 1c000e84 00130313 addi x6, x6, 1 x6=1c009d10 x6:1c009d0f +74837544ns 1324945 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a0 +74837623ns 1324949 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d10 PA:1c009d10 +74837643ns 1324950 1c000e82 fff60613 addi x12, x12, -1 x12=0000009f x12:000000a0 +74837662ns 1324951 1c000e84 00130313 addi x6, x6, 1 x6=1c009d11 x6:1c009d10 +74837682ns 1324952 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000009f +74837761ns 1324956 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d11 PA:1c009d11 +74837781ns 1324957 1c000e82 fff60613 addi x12, x12, -1 x12=0000009e x12:0000009f +74837801ns 1324958 1c000e84 00130313 addi x6, x6, 1 x6=1c009d12 x6:1c009d11 +74837821ns 1324959 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000009e +74837900ns 1324963 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d12 PA:1c009d12 +74837920ns 1324964 1c000e82 fff60613 addi x12, x12, -1 x12=0000009d x12:0000009e +74837939ns 1324965 1c000e84 00130313 addi x6, x6, 1 x6=1c009d13 x6:1c009d12 +74837959ns 1324966 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000009d +74838038ns 1324970 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d13 PA:1c009d13 +74838058ns 1324971 1c000e82 fff60613 addi x12, x12, -1 x12=0000009c x12:0000009d +74838078ns 1324972 1c000e84 00130313 addi x6, x6, 1 x6=1c009d14 x6:1c009d13 +74838098ns 1324973 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000009c +74838177ns 1324977 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d14 PA:1c009d14 +74838197ns 1324978 1c000e82 fff60613 addi x12, x12, -1 x12=0000009b x12:0000009c +74838217ns 1324979 1c000e84 00130313 addi x6, x6, 1 x6=1c009d15 x6:1c009d14 +74838236ns 1324980 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000009b +74838315ns 1324984 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d15 PA:1c009d15 +74838335ns 1324985 1c000e82 fff60613 addi x12, x12, -1 x12=0000009a x12:0000009b +74838355ns 1324986 1c000e84 00130313 addi x6, x6, 1 x6=1c009d16 x6:1c009d15 +74838375ns 1324987 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000009a +74838454ns 1324991 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d16 PA:1c009d16 +74838474ns 1324992 1c000e82 fff60613 addi x12, x12, -1 x12=00000099 x12:0000009a +74838494ns 1324993 1c000e84 00130313 addi x6, x6, 1 x6=1c009d17 x6:1c009d16 +74838513ns 1324994 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000099 +74838593ns 1324998 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d17 PA:1c009d17 +74838612ns 1324999 1c000e82 fff60613 addi x12, x12, -1 x12=00000098 x12:00000099 +74838632ns 1325000 1c000e84 00130313 addi x6, x6, 1 x6=1c009d18 x6:1c009d17 +74838652ns 1325001 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000098 +74838731ns 1325005 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d18 PA:1c009d18 +74838751ns 1325006 1c000e82 fff60613 addi x12, x12, -1 x12=00000097 x12:00000098 +74838771ns 1325007 1c000e84 00130313 addi x6, x6, 1 x6=1c009d19 x6:1c009d18 +74838790ns 1325008 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000097 +74838870ns 1325012 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d19 PA:1c009d19 +74838889ns 1325013 1c000e82 fff60613 addi x12, x12, -1 x12=00000096 x12:00000097 +74838909ns 1325014 1c000e84 00130313 addi x6, x6, 1 x6=1c009d1a x6:1c009d19 +74838929ns 1325015 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000096 +74839008ns 1325019 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d1a PA:1c009d1a +74839028ns 1325020 1c000e82 fff60613 addi x12, x12, -1 x12=00000095 x12:00000096 +74839048ns 1325021 1c000e84 00130313 addi x6, x6, 1 x6=1c009d1b x6:1c009d1a +74839068ns 1325022 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000095 +74839147ns 1325026 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d1b PA:1c009d1b +74839167ns 1325027 1c000e82 fff60613 addi x12, x12, -1 x12=00000094 x12:00000095 +74839186ns 1325028 1c000e84 00130313 addi x6, x6, 1 x6=1c009d1c x6:1c009d1b +74839206ns 1325029 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000094 +74839285ns 1325033 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d1c PA:1c009d1c +74839305ns 1325034 1c000e82 fff60613 addi x12, x12, -1 x12=00000093 x12:00000094 +74839325ns 1325035 1c000e84 00130313 addi x6, x6, 1 x6=1c009d1d x6:1c009d1c +74839345ns 1325036 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000093 +74839424ns 1325040 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d1d PA:1c009d1d +74839444ns 1325041 1c000e82 fff60613 addi x12, x12, -1 x12=00000092 x12:00000093 +74839463ns 1325042 1c000e84 00130313 addi x6, x6, 1 x6=1c009d1e x6:1c009d1d +74839483ns 1325043 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000092 +74839562ns 1325047 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d1e PA:1c009d1e +74839582ns 1325048 1c000e82 fff60613 addi x12, x12, -1 x12=00000091 x12:00000092 +74839602ns 1325049 1c000e84 00130313 addi x6, x6, 1 x6=1c009d1f x6:1c009d1e +74839622ns 1325050 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000091 +74839701ns 1325054 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d1f PA:1c009d1f +74839721ns 1325055 1c000e82 fff60613 addi x12, x12, -1 x12=00000090 x12:00000091 +74839741ns 1325056 1c000e84 00130313 addi x6, x6, 1 x6=1c009d20 x6:1c009d1f +74839760ns 1325057 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000090 +74839839ns 1325061 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d20 PA:1c009d20 +74839859ns 1325062 1c000e82 fff60613 addi x12, x12, -1 x12=0000008f x12:00000090 +74839879ns 1325063 1c000e84 00130313 addi x6, x6, 1 x6=1c009d21 x6:1c009d20 +74839899ns 1325064 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000008f +74839978ns 1325068 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d21 PA:1c009d21 +74839998ns 1325069 1c000e82 fff60613 addi x12, x12, -1 x12=0000008e x12:0000008f +74840018ns 1325070 1c000e84 00130313 addi x6, x6, 1 x6=1c009d22 x6:1c009d21 +74840037ns 1325071 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000008e +74840117ns 1325075 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d22 PA:1c009d22 +74840136ns 1325076 1c000e82 fff60613 addi x12, x12, -1 x12=0000008d x12:0000008e +74840156ns 1325077 1c000e84 00130313 addi x6, x6, 1 x6=1c009d23 x6:1c009d22 +74840176ns 1325078 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000008d +74840255ns 1325082 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d23 PA:1c009d23 +74840275ns 1325083 1c000e82 fff60613 addi x12, x12, -1 x12=0000008c x12:0000008d +74840295ns 1325084 1c000e84 00130313 addi x6, x6, 1 x6=1c009d24 x6:1c009d23 +74840314ns 1325085 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000008c +74840394ns 1325089 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d24 PA:1c009d24 +74840413ns 1325090 1c000e82 fff60613 addi x12, x12, -1 x12=0000008b x12:0000008c +74840433ns 1325091 1c000e84 00130313 addi x6, x6, 1 x6=1c009d25 x6:1c009d24 +74840453ns 1325092 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000008b +74840532ns 1325096 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d25 PA:1c009d25 +74840552ns 1325097 1c000e82 fff60613 addi x12, x12, -1 x12=0000008a x12:0000008b +74840572ns 1325098 1c000e84 00130313 addi x6, x6, 1 x6=1c009d26 x6:1c009d25 +74840592ns 1325099 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000008a +74840671ns 1325103 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d26 PA:1c009d26 +74840691ns 1325104 1c000e82 fff60613 addi x12, x12, -1 x12=00000089 x12:0000008a +74840710ns 1325105 1c000e84 00130313 addi x6, x6, 1 x6=1c009d27 x6:1c009d26 +74840730ns 1325106 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000089 +74840809ns 1325110 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d27 PA:1c009d27 +74840829ns 1325111 1c000e82 fff60613 addi x12, x12, -1 x12=00000088 x12:00000089 +74840849ns 1325112 1c000e84 00130313 addi x6, x6, 1 x6=1c009d28 x6:1c009d27 +74840869ns 1325113 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000088 +74840948ns 1325117 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d28 PA:1c009d28 +74840968ns 1325118 1c000e82 fff60613 addi x12, x12, -1 x12=00000087 x12:00000088 +74840987ns 1325119 1c000e84 00130313 addi x6, x6, 1 x6=1c009d29 x6:1c009d28 +74841007ns 1325120 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000087 +74841086ns 1325124 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d29 PA:1c009d29 +74841106ns 1325125 1c000e82 fff60613 addi x12, x12, -1 x12=00000086 x12:00000087 +74841126ns 1325126 1c000e84 00130313 addi x6, x6, 1 x6=1c009d2a x6:1c009d29 +74841146ns 1325127 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000086 +74841225ns 1325131 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d2a PA:1c009d2a +74841245ns 1325132 1c000e82 fff60613 addi x12, x12, -1 x12=00000085 x12:00000086 +74841264ns 1325133 1c000e84 00130313 addi x6, x6, 1 x6=1c009d2b x6:1c009d2a +74841284ns 1325134 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000085 +74841363ns 1325138 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d2b PA:1c009d2b +74841383ns 1325139 1c000e82 fff60613 addi x12, x12, -1 x12=00000084 x12:00000085 +74841403ns 1325140 1c000e84 00130313 addi x6, x6, 1 x6=1c009d2c x6:1c009d2b +74841423ns 1325141 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000084 +74841502ns 1325145 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d2c PA:1c009d2c +74841522ns 1325146 1c000e82 fff60613 addi x12, x12, -1 x12=00000083 x12:00000084 +74841542ns 1325147 1c000e84 00130313 addi x6, x6, 1 x6=1c009d2d x6:1c009d2c +74841561ns 1325148 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000083 +74841641ns 1325152 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d2d PA:1c009d2d +74841660ns 1325153 1c000e82 fff60613 addi x12, x12, -1 x12=00000082 x12:00000083 +74841680ns 1325154 1c000e84 00130313 addi x6, x6, 1 x6=1c009d2e x6:1c009d2d +74841700ns 1325155 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000082 +74841779ns 1325159 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d2e PA:1c009d2e +74841799ns 1325160 1c000e82 fff60613 addi x12, x12, -1 x12=00000081 x12:00000082 +74841819ns 1325161 1c000e84 00130313 addi x6, x6, 1 x6=1c009d2f x6:1c009d2e +74841838ns 1325162 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000081 +74841918ns 1325166 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d2f PA:1c009d2f +74841937ns 1325167 1c000e82 fff60613 addi x12, x12, -1 x12=00000080 x12:00000081 +74841957ns 1325168 1c000e84 00130313 addi x6, x6, 1 x6=1c009d30 x6:1c009d2f +74841977ns 1325169 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000080 +74842056ns 1325173 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d30 PA:1c009d30 +74842076ns 1325174 1c000e82 fff60613 addi x12, x12, -1 x12=0000007f x12:00000080 +74842096ns 1325175 1c000e84 00130313 addi x6, x6, 1 x6=1c009d31 x6:1c009d30 +74842116ns 1325176 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000007f +74842195ns 1325180 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d31 PA:1c009d31 +74842215ns 1325181 1c000e82 fff60613 addi x12, x12, -1 x12=0000007e x12:0000007f +74842234ns 1325182 1c000e84 00130313 addi x6, x6, 1 x6=1c009d32 x6:1c009d31 +74842254ns 1325183 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000007e +74842333ns 1325187 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d32 PA:1c009d32 +74842353ns 1325188 1c000e82 fff60613 addi x12, x12, -1 x12=0000007d x12:0000007e +74842373ns 1325189 1c000e84 00130313 addi x6, x6, 1 x6=1c009d33 x6:1c009d32 +74842393ns 1325190 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000007d +74842472ns 1325194 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d33 PA:1c009d33 +74842492ns 1325195 1c000e82 fff60613 addi x12, x12, -1 x12=0000007c x12:0000007d +74842511ns 1325196 1c000e84 00130313 addi x6, x6, 1 x6=1c009d34 x6:1c009d33 +74842531ns 1325197 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000007c +74842610ns 1325201 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d34 PA:1c009d34 +74842630ns 1325202 1c000e82 fff60613 addi x12, x12, -1 x12=0000007b x12:0000007c +74842650ns 1325203 1c000e84 00130313 addi x6, x6, 1 x6=1c009d35 x6:1c009d34 +74842670ns 1325204 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000007b +74842749ns 1325208 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d35 PA:1c009d35 +74842769ns 1325209 1c000e82 fff60613 addi x12, x12, -1 x12=0000007a x12:0000007b +74842788ns 1325210 1c000e84 00130313 addi x6, x6, 1 x6=1c009d36 x6:1c009d35 +74842808ns 1325211 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000007a +74842887ns 1325215 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d36 PA:1c009d36 +74842907ns 1325216 1c000e82 fff60613 addi x12, x12, -1 x12=00000079 x12:0000007a +74842927ns 1325217 1c000e84 00130313 addi x6, x6, 1 x6=1c009d37 x6:1c009d36 +74842947ns 1325218 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000079 +74843026ns 1325222 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d37 PA:1c009d37 +74843046ns 1325223 1c000e82 fff60613 addi x12, x12, -1 x12=00000078 x12:00000079 +74843066ns 1325224 1c000e84 00130313 addi x6, x6, 1 x6=1c009d38 x6:1c009d37 +74843085ns 1325225 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000078 +74843165ns 1325229 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d38 PA:1c009d38 +74843184ns 1325230 1c000e82 fff60613 addi x12, x12, -1 x12=00000077 x12:00000078 +74843204ns 1325231 1c000e84 00130313 addi x6, x6, 1 x6=1c009d39 x6:1c009d38 +74843224ns 1325232 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000077 +74843303ns 1325236 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d39 PA:1c009d39 +74843323ns 1325237 1c000e82 fff60613 addi x12, x12, -1 x12=00000076 x12:00000077 +74843343ns 1325238 1c000e84 00130313 addi x6, x6, 1 x6=1c009d3a x6:1c009d39 +74843362ns 1325239 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000076 +74843442ns 1325243 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d3a PA:1c009d3a +74843461ns 1325244 1c000e82 fff60613 addi x12, x12, -1 x12=00000075 x12:00000076 +74843481ns 1325245 1c000e84 00130313 addi x6, x6, 1 x6=1c009d3b x6:1c009d3a +74843501ns 1325246 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000075 +74843580ns 1325250 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d3b PA:1c009d3b +74843600ns 1325251 1c000e82 fff60613 addi x12, x12, -1 x12=00000074 x12:00000075 +74843620ns 1325252 1c000e84 00130313 addi x6, x6, 1 x6=1c009d3c x6:1c009d3b +74843640ns 1325253 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000074 +74843719ns 1325257 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d3c PA:1c009d3c +74843738ns 1325258 1c000e82 fff60613 addi x12, x12, -1 x12=00000073 x12:00000074 +74843758ns 1325259 1c000e84 00130313 addi x6, x6, 1 x6=1c009d3d x6:1c009d3c +74843778ns 1325260 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000073 +74843857ns 1325264 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d3d PA:1c009d3d +74843877ns 1325265 1c000e82 fff60613 addi x12, x12, -1 x12=00000072 x12:00000073 +74843897ns 1325266 1c000e84 00130313 addi x6, x6, 1 x6=1c009d3e x6:1c009d3d +74843917ns 1325267 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000072 +74843996ns 1325271 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d3e PA:1c009d3e +74844016ns 1325272 1c000e82 fff60613 addi x12, x12, -1 x12=00000071 x12:00000072 +74844035ns 1325273 1c000e84 00130313 addi x6, x6, 1 x6=1c009d3f x6:1c009d3e +74844055ns 1325274 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000071 +74844134ns 1325278 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d3f PA:1c009d3f +74844154ns 1325279 1c000e82 fff60613 addi x12, x12, -1 x12=00000070 x12:00000071 +74844174ns 1325280 1c000e84 00130313 addi x6, x6, 1 x6=1c009d40 x6:1c009d3f +74844194ns 1325281 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000070 +74844273ns 1325285 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d40 PA:1c009d40 +74844293ns 1325286 1c000e82 fff60613 addi x12, x12, -1 x12=0000006f x12:00000070 +74844312ns 1325287 1c000e84 00130313 addi x6, x6, 1 x6=1c009d41 x6:1c009d40 +74844332ns 1325288 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000006f +74844411ns 1325292 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d41 PA:1c009d41 +74844431ns 1325293 1c000e82 fff60613 addi x12, x12, -1 x12=0000006e x12:0000006f +74844451ns 1325294 1c000e84 00130313 addi x6, x6, 1 x6=1c009d42 x6:1c009d41 +74844471ns 1325295 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000006e +74844550ns 1325299 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d42 PA:1c009d42 +74844570ns 1325300 1c000e82 fff60613 addi x12, x12, -1 x12=0000006d x12:0000006e +74844590ns 1325301 1c000e84 00130313 addi x6, x6, 1 x6=1c009d43 x6:1c009d42 +74844609ns 1325302 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000006d +74844689ns 1325306 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d43 PA:1c009d43 +74844708ns 1325307 1c000e82 fff60613 addi x12, x12, -1 x12=0000006c x12:0000006d +74844728ns 1325308 1c000e84 00130313 addi x6, x6, 1 x6=1c009d44 x6:1c009d43 +74844748ns 1325309 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000006c +74844827ns 1325313 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d44 PA:1c009d44 +74844847ns 1325314 1c000e82 fff60613 addi x12, x12, -1 x12=0000006b x12:0000006c +74844867ns 1325315 1c000e84 00130313 addi x6, x6, 1 x6=1c009d45 x6:1c009d44 +74844886ns 1325316 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000006b +74844966ns 1325320 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d45 PA:1c009d45 +74844985ns 1325321 1c000e82 fff60613 addi x12, x12, -1 x12=0000006a x12:0000006b +74845005ns 1325322 1c000e84 00130313 addi x6, x6, 1 x6=1c009d46 x6:1c009d45 +74845025ns 1325323 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000006a +74845104ns 1325327 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d46 PA:1c009d46 +74845124ns 1325328 1c000e82 fff60613 addi x12, x12, -1 x12=00000069 x12:0000006a +74845144ns 1325329 1c000e84 00130313 addi x6, x6, 1 x6=1c009d47 x6:1c009d46 +74845164ns 1325330 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000069 +74845243ns 1325334 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d47 PA:1c009d47 +74845262ns 1325335 1c000e82 fff60613 addi x12, x12, -1 x12=00000068 x12:00000069 +74845282ns 1325336 1c000e84 00130313 addi x6, x6, 1 x6=1c009d48 x6:1c009d47 +74845302ns 1325337 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000068 +74845381ns 1325341 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d48 PA:1c009d48 +74845401ns 1325342 1c000e82 fff60613 addi x12, x12, -1 x12=00000067 x12:00000068 +74845421ns 1325343 1c000e84 00130313 addi x6, x6, 1 x6=1c009d49 x6:1c009d48 +74845441ns 1325344 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000067 +74845520ns 1325348 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d49 PA:1c009d49 +74845540ns 1325349 1c000e82 fff60613 addi x12, x12, -1 x12=00000066 x12:00000067 +74845559ns 1325350 1c000e84 00130313 addi x6, x6, 1 x6=1c009d4a x6:1c009d49 +74845579ns 1325351 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000066 +74845658ns 1325355 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d4a PA:1c009d4a +74845678ns 1325356 1c000e82 fff60613 addi x12, x12, -1 x12=00000065 x12:00000066 +74845698ns 1325357 1c000e84 00130313 addi x6, x6, 1 x6=1c009d4b x6:1c009d4a +74845718ns 1325358 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000065 +74845797ns 1325362 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d4b PA:1c009d4b +74845817ns 1325363 1c000e82 fff60613 addi x12, x12, -1 x12=00000064 x12:00000065 +74845836ns 1325364 1c000e84 00130313 addi x6, x6, 1 x6=1c009d4c x6:1c009d4b +74845856ns 1325365 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000064 +74845935ns 1325369 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d4c PA:1c009d4c +74845955ns 1325370 1c000e82 fff60613 addi x12, x12, -1 x12=00000063 x12:00000064 +74845975ns 1325371 1c000e84 00130313 addi x6, x6, 1 x6=1c009d4d x6:1c009d4c +74845995ns 1325372 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000063 +74846074ns 1325376 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d4d PA:1c009d4d +74846094ns 1325377 1c000e82 fff60613 addi x12, x12, -1 x12=00000062 x12:00000063 +74846114ns 1325378 1c000e84 00130313 addi x6, x6, 1 x6=1c009d4e x6:1c009d4d +74846133ns 1325379 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000062 +74846212ns 1325383 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d4e PA:1c009d4e +74846232ns 1325384 1c000e82 fff60613 addi x12, x12, -1 x12=00000061 x12:00000062 +74846252ns 1325385 1c000e84 00130313 addi x6, x6, 1 x6=1c009d4f x6:1c009d4e +74846272ns 1325386 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000061 +74846351ns 1325390 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d4f PA:1c009d4f +74846371ns 1325391 1c000e82 fff60613 addi x12, x12, -1 x12=00000060 x12:00000061 +74846391ns 1325392 1c000e84 00130313 addi x6, x6, 1 x6=1c009d50 x6:1c009d4f +74846410ns 1325393 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000060 +74846490ns 1325397 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d50 PA:1c009d50 +74846509ns 1325398 1c000e82 fff60613 addi x12, x12, -1 x12=0000005f x12:00000060 +74846529ns 1325399 1c000e84 00130313 addi x6, x6, 1 x6=1c009d51 x6:1c009d50 +74846549ns 1325400 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000005f +74846628ns 1325404 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d51 PA:1c009d51 +74846648ns 1325405 1c000e82 fff60613 addi x12, x12, -1 x12=0000005e x12:0000005f +74846668ns 1325406 1c000e84 00130313 addi x6, x6, 1 x6=1c009d52 x6:1c009d51 +74846687ns 1325407 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000005e +74846767ns 1325411 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d52 PA:1c009d52 +74846786ns 1325412 1c000e82 fff60613 addi x12, x12, -1 x12=0000005d x12:0000005e +74846806ns 1325413 1c000e84 00130313 addi x6, x6, 1 x6=1c009d53 x6:1c009d52 +74846826ns 1325414 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000005d +74846905ns 1325418 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d53 PA:1c009d53 +74846925ns 1325419 1c000e82 fff60613 addi x12, x12, -1 x12=0000005c x12:0000005d +74846945ns 1325420 1c000e84 00130313 addi x6, x6, 1 x6=1c009d54 x6:1c009d53 +74846965ns 1325421 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000005c +74847044ns 1325425 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d54 PA:1c009d54 +74847064ns 1325426 1c000e82 fff60613 addi x12, x12, -1 x12=0000005b x12:0000005c +74847083ns 1325427 1c000e84 00130313 addi x6, x6, 1 x6=1c009d55 x6:1c009d54 +74847103ns 1325428 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000005b +74847182ns 1325432 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d55 PA:1c009d55 +74847202ns 1325433 1c000e82 fff60613 addi x12, x12, -1 x12=0000005a x12:0000005b +74847222ns 1325434 1c000e84 00130313 addi x6, x6, 1 x6=1c009d56 x6:1c009d55 +74847242ns 1325435 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000005a +74847321ns 1325439 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d56 PA:1c009d56 +74847341ns 1325440 1c000e82 fff60613 addi x12, x12, -1 x12=00000059 x12:0000005a +74847360ns 1325441 1c000e84 00130313 addi x6, x6, 1 x6=1c009d57 x6:1c009d56 +74847380ns 1325442 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000059 +74847459ns 1325446 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d57 PA:1c009d57 +74847479ns 1325447 1c000e82 fff60613 addi x12, x12, -1 x12=00000058 x12:00000059 +74847499ns 1325448 1c000e84 00130313 addi x6, x6, 1 x6=1c009d58 x6:1c009d57 +74847519ns 1325449 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000058 +74847598ns 1325453 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d58 PA:1c009d58 +74847618ns 1325454 1c000e82 fff60613 addi x12, x12, -1 x12=00000057 x12:00000058 +74847638ns 1325455 1c000e84 00130313 addi x6, x6, 1 x6=1c009d59 x6:1c009d58 +74847657ns 1325456 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000057 +74847736ns 1325460 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d59 PA:1c009d59 +74847756ns 1325461 1c000e82 fff60613 addi x12, x12, -1 x12=00000056 x12:00000057 +74847776ns 1325462 1c000e84 00130313 addi x6, x6, 1 x6=1c009d5a x6:1c009d59 +74847796ns 1325463 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000056 +74847875ns 1325467 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d5a PA:1c009d5a +74847895ns 1325468 1c000e82 fff60613 addi x12, x12, -1 x12=00000055 x12:00000056 +74847915ns 1325469 1c000e84 00130313 addi x6, x6, 1 x6=1c009d5b x6:1c009d5a +74847934ns 1325470 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000055 +74848014ns 1325474 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d5b PA:1c009d5b +74848033ns 1325475 1c000e82 fff60613 addi x12, x12, -1 x12=00000054 x12:00000055 +74848053ns 1325476 1c000e84 00130313 addi x6, x6, 1 x6=1c009d5c x6:1c009d5b +74848073ns 1325477 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000054 +74848152ns 1325481 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d5c PA:1c009d5c +74848172ns 1325482 1c000e82 fff60613 addi x12, x12, -1 x12=00000053 x12:00000054 +74848192ns 1325483 1c000e84 00130313 addi x6, x6, 1 x6=1c009d5d x6:1c009d5c +74848211ns 1325484 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000053 +74848291ns 1325488 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d5d PA:1c009d5d +74848310ns 1325489 1c000e82 fff60613 addi x12, x12, -1 x12=00000052 x12:00000053 +74848330ns 1325490 1c000e84 00130313 addi x6, x6, 1 x6=1c009d5e x6:1c009d5d +74848350ns 1325491 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000052 +74848429ns 1325495 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d5e PA:1c009d5e +74848449ns 1325496 1c000e82 fff60613 addi x12, x12, -1 x12=00000051 x12:00000052 +74848469ns 1325497 1c000e84 00130313 addi x6, x6, 1 x6=1c009d5f x6:1c009d5e +74848489ns 1325498 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000051 +74848568ns 1325502 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d5f PA:1c009d5f +74848588ns 1325503 1c000e82 fff60613 addi x12, x12, -1 x12=00000050 x12:00000051 +74848607ns 1325504 1c000e84 00130313 addi x6, x6, 1 x6=1c009d60 x6:1c009d5f +74848627ns 1325505 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000050 +74848706ns 1325509 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d60 PA:1c009d60 +74848726ns 1325510 1c000e82 fff60613 addi x12, x12, -1 x12=0000004f x12:00000050 +74848746ns 1325511 1c000e84 00130313 addi x6, x6, 1 x6=1c009d61 x6:1c009d60 +74848766ns 1325512 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000004f +74848845ns 1325516 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d61 PA:1c009d61 +74848865ns 1325517 1c000e82 fff60613 addi x12, x12, -1 x12=0000004e x12:0000004f +74848884ns 1325518 1c000e84 00130313 addi x6, x6, 1 x6=1c009d62 x6:1c009d61 +74848904ns 1325519 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000004e +74848983ns 1325523 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d62 PA:1c009d62 +74849003ns 1325524 1c000e82 fff60613 addi x12, x12, -1 x12=0000004d x12:0000004e +74849023ns 1325525 1c000e84 00130313 addi x6, x6, 1 x6=1c009d63 x6:1c009d62 +74849043ns 1325526 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000004d +74849122ns 1325530 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d63 PA:1c009d63 +74849142ns 1325531 1c000e82 fff60613 addi x12, x12, -1 x12=0000004c x12:0000004d +74849161ns 1325532 1c000e84 00130313 addi x6, x6, 1 x6=1c009d64 x6:1c009d63 +74849181ns 1325533 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000004c +74849260ns 1325537 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d64 PA:1c009d64 +74849280ns 1325538 1c000e82 fff60613 addi x12, x12, -1 x12=0000004b x12:0000004c +74849300ns 1325539 1c000e84 00130313 addi x6, x6, 1 x6=1c009d65 x6:1c009d64 +74849320ns 1325540 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000004b +74849399ns 1325544 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d65 PA:1c009d65 +74849419ns 1325545 1c000e82 fff60613 addi x12, x12, -1 x12=0000004a x12:0000004b +74849439ns 1325546 1c000e84 00130313 addi x6, x6, 1 x6=1c009d66 x6:1c009d65 +74849458ns 1325547 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000004a +74849538ns 1325551 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d66 PA:1c009d66 +74849557ns 1325552 1c000e82 fff60613 addi x12, x12, -1 x12=00000049 x12:0000004a +74849577ns 1325553 1c000e84 00130313 addi x6, x6, 1 x6=1c009d67 x6:1c009d66 +74849597ns 1325554 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000049 +74849676ns 1325558 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d67 PA:1c009d67 +74849696ns 1325559 1c000e82 fff60613 addi x12, x12, -1 x12=00000048 x12:00000049 +74849716ns 1325560 1c000e84 00130313 addi x6, x6, 1 x6=1c009d68 x6:1c009d67 +74849735ns 1325561 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000048 +74849815ns 1325565 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d68 PA:1c009d68 +74849834ns 1325566 1c000e82 fff60613 addi x12, x12, -1 x12=00000047 x12:00000048 +74849854ns 1325567 1c000e84 00130313 addi x6, x6, 1 x6=1c009d69 x6:1c009d68 +74849874ns 1325568 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000047 +74849953ns 1325572 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d69 PA:1c009d69 +74849973ns 1325573 1c000e82 fff60613 addi x12, x12, -1 x12=00000046 x12:00000047 +74849993ns 1325574 1c000e84 00130313 addi x6, x6, 1 x6=1c009d6a x6:1c009d69 +74850013ns 1325575 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000046 +74850092ns 1325579 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d6a PA:1c009d6a +74850112ns 1325580 1c000e82 fff60613 addi x12, x12, -1 x12=00000045 x12:00000046 +74850131ns 1325581 1c000e84 00130313 addi x6, x6, 1 x6=1c009d6b x6:1c009d6a +74850151ns 1325582 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000045 +74850230ns 1325586 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d6b PA:1c009d6b +74850250ns 1325587 1c000e82 fff60613 addi x12, x12, -1 x12=00000044 x12:00000045 +74850270ns 1325588 1c000e84 00130313 addi x6, x6, 1 x6=1c009d6c x6:1c009d6b +74850290ns 1325589 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000044 +74850369ns 1325593 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d6c PA:1c009d6c +74850389ns 1325594 1c000e82 fff60613 addi x12, x12, -1 x12=00000043 x12:00000044 +74850408ns 1325595 1c000e84 00130313 addi x6, x6, 1 x6=1c009d6d x6:1c009d6c +74850428ns 1325596 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000043 +74850507ns 1325600 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d6d PA:1c009d6d +74850527ns 1325601 1c000e82 fff60613 addi x12, x12, -1 x12=00000042 x12:00000043 +74850547ns 1325602 1c000e84 00130313 addi x6, x6, 1 x6=1c009d6e x6:1c009d6d +74850567ns 1325603 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000042 +74850646ns 1325607 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d6e PA:1c009d6e +74850666ns 1325608 1c000e82 fff60613 addi x12, x12, -1 x12=00000041 x12:00000042 +74850685ns 1325609 1c000e84 00130313 addi x6, x6, 1 x6=1c009d6f x6:1c009d6e +74850705ns 1325610 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000041 +74850784ns 1325614 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d6f PA:1c009d6f +74850804ns 1325615 1c000e82 fff60613 addi x12, x12, -1 x12=00000040 x12:00000041 +74850824ns 1325616 1c000e84 00130313 addi x6, x6, 1 x6=1c009d70 x6:1c009d6f +74850844ns 1325617 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000040 +74850923ns 1325621 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d70 PA:1c009d70 +74850943ns 1325622 1c000e82 fff60613 addi x12, x12, -1 x12=0000003f x12:00000040 +74850963ns 1325623 1c000e84 00130313 addi x6, x6, 1 x6=1c009d71 x6:1c009d70 +74850982ns 1325624 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000003f +74851062ns 1325628 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d71 PA:1c009d71 +74851081ns 1325629 1c000e82 fff60613 addi x12, x12, -1 x12=0000003e x12:0000003f +74851101ns 1325630 1c000e84 00130313 addi x6, x6, 1 x6=1c009d72 x6:1c009d71 +74851121ns 1325631 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000003e +74851200ns 1325635 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d72 PA:1c009d72 +74851220ns 1325636 1c000e82 fff60613 addi x12, x12, -1 x12=0000003d x12:0000003e +74851240ns 1325637 1c000e84 00130313 addi x6, x6, 1 x6=1c009d73 x6:1c009d72 +74851259ns 1325638 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000003d +74851339ns 1325642 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d73 PA:1c009d73 +74851358ns 1325643 1c000e82 fff60613 addi x12, x12, -1 x12=0000003c x12:0000003d +74851378ns 1325644 1c000e84 00130313 addi x6, x6, 1 x6=1c009d74 x6:1c009d73 +74851398ns 1325645 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000003c +74851477ns 1325649 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d74 PA:1c009d74 +74851497ns 1325650 1c000e82 fff60613 addi x12, x12, -1 x12=0000003b x12:0000003c +74851517ns 1325651 1c000e84 00130313 addi x6, x6, 1 x6=1c009d75 x6:1c009d74 +74851537ns 1325652 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000003b +74851616ns 1325656 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d75 PA:1c009d75 +74851635ns 1325657 1c000e82 fff60613 addi x12, x12, -1 x12=0000003a x12:0000003b +74851655ns 1325658 1c000e84 00130313 addi x6, x6, 1 x6=1c009d76 x6:1c009d75 +74851675ns 1325659 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000003a +74851754ns 1325663 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d76 PA:1c009d76 +74851774ns 1325664 1c000e82 fff60613 addi x12, x12, -1 x12=00000039 x12:0000003a +74851794ns 1325665 1c000e84 00130313 addi x6, x6, 1 x6=1c009d77 x6:1c009d76 +74851814ns 1325666 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000039 +74851893ns 1325670 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d77 PA:1c009d77 +74851913ns 1325671 1c000e82 fff60613 addi x12, x12, -1 x12=00000038 x12:00000039 +74851932ns 1325672 1c000e84 00130313 addi x6, x6, 1 x6=1c009d78 x6:1c009d77 +74851952ns 1325673 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000038 +74852031ns 1325677 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d78 PA:1c009d78 +74852051ns 1325678 1c000e82 fff60613 addi x12, x12, -1 x12=00000037 x12:00000038 +74852071ns 1325679 1c000e84 00130313 addi x6, x6, 1 x6=1c009d79 x6:1c009d78 +74852091ns 1325680 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000037 +74852170ns 1325684 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d79 PA:1c009d79 +74852190ns 1325685 1c000e82 fff60613 addi x12, x12, -1 x12=00000036 x12:00000037 +74852209ns 1325686 1c000e84 00130313 addi x6, x6, 1 x6=1c009d7a x6:1c009d79 +74852229ns 1325687 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000036 +74852308ns 1325691 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d7a PA:1c009d7a +74852328ns 1325692 1c000e82 fff60613 addi x12, x12, -1 x12=00000035 x12:00000036 +74852348ns 1325693 1c000e84 00130313 addi x6, x6, 1 x6=1c009d7b x6:1c009d7a +74852368ns 1325694 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000035 +74852447ns 1325698 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d7b PA:1c009d7b +74852467ns 1325699 1c000e82 fff60613 addi x12, x12, -1 x12=00000034 x12:00000035 +74852487ns 1325700 1c000e84 00130313 addi x6, x6, 1 x6=1c009d7c x6:1c009d7b +74852506ns 1325701 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000034 +74852586ns 1325705 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d7c PA:1c009d7c +74852605ns 1325706 1c000e82 fff60613 addi x12, x12, -1 x12=00000033 x12:00000034 +74852625ns 1325707 1c000e84 00130313 addi x6, x6, 1 x6=1c009d7d x6:1c009d7c +74852645ns 1325708 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000033 +74852724ns 1325712 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d7d PA:1c009d7d +74852744ns 1325713 1c000e82 fff60613 addi x12, x12, -1 x12=00000032 x12:00000033 +74852764ns 1325714 1c000e84 00130313 addi x6, x6, 1 x6=1c009d7e x6:1c009d7d +74852783ns 1325715 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000032 +74852863ns 1325719 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d7e PA:1c009d7e +74852882ns 1325720 1c000e82 fff60613 addi x12, x12, -1 x12=00000031 x12:00000032 +74852902ns 1325721 1c000e84 00130313 addi x6, x6, 1 x6=1c009d7f x6:1c009d7e +74852922ns 1325722 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000031 +74853001ns 1325726 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d7f PA:1c009d7f +74853021ns 1325727 1c000e82 fff60613 addi x12, x12, -1 x12=00000030 x12:00000031 +74853041ns 1325728 1c000e84 00130313 addi x6, x6, 1 x6=1c009d80 x6:1c009d7f +74853061ns 1325729 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000030 +74853140ns 1325733 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d80 PA:1c009d80 +74853159ns 1325734 1c000e82 fff60613 addi x12, x12, -1 x12=0000002f x12:00000030 +74853179ns 1325735 1c000e84 00130313 addi x6, x6, 1 x6=1c009d81 x6:1c009d80 +74853199ns 1325736 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000002f +74853278ns 1325740 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d81 PA:1c009d81 +74853298ns 1325741 1c000e82 fff60613 addi x12, x12, -1 x12=0000002e x12:0000002f +74853318ns 1325742 1c000e84 00130313 addi x6, x6, 1 x6=1c009d82 x6:1c009d81 +74853338ns 1325743 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000002e +74853417ns 1325747 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d82 PA:1c009d82 +74853437ns 1325748 1c000e82 fff60613 addi x12, x12, -1 x12=0000002d x12:0000002e +74853456ns 1325749 1c000e84 00130313 addi x6, x6, 1 x6=1c009d83 x6:1c009d82 +74853476ns 1325750 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000002d +74853555ns 1325754 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d83 PA:1c009d83 +74853575ns 1325755 1c000e82 fff60613 addi x12, x12, -1 x12=0000002c x12:0000002d +74853595ns 1325756 1c000e84 00130313 addi x6, x6, 1 x6=1c009d84 x6:1c009d83 +74853615ns 1325757 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000002c +74853694ns 1325761 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d84 PA:1c009d84 +74853714ns 1325762 1c000e82 fff60613 addi x12, x12, -1 x12=0000002b x12:0000002c +74853733ns 1325763 1c000e84 00130313 addi x6, x6, 1 x6=1c009d85 x6:1c009d84 +74853753ns 1325764 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000002b +74853832ns 1325768 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d85 PA:1c009d85 +74853852ns 1325769 1c000e82 fff60613 addi x12, x12, -1 x12=0000002a x12:0000002b +74853872ns 1325770 1c000e84 00130313 addi x6, x6, 1 x6=1c009d86 x6:1c009d85 +74853892ns 1325771 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000002a +74853971ns 1325775 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d86 PA:1c009d86 +74853991ns 1325776 1c000e82 fff60613 addi x12, x12, -1 x12=00000029 x12:0000002a +74854011ns 1325777 1c000e84 00130313 addi x6, x6, 1 x6=1c009d87 x6:1c009d86 +74854030ns 1325778 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000029 +74854109ns 1325782 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d87 PA:1c009d87 +74854129ns 1325783 1c000e82 fff60613 addi x12, x12, -1 x12=00000028 x12:00000029 +74854149ns 1325784 1c000e84 00130313 addi x6, x6, 1 x6=1c009d88 x6:1c009d87 +74854169ns 1325785 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000028 +74854248ns 1325789 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d88 PA:1c009d88 +74854268ns 1325790 1c000e82 fff60613 addi x12, x12, -1 x12=00000027 x12:00000028 +74854288ns 1325791 1c000e84 00130313 addi x6, x6, 1 x6=1c009d89 x6:1c009d88 +74854307ns 1325792 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000027 +74854387ns 1325796 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d89 PA:1c009d89 +74854406ns 1325797 1c000e82 fff60613 addi x12, x12, -1 x12=00000026 x12:00000027 +74854426ns 1325798 1c000e84 00130313 addi x6, x6, 1 x6=1c009d8a x6:1c009d89 +74854446ns 1325799 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000026 +74854525ns 1325803 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d8a PA:1c009d8a +74854545ns 1325804 1c000e82 fff60613 addi x12, x12, -1 x12=00000025 x12:00000026 +74854565ns 1325805 1c000e84 00130313 addi x6, x6, 1 x6=1c009d8b x6:1c009d8a +74854585ns 1325806 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000025 +74854664ns 1325810 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d8b PA:1c009d8b +74854683ns 1325811 1c000e82 fff60613 addi x12, x12, -1 x12=00000024 x12:00000025 +74854703ns 1325812 1c000e84 00130313 addi x6, x6, 1 x6=1c009d8c x6:1c009d8b +74854723ns 1325813 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000024 +74854802ns 1325817 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d8c PA:1c009d8c +74854822ns 1325818 1c000e82 fff60613 addi x12, x12, -1 x12=00000023 x12:00000024 +74854842ns 1325819 1c000e84 00130313 addi x6, x6, 1 x6=1c009d8d x6:1c009d8c +74854862ns 1325820 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000023 +74854941ns 1325824 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d8d PA:1c009d8d +74854961ns 1325825 1c000e82 fff60613 addi x12, x12, -1 x12=00000022 x12:00000023 +74854980ns 1325826 1c000e84 00130313 addi x6, x6, 1 x6=1c009d8e x6:1c009d8d +74855000ns 1325827 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000022 +74855079ns 1325831 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d8e PA:1c009d8e +74855099ns 1325832 1c000e82 fff60613 addi x12, x12, -1 x12=00000021 x12:00000022 +74855119ns 1325833 1c000e84 00130313 addi x6, x6, 1 x6=1c009d8f x6:1c009d8e +74855139ns 1325834 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000021 +74855218ns 1325838 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d8f PA:1c009d8f +74855238ns 1325839 1c000e82 fff60613 addi x12, x12, -1 x12=00000020 x12:00000021 +74855257ns 1325840 1c000e84 00130313 addi x6, x6, 1 x6=1c009d90 x6:1c009d8f +74855277ns 1325841 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000020 +74855356ns 1325845 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d90 PA:1c009d90 +74855376ns 1325846 1c000e82 fff60613 addi x12, x12, -1 x12=0000001f x12:00000020 +74855396ns 1325847 1c000e84 00130313 addi x6, x6, 1 x6=1c009d91 x6:1c009d90 +74855416ns 1325848 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000001f +74855495ns 1325852 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d91 PA:1c009d91 +74855515ns 1325853 1c000e82 fff60613 addi x12, x12, -1 x12=0000001e x12:0000001f +74855535ns 1325854 1c000e84 00130313 addi x6, x6, 1 x6=1c009d92 x6:1c009d91 +74855554ns 1325855 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000001e +74855633ns 1325859 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d92 PA:1c009d92 +74855653ns 1325860 1c000e82 fff60613 addi x12, x12, -1 x12=0000001d x12:0000001e +74855673ns 1325861 1c000e84 00130313 addi x6, x6, 1 x6=1c009d93 x6:1c009d92 +74855693ns 1325862 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000001d +74855772ns 1325866 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d93 PA:1c009d93 +74855792ns 1325867 1c000e82 fff60613 addi x12, x12, -1 x12=0000001c x12:0000001d +74855812ns 1325868 1c000e84 00130313 addi x6, x6, 1 x6=1c009d94 x6:1c009d93 +74855831ns 1325869 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000001c +74855911ns 1325873 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d94 PA:1c009d94 +74855930ns 1325874 1c000e82 fff60613 addi x12, x12, -1 x12=0000001b x12:0000001c +74855950ns 1325875 1c000e84 00130313 addi x6, x6, 1 x6=1c009d95 x6:1c009d94 +74855970ns 1325876 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000001b +74856049ns 1325880 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d95 PA:1c009d95 +74856069ns 1325881 1c000e82 fff60613 addi x12, x12, -1 x12=0000001a x12:0000001b +74856089ns 1325882 1c000e84 00130313 addi x6, x6, 1 x6=1c009d96 x6:1c009d95 +74856108ns 1325883 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000001a +74856188ns 1325887 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d96 PA:1c009d96 +74856207ns 1325888 1c000e82 fff60613 addi x12, x12, -1 x12=00000019 x12:0000001a +74856227ns 1325889 1c000e84 00130313 addi x6, x6, 1 x6=1c009d97 x6:1c009d96 +74856247ns 1325890 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000019 +74856326ns 1325894 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d97 PA:1c009d97 +74856346ns 1325895 1c000e82 fff60613 addi x12, x12, -1 x12=00000018 x12:00000019 +74856366ns 1325896 1c000e84 00130313 addi x6, x6, 1 x6=1c009d98 x6:1c009d97 +74856386ns 1325897 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000018 +74856465ns 1325901 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d98 PA:1c009d98 +74856485ns 1325902 1c000e82 fff60613 addi x12, x12, -1 x12=00000017 x12:00000018 +74856504ns 1325903 1c000e84 00130313 addi x6, x6, 1 x6=1c009d99 x6:1c009d98 +74856524ns 1325904 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000017 +74856603ns 1325908 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d99 PA:1c009d99 +74856623ns 1325909 1c000e82 fff60613 addi x12, x12, -1 x12=00000016 x12:00000017 +74856643ns 1325910 1c000e84 00130313 addi x6, x6, 1 x6=1c009d9a x6:1c009d99 +74856663ns 1325911 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000016 +74856742ns 1325915 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d9a PA:1c009d9a +74856762ns 1325916 1c000e82 fff60613 addi x12, x12, -1 x12=00000015 x12:00000016 +74856781ns 1325917 1c000e84 00130313 addi x6, x6, 1 x6=1c009d9b x6:1c009d9a +74856801ns 1325918 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000015 +74856880ns 1325922 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d9b PA:1c009d9b +74856900ns 1325923 1c000e82 fff60613 addi x12, x12, -1 x12=00000014 x12:00000015 +74856920ns 1325924 1c000e84 00130313 addi x6, x6, 1 x6=1c009d9c x6:1c009d9b +74856940ns 1325925 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000014 +74857019ns 1325929 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d9c PA:1c009d9c +74857039ns 1325930 1c000e82 fff60613 addi x12, x12, -1 x12=00000013 x12:00000014 +74857059ns 1325931 1c000e84 00130313 addi x6, x6, 1 x6=1c009d9d x6:1c009d9c +74857078ns 1325932 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000013 +74857157ns 1325936 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d9d PA:1c009d9d +74857177ns 1325937 1c000e82 fff60613 addi x12, x12, -1 x12=00000012 x12:00000013 +74857197ns 1325938 1c000e84 00130313 addi x6, x6, 1 x6=1c009d9e x6:1c009d9d +74857217ns 1325939 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000012 +74857296ns 1325943 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d9e PA:1c009d9e +74857316ns 1325944 1c000e82 fff60613 addi x12, x12, -1 x12=00000011 x12:00000012 +74857336ns 1325945 1c000e84 00130313 addi x6, x6, 1 x6=1c009d9f x6:1c009d9e +74857355ns 1325946 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000011 +74857435ns 1325950 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009d9f PA:1c009d9f +74857454ns 1325951 1c000e82 fff60613 addi x12, x12, -1 x12=00000010 x12:00000011 +74857474ns 1325952 1c000e84 00130313 addi x6, x6, 1 x6=1c009da0 x6:1c009d9f +74857494ns 1325953 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000010 +74857573ns 1325957 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009da0 PA:1c009da0 +74857593ns 1325958 1c000e82 fff60613 addi x12, x12, -1 x12=0000000f x12:00000010 +74857613ns 1325959 1c000e84 00130313 addi x6, x6, 1 x6=1c009da1 x6:1c009da0 +74857632ns 1325960 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000000f +74857712ns 1325964 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009da1 PA:1c009da1 +74857731ns 1325965 1c000e82 fff60613 addi x12, x12, -1 x12=0000000e x12:0000000f +74857751ns 1325966 1c000e84 00130313 addi x6, x6, 1 x6=1c009da2 x6:1c009da1 +74857771ns 1325967 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000000e +74857850ns 1325971 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009da2 PA:1c009da2 +74857870ns 1325972 1c000e82 fff60613 addi x12, x12, -1 x12=0000000d x12:0000000e +74857890ns 1325973 1c000e84 00130313 addi x6, x6, 1 x6=1c009da3 x6:1c009da2 +74857910ns 1325974 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000000d +74857989ns 1325978 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009da3 PA:1c009da3 +74858009ns 1325979 1c000e82 fff60613 addi x12, x12, -1 x12=0000000c x12:0000000d +74858028ns 1325980 1c000e84 00130313 addi x6, x6, 1 x6=1c009da4 x6:1c009da3 +74858048ns 1325981 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000000c +74858127ns 1325985 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009da4 PA:1c009da4 +74858147ns 1325986 1c000e82 fff60613 addi x12, x12, -1 x12=0000000b x12:0000000c +74858167ns 1325987 1c000e84 00130313 addi x6, x6, 1 x6=1c009da5 x6:1c009da4 +74858187ns 1325988 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000000b +74858266ns 1325992 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009da5 PA:1c009da5 +74858286ns 1325993 1c000e82 fff60613 addi x12, x12, -1 x12=0000000a x12:0000000b +74858305ns 1325994 1c000e84 00130313 addi x6, x6, 1 x6=1c009da6 x6:1c009da5 +74858325ns 1325995 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000000a +74858404ns 1325999 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009da6 PA:1c009da6 +74858424ns 1326000 1c000e82 fff60613 addi x12, x12, -1 x12=00000009 x12:0000000a +74858444ns 1326001 1c000e84 00130313 addi x6, x6, 1 x6=1c009da7 x6:1c009da6 +74858464ns 1326002 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000009 +74858543ns 1326006 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009da7 PA:1c009da7 +74858563ns 1326007 1c000e82 fff60613 addi x12, x12, -1 x12=00000008 x12:00000009 +74858582ns 1326008 1c000e84 00130313 addi x6, x6, 1 x6=1c009da8 x6:1c009da7 +74858602ns 1326009 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000008 +74858681ns 1326013 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009da8 PA:1c009da8 +74858701ns 1326014 1c000e82 fff60613 addi x12, x12, -1 x12=00000007 x12:00000008 +74858721ns 1326015 1c000e84 00130313 addi x6, x6, 1 x6=1c009da9 x6:1c009da8 +74858741ns 1326016 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000007 +74858820ns 1326020 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009da9 PA:1c009da9 +74858840ns 1326021 1c000e82 fff60613 addi x12, x12, -1 x12=00000006 x12:00000007 +74858860ns 1326022 1c000e84 00130313 addi x6, x6, 1 x6=1c009daa x6:1c009da9 +74858879ns 1326023 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000006 +74858959ns 1326027 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009daa PA:1c009daa +74858978ns 1326028 1c000e82 fff60613 addi x12, x12, -1 x12=00000005 x12:00000006 +74858998ns 1326029 1c000e84 00130313 addi x6, x6, 1 x6=1c009dab x6:1c009daa +74859018ns 1326030 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000005 +74859097ns 1326034 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009dab PA:1c009dab +74859117ns 1326035 1c000e82 fff60613 addi x12, x12, -1 x12=00000004 x12:00000005 +74859137ns 1326036 1c000e84 00130313 addi x6, x6, 1 x6=1c009dac x6:1c009dab +74859156ns 1326037 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000004 +74859236ns 1326041 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009dac PA:1c009dac +74859255ns 1326042 1c000e82 fff60613 addi x12, x12, -1 x12=00000003 x12:00000004 +74859275ns 1326043 1c000e84 00130313 addi x6, x6, 1 x6=1c009dad x6:1c009dac +74859295ns 1326044 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000003 +74859374ns 1326048 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009dad PA:1c009dad +74859394ns 1326049 1c000e82 fff60613 addi x12, x12, -1 x12=00000002 x12:00000003 +74859414ns 1326050 1c000e84 00130313 addi x6, x6, 1 x6=1c009dae x6:1c009dad +74859434ns 1326051 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000002 +74859513ns 1326055 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009dae PA:1c009dae +74859533ns 1326056 1c000e82 fff60613 addi x12, x12, -1 x12=00000001 x12:00000002 +74859552ns 1326057 1c000e84 00130313 addi x6, x6, 1 x6=1c009daf x6:1c009dae +74859572ns 1326058 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000001 +74859651ns 1326062 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c009daf PA:1c009daf +74859671ns 1326063 1c000e82 fff60613 addi x12, x12, -1 x12=00000000 x12:00000001 +74859691ns 1326064 1c000e84 00130313 addi x6, x6, 1 x6=1c009db0 x6:1c009daf +74859711ns 1326065 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000000 +74859730ns 1326066 1c000e88 00008067 jalr x0, x1, 0 x1:1c002094 +74859770ns 1326068 1c002094 03042c03 lw x24, 48(x8) x24=1c009770 x8:1c009db8 PA:1c009de8 +74859790ns 1326069 1c002098 00049963 bne x9, x0, 18 x9:1c008988 +74859849ns 1326072 1c0020aa 009005b3 add x11, x0, x9 x11=1c008988 x9:1c008988 +74859869ns 1326073 1c0020ac 03440793 addi x15, x8, 52 x15=1c009dec x8:1c009db8 +74859889ns 1326074 1c0020b0 01048693 addi x13, x9, 16 x13=1c008998 x9:1c008988 +74859909ns 1326075 1c0020b4 00058703 lb x14, 0(x11) x14=0000006d x11:1c008988 PA:1c008988 +74859948ns 1326077 1c0020b8 00e78023 sb x14, 0(x15) x14:0000006d x15:1c009dec PA:1c009dec +74859968ns 1326078 1c0020bc 00070563 beq x14, x0, 10 x14:0000006d +74859988ns 1326079 1c0020be 00158593 addi x11, x11, 1 x11=1c008989 x11:1c008988 +74860008ns 1326080 1c0020c0 00178793 addi x15, x15, 1 x15=1c009ded x15:1c009dec +74860027ns 1326081 1c0020c2 fed599e3 bne x11, x13, -14 x11:1c008989 x13:1c008998 +74860087ns 1326084 1c0020b4 00058703 lb x14, 0(x11) x14=00000061 x11:1c008989 PA:1c008989 +74860126ns 1326086 1c0020b8 00e78023 sb x14, 0(x15) x14:00000061 x15:1c009ded PA:1c009ded +74860146ns 1326087 1c0020bc 00070563 beq x14, x0, 10 x14:00000061 +74860166ns 1326088 1c0020be 00158593 addi x11, x11, 1 x11=1c00898a x11:1c008989 +74860186ns 1326089 1c0020c0 00178793 addi x15, x15, 1 x15=1c009dee x15:1c009ded +74860205ns 1326090 1c0020c2 fed599e3 bne x11, x13, -14 x11:1c00898a x13:1c008998 +74860265ns 1326093 1c0020b4 00058703 lb x14, 0(x11) x14=00000069 x11:1c00898a PA:1c00898a +74860304ns 1326095 1c0020b8 00e78023 sb x14, 0(x15) x14:00000069 x15:1c009dee PA:1c009dee +74860324ns 1326096 1c0020bc 00070563 beq x14, x0, 10 x14:00000069 +74860344ns 1326097 1c0020be 00158593 addi x11, x11, 1 x11=1c00898b x11:1c00898a +74860364ns 1326098 1c0020c0 00178793 addi x15, x15, 1 x15=1c009def x15:1c009dee +74860384ns 1326099 1c0020c2 fed599e3 bne x11, x13, -14 x11:1c00898b x13:1c008998 +74860443ns 1326102 1c0020b4 00058703 lb x14, 0(x11) x14=0000006e x11:1c00898b PA:1c00898b +74860483ns 1326104 1c0020b8 00e78023 sb x14, 0(x15) x14:0000006e x15:1c009def PA:1c009def +74860502ns 1326105 1c0020bc 00070563 beq x14, x0, 10 x14:0000006e +74860522ns 1326106 1c0020be 00158593 addi x11, x11, 1 x11=1c00898c x11:1c00898b +74860542ns 1326107 1c0020c0 00178793 addi x15, x15, 1 x15=1c009df0 x15:1c009def +74860562ns 1326108 1c0020c2 fed599e3 bne x11, x13, -14 x11:1c00898c x13:1c008998 +74860621ns 1326111 1c0020b4 00058703 lb x14, 0(x11) x14=00000000 x11:1c00898c PA:1c00898c +74860661ns 1326113 1c0020b8 00e78023 sb x14, 0(x15) x14:00000000 x15:1c009df0 PA:1c009df0 +74860680ns 1326114 1c0020bc 00070563 beq x14, x0, 10 x14:00000000 +74860760ns 1326118 1c0020c6 040401a3 sb x0, 67(x8) x8:1c009db8 PA:1c009dfb +74860779ns 1326119 1c0020ca 00400793 addi x15, x0, 4 x15=00000004 +74860799ns 1326120 1c0020cc 0127f363 bgeu x15, x18, 6 x15:00000004 x18:00000001 +74860878ns 1326124 1c0020d2 00440a13 addi x20, x8, 4 x20=1c009dbc x8:1c009db8 +74860898ns 1326125 1c0020d6 01400533 add x10, x0, x20 x10=1c009dbc x20:1c009dbc +74860918ns 1326126 1c0020d8 03242623 sw x18, 44(x8) x18:00000001 x8:1c009db8 PA:1c009de4 +74860938ns 1326127 1c0020dc 05242823 sw x18, 80(x8) x18:00000001 x8:1c009db8 PA:1c009e08 +74860958ns 1326128 1c0020e0 04042a23 sw x0, 84(x8) x8:1c009db8 PA:1c009e0c +74860977ns 1326129 1c0020e4 df7fe0ef jal x1, -4618 x1=1c0020e8 +74861037ns 1326132 1c000eda 00052823 sw x0, 16(x10) x10:1c009dbc PA:1c009dcc +74861056ns 1326133 1c000ede 00008067 jalr x0, x1, 0 x1:1c0020e8 +74861096ns 1326135 1c0020e8 01840513 addi x10, x8, 24 x10=1c009dd0 x8:1c009db8 +74861116ns 1326136 1c0020ec deffe0ef jal x1, -4626 x1=1c0020f0 +74861175ns 1326139 1c000eda 00052823 sw x0, 16(x10) x10:1c009dd0 PA:1c009de0 +74861195ns 1326140 1c000ede 00008067 jalr x0, x1, 0 x1:1c0020f0 +74861235ns 1326142 1c0020f0 00500713 addi x14, x0, 5 x14=00000005 +74861254ns 1326143 1c0020f2 412704b3 sub x9, x14, x18 x9=00000004 x14:00000005 x18:00000001 +74861274ns 1326144 1c0020f6 48042023 sw x0, 1152(x8) x8:1c009db8 PA:1c00a238 +74861294ns 1326145 1c0020fa 42800613 addi x12, x0, 1064 x12=00000428 +74861314ns 1326146 1c0020fe 00000593 addi x11, x0, 0 x11=00000000 +74861334ns 1326147 1c002100 00842823 sw x8, 16(x8) x8:1c009db8 x8:1c009db8 PA:1c009dc8 +74861353ns 1326148 1c002102 00942c23 sw x9, 24(x8) x9:00000004 x8:1c009db8 PA:1c009dd0 +74861373ns 1326149 1c002104 02842223 sw x8, 36(x8) x8:1c009db8 x8:1c009db8 PA:1c009ddc +74861393ns 1326150 1c002106 04042223 sw x0, 68(x8) x8:1c009db8 PA:1c009dfc +74861413ns 1326151 1c00210a 48040223 sb x0, 1156(x8) x8:1c009db8 PA:1c00a23c +74861433ns 1326152 1c00210e 05840513 addi x10, x8, 88 x10=1c009e10 x8:1c009db8 +74861452ns 1326153 1c002112 d69fe0ef jal x1, -4760 x1=1c002116 +74861492ns 1326155 1c000e7a 00a00333 add x6, x0, x10 x6=1c009e10 x10:1c009e10 +74861512ns 1326156 1c000e7c 00060663 beq x12, x0, 12 x12:00000428 +74861531ns 1326157 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e10 PA:1c009e10 +74861551ns 1326158 1c000e82 fff60613 addi x12, x12, -1 x12=00000427 x12:00000428 +74861571ns 1326159 1c000e84 00130313 addi x6, x6, 1 x6=1c009e11 x6:1c009e10 +74861591ns 1326160 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000427 +74861670ns 1326164 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e11 PA:1c009e11 +74861690ns 1326165 1c000e82 fff60613 addi x12, x12, -1 x12=00000426 x12:00000427 +74861710ns 1326166 1c000e84 00130313 addi x6, x6, 1 x6=1c009e12 x6:1c009e11 +74861729ns 1326167 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000426 +74861809ns 1326171 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e12 PA:1c009e12 +74861828ns 1326172 1c000e82 fff60613 addi x12, x12, -1 x12=00000425 x12:00000426 +74861848ns 1326173 1c000e84 00130313 addi x6, x6, 1 x6=1c009e13 x6:1c009e12 +74861868ns 1326174 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000425 +74861947ns 1326178 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e13 PA:1c009e13 +74861967ns 1326179 1c000e82 fff60613 addi x12, x12, -1 x12=00000424 x12:00000425 +74861987ns 1326180 1c000e84 00130313 addi x6, x6, 1 x6=1c009e14 x6:1c009e13 +74862007ns 1326181 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000424 +74862086ns 1326185 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e14 PA:1c009e14 +74862105ns 1326186 1c000e82 fff60613 addi x12, x12, -1 x12=00000423 x12:00000424 +74862125ns 1326187 1c000e84 00130313 addi x6, x6, 1 x6=1c009e15 x6:1c009e14 +74862145ns 1326188 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000423 +74862224ns 1326192 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e15 PA:1c009e15 +74862244ns 1326193 1c000e82 fff60613 addi x12, x12, -1 x12=00000422 x12:00000423 +74862264ns 1326194 1c000e84 00130313 addi x6, x6, 1 x6=1c009e16 x6:1c009e15 +74862284ns 1326195 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000422 +74862363ns 1326199 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e16 PA:1c009e16 +74862383ns 1326200 1c000e82 fff60613 addi x12, x12, -1 x12=00000421 x12:00000422 +74862402ns 1326201 1c000e84 00130313 addi x6, x6, 1 x6=1c009e17 x6:1c009e16 +74862422ns 1326202 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000421 +74862501ns 1326206 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e17 PA:1c009e17 +74862521ns 1326207 1c000e82 fff60613 addi x12, x12, -1 x12=00000420 x12:00000421 +74862541ns 1326208 1c000e84 00130313 addi x6, x6, 1 x6=1c009e18 x6:1c009e17 +74862561ns 1326209 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000420 +74862640ns 1326213 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e18 PA:1c009e18 +74862660ns 1326214 1c000e82 fff60613 addi x12, x12, -1 x12=0000041f x12:00000420 +74862679ns 1326215 1c000e84 00130313 addi x6, x6, 1 x6=1c009e19 x6:1c009e18 +74862699ns 1326216 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000041f +74862778ns 1326220 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e19 PA:1c009e19 +74862798ns 1326221 1c000e82 fff60613 addi x12, x12, -1 x12=0000041e x12:0000041f +74862818ns 1326222 1c000e84 00130313 addi x6, x6, 1 x6=1c009e1a x6:1c009e19 +74862838ns 1326223 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000041e +74862917ns 1326227 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e1a PA:1c009e1a +74862937ns 1326228 1c000e82 fff60613 addi x12, x12, -1 x12=0000041d x12:0000041e +74862957ns 1326229 1c000e84 00130313 addi x6, x6, 1 x6=1c009e1b x6:1c009e1a +74862976ns 1326230 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000041d +74863055ns 1326234 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e1b PA:1c009e1b +74863075ns 1326235 1c000e82 fff60613 addi x12, x12, -1 x12=0000041c x12:0000041d +74863095ns 1326236 1c000e84 00130313 addi x6, x6, 1 x6=1c009e1c x6:1c009e1b +74863115ns 1326237 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000041c +74863194ns 1326241 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e1c PA:1c009e1c +74863214ns 1326242 1c000e82 fff60613 addi x12, x12, -1 x12=0000041b x12:0000041c +74863234ns 1326243 1c000e84 00130313 addi x6, x6, 1 x6=1c009e1d x6:1c009e1c +74863253ns 1326244 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000041b +74863333ns 1326248 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e1d PA:1c009e1d +74863352ns 1326249 1c000e82 fff60613 addi x12, x12, -1 x12=0000041a x12:0000041b +74863372ns 1326250 1c000e84 00130313 addi x6, x6, 1 x6=1c009e1e x6:1c009e1d +74863392ns 1326251 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000041a +74863471ns 1326255 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e1e PA:1c009e1e +74863491ns 1326256 1c000e82 fff60613 addi x12, x12, -1 x12=00000419 x12:0000041a +74863511ns 1326257 1c000e84 00130313 addi x6, x6, 1 x6=1c009e1f x6:1c009e1e +74863530ns 1326258 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000419 +74863610ns 1326262 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e1f PA:1c009e1f +74863629ns 1326263 1c000e82 fff60613 addi x12, x12, -1 x12=00000418 x12:00000419 +74863649ns 1326264 1c000e84 00130313 addi x6, x6, 1 x6=1c009e20 x6:1c009e1f +74863669ns 1326265 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000418 +74863748ns 1326269 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e20 PA:1c009e20 +74863768ns 1326270 1c000e82 fff60613 addi x12, x12, -1 x12=00000417 x12:00000418 +74863788ns 1326271 1c000e84 00130313 addi x6, x6, 1 x6=1c009e21 x6:1c009e20 +74863808ns 1326272 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000417 +74863887ns 1326276 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e21 PA:1c009e21 +74863907ns 1326277 1c000e82 fff60613 addi x12, x12, -1 x12=00000416 x12:00000417 +74863926ns 1326278 1c000e84 00130313 addi x6, x6, 1 x6=1c009e22 x6:1c009e21 +74863946ns 1326279 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000416 +74864025ns 1326283 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e22 PA:1c009e22 +74864045ns 1326284 1c000e82 fff60613 addi x12, x12, -1 x12=00000415 x12:00000416 +74864065ns 1326285 1c000e84 00130313 addi x6, x6, 1 x6=1c009e23 x6:1c009e22 +74864085ns 1326286 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000415 +74864164ns 1326290 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e23 PA:1c009e23 +74864184ns 1326291 1c000e82 fff60613 addi x12, x12, -1 x12=00000414 x12:00000415 +74864203ns 1326292 1c000e84 00130313 addi x6, x6, 1 x6=1c009e24 x6:1c009e23 +74864223ns 1326293 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000414 +74864302ns 1326297 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e24 PA:1c009e24 +74864322ns 1326298 1c000e82 fff60613 addi x12, x12, -1 x12=00000413 x12:00000414 +74864342ns 1326299 1c000e84 00130313 addi x6, x6, 1 x6=1c009e25 x6:1c009e24 +74864362ns 1326300 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000413 +74864441ns 1326304 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e25 PA:1c009e25 +74864461ns 1326305 1c000e82 fff60613 addi x12, x12, -1 x12=00000412 x12:00000413 +74864481ns 1326306 1c000e84 00130313 addi x6, x6, 1 x6=1c009e26 x6:1c009e25 +74864500ns 1326307 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000412 +74864579ns 1326311 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e26 PA:1c009e26 +74864599ns 1326312 1c000e82 fff60613 addi x12, x12, -1 x12=00000411 x12:00000412 +74864619ns 1326313 1c000e84 00130313 addi x6, x6, 1 x6=1c009e27 x6:1c009e26 +74864639ns 1326314 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000411 +74864718ns 1326318 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e27 PA:1c009e27 +74864738ns 1326319 1c000e82 fff60613 addi x12, x12, -1 x12=00000410 x12:00000411 +74864758ns 1326320 1c000e84 00130313 addi x6, x6, 1 x6=1c009e28 x6:1c009e27 +74864777ns 1326321 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000410 +74864857ns 1326325 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e28 PA:1c009e28 +74864876ns 1326326 1c000e82 fff60613 addi x12, x12, -1 x12=0000040f x12:00000410 +74864896ns 1326327 1c000e84 00130313 addi x6, x6, 1 x6=1c009e29 x6:1c009e28 +74864916ns 1326328 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000040f +74864995ns 1326332 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e29 PA:1c009e29 +74865015ns 1326333 1c000e82 fff60613 addi x12, x12, -1 x12=0000040e x12:0000040f +74865035ns 1326334 1c000e84 00130313 addi x6, x6, 1 x6=1c009e2a x6:1c009e29 +74865054ns 1326335 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000040e +74865134ns 1326339 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e2a PA:1c009e2a +74865153ns 1326340 1c000e82 fff60613 addi x12, x12, -1 x12=0000040d x12:0000040e +74865173ns 1326341 1c000e84 00130313 addi x6, x6, 1 x6=1c009e2b x6:1c009e2a +74865193ns 1326342 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000040d +74865272ns 1326346 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e2b PA:1c009e2b +74865292ns 1326347 1c000e82 fff60613 addi x12, x12, -1 x12=0000040c x12:0000040d +74865312ns 1326348 1c000e84 00130313 addi x6, x6, 1 x6=1c009e2c x6:1c009e2b +74865332ns 1326349 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000040c +74865411ns 1326353 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e2c PA:1c009e2c +74865431ns 1326354 1c000e82 fff60613 addi x12, x12, -1 x12=0000040b x12:0000040c +74865450ns 1326355 1c000e84 00130313 addi x6, x6, 1 x6=1c009e2d x6:1c009e2c +74865470ns 1326356 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000040b +74865549ns 1326360 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e2d PA:1c009e2d +74865569ns 1326361 1c000e82 fff60613 addi x12, x12, -1 x12=0000040a x12:0000040b +74865589ns 1326362 1c000e84 00130313 addi x6, x6, 1 x6=1c009e2e x6:1c009e2d +74865609ns 1326363 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000040a +74865688ns 1326367 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e2e PA:1c009e2e +74865708ns 1326368 1c000e82 fff60613 addi x12, x12, -1 x12=00000409 x12:0000040a +74865727ns 1326369 1c000e84 00130313 addi x6, x6, 1 x6=1c009e2f x6:1c009e2e +74865747ns 1326370 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000409 +74865826ns 1326374 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e2f PA:1c009e2f +74865846ns 1326375 1c000e82 fff60613 addi x12, x12, -1 x12=00000408 x12:00000409 +74865866ns 1326376 1c000e84 00130313 addi x6, x6, 1 x6=1c009e30 x6:1c009e2f +74865886ns 1326377 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000408 +74865965ns 1326381 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e30 PA:1c009e30 +74865985ns 1326382 1c000e82 fff60613 addi x12, x12, -1 x12=00000407 x12:00000408 +74866004ns 1326383 1c000e84 00130313 addi x6, x6, 1 x6=1c009e31 x6:1c009e30 +74866024ns 1326384 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000407 +74866103ns 1326388 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e31 PA:1c009e31 +74866123ns 1326389 1c000e82 fff60613 addi x12, x12, -1 x12=00000406 x12:00000407 +74866143ns 1326390 1c000e84 00130313 addi x6, x6, 1 x6=1c009e32 x6:1c009e31 +74866163ns 1326391 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000406 +74866242ns 1326395 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e32 PA:1c009e32 +74866262ns 1326396 1c000e82 fff60613 addi x12, x12, -1 x12=00000405 x12:00000406 +74866282ns 1326397 1c000e84 00130313 addi x6, x6, 1 x6=1c009e33 x6:1c009e32 +74866301ns 1326398 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000405 +74866381ns 1326402 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e33 PA:1c009e33 +74866400ns 1326403 1c000e82 fff60613 addi x12, x12, -1 x12=00000404 x12:00000405 +74866420ns 1326404 1c000e84 00130313 addi x6, x6, 1 x6=1c009e34 x6:1c009e33 +74866440ns 1326405 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000404 +74866519ns 1326409 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e34 PA:1c009e34 +74866539ns 1326410 1c000e82 fff60613 addi x12, x12, -1 x12=00000403 x12:00000404 +74866559ns 1326411 1c000e84 00130313 addi x6, x6, 1 x6=1c009e35 x6:1c009e34 +74866578ns 1326412 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000403 +74866658ns 1326416 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e35 PA:1c009e35 +74866677ns 1326417 1c000e82 fff60613 addi x12, x12, -1 x12=00000402 x12:00000403 +74866697ns 1326418 1c000e84 00130313 addi x6, x6, 1 x6=1c009e36 x6:1c009e35 +74866717ns 1326419 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000402 +74866796ns 1326423 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e36 PA:1c009e36 +74866816ns 1326424 1c000e82 fff60613 addi x12, x12, -1 x12=00000401 x12:00000402 +74866836ns 1326425 1c000e84 00130313 addi x6, x6, 1 x6=1c009e37 x6:1c009e36 +74866856ns 1326426 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000401 +74866935ns 1326430 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e37 PA:1c009e37 +74866955ns 1326431 1c000e82 fff60613 addi x12, x12, -1 x12=00000400 x12:00000401 +74866974ns 1326432 1c000e84 00130313 addi x6, x6, 1 x6=1c009e38 x6:1c009e37 +74866994ns 1326433 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000400 +74867073ns 1326437 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e38 PA:1c009e38 +74867093ns 1326438 1c000e82 fff60613 addi x12, x12, -1 x12=000003ff x12:00000400 +74867113ns 1326439 1c000e84 00130313 addi x6, x6, 1 x6=1c009e39 x6:1c009e38 +74867133ns 1326440 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ff +74867212ns 1326444 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e39 PA:1c009e39 +74867232ns 1326445 1c000e82 fff60613 addi x12, x12, -1 x12=000003fe x12:000003ff +74867251ns 1326446 1c000e84 00130313 addi x6, x6, 1 x6=1c009e3a x6:1c009e39 +74867271ns 1326447 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003fe +74867350ns 1326451 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e3a PA:1c009e3a +74867370ns 1326452 1c000e82 fff60613 addi x12, x12, -1 x12=000003fd x12:000003fe +74867390ns 1326453 1c000e84 00130313 addi x6, x6, 1 x6=1c009e3b x6:1c009e3a +74867410ns 1326454 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003fd +74867489ns 1326458 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e3b PA:1c009e3b +74867509ns 1326459 1c000e82 fff60613 addi x12, x12, -1 x12=000003fc x12:000003fd +74867528ns 1326460 1c000e84 00130313 addi x6, x6, 1 x6=1c009e3c x6:1c009e3b +74867548ns 1326461 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003fc +74867627ns 1326465 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e3c PA:1c009e3c +74867647ns 1326466 1c000e82 fff60613 addi x12, x12, -1 x12=000003fb x12:000003fc +74867667ns 1326467 1c000e84 00130313 addi x6, x6, 1 x6=1c009e3d x6:1c009e3c +74867687ns 1326468 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003fb +74867766ns 1326472 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e3d PA:1c009e3d +74867786ns 1326473 1c000e82 fff60613 addi x12, x12, -1 x12=000003fa x12:000003fb +74867806ns 1326474 1c000e84 00130313 addi x6, x6, 1 x6=1c009e3e x6:1c009e3d +74867825ns 1326475 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003fa +74867905ns 1326479 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e3e PA:1c009e3e +74867924ns 1326480 1c000e82 fff60613 addi x12, x12, -1 x12=000003f9 x12:000003fa +74867944ns 1326481 1c000e84 00130313 addi x6, x6, 1 x6=1c009e3f x6:1c009e3e +74867964ns 1326482 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003f9 +74868043ns 1326486 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e3f PA:1c009e3f +74868063ns 1326487 1c000e82 fff60613 addi x12, x12, -1 x12=000003f8 x12:000003f9 +74868083ns 1326488 1c000e84 00130313 addi x6, x6, 1 x6=1c009e40 x6:1c009e3f +74868102ns 1326489 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003f8 +74868182ns 1326493 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e40 PA:1c009e40 +74868201ns 1326494 1c000e82 fff60613 addi x12, x12, -1 x12=000003f7 x12:000003f8 +74868221ns 1326495 1c000e84 00130313 addi x6, x6, 1 x6=1c009e41 x6:1c009e40 +74868241ns 1326496 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003f7 +74868320ns 1326500 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e41 PA:1c009e41 +74868340ns 1326501 1c000e82 fff60613 addi x12, x12, -1 x12=000003f6 x12:000003f7 +74868360ns 1326502 1c000e84 00130313 addi x6, x6, 1 x6=1c009e42 x6:1c009e41 +74868380ns 1326503 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003f6 +74868459ns 1326507 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e42 PA:1c009e42 +74868478ns 1326508 1c000e82 fff60613 addi x12, x12, -1 x12=000003f5 x12:000003f6 +74868498ns 1326509 1c000e84 00130313 addi x6, x6, 1 x6=1c009e43 x6:1c009e42 +74868518ns 1326510 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003f5 +74868597ns 1326514 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e43 PA:1c009e43 +74868617ns 1326515 1c000e82 fff60613 addi x12, x12, -1 x12=000003f4 x12:000003f5 +74868637ns 1326516 1c000e84 00130313 addi x6, x6, 1 x6=1c009e44 x6:1c009e43 +74868657ns 1326517 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003f4 +74868736ns 1326521 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e44 PA:1c009e44 +74868756ns 1326522 1c000e82 fff60613 addi x12, x12, -1 x12=000003f3 x12:000003f4 +74868775ns 1326523 1c000e84 00130313 addi x6, x6, 1 x6=1c009e45 x6:1c009e44 +74868795ns 1326524 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003f3 +74868874ns 1326528 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e45 PA:1c009e45 +74868894ns 1326529 1c000e82 fff60613 addi x12, x12, -1 x12=000003f2 x12:000003f3 +74868914ns 1326530 1c000e84 00130313 addi x6, x6, 1 x6=1c009e46 x6:1c009e45 +74868934ns 1326531 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003f2 +74869013ns 1326535 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e46 PA:1c009e46 +74869033ns 1326536 1c000e82 fff60613 addi x12, x12, -1 x12=000003f1 x12:000003f2 +74869052ns 1326537 1c000e84 00130313 addi x6, x6, 1 x6=1c009e47 x6:1c009e46 +74869072ns 1326538 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003f1 +74869151ns 1326542 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e47 PA:1c009e47 +74869171ns 1326543 1c000e82 fff60613 addi x12, x12, -1 x12=000003f0 x12:000003f1 +74869191ns 1326544 1c000e84 00130313 addi x6, x6, 1 x6=1c009e48 x6:1c009e47 +74869211ns 1326545 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003f0 +74869290ns 1326549 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e48 PA:1c009e48 +74869310ns 1326550 1c000e82 fff60613 addi x12, x12, -1 x12=000003ef x12:000003f0 +74869330ns 1326551 1c000e84 00130313 addi x6, x6, 1 x6=1c009e49 x6:1c009e48 +74869349ns 1326552 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ef +74869429ns 1326556 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e49 PA:1c009e49 +74869448ns 1326557 1c000e82 fff60613 addi x12, x12, -1 x12=000003ee x12:000003ef +74869468ns 1326558 1c000e84 00130313 addi x6, x6, 1 x6=1c009e4a x6:1c009e49 +74869488ns 1326559 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ee +74869567ns 1326563 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e4a PA:1c009e4a +74869587ns 1326564 1c000e82 fff60613 addi x12, x12, -1 x12=000003ed x12:000003ee +74869607ns 1326565 1c000e84 00130313 addi x6, x6, 1 x6=1c009e4b x6:1c009e4a +74869626ns 1326566 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ed +74869706ns 1326570 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e4b PA:1c009e4b +74869725ns 1326571 1c000e82 fff60613 addi x12, x12, -1 x12=000003ec x12:000003ed +74869745ns 1326572 1c000e84 00130313 addi x6, x6, 1 x6=1c009e4c x6:1c009e4b +74869765ns 1326573 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ec +74869844ns 1326577 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e4c PA:1c009e4c +74869864ns 1326578 1c000e82 fff60613 addi x12, x12, -1 x12=000003eb x12:000003ec +74869884ns 1326579 1c000e84 00130313 addi x6, x6, 1 x6=1c009e4d x6:1c009e4c +74869904ns 1326580 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003eb +74869983ns 1326584 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e4d PA:1c009e4d +74870002ns 1326585 1c000e82 fff60613 addi x12, x12, -1 x12=000003ea x12:000003eb +74870022ns 1326586 1c000e84 00130313 addi x6, x6, 1 x6=1c009e4e x6:1c009e4d +74870042ns 1326587 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ea +74870121ns 1326591 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e4e PA:1c009e4e +74870141ns 1326592 1c000e82 fff60613 addi x12, x12, -1 x12=000003e9 x12:000003ea +74870161ns 1326593 1c000e84 00130313 addi x6, x6, 1 x6=1c009e4f x6:1c009e4e +74870181ns 1326594 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003e9 +74870260ns 1326598 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e4f PA:1c009e4f +74870280ns 1326599 1c000e82 fff60613 addi x12, x12, -1 x12=000003e8 x12:000003e9 +74870299ns 1326600 1c000e84 00130313 addi x6, x6, 1 x6=1c009e50 x6:1c009e4f +74870319ns 1326601 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003e8 +74870398ns 1326605 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e50 PA:1c009e50 +74870418ns 1326606 1c000e82 fff60613 addi x12, x12, -1 x12=000003e7 x12:000003e8 +74870438ns 1326607 1c000e84 00130313 addi x6, x6, 1 x6=1c009e51 x6:1c009e50 +74870458ns 1326608 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003e7 +74870537ns 1326612 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e51 PA:1c009e51 +74870557ns 1326613 1c000e82 fff60613 addi x12, x12, -1 x12=000003e6 x12:000003e7 +74870576ns 1326614 1c000e84 00130313 addi x6, x6, 1 x6=1c009e52 x6:1c009e51 +74870596ns 1326615 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003e6 +74870675ns 1326619 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e52 PA:1c009e52 +74870695ns 1326620 1c000e82 fff60613 addi x12, x12, -1 x12=000003e5 x12:000003e6 +74870715ns 1326621 1c000e84 00130313 addi x6, x6, 1 x6=1c009e53 x6:1c009e52 +74870735ns 1326622 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003e5 +74870814ns 1326626 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e53 PA:1c009e53 +74870834ns 1326627 1c000e82 fff60613 addi x12, x12, -1 x12=000003e4 x12:000003e5 +74870854ns 1326628 1c000e84 00130313 addi x6, x6, 1 x6=1c009e54 x6:1c009e53 +74870873ns 1326629 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003e4 +74870952ns 1326633 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e54 PA:1c009e54 +74870972ns 1326634 1c000e82 fff60613 addi x12, x12, -1 x12=000003e3 x12:000003e4 +74870992ns 1326635 1c000e84 00130313 addi x6, x6, 1 x6=1c009e55 x6:1c009e54 +74871012ns 1326636 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003e3 +74871091ns 1326640 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e55 PA:1c009e55 +74871111ns 1326641 1c000e82 fff60613 addi x12, x12, -1 x12=000003e2 x12:000003e3 +74871131ns 1326642 1c000e84 00130313 addi x6, x6, 1 x6=1c009e56 x6:1c009e55 +74871150ns 1326643 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003e2 +74871230ns 1326647 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e56 PA:1c009e56 +74871249ns 1326648 1c000e82 fff60613 addi x12, x12, -1 x12=000003e1 x12:000003e2 +74871269ns 1326649 1c000e84 00130313 addi x6, x6, 1 x6=1c009e57 x6:1c009e56 +74871289ns 1326650 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003e1 +74871368ns 1326654 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e57 PA:1c009e57 +74871388ns 1326655 1c000e82 fff60613 addi x12, x12, -1 x12=000003e0 x12:000003e1 +74871408ns 1326656 1c000e84 00130313 addi x6, x6, 1 x6=1c009e58 x6:1c009e57 +74871427ns 1326657 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003e0 +74871507ns 1326661 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e58 PA:1c009e58 +74871526ns 1326662 1c000e82 fff60613 addi x12, x12, -1 x12=000003df x12:000003e0 +74871546ns 1326663 1c000e84 00130313 addi x6, x6, 1 x6=1c009e59 x6:1c009e58 +74871566ns 1326664 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003df +74871645ns 1326668 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e59 PA:1c009e59 +74871665ns 1326669 1c000e82 fff60613 addi x12, x12, -1 x12=000003de x12:000003df +74871685ns 1326670 1c000e84 00130313 addi x6, x6, 1 x6=1c009e5a x6:1c009e59 +74871705ns 1326671 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003de +74871784ns 1326675 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e5a PA:1c009e5a +74871804ns 1326676 1c000e82 fff60613 addi x12, x12, -1 x12=000003dd x12:000003de +74871823ns 1326677 1c000e84 00130313 addi x6, x6, 1 x6=1c009e5b x6:1c009e5a +74871843ns 1326678 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003dd +74871922ns 1326682 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e5b PA:1c009e5b +74871942ns 1326683 1c000e82 fff60613 addi x12, x12, -1 x12=000003dc x12:000003dd +74871962ns 1326684 1c000e84 00130313 addi x6, x6, 1 x6=1c009e5c x6:1c009e5b +74871982ns 1326685 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003dc +74872061ns 1326689 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e5c PA:1c009e5c +74872081ns 1326690 1c000e82 fff60613 addi x12, x12, -1 x12=000003db x12:000003dc +74872100ns 1326691 1c000e84 00130313 addi x6, x6, 1 x6=1c009e5d x6:1c009e5c +74872120ns 1326692 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003db +74872199ns 1326696 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e5d PA:1c009e5d +74872219ns 1326697 1c000e82 fff60613 addi x12, x12, -1 x12=000003da x12:000003db +74872239ns 1326698 1c000e84 00130313 addi x6, x6, 1 x6=1c009e5e x6:1c009e5d +74872259ns 1326699 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003da +74872338ns 1326703 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e5e PA:1c009e5e +74872358ns 1326704 1c000e82 fff60613 addi x12, x12, -1 x12=000003d9 x12:000003da +74872378ns 1326705 1c000e84 00130313 addi x6, x6, 1 x6=1c009e5f x6:1c009e5e +74872397ns 1326706 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003d9 +74872476ns 1326710 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e5f PA:1c009e5f +74872496ns 1326711 1c000e82 fff60613 addi x12, x12, -1 x12=000003d8 x12:000003d9 +74872516ns 1326712 1c000e84 00130313 addi x6, x6, 1 x6=1c009e60 x6:1c009e5f +74872536ns 1326713 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003d8 +74872615ns 1326717 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e60 PA:1c009e60 +74872635ns 1326718 1c000e82 fff60613 addi x12, x12, -1 x12=000003d7 x12:000003d8 +74872655ns 1326719 1c000e84 00130313 addi x6, x6, 1 x6=1c009e61 x6:1c009e60 +74872674ns 1326720 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003d7 +74872754ns 1326724 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e61 PA:1c009e61 +74872773ns 1326725 1c000e82 fff60613 addi x12, x12, -1 x12=000003d6 x12:000003d7 +74872793ns 1326726 1c000e84 00130313 addi x6, x6, 1 x6=1c009e62 x6:1c009e61 +74872813ns 1326727 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003d6 +74872892ns 1326731 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e62 PA:1c009e62 +74872912ns 1326732 1c000e82 fff60613 addi x12, x12, -1 x12=000003d5 x12:000003d6 +74872932ns 1326733 1c000e84 00130313 addi x6, x6, 1 x6=1c009e63 x6:1c009e62 +74872951ns 1326734 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003d5 +74873031ns 1326738 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e63 PA:1c009e63 +74873050ns 1326739 1c000e82 fff60613 addi x12, x12, -1 x12=000003d4 x12:000003d5 +74873070ns 1326740 1c000e84 00130313 addi x6, x6, 1 x6=1c009e64 x6:1c009e63 +74873090ns 1326741 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003d4 +74873169ns 1326745 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e64 PA:1c009e64 +74873189ns 1326746 1c000e82 fff60613 addi x12, x12, -1 x12=000003d3 x12:000003d4 +74873209ns 1326747 1c000e84 00130313 addi x6, x6, 1 x6=1c009e65 x6:1c009e64 +74873229ns 1326748 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003d3 +74873308ns 1326752 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e65 PA:1c009e65 +74873328ns 1326753 1c000e82 fff60613 addi x12, x12, -1 x12=000003d2 x12:000003d3 +74873347ns 1326754 1c000e84 00130313 addi x6, x6, 1 x6=1c009e66 x6:1c009e65 +74873367ns 1326755 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003d2 +74873446ns 1326759 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e66 PA:1c009e66 +74873466ns 1326760 1c000e82 fff60613 addi x12, x12, -1 x12=000003d1 x12:000003d2 +74873486ns 1326761 1c000e84 00130313 addi x6, x6, 1 x6=1c009e67 x6:1c009e66 +74873506ns 1326762 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003d1 +74873585ns 1326766 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e67 PA:1c009e67 +74873605ns 1326767 1c000e82 fff60613 addi x12, x12, -1 x12=000003d0 x12:000003d1 +74873624ns 1326768 1c000e84 00130313 addi x6, x6, 1 x6=1c009e68 x6:1c009e67 +74873644ns 1326769 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003d0 +74873723ns 1326773 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e68 PA:1c009e68 +74873743ns 1326774 1c000e82 fff60613 addi x12, x12, -1 x12=000003cf x12:000003d0 +74873763ns 1326775 1c000e84 00130313 addi x6, x6, 1 x6=1c009e69 x6:1c009e68 +74873783ns 1326776 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003cf +74873862ns 1326780 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e69 PA:1c009e69 +74873882ns 1326781 1c000e82 fff60613 addi x12, x12, -1 x12=000003ce x12:000003cf +74873901ns 1326782 1c000e84 00130313 addi x6, x6, 1 x6=1c009e6a x6:1c009e69 +74873921ns 1326783 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ce +74874000ns 1326787 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e6a PA:1c009e6a +74874020ns 1326788 1c000e82 fff60613 addi x12, x12, -1 x12=000003cd x12:000003ce +74874040ns 1326789 1c000e84 00130313 addi x6, x6, 1 x6=1c009e6b x6:1c009e6a +74874060ns 1326790 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003cd +74874139ns 1326794 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e6b PA:1c009e6b +74874159ns 1326795 1c000e82 fff60613 addi x12, x12, -1 x12=000003cc x12:000003cd +74874179ns 1326796 1c000e84 00130313 addi x6, x6, 1 x6=1c009e6c x6:1c009e6b +74874198ns 1326797 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003cc +74874278ns 1326801 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e6c PA:1c009e6c +74874297ns 1326802 1c000e82 fff60613 addi x12, x12, -1 x12=000003cb x12:000003cc +74874317ns 1326803 1c000e84 00130313 addi x6, x6, 1 x6=1c009e6d x6:1c009e6c +74874337ns 1326804 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003cb +74874416ns 1326808 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e6d PA:1c009e6d +74874436ns 1326809 1c000e82 fff60613 addi x12, x12, -1 x12=000003ca x12:000003cb +74874456ns 1326810 1c000e84 00130313 addi x6, x6, 1 x6=1c009e6e x6:1c009e6d +74874475ns 1326811 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ca +74874555ns 1326815 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e6e PA:1c009e6e +74874574ns 1326816 1c000e82 fff60613 addi x12, x12, -1 x12=000003c9 x12:000003ca +74874594ns 1326817 1c000e84 00130313 addi x6, x6, 1 x6=1c009e6f x6:1c009e6e +74874614ns 1326818 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003c9 +74874693ns 1326822 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e6f PA:1c009e6f +74874713ns 1326823 1c000e82 fff60613 addi x12, x12, -1 x12=000003c8 x12:000003c9 +74874733ns 1326824 1c000e84 00130313 addi x6, x6, 1 x6=1c009e70 x6:1c009e6f +74874753ns 1326825 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003c8 +74874832ns 1326829 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e70 PA:1c009e70 +74874852ns 1326830 1c000e82 fff60613 addi x12, x12, -1 x12=000003c7 x12:000003c8 +74874871ns 1326831 1c000e84 00130313 addi x6, x6, 1 x6=1c009e71 x6:1c009e70 +74874891ns 1326832 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003c7 +74874970ns 1326836 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e71 PA:1c009e71 +74874990ns 1326837 1c000e82 fff60613 addi x12, x12, -1 x12=000003c6 x12:000003c7 +74875010ns 1326838 1c000e84 00130313 addi x6, x6, 1 x6=1c009e72 x6:1c009e71 +74875030ns 1326839 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003c6 +74875109ns 1326843 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e72 PA:1c009e72 +74875129ns 1326844 1c000e82 fff60613 addi x12, x12, -1 x12=000003c5 x12:000003c6 +74875148ns 1326845 1c000e84 00130313 addi x6, x6, 1 x6=1c009e73 x6:1c009e72 +74875168ns 1326846 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003c5 +74875247ns 1326850 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e73 PA:1c009e73 +74875267ns 1326851 1c000e82 fff60613 addi x12, x12, -1 x12=000003c4 x12:000003c5 +74875287ns 1326852 1c000e84 00130313 addi x6, x6, 1 x6=1c009e74 x6:1c009e73 +74875307ns 1326853 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003c4 +74875386ns 1326857 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e74 PA:1c009e74 +74875406ns 1326858 1c000e82 fff60613 addi x12, x12, -1 x12=000003c3 x12:000003c4 +74875425ns 1326859 1c000e84 00130313 addi x6, x6, 1 x6=1c009e75 x6:1c009e74 +74875445ns 1326860 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003c3 +74875524ns 1326864 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e75 PA:1c009e75 +74875544ns 1326865 1c000e82 fff60613 addi x12, x12, -1 x12=000003c2 x12:000003c3 +74875564ns 1326866 1c000e84 00130313 addi x6, x6, 1 x6=1c009e76 x6:1c009e75 +74875584ns 1326867 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003c2 +74875663ns 1326871 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e76 PA:1c009e76 +74875683ns 1326872 1c000e82 fff60613 addi x12, x12, -1 x12=000003c1 x12:000003c2 +74875703ns 1326873 1c000e84 00130313 addi x6, x6, 1 x6=1c009e77 x6:1c009e76 +74875722ns 1326874 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003c1 +74875802ns 1326878 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e77 PA:1c009e77 +74875821ns 1326879 1c000e82 fff60613 addi x12, x12, -1 x12=000003c0 x12:000003c1 +74875841ns 1326880 1c000e84 00130313 addi x6, x6, 1 x6=1c009e78 x6:1c009e77 +74875861ns 1326881 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003c0 +74875940ns 1326885 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e78 PA:1c009e78 +74875960ns 1326886 1c000e82 fff60613 addi x12, x12, -1 x12=000003bf x12:000003c0 +74875980ns 1326887 1c000e84 00130313 addi x6, x6, 1 x6=1c009e79 x6:1c009e78 +74875999ns 1326888 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003bf +74876079ns 1326892 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e79 PA:1c009e79 +74876098ns 1326893 1c000e82 fff60613 addi x12, x12, -1 x12=000003be x12:000003bf +74876118ns 1326894 1c000e84 00130313 addi x6, x6, 1 x6=1c009e7a x6:1c009e79 +74876138ns 1326895 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003be +74876217ns 1326899 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e7a PA:1c009e7a +74876237ns 1326900 1c000e82 fff60613 addi x12, x12, -1 x12=000003bd x12:000003be +74876257ns 1326901 1c000e84 00130313 addi x6, x6, 1 x6=1c009e7b x6:1c009e7a +74876277ns 1326902 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003bd +74876356ns 1326906 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e7b PA:1c009e7b +74876375ns 1326907 1c000e82 fff60613 addi x12, x12, -1 x12=000003bc x12:000003bd +74876395ns 1326908 1c000e84 00130313 addi x6, x6, 1 x6=1c009e7c x6:1c009e7b +74876415ns 1326909 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003bc +74876494ns 1326913 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e7c PA:1c009e7c +74876514ns 1326914 1c000e82 fff60613 addi x12, x12, -1 x12=000003bb x12:000003bc +74876534ns 1326915 1c000e84 00130313 addi x6, x6, 1 x6=1c009e7d x6:1c009e7c +74876554ns 1326916 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003bb +74876633ns 1326920 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e7d PA:1c009e7d +74876653ns 1326921 1c000e82 fff60613 addi x12, x12, -1 x12=000003ba x12:000003bb +74876672ns 1326922 1c000e84 00130313 addi x6, x6, 1 x6=1c009e7e x6:1c009e7d +74876692ns 1326923 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ba +74876771ns 1326927 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e7e PA:1c009e7e +74876791ns 1326928 1c000e82 fff60613 addi x12, x12, -1 x12=000003b9 x12:000003ba +74876811ns 1326929 1c000e84 00130313 addi x6, x6, 1 x6=1c009e7f x6:1c009e7e +74876831ns 1326930 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003b9 +74876910ns 1326934 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e7f PA:1c009e7f +74876930ns 1326935 1c000e82 fff60613 addi x12, x12, -1 x12=000003b8 x12:000003b9 +74876949ns 1326936 1c000e84 00130313 addi x6, x6, 1 x6=1c009e80 x6:1c009e7f +74876969ns 1326937 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003b8 +74877048ns 1326941 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e80 PA:1c009e80 +74877068ns 1326942 1c000e82 fff60613 addi x12, x12, -1 x12=000003b7 x12:000003b8 +74877088ns 1326943 1c000e84 00130313 addi x6, x6, 1 x6=1c009e81 x6:1c009e80 +74877108ns 1326944 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003b7 +74877187ns 1326948 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e81 PA:1c009e81 +74877207ns 1326949 1c000e82 fff60613 addi x12, x12, -1 x12=000003b6 x12:000003b7 +74877227ns 1326950 1c000e84 00130313 addi x6, x6, 1 x6=1c009e82 x6:1c009e81 +74877246ns 1326951 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003b6 +74877326ns 1326955 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e82 PA:1c009e82 +74877345ns 1326956 1c000e82 fff60613 addi x12, x12, -1 x12=000003b5 x12:000003b6 +74877365ns 1326957 1c000e84 00130313 addi x6, x6, 1 x6=1c009e83 x6:1c009e82 +74877385ns 1326958 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003b5 +74877464ns 1326962 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e83 PA:1c009e83 +74877484ns 1326963 1c000e82 fff60613 addi x12, x12, -1 x12=000003b4 x12:000003b5 +74877504ns 1326964 1c000e84 00130313 addi x6, x6, 1 x6=1c009e84 x6:1c009e83 +74877523ns 1326965 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003b4 +74877603ns 1326969 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e84 PA:1c009e84 +74877622ns 1326970 1c000e82 fff60613 addi x12, x12, -1 x12=000003b3 x12:000003b4 +74877642ns 1326971 1c000e84 00130313 addi x6, x6, 1 x6=1c009e85 x6:1c009e84 +74877662ns 1326972 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003b3 +74877741ns 1326976 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e85 PA:1c009e85 +74877761ns 1326977 1c000e82 fff60613 addi x12, x12, -1 x12=000003b2 x12:000003b3 +74877781ns 1326978 1c000e84 00130313 addi x6, x6, 1 x6=1c009e86 x6:1c009e85 +74877801ns 1326979 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003b2 +74877880ns 1326983 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e86 PA:1c009e86 +74877899ns 1326984 1c000e82 fff60613 addi x12, x12, -1 x12=000003b1 x12:000003b2 +74877919ns 1326985 1c000e84 00130313 addi x6, x6, 1 x6=1c009e87 x6:1c009e86 +74877939ns 1326986 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003b1 +74878018ns 1326990 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e87 PA:1c009e87 +74878038ns 1326991 1c000e82 fff60613 addi x12, x12, -1 x12=000003b0 x12:000003b1 +74878058ns 1326992 1c000e84 00130313 addi x6, x6, 1 x6=1c009e88 x6:1c009e87 +74878078ns 1326993 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003b0 +74878157ns 1326997 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e88 PA:1c009e88 +74878177ns 1326998 1c000e82 fff60613 addi x12, x12, -1 x12=000003af x12:000003b0 +74878196ns 1326999 1c000e84 00130313 addi x6, x6, 1 x6=1c009e89 x6:1c009e88 +74878216ns 1327000 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003af +74878295ns 1327004 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e89 PA:1c009e89 +74878315ns 1327005 1c000e82 fff60613 addi x12, x12, -1 x12=000003ae x12:000003af +74878335ns 1327006 1c000e84 00130313 addi x6, x6, 1 x6=1c009e8a x6:1c009e89 +74878355ns 1327007 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ae +74878434ns 1327011 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e8a PA:1c009e8a +74878454ns 1327012 1c000e82 fff60613 addi x12, x12, -1 x12=000003ad x12:000003ae +74878473ns 1327013 1c000e84 00130313 addi x6, x6, 1 x6=1c009e8b x6:1c009e8a +74878493ns 1327014 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ad +74878572ns 1327018 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e8b PA:1c009e8b +74878592ns 1327019 1c000e82 fff60613 addi x12, x12, -1 x12=000003ac x12:000003ad +74878612ns 1327020 1c000e84 00130313 addi x6, x6, 1 x6=1c009e8c x6:1c009e8b +74878632ns 1327021 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ac +74878711ns 1327025 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e8c PA:1c009e8c +74878731ns 1327026 1c000e82 fff60613 addi x12, x12, -1 x12=000003ab x12:000003ac +74878751ns 1327027 1c000e84 00130313 addi x6, x6, 1 x6=1c009e8d x6:1c009e8c +74878770ns 1327028 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ab +74878849ns 1327032 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e8d PA:1c009e8d +74878869ns 1327033 1c000e82 fff60613 addi x12, x12, -1 x12=000003aa x12:000003ab +74878889ns 1327034 1c000e84 00130313 addi x6, x6, 1 x6=1c009e8e x6:1c009e8d +74878909ns 1327035 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003aa +74878988ns 1327039 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e8e PA:1c009e8e +74879008ns 1327040 1c000e82 fff60613 addi x12, x12, -1 x12=000003a9 x12:000003aa +74879028ns 1327041 1c000e84 00130313 addi x6, x6, 1 x6=1c009e8f x6:1c009e8e +74879047ns 1327042 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003a9 +74879127ns 1327046 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e8f PA:1c009e8f +74879146ns 1327047 1c000e82 fff60613 addi x12, x12, -1 x12=000003a8 x12:000003a9 +74879166ns 1327048 1c000e84 00130313 addi x6, x6, 1 x6=1c009e90 x6:1c009e8f +74879186ns 1327049 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003a8 +74879265ns 1327053 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e90 PA:1c009e90 +74879285ns 1327054 1c000e82 fff60613 addi x12, x12, -1 x12=000003a7 x12:000003a8 +74879305ns 1327055 1c000e84 00130313 addi x6, x6, 1 x6=1c009e91 x6:1c009e90 +74879325ns 1327056 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003a7 +74879404ns 1327060 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e91 PA:1c009e91 +74879423ns 1327061 1c000e82 fff60613 addi x12, x12, -1 x12=000003a6 x12:000003a7 +74879443ns 1327062 1c000e84 00130313 addi x6, x6, 1 x6=1c009e92 x6:1c009e91 +74879463ns 1327063 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003a6 +74879542ns 1327067 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e92 PA:1c009e92 +74879562ns 1327068 1c000e82 fff60613 addi x12, x12, -1 x12=000003a5 x12:000003a6 +74879582ns 1327069 1c000e84 00130313 addi x6, x6, 1 x6=1c009e93 x6:1c009e92 +74879602ns 1327070 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003a5 +74879681ns 1327074 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e93 PA:1c009e93 +74879701ns 1327075 1c000e82 fff60613 addi x12, x12, -1 x12=000003a4 x12:000003a5 +74879720ns 1327076 1c000e84 00130313 addi x6, x6, 1 x6=1c009e94 x6:1c009e93 +74879740ns 1327077 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003a4 +74879819ns 1327081 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e94 PA:1c009e94 +74879839ns 1327082 1c000e82 fff60613 addi x12, x12, -1 x12=000003a3 x12:000003a4 +74879859ns 1327083 1c000e84 00130313 addi x6, x6, 1 x6=1c009e95 x6:1c009e94 +74879879ns 1327084 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003a3 +74879958ns 1327088 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e95 PA:1c009e95 +74879978ns 1327089 1c000e82 fff60613 addi x12, x12, -1 x12=000003a2 x12:000003a3 +74879997ns 1327090 1c000e84 00130313 addi x6, x6, 1 x6=1c009e96 x6:1c009e95 +74880017ns 1327091 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003a2 +74880096ns 1327095 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e96 PA:1c009e96 +74880116ns 1327096 1c000e82 fff60613 addi x12, x12, -1 x12=000003a1 x12:000003a2 +74880136ns 1327097 1c000e84 00130313 addi x6, x6, 1 x6=1c009e97 x6:1c009e96 +74880156ns 1327098 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003a1 +74880235ns 1327102 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e97 PA:1c009e97 +74880255ns 1327103 1c000e82 fff60613 addi x12, x12, -1 x12=000003a0 x12:000003a1 +74880275ns 1327104 1c000e84 00130313 addi x6, x6, 1 x6=1c009e98 x6:1c009e97 +74880294ns 1327105 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003a0 +74880373ns 1327109 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e98 PA:1c009e98 +74880393ns 1327110 1c000e82 fff60613 addi x12, x12, -1 x12=0000039f x12:000003a0 +74880413ns 1327111 1c000e84 00130313 addi x6, x6, 1 x6=1c009e99 x6:1c009e98 +74880433ns 1327112 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000039f +74880512ns 1327116 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e99 PA:1c009e99 +74880532ns 1327117 1c000e82 fff60613 addi x12, x12, -1 x12=0000039e x12:0000039f +74880552ns 1327118 1c000e84 00130313 addi x6, x6, 1 x6=1c009e9a x6:1c009e99 +74880571ns 1327119 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000039e +74880651ns 1327123 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e9a PA:1c009e9a +74880670ns 1327124 1c000e82 fff60613 addi x12, x12, -1 x12=0000039d x12:0000039e +74880690ns 1327125 1c000e84 00130313 addi x6, x6, 1 x6=1c009e9b x6:1c009e9a +74880710ns 1327126 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000039d +74880789ns 1327130 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e9b PA:1c009e9b +74880809ns 1327131 1c000e82 fff60613 addi x12, x12, -1 x12=0000039c x12:0000039d +74880829ns 1327132 1c000e84 00130313 addi x6, x6, 1 x6=1c009e9c x6:1c009e9b +74880848ns 1327133 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000039c +74880928ns 1327137 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e9c PA:1c009e9c +74880947ns 1327138 1c000e82 fff60613 addi x12, x12, -1 x12=0000039b x12:0000039c +74880967ns 1327139 1c000e84 00130313 addi x6, x6, 1 x6=1c009e9d x6:1c009e9c +74880987ns 1327140 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000039b +74881066ns 1327144 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e9d PA:1c009e9d +74881086ns 1327145 1c000e82 fff60613 addi x12, x12, -1 x12=0000039a x12:0000039b +74881106ns 1327146 1c000e84 00130313 addi x6, x6, 1 x6=1c009e9e x6:1c009e9d +74881126ns 1327147 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000039a +74881205ns 1327151 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e9e PA:1c009e9e +74881225ns 1327152 1c000e82 fff60613 addi x12, x12, -1 x12=00000399 x12:0000039a +74881244ns 1327153 1c000e84 00130313 addi x6, x6, 1 x6=1c009e9f x6:1c009e9e +74881264ns 1327154 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000399 +74881343ns 1327158 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009e9f PA:1c009e9f +74881363ns 1327159 1c000e82 fff60613 addi x12, x12, -1 x12=00000398 x12:00000399 +74881383ns 1327160 1c000e84 00130313 addi x6, x6, 1 x6=1c009ea0 x6:1c009e9f +74881403ns 1327161 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000398 +74881482ns 1327165 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ea0 PA:1c009ea0 +74881502ns 1327166 1c000e82 fff60613 addi x12, x12, -1 x12=00000397 x12:00000398 +74881521ns 1327167 1c000e84 00130313 addi x6, x6, 1 x6=1c009ea1 x6:1c009ea0 +74881541ns 1327168 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000397 +74881620ns 1327172 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ea1 PA:1c009ea1 +74881640ns 1327173 1c000e82 fff60613 addi x12, x12, -1 x12=00000396 x12:00000397 +74881660ns 1327174 1c000e84 00130313 addi x6, x6, 1 x6=1c009ea2 x6:1c009ea1 +74881680ns 1327175 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000396 +74881759ns 1327179 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ea2 PA:1c009ea2 +74881779ns 1327180 1c000e82 fff60613 addi x12, x12, -1 x12=00000395 x12:00000396 +74881799ns 1327181 1c000e84 00130313 addi x6, x6, 1 x6=1c009ea3 x6:1c009ea2 +74881818ns 1327182 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000395 +74881897ns 1327186 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ea3 PA:1c009ea3 +74881917ns 1327187 1c000e82 fff60613 addi x12, x12, -1 x12=00000394 x12:00000395 +74881937ns 1327188 1c000e84 00130313 addi x6, x6, 1 x6=1c009ea4 x6:1c009ea3 +74881957ns 1327189 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000394 +74882036ns 1327193 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ea4 PA:1c009ea4 +74882056ns 1327194 1c000e82 fff60613 addi x12, x12, -1 x12=00000393 x12:00000394 +74882076ns 1327195 1c000e84 00130313 addi x6, x6, 1 x6=1c009ea5 x6:1c009ea4 +74882095ns 1327196 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000393 +74882175ns 1327200 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ea5 PA:1c009ea5 +74882194ns 1327201 1c000e82 fff60613 addi x12, x12, -1 x12=00000392 x12:00000393 +74882214ns 1327202 1c000e84 00130313 addi x6, x6, 1 x6=1c009ea6 x6:1c009ea5 +74882234ns 1327203 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000392 +74882313ns 1327207 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ea6 PA:1c009ea6 +74882333ns 1327208 1c000e82 fff60613 addi x12, x12, -1 x12=00000391 x12:00000392 +74882353ns 1327209 1c000e84 00130313 addi x6, x6, 1 x6=1c009ea7 x6:1c009ea6 +74882372ns 1327210 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000391 +74882452ns 1327214 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ea7 PA:1c009ea7 +74882471ns 1327215 1c000e82 fff60613 addi x12, x12, -1 x12=00000390 x12:00000391 +74882491ns 1327216 1c000e84 00130313 addi x6, x6, 1 x6=1c009ea8 x6:1c009ea7 +74882511ns 1327217 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000390 +74882590ns 1327221 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ea8 PA:1c009ea8 +74882610ns 1327222 1c000e82 fff60613 addi x12, x12, -1 x12=0000038f x12:00000390 +74882630ns 1327223 1c000e84 00130313 addi x6, x6, 1 x6=1c009ea9 x6:1c009ea8 +74882650ns 1327224 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000038f +74882729ns 1327228 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ea9 PA:1c009ea9 +74882749ns 1327229 1c000e82 fff60613 addi x12, x12, -1 x12=0000038e x12:0000038f +74882768ns 1327230 1c000e84 00130313 addi x6, x6, 1 x6=1c009eaa x6:1c009ea9 +74882788ns 1327231 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000038e +74882867ns 1327235 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009eaa PA:1c009eaa +74882887ns 1327236 1c000e82 fff60613 addi x12, x12, -1 x12=0000038d x12:0000038e +74882907ns 1327237 1c000e84 00130313 addi x6, x6, 1 x6=1c009eab x6:1c009eaa +74882927ns 1327238 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000038d +74883006ns 1327242 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009eab PA:1c009eab +74883026ns 1327243 1c000e82 fff60613 addi x12, x12, -1 x12=0000038c x12:0000038d +74883045ns 1327244 1c000e84 00130313 addi x6, x6, 1 x6=1c009eac x6:1c009eab +74883065ns 1327245 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000038c +74883144ns 1327249 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009eac PA:1c009eac +74883164ns 1327250 1c000e82 fff60613 addi x12, x12, -1 x12=0000038b x12:0000038c +74883184ns 1327251 1c000e84 00130313 addi x6, x6, 1 x6=1c009ead x6:1c009eac +74883204ns 1327252 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000038b +74883283ns 1327256 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ead PA:1c009ead +74883303ns 1327257 1c000e82 fff60613 addi x12, x12, -1 x12=0000038a x12:0000038b +74883322ns 1327258 1c000e84 00130313 addi x6, x6, 1 x6=1c009eae x6:1c009ead +74883342ns 1327259 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000038a +74883421ns 1327263 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009eae PA:1c009eae +74883441ns 1327264 1c000e82 fff60613 addi x12, x12, -1 x12=00000389 x12:0000038a +74883461ns 1327265 1c000e84 00130313 addi x6, x6, 1 x6=1c009eaf x6:1c009eae +74883481ns 1327266 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000389 +74883560ns 1327270 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009eaf PA:1c009eaf +74883580ns 1327271 1c000e82 fff60613 addi x12, x12, -1 x12=00000388 x12:00000389 +74883600ns 1327272 1c000e84 00130313 addi x6, x6, 1 x6=1c009eb0 x6:1c009eaf +74883619ns 1327273 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000388 +74883699ns 1327277 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009eb0 PA:1c009eb0 +74883718ns 1327278 1c000e82 fff60613 addi x12, x12, -1 x12=00000387 x12:00000388 +74883738ns 1327279 1c000e84 00130313 addi x6, x6, 1 x6=1c009eb1 x6:1c009eb0 +74883758ns 1327280 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000387 +74883837ns 1327284 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009eb1 PA:1c009eb1 +74883857ns 1327285 1c000e82 fff60613 addi x12, x12, -1 x12=00000386 x12:00000387 +74883877ns 1327286 1c000e84 00130313 addi x6, x6, 1 x6=1c009eb2 x6:1c009eb1 +74883896ns 1327287 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000386 +74883976ns 1327291 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009eb2 PA:1c009eb2 +74883995ns 1327292 1c000e82 fff60613 addi x12, x12, -1 x12=00000385 x12:00000386 +74884015ns 1327293 1c000e84 00130313 addi x6, x6, 1 x6=1c009eb3 x6:1c009eb2 +74884035ns 1327294 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000385 +74884114ns 1327298 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009eb3 PA:1c009eb3 +74884134ns 1327299 1c000e82 fff60613 addi x12, x12, -1 x12=00000384 x12:00000385 +74884154ns 1327300 1c000e84 00130313 addi x6, x6, 1 x6=1c009eb4 x6:1c009eb3 +74884174ns 1327301 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000384 +74884253ns 1327305 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009eb4 PA:1c009eb4 +74884273ns 1327306 1c000e82 fff60613 addi x12, x12, -1 x12=00000383 x12:00000384 +74884292ns 1327307 1c000e84 00130313 addi x6, x6, 1 x6=1c009eb5 x6:1c009eb4 +74884312ns 1327308 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000383 +74884391ns 1327312 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009eb5 PA:1c009eb5 +74884411ns 1327313 1c000e82 fff60613 addi x12, x12, -1 x12=00000382 x12:00000383 +74884431ns 1327314 1c000e84 00130313 addi x6, x6, 1 x6=1c009eb6 x6:1c009eb5 +74884451ns 1327315 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000382 +74884530ns 1327319 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009eb6 PA:1c009eb6 +74884550ns 1327320 1c000e82 fff60613 addi x12, x12, -1 x12=00000381 x12:00000382 +74884569ns 1327321 1c000e84 00130313 addi x6, x6, 1 x6=1c009eb7 x6:1c009eb6 +74884589ns 1327322 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000381 +74884668ns 1327326 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009eb7 PA:1c009eb7 +74884688ns 1327327 1c000e82 fff60613 addi x12, x12, -1 x12=00000380 x12:00000381 +74884708ns 1327328 1c000e84 00130313 addi x6, x6, 1 x6=1c009eb8 x6:1c009eb7 +74884728ns 1327329 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000380 +74884807ns 1327333 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009eb8 PA:1c009eb8 +74884827ns 1327334 1c000e82 fff60613 addi x12, x12, -1 x12=0000037f x12:00000380 +74884846ns 1327335 1c000e84 00130313 addi x6, x6, 1 x6=1c009eb9 x6:1c009eb8 +74884866ns 1327336 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000037f +74884945ns 1327340 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009eb9 PA:1c009eb9 +74884965ns 1327341 1c000e82 fff60613 addi x12, x12, -1 x12=0000037e x12:0000037f +74884985ns 1327342 1c000e84 00130313 addi x6, x6, 1 x6=1c009eba x6:1c009eb9 +74885005ns 1327343 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000037e +74885084ns 1327347 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009eba PA:1c009eba +74885104ns 1327348 1c000e82 fff60613 addi x12, x12, -1 x12=0000037d x12:0000037e +74885124ns 1327349 1c000e84 00130313 addi x6, x6, 1 x6=1c009ebb x6:1c009eba +74885143ns 1327350 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000037d +74885223ns 1327354 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ebb PA:1c009ebb +74885242ns 1327355 1c000e82 fff60613 addi x12, x12, -1 x12=0000037c x12:0000037d +74885262ns 1327356 1c000e84 00130313 addi x6, x6, 1 x6=1c009ebc x6:1c009ebb +74885282ns 1327357 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000037c +74885361ns 1327361 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ebc PA:1c009ebc +74885381ns 1327362 1c000e82 fff60613 addi x12, x12, -1 x12=0000037b x12:0000037c +74885401ns 1327363 1c000e84 00130313 addi x6, x6, 1 x6=1c009ebd x6:1c009ebc +74885420ns 1327364 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000037b +74885500ns 1327368 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ebd PA:1c009ebd +74885519ns 1327369 1c000e82 fff60613 addi x12, x12, -1 x12=0000037a x12:0000037b +74885539ns 1327370 1c000e84 00130313 addi x6, x6, 1 x6=1c009ebe x6:1c009ebd +74885559ns 1327371 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000037a +74885638ns 1327375 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ebe PA:1c009ebe +74885658ns 1327376 1c000e82 fff60613 addi x12, x12, -1 x12=00000379 x12:0000037a +74885678ns 1327377 1c000e84 00130313 addi x6, x6, 1 x6=1c009ebf x6:1c009ebe +74885698ns 1327378 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000379 +74885777ns 1327382 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ebf PA:1c009ebf +74885796ns 1327383 1c000e82 fff60613 addi x12, x12, -1 x12=00000378 x12:00000379 +74885816ns 1327384 1c000e84 00130313 addi x6, x6, 1 x6=1c009ec0 x6:1c009ebf +74885836ns 1327385 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000378 +74885915ns 1327389 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ec0 PA:1c009ec0 +74885935ns 1327390 1c000e82 fff60613 addi x12, x12, -1 x12=00000377 x12:00000378 +74885955ns 1327391 1c000e84 00130313 addi x6, x6, 1 x6=1c009ec1 x6:1c009ec0 +74885975ns 1327392 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000377 +74886054ns 1327396 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ec1 PA:1c009ec1 +74886074ns 1327397 1c000e82 fff60613 addi x12, x12, -1 x12=00000376 x12:00000377 +74886093ns 1327398 1c000e84 00130313 addi x6, x6, 1 x6=1c009ec2 x6:1c009ec1 +74886113ns 1327399 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000376 +74886192ns 1327403 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ec2 PA:1c009ec2 +74886212ns 1327404 1c000e82 fff60613 addi x12, x12, -1 x12=00000375 x12:00000376 +74886232ns 1327405 1c000e84 00130313 addi x6, x6, 1 x6=1c009ec3 x6:1c009ec2 +74886252ns 1327406 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000375 +74886331ns 1327410 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ec3 PA:1c009ec3 +74886351ns 1327411 1c000e82 fff60613 addi x12, x12, -1 x12=00000374 x12:00000375 +74886370ns 1327412 1c000e84 00130313 addi x6, x6, 1 x6=1c009ec4 x6:1c009ec3 +74886390ns 1327413 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000374 +74886469ns 1327417 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ec4 PA:1c009ec4 +74886489ns 1327418 1c000e82 fff60613 addi x12, x12, -1 x12=00000373 x12:00000374 +74886509ns 1327419 1c000e84 00130313 addi x6, x6, 1 x6=1c009ec5 x6:1c009ec4 +74886529ns 1327420 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000373 +74886608ns 1327424 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ec5 PA:1c009ec5 +74886628ns 1327425 1c000e82 fff60613 addi x12, x12, -1 x12=00000372 x12:00000373 +74886648ns 1327426 1c000e84 00130313 addi x6, x6, 1 x6=1c009ec6 x6:1c009ec5 +74886667ns 1327427 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000372 +74886747ns 1327431 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ec6 PA:1c009ec6 +74886766ns 1327432 1c000e82 fff60613 addi x12, x12, -1 x12=00000371 x12:00000372 +74886786ns 1327433 1c000e84 00130313 addi x6, x6, 1 x6=1c009ec7 x6:1c009ec6 +74886806ns 1327434 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000371 +74886885ns 1327438 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ec7 PA:1c009ec7 +74886905ns 1327439 1c000e82 fff60613 addi x12, x12, -1 x12=00000370 x12:00000371 +74886925ns 1327440 1c000e84 00130313 addi x6, x6, 1 x6=1c009ec8 x6:1c009ec7 +74886944ns 1327441 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000370 +74887024ns 1327445 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ec8 PA:1c009ec8 +74887043ns 1327446 1c000e82 fff60613 addi x12, x12, -1 x12=0000036f x12:00000370 +74887063ns 1327447 1c000e84 00130313 addi x6, x6, 1 x6=1c009ec9 x6:1c009ec8 +74887083ns 1327448 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000036f +74887162ns 1327452 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ec9 PA:1c009ec9 +74887182ns 1327453 1c000e82 fff60613 addi x12, x12, -1 x12=0000036e x12:0000036f +74887202ns 1327454 1c000e84 00130313 addi x6, x6, 1 x6=1c009eca x6:1c009ec9 +74887222ns 1327455 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000036e +74887301ns 1327459 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009eca PA:1c009eca +74887320ns 1327460 1c000e82 fff60613 addi x12, x12, -1 x12=0000036d x12:0000036e +74887340ns 1327461 1c000e84 00130313 addi x6, x6, 1 x6=1c009ecb x6:1c009eca +74887360ns 1327462 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000036d +74887439ns 1327466 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ecb PA:1c009ecb +74887459ns 1327467 1c000e82 fff60613 addi x12, x12, -1 x12=0000036c x12:0000036d +74887479ns 1327468 1c000e84 00130313 addi x6, x6, 1 x6=1c009ecc x6:1c009ecb +74887499ns 1327469 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000036c +74887578ns 1327473 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ecc PA:1c009ecc +74887598ns 1327474 1c000e82 fff60613 addi x12, x12, -1 x12=0000036b x12:0000036c +74887617ns 1327475 1c000e84 00130313 addi x6, x6, 1 x6=1c009ecd x6:1c009ecc +74887637ns 1327476 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000036b +74887716ns 1327480 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ecd PA:1c009ecd +74887736ns 1327481 1c000e82 fff60613 addi x12, x12, -1 x12=0000036a x12:0000036b +74887756ns 1327482 1c000e84 00130313 addi x6, x6, 1 x6=1c009ece x6:1c009ecd +74887776ns 1327483 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000036a +74887855ns 1327487 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ece PA:1c009ece +74887875ns 1327488 1c000e82 fff60613 addi x12, x12, -1 x12=00000369 x12:0000036a +74887894ns 1327489 1c000e84 00130313 addi x6, x6, 1 x6=1c009ecf x6:1c009ece +74887914ns 1327490 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000369 +74887993ns 1327494 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ecf PA:1c009ecf +74888013ns 1327495 1c000e82 fff60613 addi x12, x12, -1 x12=00000368 x12:00000369 +74888033ns 1327496 1c000e84 00130313 addi x6, x6, 1 x6=1c009ed0 x6:1c009ecf +74888053ns 1327497 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000368 +74888132ns 1327501 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ed0 PA:1c009ed0 +74888152ns 1327502 1c000e82 fff60613 addi x12, x12, -1 x12=00000367 x12:00000368 +74888172ns 1327503 1c000e84 00130313 addi x6, x6, 1 x6=1c009ed1 x6:1c009ed0 +74888191ns 1327504 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000367 +74888270ns 1327508 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ed1 PA:1c009ed1 +74888290ns 1327509 1c000e82 fff60613 addi x12, x12, -1 x12=00000366 x12:00000367 +74888310ns 1327510 1c000e84 00130313 addi x6, x6, 1 x6=1c009ed2 x6:1c009ed1 +74888330ns 1327511 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000366 +74888409ns 1327515 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ed2 PA:1c009ed2 +74888429ns 1327516 1c000e82 fff60613 addi x12, x12, -1 x12=00000365 x12:00000366 +74888449ns 1327517 1c000e84 00130313 addi x6, x6, 1 x6=1c009ed3 x6:1c009ed2 +74888468ns 1327518 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000365 +74888548ns 1327522 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ed3 PA:1c009ed3 +74888567ns 1327523 1c000e82 fff60613 addi x12, x12, -1 x12=00000364 x12:00000365 +74888587ns 1327524 1c000e84 00130313 addi x6, x6, 1 x6=1c009ed4 x6:1c009ed3 +74888607ns 1327525 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000364 +74888686ns 1327529 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ed4 PA:1c009ed4 +74888706ns 1327530 1c000e82 fff60613 addi x12, x12, -1 x12=00000363 x12:00000364 +74888726ns 1327531 1c000e84 00130313 addi x6, x6, 1 x6=1c009ed5 x6:1c009ed4 +74888745ns 1327532 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000363 +74888825ns 1327536 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ed5 PA:1c009ed5 +74888844ns 1327537 1c000e82 fff60613 addi x12, x12, -1 x12=00000362 x12:00000363 +74888864ns 1327538 1c000e84 00130313 addi x6, x6, 1 x6=1c009ed6 x6:1c009ed5 +74888884ns 1327539 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000362 +74888963ns 1327543 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ed6 PA:1c009ed6 +74888983ns 1327544 1c000e82 fff60613 addi x12, x12, -1 x12=00000361 x12:00000362 +74889003ns 1327545 1c000e84 00130313 addi x6, x6, 1 x6=1c009ed7 x6:1c009ed6 +74889023ns 1327546 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000361 +74889102ns 1327550 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ed7 PA:1c009ed7 +74889122ns 1327551 1c000e82 fff60613 addi x12, x12, -1 x12=00000360 x12:00000361 +74889141ns 1327552 1c000e84 00130313 addi x6, x6, 1 x6=1c009ed8 x6:1c009ed7 +74889161ns 1327553 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000360 +74889240ns 1327557 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ed8 PA:1c009ed8 +74889260ns 1327558 1c000e82 fff60613 addi x12, x12, -1 x12=0000035f x12:00000360 +74889280ns 1327559 1c000e84 00130313 addi x6, x6, 1 x6=1c009ed9 x6:1c009ed8 +74889300ns 1327560 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000035f +74889379ns 1327564 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ed9 PA:1c009ed9 +74889399ns 1327565 1c000e82 fff60613 addi x12, x12, -1 x12=0000035e x12:0000035f +74889418ns 1327566 1c000e84 00130313 addi x6, x6, 1 x6=1c009eda x6:1c009ed9 +74889438ns 1327567 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000035e +74889517ns 1327571 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009eda PA:1c009eda +74889537ns 1327572 1c000e82 fff60613 addi x12, x12, -1 x12=0000035d x12:0000035e +74889557ns 1327573 1c000e84 00130313 addi x6, x6, 1 x6=1c009edb x6:1c009eda +74889577ns 1327574 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000035d +74889656ns 1327578 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009edb PA:1c009edb +74889676ns 1327579 1c000e82 fff60613 addi x12, x12, -1 x12=0000035c x12:0000035d +74889696ns 1327580 1c000e84 00130313 addi x6, x6, 1 x6=1c009edc x6:1c009edb +74889715ns 1327581 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000035c +74889794ns 1327585 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009edc PA:1c009edc +74889814ns 1327586 1c000e82 fff60613 addi x12, x12, -1 x12=0000035b x12:0000035c +74889834ns 1327587 1c000e84 00130313 addi x6, x6, 1 x6=1c009edd x6:1c009edc +74889854ns 1327588 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000035b +74889933ns 1327592 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009edd PA:1c009edd +74889953ns 1327593 1c000e82 fff60613 addi x12, x12, -1 x12=0000035a x12:0000035b +74889973ns 1327594 1c000e84 00130313 addi x6, x6, 1 x6=1c009ede x6:1c009edd +74889992ns 1327595 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000035a +74890072ns 1327599 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ede PA:1c009ede +74890091ns 1327600 1c000e82 fff60613 addi x12, x12, -1 x12=00000359 x12:0000035a +74890111ns 1327601 1c000e84 00130313 addi x6, x6, 1 x6=1c009edf x6:1c009ede +74890131ns 1327602 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000359 +74890210ns 1327606 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009edf PA:1c009edf +74890230ns 1327607 1c000e82 fff60613 addi x12, x12, -1 x12=00000358 x12:00000359 +74890250ns 1327608 1c000e84 00130313 addi x6, x6, 1 x6=1c009ee0 x6:1c009edf +74890269ns 1327609 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000358 +74890349ns 1327613 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ee0 PA:1c009ee0 +74890368ns 1327614 1c000e82 fff60613 addi x12, x12, -1 x12=00000357 x12:00000358 +74890388ns 1327615 1c000e84 00130313 addi x6, x6, 1 x6=1c009ee1 x6:1c009ee0 +74890408ns 1327616 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000357 +74890487ns 1327620 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ee1 PA:1c009ee1 +74890507ns 1327621 1c000e82 fff60613 addi x12, x12, -1 x12=00000356 x12:00000357 +74890527ns 1327622 1c000e84 00130313 addi x6, x6, 1 x6=1c009ee2 x6:1c009ee1 +74890547ns 1327623 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000356 +74890626ns 1327627 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ee2 PA:1c009ee2 +74890646ns 1327628 1c000e82 fff60613 addi x12, x12, -1 x12=00000355 x12:00000356 +74890665ns 1327629 1c000e84 00130313 addi x6, x6, 1 x6=1c009ee3 x6:1c009ee2 +74890685ns 1327630 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000355 +74890764ns 1327634 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ee3 PA:1c009ee3 +74890784ns 1327635 1c000e82 fff60613 addi x12, x12, -1 x12=00000354 x12:00000355 +74890804ns 1327636 1c000e84 00130313 addi x6, x6, 1 x6=1c009ee4 x6:1c009ee3 +74890824ns 1327637 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000354 +74890903ns 1327641 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ee4 PA:1c009ee4 +74890923ns 1327642 1c000e82 fff60613 addi x12, x12, -1 x12=00000353 x12:00000354 +74890942ns 1327643 1c000e84 00130313 addi x6, x6, 1 x6=1c009ee5 x6:1c009ee4 +74890962ns 1327644 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000353 +74891041ns 1327648 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ee5 PA:1c009ee5 +74891061ns 1327649 1c000e82 fff60613 addi x12, x12, -1 x12=00000352 x12:00000353 +74891081ns 1327650 1c000e84 00130313 addi x6, x6, 1 x6=1c009ee6 x6:1c009ee5 +74891101ns 1327651 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000352 +74891180ns 1327655 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ee6 PA:1c009ee6 +74891200ns 1327656 1c000e82 fff60613 addi x12, x12, -1 x12=00000351 x12:00000352 +74891219ns 1327657 1c000e84 00130313 addi x6, x6, 1 x6=1c009ee7 x6:1c009ee6 +74891239ns 1327658 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000351 +74891318ns 1327662 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ee7 PA:1c009ee7 +74891338ns 1327663 1c000e82 fff60613 addi x12, x12, -1 x12=00000350 x12:00000351 +74891358ns 1327664 1c000e84 00130313 addi x6, x6, 1 x6=1c009ee8 x6:1c009ee7 +74891378ns 1327665 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000350 +74891457ns 1327669 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ee8 PA:1c009ee8 +74891477ns 1327670 1c000e82 fff60613 addi x12, x12, -1 x12=0000034f x12:00000350 +74891497ns 1327671 1c000e84 00130313 addi x6, x6, 1 x6=1c009ee9 x6:1c009ee8 +74891516ns 1327672 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000034f +74891596ns 1327676 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ee9 PA:1c009ee9 +74891615ns 1327677 1c000e82 fff60613 addi x12, x12, -1 x12=0000034e x12:0000034f +74891635ns 1327678 1c000e84 00130313 addi x6, x6, 1 x6=1c009eea x6:1c009ee9 +74891655ns 1327679 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000034e +74891734ns 1327683 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009eea PA:1c009eea +74891754ns 1327684 1c000e82 fff60613 addi x12, x12, -1 x12=0000034d x12:0000034e +74891774ns 1327685 1c000e84 00130313 addi x6, x6, 1 x6=1c009eeb x6:1c009eea +74891793ns 1327686 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000034d +74891873ns 1327690 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009eeb PA:1c009eeb +74891892ns 1327691 1c000e82 fff60613 addi x12, x12, -1 x12=0000034c x12:0000034d +74891912ns 1327692 1c000e84 00130313 addi x6, x6, 1 x6=1c009eec x6:1c009eeb +74891932ns 1327693 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000034c +74892011ns 1327697 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009eec PA:1c009eec +74892031ns 1327698 1c000e82 fff60613 addi x12, x12, -1 x12=0000034b x12:0000034c +74892051ns 1327699 1c000e84 00130313 addi x6, x6, 1 x6=1c009eed x6:1c009eec +74892071ns 1327700 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000034b +74892150ns 1327704 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009eed PA:1c009eed +74892170ns 1327705 1c000e82 fff60613 addi x12, x12, -1 x12=0000034a x12:0000034b +74892189ns 1327706 1c000e84 00130313 addi x6, x6, 1 x6=1c009eee x6:1c009eed +74892209ns 1327707 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000034a +74892288ns 1327711 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009eee PA:1c009eee +74892308ns 1327712 1c000e82 fff60613 addi x12, x12, -1 x12=00000349 x12:0000034a +74892328ns 1327713 1c000e84 00130313 addi x6, x6, 1 x6=1c009eef x6:1c009eee +74892348ns 1327714 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000349 +74892427ns 1327718 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009eef PA:1c009eef +74892447ns 1327719 1c000e82 fff60613 addi x12, x12, -1 x12=00000348 x12:00000349 +74892466ns 1327720 1c000e84 00130313 addi x6, x6, 1 x6=1c009ef0 x6:1c009eef +74892486ns 1327721 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000348 +74892565ns 1327725 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ef0 PA:1c009ef0 +74892585ns 1327726 1c000e82 fff60613 addi x12, x12, -1 x12=00000347 x12:00000348 +74892605ns 1327727 1c000e84 00130313 addi x6, x6, 1 x6=1c009ef1 x6:1c009ef0 +74892625ns 1327728 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000347 +74892704ns 1327732 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ef1 PA:1c009ef1 +74892724ns 1327733 1c000e82 fff60613 addi x12, x12, -1 x12=00000346 x12:00000347 +74892743ns 1327734 1c000e84 00130313 addi x6, x6, 1 x6=1c009ef2 x6:1c009ef1 +74892763ns 1327735 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000346 +74892842ns 1327739 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ef2 PA:1c009ef2 +74892862ns 1327740 1c000e82 fff60613 addi x12, x12, -1 x12=00000345 x12:00000346 +74892882ns 1327741 1c000e84 00130313 addi x6, x6, 1 x6=1c009ef3 x6:1c009ef2 +74892902ns 1327742 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000345 +74892981ns 1327746 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ef3 PA:1c009ef3 +74893001ns 1327747 1c000e82 fff60613 addi x12, x12, -1 x12=00000344 x12:00000345 +74893021ns 1327748 1c000e84 00130313 addi x6, x6, 1 x6=1c009ef4 x6:1c009ef3 +74893040ns 1327749 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000344 +74893120ns 1327753 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ef4 PA:1c009ef4 +74893139ns 1327754 1c000e82 fff60613 addi x12, x12, -1 x12=00000343 x12:00000344 +74893159ns 1327755 1c000e84 00130313 addi x6, x6, 1 x6=1c009ef5 x6:1c009ef4 +74893179ns 1327756 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000343 +74893258ns 1327760 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ef5 PA:1c009ef5 +74893278ns 1327761 1c000e82 fff60613 addi x12, x12, -1 x12=00000342 x12:00000343 +74893298ns 1327762 1c000e84 00130313 addi x6, x6, 1 x6=1c009ef6 x6:1c009ef5 +74893317ns 1327763 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000342 +74893397ns 1327767 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ef6 PA:1c009ef6 +74893416ns 1327768 1c000e82 fff60613 addi x12, x12, -1 x12=00000341 x12:00000342 +74893436ns 1327769 1c000e84 00130313 addi x6, x6, 1 x6=1c009ef7 x6:1c009ef6 +74893456ns 1327770 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000341 +74893535ns 1327774 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ef7 PA:1c009ef7 +74893555ns 1327775 1c000e82 fff60613 addi x12, x12, -1 x12=00000340 x12:00000341 +74893575ns 1327776 1c000e84 00130313 addi x6, x6, 1 x6=1c009ef8 x6:1c009ef7 +74893595ns 1327777 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000340 +74893674ns 1327781 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ef8 PA:1c009ef8 +74893693ns 1327782 1c000e82 fff60613 addi x12, x12, -1 x12=0000033f x12:00000340 +74893713ns 1327783 1c000e84 00130313 addi x6, x6, 1 x6=1c009ef9 x6:1c009ef8 +74893733ns 1327784 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000033f +74893812ns 1327788 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ef9 PA:1c009ef9 +74893832ns 1327789 1c000e82 fff60613 addi x12, x12, -1 x12=0000033e x12:0000033f +74893852ns 1327790 1c000e84 00130313 addi x6, x6, 1 x6=1c009efa x6:1c009ef9 +74893872ns 1327791 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000033e +74893951ns 1327795 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009efa PA:1c009efa +74893971ns 1327796 1c000e82 fff60613 addi x12, x12, -1 x12=0000033d x12:0000033e +74893990ns 1327797 1c000e84 00130313 addi x6, x6, 1 x6=1c009efb x6:1c009efa +74894010ns 1327798 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000033d +74894089ns 1327802 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009efb PA:1c009efb +74894109ns 1327803 1c000e82 fff60613 addi x12, x12, -1 x12=0000033c x12:0000033d +74894129ns 1327804 1c000e84 00130313 addi x6, x6, 1 x6=1c009efc x6:1c009efb +74894149ns 1327805 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000033c +74894228ns 1327809 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009efc PA:1c009efc +74894248ns 1327810 1c000e82 fff60613 addi x12, x12, -1 x12=0000033b x12:0000033c +74894267ns 1327811 1c000e84 00130313 addi x6, x6, 1 x6=1c009efd x6:1c009efc +74894287ns 1327812 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000033b +74894366ns 1327816 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009efd PA:1c009efd +74894386ns 1327817 1c000e82 fff60613 addi x12, x12, -1 x12=0000033a x12:0000033b +74894406ns 1327818 1c000e84 00130313 addi x6, x6, 1 x6=1c009efe x6:1c009efd +74894426ns 1327819 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000033a +74894505ns 1327823 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009efe PA:1c009efe +74894525ns 1327824 1c000e82 fff60613 addi x12, x12, -1 x12=00000339 x12:0000033a +74894545ns 1327825 1c000e84 00130313 addi x6, x6, 1 x6=1c009eff x6:1c009efe +74894564ns 1327826 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000339 +74894644ns 1327830 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009eff PA:1c009eff +74894663ns 1327831 1c000e82 fff60613 addi x12, x12, -1 x12=00000338 x12:00000339 +74894683ns 1327832 1c000e84 00130313 addi x6, x6, 1 x6=1c009f00 x6:1c009eff +74894703ns 1327833 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000338 +74894782ns 1327837 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f00 PA:1c009f00 +74894802ns 1327838 1c000e82 fff60613 addi x12, x12, -1 x12=00000337 x12:00000338 +74894822ns 1327839 1c000e84 00130313 addi x6, x6, 1 x6=1c009f01 x6:1c009f00 +74894841ns 1327840 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000337 +74894921ns 1327844 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f01 PA:1c009f01 +74894940ns 1327845 1c000e82 fff60613 addi x12, x12, -1 x12=00000336 x12:00000337 +74894960ns 1327846 1c000e84 00130313 addi x6, x6, 1 x6=1c009f02 x6:1c009f01 +74894980ns 1327847 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000336 +74895059ns 1327851 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f02 PA:1c009f02 +74895079ns 1327852 1c000e82 fff60613 addi x12, x12, -1 x12=00000335 x12:00000336 +74895099ns 1327853 1c000e84 00130313 addi x6, x6, 1 x6=1c009f03 x6:1c009f02 +74895119ns 1327854 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000335 +74895198ns 1327858 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f03 PA:1c009f03 +74895217ns 1327859 1c000e82 fff60613 addi x12, x12, -1 x12=00000334 x12:00000335 +74895237ns 1327860 1c000e84 00130313 addi x6, x6, 1 x6=1c009f04 x6:1c009f03 +74895257ns 1327861 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000334 +74895336ns 1327865 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f04 PA:1c009f04 +74895356ns 1327866 1c000e82 fff60613 addi x12, x12, -1 x12=00000333 x12:00000334 +74895376ns 1327867 1c000e84 00130313 addi x6, x6, 1 x6=1c009f05 x6:1c009f04 +74895396ns 1327868 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000333 +74895475ns 1327872 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f05 PA:1c009f05 +74895495ns 1327873 1c000e82 fff60613 addi x12, x12, -1 x12=00000332 x12:00000333 +74895514ns 1327874 1c000e84 00130313 addi x6, x6, 1 x6=1c009f06 x6:1c009f05 +74895534ns 1327875 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000332 +74895613ns 1327879 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f06 PA:1c009f06 +74895633ns 1327880 1c000e82 fff60613 addi x12, x12, -1 x12=00000331 x12:00000332 +74895653ns 1327881 1c000e84 00130313 addi x6, x6, 1 x6=1c009f07 x6:1c009f06 +74895673ns 1327882 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000331 +74895752ns 1327886 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f07 PA:1c009f07 +74895772ns 1327887 1c000e82 fff60613 addi x12, x12, -1 x12=00000330 x12:00000331 +74895791ns 1327888 1c000e84 00130313 addi x6, x6, 1 x6=1c009f08 x6:1c009f07 +74895811ns 1327889 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000330 +74895890ns 1327893 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f08 PA:1c009f08 +74895910ns 1327894 1c000e82 fff60613 addi x12, x12, -1 x12=0000032f x12:00000330 +74895930ns 1327895 1c000e84 00130313 addi x6, x6, 1 x6=1c009f09 x6:1c009f08 +74895950ns 1327896 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000032f +74896029ns 1327900 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f09 PA:1c009f09 +74896049ns 1327901 1c000e82 fff60613 addi x12, x12, -1 x12=0000032e x12:0000032f +74896069ns 1327902 1c000e84 00130313 addi x6, x6, 1 x6=1c009f0a x6:1c009f09 +74896088ns 1327903 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000032e +74896167ns 1327907 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f0a PA:1c009f0a +74896187ns 1327908 1c000e82 fff60613 addi x12, x12, -1 x12=0000032d x12:0000032e +74896207ns 1327909 1c000e84 00130313 addi x6, x6, 1 x6=1c009f0b x6:1c009f0a +74896227ns 1327910 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000032d +74896306ns 1327914 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f0b PA:1c009f0b +74896326ns 1327915 1c000e82 fff60613 addi x12, x12, -1 x12=0000032c x12:0000032d +74896346ns 1327916 1c000e84 00130313 addi x6, x6, 1 x6=1c009f0c x6:1c009f0b +74896365ns 1327917 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000032c +74896445ns 1327921 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f0c PA:1c009f0c +74896464ns 1327922 1c000e82 fff60613 addi x12, x12, -1 x12=0000032b x12:0000032c +74896484ns 1327923 1c000e84 00130313 addi x6, x6, 1 x6=1c009f0d x6:1c009f0c +74896504ns 1327924 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000032b +74896583ns 1327928 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f0d PA:1c009f0d +74896603ns 1327929 1c000e82 fff60613 addi x12, x12, -1 x12=0000032a x12:0000032b +74896623ns 1327930 1c000e84 00130313 addi x6, x6, 1 x6=1c009f0e x6:1c009f0d +74896643ns 1327931 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000032a +74896722ns 1327935 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f0e PA:1c009f0e +74896741ns 1327936 1c000e82 fff60613 addi x12, x12, -1 x12=00000329 x12:0000032a +74896761ns 1327937 1c000e84 00130313 addi x6, x6, 1 x6=1c009f0f x6:1c009f0e +74896781ns 1327938 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000329 +74896860ns 1327942 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f0f PA:1c009f0f +74896880ns 1327943 1c000e82 fff60613 addi x12, x12, -1 x12=00000328 x12:00000329 +74896900ns 1327944 1c000e84 00130313 addi x6, x6, 1 x6=1c009f10 x6:1c009f0f +74896920ns 1327945 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000328 +74896999ns 1327949 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f10 PA:1c009f10 +74897019ns 1327950 1c000e82 fff60613 addi x12, x12, -1 x12=00000327 x12:00000328 +74897038ns 1327951 1c000e84 00130313 addi x6, x6, 1 x6=1c009f11 x6:1c009f10 +74897058ns 1327952 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000327 +74897137ns 1327956 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f11 PA:1c009f11 +74897157ns 1327957 1c000e82 fff60613 addi x12, x12, -1 x12=00000326 x12:00000327 +74897177ns 1327958 1c000e84 00130313 addi x6, x6, 1 x6=1c009f12 x6:1c009f11 +74897197ns 1327959 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000326 +74897276ns 1327963 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f12 PA:1c009f12 +74897296ns 1327964 1c000e82 fff60613 addi x12, x12, -1 x12=00000325 x12:00000326 +74897315ns 1327965 1c000e84 00130313 addi x6, x6, 1 x6=1c009f13 x6:1c009f12 +74897335ns 1327966 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000325 +74897414ns 1327970 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f13 PA:1c009f13 +74897434ns 1327971 1c000e82 fff60613 addi x12, x12, -1 x12=00000324 x12:00000325 +74897454ns 1327972 1c000e84 00130313 addi x6, x6, 1 x6=1c009f14 x6:1c009f13 +74897474ns 1327973 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000324 +74897553ns 1327977 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f14 PA:1c009f14 +74897573ns 1327978 1c000e82 fff60613 addi x12, x12, -1 x12=00000323 x12:00000324 +74897593ns 1327979 1c000e84 00130313 addi x6, x6, 1 x6=1c009f15 x6:1c009f14 +74897612ns 1327980 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000323 +74897691ns 1327984 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f15 PA:1c009f15 +74897711ns 1327985 1c000e82 fff60613 addi x12, x12, -1 x12=00000322 x12:00000323 +74897731ns 1327986 1c000e84 00130313 addi x6, x6, 1 x6=1c009f16 x6:1c009f15 +74897751ns 1327987 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000322 +74897830ns 1327991 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f16 PA:1c009f16 +74897850ns 1327992 1c000e82 fff60613 addi x12, x12, -1 x12=00000321 x12:00000322 +74897870ns 1327993 1c000e84 00130313 addi x6, x6, 1 x6=1c009f17 x6:1c009f16 +74897889ns 1327994 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000321 +74897969ns 1327998 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f17 PA:1c009f17 +74897988ns 1327999 1c000e82 fff60613 addi x12, x12, -1 x12=00000320 x12:00000321 +74898008ns 1328000 1c000e84 00130313 addi x6, x6, 1 x6=1c009f18 x6:1c009f17 +74898028ns 1328001 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000320 +74898107ns 1328005 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f18 PA:1c009f18 +74898127ns 1328006 1c000e82 fff60613 addi x12, x12, -1 x12=0000031f x12:00000320 +74898147ns 1328007 1c000e84 00130313 addi x6, x6, 1 x6=1c009f19 x6:1c009f18 +74898166ns 1328008 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000031f +74898246ns 1328012 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f19 PA:1c009f19 +74898265ns 1328013 1c000e82 fff60613 addi x12, x12, -1 x12=0000031e x12:0000031f +74898285ns 1328014 1c000e84 00130313 addi x6, x6, 1 x6=1c009f1a x6:1c009f19 +74898305ns 1328015 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000031e +74898384ns 1328019 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f1a PA:1c009f1a +74898404ns 1328020 1c000e82 fff60613 addi x12, x12, -1 x12=0000031d x12:0000031e +74898424ns 1328021 1c000e84 00130313 addi x6, x6, 1 x6=1c009f1b x6:1c009f1a +74898444ns 1328022 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000031d +74898523ns 1328026 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f1b PA:1c009f1b +74898543ns 1328027 1c000e82 fff60613 addi x12, x12, -1 x12=0000031c x12:0000031d +74898562ns 1328028 1c000e84 00130313 addi x6, x6, 1 x6=1c009f1c x6:1c009f1b +74898582ns 1328029 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000031c +74898661ns 1328033 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f1c PA:1c009f1c +74898681ns 1328034 1c000e82 fff60613 addi x12, x12, -1 x12=0000031b x12:0000031c +74898701ns 1328035 1c000e84 00130313 addi x6, x6, 1 x6=1c009f1d x6:1c009f1c +74898721ns 1328036 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000031b +74898800ns 1328040 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f1d PA:1c009f1d +74898820ns 1328041 1c000e82 fff60613 addi x12, x12, -1 x12=0000031a x12:0000031b +74898839ns 1328042 1c000e84 00130313 addi x6, x6, 1 x6=1c009f1e x6:1c009f1d +74898859ns 1328043 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000031a +74898938ns 1328047 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f1e PA:1c009f1e +74898958ns 1328048 1c000e82 fff60613 addi x12, x12, -1 x12=00000319 x12:0000031a +74898978ns 1328049 1c000e84 00130313 addi x6, x6, 1 x6=1c009f1f x6:1c009f1e +74898998ns 1328050 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000319 +74899077ns 1328054 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f1f PA:1c009f1f +74899097ns 1328055 1c000e82 fff60613 addi x12, x12, -1 x12=00000318 x12:00000319 +74899117ns 1328056 1c000e84 00130313 addi x6, x6, 1 x6=1c009f20 x6:1c009f1f +74899136ns 1328057 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000318 +74899215ns 1328061 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f20 PA:1c009f20 +74899235ns 1328062 1c000e82 fff60613 addi x12, x12, -1 x12=00000317 x12:00000318 +74899255ns 1328063 1c000e84 00130313 addi x6, x6, 1 x6=1c009f21 x6:1c009f20 +74899275ns 1328064 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000317 +74899354ns 1328068 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f21 PA:1c009f21 +74899374ns 1328069 1c000e82 fff60613 addi x12, x12, -1 x12=00000316 x12:00000317 +74899394ns 1328070 1c000e84 00130313 addi x6, x6, 1 x6=1c009f22 x6:1c009f21 +74899413ns 1328071 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000316 +74899493ns 1328075 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f22 PA:1c009f22 +74899512ns 1328076 1c000e82 fff60613 addi x12, x12, -1 x12=00000315 x12:00000316 +74899532ns 1328077 1c000e84 00130313 addi x6, x6, 1 x6=1c009f23 x6:1c009f22 +74899552ns 1328078 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000315 +74899631ns 1328082 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f23 PA:1c009f23 +74899651ns 1328083 1c000e82 fff60613 addi x12, x12, -1 x12=00000314 x12:00000315 +74899671ns 1328084 1c000e84 00130313 addi x6, x6, 1 x6=1c009f24 x6:1c009f23 +74899690ns 1328085 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000314 +74899770ns 1328089 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f24 PA:1c009f24 +74899789ns 1328090 1c000e82 fff60613 addi x12, x12, -1 x12=00000313 x12:00000314 +74899809ns 1328091 1c000e84 00130313 addi x6, x6, 1 x6=1c009f25 x6:1c009f24 +74899829ns 1328092 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000313 +74899908ns 1328096 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f25 PA:1c009f25 +74899928ns 1328097 1c000e82 fff60613 addi x12, x12, -1 x12=00000312 x12:00000313 +74899948ns 1328098 1c000e84 00130313 addi x6, x6, 1 x6=1c009f26 x6:1c009f25 +74899968ns 1328099 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000312 +74900047ns 1328103 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f26 PA:1c009f26 +74900067ns 1328104 1c000e82 fff60613 addi x12, x12, -1 x12=00000311 x12:00000312 +74900086ns 1328105 1c000e84 00130313 addi x6, x6, 1 x6=1c009f27 x6:1c009f26 +74900106ns 1328106 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000311 +74900185ns 1328110 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f27 PA:1c009f27 +74900205ns 1328111 1c000e82 fff60613 addi x12, x12, -1 x12=00000310 x12:00000311 +74900225ns 1328112 1c000e84 00130313 addi x6, x6, 1 x6=1c009f28 x6:1c009f27 +74900245ns 1328113 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000310 +74900324ns 1328117 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f28 PA:1c009f28 +74900344ns 1328118 1c000e82 fff60613 addi x12, x12, -1 x12=0000030f x12:00000310 +74900363ns 1328119 1c000e84 00130313 addi x6, x6, 1 x6=1c009f29 x6:1c009f28 +74900383ns 1328120 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000030f +74900462ns 1328124 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f29 PA:1c009f29 +74900482ns 1328125 1c000e82 fff60613 addi x12, x12, -1 x12=0000030e x12:0000030f +74900502ns 1328126 1c000e84 00130313 addi x6, x6, 1 x6=1c009f2a x6:1c009f29 +74900522ns 1328127 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000030e +74900601ns 1328131 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f2a PA:1c009f2a +74900621ns 1328132 1c000e82 fff60613 addi x12, x12, -1 x12=0000030d x12:0000030e +74900640ns 1328133 1c000e84 00130313 addi x6, x6, 1 x6=1c009f2b x6:1c009f2a +74900660ns 1328134 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000030d +74900739ns 1328138 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f2b PA:1c009f2b +74900759ns 1328139 1c000e82 fff60613 addi x12, x12, -1 x12=0000030c x12:0000030d +74900779ns 1328140 1c000e84 00130313 addi x6, x6, 1 x6=1c009f2c x6:1c009f2b +74900799ns 1328141 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000030c +74900878ns 1328145 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f2c PA:1c009f2c +74900898ns 1328146 1c000e82 fff60613 addi x12, x12, -1 x12=0000030b x12:0000030c +74900918ns 1328147 1c000e84 00130313 addi x6, x6, 1 x6=1c009f2d x6:1c009f2c +74900937ns 1328148 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000030b +74901017ns 1328152 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f2d PA:1c009f2d +74901036ns 1328153 1c000e82 fff60613 addi x12, x12, -1 x12=0000030a x12:0000030b +74901056ns 1328154 1c000e84 00130313 addi x6, x6, 1 x6=1c009f2e x6:1c009f2d +74901076ns 1328155 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000030a +74901155ns 1328159 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f2e PA:1c009f2e +74901175ns 1328160 1c000e82 fff60613 addi x12, x12, -1 x12=00000309 x12:0000030a +74901195ns 1328161 1c000e84 00130313 addi x6, x6, 1 x6=1c009f2f x6:1c009f2e +74901214ns 1328162 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000309 +74901294ns 1328166 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f2f PA:1c009f2f +74901313ns 1328167 1c000e82 fff60613 addi x12, x12, -1 x12=00000308 x12:00000309 +74901333ns 1328168 1c000e84 00130313 addi x6, x6, 1 x6=1c009f30 x6:1c009f2f +74901353ns 1328169 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000308 +74901432ns 1328173 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f30 PA:1c009f30 +74901452ns 1328174 1c000e82 fff60613 addi x12, x12, -1 x12=00000307 x12:00000308 +74901472ns 1328175 1c000e84 00130313 addi x6, x6, 1 x6=1c009f31 x6:1c009f30 +74901492ns 1328176 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000307 +74901571ns 1328180 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f31 PA:1c009f31 +74901591ns 1328181 1c000e82 fff60613 addi x12, x12, -1 x12=00000306 x12:00000307 +74901610ns 1328182 1c000e84 00130313 addi x6, x6, 1 x6=1c009f32 x6:1c009f31 +74901630ns 1328183 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000306 +74901709ns 1328187 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f32 PA:1c009f32 +74901729ns 1328188 1c000e82 fff60613 addi x12, x12, -1 x12=00000305 x12:00000306 +74901749ns 1328189 1c000e84 00130313 addi x6, x6, 1 x6=1c009f33 x6:1c009f32 +74901769ns 1328190 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000305 +74901848ns 1328194 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f33 PA:1c009f33 +74901868ns 1328195 1c000e82 fff60613 addi x12, x12, -1 x12=00000304 x12:00000305 +74901887ns 1328196 1c000e84 00130313 addi x6, x6, 1 x6=1c009f34 x6:1c009f33 +74901907ns 1328197 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000304 +74901986ns 1328201 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f34 PA:1c009f34 +74902006ns 1328202 1c000e82 fff60613 addi x12, x12, -1 x12=00000303 x12:00000304 +74902026ns 1328203 1c000e84 00130313 addi x6, x6, 1 x6=1c009f35 x6:1c009f34 +74902046ns 1328204 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000303 +74902125ns 1328208 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f35 PA:1c009f35 +74902145ns 1328209 1c000e82 fff60613 addi x12, x12, -1 x12=00000302 x12:00000303 +74902164ns 1328210 1c000e84 00130313 addi x6, x6, 1 x6=1c009f36 x6:1c009f35 +74902184ns 1328211 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000302 +74902263ns 1328215 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f36 PA:1c009f36 +74902283ns 1328216 1c000e82 fff60613 addi x12, x12, -1 x12=00000301 x12:00000302 +74902303ns 1328217 1c000e84 00130313 addi x6, x6, 1 x6=1c009f37 x6:1c009f36 +74902323ns 1328218 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000301 +74902402ns 1328222 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f37 PA:1c009f37 +74902422ns 1328223 1c000e82 fff60613 addi x12, x12, -1 x12=00000300 x12:00000301 +74902442ns 1328224 1c000e84 00130313 addi x6, x6, 1 x6=1c009f38 x6:1c009f37 +74902461ns 1328225 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000300 +74902541ns 1328229 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f38 PA:1c009f38 +74902560ns 1328230 1c000e82 fff60613 addi x12, x12, -1 x12=000002ff x12:00000300 +74902580ns 1328231 1c000e84 00130313 addi x6, x6, 1 x6=1c009f39 x6:1c009f38 +74902600ns 1328232 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ff +74902679ns 1328236 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f39 PA:1c009f39 +74902699ns 1328237 1c000e82 fff60613 addi x12, x12, -1 x12=000002fe x12:000002ff +74902719ns 1328238 1c000e84 00130313 addi x6, x6, 1 x6=1c009f3a x6:1c009f39 +74902738ns 1328239 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002fe +74902818ns 1328243 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f3a PA:1c009f3a +74902837ns 1328244 1c000e82 fff60613 addi x12, x12, -1 x12=000002fd x12:000002fe +74902857ns 1328245 1c000e84 00130313 addi x6, x6, 1 x6=1c009f3b x6:1c009f3a +74902877ns 1328246 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002fd +74902956ns 1328250 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f3b PA:1c009f3b +74902976ns 1328251 1c000e82 fff60613 addi x12, x12, -1 x12=000002fc x12:000002fd +74902996ns 1328252 1c000e84 00130313 addi x6, x6, 1 x6=1c009f3c x6:1c009f3b +74903016ns 1328253 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002fc +74903095ns 1328257 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f3c PA:1c009f3c +74903114ns 1328258 1c000e82 fff60613 addi x12, x12, -1 x12=000002fb x12:000002fc +74903134ns 1328259 1c000e84 00130313 addi x6, x6, 1 x6=1c009f3d x6:1c009f3c +74903154ns 1328260 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002fb +74903233ns 1328264 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f3d PA:1c009f3d +74903253ns 1328265 1c000e82 fff60613 addi x12, x12, -1 x12=000002fa x12:000002fb +74903273ns 1328266 1c000e84 00130313 addi x6, x6, 1 x6=1c009f3e x6:1c009f3d +74903293ns 1328267 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002fa +74903372ns 1328271 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f3e PA:1c009f3e +74903392ns 1328272 1c000e82 fff60613 addi x12, x12, -1 x12=000002f9 x12:000002fa +74903411ns 1328273 1c000e84 00130313 addi x6, x6, 1 x6=1c009f3f x6:1c009f3e +74903431ns 1328274 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002f9 +74903510ns 1328278 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f3f PA:1c009f3f +74903530ns 1328279 1c000e82 fff60613 addi x12, x12, -1 x12=000002f8 x12:000002f9 +74903550ns 1328280 1c000e84 00130313 addi x6, x6, 1 x6=1c009f40 x6:1c009f3f +74903570ns 1328281 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002f8 +74903649ns 1328285 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f40 PA:1c009f40 +74903669ns 1328286 1c000e82 fff60613 addi x12, x12, -1 x12=000002f7 x12:000002f8 +74903688ns 1328287 1c000e84 00130313 addi x6, x6, 1 x6=1c009f41 x6:1c009f40 +74903708ns 1328288 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002f7 +74903787ns 1328292 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f41 PA:1c009f41 +74903807ns 1328293 1c000e82 fff60613 addi x12, x12, -1 x12=000002f6 x12:000002f7 +74903827ns 1328294 1c000e84 00130313 addi x6, x6, 1 x6=1c009f42 x6:1c009f41 +74903847ns 1328295 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002f6 +74903926ns 1328299 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f42 PA:1c009f42 +74903946ns 1328300 1c000e82 fff60613 addi x12, x12, -1 x12=000002f5 x12:000002f6 +74903966ns 1328301 1c000e84 00130313 addi x6, x6, 1 x6=1c009f43 x6:1c009f42 +74903985ns 1328302 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002f5 +74904065ns 1328306 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f43 PA:1c009f43 +74904084ns 1328307 1c000e82 fff60613 addi x12, x12, -1 x12=000002f4 x12:000002f5 +74904104ns 1328308 1c000e84 00130313 addi x6, x6, 1 x6=1c009f44 x6:1c009f43 +74904124ns 1328309 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002f4 +74904203ns 1328313 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f44 PA:1c009f44 +74904223ns 1328314 1c000e82 fff60613 addi x12, x12, -1 x12=000002f3 x12:000002f4 +74904243ns 1328315 1c000e84 00130313 addi x6, x6, 1 x6=1c009f45 x6:1c009f44 +74904262ns 1328316 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002f3 +74904342ns 1328320 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f45 PA:1c009f45 +74904361ns 1328321 1c000e82 fff60613 addi x12, x12, -1 x12=000002f2 x12:000002f3 +74904381ns 1328322 1c000e84 00130313 addi x6, x6, 1 x6=1c009f46 x6:1c009f45 +74904401ns 1328323 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002f2 +74904480ns 1328327 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f46 PA:1c009f46 +74904500ns 1328328 1c000e82 fff60613 addi x12, x12, -1 x12=000002f1 x12:000002f2 +74904520ns 1328329 1c000e84 00130313 addi x6, x6, 1 x6=1c009f47 x6:1c009f46 +74904540ns 1328330 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002f1 +74904619ns 1328334 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f47 PA:1c009f47 +74904638ns 1328335 1c000e82 fff60613 addi x12, x12, -1 x12=000002f0 x12:000002f1 +74904658ns 1328336 1c000e84 00130313 addi x6, x6, 1 x6=1c009f48 x6:1c009f47 +74904678ns 1328337 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002f0 +74904757ns 1328341 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f48 PA:1c009f48 +74904777ns 1328342 1c000e82 fff60613 addi x12, x12, -1 x12=000002ef x12:000002f0 +74904797ns 1328343 1c000e84 00130313 addi x6, x6, 1 x6=1c009f49 x6:1c009f48 +74904817ns 1328344 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ef +74904896ns 1328348 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f49 PA:1c009f49 +74904916ns 1328349 1c000e82 fff60613 addi x12, x12, -1 x12=000002ee x12:000002ef +74904935ns 1328350 1c000e84 00130313 addi x6, x6, 1 x6=1c009f4a x6:1c009f49 +74904955ns 1328351 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ee +74905034ns 1328355 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f4a PA:1c009f4a +74905054ns 1328356 1c000e82 fff60613 addi x12, x12, -1 x12=000002ed x12:000002ee +74905074ns 1328357 1c000e84 00130313 addi x6, x6, 1 x6=1c009f4b x6:1c009f4a +74905094ns 1328358 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ed +74905173ns 1328362 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f4b PA:1c009f4b +74905193ns 1328363 1c000e82 fff60613 addi x12, x12, -1 x12=000002ec x12:000002ed +74905212ns 1328364 1c000e84 00130313 addi x6, x6, 1 x6=1c009f4c x6:1c009f4b +74905232ns 1328365 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ec +74905311ns 1328369 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f4c PA:1c009f4c +74905331ns 1328370 1c000e82 fff60613 addi x12, x12, -1 x12=000002eb x12:000002ec +74905351ns 1328371 1c000e84 00130313 addi x6, x6, 1 x6=1c009f4d x6:1c009f4c +74905371ns 1328372 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002eb +74905450ns 1328376 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f4d PA:1c009f4d +74905470ns 1328377 1c000e82 fff60613 addi x12, x12, -1 x12=000002ea x12:000002eb +74905490ns 1328378 1c000e84 00130313 addi x6, x6, 1 x6=1c009f4e x6:1c009f4d +74905509ns 1328379 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ea +74905588ns 1328383 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f4e PA:1c009f4e +74905608ns 1328384 1c000e82 fff60613 addi x12, x12, -1 x12=000002e9 x12:000002ea +74905628ns 1328385 1c000e84 00130313 addi x6, x6, 1 x6=1c009f4f x6:1c009f4e +74905648ns 1328386 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002e9 +74905727ns 1328390 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f4f PA:1c009f4f +74905747ns 1328391 1c000e82 fff60613 addi x12, x12, -1 x12=000002e8 x12:000002e9 +74905767ns 1328392 1c000e84 00130313 addi x6, x6, 1 x6=1c009f50 x6:1c009f4f +74905786ns 1328393 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002e8 +74905866ns 1328397 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f50 PA:1c009f50 +74905885ns 1328398 1c000e82 fff60613 addi x12, x12, -1 x12=000002e7 x12:000002e8 +74905905ns 1328399 1c000e84 00130313 addi x6, x6, 1 x6=1c009f51 x6:1c009f50 +74905925ns 1328400 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002e7 +74906004ns 1328404 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f51 PA:1c009f51 +74906024ns 1328405 1c000e82 fff60613 addi x12, x12, -1 x12=000002e6 x12:000002e7 +74906044ns 1328406 1c000e84 00130313 addi x6, x6, 1 x6=1c009f52 x6:1c009f51 +74906063ns 1328407 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002e6 +74906143ns 1328411 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f52 PA:1c009f52 +74906162ns 1328412 1c000e82 fff60613 addi x12, x12, -1 x12=000002e5 x12:000002e6 +74906182ns 1328413 1c000e84 00130313 addi x6, x6, 1 x6=1c009f53 x6:1c009f52 +74906202ns 1328414 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002e5 +74906281ns 1328418 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f53 PA:1c009f53 +74906301ns 1328419 1c000e82 fff60613 addi x12, x12, -1 x12=000002e4 x12:000002e5 +74906321ns 1328420 1c000e84 00130313 addi x6, x6, 1 x6=1c009f54 x6:1c009f53 +74906341ns 1328421 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002e4 +74906420ns 1328425 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f54 PA:1c009f54 +74906440ns 1328426 1c000e82 fff60613 addi x12, x12, -1 x12=000002e3 x12:000002e4 +74906459ns 1328427 1c000e84 00130313 addi x6, x6, 1 x6=1c009f55 x6:1c009f54 +74906479ns 1328428 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002e3 +74906558ns 1328432 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f55 PA:1c009f55 +74906578ns 1328433 1c000e82 fff60613 addi x12, x12, -1 x12=000002e2 x12:000002e3 +74906598ns 1328434 1c000e84 00130313 addi x6, x6, 1 x6=1c009f56 x6:1c009f55 +74906618ns 1328435 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002e2 +74906697ns 1328439 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f56 PA:1c009f56 +74906717ns 1328440 1c000e82 fff60613 addi x12, x12, -1 x12=000002e1 x12:000002e2 +74906736ns 1328441 1c000e84 00130313 addi x6, x6, 1 x6=1c009f57 x6:1c009f56 +74906756ns 1328442 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002e1 +74906835ns 1328446 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f57 PA:1c009f57 +74906855ns 1328447 1c000e82 fff60613 addi x12, x12, -1 x12=000002e0 x12:000002e1 +74906875ns 1328448 1c000e84 00130313 addi x6, x6, 1 x6=1c009f58 x6:1c009f57 +74906895ns 1328449 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002e0 +74906974ns 1328453 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f58 PA:1c009f58 +74906994ns 1328454 1c000e82 fff60613 addi x12, x12, -1 x12=000002df x12:000002e0 +74907014ns 1328455 1c000e84 00130313 addi x6, x6, 1 x6=1c009f59 x6:1c009f58 +74907033ns 1328456 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002df +74907112ns 1328460 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f59 PA:1c009f59 +74907132ns 1328461 1c000e82 fff60613 addi x12, x12, -1 x12=000002de x12:000002df +74907152ns 1328462 1c000e84 00130313 addi x6, x6, 1 x6=1c009f5a x6:1c009f59 +74907172ns 1328463 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002de +74907251ns 1328467 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f5a PA:1c009f5a +74907271ns 1328468 1c000e82 fff60613 addi x12, x12, -1 x12=000002dd x12:000002de +74907291ns 1328469 1c000e84 00130313 addi x6, x6, 1 x6=1c009f5b x6:1c009f5a +74907310ns 1328470 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002dd +74907390ns 1328474 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f5b PA:1c009f5b +74907409ns 1328475 1c000e82 fff60613 addi x12, x12, -1 x12=000002dc x12:000002dd +74907429ns 1328476 1c000e84 00130313 addi x6, x6, 1 x6=1c009f5c x6:1c009f5b +74907449ns 1328477 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002dc +74907528ns 1328481 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f5c PA:1c009f5c +74907548ns 1328482 1c000e82 fff60613 addi x12, x12, -1 x12=000002db x12:000002dc +74907568ns 1328483 1c000e84 00130313 addi x6, x6, 1 x6=1c009f5d x6:1c009f5c +74907587ns 1328484 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002db +74907667ns 1328488 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f5d PA:1c009f5d +74907686ns 1328489 1c000e82 fff60613 addi x12, x12, -1 x12=000002da x12:000002db +74907706ns 1328490 1c000e84 00130313 addi x6, x6, 1 x6=1c009f5e x6:1c009f5d +74907726ns 1328491 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002da +74907805ns 1328495 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f5e PA:1c009f5e +74907825ns 1328496 1c000e82 fff60613 addi x12, x12, -1 x12=000002d9 x12:000002da +74907845ns 1328497 1c000e84 00130313 addi x6, x6, 1 x6=1c009f5f x6:1c009f5e +74907865ns 1328498 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002d9 +74907944ns 1328502 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f5f PA:1c009f5f +74907964ns 1328503 1c000e82 fff60613 addi x12, x12, -1 x12=000002d8 x12:000002d9 +74907983ns 1328504 1c000e84 00130313 addi x6, x6, 1 x6=1c009f60 x6:1c009f5f +74908003ns 1328505 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002d8 +74908082ns 1328509 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f60 PA:1c009f60 +74908102ns 1328510 1c000e82 fff60613 addi x12, x12, -1 x12=000002d7 x12:000002d8 +74908122ns 1328511 1c000e84 00130313 addi x6, x6, 1 x6=1c009f61 x6:1c009f60 +74908142ns 1328512 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002d7 +74908221ns 1328516 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f61 PA:1c009f61 +74908241ns 1328517 1c000e82 fff60613 addi x12, x12, -1 x12=000002d6 x12:000002d7 +74908260ns 1328518 1c000e84 00130313 addi x6, x6, 1 x6=1c009f62 x6:1c009f61 +74908280ns 1328519 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002d6 +74908359ns 1328523 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f62 PA:1c009f62 +74908379ns 1328524 1c000e82 fff60613 addi x12, x12, -1 x12=000002d5 x12:000002d6 +74908399ns 1328525 1c000e84 00130313 addi x6, x6, 1 x6=1c009f63 x6:1c009f62 +74908419ns 1328526 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002d5 +74908498ns 1328530 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f63 PA:1c009f63 +74908518ns 1328531 1c000e82 fff60613 addi x12, x12, -1 x12=000002d4 x12:000002d5 +74908537ns 1328532 1c000e84 00130313 addi x6, x6, 1 x6=1c009f64 x6:1c009f63 +74908557ns 1328533 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002d4 +74908636ns 1328537 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f64 PA:1c009f64 +74908656ns 1328538 1c000e82 fff60613 addi x12, x12, -1 x12=000002d3 x12:000002d4 +74908676ns 1328539 1c000e84 00130313 addi x6, x6, 1 x6=1c009f65 x6:1c009f64 +74908696ns 1328540 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002d3 +74908775ns 1328544 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f65 PA:1c009f65 +74908795ns 1328545 1c000e82 fff60613 addi x12, x12, -1 x12=000002d2 x12:000002d3 +74908815ns 1328546 1c000e84 00130313 addi x6, x6, 1 x6=1c009f66 x6:1c009f65 +74908834ns 1328547 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002d2 +74908914ns 1328551 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f66 PA:1c009f66 +74908933ns 1328552 1c000e82 fff60613 addi x12, x12, -1 x12=000002d1 x12:000002d2 +74908953ns 1328553 1c000e84 00130313 addi x6, x6, 1 x6=1c009f67 x6:1c009f66 +74908973ns 1328554 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002d1 +74909052ns 1328558 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f67 PA:1c009f67 +74909072ns 1328559 1c000e82 fff60613 addi x12, x12, -1 x12=000002d0 x12:000002d1 +74909092ns 1328560 1c000e84 00130313 addi x6, x6, 1 x6=1c009f68 x6:1c009f67 +74909111ns 1328561 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002d0 +74909191ns 1328565 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f68 PA:1c009f68 +74909210ns 1328566 1c000e82 fff60613 addi x12, x12, -1 x12=000002cf x12:000002d0 +74909230ns 1328567 1c000e84 00130313 addi x6, x6, 1 x6=1c009f69 x6:1c009f68 +74909250ns 1328568 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002cf +74909329ns 1328572 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f69 PA:1c009f69 +74909349ns 1328573 1c000e82 fff60613 addi x12, x12, -1 x12=000002ce x12:000002cf +74909369ns 1328574 1c000e84 00130313 addi x6, x6, 1 x6=1c009f6a x6:1c009f69 +74909389ns 1328575 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ce +74909468ns 1328579 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f6a PA:1c009f6a +74909488ns 1328580 1c000e82 fff60613 addi x12, x12, -1 x12=000002cd x12:000002ce +74909507ns 1328581 1c000e84 00130313 addi x6, x6, 1 x6=1c009f6b x6:1c009f6a +74909527ns 1328582 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002cd +74909606ns 1328586 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f6b PA:1c009f6b +74909626ns 1328587 1c000e82 fff60613 addi x12, x12, -1 x12=000002cc x12:000002cd +74909646ns 1328588 1c000e84 00130313 addi x6, x6, 1 x6=1c009f6c x6:1c009f6b +74909666ns 1328589 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002cc +74909745ns 1328593 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f6c PA:1c009f6c +74909765ns 1328594 1c000e82 fff60613 addi x12, x12, -1 x12=000002cb x12:000002cc +74909784ns 1328595 1c000e84 00130313 addi x6, x6, 1 x6=1c009f6d x6:1c009f6c +74909804ns 1328596 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002cb +74909883ns 1328600 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f6d PA:1c009f6d +74909903ns 1328601 1c000e82 fff60613 addi x12, x12, -1 x12=000002ca x12:000002cb +74909923ns 1328602 1c000e84 00130313 addi x6, x6, 1 x6=1c009f6e x6:1c009f6d +74909943ns 1328603 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ca +74910022ns 1328607 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f6e PA:1c009f6e +74910042ns 1328608 1c000e82 fff60613 addi x12, x12, -1 x12=000002c9 x12:000002ca +74910061ns 1328609 1c000e84 00130313 addi x6, x6, 1 x6=1c009f6f x6:1c009f6e +74910081ns 1328610 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002c9 +74910160ns 1328614 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f6f PA:1c009f6f +74910180ns 1328615 1c000e82 fff60613 addi x12, x12, -1 x12=000002c8 x12:000002c9 +74910200ns 1328616 1c000e84 00130313 addi x6, x6, 1 x6=1c009f70 x6:1c009f6f +74910220ns 1328617 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002c8 +74910299ns 1328621 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f70 PA:1c009f70 +74910319ns 1328622 1c000e82 fff60613 addi x12, x12, -1 x12=000002c7 x12:000002c8 +74910339ns 1328623 1c000e84 00130313 addi x6, x6, 1 x6=1c009f71 x6:1c009f70 +74910358ns 1328624 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002c7 +74910438ns 1328628 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f71 PA:1c009f71 +74910457ns 1328629 1c000e82 fff60613 addi x12, x12, -1 x12=000002c6 x12:000002c7 +74910477ns 1328630 1c000e84 00130313 addi x6, x6, 1 x6=1c009f72 x6:1c009f71 +74910497ns 1328631 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002c6 +74910576ns 1328635 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f72 PA:1c009f72 +74910596ns 1328636 1c000e82 fff60613 addi x12, x12, -1 x12=000002c5 x12:000002c6 +74910616ns 1328637 1c000e84 00130313 addi x6, x6, 1 x6=1c009f73 x6:1c009f72 +74910635ns 1328638 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002c5 +74910715ns 1328642 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f73 PA:1c009f73 +74910734ns 1328643 1c000e82 fff60613 addi x12, x12, -1 x12=000002c4 x12:000002c5 +74910754ns 1328644 1c000e84 00130313 addi x6, x6, 1 x6=1c009f74 x6:1c009f73 +74910774ns 1328645 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002c4 +74910853ns 1328649 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f74 PA:1c009f74 +74910873ns 1328650 1c000e82 fff60613 addi x12, x12, -1 x12=000002c3 x12:000002c4 +74910893ns 1328651 1c000e84 00130313 addi x6, x6, 1 x6=1c009f75 x6:1c009f74 +74910913ns 1328652 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002c3 +74910992ns 1328656 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f75 PA:1c009f75 +74911011ns 1328657 1c000e82 fff60613 addi x12, x12, -1 x12=000002c2 x12:000002c3 +74911031ns 1328658 1c000e84 00130313 addi x6, x6, 1 x6=1c009f76 x6:1c009f75 +74911051ns 1328659 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002c2 +74911130ns 1328663 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f76 PA:1c009f76 +74911150ns 1328664 1c000e82 fff60613 addi x12, x12, -1 x12=000002c1 x12:000002c2 +74911170ns 1328665 1c000e84 00130313 addi x6, x6, 1 x6=1c009f77 x6:1c009f76 +74911190ns 1328666 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002c1 +74911269ns 1328670 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f77 PA:1c009f77 +74911289ns 1328671 1c000e82 fff60613 addi x12, x12, -1 x12=000002c0 x12:000002c1 +74911308ns 1328672 1c000e84 00130313 addi x6, x6, 1 x6=1c009f78 x6:1c009f77 +74911328ns 1328673 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002c0 +74911407ns 1328677 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f78 PA:1c009f78 +74911427ns 1328678 1c000e82 fff60613 addi x12, x12, -1 x12=000002bf x12:000002c0 +74911447ns 1328679 1c000e84 00130313 addi x6, x6, 1 x6=1c009f79 x6:1c009f78 +74911467ns 1328680 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002bf +74911546ns 1328684 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f79 PA:1c009f79 +74911566ns 1328685 1c000e82 fff60613 addi x12, x12, -1 x12=000002be x12:000002bf +74911585ns 1328686 1c000e84 00130313 addi x6, x6, 1 x6=1c009f7a x6:1c009f79 +74911605ns 1328687 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002be +74911684ns 1328691 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f7a PA:1c009f7a +74911704ns 1328692 1c000e82 fff60613 addi x12, x12, -1 x12=000002bd x12:000002be +74911724ns 1328693 1c000e84 00130313 addi x6, x6, 1 x6=1c009f7b x6:1c009f7a +74911744ns 1328694 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002bd +74911823ns 1328698 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f7b PA:1c009f7b +74911843ns 1328699 1c000e82 fff60613 addi x12, x12, -1 x12=000002bc x12:000002bd +74911863ns 1328700 1c000e84 00130313 addi x6, x6, 1 x6=1c009f7c x6:1c009f7b +74911882ns 1328701 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002bc +74911962ns 1328705 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f7c PA:1c009f7c +74911981ns 1328706 1c000e82 fff60613 addi x12, x12, -1 x12=000002bb x12:000002bc +74912001ns 1328707 1c000e84 00130313 addi x6, x6, 1 x6=1c009f7d x6:1c009f7c +74912021ns 1328708 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002bb +74912100ns 1328712 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f7d PA:1c009f7d +74912120ns 1328713 1c000e82 fff60613 addi x12, x12, -1 x12=000002ba x12:000002bb +74912140ns 1328714 1c000e84 00130313 addi x6, x6, 1 x6=1c009f7e x6:1c009f7d +74912159ns 1328715 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ba +74912239ns 1328719 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f7e PA:1c009f7e +74912258ns 1328720 1c000e82 fff60613 addi x12, x12, -1 x12=000002b9 x12:000002ba +74912278ns 1328721 1c000e84 00130313 addi x6, x6, 1 x6=1c009f7f x6:1c009f7e +74912298ns 1328722 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002b9 +74912377ns 1328726 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f7f PA:1c009f7f +74912397ns 1328727 1c000e82 fff60613 addi x12, x12, -1 x12=000002b8 x12:000002b9 +74912417ns 1328728 1c000e84 00130313 addi x6, x6, 1 x6=1c009f80 x6:1c009f7f +74912437ns 1328729 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002b8 +74912516ns 1328733 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f80 PA:1c009f80 +74912535ns 1328734 1c000e82 fff60613 addi x12, x12, -1 x12=000002b7 x12:000002b8 +74912555ns 1328735 1c000e84 00130313 addi x6, x6, 1 x6=1c009f81 x6:1c009f80 +74912575ns 1328736 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002b7 +74912654ns 1328740 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f81 PA:1c009f81 +74912674ns 1328741 1c000e82 fff60613 addi x12, x12, -1 x12=000002b6 x12:000002b7 +74912694ns 1328742 1c000e84 00130313 addi x6, x6, 1 x6=1c009f82 x6:1c009f81 +74912714ns 1328743 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002b6 +74912793ns 1328747 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f82 PA:1c009f82 +74912813ns 1328748 1c000e82 fff60613 addi x12, x12, -1 x12=000002b5 x12:000002b6 +74912832ns 1328749 1c000e84 00130313 addi x6, x6, 1 x6=1c009f83 x6:1c009f82 +74912852ns 1328750 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002b5 +74912931ns 1328754 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f83 PA:1c009f83 +74912951ns 1328755 1c000e82 fff60613 addi x12, x12, -1 x12=000002b4 x12:000002b5 +74912971ns 1328756 1c000e84 00130313 addi x6, x6, 1 x6=1c009f84 x6:1c009f83 +74912991ns 1328757 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002b4 +74913070ns 1328761 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f84 PA:1c009f84 +74913090ns 1328762 1c000e82 fff60613 addi x12, x12, -1 x12=000002b3 x12:000002b4 +74913109ns 1328763 1c000e84 00130313 addi x6, x6, 1 x6=1c009f85 x6:1c009f84 +74913129ns 1328764 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002b3 +74913208ns 1328768 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f85 PA:1c009f85 +74913228ns 1328769 1c000e82 fff60613 addi x12, x12, -1 x12=000002b2 x12:000002b3 +74913248ns 1328770 1c000e84 00130313 addi x6, x6, 1 x6=1c009f86 x6:1c009f85 +74913268ns 1328771 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002b2 +74913347ns 1328775 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f86 PA:1c009f86 +74913367ns 1328776 1c000e82 fff60613 addi x12, x12, -1 x12=000002b1 x12:000002b2 +74913387ns 1328777 1c000e84 00130313 addi x6, x6, 1 x6=1c009f87 x6:1c009f86 +74913406ns 1328778 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002b1 +74913485ns 1328782 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f87 PA:1c009f87 +74913505ns 1328783 1c000e82 fff60613 addi x12, x12, -1 x12=000002b0 x12:000002b1 +74913525ns 1328784 1c000e84 00130313 addi x6, x6, 1 x6=1c009f88 x6:1c009f87 +74913545ns 1328785 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002b0 +74913624ns 1328789 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f88 PA:1c009f88 +74913644ns 1328790 1c000e82 fff60613 addi x12, x12, -1 x12=000002af x12:000002b0 +74913664ns 1328791 1c000e84 00130313 addi x6, x6, 1 x6=1c009f89 x6:1c009f88 +74913683ns 1328792 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002af +74913763ns 1328796 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f89 PA:1c009f89 +74913782ns 1328797 1c000e82 fff60613 addi x12, x12, -1 x12=000002ae x12:000002af +74913802ns 1328798 1c000e84 00130313 addi x6, x6, 1 x6=1c009f8a x6:1c009f89 +74913822ns 1328799 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ae +74913901ns 1328803 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f8a PA:1c009f8a +74913921ns 1328804 1c000e82 fff60613 addi x12, x12, -1 x12=000002ad x12:000002ae +74913941ns 1328805 1c000e84 00130313 addi x6, x6, 1 x6=1c009f8b x6:1c009f8a +74913961ns 1328806 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ad +74914040ns 1328810 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f8b PA:1c009f8b +74914059ns 1328811 1c000e82 fff60613 addi x12, x12, -1 x12=000002ac x12:000002ad +74914079ns 1328812 1c000e84 00130313 addi x6, x6, 1 x6=1c009f8c x6:1c009f8b +74914099ns 1328813 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ac +74914178ns 1328817 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f8c PA:1c009f8c +74914198ns 1328818 1c000e82 fff60613 addi x12, x12, -1 x12=000002ab x12:000002ac +74914218ns 1328819 1c000e84 00130313 addi x6, x6, 1 x6=1c009f8d x6:1c009f8c +74914238ns 1328820 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ab +74914317ns 1328824 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f8d PA:1c009f8d +74914337ns 1328825 1c000e82 fff60613 addi x12, x12, -1 x12=000002aa x12:000002ab +74914356ns 1328826 1c000e84 00130313 addi x6, x6, 1 x6=1c009f8e x6:1c009f8d +74914376ns 1328827 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002aa +74914455ns 1328831 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f8e PA:1c009f8e +74914475ns 1328832 1c000e82 fff60613 addi x12, x12, -1 x12=000002a9 x12:000002aa +74914495ns 1328833 1c000e84 00130313 addi x6, x6, 1 x6=1c009f8f x6:1c009f8e +74914515ns 1328834 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002a9 +74914594ns 1328838 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f8f PA:1c009f8f +74914614ns 1328839 1c000e82 fff60613 addi x12, x12, -1 x12=000002a8 x12:000002a9 +74914633ns 1328840 1c000e84 00130313 addi x6, x6, 1 x6=1c009f90 x6:1c009f8f +74914653ns 1328841 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002a8 +74914732ns 1328845 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f90 PA:1c009f90 +74914752ns 1328846 1c000e82 fff60613 addi x12, x12, -1 x12=000002a7 x12:000002a8 +74914772ns 1328847 1c000e84 00130313 addi x6, x6, 1 x6=1c009f91 x6:1c009f90 +74914792ns 1328848 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002a7 +74914871ns 1328852 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f91 PA:1c009f91 +74914891ns 1328853 1c000e82 fff60613 addi x12, x12, -1 x12=000002a6 x12:000002a7 +74914911ns 1328854 1c000e84 00130313 addi x6, x6, 1 x6=1c009f92 x6:1c009f91 +74914930ns 1328855 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002a6 +74915009ns 1328859 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f92 PA:1c009f92 +74915029ns 1328860 1c000e82 fff60613 addi x12, x12, -1 x12=000002a5 x12:000002a6 +74915049ns 1328861 1c000e84 00130313 addi x6, x6, 1 x6=1c009f93 x6:1c009f92 +74915069ns 1328862 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002a5 +74915148ns 1328866 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f93 PA:1c009f93 +74915168ns 1328867 1c000e82 fff60613 addi x12, x12, -1 x12=000002a4 x12:000002a5 +74915188ns 1328868 1c000e84 00130313 addi x6, x6, 1 x6=1c009f94 x6:1c009f93 +74915207ns 1328869 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002a4 +74915287ns 1328873 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f94 PA:1c009f94 +74915306ns 1328874 1c000e82 fff60613 addi x12, x12, -1 x12=000002a3 x12:000002a4 +74915326ns 1328875 1c000e84 00130313 addi x6, x6, 1 x6=1c009f95 x6:1c009f94 +74915346ns 1328876 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002a3 +74915425ns 1328880 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f95 PA:1c009f95 +74915445ns 1328881 1c000e82 fff60613 addi x12, x12, -1 x12=000002a2 x12:000002a3 +74915465ns 1328882 1c000e84 00130313 addi x6, x6, 1 x6=1c009f96 x6:1c009f95 +74915484ns 1328883 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002a2 +74915564ns 1328887 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f96 PA:1c009f96 +74915583ns 1328888 1c000e82 fff60613 addi x12, x12, -1 x12=000002a1 x12:000002a2 +74915603ns 1328889 1c000e84 00130313 addi x6, x6, 1 x6=1c009f97 x6:1c009f96 +74915623ns 1328890 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002a1 +74915702ns 1328894 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f97 PA:1c009f97 +74915722ns 1328895 1c000e82 fff60613 addi x12, x12, -1 x12=000002a0 x12:000002a1 +74915742ns 1328896 1c000e84 00130313 addi x6, x6, 1 x6=1c009f98 x6:1c009f97 +74915762ns 1328897 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002a0 +74915841ns 1328901 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f98 PA:1c009f98 +74915861ns 1328902 1c000e82 fff60613 addi x12, x12, -1 x12=0000029f x12:000002a0 +74915880ns 1328903 1c000e84 00130313 addi x6, x6, 1 x6=1c009f99 x6:1c009f98 +74915900ns 1328904 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000029f +74915979ns 1328908 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f99 PA:1c009f99 +74915999ns 1328909 1c000e82 fff60613 addi x12, x12, -1 x12=0000029e x12:0000029f +74916019ns 1328910 1c000e84 00130313 addi x6, x6, 1 x6=1c009f9a x6:1c009f99 +74916039ns 1328911 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000029e +74916118ns 1328915 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f9a PA:1c009f9a +74916138ns 1328916 1c000e82 fff60613 addi x12, x12, -1 x12=0000029d x12:0000029e +74916157ns 1328917 1c000e84 00130313 addi x6, x6, 1 x6=1c009f9b x6:1c009f9a +74916177ns 1328918 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000029d +74916256ns 1328922 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f9b PA:1c009f9b +74916276ns 1328923 1c000e82 fff60613 addi x12, x12, -1 x12=0000029c x12:0000029d +74916296ns 1328924 1c000e84 00130313 addi x6, x6, 1 x6=1c009f9c x6:1c009f9b +74916316ns 1328925 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000029c +74916395ns 1328929 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f9c PA:1c009f9c +74916415ns 1328930 1c000e82 fff60613 addi x12, x12, -1 x12=0000029b x12:0000029c +74916435ns 1328931 1c000e84 00130313 addi x6, x6, 1 x6=1c009f9d x6:1c009f9c +74916454ns 1328932 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000029b +74916533ns 1328936 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f9d PA:1c009f9d +74916553ns 1328937 1c000e82 fff60613 addi x12, x12, -1 x12=0000029a x12:0000029b +74916573ns 1328938 1c000e84 00130313 addi x6, x6, 1 x6=1c009f9e x6:1c009f9d +74916593ns 1328939 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000029a +74916672ns 1328943 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f9e PA:1c009f9e +74916692ns 1328944 1c000e82 fff60613 addi x12, x12, -1 x12=00000299 x12:0000029a +74916712ns 1328945 1c000e84 00130313 addi x6, x6, 1 x6=1c009f9f x6:1c009f9e +74916731ns 1328946 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000299 +74916811ns 1328950 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009f9f PA:1c009f9f +74916830ns 1328951 1c000e82 fff60613 addi x12, x12, -1 x12=00000298 x12:00000299 +74916850ns 1328952 1c000e84 00130313 addi x6, x6, 1 x6=1c009fa0 x6:1c009f9f +74916870ns 1328953 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000298 +74916949ns 1328957 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fa0 PA:1c009fa0 +74916969ns 1328958 1c000e82 fff60613 addi x12, x12, -1 x12=00000297 x12:00000298 +74916989ns 1328959 1c000e84 00130313 addi x6, x6, 1 x6=1c009fa1 x6:1c009fa0 +74917008ns 1328960 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000297 +74917088ns 1328964 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fa1 PA:1c009fa1 +74917107ns 1328965 1c000e82 fff60613 addi x12, x12, -1 x12=00000296 x12:00000297 +74917127ns 1328966 1c000e84 00130313 addi x6, x6, 1 x6=1c009fa2 x6:1c009fa1 +74917147ns 1328967 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000296 +74917226ns 1328971 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fa2 PA:1c009fa2 +74917246ns 1328972 1c000e82 fff60613 addi x12, x12, -1 x12=00000295 x12:00000296 +74917266ns 1328973 1c000e84 00130313 addi x6, x6, 1 x6=1c009fa3 x6:1c009fa2 +74917286ns 1328974 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000295 +74917365ns 1328978 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fa3 PA:1c009fa3 +74917385ns 1328979 1c000e82 fff60613 addi x12, x12, -1 x12=00000294 x12:00000295 +74917404ns 1328980 1c000e84 00130313 addi x6, x6, 1 x6=1c009fa4 x6:1c009fa3 +74917424ns 1328981 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000294 +74917503ns 1328985 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fa4 PA:1c009fa4 +74917523ns 1328986 1c000e82 fff60613 addi x12, x12, -1 x12=00000293 x12:00000294 +74917543ns 1328987 1c000e84 00130313 addi x6, x6, 1 x6=1c009fa5 x6:1c009fa4 +74917563ns 1328988 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000293 +74917642ns 1328992 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fa5 PA:1c009fa5 +74917662ns 1328993 1c000e82 fff60613 addi x12, x12, -1 x12=00000292 x12:00000293 +74917681ns 1328994 1c000e84 00130313 addi x6, x6, 1 x6=1c009fa6 x6:1c009fa5 +74917701ns 1328995 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000292 +74917780ns 1328999 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fa6 PA:1c009fa6 +74917800ns 1329000 1c000e82 fff60613 addi x12, x12, -1 x12=00000291 x12:00000292 +74917820ns 1329001 1c000e84 00130313 addi x6, x6, 1 x6=1c009fa7 x6:1c009fa6 +74917840ns 1329002 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000291 +74917919ns 1329006 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fa7 PA:1c009fa7 +74917939ns 1329007 1c000e82 fff60613 addi x12, x12, -1 x12=00000290 x12:00000291 +74917958ns 1329008 1c000e84 00130313 addi x6, x6, 1 x6=1c009fa8 x6:1c009fa7 +74917978ns 1329009 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000290 +74918057ns 1329013 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fa8 PA:1c009fa8 +74918077ns 1329014 1c000e82 fff60613 addi x12, x12, -1 x12=0000028f x12:00000290 +74918097ns 1329015 1c000e84 00130313 addi x6, x6, 1 x6=1c009fa9 x6:1c009fa8 +74918117ns 1329016 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000028f +74918196ns 1329020 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fa9 PA:1c009fa9 +74918216ns 1329021 1c000e82 fff60613 addi x12, x12, -1 x12=0000028e x12:0000028f +74918236ns 1329022 1c000e84 00130313 addi x6, x6, 1 x6=1c009faa x6:1c009fa9 +74918255ns 1329023 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000028e +74918335ns 1329027 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009faa PA:1c009faa +74918354ns 1329028 1c000e82 fff60613 addi x12, x12, -1 x12=0000028d x12:0000028e +74918374ns 1329029 1c000e84 00130313 addi x6, x6, 1 x6=1c009fab x6:1c009faa +74918394ns 1329030 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000028d +74918473ns 1329034 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fab PA:1c009fab +74918493ns 1329035 1c000e82 fff60613 addi x12, x12, -1 x12=0000028c x12:0000028d +74918513ns 1329036 1c000e84 00130313 addi x6, x6, 1 x6=1c009fac x6:1c009fab +74918532ns 1329037 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000028c +74918612ns 1329041 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fac PA:1c009fac +74918631ns 1329042 1c000e82 fff60613 addi x12, x12, -1 x12=0000028b x12:0000028c +74918651ns 1329043 1c000e84 00130313 addi x6, x6, 1 x6=1c009fad x6:1c009fac +74918671ns 1329044 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000028b +74918750ns 1329048 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fad PA:1c009fad +74918770ns 1329049 1c000e82 fff60613 addi x12, x12, -1 x12=0000028a x12:0000028b +74918790ns 1329050 1c000e84 00130313 addi x6, x6, 1 x6=1c009fae x6:1c009fad +74918810ns 1329051 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000028a +74918889ns 1329055 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fae PA:1c009fae +74918909ns 1329056 1c000e82 fff60613 addi x12, x12, -1 x12=00000289 x12:0000028a +74918928ns 1329057 1c000e84 00130313 addi x6, x6, 1 x6=1c009faf x6:1c009fae +74918948ns 1329058 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000289 +74919027ns 1329062 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009faf PA:1c009faf +74919047ns 1329063 1c000e82 fff60613 addi x12, x12, -1 x12=00000288 x12:00000289 +74919067ns 1329064 1c000e84 00130313 addi x6, x6, 1 x6=1c009fb0 x6:1c009faf +74919087ns 1329065 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000288 +74919166ns 1329069 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fb0 PA:1c009fb0 +74919186ns 1329070 1c000e82 fff60613 addi x12, x12, -1 x12=00000287 x12:00000288 +74919205ns 1329071 1c000e84 00130313 addi x6, x6, 1 x6=1c009fb1 x6:1c009fb0 +74919225ns 1329072 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000287 +74919304ns 1329076 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fb1 PA:1c009fb1 +74919324ns 1329077 1c000e82 fff60613 addi x12, x12, -1 x12=00000286 x12:00000287 +74919344ns 1329078 1c000e84 00130313 addi x6, x6, 1 x6=1c009fb2 x6:1c009fb1 +74919364ns 1329079 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000286 +74919443ns 1329083 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fb2 PA:1c009fb2 +74919463ns 1329084 1c000e82 fff60613 addi x12, x12, -1 x12=00000285 x12:00000286 +74919482ns 1329085 1c000e84 00130313 addi x6, x6, 1 x6=1c009fb3 x6:1c009fb2 +74919502ns 1329086 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000285 +74919581ns 1329090 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fb3 PA:1c009fb3 +74919601ns 1329091 1c000e82 fff60613 addi x12, x12, -1 x12=00000284 x12:00000285 +74919621ns 1329092 1c000e84 00130313 addi x6, x6, 1 x6=1c009fb4 x6:1c009fb3 +74919641ns 1329093 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000284 +74919720ns 1329097 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fb4 PA:1c009fb4 +74919740ns 1329098 1c000e82 fff60613 addi x12, x12, -1 x12=00000283 x12:00000284 +74919760ns 1329099 1c000e84 00130313 addi x6, x6, 1 x6=1c009fb5 x6:1c009fb4 +74919779ns 1329100 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000283 +74919859ns 1329104 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fb5 PA:1c009fb5 +74919878ns 1329105 1c000e82 fff60613 addi x12, x12, -1 x12=00000282 x12:00000283 +74919898ns 1329106 1c000e84 00130313 addi x6, x6, 1 x6=1c009fb6 x6:1c009fb5 +74919918ns 1329107 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000282 +74919997ns 1329111 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fb6 PA:1c009fb6 +74920017ns 1329112 1c000e82 fff60613 addi x12, x12, -1 x12=00000281 x12:00000282 +74920037ns 1329113 1c000e84 00130313 addi x6, x6, 1 x6=1c009fb7 x6:1c009fb6 +74920056ns 1329114 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000281 +74920136ns 1329118 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fb7 PA:1c009fb7 +74920155ns 1329119 1c000e82 fff60613 addi x12, x12, -1 x12=00000280 x12:00000281 +74920175ns 1329120 1c000e84 00130313 addi x6, x6, 1 x6=1c009fb8 x6:1c009fb7 +74920195ns 1329121 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000280 +74920274ns 1329125 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fb8 PA:1c009fb8 +74920294ns 1329126 1c000e82 fff60613 addi x12, x12, -1 x12=0000027f x12:00000280 +74920314ns 1329127 1c000e84 00130313 addi x6, x6, 1 x6=1c009fb9 x6:1c009fb8 +74920334ns 1329128 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000027f +74920413ns 1329132 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fb9 PA:1c009fb9 +74920432ns 1329133 1c000e82 fff60613 addi x12, x12, -1 x12=0000027e x12:0000027f +74920452ns 1329134 1c000e84 00130313 addi x6, x6, 1 x6=1c009fba x6:1c009fb9 +74920472ns 1329135 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000027e +74920551ns 1329139 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fba PA:1c009fba +74920571ns 1329140 1c000e82 fff60613 addi x12, x12, -1 x12=0000027d x12:0000027e +74920591ns 1329141 1c000e84 00130313 addi x6, x6, 1 x6=1c009fbb x6:1c009fba +74920611ns 1329142 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000027d +74920690ns 1329146 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fbb PA:1c009fbb +74920710ns 1329147 1c000e82 fff60613 addi x12, x12, -1 x12=0000027c x12:0000027d +74920729ns 1329148 1c000e84 00130313 addi x6, x6, 1 x6=1c009fbc x6:1c009fbb +74920749ns 1329149 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000027c +74920828ns 1329153 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fbc PA:1c009fbc +74920848ns 1329154 1c000e82 fff60613 addi x12, x12, -1 x12=0000027b x12:0000027c +74920868ns 1329155 1c000e84 00130313 addi x6, x6, 1 x6=1c009fbd x6:1c009fbc +74920888ns 1329156 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000027b +74920967ns 1329160 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fbd PA:1c009fbd +74920987ns 1329161 1c000e82 fff60613 addi x12, x12, -1 x12=0000027a x12:0000027b +74921006ns 1329162 1c000e84 00130313 addi x6, x6, 1 x6=1c009fbe x6:1c009fbd +74921026ns 1329163 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000027a +74921105ns 1329167 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fbe PA:1c009fbe +74921125ns 1329168 1c000e82 fff60613 addi x12, x12, -1 x12=00000279 x12:0000027a +74921145ns 1329169 1c000e84 00130313 addi x6, x6, 1 x6=1c009fbf x6:1c009fbe +74921165ns 1329170 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000279 +74921244ns 1329174 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fbf PA:1c009fbf +74921264ns 1329175 1c000e82 fff60613 addi x12, x12, -1 x12=00000278 x12:00000279 +74921284ns 1329176 1c000e84 00130313 addi x6, x6, 1 x6=1c009fc0 x6:1c009fbf +74921303ns 1329177 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000278 +74921383ns 1329181 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fc0 PA:1c009fc0 +74921402ns 1329182 1c000e82 fff60613 addi x12, x12, -1 x12=00000277 x12:00000278 +74921422ns 1329183 1c000e84 00130313 addi x6, x6, 1 x6=1c009fc1 x6:1c009fc0 +74921442ns 1329184 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000277 +74921521ns 1329188 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fc1 PA:1c009fc1 +74921541ns 1329189 1c000e82 fff60613 addi x12, x12, -1 x12=00000276 x12:00000277 +74921561ns 1329190 1c000e84 00130313 addi x6, x6, 1 x6=1c009fc2 x6:1c009fc1 +74921580ns 1329191 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000276 +74921660ns 1329195 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fc2 PA:1c009fc2 +74921679ns 1329196 1c000e82 fff60613 addi x12, x12, -1 x12=00000275 x12:00000276 +74921699ns 1329197 1c000e84 00130313 addi x6, x6, 1 x6=1c009fc3 x6:1c009fc2 +74921719ns 1329198 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000275 +74921798ns 1329202 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fc3 PA:1c009fc3 +74921818ns 1329203 1c000e82 fff60613 addi x12, x12, -1 x12=00000274 x12:00000275 +74921838ns 1329204 1c000e84 00130313 addi x6, x6, 1 x6=1c009fc4 x6:1c009fc3 +74921858ns 1329205 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000274 +74921937ns 1329209 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fc4 PA:1c009fc4 +74921956ns 1329210 1c000e82 fff60613 addi x12, x12, -1 x12=00000273 x12:00000274 +74921976ns 1329211 1c000e84 00130313 addi x6, x6, 1 x6=1c009fc5 x6:1c009fc4 +74921996ns 1329212 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000273 +74922075ns 1329216 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fc5 PA:1c009fc5 +74922095ns 1329217 1c000e82 fff60613 addi x12, x12, -1 x12=00000272 x12:00000273 +74922115ns 1329218 1c000e84 00130313 addi x6, x6, 1 x6=1c009fc6 x6:1c009fc5 +74922135ns 1329219 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000272 +74922214ns 1329223 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fc6 PA:1c009fc6 +74922234ns 1329224 1c000e82 fff60613 addi x12, x12, -1 x12=00000271 x12:00000272 +74922253ns 1329225 1c000e84 00130313 addi x6, x6, 1 x6=1c009fc7 x6:1c009fc6 +74922273ns 1329226 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000271 +74922352ns 1329230 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fc7 PA:1c009fc7 +74922372ns 1329231 1c000e82 fff60613 addi x12, x12, -1 x12=00000270 x12:00000271 +74922392ns 1329232 1c000e84 00130313 addi x6, x6, 1 x6=1c009fc8 x6:1c009fc7 +74922412ns 1329233 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000270 +74922491ns 1329237 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fc8 PA:1c009fc8 +74922511ns 1329238 1c000e82 fff60613 addi x12, x12, -1 x12=0000026f x12:00000270 +74922530ns 1329239 1c000e84 00130313 addi x6, x6, 1 x6=1c009fc9 x6:1c009fc8 +74922550ns 1329240 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000026f +74922629ns 1329244 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fc9 PA:1c009fc9 +74922649ns 1329245 1c000e82 fff60613 addi x12, x12, -1 x12=0000026e x12:0000026f +74922669ns 1329246 1c000e84 00130313 addi x6, x6, 1 x6=1c009fca x6:1c009fc9 +74922689ns 1329247 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000026e +74922768ns 1329251 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fca PA:1c009fca +74922788ns 1329252 1c000e82 fff60613 addi x12, x12, -1 x12=0000026d x12:0000026e +74922808ns 1329253 1c000e84 00130313 addi x6, x6, 1 x6=1c009fcb x6:1c009fca +74922827ns 1329254 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000026d +74922906ns 1329258 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fcb PA:1c009fcb +74922926ns 1329259 1c000e82 fff60613 addi x12, x12, -1 x12=0000026c x12:0000026d +74922946ns 1329260 1c000e84 00130313 addi x6, x6, 1 x6=1c009fcc x6:1c009fcb +74922966ns 1329261 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000026c +74923045ns 1329265 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fcc PA:1c009fcc +74923065ns 1329266 1c000e82 fff60613 addi x12, x12, -1 x12=0000026b x12:0000026c +74923085ns 1329267 1c000e84 00130313 addi x6, x6, 1 x6=1c009fcd x6:1c009fcc +74923104ns 1329268 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000026b +74923184ns 1329272 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fcd PA:1c009fcd +74923203ns 1329273 1c000e82 fff60613 addi x12, x12, -1 x12=0000026a x12:0000026b +74923223ns 1329274 1c000e84 00130313 addi x6, x6, 1 x6=1c009fce x6:1c009fcd +74923243ns 1329275 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000026a +74923322ns 1329279 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fce PA:1c009fce +74923342ns 1329280 1c000e82 fff60613 addi x12, x12, -1 x12=00000269 x12:0000026a +74923362ns 1329281 1c000e84 00130313 addi x6, x6, 1 x6=1c009fcf x6:1c009fce +74923381ns 1329282 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000269 +74923461ns 1329286 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fcf PA:1c009fcf +74923480ns 1329287 1c000e82 fff60613 addi x12, x12, -1 x12=00000268 x12:00000269 +74923500ns 1329288 1c000e84 00130313 addi x6, x6, 1 x6=1c009fd0 x6:1c009fcf +74923520ns 1329289 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000268 +74923599ns 1329293 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fd0 PA:1c009fd0 +74923619ns 1329294 1c000e82 fff60613 addi x12, x12, -1 x12=00000267 x12:00000268 +74923639ns 1329295 1c000e84 00130313 addi x6, x6, 1 x6=1c009fd1 x6:1c009fd0 +74923659ns 1329296 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000267 +74923738ns 1329300 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fd1 PA:1c009fd1 +74923758ns 1329301 1c000e82 fff60613 addi x12, x12, -1 x12=00000266 x12:00000267 +74923777ns 1329302 1c000e84 00130313 addi x6, x6, 1 x6=1c009fd2 x6:1c009fd1 +74923797ns 1329303 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000266 +74923876ns 1329307 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fd2 PA:1c009fd2 +74923896ns 1329308 1c000e82 fff60613 addi x12, x12, -1 x12=00000265 x12:00000266 +74923916ns 1329309 1c000e84 00130313 addi x6, x6, 1 x6=1c009fd3 x6:1c009fd2 +74923936ns 1329310 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000265 +74924015ns 1329314 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fd3 PA:1c009fd3 +74924035ns 1329315 1c000e82 fff60613 addi x12, x12, -1 x12=00000264 x12:00000265 +74924054ns 1329316 1c000e84 00130313 addi x6, x6, 1 x6=1c009fd4 x6:1c009fd3 +74924074ns 1329317 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000264 +74924153ns 1329321 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fd4 PA:1c009fd4 +74924173ns 1329322 1c000e82 fff60613 addi x12, x12, -1 x12=00000263 x12:00000264 +74924193ns 1329323 1c000e84 00130313 addi x6, x6, 1 x6=1c009fd5 x6:1c009fd4 +74924213ns 1329324 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000263 +74924292ns 1329328 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fd5 PA:1c009fd5 +74924312ns 1329329 1c000e82 fff60613 addi x12, x12, -1 x12=00000262 x12:00000263 +74924332ns 1329330 1c000e84 00130313 addi x6, x6, 1 x6=1c009fd6 x6:1c009fd5 +74924351ns 1329331 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000262 +74924430ns 1329335 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fd6 PA:1c009fd6 +74924450ns 1329336 1c000e82 fff60613 addi x12, x12, -1 x12=00000261 x12:00000262 +74924470ns 1329337 1c000e84 00130313 addi x6, x6, 1 x6=1c009fd7 x6:1c009fd6 +74924490ns 1329338 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000261 +74924569ns 1329342 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fd7 PA:1c009fd7 +74924589ns 1329343 1c000e82 fff60613 addi x12, x12, -1 x12=00000260 x12:00000261 +74924609ns 1329344 1c000e84 00130313 addi x6, x6, 1 x6=1c009fd8 x6:1c009fd7 +74924628ns 1329345 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000260 +74924708ns 1329349 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fd8 PA:1c009fd8 +74924727ns 1329350 1c000e82 fff60613 addi x12, x12, -1 x12=0000025f x12:00000260 +74924747ns 1329351 1c000e84 00130313 addi x6, x6, 1 x6=1c009fd9 x6:1c009fd8 +74924767ns 1329352 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000025f +74924846ns 1329356 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fd9 PA:1c009fd9 +74924866ns 1329357 1c000e82 fff60613 addi x12, x12, -1 x12=0000025e x12:0000025f +74924886ns 1329358 1c000e84 00130313 addi x6, x6, 1 x6=1c009fda x6:1c009fd9 +74924905ns 1329359 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000025e +74924985ns 1329363 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fda PA:1c009fda +74925004ns 1329364 1c000e82 fff60613 addi x12, x12, -1 x12=0000025d x12:0000025e +74925024ns 1329365 1c000e84 00130313 addi x6, x6, 1 x6=1c009fdb x6:1c009fda +74925044ns 1329366 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000025d +74925123ns 1329370 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fdb PA:1c009fdb +74925143ns 1329371 1c000e82 fff60613 addi x12, x12, -1 x12=0000025c x12:0000025d +74925163ns 1329372 1c000e84 00130313 addi x6, x6, 1 x6=1c009fdc x6:1c009fdb +74925183ns 1329373 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000025c +74925262ns 1329377 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fdc PA:1c009fdc +74925282ns 1329378 1c000e82 fff60613 addi x12, x12, -1 x12=0000025b x12:0000025c +74925301ns 1329379 1c000e84 00130313 addi x6, x6, 1 x6=1c009fdd x6:1c009fdc +74925321ns 1329380 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000025b +74925400ns 1329384 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fdd PA:1c009fdd +74925420ns 1329385 1c000e82 fff60613 addi x12, x12, -1 x12=0000025a x12:0000025b +74925440ns 1329386 1c000e84 00130313 addi x6, x6, 1 x6=1c009fde x6:1c009fdd +74925460ns 1329387 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000025a +74925539ns 1329391 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fde PA:1c009fde +74925559ns 1329392 1c000e82 fff60613 addi x12, x12, -1 x12=00000259 x12:0000025a +74925578ns 1329393 1c000e84 00130313 addi x6, x6, 1 x6=1c009fdf x6:1c009fde +74925598ns 1329394 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000259 +74925677ns 1329398 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fdf PA:1c009fdf +74925697ns 1329399 1c000e82 fff60613 addi x12, x12, -1 x12=00000258 x12:00000259 +74925717ns 1329400 1c000e84 00130313 addi x6, x6, 1 x6=1c009fe0 x6:1c009fdf +74925737ns 1329401 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000258 +74925816ns 1329405 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fe0 PA:1c009fe0 +74925836ns 1329406 1c000e82 fff60613 addi x12, x12, -1 x12=00000257 x12:00000258 +74925855ns 1329407 1c000e84 00130313 addi x6, x6, 1 x6=1c009fe1 x6:1c009fe0 +74925875ns 1329408 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000257 +74925954ns 1329412 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fe1 PA:1c009fe1 +74925974ns 1329413 1c000e82 fff60613 addi x12, x12, -1 x12=00000256 x12:00000257 +74925994ns 1329414 1c000e84 00130313 addi x6, x6, 1 x6=1c009fe2 x6:1c009fe1 +74926014ns 1329415 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000256 +74926093ns 1329419 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fe2 PA:1c009fe2 +74926113ns 1329420 1c000e82 fff60613 addi x12, x12, -1 x12=00000255 x12:00000256 +74926133ns 1329421 1c000e84 00130313 addi x6, x6, 1 x6=1c009fe3 x6:1c009fe2 +74926152ns 1329422 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000255 +74926232ns 1329426 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fe3 PA:1c009fe3 +74926251ns 1329427 1c000e82 fff60613 addi x12, x12, -1 x12=00000254 x12:00000255 +74926271ns 1329428 1c000e84 00130313 addi x6, x6, 1 x6=1c009fe4 x6:1c009fe3 +74926291ns 1329429 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000254 +74926370ns 1329433 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fe4 PA:1c009fe4 +74926390ns 1329434 1c000e82 fff60613 addi x12, x12, -1 x12=00000253 x12:00000254 +74926410ns 1329435 1c000e84 00130313 addi x6, x6, 1 x6=1c009fe5 x6:1c009fe4 +74926429ns 1329436 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000253 +74926509ns 1329440 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fe5 PA:1c009fe5 +74926528ns 1329441 1c000e82 fff60613 addi x12, x12, -1 x12=00000252 x12:00000253 +74926548ns 1329442 1c000e84 00130313 addi x6, x6, 1 x6=1c009fe6 x6:1c009fe5 +74926568ns 1329443 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000252 +74926647ns 1329447 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fe6 PA:1c009fe6 +74926667ns 1329448 1c000e82 fff60613 addi x12, x12, -1 x12=00000251 x12:00000252 +74926687ns 1329449 1c000e84 00130313 addi x6, x6, 1 x6=1c009fe7 x6:1c009fe6 +74926707ns 1329450 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000251 +74926786ns 1329454 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fe7 PA:1c009fe7 +74926806ns 1329455 1c000e82 fff60613 addi x12, x12, -1 x12=00000250 x12:00000251 +74926825ns 1329456 1c000e84 00130313 addi x6, x6, 1 x6=1c009fe8 x6:1c009fe7 +74926845ns 1329457 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000250 +74926924ns 1329461 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fe8 PA:1c009fe8 +74926944ns 1329462 1c000e82 fff60613 addi x12, x12, -1 x12=0000024f x12:00000250 +74926964ns 1329463 1c000e84 00130313 addi x6, x6, 1 x6=1c009fe9 x6:1c009fe8 +74926984ns 1329464 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000024f +74927063ns 1329468 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fe9 PA:1c009fe9 +74927083ns 1329469 1c000e82 fff60613 addi x12, x12, -1 x12=0000024e x12:0000024f +74927102ns 1329470 1c000e84 00130313 addi x6, x6, 1 x6=1c009fea x6:1c009fe9 +74927122ns 1329471 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000024e +74927201ns 1329475 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fea PA:1c009fea +74927221ns 1329476 1c000e82 fff60613 addi x12, x12, -1 x12=0000024d x12:0000024e +74927241ns 1329477 1c000e84 00130313 addi x6, x6, 1 x6=1c009feb x6:1c009fea +74927261ns 1329478 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000024d +74927340ns 1329482 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009feb PA:1c009feb +74927360ns 1329483 1c000e82 fff60613 addi x12, x12, -1 x12=0000024c x12:0000024d +74927379ns 1329484 1c000e84 00130313 addi x6, x6, 1 x6=1c009fec x6:1c009feb +74927399ns 1329485 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000024c +74927478ns 1329489 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fec PA:1c009fec +74927498ns 1329490 1c000e82 fff60613 addi x12, x12, -1 x12=0000024b x12:0000024c +74927518ns 1329491 1c000e84 00130313 addi x6, x6, 1 x6=1c009fed x6:1c009fec +74927538ns 1329492 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000024b +74927617ns 1329496 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fed PA:1c009fed +74927637ns 1329497 1c000e82 fff60613 addi x12, x12, -1 x12=0000024a x12:0000024b +74927657ns 1329498 1c000e84 00130313 addi x6, x6, 1 x6=1c009fee x6:1c009fed +74927676ns 1329499 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000024a +74927756ns 1329503 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fee PA:1c009fee +74927775ns 1329504 1c000e82 fff60613 addi x12, x12, -1 x12=00000249 x12:0000024a +74927795ns 1329505 1c000e84 00130313 addi x6, x6, 1 x6=1c009fef x6:1c009fee +74927815ns 1329506 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000249 +74927894ns 1329510 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fef PA:1c009fef +74927914ns 1329511 1c000e82 fff60613 addi x12, x12, -1 x12=00000248 x12:00000249 +74927934ns 1329512 1c000e84 00130313 addi x6, x6, 1 x6=1c009ff0 x6:1c009fef +74927953ns 1329513 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000248 +74928033ns 1329517 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ff0 PA:1c009ff0 +74928052ns 1329518 1c000e82 fff60613 addi x12, x12, -1 x12=00000247 x12:00000248 +74928072ns 1329519 1c000e84 00130313 addi x6, x6, 1 x6=1c009ff1 x6:1c009ff0 +74928092ns 1329520 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000247 +74928171ns 1329524 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ff1 PA:1c009ff1 +74928191ns 1329525 1c000e82 fff60613 addi x12, x12, -1 x12=00000246 x12:00000247 +74928211ns 1329526 1c000e84 00130313 addi x6, x6, 1 x6=1c009ff2 x6:1c009ff1 +74928231ns 1329527 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000246 +74928310ns 1329531 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ff2 PA:1c009ff2 +74928329ns 1329532 1c000e82 fff60613 addi x12, x12, -1 x12=00000245 x12:00000246 +74928349ns 1329533 1c000e84 00130313 addi x6, x6, 1 x6=1c009ff3 x6:1c009ff2 +74928369ns 1329534 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000245 +74928448ns 1329538 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ff3 PA:1c009ff3 +74928468ns 1329539 1c000e82 fff60613 addi x12, x12, -1 x12=00000244 x12:00000245 +74928488ns 1329540 1c000e84 00130313 addi x6, x6, 1 x6=1c009ff4 x6:1c009ff3 +74928508ns 1329541 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000244 +74928587ns 1329545 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ff4 PA:1c009ff4 +74928607ns 1329546 1c000e82 fff60613 addi x12, x12, -1 x12=00000243 x12:00000244 +74928626ns 1329547 1c000e84 00130313 addi x6, x6, 1 x6=1c009ff5 x6:1c009ff4 +74928646ns 1329548 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000243 +74928725ns 1329552 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ff5 PA:1c009ff5 +74928745ns 1329553 1c000e82 fff60613 addi x12, x12, -1 x12=00000242 x12:00000243 +74928765ns 1329554 1c000e84 00130313 addi x6, x6, 1 x6=1c009ff6 x6:1c009ff5 +74928785ns 1329555 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000242 +74928864ns 1329559 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ff6 PA:1c009ff6 +74928884ns 1329560 1c000e82 fff60613 addi x12, x12, -1 x12=00000241 x12:00000242 +74928903ns 1329561 1c000e84 00130313 addi x6, x6, 1 x6=1c009ff7 x6:1c009ff6 +74928923ns 1329562 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000241 +74929002ns 1329566 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ff7 PA:1c009ff7 +74929022ns 1329567 1c000e82 fff60613 addi x12, x12, -1 x12=00000240 x12:00000241 +74929042ns 1329568 1c000e84 00130313 addi x6, x6, 1 x6=1c009ff8 x6:1c009ff7 +74929062ns 1329569 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000240 +74929141ns 1329573 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ff8 PA:1c009ff8 +74929161ns 1329574 1c000e82 fff60613 addi x12, x12, -1 x12=0000023f x12:00000240 +74929181ns 1329575 1c000e84 00130313 addi x6, x6, 1 x6=1c009ff9 x6:1c009ff8 +74929200ns 1329576 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000023f +74929280ns 1329580 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ff9 PA:1c009ff9 +74929299ns 1329581 1c000e82 fff60613 addi x12, x12, -1 x12=0000023e x12:0000023f +74929319ns 1329582 1c000e84 00130313 addi x6, x6, 1 x6=1c009ffa x6:1c009ff9 +74929339ns 1329583 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000023e +74929418ns 1329587 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ffa PA:1c009ffa +74929438ns 1329588 1c000e82 fff60613 addi x12, x12, -1 x12=0000023d x12:0000023e +74929458ns 1329589 1c000e84 00130313 addi x6, x6, 1 x6=1c009ffb x6:1c009ffa +74929477ns 1329590 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000023d +74929557ns 1329594 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ffb PA:1c009ffb +74929576ns 1329595 1c000e82 fff60613 addi x12, x12, -1 x12=0000023c x12:0000023d +74929596ns 1329596 1c000e84 00130313 addi x6, x6, 1 x6=1c009ffc x6:1c009ffb +74929616ns 1329597 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000023c +74929695ns 1329601 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ffc PA:1c009ffc +74929715ns 1329602 1c000e82 fff60613 addi x12, x12, -1 x12=0000023b x12:0000023c +74929735ns 1329603 1c000e84 00130313 addi x6, x6, 1 x6=1c009ffd x6:1c009ffc +74929755ns 1329604 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000023b +74929834ns 1329608 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ffd PA:1c009ffd +74929853ns 1329609 1c000e82 fff60613 addi x12, x12, -1 x12=0000023a x12:0000023b +74929873ns 1329610 1c000e84 00130313 addi x6, x6, 1 x6=1c009ffe x6:1c009ffd +74929893ns 1329611 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000023a +74929972ns 1329615 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009ffe PA:1c009ffe +74929992ns 1329616 1c000e82 fff60613 addi x12, x12, -1 x12=00000239 x12:0000023a +74930012ns 1329617 1c000e84 00130313 addi x6, x6, 1 x6=1c009fff x6:1c009ffe +74930032ns 1329618 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000239 +74930111ns 1329622 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009fff PA:1c009fff +74930131ns 1329623 1c000e82 fff60613 addi x12, x12, -1 x12=00000238 x12:00000239 +74930150ns 1329624 1c000e84 00130313 addi x6, x6, 1 x6=1c00a000 x6:1c009fff +74930170ns 1329625 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000238 +74930249ns 1329629 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a000 PA:1c00a000 +74930269ns 1329630 1c000e82 fff60613 addi x12, x12, -1 x12=00000237 x12:00000238 +74930289ns 1329631 1c000e84 00130313 addi x6, x6, 1 x6=1c00a001 x6:1c00a000 +74930309ns 1329632 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000237 +74930388ns 1329636 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a001 PA:1c00a001 +74930408ns 1329637 1c000e82 fff60613 addi x12, x12, -1 x12=00000236 x12:00000237 +74930427ns 1329638 1c000e84 00130313 addi x6, x6, 1 x6=1c00a002 x6:1c00a001 +74930447ns 1329639 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000236 +74930526ns 1329643 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a002 PA:1c00a002 +74930546ns 1329644 1c000e82 fff60613 addi x12, x12, -1 x12=00000235 x12:00000236 +74930566ns 1329645 1c000e84 00130313 addi x6, x6, 1 x6=1c00a003 x6:1c00a002 +74930586ns 1329646 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000235 +74930665ns 1329650 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a003 PA:1c00a003 +74930685ns 1329651 1c000e82 fff60613 addi x12, x12, -1 x12=00000234 x12:00000235 +74930705ns 1329652 1c000e84 00130313 addi x6, x6, 1 x6=1c00a004 x6:1c00a003 +74930724ns 1329653 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000234 +74930803ns 1329657 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a004 PA:1c00a004 +74930823ns 1329658 1c000e82 fff60613 addi x12, x12, -1 x12=00000233 x12:00000234 +74930843ns 1329659 1c000e84 00130313 addi x6, x6, 1 x6=1c00a005 x6:1c00a004 +74930863ns 1329660 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000233 +74930942ns 1329664 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a005 PA:1c00a005 +74930962ns 1329665 1c000e82 fff60613 addi x12, x12, -1 x12=00000232 x12:00000233 +74930982ns 1329666 1c000e84 00130313 addi x6, x6, 1 x6=1c00a006 x6:1c00a005 +74931001ns 1329667 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000232 +74931081ns 1329671 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a006 PA:1c00a006 +74931100ns 1329672 1c000e82 fff60613 addi x12, x12, -1 x12=00000231 x12:00000232 +74931120ns 1329673 1c000e84 00130313 addi x6, x6, 1 x6=1c00a007 x6:1c00a006 +74931140ns 1329674 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000231 +74931219ns 1329678 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a007 PA:1c00a007 +74931239ns 1329679 1c000e82 fff60613 addi x12, x12, -1 x12=00000230 x12:00000231 +74931259ns 1329680 1c000e84 00130313 addi x6, x6, 1 x6=1c00a008 x6:1c00a007 +74931279ns 1329681 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000230 +74931358ns 1329685 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a008 PA:1c00a008 +74931377ns 1329686 1c000e82 fff60613 addi x12, x12, -1 x12=0000022f x12:00000230 +74931397ns 1329687 1c000e84 00130313 addi x6, x6, 1 x6=1c00a009 x6:1c00a008 +74931417ns 1329688 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000022f +74931496ns 1329692 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a009 PA:1c00a009 +74931516ns 1329693 1c000e82 fff60613 addi x12, x12, -1 x12=0000022e x12:0000022f +74931536ns 1329694 1c000e84 00130313 addi x6, x6, 1 x6=1c00a00a x6:1c00a009 +74931556ns 1329695 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000022e +74931635ns 1329699 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a00a PA:1c00a00a +74931655ns 1329700 1c000e82 fff60613 addi x12, x12, -1 x12=0000022d x12:0000022e +74931674ns 1329701 1c000e84 00130313 addi x6, x6, 1 x6=1c00a00b x6:1c00a00a +74931694ns 1329702 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000022d +74931773ns 1329706 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a00b PA:1c00a00b +74931793ns 1329707 1c000e82 fff60613 addi x12, x12, -1 x12=0000022c x12:0000022d +74931813ns 1329708 1c000e84 00130313 addi x6, x6, 1 x6=1c00a00c x6:1c00a00b +74931833ns 1329709 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000022c +74931912ns 1329713 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a00c PA:1c00a00c +74931932ns 1329714 1c000e82 fff60613 addi x12, x12, -1 x12=0000022b x12:0000022c +74931951ns 1329715 1c000e84 00130313 addi x6, x6, 1 x6=1c00a00d x6:1c00a00c +74931971ns 1329716 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000022b +74932050ns 1329720 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a00d PA:1c00a00d +74932070ns 1329721 1c000e82 fff60613 addi x12, x12, -1 x12=0000022a x12:0000022b +74932090ns 1329722 1c000e84 00130313 addi x6, x6, 1 x6=1c00a00e x6:1c00a00d +74932110ns 1329723 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000022a +74932189ns 1329727 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a00e PA:1c00a00e +74932209ns 1329728 1c000e82 fff60613 addi x12, x12, -1 x12=00000229 x12:0000022a +74932229ns 1329729 1c000e84 00130313 addi x6, x6, 1 x6=1c00a00f x6:1c00a00e +74932248ns 1329730 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000229 +74932327ns 1329734 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a00f PA:1c00a00f +74932347ns 1329735 1c000e82 fff60613 addi x12, x12, -1 x12=00000228 x12:00000229 +74932367ns 1329736 1c000e84 00130313 addi x6, x6, 1 x6=1c00a010 x6:1c00a00f +74932387ns 1329737 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000228 +74932466ns 1329741 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a010 PA:1c00a010 +74932486ns 1329742 1c000e82 fff60613 addi x12, x12, -1 x12=00000227 x12:00000228 +74932506ns 1329743 1c000e84 00130313 addi x6, x6, 1 x6=1c00a011 x6:1c00a010 +74932525ns 1329744 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000227 +74932605ns 1329748 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a011 PA:1c00a011 +74932624ns 1329749 1c000e82 fff60613 addi x12, x12, -1 x12=00000226 x12:00000227 +74932644ns 1329750 1c000e84 00130313 addi x6, x6, 1 x6=1c00a012 x6:1c00a011 +74932664ns 1329751 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000226 +74932743ns 1329755 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a012 PA:1c00a012 +74932763ns 1329756 1c000e82 fff60613 addi x12, x12, -1 x12=00000225 x12:00000226 +74932783ns 1329757 1c000e84 00130313 addi x6, x6, 1 x6=1c00a013 x6:1c00a012 +74932802ns 1329758 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000225 +74932882ns 1329762 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a013 PA:1c00a013 +74932901ns 1329763 1c000e82 fff60613 addi x12, x12, -1 x12=00000224 x12:00000225 +74932921ns 1329764 1c000e84 00130313 addi x6, x6, 1 x6=1c00a014 x6:1c00a013 +74932941ns 1329765 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000224 +74933020ns 1329769 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a014 PA:1c00a014 +74933040ns 1329770 1c000e82 fff60613 addi x12, x12, -1 x12=00000223 x12:00000224 +74933060ns 1329771 1c000e84 00130313 addi x6, x6, 1 x6=1c00a015 x6:1c00a014 +74933080ns 1329772 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000223 +74933159ns 1329776 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a015 PA:1c00a015 +74933179ns 1329777 1c000e82 fff60613 addi x12, x12, -1 x12=00000222 x12:00000223 +74933198ns 1329778 1c000e84 00130313 addi x6, x6, 1 x6=1c00a016 x6:1c00a015 +74933218ns 1329779 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000222 +74933297ns 1329783 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a016 PA:1c00a016 +74933317ns 1329784 1c000e82 fff60613 addi x12, x12, -1 x12=00000221 x12:00000222 +74933337ns 1329785 1c000e84 00130313 addi x6, x6, 1 x6=1c00a017 x6:1c00a016 +74933357ns 1329786 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000221 +74933436ns 1329790 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a017 PA:1c00a017 +74933456ns 1329791 1c000e82 fff60613 addi x12, x12, -1 x12=00000220 x12:00000221 +74933475ns 1329792 1c000e84 00130313 addi x6, x6, 1 x6=1c00a018 x6:1c00a017 +74933495ns 1329793 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000220 +74933574ns 1329797 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a018 PA:1c00a018 +74933594ns 1329798 1c000e82 fff60613 addi x12, x12, -1 x12=0000021f x12:00000220 +74933614ns 1329799 1c000e84 00130313 addi x6, x6, 1 x6=1c00a019 x6:1c00a018 +74933634ns 1329800 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000021f +74933713ns 1329804 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a019 PA:1c00a019 +74933733ns 1329805 1c000e82 fff60613 addi x12, x12, -1 x12=0000021e x12:0000021f +74933753ns 1329806 1c000e84 00130313 addi x6, x6, 1 x6=1c00a01a x6:1c00a019 +74933772ns 1329807 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000021e +74933851ns 1329811 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a01a PA:1c00a01a +74933871ns 1329812 1c000e82 fff60613 addi x12, x12, -1 x12=0000021d x12:0000021e +74933891ns 1329813 1c000e84 00130313 addi x6, x6, 1 x6=1c00a01b x6:1c00a01a +74933911ns 1329814 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000021d +74933990ns 1329818 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a01b PA:1c00a01b +74934010ns 1329819 1c000e82 fff60613 addi x12, x12, -1 x12=0000021c x12:0000021d +74934030ns 1329820 1c000e84 00130313 addi x6, x6, 1 x6=1c00a01c x6:1c00a01b +74934049ns 1329821 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000021c +74934129ns 1329825 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a01c PA:1c00a01c +74934148ns 1329826 1c000e82 fff60613 addi x12, x12, -1 x12=0000021b x12:0000021c +74934168ns 1329827 1c000e84 00130313 addi x6, x6, 1 x6=1c00a01d x6:1c00a01c +74934188ns 1329828 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000021b +74934267ns 1329832 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a01d PA:1c00a01d +74934287ns 1329833 1c000e82 fff60613 addi x12, x12, -1 x12=0000021a x12:0000021b +74934307ns 1329834 1c000e84 00130313 addi x6, x6, 1 x6=1c00a01e x6:1c00a01d +74934326ns 1329835 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000021a +74934406ns 1329839 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a01e PA:1c00a01e +74934425ns 1329840 1c000e82 fff60613 addi x12, x12, -1 x12=00000219 x12:0000021a +74934445ns 1329841 1c000e84 00130313 addi x6, x6, 1 x6=1c00a01f x6:1c00a01e +74934465ns 1329842 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000219 +74934544ns 1329846 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a01f PA:1c00a01f +74934564ns 1329847 1c000e82 fff60613 addi x12, x12, -1 x12=00000218 x12:00000219 +74934584ns 1329848 1c000e84 00130313 addi x6, x6, 1 x6=1c00a020 x6:1c00a01f +74934604ns 1329849 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000218 +74934683ns 1329853 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a020 PA:1c00a020 +74934703ns 1329854 1c000e82 fff60613 addi x12, x12, -1 x12=00000217 x12:00000218 +74934722ns 1329855 1c000e84 00130313 addi x6, x6, 1 x6=1c00a021 x6:1c00a020 +74934742ns 1329856 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000217 +74934821ns 1329860 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a021 PA:1c00a021 +74934841ns 1329861 1c000e82 fff60613 addi x12, x12, -1 x12=00000216 x12:00000217 +74934861ns 1329862 1c000e84 00130313 addi x6, x6, 1 x6=1c00a022 x6:1c00a021 +74934881ns 1329863 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000216 +74934960ns 1329867 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a022 PA:1c00a022 +74934980ns 1329868 1c000e82 fff60613 addi x12, x12, -1 x12=00000215 x12:00000216 +74934999ns 1329869 1c000e84 00130313 addi x6, x6, 1 x6=1c00a023 x6:1c00a022 +74935019ns 1329870 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000215 +74935098ns 1329874 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a023 PA:1c00a023 +74935118ns 1329875 1c000e82 fff60613 addi x12, x12, -1 x12=00000214 x12:00000215 +74935138ns 1329876 1c000e84 00130313 addi x6, x6, 1 x6=1c00a024 x6:1c00a023 +74935158ns 1329877 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000214 +74935237ns 1329881 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a024 PA:1c00a024 +74935257ns 1329882 1c000e82 fff60613 addi x12, x12, -1 x12=00000213 x12:00000214 +74935276ns 1329883 1c000e84 00130313 addi x6, x6, 1 x6=1c00a025 x6:1c00a024 +74935296ns 1329884 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000213 +74935375ns 1329888 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a025 PA:1c00a025 +74935395ns 1329889 1c000e82 fff60613 addi x12, x12, -1 x12=00000212 x12:00000213 +74935415ns 1329890 1c000e84 00130313 addi x6, x6, 1 x6=1c00a026 x6:1c00a025 +74935435ns 1329891 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000212 +74935514ns 1329895 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a026 PA:1c00a026 +74935534ns 1329896 1c000e82 fff60613 addi x12, x12, -1 x12=00000211 x12:00000212 +74935554ns 1329897 1c000e84 00130313 addi x6, x6, 1 x6=1c00a027 x6:1c00a026 +74935573ns 1329898 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000211 +74935653ns 1329902 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a027 PA:1c00a027 +74935672ns 1329903 1c000e82 fff60613 addi x12, x12, -1 x12=00000210 x12:00000211 +74935692ns 1329904 1c000e84 00130313 addi x6, x6, 1 x6=1c00a028 x6:1c00a027 +74935712ns 1329905 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000210 +74935791ns 1329909 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a028 PA:1c00a028 +74935811ns 1329910 1c000e82 fff60613 addi x12, x12, -1 x12=0000020f x12:00000210 +74935831ns 1329911 1c000e84 00130313 addi x6, x6, 1 x6=1c00a029 x6:1c00a028 +74935850ns 1329912 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000020f +74935930ns 1329916 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a029 PA:1c00a029 +74935949ns 1329917 1c000e82 fff60613 addi x12, x12, -1 x12=0000020e x12:0000020f +74935969ns 1329918 1c000e84 00130313 addi x6, x6, 1 x6=1c00a02a x6:1c00a029 +74935989ns 1329919 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000020e +74936068ns 1329923 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a02a PA:1c00a02a +74936088ns 1329924 1c000e82 fff60613 addi x12, x12, -1 x12=0000020d x12:0000020e +74936108ns 1329925 1c000e84 00130313 addi x6, x6, 1 x6=1c00a02b x6:1c00a02a +74936128ns 1329926 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000020d +74936207ns 1329930 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a02b PA:1c00a02b +74936227ns 1329931 1c000e82 fff60613 addi x12, x12, -1 x12=0000020c x12:0000020d +74936246ns 1329932 1c000e84 00130313 addi x6, x6, 1 x6=1c00a02c x6:1c00a02b +74936266ns 1329933 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000020c +74936345ns 1329937 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a02c PA:1c00a02c +74936365ns 1329938 1c000e82 fff60613 addi x12, x12, -1 x12=0000020b x12:0000020c +74936385ns 1329939 1c000e84 00130313 addi x6, x6, 1 x6=1c00a02d x6:1c00a02c +74936405ns 1329940 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000020b +74936484ns 1329944 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a02d PA:1c00a02d +74936504ns 1329945 1c000e82 fff60613 addi x12, x12, -1 x12=0000020a x12:0000020b +74936523ns 1329946 1c000e84 00130313 addi x6, x6, 1 x6=1c00a02e x6:1c00a02d +74936543ns 1329947 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000020a +74936622ns 1329951 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a02e PA:1c00a02e +74936642ns 1329952 1c000e82 fff60613 addi x12, x12, -1 x12=00000209 x12:0000020a +74936662ns 1329953 1c000e84 00130313 addi x6, x6, 1 x6=1c00a02f x6:1c00a02e +74936682ns 1329954 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000209 +74936761ns 1329958 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a02f PA:1c00a02f +74936781ns 1329959 1c000e82 fff60613 addi x12, x12, -1 x12=00000208 x12:00000209 +74936800ns 1329960 1c000e84 00130313 addi x6, x6, 1 x6=1c00a030 x6:1c00a02f +74936820ns 1329961 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000208 +74936899ns 1329965 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a030 PA:1c00a030 +74936919ns 1329966 1c000e82 fff60613 addi x12, x12, -1 x12=00000207 x12:00000208 +74936939ns 1329967 1c000e84 00130313 addi x6, x6, 1 x6=1c00a031 x6:1c00a030 +74936959ns 1329968 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000207 +74937038ns 1329972 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a031 PA:1c00a031 +74937058ns 1329973 1c000e82 fff60613 addi x12, x12, -1 x12=00000206 x12:00000207 +74937078ns 1329974 1c000e84 00130313 addi x6, x6, 1 x6=1c00a032 x6:1c00a031 +74937097ns 1329975 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000206 +74937177ns 1329979 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a032 PA:1c00a032 +74937196ns 1329980 1c000e82 fff60613 addi x12, x12, -1 x12=00000205 x12:00000206 +74937216ns 1329981 1c000e84 00130313 addi x6, x6, 1 x6=1c00a033 x6:1c00a032 +74937236ns 1329982 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000205 +74937315ns 1329986 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a033 PA:1c00a033 +74937335ns 1329987 1c000e82 fff60613 addi x12, x12, -1 x12=00000204 x12:00000205 +74937355ns 1329988 1c000e84 00130313 addi x6, x6, 1 x6=1c00a034 x6:1c00a033 +74937374ns 1329989 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000204 +74937454ns 1329993 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a034 PA:1c00a034 +74937473ns 1329994 1c000e82 fff60613 addi x12, x12, -1 x12=00000203 x12:00000204 +74937493ns 1329995 1c000e84 00130313 addi x6, x6, 1 x6=1c00a035 x6:1c00a034 +74937513ns 1329996 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000203 +74937592ns 1330000 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a035 PA:1c00a035 +74937612ns 1330001 1c000e82 fff60613 addi x12, x12, -1 x12=00000202 x12:00000203 +74937632ns 1330002 1c000e84 00130313 addi x6, x6, 1 x6=1c00a036 x6:1c00a035 +74937652ns 1330003 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000202 +74937731ns 1330007 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a036 PA:1c00a036 +74937750ns 1330008 1c000e82 fff60613 addi x12, x12, -1 x12=00000201 x12:00000202 +74937770ns 1330009 1c000e84 00130313 addi x6, x6, 1 x6=1c00a037 x6:1c00a036 +74937790ns 1330010 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000201 +74937869ns 1330014 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a037 PA:1c00a037 +74937889ns 1330015 1c000e82 fff60613 addi x12, x12, -1 x12=00000200 x12:00000201 +74937909ns 1330016 1c000e84 00130313 addi x6, x6, 1 x6=1c00a038 x6:1c00a037 +74937929ns 1330017 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000200 +74938008ns 1330021 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a038 PA:1c00a038 +74938028ns 1330022 1c000e82 fff60613 addi x12, x12, -1 x12=000001ff x12:00000200 +74938047ns 1330023 1c000e84 00130313 addi x6, x6, 1 x6=1c00a039 x6:1c00a038 +74938067ns 1330024 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ff +74938146ns 1330028 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a039 PA:1c00a039 +74938166ns 1330029 1c000e82 fff60613 addi x12, x12, -1 x12=000001fe x12:000001ff +74938186ns 1330030 1c000e84 00130313 addi x6, x6, 1 x6=1c00a03a x6:1c00a039 +74938206ns 1330031 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001fe +74938285ns 1330035 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a03a PA:1c00a03a +74938305ns 1330036 1c000e82 fff60613 addi x12, x12, -1 x12=000001fd x12:000001fe +74938324ns 1330037 1c000e84 00130313 addi x6, x6, 1 x6=1c00a03b x6:1c00a03a +74938344ns 1330038 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001fd +74938423ns 1330042 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a03b PA:1c00a03b +74938443ns 1330043 1c000e82 fff60613 addi x12, x12, -1 x12=000001fc x12:000001fd +74938463ns 1330044 1c000e84 00130313 addi x6, x6, 1 x6=1c00a03c x6:1c00a03b +74938483ns 1330045 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001fc +74938562ns 1330049 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a03c PA:1c00a03c +74938582ns 1330050 1c000e82 fff60613 addi x12, x12, -1 x12=000001fb x12:000001fc +74938602ns 1330051 1c000e84 00130313 addi x6, x6, 1 x6=1c00a03d x6:1c00a03c +74938621ns 1330052 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001fb +74938701ns 1330056 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a03d PA:1c00a03d +74938720ns 1330057 1c000e82 fff60613 addi x12, x12, -1 x12=000001fa x12:000001fb +74938740ns 1330058 1c000e84 00130313 addi x6, x6, 1 x6=1c00a03e x6:1c00a03d +74938760ns 1330059 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001fa +74938839ns 1330063 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a03e PA:1c00a03e +74938859ns 1330064 1c000e82 fff60613 addi x12, x12, -1 x12=000001f9 x12:000001fa +74938879ns 1330065 1c000e84 00130313 addi x6, x6, 1 x6=1c00a03f x6:1c00a03e +74938898ns 1330066 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001f9 +74938978ns 1330070 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a03f PA:1c00a03f +74938997ns 1330071 1c000e82 fff60613 addi x12, x12, -1 x12=000001f8 x12:000001f9 +74939017ns 1330072 1c000e84 00130313 addi x6, x6, 1 x6=1c00a040 x6:1c00a03f +74939037ns 1330073 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001f8 +74939116ns 1330077 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a040 PA:1c00a040 +74939136ns 1330078 1c000e82 fff60613 addi x12, x12, -1 x12=000001f7 x12:000001f8 +74939156ns 1330079 1c000e84 00130313 addi x6, x6, 1 x6=1c00a041 x6:1c00a040 +74939176ns 1330080 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001f7 +74939255ns 1330084 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a041 PA:1c00a041 +74939274ns 1330085 1c000e82 fff60613 addi x12, x12, -1 x12=000001f6 x12:000001f7 +74939294ns 1330086 1c000e84 00130313 addi x6, x6, 1 x6=1c00a042 x6:1c00a041 +74939314ns 1330087 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001f6 +74939393ns 1330091 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a042 PA:1c00a042 +74939413ns 1330092 1c000e82 fff60613 addi x12, x12, -1 x12=000001f5 x12:000001f6 +74939433ns 1330093 1c000e84 00130313 addi x6, x6, 1 x6=1c00a043 x6:1c00a042 +74939453ns 1330094 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001f5 +74939532ns 1330098 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a043 PA:1c00a043 +74939552ns 1330099 1c000e82 fff60613 addi x12, x12, -1 x12=000001f4 x12:000001f5 +74939571ns 1330100 1c000e84 00130313 addi x6, x6, 1 x6=1c00a044 x6:1c00a043 +74939591ns 1330101 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001f4 +74939670ns 1330105 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a044 PA:1c00a044 +74939690ns 1330106 1c000e82 fff60613 addi x12, x12, -1 x12=000001f3 x12:000001f4 +74939710ns 1330107 1c000e84 00130313 addi x6, x6, 1 x6=1c00a045 x6:1c00a044 +74939730ns 1330108 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001f3 +74939809ns 1330112 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a045 PA:1c00a045 +74939829ns 1330113 1c000e82 fff60613 addi x12, x12, -1 x12=000001f2 x12:000001f3 +74939848ns 1330114 1c000e84 00130313 addi x6, x6, 1 x6=1c00a046 x6:1c00a045 +74939868ns 1330115 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001f2 +74939947ns 1330119 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a046 PA:1c00a046 +74939967ns 1330120 1c000e82 fff60613 addi x12, x12, -1 x12=000001f1 x12:000001f2 +74939987ns 1330121 1c000e84 00130313 addi x6, x6, 1 x6=1c00a047 x6:1c00a046 +74940007ns 1330122 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001f1 +74940086ns 1330126 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a047 PA:1c00a047 +74940106ns 1330127 1c000e82 fff60613 addi x12, x12, -1 x12=000001f0 x12:000001f1 +74940126ns 1330128 1c000e84 00130313 addi x6, x6, 1 x6=1c00a048 x6:1c00a047 +74940145ns 1330129 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001f0 +74940224ns 1330133 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a048 PA:1c00a048 +74940244ns 1330134 1c000e82 fff60613 addi x12, x12, -1 x12=000001ef x12:000001f0 +74940264ns 1330135 1c000e84 00130313 addi x6, x6, 1 x6=1c00a049 x6:1c00a048 +74940284ns 1330136 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ef +74940363ns 1330140 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a049 PA:1c00a049 +74940383ns 1330141 1c000e82 fff60613 addi x12, x12, -1 x12=000001ee x12:000001ef +74940403ns 1330142 1c000e84 00130313 addi x6, x6, 1 x6=1c00a04a x6:1c00a049 +74940422ns 1330143 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ee +74940502ns 1330147 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a04a PA:1c00a04a +74940521ns 1330148 1c000e82 fff60613 addi x12, x12, -1 x12=000001ed x12:000001ee +74940541ns 1330149 1c000e84 00130313 addi x6, x6, 1 x6=1c00a04b x6:1c00a04a +74940561ns 1330150 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ed +74940640ns 1330154 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a04b PA:1c00a04b +74940660ns 1330155 1c000e82 fff60613 addi x12, x12, -1 x12=000001ec x12:000001ed +74940680ns 1330156 1c000e84 00130313 addi x6, x6, 1 x6=1c00a04c x6:1c00a04b +74940699ns 1330157 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ec +74940779ns 1330161 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a04c PA:1c00a04c +74940798ns 1330162 1c000e82 fff60613 addi x12, x12, -1 x12=000001eb x12:000001ec +74940818ns 1330163 1c000e84 00130313 addi x6, x6, 1 x6=1c00a04d x6:1c00a04c +74940838ns 1330164 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001eb +74940917ns 1330168 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a04d PA:1c00a04d +74940937ns 1330169 1c000e82 fff60613 addi x12, x12, -1 x12=000001ea x12:000001eb +74940957ns 1330170 1c000e84 00130313 addi x6, x6, 1 x6=1c00a04e x6:1c00a04d +74940977ns 1330171 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ea +74941056ns 1330175 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a04e PA:1c00a04e +74941076ns 1330176 1c000e82 fff60613 addi x12, x12, -1 x12=000001e9 x12:000001ea +74941095ns 1330177 1c000e84 00130313 addi x6, x6, 1 x6=1c00a04f x6:1c00a04e +74941115ns 1330178 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001e9 +74941194ns 1330182 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a04f PA:1c00a04f +74941214ns 1330183 1c000e82 fff60613 addi x12, x12, -1 x12=000001e8 x12:000001e9 +74941234ns 1330184 1c000e84 00130313 addi x6, x6, 1 x6=1c00a050 x6:1c00a04f +74941254ns 1330185 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001e8 +74941333ns 1330189 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a050 PA:1c00a050 +74941353ns 1330190 1c000e82 fff60613 addi x12, x12, -1 x12=000001e7 x12:000001e8 +74941372ns 1330191 1c000e84 00130313 addi x6, x6, 1 x6=1c00a051 x6:1c00a050 +74941392ns 1330192 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001e7 +74941471ns 1330196 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a051 PA:1c00a051 +74941491ns 1330197 1c000e82 fff60613 addi x12, x12, -1 x12=000001e6 x12:000001e7 +74941511ns 1330198 1c000e84 00130313 addi x6, x6, 1 x6=1c00a052 x6:1c00a051 +74941531ns 1330199 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001e6 +74941610ns 1330203 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a052 PA:1c00a052 +74941630ns 1330204 1c000e82 fff60613 addi x12, x12, -1 x12=000001e5 x12:000001e6 +74941650ns 1330205 1c000e84 00130313 addi x6, x6, 1 x6=1c00a053 x6:1c00a052 +74941669ns 1330206 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001e5 +74941748ns 1330210 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a053 PA:1c00a053 +74941768ns 1330211 1c000e82 fff60613 addi x12, x12, -1 x12=000001e4 x12:000001e5 +74941788ns 1330212 1c000e84 00130313 addi x6, x6, 1 x6=1c00a054 x6:1c00a053 +74941808ns 1330213 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001e4 +74941887ns 1330217 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a054 PA:1c00a054 +74941907ns 1330218 1c000e82 fff60613 addi x12, x12, -1 x12=000001e3 x12:000001e4 +74941927ns 1330219 1c000e84 00130313 addi x6, x6, 1 x6=1c00a055 x6:1c00a054 +74941946ns 1330220 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001e3 +74942026ns 1330224 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a055 PA:1c00a055 +74942045ns 1330225 1c000e82 fff60613 addi x12, x12, -1 x12=000001e2 x12:000001e3 +74942065ns 1330226 1c000e84 00130313 addi x6, x6, 1 x6=1c00a056 x6:1c00a055 +74942085ns 1330227 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001e2 +74942164ns 1330231 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a056 PA:1c00a056 +74942184ns 1330232 1c000e82 fff60613 addi x12, x12, -1 x12=000001e1 x12:000001e2 +74942204ns 1330233 1c000e84 00130313 addi x6, x6, 1 x6=1c00a057 x6:1c00a056 +74942223ns 1330234 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001e1 +74942303ns 1330238 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a057 PA:1c00a057 +74942322ns 1330239 1c000e82 fff60613 addi x12, x12, -1 x12=000001e0 x12:000001e1 +74942342ns 1330240 1c000e84 00130313 addi x6, x6, 1 x6=1c00a058 x6:1c00a057 +74942362ns 1330241 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001e0 +74942441ns 1330245 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a058 PA:1c00a058 +74942461ns 1330246 1c000e82 fff60613 addi x12, x12, -1 x12=000001df x12:000001e0 +74942481ns 1330247 1c000e84 00130313 addi x6, x6, 1 x6=1c00a059 x6:1c00a058 +74942501ns 1330248 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001df +74942580ns 1330252 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a059 PA:1c00a059 +74942600ns 1330253 1c000e82 fff60613 addi x12, x12, -1 x12=000001de x12:000001df +74942619ns 1330254 1c000e84 00130313 addi x6, x6, 1 x6=1c00a05a x6:1c00a059 +74942639ns 1330255 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001de +74942718ns 1330259 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a05a PA:1c00a05a +74942738ns 1330260 1c000e82 fff60613 addi x12, x12, -1 x12=000001dd x12:000001de +74942758ns 1330261 1c000e84 00130313 addi x6, x6, 1 x6=1c00a05b x6:1c00a05a +74942778ns 1330262 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001dd +74942857ns 1330266 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a05b PA:1c00a05b +74942877ns 1330267 1c000e82 fff60613 addi x12, x12, -1 x12=000001dc x12:000001dd +74942896ns 1330268 1c000e84 00130313 addi x6, x6, 1 x6=1c00a05c x6:1c00a05b +74942916ns 1330269 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001dc +74942995ns 1330273 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a05c PA:1c00a05c +74943015ns 1330274 1c000e82 fff60613 addi x12, x12, -1 x12=000001db x12:000001dc +74943035ns 1330275 1c000e84 00130313 addi x6, x6, 1 x6=1c00a05d x6:1c00a05c +74943055ns 1330276 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001db +74943134ns 1330280 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a05d PA:1c00a05d +74943154ns 1330281 1c000e82 fff60613 addi x12, x12, -1 x12=000001da x12:000001db +74943173ns 1330282 1c000e84 00130313 addi x6, x6, 1 x6=1c00a05e x6:1c00a05d +74943193ns 1330283 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001da +74943272ns 1330287 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a05e PA:1c00a05e +74943292ns 1330288 1c000e82 fff60613 addi x12, x12, -1 x12=000001d9 x12:000001da +74943312ns 1330289 1c000e84 00130313 addi x6, x6, 1 x6=1c00a05f x6:1c00a05e +74943332ns 1330290 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001d9 +74943411ns 1330294 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a05f PA:1c00a05f +74943431ns 1330295 1c000e82 fff60613 addi x12, x12, -1 x12=000001d8 x12:000001d9 +74943451ns 1330296 1c000e84 00130313 addi x6, x6, 1 x6=1c00a060 x6:1c00a05f +74943470ns 1330297 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001d8 +74943550ns 1330301 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a060 PA:1c00a060 +74943569ns 1330302 1c000e82 fff60613 addi x12, x12, -1 x12=000001d7 x12:000001d8 +74943589ns 1330303 1c000e84 00130313 addi x6, x6, 1 x6=1c00a061 x6:1c00a060 +74943609ns 1330304 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001d7 +74943688ns 1330308 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a061 PA:1c00a061 +74943708ns 1330309 1c000e82 fff60613 addi x12, x12, -1 x12=000001d6 x12:000001d7 +74943728ns 1330310 1c000e84 00130313 addi x6, x6, 1 x6=1c00a062 x6:1c00a061 +74943747ns 1330311 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001d6 +74943827ns 1330315 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a062 PA:1c00a062 +74943846ns 1330316 1c000e82 fff60613 addi x12, x12, -1 x12=000001d5 x12:000001d6 +74943866ns 1330317 1c000e84 00130313 addi x6, x6, 1 x6=1c00a063 x6:1c00a062 +74943886ns 1330318 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001d5 +74943965ns 1330322 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a063 PA:1c00a063 +74943985ns 1330323 1c000e82 fff60613 addi x12, x12, -1 x12=000001d4 x12:000001d5 +74944005ns 1330324 1c000e84 00130313 addi x6, x6, 1 x6=1c00a064 x6:1c00a063 +74944025ns 1330325 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001d4 +74944104ns 1330329 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a064 PA:1c00a064 +74944124ns 1330330 1c000e82 fff60613 addi x12, x12, -1 x12=000001d3 x12:000001d4 +74944143ns 1330331 1c000e84 00130313 addi x6, x6, 1 x6=1c00a065 x6:1c00a064 +74944163ns 1330332 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001d3 +74944242ns 1330336 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a065 PA:1c00a065 +74944262ns 1330337 1c000e82 fff60613 addi x12, x12, -1 x12=000001d2 x12:000001d3 +74944282ns 1330338 1c000e84 00130313 addi x6, x6, 1 x6=1c00a066 x6:1c00a065 +74944302ns 1330339 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001d2 +74944381ns 1330343 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a066 PA:1c00a066 +74944401ns 1330344 1c000e82 fff60613 addi x12, x12, -1 x12=000001d1 x12:000001d2 +74944420ns 1330345 1c000e84 00130313 addi x6, x6, 1 x6=1c00a067 x6:1c00a066 +74944440ns 1330346 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001d1 +74944519ns 1330350 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a067 PA:1c00a067 +74944539ns 1330351 1c000e82 fff60613 addi x12, x12, -1 x12=000001d0 x12:000001d1 +74944559ns 1330352 1c000e84 00130313 addi x6, x6, 1 x6=1c00a068 x6:1c00a067 +74944579ns 1330353 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001d0 +74944658ns 1330357 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a068 PA:1c00a068 +74944678ns 1330358 1c000e82 fff60613 addi x12, x12, -1 x12=000001cf x12:000001d0 +74944697ns 1330359 1c000e84 00130313 addi x6, x6, 1 x6=1c00a069 x6:1c00a068 +74944717ns 1330360 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001cf +74944796ns 1330364 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a069 PA:1c00a069 +74944816ns 1330365 1c000e82 fff60613 addi x12, x12, -1 x12=000001ce x12:000001cf +74944836ns 1330366 1c000e84 00130313 addi x6, x6, 1 x6=1c00a06a x6:1c00a069 +74944856ns 1330367 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ce +74944935ns 1330371 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a06a PA:1c00a06a +74944955ns 1330372 1c000e82 fff60613 addi x12, x12, -1 x12=000001cd x12:000001ce +74944975ns 1330373 1c000e84 00130313 addi x6, x6, 1 x6=1c00a06b x6:1c00a06a +74944994ns 1330374 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001cd +74945074ns 1330378 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a06b PA:1c00a06b +74945093ns 1330379 1c000e82 fff60613 addi x12, x12, -1 x12=000001cc x12:000001cd +74945113ns 1330380 1c000e84 00130313 addi x6, x6, 1 x6=1c00a06c x6:1c00a06b +74945133ns 1330381 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001cc +74945212ns 1330385 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a06c PA:1c00a06c +74945232ns 1330386 1c000e82 fff60613 addi x12, x12, -1 x12=000001cb x12:000001cc +74945252ns 1330387 1c000e84 00130313 addi x6, x6, 1 x6=1c00a06d x6:1c00a06c +74945271ns 1330388 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001cb +74945351ns 1330392 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a06d PA:1c00a06d +74945370ns 1330393 1c000e82 fff60613 addi x12, x12, -1 x12=000001ca x12:000001cb +74945390ns 1330394 1c000e84 00130313 addi x6, x6, 1 x6=1c00a06e x6:1c00a06d +74945410ns 1330395 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ca +74945489ns 1330399 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a06e PA:1c00a06e +74945509ns 1330400 1c000e82 fff60613 addi x12, x12, -1 x12=000001c9 x12:000001ca +74945529ns 1330401 1c000e84 00130313 addi x6, x6, 1 x6=1c00a06f x6:1c00a06e +74945549ns 1330402 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001c9 +74945628ns 1330406 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a06f PA:1c00a06f +74945647ns 1330407 1c000e82 fff60613 addi x12, x12, -1 x12=000001c8 x12:000001c9 +74945667ns 1330408 1c000e84 00130313 addi x6, x6, 1 x6=1c00a070 x6:1c00a06f +74945687ns 1330409 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001c8 +74945766ns 1330413 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a070 PA:1c00a070 +74945786ns 1330414 1c000e82 fff60613 addi x12, x12, -1 x12=000001c7 x12:000001c8 +74945806ns 1330415 1c000e84 00130313 addi x6, x6, 1 x6=1c00a071 x6:1c00a070 +74945826ns 1330416 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001c7 +74945905ns 1330420 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a071 PA:1c00a071 +74945925ns 1330421 1c000e82 fff60613 addi x12, x12, -1 x12=000001c6 x12:000001c7 +74945944ns 1330422 1c000e84 00130313 addi x6, x6, 1 x6=1c00a072 x6:1c00a071 +74945964ns 1330423 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001c6 +74946043ns 1330427 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a072 PA:1c00a072 +74946063ns 1330428 1c000e82 fff60613 addi x12, x12, -1 x12=000001c5 x12:000001c6 +74946083ns 1330429 1c000e84 00130313 addi x6, x6, 1 x6=1c00a073 x6:1c00a072 +74946103ns 1330430 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001c5 +74946182ns 1330434 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a073 PA:1c00a073 +74946202ns 1330435 1c000e82 fff60613 addi x12, x12, -1 x12=000001c4 x12:000001c5 +74946221ns 1330436 1c000e84 00130313 addi x6, x6, 1 x6=1c00a074 x6:1c00a073 +74946241ns 1330437 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001c4 +74946320ns 1330441 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a074 PA:1c00a074 +74946340ns 1330442 1c000e82 fff60613 addi x12, x12, -1 x12=000001c3 x12:000001c4 +74946360ns 1330443 1c000e84 00130313 addi x6, x6, 1 x6=1c00a075 x6:1c00a074 +74946380ns 1330444 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001c3 +74946459ns 1330448 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a075 PA:1c00a075 +74946479ns 1330449 1c000e82 fff60613 addi x12, x12, -1 x12=000001c2 x12:000001c3 +74946499ns 1330450 1c000e84 00130313 addi x6, x6, 1 x6=1c00a076 x6:1c00a075 +74946518ns 1330451 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001c2 +74946598ns 1330455 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a076 PA:1c00a076 +74946617ns 1330456 1c000e82 fff60613 addi x12, x12, -1 x12=000001c1 x12:000001c2 +74946637ns 1330457 1c000e84 00130313 addi x6, x6, 1 x6=1c00a077 x6:1c00a076 +74946657ns 1330458 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001c1 +74946736ns 1330462 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a077 PA:1c00a077 +74946756ns 1330463 1c000e82 fff60613 addi x12, x12, -1 x12=000001c0 x12:000001c1 +74946776ns 1330464 1c000e84 00130313 addi x6, x6, 1 x6=1c00a078 x6:1c00a077 +74946795ns 1330465 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001c0 +74946875ns 1330469 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a078 PA:1c00a078 +74946894ns 1330470 1c000e82 fff60613 addi x12, x12, -1 x12=000001bf x12:000001c0 +74946914ns 1330471 1c000e84 00130313 addi x6, x6, 1 x6=1c00a079 x6:1c00a078 +74946934ns 1330472 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001bf +74947013ns 1330476 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a079 PA:1c00a079 +74947033ns 1330477 1c000e82 fff60613 addi x12, x12, -1 x12=000001be x12:000001bf +74947053ns 1330478 1c000e84 00130313 addi x6, x6, 1 x6=1c00a07a x6:1c00a079 +74947073ns 1330479 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001be +74947152ns 1330483 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a07a PA:1c00a07a +74947171ns 1330484 1c000e82 fff60613 addi x12, x12, -1 x12=000001bd x12:000001be +74947191ns 1330485 1c000e84 00130313 addi x6, x6, 1 x6=1c00a07b x6:1c00a07a +74947211ns 1330486 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001bd +74947290ns 1330490 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a07b PA:1c00a07b +74947310ns 1330491 1c000e82 fff60613 addi x12, x12, -1 x12=000001bc x12:000001bd +74947330ns 1330492 1c000e84 00130313 addi x6, x6, 1 x6=1c00a07c x6:1c00a07b +74947350ns 1330493 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001bc +74947429ns 1330497 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a07c PA:1c00a07c +74947449ns 1330498 1c000e82 fff60613 addi x12, x12, -1 x12=000001bb x12:000001bc +74947468ns 1330499 1c000e84 00130313 addi x6, x6, 1 x6=1c00a07d x6:1c00a07c +74947488ns 1330500 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001bb +74947567ns 1330504 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a07d PA:1c00a07d +74947587ns 1330505 1c000e82 fff60613 addi x12, x12, -1 x12=000001ba x12:000001bb +74947607ns 1330506 1c000e84 00130313 addi x6, x6, 1 x6=1c00a07e x6:1c00a07d +74947627ns 1330507 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ba +74947706ns 1330511 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a07e PA:1c00a07e +74947726ns 1330512 1c000e82 fff60613 addi x12, x12, -1 x12=000001b9 x12:000001ba +74947745ns 1330513 1c000e84 00130313 addi x6, x6, 1 x6=1c00a07f x6:1c00a07e +74947765ns 1330514 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001b9 +74947844ns 1330518 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a07f PA:1c00a07f +74947864ns 1330519 1c000e82 fff60613 addi x12, x12, -1 x12=000001b8 x12:000001b9 +74947884ns 1330520 1c000e84 00130313 addi x6, x6, 1 x6=1c00a080 x6:1c00a07f +74947904ns 1330521 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001b8 +74947983ns 1330525 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a080 PA:1c00a080 +74948003ns 1330526 1c000e82 fff60613 addi x12, x12, -1 x12=000001b7 x12:000001b8 +74948023ns 1330527 1c000e84 00130313 addi x6, x6, 1 x6=1c00a081 x6:1c00a080 +74948042ns 1330528 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001b7 +74948121ns 1330532 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a081 PA:1c00a081 +74948141ns 1330533 1c000e82 fff60613 addi x12, x12, -1 x12=000001b6 x12:000001b7 +74948161ns 1330534 1c000e84 00130313 addi x6, x6, 1 x6=1c00a082 x6:1c00a081 +74948181ns 1330535 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001b6 +74948260ns 1330539 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a082 PA:1c00a082 +74948280ns 1330540 1c000e82 fff60613 addi x12, x12, -1 x12=000001b5 x12:000001b6 +74948300ns 1330541 1c000e84 00130313 addi x6, x6, 1 x6=1c00a083 x6:1c00a082 +74948319ns 1330542 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001b5 +74948399ns 1330546 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a083 PA:1c00a083 +74948418ns 1330547 1c000e82 fff60613 addi x12, x12, -1 x12=000001b4 x12:000001b5 +74948438ns 1330548 1c000e84 00130313 addi x6, x6, 1 x6=1c00a084 x6:1c00a083 +74948458ns 1330549 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001b4 +74948537ns 1330553 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a084 PA:1c00a084 +74948557ns 1330554 1c000e82 fff60613 addi x12, x12, -1 x12=000001b3 x12:000001b4 +74948577ns 1330555 1c000e84 00130313 addi x6, x6, 1 x6=1c00a085 x6:1c00a084 +74948597ns 1330556 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001b3 +74948676ns 1330560 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a085 PA:1c00a085 +74948695ns 1330561 1c000e82 fff60613 addi x12, x12, -1 x12=000001b2 x12:000001b3 +74948715ns 1330562 1c000e84 00130313 addi x6, x6, 1 x6=1c00a086 x6:1c00a085 +74948735ns 1330563 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001b2 +74948814ns 1330567 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a086 PA:1c00a086 +74948834ns 1330568 1c000e82 fff60613 addi x12, x12, -1 x12=000001b1 x12:000001b2 +74948854ns 1330569 1c000e84 00130313 addi x6, x6, 1 x6=1c00a087 x6:1c00a086 +74948874ns 1330570 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001b1 +74948953ns 1330574 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a087 PA:1c00a087 +74948973ns 1330575 1c000e82 fff60613 addi x12, x12, -1 x12=000001b0 x12:000001b1 +74948992ns 1330576 1c000e84 00130313 addi x6, x6, 1 x6=1c00a088 x6:1c00a087 +74949012ns 1330577 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001b0 +74949091ns 1330581 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a088 PA:1c00a088 +74949111ns 1330582 1c000e82 fff60613 addi x12, x12, -1 x12=000001af x12:000001b0 +74949131ns 1330583 1c000e84 00130313 addi x6, x6, 1 x6=1c00a089 x6:1c00a088 +74949151ns 1330584 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001af +74949230ns 1330588 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a089 PA:1c00a089 +74949250ns 1330589 1c000e82 fff60613 addi x12, x12, -1 x12=000001ae x12:000001af +74949269ns 1330590 1c000e84 00130313 addi x6, x6, 1 x6=1c00a08a x6:1c00a089 +74949289ns 1330591 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ae +74949368ns 1330595 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a08a PA:1c00a08a +74949388ns 1330596 1c000e82 fff60613 addi x12, x12, -1 x12=000001ad x12:000001ae +74949408ns 1330597 1c000e84 00130313 addi x6, x6, 1 x6=1c00a08b x6:1c00a08a +74949428ns 1330598 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ad +74949507ns 1330602 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a08b PA:1c00a08b +74949527ns 1330603 1c000e82 fff60613 addi x12, x12, -1 x12=000001ac x12:000001ad +74949547ns 1330604 1c000e84 00130313 addi x6, x6, 1 x6=1c00a08c x6:1c00a08b +74949566ns 1330605 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ac +74949645ns 1330609 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a08c PA:1c00a08c +74949665ns 1330610 1c000e82 fff60613 addi x12, x12, -1 x12=000001ab x12:000001ac +74949685ns 1330611 1c000e84 00130313 addi x6, x6, 1 x6=1c00a08d x6:1c00a08c +74949705ns 1330612 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ab +74949784ns 1330616 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a08d PA:1c00a08d +74949804ns 1330617 1c000e82 fff60613 addi x12, x12, -1 x12=000001aa x12:000001ab +74949824ns 1330618 1c000e84 00130313 addi x6, x6, 1 x6=1c00a08e x6:1c00a08d +74949843ns 1330619 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001aa +74949923ns 1330623 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a08e PA:1c00a08e +74949942ns 1330624 1c000e82 fff60613 addi x12, x12, -1 x12=000001a9 x12:000001aa +74949962ns 1330625 1c000e84 00130313 addi x6, x6, 1 x6=1c00a08f x6:1c00a08e +74949982ns 1330626 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001a9 +74950061ns 1330630 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a08f PA:1c00a08f +74950081ns 1330631 1c000e82 fff60613 addi x12, x12, -1 x12=000001a8 x12:000001a9 +74950101ns 1330632 1c000e84 00130313 addi x6, x6, 1 x6=1c00a090 x6:1c00a08f +74950120ns 1330633 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001a8 +74950200ns 1330637 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a090 PA:1c00a090 +74950219ns 1330638 1c000e82 fff60613 addi x12, x12, -1 x12=000001a7 x12:000001a8 +74950239ns 1330639 1c000e84 00130313 addi x6, x6, 1 x6=1c00a091 x6:1c00a090 +74950259ns 1330640 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001a7 +74950338ns 1330644 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a091 PA:1c00a091 +74950358ns 1330645 1c000e82 fff60613 addi x12, x12, -1 x12=000001a6 x12:000001a7 +74950378ns 1330646 1c000e84 00130313 addi x6, x6, 1 x6=1c00a092 x6:1c00a091 +74950398ns 1330647 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001a6 +74950477ns 1330651 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a092 PA:1c00a092 +74950497ns 1330652 1c000e82 fff60613 addi x12, x12, -1 x12=000001a5 x12:000001a6 +74950516ns 1330653 1c000e84 00130313 addi x6, x6, 1 x6=1c00a093 x6:1c00a092 +74950536ns 1330654 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001a5 +74950615ns 1330658 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a093 PA:1c00a093 +74950635ns 1330659 1c000e82 fff60613 addi x12, x12, -1 x12=000001a4 x12:000001a5 +74950655ns 1330660 1c000e84 00130313 addi x6, x6, 1 x6=1c00a094 x6:1c00a093 +74950675ns 1330661 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001a4 +74950754ns 1330665 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a094 PA:1c00a094 +74950774ns 1330666 1c000e82 fff60613 addi x12, x12, -1 x12=000001a3 x12:000001a4 +74950793ns 1330667 1c000e84 00130313 addi x6, x6, 1 x6=1c00a095 x6:1c00a094 +74950813ns 1330668 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001a3 +74950892ns 1330672 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a095 PA:1c00a095 +74950912ns 1330673 1c000e82 fff60613 addi x12, x12, -1 x12=000001a2 x12:000001a3 +74950932ns 1330674 1c000e84 00130313 addi x6, x6, 1 x6=1c00a096 x6:1c00a095 +74950952ns 1330675 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001a2 +74951031ns 1330679 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a096 PA:1c00a096 +74951051ns 1330680 1c000e82 fff60613 addi x12, x12, -1 x12=000001a1 x12:000001a2 +74951071ns 1330681 1c000e84 00130313 addi x6, x6, 1 x6=1c00a097 x6:1c00a096 +74951090ns 1330682 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001a1 +74951169ns 1330686 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a097 PA:1c00a097 +74951189ns 1330687 1c000e82 fff60613 addi x12, x12, -1 x12=000001a0 x12:000001a1 +74951209ns 1330688 1c000e84 00130313 addi x6, x6, 1 x6=1c00a098 x6:1c00a097 +74951229ns 1330689 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001a0 +74951308ns 1330693 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a098 PA:1c00a098 +74951328ns 1330694 1c000e82 fff60613 addi x12, x12, -1 x12=0000019f x12:000001a0 +74951348ns 1330695 1c000e84 00130313 addi x6, x6, 1 x6=1c00a099 x6:1c00a098 +74951367ns 1330696 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000019f +74951447ns 1330700 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a099 PA:1c00a099 +74951466ns 1330701 1c000e82 fff60613 addi x12, x12, -1 x12=0000019e x12:0000019f +74951486ns 1330702 1c000e84 00130313 addi x6, x6, 1 x6=1c00a09a x6:1c00a099 +74951506ns 1330703 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000019e +74951585ns 1330707 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a09a PA:1c00a09a +74951605ns 1330708 1c000e82 fff60613 addi x12, x12, -1 x12=0000019d x12:0000019e +74951625ns 1330709 1c000e84 00130313 addi x6, x6, 1 x6=1c00a09b x6:1c00a09a +74951644ns 1330710 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000019d +74951724ns 1330714 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a09b PA:1c00a09b +74951743ns 1330715 1c000e82 fff60613 addi x12, x12, -1 x12=0000019c x12:0000019d +74951763ns 1330716 1c000e84 00130313 addi x6, x6, 1 x6=1c00a09c x6:1c00a09b +74951783ns 1330717 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000019c +74951862ns 1330721 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a09c PA:1c00a09c +74951882ns 1330722 1c000e82 fff60613 addi x12, x12, -1 x12=0000019b x12:0000019c +74951902ns 1330723 1c000e84 00130313 addi x6, x6, 1 x6=1c00a09d x6:1c00a09c +74951922ns 1330724 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000019b +74952001ns 1330728 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a09d PA:1c00a09d +74952021ns 1330729 1c000e82 fff60613 addi x12, x12, -1 x12=0000019a x12:0000019b +74952040ns 1330730 1c000e84 00130313 addi x6, x6, 1 x6=1c00a09e x6:1c00a09d +74952060ns 1330731 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000019a +74952139ns 1330735 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a09e PA:1c00a09e +74952159ns 1330736 1c000e82 fff60613 addi x12, x12, -1 x12=00000199 x12:0000019a +74952179ns 1330737 1c000e84 00130313 addi x6, x6, 1 x6=1c00a09f x6:1c00a09e +74952199ns 1330738 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000199 +74952278ns 1330742 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a09f PA:1c00a09f +74952298ns 1330743 1c000e82 fff60613 addi x12, x12, -1 x12=00000198 x12:00000199 +74952317ns 1330744 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0a0 x6:1c00a09f +74952337ns 1330745 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000198 +74952416ns 1330749 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0a0 PA:1c00a0a0 +74952436ns 1330750 1c000e82 fff60613 addi x12, x12, -1 x12=00000197 x12:00000198 +74952456ns 1330751 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0a1 x6:1c00a0a0 +74952476ns 1330752 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000197 +74952555ns 1330756 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0a1 PA:1c00a0a1 +74952575ns 1330757 1c000e82 fff60613 addi x12, x12, -1 x12=00000196 x12:00000197 +74952594ns 1330758 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0a2 x6:1c00a0a1 +74952614ns 1330759 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000196 +74952693ns 1330763 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0a2 PA:1c00a0a2 +74952713ns 1330764 1c000e82 fff60613 addi x12, x12, -1 x12=00000195 x12:00000196 +74952733ns 1330765 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0a3 x6:1c00a0a2 +74952753ns 1330766 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000195 +74952832ns 1330770 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0a3 PA:1c00a0a3 +74952852ns 1330771 1c000e82 fff60613 addi x12, x12, -1 x12=00000194 x12:00000195 +74952872ns 1330772 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0a4 x6:1c00a0a3 +74952891ns 1330773 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000194 +74952971ns 1330777 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0a4 PA:1c00a0a4 +74952990ns 1330778 1c000e82 fff60613 addi x12, x12, -1 x12=00000193 x12:00000194 +74953010ns 1330779 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0a5 x6:1c00a0a4 +74953030ns 1330780 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000193 +74953109ns 1330784 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0a5 PA:1c00a0a5 +74953129ns 1330785 1c000e82 fff60613 addi x12, x12, -1 x12=00000192 x12:00000193 +74953149ns 1330786 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0a6 x6:1c00a0a5 +74953168ns 1330787 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000192 +74953248ns 1330791 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0a6 PA:1c00a0a6 +74953267ns 1330792 1c000e82 fff60613 addi x12, x12, -1 x12=00000191 x12:00000192 +74953287ns 1330793 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0a7 x6:1c00a0a6 +74953307ns 1330794 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000191 +74953386ns 1330798 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0a7 PA:1c00a0a7 +74953406ns 1330799 1c000e82 fff60613 addi x12, x12, -1 x12=00000190 x12:00000191 +74953426ns 1330800 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0a8 x6:1c00a0a7 +74953446ns 1330801 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000190 +74953525ns 1330805 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0a8 PA:1c00a0a8 +74953545ns 1330806 1c000e82 fff60613 addi x12, x12, -1 x12=0000018f x12:00000190 +74953564ns 1330807 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0a9 x6:1c00a0a8 +74953584ns 1330808 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000018f +74953663ns 1330812 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0a9 PA:1c00a0a9 +74953683ns 1330813 1c000e82 fff60613 addi x12, x12, -1 x12=0000018e x12:0000018f +74953703ns 1330814 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0aa x6:1c00a0a9 +74953723ns 1330815 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000018e +74953802ns 1330819 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0aa PA:1c00a0aa +74953822ns 1330820 1c000e82 fff60613 addi x12, x12, -1 x12=0000018d x12:0000018e +74953841ns 1330821 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0ab x6:1c00a0aa +74953861ns 1330822 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000018d +74953940ns 1330826 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0ab PA:1c00a0ab +74953960ns 1330827 1c000e82 fff60613 addi x12, x12, -1 x12=0000018c x12:0000018d +74953980ns 1330828 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0ac x6:1c00a0ab +74954000ns 1330829 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000018c +74954079ns 1330833 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0ac PA:1c00a0ac +74954099ns 1330834 1c000e82 fff60613 addi x12, x12, -1 x12=0000018b x12:0000018c +74954118ns 1330835 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0ad x6:1c00a0ac +74954138ns 1330836 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000018b +74954217ns 1330840 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0ad PA:1c00a0ad +74954237ns 1330841 1c000e82 fff60613 addi x12, x12, -1 x12=0000018a x12:0000018b +74954257ns 1330842 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0ae x6:1c00a0ad +74954277ns 1330843 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000018a +74954356ns 1330847 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0ae PA:1c00a0ae +74954376ns 1330848 1c000e82 fff60613 addi x12, x12, -1 x12=00000189 x12:0000018a +74954396ns 1330849 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0af x6:1c00a0ae +74954415ns 1330850 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000189 +74954495ns 1330854 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0af PA:1c00a0af +74954514ns 1330855 1c000e82 fff60613 addi x12, x12, -1 x12=00000188 x12:00000189 +74954534ns 1330856 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0b0 x6:1c00a0af +74954554ns 1330857 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000188 +74954633ns 1330861 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0b0 PA:1c00a0b0 +74954653ns 1330862 1c000e82 fff60613 addi x12, x12, -1 x12=00000187 x12:00000188 +74954673ns 1330863 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0b1 x6:1c00a0b0 +74954692ns 1330864 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000187 +74954772ns 1330868 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0b1 PA:1c00a0b1 +74954791ns 1330869 1c000e82 fff60613 addi x12, x12, -1 x12=00000186 x12:00000187 +74954811ns 1330870 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0b2 x6:1c00a0b1 +74954831ns 1330871 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000186 +74954910ns 1330875 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0b2 PA:1c00a0b2 +74954930ns 1330876 1c000e82 fff60613 addi x12, x12, -1 x12=00000185 x12:00000186 +74954950ns 1330877 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0b3 x6:1c00a0b2 +74954970ns 1330878 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000185 +74955049ns 1330882 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0b3 PA:1c00a0b3 +74955068ns 1330883 1c000e82 fff60613 addi x12, x12, -1 x12=00000184 x12:00000185 +74955088ns 1330884 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0b4 x6:1c00a0b3 +74955108ns 1330885 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000184 +74955187ns 1330889 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0b4 PA:1c00a0b4 +74955207ns 1330890 1c000e82 fff60613 addi x12, x12, -1 x12=00000183 x12:00000184 +74955227ns 1330891 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0b5 x6:1c00a0b4 +74955247ns 1330892 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000183 +74955326ns 1330896 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0b5 PA:1c00a0b5 +74955346ns 1330897 1c000e82 fff60613 addi x12, x12, -1 x12=00000182 x12:00000183 +74955365ns 1330898 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0b6 x6:1c00a0b5 +74955385ns 1330899 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000182 +74955464ns 1330903 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0b6 PA:1c00a0b6 +74955484ns 1330904 1c000e82 fff60613 addi x12, x12, -1 x12=00000181 x12:00000182 +74955504ns 1330905 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0b7 x6:1c00a0b6 +74955524ns 1330906 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000181 +74955603ns 1330910 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0b7 PA:1c00a0b7 +74955623ns 1330911 1c000e82 fff60613 addi x12, x12, -1 x12=00000180 x12:00000181 +74955642ns 1330912 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0b8 x6:1c00a0b7 +74955662ns 1330913 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000180 +74955741ns 1330917 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0b8 PA:1c00a0b8 +74955761ns 1330918 1c000e82 fff60613 addi x12, x12, -1 x12=0000017f x12:00000180 +74955781ns 1330919 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0b9 x6:1c00a0b8 +74955801ns 1330920 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000017f +74955880ns 1330924 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0b9 PA:1c00a0b9 +74955900ns 1330925 1c000e82 fff60613 addi x12, x12, -1 x12=0000017e x12:0000017f +74955920ns 1330926 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0ba x6:1c00a0b9 +74955939ns 1330927 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000017e +74956019ns 1330931 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0ba PA:1c00a0ba +74956038ns 1330932 1c000e82 fff60613 addi x12, x12, -1 x12=0000017d x12:0000017e +74956058ns 1330933 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0bb x6:1c00a0ba +74956078ns 1330934 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000017d +74956157ns 1330938 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0bb PA:1c00a0bb +74956177ns 1330939 1c000e82 fff60613 addi x12, x12, -1 x12=0000017c x12:0000017d +74956197ns 1330940 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0bc x6:1c00a0bb +74956216ns 1330941 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000017c +74956296ns 1330945 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0bc PA:1c00a0bc +74956315ns 1330946 1c000e82 fff60613 addi x12, x12, -1 x12=0000017b x12:0000017c +74956335ns 1330947 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0bd x6:1c00a0bc +74956355ns 1330948 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000017b +74956434ns 1330952 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0bd PA:1c00a0bd +74956454ns 1330953 1c000e82 fff60613 addi x12, x12, -1 x12=0000017a x12:0000017b +74956474ns 1330954 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0be x6:1c00a0bd +74956494ns 1330955 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000017a +74956573ns 1330959 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0be PA:1c00a0be +74956592ns 1330960 1c000e82 fff60613 addi x12, x12, -1 x12=00000179 x12:0000017a +74956612ns 1330961 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0bf x6:1c00a0be +74956632ns 1330962 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000179 +74956711ns 1330966 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0bf PA:1c00a0bf +74956731ns 1330967 1c000e82 fff60613 addi x12, x12, -1 x12=00000178 x12:00000179 +74956751ns 1330968 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0c0 x6:1c00a0bf +74956771ns 1330969 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000178 +74956850ns 1330973 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0c0 PA:1c00a0c0 +74956870ns 1330974 1c000e82 fff60613 addi x12, x12, -1 x12=00000177 x12:00000178 +74956889ns 1330975 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0c1 x6:1c00a0c0 +74956909ns 1330976 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000177 +74956988ns 1330980 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0c1 PA:1c00a0c1 +74957008ns 1330981 1c000e82 fff60613 addi x12, x12, -1 x12=00000176 x12:00000177 +74957028ns 1330982 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0c2 x6:1c00a0c1 +74957048ns 1330983 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000176 +74957127ns 1330987 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0c2 PA:1c00a0c2 +74957147ns 1330988 1c000e82 fff60613 addi x12, x12, -1 x12=00000175 x12:00000176 +74957166ns 1330989 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0c3 x6:1c00a0c2 +74957186ns 1330990 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000175 +74957265ns 1330994 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0c3 PA:1c00a0c3 +74957285ns 1330995 1c000e82 fff60613 addi x12, x12, -1 x12=00000174 x12:00000175 +74957305ns 1330996 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0c4 x6:1c00a0c3 +74957325ns 1330997 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000174 +74957404ns 1331001 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0c4 PA:1c00a0c4 +74957424ns 1331002 1c000e82 fff60613 addi x12, x12, -1 x12=00000173 x12:00000174 +74957444ns 1331003 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0c5 x6:1c00a0c4 +74957463ns 1331004 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000173 +74957542ns 1331008 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0c5 PA:1c00a0c5 +74957562ns 1331009 1c000e82 fff60613 addi x12, x12, -1 x12=00000172 x12:00000173 +74957582ns 1331010 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0c6 x6:1c00a0c5 +74957602ns 1331011 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000172 +74957681ns 1331015 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0c6 PA:1c00a0c6 +74957701ns 1331016 1c000e82 fff60613 addi x12, x12, -1 x12=00000171 x12:00000172 +74957721ns 1331017 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0c7 x6:1c00a0c6 +74957740ns 1331018 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000171 +74957820ns 1331022 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0c7 PA:1c00a0c7 +74957839ns 1331023 1c000e82 fff60613 addi x12, x12, -1 x12=00000170 x12:00000171 +74957859ns 1331024 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0c8 x6:1c00a0c7 +74957879ns 1331025 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000170 +74957958ns 1331029 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0c8 PA:1c00a0c8 +74957978ns 1331030 1c000e82 fff60613 addi x12, x12, -1 x12=0000016f x12:00000170 +74957998ns 1331031 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0c9 x6:1c00a0c8 +74958017ns 1331032 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000016f +74958097ns 1331036 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0c9 PA:1c00a0c9 +74958116ns 1331037 1c000e82 fff60613 addi x12, x12, -1 x12=0000016e x12:0000016f +74958136ns 1331038 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0ca x6:1c00a0c9 +74958156ns 1331039 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000016e +74958235ns 1331043 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0ca PA:1c00a0ca +74958255ns 1331044 1c000e82 fff60613 addi x12, x12, -1 x12=0000016d x12:0000016e +74958275ns 1331045 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0cb x6:1c00a0ca +74958295ns 1331046 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000016d +74958374ns 1331050 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0cb PA:1c00a0cb +74958394ns 1331051 1c000e82 fff60613 addi x12, x12, -1 x12=0000016c x12:0000016d +74958413ns 1331052 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0cc x6:1c00a0cb +74958433ns 1331053 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000016c +74958512ns 1331057 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0cc PA:1c00a0cc +74958532ns 1331058 1c000e82 fff60613 addi x12, x12, -1 x12=0000016b x12:0000016c +74958552ns 1331059 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0cd x6:1c00a0cc +74958572ns 1331060 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000016b +74958651ns 1331064 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0cd PA:1c00a0cd +74958671ns 1331065 1c000e82 fff60613 addi x12, x12, -1 x12=0000016a x12:0000016b +74958690ns 1331066 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0ce x6:1c00a0cd +74958710ns 1331067 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000016a +74958789ns 1331071 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0ce PA:1c00a0ce +74958809ns 1331072 1c000e82 fff60613 addi x12, x12, -1 x12=00000169 x12:0000016a +74958829ns 1331073 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0cf x6:1c00a0ce +74958849ns 1331074 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000169 +74958928ns 1331078 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0cf PA:1c00a0cf +74958948ns 1331079 1c000e82 fff60613 addi x12, x12, -1 x12=00000168 x12:00000169 +74958968ns 1331080 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0d0 x6:1c00a0cf +74958987ns 1331081 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000168 +74959066ns 1331085 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0d0 PA:1c00a0d0 +74959086ns 1331086 1c000e82 fff60613 addi x12, x12, -1 x12=00000167 x12:00000168 +74959106ns 1331087 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0d1 x6:1c00a0d0 +74959126ns 1331088 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000167 +74959205ns 1331092 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0d1 PA:1c00a0d1 +74959225ns 1331093 1c000e82 fff60613 addi x12, x12, -1 x12=00000166 x12:00000167 +74959245ns 1331094 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0d2 x6:1c00a0d1 +74959264ns 1331095 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000166 +74959344ns 1331099 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0d2 PA:1c00a0d2 +74959363ns 1331100 1c000e82 fff60613 addi x12, x12, -1 x12=00000165 x12:00000166 +74959383ns 1331101 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0d3 x6:1c00a0d2 +74959403ns 1331102 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000165 +74959482ns 1331106 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0d3 PA:1c00a0d3 +74959502ns 1331107 1c000e82 fff60613 addi x12, x12, -1 x12=00000164 x12:00000165 +74959522ns 1331108 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0d4 x6:1c00a0d3 +74959541ns 1331109 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000164 +74959621ns 1331113 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0d4 PA:1c00a0d4 +74959640ns 1331114 1c000e82 fff60613 addi x12, x12, -1 x12=00000163 x12:00000164 +74959660ns 1331115 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0d5 x6:1c00a0d4 +74959680ns 1331116 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000163 +74959759ns 1331120 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0d5 PA:1c00a0d5 +74959779ns 1331121 1c000e82 fff60613 addi x12, x12, -1 x12=00000162 x12:00000163 +74959799ns 1331122 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0d6 x6:1c00a0d5 +74959819ns 1331123 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000162 +74959898ns 1331127 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0d6 PA:1c00a0d6 +74959918ns 1331128 1c000e82 fff60613 addi x12, x12, -1 x12=00000161 x12:00000162 +74959937ns 1331129 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0d7 x6:1c00a0d6 +74959957ns 1331130 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000161 +74960036ns 1331134 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0d7 PA:1c00a0d7 +74960056ns 1331135 1c000e82 fff60613 addi x12, x12, -1 x12=00000160 x12:00000161 +74960076ns 1331136 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0d8 x6:1c00a0d7 +74960096ns 1331137 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000160 +74960175ns 1331141 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0d8 PA:1c00a0d8 +74960195ns 1331142 1c000e82 fff60613 addi x12, x12, -1 x12=0000015f x12:00000160 +74960214ns 1331143 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0d9 x6:1c00a0d8 +74960234ns 1331144 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000015f +74960313ns 1331148 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0d9 PA:1c00a0d9 +74960333ns 1331149 1c000e82 fff60613 addi x12, x12, -1 x12=0000015e x12:0000015f +74960353ns 1331150 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0da x6:1c00a0d9 +74960373ns 1331151 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000015e +74960452ns 1331155 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0da PA:1c00a0da +74960472ns 1331156 1c000e82 fff60613 addi x12, x12, -1 x12=0000015d x12:0000015e +74960491ns 1331157 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0db x6:1c00a0da +74960511ns 1331158 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000015d +74960590ns 1331162 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0db PA:1c00a0db +74960610ns 1331163 1c000e82 fff60613 addi x12, x12, -1 x12=0000015c x12:0000015d +74960630ns 1331164 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0dc x6:1c00a0db +74960650ns 1331165 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000015c +74960729ns 1331169 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0dc PA:1c00a0dc +74960749ns 1331170 1c000e82 fff60613 addi x12, x12, -1 x12=0000015b x12:0000015c +74960769ns 1331171 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0dd x6:1c00a0dc +74960788ns 1331172 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000015b +74960868ns 1331176 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0dd PA:1c00a0dd +74960887ns 1331177 1c000e82 fff60613 addi x12, x12, -1 x12=0000015a x12:0000015b +74960907ns 1331178 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0de x6:1c00a0dd +74960927ns 1331179 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000015a +74961006ns 1331183 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0de PA:1c00a0de +74961026ns 1331184 1c000e82 fff60613 addi x12, x12, -1 x12=00000159 x12:0000015a +74961046ns 1331185 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0df x6:1c00a0de +74961065ns 1331186 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000159 +74961145ns 1331190 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0df PA:1c00a0df +74961164ns 1331191 1c000e82 fff60613 addi x12, x12, -1 x12=00000158 x12:00000159 +74961184ns 1331192 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0e0 x6:1c00a0df +74961204ns 1331193 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000158 +74961283ns 1331197 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0e0 PA:1c00a0e0 +74961303ns 1331198 1c000e82 fff60613 addi x12, x12, -1 x12=00000157 x12:00000158 +74961323ns 1331199 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0e1 x6:1c00a0e0 +74961343ns 1331200 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000157 +74961422ns 1331204 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0e1 PA:1c00a0e1 +74961442ns 1331205 1c000e82 fff60613 addi x12, x12, -1 x12=00000156 x12:00000157 +74961461ns 1331206 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0e2 x6:1c00a0e1 +74961481ns 1331207 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000156 +74961560ns 1331211 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0e2 PA:1c00a0e2 +74961580ns 1331212 1c000e82 fff60613 addi x12, x12, -1 x12=00000155 x12:00000156 +74961600ns 1331213 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0e3 x6:1c00a0e2 +74961620ns 1331214 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000155 +74961699ns 1331218 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0e3 PA:1c00a0e3 +74961719ns 1331219 1c000e82 fff60613 addi x12, x12, -1 x12=00000154 x12:00000155 +74961738ns 1331220 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0e4 x6:1c00a0e3 +74961758ns 1331221 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000154 +74961837ns 1331225 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0e4 PA:1c00a0e4 +74961857ns 1331226 1c000e82 fff60613 addi x12, x12, -1 x12=00000153 x12:00000154 +74961877ns 1331227 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0e5 x6:1c00a0e4 +74961897ns 1331228 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000153 +74961976ns 1331232 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0e5 PA:1c00a0e5 +74961996ns 1331233 1c000e82 fff60613 addi x12, x12, -1 x12=00000152 x12:00000153 +74962015ns 1331234 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0e6 x6:1c00a0e5 +74962035ns 1331235 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000152 +74962114ns 1331239 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0e6 PA:1c00a0e6 +74962134ns 1331240 1c000e82 fff60613 addi x12, x12, -1 x12=00000151 x12:00000152 +74962154ns 1331241 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0e7 x6:1c00a0e6 +74962174ns 1331242 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000151 +74962253ns 1331246 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0e7 PA:1c00a0e7 +74962273ns 1331247 1c000e82 fff60613 addi x12, x12, -1 x12=00000150 x12:00000151 +74962293ns 1331248 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0e8 x6:1c00a0e7 +74962312ns 1331249 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000150 +74962392ns 1331253 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0e8 PA:1c00a0e8 +74962411ns 1331254 1c000e82 fff60613 addi x12, x12, -1 x12=0000014f x12:00000150 +74962431ns 1331255 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0e9 x6:1c00a0e8 +74962451ns 1331256 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000014f +74962530ns 1331260 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0e9 PA:1c00a0e9 +74962550ns 1331261 1c000e82 fff60613 addi x12, x12, -1 x12=0000014e x12:0000014f +74962570ns 1331262 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0ea x6:1c00a0e9 +74962589ns 1331263 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000014e +74962669ns 1331267 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0ea PA:1c00a0ea +74962688ns 1331268 1c000e82 fff60613 addi x12, x12, -1 x12=0000014d x12:0000014e +74962708ns 1331269 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0eb x6:1c00a0ea +74962728ns 1331270 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000014d +74962807ns 1331274 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0eb PA:1c00a0eb +74962827ns 1331275 1c000e82 fff60613 addi x12, x12, -1 x12=0000014c x12:0000014d +74962847ns 1331276 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0ec x6:1c00a0eb +74962867ns 1331277 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000014c +74962946ns 1331281 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0ec PA:1c00a0ec +74962965ns 1331282 1c000e82 fff60613 addi x12, x12, -1 x12=0000014b x12:0000014c +74962985ns 1331283 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0ed x6:1c00a0ec +74963005ns 1331284 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000014b +74963084ns 1331288 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0ed PA:1c00a0ed +74963104ns 1331289 1c000e82 fff60613 addi x12, x12, -1 x12=0000014a x12:0000014b +74963124ns 1331290 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0ee x6:1c00a0ed +74963144ns 1331291 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000014a +74963223ns 1331295 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0ee PA:1c00a0ee +74963243ns 1331296 1c000e82 fff60613 addi x12, x12, -1 x12=00000149 x12:0000014a +74963262ns 1331297 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0ef x6:1c00a0ee +74963282ns 1331298 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000149 +74963361ns 1331302 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0ef PA:1c00a0ef +74963381ns 1331303 1c000e82 fff60613 addi x12, x12, -1 x12=00000148 x12:00000149 +74963401ns 1331304 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0f0 x6:1c00a0ef +74963421ns 1331305 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000148 +74963500ns 1331309 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0f0 PA:1c00a0f0 +74963520ns 1331310 1c000e82 fff60613 addi x12, x12, -1 x12=00000147 x12:00000148 +74963539ns 1331311 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0f1 x6:1c00a0f0 +74963559ns 1331312 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000147 +74963638ns 1331316 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0f1 PA:1c00a0f1 +74963658ns 1331317 1c000e82 fff60613 addi x12, x12, -1 x12=00000146 x12:00000147 +74963678ns 1331318 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0f2 x6:1c00a0f1 +74963698ns 1331319 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000146 +74963777ns 1331323 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0f2 PA:1c00a0f2 +74963797ns 1331324 1c000e82 fff60613 addi x12, x12, -1 x12=00000145 x12:00000146 +74963817ns 1331325 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0f3 x6:1c00a0f2 +74963836ns 1331326 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000145 +74963916ns 1331330 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0f3 PA:1c00a0f3 +74963935ns 1331331 1c000e82 fff60613 addi x12, x12, -1 x12=00000144 x12:00000145 +74963955ns 1331332 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0f4 x6:1c00a0f3 +74963975ns 1331333 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000144 +74964054ns 1331337 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0f4 PA:1c00a0f4 +74964074ns 1331338 1c000e82 fff60613 addi x12, x12, -1 x12=00000143 x12:00000144 +74964094ns 1331339 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0f5 x6:1c00a0f4 +74964113ns 1331340 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000143 +74964193ns 1331344 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0f5 PA:1c00a0f5 +74964212ns 1331345 1c000e82 fff60613 addi x12, x12, -1 x12=00000142 x12:00000143 +74964232ns 1331346 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0f6 x6:1c00a0f5 +74964252ns 1331347 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000142 +74964331ns 1331351 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0f6 PA:1c00a0f6 +74964351ns 1331352 1c000e82 fff60613 addi x12, x12, -1 x12=00000141 x12:00000142 +74964371ns 1331353 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0f7 x6:1c00a0f6 +74964391ns 1331354 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000141 +74964470ns 1331358 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0f7 PA:1c00a0f7 +74964489ns 1331359 1c000e82 fff60613 addi x12, x12, -1 x12=00000140 x12:00000141 +74964509ns 1331360 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0f8 x6:1c00a0f7 +74964529ns 1331361 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000140 +74964608ns 1331365 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0f8 PA:1c00a0f8 +74964628ns 1331366 1c000e82 fff60613 addi x12, x12, -1 x12=0000013f x12:00000140 +74964648ns 1331367 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0f9 x6:1c00a0f8 +74964668ns 1331368 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000013f +74964747ns 1331372 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0f9 PA:1c00a0f9 +74964767ns 1331373 1c000e82 fff60613 addi x12, x12, -1 x12=0000013e x12:0000013f +74964786ns 1331374 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0fa x6:1c00a0f9 +74964806ns 1331375 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000013e +74964885ns 1331379 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0fa PA:1c00a0fa +74964905ns 1331380 1c000e82 fff60613 addi x12, x12, -1 x12=0000013d x12:0000013e +74964925ns 1331381 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0fb x6:1c00a0fa +74964945ns 1331382 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000013d +74965024ns 1331386 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0fb PA:1c00a0fb +74965044ns 1331387 1c000e82 fff60613 addi x12, x12, -1 x12=0000013c x12:0000013d +74965063ns 1331388 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0fc x6:1c00a0fb +74965083ns 1331389 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000013c +74965162ns 1331393 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0fc PA:1c00a0fc +74965182ns 1331394 1c000e82 fff60613 addi x12, x12, -1 x12=0000013b x12:0000013c +74965202ns 1331395 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0fd x6:1c00a0fc +74965222ns 1331396 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000013b +74965301ns 1331400 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0fd PA:1c00a0fd +74965321ns 1331401 1c000e82 fff60613 addi x12, x12, -1 x12=0000013a x12:0000013b +74965341ns 1331402 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0fe x6:1c00a0fd +74965360ns 1331403 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000013a +74965439ns 1331407 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0fe PA:1c00a0fe +74965459ns 1331408 1c000e82 fff60613 addi x12, x12, -1 x12=00000139 x12:0000013a +74965479ns 1331409 1c000e84 00130313 addi x6, x6, 1 x6=1c00a0ff x6:1c00a0fe +74965499ns 1331410 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000139 +74965578ns 1331414 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a0ff PA:1c00a0ff +74965598ns 1331415 1c000e82 fff60613 addi x12, x12, -1 x12=00000138 x12:00000139 +74965618ns 1331416 1c000e84 00130313 addi x6, x6, 1 x6=1c00a100 x6:1c00a0ff +74965637ns 1331417 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000138 +74965717ns 1331421 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a100 PA:1c00a100 +74965736ns 1331422 1c000e82 fff60613 addi x12, x12, -1 x12=00000137 x12:00000138 +74965756ns 1331423 1c000e84 00130313 addi x6, x6, 1 x6=1c00a101 x6:1c00a100 +74965776ns 1331424 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000137 +74965855ns 1331428 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a101 PA:1c00a101 +74965875ns 1331429 1c000e82 fff60613 addi x12, x12, -1 x12=00000136 x12:00000137 +74965895ns 1331430 1c000e84 00130313 addi x6, x6, 1 x6=1c00a102 x6:1c00a101 +74965915ns 1331431 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000136 +74965994ns 1331435 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a102 PA:1c00a102 +74966013ns 1331436 1c000e82 fff60613 addi x12, x12, -1 x12=00000135 x12:00000136 +74966033ns 1331437 1c000e84 00130313 addi x6, x6, 1 x6=1c00a103 x6:1c00a102 +74966053ns 1331438 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000135 +74966132ns 1331442 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a103 PA:1c00a103 +74966152ns 1331443 1c000e82 fff60613 addi x12, x12, -1 x12=00000134 x12:00000135 +74966172ns 1331444 1c000e84 00130313 addi x6, x6, 1 x6=1c00a104 x6:1c00a103 +74966192ns 1331445 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000134 +74966271ns 1331449 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a104 PA:1c00a104 +74966291ns 1331450 1c000e82 fff60613 addi x12, x12, -1 x12=00000133 x12:00000134 +74966310ns 1331451 1c000e84 00130313 addi x6, x6, 1 x6=1c00a105 x6:1c00a104 +74966330ns 1331452 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000133 +74966409ns 1331456 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a105 PA:1c00a105 +74966429ns 1331457 1c000e82 fff60613 addi x12, x12, -1 x12=00000132 x12:00000133 +74966449ns 1331458 1c000e84 00130313 addi x6, x6, 1 x6=1c00a106 x6:1c00a105 +74966469ns 1331459 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000132 +74966548ns 1331463 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a106 PA:1c00a106 +74966568ns 1331464 1c000e82 fff60613 addi x12, x12, -1 x12=00000131 x12:00000132 +74966587ns 1331465 1c000e84 00130313 addi x6, x6, 1 x6=1c00a107 x6:1c00a106 +74966607ns 1331466 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000131 +74966686ns 1331470 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a107 PA:1c00a107 +74966706ns 1331471 1c000e82 fff60613 addi x12, x12, -1 x12=00000130 x12:00000131 +74966726ns 1331472 1c000e84 00130313 addi x6, x6, 1 x6=1c00a108 x6:1c00a107 +74966746ns 1331473 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000130 +74966825ns 1331477 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a108 PA:1c00a108 +74966845ns 1331478 1c000e82 fff60613 addi x12, x12, -1 x12=0000012f x12:00000130 +74966865ns 1331479 1c000e84 00130313 addi x6, x6, 1 x6=1c00a109 x6:1c00a108 +74966884ns 1331480 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000012f +74966963ns 1331484 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a109 PA:1c00a109 +74966983ns 1331485 1c000e82 fff60613 addi x12, x12, -1 x12=0000012e x12:0000012f +74967003ns 1331486 1c000e84 00130313 addi x6, x6, 1 x6=1c00a10a x6:1c00a109 +74967023ns 1331487 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000012e +74967102ns 1331491 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a10a PA:1c00a10a +74967122ns 1331492 1c000e82 fff60613 addi x12, x12, -1 x12=0000012d x12:0000012e +74967142ns 1331493 1c000e84 00130313 addi x6, x6, 1 x6=1c00a10b x6:1c00a10a +74967161ns 1331494 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000012d +74967241ns 1331498 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a10b PA:1c00a10b +74967260ns 1331499 1c000e82 fff60613 addi x12, x12, -1 x12=0000012c x12:0000012d +74967280ns 1331500 1c000e84 00130313 addi x6, x6, 1 x6=1c00a10c x6:1c00a10b +74967300ns 1331501 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000012c +74967379ns 1331505 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a10c PA:1c00a10c +74967399ns 1331506 1c000e82 fff60613 addi x12, x12, -1 x12=0000012b x12:0000012c +74967419ns 1331507 1c000e84 00130313 addi x6, x6, 1 x6=1c00a10d x6:1c00a10c +74967438ns 1331508 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000012b +74967518ns 1331512 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a10d PA:1c00a10d +74967537ns 1331513 1c000e82 fff60613 addi x12, x12, -1 x12=0000012a x12:0000012b +74967557ns 1331514 1c000e84 00130313 addi x6, x6, 1 x6=1c00a10e x6:1c00a10d +74967577ns 1331515 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000012a +74967656ns 1331519 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a10e PA:1c00a10e +74967676ns 1331520 1c000e82 fff60613 addi x12, x12, -1 x12=00000129 x12:0000012a +74967696ns 1331521 1c000e84 00130313 addi x6, x6, 1 x6=1c00a10f x6:1c00a10e +74967716ns 1331522 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000129 +74967795ns 1331526 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a10f PA:1c00a10f +74967815ns 1331527 1c000e82 fff60613 addi x12, x12, -1 x12=00000128 x12:00000129 +74967834ns 1331528 1c000e84 00130313 addi x6, x6, 1 x6=1c00a110 x6:1c00a10f +74967854ns 1331529 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000128 +74967933ns 1331533 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a110 PA:1c00a110 +74967953ns 1331534 1c000e82 fff60613 addi x12, x12, -1 x12=00000127 x12:00000128 +74967973ns 1331535 1c000e84 00130313 addi x6, x6, 1 x6=1c00a111 x6:1c00a110 +74967993ns 1331536 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000127 +74968072ns 1331540 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a111 PA:1c00a111 +74968092ns 1331541 1c000e82 fff60613 addi x12, x12, -1 x12=00000126 x12:00000127 +74968111ns 1331542 1c000e84 00130313 addi x6, x6, 1 x6=1c00a112 x6:1c00a111 +74968131ns 1331543 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000126 +74968210ns 1331547 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a112 PA:1c00a112 +74968230ns 1331548 1c000e82 fff60613 addi x12, x12, -1 x12=00000125 x12:00000126 +74968250ns 1331549 1c000e84 00130313 addi x6, x6, 1 x6=1c00a113 x6:1c00a112 +74968270ns 1331550 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000125 +74968349ns 1331554 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a113 PA:1c00a113 +74968369ns 1331555 1c000e82 fff60613 addi x12, x12, -1 x12=00000124 x12:00000125 +74968389ns 1331556 1c000e84 00130313 addi x6, x6, 1 x6=1c00a114 x6:1c00a113 +74968408ns 1331557 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000124 +74968487ns 1331561 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a114 PA:1c00a114 +74968507ns 1331562 1c000e82 fff60613 addi x12, x12, -1 x12=00000123 x12:00000124 +74968527ns 1331563 1c000e84 00130313 addi x6, x6, 1 x6=1c00a115 x6:1c00a114 +74968547ns 1331564 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000123 +74968626ns 1331568 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a115 PA:1c00a115 +74968646ns 1331569 1c000e82 fff60613 addi x12, x12, -1 x12=00000122 x12:00000123 +74968666ns 1331570 1c000e84 00130313 addi x6, x6, 1 x6=1c00a116 x6:1c00a115 +74968685ns 1331571 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000122 +74968765ns 1331575 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a116 PA:1c00a116 +74968784ns 1331576 1c000e82 fff60613 addi x12, x12, -1 x12=00000121 x12:00000122 +74968804ns 1331577 1c000e84 00130313 addi x6, x6, 1 x6=1c00a117 x6:1c00a116 +74968824ns 1331578 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000121 +74968903ns 1331582 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a117 PA:1c00a117 +74968923ns 1331583 1c000e82 fff60613 addi x12, x12, -1 x12=00000120 x12:00000121 +74968943ns 1331584 1c000e84 00130313 addi x6, x6, 1 x6=1c00a118 x6:1c00a117 +74968962ns 1331585 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000120 +74969042ns 1331589 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a118 PA:1c00a118 +74969061ns 1331590 1c000e82 fff60613 addi x12, x12, -1 x12=0000011f x12:00000120 +74969081ns 1331591 1c000e84 00130313 addi x6, x6, 1 x6=1c00a119 x6:1c00a118 +74969101ns 1331592 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000011f +74969180ns 1331596 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a119 PA:1c00a119 +74969200ns 1331597 1c000e82 fff60613 addi x12, x12, -1 x12=0000011e x12:0000011f +74969220ns 1331598 1c000e84 00130313 addi x6, x6, 1 x6=1c00a11a x6:1c00a119 +74969240ns 1331599 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000011e +74969319ns 1331603 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a11a PA:1c00a11a +74969339ns 1331604 1c000e82 fff60613 addi x12, x12, -1 x12=0000011d x12:0000011e +74969358ns 1331605 1c000e84 00130313 addi x6, x6, 1 x6=1c00a11b x6:1c00a11a +74969378ns 1331606 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000011d +74969457ns 1331610 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a11b PA:1c00a11b +74969477ns 1331611 1c000e82 fff60613 addi x12, x12, -1 x12=0000011c x12:0000011d +74969497ns 1331612 1c000e84 00130313 addi x6, x6, 1 x6=1c00a11c x6:1c00a11b +74969517ns 1331613 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000011c +74969596ns 1331617 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a11c PA:1c00a11c +74969616ns 1331618 1c000e82 fff60613 addi x12, x12, -1 x12=0000011b x12:0000011c +74969635ns 1331619 1c000e84 00130313 addi x6, x6, 1 x6=1c00a11d x6:1c00a11c +74969655ns 1331620 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000011b +74969734ns 1331624 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a11d PA:1c00a11d +74969754ns 1331625 1c000e82 fff60613 addi x12, x12, -1 x12=0000011a x12:0000011b +74969774ns 1331626 1c000e84 00130313 addi x6, x6, 1 x6=1c00a11e x6:1c00a11d +74969794ns 1331627 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000011a +74969873ns 1331631 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a11e PA:1c00a11e +74969893ns 1331632 1c000e82 fff60613 addi x12, x12, -1 x12=00000119 x12:0000011a +74969912ns 1331633 1c000e84 00130313 addi x6, x6, 1 x6=1c00a11f x6:1c00a11e +74969932ns 1331634 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000119 +74970011ns 1331638 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a11f PA:1c00a11f +74970031ns 1331639 1c000e82 fff60613 addi x12, x12, -1 x12=00000118 x12:00000119 +74970051ns 1331640 1c000e84 00130313 addi x6, x6, 1 x6=1c00a120 x6:1c00a11f +74970071ns 1331641 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000118 +74970150ns 1331645 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a120 PA:1c00a120 +74970170ns 1331646 1c000e82 fff60613 addi x12, x12, -1 x12=00000117 x12:00000118 +74970190ns 1331647 1c000e84 00130313 addi x6, x6, 1 x6=1c00a121 x6:1c00a120 +74970209ns 1331648 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000117 +74970289ns 1331652 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a121 PA:1c00a121 +74970308ns 1331653 1c000e82 fff60613 addi x12, x12, -1 x12=00000116 x12:00000117 +74970328ns 1331654 1c000e84 00130313 addi x6, x6, 1 x6=1c00a122 x6:1c00a121 +74970348ns 1331655 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000116 +74970427ns 1331659 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a122 PA:1c00a122 +74970447ns 1331660 1c000e82 fff60613 addi x12, x12, -1 x12=00000115 x12:00000116 +74970467ns 1331661 1c000e84 00130313 addi x6, x6, 1 x6=1c00a123 x6:1c00a122 +74970486ns 1331662 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000115 +74970566ns 1331666 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a123 PA:1c00a123 +74970585ns 1331667 1c000e82 fff60613 addi x12, x12, -1 x12=00000114 x12:00000115 +74970605ns 1331668 1c000e84 00130313 addi x6, x6, 1 x6=1c00a124 x6:1c00a123 +74970625ns 1331669 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000114 +74970704ns 1331673 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a124 PA:1c00a124 +74970724ns 1331674 1c000e82 fff60613 addi x12, x12, -1 x12=00000113 x12:00000114 +74970744ns 1331675 1c000e84 00130313 addi x6, x6, 1 x6=1c00a125 x6:1c00a124 +74970764ns 1331676 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000113 +74970843ns 1331680 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a125 PA:1c00a125 +74970863ns 1331681 1c000e82 fff60613 addi x12, x12, -1 x12=00000112 x12:00000113 +74970882ns 1331682 1c000e84 00130313 addi x6, x6, 1 x6=1c00a126 x6:1c00a125 +74970902ns 1331683 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000112 +74970981ns 1331687 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a126 PA:1c00a126 +74971001ns 1331688 1c000e82 fff60613 addi x12, x12, -1 x12=00000111 x12:00000112 +74971021ns 1331689 1c000e84 00130313 addi x6, x6, 1 x6=1c00a127 x6:1c00a126 +74971041ns 1331690 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000111 +74971120ns 1331694 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a127 PA:1c00a127 +74971140ns 1331695 1c000e82 fff60613 addi x12, x12, -1 x12=00000110 x12:00000111 +74971159ns 1331696 1c000e84 00130313 addi x6, x6, 1 x6=1c00a128 x6:1c00a127 +74971179ns 1331697 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000110 +74971258ns 1331701 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a128 PA:1c00a128 +74971278ns 1331702 1c000e82 fff60613 addi x12, x12, -1 x12=0000010f x12:00000110 +74971298ns 1331703 1c000e84 00130313 addi x6, x6, 1 x6=1c00a129 x6:1c00a128 +74971318ns 1331704 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000010f +74971397ns 1331708 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a129 PA:1c00a129 +74971417ns 1331709 1c000e82 fff60613 addi x12, x12, -1 x12=0000010e x12:0000010f +74971436ns 1331710 1c000e84 00130313 addi x6, x6, 1 x6=1c00a12a x6:1c00a129 +74971456ns 1331711 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000010e +74971535ns 1331715 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a12a PA:1c00a12a +74971555ns 1331716 1c000e82 fff60613 addi x12, x12, -1 x12=0000010d x12:0000010e +74971575ns 1331717 1c000e84 00130313 addi x6, x6, 1 x6=1c00a12b x6:1c00a12a +74971595ns 1331718 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000010d +74971674ns 1331722 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a12b PA:1c00a12b +74971694ns 1331723 1c000e82 fff60613 addi x12, x12, -1 x12=0000010c x12:0000010d +74971714ns 1331724 1c000e84 00130313 addi x6, x6, 1 x6=1c00a12c x6:1c00a12b +74971733ns 1331725 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000010c +74971813ns 1331729 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a12c PA:1c00a12c +74971832ns 1331730 1c000e82 fff60613 addi x12, x12, -1 x12=0000010b x12:0000010c +74971852ns 1331731 1c000e84 00130313 addi x6, x6, 1 x6=1c00a12d x6:1c00a12c +74971872ns 1331732 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000010b +74971951ns 1331736 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a12d PA:1c00a12d +74971971ns 1331737 1c000e82 fff60613 addi x12, x12, -1 x12=0000010a x12:0000010b +74971991ns 1331738 1c000e84 00130313 addi x6, x6, 1 x6=1c00a12e x6:1c00a12d +74972010ns 1331739 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000010a +74972090ns 1331743 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a12e PA:1c00a12e +74972109ns 1331744 1c000e82 fff60613 addi x12, x12, -1 x12=00000109 x12:0000010a +74972129ns 1331745 1c000e84 00130313 addi x6, x6, 1 x6=1c00a12f x6:1c00a12e +74972149ns 1331746 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000109 +74972228ns 1331750 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a12f PA:1c00a12f +74972248ns 1331751 1c000e82 fff60613 addi x12, x12, -1 x12=00000108 x12:00000109 +74972268ns 1331752 1c000e84 00130313 addi x6, x6, 1 x6=1c00a130 x6:1c00a12f +74972288ns 1331753 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000108 +74972367ns 1331757 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a130 PA:1c00a130 +74972386ns 1331758 1c000e82 fff60613 addi x12, x12, -1 x12=00000107 x12:00000108 +74972406ns 1331759 1c000e84 00130313 addi x6, x6, 1 x6=1c00a131 x6:1c00a130 +74972426ns 1331760 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000107 +74972505ns 1331764 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a131 PA:1c00a131 +74972525ns 1331765 1c000e82 fff60613 addi x12, x12, -1 x12=00000106 x12:00000107 +74972545ns 1331766 1c000e84 00130313 addi x6, x6, 1 x6=1c00a132 x6:1c00a131 +74972565ns 1331767 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000106 +74972644ns 1331771 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a132 PA:1c00a132 +74972664ns 1331772 1c000e82 fff60613 addi x12, x12, -1 x12=00000105 x12:00000106 +74972683ns 1331773 1c000e84 00130313 addi x6, x6, 1 x6=1c00a133 x6:1c00a132 +74972703ns 1331774 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000105 +74972782ns 1331778 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a133 PA:1c00a133 +74972802ns 1331779 1c000e82 fff60613 addi x12, x12, -1 x12=00000104 x12:00000105 +74972822ns 1331780 1c000e84 00130313 addi x6, x6, 1 x6=1c00a134 x6:1c00a133 +74972842ns 1331781 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000104 +74972921ns 1331785 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a134 PA:1c00a134 +74972941ns 1331786 1c000e82 fff60613 addi x12, x12, -1 x12=00000103 x12:00000104 +74972960ns 1331787 1c000e84 00130313 addi x6, x6, 1 x6=1c00a135 x6:1c00a134 +74972980ns 1331788 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000103 +74973059ns 1331792 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a135 PA:1c00a135 +74973079ns 1331793 1c000e82 fff60613 addi x12, x12, -1 x12=00000102 x12:00000103 +74973099ns 1331794 1c000e84 00130313 addi x6, x6, 1 x6=1c00a136 x6:1c00a135 +74973119ns 1331795 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000102 +74973198ns 1331799 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a136 PA:1c00a136 +74973218ns 1331800 1c000e82 fff60613 addi x12, x12, -1 x12=00000101 x12:00000102 +74973238ns 1331801 1c000e84 00130313 addi x6, x6, 1 x6=1c00a137 x6:1c00a136 +74973257ns 1331802 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000101 +74973337ns 1331806 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a137 PA:1c00a137 +74973356ns 1331807 1c000e82 fff60613 addi x12, x12, -1 x12=00000100 x12:00000101 +74973376ns 1331808 1c000e84 00130313 addi x6, x6, 1 x6=1c00a138 x6:1c00a137 +74973396ns 1331809 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000100 +74973475ns 1331813 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a138 PA:1c00a138 +74973495ns 1331814 1c000e82 fff60613 addi x12, x12, -1 x12=000000ff x12:00000100 +74973515ns 1331815 1c000e84 00130313 addi x6, x6, 1 x6=1c00a139 x6:1c00a138 +74973534ns 1331816 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ff +74973614ns 1331820 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a139 PA:1c00a139 +74973633ns 1331821 1c000e82 fff60613 addi x12, x12, -1 x12=000000fe x12:000000ff +74973653ns 1331822 1c000e84 00130313 addi x6, x6, 1 x6=1c00a13a x6:1c00a139 +74973673ns 1331823 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000fe +74973752ns 1331827 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a13a PA:1c00a13a +74973772ns 1331828 1c000e82 fff60613 addi x12, x12, -1 x12=000000fd x12:000000fe +74973792ns 1331829 1c000e84 00130313 addi x6, x6, 1 x6=1c00a13b x6:1c00a13a +74973812ns 1331830 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000fd +74973891ns 1331834 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a13b PA:1c00a13b +74973910ns 1331835 1c000e82 fff60613 addi x12, x12, -1 x12=000000fc x12:000000fd +74973930ns 1331836 1c000e84 00130313 addi x6, x6, 1 x6=1c00a13c x6:1c00a13b +74973950ns 1331837 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000fc +74974029ns 1331841 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a13c PA:1c00a13c +74974049ns 1331842 1c000e82 fff60613 addi x12, x12, -1 x12=000000fb x12:000000fc +74974069ns 1331843 1c000e84 00130313 addi x6, x6, 1 x6=1c00a13d x6:1c00a13c +74974089ns 1331844 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000fb +74974168ns 1331848 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a13d PA:1c00a13d +74974188ns 1331849 1c000e82 fff60613 addi x12, x12, -1 x12=000000fa x12:000000fb +74974207ns 1331850 1c000e84 00130313 addi x6, x6, 1 x6=1c00a13e x6:1c00a13d +74974227ns 1331851 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000fa +74974306ns 1331855 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a13e PA:1c00a13e +74974326ns 1331856 1c000e82 fff60613 addi x12, x12, -1 x12=000000f9 x12:000000fa +74974346ns 1331857 1c000e84 00130313 addi x6, x6, 1 x6=1c00a13f x6:1c00a13e +74974366ns 1331858 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f9 +74974445ns 1331862 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a13f PA:1c00a13f +74974465ns 1331863 1c000e82 fff60613 addi x12, x12, -1 x12=000000f8 x12:000000f9 +74974484ns 1331864 1c000e84 00130313 addi x6, x6, 1 x6=1c00a140 x6:1c00a13f +74974504ns 1331865 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f8 +74974583ns 1331869 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a140 PA:1c00a140 +74974603ns 1331870 1c000e82 fff60613 addi x12, x12, -1 x12=000000f7 x12:000000f8 +74974623ns 1331871 1c000e84 00130313 addi x6, x6, 1 x6=1c00a141 x6:1c00a140 +74974643ns 1331872 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f7 +74974722ns 1331876 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a141 PA:1c00a141 +74974742ns 1331877 1c000e82 fff60613 addi x12, x12, -1 x12=000000f6 x12:000000f7 +74974762ns 1331878 1c000e84 00130313 addi x6, x6, 1 x6=1c00a142 x6:1c00a141 +74974781ns 1331879 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f6 +74974860ns 1331883 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a142 PA:1c00a142 +74974880ns 1331884 1c000e82 fff60613 addi x12, x12, -1 x12=000000f5 x12:000000f6 +74974900ns 1331885 1c000e84 00130313 addi x6, x6, 1 x6=1c00a143 x6:1c00a142 +74974920ns 1331886 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f5 +74974999ns 1331890 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a143 PA:1c00a143 +74975019ns 1331891 1c000e82 fff60613 addi x12, x12, -1 x12=000000f4 x12:000000f5 +74975039ns 1331892 1c000e84 00130313 addi x6, x6, 1 x6=1c00a144 x6:1c00a143 +74975058ns 1331893 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f4 +74975138ns 1331897 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a144 PA:1c00a144 +74975157ns 1331898 1c000e82 fff60613 addi x12, x12, -1 x12=000000f3 x12:000000f4 +74975177ns 1331899 1c000e84 00130313 addi x6, x6, 1 x6=1c00a145 x6:1c00a144 +74975197ns 1331900 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f3 +74975276ns 1331904 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a145 PA:1c00a145 +74975296ns 1331905 1c000e82 fff60613 addi x12, x12, -1 x12=000000f2 x12:000000f3 +74975316ns 1331906 1c000e84 00130313 addi x6, x6, 1 x6=1c00a146 x6:1c00a145 +74975335ns 1331907 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f2 +74975415ns 1331911 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a146 PA:1c00a146 +74975434ns 1331912 1c000e82 fff60613 addi x12, x12, -1 x12=000000f1 x12:000000f2 +74975454ns 1331913 1c000e84 00130313 addi x6, x6, 1 x6=1c00a147 x6:1c00a146 +74975474ns 1331914 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f1 +74975553ns 1331918 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a147 PA:1c00a147 +74975573ns 1331919 1c000e82 fff60613 addi x12, x12, -1 x12=000000f0 x12:000000f1 +74975593ns 1331920 1c000e84 00130313 addi x6, x6, 1 x6=1c00a148 x6:1c00a147 +74975613ns 1331921 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f0 +74975692ns 1331925 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a148 PA:1c00a148 +74975712ns 1331926 1c000e82 fff60613 addi x12, x12, -1 x12=000000ef x12:000000f0 +74975731ns 1331927 1c000e84 00130313 addi x6, x6, 1 x6=1c00a149 x6:1c00a148 +74975751ns 1331928 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ef +74975830ns 1331932 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a149 PA:1c00a149 +74975850ns 1331933 1c000e82 fff60613 addi x12, x12, -1 x12=000000ee x12:000000ef +74975870ns 1331934 1c000e84 00130313 addi x6, x6, 1 x6=1c00a14a x6:1c00a149 +74975890ns 1331935 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ee +74975969ns 1331939 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a14a PA:1c00a14a +74975989ns 1331940 1c000e82 fff60613 addi x12, x12, -1 x12=000000ed x12:000000ee +74976008ns 1331941 1c000e84 00130313 addi x6, x6, 1 x6=1c00a14b x6:1c00a14a +74976028ns 1331942 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ed +74976107ns 1331946 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a14b PA:1c00a14b +74976127ns 1331947 1c000e82 fff60613 addi x12, x12, -1 x12=000000ec x12:000000ed +74976147ns 1331948 1c000e84 00130313 addi x6, x6, 1 x6=1c00a14c x6:1c00a14b +74976167ns 1331949 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ec +74976246ns 1331953 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a14c PA:1c00a14c +74976266ns 1331954 1c000e82 fff60613 addi x12, x12, -1 x12=000000eb x12:000000ec +74976286ns 1331955 1c000e84 00130313 addi x6, x6, 1 x6=1c00a14d x6:1c00a14c +74976305ns 1331956 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000eb +74976384ns 1331960 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a14d PA:1c00a14d +74976404ns 1331961 1c000e82 fff60613 addi x12, x12, -1 x12=000000ea x12:000000eb +74976424ns 1331962 1c000e84 00130313 addi x6, x6, 1 x6=1c00a14e x6:1c00a14d +74976444ns 1331963 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ea +74976523ns 1331967 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a14e PA:1c00a14e +74976543ns 1331968 1c000e82 fff60613 addi x12, x12, -1 x12=000000e9 x12:000000ea +74976563ns 1331969 1c000e84 00130313 addi x6, x6, 1 x6=1c00a14f x6:1c00a14e +74976582ns 1331970 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e9 +74976662ns 1331974 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a14f PA:1c00a14f +74976681ns 1331975 1c000e82 fff60613 addi x12, x12, -1 x12=000000e8 x12:000000e9 +74976701ns 1331976 1c000e84 00130313 addi x6, x6, 1 x6=1c00a150 x6:1c00a14f +74976721ns 1331977 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e8 +74976800ns 1331981 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a150 PA:1c00a150 +74976820ns 1331982 1c000e82 fff60613 addi x12, x12, -1 x12=000000e7 x12:000000e8 +74976840ns 1331983 1c000e84 00130313 addi x6, x6, 1 x6=1c00a151 x6:1c00a150 +74976859ns 1331984 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e7 +74976939ns 1331988 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a151 PA:1c00a151 +74976958ns 1331989 1c000e82 fff60613 addi x12, x12, -1 x12=000000e6 x12:000000e7 +74976978ns 1331990 1c000e84 00130313 addi x6, x6, 1 x6=1c00a152 x6:1c00a151 +74976998ns 1331991 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e6 +74977077ns 1331995 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a152 PA:1c00a152 +74977097ns 1331996 1c000e82 fff60613 addi x12, x12, -1 x12=000000e5 x12:000000e6 +74977117ns 1331997 1c000e84 00130313 addi x6, x6, 1 x6=1c00a153 x6:1c00a152 +74977137ns 1331998 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e5 +74977216ns 1332002 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a153 PA:1c00a153 +74977236ns 1332003 1c000e82 fff60613 addi x12, x12, -1 x12=000000e4 x12:000000e5 +74977255ns 1332004 1c000e84 00130313 addi x6, x6, 1 x6=1c00a154 x6:1c00a153 +74977275ns 1332005 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e4 +74977354ns 1332009 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a154 PA:1c00a154 +74977374ns 1332010 1c000e82 fff60613 addi x12, x12, -1 x12=000000e3 x12:000000e4 +74977394ns 1332011 1c000e84 00130313 addi x6, x6, 1 x6=1c00a155 x6:1c00a154 +74977414ns 1332012 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e3 +74977493ns 1332016 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a155 PA:1c00a155 +74977513ns 1332017 1c000e82 fff60613 addi x12, x12, -1 x12=000000e2 x12:000000e3 +74977532ns 1332018 1c000e84 00130313 addi x6, x6, 1 x6=1c00a156 x6:1c00a155 +74977552ns 1332019 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e2 +74977631ns 1332023 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a156 PA:1c00a156 +74977651ns 1332024 1c000e82 fff60613 addi x12, x12, -1 x12=000000e1 x12:000000e2 +74977671ns 1332025 1c000e84 00130313 addi x6, x6, 1 x6=1c00a157 x6:1c00a156 +74977691ns 1332026 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e1 +74977770ns 1332030 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a157 PA:1c00a157 +74977790ns 1332031 1c000e82 fff60613 addi x12, x12, -1 x12=000000e0 x12:000000e1 +74977809ns 1332032 1c000e84 00130313 addi x6, x6, 1 x6=1c00a158 x6:1c00a157 +74977829ns 1332033 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e0 +74977908ns 1332037 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a158 PA:1c00a158 +74977928ns 1332038 1c000e82 fff60613 addi x12, x12, -1 x12=000000df x12:000000e0 +74977948ns 1332039 1c000e84 00130313 addi x6, x6, 1 x6=1c00a159 x6:1c00a158 +74977968ns 1332040 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000df +74978047ns 1332044 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a159 PA:1c00a159 +74978067ns 1332045 1c000e82 fff60613 addi x12, x12, -1 x12=000000de x12:000000df +74978087ns 1332046 1c000e84 00130313 addi x6, x6, 1 x6=1c00a15a x6:1c00a159 +74978106ns 1332047 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000de +74978186ns 1332051 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a15a PA:1c00a15a +74978205ns 1332052 1c000e82 fff60613 addi x12, x12, -1 x12=000000dd x12:000000de +74978225ns 1332053 1c000e84 00130313 addi x6, x6, 1 x6=1c00a15b x6:1c00a15a +74978245ns 1332054 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000dd +74978324ns 1332058 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a15b PA:1c00a15b +74978344ns 1332059 1c000e82 fff60613 addi x12, x12, -1 x12=000000dc x12:000000dd +74978364ns 1332060 1c000e84 00130313 addi x6, x6, 1 x6=1c00a15c x6:1c00a15b +74978383ns 1332061 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000dc +74978463ns 1332065 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a15c PA:1c00a15c +74978482ns 1332066 1c000e82 fff60613 addi x12, x12, -1 x12=000000db x12:000000dc +74978502ns 1332067 1c000e84 00130313 addi x6, x6, 1 x6=1c00a15d x6:1c00a15c +74978522ns 1332068 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000db +74978601ns 1332072 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a15d PA:1c00a15d +74978621ns 1332073 1c000e82 fff60613 addi x12, x12, -1 x12=000000da x12:000000db +74978641ns 1332074 1c000e84 00130313 addi x6, x6, 1 x6=1c00a15e x6:1c00a15d +74978661ns 1332075 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000da +74978740ns 1332079 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a15e PA:1c00a15e +74978760ns 1332080 1c000e82 fff60613 addi x12, x12, -1 x12=000000d9 x12:000000da +74978779ns 1332081 1c000e84 00130313 addi x6, x6, 1 x6=1c00a15f x6:1c00a15e +74978799ns 1332082 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d9 +74978878ns 1332086 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a15f PA:1c00a15f +74978898ns 1332087 1c000e82 fff60613 addi x12, x12, -1 x12=000000d8 x12:000000d9 +74978918ns 1332088 1c000e84 00130313 addi x6, x6, 1 x6=1c00a160 x6:1c00a15f +74978938ns 1332089 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d8 +74979017ns 1332093 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a160 PA:1c00a160 +74979037ns 1332094 1c000e82 fff60613 addi x12, x12, -1 x12=000000d7 x12:000000d8 +74979056ns 1332095 1c000e84 00130313 addi x6, x6, 1 x6=1c00a161 x6:1c00a160 +74979076ns 1332096 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d7 +74979155ns 1332100 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a161 PA:1c00a161 +74979175ns 1332101 1c000e82 fff60613 addi x12, x12, -1 x12=000000d6 x12:000000d7 +74979195ns 1332102 1c000e84 00130313 addi x6, x6, 1 x6=1c00a162 x6:1c00a161 +74979215ns 1332103 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d6 +74979294ns 1332107 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a162 PA:1c00a162 +74979314ns 1332108 1c000e82 fff60613 addi x12, x12, -1 x12=000000d5 x12:000000d6 +74979333ns 1332109 1c000e84 00130313 addi x6, x6, 1 x6=1c00a163 x6:1c00a162 +74979353ns 1332110 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d5 +74979432ns 1332114 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a163 PA:1c00a163 +74979452ns 1332115 1c000e82 fff60613 addi x12, x12, -1 x12=000000d4 x12:000000d5 +74979472ns 1332116 1c000e84 00130313 addi x6, x6, 1 x6=1c00a164 x6:1c00a163 +74979492ns 1332117 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d4 +74979571ns 1332121 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a164 PA:1c00a164 +74979591ns 1332122 1c000e82 fff60613 addi x12, x12, -1 x12=000000d3 x12:000000d4 +74979611ns 1332123 1c000e84 00130313 addi x6, x6, 1 x6=1c00a165 x6:1c00a164 +74979630ns 1332124 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d3 +74979710ns 1332128 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a165 PA:1c00a165 +74979729ns 1332129 1c000e82 fff60613 addi x12, x12, -1 x12=000000d2 x12:000000d3 +74979749ns 1332130 1c000e84 00130313 addi x6, x6, 1 x6=1c00a166 x6:1c00a165 +74979769ns 1332131 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d2 +74979848ns 1332135 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a166 PA:1c00a166 +74979868ns 1332136 1c000e82 fff60613 addi x12, x12, -1 x12=000000d1 x12:000000d2 +74979888ns 1332137 1c000e84 00130313 addi x6, x6, 1 x6=1c00a167 x6:1c00a166 +74979907ns 1332138 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d1 +74979987ns 1332142 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a167 PA:1c00a167 +74980006ns 1332143 1c000e82 fff60613 addi x12, x12, -1 x12=000000d0 x12:000000d1 +74980026ns 1332144 1c000e84 00130313 addi x6, x6, 1 x6=1c00a168 x6:1c00a167 +74980046ns 1332145 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d0 +74980125ns 1332149 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a168 PA:1c00a168 +74980145ns 1332150 1c000e82 fff60613 addi x12, x12, -1 x12=000000cf x12:000000d0 +74980165ns 1332151 1c000e84 00130313 addi x6, x6, 1 x6=1c00a169 x6:1c00a168 +74980185ns 1332152 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000cf +74980264ns 1332156 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a169 PA:1c00a169 +74980283ns 1332157 1c000e82 fff60613 addi x12, x12, -1 x12=000000ce x12:000000cf +74980303ns 1332158 1c000e84 00130313 addi x6, x6, 1 x6=1c00a16a x6:1c00a169 +74980323ns 1332159 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ce +74980402ns 1332163 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a16a PA:1c00a16a +74980422ns 1332164 1c000e82 fff60613 addi x12, x12, -1 x12=000000cd x12:000000ce +74980442ns 1332165 1c000e84 00130313 addi x6, x6, 1 x6=1c00a16b x6:1c00a16a +74980462ns 1332166 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000cd +74980541ns 1332170 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a16b PA:1c00a16b +74980561ns 1332171 1c000e82 fff60613 addi x12, x12, -1 x12=000000cc x12:000000cd +74980580ns 1332172 1c000e84 00130313 addi x6, x6, 1 x6=1c00a16c x6:1c00a16b +74980600ns 1332173 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000cc +74980679ns 1332177 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a16c PA:1c00a16c +74980699ns 1332178 1c000e82 fff60613 addi x12, x12, -1 x12=000000cb x12:000000cc +74980719ns 1332179 1c000e84 00130313 addi x6, x6, 1 x6=1c00a16d x6:1c00a16c +74980739ns 1332180 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000cb +74980818ns 1332184 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a16d PA:1c00a16d +74980838ns 1332185 1c000e82 fff60613 addi x12, x12, -1 x12=000000ca x12:000000cb +74980857ns 1332186 1c000e84 00130313 addi x6, x6, 1 x6=1c00a16e x6:1c00a16d +74980877ns 1332187 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ca +74980956ns 1332191 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a16e PA:1c00a16e +74980976ns 1332192 1c000e82 fff60613 addi x12, x12, -1 x12=000000c9 x12:000000ca +74980996ns 1332193 1c000e84 00130313 addi x6, x6, 1 x6=1c00a16f x6:1c00a16e +74981016ns 1332194 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c9 +74981095ns 1332198 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a16f PA:1c00a16f +74981115ns 1332199 1c000e82 fff60613 addi x12, x12, -1 x12=000000c8 x12:000000c9 +74981135ns 1332200 1c000e84 00130313 addi x6, x6, 1 x6=1c00a170 x6:1c00a16f +74981154ns 1332201 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c8 +74981234ns 1332205 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a170 PA:1c00a170 +74981253ns 1332206 1c000e82 fff60613 addi x12, x12, -1 x12=000000c7 x12:000000c8 +74981273ns 1332207 1c000e84 00130313 addi x6, x6, 1 x6=1c00a171 x6:1c00a170 +74981293ns 1332208 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c7 +74981372ns 1332212 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a171 PA:1c00a171 +74981392ns 1332213 1c000e82 fff60613 addi x12, x12, -1 x12=000000c6 x12:000000c7 +74981412ns 1332214 1c000e84 00130313 addi x6, x6, 1 x6=1c00a172 x6:1c00a171 +74981431ns 1332215 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c6 +74981511ns 1332219 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a172 PA:1c00a172 +74981530ns 1332220 1c000e82 fff60613 addi x12, x12, -1 x12=000000c5 x12:000000c6 +74981550ns 1332221 1c000e84 00130313 addi x6, x6, 1 x6=1c00a173 x6:1c00a172 +74981570ns 1332222 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c5 +74981649ns 1332226 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a173 PA:1c00a173 +74981669ns 1332227 1c000e82 fff60613 addi x12, x12, -1 x12=000000c4 x12:000000c5 +74981689ns 1332228 1c000e84 00130313 addi x6, x6, 1 x6=1c00a174 x6:1c00a173 +74981709ns 1332229 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c4 +74981788ns 1332233 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a174 PA:1c00a174 +74981807ns 1332234 1c000e82 fff60613 addi x12, x12, -1 x12=000000c3 x12:000000c4 +74981827ns 1332235 1c000e84 00130313 addi x6, x6, 1 x6=1c00a175 x6:1c00a174 +74981847ns 1332236 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c3 +74981926ns 1332240 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a175 PA:1c00a175 +74981946ns 1332241 1c000e82 fff60613 addi x12, x12, -1 x12=000000c2 x12:000000c3 +74981966ns 1332242 1c000e84 00130313 addi x6, x6, 1 x6=1c00a176 x6:1c00a175 +74981986ns 1332243 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c2 +74982065ns 1332247 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a176 PA:1c00a176 +74982085ns 1332248 1c000e82 fff60613 addi x12, x12, -1 x12=000000c1 x12:000000c2 +74982104ns 1332249 1c000e84 00130313 addi x6, x6, 1 x6=1c00a177 x6:1c00a176 +74982124ns 1332250 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c1 +74982203ns 1332254 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a177 PA:1c00a177 +74982223ns 1332255 1c000e82 fff60613 addi x12, x12, -1 x12=000000c0 x12:000000c1 +74982243ns 1332256 1c000e84 00130313 addi x6, x6, 1 x6=1c00a178 x6:1c00a177 +74982263ns 1332257 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c0 +74982342ns 1332261 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a178 PA:1c00a178 +74982362ns 1332262 1c000e82 fff60613 addi x12, x12, -1 x12=000000bf x12:000000c0 +74982381ns 1332263 1c000e84 00130313 addi x6, x6, 1 x6=1c00a179 x6:1c00a178 +74982401ns 1332264 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000bf +74982480ns 1332268 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a179 PA:1c00a179 +74982500ns 1332269 1c000e82 fff60613 addi x12, x12, -1 x12=000000be x12:000000bf +74982520ns 1332270 1c000e84 00130313 addi x6, x6, 1 x6=1c00a17a x6:1c00a179 +74982540ns 1332271 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000be +74982619ns 1332275 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a17a PA:1c00a17a +74982639ns 1332276 1c000e82 fff60613 addi x12, x12, -1 x12=000000bd x12:000000be +74982659ns 1332277 1c000e84 00130313 addi x6, x6, 1 x6=1c00a17b x6:1c00a17a +74982678ns 1332278 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000bd +74982757ns 1332282 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a17b PA:1c00a17b +74982777ns 1332283 1c000e82 fff60613 addi x12, x12, -1 x12=000000bc x12:000000bd +74982797ns 1332284 1c000e84 00130313 addi x6, x6, 1 x6=1c00a17c x6:1c00a17b +74982817ns 1332285 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000bc +74982896ns 1332289 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a17c PA:1c00a17c +74982916ns 1332290 1c000e82 fff60613 addi x12, x12, -1 x12=000000bb x12:000000bc +74982936ns 1332291 1c000e84 00130313 addi x6, x6, 1 x6=1c00a17d x6:1c00a17c +74982955ns 1332292 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000bb +74983035ns 1332296 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a17d PA:1c00a17d +74983054ns 1332297 1c000e82 fff60613 addi x12, x12, -1 x12=000000ba x12:000000bb +74983074ns 1332298 1c000e84 00130313 addi x6, x6, 1 x6=1c00a17e x6:1c00a17d +74983094ns 1332299 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ba +74983173ns 1332303 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a17e PA:1c00a17e +74983193ns 1332304 1c000e82 fff60613 addi x12, x12, -1 x12=000000b9 x12:000000ba +74983213ns 1332305 1c000e84 00130313 addi x6, x6, 1 x6=1c00a17f x6:1c00a17e +74983233ns 1332306 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b9 +74983312ns 1332310 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a17f PA:1c00a17f +74983331ns 1332311 1c000e82 fff60613 addi x12, x12, -1 x12=000000b8 x12:000000b9 +74983351ns 1332312 1c000e84 00130313 addi x6, x6, 1 x6=1c00a180 x6:1c00a17f +74983371ns 1332313 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b8 +74983450ns 1332317 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a180 PA:1c00a180 +74983470ns 1332318 1c000e82 fff60613 addi x12, x12, -1 x12=000000b7 x12:000000b8 +74983490ns 1332319 1c000e84 00130313 addi x6, x6, 1 x6=1c00a181 x6:1c00a180 +74983510ns 1332320 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b7 +74983589ns 1332324 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a181 PA:1c00a181 +74983609ns 1332325 1c000e82 fff60613 addi x12, x12, -1 x12=000000b6 x12:000000b7 +74983628ns 1332326 1c000e84 00130313 addi x6, x6, 1 x6=1c00a182 x6:1c00a181 +74983648ns 1332327 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b6 +74983727ns 1332331 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a182 PA:1c00a182 +74983747ns 1332332 1c000e82 fff60613 addi x12, x12, -1 x12=000000b5 x12:000000b6 +74983767ns 1332333 1c000e84 00130313 addi x6, x6, 1 x6=1c00a183 x6:1c00a182 +74983787ns 1332334 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b5 +74983866ns 1332338 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a183 PA:1c00a183 +74983886ns 1332339 1c000e82 fff60613 addi x12, x12, -1 x12=000000b4 x12:000000b5 +74983905ns 1332340 1c000e84 00130313 addi x6, x6, 1 x6=1c00a184 x6:1c00a183 +74983925ns 1332341 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b4 +74984004ns 1332345 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a184 PA:1c00a184 +74984024ns 1332346 1c000e82 fff60613 addi x12, x12, -1 x12=000000b3 x12:000000b4 +74984044ns 1332347 1c000e84 00130313 addi x6, x6, 1 x6=1c00a185 x6:1c00a184 +74984064ns 1332348 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b3 +74984143ns 1332352 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a185 PA:1c00a185 +74984163ns 1332353 1c000e82 fff60613 addi x12, x12, -1 x12=000000b2 x12:000000b3 +74984183ns 1332354 1c000e84 00130313 addi x6, x6, 1 x6=1c00a186 x6:1c00a185 +74984202ns 1332355 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b2 +74984281ns 1332359 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a186 PA:1c00a186 +74984301ns 1332360 1c000e82 fff60613 addi x12, x12, -1 x12=000000b1 x12:000000b2 +74984321ns 1332361 1c000e84 00130313 addi x6, x6, 1 x6=1c00a187 x6:1c00a186 +74984341ns 1332362 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b1 +74984420ns 1332366 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a187 PA:1c00a187 +74984440ns 1332367 1c000e82 fff60613 addi x12, x12, -1 x12=000000b0 x12:000000b1 +74984460ns 1332368 1c000e84 00130313 addi x6, x6, 1 x6=1c00a188 x6:1c00a187 +74984479ns 1332369 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b0 +74984559ns 1332373 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a188 PA:1c00a188 +74984578ns 1332374 1c000e82 fff60613 addi x12, x12, -1 x12=000000af x12:000000b0 +74984598ns 1332375 1c000e84 00130313 addi x6, x6, 1 x6=1c00a189 x6:1c00a188 +74984618ns 1332376 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000af +74984697ns 1332380 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a189 PA:1c00a189 +74984717ns 1332381 1c000e82 fff60613 addi x12, x12, -1 x12=000000ae x12:000000af +74984737ns 1332382 1c000e84 00130313 addi x6, x6, 1 x6=1c00a18a x6:1c00a189 +74984756ns 1332383 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ae +74984836ns 1332387 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a18a PA:1c00a18a +74984855ns 1332388 1c000e82 fff60613 addi x12, x12, -1 x12=000000ad x12:000000ae +74984875ns 1332389 1c000e84 00130313 addi x6, x6, 1 x6=1c00a18b x6:1c00a18a +74984895ns 1332390 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ad +74984974ns 1332394 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a18b PA:1c00a18b +74984994ns 1332395 1c000e82 fff60613 addi x12, x12, -1 x12=000000ac x12:000000ad +74985014ns 1332396 1c000e84 00130313 addi x6, x6, 1 x6=1c00a18c x6:1c00a18b +74985034ns 1332397 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ac +74985113ns 1332401 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a18c PA:1c00a18c +74985133ns 1332402 1c000e82 fff60613 addi x12, x12, -1 x12=000000ab x12:000000ac +74985152ns 1332403 1c000e84 00130313 addi x6, x6, 1 x6=1c00a18d x6:1c00a18c +74985172ns 1332404 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ab +74985251ns 1332408 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a18d PA:1c00a18d +74985271ns 1332409 1c000e82 fff60613 addi x12, x12, -1 x12=000000aa x12:000000ab +74985291ns 1332410 1c000e84 00130313 addi x6, x6, 1 x6=1c00a18e x6:1c00a18d +74985311ns 1332411 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000aa +74985390ns 1332415 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a18e PA:1c00a18e +74985410ns 1332416 1c000e82 fff60613 addi x12, x12, -1 x12=000000a9 x12:000000aa +74985429ns 1332417 1c000e84 00130313 addi x6, x6, 1 x6=1c00a18f x6:1c00a18e +74985449ns 1332418 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a9 +74985528ns 1332422 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a18f PA:1c00a18f +74985548ns 1332423 1c000e82 fff60613 addi x12, x12, -1 x12=000000a8 x12:000000a9 +74985568ns 1332424 1c000e84 00130313 addi x6, x6, 1 x6=1c00a190 x6:1c00a18f +74985588ns 1332425 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a8 +74985667ns 1332429 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a190 PA:1c00a190 +74985687ns 1332430 1c000e82 fff60613 addi x12, x12, -1 x12=000000a7 x12:000000a8 +74985707ns 1332431 1c000e84 00130313 addi x6, x6, 1 x6=1c00a191 x6:1c00a190 +74985726ns 1332432 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a7 +74985805ns 1332436 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a191 PA:1c00a191 +74985825ns 1332437 1c000e82 fff60613 addi x12, x12, -1 x12=000000a6 x12:000000a7 +74985845ns 1332438 1c000e84 00130313 addi x6, x6, 1 x6=1c00a192 x6:1c00a191 +74985865ns 1332439 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a6 +74985944ns 1332443 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a192 PA:1c00a192 +74985964ns 1332444 1c000e82 fff60613 addi x12, x12, -1 x12=000000a5 x12:000000a6 +74985984ns 1332445 1c000e84 00130313 addi x6, x6, 1 x6=1c00a193 x6:1c00a192 +74986003ns 1332446 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a5 +74986083ns 1332450 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a193 PA:1c00a193 +74986102ns 1332451 1c000e82 fff60613 addi x12, x12, -1 x12=000000a4 x12:000000a5 +74986122ns 1332452 1c000e84 00130313 addi x6, x6, 1 x6=1c00a194 x6:1c00a193 +74986142ns 1332453 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a4 +74986221ns 1332457 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a194 PA:1c00a194 +74986241ns 1332458 1c000e82 fff60613 addi x12, x12, -1 x12=000000a3 x12:000000a4 +74986261ns 1332459 1c000e84 00130313 addi x6, x6, 1 x6=1c00a195 x6:1c00a194 +74986280ns 1332460 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a3 +74986360ns 1332464 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a195 PA:1c00a195 +74986379ns 1332465 1c000e82 fff60613 addi x12, x12, -1 x12=000000a2 x12:000000a3 +74986399ns 1332466 1c000e84 00130313 addi x6, x6, 1 x6=1c00a196 x6:1c00a195 +74986419ns 1332467 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a2 +74986498ns 1332471 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a196 PA:1c00a196 +74986518ns 1332472 1c000e82 fff60613 addi x12, x12, -1 x12=000000a1 x12:000000a2 +74986538ns 1332473 1c000e84 00130313 addi x6, x6, 1 x6=1c00a197 x6:1c00a196 +74986558ns 1332474 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a1 +74986637ns 1332478 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a197 PA:1c00a197 +74986657ns 1332479 1c000e82 fff60613 addi x12, x12, -1 x12=000000a0 x12:000000a1 +74986676ns 1332480 1c000e84 00130313 addi x6, x6, 1 x6=1c00a198 x6:1c00a197 +74986696ns 1332481 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a0 +74986775ns 1332485 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a198 PA:1c00a198 +74986795ns 1332486 1c000e82 fff60613 addi x12, x12, -1 x12=0000009f x12:000000a0 +74986815ns 1332487 1c000e84 00130313 addi x6, x6, 1 x6=1c00a199 x6:1c00a198 +74986835ns 1332488 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000009f +74986914ns 1332492 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a199 PA:1c00a199 +74986934ns 1332493 1c000e82 fff60613 addi x12, x12, -1 x12=0000009e x12:0000009f +74986953ns 1332494 1c000e84 00130313 addi x6, x6, 1 x6=1c00a19a x6:1c00a199 +74986973ns 1332495 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000009e +74987052ns 1332499 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a19a PA:1c00a19a +74987072ns 1332500 1c000e82 fff60613 addi x12, x12, -1 x12=0000009d x12:0000009e +74987092ns 1332501 1c000e84 00130313 addi x6, x6, 1 x6=1c00a19b x6:1c00a19a +74987112ns 1332502 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000009d +74987191ns 1332506 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a19b PA:1c00a19b +74987211ns 1332507 1c000e82 fff60613 addi x12, x12, -1 x12=0000009c x12:0000009d +74987230ns 1332508 1c000e84 00130313 addi x6, x6, 1 x6=1c00a19c x6:1c00a19b +74987250ns 1332509 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000009c +74987329ns 1332513 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a19c PA:1c00a19c +74987349ns 1332514 1c000e82 fff60613 addi x12, x12, -1 x12=0000009b x12:0000009c +74987369ns 1332515 1c000e84 00130313 addi x6, x6, 1 x6=1c00a19d x6:1c00a19c +74987389ns 1332516 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000009b +74987468ns 1332520 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a19d PA:1c00a19d +74987488ns 1332521 1c000e82 fff60613 addi x12, x12, -1 x12=0000009a x12:0000009b +74987508ns 1332522 1c000e84 00130313 addi x6, x6, 1 x6=1c00a19e x6:1c00a19d +74987527ns 1332523 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000009a +74987607ns 1332527 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a19e PA:1c00a19e +74987626ns 1332528 1c000e82 fff60613 addi x12, x12, -1 x12=00000099 x12:0000009a +74987646ns 1332529 1c000e84 00130313 addi x6, x6, 1 x6=1c00a19f x6:1c00a19e +74987666ns 1332530 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000099 +74987745ns 1332534 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a19f PA:1c00a19f +74987765ns 1332535 1c000e82 fff60613 addi x12, x12, -1 x12=00000098 x12:00000099 +74987785ns 1332536 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1a0 x6:1c00a19f +74987804ns 1332537 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000098 +74987884ns 1332541 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1a0 PA:1c00a1a0 +74987903ns 1332542 1c000e82 fff60613 addi x12, x12, -1 x12=00000097 x12:00000098 +74987923ns 1332543 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1a1 x6:1c00a1a0 +74987943ns 1332544 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000097 +74988022ns 1332548 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1a1 PA:1c00a1a1 +74988042ns 1332549 1c000e82 fff60613 addi x12, x12, -1 x12=00000096 x12:00000097 +74988062ns 1332550 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1a2 x6:1c00a1a1 +74988082ns 1332551 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000096 +74988161ns 1332555 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1a2 PA:1c00a1a2 +74988181ns 1332556 1c000e82 fff60613 addi x12, x12, -1 x12=00000095 x12:00000096 +74988200ns 1332557 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1a3 x6:1c00a1a2 +74988220ns 1332558 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000095 +74988299ns 1332562 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1a3 PA:1c00a1a3 +74988319ns 1332563 1c000e82 fff60613 addi x12, x12, -1 x12=00000094 x12:00000095 +74988339ns 1332564 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1a4 x6:1c00a1a3 +74988359ns 1332565 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000094 +74988438ns 1332569 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1a4 PA:1c00a1a4 +74988458ns 1332570 1c000e82 fff60613 addi x12, x12, -1 x12=00000093 x12:00000094 +74988477ns 1332571 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1a5 x6:1c00a1a4 +74988497ns 1332572 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000093 +74988576ns 1332576 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1a5 PA:1c00a1a5 +74988596ns 1332577 1c000e82 fff60613 addi x12, x12, -1 x12=00000092 x12:00000093 +74988616ns 1332578 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1a6 x6:1c00a1a5 +74988636ns 1332579 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000092 +74988715ns 1332583 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1a6 PA:1c00a1a6 +74988735ns 1332584 1c000e82 fff60613 addi x12, x12, -1 x12=00000091 x12:00000092 +74988754ns 1332585 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1a7 x6:1c00a1a6 +74988774ns 1332586 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000091 +74988853ns 1332590 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1a7 PA:1c00a1a7 +74988873ns 1332591 1c000e82 fff60613 addi x12, x12, -1 x12=00000090 x12:00000091 +74988893ns 1332592 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1a8 x6:1c00a1a7 +74988913ns 1332593 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000090 +74988992ns 1332597 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1a8 PA:1c00a1a8 +74989012ns 1332598 1c000e82 fff60613 addi x12, x12, -1 x12=0000008f x12:00000090 +74989032ns 1332599 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1a9 x6:1c00a1a8 +74989051ns 1332600 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000008f +74989131ns 1332604 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1a9 PA:1c00a1a9 +74989150ns 1332605 1c000e82 fff60613 addi x12, x12, -1 x12=0000008e x12:0000008f +74989170ns 1332606 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1aa x6:1c00a1a9 +74989190ns 1332607 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000008e +74989269ns 1332611 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1aa PA:1c00a1aa +74989289ns 1332612 1c000e82 fff60613 addi x12, x12, -1 x12=0000008d x12:0000008e +74989309ns 1332613 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1ab x6:1c00a1aa +74989328ns 1332614 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000008d +74989408ns 1332618 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1ab PA:1c00a1ab +74989427ns 1332619 1c000e82 fff60613 addi x12, x12, -1 x12=0000008c x12:0000008d +74989447ns 1332620 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1ac x6:1c00a1ab +74989467ns 1332621 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000008c +74989546ns 1332625 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1ac PA:1c00a1ac +74989566ns 1332626 1c000e82 fff60613 addi x12, x12, -1 x12=0000008b x12:0000008c +74989586ns 1332627 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1ad x6:1c00a1ac +74989606ns 1332628 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000008b +74989685ns 1332632 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1ad PA:1c00a1ad +74989704ns 1332633 1c000e82 fff60613 addi x12, x12, -1 x12=0000008a x12:0000008b +74989724ns 1332634 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1ae x6:1c00a1ad +74989744ns 1332635 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000008a +74989823ns 1332639 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1ae PA:1c00a1ae +74989843ns 1332640 1c000e82 fff60613 addi x12, x12, -1 x12=00000089 x12:0000008a +74989863ns 1332641 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1af x6:1c00a1ae +74989883ns 1332642 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000089 +74989962ns 1332646 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1af PA:1c00a1af +74989982ns 1332647 1c000e82 fff60613 addi x12, x12, -1 x12=00000088 x12:00000089 +74990001ns 1332648 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1b0 x6:1c00a1af +74990021ns 1332649 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000088 +74990100ns 1332653 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1b0 PA:1c00a1b0 +74990120ns 1332654 1c000e82 fff60613 addi x12, x12, -1 x12=00000087 x12:00000088 +74990140ns 1332655 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1b1 x6:1c00a1b0 +74990160ns 1332656 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000087 +74990239ns 1332660 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1b1 PA:1c00a1b1 +74990259ns 1332661 1c000e82 fff60613 addi x12, x12, -1 x12=00000086 x12:00000087 +74990278ns 1332662 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1b2 x6:1c00a1b1 +74990298ns 1332663 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000086 +74990377ns 1332667 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1b2 PA:1c00a1b2 +74990397ns 1332668 1c000e82 fff60613 addi x12, x12, -1 x12=00000085 x12:00000086 +74990417ns 1332669 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1b3 x6:1c00a1b2 +74990437ns 1332670 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000085 +74990516ns 1332674 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1b3 PA:1c00a1b3 +74990536ns 1332675 1c000e82 fff60613 addi x12, x12, -1 x12=00000084 x12:00000085 +74990556ns 1332676 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1b4 x6:1c00a1b3 +74990575ns 1332677 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000084 +74990655ns 1332681 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1b4 PA:1c00a1b4 +74990674ns 1332682 1c000e82 fff60613 addi x12, x12, -1 x12=00000083 x12:00000084 +74990694ns 1332683 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1b5 x6:1c00a1b4 +74990714ns 1332684 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000083 +74990793ns 1332688 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1b5 PA:1c00a1b5 +74990813ns 1332689 1c000e82 fff60613 addi x12, x12, -1 x12=00000082 x12:00000083 +74990833ns 1332690 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1b6 x6:1c00a1b5 +74990852ns 1332691 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000082 +74990932ns 1332695 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1b6 PA:1c00a1b6 +74990951ns 1332696 1c000e82 fff60613 addi x12, x12, -1 x12=00000081 x12:00000082 +74990971ns 1332697 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1b7 x6:1c00a1b6 +74990991ns 1332698 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000081 +74991070ns 1332702 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1b7 PA:1c00a1b7 +74991090ns 1332703 1c000e82 fff60613 addi x12, x12, -1 x12=00000080 x12:00000081 +74991110ns 1332704 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1b8 x6:1c00a1b7 +74991130ns 1332705 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000080 +74991209ns 1332709 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1b8 PA:1c00a1b8 +74991228ns 1332710 1c000e82 fff60613 addi x12, x12, -1 x12=0000007f x12:00000080 +74991248ns 1332711 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1b9 x6:1c00a1b8 +74991268ns 1332712 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000007f +74991347ns 1332716 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1b9 PA:1c00a1b9 +74991367ns 1332717 1c000e82 fff60613 addi x12, x12, -1 x12=0000007e x12:0000007f +74991387ns 1332718 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1ba x6:1c00a1b9 +74991407ns 1332719 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000007e +74991486ns 1332723 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1ba PA:1c00a1ba +74991506ns 1332724 1c000e82 fff60613 addi x12, x12, -1 x12=0000007d x12:0000007e +74991525ns 1332725 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1bb x6:1c00a1ba +74991545ns 1332726 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000007d +74991624ns 1332730 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1bb PA:1c00a1bb +74991644ns 1332731 1c000e82 fff60613 addi x12, x12, -1 x12=0000007c x12:0000007d +74991664ns 1332732 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1bc x6:1c00a1bb +74991684ns 1332733 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000007c +74991763ns 1332737 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1bc PA:1c00a1bc +74991783ns 1332738 1c000e82 fff60613 addi x12, x12, -1 x12=0000007b x12:0000007c +74991802ns 1332739 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1bd x6:1c00a1bc +74991822ns 1332740 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000007b +74991901ns 1332744 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1bd PA:1c00a1bd +74991921ns 1332745 1c000e82 fff60613 addi x12, x12, -1 x12=0000007a x12:0000007b +74991941ns 1332746 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1be x6:1c00a1bd +74991961ns 1332747 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000007a +74992040ns 1332751 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1be PA:1c00a1be +74992060ns 1332752 1c000e82 fff60613 addi x12, x12, -1 x12=00000079 x12:0000007a +74992080ns 1332753 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1bf x6:1c00a1be +74992099ns 1332754 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000079 +74992178ns 1332758 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1bf PA:1c00a1bf +74992198ns 1332759 1c000e82 fff60613 addi x12, x12, -1 x12=00000078 x12:00000079 +74992218ns 1332760 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1c0 x6:1c00a1bf +74992238ns 1332761 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000078 +74992317ns 1332765 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1c0 PA:1c00a1c0 +74992337ns 1332766 1c000e82 fff60613 addi x12, x12, -1 x12=00000077 x12:00000078 +74992357ns 1332767 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1c1 x6:1c00a1c0 +74992376ns 1332768 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000077 +74992456ns 1332772 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1c1 PA:1c00a1c1 +74992475ns 1332773 1c000e82 fff60613 addi x12, x12, -1 x12=00000076 x12:00000077 +74992495ns 1332774 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1c2 x6:1c00a1c1 +74992515ns 1332775 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000076 +74992594ns 1332779 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1c2 PA:1c00a1c2 +74992614ns 1332780 1c000e82 fff60613 addi x12, x12, -1 x12=00000075 x12:00000076 +74992634ns 1332781 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1c3 x6:1c00a1c2 +74992653ns 1332782 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000075 +74992733ns 1332786 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1c3 PA:1c00a1c3 +74992752ns 1332787 1c000e82 fff60613 addi x12, x12, -1 x12=00000074 x12:00000075 +74992772ns 1332788 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1c4 x6:1c00a1c3 +74992792ns 1332789 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000074 +74992871ns 1332793 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1c4 PA:1c00a1c4 +74992891ns 1332794 1c000e82 fff60613 addi x12, x12, -1 x12=00000073 x12:00000074 +74992911ns 1332795 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1c5 x6:1c00a1c4 +74992931ns 1332796 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000073 +74993010ns 1332800 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1c5 PA:1c00a1c5 +74993030ns 1332801 1c000e82 fff60613 addi x12, x12, -1 x12=00000072 x12:00000073 +74993049ns 1332802 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1c6 x6:1c00a1c5 +74993069ns 1332803 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000072 +74993148ns 1332807 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1c6 PA:1c00a1c6 +74993168ns 1332808 1c000e82 fff60613 addi x12, x12, -1 x12=00000071 x12:00000072 +74993188ns 1332809 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1c7 x6:1c00a1c6 +74993208ns 1332810 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000071 +74993287ns 1332814 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1c7 PA:1c00a1c7 +74993307ns 1332815 1c000e82 fff60613 addi x12, x12, -1 x12=00000070 x12:00000071 +74993326ns 1332816 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1c8 x6:1c00a1c7 +74993346ns 1332817 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000070 +74993425ns 1332821 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1c8 PA:1c00a1c8 +74993445ns 1332822 1c000e82 fff60613 addi x12, x12, -1 x12=0000006f x12:00000070 +74993465ns 1332823 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1c9 x6:1c00a1c8 +74993485ns 1332824 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000006f +74993564ns 1332828 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1c9 PA:1c00a1c9 +74993584ns 1332829 1c000e82 fff60613 addi x12, x12, -1 x12=0000006e x12:0000006f +74993604ns 1332830 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1ca x6:1c00a1c9 +74993623ns 1332831 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000006e +74993702ns 1332835 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1ca PA:1c00a1ca +74993722ns 1332836 1c000e82 fff60613 addi x12, x12, -1 x12=0000006d x12:0000006e +74993742ns 1332837 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1cb x6:1c00a1ca +74993762ns 1332838 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000006d +74993841ns 1332842 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1cb PA:1c00a1cb +74993861ns 1332843 1c000e82 fff60613 addi x12, x12, -1 x12=0000006c x12:0000006d +74993881ns 1332844 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1cc x6:1c00a1cb +74993900ns 1332845 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000006c +74993980ns 1332849 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1cc PA:1c00a1cc +74993999ns 1332850 1c000e82 fff60613 addi x12, x12, -1 x12=0000006b x12:0000006c +74994019ns 1332851 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1cd x6:1c00a1cc +74994039ns 1332852 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000006b +74994118ns 1332856 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1cd PA:1c00a1cd +74994138ns 1332857 1c000e82 fff60613 addi x12, x12, -1 x12=0000006a x12:0000006b +74994158ns 1332858 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1ce x6:1c00a1cd +74994177ns 1332859 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000006a +74994257ns 1332863 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1ce PA:1c00a1ce +74994276ns 1332864 1c000e82 fff60613 addi x12, x12, -1 x12=00000069 x12:0000006a +74994296ns 1332865 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1cf x6:1c00a1ce +74994316ns 1332866 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000069 +74994395ns 1332870 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1cf PA:1c00a1cf +74994415ns 1332871 1c000e82 fff60613 addi x12, x12, -1 x12=00000068 x12:00000069 +74994435ns 1332872 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1d0 x6:1c00a1cf +74994455ns 1332873 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000068 +74994534ns 1332877 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1d0 PA:1c00a1d0 +74994554ns 1332878 1c000e82 fff60613 addi x12, x12, -1 x12=00000067 x12:00000068 +74994573ns 1332879 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1d1 x6:1c00a1d0 +74994593ns 1332880 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000067 +74994672ns 1332884 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1d1 PA:1c00a1d1 +74994692ns 1332885 1c000e82 fff60613 addi x12, x12, -1 x12=00000066 x12:00000067 +74994712ns 1332886 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1d2 x6:1c00a1d1 +74994732ns 1332887 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000066 +74994811ns 1332891 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1d2 PA:1c00a1d2 +74994831ns 1332892 1c000e82 fff60613 addi x12, x12, -1 x12=00000065 x12:00000066 +74994850ns 1332893 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1d3 x6:1c00a1d2 +74994870ns 1332894 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000065 +74994949ns 1332898 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1d3 PA:1c00a1d3 +74994969ns 1332899 1c000e82 fff60613 addi x12, x12, -1 x12=00000064 x12:00000065 +74994989ns 1332900 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1d4 x6:1c00a1d3 +74995009ns 1332901 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000064 +74995088ns 1332905 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1d4 PA:1c00a1d4 +74995108ns 1332906 1c000e82 fff60613 addi x12, x12, -1 x12=00000063 x12:00000064 +74995127ns 1332907 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1d5 x6:1c00a1d4 +74995147ns 1332908 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000063 +74995226ns 1332912 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1d5 PA:1c00a1d5 +74995246ns 1332913 1c000e82 fff60613 addi x12, x12, -1 x12=00000062 x12:00000063 +74995266ns 1332914 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1d6 x6:1c00a1d5 +74995286ns 1332915 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000062 +74995365ns 1332919 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1d6 PA:1c00a1d6 +74995385ns 1332920 1c000e82 fff60613 addi x12, x12, -1 x12=00000061 x12:00000062 +74995405ns 1332921 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1d7 x6:1c00a1d6 +74995424ns 1332922 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000061 +74995504ns 1332926 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1d7 PA:1c00a1d7 +74995523ns 1332927 1c000e82 fff60613 addi x12, x12, -1 x12=00000060 x12:00000061 +74995543ns 1332928 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1d8 x6:1c00a1d7 +74995563ns 1332929 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000060 +74995642ns 1332933 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1d8 PA:1c00a1d8 +74995662ns 1332934 1c000e82 fff60613 addi x12, x12, -1 x12=0000005f x12:00000060 +74995682ns 1332935 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1d9 x6:1c00a1d8 +74995701ns 1332936 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000005f +74995781ns 1332940 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1d9 PA:1c00a1d9 +74995800ns 1332941 1c000e82 fff60613 addi x12, x12, -1 x12=0000005e x12:0000005f +74995820ns 1332942 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1da x6:1c00a1d9 +74995840ns 1332943 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000005e +74995919ns 1332947 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1da PA:1c00a1da +74995939ns 1332948 1c000e82 fff60613 addi x12, x12, -1 x12=0000005d x12:0000005e +74995959ns 1332949 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1db x6:1c00a1da +74995979ns 1332950 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000005d +74996058ns 1332954 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1db PA:1c00a1db +74996078ns 1332955 1c000e82 fff60613 addi x12, x12, -1 x12=0000005c x12:0000005d +74996097ns 1332956 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1dc x6:1c00a1db +74996117ns 1332957 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000005c +74996196ns 1332961 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1dc PA:1c00a1dc +74996216ns 1332962 1c000e82 fff60613 addi x12, x12, -1 x12=0000005b x12:0000005c +74996236ns 1332963 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1dd x6:1c00a1dc +74996256ns 1332964 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000005b +74996335ns 1332968 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1dd PA:1c00a1dd +74996355ns 1332969 1c000e82 fff60613 addi x12, x12, -1 x12=0000005a x12:0000005b +74996374ns 1332970 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1de x6:1c00a1dd +74996394ns 1332971 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000005a +74996473ns 1332975 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1de PA:1c00a1de +74996493ns 1332976 1c000e82 fff60613 addi x12, x12, -1 x12=00000059 x12:0000005a +74996513ns 1332977 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1df x6:1c00a1de +74996533ns 1332978 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000059 +74996612ns 1332982 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1df PA:1c00a1df +74996632ns 1332983 1c000e82 fff60613 addi x12, x12, -1 x12=00000058 x12:00000059 +74996651ns 1332984 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1e0 x6:1c00a1df +74996671ns 1332985 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000058 +74996750ns 1332989 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1e0 PA:1c00a1e0 +74996770ns 1332990 1c000e82 fff60613 addi x12, x12, -1 x12=00000057 x12:00000058 +74996790ns 1332991 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1e1 x6:1c00a1e0 +74996810ns 1332992 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000057 +74996889ns 1332996 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1e1 PA:1c00a1e1 +74996909ns 1332997 1c000e82 fff60613 addi x12, x12, -1 x12=00000056 x12:00000057 +74996929ns 1332998 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1e2 x6:1c00a1e1 +74996948ns 1332999 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000056 +74997028ns 1333003 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1e2 PA:1c00a1e2 +74997047ns 1333004 1c000e82 fff60613 addi x12, x12, -1 x12=00000055 x12:00000056 +74997067ns 1333005 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1e3 x6:1c00a1e2 +74997087ns 1333006 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000055 +74997166ns 1333010 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1e3 PA:1c00a1e3 +74997186ns 1333011 1c000e82 fff60613 addi x12, x12, -1 x12=00000054 x12:00000055 +74997206ns 1333012 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1e4 x6:1c00a1e3 +74997225ns 1333013 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000054 +74997305ns 1333017 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1e4 PA:1c00a1e4 +74997324ns 1333018 1c000e82 fff60613 addi x12, x12, -1 x12=00000053 x12:00000054 +74997344ns 1333019 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1e5 x6:1c00a1e4 +74997364ns 1333020 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000053 +74997443ns 1333024 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1e5 PA:1c00a1e5 +74997463ns 1333025 1c000e82 fff60613 addi x12, x12, -1 x12=00000052 x12:00000053 +74997483ns 1333026 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1e6 x6:1c00a1e5 +74997503ns 1333027 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000052 +74997582ns 1333031 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1e6 PA:1c00a1e6 +74997601ns 1333032 1c000e82 fff60613 addi x12, x12, -1 x12=00000051 x12:00000052 +74997621ns 1333033 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1e7 x6:1c00a1e6 +74997641ns 1333034 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000051 +74997720ns 1333038 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1e7 PA:1c00a1e7 +74997740ns 1333039 1c000e82 fff60613 addi x12, x12, -1 x12=00000050 x12:00000051 +74997760ns 1333040 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1e8 x6:1c00a1e7 +74997780ns 1333041 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000050 +74997859ns 1333045 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1e8 PA:1c00a1e8 +74997879ns 1333046 1c000e82 fff60613 addi x12, x12, -1 x12=0000004f x12:00000050 +74997898ns 1333047 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1e9 x6:1c00a1e8 +74997918ns 1333048 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000004f +74997997ns 1333052 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1e9 PA:1c00a1e9 +74998017ns 1333053 1c000e82 fff60613 addi x12, x12, -1 x12=0000004e x12:0000004f +74998037ns 1333054 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1ea x6:1c00a1e9 +74998057ns 1333055 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000004e +74998136ns 1333059 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1ea PA:1c00a1ea +74998156ns 1333060 1c000e82 fff60613 addi x12, x12, -1 x12=0000004d x12:0000004e +74998175ns 1333061 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1eb x6:1c00a1ea +74998195ns 1333062 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000004d +74998274ns 1333066 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1eb PA:1c00a1eb +74998294ns 1333067 1c000e82 fff60613 addi x12, x12, -1 x12=0000004c x12:0000004d +74998314ns 1333068 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1ec x6:1c00a1eb +74998334ns 1333069 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000004c +74998413ns 1333073 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1ec PA:1c00a1ec +74998433ns 1333074 1c000e82 fff60613 addi x12, x12, -1 x12=0000004b x12:0000004c +74998453ns 1333075 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1ed x6:1c00a1ec +74998472ns 1333076 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000004b +74998552ns 1333080 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1ed PA:1c00a1ed +74998571ns 1333081 1c000e82 fff60613 addi x12, x12, -1 x12=0000004a x12:0000004b +74998591ns 1333082 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1ee x6:1c00a1ed +74998611ns 1333083 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000004a +74998690ns 1333087 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1ee PA:1c00a1ee +74998710ns 1333088 1c000e82 fff60613 addi x12, x12, -1 x12=00000049 x12:0000004a +74998730ns 1333089 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1ef x6:1c00a1ee +74998749ns 1333090 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000049 +74998829ns 1333094 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1ef PA:1c00a1ef +74998848ns 1333095 1c000e82 fff60613 addi x12, x12, -1 x12=00000048 x12:00000049 +74998868ns 1333096 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1f0 x6:1c00a1ef +74998888ns 1333097 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000048 +74998967ns 1333101 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1f0 PA:1c00a1f0 +74998987ns 1333102 1c000e82 fff60613 addi x12, x12, -1 x12=00000047 x12:00000048 +74999007ns 1333103 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1f1 x6:1c00a1f0 +74999027ns 1333104 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000047 +74999106ns 1333108 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1f1 PA:1c00a1f1 +74999125ns 1333109 1c000e82 fff60613 addi x12, x12, -1 x12=00000046 x12:00000047 +74999145ns 1333110 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1f2 x6:1c00a1f1 +74999165ns 1333111 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000046 +74999244ns 1333115 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1f2 PA:1c00a1f2 +74999264ns 1333116 1c000e82 fff60613 addi x12, x12, -1 x12=00000045 x12:00000046 +74999284ns 1333117 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1f3 x6:1c00a1f2 +74999304ns 1333118 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000045 +74999383ns 1333122 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1f3 PA:1c00a1f3 +74999403ns 1333123 1c000e82 fff60613 addi x12, x12, -1 x12=00000044 x12:00000045 +74999422ns 1333124 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1f4 x6:1c00a1f3 +74999442ns 1333125 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000044 +74999521ns 1333129 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1f4 PA:1c00a1f4 +74999541ns 1333130 1c000e82 fff60613 addi x12, x12, -1 x12=00000043 x12:00000044 +74999561ns 1333131 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1f5 x6:1c00a1f4 +74999581ns 1333132 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000043 +74999660ns 1333136 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1f5 PA:1c00a1f5 +74999680ns 1333137 1c000e82 fff60613 addi x12, x12, -1 x12=00000042 x12:00000043 +74999699ns 1333138 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1f6 x6:1c00a1f5 +74999719ns 1333139 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000042 +74999798ns 1333143 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1f6 PA:1c00a1f6 +74999818ns 1333144 1c000e82 fff60613 addi x12, x12, -1 x12=00000041 x12:00000042 +74999838ns 1333145 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1f7 x6:1c00a1f6 +74999858ns 1333146 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000041 +74999937ns 1333150 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1f7 PA:1c00a1f7 +74999957ns 1333151 1c000e82 fff60613 addi x12, x12, -1 x12=00000040 x12:00000041 +74999977ns 1333152 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1f8 x6:1c00a1f7 +74999996ns 1333153 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000040 +75000075ns 1333157 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1f8 PA:1c00a1f8 +75000095ns 1333158 1c000e82 fff60613 addi x12, x12, -1 x12=0000003f x12:00000040 +75000115ns 1333159 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1f9 x6:1c00a1f8 +75000135ns 1333160 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000003f +75000214ns 1333164 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1f9 PA:1c00a1f9 +75000234ns 1333165 1c000e82 fff60613 addi x12, x12, -1 x12=0000003e x12:0000003f +75000254ns 1333166 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1fa x6:1c00a1f9 +75000273ns 1333167 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000003e +75000353ns 1333171 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1fa PA:1c00a1fa +75000372ns 1333172 1c000e82 fff60613 addi x12, x12, -1 x12=0000003d x12:0000003e +75000392ns 1333173 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1fb x6:1c00a1fa +75000412ns 1333174 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000003d +75000491ns 1333178 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1fb PA:1c00a1fb +75000511ns 1333179 1c000e82 fff60613 addi x12, x12, -1 x12=0000003c x12:0000003d +75000531ns 1333180 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1fc x6:1c00a1fb +75000551ns 1333181 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000003c +75000630ns 1333185 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1fc PA:1c00a1fc +75000649ns 1333186 1c000e82 fff60613 addi x12, x12, -1 x12=0000003b x12:0000003c +75000669ns 1333187 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1fd x6:1c00a1fc +75000689ns 1333188 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000003b +75000768ns 1333192 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1fd PA:1c00a1fd +75000788ns 1333193 1c000e82 fff60613 addi x12, x12, -1 x12=0000003a x12:0000003b +75000808ns 1333194 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1fe x6:1c00a1fd +75000828ns 1333195 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000003a +75000907ns 1333199 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1fe PA:1c00a1fe +75000927ns 1333200 1c000e82 fff60613 addi x12, x12, -1 x12=00000039 x12:0000003a +75000946ns 1333201 1c000e84 00130313 addi x6, x6, 1 x6=1c00a1ff x6:1c00a1fe +75000966ns 1333202 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000039 +75001045ns 1333206 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a1ff PA:1c00a1ff +75001065ns 1333207 1c000e82 fff60613 addi x12, x12, -1 x12=00000038 x12:00000039 +75001085ns 1333208 1c000e84 00130313 addi x6, x6, 1 x6=1c00a200 x6:1c00a1ff +75001105ns 1333209 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000038 +75001184ns 1333213 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a200 PA:1c00a200 +75001204ns 1333214 1c000e82 fff60613 addi x12, x12, -1 x12=00000037 x12:00000038 +75001223ns 1333215 1c000e84 00130313 addi x6, x6, 1 x6=1c00a201 x6:1c00a200 +75001243ns 1333216 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000037 +75001322ns 1333220 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a201 PA:1c00a201 +75001342ns 1333221 1c000e82 fff60613 addi x12, x12, -1 x12=00000036 x12:00000037 +75001362ns 1333222 1c000e84 00130313 addi x6, x6, 1 x6=1c00a202 x6:1c00a201 +75001382ns 1333223 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000036 +75001461ns 1333227 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a202 PA:1c00a202 +75001481ns 1333228 1c000e82 fff60613 addi x12, x12, -1 x12=00000035 x12:00000036 +75001501ns 1333229 1c000e84 00130313 addi x6, x6, 1 x6=1c00a203 x6:1c00a202 +75001520ns 1333230 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000035 +75001599ns 1333234 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a203 PA:1c00a203 +75001619ns 1333235 1c000e82 fff60613 addi x12, x12, -1 x12=00000034 x12:00000035 +75001639ns 1333236 1c000e84 00130313 addi x6, x6, 1 x6=1c00a204 x6:1c00a203 +75001659ns 1333237 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000034 +75001738ns 1333241 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a204 PA:1c00a204 +75001758ns 1333242 1c000e82 fff60613 addi x12, x12, -1 x12=00000033 x12:00000034 +75001778ns 1333243 1c000e84 00130313 addi x6, x6, 1 x6=1c00a205 x6:1c00a204 +75001797ns 1333244 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000033 +75001877ns 1333248 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a205 PA:1c00a205 +75001896ns 1333249 1c000e82 fff60613 addi x12, x12, -1 x12=00000032 x12:00000033 +75001916ns 1333250 1c000e84 00130313 addi x6, x6, 1 x6=1c00a206 x6:1c00a205 +75001936ns 1333251 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000032 +75002015ns 1333255 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a206 PA:1c00a206 +75002035ns 1333256 1c000e82 fff60613 addi x12, x12, -1 x12=00000031 x12:00000032 +75002055ns 1333257 1c000e84 00130313 addi x6, x6, 1 x6=1c00a207 x6:1c00a206 +75002074ns 1333258 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000031 +75002154ns 1333262 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a207 PA:1c00a207 +75002173ns 1333263 1c000e82 fff60613 addi x12, x12, -1 x12=00000030 x12:00000031 +75002193ns 1333264 1c000e84 00130313 addi x6, x6, 1 x6=1c00a208 x6:1c00a207 +75002213ns 1333265 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000030 +75002292ns 1333269 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a208 PA:1c00a208 +75002312ns 1333270 1c000e82 fff60613 addi x12, x12, -1 x12=0000002f x12:00000030 +75002332ns 1333271 1c000e84 00130313 addi x6, x6, 1 x6=1c00a209 x6:1c00a208 +75002352ns 1333272 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000002f +75002431ns 1333276 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a209 PA:1c00a209 +75002451ns 1333277 1c000e82 fff60613 addi x12, x12, -1 x12=0000002e x12:0000002f +75002470ns 1333278 1c000e84 00130313 addi x6, x6, 1 x6=1c00a20a x6:1c00a209 +75002490ns 1333279 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000002e +75002569ns 1333283 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a20a PA:1c00a20a +75002589ns 1333284 1c000e82 fff60613 addi x12, x12, -1 x12=0000002d x12:0000002e +75002609ns 1333285 1c000e84 00130313 addi x6, x6, 1 x6=1c00a20b x6:1c00a20a +75002629ns 1333286 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000002d +75002708ns 1333290 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a20b PA:1c00a20b +75002728ns 1333291 1c000e82 fff60613 addi x12, x12, -1 x12=0000002c x12:0000002d +75002747ns 1333292 1c000e84 00130313 addi x6, x6, 1 x6=1c00a20c x6:1c00a20b +75002767ns 1333293 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000002c +75002846ns 1333297 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a20c PA:1c00a20c +75002866ns 1333298 1c000e82 fff60613 addi x12, x12, -1 x12=0000002b x12:0000002c +75002886ns 1333299 1c000e84 00130313 addi x6, x6, 1 x6=1c00a20d x6:1c00a20c +75002906ns 1333300 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000002b +75002985ns 1333304 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a20d PA:1c00a20d +75003005ns 1333305 1c000e82 fff60613 addi x12, x12, -1 x12=0000002a x12:0000002b +75003025ns 1333306 1c000e84 00130313 addi x6, x6, 1 x6=1c00a20e x6:1c00a20d +75003044ns 1333307 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000002a +75003123ns 1333311 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a20e PA:1c00a20e +75003143ns 1333312 1c000e82 fff60613 addi x12, x12, -1 x12=00000029 x12:0000002a +75003163ns 1333313 1c000e84 00130313 addi x6, x6, 1 x6=1c00a20f x6:1c00a20e +75003183ns 1333314 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000029 +75003262ns 1333318 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a20f PA:1c00a20f +75003282ns 1333319 1c000e82 fff60613 addi x12, x12, -1 x12=00000028 x12:00000029 +75003302ns 1333320 1c000e84 00130313 addi x6, x6, 1 x6=1c00a210 x6:1c00a20f +75003321ns 1333321 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000028 +75003401ns 1333325 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a210 PA:1c00a210 +75003420ns 1333326 1c000e82 fff60613 addi x12, x12, -1 x12=00000027 x12:00000028 +75003440ns 1333327 1c000e84 00130313 addi x6, x6, 1 x6=1c00a211 x6:1c00a210 +75003460ns 1333328 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000027 +75003539ns 1333332 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a211 PA:1c00a211 +75003559ns 1333333 1c000e82 fff60613 addi x12, x12, -1 x12=00000026 x12:00000027 +75003579ns 1333334 1c000e84 00130313 addi x6, x6, 1 x6=1c00a212 x6:1c00a211 +75003598ns 1333335 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000026 +75003678ns 1333339 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a212 PA:1c00a212 +75003697ns 1333340 1c000e82 fff60613 addi x12, x12, -1 x12=00000025 x12:00000026 +75003717ns 1333341 1c000e84 00130313 addi x6, x6, 1 x6=1c00a213 x6:1c00a212 +75003737ns 1333342 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000025 +75003816ns 1333346 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a213 PA:1c00a213 +75003836ns 1333347 1c000e82 fff60613 addi x12, x12, -1 x12=00000024 x12:00000025 +75003856ns 1333348 1c000e84 00130313 addi x6, x6, 1 x6=1c00a214 x6:1c00a213 +75003876ns 1333349 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000024 +75003955ns 1333353 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a214 PA:1c00a214 +75003975ns 1333354 1c000e82 fff60613 addi x12, x12, -1 x12=00000023 x12:00000024 +75003994ns 1333355 1c000e84 00130313 addi x6, x6, 1 x6=1c00a215 x6:1c00a214 +75004014ns 1333356 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000023 +75004093ns 1333360 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a215 PA:1c00a215 +75004113ns 1333361 1c000e82 fff60613 addi x12, x12, -1 x12=00000022 x12:00000023 +75004133ns 1333362 1c000e84 00130313 addi x6, x6, 1 x6=1c00a216 x6:1c00a215 +75004153ns 1333363 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000022 +75004232ns 1333367 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a216 PA:1c00a216 +75004252ns 1333368 1c000e82 fff60613 addi x12, x12, -1 x12=00000021 x12:00000022 +75004271ns 1333369 1c000e84 00130313 addi x6, x6, 1 x6=1c00a217 x6:1c00a216 +75004291ns 1333370 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000021 +75004370ns 1333374 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a217 PA:1c00a217 +75004390ns 1333375 1c000e82 fff60613 addi x12, x12, -1 x12=00000020 x12:00000021 +75004410ns 1333376 1c000e84 00130313 addi x6, x6, 1 x6=1c00a218 x6:1c00a217 +75004430ns 1333377 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000020 +75004509ns 1333381 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a218 PA:1c00a218 +75004529ns 1333382 1c000e82 fff60613 addi x12, x12, -1 x12=0000001f x12:00000020 +75004548ns 1333383 1c000e84 00130313 addi x6, x6, 1 x6=1c00a219 x6:1c00a218 +75004568ns 1333384 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000001f +75004647ns 1333388 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a219 PA:1c00a219 +75004667ns 1333389 1c000e82 fff60613 addi x12, x12, -1 x12=0000001e x12:0000001f +75004687ns 1333390 1c000e84 00130313 addi x6, x6, 1 x6=1c00a21a x6:1c00a219 +75004707ns 1333391 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000001e +75004786ns 1333395 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a21a PA:1c00a21a +75004806ns 1333396 1c000e82 fff60613 addi x12, x12, -1 x12=0000001d x12:0000001e +75004826ns 1333397 1c000e84 00130313 addi x6, x6, 1 x6=1c00a21b x6:1c00a21a +75004845ns 1333398 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000001d +75004925ns 1333402 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a21b PA:1c00a21b +75004944ns 1333403 1c000e82 fff60613 addi x12, x12, -1 x12=0000001c x12:0000001d +75004964ns 1333404 1c000e84 00130313 addi x6, x6, 1 x6=1c00a21c x6:1c00a21b +75004984ns 1333405 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000001c +75005063ns 1333409 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a21c PA:1c00a21c +75005083ns 1333410 1c000e82 fff60613 addi x12, x12, -1 x12=0000001b x12:0000001c +75005103ns 1333411 1c000e84 00130313 addi x6, x6, 1 x6=1c00a21d x6:1c00a21c +75005122ns 1333412 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000001b +75005202ns 1333416 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a21d PA:1c00a21d +75005221ns 1333417 1c000e82 fff60613 addi x12, x12, -1 x12=0000001a x12:0000001b +75005241ns 1333418 1c000e84 00130313 addi x6, x6, 1 x6=1c00a21e x6:1c00a21d +75005261ns 1333419 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000001a +75005340ns 1333423 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a21e PA:1c00a21e +75005360ns 1333424 1c000e82 fff60613 addi x12, x12, -1 x12=00000019 x12:0000001a +75005380ns 1333425 1c000e84 00130313 addi x6, x6, 1 x6=1c00a21f x6:1c00a21e +75005400ns 1333426 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000019 +75005479ns 1333430 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a21f PA:1c00a21f +75005499ns 1333431 1c000e82 fff60613 addi x12, x12, -1 x12=00000018 x12:00000019 +75005518ns 1333432 1c000e84 00130313 addi x6, x6, 1 x6=1c00a220 x6:1c00a21f +75005538ns 1333433 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000018 +75005617ns 1333437 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a220 PA:1c00a220 +75005637ns 1333438 1c000e82 fff60613 addi x12, x12, -1 x12=00000017 x12:00000018 +75005657ns 1333439 1c000e84 00130313 addi x6, x6, 1 x6=1c00a221 x6:1c00a220 +75005677ns 1333440 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000017 +75005756ns 1333444 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a221 PA:1c00a221 +75005776ns 1333445 1c000e82 fff60613 addi x12, x12, -1 x12=00000016 x12:00000017 +75005795ns 1333446 1c000e84 00130313 addi x6, x6, 1 x6=1c00a222 x6:1c00a221 +75005815ns 1333447 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000016 +75005894ns 1333451 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a222 PA:1c00a222 +75005914ns 1333452 1c000e82 fff60613 addi x12, x12, -1 x12=00000015 x12:00000016 +75005934ns 1333453 1c000e84 00130313 addi x6, x6, 1 x6=1c00a223 x6:1c00a222 +75005954ns 1333454 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000015 +75006033ns 1333458 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a223 PA:1c00a223 +75006053ns 1333459 1c000e82 fff60613 addi x12, x12, -1 x12=00000014 x12:00000015 +75006072ns 1333460 1c000e84 00130313 addi x6, x6, 1 x6=1c00a224 x6:1c00a223 +75006092ns 1333461 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000014 +75006171ns 1333465 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a224 PA:1c00a224 +75006191ns 1333466 1c000e82 fff60613 addi x12, x12, -1 x12=00000013 x12:00000014 +75006211ns 1333467 1c000e84 00130313 addi x6, x6, 1 x6=1c00a225 x6:1c00a224 +75006231ns 1333468 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000013 +75006310ns 1333472 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a225 PA:1c00a225 +75006330ns 1333473 1c000e82 fff60613 addi x12, x12, -1 x12=00000012 x12:00000013 +75006350ns 1333474 1c000e84 00130313 addi x6, x6, 1 x6=1c00a226 x6:1c00a225 +75006369ns 1333475 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000012 +75006449ns 1333479 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a226 PA:1c00a226 +75006468ns 1333480 1c000e82 fff60613 addi x12, x12, -1 x12=00000011 x12:00000012 +75006488ns 1333481 1c000e84 00130313 addi x6, x6, 1 x6=1c00a227 x6:1c00a226 +75006508ns 1333482 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000011 +75006587ns 1333486 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a227 PA:1c00a227 +75006607ns 1333487 1c000e82 fff60613 addi x12, x12, -1 x12=00000010 x12:00000011 +75006627ns 1333488 1c000e84 00130313 addi x6, x6, 1 x6=1c00a228 x6:1c00a227 +75006646ns 1333489 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000010 +75006726ns 1333493 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a228 PA:1c00a228 +75006745ns 1333494 1c000e82 fff60613 addi x12, x12, -1 x12=0000000f x12:00000010 +75006765ns 1333495 1c000e84 00130313 addi x6, x6, 1 x6=1c00a229 x6:1c00a228 +75006785ns 1333496 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000000f +75006864ns 1333500 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a229 PA:1c00a229 +75006884ns 1333501 1c000e82 fff60613 addi x12, x12, -1 x12=0000000e x12:0000000f +75006904ns 1333502 1c000e84 00130313 addi x6, x6, 1 x6=1c00a22a x6:1c00a229 +75006924ns 1333503 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000000e +75007003ns 1333507 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a22a PA:1c00a22a +75007022ns 1333508 1c000e82 fff60613 addi x12, x12, -1 x12=0000000d x12:0000000e +75007042ns 1333509 1c000e84 00130313 addi x6, x6, 1 x6=1c00a22b x6:1c00a22a +75007062ns 1333510 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000000d +75007141ns 1333514 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a22b PA:1c00a22b +75007161ns 1333515 1c000e82 fff60613 addi x12, x12, -1 x12=0000000c x12:0000000d +75007181ns 1333516 1c000e84 00130313 addi x6, x6, 1 x6=1c00a22c x6:1c00a22b +75007201ns 1333517 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000000c +75007280ns 1333521 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a22c PA:1c00a22c +75007300ns 1333522 1c000e82 fff60613 addi x12, x12, -1 x12=0000000b x12:0000000c +75007319ns 1333523 1c000e84 00130313 addi x6, x6, 1 x6=1c00a22d x6:1c00a22c +75007339ns 1333524 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000000b +75007418ns 1333528 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a22d PA:1c00a22d +75007438ns 1333529 1c000e82 fff60613 addi x12, x12, -1 x12=0000000a x12:0000000b +75007458ns 1333530 1c000e84 00130313 addi x6, x6, 1 x6=1c00a22e x6:1c00a22d +75007478ns 1333531 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000000a +75007557ns 1333535 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a22e PA:1c00a22e +75007577ns 1333536 1c000e82 fff60613 addi x12, x12, -1 x12=00000009 x12:0000000a +75007596ns 1333537 1c000e84 00130313 addi x6, x6, 1 x6=1c00a22f x6:1c00a22e +75007616ns 1333538 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000009 +75007695ns 1333542 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a22f PA:1c00a22f +75007715ns 1333543 1c000e82 fff60613 addi x12, x12, -1 x12=00000008 x12:00000009 +75007735ns 1333544 1c000e84 00130313 addi x6, x6, 1 x6=1c00a230 x6:1c00a22f +75007755ns 1333545 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000008 +75007834ns 1333549 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a230 PA:1c00a230 +75007854ns 1333550 1c000e82 fff60613 addi x12, x12, -1 x12=00000007 x12:00000008 +75007874ns 1333551 1c000e84 00130313 addi x6, x6, 1 x6=1c00a231 x6:1c00a230 +75007893ns 1333552 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000007 +75007973ns 1333556 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a231 PA:1c00a231 +75007992ns 1333557 1c000e82 fff60613 addi x12, x12, -1 x12=00000006 x12:00000007 +75008012ns 1333558 1c000e84 00130313 addi x6, x6, 1 x6=1c00a232 x6:1c00a231 +75008032ns 1333559 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000006 +75008111ns 1333563 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a232 PA:1c00a232 +75008131ns 1333564 1c000e82 fff60613 addi x12, x12, -1 x12=00000005 x12:00000006 +75008151ns 1333565 1c000e84 00130313 addi x6, x6, 1 x6=1c00a233 x6:1c00a232 +75008170ns 1333566 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000005 +75008250ns 1333570 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a233 PA:1c00a233 +75008269ns 1333571 1c000e82 fff60613 addi x12, x12, -1 x12=00000004 x12:00000005 +75008289ns 1333572 1c000e84 00130313 addi x6, x6, 1 x6=1c00a234 x6:1c00a233 +75008309ns 1333573 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000004 +75008388ns 1333577 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a234 PA:1c00a234 +75008408ns 1333578 1c000e82 fff60613 addi x12, x12, -1 x12=00000003 x12:00000004 +75008428ns 1333579 1c000e84 00130313 addi x6, x6, 1 x6=1c00a235 x6:1c00a234 +75008448ns 1333580 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000003 +75008527ns 1333584 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a235 PA:1c00a235 +75008546ns 1333585 1c000e82 fff60613 addi x12, x12, -1 x12=00000002 x12:00000003 +75008566ns 1333586 1c000e84 00130313 addi x6, x6, 1 x6=1c00a236 x6:1c00a235 +75008586ns 1333587 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000002 +75008665ns 1333591 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a236 PA:1c00a236 +75008685ns 1333592 1c000e82 fff60613 addi x12, x12, -1 x12=00000001 x12:00000002 +75008705ns 1333593 1c000e84 00130313 addi x6, x6, 1 x6=1c00a237 x6:1c00a236 +75008725ns 1333594 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000001 +75008804ns 1333598 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a237 PA:1c00a237 +75008824ns 1333599 1c000e82 fff60613 addi x12, x12, -1 x12=00000000 x12:00000001 +75008843ns 1333600 1c000e84 00130313 addi x6, x6, 1 x6=1c00a238 x6:1c00a237 +75008863ns 1333601 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000000 +75008883ns 1333602 1c000e88 00008067 jalr x0, x1, 0 x1:1c002116 +75008942ns 1333605 1c002116 34440793 addi x15, x8, 836 x15=1c00a0fc x8:1c009db8 +75008962ns 1333606 1c00211a 04f42e23 sw x15, 92(x8) x15:1c00a0fc x8:1c009db8 PA:1c009e14 +75008982ns 1333607 1c00211c 3ac40793 addi x15, x8, 940 x15=1c00a164 x8:1c009db8 +75009002ns 1333608 1c002120 06f42023 sw x15, 96(x8) x15:1c00a164 x8:1c009db8 PA:1c009e18 +75009021ns 1333609 1c002122 00100713 addi x14, x0, 1 x14=00000001 +75009041ns 1333610 1c002124 41440793 addi x15, x8, 1044 x15=1c00a1cc x8:1c009db8 +75009061ns 1333611 1c002128 06f42223 sw x15, 100(x8) x15:1c00a1cc x8:1c009db8 PA:1c009e1c +75009081ns 1333612 1c00212a 10e42023 sw x14, 256(x8) x14:00000001 x8:1c009db8 PA:1c009eb8 +75009101ns 1333613 1c00212e 00000793 addi x15, x0, 0 x15=00000000 +75009120ns 1333614 1c002130 abcd3737 lui x14, 0xabcd3000 x14=abcd3000 +75009140ns 1333615 1c002134 10f42223 sw x15, 260(x8) x15:00000000 x8:1c009db8 PA:1c009ebc +75009160ns 1333616 1c002138 30e70713 addi x14, x14, 782 x14=abcd330e x14:abcd3000 +75009180ns 1333617 1c00213c 10040793 addi x15, x8, 256 x15=1c009eb8 x8:1c009db8 +75009200ns 1333618 1c002140 00e7a423 sw x14, 8(x15) x14:abcd330e x15:1c009eb8 PA:1c009ec0 +75009219ns 1333619 1c002142 e66d1737 lui x14, 0xe66d1000 x14=e66d1000 +75009239ns 1333620 1c002146 23470713 addi x14, x14, 564 x14=e66d1234 x14:e66d1000 +75009259ns 1333621 1c00214a 00e7a623 sw x14, 12(x15) x14:e66d1234 x15:1c009eb8 PA:1c009ec4 +75009279ns 1333622 1c00214c 0005e737 lui x14, 0x5e000 x14=0005e000 +75009299ns 1333623 1c002150 eec70713 addi x14, x14, -276 x14=0005deec x14:0005e000 +75009318ns 1333624 1c002154 ffc98993 addi x19, x19, -4 x19=0000063c x19:00000640 +75009338ns 1333625 1c002156 00e7a823 sw x14, 16(x15) x14:0005deec x15:1c009eb8 PA:1c009ec8 +75009358ns 1333626 1c002158 018989b3 add x19, x19, x24 x19=1c009dac x19:0000063c x24:1c009770 +75009378ns 1333627 1c00215a 00b00793 addi x15, x0, 11 x15=0000000b +75009398ns 1333628 1c00215c 10f41a23 sh x15, 276(x8) x15:0000000b x8:1c009db8 PA:1c009ecc +75009417ns 1333629 1c002160 480402a3 sb x0, 1157(x8) x8:1c009db8 PA:1c00a23d +75009437ns 1333630 1c002164 01700633 add x12, x0, x23 x12=00000000 x23:00000000 +75009457ns 1333631 1c002166 016005b3 add x11, x0, x22 x11=1c003754 x22:1c003754 +75009477ns 1333632 1c002168 ff09f513 andi x10, x19, -16 x10=1c009da0 x19:1c009dac +75009496ns 1333633 1c00216c c95fe0ef jal x1, -4972 x1=1c002170 +75009536ns 1333635 1c000e00 300022f3 csrrs x5, x0, 0x300 x5=00001800 +75009615ns 1333639 1c000e04 ff72f293 andi x5, x5, -9 x5=00001800 x5:00001800 +75009635ns 1333640 1c000e08 18800313 addi x6, x0, 392 x6=00000188 +75009655ns 1333641 1c000e0c 00431313 slli x6, x6, 0x4 x6=00001880 x6:00000188 +75009675ns 1333642 1c000e0e 0062e2b3 or x5, x5, x6 x5=00001880 x5:00001800 x6:00001880 +75009694ns 1333643 1c000e12 ffc50513 addi x10, x10, -4 x10=1c009d9c x10:1c009da0 +75009714ns 1333644 1c000e14 00552023 sw x5, 0(x10) x5:00001880 x10:1c009d9c PA:1c009d9c +75009734ns 1333645 1c000e18 fa850513 addi x10, x10, -88 x10=1c009d44 x10:1c009d9c +75009754ns 1333646 1c000e1c 00c52023 sw x12, 0(x10) x12:00000000 x10:1c009d44 PA:1c009d44 +75009774ns 1333647 1c000e1e fe850513 addi x10, x10, -24 x10=1c009d2c x10:1c009d44 +75009793ns 1333648 1c000e20 00052023 sw x0, 0(x10) x10:1c009d2c PA:1c009d2c +75009813ns 1333649 1c000e24 00600293 addi x5, x0, 6 x5=00000006 +75009833ns 1333650 1c000e26 00028763 beq x5, x0, 14 x5:00000006 +75009853ns 1333651 1c000e2a ffc50513 addi x10, x10, -4 x10=1c009d28 x10:1c009d2c +75009873ns 1333652 1c000e2c 00052023 sw x0, 0(x10) x10:1c009d28 PA:1c009d28 +75009892ns 1333653 1c000e30 fff28293 addi x5, x5, -1 x5=00000005 x5:00000006 +75009912ns 1333654 1c000e32 ff5ff06f jal x0, -12 +75009971ns 1333657 1c000e26 00028763 beq x5, x0, 14 x5:00000005 +75009991ns 1333658 1c000e2a ffc50513 addi x10, x10, -4 x10=1c009d24 x10:1c009d28 +75010011ns 1333659 1c000e2c 00052023 sw x0, 0(x10) x10:1c009d24 PA:1c009d24 +75010031ns 1333660 1c000e30 fff28293 addi x5, x5, -1 x5=00000004 x5:00000005 +75010051ns 1333661 1c000e32 ff5ff06f jal x0, -12 +75010110ns 1333664 1c000e26 00028763 beq x5, x0, 14 x5:00000004 +75010130ns 1333665 1c000e2a ffc50513 addi x10, x10, -4 x10=1c009d20 x10:1c009d24 +75010150ns 1333666 1c000e2c 00052023 sw x0, 0(x10) x10:1c009d20 PA:1c009d20 +75010169ns 1333667 1c000e30 fff28293 addi x5, x5, -1 x5=00000003 x5:00000004 +75010189ns 1333668 1c000e32 ff5ff06f jal x0, -12 +75010249ns 1333671 1c000e26 00028763 beq x5, x0, 14 x5:00000003 +75010268ns 1333672 1c000e2a ffc50513 addi x10, x10, -4 x10=1c009d1c x10:1c009d20 +75010288ns 1333673 1c000e2c 00052023 sw x0, 0(x10) x10:1c009d1c PA:1c009d1c +75010308ns 1333674 1c000e30 fff28293 addi x5, x5, -1 x5=00000002 x5:00000003 +75010328ns 1333675 1c000e32 ff5ff06f jal x0, -12 +75010387ns 1333678 1c000e26 00028763 beq x5, x0, 14 x5:00000002 +75010407ns 1333679 1c000e2a ffc50513 addi x10, x10, -4 x10=1c009d18 x10:1c009d1c +75010427ns 1333680 1c000e2c 00052023 sw x0, 0(x10) x10:1c009d18 PA:1c009d18 +75010447ns 1333681 1c000e30 fff28293 addi x5, x5, -1 x5=00000001 x5:00000002 +75010466ns 1333682 1c000e32 ff5ff06f jal x0, -12 +75010526ns 1333685 1c000e26 00028763 beq x5, x0, 14 x5:00000001 +75010545ns 1333686 1c000e2a ffc50513 addi x10, x10, -4 x10=1c009d14 x10:1c009d18 +75010565ns 1333687 1c000e2c 00052023 sw x0, 0(x10) x10:1c009d14 PA:1c009d14 +75010585ns 1333688 1c000e30 fff28293 addi x5, x5, -1 x5=00000000 x5:00000001 +75010605ns 1333689 1c000e32 ff5ff06f jal x0, -12 +75010664ns 1333692 1c000e26 00028763 beq x5, x0, 14 x5:00000000 +75010724ns 1333695 1c000e34 ffc50513 addi x10, x10, -4 x10=1c009d10 x10:1c009d14 +75010743ns 1333696 1c000e36 00b52023 sw x11, 0(x10) x11:1c003754 x10:1c009d10 PA:1c009d10 +75010763ns 1333697 1c000e38 00008067 jalr x0, x1, 0 x1:1c002170 +75010803ns 1333699 1c002170 00a42023 sw x10, 0(x8) x10:1c009d10 x8:1c009db8 PA:1c009db8 +75010823ns 1333700 1c002172 000a8463 beq x21, x0, 8 x21:1c01999c +75010842ns 1333701 1c002176 008aa023 sw x8, 0(x21) x8:1c009db8 x21:1c01999c PA:1c01999c +75010862ns 1333702 1c00217a e93ff0ef jal x1, -366 x1=1c00217c +75010902ns 1333704 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +75010981ns 1333708 1c002010 d841a783 lw x15, -636(x3) x15=00000000 x3:1c0093dc PA:1c009160 +75011020ns 1333710 1c002014 00078863 beq x15, x0, 16 x15:00000000 +75011080ns 1333713 1c002024 00008067 jalr x0, x1, 0 x1:1c00217c +75011119ns 1333715 1c00217c d6018793 addi x15, x3, -672 x15=1c00913c x3:1c0093dc +75011139ns 1333716 1c002180 0007a703 lw x14, 0(x15) x14=00000000 x15:1c00913c PA:1c00913c +75011159ns 1333717 1c002182 1c0094b7 lui x9, 0x1c009000 x9=1c009000 +75011179ns 1333718 1c002186 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +75011199ns 1333719 1c002188 00e7a023 sw x14, 0(x15) x14:00000001 x15:1c00913c PA:1c00913c +75011218ns 1333720 1c00218a d5418713 addi x14, x3, -684 x14=1c009130 x3:1c0093dc +75011238ns 1333721 1c00218e 00072703 lw x14, 0(x14) x14=00000000 x14:1c009130 PA:1c009130 +75011258ns 1333722 1c002190 d5418913 addi x18, x3, -684 x18=1c009130 x3:1c0093dc +75011278ns 1333723 1c002194 c8848993 addi x19, x9, -888 x19=1c008c88 x9:1c009000 +75011298ns 1333724 1c002198 0a071d63 bne x14, x0, 186 x14:00000000 +75011317ns 1333725 1c00219c 00892023 sw x8, 0(x18) x8:1c009db8 x18:1c009130 PA:1c009130 +75011337ns 1333726 1c0021a0 0007a703 lw x14, 0(x15) x14=00000001 x15:1c00913c PA:1c00913c +75011357ns 1333727 1c0021a2 00100793 addi x15, x0, 1 x15=00000001 +75011377ns 1333728 1c0021a4 04f71863 bne x14, x15, 80 x14:00000001 x15:00000001 +75011397ns 1333729 1c0021a8 c8848493 addi x9, x9, -888 x9=1c008c88 x9:1c009000 +75011416ns 1333730 1c0021ac 06498a93 addi x21, x19, 100 x21=1c008cec x19:1c008c88 +75011436ns 1333731 1c0021b0 00900533 add x10, x0, x9 x10=1c008c88 x9:1c008c88 +75011456ns 1333732 1c0021b2 01448493 addi x9, x9, 20 x9=1c008c9c x9:1c008c88 +75011476ns 1333733 1c0021b4 d13fe0ef jal x1, -4846 x1=1c0021b8 +75011535ns 1333736 1c000ec6 00850793 addi x15, x10, 8 x15=1c008c90 x10:1c008c88 +75011555ns 1333737 1c000eca fff00713 addi x14, x0, -1 x14=ffffffff +75011575ns 1333738 1c000ecc 00f52223 sw x15, 4(x10) x15:1c008c90 x10:1c008c88 PA:1c008c8c +75011594ns 1333739 1c000ece 00e52423 sw x14, 8(x10) x14:ffffffff x10:1c008c88 PA:1c008c90 +75011614ns 1333740 1c000ed0 00f52623 sw x15, 12(x10) x15:1c008c90 x10:1c008c88 PA:1c008c94 +75011634ns 1333741 1c000ed2 00f52823 sw x15, 16(x10) x15:1c008c90 x10:1c008c88 PA:1c008c98 +75011654ns 1333742 1c000ed4 00052023 sw x0, 0(x10) x10:1c008c88 PA:1c008c88 +75011674ns 1333743 1c000ed8 00008067 jalr x0, x1, 0 x1:1c0021b8 +75011713ns 1333745 1c0021b8 fe9a9ce3 bne x21, x9, -8 x21:1c008cec x9:1c008c9c +75011773ns 1333748 1c0021b0 00900533 add x10, x0, x9 x10=1c008c9c x9:1c008c9c +75011792ns 1333749 1c0021b2 01448493 addi x9, x9, 20 x9=1c008cb0 x9:1c008c9c +75011812ns 1333750 1c0021b4 d13fe0ef jal x1, -4846 x1=1c0021b8 +75011872ns 1333753 1c000ec6 00850793 addi x15, x10, 8 x15=1c008ca4 x10:1c008c9c +75011891ns 1333754 1c000eca fff00713 addi x14, x0, -1 x14=ffffffff +75011911ns 1333755 1c000ecc 00f52223 sw x15, 4(x10) x15:1c008ca4 x10:1c008c9c PA:1c008ca0 +75011931ns 1333756 1c000ece 00e52423 sw x14, 8(x10) x14:ffffffff x10:1c008c9c PA:1c008ca4 +75011951ns 1333757 1c000ed0 00f52623 sw x15, 12(x10) x15:1c008ca4 x10:1c008c9c PA:1c008ca8 +75011970ns 1333758 1c000ed2 00f52823 sw x15, 16(x10) x15:1c008ca4 x10:1c008c9c PA:1c008cac +75011990ns 1333759 1c000ed4 00052023 sw x0, 0(x10) x10:1c008c9c PA:1c008c9c +75012010ns 1333760 1c000ed8 00008067 jalr x0, x1, 0 x1:1c0021b8 +75012050ns 1333762 1c0021b8 fe9a9ce3 bne x21, x9, -8 x21:1c008cec x9:1c008cb0 +75012109ns 1333765 1c0021b0 00900533 add x10, x0, x9 x10=1c008cb0 x9:1c008cb0 +75012129ns 1333766 1c0021b2 01448493 addi x9, x9, 20 x9=1c008cc4 x9:1c008cb0 +75012149ns 1333767 1c0021b4 d13fe0ef jal x1, -4846 x1=1c0021b8 +75012208ns 1333770 1c000ec6 00850793 addi x15, x10, 8 x15=1c008cb8 x10:1c008cb0 +75012228ns 1333771 1c000eca fff00713 addi x14, x0, -1 x14=ffffffff +75012248ns 1333772 1c000ecc 00f52223 sw x15, 4(x10) x15:1c008cb8 x10:1c008cb0 PA:1c008cb4 +75012267ns 1333773 1c000ece 00e52423 sw x14, 8(x10) x14:ffffffff x10:1c008cb0 PA:1c008cb8 +75012287ns 1333774 1c000ed0 00f52623 sw x15, 12(x10) x15:1c008cb8 x10:1c008cb0 PA:1c008cbc +75012307ns 1333775 1c000ed2 00f52823 sw x15, 16(x10) x15:1c008cb8 x10:1c008cb0 PA:1c008cc0 +75012327ns 1333776 1c000ed4 00052023 sw x0, 0(x10) x10:1c008cb0 PA:1c008cb0 +75012347ns 1333777 1c000ed8 00008067 jalr x0, x1, 0 x1:1c0021b8 +75012386ns 1333779 1c0021b8 fe9a9ce3 bne x21, x9, -8 x21:1c008cec x9:1c008cc4 +75012445ns 1333782 1c0021b0 00900533 add x10, x0, x9 x10=1c008cc4 x9:1c008cc4 +75012465ns 1333783 1c0021b2 01448493 addi x9, x9, 20 x9=1c008cd8 x9:1c008cc4 +75012485ns 1333784 1c0021b4 d13fe0ef jal x1, -4846 x1=1c0021b8 +75012544ns 1333787 1c000ec6 00850793 addi x15, x10, 8 x15=1c008ccc x10:1c008cc4 +75012564ns 1333788 1c000eca fff00713 addi x14, x0, -1 x14=ffffffff +75012584ns 1333789 1c000ecc 00f52223 sw x15, 4(x10) x15:1c008ccc x10:1c008cc4 PA:1c008cc8 +75012604ns 1333790 1c000ece 00e52423 sw x14, 8(x10) x14:ffffffff x10:1c008cc4 PA:1c008ccc +75012624ns 1333791 1c000ed0 00f52623 sw x15, 12(x10) x15:1c008ccc x10:1c008cc4 PA:1c008cd0 +75012643ns 1333792 1c000ed2 00f52823 sw x15, 16(x10) x15:1c008ccc x10:1c008cc4 PA:1c008cd4 +75012663ns 1333793 1c000ed4 00052023 sw x0, 0(x10) x10:1c008cc4 PA:1c008cc4 +75012683ns 1333794 1c000ed8 00008067 jalr x0, x1, 0 x1:1c0021b8 +75012723ns 1333796 1c0021b8 fe9a9ce3 bne x21, x9, -8 x21:1c008cec x9:1c008cd8 +75012782ns 1333799 1c0021b0 00900533 add x10, x0, x9 x10=1c008cd8 x9:1c008cd8 +75012802ns 1333800 1c0021b2 01448493 addi x9, x9, 20 x9=1c008cec x9:1c008cd8 +75012822ns 1333801 1c0021b4 d13fe0ef jal x1, -4846 x1=1c0021b8 +75012881ns 1333804 1c000ec6 00850793 addi x15, x10, 8 x15=1c008ce0 x10:1c008cd8 +75012901ns 1333805 1c000eca fff00713 addi x14, x0, -1 x14=ffffffff +75012921ns 1333806 1c000ecc 00f52223 sw x15, 4(x10) x15:1c008ce0 x10:1c008cd8 PA:1c008cdc +75012940ns 1333807 1c000ece 00e52423 sw x14, 8(x10) x14:ffffffff x10:1c008cd8 PA:1c008ce0 +75012960ns 1333808 1c000ed0 00f52623 sw x15, 12(x10) x15:1c008ce0 x10:1c008cd8 PA:1c008ce4 +75012980ns 1333809 1c000ed2 00f52823 sw x15, 16(x10) x15:1c008ce0 x10:1c008cd8 PA:1c008ce8 +75013000ns 1333810 1c000ed4 00052023 sw x0, 0(x10) x10:1c008cd8 PA:1c008cd8 +75013019ns 1333811 1c000ed8 00008067 jalr x0, x1, 0 x1:1c0021b8 +75013059ns 1333813 1c0021b8 fe9a9ce3 bne x21, x9, -8 x21:1c008cec x9:1c008cec +75013079ns 1333814 1c0021bc 91018a93 addi x21, x3, -1776 x21=1c008cec x3:1c0093dc +75013099ns 1333815 1c0021c0 91018513 addi x10, x3, -1776 x10=1c008cec x3:1c0093dc +75013118ns 1333816 1c0021c4 d03fe0ef jal x1, -4862 x1=1c0021c8 +75013178ns 1333819 1c000ec6 00850793 addi x15, x10, 8 x15=1c008cf4 x10:1c008cec +75013198ns 1333820 1c000eca fff00713 addi x14, x0, -1 x14=ffffffff +75013217ns 1333821 1c000ecc 00f52223 sw x15, 4(x10) x15:1c008cf4 x10:1c008cec PA:1c008cf0 +75013237ns 1333822 1c000ece 00e52423 sw x14, 8(x10) x14:ffffffff x10:1c008cec PA:1c008cf4 +75013257ns 1333823 1c000ed0 00f52623 sw x15, 12(x10) x15:1c008cf4 x10:1c008cec PA:1c008cf8 +75013277ns 1333824 1c000ed2 00f52823 sw x15, 16(x10) x15:1c008cf4 x10:1c008cec PA:1c008cfc +75013297ns 1333825 1c000ed4 00052023 sw x0, 0(x10) x10:1c008cec PA:1c008cec +75013316ns 1333826 1c000ed8 00008067 jalr x0, x1, 0 x1:1c0021c8 +75013356ns 1333828 1c0021c8 92418493 addi x9, x3, -1756 x9=1c008d00 x3:1c0093dc +75013376ns 1333829 1c0021cc 92418513 addi x10, x3, -1756 x10=1c008d00 x3:1c0093dc +75013396ns 1333830 1c0021d0 cf7fe0ef jal x1, -4874 x1=1c0021d4 +75013455ns 1333833 1c000ec6 00850793 addi x15, x10, 8 x15=1c008d08 x10:1c008d00 +75013475ns 1333834 1c000eca fff00713 addi x14, x0, -1 x14=ffffffff +75013494ns 1333835 1c000ecc 00f52223 sw x15, 4(x10) x15:1c008d08 x10:1c008d00 PA:1c008d04 +75013514ns 1333836 1c000ece 00e52423 sw x14, 8(x10) x14:ffffffff x10:1c008d00 PA:1c008d08 +75013534ns 1333837 1c000ed0 00f52623 sw x15, 12(x10) x15:1c008d08 x10:1c008d00 PA:1c008d0c +75013554ns 1333838 1c000ed2 00f52823 sw x15, 16(x10) x15:1c008d08 x10:1c008d00 PA:1c008d10 +75013574ns 1333839 1c000ed4 00052023 sw x0, 0(x10) x10:1c008d00 PA:1c008d00 +75013593ns 1333840 1c000ed8 00008067 jalr x0, x1, 0 x1:1c0021d4 +75013633ns 1333842 1c0021d4 93818513 addi x10, x3, -1736 x10=1c008d14 x3:1c0093dc +75013653ns 1333843 1c0021d8 ceffe0ef jal x1, -4882 x1=1c0021dc +75013712ns 1333846 1c000ec6 00850793 addi x15, x10, 8 x15=1c008d1c x10:1c008d14 +75013732ns 1333847 1c000eca fff00713 addi x14, x0, -1 x14=ffffffff +75013752ns 1333848 1c000ecc 00f52223 sw x15, 4(x10) x15:1c008d1c x10:1c008d14 PA:1c008d18 +75013772ns 1333849 1c000ece 00e52423 sw x14, 8(x10) x14:ffffffff x10:1c008d14 PA:1c008d1c +75013791ns 1333850 1c000ed0 00f52623 sw x15, 12(x10) x15:1c008d1c x10:1c008d14 PA:1c008d20 +75013811ns 1333851 1c000ed2 00f52823 sw x15, 16(x10) x15:1c008d1c x10:1c008d14 PA:1c008d24 +75013831ns 1333852 1c000ed4 00052023 sw x0, 0(x10) x10:1c008d14 PA:1c008d14 +75013851ns 1333853 1c000ed8 00008067 jalr x0, x1, 0 x1:1c0021dc +75013890ns 1333855 1c0021dc 96018513 addi x10, x3, -1696 x10=1c008d3c x3:1c0093dc +75013910ns 1333856 1c0021e0 ce7fe0ef jal x1, -4890 x1=1c0021e4 +75013969ns 1333859 1c000ec6 00850793 addi x15, x10, 8 x15=1c008d44 x10:1c008d3c +75013989ns 1333860 1c000eca fff00713 addi x14, x0, -1 x14=ffffffff +75014009ns 1333861 1c000ecc 00f52223 sw x15, 4(x10) x15:1c008d44 x10:1c008d3c PA:1c008d40 +75014029ns 1333862 1c000ece 00e52423 sw x14, 8(x10) x14:ffffffff x10:1c008d3c PA:1c008d44 +75014049ns 1333863 1c000ed0 00f52623 sw x15, 12(x10) x15:1c008d44 x10:1c008d3c PA:1c008d48 +75014068ns 1333864 1c000ed2 00f52823 sw x15, 16(x10) x15:1c008d44 x10:1c008d3c PA:1c008d4c +75014088ns 1333865 1c000ed4 00052023 sw x0, 0(x10) x10:1c008d3c PA:1c008d3c +75014108ns 1333866 1c000ed8 00008067 jalr x0, x1, 0 x1:1c0021e4 +75014148ns 1333868 1c0021e4 94c18513 addi x10, x3, -1716 x10=1c008d28 x3:1c0093dc +75014167ns 1333869 1c0021e8 cdffe0ef jal x1, -4898 x1=1c0021ec +75014227ns 1333872 1c000ec6 00850793 addi x15, x10, 8 x15=1c008d30 x10:1c008d28 +75014247ns 1333873 1c000eca fff00713 addi x14, x0, -1 x14=ffffffff +75014266ns 1333874 1c000ecc 00f52223 sw x15, 4(x10) x15:1c008d30 x10:1c008d28 PA:1c008d2c +75014286ns 1333875 1c000ece 00e52423 sw x14, 8(x10) x14:ffffffff x10:1c008d28 PA:1c008d30 +75014306ns 1333876 1c000ed0 00f52623 sw x15, 12(x10) x15:1c008d30 x10:1c008d28 PA:1c008d34 +75014326ns 1333877 1c000ed2 00f52823 sw x15, 16(x10) x15:1c008d30 x10:1c008d28 PA:1c008d38 +75014346ns 1333878 1c000ed4 00052023 sw x0, 0(x10) x10:1c008d28 PA:1c008d28 +75014365ns 1333879 1c000ed8 00008067 jalr x0, x1, 0 x1:1c0021ec +75014405ns 1333881 1c0021ec d551ac23 sw x21, -680(x3) x21:1c008cec x3:1c0093dc PA:1c009134 +75014425ns 1333882 1c0021f0 d491ae23 sw x9, -676(x3) x9:1c008d00 x3:1c0093dc PA:1c009138 +75014444ns 1333883 1c0021f4 d6c18713 addi x14, x3, -660 x14=1c009148 x3:1c0093dc +75014464ns 1333884 1c0021f8 00072783 lw x15, 0(x14) x15=00000000 x14:1c009148 PA:1c009148 +75014484ns 1333885 1c0021fa 02c42503 lw x10, 44(x8) x10=00000001 x8:1c009db8 PA:1c009de4 +75014504ns 1333886 1c0021fc 014005b3 add x11, x0, x20 x11=1c009dbc x20:1c009dbc +75014524ns 1333887 1c0021fe 00178793 addi x15, x15, 1 x15=00000001 x15:00000000 +75014543ns 1333888 1c002200 00f72023 sw x15, 0(x14) x15:00000001 x14:1c009148 PA:1c009148 +75014563ns 1333889 1c002202 d7018713 addi x14, x3, -656 x14=1c00914c x3:1c0093dc +75014583ns 1333890 1c002206 00072683 lw x13, 0(x14) x13=00000000 x14:1c00914c PA:1c00914c +75014603ns 1333891 1c002208 04f42423 sw x15, 72(x8) x15:00000001 x8:1c009db8 PA:1c009e00 +75014623ns 1333892 1c00220a 00100793 addi x15, x0, 1 x15=00000001 +75014642ns 1333893 1c00220c 00a797b3 sll x15, x15, x10 x15=00000002 x15:00000001 x10:00000001 +75014662ns 1333894 1c002210 00d7e7b3 or x15, x15, x13 x15=00000002 x15:00000002 x13:00000000 +75014682ns 1333895 1c002212 00f72023 sw x15, 0(x14) x15:00000002 x14:1c00914c PA:1c00914c +75014702ns 1333896 1c002214 01400793 addi x15, x0, 20 x15=00000014 +75014722ns 1333897 1c002216 02f50533 mul x10, x10, x15 x10=00000014 x10:00000001 x15:00000014 +75014741ns 1333898 1c00221a 01350533 add x10, x10, x19 x10=1c008c9c x10:00000014 x19:1c008c88 +75014761ns 1333899 1c00221c cc5fe0ef jal x1, -4924 x1=1c002220 +75014801ns 1333901 1c000ee0 00452783 lw x15, 4(x10) x15=1c008ca4 x10:1c008c9c PA:1c008ca0 +75014840ns 1333903 1c000ee2 0087a703 lw x14, 8(x15) x14=1c008ca4 x15:1c008ca4 PA:1c008cac +75014860ns 1333904 1c000ee4 00f5a223 sw x15, 4(x11) x15:1c008ca4 x11:1c009dbc PA:1c009dc0 +75014880ns 1333905 1c000ee6 00e5a423 sw x14, 8(x11) x14:1c008ca4 x11:1c009dbc PA:1c009dc4 +75014900ns 1333906 1c000ee8 0087a703 lw x14, 8(x15) x14=1c008ca4 x15:1c008ca4 PA:1c008cac +75014939ns 1333908 1c000eea 00b72223 sw x11, 4(x14) x11:1c009dbc x14:1c008ca4 PA:1c008ca8 +75014959ns 1333909 1c000eec 00b7a423 sw x11, 8(x15) x11:1c009dbc x15:1c008ca4 PA:1c008cac +75014979ns 1333910 1c000eee 00052783 lw x15, 0(x10) x15=00000000 x10:1c008c9c PA:1c008c9c +75014999ns 1333911 1c000ef0 00a5a823 sw x10, 16(x11) x10:1c008c9c x11:1c009dbc PA:1c009dcc +75015018ns 1333912 1c000ef2 00178793 addi x15, x15, 1 x15=00000001 x15:00000000 +75015038ns 1333913 1c000ef4 00f52023 sw x15, 0(x10) x15:00000001 x10:1c008c9c PA:1c008c9c +75015058ns 1333914 1c000ef6 00008067 jalr x0, x1, 0 x1:1c002220 +75015098ns 1333916 1c002220 e07ff0ef jal x1, -506 x1=1c002222 +75015157ns 1333919 1c002026 d841a783 lw x15, -636(x3) x15=00000000 x3:1c0093dc PA:1c009160 +75015197ns 1333921 1c00202a 00078f63 beq x15, x0, 30 x15:00000000 +75015256ns 1333924 1c002048 00008067 jalr x0, x1, 0 x1:1c002222 +75015315ns 1333927 1c002222 d841a783 lw x15, -636(x3) x15=00000000 x3:1c0093dc PA:1c009160 +75015335ns 1333928 1c002226 00100513 addi x10, x0, 1 x10=00000001 +75015355ns 1333929 1c002228 00078963 beq x15, x0, 18 x15:00000000 +75015414ns 1333932 1c00223a 02c12083 lw x1, 44(x2) x1=1c003792 x2:1c019960 PA:1c01998c +75015434ns 1333933 1c00223c 02812403 lw x8, 40(x2) x8=xxxxxxxx x2:1c019960 PA:1c019988 +75015454ns 1333934 1c00223e 02412483 lw x9, 36(x2) x9=xxxxxxxx x2:1c019960 PA:1c019984 +75015474ns 1333935 1c002240 02012903 lw x18, 32(x2) x18=xxxxxxxx x2:1c019960 PA:1c019980 +75015493ns 1333936 1c002242 01c12983 lw x19, 28(x2) x19=xxxxxxxx x2:1c019960 PA:1c01997c +75015513ns 1333937 1c002244 01812a03 lw x20, 24(x2) x20=xxxxxxxx x2:1c019960 PA:1c019978 +75015533ns 1333938 1c002246 01412a83 lw x21, 20(x2) x21=xxxxxxxx x2:1c019960 PA:1c019974 +75015553ns 1333939 1c002248 01012b03 lw x22, 16(x2) x22=xxxxxxxx x2:1c019960 PA:1c019970 +75015573ns 1333940 1c00224a 00c12b83 lw x23, 12(x2) x23=xxxxxxxx x2:1c019960 PA:1c01996c +75015592ns 1333941 1c00224c 00812c03 lw x24, 8(x2) x24=xxxxxxxx x2:1c019960 PA:1c019968 +75015612ns 1333942 1c00224e 03010113 addi x2, x2, 48 x2=1c019990 x2:1c019960 +75015632ns 1333943 1c002250 00008067 jalr x0, x1, 0 x1:1c003792 +75015672ns 1333945 1c003792 00100793 addi x15, x0, 1 x15=00000001 +75015691ns 1333946 1c003794 00f50a63 beq x10, x15, 20 x10:00000001 x15:00000001 +75015751ns 1333949 1c0037a8 300467f3 csrrsi x15, 0x00000008, 0x300 x15=00001800 +75015830ns 1333953 1c0037ac abffe0ef jal x1, -5442 x1=1c0037b0 +75015889ns 1333956 1c00226a 1c0085b7 lui x11, 0x1c008000 x11=1c008000 +75015909ns 1333957 1c00226e 1c002537 lui x10, 0x1c002000 x10=1c002000 +75015929ns 1333958 1c002272 ff010113 addi x2, x2, -16 x2=1c019980 x2:1c019990 +75015949ns 1333959 1c002274 d7418793 addi x15, x3, -652 x15=1c009150 x3:1c0093dc +75015968ns 1333960 1c002278 00000713 addi x14, x0, 0 x14=00000000 +75015988ns 1333961 1c00227a 00000693 addi x13, x0, 0 x13=00000000 +75016008ns 1333962 1c00227c 19000613 addi x12, x0, 400 x12=00000190 +75016028ns 1333963 1c002280 55058593 addi x11, x11, 1360 x11=1c008550 x11:1c008000 +75016048ns 1333964 1c002284 2f650513 addi x10, x10, 758 x10=1c0022f6 x10:1c002000 +75016067ns 1333965 1c002288 00812423 sw x8, 8(x2) x8:xxxxxxxx x2:1c019980 PA:1c019988 +75016087ns 1333966 1c00228a 00112623 sw x1, 12(x2) x1:1c0037b0 x2:1c019980 PA:1c01998c +75016107ns 1333967 1c00228c 00100413 addi x8, x0, 1 x8=00000001 +75016127ns 1333968 1c00228e dbdff0ef jal x1, -580 x1=1c002290 +75016166ns 1333970 1c00204a fd010113 addi x2, x2, -48 x2=1c019950 x2:1c019980 +75016186ns 1333971 1c00204c 01312e23 sw x19, 28(x2) x19:xxxxxxxx x2:1c019950 PA:1c01996c +75016206ns 1333972 1c00204e 00261993 slli x19, x12, 0x2 x19=00000640 x12:00000190 +75016226ns 1333973 1c002052 01612823 sw x22, 16(x2) x22:xxxxxxxx x2:1c019950 PA:1c019960 +75016246ns 1333974 1c002054 00a00b33 add x22, x0, x10 x22=1c0022f6 x10:1c0022f6 +75016265ns 1333975 1c002056 01300533 add x10, x0, x19 x10=00000640 x19:00000640 +75016285ns 1333976 1c002058 02912223 sw x9, 36(x2) x9:xxxxxxxx x2:1c019950 PA:1c019974 +75016305ns 1333977 1c00205a 03212023 sw x18, 32(x2) x18:xxxxxxxx x2:1c019950 PA:1c019970 +75016325ns 1333978 1c00205c 01512a23 sw x21, 20(x2) x21:xxxxxxxx x2:1c019950 PA:1c019964 +75016345ns 1333979 1c00205e 01712623 sw x23, 12(x2) x23:xxxxxxxx x2:1c019950 PA:1c01995c +75016364ns 1333980 1c002060 02112623 sw x1, 44(x2) x1:1c002290 x2:1c019950 PA:1c01997c +75016384ns 1333981 1c002062 02812423 sw x8, 40(x2) x8:00000001 x2:1c019950 PA:1c019978 +75016404ns 1333982 1c002064 01412c23 sw x20, 24(x2) x20:xxxxxxxx x2:1c019950 PA:1c019968 +75016424ns 1333983 1c002066 01812423 sw x24, 8(x2) x24:xxxxxxxx x2:1c019950 PA:1c019958 +75016443ns 1333984 1c002068 00b004b3 add x9, x0, x11 x9=1c008550 x11:1c008550 +75016463ns 1333985 1c00206a 00d00bb3 add x23, x0, x13 x23=00000000 x13:00000000 +75016483ns 1333986 1c00206c 00e00933 add x18, x0, x14 x18=00000000 x14:00000000 +75016503ns 1333987 1c00206e 00f00ab3 add x21, x0, x15 x21=1c009150 x15:1c009150 +75016523ns 1333988 1c002070 0fb000ef jal x1, 2298 x1=1c002074 +75016562ns 1333990 1c00296a fe010113 addi x2, x2, -32 x2=1c019930 x2:1c019950 +75016582ns 1333991 1c00296c 00112e23 sw x1, 28(x2) x1:1c002074 x2:1c019930 PA:1c01994c +75016602ns 1333992 1c00296e 00812c23 sw x8, 24(x2) x8:00000001 x2:1c019930 PA:1c019948 +75016622ns 1333993 1c002970 00a12623 sw x10, 12(x2) x10:00000640 x2:1c019930 PA:1c01993c +75016641ns 1333994 1c002972 8a4ff0ef jal x1, -3932 x1=1c002976 +75016701ns 1333997 1c001a16 d6818793 addi x15, x3, -664 x15=1c009144 x3:1c0093dc +75016721ns 1333998 1c001a1a 0007a703 lw x14, 0(x15) x14=00000000 x15:1c009144 PA:1c009144 +75016760ns 1334000 1c001a1c 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +75016780ns 1334001 1c001a1e 00e7a023 sw x14, 0(x15) x14:00000001 x15:1c009144 PA:1c009144 +75016800ns 1334002 1c001a20 00008067 jalr x0, x1, 0 x1:1c002976 +75016839ns 1334004 1c002976 00c12503 lw x10, 12(x2) x10=00000640 x2:1c019930 PA:1c01993c +75016859ns 1334005 1c002978 791000ef jal x1, 3984 x1=1c00297c +75016899ns 1334007 1c003908 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +75016918ns 1334008 1c00390c 00a005b3 add x11, x0, x10 x11=00000640 x10:00000640 +75016938ns 1334009 1c00390e c447a503 lw x10, -956(x15) x10=1c008bdc x15:1c009000 PA:1c008c44 +75016958ns 1334010 1c003912 0b60006f jal x0, 182 +75016998ns 1334012 1c0039c8 fe010113 addi x2, x2, -32 x2=1c019910 x2:1c019930 +75017017ns 1334013 1c0039ca 00912a23 sw x9, 20(x2) x9:1c008550 x2:1c019910 PA:1c019924 +75017037ns 1334014 1c0039cc 00358493 addi x9, x11, 3 x9=00000643 x11:00000640 +75017057ns 1334015 1c0039d0 ffc4f493 andi x9, x9, -4 x9=00000640 x9:00000643 +75017077ns 1334016 1c0039d2 01212823 sw x18, 16(x2) x18:00000000 x2:1c019910 PA:1c019920 +75017097ns 1334017 1c0039d4 00112e23 sw x1, 28(x2) x1:1c00297c x2:1c019910 PA:1c01992c +75017116ns 1334018 1c0039d6 00812c23 sw x8, 24(x2) x8:00000001 x2:1c019910 PA:1c019928 +75017136ns 1334019 1c0039d8 01312623 sw x19, 12(x2) x19:00000640 x2:1c019910 PA:1c01991c +75017156ns 1334020 1c0039da 00848493 addi x9, x9, 8 x9=00000648 x9:00000640 +75017176ns 1334021 1c0039dc 00c00793 addi x15, x0, 12 x15=0000000c +75017196ns 1334022 1c0039de 00a00933 add x18, x0, x10 x18=1c008bdc x10:1c008bdc +75017215ns 1334023 1c0039e0 04f4f363 bgeu x9, x15, 70 x9:00000648 x15:0000000c +75017295ns 1334027 1c003a26 fc04d0e3 bge x9, x0, -64 x9:00000648 +75017374ns 1334031 1c0039e6 04b4e263 bltu x9, x11, 68 x9:00000648 x11:00000640 +75017393ns 1334032 1c0039ea 01200533 add x10, x0, x18 x10=1c008bdc x18:1c008bdc +75017413ns 1334033 1c0039ec 87aff0ef jal x1, -3974 x1=1c0039f0 +75017473ns 1334036 1c002a66 fb1fe06f jal x0, -4176 +75017532ns 1334039 1c001a16 d6818793 addi x15, x3, -664 x15=1c009144 x3:1c0093dc +75017552ns 1334040 1c001a1a 0007a703 lw x14, 0(x15) x14=00000001 x15:1c009144 PA:1c009144 +75017591ns 1334042 1c001a1c 00170713 addi x14, x14, 1 x14=00000002 x14:00000001 +75017611ns 1334043 1c001a1e 00e7a023 sw x14, 0(x15) x14:00000002 x15:1c009144 PA:1c009144 +75017631ns 1334044 1c001a20 00008067 jalr x0, x1, 0 x1:1c0039f0 +75017671ns 1334046 1c0039f0 db81a703 lw x14, -584(x3) x14=00000000 x3:1c0093dc PA:1c009194 +75017690ns 1334047 1c0039f4 db818693 addi x13, x3, -584 x13=1c009194 x3:1c0093dc +75017710ns 1334048 1c0039f8 00e00433 add x8, x0, x14 x8=00000000 x14:00000000 +75017730ns 1334049 1c0039fa 04041363 bne x8, x0, 70 x8:00000000 +75017750ns 1334050 1c0039fc dbc18413 addi x8, x3, -580 x8=1c009198 x3:1c0093dc +75017770ns 1334051 1c003a00 00042783 lw x15, 0(x8) x15=1c0091b0 x8:1c009198 PA:1c009198 +75017809ns 1334053 1c003a02 00079563 bne x15, x0, 10 x15:1c0091b0 +75017869ns 1334056 1c003a0c 009005b3 add x11, x0, x9 x11=00000648 x9:00000648 +75017888ns 1334057 1c003a0e 01200533 add x10, x0, x18 x10=1c008bdc x18:1c008bdc +75017908ns 1334058 1c003a10 5cc000ef jal x1, 1484 x1=1c003a12 +75017948ns 1334060 1c003fdc ff010113 addi x2, x2, -16 x2=1c019900 x2:1c019910 +75017967ns 1334061 1c003fde 00812423 sw x8, 8(x2) x8:1c009198 x2:1c019900 PA:1c019908 +75017987ns 1334062 1c003fe0 00912223 sw x9, 4(x2) x9:00000648 x2:1c019900 PA:1c019904 +75018007ns 1334063 1c003fe2 00a00433 add x8, x0, x10 x8=1c008bdc x10:1c008bdc +75018027ns 1334064 1c003fe4 00b00533 add x10, x0, x11 x10=00000648 x11:00000648 +75018047ns 1334065 1c003fe6 00112623 sw x1, 12(x2) x1:1c003a12 x2:1c019900 PA:1c01990c +75018066ns 1334066 1c003fe8 dc01a023 sw x0, -576(x3) x3:1c0093dc PA:1c00919c +75018086ns 1334067 1c003fec a53fe0ef jal x1, -5550 x1=1c003ff0 +75018146ns 1334070 1c002a3e 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +75018165ns 1334071 1c002a42 c3c78793 addi x15, x15, -964 x15=1c008c3c x15:1c009000 +75018185ns 1334072 1c002a46 00a00733 add x14, x0, x10 x14=00000648 x10:00000648 +75018205ns 1334073 1c002a48 0007a503 lw x10, 0(x15) x10=1c00a244 x15:1c008c3c PA:1c008c3c +75018225ns 1334074 1c002a4a 1c0196b7 lui x13, 0x1c019000 x13=1c019000 +75018245ns 1334075 1c002a4e 1b068693 addi x13, x13, 432 x13=1c0191b0 x13:1c019000 +75018264ns 1334076 1c002a52 00a70733 add x14, x14, x10 x14=1c00a88c x14:00000648 x10:1c00a244 +75018284ns 1334077 1c002a54 00d76763 bltu x14, x13, 14 x14:1c00a88c x13:1c0191b0 +75018344ns 1334080 1c002a62 00e7a023 sw x14, 0(x15) x14:1c00a88c x15:1c008c3c PA:1c008c3c +75018363ns 1334081 1c002a64 00008067 jalr x0, x1, 0 x1:1c003ff0 +75018403ns 1334083 1c003ff0 fff00793 addi x15, x0, -1 x15=ffffffff +75018423ns 1334084 1c003ff2 00f51663 bne x10, x15, 12 x10:1c00a244 x15:ffffffff +75018482ns 1334087 1c003ffe 00c12083 lw x1, 12(x2) x1=1c003a12 x2:1c019900 PA:1c01990c +75018502ns 1334088 1c004000 00812403 lw x8, 8(x2) x8=1c009198 x2:1c019900 PA:1c019908 +75018522ns 1334089 1c004002 00412483 lw x9, 4(x2) x9=00000648 x2:1c019900 PA:1c019904 +75018541ns 1334090 1c004004 01010113 addi x2, x2, 16 x2=1c019910 x2:1c019900 +75018561ns 1334091 1c004006 00008067 jalr x0, x1, 0 x1:1c003a12 +75018601ns 1334093 1c003a12 fff00993 addi x19, x0, -1 x19=ffffffff +75018621ns 1334094 1c003a14 07351a63 bne x10, x19, 116 x10:1c00a244 x19:ffffffff +75018680ns 1334097 1c003a88 00350413 addi x8, x10, 3 x8=1c00a247 x10:1c00a244 +75018700ns 1334098 1c003a8c ffc47413 andi x8, x8, -4 x8=1c00a244 x8:1c00a247 +75018720ns 1334099 1c003a8e fc8502e3 beq x10, x8, -60 x10:1c00a244 x8:1c00a244 +75018779ns 1334102 1c003a52 00942023 sw x9, 0(x8) x9:00000648 x8:1c00a244 PA:1c00a244 +75018799ns 1334103 1c003a54 00a0006f jal x0, 10 +75018838ns 1334105 1c003a5e 01200533 add x10, x0, x18 x10=1c008bdc x18:1c008bdc +75018858ns 1334106 1c003a60 80aff0ef jal x1, -4086 x1=1c003a64 +75018917ns 1334109 1c002a6a 8e3ff06f jal x0, -1822 +75018957ns 1334111 1c00234c fc010113 addi x2, x2, -64 x2=1c0198d0 x2:1c019910 +75018977ns 1334112 1c00234e 02812c23 sw x8, 56(x2) x8:1c00a244 x2:1c0198d0 PA:1c019908 +75018997ns 1334113 1c002350 d6818413 addi x8, x3, -664 x8=1c009144 x3:1c0093dc +75019016ns 1334114 1c002354 00042783 lw x15, 0(x8) x15=00000002 x8:1c009144 PA:1c009144 +75019036ns 1334115 1c002356 02112e23 sw x1, 60(x2) x1:1c003a64 x2:1c0198d0 PA:1c01990c +75019056ns 1334116 1c002358 02912a23 sw x9, 52(x2) x9:00000648 x2:1c0198d0 PA:1c019904 +75019076ns 1334117 1c00235a 03212823 sw x18, 48(x2) x18:1c008bdc x2:1c0198d0 PA:1c019900 +75019096ns 1334118 1c00235c 03312623 sw x19, 44(x2) x19:ffffffff x2:1c0198d0 PA:1c0198fc +75019115ns 1334119 1c00235e 03412423 sw x20, 40(x2) x20:xxxxxxxx x2:1c0198d0 PA:1c0198f8 +75019135ns 1334120 1c002360 03512223 sw x21, 36(x2) x21:1c009150 x2:1c0198d0 PA:1c0198f4 +75019155ns 1334121 1c002362 03612023 sw x22, 32(x2) x22:1c0022f6 x2:1c0198d0 PA:1c0198f0 +75019175ns 1334122 1c002364 01712e23 sw x23, 28(x2) x23:00000000 x2:1c0198d0 PA:1c0198ec +75019195ns 1334123 1c002366 02079263 bne x15, x0, 36 x15:00000002 +75019274ns 1334127 1c00238a c83ff0ef jal x1, -894 x1=1c00238e +75019313ns 1334129 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +75019392ns 1334133 1c002010 d841a783 lw x15, -636(x3) x15=00000000 x3:1c0093dc PA:1c009160 +75019432ns 1334135 1c002014 00078863 beq x15, x0, 16 x15:00000000 +75019491ns 1334138 1c002024 00008067 jalr x0, x1, 0 x1:1c00238e +75019531ns 1334140 1c00238e 00042783 lw x15, 0(x8) x15=00000002 x8:1c009144 PA:1c009144 +75019571ns 1334142 1c002390 fff78793 addi x15, x15, -1 x15=00000001 x15:00000002 +75019590ns 1334143 1c002392 00f42023 sw x15, 0(x8) x15:00000001 x8:1c009144 PA:1c009144 +75019610ns 1334144 1c002394 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +75019650ns 1334146 1c002396 02078163 beq x15, x0, 34 x15:00000001 +75019670ns 1334147 1c002398 00000513 addi x10, x0, 0 x10=00000000 +75019689ns 1334148 1c00239a 00a12623 sw x10, 12(x2) x10:00000000 x2:1c0198d0 PA:1c0198dc +75019709ns 1334149 1c00239c c8bff0ef jal x1, -886 x1=1c0023a0 +75019769ns 1334152 1c002026 d841a783 lw x15, -636(x3) x15=00000000 x3:1c0093dc PA:1c009160 +75019808ns 1334154 1c00202a 00078f63 beq x15, x0, 30 x15:00000000 +75019867ns 1334157 1c002048 00008067 jalr x0, x1, 0 x1:1c0023a0 +75019907ns 1334159 1c0023a0 03c12083 lw x1, 60(x2) x1=1c003a64 x2:1c0198d0 PA:1c01990c +75019927ns 1334160 1c0023a2 03812403 lw x8, 56(x2) x8=1c00a244 x2:1c0198d0 PA:1c019908 +75019947ns 1334161 1c0023a4 00c12503 lw x10, 12(x2) x10=00000000 x2:1c0198d0 PA:1c0198dc +75019966ns 1334162 1c0023a6 03412483 lw x9, 52(x2) x9=00000648 x2:1c0198d0 PA:1c019904 +75019986ns 1334163 1c0023a8 03012903 lw x18, 48(x2) x18=1c008bdc x2:1c0198d0 PA:1c019900 +75020006ns 1334164 1c0023aa 02c12983 lw x19, 44(x2) x19=ffffffff x2:1c0198d0 PA:1c0198fc +75020026ns 1334165 1c0023ac 02812a03 lw x20, 40(x2) x20=xxxxxxxx x2:1c0198d0 PA:1c0198f8 +75020046ns 1334166 1c0023ae 02412a83 lw x21, 36(x2) x21=1c009150 x2:1c0198d0 PA:1c0198f4 +75020065ns 1334167 1c0023b0 02012b03 lw x22, 32(x2) x22=1c0022f6 x2:1c0198d0 PA:1c0198f0 +75020085ns 1334168 1c0023b2 01c12b83 lw x23, 28(x2) x23=00000000 x2:1c0198d0 PA:1c0198ec +75020105ns 1334169 1c0023b4 04010113 addi x2, x2, 64 x2=1c019910 x2:1c0198d0 +75020125ns 1334170 1c0023b6 00008067 jalr x0, x1, 0 x1:1c003a64 +75020164ns 1334172 1c003a64 00b40513 addi x10, x8, 11 x10=1c00a24f x8:1c00a244 +75020184ns 1334173 1c003a68 00440793 addi x15, x8, 4 x15=1c00a248 x8:1c00a244 +75020204ns 1334174 1c003a6c ff857513 andi x10, x10, -8 x10=1c00a248 x10:1c00a24f +75020224ns 1334175 1c003a6e 40f50733 sub x14, x10, x15 x14=00000000 x10:1c00a248 x15:1c00a248 +75020244ns 1334176 1c003a72 fcf500e3 beq x10, x15, -64 x10:1c00a248 x15:1c00a248 +75020303ns 1334179 1c003a32 01c12083 lw x1, 28(x2) x1=1c00297c x2:1c019910 PA:1c01992c +75020323ns 1334180 1c003a34 01812403 lw x8, 24(x2) x8=00000001 x2:1c019910 PA:1c019928 +75020343ns 1334181 1c003a36 01412483 lw x9, 20(x2) x9=1c008550 x2:1c019910 PA:1c019924 +75020362ns 1334182 1c003a38 01012903 lw x18, 16(x2) x18=00000000 x2:1c019910 PA:1c019920 +75020382ns 1334183 1c003a3a 00c12983 lw x19, 12(x2) x19=00000640 x2:1c019910 PA:1c01991c +75020402ns 1334184 1c003a3c 02010113 addi x2, x2, 32 x2=1c019930 x2:1c019910 +75020422ns 1334185 1c003a3e 00008067 jalr x0, x1, 0 x1:1c00297c +75020461ns 1334187 1c00297c 00a00433 add x8, x0, x10 x8=1c00a248 x10:1c00a248 +75020481ns 1334188 1c00297e 9cfff0ef jal x1, -1586 x1=1c002982 +75020521ns 1334190 1c00234c fc010113 addi x2, x2, -64 x2=1c0198f0 x2:1c019930 +75020540ns 1334191 1c00234e 02812c23 sw x8, 56(x2) x8:1c00a248 x2:1c0198f0 PA:1c019928 +75020560ns 1334192 1c002350 d6818413 addi x8, x3, -664 x8=1c009144 x3:1c0093dc +75020580ns 1334193 1c002354 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +75020600ns 1334194 1c002356 02112e23 sw x1, 60(x2) x1:1c002982 x2:1c0198f0 PA:1c01992c +75020620ns 1334195 1c002358 02912a23 sw x9, 52(x2) x9:1c008550 x2:1c0198f0 PA:1c019924 +75020639ns 1334196 1c00235a 03212823 sw x18, 48(x2) x18:00000000 x2:1c0198f0 PA:1c019920 +75020659ns 1334197 1c00235c 03312623 sw x19, 44(x2) x19:00000640 x2:1c0198f0 PA:1c01991c +75020679ns 1334198 1c00235e 03412423 sw x20, 40(x2) x20:xxxxxxxx x2:1c0198f0 PA:1c019918 +75020699ns 1334199 1c002360 03512223 sw x21, 36(x2) x21:1c009150 x2:1c0198f0 PA:1c019914 +75020719ns 1334200 1c002362 03612023 sw x22, 32(x2) x22:1c0022f6 x2:1c0198f0 PA:1c019910 +75020738ns 1334201 1c002364 01712e23 sw x23, 28(x2) x23:00000000 x2:1c0198f0 PA:1c01990c +75020758ns 1334202 1c002366 02079263 bne x15, x0, 36 x15:00000001 +75020837ns 1334206 1c00238a c83ff0ef jal x1, -894 x1=1c00238e +75020877ns 1334208 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +75020956ns 1334212 1c002010 d841a783 lw x15, -636(x3) x15=00000000 x3:1c0093dc PA:1c009160 +75020996ns 1334214 1c002014 00078863 beq x15, x0, 16 x15:00000000 +75021055ns 1334217 1c002024 00008067 jalr x0, x1, 0 x1:1c00238e +75021095ns 1334219 1c00238e 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +75021134ns 1334221 1c002390 fff78793 addi x15, x15, -1 x15=00000000 x15:00000001 +75021154ns 1334222 1c002392 00f42023 sw x15, 0(x8) x15:00000000 x8:1c009144 PA:1c009144 +75021174ns 1334223 1c002394 00042783 lw x15, 0(x8) x15=00000000 x8:1c009144 PA:1c009144 +75021213ns 1334225 1c002396 02078163 beq x15, x0, 34 x15:00000000 +75021273ns 1334228 1c0023b8 d601a783 lw x15, -672(x3) x15=00000001 x3:1c0093dc PA:1c00913c +75021312ns 1334230 1c0023bc fc078ee3 beq x15, x0, -36 x15:00000001 +75021332ns 1334231 1c0023be 1c009937 lui x18, 0x1c009000 x18=1c009000 +75021352ns 1334232 1c0023c2 00000413 addi x8, x0, 0 x8=00000000 +75021372ns 1334233 1c0023c4 93818493 addi x9, x3, -1736 x9=1c008d14 x3:1c0093dc +75021391ns 1334234 1c0023c8 00100993 addi x19, x0, 1 x19=00000001 +75021411ns 1334235 1c0023ca c8890913 addi x18, x18, -888 x18=1c008c88 x18:1c009000 +75021431ns 1334236 1c0023ce 01400a93 addi x21, x0, 20 x21=00000014 +75021451ns 1334237 1c0023d0 04c0006f jal x0, 76 +75021490ns 1334239 1c00241c 0004a783 lw x15, 0(x9) x15=00000000 x9:1c008d14 PA:1c008d14 +75021530ns 1334241 1c00241e fa079ae3 bne x15, x0, -76 x15:00000000 +75021550ns 1334242 1c002420 00040363 beq x8, x0, 6 x8:00000000 +75021629ns 1334246 1c002426 d8018713 addi x14, x3, -640 x14=1c00915c x3:1c0093dc +75021649ns 1334247 1c00242a 00072483 lw x9, 0(x14) x9=00000000 x14:1c00915c PA:1c00915c +75021669ns 1334248 1c00242c d8018413 addi x8, x3, -640 x8=1c00915c x3:1c0093dc +75021688ns 1334249 1c002430 00048d63 beq x9, x0, 26 x9:00000000 +75021768ns 1334253 1c00244a d8c1a783 lw x15, -628(x3) x15=00000000 x3:1c0093dc PA:1c009168 +75021807ns 1334255 1c00244e f40785e3 beq x15, x0, -182 x15:00000000 +75021866ns 1334258 1c002398 00000513 addi x10, x0, 0 x10=00000000 +75021886ns 1334259 1c00239a 00a12623 sw x10, 12(x2) x10:00000000 x2:1c0198f0 PA:1c0198fc +75021906ns 1334260 1c00239c c8bff0ef jal x1, -886 x1=1c0023a0 +75021965ns 1334263 1c002026 d841a783 lw x15, -636(x3) x15=00000000 x3:1c0093dc PA:1c009160 +75022005ns 1334265 1c00202a 00078f63 beq x15, x0, 30 x15:00000000 +75022064ns 1334268 1c002048 00008067 jalr x0, x1, 0 x1:1c0023a0 +75022104ns 1334270 1c0023a0 03c12083 lw x1, 60(x2) x1=1c002982 x2:1c0198f0 PA:1c01992c +75022124ns 1334271 1c0023a2 03812403 lw x8, 56(x2) x8=1c00a248 x2:1c0198f0 PA:1c019928 +75022144ns 1334272 1c0023a4 00c12503 lw x10, 12(x2) x10=00000000 x2:1c0198f0 PA:1c0198fc +75022163ns 1334273 1c0023a6 03412483 lw x9, 52(x2) x9=1c008550 x2:1c0198f0 PA:1c019924 +75022183ns 1334274 1c0023a8 03012903 lw x18, 48(x2) x18=00000000 x2:1c0198f0 PA:1c019920 +75022203ns 1334275 1c0023aa 02c12983 lw x19, 44(x2) x19=00000640 x2:1c0198f0 PA:1c01991c +75022223ns 1334276 1c0023ac 02812a03 lw x20, 40(x2) x20=xxxxxxxx x2:1c0198f0 PA:1c019918 +75022243ns 1334277 1c0023ae 02412a83 lw x21, 36(x2) x21=1c009150 x2:1c0198f0 PA:1c019914 +75022262ns 1334278 1c0023b0 02012b03 lw x22, 32(x2) x22=1c0022f6 x2:1c0198f0 PA:1c019910 +75022282ns 1334279 1c0023b2 01c12b83 lw x23, 28(x2) x23=00000000 x2:1c0198f0 PA:1c01990c +75022302ns 1334280 1c0023b4 04010113 addi x2, x2, 64 x2=1c019930 x2:1c0198f0 +75022322ns 1334281 1c0023b6 00008067 jalr x0, x1, 0 x1:1c002982 +75022361ns 1334283 1c002982 00041363 bne x8, x0, 6 x8:1c00a248 +75022421ns 1334286 1c002988 01c12083 lw x1, 28(x2) x1=1c002074 x2:1c019930 PA:1c01994c +75022440ns 1334287 1c00298a 00800533 add x10, x0, x8 x10=1c00a248 x8:1c00a248 +75022460ns 1334288 1c00298c 01812403 lw x8, 24(x2) x8=00000001 x2:1c019930 PA:1c019948 +75022480ns 1334289 1c00298e 02010113 addi x2, x2, 32 x2=1c019950 x2:1c019930 +75022500ns 1334290 1c002990 00008067 jalr x0, x1, 0 x1:1c002074 +75022539ns 1334292 1c002074 02050963 beq x10, x0, 50 x10:1c00a248 +75022559ns 1334293 1c002076 00a00a33 add x20, x0, x10 x20=1c00a248 x10:1c00a248 +75022579ns 1334294 1c002078 48800513 addi x10, x0, 1160 x10=00000488 +75022599ns 1334295 1c00207c 0ef000ef jal x1, 2286 x1=1c002080 +75022638ns 1334297 1c00296a fe010113 addi x2, x2, -32 x2=1c019930 x2:1c019950 +75022658ns 1334298 1c00296c 00112e23 sw x1, 28(x2) x1:1c002080 x2:1c019930 PA:1c01994c +75022678ns 1334299 1c00296e 00812c23 sw x8, 24(x2) x8:00000001 x2:1c019930 PA:1c019948 +75022698ns 1334300 1c002970 00a12623 sw x10, 12(x2) x10:00000488 x2:1c019930 PA:1c01993c +75022718ns 1334301 1c002972 8a4ff0ef jal x1, -3932 x1=1c002976 +75022777ns 1334304 1c001a16 d6818793 addi x15, x3, -664 x15=1c009144 x3:1c0093dc +75022797ns 1334305 1c001a1a 0007a703 lw x14, 0(x15) x14=00000000 x15:1c009144 PA:1c009144 +75022836ns 1334307 1c001a1c 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +75022856ns 1334308 1c001a1e 00e7a023 sw x14, 0(x15) x14:00000001 x15:1c009144 PA:1c009144 +75022876ns 1334309 1c001a20 00008067 jalr x0, x1, 0 x1:1c002976 +75022915ns 1334311 1c002976 00c12503 lw x10, 12(x2) x10=00000488 x2:1c019930 PA:1c01993c +75022935ns 1334312 1c002978 791000ef jal x1, 3984 x1=1c00297c +75022975ns 1334314 1c003908 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +75022995ns 1334315 1c00390c 00a005b3 add x11, x0, x10 x11=00000488 x10:00000488 +75023014ns 1334316 1c00390e c447a503 lw x10, -956(x15) x10=1c008bdc x15:1c009000 PA:1c008c44 +75023034ns 1334317 1c003912 0b60006f jal x0, 182 +75023074ns 1334319 1c0039c8 fe010113 addi x2, x2, -32 x2=1c019910 x2:1c019930 +75023094ns 1334320 1c0039ca 00912a23 sw x9, 20(x2) x9:1c008550 x2:1c019910 PA:1c019924 +75023113ns 1334321 1c0039cc 00358493 addi x9, x11, 3 x9=0000048b x11:00000488 +75023133ns 1334322 1c0039d0 ffc4f493 andi x9, x9, -4 x9=00000488 x9:0000048b +75023153ns 1334323 1c0039d2 01212823 sw x18, 16(x2) x18:00000000 x2:1c019910 PA:1c019920 +75023173ns 1334324 1c0039d4 00112e23 sw x1, 28(x2) x1:1c00297c x2:1c019910 PA:1c01992c +75023193ns 1334325 1c0039d6 00812c23 sw x8, 24(x2) x8:00000001 x2:1c019910 PA:1c019928 +75023212ns 1334326 1c0039d8 01312623 sw x19, 12(x2) x19:00000640 x2:1c019910 PA:1c01991c +75023232ns 1334327 1c0039da 00848493 addi x9, x9, 8 x9=00000490 x9:00000488 +75023252ns 1334328 1c0039dc 00c00793 addi x15, x0, 12 x15=0000000c +75023272ns 1334329 1c0039de 00a00933 add x18, x0, x10 x18=1c008bdc x10:1c008bdc +75023292ns 1334330 1c0039e0 04f4f363 bgeu x9, x15, 70 x9:00000490 x15:0000000c +75023371ns 1334334 1c003a26 fc04d0e3 bge x9, x0, -64 x9:00000490 +75023450ns 1334338 1c0039e6 04b4e263 bltu x9, x11, 68 x9:00000490 x11:00000488 +75023470ns 1334339 1c0039ea 01200533 add x10, x0, x18 x10=1c008bdc x18:1c008bdc +75023489ns 1334340 1c0039ec 87aff0ef jal x1, -3974 x1=1c0039f0 +75023549ns 1334343 1c002a66 fb1fe06f jal x0, -4176 +75023608ns 1334346 1c001a16 d6818793 addi x15, x3, -664 x15=1c009144 x3:1c0093dc +75023628ns 1334347 1c001a1a 0007a703 lw x14, 0(x15) x14=00000001 x15:1c009144 PA:1c009144 +75023668ns 1334349 1c001a1c 00170713 addi x14, x14, 1 x14=00000002 x14:00000001 +75023687ns 1334350 1c001a1e 00e7a023 sw x14, 0(x15) x14:00000002 x15:1c009144 PA:1c009144 +75023707ns 1334351 1c001a20 00008067 jalr x0, x1, 0 x1:1c0039f0 +75023747ns 1334353 1c0039f0 db81a703 lw x14, -584(x3) x14=00000000 x3:1c0093dc PA:1c009194 +75023767ns 1334354 1c0039f4 db818693 addi x13, x3, -584 x13=1c009194 x3:1c0093dc +75023786ns 1334355 1c0039f8 00e00433 add x8, x0, x14 x8=00000000 x14:00000000 +75023806ns 1334356 1c0039fa 04041363 bne x8, x0, 70 x8:00000000 +75023826ns 1334357 1c0039fc dbc18413 addi x8, x3, -580 x8=1c009198 x3:1c0093dc +75023846ns 1334358 1c003a00 00042783 lw x15, 0(x8) x15=1c0091b0 x8:1c009198 PA:1c009198 +75023885ns 1334360 1c003a02 00079563 bne x15, x0, 10 x15:1c0091b0 +75023945ns 1334363 1c003a0c 009005b3 add x11, x0, x9 x11=00000490 x9:00000490 +75023964ns 1334364 1c003a0e 01200533 add x10, x0, x18 x10=1c008bdc x18:1c008bdc +75023984ns 1334365 1c003a10 5cc000ef jal x1, 1484 x1=1c003a12 +75024024ns 1334367 1c003fdc ff010113 addi x2, x2, -16 x2=1c019900 x2:1c019910 +75024044ns 1334368 1c003fde 00812423 sw x8, 8(x2) x8:1c009198 x2:1c019900 PA:1c019908 +75024063ns 1334369 1c003fe0 00912223 sw x9, 4(x2) x9:00000490 x2:1c019900 PA:1c019904 +75024083ns 1334370 1c003fe2 00a00433 add x8, x0, x10 x8=1c008bdc x10:1c008bdc +75024103ns 1334371 1c003fe4 00b00533 add x10, x0, x11 x10=00000490 x11:00000490 +75024123ns 1334372 1c003fe6 00112623 sw x1, 12(x2) x1:1c003a12 x2:1c019900 PA:1c01990c +75024143ns 1334373 1c003fe8 dc01a023 sw x0, -576(x3) x3:1c0093dc PA:1c00919c +75024162ns 1334374 1c003fec a53fe0ef jal x1, -5550 x1=1c003ff0 +75024222ns 1334377 1c002a3e 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +75024242ns 1334378 1c002a42 c3c78793 addi x15, x15, -964 x15=1c008c3c x15:1c009000 +75024261ns 1334379 1c002a46 00a00733 add x14, x0, x10 x14=00000490 x10:00000490 +75024281ns 1334380 1c002a48 0007a503 lw x10, 0(x15) x10=1c00a88c x15:1c008c3c PA:1c008c3c +75024301ns 1334381 1c002a4a 1c0196b7 lui x13, 0x1c019000 x13=1c019000 +75024321ns 1334382 1c002a4e 1b068693 addi x13, x13, 432 x13=1c0191b0 x13:1c019000 +75024340ns 1334383 1c002a52 00a70733 add x14, x14, x10 x14=1c00ad1c x14:00000490 x10:1c00a88c +75024360ns 1334384 1c002a54 00d76763 bltu x14, x13, 14 x14:1c00ad1c x13:1c0191b0 +75024420ns 1334387 1c002a62 00e7a023 sw x14, 0(x15) x14:1c00ad1c x15:1c008c3c PA:1c008c3c +75024439ns 1334388 1c002a64 00008067 jalr x0, x1, 0 x1:1c003ff0 +75024479ns 1334390 1c003ff0 fff00793 addi x15, x0, -1 x15=ffffffff +75024499ns 1334391 1c003ff2 00f51663 bne x10, x15, 12 x10:1c00a88c x15:ffffffff +75024558ns 1334394 1c003ffe 00c12083 lw x1, 12(x2) x1=1c003a12 x2:1c019900 PA:1c01990c +75024578ns 1334395 1c004000 00812403 lw x8, 8(x2) x8=1c009198 x2:1c019900 PA:1c019908 +75024598ns 1334396 1c004002 00412483 lw x9, 4(x2) x9=00000490 x2:1c019900 PA:1c019904 +75024618ns 1334397 1c004004 01010113 addi x2, x2, 16 x2=1c019910 x2:1c019900 +75024637ns 1334398 1c004006 00008067 jalr x0, x1, 0 x1:1c003a12 +75024677ns 1334400 1c003a12 fff00993 addi x19, x0, -1 x19=ffffffff +75024697ns 1334401 1c003a14 07351a63 bne x10, x19, 116 x10:1c00a88c x19:ffffffff +75024756ns 1334404 1c003a88 00350413 addi x8, x10, 3 x8=1c00a88f x10:1c00a88c +75024776ns 1334405 1c003a8c ffc47413 andi x8, x8, -4 x8=1c00a88c x8:1c00a88f +75024796ns 1334406 1c003a8e fc8502e3 beq x10, x8, -60 x10:1c00a88c x8:1c00a88c +75024855ns 1334409 1c003a52 00942023 sw x9, 0(x8) x9:00000490 x8:1c00a88c PA:1c00a88c +75024875ns 1334410 1c003a54 00a0006f jal x0, 10 +75024914ns 1334412 1c003a5e 01200533 add x10, x0, x18 x10=1c008bdc x18:1c008bdc +75024934ns 1334413 1c003a60 80aff0ef jal x1, -4086 x1=1c003a64 +75024994ns 1334416 1c002a6a 8e3ff06f jal x0, -1822 +75025033ns 1334418 1c00234c fc010113 addi x2, x2, -64 x2=1c0198d0 x2:1c019910 +75025053ns 1334419 1c00234e 02812c23 sw x8, 56(x2) x8:1c00a88c x2:1c0198d0 PA:1c019908 +75025073ns 1334420 1c002350 d6818413 addi x8, x3, -664 x8=1c009144 x3:1c0093dc +75025093ns 1334421 1c002354 00042783 lw x15, 0(x8) x15=00000002 x8:1c009144 PA:1c009144 +75025112ns 1334422 1c002356 02112e23 sw x1, 60(x2) x1:1c003a64 x2:1c0198d0 PA:1c01990c +75025132ns 1334423 1c002358 02912a23 sw x9, 52(x2) x9:00000490 x2:1c0198d0 PA:1c019904 +75025152ns 1334424 1c00235a 03212823 sw x18, 48(x2) x18:1c008bdc x2:1c0198d0 PA:1c019900 +75025172ns 1334425 1c00235c 03312623 sw x19, 44(x2) x19:ffffffff x2:1c0198d0 PA:1c0198fc +75025192ns 1334426 1c00235e 03412423 sw x20, 40(x2) x20:1c00a248 x2:1c0198d0 PA:1c0198f8 +75025211ns 1334427 1c002360 03512223 sw x21, 36(x2) x21:1c009150 x2:1c0198d0 PA:1c0198f4 +75025231ns 1334428 1c002362 03612023 sw x22, 32(x2) x22:1c0022f6 x2:1c0198d0 PA:1c0198f0 +75025251ns 1334429 1c002364 01712e23 sw x23, 28(x2) x23:00000000 x2:1c0198d0 PA:1c0198ec +75025271ns 1334430 1c002366 02079263 bne x15, x0, 36 x15:00000002 +75025350ns 1334434 1c00238a c83ff0ef jal x1, -894 x1=1c00238e +75025389ns 1334436 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +75025469ns 1334440 1c002010 d841a783 lw x15, -636(x3) x15=00000000 x3:1c0093dc PA:1c009160 +75025508ns 1334442 1c002014 00078863 beq x15, x0, 16 x15:00000000 +75025568ns 1334445 1c002024 00008067 jalr x0, x1, 0 x1:1c00238e +75025607ns 1334447 1c00238e 00042783 lw x15, 0(x8) x15=00000002 x8:1c009144 PA:1c009144 +75025647ns 1334449 1c002390 fff78793 addi x15, x15, -1 x15=00000001 x15:00000002 +75025667ns 1334450 1c002392 00f42023 sw x15, 0(x8) x15:00000001 x8:1c009144 PA:1c009144 +75025686ns 1334451 1c002394 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +75025726ns 1334453 1c002396 02078163 beq x15, x0, 34 x15:00000001 +75025746ns 1334454 1c002398 00000513 addi x10, x0, 0 x10=00000000 +75025766ns 1334455 1c00239a 00a12623 sw x10, 12(x2) x10:00000000 x2:1c0198d0 PA:1c0198dc +75025785ns 1334456 1c00239c c8bff0ef jal x1, -886 x1=1c0023a0 +75025845ns 1334459 1c002026 d841a783 lw x15, -636(x3) x15=00000000 x3:1c0093dc PA:1c009160 +75025884ns 1334461 1c00202a 00078f63 beq x15, x0, 30 x15:00000000 +75025944ns 1334464 1c002048 00008067 jalr x0, x1, 0 x1:1c0023a0 +75025983ns 1334466 1c0023a0 03c12083 lw x1, 60(x2) x1=1c003a64 x2:1c0198d0 PA:1c01990c +75026003ns 1334467 1c0023a2 03812403 lw x8, 56(x2) x8=1c00a88c x2:1c0198d0 PA:1c019908 +75026023ns 1334468 1c0023a4 00c12503 lw x10, 12(x2) x10=00000000 x2:1c0198d0 PA:1c0198dc +75026043ns 1334469 1c0023a6 03412483 lw x9, 52(x2) x9=00000490 x2:1c0198d0 PA:1c019904 +75026062ns 1334470 1c0023a8 03012903 lw x18, 48(x2) x18=1c008bdc x2:1c0198d0 PA:1c019900 +75026082ns 1334471 1c0023aa 02c12983 lw x19, 44(x2) x19=ffffffff x2:1c0198d0 PA:1c0198fc +75026102ns 1334472 1c0023ac 02812a03 lw x20, 40(x2) x20=1c00a248 x2:1c0198d0 PA:1c0198f8 +75026122ns 1334473 1c0023ae 02412a83 lw x21, 36(x2) x21=1c009150 x2:1c0198d0 PA:1c0198f4 +75026142ns 1334474 1c0023b0 02012b03 lw x22, 32(x2) x22=1c0022f6 x2:1c0198d0 PA:1c0198f0 +75026161ns 1334475 1c0023b2 01c12b83 lw x23, 28(x2) x23=00000000 x2:1c0198d0 PA:1c0198ec +75026181ns 1334476 1c0023b4 04010113 addi x2, x2, 64 x2=1c019910 x2:1c0198d0 +75026201ns 1334477 1c0023b6 00008067 jalr x0, x1, 0 x1:1c003a64 +75026241ns 1334479 1c003a64 00b40513 addi x10, x8, 11 x10=1c00a897 x8:1c00a88c +75026260ns 1334480 1c003a68 00440793 addi x15, x8, 4 x15=1c00a890 x8:1c00a88c +75026280ns 1334481 1c003a6c ff857513 andi x10, x10, -8 x10=1c00a890 x10:1c00a897 +75026300ns 1334482 1c003a6e 40f50733 sub x14, x10, x15 x14=00000000 x10:1c00a890 x15:1c00a890 +75026320ns 1334483 1c003a72 fcf500e3 beq x10, x15, -64 x10:1c00a890 x15:1c00a890 +75026379ns 1334486 1c003a32 01c12083 lw x1, 28(x2) x1=1c00297c x2:1c019910 PA:1c01992c +75026399ns 1334487 1c003a34 01812403 lw x8, 24(x2) x8=00000001 x2:1c019910 PA:1c019928 +75026419ns 1334488 1c003a36 01412483 lw x9, 20(x2) x9=1c008550 x2:1c019910 PA:1c019924 +75026438ns 1334489 1c003a38 01012903 lw x18, 16(x2) x18=00000000 x2:1c019910 PA:1c019920 +75026458ns 1334490 1c003a3a 00c12983 lw x19, 12(x2) x19=00000640 x2:1c019910 PA:1c01991c +75026478ns 1334491 1c003a3c 02010113 addi x2, x2, 32 x2=1c019930 x2:1c019910 +75026498ns 1334492 1c003a3e 00008067 jalr x0, x1, 0 x1:1c00297c +75026537ns 1334494 1c00297c 00a00433 add x8, x0, x10 x8=1c00a890 x10:1c00a890 +75026557ns 1334495 1c00297e 9cfff0ef jal x1, -1586 x1=1c002982 +75026597ns 1334497 1c00234c fc010113 addi x2, x2, -64 x2=1c0198f0 x2:1c019930 +75026617ns 1334498 1c00234e 02812c23 sw x8, 56(x2) x8:1c00a890 x2:1c0198f0 PA:1c019928 +75026636ns 1334499 1c002350 d6818413 addi x8, x3, -664 x8=1c009144 x3:1c0093dc +75026656ns 1334500 1c002354 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +75026676ns 1334501 1c002356 02112e23 sw x1, 60(x2) x1:1c002982 x2:1c0198f0 PA:1c01992c +75026696ns 1334502 1c002358 02912a23 sw x9, 52(x2) x9:1c008550 x2:1c0198f0 PA:1c019924 +75026716ns 1334503 1c00235a 03212823 sw x18, 48(x2) x18:00000000 x2:1c0198f0 PA:1c019920 +75026735ns 1334504 1c00235c 03312623 sw x19, 44(x2) x19:00000640 x2:1c0198f0 PA:1c01991c +75026755ns 1334505 1c00235e 03412423 sw x20, 40(x2) x20:1c00a248 x2:1c0198f0 PA:1c019918 +75026775ns 1334506 1c002360 03512223 sw x21, 36(x2) x21:1c009150 x2:1c0198f0 PA:1c019914 +75026795ns 1334507 1c002362 03612023 sw x22, 32(x2) x22:1c0022f6 x2:1c0198f0 PA:1c019910 +75026814ns 1334508 1c002364 01712e23 sw x23, 28(x2) x23:00000000 x2:1c0198f0 PA:1c01990c +75026834ns 1334509 1c002366 02079263 bne x15, x0, 36 x15:00000001 +75026913ns 1334513 1c00238a c83ff0ef jal x1, -894 x1=1c00238e +75026953ns 1334515 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +75027032ns 1334519 1c002010 d841a783 lw x15, -636(x3) x15=00000000 x3:1c0093dc PA:1c009160 +75027072ns 1334521 1c002014 00078863 beq x15, x0, 16 x15:00000000 +75027131ns 1334524 1c002024 00008067 jalr x0, x1, 0 x1:1c00238e +75027171ns 1334526 1c00238e 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +75027210ns 1334528 1c002390 fff78793 addi x15, x15, -1 x15=00000000 x15:00000001 +75027230ns 1334529 1c002392 00f42023 sw x15, 0(x8) x15:00000000 x8:1c009144 PA:1c009144 +75027250ns 1334530 1c002394 00042783 lw x15, 0(x8) x15=00000000 x8:1c009144 PA:1c009144 +75027289ns 1334532 1c002396 02078163 beq x15, x0, 34 x15:00000000 +75027349ns 1334535 1c0023b8 d601a783 lw x15, -672(x3) x15=00000001 x3:1c0093dc PA:1c00913c +75027388ns 1334537 1c0023bc fc078ee3 beq x15, x0, -36 x15:00000001 +75027408ns 1334538 1c0023be 1c009937 lui x18, 0x1c009000 x18=1c009000 +75027428ns 1334539 1c0023c2 00000413 addi x8, x0, 0 x8=00000000 +75027448ns 1334540 1c0023c4 93818493 addi x9, x3, -1736 x9=1c008d14 x3:1c0093dc +75027468ns 1334541 1c0023c8 00100993 addi x19, x0, 1 x19=00000001 +75027487ns 1334542 1c0023ca c8890913 addi x18, x18, -888 x18=1c008c88 x18:1c009000 +75027507ns 1334543 1c0023ce 01400a93 addi x21, x0, 20 x21=00000014 +75027527ns 1334544 1c0023d0 04c0006f jal x0, 76 +75027567ns 1334546 1c00241c 0004a783 lw x15, 0(x9) x15=00000000 x9:1c008d14 PA:1c008d14 +75027606ns 1334548 1c00241e fa079ae3 bne x15, x0, -76 x15:00000000 +75027626ns 1334549 1c002420 00040363 beq x8, x0, 6 x8:00000000 +75027705ns 1334553 1c002426 d8018713 addi x14, x3, -640 x14=1c00915c x3:1c0093dc +75027725ns 1334554 1c00242a 00072483 lw x9, 0(x14) x9=00000000 x14:1c00915c PA:1c00915c +75027745ns 1334555 1c00242c d8018413 addi x8, x3, -640 x8=1c00915c x3:1c0093dc +75027765ns 1334556 1c002430 00048d63 beq x9, x0, 26 x9:00000000 +75027844ns 1334560 1c00244a d8c1a783 lw x15, -628(x3) x15=00000000 x3:1c0093dc PA:1c009168 +75027883ns 1334562 1c00244e f40785e3 beq x15, x0, -182 x15:00000000 +75027943ns 1334565 1c002398 00000513 addi x10, x0, 0 x10=00000000 +75027962ns 1334566 1c00239a 00a12623 sw x10, 12(x2) x10:00000000 x2:1c0198f0 PA:1c0198fc +75027982ns 1334567 1c00239c c8bff0ef jal x1, -886 x1=1c0023a0 +75028042ns 1334570 1c002026 d841a783 lw x15, -636(x3) x15=00000000 x3:1c0093dc PA:1c009160 +75028081ns 1334572 1c00202a 00078f63 beq x15, x0, 30 x15:00000000 +75028141ns 1334575 1c002048 00008067 jalr x0, x1, 0 x1:1c0023a0 +75028180ns 1334577 1c0023a0 03c12083 lw x1, 60(x2) x1=1c002982 x2:1c0198f0 PA:1c01992c +75028200ns 1334578 1c0023a2 03812403 lw x8, 56(x2) x8=1c00a890 x2:1c0198f0 PA:1c019928 +75028220ns 1334579 1c0023a4 00c12503 lw x10, 12(x2) x10=00000000 x2:1c0198f0 PA:1c0198fc +75028240ns 1334580 1c0023a6 03412483 lw x9, 52(x2) x9=1c008550 x2:1c0198f0 PA:1c019924 +75028259ns 1334581 1c0023a8 03012903 lw x18, 48(x2) x18=00000000 x2:1c0198f0 PA:1c019920 +75028279ns 1334582 1c0023aa 02c12983 lw x19, 44(x2) x19=00000640 x2:1c0198f0 PA:1c01991c +75028299ns 1334583 1c0023ac 02812a03 lw x20, 40(x2) x20=1c00a248 x2:1c0198f0 PA:1c019918 +75028319ns 1334584 1c0023ae 02412a83 lw x21, 36(x2) x21=1c009150 x2:1c0198f0 PA:1c019914 +75028338ns 1334585 1c0023b0 02012b03 lw x22, 32(x2) x22=1c0022f6 x2:1c0198f0 PA:1c019910 +75028358ns 1334586 1c0023b2 01c12b83 lw x23, 28(x2) x23=00000000 x2:1c0198f0 PA:1c01990c +75028378ns 1334587 1c0023b4 04010113 addi x2, x2, 64 x2=1c019930 x2:1c0198f0 +75028398ns 1334588 1c0023b6 00008067 jalr x0, x1, 0 x1:1c002982 +75028437ns 1334590 1c002982 00041363 bne x8, x0, 6 x8:1c00a890 +75028497ns 1334593 1c002988 01c12083 lw x1, 28(x2) x1=1c002080 x2:1c019930 PA:1c01994c +75028517ns 1334594 1c00298a 00800533 add x10, x0, x8 x10=1c00a890 x8:1c00a890 +75028536ns 1334595 1c00298c 01812403 lw x8, 24(x2) x8=00000001 x2:1c019930 PA:1c019948 +75028556ns 1334596 1c00298e 02010113 addi x2, x2, 32 x2=1c019950 x2:1c019930 +75028576ns 1334597 1c002990 00008067 jalr x0, x1, 0 x1:1c002080 +75028616ns 1334599 1c002080 00a00433 add x8, x0, x10 x8=1c00a890 x10:1c00a890 +75028635ns 1334600 1c002082 00050f63 beq x10, x0, 30 x10:1c00a890 +75028655ns 1334601 1c002084 03452823 sw x20, 48(x10) x20:1c00a248 x10:1c00a890 PA:1c00a8c0 +75028675ns 1334602 1c002088 01300633 add x12, x0, x19 x12=00000640 x19:00000640 +75028695ns 1334603 1c00208a 0a500593 addi x11, x0, 165 x11=000000a5 +75028715ns 1334604 1c00208e 01400533 add x10, x0, x20 x10=1c00a248 x20:1c00a248 +75028734ns 1334605 1c002090 debfe0ef jal x1, -4630 x1=1c002094 +75028774ns 1334607 1c000e7a 00a00333 add x6, x0, x10 x6=1c00a248 x10:1c00a248 +75028794ns 1334608 1c000e7c 00060663 beq x12, x0, 12 x12:00000640 +75028813ns 1334609 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a248 PA:1c00a248 +75028833ns 1334610 1c000e82 fff60613 addi x12, x12, -1 x12=0000063f x12:00000640 +75028853ns 1334611 1c000e84 00130313 addi x6, x6, 1 x6=1c00a249 x6:1c00a248 +75028873ns 1334612 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000063f +75028952ns 1334616 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a249 PA:1c00a249 +75028972ns 1334617 1c000e82 fff60613 addi x12, x12, -1 x12=0000063e x12:0000063f +75028992ns 1334618 1c000e84 00130313 addi x6, x6, 1 x6=1c00a24a x6:1c00a249 +75029011ns 1334619 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000063e +75029091ns 1334623 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a24a PA:1c00a24a +75029110ns 1334624 1c000e82 fff60613 addi x12, x12, -1 x12=0000063d x12:0000063e +75029130ns 1334625 1c000e84 00130313 addi x6, x6, 1 x6=1c00a24b x6:1c00a24a +75029150ns 1334626 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000063d +75029229ns 1334630 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a24b PA:1c00a24b +75029249ns 1334631 1c000e82 fff60613 addi x12, x12, -1 x12=0000063c x12:0000063d +75029269ns 1334632 1c000e84 00130313 addi x6, x6, 1 x6=1c00a24c x6:1c00a24b +75029288ns 1334633 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000063c +75029368ns 1334637 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a24c PA:1c00a24c +75029387ns 1334638 1c000e82 fff60613 addi x12, x12, -1 x12=0000063b x12:0000063c +75029407ns 1334639 1c000e84 00130313 addi x6, x6, 1 x6=1c00a24d x6:1c00a24c +75029427ns 1334640 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000063b +75029506ns 1334644 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a24d PA:1c00a24d +75029526ns 1334645 1c000e82 fff60613 addi x12, x12, -1 x12=0000063a x12:0000063b +75029546ns 1334646 1c000e84 00130313 addi x6, x6, 1 x6=1c00a24e x6:1c00a24d +75029566ns 1334647 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000063a +75029645ns 1334651 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a24e PA:1c00a24e +75029665ns 1334652 1c000e82 fff60613 addi x12, x12, -1 x12=00000639 x12:0000063a +75029684ns 1334653 1c000e84 00130313 addi x6, x6, 1 x6=1c00a24f x6:1c00a24e +75029704ns 1334654 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000639 +75029783ns 1334658 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a24f PA:1c00a24f +75029803ns 1334659 1c000e82 fff60613 addi x12, x12, -1 x12=00000638 x12:00000639 +75029823ns 1334660 1c000e84 00130313 addi x6, x6, 1 x6=1c00a250 x6:1c00a24f +75029843ns 1334661 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000638 +75029922ns 1334665 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a250 PA:1c00a250 +75029942ns 1334666 1c000e82 fff60613 addi x12, x12, -1 x12=00000637 x12:00000638 +75029961ns 1334667 1c000e84 00130313 addi x6, x6, 1 x6=1c00a251 x6:1c00a250 +75029981ns 1334668 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000637 +75030060ns 1334672 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a251 PA:1c00a251 +75030080ns 1334673 1c000e82 fff60613 addi x12, x12, -1 x12=00000636 x12:00000637 +75030100ns 1334674 1c000e84 00130313 addi x6, x6, 1 x6=1c00a252 x6:1c00a251 +75030120ns 1334675 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000636 +75030199ns 1334679 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a252 PA:1c00a252 +75030219ns 1334680 1c000e82 fff60613 addi x12, x12, -1 x12=00000635 x12:00000636 +75030239ns 1334681 1c000e84 00130313 addi x6, x6, 1 x6=1c00a253 x6:1c00a252 +75030258ns 1334682 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000635 +75030337ns 1334686 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a253 PA:1c00a253 +75030357ns 1334687 1c000e82 fff60613 addi x12, x12, -1 x12=00000634 x12:00000635 +75030377ns 1334688 1c000e84 00130313 addi x6, x6, 1 x6=1c00a254 x6:1c00a253 +75030397ns 1334689 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000634 +75030476ns 1334693 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a254 PA:1c00a254 +75030496ns 1334694 1c000e82 fff60613 addi x12, x12, -1 x12=00000633 x12:00000634 +75030516ns 1334695 1c000e84 00130313 addi x6, x6, 1 x6=1c00a255 x6:1c00a254 +75030535ns 1334696 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000633 +75030615ns 1334700 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a255 PA:1c00a255 +75030634ns 1334701 1c000e82 fff60613 addi x12, x12, -1 x12=00000632 x12:00000633 +75030654ns 1334702 1c000e84 00130313 addi x6, x6, 1 x6=1c00a256 x6:1c00a255 +75030674ns 1334703 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000632 +75030753ns 1334707 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a256 PA:1c00a256 +75030773ns 1334708 1c000e82 fff60613 addi x12, x12, -1 x12=00000631 x12:00000632 +75030793ns 1334709 1c000e84 00130313 addi x6, x6, 1 x6=1c00a257 x6:1c00a256 +75030812ns 1334710 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000631 +75030892ns 1334714 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a257 PA:1c00a257 +75030911ns 1334715 1c000e82 fff60613 addi x12, x12, -1 x12=00000630 x12:00000631 +75030931ns 1334716 1c000e84 00130313 addi x6, x6, 1 x6=1c00a258 x6:1c00a257 +75030951ns 1334717 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000630 +75031030ns 1334721 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a258 PA:1c00a258 +75031050ns 1334722 1c000e82 fff60613 addi x12, x12, -1 x12=0000062f x12:00000630 +75031070ns 1334723 1c000e84 00130313 addi x6, x6, 1 x6=1c00a259 x6:1c00a258 +75031090ns 1334724 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000062f +75031169ns 1334728 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a259 PA:1c00a259 +75031189ns 1334729 1c000e82 fff60613 addi x12, x12, -1 x12=0000062e x12:0000062f +75031208ns 1334730 1c000e84 00130313 addi x6, x6, 1 x6=1c00a25a x6:1c00a259 +75031228ns 1334731 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000062e +75031307ns 1334735 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a25a PA:1c00a25a +75031327ns 1334736 1c000e82 fff60613 addi x12, x12, -1 x12=0000062d x12:0000062e +75031347ns 1334737 1c000e84 00130313 addi x6, x6, 1 x6=1c00a25b x6:1c00a25a +75031367ns 1334738 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000062d +75031446ns 1334742 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a25b PA:1c00a25b +75031466ns 1334743 1c000e82 fff60613 addi x12, x12, -1 x12=0000062c x12:0000062d +75031485ns 1334744 1c000e84 00130313 addi x6, x6, 1 x6=1c00a25c x6:1c00a25b +75031505ns 1334745 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000062c +75031584ns 1334749 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a25c PA:1c00a25c +75031604ns 1334750 1c000e82 fff60613 addi x12, x12, -1 x12=0000062b x12:0000062c +75031624ns 1334751 1c000e84 00130313 addi x6, x6, 1 x6=1c00a25d x6:1c00a25c +75031644ns 1334752 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000062b +75031723ns 1334756 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a25d PA:1c00a25d +75031743ns 1334757 1c000e82 fff60613 addi x12, x12, -1 x12=0000062a x12:0000062b +75031762ns 1334758 1c000e84 00130313 addi x6, x6, 1 x6=1c00a25e x6:1c00a25d +75031782ns 1334759 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000062a +75031861ns 1334763 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a25e PA:1c00a25e +75031881ns 1334764 1c000e82 fff60613 addi x12, x12, -1 x12=00000629 x12:0000062a +75031901ns 1334765 1c000e84 00130313 addi x6, x6, 1 x6=1c00a25f x6:1c00a25e +75031921ns 1334766 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000629 +75032000ns 1334770 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a25f PA:1c00a25f +75032020ns 1334771 1c000e82 fff60613 addi x12, x12, -1 x12=00000628 x12:00000629 +75032040ns 1334772 1c000e84 00130313 addi x6, x6, 1 x6=1c00a260 x6:1c00a25f +75032059ns 1334773 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000628 +75032139ns 1334777 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a260 PA:1c00a260 +75032158ns 1334778 1c000e82 fff60613 addi x12, x12, -1 x12=00000627 x12:00000628 +75032178ns 1334779 1c000e84 00130313 addi x6, x6, 1 x6=1c00a261 x6:1c00a260 +75032198ns 1334780 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000627 +75032277ns 1334784 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a261 PA:1c00a261 +75032297ns 1334785 1c000e82 fff60613 addi x12, x12, -1 x12=00000626 x12:00000627 +75032317ns 1334786 1c000e84 00130313 addi x6, x6, 1 x6=1c00a262 x6:1c00a261 +75032336ns 1334787 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000626 +75032416ns 1334791 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a262 PA:1c00a262 +75032435ns 1334792 1c000e82 fff60613 addi x12, x12, -1 x12=00000625 x12:00000626 +75032455ns 1334793 1c000e84 00130313 addi x6, x6, 1 x6=1c00a263 x6:1c00a262 +75032475ns 1334794 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000625 +75032554ns 1334798 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a263 PA:1c00a263 +75032574ns 1334799 1c000e82 fff60613 addi x12, x12, -1 x12=00000624 x12:00000625 +75032594ns 1334800 1c000e84 00130313 addi x6, x6, 1 x6=1c00a264 x6:1c00a263 +75032614ns 1334801 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000624 +75032693ns 1334805 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a264 PA:1c00a264 +75032713ns 1334806 1c000e82 fff60613 addi x12, x12, -1 x12=00000623 x12:00000624 +75032732ns 1334807 1c000e84 00130313 addi x6, x6, 1 x6=1c00a265 x6:1c00a264 +75032752ns 1334808 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000623 +75032831ns 1334812 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a265 PA:1c00a265 +75032851ns 1334813 1c000e82 fff60613 addi x12, x12, -1 x12=00000622 x12:00000623 +75032871ns 1334814 1c000e84 00130313 addi x6, x6, 1 x6=1c00a266 x6:1c00a265 +75032891ns 1334815 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000622 +75032970ns 1334819 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a266 PA:1c00a266 +75032990ns 1334820 1c000e82 fff60613 addi x12, x12, -1 x12=00000621 x12:00000622 +75033009ns 1334821 1c000e84 00130313 addi x6, x6, 1 x6=1c00a267 x6:1c00a266 +75033029ns 1334822 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000621 +75033108ns 1334826 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a267 PA:1c00a267 +75033128ns 1334827 1c000e82 fff60613 addi x12, x12, -1 x12=00000620 x12:00000621 +75033148ns 1334828 1c000e84 00130313 addi x6, x6, 1 x6=1c00a268 x6:1c00a267 +75033168ns 1334829 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000620 +75033247ns 1334833 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a268 PA:1c00a268 +75033267ns 1334834 1c000e82 fff60613 addi x12, x12, -1 x12=0000061f x12:00000620 +75033286ns 1334835 1c000e84 00130313 addi x6, x6, 1 x6=1c00a269 x6:1c00a268 +75033306ns 1334836 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000061f +75033385ns 1334840 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a269 PA:1c00a269 +75033405ns 1334841 1c000e82 fff60613 addi x12, x12, -1 x12=0000061e x12:0000061f +75033425ns 1334842 1c000e84 00130313 addi x6, x6, 1 x6=1c00a26a x6:1c00a269 +75033445ns 1334843 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000061e +75033524ns 1334847 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a26a PA:1c00a26a +75033544ns 1334848 1c000e82 fff60613 addi x12, x12, -1 x12=0000061d x12:0000061e +75033564ns 1334849 1c000e84 00130313 addi x6, x6, 1 x6=1c00a26b x6:1c00a26a +75033583ns 1334850 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000061d +75033663ns 1334854 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a26b PA:1c00a26b +75033682ns 1334855 1c000e82 fff60613 addi x12, x12, -1 x12=0000061c x12:0000061d +75033702ns 1334856 1c000e84 00130313 addi x6, x6, 1 x6=1c00a26c x6:1c00a26b +75033722ns 1334857 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000061c +75033801ns 1334861 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a26c PA:1c00a26c +75033821ns 1334862 1c000e82 fff60613 addi x12, x12, -1 x12=0000061b x12:0000061c +75033841ns 1334863 1c000e84 00130313 addi x6, x6, 1 x6=1c00a26d x6:1c00a26c +75033860ns 1334864 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000061b +75033940ns 1334868 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a26d PA:1c00a26d +75033959ns 1334869 1c000e82 fff60613 addi x12, x12, -1 x12=0000061a x12:0000061b +75033979ns 1334870 1c000e84 00130313 addi x6, x6, 1 x6=1c00a26e x6:1c00a26d +75033999ns 1334871 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000061a +75034078ns 1334875 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a26e PA:1c00a26e +75034098ns 1334876 1c000e82 fff60613 addi x12, x12, -1 x12=00000619 x12:0000061a +75034118ns 1334877 1c000e84 00130313 addi x6, x6, 1 x6=1c00a26f x6:1c00a26e +75034138ns 1334878 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000619 +75034217ns 1334882 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a26f PA:1c00a26f +75034236ns 1334883 1c000e82 fff60613 addi x12, x12, -1 x12=00000618 x12:00000619 +75034256ns 1334884 1c000e84 00130313 addi x6, x6, 1 x6=1c00a270 x6:1c00a26f +75034276ns 1334885 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000618 +75034355ns 1334889 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a270 PA:1c00a270 +75034375ns 1334890 1c000e82 fff60613 addi x12, x12, -1 x12=00000617 x12:00000618 +75034395ns 1334891 1c000e84 00130313 addi x6, x6, 1 x6=1c00a271 x6:1c00a270 +75034415ns 1334892 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000617 +75034494ns 1334896 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a271 PA:1c00a271 +75034514ns 1334897 1c000e82 fff60613 addi x12, x12, -1 x12=00000616 x12:00000617 +75034533ns 1334898 1c000e84 00130313 addi x6, x6, 1 x6=1c00a272 x6:1c00a271 +75034553ns 1334899 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000616 +75034632ns 1334903 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a272 PA:1c00a272 +75034652ns 1334904 1c000e82 fff60613 addi x12, x12, -1 x12=00000615 x12:00000616 +75034672ns 1334905 1c000e84 00130313 addi x6, x6, 1 x6=1c00a273 x6:1c00a272 +75034692ns 1334906 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000615 +75034771ns 1334910 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a273 PA:1c00a273 +75034791ns 1334911 1c000e82 fff60613 addi x12, x12, -1 x12=00000614 x12:00000615 +75034810ns 1334912 1c000e84 00130313 addi x6, x6, 1 x6=1c00a274 x6:1c00a273 +75034830ns 1334913 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000614 +75034909ns 1334917 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a274 PA:1c00a274 +75034929ns 1334918 1c000e82 fff60613 addi x12, x12, -1 x12=00000613 x12:00000614 +75034949ns 1334919 1c000e84 00130313 addi x6, x6, 1 x6=1c00a275 x6:1c00a274 +75034969ns 1334920 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000613 +75035048ns 1334924 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a275 PA:1c00a275 +75035068ns 1334925 1c000e82 fff60613 addi x12, x12, -1 x12=00000612 x12:00000613 +75035088ns 1334926 1c000e84 00130313 addi x6, x6, 1 x6=1c00a276 x6:1c00a275 +75035107ns 1334927 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000612 +75035187ns 1334931 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a276 PA:1c00a276 +75035206ns 1334932 1c000e82 fff60613 addi x12, x12, -1 x12=00000611 x12:00000612 +75035226ns 1334933 1c000e84 00130313 addi x6, x6, 1 x6=1c00a277 x6:1c00a276 +75035246ns 1334934 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000611 +75035325ns 1334938 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a277 PA:1c00a277 +75035345ns 1334939 1c000e82 fff60613 addi x12, x12, -1 x12=00000610 x12:00000611 +75035365ns 1334940 1c000e84 00130313 addi x6, x6, 1 x6=1c00a278 x6:1c00a277 +75035384ns 1334941 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000610 +75035464ns 1334945 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a278 PA:1c00a278 +75035483ns 1334946 1c000e82 fff60613 addi x12, x12, -1 x12=0000060f x12:00000610 +75035503ns 1334947 1c000e84 00130313 addi x6, x6, 1 x6=1c00a279 x6:1c00a278 +75035523ns 1334948 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000060f +75035602ns 1334952 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a279 PA:1c00a279 +75035622ns 1334953 1c000e82 fff60613 addi x12, x12, -1 x12=0000060e x12:0000060f +75035642ns 1334954 1c000e84 00130313 addi x6, x6, 1 x6=1c00a27a x6:1c00a279 +75035662ns 1334955 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000060e +75035741ns 1334959 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a27a PA:1c00a27a +75035760ns 1334960 1c000e82 fff60613 addi x12, x12, -1 x12=0000060d x12:0000060e +75035780ns 1334961 1c000e84 00130313 addi x6, x6, 1 x6=1c00a27b x6:1c00a27a +75035800ns 1334962 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000060d +75035879ns 1334966 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a27b PA:1c00a27b +75035899ns 1334967 1c000e82 fff60613 addi x12, x12, -1 x12=0000060c x12:0000060d +75035919ns 1334968 1c000e84 00130313 addi x6, x6, 1 x6=1c00a27c x6:1c00a27b +75035939ns 1334969 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000060c +75036018ns 1334973 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a27c PA:1c00a27c +75036038ns 1334974 1c000e82 fff60613 addi x12, x12, -1 x12=0000060b x12:0000060c +75036057ns 1334975 1c000e84 00130313 addi x6, x6, 1 x6=1c00a27d x6:1c00a27c +75036077ns 1334976 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000060b +75036156ns 1334980 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a27d PA:1c00a27d +75036176ns 1334981 1c000e82 fff60613 addi x12, x12, -1 x12=0000060a x12:0000060b +75036196ns 1334982 1c000e84 00130313 addi x6, x6, 1 x6=1c00a27e x6:1c00a27d +75036216ns 1334983 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000060a +75036295ns 1334987 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a27e PA:1c00a27e +75036315ns 1334988 1c000e82 fff60613 addi x12, x12, -1 x12=00000609 x12:0000060a +75036334ns 1334989 1c000e84 00130313 addi x6, x6, 1 x6=1c00a27f x6:1c00a27e +75036354ns 1334990 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000609 +75036433ns 1334994 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a27f PA:1c00a27f +75036453ns 1334995 1c000e82 fff60613 addi x12, x12, -1 x12=00000608 x12:00000609 +75036473ns 1334996 1c000e84 00130313 addi x6, x6, 1 x6=1c00a280 x6:1c00a27f +75036493ns 1334997 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000608 +75036572ns 1335001 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a280 PA:1c00a280 +75036592ns 1335002 1c000e82 fff60613 addi x12, x12, -1 x12=00000607 x12:00000608 +75036612ns 1335003 1c000e84 00130313 addi x6, x6, 1 x6=1c00a281 x6:1c00a280 +75036631ns 1335004 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000607 +75036710ns 1335008 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a281 PA:1c00a281 +75036730ns 1335009 1c000e82 fff60613 addi x12, x12, -1 x12=00000606 x12:00000607 +75036750ns 1335010 1c000e84 00130313 addi x6, x6, 1 x6=1c00a282 x6:1c00a281 +75036770ns 1335011 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000606 +75036849ns 1335015 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a282 PA:1c00a282 +75036869ns 1335016 1c000e82 fff60613 addi x12, x12, -1 x12=00000605 x12:00000606 +75036889ns 1335017 1c000e84 00130313 addi x6, x6, 1 x6=1c00a283 x6:1c00a282 +75036908ns 1335018 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000605 +75036988ns 1335022 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a283 PA:1c00a283 +75037007ns 1335023 1c000e82 fff60613 addi x12, x12, -1 x12=00000604 x12:00000605 +75037027ns 1335024 1c000e84 00130313 addi x6, x6, 1 x6=1c00a284 x6:1c00a283 +75037047ns 1335025 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000604 +75037126ns 1335029 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a284 PA:1c00a284 +75037146ns 1335030 1c000e82 fff60613 addi x12, x12, -1 x12=00000603 x12:00000604 +75037166ns 1335031 1c000e84 00130313 addi x6, x6, 1 x6=1c00a285 x6:1c00a284 +75037185ns 1335032 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000603 +75037265ns 1335036 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a285 PA:1c00a285 +75037284ns 1335037 1c000e82 fff60613 addi x12, x12, -1 x12=00000602 x12:00000603 +75037304ns 1335038 1c000e84 00130313 addi x6, x6, 1 x6=1c00a286 x6:1c00a285 +75037324ns 1335039 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000602 +75037403ns 1335043 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a286 PA:1c00a286 +75037423ns 1335044 1c000e82 fff60613 addi x12, x12, -1 x12=00000601 x12:00000602 +75037443ns 1335045 1c000e84 00130313 addi x6, x6, 1 x6=1c00a287 x6:1c00a286 +75037463ns 1335046 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000601 +75037542ns 1335050 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a287 PA:1c00a287 +75037562ns 1335051 1c000e82 fff60613 addi x12, x12, -1 x12=00000600 x12:00000601 +75037581ns 1335052 1c000e84 00130313 addi x6, x6, 1 x6=1c00a288 x6:1c00a287 +75037601ns 1335053 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000600 +75037680ns 1335057 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a288 PA:1c00a288 +75037700ns 1335058 1c000e82 fff60613 addi x12, x12, -1 x12=000005ff x12:00000600 +75037720ns 1335059 1c000e84 00130313 addi x6, x6, 1 x6=1c00a289 x6:1c00a288 +75037740ns 1335060 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005ff +75037819ns 1335064 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a289 PA:1c00a289 +75037839ns 1335065 1c000e82 fff60613 addi x12, x12, -1 x12=000005fe x12:000005ff +75037858ns 1335066 1c000e84 00130313 addi x6, x6, 1 x6=1c00a28a x6:1c00a289 +75037878ns 1335067 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005fe +75037957ns 1335071 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a28a PA:1c00a28a +75037977ns 1335072 1c000e82 fff60613 addi x12, x12, -1 x12=000005fd x12:000005fe +75037997ns 1335073 1c000e84 00130313 addi x6, x6, 1 x6=1c00a28b x6:1c00a28a +75038017ns 1335074 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005fd +75038096ns 1335078 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a28b PA:1c00a28b +75038116ns 1335079 1c000e82 fff60613 addi x12, x12, -1 x12=000005fc x12:000005fd +75038136ns 1335080 1c000e84 00130313 addi x6, x6, 1 x6=1c00a28c x6:1c00a28b +75038155ns 1335081 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005fc +75038234ns 1335085 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a28c PA:1c00a28c +75038254ns 1335086 1c000e82 fff60613 addi x12, x12, -1 x12=000005fb x12:000005fc +75038274ns 1335087 1c000e84 00130313 addi x6, x6, 1 x6=1c00a28d x6:1c00a28c +75038294ns 1335088 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005fb +75038373ns 1335092 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a28d PA:1c00a28d +75038393ns 1335093 1c000e82 fff60613 addi x12, x12, -1 x12=000005fa x12:000005fb +75038413ns 1335094 1c000e84 00130313 addi x6, x6, 1 x6=1c00a28e x6:1c00a28d +75038432ns 1335095 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005fa +75038512ns 1335099 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a28e PA:1c00a28e +75038531ns 1335100 1c000e82 fff60613 addi x12, x12, -1 x12=000005f9 x12:000005fa +75038551ns 1335101 1c000e84 00130313 addi x6, x6, 1 x6=1c00a28f x6:1c00a28e +75038571ns 1335102 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005f9 +75038650ns 1335106 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a28f PA:1c00a28f +75038670ns 1335107 1c000e82 fff60613 addi x12, x12, -1 x12=000005f8 x12:000005f9 +75038690ns 1335108 1c000e84 00130313 addi x6, x6, 1 x6=1c00a290 x6:1c00a28f +75038709ns 1335109 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005f8 +75038789ns 1335113 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a290 PA:1c00a290 +75038808ns 1335114 1c000e82 fff60613 addi x12, x12, -1 x12=000005f7 x12:000005f8 +75038828ns 1335115 1c000e84 00130313 addi x6, x6, 1 x6=1c00a291 x6:1c00a290 +75038848ns 1335116 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005f7 +75038927ns 1335120 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a291 PA:1c00a291 +75038947ns 1335121 1c000e82 fff60613 addi x12, x12, -1 x12=000005f6 x12:000005f7 +75038967ns 1335122 1c000e84 00130313 addi x6, x6, 1 x6=1c00a292 x6:1c00a291 +75038987ns 1335123 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005f6 +75039066ns 1335127 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a292 PA:1c00a292 +75039086ns 1335128 1c000e82 fff60613 addi x12, x12, -1 x12=000005f5 x12:000005f6 +75039105ns 1335129 1c000e84 00130313 addi x6, x6, 1 x6=1c00a293 x6:1c00a292 +75039125ns 1335130 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005f5 +75039204ns 1335134 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a293 PA:1c00a293 +75039224ns 1335135 1c000e82 fff60613 addi x12, x12, -1 x12=000005f4 x12:000005f5 +75039244ns 1335136 1c000e84 00130313 addi x6, x6, 1 x6=1c00a294 x6:1c00a293 +75039264ns 1335137 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005f4 +75039343ns 1335141 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a294 PA:1c00a294 +75039363ns 1335142 1c000e82 fff60613 addi x12, x12, -1 x12=000005f3 x12:000005f4 +75039382ns 1335143 1c000e84 00130313 addi x6, x6, 1 x6=1c00a295 x6:1c00a294 +75039402ns 1335144 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005f3 +75039481ns 1335148 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a295 PA:1c00a295 +75039501ns 1335149 1c000e82 fff60613 addi x12, x12, -1 x12=000005f2 x12:000005f3 +75039521ns 1335150 1c000e84 00130313 addi x6, x6, 1 x6=1c00a296 x6:1c00a295 +75039541ns 1335151 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005f2 +75039620ns 1335155 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a296 PA:1c00a296 +75039640ns 1335156 1c000e82 fff60613 addi x12, x12, -1 x12=000005f1 x12:000005f2 +75039659ns 1335157 1c000e84 00130313 addi x6, x6, 1 x6=1c00a297 x6:1c00a296 +75039679ns 1335158 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005f1 +75039758ns 1335162 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a297 PA:1c00a297 +75039778ns 1335163 1c000e82 fff60613 addi x12, x12, -1 x12=000005f0 x12:000005f1 +75039798ns 1335164 1c000e84 00130313 addi x6, x6, 1 x6=1c00a298 x6:1c00a297 +75039818ns 1335165 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005f0 +75039897ns 1335169 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a298 PA:1c00a298 +75039917ns 1335170 1c000e82 fff60613 addi x12, x12, -1 x12=000005ef x12:000005f0 +75039937ns 1335171 1c000e84 00130313 addi x6, x6, 1 x6=1c00a299 x6:1c00a298 +75039956ns 1335172 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005ef +75040036ns 1335176 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a299 PA:1c00a299 +75040055ns 1335177 1c000e82 fff60613 addi x12, x12, -1 x12=000005ee x12:000005ef +75040075ns 1335178 1c000e84 00130313 addi x6, x6, 1 x6=1c00a29a x6:1c00a299 +75040095ns 1335179 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005ee +75040174ns 1335183 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a29a PA:1c00a29a +75040194ns 1335184 1c000e82 fff60613 addi x12, x12, -1 x12=000005ed x12:000005ee +75040214ns 1335185 1c000e84 00130313 addi x6, x6, 1 x6=1c00a29b x6:1c00a29a +75040233ns 1335186 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005ed +75040313ns 1335190 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a29b PA:1c00a29b +75040332ns 1335191 1c000e82 fff60613 addi x12, x12, -1 x12=000005ec x12:000005ed +75040352ns 1335192 1c000e84 00130313 addi x6, x6, 1 x6=1c00a29c x6:1c00a29b +75040372ns 1335193 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005ec +75040451ns 1335197 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a29c PA:1c00a29c +75040471ns 1335198 1c000e82 fff60613 addi x12, x12, -1 x12=000005eb x12:000005ec +75040491ns 1335199 1c000e84 00130313 addi x6, x6, 1 x6=1c00a29d x6:1c00a29c +75040511ns 1335200 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005eb +75040590ns 1335204 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a29d PA:1c00a29d +75040610ns 1335205 1c000e82 fff60613 addi x12, x12, -1 x12=000005ea x12:000005eb +75040629ns 1335206 1c000e84 00130313 addi x6, x6, 1 x6=1c00a29e x6:1c00a29d +75040649ns 1335207 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005ea +75040728ns 1335211 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a29e PA:1c00a29e +75040748ns 1335212 1c000e82 fff60613 addi x12, x12, -1 x12=000005e9 x12:000005ea +75040768ns 1335213 1c000e84 00130313 addi x6, x6, 1 x6=1c00a29f x6:1c00a29e +75040788ns 1335214 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005e9 +75040867ns 1335218 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a29f PA:1c00a29f +75040887ns 1335219 1c000e82 fff60613 addi x12, x12, -1 x12=000005e8 x12:000005e9 +75040906ns 1335220 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2a0 x6:1c00a29f +75040926ns 1335221 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005e8 +75041005ns 1335225 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2a0 PA:1c00a2a0 +75041025ns 1335226 1c000e82 fff60613 addi x12, x12, -1 x12=000005e7 x12:000005e8 +75041045ns 1335227 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2a1 x6:1c00a2a0 +75041065ns 1335228 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005e7 +75041144ns 1335232 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2a1 PA:1c00a2a1 +75041164ns 1335233 1c000e82 fff60613 addi x12, x12, -1 x12=000005e6 x12:000005e7 +75041183ns 1335234 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2a2 x6:1c00a2a1 +75041203ns 1335235 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005e6 +75041282ns 1335239 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2a2 PA:1c00a2a2 +75041302ns 1335240 1c000e82 fff60613 addi x12, x12, -1 x12=000005e5 x12:000005e6 +75041322ns 1335241 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2a3 x6:1c00a2a2 +75041342ns 1335242 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005e5 +75041421ns 1335246 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2a3 PA:1c00a2a3 +75041441ns 1335247 1c000e82 fff60613 addi x12, x12, -1 x12=000005e4 x12:000005e5 +75041461ns 1335248 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2a4 x6:1c00a2a3 +75041480ns 1335249 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005e4 +75041560ns 1335253 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2a4 PA:1c00a2a4 +75041579ns 1335254 1c000e82 fff60613 addi x12, x12, -1 x12=000005e3 x12:000005e4 +75041599ns 1335255 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2a5 x6:1c00a2a4 +75041619ns 1335256 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005e3 +75041698ns 1335260 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2a5 PA:1c00a2a5 +75041718ns 1335261 1c000e82 fff60613 addi x12, x12, -1 x12=000005e2 x12:000005e3 +75041738ns 1335262 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2a6 x6:1c00a2a5 +75041757ns 1335263 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005e2 +75041837ns 1335267 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2a6 PA:1c00a2a6 +75041856ns 1335268 1c000e82 fff60613 addi x12, x12, -1 x12=000005e1 x12:000005e2 +75041876ns 1335269 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2a7 x6:1c00a2a6 +75041896ns 1335270 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005e1 +75041975ns 1335274 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2a7 PA:1c00a2a7 +75041995ns 1335275 1c000e82 fff60613 addi x12, x12, -1 x12=000005e0 x12:000005e1 +75042015ns 1335276 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2a8 x6:1c00a2a7 +75042035ns 1335277 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005e0 +75042114ns 1335281 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2a8 PA:1c00a2a8 +75042133ns 1335282 1c000e82 fff60613 addi x12, x12, -1 x12=000005df x12:000005e0 +75042153ns 1335283 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2a9 x6:1c00a2a8 +75042173ns 1335284 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005df +75042252ns 1335288 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2a9 PA:1c00a2a9 +75042272ns 1335289 1c000e82 fff60613 addi x12, x12, -1 x12=000005de x12:000005df +75042292ns 1335290 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2aa x6:1c00a2a9 +75042312ns 1335291 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005de +75042391ns 1335295 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2aa PA:1c00a2aa +75042411ns 1335296 1c000e82 fff60613 addi x12, x12, -1 x12=000005dd x12:000005de +75042430ns 1335297 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2ab x6:1c00a2aa +75042450ns 1335298 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005dd +75042529ns 1335302 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2ab PA:1c00a2ab +75042549ns 1335303 1c000e82 fff60613 addi x12, x12, -1 x12=000005dc x12:000005dd +75042569ns 1335304 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2ac x6:1c00a2ab +75042589ns 1335305 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005dc +75042668ns 1335309 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2ac PA:1c00a2ac +75042688ns 1335310 1c000e82 fff60613 addi x12, x12, -1 x12=000005db x12:000005dc +75042707ns 1335311 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2ad x6:1c00a2ac +75042727ns 1335312 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005db +75042806ns 1335316 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2ad PA:1c00a2ad +75042826ns 1335317 1c000e82 fff60613 addi x12, x12, -1 x12=000005da x12:000005db +75042846ns 1335318 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2ae x6:1c00a2ad +75042866ns 1335319 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005da +75042945ns 1335323 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2ae PA:1c00a2ae +75042965ns 1335324 1c000e82 fff60613 addi x12, x12, -1 x12=000005d9 x12:000005da +75042985ns 1335325 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2af x6:1c00a2ae +75043004ns 1335326 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005d9 +75043084ns 1335330 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2af PA:1c00a2af +75043103ns 1335331 1c000e82 fff60613 addi x12, x12, -1 x12=000005d8 x12:000005d9 +75043123ns 1335332 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2b0 x6:1c00a2af +75043143ns 1335333 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005d8 +75043222ns 1335337 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2b0 PA:1c00a2b0 +75043242ns 1335338 1c000e82 fff60613 addi x12, x12, -1 x12=000005d7 x12:000005d8 +75043262ns 1335339 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2b1 x6:1c00a2b0 +75043281ns 1335340 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005d7 +75043361ns 1335344 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2b1 PA:1c00a2b1 +75043380ns 1335345 1c000e82 fff60613 addi x12, x12, -1 x12=000005d6 x12:000005d7 +75043400ns 1335346 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2b2 x6:1c00a2b1 +75043420ns 1335347 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005d6 +75043499ns 1335351 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2b2 PA:1c00a2b2 +75043519ns 1335352 1c000e82 fff60613 addi x12, x12, -1 x12=000005d5 x12:000005d6 +75043539ns 1335353 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2b3 x6:1c00a2b2 +75043559ns 1335354 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005d5 +75043638ns 1335358 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2b3 PA:1c00a2b3 +75043657ns 1335359 1c000e82 fff60613 addi x12, x12, -1 x12=000005d4 x12:000005d5 +75043677ns 1335360 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2b4 x6:1c00a2b3 +75043697ns 1335361 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005d4 +75043776ns 1335365 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2b4 PA:1c00a2b4 +75043796ns 1335366 1c000e82 fff60613 addi x12, x12, -1 x12=000005d3 x12:000005d4 +75043816ns 1335367 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2b5 x6:1c00a2b4 +75043836ns 1335368 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005d3 +75043915ns 1335372 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2b5 PA:1c00a2b5 +75043935ns 1335373 1c000e82 fff60613 addi x12, x12, -1 x12=000005d2 x12:000005d3 +75043954ns 1335374 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2b6 x6:1c00a2b5 +75043974ns 1335375 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005d2 +75044053ns 1335379 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2b6 PA:1c00a2b6 +75044073ns 1335380 1c000e82 fff60613 addi x12, x12, -1 x12=000005d1 x12:000005d2 +75044093ns 1335381 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2b7 x6:1c00a2b6 +75044113ns 1335382 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005d1 +75044192ns 1335386 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2b7 PA:1c00a2b7 +75044212ns 1335387 1c000e82 fff60613 addi x12, x12, -1 x12=000005d0 x12:000005d1 +75044231ns 1335388 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2b8 x6:1c00a2b7 +75044251ns 1335389 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005d0 +75044330ns 1335393 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2b8 PA:1c00a2b8 +75044350ns 1335394 1c000e82 fff60613 addi x12, x12, -1 x12=000005cf x12:000005d0 +75044370ns 1335395 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2b9 x6:1c00a2b8 +75044390ns 1335396 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005cf +75044469ns 1335400 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2b9 PA:1c00a2b9 +75044489ns 1335401 1c000e82 fff60613 addi x12, x12, -1 x12=000005ce x12:000005cf +75044509ns 1335402 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2ba x6:1c00a2b9 +75044528ns 1335403 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005ce +75044607ns 1335407 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2ba PA:1c00a2ba +75044627ns 1335408 1c000e82 fff60613 addi x12, x12, -1 x12=000005cd x12:000005ce +75044647ns 1335409 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2bb x6:1c00a2ba +75044667ns 1335410 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005cd +75044746ns 1335414 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2bb PA:1c00a2bb +75044766ns 1335415 1c000e82 fff60613 addi x12, x12, -1 x12=000005cc x12:000005cd +75044786ns 1335416 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2bc x6:1c00a2bb +75044805ns 1335417 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005cc +75044885ns 1335421 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2bc PA:1c00a2bc +75044904ns 1335422 1c000e82 fff60613 addi x12, x12, -1 x12=000005cb x12:000005cc +75044924ns 1335423 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2bd x6:1c00a2bc +75044944ns 1335424 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005cb +75045023ns 1335428 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2bd PA:1c00a2bd +75045043ns 1335429 1c000e82 fff60613 addi x12, x12, -1 x12=000005ca x12:000005cb +75045063ns 1335430 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2be x6:1c00a2bd +75045083ns 1335431 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005ca +75045162ns 1335435 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2be PA:1c00a2be +75045181ns 1335436 1c000e82 fff60613 addi x12, x12, -1 x12=000005c9 x12:000005ca +75045201ns 1335437 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2bf x6:1c00a2be +75045221ns 1335438 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005c9 +75045300ns 1335442 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2bf PA:1c00a2bf +75045320ns 1335443 1c000e82 fff60613 addi x12, x12, -1 x12=000005c8 x12:000005c9 +75045340ns 1335444 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2c0 x6:1c00a2bf +75045360ns 1335445 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005c8 +75045439ns 1335449 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2c0 PA:1c00a2c0 +75045459ns 1335450 1c000e82 fff60613 addi x12, x12, -1 x12=000005c7 x12:000005c8 +75045478ns 1335451 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2c1 x6:1c00a2c0 +75045498ns 1335452 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005c7 +75045577ns 1335456 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2c1 PA:1c00a2c1 +75045597ns 1335457 1c000e82 fff60613 addi x12, x12, -1 x12=000005c6 x12:000005c7 +75045617ns 1335458 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2c2 x6:1c00a2c1 +75045637ns 1335459 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005c6 +75045716ns 1335463 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2c2 PA:1c00a2c2 +75045736ns 1335464 1c000e82 fff60613 addi x12, x12, -1 x12=000005c5 x12:000005c6 +75045755ns 1335465 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2c3 x6:1c00a2c2 +75045775ns 1335466 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005c5 +75045854ns 1335470 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2c3 PA:1c00a2c3 +75045874ns 1335471 1c000e82 fff60613 addi x12, x12, -1 x12=000005c4 x12:000005c5 +75045894ns 1335472 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2c4 x6:1c00a2c3 +75045914ns 1335473 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005c4 +75045993ns 1335477 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2c4 PA:1c00a2c4 +75046013ns 1335478 1c000e82 fff60613 addi x12, x12, -1 x12=000005c3 x12:000005c4 +75046033ns 1335479 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2c5 x6:1c00a2c4 +75046052ns 1335480 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005c3 +75046131ns 1335484 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2c5 PA:1c00a2c5 +75046151ns 1335485 1c000e82 fff60613 addi x12, x12, -1 x12=000005c2 x12:000005c3 +75046171ns 1335486 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2c6 x6:1c00a2c5 +75046191ns 1335487 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005c2 +75046270ns 1335491 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2c6 PA:1c00a2c6 +75046290ns 1335492 1c000e82 fff60613 addi x12, x12, -1 x12=000005c1 x12:000005c2 +75046310ns 1335493 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2c7 x6:1c00a2c6 +75046329ns 1335494 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005c1 +75046409ns 1335498 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2c7 PA:1c00a2c7 +75046428ns 1335499 1c000e82 fff60613 addi x12, x12, -1 x12=000005c0 x12:000005c1 +75046448ns 1335500 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2c8 x6:1c00a2c7 +75046468ns 1335501 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005c0 +75046547ns 1335505 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2c8 PA:1c00a2c8 +75046567ns 1335506 1c000e82 fff60613 addi x12, x12, -1 x12=000005bf x12:000005c0 +75046587ns 1335507 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2c9 x6:1c00a2c8 +75046606ns 1335508 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005bf +75046686ns 1335512 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2c9 PA:1c00a2c9 +75046705ns 1335513 1c000e82 fff60613 addi x12, x12, -1 x12=000005be x12:000005bf +75046725ns 1335514 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2ca x6:1c00a2c9 +75046745ns 1335515 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005be +75046824ns 1335519 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2ca PA:1c00a2ca +75046844ns 1335520 1c000e82 fff60613 addi x12, x12, -1 x12=000005bd x12:000005be +75046864ns 1335521 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2cb x6:1c00a2ca +75046884ns 1335522 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005bd +75046963ns 1335526 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2cb PA:1c00a2cb +75046983ns 1335527 1c000e82 fff60613 addi x12, x12, -1 x12=000005bc x12:000005bd +75047002ns 1335528 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2cc x6:1c00a2cb +75047022ns 1335529 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005bc +75047101ns 1335533 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2cc PA:1c00a2cc +75047121ns 1335534 1c000e82 fff60613 addi x12, x12, -1 x12=000005bb x12:000005bc +75047141ns 1335535 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2cd x6:1c00a2cc +75047161ns 1335536 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005bb +75047240ns 1335540 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2cd PA:1c00a2cd +75047260ns 1335541 1c000e82 fff60613 addi x12, x12, -1 x12=000005ba x12:000005bb +75047279ns 1335542 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2ce x6:1c00a2cd +75047299ns 1335543 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005ba +75047378ns 1335547 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2ce PA:1c00a2ce +75047398ns 1335548 1c000e82 fff60613 addi x12, x12, -1 x12=000005b9 x12:000005ba +75047418ns 1335549 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2cf x6:1c00a2ce +75047438ns 1335550 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005b9 +75047517ns 1335554 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2cf PA:1c00a2cf +75047537ns 1335555 1c000e82 fff60613 addi x12, x12, -1 x12=000005b8 x12:000005b9 +75047557ns 1335556 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2d0 x6:1c00a2cf +75047576ns 1335557 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005b8 +75047655ns 1335561 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2d0 PA:1c00a2d0 +75047675ns 1335562 1c000e82 fff60613 addi x12, x12, -1 x12=000005b7 x12:000005b8 +75047695ns 1335563 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2d1 x6:1c00a2d0 +75047715ns 1335564 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005b7 +75047794ns 1335568 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2d1 PA:1c00a2d1 +75047814ns 1335569 1c000e82 fff60613 addi x12, x12, -1 x12=000005b6 x12:000005b7 +75047834ns 1335570 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2d2 x6:1c00a2d1 +75047853ns 1335571 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005b6 +75047933ns 1335575 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2d2 PA:1c00a2d2 +75047952ns 1335576 1c000e82 fff60613 addi x12, x12, -1 x12=000005b5 x12:000005b6 +75047972ns 1335577 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2d3 x6:1c00a2d2 +75047992ns 1335578 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005b5 +75048071ns 1335582 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2d3 PA:1c00a2d3 +75048091ns 1335583 1c000e82 fff60613 addi x12, x12, -1 x12=000005b4 x12:000005b5 +75048111ns 1335584 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2d4 x6:1c00a2d3 +75048130ns 1335585 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005b4 +75048210ns 1335589 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2d4 PA:1c00a2d4 +75048229ns 1335590 1c000e82 fff60613 addi x12, x12, -1 x12=000005b3 x12:000005b4 +75048249ns 1335591 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2d5 x6:1c00a2d4 +75048269ns 1335592 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005b3 +75048348ns 1335596 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2d5 PA:1c00a2d5 +75048368ns 1335597 1c000e82 fff60613 addi x12, x12, -1 x12=000005b2 x12:000005b3 +75048388ns 1335598 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2d6 x6:1c00a2d5 +75048408ns 1335599 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005b2 +75048487ns 1335603 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2d6 PA:1c00a2d6 +75048507ns 1335604 1c000e82 fff60613 addi x12, x12, -1 x12=000005b1 x12:000005b2 +75048526ns 1335605 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2d7 x6:1c00a2d6 +75048546ns 1335606 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005b1 +75048625ns 1335610 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2d7 PA:1c00a2d7 +75048645ns 1335611 1c000e82 fff60613 addi x12, x12, -1 x12=000005b0 x12:000005b1 +75048665ns 1335612 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2d8 x6:1c00a2d7 +75048685ns 1335613 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005b0 +75048764ns 1335617 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2d8 PA:1c00a2d8 +75048784ns 1335618 1c000e82 fff60613 addi x12, x12, -1 x12=000005af x12:000005b0 +75048803ns 1335619 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2d9 x6:1c00a2d8 +75048823ns 1335620 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005af +75048902ns 1335624 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2d9 PA:1c00a2d9 +75048922ns 1335625 1c000e82 fff60613 addi x12, x12, -1 x12=000005ae x12:000005af +75048942ns 1335626 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2da x6:1c00a2d9 +75048962ns 1335627 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005ae +75049041ns 1335631 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2da PA:1c00a2da +75049061ns 1335632 1c000e82 fff60613 addi x12, x12, -1 x12=000005ad x12:000005ae +75049080ns 1335633 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2db x6:1c00a2da +75049100ns 1335634 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005ad +75049179ns 1335638 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2db PA:1c00a2db +75049199ns 1335639 1c000e82 fff60613 addi x12, x12, -1 x12=000005ac x12:000005ad +75049219ns 1335640 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2dc x6:1c00a2db +75049239ns 1335641 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005ac +75049318ns 1335645 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2dc PA:1c00a2dc +75049338ns 1335646 1c000e82 fff60613 addi x12, x12, -1 x12=000005ab x12:000005ac +75049358ns 1335647 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2dd x6:1c00a2dc +75049377ns 1335648 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005ab +75049457ns 1335652 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2dd PA:1c00a2dd +75049476ns 1335653 1c000e82 fff60613 addi x12, x12, -1 x12=000005aa x12:000005ab +75049496ns 1335654 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2de x6:1c00a2dd +75049516ns 1335655 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005aa +75049595ns 1335659 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2de PA:1c00a2de +75049615ns 1335660 1c000e82 fff60613 addi x12, x12, -1 x12=000005a9 x12:000005aa +75049635ns 1335661 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2df x6:1c00a2de +75049654ns 1335662 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005a9 +75049734ns 1335666 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2df PA:1c00a2df +75049753ns 1335667 1c000e82 fff60613 addi x12, x12, -1 x12=000005a8 x12:000005a9 +75049773ns 1335668 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2e0 x6:1c00a2df +75049793ns 1335669 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005a8 +75049872ns 1335673 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2e0 PA:1c00a2e0 +75049892ns 1335674 1c000e82 fff60613 addi x12, x12, -1 x12=000005a7 x12:000005a8 +75049912ns 1335675 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2e1 x6:1c00a2e0 +75049932ns 1335676 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005a7 +75050011ns 1335680 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2e1 PA:1c00a2e1 +75050031ns 1335681 1c000e82 fff60613 addi x12, x12, -1 x12=000005a6 x12:000005a7 +75050050ns 1335682 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2e2 x6:1c00a2e1 +75050070ns 1335683 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005a6 +75050149ns 1335687 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2e2 PA:1c00a2e2 +75050169ns 1335688 1c000e82 fff60613 addi x12, x12, -1 x12=000005a5 x12:000005a6 +75050189ns 1335689 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2e3 x6:1c00a2e2 +75050209ns 1335690 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005a5 +75050288ns 1335694 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2e3 PA:1c00a2e3 +75050308ns 1335695 1c000e82 fff60613 addi x12, x12, -1 x12=000005a4 x12:000005a5 +75050327ns 1335696 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2e4 x6:1c00a2e3 +75050347ns 1335697 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005a4 +75050426ns 1335701 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2e4 PA:1c00a2e4 +75050446ns 1335702 1c000e82 fff60613 addi x12, x12, -1 x12=000005a3 x12:000005a4 +75050466ns 1335703 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2e5 x6:1c00a2e4 +75050486ns 1335704 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005a3 +75050565ns 1335708 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2e5 PA:1c00a2e5 +75050585ns 1335709 1c000e82 fff60613 addi x12, x12, -1 x12=000005a2 x12:000005a3 +75050604ns 1335710 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2e6 x6:1c00a2e5 +75050624ns 1335711 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005a2 +75050703ns 1335715 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2e6 PA:1c00a2e6 +75050723ns 1335716 1c000e82 fff60613 addi x12, x12, -1 x12=000005a1 x12:000005a2 +75050743ns 1335717 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2e7 x6:1c00a2e6 +75050763ns 1335718 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005a1 +75050842ns 1335722 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2e7 PA:1c00a2e7 +75050862ns 1335723 1c000e82 fff60613 addi x12, x12, -1 x12=000005a0 x12:000005a1 +75050882ns 1335724 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2e8 x6:1c00a2e7 +75050901ns 1335725 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005a0 +75050981ns 1335729 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2e8 PA:1c00a2e8 +75051000ns 1335730 1c000e82 fff60613 addi x12, x12, -1 x12=0000059f x12:000005a0 +75051020ns 1335731 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2e9 x6:1c00a2e8 +75051040ns 1335732 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000059f +75051119ns 1335736 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2e9 PA:1c00a2e9 +75051139ns 1335737 1c000e82 fff60613 addi x12, x12, -1 x12=0000059e x12:0000059f +75051159ns 1335738 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2ea x6:1c00a2e9 +75051178ns 1335739 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000059e +75051258ns 1335743 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2ea PA:1c00a2ea +75051277ns 1335744 1c000e82 fff60613 addi x12, x12, -1 x12=0000059d x12:0000059e +75051297ns 1335745 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2eb x6:1c00a2ea +75051317ns 1335746 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000059d +75051396ns 1335750 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2eb PA:1c00a2eb +75051416ns 1335751 1c000e82 fff60613 addi x12, x12, -1 x12=0000059c x12:0000059d +75051436ns 1335752 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2ec x6:1c00a2eb +75051456ns 1335753 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000059c +75051535ns 1335757 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2ec PA:1c00a2ec +75051554ns 1335758 1c000e82 fff60613 addi x12, x12, -1 x12=0000059b x12:0000059c +75051574ns 1335759 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2ed x6:1c00a2ec +75051594ns 1335760 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000059b +75051673ns 1335764 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2ed PA:1c00a2ed +75051693ns 1335765 1c000e82 fff60613 addi x12, x12, -1 x12=0000059a x12:0000059b +75051713ns 1335766 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2ee x6:1c00a2ed +75051733ns 1335767 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000059a +75051812ns 1335771 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2ee PA:1c00a2ee +75051832ns 1335772 1c000e82 fff60613 addi x12, x12, -1 x12=00000599 x12:0000059a +75051851ns 1335773 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2ef x6:1c00a2ee +75051871ns 1335774 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000599 +75051950ns 1335778 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2ef PA:1c00a2ef +75051970ns 1335779 1c000e82 fff60613 addi x12, x12, -1 x12=00000598 x12:00000599 +75051990ns 1335780 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2f0 x6:1c00a2ef +75052010ns 1335781 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000598 +75052089ns 1335785 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2f0 PA:1c00a2f0 +75052109ns 1335786 1c000e82 fff60613 addi x12, x12, -1 x12=00000597 x12:00000598 +75052128ns 1335787 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2f1 x6:1c00a2f0 +75052148ns 1335788 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000597 +75052227ns 1335792 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2f1 PA:1c00a2f1 +75052247ns 1335793 1c000e82 fff60613 addi x12, x12, -1 x12=00000596 x12:00000597 +75052267ns 1335794 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2f2 x6:1c00a2f1 +75052287ns 1335795 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000596 +75052366ns 1335799 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2f2 PA:1c00a2f2 +75052386ns 1335800 1c000e82 fff60613 addi x12, x12, -1 x12=00000595 x12:00000596 +75052406ns 1335801 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2f3 x6:1c00a2f2 +75052425ns 1335802 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000595 +75052505ns 1335806 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2f3 PA:1c00a2f3 +75052524ns 1335807 1c000e82 fff60613 addi x12, x12, -1 x12=00000594 x12:00000595 +75052544ns 1335808 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2f4 x6:1c00a2f3 +75052564ns 1335809 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000594 +75052643ns 1335813 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2f4 PA:1c00a2f4 +75052663ns 1335814 1c000e82 fff60613 addi x12, x12, -1 x12=00000593 x12:00000594 +75052683ns 1335815 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2f5 x6:1c00a2f4 +75052702ns 1335816 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000593 +75052782ns 1335820 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2f5 PA:1c00a2f5 +75052801ns 1335821 1c000e82 fff60613 addi x12, x12, -1 x12=00000592 x12:00000593 +75052821ns 1335822 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2f6 x6:1c00a2f5 +75052841ns 1335823 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000592 +75052920ns 1335827 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2f6 PA:1c00a2f6 +75052940ns 1335828 1c000e82 fff60613 addi x12, x12, -1 x12=00000591 x12:00000592 +75052960ns 1335829 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2f7 x6:1c00a2f6 +75052980ns 1335830 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000591 +75053059ns 1335834 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2f7 PA:1c00a2f7 +75053078ns 1335835 1c000e82 fff60613 addi x12, x12, -1 x12=00000590 x12:00000591 +75053098ns 1335836 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2f8 x6:1c00a2f7 +75053118ns 1335837 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000590 +75053197ns 1335841 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2f8 PA:1c00a2f8 +75053217ns 1335842 1c000e82 fff60613 addi x12, x12, -1 x12=0000058f x12:00000590 +75053237ns 1335843 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2f9 x6:1c00a2f8 +75053257ns 1335844 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000058f +75053336ns 1335848 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2f9 PA:1c00a2f9 +75053356ns 1335849 1c000e82 fff60613 addi x12, x12, -1 x12=0000058e x12:0000058f +75053375ns 1335850 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2fa x6:1c00a2f9 +75053395ns 1335851 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000058e +75053474ns 1335855 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2fa PA:1c00a2fa +75053494ns 1335856 1c000e82 fff60613 addi x12, x12, -1 x12=0000058d x12:0000058e +75053514ns 1335857 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2fb x6:1c00a2fa +75053534ns 1335858 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000058d +75053613ns 1335862 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2fb PA:1c00a2fb +75053633ns 1335863 1c000e82 fff60613 addi x12, x12, -1 x12=0000058c x12:0000058d +75053652ns 1335864 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2fc x6:1c00a2fb +75053672ns 1335865 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000058c +75053751ns 1335869 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2fc PA:1c00a2fc +75053771ns 1335870 1c000e82 fff60613 addi x12, x12, -1 x12=0000058b x12:0000058c +75053791ns 1335871 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2fd x6:1c00a2fc +75053811ns 1335872 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000058b +75053890ns 1335876 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2fd PA:1c00a2fd +75053910ns 1335877 1c000e82 fff60613 addi x12, x12, -1 x12=0000058a x12:0000058b +75053930ns 1335878 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2fe x6:1c00a2fd +75053949ns 1335879 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000058a +75054028ns 1335883 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2fe PA:1c00a2fe +75054048ns 1335884 1c000e82 fff60613 addi x12, x12, -1 x12=00000589 x12:0000058a +75054068ns 1335885 1c000e84 00130313 addi x6, x6, 1 x6=1c00a2ff x6:1c00a2fe +75054088ns 1335886 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000589 +75054167ns 1335890 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a2ff PA:1c00a2ff +75054187ns 1335891 1c000e82 fff60613 addi x12, x12, -1 x12=00000588 x12:00000589 +75054207ns 1335892 1c000e84 00130313 addi x6, x6, 1 x6=1c00a300 x6:1c00a2ff +75054226ns 1335893 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000588 +75054306ns 1335897 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a300 PA:1c00a300 +75054325ns 1335898 1c000e82 fff60613 addi x12, x12, -1 x12=00000587 x12:00000588 +75054345ns 1335899 1c000e84 00130313 addi x6, x6, 1 x6=1c00a301 x6:1c00a300 +75054365ns 1335900 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000587 +75054444ns 1335904 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a301 PA:1c00a301 +75054464ns 1335905 1c000e82 fff60613 addi x12, x12, -1 x12=00000586 x12:00000587 +75054484ns 1335906 1c000e84 00130313 addi x6, x6, 1 x6=1c00a302 x6:1c00a301 +75054503ns 1335907 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000586 +75054583ns 1335911 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a302 PA:1c00a302 +75054602ns 1335912 1c000e82 fff60613 addi x12, x12, -1 x12=00000585 x12:00000586 +75054622ns 1335913 1c000e84 00130313 addi x6, x6, 1 x6=1c00a303 x6:1c00a302 +75054642ns 1335914 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000585 +75054721ns 1335918 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a303 PA:1c00a303 +75054741ns 1335919 1c000e82 fff60613 addi x12, x12, -1 x12=00000584 x12:00000585 +75054761ns 1335920 1c000e84 00130313 addi x6, x6, 1 x6=1c00a304 x6:1c00a303 +75054781ns 1335921 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000584 +75054860ns 1335925 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a304 PA:1c00a304 +75054880ns 1335926 1c000e82 fff60613 addi x12, x12, -1 x12=00000583 x12:00000584 +75054899ns 1335927 1c000e84 00130313 addi x6, x6, 1 x6=1c00a305 x6:1c00a304 +75054919ns 1335928 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000583 +75054998ns 1335932 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a305 PA:1c00a305 +75055018ns 1335933 1c000e82 fff60613 addi x12, x12, -1 x12=00000582 x12:00000583 +75055038ns 1335934 1c000e84 00130313 addi x6, x6, 1 x6=1c00a306 x6:1c00a305 +75055058ns 1335935 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000582 +75055137ns 1335939 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a306 PA:1c00a306 +75055157ns 1335940 1c000e82 fff60613 addi x12, x12, -1 x12=00000581 x12:00000582 +75055176ns 1335941 1c000e84 00130313 addi x6, x6, 1 x6=1c00a307 x6:1c00a306 +75055196ns 1335942 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000581 +75055275ns 1335946 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a307 PA:1c00a307 +75055295ns 1335947 1c000e82 fff60613 addi x12, x12, -1 x12=00000580 x12:00000581 +75055315ns 1335948 1c000e84 00130313 addi x6, x6, 1 x6=1c00a308 x6:1c00a307 +75055335ns 1335949 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000580 +75055414ns 1335953 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a308 PA:1c00a308 +75055434ns 1335954 1c000e82 fff60613 addi x12, x12, -1 x12=0000057f x12:00000580 +75055454ns 1335955 1c000e84 00130313 addi x6, x6, 1 x6=1c00a309 x6:1c00a308 +75055473ns 1335956 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000057f +75055552ns 1335960 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a309 PA:1c00a309 +75055572ns 1335961 1c000e82 fff60613 addi x12, x12, -1 x12=0000057e x12:0000057f +75055592ns 1335962 1c000e84 00130313 addi x6, x6, 1 x6=1c00a30a x6:1c00a309 +75055612ns 1335963 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000057e +75055691ns 1335967 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a30a PA:1c00a30a +75055711ns 1335968 1c000e82 fff60613 addi x12, x12, -1 x12=0000057d x12:0000057e +75055731ns 1335969 1c000e84 00130313 addi x6, x6, 1 x6=1c00a30b x6:1c00a30a +75055750ns 1335970 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000057d +75055830ns 1335974 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a30b PA:1c00a30b +75055849ns 1335975 1c000e82 fff60613 addi x12, x12, -1 x12=0000057c x12:0000057d +75055869ns 1335976 1c000e84 00130313 addi x6, x6, 1 x6=1c00a30c x6:1c00a30b +75055889ns 1335977 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000057c +75055968ns 1335981 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a30c PA:1c00a30c +75055988ns 1335982 1c000e82 fff60613 addi x12, x12, -1 x12=0000057b x12:0000057c +75056008ns 1335983 1c000e84 00130313 addi x6, x6, 1 x6=1c00a30d x6:1c00a30c +75056027ns 1335984 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000057b +75056107ns 1335988 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a30d PA:1c00a30d +75056126ns 1335989 1c000e82 fff60613 addi x12, x12, -1 x12=0000057a x12:0000057b +75056146ns 1335990 1c000e84 00130313 addi x6, x6, 1 x6=1c00a30e x6:1c00a30d +75056166ns 1335991 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000057a +75056245ns 1335995 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a30e PA:1c00a30e +75056265ns 1335996 1c000e82 fff60613 addi x12, x12, -1 x12=00000579 x12:0000057a +75056285ns 1335997 1c000e84 00130313 addi x6, x6, 1 x6=1c00a30f x6:1c00a30e +75056305ns 1335998 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000579 +75056384ns 1336002 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a30f PA:1c00a30f +75056404ns 1336003 1c000e82 fff60613 addi x12, x12, -1 x12=00000578 x12:00000579 +75056423ns 1336004 1c000e84 00130313 addi x6, x6, 1 x6=1c00a310 x6:1c00a30f +75056443ns 1336005 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000578 +75056522ns 1336009 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a310 PA:1c00a310 +75056542ns 1336010 1c000e82 fff60613 addi x12, x12, -1 x12=00000577 x12:00000578 +75056562ns 1336011 1c000e84 00130313 addi x6, x6, 1 x6=1c00a311 x6:1c00a310 +75056582ns 1336012 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000577 +75056661ns 1336016 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a311 PA:1c00a311 +75056681ns 1336017 1c000e82 fff60613 addi x12, x12, -1 x12=00000576 x12:00000577 +75056700ns 1336018 1c000e84 00130313 addi x6, x6, 1 x6=1c00a312 x6:1c00a311 +75056720ns 1336019 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000576 +75056799ns 1336023 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a312 PA:1c00a312 +75056819ns 1336024 1c000e82 fff60613 addi x12, x12, -1 x12=00000575 x12:00000576 +75056839ns 1336025 1c000e84 00130313 addi x6, x6, 1 x6=1c00a313 x6:1c00a312 +75056859ns 1336026 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000575 +75056938ns 1336030 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a313 PA:1c00a313 +75056958ns 1336031 1c000e82 fff60613 addi x12, x12, -1 x12=00000574 x12:00000575 +75056977ns 1336032 1c000e84 00130313 addi x6, x6, 1 x6=1c00a314 x6:1c00a313 +75056997ns 1336033 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000574 +75057076ns 1336037 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a314 PA:1c00a314 +75057096ns 1336038 1c000e82 fff60613 addi x12, x12, -1 x12=00000573 x12:00000574 +75057116ns 1336039 1c000e84 00130313 addi x6, x6, 1 x6=1c00a315 x6:1c00a314 +75057136ns 1336040 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000573 +75057215ns 1336044 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a315 PA:1c00a315 +75057235ns 1336045 1c000e82 fff60613 addi x12, x12, -1 x12=00000572 x12:00000573 +75057255ns 1336046 1c000e84 00130313 addi x6, x6, 1 x6=1c00a316 x6:1c00a315 +75057274ns 1336047 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000572 +75057354ns 1336051 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a316 PA:1c00a316 +75057373ns 1336052 1c000e82 fff60613 addi x12, x12, -1 x12=00000571 x12:00000572 +75057393ns 1336053 1c000e84 00130313 addi x6, x6, 1 x6=1c00a317 x6:1c00a316 +75057413ns 1336054 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000571 +75057492ns 1336058 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a317 PA:1c00a317 +75057512ns 1336059 1c000e82 fff60613 addi x12, x12, -1 x12=00000570 x12:00000571 +75057532ns 1336060 1c000e84 00130313 addi x6, x6, 1 x6=1c00a318 x6:1c00a317 +75057551ns 1336061 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000570 +75057631ns 1336065 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a318 PA:1c00a318 +75057650ns 1336066 1c000e82 fff60613 addi x12, x12, -1 x12=0000056f x12:00000570 +75057670ns 1336067 1c000e84 00130313 addi x6, x6, 1 x6=1c00a319 x6:1c00a318 +75057690ns 1336068 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000056f +75057769ns 1336072 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a319 PA:1c00a319 +75057789ns 1336073 1c000e82 fff60613 addi x12, x12, -1 x12=0000056e x12:0000056f +75057809ns 1336074 1c000e84 00130313 addi x6, x6, 1 x6=1c00a31a x6:1c00a319 +75057829ns 1336075 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000056e +75057908ns 1336079 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a31a PA:1c00a31a +75057928ns 1336080 1c000e82 fff60613 addi x12, x12, -1 x12=0000056d x12:0000056e +75057947ns 1336081 1c000e84 00130313 addi x6, x6, 1 x6=1c00a31b x6:1c00a31a +75057967ns 1336082 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000056d +75058046ns 1336086 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a31b PA:1c00a31b +75058066ns 1336087 1c000e82 fff60613 addi x12, x12, -1 x12=0000056c x12:0000056d +75058086ns 1336088 1c000e84 00130313 addi x6, x6, 1 x6=1c00a31c x6:1c00a31b +75058106ns 1336089 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000056c +75058185ns 1336093 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a31c PA:1c00a31c +75058205ns 1336094 1c000e82 fff60613 addi x12, x12, -1 x12=0000056b x12:0000056c +75058224ns 1336095 1c000e84 00130313 addi x6, x6, 1 x6=1c00a31d x6:1c00a31c +75058244ns 1336096 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000056b +75058323ns 1336100 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a31d PA:1c00a31d +75058343ns 1336101 1c000e82 fff60613 addi x12, x12, -1 x12=0000056a x12:0000056b +75058363ns 1336102 1c000e84 00130313 addi x6, x6, 1 x6=1c00a31e x6:1c00a31d +75058383ns 1336103 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000056a +75058462ns 1336107 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a31e PA:1c00a31e +75058482ns 1336108 1c000e82 fff60613 addi x12, x12, -1 x12=00000569 x12:0000056a +75058501ns 1336109 1c000e84 00130313 addi x6, x6, 1 x6=1c00a31f x6:1c00a31e +75058521ns 1336110 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000569 +75058600ns 1336114 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a31f PA:1c00a31f +75058620ns 1336115 1c000e82 fff60613 addi x12, x12, -1 x12=00000568 x12:00000569 +75058640ns 1336116 1c000e84 00130313 addi x6, x6, 1 x6=1c00a320 x6:1c00a31f +75058660ns 1336117 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000568 +75058739ns 1336121 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a320 PA:1c00a320 +75058759ns 1336122 1c000e82 fff60613 addi x12, x12, -1 x12=00000567 x12:00000568 +75058779ns 1336123 1c000e84 00130313 addi x6, x6, 1 x6=1c00a321 x6:1c00a320 +75058798ns 1336124 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000567 +75058878ns 1336128 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a321 PA:1c00a321 +75058897ns 1336129 1c000e82 fff60613 addi x12, x12, -1 x12=00000566 x12:00000567 +75058917ns 1336130 1c000e84 00130313 addi x6, x6, 1 x6=1c00a322 x6:1c00a321 +75058937ns 1336131 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000566 +75059016ns 1336135 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a322 PA:1c00a322 +75059036ns 1336136 1c000e82 fff60613 addi x12, x12, -1 x12=00000565 x12:00000566 +75059056ns 1336137 1c000e84 00130313 addi x6, x6, 1 x6=1c00a323 x6:1c00a322 +75059075ns 1336138 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000565 +75059155ns 1336142 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a323 PA:1c00a323 +75059174ns 1336143 1c000e82 fff60613 addi x12, x12, -1 x12=00000564 x12:00000565 +75059194ns 1336144 1c000e84 00130313 addi x6, x6, 1 x6=1c00a324 x6:1c00a323 +75059214ns 1336145 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000564 +75059293ns 1336149 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a324 PA:1c00a324 +75059313ns 1336150 1c000e82 fff60613 addi x12, x12, -1 x12=00000563 x12:00000564 +75059333ns 1336151 1c000e84 00130313 addi x6, x6, 1 x6=1c00a325 x6:1c00a324 +75059353ns 1336152 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000563 +75059432ns 1336156 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a325 PA:1c00a325 +75059451ns 1336157 1c000e82 fff60613 addi x12, x12, -1 x12=00000562 x12:00000563 +75059471ns 1336158 1c000e84 00130313 addi x6, x6, 1 x6=1c00a326 x6:1c00a325 +75059491ns 1336159 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000562 +75059570ns 1336163 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a326 PA:1c00a326 +75059590ns 1336164 1c000e82 fff60613 addi x12, x12, -1 x12=00000561 x12:00000562 +75059610ns 1336165 1c000e84 00130313 addi x6, x6, 1 x6=1c00a327 x6:1c00a326 +75059630ns 1336166 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000561 +75059709ns 1336170 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a327 PA:1c00a327 +75059729ns 1336171 1c000e82 fff60613 addi x12, x12, -1 x12=00000560 x12:00000561 +75059748ns 1336172 1c000e84 00130313 addi x6, x6, 1 x6=1c00a328 x6:1c00a327 +75059768ns 1336173 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000560 +75059847ns 1336177 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a328 PA:1c00a328 +75059867ns 1336178 1c000e82 fff60613 addi x12, x12, -1 x12=0000055f x12:00000560 +75059887ns 1336179 1c000e84 00130313 addi x6, x6, 1 x6=1c00a329 x6:1c00a328 +75059907ns 1336180 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000055f +75059986ns 1336184 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a329 PA:1c00a329 +75060006ns 1336185 1c000e82 fff60613 addi x12, x12, -1 x12=0000055e x12:0000055f +75060025ns 1336186 1c000e84 00130313 addi x6, x6, 1 x6=1c00a32a x6:1c00a329 +75060045ns 1336187 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000055e +75060124ns 1336191 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a32a PA:1c00a32a +75060144ns 1336192 1c000e82 fff60613 addi x12, x12, -1 x12=0000055d x12:0000055e +75060164ns 1336193 1c000e84 00130313 addi x6, x6, 1 x6=1c00a32b x6:1c00a32a +75060184ns 1336194 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000055d +75060263ns 1336198 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a32b PA:1c00a32b +75060283ns 1336199 1c000e82 fff60613 addi x12, x12, -1 x12=0000055c x12:0000055d +75060303ns 1336200 1c000e84 00130313 addi x6, x6, 1 x6=1c00a32c x6:1c00a32b +75060322ns 1336201 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000055c +75060402ns 1336205 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a32c PA:1c00a32c +75060421ns 1336206 1c000e82 fff60613 addi x12, x12, -1 x12=0000055b x12:0000055c +75060441ns 1336207 1c000e84 00130313 addi x6, x6, 1 x6=1c00a32d x6:1c00a32c +75060461ns 1336208 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000055b +75060540ns 1336212 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a32d PA:1c00a32d +75060560ns 1336213 1c000e82 fff60613 addi x12, x12, -1 x12=0000055a x12:0000055b +75060580ns 1336214 1c000e84 00130313 addi x6, x6, 1 x6=1c00a32e x6:1c00a32d +75060599ns 1336215 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000055a +75060679ns 1336219 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a32e PA:1c00a32e +75060698ns 1336220 1c000e82 fff60613 addi x12, x12, -1 x12=00000559 x12:0000055a +75060718ns 1336221 1c000e84 00130313 addi x6, x6, 1 x6=1c00a32f x6:1c00a32e +75060738ns 1336222 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000559 +75060817ns 1336226 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a32f PA:1c00a32f +75060837ns 1336227 1c000e82 fff60613 addi x12, x12, -1 x12=00000558 x12:00000559 +75060857ns 1336228 1c000e84 00130313 addi x6, x6, 1 x6=1c00a330 x6:1c00a32f +75060877ns 1336229 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000558 +75060956ns 1336233 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a330 PA:1c00a330 +75060975ns 1336234 1c000e82 fff60613 addi x12, x12, -1 x12=00000557 x12:00000558 +75060995ns 1336235 1c000e84 00130313 addi x6, x6, 1 x6=1c00a331 x6:1c00a330 +75061015ns 1336236 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000557 +75061094ns 1336240 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a331 PA:1c00a331 +75061114ns 1336241 1c000e82 fff60613 addi x12, x12, -1 x12=00000556 x12:00000557 +75061134ns 1336242 1c000e84 00130313 addi x6, x6, 1 x6=1c00a332 x6:1c00a331 +75061154ns 1336243 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000556 +75061233ns 1336247 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a332 PA:1c00a332 +75061253ns 1336248 1c000e82 fff60613 addi x12, x12, -1 x12=00000555 x12:00000556 +75061272ns 1336249 1c000e84 00130313 addi x6, x6, 1 x6=1c00a333 x6:1c00a332 +75061292ns 1336250 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000555 +75061371ns 1336254 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a333 PA:1c00a333 +75061391ns 1336255 1c000e82 fff60613 addi x12, x12, -1 x12=00000554 x12:00000555 +75061411ns 1336256 1c000e84 00130313 addi x6, x6, 1 x6=1c00a334 x6:1c00a333 +75061431ns 1336257 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000554 +75061510ns 1336261 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a334 PA:1c00a334 +75061530ns 1336262 1c000e82 fff60613 addi x12, x12, -1 x12=00000553 x12:00000554 +75061549ns 1336263 1c000e84 00130313 addi x6, x6, 1 x6=1c00a335 x6:1c00a334 +75061569ns 1336264 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000553 +75061648ns 1336268 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a335 PA:1c00a335 +75061668ns 1336269 1c000e82 fff60613 addi x12, x12, -1 x12=00000552 x12:00000553 +75061688ns 1336270 1c000e84 00130313 addi x6, x6, 1 x6=1c00a336 x6:1c00a335 +75061708ns 1336271 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000552 +75061787ns 1336275 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a336 PA:1c00a336 +75061807ns 1336276 1c000e82 fff60613 addi x12, x12, -1 x12=00000551 x12:00000552 +75061827ns 1336277 1c000e84 00130313 addi x6, x6, 1 x6=1c00a337 x6:1c00a336 +75061846ns 1336278 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000551 +75061925ns 1336282 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a337 PA:1c00a337 +75061945ns 1336283 1c000e82 fff60613 addi x12, x12, -1 x12=00000550 x12:00000551 +75061965ns 1336284 1c000e84 00130313 addi x6, x6, 1 x6=1c00a338 x6:1c00a337 +75061985ns 1336285 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000550 +75062064ns 1336289 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a338 PA:1c00a338 +75062084ns 1336290 1c000e82 fff60613 addi x12, x12, -1 x12=0000054f x12:00000550 +75062104ns 1336291 1c000e84 00130313 addi x6, x6, 1 x6=1c00a339 x6:1c00a338 +75062123ns 1336292 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000054f +75062203ns 1336296 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a339 PA:1c00a339 +75062222ns 1336297 1c000e82 fff60613 addi x12, x12, -1 x12=0000054e x12:0000054f +75062242ns 1336298 1c000e84 00130313 addi x6, x6, 1 x6=1c00a33a x6:1c00a339 +75062262ns 1336299 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000054e +75062341ns 1336303 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a33a PA:1c00a33a +75062361ns 1336304 1c000e82 fff60613 addi x12, x12, -1 x12=0000054d x12:0000054e +75062381ns 1336305 1c000e84 00130313 addi x6, x6, 1 x6=1c00a33b x6:1c00a33a +75062401ns 1336306 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000054d +75062480ns 1336310 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a33b PA:1c00a33b +75062499ns 1336311 1c000e82 fff60613 addi x12, x12, -1 x12=0000054c x12:0000054d +75062519ns 1336312 1c000e84 00130313 addi x6, x6, 1 x6=1c00a33c x6:1c00a33b +75062539ns 1336313 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000054c +75062618ns 1336317 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a33c PA:1c00a33c +75062638ns 1336318 1c000e82 fff60613 addi x12, x12, -1 x12=0000054b x12:0000054c +75062658ns 1336319 1c000e84 00130313 addi x6, x6, 1 x6=1c00a33d x6:1c00a33c +75062678ns 1336320 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000054b +75062757ns 1336324 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a33d PA:1c00a33d +75062777ns 1336325 1c000e82 fff60613 addi x12, x12, -1 x12=0000054a x12:0000054b +75062796ns 1336326 1c000e84 00130313 addi x6, x6, 1 x6=1c00a33e x6:1c00a33d +75062816ns 1336327 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000054a +75062895ns 1336331 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a33e PA:1c00a33e +75062915ns 1336332 1c000e82 fff60613 addi x12, x12, -1 x12=00000549 x12:0000054a +75062935ns 1336333 1c000e84 00130313 addi x6, x6, 1 x6=1c00a33f x6:1c00a33e +75062955ns 1336334 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000549 +75063034ns 1336338 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a33f PA:1c00a33f +75063054ns 1336339 1c000e82 fff60613 addi x12, x12, -1 x12=00000548 x12:00000549 +75063073ns 1336340 1c000e84 00130313 addi x6, x6, 1 x6=1c00a340 x6:1c00a33f +75063093ns 1336341 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000548 +75063172ns 1336345 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a340 PA:1c00a340 +75063192ns 1336346 1c000e82 fff60613 addi x12, x12, -1 x12=00000547 x12:00000548 +75063212ns 1336347 1c000e84 00130313 addi x6, x6, 1 x6=1c00a341 x6:1c00a340 +75063232ns 1336348 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000547 +75063311ns 1336352 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a341 PA:1c00a341 +75063331ns 1336353 1c000e82 fff60613 addi x12, x12, -1 x12=00000546 x12:00000547 +75063351ns 1336354 1c000e84 00130313 addi x6, x6, 1 x6=1c00a342 x6:1c00a341 +75063370ns 1336355 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000546 +75063449ns 1336359 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a342 PA:1c00a342 +75063469ns 1336360 1c000e82 fff60613 addi x12, x12, -1 x12=00000545 x12:00000546 +75063489ns 1336361 1c000e84 00130313 addi x6, x6, 1 x6=1c00a343 x6:1c00a342 +75063509ns 1336362 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000545 +75063588ns 1336366 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a343 PA:1c00a343 +75063608ns 1336367 1c000e82 fff60613 addi x12, x12, -1 x12=00000544 x12:00000545 +75063628ns 1336368 1c000e84 00130313 addi x6, x6, 1 x6=1c00a344 x6:1c00a343 +75063647ns 1336369 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000544 +75063727ns 1336373 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a344 PA:1c00a344 +75063746ns 1336374 1c000e82 fff60613 addi x12, x12, -1 x12=00000543 x12:00000544 +75063766ns 1336375 1c000e84 00130313 addi x6, x6, 1 x6=1c00a345 x6:1c00a344 +75063786ns 1336376 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000543 +75063865ns 1336380 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a345 PA:1c00a345 +75063885ns 1336381 1c000e82 fff60613 addi x12, x12, -1 x12=00000542 x12:00000543 +75063905ns 1336382 1c000e84 00130313 addi x6, x6, 1 x6=1c00a346 x6:1c00a345 +75063924ns 1336383 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000542 +75064004ns 1336387 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a346 PA:1c00a346 +75064023ns 1336388 1c000e82 fff60613 addi x12, x12, -1 x12=00000541 x12:00000542 +75064043ns 1336389 1c000e84 00130313 addi x6, x6, 1 x6=1c00a347 x6:1c00a346 +75064063ns 1336390 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000541 +75064142ns 1336394 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a347 PA:1c00a347 +75064162ns 1336395 1c000e82 fff60613 addi x12, x12, -1 x12=00000540 x12:00000541 +75064182ns 1336396 1c000e84 00130313 addi x6, x6, 1 x6=1c00a348 x6:1c00a347 +75064202ns 1336397 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000540 +75064281ns 1336401 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a348 PA:1c00a348 +75064301ns 1336402 1c000e82 fff60613 addi x12, x12, -1 x12=0000053f x12:00000540 +75064320ns 1336403 1c000e84 00130313 addi x6, x6, 1 x6=1c00a349 x6:1c00a348 +75064340ns 1336404 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000053f +75064419ns 1336408 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a349 PA:1c00a349 +75064439ns 1336409 1c000e82 fff60613 addi x12, x12, -1 x12=0000053e x12:0000053f +75064459ns 1336410 1c000e84 00130313 addi x6, x6, 1 x6=1c00a34a x6:1c00a349 +75064479ns 1336411 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000053e +75064558ns 1336415 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a34a PA:1c00a34a +75064578ns 1336416 1c000e82 fff60613 addi x12, x12, -1 x12=0000053d x12:0000053e +75064597ns 1336417 1c000e84 00130313 addi x6, x6, 1 x6=1c00a34b x6:1c00a34a +75064617ns 1336418 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000053d +75064696ns 1336422 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a34b PA:1c00a34b +75064716ns 1336423 1c000e82 fff60613 addi x12, x12, -1 x12=0000053c x12:0000053d +75064736ns 1336424 1c000e84 00130313 addi x6, x6, 1 x6=1c00a34c x6:1c00a34b +75064756ns 1336425 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000053c +75064835ns 1336429 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a34c PA:1c00a34c +75064855ns 1336430 1c000e82 fff60613 addi x12, x12, -1 x12=0000053b x12:0000053c +75064875ns 1336431 1c000e84 00130313 addi x6, x6, 1 x6=1c00a34d x6:1c00a34c +75064894ns 1336432 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000053b +75064973ns 1336436 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a34d PA:1c00a34d +75064993ns 1336437 1c000e82 fff60613 addi x12, x12, -1 x12=0000053a x12:0000053b +75065013ns 1336438 1c000e84 00130313 addi x6, x6, 1 x6=1c00a34e x6:1c00a34d +75065033ns 1336439 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000053a +75065112ns 1336443 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a34e PA:1c00a34e +75065132ns 1336444 1c000e82 fff60613 addi x12, x12, -1 x12=00000539 x12:0000053a +75065152ns 1336445 1c000e84 00130313 addi x6, x6, 1 x6=1c00a34f x6:1c00a34e +75065171ns 1336446 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000539 +75065251ns 1336450 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a34f PA:1c00a34f +75065270ns 1336451 1c000e82 fff60613 addi x12, x12, -1 x12=00000538 x12:00000539 +75065290ns 1336452 1c000e84 00130313 addi x6, x6, 1 x6=1c00a350 x6:1c00a34f +75065310ns 1336453 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000538 +75065389ns 1336457 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a350 PA:1c00a350 +75065409ns 1336458 1c000e82 fff60613 addi x12, x12, -1 x12=00000537 x12:00000538 +75065429ns 1336459 1c000e84 00130313 addi x6, x6, 1 x6=1c00a351 x6:1c00a350 +75065448ns 1336460 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000537 +75065528ns 1336464 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a351 PA:1c00a351 +75065547ns 1336465 1c000e82 fff60613 addi x12, x12, -1 x12=00000536 x12:00000537 +75065567ns 1336466 1c000e84 00130313 addi x6, x6, 1 x6=1c00a352 x6:1c00a351 +75065587ns 1336467 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000536 +75065666ns 1336471 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a352 PA:1c00a352 +75065686ns 1336472 1c000e82 fff60613 addi x12, x12, -1 x12=00000535 x12:00000536 +75065706ns 1336473 1c000e84 00130313 addi x6, x6, 1 x6=1c00a353 x6:1c00a352 +75065726ns 1336474 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000535 +75065805ns 1336478 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a353 PA:1c00a353 +75065825ns 1336479 1c000e82 fff60613 addi x12, x12, -1 x12=00000534 x12:00000535 +75065844ns 1336480 1c000e84 00130313 addi x6, x6, 1 x6=1c00a354 x6:1c00a353 +75065864ns 1336481 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000534 +75065943ns 1336485 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a354 PA:1c00a354 +75065963ns 1336486 1c000e82 fff60613 addi x12, x12, -1 x12=00000533 x12:00000534 +75065983ns 1336487 1c000e84 00130313 addi x6, x6, 1 x6=1c00a355 x6:1c00a354 +75066003ns 1336488 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000533 +75066082ns 1336492 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a355 PA:1c00a355 +75066102ns 1336493 1c000e82 fff60613 addi x12, x12, -1 x12=00000532 x12:00000533 +75066121ns 1336494 1c000e84 00130313 addi x6, x6, 1 x6=1c00a356 x6:1c00a355 +75066141ns 1336495 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000532 +75066220ns 1336499 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a356 PA:1c00a356 +75066240ns 1336500 1c000e82 fff60613 addi x12, x12, -1 x12=00000531 x12:00000532 +75066260ns 1336501 1c000e84 00130313 addi x6, x6, 1 x6=1c00a357 x6:1c00a356 +75066280ns 1336502 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000531 +75066359ns 1336506 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a357 PA:1c00a357 +75066379ns 1336507 1c000e82 fff60613 addi x12, x12, -1 x12=00000530 x12:00000531 +75066398ns 1336508 1c000e84 00130313 addi x6, x6, 1 x6=1c00a358 x6:1c00a357 +75066418ns 1336509 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000530 +75066497ns 1336513 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a358 PA:1c00a358 +75066517ns 1336514 1c000e82 fff60613 addi x12, x12, -1 x12=0000052f x12:00000530 +75066537ns 1336515 1c000e84 00130313 addi x6, x6, 1 x6=1c00a359 x6:1c00a358 +75066557ns 1336516 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000052f +75066636ns 1336520 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a359 PA:1c00a359 +75066656ns 1336521 1c000e82 fff60613 addi x12, x12, -1 x12=0000052e x12:0000052f +75066676ns 1336522 1c000e84 00130313 addi x6, x6, 1 x6=1c00a35a x6:1c00a359 +75066695ns 1336523 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000052e +75066775ns 1336527 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a35a PA:1c00a35a +75066794ns 1336528 1c000e82 fff60613 addi x12, x12, -1 x12=0000052d x12:0000052e +75066814ns 1336529 1c000e84 00130313 addi x6, x6, 1 x6=1c00a35b x6:1c00a35a +75066834ns 1336530 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000052d +75066913ns 1336534 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a35b PA:1c00a35b +75066933ns 1336535 1c000e82 fff60613 addi x12, x12, -1 x12=0000052c x12:0000052d +75066953ns 1336536 1c000e84 00130313 addi x6, x6, 1 x6=1c00a35c x6:1c00a35b +75066972ns 1336537 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000052c +75067052ns 1336541 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a35c PA:1c00a35c +75067071ns 1336542 1c000e82 fff60613 addi x12, x12, -1 x12=0000052b x12:0000052c +75067091ns 1336543 1c000e84 00130313 addi x6, x6, 1 x6=1c00a35d x6:1c00a35c +75067111ns 1336544 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000052b +75067190ns 1336548 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a35d PA:1c00a35d +75067210ns 1336549 1c000e82 fff60613 addi x12, x12, -1 x12=0000052a x12:0000052b +75067230ns 1336550 1c000e84 00130313 addi x6, x6, 1 x6=1c00a35e x6:1c00a35d +75067250ns 1336551 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000052a +75067329ns 1336555 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a35e PA:1c00a35e +75067349ns 1336556 1c000e82 fff60613 addi x12, x12, -1 x12=00000529 x12:0000052a +75067368ns 1336557 1c000e84 00130313 addi x6, x6, 1 x6=1c00a35f x6:1c00a35e +75067388ns 1336558 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000529 +75067467ns 1336562 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a35f PA:1c00a35f +75067487ns 1336563 1c000e82 fff60613 addi x12, x12, -1 x12=00000528 x12:00000529 +75067507ns 1336564 1c000e84 00130313 addi x6, x6, 1 x6=1c00a360 x6:1c00a35f +75067527ns 1336565 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000528 +75067606ns 1336569 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a360 PA:1c00a360 +75067626ns 1336570 1c000e82 fff60613 addi x12, x12, -1 x12=00000527 x12:00000528 +75067645ns 1336571 1c000e84 00130313 addi x6, x6, 1 x6=1c00a361 x6:1c00a360 +75067665ns 1336572 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000527 +75067744ns 1336576 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a361 PA:1c00a361 +75067764ns 1336577 1c000e82 fff60613 addi x12, x12, -1 x12=00000526 x12:00000527 +75067784ns 1336578 1c000e84 00130313 addi x6, x6, 1 x6=1c00a362 x6:1c00a361 +75067804ns 1336579 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000526 +75067883ns 1336583 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a362 PA:1c00a362 +75067903ns 1336584 1c000e82 fff60613 addi x12, x12, -1 x12=00000525 x12:00000526 +75067922ns 1336585 1c000e84 00130313 addi x6, x6, 1 x6=1c00a363 x6:1c00a362 +75067942ns 1336586 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000525 +75068021ns 1336590 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a363 PA:1c00a363 +75068041ns 1336591 1c000e82 fff60613 addi x12, x12, -1 x12=00000524 x12:00000525 +75068061ns 1336592 1c000e84 00130313 addi x6, x6, 1 x6=1c00a364 x6:1c00a363 +75068081ns 1336593 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000524 +75068160ns 1336597 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a364 PA:1c00a364 +75068180ns 1336598 1c000e82 fff60613 addi x12, x12, -1 x12=00000523 x12:00000524 +75068200ns 1336599 1c000e84 00130313 addi x6, x6, 1 x6=1c00a365 x6:1c00a364 +75068219ns 1336600 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000523 +75068299ns 1336604 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a365 PA:1c00a365 +75068318ns 1336605 1c000e82 fff60613 addi x12, x12, -1 x12=00000522 x12:00000523 +75068338ns 1336606 1c000e84 00130313 addi x6, x6, 1 x6=1c00a366 x6:1c00a365 +75068358ns 1336607 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000522 +75068437ns 1336611 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a366 PA:1c00a366 +75068457ns 1336612 1c000e82 fff60613 addi x12, x12, -1 x12=00000521 x12:00000522 +75068477ns 1336613 1c000e84 00130313 addi x6, x6, 1 x6=1c00a367 x6:1c00a366 +75068496ns 1336614 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000521 +75068576ns 1336618 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a367 PA:1c00a367 +75068595ns 1336619 1c000e82 fff60613 addi x12, x12, -1 x12=00000520 x12:00000521 +75068615ns 1336620 1c000e84 00130313 addi x6, x6, 1 x6=1c00a368 x6:1c00a367 +75068635ns 1336621 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000520 +75068714ns 1336625 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a368 PA:1c00a368 +75068734ns 1336626 1c000e82 fff60613 addi x12, x12, -1 x12=0000051f x12:00000520 +75068754ns 1336627 1c000e84 00130313 addi x6, x6, 1 x6=1c00a369 x6:1c00a368 +75068774ns 1336628 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000051f +75068853ns 1336632 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a369 PA:1c00a369 +75068872ns 1336633 1c000e82 fff60613 addi x12, x12, -1 x12=0000051e x12:0000051f +75068892ns 1336634 1c000e84 00130313 addi x6, x6, 1 x6=1c00a36a x6:1c00a369 +75068912ns 1336635 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000051e +75068991ns 1336639 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a36a PA:1c00a36a +75069011ns 1336640 1c000e82 fff60613 addi x12, x12, -1 x12=0000051d x12:0000051e +75069031ns 1336641 1c000e84 00130313 addi x6, x6, 1 x6=1c00a36b x6:1c00a36a +75069051ns 1336642 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000051d +75069130ns 1336646 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a36b PA:1c00a36b +75069150ns 1336647 1c000e82 fff60613 addi x12, x12, -1 x12=0000051c x12:0000051d +75069169ns 1336648 1c000e84 00130313 addi x6, x6, 1 x6=1c00a36c x6:1c00a36b +75069189ns 1336649 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000051c +75069268ns 1336653 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a36c PA:1c00a36c +75069288ns 1336654 1c000e82 fff60613 addi x12, x12, -1 x12=0000051b x12:0000051c +75069308ns 1336655 1c000e84 00130313 addi x6, x6, 1 x6=1c00a36d x6:1c00a36c +75069328ns 1336656 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000051b +75069407ns 1336660 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a36d PA:1c00a36d +75069427ns 1336661 1c000e82 fff60613 addi x12, x12, -1 x12=0000051a x12:0000051b +75069446ns 1336662 1c000e84 00130313 addi x6, x6, 1 x6=1c00a36e x6:1c00a36d +75069466ns 1336663 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000051a +75069545ns 1336667 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a36e PA:1c00a36e +75069565ns 1336668 1c000e82 fff60613 addi x12, x12, -1 x12=00000519 x12:0000051a +75069585ns 1336669 1c000e84 00130313 addi x6, x6, 1 x6=1c00a36f x6:1c00a36e +75069605ns 1336670 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000519 +75069684ns 1336674 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a36f PA:1c00a36f +75069704ns 1336675 1c000e82 fff60613 addi x12, x12, -1 x12=00000518 x12:00000519 +75069724ns 1336676 1c000e84 00130313 addi x6, x6, 1 x6=1c00a370 x6:1c00a36f +75069743ns 1336677 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000518 +75069823ns 1336681 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a370 PA:1c00a370 +75069842ns 1336682 1c000e82 fff60613 addi x12, x12, -1 x12=00000517 x12:00000518 +75069862ns 1336683 1c000e84 00130313 addi x6, x6, 1 x6=1c00a371 x6:1c00a370 +75069882ns 1336684 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000517 +75069961ns 1336688 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a371 PA:1c00a371 +75069981ns 1336689 1c000e82 fff60613 addi x12, x12, -1 x12=00000516 x12:00000517 +75070001ns 1336690 1c000e84 00130313 addi x6, x6, 1 x6=1c00a372 x6:1c00a371 +75070020ns 1336691 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000516 +75070100ns 1336695 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a372 PA:1c00a372 +75070119ns 1336696 1c000e82 fff60613 addi x12, x12, -1 x12=00000515 x12:00000516 +75070139ns 1336697 1c000e84 00130313 addi x6, x6, 1 x6=1c00a373 x6:1c00a372 +75070159ns 1336698 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000515 +75070238ns 1336702 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a373 PA:1c00a373 +75070258ns 1336703 1c000e82 fff60613 addi x12, x12, -1 x12=00000514 x12:00000515 +75070278ns 1336704 1c000e84 00130313 addi x6, x6, 1 x6=1c00a374 x6:1c00a373 +75070298ns 1336705 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000514 +75070377ns 1336709 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a374 PA:1c00a374 +75070396ns 1336710 1c000e82 fff60613 addi x12, x12, -1 x12=00000513 x12:00000514 +75070416ns 1336711 1c000e84 00130313 addi x6, x6, 1 x6=1c00a375 x6:1c00a374 +75070436ns 1336712 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000513 +75070515ns 1336716 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a375 PA:1c00a375 +75070535ns 1336717 1c000e82 fff60613 addi x12, x12, -1 x12=00000512 x12:00000513 +75070555ns 1336718 1c000e84 00130313 addi x6, x6, 1 x6=1c00a376 x6:1c00a375 +75070575ns 1336719 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000512 +75070654ns 1336723 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a376 PA:1c00a376 +75070674ns 1336724 1c000e82 fff60613 addi x12, x12, -1 x12=00000511 x12:00000512 +75070693ns 1336725 1c000e84 00130313 addi x6, x6, 1 x6=1c00a377 x6:1c00a376 +75070713ns 1336726 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000511 +75070792ns 1336730 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a377 PA:1c00a377 +75070812ns 1336731 1c000e82 fff60613 addi x12, x12, -1 x12=00000510 x12:00000511 +75070832ns 1336732 1c000e84 00130313 addi x6, x6, 1 x6=1c00a378 x6:1c00a377 +75070852ns 1336733 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000510 +75070931ns 1336737 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a378 PA:1c00a378 +75070951ns 1336738 1c000e82 fff60613 addi x12, x12, -1 x12=0000050f x12:00000510 +75070970ns 1336739 1c000e84 00130313 addi x6, x6, 1 x6=1c00a379 x6:1c00a378 +75070990ns 1336740 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000050f +75071069ns 1336744 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a379 PA:1c00a379 +75071089ns 1336745 1c000e82 fff60613 addi x12, x12, -1 x12=0000050e x12:0000050f +75071109ns 1336746 1c000e84 00130313 addi x6, x6, 1 x6=1c00a37a x6:1c00a379 +75071129ns 1336747 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000050e +75071208ns 1336751 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a37a PA:1c00a37a +75071228ns 1336752 1c000e82 fff60613 addi x12, x12, -1 x12=0000050d x12:0000050e +75071248ns 1336753 1c000e84 00130313 addi x6, x6, 1 x6=1c00a37b x6:1c00a37a +75071267ns 1336754 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000050d +75071346ns 1336758 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a37b PA:1c00a37b +75071366ns 1336759 1c000e82 fff60613 addi x12, x12, -1 x12=0000050c x12:0000050d +75071386ns 1336760 1c000e84 00130313 addi x6, x6, 1 x6=1c00a37c x6:1c00a37b +75071406ns 1336761 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000050c +75071485ns 1336765 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a37c PA:1c00a37c +75071505ns 1336766 1c000e82 fff60613 addi x12, x12, -1 x12=0000050b x12:0000050c +75071525ns 1336767 1c000e84 00130313 addi x6, x6, 1 x6=1c00a37d x6:1c00a37c +75071544ns 1336768 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000050b +75071624ns 1336772 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a37d PA:1c00a37d +75071643ns 1336773 1c000e82 fff60613 addi x12, x12, -1 x12=0000050a x12:0000050b +75071663ns 1336774 1c000e84 00130313 addi x6, x6, 1 x6=1c00a37e x6:1c00a37d +75071683ns 1336775 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000050a +75071762ns 1336779 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a37e PA:1c00a37e +75071782ns 1336780 1c000e82 fff60613 addi x12, x12, -1 x12=00000509 x12:0000050a +75071802ns 1336781 1c000e84 00130313 addi x6, x6, 1 x6=1c00a37f x6:1c00a37e +75071821ns 1336782 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000509 +75071901ns 1336786 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a37f PA:1c00a37f +75071920ns 1336787 1c000e82 fff60613 addi x12, x12, -1 x12=00000508 x12:00000509 +75071940ns 1336788 1c000e84 00130313 addi x6, x6, 1 x6=1c00a380 x6:1c00a37f +75071960ns 1336789 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000508 +75072039ns 1336793 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a380 PA:1c00a380 +75072059ns 1336794 1c000e82 fff60613 addi x12, x12, -1 x12=00000507 x12:00000508 +75072079ns 1336795 1c000e84 00130313 addi x6, x6, 1 x6=1c00a381 x6:1c00a380 +75072099ns 1336796 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000507 +75072178ns 1336800 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a381 PA:1c00a381 +75072198ns 1336801 1c000e82 fff60613 addi x12, x12, -1 x12=00000506 x12:00000507 +75072217ns 1336802 1c000e84 00130313 addi x6, x6, 1 x6=1c00a382 x6:1c00a381 +75072237ns 1336803 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000506 +75072316ns 1336807 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a382 PA:1c00a382 +75072336ns 1336808 1c000e82 fff60613 addi x12, x12, -1 x12=00000505 x12:00000506 +75072356ns 1336809 1c000e84 00130313 addi x6, x6, 1 x6=1c00a383 x6:1c00a382 +75072376ns 1336810 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000505 +75072455ns 1336814 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a383 PA:1c00a383 +75072475ns 1336815 1c000e82 fff60613 addi x12, x12, -1 x12=00000504 x12:00000505 +75072494ns 1336816 1c000e84 00130313 addi x6, x6, 1 x6=1c00a384 x6:1c00a383 +75072514ns 1336817 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000504 +75072593ns 1336821 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a384 PA:1c00a384 +75072613ns 1336822 1c000e82 fff60613 addi x12, x12, -1 x12=00000503 x12:00000504 +75072633ns 1336823 1c000e84 00130313 addi x6, x6, 1 x6=1c00a385 x6:1c00a384 +75072653ns 1336824 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000503 +75072732ns 1336828 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a385 PA:1c00a385 +75072752ns 1336829 1c000e82 fff60613 addi x12, x12, -1 x12=00000502 x12:00000503 +75072772ns 1336830 1c000e84 00130313 addi x6, x6, 1 x6=1c00a386 x6:1c00a385 +75072791ns 1336831 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000502 +75072870ns 1336835 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a386 PA:1c00a386 +75072890ns 1336836 1c000e82 fff60613 addi x12, x12, -1 x12=00000501 x12:00000502 +75072910ns 1336837 1c000e84 00130313 addi x6, x6, 1 x6=1c00a387 x6:1c00a386 +75072930ns 1336838 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000501 +75073009ns 1336842 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a387 PA:1c00a387 +75073029ns 1336843 1c000e82 fff60613 addi x12, x12, -1 x12=00000500 x12:00000501 +75073049ns 1336844 1c000e84 00130313 addi x6, x6, 1 x6=1c00a388 x6:1c00a387 +75073068ns 1336845 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000500 +75073148ns 1336849 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a388 PA:1c00a388 +75073167ns 1336850 1c000e82 fff60613 addi x12, x12, -1 x12=000004ff x12:00000500 +75073187ns 1336851 1c000e84 00130313 addi x6, x6, 1 x6=1c00a389 x6:1c00a388 +75073207ns 1336852 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004ff +75073286ns 1336856 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a389 PA:1c00a389 +75073306ns 1336857 1c000e82 fff60613 addi x12, x12, -1 x12=000004fe x12:000004ff +75073326ns 1336858 1c000e84 00130313 addi x6, x6, 1 x6=1c00a38a x6:1c00a389 +75073345ns 1336859 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004fe +75073425ns 1336863 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a38a PA:1c00a38a +75073444ns 1336864 1c000e82 fff60613 addi x12, x12, -1 x12=000004fd x12:000004fe +75073464ns 1336865 1c000e84 00130313 addi x6, x6, 1 x6=1c00a38b x6:1c00a38a +75073484ns 1336866 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004fd +75073563ns 1336870 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a38b PA:1c00a38b +75073583ns 1336871 1c000e82 fff60613 addi x12, x12, -1 x12=000004fc x12:000004fd +75073603ns 1336872 1c000e84 00130313 addi x6, x6, 1 x6=1c00a38c x6:1c00a38b +75073623ns 1336873 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004fc +75073702ns 1336877 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a38c PA:1c00a38c +75073722ns 1336878 1c000e82 fff60613 addi x12, x12, -1 x12=000004fb x12:000004fc +75073741ns 1336879 1c000e84 00130313 addi x6, x6, 1 x6=1c00a38d x6:1c00a38c +75073761ns 1336880 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004fb +75073840ns 1336884 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a38d PA:1c00a38d +75073860ns 1336885 1c000e82 fff60613 addi x12, x12, -1 x12=000004fa x12:000004fb +75073880ns 1336886 1c000e84 00130313 addi x6, x6, 1 x6=1c00a38e x6:1c00a38d +75073900ns 1336887 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004fa +75073979ns 1336891 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a38e PA:1c00a38e +75073999ns 1336892 1c000e82 fff60613 addi x12, x12, -1 x12=000004f9 x12:000004fa +75074018ns 1336893 1c000e84 00130313 addi x6, x6, 1 x6=1c00a38f x6:1c00a38e +75074038ns 1336894 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004f9 +75074117ns 1336898 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a38f PA:1c00a38f +75074137ns 1336899 1c000e82 fff60613 addi x12, x12, -1 x12=000004f8 x12:000004f9 +75074157ns 1336900 1c000e84 00130313 addi x6, x6, 1 x6=1c00a390 x6:1c00a38f +75074177ns 1336901 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004f8 +75074256ns 1336905 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a390 PA:1c00a390 +75074276ns 1336906 1c000e82 fff60613 addi x12, x12, -1 x12=000004f7 x12:000004f8 +75074295ns 1336907 1c000e84 00130313 addi x6, x6, 1 x6=1c00a391 x6:1c00a390 +75074315ns 1336908 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004f7 +75074394ns 1336912 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a391 PA:1c00a391 +75074414ns 1336913 1c000e82 fff60613 addi x12, x12, -1 x12=000004f6 x12:000004f7 +75074434ns 1336914 1c000e84 00130313 addi x6, x6, 1 x6=1c00a392 x6:1c00a391 +75074454ns 1336915 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004f6 +75074533ns 1336919 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a392 PA:1c00a392 +75074553ns 1336920 1c000e82 fff60613 addi x12, x12, -1 x12=000004f5 x12:000004f6 +75074573ns 1336921 1c000e84 00130313 addi x6, x6, 1 x6=1c00a393 x6:1c00a392 +75074592ns 1336922 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004f5 +75074672ns 1336926 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a393 PA:1c00a393 +75074691ns 1336927 1c000e82 fff60613 addi x12, x12, -1 x12=000004f4 x12:000004f5 +75074711ns 1336928 1c000e84 00130313 addi x6, x6, 1 x6=1c00a394 x6:1c00a393 +75074731ns 1336929 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004f4 +75074810ns 1336933 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a394 PA:1c00a394 +75074830ns 1336934 1c000e82 fff60613 addi x12, x12, -1 x12=000004f3 x12:000004f4 +75074850ns 1336935 1c000e84 00130313 addi x6, x6, 1 x6=1c00a395 x6:1c00a394 +75074869ns 1336936 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004f3 +75074949ns 1336940 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a395 PA:1c00a395 +75074968ns 1336941 1c000e82 fff60613 addi x12, x12, -1 x12=000004f2 x12:000004f3 +75074988ns 1336942 1c000e84 00130313 addi x6, x6, 1 x6=1c00a396 x6:1c00a395 +75075008ns 1336943 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004f2 +75075087ns 1336947 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a396 PA:1c00a396 +75075107ns 1336948 1c000e82 fff60613 addi x12, x12, -1 x12=000004f1 x12:000004f2 +75075127ns 1336949 1c000e84 00130313 addi x6, x6, 1 x6=1c00a397 x6:1c00a396 +75075147ns 1336950 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004f1 +75075226ns 1336954 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a397 PA:1c00a397 +75075246ns 1336955 1c000e82 fff60613 addi x12, x12, -1 x12=000004f0 x12:000004f1 +75075265ns 1336956 1c000e84 00130313 addi x6, x6, 1 x6=1c00a398 x6:1c00a397 +75075285ns 1336957 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004f0 +75075364ns 1336961 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a398 PA:1c00a398 +75075384ns 1336962 1c000e82 fff60613 addi x12, x12, -1 x12=000004ef x12:000004f0 +75075404ns 1336963 1c000e84 00130313 addi x6, x6, 1 x6=1c00a399 x6:1c00a398 +75075424ns 1336964 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004ef +75075503ns 1336968 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a399 PA:1c00a399 +75075523ns 1336969 1c000e82 fff60613 addi x12, x12, -1 x12=000004ee x12:000004ef +75075542ns 1336970 1c000e84 00130313 addi x6, x6, 1 x6=1c00a39a x6:1c00a399 +75075562ns 1336971 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004ee +75075641ns 1336975 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a39a PA:1c00a39a +75075661ns 1336976 1c000e82 fff60613 addi x12, x12, -1 x12=000004ed x12:000004ee +75075681ns 1336977 1c000e84 00130313 addi x6, x6, 1 x6=1c00a39b x6:1c00a39a +75075701ns 1336978 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004ed +75075780ns 1336982 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a39b PA:1c00a39b +75075800ns 1336983 1c000e82 fff60613 addi x12, x12, -1 x12=000004ec x12:000004ed +75075819ns 1336984 1c000e84 00130313 addi x6, x6, 1 x6=1c00a39c x6:1c00a39b +75075839ns 1336985 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004ec +75075918ns 1336989 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a39c PA:1c00a39c +75075938ns 1336990 1c000e82 fff60613 addi x12, x12, -1 x12=000004eb x12:000004ec +75075958ns 1336991 1c000e84 00130313 addi x6, x6, 1 x6=1c00a39d x6:1c00a39c +75075978ns 1336992 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004eb +75076057ns 1336996 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a39d PA:1c00a39d +75076077ns 1336997 1c000e82 fff60613 addi x12, x12, -1 x12=000004ea x12:000004eb +75076097ns 1336998 1c000e84 00130313 addi x6, x6, 1 x6=1c00a39e x6:1c00a39d +75076116ns 1336999 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004ea +75076196ns 1337003 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a39e PA:1c00a39e +75076215ns 1337004 1c000e82 fff60613 addi x12, x12, -1 x12=000004e9 x12:000004ea +75076235ns 1337005 1c000e84 00130313 addi x6, x6, 1 x6=1c00a39f x6:1c00a39e +75076255ns 1337006 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004e9 +75076334ns 1337010 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a39f PA:1c00a39f +75076354ns 1337011 1c000e82 fff60613 addi x12, x12, -1 x12=000004e8 x12:000004e9 +75076374ns 1337012 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3a0 x6:1c00a39f +75076393ns 1337013 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004e8 +75076473ns 1337017 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3a0 PA:1c00a3a0 +75076492ns 1337018 1c000e82 fff60613 addi x12, x12, -1 x12=000004e7 x12:000004e8 +75076512ns 1337019 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3a1 x6:1c00a3a0 +75076532ns 1337020 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004e7 +75076611ns 1337024 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3a1 PA:1c00a3a1 +75076631ns 1337025 1c000e82 fff60613 addi x12, x12, -1 x12=000004e6 x12:000004e7 +75076651ns 1337026 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3a2 x6:1c00a3a1 +75076671ns 1337027 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004e6 +75076750ns 1337031 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3a2 PA:1c00a3a2 +75076769ns 1337032 1c000e82 fff60613 addi x12, x12, -1 x12=000004e5 x12:000004e6 +75076789ns 1337033 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3a3 x6:1c00a3a2 +75076809ns 1337034 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004e5 +75076888ns 1337038 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3a3 PA:1c00a3a3 +75076908ns 1337039 1c000e82 fff60613 addi x12, x12, -1 x12=000004e4 x12:000004e5 +75076928ns 1337040 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3a4 x6:1c00a3a3 +75076948ns 1337041 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004e4 +75077027ns 1337045 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3a4 PA:1c00a3a4 +75077047ns 1337046 1c000e82 fff60613 addi x12, x12, -1 x12=000004e3 x12:000004e4 +75077066ns 1337047 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3a5 x6:1c00a3a4 +75077086ns 1337048 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004e3 +75077165ns 1337052 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3a5 PA:1c00a3a5 +75077185ns 1337053 1c000e82 fff60613 addi x12, x12, -1 x12=000004e2 x12:000004e3 +75077205ns 1337054 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3a6 x6:1c00a3a5 +75077225ns 1337055 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004e2 +75077304ns 1337059 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3a6 PA:1c00a3a6 +75077324ns 1337060 1c000e82 fff60613 addi x12, x12, -1 x12=000004e1 x12:000004e2 +75077343ns 1337061 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3a7 x6:1c00a3a6 +75077363ns 1337062 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004e1 +75077442ns 1337066 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3a7 PA:1c00a3a7 +75077462ns 1337067 1c000e82 fff60613 addi x12, x12, -1 x12=000004e0 x12:000004e1 +75077482ns 1337068 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3a8 x6:1c00a3a7 +75077502ns 1337069 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004e0 +75077581ns 1337073 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3a8 PA:1c00a3a8 +75077601ns 1337074 1c000e82 fff60613 addi x12, x12, -1 x12=000004df x12:000004e0 +75077621ns 1337075 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3a9 x6:1c00a3a8 +75077640ns 1337076 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004df +75077720ns 1337080 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3a9 PA:1c00a3a9 +75077739ns 1337081 1c000e82 fff60613 addi x12, x12, -1 x12=000004de x12:000004df +75077759ns 1337082 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3aa x6:1c00a3a9 +75077779ns 1337083 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004de +75077858ns 1337087 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3aa PA:1c00a3aa +75077878ns 1337088 1c000e82 fff60613 addi x12, x12, -1 x12=000004dd x12:000004de +75077898ns 1337089 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3ab x6:1c00a3aa +75077917ns 1337090 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004dd +75077997ns 1337094 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3ab PA:1c00a3ab +75078016ns 1337095 1c000e82 fff60613 addi x12, x12, -1 x12=000004dc x12:000004dd +75078036ns 1337096 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3ac x6:1c00a3ab +75078056ns 1337097 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004dc +75078135ns 1337101 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3ac PA:1c00a3ac +75078155ns 1337102 1c000e82 fff60613 addi x12, x12, -1 x12=000004db x12:000004dc +75078175ns 1337103 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3ad x6:1c00a3ac +75078195ns 1337104 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004db +75078274ns 1337108 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3ad PA:1c00a3ad +75078293ns 1337109 1c000e82 fff60613 addi x12, x12, -1 x12=000004da x12:000004db +75078313ns 1337110 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3ae x6:1c00a3ad +75078333ns 1337111 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004da +75078412ns 1337115 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3ae PA:1c00a3ae +75078432ns 1337116 1c000e82 fff60613 addi x12, x12, -1 x12=000004d9 x12:000004da +75078452ns 1337117 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3af x6:1c00a3ae +75078472ns 1337118 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004d9 +75078551ns 1337122 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3af PA:1c00a3af +75078571ns 1337123 1c000e82 fff60613 addi x12, x12, -1 x12=000004d8 x12:000004d9 +75078590ns 1337124 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3b0 x6:1c00a3af +75078610ns 1337125 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004d8 +75078689ns 1337129 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3b0 PA:1c00a3b0 +75078709ns 1337130 1c000e82 fff60613 addi x12, x12, -1 x12=000004d7 x12:000004d8 +75078729ns 1337131 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3b1 x6:1c00a3b0 +75078749ns 1337132 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004d7 +75078828ns 1337136 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3b1 PA:1c00a3b1 +75078848ns 1337137 1c000e82 fff60613 addi x12, x12, -1 x12=000004d6 x12:000004d7 +75078867ns 1337138 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3b2 x6:1c00a3b1 +75078887ns 1337139 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004d6 +75078966ns 1337143 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3b2 PA:1c00a3b2 +75078986ns 1337144 1c000e82 fff60613 addi x12, x12, -1 x12=000004d5 x12:000004d6 +75079006ns 1337145 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3b3 x6:1c00a3b2 +75079026ns 1337146 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004d5 +75079105ns 1337150 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3b3 PA:1c00a3b3 +75079125ns 1337151 1c000e82 fff60613 addi x12, x12, -1 x12=000004d4 x12:000004d5 +75079145ns 1337152 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3b4 x6:1c00a3b3 +75079164ns 1337153 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004d4 +75079243ns 1337157 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3b4 PA:1c00a3b4 +75079263ns 1337158 1c000e82 fff60613 addi x12, x12, -1 x12=000004d3 x12:000004d4 +75079283ns 1337159 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3b5 x6:1c00a3b4 +75079303ns 1337160 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004d3 +75079382ns 1337164 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3b5 PA:1c00a3b5 +75079402ns 1337165 1c000e82 fff60613 addi x12, x12, -1 x12=000004d2 x12:000004d3 +75079422ns 1337166 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3b6 x6:1c00a3b5 +75079441ns 1337167 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004d2 +75079521ns 1337171 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3b6 PA:1c00a3b6 +75079540ns 1337172 1c000e82 fff60613 addi x12, x12, -1 x12=000004d1 x12:000004d2 +75079560ns 1337173 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3b7 x6:1c00a3b6 +75079580ns 1337174 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004d1 +75079659ns 1337178 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3b7 PA:1c00a3b7 +75079679ns 1337179 1c000e82 fff60613 addi x12, x12, -1 x12=000004d0 x12:000004d1 +75079699ns 1337180 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3b8 x6:1c00a3b7 +75079719ns 1337181 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004d0 +75079798ns 1337185 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3b8 PA:1c00a3b8 +75079817ns 1337186 1c000e82 fff60613 addi x12, x12, -1 x12=000004cf x12:000004d0 +75079837ns 1337187 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3b9 x6:1c00a3b8 +75079857ns 1337188 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004cf +75079936ns 1337192 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3b9 PA:1c00a3b9 +75079956ns 1337193 1c000e82 fff60613 addi x12, x12, -1 x12=000004ce x12:000004cf +75079976ns 1337194 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3ba x6:1c00a3b9 +75079996ns 1337195 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004ce +75080075ns 1337199 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3ba PA:1c00a3ba +75080095ns 1337200 1c000e82 fff60613 addi x12, x12, -1 x12=000004cd x12:000004ce +75080114ns 1337201 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3bb x6:1c00a3ba +75080134ns 1337202 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004cd +75080213ns 1337206 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3bb PA:1c00a3bb +75080233ns 1337207 1c000e82 fff60613 addi x12, x12, -1 x12=000004cc x12:000004cd +75080253ns 1337208 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3bc x6:1c00a3bb +75080273ns 1337209 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004cc +75080352ns 1337213 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3bc PA:1c00a3bc +75080372ns 1337214 1c000e82 fff60613 addi x12, x12, -1 x12=000004cb x12:000004cc +75080391ns 1337215 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3bd x6:1c00a3bc +75080411ns 1337216 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004cb +75080490ns 1337220 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3bd PA:1c00a3bd +75080510ns 1337221 1c000e82 fff60613 addi x12, x12, -1 x12=000004ca x12:000004cb +75080530ns 1337222 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3be x6:1c00a3bd +75080550ns 1337223 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004ca +75080629ns 1337227 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3be PA:1c00a3be +75080649ns 1337228 1c000e82 fff60613 addi x12, x12, -1 x12=000004c9 x12:000004ca +75080669ns 1337229 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3bf x6:1c00a3be +75080688ns 1337230 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004c9 +75080767ns 1337234 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3bf PA:1c00a3bf +75080787ns 1337235 1c000e82 fff60613 addi x12, x12, -1 x12=000004c8 x12:000004c9 +75080807ns 1337236 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3c0 x6:1c00a3bf +75080827ns 1337237 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004c8 +75080906ns 1337241 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3c0 PA:1c00a3c0 +75080926ns 1337242 1c000e82 fff60613 addi x12, x12, -1 x12=000004c7 x12:000004c8 +75080946ns 1337243 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3c1 x6:1c00a3c0 +75080965ns 1337244 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004c7 +75081045ns 1337248 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3c1 PA:1c00a3c1 +75081064ns 1337249 1c000e82 fff60613 addi x12, x12, -1 x12=000004c6 x12:000004c7 +75081084ns 1337250 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3c2 x6:1c00a3c1 +75081104ns 1337251 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004c6 +75081183ns 1337255 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3c2 PA:1c00a3c2 +75081203ns 1337256 1c000e82 fff60613 addi x12, x12, -1 x12=000004c5 x12:000004c6 +75081223ns 1337257 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3c3 x6:1c00a3c2 +75081242ns 1337258 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004c5 +75081322ns 1337262 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3c3 PA:1c00a3c3 +75081341ns 1337263 1c000e82 fff60613 addi x12, x12, -1 x12=000004c4 x12:000004c5 +75081361ns 1337264 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3c4 x6:1c00a3c3 +75081381ns 1337265 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004c4 +75081460ns 1337269 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3c4 PA:1c00a3c4 +75081480ns 1337270 1c000e82 fff60613 addi x12, x12, -1 x12=000004c3 x12:000004c4 +75081500ns 1337271 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3c5 x6:1c00a3c4 +75081520ns 1337272 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004c3 +75081599ns 1337276 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3c5 PA:1c00a3c5 +75081619ns 1337277 1c000e82 fff60613 addi x12, x12, -1 x12=000004c2 x12:000004c3 +75081638ns 1337278 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3c6 x6:1c00a3c5 +75081658ns 1337279 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004c2 +75081737ns 1337283 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3c6 PA:1c00a3c6 +75081757ns 1337284 1c000e82 fff60613 addi x12, x12, -1 x12=000004c1 x12:000004c2 +75081777ns 1337285 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3c7 x6:1c00a3c6 +75081797ns 1337286 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004c1 +75081876ns 1337290 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3c7 PA:1c00a3c7 +75081896ns 1337291 1c000e82 fff60613 addi x12, x12, -1 x12=000004c0 x12:000004c1 +75081915ns 1337292 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3c8 x6:1c00a3c7 +75081935ns 1337293 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004c0 +75082014ns 1337297 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3c8 PA:1c00a3c8 +75082034ns 1337298 1c000e82 fff60613 addi x12, x12, -1 x12=000004bf x12:000004c0 +75082054ns 1337299 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3c9 x6:1c00a3c8 +75082074ns 1337300 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004bf +75082153ns 1337304 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3c9 PA:1c00a3c9 +75082173ns 1337305 1c000e82 fff60613 addi x12, x12, -1 x12=000004be x12:000004bf +75082193ns 1337306 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3ca x6:1c00a3c9 +75082212ns 1337307 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004be +75082291ns 1337311 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3ca PA:1c00a3ca +75082311ns 1337312 1c000e82 fff60613 addi x12, x12, -1 x12=000004bd x12:000004be +75082331ns 1337313 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3cb x6:1c00a3ca +75082351ns 1337314 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004bd +75082430ns 1337318 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3cb PA:1c00a3cb +75082450ns 1337319 1c000e82 fff60613 addi x12, x12, -1 x12=000004bc x12:000004bd +75082470ns 1337320 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3cc x6:1c00a3cb +75082489ns 1337321 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004bc +75082569ns 1337325 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3cc PA:1c00a3cc +75082588ns 1337326 1c000e82 fff60613 addi x12, x12, -1 x12=000004bb x12:000004bc +75082608ns 1337327 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3cd x6:1c00a3cc +75082628ns 1337328 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004bb +75082707ns 1337332 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3cd PA:1c00a3cd +75082727ns 1337333 1c000e82 fff60613 addi x12, x12, -1 x12=000004ba x12:000004bb +75082747ns 1337334 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3ce x6:1c00a3cd +75082766ns 1337335 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004ba +75082846ns 1337339 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3ce PA:1c00a3ce +75082865ns 1337340 1c000e82 fff60613 addi x12, x12, -1 x12=000004b9 x12:000004ba +75082885ns 1337341 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3cf x6:1c00a3ce +75082905ns 1337342 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004b9 +75082984ns 1337346 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3cf PA:1c00a3cf +75083004ns 1337347 1c000e82 fff60613 addi x12, x12, -1 x12=000004b8 x12:000004b9 +75083024ns 1337348 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3d0 x6:1c00a3cf +75083044ns 1337349 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004b8 +75083123ns 1337353 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3d0 PA:1c00a3d0 +75083143ns 1337354 1c000e82 fff60613 addi x12, x12, -1 x12=000004b7 x12:000004b8 +75083162ns 1337355 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3d1 x6:1c00a3d0 +75083182ns 1337356 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004b7 +75083261ns 1337360 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3d1 PA:1c00a3d1 +75083281ns 1337361 1c000e82 fff60613 addi x12, x12, -1 x12=000004b6 x12:000004b7 +75083301ns 1337362 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3d2 x6:1c00a3d1 +75083321ns 1337363 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004b6 +75083400ns 1337367 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3d2 PA:1c00a3d2 +75083420ns 1337368 1c000e82 fff60613 addi x12, x12, -1 x12=000004b5 x12:000004b6 +75083439ns 1337369 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3d3 x6:1c00a3d2 +75083459ns 1337370 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004b5 +75083538ns 1337374 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3d3 PA:1c00a3d3 +75083558ns 1337375 1c000e82 fff60613 addi x12, x12, -1 x12=000004b4 x12:000004b5 +75083578ns 1337376 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3d4 x6:1c00a3d3 +75083598ns 1337377 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004b4 +75083677ns 1337381 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3d4 PA:1c00a3d4 +75083697ns 1337382 1c000e82 fff60613 addi x12, x12, -1 x12=000004b3 x12:000004b4 +75083716ns 1337383 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3d5 x6:1c00a3d4 +75083736ns 1337384 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004b3 +75083815ns 1337388 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3d5 PA:1c00a3d5 +75083835ns 1337389 1c000e82 fff60613 addi x12, x12, -1 x12=000004b2 x12:000004b3 +75083855ns 1337390 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3d6 x6:1c00a3d5 +75083875ns 1337391 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004b2 +75083954ns 1337395 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3d6 PA:1c00a3d6 +75083974ns 1337396 1c000e82 fff60613 addi x12, x12, -1 x12=000004b1 x12:000004b2 +75083994ns 1337397 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3d7 x6:1c00a3d6 +75084013ns 1337398 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004b1 +75084093ns 1337402 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3d7 PA:1c00a3d7 +75084112ns 1337403 1c000e82 fff60613 addi x12, x12, -1 x12=000004b0 x12:000004b1 +75084132ns 1337404 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3d8 x6:1c00a3d7 +75084152ns 1337405 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004b0 +75084231ns 1337409 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3d8 PA:1c00a3d8 +75084251ns 1337410 1c000e82 fff60613 addi x12, x12, -1 x12=000004af x12:000004b0 +75084271ns 1337411 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3d9 x6:1c00a3d8 +75084290ns 1337412 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004af +75084370ns 1337416 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3d9 PA:1c00a3d9 +75084389ns 1337417 1c000e82 fff60613 addi x12, x12, -1 x12=000004ae x12:000004af +75084409ns 1337418 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3da x6:1c00a3d9 +75084429ns 1337419 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004ae +75084508ns 1337423 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3da PA:1c00a3da +75084528ns 1337424 1c000e82 fff60613 addi x12, x12, -1 x12=000004ad x12:000004ae +75084548ns 1337425 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3db x6:1c00a3da +75084568ns 1337426 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004ad +75084647ns 1337430 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3db PA:1c00a3db +75084667ns 1337431 1c000e82 fff60613 addi x12, x12, -1 x12=000004ac x12:000004ad +75084686ns 1337432 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3dc x6:1c00a3db +75084706ns 1337433 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004ac +75084785ns 1337437 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3dc PA:1c00a3dc +75084805ns 1337438 1c000e82 fff60613 addi x12, x12, -1 x12=000004ab x12:000004ac +75084825ns 1337439 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3dd x6:1c00a3dc +75084845ns 1337440 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004ab +75084924ns 1337444 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3dd PA:1c00a3dd +75084944ns 1337445 1c000e82 fff60613 addi x12, x12, -1 x12=000004aa x12:000004ab +75084963ns 1337446 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3de x6:1c00a3dd +75084983ns 1337447 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004aa +75085062ns 1337451 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3de PA:1c00a3de +75085082ns 1337452 1c000e82 fff60613 addi x12, x12, -1 x12=000004a9 x12:000004aa +75085102ns 1337453 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3df x6:1c00a3de +75085122ns 1337454 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004a9 +75085201ns 1337458 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3df PA:1c00a3df +75085221ns 1337459 1c000e82 fff60613 addi x12, x12, -1 x12=000004a8 x12:000004a9 +75085240ns 1337460 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3e0 x6:1c00a3df +75085260ns 1337461 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004a8 +75085339ns 1337465 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3e0 PA:1c00a3e0 +75085359ns 1337466 1c000e82 fff60613 addi x12, x12, -1 x12=000004a7 x12:000004a8 +75085379ns 1337467 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3e1 x6:1c00a3e0 +75085399ns 1337468 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004a7 +75085478ns 1337472 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3e1 PA:1c00a3e1 +75085498ns 1337473 1c000e82 fff60613 addi x12, x12, -1 x12=000004a6 x12:000004a7 +75085518ns 1337474 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3e2 x6:1c00a3e1 +75085537ns 1337475 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004a6 +75085617ns 1337479 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3e2 PA:1c00a3e2 +75085636ns 1337480 1c000e82 fff60613 addi x12, x12, -1 x12=000004a5 x12:000004a6 +75085656ns 1337481 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3e3 x6:1c00a3e2 +75085676ns 1337482 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004a5 +75085755ns 1337486 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3e3 PA:1c00a3e3 +75085775ns 1337487 1c000e82 fff60613 addi x12, x12, -1 x12=000004a4 x12:000004a5 +75085795ns 1337488 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3e4 x6:1c00a3e3 +75085814ns 1337489 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004a4 +75085894ns 1337493 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3e4 PA:1c00a3e4 +75085913ns 1337494 1c000e82 fff60613 addi x12, x12, -1 x12=000004a3 x12:000004a4 +75085933ns 1337495 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3e5 x6:1c00a3e4 +75085953ns 1337496 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004a3 +75086032ns 1337500 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3e5 PA:1c00a3e5 +75086052ns 1337501 1c000e82 fff60613 addi x12, x12, -1 x12=000004a2 x12:000004a3 +75086072ns 1337502 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3e6 x6:1c00a3e5 +75086092ns 1337503 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004a2 +75086171ns 1337507 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3e6 PA:1c00a3e6 +75086190ns 1337508 1c000e82 fff60613 addi x12, x12, -1 x12=000004a1 x12:000004a2 +75086210ns 1337509 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3e7 x6:1c00a3e6 +75086230ns 1337510 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004a1 +75086309ns 1337514 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3e7 PA:1c00a3e7 +75086329ns 1337515 1c000e82 fff60613 addi x12, x12, -1 x12=000004a0 x12:000004a1 +75086349ns 1337516 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3e8 x6:1c00a3e7 +75086369ns 1337517 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004a0 +75086448ns 1337521 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3e8 PA:1c00a3e8 +75086468ns 1337522 1c000e82 fff60613 addi x12, x12, -1 x12=0000049f x12:000004a0 +75086487ns 1337523 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3e9 x6:1c00a3e8 +75086507ns 1337524 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000049f +75086586ns 1337528 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3e9 PA:1c00a3e9 +75086606ns 1337529 1c000e82 fff60613 addi x12, x12, -1 x12=0000049e x12:0000049f +75086626ns 1337530 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3ea x6:1c00a3e9 +75086646ns 1337531 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000049e +75086725ns 1337535 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3ea PA:1c00a3ea +75086745ns 1337536 1c000e82 fff60613 addi x12, x12, -1 x12=0000049d x12:0000049e +75086764ns 1337537 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3eb x6:1c00a3ea +75086784ns 1337538 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000049d +75086863ns 1337542 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3eb PA:1c00a3eb +75086883ns 1337543 1c000e82 fff60613 addi x12, x12, -1 x12=0000049c x12:0000049d +75086903ns 1337544 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3ec x6:1c00a3eb +75086923ns 1337545 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000049c +75087002ns 1337549 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3ec PA:1c00a3ec +75087022ns 1337550 1c000e82 fff60613 addi x12, x12, -1 x12=0000049b x12:0000049c +75087042ns 1337551 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3ed x6:1c00a3ec +75087061ns 1337552 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000049b +75087141ns 1337556 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3ed PA:1c00a3ed +75087160ns 1337557 1c000e82 fff60613 addi x12, x12, -1 x12=0000049a x12:0000049b +75087180ns 1337558 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3ee x6:1c00a3ed +75087200ns 1337559 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000049a +75087279ns 1337563 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3ee PA:1c00a3ee +75087299ns 1337564 1c000e82 fff60613 addi x12, x12, -1 x12=00000499 x12:0000049a +75087319ns 1337565 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3ef x6:1c00a3ee +75087338ns 1337566 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000499 +75087418ns 1337570 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3ef PA:1c00a3ef +75087437ns 1337571 1c000e82 fff60613 addi x12, x12, -1 x12=00000498 x12:00000499 +75087457ns 1337572 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3f0 x6:1c00a3ef +75087477ns 1337573 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000498 +75087556ns 1337577 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3f0 PA:1c00a3f0 +75087576ns 1337578 1c000e82 fff60613 addi x12, x12, -1 x12=00000497 x12:00000498 +75087596ns 1337579 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3f1 x6:1c00a3f0 +75087616ns 1337580 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000497 +75087695ns 1337584 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3f1 PA:1c00a3f1 +75087714ns 1337585 1c000e82 fff60613 addi x12, x12, -1 x12=00000496 x12:00000497 +75087734ns 1337586 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3f2 x6:1c00a3f1 +75087754ns 1337587 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000496 +75087833ns 1337591 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3f2 PA:1c00a3f2 +75087853ns 1337592 1c000e82 fff60613 addi x12, x12, -1 x12=00000495 x12:00000496 +75087873ns 1337593 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3f3 x6:1c00a3f2 +75087893ns 1337594 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000495 +75087972ns 1337598 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3f3 PA:1c00a3f3 +75087992ns 1337599 1c000e82 fff60613 addi x12, x12, -1 x12=00000494 x12:00000495 +75088011ns 1337600 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3f4 x6:1c00a3f3 +75088031ns 1337601 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000494 +75088110ns 1337605 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3f4 PA:1c00a3f4 +75088130ns 1337606 1c000e82 fff60613 addi x12, x12, -1 x12=00000493 x12:00000494 +75088150ns 1337607 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3f5 x6:1c00a3f4 +75088170ns 1337608 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000493 +75088249ns 1337612 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3f5 PA:1c00a3f5 +75088269ns 1337613 1c000e82 fff60613 addi x12, x12, -1 x12=00000492 x12:00000493 +75088288ns 1337614 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3f6 x6:1c00a3f5 +75088308ns 1337615 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000492 +75088387ns 1337619 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3f6 PA:1c00a3f6 +75088407ns 1337620 1c000e82 fff60613 addi x12, x12, -1 x12=00000491 x12:00000492 +75088427ns 1337621 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3f7 x6:1c00a3f6 +75088447ns 1337622 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000491 +75088526ns 1337626 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3f7 PA:1c00a3f7 +75088546ns 1337627 1c000e82 fff60613 addi x12, x12, -1 x12=00000490 x12:00000491 +75088566ns 1337628 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3f8 x6:1c00a3f7 +75088585ns 1337629 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000490 +75088664ns 1337633 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3f8 PA:1c00a3f8 +75088684ns 1337634 1c000e82 fff60613 addi x12, x12, -1 x12=0000048f x12:00000490 +75088704ns 1337635 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3f9 x6:1c00a3f8 +75088724ns 1337636 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000048f +75088803ns 1337640 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3f9 PA:1c00a3f9 +75088823ns 1337641 1c000e82 fff60613 addi x12, x12, -1 x12=0000048e x12:0000048f +75088843ns 1337642 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3fa x6:1c00a3f9 +75088862ns 1337643 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000048e +75088942ns 1337647 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3fa PA:1c00a3fa +75088961ns 1337648 1c000e82 fff60613 addi x12, x12, -1 x12=0000048d x12:0000048e +75088981ns 1337649 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3fb x6:1c00a3fa +75089001ns 1337650 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000048d +75089080ns 1337654 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3fb PA:1c00a3fb +75089100ns 1337655 1c000e82 fff60613 addi x12, x12, -1 x12=0000048c x12:0000048d +75089120ns 1337656 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3fc x6:1c00a3fb +75089139ns 1337657 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000048c +75089219ns 1337661 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3fc PA:1c00a3fc +75089238ns 1337662 1c000e82 fff60613 addi x12, x12, -1 x12=0000048b x12:0000048c +75089258ns 1337663 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3fd x6:1c00a3fc +75089278ns 1337664 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000048b +75089357ns 1337668 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3fd PA:1c00a3fd +75089377ns 1337669 1c000e82 fff60613 addi x12, x12, -1 x12=0000048a x12:0000048b +75089397ns 1337670 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3fe x6:1c00a3fd +75089417ns 1337671 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000048a +75089496ns 1337675 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3fe PA:1c00a3fe +75089516ns 1337676 1c000e82 fff60613 addi x12, x12, -1 x12=00000489 x12:0000048a +75089535ns 1337677 1c000e84 00130313 addi x6, x6, 1 x6=1c00a3ff x6:1c00a3fe +75089555ns 1337678 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000489 +75089634ns 1337682 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a3ff PA:1c00a3ff +75089654ns 1337683 1c000e82 fff60613 addi x12, x12, -1 x12=00000488 x12:00000489 +75089674ns 1337684 1c000e84 00130313 addi x6, x6, 1 x6=1c00a400 x6:1c00a3ff +75089694ns 1337685 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000488 +75089773ns 1337689 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a400 PA:1c00a400 +75089793ns 1337690 1c000e82 fff60613 addi x12, x12, -1 x12=00000487 x12:00000488 +75089812ns 1337691 1c000e84 00130313 addi x6, x6, 1 x6=1c00a401 x6:1c00a400 +75089832ns 1337692 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000487 +75089911ns 1337696 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a401 PA:1c00a401 +75089931ns 1337697 1c000e82 fff60613 addi x12, x12, -1 x12=00000486 x12:00000487 +75089951ns 1337698 1c000e84 00130313 addi x6, x6, 1 x6=1c00a402 x6:1c00a401 +75089971ns 1337699 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000486 +75090050ns 1337703 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a402 PA:1c00a402 +75090070ns 1337704 1c000e82 fff60613 addi x12, x12, -1 x12=00000485 x12:00000486 +75090090ns 1337705 1c000e84 00130313 addi x6, x6, 1 x6=1c00a403 x6:1c00a402 +75090109ns 1337706 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000485 +75090188ns 1337710 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a403 PA:1c00a403 +75090208ns 1337711 1c000e82 fff60613 addi x12, x12, -1 x12=00000484 x12:00000485 +75090228ns 1337712 1c000e84 00130313 addi x6, x6, 1 x6=1c00a404 x6:1c00a403 +75090248ns 1337713 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000484 +75090327ns 1337717 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a404 PA:1c00a404 +75090347ns 1337718 1c000e82 fff60613 addi x12, x12, -1 x12=00000483 x12:00000484 +75090367ns 1337719 1c000e84 00130313 addi x6, x6, 1 x6=1c00a405 x6:1c00a404 +75090386ns 1337720 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000483 +75090466ns 1337724 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a405 PA:1c00a405 +75090485ns 1337725 1c000e82 fff60613 addi x12, x12, -1 x12=00000482 x12:00000483 +75090505ns 1337726 1c000e84 00130313 addi x6, x6, 1 x6=1c00a406 x6:1c00a405 +75090525ns 1337727 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000482 +75090604ns 1337731 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a406 PA:1c00a406 +75090624ns 1337732 1c000e82 fff60613 addi x12, x12, -1 x12=00000481 x12:00000482 +75090644ns 1337733 1c000e84 00130313 addi x6, x6, 1 x6=1c00a407 x6:1c00a406 +75090663ns 1337734 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000481 +75090743ns 1337738 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a407 PA:1c00a407 +75090762ns 1337739 1c000e82 fff60613 addi x12, x12, -1 x12=00000480 x12:00000481 +75090782ns 1337740 1c000e84 00130313 addi x6, x6, 1 x6=1c00a408 x6:1c00a407 +75090802ns 1337741 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000480 +75090881ns 1337745 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a408 PA:1c00a408 +75090901ns 1337746 1c000e82 fff60613 addi x12, x12, -1 x12=0000047f x12:00000480 +75090921ns 1337747 1c000e84 00130313 addi x6, x6, 1 x6=1c00a409 x6:1c00a408 +75090941ns 1337748 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000047f +75091020ns 1337752 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a409 PA:1c00a409 +75091040ns 1337753 1c000e82 fff60613 addi x12, x12, -1 x12=0000047e x12:0000047f +75091059ns 1337754 1c000e84 00130313 addi x6, x6, 1 x6=1c00a40a x6:1c00a409 +75091079ns 1337755 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000047e +75091158ns 1337759 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a40a PA:1c00a40a +75091178ns 1337760 1c000e82 fff60613 addi x12, x12, -1 x12=0000047d x12:0000047e +75091198ns 1337761 1c000e84 00130313 addi x6, x6, 1 x6=1c00a40b x6:1c00a40a +75091218ns 1337762 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000047d +75091297ns 1337766 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a40b PA:1c00a40b +75091317ns 1337767 1c000e82 fff60613 addi x12, x12, -1 x12=0000047c x12:0000047d +75091336ns 1337768 1c000e84 00130313 addi x6, x6, 1 x6=1c00a40c x6:1c00a40b +75091356ns 1337769 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000047c +75091435ns 1337773 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a40c PA:1c00a40c +75091455ns 1337774 1c000e82 fff60613 addi x12, x12, -1 x12=0000047b x12:0000047c +75091475ns 1337775 1c000e84 00130313 addi x6, x6, 1 x6=1c00a40d x6:1c00a40c +75091495ns 1337776 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000047b +75091574ns 1337780 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a40d PA:1c00a40d +75091594ns 1337781 1c000e82 fff60613 addi x12, x12, -1 x12=0000047a x12:0000047b +75091613ns 1337782 1c000e84 00130313 addi x6, x6, 1 x6=1c00a40e x6:1c00a40d +75091633ns 1337783 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000047a +75091712ns 1337787 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a40e PA:1c00a40e +75091732ns 1337788 1c000e82 fff60613 addi x12, x12, -1 x12=00000479 x12:0000047a +75091752ns 1337789 1c000e84 00130313 addi x6, x6, 1 x6=1c00a40f x6:1c00a40e +75091772ns 1337790 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000479 +75091851ns 1337794 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a40f PA:1c00a40f +75091871ns 1337795 1c000e82 fff60613 addi x12, x12, -1 x12=00000478 x12:00000479 +75091891ns 1337796 1c000e84 00130313 addi x6, x6, 1 x6=1c00a410 x6:1c00a40f +75091910ns 1337797 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000478 +75091990ns 1337801 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a410 PA:1c00a410 +75092009ns 1337802 1c000e82 fff60613 addi x12, x12, -1 x12=00000477 x12:00000478 +75092029ns 1337803 1c000e84 00130313 addi x6, x6, 1 x6=1c00a411 x6:1c00a410 +75092049ns 1337804 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000477 +75092128ns 1337808 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a411 PA:1c00a411 +75092148ns 1337809 1c000e82 fff60613 addi x12, x12, -1 x12=00000476 x12:00000477 +75092168ns 1337810 1c000e84 00130313 addi x6, x6, 1 x6=1c00a412 x6:1c00a411 +75092187ns 1337811 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000476 +75092267ns 1337815 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a412 PA:1c00a412 +75092286ns 1337816 1c000e82 fff60613 addi x12, x12, -1 x12=00000475 x12:00000476 +75092306ns 1337817 1c000e84 00130313 addi x6, x6, 1 x6=1c00a413 x6:1c00a412 +75092326ns 1337818 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000475 +75092405ns 1337822 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a413 PA:1c00a413 +75092425ns 1337823 1c000e82 fff60613 addi x12, x12, -1 x12=00000474 x12:00000475 +75092445ns 1337824 1c000e84 00130313 addi x6, x6, 1 x6=1c00a414 x6:1c00a413 +75092465ns 1337825 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000474 +75092544ns 1337829 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a414 PA:1c00a414 +75092564ns 1337830 1c000e82 fff60613 addi x12, x12, -1 x12=00000473 x12:00000474 +75092583ns 1337831 1c000e84 00130313 addi x6, x6, 1 x6=1c00a415 x6:1c00a414 +75092603ns 1337832 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000473 +75092682ns 1337836 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a415 PA:1c00a415 +75092702ns 1337837 1c000e82 fff60613 addi x12, x12, -1 x12=00000472 x12:00000473 +75092722ns 1337838 1c000e84 00130313 addi x6, x6, 1 x6=1c00a416 x6:1c00a415 +75092742ns 1337839 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000472 +75092821ns 1337843 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a416 PA:1c00a416 +75092841ns 1337844 1c000e82 fff60613 addi x12, x12, -1 x12=00000471 x12:00000472 +75092860ns 1337845 1c000e84 00130313 addi x6, x6, 1 x6=1c00a417 x6:1c00a416 +75092880ns 1337846 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000471 +75092959ns 1337850 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a417 PA:1c00a417 +75092979ns 1337851 1c000e82 fff60613 addi x12, x12, -1 x12=00000470 x12:00000471 +75092999ns 1337852 1c000e84 00130313 addi x6, x6, 1 x6=1c00a418 x6:1c00a417 +75093019ns 1337853 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000470 +75093098ns 1337857 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a418 PA:1c00a418 +75093118ns 1337858 1c000e82 fff60613 addi x12, x12, -1 x12=0000046f x12:00000470 +75093137ns 1337859 1c000e84 00130313 addi x6, x6, 1 x6=1c00a419 x6:1c00a418 +75093157ns 1337860 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000046f +75093236ns 1337864 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a419 PA:1c00a419 +75093256ns 1337865 1c000e82 fff60613 addi x12, x12, -1 x12=0000046e x12:0000046f +75093276ns 1337866 1c000e84 00130313 addi x6, x6, 1 x6=1c00a41a x6:1c00a419 +75093296ns 1337867 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000046e +75093375ns 1337871 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a41a PA:1c00a41a +75093395ns 1337872 1c000e82 fff60613 addi x12, x12, -1 x12=0000046d x12:0000046e +75093415ns 1337873 1c000e84 00130313 addi x6, x6, 1 x6=1c00a41b x6:1c00a41a +75093434ns 1337874 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000046d +75093514ns 1337878 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a41b PA:1c00a41b +75093533ns 1337879 1c000e82 fff60613 addi x12, x12, -1 x12=0000046c x12:0000046d +75093553ns 1337880 1c000e84 00130313 addi x6, x6, 1 x6=1c00a41c x6:1c00a41b +75093573ns 1337881 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000046c +75093652ns 1337885 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a41c PA:1c00a41c +75093672ns 1337886 1c000e82 fff60613 addi x12, x12, -1 x12=0000046b x12:0000046c +75093692ns 1337887 1c000e84 00130313 addi x6, x6, 1 x6=1c00a41d x6:1c00a41c +75093711ns 1337888 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000046b +75093791ns 1337892 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a41d PA:1c00a41d +75093810ns 1337893 1c000e82 fff60613 addi x12, x12, -1 x12=0000046a x12:0000046b +75093830ns 1337894 1c000e84 00130313 addi x6, x6, 1 x6=1c00a41e x6:1c00a41d +75093850ns 1337895 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000046a +75093929ns 1337899 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a41e PA:1c00a41e +75093949ns 1337900 1c000e82 fff60613 addi x12, x12, -1 x12=00000469 x12:0000046a +75093969ns 1337901 1c000e84 00130313 addi x6, x6, 1 x6=1c00a41f x6:1c00a41e +75093989ns 1337902 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000469 +75094068ns 1337906 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a41f PA:1c00a41f +75094087ns 1337907 1c000e82 fff60613 addi x12, x12, -1 x12=00000468 x12:00000469 +75094107ns 1337908 1c000e84 00130313 addi x6, x6, 1 x6=1c00a420 x6:1c00a41f +75094127ns 1337909 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000468 +75094206ns 1337913 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a420 PA:1c00a420 +75094226ns 1337914 1c000e82 fff60613 addi x12, x12, -1 x12=00000467 x12:00000468 +75094246ns 1337915 1c000e84 00130313 addi x6, x6, 1 x6=1c00a421 x6:1c00a420 +75094266ns 1337916 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000467 +75094345ns 1337920 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a421 PA:1c00a421 +75094365ns 1337921 1c000e82 fff60613 addi x12, x12, -1 x12=00000466 x12:00000467 +75094384ns 1337922 1c000e84 00130313 addi x6, x6, 1 x6=1c00a422 x6:1c00a421 +75094404ns 1337923 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000466 +75094483ns 1337927 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a422 PA:1c00a422 +75094503ns 1337928 1c000e82 fff60613 addi x12, x12, -1 x12=00000465 x12:00000466 +75094523ns 1337929 1c000e84 00130313 addi x6, x6, 1 x6=1c00a423 x6:1c00a422 +75094543ns 1337930 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000465 +75094622ns 1337934 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a423 PA:1c00a423 +75094642ns 1337935 1c000e82 fff60613 addi x12, x12, -1 x12=00000464 x12:00000465 +75094661ns 1337936 1c000e84 00130313 addi x6, x6, 1 x6=1c00a424 x6:1c00a423 +75094681ns 1337937 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000464 +75094760ns 1337941 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a424 PA:1c00a424 +75094780ns 1337942 1c000e82 fff60613 addi x12, x12, -1 x12=00000463 x12:00000464 +75094800ns 1337943 1c000e84 00130313 addi x6, x6, 1 x6=1c00a425 x6:1c00a424 +75094820ns 1337944 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000463 +75094899ns 1337948 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a425 PA:1c00a425 +75094919ns 1337949 1c000e82 fff60613 addi x12, x12, -1 x12=00000462 x12:00000463 +75094939ns 1337950 1c000e84 00130313 addi x6, x6, 1 x6=1c00a426 x6:1c00a425 +75094958ns 1337951 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000462 +75095038ns 1337955 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a426 PA:1c00a426 +75095057ns 1337956 1c000e82 fff60613 addi x12, x12, -1 x12=00000461 x12:00000462 +75095077ns 1337957 1c000e84 00130313 addi x6, x6, 1 x6=1c00a427 x6:1c00a426 +75095097ns 1337958 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000461 +75095176ns 1337962 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a427 PA:1c00a427 +75095196ns 1337963 1c000e82 fff60613 addi x12, x12, -1 x12=00000460 x12:00000461 +75095216ns 1337964 1c000e84 00130313 addi x6, x6, 1 x6=1c00a428 x6:1c00a427 +75095235ns 1337965 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000460 +75095315ns 1337969 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a428 PA:1c00a428 +75095334ns 1337970 1c000e82 fff60613 addi x12, x12, -1 x12=0000045f x12:00000460 +75095354ns 1337971 1c000e84 00130313 addi x6, x6, 1 x6=1c00a429 x6:1c00a428 +75095374ns 1337972 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000045f +75095453ns 1337976 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a429 PA:1c00a429 +75095473ns 1337977 1c000e82 fff60613 addi x12, x12, -1 x12=0000045e x12:0000045f +75095493ns 1337978 1c000e84 00130313 addi x6, x6, 1 x6=1c00a42a x6:1c00a429 +75095513ns 1337979 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000045e +75095592ns 1337983 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a42a PA:1c00a42a +75095611ns 1337984 1c000e82 fff60613 addi x12, x12, -1 x12=0000045d x12:0000045e +75095631ns 1337985 1c000e84 00130313 addi x6, x6, 1 x6=1c00a42b x6:1c00a42a +75095651ns 1337986 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000045d +75095730ns 1337990 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a42b PA:1c00a42b +75095750ns 1337991 1c000e82 fff60613 addi x12, x12, -1 x12=0000045c x12:0000045d +75095770ns 1337992 1c000e84 00130313 addi x6, x6, 1 x6=1c00a42c x6:1c00a42b +75095790ns 1337993 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000045c +75095869ns 1337997 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a42c PA:1c00a42c +75095889ns 1337998 1c000e82 fff60613 addi x12, x12, -1 x12=0000045b x12:0000045c +75095908ns 1337999 1c000e84 00130313 addi x6, x6, 1 x6=1c00a42d x6:1c00a42c +75095928ns 1338000 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000045b +75096007ns 1338004 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a42d PA:1c00a42d +75096027ns 1338005 1c000e82 fff60613 addi x12, x12, -1 x12=0000045a x12:0000045b +75096047ns 1338006 1c000e84 00130313 addi x6, x6, 1 x6=1c00a42e x6:1c00a42d +75096067ns 1338007 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000045a +75096146ns 1338011 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a42e PA:1c00a42e +75096166ns 1338012 1c000e82 fff60613 addi x12, x12, -1 x12=00000459 x12:0000045a +75096185ns 1338013 1c000e84 00130313 addi x6, x6, 1 x6=1c00a42f x6:1c00a42e +75096205ns 1338014 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000459 +75096284ns 1338018 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a42f PA:1c00a42f +75096304ns 1338019 1c000e82 fff60613 addi x12, x12, -1 x12=00000458 x12:00000459 +75096324ns 1338020 1c000e84 00130313 addi x6, x6, 1 x6=1c00a430 x6:1c00a42f +75096344ns 1338021 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000458 +75096423ns 1338025 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a430 PA:1c00a430 +75096443ns 1338026 1c000e82 fff60613 addi x12, x12, -1 x12=00000457 x12:00000458 +75096463ns 1338027 1c000e84 00130313 addi x6, x6, 1 x6=1c00a431 x6:1c00a430 +75096482ns 1338028 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000457 +75096561ns 1338032 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a431 PA:1c00a431 +75096581ns 1338033 1c000e82 fff60613 addi x12, x12, -1 x12=00000456 x12:00000457 +75096601ns 1338034 1c000e84 00130313 addi x6, x6, 1 x6=1c00a432 x6:1c00a431 +75096621ns 1338035 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000456 +75096700ns 1338039 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a432 PA:1c00a432 +75096720ns 1338040 1c000e82 fff60613 addi x12, x12, -1 x12=00000455 x12:00000456 +75096740ns 1338041 1c000e84 00130313 addi x6, x6, 1 x6=1c00a433 x6:1c00a432 +75096759ns 1338042 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000455 +75096839ns 1338046 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a433 PA:1c00a433 +75096858ns 1338047 1c000e82 fff60613 addi x12, x12, -1 x12=00000454 x12:00000455 +75096878ns 1338048 1c000e84 00130313 addi x6, x6, 1 x6=1c00a434 x6:1c00a433 +75096898ns 1338049 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000454 +75096977ns 1338053 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a434 PA:1c00a434 +75096997ns 1338054 1c000e82 fff60613 addi x12, x12, -1 x12=00000453 x12:00000454 +75097017ns 1338055 1c000e84 00130313 addi x6, x6, 1 x6=1c00a435 x6:1c00a434 +75097037ns 1338056 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000453 +75097116ns 1338060 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a435 PA:1c00a435 +75097135ns 1338061 1c000e82 fff60613 addi x12, x12, -1 x12=00000452 x12:00000453 +75097155ns 1338062 1c000e84 00130313 addi x6, x6, 1 x6=1c00a436 x6:1c00a435 +75097175ns 1338063 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000452 +75097254ns 1338067 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a436 PA:1c00a436 +75097274ns 1338068 1c000e82 fff60613 addi x12, x12, -1 x12=00000451 x12:00000452 +75097294ns 1338069 1c000e84 00130313 addi x6, x6, 1 x6=1c00a437 x6:1c00a436 +75097314ns 1338070 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000451 +75097393ns 1338074 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a437 PA:1c00a437 +75097413ns 1338075 1c000e82 fff60613 addi x12, x12, -1 x12=00000450 x12:00000451 +75097432ns 1338076 1c000e84 00130313 addi x6, x6, 1 x6=1c00a438 x6:1c00a437 +75097452ns 1338077 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000450 +75097531ns 1338081 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a438 PA:1c00a438 +75097551ns 1338082 1c000e82 fff60613 addi x12, x12, -1 x12=0000044f x12:00000450 +75097571ns 1338083 1c000e84 00130313 addi x6, x6, 1 x6=1c00a439 x6:1c00a438 +75097591ns 1338084 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000044f +75097670ns 1338088 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a439 PA:1c00a439 +75097690ns 1338089 1c000e82 fff60613 addi x12, x12, -1 x12=0000044e x12:0000044f +75097709ns 1338090 1c000e84 00130313 addi x6, x6, 1 x6=1c00a43a x6:1c00a439 +75097729ns 1338091 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000044e +75097808ns 1338095 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a43a PA:1c00a43a +75097828ns 1338096 1c000e82 fff60613 addi x12, x12, -1 x12=0000044d x12:0000044e +75097848ns 1338097 1c000e84 00130313 addi x6, x6, 1 x6=1c00a43b x6:1c00a43a +75097868ns 1338098 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000044d +75097947ns 1338102 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a43b PA:1c00a43b +75097967ns 1338103 1c000e82 fff60613 addi x12, x12, -1 x12=0000044c x12:0000044d +75097987ns 1338104 1c000e84 00130313 addi x6, x6, 1 x6=1c00a43c x6:1c00a43b +75098006ns 1338105 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000044c +75098085ns 1338109 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a43c PA:1c00a43c +75098105ns 1338110 1c000e82 fff60613 addi x12, x12, -1 x12=0000044b x12:0000044c +75098125ns 1338111 1c000e84 00130313 addi x6, x6, 1 x6=1c00a43d x6:1c00a43c +75098145ns 1338112 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000044b +75098224ns 1338116 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a43d PA:1c00a43d +75098244ns 1338117 1c000e82 fff60613 addi x12, x12, -1 x12=0000044a x12:0000044b +75098264ns 1338118 1c000e84 00130313 addi x6, x6, 1 x6=1c00a43e x6:1c00a43d +75098283ns 1338119 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000044a +75098363ns 1338123 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a43e PA:1c00a43e +75098382ns 1338124 1c000e82 fff60613 addi x12, x12, -1 x12=00000449 x12:0000044a +75098402ns 1338125 1c000e84 00130313 addi x6, x6, 1 x6=1c00a43f x6:1c00a43e +75098422ns 1338126 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000449 +75098501ns 1338130 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a43f PA:1c00a43f +75098521ns 1338131 1c000e82 fff60613 addi x12, x12, -1 x12=00000448 x12:00000449 +75098541ns 1338132 1c000e84 00130313 addi x6, x6, 1 x6=1c00a440 x6:1c00a43f +75098560ns 1338133 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000448 +75098640ns 1338137 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a440 PA:1c00a440 +75098659ns 1338138 1c000e82 fff60613 addi x12, x12, -1 x12=00000447 x12:00000448 +75098679ns 1338139 1c000e84 00130313 addi x6, x6, 1 x6=1c00a441 x6:1c00a440 +75098699ns 1338140 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000447 +75098778ns 1338144 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a441 PA:1c00a441 +75098798ns 1338145 1c000e82 fff60613 addi x12, x12, -1 x12=00000446 x12:00000447 +75098818ns 1338146 1c000e84 00130313 addi x6, x6, 1 x6=1c00a442 x6:1c00a441 +75098838ns 1338147 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000446 +75098917ns 1338151 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a442 PA:1c00a442 +75098937ns 1338152 1c000e82 fff60613 addi x12, x12, -1 x12=00000445 x12:00000446 +75098956ns 1338153 1c000e84 00130313 addi x6, x6, 1 x6=1c00a443 x6:1c00a442 +75098976ns 1338154 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000445 +75099055ns 1338158 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a443 PA:1c00a443 +75099075ns 1338159 1c000e82 fff60613 addi x12, x12, -1 x12=00000444 x12:00000445 +75099095ns 1338160 1c000e84 00130313 addi x6, x6, 1 x6=1c00a444 x6:1c00a443 +75099115ns 1338161 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000444 +75099194ns 1338165 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a444 PA:1c00a444 +75099214ns 1338166 1c000e82 fff60613 addi x12, x12, -1 x12=00000443 x12:00000444 +75099233ns 1338167 1c000e84 00130313 addi x6, x6, 1 x6=1c00a445 x6:1c00a444 +75099253ns 1338168 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000443 +75099332ns 1338172 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a445 PA:1c00a445 +75099352ns 1338173 1c000e82 fff60613 addi x12, x12, -1 x12=00000442 x12:00000443 +75099372ns 1338174 1c000e84 00130313 addi x6, x6, 1 x6=1c00a446 x6:1c00a445 +75099392ns 1338175 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000442 +75099471ns 1338179 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a446 PA:1c00a446 +75099491ns 1338180 1c000e82 fff60613 addi x12, x12, -1 x12=00000441 x12:00000442 +75099511ns 1338181 1c000e84 00130313 addi x6, x6, 1 x6=1c00a447 x6:1c00a446 +75099530ns 1338182 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000441 +75099609ns 1338186 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a447 PA:1c00a447 +75099629ns 1338187 1c000e82 fff60613 addi x12, x12, -1 x12=00000440 x12:00000441 +75099649ns 1338188 1c000e84 00130313 addi x6, x6, 1 x6=1c00a448 x6:1c00a447 +75099669ns 1338189 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000440 +75099748ns 1338193 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a448 PA:1c00a448 +75099768ns 1338194 1c000e82 fff60613 addi x12, x12, -1 x12=0000043f x12:00000440 +75099788ns 1338195 1c000e84 00130313 addi x6, x6, 1 x6=1c00a449 x6:1c00a448 +75099807ns 1338196 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000043f +75099887ns 1338200 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a449 PA:1c00a449 +75099906ns 1338201 1c000e82 fff60613 addi x12, x12, -1 x12=0000043e x12:0000043f +75099926ns 1338202 1c000e84 00130313 addi x6, x6, 1 x6=1c00a44a x6:1c00a449 +75099946ns 1338203 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000043e +75100025ns 1338207 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a44a PA:1c00a44a +75100045ns 1338208 1c000e82 fff60613 addi x12, x12, -1 x12=0000043d x12:0000043e +75100065ns 1338209 1c000e84 00130313 addi x6, x6, 1 x6=1c00a44b x6:1c00a44a +75100084ns 1338210 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000043d +75100164ns 1338214 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a44b PA:1c00a44b +75100183ns 1338215 1c000e82 fff60613 addi x12, x12, -1 x12=0000043c x12:0000043d +75100203ns 1338216 1c000e84 00130313 addi x6, x6, 1 x6=1c00a44c x6:1c00a44b +75100223ns 1338217 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000043c +75100302ns 1338221 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a44c PA:1c00a44c +75100322ns 1338222 1c000e82 fff60613 addi x12, x12, -1 x12=0000043b x12:0000043c +75100342ns 1338223 1c000e84 00130313 addi x6, x6, 1 x6=1c00a44d x6:1c00a44c +75100362ns 1338224 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000043b +75100441ns 1338228 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a44d PA:1c00a44d +75100461ns 1338229 1c000e82 fff60613 addi x12, x12, -1 x12=0000043a x12:0000043b +75100480ns 1338230 1c000e84 00130313 addi x6, x6, 1 x6=1c00a44e x6:1c00a44d +75100500ns 1338231 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000043a +75100579ns 1338235 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a44e PA:1c00a44e +75100599ns 1338236 1c000e82 fff60613 addi x12, x12, -1 x12=00000439 x12:0000043a +75100619ns 1338237 1c000e84 00130313 addi x6, x6, 1 x6=1c00a44f x6:1c00a44e +75100639ns 1338238 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000439 +75100718ns 1338242 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a44f PA:1c00a44f +75100738ns 1338243 1c000e82 fff60613 addi x12, x12, -1 x12=00000438 x12:00000439 +75100757ns 1338244 1c000e84 00130313 addi x6, x6, 1 x6=1c00a450 x6:1c00a44f +75100777ns 1338245 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000438 +75100856ns 1338249 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a450 PA:1c00a450 +75100876ns 1338250 1c000e82 fff60613 addi x12, x12, -1 x12=00000437 x12:00000438 +75100896ns 1338251 1c000e84 00130313 addi x6, x6, 1 x6=1c00a451 x6:1c00a450 +75100916ns 1338252 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000437 +75100995ns 1338256 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a451 PA:1c00a451 +75101015ns 1338257 1c000e82 fff60613 addi x12, x12, -1 x12=00000436 x12:00000437 +75101034ns 1338258 1c000e84 00130313 addi x6, x6, 1 x6=1c00a452 x6:1c00a451 +75101054ns 1338259 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000436 +75101133ns 1338263 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a452 PA:1c00a452 +75101153ns 1338264 1c000e82 fff60613 addi x12, x12, -1 x12=00000435 x12:00000436 +75101173ns 1338265 1c000e84 00130313 addi x6, x6, 1 x6=1c00a453 x6:1c00a452 +75101193ns 1338266 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000435 +75101272ns 1338270 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a453 PA:1c00a453 +75101292ns 1338271 1c000e82 fff60613 addi x12, x12, -1 x12=00000434 x12:00000435 +75101312ns 1338272 1c000e84 00130313 addi x6, x6, 1 x6=1c00a454 x6:1c00a453 +75101331ns 1338273 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000434 +75101411ns 1338277 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a454 PA:1c00a454 +75101430ns 1338278 1c000e82 fff60613 addi x12, x12, -1 x12=00000433 x12:00000434 +75101450ns 1338279 1c000e84 00130313 addi x6, x6, 1 x6=1c00a455 x6:1c00a454 +75101470ns 1338280 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000433 +75101549ns 1338284 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a455 PA:1c00a455 +75101569ns 1338285 1c000e82 fff60613 addi x12, x12, -1 x12=00000432 x12:00000433 +75101589ns 1338286 1c000e84 00130313 addi x6, x6, 1 x6=1c00a456 x6:1c00a455 +75101608ns 1338287 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000432 +75101688ns 1338291 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a456 PA:1c00a456 +75101707ns 1338292 1c000e82 fff60613 addi x12, x12, -1 x12=00000431 x12:00000432 +75101727ns 1338293 1c000e84 00130313 addi x6, x6, 1 x6=1c00a457 x6:1c00a456 +75101747ns 1338294 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000431 +75101826ns 1338298 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a457 PA:1c00a457 +75101846ns 1338299 1c000e82 fff60613 addi x12, x12, -1 x12=00000430 x12:00000431 +75101866ns 1338300 1c000e84 00130313 addi x6, x6, 1 x6=1c00a458 x6:1c00a457 +75101886ns 1338301 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000430 +75101965ns 1338305 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a458 PA:1c00a458 +75101985ns 1338306 1c000e82 fff60613 addi x12, x12, -1 x12=0000042f x12:00000430 +75102004ns 1338307 1c000e84 00130313 addi x6, x6, 1 x6=1c00a459 x6:1c00a458 +75102024ns 1338308 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000042f +75102103ns 1338312 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a459 PA:1c00a459 +75102123ns 1338313 1c000e82 fff60613 addi x12, x12, -1 x12=0000042e x12:0000042f +75102143ns 1338314 1c000e84 00130313 addi x6, x6, 1 x6=1c00a45a x6:1c00a459 +75102163ns 1338315 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000042e +75102242ns 1338319 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a45a PA:1c00a45a +75102262ns 1338320 1c000e82 fff60613 addi x12, x12, -1 x12=0000042d x12:0000042e +75102281ns 1338321 1c000e84 00130313 addi x6, x6, 1 x6=1c00a45b x6:1c00a45a +75102301ns 1338322 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000042d +75102380ns 1338326 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a45b PA:1c00a45b +75102400ns 1338327 1c000e82 fff60613 addi x12, x12, -1 x12=0000042c x12:0000042d +75102420ns 1338328 1c000e84 00130313 addi x6, x6, 1 x6=1c00a45c x6:1c00a45b +75102440ns 1338329 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000042c +75102519ns 1338333 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a45c PA:1c00a45c +75102539ns 1338334 1c000e82 fff60613 addi x12, x12, -1 x12=0000042b x12:0000042c +75102558ns 1338335 1c000e84 00130313 addi x6, x6, 1 x6=1c00a45d x6:1c00a45c +75102578ns 1338336 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000042b +75102657ns 1338340 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a45d PA:1c00a45d +75102677ns 1338341 1c000e82 fff60613 addi x12, x12, -1 x12=0000042a x12:0000042b +75102697ns 1338342 1c000e84 00130313 addi x6, x6, 1 x6=1c00a45e x6:1c00a45d +75102717ns 1338343 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000042a +75102796ns 1338347 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a45e PA:1c00a45e +75102816ns 1338348 1c000e82 fff60613 addi x12, x12, -1 x12=00000429 x12:0000042a +75102836ns 1338349 1c000e84 00130313 addi x6, x6, 1 x6=1c00a45f x6:1c00a45e +75102855ns 1338350 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000429 +75102935ns 1338354 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a45f PA:1c00a45f +75102954ns 1338355 1c000e82 fff60613 addi x12, x12, -1 x12=00000428 x12:00000429 +75102974ns 1338356 1c000e84 00130313 addi x6, x6, 1 x6=1c00a460 x6:1c00a45f +75102994ns 1338357 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000428 +75103073ns 1338361 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a460 PA:1c00a460 +75103093ns 1338362 1c000e82 fff60613 addi x12, x12, -1 x12=00000427 x12:00000428 +75103113ns 1338363 1c000e84 00130313 addi x6, x6, 1 x6=1c00a461 x6:1c00a460 +75103132ns 1338364 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000427 +75103212ns 1338368 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a461 PA:1c00a461 +75103231ns 1338369 1c000e82 fff60613 addi x12, x12, -1 x12=00000426 x12:00000427 +75103251ns 1338370 1c000e84 00130313 addi x6, x6, 1 x6=1c00a462 x6:1c00a461 +75103271ns 1338371 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000426 +75103350ns 1338375 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a462 PA:1c00a462 +75103370ns 1338376 1c000e82 fff60613 addi x12, x12, -1 x12=00000425 x12:00000426 +75103390ns 1338377 1c000e84 00130313 addi x6, x6, 1 x6=1c00a463 x6:1c00a462 +75103410ns 1338378 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000425 +75103489ns 1338382 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a463 PA:1c00a463 +75103508ns 1338383 1c000e82 fff60613 addi x12, x12, -1 x12=00000424 x12:00000425 +75103528ns 1338384 1c000e84 00130313 addi x6, x6, 1 x6=1c00a464 x6:1c00a463 +75103548ns 1338385 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000424 +75103627ns 1338389 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a464 PA:1c00a464 +75103647ns 1338390 1c000e82 fff60613 addi x12, x12, -1 x12=00000423 x12:00000424 +75103667ns 1338391 1c000e84 00130313 addi x6, x6, 1 x6=1c00a465 x6:1c00a464 +75103687ns 1338392 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000423 +75103766ns 1338396 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a465 PA:1c00a465 +75103786ns 1338397 1c000e82 fff60613 addi x12, x12, -1 x12=00000422 x12:00000423 +75103805ns 1338398 1c000e84 00130313 addi x6, x6, 1 x6=1c00a466 x6:1c00a465 +75103825ns 1338399 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000422 +75103904ns 1338403 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a466 PA:1c00a466 +75103924ns 1338404 1c000e82 fff60613 addi x12, x12, -1 x12=00000421 x12:00000422 +75103944ns 1338405 1c000e84 00130313 addi x6, x6, 1 x6=1c00a467 x6:1c00a466 +75103964ns 1338406 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000421 +75104043ns 1338410 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a467 PA:1c00a467 +75104063ns 1338411 1c000e82 fff60613 addi x12, x12, -1 x12=00000420 x12:00000421 +75104082ns 1338412 1c000e84 00130313 addi x6, x6, 1 x6=1c00a468 x6:1c00a467 +75104102ns 1338413 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000420 +75104181ns 1338417 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a468 PA:1c00a468 +75104201ns 1338418 1c000e82 fff60613 addi x12, x12, -1 x12=0000041f x12:00000420 +75104221ns 1338419 1c000e84 00130313 addi x6, x6, 1 x6=1c00a469 x6:1c00a468 +75104241ns 1338420 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000041f +75104320ns 1338424 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a469 PA:1c00a469 +75104340ns 1338425 1c000e82 fff60613 addi x12, x12, -1 x12=0000041e x12:0000041f +75104360ns 1338426 1c000e84 00130313 addi x6, x6, 1 x6=1c00a46a x6:1c00a469 +75104379ns 1338427 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000041e +75104459ns 1338431 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a46a PA:1c00a46a +75104478ns 1338432 1c000e82 fff60613 addi x12, x12, -1 x12=0000041d x12:0000041e +75104498ns 1338433 1c000e84 00130313 addi x6, x6, 1 x6=1c00a46b x6:1c00a46a +75104518ns 1338434 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000041d +75104597ns 1338438 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a46b PA:1c00a46b +75104617ns 1338439 1c000e82 fff60613 addi x12, x12, -1 x12=0000041c x12:0000041d +75104637ns 1338440 1c000e84 00130313 addi x6, x6, 1 x6=1c00a46c x6:1c00a46b +75104656ns 1338441 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000041c +75104736ns 1338445 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a46c PA:1c00a46c +75104755ns 1338446 1c000e82 fff60613 addi x12, x12, -1 x12=0000041b x12:0000041c +75104775ns 1338447 1c000e84 00130313 addi x6, x6, 1 x6=1c00a46d x6:1c00a46c +75104795ns 1338448 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000041b +75104874ns 1338452 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a46d PA:1c00a46d +75104894ns 1338453 1c000e82 fff60613 addi x12, x12, -1 x12=0000041a x12:0000041b +75104914ns 1338454 1c000e84 00130313 addi x6, x6, 1 x6=1c00a46e x6:1c00a46d +75104934ns 1338455 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000041a +75105013ns 1338459 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a46e PA:1c00a46e +75105032ns 1338460 1c000e82 fff60613 addi x12, x12, -1 x12=00000419 x12:0000041a +75105052ns 1338461 1c000e84 00130313 addi x6, x6, 1 x6=1c00a46f x6:1c00a46e +75105072ns 1338462 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000419 +75105151ns 1338466 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a46f PA:1c00a46f +75105171ns 1338467 1c000e82 fff60613 addi x12, x12, -1 x12=00000418 x12:00000419 +75105191ns 1338468 1c000e84 00130313 addi x6, x6, 1 x6=1c00a470 x6:1c00a46f +75105211ns 1338469 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000418 +75105290ns 1338473 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a470 PA:1c00a470 +75105310ns 1338474 1c000e82 fff60613 addi x12, x12, -1 x12=00000417 x12:00000418 +75105329ns 1338475 1c000e84 00130313 addi x6, x6, 1 x6=1c00a471 x6:1c00a470 +75105349ns 1338476 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000417 +75105428ns 1338480 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a471 PA:1c00a471 +75105448ns 1338481 1c000e82 fff60613 addi x12, x12, -1 x12=00000416 x12:00000417 +75105468ns 1338482 1c000e84 00130313 addi x6, x6, 1 x6=1c00a472 x6:1c00a471 +75105488ns 1338483 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000416 +75105567ns 1338487 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a472 PA:1c00a472 +75105587ns 1338488 1c000e82 fff60613 addi x12, x12, -1 x12=00000415 x12:00000416 +75105606ns 1338489 1c000e84 00130313 addi x6, x6, 1 x6=1c00a473 x6:1c00a472 +75105626ns 1338490 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000415 +75105705ns 1338494 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a473 PA:1c00a473 +75105725ns 1338495 1c000e82 fff60613 addi x12, x12, -1 x12=00000414 x12:00000415 +75105745ns 1338496 1c000e84 00130313 addi x6, x6, 1 x6=1c00a474 x6:1c00a473 +75105765ns 1338497 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000414 +75105844ns 1338501 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a474 PA:1c00a474 +75105864ns 1338502 1c000e82 fff60613 addi x12, x12, -1 x12=00000413 x12:00000414 +75105884ns 1338503 1c000e84 00130313 addi x6, x6, 1 x6=1c00a475 x6:1c00a474 +75105903ns 1338504 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000413 +75105982ns 1338508 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a475 PA:1c00a475 +75106002ns 1338509 1c000e82 fff60613 addi x12, x12, -1 x12=00000412 x12:00000413 +75106022ns 1338510 1c000e84 00130313 addi x6, x6, 1 x6=1c00a476 x6:1c00a475 +75106042ns 1338511 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000412 +75106121ns 1338515 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a476 PA:1c00a476 +75106141ns 1338516 1c000e82 fff60613 addi x12, x12, -1 x12=00000411 x12:00000412 +75106161ns 1338517 1c000e84 00130313 addi x6, x6, 1 x6=1c00a477 x6:1c00a476 +75106180ns 1338518 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000411 +75106260ns 1338522 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a477 PA:1c00a477 +75106279ns 1338523 1c000e82 fff60613 addi x12, x12, -1 x12=00000410 x12:00000411 +75106299ns 1338524 1c000e84 00130313 addi x6, x6, 1 x6=1c00a478 x6:1c00a477 +75106319ns 1338525 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000410 +75106398ns 1338529 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a478 PA:1c00a478 +75106418ns 1338530 1c000e82 fff60613 addi x12, x12, -1 x12=0000040f x12:00000410 +75106438ns 1338531 1c000e84 00130313 addi x6, x6, 1 x6=1c00a479 x6:1c00a478 +75106457ns 1338532 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000040f +75106537ns 1338536 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a479 PA:1c00a479 +75106556ns 1338537 1c000e82 fff60613 addi x12, x12, -1 x12=0000040e x12:0000040f +75106576ns 1338538 1c000e84 00130313 addi x6, x6, 1 x6=1c00a47a x6:1c00a479 +75106596ns 1338539 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000040e +75106675ns 1338543 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a47a PA:1c00a47a +75106695ns 1338544 1c000e82 fff60613 addi x12, x12, -1 x12=0000040d x12:0000040e +75106715ns 1338545 1c000e84 00130313 addi x6, x6, 1 x6=1c00a47b x6:1c00a47a +75106735ns 1338546 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000040d +75106814ns 1338550 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a47b PA:1c00a47b +75106834ns 1338551 1c000e82 fff60613 addi x12, x12, -1 x12=0000040c x12:0000040d +75106853ns 1338552 1c000e84 00130313 addi x6, x6, 1 x6=1c00a47c x6:1c00a47b +75106873ns 1338553 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000040c +75106952ns 1338557 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a47c PA:1c00a47c +75106972ns 1338558 1c000e82 fff60613 addi x12, x12, -1 x12=0000040b x12:0000040c +75106992ns 1338559 1c000e84 00130313 addi x6, x6, 1 x6=1c00a47d x6:1c00a47c +75107012ns 1338560 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000040b +75107091ns 1338564 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a47d PA:1c00a47d +75107111ns 1338565 1c000e82 fff60613 addi x12, x12, -1 x12=0000040a x12:0000040b +75107130ns 1338566 1c000e84 00130313 addi x6, x6, 1 x6=1c00a47e x6:1c00a47d +75107150ns 1338567 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000040a +75107229ns 1338571 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a47e PA:1c00a47e +75107249ns 1338572 1c000e82 fff60613 addi x12, x12, -1 x12=00000409 x12:0000040a +75107269ns 1338573 1c000e84 00130313 addi x6, x6, 1 x6=1c00a47f x6:1c00a47e +75107289ns 1338574 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000409 +75107368ns 1338578 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a47f PA:1c00a47f +75107388ns 1338579 1c000e82 fff60613 addi x12, x12, -1 x12=00000408 x12:00000409 +75107408ns 1338580 1c000e84 00130313 addi x6, x6, 1 x6=1c00a480 x6:1c00a47f +75107427ns 1338581 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000408 +75107506ns 1338585 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a480 PA:1c00a480 +75107526ns 1338586 1c000e82 fff60613 addi x12, x12, -1 x12=00000407 x12:00000408 +75107546ns 1338587 1c000e84 00130313 addi x6, x6, 1 x6=1c00a481 x6:1c00a480 +75107566ns 1338588 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000407 +75107645ns 1338592 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a481 PA:1c00a481 +75107665ns 1338593 1c000e82 fff60613 addi x12, x12, -1 x12=00000406 x12:00000407 +75107685ns 1338594 1c000e84 00130313 addi x6, x6, 1 x6=1c00a482 x6:1c00a481 +75107704ns 1338595 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000406 +75107784ns 1338599 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a482 PA:1c00a482 +75107803ns 1338600 1c000e82 fff60613 addi x12, x12, -1 x12=00000405 x12:00000406 +75107823ns 1338601 1c000e84 00130313 addi x6, x6, 1 x6=1c00a483 x6:1c00a482 +75107843ns 1338602 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000405 +75107922ns 1338606 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a483 PA:1c00a483 +75107942ns 1338607 1c000e82 fff60613 addi x12, x12, -1 x12=00000404 x12:00000405 +75107962ns 1338608 1c000e84 00130313 addi x6, x6, 1 x6=1c00a484 x6:1c00a483 +75107981ns 1338609 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000404 +75108061ns 1338613 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a484 PA:1c00a484 +75108080ns 1338614 1c000e82 fff60613 addi x12, x12, -1 x12=00000403 x12:00000404 +75108100ns 1338615 1c000e84 00130313 addi x6, x6, 1 x6=1c00a485 x6:1c00a484 +75108120ns 1338616 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000403 +75108199ns 1338620 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a485 PA:1c00a485 +75108219ns 1338621 1c000e82 fff60613 addi x12, x12, -1 x12=00000402 x12:00000403 +75108239ns 1338622 1c000e84 00130313 addi x6, x6, 1 x6=1c00a486 x6:1c00a485 +75108259ns 1338623 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000402 +75108338ns 1338627 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a486 PA:1c00a486 +75108358ns 1338628 1c000e82 fff60613 addi x12, x12, -1 x12=00000401 x12:00000402 +75108377ns 1338629 1c000e84 00130313 addi x6, x6, 1 x6=1c00a487 x6:1c00a486 +75108397ns 1338630 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000401 +75108476ns 1338634 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a487 PA:1c00a487 +75108496ns 1338635 1c000e82 fff60613 addi x12, x12, -1 x12=00000400 x12:00000401 +75108516ns 1338636 1c000e84 00130313 addi x6, x6, 1 x6=1c00a488 x6:1c00a487 +75108536ns 1338637 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000400 +75108615ns 1338641 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a488 PA:1c00a488 +75108635ns 1338642 1c000e82 fff60613 addi x12, x12, -1 x12=000003ff x12:00000400 +75108654ns 1338643 1c000e84 00130313 addi x6, x6, 1 x6=1c00a489 x6:1c00a488 +75108674ns 1338644 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ff +75108753ns 1338648 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a489 PA:1c00a489 +75108773ns 1338649 1c000e82 fff60613 addi x12, x12, -1 x12=000003fe x12:000003ff +75108793ns 1338650 1c000e84 00130313 addi x6, x6, 1 x6=1c00a48a x6:1c00a489 +75108813ns 1338651 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003fe +75108892ns 1338655 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a48a PA:1c00a48a +75108912ns 1338656 1c000e82 fff60613 addi x12, x12, -1 x12=000003fd x12:000003fe +75108931ns 1338657 1c000e84 00130313 addi x6, x6, 1 x6=1c00a48b x6:1c00a48a +75108951ns 1338658 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003fd +75109030ns 1338662 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a48b PA:1c00a48b +75109050ns 1338663 1c000e82 fff60613 addi x12, x12, -1 x12=000003fc x12:000003fd +75109070ns 1338664 1c000e84 00130313 addi x6, x6, 1 x6=1c00a48c x6:1c00a48b +75109090ns 1338665 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003fc +75109169ns 1338669 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a48c PA:1c00a48c +75109189ns 1338670 1c000e82 fff60613 addi x12, x12, -1 x12=000003fb x12:000003fc +75109209ns 1338671 1c000e84 00130313 addi x6, x6, 1 x6=1c00a48d x6:1c00a48c +75109228ns 1338672 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003fb +75109308ns 1338676 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a48d PA:1c00a48d +75109327ns 1338677 1c000e82 fff60613 addi x12, x12, -1 x12=000003fa x12:000003fb +75109347ns 1338678 1c000e84 00130313 addi x6, x6, 1 x6=1c00a48e x6:1c00a48d +75109367ns 1338679 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003fa +75109446ns 1338683 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a48e PA:1c00a48e +75109466ns 1338684 1c000e82 fff60613 addi x12, x12, -1 x12=000003f9 x12:000003fa +75109486ns 1338685 1c000e84 00130313 addi x6, x6, 1 x6=1c00a48f x6:1c00a48e +75109505ns 1338686 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003f9 +75109585ns 1338690 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a48f PA:1c00a48f +75109604ns 1338691 1c000e82 fff60613 addi x12, x12, -1 x12=000003f8 x12:000003f9 +75109624ns 1338692 1c000e84 00130313 addi x6, x6, 1 x6=1c00a490 x6:1c00a48f +75109644ns 1338693 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003f8 +75109723ns 1338697 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a490 PA:1c00a490 +75109743ns 1338698 1c000e82 fff60613 addi x12, x12, -1 x12=000003f7 x12:000003f8 +75109763ns 1338699 1c000e84 00130313 addi x6, x6, 1 x6=1c00a491 x6:1c00a490 +75109783ns 1338700 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003f7 +75109862ns 1338704 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a491 PA:1c00a491 +75109882ns 1338705 1c000e82 fff60613 addi x12, x12, -1 x12=000003f6 x12:000003f7 +75109901ns 1338706 1c000e84 00130313 addi x6, x6, 1 x6=1c00a492 x6:1c00a491 +75109921ns 1338707 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003f6 +75110000ns 1338711 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a492 PA:1c00a492 +75110020ns 1338712 1c000e82 fff60613 addi x12, x12, -1 x12=000003f5 x12:000003f6 +75110040ns 1338713 1c000e84 00130313 addi x6, x6, 1 x6=1c00a493 x6:1c00a492 +75110060ns 1338714 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003f5 +75110139ns 1338718 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a493 PA:1c00a493 +75110159ns 1338719 1c000e82 fff60613 addi x12, x12, -1 x12=000003f4 x12:000003f5 +75110178ns 1338720 1c000e84 00130313 addi x6, x6, 1 x6=1c00a494 x6:1c00a493 +75110198ns 1338721 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003f4 +75110277ns 1338725 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a494 PA:1c00a494 +75110297ns 1338726 1c000e82 fff60613 addi x12, x12, -1 x12=000003f3 x12:000003f4 +75110317ns 1338727 1c000e84 00130313 addi x6, x6, 1 x6=1c00a495 x6:1c00a494 +75110337ns 1338728 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003f3 +75110416ns 1338732 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a495 PA:1c00a495 +75110436ns 1338733 1c000e82 fff60613 addi x12, x12, -1 x12=000003f2 x12:000003f3 +75110455ns 1338734 1c000e84 00130313 addi x6, x6, 1 x6=1c00a496 x6:1c00a495 +75110475ns 1338735 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003f2 +75110554ns 1338739 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a496 PA:1c00a496 +75110574ns 1338740 1c000e82 fff60613 addi x12, x12, -1 x12=000003f1 x12:000003f2 +75110594ns 1338741 1c000e84 00130313 addi x6, x6, 1 x6=1c00a497 x6:1c00a496 +75110614ns 1338742 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003f1 +75110693ns 1338746 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a497 PA:1c00a497 +75110713ns 1338747 1c000e82 fff60613 addi x12, x12, -1 x12=000003f0 x12:000003f1 +75110733ns 1338748 1c000e84 00130313 addi x6, x6, 1 x6=1c00a498 x6:1c00a497 +75110752ns 1338749 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003f0 +75110832ns 1338753 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a498 PA:1c00a498 +75110851ns 1338754 1c000e82 fff60613 addi x12, x12, -1 x12=000003ef x12:000003f0 +75110871ns 1338755 1c000e84 00130313 addi x6, x6, 1 x6=1c00a499 x6:1c00a498 +75110891ns 1338756 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ef +75110970ns 1338760 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a499 PA:1c00a499 +75110990ns 1338761 1c000e82 fff60613 addi x12, x12, -1 x12=000003ee x12:000003ef +75111010ns 1338762 1c000e84 00130313 addi x6, x6, 1 x6=1c00a49a x6:1c00a499 +75111029ns 1338763 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ee +75111109ns 1338767 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a49a PA:1c00a49a +75111128ns 1338768 1c000e82 fff60613 addi x12, x12, -1 x12=000003ed x12:000003ee +75111148ns 1338769 1c000e84 00130313 addi x6, x6, 1 x6=1c00a49b x6:1c00a49a +75111168ns 1338770 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ed +75111247ns 1338774 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a49b PA:1c00a49b +75111267ns 1338775 1c000e82 fff60613 addi x12, x12, -1 x12=000003ec x12:000003ed +75111287ns 1338776 1c000e84 00130313 addi x6, x6, 1 x6=1c00a49c x6:1c00a49b +75111307ns 1338777 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ec +75111386ns 1338781 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a49c PA:1c00a49c +75111405ns 1338782 1c000e82 fff60613 addi x12, x12, -1 x12=000003eb x12:000003ec +75111425ns 1338783 1c000e84 00130313 addi x6, x6, 1 x6=1c00a49d x6:1c00a49c +75111445ns 1338784 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003eb +75111524ns 1338788 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a49d PA:1c00a49d +75111544ns 1338789 1c000e82 fff60613 addi x12, x12, -1 x12=000003ea x12:000003eb +75111564ns 1338790 1c000e84 00130313 addi x6, x6, 1 x6=1c00a49e x6:1c00a49d +75111584ns 1338791 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ea +75111663ns 1338795 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a49e PA:1c00a49e +75111683ns 1338796 1c000e82 fff60613 addi x12, x12, -1 x12=000003e9 x12:000003ea +75111702ns 1338797 1c000e84 00130313 addi x6, x6, 1 x6=1c00a49f x6:1c00a49e +75111722ns 1338798 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003e9 +75111801ns 1338802 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a49f PA:1c00a49f +75111821ns 1338803 1c000e82 fff60613 addi x12, x12, -1 x12=000003e8 x12:000003e9 +75111841ns 1338804 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4a0 x6:1c00a49f +75111861ns 1338805 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003e8 +75111940ns 1338809 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4a0 PA:1c00a4a0 +75111960ns 1338810 1c000e82 fff60613 addi x12, x12, -1 x12=000003e7 x12:000003e8 +75111979ns 1338811 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4a1 x6:1c00a4a0 +75111999ns 1338812 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003e7 +75112078ns 1338816 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4a1 PA:1c00a4a1 +75112098ns 1338817 1c000e82 fff60613 addi x12, x12, -1 x12=000003e6 x12:000003e7 +75112118ns 1338818 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4a2 x6:1c00a4a1 +75112138ns 1338819 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003e6 +75112217ns 1338823 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4a2 PA:1c00a4a2 +75112237ns 1338824 1c000e82 fff60613 addi x12, x12, -1 x12=000003e5 x12:000003e6 +75112257ns 1338825 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4a3 x6:1c00a4a2 +75112276ns 1338826 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003e5 +75112356ns 1338830 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4a3 PA:1c00a4a3 +75112375ns 1338831 1c000e82 fff60613 addi x12, x12, -1 x12=000003e4 x12:000003e5 +75112395ns 1338832 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4a4 x6:1c00a4a3 +75112415ns 1338833 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003e4 +75112494ns 1338837 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4a4 PA:1c00a4a4 +75112514ns 1338838 1c000e82 fff60613 addi x12, x12, -1 x12=000003e3 x12:000003e4 +75112534ns 1338839 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4a5 x6:1c00a4a4 +75112553ns 1338840 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003e3 +75112633ns 1338844 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4a5 PA:1c00a4a5 +75112652ns 1338845 1c000e82 fff60613 addi x12, x12, -1 x12=000003e2 x12:000003e3 +75112672ns 1338846 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4a6 x6:1c00a4a5 +75112692ns 1338847 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003e2 +75112771ns 1338851 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4a6 PA:1c00a4a6 +75112791ns 1338852 1c000e82 fff60613 addi x12, x12, -1 x12=000003e1 x12:000003e2 +75112811ns 1338853 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4a7 x6:1c00a4a6 +75112831ns 1338854 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003e1 +75112910ns 1338858 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4a7 PA:1c00a4a7 +75112929ns 1338859 1c000e82 fff60613 addi x12, x12, -1 x12=000003e0 x12:000003e1 +75112949ns 1338860 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4a8 x6:1c00a4a7 +75112969ns 1338861 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003e0 +75113048ns 1338865 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4a8 PA:1c00a4a8 +75113068ns 1338866 1c000e82 fff60613 addi x12, x12, -1 x12=000003df x12:000003e0 +75113088ns 1338867 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4a9 x6:1c00a4a8 +75113108ns 1338868 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003df +75113187ns 1338872 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4a9 PA:1c00a4a9 +75113207ns 1338873 1c000e82 fff60613 addi x12, x12, -1 x12=000003de x12:000003df +75113226ns 1338874 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4aa x6:1c00a4a9 +75113246ns 1338875 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003de +75113325ns 1338879 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4aa PA:1c00a4aa +75113345ns 1338880 1c000e82 fff60613 addi x12, x12, -1 x12=000003dd x12:000003de +75113365ns 1338881 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4ab x6:1c00a4aa +75113385ns 1338882 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003dd +75113464ns 1338886 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4ab PA:1c00a4ab +75113484ns 1338887 1c000e82 fff60613 addi x12, x12, -1 x12=000003dc x12:000003dd +75113503ns 1338888 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4ac x6:1c00a4ab +75113523ns 1338889 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003dc +75113602ns 1338893 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4ac PA:1c00a4ac +75113622ns 1338894 1c000e82 fff60613 addi x12, x12, -1 x12=000003db x12:000003dc +75113642ns 1338895 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4ad x6:1c00a4ac +75113662ns 1338896 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003db +75113741ns 1338900 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4ad PA:1c00a4ad +75113761ns 1338901 1c000e82 fff60613 addi x12, x12, -1 x12=000003da x12:000003db +75113781ns 1338902 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4ae x6:1c00a4ad +75113800ns 1338903 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003da +75113879ns 1338907 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4ae PA:1c00a4ae +75113899ns 1338908 1c000e82 fff60613 addi x12, x12, -1 x12=000003d9 x12:000003da +75113919ns 1338909 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4af x6:1c00a4ae +75113939ns 1338910 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003d9 +75114018ns 1338914 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4af PA:1c00a4af +75114038ns 1338915 1c000e82 fff60613 addi x12, x12, -1 x12=000003d8 x12:000003d9 +75114058ns 1338916 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4b0 x6:1c00a4af +75114077ns 1338917 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003d8 +75114157ns 1338921 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4b0 PA:1c00a4b0 +75114176ns 1338922 1c000e82 fff60613 addi x12, x12, -1 x12=000003d7 x12:000003d8 +75114196ns 1338923 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4b1 x6:1c00a4b0 +75114216ns 1338924 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003d7 +75114295ns 1338928 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4b1 PA:1c00a4b1 +75114315ns 1338929 1c000e82 fff60613 addi x12, x12, -1 x12=000003d6 x12:000003d7 +75114335ns 1338930 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4b2 x6:1c00a4b1 +75114355ns 1338931 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003d6 +75114434ns 1338935 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4b2 PA:1c00a4b2 +75114453ns 1338936 1c000e82 fff60613 addi x12, x12, -1 x12=000003d5 x12:000003d6 +75114473ns 1338937 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4b3 x6:1c00a4b2 +75114493ns 1338938 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003d5 +75114572ns 1338942 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4b3 PA:1c00a4b3 +75114592ns 1338943 1c000e82 fff60613 addi x12, x12, -1 x12=000003d4 x12:000003d5 +75114612ns 1338944 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4b4 x6:1c00a4b3 +75114632ns 1338945 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003d4 +75114711ns 1338949 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4b4 PA:1c00a4b4 +75114731ns 1338950 1c000e82 fff60613 addi x12, x12, -1 x12=000003d3 x12:000003d4 +75114750ns 1338951 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4b5 x6:1c00a4b4 +75114770ns 1338952 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003d3 +75114849ns 1338956 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4b5 PA:1c00a4b5 +75114869ns 1338957 1c000e82 fff60613 addi x12, x12, -1 x12=000003d2 x12:000003d3 +75114889ns 1338958 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4b6 x6:1c00a4b5 +75114909ns 1338959 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003d2 +75114988ns 1338963 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4b6 PA:1c00a4b6 +75115008ns 1338964 1c000e82 fff60613 addi x12, x12, -1 x12=000003d1 x12:000003d2 +75115027ns 1338965 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4b7 x6:1c00a4b6 +75115047ns 1338966 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003d1 +75115126ns 1338970 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4b7 PA:1c00a4b7 +75115146ns 1338971 1c000e82 fff60613 addi x12, x12, -1 x12=000003d0 x12:000003d1 +75115166ns 1338972 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4b8 x6:1c00a4b7 +75115186ns 1338973 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003d0 +75115265ns 1338977 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4b8 PA:1c00a4b8 +75115285ns 1338978 1c000e82 fff60613 addi x12, x12, -1 x12=000003cf x12:000003d0 +75115305ns 1338979 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4b9 x6:1c00a4b8 +75115324ns 1338980 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003cf +75115403ns 1338984 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4b9 PA:1c00a4b9 +75115423ns 1338985 1c000e82 fff60613 addi x12, x12, -1 x12=000003ce x12:000003cf +75115443ns 1338986 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4ba x6:1c00a4b9 +75115463ns 1338987 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ce +75115542ns 1338991 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4ba PA:1c00a4ba +75115562ns 1338992 1c000e82 fff60613 addi x12, x12, -1 x12=000003cd x12:000003ce +75115582ns 1338993 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4bb x6:1c00a4ba +75115601ns 1338994 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003cd +75115681ns 1338998 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4bb PA:1c00a4bb +75115700ns 1338999 1c000e82 fff60613 addi x12, x12, -1 x12=000003cc x12:000003cd +75115720ns 1339000 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4bc x6:1c00a4bb +75115740ns 1339001 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003cc +75115819ns 1339005 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4bc PA:1c00a4bc +75115839ns 1339006 1c000e82 fff60613 addi x12, x12, -1 x12=000003cb x12:000003cc +75115859ns 1339007 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4bd x6:1c00a4bc +75115878ns 1339008 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003cb +75115958ns 1339012 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4bd PA:1c00a4bd +75115977ns 1339013 1c000e82 fff60613 addi x12, x12, -1 x12=000003ca x12:000003cb +75115997ns 1339014 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4be x6:1c00a4bd +75116017ns 1339015 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ca +75116096ns 1339019 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4be PA:1c00a4be +75116116ns 1339020 1c000e82 fff60613 addi x12, x12, -1 x12=000003c9 x12:000003ca +75116136ns 1339021 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4bf x6:1c00a4be +75116156ns 1339022 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003c9 +75116235ns 1339026 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4bf PA:1c00a4bf +75116255ns 1339027 1c000e82 fff60613 addi x12, x12, -1 x12=000003c8 x12:000003c9 +75116274ns 1339028 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4c0 x6:1c00a4bf +75116294ns 1339029 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003c8 +75116373ns 1339033 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4c0 PA:1c00a4c0 +75116393ns 1339034 1c000e82 fff60613 addi x12, x12, -1 x12=000003c7 x12:000003c8 +75116413ns 1339035 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4c1 x6:1c00a4c0 +75116433ns 1339036 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003c7 +75116512ns 1339040 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4c1 PA:1c00a4c1 +75116532ns 1339041 1c000e82 fff60613 addi x12, x12, -1 x12=000003c6 x12:000003c7 +75116551ns 1339042 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4c2 x6:1c00a4c1 +75116571ns 1339043 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003c6 +75116650ns 1339047 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4c2 PA:1c00a4c2 +75116670ns 1339048 1c000e82 fff60613 addi x12, x12, -1 x12=000003c5 x12:000003c6 +75116690ns 1339049 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4c3 x6:1c00a4c2 +75116710ns 1339050 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003c5 +75116789ns 1339054 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4c3 PA:1c00a4c3 +75116809ns 1339055 1c000e82 fff60613 addi x12, x12, -1 x12=000003c4 x12:000003c5 +75116829ns 1339056 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4c4 x6:1c00a4c3 +75116848ns 1339057 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003c4 +75116927ns 1339061 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4c4 PA:1c00a4c4 +75116947ns 1339062 1c000e82 fff60613 addi x12, x12, -1 x12=000003c3 x12:000003c4 +75116967ns 1339063 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4c5 x6:1c00a4c4 +75116987ns 1339064 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003c3 +75117066ns 1339068 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4c5 PA:1c00a4c5 +75117086ns 1339069 1c000e82 fff60613 addi x12, x12, -1 x12=000003c2 x12:000003c3 +75117106ns 1339070 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4c6 x6:1c00a4c5 +75117125ns 1339071 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003c2 +75117205ns 1339075 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4c6 PA:1c00a4c6 +75117224ns 1339076 1c000e82 fff60613 addi x12, x12, -1 x12=000003c1 x12:000003c2 +75117244ns 1339077 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4c7 x6:1c00a4c6 +75117264ns 1339078 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003c1 +75117343ns 1339082 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4c7 PA:1c00a4c7 +75117363ns 1339083 1c000e82 fff60613 addi x12, x12, -1 x12=000003c0 x12:000003c1 +75117383ns 1339084 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4c8 x6:1c00a4c7 +75117402ns 1339085 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003c0 +75117482ns 1339089 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4c8 PA:1c00a4c8 +75117501ns 1339090 1c000e82 fff60613 addi x12, x12, -1 x12=000003bf x12:000003c0 +75117521ns 1339091 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4c9 x6:1c00a4c8 +75117541ns 1339092 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003bf +75117620ns 1339096 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4c9 PA:1c00a4c9 +75117640ns 1339097 1c000e82 fff60613 addi x12, x12, -1 x12=000003be x12:000003bf +75117660ns 1339098 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4ca x6:1c00a4c9 +75117680ns 1339099 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003be +75117759ns 1339103 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4ca PA:1c00a4ca +75117779ns 1339104 1c000e82 fff60613 addi x12, x12, -1 x12=000003bd x12:000003be +75117798ns 1339105 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4cb x6:1c00a4ca +75117818ns 1339106 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003bd +75117897ns 1339110 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4cb PA:1c00a4cb +75117917ns 1339111 1c000e82 fff60613 addi x12, x12, -1 x12=000003bc x12:000003bd +75117937ns 1339112 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4cc x6:1c00a4cb +75117957ns 1339113 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003bc +75118036ns 1339117 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4cc PA:1c00a4cc +75118056ns 1339118 1c000e82 fff60613 addi x12, x12, -1 x12=000003bb x12:000003bc +75118075ns 1339119 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4cd x6:1c00a4cc +75118095ns 1339120 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003bb +75118174ns 1339124 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4cd PA:1c00a4cd +75118194ns 1339125 1c000e82 fff60613 addi x12, x12, -1 x12=000003ba x12:000003bb +75118214ns 1339126 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4ce x6:1c00a4cd +75118234ns 1339127 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ba +75118313ns 1339131 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4ce PA:1c00a4ce +75118333ns 1339132 1c000e82 fff60613 addi x12, x12, -1 x12=000003b9 x12:000003ba +75118352ns 1339133 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4cf x6:1c00a4ce +75118372ns 1339134 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003b9 +75118451ns 1339138 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4cf PA:1c00a4cf +75118471ns 1339139 1c000e82 fff60613 addi x12, x12, -1 x12=000003b8 x12:000003b9 +75118491ns 1339140 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4d0 x6:1c00a4cf +75118511ns 1339141 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003b8 +75118590ns 1339145 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4d0 PA:1c00a4d0 +75118610ns 1339146 1c000e82 fff60613 addi x12, x12, -1 x12=000003b7 x12:000003b8 +75118630ns 1339147 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4d1 x6:1c00a4d0 +75118649ns 1339148 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003b7 +75118729ns 1339152 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4d1 PA:1c00a4d1 +75118748ns 1339153 1c000e82 fff60613 addi x12, x12, -1 x12=000003b6 x12:000003b7 +75118768ns 1339154 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4d2 x6:1c00a4d1 +75118788ns 1339155 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003b6 +75118867ns 1339159 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4d2 PA:1c00a4d2 +75118887ns 1339160 1c000e82 fff60613 addi x12, x12, -1 x12=000003b5 x12:000003b6 +75118907ns 1339161 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4d3 x6:1c00a4d2 +75118926ns 1339162 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003b5 +75119006ns 1339166 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4d3 PA:1c00a4d3 +75119025ns 1339167 1c000e82 fff60613 addi x12, x12, -1 x12=000003b4 x12:000003b5 +75119045ns 1339168 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4d4 x6:1c00a4d3 +75119065ns 1339169 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003b4 +75119144ns 1339173 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4d4 PA:1c00a4d4 +75119164ns 1339174 1c000e82 fff60613 addi x12, x12, -1 x12=000003b3 x12:000003b4 +75119184ns 1339175 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4d5 x6:1c00a4d4 +75119204ns 1339176 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003b3 +75119283ns 1339180 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4d5 PA:1c00a4d5 +75119303ns 1339181 1c000e82 fff60613 addi x12, x12, -1 x12=000003b2 x12:000003b3 +75119322ns 1339182 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4d6 x6:1c00a4d5 +75119342ns 1339183 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003b2 +75119421ns 1339187 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4d6 PA:1c00a4d6 +75119441ns 1339188 1c000e82 fff60613 addi x12, x12, -1 x12=000003b1 x12:000003b2 +75119461ns 1339189 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4d7 x6:1c00a4d6 +75119481ns 1339190 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003b1 +75119560ns 1339194 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4d7 PA:1c00a4d7 +75119580ns 1339195 1c000e82 fff60613 addi x12, x12, -1 x12=000003b0 x12:000003b1 +75119599ns 1339196 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4d8 x6:1c00a4d7 +75119619ns 1339197 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003b0 +75119698ns 1339201 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4d8 PA:1c00a4d8 +75119718ns 1339202 1c000e82 fff60613 addi x12, x12, -1 x12=000003af x12:000003b0 +75119738ns 1339203 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4d9 x6:1c00a4d8 +75119758ns 1339204 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003af +75119837ns 1339208 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4d9 PA:1c00a4d9 +75119857ns 1339209 1c000e82 fff60613 addi x12, x12, -1 x12=000003ae x12:000003af +75119876ns 1339210 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4da x6:1c00a4d9 +75119896ns 1339211 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ae +75119975ns 1339215 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4da PA:1c00a4da +75119995ns 1339216 1c000e82 fff60613 addi x12, x12, -1 x12=000003ad x12:000003ae +75120015ns 1339217 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4db x6:1c00a4da +75120035ns 1339218 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ad +75120114ns 1339222 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4db PA:1c00a4db +75120134ns 1339223 1c000e82 fff60613 addi x12, x12, -1 x12=000003ac x12:000003ad +75120154ns 1339224 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4dc x6:1c00a4db +75120173ns 1339225 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ac +75120253ns 1339229 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4dc PA:1c00a4dc +75120272ns 1339230 1c000e82 fff60613 addi x12, x12, -1 x12=000003ab x12:000003ac +75120292ns 1339231 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4dd x6:1c00a4dc +75120312ns 1339232 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ab +75120391ns 1339236 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4dd PA:1c00a4dd +75120411ns 1339237 1c000e82 fff60613 addi x12, x12, -1 x12=000003aa x12:000003ab +75120431ns 1339238 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4de x6:1c00a4dd +75120450ns 1339239 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003aa +75120530ns 1339243 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4de PA:1c00a4de +75120549ns 1339244 1c000e82 fff60613 addi x12, x12, -1 x12=000003a9 x12:000003aa +75120569ns 1339245 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4df x6:1c00a4de +75120589ns 1339246 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003a9 +75120668ns 1339250 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4df PA:1c00a4df +75120688ns 1339251 1c000e82 fff60613 addi x12, x12, -1 x12=000003a8 x12:000003a9 +75120708ns 1339252 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4e0 x6:1c00a4df +75120728ns 1339253 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003a8 +75120807ns 1339257 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4e0 PA:1c00a4e0 +75120826ns 1339258 1c000e82 fff60613 addi x12, x12, -1 x12=000003a7 x12:000003a8 +75120846ns 1339259 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4e1 x6:1c00a4e0 +75120866ns 1339260 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003a7 +75120945ns 1339264 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4e1 PA:1c00a4e1 +75120965ns 1339265 1c000e82 fff60613 addi x12, x12, -1 x12=000003a6 x12:000003a7 +75120985ns 1339266 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4e2 x6:1c00a4e1 +75121005ns 1339267 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003a6 +75121084ns 1339271 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4e2 PA:1c00a4e2 +75121104ns 1339272 1c000e82 fff60613 addi x12, x12, -1 x12=000003a5 x12:000003a6 +75121123ns 1339273 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4e3 x6:1c00a4e2 +75121143ns 1339274 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003a5 +75121222ns 1339278 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4e3 PA:1c00a4e3 +75121242ns 1339279 1c000e82 fff60613 addi x12, x12, -1 x12=000003a4 x12:000003a5 +75121262ns 1339280 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4e4 x6:1c00a4e3 +75121282ns 1339281 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003a4 +75121361ns 1339285 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4e4 PA:1c00a4e4 +75121381ns 1339286 1c000e82 fff60613 addi x12, x12, -1 x12=000003a3 x12:000003a4 +75121400ns 1339287 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4e5 x6:1c00a4e4 +75121420ns 1339288 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003a3 +75121499ns 1339292 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4e5 PA:1c00a4e5 +75121519ns 1339293 1c000e82 fff60613 addi x12, x12, -1 x12=000003a2 x12:000003a3 +75121539ns 1339294 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4e6 x6:1c00a4e5 +75121559ns 1339295 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003a2 +75121638ns 1339299 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4e6 PA:1c00a4e6 +75121658ns 1339300 1c000e82 fff60613 addi x12, x12, -1 x12=000003a1 x12:000003a2 +75121678ns 1339301 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4e7 x6:1c00a4e6 +75121697ns 1339302 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003a1 +75121777ns 1339306 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4e7 PA:1c00a4e7 +75121796ns 1339307 1c000e82 fff60613 addi x12, x12, -1 x12=000003a0 x12:000003a1 +75121816ns 1339308 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4e8 x6:1c00a4e7 +75121836ns 1339309 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003a0 +75121915ns 1339313 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4e8 PA:1c00a4e8 +75121935ns 1339314 1c000e82 fff60613 addi x12, x12, -1 x12=0000039f x12:000003a0 +75121955ns 1339315 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4e9 x6:1c00a4e8 +75121974ns 1339316 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000039f +75122054ns 1339320 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4e9 PA:1c00a4e9 +75122073ns 1339321 1c000e82 fff60613 addi x12, x12, -1 x12=0000039e x12:0000039f +75122093ns 1339322 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4ea x6:1c00a4e9 +75122113ns 1339323 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000039e +75122192ns 1339327 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4ea PA:1c00a4ea +75122212ns 1339328 1c000e82 fff60613 addi x12, x12, -1 x12=0000039d x12:0000039e +75122232ns 1339329 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4eb x6:1c00a4ea +75122252ns 1339330 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000039d +75122331ns 1339334 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4eb PA:1c00a4eb +75122350ns 1339335 1c000e82 fff60613 addi x12, x12, -1 x12=0000039c x12:0000039d +75122370ns 1339336 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4ec x6:1c00a4eb +75122390ns 1339337 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000039c +75122469ns 1339341 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4ec PA:1c00a4ec +75122489ns 1339342 1c000e82 fff60613 addi x12, x12, -1 x12=0000039b x12:0000039c +75122509ns 1339343 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4ed x6:1c00a4ec +75122529ns 1339344 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000039b +75122608ns 1339348 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4ed PA:1c00a4ed +75122628ns 1339349 1c000e82 fff60613 addi x12, x12, -1 x12=0000039a x12:0000039b +75122647ns 1339350 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4ee x6:1c00a4ed +75122667ns 1339351 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000039a +75122746ns 1339355 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4ee PA:1c00a4ee +75122766ns 1339356 1c000e82 fff60613 addi x12, x12, -1 x12=00000399 x12:0000039a +75122786ns 1339357 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4ef x6:1c00a4ee +75122806ns 1339358 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000399 +75122885ns 1339362 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4ef PA:1c00a4ef +75122905ns 1339363 1c000e82 fff60613 addi x12, x12, -1 x12=00000398 x12:00000399 +75122924ns 1339364 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4f0 x6:1c00a4ef +75122944ns 1339365 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000398 +75123023ns 1339369 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4f0 PA:1c00a4f0 +75123043ns 1339370 1c000e82 fff60613 addi x12, x12, -1 x12=00000397 x12:00000398 +75123063ns 1339371 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4f1 x6:1c00a4f0 +75123083ns 1339372 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000397 +75123162ns 1339376 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4f1 PA:1c00a4f1 +75123182ns 1339377 1c000e82 fff60613 addi x12, x12, -1 x12=00000396 x12:00000397 +75123202ns 1339378 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4f2 x6:1c00a4f1 +75123221ns 1339379 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000396 +75123300ns 1339383 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4f2 PA:1c00a4f2 +75123320ns 1339384 1c000e82 fff60613 addi x12, x12, -1 x12=00000395 x12:00000396 +75123340ns 1339385 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4f3 x6:1c00a4f2 +75123360ns 1339386 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000395 +75123439ns 1339390 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4f3 PA:1c00a4f3 +75123459ns 1339391 1c000e82 fff60613 addi x12, x12, -1 x12=00000394 x12:00000395 +75123479ns 1339392 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4f4 x6:1c00a4f3 +75123498ns 1339393 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000394 +75123578ns 1339397 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4f4 PA:1c00a4f4 +75123597ns 1339398 1c000e82 fff60613 addi x12, x12, -1 x12=00000393 x12:00000394 +75123617ns 1339399 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4f5 x6:1c00a4f4 +75123637ns 1339400 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000393 +75123716ns 1339404 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4f5 PA:1c00a4f5 +75123736ns 1339405 1c000e82 fff60613 addi x12, x12, -1 x12=00000392 x12:00000393 +75123756ns 1339406 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4f6 x6:1c00a4f5 +75123775ns 1339407 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000392 +75123855ns 1339411 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4f6 PA:1c00a4f6 +75123874ns 1339412 1c000e82 fff60613 addi x12, x12, -1 x12=00000391 x12:00000392 +75123894ns 1339413 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4f7 x6:1c00a4f6 +75123914ns 1339414 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000391 +75123993ns 1339418 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4f7 PA:1c00a4f7 +75124013ns 1339419 1c000e82 fff60613 addi x12, x12, -1 x12=00000390 x12:00000391 +75124033ns 1339420 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4f8 x6:1c00a4f7 +75124053ns 1339421 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000390 +75124132ns 1339425 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4f8 PA:1c00a4f8 +75124152ns 1339426 1c000e82 fff60613 addi x12, x12, -1 x12=0000038f x12:00000390 +75124171ns 1339427 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4f9 x6:1c00a4f8 +75124191ns 1339428 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000038f +75124270ns 1339432 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4f9 PA:1c00a4f9 +75124290ns 1339433 1c000e82 fff60613 addi x12, x12, -1 x12=0000038e x12:0000038f +75124310ns 1339434 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4fa x6:1c00a4f9 +75124330ns 1339435 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000038e +75124409ns 1339439 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4fa PA:1c00a4fa +75124429ns 1339440 1c000e82 fff60613 addi x12, x12, -1 x12=0000038d x12:0000038e +75124448ns 1339441 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4fb x6:1c00a4fa +75124468ns 1339442 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000038d +75124547ns 1339446 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4fb PA:1c00a4fb +75124567ns 1339447 1c000e82 fff60613 addi x12, x12, -1 x12=0000038c x12:0000038d +75124587ns 1339448 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4fc x6:1c00a4fb +75124607ns 1339449 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000038c +75124686ns 1339453 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4fc PA:1c00a4fc +75124706ns 1339454 1c000e82 fff60613 addi x12, x12, -1 x12=0000038b x12:0000038c +75124726ns 1339455 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4fd x6:1c00a4fc +75124745ns 1339456 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000038b +75124824ns 1339460 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4fd PA:1c00a4fd +75124844ns 1339461 1c000e82 fff60613 addi x12, x12, -1 x12=0000038a x12:0000038b +75124864ns 1339462 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4fe x6:1c00a4fd +75124884ns 1339463 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000038a +75124963ns 1339467 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4fe PA:1c00a4fe +75124983ns 1339468 1c000e82 fff60613 addi x12, x12, -1 x12=00000389 x12:0000038a +75125003ns 1339469 1c000e84 00130313 addi x6, x6, 1 x6=1c00a4ff x6:1c00a4fe +75125022ns 1339470 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000389 +75125102ns 1339474 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a4ff PA:1c00a4ff +75125121ns 1339475 1c000e82 fff60613 addi x12, x12, -1 x12=00000388 x12:00000389 +75125141ns 1339476 1c000e84 00130313 addi x6, x6, 1 x6=1c00a500 x6:1c00a4ff +75125161ns 1339477 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000388 +75125240ns 1339481 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a500 PA:1c00a500 +75125260ns 1339482 1c000e82 fff60613 addi x12, x12, -1 x12=00000387 x12:00000388 +75125280ns 1339483 1c000e84 00130313 addi x6, x6, 1 x6=1c00a501 x6:1c00a500 +75125299ns 1339484 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000387 +75125379ns 1339488 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a501 PA:1c00a501 +75125398ns 1339489 1c000e82 fff60613 addi x12, x12, -1 x12=00000386 x12:00000387 +75125418ns 1339490 1c000e84 00130313 addi x6, x6, 1 x6=1c00a502 x6:1c00a501 +75125438ns 1339491 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000386 +75125517ns 1339495 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a502 PA:1c00a502 +75125537ns 1339496 1c000e82 fff60613 addi x12, x12, -1 x12=00000385 x12:00000386 +75125557ns 1339497 1c000e84 00130313 addi x6, x6, 1 x6=1c00a503 x6:1c00a502 +75125577ns 1339498 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000385 +75125656ns 1339502 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a503 PA:1c00a503 +75125676ns 1339503 1c000e82 fff60613 addi x12, x12, -1 x12=00000384 x12:00000385 +75125695ns 1339504 1c000e84 00130313 addi x6, x6, 1 x6=1c00a504 x6:1c00a503 +75125715ns 1339505 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000384 +75125794ns 1339509 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a504 PA:1c00a504 +75125814ns 1339510 1c000e82 fff60613 addi x12, x12, -1 x12=00000383 x12:00000384 +75125834ns 1339511 1c000e84 00130313 addi x6, x6, 1 x6=1c00a505 x6:1c00a504 +75125854ns 1339512 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000383 +75125933ns 1339516 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a505 PA:1c00a505 +75125953ns 1339517 1c000e82 fff60613 addi x12, x12, -1 x12=00000382 x12:00000383 +75125972ns 1339518 1c000e84 00130313 addi x6, x6, 1 x6=1c00a506 x6:1c00a505 +75125992ns 1339519 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000382 +75126071ns 1339523 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a506 PA:1c00a506 +75126091ns 1339524 1c000e82 fff60613 addi x12, x12, -1 x12=00000381 x12:00000382 +75126111ns 1339525 1c000e84 00130313 addi x6, x6, 1 x6=1c00a507 x6:1c00a506 +75126131ns 1339526 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000381 +75126210ns 1339530 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a507 PA:1c00a507 +75126230ns 1339531 1c000e82 fff60613 addi x12, x12, -1 x12=00000380 x12:00000381 +75126249ns 1339532 1c000e84 00130313 addi x6, x6, 1 x6=1c00a508 x6:1c00a507 +75126269ns 1339533 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000380 +75126348ns 1339537 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a508 PA:1c00a508 +75126368ns 1339538 1c000e82 fff60613 addi x12, x12, -1 x12=0000037f x12:00000380 +75126388ns 1339539 1c000e84 00130313 addi x6, x6, 1 x6=1c00a509 x6:1c00a508 +75126408ns 1339540 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000037f +75126487ns 1339544 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a509 PA:1c00a509 +75126507ns 1339545 1c000e82 fff60613 addi x12, x12, -1 x12=0000037e x12:0000037f +75126527ns 1339546 1c000e84 00130313 addi x6, x6, 1 x6=1c00a50a x6:1c00a509 +75126546ns 1339547 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000037e +75126626ns 1339551 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a50a PA:1c00a50a +75126645ns 1339552 1c000e82 fff60613 addi x12, x12, -1 x12=0000037d x12:0000037e +75126665ns 1339553 1c000e84 00130313 addi x6, x6, 1 x6=1c00a50b x6:1c00a50a +75126685ns 1339554 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000037d +75126764ns 1339558 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a50b PA:1c00a50b +75126784ns 1339559 1c000e82 fff60613 addi x12, x12, -1 x12=0000037c x12:0000037d +75126804ns 1339560 1c000e84 00130313 addi x6, x6, 1 x6=1c00a50c x6:1c00a50b +75126823ns 1339561 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000037c +75126903ns 1339565 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a50c PA:1c00a50c +75126922ns 1339566 1c000e82 fff60613 addi x12, x12, -1 x12=0000037b x12:0000037c +75126942ns 1339567 1c000e84 00130313 addi x6, x6, 1 x6=1c00a50d x6:1c00a50c +75126962ns 1339568 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000037b +75127041ns 1339572 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a50d PA:1c00a50d +75127061ns 1339573 1c000e82 fff60613 addi x12, x12, -1 x12=0000037a x12:0000037b +75127081ns 1339574 1c000e84 00130313 addi x6, x6, 1 x6=1c00a50e x6:1c00a50d +75127101ns 1339575 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000037a +75127180ns 1339579 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a50e PA:1c00a50e +75127200ns 1339580 1c000e82 fff60613 addi x12, x12, -1 x12=00000379 x12:0000037a +75127219ns 1339581 1c000e84 00130313 addi x6, x6, 1 x6=1c00a50f x6:1c00a50e +75127239ns 1339582 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000379 +75127318ns 1339586 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a50f PA:1c00a50f +75127338ns 1339587 1c000e82 fff60613 addi x12, x12, -1 x12=00000378 x12:00000379 +75127358ns 1339588 1c000e84 00130313 addi x6, x6, 1 x6=1c00a510 x6:1c00a50f +75127378ns 1339589 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000378 +75127457ns 1339593 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a510 PA:1c00a510 +75127477ns 1339594 1c000e82 fff60613 addi x12, x12, -1 x12=00000377 x12:00000378 +75127496ns 1339595 1c000e84 00130313 addi x6, x6, 1 x6=1c00a511 x6:1c00a510 +75127516ns 1339596 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000377 +75127595ns 1339600 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a511 PA:1c00a511 +75127615ns 1339601 1c000e82 fff60613 addi x12, x12, -1 x12=00000376 x12:00000377 +75127635ns 1339602 1c000e84 00130313 addi x6, x6, 1 x6=1c00a512 x6:1c00a511 +75127655ns 1339603 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000376 +75127734ns 1339607 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a512 PA:1c00a512 +75127754ns 1339608 1c000e82 fff60613 addi x12, x12, -1 x12=00000375 x12:00000376 +75127773ns 1339609 1c000e84 00130313 addi x6, x6, 1 x6=1c00a513 x6:1c00a512 +75127793ns 1339610 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000375 +75127872ns 1339614 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a513 PA:1c00a513 +75127892ns 1339615 1c000e82 fff60613 addi x12, x12, -1 x12=00000374 x12:00000375 +75127912ns 1339616 1c000e84 00130313 addi x6, x6, 1 x6=1c00a514 x6:1c00a513 +75127932ns 1339617 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000374 +75128011ns 1339621 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a514 PA:1c00a514 +75128031ns 1339622 1c000e82 fff60613 addi x12, x12, -1 x12=00000373 x12:00000374 +75128051ns 1339623 1c000e84 00130313 addi x6, x6, 1 x6=1c00a515 x6:1c00a514 +75128070ns 1339624 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000373 +75128150ns 1339628 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a515 PA:1c00a515 +75128169ns 1339629 1c000e82 fff60613 addi x12, x12, -1 x12=00000372 x12:00000373 +75128189ns 1339630 1c000e84 00130313 addi x6, x6, 1 x6=1c00a516 x6:1c00a515 +75128209ns 1339631 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000372 +75128288ns 1339635 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a516 PA:1c00a516 +75128308ns 1339636 1c000e82 fff60613 addi x12, x12, -1 x12=00000371 x12:00000372 +75128328ns 1339637 1c000e84 00130313 addi x6, x6, 1 x6=1c00a517 x6:1c00a516 +75128347ns 1339638 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000371 +75128427ns 1339642 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a517 PA:1c00a517 +75128446ns 1339643 1c000e82 fff60613 addi x12, x12, -1 x12=00000370 x12:00000371 +75128466ns 1339644 1c000e84 00130313 addi x6, x6, 1 x6=1c00a518 x6:1c00a517 +75128486ns 1339645 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000370 +75128565ns 1339649 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a518 PA:1c00a518 +75128585ns 1339650 1c000e82 fff60613 addi x12, x12, -1 x12=0000036f x12:00000370 +75128605ns 1339651 1c000e84 00130313 addi x6, x6, 1 x6=1c00a519 x6:1c00a518 +75128625ns 1339652 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000036f +75128704ns 1339656 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a519 PA:1c00a519 +75128723ns 1339657 1c000e82 fff60613 addi x12, x12, -1 x12=0000036e x12:0000036f +75128743ns 1339658 1c000e84 00130313 addi x6, x6, 1 x6=1c00a51a x6:1c00a519 +75128763ns 1339659 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000036e +75128842ns 1339663 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a51a PA:1c00a51a +75128862ns 1339664 1c000e82 fff60613 addi x12, x12, -1 x12=0000036d x12:0000036e +75128882ns 1339665 1c000e84 00130313 addi x6, x6, 1 x6=1c00a51b x6:1c00a51a +75128902ns 1339666 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000036d +75128981ns 1339670 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a51b PA:1c00a51b +75129001ns 1339671 1c000e82 fff60613 addi x12, x12, -1 x12=0000036c x12:0000036d +75129020ns 1339672 1c000e84 00130313 addi x6, x6, 1 x6=1c00a51c x6:1c00a51b +75129040ns 1339673 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000036c +75129119ns 1339677 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a51c PA:1c00a51c +75129139ns 1339678 1c000e82 fff60613 addi x12, x12, -1 x12=0000036b x12:0000036c +75129159ns 1339679 1c000e84 00130313 addi x6, x6, 1 x6=1c00a51d x6:1c00a51c +75129179ns 1339680 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000036b +75129258ns 1339684 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a51d PA:1c00a51d +75129278ns 1339685 1c000e82 fff60613 addi x12, x12, -1 x12=0000036a x12:0000036b +75129297ns 1339686 1c000e84 00130313 addi x6, x6, 1 x6=1c00a51e x6:1c00a51d +75129317ns 1339687 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000036a +75129396ns 1339691 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a51e PA:1c00a51e +75129416ns 1339692 1c000e82 fff60613 addi x12, x12, -1 x12=00000369 x12:0000036a +75129436ns 1339693 1c000e84 00130313 addi x6, x6, 1 x6=1c00a51f x6:1c00a51e +75129456ns 1339694 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000369 +75129535ns 1339698 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a51f PA:1c00a51f +75129555ns 1339699 1c000e82 fff60613 addi x12, x12, -1 x12=00000368 x12:00000369 +75129575ns 1339700 1c000e84 00130313 addi x6, x6, 1 x6=1c00a520 x6:1c00a51f +75129594ns 1339701 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000368 +75129674ns 1339705 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a520 PA:1c00a520 +75129693ns 1339706 1c000e82 fff60613 addi x12, x12, -1 x12=00000367 x12:00000368 +75129713ns 1339707 1c000e84 00130313 addi x6, x6, 1 x6=1c00a521 x6:1c00a520 +75129733ns 1339708 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000367 +75129812ns 1339712 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a521 PA:1c00a521 +75129832ns 1339713 1c000e82 fff60613 addi x12, x12, -1 x12=00000366 x12:00000367 +75129852ns 1339714 1c000e84 00130313 addi x6, x6, 1 x6=1c00a522 x6:1c00a521 +75129871ns 1339715 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000366 +75129951ns 1339719 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a522 PA:1c00a522 +75129970ns 1339720 1c000e82 fff60613 addi x12, x12, -1 x12=00000365 x12:00000366 +75129990ns 1339721 1c000e84 00130313 addi x6, x6, 1 x6=1c00a523 x6:1c00a522 +75130010ns 1339722 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000365 +75130089ns 1339726 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a523 PA:1c00a523 +75130109ns 1339727 1c000e82 fff60613 addi x12, x12, -1 x12=00000364 x12:00000365 +75130129ns 1339728 1c000e84 00130313 addi x6, x6, 1 x6=1c00a524 x6:1c00a523 +75130149ns 1339729 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000364 +75130228ns 1339733 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a524 PA:1c00a524 +75130247ns 1339734 1c000e82 fff60613 addi x12, x12, -1 x12=00000363 x12:00000364 +75130267ns 1339735 1c000e84 00130313 addi x6, x6, 1 x6=1c00a525 x6:1c00a524 +75130287ns 1339736 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000363 +75130366ns 1339740 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a525 PA:1c00a525 +75130386ns 1339741 1c000e82 fff60613 addi x12, x12, -1 x12=00000362 x12:00000363 +75130406ns 1339742 1c000e84 00130313 addi x6, x6, 1 x6=1c00a526 x6:1c00a525 +75130426ns 1339743 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000362 +75130505ns 1339747 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a526 PA:1c00a526 +75130525ns 1339748 1c000e82 fff60613 addi x12, x12, -1 x12=00000361 x12:00000362 +75130544ns 1339749 1c000e84 00130313 addi x6, x6, 1 x6=1c00a527 x6:1c00a526 +75130564ns 1339750 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000361 +75130643ns 1339754 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a527 PA:1c00a527 +75130663ns 1339755 1c000e82 fff60613 addi x12, x12, -1 x12=00000360 x12:00000361 +75130683ns 1339756 1c000e84 00130313 addi x6, x6, 1 x6=1c00a528 x6:1c00a527 +75130703ns 1339757 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000360 +75130782ns 1339761 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a528 PA:1c00a528 +75130802ns 1339762 1c000e82 fff60613 addi x12, x12, -1 x12=0000035f x12:00000360 +75130821ns 1339763 1c000e84 00130313 addi x6, x6, 1 x6=1c00a529 x6:1c00a528 +75130841ns 1339764 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000035f +75130920ns 1339768 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a529 PA:1c00a529 +75130940ns 1339769 1c000e82 fff60613 addi x12, x12, -1 x12=0000035e x12:0000035f +75130960ns 1339770 1c000e84 00130313 addi x6, x6, 1 x6=1c00a52a x6:1c00a529 +75130980ns 1339771 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000035e +75131059ns 1339775 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a52a PA:1c00a52a +75131079ns 1339776 1c000e82 fff60613 addi x12, x12, -1 x12=0000035d x12:0000035e +75131099ns 1339777 1c000e84 00130313 addi x6, x6, 1 x6=1c00a52b x6:1c00a52a +75131118ns 1339778 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000035d +75131197ns 1339782 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a52b PA:1c00a52b +75131217ns 1339783 1c000e82 fff60613 addi x12, x12, -1 x12=0000035c x12:0000035d +75131237ns 1339784 1c000e84 00130313 addi x6, x6, 1 x6=1c00a52c x6:1c00a52b +75131257ns 1339785 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000035c +75131336ns 1339789 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a52c PA:1c00a52c +75131356ns 1339790 1c000e82 fff60613 addi x12, x12, -1 x12=0000035b x12:0000035c +75131376ns 1339791 1c000e84 00130313 addi x6, x6, 1 x6=1c00a52d x6:1c00a52c +75131395ns 1339792 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000035b +75131475ns 1339796 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a52d PA:1c00a52d +75131494ns 1339797 1c000e82 fff60613 addi x12, x12, -1 x12=0000035a x12:0000035b +75131514ns 1339798 1c000e84 00130313 addi x6, x6, 1 x6=1c00a52e x6:1c00a52d +75131534ns 1339799 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000035a +75131613ns 1339803 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a52e PA:1c00a52e +75131633ns 1339804 1c000e82 fff60613 addi x12, x12, -1 x12=00000359 x12:0000035a +75131653ns 1339805 1c000e84 00130313 addi x6, x6, 1 x6=1c00a52f x6:1c00a52e +75131673ns 1339806 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000359 +75131752ns 1339810 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a52f PA:1c00a52f +75131771ns 1339811 1c000e82 fff60613 addi x12, x12, -1 x12=00000358 x12:00000359 +75131791ns 1339812 1c000e84 00130313 addi x6, x6, 1 x6=1c00a530 x6:1c00a52f +75131811ns 1339813 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000358 +75131890ns 1339817 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a530 PA:1c00a530 +75131910ns 1339818 1c000e82 fff60613 addi x12, x12, -1 x12=00000357 x12:00000358 +75131930ns 1339819 1c000e84 00130313 addi x6, x6, 1 x6=1c00a531 x6:1c00a530 +75131950ns 1339820 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000357 +75132029ns 1339824 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a531 PA:1c00a531 +75132049ns 1339825 1c000e82 fff60613 addi x12, x12, -1 x12=00000356 x12:00000357 +75132068ns 1339826 1c000e84 00130313 addi x6, x6, 1 x6=1c00a532 x6:1c00a531 +75132088ns 1339827 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000356 +75132167ns 1339831 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a532 PA:1c00a532 +75132187ns 1339832 1c000e82 fff60613 addi x12, x12, -1 x12=00000355 x12:00000356 +75132207ns 1339833 1c000e84 00130313 addi x6, x6, 1 x6=1c00a533 x6:1c00a532 +75132227ns 1339834 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000355 +75132306ns 1339838 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a533 PA:1c00a533 +75132326ns 1339839 1c000e82 fff60613 addi x12, x12, -1 x12=00000354 x12:00000355 +75132345ns 1339840 1c000e84 00130313 addi x6, x6, 1 x6=1c00a534 x6:1c00a533 +75132365ns 1339841 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000354 +75132444ns 1339845 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a534 PA:1c00a534 +75132464ns 1339846 1c000e82 fff60613 addi x12, x12, -1 x12=00000353 x12:00000354 +75132484ns 1339847 1c000e84 00130313 addi x6, x6, 1 x6=1c00a535 x6:1c00a534 +75132504ns 1339848 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000353 +75132583ns 1339852 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a535 PA:1c00a535 +75132603ns 1339853 1c000e82 fff60613 addi x12, x12, -1 x12=00000352 x12:00000353 +75132623ns 1339854 1c000e84 00130313 addi x6, x6, 1 x6=1c00a536 x6:1c00a535 +75132642ns 1339855 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000352 +75132721ns 1339859 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a536 PA:1c00a536 +75132741ns 1339860 1c000e82 fff60613 addi x12, x12, -1 x12=00000351 x12:00000352 +75132761ns 1339861 1c000e84 00130313 addi x6, x6, 1 x6=1c00a537 x6:1c00a536 +75132781ns 1339862 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000351 +75132860ns 1339866 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a537 PA:1c00a537 +75132880ns 1339867 1c000e82 fff60613 addi x12, x12, -1 x12=00000350 x12:00000351 +75132900ns 1339868 1c000e84 00130313 addi x6, x6, 1 x6=1c00a538 x6:1c00a537 +75132919ns 1339869 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000350 +75132999ns 1339873 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a538 PA:1c00a538 +75133018ns 1339874 1c000e82 fff60613 addi x12, x12, -1 x12=0000034f x12:00000350 +75133038ns 1339875 1c000e84 00130313 addi x6, x6, 1 x6=1c00a539 x6:1c00a538 +75133058ns 1339876 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000034f +75133137ns 1339880 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a539 PA:1c00a539 +75133157ns 1339881 1c000e82 fff60613 addi x12, x12, -1 x12=0000034e x12:0000034f +75133177ns 1339882 1c000e84 00130313 addi x6, x6, 1 x6=1c00a53a x6:1c00a539 +75133196ns 1339883 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000034e +75133276ns 1339887 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a53a PA:1c00a53a +75133295ns 1339888 1c000e82 fff60613 addi x12, x12, -1 x12=0000034d x12:0000034e +75133315ns 1339889 1c000e84 00130313 addi x6, x6, 1 x6=1c00a53b x6:1c00a53a +75133335ns 1339890 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000034d +75133414ns 1339894 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a53b PA:1c00a53b +75133434ns 1339895 1c000e82 fff60613 addi x12, x12, -1 x12=0000034c x12:0000034d +75133454ns 1339896 1c000e84 00130313 addi x6, x6, 1 x6=1c00a53c x6:1c00a53b +75133474ns 1339897 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000034c +75133553ns 1339901 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a53c PA:1c00a53c +75133573ns 1339902 1c000e82 fff60613 addi x12, x12, -1 x12=0000034b x12:0000034c +75133592ns 1339903 1c000e84 00130313 addi x6, x6, 1 x6=1c00a53d x6:1c00a53c +75133612ns 1339904 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000034b +75133691ns 1339908 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a53d PA:1c00a53d +75133711ns 1339909 1c000e82 fff60613 addi x12, x12, -1 x12=0000034a x12:0000034b +75133731ns 1339910 1c000e84 00130313 addi x6, x6, 1 x6=1c00a53e x6:1c00a53d +75133751ns 1339911 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000034a +75133830ns 1339915 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a53e PA:1c00a53e +75133850ns 1339916 1c000e82 fff60613 addi x12, x12, -1 x12=00000349 x12:0000034a +75133869ns 1339917 1c000e84 00130313 addi x6, x6, 1 x6=1c00a53f x6:1c00a53e +75133889ns 1339918 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000349 +75133968ns 1339922 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a53f PA:1c00a53f +75133988ns 1339923 1c000e82 fff60613 addi x12, x12, -1 x12=00000348 x12:00000349 +75134008ns 1339924 1c000e84 00130313 addi x6, x6, 1 x6=1c00a540 x6:1c00a53f +75134028ns 1339925 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000348 +75134107ns 1339929 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a540 PA:1c00a540 +75134127ns 1339930 1c000e82 fff60613 addi x12, x12, -1 x12=00000347 x12:00000348 +75134147ns 1339931 1c000e84 00130313 addi x6, x6, 1 x6=1c00a541 x6:1c00a540 +75134166ns 1339932 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000347 +75134245ns 1339936 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a541 PA:1c00a541 +75134265ns 1339937 1c000e82 fff60613 addi x12, x12, -1 x12=00000346 x12:00000347 +75134285ns 1339938 1c000e84 00130313 addi x6, x6, 1 x6=1c00a542 x6:1c00a541 +75134305ns 1339939 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000346 +75134384ns 1339943 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a542 PA:1c00a542 +75134404ns 1339944 1c000e82 fff60613 addi x12, x12, -1 x12=00000345 x12:00000346 +75134424ns 1339945 1c000e84 00130313 addi x6, x6, 1 x6=1c00a543 x6:1c00a542 +75134443ns 1339946 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000345 +75134523ns 1339950 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a543 PA:1c00a543 +75134542ns 1339951 1c000e82 fff60613 addi x12, x12, -1 x12=00000344 x12:00000345 +75134562ns 1339952 1c000e84 00130313 addi x6, x6, 1 x6=1c00a544 x6:1c00a543 +75134582ns 1339953 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000344 +75134661ns 1339957 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a544 PA:1c00a544 +75134681ns 1339958 1c000e82 fff60613 addi x12, x12, -1 x12=00000343 x12:00000344 +75134701ns 1339959 1c000e84 00130313 addi x6, x6, 1 x6=1c00a545 x6:1c00a544 +75134720ns 1339960 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000343 +75134800ns 1339964 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a545 PA:1c00a545 +75134819ns 1339965 1c000e82 fff60613 addi x12, x12, -1 x12=00000342 x12:00000343 +75134839ns 1339966 1c000e84 00130313 addi x6, x6, 1 x6=1c00a546 x6:1c00a545 +75134859ns 1339967 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000342 +75134938ns 1339971 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a546 PA:1c00a546 +75134958ns 1339972 1c000e82 fff60613 addi x12, x12, -1 x12=00000341 x12:00000342 +75134978ns 1339973 1c000e84 00130313 addi x6, x6, 1 x6=1c00a547 x6:1c00a546 +75134998ns 1339974 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000341 +75135077ns 1339978 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a547 PA:1c00a547 +75135097ns 1339979 1c000e82 fff60613 addi x12, x12, -1 x12=00000340 x12:00000341 +75135116ns 1339980 1c000e84 00130313 addi x6, x6, 1 x6=1c00a548 x6:1c00a547 +75135136ns 1339981 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000340 +75135215ns 1339985 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a548 PA:1c00a548 +75135235ns 1339986 1c000e82 fff60613 addi x12, x12, -1 x12=0000033f x12:00000340 +75135255ns 1339987 1c000e84 00130313 addi x6, x6, 1 x6=1c00a549 x6:1c00a548 +75135275ns 1339988 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000033f +75135354ns 1339992 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a549 PA:1c00a549 +75135374ns 1339993 1c000e82 fff60613 addi x12, x12, -1 x12=0000033e x12:0000033f +75135393ns 1339994 1c000e84 00130313 addi x6, x6, 1 x6=1c00a54a x6:1c00a549 +75135413ns 1339995 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000033e +75135492ns 1339999 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a54a PA:1c00a54a +75135512ns 1340000 1c000e82 fff60613 addi x12, x12, -1 x12=0000033d x12:0000033e +75135532ns 1340001 1c000e84 00130313 addi x6, x6, 1 x6=1c00a54b x6:1c00a54a +75135552ns 1340002 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000033d +75135631ns 1340006 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a54b PA:1c00a54b +75135651ns 1340007 1c000e82 fff60613 addi x12, x12, -1 x12=0000033c x12:0000033d +75135670ns 1340008 1c000e84 00130313 addi x6, x6, 1 x6=1c00a54c x6:1c00a54b +75135690ns 1340009 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000033c +75135769ns 1340013 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a54c PA:1c00a54c +75135789ns 1340014 1c000e82 fff60613 addi x12, x12, -1 x12=0000033b x12:0000033c +75135809ns 1340015 1c000e84 00130313 addi x6, x6, 1 x6=1c00a54d x6:1c00a54c +75135829ns 1340016 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000033b +75135908ns 1340020 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a54d PA:1c00a54d +75135928ns 1340021 1c000e82 fff60613 addi x12, x12, -1 x12=0000033a x12:0000033b +75135948ns 1340022 1c000e84 00130313 addi x6, x6, 1 x6=1c00a54e x6:1c00a54d +75135967ns 1340023 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000033a +75136047ns 1340027 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a54e PA:1c00a54e +75136066ns 1340028 1c000e82 fff60613 addi x12, x12, -1 x12=00000339 x12:0000033a +75136086ns 1340029 1c000e84 00130313 addi x6, x6, 1 x6=1c00a54f x6:1c00a54e +75136106ns 1340030 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000339 +75136185ns 1340034 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a54f PA:1c00a54f +75136205ns 1340035 1c000e82 fff60613 addi x12, x12, -1 x12=00000338 x12:00000339 +75136225ns 1340036 1c000e84 00130313 addi x6, x6, 1 x6=1c00a550 x6:1c00a54f +75136244ns 1340037 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000338 +75136324ns 1340041 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a550 PA:1c00a550 +75136343ns 1340042 1c000e82 fff60613 addi x12, x12, -1 x12=00000337 x12:00000338 +75136363ns 1340043 1c000e84 00130313 addi x6, x6, 1 x6=1c00a551 x6:1c00a550 +75136383ns 1340044 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000337 +75136462ns 1340048 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a551 PA:1c00a551 +75136482ns 1340049 1c000e82 fff60613 addi x12, x12, -1 x12=00000336 x12:00000337 +75136502ns 1340050 1c000e84 00130313 addi x6, x6, 1 x6=1c00a552 x6:1c00a551 +75136522ns 1340051 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000336 +75136601ns 1340055 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a552 PA:1c00a552 +75136621ns 1340056 1c000e82 fff60613 addi x12, x12, -1 x12=00000335 x12:00000336 +75136640ns 1340057 1c000e84 00130313 addi x6, x6, 1 x6=1c00a553 x6:1c00a552 +75136660ns 1340058 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000335 +75136739ns 1340062 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a553 PA:1c00a553 +75136759ns 1340063 1c000e82 fff60613 addi x12, x12, -1 x12=00000334 x12:00000335 +75136779ns 1340064 1c000e84 00130313 addi x6, x6, 1 x6=1c00a554 x6:1c00a553 +75136799ns 1340065 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000334 +75136878ns 1340069 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a554 PA:1c00a554 +75136898ns 1340070 1c000e82 fff60613 addi x12, x12, -1 x12=00000333 x12:00000334 +75136917ns 1340071 1c000e84 00130313 addi x6, x6, 1 x6=1c00a555 x6:1c00a554 +75136937ns 1340072 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000333 +75137016ns 1340076 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a555 PA:1c00a555 +75137036ns 1340077 1c000e82 fff60613 addi x12, x12, -1 x12=00000332 x12:00000333 +75137056ns 1340078 1c000e84 00130313 addi x6, x6, 1 x6=1c00a556 x6:1c00a555 +75137076ns 1340079 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000332 +75137155ns 1340083 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a556 PA:1c00a556 +75137175ns 1340084 1c000e82 fff60613 addi x12, x12, -1 x12=00000331 x12:00000332 +75137194ns 1340085 1c000e84 00130313 addi x6, x6, 1 x6=1c00a557 x6:1c00a556 +75137214ns 1340086 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000331 +75137293ns 1340090 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a557 PA:1c00a557 +75137313ns 1340091 1c000e82 fff60613 addi x12, x12, -1 x12=00000330 x12:00000331 +75137333ns 1340092 1c000e84 00130313 addi x6, x6, 1 x6=1c00a558 x6:1c00a557 +75137353ns 1340093 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000330 +75137432ns 1340097 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a558 PA:1c00a558 +75137452ns 1340098 1c000e82 fff60613 addi x12, x12, -1 x12=0000032f x12:00000330 +75137472ns 1340099 1c000e84 00130313 addi x6, x6, 1 x6=1c00a559 x6:1c00a558 +75137491ns 1340100 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000032f +75137571ns 1340104 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a559 PA:1c00a559 +75137590ns 1340105 1c000e82 fff60613 addi x12, x12, -1 x12=0000032e x12:0000032f +75137610ns 1340106 1c000e84 00130313 addi x6, x6, 1 x6=1c00a55a x6:1c00a559 +75137630ns 1340107 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000032e +75137709ns 1340111 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a55a PA:1c00a55a +75137729ns 1340112 1c000e82 fff60613 addi x12, x12, -1 x12=0000032d x12:0000032e +75137749ns 1340113 1c000e84 00130313 addi x6, x6, 1 x6=1c00a55b x6:1c00a55a +75137768ns 1340114 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000032d +75137848ns 1340118 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a55b PA:1c00a55b +75137867ns 1340119 1c000e82 fff60613 addi x12, x12, -1 x12=0000032c x12:0000032d +75137887ns 1340120 1c000e84 00130313 addi x6, x6, 1 x6=1c00a55c x6:1c00a55b +75137907ns 1340121 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000032c +75137986ns 1340125 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a55c PA:1c00a55c +75138006ns 1340126 1c000e82 fff60613 addi x12, x12, -1 x12=0000032b x12:0000032c +75138026ns 1340127 1c000e84 00130313 addi x6, x6, 1 x6=1c00a55d x6:1c00a55c +75138046ns 1340128 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000032b +75138125ns 1340132 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a55d PA:1c00a55d +75138144ns 1340133 1c000e82 fff60613 addi x12, x12, -1 x12=0000032a x12:0000032b +75138164ns 1340134 1c000e84 00130313 addi x6, x6, 1 x6=1c00a55e x6:1c00a55d +75138184ns 1340135 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000032a +75138263ns 1340139 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a55e PA:1c00a55e +75138283ns 1340140 1c000e82 fff60613 addi x12, x12, -1 x12=00000329 x12:0000032a +75138303ns 1340141 1c000e84 00130313 addi x6, x6, 1 x6=1c00a55f x6:1c00a55e +75138323ns 1340142 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000329 +75138402ns 1340146 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a55f PA:1c00a55f +75138422ns 1340147 1c000e82 fff60613 addi x12, x12, -1 x12=00000328 x12:00000329 +75138441ns 1340148 1c000e84 00130313 addi x6, x6, 1 x6=1c00a560 x6:1c00a55f +75138461ns 1340149 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000328 +75138540ns 1340153 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a560 PA:1c00a560 +75138560ns 1340154 1c000e82 fff60613 addi x12, x12, -1 x12=00000327 x12:00000328 +75138580ns 1340155 1c000e84 00130313 addi x6, x6, 1 x6=1c00a561 x6:1c00a560 +75138600ns 1340156 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000327 +75138679ns 1340160 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a561 PA:1c00a561 +75138699ns 1340161 1c000e82 fff60613 addi x12, x12, -1 x12=00000326 x12:00000327 +75138718ns 1340162 1c000e84 00130313 addi x6, x6, 1 x6=1c00a562 x6:1c00a561 +75138738ns 1340163 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000326 +75138817ns 1340167 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a562 PA:1c00a562 +75138837ns 1340168 1c000e82 fff60613 addi x12, x12, -1 x12=00000325 x12:00000326 +75138857ns 1340169 1c000e84 00130313 addi x6, x6, 1 x6=1c00a563 x6:1c00a562 +75138877ns 1340170 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000325 +75138956ns 1340174 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a563 PA:1c00a563 +75138976ns 1340175 1c000e82 fff60613 addi x12, x12, -1 x12=00000324 x12:00000325 +75138996ns 1340176 1c000e84 00130313 addi x6, x6, 1 x6=1c00a564 x6:1c00a563 +75139015ns 1340177 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000324 +75139095ns 1340181 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a564 PA:1c00a564 +75139114ns 1340182 1c000e82 fff60613 addi x12, x12, -1 x12=00000323 x12:00000324 +75139134ns 1340183 1c000e84 00130313 addi x6, x6, 1 x6=1c00a565 x6:1c00a564 +75139154ns 1340184 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000323 +75139233ns 1340188 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a565 PA:1c00a565 +75139253ns 1340189 1c000e82 fff60613 addi x12, x12, -1 x12=00000322 x12:00000323 +75139273ns 1340190 1c000e84 00130313 addi x6, x6, 1 x6=1c00a566 x6:1c00a565 +75139292ns 1340191 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000322 +75139372ns 1340195 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a566 PA:1c00a566 +75139391ns 1340196 1c000e82 fff60613 addi x12, x12, -1 x12=00000321 x12:00000322 +75139411ns 1340197 1c000e84 00130313 addi x6, x6, 1 x6=1c00a567 x6:1c00a566 +75139431ns 1340198 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000321 +75139510ns 1340202 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a567 PA:1c00a567 +75139530ns 1340203 1c000e82 fff60613 addi x12, x12, -1 x12=00000320 x12:00000321 +75139550ns 1340204 1c000e84 00130313 addi x6, x6, 1 x6=1c00a568 x6:1c00a567 +75139570ns 1340205 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000320 +75139649ns 1340209 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a568 PA:1c00a568 +75139668ns 1340210 1c000e82 fff60613 addi x12, x12, -1 x12=0000031f x12:00000320 +75139688ns 1340211 1c000e84 00130313 addi x6, x6, 1 x6=1c00a569 x6:1c00a568 +75139708ns 1340212 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000031f +75139787ns 1340216 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a569 PA:1c00a569 +75139807ns 1340217 1c000e82 fff60613 addi x12, x12, -1 x12=0000031e x12:0000031f +75139827ns 1340218 1c000e84 00130313 addi x6, x6, 1 x6=1c00a56a x6:1c00a569 +75139847ns 1340219 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000031e +75139926ns 1340223 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a56a PA:1c00a56a +75139946ns 1340224 1c000e82 fff60613 addi x12, x12, -1 x12=0000031d x12:0000031e +75139965ns 1340225 1c000e84 00130313 addi x6, x6, 1 x6=1c00a56b x6:1c00a56a +75139985ns 1340226 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000031d +75140064ns 1340230 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a56b PA:1c00a56b +75140084ns 1340231 1c000e82 fff60613 addi x12, x12, -1 x12=0000031c x12:0000031d +75140104ns 1340232 1c000e84 00130313 addi x6, x6, 1 x6=1c00a56c x6:1c00a56b +75140124ns 1340233 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000031c +75140203ns 1340237 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a56c PA:1c00a56c +75140223ns 1340238 1c000e82 fff60613 addi x12, x12, -1 x12=0000031b x12:0000031c +75140242ns 1340239 1c000e84 00130313 addi x6, x6, 1 x6=1c00a56d x6:1c00a56c +75140262ns 1340240 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000031b +75140341ns 1340244 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a56d PA:1c00a56d +75140361ns 1340245 1c000e82 fff60613 addi x12, x12, -1 x12=0000031a x12:0000031b +75140381ns 1340246 1c000e84 00130313 addi x6, x6, 1 x6=1c00a56e x6:1c00a56d +75140401ns 1340247 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000031a +75140480ns 1340251 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a56e PA:1c00a56e +75140500ns 1340252 1c000e82 fff60613 addi x12, x12, -1 x12=00000319 x12:0000031a +75140520ns 1340253 1c000e84 00130313 addi x6, x6, 1 x6=1c00a56f x6:1c00a56e +75140539ns 1340254 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000319 +75140618ns 1340258 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a56f PA:1c00a56f +75140638ns 1340259 1c000e82 fff60613 addi x12, x12, -1 x12=00000318 x12:00000319 +75140658ns 1340260 1c000e84 00130313 addi x6, x6, 1 x6=1c00a570 x6:1c00a56f +75140678ns 1340261 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000318 +75140757ns 1340265 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a570 PA:1c00a570 +75140777ns 1340266 1c000e82 fff60613 addi x12, x12, -1 x12=00000317 x12:00000318 +75140797ns 1340267 1c000e84 00130313 addi x6, x6, 1 x6=1c00a571 x6:1c00a570 +75140816ns 1340268 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000317 +75140896ns 1340272 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a571 PA:1c00a571 +75140915ns 1340273 1c000e82 fff60613 addi x12, x12, -1 x12=00000316 x12:00000317 +75140935ns 1340274 1c000e84 00130313 addi x6, x6, 1 x6=1c00a572 x6:1c00a571 +75140955ns 1340275 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000316 +75141034ns 1340279 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a572 PA:1c00a572 +75141054ns 1340280 1c000e82 fff60613 addi x12, x12, -1 x12=00000315 x12:00000316 +75141074ns 1340281 1c000e84 00130313 addi x6, x6, 1 x6=1c00a573 x6:1c00a572 +75141093ns 1340282 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000315 +75141173ns 1340286 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a573 PA:1c00a573 +75141192ns 1340287 1c000e82 fff60613 addi x12, x12, -1 x12=00000314 x12:00000315 +75141212ns 1340288 1c000e84 00130313 addi x6, x6, 1 x6=1c00a574 x6:1c00a573 +75141232ns 1340289 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000314 +75141311ns 1340293 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a574 PA:1c00a574 +75141331ns 1340294 1c000e82 fff60613 addi x12, x12, -1 x12=00000313 x12:00000314 +75141351ns 1340295 1c000e84 00130313 addi x6, x6, 1 x6=1c00a575 x6:1c00a574 +75141371ns 1340296 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000313 +75141450ns 1340300 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a575 PA:1c00a575 +75141470ns 1340301 1c000e82 fff60613 addi x12, x12, -1 x12=00000312 x12:00000313 +75141489ns 1340302 1c000e84 00130313 addi x6, x6, 1 x6=1c00a576 x6:1c00a575 +75141509ns 1340303 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000312 +75141588ns 1340307 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a576 PA:1c00a576 +75141608ns 1340308 1c000e82 fff60613 addi x12, x12, -1 x12=00000311 x12:00000312 +75141628ns 1340309 1c000e84 00130313 addi x6, x6, 1 x6=1c00a577 x6:1c00a576 +75141648ns 1340310 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000311 +75141727ns 1340314 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a577 PA:1c00a577 +75141747ns 1340315 1c000e82 fff60613 addi x12, x12, -1 x12=00000310 x12:00000311 +75141766ns 1340316 1c000e84 00130313 addi x6, x6, 1 x6=1c00a578 x6:1c00a577 +75141786ns 1340317 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000310 +75141865ns 1340321 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a578 PA:1c00a578 +75141885ns 1340322 1c000e82 fff60613 addi x12, x12, -1 x12=0000030f x12:00000310 +75141905ns 1340323 1c000e84 00130313 addi x6, x6, 1 x6=1c00a579 x6:1c00a578 +75141925ns 1340324 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000030f +75142004ns 1340328 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a579 PA:1c00a579 +75142024ns 1340329 1c000e82 fff60613 addi x12, x12, -1 x12=0000030e x12:0000030f +75142044ns 1340330 1c000e84 00130313 addi x6, x6, 1 x6=1c00a57a x6:1c00a579 +75142063ns 1340331 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000030e +75142142ns 1340335 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a57a PA:1c00a57a +75142162ns 1340336 1c000e82 fff60613 addi x12, x12, -1 x12=0000030d x12:0000030e +75142182ns 1340337 1c000e84 00130313 addi x6, x6, 1 x6=1c00a57b x6:1c00a57a +75142202ns 1340338 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000030d +75142281ns 1340342 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a57b PA:1c00a57b +75142301ns 1340343 1c000e82 fff60613 addi x12, x12, -1 x12=0000030c x12:0000030d +75142321ns 1340344 1c000e84 00130313 addi x6, x6, 1 x6=1c00a57c x6:1c00a57b +75142340ns 1340345 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000030c +75142420ns 1340349 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a57c PA:1c00a57c +75142439ns 1340350 1c000e82 fff60613 addi x12, x12, -1 x12=0000030b x12:0000030c +75142459ns 1340351 1c000e84 00130313 addi x6, x6, 1 x6=1c00a57d x6:1c00a57c +75142479ns 1340352 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000030b +75142558ns 1340356 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a57d PA:1c00a57d +75142578ns 1340357 1c000e82 fff60613 addi x12, x12, -1 x12=0000030a x12:0000030b +75142598ns 1340358 1c000e84 00130313 addi x6, x6, 1 x6=1c00a57e x6:1c00a57d +75142617ns 1340359 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000030a +75142697ns 1340363 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a57e PA:1c00a57e +75142716ns 1340364 1c000e82 fff60613 addi x12, x12, -1 x12=00000309 x12:0000030a +75142736ns 1340365 1c000e84 00130313 addi x6, x6, 1 x6=1c00a57f x6:1c00a57e +75142756ns 1340366 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000309 +75142835ns 1340370 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a57f PA:1c00a57f +75142855ns 1340371 1c000e82 fff60613 addi x12, x12, -1 x12=00000308 x12:00000309 +75142875ns 1340372 1c000e84 00130313 addi x6, x6, 1 x6=1c00a580 x6:1c00a57f +75142895ns 1340373 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000308 +75142974ns 1340377 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a580 PA:1c00a580 +75142994ns 1340378 1c000e82 fff60613 addi x12, x12, -1 x12=00000307 x12:00000308 +75143013ns 1340379 1c000e84 00130313 addi x6, x6, 1 x6=1c00a581 x6:1c00a580 +75143033ns 1340380 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000307 +75143112ns 1340384 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a581 PA:1c00a581 +75143132ns 1340385 1c000e82 fff60613 addi x12, x12, -1 x12=00000306 x12:00000307 +75143152ns 1340386 1c000e84 00130313 addi x6, x6, 1 x6=1c00a582 x6:1c00a581 +75143172ns 1340387 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000306 +75143251ns 1340391 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a582 PA:1c00a582 +75143271ns 1340392 1c000e82 fff60613 addi x12, x12, -1 x12=00000305 x12:00000306 +75143290ns 1340393 1c000e84 00130313 addi x6, x6, 1 x6=1c00a583 x6:1c00a582 +75143310ns 1340394 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000305 +75143389ns 1340398 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a583 PA:1c00a583 +75143409ns 1340399 1c000e82 fff60613 addi x12, x12, -1 x12=00000304 x12:00000305 +75143429ns 1340400 1c000e84 00130313 addi x6, x6, 1 x6=1c00a584 x6:1c00a583 +75143449ns 1340401 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000304 +75143528ns 1340405 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a584 PA:1c00a584 +75143548ns 1340406 1c000e82 fff60613 addi x12, x12, -1 x12=00000303 x12:00000304 +75143567ns 1340407 1c000e84 00130313 addi x6, x6, 1 x6=1c00a585 x6:1c00a584 +75143587ns 1340408 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000303 +75143666ns 1340412 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a585 PA:1c00a585 +75143686ns 1340413 1c000e82 fff60613 addi x12, x12, -1 x12=00000302 x12:00000303 +75143706ns 1340414 1c000e84 00130313 addi x6, x6, 1 x6=1c00a586 x6:1c00a585 +75143726ns 1340415 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000302 +75143805ns 1340419 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a586 PA:1c00a586 +75143825ns 1340420 1c000e82 fff60613 addi x12, x12, -1 x12=00000301 x12:00000302 +75143845ns 1340421 1c000e84 00130313 addi x6, x6, 1 x6=1c00a587 x6:1c00a586 +75143864ns 1340422 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000301 +75143944ns 1340426 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a587 PA:1c00a587 +75143963ns 1340427 1c000e82 fff60613 addi x12, x12, -1 x12=00000300 x12:00000301 +75143983ns 1340428 1c000e84 00130313 addi x6, x6, 1 x6=1c00a588 x6:1c00a587 +75144003ns 1340429 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000300 +75144082ns 1340433 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a588 PA:1c00a588 +75144102ns 1340434 1c000e82 fff60613 addi x12, x12, -1 x12=000002ff x12:00000300 +75144122ns 1340435 1c000e84 00130313 addi x6, x6, 1 x6=1c00a589 x6:1c00a588 +75144141ns 1340436 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ff +75144221ns 1340440 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a589 PA:1c00a589 +75144240ns 1340441 1c000e82 fff60613 addi x12, x12, -1 x12=000002fe x12:000002ff +75144260ns 1340442 1c000e84 00130313 addi x6, x6, 1 x6=1c00a58a x6:1c00a589 +75144280ns 1340443 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002fe +75144359ns 1340447 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a58a PA:1c00a58a +75144379ns 1340448 1c000e82 fff60613 addi x12, x12, -1 x12=000002fd x12:000002fe +75144399ns 1340449 1c000e84 00130313 addi x6, x6, 1 x6=1c00a58b x6:1c00a58a +75144419ns 1340450 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002fd +75144498ns 1340454 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a58b PA:1c00a58b +75144518ns 1340455 1c000e82 fff60613 addi x12, x12, -1 x12=000002fc x12:000002fd +75144537ns 1340456 1c000e84 00130313 addi x6, x6, 1 x6=1c00a58c x6:1c00a58b +75144557ns 1340457 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002fc +75144636ns 1340461 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a58c PA:1c00a58c +75144656ns 1340462 1c000e82 fff60613 addi x12, x12, -1 x12=000002fb x12:000002fc +75144676ns 1340463 1c000e84 00130313 addi x6, x6, 1 x6=1c00a58d x6:1c00a58c +75144696ns 1340464 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002fb +75144775ns 1340468 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a58d PA:1c00a58d +75144795ns 1340469 1c000e82 fff60613 addi x12, x12, -1 x12=000002fa x12:000002fb +75144814ns 1340470 1c000e84 00130313 addi x6, x6, 1 x6=1c00a58e x6:1c00a58d +75144834ns 1340471 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002fa +75144913ns 1340475 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a58e PA:1c00a58e +75144933ns 1340476 1c000e82 fff60613 addi x12, x12, -1 x12=000002f9 x12:000002fa +75144953ns 1340477 1c000e84 00130313 addi x6, x6, 1 x6=1c00a58f x6:1c00a58e +75144973ns 1340478 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002f9 +75145052ns 1340482 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a58f PA:1c00a58f +75145072ns 1340483 1c000e82 fff60613 addi x12, x12, -1 x12=000002f8 x12:000002f9 +75145091ns 1340484 1c000e84 00130313 addi x6, x6, 1 x6=1c00a590 x6:1c00a58f +75145111ns 1340485 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002f8 +75145190ns 1340489 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a590 PA:1c00a590 +75145210ns 1340490 1c000e82 fff60613 addi x12, x12, -1 x12=000002f7 x12:000002f8 +75145230ns 1340491 1c000e84 00130313 addi x6, x6, 1 x6=1c00a591 x6:1c00a590 +75145250ns 1340492 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002f7 +75145329ns 1340496 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a591 PA:1c00a591 +75145349ns 1340497 1c000e82 fff60613 addi x12, x12, -1 x12=000002f6 x12:000002f7 +75145369ns 1340498 1c000e84 00130313 addi x6, x6, 1 x6=1c00a592 x6:1c00a591 +75145388ns 1340499 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002f6 +75145468ns 1340503 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a592 PA:1c00a592 +75145487ns 1340504 1c000e82 fff60613 addi x12, x12, -1 x12=000002f5 x12:000002f6 +75145507ns 1340505 1c000e84 00130313 addi x6, x6, 1 x6=1c00a593 x6:1c00a592 +75145527ns 1340506 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002f5 +75145606ns 1340510 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a593 PA:1c00a593 +75145626ns 1340511 1c000e82 fff60613 addi x12, x12, -1 x12=000002f4 x12:000002f5 +75145646ns 1340512 1c000e84 00130313 addi x6, x6, 1 x6=1c00a594 x6:1c00a593 +75145665ns 1340513 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002f4 +75145745ns 1340517 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a594 PA:1c00a594 +75145764ns 1340518 1c000e82 fff60613 addi x12, x12, -1 x12=000002f3 x12:000002f4 +75145784ns 1340519 1c000e84 00130313 addi x6, x6, 1 x6=1c00a595 x6:1c00a594 +75145804ns 1340520 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002f3 +75145883ns 1340524 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a595 PA:1c00a595 +75145903ns 1340525 1c000e82 fff60613 addi x12, x12, -1 x12=000002f2 x12:000002f3 +75145923ns 1340526 1c000e84 00130313 addi x6, x6, 1 x6=1c00a596 x6:1c00a595 +75145943ns 1340527 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002f2 +75146022ns 1340531 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a596 PA:1c00a596 +75146041ns 1340532 1c000e82 fff60613 addi x12, x12, -1 x12=000002f1 x12:000002f2 +75146061ns 1340533 1c000e84 00130313 addi x6, x6, 1 x6=1c00a597 x6:1c00a596 +75146081ns 1340534 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002f1 +75146160ns 1340538 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a597 PA:1c00a597 +75146180ns 1340539 1c000e82 fff60613 addi x12, x12, -1 x12=000002f0 x12:000002f1 +75146200ns 1340540 1c000e84 00130313 addi x6, x6, 1 x6=1c00a598 x6:1c00a597 +75146220ns 1340541 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002f0 +75146299ns 1340545 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a598 PA:1c00a598 +75146319ns 1340546 1c000e82 fff60613 addi x12, x12, -1 x12=000002ef x12:000002f0 +75146338ns 1340547 1c000e84 00130313 addi x6, x6, 1 x6=1c00a599 x6:1c00a598 +75146358ns 1340548 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ef +75146437ns 1340552 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a599 PA:1c00a599 +75146457ns 1340553 1c000e82 fff60613 addi x12, x12, -1 x12=000002ee x12:000002ef +75146477ns 1340554 1c000e84 00130313 addi x6, x6, 1 x6=1c00a59a x6:1c00a599 +75146497ns 1340555 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ee +75146576ns 1340559 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a59a PA:1c00a59a +75146596ns 1340560 1c000e82 fff60613 addi x12, x12, -1 x12=000002ed x12:000002ee +75146615ns 1340561 1c000e84 00130313 addi x6, x6, 1 x6=1c00a59b x6:1c00a59a +75146635ns 1340562 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ed +75146714ns 1340566 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a59b PA:1c00a59b +75146734ns 1340567 1c000e82 fff60613 addi x12, x12, -1 x12=000002ec x12:000002ed +75146754ns 1340568 1c000e84 00130313 addi x6, x6, 1 x6=1c00a59c x6:1c00a59b +75146774ns 1340569 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ec +75146853ns 1340573 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a59c PA:1c00a59c +75146873ns 1340574 1c000e82 fff60613 addi x12, x12, -1 x12=000002eb x12:000002ec +75146893ns 1340575 1c000e84 00130313 addi x6, x6, 1 x6=1c00a59d x6:1c00a59c +75146912ns 1340576 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002eb +75146992ns 1340580 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a59d PA:1c00a59d +75147011ns 1340581 1c000e82 fff60613 addi x12, x12, -1 x12=000002ea x12:000002eb +75147031ns 1340582 1c000e84 00130313 addi x6, x6, 1 x6=1c00a59e x6:1c00a59d +75147051ns 1340583 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ea +75147130ns 1340587 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a59e PA:1c00a59e +75147150ns 1340588 1c000e82 fff60613 addi x12, x12, -1 x12=000002e9 x12:000002ea +75147170ns 1340589 1c000e84 00130313 addi x6, x6, 1 x6=1c00a59f x6:1c00a59e +75147189ns 1340590 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002e9 +75147269ns 1340594 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a59f PA:1c00a59f +75147288ns 1340595 1c000e82 fff60613 addi x12, x12, -1 x12=000002e8 x12:000002e9 +75147308ns 1340596 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5a0 x6:1c00a59f +75147328ns 1340597 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002e8 +75147407ns 1340601 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5a0 PA:1c00a5a0 +75147427ns 1340602 1c000e82 fff60613 addi x12, x12, -1 x12=000002e7 x12:000002e8 +75147447ns 1340603 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5a1 x6:1c00a5a0 +75147467ns 1340604 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002e7 +75147546ns 1340608 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5a1 PA:1c00a5a1 +75147565ns 1340609 1c000e82 fff60613 addi x12, x12, -1 x12=000002e6 x12:000002e7 +75147585ns 1340610 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5a2 x6:1c00a5a1 +75147605ns 1340611 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002e6 +75147684ns 1340615 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5a2 PA:1c00a5a2 +75147704ns 1340616 1c000e82 fff60613 addi x12, x12, -1 x12=000002e5 x12:000002e6 +75147724ns 1340617 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5a3 x6:1c00a5a2 +75147744ns 1340618 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002e5 +75147823ns 1340622 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5a3 PA:1c00a5a3 +75147843ns 1340623 1c000e82 fff60613 addi x12, x12, -1 x12=000002e4 x12:000002e5 +75147862ns 1340624 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5a4 x6:1c00a5a3 +75147882ns 1340625 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002e4 +75147961ns 1340629 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5a4 PA:1c00a5a4 +75147981ns 1340630 1c000e82 fff60613 addi x12, x12, -1 x12=000002e3 x12:000002e4 +75148001ns 1340631 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5a5 x6:1c00a5a4 +75148021ns 1340632 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002e3 +75148100ns 1340636 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5a5 PA:1c00a5a5 +75148120ns 1340637 1c000e82 fff60613 addi x12, x12, -1 x12=000002e2 x12:000002e3 +75148139ns 1340638 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5a6 x6:1c00a5a5 +75148159ns 1340639 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002e2 +75148238ns 1340643 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5a6 PA:1c00a5a6 +75148258ns 1340644 1c000e82 fff60613 addi x12, x12, -1 x12=000002e1 x12:000002e2 +75148278ns 1340645 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5a7 x6:1c00a5a6 +75148298ns 1340646 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002e1 +75148377ns 1340650 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5a7 PA:1c00a5a7 +75148397ns 1340651 1c000e82 fff60613 addi x12, x12, -1 x12=000002e0 x12:000002e1 +75148417ns 1340652 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5a8 x6:1c00a5a7 +75148436ns 1340653 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002e0 +75148515ns 1340657 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5a8 PA:1c00a5a8 +75148535ns 1340658 1c000e82 fff60613 addi x12, x12, -1 x12=000002df x12:000002e0 +75148555ns 1340659 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5a9 x6:1c00a5a8 +75148575ns 1340660 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002df +75148654ns 1340664 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5a9 PA:1c00a5a9 +75148674ns 1340665 1c000e82 fff60613 addi x12, x12, -1 x12=000002de x12:000002df +75148694ns 1340666 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5aa x6:1c00a5a9 +75148713ns 1340667 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002de +75148793ns 1340671 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5aa PA:1c00a5aa +75148812ns 1340672 1c000e82 fff60613 addi x12, x12, -1 x12=000002dd x12:000002de +75148832ns 1340673 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5ab x6:1c00a5aa +75148852ns 1340674 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002dd +75148931ns 1340678 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5ab PA:1c00a5ab +75148951ns 1340679 1c000e82 fff60613 addi x12, x12, -1 x12=000002dc x12:000002dd +75148971ns 1340680 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5ac x6:1c00a5ab +75148991ns 1340681 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002dc +75149070ns 1340685 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5ac PA:1c00a5ac +75149089ns 1340686 1c000e82 fff60613 addi x12, x12, -1 x12=000002db x12:000002dc +75149109ns 1340687 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5ad x6:1c00a5ac +75149129ns 1340688 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002db +75149208ns 1340692 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5ad PA:1c00a5ad +75149228ns 1340693 1c000e82 fff60613 addi x12, x12, -1 x12=000002da x12:000002db +75149248ns 1340694 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5ae x6:1c00a5ad +75149268ns 1340695 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002da +75149347ns 1340699 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5ae PA:1c00a5ae +75149367ns 1340700 1c000e82 fff60613 addi x12, x12, -1 x12=000002d9 x12:000002da +75149386ns 1340701 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5af x6:1c00a5ae +75149406ns 1340702 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002d9 +75149485ns 1340706 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5af PA:1c00a5af +75149505ns 1340707 1c000e82 fff60613 addi x12, x12, -1 x12=000002d8 x12:000002d9 +75149525ns 1340708 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5b0 x6:1c00a5af +75149545ns 1340709 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002d8 +75149624ns 1340713 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5b0 PA:1c00a5b0 +75149644ns 1340714 1c000e82 fff60613 addi x12, x12, -1 x12=000002d7 x12:000002d8 +75149663ns 1340715 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5b1 x6:1c00a5b0 +75149683ns 1340716 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002d7 +75149762ns 1340720 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5b1 PA:1c00a5b1 +75149782ns 1340721 1c000e82 fff60613 addi x12, x12, -1 x12=000002d6 x12:000002d7 +75149802ns 1340722 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5b2 x6:1c00a5b1 +75149822ns 1340723 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002d6 +75149901ns 1340727 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5b2 PA:1c00a5b2 +75149921ns 1340728 1c000e82 fff60613 addi x12, x12, -1 x12=000002d5 x12:000002d6 +75149941ns 1340729 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5b3 x6:1c00a5b2 +75149960ns 1340730 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002d5 +75150039ns 1340734 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5b3 PA:1c00a5b3 +75150059ns 1340735 1c000e82 fff60613 addi x12, x12, -1 x12=000002d4 x12:000002d5 +75150079ns 1340736 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5b4 x6:1c00a5b3 +75150099ns 1340737 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002d4 +75150178ns 1340741 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5b4 PA:1c00a5b4 +75150198ns 1340742 1c000e82 fff60613 addi x12, x12, -1 x12=000002d3 x12:000002d4 +75150218ns 1340743 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5b5 x6:1c00a5b4 +75150237ns 1340744 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002d3 +75150317ns 1340748 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5b5 PA:1c00a5b5 +75150336ns 1340749 1c000e82 fff60613 addi x12, x12, -1 x12=000002d2 x12:000002d3 +75150356ns 1340750 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5b6 x6:1c00a5b5 +75150376ns 1340751 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002d2 +75150455ns 1340755 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5b6 PA:1c00a5b6 +75150475ns 1340756 1c000e82 fff60613 addi x12, x12, -1 x12=000002d1 x12:000002d2 +75150495ns 1340757 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5b7 x6:1c00a5b6 +75150514ns 1340758 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002d1 +75150594ns 1340762 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5b7 PA:1c00a5b7 +75150613ns 1340763 1c000e82 fff60613 addi x12, x12, -1 x12=000002d0 x12:000002d1 +75150633ns 1340764 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5b8 x6:1c00a5b7 +75150653ns 1340765 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002d0 +75150732ns 1340769 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5b8 PA:1c00a5b8 +75150752ns 1340770 1c000e82 fff60613 addi x12, x12, -1 x12=000002cf x12:000002d0 +75150772ns 1340771 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5b9 x6:1c00a5b8 +75150792ns 1340772 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002cf +75150871ns 1340776 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5b9 PA:1c00a5b9 +75150891ns 1340777 1c000e82 fff60613 addi x12, x12, -1 x12=000002ce x12:000002cf +75150910ns 1340778 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5ba x6:1c00a5b9 +75150930ns 1340779 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ce +75151009ns 1340783 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5ba PA:1c00a5ba +75151029ns 1340784 1c000e82 fff60613 addi x12, x12, -1 x12=000002cd x12:000002ce +75151049ns 1340785 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5bb x6:1c00a5ba +75151069ns 1340786 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002cd +75151148ns 1340790 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5bb PA:1c00a5bb +75151168ns 1340791 1c000e82 fff60613 addi x12, x12, -1 x12=000002cc x12:000002cd +75151187ns 1340792 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5bc x6:1c00a5bb +75151207ns 1340793 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002cc +75151286ns 1340797 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5bc PA:1c00a5bc +75151306ns 1340798 1c000e82 fff60613 addi x12, x12, -1 x12=000002cb x12:000002cc +75151326ns 1340799 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5bd x6:1c00a5bc +75151346ns 1340800 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002cb +75151425ns 1340804 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5bd PA:1c00a5bd +75151445ns 1340805 1c000e82 fff60613 addi x12, x12, -1 x12=000002ca x12:000002cb +75151465ns 1340806 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5be x6:1c00a5bd +75151484ns 1340807 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ca +75151563ns 1340811 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5be PA:1c00a5be +75151583ns 1340812 1c000e82 fff60613 addi x12, x12, -1 x12=000002c9 x12:000002ca +75151603ns 1340813 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5bf x6:1c00a5be +75151623ns 1340814 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002c9 +75151702ns 1340818 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5bf PA:1c00a5bf +75151722ns 1340819 1c000e82 fff60613 addi x12, x12, -1 x12=000002c8 x12:000002c9 +75151742ns 1340820 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5c0 x6:1c00a5bf +75151761ns 1340821 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002c8 +75151841ns 1340825 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5c0 PA:1c00a5c0 +75151860ns 1340826 1c000e82 fff60613 addi x12, x12, -1 x12=000002c7 x12:000002c8 +75151880ns 1340827 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5c1 x6:1c00a5c0 +75151900ns 1340828 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002c7 +75151979ns 1340832 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5c1 PA:1c00a5c1 +75151999ns 1340833 1c000e82 fff60613 addi x12, x12, -1 x12=000002c6 x12:000002c7 +75152019ns 1340834 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5c2 x6:1c00a5c1 +75152038ns 1340835 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002c6 +75152118ns 1340839 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5c2 PA:1c00a5c2 +75152137ns 1340840 1c000e82 fff60613 addi x12, x12, -1 x12=000002c5 x12:000002c6 +75152157ns 1340841 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5c3 x6:1c00a5c2 +75152177ns 1340842 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002c5 +75152256ns 1340846 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5c3 PA:1c00a5c3 +75152276ns 1340847 1c000e82 fff60613 addi x12, x12, -1 x12=000002c4 x12:000002c5 +75152296ns 1340848 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5c4 x6:1c00a5c3 +75152316ns 1340849 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002c4 +75152395ns 1340853 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5c4 PA:1c00a5c4 +75152415ns 1340854 1c000e82 fff60613 addi x12, x12, -1 x12=000002c3 x12:000002c4 +75152434ns 1340855 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5c5 x6:1c00a5c4 +75152454ns 1340856 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002c3 +75152533ns 1340860 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5c5 PA:1c00a5c5 +75152553ns 1340861 1c000e82 fff60613 addi x12, x12, -1 x12=000002c2 x12:000002c3 +75152573ns 1340862 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5c6 x6:1c00a5c5 +75152593ns 1340863 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002c2 +75152672ns 1340867 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5c6 PA:1c00a5c6 +75152692ns 1340868 1c000e82 fff60613 addi x12, x12, -1 x12=000002c1 x12:000002c2 +75152711ns 1340869 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5c7 x6:1c00a5c6 +75152731ns 1340870 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002c1 +75152810ns 1340874 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5c7 PA:1c00a5c7 +75152830ns 1340875 1c000e82 fff60613 addi x12, x12, -1 x12=000002c0 x12:000002c1 +75152850ns 1340876 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5c8 x6:1c00a5c7 +75152870ns 1340877 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002c0 +75152949ns 1340881 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5c8 PA:1c00a5c8 +75152969ns 1340882 1c000e82 fff60613 addi x12, x12, -1 x12=000002bf x12:000002c0 +75152988ns 1340883 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5c9 x6:1c00a5c8 +75153008ns 1340884 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002bf +75153087ns 1340888 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5c9 PA:1c00a5c9 +75153107ns 1340889 1c000e82 fff60613 addi x12, x12, -1 x12=000002be x12:000002bf +75153127ns 1340890 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5ca x6:1c00a5c9 +75153147ns 1340891 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002be +75153226ns 1340895 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5ca PA:1c00a5ca +75153246ns 1340896 1c000e82 fff60613 addi x12, x12, -1 x12=000002bd x12:000002be +75153266ns 1340897 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5cb x6:1c00a5ca +75153285ns 1340898 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002bd +75153365ns 1340902 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5cb PA:1c00a5cb +75153384ns 1340903 1c000e82 fff60613 addi x12, x12, -1 x12=000002bc x12:000002bd +75153404ns 1340904 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5cc x6:1c00a5cb +75153424ns 1340905 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002bc +75153503ns 1340909 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5cc PA:1c00a5cc +75153523ns 1340910 1c000e82 fff60613 addi x12, x12, -1 x12=000002bb x12:000002bc +75153543ns 1340911 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5cd x6:1c00a5cc +75153562ns 1340912 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002bb +75153642ns 1340916 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5cd PA:1c00a5cd +75153661ns 1340917 1c000e82 fff60613 addi x12, x12, -1 x12=000002ba x12:000002bb +75153681ns 1340918 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5ce x6:1c00a5cd +75153701ns 1340919 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ba +75153780ns 1340923 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5ce PA:1c00a5ce +75153800ns 1340924 1c000e82 fff60613 addi x12, x12, -1 x12=000002b9 x12:000002ba +75153820ns 1340925 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5cf x6:1c00a5ce +75153840ns 1340926 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002b9 +75153919ns 1340930 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5cf PA:1c00a5cf +75153939ns 1340931 1c000e82 fff60613 addi x12, x12, -1 x12=000002b8 x12:000002b9 +75153958ns 1340932 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5d0 x6:1c00a5cf +75153978ns 1340933 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002b8 +75154057ns 1340937 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5d0 PA:1c00a5d0 +75154077ns 1340938 1c000e82 fff60613 addi x12, x12, -1 x12=000002b7 x12:000002b8 +75154097ns 1340939 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5d1 x6:1c00a5d0 +75154117ns 1340940 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002b7 +75154196ns 1340944 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5d1 PA:1c00a5d1 +75154216ns 1340945 1c000e82 fff60613 addi x12, x12, -1 x12=000002b6 x12:000002b7 +75154235ns 1340946 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5d2 x6:1c00a5d1 +75154255ns 1340947 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002b6 +75154334ns 1340951 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5d2 PA:1c00a5d2 +75154354ns 1340952 1c000e82 fff60613 addi x12, x12, -1 x12=000002b5 x12:000002b6 +75154374ns 1340953 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5d3 x6:1c00a5d2 +75154394ns 1340954 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002b5 +75154473ns 1340958 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5d3 PA:1c00a5d3 +75154493ns 1340959 1c000e82 fff60613 addi x12, x12, -1 x12=000002b4 x12:000002b5 +75154512ns 1340960 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5d4 x6:1c00a5d3 +75154532ns 1340961 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002b4 +75154611ns 1340965 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5d4 PA:1c00a5d4 +75154631ns 1340966 1c000e82 fff60613 addi x12, x12, -1 x12=000002b3 x12:000002b4 +75154651ns 1340967 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5d5 x6:1c00a5d4 +75154671ns 1340968 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002b3 +75154750ns 1340972 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5d5 PA:1c00a5d5 +75154770ns 1340973 1c000e82 fff60613 addi x12, x12, -1 x12=000002b2 x12:000002b3 +75154790ns 1340974 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5d6 x6:1c00a5d5 +75154809ns 1340975 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002b2 +75154889ns 1340979 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5d6 PA:1c00a5d6 +75154908ns 1340980 1c000e82 fff60613 addi x12, x12, -1 x12=000002b1 x12:000002b2 +75154928ns 1340981 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5d7 x6:1c00a5d6 +75154948ns 1340982 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002b1 +75155027ns 1340986 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5d7 PA:1c00a5d7 +75155047ns 1340987 1c000e82 fff60613 addi x12, x12, -1 x12=000002b0 x12:000002b1 +75155067ns 1340988 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5d8 x6:1c00a5d7 +75155086ns 1340989 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002b0 +75155166ns 1340993 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5d8 PA:1c00a5d8 +75155185ns 1340994 1c000e82 fff60613 addi x12, x12, -1 x12=000002af x12:000002b0 +75155205ns 1340995 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5d9 x6:1c00a5d8 +75155225ns 1340996 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002af +75155304ns 1341000 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5d9 PA:1c00a5d9 +75155324ns 1341001 1c000e82 fff60613 addi x12, x12, -1 x12=000002ae x12:000002af +75155344ns 1341002 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5da x6:1c00a5d9 +75155364ns 1341003 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ae +75155443ns 1341007 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5da PA:1c00a5da +75155462ns 1341008 1c000e82 fff60613 addi x12, x12, -1 x12=000002ad x12:000002ae +75155482ns 1341009 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5db x6:1c00a5da +75155502ns 1341010 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ad +75155581ns 1341014 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5db PA:1c00a5db +75155601ns 1341015 1c000e82 fff60613 addi x12, x12, -1 x12=000002ac x12:000002ad +75155621ns 1341016 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5dc x6:1c00a5db +75155641ns 1341017 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ac +75155720ns 1341021 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5dc PA:1c00a5dc +75155740ns 1341022 1c000e82 fff60613 addi x12, x12, -1 x12=000002ab x12:000002ac +75155759ns 1341023 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5dd x6:1c00a5dc +75155779ns 1341024 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ab +75155858ns 1341028 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5dd PA:1c00a5dd +75155878ns 1341029 1c000e82 fff60613 addi x12, x12, -1 x12=000002aa x12:000002ab +75155898ns 1341030 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5de x6:1c00a5dd +75155918ns 1341031 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002aa +75155997ns 1341035 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5de PA:1c00a5de +75156017ns 1341036 1c000e82 fff60613 addi x12, x12, -1 x12=000002a9 x12:000002aa +75156036ns 1341037 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5df x6:1c00a5de +75156056ns 1341038 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002a9 +75156135ns 1341042 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5df PA:1c00a5df +75156155ns 1341043 1c000e82 fff60613 addi x12, x12, -1 x12=000002a8 x12:000002a9 +75156175ns 1341044 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5e0 x6:1c00a5df +75156195ns 1341045 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002a8 +75156274ns 1341049 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5e0 PA:1c00a5e0 +75156294ns 1341050 1c000e82 fff60613 addi x12, x12, -1 x12=000002a7 x12:000002a8 +75156314ns 1341051 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5e1 x6:1c00a5e0 +75156333ns 1341052 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002a7 +75156413ns 1341056 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5e1 PA:1c00a5e1 +75156432ns 1341057 1c000e82 fff60613 addi x12, x12, -1 x12=000002a6 x12:000002a7 +75156452ns 1341058 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5e2 x6:1c00a5e1 +75156472ns 1341059 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002a6 +75156551ns 1341063 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5e2 PA:1c00a5e2 +75156571ns 1341064 1c000e82 fff60613 addi x12, x12, -1 x12=000002a5 x12:000002a6 +75156591ns 1341065 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5e3 x6:1c00a5e2 +75156610ns 1341066 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002a5 +75156690ns 1341070 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5e3 PA:1c00a5e3 +75156709ns 1341071 1c000e82 fff60613 addi x12, x12, -1 x12=000002a4 x12:000002a5 +75156729ns 1341072 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5e4 x6:1c00a5e3 +75156749ns 1341073 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002a4 +75156828ns 1341077 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5e4 PA:1c00a5e4 +75156848ns 1341078 1c000e82 fff60613 addi x12, x12, -1 x12=000002a3 x12:000002a4 +75156868ns 1341079 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5e5 x6:1c00a5e4 +75156888ns 1341080 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002a3 +75156967ns 1341084 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5e5 PA:1c00a5e5 +75156986ns 1341085 1c000e82 fff60613 addi x12, x12, -1 x12=000002a2 x12:000002a3 +75157006ns 1341086 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5e6 x6:1c00a5e5 +75157026ns 1341087 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002a2 +75157105ns 1341091 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5e6 PA:1c00a5e6 +75157125ns 1341092 1c000e82 fff60613 addi x12, x12, -1 x12=000002a1 x12:000002a2 +75157145ns 1341093 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5e7 x6:1c00a5e6 +75157165ns 1341094 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002a1 +75157244ns 1341098 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5e7 PA:1c00a5e7 +75157264ns 1341099 1c000e82 fff60613 addi x12, x12, -1 x12=000002a0 x12:000002a1 +75157283ns 1341100 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5e8 x6:1c00a5e7 +75157303ns 1341101 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002a0 +75157382ns 1341105 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5e8 PA:1c00a5e8 +75157402ns 1341106 1c000e82 fff60613 addi x12, x12, -1 x12=0000029f x12:000002a0 +75157422ns 1341107 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5e9 x6:1c00a5e8 +75157442ns 1341108 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000029f +75157521ns 1341112 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5e9 PA:1c00a5e9 +75157541ns 1341113 1c000e82 fff60613 addi x12, x12, -1 x12=0000029e x12:0000029f +75157560ns 1341114 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5ea x6:1c00a5e9 +75157580ns 1341115 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000029e +75157659ns 1341119 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5ea PA:1c00a5ea +75157679ns 1341120 1c000e82 fff60613 addi x12, x12, -1 x12=0000029d x12:0000029e +75157699ns 1341121 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5eb x6:1c00a5ea +75157719ns 1341122 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000029d +75157798ns 1341126 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5eb PA:1c00a5eb +75157818ns 1341127 1c000e82 fff60613 addi x12, x12, -1 x12=0000029c x12:0000029d +75157838ns 1341128 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5ec x6:1c00a5eb +75157857ns 1341129 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000029c +75157936ns 1341133 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5ec PA:1c00a5ec +75157956ns 1341134 1c000e82 fff60613 addi x12, x12, -1 x12=0000029b x12:0000029c +75157976ns 1341135 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5ed x6:1c00a5ec +75157996ns 1341136 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000029b +75158075ns 1341140 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5ed PA:1c00a5ed +75158095ns 1341141 1c000e82 fff60613 addi x12, x12, -1 x12=0000029a x12:0000029b +75158115ns 1341142 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5ee x6:1c00a5ed +75158134ns 1341143 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000029a +75158214ns 1341147 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5ee PA:1c00a5ee +75158233ns 1341148 1c000e82 fff60613 addi x12, x12, -1 x12=00000299 x12:0000029a +75158253ns 1341149 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5ef x6:1c00a5ee +75158273ns 1341150 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000299 +75158352ns 1341154 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5ef PA:1c00a5ef +75158372ns 1341155 1c000e82 fff60613 addi x12, x12, -1 x12=00000298 x12:00000299 +75158392ns 1341156 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5f0 x6:1c00a5ef +75158411ns 1341157 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000298 +75158491ns 1341161 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5f0 PA:1c00a5f0 +75158510ns 1341162 1c000e82 fff60613 addi x12, x12, -1 x12=00000297 x12:00000298 +75158530ns 1341163 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5f1 x6:1c00a5f0 +75158550ns 1341164 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000297 +75158629ns 1341168 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5f1 PA:1c00a5f1 +75158649ns 1341169 1c000e82 fff60613 addi x12, x12, -1 x12=00000296 x12:00000297 +75158669ns 1341170 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5f2 x6:1c00a5f1 +75158689ns 1341171 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000296 +75158768ns 1341175 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5f2 PA:1c00a5f2 +75158788ns 1341176 1c000e82 fff60613 addi x12, x12, -1 x12=00000295 x12:00000296 +75158807ns 1341177 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5f3 x6:1c00a5f2 +75158827ns 1341178 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000295 +75158906ns 1341182 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5f3 PA:1c00a5f3 +75158926ns 1341183 1c000e82 fff60613 addi x12, x12, -1 x12=00000294 x12:00000295 +75158946ns 1341184 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5f4 x6:1c00a5f3 +75158966ns 1341185 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000294 +75159045ns 1341189 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5f4 PA:1c00a5f4 +75159065ns 1341190 1c000e82 fff60613 addi x12, x12, -1 x12=00000293 x12:00000294 +75159084ns 1341191 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5f5 x6:1c00a5f4 +75159104ns 1341192 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000293 +75159183ns 1341196 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5f5 PA:1c00a5f5 +75159203ns 1341197 1c000e82 fff60613 addi x12, x12, -1 x12=00000292 x12:00000293 +75159223ns 1341198 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5f6 x6:1c00a5f5 +75159243ns 1341199 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000292 +75159322ns 1341203 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5f6 PA:1c00a5f6 +75159342ns 1341204 1c000e82 fff60613 addi x12, x12, -1 x12=00000291 x12:00000292 +75159362ns 1341205 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5f7 x6:1c00a5f6 +75159381ns 1341206 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000291 +75159460ns 1341210 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5f7 PA:1c00a5f7 +75159480ns 1341211 1c000e82 fff60613 addi x12, x12, -1 x12=00000290 x12:00000291 +75159500ns 1341212 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5f8 x6:1c00a5f7 +75159520ns 1341213 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000290 +75159599ns 1341217 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5f8 PA:1c00a5f8 +75159619ns 1341218 1c000e82 fff60613 addi x12, x12, -1 x12=0000028f x12:00000290 +75159639ns 1341219 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5f9 x6:1c00a5f8 +75159658ns 1341220 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000028f +75159738ns 1341224 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5f9 PA:1c00a5f9 +75159757ns 1341225 1c000e82 fff60613 addi x12, x12, -1 x12=0000028e x12:0000028f +75159777ns 1341226 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5fa x6:1c00a5f9 +75159797ns 1341227 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000028e +75159876ns 1341231 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5fa PA:1c00a5fa +75159896ns 1341232 1c000e82 fff60613 addi x12, x12, -1 x12=0000028d x12:0000028e +75159916ns 1341233 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5fb x6:1c00a5fa +75159935ns 1341234 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000028d +75160015ns 1341238 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5fb PA:1c00a5fb +75160034ns 1341239 1c000e82 fff60613 addi x12, x12, -1 x12=0000028c x12:0000028d +75160054ns 1341240 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5fc x6:1c00a5fb +75160074ns 1341241 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000028c +75160153ns 1341245 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5fc PA:1c00a5fc +75160173ns 1341246 1c000e82 fff60613 addi x12, x12, -1 x12=0000028b x12:0000028c +75160193ns 1341247 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5fd x6:1c00a5fc +75160213ns 1341248 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000028b +75160292ns 1341252 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5fd PA:1c00a5fd +75160312ns 1341253 1c000e82 fff60613 addi x12, x12, -1 x12=0000028a x12:0000028b +75160331ns 1341254 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5fe x6:1c00a5fd +75160351ns 1341255 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000028a +75160430ns 1341259 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5fe PA:1c00a5fe +75160450ns 1341260 1c000e82 fff60613 addi x12, x12, -1 x12=00000289 x12:0000028a +75160470ns 1341261 1c000e84 00130313 addi x6, x6, 1 x6=1c00a5ff x6:1c00a5fe +75160490ns 1341262 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000289 +75160569ns 1341266 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a5ff PA:1c00a5ff +75160589ns 1341267 1c000e82 fff60613 addi x12, x12, -1 x12=00000288 x12:00000289 +75160608ns 1341268 1c000e84 00130313 addi x6, x6, 1 x6=1c00a600 x6:1c00a5ff +75160628ns 1341269 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000288 +75160707ns 1341273 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a600 PA:1c00a600 +75160727ns 1341274 1c000e82 fff60613 addi x12, x12, -1 x12=00000287 x12:00000288 +75160747ns 1341275 1c000e84 00130313 addi x6, x6, 1 x6=1c00a601 x6:1c00a600 +75160767ns 1341276 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000287 +75160846ns 1341280 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a601 PA:1c00a601 +75160866ns 1341281 1c000e82 fff60613 addi x12, x12, -1 x12=00000286 x12:00000287 +75160885ns 1341282 1c000e84 00130313 addi x6, x6, 1 x6=1c00a602 x6:1c00a601 +75160905ns 1341283 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000286 +75160984ns 1341287 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a602 PA:1c00a602 +75161004ns 1341288 1c000e82 fff60613 addi x12, x12, -1 x12=00000285 x12:00000286 +75161024ns 1341289 1c000e84 00130313 addi x6, x6, 1 x6=1c00a603 x6:1c00a602 +75161044ns 1341290 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000285 +75161123ns 1341294 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a603 PA:1c00a603 +75161143ns 1341295 1c000e82 fff60613 addi x12, x12, -1 x12=00000284 x12:00000285 +75161163ns 1341296 1c000e84 00130313 addi x6, x6, 1 x6=1c00a604 x6:1c00a603 +75161182ns 1341297 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000284 +75161262ns 1341301 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a604 PA:1c00a604 +75161281ns 1341302 1c000e82 fff60613 addi x12, x12, -1 x12=00000283 x12:00000284 +75161301ns 1341303 1c000e84 00130313 addi x6, x6, 1 x6=1c00a605 x6:1c00a604 +75161321ns 1341304 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000283 +75161400ns 1341308 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a605 PA:1c00a605 +75161420ns 1341309 1c000e82 fff60613 addi x12, x12, -1 x12=00000282 x12:00000283 +75161440ns 1341310 1c000e84 00130313 addi x6, x6, 1 x6=1c00a606 x6:1c00a605 +75161459ns 1341311 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000282 +75161539ns 1341315 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a606 PA:1c00a606 +75161558ns 1341316 1c000e82 fff60613 addi x12, x12, -1 x12=00000281 x12:00000282 +75161578ns 1341317 1c000e84 00130313 addi x6, x6, 1 x6=1c00a607 x6:1c00a606 +75161598ns 1341318 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000281 +75161677ns 1341322 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a607 PA:1c00a607 +75161697ns 1341323 1c000e82 fff60613 addi x12, x12, -1 x12=00000280 x12:00000281 +75161717ns 1341324 1c000e84 00130313 addi x6, x6, 1 x6=1c00a608 x6:1c00a607 +75161737ns 1341325 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000280 +75161816ns 1341329 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a608 PA:1c00a608 +75161836ns 1341330 1c000e82 fff60613 addi x12, x12, -1 x12=0000027f x12:00000280 +75161855ns 1341331 1c000e84 00130313 addi x6, x6, 1 x6=1c00a609 x6:1c00a608 +75161875ns 1341332 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000027f +75161954ns 1341336 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a609 PA:1c00a609 +75161974ns 1341337 1c000e82 fff60613 addi x12, x12, -1 x12=0000027e x12:0000027f +75161994ns 1341338 1c000e84 00130313 addi x6, x6, 1 x6=1c00a60a x6:1c00a609 +75162014ns 1341339 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000027e +75162093ns 1341343 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a60a PA:1c00a60a +75162113ns 1341344 1c000e82 fff60613 addi x12, x12, -1 x12=0000027d x12:0000027e +75162132ns 1341345 1c000e84 00130313 addi x6, x6, 1 x6=1c00a60b x6:1c00a60a +75162152ns 1341346 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000027d +75162231ns 1341350 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a60b PA:1c00a60b +75162251ns 1341351 1c000e82 fff60613 addi x12, x12, -1 x12=0000027c x12:0000027d +75162271ns 1341352 1c000e84 00130313 addi x6, x6, 1 x6=1c00a60c x6:1c00a60b +75162291ns 1341353 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000027c +75162370ns 1341357 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a60c PA:1c00a60c +75162390ns 1341358 1c000e82 fff60613 addi x12, x12, -1 x12=0000027b x12:0000027c +75162409ns 1341359 1c000e84 00130313 addi x6, x6, 1 x6=1c00a60d x6:1c00a60c +75162429ns 1341360 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000027b +75162508ns 1341364 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a60d PA:1c00a60d +75162528ns 1341365 1c000e82 fff60613 addi x12, x12, -1 x12=0000027a x12:0000027b +75162548ns 1341366 1c000e84 00130313 addi x6, x6, 1 x6=1c00a60e x6:1c00a60d +75162568ns 1341367 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000027a +75162647ns 1341371 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a60e PA:1c00a60e +75162667ns 1341372 1c000e82 fff60613 addi x12, x12, -1 x12=00000279 x12:0000027a +75162687ns 1341373 1c000e84 00130313 addi x6, x6, 1 x6=1c00a60f x6:1c00a60e +75162706ns 1341374 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000279 +75162786ns 1341378 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a60f PA:1c00a60f +75162805ns 1341379 1c000e82 fff60613 addi x12, x12, -1 x12=00000278 x12:00000279 +75162825ns 1341380 1c000e84 00130313 addi x6, x6, 1 x6=1c00a610 x6:1c00a60f +75162845ns 1341381 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000278 +75162924ns 1341385 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a610 PA:1c00a610 +75162944ns 1341386 1c000e82 fff60613 addi x12, x12, -1 x12=00000277 x12:00000278 +75162964ns 1341387 1c000e84 00130313 addi x6, x6, 1 x6=1c00a611 x6:1c00a610 +75162983ns 1341388 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000277 +75163063ns 1341392 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a611 PA:1c00a611 +75163082ns 1341393 1c000e82 fff60613 addi x12, x12, -1 x12=00000276 x12:00000277 +75163102ns 1341394 1c000e84 00130313 addi x6, x6, 1 x6=1c00a612 x6:1c00a611 +75163122ns 1341395 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000276 +75163201ns 1341399 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a612 PA:1c00a612 +75163221ns 1341400 1c000e82 fff60613 addi x12, x12, -1 x12=00000275 x12:00000276 +75163241ns 1341401 1c000e84 00130313 addi x6, x6, 1 x6=1c00a613 x6:1c00a612 +75163261ns 1341402 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000275 +75163340ns 1341406 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a613 PA:1c00a613 +75163359ns 1341407 1c000e82 fff60613 addi x12, x12, -1 x12=00000274 x12:00000275 +75163379ns 1341408 1c000e84 00130313 addi x6, x6, 1 x6=1c00a614 x6:1c00a613 +75163399ns 1341409 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000274 +75163478ns 1341413 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a614 PA:1c00a614 +75163498ns 1341414 1c000e82 fff60613 addi x12, x12, -1 x12=00000273 x12:00000274 +75163518ns 1341415 1c000e84 00130313 addi x6, x6, 1 x6=1c00a615 x6:1c00a614 +75163538ns 1341416 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000273 +75163617ns 1341420 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a615 PA:1c00a615 +75163637ns 1341421 1c000e82 fff60613 addi x12, x12, -1 x12=00000272 x12:00000273 +75163656ns 1341422 1c000e84 00130313 addi x6, x6, 1 x6=1c00a616 x6:1c00a615 +75163676ns 1341423 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000272 +75163755ns 1341427 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a616 PA:1c00a616 +75163775ns 1341428 1c000e82 fff60613 addi x12, x12, -1 x12=00000271 x12:00000272 +75163795ns 1341429 1c000e84 00130313 addi x6, x6, 1 x6=1c00a617 x6:1c00a616 +75163815ns 1341430 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000271 +75163894ns 1341434 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a617 PA:1c00a617 +75163914ns 1341435 1c000e82 fff60613 addi x12, x12, -1 x12=00000270 x12:00000271 +75163933ns 1341436 1c000e84 00130313 addi x6, x6, 1 x6=1c00a618 x6:1c00a617 +75163953ns 1341437 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000270 +75164032ns 1341441 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a618 PA:1c00a618 +75164052ns 1341442 1c000e82 fff60613 addi x12, x12, -1 x12=0000026f x12:00000270 +75164072ns 1341443 1c000e84 00130313 addi x6, x6, 1 x6=1c00a619 x6:1c00a618 +75164092ns 1341444 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000026f +75164171ns 1341448 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a619 PA:1c00a619 +75164191ns 1341449 1c000e82 fff60613 addi x12, x12, -1 x12=0000026e x12:0000026f +75164211ns 1341450 1c000e84 00130313 addi x6, x6, 1 x6=1c00a61a x6:1c00a619 +75164230ns 1341451 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000026e +75164310ns 1341455 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a61a PA:1c00a61a +75164329ns 1341456 1c000e82 fff60613 addi x12, x12, -1 x12=0000026d x12:0000026e +75164349ns 1341457 1c000e84 00130313 addi x6, x6, 1 x6=1c00a61b x6:1c00a61a +75164369ns 1341458 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000026d +75164448ns 1341462 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a61b PA:1c00a61b +75164468ns 1341463 1c000e82 fff60613 addi x12, x12, -1 x12=0000026c x12:0000026d +75164488ns 1341464 1c000e84 00130313 addi x6, x6, 1 x6=1c00a61c x6:1c00a61b +75164507ns 1341465 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000026c +75164587ns 1341469 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a61c PA:1c00a61c +75164606ns 1341470 1c000e82 fff60613 addi x12, x12, -1 x12=0000026b x12:0000026c +75164626ns 1341471 1c000e84 00130313 addi x6, x6, 1 x6=1c00a61d x6:1c00a61c +75164646ns 1341472 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000026b +75164725ns 1341476 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a61d PA:1c00a61d +75164745ns 1341477 1c000e82 fff60613 addi x12, x12, -1 x12=0000026a x12:0000026b +75164765ns 1341478 1c000e84 00130313 addi x6, x6, 1 x6=1c00a61e x6:1c00a61d +75164785ns 1341479 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000026a +75164864ns 1341483 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a61e PA:1c00a61e +75164883ns 1341484 1c000e82 fff60613 addi x12, x12, -1 x12=00000269 x12:0000026a +75164903ns 1341485 1c000e84 00130313 addi x6, x6, 1 x6=1c00a61f x6:1c00a61e +75164923ns 1341486 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000269 +75165002ns 1341490 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a61f PA:1c00a61f +75165022ns 1341491 1c000e82 fff60613 addi x12, x12, -1 x12=00000268 x12:00000269 +75165042ns 1341492 1c000e84 00130313 addi x6, x6, 1 x6=1c00a620 x6:1c00a61f +75165062ns 1341493 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000268 +75165141ns 1341497 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a620 PA:1c00a620 +75165161ns 1341498 1c000e82 fff60613 addi x12, x12, -1 x12=00000267 x12:00000268 +75165180ns 1341499 1c000e84 00130313 addi x6, x6, 1 x6=1c00a621 x6:1c00a620 +75165200ns 1341500 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000267 +75165279ns 1341504 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a621 PA:1c00a621 +75165299ns 1341505 1c000e82 fff60613 addi x12, x12, -1 x12=00000266 x12:00000267 +75165319ns 1341506 1c000e84 00130313 addi x6, x6, 1 x6=1c00a622 x6:1c00a621 +75165339ns 1341507 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000266 +75165418ns 1341511 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a622 PA:1c00a622 +75165438ns 1341512 1c000e82 fff60613 addi x12, x12, -1 x12=00000265 x12:00000266 +75165457ns 1341513 1c000e84 00130313 addi x6, x6, 1 x6=1c00a623 x6:1c00a622 +75165477ns 1341514 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000265 +75165556ns 1341518 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a623 PA:1c00a623 +75165576ns 1341519 1c000e82 fff60613 addi x12, x12, -1 x12=00000264 x12:00000265 +75165596ns 1341520 1c000e84 00130313 addi x6, x6, 1 x6=1c00a624 x6:1c00a623 +75165616ns 1341521 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000264 +75165695ns 1341525 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a624 PA:1c00a624 +75165715ns 1341526 1c000e82 fff60613 addi x12, x12, -1 x12=00000263 x12:00000264 +75165735ns 1341527 1c000e84 00130313 addi x6, x6, 1 x6=1c00a625 x6:1c00a624 +75165754ns 1341528 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000263 +75165833ns 1341532 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a625 PA:1c00a625 +75165853ns 1341533 1c000e82 fff60613 addi x12, x12, -1 x12=00000262 x12:00000263 +75165873ns 1341534 1c000e84 00130313 addi x6, x6, 1 x6=1c00a626 x6:1c00a625 +75165893ns 1341535 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000262 +75165972ns 1341539 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a626 PA:1c00a626 +75165992ns 1341540 1c000e82 fff60613 addi x12, x12, -1 x12=00000261 x12:00000262 +75166012ns 1341541 1c000e84 00130313 addi x6, x6, 1 x6=1c00a627 x6:1c00a626 +75166031ns 1341542 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000261 +75166111ns 1341546 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a627 PA:1c00a627 +75166130ns 1341547 1c000e82 fff60613 addi x12, x12, -1 x12=00000260 x12:00000261 +75166150ns 1341548 1c000e84 00130313 addi x6, x6, 1 x6=1c00a628 x6:1c00a627 +75166170ns 1341549 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000260 +75166249ns 1341553 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a628 PA:1c00a628 +75166269ns 1341554 1c000e82 fff60613 addi x12, x12, -1 x12=0000025f x12:00000260 +75166289ns 1341555 1c000e84 00130313 addi x6, x6, 1 x6=1c00a629 x6:1c00a628 +75166309ns 1341556 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000025f +75166388ns 1341560 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a629 PA:1c00a629 +75166407ns 1341561 1c000e82 fff60613 addi x12, x12, -1 x12=0000025e x12:0000025f +75166427ns 1341562 1c000e84 00130313 addi x6, x6, 1 x6=1c00a62a x6:1c00a629 +75166447ns 1341563 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000025e +75166526ns 1341567 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a62a PA:1c00a62a +75166546ns 1341568 1c000e82 fff60613 addi x12, x12, -1 x12=0000025d x12:0000025e +75166566ns 1341569 1c000e84 00130313 addi x6, x6, 1 x6=1c00a62b x6:1c00a62a +75166586ns 1341570 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000025d +75166665ns 1341574 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a62b PA:1c00a62b +75166685ns 1341575 1c000e82 fff60613 addi x12, x12, -1 x12=0000025c x12:0000025d +75166704ns 1341576 1c000e84 00130313 addi x6, x6, 1 x6=1c00a62c x6:1c00a62b +75166724ns 1341577 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000025c +75166803ns 1341581 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a62c PA:1c00a62c +75166823ns 1341582 1c000e82 fff60613 addi x12, x12, -1 x12=0000025b x12:0000025c +75166843ns 1341583 1c000e84 00130313 addi x6, x6, 1 x6=1c00a62d x6:1c00a62c +75166863ns 1341584 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000025b +75166942ns 1341588 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a62d PA:1c00a62d +75166962ns 1341589 1c000e82 fff60613 addi x12, x12, -1 x12=0000025a x12:0000025b +75166981ns 1341590 1c000e84 00130313 addi x6, x6, 1 x6=1c00a62e x6:1c00a62d +75167001ns 1341591 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000025a +75167080ns 1341595 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a62e PA:1c00a62e +75167100ns 1341596 1c000e82 fff60613 addi x12, x12, -1 x12=00000259 x12:0000025a +75167120ns 1341597 1c000e84 00130313 addi x6, x6, 1 x6=1c00a62f x6:1c00a62e +75167140ns 1341598 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000259 +75167219ns 1341602 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a62f PA:1c00a62f +75167239ns 1341603 1c000e82 fff60613 addi x12, x12, -1 x12=00000258 x12:00000259 +75167259ns 1341604 1c000e84 00130313 addi x6, x6, 1 x6=1c00a630 x6:1c00a62f +75167278ns 1341605 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000258 +75167357ns 1341609 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a630 PA:1c00a630 +75167377ns 1341610 1c000e82 fff60613 addi x12, x12, -1 x12=00000257 x12:00000258 +75167397ns 1341611 1c000e84 00130313 addi x6, x6, 1 x6=1c00a631 x6:1c00a630 +75167417ns 1341612 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000257 +75167496ns 1341616 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a631 PA:1c00a631 +75167516ns 1341617 1c000e82 fff60613 addi x12, x12, -1 x12=00000256 x12:00000257 +75167536ns 1341618 1c000e84 00130313 addi x6, x6, 1 x6=1c00a632 x6:1c00a631 +75167555ns 1341619 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000256 +75167635ns 1341623 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a632 PA:1c00a632 +75167654ns 1341624 1c000e82 fff60613 addi x12, x12, -1 x12=00000255 x12:00000256 +75167674ns 1341625 1c000e84 00130313 addi x6, x6, 1 x6=1c00a633 x6:1c00a632 +75167694ns 1341626 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000255 +75167773ns 1341630 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a633 PA:1c00a633 +75167793ns 1341631 1c000e82 fff60613 addi x12, x12, -1 x12=00000254 x12:00000255 +75167813ns 1341632 1c000e84 00130313 addi x6, x6, 1 x6=1c00a634 x6:1c00a633 +75167832ns 1341633 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000254 +75167912ns 1341637 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a634 PA:1c00a634 +75167931ns 1341638 1c000e82 fff60613 addi x12, x12, -1 x12=00000253 x12:00000254 +75167951ns 1341639 1c000e84 00130313 addi x6, x6, 1 x6=1c00a635 x6:1c00a634 +75167971ns 1341640 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000253 +75168050ns 1341644 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a635 PA:1c00a635 +75168070ns 1341645 1c000e82 fff60613 addi x12, x12, -1 x12=00000252 x12:00000253 +75168090ns 1341646 1c000e84 00130313 addi x6, x6, 1 x6=1c00a636 x6:1c00a635 +75168110ns 1341647 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000252 +75168189ns 1341651 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a636 PA:1c00a636 +75168209ns 1341652 1c000e82 fff60613 addi x12, x12, -1 x12=00000251 x12:00000252 +75168228ns 1341653 1c000e84 00130313 addi x6, x6, 1 x6=1c00a637 x6:1c00a636 +75168248ns 1341654 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000251 +75168327ns 1341658 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a637 PA:1c00a637 +75168347ns 1341659 1c000e82 fff60613 addi x12, x12, -1 x12=00000250 x12:00000251 +75168367ns 1341660 1c000e84 00130313 addi x6, x6, 1 x6=1c00a638 x6:1c00a637 +75168387ns 1341661 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000250 +75168466ns 1341665 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a638 PA:1c00a638 +75168486ns 1341666 1c000e82 fff60613 addi x12, x12, -1 x12=0000024f x12:00000250 +75168505ns 1341667 1c000e84 00130313 addi x6, x6, 1 x6=1c00a639 x6:1c00a638 +75168525ns 1341668 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000024f +75168604ns 1341672 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a639 PA:1c00a639 +75168624ns 1341673 1c000e82 fff60613 addi x12, x12, -1 x12=0000024e x12:0000024f +75168644ns 1341674 1c000e84 00130313 addi x6, x6, 1 x6=1c00a63a x6:1c00a639 +75168664ns 1341675 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000024e +75168743ns 1341679 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a63a PA:1c00a63a +75168763ns 1341680 1c000e82 fff60613 addi x12, x12, -1 x12=0000024d x12:0000024e +75168783ns 1341681 1c000e84 00130313 addi x6, x6, 1 x6=1c00a63b x6:1c00a63a +75168802ns 1341682 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000024d +75168881ns 1341686 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a63b PA:1c00a63b +75168901ns 1341687 1c000e82 fff60613 addi x12, x12, -1 x12=0000024c x12:0000024d +75168921ns 1341688 1c000e84 00130313 addi x6, x6, 1 x6=1c00a63c x6:1c00a63b +75168941ns 1341689 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000024c +75169020ns 1341693 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a63c PA:1c00a63c +75169040ns 1341694 1c000e82 fff60613 addi x12, x12, -1 x12=0000024b x12:0000024c +75169060ns 1341695 1c000e84 00130313 addi x6, x6, 1 x6=1c00a63d x6:1c00a63c +75169079ns 1341696 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000024b +75169159ns 1341700 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a63d PA:1c00a63d +75169178ns 1341701 1c000e82 fff60613 addi x12, x12, -1 x12=0000024a x12:0000024b +75169198ns 1341702 1c000e84 00130313 addi x6, x6, 1 x6=1c00a63e x6:1c00a63d +75169218ns 1341703 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000024a +75169297ns 1341707 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a63e PA:1c00a63e +75169317ns 1341708 1c000e82 fff60613 addi x12, x12, -1 x12=00000249 x12:0000024a +75169337ns 1341709 1c000e84 00130313 addi x6, x6, 1 x6=1c00a63f x6:1c00a63e +75169356ns 1341710 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000249 +75169436ns 1341714 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a63f PA:1c00a63f +75169455ns 1341715 1c000e82 fff60613 addi x12, x12, -1 x12=00000248 x12:00000249 +75169475ns 1341716 1c000e84 00130313 addi x6, x6, 1 x6=1c00a640 x6:1c00a63f +75169495ns 1341717 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000248 +75169574ns 1341721 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a640 PA:1c00a640 +75169594ns 1341722 1c000e82 fff60613 addi x12, x12, -1 x12=00000247 x12:00000248 +75169614ns 1341723 1c000e84 00130313 addi x6, x6, 1 x6=1c00a641 x6:1c00a640 +75169634ns 1341724 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000247 +75169713ns 1341728 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a641 PA:1c00a641 +75169733ns 1341729 1c000e82 fff60613 addi x12, x12, -1 x12=00000246 x12:00000247 +75169752ns 1341730 1c000e84 00130313 addi x6, x6, 1 x6=1c00a642 x6:1c00a641 +75169772ns 1341731 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000246 +75169851ns 1341735 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a642 PA:1c00a642 +75169871ns 1341736 1c000e82 fff60613 addi x12, x12, -1 x12=00000245 x12:00000246 +75169891ns 1341737 1c000e84 00130313 addi x6, x6, 1 x6=1c00a643 x6:1c00a642 +75169911ns 1341738 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000245 +75169990ns 1341742 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a643 PA:1c00a643 +75170010ns 1341743 1c000e82 fff60613 addi x12, x12, -1 x12=00000244 x12:00000245 +75170029ns 1341744 1c000e84 00130313 addi x6, x6, 1 x6=1c00a644 x6:1c00a643 +75170049ns 1341745 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000244 +75170128ns 1341749 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a644 PA:1c00a644 +75170148ns 1341750 1c000e82 fff60613 addi x12, x12, -1 x12=00000243 x12:00000244 +75170168ns 1341751 1c000e84 00130313 addi x6, x6, 1 x6=1c00a645 x6:1c00a644 +75170188ns 1341752 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000243 +75170267ns 1341756 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a645 PA:1c00a645 +75170287ns 1341757 1c000e82 fff60613 addi x12, x12, -1 x12=00000242 x12:00000243 +75170306ns 1341758 1c000e84 00130313 addi x6, x6, 1 x6=1c00a646 x6:1c00a645 +75170326ns 1341759 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000242 +75170405ns 1341763 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a646 PA:1c00a646 +75170425ns 1341764 1c000e82 fff60613 addi x12, x12, -1 x12=00000241 x12:00000242 +75170445ns 1341765 1c000e84 00130313 addi x6, x6, 1 x6=1c00a647 x6:1c00a646 +75170465ns 1341766 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000241 +75170544ns 1341770 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a647 PA:1c00a647 +75170564ns 1341771 1c000e82 fff60613 addi x12, x12, -1 x12=00000240 x12:00000241 +75170584ns 1341772 1c000e84 00130313 addi x6, x6, 1 x6=1c00a648 x6:1c00a647 +75170603ns 1341773 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000240 +75170683ns 1341777 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a648 PA:1c00a648 +75170702ns 1341778 1c000e82 fff60613 addi x12, x12, -1 x12=0000023f x12:00000240 +75170722ns 1341779 1c000e84 00130313 addi x6, x6, 1 x6=1c00a649 x6:1c00a648 +75170742ns 1341780 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000023f +75170821ns 1341784 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a649 PA:1c00a649 +75170841ns 1341785 1c000e82 fff60613 addi x12, x12, -1 x12=0000023e x12:0000023f +75170861ns 1341786 1c000e84 00130313 addi x6, x6, 1 x6=1c00a64a x6:1c00a649 +75170880ns 1341787 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000023e +75170960ns 1341791 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a64a PA:1c00a64a +75170979ns 1341792 1c000e82 fff60613 addi x12, x12, -1 x12=0000023d x12:0000023e +75170999ns 1341793 1c000e84 00130313 addi x6, x6, 1 x6=1c00a64b x6:1c00a64a +75171019ns 1341794 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000023d +75171098ns 1341798 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a64b PA:1c00a64b +75171118ns 1341799 1c000e82 fff60613 addi x12, x12, -1 x12=0000023c x12:0000023d +75171138ns 1341800 1c000e84 00130313 addi x6, x6, 1 x6=1c00a64c x6:1c00a64b +75171158ns 1341801 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000023c +75171237ns 1341805 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a64c PA:1c00a64c +75171257ns 1341806 1c000e82 fff60613 addi x12, x12, -1 x12=0000023b x12:0000023c +75171276ns 1341807 1c000e84 00130313 addi x6, x6, 1 x6=1c00a64d x6:1c00a64c +75171296ns 1341808 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000023b +75171375ns 1341812 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a64d PA:1c00a64d +75171395ns 1341813 1c000e82 fff60613 addi x12, x12, -1 x12=0000023a x12:0000023b +75171415ns 1341814 1c000e84 00130313 addi x6, x6, 1 x6=1c00a64e x6:1c00a64d +75171435ns 1341815 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000023a +75171514ns 1341819 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a64e PA:1c00a64e +75171534ns 1341820 1c000e82 fff60613 addi x12, x12, -1 x12=00000239 x12:0000023a +75171553ns 1341821 1c000e84 00130313 addi x6, x6, 1 x6=1c00a64f x6:1c00a64e +75171573ns 1341822 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000239 +75171652ns 1341826 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a64f PA:1c00a64f +75171672ns 1341827 1c000e82 fff60613 addi x12, x12, -1 x12=00000238 x12:00000239 +75171692ns 1341828 1c000e84 00130313 addi x6, x6, 1 x6=1c00a650 x6:1c00a64f +75171712ns 1341829 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000238 +75171791ns 1341833 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a650 PA:1c00a650 +75171811ns 1341834 1c000e82 fff60613 addi x12, x12, -1 x12=00000237 x12:00000238 +75171830ns 1341835 1c000e84 00130313 addi x6, x6, 1 x6=1c00a651 x6:1c00a650 +75171850ns 1341836 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000237 +75171929ns 1341840 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a651 PA:1c00a651 +75171949ns 1341841 1c000e82 fff60613 addi x12, x12, -1 x12=00000236 x12:00000237 +75171969ns 1341842 1c000e84 00130313 addi x6, x6, 1 x6=1c00a652 x6:1c00a651 +75171989ns 1341843 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000236 +75172068ns 1341847 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a652 PA:1c00a652 +75172088ns 1341848 1c000e82 fff60613 addi x12, x12, -1 x12=00000235 x12:00000236 +75172108ns 1341849 1c000e84 00130313 addi x6, x6, 1 x6=1c00a653 x6:1c00a652 +75172127ns 1341850 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000235 +75172207ns 1341854 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a653 PA:1c00a653 +75172226ns 1341855 1c000e82 fff60613 addi x12, x12, -1 x12=00000234 x12:00000235 +75172246ns 1341856 1c000e84 00130313 addi x6, x6, 1 x6=1c00a654 x6:1c00a653 +75172266ns 1341857 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000234 +75172345ns 1341861 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a654 PA:1c00a654 +75172365ns 1341862 1c000e82 fff60613 addi x12, x12, -1 x12=00000233 x12:00000234 +75172385ns 1341863 1c000e84 00130313 addi x6, x6, 1 x6=1c00a655 x6:1c00a654 +75172404ns 1341864 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000233 +75172484ns 1341868 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a655 PA:1c00a655 +75172503ns 1341869 1c000e82 fff60613 addi x12, x12, -1 x12=00000232 x12:00000233 +75172523ns 1341870 1c000e84 00130313 addi x6, x6, 1 x6=1c00a656 x6:1c00a655 +75172543ns 1341871 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000232 +75172622ns 1341875 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a656 PA:1c00a656 +75172642ns 1341876 1c000e82 fff60613 addi x12, x12, -1 x12=00000231 x12:00000232 +75172662ns 1341877 1c000e84 00130313 addi x6, x6, 1 x6=1c00a657 x6:1c00a656 +75172682ns 1341878 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000231 +75172761ns 1341882 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a657 PA:1c00a657 +75172780ns 1341883 1c000e82 fff60613 addi x12, x12, -1 x12=00000230 x12:00000231 +75172800ns 1341884 1c000e84 00130313 addi x6, x6, 1 x6=1c00a658 x6:1c00a657 +75172820ns 1341885 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000230 +75172899ns 1341889 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a658 PA:1c00a658 +75172919ns 1341890 1c000e82 fff60613 addi x12, x12, -1 x12=0000022f x12:00000230 +75172939ns 1341891 1c000e84 00130313 addi x6, x6, 1 x6=1c00a659 x6:1c00a658 +75172959ns 1341892 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000022f +75173038ns 1341896 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a659 PA:1c00a659 +75173058ns 1341897 1c000e82 fff60613 addi x12, x12, -1 x12=0000022e x12:0000022f +75173077ns 1341898 1c000e84 00130313 addi x6, x6, 1 x6=1c00a65a x6:1c00a659 +75173097ns 1341899 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000022e +75173176ns 1341903 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a65a PA:1c00a65a +75173196ns 1341904 1c000e82 fff60613 addi x12, x12, -1 x12=0000022d x12:0000022e +75173216ns 1341905 1c000e84 00130313 addi x6, x6, 1 x6=1c00a65b x6:1c00a65a +75173236ns 1341906 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000022d +75173315ns 1341910 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a65b PA:1c00a65b +75173335ns 1341911 1c000e82 fff60613 addi x12, x12, -1 x12=0000022c x12:0000022d +75173354ns 1341912 1c000e84 00130313 addi x6, x6, 1 x6=1c00a65c x6:1c00a65b +75173374ns 1341913 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000022c +75173453ns 1341917 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a65c PA:1c00a65c +75173473ns 1341918 1c000e82 fff60613 addi x12, x12, -1 x12=0000022b x12:0000022c +75173493ns 1341919 1c000e84 00130313 addi x6, x6, 1 x6=1c00a65d x6:1c00a65c +75173513ns 1341920 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000022b +75173592ns 1341924 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a65d PA:1c00a65d +75173612ns 1341925 1c000e82 fff60613 addi x12, x12, -1 x12=0000022a x12:0000022b +75173632ns 1341926 1c000e84 00130313 addi x6, x6, 1 x6=1c00a65e x6:1c00a65d +75173651ns 1341927 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000022a +75173731ns 1341931 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a65e PA:1c00a65e +75173750ns 1341932 1c000e82 fff60613 addi x12, x12, -1 x12=00000229 x12:0000022a +75173770ns 1341933 1c000e84 00130313 addi x6, x6, 1 x6=1c00a65f x6:1c00a65e +75173790ns 1341934 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000229 +75173869ns 1341938 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a65f PA:1c00a65f +75173889ns 1341939 1c000e82 fff60613 addi x12, x12, -1 x12=00000228 x12:00000229 +75173909ns 1341940 1c000e84 00130313 addi x6, x6, 1 x6=1c00a660 x6:1c00a65f +75173928ns 1341941 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000228 +75174008ns 1341945 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a660 PA:1c00a660 +75174027ns 1341946 1c000e82 fff60613 addi x12, x12, -1 x12=00000227 x12:00000228 +75174047ns 1341947 1c000e84 00130313 addi x6, x6, 1 x6=1c00a661 x6:1c00a660 +75174067ns 1341948 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000227 +75174146ns 1341952 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a661 PA:1c00a661 +75174166ns 1341953 1c000e82 fff60613 addi x12, x12, -1 x12=00000226 x12:00000227 +75174186ns 1341954 1c000e84 00130313 addi x6, x6, 1 x6=1c00a662 x6:1c00a661 +75174206ns 1341955 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000226 +75174285ns 1341959 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a662 PA:1c00a662 +75174304ns 1341960 1c000e82 fff60613 addi x12, x12, -1 x12=00000225 x12:00000226 +75174324ns 1341961 1c000e84 00130313 addi x6, x6, 1 x6=1c00a663 x6:1c00a662 +75174344ns 1341962 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000225 +75174423ns 1341966 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a663 PA:1c00a663 +75174443ns 1341967 1c000e82 fff60613 addi x12, x12, -1 x12=00000224 x12:00000225 +75174463ns 1341968 1c000e84 00130313 addi x6, x6, 1 x6=1c00a664 x6:1c00a663 +75174483ns 1341969 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000224 +75174562ns 1341973 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a664 PA:1c00a664 +75174582ns 1341974 1c000e82 fff60613 addi x12, x12, -1 x12=00000223 x12:00000224 +75174601ns 1341975 1c000e84 00130313 addi x6, x6, 1 x6=1c00a665 x6:1c00a664 +75174621ns 1341976 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000223 +75174700ns 1341980 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a665 PA:1c00a665 +75174720ns 1341981 1c000e82 fff60613 addi x12, x12, -1 x12=00000222 x12:00000223 +75174740ns 1341982 1c000e84 00130313 addi x6, x6, 1 x6=1c00a666 x6:1c00a665 +75174760ns 1341983 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000222 +75174839ns 1341987 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a666 PA:1c00a666 +75174859ns 1341988 1c000e82 fff60613 addi x12, x12, -1 x12=00000221 x12:00000222 +75174878ns 1341989 1c000e84 00130313 addi x6, x6, 1 x6=1c00a667 x6:1c00a666 +75174898ns 1341990 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000221 +75174977ns 1341994 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a667 PA:1c00a667 +75174997ns 1341995 1c000e82 fff60613 addi x12, x12, -1 x12=00000220 x12:00000221 +75175017ns 1341996 1c000e84 00130313 addi x6, x6, 1 x6=1c00a668 x6:1c00a667 +75175037ns 1341997 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000220 +75175116ns 1342001 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a668 PA:1c00a668 +75175136ns 1342002 1c000e82 fff60613 addi x12, x12, -1 x12=0000021f x12:00000220 +75175156ns 1342003 1c000e84 00130313 addi x6, x6, 1 x6=1c00a669 x6:1c00a668 +75175175ns 1342004 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000021f +75175254ns 1342008 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a669 PA:1c00a669 +75175274ns 1342009 1c000e82 fff60613 addi x12, x12, -1 x12=0000021e x12:0000021f +75175294ns 1342010 1c000e84 00130313 addi x6, x6, 1 x6=1c00a66a x6:1c00a669 +75175314ns 1342011 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000021e +75175393ns 1342015 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a66a PA:1c00a66a +75175413ns 1342016 1c000e82 fff60613 addi x12, x12, -1 x12=0000021d x12:0000021e +75175433ns 1342017 1c000e84 00130313 addi x6, x6, 1 x6=1c00a66b x6:1c00a66a +75175452ns 1342018 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000021d +75175532ns 1342022 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a66b PA:1c00a66b +75175551ns 1342023 1c000e82 fff60613 addi x12, x12, -1 x12=0000021c x12:0000021d +75175571ns 1342024 1c000e84 00130313 addi x6, x6, 1 x6=1c00a66c x6:1c00a66b +75175591ns 1342025 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000021c +75175670ns 1342029 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a66c PA:1c00a66c +75175690ns 1342030 1c000e82 fff60613 addi x12, x12, -1 x12=0000021b x12:0000021c +75175710ns 1342031 1c000e84 00130313 addi x6, x6, 1 x6=1c00a66d x6:1c00a66c +75175729ns 1342032 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000021b +75175809ns 1342036 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a66d PA:1c00a66d +75175828ns 1342037 1c000e82 fff60613 addi x12, x12, -1 x12=0000021a x12:0000021b +75175848ns 1342038 1c000e84 00130313 addi x6, x6, 1 x6=1c00a66e x6:1c00a66d +75175868ns 1342039 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000021a +75175947ns 1342043 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a66e PA:1c00a66e +75175967ns 1342044 1c000e82 fff60613 addi x12, x12, -1 x12=00000219 x12:0000021a +75175987ns 1342045 1c000e84 00130313 addi x6, x6, 1 x6=1c00a66f x6:1c00a66e +75176007ns 1342046 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000219 +75176086ns 1342050 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a66f PA:1c00a66f +75176106ns 1342051 1c000e82 fff60613 addi x12, x12, -1 x12=00000218 x12:00000219 +75176125ns 1342052 1c000e84 00130313 addi x6, x6, 1 x6=1c00a670 x6:1c00a66f +75176145ns 1342053 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000218 +75176224ns 1342057 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a670 PA:1c00a670 +75176244ns 1342058 1c000e82 fff60613 addi x12, x12, -1 x12=00000217 x12:00000218 +75176264ns 1342059 1c000e84 00130313 addi x6, x6, 1 x6=1c00a671 x6:1c00a670 +75176284ns 1342060 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000217 +75176363ns 1342064 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a671 PA:1c00a671 +75176383ns 1342065 1c000e82 fff60613 addi x12, x12, -1 x12=00000216 x12:00000217 +75176402ns 1342066 1c000e84 00130313 addi x6, x6, 1 x6=1c00a672 x6:1c00a671 +75176422ns 1342067 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000216 +75176501ns 1342071 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a672 PA:1c00a672 +75176521ns 1342072 1c000e82 fff60613 addi x12, x12, -1 x12=00000215 x12:00000216 +75176541ns 1342073 1c000e84 00130313 addi x6, x6, 1 x6=1c00a673 x6:1c00a672 +75176561ns 1342074 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000215 +75176640ns 1342078 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a673 PA:1c00a673 +75176660ns 1342079 1c000e82 fff60613 addi x12, x12, -1 x12=00000214 x12:00000215 +75176680ns 1342080 1c000e84 00130313 addi x6, x6, 1 x6=1c00a674 x6:1c00a673 +75176699ns 1342081 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000214 +75176778ns 1342085 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a674 PA:1c00a674 +75176798ns 1342086 1c000e82 fff60613 addi x12, x12, -1 x12=00000213 x12:00000214 +75176818ns 1342087 1c000e84 00130313 addi x6, x6, 1 x6=1c00a675 x6:1c00a674 +75176838ns 1342088 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000213 +75176917ns 1342092 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a675 PA:1c00a675 +75176937ns 1342093 1c000e82 fff60613 addi x12, x12, -1 x12=00000212 x12:00000213 +75176957ns 1342094 1c000e84 00130313 addi x6, x6, 1 x6=1c00a676 x6:1c00a675 +75176976ns 1342095 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000212 +75177056ns 1342099 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a676 PA:1c00a676 +75177075ns 1342100 1c000e82 fff60613 addi x12, x12, -1 x12=00000211 x12:00000212 +75177095ns 1342101 1c000e84 00130313 addi x6, x6, 1 x6=1c00a677 x6:1c00a676 +75177115ns 1342102 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000211 +75177194ns 1342106 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a677 PA:1c00a677 +75177214ns 1342107 1c000e82 fff60613 addi x12, x12, -1 x12=00000210 x12:00000211 +75177234ns 1342108 1c000e84 00130313 addi x6, x6, 1 x6=1c00a678 x6:1c00a677 +75177253ns 1342109 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000210 +75177333ns 1342113 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a678 PA:1c00a678 +75177352ns 1342114 1c000e82 fff60613 addi x12, x12, -1 x12=0000020f x12:00000210 +75177372ns 1342115 1c000e84 00130313 addi x6, x6, 1 x6=1c00a679 x6:1c00a678 +75177392ns 1342116 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000020f +75177471ns 1342120 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a679 PA:1c00a679 +75177491ns 1342121 1c000e82 fff60613 addi x12, x12, -1 x12=0000020e x12:0000020f +75177511ns 1342122 1c000e84 00130313 addi x6, x6, 1 x6=1c00a67a x6:1c00a679 +75177531ns 1342123 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000020e +75177610ns 1342127 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a67a PA:1c00a67a +75177630ns 1342128 1c000e82 fff60613 addi x12, x12, -1 x12=0000020d x12:0000020e +75177649ns 1342129 1c000e84 00130313 addi x6, x6, 1 x6=1c00a67b x6:1c00a67a +75177669ns 1342130 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000020d +75177748ns 1342134 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a67b PA:1c00a67b +75177768ns 1342135 1c000e82 fff60613 addi x12, x12, -1 x12=0000020c x12:0000020d +75177788ns 1342136 1c000e84 00130313 addi x6, x6, 1 x6=1c00a67c x6:1c00a67b +75177808ns 1342137 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000020c +75177887ns 1342141 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a67c PA:1c00a67c +75177907ns 1342142 1c000e82 fff60613 addi x12, x12, -1 x12=0000020b x12:0000020c +75177926ns 1342143 1c000e84 00130313 addi x6, x6, 1 x6=1c00a67d x6:1c00a67c +75177946ns 1342144 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000020b +75178025ns 1342148 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a67d PA:1c00a67d +75178045ns 1342149 1c000e82 fff60613 addi x12, x12, -1 x12=0000020a x12:0000020b +75178065ns 1342150 1c000e84 00130313 addi x6, x6, 1 x6=1c00a67e x6:1c00a67d +75178085ns 1342151 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000020a +75178164ns 1342155 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a67e PA:1c00a67e +75178184ns 1342156 1c000e82 fff60613 addi x12, x12, -1 x12=00000209 x12:0000020a +75178203ns 1342157 1c000e84 00130313 addi x6, x6, 1 x6=1c00a67f x6:1c00a67e +75178223ns 1342158 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000209 +75178302ns 1342162 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a67f PA:1c00a67f +75178322ns 1342163 1c000e82 fff60613 addi x12, x12, -1 x12=00000208 x12:00000209 +75178342ns 1342164 1c000e84 00130313 addi x6, x6, 1 x6=1c00a680 x6:1c00a67f +75178362ns 1342165 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000208 +75178441ns 1342169 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a680 PA:1c00a680 +75178461ns 1342170 1c000e82 fff60613 addi x12, x12, -1 x12=00000207 x12:00000208 +75178481ns 1342171 1c000e84 00130313 addi x6, x6, 1 x6=1c00a681 x6:1c00a680 +75178500ns 1342172 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000207 +75178580ns 1342176 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a681 PA:1c00a681 +75178599ns 1342177 1c000e82 fff60613 addi x12, x12, -1 x12=00000206 x12:00000207 +75178619ns 1342178 1c000e84 00130313 addi x6, x6, 1 x6=1c00a682 x6:1c00a681 +75178639ns 1342179 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000206 +75178718ns 1342183 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a682 PA:1c00a682 +75178738ns 1342184 1c000e82 fff60613 addi x12, x12, -1 x12=00000205 x12:00000206 +75178758ns 1342185 1c000e84 00130313 addi x6, x6, 1 x6=1c00a683 x6:1c00a682 +75178777ns 1342186 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000205 +75178857ns 1342190 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a683 PA:1c00a683 +75178876ns 1342191 1c000e82 fff60613 addi x12, x12, -1 x12=00000204 x12:00000205 +75178896ns 1342192 1c000e84 00130313 addi x6, x6, 1 x6=1c00a684 x6:1c00a683 +75178916ns 1342193 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000204 +75178995ns 1342197 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a684 PA:1c00a684 +75179015ns 1342198 1c000e82 fff60613 addi x12, x12, -1 x12=00000203 x12:00000204 +75179035ns 1342199 1c000e84 00130313 addi x6, x6, 1 x6=1c00a685 x6:1c00a684 +75179055ns 1342200 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000203 +75179134ns 1342204 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a685 PA:1c00a685 +75179154ns 1342205 1c000e82 fff60613 addi x12, x12, -1 x12=00000202 x12:00000203 +75179173ns 1342206 1c000e84 00130313 addi x6, x6, 1 x6=1c00a686 x6:1c00a685 +75179193ns 1342207 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000202 +75179272ns 1342211 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a686 PA:1c00a686 +75179292ns 1342212 1c000e82 fff60613 addi x12, x12, -1 x12=00000201 x12:00000202 +75179312ns 1342213 1c000e84 00130313 addi x6, x6, 1 x6=1c00a687 x6:1c00a686 +75179332ns 1342214 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000201 +75179411ns 1342218 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a687 PA:1c00a687 +75179431ns 1342219 1c000e82 fff60613 addi x12, x12, -1 x12=00000200 x12:00000201 +75179450ns 1342220 1c000e84 00130313 addi x6, x6, 1 x6=1c00a688 x6:1c00a687 +75179470ns 1342221 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000200 +75179549ns 1342225 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a688 PA:1c00a688 +75179569ns 1342226 1c000e82 fff60613 addi x12, x12, -1 x12=000001ff x12:00000200 +75179589ns 1342227 1c000e84 00130313 addi x6, x6, 1 x6=1c00a689 x6:1c00a688 +75179609ns 1342228 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ff +75179688ns 1342232 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a689 PA:1c00a689 +75179708ns 1342233 1c000e82 fff60613 addi x12, x12, -1 x12=000001fe x12:000001ff +75179727ns 1342234 1c000e84 00130313 addi x6, x6, 1 x6=1c00a68a x6:1c00a689 +75179747ns 1342235 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001fe +75179826ns 1342239 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a68a PA:1c00a68a +75179846ns 1342240 1c000e82 fff60613 addi x12, x12, -1 x12=000001fd x12:000001fe +75179866ns 1342241 1c000e84 00130313 addi x6, x6, 1 x6=1c00a68b x6:1c00a68a +75179886ns 1342242 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001fd +75179965ns 1342246 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a68b PA:1c00a68b +75179985ns 1342247 1c000e82 fff60613 addi x12, x12, -1 x12=000001fc x12:000001fd +75180005ns 1342248 1c000e84 00130313 addi x6, x6, 1 x6=1c00a68c x6:1c00a68b +75180024ns 1342249 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001fc +75180104ns 1342253 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a68c PA:1c00a68c +75180123ns 1342254 1c000e82 fff60613 addi x12, x12, -1 x12=000001fb x12:000001fc +75180143ns 1342255 1c000e84 00130313 addi x6, x6, 1 x6=1c00a68d x6:1c00a68c +75180163ns 1342256 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001fb +75180242ns 1342260 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a68d PA:1c00a68d +75180262ns 1342261 1c000e82 fff60613 addi x12, x12, -1 x12=000001fa x12:000001fb +75180282ns 1342262 1c000e84 00130313 addi x6, x6, 1 x6=1c00a68e x6:1c00a68d +75180301ns 1342263 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001fa +75180381ns 1342267 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a68e PA:1c00a68e +75180400ns 1342268 1c000e82 fff60613 addi x12, x12, -1 x12=000001f9 x12:000001fa +75180420ns 1342269 1c000e84 00130313 addi x6, x6, 1 x6=1c00a68f x6:1c00a68e +75180440ns 1342270 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001f9 +75180519ns 1342274 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a68f PA:1c00a68f +75180539ns 1342275 1c000e82 fff60613 addi x12, x12, -1 x12=000001f8 x12:000001f9 +75180559ns 1342276 1c000e84 00130313 addi x6, x6, 1 x6=1c00a690 x6:1c00a68f +75180579ns 1342277 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001f8 +75180658ns 1342281 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a690 PA:1c00a690 +75180677ns 1342282 1c000e82 fff60613 addi x12, x12, -1 x12=000001f7 x12:000001f8 +75180697ns 1342283 1c000e84 00130313 addi x6, x6, 1 x6=1c00a691 x6:1c00a690 +75180717ns 1342284 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001f7 +75180796ns 1342288 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a691 PA:1c00a691 +75180816ns 1342289 1c000e82 fff60613 addi x12, x12, -1 x12=000001f6 x12:000001f7 +75180836ns 1342290 1c000e84 00130313 addi x6, x6, 1 x6=1c00a692 x6:1c00a691 +75180856ns 1342291 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001f6 +75180935ns 1342295 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a692 PA:1c00a692 +75180955ns 1342296 1c000e82 fff60613 addi x12, x12, -1 x12=000001f5 x12:000001f6 +75180974ns 1342297 1c000e84 00130313 addi x6, x6, 1 x6=1c00a693 x6:1c00a692 +75180994ns 1342298 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001f5 +75181073ns 1342302 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a693 PA:1c00a693 +75181093ns 1342303 1c000e82 fff60613 addi x12, x12, -1 x12=000001f4 x12:000001f5 +75181113ns 1342304 1c000e84 00130313 addi x6, x6, 1 x6=1c00a694 x6:1c00a693 +75181133ns 1342305 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001f4 +75181212ns 1342309 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a694 PA:1c00a694 +75181232ns 1342310 1c000e82 fff60613 addi x12, x12, -1 x12=000001f3 x12:000001f4 +75181251ns 1342311 1c000e84 00130313 addi x6, x6, 1 x6=1c00a695 x6:1c00a694 +75181271ns 1342312 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001f3 +75181350ns 1342316 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a695 PA:1c00a695 +75181370ns 1342317 1c000e82 fff60613 addi x12, x12, -1 x12=000001f2 x12:000001f3 +75181390ns 1342318 1c000e84 00130313 addi x6, x6, 1 x6=1c00a696 x6:1c00a695 +75181410ns 1342319 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001f2 +75181489ns 1342323 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a696 PA:1c00a696 +75181509ns 1342324 1c000e82 fff60613 addi x12, x12, -1 x12=000001f1 x12:000001f2 +75181529ns 1342325 1c000e84 00130313 addi x6, x6, 1 x6=1c00a697 x6:1c00a696 +75181548ns 1342326 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001f1 +75181628ns 1342330 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a697 PA:1c00a697 +75181647ns 1342331 1c000e82 fff60613 addi x12, x12, -1 x12=000001f0 x12:000001f1 +75181667ns 1342332 1c000e84 00130313 addi x6, x6, 1 x6=1c00a698 x6:1c00a697 +75181687ns 1342333 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001f0 +75181766ns 1342337 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a698 PA:1c00a698 +75181786ns 1342338 1c000e82 fff60613 addi x12, x12, -1 x12=000001ef x12:000001f0 +75181806ns 1342339 1c000e84 00130313 addi x6, x6, 1 x6=1c00a699 x6:1c00a698 +75181825ns 1342340 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ef +75181905ns 1342344 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a699 PA:1c00a699 +75181924ns 1342345 1c000e82 fff60613 addi x12, x12, -1 x12=000001ee x12:000001ef +75181944ns 1342346 1c000e84 00130313 addi x6, x6, 1 x6=1c00a69a x6:1c00a699 +75181964ns 1342347 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ee +75182043ns 1342351 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a69a PA:1c00a69a +75182063ns 1342352 1c000e82 fff60613 addi x12, x12, -1 x12=000001ed x12:000001ee +75182083ns 1342353 1c000e84 00130313 addi x6, x6, 1 x6=1c00a69b x6:1c00a69a +75182103ns 1342354 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ed +75182182ns 1342358 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a69b PA:1c00a69b +75182201ns 1342359 1c000e82 fff60613 addi x12, x12, -1 x12=000001ec x12:000001ed +75182221ns 1342360 1c000e84 00130313 addi x6, x6, 1 x6=1c00a69c x6:1c00a69b +75182241ns 1342361 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ec +75182320ns 1342365 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a69c PA:1c00a69c +75182340ns 1342366 1c000e82 fff60613 addi x12, x12, -1 x12=000001eb x12:000001ec +75182360ns 1342367 1c000e84 00130313 addi x6, x6, 1 x6=1c00a69d x6:1c00a69c +75182380ns 1342368 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001eb +75182459ns 1342372 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a69d PA:1c00a69d +75182479ns 1342373 1c000e82 fff60613 addi x12, x12, -1 x12=000001ea x12:000001eb +75182498ns 1342374 1c000e84 00130313 addi x6, x6, 1 x6=1c00a69e x6:1c00a69d +75182518ns 1342375 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ea +75182597ns 1342379 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a69e PA:1c00a69e +75182617ns 1342380 1c000e82 fff60613 addi x12, x12, -1 x12=000001e9 x12:000001ea +75182637ns 1342381 1c000e84 00130313 addi x6, x6, 1 x6=1c00a69f x6:1c00a69e +75182657ns 1342382 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001e9 +75182736ns 1342386 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a69f PA:1c00a69f +75182756ns 1342387 1c000e82 fff60613 addi x12, x12, -1 x12=000001e8 x12:000001e9 +75182775ns 1342388 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6a0 x6:1c00a69f +75182795ns 1342389 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001e8 +75182874ns 1342393 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6a0 PA:1c00a6a0 +75182894ns 1342394 1c000e82 fff60613 addi x12, x12, -1 x12=000001e7 x12:000001e8 +75182914ns 1342395 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6a1 x6:1c00a6a0 +75182934ns 1342396 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001e7 +75183013ns 1342400 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6a1 PA:1c00a6a1 +75183033ns 1342401 1c000e82 fff60613 addi x12, x12, -1 x12=000001e6 x12:000001e7 +75183053ns 1342402 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6a2 x6:1c00a6a1 +75183072ns 1342403 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001e6 +75183151ns 1342407 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6a2 PA:1c00a6a2 +75183171ns 1342408 1c000e82 fff60613 addi x12, x12, -1 x12=000001e5 x12:000001e6 +75183191ns 1342409 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6a3 x6:1c00a6a2 +75183211ns 1342410 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001e5 +75183290ns 1342414 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6a3 PA:1c00a6a3 +75183310ns 1342415 1c000e82 fff60613 addi x12, x12, -1 x12=000001e4 x12:000001e5 +75183330ns 1342416 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6a4 x6:1c00a6a3 +75183349ns 1342417 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001e4 +75183429ns 1342421 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6a4 PA:1c00a6a4 +75183448ns 1342422 1c000e82 fff60613 addi x12, x12, -1 x12=000001e3 x12:000001e4 +75183468ns 1342423 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6a5 x6:1c00a6a4 +75183488ns 1342424 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001e3 +75183567ns 1342428 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6a5 PA:1c00a6a5 +75183587ns 1342429 1c000e82 fff60613 addi x12, x12, -1 x12=000001e2 x12:000001e3 +75183607ns 1342430 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6a6 x6:1c00a6a5 +75183627ns 1342431 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001e2 +75183706ns 1342435 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6a6 PA:1c00a6a6 +75183725ns 1342436 1c000e82 fff60613 addi x12, x12, -1 x12=000001e1 x12:000001e2 +75183745ns 1342437 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6a7 x6:1c00a6a6 +75183765ns 1342438 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001e1 +75183844ns 1342442 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6a7 PA:1c00a6a7 +75183864ns 1342443 1c000e82 fff60613 addi x12, x12, -1 x12=000001e0 x12:000001e1 +75183884ns 1342444 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6a8 x6:1c00a6a7 +75183904ns 1342445 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001e0 +75183983ns 1342449 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6a8 PA:1c00a6a8 +75184003ns 1342450 1c000e82 fff60613 addi x12, x12, -1 x12=000001df x12:000001e0 +75184022ns 1342451 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6a9 x6:1c00a6a8 +75184042ns 1342452 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001df +75184121ns 1342456 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6a9 PA:1c00a6a9 +75184141ns 1342457 1c000e82 fff60613 addi x12, x12, -1 x12=000001de x12:000001df +75184161ns 1342458 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6aa x6:1c00a6a9 +75184181ns 1342459 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001de +75184260ns 1342463 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6aa PA:1c00a6aa +75184280ns 1342464 1c000e82 fff60613 addi x12, x12, -1 x12=000001dd x12:000001de +75184299ns 1342465 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6ab x6:1c00a6aa +75184319ns 1342466 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001dd +75184398ns 1342470 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6ab PA:1c00a6ab +75184418ns 1342471 1c000e82 fff60613 addi x12, x12, -1 x12=000001dc x12:000001dd +75184438ns 1342472 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6ac x6:1c00a6ab +75184458ns 1342473 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001dc +75184537ns 1342477 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6ac PA:1c00a6ac +75184557ns 1342478 1c000e82 fff60613 addi x12, x12, -1 x12=000001db x12:000001dc +75184577ns 1342479 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6ad x6:1c00a6ac +75184596ns 1342480 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001db +75184675ns 1342484 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6ad PA:1c00a6ad +75184695ns 1342485 1c000e82 fff60613 addi x12, x12, -1 x12=000001da x12:000001db +75184715ns 1342486 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6ae x6:1c00a6ad +75184735ns 1342487 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001da +75184814ns 1342491 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6ae PA:1c00a6ae +75184834ns 1342492 1c000e82 fff60613 addi x12, x12, -1 x12=000001d9 x12:000001da +75184854ns 1342493 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6af x6:1c00a6ae +75184873ns 1342494 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001d9 +75184953ns 1342498 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6af PA:1c00a6af +75184972ns 1342499 1c000e82 fff60613 addi x12, x12, -1 x12=000001d8 x12:000001d9 +75184992ns 1342500 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6b0 x6:1c00a6af +75185012ns 1342501 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001d8 +75185091ns 1342505 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6b0 PA:1c00a6b0 +75185111ns 1342506 1c000e82 fff60613 addi x12, x12, -1 x12=000001d7 x12:000001d8 +75185131ns 1342507 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6b1 x6:1c00a6b0 +75185150ns 1342508 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001d7 +75185230ns 1342512 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6b1 PA:1c00a6b1 +75185249ns 1342513 1c000e82 fff60613 addi x12, x12, -1 x12=000001d6 x12:000001d7 +75185269ns 1342514 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6b2 x6:1c00a6b1 +75185289ns 1342515 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001d6 +75185368ns 1342519 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6b2 PA:1c00a6b2 +75185388ns 1342520 1c000e82 fff60613 addi x12, x12, -1 x12=000001d5 x12:000001d6 +75185408ns 1342521 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6b3 x6:1c00a6b2 +75185428ns 1342522 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001d5 +75185507ns 1342526 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6b3 PA:1c00a6b3 +75185527ns 1342527 1c000e82 fff60613 addi x12, x12, -1 x12=000001d4 x12:000001d5 +75185546ns 1342528 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6b4 x6:1c00a6b3 +75185566ns 1342529 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001d4 +75185645ns 1342533 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6b4 PA:1c00a6b4 +75185665ns 1342534 1c000e82 fff60613 addi x12, x12, -1 x12=000001d3 x12:000001d4 +75185685ns 1342535 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6b5 x6:1c00a6b4 +75185705ns 1342536 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001d3 +75185784ns 1342540 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6b5 PA:1c00a6b5 +75185804ns 1342541 1c000e82 fff60613 addi x12, x12, -1 x12=000001d2 x12:000001d3 +75185823ns 1342542 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6b6 x6:1c00a6b5 +75185843ns 1342543 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001d2 +75185922ns 1342547 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6b6 PA:1c00a6b6 +75185942ns 1342548 1c000e82 fff60613 addi x12, x12, -1 x12=000001d1 x12:000001d2 +75185962ns 1342549 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6b7 x6:1c00a6b6 +75185982ns 1342550 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001d1 +75186061ns 1342554 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6b7 PA:1c00a6b7 +75186081ns 1342555 1c000e82 fff60613 addi x12, x12, -1 x12=000001d0 x12:000001d1 +75186101ns 1342556 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6b8 x6:1c00a6b7 +75186120ns 1342557 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001d0 +75186199ns 1342561 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6b8 PA:1c00a6b8 +75186219ns 1342562 1c000e82 fff60613 addi x12, x12, -1 x12=000001cf x12:000001d0 +75186239ns 1342563 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6b9 x6:1c00a6b8 +75186259ns 1342564 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001cf +75186338ns 1342568 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6b9 PA:1c00a6b9 +75186358ns 1342569 1c000e82 fff60613 addi x12, x12, -1 x12=000001ce x12:000001cf +75186378ns 1342570 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6ba x6:1c00a6b9 +75186397ns 1342571 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ce +75186477ns 1342575 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6ba PA:1c00a6ba +75186496ns 1342576 1c000e82 fff60613 addi x12, x12, -1 x12=000001cd x12:000001ce +75186516ns 1342577 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6bb x6:1c00a6ba +75186536ns 1342578 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001cd +75186615ns 1342582 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6bb PA:1c00a6bb +75186635ns 1342583 1c000e82 fff60613 addi x12, x12, -1 x12=000001cc x12:000001cd +75186655ns 1342584 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6bc x6:1c00a6bb +75186674ns 1342585 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001cc +75186754ns 1342589 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6bc PA:1c00a6bc +75186773ns 1342590 1c000e82 fff60613 addi x12, x12, -1 x12=000001cb x12:000001cc +75186793ns 1342591 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6bd x6:1c00a6bc +75186813ns 1342592 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001cb +75186892ns 1342596 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6bd PA:1c00a6bd +75186912ns 1342597 1c000e82 fff60613 addi x12, x12, -1 x12=000001ca x12:000001cb +75186932ns 1342598 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6be x6:1c00a6bd +75186952ns 1342599 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ca +75187031ns 1342603 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6be PA:1c00a6be +75187051ns 1342604 1c000e82 fff60613 addi x12, x12, -1 x12=000001c9 x12:000001ca +75187070ns 1342605 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6bf x6:1c00a6be +75187090ns 1342606 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001c9 +75187169ns 1342610 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6bf PA:1c00a6bf +75187189ns 1342611 1c000e82 fff60613 addi x12, x12, -1 x12=000001c8 x12:000001c9 +75187209ns 1342612 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6c0 x6:1c00a6bf +75187229ns 1342613 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001c8 +75187308ns 1342617 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6c0 PA:1c00a6c0 +75187328ns 1342618 1c000e82 fff60613 addi x12, x12, -1 x12=000001c7 x12:000001c8 +75187347ns 1342619 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6c1 x6:1c00a6c0 +75187367ns 1342620 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001c7 +75187446ns 1342624 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6c1 PA:1c00a6c1 +75187466ns 1342625 1c000e82 fff60613 addi x12, x12, -1 x12=000001c6 x12:000001c7 +75187486ns 1342626 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6c2 x6:1c00a6c1 +75187506ns 1342627 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001c6 +75187585ns 1342631 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6c2 PA:1c00a6c2 +75187605ns 1342632 1c000e82 fff60613 addi x12, x12, -1 x12=000001c5 x12:000001c6 +75187624ns 1342633 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6c3 x6:1c00a6c2 +75187644ns 1342634 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001c5 +75187723ns 1342638 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6c3 PA:1c00a6c3 +75187743ns 1342639 1c000e82 fff60613 addi x12, x12, -1 x12=000001c4 x12:000001c5 +75187763ns 1342640 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6c4 x6:1c00a6c3 +75187783ns 1342641 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001c4 +75187862ns 1342645 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6c4 PA:1c00a6c4 +75187882ns 1342646 1c000e82 fff60613 addi x12, x12, -1 x12=000001c3 x12:000001c4 +75187902ns 1342647 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6c5 x6:1c00a6c4 +75187921ns 1342648 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001c3 +75188001ns 1342652 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6c5 PA:1c00a6c5 +75188020ns 1342653 1c000e82 fff60613 addi x12, x12, -1 x12=000001c2 x12:000001c3 +75188040ns 1342654 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6c6 x6:1c00a6c5 +75188060ns 1342655 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001c2 +75188139ns 1342659 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6c6 PA:1c00a6c6 +75188159ns 1342660 1c000e82 fff60613 addi x12, x12, -1 x12=000001c1 x12:000001c2 +75188179ns 1342661 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6c7 x6:1c00a6c6 +75188198ns 1342662 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001c1 +75188278ns 1342666 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6c7 PA:1c00a6c7 +75188297ns 1342667 1c000e82 fff60613 addi x12, x12, -1 x12=000001c0 x12:000001c1 +75188317ns 1342668 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6c8 x6:1c00a6c7 +75188337ns 1342669 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001c0 +75188416ns 1342673 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6c8 PA:1c00a6c8 +75188436ns 1342674 1c000e82 fff60613 addi x12, x12, -1 x12=000001bf x12:000001c0 +75188456ns 1342675 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6c9 x6:1c00a6c8 +75188476ns 1342676 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001bf +75188555ns 1342680 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6c9 PA:1c00a6c9 +75188575ns 1342681 1c000e82 fff60613 addi x12, x12, -1 x12=000001be x12:000001bf +75188594ns 1342682 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6ca x6:1c00a6c9 +75188614ns 1342683 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001be +75188693ns 1342687 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6ca PA:1c00a6ca +75188713ns 1342688 1c000e82 fff60613 addi x12, x12, -1 x12=000001bd x12:000001be +75188733ns 1342689 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6cb x6:1c00a6ca +75188753ns 1342690 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001bd +75188832ns 1342694 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6cb PA:1c00a6cb +75188852ns 1342695 1c000e82 fff60613 addi x12, x12, -1 x12=000001bc x12:000001bd +75188871ns 1342696 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6cc x6:1c00a6cb +75188891ns 1342697 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001bc +75188970ns 1342701 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6cc PA:1c00a6cc +75188990ns 1342702 1c000e82 fff60613 addi x12, x12, -1 x12=000001bb x12:000001bc +75189010ns 1342703 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6cd x6:1c00a6cc +75189030ns 1342704 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001bb +75189109ns 1342708 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6cd PA:1c00a6cd +75189129ns 1342709 1c000e82 fff60613 addi x12, x12, -1 x12=000001ba x12:000001bb +75189148ns 1342710 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6ce x6:1c00a6cd +75189168ns 1342711 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ba +75189247ns 1342715 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6ce PA:1c00a6ce +75189267ns 1342716 1c000e82 fff60613 addi x12, x12, -1 x12=000001b9 x12:000001ba +75189287ns 1342717 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6cf x6:1c00a6ce +75189307ns 1342718 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001b9 +75189386ns 1342722 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6cf PA:1c00a6cf +75189406ns 1342723 1c000e82 fff60613 addi x12, x12, -1 x12=000001b8 x12:000001b9 +75189426ns 1342724 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6d0 x6:1c00a6cf +75189445ns 1342725 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001b8 +75189525ns 1342729 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6d0 PA:1c00a6d0 +75189544ns 1342730 1c000e82 fff60613 addi x12, x12, -1 x12=000001b7 x12:000001b8 +75189564ns 1342731 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6d1 x6:1c00a6d0 +75189584ns 1342732 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001b7 +75189663ns 1342736 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6d1 PA:1c00a6d1 +75189683ns 1342737 1c000e82 fff60613 addi x12, x12, -1 x12=000001b6 x12:000001b7 +75189703ns 1342738 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6d2 x6:1c00a6d1 +75189722ns 1342739 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001b6 +75189802ns 1342743 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6d2 PA:1c00a6d2 +75189821ns 1342744 1c000e82 fff60613 addi x12, x12, -1 x12=000001b5 x12:000001b6 +75189841ns 1342745 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6d3 x6:1c00a6d2 +75189861ns 1342746 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001b5 +75189940ns 1342750 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6d3 PA:1c00a6d3 +75189960ns 1342751 1c000e82 fff60613 addi x12, x12, -1 x12=000001b4 x12:000001b5 +75189980ns 1342752 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6d4 x6:1c00a6d3 +75190000ns 1342753 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001b4 +75190079ns 1342757 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6d4 PA:1c00a6d4 +75190098ns 1342758 1c000e82 fff60613 addi x12, x12, -1 x12=000001b3 x12:000001b4 +75190118ns 1342759 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6d5 x6:1c00a6d4 +75190138ns 1342760 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001b3 +75190217ns 1342764 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6d5 PA:1c00a6d5 +75190237ns 1342765 1c000e82 fff60613 addi x12, x12, -1 x12=000001b2 x12:000001b3 +75190257ns 1342766 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6d6 x6:1c00a6d5 +75190277ns 1342767 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001b2 +75190356ns 1342771 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6d6 PA:1c00a6d6 +75190376ns 1342772 1c000e82 fff60613 addi x12, x12, -1 x12=000001b1 x12:000001b2 +75190395ns 1342773 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6d7 x6:1c00a6d6 +75190415ns 1342774 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001b1 +75190494ns 1342778 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6d7 PA:1c00a6d7 +75190514ns 1342779 1c000e82 fff60613 addi x12, x12, -1 x12=000001b0 x12:000001b1 +75190534ns 1342780 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6d8 x6:1c00a6d7 +75190554ns 1342781 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001b0 +75190633ns 1342785 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6d8 PA:1c00a6d8 +75190653ns 1342786 1c000e82 fff60613 addi x12, x12, -1 x12=000001af x12:000001b0 +75190672ns 1342787 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6d9 x6:1c00a6d8 +75190692ns 1342788 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001af +75190771ns 1342792 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6d9 PA:1c00a6d9 +75190791ns 1342793 1c000e82 fff60613 addi x12, x12, -1 x12=000001ae x12:000001af +75190811ns 1342794 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6da x6:1c00a6d9 +75190831ns 1342795 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ae +75190910ns 1342799 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6da PA:1c00a6da +75190930ns 1342800 1c000e82 fff60613 addi x12, x12, -1 x12=000001ad x12:000001ae +75190950ns 1342801 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6db x6:1c00a6da +75190969ns 1342802 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ad +75191049ns 1342806 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6db PA:1c00a6db +75191068ns 1342807 1c000e82 fff60613 addi x12, x12, -1 x12=000001ac x12:000001ad +75191088ns 1342808 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6dc x6:1c00a6db +75191108ns 1342809 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ac +75191187ns 1342813 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6dc PA:1c00a6dc +75191207ns 1342814 1c000e82 fff60613 addi x12, x12, -1 x12=000001ab x12:000001ac +75191227ns 1342815 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6dd x6:1c00a6dc +75191246ns 1342816 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ab +75191326ns 1342820 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6dd PA:1c00a6dd +75191345ns 1342821 1c000e82 fff60613 addi x12, x12, -1 x12=000001aa x12:000001ab +75191365ns 1342822 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6de x6:1c00a6dd +75191385ns 1342823 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001aa +75191464ns 1342827 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6de PA:1c00a6de +75191484ns 1342828 1c000e82 fff60613 addi x12, x12, -1 x12=000001a9 x12:000001aa +75191504ns 1342829 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6df x6:1c00a6de +75191524ns 1342830 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001a9 +75191603ns 1342834 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6df PA:1c00a6df +75191622ns 1342835 1c000e82 fff60613 addi x12, x12, -1 x12=000001a8 x12:000001a9 +75191642ns 1342836 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6e0 x6:1c00a6df +75191662ns 1342837 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001a8 +75191741ns 1342841 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6e0 PA:1c00a6e0 +75191761ns 1342842 1c000e82 fff60613 addi x12, x12, -1 x12=000001a7 x12:000001a8 +75191781ns 1342843 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6e1 x6:1c00a6e0 +75191801ns 1342844 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001a7 +75191880ns 1342848 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6e1 PA:1c00a6e1 +75191900ns 1342849 1c000e82 fff60613 addi x12, x12, -1 x12=000001a6 x12:000001a7 +75191919ns 1342850 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6e2 x6:1c00a6e1 +75191939ns 1342851 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001a6 +75192018ns 1342855 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6e2 PA:1c00a6e2 +75192038ns 1342856 1c000e82 fff60613 addi x12, x12, -1 x12=000001a5 x12:000001a6 +75192058ns 1342857 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6e3 x6:1c00a6e2 +75192078ns 1342858 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001a5 +75192157ns 1342862 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6e3 PA:1c00a6e3 +75192177ns 1342863 1c000e82 fff60613 addi x12, x12, -1 x12=000001a4 x12:000001a5 +75192196ns 1342864 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6e4 x6:1c00a6e3 +75192216ns 1342865 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001a4 +75192295ns 1342869 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6e4 PA:1c00a6e4 +75192315ns 1342870 1c000e82 fff60613 addi x12, x12, -1 x12=000001a3 x12:000001a4 +75192335ns 1342871 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6e5 x6:1c00a6e4 +75192355ns 1342872 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001a3 +75192434ns 1342876 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6e5 PA:1c00a6e5 +75192454ns 1342877 1c000e82 fff60613 addi x12, x12, -1 x12=000001a2 x12:000001a3 +75192474ns 1342878 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6e6 x6:1c00a6e5 +75192493ns 1342879 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001a2 +75192572ns 1342883 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6e6 PA:1c00a6e6 +75192592ns 1342884 1c000e82 fff60613 addi x12, x12, -1 x12=000001a1 x12:000001a2 +75192612ns 1342885 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6e7 x6:1c00a6e6 +75192632ns 1342886 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001a1 +75192711ns 1342890 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6e7 PA:1c00a6e7 +75192731ns 1342891 1c000e82 fff60613 addi x12, x12, -1 x12=000001a0 x12:000001a1 +75192751ns 1342892 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6e8 x6:1c00a6e7 +75192770ns 1342893 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001a0 +75192850ns 1342897 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6e8 PA:1c00a6e8 +75192869ns 1342898 1c000e82 fff60613 addi x12, x12, -1 x12=0000019f x12:000001a0 +75192889ns 1342899 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6e9 x6:1c00a6e8 +75192909ns 1342900 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000019f +75192988ns 1342904 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6e9 PA:1c00a6e9 +75193008ns 1342905 1c000e82 fff60613 addi x12, x12, -1 x12=0000019e x12:0000019f +75193028ns 1342906 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6ea x6:1c00a6e9 +75193047ns 1342907 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000019e +75193127ns 1342911 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6ea PA:1c00a6ea +75193146ns 1342912 1c000e82 fff60613 addi x12, x12, -1 x12=0000019d x12:0000019e +75193166ns 1342913 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6eb x6:1c00a6ea +75193186ns 1342914 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000019d +75193265ns 1342918 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6eb PA:1c00a6eb +75193285ns 1342919 1c000e82 fff60613 addi x12, x12, -1 x12=0000019c x12:0000019d +75193305ns 1342920 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6ec x6:1c00a6eb +75193325ns 1342921 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000019c +75193404ns 1342925 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6ec PA:1c00a6ec +75193424ns 1342926 1c000e82 fff60613 addi x12, x12, -1 x12=0000019b x12:0000019c +75193443ns 1342927 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6ed x6:1c00a6ec +75193463ns 1342928 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000019b +75193542ns 1342932 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6ed PA:1c00a6ed +75193562ns 1342933 1c000e82 fff60613 addi x12, x12, -1 x12=0000019a x12:0000019b +75193582ns 1342934 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6ee x6:1c00a6ed +75193602ns 1342935 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000019a +75193681ns 1342939 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6ee PA:1c00a6ee +75193701ns 1342940 1c000e82 fff60613 addi x12, x12, -1 x12=00000199 x12:0000019a +75193720ns 1342941 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6ef x6:1c00a6ee +75193740ns 1342942 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000199 +75193819ns 1342946 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6ef PA:1c00a6ef +75193839ns 1342947 1c000e82 fff60613 addi x12, x12, -1 x12=00000198 x12:00000199 +75193859ns 1342948 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6f0 x6:1c00a6ef +75193879ns 1342949 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000198 +75193958ns 1342953 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6f0 PA:1c00a6f0 +75193978ns 1342954 1c000e82 fff60613 addi x12, x12, -1 x12=00000197 x12:00000198 +75193998ns 1342955 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6f1 x6:1c00a6f0 +75194017ns 1342956 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000197 +75194096ns 1342960 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6f1 PA:1c00a6f1 +75194116ns 1342961 1c000e82 fff60613 addi x12, x12, -1 x12=00000196 x12:00000197 +75194136ns 1342962 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6f2 x6:1c00a6f1 +75194156ns 1342963 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000196 +75194235ns 1342967 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6f2 PA:1c00a6f2 +75194255ns 1342968 1c000e82 fff60613 addi x12, x12, -1 x12=00000195 x12:00000196 +75194275ns 1342969 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6f3 x6:1c00a6f2 +75194294ns 1342970 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000195 +75194374ns 1342974 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6f3 PA:1c00a6f3 +75194393ns 1342975 1c000e82 fff60613 addi x12, x12, -1 x12=00000194 x12:00000195 +75194413ns 1342976 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6f4 x6:1c00a6f3 +75194433ns 1342977 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000194 +75194512ns 1342981 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6f4 PA:1c00a6f4 +75194532ns 1342982 1c000e82 fff60613 addi x12, x12, -1 x12=00000193 x12:00000194 +75194552ns 1342983 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6f5 x6:1c00a6f4 +75194571ns 1342984 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000193 +75194651ns 1342988 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6f5 PA:1c00a6f5 +75194670ns 1342989 1c000e82 fff60613 addi x12, x12, -1 x12=00000192 x12:00000193 +75194690ns 1342990 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6f6 x6:1c00a6f5 +75194710ns 1342991 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000192 +75194789ns 1342995 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6f6 PA:1c00a6f6 +75194809ns 1342996 1c000e82 fff60613 addi x12, x12, -1 x12=00000191 x12:00000192 +75194829ns 1342997 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6f7 x6:1c00a6f6 +75194849ns 1342998 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000191 +75194928ns 1343002 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6f7 PA:1c00a6f7 +75194948ns 1343003 1c000e82 fff60613 addi x12, x12, -1 x12=00000190 x12:00000191 +75194967ns 1343004 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6f8 x6:1c00a6f7 +75194987ns 1343005 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000190 +75195066ns 1343009 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6f8 PA:1c00a6f8 +75195086ns 1343010 1c000e82 fff60613 addi x12, x12, -1 x12=0000018f x12:00000190 +75195106ns 1343011 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6f9 x6:1c00a6f8 +75195126ns 1343012 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000018f +75195205ns 1343016 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6f9 PA:1c00a6f9 +75195225ns 1343017 1c000e82 fff60613 addi x12, x12, -1 x12=0000018e x12:0000018f +75195244ns 1343018 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6fa x6:1c00a6f9 +75195264ns 1343019 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000018e +75195343ns 1343023 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6fa PA:1c00a6fa +75195363ns 1343024 1c000e82 fff60613 addi x12, x12, -1 x12=0000018d x12:0000018e +75195383ns 1343025 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6fb x6:1c00a6fa +75195403ns 1343026 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000018d +75195482ns 1343030 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6fb PA:1c00a6fb +75195502ns 1343031 1c000e82 fff60613 addi x12, x12, -1 x12=0000018c x12:0000018d +75195521ns 1343032 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6fc x6:1c00a6fb +75195541ns 1343033 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000018c +75195620ns 1343037 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6fc PA:1c00a6fc +75195640ns 1343038 1c000e82 fff60613 addi x12, x12, -1 x12=0000018b x12:0000018c +75195660ns 1343039 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6fd x6:1c00a6fc +75195680ns 1343040 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000018b +75195759ns 1343044 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6fd PA:1c00a6fd +75195779ns 1343045 1c000e82 fff60613 addi x12, x12, -1 x12=0000018a x12:0000018b +75195799ns 1343046 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6fe x6:1c00a6fd +75195818ns 1343047 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000018a +75195898ns 1343051 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6fe PA:1c00a6fe +75195917ns 1343052 1c000e82 fff60613 addi x12, x12, -1 x12=00000189 x12:0000018a +75195937ns 1343053 1c000e84 00130313 addi x6, x6, 1 x6=1c00a6ff x6:1c00a6fe +75195957ns 1343054 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000189 +75196036ns 1343058 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a6ff PA:1c00a6ff +75196056ns 1343059 1c000e82 fff60613 addi x12, x12, -1 x12=00000188 x12:00000189 +75196076ns 1343060 1c000e84 00130313 addi x6, x6, 1 x6=1c00a700 x6:1c00a6ff +75196095ns 1343061 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000188 +75196175ns 1343065 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a700 PA:1c00a700 +75196194ns 1343066 1c000e82 fff60613 addi x12, x12, -1 x12=00000187 x12:00000188 +75196214ns 1343067 1c000e84 00130313 addi x6, x6, 1 x6=1c00a701 x6:1c00a700 +75196234ns 1343068 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000187 +75196313ns 1343072 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a701 PA:1c00a701 +75196333ns 1343073 1c000e82 fff60613 addi x12, x12, -1 x12=00000186 x12:00000187 +75196353ns 1343074 1c000e84 00130313 addi x6, x6, 1 x6=1c00a702 x6:1c00a701 +75196373ns 1343075 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000186 +75196452ns 1343079 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a702 PA:1c00a702 +75196472ns 1343080 1c000e82 fff60613 addi x12, x12, -1 x12=00000185 x12:00000186 +75196491ns 1343081 1c000e84 00130313 addi x6, x6, 1 x6=1c00a703 x6:1c00a702 +75196511ns 1343082 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000185 +75196590ns 1343086 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a703 PA:1c00a703 +75196610ns 1343087 1c000e82 fff60613 addi x12, x12, -1 x12=00000184 x12:00000185 +75196630ns 1343088 1c000e84 00130313 addi x6, x6, 1 x6=1c00a704 x6:1c00a703 +75196650ns 1343089 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000184 +75196729ns 1343093 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a704 PA:1c00a704 +75196749ns 1343094 1c000e82 fff60613 addi x12, x12, -1 x12=00000183 x12:00000184 +75196768ns 1343095 1c000e84 00130313 addi x6, x6, 1 x6=1c00a705 x6:1c00a704 +75196788ns 1343096 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000183 +75196867ns 1343100 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a705 PA:1c00a705 +75196887ns 1343101 1c000e82 fff60613 addi x12, x12, -1 x12=00000182 x12:00000183 +75196907ns 1343102 1c000e84 00130313 addi x6, x6, 1 x6=1c00a706 x6:1c00a705 +75196927ns 1343103 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000182 +75197006ns 1343107 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a706 PA:1c00a706 +75197026ns 1343108 1c000e82 fff60613 addi x12, x12, -1 x12=00000181 x12:00000182 +75197045ns 1343109 1c000e84 00130313 addi x6, x6, 1 x6=1c00a707 x6:1c00a706 +75197065ns 1343110 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000181 +75197144ns 1343114 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a707 PA:1c00a707 +75197164ns 1343115 1c000e82 fff60613 addi x12, x12, -1 x12=00000180 x12:00000181 +75197184ns 1343116 1c000e84 00130313 addi x6, x6, 1 x6=1c00a708 x6:1c00a707 +75197204ns 1343117 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000180 +75197283ns 1343121 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a708 PA:1c00a708 +75197303ns 1343122 1c000e82 fff60613 addi x12, x12, -1 x12=0000017f x12:00000180 +75197323ns 1343123 1c000e84 00130313 addi x6, x6, 1 x6=1c00a709 x6:1c00a708 +75197342ns 1343124 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000017f +75197422ns 1343128 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a709 PA:1c00a709 +75197441ns 1343129 1c000e82 fff60613 addi x12, x12, -1 x12=0000017e x12:0000017f +75197461ns 1343130 1c000e84 00130313 addi x6, x6, 1 x6=1c00a70a x6:1c00a709 +75197481ns 1343131 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000017e +75197560ns 1343135 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a70a PA:1c00a70a +75197580ns 1343136 1c000e82 fff60613 addi x12, x12, -1 x12=0000017d x12:0000017e +75197600ns 1343137 1c000e84 00130313 addi x6, x6, 1 x6=1c00a70b x6:1c00a70a +75197619ns 1343138 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000017d +75197699ns 1343142 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a70b PA:1c00a70b +75197718ns 1343143 1c000e82 fff60613 addi x12, x12, -1 x12=0000017c x12:0000017d +75197738ns 1343144 1c000e84 00130313 addi x6, x6, 1 x6=1c00a70c x6:1c00a70b +75197758ns 1343145 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000017c +75197837ns 1343149 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a70c PA:1c00a70c +75197857ns 1343150 1c000e82 fff60613 addi x12, x12, -1 x12=0000017b x12:0000017c +75197877ns 1343151 1c000e84 00130313 addi x6, x6, 1 x6=1c00a70d x6:1c00a70c +75197897ns 1343152 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000017b +75197976ns 1343156 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a70d PA:1c00a70d +75197995ns 1343157 1c000e82 fff60613 addi x12, x12, -1 x12=0000017a x12:0000017b +75198015ns 1343158 1c000e84 00130313 addi x6, x6, 1 x6=1c00a70e x6:1c00a70d +75198035ns 1343159 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000017a +75198114ns 1343163 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a70e PA:1c00a70e +75198134ns 1343164 1c000e82 fff60613 addi x12, x12, -1 x12=00000179 x12:0000017a +75198154ns 1343165 1c000e84 00130313 addi x6, x6, 1 x6=1c00a70f x6:1c00a70e +75198174ns 1343166 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000179 +75198253ns 1343170 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a70f PA:1c00a70f +75198273ns 1343171 1c000e82 fff60613 addi x12, x12, -1 x12=00000178 x12:00000179 +75198292ns 1343172 1c000e84 00130313 addi x6, x6, 1 x6=1c00a710 x6:1c00a70f +75198312ns 1343173 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000178 +75198391ns 1343177 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a710 PA:1c00a710 +75198411ns 1343178 1c000e82 fff60613 addi x12, x12, -1 x12=00000177 x12:00000178 +75198431ns 1343179 1c000e84 00130313 addi x6, x6, 1 x6=1c00a711 x6:1c00a710 +75198451ns 1343180 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000177 +75198530ns 1343184 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a711 PA:1c00a711 +75198550ns 1343185 1c000e82 fff60613 addi x12, x12, -1 x12=00000176 x12:00000177 +75198569ns 1343186 1c000e84 00130313 addi x6, x6, 1 x6=1c00a712 x6:1c00a711 +75198589ns 1343187 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000176 +75198668ns 1343191 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a712 PA:1c00a712 +75198688ns 1343192 1c000e82 fff60613 addi x12, x12, -1 x12=00000175 x12:00000176 +75198708ns 1343193 1c000e84 00130313 addi x6, x6, 1 x6=1c00a713 x6:1c00a712 +75198728ns 1343194 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000175 +75198807ns 1343198 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a713 PA:1c00a713 +75198827ns 1343199 1c000e82 fff60613 addi x12, x12, -1 x12=00000174 x12:00000175 +75198847ns 1343200 1c000e84 00130313 addi x6, x6, 1 x6=1c00a714 x6:1c00a713 +75198866ns 1343201 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000174 +75198946ns 1343205 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a714 PA:1c00a714 +75198965ns 1343206 1c000e82 fff60613 addi x12, x12, -1 x12=00000173 x12:00000174 +75198985ns 1343207 1c000e84 00130313 addi x6, x6, 1 x6=1c00a715 x6:1c00a714 +75199005ns 1343208 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000173 +75199084ns 1343212 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a715 PA:1c00a715 +75199104ns 1343213 1c000e82 fff60613 addi x12, x12, -1 x12=00000172 x12:00000173 +75199124ns 1343214 1c000e84 00130313 addi x6, x6, 1 x6=1c00a716 x6:1c00a715 +75199143ns 1343215 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000172 +75199223ns 1343219 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a716 PA:1c00a716 +75199242ns 1343220 1c000e82 fff60613 addi x12, x12, -1 x12=00000171 x12:00000172 +75199262ns 1343221 1c000e84 00130313 addi x6, x6, 1 x6=1c00a717 x6:1c00a716 +75199282ns 1343222 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000171 +75199361ns 1343226 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a717 PA:1c00a717 +75199381ns 1343227 1c000e82 fff60613 addi x12, x12, -1 x12=00000170 x12:00000171 +75199401ns 1343228 1c000e84 00130313 addi x6, x6, 1 x6=1c00a718 x6:1c00a717 +75199421ns 1343229 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000170 +75199500ns 1343233 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a718 PA:1c00a718 +75199519ns 1343234 1c000e82 fff60613 addi x12, x12, -1 x12=0000016f x12:00000170 +75199539ns 1343235 1c000e84 00130313 addi x6, x6, 1 x6=1c00a719 x6:1c00a718 +75199559ns 1343236 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000016f +75199638ns 1343240 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a719 PA:1c00a719 +75199658ns 1343241 1c000e82 fff60613 addi x12, x12, -1 x12=0000016e x12:0000016f +75199678ns 1343242 1c000e84 00130313 addi x6, x6, 1 x6=1c00a71a x6:1c00a719 +75199698ns 1343243 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000016e +75199777ns 1343247 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a71a PA:1c00a71a +75199797ns 1343248 1c000e82 fff60613 addi x12, x12, -1 x12=0000016d x12:0000016e +75199816ns 1343249 1c000e84 00130313 addi x6, x6, 1 x6=1c00a71b x6:1c00a71a +75199836ns 1343250 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000016d +75199915ns 1343254 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a71b PA:1c00a71b +75199935ns 1343255 1c000e82 fff60613 addi x12, x12, -1 x12=0000016c x12:0000016d +75199955ns 1343256 1c000e84 00130313 addi x6, x6, 1 x6=1c00a71c x6:1c00a71b +75199975ns 1343257 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000016c +75200054ns 1343261 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a71c PA:1c00a71c +75200074ns 1343262 1c000e82 fff60613 addi x12, x12, -1 x12=0000016b x12:0000016c +75200093ns 1343263 1c000e84 00130313 addi x6, x6, 1 x6=1c00a71d x6:1c00a71c +75200113ns 1343264 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000016b +75200192ns 1343268 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a71d PA:1c00a71d +75200212ns 1343269 1c000e82 fff60613 addi x12, x12, -1 x12=0000016a x12:0000016b +75200232ns 1343270 1c000e84 00130313 addi x6, x6, 1 x6=1c00a71e x6:1c00a71d +75200252ns 1343271 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000016a +75200331ns 1343275 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a71e PA:1c00a71e +75200351ns 1343276 1c000e82 fff60613 addi x12, x12, -1 x12=00000169 x12:0000016a +75200371ns 1343277 1c000e84 00130313 addi x6, x6, 1 x6=1c00a71f x6:1c00a71e +75200390ns 1343278 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000169 +75200469ns 1343282 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a71f PA:1c00a71f +75200489ns 1343283 1c000e82 fff60613 addi x12, x12, -1 x12=00000168 x12:00000169 +75200509ns 1343284 1c000e84 00130313 addi x6, x6, 1 x6=1c00a720 x6:1c00a71f +75200529ns 1343285 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000168 +75200608ns 1343289 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a720 PA:1c00a720 +75200628ns 1343290 1c000e82 fff60613 addi x12, x12, -1 x12=00000167 x12:00000168 +75200648ns 1343291 1c000e84 00130313 addi x6, x6, 1 x6=1c00a721 x6:1c00a720 +75200667ns 1343292 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000167 +75200747ns 1343296 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a721 PA:1c00a721 +75200766ns 1343297 1c000e82 fff60613 addi x12, x12, -1 x12=00000166 x12:00000167 +75200786ns 1343298 1c000e84 00130313 addi x6, x6, 1 x6=1c00a722 x6:1c00a721 +75200806ns 1343299 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000166 +75200885ns 1343303 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a722 PA:1c00a722 +75200905ns 1343304 1c000e82 fff60613 addi x12, x12, -1 x12=00000165 x12:00000166 +75200925ns 1343305 1c000e84 00130313 addi x6, x6, 1 x6=1c00a723 x6:1c00a722 +75200945ns 1343306 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000165 +75201024ns 1343310 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a723 PA:1c00a723 +75201043ns 1343311 1c000e82 fff60613 addi x12, x12, -1 x12=00000164 x12:00000165 +75201063ns 1343312 1c000e84 00130313 addi x6, x6, 1 x6=1c00a724 x6:1c00a723 +75201083ns 1343313 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000164 +75201162ns 1343317 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a724 PA:1c00a724 +75201182ns 1343318 1c000e82 fff60613 addi x12, x12, -1 x12=00000163 x12:00000164 +75201202ns 1343319 1c000e84 00130313 addi x6, x6, 1 x6=1c00a725 x6:1c00a724 +75201222ns 1343320 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000163 +75201301ns 1343324 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a725 PA:1c00a725 +75201321ns 1343325 1c000e82 fff60613 addi x12, x12, -1 x12=00000162 x12:00000163 +75201340ns 1343326 1c000e84 00130313 addi x6, x6, 1 x6=1c00a726 x6:1c00a725 +75201360ns 1343327 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000162 +75201439ns 1343331 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a726 PA:1c00a726 +75201459ns 1343332 1c000e82 fff60613 addi x12, x12, -1 x12=00000161 x12:00000162 +75201479ns 1343333 1c000e84 00130313 addi x6, x6, 1 x6=1c00a727 x6:1c00a726 +75201499ns 1343334 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000161 +75201578ns 1343338 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a727 PA:1c00a727 +75201598ns 1343339 1c000e82 fff60613 addi x12, x12, -1 x12=00000160 x12:00000161 +75201617ns 1343340 1c000e84 00130313 addi x6, x6, 1 x6=1c00a728 x6:1c00a727 +75201637ns 1343341 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000160 +75201716ns 1343345 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a728 PA:1c00a728 +75201736ns 1343346 1c000e82 fff60613 addi x12, x12, -1 x12=0000015f x12:00000160 +75201756ns 1343347 1c000e84 00130313 addi x6, x6, 1 x6=1c00a729 x6:1c00a728 +75201776ns 1343348 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000015f +75201855ns 1343352 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a729 PA:1c00a729 +75201875ns 1343353 1c000e82 fff60613 addi x12, x12, -1 x12=0000015e x12:0000015f +75201895ns 1343354 1c000e84 00130313 addi x6, x6, 1 x6=1c00a72a x6:1c00a729 +75201914ns 1343355 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000015e +75201993ns 1343359 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a72a PA:1c00a72a +75202013ns 1343360 1c000e82 fff60613 addi x12, x12, -1 x12=0000015d x12:0000015e +75202033ns 1343361 1c000e84 00130313 addi x6, x6, 1 x6=1c00a72b x6:1c00a72a +75202053ns 1343362 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000015d +75202132ns 1343366 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a72b PA:1c00a72b +75202152ns 1343367 1c000e82 fff60613 addi x12, x12, -1 x12=0000015c x12:0000015d +75202172ns 1343368 1c000e84 00130313 addi x6, x6, 1 x6=1c00a72c x6:1c00a72b +75202191ns 1343369 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000015c +75202271ns 1343373 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a72c PA:1c00a72c +75202290ns 1343374 1c000e82 fff60613 addi x12, x12, -1 x12=0000015b x12:0000015c +75202310ns 1343375 1c000e84 00130313 addi x6, x6, 1 x6=1c00a72d x6:1c00a72c +75202330ns 1343376 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000015b +75202409ns 1343380 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a72d PA:1c00a72d +75202429ns 1343381 1c000e82 fff60613 addi x12, x12, -1 x12=0000015a x12:0000015b +75202449ns 1343382 1c000e84 00130313 addi x6, x6, 1 x6=1c00a72e x6:1c00a72d +75202468ns 1343383 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000015a +75202548ns 1343387 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a72e PA:1c00a72e +75202567ns 1343388 1c000e82 fff60613 addi x12, x12, -1 x12=00000159 x12:0000015a +75202587ns 1343389 1c000e84 00130313 addi x6, x6, 1 x6=1c00a72f x6:1c00a72e +75202607ns 1343390 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000159 +75202686ns 1343394 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a72f PA:1c00a72f +75202706ns 1343395 1c000e82 fff60613 addi x12, x12, -1 x12=00000158 x12:00000159 +75202726ns 1343396 1c000e84 00130313 addi x6, x6, 1 x6=1c00a730 x6:1c00a72f +75202746ns 1343397 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000158 +75202825ns 1343401 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a730 PA:1c00a730 +75202845ns 1343402 1c000e82 fff60613 addi x12, x12, -1 x12=00000157 x12:00000158 +75202864ns 1343403 1c000e84 00130313 addi x6, x6, 1 x6=1c00a731 x6:1c00a730 +75202884ns 1343404 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000157 +75202963ns 1343408 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a731 PA:1c00a731 +75202983ns 1343409 1c000e82 fff60613 addi x12, x12, -1 x12=00000156 x12:00000157 +75203003ns 1343410 1c000e84 00130313 addi x6, x6, 1 x6=1c00a732 x6:1c00a731 +75203023ns 1343411 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000156 +75203102ns 1343415 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a732 PA:1c00a732 +75203122ns 1343416 1c000e82 fff60613 addi x12, x12, -1 x12=00000155 x12:00000156 +75203141ns 1343417 1c000e84 00130313 addi x6, x6, 1 x6=1c00a733 x6:1c00a732 +75203161ns 1343418 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000155 +75203240ns 1343422 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a733 PA:1c00a733 +75203260ns 1343423 1c000e82 fff60613 addi x12, x12, -1 x12=00000154 x12:00000155 +75203280ns 1343424 1c000e84 00130313 addi x6, x6, 1 x6=1c00a734 x6:1c00a733 +75203300ns 1343425 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000154 +75203379ns 1343429 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a734 PA:1c00a734 +75203399ns 1343430 1c000e82 fff60613 addi x12, x12, -1 x12=00000153 x12:00000154 +75203419ns 1343431 1c000e84 00130313 addi x6, x6, 1 x6=1c00a735 x6:1c00a734 +75203438ns 1343432 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000153 +75203517ns 1343436 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a735 PA:1c00a735 +75203537ns 1343437 1c000e82 fff60613 addi x12, x12, -1 x12=00000152 x12:00000153 +75203557ns 1343438 1c000e84 00130313 addi x6, x6, 1 x6=1c00a736 x6:1c00a735 +75203577ns 1343439 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000152 +75203656ns 1343443 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a736 PA:1c00a736 +75203676ns 1343444 1c000e82 fff60613 addi x12, x12, -1 x12=00000151 x12:00000152 +75203696ns 1343445 1c000e84 00130313 addi x6, x6, 1 x6=1c00a737 x6:1c00a736 +75203715ns 1343446 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000151 +75203795ns 1343450 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a737 PA:1c00a737 +75203814ns 1343451 1c000e82 fff60613 addi x12, x12, -1 x12=00000150 x12:00000151 +75203834ns 1343452 1c000e84 00130313 addi x6, x6, 1 x6=1c00a738 x6:1c00a737 +75203854ns 1343453 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000150 +75203933ns 1343457 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a738 PA:1c00a738 +75203953ns 1343458 1c000e82 fff60613 addi x12, x12, -1 x12=0000014f x12:00000150 +75203973ns 1343459 1c000e84 00130313 addi x6, x6, 1 x6=1c00a739 x6:1c00a738 +75203992ns 1343460 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000014f +75204072ns 1343464 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a739 PA:1c00a739 +75204091ns 1343465 1c000e82 fff60613 addi x12, x12, -1 x12=0000014e x12:0000014f +75204111ns 1343466 1c000e84 00130313 addi x6, x6, 1 x6=1c00a73a x6:1c00a739 +75204131ns 1343467 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000014e +75204210ns 1343471 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a73a PA:1c00a73a +75204230ns 1343472 1c000e82 fff60613 addi x12, x12, -1 x12=0000014d x12:0000014e +75204250ns 1343473 1c000e84 00130313 addi x6, x6, 1 x6=1c00a73b x6:1c00a73a +75204270ns 1343474 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000014d +75204349ns 1343478 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a73b PA:1c00a73b +75204369ns 1343479 1c000e82 fff60613 addi x12, x12, -1 x12=0000014c x12:0000014d +75204388ns 1343480 1c000e84 00130313 addi x6, x6, 1 x6=1c00a73c x6:1c00a73b +75204408ns 1343481 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000014c +75204487ns 1343485 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a73c PA:1c00a73c +75204507ns 1343486 1c000e82 fff60613 addi x12, x12, -1 x12=0000014b x12:0000014c +75204527ns 1343487 1c000e84 00130313 addi x6, x6, 1 x6=1c00a73d x6:1c00a73c +75204547ns 1343488 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000014b +75204626ns 1343492 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a73d PA:1c00a73d +75204646ns 1343493 1c000e82 fff60613 addi x12, x12, -1 x12=0000014a x12:0000014b +75204665ns 1343494 1c000e84 00130313 addi x6, x6, 1 x6=1c00a73e x6:1c00a73d +75204685ns 1343495 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000014a +75204764ns 1343499 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a73e PA:1c00a73e +75204784ns 1343500 1c000e82 fff60613 addi x12, x12, -1 x12=00000149 x12:0000014a +75204804ns 1343501 1c000e84 00130313 addi x6, x6, 1 x6=1c00a73f x6:1c00a73e +75204824ns 1343502 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000149 +75204903ns 1343506 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a73f PA:1c00a73f +75204923ns 1343507 1c000e82 fff60613 addi x12, x12, -1 x12=00000148 x12:00000149 +75204942ns 1343508 1c000e84 00130313 addi x6, x6, 1 x6=1c00a740 x6:1c00a73f +75204962ns 1343509 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000148 +75205041ns 1343513 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a740 PA:1c00a740 +75205061ns 1343514 1c000e82 fff60613 addi x12, x12, -1 x12=00000147 x12:00000148 +75205081ns 1343515 1c000e84 00130313 addi x6, x6, 1 x6=1c00a741 x6:1c00a740 +75205101ns 1343516 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000147 +75205180ns 1343520 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a741 PA:1c00a741 +75205200ns 1343521 1c000e82 fff60613 addi x12, x12, -1 x12=00000146 x12:00000147 +75205220ns 1343522 1c000e84 00130313 addi x6, x6, 1 x6=1c00a742 x6:1c00a741 +75205239ns 1343523 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000146 +75205319ns 1343527 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a742 PA:1c00a742 +75205338ns 1343528 1c000e82 fff60613 addi x12, x12, -1 x12=00000145 x12:00000146 +75205358ns 1343529 1c000e84 00130313 addi x6, x6, 1 x6=1c00a743 x6:1c00a742 +75205378ns 1343530 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000145 +75205457ns 1343534 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a743 PA:1c00a743 +75205477ns 1343535 1c000e82 fff60613 addi x12, x12, -1 x12=00000144 x12:00000145 +75205497ns 1343536 1c000e84 00130313 addi x6, x6, 1 x6=1c00a744 x6:1c00a743 +75205516ns 1343537 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000144 +75205596ns 1343541 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a744 PA:1c00a744 +75205615ns 1343542 1c000e82 fff60613 addi x12, x12, -1 x12=00000143 x12:00000144 +75205635ns 1343543 1c000e84 00130313 addi x6, x6, 1 x6=1c00a745 x6:1c00a744 +75205655ns 1343544 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000143 +75205734ns 1343548 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a745 PA:1c00a745 +75205754ns 1343549 1c000e82 fff60613 addi x12, x12, -1 x12=00000142 x12:00000143 +75205774ns 1343550 1c000e84 00130313 addi x6, x6, 1 x6=1c00a746 x6:1c00a745 +75205794ns 1343551 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000142 +75205873ns 1343555 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a746 PA:1c00a746 +75205893ns 1343556 1c000e82 fff60613 addi x12, x12, -1 x12=00000141 x12:00000142 +75205912ns 1343557 1c000e84 00130313 addi x6, x6, 1 x6=1c00a747 x6:1c00a746 +75205932ns 1343558 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000141 +75206011ns 1343562 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a747 PA:1c00a747 +75206031ns 1343563 1c000e82 fff60613 addi x12, x12, -1 x12=00000140 x12:00000141 +75206051ns 1343564 1c000e84 00130313 addi x6, x6, 1 x6=1c00a748 x6:1c00a747 +75206071ns 1343565 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000140 +75206150ns 1343569 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a748 PA:1c00a748 +75206170ns 1343570 1c000e82 fff60613 addi x12, x12, -1 x12=0000013f x12:00000140 +75206189ns 1343571 1c000e84 00130313 addi x6, x6, 1 x6=1c00a749 x6:1c00a748 +75206209ns 1343572 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000013f +75206288ns 1343576 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a749 PA:1c00a749 +75206308ns 1343577 1c000e82 fff60613 addi x12, x12, -1 x12=0000013e x12:0000013f +75206328ns 1343578 1c000e84 00130313 addi x6, x6, 1 x6=1c00a74a x6:1c00a749 +75206348ns 1343579 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000013e +75206427ns 1343583 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a74a PA:1c00a74a +75206447ns 1343584 1c000e82 fff60613 addi x12, x12, -1 x12=0000013d x12:0000013e +75206466ns 1343585 1c000e84 00130313 addi x6, x6, 1 x6=1c00a74b x6:1c00a74a +75206486ns 1343586 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000013d +75206565ns 1343590 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a74b PA:1c00a74b +75206585ns 1343591 1c000e82 fff60613 addi x12, x12, -1 x12=0000013c x12:0000013d +75206605ns 1343592 1c000e84 00130313 addi x6, x6, 1 x6=1c00a74c x6:1c00a74b +75206625ns 1343593 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000013c +75206704ns 1343597 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a74c PA:1c00a74c +75206724ns 1343598 1c000e82 fff60613 addi x12, x12, -1 x12=0000013b x12:0000013c +75206744ns 1343599 1c000e84 00130313 addi x6, x6, 1 x6=1c00a74d x6:1c00a74c +75206763ns 1343600 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000013b +75206843ns 1343604 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a74d PA:1c00a74d +75206862ns 1343605 1c000e82 fff60613 addi x12, x12, -1 x12=0000013a x12:0000013b +75206882ns 1343606 1c000e84 00130313 addi x6, x6, 1 x6=1c00a74e x6:1c00a74d +75206902ns 1343607 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000013a +75206981ns 1343611 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a74e PA:1c00a74e +75207001ns 1343612 1c000e82 fff60613 addi x12, x12, -1 x12=00000139 x12:0000013a +75207021ns 1343613 1c000e84 00130313 addi x6, x6, 1 x6=1c00a74f x6:1c00a74e +75207040ns 1343614 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000139 +75207120ns 1343618 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a74f PA:1c00a74f +75207139ns 1343619 1c000e82 fff60613 addi x12, x12, -1 x12=00000138 x12:00000139 +75207159ns 1343620 1c000e84 00130313 addi x6, x6, 1 x6=1c00a750 x6:1c00a74f +75207179ns 1343621 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000138 +75207258ns 1343625 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a750 PA:1c00a750 +75207278ns 1343626 1c000e82 fff60613 addi x12, x12, -1 x12=00000137 x12:00000138 +75207298ns 1343627 1c000e84 00130313 addi x6, x6, 1 x6=1c00a751 x6:1c00a750 +75207318ns 1343628 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000137 +75207397ns 1343632 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a751 PA:1c00a751 +75207416ns 1343633 1c000e82 fff60613 addi x12, x12, -1 x12=00000136 x12:00000137 +75207436ns 1343634 1c000e84 00130313 addi x6, x6, 1 x6=1c00a752 x6:1c00a751 +75207456ns 1343635 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000136 +75207535ns 1343639 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a752 PA:1c00a752 +75207555ns 1343640 1c000e82 fff60613 addi x12, x12, -1 x12=00000135 x12:00000136 +75207575ns 1343641 1c000e84 00130313 addi x6, x6, 1 x6=1c00a753 x6:1c00a752 +75207595ns 1343642 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000135 +75207674ns 1343646 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a753 PA:1c00a753 +75207694ns 1343647 1c000e82 fff60613 addi x12, x12, -1 x12=00000134 x12:00000135 +75207713ns 1343648 1c000e84 00130313 addi x6, x6, 1 x6=1c00a754 x6:1c00a753 +75207733ns 1343649 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000134 +75207812ns 1343653 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a754 PA:1c00a754 +75207832ns 1343654 1c000e82 fff60613 addi x12, x12, -1 x12=00000133 x12:00000134 +75207852ns 1343655 1c000e84 00130313 addi x6, x6, 1 x6=1c00a755 x6:1c00a754 +75207872ns 1343656 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000133 +75207951ns 1343660 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a755 PA:1c00a755 +75207971ns 1343661 1c000e82 fff60613 addi x12, x12, -1 x12=00000132 x12:00000133 +75207990ns 1343662 1c000e84 00130313 addi x6, x6, 1 x6=1c00a756 x6:1c00a755 +75208010ns 1343663 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000132 +75208089ns 1343667 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a756 PA:1c00a756 +75208109ns 1343668 1c000e82 fff60613 addi x12, x12, -1 x12=00000131 x12:00000132 +75208129ns 1343669 1c000e84 00130313 addi x6, x6, 1 x6=1c00a757 x6:1c00a756 +75208149ns 1343670 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000131 +75208228ns 1343674 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a757 PA:1c00a757 +75208248ns 1343675 1c000e82 fff60613 addi x12, x12, -1 x12=00000130 x12:00000131 +75208268ns 1343676 1c000e84 00130313 addi x6, x6, 1 x6=1c00a758 x6:1c00a757 +75208287ns 1343677 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000130 +75208367ns 1343681 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a758 PA:1c00a758 +75208386ns 1343682 1c000e82 fff60613 addi x12, x12, -1 x12=0000012f x12:00000130 +75208406ns 1343683 1c000e84 00130313 addi x6, x6, 1 x6=1c00a759 x6:1c00a758 +75208426ns 1343684 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000012f +75208505ns 1343688 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a759 PA:1c00a759 +75208525ns 1343689 1c000e82 fff60613 addi x12, x12, -1 x12=0000012e x12:0000012f +75208545ns 1343690 1c000e84 00130313 addi x6, x6, 1 x6=1c00a75a x6:1c00a759 +75208564ns 1343691 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000012e +75208644ns 1343695 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a75a PA:1c00a75a +75208663ns 1343696 1c000e82 fff60613 addi x12, x12, -1 x12=0000012d x12:0000012e +75208683ns 1343697 1c000e84 00130313 addi x6, x6, 1 x6=1c00a75b x6:1c00a75a +75208703ns 1343698 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000012d +75208782ns 1343702 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a75b PA:1c00a75b +75208802ns 1343703 1c000e82 fff60613 addi x12, x12, -1 x12=0000012c x12:0000012d +75208822ns 1343704 1c000e84 00130313 addi x6, x6, 1 x6=1c00a75c x6:1c00a75b +75208842ns 1343705 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000012c +75208921ns 1343709 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a75c PA:1c00a75c +75208940ns 1343710 1c000e82 fff60613 addi x12, x12, -1 x12=0000012b x12:0000012c +75208960ns 1343711 1c000e84 00130313 addi x6, x6, 1 x6=1c00a75d x6:1c00a75c +75208980ns 1343712 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000012b +75209059ns 1343716 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a75d PA:1c00a75d +75209079ns 1343717 1c000e82 fff60613 addi x12, x12, -1 x12=0000012a x12:0000012b +75209099ns 1343718 1c000e84 00130313 addi x6, x6, 1 x6=1c00a75e x6:1c00a75d +75209119ns 1343719 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000012a +75209198ns 1343723 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a75e PA:1c00a75e +75209218ns 1343724 1c000e82 fff60613 addi x12, x12, -1 x12=00000129 x12:0000012a +75209237ns 1343725 1c000e84 00130313 addi x6, x6, 1 x6=1c00a75f x6:1c00a75e +75209257ns 1343726 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000129 +75209336ns 1343730 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a75f PA:1c00a75f +75209356ns 1343731 1c000e82 fff60613 addi x12, x12, -1 x12=00000128 x12:00000129 +75209376ns 1343732 1c000e84 00130313 addi x6, x6, 1 x6=1c00a760 x6:1c00a75f +75209396ns 1343733 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000128 +75209475ns 1343737 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a760 PA:1c00a760 +75209495ns 1343738 1c000e82 fff60613 addi x12, x12, -1 x12=00000127 x12:00000128 +75209514ns 1343739 1c000e84 00130313 addi x6, x6, 1 x6=1c00a761 x6:1c00a760 +75209534ns 1343740 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000127 +75209613ns 1343744 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a761 PA:1c00a761 +75209633ns 1343745 1c000e82 fff60613 addi x12, x12, -1 x12=00000126 x12:00000127 +75209653ns 1343746 1c000e84 00130313 addi x6, x6, 1 x6=1c00a762 x6:1c00a761 +75209673ns 1343747 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000126 +75209752ns 1343751 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a762 PA:1c00a762 +75209772ns 1343752 1c000e82 fff60613 addi x12, x12, -1 x12=00000125 x12:00000126 +75209792ns 1343753 1c000e84 00130313 addi x6, x6, 1 x6=1c00a763 x6:1c00a762 +75209811ns 1343754 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000125 +75209890ns 1343758 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a763 PA:1c00a763 +75209910ns 1343759 1c000e82 fff60613 addi x12, x12, -1 x12=00000124 x12:00000125 +75209930ns 1343760 1c000e84 00130313 addi x6, x6, 1 x6=1c00a764 x6:1c00a763 +75209950ns 1343761 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000124 +75210029ns 1343765 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a764 PA:1c00a764 +75210049ns 1343766 1c000e82 fff60613 addi x12, x12, -1 x12=00000123 x12:00000124 +75210069ns 1343767 1c000e84 00130313 addi x6, x6, 1 x6=1c00a765 x6:1c00a764 +75210088ns 1343768 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000123 +75210168ns 1343772 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a765 PA:1c00a765 +75210187ns 1343773 1c000e82 fff60613 addi x12, x12, -1 x12=00000122 x12:00000123 +75210207ns 1343774 1c000e84 00130313 addi x6, x6, 1 x6=1c00a766 x6:1c00a765 +75210227ns 1343775 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000122 +75210306ns 1343779 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a766 PA:1c00a766 +75210326ns 1343780 1c000e82 fff60613 addi x12, x12, -1 x12=00000121 x12:00000122 +75210346ns 1343781 1c000e84 00130313 addi x6, x6, 1 x6=1c00a767 x6:1c00a766 +75210365ns 1343782 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000121 +75210445ns 1343786 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a767 PA:1c00a767 +75210464ns 1343787 1c000e82 fff60613 addi x12, x12, -1 x12=00000120 x12:00000121 +75210484ns 1343788 1c000e84 00130313 addi x6, x6, 1 x6=1c00a768 x6:1c00a767 +75210504ns 1343789 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000120 +75210583ns 1343793 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a768 PA:1c00a768 +75210603ns 1343794 1c000e82 fff60613 addi x12, x12, -1 x12=0000011f x12:00000120 +75210623ns 1343795 1c000e84 00130313 addi x6, x6, 1 x6=1c00a769 x6:1c00a768 +75210643ns 1343796 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000011f +75210722ns 1343800 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a769 PA:1c00a769 +75210742ns 1343801 1c000e82 fff60613 addi x12, x12, -1 x12=0000011e x12:0000011f +75210761ns 1343802 1c000e84 00130313 addi x6, x6, 1 x6=1c00a76a x6:1c00a769 +75210781ns 1343803 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000011e +75210860ns 1343807 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a76a PA:1c00a76a +75210880ns 1343808 1c000e82 fff60613 addi x12, x12, -1 x12=0000011d x12:0000011e +75210900ns 1343809 1c000e84 00130313 addi x6, x6, 1 x6=1c00a76b x6:1c00a76a +75210920ns 1343810 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000011d +75210999ns 1343814 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a76b PA:1c00a76b +75211019ns 1343815 1c000e82 fff60613 addi x12, x12, -1 x12=0000011c x12:0000011d +75211038ns 1343816 1c000e84 00130313 addi x6, x6, 1 x6=1c00a76c x6:1c00a76b +75211058ns 1343817 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000011c +75211137ns 1343821 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a76c PA:1c00a76c +75211157ns 1343822 1c000e82 fff60613 addi x12, x12, -1 x12=0000011b x12:0000011c +75211177ns 1343823 1c000e84 00130313 addi x6, x6, 1 x6=1c00a76d x6:1c00a76c +75211197ns 1343824 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000011b +75211276ns 1343828 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a76d PA:1c00a76d +75211296ns 1343829 1c000e82 fff60613 addi x12, x12, -1 x12=0000011a x12:0000011b +75211316ns 1343830 1c000e84 00130313 addi x6, x6, 1 x6=1c00a76e x6:1c00a76d +75211335ns 1343831 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000011a +75211414ns 1343835 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a76e PA:1c00a76e +75211434ns 1343836 1c000e82 fff60613 addi x12, x12, -1 x12=00000119 x12:0000011a +75211454ns 1343837 1c000e84 00130313 addi x6, x6, 1 x6=1c00a76f x6:1c00a76e +75211474ns 1343838 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000119 +75211553ns 1343842 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a76f PA:1c00a76f +75211573ns 1343843 1c000e82 fff60613 addi x12, x12, -1 x12=00000118 x12:00000119 +75211593ns 1343844 1c000e84 00130313 addi x6, x6, 1 x6=1c00a770 x6:1c00a76f +75211612ns 1343845 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000118 +75211692ns 1343849 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a770 PA:1c00a770 +75211711ns 1343850 1c000e82 fff60613 addi x12, x12, -1 x12=00000117 x12:00000118 +75211731ns 1343851 1c000e84 00130313 addi x6, x6, 1 x6=1c00a771 x6:1c00a770 +75211751ns 1343852 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000117 +75211830ns 1343856 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a771 PA:1c00a771 +75211850ns 1343857 1c000e82 fff60613 addi x12, x12, -1 x12=00000116 x12:00000117 +75211870ns 1343858 1c000e84 00130313 addi x6, x6, 1 x6=1c00a772 x6:1c00a771 +75211889ns 1343859 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000116 +75211969ns 1343863 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a772 PA:1c00a772 +75211988ns 1343864 1c000e82 fff60613 addi x12, x12, -1 x12=00000115 x12:00000116 +75212008ns 1343865 1c000e84 00130313 addi x6, x6, 1 x6=1c00a773 x6:1c00a772 +75212028ns 1343866 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000115 +75212107ns 1343870 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a773 PA:1c00a773 +75212127ns 1343871 1c000e82 fff60613 addi x12, x12, -1 x12=00000114 x12:00000115 +75212147ns 1343872 1c000e84 00130313 addi x6, x6, 1 x6=1c00a774 x6:1c00a773 +75212167ns 1343873 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000114 +75212246ns 1343877 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a774 PA:1c00a774 +75212266ns 1343878 1c000e82 fff60613 addi x12, x12, -1 x12=00000113 x12:00000114 +75212285ns 1343879 1c000e84 00130313 addi x6, x6, 1 x6=1c00a775 x6:1c00a774 +75212305ns 1343880 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000113 +75212384ns 1343884 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a775 PA:1c00a775 +75212404ns 1343885 1c000e82 fff60613 addi x12, x12, -1 x12=00000112 x12:00000113 +75212424ns 1343886 1c000e84 00130313 addi x6, x6, 1 x6=1c00a776 x6:1c00a775 +75212444ns 1343887 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000112 +75212523ns 1343891 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a776 PA:1c00a776 +75212543ns 1343892 1c000e82 fff60613 addi x12, x12, -1 x12=00000111 x12:00000112 +75212562ns 1343893 1c000e84 00130313 addi x6, x6, 1 x6=1c00a777 x6:1c00a776 +75212582ns 1343894 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000111 +75212661ns 1343898 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a777 PA:1c00a777 +75212681ns 1343899 1c000e82 fff60613 addi x12, x12, -1 x12=00000110 x12:00000111 +75212701ns 1343900 1c000e84 00130313 addi x6, x6, 1 x6=1c00a778 x6:1c00a777 +75212721ns 1343901 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000110 +75212800ns 1343905 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a778 PA:1c00a778 +75212820ns 1343906 1c000e82 fff60613 addi x12, x12, -1 x12=0000010f x12:00000110 +75212839ns 1343907 1c000e84 00130313 addi x6, x6, 1 x6=1c00a779 x6:1c00a778 +75212859ns 1343908 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000010f +75212938ns 1343912 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a779 PA:1c00a779 +75212958ns 1343913 1c000e82 fff60613 addi x12, x12, -1 x12=0000010e x12:0000010f +75212978ns 1343914 1c000e84 00130313 addi x6, x6, 1 x6=1c00a77a x6:1c00a779 +75212998ns 1343915 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000010e +75213077ns 1343919 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a77a PA:1c00a77a +75213097ns 1343920 1c000e82 fff60613 addi x12, x12, -1 x12=0000010d x12:0000010e +75213117ns 1343921 1c000e84 00130313 addi x6, x6, 1 x6=1c00a77b x6:1c00a77a +75213136ns 1343922 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000010d +75213216ns 1343926 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a77b PA:1c00a77b +75213235ns 1343927 1c000e82 fff60613 addi x12, x12, -1 x12=0000010c x12:0000010d +75213255ns 1343928 1c000e84 00130313 addi x6, x6, 1 x6=1c00a77c x6:1c00a77b +75213275ns 1343929 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000010c +75213354ns 1343933 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a77c PA:1c00a77c +75213374ns 1343934 1c000e82 fff60613 addi x12, x12, -1 x12=0000010b x12:0000010c +75213394ns 1343935 1c000e84 00130313 addi x6, x6, 1 x6=1c00a77d x6:1c00a77c +75213413ns 1343936 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000010b +75213493ns 1343940 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a77d PA:1c00a77d +75213512ns 1343941 1c000e82 fff60613 addi x12, x12, -1 x12=0000010a x12:0000010b +75213532ns 1343942 1c000e84 00130313 addi x6, x6, 1 x6=1c00a77e x6:1c00a77d +75213552ns 1343943 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000010a +75213631ns 1343947 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a77e PA:1c00a77e +75213651ns 1343948 1c000e82 fff60613 addi x12, x12, -1 x12=00000109 x12:0000010a +75213671ns 1343949 1c000e84 00130313 addi x6, x6, 1 x6=1c00a77f x6:1c00a77e +75213691ns 1343950 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000109 +75213770ns 1343954 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a77f PA:1c00a77f +75213790ns 1343955 1c000e82 fff60613 addi x12, x12, -1 x12=00000108 x12:00000109 +75213809ns 1343956 1c000e84 00130313 addi x6, x6, 1 x6=1c00a780 x6:1c00a77f +75213829ns 1343957 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000108 +75213908ns 1343961 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a780 PA:1c00a780 +75213928ns 1343962 1c000e82 fff60613 addi x12, x12, -1 x12=00000107 x12:00000108 +75213948ns 1343963 1c000e84 00130313 addi x6, x6, 1 x6=1c00a781 x6:1c00a780 +75213968ns 1343964 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000107 +75214047ns 1343968 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a781 PA:1c00a781 +75214067ns 1343969 1c000e82 fff60613 addi x12, x12, -1 x12=00000106 x12:00000107 +75214086ns 1343970 1c000e84 00130313 addi x6, x6, 1 x6=1c00a782 x6:1c00a781 +75214106ns 1343971 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000106 +75214185ns 1343975 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a782 PA:1c00a782 +75214205ns 1343976 1c000e82 fff60613 addi x12, x12, -1 x12=00000105 x12:00000106 +75214225ns 1343977 1c000e84 00130313 addi x6, x6, 1 x6=1c00a783 x6:1c00a782 +75214245ns 1343978 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000105 +75214324ns 1343982 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a783 PA:1c00a783 +75214344ns 1343983 1c000e82 fff60613 addi x12, x12, -1 x12=00000104 x12:00000105 +75214363ns 1343984 1c000e84 00130313 addi x6, x6, 1 x6=1c00a784 x6:1c00a783 +75214383ns 1343985 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000104 +75214462ns 1343989 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a784 PA:1c00a784 +75214482ns 1343990 1c000e82 fff60613 addi x12, x12, -1 x12=00000103 x12:00000104 +75214502ns 1343991 1c000e84 00130313 addi x6, x6, 1 x6=1c00a785 x6:1c00a784 +75214522ns 1343992 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000103 +75214601ns 1343996 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a785 PA:1c00a785 +75214621ns 1343997 1c000e82 fff60613 addi x12, x12, -1 x12=00000102 x12:00000103 +75214641ns 1343998 1c000e84 00130313 addi x6, x6, 1 x6=1c00a786 x6:1c00a785 +75214660ns 1343999 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000102 +75214740ns 1344003 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a786 PA:1c00a786 +75214759ns 1344004 1c000e82 fff60613 addi x12, x12, -1 x12=00000101 x12:00000102 +75214779ns 1344005 1c000e84 00130313 addi x6, x6, 1 x6=1c00a787 x6:1c00a786 +75214799ns 1344006 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000101 +75214878ns 1344010 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a787 PA:1c00a787 +75214898ns 1344011 1c000e82 fff60613 addi x12, x12, -1 x12=00000100 x12:00000101 +75214918ns 1344012 1c000e84 00130313 addi x6, x6, 1 x6=1c00a788 x6:1c00a787 +75214937ns 1344013 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000100 +75215017ns 1344017 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a788 PA:1c00a788 +75215036ns 1344018 1c000e82 fff60613 addi x12, x12, -1 x12=000000ff x12:00000100 +75215056ns 1344019 1c000e84 00130313 addi x6, x6, 1 x6=1c00a789 x6:1c00a788 +75215076ns 1344020 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ff +75215155ns 1344024 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a789 PA:1c00a789 +75215175ns 1344025 1c000e82 fff60613 addi x12, x12, -1 x12=000000fe x12:000000ff +75215195ns 1344026 1c000e84 00130313 addi x6, x6, 1 x6=1c00a78a x6:1c00a789 +75215215ns 1344027 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000fe +75215294ns 1344031 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a78a PA:1c00a78a +75215313ns 1344032 1c000e82 fff60613 addi x12, x12, -1 x12=000000fd x12:000000fe +75215333ns 1344033 1c000e84 00130313 addi x6, x6, 1 x6=1c00a78b x6:1c00a78a +75215353ns 1344034 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000fd +75215432ns 1344038 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a78b PA:1c00a78b +75215452ns 1344039 1c000e82 fff60613 addi x12, x12, -1 x12=000000fc x12:000000fd +75215472ns 1344040 1c000e84 00130313 addi x6, x6, 1 x6=1c00a78c x6:1c00a78b +75215492ns 1344041 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000fc +75215571ns 1344045 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a78c PA:1c00a78c +75215591ns 1344046 1c000e82 fff60613 addi x12, x12, -1 x12=000000fb x12:000000fc +75215610ns 1344047 1c000e84 00130313 addi x6, x6, 1 x6=1c00a78d x6:1c00a78c +75215630ns 1344048 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000fb +75215709ns 1344052 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a78d PA:1c00a78d +75215729ns 1344053 1c000e82 fff60613 addi x12, x12, -1 x12=000000fa x12:000000fb +75215749ns 1344054 1c000e84 00130313 addi x6, x6, 1 x6=1c00a78e x6:1c00a78d +75215769ns 1344055 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000fa +75215848ns 1344059 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a78e PA:1c00a78e +75215868ns 1344060 1c000e82 fff60613 addi x12, x12, -1 x12=000000f9 x12:000000fa +75215887ns 1344061 1c000e84 00130313 addi x6, x6, 1 x6=1c00a78f x6:1c00a78e +75215907ns 1344062 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f9 +75215986ns 1344066 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a78f PA:1c00a78f +75216006ns 1344067 1c000e82 fff60613 addi x12, x12, -1 x12=000000f8 x12:000000f9 +75216026ns 1344068 1c000e84 00130313 addi x6, x6, 1 x6=1c00a790 x6:1c00a78f +75216046ns 1344069 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f8 +75216125ns 1344073 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a790 PA:1c00a790 +75216145ns 1344074 1c000e82 fff60613 addi x12, x12, -1 x12=000000f7 x12:000000f8 +75216165ns 1344075 1c000e84 00130313 addi x6, x6, 1 x6=1c00a791 x6:1c00a790 +75216184ns 1344076 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f7 +75216264ns 1344080 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a791 PA:1c00a791 +75216283ns 1344081 1c000e82 fff60613 addi x12, x12, -1 x12=000000f6 x12:000000f7 +75216303ns 1344082 1c000e84 00130313 addi x6, x6, 1 x6=1c00a792 x6:1c00a791 +75216323ns 1344083 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f6 +75216402ns 1344087 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a792 PA:1c00a792 +75216422ns 1344088 1c000e82 fff60613 addi x12, x12, -1 x12=000000f5 x12:000000f6 +75216442ns 1344089 1c000e84 00130313 addi x6, x6, 1 x6=1c00a793 x6:1c00a792 +75216461ns 1344090 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f5 +75216541ns 1344094 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a793 PA:1c00a793 +75216560ns 1344095 1c000e82 fff60613 addi x12, x12, -1 x12=000000f4 x12:000000f5 +75216580ns 1344096 1c000e84 00130313 addi x6, x6, 1 x6=1c00a794 x6:1c00a793 +75216600ns 1344097 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f4 +75216679ns 1344101 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a794 PA:1c00a794 +75216699ns 1344102 1c000e82 fff60613 addi x12, x12, -1 x12=000000f3 x12:000000f4 +75216719ns 1344103 1c000e84 00130313 addi x6, x6, 1 x6=1c00a795 x6:1c00a794 +75216739ns 1344104 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f3 +75216818ns 1344108 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a795 PA:1c00a795 +75216837ns 1344109 1c000e82 fff60613 addi x12, x12, -1 x12=000000f2 x12:000000f3 +75216857ns 1344110 1c000e84 00130313 addi x6, x6, 1 x6=1c00a796 x6:1c00a795 +75216877ns 1344111 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f2 +75216956ns 1344115 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a796 PA:1c00a796 +75216976ns 1344116 1c000e82 fff60613 addi x12, x12, -1 x12=000000f1 x12:000000f2 +75216996ns 1344117 1c000e84 00130313 addi x6, x6, 1 x6=1c00a797 x6:1c00a796 +75217016ns 1344118 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f1 +75217095ns 1344122 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a797 PA:1c00a797 +75217115ns 1344123 1c000e82 fff60613 addi x12, x12, -1 x12=000000f0 x12:000000f1 +75217134ns 1344124 1c000e84 00130313 addi x6, x6, 1 x6=1c00a798 x6:1c00a797 +75217154ns 1344125 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f0 +75217233ns 1344129 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a798 PA:1c00a798 +75217253ns 1344130 1c000e82 fff60613 addi x12, x12, -1 x12=000000ef x12:000000f0 +75217273ns 1344131 1c000e84 00130313 addi x6, x6, 1 x6=1c00a799 x6:1c00a798 +75217293ns 1344132 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ef +75217372ns 1344136 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a799 PA:1c00a799 +75217392ns 1344137 1c000e82 fff60613 addi x12, x12, -1 x12=000000ee x12:000000ef +75217411ns 1344138 1c000e84 00130313 addi x6, x6, 1 x6=1c00a79a x6:1c00a799 +75217431ns 1344139 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ee +75217510ns 1344143 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a79a PA:1c00a79a +75217530ns 1344144 1c000e82 fff60613 addi x12, x12, -1 x12=000000ed x12:000000ee +75217550ns 1344145 1c000e84 00130313 addi x6, x6, 1 x6=1c00a79b x6:1c00a79a +75217570ns 1344146 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ed +75217649ns 1344150 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a79b PA:1c00a79b +75217669ns 1344151 1c000e82 fff60613 addi x12, x12, -1 x12=000000ec x12:000000ed +75217689ns 1344152 1c000e84 00130313 addi x6, x6, 1 x6=1c00a79c x6:1c00a79b +75217708ns 1344153 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ec +75217787ns 1344157 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a79c PA:1c00a79c +75217807ns 1344158 1c000e82 fff60613 addi x12, x12, -1 x12=000000eb x12:000000ec +75217827ns 1344159 1c000e84 00130313 addi x6, x6, 1 x6=1c00a79d x6:1c00a79c +75217847ns 1344160 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000eb +75217926ns 1344164 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a79d PA:1c00a79d +75217946ns 1344165 1c000e82 fff60613 addi x12, x12, -1 x12=000000ea x12:000000eb +75217966ns 1344166 1c000e84 00130313 addi x6, x6, 1 x6=1c00a79e x6:1c00a79d +75217985ns 1344167 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ea +75218065ns 1344171 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a79e PA:1c00a79e +75218084ns 1344172 1c000e82 fff60613 addi x12, x12, -1 x12=000000e9 x12:000000ea +75218104ns 1344173 1c000e84 00130313 addi x6, x6, 1 x6=1c00a79f x6:1c00a79e +75218124ns 1344174 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e9 +75218203ns 1344178 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a79f PA:1c00a79f +75218223ns 1344179 1c000e82 fff60613 addi x12, x12, -1 x12=000000e8 x12:000000e9 +75218243ns 1344180 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7a0 x6:1c00a79f +75218263ns 1344181 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e8 +75218342ns 1344185 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7a0 PA:1c00a7a0 +75218361ns 1344186 1c000e82 fff60613 addi x12, x12, -1 x12=000000e7 x12:000000e8 +75218381ns 1344187 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7a1 x6:1c00a7a0 +75218401ns 1344188 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e7 +75218480ns 1344192 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7a1 PA:1c00a7a1 +75218500ns 1344193 1c000e82 fff60613 addi x12, x12, -1 x12=000000e6 x12:000000e7 +75218520ns 1344194 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7a2 x6:1c00a7a1 +75218540ns 1344195 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e6 +75218619ns 1344199 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7a2 PA:1c00a7a2 +75218639ns 1344200 1c000e82 fff60613 addi x12, x12, -1 x12=000000e5 x12:000000e6 +75218658ns 1344201 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7a3 x6:1c00a7a2 +75218678ns 1344202 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e5 +75218757ns 1344206 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7a3 PA:1c00a7a3 +75218777ns 1344207 1c000e82 fff60613 addi x12, x12, -1 x12=000000e4 x12:000000e5 +75218797ns 1344208 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7a4 x6:1c00a7a3 +75218817ns 1344209 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e4 +75218896ns 1344213 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7a4 PA:1c00a7a4 +75218916ns 1344214 1c000e82 fff60613 addi x12, x12, -1 x12=000000e3 x12:000000e4 +75218935ns 1344215 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7a5 x6:1c00a7a4 +75218955ns 1344216 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e3 +75219034ns 1344220 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7a5 PA:1c00a7a5 +75219054ns 1344221 1c000e82 fff60613 addi x12, x12, -1 x12=000000e2 x12:000000e3 +75219074ns 1344222 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7a6 x6:1c00a7a5 +75219094ns 1344223 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e2 +75219173ns 1344227 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7a6 PA:1c00a7a6 +75219193ns 1344228 1c000e82 fff60613 addi x12, x12, -1 x12=000000e1 x12:000000e2 +75219213ns 1344229 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7a7 x6:1c00a7a6 +75219232ns 1344230 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e1 +75219311ns 1344234 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7a7 PA:1c00a7a7 +75219331ns 1344235 1c000e82 fff60613 addi x12, x12, -1 x12=000000e0 x12:000000e1 +75219351ns 1344236 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7a8 x6:1c00a7a7 +75219371ns 1344237 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e0 +75219450ns 1344241 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7a8 PA:1c00a7a8 +75219470ns 1344242 1c000e82 fff60613 addi x12, x12, -1 x12=000000df x12:000000e0 +75219490ns 1344243 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7a9 x6:1c00a7a8 +75219509ns 1344244 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000df +75219589ns 1344248 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7a9 PA:1c00a7a9 +75219608ns 1344249 1c000e82 fff60613 addi x12, x12, -1 x12=000000de x12:000000df +75219628ns 1344250 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7aa x6:1c00a7a9 +75219648ns 1344251 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000de +75219727ns 1344255 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7aa PA:1c00a7aa +75219747ns 1344256 1c000e82 fff60613 addi x12, x12, -1 x12=000000dd x12:000000de +75219767ns 1344257 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7ab x6:1c00a7aa +75219786ns 1344258 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000dd +75219866ns 1344262 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7ab PA:1c00a7ab +75219885ns 1344263 1c000e82 fff60613 addi x12, x12, -1 x12=000000dc x12:000000dd +75219905ns 1344264 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7ac x6:1c00a7ab +75219925ns 1344265 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000dc +75220004ns 1344269 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7ac PA:1c00a7ac +75220024ns 1344270 1c000e82 fff60613 addi x12, x12, -1 x12=000000db x12:000000dc +75220044ns 1344271 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7ad x6:1c00a7ac +75220064ns 1344272 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000db +75220143ns 1344276 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7ad PA:1c00a7ad +75220163ns 1344277 1c000e82 fff60613 addi x12, x12, -1 x12=000000da x12:000000db +75220182ns 1344278 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7ae x6:1c00a7ad +75220202ns 1344279 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000da +75220281ns 1344283 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7ae PA:1c00a7ae +75220301ns 1344284 1c000e82 fff60613 addi x12, x12, -1 x12=000000d9 x12:000000da +75220321ns 1344285 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7af x6:1c00a7ae +75220341ns 1344286 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d9 +75220420ns 1344290 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7af PA:1c00a7af +75220440ns 1344291 1c000e82 fff60613 addi x12, x12, -1 x12=000000d8 x12:000000d9 +75220459ns 1344292 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7b0 x6:1c00a7af +75220479ns 1344293 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d8 +75220558ns 1344297 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7b0 PA:1c00a7b0 +75220578ns 1344298 1c000e82 fff60613 addi x12, x12, -1 x12=000000d7 x12:000000d8 +75220598ns 1344299 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7b1 x6:1c00a7b0 +75220618ns 1344300 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d7 +75220697ns 1344304 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7b1 PA:1c00a7b1 +75220717ns 1344305 1c000e82 fff60613 addi x12, x12, -1 x12=000000d6 x12:000000d7 +75220737ns 1344306 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7b2 x6:1c00a7b1 +75220756ns 1344307 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d6 +75220835ns 1344311 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7b2 PA:1c00a7b2 +75220855ns 1344312 1c000e82 fff60613 addi x12, x12, -1 x12=000000d5 x12:000000d6 +75220875ns 1344313 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7b3 x6:1c00a7b2 +75220895ns 1344314 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d5 +75220974ns 1344318 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7b3 PA:1c00a7b3 +75220994ns 1344319 1c000e82 fff60613 addi x12, x12, -1 x12=000000d4 x12:000000d5 +75221014ns 1344320 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7b4 x6:1c00a7b3 +75221033ns 1344321 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d4 +75221113ns 1344325 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7b4 PA:1c00a7b4 +75221132ns 1344326 1c000e82 fff60613 addi x12, x12, -1 x12=000000d3 x12:000000d4 +75221152ns 1344327 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7b5 x6:1c00a7b4 +75221172ns 1344328 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d3 +75221251ns 1344332 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7b5 PA:1c00a7b5 +75221271ns 1344333 1c000e82 fff60613 addi x12, x12, -1 x12=000000d2 x12:000000d3 +75221291ns 1344334 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7b6 x6:1c00a7b5 +75221310ns 1344335 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d2 +75221390ns 1344339 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7b6 PA:1c00a7b6 +75221409ns 1344340 1c000e82 fff60613 addi x12, x12, -1 x12=000000d1 x12:000000d2 +75221429ns 1344341 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7b7 x6:1c00a7b6 +75221449ns 1344342 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d1 +75221528ns 1344346 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7b7 PA:1c00a7b7 +75221548ns 1344347 1c000e82 fff60613 addi x12, x12, -1 x12=000000d0 x12:000000d1 +75221568ns 1344348 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7b8 x6:1c00a7b7 +75221588ns 1344349 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d0 +75221667ns 1344353 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7b8 PA:1c00a7b8 +75221687ns 1344354 1c000e82 fff60613 addi x12, x12, -1 x12=000000cf x12:000000d0 +75221706ns 1344355 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7b9 x6:1c00a7b8 +75221726ns 1344356 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000cf +75221805ns 1344360 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7b9 PA:1c00a7b9 +75221825ns 1344361 1c000e82 fff60613 addi x12, x12, -1 x12=000000ce x12:000000cf +75221845ns 1344362 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7ba x6:1c00a7b9 +75221865ns 1344363 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ce +75221944ns 1344367 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7ba PA:1c00a7ba +75221964ns 1344368 1c000e82 fff60613 addi x12, x12, -1 x12=000000cd x12:000000ce +75221983ns 1344369 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7bb x6:1c00a7ba +75222003ns 1344370 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000cd +75222082ns 1344374 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7bb PA:1c00a7bb +75222102ns 1344375 1c000e82 fff60613 addi x12, x12, -1 x12=000000cc x12:000000cd +75222122ns 1344376 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7bc x6:1c00a7bb +75222142ns 1344377 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000cc +75222221ns 1344381 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7bc PA:1c00a7bc +75222241ns 1344382 1c000e82 fff60613 addi x12, x12, -1 x12=000000cb x12:000000cc +75222260ns 1344383 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7bd x6:1c00a7bc +75222280ns 1344384 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000cb +75222359ns 1344388 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7bd PA:1c00a7bd +75222379ns 1344389 1c000e82 fff60613 addi x12, x12, -1 x12=000000ca x12:000000cb +75222399ns 1344390 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7be x6:1c00a7bd +75222419ns 1344391 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ca +75222498ns 1344395 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7be PA:1c00a7be +75222518ns 1344396 1c000e82 fff60613 addi x12, x12, -1 x12=000000c9 x12:000000ca +75222538ns 1344397 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7bf x6:1c00a7be +75222557ns 1344398 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c9 +75222637ns 1344402 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7bf PA:1c00a7bf +75222656ns 1344403 1c000e82 fff60613 addi x12, x12, -1 x12=000000c8 x12:000000c9 +75222676ns 1344404 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7c0 x6:1c00a7bf +75222696ns 1344405 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c8 +75222775ns 1344409 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7c0 PA:1c00a7c0 +75222795ns 1344410 1c000e82 fff60613 addi x12, x12, -1 x12=000000c7 x12:000000c8 +75222815ns 1344411 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7c1 x6:1c00a7c0 +75222834ns 1344412 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c7 +75222914ns 1344416 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7c1 PA:1c00a7c1 +75222933ns 1344417 1c000e82 fff60613 addi x12, x12, -1 x12=000000c6 x12:000000c7 +75222953ns 1344418 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7c2 x6:1c00a7c1 +75222973ns 1344419 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c6 +75223052ns 1344423 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7c2 PA:1c00a7c2 +75223072ns 1344424 1c000e82 fff60613 addi x12, x12, -1 x12=000000c5 x12:000000c6 +75223092ns 1344425 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7c3 x6:1c00a7c2 +75223112ns 1344426 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c5 +75223191ns 1344430 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7c3 PA:1c00a7c3 +75223211ns 1344431 1c000e82 fff60613 addi x12, x12, -1 x12=000000c4 x12:000000c5 +75223230ns 1344432 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7c4 x6:1c00a7c3 +75223250ns 1344433 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c4 +75223329ns 1344437 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7c4 PA:1c00a7c4 +75223349ns 1344438 1c000e82 fff60613 addi x12, x12, -1 x12=000000c3 x12:000000c4 +75223369ns 1344439 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7c5 x6:1c00a7c4 +75223389ns 1344440 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c3 +75223468ns 1344444 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7c5 PA:1c00a7c5 +75223488ns 1344445 1c000e82 fff60613 addi x12, x12, -1 x12=000000c2 x12:000000c3 +75223507ns 1344446 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7c6 x6:1c00a7c5 +75223527ns 1344447 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c2 +75223606ns 1344451 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7c6 PA:1c00a7c6 +75223626ns 1344452 1c000e82 fff60613 addi x12, x12, -1 x12=000000c1 x12:000000c2 +75223646ns 1344453 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7c7 x6:1c00a7c6 +75223666ns 1344454 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c1 +75223745ns 1344458 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7c7 PA:1c00a7c7 +75223765ns 1344459 1c000e82 fff60613 addi x12, x12, -1 x12=000000c0 x12:000000c1 +75223784ns 1344460 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7c8 x6:1c00a7c7 +75223804ns 1344461 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c0 +75223883ns 1344465 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7c8 PA:1c00a7c8 +75223903ns 1344466 1c000e82 fff60613 addi x12, x12, -1 x12=000000bf x12:000000c0 +75223923ns 1344467 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7c9 x6:1c00a7c8 +75223943ns 1344468 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000bf +75224022ns 1344472 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7c9 PA:1c00a7c9 +75224042ns 1344473 1c000e82 fff60613 addi x12, x12, -1 x12=000000be x12:000000bf +75224062ns 1344474 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7ca x6:1c00a7c9 +75224081ns 1344475 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000be +75224161ns 1344479 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7ca PA:1c00a7ca +75224180ns 1344480 1c000e82 fff60613 addi x12, x12, -1 x12=000000bd x12:000000be +75224200ns 1344481 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7cb x6:1c00a7ca +75224220ns 1344482 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000bd +75224299ns 1344486 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7cb PA:1c00a7cb +75224319ns 1344487 1c000e82 fff60613 addi x12, x12, -1 x12=000000bc x12:000000bd +75224339ns 1344488 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7cc x6:1c00a7cb +75224358ns 1344489 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000bc +75224438ns 1344493 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7cc PA:1c00a7cc +75224457ns 1344494 1c000e82 fff60613 addi x12, x12, -1 x12=000000bb x12:000000bc +75224477ns 1344495 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7cd x6:1c00a7cc +75224497ns 1344496 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000bb +75224576ns 1344500 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7cd PA:1c00a7cd +75224596ns 1344501 1c000e82 fff60613 addi x12, x12, -1 x12=000000ba x12:000000bb +75224616ns 1344502 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7ce x6:1c00a7cd +75224636ns 1344503 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ba +75224715ns 1344507 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7ce PA:1c00a7ce +75224734ns 1344508 1c000e82 fff60613 addi x12, x12, -1 x12=000000b9 x12:000000ba +75224754ns 1344509 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7cf x6:1c00a7ce +75224774ns 1344510 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b9 +75224853ns 1344514 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7cf PA:1c00a7cf +75224873ns 1344515 1c000e82 fff60613 addi x12, x12, -1 x12=000000b8 x12:000000b9 +75224893ns 1344516 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7d0 x6:1c00a7cf +75224913ns 1344517 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b8 +75224992ns 1344521 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7d0 PA:1c00a7d0 +75225012ns 1344522 1c000e82 fff60613 addi x12, x12, -1 x12=000000b7 x12:000000b8 +75225031ns 1344523 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7d1 x6:1c00a7d0 +75225051ns 1344524 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b7 +75225130ns 1344528 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7d1 PA:1c00a7d1 +75225150ns 1344529 1c000e82 fff60613 addi x12, x12, -1 x12=000000b6 x12:000000b7 +75225170ns 1344530 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7d2 x6:1c00a7d1 +75225190ns 1344531 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b6 +75225269ns 1344535 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7d2 PA:1c00a7d2 +75225289ns 1344536 1c000e82 fff60613 addi x12, x12, -1 x12=000000b5 x12:000000b6 +75225308ns 1344537 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7d3 x6:1c00a7d2 +75225328ns 1344538 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b5 +75225407ns 1344542 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7d3 PA:1c00a7d3 +75225427ns 1344543 1c000e82 fff60613 addi x12, x12, -1 x12=000000b4 x12:000000b5 +75225447ns 1344544 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7d4 x6:1c00a7d3 +75225467ns 1344545 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b4 +75225546ns 1344549 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7d4 PA:1c00a7d4 +75225566ns 1344550 1c000e82 fff60613 addi x12, x12, -1 x12=000000b3 x12:000000b4 +75225586ns 1344551 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7d5 x6:1c00a7d4 +75225605ns 1344552 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b3 +75225685ns 1344556 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7d5 PA:1c00a7d5 +75225704ns 1344557 1c000e82 fff60613 addi x12, x12, -1 x12=000000b2 x12:000000b3 +75225724ns 1344558 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7d6 x6:1c00a7d5 +75225744ns 1344559 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b2 +75225823ns 1344563 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7d6 PA:1c00a7d6 +75225843ns 1344564 1c000e82 fff60613 addi x12, x12, -1 x12=000000b1 x12:000000b2 +75225863ns 1344565 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7d7 x6:1c00a7d6 +75225882ns 1344566 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b1 +75225962ns 1344570 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7d7 PA:1c00a7d7 +75225981ns 1344571 1c000e82 fff60613 addi x12, x12, -1 x12=000000b0 x12:000000b1 +75226001ns 1344572 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7d8 x6:1c00a7d7 +75226021ns 1344573 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b0 +75226100ns 1344577 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7d8 PA:1c00a7d8 +75226120ns 1344578 1c000e82 fff60613 addi x12, x12, -1 x12=000000af x12:000000b0 +75226140ns 1344579 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7d9 x6:1c00a7d8 +75226160ns 1344580 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000af +75226239ns 1344584 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7d9 PA:1c00a7d9 +75226258ns 1344585 1c000e82 fff60613 addi x12, x12, -1 x12=000000ae x12:000000af +75226278ns 1344586 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7da x6:1c00a7d9 +75226298ns 1344587 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ae +75226377ns 1344591 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7da PA:1c00a7da +75226397ns 1344592 1c000e82 fff60613 addi x12, x12, -1 x12=000000ad x12:000000ae +75226417ns 1344593 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7db x6:1c00a7da +75226437ns 1344594 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ad +75226516ns 1344598 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7db PA:1c00a7db +75226536ns 1344599 1c000e82 fff60613 addi x12, x12, -1 x12=000000ac x12:000000ad +75226555ns 1344600 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7dc x6:1c00a7db +75226575ns 1344601 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ac +75226654ns 1344605 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7dc PA:1c00a7dc +75226674ns 1344606 1c000e82 fff60613 addi x12, x12, -1 x12=000000ab x12:000000ac +75226694ns 1344607 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7dd x6:1c00a7dc +75226714ns 1344608 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ab +75226793ns 1344612 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7dd PA:1c00a7dd +75226813ns 1344613 1c000e82 fff60613 addi x12, x12, -1 x12=000000aa x12:000000ab +75226832ns 1344614 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7de x6:1c00a7dd +75226852ns 1344615 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000aa +75226931ns 1344619 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7de PA:1c00a7de +75226951ns 1344620 1c000e82 fff60613 addi x12, x12, -1 x12=000000a9 x12:000000aa +75226971ns 1344621 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7df x6:1c00a7de +75226991ns 1344622 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a9 +75227070ns 1344626 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7df PA:1c00a7df +75227090ns 1344627 1c000e82 fff60613 addi x12, x12, -1 x12=000000a8 x12:000000a9 +75227110ns 1344628 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7e0 x6:1c00a7df +75227129ns 1344629 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a8 +75227208ns 1344633 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7e0 PA:1c00a7e0 +75227228ns 1344634 1c000e82 fff60613 addi x12, x12, -1 x12=000000a7 x12:000000a8 +75227248ns 1344635 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7e1 x6:1c00a7e0 +75227268ns 1344636 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a7 +75227347ns 1344640 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7e1 PA:1c00a7e1 +75227367ns 1344641 1c000e82 fff60613 addi x12, x12, -1 x12=000000a6 x12:000000a7 +75227387ns 1344642 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7e2 x6:1c00a7e1 +75227406ns 1344643 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a6 +75227486ns 1344647 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7e2 PA:1c00a7e2 +75227505ns 1344648 1c000e82 fff60613 addi x12, x12, -1 x12=000000a5 x12:000000a6 +75227525ns 1344649 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7e3 x6:1c00a7e2 +75227545ns 1344650 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a5 +75227624ns 1344654 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7e3 PA:1c00a7e3 +75227644ns 1344655 1c000e82 fff60613 addi x12, x12, -1 x12=000000a4 x12:000000a5 +75227664ns 1344656 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7e4 x6:1c00a7e3 +75227683ns 1344657 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a4 +75227763ns 1344661 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7e4 PA:1c00a7e4 +75227782ns 1344662 1c000e82 fff60613 addi x12, x12, -1 x12=000000a3 x12:000000a4 +75227802ns 1344663 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7e5 x6:1c00a7e4 +75227822ns 1344664 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a3 +75227901ns 1344668 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7e5 PA:1c00a7e5 +75227921ns 1344669 1c000e82 fff60613 addi x12, x12, -1 x12=000000a2 x12:000000a3 +75227941ns 1344670 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7e6 x6:1c00a7e5 +75227961ns 1344671 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a2 +75228040ns 1344675 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7e6 PA:1c00a7e6 +75228060ns 1344676 1c000e82 fff60613 addi x12, x12, -1 x12=000000a1 x12:000000a2 +75228079ns 1344677 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7e7 x6:1c00a7e6 +75228099ns 1344678 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a1 +75228178ns 1344682 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7e7 PA:1c00a7e7 +75228198ns 1344683 1c000e82 fff60613 addi x12, x12, -1 x12=000000a0 x12:000000a1 +75228218ns 1344684 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7e8 x6:1c00a7e7 +75228238ns 1344685 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a0 +75228317ns 1344689 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7e8 PA:1c00a7e8 +75228337ns 1344690 1c000e82 fff60613 addi x12, x12, -1 x12=0000009f x12:000000a0 +75228356ns 1344691 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7e9 x6:1c00a7e8 +75228376ns 1344692 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000009f +75228455ns 1344696 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7e9 PA:1c00a7e9 +75228475ns 1344697 1c000e82 fff60613 addi x12, x12, -1 x12=0000009e x12:0000009f +75228495ns 1344698 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7ea x6:1c00a7e9 +75228515ns 1344699 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000009e +75228594ns 1344703 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7ea PA:1c00a7ea +75228614ns 1344704 1c000e82 fff60613 addi x12, x12, -1 x12=0000009d x12:0000009e +75228634ns 1344705 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7eb x6:1c00a7ea +75228653ns 1344706 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000009d +75228732ns 1344710 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7eb PA:1c00a7eb +75228752ns 1344711 1c000e82 fff60613 addi x12, x12, -1 x12=0000009c x12:0000009d +75228772ns 1344712 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7ec x6:1c00a7eb +75228792ns 1344713 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000009c +75228871ns 1344717 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7ec PA:1c00a7ec +75228891ns 1344718 1c000e82 fff60613 addi x12, x12, -1 x12=0000009b x12:0000009c +75228911ns 1344719 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7ed x6:1c00a7ec +75228930ns 1344720 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000009b +75229010ns 1344724 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7ed PA:1c00a7ed +75229029ns 1344725 1c000e82 fff60613 addi x12, x12, -1 x12=0000009a x12:0000009b +75229049ns 1344726 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7ee x6:1c00a7ed +75229069ns 1344727 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000009a +75229148ns 1344731 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7ee PA:1c00a7ee +75229168ns 1344732 1c000e82 fff60613 addi x12, x12, -1 x12=00000099 x12:0000009a +75229188ns 1344733 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7ef x6:1c00a7ee +75229207ns 1344734 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000099 +75229287ns 1344738 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7ef PA:1c00a7ef +75229306ns 1344739 1c000e82 fff60613 addi x12, x12, -1 x12=00000098 x12:00000099 +75229326ns 1344740 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7f0 x6:1c00a7ef +75229346ns 1344741 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000098 +75229425ns 1344745 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7f0 PA:1c00a7f0 +75229445ns 1344746 1c000e82 fff60613 addi x12, x12, -1 x12=00000097 x12:00000098 +75229465ns 1344747 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7f1 x6:1c00a7f0 +75229485ns 1344748 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000097 +75229564ns 1344752 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7f1 PA:1c00a7f1 +75229584ns 1344753 1c000e82 fff60613 addi x12, x12, -1 x12=00000096 x12:00000097 +75229603ns 1344754 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7f2 x6:1c00a7f1 +75229623ns 1344755 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000096 +75229702ns 1344759 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7f2 PA:1c00a7f2 +75229722ns 1344760 1c000e82 fff60613 addi x12, x12, -1 x12=00000095 x12:00000096 +75229742ns 1344761 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7f3 x6:1c00a7f2 +75229762ns 1344762 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000095 +75229841ns 1344766 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7f3 PA:1c00a7f3 +75229861ns 1344767 1c000e82 fff60613 addi x12, x12, -1 x12=00000094 x12:00000095 +75229880ns 1344768 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7f4 x6:1c00a7f3 +75229900ns 1344769 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000094 +75229979ns 1344773 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7f4 PA:1c00a7f4 +75229999ns 1344774 1c000e82 fff60613 addi x12, x12, -1 x12=00000093 x12:00000094 +75230019ns 1344775 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7f5 x6:1c00a7f4 +75230039ns 1344776 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000093 +75230118ns 1344780 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7f5 PA:1c00a7f5 +75230138ns 1344781 1c000e82 fff60613 addi x12, x12, -1 x12=00000092 x12:00000093 +75230157ns 1344782 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7f6 x6:1c00a7f5 +75230177ns 1344783 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000092 +75230256ns 1344787 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7f6 PA:1c00a7f6 +75230276ns 1344788 1c000e82 fff60613 addi x12, x12, -1 x12=00000091 x12:00000092 +75230296ns 1344789 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7f7 x6:1c00a7f6 +75230316ns 1344790 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000091 +75230395ns 1344794 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7f7 PA:1c00a7f7 +75230415ns 1344795 1c000e82 fff60613 addi x12, x12, -1 x12=00000090 x12:00000091 +75230435ns 1344796 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7f8 x6:1c00a7f7 +75230454ns 1344797 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000090 +75230534ns 1344801 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7f8 PA:1c00a7f8 +75230553ns 1344802 1c000e82 fff60613 addi x12, x12, -1 x12=0000008f x12:00000090 +75230573ns 1344803 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7f9 x6:1c00a7f8 +75230593ns 1344804 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000008f +75230672ns 1344808 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7f9 PA:1c00a7f9 +75230692ns 1344809 1c000e82 fff60613 addi x12, x12, -1 x12=0000008e x12:0000008f +75230712ns 1344810 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7fa x6:1c00a7f9 +75230731ns 1344811 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000008e +75230811ns 1344815 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7fa PA:1c00a7fa +75230830ns 1344816 1c000e82 fff60613 addi x12, x12, -1 x12=0000008d x12:0000008e +75230850ns 1344817 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7fb x6:1c00a7fa +75230870ns 1344818 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000008d +75230949ns 1344822 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7fb PA:1c00a7fb +75230969ns 1344823 1c000e82 fff60613 addi x12, x12, -1 x12=0000008c x12:0000008d +75230989ns 1344824 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7fc x6:1c00a7fb +75231009ns 1344825 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000008c +75231088ns 1344829 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7fc PA:1c00a7fc +75231108ns 1344830 1c000e82 fff60613 addi x12, x12, -1 x12=0000008b x12:0000008c +75231127ns 1344831 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7fd x6:1c00a7fc +75231147ns 1344832 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000008b +75231226ns 1344836 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7fd PA:1c00a7fd +75231246ns 1344837 1c000e82 fff60613 addi x12, x12, -1 x12=0000008a x12:0000008b +75231266ns 1344838 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7fe x6:1c00a7fd +75231286ns 1344839 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000008a +75231365ns 1344843 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7fe PA:1c00a7fe +75231385ns 1344844 1c000e82 fff60613 addi x12, x12, -1 x12=00000089 x12:0000008a +75231404ns 1344845 1c000e84 00130313 addi x6, x6, 1 x6=1c00a7ff x6:1c00a7fe +75231424ns 1344846 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000089 +75231503ns 1344850 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a7ff PA:1c00a7ff +75231523ns 1344851 1c000e82 fff60613 addi x12, x12, -1 x12=00000088 x12:00000089 +75231543ns 1344852 1c000e84 00130313 addi x6, x6, 1 x6=1c00a800 x6:1c00a7ff +75231563ns 1344853 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000088 +75231642ns 1344857 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a800 PA:1c00a800 +75231662ns 1344858 1c000e82 fff60613 addi x12, x12, -1 x12=00000087 x12:00000088 +75231681ns 1344859 1c000e84 00130313 addi x6, x6, 1 x6=1c00a801 x6:1c00a800 +75231701ns 1344860 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000087 +75231780ns 1344864 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a801 PA:1c00a801 +75231800ns 1344865 1c000e82 fff60613 addi x12, x12, -1 x12=00000086 x12:00000087 +75231820ns 1344866 1c000e84 00130313 addi x6, x6, 1 x6=1c00a802 x6:1c00a801 +75231840ns 1344867 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000086 +75231919ns 1344871 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a802 PA:1c00a802 +75231939ns 1344872 1c000e82 fff60613 addi x12, x12, -1 x12=00000085 x12:00000086 +75231959ns 1344873 1c000e84 00130313 addi x6, x6, 1 x6=1c00a803 x6:1c00a802 +75231978ns 1344874 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000085 +75232058ns 1344878 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a803 PA:1c00a803 +75232077ns 1344879 1c000e82 fff60613 addi x12, x12, -1 x12=00000084 x12:00000085 +75232097ns 1344880 1c000e84 00130313 addi x6, x6, 1 x6=1c00a804 x6:1c00a803 +75232117ns 1344881 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000084 +75232196ns 1344885 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a804 PA:1c00a804 +75232216ns 1344886 1c000e82 fff60613 addi x12, x12, -1 x12=00000083 x12:00000084 +75232236ns 1344887 1c000e84 00130313 addi x6, x6, 1 x6=1c00a805 x6:1c00a804 +75232255ns 1344888 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000083 +75232335ns 1344892 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a805 PA:1c00a805 +75232354ns 1344893 1c000e82 fff60613 addi x12, x12, -1 x12=00000082 x12:00000083 +75232374ns 1344894 1c000e84 00130313 addi x6, x6, 1 x6=1c00a806 x6:1c00a805 +75232394ns 1344895 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000082 +75232473ns 1344899 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a806 PA:1c00a806 +75232493ns 1344900 1c000e82 fff60613 addi x12, x12, -1 x12=00000081 x12:00000082 +75232513ns 1344901 1c000e84 00130313 addi x6, x6, 1 x6=1c00a807 x6:1c00a806 +75232533ns 1344902 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000081 +75232612ns 1344906 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a807 PA:1c00a807 +75232631ns 1344907 1c000e82 fff60613 addi x12, x12, -1 x12=00000080 x12:00000081 +75232651ns 1344908 1c000e84 00130313 addi x6, x6, 1 x6=1c00a808 x6:1c00a807 +75232671ns 1344909 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000080 +75232750ns 1344913 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a808 PA:1c00a808 +75232770ns 1344914 1c000e82 fff60613 addi x12, x12, -1 x12=0000007f x12:00000080 +75232790ns 1344915 1c000e84 00130313 addi x6, x6, 1 x6=1c00a809 x6:1c00a808 +75232810ns 1344916 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000007f +75232889ns 1344920 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a809 PA:1c00a809 +75232909ns 1344921 1c000e82 fff60613 addi x12, x12, -1 x12=0000007e x12:0000007f +75232928ns 1344922 1c000e84 00130313 addi x6, x6, 1 x6=1c00a80a x6:1c00a809 +75232948ns 1344923 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000007e +75233027ns 1344927 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a80a PA:1c00a80a +75233047ns 1344928 1c000e82 fff60613 addi x12, x12, -1 x12=0000007d x12:0000007e +75233067ns 1344929 1c000e84 00130313 addi x6, x6, 1 x6=1c00a80b x6:1c00a80a +75233087ns 1344930 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000007d +75233166ns 1344934 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a80b PA:1c00a80b +75233186ns 1344935 1c000e82 fff60613 addi x12, x12, -1 x12=0000007c x12:0000007d +75233205ns 1344936 1c000e84 00130313 addi x6, x6, 1 x6=1c00a80c x6:1c00a80b +75233225ns 1344937 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000007c +75233304ns 1344941 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a80c PA:1c00a80c +75233324ns 1344942 1c000e82 fff60613 addi x12, x12, -1 x12=0000007b x12:0000007c +75233344ns 1344943 1c000e84 00130313 addi x6, x6, 1 x6=1c00a80d x6:1c00a80c +75233364ns 1344944 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000007b +75233443ns 1344948 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a80d PA:1c00a80d +75233463ns 1344949 1c000e82 fff60613 addi x12, x12, -1 x12=0000007a x12:0000007b +75233483ns 1344950 1c000e84 00130313 addi x6, x6, 1 x6=1c00a80e x6:1c00a80d +75233502ns 1344951 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000007a +75233582ns 1344955 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a80e PA:1c00a80e +75233601ns 1344956 1c000e82 fff60613 addi x12, x12, -1 x12=00000079 x12:0000007a +75233621ns 1344957 1c000e84 00130313 addi x6, x6, 1 x6=1c00a80f x6:1c00a80e +75233641ns 1344958 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000079 +75233720ns 1344962 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a80f PA:1c00a80f +75233740ns 1344963 1c000e82 fff60613 addi x12, x12, -1 x12=00000078 x12:00000079 +75233760ns 1344964 1c000e84 00130313 addi x6, x6, 1 x6=1c00a810 x6:1c00a80f +75233779ns 1344965 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000078 +75233859ns 1344969 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a810 PA:1c00a810 +75233878ns 1344970 1c000e82 fff60613 addi x12, x12, -1 x12=00000077 x12:00000078 +75233898ns 1344971 1c000e84 00130313 addi x6, x6, 1 x6=1c00a811 x6:1c00a810 +75233918ns 1344972 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000077 +75233997ns 1344976 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a811 PA:1c00a811 +75234017ns 1344977 1c000e82 fff60613 addi x12, x12, -1 x12=00000076 x12:00000077 +75234037ns 1344978 1c000e84 00130313 addi x6, x6, 1 x6=1c00a812 x6:1c00a811 +75234057ns 1344979 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000076 +75234136ns 1344983 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a812 PA:1c00a812 +75234155ns 1344984 1c000e82 fff60613 addi x12, x12, -1 x12=00000075 x12:00000076 +75234175ns 1344985 1c000e84 00130313 addi x6, x6, 1 x6=1c00a813 x6:1c00a812 +75234195ns 1344986 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000075 +75234274ns 1344990 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a813 PA:1c00a813 +75234294ns 1344991 1c000e82 fff60613 addi x12, x12, -1 x12=00000074 x12:00000075 +75234314ns 1344992 1c000e84 00130313 addi x6, x6, 1 x6=1c00a814 x6:1c00a813 +75234334ns 1344993 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000074 +75234413ns 1344997 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a814 PA:1c00a814 +75234433ns 1344998 1c000e82 fff60613 addi x12, x12, -1 x12=00000073 x12:00000074 +75234452ns 1344999 1c000e84 00130313 addi x6, x6, 1 x6=1c00a815 x6:1c00a814 +75234472ns 1345000 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000073 +75234551ns 1345004 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a815 PA:1c00a815 +75234571ns 1345005 1c000e82 fff60613 addi x12, x12, -1 x12=00000072 x12:00000073 +75234591ns 1345006 1c000e84 00130313 addi x6, x6, 1 x6=1c00a816 x6:1c00a815 +75234611ns 1345007 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000072 +75234690ns 1345011 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a816 PA:1c00a816 +75234710ns 1345012 1c000e82 fff60613 addi x12, x12, -1 x12=00000071 x12:00000072 +75234729ns 1345013 1c000e84 00130313 addi x6, x6, 1 x6=1c00a817 x6:1c00a816 +75234749ns 1345014 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000071 +75234828ns 1345018 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a817 PA:1c00a817 +75234848ns 1345019 1c000e82 fff60613 addi x12, x12, -1 x12=00000070 x12:00000071 +75234868ns 1345020 1c000e84 00130313 addi x6, x6, 1 x6=1c00a818 x6:1c00a817 +75234888ns 1345021 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000070 +75234967ns 1345025 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a818 PA:1c00a818 +75234987ns 1345026 1c000e82 fff60613 addi x12, x12, -1 x12=0000006f x12:00000070 +75235007ns 1345027 1c000e84 00130313 addi x6, x6, 1 x6=1c00a819 x6:1c00a818 +75235026ns 1345028 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000006f +75235105ns 1345032 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a819 PA:1c00a819 +75235125ns 1345033 1c000e82 fff60613 addi x12, x12, -1 x12=0000006e x12:0000006f +75235145ns 1345034 1c000e84 00130313 addi x6, x6, 1 x6=1c00a81a x6:1c00a819 +75235165ns 1345035 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000006e +75235244ns 1345039 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a81a PA:1c00a81a +75235264ns 1345040 1c000e82 fff60613 addi x12, x12, -1 x12=0000006d x12:0000006e +75235284ns 1345041 1c000e84 00130313 addi x6, x6, 1 x6=1c00a81b x6:1c00a81a +75235303ns 1345042 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000006d +75235383ns 1345046 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a81b PA:1c00a81b +75235402ns 1345047 1c000e82 fff60613 addi x12, x12, -1 x12=0000006c x12:0000006d +75235422ns 1345048 1c000e84 00130313 addi x6, x6, 1 x6=1c00a81c x6:1c00a81b +75235442ns 1345049 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000006c +75235521ns 1345053 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a81c PA:1c00a81c +75235541ns 1345054 1c000e82 fff60613 addi x12, x12, -1 x12=0000006b x12:0000006c +75235561ns 1345055 1c000e84 00130313 addi x6, x6, 1 x6=1c00a81d x6:1c00a81c +75235581ns 1345056 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000006b +75235660ns 1345060 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a81d PA:1c00a81d +75235679ns 1345061 1c000e82 fff60613 addi x12, x12, -1 x12=0000006a x12:0000006b +75235699ns 1345062 1c000e84 00130313 addi x6, x6, 1 x6=1c00a81e x6:1c00a81d +75235719ns 1345063 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000006a +75235798ns 1345067 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a81e PA:1c00a81e +75235818ns 1345068 1c000e82 fff60613 addi x12, x12, -1 x12=00000069 x12:0000006a +75235838ns 1345069 1c000e84 00130313 addi x6, x6, 1 x6=1c00a81f x6:1c00a81e +75235858ns 1345070 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000069 +75235937ns 1345074 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a81f PA:1c00a81f +75235957ns 1345075 1c000e82 fff60613 addi x12, x12, -1 x12=00000068 x12:00000069 +75235976ns 1345076 1c000e84 00130313 addi x6, x6, 1 x6=1c00a820 x6:1c00a81f +75235996ns 1345077 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000068 +75236075ns 1345081 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a820 PA:1c00a820 +75236095ns 1345082 1c000e82 fff60613 addi x12, x12, -1 x12=00000067 x12:00000068 +75236115ns 1345083 1c000e84 00130313 addi x6, x6, 1 x6=1c00a821 x6:1c00a820 +75236135ns 1345084 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000067 +75236214ns 1345088 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a821 PA:1c00a821 +75236234ns 1345089 1c000e82 fff60613 addi x12, x12, -1 x12=00000066 x12:00000067 +75236253ns 1345090 1c000e84 00130313 addi x6, x6, 1 x6=1c00a822 x6:1c00a821 +75236273ns 1345091 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000066 +75236352ns 1345095 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a822 PA:1c00a822 +75236372ns 1345096 1c000e82 fff60613 addi x12, x12, -1 x12=00000065 x12:00000066 +75236392ns 1345097 1c000e84 00130313 addi x6, x6, 1 x6=1c00a823 x6:1c00a822 +75236412ns 1345098 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000065 +75236491ns 1345102 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a823 PA:1c00a823 +75236511ns 1345103 1c000e82 fff60613 addi x12, x12, -1 x12=00000064 x12:00000065 +75236531ns 1345104 1c000e84 00130313 addi x6, x6, 1 x6=1c00a824 x6:1c00a823 +75236550ns 1345105 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000064 +75236629ns 1345109 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a824 PA:1c00a824 +75236649ns 1345110 1c000e82 fff60613 addi x12, x12, -1 x12=00000063 x12:00000064 +75236669ns 1345111 1c000e84 00130313 addi x6, x6, 1 x6=1c00a825 x6:1c00a824 +75236689ns 1345112 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000063 +75236768ns 1345116 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a825 PA:1c00a825 +75236788ns 1345117 1c000e82 fff60613 addi x12, x12, -1 x12=00000062 x12:00000063 +75236808ns 1345118 1c000e84 00130313 addi x6, x6, 1 x6=1c00a826 x6:1c00a825 +75236827ns 1345119 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000062 +75236907ns 1345123 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a826 PA:1c00a826 +75236926ns 1345124 1c000e82 fff60613 addi x12, x12, -1 x12=00000061 x12:00000062 +75236946ns 1345125 1c000e84 00130313 addi x6, x6, 1 x6=1c00a827 x6:1c00a826 +75236966ns 1345126 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000061 +75237045ns 1345130 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a827 PA:1c00a827 +75237065ns 1345131 1c000e82 fff60613 addi x12, x12, -1 x12=00000060 x12:00000061 +75237085ns 1345132 1c000e84 00130313 addi x6, x6, 1 x6=1c00a828 x6:1c00a827 +75237104ns 1345133 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000060 +75237184ns 1345137 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a828 PA:1c00a828 +75237203ns 1345138 1c000e82 fff60613 addi x12, x12, -1 x12=0000005f x12:00000060 +75237223ns 1345139 1c000e84 00130313 addi x6, x6, 1 x6=1c00a829 x6:1c00a828 +75237243ns 1345140 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000005f +75237322ns 1345144 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a829 PA:1c00a829 +75237342ns 1345145 1c000e82 fff60613 addi x12, x12, -1 x12=0000005e x12:0000005f +75237362ns 1345146 1c000e84 00130313 addi x6, x6, 1 x6=1c00a82a x6:1c00a829 +75237382ns 1345147 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000005e +75237461ns 1345151 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a82a PA:1c00a82a +75237481ns 1345152 1c000e82 fff60613 addi x12, x12, -1 x12=0000005d x12:0000005e +75237500ns 1345153 1c000e84 00130313 addi x6, x6, 1 x6=1c00a82b x6:1c00a82a +75237520ns 1345154 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000005d +75237599ns 1345158 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a82b PA:1c00a82b +75237619ns 1345159 1c000e82 fff60613 addi x12, x12, -1 x12=0000005c x12:0000005d +75237639ns 1345160 1c000e84 00130313 addi x6, x6, 1 x6=1c00a82c x6:1c00a82b +75237659ns 1345161 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000005c +75237738ns 1345165 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a82c PA:1c00a82c +75237758ns 1345166 1c000e82 fff60613 addi x12, x12, -1 x12=0000005b x12:0000005c +75237777ns 1345167 1c000e84 00130313 addi x6, x6, 1 x6=1c00a82d x6:1c00a82c +75237797ns 1345168 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000005b +75237876ns 1345172 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a82d PA:1c00a82d +75237896ns 1345173 1c000e82 fff60613 addi x12, x12, -1 x12=0000005a x12:0000005b +75237916ns 1345174 1c000e84 00130313 addi x6, x6, 1 x6=1c00a82e x6:1c00a82d +75237936ns 1345175 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000005a +75238015ns 1345179 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a82e PA:1c00a82e +75238035ns 1345180 1c000e82 fff60613 addi x12, x12, -1 x12=00000059 x12:0000005a +75238055ns 1345181 1c000e84 00130313 addi x6, x6, 1 x6=1c00a82f x6:1c00a82e +75238074ns 1345182 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000059 +75238153ns 1345186 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a82f PA:1c00a82f +75238173ns 1345187 1c000e82 fff60613 addi x12, x12, -1 x12=00000058 x12:00000059 +75238193ns 1345188 1c000e84 00130313 addi x6, x6, 1 x6=1c00a830 x6:1c00a82f +75238213ns 1345189 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000058 +75238292ns 1345193 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a830 PA:1c00a830 +75238312ns 1345194 1c000e82 fff60613 addi x12, x12, -1 x12=00000057 x12:00000058 +75238332ns 1345195 1c000e84 00130313 addi x6, x6, 1 x6=1c00a831 x6:1c00a830 +75238351ns 1345196 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000057 +75238431ns 1345200 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a831 PA:1c00a831 +75238450ns 1345201 1c000e82 fff60613 addi x12, x12, -1 x12=00000056 x12:00000057 +75238470ns 1345202 1c000e84 00130313 addi x6, x6, 1 x6=1c00a832 x6:1c00a831 +75238490ns 1345203 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000056 +75238569ns 1345207 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a832 PA:1c00a832 +75238589ns 1345208 1c000e82 fff60613 addi x12, x12, -1 x12=00000055 x12:00000056 +75238609ns 1345209 1c000e84 00130313 addi x6, x6, 1 x6=1c00a833 x6:1c00a832 +75238628ns 1345210 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000055 +75238708ns 1345214 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a833 PA:1c00a833 +75238727ns 1345215 1c000e82 fff60613 addi x12, x12, -1 x12=00000054 x12:00000055 +75238747ns 1345216 1c000e84 00130313 addi x6, x6, 1 x6=1c00a834 x6:1c00a833 +75238767ns 1345217 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000054 +75238846ns 1345221 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a834 PA:1c00a834 +75238866ns 1345222 1c000e82 fff60613 addi x12, x12, -1 x12=00000053 x12:00000054 +75238886ns 1345223 1c000e84 00130313 addi x6, x6, 1 x6=1c00a835 x6:1c00a834 +75238906ns 1345224 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000053 +75238985ns 1345228 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a835 PA:1c00a835 +75239005ns 1345229 1c000e82 fff60613 addi x12, x12, -1 x12=00000052 x12:00000053 +75239024ns 1345230 1c000e84 00130313 addi x6, x6, 1 x6=1c00a836 x6:1c00a835 +75239044ns 1345231 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000052 +75239123ns 1345235 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a836 PA:1c00a836 +75239143ns 1345236 1c000e82 fff60613 addi x12, x12, -1 x12=00000051 x12:00000052 +75239163ns 1345237 1c000e84 00130313 addi x6, x6, 1 x6=1c00a837 x6:1c00a836 +75239183ns 1345238 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000051 +75239262ns 1345242 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a837 PA:1c00a837 +75239282ns 1345243 1c000e82 fff60613 addi x12, x12, -1 x12=00000050 x12:00000051 +75239301ns 1345244 1c000e84 00130313 addi x6, x6, 1 x6=1c00a838 x6:1c00a837 +75239321ns 1345245 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000050 +75239400ns 1345249 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a838 PA:1c00a838 +75239420ns 1345250 1c000e82 fff60613 addi x12, x12, -1 x12=0000004f x12:00000050 +75239440ns 1345251 1c000e84 00130313 addi x6, x6, 1 x6=1c00a839 x6:1c00a838 +75239460ns 1345252 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000004f +75239539ns 1345256 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a839 PA:1c00a839 +75239559ns 1345257 1c000e82 fff60613 addi x12, x12, -1 x12=0000004e x12:0000004f +75239578ns 1345258 1c000e84 00130313 addi x6, x6, 1 x6=1c00a83a x6:1c00a839 +75239598ns 1345259 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000004e +75239677ns 1345263 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a83a PA:1c00a83a +75239697ns 1345264 1c000e82 fff60613 addi x12, x12, -1 x12=0000004d x12:0000004e +75239717ns 1345265 1c000e84 00130313 addi x6, x6, 1 x6=1c00a83b x6:1c00a83a +75239737ns 1345266 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000004d +75239816ns 1345270 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a83b PA:1c00a83b +75239836ns 1345271 1c000e82 fff60613 addi x12, x12, -1 x12=0000004c x12:0000004d +75239856ns 1345272 1c000e84 00130313 addi x6, x6, 1 x6=1c00a83c x6:1c00a83b +75239875ns 1345273 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000004c +75239955ns 1345277 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a83c PA:1c00a83c +75239974ns 1345278 1c000e82 fff60613 addi x12, x12, -1 x12=0000004b x12:0000004c +75239994ns 1345279 1c000e84 00130313 addi x6, x6, 1 x6=1c00a83d x6:1c00a83c +75240014ns 1345280 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000004b +75240093ns 1345284 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a83d PA:1c00a83d +75240113ns 1345285 1c000e82 fff60613 addi x12, x12, -1 x12=0000004a x12:0000004b +75240133ns 1345286 1c000e84 00130313 addi x6, x6, 1 x6=1c00a83e x6:1c00a83d +75240152ns 1345287 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000004a +75240232ns 1345291 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a83e PA:1c00a83e +75240251ns 1345292 1c000e82 fff60613 addi x12, x12, -1 x12=00000049 x12:0000004a +75240271ns 1345293 1c000e84 00130313 addi x6, x6, 1 x6=1c00a83f x6:1c00a83e +75240291ns 1345294 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000049 +75240370ns 1345298 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a83f PA:1c00a83f +75240390ns 1345299 1c000e82 fff60613 addi x12, x12, -1 x12=00000048 x12:00000049 +75240410ns 1345300 1c000e84 00130313 addi x6, x6, 1 x6=1c00a840 x6:1c00a83f +75240430ns 1345301 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000048 +75240509ns 1345305 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a840 PA:1c00a840 +75240529ns 1345306 1c000e82 fff60613 addi x12, x12, -1 x12=00000047 x12:00000048 +75240548ns 1345307 1c000e84 00130313 addi x6, x6, 1 x6=1c00a841 x6:1c00a840 +75240568ns 1345308 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000047 +75240647ns 1345312 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a841 PA:1c00a841 +75240667ns 1345313 1c000e82 fff60613 addi x12, x12, -1 x12=00000046 x12:00000047 +75240687ns 1345314 1c000e84 00130313 addi x6, x6, 1 x6=1c00a842 x6:1c00a841 +75240707ns 1345315 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000046 +75240786ns 1345319 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a842 PA:1c00a842 +75240806ns 1345320 1c000e82 fff60613 addi x12, x12, -1 x12=00000045 x12:00000046 +75240825ns 1345321 1c000e84 00130313 addi x6, x6, 1 x6=1c00a843 x6:1c00a842 +75240845ns 1345322 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000045 +75240924ns 1345326 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a843 PA:1c00a843 +75240944ns 1345327 1c000e82 fff60613 addi x12, x12, -1 x12=00000044 x12:00000045 +75240964ns 1345328 1c000e84 00130313 addi x6, x6, 1 x6=1c00a844 x6:1c00a843 +75240984ns 1345329 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000044 +75241063ns 1345333 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a844 PA:1c00a844 +75241083ns 1345334 1c000e82 fff60613 addi x12, x12, -1 x12=00000043 x12:00000044 +75241102ns 1345335 1c000e84 00130313 addi x6, x6, 1 x6=1c00a845 x6:1c00a844 +75241122ns 1345336 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000043 +75241201ns 1345340 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a845 PA:1c00a845 +75241221ns 1345341 1c000e82 fff60613 addi x12, x12, -1 x12=00000042 x12:00000043 +75241241ns 1345342 1c000e84 00130313 addi x6, x6, 1 x6=1c00a846 x6:1c00a845 +75241261ns 1345343 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000042 +75241340ns 1345347 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a846 PA:1c00a846 +75241360ns 1345348 1c000e82 fff60613 addi x12, x12, -1 x12=00000041 x12:00000042 +75241380ns 1345349 1c000e84 00130313 addi x6, x6, 1 x6=1c00a847 x6:1c00a846 +75241399ns 1345350 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000041 +75241479ns 1345354 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a847 PA:1c00a847 +75241498ns 1345355 1c000e82 fff60613 addi x12, x12, -1 x12=00000040 x12:00000041 +75241518ns 1345356 1c000e84 00130313 addi x6, x6, 1 x6=1c00a848 x6:1c00a847 +75241538ns 1345357 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000040 +75241617ns 1345361 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a848 PA:1c00a848 +75241637ns 1345362 1c000e82 fff60613 addi x12, x12, -1 x12=0000003f x12:00000040 +75241657ns 1345363 1c000e84 00130313 addi x6, x6, 1 x6=1c00a849 x6:1c00a848 +75241676ns 1345364 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000003f +75241756ns 1345368 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a849 PA:1c00a849 +75241775ns 1345369 1c000e82 fff60613 addi x12, x12, -1 x12=0000003e x12:0000003f +75241795ns 1345370 1c000e84 00130313 addi x6, x6, 1 x6=1c00a84a x6:1c00a849 +75241815ns 1345371 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000003e +75241894ns 1345375 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a84a PA:1c00a84a +75241914ns 1345376 1c000e82 fff60613 addi x12, x12, -1 x12=0000003d x12:0000003e +75241934ns 1345377 1c000e84 00130313 addi x6, x6, 1 x6=1c00a84b x6:1c00a84a +75241954ns 1345378 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000003d +75242033ns 1345382 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a84b PA:1c00a84b +75242052ns 1345383 1c000e82 fff60613 addi x12, x12, -1 x12=0000003c x12:0000003d +75242072ns 1345384 1c000e84 00130313 addi x6, x6, 1 x6=1c00a84c x6:1c00a84b +75242092ns 1345385 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000003c +75242171ns 1345389 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a84c PA:1c00a84c +75242191ns 1345390 1c000e82 fff60613 addi x12, x12, -1 x12=0000003b x12:0000003c +75242211ns 1345391 1c000e84 00130313 addi x6, x6, 1 x6=1c00a84d x6:1c00a84c +75242231ns 1345392 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000003b +75242310ns 1345396 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a84d PA:1c00a84d +75242330ns 1345397 1c000e82 fff60613 addi x12, x12, -1 x12=0000003a x12:0000003b +75242349ns 1345398 1c000e84 00130313 addi x6, x6, 1 x6=1c00a84e x6:1c00a84d +75242369ns 1345399 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000003a +75242448ns 1345403 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a84e PA:1c00a84e +75242468ns 1345404 1c000e82 fff60613 addi x12, x12, -1 x12=00000039 x12:0000003a +75242488ns 1345405 1c000e84 00130313 addi x6, x6, 1 x6=1c00a84f x6:1c00a84e +75242508ns 1345406 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000039 +75242587ns 1345410 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a84f PA:1c00a84f +75242607ns 1345411 1c000e82 fff60613 addi x12, x12, -1 x12=00000038 x12:00000039 +75242626ns 1345412 1c000e84 00130313 addi x6, x6, 1 x6=1c00a850 x6:1c00a84f +75242646ns 1345413 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000038 +75242725ns 1345417 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a850 PA:1c00a850 +75242745ns 1345418 1c000e82 fff60613 addi x12, x12, -1 x12=00000037 x12:00000038 +75242765ns 1345419 1c000e84 00130313 addi x6, x6, 1 x6=1c00a851 x6:1c00a850 +75242785ns 1345420 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000037 +75242864ns 1345424 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a851 PA:1c00a851 +75242884ns 1345425 1c000e82 fff60613 addi x12, x12, -1 x12=00000036 x12:00000037 +75242904ns 1345426 1c000e84 00130313 addi x6, x6, 1 x6=1c00a852 x6:1c00a851 +75242923ns 1345427 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000036 +75243003ns 1345431 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a852 PA:1c00a852 +75243022ns 1345432 1c000e82 fff60613 addi x12, x12, -1 x12=00000035 x12:00000036 +75243042ns 1345433 1c000e84 00130313 addi x6, x6, 1 x6=1c00a853 x6:1c00a852 +75243062ns 1345434 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000035 +75243141ns 1345438 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a853 PA:1c00a853 +75243161ns 1345439 1c000e82 fff60613 addi x12, x12, -1 x12=00000034 x12:00000035 +75243181ns 1345440 1c000e84 00130313 addi x6, x6, 1 x6=1c00a854 x6:1c00a853 +75243200ns 1345441 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000034 +75243280ns 1345445 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a854 PA:1c00a854 +75243299ns 1345446 1c000e82 fff60613 addi x12, x12, -1 x12=00000033 x12:00000034 +75243319ns 1345447 1c000e84 00130313 addi x6, x6, 1 x6=1c00a855 x6:1c00a854 +75243339ns 1345448 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000033 +75243418ns 1345452 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a855 PA:1c00a855 +75243438ns 1345453 1c000e82 fff60613 addi x12, x12, -1 x12=00000032 x12:00000033 +75243458ns 1345454 1c000e84 00130313 addi x6, x6, 1 x6=1c00a856 x6:1c00a855 +75243478ns 1345455 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000032 +75243557ns 1345459 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a856 PA:1c00a856 +75243576ns 1345460 1c000e82 fff60613 addi x12, x12, -1 x12=00000031 x12:00000032 +75243596ns 1345461 1c000e84 00130313 addi x6, x6, 1 x6=1c00a857 x6:1c00a856 +75243616ns 1345462 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000031 +75243695ns 1345466 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a857 PA:1c00a857 +75243715ns 1345467 1c000e82 fff60613 addi x12, x12, -1 x12=00000030 x12:00000031 +75243735ns 1345468 1c000e84 00130313 addi x6, x6, 1 x6=1c00a858 x6:1c00a857 +75243755ns 1345469 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000030 +75243834ns 1345473 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a858 PA:1c00a858 +75243854ns 1345474 1c000e82 fff60613 addi x12, x12, -1 x12=0000002f x12:00000030 +75243873ns 1345475 1c000e84 00130313 addi x6, x6, 1 x6=1c00a859 x6:1c00a858 +75243893ns 1345476 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000002f +75243972ns 1345480 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a859 PA:1c00a859 +75243992ns 1345481 1c000e82 fff60613 addi x12, x12, -1 x12=0000002e x12:0000002f +75244012ns 1345482 1c000e84 00130313 addi x6, x6, 1 x6=1c00a85a x6:1c00a859 +75244032ns 1345483 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000002e +75244111ns 1345487 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a85a PA:1c00a85a +75244131ns 1345488 1c000e82 fff60613 addi x12, x12, -1 x12=0000002d x12:0000002e +75244150ns 1345489 1c000e84 00130313 addi x6, x6, 1 x6=1c00a85b x6:1c00a85a +75244170ns 1345490 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000002d +75244249ns 1345494 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a85b PA:1c00a85b +75244269ns 1345495 1c000e82 fff60613 addi x12, x12, -1 x12=0000002c x12:0000002d +75244289ns 1345496 1c000e84 00130313 addi x6, x6, 1 x6=1c00a85c x6:1c00a85b +75244309ns 1345497 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000002c +75244388ns 1345501 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a85c PA:1c00a85c +75244408ns 1345502 1c000e82 fff60613 addi x12, x12, -1 x12=0000002b x12:0000002c +75244428ns 1345503 1c000e84 00130313 addi x6, x6, 1 x6=1c00a85d x6:1c00a85c +75244447ns 1345504 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000002b +75244526ns 1345508 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a85d PA:1c00a85d +75244546ns 1345509 1c000e82 fff60613 addi x12, x12, -1 x12=0000002a x12:0000002b +75244566ns 1345510 1c000e84 00130313 addi x6, x6, 1 x6=1c00a85e x6:1c00a85d +75244586ns 1345511 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000002a +75244665ns 1345515 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a85e PA:1c00a85e +75244685ns 1345516 1c000e82 fff60613 addi x12, x12, -1 x12=00000029 x12:0000002a +75244705ns 1345517 1c000e84 00130313 addi x6, x6, 1 x6=1c00a85f x6:1c00a85e +75244724ns 1345518 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000029 +75244804ns 1345522 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a85f PA:1c00a85f +75244823ns 1345523 1c000e82 fff60613 addi x12, x12, -1 x12=00000028 x12:00000029 +75244843ns 1345524 1c000e84 00130313 addi x6, x6, 1 x6=1c00a860 x6:1c00a85f +75244863ns 1345525 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000028 +75244942ns 1345529 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a860 PA:1c00a860 +75244962ns 1345530 1c000e82 fff60613 addi x12, x12, -1 x12=00000027 x12:00000028 +75244982ns 1345531 1c000e84 00130313 addi x6, x6, 1 x6=1c00a861 x6:1c00a860 +75245001ns 1345532 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000027 +75245081ns 1345536 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a861 PA:1c00a861 +75245100ns 1345537 1c000e82 fff60613 addi x12, x12, -1 x12=00000026 x12:00000027 +75245120ns 1345538 1c000e84 00130313 addi x6, x6, 1 x6=1c00a862 x6:1c00a861 +75245140ns 1345539 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000026 +75245219ns 1345543 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a862 PA:1c00a862 +75245239ns 1345544 1c000e82 fff60613 addi x12, x12, -1 x12=00000025 x12:00000026 +75245259ns 1345545 1c000e84 00130313 addi x6, x6, 1 x6=1c00a863 x6:1c00a862 +75245279ns 1345546 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000025 +75245358ns 1345550 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a863 PA:1c00a863 +75245378ns 1345551 1c000e82 fff60613 addi x12, x12, -1 x12=00000024 x12:00000025 +75245397ns 1345552 1c000e84 00130313 addi x6, x6, 1 x6=1c00a864 x6:1c00a863 +75245417ns 1345553 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000024 +75245496ns 1345557 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a864 PA:1c00a864 +75245516ns 1345558 1c000e82 fff60613 addi x12, x12, -1 x12=00000023 x12:00000024 +75245536ns 1345559 1c000e84 00130313 addi x6, x6, 1 x6=1c00a865 x6:1c00a864 +75245556ns 1345560 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000023 +75245635ns 1345564 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a865 PA:1c00a865 +75245655ns 1345565 1c000e82 fff60613 addi x12, x12, -1 x12=00000022 x12:00000023 +75245674ns 1345566 1c000e84 00130313 addi x6, x6, 1 x6=1c00a866 x6:1c00a865 +75245694ns 1345567 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000022 +75245773ns 1345571 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a866 PA:1c00a866 +75245793ns 1345572 1c000e82 fff60613 addi x12, x12, -1 x12=00000021 x12:00000022 +75245813ns 1345573 1c000e84 00130313 addi x6, x6, 1 x6=1c00a867 x6:1c00a866 +75245833ns 1345574 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000021 +75245912ns 1345578 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a867 PA:1c00a867 +75245932ns 1345579 1c000e82 fff60613 addi x12, x12, -1 x12=00000020 x12:00000021 +75245952ns 1345580 1c000e84 00130313 addi x6, x6, 1 x6=1c00a868 x6:1c00a867 +75245971ns 1345581 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000020 +75246050ns 1345585 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a868 PA:1c00a868 +75246070ns 1345586 1c000e82 fff60613 addi x12, x12, -1 x12=0000001f x12:00000020 +75246090ns 1345587 1c000e84 00130313 addi x6, x6, 1 x6=1c00a869 x6:1c00a868 +75246110ns 1345588 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000001f +75246189ns 1345592 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a869 PA:1c00a869 +75246209ns 1345593 1c000e82 fff60613 addi x12, x12, -1 x12=0000001e x12:0000001f +75246229ns 1345594 1c000e84 00130313 addi x6, x6, 1 x6=1c00a86a x6:1c00a869 +75246248ns 1345595 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000001e +75246328ns 1345599 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a86a PA:1c00a86a +75246347ns 1345600 1c000e82 fff60613 addi x12, x12, -1 x12=0000001d x12:0000001e +75246367ns 1345601 1c000e84 00130313 addi x6, x6, 1 x6=1c00a86b x6:1c00a86a +75246387ns 1345602 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000001d +75246466ns 1345606 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a86b PA:1c00a86b +75246486ns 1345607 1c000e82 fff60613 addi x12, x12, -1 x12=0000001c x12:0000001d +75246506ns 1345608 1c000e84 00130313 addi x6, x6, 1 x6=1c00a86c x6:1c00a86b +75246525ns 1345609 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000001c +75246605ns 1345613 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a86c PA:1c00a86c +75246624ns 1345614 1c000e82 fff60613 addi x12, x12, -1 x12=0000001b x12:0000001c +75246644ns 1345615 1c000e84 00130313 addi x6, x6, 1 x6=1c00a86d x6:1c00a86c +75246664ns 1345616 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000001b +75246743ns 1345620 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a86d PA:1c00a86d +75246763ns 1345621 1c000e82 fff60613 addi x12, x12, -1 x12=0000001a x12:0000001b +75246783ns 1345622 1c000e84 00130313 addi x6, x6, 1 x6=1c00a86e x6:1c00a86d +75246803ns 1345623 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000001a +75246882ns 1345627 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a86e PA:1c00a86e +75246902ns 1345628 1c000e82 fff60613 addi x12, x12, -1 x12=00000019 x12:0000001a +75246921ns 1345629 1c000e84 00130313 addi x6, x6, 1 x6=1c00a86f x6:1c00a86e +75246941ns 1345630 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000019 +75247020ns 1345634 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a86f PA:1c00a86f +75247040ns 1345635 1c000e82 fff60613 addi x12, x12, -1 x12=00000018 x12:00000019 +75247060ns 1345636 1c000e84 00130313 addi x6, x6, 1 x6=1c00a870 x6:1c00a86f +75247080ns 1345637 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000018 +75247159ns 1345641 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a870 PA:1c00a870 +75247179ns 1345642 1c000e82 fff60613 addi x12, x12, -1 x12=00000017 x12:00000018 +75247198ns 1345643 1c000e84 00130313 addi x6, x6, 1 x6=1c00a871 x6:1c00a870 +75247218ns 1345644 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000017 +75247297ns 1345648 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a871 PA:1c00a871 +75247317ns 1345649 1c000e82 fff60613 addi x12, x12, -1 x12=00000016 x12:00000017 +75247337ns 1345650 1c000e84 00130313 addi x6, x6, 1 x6=1c00a872 x6:1c00a871 +75247357ns 1345651 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000016 +75247436ns 1345655 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a872 PA:1c00a872 +75247456ns 1345656 1c000e82 fff60613 addi x12, x12, -1 x12=00000015 x12:00000016 +75247475ns 1345657 1c000e84 00130313 addi x6, x6, 1 x6=1c00a873 x6:1c00a872 +75247495ns 1345658 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000015 +75247574ns 1345662 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a873 PA:1c00a873 +75247594ns 1345663 1c000e82 fff60613 addi x12, x12, -1 x12=00000014 x12:00000015 +75247614ns 1345664 1c000e84 00130313 addi x6, x6, 1 x6=1c00a874 x6:1c00a873 +75247634ns 1345665 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000014 +75247713ns 1345669 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a874 PA:1c00a874 +75247733ns 1345670 1c000e82 fff60613 addi x12, x12, -1 x12=00000013 x12:00000014 +75247753ns 1345671 1c000e84 00130313 addi x6, x6, 1 x6=1c00a875 x6:1c00a874 +75247772ns 1345672 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000013 +75247852ns 1345676 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a875 PA:1c00a875 +75247871ns 1345677 1c000e82 fff60613 addi x12, x12, -1 x12=00000012 x12:00000013 +75247891ns 1345678 1c000e84 00130313 addi x6, x6, 1 x6=1c00a876 x6:1c00a875 +75247911ns 1345679 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000012 +75247990ns 1345683 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a876 PA:1c00a876 +75248010ns 1345684 1c000e82 fff60613 addi x12, x12, -1 x12=00000011 x12:00000012 +75248030ns 1345685 1c000e84 00130313 addi x6, x6, 1 x6=1c00a877 x6:1c00a876 +75248049ns 1345686 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000011 +75248129ns 1345690 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a877 PA:1c00a877 +75248148ns 1345691 1c000e82 fff60613 addi x12, x12, -1 x12=00000010 x12:00000011 +75248168ns 1345692 1c000e84 00130313 addi x6, x6, 1 x6=1c00a878 x6:1c00a877 +75248188ns 1345693 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000010 +75248267ns 1345697 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a878 PA:1c00a878 +75248287ns 1345698 1c000e82 fff60613 addi x12, x12, -1 x12=0000000f x12:00000010 +75248307ns 1345699 1c000e84 00130313 addi x6, x6, 1 x6=1c00a879 x6:1c00a878 +75248327ns 1345700 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000000f +75248406ns 1345704 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a879 PA:1c00a879 +75248426ns 1345705 1c000e82 fff60613 addi x12, x12, -1 x12=0000000e x12:0000000f +75248445ns 1345706 1c000e84 00130313 addi x6, x6, 1 x6=1c00a87a x6:1c00a879 +75248465ns 1345707 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000000e +75248544ns 1345711 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a87a PA:1c00a87a +75248564ns 1345712 1c000e82 fff60613 addi x12, x12, -1 x12=0000000d x12:0000000e +75248584ns 1345713 1c000e84 00130313 addi x6, x6, 1 x6=1c00a87b x6:1c00a87a +75248604ns 1345714 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000000d +75248683ns 1345718 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a87b PA:1c00a87b +75248703ns 1345719 1c000e82 fff60613 addi x12, x12, -1 x12=0000000c x12:0000000d +75248722ns 1345720 1c000e84 00130313 addi x6, x6, 1 x6=1c00a87c x6:1c00a87b +75248742ns 1345721 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000000c +75248821ns 1345725 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a87c PA:1c00a87c +75248841ns 1345726 1c000e82 fff60613 addi x12, x12, -1 x12=0000000b x12:0000000c +75248861ns 1345727 1c000e84 00130313 addi x6, x6, 1 x6=1c00a87d x6:1c00a87c +75248881ns 1345728 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000000b +75248960ns 1345732 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a87d PA:1c00a87d +75248980ns 1345733 1c000e82 fff60613 addi x12, x12, -1 x12=0000000a x12:0000000b +75248999ns 1345734 1c000e84 00130313 addi x6, x6, 1 x6=1c00a87e x6:1c00a87d +75249019ns 1345735 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000000a +75249098ns 1345739 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a87e PA:1c00a87e +75249118ns 1345740 1c000e82 fff60613 addi x12, x12, -1 x12=00000009 x12:0000000a +75249138ns 1345741 1c000e84 00130313 addi x6, x6, 1 x6=1c00a87f x6:1c00a87e +75249158ns 1345742 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000009 +75249237ns 1345746 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a87f PA:1c00a87f +75249257ns 1345747 1c000e82 fff60613 addi x12, x12, -1 x12=00000008 x12:00000009 +75249277ns 1345748 1c000e84 00130313 addi x6, x6, 1 x6=1c00a880 x6:1c00a87f +75249296ns 1345749 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000008 +75249376ns 1345753 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a880 PA:1c00a880 +75249395ns 1345754 1c000e82 fff60613 addi x12, x12, -1 x12=00000007 x12:00000008 +75249415ns 1345755 1c000e84 00130313 addi x6, x6, 1 x6=1c00a881 x6:1c00a880 +75249435ns 1345756 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000007 +75249514ns 1345760 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a881 PA:1c00a881 +75249534ns 1345761 1c000e82 fff60613 addi x12, x12, -1 x12=00000006 x12:00000007 +75249554ns 1345762 1c000e84 00130313 addi x6, x6, 1 x6=1c00a882 x6:1c00a881 +75249573ns 1345763 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000006 +75249653ns 1345767 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a882 PA:1c00a882 +75249672ns 1345768 1c000e82 fff60613 addi x12, x12, -1 x12=00000005 x12:00000006 +75249692ns 1345769 1c000e84 00130313 addi x6, x6, 1 x6=1c00a883 x6:1c00a882 +75249712ns 1345770 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000005 +75249791ns 1345774 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a883 PA:1c00a883 +75249811ns 1345775 1c000e82 fff60613 addi x12, x12, -1 x12=00000004 x12:00000005 +75249831ns 1345776 1c000e84 00130313 addi x6, x6, 1 x6=1c00a884 x6:1c00a883 +75249851ns 1345777 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000004 +75249930ns 1345781 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a884 PA:1c00a884 +75249949ns 1345782 1c000e82 fff60613 addi x12, x12, -1 x12=00000003 x12:00000004 +75249969ns 1345783 1c000e84 00130313 addi x6, x6, 1 x6=1c00a885 x6:1c00a884 +75249989ns 1345784 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000003 +75250068ns 1345788 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a885 PA:1c00a885 +75250088ns 1345789 1c000e82 fff60613 addi x12, x12, -1 x12=00000002 x12:00000003 +75250108ns 1345790 1c000e84 00130313 addi x6, x6, 1 x6=1c00a886 x6:1c00a885 +75250128ns 1345791 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000002 +75250207ns 1345795 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a886 PA:1c00a886 +75250227ns 1345796 1c000e82 fff60613 addi x12, x12, -1 x12=00000001 x12:00000002 +75250246ns 1345797 1c000e84 00130313 addi x6, x6, 1 x6=1c00a887 x6:1c00a886 +75250266ns 1345798 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000001 +75250345ns 1345802 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00a887 PA:1c00a887 +75250365ns 1345803 1c000e82 fff60613 addi x12, x12, -1 x12=00000000 x12:00000001 +75250385ns 1345804 1c000e84 00130313 addi x6, x6, 1 x6=1c00a888 x6:1c00a887 +75250405ns 1345805 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000000 +75250425ns 1345806 1c000e88 00008067 jalr x0, x1, 0 x1:1c002094 +75250464ns 1345808 1c002094 03042c03 lw x24, 48(x8) x24=1c00a248 x8:1c00a890 PA:1c00a8c0 +75250484ns 1345809 1c002098 00049963 bne x9, x0, 18 x9:1c008550 +75250543ns 1345812 1c0020aa 009005b3 add x11, x0, x9 x11=1c008550 x9:1c008550 +75250563ns 1345813 1c0020ac 03440793 addi x15, x8, 52 x15=1c00a8c4 x8:1c00a890 +75250583ns 1345814 1c0020b0 01048693 addi x13, x9, 16 x13=1c008560 x9:1c008550 +75250603ns 1345815 1c0020b4 00058703 lb x14, 0(x11) x14=00000049 x11:1c008550 PA:1c008550 +75250642ns 1345817 1c0020b8 00e78023 sb x14, 0(x15) x14:00000049 x15:1c00a8c4 PA:1c00a8c4 +75250662ns 1345818 1c0020bc 00070563 beq x14, x0, 10 x14:00000049 +75250682ns 1345819 1c0020be 00158593 addi x11, x11, 1 x11=1c008551 x11:1c008550 +75250702ns 1345820 1c0020c0 00178793 addi x15, x15, 1 x15=1c00a8c5 x15:1c00a8c4 +75250721ns 1345821 1c0020c2 fed599e3 bne x11, x13, -14 x11:1c008551 x13:1c008560 +75250781ns 1345824 1c0020b4 00058703 lb x14, 0(x11) x14=00000044 x11:1c008551 PA:1c008551 +75250820ns 1345826 1c0020b8 00e78023 sb x14, 0(x15) x14:00000044 x15:1c00a8c5 PA:1c00a8c5 +75250840ns 1345827 1c0020bc 00070563 beq x14, x0, 10 x14:00000044 +75250860ns 1345828 1c0020be 00158593 addi x11, x11, 1 x11=1c008552 x11:1c008551 +75250880ns 1345829 1c0020c0 00178793 addi x15, x15, 1 x15=1c00a8c6 x15:1c00a8c5 +75250900ns 1345830 1c0020c2 fed599e3 bne x11, x13, -14 x11:1c008552 x13:1c008560 +75250959ns 1345833 1c0020b4 00058703 lb x14, 0(x11) x14=0000004c x11:1c008552 PA:1c008552 +75250998ns 1345835 1c0020b8 00e78023 sb x14, 0(x15) x14:0000004c x15:1c00a8c6 PA:1c00a8c6 +75251018ns 1345836 1c0020bc 00070563 beq x14, x0, 10 x14:0000004c +75251038ns 1345837 1c0020be 00158593 addi x11, x11, 1 x11=1c008553 x11:1c008552 +75251058ns 1345838 1c0020c0 00178793 addi x15, x15, 1 x15=1c00a8c7 x15:1c00a8c6 +75251078ns 1345839 1c0020c2 fed599e3 bne x11, x13, -14 x11:1c008553 x13:1c008560 +75251137ns 1345842 1c0020b4 00058703 lb x14, 0(x11) x14=00000045 x11:1c008553 PA:1c008553 +75251177ns 1345844 1c0020b8 00e78023 sb x14, 0(x15) x14:00000045 x15:1c00a8c7 PA:1c00a8c7 +75251196ns 1345845 1c0020bc 00070563 beq x14, x0, 10 x14:00000045 +75251216ns 1345846 1c0020be 00158593 addi x11, x11, 1 x11=1c008554 x11:1c008553 +75251236ns 1345847 1c0020c0 00178793 addi x15, x15, 1 x15=1c00a8c8 x15:1c00a8c7 +75251256ns 1345848 1c0020c2 fed599e3 bne x11, x13, -14 x11:1c008554 x13:1c008560 +75251315ns 1345851 1c0020b4 00058703 lb x14, 0(x11) x14=00000000 x11:1c008554 PA:1c008554 +75251355ns 1345853 1c0020b8 00e78023 sb x14, 0(x15) x14:00000000 x15:1c00a8c8 PA:1c00a8c8 +75251375ns 1345854 1c0020bc 00070563 beq x14, x0, 10 x14:00000000 +75251454ns 1345858 1c0020c6 040401a3 sb x0, 67(x8) x8:1c00a890 PA:1c00a8d3 +75251473ns 1345859 1c0020ca 00400793 addi x15, x0, 4 x15=00000004 +75251493ns 1345860 1c0020cc 0127f363 bgeu x15, x18, 6 x15:00000004 x18:00000000 +75251572ns 1345864 1c0020d2 00440a13 addi x20, x8, 4 x20=1c00a894 x8:1c00a890 +75251592ns 1345865 1c0020d6 01400533 add x10, x0, x20 x10=1c00a894 x20:1c00a894 +75251612ns 1345866 1c0020d8 03242623 sw x18, 44(x8) x18:00000000 x8:1c00a890 PA:1c00a8bc +75251632ns 1345867 1c0020dc 05242823 sw x18, 80(x8) x18:00000000 x8:1c00a890 PA:1c00a8e0 +75251652ns 1345868 1c0020e0 04042a23 sw x0, 84(x8) x8:1c00a890 PA:1c00a8e4 +75251671ns 1345869 1c0020e4 df7fe0ef jal x1, -4618 x1=1c0020e8 +75251731ns 1345872 1c000eda 00052823 sw x0, 16(x10) x10:1c00a894 PA:1c00a8a4 +75251751ns 1345873 1c000ede 00008067 jalr x0, x1, 0 x1:1c0020e8 +75251790ns 1345875 1c0020e8 01840513 addi x10, x8, 24 x10=1c00a8a8 x8:1c00a890 +75251810ns 1345876 1c0020ec deffe0ef jal x1, -4626 x1=1c0020f0 +75251869ns 1345879 1c000eda 00052823 sw x0, 16(x10) x10:1c00a8a8 PA:1c00a8b8 +75251889ns 1345880 1c000ede 00008067 jalr x0, x1, 0 x1:1c0020f0 +75251929ns 1345882 1c0020f0 00500713 addi x14, x0, 5 x14=00000005 +75251948ns 1345883 1c0020f2 412704b3 sub x9, x14, x18 x9=00000005 x14:00000005 x18:00000000 +75251968ns 1345884 1c0020f6 48042023 sw x0, 1152(x8) x8:1c00a890 PA:1c00ad10 +75251988ns 1345885 1c0020fa 42800613 addi x12, x0, 1064 x12=00000428 +75252008ns 1345886 1c0020fe 00000593 addi x11, x0, 0 x11=00000000 +75252028ns 1345887 1c002100 00842823 sw x8, 16(x8) x8:1c00a890 x8:1c00a890 PA:1c00a8a0 +75252047ns 1345888 1c002102 00942c23 sw x9, 24(x8) x9:00000005 x8:1c00a890 PA:1c00a8a8 +75252067ns 1345889 1c002104 02842223 sw x8, 36(x8) x8:1c00a890 x8:1c00a890 PA:1c00a8b4 +75252087ns 1345890 1c002106 04042223 sw x0, 68(x8) x8:1c00a890 PA:1c00a8d4 +75252107ns 1345891 1c00210a 48040223 sb x0, 1156(x8) x8:1c00a890 PA:1c00ad14 +75252127ns 1345892 1c00210e 05840513 addi x10, x8, 88 x10=1c00a8e8 x8:1c00a890 +75252146ns 1345893 1c002112 d69fe0ef jal x1, -4760 x1=1c002116 +75252186ns 1345895 1c000e7a 00a00333 add x6, x0, x10 x6=1c00a8e8 x10:1c00a8e8 +75252206ns 1345896 1c000e7c 00060663 beq x12, x0, 12 x12:00000428 +75252226ns 1345897 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a8e8 PA:1c00a8e8 +75252245ns 1345898 1c000e82 fff60613 addi x12, x12, -1 x12=00000427 x12:00000428 +75252265ns 1345899 1c000e84 00130313 addi x6, x6, 1 x6=1c00a8e9 x6:1c00a8e8 +75252285ns 1345900 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000427 +75252364ns 1345904 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a8e9 PA:1c00a8e9 +75252384ns 1345905 1c000e82 fff60613 addi x12, x12, -1 x12=00000426 x12:00000427 +75252404ns 1345906 1c000e84 00130313 addi x6, x6, 1 x6=1c00a8ea x6:1c00a8e9 +75252423ns 1345907 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000426 +75252503ns 1345911 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a8ea PA:1c00a8ea +75252522ns 1345912 1c000e82 fff60613 addi x12, x12, -1 x12=00000425 x12:00000426 +75252542ns 1345913 1c000e84 00130313 addi x6, x6, 1 x6=1c00a8eb x6:1c00a8ea +75252562ns 1345914 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000425 +75252641ns 1345918 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a8eb PA:1c00a8eb +75252661ns 1345919 1c000e82 fff60613 addi x12, x12, -1 x12=00000424 x12:00000425 +75252681ns 1345920 1c000e84 00130313 addi x6, x6, 1 x6=1c00a8ec x6:1c00a8eb +75252701ns 1345921 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000424 +75252780ns 1345925 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a8ec PA:1c00a8ec +75252800ns 1345926 1c000e82 fff60613 addi x12, x12, -1 x12=00000423 x12:00000424 +75252819ns 1345927 1c000e84 00130313 addi x6, x6, 1 x6=1c00a8ed x6:1c00a8ec +75252839ns 1345928 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000423 +75252918ns 1345932 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a8ed PA:1c00a8ed +75252938ns 1345933 1c000e82 fff60613 addi x12, x12, -1 x12=00000422 x12:00000423 +75252958ns 1345934 1c000e84 00130313 addi x6, x6, 1 x6=1c00a8ee x6:1c00a8ed +75252978ns 1345935 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000422 +75253057ns 1345939 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a8ee PA:1c00a8ee +75253077ns 1345940 1c000e82 fff60613 addi x12, x12, -1 x12=00000421 x12:00000422 +75253096ns 1345941 1c000e84 00130313 addi x6, x6, 1 x6=1c00a8ef x6:1c00a8ee +75253116ns 1345942 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000421 +75253195ns 1345946 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a8ef PA:1c00a8ef +75253215ns 1345947 1c000e82 fff60613 addi x12, x12, -1 x12=00000420 x12:00000421 +75253235ns 1345948 1c000e84 00130313 addi x6, x6, 1 x6=1c00a8f0 x6:1c00a8ef +75253255ns 1345949 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000420 +75253334ns 1345953 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a8f0 PA:1c00a8f0 +75253354ns 1345954 1c000e82 fff60613 addi x12, x12, -1 x12=0000041f x12:00000420 +75253374ns 1345955 1c000e84 00130313 addi x6, x6, 1 x6=1c00a8f1 x6:1c00a8f0 +75253393ns 1345956 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000041f +75253472ns 1345960 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a8f1 PA:1c00a8f1 +75253492ns 1345961 1c000e82 fff60613 addi x12, x12, -1 x12=0000041e x12:0000041f +75253512ns 1345962 1c000e84 00130313 addi x6, x6, 1 x6=1c00a8f2 x6:1c00a8f1 +75253532ns 1345963 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000041e +75253611ns 1345967 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a8f2 PA:1c00a8f2 +75253631ns 1345968 1c000e82 fff60613 addi x12, x12, -1 x12=0000041d x12:0000041e +75253651ns 1345969 1c000e84 00130313 addi x6, x6, 1 x6=1c00a8f3 x6:1c00a8f2 +75253670ns 1345970 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000041d +75253750ns 1345974 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a8f3 PA:1c00a8f3 +75253769ns 1345975 1c000e82 fff60613 addi x12, x12, -1 x12=0000041c x12:0000041d +75253789ns 1345976 1c000e84 00130313 addi x6, x6, 1 x6=1c00a8f4 x6:1c00a8f3 +75253809ns 1345977 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000041c +75253888ns 1345981 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a8f4 PA:1c00a8f4 +75253908ns 1345982 1c000e82 fff60613 addi x12, x12, -1 x12=0000041b x12:0000041c +75253928ns 1345983 1c000e84 00130313 addi x6, x6, 1 x6=1c00a8f5 x6:1c00a8f4 +75253947ns 1345984 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000041b +75254027ns 1345988 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a8f5 PA:1c00a8f5 +75254046ns 1345989 1c000e82 fff60613 addi x12, x12, -1 x12=0000041a x12:0000041b +75254066ns 1345990 1c000e84 00130313 addi x6, x6, 1 x6=1c00a8f6 x6:1c00a8f5 +75254086ns 1345991 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000041a +75254165ns 1345995 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a8f6 PA:1c00a8f6 +75254185ns 1345996 1c000e82 fff60613 addi x12, x12, -1 x12=00000419 x12:0000041a +75254205ns 1345997 1c000e84 00130313 addi x6, x6, 1 x6=1c00a8f7 x6:1c00a8f6 +75254225ns 1345998 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000419 +75254304ns 1346002 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a8f7 PA:1c00a8f7 +75254324ns 1346003 1c000e82 fff60613 addi x12, x12, -1 x12=00000418 x12:00000419 +75254343ns 1346004 1c000e84 00130313 addi x6, x6, 1 x6=1c00a8f8 x6:1c00a8f7 +75254363ns 1346005 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000418 +75254442ns 1346009 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a8f8 PA:1c00a8f8 +75254462ns 1346010 1c000e82 fff60613 addi x12, x12, -1 x12=00000417 x12:00000418 +75254482ns 1346011 1c000e84 00130313 addi x6, x6, 1 x6=1c00a8f9 x6:1c00a8f8 +75254502ns 1346012 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000417 +75254581ns 1346016 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a8f9 PA:1c00a8f9 +75254601ns 1346017 1c000e82 fff60613 addi x12, x12, -1 x12=00000416 x12:00000417 +75254620ns 1346018 1c000e84 00130313 addi x6, x6, 1 x6=1c00a8fa x6:1c00a8f9 +75254640ns 1346019 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000416 +75254719ns 1346023 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a8fa PA:1c00a8fa +75254739ns 1346024 1c000e82 fff60613 addi x12, x12, -1 x12=00000415 x12:00000416 +75254759ns 1346025 1c000e84 00130313 addi x6, x6, 1 x6=1c00a8fb x6:1c00a8fa +75254779ns 1346026 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000415 +75254858ns 1346030 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a8fb PA:1c00a8fb +75254878ns 1346031 1c000e82 fff60613 addi x12, x12, -1 x12=00000414 x12:00000415 +75254897ns 1346032 1c000e84 00130313 addi x6, x6, 1 x6=1c00a8fc x6:1c00a8fb +75254917ns 1346033 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000414 +75254996ns 1346037 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a8fc PA:1c00a8fc +75255016ns 1346038 1c000e82 fff60613 addi x12, x12, -1 x12=00000413 x12:00000414 +75255036ns 1346039 1c000e84 00130313 addi x6, x6, 1 x6=1c00a8fd x6:1c00a8fc +75255056ns 1346040 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000413 +75255135ns 1346044 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a8fd PA:1c00a8fd +75255155ns 1346045 1c000e82 fff60613 addi x12, x12, -1 x12=00000412 x12:00000413 +75255175ns 1346046 1c000e84 00130313 addi x6, x6, 1 x6=1c00a8fe x6:1c00a8fd +75255194ns 1346047 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000412 +75255274ns 1346051 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a8fe PA:1c00a8fe +75255293ns 1346052 1c000e82 fff60613 addi x12, x12, -1 x12=00000411 x12:00000412 +75255313ns 1346053 1c000e84 00130313 addi x6, x6, 1 x6=1c00a8ff x6:1c00a8fe +75255333ns 1346054 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000411 +75255412ns 1346058 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a8ff PA:1c00a8ff +75255432ns 1346059 1c000e82 fff60613 addi x12, x12, -1 x12=00000410 x12:00000411 +75255452ns 1346060 1c000e84 00130313 addi x6, x6, 1 x6=1c00a900 x6:1c00a8ff +75255471ns 1346061 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000410 +75255551ns 1346065 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a900 PA:1c00a900 +75255570ns 1346066 1c000e82 fff60613 addi x12, x12, -1 x12=0000040f x12:00000410 +75255590ns 1346067 1c000e84 00130313 addi x6, x6, 1 x6=1c00a901 x6:1c00a900 +75255610ns 1346068 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000040f +75255689ns 1346072 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a901 PA:1c00a901 +75255709ns 1346073 1c000e82 fff60613 addi x12, x12, -1 x12=0000040e x12:0000040f +75255729ns 1346074 1c000e84 00130313 addi x6, x6, 1 x6=1c00a902 x6:1c00a901 +75255749ns 1346075 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000040e +75255828ns 1346079 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a902 PA:1c00a902 +75255848ns 1346080 1c000e82 fff60613 addi x12, x12, -1 x12=0000040d x12:0000040e +75255867ns 1346081 1c000e84 00130313 addi x6, x6, 1 x6=1c00a903 x6:1c00a902 +75255887ns 1346082 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000040d +75255966ns 1346086 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a903 PA:1c00a903 +75255986ns 1346087 1c000e82 fff60613 addi x12, x12, -1 x12=0000040c x12:0000040d +75256006ns 1346088 1c000e84 00130313 addi x6, x6, 1 x6=1c00a904 x6:1c00a903 +75256026ns 1346089 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000040c +75256105ns 1346093 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a904 PA:1c00a904 +75256125ns 1346094 1c000e82 fff60613 addi x12, x12, -1 x12=0000040b x12:0000040c +75256144ns 1346095 1c000e84 00130313 addi x6, x6, 1 x6=1c00a905 x6:1c00a904 +75256164ns 1346096 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000040b +75256243ns 1346100 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a905 PA:1c00a905 +75256263ns 1346101 1c000e82 fff60613 addi x12, x12, -1 x12=0000040a x12:0000040b +75256283ns 1346102 1c000e84 00130313 addi x6, x6, 1 x6=1c00a906 x6:1c00a905 +75256303ns 1346103 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000040a +75256382ns 1346107 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a906 PA:1c00a906 +75256402ns 1346108 1c000e82 fff60613 addi x12, x12, -1 x12=00000409 x12:0000040a +75256421ns 1346109 1c000e84 00130313 addi x6, x6, 1 x6=1c00a907 x6:1c00a906 +75256441ns 1346110 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000409 +75256520ns 1346114 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a907 PA:1c00a907 +75256540ns 1346115 1c000e82 fff60613 addi x12, x12, -1 x12=00000408 x12:00000409 +75256560ns 1346116 1c000e84 00130313 addi x6, x6, 1 x6=1c00a908 x6:1c00a907 +75256580ns 1346117 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000408 +75256659ns 1346121 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a908 PA:1c00a908 +75256679ns 1346122 1c000e82 fff60613 addi x12, x12, -1 x12=00000407 x12:00000408 +75256699ns 1346123 1c000e84 00130313 addi x6, x6, 1 x6=1c00a909 x6:1c00a908 +75256718ns 1346124 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000407 +75256798ns 1346128 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a909 PA:1c00a909 +75256817ns 1346129 1c000e82 fff60613 addi x12, x12, -1 x12=00000406 x12:00000407 +75256837ns 1346130 1c000e84 00130313 addi x6, x6, 1 x6=1c00a90a x6:1c00a909 +75256857ns 1346131 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000406 +75256936ns 1346135 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a90a PA:1c00a90a +75256956ns 1346136 1c000e82 fff60613 addi x12, x12, -1 x12=00000405 x12:00000406 +75256976ns 1346137 1c000e84 00130313 addi x6, x6, 1 x6=1c00a90b x6:1c00a90a +75256995ns 1346138 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000405 +75257075ns 1346142 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a90b PA:1c00a90b +75257094ns 1346143 1c000e82 fff60613 addi x12, x12, -1 x12=00000404 x12:00000405 +75257114ns 1346144 1c000e84 00130313 addi x6, x6, 1 x6=1c00a90c x6:1c00a90b +75257134ns 1346145 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000404 +75257213ns 1346149 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a90c PA:1c00a90c +75257233ns 1346150 1c000e82 fff60613 addi x12, x12, -1 x12=00000403 x12:00000404 +75257253ns 1346151 1c000e84 00130313 addi x6, x6, 1 x6=1c00a90d x6:1c00a90c +75257273ns 1346152 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000403 +75257352ns 1346156 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a90d PA:1c00a90d +75257371ns 1346157 1c000e82 fff60613 addi x12, x12, -1 x12=00000402 x12:00000403 +75257391ns 1346158 1c000e84 00130313 addi x6, x6, 1 x6=1c00a90e x6:1c00a90d +75257411ns 1346159 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000402 +75257490ns 1346163 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a90e PA:1c00a90e +75257510ns 1346164 1c000e82 fff60613 addi x12, x12, -1 x12=00000401 x12:00000402 +75257530ns 1346165 1c000e84 00130313 addi x6, x6, 1 x6=1c00a90f x6:1c00a90e +75257550ns 1346166 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000401 +75257629ns 1346170 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a90f PA:1c00a90f +75257649ns 1346171 1c000e82 fff60613 addi x12, x12, -1 x12=00000400 x12:00000401 +75257668ns 1346172 1c000e84 00130313 addi x6, x6, 1 x6=1c00a910 x6:1c00a90f +75257688ns 1346173 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000400 +75257767ns 1346177 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a910 PA:1c00a910 +75257787ns 1346178 1c000e82 fff60613 addi x12, x12, -1 x12=000003ff x12:00000400 +75257807ns 1346179 1c000e84 00130313 addi x6, x6, 1 x6=1c00a911 x6:1c00a910 +75257827ns 1346180 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ff +75257906ns 1346184 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a911 PA:1c00a911 +75257926ns 1346185 1c000e82 fff60613 addi x12, x12, -1 x12=000003fe x12:000003ff +75257945ns 1346186 1c000e84 00130313 addi x6, x6, 1 x6=1c00a912 x6:1c00a911 +75257965ns 1346187 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003fe +75258044ns 1346191 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a912 PA:1c00a912 +75258064ns 1346192 1c000e82 fff60613 addi x12, x12, -1 x12=000003fd x12:000003fe +75258084ns 1346193 1c000e84 00130313 addi x6, x6, 1 x6=1c00a913 x6:1c00a912 +75258104ns 1346194 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003fd +75258183ns 1346198 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a913 PA:1c00a913 +75258203ns 1346199 1c000e82 fff60613 addi x12, x12, -1 x12=000003fc x12:000003fd +75258223ns 1346200 1c000e84 00130313 addi x6, x6, 1 x6=1c00a914 x6:1c00a913 +75258242ns 1346201 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003fc +75258322ns 1346205 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a914 PA:1c00a914 +75258341ns 1346206 1c000e82 fff60613 addi x12, x12, -1 x12=000003fb x12:000003fc +75258361ns 1346207 1c000e84 00130313 addi x6, x6, 1 x6=1c00a915 x6:1c00a914 +75258381ns 1346208 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003fb +75258460ns 1346212 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a915 PA:1c00a915 +75258480ns 1346213 1c000e82 fff60613 addi x12, x12, -1 x12=000003fa x12:000003fb +75258500ns 1346214 1c000e84 00130313 addi x6, x6, 1 x6=1c00a916 x6:1c00a915 +75258519ns 1346215 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003fa +75258599ns 1346219 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a916 PA:1c00a916 +75258618ns 1346220 1c000e82 fff60613 addi x12, x12, -1 x12=000003f9 x12:000003fa +75258638ns 1346221 1c000e84 00130313 addi x6, x6, 1 x6=1c00a917 x6:1c00a916 +75258658ns 1346222 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003f9 +75258737ns 1346226 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a917 PA:1c00a917 +75258757ns 1346227 1c000e82 fff60613 addi x12, x12, -1 x12=000003f8 x12:000003f9 +75258777ns 1346228 1c000e84 00130313 addi x6, x6, 1 x6=1c00a918 x6:1c00a917 +75258797ns 1346229 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003f8 +75258876ns 1346233 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a918 PA:1c00a918 +75258895ns 1346234 1c000e82 fff60613 addi x12, x12, -1 x12=000003f7 x12:000003f8 +75258915ns 1346235 1c000e84 00130313 addi x6, x6, 1 x6=1c00a919 x6:1c00a918 +75258935ns 1346236 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003f7 +75259014ns 1346240 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a919 PA:1c00a919 +75259034ns 1346241 1c000e82 fff60613 addi x12, x12, -1 x12=000003f6 x12:000003f7 +75259054ns 1346242 1c000e84 00130313 addi x6, x6, 1 x6=1c00a91a x6:1c00a919 +75259074ns 1346243 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003f6 +75259153ns 1346247 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a91a PA:1c00a91a +75259173ns 1346248 1c000e82 fff60613 addi x12, x12, -1 x12=000003f5 x12:000003f6 +75259192ns 1346249 1c000e84 00130313 addi x6, x6, 1 x6=1c00a91b x6:1c00a91a +75259212ns 1346250 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003f5 +75259291ns 1346254 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a91b PA:1c00a91b +75259311ns 1346255 1c000e82 fff60613 addi x12, x12, -1 x12=000003f4 x12:000003f5 +75259331ns 1346256 1c000e84 00130313 addi x6, x6, 1 x6=1c00a91c x6:1c00a91b +75259351ns 1346257 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003f4 +75259430ns 1346261 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a91c PA:1c00a91c +75259450ns 1346262 1c000e82 fff60613 addi x12, x12, -1 x12=000003f3 x12:000003f4 +75259469ns 1346263 1c000e84 00130313 addi x6, x6, 1 x6=1c00a91d x6:1c00a91c +75259489ns 1346264 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003f3 +75259568ns 1346268 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a91d PA:1c00a91d +75259588ns 1346269 1c000e82 fff60613 addi x12, x12, -1 x12=000003f2 x12:000003f3 +75259608ns 1346270 1c000e84 00130313 addi x6, x6, 1 x6=1c00a91e x6:1c00a91d +75259628ns 1346271 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003f2 +75259707ns 1346275 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a91e PA:1c00a91e +75259727ns 1346276 1c000e82 fff60613 addi x12, x12, -1 x12=000003f1 x12:000003f2 +75259747ns 1346277 1c000e84 00130313 addi x6, x6, 1 x6=1c00a91f x6:1c00a91e +75259766ns 1346278 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003f1 +75259845ns 1346282 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a91f PA:1c00a91f +75259865ns 1346283 1c000e82 fff60613 addi x12, x12, -1 x12=000003f0 x12:000003f1 +75259885ns 1346284 1c000e84 00130313 addi x6, x6, 1 x6=1c00a920 x6:1c00a91f +75259905ns 1346285 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003f0 +75259984ns 1346289 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a920 PA:1c00a920 +75260004ns 1346290 1c000e82 fff60613 addi x12, x12, -1 x12=000003ef x12:000003f0 +75260024ns 1346291 1c000e84 00130313 addi x6, x6, 1 x6=1c00a921 x6:1c00a920 +75260043ns 1346292 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ef +75260123ns 1346296 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a921 PA:1c00a921 +75260142ns 1346297 1c000e82 fff60613 addi x12, x12, -1 x12=000003ee x12:000003ef +75260162ns 1346298 1c000e84 00130313 addi x6, x6, 1 x6=1c00a922 x6:1c00a921 +75260182ns 1346299 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ee +75260261ns 1346303 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a922 PA:1c00a922 +75260281ns 1346304 1c000e82 fff60613 addi x12, x12, -1 x12=000003ed x12:000003ee +75260301ns 1346305 1c000e84 00130313 addi x6, x6, 1 x6=1c00a923 x6:1c00a922 +75260321ns 1346306 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ed +75260400ns 1346310 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a923 PA:1c00a923 +75260419ns 1346311 1c000e82 fff60613 addi x12, x12, -1 x12=000003ec x12:000003ed +75260439ns 1346312 1c000e84 00130313 addi x6, x6, 1 x6=1c00a924 x6:1c00a923 +75260459ns 1346313 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ec +75260538ns 1346317 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a924 PA:1c00a924 +75260558ns 1346318 1c000e82 fff60613 addi x12, x12, -1 x12=000003eb x12:000003ec +75260578ns 1346319 1c000e84 00130313 addi x6, x6, 1 x6=1c00a925 x6:1c00a924 +75260598ns 1346320 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003eb +75260677ns 1346324 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a925 PA:1c00a925 +75260697ns 1346325 1c000e82 fff60613 addi x12, x12, -1 x12=000003ea x12:000003eb +75260716ns 1346326 1c000e84 00130313 addi x6, x6, 1 x6=1c00a926 x6:1c00a925 +75260736ns 1346327 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ea +75260815ns 1346331 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a926 PA:1c00a926 +75260835ns 1346332 1c000e82 fff60613 addi x12, x12, -1 x12=000003e9 x12:000003ea +75260855ns 1346333 1c000e84 00130313 addi x6, x6, 1 x6=1c00a927 x6:1c00a926 +75260875ns 1346334 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003e9 +75260954ns 1346338 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a927 PA:1c00a927 +75260974ns 1346339 1c000e82 fff60613 addi x12, x12, -1 x12=000003e8 x12:000003e9 +75260993ns 1346340 1c000e84 00130313 addi x6, x6, 1 x6=1c00a928 x6:1c00a927 +75261013ns 1346341 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003e8 +75261092ns 1346345 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a928 PA:1c00a928 +75261112ns 1346346 1c000e82 fff60613 addi x12, x12, -1 x12=000003e7 x12:000003e8 +75261132ns 1346347 1c000e84 00130313 addi x6, x6, 1 x6=1c00a929 x6:1c00a928 +75261152ns 1346348 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003e7 +75261231ns 1346352 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a929 PA:1c00a929 +75261251ns 1346353 1c000e82 fff60613 addi x12, x12, -1 x12=000003e6 x12:000003e7 +75261271ns 1346354 1c000e84 00130313 addi x6, x6, 1 x6=1c00a92a x6:1c00a929 +75261290ns 1346355 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003e6 +75261369ns 1346359 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a92a PA:1c00a92a +75261389ns 1346360 1c000e82 fff60613 addi x12, x12, -1 x12=000003e5 x12:000003e6 +75261409ns 1346361 1c000e84 00130313 addi x6, x6, 1 x6=1c00a92b x6:1c00a92a +75261429ns 1346362 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003e5 +75261508ns 1346366 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a92b PA:1c00a92b +75261528ns 1346367 1c000e82 fff60613 addi x12, x12, -1 x12=000003e4 x12:000003e5 +75261548ns 1346368 1c000e84 00130313 addi x6, x6, 1 x6=1c00a92c x6:1c00a92b +75261567ns 1346369 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003e4 +75261647ns 1346373 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a92c PA:1c00a92c +75261666ns 1346374 1c000e82 fff60613 addi x12, x12, -1 x12=000003e3 x12:000003e4 +75261686ns 1346375 1c000e84 00130313 addi x6, x6, 1 x6=1c00a92d x6:1c00a92c +75261706ns 1346376 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003e3 +75261785ns 1346380 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a92d PA:1c00a92d +75261805ns 1346381 1c000e82 fff60613 addi x12, x12, -1 x12=000003e2 x12:000003e3 +75261825ns 1346382 1c000e84 00130313 addi x6, x6, 1 x6=1c00a92e x6:1c00a92d +75261844ns 1346383 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003e2 +75261924ns 1346387 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a92e PA:1c00a92e +75261943ns 1346388 1c000e82 fff60613 addi x12, x12, -1 x12=000003e1 x12:000003e2 +75261963ns 1346389 1c000e84 00130313 addi x6, x6, 1 x6=1c00a92f x6:1c00a92e +75261983ns 1346390 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003e1 +75262062ns 1346394 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a92f PA:1c00a92f +75262082ns 1346395 1c000e82 fff60613 addi x12, x12, -1 x12=000003e0 x12:000003e1 +75262102ns 1346396 1c000e84 00130313 addi x6, x6, 1 x6=1c00a930 x6:1c00a92f +75262122ns 1346397 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003e0 +75262201ns 1346401 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a930 PA:1c00a930 +75262221ns 1346402 1c000e82 fff60613 addi x12, x12, -1 x12=000003df x12:000003e0 +75262240ns 1346403 1c000e84 00130313 addi x6, x6, 1 x6=1c00a931 x6:1c00a930 +75262260ns 1346404 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003df +75262339ns 1346408 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a931 PA:1c00a931 +75262359ns 1346409 1c000e82 fff60613 addi x12, x12, -1 x12=000003de x12:000003df +75262379ns 1346410 1c000e84 00130313 addi x6, x6, 1 x6=1c00a932 x6:1c00a931 +75262399ns 1346411 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003de +75262478ns 1346415 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a932 PA:1c00a932 +75262498ns 1346416 1c000e82 fff60613 addi x12, x12, -1 x12=000003dd x12:000003de +75262517ns 1346417 1c000e84 00130313 addi x6, x6, 1 x6=1c00a933 x6:1c00a932 +75262537ns 1346418 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003dd +75262616ns 1346422 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a933 PA:1c00a933 +75262636ns 1346423 1c000e82 fff60613 addi x12, x12, -1 x12=000003dc x12:000003dd +75262656ns 1346424 1c000e84 00130313 addi x6, x6, 1 x6=1c00a934 x6:1c00a933 +75262676ns 1346425 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003dc +75262755ns 1346429 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a934 PA:1c00a934 +75262775ns 1346430 1c000e82 fff60613 addi x12, x12, -1 x12=000003db x12:000003dc +75262795ns 1346431 1c000e84 00130313 addi x6, x6, 1 x6=1c00a935 x6:1c00a934 +75262814ns 1346432 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003db +75262893ns 1346436 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a935 PA:1c00a935 +75262913ns 1346437 1c000e82 fff60613 addi x12, x12, -1 x12=000003da x12:000003db +75262933ns 1346438 1c000e84 00130313 addi x6, x6, 1 x6=1c00a936 x6:1c00a935 +75262953ns 1346439 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003da +75263032ns 1346443 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a936 PA:1c00a936 +75263052ns 1346444 1c000e82 fff60613 addi x12, x12, -1 x12=000003d9 x12:000003da +75263072ns 1346445 1c000e84 00130313 addi x6, x6, 1 x6=1c00a937 x6:1c00a936 +75263091ns 1346446 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003d9 +75263171ns 1346450 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a937 PA:1c00a937 +75263190ns 1346451 1c000e82 fff60613 addi x12, x12, -1 x12=000003d8 x12:000003d9 +75263210ns 1346452 1c000e84 00130313 addi x6, x6, 1 x6=1c00a938 x6:1c00a937 +75263230ns 1346453 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003d8 +75263309ns 1346457 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a938 PA:1c00a938 +75263329ns 1346458 1c000e82 fff60613 addi x12, x12, -1 x12=000003d7 x12:000003d8 +75263349ns 1346459 1c000e84 00130313 addi x6, x6, 1 x6=1c00a939 x6:1c00a938 +75263368ns 1346460 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003d7 +75263448ns 1346464 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a939 PA:1c00a939 +75263467ns 1346465 1c000e82 fff60613 addi x12, x12, -1 x12=000003d6 x12:000003d7 +75263487ns 1346466 1c000e84 00130313 addi x6, x6, 1 x6=1c00a93a x6:1c00a939 +75263507ns 1346467 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003d6 +75263586ns 1346471 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a93a PA:1c00a93a +75263606ns 1346472 1c000e82 fff60613 addi x12, x12, -1 x12=000003d5 x12:000003d6 +75263626ns 1346473 1c000e84 00130313 addi x6, x6, 1 x6=1c00a93b x6:1c00a93a +75263646ns 1346474 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003d5 +75263725ns 1346478 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a93b PA:1c00a93b +75263745ns 1346479 1c000e82 fff60613 addi x12, x12, -1 x12=000003d4 x12:000003d5 +75263764ns 1346480 1c000e84 00130313 addi x6, x6, 1 x6=1c00a93c x6:1c00a93b +75263784ns 1346481 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003d4 +75263863ns 1346485 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a93c PA:1c00a93c +75263883ns 1346486 1c000e82 fff60613 addi x12, x12, -1 x12=000003d3 x12:000003d4 +75263903ns 1346487 1c000e84 00130313 addi x6, x6, 1 x6=1c00a93d x6:1c00a93c +75263923ns 1346488 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003d3 +75264002ns 1346492 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a93d PA:1c00a93d +75264022ns 1346493 1c000e82 fff60613 addi x12, x12, -1 x12=000003d2 x12:000003d3 +75264041ns 1346494 1c000e84 00130313 addi x6, x6, 1 x6=1c00a93e x6:1c00a93d +75264061ns 1346495 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003d2 +75264140ns 1346499 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a93e PA:1c00a93e +75264160ns 1346500 1c000e82 fff60613 addi x12, x12, -1 x12=000003d1 x12:000003d2 +75264180ns 1346501 1c000e84 00130313 addi x6, x6, 1 x6=1c00a93f x6:1c00a93e +75264200ns 1346502 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003d1 +75264279ns 1346506 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a93f PA:1c00a93f +75264299ns 1346507 1c000e82 fff60613 addi x12, x12, -1 x12=000003d0 x12:000003d1 +75264318ns 1346508 1c000e84 00130313 addi x6, x6, 1 x6=1c00a940 x6:1c00a93f +75264338ns 1346509 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003d0 +75264417ns 1346513 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a940 PA:1c00a940 +75264437ns 1346514 1c000e82 fff60613 addi x12, x12, -1 x12=000003cf x12:000003d0 +75264457ns 1346515 1c000e84 00130313 addi x6, x6, 1 x6=1c00a941 x6:1c00a940 +75264477ns 1346516 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003cf +75264556ns 1346520 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a941 PA:1c00a941 +75264576ns 1346521 1c000e82 fff60613 addi x12, x12, -1 x12=000003ce x12:000003cf +75264596ns 1346522 1c000e84 00130313 addi x6, x6, 1 x6=1c00a942 x6:1c00a941 +75264615ns 1346523 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ce +75264695ns 1346527 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a942 PA:1c00a942 +75264714ns 1346528 1c000e82 fff60613 addi x12, x12, -1 x12=000003cd x12:000003ce +75264734ns 1346529 1c000e84 00130313 addi x6, x6, 1 x6=1c00a943 x6:1c00a942 +75264754ns 1346530 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003cd +75264833ns 1346534 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a943 PA:1c00a943 +75264853ns 1346535 1c000e82 fff60613 addi x12, x12, -1 x12=000003cc x12:000003cd +75264873ns 1346536 1c000e84 00130313 addi x6, x6, 1 x6=1c00a944 x6:1c00a943 +75264892ns 1346537 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003cc +75264972ns 1346541 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a944 PA:1c00a944 +75264991ns 1346542 1c000e82 fff60613 addi x12, x12, -1 x12=000003cb x12:000003cc +75265011ns 1346543 1c000e84 00130313 addi x6, x6, 1 x6=1c00a945 x6:1c00a944 +75265031ns 1346544 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003cb +75265110ns 1346548 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a945 PA:1c00a945 +75265130ns 1346549 1c000e82 fff60613 addi x12, x12, -1 x12=000003ca x12:000003cb +75265150ns 1346550 1c000e84 00130313 addi x6, x6, 1 x6=1c00a946 x6:1c00a945 +75265170ns 1346551 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ca +75265249ns 1346555 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a946 PA:1c00a946 +75265269ns 1346556 1c000e82 fff60613 addi x12, x12, -1 x12=000003c9 x12:000003ca +75265288ns 1346557 1c000e84 00130313 addi x6, x6, 1 x6=1c00a947 x6:1c00a946 +75265308ns 1346558 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003c9 +75265387ns 1346562 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a947 PA:1c00a947 +75265407ns 1346563 1c000e82 fff60613 addi x12, x12, -1 x12=000003c8 x12:000003c9 +75265427ns 1346564 1c000e84 00130313 addi x6, x6, 1 x6=1c00a948 x6:1c00a947 +75265447ns 1346565 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003c8 +75265526ns 1346569 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a948 PA:1c00a948 +75265546ns 1346570 1c000e82 fff60613 addi x12, x12, -1 x12=000003c7 x12:000003c8 +75265565ns 1346571 1c000e84 00130313 addi x6, x6, 1 x6=1c00a949 x6:1c00a948 +75265585ns 1346572 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003c7 +75265664ns 1346576 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a949 PA:1c00a949 +75265684ns 1346577 1c000e82 fff60613 addi x12, x12, -1 x12=000003c6 x12:000003c7 +75265704ns 1346578 1c000e84 00130313 addi x6, x6, 1 x6=1c00a94a x6:1c00a949 +75265724ns 1346579 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003c6 +75265803ns 1346583 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a94a PA:1c00a94a +75265823ns 1346584 1c000e82 fff60613 addi x12, x12, -1 x12=000003c5 x12:000003c6 +75265842ns 1346585 1c000e84 00130313 addi x6, x6, 1 x6=1c00a94b x6:1c00a94a +75265862ns 1346586 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003c5 +75265941ns 1346590 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a94b PA:1c00a94b +75265961ns 1346591 1c000e82 fff60613 addi x12, x12, -1 x12=000003c4 x12:000003c5 +75265981ns 1346592 1c000e84 00130313 addi x6, x6, 1 x6=1c00a94c x6:1c00a94b +75266001ns 1346593 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003c4 +75266080ns 1346597 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a94c PA:1c00a94c +75266100ns 1346598 1c000e82 fff60613 addi x12, x12, -1 x12=000003c3 x12:000003c4 +75266120ns 1346599 1c000e84 00130313 addi x6, x6, 1 x6=1c00a94d x6:1c00a94c +75266139ns 1346600 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003c3 +75266219ns 1346604 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a94d PA:1c00a94d +75266238ns 1346605 1c000e82 fff60613 addi x12, x12, -1 x12=000003c2 x12:000003c3 +75266258ns 1346606 1c000e84 00130313 addi x6, x6, 1 x6=1c00a94e x6:1c00a94d +75266278ns 1346607 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003c2 +75266357ns 1346611 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a94e PA:1c00a94e +75266377ns 1346612 1c000e82 fff60613 addi x12, x12, -1 x12=000003c1 x12:000003c2 +75266397ns 1346613 1c000e84 00130313 addi x6, x6, 1 x6=1c00a94f x6:1c00a94e +75266416ns 1346614 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003c1 +75266496ns 1346618 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a94f PA:1c00a94f +75266515ns 1346619 1c000e82 fff60613 addi x12, x12, -1 x12=000003c0 x12:000003c1 +75266535ns 1346620 1c000e84 00130313 addi x6, x6, 1 x6=1c00a950 x6:1c00a94f +75266555ns 1346621 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003c0 +75266634ns 1346625 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a950 PA:1c00a950 +75266654ns 1346626 1c000e82 fff60613 addi x12, x12, -1 x12=000003bf x12:000003c0 +75266674ns 1346627 1c000e84 00130313 addi x6, x6, 1 x6=1c00a951 x6:1c00a950 +75266694ns 1346628 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003bf +75266773ns 1346632 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a951 PA:1c00a951 +75266792ns 1346633 1c000e82 fff60613 addi x12, x12, -1 x12=000003be x12:000003bf +75266812ns 1346634 1c000e84 00130313 addi x6, x6, 1 x6=1c00a952 x6:1c00a951 +75266832ns 1346635 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003be +75266911ns 1346639 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a952 PA:1c00a952 +75266931ns 1346640 1c000e82 fff60613 addi x12, x12, -1 x12=000003bd x12:000003be +75266951ns 1346641 1c000e84 00130313 addi x6, x6, 1 x6=1c00a953 x6:1c00a952 +75266971ns 1346642 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003bd +75267050ns 1346646 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a953 PA:1c00a953 +75267070ns 1346647 1c000e82 fff60613 addi x12, x12, -1 x12=000003bc x12:000003bd +75267089ns 1346648 1c000e84 00130313 addi x6, x6, 1 x6=1c00a954 x6:1c00a953 +75267109ns 1346649 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003bc +75267188ns 1346653 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a954 PA:1c00a954 +75267208ns 1346654 1c000e82 fff60613 addi x12, x12, -1 x12=000003bb x12:000003bc +75267228ns 1346655 1c000e84 00130313 addi x6, x6, 1 x6=1c00a955 x6:1c00a954 +75267248ns 1346656 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003bb +75267327ns 1346660 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a955 PA:1c00a955 +75267347ns 1346661 1c000e82 fff60613 addi x12, x12, -1 x12=000003ba x12:000003bb +75267366ns 1346662 1c000e84 00130313 addi x6, x6, 1 x6=1c00a956 x6:1c00a955 +75267386ns 1346663 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ba +75267465ns 1346667 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a956 PA:1c00a956 +75267485ns 1346668 1c000e82 fff60613 addi x12, x12, -1 x12=000003b9 x12:000003ba +75267505ns 1346669 1c000e84 00130313 addi x6, x6, 1 x6=1c00a957 x6:1c00a956 +75267525ns 1346670 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003b9 +75267604ns 1346674 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a957 PA:1c00a957 +75267624ns 1346675 1c000e82 fff60613 addi x12, x12, -1 x12=000003b8 x12:000003b9 +75267644ns 1346676 1c000e84 00130313 addi x6, x6, 1 x6=1c00a958 x6:1c00a957 +75267663ns 1346677 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003b8 +75267743ns 1346681 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a958 PA:1c00a958 +75267762ns 1346682 1c000e82 fff60613 addi x12, x12, -1 x12=000003b7 x12:000003b8 +75267782ns 1346683 1c000e84 00130313 addi x6, x6, 1 x6=1c00a959 x6:1c00a958 +75267802ns 1346684 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003b7 +75267881ns 1346688 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a959 PA:1c00a959 +75267901ns 1346689 1c000e82 fff60613 addi x12, x12, -1 x12=000003b6 x12:000003b7 +75267921ns 1346690 1c000e84 00130313 addi x6, x6, 1 x6=1c00a95a x6:1c00a959 +75267940ns 1346691 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003b6 +75268020ns 1346695 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a95a PA:1c00a95a +75268039ns 1346696 1c000e82 fff60613 addi x12, x12, -1 x12=000003b5 x12:000003b6 +75268059ns 1346697 1c000e84 00130313 addi x6, x6, 1 x6=1c00a95b x6:1c00a95a +75268079ns 1346698 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003b5 +75268158ns 1346702 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a95b PA:1c00a95b +75268178ns 1346703 1c000e82 fff60613 addi x12, x12, -1 x12=000003b4 x12:000003b5 +75268198ns 1346704 1c000e84 00130313 addi x6, x6, 1 x6=1c00a95c x6:1c00a95b +75268218ns 1346705 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003b4 +75268297ns 1346709 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a95c PA:1c00a95c +75268316ns 1346710 1c000e82 fff60613 addi x12, x12, -1 x12=000003b3 x12:000003b4 +75268336ns 1346711 1c000e84 00130313 addi x6, x6, 1 x6=1c00a95d x6:1c00a95c +75268356ns 1346712 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003b3 +75268435ns 1346716 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a95d PA:1c00a95d +75268455ns 1346717 1c000e82 fff60613 addi x12, x12, -1 x12=000003b2 x12:000003b3 +75268475ns 1346718 1c000e84 00130313 addi x6, x6, 1 x6=1c00a95e x6:1c00a95d +75268495ns 1346719 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003b2 +75268574ns 1346723 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a95e PA:1c00a95e +75268594ns 1346724 1c000e82 fff60613 addi x12, x12, -1 x12=000003b1 x12:000003b2 +75268613ns 1346725 1c000e84 00130313 addi x6, x6, 1 x6=1c00a95f x6:1c00a95e +75268633ns 1346726 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003b1 +75268712ns 1346730 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a95f PA:1c00a95f +75268732ns 1346731 1c000e82 fff60613 addi x12, x12, -1 x12=000003b0 x12:000003b1 +75268752ns 1346732 1c000e84 00130313 addi x6, x6, 1 x6=1c00a960 x6:1c00a95f +75268772ns 1346733 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003b0 +75268851ns 1346737 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a960 PA:1c00a960 +75268871ns 1346738 1c000e82 fff60613 addi x12, x12, -1 x12=000003af x12:000003b0 +75268890ns 1346739 1c000e84 00130313 addi x6, x6, 1 x6=1c00a961 x6:1c00a960 +75268910ns 1346740 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003af +75268989ns 1346744 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a961 PA:1c00a961 +75269009ns 1346745 1c000e82 fff60613 addi x12, x12, -1 x12=000003ae x12:000003af +75269029ns 1346746 1c000e84 00130313 addi x6, x6, 1 x6=1c00a962 x6:1c00a961 +75269049ns 1346747 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ae +75269128ns 1346751 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a962 PA:1c00a962 +75269148ns 1346752 1c000e82 fff60613 addi x12, x12, -1 x12=000003ad x12:000003ae +75269168ns 1346753 1c000e84 00130313 addi x6, x6, 1 x6=1c00a963 x6:1c00a962 +75269187ns 1346754 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ad +75269266ns 1346758 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a963 PA:1c00a963 +75269286ns 1346759 1c000e82 fff60613 addi x12, x12, -1 x12=000003ac x12:000003ad +75269306ns 1346760 1c000e84 00130313 addi x6, x6, 1 x6=1c00a964 x6:1c00a963 +75269326ns 1346761 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ac +75269405ns 1346765 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a964 PA:1c00a964 +75269425ns 1346766 1c000e82 fff60613 addi x12, x12, -1 x12=000003ab x12:000003ac +75269445ns 1346767 1c000e84 00130313 addi x6, x6, 1 x6=1c00a965 x6:1c00a964 +75269464ns 1346768 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ab +75269544ns 1346772 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a965 PA:1c00a965 +75269563ns 1346773 1c000e82 fff60613 addi x12, x12, -1 x12=000003aa x12:000003ab +75269583ns 1346774 1c000e84 00130313 addi x6, x6, 1 x6=1c00a966 x6:1c00a965 +75269603ns 1346775 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003aa +75269682ns 1346779 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a966 PA:1c00a966 +75269702ns 1346780 1c000e82 fff60613 addi x12, x12, -1 x12=000003a9 x12:000003aa +75269722ns 1346781 1c000e84 00130313 addi x6, x6, 1 x6=1c00a967 x6:1c00a966 +75269741ns 1346782 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003a9 +75269821ns 1346786 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a967 PA:1c00a967 +75269840ns 1346787 1c000e82 fff60613 addi x12, x12, -1 x12=000003a8 x12:000003a9 +75269860ns 1346788 1c000e84 00130313 addi x6, x6, 1 x6=1c00a968 x6:1c00a967 +75269880ns 1346789 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003a8 +75269959ns 1346793 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a968 PA:1c00a968 +75269979ns 1346794 1c000e82 fff60613 addi x12, x12, -1 x12=000003a7 x12:000003a8 +75269999ns 1346795 1c000e84 00130313 addi x6, x6, 1 x6=1c00a969 x6:1c00a968 +75270019ns 1346796 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003a7 +75270098ns 1346800 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a969 PA:1c00a969 +75270118ns 1346801 1c000e82 fff60613 addi x12, x12, -1 x12=000003a6 x12:000003a7 +75270137ns 1346802 1c000e84 00130313 addi x6, x6, 1 x6=1c00a96a x6:1c00a969 +75270157ns 1346803 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003a6 +75270236ns 1346807 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a96a PA:1c00a96a +75270256ns 1346808 1c000e82 fff60613 addi x12, x12, -1 x12=000003a5 x12:000003a6 +75270276ns 1346809 1c000e84 00130313 addi x6, x6, 1 x6=1c00a96b x6:1c00a96a +75270296ns 1346810 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003a5 +75270375ns 1346814 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a96b PA:1c00a96b +75270395ns 1346815 1c000e82 fff60613 addi x12, x12, -1 x12=000003a4 x12:000003a5 +75270414ns 1346816 1c000e84 00130313 addi x6, x6, 1 x6=1c00a96c x6:1c00a96b +75270434ns 1346817 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003a4 +75270513ns 1346821 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a96c PA:1c00a96c +75270533ns 1346822 1c000e82 fff60613 addi x12, x12, -1 x12=000003a3 x12:000003a4 +75270553ns 1346823 1c000e84 00130313 addi x6, x6, 1 x6=1c00a96d x6:1c00a96c +75270573ns 1346824 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003a3 +75270652ns 1346828 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a96d PA:1c00a96d +75270672ns 1346829 1c000e82 fff60613 addi x12, x12, -1 x12=000003a2 x12:000003a3 +75270692ns 1346830 1c000e84 00130313 addi x6, x6, 1 x6=1c00a96e x6:1c00a96d +75270711ns 1346831 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003a2 +75270790ns 1346835 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a96e PA:1c00a96e +75270810ns 1346836 1c000e82 fff60613 addi x12, x12, -1 x12=000003a1 x12:000003a2 +75270830ns 1346837 1c000e84 00130313 addi x6, x6, 1 x6=1c00a96f x6:1c00a96e +75270850ns 1346838 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003a1 +75270929ns 1346842 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a96f PA:1c00a96f +75270949ns 1346843 1c000e82 fff60613 addi x12, x12, -1 x12=000003a0 x12:000003a1 +75270969ns 1346844 1c000e84 00130313 addi x6, x6, 1 x6=1c00a970 x6:1c00a96f +75270988ns 1346845 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003a0 +75271068ns 1346849 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a970 PA:1c00a970 +75271087ns 1346850 1c000e82 fff60613 addi x12, x12, -1 x12=0000039f x12:000003a0 +75271107ns 1346851 1c000e84 00130313 addi x6, x6, 1 x6=1c00a971 x6:1c00a970 +75271127ns 1346852 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000039f +75271206ns 1346856 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a971 PA:1c00a971 +75271226ns 1346857 1c000e82 fff60613 addi x12, x12, -1 x12=0000039e x12:0000039f +75271246ns 1346858 1c000e84 00130313 addi x6, x6, 1 x6=1c00a972 x6:1c00a971 +75271265ns 1346859 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000039e +75271345ns 1346863 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a972 PA:1c00a972 +75271364ns 1346864 1c000e82 fff60613 addi x12, x12, -1 x12=0000039d x12:0000039e +75271384ns 1346865 1c000e84 00130313 addi x6, x6, 1 x6=1c00a973 x6:1c00a972 +75271404ns 1346866 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000039d +75271483ns 1346870 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a973 PA:1c00a973 +75271503ns 1346871 1c000e82 fff60613 addi x12, x12, -1 x12=0000039c x12:0000039d +75271523ns 1346872 1c000e84 00130313 addi x6, x6, 1 x6=1c00a974 x6:1c00a973 +75271543ns 1346873 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000039c +75271622ns 1346877 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a974 PA:1c00a974 +75271642ns 1346878 1c000e82 fff60613 addi x12, x12, -1 x12=0000039b x12:0000039c +75271661ns 1346879 1c000e84 00130313 addi x6, x6, 1 x6=1c00a975 x6:1c00a974 +75271681ns 1346880 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000039b +75271760ns 1346884 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a975 PA:1c00a975 +75271780ns 1346885 1c000e82 fff60613 addi x12, x12, -1 x12=0000039a x12:0000039b +75271800ns 1346886 1c000e84 00130313 addi x6, x6, 1 x6=1c00a976 x6:1c00a975 +75271820ns 1346887 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000039a +75271899ns 1346891 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a976 PA:1c00a976 +75271919ns 1346892 1c000e82 fff60613 addi x12, x12, -1 x12=00000399 x12:0000039a +75271938ns 1346893 1c000e84 00130313 addi x6, x6, 1 x6=1c00a977 x6:1c00a976 +75271958ns 1346894 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000399 +75272037ns 1346898 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a977 PA:1c00a977 +75272057ns 1346899 1c000e82 fff60613 addi x12, x12, -1 x12=00000398 x12:00000399 +75272077ns 1346900 1c000e84 00130313 addi x6, x6, 1 x6=1c00a978 x6:1c00a977 +75272097ns 1346901 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000398 +75272176ns 1346905 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a978 PA:1c00a978 +75272196ns 1346906 1c000e82 fff60613 addi x12, x12, -1 x12=00000397 x12:00000398 +75272215ns 1346907 1c000e84 00130313 addi x6, x6, 1 x6=1c00a979 x6:1c00a978 +75272235ns 1346908 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000397 +75272314ns 1346912 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a979 PA:1c00a979 +75272334ns 1346913 1c000e82 fff60613 addi x12, x12, -1 x12=00000396 x12:00000397 +75272354ns 1346914 1c000e84 00130313 addi x6, x6, 1 x6=1c00a97a x6:1c00a979 +75272374ns 1346915 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000396 +75272453ns 1346919 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a97a PA:1c00a97a +75272473ns 1346920 1c000e82 fff60613 addi x12, x12, -1 x12=00000395 x12:00000396 +75272493ns 1346921 1c000e84 00130313 addi x6, x6, 1 x6=1c00a97b x6:1c00a97a +75272512ns 1346922 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000395 +75272592ns 1346926 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a97b PA:1c00a97b +75272611ns 1346927 1c000e82 fff60613 addi x12, x12, -1 x12=00000394 x12:00000395 +75272631ns 1346928 1c000e84 00130313 addi x6, x6, 1 x6=1c00a97c x6:1c00a97b +75272651ns 1346929 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000394 +75272730ns 1346933 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a97c PA:1c00a97c +75272750ns 1346934 1c000e82 fff60613 addi x12, x12, -1 x12=00000393 x12:00000394 +75272770ns 1346935 1c000e84 00130313 addi x6, x6, 1 x6=1c00a97d x6:1c00a97c +75272789ns 1346936 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000393 +75272869ns 1346940 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a97d PA:1c00a97d +75272888ns 1346941 1c000e82 fff60613 addi x12, x12, -1 x12=00000392 x12:00000393 +75272908ns 1346942 1c000e84 00130313 addi x6, x6, 1 x6=1c00a97e x6:1c00a97d +75272928ns 1346943 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000392 +75273007ns 1346947 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a97e PA:1c00a97e +75273027ns 1346948 1c000e82 fff60613 addi x12, x12, -1 x12=00000391 x12:00000392 +75273047ns 1346949 1c000e84 00130313 addi x6, x6, 1 x6=1c00a97f x6:1c00a97e +75273067ns 1346950 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000391 +75273146ns 1346954 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a97f PA:1c00a97f +75273166ns 1346955 1c000e82 fff60613 addi x12, x12, -1 x12=00000390 x12:00000391 +75273185ns 1346956 1c000e84 00130313 addi x6, x6, 1 x6=1c00a980 x6:1c00a97f +75273205ns 1346957 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000390 +75273284ns 1346961 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a980 PA:1c00a980 +75273304ns 1346962 1c000e82 fff60613 addi x12, x12, -1 x12=0000038f x12:00000390 +75273324ns 1346963 1c000e84 00130313 addi x6, x6, 1 x6=1c00a981 x6:1c00a980 +75273344ns 1346964 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000038f +75273423ns 1346968 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a981 PA:1c00a981 +75273443ns 1346969 1c000e82 fff60613 addi x12, x12, -1 x12=0000038e x12:0000038f +75273462ns 1346970 1c000e84 00130313 addi x6, x6, 1 x6=1c00a982 x6:1c00a981 +75273482ns 1346971 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000038e +75273561ns 1346975 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a982 PA:1c00a982 +75273581ns 1346976 1c000e82 fff60613 addi x12, x12, -1 x12=0000038d x12:0000038e +75273601ns 1346977 1c000e84 00130313 addi x6, x6, 1 x6=1c00a983 x6:1c00a982 +75273621ns 1346978 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000038d +75273700ns 1346982 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a983 PA:1c00a983 +75273720ns 1346983 1c000e82 fff60613 addi x12, x12, -1 x12=0000038c x12:0000038d +75273739ns 1346984 1c000e84 00130313 addi x6, x6, 1 x6=1c00a984 x6:1c00a983 +75273759ns 1346985 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000038c +75273838ns 1346989 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a984 PA:1c00a984 +75273858ns 1346990 1c000e82 fff60613 addi x12, x12, -1 x12=0000038b x12:0000038c +75273878ns 1346991 1c000e84 00130313 addi x6, x6, 1 x6=1c00a985 x6:1c00a984 +75273898ns 1346992 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000038b +75273977ns 1346996 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a985 PA:1c00a985 +75273997ns 1346997 1c000e82 fff60613 addi x12, x12, -1 x12=0000038a x12:0000038b +75274017ns 1346998 1c000e84 00130313 addi x6, x6, 1 x6=1c00a986 x6:1c00a985 +75274036ns 1346999 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000038a +75274116ns 1347003 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a986 PA:1c00a986 +75274135ns 1347004 1c000e82 fff60613 addi x12, x12, -1 x12=00000389 x12:0000038a +75274155ns 1347005 1c000e84 00130313 addi x6, x6, 1 x6=1c00a987 x6:1c00a986 +75274175ns 1347006 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000389 +75274254ns 1347010 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a987 PA:1c00a987 +75274274ns 1347011 1c000e82 fff60613 addi x12, x12, -1 x12=00000388 x12:00000389 +75274294ns 1347012 1c000e84 00130313 addi x6, x6, 1 x6=1c00a988 x6:1c00a987 +75274313ns 1347013 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000388 +75274393ns 1347017 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a988 PA:1c00a988 +75274412ns 1347018 1c000e82 fff60613 addi x12, x12, -1 x12=00000387 x12:00000388 +75274432ns 1347019 1c000e84 00130313 addi x6, x6, 1 x6=1c00a989 x6:1c00a988 +75274452ns 1347020 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000387 +75274531ns 1347024 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a989 PA:1c00a989 +75274551ns 1347025 1c000e82 fff60613 addi x12, x12, -1 x12=00000386 x12:00000387 +75274571ns 1347026 1c000e84 00130313 addi x6, x6, 1 x6=1c00a98a x6:1c00a989 +75274591ns 1347027 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000386 +75274670ns 1347031 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a98a PA:1c00a98a +75274689ns 1347032 1c000e82 fff60613 addi x12, x12, -1 x12=00000385 x12:00000386 +75274709ns 1347033 1c000e84 00130313 addi x6, x6, 1 x6=1c00a98b x6:1c00a98a +75274729ns 1347034 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000385 +75274808ns 1347038 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a98b PA:1c00a98b +75274828ns 1347039 1c000e82 fff60613 addi x12, x12, -1 x12=00000384 x12:00000385 +75274848ns 1347040 1c000e84 00130313 addi x6, x6, 1 x6=1c00a98c x6:1c00a98b +75274868ns 1347041 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000384 +75274947ns 1347045 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a98c PA:1c00a98c +75274967ns 1347046 1c000e82 fff60613 addi x12, x12, -1 x12=00000383 x12:00000384 +75274986ns 1347047 1c000e84 00130313 addi x6, x6, 1 x6=1c00a98d x6:1c00a98c +75275006ns 1347048 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000383 +75275085ns 1347052 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a98d PA:1c00a98d +75275105ns 1347053 1c000e82 fff60613 addi x12, x12, -1 x12=00000382 x12:00000383 +75275125ns 1347054 1c000e84 00130313 addi x6, x6, 1 x6=1c00a98e x6:1c00a98d +75275145ns 1347055 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000382 +75275224ns 1347059 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a98e PA:1c00a98e +75275244ns 1347060 1c000e82 fff60613 addi x12, x12, -1 x12=00000381 x12:00000382 +75275263ns 1347061 1c000e84 00130313 addi x6, x6, 1 x6=1c00a98f x6:1c00a98e +75275283ns 1347062 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000381 +75275362ns 1347066 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a98f PA:1c00a98f +75275382ns 1347067 1c000e82 fff60613 addi x12, x12, -1 x12=00000380 x12:00000381 +75275402ns 1347068 1c000e84 00130313 addi x6, x6, 1 x6=1c00a990 x6:1c00a98f +75275422ns 1347069 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000380 +75275501ns 1347073 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a990 PA:1c00a990 +75275521ns 1347074 1c000e82 fff60613 addi x12, x12, -1 x12=0000037f x12:00000380 +75275541ns 1347075 1c000e84 00130313 addi x6, x6, 1 x6=1c00a991 x6:1c00a990 +75275560ns 1347076 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000037f +75275640ns 1347080 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a991 PA:1c00a991 +75275659ns 1347081 1c000e82 fff60613 addi x12, x12, -1 x12=0000037e x12:0000037f +75275679ns 1347082 1c000e84 00130313 addi x6, x6, 1 x6=1c00a992 x6:1c00a991 +75275699ns 1347083 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000037e +75275778ns 1347087 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a992 PA:1c00a992 +75275798ns 1347088 1c000e82 fff60613 addi x12, x12, -1 x12=0000037d x12:0000037e +75275818ns 1347089 1c000e84 00130313 addi x6, x6, 1 x6=1c00a993 x6:1c00a992 +75275837ns 1347090 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000037d +75275917ns 1347094 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a993 PA:1c00a993 +75275936ns 1347095 1c000e82 fff60613 addi x12, x12, -1 x12=0000037c x12:0000037d +75275956ns 1347096 1c000e84 00130313 addi x6, x6, 1 x6=1c00a994 x6:1c00a993 +75275976ns 1347097 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000037c +75276055ns 1347101 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a994 PA:1c00a994 +75276075ns 1347102 1c000e82 fff60613 addi x12, x12, -1 x12=0000037b x12:0000037c +75276095ns 1347103 1c000e84 00130313 addi x6, x6, 1 x6=1c00a995 x6:1c00a994 +75276115ns 1347104 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000037b +75276194ns 1347108 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a995 PA:1c00a995 +75276213ns 1347109 1c000e82 fff60613 addi x12, x12, -1 x12=0000037a x12:0000037b +75276233ns 1347110 1c000e84 00130313 addi x6, x6, 1 x6=1c00a996 x6:1c00a995 +75276253ns 1347111 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000037a +75276332ns 1347115 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a996 PA:1c00a996 +75276352ns 1347116 1c000e82 fff60613 addi x12, x12, -1 x12=00000379 x12:0000037a +75276372ns 1347117 1c000e84 00130313 addi x6, x6, 1 x6=1c00a997 x6:1c00a996 +75276392ns 1347118 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000379 +75276471ns 1347122 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a997 PA:1c00a997 +75276491ns 1347123 1c000e82 fff60613 addi x12, x12, -1 x12=00000378 x12:00000379 +75276510ns 1347124 1c000e84 00130313 addi x6, x6, 1 x6=1c00a998 x6:1c00a997 +75276530ns 1347125 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000378 +75276609ns 1347129 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a998 PA:1c00a998 +75276629ns 1347130 1c000e82 fff60613 addi x12, x12, -1 x12=00000377 x12:00000378 +75276649ns 1347131 1c000e84 00130313 addi x6, x6, 1 x6=1c00a999 x6:1c00a998 +75276669ns 1347132 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000377 +75276748ns 1347136 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a999 PA:1c00a999 +75276768ns 1347137 1c000e82 fff60613 addi x12, x12, -1 x12=00000376 x12:00000377 +75276787ns 1347138 1c000e84 00130313 addi x6, x6, 1 x6=1c00a99a x6:1c00a999 +75276807ns 1347139 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000376 +75276886ns 1347143 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a99a PA:1c00a99a +75276906ns 1347144 1c000e82 fff60613 addi x12, x12, -1 x12=00000375 x12:00000376 +75276926ns 1347145 1c000e84 00130313 addi x6, x6, 1 x6=1c00a99b x6:1c00a99a +75276946ns 1347146 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000375 +75277025ns 1347150 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a99b PA:1c00a99b +75277045ns 1347151 1c000e82 fff60613 addi x12, x12, -1 x12=00000374 x12:00000375 +75277065ns 1347152 1c000e84 00130313 addi x6, x6, 1 x6=1c00a99c x6:1c00a99b +75277084ns 1347153 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000374 +75277163ns 1347157 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a99c PA:1c00a99c +75277183ns 1347158 1c000e82 fff60613 addi x12, x12, -1 x12=00000373 x12:00000374 +75277203ns 1347159 1c000e84 00130313 addi x6, x6, 1 x6=1c00a99d x6:1c00a99c +75277223ns 1347160 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000373 +75277302ns 1347164 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a99d PA:1c00a99d +75277322ns 1347165 1c000e82 fff60613 addi x12, x12, -1 x12=00000372 x12:00000373 +75277342ns 1347166 1c000e84 00130313 addi x6, x6, 1 x6=1c00a99e x6:1c00a99d +75277361ns 1347167 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000372 +75277441ns 1347171 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a99e PA:1c00a99e +75277460ns 1347172 1c000e82 fff60613 addi x12, x12, -1 x12=00000371 x12:00000372 +75277480ns 1347173 1c000e84 00130313 addi x6, x6, 1 x6=1c00a99f x6:1c00a99e +75277500ns 1347174 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000371 +75277579ns 1347178 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a99f PA:1c00a99f +75277599ns 1347179 1c000e82 fff60613 addi x12, x12, -1 x12=00000370 x12:00000371 +75277619ns 1347180 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9a0 x6:1c00a99f +75277639ns 1347181 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000370 +75277718ns 1347185 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9a0 PA:1c00a9a0 +75277737ns 1347186 1c000e82 fff60613 addi x12, x12, -1 x12=0000036f x12:00000370 +75277757ns 1347187 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9a1 x6:1c00a9a0 +75277777ns 1347188 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000036f +75277856ns 1347192 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9a1 PA:1c00a9a1 +75277876ns 1347193 1c000e82 fff60613 addi x12, x12, -1 x12=0000036e x12:0000036f +75277896ns 1347194 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9a2 x6:1c00a9a1 +75277916ns 1347195 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000036e +75277995ns 1347199 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9a2 PA:1c00a9a2 +75278015ns 1347200 1c000e82 fff60613 addi x12, x12, -1 x12=0000036d x12:0000036e +75278034ns 1347201 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9a3 x6:1c00a9a2 +75278054ns 1347202 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000036d +75278133ns 1347206 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9a3 PA:1c00a9a3 +75278153ns 1347207 1c000e82 fff60613 addi x12, x12, -1 x12=0000036c x12:0000036d +75278173ns 1347208 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9a4 x6:1c00a9a3 +75278193ns 1347209 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000036c +75278272ns 1347213 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9a4 PA:1c00a9a4 +75278292ns 1347214 1c000e82 fff60613 addi x12, x12, -1 x12=0000036b x12:0000036c +75278311ns 1347215 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9a5 x6:1c00a9a4 +75278331ns 1347216 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000036b +75278410ns 1347220 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9a5 PA:1c00a9a5 +75278430ns 1347221 1c000e82 fff60613 addi x12, x12, -1 x12=0000036a x12:0000036b +75278450ns 1347222 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9a6 x6:1c00a9a5 +75278470ns 1347223 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000036a +75278549ns 1347227 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9a6 PA:1c00a9a6 +75278569ns 1347228 1c000e82 fff60613 addi x12, x12, -1 x12=00000369 x12:0000036a +75278589ns 1347229 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9a7 x6:1c00a9a6 +75278608ns 1347230 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000369 +75278687ns 1347234 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9a7 PA:1c00a9a7 +75278707ns 1347235 1c000e82 fff60613 addi x12, x12, -1 x12=00000368 x12:00000369 +75278727ns 1347236 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9a8 x6:1c00a9a7 +75278747ns 1347237 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000368 +75278826ns 1347241 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9a8 PA:1c00a9a8 +75278846ns 1347242 1c000e82 fff60613 addi x12, x12, -1 x12=00000367 x12:00000368 +75278866ns 1347243 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9a9 x6:1c00a9a8 +75278885ns 1347244 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000367 +75278965ns 1347248 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9a9 PA:1c00a9a9 +75278984ns 1347249 1c000e82 fff60613 addi x12, x12, -1 x12=00000366 x12:00000367 +75279004ns 1347250 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9aa x6:1c00a9a9 +75279024ns 1347251 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000366 +75279103ns 1347255 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9aa PA:1c00a9aa +75279123ns 1347256 1c000e82 fff60613 addi x12, x12, -1 x12=00000365 x12:00000366 +75279143ns 1347257 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9ab x6:1c00a9aa +75279162ns 1347258 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000365 +75279242ns 1347262 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9ab PA:1c00a9ab +75279261ns 1347263 1c000e82 fff60613 addi x12, x12, -1 x12=00000364 x12:00000365 +75279281ns 1347264 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9ac x6:1c00a9ab +75279301ns 1347265 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000364 +75279380ns 1347269 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9ac PA:1c00a9ac +75279400ns 1347270 1c000e82 fff60613 addi x12, x12, -1 x12=00000363 x12:00000364 +75279420ns 1347271 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9ad x6:1c00a9ac +75279440ns 1347272 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000363 +75279519ns 1347276 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9ad PA:1c00a9ad +75279539ns 1347277 1c000e82 fff60613 addi x12, x12, -1 x12=00000362 x12:00000363 +75279558ns 1347278 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9ae x6:1c00a9ad +75279578ns 1347279 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000362 +75279657ns 1347283 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9ae PA:1c00a9ae +75279677ns 1347284 1c000e82 fff60613 addi x12, x12, -1 x12=00000361 x12:00000362 +75279697ns 1347285 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9af x6:1c00a9ae +75279717ns 1347286 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000361 +75279796ns 1347290 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9af PA:1c00a9af +75279816ns 1347291 1c000e82 fff60613 addi x12, x12, -1 x12=00000360 x12:00000361 +75279835ns 1347292 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9b0 x6:1c00a9af +75279855ns 1347293 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000360 +75279934ns 1347297 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9b0 PA:1c00a9b0 +75279954ns 1347298 1c000e82 fff60613 addi x12, x12, -1 x12=0000035f x12:00000360 +75279974ns 1347299 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9b1 x6:1c00a9b0 +75279994ns 1347300 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000035f +75280073ns 1347304 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9b1 PA:1c00a9b1 +75280093ns 1347305 1c000e82 fff60613 addi x12, x12, -1 x12=0000035e x12:0000035f +75280113ns 1347306 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9b2 x6:1c00a9b1 +75280132ns 1347307 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000035e +75280211ns 1347311 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9b2 PA:1c00a9b2 +75280231ns 1347312 1c000e82 fff60613 addi x12, x12, -1 x12=0000035d x12:0000035e +75280251ns 1347313 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9b3 x6:1c00a9b2 +75280271ns 1347314 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000035d +75280350ns 1347318 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9b3 PA:1c00a9b3 +75280370ns 1347319 1c000e82 fff60613 addi x12, x12, -1 x12=0000035c x12:0000035d +75280390ns 1347320 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9b4 x6:1c00a9b3 +75280409ns 1347321 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000035c +75280489ns 1347325 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9b4 PA:1c00a9b4 +75280508ns 1347326 1c000e82 fff60613 addi x12, x12, -1 x12=0000035b x12:0000035c +75280528ns 1347327 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9b5 x6:1c00a9b4 +75280548ns 1347328 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000035b +75280627ns 1347332 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9b5 PA:1c00a9b5 +75280647ns 1347333 1c000e82 fff60613 addi x12, x12, -1 x12=0000035a x12:0000035b +75280667ns 1347334 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9b6 x6:1c00a9b5 +75280686ns 1347335 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000035a +75280766ns 1347339 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9b6 PA:1c00a9b6 +75280785ns 1347340 1c000e82 fff60613 addi x12, x12, -1 x12=00000359 x12:0000035a +75280805ns 1347341 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9b7 x6:1c00a9b6 +75280825ns 1347342 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000359 +75280904ns 1347346 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9b7 PA:1c00a9b7 +75280924ns 1347347 1c000e82 fff60613 addi x12, x12, -1 x12=00000358 x12:00000359 +75280944ns 1347348 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9b8 x6:1c00a9b7 +75280964ns 1347349 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000358 +75281043ns 1347353 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9b8 PA:1c00a9b8 +75281063ns 1347354 1c000e82 fff60613 addi x12, x12, -1 x12=00000357 x12:00000358 +75281082ns 1347355 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9b9 x6:1c00a9b8 +75281102ns 1347356 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000357 +75281181ns 1347360 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9b9 PA:1c00a9b9 +75281201ns 1347361 1c000e82 fff60613 addi x12, x12, -1 x12=00000356 x12:00000357 +75281221ns 1347362 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9ba x6:1c00a9b9 +75281241ns 1347363 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000356 +75281320ns 1347367 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9ba PA:1c00a9ba +75281340ns 1347368 1c000e82 fff60613 addi x12, x12, -1 x12=00000355 x12:00000356 +75281359ns 1347369 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9bb x6:1c00a9ba +75281379ns 1347370 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000355 +75281458ns 1347374 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9bb PA:1c00a9bb +75281478ns 1347375 1c000e82 fff60613 addi x12, x12, -1 x12=00000354 x12:00000355 +75281498ns 1347376 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9bc x6:1c00a9bb +75281518ns 1347377 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000354 +75281597ns 1347381 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9bc PA:1c00a9bc +75281617ns 1347382 1c000e82 fff60613 addi x12, x12, -1 x12=00000353 x12:00000354 +75281636ns 1347383 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9bd x6:1c00a9bc +75281656ns 1347384 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000353 +75281735ns 1347388 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9bd PA:1c00a9bd +75281755ns 1347389 1c000e82 fff60613 addi x12, x12, -1 x12=00000352 x12:00000353 +75281775ns 1347390 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9be x6:1c00a9bd +75281795ns 1347391 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000352 +75281874ns 1347395 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9be PA:1c00a9be +75281894ns 1347396 1c000e82 fff60613 addi x12, x12, -1 x12=00000351 x12:00000352 +75281914ns 1347397 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9bf x6:1c00a9be +75281933ns 1347398 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000351 +75282013ns 1347402 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9bf PA:1c00a9bf +75282032ns 1347403 1c000e82 fff60613 addi x12, x12, -1 x12=00000350 x12:00000351 +75282052ns 1347404 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9c0 x6:1c00a9bf +75282072ns 1347405 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000350 +75282151ns 1347409 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9c0 PA:1c00a9c0 +75282171ns 1347410 1c000e82 fff60613 addi x12, x12, -1 x12=0000034f x12:00000350 +75282191ns 1347411 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9c1 x6:1c00a9c0 +75282210ns 1347412 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000034f +75282290ns 1347416 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9c1 PA:1c00a9c1 +75282309ns 1347417 1c000e82 fff60613 addi x12, x12, -1 x12=0000034e x12:0000034f +75282329ns 1347418 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9c2 x6:1c00a9c1 +75282349ns 1347419 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000034e +75282428ns 1347423 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9c2 PA:1c00a9c2 +75282448ns 1347424 1c000e82 fff60613 addi x12, x12, -1 x12=0000034d x12:0000034e +75282468ns 1347425 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9c3 x6:1c00a9c2 +75282488ns 1347426 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000034d +75282567ns 1347430 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9c3 PA:1c00a9c3 +75282587ns 1347431 1c000e82 fff60613 addi x12, x12, -1 x12=0000034c x12:0000034d +75282606ns 1347432 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9c4 x6:1c00a9c3 +75282626ns 1347433 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000034c +75282705ns 1347437 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9c4 PA:1c00a9c4 +75282725ns 1347438 1c000e82 fff60613 addi x12, x12, -1 x12=0000034b x12:0000034c +75282745ns 1347439 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9c5 x6:1c00a9c4 +75282765ns 1347440 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000034b +75282844ns 1347444 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9c5 PA:1c00a9c5 +75282864ns 1347445 1c000e82 fff60613 addi x12, x12, -1 x12=0000034a x12:0000034b +75282883ns 1347446 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9c6 x6:1c00a9c5 +75282903ns 1347447 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000034a +75282982ns 1347451 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9c6 PA:1c00a9c6 +75283002ns 1347452 1c000e82 fff60613 addi x12, x12, -1 x12=00000349 x12:0000034a +75283022ns 1347453 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9c7 x6:1c00a9c6 +75283042ns 1347454 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000349 +75283121ns 1347458 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9c7 PA:1c00a9c7 +75283141ns 1347459 1c000e82 fff60613 addi x12, x12, -1 x12=00000348 x12:00000349 +75283160ns 1347460 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9c8 x6:1c00a9c7 +75283180ns 1347461 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000348 +75283259ns 1347465 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9c8 PA:1c00a9c8 +75283279ns 1347466 1c000e82 fff60613 addi x12, x12, -1 x12=00000347 x12:00000348 +75283299ns 1347467 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9c9 x6:1c00a9c8 +75283319ns 1347468 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000347 +75283398ns 1347472 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9c9 PA:1c00a9c9 +75283418ns 1347473 1c000e82 fff60613 addi x12, x12, -1 x12=00000346 x12:00000347 +75283438ns 1347474 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9ca x6:1c00a9c9 +75283457ns 1347475 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000346 +75283537ns 1347479 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9ca PA:1c00a9ca +75283556ns 1347480 1c000e82 fff60613 addi x12, x12, -1 x12=00000345 x12:00000346 +75283576ns 1347481 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9cb x6:1c00a9ca +75283596ns 1347482 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000345 +75283675ns 1347486 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9cb PA:1c00a9cb +75283695ns 1347487 1c000e82 fff60613 addi x12, x12, -1 x12=00000344 x12:00000345 +75283715ns 1347488 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9cc x6:1c00a9cb +75283734ns 1347489 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000344 +75283814ns 1347493 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9cc PA:1c00a9cc +75283833ns 1347494 1c000e82 fff60613 addi x12, x12, -1 x12=00000343 x12:00000344 +75283853ns 1347495 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9cd x6:1c00a9cc +75283873ns 1347496 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000343 +75283952ns 1347500 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9cd PA:1c00a9cd +75283972ns 1347501 1c000e82 fff60613 addi x12, x12, -1 x12=00000342 x12:00000343 +75283992ns 1347502 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9ce x6:1c00a9cd +75284012ns 1347503 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000342 +75284091ns 1347507 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9ce PA:1c00a9ce +75284110ns 1347508 1c000e82 fff60613 addi x12, x12, -1 x12=00000341 x12:00000342 +75284130ns 1347509 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9cf x6:1c00a9ce +75284150ns 1347510 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000341 +75284229ns 1347514 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9cf PA:1c00a9cf +75284249ns 1347515 1c000e82 fff60613 addi x12, x12, -1 x12=00000340 x12:00000341 +75284269ns 1347516 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9d0 x6:1c00a9cf +75284289ns 1347517 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000340 +75284368ns 1347521 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9d0 PA:1c00a9d0 +75284388ns 1347522 1c000e82 fff60613 addi x12, x12, -1 x12=0000033f x12:00000340 +75284407ns 1347523 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9d1 x6:1c00a9d0 +75284427ns 1347524 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000033f +75284506ns 1347528 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9d1 PA:1c00a9d1 +75284526ns 1347529 1c000e82 fff60613 addi x12, x12, -1 x12=0000033e x12:0000033f +75284546ns 1347530 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9d2 x6:1c00a9d1 +75284566ns 1347531 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000033e +75284645ns 1347535 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9d2 PA:1c00a9d2 +75284665ns 1347536 1c000e82 fff60613 addi x12, x12, -1 x12=0000033d x12:0000033e +75284684ns 1347537 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9d3 x6:1c00a9d2 +75284704ns 1347538 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000033d +75284783ns 1347542 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9d3 PA:1c00a9d3 +75284803ns 1347543 1c000e82 fff60613 addi x12, x12, -1 x12=0000033c x12:0000033d +75284823ns 1347544 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9d4 x6:1c00a9d3 +75284843ns 1347545 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000033c +75284922ns 1347549 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9d4 PA:1c00a9d4 +75284942ns 1347550 1c000e82 fff60613 addi x12, x12, -1 x12=0000033b x12:0000033c +75284962ns 1347551 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9d5 x6:1c00a9d4 +75284981ns 1347552 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000033b +75285061ns 1347556 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9d5 PA:1c00a9d5 +75285080ns 1347557 1c000e82 fff60613 addi x12, x12, -1 x12=0000033a x12:0000033b +75285100ns 1347558 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9d6 x6:1c00a9d5 +75285120ns 1347559 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000033a +75285199ns 1347563 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9d6 PA:1c00a9d6 +75285219ns 1347564 1c000e82 fff60613 addi x12, x12, -1 x12=00000339 x12:0000033a +75285239ns 1347565 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9d7 x6:1c00a9d6 +75285258ns 1347566 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000339 +75285338ns 1347570 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9d7 PA:1c00a9d7 +75285357ns 1347571 1c000e82 fff60613 addi x12, x12, -1 x12=00000338 x12:00000339 +75285377ns 1347572 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9d8 x6:1c00a9d7 +75285397ns 1347573 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000338 +75285476ns 1347577 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9d8 PA:1c00a9d8 +75285496ns 1347578 1c000e82 fff60613 addi x12, x12, -1 x12=00000337 x12:00000338 +75285516ns 1347579 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9d9 x6:1c00a9d8 +75285536ns 1347580 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000337 +75285615ns 1347584 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9d9 PA:1c00a9d9 +75285634ns 1347585 1c000e82 fff60613 addi x12, x12, -1 x12=00000336 x12:00000337 +75285654ns 1347586 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9da x6:1c00a9d9 +75285674ns 1347587 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000336 +75285753ns 1347591 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9da PA:1c00a9da +75285773ns 1347592 1c000e82 fff60613 addi x12, x12, -1 x12=00000335 x12:00000336 +75285793ns 1347593 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9db x6:1c00a9da +75285813ns 1347594 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000335 +75285892ns 1347598 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9db PA:1c00a9db +75285912ns 1347599 1c000e82 fff60613 addi x12, x12, -1 x12=00000334 x12:00000335 +75285931ns 1347600 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9dc x6:1c00a9db +75285951ns 1347601 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000334 +75286030ns 1347605 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9dc PA:1c00a9dc +75286050ns 1347606 1c000e82 fff60613 addi x12, x12, -1 x12=00000333 x12:00000334 +75286070ns 1347607 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9dd x6:1c00a9dc +75286090ns 1347608 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000333 +75286169ns 1347612 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9dd PA:1c00a9dd +75286189ns 1347613 1c000e82 fff60613 addi x12, x12, -1 x12=00000332 x12:00000333 +75286208ns 1347614 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9de x6:1c00a9dd +75286228ns 1347615 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000332 +75286307ns 1347619 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9de PA:1c00a9de +75286327ns 1347620 1c000e82 fff60613 addi x12, x12, -1 x12=00000331 x12:00000332 +75286347ns 1347621 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9df x6:1c00a9de +75286367ns 1347622 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000331 +75286446ns 1347626 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9df PA:1c00a9df +75286466ns 1347627 1c000e82 fff60613 addi x12, x12, -1 x12=00000330 x12:00000331 +75286486ns 1347628 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9e0 x6:1c00a9df +75286505ns 1347629 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000330 +75286584ns 1347633 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9e0 PA:1c00a9e0 +75286604ns 1347634 1c000e82 fff60613 addi x12, x12, -1 x12=0000032f x12:00000330 +75286624ns 1347635 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9e1 x6:1c00a9e0 +75286644ns 1347636 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000032f +75286723ns 1347640 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9e1 PA:1c00a9e1 +75286743ns 1347641 1c000e82 fff60613 addi x12, x12, -1 x12=0000032e x12:0000032f +75286763ns 1347642 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9e2 x6:1c00a9e1 +75286782ns 1347643 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000032e +75286862ns 1347647 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9e2 PA:1c00a9e2 +75286881ns 1347648 1c000e82 fff60613 addi x12, x12, -1 x12=0000032d x12:0000032e +75286901ns 1347649 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9e3 x6:1c00a9e2 +75286921ns 1347650 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000032d +75287000ns 1347654 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9e3 PA:1c00a9e3 +75287020ns 1347655 1c000e82 fff60613 addi x12, x12, -1 x12=0000032c x12:0000032d +75287040ns 1347656 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9e4 x6:1c00a9e3 +75287059ns 1347657 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000032c +75287139ns 1347661 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9e4 PA:1c00a9e4 +75287158ns 1347662 1c000e82 fff60613 addi x12, x12, -1 x12=0000032b x12:0000032c +75287178ns 1347663 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9e5 x6:1c00a9e4 +75287198ns 1347664 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000032b +75287277ns 1347668 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9e5 PA:1c00a9e5 +75287297ns 1347669 1c000e82 fff60613 addi x12, x12, -1 x12=0000032a x12:0000032b +75287317ns 1347670 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9e6 x6:1c00a9e5 +75287337ns 1347671 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000032a +75287416ns 1347675 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9e6 PA:1c00a9e6 +75287436ns 1347676 1c000e82 fff60613 addi x12, x12, -1 x12=00000329 x12:0000032a +75287455ns 1347677 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9e7 x6:1c00a9e6 +75287475ns 1347678 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000329 +75287554ns 1347682 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9e7 PA:1c00a9e7 +75287574ns 1347683 1c000e82 fff60613 addi x12, x12, -1 x12=00000328 x12:00000329 +75287594ns 1347684 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9e8 x6:1c00a9e7 +75287614ns 1347685 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000328 +75287693ns 1347689 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9e8 PA:1c00a9e8 +75287713ns 1347690 1c000e82 fff60613 addi x12, x12, -1 x12=00000327 x12:00000328 +75287732ns 1347691 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9e9 x6:1c00a9e8 +75287752ns 1347692 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000327 +75287831ns 1347696 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9e9 PA:1c00a9e9 +75287851ns 1347697 1c000e82 fff60613 addi x12, x12, -1 x12=00000326 x12:00000327 +75287871ns 1347698 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9ea x6:1c00a9e9 +75287891ns 1347699 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000326 +75287970ns 1347703 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9ea PA:1c00a9ea +75287990ns 1347704 1c000e82 fff60613 addi x12, x12, -1 x12=00000325 x12:00000326 +75288010ns 1347705 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9eb x6:1c00a9ea +75288029ns 1347706 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000325 +75288108ns 1347710 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9eb PA:1c00a9eb +75288128ns 1347711 1c000e82 fff60613 addi x12, x12, -1 x12=00000324 x12:00000325 +75288148ns 1347712 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9ec x6:1c00a9eb +75288168ns 1347713 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000324 +75288247ns 1347717 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9ec PA:1c00a9ec +75288267ns 1347718 1c000e82 fff60613 addi x12, x12, -1 x12=00000323 x12:00000324 +75288287ns 1347719 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9ed x6:1c00a9ec +75288306ns 1347720 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000323 +75288386ns 1347724 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9ed PA:1c00a9ed +75288405ns 1347725 1c000e82 fff60613 addi x12, x12, -1 x12=00000322 x12:00000323 +75288425ns 1347726 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9ee x6:1c00a9ed +75288445ns 1347727 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000322 +75288524ns 1347731 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9ee PA:1c00a9ee +75288544ns 1347732 1c000e82 fff60613 addi x12, x12, -1 x12=00000321 x12:00000322 +75288564ns 1347733 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9ef x6:1c00a9ee +75288583ns 1347734 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000321 +75288663ns 1347738 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9ef PA:1c00a9ef +75288682ns 1347739 1c000e82 fff60613 addi x12, x12, -1 x12=00000320 x12:00000321 +75288702ns 1347740 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9f0 x6:1c00a9ef +75288722ns 1347741 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000320 +75288801ns 1347745 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9f0 PA:1c00a9f0 +75288821ns 1347746 1c000e82 fff60613 addi x12, x12, -1 x12=0000031f x12:00000320 +75288841ns 1347747 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9f1 x6:1c00a9f0 +75288861ns 1347748 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000031f +75288940ns 1347752 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9f1 PA:1c00a9f1 +75288960ns 1347753 1c000e82 fff60613 addi x12, x12, -1 x12=0000031e x12:0000031f +75288979ns 1347754 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9f2 x6:1c00a9f1 +75288999ns 1347755 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000031e +75289078ns 1347759 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9f2 PA:1c00a9f2 +75289098ns 1347760 1c000e82 fff60613 addi x12, x12, -1 x12=0000031d x12:0000031e +75289118ns 1347761 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9f3 x6:1c00a9f2 +75289138ns 1347762 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000031d +75289217ns 1347766 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9f3 PA:1c00a9f3 +75289237ns 1347767 1c000e82 fff60613 addi x12, x12, -1 x12=0000031c x12:0000031d +75289256ns 1347768 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9f4 x6:1c00a9f3 +75289276ns 1347769 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000031c +75289355ns 1347773 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9f4 PA:1c00a9f4 +75289375ns 1347774 1c000e82 fff60613 addi x12, x12, -1 x12=0000031b x12:0000031c +75289395ns 1347775 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9f5 x6:1c00a9f4 +75289415ns 1347776 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000031b +75289494ns 1347780 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9f5 PA:1c00a9f5 +75289514ns 1347781 1c000e82 fff60613 addi x12, x12, -1 x12=0000031a x12:0000031b +75289533ns 1347782 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9f6 x6:1c00a9f5 +75289553ns 1347783 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000031a +75289632ns 1347787 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9f6 PA:1c00a9f6 +75289652ns 1347788 1c000e82 fff60613 addi x12, x12, -1 x12=00000319 x12:0000031a +75289672ns 1347789 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9f7 x6:1c00a9f6 +75289692ns 1347790 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000319 +75289771ns 1347794 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9f7 PA:1c00a9f7 +75289791ns 1347795 1c000e82 fff60613 addi x12, x12, -1 x12=00000318 x12:00000319 +75289811ns 1347796 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9f8 x6:1c00a9f7 +75289830ns 1347797 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000318 +75289910ns 1347801 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9f8 PA:1c00a9f8 +75289929ns 1347802 1c000e82 fff60613 addi x12, x12, -1 x12=00000317 x12:00000318 +75289949ns 1347803 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9f9 x6:1c00a9f8 +75289969ns 1347804 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000317 +75290048ns 1347808 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9f9 PA:1c00a9f9 +75290068ns 1347809 1c000e82 fff60613 addi x12, x12, -1 x12=00000316 x12:00000317 +75290088ns 1347810 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9fa x6:1c00a9f9 +75290107ns 1347811 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000316 +75290187ns 1347815 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9fa PA:1c00a9fa +75290206ns 1347816 1c000e82 fff60613 addi x12, x12, -1 x12=00000315 x12:00000316 +75290226ns 1347817 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9fb x6:1c00a9fa +75290246ns 1347818 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000315 +75290325ns 1347822 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9fb PA:1c00a9fb +75290345ns 1347823 1c000e82 fff60613 addi x12, x12, -1 x12=00000314 x12:00000315 +75290365ns 1347824 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9fc x6:1c00a9fb +75290385ns 1347825 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000314 +75290464ns 1347829 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9fc PA:1c00a9fc +75290484ns 1347830 1c000e82 fff60613 addi x12, x12, -1 x12=00000313 x12:00000314 +75290503ns 1347831 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9fd x6:1c00a9fc +75290523ns 1347832 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000313 +75290602ns 1347836 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9fd PA:1c00a9fd +75290622ns 1347837 1c000e82 fff60613 addi x12, x12, -1 x12=00000312 x12:00000313 +75290642ns 1347838 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9fe x6:1c00a9fd +75290662ns 1347839 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000312 +75290741ns 1347843 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9fe PA:1c00a9fe +75290761ns 1347844 1c000e82 fff60613 addi x12, x12, -1 x12=00000311 x12:00000312 +75290780ns 1347845 1c000e84 00130313 addi x6, x6, 1 x6=1c00a9ff x6:1c00a9fe +75290800ns 1347846 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000311 +75290879ns 1347850 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00a9ff PA:1c00a9ff +75290899ns 1347851 1c000e82 fff60613 addi x12, x12, -1 x12=00000310 x12:00000311 +75290919ns 1347852 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa00 x6:1c00a9ff +75290939ns 1347853 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000310 +75291018ns 1347857 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa00 PA:1c00aa00 +75291038ns 1347858 1c000e82 fff60613 addi x12, x12, -1 x12=0000030f x12:00000310 +75291057ns 1347859 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa01 x6:1c00aa00 +75291077ns 1347860 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000030f +75291156ns 1347864 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa01 PA:1c00aa01 +75291176ns 1347865 1c000e82 fff60613 addi x12, x12, -1 x12=0000030e x12:0000030f +75291196ns 1347866 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa02 x6:1c00aa01 +75291216ns 1347867 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000030e +75291295ns 1347871 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa02 PA:1c00aa02 +75291315ns 1347872 1c000e82 fff60613 addi x12, x12, -1 x12=0000030d x12:0000030e +75291335ns 1347873 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa03 x6:1c00aa02 +75291354ns 1347874 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000030d +75291434ns 1347878 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa03 PA:1c00aa03 +75291453ns 1347879 1c000e82 fff60613 addi x12, x12, -1 x12=0000030c x12:0000030d +75291473ns 1347880 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa04 x6:1c00aa03 +75291493ns 1347881 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000030c +75291572ns 1347885 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa04 PA:1c00aa04 +75291592ns 1347886 1c000e82 fff60613 addi x12, x12, -1 x12=0000030b x12:0000030c +75291612ns 1347887 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa05 x6:1c00aa04 +75291631ns 1347888 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000030b +75291711ns 1347892 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa05 PA:1c00aa05 +75291730ns 1347893 1c000e82 fff60613 addi x12, x12, -1 x12=0000030a x12:0000030b +75291750ns 1347894 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa06 x6:1c00aa05 +75291770ns 1347895 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000030a +75291849ns 1347899 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa06 PA:1c00aa06 +75291869ns 1347900 1c000e82 fff60613 addi x12, x12, -1 x12=00000309 x12:0000030a +75291889ns 1347901 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa07 x6:1c00aa06 +75291909ns 1347902 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000309 +75291988ns 1347906 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa07 PA:1c00aa07 +75292007ns 1347907 1c000e82 fff60613 addi x12, x12, -1 x12=00000308 x12:00000309 +75292027ns 1347908 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa08 x6:1c00aa07 +75292047ns 1347909 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000308 +75292126ns 1347913 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa08 PA:1c00aa08 +75292146ns 1347914 1c000e82 fff60613 addi x12, x12, -1 x12=00000307 x12:00000308 +75292166ns 1347915 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa09 x6:1c00aa08 +75292186ns 1347916 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000307 +75292265ns 1347920 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa09 PA:1c00aa09 +75292285ns 1347921 1c000e82 fff60613 addi x12, x12, -1 x12=00000306 x12:00000307 +75292304ns 1347922 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa0a x6:1c00aa09 +75292324ns 1347923 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000306 +75292403ns 1347927 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa0a PA:1c00aa0a +75292423ns 1347928 1c000e82 fff60613 addi x12, x12, -1 x12=00000305 x12:00000306 +75292443ns 1347929 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa0b x6:1c00aa0a +75292463ns 1347930 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000305 +75292542ns 1347934 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa0b PA:1c00aa0b +75292562ns 1347935 1c000e82 fff60613 addi x12, x12, -1 x12=00000304 x12:00000305 +75292581ns 1347936 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa0c x6:1c00aa0b +75292601ns 1347937 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000304 +75292680ns 1347941 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa0c PA:1c00aa0c +75292700ns 1347942 1c000e82 fff60613 addi x12, x12, -1 x12=00000303 x12:00000304 +75292720ns 1347943 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa0d x6:1c00aa0c +75292740ns 1347944 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000303 +75292819ns 1347948 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa0d PA:1c00aa0d +75292839ns 1347949 1c000e82 fff60613 addi x12, x12, -1 x12=00000302 x12:00000303 +75292859ns 1347950 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa0e x6:1c00aa0d +75292878ns 1347951 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000302 +75292958ns 1347955 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa0e PA:1c00aa0e +75292977ns 1347956 1c000e82 fff60613 addi x12, x12, -1 x12=00000301 x12:00000302 +75292997ns 1347957 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa0f x6:1c00aa0e +75293017ns 1347958 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000301 +75293096ns 1347962 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa0f PA:1c00aa0f +75293116ns 1347963 1c000e82 fff60613 addi x12, x12, -1 x12=00000300 x12:00000301 +75293136ns 1347964 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa10 x6:1c00aa0f +75293155ns 1347965 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000300 +75293235ns 1347969 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa10 PA:1c00aa10 +75293254ns 1347970 1c000e82 fff60613 addi x12, x12, -1 x12=000002ff x12:00000300 +75293274ns 1347971 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa11 x6:1c00aa10 +75293294ns 1347972 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ff +75293373ns 1347976 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa11 PA:1c00aa11 +75293393ns 1347977 1c000e82 fff60613 addi x12, x12, -1 x12=000002fe x12:000002ff +75293413ns 1347978 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa12 x6:1c00aa11 +75293433ns 1347979 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002fe +75293512ns 1347983 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa12 PA:1c00aa12 +75293531ns 1347984 1c000e82 fff60613 addi x12, x12, -1 x12=000002fd x12:000002fe +75293551ns 1347985 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa13 x6:1c00aa12 +75293571ns 1347986 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002fd +75293650ns 1347990 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa13 PA:1c00aa13 +75293670ns 1347991 1c000e82 fff60613 addi x12, x12, -1 x12=000002fc x12:000002fd +75293690ns 1347992 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa14 x6:1c00aa13 +75293710ns 1347993 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002fc +75293789ns 1347997 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa14 PA:1c00aa14 +75293809ns 1347998 1c000e82 fff60613 addi x12, x12, -1 x12=000002fb x12:000002fc +75293828ns 1347999 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa15 x6:1c00aa14 +75293848ns 1348000 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002fb +75293927ns 1348004 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa15 PA:1c00aa15 +75293947ns 1348005 1c000e82 fff60613 addi x12, x12, -1 x12=000002fa x12:000002fb +75293967ns 1348006 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa16 x6:1c00aa15 +75293987ns 1348007 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002fa +75294066ns 1348011 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa16 PA:1c00aa16 +75294086ns 1348012 1c000e82 fff60613 addi x12, x12, -1 x12=000002f9 x12:000002fa +75294105ns 1348013 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa17 x6:1c00aa16 +75294125ns 1348014 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002f9 +75294204ns 1348018 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa17 PA:1c00aa17 +75294224ns 1348019 1c000e82 fff60613 addi x12, x12, -1 x12=000002f8 x12:000002f9 +75294244ns 1348020 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa18 x6:1c00aa17 +75294264ns 1348021 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002f8 +75294343ns 1348025 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa18 PA:1c00aa18 +75294363ns 1348026 1c000e82 fff60613 addi x12, x12, -1 x12=000002f7 x12:000002f8 +75294383ns 1348027 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa19 x6:1c00aa18 +75294402ns 1348028 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002f7 +75294481ns 1348032 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa19 PA:1c00aa19 +75294501ns 1348033 1c000e82 fff60613 addi x12, x12, -1 x12=000002f6 x12:000002f7 +75294521ns 1348034 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa1a x6:1c00aa19 +75294541ns 1348035 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002f6 +75294620ns 1348039 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa1a PA:1c00aa1a +75294640ns 1348040 1c000e82 fff60613 addi x12, x12, -1 x12=000002f5 x12:000002f6 +75294660ns 1348041 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa1b x6:1c00aa1a +75294679ns 1348042 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002f5 +75294759ns 1348046 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa1b PA:1c00aa1b +75294778ns 1348047 1c000e82 fff60613 addi x12, x12, -1 x12=000002f4 x12:000002f5 +75294798ns 1348048 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa1c x6:1c00aa1b +75294818ns 1348049 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002f4 +75294897ns 1348053 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa1c PA:1c00aa1c +75294917ns 1348054 1c000e82 fff60613 addi x12, x12, -1 x12=000002f3 x12:000002f4 +75294937ns 1348055 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa1d x6:1c00aa1c +75294957ns 1348056 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002f3 +75295036ns 1348060 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa1d PA:1c00aa1d +75295055ns 1348061 1c000e82 fff60613 addi x12, x12, -1 x12=000002f2 x12:000002f3 +75295075ns 1348062 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa1e x6:1c00aa1d +75295095ns 1348063 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002f2 +75295174ns 1348067 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa1e PA:1c00aa1e +75295194ns 1348068 1c000e82 fff60613 addi x12, x12, -1 x12=000002f1 x12:000002f2 +75295214ns 1348069 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa1f x6:1c00aa1e +75295234ns 1348070 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002f1 +75295313ns 1348074 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa1f PA:1c00aa1f +75295333ns 1348075 1c000e82 fff60613 addi x12, x12, -1 x12=000002f0 x12:000002f1 +75295352ns 1348076 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa20 x6:1c00aa1f +75295372ns 1348077 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002f0 +75295451ns 1348081 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa20 PA:1c00aa20 +75295471ns 1348082 1c000e82 fff60613 addi x12, x12, -1 x12=000002ef x12:000002f0 +75295491ns 1348083 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa21 x6:1c00aa20 +75295511ns 1348084 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ef +75295590ns 1348088 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa21 PA:1c00aa21 +75295610ns 1348089 1c000e82 fff60613 addi x12, x12, -1 x12=000002ee x12:000002ef +75295629ns 1348090 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa22 x6:1c00aa21 +75295649ns 1348091 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ee +75295728ns 1348095 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa22 PA:1c00aa22 +75295748ns 1348096 1c000e82 fff60613 addi x12, x12, -1 x12=000002ed x12:000002ee +75295768ns 1348097 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa23 x6:1c00aa22 +75295788ns 1348098 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ed +75295867ns 1348102 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa23 PA:1c00aa23 +75295887ns 1348103 1c000e82 fff60613 addi x12, x12, -1 x12=000002ec x12:000002ed +75295907ns 1348104 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa24 x6:1c00aa23 +75295926ns 1348105 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ec +75296005ns 1348109 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa24 PA:1c00aa24 +75296025ns 1348110 1c000e82 fff60613 addi x12, x12, -1 x12=000002eb x12:000002ec +75296045ns 1348111 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa25 x6:1c00aa24 +75296065ns 1348112 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002eb +75296144ns 1348116 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa25 PA:1c00aa25 +75296164ns 1348117 1c000e82 fff60613 addi x12, x12, -1 x12=000002ea x12:000002eb +75296184ns 1348118 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa26 x6:1c00aa25 +75296203ns 1348119 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ea +75296283ns 1348123 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa26 PA:1c00aa26 +75296302ns 1348124 1c000e82 fff60613 addi x12, x12, -1 x12=000002e9 x12:000002ea +75296322ns 1348125 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa27 x6:1c00aa26 +75296342ns 1348126 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002e9 +75296421ns 1348130 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa27 PA:1c00aa27 +75296441ns 1348131 1c000e82 fff60613 addi x12, x12, -1 x12=000002e8 x12:000002e9 +75296461ns 1348132 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa28 x6:1c00aa27 +75296480ns 1348133 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002e8 +75296560ns 1348137 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa28 PA:1c00aa28 +75296579ns 1348138 1c000e82 fff60613 addi x12, x12, -1 x12=000002e7 x12:000002e8 +75296599ns 1348139 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa29 x6:1c00aa28 +75296619ns 1348140 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002e7 +75296698ns 1348144 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa29 PA:1c00aa29 +75296718ns 1348145 1c000e82 fff60613 addi x12, x12, -1 x12=000002e6 x12:000002e7 +75296738ns 1348146 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa2a x6:1c00aa29 +75296758ns 1348147 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002e6 +75296837ns 1348151 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa2a PA:1c00aa2a +75296857ns 1348152 1c000e82 fff60613 addi x12, x12, -1 x12=000002e5 x12:000002e6 +75296876ns 1348153 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa2b x6:1c00aa2a +75296896ns 1348154 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002e5 +75296975ns 1348158 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa2b PA:1c00aa2b +75296995ns 1348159 1c000e82 fff60613 addi x12, x12, -1 x12=000002e4 x12:000002e5 +75297015ns 1348160 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa2c x6:1c00aa2b +75297035ns 1348161 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002e4 +75297114ns 1348165 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa2c PA:1c00aa2c +75297134ns 1348166 1c000e82 fff60613 addi x12, x12, -1 x12=000002e3 x12:000002e4 +75297153ns 1348167 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa2d x6:1c00aa2c +75297173ns 1348168 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002e3 +75297252ns 1348172 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa2d PA:1c00aa2d +75297272ns 1348173 1c000e82 fff60613 addi x12, x12, -1 x12=000002e2 x12:000002e3 +75297292ns 1348174 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa2e x6:1c00aa2d +75297312ns 1348175 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002e2 +75297391ns 1348179 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa2e PA:1c00aa2e +75297411ns 1348180 1c000e82 fff60613 addi x12, x12, -1 x12=000002e1 x12:000002e2 +75297431ns 1348181 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa2f x6:1c00aa2e +75297450ns 1348182 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002e1 +75297529ns 1348186 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa2f PA:1c00aa2f +75297549ns 1348187 1c000e82 fff60613 addi x12, x12, -1 x12=000002e0 x12:000002e1 +75297569ns 1348188 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa30 x6:1c00aa2f +75297589ns 1348189 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002e0 +75297668ns 1348193 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa30 PA:1c00aa30 +75297688ns 1348194 1c000e82 fff60613 addi x12, x12, -1 x12=000002df x12:000002e0 +75297708ns 1348195 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa31 x6:1c00aa30 +75297727ns 1348196 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002df +75297807ns 1348200 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa31 PA:1c00aa31 +75297826ns 1348201 1c000e82 fff60613 addi x12, x12, -1 x12=000002de x12:000002df +75297846ns 1348202 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa32 x6:1c00aa31 +75297866ns 1348203 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002de +75297945ns 1348207 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa32 PA:1c00aa32 +75297965ns 1348208 1c000e82 fff60613 addi x12, x12, -1 x12=000002dd x12:000002de +75297985ns 1348209 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa33 x6:1c00aa32 +75298004ns 1348210 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002dd +75298084ns 1348214 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa33 PA:1c00aa33 +75298103ns 1348215 1c000e82 fff60613 addi x12, x12, -1 x12=000002dc x12:000002dd +75298123ns 1348216 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa34 x6:1c00aa33 +75298143ns 1348217 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002dc +75298222ns 1348221 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa34 PA:1c00aa34 +75298242ns 1348222 1c000e82 fff60613 addi x12, x12, -1 x12=000002db x12:000002dc +75298262ns 1348223 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa35 x6:1c00aa34 +75298282ns 1348224 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002db +75298361ns 1348228 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa35 PA:1c00aa35 +75298381ns 1348229 1c000e82 fff60613 addi x12, x12, -1 x12=000002da x12:000002db +75298400ns 1348230 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa36 x6:1c00aa35 +75298420ns 1348231 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002da +75298499ns 1348235 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa36 PA:1c00aa36 +75298519ns 1348236 1c000e82 fff60613 addi x12, x12, -1 x12=000002d9 x12:000002da +75298539ns 1348237 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa37 x6:1c00aa36 +75298559ns 1348238 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002d9 +75298638ns 1348242 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa37 PA:1c00aa37 +75298658ns 1348243 1c000e82 fff60613 addi x12, x12, -1 x12=000002d8 x12:000002d9 +75298677ns 1348244 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa38 x6:1c00aa37 +75298697ns 1348245 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002d8 +75298776ns 1348249 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa38 PA:1c00aa38 +75298796ns 1348250 1c000e82 fff60613 addi x12, x12, -1 x12=000002d7 x12:000002d8 +75298816ns 1348251 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa39 x6:1c00aa38 +75298836ns 1348252 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002d7 +75298915ns 1348256 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa39 PA:1c00aa39 +75298935ns 1348257 1c000e82 fff60613 addi x12, x12, -1 x12=000002d6 x12:000002d7 +75298954ns 1348258 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa3a x6:1c00aa39 +75298974ns 1348259 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002d6 +75299053ns 1348263 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa3a PA:1c00aa3a +75299073ns 1348264 1c000e82 fff60613 addi x12, x12, -1 x12=000002d5 x12:000002d6 +75299093ns 1348265 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa3b x6:1c00aa3a +75299113ns 1348266 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002d5 +75299192ns 1348270 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa3b PA:1c00aa3b +75299212ns 1348271 1c000e82 fff60613 addi x12, x12, -1 x12=000002d4 x12:000002d5 +75299232ns 1348272 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa3c x6:1c00aa3b +75299251ns 1348273 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002d4 +75299331ns 1348277 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa3c PA:1c00aa3c +75299350ns 1348278 1c000e82 fff60613 addi x12, x12, -1 x12=000002d3 x12:000002d4 +75299370ns 1348279 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa3d x6:1c00aa3c +75299390ns 1348280 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002d3 +75299469ns 1348284 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa3d PA:1c00aa3d +75299489ns 1348285 1c000e82 fff60613 addi x12, x12, -1 x12=000002d2 x12:000002d3 +75299509ns 1348286 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa3e x6:1c00aa3d +75299528ns 1348287 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002d2 +75299608ns 1348291 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa3e PA:1c00aa3e +75299627ns 1348292 1c000e82 fff60613 addi x12, x12, -1 x12=000002d1 x12:000002d2 +75299647ns 1348293 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa3f x6:1c00aa3e +75299667ns 1348294 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002d1 +75299746ns 1348298 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa3f PA:1c00aa3f +75299766ns 1348299 1c000e82 fff60613 addi x12, x12, -1 x12=000002d0 x12:000002d1 +75299786ns 1348300 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa40 x6:1c00aa3f +75299806ns 1348301 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002d0 +75299885ns 1348305 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa40 PA:1c00aa40 +75299905ns 1348306 1c000e82 fff60613 addi x12, x12, -1 x12=000002cf x12:000002d0 +75299924ns 1348307 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa41 x6:1c00aa40 +75299944ns 1348308 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002cf +75300023ns 1348312 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa41 PA:1c00aa41 +75300043ns 1348313 1c000e82 fff60613 addi x12, x12, -1 x12=000002ce x12:000002cf +75300063ns 1348314 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa42 x6:1c00aa41 +75300083ns 1348315 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ce +75300162ns 1348319 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa42 PA:1c00aa42 +75300182ns 1348320 1c000e82 fff60613 addi x12, x12, -1 x12=000002cd x12:000002ce +75300201ns 1348321 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa43 x6:1c00aa42 +75300221ns 1348322 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002cd +75300300ns 1348326 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa43 PA:1c00aa43 +75300320ns 1348327 1c000e82 fff60613 addi x12, x12, -1 x12=000002cc x12:000002cd +75300340ns 1348328 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa44 x6:1c00aa43 +75300360ns 1348329 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002cc +75300439ns 1348333 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa44 PA:1c00aa44 +75300459ns 1348334 1c000e82 fff60613 addi x12, x12, -1 x12=000002cb x12:000002cc +75300478ns 1348335 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa45 x6:1c00aa44 +75300498ns 1348336 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002cb +75300577ns 1348340 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa45 PA:1c00aa45 +75300597ns 1348341 1c000e82 fff60613 addi x12, x12, -1 x12=000002ca x12:000002cb +75300617ns 1348342 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa46 x6:1c00aa45 +75300637ns 1348343 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ca +75300716ns 1348347 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa46 PA:1c00aa46 +75300736ns 1348348 1c000e82 fff60613 addi x12, x12, -1 x12=000002c9 x12:000002ca +75300756ns 1348349 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa47 x6:1c00aa46 +75300775ns 1348350 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002c9 +75300855ns 1348354 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa47 PA:1c00aa47 +75300874ns 1348355 1c000e82 fff60613 addi x12, x12, -1 x12=000002c8 x12:000002c9 +75300894ns 1348356 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa48 x6:1c00aa47 +75300914ns 1348357 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002c8 +75300993ns 1348361 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa48 PA:1c00aa48 +75301013ns 1348362 1c000e82 fff60613 addi x12, x12, -1 x12=000002c7 x12:000002c8 +75301033ns 1348363 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa49 x6:1c00aa48 +75301052ns 1348364 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002c7 +75301132ns 1348368 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa49 PA:1c00aa49 +75301151ns 1348369 1c000e82 fff60613 addi x12, x12, -1 x12=000002c6 x12:000002c7 +75301171ns 1348370 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa4a x6:1c00aa49 +75301191ns 1348371 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002c6 +75301270ns 1348375 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa4a PA:1c00aa4a +75301290ns 1348376 1c000e82 fff60613 addi x12, x12, -1 x12=000002c5 x12:000002c6 +75301310ns 1348377 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa4b x6:1c00aa4a +75301330ns 1348378 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002c5 +75301409ns 1348382 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa4b PA:1c00aa4b +75301428ns 1348383 1c000e82 fff60613 addi x12, x12, -1 x12=000002c4 x12:000002c5 +75301448ns 1348384 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa4c x6:1c00aa4b +75301468ns 1348385 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002c4 +75301547ns 1348389 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa4c PA:1c00aa4c +75301567ns 1348390 1c000e82 fff60613 addi x12, x12, -1 x12=000002c3 x12:000002c4 +75301587ns 1348391 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa4d x6:1c00aa4c +75301607ns 1348392 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002c3 +75301686ns 1348396 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa4d PA:1c00aa4d +75301706ns 1348397 1c000e82 fff60613 addi x12, x12, -1 x12=000002c2 x12:000002c3 +75301725ns 1348398 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa4e x6:1c00aa4d +75301745ns 1348399 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002c2 +75301824ns 1348403 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa4e PA:1c00aa4e +75301844ns 1348404 1c000e82 fff60613 addi x12, x12, -1 x12=000002c1 x12:000002c2 +75301864ns 1348405 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa4f x6:1c00aa4e +75301884ns 1348406 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002c1 +75301963ns 1348410 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa4f PA:1c00aa4f +75301983ns 1348411 1c000e82 fff60613 addi x12, x12, -1 x12=000002c0 x12:000002c1 +75302002ns 1348412 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa50 x6:1c00aa4f +75302022ns 1348413 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002c0 +75302101ns 1348417 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa50 PA:1c00aa50 +75302121ns 1348418 1c000e82 fff60613 addi x12, x12, -1 x12=000002bf x12:000002c0 +75302141ns 1348419 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa51 x6:1c00aa50 +75302161ns 1348420 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002bf +75302240ns 1348424 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa51 PA:1c00aa51 +75302260ns 1348425 1c000e82 fff60613 addi x12, x12, -1 x12=000002be x12:000002bf +75302280ns 1348426 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa52 x6:1c00aa51 +75302299ns 1348427 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002be +75302379ns 1348431 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa52 PA:1c00aa52 +75302398ns 1348432 1c000e82 fff60613 addi x12, x12, -1 x12=000002bd x12:000002be +75302418ns 1348433 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa53 x6:1c00aa52 +75302438ns 1348434 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002bd +75302517ns 1348438 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa53 PA:1c00aa53 +75302537ns 1348439 1c000e82 fff60613 addi x12, x12, -1 x12=000002bc x12:000002bd +75302557ns 1348440 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa54 x6:1c00aa53 +75302576ns 1348441 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002bc +75302656ns 1348445 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa54 PA:1c00aa54 +75302675ns 1348446 1c000e82 fff60613 addi x12, x12, -1 x12=000002bb x12:000002bc +75302695ns 1348447 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa55 x6:1c00aa54 +75302715ns 1348448 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002bb +75302794ns 1348452 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa55 PA:1c00aa55 +75302814ns 1348453 1c000e82 fff60613 addi x12, x12, -1 x12=000002ba x12:000002bb +75302834ns 1348454 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa56 x6:1c00aa55 +75302854ns 1348455 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ba +75302933ns 1348459 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa56 PA:1c00aa56 +75302952ns 1348460 1c000e82 fff60613 addi x12, x12, -1 x12=000002b9 x12:000002ba +75302972ns 1348461 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa57 x6:1c00aa56 +75302992ns 1348462 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002b9 +75303071ns 1348466 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa57 PA:1c00aa57 +75303091ns 1348467 1c000e82 fff60613 addi x12, x12, -1 x12=000002b8 x12:000002b9 +75303111ns 1348468 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa58 x6:1c00aa57 +75303131ns 1348469 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002b8 +75303210ns 1348473 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa58 PA:1c00aa58 +75303230ns 1348474 1c000e82 fff60613 addi x12, x12, -1 x12=000002b7 x12:000002b8 +75303249ns 1348475 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa59 x6:1c00aa58 +75303269ns 1348476 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002b7 +75303348ns 1348480 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa59 PA:1c00aa59 +75303368ns 1348481 1c000e82 fff60613 addi x12, x12, -1 x12=000002b6 x12:000002b7 +75303388ns 1348482 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa5a x6:1c00aa59 +75303408ns 1348483 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002b6 +75303487ns 1348487 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa5a PA:1c00aa5a +75303507ns 1348488 1c000e82 fff60613 addi x12, x12, -1 x12=000002b5 x12:000002b6 +75303526ns 1348489 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa5b x6:1c00aa5a +75303546ns 1348490 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002b5 +75303625ns 1348494 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa5b PA:1c00aa5b +75303645ns 1348495 1c000e82 fff60613 addi x12, x12, -1 x12=000002b4 x12:000002b5 +75303665ns 1348496 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa5c x6:1c00aa5b +75303685ns 1348497 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002b4 +75303764ns 1348501 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa5c PA:1c00aa5c +75303784ns 1348502 1c000e82 fff60613 addi x12, x12, -1 x12=000002b3 x12:000002b4 +75303804ns 1348503 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa5d x6:1c00aa5c +75303823ns 1348504 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002b3 +75303902ns 1348508 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa5d PA:1c00aa5d +75303922ns 1348509 1c000e82 fff60613 addi x12, x12, -1 x12=000002b2 x12:000002b3 +75303942ns 1348510 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa5e x6:1c00aa5d +75303962ns 1348511 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002b2 +75304041ns 1348515 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa5e PA:1c00aa5e +75304061ns 1348516 1c000e82 fff60613 addi x12, x12, -1 x12=000002b1 x12:000002b2 +75304081ns 1348517 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa5f x6:1c00aa5e +75304100ns 1348518 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002b1 +75304180ns 1348522 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa5f PA:1c00aa5f +75304199ns 1348523 1c000e82 fff60613 addi x12, x12, -1 x12=000002b0 x12:000002b1 +75304219ns 1348524 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa60 x6:1c00aa5f +75304239ns 1348525 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002b0 +75304318ns 1348529 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa60 PA:1c00aa60 +75304338ns 1348530 1c000e82 fff60613 addi x12, x12, -1 x12=000002af x12:000002b0 +75304358ns 1348531 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa61 x6:1c00aa60 +75304377ns 1348532 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002af +75304457ns 1348536 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa61 PA:1c00aa61 +75304476ns 1348537 1c000e82 fff60613 addi x12, x12, -1 x12=000002ae x12:000002af +75304496ns 1348538 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa62 x6:1c00aa61 +75304516ns 1348539 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ae +75304595ns 1348543 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa62 PA:1c00aa62 +75304615ns 1348544 1c000e82 fff60613 addi x12, x12, -1 x12=000002ad x12:000002ae +75304635ns 1348545 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa63 x6:1c00aa62 +75304655ns 1348546 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ad +75304734ns 1348550 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa63 PA:1c00aa63 +75304754ns 1348551 1c000e82 fff60613 addi x12, x12, -1 x12=000002ac x12:000002ad +75304773ns 1348552 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa64 x6:1c00aa63 +75304793ns 1348553 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ac +75304872ns 1348557 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa64 PA:1c00aa64 +75304892ns 1348558 1c000e82 fff60613 addi x12, x12, -1 x12=000002ab x12:000002ac +75304912ns 1348559 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa65 x6:1c00aa64 +75304932ns 1348560 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ab +75305011ns 1348564 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa65 PA:1c00aa65 +75305031ns 1348565 1c000e82 fff60613 addi x12, x12, -1 x12=000002aa x12:000002ab +75305050ns 1348566 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa66 x6:1c00aa65 +75305070ns 1348567 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002aa +75305149ns 1348571 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa66 PA:1c00aa66 +75305169ns 1348572 1c000e82 fff60613 addi x12, x12, -1 x12=000002a9 x12:000002aa +75305189ns 1348573 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa67 x6:1c00aa66 +75305209ns 1348574 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002a9 +75305288ns 1348578 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa67 PA:1c00aa67 +75305308ns 1348579 1c000e82 fff60613 addi x12, x12, -1 x12=000002a8 x12:000002a9 +75305328ns 1348580 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa68 x6:1c00aa67 +75305347ns 1348581 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002a8 +75305426ns 1348585 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa68 PA:1c00aa68 +75305446ns 1348586 1c000e82 fff60613 addi x12, x12, -1 x12=000002a7 x12:000002a8 +75305466ns 1348587 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa69 x6:1c00aa68 +75305486ns 1348588 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002a7 +75305565ns 1348592 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa69 PA:1c00aa69 +75305585ns 1348593 1c000e82 fff60613 addi x12, x12, -1 x12=000002a6 x12:000002a7 +75305605ns 1348594 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa6a x6:1c00aa69 +75305624ns 1348595 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002a6 +75305704ns 1348599 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa6a PA:1c00aa6a +75305723ns 1348600 1c000e82 fff60613 addi x12, x12, -1 x12=000002a5 x12:000002a6 +75305743ns 1348601 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa6b x6:1c00aa6a +75305763ns 1348602 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002a5 +75305842ns 1348606 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa6b PA:1c00aa6b +75305862ns 1348607 1c000e82 fff60613 addi x12, x12, -1 x12=000002a4 x12:000002a5 +75305882ns 1348608 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa6c x6:1c00aa6b +75305901ns 1348609 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002a4 +75305981ns 1348613 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa6c PA:1c00aa6c +75306000ns 1348614 1c000e82 fff60613 addi x12, x12, -1 x12=000002a3 x12:000002a4 +75306020ns 1348615 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa6d x6:1c00aa6c +75306040ns 1348616 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002a3 +75306119ns 1348620 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa6d PA:1c00aa6d +75306139ns 1348621 1c000e82 fff60613 addi x12, x12, -1 x12=000002a2 x12:000002a3 +75306159ns 1348622 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa6e x6:1c00aa6d +75306179ns 1348623 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002a2 +75306258ns 1348627 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa6e PA:1c00aa6e +75306278ns 1348628 1c000e82 fff60613 addi x12, x12, -1 x12=000002a1 x12:000002a2 +75306297ns 1348629 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa6f x6:1c00aa6e +75306317ns 1348630 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002a1 +75306396ns 1348634 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa6f PA:1c00aa6f +75306416ns 1348635 1c000e82 fff60613 addi x12, x12, -1 x12=000002a0 x12:000002a1 +75306436ns 1348636 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa70 x6:1c00aa6f +75306456ns 1348637 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002a0 +75306535ns 1348641 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa70 PA:1c00aa70 +75306555ns 1348642 1c000e82 fff60613 addi x12, x12, -1 x12=0000029f x12:000002a0 +75306574ns 1348643 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa71 x6:1c00aa70 +75306594ns 1348644 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000029f +75306673ns 1348648 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa71 PA:1c00aa71 +75306693ns 1348649 1c000e82 fff60613 addi x12, x12, -1 x12=0000029e x12:0000029f +75306713ns 1348650 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa72 x6:1c00aa71 +75306733ns 1348651 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000029e +75306812ns 1348655 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa72 PA:1c00aa72 +75306832ns 1348656 1c000e82 fff60613 addi x12, x12, -1 x12=0000029d x12:0000029e +75306851ns 1348657 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa73 x6:1c00aa72 +75306871ns 1348658 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000029d +75306950ns 1348662 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa73 PA:1c00aa73 +75306970ns 1348663 1c000e82 fff60613 addi x12, x12, -1 x12=0000029c x12:0000029d +75306990ns 1348664 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa74 x6:1c00aa73 +75307010ns 1348665 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000029c +75307089ns 1348669 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa74 PA:1c00aa74 +75307109ns 1348670 1c000e82 fff60613 addi x12, x12, -1 x12=0000029b x12:0000029c +75307129ns 1348671 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa75 x6:1c00aa74 +75307148ns 1348672 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000029b +75307228ns 1348676 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa75 PA:1c00aa75 +75307247ns 1348677 1c000e82 fff60613 addi x12, x12, -1 x12=0000029a x12:0000029b +75307267ns 1348678 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa76 x6:1c00aa75 +75307287ns 1348679 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000029a +75307366ns 1348683 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa76 PA:1c00aa76 +75307386ns 1348684 1c000e82 fff60613 addi x12, x12, -1 x12=00000299 x12:0000029a +75307406ns 1348685 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa77 x6:1c00aa76 +75307425ns 1348686 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000299 +75307505ns 1348690 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa77 PA:1c00aa77 +75307524ns 1348691 1c000e82 fff60613 addi x12, x12, -1 x12=00000298 x12:00000299 +75307544ns 1348692 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa78 x6:1c00aa77 +75307564ns 1348693 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000298 +75307643ns 1348697 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa78 PA:1c00aa78 +75307663ns 1348698 1c000e82 fff60613 addi x12, x12, -1 x12=00000297 x12:00000298 +75307683ns 1348699 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa79 x6:1c00aa78 +75307703ns 1348700 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000297 +75307782ns 1348704 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa79 PA:1c00aa79 +75307802ns 1348705 1c000e82 fff60613 addi x12, x12, -1 x12=00000296 x12:00000297 +75307821ns 1348706 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa7a x6:1c00aa79 +75307841ns 1348707 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000296 +75307920ns 1348711 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa7a PA:1c00aa7a +75307940ns 1348712 1c000e82 fff60613 addi x12, x12, -1 x12=00000295 x12:00000296 +75307960ns 1348713 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa7b x6:1c00aa7a +75307980ns 1348714 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000295 +75308059ns 1348718 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa7b PA:1c00aa7b +75308079ns 1348719 1c000e82 fff60613 addi x12, x12, -1 x12=00000294 x12:00000295 +75308098ns 1348720 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa7c x6:1c00aa7b +75308118ns 1348721 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000294 +75308197ns 1348725 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa7c PA:1c00aa7c +75308217ns 1348726 1c000e82 fff60613 addi x12, x12, -1 x12=00000293 x12:00000294 +75308237ns 1348727 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa7d x6:1c00aa7c +75308257ns 1348728 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000293 +75308336ns 1348732 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa7d PA:1c00aa7d +75308356ns 1348733 1c000e82 fff60613 addi x12, x12, -1 x12=00000292 x12:00000293 +75308375ns 1348734 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa7e x6:1c00aa7d +75308395ns 1348735 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000292 +75308474ns 1348739 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa7e PA:1c00aa7e +75308494ns 1348740 1c000e82 fff60613 addi x12, x12, -1 x12=00000291 x12:00000292 +75308514ns 1348741 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa7f x6:1c00aa7e +75308534ns 1348742 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000291 +75308613ns 1348746 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa7f PA:1c00aa7f +75308633ns 1348747 1c000e82 fff60613 addi x12, x12, -1 x12=00000290 x12:00000291 +75308653ns 1348748 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa80 x6:1c00aa7f +75308672ns 1348749 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000290 +75308752ns 1348753 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa80 PA:1c00aa80 +75308771ns 1348754 1c000e82 fff60613 addi x12, x12, -1 x12=0000028f x12:00000290 +75308791ns 1348755 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa81 x6:1c00aa80 +75308811ns 1348756 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000028f +75308890ns 1348760 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa81 PA:1c00aa81 +75308910ns 1348761 1c000e82 fff60613 addi x12, x12, -1 x12=0000028e x12:0000028f +75308930ns 1348762 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa82 x6:1c00aa81 +75308949ns 1348763 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000028e +75309029ns 1348767 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa82 PA:1c00aa82 +75309048ns 1348768 1c000e82 fff60613 addi x12, x12, -1 x12=0000028d x12:0000028e +75309068ns 1348769 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa83 x6:1c00aa82 +75309088ns 1348770 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000028d +75309167ns 1348774 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa83 PA:1c00aa83 +75309187ns 1348775 1c000e82 fff60613 addi x12, x12, -1 x12=0000028c x12:0000028d +75309207ns 1348776 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa84 x6:1c00aa83 +75309227ns 1348777 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000028c +75309306ns 1348781 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa84 PA:1c00aa84 +75309325ns 1348782 1c000e82 fff60613 addi x12, x12, -1 x12=0000028b x12:0000028c +75309345ns 1348783 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa85 x6:1c00aa84 +75309365ns 1348784 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000028b +75309444ns 1348788 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa85 PA:1c00aa85 +75309464ns 1348789 1c000e82 fff60613 addi x12, x12, -1 x12=0000028a x12:0000028b +75309484ns 1348790 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa86 x6:1c00aa85 +75309504ns 1348791 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000028a +75309583ns 1348795 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa86 PA:1c00aa86 +75309603ns 1348796 1c000e82 fff60613 addi x12, x12, -1 x12=00000289 x12:0000028a +75309622ns 1348797 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa87 x6:1c00aa86 +75309642ns 1348798 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000289 +75309721ns 1348802 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa87 PA:1c00aa87 +75309741ns 1348803 1c000e82 fff60613 addi x12, x12, -1 x12=00000288 x12:00000289 +75309761ns 1348804 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa88 x6:1c00aa87 +75309781ns 1348805 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000288 +75309860ns 1348809 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa88 PA:1c00aa88 +75309880ns 1348810 1c000e82 fff60613 addi x12, x12, -1 x12=00000287 x12:00000288 +75309899ns 1348811 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa89 x6:1c00aa88 +75309919ns 1348812 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000287 +75309998ns 1348816 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa89 PA:1c00aa89 +75310018ns 1348817 1c000e82 fff60613 addi x12, x12, -1 x12=00000286 x12:00000287 +75310038ns 1348818 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa8a x6:1c00aa89 +75310058ns 1348819 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000286 +75310137ns 1348823 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa8a PA:1c00aa8a +75310157ns 1348824 1c000e82 fff60613 addi x12, x12, -1 x12=00000285 x12:00000286 +75310177ns 1348825 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa8b x6:1c00aa8a +75310196ns 1348826 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000285 +75310276ns 1348830 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa8b PA:1c00aa8b +75310295ns 1348831 1c000e82 fff60613 addi x12, x12, -1 x12=00000284 x12:00000285 +75310315ns 1348832 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa8c x6:1c00aa8b +75310335ns 1348833 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000284 +75310414ns 1348837 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa8c PA:1c00aa8c +75310434ns 1348838 1c000e82 fff60613 addi x12, x12, -1 x12=00000283 x12:00000284 +75310454ns 1348839 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa8d x6:1c00aa8c +75310473ns 1348840 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000283 +75310553ns 1348844 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa8d PA:1c00aa8d +75310572ns 1348845 1c000e82 fff60613 addi x12, x12, -1 x12=00000282 x12:00000283 +75310592ns 1348846 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa8e x6:1c00aa8d +75310612ns 1348847 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000282 +75310691ns 1348851 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa8e PA:1c00aa8e +75310711ns 1348852 1c000e82 fff60613 addi x12, x12, -1 x12=00000281 x12:00000282 +75310731ns 1348853 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa8f x6:1c00aa8e +75310751ns 1348854 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000281 +75310830ns 1348858 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa8f PA:1c00aa8f +75310849ns 1348859 1c000e82 fff60613 addi x12, x12, -1 x12=00000280 x12:00000281 +75310869ns 1348860 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa90 x6:1c00aa8f +75310889ns 1348861 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000280 +75310968ns 1348865 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa90 PA:1c00aa90 +75310988ns 1348866 1c000e82 fff60613 addi x12, x12, -1 x12=0000027f x12:00000280 +75311008ns 1348867 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa91 x6:1c00aa90 +75311028ns 1348868 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000027f +75311107ns 1348872 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa91 PA:1c00aa91 +75311127ns 1348873 1c000e82 fff60613 addi x12, x12, -1 x12=0000027e x12:0000027f +75311146ns 1348874 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa92 x6:1c00aa91 +75311166ns 1348875 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000027e +75311245ns 1348879 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa92 PA:1c00aa92 +75311265ns 1348880 1c000e82 fff60613 addi x12, x12, -1 x12=0000027d x12:0000027e +75311285ns 1348881 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa93 x6:1c00aa92 +75311305ns 1348882 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000027d +75311384ns 1348886 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa93 PA:1c00aa93 +75311404ns 1348887 1c000e82 fff60613 addi x12, x12, -1 x12=0000027c x12:0000027d +75311423ns 1348888 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa94 x6:1c00aa93 +75311443ns 1348889 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000027c +75311522ns 1348893 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa94 PA:1c00aa94 +75311542ns 1348894 1c000e82 fff60613 addi x12, x12, -1 x12=0000027b x12:0000027c +75311562ns 1348895 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa95 x6:1c00aa94 +75311582ns 1348896 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000027b +75311661ns 1348900 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa95 PA:1c00aa95 +75311681ns 1348901 1c000e82 fff60613 addi x12, x12, -1 x12=0000027a x12:0000027b +75311701ns 1348902 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa96 x6:1c00aa95 +75311720ns 1348903 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000027a +75311799ns 1348907 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa96 PA:1c00aa96 +75311819ns 1348908 1c000e82 fff60613 addi x12, x12, -1 x12=00000279 x12:0000027a +75311839ns 1348909 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa97 x6:1c00aa96 +75311859ns 1348910 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000279 +75311938ns 1348914 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa97 PA:1c00aa97 +75311958ns 1348915 1c000e82 fff60613 addi x12, x12, -1 x12=00000278 x12:00000279 +75311978ns 1348916 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa98 x6:1c00aa97 +75311997ns 1348917 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000278 +75312077ns 1348921 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa98 PA:1c00aa98 +75312096ns 1348922 1c000e82 fff60613 addi x12, x12, -1 x12=00000277 x12:00000278 +75312116ns 1348923 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa99 x6:1c00aa98 +75312136ns 1348924 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000277 +75312215ns 1348928 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa99 PA:1c00aa99 +75312235ns 1348929 1c000e82 fff60613 addi x12, x12, -1 x12=00000276 x12:00000277 +75312255ns 1348930 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa9a x6:1c00aa99 +75312275ns 1348931 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000276 +75312354ns 1348935 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa9a PA:1c00aa9a +75312373ns 1348936 1c000e82 fff60613 addi x12, x12, -1 x12=00000275 x12:00000276 +75312393ns 1348937 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa9b x6:1c00aa9a +75312413ns 1348938 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000275 +75312492ns 1348942 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa9b PA:1c00aa9b +75312512ns 1348943 1c000e82 fff60613 addi x12, x12, -1 x12=00000274 x12:00000275 +75312532ns 1348944 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa9c x6:1c00aa9b +75312552ns 1348945 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000274 +75312631ns 1348949 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa9c PA:1c00aa9c +75312651ns 1348950 1c000e82 fff60613 addi x12, x12, -1 x12=00000273 x12:00000274 +75312670ns 1348951 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa9d x6:1c00aa9c +75312690ns 1348952 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000273 +75312769ns 1348956 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa9d PA:1c00aa9d +75312789ns 1348957 1c000e82 fff60613 addi x12, x12, -1 x12=00000272 x12:00000273 +75312809ns 1348958 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa9e x6:1c00aa9d +75312829ns 1348959 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000272 +75312908ns 1348963 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa9e PA:1c00aa9e +75312928ns 1348964 1c000e82 fff60613 addi x12, x12, -1 x12=00000271 x12:00000272 +75312947ns 1348965 1c000e84 00130313 addi x6, x6, 1 x6=1c00aa9f x6:1c00aa9e +75312967ns 1348966 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000271 +75313046ns 1348970 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aa9f PA:1c00aa9f +75313066ns 1348971 1c000e82 fff60613 addi x12, x12, -1 x12=00000270 x12:00000271 +75313086ns 1348972 1c000e84 00130313 addi x6, x6, 1 x6=1c00aaa0 x6:1c00aa9f +75313106ns 1348973 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000270 +75313185ns 1348977 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aaa0 PA:1c00aaa0 +75313205ns 1348978 1c000e82 fff60613 addi x12, x12, -1 x12=0000026f x12:00000270 +75313225ns 1348979 1c000e84 00130313 addi x6, x6, 1 x6=1c00aaa1 x6:1c00aaa0 +75313244ns 1348980 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000026f +75313323ns 1348984 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aaa1 PA:1c00aaa1 +75313343ns 1348985 1c000e82 fff60613 addi x12, x12, -1 x12=0000026e x12:0000026f +75313363ns 1348986 1c000e84 00130313 addi x6, x6, 1 x6=1c00aaa2 x6:1c00aaa1 +75313383ns 1348987 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000026e +75313462ns 1348991 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aaa2 PA:1c00aaa2 +75313482ns 1348992 1c000e82 fff60613 addi x12, x12, -1 x12=0000026d x12:0000026e +75313502ns 1348993 1c000e84 00130313 addi x6, x6, 1 x6=1c00aaa3 x6:1c00aaa2 +75313521ns 1348994 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000026d +75313601ns 1348998 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aaa3 PA:1c00aaa3 +75313620ns 1348999 1c000e82 fff60613 addi x12, x12, -1 x12=0000026c x12:0000026d +75313640ns 1349000 1c000e84 00130313 addi x6, x6, 1 x6=1c00aaa4 x6:1c00aaa3 +75313660ns 1349001 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000026c +75313739ns 1349005 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aaa4 PA:1c00aaa4 +75313759ns 1349006 1c000e82 fff60613 addi x12, x12, -1 x12=0000026b x12:0000026c +75313779ns 1349007 1c000e84 00130313 addi x6, x6, 1 x6=1c00aaa5 x6:1c00aaa4 +75313798ns 1349008 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000026b +75313878ns 1349012 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aaa5 PA:1c00aaa5 +75313897ns 1349013 1c000e82 fff60613 addi x12, x12, -1 x12=0000026a x12:0000026b +75313917ns 1349014 1c000e84 00130313 addi x6, x6, 1 x6=1c00aaa6 x6:1c00aaa5 +75313937ns 1349015 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000026a +75314016ns 1349019 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aaa6 PA:1c00aaa6 +75314036ns 1349020 1c000e82 fff60613 addi x12, x12, -1 x12=00000269 x12:0000026a +75314056ns 1349021 1c000e84 00130313 addi x6, x6, 1 x6=1c00aaa7 x6:1c00aaa6 +75314076ns 1349022 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000269 +75314155ns 1349026 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aaa7 PA:1c00aaa7 +75314175ns 1349027 1c000e82 fff60613 addi x12, x12, -1 x12=00000268 x12:00000269 +75314194ns 1349028 1c000e84 00130313 addi x6, x6, 1 x6=1c00aaa8 x6:1c00aaa7 +75314214ns 1349029 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000268 +75314293ns 1349033 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aaa8 PA:1c00aaa8 +75314313ns 1349034 1c000e82 fff60613 addi x12, x12, -1 x12=00000267 x12:00000268 +75314333ns 1349035 1c000e84 00130313 addi x6, x6, 1 x6=1c00aaa9 x6:1c00aaa8 +75314353ns 1349036 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000267 +75314432ns 1349040 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aaa9 PA:1c00aaa9 +75314452ns 1349041 1c000e82 fff60613 addi x12, x12, -1 x12=00000266 x12:00000267 +75314471ns 1349042 1c000e84 00130313 addi x6, x6, 1 x6=1c00aaaa x6:1c00aaa9 +75314491ns 1349043 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000266 +75314570ns 1349047 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aaaa PA:1c00aaaa +75314590ns 1349048 1c000e82 fff60613 addi x12, x12, -1 x12=00000265 x12:00000266 +75314610ns 1349049 1c000e84 00130313 addi x6, x6, 1 x6=1c00aaab x6:1c00aaaa +75314630ns 1349050 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000265 +75314709ns 1349054 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aaab PA:1c00aaab +75314729ns 1349055 1c000e82 fff60613 addi x12, x12, -1 x12=00000264 x12:00000265 +75314749ns 1349056 1c000e84 00130313 addi x6, x6, 1 x6=1c00aaac x6:1c00aaab +75314768ns 1349057 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000264 +75314847ns 1349061 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aaac PA:1c00aaac +75314867ns 1349062 1c000e82 fff60613 addi x12, x12, -1 x12=00000263 x12:00000264 +75314887ns 1349063 1c000e84 00130313 addi x6, x6, 1 x6=1c00aaad x6:1c00aaac +75314907ns 1349064 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000263 +75314986ns 1349068 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aaad PA:1c00aaad +75315006ns 1349069 1c000e82 fff60613 addi x12, x12, -1 x12=00000262 x12:00000263 +75315026ns 1349070 1c000e84 00130313 addi x6, x6, 1 x6=1c00aaae x6:1c00aaad +75315045ns 1349071 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000262 +75315125ns 1349075 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aaae PA:1c00aaae +75315144ns 1349076 1c000e82 fff60613 addi x12, x12, -1 x12=00000261 x12:00000262 +75315164ns 1349077 1c000e84 00130313 addi x6, x6, 1 x6=1c00aaaf x6:1c00aaae +75315184ns 1349078 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000261 +75315263ns 1349082 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aaaf PA:1c00aaaf +75315283ns 1349083 1c000e82 fff60613 addi x12, x12, -1 x12=00000260 x12:00000261 +75315303ns 1349084 1c000e84 00130313 addi x6, x6, 1 x6=1c00aab0 x6:1c00aaaf +75315322ns 1349085 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000260 +75315402ns 1349089 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aab0 PA:1c00aab0 +75315421ns 1349090 1c000e82 fff60613 addi x12, x12, -1 x12=0000025f x12:00000260 +75315441ns 1349091 1c000e84 00130313 addi x6, x6, 1 x6=1c00aab1 x6:1c00aab0 +75315461ns 1349092 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000025f +75315540ns 1349096 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aab1 PA:1c00aab1 +75315560ns 1349097 1c000e82 fff60613 addi x12, x12, -1 x12=0000025e x12:0000025f +75315580ns 1349098 1c000e84 00130313 addi x6, x6, 1 x6=1c00aab2 x6:1c00aab1 +75315600ns 1349099 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000025e +75315679ns 1349103 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aab2 PA:1c00aab2 +75315699ns 1349104 1c000e82 fff60613 addi x12, x12, -1 x12=0000025d x12:0000025e +75315718ns 1349105 1c000e84 00130313 addi x6, x6, 1 x6=1c00aab3 x6:1c00aab2 +75315738ns 1349106 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000025d +75315817ns 1349110 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aab3 PA:1c00aab3 +75315837ns 1349111 1c000e82 fff60613 addi x12, x12, -1 x12=0000025c x12:0000025d +75315857ns 1349112 1c000e84 00130313 addi x6, x6, 1 x6=1c00aab4 x6:1c00aab3 +75315877ns 1349113 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000025c +75315956ns 1349117 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aab4 PA:1c00aab4 +75315976ns 1349118 1c000e82 fff60613 addi x12, x12, -1 x12=0000025b x12:0000025c +75315995ns 1349119 1c000e84 00130313 addi x6, x6, 1 x6=1c00aab5 x6:1c00aab4 +75316015ns 1349120 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000025b +75316094ns 1349124 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aab5 PA:1c00aab5 +75316114ns 1349125 1c000e82 fff60613 addi x12, x12, -1 x12=0000025a x12:0000025b +75316134ns 1349126 1c000e84 00130313 addi x6, x6, 1 x6=1c00aab6 x6:1c00aab5 +75316154ns 1349127 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000025a +75316233ns 1349131 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aab6 PA:1c00aab6 +75316253ns 1349132 1c000e82 fff60613 addi x12, x12, -1 x12=00000259 x12:0000025a +75316272ns 1349133 1c000e84 00130313 addi x6, x6, 1 x6=1c00aab7 x6:1c00aab6 +75316292ns 1349134 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000259 +75316371ns 1349138 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aab7 PA:1c00aab7 +75316391ns 1349139 1c000e82 fff60613 addi x12, x12, -1 x12=00000258 x12:00000259 +75316411ns 1349140 1c000e84 00130313 addi x6, x6, 1 x6=1c00aab8 x6:1c00aab7 +75316431ns 1349141 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000258 +75316510ns 1349145 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aab8 PA:1c00aab8 +75316530ns 1349146 1c000e82 fff60613 addi x12, x12, -1 x12=00000257 x12:00000258 +75316550ns 1349147 1c000e84 00130313 addi x6, x6, 1 x6=1c00aab9 x6:1c00aab8 +75316569ns 1349148 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000257 +75316649ns 1349152 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aab9 PA:1c00aab9 +75316668ns 1349153 1c000e82 fff60613 addi x12, x12, -1 x12=00000256 x12:00000257 +75316688ns 1349154 1c000e84 00130313 addi x6, x6, 1 x6=1c00aaba x6:1c00aab9 +75316708ns 1349155 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000256 +75316787ns 1349159 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aaba PA:1c00aaba +75316807ns 1349160 1c000e82 fff60613 addi x12, x12, -1 x12=00000255 x12:00000256 +75316827ns 1349161 1c000e84 00130313 addi x6, x6, 1 x6=1c00aabb x6:1c00aaba +75316846ns 1349162 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000255 +75316926ns 1349166 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aabb PA:1c00aabb +75316945ns 1349167 1c000e82 fff60613 addi x12, x12, -1 x12=00000254 x12:00000255 +75316965ns 1349168 1c000e84 00130313 addi x6, x6, 1 x6=1c00aabc x6:1c00aabb +75316985ns 1349169 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000254 +75317064ns 1349173 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aabc PA:1c00aabc +75317084ns 1349174 1c000e82 fff60613 addi x12, x12, -1 x12=00000253 x12:00000254 +75317104ns 1349175 1c000e84 00130313 addi x6, x6, 1 x6=1c00aabd x6:1c00aabc +75317124ns 1349176 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000253 +75317203ns 1349180 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aabd PA:1c00aabd +75317223ns 1349181 1c000e82 fff60613 addi x12, x12, -1 x12=00000252 x12:00000253 +75317242ns 1349182 1c000e84 00130313 addi x6, x6, 1 x6=1c00aabe x6:1c00aabd +75317262ns 1349183 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000252 +75317341ns 1349187 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aabe PA:1c00aabe +75317361ns 1349188 1c000e82 fff60613 addi x12, x12, -1 x12=00000251 x12:00000252 +75317381ns 1349189 1c000e84 00130313 addi x6, x6, 1 x6=1c00aabf x6:1c00aabe +75317401ns 1349190 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000251 +75317480ns 1349194 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aabf PA:1c00aabf +75317500ns 1349195 1c000e82 fff60613 addi x12, x12, -1 x12=00000250 x12:00000251 +75317519ns 1349196 1c000e84 00130313 addi x6, x6, 1 x6=1c00aac0 x6:1c00aabf +75317539ns 1349197 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000250 +75317618ns 1349201 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aac0 PA:1c00aac0 +75317638ns 1349202 1c000e82 fff60613 addi x12, x12, -1 x12=0000024f x12:00000250 +75317658ns 1349203 1c000e84 00130313 addi x6, x6, 1 x6=1c00aac1 x6:1c00aac0 +75317678ns 1349204 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000024f +75317757ns 1349208 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aac1 PA:1c00aac1 +75317777ns 1349209 1c000e82 fff60613 addi x12, x12, -1 x12=0000024e x12:0000024f +75317796ns 1349210 1c000e84 00130313 addi x6, x6, 1 x6=1c00aac2 x6:1c00aac1 +75317816ns 1349211 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000024e +75317895ns 1349215 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aac2 PA:1c00aac2 +75317915ns 1349216 1c000e82 fff60613 addi x12, x12, -1 x12=0000024d x12:0000024e +75317935ns 1349217 1c000e84 00130313 addi x6, x6, 1 x6=1c00aac3 x6:1c00aac2 +75317955ns 1349218 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000024d +75318034ns 1349222 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aac3 PA:1c00aac3 +75318054ns 1349223 1c000e82 fff60613 addi x12, x12, -1 x12=0000024c x12:0000024d +75318074ns 1349224 1c000e84 00130313 addi x6, x6, 1 x6=1c00aac4 x6:1c00aac3 +75318093ns 1349225 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000024c +75318173ns 1349229 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aac4 PA:1c00aac4 +75318192ns 1349230 1c000e82 fff60613 addi x12, x12, -1 x12=0000024b x12:0000024c +75318212ns 1349231 1c000e84 00130313 addi x6, x6, 1 x6=1c00aac5 x6:1c00aac4 +75318232ns 1349232 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000024b +75318311ns 1349236 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aac5 PA:1c00aac5 +75318331ns 1349237 1c000e82 fff60613 addi x12, x12, -1 x12=0000024a x12:0000024b +75318351ns 1349238 1c000e84 00130313 addi x6, x6, 1 x6=1c00aac6 x6:1c00aac5 +75318370ns 1349239 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000024a +75318450ns 1349243 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aac6 PA:1c00aac6 +75318469ns 1349244 1c000e82 fff60613 addi x12, x12, -1 x12=00000249 x12:0000024a +75318489ns 1349245 1c000e84 00130313 addi x6, x6, 1 x6=1c00aac7 x6:1c00aac6 +75318509ns 1349246 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000249 +75318588ns 1349250 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aac7 PA:1c00aac7 +75318608ns 1349251 1c000e82 fff60613 addi x12, x12, -1 x12=00000248 x12:00000249 +75318628ns 1349252 1c000e84 00130313 addi x6, x6, 1 x6=1c00aac8 x6:1c00aac7 +75318648ns 1349253 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000248 +75318727ns 1349257 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aac8 PA:1c00aac8 +75318746ns 1349258 1c000e82 fff60613 addi x12, x12, -1 x12=00000247 x12:00000248 +75318766ns 1349259 1c000e84 00130313 addi x6, x6, 1 x6=1c00aac9 x6:1c00aac8 +75318786ns 1349260 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000247 +75318865ns 1349264 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aac9 PA:1c00aac9 +75318885ns 1349265 1c000e82 fff60613 addi x12, x12, -1 x12=00000246 x12:00000247 +75318905ns 1349266 1c000e84 00130313 addi x6, x6, 1 x6=1c00aaca x6:1c00aac9 +75318925ns 1349267 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000246 +75319004ns 1349271 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aaca PA:1c00aaca +75319024ns 1349272 1c000e82 fff60613 addi x12, x12, -1 x12=00000245 x12:00000246 +75319043ns 1349273 1c000e84 00130313 addi x6, x6, 1 x6=1c00aacb x6:1c00aaca +75319063ns 1349274 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000245 +75319142ns 1349278 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aacb PA:1c00aacb +75319162ns 1349279 1c000e82 fff60613 addi x12, x12, -1 x12=00000244 x12:00000245 +75319182ns 1349280 1c000e84 00130313 addi x6, x6, 1 x6=1c00aacc x6:1c00aacb +75319202ns 1349281 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000244 +75319281ns 1349285 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aacc PA:1c00aacc +75319301ns 1349286 1c000e82 fff60613 addi x12, x12, -1 x12=00000243 x12:00000244 +75319320ns 1349287 1c000e84 00130313 addi x6, x6, 1 x6=1c00aacd x6:1c00aacc +75319340ns 1349288 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000243 +75319419ns 1349292 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aacd PA:1c00aacd +75319439ns 1349293 1c000e82 fff60613 addi x12, x12, -1 x12=00000242 x12:00000243 +75319459ns 1349294 1c000e84 00130313 addi x6, x6, 1 x6=1c00aace x6:1c00aacd +75319479ns 1349295 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000242 +75319558ns 1349299 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aace PA:1c00aace +75319578ns 1349300 1c000e82 fff60613 addi x12, x12, -1 x12=00000241 x12:00000242 +75319598ns 1349301 1c000e84 00130313 addi x6, x6, 1 x6=1c00aacf x6:1c00aace +75319617ns 1349302 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000241 +75319697ns 1349306 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aacf PA:1c00aacf +75319716ns 1349307 1c000e82 fff60613 addi x12, x12, -1 x12=00000240 x12:00000241 +75319736ns 1349308 1c000e84 00130313 addi x6, x6, 1 x6=1c00aad0 x6:1c00aacf +75319756ns 1349309 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000240 +75319835ns 1349313 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aad0 PA:1c00aad0 +75319855ns 1349314 1c000e82 fff60613 addi x12, x12, -1 x12=0000023f x12:00000240 +75319875ns 1349315 1c000e84 00130313 addi x6, x6, 1 x6=1c00aad1 x6:1c00aad0 +75319894ns 1349316 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000023f +75319974ns 1349320 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aad1 PA:1c00aad1 +75319993ns 1349321 1c000e82 fff60613 addi x12, x12, -1 x12=0000023e x12:0000023f +75320013ns 1349322 1c000e84 00130313 addi x6, x6, 1 x6=1c00aad2 x6:1c00aad1 +75320033ns 1349323 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000023e +75320112ns 1349327 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aad2 PA:1c00aad2 +75320132ns 1349328 1c000e82 fff60613 addi x12, x12, -1 x12=0000023d x12:0000023e +75320152ns 1349329 1c000e84 00130313 addi x6, x6, 1 x6=1c00aad3 x6:1c00aad2 +75320172ns 1349330 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000023d +75320251ns 1349334 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aad3 PA:1c00aad3 +75320270ns 1349335 1c000e82 fff60613 addi x12, x12, -1 x12=0000023c x12:0000023d +75320290ns 1349336 1c000e84 00130313 addi x6, x6, 1 x6=1c00aad4 x6:1c00aad3 +75320310ns 1349337 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000023c +75320389ns 1349341 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aad4 PA:1c00aad4 +75320409ns 1349342 1c000e82 fff60613 addi x12, x12, -1 x12=0000023b x12:0000023c +75320429ns 1349343 1c000e84 00130313 addi x6, x6, 1 x6=1c00aad5 x6:1c00aad4 +75320449ns 1349344 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000023b +75320528ns 1349348 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aad5 PA:1c00aad5 +75320548ns 1349349 1c000e82 fff60613 addi x12, x12, -1 x12=0000023a x12:0000023b +75320567ns 1349350 1c000e84 00130313 addi x6, x6, 1 x6=1c00aad6 x6:1c00aad5 +75320587ns 1349351 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000023a +75320666ns 1349355 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aad6 PA:1c00aad6 +75320686ns 1349356 1c000e82 fff60613 addi x12, x12, -1 x12=00000239 x12:0000023a +75320706ns 1349357 1c000e84 00130313 addi x6, x6, 1 x6=1c00aad7 x6:1c00aad6 +75320726ns 1349358 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000239 +75320805ns 1349362 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aad7 PA:1c00aad7 +75320825ns 1349363 1c000e82 fff60613 addi x12, x12, -1 x12=00000238 x12:00000239 +75320844ns 1349364 1c000e84 00130313 addi x6, x6, 1 x6=1c00aad8 x6:1c00aad7 +75320864ns 1349365 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000238 +75320943ns 1349369 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aad8 PA:1c00aad8 +75320963ns 1349370 1c000e82 fff60613 addi x12, x12, -1 x12=00000237 x12:00000238 +75320983ns 1349371 1c000e84 00130313 addi x6, x6, 1 x6=1c00aad9 x6:1c00aad8 +75321003ns 1349372 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000237 +75321082ns 1349376 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aad9 PA:1c00aad9 +75321102ns 1349377 1c000e82 fff60613 addi x12, x12, -1 x12=00000236 x12:00000237 +75321122ns 1349378 1c000e84 00130313 addi x6, x6, 1 x6=1c00aada x6:1c00aad9 +75321141ns 1349379 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000236 +75321220ns 1349383 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aada PA:1c00aada +75321240ns 1349384 1c000e82 fff60613 addi x12, x12, -1 x12=00000235 x12:00000236 +75321260ns 1349385 1c000e84 00130313 addi x6, x6, 1 x6=1c00aadb x6:1c00aada +75321280ns 1349386 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000235 +75321359ns 1349390 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aadb PA:1c00aadb +75321379ns 1349391 1c000e82 fff60613 addi x12, x12, -1 x12=00000234 x12:00000235 +75321399ns 1349392 1c000e84 00130313 addi x6, x6, 1 x6=1c00aadc x6:1c00aadb +75321418ns 1349393 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000234 +75321498ns 1349397 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aadc PA:1c00aadc +75321517ns 1349398 1c000e82 fff60613 addi x12, x12, -1 x12=00000233 x12:00000234 +75321537ns 1349399 1c000e84 00130313 addi x6, x6, 1 x6=1c00aadd x6:1c00aadc +75321557ns 1349400 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000233 +75321636ns 1349404 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aadd PA:1c00aadd +75321656ns 1349405 1c000e82 fff60613 addi x12, x12, -1 x12=00000232 x12:00000233 +75321676ns 1349406 1c000e84 00130313 addi x6, x6, 1 x6=1c00aade x6:1c00aadd +75321695ns 1349407 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000232 +75321775ns 1349411 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aade PA:1c00aade +75321794ns 1349412 1c000e82 fff60613 addi x12, x12, -1 x12=00000231 x12:00000232 +75321814ns 1349413 1c000e84 00130313 addi x6, x6, 1 x6=1c00aadf x6:1c00aade +75321834ns 1349414 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000231 +75321913ns 1349418 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aadf PA:1c00aadf +75321933ns 1349419 1c000e82 fff60613 addi x12, x12, -1 x12=00000230 x12:00000231 +75321953ns 1349420 1c000e84 00130313 addi x6, x6, 1 x6=1c00aae0 x6:1c00aadf +75321973ns 1349421 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000230 +75322052ns 1349425 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aae0 PA:1c00aae0 +75322072ns 1349426 1c000e82 fff60613 addi x12, x12, -1 x12=0000022f x12:00000230 +75322091ns 1349427 1c000e84 00130313 addi x6, x6, 1 x6=1c00aae1 x6:1c00aae0 +75322111ns 1349428 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000022f +75322190ns 1349432 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aae1 PA:1c00aae1 +75322210ns 1349433 1c000e82 fff60613 addi x12, x12, -1 x12=0000022e x12:0000022f +75322230ns 1349434 1c000e84 00130313 addi x6, x6, 1 x6=1c00aae2 x6:1c00aae1 +75322250ns 1349435 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000022e +75322329ns 1349439 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aae2 PA:1c00aae2 +75322349ns 1349440 1c000e82 fff60613 addi x12, x12, -1 x12=0000022d x12:0000022e +75322368ns 1349441 1c000e84 00130313 addi x6, x6, 1 x6=1c00aae3 x6:1c00aae2 +75322388ns 1349442 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000022d +75322467ns 1349446 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aae3 PA:1c00aae3 +75322487ns 1349447 1c000e82 fff60613 addi x12, x12, -1 x12=0000022c x12:0000022d +75322507ns 1349448 1c000e84 00130313 addi x6, x6, 1 x6=1c00aae4 x6:1c00aae3 +75322527ns 1349449 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000022c +75322606ns 1349453 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aae4 PA:1c00aae4 +75322626ns 1349454 1c000e82 fff60613 addi x12, x12, -1 x12=0000022b x12:0000022c +75322646ns 1349455 1c000e84 00130313 addi x6, x6, 1 x6=1c00aae5 x6:1c00aae4 +75322665ns 1349456 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000022b +75322744ns 1349460 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aae5 PA:1c00aae5 +75322764ns 1349461 1c000e82 fff60613 addi x12, x12, -1 x12=0000022a x12:0000022b +75322784ns 1349462 1c000e84 00130313 addi x6, x6, 1 x6=1c00aae6 x6:1c00aae5 +75322804ns 1349463 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000022a +75322883ns 1349467 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aae6 PA:1c00aae6 +75322903ns 1349468 1c000e82 fff60613 addi x12, x12, -1 x12=00000229 x12:0000022a +75322923ns 1349469 1c000e84 00130313 addi x6, x6, 1 x6=1c00aae7 x6:1c00aae6 +75322942ns 1349470 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000229 +75323022ns 1349474 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aae7 PA:1c00aae7 +75323041ns 1349475 1c000e82 fff60613 addi x12, x12, -1 x12=00000228 x12:00000229 +75323061ns 1349476 1c000e84 00130313 addi x6, x6, 1 x6=1c00aae8 x6:1c00aae7 +75323081ns 1349477 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000228 +75323160ns 1349481 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aae8 PA:1c00aae8 +75323180ns 1349482 1c000e82 fff60613 addi x12, x12, -1 x12=00000227 x12:00000228 +75323200ns 1349483 1c000e84 00130313 addi x6, x6, 1 x6=1c00aae9 x6:1c00aae8 +75323219ns 1349484 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000227 +75323299ns 1349488 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aae9 PA:1c00aae9 +75323318ns 1349489 1c000e82 fff60613 addi x12, x12, -1 x12=00000226 x12:00000227 +75323338ns 1349490 1c000e84 00130313 addi x6, x6, 1 x6=1c00aaea x6:1c00aae9 +75323358ns 1349491 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000226 +75323437ns 1349495 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aaea PA:1c00aaea +75323457ns 1349496 1c000e82 fff60613 addi x12, x12, -1 x12=00000225 x12:00000226 +75323477ns 1349497 1c000e84 00130313 addi x6, x6, 1 x6=1c00aaeb x6:1c00aaea +75323497ns 1349498 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000225 +75323576ns 1349502 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aaeb PA:1c00aaeb +75323596ns 1349503 1c000e82 fff60613 addi x12, x12, -1 x12=00000224 x12:00000225 +75323615ns 1349504 1c000e84 00130313 addi x6, x6, 1 x6=1c00aaec x6:1c00aaeb +75323635ns 1349505 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000224 +75323714ns 1349509 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aaec PA:1c00aaec +75323734ns 1349510 1c000e82 fff60613 addi x12, x12, -1 x12=00000223 x12:00000224 +75323754ns 1349511 1c000e84 00130313 addi x6, x6, 1 x6=1c00aaed x6:1c00aaec +75323774ns 1349512 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000223 +75323853ns 1349516 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aaed PA:1c00aaed +75323873ns 1349517 1c000e82 fff60613 addi x12, x12, -1 x12=00000222 x12:00000223 +75323892ns 1349518 1c000e84 00130313 addi x6, x6, 1 x6=1c00aaee x6:1c00aaed +75323912ns 1349519 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000222 +75323991ns 1349523 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aaee PA:1c00aaee +75324011ns 1349524 1c000e82 fff60613 addi x12, x12, -1 x12=00000221 x12:00000222 +75324031ns 1349525 1c000e84 00130313 addi x6, x6, 1 x6=1c00aaef x6:1c00aaee +75324051ns 1349526 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000221 +75324130ns 1349530 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aaef PA:1c00aaef +75324150ns 1349531 1c000e82 fff60613 addi x12, x12, -1 x12=00000220 x12:00000221 +75324169ns 1349532 1c000e84 00130313 addi x6, x6, 1 x6=1c00aaf0 x6:1c00aaef +75324189ns 1349533 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000220 +75324268ns 1349537 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aaf0 PA:1c00aaf0 +75324288ns 1349538 1c000e82 fff60613 addi x12, x12, -1 x12=0000021f x12:00000220 +75324308ns 1349539 1c000e84 00130313 addi x6, x6, 1 x6=1c00aaf1 x6:1c00aaf0 +75324328ns 1349540 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000021f +75324407ns 1349544 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aaf1 PA:1c00aaf1 +75324427ns 1349545 1c000e82 fff60613 addi x12, x12, -1 x12=0000021e x12:0000021f +75324447ns 1349546 1c000e84 00130313 addi x6, x6, 1 x6=1c00aaf2 x6:1c00aaf1 +75324466ns 1349547 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000021e +75324546ns 1349551 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aaf2 PA:1c00aaf2 +75324565ns 1349552 1c000e82 fff60613 addi x12, x12, -1 x12=0000021d x12:0000021e +75324585ns 1349553 1c000e84 00130313 addi x6, x6, 1 x6=1c00aaf3 x6:1c00aaf2 +75324605ns 1349554 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000021d +75324684ns 1349558 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aaf3 PA:1c00aaf3 +75324704ns 1349559 1c000e82 fff60613 addi x12, x12, -1 x12=0000021c x12:0000021d +75324724ns 1349560 1c000e84 00130313 addi x6, x6, 1 x6=1c00aaf4 x6:1c00aaf3 +75324743ns 1349561 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000021c +75324823ns 1349565 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aaf4 PA:1c00aaf4 +75324842ns 1349566 1c000e82 fff60613 addi x12, x12, -1 x12=0000021b x12:0000021c +75324862ns 1349567 1c000e84 00130313 addi x6, x6, 1 x6=1c00aaf5 x6:1c00aaf4 +75324882ns 1349568 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000021b +75324961ns 1349572 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aaf5 PA:1c00aaf5 +75324981ns 1349573 1c000e82 fff60613 addi x12, x12, -1 x12=0000021a x12:0000021b +75325001ns 1349574 1c000e84 00130313 addi x6, x6, 1 x6=1c00aaf6 x6:1c00aaf5 +75325021ns 1349575 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000021a +75325100ns 1349579 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aaf6 PA:1c00aaf6 +75325120ns 1349580 1c000e82 fff60613 addi x12, x12, -1 x12=00000219 x12:0000021a +75325139ns 1349581 1c000e84 00130313 addi x6, x6, 1 x6=1c00aaf7 x6:1c00aaf6 +75325159ns 1349582 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000219 +75325238ns 1349586 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aaf7 PA:1c00aaf7 +75325258ns 1349587 1c000e82 fff60613 addi x12, x12, -1 x12=00000218 x12:00000219 +75325278ns 1349588 1c000e84 00130313 addi x6, x6, 1 x6=1c00aaf8 x6:1c00aaf7 +75325298ns 1349589 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000218 +75325377ns 1349593 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aaf8 PA:1c00aaf8 +75325397ns 1349594 1c000e82 fff60613 addi x12, x12, -1 x12=00000217 x12:00000218 +75325416ns 1349595 1c000e84 00130313 addi x6, x6, 1 x6=1c00aaf9 x6:1c00aaf8 +75325436ns 1349596 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000217 +75325515ns 1349600 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aaf9 PA:1c00aaf9 +75325535ns 1349601 1c000e82 fff60613 addi x12, x12, -1 x12=00000216 x12:00000217 +75325555ns 1349602 1c000e84 00130313 addi x6, x6, 1 x6=1c00aafa x6:1c00aaf9 +75325575ns 1349603 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000216 +75325654ns 1349607 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aafa PA:1c00aafa +75325674ns 1349608 1c000e82 fff60613 addi x12, x12, -1 x12=00000215 x12:00000216 +75325693ns 1349609 1c000e84 00130313 addi x6, x6, 1 x6=1c00aafb x6:1c00aafa +75325713ns 1349610 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000215 +75325792ns 1349614 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aafb PA:1c00aafb +75325812ns 1349615 1c000e82 fff60613 addi x12, x12, -1 x12=00000214 x12:00000215 +75325832ns 1349616 1c000e84 00130313 addi x6, x6, 1 x6=1c00aafc x6:1c00aafb +75325852ns 1349617 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000214 +75325931ns 1349621 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aafc PA:1c00aafc +75325951ns 1349622 1c000e82 fff60613 addi x12, x12, -1 x12=00000213 x12:00000214 +75325971ns 1349623 1c000e84 00130313 addi x6, x6, 1 x6=1c00aafd x6:1c00aafc +75325990ns 1349624 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000213 +75326070ns 1349628 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aafd PA:1c00aafd +75326089ns 1349629 1c000e82 fff60613 addi x12, x12, -1 x12=00000212 x12:00000213 +75326109ns 1349630 1c000e84 00130313 addi x6, x6, 1 x6=1c00aafe x6:1c00aafd +75326129ns 1349631 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000212 +75326208ns 1349635 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aafe PA:1c00aafe +75326228ns 1349636 1c000e82 fff60613 addi x12, x12, -1 x12=00000211 x12:00000212 +75326248ns 1349637 1c000e84 00130313 addi x6, x6, 1 x6=1c00aaff x6:1c00aafe +75326267ns 1349638 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000211 +75326347ns 1349642 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aaff PA:1c00aaff +75326366ns 1349643 1c000e82 fff60613 addi x12, x12, -1 x12=00000210 x12:00000211 +75326386ns 1349644 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab00 x6:1c00aaff +75326406ns 1349645 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000210 +75326485ns 1349649 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab00 PA:1c00ab00 +75326505ns 1349650 1c000e82 fff60613 addi x12, x12, -1 x12=0000020f x12:00000210 +75326525ns 1349651 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab01 x6:1c00ab00 +75326545ns 1349652 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000020f +75326624ns 1349656 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab01 PA:1c00ab01 +75326643ns 1349657 1c000e82 fff60613 addi x12, x12, -1 x12=0000020e x12:0000020f +75326663ns 1349658 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab02 x6:1c00ab01 +75326683ns 1349659 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000020e +75326762ns 1349663 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab02 PA:1c00ab02 +75326782ns 1349664 1c000e82 fff60613 addi x12, x12, -1 x12=0000020d x12:0000020e +75326802ns 1349665 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab03 x6:1c00ab02 +75326822ns 1349666 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000020d +75326901ns 1349670 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab03 PA:1c00ab03 +75326921ns 1349671 1c000e82 fff60613 addi x12, x12, -1 x12=0000020c x12:0000020d +75326940ns 1349672 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab04 x6:1c00ab03 +75326960ns 1349673 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000020c +75327039ns 1349677 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab04 PA:1c00ab04 +75327059ns 1349678 1c000e82 fff60613 addi x12, x12, -1 x12=0000020b x12:0000020c +75327079ns 1349679 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab05 x6:1c00ab04 +75327099ns 1349680 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000020b +75327178ns 1349684 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab05 PA:1c00ab05 +75327198ns 1349685 1c000e82 fff60613 addi x12, x12, -1 x12=0000020a x12:0000020b +75327217ns 1349686 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab06 x6:1c00ab05 +75327237ns 1349687 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000020a +75327316ns 1349691 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab06 PA:1c00ab06 +75327336ns 1349692 1c000e82 fff60613 addi x12, x12, -1 x12=00000209 x12:0000020a +75327356ns 1349693 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab07 x6:1c00ab06 +75327376ns 1349694 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000209 +75327455ns 1349698 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab07 PA:1c00ab07 +75327475ns 1349699 1c000e82 fff60613 addi x12, x12, -1 x12=00000208 x12:00000209 +75327495ns 1349700 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab08 x6:1c00ab07 +75327514ns 1349701 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000208 +75327594ns 1349705 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab08 PA:1c00ab08 +75327613ns 1349706 1c000e82 fff60613 addi x12, x12, -1 x12=00000207 x12:00000208 +75327633ns 1349707 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab09 x6:1c00ab08 +75327653ns 1349708 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000207 +75327732ns 1349712 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab09 PA:1c00ab09 +75327752ns 1349713 1c000e82 fff60613 addi x12, x12, -1 x12=00000206 x12:00000207 +75327772ns 1349714 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab0a x6:1c00ab09 +75327791ns 1349715 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000206 +75327871ns 1349719 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab0a PA:1c00ab0a +75327890ns 1349720 1c000e82 fff60613 addi x12, x12, -1 x12=00000205 x12:00000206 +75327910ns 1349721 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab0b x6:1c00ab0a +75327930ns 1349722 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000205 +75328009ns 1349726 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab0b PA:1c00ab0b +75328029ns 1349727 1c000e82 fff60613 addi x12, x12, -1 x12=00000204 x12:00000205 +75328049ns 1349728 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab0c x6:1c00ab0b +75328069ns 1349729 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000204 +75328148ns 1349733 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab0c PA:1c00ab0c +75328167ns 1349734 1c000e82 fff60613 addi x12, x12, -1 x12=00000203 x12:00000204 +75328187ns 1349735 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab0d x6:1c00ab0c +75328207ns 1349736 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000203 +75328286ns 1349740 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab0d PA:1c00ab0d +75328306ns 1349741 1c000e82 fff60613 addi x12, x12, -1 x12=00000202 x12:00000203 +75328326ns 1349742 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab0e x6:1c00ab0d +75328346ns 1349743 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000202 +75328425ns 1349747 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab0e PA:1c00ab0e +75328445ns 1349748 1c000e82 fff60613 addi x12, x12, -1 x12=00000201 x12:00000202 +75328464ns 1349749 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab0f x6:1c00ab0e +75328484ns 1349750 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000201 +75328563ns 1349754 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab0f PA:1c00ab0f +75328583ns 1349755 1c000e82 fff60613 addi x12, x12, -1 x12=00000200 x12:00000201 +75328603ns 1349756 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab10 x6:1c00ab0f +75328623ns 1349757 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000200 +75328702ns 1349761 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab10 PA:1c00ab10 +75328722ns 1349762 1c000e82 fff60613 addi x12, x12, -1 x12=000001ff x12:00000200 +75328741ns 1349763 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab11 x6:1c00ab10 +75328761ns 1349764 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ff +75328840ns 1349768 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab11 PA:1c00ab11 +75328860ns 1349769 1c000e82 fff60613 addi x12, x12, -1 x12=000001fe x12:000001ff +75328880ns 1349770 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab12 x6:1c00ab11 +75328900ns 1349771 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001fe +75328979ns 1349775 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab12 PA:1c00ab12 +75328999ns 1349776 1c000e82 fff60613 addi x12, x12, -1 x12=000001fd x12:000001fe +75329019ns 1349777 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab13 x6:1c00ab12 +75329038ns 1349778 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001fd +75329117ns 1349782 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab13 PA:1c00ab13 +75329137ns 1349783 1c000e82 fff60613 addi x12, x12, -1 x12=000001fc x12:000001fd +75329157ns 1349784 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab14 x6:1c00ab13 +75329177ns 1349785 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001fc +75329256ns 1349789 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab14 PA:1c00ab14 +75329276ns 1349790 1c000e82 fff60613 addi x12, x12, -1 x12=000001fb x12:000001fc +75329296ns 1349791 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab15 x6:1c00ab14 +75329315ns 1349792 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001fb +75329395ns 1349796 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab15 PA:1c00ab15 +75329414ns 1349797 1c000e82 fff60613 addi x12, x12, -1 x12=000001fa x12:000001fb +75329434ns 1349798 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab16 x6:1c00ab15 +75329454ns 1349799 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001fa +75329533ns 1349803 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab16 PA:1c00ab16 +75329553ns 1349804 1c000e82 fff60613 addi x12, x12, -1 x12=000001f9 x12:000001fa +75329573ns 1349805 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab17 x6:1c00ab16 +75329593ns 1349806 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001f9 +75329672ns 1349810 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab17 PA:1c00ab17 +75329691ns 1349811 1c000e82 fff60613 addi x12, x12, -1 x12=000001f8 x12:000001f9 +75329711ns 1349812 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab18 x6:1c00ab17 +75329731ns 1349813 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001f8 +75329810ns 1349817 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab18 PA:1c00ab18 +75329830ns 1349818 1c000e82 fff60613 addi x12, x12, -1 x12=000001f7 x12:000001f8 +75329850ns 1349819 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab19 x6:1c00ab18 +75329870ns 1349820 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001f7 +75329949ns 1349824 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab19 PA:1c00ab19 +75329969ns 1349825 1c000e82 fff60613 addi x12, x12, -1 x12=000001f6 x12:000001f7 +75329988ns 1349826 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab1a x6:1c00ab19 +75330008ns 1349827 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001f6 +75330087ns 1349831 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab1a PA:1c00ab1a +75330107ns 1349832 1c000e82 fff60613 addi x12, x12, -1 x12=000001f5 x12:000001f6 +75330127ns 1349833 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab1b x6:1c00ab1a +75330147ns 1349834 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001f5 +75330226ns 1349838 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab1b PA:1c00ab1b +75330246ns 1349839 1c000e82 fff60613 addi x12, x12, -1 x12=000001f4 x12:000001f5 +75330265ns 1349840 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab1c x6:1c00ab1b +75330285ns 1349841 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001f4 +75330364ns 1349845 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab1c PA:1c00ab1c +75330384ns 1349846 1c000e82 fff60613 addi x12, x12, -1 x12=000001f3 x12:000001f4 +75330404ns 1349847 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab1d x6:1c00ab1c +75330424ns 1349848 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001f3 +75330503ns 1349852 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab1d PA:1c00ab1d +75330523ns 1349853 1c000e82 fff60613 addi x12, x12, -1 x12=000001f2 x12:000001f3 +75330543ns 1349854 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab1e x6:1c00ab1d +75330562ns 1349855 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001f2 +75330641ns 1349859 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab1e PA:1c00ab1e +75330661ns 1349860 1c000e82 fff60613 addi x12, x12, -1 x12=000001f1 x12:000001f2 +75330681ns 1349861 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab1f x6:1c00ab1e +75330701ns 1349862 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001f1 +75330780ns 1349866 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab1f PA:1c00ab1f +75330800ns 1349867 1c000e82 fff60613 addi x12, x12, -1 x12=000001f0 x12:000001f1 +75330820ns 1349868 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab20 x6:1c00ab1f +75330839ns 1349869 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001f0 +75330919ns 1349873 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab20 PA:1c00ab20 +75330938ns 1349874 1c000e82 fff60613 addi x12, x12, -1 x12=000001ef x12:000001f0 +75330958ns 1349875 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab21 x6:1c00ab20 +75330978ns 1349876 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ef +75331057ns 1349880 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab21 PA:1c00ab21 +75331077ns 1349881 1c000e82 fff60613 addi x12, x12, -1 x12=000001ee x12:000001ef +75331097ns 1349882 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab22 x6:1c00ab21 +75331116ns 1349883 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ee +75331196ns 1349887 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab22 PA:1c00ab22 +75331215ns 1349888 1c000e82 fff60613 addi x12, x12, -1 x12=000001ed x12:000001ee +75331235ns 1349889 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab23 x6:1c00ab22 +75331255ns 1349890 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ed +75331334ns 1349894 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab23 PA:1c00ab23 +75331354ns 1349895 1c000e82 fff60613 addi x12, x12, -1 x12=000001ec x12:000001ed +75331374ns 1349896 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab24 x6:1c00ab23 +75331394ns 1349897 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ec +75331473ns 1349901 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab24 PA:1c00ab24 +75331493ns 1349902 1c000e82 fff60613 addi x12, x12, -1 x12=000001eb x12:000001ec +75331512ns 1349903 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab25 x6:1c00ab24 +75331532ns 1349904 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001eb +75331611ns 1349908 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab25 PA:1c00ab25 +75331631ns 1349909 1c000e82 fff60613 addi x12, x12, -1 x12=000001ea x12:000001eb +75331651ns 1349910 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab26 x6:1c00ab25 +75331671ns 1349911 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ea +75331750ns 1349915 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab26 PA:1c00ab26 +75331770ns 1349916 1c000e82 fff60613 addi x12, x12, -1 x12=000001e9 x12:000001ea +75331789ns 1349917 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab27 x6:1c00ab26 +75331809ns 1349918 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001e9 +75331888ns 1349922 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab27 PA:1c00ab27 +75331908ns 1349923 1c000e82 fff60613 addi x12, x12, -1 x12=000001e8 x12:000001e9 +75331928ns 1349924 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab28 x6:1c00ab27 +75331948ns 1349925 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001e8 +75332027ns 1349929 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab28 PA:1c00ab28 +75332047ns 1349930 1c000e82 fff60613 addi x12, x12, -1 x12=000001e7 x12:000001e8 +75332067ns 1349931 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab29 x6:1c00ab28 +75332086ns 1349932 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001e7 +75332165ns 1349936 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab29 PA:1c00ab29 +75332185ns 1349937 1c000e82 fff60613 addi x12, x12, -1 x12=000001e6 x12:000001e7 +75332205ns 1349938 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab2a x6:1c00ab29 +75332225ns 1349939 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001e6 +75332304ns 1349943 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab2a PA:1c00ab2a +75332324ns 1349944 1c000e82 fff60613 addi x12, x12, -1 x12=000001e5 x12:000001e6 +75332344ns 1349945 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab2b x6:1c00ab2a +75332363ns 1349946 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001e5 +75332443ns 1349950 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab2b PA:1c00ab2b +75332462ns 1349951 1c000e82 fff60613 addi x12, x12, -1 x12=000001e4 x12:000001e5 +75332482ns 1349952 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab2c x6:1c00ab2b +75332502ns 1349953 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001e4 +75332581ns 1349957 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab2c PA:1c00ab2c +75332601ns 1349958 1c000e82 fff60613 addi x12, x12, -1 x12=000001e3 x12:000001e4 +75332621ns 1349959 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab2d x6:1c00ab2c +75332640ns 1349960 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001e3 +75332720ns 1349964 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab2d PA:1c00ab2d +75332739ns 1349965 1c000e82 fff60613 addi x12, x12, -1 x12=000001e2 x12:000001e3 +75332759ns 1349966 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab2e x6:1c00ab2d +75332779ns 1349967 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001e2 +75332858ns 1349971 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab2e PA:1c00ab2e +75332878ns 1349972 1c000e82 fff60613 addi x12, x12, -1 x12=000001e1 x12:000001e2 +75332898ns 1349973 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab2f x6:1c00ab2e +75332918ns 1349974 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001e1 +75332997ns 1349978 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab2f PA:1c00ab2f +75333017ns 1349979 1c000e82 fff60613 addi x12, x12, -1 x12=000001e0 x12:000001e1 +75333036ns 1349980 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab30 x6:1c00ab2f +75333056ns 1349981 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001e0 +75333135ns 1349985 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab30 PA:1c00ab30 +75333155ns 1349986 1c000e82 fff60613 addi x12, x12, -1 x12=000001df x12:000001e0 +75333175ns 1349987 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab31 x6:1c00ab30 +75333195ns 1349988 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001df +75333274ns 1349992 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab31 PA:1c00ab31 +75333294ns 1349993 1c000e82 fff60613 addi x12, x12, -1 x12=000001de x12:000001df +75333313ns 1349994 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab32 x6:1c00ab31 +75333333ns 1349995 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001de +75333412ns 1349999 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab32 PA:1c00ab32 +75333432ns 1350000 1c000e82 fff60613 addi x12, x12, -1 x12=000001dd x12:000001de +75333452ns 1350001 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab33 x6:1c00ab32 +75333472ns 1350002 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001dd +75333551ns 1350006 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab33 PA:1c00ab33 +75333571ns 1350007 1c000e82 fff60613 addi x12, x12, -1 x12=000001dc x12:000001dd +75333590ns 1350008 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab34 x6:1c00ab33 +75333610ns 1350009 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001dc +75333689ns 1350013 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab34 PA:1c00ab34 +75333709ns 1350014 1c000e82 fff60613 addi x12, x12, -1 x12=000001db x12:000001dc +75333729ns 1350015 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab35 x6:1c00ab34 +75333749ns 1350016 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001db +75333828ns 1350020 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab35 PA:1c00ab35 +75333848ns 1350021 1c000e82 fff60613 addi x12, x12, -1 x12=000001da x12:000001db +75333868ns 1350022 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab36 x6:1c00ab35 +75333887ns 1350023 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001da +75333967ns 1350027 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab36 PA:1c00ab36 +75333986ns 1350028 1c000e82 fff60613 addi x12, x12, -1 x12=000001d9 x12:000001da +75334006ns 1350029 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab37 x6:1c00ab36 +75334026ns 1350030 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001d9 +75334105ns 1350034 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab37 PA:1c00ab37 +75334125ns 1350035 1c000e82 fff60613 addi x12, x12, -1 x12=000001d8 x12:000001d9 +75334145ns 1350036 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab38 x6:1c00ab37 +75334164ns 1350037 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001d8 +75334244ns 1350041 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab38 PA:1c00ab38 +75334263ns 1350042 1c000e82 fff60613 addi x12, x12, -1 x12=000001d7 x12:000001d8 +75334283ns 1350043 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab39 x6:1c00ab38 +75334303ns 1350044 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001d7 +75334382ns 1350048 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab39 PA:1c00ab39 +75334402ns 1350049 1c000e82 fff60613 addi x12, x12, -1 x12=000001d6 x12:000001d7 +75334422ns 1350050 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab3a x6:1c00ab39 +75334442ns 1350051 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001d6 +75334521ns 1350055 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab3a PA:1c00ab3a +75334541ns 1350056 1c000e82 fff60613 addi x12, x12, -1 x12=000001d5 x12:000001d6 +75334560ns 1350057 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab3b x6:1c00ab3a +75334580ns 1350058 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001d5 +75334659ns 1350062 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab3b PA:1c00ab3b +75334679ns 1350063 1c000e82 fff60613 addi x12, x12, -1 x12=000001d4 x12:000001d5 +75334699ns 1350064 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab3c x6:1c00ab3b +75334719ns 1350065 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001d4 +75334798ns 1350069 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab3c PA:1c00ab3c +75334818ns 1350070 1c000e82 fff60613 addi x12, x12, -1 x12=000001d3 x12:000001d4 +75334837ns 1350071 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab3d x6:1c00ab3c +75334857ns 1350072 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001d3 +75334936ns 1350076 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab3d PA:1c00ab3d +75334956ns 1350077 1c000e82 fff60613 addi x12, x12, -1 x12=000001d2 x12:000001d3 +75334976ns 1350078 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab3e x6:1c00ab3d +75334996ns 1350079 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001d2 +75335075ns 1350083 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab3e PA:1c00ab3e +75335095ns 1350084 1c000e82 fff60613 addi x12, x12, -1 x12=000001d1 x12:000001d2 +75335114ns 1350085 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab3f x6:1c00ab3e +75335134ns 1350086 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001d1 +75335213ns 1350090 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab3f PA:1c00ab3f +75335233ns 1350091 1c000e82 fff60613 addi x12, x12, -1 x12=000001d0 x12:000001d1 +75335253ns 1350092 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab40 x6:1c00ab3f +75335273ns 1350093 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001d0 +75335352ns 1350097 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab40 PA:1c00ab40 +75335372ns 1350098 1c000e82 fff60613 addi x12, x12, -1 x12=000001cf x12:000001d0 +75335392ns 1350099 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab41 x6:1c00ab40 +75335411ns 1350100 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001cf +75335491ns 1350104 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab41 PA:1c00ab41 +75335510ns 1350105 1c000e82 fff60613 addi x12, x12, -1 x12=000001ce x12:000001cf +75335530ns 1350106 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab42 x6:1c00ab41 +75335550ns 1350107 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ce +75335629ns 1350111 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab42 PA:1c00ab42 +75335649ns 1350112 1c000e82 fff60613 addi x12, x12, -1 x12=000001cd x12:000001ce +75335669ns 1350113 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab43 x6:1c00ab42 +75335688ns 1350114 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001cd +75335768ns 1350118 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab43 PA:1c00ab43 +75335787ns 1350119 1c000e82 fff60613 addi x12, x12, -1 x12=000001cc x12:000001cd +75335807ns 1350120 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab44 x6:1c00ab43 +75335827ns 1350121 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001cc +75335906ns 1350125 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab44 PA:1c00ab44 +75335926ns 1350126 1c000e82 fff60613 addi x12, x12, -1 x12=000001cb x12:000001cc +75335946ns 1350127 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab45 x6:1c00ab44 +75335966ns 1350128 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001cb +75336045ns 1350132 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab45 PA:1c00ab45 +75336064ns 1350133 1c000e82 fff60613 addi x12, x12, -1 x12=000001ca x12:000001cb +75336084ns 1350134 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab46 x6:1c00ab45 +75336104ns 1350135 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ca +75336183ns 1350139 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab46 PA:1c00ab46 +75336203ns 1350140 1c000e82 fff60613 addi x12, x12, -1 x12=000001c9 x12:000001ca +75336223ns 1350141 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab47 x6:1c00ab46 +75336243ns 1350142 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001c9 +75336322ns 1350146 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab47 PA:1c00ab47 +75336342ns 1350147 1c000e82 fff60613 addi x12, x12, -1 x12=000001c8 x12:000001c9 +75336361ns 1350148 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab48 x6:1c00ab47 +75336381ns 1350149 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001c8 +75336460ns 1350153 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab48 PA:1c00ab48 +75336480ns 1350154 1c000e82 fff60613 addi x12, x12, -1 x12=000001c7 x12:000001c8 +75336500ns 1350155 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab49 x6:1c00ab48 +75336520ns 1350156 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001c7 +75336599ns 1350160 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab49 PA:1c00ab49 +75336619ns 1350161 1c000e82 fff60613 addi x12, x12, -1 x12=000001c6 x12:000001c7 +75336638ns 1350162 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab4a x6:1c00ab49 +75336658ns 1350163 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001c6 +75336737ns 1350167 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab4a PA:1c00ab4a +75336757ns 1350168 1c000e82 fff60613 addi x12, x12, -1 x12=000001c5 x12:000001c6 +75336777ns 1350169 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab4b x6:1c00ab4a +75336797ns 1350170 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001c5 +75336876ns 1350174 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab4b PA:1c00ab4b +75336896ns 1350175 1c000e82 fff60613 addi x12, x12, -1 x12=000001c4 x12:000001c5 +75336916ns 1350176 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab4c x6:1c00ab4b +75336935ns 1350177 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001c4 +75337015ns 1350181 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab4c PA:1c00ab4c +75337034ns 1350182 1c000e82 fff60613 addi x12, x12, -1 x12=000001c3 x12:000001c4 +75337054ns 1350183 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab4d x6:1c00ab4c +75337074ns 1350184 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001c3 +75337153ns 1350188 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab4d PA:1c00ab4d +75337173ns 1350189 1c000e82 fff60613 addi x12, x12, -1 x12=000001c2 x12:000001c3 +75337193ns 1350190 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab4e x6:1c00ab4d +75337212ns 1350191 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001c2 +75337292ns 1350195 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab4e PA:1c00ab4e +75337311ns 1350196 1c000e82 fff60613 addi x12, x12, -1 x12=000001c1 x12:000001c2 +75337331ns 1350197 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab4f x6:1c00ab4e +75337351ns 1350198 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001c1 +75337430ns 1350202 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab4f PA:1c00ab4f +75337450ns 1350203 1c000e82 fff60613 addi x12, x12, -1 x12=000001c0 x12:000001c1 +75337470ns 1350204 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab50 x6:1c00ab4f +75337490ns 1350205 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001c0 +75337569ns 1350209 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab50 PA:1c00ab50 +75337588ns 1350210 1c000e82 fff60613 addi x12, x12, -1 x12=000001bf x12:000001c0 +75337608ns 1350211 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab51 x6:1c00ab50 +75337628ns 1350212 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001bf +75337707ns 1350216 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab51 PA:1c00ab51 +75337727ns 1350217 1c000e82 fff60613 addi x12, x12, -1 x12=000001be x12:000001bf +75337747ns 1350218 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab52 x6:1c00ab51 +75337767ns 1350219 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001be +75337846ns 1350223 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab52 PA:1c00ab52 +75337866ns 1350224 1c000e82 fff60613 addi x12, x12, -1 x12=000001bd x12:000001be +75337885ns 1350225 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab53 x6:1c00ab52 +75337905ns 1350226 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001bd +75337984ns 1350230 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab53 PA:1c00ab53 +75338004ns 1350231 1c000e82 fff60613 addi x12, x12, -1 x12=000001bc x12:000001bd +75338024ns 1350232 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab54 x6:1c00ab53 +75338044ns 1350233 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001bc +75338123ns 1350237 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab54 PA:1c00ab54 +75338143ns 1350238 1c000e82 fff60613 addi x12, x12, -1 x12=000001bb x12:000001bc +75338162ns 1350239 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab55 x6:1c00ab54 +75338182ns 1350240 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001bb +75338261ns 1350244 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab55 PA:1c00ab55 +75338281ns 1350245 1c000e82 fff60613 addi x12, x12, -1 x12=000001ba x12:000001bb +75338301ns 1350246 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab56 x6:1c00ab55 +75338321ns 1350247 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ba +75338400ns 1350251 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab56 PA:1c00ab56 +75338420ns 1350252 1c000e82 fff60613 addi x12, x12, -1 x12=000001b9 x12:000001ba +75338440ns 1350253 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab57 x6:1c00ab56 +75338459ns 1350254 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001b9 +75338538ns 1350258 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab57 PA:1c00ab57 +75338558ns 1350259 1c000e82 fff60613 addi x12, x12, -1 x12=000001b8 x12:000001b9 +75338578ns 1350260 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab58 x6:1c00ab57 +75338598ns 1350261 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001b8 +75338677ns 1350265 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab58 PA:1c00ab58 +75338697ns 1350266 1c000e82 fff60613 addi x12, x12, -1 x12=000001b7 x12:000001b8 +75338717ns 1350267 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab59 x6:1c00ab58 +75338736ns 1350268 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001b7 +75338816ns 1350272 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab59 PA:1c00ab59 +75338835ns 1350273 1c000e82 fff60613 addi x12, x12, -1 x12=000001b6 x12:000001b7 +75338855ns 1350274 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab5a x6:1c00ab59 +75338875ns 1350275 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001b6 +75338954ns 1350279 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab5a PA:1c00ab5a +75338974ns 1350280 1c000e82 fff60613 addi x12, x12, -1 x12=000001b5 x12:000001b6 +75338994ns 1350281 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab5b x6:1c00ab5a +75339013ns 1350282 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001b5 +75339093ns 1350286 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab5b PA:1c00ab5b +75339112ns 1350287 1c000e82 fff60613 addi x12, x12, -1 x12=000001b4 x12:000001b5 +75339132ns 1350288 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab5c x6:1c00ab5b +75339152ns 1350289 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001b4 +75339231ns 1350293 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab5c PA:1c00ab5c +75339251ns 1350294 1c000e82 fff60613 addi x12, x12, -1 x12=000001b3 x12:000001b4 +75339271ns 1350295 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab5d x6:1c00ab5c +75339291ns 1350296 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001b3 +75339370ns 1350300 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab5d PA:1c00ab5d +75339390ns 1350301 1c000e82 fff60613 addi x12, x12, -1 x12=000001b2 x12:000001b3 +75339409ns 1350302 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab5e x6:1c00ab5d +75339429ns 1350303 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001b2 +75339508ns 1350307 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab5e PA:1c00ab5e +75339528ns 1350308 1c000e82 fff60613 addi x12, x12, -1 x12=000001b1 x12:000001b2 +75339548ns 1350309 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab5f x6:1c00ab5e +75339568ns 1350310 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001b1 +75339647ns 1350314 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab5f PA:1c00ab5f +75339667ns 1350315 1c000e82 fff60613 addi x12, x12, -1 x12=000001b0 x12:000001b1 +75339686ns 1350316 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab60 x6:1c00ab5f +75339706ns 1350317 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001b0 +75339785ns 1350321 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab60 PA:1c00ab60 +75339805ns 1350322 1c000e82 fff60613 addi x12, x12, -1 x12=000001af x12:000001b0 +75339825ns 1350323 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab61 x6:1c00ab60 +75339845ns 1350324 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001af +75339924ns 1350328 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab61 PA:1c00ab61 +75339944ns 1350329 1c000e82 fff60613 addi x12, x12, -1 x12=000001ae x12:000001af +75339964ns 1350330 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab62 x6:1c00ab61 +75339983ns 1350331 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ae +75340062ns 1350335 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab62 PA:1c00ab62 +75340082ns 1350336 1c000e82 fff60613 addi x12, x12, -1 x12=000001ad x12:000001ae +75340102ns 1350337 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab63 x6:1c00ab62 +75340122ns 1350338 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ad +75340201ns 1350342 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab63 PA:1c00ab63 +75340221ns 1350343 1c000e82 fff60613 addi x12, x12, -1 x12=000001ac x12:000001ad +75340241ns 1350344 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab64 x6:1c00ab63 +75340260ns 1350345 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ac +75340340ns 1350349 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab64 PA:1c00ab64 +75340359ns 1350350 1c000e82 fff60613 addi x12, x12, -1 x12=000001ab x12:000001ac +75340379ns 1350351 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab65 x6:1c00ab64 +75340399ns 1350352 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ab +75340478ns 1350356 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab65 PA:1c00ab65 +75340498ns 1350357 1c000e82 fff60613 addi x12, x12, -1 x12=000001aa x12:000001ab +75340518ns 1350358 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab66 x6:1c00ab65 +75340537ns 1350359 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001aa +75340617ns 1350363 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab66 PA:1c00ab66 +75340636ns 1350364 1c000e82 fff60613 addi x12, x12, -1 x12=000001a9 x12:000001aa +75340656ns 1350365 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab67 x6:1c00ab66 +75340676ns 1350366 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001a9 +75340755ns 1350370 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab67 PA:1c00ab67 +75340775ns 1350371 1c000e82 fff60613 addi x12, x12, -1 x12=000001a8 x12:000001a9 +75340795ns 1350372 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab68 x6:1c00ab67 +75340815ns 1350373 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001a8 +75340894ns 1350377 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab68 PA:1c00ab68 +75340914ns 1350378 1c000e82 fff60613 addi x12, x12, -1 x12=000001a7 x12:000001a8 +75340933ns 1350379 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab69 x6:1c00ab68 +75340953ns 1350380 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001a7 +75341032ns 1350384 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab69 PA:1c00ab69 +75341052ns 1350385 1c000e82 fff60613 addi x12, x12, -1 x12=000001a6 x12:000001a7 +75341072ns 1350386 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab6a x6:1c00ab69 +75341092ns 1350387 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001a6 +75341171ns 1350391 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab6a PA:1c00ab6a +75341191ns 1350392 1c000e82 fff60613 addi x12, x12, -1 x12=000001a5 x12:000001a6 +75341210ns 1350393 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab6b x6:1c00ab6a +75341230ns 1350394 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001a5 +75341309ns 1350398 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab6b PA:1c00ab6b +75341329ns 1350399 1c000e82 fff60613 addi x12, x12, -1 x12=000001a4 x12:000001a5 +75341349ns 1350400 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab6c x6:1c00ab6b +75341369ns 1350401 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001a4 +75341448ns 1350405 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab6c PA:1c00ab6c +75341468ns 1350406 1c000e82 fff60613 addi x12, x12, -1 x12=000001a3 x12:000001a4 +75341487ns 1350407 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab6d x6:1c00ab6c +75341507ns 1350408 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001a3 +75341586ns 1350412 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab6d PA:1c00ab6d +75341606ns 1350413 1c000e82 fff60613 addi x12, x12, -1 x12=000001a2 x12:000001a3 +75341626ns 1350414 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab6e x6:1c00ab6d +75341646ns 1350415 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001a2 +75341725ns 1350419 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab6e PA:1c00ab6e +75341745ns 1350420 1c000e82 fff60613 addi x12, x12, -1 x12=000001a1 x12:000001a2 +75341765ns 1350421 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab6f x6:1c00ab6e +75341784ns 1350422 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001a1 +75341864ns 1350426 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab6f PA:1c00ab6f +75341883ns 1350427 1c000e82 fff60613 addi x12, x12, -1 x12=000001a0 x12:000001a1 +75341903ns 1350428 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab70 x6:1c00ab6f +75341923ns 1350429 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001a0 +75342002ns 1350433 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab70 PA:1c00ab70 +75342022ns 1350434 1c000e82 fff60613 addi x12, x12, -1 x12=0000019f x12:000001a0 +75342042ns 1350435 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab71 x6:1c00ab70 +75342061ns 1350436 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000019f +75342141ns 1350440 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab71 PA:1c00ab71 +75342160ns 1350441 1c000e82 fff60613 addi x12, x12, -1 x12=0000019e x12:0000019f +75342180ns 1350442 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab72 x6:1c00ab71 +75342200ns 1350443 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000019e +75342279ns 1350447 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab72 PA:1c00ab72 +75342299ns 1350448 1c000e82 fff60613 addi x12, x12, -1 x12=0000019d x12:0000019e +75342319ns 1350449 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab73 x6:1c00ab72 +75342339ns 1350450 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000019d +75342418ns 1350454 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab73 PA:1c00ab73 +75342438ns 1350455 1c000e82 fff60613 addi x12, x12, -1 x12=0000019c x12:0000019d +75342457ns 1350456 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab74 x6:1c00ab73 +75342477ns 1350457 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000019c +75342556ns 1350461 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab74 PA:1c00ab74 +75342576ns 1350462 1c000e82 fff60613 addi x12, x12, -1 x12=0000019b x12:0000019c +75342596ns 1350463 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab75 x6:1c00ab74 +75342616ns 1350464 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000019b +75342695ns 1350468 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab75 PA:1c00ab75 +75342715ns 1350469 1c000e82 fff60613 addi x12, x12, -1 x12=0000019a x12:0000019b +75342734ns 1350470 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab76 x6:1c00ab75 +75342754ns 1350471 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000019a +75342833ns 1350475 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab76 PA:1c00ab76 +75342853ns 1350476 1c000e82 fff60613 addi x12, x12, -1 x12=00000199 x12:0000019a +75342873ns 1350477 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab77 x6:1c00ab76 +75342893ns 1350478 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000199 +75342972ns 1350482 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab77 PA:1c00ab77 +75342992ns 1350483 1c000e82 fff60613 addi x12, x12, -1 x12=00000198 x12:00000199 +75343011ns 1350484 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab78 x6:1c00ab77 +75343031ns 1350485 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000198 +75343110ns 1350489 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab78 PA:1c00ab78 +75343130ns 1350490 1c000e82 fff60613 addi x12, x12, -1 x12=00000197 x12:00000198 +75343150ns 1350491 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab79 x6:1c00ab78 +75343170ns 1350492 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000197 +75343249ns 1350496 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab79 PA:1c00ab79 +75343269ns 1350497 1c000e82 fff60613 addi x12, x12, -1 x12=00000196 x12:00000197 +75343289ns 1350498 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab7a x6:1c00ab79 +75343308ns 1350499 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000196 +75343388ns 1350503 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab7a PA:1c00ab7a +75343407ns 1350504 1c000e82 fff60613 addi x12, x12, -1 x12=00000195 x12:00000196 +75343427ns 1350505 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab7b x6:1c00ab7a +75343447ns 1350506 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000195 +75343526ns 1350510 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab7b PA:1c00ab7b +75343546ns 1350511 1c000e82 fff60613 addi x12, x12, -1 x12=00000194 x12:00000195 +75343566ns 1350512 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab7c x6:1c00ab7b +75343585ns 1350513 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000194 +75343665ns 1350517 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab7c PA:1c00ab7c +75343684ns 1350518 1c000e82 fff60613 addi x12, x12, -1 x12=00000193 x12:00000194 +75343704ns 1350519 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab7d x6:1c00ab7c +75343724ns 1350520 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000193 +75343803ns 1350524 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab7d PA:1c00ab7d +75343823ns 1350525 1c000e82 fff60613 addi x12, x12, -1 x12=00000192 x12:00000193 +75343843ns 1350526 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab7e x6:1c00ab7d +75343863ns 1350527 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000192 +75343942ns 1350531 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab7e PA:1c00ab7e +75343961ns 1350532 1c000e82 fff60613 addi x12, x12, -1 x12=00000191 x12:00000192 +75343981ns 1350533 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab7f x6:1c00ab7e +75344001ns 1350534 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000191 +75344080ns 1350538 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab7f PA:1c00ab7f +75344100ns 1350539 1c000e82 fff60613 addi x12, x12, -1 x12=00000190 x12:00000191 +75344120ns 1350540 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab80 x6:1c00ab7f +75344140ns 1350541 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000190 +75344219ns 1350545 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab80 PA:1c00ab80 +75344239ns 1350546 1c000e82 fff60613 addi x12, x12, -1 x12=0000018f x12:00000190 +75344258ns 1350547 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab81 x6:1c00ab80 +75344278ns 1350548 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000018f +75344357ns 1350552 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab81 PA:1c00ab81 +75344377ns 1350553 1c000e82 fff60613 addi x12, x12, -1 x12=0000018e x12:0000018f +75344397ns 1350554 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab82 x6:1c00ab81 +75344417ns 1350555 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000018e +75344496ns 1350559 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab82 PA:1c00ab82 +75344516ns 1350560 1c000e82 fff60613 addi x12, x12, -1 x12=0000018d x12:0000018e +75344535ns 1350561 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab83 x6:1c00ab82 +75344555ns 1350562 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000018d +75344634ns 1350566 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab83 PA:1c00ab83 +75344654ns 1350567 1c000e82 fff60613 addi x12, x12, -1 x12=0000018c x12:0000018d +75344674ns 1350568 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab84 x6:1c00ab83 +75344694ns 1350569 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000018c +75344773ns 1350573 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab84 PA:1c00ab84 +75344793ns 1350574 1c000e82 fff60613 addi x12, x12, -1 x12=0000018b x12:0000018c +75344813ns 1350575 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab85 x6:1c00ab84 +75344832ns 1350576 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000018b +75344912ns 1350580 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab85 PA:1c00ab85 +75344931ns 1350581 1c000e82 fff60613 addi x12, x12, -1 x12=0000018a x12:0000018b +75344951ns 1350582 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab86 x6:1c00ab85 +75344971ns 1350583 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000018a +75345050ns 1350587 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab86 PA:1c00ab86 +75345070ns 1350588 1c000e82 fff60613 addi x12, x12, -1 x12=00000189 x12:0000018a +75345090ns 1350589 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab87 x6:1c00ab86 +75345109ns 1350590 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000189 +75345189ns 1350594 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab87 PA:1c00ab87 +75345208ns 1350595 1c000e82 fff60613 addi x12, x12, -1 x12=00000188 x12:00000189 +75345228ns 1350596 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab88 x6:1c00ab87 +75345248ns 1350597 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000188 +75345327ns 1350601 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab88 PA:1c00ab88 +75345347ns 1350602 1c000e82 fff60613 addi x12, x12, -1 x12=00000187 x12:00000188 +75345367ns 1350603 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab89 x6:1c00ab88 +75345387ns 1350604 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000187 +75345466ns 1350608 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab89 PA:1c00ab89 +75345485ns 1350609 1c000e82 fff60613 addi x12, x12, -1 x12=00000186 x12:00000187 +75345505ns 1350610 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab8a x6:1c00ab89 +75345525ns 1350611 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000186 +75345604ns 1350615 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab8a PA:1c00ab8a +75345624ns 1350616 1c000e82 fff60613 addi x12, x12, -1 x12=00000185 x12:00000186 +75345644ns 1350617 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab8b x6:1c00ab8a +75345664ns 1350618 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000185 +75345743ns 1350622 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab8b PA:1c00ab8b +75345763ns 1350623 1c000e82 fff60613 addi x12, x12, -1 x12=00000184 x12:00000185 +75345782ns 1350624 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab8c x6:1c00ab8b +75345802ns 1350625 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000184 +75345881ns 1350629 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab8c PA:1c00ab8c +75345901ns 1350630 1c000e82 fff60613 addi x12, x12, -1 x12=00000183 x12:00000184 +75345921ns 1350631 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab8d x6:1c00ab8c +75345941ns 1350632 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000183 +75346020ns 1350636 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab8d PA:1c00ab8d +75346040ns 1350637 1c000e82 fff60613 addi x12, x12, -1 x12=00000182 x12:00000183 +75346059ns 1350638 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab8e x6:1c00ab8d +75346079ns 1350639 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000182 +75346158ns 1350643 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab8e PA:1c00ab8e +75346178ns 1350644 1c000e82 fff60613 addi x12, x12, -1 x12=00000181 x12:00000182 +75346198ns 1350645 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab8f x6:1c00ab8e +75346218ns 1350646 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000181 +75346297ns 1350650 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab8f PA:1c00ab8f +75346317ns 1350651 1c000e82 fff60613 addi x12, x12, -1 x12=00000180 x12:00000181 +75346337ns 1350652 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab90 x6:1c00ab8f +75346356ns 1350653 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000180 +75346435ns 1350657 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab90 PA:1c00ab90 +75346455ns 1350658 1c000e82 fff60613 addi x12, x12, -1 x12=0000017f x12:00000180 +75346475ns 1350659 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab91 x6:1c00ab90 +75346495ns 1350660 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000017f +75346574ns 1350664 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab91 PA:1c00ab91 +75346594ns 1350665 1c000e82 fff60613 addi x12, x12, -1 x12=0000017e x12:0000017f +75346614ns 1350666 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab92 x6:1c00ab91 +75346633ns 1350667 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000017e +75346713ns 1350671 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab92 PA:1c00ab92 +75346732ns 1350672 1c000e82 fff60613 addi x12, x12, -1 x12=0000017d x12:0000017e +75346752ns 1350673 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab93 x6:1c00ab92 +75346772ns 1350674 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000017d +75346851ns 1350678 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab93 PA:1c00ab93 +75346871ns 1350679 1c000e82 fff60613 addi x12, x12, -1 x12=0000017c x12:0000017d +75346891ns 1350680 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab94 x6:1c00ab93 +75346911ns 1350681 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000017c +75346990ns 1350685 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab94 PA:1c00ab94 +75347009ns 1350686 1c000e82 fff60613 addi x12, x12, -1 x12=0000017b x12:0000017c +75347029ns 1350687 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab95 x6:1c00ab94 +75347049ns 1350688 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000017b +75347128ns 1350692 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab95 PA:1c00ab95 +75347148ns 1350693 1c000e82 fff60613 addi x12, x12, -1 x12=0000017a x12:0000017b +75347168ns 1350694 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab96 x6:1c00ab95 +75347188ns 1350695 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000017a +75347267ns 1350699 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab96 PA:1c00ab96 +75347287ns 1350700 1c000e82 fff60613 addi x12, x12, -1 x12=00000179 x12:0000017a +75347306ns 1350701 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab97 x6:1c00ab96 +75347326ns 1350702 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000179 +75347405ns 1350706 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab97 PA:1c00ab97 +75347425ns 1350707 1c000e82 fff60613 addi x12, x12, -1 x12=00000178 x12:00000179 +75347445ns 1350708 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab98 x6:1c00ab97 +75347465ns 1350709 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000178 +75347544ns 1350713 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab98 PA:1c00ab98 +75347564ns 1350714 1c000e82 fff60613 addi x12, x12, -1 x12=00000177 x12:00000178 +75347583ns 1350715 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab99 x6:1c00ab98 +75347603ns 1350716 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000177 +75347682ns 1350720 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab99 PA:1c00ab99 +75347702ns 1350721 1c000e82 fff60613 addi x12, x12, -1 x12=00000176 x12:00000177 +75347722ns 1350722 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab9a x6:1c00ab99 +75347742ns 1350723 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000176 +75347821ns 1350727 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab9a PA:1c00ab9a +75347841ns 1350728 1c000e82 fff60613 addi x12, x12, -1 x12=00000175 x12:00000176 +75347861ns 1350729 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab9b x6:1c00ab9a +75347880ns 1350730 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000175 +75347959ns 1350734 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab9b PA:1c00ab9b +75347979ns 1350735 1c000e82 fff60613 addi x12, x12, -1 x12=00000174 x12:00000175 +75347999ns 1350736 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab9c x6:1c00ab9b +75348019ns 1350737 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000174 +75348098ns 1350741 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab9c PA:1c00ab9c +75348118ns 1350742 1c000e82 fff60613 addi x12, x12, -1 x12=00000173 x12:00000174 +75348138ns 1350743 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab9d x6:1c00ab9c +75348157ns 1350744 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000173 +75348237ns 1350748 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab9d PA:1c00ab9d +75348256ns 1350749 1c000e82 fff60613 addi x12, x12, -1 x12=00000172 x12:00000173 +75348276ns 1350750 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab9e x6:1c00ab9d +75348296ns 1350751 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000172 +75348375ns 1350755 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab9e PA:1c00ab9e +75348395ns 1350756 1c000e82 fff60613 addi x12, x12, -1 x12=00000171 x12:00000172 +75348415ns 1350757 1c000e84 00130313 addi x6, x6, 1 x6=1c00ab9f x6:1c00ab9e +75348434ns 1350758 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000171 +75348514ns 1350762 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ab9f PA:1c00ab9f +75348533ns 1350763 1c000e82 fff60613 addi x12, x12, -1 x12=00000170 x12:00000171 +75348553ns 1350764 1c000e84 00130313 addi x6, x6, 1 x6=1c00aba0 x6:1c00ab9f +75348573ns 1350765 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000170 +75348652ns 1350769 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aba0 PA:1c00aba0 +75348672ns 1350770 1c000e82 fff60613 addi x12, x12, -1 x12=0000016f x12:00000170 +75348692ns 1350771 1c000e84 00130313 addi x6, x6, 1 x6=1c00aba1 x6:1c00aba0 +75348712ns 1350772 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000016f +75348791ns 1350776 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aba1 PA:1c00aba1 +75348811ns 1350777 1c000e82 fff60613 addi x12, x12, -1 x12=0000016e x12:0000016f +75348830ns 1350778 1c000e84 00130313 addi x6, x6, 1 x6=1c00aba2 x6:1c00aba1 +75348850ns 1350779 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000016e +75348929ns 1350783 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aba2 PA:1c00aba2 +75348949ns 1350784 1c000e82 fff60613 addi x12, x12, -1 x12=0000016d x12:0000016e +75348969ns 1350785 1c000e84 00130313 addi x6, x6, 1 x6=1c00aba3 x6:1c00aba2 +75348989ns 1350786 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000016d +75349068ns 1350790 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aba3 PA:1c00aba3 +75349088ns 1350791 1c000e82 fff60613 addi x12, x12, -1 x12=0000016c x12:0000016d +75349107ns 1350792 1c000e84 00130313 addi x6, x6, 1 x6=1c00aba4 x6:1c00aba3 +75349127ns 1350793 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000016c +75349206ns 1350797 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aba4 PA:1c00aba4 +75349226ns 1350798 1c000e82 fff60613 addi x12, x12, -1 x12=0000016b x12:0000016c +75349246ns 1350799 1c000e84 00130313 addi x6, x6, 1 x6=1c00aba5 x6:1c00aba4 +75349266ns 1350800 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000016b +75349345ns 1350804 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aba5 PA:1c00aba5 +75349365ns 1350805 1c000e82 fff60613 addi x12, x12, -1 x12=0000016a x12:0000016b +75349385ns 1350806 1c000e84 00130313 addi x6, x6, 1 x6=1c00aba6 x6:1c00aba5 +75349404ns 1350807 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000016a +75349483ns 1350811 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aba6 PA:1c00aba6 +75349503ns 1350812 1c000e82 fff60613 addi x12, x12, -1 x12=00000169 x12:0000016a +75349523ns 1350813 1c000e84 00130313 addi x6, x6, 1 x6=1c00aba7 x6:1c00aba6 +75349543ns 1350814 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000169 +75349622ns 1350818 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aba7 PA:1c00aba7 +75349642ns 1350819 1c000e82 fff60613 addi x12, x12, -1 x12=00000168 x12:00000169 +75349662ns 1350820 1c000e84 00130313 addi x6, x6, 1 x6=1c00aba8 x6:1c00aba7 +75349681ns 1350821 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000168 +75349761ns 1350825 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aba8 PA:1c00aba8 +75349780ns 1350826 1c000e82 fff60613 addi x12, x12, -1 x12=00000167 x12:00000168 +75349800ns 1350827 1c000e84 00130313 addi x6, x6, 1 x6=1c00aba9 x6:1c00aba8 +75349820ns 1350828 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000167 +75349899ns 1350832 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aba9 PA:1c00aba9 +75349919ns 1350833 1c000e82 fff60613 addi x12, x12, -1 x12=00000166 x12:00000167 +75349939ns 1350834 1c000e84 00130313 addi x6, x6, 1 x6=1c00abaa x6:1c00aba9 +75349958ns 1350835 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000166 +75350038ns 1350839 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abaa PA:1c00abaa +75350057ns 1350840 1c000e82 fff60613 addi x12, x12, -1 x12=00000165 x12:00000166 +75350077ns 1350841 1c000e84 00130313 addi x6, x6, 1 x6=1c00abab x6:1c00abaa +75350097ns 1350842 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000165 +75350176ns 1350846 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abab PA:1c00abab +75350196ns 1350847 1c000e82 fff60613 addi x12, x12, -1 x12=00000164 x12:00000165 +75350216ns 1350848 1c000e84 00130313 addi x6, x6, 1 x6=1c00abac x6:1c00abab +75350236ns 1350849 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000164 +75350315ns 1350853 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abac PA:1c00abac +75350335ns 1350854 1c000e82 fff60613 addi x12, x12, -1 x12=00000163 x12:00000164 +75350354ns 1350855 1c000e84 00130313 addi x6, x6, 1 x6=1c00abad x6:1c00abac +75350374ns 1350856 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000163 +75350453ns 1350860 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abad PA:1c00abad +75350473ns 1350861 1c000e82 fff60613 addi x12, x12, -1 x12=00000162 x12:00000163 +75350493ns 1350862 1c000e84 00130313 addi x6, x6, 1 x6=1c00abae x6:1c00abad +75350513ns 1350863 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000162 +75350592ns 1350867 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abae PA:1c00abae +75350612ns 1350868 1c000e82 fff60613 addi x12, x12, -1 x12=00000161 x12:00000162 +75350631ns 1350869 1c000e84 00130313 addi x6, x6, 1 x6=1c00abaf x6:1c00abae +75350651ns 1350870 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000161 +75350730ns 1350874 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abaf PA:1c00abaf +75350750ns 1350875 1c000e82 fff60613 addi x12, x12, -1 x12=00000160 x12:00000161 +75350770ns 1350876 1c000e84 00130313 addi x6, x6, 1 x6=1c00abb0 x6:1c00abaf +75350790ns 1350877 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000160 +75350869ns 1350881 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abb0 PA:1c00abb0 +75350889ns 1350882 1c000e82 fff60613 addi x12, x12, -1 x12=0000015f x12:00000160 +75350908ns 1350883 1c000e84 00130313 addi x6, x6, 1 x6=1c00abb1 x6:1c00abb0 +75350928ns 1350884 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000015f +75351007ns 1350888 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abb1 PA:1c00abb1 +75351027ns 1350889 1c000e82 fff60613 addi x12, x12, -1 x12=0000015e x12:0000015f +75351047ns 1350890 1c000e84 00130313 addi x6, x6, 1 x6=1c00abb2 x6:1c00abb1 +75351067ns 1350891 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000015e +75351146ns 1350895 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abb2 PA:1c00abb2 +75351166ns 1350896 1c000e82 fff60613 addi x12, x12, -1 x12=0000015d x12:0000015e +75351186ns 1350897 1c000e84 00130313 addi x6, x6, 1 x6=1c00abb3 x6:1c00abb2 +75351205ns 1350898 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000015d +75351285ns 1350902 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abb3 PA:1c00abb3 +75351304ns 1350903 1c000e82 fff60613 addi x12, x12, -1 x12=0000015c x12:0000015d +75351324ns 1350904 1c000e84 00130313 addi x6, x6, 1 x6=1c00abb4 x6:1c00abb3 +75351344ns 1350905 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000015c +75351423ns 1350909 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abb4 PA:1c00abb4 +75351443ns 1350910 1c000e82 fff60613 addi x12, x12, -1 x12=0000015b x12:0000015c +75351463ns 1350911 1c000e84 00130313 addi x6, x6, 1 x6=1c00abb5 x6:1c00abb4 +75351482ns 1350912 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000015b +75351562ns 1350916 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abb5 PA:1c00abb5 +75351581ns 1350917 1c000e82 fff60613 addi x12, x12, -1 x12=0000015a x12:0000015b +75351601ns 1350918 1c000e84 00130313 addi x6, x6, 1 x6=1c00abb6 x6:1c00abb5 +75351621ns 1350919 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000015a +75351700ns 1350923 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abb6 PA:1c00abb6 +75351720ns 1350924 1c000e82 fff60613 addi x12, x12, -1 x12=00000159 x12:0000015a +75351740ns 1350925 1c000e84 00130313 addi x6, x6, 1 x6=1c00abb7 x6:1c00abb6 +75351760ns 1350926 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000159 +75351839ns 1350930 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abb7 PA:1c00abb7 +75351859ns 1350931 1c000e82 fff60613 addi x12, x12, -1 x12=00000158 x12:00000159 +75351878ns 1350932 1c000e84 00130313 addi x6, x6, 1 x6=1c00abb8 x6:1c00abb7 +75351898ns 1350933 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000158 +75351977ns 1350937 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abb8 PA:1c00abb8 +75351997ns 1350938 1c000e82 fff60613 addi x12, x12, -1 x12=00000157 x12:00000158 +75352017ns 1350939 1c000e84 00130313 addi x6, x6, 1 x6=1c00abb9 x6:1c00abb8 +75352037ns 1350940 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000157 +75352116ns 1350944 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abb9 PA:1c00abb9 +75352136ns 1350945 1c000e82 fff60613 addi x12, x12, -1 x12=00000156 x12:00000157 +75352155ns 1350946 1c000e84 00130313 addi x6, x6, 1 x6=1c00abba x6:1c00abb9 +75352175ns 1350947 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000156 +75352254ns 1350951 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abba PA:1c00abba +75352274ns 1350952 1c000e82 fff60613 addi x12, x12, -1 x12=00000155 x12:00000156 +75352294ns 1350953 1c000e84 00130313 addi x6, x6, 1 x6=1c00abbb x6:1c00abba +75352314ns 1350954 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000155 +75352393ns 1350958 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abbb PA:1c00abbb +75352413ns 1350959 1c000e82 fff60613 addi x12, x12, -1 x12=00000154 x12:00000155 +75352432ns 1350960 1c000e84 00130313 addi x6, x6, 1 x6=1c00abbc x6:1c00abbb +75352452ns 1350961 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000154 +75352531ns 1350965 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abbc PA:1c00abbc +75352551ns 1350966 1c000e82 fff60613 addi x12, x12, -1 x12=00000153 x12:00000154 +75352571ns 1350967 1c000e84 00130313 addi x6, x6, 1 x6=1c00abbd x6:1c00abbc +75352591ns 1350968 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000153 +75352670ns 1350972 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abbd PA:1c00abbd +75352690ns 1350973 1c000e82 fff60613 addi x12, x12, -1 x12=00000152 x12:00000153 +75352710ns 1350974 1c000e84 00130313 addi x6, x6, 1 x6=1c00abbe x6:1c00abbd +75352729ns 1350975 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000152 +75352809ns 1350979 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abbe PA:1c00abbe +75352828ns 1350980 1c000e82 fff60613 addi x12, x12, -1 x12=00000151 x12:00000152 +75352848ns 1350981 1c000e84 00130313 addi x6, x6, 1 x6=1c00abbf x6:1c00abbe +75352868ns 1350982 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000151 +75352947ns 1350986 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abbf PA:1c00abbf +75352967ns 1350987 1c000e82 fff60613 addi x12, x12, -1 x12=00000150 x12:00000151 +75352987ns 1350988 1c000e84 00130313 addi x6, x6, 1 x6=1c00abc0 x6:1c00abbf +75353006ns 1350989 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000150 +75353086ns 1350993 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abc0 PA:1c00abc0 +75353105ns 1350994 1c000e82 fff60613 addi x12, x12, -1 x12=0000014f x12:00000150 +75353125ns 1350995 1c000e84 00130313 addi x6, x6, 1 x6=1c00abc1 x6:1c00abc0 +75353145ns 1350996 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000014f +75353224ns 1351000 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abc1 PA:1c00abc1 +75353244ns 1351001 1c000e82 fff60613 addi x12, x12, -1 x12=0000014e x12:0000014f +75353264ns 1351002 1c000e84 00130313 addi x6, x6, 1 x6=1c00abc2 x6:1c00abc1 +75353284ns 1351003 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000014e +75353363ns 1351007 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abc2 PA:1c00abc2 +75353382ns 1351008 1c000e82 fff60613 addi x12, x12, -1 x12=0000014d x12:0000014e +75353402ns 1351009 1c000e84 00130313 addi x6, x6, 1 x6=1c00abc3 x6:1c00abc2 +75353422ns 1351010 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000014d +75353501ns 1351014 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abc3 PA:1c00abc3 +75353521ns 1351015 1c000e82 fff60613 addi x12, x12, -1 x12=0000014c x12:0000014d +75353541ns 1351016 1c000e84 00130313 addi x6, x6, 1 x6=1c00abc4 x6:1c00abc3 +75353561ns 1351017 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000014c +75353640ns 1351021 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abc4 PA:1c00abc4 +75353660ns 1351022 1c000e82 fff60613 addi x12, x12, -1 x12=0000014b x12:0000014c +75353679ns 1351023 1c000e84 00130313 addi x6, x6, 1 x6=1c00abc5 x6:1c00abc4 +75353699ns 1351024 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000014b +75353778ns 1351028 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abc5 PA:1c00abc5 +75353798ns 1351029 1c000e82 fff60613 addi x12, x12, -1 x12=0000014a x12:0000014b +75353818ns 1351030 1c000e84 00130313 addi x6, x6, 1 x6=1c00abc6 x6:1c00abc5 +75353838ns 1351031 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000014a +75353917ns 1351035 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abc6 PA:1c00abc6 +75353937ns 1351036 1c000e82 fff60613 addi x12, x12, -1 x12=00000149 x12:0000014a +75353956ns 1351037 1c000e84 00130313 addi x6, x6, 1 x6=1c00abc7 x6:1c00abc6 +75353976ns 1351038 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000149 +75354055ns 1351042 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abc7 PA:1c00abc7 +75354075ns 1351043 1c000e82 fff60613 addi x12, x12, -1 x12=00000148 x12:00000149 +75354095ns 1351044 1c000e84 00130313 addi x6, x6, 1 x6=1c00abc8 x6:1c00abc7 +75354115ns 1351045 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000148 +75354194ns 1351049 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abc8 PA:1c00abc8 +75354214ns 1351050 1c000e82 fff60613 addi x12, x12, -1 x12=00000147 x12:00000148 +75354234ns 1351051 1c000e84 00130313 addi x6, x6, 1 x6=1c00abc9 x6:1c00abc8 +75354253ns 1351052 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000147 +75354333ns 1351056 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abc9 PA:1c00abc9 +75354352ns 1351057 1c000e82 fff60613 addi x12, x12, -1 x12=00000146 x12:00000147 +75354372ns 1351058 1c000e84 00130313 addi x6, x6, 1 x6=1c00abca x6:1c00abc9 +75354392ns 1351059 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000146 +75354471ns 1351063 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abca PA:1c00abca +75354491ns 1351064 1c000e82 fff60613 addi x12, x12, -1 x12=00000145 x12:00000146 +75354511ns 1351065 1c000e84 00130313 addi x6, x6, 1 x6=1c00abcb x6:1c00abca +75354530ns 1351066 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000145 +75354610ns 1351070 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abcb PA:1c00abcb +75354629ns 1351071 1c000e82 fff60613 addi x12, x12, -1 x12=00000144 x12:00000145 +75354649ns 1351072 1c000e84 00130313 addi x6, x6, 1 x6=1c00abcc x6:1c00abcb +75354669ns 1351073 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000144 +75354748ns 1351077 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abcc PA:1c00abcc +75354768ns 1351078 1c000e82 fff60613 addi x12, x12, -1 x12=00000143 x12:00000144 +75354788ns 1351079 1c000e84 00130313 addi x6, x6, 1 x6=1c00abcd x6:1c00abcc +75354808ns 1351080 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000143 +75354887ns 1351084 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abcd PA:1c00abcd +75354906ns 1351085 1c000e82 fff60613 addi x12, x12, -1 x12=00000142 x12:00000143 +75354926ns 1351086 1c000e84 00130313 addi x6, x6, 1 x6=1c00abce x6:1c00abcd +75354946ns 1351087 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000142 +75355025ns 1351091 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abce PA:1c00abce +75355045ns 1351092 1c000e82 fff60613 addi x12, x12, -1 x12=00000141 x12:00000142 +75355065ns 1351093 1c000e84 00130313 addi x6, x6, 1 x6=1c00abcf x6:1c00abce +75355085ns 1351094 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000141 +75355164ns 1351098 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abcf PA:1c00abcf +75355184ns 1351099 1c000e82 fff60613 addi x12, x12, -1 x12=00000140 x12:00000141 +75355203ns 1351100 1c000e84 00130313 addi x6, x6, 1 x6=1c00abd0 x6:1c00abcf +75355223ns 1351101 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000140 +75355302ns 1351105 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abd0 PA:1c00abd0 +75355322ns 1351106 1c000e82 fff60613 addi x12, x12, -1 x12=0000013f x12:00000140 +75355342ns 1351107 1c000e84 00130313 addi x6, x6, 1 x6=1c00abd1 x6:1c00abd0 +75355362ns 1351108 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000013f +75355441ns 1351112 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abd1 PA:1c00abd1 +75355461ns 1351113 1c000e82 fff60613 addi x12, x12, -1 x12=0000013e x12:0000013f +75355480ns 1351114 1c000e84 00130313 addi x6, x6, 1 x6=1c00abd2 x6:1c00abd1 +75355500ns 1351115 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000013e +75355579ns 1351119 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abd2 PA:1c00abd2 +75355599ns 1351120 1c000e82 fff60613 addi x12, x12, -1 x12=0000013d x12:0000013e +75355619ns 1351121 1c000e84 00130313 addi x6, x6, 1 x6=1c00abd3 x6:1c00abd2 +75355639ns 1351122 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000013d +75355718ns 1351126 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abd3 PA:1c00abd3 +75355738ns 1351127 1c000e82 fff60613 addi x12, x12, -1 x12=0000013c x12:0000013d +75355758ns 1351128 1c000e84 00130313 addi x6, x6, 1 x6=1c00abd4 x6:1c00abd3 +75355777ns 1351129 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000013c +75355856ns 1351133 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abd4 PA:1c00abd4 +75355876ns 1351134 1c000e82 fff60613 addi x12, x12, -1 x12=0000013b x12:0000013c +75355896ns 1351135 1c000e84 00130313 addi x6, x6, 1 x6=1c00abd5 x6:1c00abd4 +75355916ns 1351136 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000013b +75355995ns 1351140 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abd5 PA:1c00abd5 +75356015ns 1351141 1c000e82 fff60613 addi x12, x12, -1 x12=0000013a x12:0000013b +75356035ns 1351142 1c000e84 00130313 addi x6, x6, 1 x6=1c00abd6 x6:1c00abd5 +75356054ns 1351143 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000013a +75356134ns 1351147 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abd6 PA:1c00abd6 +75356153ns 1351148 1c000e82 fff60613 addi x12, x12, -1 x12=00000139 x12:0000013a +75356173ns 1351149 1c000e84 00130313 addi x6, x6, 1 x6=1c00abd7 x6:1c00abd6 +75356193ns 1351150 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000139 +75356272ns 1351154 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abd7 PA:1c00abd7 +75356292ns 1351155 1c000e82 fff60613 addi x12, x12, -1 x12=00000138 x12:00000139 +75356312ns 1351156 1c000e84 00130313 addi x6, x6, 1 x6=1c00abd8 x6:1c00abd7 +75356331ns 1351157 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000138 +75356411ns 1351161 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abd8 PA:1c00abd8 +75356430ns 1351162 1c000e82 fff60613 addi x12, x12, -1 x12=00000137 x12:00000138 +75356450ns 1351163 1c000e84 00130313 addi x6, x6, 1 x6=1c00abd9 x6:1c00abd8 +75356470ns 1351164 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000137 +75356549ns 1351168 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abd9 PA:1c00abd9 +75356569ns 1351169 1c000e82 fff60613 addi x12, x12, -1 x12=00000136 x12:00000137 +75356589ns 1351170 1c000e84 00130313 addi x6, x6, 1 x6=1c00abda x6:1c00abd9 +75356609ns 1351171 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000136 +75356688ns 1351175 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abda PA:1c00abda +75356708ns 1351176 1c000e82 fff60613 addi x12, x12, -1 x12=00000135 x12:00000136 +75356727ns 1351177 1c000e84 00130313 addi x6, x6, 1 x6=1c00abdb x6:1c00abda +75356747ns 1351178 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000135 +75356826ns 1351182 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abdb PA:1c00abdb +75356846ns 1351183 1c000e82 fff60613 addi x12, x12, -1 x12=00000134 x12:00000135 +75356866ns 1351184 1c000e84 00130313 addi x6, x6, 1 x6=1c00abdc x6:1c00abdb +75356886ns 1351185 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000134 +75356965ns 1351189 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abdc PA:1c00abdc +75356985ns 1351190 1c000e82 fff60613 addi x12, x12, -1 x12=00000133 x12:00000134 +75357004ns 1351191 1c000e84 00130313 addi x6, x6, 1 x6=1c00abdd x6:1c00abdc +75357024ns 1351192 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000133 +75357103ns 1351196 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abdd PA:1c00abdd +75357123ns 1351197 1c000e82 fff60613 addi x12, x12, -1 x12=00000132 x12:00000133 +75357143ns 1351198 1c000e84 00130313 addi x6, x6, 1 x6=1c00abde x6:1c00abdd +75357163ns 1351199 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000132 +75357242ns 1351203 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abde PA:1c00abde +75357262ns 1351204 1c000e82 fff60613 addi x12, x12, -1 x12=00000131 x12:00000132 +75357282ns 1351205 1c000e84 00130313 addi x6, x6, 1 x6=1c00abdf x6:1c00abde +75357301ns 1351206 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000131 +75357380ns 1351210 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abdf PA:1c00abdf +75357400ns 1351211 1c000e82 fff60613 addi x12, x12, -1 x12=00000130 x12:00000131 +75357420ns 1351212 1c000e84 00130313 addi x6, x6, 1 x6=1c00abe0 x6:1c00abdf +75357440ns 1351213 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000130 +75357519ns 1351217 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abe0 PA:1c00abe0 +75357539ns 1351218 1c000e82 fff60613 addi x12, x12, -1 x12=0000012f x12:00000130 +75357559ns 1351219 1c000e84 00130313 addi x6, x6, 1 x6=1c00abe1 x6:1c00abe0 +75357578ns 1351220 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000012f +75357658ns 1351224 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abe1 PA:1c00abe1 +75357677ns 1351225 1c000e82 fff60613 addi x12, x12, -1 x12=0000012e x12:0000012f +75357697ns 1351226 1c000e84 00130313 addi x6, x6, 1 x6=1c00abe2 x6:1c00abe1 +75357717ns 1351227 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000012e +75357796ns 1351231 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abe2 PA:1c00abe2 +75357816ns 1351232 1c000e82 fff60613 addi x12, x12, -1 x12=0000012d x12:0000012e +75357836ns 1351233 1c000e84 00130313 addi x6, x6, 1 x6=1c00abe3 x6:1c00abe2 +75357855ns 1351234 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000012d +75357935ns 1351238 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abe3 PA:1c00abe3 +75357954ns 1351239 1c000e82 fff60613 addi x12, x12, -1 x12=0000012c x12:0000012d +75357974ns 1351240 1c000e84 00130313 addi x6, x6, 1 x6=1c00abe4 x6:1c00abe3 +75357994ns 1351241 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000012c +75358073ns 1351245 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abe4 PA:1c00abe4 +75358093ns 1351246 1c000e82 fff60613 addi x12, x12, -1 x12=0000012b x12:0000012c +75358113ns 1351247 1c000e84 00130313 addi x6, x6, 1 x6=1c00abe5 x6:1c00abe4 +75358133ns 1351248 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000012b +75358212ns 1351252 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abe5 PA:1c00abe5 +75358232ns 1351253 1c000e82 fff60613 addi x12, x12, -1 x12=0000012a x12:0000012b +75358251ns 1351254 1c000e84 00130313 addi x6, x6, 1 x6=1c00abe6 x6:1c00abe5 +75358271ns 1351255 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000012a +75358350ns 1351259 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abe6 PA:1c00abe6 +75358370ns 1351260 1c000e82 fff60613 addi x12, x12, -1 x12=00000129 x12:0000012a +75358390ns 1351261 1c000e84 00130313 addi x6, x6, 1 x6=1c00abe7 x6:1c00abe6 +75358410ns 1351262 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000129 +75358489ns 1351266 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abe7 PA:1c00abe7 +75358509ns 1351267 1c000e82 fff60613 addi x12, x12, -1 x12=00000128 x12:00000129 +75358528ns 1351268 1c000e84 00130313 addi x6, x6, 1 x6=1c00abe8 x6:1c00abe7 +75358548ns 1351269 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000128 +75358627ns 1351273 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abe8 PA:1c00abe8 +75358647ns 1351274 1c000e82 fff60613 addi x12, x12, -1 x12=00000127 x12:00000128 +75358667ns 1351275 1c000e84 00130313 addi x6, x6, 1 x6=1c00abe9 x6:1c00abe8 +75358687ns 1351276 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000127 +75358766ns 1351280 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abe9 PA:1c00abe9 +75358786ns 1351281 1c000e82 fff60613 addi x12, x12, -1 x12=00000126 x12:00000127 +75358805ns 1351282 1c000e84 00130313 addi x6, x6, 1 x6=1c00abea x6:1c00abe9 +75358825ns 1351283 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000126 +75358904ns 1351287 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abea PA:1c00abea +75358924ns 1351288 1c000e82 fff60613 addi x12, x12, -1 x12=00000125 x12:00000126 +75358944ns 1351289 1c000e84 00130313 addi x6, x6, 1 x6=1c00abeb x6:1c00abea +75358964ns 1351290 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000125 +75359043ns 1351294 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abeb PA:1c00abeb +75359063ns 1351295 1c000e82 fff60613 addi x12, x12, -1 x12=00000124 x12:00000125 +75359083ns 1351296 1c000e84 00130313 addi x6, x6, 1 x6=1c00abec x6:1c00abeb +75359102ns 1351297 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000124 +75359182ns 1351301 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abec PA:1c00abec +75359201ns 1351302 1c000e82 fff60613 addi x12, x12, -1 x12=00000123 x12:00000124 +75359221ns 1351303 1c000e84 00130313 addi x6, x6, 1 x6=1c00abed x6:1c00abec +75359241ns 1351304 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000123 +75359320ns 1351308 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abed PA:1c00abed +75359340ns 1351309 1c000e82 fff60613 addi x12, x12, -1 x12=00000122 x12:00000123 +75359360ns 1351310 1c000e84 00130313 addi x6, x6, 1 x6=1c00abee x6:1c00abed +75359379ns 1351311 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000122 +75359459ns 1351315 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abee PA:1c00abee +75359478ns 1351316 1c000e82 fff60613 addi x12, x12, -1 x12=00000121 x12:00000122 +75359498ns 1351317 1c000e84 00130313 addi x6, x6, 1 x6=1c00abef x6:1c00abee +75359518ns 1351318 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000121 +75359597ns 1351322 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abef PA:1c00abef +75359617ns 1351323 1c000e82 fff60613 addi x12, x12, -1 x12=00000120 x12:00000121 +75359637ns 1351324 1c000e84 00130313 addi x6, x6, 1 x6=1c00abf0 x6:1c00abef +75359657ns 1351325 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000120 +75359736ns 1351329 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abf0 PA:1c00abf0 +75359756ns 1351330 1c000e82 fff60613 addi x12, x12, -1 x12=0000011f x12:00000120 +75359775ns 1351331 1c000e84 00130313 addi x6, x6, 1 x6=1c00abf1 x6:1c00abf0 +75359795ns 1351332 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000011f +75359874ns 1351336 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abf1 PA:1c00abf1 +75359894ns 1351337 1c000e82 fff60613 addi x12, x12, -1 x12=0000011e x12:0000011f +75359914ns 1351338 1c000e84 00130313 addi x6, x6, 1 x6=1c00abf2 x6:1c00abf1 +75359934ns 1351339 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000011e +75360013ns 1351343 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abf2 PA:1c00abf2 +75360033ns 1351344 1c000e82 fff60613 addi x12, x12, -1 x12=0000011d x12:0000011e +75360052ns 1351345 1c000e84 00130313 addi x6, x6, 1 x6=1c00abf3 x6:1c00abf2 +75360072ns 1351346 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000011d +75360151ns 1351350 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abf3 PA:1c00abf3 +75360171ns 1351351 1c000e82 fff60613 addi x12, x12, -1 x12=0000011c x12:0000011d +75360191ns 1351352 1c000e84 00130313 addi x6, x6, 1 x6=1c00abf4 x6:1c00abf3 +75360211ns 1351353 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000011c +75360290ns 1351357 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abf4 PA:1c00abf4 +75360310ns 1351358 1c000e82 fff60613 addi x12, x12, -1 x12=0000011b x12:0000011c +75360329ns 1351359 1c000e84 00130313 addi x6, x6, 1 x6=1c00abf5 x6:1c00abf4 +75360349ns 1351360 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000011b +75360428ns 1351364 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abf5 PA:1c00abf5 +75360448ns 1351365 1c000e82 fff60613 addi x12, x12, -1 x12=0000011a x12:0000011b +75360468ns 1351366 1c000e84 00130313 addi x6, x6, 1 x6=1c00abf6 x6:1c00abf5 +75360488ns 1351367 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000011a +75360567ns 1351371 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abf6 PA:1c00abf6 +75360587ns 1351372 1c000e82 fff60613 addi x12, x12, -1 x12=00000119 x12:0000011a +75360607ns 1351373 1c000e84 00130313 addi x6, x6, 1 x6=1c00abf7 x6:1c00abf6 +75360626ns 1351374 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000119 +75360706ns 1351378 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abf7 PA:1c00abf7 +75360725ns 1351379 1c000e82 fff60613 addi x12, x12, -1 x12=00000118 x12:00000119 +75360745ns 1351380 1c000e84 00130313 addi x6, x6, 1 x6=1c00abf8 x6:1c00abf7 +75360765ns 1351381 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000118 +75360844ns 1351385 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abf8 PA:1c00abf8 +75360864ns 1351386 1c000e82 fff60613 addi x12, x12, -1 x12=00000117 x12:00000118 +75360884ns 1351387 1c000e84 00130313 addi x6, x6, 1 x6=1c00abf9 x6:1c00abf8 +75360903ns 1351388 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000117 +75360983ns 1351392 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abf9 PA:1c00abf9 +75361002ns 1351393 1c000e82 fff60613 addi x12, x12, -1 x12=00000116 x12:00000117 +75361022ns 1351394 1c000e84 00130313 addi x6, x6, 1 x6=1c00abfa x6:1c00abf9 +75361042ns 1351395 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000116 +75361121ns 1351399 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abfa PA:1c00abfa +75361141ns 1351400 1c000e82 fff60613 addi x12, x12, -1 x12=00000115 x12:00000116 +75361161ns 1351401 1c000e84 00130313 addi x6, x6, 1 x6=1c00abfb x6:1c00abfa +75361181ns 1351402 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000115 +75361260ns 1351406 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abfb PA:1c00abfb +75361279ns 1351407 1c000e82 fff60613 addi x12, x12, -1 x12=00000114 x12:00000115 +75361299ns 1351408 1c000e84 00130313 addi x6, x6, 1 x6=1c00abfc x6:1c00abfb +75361319ns 1351409 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000114 +75361398ns 1351413 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abfc PA:1c00abfc +75361418ns 1351414 1c000e82 fff60613 addi x12, x12, -1 x12=00000113 x12:00000114 +75361438ns 1351415 1c000e84 00130313 addi x6, x6, 1 x6=1c00abfd x6:1c00abfc +75361458ns 1351416 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000113 +75361537ns 1351420 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abfd PA:1c00abfd +75361557ns 1351421 1c000e82 fff60613 addi x12, x12, -1 x12=00000112 x12:00000113 +75361576ns 1351422 1c000e84 00130313 addi x6, x6, 1 x6=1c00abfe x6:1c00abfd +75361596ns 1351423 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000112 +75361675ns 1351427 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abfe PA:1c00abfe +75361695ns 1351428 1c000e82 fff60613 addi x12, x12, -1 x12=00000111 x12:00000112 +75361715ns 1351429 1c000e84 00130313 addi x6, x6, 1 x6=1c00abff x6:1c00abfe +75361735ns 1351430 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000111 +75361814ns 1351434 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00abff PA:1c00abff +75361834ns 1351435 1c000e82 fff60613 addi x12, x12, -1 x12=00000110 x12:00000111 +75361853ns 1351436 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac00 x6:1c00abff +75361873ns 1351437 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000110 +75361952ns 1351441 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac00 PA:1c00ac00 +75361972ns 1351442 1c000e82 fff60613 addi x12, x12, -1 x12=0000010f x12:00000110 +75361992ns 1351443 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac01 x6:1c00ac00 +75362012ns 1351444 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000010f +75362091ns 1351448 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac01 PA:1c00ac01 +75362111ns 1351449 1c000e82 fff60613 addi x12, x12, -1 x12=0000010e x12:0000010f +75362131ns 1351450 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac02 x6:1c00ac01 +75362150ns 1351451 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000010e +75362230ns 1351455 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac02 PA:1c00ac02 +75362249ns 1351456 1c000e82 fff60613 addi x12, x12, -1 x12=0000010d x12:0000010e +75362269ns 1351457 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac03 x6:1c00ac02 +75362289ns 1351458 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000010d +75362368ns 1351462 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac03 PA:1c00ac03 +75362388ns 1351463 1c000e82 fff60613 addi x12, x12, -1 x12=0000010c x12:0000010d +75362408ns 1351464 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac04 x6:1c00ac03 +75362427ns 1351465 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000010c +75362507ns 1351469 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac04 PA:1c00ac04 +75362526ns 1351470 1c000e82 fff60613 addi x12, x12, -1 x12=0000010b x12:0000010c +75362546ns 1351471 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac05 x6:1c00ac04 +75362566ns 1351472 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000010b +75362645ns 1351476 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac05 PA:1c00ac05 +75362665ns 1351477 1c000e82 fff60613 addi x12, x12, -1 x12=0000010a x12:0000010b +75362685ns 1351478 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac06 x6:1c00ac05 +75362705ns 1351479 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000010a +75362784ns 1351483 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac06 PA:1c00ac06 +75362803ns 1351484 1c000e82 fff60613 addi x12, x12, -1 x12=00000109 x12:0000010a +75362823ns 1351485 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac07 x6:1c00ac06 +75362843ns 1351486 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000109 +75362922ns 1351490 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac07 PA:1c00ac07 +75362942ns 1351491 1c000e82 fff60613 addi x12, x12, -1 x12=00000108 x12:00000109 +75362962ns 1351492 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac08 x6:1c00ac07 +75362982ns 1351493 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000108 +75363061ns 1351497 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac08 PA:1c00ac08 +75363081ns 1351498 1c000e82 fff60613 addi x12, x12, -1 x12=00000107 x12:00000108 +75363100ns 1351499 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac09 x6:1c00ac08 +75363120ns 1351500 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000107 +75363199ns 1351504 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac09 PA:1c00ac09 +75363219ns 1351505 1c000e82 fff60613 addi x12, x12, -1 x12=00000106 x12:00000107 +75363239ns 1351506 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac0a x6:1c00ac09 +75363259ns 1351507 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000106 +75363338ns 1351511 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac0a PA:1c00ac0a +75363358ns 1351512 1c000e82 fff60613 addi x12, x12, -1 x12=00000105 x12:00000106 +75363377ns 1351513 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac0b x6:1c00ac0a +75363397ns 1351514 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000105 +75363476ns 1351518 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac0b PA:1c00ac0b +75363496ns 1351519 1c000e82 fff60613 addi x12, x12, -1 x12=00000104 x12:00000105 +75363516ns 1351520 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac0c x6:1c00ac0b +75363536ns 1351521 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000104 +75363615ns 1351525 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac0c PA:1c00ac0c +75363635ns 1351526 1c000e82 fff60613 addi x12, x12, -1 x12=00000103 x12:00000104 +75363655ns 1351527 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac0d x6:1c00ac0c +75363674ns 1351528 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000103 +75363753ns 1351532 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac0d PA:1c00ac0d +75363773ns 1351533 1c000e82 fff60613 addi x12, x12, -1 x12=00000102 x12:00000103 +75363793ns 1351534 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac0e x6:1c00ac0d +75363813ns 1351535 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000102 +75363892ns 1351539 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac0e PA:1c00ac0e +75363912ns 1351540 1c000e82 fff60613 addi x12, x12, -1 x12=00000101 x12:00000102 +75363932ns 1351541 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac0f x6:1c00ac0e +75363951ns 1351542 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000101 +75364031ns 1351546 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac0f PA:1c00ac0f +75364050ns 1351547 1c000e82 fff60613 addi x12, x12, -1 x12=00000100 x12:00000101 +75364070ns 1351548 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac10 x6:1c00ac0f +75364090ns 1351549 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000100 +75364169ns 1351553 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac10 PA:1c00ac10 +75364189ns 1351554 1c000e82 fff60613 addi x12, x12, -1 x12=000000ff x12:00000100 +75364209ns 1351555 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac11 x6:1c00ac10 +75364229ns 1351556 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ff +75364308ns 1351560 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac11 PA:1c00ac11 +75364327ns 1351561 1c000e82 fff60613 addi x12, x12, -1 x12=000000fe x12:000000ff +75364347ns 1351562 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac12 x6:1c00ac11 +75364367ns 1351563 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000fe +75364446ns 1351567 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac12 PA:1c00ac12 +75364466ns 1351568 1c000e82 fff60613 addi x12, x12, -1 x12=000000fd x12:000000fe +75364486ns 1351569 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac13 x6:1c00ac12 +75364506ns 1351570 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000fd +75364585ns 1351574 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac13 PA:1c00ac13 +75364605ns 1351575 1c000e82 fff60613 addi x12, x12, -1 x12=000000fc x12:000000fd +75364624ns 1351576 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac14 x6:1c00ac13 +75364644ns 1351577 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000fc +75364723ns 1351581 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac14 PA:1c00ac14 +75364743ns 1351582 1c000e82 fff60613 addi x12, x12, -1 x12=000000fb x12:000000fc +75364763ns 1351583 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac15 x6:1c00ac14 +75364783ns 1351584 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000fb +75364862ns 1351588 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac15 PA:1c00ac15 +75364882ns 1351589 1c000e82 fff60613 addi x12, x12, -1 x12=000000fa x12:000000fb +75364901ns 1351590 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac16 x6:1c00ac15 +75364921ns 1351591 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000fa +75365000ns 1351595 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac16 PA:1c00ac16 +75365020ns 1351596 1c000e82 fff60613 addi x12, x12, -1 x12=000000f9 x12:000000fa +75365040ns 1351597 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac17 x6:1c00ac16 +75365060ns 1351598 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f9 +75365139ns 1351602 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac17 PA:1c00ac17 +75365159ns 1351603 1c000e82 fff60613 addi x12, x12, -1 x12=000000f8 x12:000000f9 +75365179ns 1351604 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac18 x6:1c00ac17 +75365198ns 1351605 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f8 +75365277ns 1351609 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac18 PA:1c00ac18 +75365297ns 1351610 1c000e82 fff60613 addi x12, x12, -1 x12=000000f7 x12:000000f8 +75365317ns 1351611 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac19 x6:1c00ac18 +75365337ns 1351612 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f7 +75365416ns 1351616 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac19 PA:1c00ac19 +75365436ns 1351617 1c000e82 fff60613 addi x12, x12, -1 x12=000000f6 x12:000000f7 +75365456ns 1351618 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac1a x6:1c00ac19 +75365475ns 1351619 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f6 +75365555ns 1351623 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac1a PA:1c00ac1a +75365574ns 1351624 1c000e82 fff60613 addi x12, x12, -1 x12=000000f5 x12:000000f6 +75365594ns 1351625 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac1b x6:1c00ac1a +75365614ns 1351626 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f5 +75365693ns 1351630 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac1b PA:1c00ac1b +75365713ns 1351631 1c000e82 fff60613 addi x12, x12, -1 x12=000000f4 x12:000000f5 +75365733ns 1351632 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac1c x6:1c00ac1b +75365752ns 1351633 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f4 +75365832ns 1351637 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac1c PA:1c00ac1c +75365851ns 1351638 1c000e82 fff60613 addi x12, x12, -1 x12=000000f3 x12:000000f4 +75365871ns 1351639 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac1d x6:1c00ac1c +75365891ns 1351640 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f3 +75365970ns 1351644 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac1d PA:1c00ac1d +75365990ns 1351645 1c000e82 fff60613 addi x12, x12, -1 x12=000000f2 x12:000000f3 +75366010ns 1351646 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac1e x6:1c00ac1d +75366030ns 1351647 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f2 +75366109ns 1351651 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac1e PA:1c00ac1e +75366129ns 1351652 1c000e82 fff60613 addi x12, x12, -1 x12=000000f1 x12:000000f2 +75366148ns 1351653 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac1f x6:1c00ac1e +75366168ns 1351654 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f1 +75366247ns 1351658 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac1f PA:1c00ac1f +75366267ns 1351659 1c000e82 fff60613 addi x12, x12, -1 x12=000000f0 x12:000000f1 +75366287ns 1351660 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac20 x6:1c00ac1f +75366307ns 1351661 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f0 +75366386ns 1351665 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac20 PA:1c00ac20 +75366406ns 1351666 1c000e82 fff60613 addi x12, x12, -1 x12=000000ef x12:000000f0 +75366425ns 1351667 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac21 x6:1c00ac20 +75366445ns 1351668 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ef +75366524ns 1351672 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac21 PA:1c00ac21 +75366544ns 1351673 1c000e82 fff60613 addi x12, x12, -1 x12=000000ee x12:000000ef +75366564ns 1351674 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac22 x6:1c00ac21 +75366584ns 1351675 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ee +75366663ns 1351679 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac22 PA:1c00ac22 +75366683ns 1351680 1c000e82 fff60613 addi x12, x12, -1 x12=000000ed x12:000000ee +75366703ns 1351681 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac23 x6:1c00ac22 +75366722ns 1351682 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ed +75366801ns 1351686 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac23 PA:1c00ac23 +75366821ns 1351687 1c000e82 fff60613 addi x12, x12, -1 x12=000000ec x12:000000ed +75366841ns 1351688 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac24 x6:1c00ac23 +75366861ns 1351689 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ec +75366940ns 1351693 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac24 PA:1c00ac24 +75366960ns 1351694 1c000e82 fff60613 addi x12, x12, -1 x12=000000eb x12:000000ec +75366980ns 1351695 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac25 x6:1c00ac24 +75366999ns 1351696 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000eb +75367079ns 1351700 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac25 PA:1c00ac25 +75367098ns 1351701 1c000e82 fff60613 addi x12, x12, -1 x12=000000ea x12:000000eb +75367118ns 1351702 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac26 x6:1c00ac25 +75367138ns 1351703 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ea +75367217ns 1351707 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac26 PA:1c00ac26 +75367237ns 1351708 1c000e82 fff60613 addi x12, x12, -1 x12=000000e9 x12:000000ea +75367257ns 1351709 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac27 x6:1c00ac26 +75367276ns 1351710 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e9 +75367356ns 1351714 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac27 PA:1c00ac27 +75367375ns 1351715 1c000e82 fff60613 addi x12, x12, -1 x12=000000e8 x12:000000e9 +75367395ns 1351716 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac28 x6:1c00ac27 +75367415ns 1351717 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e8 +75367494ns 1351721 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac28 PA:1c00ac28 +75367514ns 1351722 1c000e82 fff60613 addi x12, x12, -1 x12=000000e7 x12:000000e8 +75367534ns 1351723 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac29 x6:1c00ac28 +75367554ns 1351724 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e7 +75367633ns 1351728 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac29 PA:1c00ac29 +75367653ns 1351729 1c000e82 fff60613 addi x12, x12, -1 x12=000000e6 x12:000000e7 +75367672ns 1351730 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac2a x6:1c00ac29 +75367692ns 1351731 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e6 +75367771ns 1351735 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac2a PA:1c00ac2a +75367791ns 1351736 1c000e82 fff60613 addi x12, x12, -1 x12=000000e5 x12:000000e6 +75367811ns 1351737 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac2b x6:1c00ac2a +75367831ns 1351738 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e5 +75367910ns 1351742 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac2b PA:1c00ac2b +75367930ns 1351743 1c000e82 fff60613 addi x12, x12, -1 x12=000000e4 x12:000000e5 +75367949ns 1351744 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac2c x6:1c00ac2b +75367969ns 1351745 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e4 +75368048ns 1351749 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac2c PA:1c00ac2c +75368068ns 1351750 1c000e82 fff60613 addi x12, x12, -1 x12=000000e3 x12:000000e4 +75368088ns 1351751 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac2d x6:1c00ac2c +75368108ns 1351752 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e3 +75368187ns 1351756 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac2d PA:1c00ac2d +75368207ns 1351757 1c000e82 fff60613 addi x12, x12, -1 x12=000000e2 x12:000000e3 +75368226ns 1351758 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac2e x6:1c00ac2d +75368246ns 1351759 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e2 +75368325ns 1351763 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac2e PA:1c00ac2e +75368345ns 1351764 1c000e82 fff60613 addi x12, x12, -1 x12=000000e1 x12:000000e2 +75368365ns 1351765 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac2f x6:1c00ac2e +75368385ns 1351766 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e1 +75368464ns 1351770 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac2f PA:1c00ac2f +75368484ns 1351771 1c000e82 fff60613 addi x12, x12, -1 x12=000000e0 x12:000000e1 +75368504ns 1351772 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac30 x6:1c00ac2f +75368523ns 1351773 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e0 +75368603ns 1351777 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac30 PA:1c00ac30 +75368622ns 1351778 1c000e82 fff60613 addi x12, x12, -1 x12=000000df x12:000000e0 +75368642ns 1351779 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac31 x6:1c00ac30 +75368662ns 1351780 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000df +75368741ns 1351784 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac31 PA:1c00ac31 +75368761ns 1351785 1c000e82 fff60613 addi x12, x12, -1 x12=000000de x12:000000df +75368781ns 1351786 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac32 x6:1c00ac31 +75368800ns 1351787 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000de +75368880ns 1351791 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac32 PA:1c00ac32 +75368899ns 1351792 1c000e82 fff60613 addi x12, x12, -1 x12=000000dd x12:000000de +75368919ns 1351793 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac33 x6:1c00ac32 +75368939ns 1351794 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000dd +75369018ns 1351798 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac33 PA:1c00ac33 +75369038ns 1351799 1c000e82 fff60613 addi x12, x12, -1 x12=000000dc x12:000000dd +75369058ns 1351800 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac34 x6:1c00ac33 +75369078ns 1351801 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000dc +75369157ns 1351805 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac34 PA:1c00ac34 +75369177ns 1351806 1c000e82 fff60613 addi x12, x12, -1 x12=000000db x12:000000dc +75369196ns 1351807 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac35 x6:1c00ac34 +75369216ns 1351808 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000db +75369295ns 1351812 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac35 PA:1c00ac35 +75369315ns 1351813 1c000e82 fff60613 addi x12, x12, -1 x12=000000da x12:000000db +75369335ns 1351814 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac36 x6:1c00ac35 +75369355ns 1351815 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000da +75369434ns 1351819 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac36 PA:1c00ac36 +75369454ns 1351820 1c000e82 fff60613 addi x12, x12, -1 x12=000000d9 x12:000000da +75369473ns 1351821 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac37 x6:1c00ac36 +75369493ns 1351822 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d9 +75369572ns 1351826 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac37 PA:1c00ac37 +75369592ns 1351827 1c000e82 fff60613 addi x12, x12, -1 x12=000000d8 x12:000000d9 +75369612ns 1351828 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac38 x6:1c00ac37 +75369632ns 1351829 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d8 +75369711ns 1351833 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac38 PA:1c00ac38 +75369731ns 1351834 1c000e82 fff60613 addi x12, x12, -1 x12=000000d7 x12:000000d8 +75369750ns 1351835 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac39 x6:1c00ac38 +75369770ns 1351836 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d7 +75369849ns 1351840 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac39 PA:1c00ac39 +75369869ns 1351841 1c000e82 fff60613 addi x12, x12, -1 x12=000000d6 x12:000000d7 +75369889ns 1351842 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac3a x6:1c00ac39 +75369909ns 1351843 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d6 +75369988ns 1351847 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac3a PA:1c00ac3a +75370008ns 1351848 1c000e82 fff60613 addi x12, x12, -1 x12=000000d5 x12:000000d6 +75370028ns 1351849 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac3b x6:1c00ac3a +75370047ns 1351850 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d5 +75370127ns 1351854 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac3b PA:1c00ac3b +75370146ns 1351855 1c000e82 fff60613 addi x12, x12, -1 x12=000000d4 x12:000000d5 +75370166ns 1351856 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac3c x6:1c00ac3b +75370186ns 1351857 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d4 +75370265ns 1351861 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac3c PA:1c00ac3c +75370285ns 1351862 1c000e82 fff60613 addi x12, x12, -1 x12=000000d3 x12:000000d4 +75370305ns 1351863 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac3d x6:1c00ac3c +75370324ns 1351864 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d3 +75370404ns 1351868 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac3d PA:1c00ac3d +75370423ns 1351869 1c000e82 fff60613 addi x12, x12, -1 x12=000000d2 x12:000000d3 +75370443ns 1351870 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac3e x6:1c00ac3d +75370463ns 1351871 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d2 +75370542ns 1351875 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac3e PA:1c00ac3e +75370562ns 1351876 1c000e82 fff60613 addi x12, x12, -1 x12=000000d1 x12:000000d2 +75370582ns 1351877 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac3f x6:1c00ac3e +75370602ns 1351878 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d1 +75370681ns 1351882 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac3f PA:1c00ac3f +75370700ns 1351883 1c000e82 fff60613 addi x12, x12, -1 x12=000000d0 x12:000000d1 +75370720ns 1351884 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac40 x6:1c00ac3f +75370740ns 1351885 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d0 +75370819ns 1351889 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac40 PA:1c00ac40 +75370839ns 1351890 1c000e82 fff60613 addi x12, x12, -1 x12=000000cf x12:000000d0 +75370859ns 1351891 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac41 x6:1c00ac40 +75370879ns 1351892 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000cf +75370958ns 1351896 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac41 PA:1c00ac41 +75370978ns 1351897 1c000e82 fff60613 addi x12, x12, -1 x12=000000ce x12:000000cf +75370997ns 1351898 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac42 x6:1c00ac41 +75371017ns 1351899 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ce +75371096ns 1351903 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac42 PA:1c00ac42 +75371116ns 1351904 1c000e82 fff60613 addi x12, x12, -1 x12=000000cd x12:000000ce +75371136ns 1351905 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac43 x6:1c00ac42 +75371156ns 1351906 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000cd +75371235ns 1351910 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac43 PA:1c00ac43 +75371255ns 1351911 1c000e82 fff60613 addi x12, x12, -1 x12=000000cc x12:000000cd +75371274ns 1351912 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac44 x6:1c00ac43 +75371294ns 1351913 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000cc +75371373ns 1351917 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac44 PA:1c00ac44 +75371393ns 1351918 1c000e82 fff60613 addi x12, x12, -1 x12=000000cb x12:000000cc +75371413ns 1351919 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac45 x6:1c00ac44 +75371433ns 1351920 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000cb +75371512ns 1351924 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac45 PA:1c00ac45 +75371532ns 1351925 1c000e82 fff60613 addi x12, x12, -1 x12=000000ca x12:000000cb +75371552ns 1351926 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac46 x6:1c00ac45 +75371571ns 1351927 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ca +75371651ns 1351931 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac46 PA:1c00ac46 +75371670ns 1351932 1c000e82 fff60613 addi x12, x12, -1 x12=000000c9 x12:000000ca +75371690ns 1351933 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac47 x6:1c00ac46 +75371710ns 1351934 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c9 +75371789ns 1351938 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac47 PA:1c00ac47 +75371809ns 1351939 1c000e82 fff60613 addi x12, x12, -1 x12=000000c8 x12:000000c9 +75371829ns 1351940 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac48 x6:1c00ac47 +75371848ns 1351941 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c8 +75371928ns 1351945 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac48 PA:1c00ac48 +75371947ns 1351946 1c000e82 fff60613 addi x12, x12, -1 x12=000000c7 x12:000000c8 +75371967ns 1351947 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac49 x6:1c00ac48 +75371987ns 1351948 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c7 +75372066ns 1351952 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac49 PA:1c00ac49 +75372086ns 1351953 1c000e82 fff60613 addi x12, x12, -1 x12=000000c6 x12:000000c7 +75372106ns 1351954 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac4a x6:1c00ac49 +75372126ns 1351955 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c6 +75372205ns 1351959 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac4a PA:1c00ac4a +75372224ns 1351960 1c000e82 fff60613 addi x12, x12, -1 x12=000000c5 x12:000000c6 +75372244ns 1351961 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac4b x6:1c00ac4a +75372264ns 1351962 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c5 +75372343ns 1351966 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac4b PA:1c00ac4b +75372363ns 1351967 1c000e82 fff60613 addi x12, x12, -1 x12=000000c4 x12:000000c5 +75372383ns 1351968 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac4c x6:1c00ac4b +75372403ns 1351969 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c4 +75372482ns 1351973 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac4c PA:1c00ac4c +75372502ns 1351974 1c000e82 fff60613 addi x12, x12, -1 x12=000000c3 x12:000000c4 +75372521ns 1351975 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac4d x6:1c00ac4c +75372541ns 1351976 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c3 +75372620ns 1351980 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac4d PA:1c00ac4d +75372640ns 1351981 1c000e82 fff60613 addi x12, x12, -1 x12=000000c2 x12:000000c3 +75372660ns 1351982 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac4e x6:1c00ac4d +75372680ns 1351983 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c2 +75372759ns 1351987 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac4e PA:1c00ac4e +75372779ns 1351988 1c000e82 fff60613 addi x12, x12, -1 x12=000000c1 x12:000000c2 +75372798ns 1351989 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac4f x6:1c00ac4e +75372818ns 1351990 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c1 +75372897ns 1351994 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac4f PA:1c00ac4f +75372917ns 1351995 1c000e82 fff60613 addi x12, x12, -1 x12=000000c0 x12:000000c1 +75372937ns 1351996 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac50 x6:1c00ac4f +75372957ns 1351997 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c0 +75373036ns 1352001 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac50 PA:1c00ac50 +75373056ns 1352002 1c000e82 fff60613 addi x12, x12, -1 x12=000000bf x12:000000c0 +75373076ns 1352003 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac51 x6:1c00ac50 +75373095ns 1352004 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000bf +75373174ns 1352008 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac51 PA:1c00ac51 +75373194ns 1352009 1c000e82 fff60613 addi x12, x12, -1 x12=000000be x12:000000bf +75373214ns 1352010 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac52 x6:1c00ac51 +75373234ns 1352011 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000be +75373313ns 1352015 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac52 PA:1c00ac52 +75373333ns 1352016 1c000e82 fff60613 addi x12, x12, -1 x12=000000bd x12:000000be +75373353ns 1352017 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac53 x6:1c00ac52 +75373372ns 1352018 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000bd +75373452ns 1352022 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac53 PA:1c00ac53 +75373471ns 1352023 1c000e82 fff60613 addi x12, x12, -1 x12=000000bc x12:000000bd +75373491ns 1352024 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac54 x6:1c00ac53 +75373511ns 1352025 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000bc +75373590ns 1352029 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac54 PA:1c00ac54 +75373610ns 1352030 1c000e82 fff60613 addi x12, x12, -1 x12=000000bb x12:000000bc +75373630ns 1352031 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac55 x6:1c00ac54 +75373649ns 1352032 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000bb +75373729ns 1352036 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac55 PA:1c00ac55 +75373748ns 1352037 1c000e82 fff60613 addi x12, x12, -1 x12=000000ba x12:000000bb +75373768ns 1352038 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac56 x6:1c00ac55 +75373788ns 1352039 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ba +75373867ns 1352043 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac56 PA:1c00ac56 +75373887ns 1352044 1c000e82 fff60613 addi x12, x12, -1 x12=000000b9 x12:000000ba +75373907ns 1352045 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac57 x6:1c00ac56 +75373927ns 1352046 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b9 +75374006ns 1352050 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac57 PA:1c00ac57 +75374026ns 1352051 1c000e82 fff60613 addi x12, x12, -1 x12=000000b8 x12:000000b9 +75374045ns 1352052 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac58 x6:1c00ac57 +75374065ns 1352053 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b8 +75374144ns 1352057 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac58 PA:1c00ac58 +75374164ns 1352058 1c000e82 fff60613 addi x12, x12, -1 x12=000000b7 x12:000000b8 +75374184ns 1352059 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac59 x6:1c00ac58 +75374204ns 1352060 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b7 +75374283ns 1352064 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac59 PA:1c00ac59 +75374303ns 1352065 1c000e82 fff60613 addi x12, x12, -1 x12=000000b6 x12:000000b7 +75374322ns 1352066 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac5a x6:1c00ac59 +75374342ns 1352067 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b6 +75374421ns 1352071 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac5a PA:1c00ac5a +75374441ns 1352072 1c000e82 fff60613 addi x12, x12, -1 x12=000000b5 x12:000000b6 +75374461ns 1352073 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac5b x6:1c00ac5a +75374481ns 1352074 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b5 +75374560ns 1352078 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac5b PA:1c00ac5b +75374580ns 1352079 1c000e82 fff60613 addi x12, x12, -1 x12=000000b4 x12:000000b5 +75374600ns 1352080 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac5c x6:1c00ac5b +75374619ns 1352081 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b4 +75374698ns 1352085 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac5c PA:1c00ac5c +75374718ns 1352086 1c000e82 fff60613 addi x12, x12, -1 x12=000000b3 x12:000000b4 +75374738ns 1352087 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac5d x6:1c00ac5c +75374758ns 1352088 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b3 +75374837ns 1352092 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac5d PA:1c00ac5d +75374857ns 1352093 1c000e82 fff60613 addi x12, x12, -1 x12=000000b2 x12:000000b3 +75374877ns 1352094 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac5e x6:1c00ac5d +75374896ns 1352095 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b2 +75374976ns 1352099 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac5e PA:1c00ac5e +75374995ns 1352100 1c000e82 fff60613 addi x12, x12, -1 x12=000000b1 x12:000000b2 +75375015ns 1352101 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac5f x6:1c00ac5e +75375035ns 1352102 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b1 +75375114ns 1352106 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac5f PA:1c00ac5f +75375134ns 1352107 1c000e82 fff60613 addi x12, x12, -1 x12=000000b0 x12:000000b1 +75375154ns 1352108 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac60 x6:1c00ac5f +75375173ns 1352109 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b0 +75375253ns 1352113 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac60 PA:1c00ac60 +75375272ns 1352114 1c000e82 fff60613 addi x12, x12, -1 x12=000000af x12:000000b0 +75375292ns 1352115 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac61 x6:1c00ac60 +75375312ns 1352116 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000af +75375391ns 1352120 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac61 PA:1c00ac61 +75375411ns 1352121 1c000e82 fff60613 addi x12, x12, -1 x12=000000ae x12:000000af +75375431ns 1352122 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac62 x6:1c00ac61 +75375451ns 1352123 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ae +75375530ns 1352127 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac62 PA:1c00ac62 +75375550ns 1352128 1c000e82 fff60613 addi x12, x12, -1 x12=000000ad x12:000000ae +75375569ns 1352129 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac63 x6:1c00ac62 +75375589ns 1352130 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ad +75375668ns 1352134 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac63 PA:1c00ac63 +75375688ns 1352135 1c000e82 fff60613 addi x12, x12, -1 x12=000000ac x12:000000ad +75375708ns 1352136 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac64 x6:1c00ac63 +75375728ns 1352137 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ac +75375807ns 1352141 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac64 PA:1c00ac64 +75375827ns 1352142 1c000e82 fff60613 addi x12, x12, -1 x12=000000ab x12:000000ac +75375846ns 1352143 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac65 x6:1c00ac64 +75375866ns 1352144 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ab +75375945ns 1352148 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac65 PA:1c00ac65 +75375965ns 1352149 1c000e82 fff60613 addi x12, x12, -1 x12=000000aa x12:000000ab +75375985ns 1352150 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac66 x6:1c00ac65 +75376005ns 1352151 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000aa +75376084ns 1352155 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac66 PA:1c00ac66 +75376104ns 1352156 1c000e82 fff60613 addi x12, x12, -1 x12=000000a9 x12:000000aa +75376123ns 1352157 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac67 x6:1c00ac66 +75376143ns 1352158 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a9 +75376222ns 1352162 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac67 PA:1c00ac67 +75376242ns 1352163 1c000e82 fff60613 addi x12, x12, -1 x12=000000a8 x12:000000a9 +75376262ns 1352164 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac68 x6:1c00ac67 +75376282ns 1352165 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a8 +75376361ns 1352169 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac68 PA:1c00ac68 +75376381ns 1352170 1c000e82 fff60613 addi x12, x12, -1 x12=000000a7 x12:000000a8 +75376401ns 1352171 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac69 x6:1c00ac68 +75376420ns 1352172 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a7 +75376500ns 1352176 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac69 PA:1c00ac69 +75376519ns 1352177 1c000e82 fff60613 addi x12, x12, -1 x12=000000a6 x12:000000a7 +75376539ns 1352178 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac6a x6:1c00ac69 +75376559ns 1352179 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a6 +75376638ns 1352183 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac6a PA:1c00ac6a +75376658ns 1352184 1c000e82 fff60613 addi x12, x12, -1 x12=000000a5 x12:000000a6 +75376678ns 1352185 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac6b x6:1c00ac6a +75376697ns 1352186 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a5 +75376777ns 1352190 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac6b PA:1c00ac6b +75376796ns 1352191 1c000e82 fff60613 addi x12, x12, -1 x12=000000a4 x12:000000a5 +75376816ns 1352192 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac6c x6:1c00ac6b +75376836ns 1352193 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a4 +75376915ns 1352197 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac6c PA:1c00ac6c +75376935ns 1352198 1c000e82 fff60613 addi x12, x12, -1 x12=000000a3 x12:000000a4 +75376955ns 1352199 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac6d x6:1c00ac6c +75376975ns 1352200 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a3 +75377054ns 1352204 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac6d PA:1c00ac6d +75377074ns 1352205 1c000e82 fff60613 addi x12, x12, -1 x12=000000a2 x12:000000a3 +75377093ns 1352206 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac6e x6:1c00ac6d +75377113ns 1352207 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a2 +75377192ns 1352211 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac6e PA:1c00ac6e +75377212ns 1352212 1c000e82 fff60613 addi x12, x12, -1 x12=000000a1 x12:000000a2 +75377232ns 1352213 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac6f x6:1c00ac6e +75377252ns 1352214 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a1 +75377331ns 1352218 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac6f PA:1c00ac6f +75377351ns 1352219 1c000e82 fff60613 addi x12, x12, -1 x12=000000a0 x12:000000a1 +75377370ns 1352220 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac70 x6:1c00ac6f +75377390ns 1352221 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a0 +75377469ns 1352225 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac70 PA:1c00ac70 +75377489ns 1352226 1c000e82 fff60613 addi x12, x12, -1 x12=0000009f x12:000000a0 +75377509ns 1352227 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac71 x6:1c00ac70 +75377529ns 1352228 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000009f +75377608ns 1352232 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac71 PA:1c00ac71 +75377628ns 1352233 1c000e82 fff60613 addi x12, x12, -1 x12=0000009e x12:0000009f +75377647ns 1352234 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac72 x6:1c00ac71 +75377667ns 1352235 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000009e +75377746ns 1352239 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac72 PA:1c00ac72 +75377766ns 1352240 1c000e82 fff60613 addi x12, x12, -1 x12=0000009d x12:0000009e +75377786ns 1352241 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac73 x6:1c00ac72 +75377806ns 1352242 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000009d +75377885ns 1352246 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac73 PA:1c00ac73 +75377905ns 1352247 1c000e82 fff60613 addi x12, x12, -1 x12=0000009c x12:0000009d +75377925ns 1352248 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac74 x6:1c00ac73 +75377944ns 1352249 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000009c +75378024ns 1352253 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac74 PA:1c00ac74 +75378043ns 1352254 1c000e82 fff60613 addi x12, x12, -1 x12=0000009b x12:0000009c +75378063ns 1352255 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac75 x6:1c00ac74 +75378083ns 1352256 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000009b +75378162ns 1352260 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac75 PA:1c00ac75 +75378182ns 1352261 1c000e82 fff60613 addi x12, x12, -1 x12=0000009a x12:0000009b +75378202ns 1352262 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac76 x6:1c00ac75 +75378221ns 1352263 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000009a +75378301ns 1352267 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac76 PA:1c00ac76 +75378320ns 1352268 1c000e82 fff60613 addi x12, x12, -1 x12=00000099 x12:0000009a +75378340ns 1352269 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac77 x6:1c00ac76 +75378360ns 1352270 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000099 +75378439ns 1352274 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac77 PA:1c00ac77 +75378459ns 1352275 1c000e82 fff60613 addi x12, x12, -1 x12=00000098 x12:00000099 +75378479ns 1352276 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac78 x6:1c00ac77 +75378499ns 1352277 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000098 +75378578ns 1352281 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac78 PA:1c00ac78 +75378597ns 1352282 1c000e82 fff60613 addi x12, x12, -1 x12=00000097 x12:00000098 +75378617ns 1352283 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac79 x6:1c00ac78 +75378637ns 1352284 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000097 +75378716ns 1352288 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac79 PA:1c00ac79 +75378736ns 1352289 1c000e82 fff60613 addi x12, x12, -1 x12=00000096 x12:00000097 +75378756ns 1352290 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac7a x6:1c00ac79 +75378776ns 1352291 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000096 +75378855ns 1352295 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac7a PA:1c00ac7a +75378875ns 1352296 1c000e82 fff60613 addi x12, x12, -1 x12=00000095 x12:00000096 +75378894ns 1352297 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac7b x6:1c00ac7a +75378914ns 1352298 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000095 +75378993ns 1352302 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac7b PA:1c00ac7b +75379013ns 1352303 1c000e82 fff60613 addi x12, x12, -1 x12=00000094 x12:00000095 +75379033ns 1352304 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac7c x6:1c00ac7b +75379053ns 1352305 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000094 +75379132ns 1352309 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac7c PA:1c00ac7c +75379152ns 1352310 1c000e82 fff60613 addi x12, x12, -1 x12=00000093 x12:00000094 +75379171ns 1352311 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac7d x6:1c00ac7c +75379191ns 1352312 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000093 +75379270ns 1352316 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac7d PA:1c00ac7d +75379290ns 1352317 1c000e82 fff60613 addi x12, x12, -1 x12=00000092 x12:00000093 +75379310ns 1352318 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac7e x6:1c00ac7d +75379330ns 1352319 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000092 +75379409ns 1352323 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac7e PA:1c00ac7e +75379429ns 1352324 1c000e82 fff60613 addi x12, x12, -1 x12=00000091 x12:00000092 +75379449ns 1352325 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac7f x6:1c00ac7e +75379468ns 1352326 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000091 +75379548ns 1352330 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac7f PA:1c00ac7f +75379567ns 1352331 1c000e82 fff60613 addi x12, x12, -1 x12=00000090 x12:00000091 +75379587ns 1352332 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac80 x6:1c00ac7f +75379607ns 1352333 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000090 +75379686ns 1352337 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac80 PA:1c00ac80 +75379706ns 1352338 1c000e82 fff60613 addi x12, x12, -1 x12=0000008f x12:00000090 +75379726ns 1352339 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac81 x6:1c00ac80 +75379745ns 1352340 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000008f +75379825ns 1352344 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac81 PA:1c00ac81 +75379844ns 1352345 1c000e82 fff60613 addi x12, x12, -1 x12=0000008e x12:0000008f +75379864ns 1352346 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac82 x6:1c00ac81 +75379884ns 1352347 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000008e +75379963ns 1352351 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac82 PA:1c00ac82 +75379983ns 1352352 1c000e82 fff60613 addi x12, x12, -1 x12=0000008d x12:0000008e +75380003ns 1352353 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac83 x6:1c00ac82 +75380023ns 1352354 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000008d +75380102ns 1352358 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac83 PA:1c00ac83 +75380121ns 1352359 1c000e82 fff60613 addi x12, x12, -1 x12=0000008c x12:0000008d +75380141ns 1352360 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac84 x6:1c00ac83 +75380161ns 1352361 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000008c +75380240ns 1352365 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac84 PA:1c00ac84 +75380260ns 1352366 1c000e82 fff60613 addi x12, x12, -1 x12=0000008b x12:0000008c +75380280ns 1352367 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac85 x6:1c00ac84 +75380300ns 1352368 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000008b +75380379ns 1352372 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac85 PA:1c00ac85 +75380399ns 1352373 1c000e82 fff60613 addi x12, x12, -1 x12=0000008a x12:0000008b +75380418ns 1352374 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac86 x6:1c00ac85 +75380438ns 1352375 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000008a +75380517ns 1352379 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac86 PA:1c00ac86 +75380537ns 1352380 1c000e82 fff60613 addi x12, x12, -1 x12=00000089 x12:0000008a +75380557ns 1352381 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac87 x6:1c00ac86 +75380577ns 1352382 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000089 +75380656ns 1352386 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac87 PA:1c00ac87 +75380676ns 1352387 1c000e82 fff60613 addi x12, x12, -1 x12=00000088 x12:00000089 +75380695ns 1352388 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac88 x6:1c00ac87 +75380715ns 1352389 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000088 +75380794ns 1352393 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac88 PA:1c00ac88 +75380814ns 1352394 1c000e82 fff60613 addi x12, x12, -1 x12=00000087 x12:00000088 +75380834ns 1352395 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac89 x6:1c00ac88 +75380854ns 1352396 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000087 +75380933ns 1352400 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac89 PA:1c00ac89 +75380953ns 1352401 1c000e82 fff60613 addi x12, x12, -1 x12=00000086 x12:00000087 +75380973ns 1352402 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac8a x6:1c00ac89 +75380992ns 1352403 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000086 +75381071ns 1352407 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac8a PA:1c00ac8a +75381091ns 1352408 1c000e82 fff60613 addi x12, x12, -1 x12=00000085 x12:00000086 +75381111ns 1352409 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac8b x6:1c00ac8a +75381131ns 1352410 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000085 +75381210ns 1352414 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac8b PA:1c00ac8b +75381230ns 1352415 1c000e82 fff60613 addi x12, x12, -1 x12=00000084 x12:00000085 +75381250ns 1352416 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac8c x6:1c00ac8b +75381269ns 1352417 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000084 +75381349ns 1352421 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac8c PA:1c00ac8c +75381368ns 1352422 1c000e82 fff60613 addi x12, x12, -1 x12=00000083 x12:00000084 +75381388ns 1352423 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac8d x6:1c00ac8c +75381408ns 1352424 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000083 +75381487ns 1352428 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac8d PA:1c00ac8d +75381507ns 1352429 1c000e82 fff60613 addi x12, x12, -1 x12=00000082 x12:00000083 +75381527ns 1352430 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac8e x6:1c00ac8d +75381547ns 1352431 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000082 +75381626ns 1352435 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac8e PA:1c00ac8e +75381645ns 1352436 1c000e82 fff60613 addi x12, x12, -1 x12=00000081 x12:00000082 +75381665ns 1352437 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac8f x6:1c00ac8e +75381685ns 1352438 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000081 +75381764ns 1352442 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac8f PA:1c00ac8f +75381784ns 1352443 1c000e82 fff60613 addi x12, x12, -1 x12=00000080 x12:00000081 +75381804ns 1352444 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac90 x6:1c00ac8f +75381824ns 1352445 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000080 +75381903ns 1352449 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac90 PA:1c00ac90 +75381923ns 1352450 1c000e82 fff60613 addi x12, x12, -1 x12=0000007f x12:00000080 +75381942ns 1352451 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac91 x6:1c00ac90 +75381962ns 1352452 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000007f +75382041ns 1352456 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac91 PA:1c00ac91 +75382061ns 1352457 1c000e82 fff60613 addi x12, x12, -1 x12=0000007e x12:0000007f +75382081ns 1352458 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac92 x6:1c00ac91 +75382101ns 1352459 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000007e +75382180ns 1352463 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac92 PA:1c00ac92 +75382200ns 1352464 1c000e82 fff60613 addi x12, x12, -1 x12=0000007d x12:0000007e +75382219ns 1352465 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac93 x6:1c00ac92 +75382239ns 1352466 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000007d +75382318ns 1352470 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac93 PA:1c00ac93 +75382338ns 1352471 1c000e82 fff60613 addi x12, x12, -1 x12=0000007c x12:0000007d +75382358ns 1352472 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac94 x6:1c00ac93 +75382378ns 1352473 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000007c +75382457ns 1352477 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac94 PA:1c00ac94 +75382477ns 1352478 1c000e82 fff60613 addi x12, x12, -1 x12=0000007b x12:0000007c +75382497ns 1352479 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac95 x6:1c00ac94 +75382516ns 1352480 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000007b +75382595ns 1352484 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac95 PA:1c00ac95 +75382615ns 1352485 1c000e82 fff60613 addi x12, x12, -1 x12=0000007a x12:0000007b +75382635ns 1352486 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac96 x6:1c00ac95 +75382655ns 1352487 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000007a +75382734ns 1352491 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac96 PA:1c00ac96 +75382754ns 1352492 1c000e82 fff60613 addi x12, x12, -1 x12=00000079 x12:0000007a +75382774ns 1352493 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac97 x6:1c00ac96 +75382793ns 1352494 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000079 +75382873ns 1352498 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac97 PA:1c00ac97 +75382892ns 1352499 1c000e82 fff60613 addi x12, x12, -1 x12=00000078 x12:00000079 +75382912ns 1352500 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac98 x6:1c00ac97 +75382932ns 1352501 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000078 +75383011ns 1352505 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac98 PA:1c00ac98 +75383031ns 1352506 1c000e82 fff60613 addi x12, x12, -1 x12=00000077 x12:00000078 +75383051ns 1352507 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac99 x6:1c00ac98 +75383070ns 1352508 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000077 +75383150ns 1352512 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac99 PA:1c00ac99 +75383169ns 1352513 1c000e82 fff60613 addi x12, x12, -1 x12=00000076 x12:00000077 +75383189ns 1352514 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac9a x6:1c00ac99 +75383209ns 1352515 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000076 +75383288ns 1352519 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac9a PA:1c00ac9a +75383308ns 1352520 1c000e82 fff60613 addi x12, x12, -1 x12=00000075 x12:00000076 +75383328ns 1352521 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac9b x6:1c00ac9a +75383348ns 1352522 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000075 +75383427ns 1352526 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac9b PA:1c00ac9b +75383447ns 1352527 1c000e82 fff60613 addi x12, x12, -1 x12=00000074 x12:00000075 +75383466ns 1352528 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac9c x6:1c00ac9b +75383486ns 1352529 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000074 +75383565ns 1352533 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac9c PA:1c00ac9c +75383585ns 1352534 1c000e82 fff60613 addi x12, x12, -1 x12=00000073 x12:00000074 +75383605ns 1352535 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac9d x6:1c00ac9c +75383625ns 1352536 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000073 +75383704ns 1352540 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac9d PA:1c00ac9d +75383724ns 1352541 1c000e82 fff60613 addi x12, x12, -1 x12=00000072 x12:00000073 +75383743ns 1352542 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac9e x6:1c00ac9d +75383763ns 1352543 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000072 +75383842ns 1352547 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac9e PA:1c00ac9e +75383862ns 1352548 1c000e82 fff60613 addi x12, x12, -1 x12=00000071 x12:00000072 +75383882ns 1352549 1c000e84 00130313 addi x6, x6, 1 x6=1c00ac9f x6:1c00ac9e +75383902ns 1352550 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000071 +75383981ns 1352554 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ac9f PA:1c00ac9f +75384001ns 1352555 1c000e82 fff60613 addi x12, x12, -1 x12=00000070 x12:00000071 +75384021ns 1352556 1c000e84 00130313 addi x6, x6, 1 x6=1c00aca0 x6:1c00ac9f +75384040ns 1352557 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000070 +75384119ns 1352561 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aca0 PA:1c00aca0 +75384139ns 1352562 1c000e82 fff60613 addi x12, x12, -1 x12=0000006f x12:00000070 +75384159ns 1352563 1c000e84 00130313 addi x6, x6, 1 x6=1c00aca1 x6:1c00aca0 +75384179ns 1352564 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000006f +75384258ns 1352568 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aca1 PA:1c00aca1 +75384278ns 1352569 1c000e82 fff60613 addi x12, x12, -1 x12=0000006e x12:0000006f +75384298ns 1352570 1c000e84 00130313 addi x6, x6, 1 x6=1c00aca2 x6:1c00aca1 +75384317ns 1352571 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000006e +75384397ns 1352575 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aca2 PA:1c00aca2 +75384416ns 1352576 1c000e82 fff60613 addi x12, x12, -1 x12=0000006d x12:0000006e +75384436ns 1352577 1c000e84 00130313 addi x6, x6, 1 x6=1c00aca3 x6:1c00aca2 +75384456ns 1352578 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000006d +75384535ns 1352582 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aca3 PA:1c00aca3 +75384555ns 1352583 1c000e82 fff60613 addi x12, x12, -1 x12=0000006c x12:0000006d +75384575ns 1352584 1c000e84 00130313 addi x6, x6, 1 x6=1c00aca4 x6:1c00aca3 +75384594ns 1352585 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000006c +75384674ns 1352589 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aca4 PA:1c00aca4 +75384693ns 1352590 1c000e82 fff60613 addi x12, x12, -1 x12=0000006b x12:0000006c +75384713ns 1352591 1c000e84 00130313 addi x6, x6, 1 x6=1c00aca5 x6:1c00aca4 +75384733ns 1352592 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000006b +75384812ns 1352596 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aca5 PA:1c00aca5 +75384832ns 1352597 1c000e82 fff60613 addi x12, x12, -1 x12=0000006a x12:0000006b +75384852ns 1352598 1c000e84 00130313 addi x6, x6, 1 x6=1c00aca6 x6:1c00aca5 +75384872ns 1352599 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000006a +75384951ns 1352603 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aca6 PA:1c00aca6 +75384971ns 1352604 1c000e82 fff60613 addi x12, x12, -1 x12=00000069 x12:0000006a +75384990ns 1352605 1c000e84 00130313 addi x6, x6, 1 x6=1c00aca7 x6:1c00aca6 +75385010ns 1352606 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000069 +75385089ns 1352610 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aca7 PA:1c00aca7 +75385109ns 1352611 1c000e82 fff60613 addi x12, x12, -1 x12=00000068 x12:00000069 +75385129ns 1352612 1c000e84 00130313 addi x6, x6, 1 x6=1c00aca8 x6:1c00aca7 +75385149ns 1352613 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000068 +75385228ns 1352617 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aca8 PA:1c00aca8 +75385248ns 1352618 1c000e82 fff60613 addi x12, x12, -1 x12=00000067 x12:00000068 +75385267ns 1352619 1c000e84 00130313 addi x6, x6, 1 x6=1c00aca9 x6:1c00aca8 +75385287ns 1352620 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000067 +75385366ns 1352624 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aca9 PA:1c00aca9 +75385386ns 1352625 1c000e82 fff60613 addi x12, x12, -1 x12=00000066 x12:00000067 +75385406ns 1352626 1c000e84 00130313 addi x6, x6, 1 x6=1c00acaa x6:1c00aca9 +75385426ns 1352627 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000066 +75385505ns 1352631 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00acaa PA:1c00acaa +75385525ns 1352632 1c000e82 fff60613 addi x12, x12, -1 x12=00000065 x12:00000066 +75385544ns 1352633 1c000e84 00130313 addi x6, x6, 1 x6=1c00acab x6:1c00acaa +75385564ns 1352634 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000065 +75385643ns 1352638 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00acab PA:1c00acab +75385663ns 1352639 1c000e82 fff60613 addi x12, x12, -1 x12=00000064 x12:00000065 +75385683ns 1352640 1c000e84 00130313 addi x6, x6, 1 x6=1c00acac x6:1c00acab +75385703ns 1352641 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000064 +75385782ns 1352645 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00acac PA:1c00acac +75385802ns 1352646 1c000e82 fff60613 addi x12, x12, -1 x12=00000063 x12:00000064 +75385822ns 1352647 1c000e84 00130313 addi x6, x6, 1 x6=1c00acad x6:1c00acac +75385841ns 1352648 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000063 +75385921ns 1352652 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00acad PA:1c00acad +75385940ns 1352653 1c000e82 fff60613 addi x12, x12, -1 x12=00000062 x12:00000063 +75385960ns 1352654 1c000e84 00130313 addi x6, x6, 1 x6=1c00acae x6:1c00acad +75385980ns 1352655 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000062 +75386059ns 1352659 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00acae PA:1c00acae +75386079ns 1352660 1c000e82 fff60613 addi x12, x12, -1 x12=00000061 x12:00000062 +75386099ns 1352661 1c000e84 00130313 addi x6, x6, 1 x6=1c00acaf x6:1c00acae +75386118ns 1352662 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000061 +75386198ns 1352666 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00acaf PA:1c00acaf +75386217ns 1352667 1c000e82 fff60613 addi x12, x12, -1 x12=00000060 x12:00000061 +75386237ns 1352668 1c000e84 00130313 addi x6, x6, 1 x6=1c00acb0 x6:1c00acaf +75386257ns 1352669 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000060 +75386336ns 1352673 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00acb0 PA:1c00acb0 +75386356ns 1352674 1c000e82 fff60613 addi x12, x12, -1 x12=0000005f x12:00000060 +75386376ns 1352675 1c000e84 00130313 addi x6, x6, 1 x6=1c00acb1 x6:1c00acb0 +75386396ns 1352676 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000005f +75386475ns 1352680 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00acb1 PA:1c00acb1 +75386495ns 1352681 1c000e82 fff60613 addi x12, x12, -1 x12=0000005e x12:0000005f +75386514ns 1352682 1c000e84 00130313 addi x6, x6, 1 x6=1c00acb2 x6:1c00acb1 +75386534ns 1352683 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000005e +75386613ns 1352687 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00acb2 PA:1c00acb2 +75386633ns 1352688 1c000e82 fff60613 addi x12, x12, -1 x12=0000005d x12:0000005e +75386653ns 1352689 1c000e84 00130313 addi x6, x6, 1 x6=1c00acb3 x6:1c00acb2 +75386673ns 1352690 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000005d +75386752ns 1352694 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00acb3 PA:1c00acb3 +75386772ns 1352695 1c000e82 fff60613 addi x12, x12, -1 x12=0000005c x12:0000005d +75386791ns 1352696 1c000e84 00130313 addi x6, x6, 1 x6=1c00acb4 x6:1c00acb3 +75386811ns 1352697 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000005c +75386890ns 1352701 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00acb4 PA:1c00acb4 +75386910ns 1352702 1c000e82 fff60613 addi x12, x12, -1 x12=0000005b x12:0000005c +75386930ns 1352703 1c000e84 00130313 addi x6, x6, 1 x6=1c00acb5 x6:1c00acb4 +75386950ns 1352704 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000005b +75387029ns 1352708 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00acb5 PA:1c00acb5 +75387049ns 1352709 1c000e82 fff60613 addi x12, x12, -1 x12=0000005a x12:0000005b +75387068ns 1352710 1c000e84 00130313 addi x6, x6, 1 x6=1c00acb6 x6:1c00acb5 +75387088ns 1352711 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000005a +75387167ns 1352715 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00acb6 PA:1c00acb6 +75387187ns 1352716 1c000e82 fff60613 addi x12, x12, -1 x12=00000059 x12:0000005a +75387207ns 1352717 1c000e84 00130313 addi x6, x6, 1 x6=1c00acb7 x6:1c00acb6 +75387227ns 1352718 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000059 +75387306ns 1352722 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00acb7 PA:1c00acb7 +75387326ns 1352723 1c000e82 fff60613 addi x12, x12, -1 x12=00000058 x12:00000059 +75387346ns 1352724 1c000e84 00130313 addi x6, x6, 1 x6=1c00acb8 x6:1c00acb7 +75387365ns 1352725 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000058 +75387445ns 1352729 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00acb8 PA:1c00acb8 +75387464ns 1352730 1c000e82 fff60613 addi x12, x12, -1 x12=00000057 x12:00000058 +75387484ns 1352731 1c000e84 00130313 addi x6, x6, 1 x6=1c00acb9 x6:1c00acb8 +75387504ns 1352732 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000057 +75387583ns 1352736 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00acb9 PA:1c00acb9 +75387603ns 1352737 1c000e82 fff60613 addi x12, x12, -1 x12=00000056 x12:00000057 +75387623ns 1352738 1c000e84 00130313 addi x6, x6, 1 x6=1c00acba x6:1c00acb9 +75387642ns 1352739 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000056 +75387722ns 1352743 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00acba PA:1c00acba +75387741ns 1352744 1c000e82 fff60613 addi x12, x12, -1 x12=00000055 x12:00000056 +75387761ns 1352745 1c000e84 00130313 addi x6, x6, 1 x6=1c00acbb x6:1c00acba +75387781ns 1352746 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000055 +75387860ns 1352750 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00acbb PA:1c00acbb +75387880ns 1352751 1c000e82 fff60613 addi x12, x12, -1 x12=00000054 x12:00000055 +75387900ns 1352752 1c000e84 00130313 addi x6, x6, 1 x6=1c00acbc x6:1c00acbb +75387920ns 1352753 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000054 +75387999ns 1352757 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00acbc PA:1c00acbc +75388018ns 1352758 1c000e82 fff60613 addi x12, x12, -1 x12=00000053 x12:00000054 +75388038ns 1352759 1c000e84 00130313 addi x6, x6, 1 x6=1c00acbd x6:1c00acbc +75388058ns 1352760 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000053 +75388137ns 1352764 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00acbd PA:1c00acbd +75388157ns 1352765 1c000e82 fff60613 addi x12, x12, -1 x12=00000052 x12:00000053 +75388177ns 1352766 1c000e84 00130313 addi x6, x6, 1 x6=1c00acbe x6:1c00acbd +75388197ns 1352767 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000052 +75388276ns 1352771 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00acbe PA:1c00acbe +75388296ns 1352772 1c000e82 fff60613 addi x12, x12, -1 x12=00000051 x12:00000052 +75388315ns 1352773 1c000e84 00130313 addi x6, x6, 1 x6=1c00acbf x6:1c00acbe +75388335ns 1352774 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000051 +75388414ns 1352778 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00acbf PA:1c00acbf +75388434ns 1352779 1c000e82 fff60613 addi x12, x12, -1 x12=00000050 x12:00000051 +75388454ns 1352780 1c000e84 00130313 addi x6, x6, 1 x6=1c00acc0 x6:1c00acbf +75388474ns 1352781 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000050 +75388553ns 1352785 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00acc0 PA:1c00acc0 +75388573ns 1352786 1c000e82 fff60613 addi x12, x12, -1 x12=0000004f x12:00000050 +75388592ns 1352787 1c000e84 00130313 addi x6, x6, 1 x6=1c00acc1 x6:1c00acc0 +75388612ns 1352788 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000004f +75388691ns 1352792 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00acc1 PA:1c00acc1 +75388711ns 1352793 1c000e82 fff60613 addi x12, x12, -1 x12=0000004e x12:0000004f +75388731ns 1352794 1c000e84 00130313 addi x6, x6, 1 x6=1c00acc2 x6:1c00acc1 +75388751ns 1352795 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000004e +75388830ns 1352799 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00acc2 PA:1c00acc2 +75388850ns 1352800 1c000e82 fff60613 addi x12, x12, -1 x12=0000004d x12:0000004e +75388870ns 1352801 1c000e84 00130313 addi x6, x6, 1 x6=1c00acc3 x6:1c00acc2 +75388889ns 1352802 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000004d +75388969ns 1352806 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00acc3 PA:1c00acc3 +75388988ns 1352807 1c000e82 fff60613 addi x12, x12, -1 x12=0000004c x12:0000004d +75389008ns 1352808 1c000e84 00130313 addi x6, x6, 1 x6=1c00acc4 x6:1c00acc3 +75389028ns 1352809 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000004c +75389107ns 1352813 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00acc4 PA:1c00acc4 +75389127ns 1352814 1c000e82 fff60613 addi x12, x12, -1 x12=0000004b x12:0000004c +75389147ns 1352815 1c000e84 00130313 addi x6, x6, 1 x6=1c00acc5 x6:1c00acc4 +75389166ns 1352816 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000004b +75389246ns 1352820 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00acc5 PA:1c00acc5 +75389265ns 1352821 1c000e82 fff60613 addi x12, x12, -1 x12=0000004a x12:0000004b +75389285ns 1352822 1c000e84 00130313 addi x6, x6, 1 x6=1c00acc6 x6:1c00acc5 +75389305ns 1352823 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000004a +75389384ns 1352827 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00acc6 PA:1c00acc6 +75389404ns 1352828 1c000e82 fff60613 addi x12, x12, -1 x12=00000049 x12:0000004a +75389424ns 1352829 1c000e84 00130313 addi x6, x6, 1 x6=1c00acc7 x6:1c00acc6 +75389444ns 1352830 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000049 +75389523ns 1352834 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00acc7 PA:1c00acc7 +75389542ns 1352835 1c000e82 fff60613 addi x12, x12, -1 x12=00000048 x12:00000049 +75389562ns 1352836 1c000e84 00130313 addi x6, x6, 1 x6=1c00acc8 x6:1c00acc7 +75389582ns 1352837 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000048 +75389661ns 1352841 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00acc8 PA:1c00acc8 +75389681ns 1352842 1c000e82 fff60613 addi x12, x12, -1 x12=00000047 x12:00000048 +75389701ns 1352843 1c000e84 00130313 addi x6, x6, 1 x6=1c00acc9 x6:1c00acc8 +75389721ns 1352844 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000047 +75389800ns 1352848 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00acc9 PA:1c00acc9 +75389820ns 1352849 1c000e82 fff60613 addi x12, x12, -1 x12=00000046 x12:00000047 +75389839ns 1352850 1c000e84 00130313 addi x6, x6, 1 x6=1c00acca x6:1c00acc9 +75389859ns 1352851 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000046 +75389938ns 1352855 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00acca PA:1c00acca +75389958ns 1352856 1c000e82 fff60613 addi x12, x12, -1 x12=00000045 x12:00000046 +75389978ns 1352857 1c000e84 00130313 addi x6, x6, 1 x6=1c00accb x6:1c00acca +75389998ns 1352858 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000045 +75390077ns 1352862 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00accb PA:1c00accb +75390097ns 1352863 1c000e82 fff60613 addi x12, x12, -1 x12=00000044 x12:00000045 +75390116ns 1352864 1c000e84 00130313 addi x6, x6, 1 x6=1c00accc x6:1c00accb +75390136ns 1352865 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000044 +75390215ns 1352869 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00accc PA:1c00accc +75390235ns 1352870 1c000e82 fff60613 addi x12, x12, -1 x12=00000043 x12:00000044 +75390255ns 1352871 1c000e84 00130313 addi x6, x6, 1 x6=1c00accd x6:1c00accc +75390275ns 1352872 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000043 +75390354ns 1352876 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00accd PA:1c00accd +75390374ns 1352877 1c000e82 fff60613 addi x12, x12, -1 x12=00000042 x12:00000043 +75390394ns 1352878 1c000e84 00130313 addi x6, x6, 1 x6=1c00acce x6:1c00accd +75390413ns 1352879 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000042 +75390492ns 1352883 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00acce PA:1c00acce +75390512ns 1352884 1c000e82 fff60613 addi x12, x12, -1 x12=00000041 x12:00000042 +75390532ns 1352885 1c000e84 00130313 addi x6, x6, 1 x6=1c00accf x6:1c00acce +75390552ns 1352886 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000041 +75390631ns 1352890 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00accf PA:1c00accf +75390651ns 1352891 1c000e82 fff60613 addi x12, x12, -1 x12=00000040 x12:00000041 +75390671ns 1352892 1c000e84 00130313 addi x6, x6, 1 x6=1c00acd0 x6:1c00accf +75390690ns 1352893 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000040 +75390770ns 1352897 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00acd0 PA:1c00acd0 +75390789ns 1352898 1c000e82 fff60613 addi x12, x12, -1 x12=0000003f x12:00000040 +75390809ns 1352899 1c000e84 00130313 addi x6, x6, 1 x6=1c00acd1 x6:1c00acd0 +75390829ns 1352900 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000003f +75390908ns 1352904 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00acd1 PA:1c00acd1 +75390928ns 1352905 1c000e82 fff60613 addi x12, x12, -1 x12=0000003e x12:0000003f +75390948ns 1352906 1c000e84 00130313 addi x6, x6, 1 x6=1c00acd2 x6:1c00acd1 +75390967ns 1352907 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000003e +75391047ns 1352911 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00acd2 PA:1c00acd2 +75391066ns 1352912 1c000e82 fff60613 addi x12, x12, -1 x12=0000003d x12:0000003e +75391086ns 1352913 1c000e84 00130313 addi x6, x6, 1 x6=1c00acd3 x6:1c00acd2 +75391106ns 1352914 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000003d +75391185ns 1352918 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00acd3 PA:1c00acd3 +75391205ns 1352919 1c000e82 fff60613 addi x12, x12, -1 x12=0000003c x12:0000003d +75391225ns 1352920 1c000e84 00130313 addi x6, x6, 1 x6=1c00acd4 x6:1c00acd3 +75391245ns 1352921 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000003c +75391324ns 1352925 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00acd4 PA:1c00acd4 +75391344ns 1352926 1c000e82 fff60613 addi x12, x12, -1 x12=0000003b x12:0000003c +75391363ns 1352927 1c000e84 00130313 addi x6, x6, 1 x6=1c00acd5 x6:1c00acd4 +75391383ns 1352928 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000003b +75391462ns 1352932 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00acd5 PA:1c00acd5 +75391482ns 1352933 1c000e82 fff60613 addi x12, x12, -1 x12=0000003a x12:0000003b +75391502ns 1352934 1c000e84 00130313 addi x6, x6, 1 x6=1c00acd6 x6:1c00acd5 +75391522ns 1352935 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000003a +75391601ns 1352939 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00acd6 PA:1c00acd6 +75391621ns 1352940 1c000e82 fff60613 addi x12, x12, -1 x12=00000039 x12:0000003a +75391640ns 1352941 1c000e84 00130313 addi x6, x6, 1 x6=1c00acd7 x6:1c00acd6 +75391660ns 1352942 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000039 +75391739ns 1352946 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00acd7 PA:1c00acd7 +75391759ns 1352947 1c000e82 fff60613 addi x12, x12, -1 x12=00000038 x12:00000039 +75391779ns 1352948 1c000e84 00130313 addi x6, x6, 1 x6=1c00acd8 x6:1c00acd7 +75391799ns 1352949 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000038 +75391878ns 1352953 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00acd8 PA:1c00acd8 +75391898ns 1352954 1c000e82 fff60613 addi x12, x12, -1 x12=00000037 x12:00000038 +75391918ns 1352955 1c000e84 00130313 addi x6, x6, 1 x6=1c00acd9 x6:1c00acd8 +75391937ns 1352956 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000037 +75392016ns 1352960 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00acd9 PA:1c00acd9 +75392036ns 1352961 1c000e82 fff60613 addi x12, x12, -1 x12=00000036 x12:00000037 +75392056ns 1352962 1c000e84 00130313 addi x6, x6, 1 x6=1c00acda x6:1c00acd9 +75392076ns 1352963 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000036 +75392155ns 1352967 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00acda PA:1c00acda +75392175ns 1352968 1c000e82 fff60613 addi x12, x12, -1 x12=00000035 x12:00000036 +75392195ns 1352969 1c000e84 00130313 addi x6, x6, 1 x6=1c00acdb x6:1c00acda +75392214ns 1352970 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000035 +75392294ns 1352974 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00acdb PA:1c00acdb +75392313ns 1352975 1c000e82 fff60613 addi x12, x12, -1 x12=00000034 x12:00000035 +75392333ns 1352976 1c000e84 00130313 addi x6, x6, 1 x6=1c00acdc x6:1c00acdb +75392353ns 1352977 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000034 +75392432ns 1352981 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00acdc PA:1c00acdc +75392452ns 1352982 1c000e82 fff60613 addi x12, x12, -1 x12=00000033 x12:00000034 +75392472ns 1352983 1c000e84 00130313 addi x6, x6, 1 x6=1c00acdd x6:1c00acdc +75392491ns 1352984 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000033 +75392571ns 1352988 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00acdd PA:1c00acdd +75392590ns 1352989 1c000e82 fff60613 addi x12, x12, -1 x12=00000032 x12:00000033 +75392610ns 1352990 1c000e84 00130313 addi x6, x6, 1 x6=1c00acde x6:1c00acdd +75392630ns 1352991 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000032 +75392709ns 1352995 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00acde PA:1c00acde +75392729ns 1352996 1c000e82 fff60613 addi x12, x12, -1 x12=00000031 x12:00000032 +75392749ns 1352997 1c000e84 00130313 addi x6, x6, 1 x6=1c00acdf x6:1c00acde +75392769ns 1352998 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000031 +75392848ns 1353002 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00acdf PA:1c00acdf +75392868ns 1353003 1c000e82 fff60613 addi x12, x12, -1 x12=00000030 x12:00000031 +75392887ns 1353004 1c000e84 00130313 addi x6, x6, 1 x6=1c00ace0 x6:1c00acdf +75392907ns 1353005 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000030 +75392986ns 1353009 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ace0 PA:1c00ace0 +75393006ns 1353010 1c000e82 fff60613 addi x12, x12, -1 x12=0000002f x12:00000030 +75393026ns 1353011 1c000e84 00130313 addi x6, x6, 1 x6=1c00ace1 x6:1c00ace0 +75393046ns 1353012 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000002f +75393125ns 1353016 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ace1 PA:1c00ace1 +75393145ns 1353017 1c000e82 fff60613 addi x12, x12, -1 x12=0000002e x12:0000002f +75393164ns 1353018 1c000e84 00130313 addi x6, x6, 1 x6=1c00ace2 x6:1c00ace1 +75393184ns 1353019 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000002e +75393263ns 1353023 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ace2 PA:1c00ace2 +75393283ns 1353024 1c000e82 fff60613 addi x12, x12, -1 x12=0000002d x12:0000002e +75393303ns 1353025 1c000e84 00130313 addi x6, x6, 1 x6=1c00ace3 x6:1c00ace2 +75393323ns 1353026 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000002d +75393402ns 1353030 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ace3 PA:1c00ace3 +75393422ns 1353031 1c000e82 fff60613 addi x12, x12, -1 x12=0000002c x12:0000002d +75393441ns 1353032 1c000e84 00130313 addi x6, x6, 1 x6=1c00ace4 x6:1c00ace3 +75393461ns 1353033 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000002c +75393540ns 1353037 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ace4 PA:1c00ace4 +75393560ns 1353038 1c000e82 fff60613 addi x12, x12, -1 x12=0000002b x12:0000002c +75393580ns 1353039 1c000e84 00130313 addi x6, x6, 1 x6=1c00ace5 x6:1c00ace4 +75393600ns 1353040 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000002b +75393679ns 1353044 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ace5 PA:1c00ace5 +75393699ns 1353045 1c000e82 fff60613 addi x12, x12, -1 x12=0000002a x12:0000002b +75393719ns 1353046 1c000e84 00130313 addi x6, x6, 1 x6=1c00ace6 x6:1c00ace5 +75393738ns 1353047 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000002a +75393818ns 1353051 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ace6 PA:1c00ace6 +75393837ns 1353052 1c000e82 fff60613 addi x12, x12, -1 x12=00000029 x12:0000002a +75393857ns 1353053 1c000e84 00130313 addi x6, x6, 1 x6=1c00ace7 x6:1c00ace6 +75393877ns 1353054 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000029 +75393956ns 1353058 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ace7 PA:1c00ace7 +75393976ns 1353059 1c000e82 fff60613 addi x12, x12, -1 x12=00000028 x12:00000029 +75393996ns 1353060 1c000e84 00130313 addi x6, x6, 1 x6=1c00ace8 x6:1c00ace7 +75394015ns 1353061 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000028 +75394095ns 1353065 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ace8 PA:1c00ace8 +75394114ns 1353066 1c000e82 fff60613 addi x12, x12, -1 x12=00000027 x12:00000028 +75394134ns 1353067 1c000e84 00130313 addi x6, x6, 1 x6=1c00ace9 x6:1c00ace8 +75394154ns 1353068 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000027 +75394233ns 1353072 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ace9 PA:1c00ace9 +75394253ns 1353073 1c000e82 fff60613 addi x12, x12, -1 x12=00000026 x12:00000027 +75394273ns 1353074 1c000e84 00130313 addi x6, x6, 1 x6=1c00acea x6:1c00ace9 +75394293ns 1353075 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000026 +75394372ns 1353079 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00acea PA:1c00acea +75394392ns 1353080 1c000e82 fff60613 addi x12, x12, -1 x12=00000025 x12:00000026 +75394411ns 1353081 1c000e84 00130313 addi x6, x6, 1 x6=1c00aceb x6:1c00acea +75394431ns 1353082 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000025 +75394510ns 1353086 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aceb PA:1c00aceb +75394530ns 1353087 1c000e82 fff60613 addi x12, x12, -1 x12=00000024 x12:00000025 +75394550ns 1353088 1c000e84 00130313 addi x6, x6, 1 x6=1c00acec x6:1c00aceb +75394570ns 1353089 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000024 +75394649ns 1353093 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00acec PA:1c00acec +75394669ns 1353094 1c000e82 fff60613 addi x12, x12, -1 x12=00000023 x12:00000024 +75394688ns 1353095 1c000e84 00130313 addi x6, x6, 1 x6=1c00aced x6:1c00acec +75394708ns 1353096 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000023 +75394787ns 1353100 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00aced PA:1c00aced +75394807ns 1353101 1c000e82 fff60613 addi x12, x12, -1 x12=00000022 x12:00000023 +75394827ns 1353102 1c000e84 00130313 addi x6, x6, 1 x6=1c00acee x6:1c00aced +75394847ns 1353103 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000022 +75394926ns 1353107 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00acee PA:1c00acee +75394946ns 1353108 1c000e82 fff60613 addi x12, x12, -1 x12=00000021 x12:00000022 +75394965ns 1353109 1c000e84 00130313 addi x6, x6, 1 x6=1c00acef x6:1c00acee +75394985ns 1353110 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000021 +75395064ns 1353114 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00acef PA:1c00acef +75395084ns 1353115 1c000e82 fff60613 addi x12, x12, -1 x12=00000020 x12:00000021 +75395104ns 1353116 1c000e84 00130313 addi x6, x6, 1 x6=1c00acf0 x6:1c00acef +75395124ns 1353117 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000020 +75395203ns 1353121 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00acf0 PA:1c00acf0 +75395223ns 1353122 1c000e82 fff60613 addi x12, x12, -1 x12=0000001f x12:00000020 +75395243ns 1353123 1c000e84 00130313 addi x6, x6, 1 x6=1c00acf1 x6:1c00acf0 +75395262ns 1353124 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000001f +75395342ns 1353128 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00acf1 PA:1c00acf1 +75395361ns 1353129 1c000e82 fff60613 addi x12, x12, -1 x12=0000001e x12:0000001f +75395381ns 1353130 1c000e84 00130313 addi x6, x6, 1 x6=1c00acf2 x6:1c00acf1 +75395401ns 1353131 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000001e +75395480ns 1353135 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00acf2 PA:1c00acf2 +75395500ns 1353136 1c000e82 fff60613 addi x12, x12, -1 x12=0000001d x12:0000001e +75395520ns 1353137 1c000e84 00130313 addi x6, x6, 1 x6=1c00acf3 x6:1c00acf2 +75395539ns 1353138 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000001d +75395619ns 1353142 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00acf3 PA:1c00acf3 +75395638ns 1353143 1c000e82 fff60613 addi x12, x12, -1 x12=0000001c x12:0000001d +75395658ns 1353144 1c000e84 00130313 addi x6, x6, 1 x6=1c00acf4 x6:1c00acf3 +75395678ns 1353145 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000001c +75395757ns 1353149 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00acf4 PA:1c00acf4 +75395777ns 1353150 1c000e82 fff60613 addi x12, x12, -1 x12=0000001b x12:0000001c +75395797ns 1353151 1c000e84 00130313 addi x6, x6, 1 x6=1c00acf5 x6:1c00acf4 +75395817ns 1353152 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000001b +75395896ns 1353156 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00acf5 PA:1c00acf5 +75395915ns 1353157 1c000e82 fff60613 addi x12, x12, -1 x12=0000001a x12:0000001b +75395935ns 1353158 1c000e84 00130313 addi x6, x6, 1 x6=1c00acf6 x6:1c00acf5 +75395955ns 1353159 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000001a +75396034ns 1353163 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00acf6 PA:1c00acf6 +75396054ns 1353164 1c000e82 fff60613 addi x12, x12, -1 x12=00000019 x12:0000001a +75396074ns 1353165 1c000e84 00130313 addi x6, x6, 1 x6=1c00acf7 x6:1c00acf6 +75396094ns 1353166 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000019 +75396173ns 1353170 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00acf7 PA:1c00acf7 +75396193ns 1353171 1c000e82 fff60613 addi x12, x12, -1 x12=00000018 x12:00000019 +75396212ns 1353172 1c000e84 00130313 addi x6, x6, 1 x6=1c00acf8 x6:1c00acf7 +75396232ns 1353173 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000018 +75396311ns 1353177 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00acf8 PA:1c00acf8 +75396331ns 1353178 1c000e82 fff60613 addi x12, x12, -1 x12=00000017 x12:00000018 +75396351ns 1353179 1c000e84 00130313 addi x6, x6, 1 x6=1c00acf9 x6:1c00acf8 +75396371ns 1353180 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000017 +75396450ns 1353184 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00acf9 PA:1c00acf9 +75396470ns 1353185 1c000e82 fff60613 addi x12, x12, -1 x12=00000016 x12:00000017 +75396489ns 1353186 1c000e84 00130313 addi x6, x6, 1 x6=1c00acfa x6:1c00acf9 +75396509ns 1353187 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000016 +75396588ns 1353191 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00acfa PA:1c00acfa +75396608ns 1353192 1c000e82 fff60613 addi x12, x12, -1 x12=00000015 x12:00000016 +75396628ns 1353193 1c000e84 00130313 addi x6, x6, 1 x6=1c00acfb x6:1c00acfa +75396648ns 1353194 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000015 +75396727ns 1353198 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00acfb PA:1c00acfb +75396747ns 1353199 1c000e82 fff60613 addi x12, x12, -1 x12=00000014 x12:00000015 +75396767ns 1353200 1c000e84 00130313 addi x6, x6, 1 x6=1c00acfc x6:1c00acfb +75396786ns 1353201 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000014 +75396866ns 1353205 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00acfc PA:1c00acfc +75396885ns 1353206 1c000e82 fff60613 addi x12, x12, -1 x12=00000013 x12:00000014 +75396905ns 1353207 1c000e84 00130313 addi x6, x6, 1 x6=1c00acfd x6:1c00acfc +75396925ns 1353208 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000013 +75397004ns 1353212 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00acfd PA:1c00acfd +75397024ns 1353213 1c000e82 fff60613 addi x12, x12, -1 x12=00000012 x12:00000013 +75397044ns 1353214 1c000e84 00130313 addi x6, x6, 1 x6=1c00acfe x6:1c00acfd +75397063ns 1353215 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000012 +75397143ns 1353219 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00acfe PA:1c00acfe +75397162ns 1353220 1c000e82 fff60613 addi x12, x12, -1 x12=00000011 x12:00000012 +75397182ns 1353221 1c000e84 00130313 addi x6, x6, 1 x6=1c00acff x6:1c00acfe +75397202ns 1353222 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000011 +75397281ns 1353226 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00acff PA:1c00acff +75397301ns 1353227 1c000e82 fff60613 addi x12, x12, -1 x12=00000010 x12:00000011 +75397321ns 1353228 1c000e84 00130313 addi x6, x6, 1 x6=1c00ad00 x6:1c00acff +75397341ns 1353229 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000010 +75397420ns 1353233 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ad00 PA:1c00ad00 +75397439ns 1353234 1c000e82 fff60613 addi x12, x12, -1 x12=0000000f x12:00000010 +75397459ns 1353235 1c000e84 00130313 addi x6, x6, 1 x6=1c00ad01 x6:1c00ad00 +75397479ns 1353236 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000000f +75397558ns 1353240 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ad01 PA:1c00ad01 +75397578ns 1353241 1c000e82 fff60613 addi x12, x12, -1 x12=0000000e x12:0000000f +75397598ns 1353242 1c000e84 00130313 addi x6, x6, 1 x6=1c00ad02 x6:1c00ad01 +75397618ns 1353243 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000000e +75397697ns 1353247 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ad02 PA:1c00ad02 +75397717ns 1353248 1c000e82 fff60613 addi x12, x12, -1 x12=0000000d x12:0000000e +75397736ns 1353249 1c000e84 00130313 addi x6, x6, 1 x6=1c00ad03 x6:1c00ad02 +75397756ns 1353250 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000000d +75397835ns 1353254 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ad03 PA:1c00ad03 +75397855ns 1353255 1c000e82 fff60613 addi x12, x12, -1 x12=0000000c x12:0000000d +75397875ns 1353256 1c000e84 00130313 addi x6, x6, 1 x6=1c00ad04 x6:1c00ad03 +75397895ns 1353257 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000000c +75397974ns 1353261 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ad04 PA:1c00ad04 +75397994ns 1353262 1c000e82 fff60613 addi x12, x12, -1 x12=0000000b x12:0000000c +75398013ns 1353263 1c000e84 00130313 addi x6, x6, 1 x6=1c00ad05 x6:1c00ad04 +75398033ns 1353264 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000000b +75398112ns 1353268 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ad05 PA:1c00ad05 +75398132ns 1353269 1c000e82 fff60613 addi x12, x12, -1 x12=0000000a x12:0000000b +75398152ns 1353270 1c000e84 00130313 addi x6, x6, 1 x6=1c00ad06 x6:1c00ad05 +75398172ns 1353271 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000000a +75398251ns 1353275 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ad06 PA:1c00ad06 +75398271ns 1353276 1c000e82 fff60613 addi x12, x12, -1 x12=00000009 x12:0000000a +75398291ns 1353277 1c000e84 00130313 addi x6, x6, 1 x6=1c00ad07 x6:1c00ad06 +75398310ns 1353278 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000009 +75398389ns 1353282 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ad07 PA:1c00ad07 +75398409ns 1353283 1c000e82 fff60613 addi x12, x12, -1 x12=00000008 x12:00000009 +75398429ns 1353284 1c000e84 00130313 addi x6, x6, 1 x6=1c00ad08 x6:1c00ad07 +75398449ns 1353285 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000008 +75398528ns 1353289 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ad08 PA:1c00ad08 +75398548ns 1353290 1c000e82 fff60613 addi x12, x12, -1 x12=00000007 x12:00000008 +75398568ns 1353291 1c000e84 00130313 addi x6, x6, 1 x6=1c00ad09 x6:1c00ad08 +75398587ns 1353292 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000007 +75398667ns 1353296 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ad09 PA:1c00ad09 +75398686ns 1353297 1c000e82 fff60613 addi x12, x12, -1 x12=00000006 x12:00000007 +75398706ns 1353298 1c000e84 00130313 addi x6, x6, 1 x6=1c00ad0a x6:1c00ad09 +75398726ns 1353299 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000006 +75398805ns 1353303 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ad0a PA:1c00ad0a +75398825ns 1353304 1c000e82 fff60613 addi x12, x12, -1 x12=00000005 x12:00000006 +75398845ns 1353305 1c000e84 00130313 addi x6, x6, 1 x6=1c00ad0b x6:1c00ad0a +75398865ns 1353306 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000005 +75398944ns 1353310 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ad0b PA:1c00ad0b +75398963ns 1353311 1c000e82 fff60613 addi x12, x12, -1 x12=00000004 x12:00000005 +75398983ns 1353312 1c000e84 00130313 addi x6, x6, 1 x6=1c00ad0c x6:1c00ad0b +75399003ns 1353313 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000004 +75399082ns 1353317 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ad0c PA:1c00ad0c +75399102ns 1353318 1c000e82 fff60613 addi x12, x12, -1 x12=00000003 x12:00000004 +75399122ns 1353319 1c000e84 00130313 addi x6, x6, 1 x6=1c00ad0d x6:1c00ad0c +75399142ns 1353320 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000003 +75399221ns 1353324 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ad0d PA:1c00ad0d +75399241ns 1353325 1c000e82 fff60613 addi x12, x12, -1 x12=00000002 x12:00000003 +75399260ns 1353326 1c000e84 00130313 addi x6, x6, 1 x6=1c00ad0e x6:1c00ad0d +75399280ns 1353327 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000002 +75399359ns 1353331 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ad0e PA:1c00ad0e +75399379ns 1353332 1c000e82 fff60613 addi x12, x12, -1 x12=00000001 x12:00000002 +75399399ns 1353333 1c000e84 00130313 addi x6, x6, 1 x6=1c00ad0f x6:1c00ad0e +75399419ns 1353334 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000001 +75399498ns 1353338 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ad0f PA:1c00ad0f +75399518ns 1353339 1c000e82 fff60613 addi x12, x12, -1 x12=00000000 x12:00000001 +75399537ns 1353340 1c000e84 00130313 addi x6, x6, 1 x6=1c00ad10 x6:1c00ad0f +75399557ns 1353341 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000000 +75399577ns 1353342 1c000e88 00008067 jalr x0, x1, 0 x1:1c002116 +75399636ns 1353345 1c002116 34440793 addi x15, x8, 836 x15=1c00abd4 x8:1c00a890 +75399656ns 1353346 1c00211a 04f42e23 sw x15, 92(x8) x15:1c00abd4 x8:1c00a890 PA:1c00a8ec +75399676ns 1353347 1c00211c 3ac40793 addi x15, x8, 940 x15=1c00ac3c x8:1c00a890 +75399696ns 1353348 1c002120 06f42023 sw x15, 96(x8) x15:1c00ac3c x8:1c00a890 PA:1c00a8f0 +75399716ns 1353349 1c002122 00100713 addi x14, x0, 1 x14=00000001 +75399735ns 1353350 1c002124 41440793 addi x15, x8, 1044 x15=1c00aca4 x8:1c00a890 +75399755ns 1353351 1c002128 06f42223 sw x15, 100(x8) x15:1c00aca4 x8:1c00a890 PA:1c00a8f4 +75399775ns 1353352 1c00212a 10e42023 sw x14, 256(x8) x14:00000001 x8:1c00a890 PA:1c00a990 +75399795ns 1353353 1c00212e 00000793 addi x15, x0, 0 x15=00000000 +75399815ns 1353354 1c002130 abcd3737 lui x14, 0xabcd3000 x14=abcd3000 +75399834ns 1353355 1c002134 10f42223 sw x15, 260(x8) x15:00000000 x8:1c00a890 PA:1c00a994 +75399854ns 1353356 1c002138 30e70713 addi x14, x14, 782 x14=abcd330e x14:abcd3000 +75399874ns 1353357 1c00213c 10040793 addi x15, x8, 256 x15=1c00a990 x8:1c00a890 +75399894ns 1353358 1c002140 00e7a423 sw x14, 8(x15) x14:abcd330e x15:1c00a990 PA:1c00a998 +75399913ns 1353359 1c002142 e66d1737 lui x14, 0xe66d1000 x14=e66d1000 +75399933ns 1353360 1c002146 23470713 addi x14, x14, 564 x14=e66d1234 x14:e66d1000 +75399953ns 1353361 1c00214a 00e7a623 sw x14, 12(x15) x14:e66d1234 x15:1c00a990 PA:1c00a99c +75399973ns 1353362 1c00214c 0005e737 lui x14, 0x5e000 x14=0005e000 +75399993ns 1353363 1c002150 eec70713 addi x14, x14, -276 x14=0005deec x14:0005e000 +75400012ns 1353364 1c002154 ffc98993 addi x19, x19, -4 x19=0000063c x19:00000640 +75400032ns 1353365 1c002156 00e7a823 sw x14, 16(x15) x14:0005deec x15:1c00a990 PA:1c00a9a0 +75400052ns 1353366 1c002158 018989b3 add x19, x19, x24 x19=1c00a884 x19:0000063c x24:1c00a248 +75400072ns 1353367 1c00215a 00b00793 addi x15, x0, 11 x15=0000000b +75400092ns 1353368 1c00215c 10f41a23 sh x15, 276(x8) x15:0000000b x8:1c00a890 PA:1c00a9a4 +75400111ns 1353369 1c002160 480402a3 sb x0, 1157(x8) x8:1c00a890 PA:1c00ad15 +75400131ns 1353370 1c002164 01700633 add x12, x0, x23 x12=00000000 x23:00000000 +75400151ns 1353371 1c002166 016005b3 add x11, x0, x22 x11=1c0022f6 x22:1c0022f6 +75400171ns 1353372 1c002168 ff09f513 andi x10, x19, -16 x10=1c00a880 x19:1c00a884 +75400191ns 1353373 1c00216c c95fe0ef jal x1, -4972 x1=1c002170 +75400230ns 1353375 1c000e00 300022f3 csrrs x5, x0, 0x300 x5=00001800 +75400309ns 1353379 1c000e04 ff72f293 andi x5, x5, -9 x5=00001800 x5:00001800 +75400329ns 1353380 1c000e08 18800313 addi x6, x0, 392 x6=00000188 +75400349ns 1353381 1c000e0c 00431313 slli x6, x6, 0x4 x6=00001880 x6:00000188 +75400369ns 1353382 1c000e0e 0062e2b3 or x5, x5, x6 x5=00001880 x5:00001800 x6:00001880 +75400388ns 1353383 1c000e12 ffc50513 addi x10, x10, -4 x10=1c00a87c x10:1c00a880 +75400408ns 1353384 1c000e14 00552023 sw x5, 0(x10) x5:00001880 x10:1c00a87c PA:1c00a87c +75400428ns 1353385 1c000e18 fa850513 addi x10, x10, -88 x10=1c00a824 x10:1c00a87c +75400448ns 1353386 1c000e1c 00c52023 sw x12, 0(x10) x12:00000000 x10:1c00a824 PA:1c00a824 +75400468ns 1353387 1c000e1e fe850513 addi x10, x10, -24 x10=1c00a80c x10:1c00a824 +75400487ns 1353388 1c000e20 00052023 sw x0, 0(x10) x10:1c00a80c PA:1c00a80c +75400507ns 1353389 1c000e24 00600293 addi x5, x0, 6 x5=00000006 +75400527ns 1353390 1c000e26 00028763 beq x5, x0, 14 x5:00000006 +75400547ns 1353391 1c000e2a ffc50513 addi x10, x10, -4 x10=1c00a808 x10:1c00a80c +75400567ns 1353392 1c000e2c 00052023 sw x0, 0(x10) x10:1c00a808 PA:1c00a808 +75400586ns 1353393 1c000e30 fff28293 addi x5, x5, -1 x5=00000005 x5:00000006 +75400606ns 1353394 1c000e32 ff5ff06f jal x0, -12 +75400666ns 1353397 1c000e26 00028763 beq x5, x0, 14 x5:00000005 +75400685ns 1353398 1c000e2a ffc50513 addi x10, x10, -4 x10=1c00a804 x10:1c00a808 +75400705ns 1353399 1c000e2c 00052023 sw x0, 0(x10) x10:1c00a804 PA:1c00a804 +75400725ns 1353400 1c000e30 fff28293 addi x5, x5, -1 x5=00000004 x5:00000005 +75400745ns 1353401 1c000e32 ff5ff06f jal x0, -12 +75400804ns 1353404 1c000e26 00028763 beq x5, x0, 14 x5:00000004 +75400824ns 1353405 1c000e2a ffc50513 addi x10, x10, -4 x10=1c00a800 x10:1c00a804 +75400844ns 1353406 1c000e2c 00052023 sw x0, 0(x10) x10:1c00a800 PA:1c00a800 +75400863ns 1353407 1c000e30 fff28293 addi x5, x5, -1 x5=00000003 x5:00000004 +75400883ns 1353408 1c000e32 ff5ff06f jal x0, -12 +75400943ns 1353411 1c000e26 00028763 beq x5, x0, 14 x5:00000003 +75400962ns 1353412 1c000e2a ffc50513 addi x10, x10, -4 x10=1c00a7fc x10:1c00a800 +75400982ns 1353413 1c000e2c 00052023 sw x0, 0(x10) x10:1c00a7fc PA:1c00a7fc +75401002ns 1353414 1c000e30 fff28293 addi x5, x5, -1 x5=00000002 x5:00000003 +75401022ns 1353415 1c000e32 ff5ff06f jal x0, -12 +75401081ns 1353418 1c000e26 00028763 beq x5, x0, 14 x5:00000002 +75401101ns 1353419 1c000e2a ffc50513 addi x10, x10, -4 x10=1c00a7f8 x10:1c00a7fc +75401121ns 1353420 1c000e2c 00052023 sw x0, 0(x10) x10:1c00a7f8 PA:1c00a7f8 +75401141ns 1353421 1c000e30 fff28293 addi x5, x5, -1 x5=00000001 x5:00000002 +75401160ns 1353422 1c000e32 ff5ff06f jal x0, -12 +75401220ns 1353425 1c000e26 00028763 beq x5, x0, 14 x5:00000001 +75401240ns 1353426 1c000e2a ffc50513 addi x10, x10, -4 x10=1c00a7f4 x10:1c00a7f8 +75401259ns 1353427 1c000e2c 00052023 sw x0, 0(x10) x10:1c00a7f4 PA:1c00a7f4 +75401279ns 1353428 1c000e30 fff28293 addi x5, x5, -1 x5=00000000 x5:00000001 +75401299ns 1353429 1c000e32 ff5ff06f jal x0, -12 +75401358ns 1353432 1c000e26 00028763 beq x5, x0, 14 x5:00000000 +75401418ns 1353435 1c000e34 ffc50513 addi x10, x10, -4 x10=1c00a7f0 x10:1c00a7f4 +75401437ns 1353436 1c000e36 00b52023 sw x11, 0(x10) x11:1c0022f6 x10:1c00a7f0 PA:1c00a7f0 +75401457ns 1353437 1c000e38 00008067 jalr x0, x1, 0 x1:1c002170 +75401497ns 1353439 1c002170 00a42023 sw x10, 0(x8) x10:1c00a7f0 x8:1c00a890 PA:1c00a890 +75401517ns 1353440 1c002172 000a8463 beq x21, x0, 8 x21:1c009150 +75401536ns 1353441 1c002176 008aa023 sw x8, 0(x21) x8:1c00a890 x21:1c009150 PA:1c009150 +75401556ns 1353442 1c00217a e93ff0ef jal x1, -366 x1=1c00217c +75401596ns 1353444 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +75401675ns 1353448 1c002010 d841a783 lw x15, -636(x3) x15=00000000 x3:1c0093dc PA:1c009160 +75401715ns 1353450 1c002014 00078863 beq x15, x0, 16 x15:00000000 +75401774ns 1353453 1c002024 00008067 jalr x0, x1, 0 x1:1c00217c +75401814ns 1353455 1c00217c d6018793 addi x15, x3, -672 x15=1c00913c x3:1c0093dc +75401833ns 1353456 1c002180 0007a703 lw x14, 0(x15) x14=00000001 x15:1c00913c PA:1c00913c +75401853ns 1353457 1c002182 1c0094b7 lui x9, 0x1c009000 x9=1c009000 +75401873ns 1353458 1c002186 00170713 addi x14, x14, 1 x14=00000002 x14:00000001 +75401893ns 1353459 1c002188 00e7a023 sw x14, 0(x15) x14:00000002 x15:1c00913c PA:1c00913c +75401912ns 1353460 1c00218a d5418713 addi x14, x3, -684 x14=1c009130 x3:1c0093dc +75401932ns 1353461 1c00218e 00072703 lw x14, 0(x14) x14=1c009db8 x14:1c009130 PA:1c009130 +75401952ns 1353462 1c002190 d5418913 addi x18, x3, -684 x18=1c009130 x3:1c0093dc +75401972ns 1353463 1c002194 c8848993 addi x19, x9, -888 x19=1c008c88 x9:1c009000 +75401992ns 1353464 1c002198 0a071d63 bne x14, x0, 186 x14:1c009db8 +75402071ns 1353468 1c002252 d841a783 lw x15, -636(x3) x15=00000000 x3:1c0093dc PA:1c009160 +75402110ns 1353470 1c002256 f8079fe3 bne x15, x0, -98 x15:00000000 +75402130ns 1353471 1c002258 00092783 lw x15, 0(x18) x15=1c009db8 x18:1c009130 PA:1c009130 +75402150ns 1353472 1c00225c 02c42703 lw x14, 44(x8) x14=00000000 x8:1c00a890 PA:1c00a8bc +75402170ns 1353473 1c00225e 02c7a783 lw x15, 44(x15) x15=00000001 x15:1c009db8 PA:1c009de4 +75402209ns 1353475 1c002260 f8f76ae3 bltu x14, x15, -108 x14:00000000 x15:00000001 +75402269ns 1353478 1c0021f4 d6c18713 addi x14, x3, -660 x14=1c009148 x3:1c0093dc +75402289ns 1353479 1c0021f8 00072783 lw x15, 0(x14) x15=00000001 x14:1c009148 PA:1c009148 +75402308ns 1353480 1c0021fa 02c42503 lw x10, 44(x8) x10=00000000 x8:1c00a890 PA:1c00a8bc +75402328ns 1353481 1c0021fc 014005b3 add x11, x0, x20 x11=1c00a894 x20:1c00a894 +75402348ns 1353482 1c0021fe 00178793 addi x15, x15, 1 x15=00000002 x15:00000001 +75402368ns 1353483 1c002200 00f72023 sw x15, 0(x14) x15:00000002 x14:1c009148 PA:1c009148 +75402387ns 1353484 1c002202 d7018713 addi x14, x3, -656 x14=1c00914c x3:1c0093dc +75402407ns 1353485 1c002206 00072683 lw x13, 0(x14) x13=00000002 x14:1c00914c PA:1c00914c +75402427ns 1353486 1c002208 04f42423 sw x15, 72(x8) x15:00000002 x8:1c00a890 PA:1c00a8d8 +75402447ns 1353487 1c00220a 00100793 addi x15, x0, 1 x15=00000001 +75402467ns 1353488 1c00220c 00a797b3 sll x15, x15, x10 x15=00000001 x15:00000001 x10:00000000 +75402486ns 1353489 1c002210 00d7e7b3 or x15, x15, x13 x15=00000003 x15:00000001 x13:00000002 +75402506ns 1353490 1c002212 00f72023 sw x15, 0(x14) x15:00000003 x14:1c00914c PA:1c00914c +75402526ns 1353491 1c002214 01400793 addi x15, x0, 20 x15=00000014 +75402546ns 1353492 1c002216 02f50533 mul x10, x10, x15 x10=00000000 x10:00000000 x15:00000014 +75402566ns 1353493 1c00221a 01350533 add x10, x10, x19 x10=1c008c88 x10:00000000 x19:1c008c88 +75402585ns 1353494 1c00221c cc5fe0ef jal x1, -4924 x1=1c002220 +75402625ns 1353496 1c000ee0 00452783 lw x15, 4(x10) x15=1c008c90 x10:1c008c88 PA:1c008c8c +75402665ns 1353498 1c000ee2 0087a703 lw x14, 8(x15) x14=1c008c90 x15:1c008c90 PA:1c008c98 +75402684ns 1353499 1c000ee4 00f5a223 sw x15, 4(x11) x15:1c008c90 x11:1c00a894 PA:1c00a898 +75402704ns 1353500 1c000ee6 00e5a423 sw x14, 8(x11) x14:1c008c90 x11:1c00a894 PA:1c00a89c +75402724ns 1353501 1c000ee8 0087a703 lw x14, 8(x15) x14=1c008c90 x15:1c008c90 PA:1c008c98 +75402764ns 1353503 1c000eea 00b72223 sw x11, 4(x14) x11:1c00a894 x14:1c008c90 PA:1c008c94 +75402783ns 1353504 1c000eec 00b7a423 sw x11, 8(x15) x11:1c00a894 x15:1c008c90 PA:1c008c98 +75402803ns 1353505 1c000eee 00052783 lw x15, 0(x10) x15=00000000 x10:1c008c88 PA:1c008c88 +75402823ns 1353506 1c000ef0 00a5a823 sw x10, 16(x11) x10:1c008c88 x11:1c00a894 PA:1c00a8a4 +75402843ns 1353507 1c000ef2 00178793 addi x15, x15, 1 x15=00000001 x15:00000000 +75402862ns 1353508 1c000ef4 00f52023 sw x15, 0(x10) x15:00000001 x10:1c008c88 PA:1c008c88 +75402882ns 1353509 1c000ef6 00008067 jalr x0, x1, 0 x1:1c002220 +75402922ns 1353511 1c002220 e07ff0ef jal x1, -506 x1=1c002222 +75402981ns 1353514 1c002026 d841a783 lw x15, -636(x3) x15=00000000 x3:1c0093dc PA:1c009160 +75403021ns 1353516 1c00202a 00078f63 beq x15, x0, 30 x15:00000000 +75403080ns 1353519 1c002048 00008067 jalr x0, x1, 0 x1:1c002222 +75403140ns 1353522 1c002222 d841a783 lw x15, -636(x3) x15=00000000 x3:1c0093dc PA:1c009160 +75403159ns 1353523 1c002226 00100513 addi x10, x0, 1 x10=00000001 +75403179ns 1353524 1c002228 00078963 beq x15, x0, 18 x15:00000000 +75403239ns 1353527 1c00223a 02c12083 lw x1, 44(x2) x1=1c002290 x2:1c019950 PA:1c01997c +75403258ns 1353528 1c00223c 02812403 lw x8, 40(x2) x8=00000001 x2:1c019950 PA:1c019978 +75403278ns 1353529 1c00223e 02412483 lw x9, 36(x2) x9=xxxxxxxx x2:1c019950 PA:1c019974 +75403298ns 1353530 1c002240 02012903 lw x18, 32(x2) x18=xxxxxxxx x2:1c019950 PA:1c019970 +75403318ns 1353531 1c002242 01c12983 lw x19, 28(x2) x19=xxxxxxxx x2:1c019950 PA:1c01996c +75403337ns 1353532 1c002244 01812a03 lw x20, 24(x2) x20=xxxxxxxx x2:1c019950 PA:1c019968 +75403357ns 1353533 1c002246 01412a83 lw x21, 20(x2) x21=xxxxxxxx x2:1c019950 PA:1c019964 +75403377ns 1353534 1c002248 01012b03 lw x22, 16(x2) x22=xxxxxxxx x2:1c019950 PA:1c019960 +75403397ns 1353535 1c00224a 00c12b83 lw x23, 12(x2) x23=xxxxxxxx x2:1c019950 PA:1c01995c +75403417ns 1353536 1c00224c 00812c03 lw x24, 8(x2) x24=xxxxxxxx x2:1c019950 PA:1c019958 +75403436ns 1353537 1c00224e 03010113 addi x2, x2, 48 x2=1c019980 x2:1c019950 +75403456ns 1353538 1c002250 00008067 jalr x0, x1, 0 x1:1c002290 +75403496ns 1353540 1c002290 02851b63 bne x10, x8, 54 x10:00000001 x8:00000001 +75403516ns 1353541 1c002294 32c000ef jal x1, 812 x1=1c002296 +75403555ns 1353543 1c0025c0 ff010113 addi x2, x2, -16 x2=1c019970 x2:1c019980 +75403575ns 1353544 1c0025c2 00112623 sw x1, 12(x2) x1:1c002296 x2:1c019970 PA:1c01997c +75403595ns 1353545 1c0025c4 f5fff0ef jal x1, -162 x1=1c0025c6 +75403634ns 1353547 1c002522 ff010113 addi x2, x2, -16 x2=1c019960 x2:1c019970 +75403654ns 1353548 1c002524 00812423 sw x8, 8(x2) x8:00000001 x2:1c019960 PA:1c019968 +75403674ns 1353549 1c002526 00112623 sw x1, 12(x2) x1:1c0025c6 x2:1c019960 PA:1c01996c +75403694ns 1353550 1c002528 00912223 sw x9, 4(x2) x9:xxxxxxxx x2:1c019960 PA:1c019964 +75403714ns 1353551 1c00252a 01212023 sw x18, 0(x2) x18:xxxxxxxx x2:1c019960 PA:1c019960 +75403733ns 1353552 1c00252c d9c18413 addi x8, x3, -612 x8=1c009178 x3:1c0093dc +75403753ns 1353553 1c002530 addff0ef jal x1, -1316 x1=1c002534 +75403793ns 1353555 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +75403872ns 1353559 1c002010 d841a783 lw x15, -636(x3) x15=00000000 x3:1c0093dc PA:1c009160 +75403911ns 1353561 1c002014 00078863 beq x15, x0, 16 x15:00000000 +75403971ns 1353564 1c002024 00008067 jalr x0, x1, 0 x1:1c002534 +75404010ns 1353566 1c002534 00042783 lw x15, 0(x8) x15=00000000 x8:1c009178 PA:1c009178 +75404050ns 1353568 1c002536 02079e63 bne x15, x0, 60 x15:00000000 +75404070ns 1353569 1c002538 97418913 addi x18, x3, -1676 x18=1c008d50 x3:1c0093dc +75404090ns 1353570 1c00253c 97418513 addi x10, x3, -1676 x10=1c008d50 x3:1c0093dc +75404109ns 1353571 1c002540 987fe0ef jal x1, -5754 x1=1c002544 +75404169ns 1353574 1c000ec6 00850793 addi x15, x10, 8 x15=1c008d58 x10:1c008d50 +75404189ns 1353575 1c000eca fff00713 addi x14, x0, -1 x14=ffffffff +75404208ns 1353576 1c000ecc 00f52223 sw x15, 4(x10) x15:1c008d58 x10:1c008d50 PA:1c008d54 +75404228ns 1353577 1c000ece 00e52423 sw x14, 8(x10) x14:ffffffff x10:1c008d50 PA:1c008d58 +75404248ns 1353578 1c000ed0 00f52623 sw x15, 12(x10) x15:1c008d58 x10:1c008d50 PA:1c008d5c +75404268ns 1353579 1c000ed2 00f52823 sw x15, 16(x10) x15:1c008d58 x10:1c008d50 PA:1c008d60 +75404288ns 1353580 1c000ed4 00052023 sw x0, 0(x10) x10:1c008d50 PA:1c008d50 +75404307ns 1353581 1c000ed8 00008067 jalr x0, x1, 0 x1:1c002544 +75404347ns 1353583 1c002544 98818493 addi x9, x3, -1656 x9=1c008d64 x3:1c0093dc +75404367ns 1353584 1c002548 98818513 addi x10, x3, -1656 x10=1c008d64 x3:1c0093dc +75404386ns 1353585 1c00254c 97bfe0ef jal x1, -5766 x1=1c002550 +75404446ns 1353588 1c000ec6 00850793 addi x15, x10, 8 x15=1c008d6c x10:1c008d64 +75404466ns 1353589 1c000eca fff00713 addi x14, x0, -1 x14=ffffffff +75404485ns 1353590 1c000ecc 00f52223 sw x15, 4(x10) x15:1c008d6c x10:1c008d64 PA:1c008d68 +75404505ns 1353591 1c000ece 00e52423 sw x14, 8(x10) x14:ffffffff x10:1c008d64 PA:1c008d6c +75404525ns 1353592 1c000ed0 00f52623 sw x15, 12(x10) x15:1c008d6c x10:1c008d64 PA:1c008d70 +75404545ns 1353593 1c000ed2 00f52823 sw x15, 16(x10) x15:1c008d6c x10:1c008d64 PA:1c008d74 +75404565ns 1353594 1c000ed4 00052023 sw x0, 0(x10) x10:1c008d64 PA:1c008d64 +75404584ns 1353595 1c000ed8 00008067 jalr x0, x1, 0 x1:1c002550 +75404624ns 1353597 1c002550 d921a823 sw x18, -624(x3) x18:1c008d50 x3:1c0093dc PA:1c00916c +75404644ns 1353598 1c002554 00000613 addi x12, x0, 0 x12=00000000 +75404664ns 1353599 1c002556 01000593 addi x11, x0, 16 x11=00000010 +75404683ns 1353600 1c002558 00400513 addi x10, x0, 4 x10=00000004 +75404703ns 1353601 1c00255a d891aa23 sw x9, -620(x3) x9:1c008d64 x3:1c0093dc PA:1c009170 +75404723ns 1353602 1c00255e bb7fe0ef jal x1, -5194 x1=1c002562 +75404763ns 1353604 1c001114 fe010113 addi x2, x2, -32 x2=1c019940 x2:1c019960 +75404782ns 1353605 1c001116 00112e23 sw x1, 28(x2) x1:1c002562 x2:1c019940 PA:1c01995c +75404802ns 1353606 1c001118 00812c23 sw x8, 24(x2) x8:1c009178 x2:1c019940 PA:1c019958 +75404822ns 1353607 1c00111a 00912a23 sw x9, 20(x2) x9:1c008d64 x2:1c019940 PA:1c019954 +75404842ns 1353608 1c00111c 01212823 sw x18, 16(x2) x18:1c008d50 x2:1c019940 PA:1c019950 +75404861ns 1353609 1c00111e 01312623 sw x19, 12(x2) x19:xxxxxxxx x2:1c019940 PA:1c01994c +75404881ns 1353610 1c001120 02051163 bne x10, x0, 34 x10:00000004 +75404941ns 1353613 1c001142 00a00933 add x18, x0, x10 x18=00000004 x10:00000004 +75404960ns 1353614 1c001144 02b50533 mul x10, x10, x11 x10=00000040 x10:00000004 x11:00000010 +75404980ns 1353615 1c001148 00b004b3 add x9, x0, x11 x9=00000010 x11:00000010 +75405000ns 1353616 1c00114a 00c009b3 add x19, x0, x12 x19=00000000 x12:00000000 +75405020ns 1353617 1c00114c 05050513 addi x10, x10, 80 x10=00000090 x10:00000040 +75405040ns 1353618 1c001150 01b010ef jal x1, 6170 x1=1c001154 +75405079ns 1353620 1c00296a fe010113 addi x2, x2, -32 x2=1c019920 x2:1c019940 +75405099ns 1353621 1c00296c 00112e23 sw x1, 28(x2) x1:1c001154 x2:1c019920 PA:1c01993c +75405119ns 1353622 1c00296e 00812c23 sw x8, 24(x2) x8:1c009178 x2:1c019920 PA:1c019938 +75405139ns 1353623 1c002970 00a12623 sw x10, 12(x2) x10:00000090 x2:1c019920 PA:1c01992c +75405158ns 1353624 1c002972 8a4ff0ef jal x1, -3932 x1=1c002976 +75405218ns 1353627 1c001a16 d6818793 addi x15, x3, -664 x15=1c009144 x3:1c0093dc +75405238ns 1353628 1c001a1a 0007a703 lw x14, 0(x15) x14=00000000 x15:1c009144 PA:1c009144 +75405277ns 1353630 1c001a1c 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +75405297ns 1353631 1c001a1e 00e7a023 sw x14, 0(x15) x14:00000001 x15:1c009144 PA:1c009144 +75405317ns 1353632 1c001a20 00008067 jalr x0, x1, 0 x1:1c002976 +75405356ns 1353634 1c002976 00c12503 lw x10, 12(x2) x10=00000090 x2:1c019920 PA:1c01992c +75405376ns 1353635 1c002978 791000ef jal x1, 3984 x1=1c00297c +75405416ns 1353637 1c003908 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +75405435ns 1353638 1c00390c 00a005b3 add x11, x0, x10 x11=00000090 x10:00000090 +75405455ns 1353639 1c00390e c447a503 lw x10, -956(x15) x10=1c008bdc x15:1c009000 PA:1c008c44 +75405475ns 1353640 1c003912 0b60006f jal x0, 182 +75405515ns 1353642 1c0039c8 fe010113 addi x2, x2, -32 x2=1c019900 x2:1c019920 +75405534ns 1353643 1c0039ca 00912a23 sw x9, 20(x2) x9:00000010 x2:1c019900 PA:1c019914 +75405554ns 1353644 1c0039cc 00358493 addi x9, x11, 3 x9=00000093 x11:00000090 +75405574ns 1353645 1c0039d0 ffc4f493 andi x9, x9, -4 x9=00000090 x9:00000093 +75405594ns 1353646 1c0039d2 01212823 sw x18, 16(x2) x18:00000004 x2:1c019900 PA:1c019910 +75405614ns 1353647 1c0039d4 00112e23 sw x1, 28(x2) x1:1c00297c x2:1c019900 PA:1c01991c +75405633ns 1353648 1c0039d6 00812c23 sw x8, 24(x2) x8:1c009178 x2:1c019900 PA:1c019918 +75405653ns 1353649 1c0039d8 01312623 sw x19, 12(x2) x19:00000000 x2:1c019900 PA:1c01990c +75405673ns 1353650 1c0039da 00848493 addi x9, x9, 8 x9=00000098 x9:00000090 +75405693ns 1353651 1c0039dc 00c00793 addi x15, x0, 12 x15=0000000c +75405713ns 1353652 1c0039de 00a00933 add x18, x0, x10 x18=1c008bdc x10:1c008bdc +75405732ns 1353653 1c0039e0 04f4f363 bgeu x9, x15, 70 x9:00000098 x15:0000000c +75405811ns 1353657 1c003a26 fc04d0e3 bge x9, x0, -64 x9:00000098 +75405891ns 1353661 1c0039e6 04b4e263 bltu x9, x11, 68 x9:00000098 x11:00000090 +75405910ns 1353662 1c0039ea 01200533 add x10, x0, x18 x10=1c008bdc x18:1c008bdc +75405930ns 1353663 1c0039ec 87aff0ef jal x1, -3974 x1=1c0039f0 +75405990ns 1353666 1c002a66 fb1fe06f jal x0, -4176 +75406049ns 1353669 1c001a16 d6818793 addi x15, x3, -664 x15=1c009144 x3:1c0093dc +75406069ns 1353670 1c001a1a 0007a703 lw x14, 0(x15) x14=00000001 x15:1c009144 PA:1c009144 +75406108ns 1353672 1c001a1c 00170713 addi x14, x14, 1 x14=00000002 x14:00000001 +75406128ns 1353673 1c001a1e 00e7a023 sw x14, 0(x15) x14:00000002 x15:1c009144 PA:1c009144 +75406148ns 1353674 1c001a20 00008067 jalr x0, x1, 0 x1:1c0039f0 +75406188ns 1353676 1c0039f0 db81a703 lw x14, -584(x3) x14=00000000 x3:1c0093dc PA:1c009194 +75406207ns 1353677 1c0039f4 db818693 addi x13, x3, -584 x13=1c009194 x3:1c0093dc +75406227ns 1353678 1c0039f8 00e00433 add x8, x0, x14 x8=00000000 x14:00000000 +75406247ns 1353679 1c0039fa 04041363 bne x8, x0, 70 x8:00000000 +75406267ns 1353680 1c0039fc dbc18413 addi x8, x3, -580 x8=1c009198 x3:1c0093dc +75406287ns 1353681 1c003a00 00042783 lw x15, 0(x8) x15=1c0091b0 x8:1c009198 PA:1c009198 +75406326ns 1353683 1c003a02 00079563 bne x15, x0, 10 x15:1c0091b0 +75406385ns 1353686 1c003a0c 009005b3 add x11, x0, x9 x11=00000098 x9:00000098 +75406405ns 1353687 1c003a0e 01200533 add x10, x0, x18 x10=1c008bdc x18:1c008bdc +75406425ns 1353688 1c003a10 5cc000ef jal x1, 1484 x1=1c003a12 +75406465ns 1353690 1c003fdc ff010113 addi x2, x2, -16 x2=1c0198f0 x2:1c019900 +75406484ns 1353691 1c003fde 00812423 sw x8, 8(x2) x8:1c009198 x2:1c0198f0 PA:1c0198f8 +75406504ns 1353692 1c003fe0 00912223 sw x9, 4(x2) x9:00000098 x2:1c0198f0 PA:1c0198f4 +75406524ns 1353693 1c003fe2 00a00433 add x8, x0, x10 x8=1c008bdc x10:1c008bdc +75406544ns 1353694 1c003fe4 00b00533 add x10, x0, x11 x10=00000098 x11:00000098 +75406564ns 1353695 1c003fe6 00112623 sw x1, 12(x2) x1:1c003a12 x2:1c0198f0 PA:1c0198fc +75406583ns 1353696 1c003fe8 dc01a023 sw x0, -576(x3) x3:1c0093dc PA:1c00919c +75406603ns 1353697 1c003fec a53fe0ef jal x1, -5550 x1=1c003ff0 +75406663ns 1353700 1c002a3e 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +75406682ns 1353701 1c002a42 c3c78793 addi x15, x15, -964 x15=1c008c3c x15:1c009000 +75406702ns 1353702 1c002a46 00a00733 add x14, x0, x10 x14=00000098 x10:00000098 +75406722ns 1353703 1c002a48 0007a503 lw x10, 0(x15) x10=1c00ad1c x15:1c008c3c PA:1c008c3c +75406742ns 1353704 1c002a4a 1c0196b7 lui x13, 0x1c019000 x13=1c019000 +75406762ns 1353705 1c002a4e 1b068693 addi x13, x13, 432 x13=1c0191b0 x13:1c019000 +75406781ns 1353706 1c002a52 00a70733 add x14, x14, x10 x14=1c00adb4 x14:00000098 x10:1c00ad1c +75406801ns 1353707 1c002a54 00d76763 bltu x14, x13, 14 x14:1c00adb4 x13:1c0191b0 +75406860ns 1353710 1c002a62 00e7a023 sw x14, 0(x15) x14:1c00adb4 x15:1c008c3c PA:1c008c3c +75406880ns 1353711 1c002a64 00008067 jalr x0, x1, 0 x1:1c003ff0 +75406920ns 1353713 1c003ff0 fff00793 addi x15, x0, -1 x15=ffffffff +75406940ns 1353714 1c003ff2 00f51663 bne x10, x15, 12 x10:1c00ad1c x15:ffffffff +75406999ns 1353717 1c003ffe 00c12083 lw x1, 12(x2) x1=1c003a12 x2:1c0198f0 PA:1c0198fc +75407019ns 1353718 1c004000 00812403 lw x8, 8(x2) x8=1c009198 x2:1c0198f0 PA:1c0198f8 +75407039ns 1353719 1c004002 00412483 lw x9, 4(x2) x9=00000098 x2:1c0198f0 PA:1c0198f4 +75407058ns 1353720 1c004004 01010113 addi x2, x2, 16 x2=1c019900 x2:1c0198f0 +75407078ns 1353721 1c004006 00008067 jalr x0, x1, 0 x1:1c003a12 +75407118ns 1353723 1c003a12 fff00993 addi x19, x0, -1 x19=ffffffff +75407138ns 1353724 1c003a14 07351a63 bne x10, x19, 116 x10:1c00ad1c x19:ffffffff +75407197ns 1353727 1c003a88 00350413 addi x8, x10, 3 x8=1c00ad1f x10:1c00ad1c +75407217ns 1353728 1c003a8c ffc47413 andi x8, x8, -4 x8=1c00ad1c x8:1c00ad1f +75407237ns 1353729 1c003a8e fc8502e3 beq x10, x8, -60 x10:1c00ad1c x8:1c00ad1c +75407296ns 1353732 1c003a52 00942023 sw x9, 0(x8) x9:00000098 x8:1c00ad1c PA:1c00ad1c +75407316ns 1353733 1c003a54 00a0006f jal x0, 10 +75407355ns 1353735 1c003a5e 01200533 add x10, x0, x18 x10=1c008bdc x18:1c008bdc +75407375ns 1353736 1c003a60 80aff0ef jal x1, -4086 x1=1c003a64 +75407434ns 1353739 1c002a6a 8e3ff06f jal x0, -1822 +75407474ns 1353741 1c00234c fc010113 addi x2, x2, -64 x2=1c0198c0 x2:1c019900 +75407494ns 1353742 1c00234e 02812c23 sw x8, 56(x2) x8:1c00ad1c x2:1c0198c0 PA:1c0198f8 +75407514ns 1353743 1c002350 d6818413 addi x8, x3, -664 x8=1c009144 x3:1c0093dc +75407533ns 1353744 1c002354 00042783 lw x15, 0(x8) x15=00000002 x8:1c009144 PA:1c009144 +75407553ns 1353745 1c002356 02112e23 sw x1, 60(x2) x1:1c003a64 x2:1c0198c0 PA:1c0198fc +75407573ns 1353746 1c002358 02912a23 sw x9, 52(x2) x9:00000098 x2:1c0198c0 PA:1c0198f4 +75407593ns 1353747 1c00235a 03212823 sw x18, 48(x2) x18:1c008bdc x2:1c0198c0 PA:1c0198f0 +75407613ns 1353748 1c00235c 03312623 sw x19, 44(x2) x19:ffffffff x2:1c0198c0 PA:1c0198ec +75407632ns 1353749 1c00235e 03412423 sw x20, 40(x2) x20:xxxxxxxx x2:1c0198c0 PA:1c0198e8 +75407652ns 1353750 1c002360 03512223 sw x21, 36(x2) x21:xxxxxxxx x2:1c0198c0 PA:1c0198e4 +75407672ns 1353751 1c002362 03612023 sw x22, 32(x2) x22:xxxxxxxx x2:1c0198c0 PA:1c0198e0 +75407692ns 1353752 1c002364 01712e23 sw x23, 28(x2) x23:xxxxxxxx x2:1c0198c0 PA:1c0198dc +75407712ns 1353753 1c002366 02079263 bne x15, x0, 36 x15:00000002 +75407791ns 1353757 1c00238a c83ff0ef jal x1, -894 x1=1c00238e +75407830ns 1353759 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +75407909ns 1353763 1c002010 d841a783 lw x15, -636(x3) x15=00000000 x3:1c0093dc PA:1c009160 +75407949ns 1353765 1c002014 00078863 beq x15, x0, 16 x15:00000000 +75408008ns 1353768 1c002024 00008067 jalr x0, x1, 0 x1:1c00238e +75408048ns 1353770 1c00238e 00042783 lw x15, 0(x8) x15=00000002 x8:1c009144 PA:1c009144 +75408088ns 1353772 1c002390 fff78793 addi x15, x15, -1 x15=00000001 x15:00000002 +75408107ns 1353773 1c002392 00f42023 sw x15, 0(x8) x15:00000001 x8:1c009144 PA:1c009144 +75408127ns 1353774 1c002394 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +75408167ns 1353776 1c002396 02078163 beq x15, x0, 34 x15:00000001 +75408187ns 1353777 1c002398 00000513 addi x10, x0, 0 x10=00000000 +75408206ns 1353778 1c00239a 00a12623 sw x10, 12(x2) x10:00000000 x2:1c0198c0 PA:1c0198cc +75408226ns 1353779 1c00239c c8bff0ef jal x1, -886 x1=1c0023a0 +75408285ns 1353782 1c002026 d841a783 lw x15, -636(x3) x15=00000000 x3:1c0093dc PA:1c009160 +75408325ns 1353784 1c00202a 00078f63 beq x15, x0, 30 x15:00000000 +75408384ns 1353787 1c002048 00008067 jalr x0, x1, 0 x1:1c0023a0 +75408424ns 1353789 1c0023a0 03c12083 lw x1, 60(x2) x1=1c003a64 x2:1c0198c0 PA:1c0198fc +75408444ns 1353790 1c0023a2 03812403 lw x8, 56(x2) x8=1c00ad1c x2:1c0198c0 PA:1c0198f8 +75408464ns 1353791 1c0023a4 00c12503 lw x10, 12(x2) x10=00000000 x2:1c0198c0 PA:1c0198cc +75408483ns 1353792 1c0023a6 03412483 lw x9, 52(x2) x9=00000098 x2:1c0198c0 PA:1c0198f4 +75408503ns 1353793 1c0023a8 03012903 lw x18, 48(x2) x18=1c008bdc x2:1c0198c0 PA:1c0198f0 +75408523ns 1353794 1c0023aa 02c12983 lw x19, 44(x2) x19=ffffffff x2:1c0198c0 PA:1c0198ec +75408543ns 1353795 1c0023ac 02812a03 lw x20, 40(x2) x20=xxxxxxxx x2:1c0198c0 PA:1c0198e8 +75408563ns 1353796 1c0023ae 02412a83 lw x21, 36(x2) x21=xxxxxxxx x2:1c0198c0 PA:1c0198e4 +75408582ns 1353797 1c0023b0 02012b03 lw x22, 32(x2) x22=xxxxxxxx x2:1c0198c0 PA:1c0198e0 +75408602ns 1353798 1c0023b2 01c12b83 lw x23, 28(x2) x23=xxxxxxxx x2:1c0198c0 PA:1c0198dc +75408622ns 1353799 1c0023b4 04010113 addi x2, x2, 64 x2=1c019900 x2:1c0198c0 +75408642ns 1353800 1c0023b6 00008067 jalr x0, x1, 0 x1:1c003a64 +75408681ns 1353802 1c003a64 00b40513 addi x10, x8, 11 x10=1c00ad27 x8:1c00ad1c +75408701ns 1353803 1c003a68 00440793 addi x15, x8, 4 x15=1c00ad20 x8:1c00ad1c +75408721ns 1353804 1c003a6c ff857513 andi x10, x10, -8 x10=1c00ad20 x10:1c00ad27 +75408741ns 1353805 1c003a6e 40f50733 sub x14, x10, x15 x14=00000000 x10:1c00ad20 x15:1c00ad20 +75408761ns 1353806 1c003a72 fcf500e3 beq x10, x15, -64 x10:1c00ad20 x15:1c00ad20 +75408820ns 1353809 1c003a32 01c12083 lw x1, 28(x2) x1=1c00297c x2:1c019900 PA:1c01991c +75408840ns 1353810 1c003a34 01812403 lw x8, 24(x2) x8=1c009178 x2:1c019900 PA:1c019918 +75408859ns 1353811 1c003a36 01412483 lw x9, 20(x2) x9=00000010 x2:1c019900 PA:1c019914 +75408879ns 1353812 1c003a38 01012903 lw x18, 16(x2) x18=00000004 x2:1c019900 PA:1c019910 +75408899ns 1353813 1c003a3a 00c12983 lw x19, 12(x2) x19=00000000 x2:1c019900 PA:1c01990c +75408919ns 1353814 1c003a3c 02010113 addi x2, x2, 32 x2=1c019920 x2:1c019900 +75408939ns 1353815 1c003a3e 00008067 jalr x0, x1, 0 x1:1c00297c +75408978ns 1353817 1c00297c 00a00433 add x8, x0, x10 x8=1c00ad20 x10:1c00ad20 +75408998ns 1353818 1c00297e 9cfff0ef jal x1, -1586 x1=1c002982 +75409038ns 1353820 1c00234c fc010113 addi x2, x2, -64 x2=1c0198e0 x2:1c019920 +75409057ns 1353821 1c00234e 02812c23 sw x8, 56(x2) x8:1c00ad20 x2:1c0198e0 PA:1c019918 +75409077ns 1353822 1c002350 d6818413 addi x8, x3, -664 x8=1c009144 x3:1c0093dc +75409097ns 1353823 1c002354 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +75409117ns 1353824 1c002356 02112e23 sw x1, 60(x2) x1:1c002982 x2:1c0198e0 PA:1c01991c +75409137ns 1353825 1c002358 02912a23 sw x9, 52(x2) x9:00000010 x2:1c0198e0 PA:1c019914 +75409156ns 1353826 1c00235a 03212823 sw x18, 48(x2) x18:00000004 x2:1c0198e0 PA:1c019910 +75409176ns 1353827 1c00235c 03312623 sw x19, 44(x2) x19:00000000 x2:1c0198e0 PA:1c01990c +75409196ns 1353828 1c00235e 03412423 sw x20, 40(x2) x20:xxxxxxxx x2:1c0198e0 PA:1c019908 +75409216ns 1353829 1c002360 03512223 sw x21, 36(x2) x21:xxxxxxxx x2:1c0198e0 PA:1c019904 +75409236ns 1353830 1c002362 03612023 sw x22, 32(x2) x22:xxxxxxxx x2:1c0198e0 PA:1c019900 +75409255ns 1353831 1c002364 01712e23 sw x23, 28(x2) x23:xxxxxxxx x2:1c0198e0 PA:1c0198fc +75409275ns 1353832 1c002366 02079263 bne x15, x0, 36 x15:00000001 +75409354ns 1353836 1c00238a c83ff0ef jal x1, -894 x1=1c00238e +75409394ns 1353838 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +75409473ns 1353842 1c002010 d841a783 lw x15, -636(x3) x15=00000000 x3:1c0093dc PA:1c009160 +75409513ns 1353844 1c002014 00078863 beq x15, x0, 16 x15:00000000 +75409572ns 1353847 1c002024 00008067 jalr x0, x1, 0 x1:1c00238e +75409612ns 1353849 1c00238e 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +75409651ns 1353851 1c002390 fff78793 addi x15, x15, -1 x15=00000000 x15:00000001 +75409671ns 1353852 1c002392 00f42023 sw x15, 0(x8) x15:00000000 x8:1c009144 PA:1c009144 +75409691ns 1353853 1c002394 00042783 lw x15, 0(x8) x15=00000000 x8:1c009144 PA:1c009144 +75409730ns 1353855 1c002396 02078163 beq x15, x0, 34 x15:00000000 +75409790ns 1353858 1c0023b8 d601a783 lw x15, -672(x3) x15=00000002 x3:1c0093dc PA:1c00913c +75409829ns 1353860 1c0023bc fc078ee3 beq x15, x0, -36 x15:00000002 +75409849ns 1353861 1c0023be 1c009937 lui x18, 0x1c009000 x18=1c009000 +75409869ns 1353862 1c0023c2 00000413 addi x8, x0, 0 x8=00000000 +75409889ns 1353863 1c0023c4 93818493 addi x9, x3, -1736 x9=1c008d14 x3:1c0093dc +75409908ns 1353864 1c0023c8 00100993 addi x19, x0, 1 x19=00000001 +75409928ns 1353865 1c0023ca c8890913 addi x18, x18, -888 x18=1c008c88 x18:1c009000 +75409948ns 1353866 1c0023ce 01400a93 addi x21, x0, 20 x21=00000014 +75409968ns 1353867 1c0023d0 04c0006f jal x0, 76 +75410007ns 1353869 1c00241c 0004a783 lw x15, 0(x9) x15=00000000 x9:1c008d14 PA:1c008d14 +75410047ns 1353871 1c00241e fa079ae3 bne x15, x0, -76 x15:00000000 +75410067ns 1353872 1c002420 00040363 beq x8, x0, 6 x8:00000000 +75410146ns 1353876 1c002426 d8018713 addi x14, x3, -640 x14=1c00915c x3:1c0093dc +75410166ns 1353877 1c00242a 00072483 lw x9, 0(x14) x9=00000000 x14:1c00915c PA:1c00915c +75410186ns 1353878 1c00242c d8018413 addi x8, x3, -640 x8=1c00915c x3:1c0093dc +75410205ns 1353879 1c002430 00048d63 beq x9, x0, 26 x9:00000000 +75410284ns 1353883 1c00244a d8c1a783 lw x15, -628(x3) x15=00000000 x3:1c0093dc PA:1c009168 +75410324ns 1353885 1c00244e f40785e3 beq x15, x0, -182 x15:00000000 +75410383ns 1353888 1c002398 00000513 addi x10, x0, 0 x10=00000000 +75410403ns 1353889 1c00239a 00a12623 sw x10, 12(x2) x10:00000000 x2:1c0198e0 PA:1c0198ec +75410423ns 1353890 1c00239c c8bff0ef jal x1, -886 x1=1c0023a0 +75410482ns 1353893 1c002026 d841a783 lw x15, -636(x3) x15=00000000 x3:1c0093dc PA:1c009160 +75410522ns 1353895 1c00202a 00078f63 beq x15, x0, 30 x15:00000000 +75410581ns 1353898 1c002048 00008067 jalr x0, x1, 0 x1:1c0023a0 +75410621ns 1353900 1c0023a0 03c12083 lw x1, 60(x2) x1=1c002982 x2:1c0198e0 PA:1c01991c +75410641ns 1353901 1c0023a2 03812403 lw x8, 56(x2) x8=1c00ad20 x2:1c0198e0 PA:1c019918 +75410661ns 1353902 1c0023a4 00c12503 lw x10, 12(x2) x10=00000000 x2:1c0198e0 PA:1c0198ec +75410680ns 1353903 1c0023a6 03412483 lw x9, 52(x2) x9=00000010 x2:1c0198e0 PA:1c019914 +75410700ns 1353904 1c0023a8 03012903 lw x18, 48(x2) x18=00000004 x2:1c0198e0 PA:1c019910 +75410720ns 1353905 1c0023aa 02c12983 lw x19, 44(x2) x19=00000000 x2:1c0198e0 PA:1c01990c +75410740ns 1353906 1c0023ac 02812a03 lw x20, 40(x2) x20=xxxxxxxx x2:1c0198e0 PA:1c019908 +75410759ns 1353907 1c0023ae 02412a83 lw x21, 36(x2) x21=xxxxxxxx x2:1c0198e0 PA:1c019904 +75410779ns 1353908 1c0023b0 02012b03 lw x22, 32(x2) x22=xxxxxxxx x2:1c0198e0 PA:1c019900 +75410799ns 1353909 1c0023b2 01c12b83 lw x23, 28(x2) x23=xxxxxxxx x2:1c0198e0 PA:1c0198fc +75410819ns 1353910 1c0023b4 04010113 addi x2, x2, 64 x2=1c019920 x2:1c0198e0 +75410839ns 1353911 1c0023b6 00008067 jalr x0, x1, 0 x1:1c002982 +75410878ns 1353913 1c002982 00041363 bne x8, x0, 6 x8:1c00ad20 +75410938ns 1353916 1c002988 01c12083 lw x1, 28(x2) x1=1c001154 x2:1c019920 PA:1c01993c +75410957ns 1353917 1c00298a 00800533 add x10, x0, x8 x10=1c00ad20 x8:1c00ad20 +75410977ns 1353918 1c00298c 01812403 lw x8, 24(x2) x8=1c009178 x2:1c019920 PA:1c019938 +75410997ns 1353919 1c00298e 02010113 addi x2, x2, 32 x2=1c019940 x2:1c019920 +75411017ns 1353920 1c002990 00008067 jalr x0, x1, 0 x1:1c001154 +75411056ns 1353922 1c001154 00a00433 add x8, x0, x10 x8=1c00ad20 x10:1c00ad20 +75411076ns 1353923 1c001156 00050e63 beq x10, x0, 28 x10:1c00ad20 +75411096ns 1353924 1c001158 00a007b3 add x15, x0, x10 x15=1c00ad20 x10:1c00ad20 +75411116ns 1353925 1c00115a 00048363 beq x9, x0, 6 x9:00000010 +75411136ns 1353926 1c00115c 05050793 addi x15, x10, 80 x15=1c00ad70 x10:1c00ad20 +75411155ns 1353927 1c001160 00f42023 sw x15, 0(x8) x15:1c00ad70 x8:1c00ad20 PA:1c00ad20 +75411175ns 1353928 1c001162 03242e23 sw x18, 60(x8) x18:00000004 x8:1c00ad20 PA:1c00ad5c +75411195ns 1353929 1c001166 04942023 sw x9, 64(x8) x9:00000010 x8:1c00ad20 PA:1c00ad60 +75411215ns 1353930 1c001168 00100593 addi x11, x0, 1 x11=00000001 +75411235ns 1353931 1c00116a 00800533 add x10, x0, x8 x10=1c00ad20 x8:1c00ad20 +75411254ns 1353932 1c00116c f1fff0ef jal x1, -226 x1=1c00116e +75411294ns 1353934 1c00108a ff010113 addi x2, x2, -16 x2=1c019930 x2:1c019940 +75411314ns 1353935 1c00108c 00112623 sw x1, 12(x2) x1:1c00116e x2:1c019930 PA:1c01993c +75411333ns 1353936 1c00108e 00812423 sw x8, 8(x2) x8:1c00ad20 x2:1c019930 PA:1c019938 +75411353ns 1353937 1c001090 00912223 sw x9, 4(x2) x9:00000010 x2:1c019930 PA:1c019934 +75411373ns 1353938 1c001092 02051163 bne x10, x0, 34 x10:1c00ad20 +75411432ns 1353941 1c0010b4 00a00433 add x8, x0, x10 x8=1c00ad20 x10:1c00ad20 +75411452ns 1353942 1c0010b6 00b004b3 add x9, x0, x11 x9=00000001 x11:00000001 +75411472ns 1353943 1c0010b8 755000ef jal x1, 3924 x1=1c0010bc +75411512ns 1353945 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +75411591ns 1353949 1c002010 d841a783 lw x15, -636(x3) x15=00000000 x3:1c0093dc PA:1c009160 +75411630ns 1353951 1c002014 00078863 beq x15, x0, 16 x15:00000000 +75411690ns 1353954 1c002024 00008067 jalr x0, x1, 0 x1:1c0010bc +75411729ns 1353956 1c0010bc 04042683 lw x13, 64(x8) x13=00000010 x8:1c00ad20 PA:1c00ad60 +75411749ns 1353957 1c0010be 03c42783 lw x15, 60(x8) x15=00000004 x8:1c00ad20 PA:1c00ad5c +75411769ns 1353958 1c0010c0 00042703 lw x14, 0(x8) x14=1c00ad70 x8:1c00ad20 PA:1c00ad20 +75411789ns 1353959 1c0010c2 02042c23 sw x0, 56(x8) x8:1c00ad20 PA:1c00ad58 +75411808ns 1353960 1c0010c6 02f687b3 mul x15, x13, x15 x15=00000040 x13:00000010 x15:00000004 +75411828ns 1353961 1c0010ca 00e42223 sw x14, 4(x8) x14:1c00ad70 x8:1c00ad20 PA:1c00ad24 +75411848ns 1353962 1c0010cc 00f70633 add x12, x14, x15 x12=1c00adb0 x14:1c00ad70 x15:00000040 +75411868ns 1353963 1c0010d0 40d787b3 sub x15, x15, x13 x15=00000030 x15:00000040 x13:00000010 +75411888ns 1353964 1c0010d2 00e787b3 add x15, x15, x14 x15=1c00ada0 x15:00000030 x14:1c00ad70 +75411907ns 1353965 1c0010d4 00f42623 sw x15, 12(x8) x15:1c00ada0 x8:1c00ad20 PA:1c00ad2c +75411927ns 1353966 1c0010d6 fff00793 addi x15, x0, -1 x15=ffffffff +75411947ns 1353967 1c0010d8 04f40223 sb x15, 68(x8) x15:ffffffff x8:1c00ad20 PA:1c00ad64 +75411967ns 1353968 1c0010dc 00c42423 sw x12, 8(x8) x12:1c00adb0 x8:1c00ad20 PA:1c00ad28 +75411987ns 1353969 1c0010de 04f402a3 sb x15, 69(x8) x15:ffffffff x8:1c00ad20 PA:1c00ad65 +75412006ns 1353970 1c0010e2 02049263 bne x9, x0, 36 x9:00000001 +75412086ns 1353974 1c001106 01040513 addi x10, x8, 16 x10=1c00ad30 x8:1c00ad20 +75412105ns 1353975 1c00110a dbdff0ef jal x1, -580 x1=1c00110c +75412165ns 1353978 1c000ec6 00850793 addi x15, x10, 8 x15=1c00ad38 x10:1c00ad30 +75412185ns 1353979 1c000eca fff00713 addi x14, x0, -1 x14=ffffffff +75412204ns 1353980 1c000ecc 00f52223 sw x15, 4(x10) x15:1c00ad38 x10:1c00ad30 PA:1c00ad34 +75412224ns 1353981 1c000ece 00e52423 sw x14, 8(x10) x14:ffffffff x10:1c00ad30 PA:1c00ad38 +75412244ns 1353982 1c000ed0 00f52623 sw x15, 12(x10) x15:1c00ad38 x10:1c00ad30 PA:1c00ad3c +75412264ns 1353983 1c000ed2 00f52823 sw x15, 16(x10) x15:1c00ad38 x10:1c00ad30 PA:1c00ad40 +75412283ns 1353984 1c000ed4 00052023 sw x0, 0(x10) x10:1c00ad30 PA:1c00ad30 +75412303ns 1353985 1c000ed8 00008067 jalr x0, x1, 0 x1:1c00110c +75412343ns 1353987 1c00110c 02440513 addi x10, x8, 36 x10=1c00ad44 x8:1c00ad20 +75412363ns 1353988 1c001110 db7ff0ef jal x1, -586 x1=1c001112 +75412422ns 1353991 1c000ec6 00850793 addi x15, x10, 8 x15=1c00ad4c x10:1c00ad44 +75412442ns 1353992 1c000eca fff00713 addi x14, x0, -1 x14=ffffffff +75412462ns 1353993 1c000ecc 00f52223 sw x15, 4(x10) x15:1c00ad4c x10:1c00ad44 PA:1c00ad48 +75412481ns 1353994 1c000ece 00e52423 sw x14, 8(x10) x14:ffffffff x10:1c00ad44 PA:1c00ad4c +75412501ns 1353995 1c000ed0 00f52623 sw x15, 12(x10) x15:1c00ad4c x10:1c00ad44 PA:1c00ad50 +75412521ns 1353996 1c000ed2 00f52823 sw x15, 16(x10) x15:1c00ad4c x10:1c00ad44 PA:1c00ad54 +75412541ns 1353997 1c000ed4 00052023 sw x0, 0(x10) x10:1c00ad44 PA:1c00ad44 +75412561ns 1353998 1c000ed8 00008067 jalr x0, x1, 0 x1:1c001112 +75412600ns 1354000 1c001112 fe5ff06f jal x0, -28 +75412660ns 1354003 1c0010f6 731000ef jal x1, 3888 x1=1c0010fa +75412719ns 1354006 1c002026 d841a783 lw x15, -636(x3) x15=00000000 x3:1c0093dc PA:1c009160 +75412758ns 1354008 1c00202a 00078f63 beq x15, x0, 30 x15:00000000 +75412818ns 1354011 1c002048 00008067 jalr x0, x1, 0 x1:1c0010fa +75412857ns 1354013 1c0010fa 00c12083 lw x1, 12(x2) x1=1c00116e x2:1c019930 PA:1c01993c +75412877ns 1354014 1c0010fc 00812403 lw x8, 8(x2) x8=1c00ad20 x2:1c019930 PA:1c019938 +75412897ns 1354015 1c0010fe 00412483 lw x9, 4(x2) x9=00000010 x2:1c019930 PA:1c019934 +75412917ns 1354016 1c001100 00100513 addi x10, x0, 1 x10=00000001 +75412937ns 1354017 1c001102 01010113 addi x2, x2, 16 x2=1c019940 x2:1c019930 +75412956ns 1354018 1c001104 00008067 jalr x0, x1, 0 x1:1c00116e +75413016ns 1354021 1c00116e 05340623 sb x19, 76(x8) x19:00000000 x8:1c00ad20 PA:1c00ad6c +75413036ns 1354022 1c001172 01c12083 lw x1, 28(x2) x1=1c002562 x2:1c019940 PA:1c01995c +75413055ns 1354023 1c001174 00800533 add x10, x0, x8 x10=1c00ad20 x8:1c00ad20 +75413075ns 1354024 1c001176 01812403 lw x8, 24(x2) x8=1c009178 x2:1c019940 PA:1c019958 +75413095ns 1354025 1c001178 01412483 lw x9, 20(x2) x9=1c008d64 x2:1c019940 PA:1c019954 +75413115ns 1354026 1c00117a 01012903 lw x18, 16(x2) x18=1c008d50 x2:1c019940 PA:1c019950 +75413135ns 1354027 1c00117c 00c12983 lw x19, 12(x2) x19=xxxxxxxx x2:1c019940 PA:1c01994c +75413154ns 1354028 1c00117e 02010113 addi x2, x2, 32 x2=1c019960 x2:1c019940 +75413174ns 1354029 1c001180 00008067 jalr x0, x1, 0 x1:1c002562 +75413214ns 1354031 1c002562 00a42023 sw x10, 0(x8) x10:1c00ad20 x8:1c009178 PA:1c009178 +75413233ns 1354032 1c002564 00050763 beq x10, x0, 14 x10:1c00ad20 +75413253ns 1354033 1c002566 1c0085b7 lui x11, 0x1c008000 x11=1c008000 +75413273ns 1354034 1c00256a 69458593 addi x11, x11, 1684 x11=1c008694 x11:1c008000 +75413293ns 1354035 1c00256e af0ff0ef jal x1, -3344 x1=1c002572 +75413352ns 1354038 1c00185e 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +75413372ns 1354039 1c001862 c4878693 addi x13, x15, -952 x13=1c008c48 x15:1c009000 +75413392ns 1354040 1c001866 00000713 addi x14, x0, 0 x14=00000000 +75413412ns 1354041 1c001868 c4878793 addi x15, x15, -952 x15=1c008c48 x15:1c009000 +75413431ns 1354042 1c00186c 00800613 addi x12, x0, 8 x12=00000008 +75413451ns 1354043 1c00186e 0006a803 lw x16, 0(x13) x16=00000000 x13:1c008c48 PA:1c008c48 +75413491ns 1354045 1c001872 00081763 bne x16, x0, 14 x16:00000000 +75413511ns 1354046 1c001876 00371713 slli x14, x14, 0x3 x14=00000000 x14:00000000 +75413530ns 1354047 1c001878 00e787b3 add x15, x15, x14 x15=1c008c48 x15:1c008c48 x14:00000000 +75413550ns 1354048 1c00187a 00b7a023 sw x11, 0(x15) x11:1c008694 x15:1c008c48 PA:1c008c48 +75413570ns 1354049 1c00187c 00a7a223 sw x10, 4(x15) x10:1c00ad20 x15:1c008c48 PA:1c008c4c +75413590ns 1354050 1c00187e 00008067 jalr x0, x1, 0 x1:1c002572 +75413629ns 1354052 1c002572 00812403 lw x8, 8(x2) x8=00000001 x2:1c019960 PA:1c019968 +75413649ns 1354053 1c002574 00c12083 lw x1, 12(x2) x1=1c0025c6 x2:1c019960 PA:1c01996c +75413669ns 1354054 1c002576 00412483 lw x9, 4(x2) x9=xxxxxxxx x2:1c019960 PA:1c019964 +75413689ns 1354055 1c002578 00012903 lw x18, 0(x2) x18=xxxxxxxx x2:1c019960 PA:1c019960 +75413709ns 1354056 1c00257a 01010113 addi x2, x2, 16 x2=1c019970 x2:1c019960 +75413728ns 1354057 1c00257c aabff06f jal x0, -1366 +75413788ns 1354060 1c002026 d841a783 lw x15, -636(x3) x15=00000000 x3:1c0093dc PA:1c009160 +75413827ns 1354062 1c00202a 00078f63 beq x15, x0, 30 x15:00000000 +75413887ns 1354065 1c002048 00008067 jalr x0, x1, 0 x1:1c0025c6 +75413946ns 1354068 1c0025c6 d9c1a783 lw x15, -612(x3) x15=1c00ad20 x3:1c0093dc PA:1c009178 +75413986ns 1354070 1c0025ca 02079163 bne x15, x0, 34 x15:1c00ad20 +75414045ns 1354073 1c0025ec 1c0085b7 lui x11, 0x1c008000 x11=1c008000 +75414065ns 1354074 1c0025f0 1c002537 lui x10, 0x1c002000 x10=1c002000 +75414085ns 1354075 1c0025f4 da018793 addi x15, x3, -608 x15=1c00917c x3:1c0093dc +75414104ns 1354076 1c0025f8 00400713 addi x14, x0, 4 x14=00000004 +75414124ns 1354077 1c0025fa 00000693 addi x13, x0, 0 x13=00000000 +75414144ns 1354078 1c0025fc 19000613 addi x12, x0, 400 x12=00000190 +75414164ns 1354079 1c002600 6e858593 addi x11, x11, 1768 x11=1c0086e8 x11:1c008000 +75414184ns 1354080 1c002604 75450513 addi x10, x10, 1876 x10=1c002754 x10:1c002000 +75414203ns 1354081 1c002608 a43ff0ef jal x1, -1470 x1=1c00260c +75414243ns 1354083 1c00204a fd010113 addi x2, x2, -48 x2=1c019940 x2:1c019970 +75414263ns 1354084 1c00204c 01312e23 sw x19, 28(x2) x19:xxxxxxxx x2:1c019940 PA:1c01995c +75414282ns 1354085 1c00204e 00261993 slli x19, x12, 0x2 x19=00000640 x12:00000190 +75414302ns 1354086 1c002052 01612823 sw x22, 16(x2) x22:xxxxxxxx x2:1c019940 PA:1c019950 +75414322ns 1354087 1c002054 00a00b33 add x22, x0, x10 x22=1c002754 x10:1c002754 +75414342ns 1354088 1c002056 01300533 add x10, x0, x19 x10=00000640 x19:00000640 +75414362ns 1354089 1c002058 02912223 sw x9, 36(x2) x9:xxxxxxxx x2:1c019940 PA:1c019964 +75414381ns 1354090 1c00205a 03212023 sw x18, 32(x2) x18:xxxxxxxx x2:1c019940 PA:1c019960 +75414401ns 1354091 1c00205c 01512a23 sw x21, 20(x2) x21:xxxxxxxx x2:1c019940 PA:1c019954 +75414421ns 1354092 1c00205e 01712623 sw x23, 12(x2) x23:xxxxxxxx x2:1c019940 PA:1c01994c +75414441ns 1354093 1c002060 02112623 sw x1, 44(x2) x1:1c00260c x2:1c019940 PA:1c01996c +75414461ns 1354094 1c002062 02812423 sw x8, 40(x2) x8:00000001 x2:1c019940 PA:1c019968 +75414480ns 1354095 1c002064 01412c23 sw x20, 24(x2) x20:xxxxxxxx x2:1c019940 PA:1c019958 +75414500ns 1354096 1c002066 01812423 sw x24, 8(x2) x24:xxxxxxxx x2:1c019940 PA:1c019948 +75414520ns 1354097 1c002068 00b004b3 add x9, x0, x11 x9=1c0086e8 x11:1c0086e8 +75414540ns 1354098 1c00206a 00d00bb3 add x23, x0, x13 x23=00000000 x13:00000000 +75414560ns 1354099 1c00206c 00e00933 add x18, x0, x14 x18=00000004 x14:00000004 +75414579ns 1354100 1c00206e 00f00ab3 add x21, x0, x15 x21=1c00917c x15:1c00917c +75414599ns 1354101 1c002070 0fb000ef jal x1, 2298 x1=1c002074 +75414639ns 1354103 1c00296a fe010113 addi x2, x2, -32 x2=1c019920 x2:1c019940 +75414659ns 1354104 1c00296c 00112e23 sw x1, 28(x2) x1:1c002074 x2:1c019920 PA:1c01993c +75414678ns 1354105 1c00296e 00812c23 sw x8, 24(x2) x8:00000001 x2:1c019920 PA:1c019938 +75414698ns 1354106 1c002970 00a12623 sw x10, 12(x2) x10:00000640 x2:1c019920 PA:1c01992c +75414718ns 1354107 1c002972 8a4ff0ef jal x1, -3932 x1=1c002976 +75414777ns 1354110 1c001a16 d6818793 addi x15, x3, -664 x15=1c009144 x3:1c0093dc +75414797ns 1354111 1c001a1a 0007a703 lw x14, 0(x15) x14=00000000 x15:1c009144 PA:1c009144 +75414837ns 1354113 1c001a1c 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +75414856ns 1354114 1c001a1e 00e7a023 sw x14, 0(x15) x14:00000001 x15:1c009144 PA:1c009144 +75414876ns 1354115 1c001a20 00008067 jalr x0, x1, 0 x1:1c002976 +75414916ns 1354117 1c002976 00c12503 lw x10, 12(x2) x10=00000640 x2:1c019920 PA:1c01992c +75414936ns 1354118 1c002978 791000ef jal x1, 3984 x1=1c00297c +75414975ns 1354120 1c003908 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +75414995ns 1354121 1c00390c 00a005b3 add x11, x0, x10 x11=00000640 x10:00000640 +75415015ns 1354122 1c00390e c447a503 lw x10, -956(x15) x10=1c008bdc x15:1c009000 PA:1c008c44 +75415035ns 1354123 1c003912 0b60006f jal x0, 182 +75415074ns 1354125 1c0039c8 fe010113 addi x2, x2, -32 x2=1c019900 x2:1c019920 +75415094ns 1354126 1c0039ca 00912a23 sw x9, 20(x2) x9:1c0086e8 x2:1c019900 PA:1c019914 +75415114ns 1354127 1c0039cc 00358493 addi x9, x11, 3 x9=00000643 x11:00000640 +75415134ns 1354128 1c0039d0 ffc4f493 andi x9, x9, -4 x9=00000640 x9:00000643 +75415153ns 1354129 1c0039d2 01212823 sw x18, 16(x2) x18:00000004 x2:1c019900 PA:1c019910 +75415173ns 1354130 1c0039d4 00112e23 sw x1, 28(x2) x1:1c00297c x2:1c019900 PA:1c01991c +75415193ns 1354131 1c0039d6 00812c23 sw x8, 24(x2) x8:00000001 x2:1c019900 PA:1c019918 +75415213ns 1354132 1c0039d8 01312623 sw x19, 12(x2) x19:00000640 x2:1c019900 PA:1c01990c +75415232ns 1354133 1c0039da 00848493 addi x9, x9, 8 x9=00000648 x9:00000640 +75415252ns 1354134 1c0039dc 00c00793 addi x15, x0, 12 x15=0000000c +75415272ns 1354135 1c0039de 00a00933 add x18, x0, x10 x18=1c008bdc x10:1c008bdc +75415292ns 1354136 1c0039e0 04f4f363 bgeu x9, x15, 70 x9:00000648 x15:0000000c +75415371ns 1354140 1c003a26 fc04d0e3 bge x9, x0, -64 x9:00000648 +75415450ns 1354144 1c0039e6 04b4e263 bltu x9, x11, 68 x9:00000648 x11:00000640 +75415470ns 1354145 1c0039ea 01200533 add x10, x0, x18 x10=1c008bdc x18:1c008bdc +75415490ns 1354146 1c0039ec 87aff0ef jal x1, -3974 x1=1c0039f0 +75415549ns 1354149 1c002a66 fb1fe06f jal x0, -4176 +75415609ns 1354152 1c001a16 d6818793 addi x15, x3, -664 x15=1c009144 x3:1c0093dc +75415628ns 1354153 1c001a1a 0007a703 lw x14, 0(x15) x14=00000001 x15:1c009144 PA:1c009144 +75415668ns 1354155 1c001a1c 00170713 addi x14, x14, 1 x14=00000002 x14:00000001 +75415688ns 1354156 1c001a1e 00e7a023 sw x14, 0(x15) x14:00000002 x15:1c009144 PA:1c009144 +75415707ns 1354157 1c001a20 00008067 jalr x0, x1, 0 x1:1c0039f0 +75415747ns 1354159 1c0039f0 db81a703 lw x14, -584(x3) x14=00000000 x3:1c0093dc PA:1c009194 +75415767ns 1354160 1c0039f4 db818693 addi x13, x3, -584 x13=1c009194 x3:1c0093dc +75415787ns 1354161 1c0039f8 00e00433 add x8, x0, x14 x8=00000000 x14:00000000 +75415806ns 1354162 1c0039fa 04041363 bne x8, x0, 70 x8:00000000 +75415826ns 1354163 1c0039fc dbc18413 addi x8, x3, -580 x8=1c009198 x3:1c0093dc +75415846ns 1354164 1c003a00 00042783 lw x15, 0(x8) x15=1c0091b0 x8:1c009198 PA:1c009198 +75415886ns 1354166 1c003a02 00079563 bne x15, x0, 10 x15:1c0091b0 +75415945ns 1354169 1c003a0c 009005b3 add x11, x0, x9 x11=00000648 x9:00000648 +75415965ns 1354170 1c003a0e 01200533 add x10, x0, x18 x10=1c008bdc x18:1c008bdc +75415985ns 1354171 1c003a10 5cc000ef jal x1, 1484 x1=1c003a12 +75416024ns 1354173 1c003fdc ff010113 addi x2, x2, -16 x2=1c0198f0 x2:1c019900 +75416044ns 1354174 1c003fde 00812423 sw x8, 8(x2) x8:1c009198 x2:1c0198f0 PA:1c0198f8 +75416064ns 1354175 1c003fe0 00912223 sw x9, 4(x2) x9:00000648 x2:1c0198f0 PA:1c0198f4 +75416084ns 1354176 1c003fe2 00a00433 add x8, x0, x10 x8=1c008bdc x10:1c008bdc +75416103ns 1354177 1c003fe4 00b00533 add x10, x0, x11 x10=00000648 x11:00000648 +75416123ns 1354178 1c003fe6 00112623 sw x1, 12(x2) x1:1c003a12 x2:1c0198f0 PA:1c0198fc +75416143ns 1354179 1c003fe8 dc01a023 sw x0, -576(x3) x3:1c0093dc PA:1c00919c +75416163ns 1354180 1c003fec a53fe0ef jal x1, -5550 x1=1c003ff0 +75416222ns 1354183 1c002a3e 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +75416242ns 1354184 1c002a42 c3c78793 addi x15, x15, -964 x15=1c008c3c x15:1c009000 +75416262ns 1354185 1c002a46 00a00733 add x14, x0, x10 x14=00000648 x10:00000648 +75416281ns 1354186 1c002a48 0007a503 lw x10, 0(x15) x10=1c00adb4 x15:1c008c3c PA:1c008c3c +75416301ns 1354187 1c002a4a 1c0196b7 lui x13, 0x1c019000 x13=1c019000 +75416321ns 1354188 1c002a4e 1b068693 addi x13, x13, 432 x13=1c0191b0 x13:1c019000 +75416341ns 1354189 1c002a52 00a70733 add x14, x14, x10 x14=1c00b3fc x14:00000648 x10:1c00adb4 +75416361ns 1354190 1c002a54 00d76763 bltu x14, x13, 14 x14:1c00b3fc x13:1c0191b0 +75416420ns 1354193 1c002a62 00e7a023 sw x14, 0(x15) x14:1c00b3fc x15:1c008c3c PA:1c008c3c +75416440ns 1354194 1c002a64 00008067 jalr x0, x1, 0 x1:1c003ff0 +75416479ns 1354196 1c003ff0 fff00793 addi x15, x0, -1 x15=ffffffff +75416499ns 1354197 1c003ff2 00f51663 bne x10, x15, 12 x10:1c00adb4 x15:ffffffff +75416559ns 1354200 1c003ffe 00c12083 lw x1, 12(x2) x1=1c003a12 x2:1c0198f0 PA:1c0198fc +75416578ns 1354201 1c004000 00812403 lw x8, 8(x2) x8=1c009198 x2:1c0198f0 PA:1c0198f8 +75416598ns 1354202 1c004002 00412483 lw x9, 4(x2) x9=00000648 x2:1c0198f0 PA:1c0198f4 +75416618ns 1354203 1c004004 01010113 addi x2, x2, 16 x2=1c019900 x2:1c0198f0 +75416638ns 1354204 1c004006 00008067 jalr x0, x1, 0 x1:1c003a12 +75416677ns 1354206 1c003a12 fff00993 addi x19, x0, -1 x19=ffffffff +75416697ns 1354207 1c003a14 07351a63 bne x10, x19, 116 x10:1c00adb4 x19:ffffffff +75416756ns 1354210 1c003a88 00350413 addi x8, x10, 3 x8=1c00adb7 x10:1c00adb4 +75416776ns 1354211 1c003a8c ffc47413 andi x8, x8, -4 x8=1c00adb4 x8:1c00adb7 +75416796ns 1354212 1c003a8e fc8502e3 beq x10, x8, -60 x10:1c00adb4 x8:1c00adb4 +75416855ns 1354215 1c003a52 00942023 sw x9, 0(x8) x9:00000648 x8:1c00adb4 PA:1c00adb4 +75416875ns 1354216 1c003a54 00a0006f jal x0, 10 +75416915ns 1354218 1c003a5e 01200533 add x10, x0, x18 x10=1c008bdc x18:1c008bdc +75416935ns 1354219 1c003a60 80aff0ef jal x1, -4086 x1=1c003a64 +75416994ns 1354222 1c002a6a 8e3ff06f jal x0, -1822 +75417034ns 1354224 1c00234c fc010113 addi x2, x2, -64 x2=1c0198c0 x2:1c019900 +75417053ns 1354225 1c00234e 02812c23 sw x8, 56(x2) x8:1c00adb4 x2:1c0198c0 PA:1c0198f8 +75417073ns 1354226 1c002350 d6818413 addi x8, x3, -664 x8=1c009144 x3:1c0093dc +75417093ns 1354227 1c002354 00042783 lw x15, 0(x8) x15=00000002 x8:1c009144 PA:1c009144 +75417113ns 1354228 1c002356 02112e23 sw x1, 60(x2) x1:1c003a64 x2:1c0198c0 PA:1c0198fc +75417133ns 1354229 1c002358 02912a23 sw x9, 52(x2) x9:00000648 x2:1c0198c0 PA:1c0198f4 +75417152ns 1354230 1c00235a 03212823 sw x18, 48(x2) x18:1c008bdc x2:1c0198c0 PA:1c0198f0 +75417172ns 1354231 1c00235c 03312623 sw x19, 44(x2) x19:ffffffff x2:1c0198c0 PA:1c0198ec +75417192ns 1354232 1c00235e 03412423 sw x20, 40(x2) x20:xxxxxxxx x2:1c0198c0 PA:1c0198e8 +75417212ns 1354233 1c002360 03512223 sw x21, 36(x2) x21:1c00917c x2:1c0198c0 PA:1c0198e4 +75417231ns 1354234 1c002362 03612023 sw x22, 32(x2) x22:1c002754 x2:1c0198c0 PA:1c0198e0 +75417251ns 1354235 1c002364 01712e23 sw x23, 28(x2) x23:00000000 x2:1c0198c0 PA:1c0198dc +75417271ns 1354236 1c002366 02079263 bne x15, x0, 36 x15:00000002 +75417350ns 1354240 1c00238a c83ff0ef jal x1, -894 x1=1c00238e +75417390ns 1354242 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +75417469ns 1354246 1c002010 d841a783 lw x15, -636(x3) x15=00000000 x3:1c0093dc PA:1c009160 +75417509ns 1354248 1c002014 00078863 beq x15, x0, 16 x15:00000000 +75417568ns 1354251 1c002024 00008067 jalr x0, x1, 0 x1:1c00238e +75417608ns 1354253 1c00238e 00042783 lw x15, 0(x8) x15=00000002 x8:1c009144 PA:1c009144 +75417647ns 1354255 1c002390 fff78793 addi x15, x15, -1 x15=00000001 x15:00000002 +75417667ns 1354256 1c002392 00f42023 sw x15, 0(x8) x15:00000001 x8:1c009144 PA:1c009144 +75417687ns 1354257 1c002394 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +75417726ns 1354259 1c002396 02078163 beq x15, x0, 34 x15:00000001 +75417746ns 1354260 1c002398 00000513 addi x10, x0, 0 x10=00000000 +75417766ns 1354261 1c00239a 00a12623 sw x10, 12(x2) x10:00000000 x2:1c0198c0 PA:1c0198cc +75417786ns 1354262 1c00239c c8bff0ef jal x1, -886 x1=1c0023a0 +75417845ns 1354265 1c002026 d841a783 lw x15, -636(x3) x15=00000000 x3:1c0093dc PA:1c009160 +75417885ns 1354267 1c00202a 00078f63 beq x15, x0, 30 x15:00000000 +75417944ns 1354270 1c002048 00008067 jalr x0, x1, 0 x1:1c0023a0 +75417984ns 1354272 1c0023a0 03c12083 lw x1, 60(x2) x1=1c003a64 x2:1c0198c0 PA:1c0198fc +75418003ns 1354273 1c0023a2 03812403 lw x8, 56(x2) x8=1c00adb4 x2:1c0198c0 PA:1c0198f8 +75418023ns 1354274 1c0023a4 00c12503 lw x10, 12(x2) x10=00000000 x2:1c0198c0 PA:1c0198cc +75418043ns 1354275 1c0023a6 03412483 lw x9, 52(x2) x9=00000648 x2:1c0198c0 PA:1c0198f4 +75418063ns 1354276 1c0023a8 03012903 lw x18, 48(x2) x18=1c008bdc x2:1c0198c0 PA:1c0198f0 +75418083ns 1354277 1c0023aa 02c12983 lw x19, 44(x2) x19=ffffffff x2:1c0198c0 PA:1c0198ec +75418102ns 1354278 1c0023ac 02812a03 lw x20, 40(x2) x20=xxxxxxxx x2:1c0198c0 PA:1c0198e8 +75418122ns 1354279 1c0023ae 02412a83 lw x21, 36(x2) x21=1c00917c x2:1c0198c0 PA:1c0198e4 +75418142ns 1354280 1c0023b0 02012b03 lw x22, 32(x2) x22=1c002754 x2:1c0198c0 PA:1c0198e0 +75418162ns 1354281 1c0023b2 01c12b83 lw x23, 28(x2) x23=00000000 x2:1c0198c0 PA:1c0198dc +75418181ns 1354282 1c0023b4 04010113 addi x2, x2, 64 x2=1c019900 x2:1c0198c0 +75418201ns 1354283 1c0023b6 00008067 jalr x0, x1, 0 x1:1c003a64 +75418241ns 1354285 1c003a64 00b40513 addi x10, x8, 11 x10=1c00adbf x8:1c00adb4 +75418261ns 1354286 1c003a68 00440793 addi x15, x8, 4 x15=1c00adb8 x8:1c00adb4 +75418280ns 1354287 1c003a6c ff857513 andi x10, x10, -8 x10=1c00adb8 x10:1c00adbf +75418300ns 1354288 1c003a6e 40f50733 sub x14, x10, x15 x14=00000000 x10:1c00adb8 x15:1c00adb8 +75418320ns 1354289 1c003a72 fcf500e3 beq x10, x15, -64 x10:1c00adb8 x15:1c00adb8 +75418379ns 1354292 1c003a32 01c12083 lw x1, 28(x2) x1=1c00297c x2:1c019900 PA:1c01991c +75418399ns 1354293 1c003a34 01812403 lw x8, 24(x2) x8=00000001 x2:1c019900 PA:1c019918 +75418419ns 1354294 1c003a36 01412483 lw x9, 20(x2) x9=1c0086e8 x2:1c019900 PA:1c019914 +75418439ns 1354295 1c003a38 01012903 lw x18, 16(x2) x18=00000004 x2:1c019900 PA:1c019910 +75418459ns 1354296 1c003a3a 00c12983 lw x19, 12(x2) x19=00000640 x2:1c019900 PA:1c01990c +75418478ns 1354297 1c003a3c 02010113 addi x2, x2, 32 x2=1c019920 x2:1c019900 +75418498ns 1354298 1c003a3e 00008067 jalr x0, x1, 0 x1:1c00297c +75418538ns 1354300 1c00297c 00a00433 add x8, x0, x10 x8=1c00adb8 x10:1c00adb8 +75418558ns 1354301 1c00297e 9cfff0ef jal x1, -1586 x1=1c002982 +75418597ns 1354303 1c00234c fc010113 addi x2, x2, -64 x2=1c0198e0 x2:1c019920 +75418617ns 1354304 1c00234e 02812c23 sw x8, 56(x2) x8:1c00adb8 x2:1c0198e0 PA:1c019918 +75418637ns 1354305 1c002350 d6818413 addi x8, x3, -664 x8=1c009144 x3:1c0093dc +75418657ns 1354306 1c002354 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +75418676ns 1354307 1c002356 02112e23 sw x1, 60(x2) x1:1c002982 x2:1c0198e0 PA:1c01991c +75418696ns 1354308 1c002358 02912a23 sw x9, 52(x2) x9:1c0086e8 x2:1c0198e0 PA:1c019914 +75418716ns 1354309 1c00235a 03212823 sw x18, 48(x2) x18:00000004 x2:1c0198e0 PA:1c019910 +75418736ns 1354310 1c00235c 03312623 sw x19, 44(x2) x19:00000640 x2:1c0198e0 PA:1c01990c +75418755ns 1354311 1c00235e 03412423 sw x20, 40(x2) x20:xxxxxxxx x2:1c0198e0 PA:1c019908 +75418775ns 1354312 1c002360 03512223 sw x21, 36(x2) x21:1c00917c x2:1c0198e0 PA:1c019904 +75418795ns 1354313 1c002362 03612023 sw x22, 32(x2) x22:1c002754 x2:1c0198e0 PA:1c019900 +75418815ns 1354314 1c002364 01712e23 sw x23, 28(x2) x23:00000000 x2:1c0198e0 PA:1c0198fc +75418835ns 1354315 1c002366 02079263 bne x15, x0, 36 x15:00000001 +75418914ns 1354319 1c00238a c83ff0ef jal x1, -894 x1=1c00238e +75418953ns 1354321 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +75419033ns 1354325 1c002010 d841a783 lw x15, -636(x3) x15=00000000 x3:1c0093dc PA:1c009160 +75419072ns 1354327 1c002014 00078863 beq x15, x0, 16 x15:00000000 +75419132ns 1354330 1c002024 00008067 jalr x0, x1, 0 x1:1c00238e +75419171ns 1354332 1c00238e 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +75419211ns 1354334 1c002390 fff78793 addi x15, x15, -1 x15=00000000 x15:00000001 +75419230ns 1354335 1c002392 00f42023 sw x15, 0(x8) x15:00000000 x8:1c009144 PA:1c009144 +75419250ns 1354336 1c002394 00042783 lw x15, 0(x8) x15=00000000 x8:1c009144 PA:1c009144 +75419290ns 1354338 1c002396 02078163 beq x15, x0, 34 x15:00000000 +75419349ns 1354341 1c0023b8 d601a783 lw x15, -672(x3) x15=00000002 x3:1c0093dc PA:1c00913c +75419389ns 1354343 1c0023bc fc078ee3 beq x15, x0, -36 x15:00000002 +75419409ns 1354344 1c0023be 1c009937 lui x18, 0x1c009000 x18=1c009000 +75419428ns 1354345 1c0023c2 00000413 addi x8, x0, 0 x8=00000000 +75419448ns 1354346 1c0023c4 93818493 addi x9, x3, -1736 x9=1c008d14 x3:1c0093dc +75419468ns 1354347 1c0023c8 00100993 addi x19, x0, 1 x19=00000001 +75419488ns 1354348 1c0023ca c8890913 addi x18, x18, -888 x18=1c008c88 x18:1c009000 +75419508ns 1354349 1c0023ce 01400a93 addi x21, x0, 20 x21=00000014 +75419527ns 1354350 1c0023d0 04c0006f jal x0, 76 +75419567ns 1354352 1c00241c 0004a783 lw x15, 0(x9) x15=00000000 x9:1c008d14 PA:1c008d14 +75419607ns 1354354 1c00241e fa079ae3 bne x15, x0, -76 x15:00000000 +75419626ns 1354355 1c002420 00040363 beq x8, x0, 6 x8:00000000 +75419705ns 1354359 1c002426 d8018713 addi x14, x3, -640 x14=1c00915c x3:1c0093dc +75419725ns 1354360 1c00242a 00072483 lw x9, 0(x14) x9=00000000 x14:1c00915c PA:1c00915c +75419745ns 1354361 1c00242c d8018413 addi x8, x3, -640 x8=1c00915c x3:1c0093dc +75419765ns 1354362 1c002430 00048d63 beq x9, x0, 26 x9:00000000 +75419844ns 1354366 1c00244a d8c1a783 lw x15, -628(x3) x15=00000000 x3:1c0093dc PA:1c009168 +75419884ns 1354368 1c00244e f40785e3 beq x15, x0, -182 x15:00000000 +75419943ns 1354371 1c002398 00000513 addi x10, x0, 0 x10=00000000 +75419963ns 1354372 1c00239a 00a12623 sw x10, 12(x2) x10:00000000 x2:1c0198e0 PA:1c0198ec +75419983ns 1354373 1c00239c c8bff0ef jal x1, -886 x1=1c0023a0 +75420042ns 1354376 1c002026 d841a783 lw x15, -636(x3) x15=00000000 x3:1c0093dc PA:1c009160 +75420082ns 1354378 1c00202a 00078f63 beq x15, x0, 30 x15:00000000 +75420141ns 1354381 1c002048 00008067 jalr x0, x1, 0 x1:1c0023a0 +75420180ns 1354383 1c0023a0 03c12083 lw x1, 60(x2) x1=1c002982 x2:1c0198e0 PA:1c01991c +75420200ns 1354384 1c0023a2 03812403 lw x8, 56(x2) x8=1c00adb8 x2:1c0198e0 PA:1c019918 +75420220ns 1354385 1c0023a4 00c12503 lw x10, 12(x2) x10=00000000 x2:1c0198e0 PA:1c0198ec +75420240ns 1354386 1c0023a6 03412483 lw x9, 52(x2) x9=1c0086e8 x2:1c0198e0 PA:1c019914 +75420260ns 1354387 1c0023a8 03012903 lw x18, 48(x2) x18=00000004 x2:1c0198e0 PA:1c019910 +75420279ns 1354388 1c0023aa 02c12983 lw x19, 44(x2) x19=00000640 x2:1c0198e0 PA:1c01990c +75420299ns 1354389 1c0023ac 02812a03 lw x20, 40(x2) x20=xxxxxxxx x2:1c0198e0 PA:1c019908 +75420319ns 1354390 1c0023ae 02412a83 lw x21, 36(x2) x21=1c00917c x2:1c0198e0 PA:1c019904 +75420339ns 1354391 1c0023b0 02012b03 lw x22, 32(x2) x22=1c002754 x2:1c0198e0 PA:1c019900 +75420359ns 1354392 1c0023b2 01c12b83 lw x23, 28(x2) x23=00000000 x2:1c0198e0 PA:1c0198fc +75420378ns 1354393 1c0023b4 04010113 addi x2, x2, 64 x2=1c019920 x2:1c0198e0 +75420398ns 1354394 1c0023b6 00008067 jalr x0, x1, 0 x1:1c002982 +75420438ns 1354396 1c002982 00041363 bne x8, x0, 6 x8:1c00adb8 +75420497ns 1354399 1c002988 01c12083 lw x1, 28(x2) x1=1c002074 x2:1c019920 PA:1c01993c +75420517ns 1354400 1c00298a 00800533 add x10, x0, x8 x10=1c00adb8 x8:1c00adb8 +75420537ns 1354401 1c00298c 01812403 lw x8, 24(x2) x8=00000001 x2:1c019920 PA:1c019938 +75420557ns 1354402 1c00298e 02010113 addi x2, x2, 32 x2=1c019940 x2:1c019920 +75420576ns 1354403 1c002990 00008067 jalr x0, x1, 0 x1:1c002074 +75420616ns 1354405 1c002074 02050963 beq x10, x0, 50 x10:1c00adb8 +75420636ns 1354406 1c002076 00a00a33 add x20, x0, x10 x20=1c00adb8 x10:1c00adb8 +75420655ns 1354407 1c002078 48800513 addi x10, x0, 1160 x10=00000488 +75420675ns 1354408 1c00207c 0ef000ef jal x1, 2286 x1=1c002080 +75420715ns 1354410 1c00296a fe010113 addi x2, x2, -32 x2=1c019920 x2:1c019940 +75420735ns 1354411 1c00296c 00112e23 sw x1, 28(x2) x1:1c002080 x2:1c019920 PA:1c01993c +75420754ns 1354412 1c00296e 00812c23 sw x8, 24(x2) x8:00000001 x2:1c019920 PA:1c019938 +75420774ns 1354413 1c002970 00a12623 sw x10, 12(x2) x10:00000488 x2:1c019920 PA:1c01992c +75420794ns 1354414 1c002972 8a4ff0ef jal x1, -3932 x1=1c002976 +75420853ns 1354417 1c001a16 d6818793 addi x15, x3, -664 x15=1c009144 x3:1c0093dc +75420873ns 1354418 1c001a1a 0007a703 lw x14, 0(x15) x14=00000000 x15:1c009144 PA:1c009144 +75420913ns 1354420 1c001a1c 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +75420933ns 1354421 1c001a1e 00e7a023 sw x14, 0(x15) x14:00000001 x15:1c009144 PA:1c009144 +75420952ns 1354422 1c001a20 00008067 jalr x0, x1, 0 x1:1c002976 +75420992ns 1354424 1c002976 00c12503 lw x10, 12(x2) x10=00000488 x2:1c019920 PA:1c01992c +75421012ns 1354425 1c002978 791000ef jal x1, 3984 x1=1c00297c +75421051ns 1354427 1c003908 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +75421071ns 1354428 1c00390c 00a005b3 add x11, x0, x10 x11=00000488 x10:00000488 +75421091ns 1354429 1c00390e c447a503 lw x10, -956(x15) x10=1c008bdc x15:1c009000 PA:1c008c44 +75421111ns 1354430 1c003912 0b60006f jal x0, 182 +75421150ns 1354432 1c0039c8 fe010113 addi x2, x2, -32 x2=1c019900 x2:1c019920 +75421170ns 1354433 1c0039ca 00912a23 sw x9, 20(x2) x9:1c0086e8 x2:1c019900 PA:1c019914 +75421190ns 1354434 1c0039cc 00358493 addi x9, x11, 3 x9=0000048b x11:00000488 +75421210ns 1354435 1c0039d0 ffc4f493 andi x9, x9, -4 x9=00000488 x9:0000048b +75421229ns 1354436 1c0039d2 01212823 sw x18, 16(x2) x18:00000004 x2:1c019900 PA:1c019910 +75421249ns 1354437 1c0039d4 00112e23 sw x1, 28(x2) x1:1c00297c x2:1c019900 PA:1c01991c +75421269ns 1354438 1c0039d6 00812c23 sw x8, 24(x2) x8:00000001 x2:1c019900 PA:1c019918 +75421289ns 1354439 1c0039d8 01312623 sw x19, 12(x2) x19:00000640 x2:1c019900 PA:1c01990c +75421309ns 1354440 1c0039da 00848493 addi x9, x9, 8 x9=00000490 x9:00000488 +75421328ns 1354441 1c0039dc 00c00793 addi x15, x0, 12 x15=0000000c +75421348ns 1354442 1c0039de 00a00933 add x18, x0, x10 x18=1c008bdc x10:1c008bdc +75421368ns 1354443 1c0039e0 04f4f363 bgeu x9, x15, 70 x9:00000490 x15:0000000c +75421447ns 1354447 1c003a26 fc04d0e3 bge x9, x0, -64 x9:00000490 +75421526ns 1354451 1c0039e6 04b4e263 bltu x9, x11, 68 x9:00000490 x11:00000488 +75421546ns 1354452 1c0039ea 01200533 add x10, x0, x18 x10=1c008bdc x18:1c008bdc +75421566ns 1354453 1c0039ec 87aff0ef jal x1, -3974 x1=1c0039f0 +75421625ns 1354456 1c002a66 fb1fe06f jal x0, -4176 +75421685ns 1354459 1c001a16 d6818793 addi x15, x3, -664 x15=1c009144 x3:1c0093dc +75421704ns 1354460 1c001a1a 0007a703 lw x14, 0(x15) x14=00000001 x15:1c009144 PA:1c009144 +75421744ns 1354462 1c001a1c 00170713 addi x14, x14, 1 x14=00000002 x14:00000001 +75421764ns 1354463 1c001a1e 00e7a023 sw x14, 0(x15) x14:00000002 x15:1c009144 PA:1c009144 +75421784ns 1354464 1c001a20 00008067 jalr x0, x1, 0 x1:1c0039f0 +75421823ns 1354466 1c0039f0 db81a703 lw x14, -584(x3) x14=00000000 x3:1c0093dc PA:1c009194 +75421843ns 1354467 1c0039f4 db818693 addi x13, x3, -584 x13=1c009194 x3:1c0093dc +75421863ns 1354468 1c0039f8 00e00433 add x8, x0, x14 x8=00000000 x14:00000000 +75421883ns 1354469 1c0039fa 04041363 bne x8, x0, 70 x8:00000000 +75421902ns 1354470 1c0039fc dbc18413 addi x8, x3, -580 x8=1c009198 x3:1c0093dc +75421922ns 1354471 1c003a00 00042783 lw x15, 0(x8) x15=1c0091b0 x8:1c009198 PA:1c009198 +75421962ns 1354473 1c003a02 00079563 bne x15, x0, 10 x15:1c0091b0 +75422021ns 1354476 1c003a0c 009005b3 add x11, x0, x9 x11=00000490 x9:00000490 +75422041ns 1354477 1c003a0e 01200533 add x10, x0, x18 x10=1c008bdc x18:1c008bdc +75422061ns 1354478 1c003a10 5cc000ef jal x1, 1484 x1=1c003a12 +75422100ns 1354480 1c003fdc ff010113 addi x2, x2, -16 x2=1c0198f0 x2:1c019900 +75422120ns 1354481 1c003fde 00812423 sw x8, 8(x2) x8:1c009198 x2:1c0198f0 PA:1c0198f8 +75422140ns 1354482 1c003fe0 00912223 sw x9, 4(x2) x9:00000490 x2:1c0198f0 PA:1c0198f4 +75422160ns 1354483 1c003fe2 00a00433 add x8, x0, x10 x8=1c008bdc x10:1c008bdc +75422179ns 1354484 1c003fe4 00b00533 add x10, x0, x11 x10=00000490 x11:00000490 +75422199ns 1354485 1c003fe6 00112623 sw x1, 12(x2) x1:1c003a12 x2:1c0198f0 PA:1c0198fc +75422219ns 1354486 1c003fe8 dc01a023 sw x0, -576(x3) x3:1c0093dc PA:1c00919c +75422239ns 1354487 1c003fec a53fe0ef jal x1, -5550 x1=1c003ff0 +75422298ns 1354490 1c002a3e 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +75422318ns 1354491 1c002a42 c3c78793 addi x15, x15, -964 x15=1c008c3c x15:1c009000 +75422338ns 1354492 1c002a46 00a00733 add x14, x0, x10 x14=00000490 x10:00000490 +75422358ns 1354493 1c002a48 0007a503 lw x10, 0(x15) x10=1c00b3fc x15:1c008c3c PA:1c008c3c +75422377ns 1354494 1c002a4a 1c0196b7 lui x13, 0x1c019000 x13=1c019000 +75422397ns 1354495 1c002a4e 1b068693 addi x13, x13, 432 x13=1c0191b0 x13:1c019000 +75422417ns 1354496 1c002a52 00a70733 add x14, x14, x10 x14=1c00b88c x14:00000490 x10:1c00b3fc +75422437ns 1354497 1c002a54 00d76763 bltu x14, x13, 14 x14:1c00b88c x13:1c0191b0 +75422496ns 1354500 1c002a62 00e7a023 sw x14, 0(x15) x14:1c00b88c x15:1c008c3c PA:1c008c3c +75422516ns 1354501 1c002a64 00008067 jalr x0, x1, 0 x1:1c003ff0 +75422556ns 1354503 1c003ff0 fff00793 addi x15, x0, -1 x15=ffffffff +75422575ns 1354504 1c003ff2 00f51663 bne x10, x15, 12 x10:1c00b3fc x15:ffffffff +75422635ns 1354507 1c003ffe 00c12083 lw x1, 12(x2) x1=1c003a12 x2:1c0198f0 PA:1c0198fc +75422654ns 1354508 1c004000 00812403 lw x8, 8(x2) x8=1c009198 x2:1c0198f0 PA:1c0198f8 +75422674ns 1354509 1c004002 00412483 lw x9, 4(x2) x9=00000490 x2:1c0198f0 PA:1c0198f4 +75422694ns 1354510 1c004004 01010113 addi x2, x2, 16 x2=1c019900 x2:1c0198f0 +75422714ns 1354511 1c004006 00008067 jalr x0, x1, 0 x1:1c003a12 +75422753ns 1354513 1c003a12 fff00993 addi x19, x0, -1 x19=ffffffff +75422773ns 1354514 1c003a14 07351a63 bne x10, x19, 116 x10:1c00b3fc x19:ffffffff +75422833ns 1354517 1c003a88 00350413 addi x8, x10, 3 x8=1c00b3ff x10:1c00b3fc +75422852ns 1354518 1c003a8c ffc47413 andi x8, x8, -4 x8=1c00b3fc x8:1c00b3ff +75422872ns 1354519 1c003a8e fc8502e3 beq x10, x8, -60 x10:1c00b3fc x8:1c00b3fc +75422932ns 1354522 1c003a52 00942023 sw x9, 0(x8) x9:00000490 x8:1c00b3fc PA:1c00b3fc +75422951ns 1354523 1c003a54 00a0006f jal x0, 10 +75422991ns 1354525 1c003a5e 01200533 add x10, x0, x18 x10=1c008bdc x18:1c008bdc +75423011ns 1354526 1c003a60 80aff0ef jal x1, -4086 x1=1c003a64 +75423070ns 1354529 1c002a6a 8e3ff06f jal x0, -1822 +75423110ns 1354531 1c00234c fc010113 addi x2, x2, -64 x2=1c0198c0 x2:1c019900 +75423129ns 1354532 1c00234e 02812c23 sw x8, 56(x2) x8:1c00b3fc x2:1c0198c0 PA:1c0198f8 +75423149ns 1354533 1c002350 d6818413 addi x8, x3, -664 x8=1c009144 x3:1c0093dc +75423169ns 1354534 1c002354 00042783 lw x15, 0(x8) x15=00000002 x8:1c009144 PA:1c009144 +75423189ns 1354535 1c002356 02112e23 sw x1, 60(x2) x1:1c003a64 x2:1c0198c0 PA:1c0198fc +75423209ns 1354536 1c002358 02912a23 sw x9, 52(x2) x9:00000490 x2:1c0198c0 PA:1c0198f4 +75423228ns 1354537 1c00235a 03212823 sw x18, 48(x2) x18:1c008bdc x2:1c0198c0 PA:1c0198f0 +75423248ns 1354538 1c00235c 03312623 sw x19, 44(x2) x19:ffffffff x2:1c0198c0 PA:1c0198ec +75423268ns 1354539 1c00235e 03412423 sw x20, 40(x2) x20:1c00adb8 x2:1c0198c0 PA:1c0198e8 +75423288ns 1354540 1c002360 03512223 sw x21, 36(x2) x21:1c00917c x2:1c0198c0 PA:1c0198e4 +75423308ns 1354541 1c002362 03612023 sw x22, 32(x2) x22:1c002754 x2:1c0198c0 PA:1c0198e0 +75423327ns 1354542 1c002364 01712e23 sw x23, 28(x2) x23:00000000 x2:1c0198c0 PA:1c0198dc +75423347ns 1354543 1c002366 02079263 bne x15, x0, 36 x15:00000002 +75423426ns 1354547 1c00238a c83ff0ef jal x1, -894 x1=1c00238e +75423466ns 1354549 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +75423545ns 1354553 1c002010 d841a783 lw x15, -636(x3) x15=00000000 x3:1c0093dc PA:1c009160 +75423585ns 1354555 1c002014 00078863 beq x15, x0, 16 x15:00000000 +75423644ns 1354558 1c002024 00008067 jalr x0, x1, 0 x1:1c00238e +75423684ns 1354560 1c00238e 00042783 lw x15, 0(x8) x15=00000002 x8:1c009144 PA:1c009144 +75423723ns 1354562 1c002390 fff78793 addi x15, x15, -1 x15=00000001 x15:00000002 +75423743ns 1354563 1c002392 00f42023 sw x15, 0(x8) x15:00000001 x8:1c009144 PA:1c009144 +75423763ns 1354564 1c002394 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +75423802ns 1354566 1c002396 02078163 beq x15, x0, 34 x15:00000001 +75423822ns 1354567 1c002398 00000513 addi x10, x0, 0 x10=00000000 +75423842ns 1354568 1c00239a 00a12623 sw x10, 12(x2) x10:00000000 x2:1c0198c0 PA:1c0198cc +75423862ns 1354569 1c00239c c8bff0ef jal x1, -886 x1=1c0023a0 +75423921ns 1354572 1c002026 d841a783 lw x15, -636(x3) x15=00000000 x3:1c0093dc PA:1c009160 +75423961ns 1354574 1c00202a 00078f63 beq x15, x0, 30 x15:00000000 +75424020ns 1354577 1c002048 00008067 jalr x0, x1, 0 x1:1c0023a0 +75424060ns 1354579 1c0023a0 03c12083 lw x1, 60(x2) x1=1c003a64 x2:1c0198c0 PA:1c0198fc +75424080ns 1354580 1c0023a2 03812403 lw x8, 56(x2) x8=1c00b3fc x2:1c0198c0 PA:1c0198f8 +75424099ns 1354581 1c0023a4 00c12503 lw x10, 12(x2) x10=00000000 x2:1c0198c0 PA:1c0198cc +75424119ns 1354582 1c0023a6 03412483 lw x9, 52(x2) x9=00000490 x2:1c0198c0 PA:1c0198f4 +75424139ns 1354583 1c0023a8 03012903 lw x18, 48(x2) x18=1c008bdc x2:1c0198c0 PA:1c0198f0 +75424159ns 1354584 1c0023aa 02c12983 lw x19, 44(x2) x19=ffffffff x2:1c0198c0 PA:1c0198ec +75424178ns 1354585 1c0023ac 02812a03 lw x20, 40(x2) x20=1c00adb8 x2:1c0198c0 PA:1c0198e8 +75424198ns 1354586 1c0023ae 02412a83 lw x21, 36(x2) x21=1c00917c x2:1c0198c0 PA:1c0198e4 +75424218ns 1354587 1c0023b0 02012b03 lw x22, 32(x2) x22=1c002754 x2:1c0198c0 PA:1c0198e0 +75424238ns 1354588 1c0023b2 01c12b83 lw x23, 28(x2) x23=00000000 x2:1c0198c0 PA:1c0198dc +75424258ns 1354589 1c0023b4 04010113 addi x2, x2, 64 x2=1c019900 x2:1c0198c0 +75424277ns 1354590 1c0023b6 00008067 jalr x0, x1, 0 x1:1c003a64 +75424317ns 1354592 1c003a64 00b40513 addi x10, x8, 11 x10=1c00b407 x8:1c00b3fc +75424337ns 1354593 1c003a68 00440793 addi x15, x8, 4 x15=1c00b400 x8:1c00b3fc +75424357ns 1354594 1c003a6c ff857513 andi x10, x10, -8 x10=1c00b400 x10:1c00b407 +75424376ns 1354595 1c003a6e 40f50733 sub x14, x10, x15 x14=00000000 x10:1c00b400 x15:1c00b400 +75424396ns 1354596 1c003a72 fcf500e3 beq x10, x15, -64 x10:1c00b400 x15:1c00b400 +75424456ns 1354599 1c003a32 01c12083 lw x1, 28(x2) x1=1c00297c x2:1c019900 PA:1c01991c +75424475ns 1354600 1c003a34 01812403 lw x8, 24(x2) x8=00000001 x2:1c019900 PA:1c019918 +75424495ns 1354601 1c003a36 01412483 lw x9, 20(x2) x9=1c0086e8 x2:1c019900 PA:1c019914 +75424515ns 1354602 1c003a38 01012903 lw x18, 16(x2) x18=00000004 x2:1c019900 PA:1c019910 +75424535ns 1354603 1c003a3a 00c12983 lw x19, 12(x2) x19=00000640 x2:1c019900 PA:1c01990c +75424555ns 1354604 1c003a3c 02010113 addi x2, x2, 32 x2=1c019920 x2:1c019900 +75424574ns 1354605 1c003a3e 00008067 jalr x0, x1, 0 x1:1c00297c +75424614ns 1354607 1c00297c 00a00433 add x8, x0, x10 x8=1c00b400 x10:1c00b400 +75424634ns 1354608 1c00297e 9cfff0ef jal x1, -1586 x1=1c002982 +75424673ns 1354610 1c00234c fc010113 addi x2, x2, -64 x2=1c0198e0 x2:1c019920 +75424693ns 1354611 1c00234e 02812c23 sw x8, 56(x2) x8:1c00b400 x2:1c0198e0 PA:1c019918 +75424713ns 1354612 1c002350 d6818413 addi x8, x3, -664 x8=1c009144 x3:1c0093dc +75424733ns 1354613 1c002354 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +75424752ns 1354614 1c002356 02112e23 sw x1, 60(x2) x1:1c002982 x2:1c0198e0 PA:1c01991c +75424772ns 1354615 1c002358 02912a23 sw x9, 52(x2) x9:1c0086e8 x2:1c0198e0 PA:1c019914 +75424792ns 1354616 1c00235a 03212823 sw x18, 48(x2) x18:00000004 x2:1c0198e0 PA:1c019910 +75424812ns 1354617 1c00235c 03312623 sw x19, 44(x2) x19:00000640 x2:1c0198e0 PA:1c01990c +75424832ns 1354618 1c00235e 03412423 sw x20, 40(x2) x20:1c00adb8 x2:1c0198e0 PA:1c019908 +75424851ns 1354619 1c002360 03512223 sw x21, 36(x2) x21:1c00917c x2:1c0198e0 PA:1c019904 +75424871ns 1354620 1c002362 03612023 sw x22, 32(x2) x22:1c002754 x2:1c0198e0 PA:1c019900 +75424891ns 1354621 1c002364 01712e23 sw x23, 28(x2) x23:00000000 x2:1c0198e0 PA:1c0198fc +75424911ns 1354622 1c002366 02079263 bne x15, x0, 36 x15:00000001 +75424990ns 1354626 1c00238a c83ff0ef jal x1, -894 x1=1c00238e +75425030ns 1354628 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +75425109ns 1354632 1c002010 d841a783 lw x15, -636(x3) x15=00000000 x3:1c0093dc PA:1c009160 +75425148ns 1354634 1c002014 00078863 beq x15, x0, 16 x15:00000000 +75425208ns 1354637 1c002024 00008067 jalr x0, x1, 0 x1:1c00238e +75425247ns 1354639 1c00238e 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +75425287ns 1354641 1c002390 fff78793 addi x15, x15, -1 x15=00000000 x15:00000001 +75425307ns 1354642 1c002392 00f42023 sw x15, 0(x8) x15:00000000 x8:1c009144 PA:1c009144 +75425326ns 1354643 1c002394 00042783 lw x15, 0(x8) x15=00000000 x8:1c009144 PA:1c009144 +75425366ns 1354645 1c002396 02078163 beq x15, x0, 34 x15:00000000 +75425425ns 1354648 1c0023b8 d601a783 lw x15, -672(x3) x15=00000002 x3:1c0093dc PA:1c00913c +75425465ns 1354650 1c0023bc fc078ee3 beq x15, x0, -36 x15:00000002 +75425485ns 1354651 1c0023be 1c009937 lui x18, 0x1c009000 x18=1c009000 +75425505ns 1354652 1c0023c2 00000413 addi x8, x0, 0 x8=00000000 +75425524ns 1354653 1c0023c4 93818493 addi x9, x3, -1736 x9=1c008d14 x3:1c0093dc +75425544ns 1354654 1c0023c8 00100993 addi x19, x0, 1 x19=00000001 +75425564ns 1354655 1c0023ca c8890913 addi x18, x18, -888 x18=1c008c88 x18:1c009000 +75425584ns 1354656 1c0023ce 01400a93 addi x21, x0, 20 x21=00000014 +75425603ns 1354657 1c0023d0 04c0006f jal x0, 76 +75425643ns 1354659 1c00241c 0004a783 lw x15, 0(x9) x15=00000000 x9:1c008d14 PA:1c008d14 +75425683ns 1354661 1c00241e fa079ae3 bne x15, x0, -76 x15:00000000 +75425702ns 1354662 1c002420 00040363 beq x8, x0, 6 x8:00000000 +75425782ns 1354666 1c002426 d8018713 addi x14, x3, -640 x14=1c00915c x3:1c0093dc +75425801ns 1354667 1c00242a 00072483 lw x9, 0(x14) x9=00000000 x14:1c00915c PA:1c00915c +75425821ns 1354668 1c00242c d8018413 addi x8, x3, -640 x8=1c00915c x3:1c0093dc +75425841ns 1354669 1c002430 00048d63 beq x9, x0, 26 x9:00000000 +75425920ns 1354673 1c00244a d8c1a783 lw x15, -628(x3) x15=00000000 x3:1c0093dc PA:1c009168 +75425960ns 1354675 1c00244e f40785e3 beq x15, x0, -182 x15:00000000 +75426019ns 1354678 1c002398 00000513 addi x10, x0, 0 x10=00000000 +75426039ns 1354679 1c00239a 00a12623 sw x10, 12(x2) x10:00000000 x2:1c0198e0 PA:1c0198ec +75426059ns 1354680 1c00239c c8bff0ef jal x1, -886 x1=1c0023a0 +75426118ns 1354683 1c002026 d841a783 lw x15, -636(x3) x15=00000000 x3:1c0093dc PA:1c009160 +75426158ns 1354685 1c00202a 00078f63 beq x15, x0, 30 x15:00000000 +75426217ns 1354688 1c002048 00008067 jalr x0, x1, 0 x1:1c0023a0 +75426257ns 1354690 1c0023a0 03c12083 lw x1, 60(x2) x1=1c002982 x2:1c0198e0 PA:1c01991c +75426276ns 1354691 1c0023a2 03812403 lw x8, 56(x2) x8=1c00b400 x2:1c0198e0 PA:1c019918 +75426296ns 1354692 1c0023a4 00c12503 lw x10, 12(x2) x10=00000000 x2:1c0198e0 PA:1c0198ec +75426316ns 1354693 1c0023a6 03412483 lw x9, 52(x2) x9=1c0086e8 x2:1c0198e0 PA:1c019914 +75426336ns 1354694 1c0023a8 03012903 lw x18, 48(x2) x18=00000004 x2:1c0198e0 PA:1c019910 +75426356ns 1354695 1c0023aa 02c12983 lw x19, 44(x2) x19=00000640 x2:1c0198e0 PA:1c01990c +75426375ns 1354696 1c0023ac 02812a03 lw x20, 40(x2) x20=1c00adb8 x2:1c0198e0 PA:1c019908 +75426395ns 1354697 1c0023ae 02412a83 lw x21, 36(x2) x21=1c00917c x2:1c0198e0 PA:1c019904 +75426415ns 1354698 1c0023b0 02012b03 lw x22, 32(x2) x22=1c002754 x2:1c0198e0 PA:1c019900 +75426435ns 1354699 1c0023b2 01c12b83 lw x23, 28(x2) x23=00000000 x2:1c0198e0 PA:1c0198fc +75426455ns 1354700 1c0023b4 04010113 addi x2, x2, 64 x2=1c019920 x2:1c0198e0 +75426474ns 1354701 1c0023b6 00008067 jalr x0, x1, 0 x1:1c002982 +75426514ns 1354703 1c002982 00041363 bne x8, x0, 6 x8:1c00b400 +75426573ns 1354706 1c002988 01c12083 lw x1, 28(x2) x1=1c002080 x2:1c019920 PA:1c01993c +75426593ns 1354707 1c00298a 00800533 add x10, x0, x8 x10=1c00b400 x8:1c00b400 +75426613ns 1354708 1c00298c 01812403 lw x8, 24(x2) x8=00000001 x2:1c019920 PA:1c019938 +75426633ns 1354709 1c00298e 02010113 addi x2, x2, 32 x2=1c019940 x2:1c019920 +75426652ns 1354710 1c002990 00008067 jalr x0, x1, 0 x1:1c002080 +75426692ns 1354712 1c002080 00a00433 add x8, x0, x10 x8=1c00b400 x10:1c00b400 +75426712ns 1354713 1c002082 00050f63 beq x10, x0, 30 x10:1c00b400 +75426732ns 1354714 1c002084 03452823 sw x20, 48(x10) x20:1c00adb8 x10:1c00b400 PA:1c00b430 +75426751ns 1354715 1c002088 01300633 add x12, x0, x19 x12=00000640 x19:00000640 +75426771ns 1354716 1c00208a 0a500593 addi x11, x0, 165 x11=000000a5 +75426791ns 1354717 1c00208e 01400533 add x10, x0, x20 x10=1c00adb8 x20:1c00adb8 +75426811ns 1354718 1c002090 debfe0ef jal x1, -4630 x1=1c002094 +75426850ns 1354720 1c000e7a 00a00333 add x6, x0, x10 x6=1c00adb8 x10:1c00adb8 +75426870ns 1354721 1c000e7c 00060663 beq x12, x0, 12 x12:00000640 +75426890ns 1354722 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00adb8 PA:1c00adb8 +75426910ns 1354723 1c000e82 fff60613 addi x12, x12, -1 x12=0000063f x12:00000640 +75426930ns 1354724 1c000e84 00130313 addi x6, x6, 1 x6=1c00adb9 x6:1c00adb8 +75426949ns 1354725 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000063f +75427029ns 1354729 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00adb9 PA:1c00adb9 +75427048ns 1354730 1c000e82 fff60613 addi x12, x12, -1 x12=0000063e x12:0000063f +75427068ns 1354731 1c000e84 00130313 addi x6, x6, 1 x6=1c00adba x6:1c00adb9 +75427088ns 1354732 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000063e +75427167ns 1354736 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00adba PA:1c00adba +75427187ns 1354737 1c000e82 fff60613 addi x12, x12, -1 x12=0000063d x12:0000063e +75427207ns 1354738 1c000e84 00130313 addi x6, x6, 1 x6=1c00adbb x6:1c00adba +75427226ns 1354739 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000063d +75427306ns 1354743 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00adbb PA:1c00adbb +75427325ns 1354744 1c000e82 fff60613 addi x12, x12, -1 x12=0000063c x12:0000063d +75427345ns 1354745 1c000e84 00130313 addi x6, x6, 1 x6=1c00adbc x6:1c00adbb +75427365ns 1354746 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000063c +75427444ns 1354750 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00adbc PA:1c00adbc +75427464ns 1354751 1c000e82 fff60613 addi x12, x12, -1 x12=0000063b x12:0000063c +75427484ns 1354752 1c000e84 00130313 addi x6, x6, 1 x6=1c00adbd x6:1c00adbc +75427504ns 1354753 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000063b +75427583ns 1354757 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00adbd PA:1c00adbd +75427602ns 1354758 1c000e82 fff60613 addi x12, x12, -1 x12=0000063a x12:0000063b +75427622ns 1354759 1c000e84 00130313 addi x6, x6, 1 x6=1c00adbe x6:1c00adbd +75427642ns 1354760 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000063a +75427721ns 1354764 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00adbe PA:1c00adbe +75427741ns 1354765 1c000e82 fff60613 addi x12, x12, -1 x12=00000639 x12:0000063a +75427761ns 1354766 1c000e84 00130313 addi x6, x6, 1 x6=1c00adbf x6:1c00adbe +75427781ns 1354767 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000639 +75427860ns 1354771 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00adbf PA:1c00adbf +75427880ns 1354772 1c000e82 fff60613 addi x12, x12, -1 x12=00000638 x12:00000639 +75427899ns 1354773 1c000e84 00130313 addi x6, x6, 1 x6=1c00adc0 x6:1c00adbf +75427919ns 1354774 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000638 +75427998ns 1354778 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00adc0 PA:1c00adc0 +75428018ns 1354779 1c000e82 fff60613 addi x12, x12, -1 x12=00000637 x12:00000638 +75428038ns 1354780 1c000e84 00130313 addi x6, x6, 1 x6=1c00adc1 x6:1c00adc0 +75428058ns 1354781 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000637 +75428137ns 1354785 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00adc1 PA:1c00adc1 +75428157ns 1354786 1c000e82 fff60613 addi x12, x12, -1 x12=00000636 x12:00000637 +75428176ns 1354787 1c000e84 00130313 addi x6, x6, 1 x6=1c00adc2 x6:1c00adc1 +75428196ns 1354788 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000636 +75428275ns 1354792 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00adc2 PA:1c00adc2 +75428295ns 1354793 1c000e82 fff60613 addi x12, x12, -1 x12=00000635 x12:00000636 +75428315ns 1354794 1c000e84 00130313 addi x6, x6, 1 x6=1c00adc3 x6:1c00adc2 +75428335ns 1354795 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000635 +75428414ns 1354799 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00adc3 PA:1c00adc3 +75428434ns 1354800 1c000e82 fff60613 addi x12, x12, -1 x12=00000634 x12:00000635 +75428454ns 1354801 1c000e84 00130313 addi x6, x6, 1 x6=1c00adc4 x6:1c00adc3 +75428473ns 1354802 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000634 +75428553ns 1354806 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00adc4 PA:1c00adc4 +75428572ns 1354807 1c000e82 fff60613 addi x12, x12, -1 x12=00000633 x12:00000634 +75428592ns 1354808 1c000e84 00130313 addi x6, x6, 1 x6=1c00adc5 x6:1c00adc4 +75428612ns 1354809 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000633 +75428691ns 1354813 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00adc5 PA:1c00adc5 +75428711ns 1354814 1c000e82 fff60613 addi x12, x12, -1 x12=00000632 x12:00000633 +75428731ns 1354815 1c000e84 00130313 addi x6, x6, 1 x6=1c00adc6 x6:1c00adc5 +75428750ns 1354816 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000632 +75428830ns 1354820 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00adc6 PA:1c00adc6 +75428849ns 1354821 1c000e82 fff60613 addi x12, x12, -1 x12=00000631 x12:00000632 +75428869ns 1354822 1c000e84 00130313 addi x6, x6, 1 x6=1c00adc7 x6:1c00adc6 +75428889ns 1354823 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000631 +75428968ns 1354827 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00adc7 PA:1c00adc7 +75428988ns 1354828 1c000e82 fff60613 addi x12, x12, -1 x12=00000630 x12:00000631 +75429008ns 1354829 1c000e84 00130313 addi x6, x6, 1 x6=1c00adc8 x6:1c00adc7 +75429028ns 1354830 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000630 +75429107ns 1354834 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00adc8 PA:1c00adc8 +75429126ns 1354835 1c000e82 fff60613 addi x12, x12, -1 x12=0000062f x12:00000630 +75429146ns 1354836 1c000e84 00130313 addi x6, x6, 1 x6=1c00adc9 x6:1c00adc8 +75429166ns 1354837 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000062f +75429245ns 1354841 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00adc9 PA:1c00adc9 +75429265ns 1354842 1c000e82 fff60613 addi x12, x12, -1 x12=0000062e x12:0000062f +75429285ns 1354843 1c000e84 00130313 addi x6, x6, 1 x6=1c00adca x6:1c00adc9 +75429305ns 1354844 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000062e +75429384ns 1354848 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00adca PA:1c00adca +75429404ns 1354849 1c000e82 fff60613 addi x12, x12, -1 x12=0000062d x12:0000062e +75429423ns 1354850 1c000e84 00130313 addi x6, x6, 1 x6=1c00adcb x6:1c00adca +75429443ns 1354851 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000062d +75429522ns 1354855 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00adcb PA:1c00adcb +75429542ns 1354856 1c000e82 fff60613 addi x12, x12, -1 x12=0000062c x12:0000062d +75429562ns 1354857 1c000e84 00130313 addi x6, x6, 1 x6=1c00adcc x6:1c00adcb +75429582ns 1354858 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000062c +75429661ns 1354862 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00adcc PA:1c00adcc +75429681ns 1354863 1c000e82 fff60613 addi x12, x12, -1 x12=0000062b x12:0000062c +75429700ns 1354864 1c000e84 00130313 addi x6, x6, 1 x6=1c00adcd x6:1c00adcc +75429720ns 1354865 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000062b +75429799ns 1354869 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00adcd PA:1c00adcd +75429819ns 1354870 1c000e82 fff60613 addi x12, x12, -1 x12=0000062a x12:0000062b +75429839ns 1354871 1c000e84 00130313 addi x6, x6, 1 x6=1c00adce x6:1c00adcd +75429859ns 1354872 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000062a +75429938ns 1354876 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00adce PA:1c00adce +75429958ns 1354877 1c000e82 fff60613 addi x12, x12, -1 x12=00000629 x12:0000062a +75429978ns 1354878 1c000e84 00130313 addi x6, x6, 1 x6=1c00adcf x6:1c00adce +75429997ns 1354879 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000629 +75430076ns 1354883 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00adcf PA:1c00adcf +75430096ns 1354884 1c000e82 fff60613 addi x12, x12, -1 x12=00000628 x12:00000629 +75430116ns 1354885 1c000e84 00130313 addi x6, x6, 1 x6=1c00add0 x6:1c00adcf +75430136ns 1354886 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000628 +75430215ns 1354890 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00add0 PA:1c00add0 +75430235ns 1354891 1c000e82 fff60613 addi x12, x12, -1 x12=00000627 x12:00000628 +75430255ns 1354892 1c000e84 00130313 addi x6, x6, 1 x6=1c00add1 x6:1c00add0 +75430274ns 1354893 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000627 +75430354ns 1354897 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00add1 PA:1c00add1 +75430373ns 1354898 1c000e82 fff60613 addi x12, x12, -1 x12=00000626 x12:00000627 +75430393ns 1354899 1c000e84 00130313 addi x6, x6, 1 x6=1c00add2 x6:1c00add1 +75430413ns 1354900 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000626 +75430492ns 1354904 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00add2 PA:1c00add2 +75430512ns 1354905 1c000e82 fff60613 addi x12, x12, -1 x12=00000625 x12:00000626 +75430532ns 1354906 1c000e84 00130313 addi x6, x6, 1 x6=1c00add3 x6:1c00add2 +75430551ns 1354907 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000625 +75430631ns 1354911 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00add3 PA:1c00add3 +75430650ns 1354912 1c000e82 fff60613 addi x12, x12, -1 x12=00000624 x12:00000625 +75430670ns 1354913 1c000e84 00130313 addi x6, x6, 1 x6=1c00add4 x6:1c00add3 +75430690ns 1354914 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000624 +75430769ns 1354918 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00add4 PA:1c00add4 +75430789ns 1354919 1c000e82 fff60613 addi x12, x12, -1 x12=00000623 x12:00000624 +75430809ns 1354920 1c000e84 00130313 addi x6, x6, 1 x6=1c00add5 x6:1c00add4 +75430829ns 1354921 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000623 +75430908ns 1354925 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00add5 PA:1c00add5 +75430928ns 1354926 1c000e82 fff60613 addi x12, x12, -1 x12=00000622 x12:00000623 +75430947ns 1354927 1c000e84 00130313 addi x6, x6, 1 x6=1c00add6 x6:1c00add5 +75430967ns 1354928 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000622 +75431046ns 1354932 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00add6 PA:1c00add6 +75431066ns 1354933 1c000e82 fff60613 addi x12, x12, -1 x12=00000621 x12:00000622 +75431086ns 1354934 1c000e84 00130313 addi x6, x6, 1 x6=1c00add7 x6:1c00add6 +75431106ns 1354935 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000621 +75431185ns 1354939 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00add7 PA:1c00add7 +75431205ns 1354940 1c000e82 fff60613 addi x12, x12, -1 x12=00000620 x12:00000621 +75431224ns 1354941 1c000e84 00130313 addi x6, x6, 1 x6=1c00add8 x6:1c00add7 +75431244ns 1354942 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000620 +75431323ns 1354946 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00add8 PA:1c00add8 +75431343ns 1354947 1c000e82 fff60613 addi x12, x12, -1 x12=0000061f x12:00000620 +75431363ns 1354948 1c000e84 00130313 addi x6, x6, 1 x6=1c00add9 x6:1c00add8 +75431383ns 1354949 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000061f +75431462ns 1354953 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00add9 PA:1c00add9 +75431482ns 1354954 1c000e82 fff60613 addi x12, x12, -1 x12=0000061e x12:0000061f +75431502ns 1354955 1c000e84 00130313 addi x6, x6, 1 x6=1c00adda x6:1c00add9 +75431521ns 1354956 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000061e +75431600ns 1354960 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00adda PA:1c00adda +75431620ns 1354961 1c000e82 fff60613 addi x12, x12, -1 x12=0000061d x12:0000061e +75431640ns 1354962 1c000e84 00130313 addi x6, x6, 1 x6=1c00addb x6:1c00adda +75431660ns 1354963 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000061d +75431739ns 1354967 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00addb PA:1c00addb +75431759ns 1354968 1c000e82 fff60613 addi x12, x12, -1 x12=0000061c x12:0000061d +75431779ns 1354969 1c000e84 00130313 addi x6, x6, 1 x6=1c00addc x6:1c00addb +75431798ns 1354970 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000061c +75431878ns 1354974 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00addc PA:1c00addc +75431897ns 1354975 1c000e82 fff60613 addi x12, x12, -1 x12=0000061b x12:0000061c +75431917ns 1354976 1c000e84 00130313 addi x6, x6, 1 x6=1c00addd x6:1c00addc +75431937ns 1354977 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000061b +75432016ns 1354981 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00addd PA:1c00addd +75432036ns 1354982 1c000e82 fff60613 addi x12, x12, -1 x12=0000061a x12:0000061b +75432056ns 1354983 1c000e84 00130313 addi x6, x6, 1 x6=1c00adde x6:1c00addd +75432075ns 1354984 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000061a +75432155ns 1354988 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00adde PA:1c00adde +75432174ns 1354989 1c000e82 fff60613 addi x12, x12, -1 x12=00000619 x12:0000061a +75432194ns 1354990 1c000e84 00130313 addi x6, x6, 1 x6=1c00addf x6:1c00adde +75432214ns 1354991 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000619 +75432293ns 1354995 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00addf PA:1c00addf +75432313ns 1354996 1c000e82 fff60613 addi x12, x12, -1 x12=00000618 x12:00000619 +75432333ns 1354997 1c000e84 00130313 addi x6, x6, 1 x6=1c00ade0 x6:1c00addf +75432353ns 1354998 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000618 +75432432ns 1355002 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ade0 PA:1c00ade0 +75432452ns 1355003 1c000e82 fff60613 addi x12, x12, -1 x12=00000617 x12:00000618 +75432471ns 1355004 1c000e84 00130313 addi x6, x6, 1 x6=1c00ade1 x6:1c00ade0 +75432491ns 1355005 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000617 +75432570ns 1355009 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ade1 PA:1c00ade1 +75432590ns 1355010 1c000e82 fff60613 addi x12, x12, -1 x12=00000616 x12:00000617 +75432610ns 1355011 1c000e84 00130313 addi x6, x6, 1 x6=1c00ade2 x6:1c00ade1 +75432630ns 1355012 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000616 +75432709ns 1355016 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ade2 PA:1c00ade2 +75432729ns 1355017 1c000e82 fff60613 addi x12, x12, -1 x12=00000615 x12:00000616 +75432748ns 1355018 1c000e84 00130313 addi x6, x6, 1 x6=1c00ade3 x6:1c00ade2 +75432768ns 1355019 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000615 +75432847ns 1355023 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ade3 PA:1c00ade3 +75432867ns 1355024 1c000e82 fff60613 addi x12, x12, -1 x12=00000614 x12:00000615 +75432887ns 1355025 1c000e84 00130313 addi x6, x6, 1 x6=1c00ade4 x6:1c00ade3 +75432907ns 1355026 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000614 +75432986ns 1355030 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ade4 PA:1c00ade4 +75433006ns 1355031 1c000e82 fff60613 addi x12, x12, -1 x12=00000613 x12:00000614 +75433025ns 1355032 1c000e84 00130313 addi x6, x6, 1 x6=1c00ade5 x6:1c00ade4 +75433045ns 1355033 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000613 +75433124ns 1355037 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ade5 PA:1c00ade5 +75433144ns 1355038 1c000e82 fff60613 addi x12, x12, -1 x12=00000612 x12:00000613 +75433164ns 1355039 1c000e84 00130313 addi x6, x6, 1 x6=1c00ade6 x6:1c00ade5 +75433184ns 1355040 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000612 +75433263ns 1355044 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ade6 PA:1c00ade6 +75433283ns 1355045 1c000e82 fff60613 addi x12, x12, -1 x12=00000611 x12:00000612 +75433303ns 1355046 1c000e84 00130313 addi x6, x6, 1 x6=1c00ade7 x6:1c00ade6 +75433322ns 1355047 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000611 +75433402ns 1355051 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ade7 PA:1c00ade7 +75433421ns 1355052 1c000e82 fff60613 addi x12, x12, -1 x12=00000610 x12:00000611 +75433441ns 1355053 1c000e84 00130313 addi x6, x6, 1 x6=1c00ade8 x6:1c00ade7 +75433461ns 1355054 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000610 +75433540ns 1355058 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ade8 PA:1c00ade8 +75433560ns 1355059 1c000e82 fff60613 addi x12, x12, -1 x12=0000060f x12:00000610 +75433580ns 1355060 1c000e84 00130313 addi x6, x6, 1 x6=1c00ade9 x6:1c00ade8 +75433599ns 1355061 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000060f +75433679ns 1355065 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ade9 PA:1c00ade9 +75433698ns 1355066 1c000e82 fff60613 addi x12, x12, -1 x12=0000060e x12:0000060f +75433718ns 1355067 1c000e84 00130313 addi x6, x6, 1 x6=1c00adea x6:1c00ade9 +75433738ns 1355068 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000060e +75433817ns 1355072 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00adea PA:1c00adea +75433837ns 1355073 1c000e82 fff60613 addi x12, x12, -1 x12=0000060d x12:0000060e +75433857ns 1355074 1c000e84 00130313 addi x6, x6, 1 x6=1c00adeb x6:1c00adea +75433877ns 1355075 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000060d +75433956ns 1355079 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00adeb PA:1c00adeb +75433976ns 1355080 1c000e82 fff60613 addi x12, x12, -1 x12=0000060c x12:0000060d +75433995ns 1355081 1c000e84 00130313 addi x6, x6, 1 x6=1c00adec x6:1c00adeb +75434015ns 1355082 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000060c +75434094ns 1355086 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00adec PA:1c00adec +75434114ns 1355087 1c000e82 fff60613 addi x12, x12, -1 x12=0000060b x12:0000060c +75434134ns 1355088 1c000e84 00130313 addi x6, x6, 1 x6=1c00aded x6:1c00adec +75434154ns 1355089 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000060b +75434233ns 1355093 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aded PA:1c00aded +75434253ns 1355094 1c000e82 fff60613 addi x12, x12, -1 x12=0000060a x12:0000060b +75434272ns 1355095 1c000e84 00130313 addi x6, x6, 1 x6=1c00adee x6:1c00aded +75434292ns 1355096 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000060a +75434371ns 1355100 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00adee PA:1c00adee +75434391ns 1355101 1c000e82 fff60613 addi x12, x12, -1 x12=00000609 x12:0000060a +75434411ns 1355102 1c000e84 00130313 addi x6, x6, 1 x6=1c00adef x6:1c00adee +75434431ns 1355103 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000609 +75434510ns 1355107 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00adef PA:1c00adef +75434530ns 1355108 1c000e82 fff60613 addi x12, x12, -1 x12=00000608 x12:00000609 +75434549ns 1355109 1c000e84 00130313 addi x6, x6, 1 x6=1c00adf0 x6:1c00adef +75434569ns 1355110 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000608 +75434648ns 1355114 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00adf0 PA:1c00adf0 +75434668ns 1355115 1c000e82 fff60613 addi x12, x12, -1 x12=00000607 x12:00000608 +75434688ns 1355116 1c000e84 00130313 addi x6, x6, 1 x6=1c00adf1 x6:1c00adf0 +75434708ns 1355117 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000607 +75434787ns 1355121 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00adf1 PA:1c00adf1 +75434807ns 1355122 1c000e82 fff60613 addi x12, x12, -1 x12=00000606 x12:00000607 +75434827ns 1355123 1c000e84 00130313 addi x6, x6, 1 x6=1c00adf2 x6:1c00adf1 +75434846ns 1355124 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000606 +75434926ns 1355128 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00adf2 PA:1c00adf2 +75434945ns 1355129 1c000e82 fff60613 addi x12, x12, -1 x12=00000605 x12:00000606 +75434965ns 1355130 1c000e84 00130313 addi x6, x6, 1 x6=1c00adf3 x6:1c00adf2 +75434985ns 1355131 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000605 +75435064ns 1355135 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00adf3 PA:1c00adf3 +75435084ns 1355136 1c000e82 fff60613 addi x12, x12, -1 x12=00000604 x12:00000605 +75435104ns 1355137 1c000e84 00130313 addi x6, x6, 1 x6=1c00adf4 x6:1c00adf3 +75435123ns 1355138 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000604 +75435203ns 1355142 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00adf4 PA:1c00adf4 +75435222ns 1355143 1c000e82 fff60613 addi x12, x12, -1 x12=00000603 x12:00000604 +75435242ns 1355144 1c000e84 00130313 addi x6, x6, 1 x6=1c00adf5 x6:1c00adf4 +75435262ns 1355145 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000603 +75435341ns 1355149 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00adf5 PA:1c00adf5 +75435361ns 1355150 1c000e82 fff60613 addi x12, x12, -1 x12=00000602 x12:00000603 +75435381ns 1355151 1c000e84 00130313 addi x6, x6, 1 x6=1c00adf6 x6:1c00adf5 +75435401ns 1355152 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000602 +75435480ns 1355156 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00adf6 PA:1c00adf6 +75435499ns 1355157 1c000e82 fff60613 addi x12, x12, -1 x12=00000601 x12:00000602 +75435519ns 1355158 1c000e84 00130313 addi x6, x6, 1 x6=1c00adf7 x6:1c00adf6 +75435539ns 1355159 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000601 +75435618ns 1355163 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00adf7 PA:1c00adf7 +75435638ns 1355164 1c000e82 fff60613 addi x12, x12, -1 x12=00000600 x12:00000601 +75435658ns 1355165 1c000e84 00130313 addi x6, x6, 1 x6=1c00adf8 x6:1c00adf7 +75435678ns 1355166 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000600 +75435757ns 1355170 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00adf8 PA:1c00adf8 +75435777ns 1355171 1c000e82 fff60613 addi x12, x12, -1 x12=000005ff x12:00000600 +75435796ns 1355172 1c000e84 00130313 addi x6, x6, 1 x6=1c00adf9 x6:1c00adf8 +75435816ns 1355173 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005ff +75435895ns 1355177 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00adf9 PA:1c00adf9 +75435915ns 1355178 1c000e82 fff60613 addi x12, x12, -1 x12=000005fe x12:000005ff +75435935ns 1355179 1c000e84 00130313 addi x6, x6, 1 x6=1c00adfa x6:1c00adf9 +75435955ns 1355180 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005fe +75436034ns 1355184 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00adfa PA:1c00adfa +75436054ns 1355185 1c000e82 fff60613 addi x12, x12, -1 x12=000005fd x12:000005fe +75436073ns 1355186 1c000e84 00130313 addi x6, x6, 1 x6=1c00adfb x6:1c00adfa +75436093ns 1355187 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005fd +75436172ns 1355191 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00adfb PA:1c00adfb +75436192ns 1355192 1c000e82 fff60613 addi x12, x12, -1 x12=000005fc x12:000005fd +75436212ns 1355193 1c000e84 00130313 addi x6, x6, 1 x6=1c00adfc x6:1c00adfb +75436232ns 1355194 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005fc +75436311ns 1355198 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00adfc PA:1c00adfc +75436331ns 1355199 1c000e82 fff60613 addi x12, x12, -1 x12=000005fb x12:000005fc +75436351ns 1355200 1c000e84 00130313 addi x6, x6, 1 x6=1c00adfd x6:1c00adfc +75436370ns 1355201 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005fb +75436450ns 1355205 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00adfd PA:1c00adfd +75436469ns 1355206 1c000e82 fff60613 addi x12, x12, -1 x12=000005fa x12:000005fb +75436489ns 1355207 1c000e84 00130313 addi x6, x6, 1 x6=1c00adfe x6:1c00adfd +75436509ns 1355208 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005fa +75436588ns 1355212 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00adfe PA:1c00adfe +75436608ns 1355213 1c000e82 fff60613 addi x12, x12, -1 x12=000005f9 x12:000005fa +75436628ns 1355214 1c000e84 00130313 addi x6, x6, 1 x6=1c00adff x6:1c00adfe +75436647ns 1355215 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005f9 +75436727ns 1355219 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00adff PA:1c00adff +75436746ns 1355220 1c000e82 fff60613 addi x12, x12, -1 x12=000005f8 x12:000005f9 +75436766ns 1355221 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae00 x6:1c00adff +75436786ns 1355222 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005f8 +75436865ns 1355226 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae00 PA:1c00ae00 +75436885ns 1355227 1c000e82 fff60613 addi x12, x12, -1 x12=000005f7 x12:000005f8 +75436905ns 1355228 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae01 x6:1c00ae00 +75436925ns 1355229 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005f7 +75437004ns 1355233 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae01 PA:1c00ae01 +75437023ns 1355234 1c000e82 fff60613 addi x12, x12, -1 x12=000005f6 x12:000005f7 +75437043ns 1355235 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae02 x6:1c00ae01 +75437063ns 1355236 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005f6 +75437142ns 1355240 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae02 PA:1c00ae02 +75437162ns 1355241 1c000e82 fff60613 addi x12, x12, -1 x12=000005f5 x12:000005f6 +75437182ns 1355242 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae03 x6:1c00ae02 +75437202ns 1355243 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005f5 +75437281ns 1355247 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae03 PA:1c00ae03 +75437301ns 1355248 1c000e82 fff60613 addi x12, x12, -1 x12=000005f4 x12:000005f5 +75437320ns 1355249 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae04 x6:1c00ae03 +75437340ns 1355250 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005f4 +75437419ns 1355254 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae04 PA:1c00ae04 +75437439ns 1355255 1c000e82 fff60613 addi x12, x12, -1 x12=000005f3 x12:000005f4 +75437459ns 1355256 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae05 x6:1c00ae04 +75437479ns 1355257 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005f3 +75437558ns 1355261 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae05 PA:1c00ae05 +75437578ns 1355262 1c000e82 fff60613 addi x12, x12, -1 x12=000005f2 x12:000005f3 +75437597ns 1355263 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae06 x6:1c00ae05 +75437617ns 1355264 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005f2 +75437696ns 1355268 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae06 PA:1c00ae06 +75437716ns 1355269 1c000e82 fff60613 addi x12, x12, -1 x12=000005f1 x12:000005f2 +75437736ns 1355270 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae07 x6:1c00ae06 +75437756ns 1355271 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005f1 +75437835ns 1355275 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae07 PA:1c00ae07 +75437855ns 1355276 1c000e82 fff60613 addi x12, x12, -1 x12=000005f0 x12:000005f1 +75437875ns 1355277 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae08 x6:1c00ae07 +75437894ns 1355278 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005f0 +75437973ns 1355282 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae08 PA:1c00ae08 +75437993ns 1355283 1c000e82 fff60613 addi x12, x12, -1 x12=000005ef x12:000005f0 +75438013ns 1355284 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae09 x6:1c00ae08 +75438033ns 1355285 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005ef +75438112ns 1355289 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae09 PA:1c00ae09 +75438132ns 1355290 1c000e82 fff60613 addi x12, x12, -1 x12=000005ee x12:000005ef +75438152ns 1355291 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae0a x6:1c00ae09 +75438171ns 1355292 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005ee +75438251ns 1355296 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae0a PA:1c00ae0a +75438270ns 1355297 1c000e82 fff60613 addi x12, x12, -1 x12=000005ed x12:000005ee +75438290ns 1355298 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae0b x6:1c00ae0a +75438310ns 1355299 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005ed +75438389ns 1355303 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae0b PA:1c00ae0b +75438409ns 1355304 1c000e82 fff60613 addi x12, x12, -1 x12=000005ec x12:000005ed +75438429ns 1355305 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae0c x6:1c00ae0b +75438449ns 1355306 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005ec +75438528ns 1355310 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae0c PA:1c00ae0c +75438547ns 1355311 1c000e82 fff60613 addi x12, x12, -1 x12=000005eb x12:000005ec +75438567ns 1355312 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae0d x6:1c00ae0c +75438587ns 1355313 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005eb +75438666ns 1355317 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae0d PA:1c00ae0d +75438686ns 1355318 1c000e82 fff60613 addi x12, x12, -1 x12=000005ea x12:000005eb +75438706ns 1355319 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae0e x6:1c00ae0d +75438726ns 1355320 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005ea +75438805ns 1355324 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae0e PA:1c00ae0e +75438825ns 1355325 1c000e82 fff60613 addi x12, x12, -1 x12=000005e9 x12:000005ea +75438844ns 1355326 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae0f x6:1c00ae0e +75438864ns 1355327 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005e9 +75438943ns 1355331 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae0f PA:1c00ae0f +75438963ns 1355332 1c000e82 fff60613 addi x12, x12, -1 x12=000005e8 x12:000005e9 +75438983ns 1355333 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae10 x6:1c00ae0f +75439003ns 1355334 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005e8 +75439082ns 1355338 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae10 PA:1c00ae10 +75439102ns 1355339 1c000e82 fff60613 addi x12, x12, -1 x12=000005e7 x12:000005e8 +75439121ns 1355340 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae11 x6:1c00ae10 +75439141ns 1355341 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005e7 +75439220ns 1355345 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae11 PA:1c00ae11 +75439240ns 1355346 1c000e82 fff60613 addi x12, x12, -1 x12=000005e6 x12:000005e7 +75439260ns 1355347 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae12 x6:1c00ae11 +75439280ns 1355348 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005e6 +75439359ns 1355352 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae12 PA:1c00ae12 +75439379ns 1355353 1c000e82 fff60613 addi x12, x12, -1 x12=000005e5 x12:000005e6 +75439399ns 1355354 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae13 x6:1c00ae12 +75439418ns 1355355 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005e5 +75439497ns 1355359 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae13 PA:1c00ae13 +75439517ns 1355360 1c000e82 fff60613 addi x12, x12, -1 x12=000005e4 x12:000005e5 +75439537ns 1355361 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae14 x6:1c00ae13 +75439557ns 1355362 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005e4 +75439636ns 1355366 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae14 PA:1c00ae14 +75439656ns 1355367 1c000e82 fff60613 addi x12, x12, -1 x12=000005e3 x12:000005e4 +75439676ns 1355368 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae15 x6:1c00ae14 +75439695ns 1355369 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005e3 +75439775ns 1355373 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae15 PA:1c00ae15 +75439794ns 1355374 1c000e82 fff60613 addi x12, x12, -1 x12=000005e2 x12:000005e3 +75439814ns 1355375 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae16 x6:1c00ae15 +75439834ns 1355376 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005e2 +75439913ns 1355380 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae16 PA:1c00ae16 +75439933ns 1355381 1c000e82 fff60613 addi x12, x12, -1 x12=000005e1 x12:000005e2 +75439953ns 1355382 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae17 x6:1c00ae16 +75439972ns 1355383 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005e1 +75440052ns 1355387 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae17 PA:1c00ae17 +75440071ns 1355388 1c000e82 fff60613 addi x12, x12, -1 x12=000005e0 x12:000005e1 +75440091ns 1355389 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae18 x6:1c00ae17 +75440111ns 1355390 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005e0 +75440190ns 1355394 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae18 PA:1c00ae18 +75440210ns 1355395 1c000e82 fff60613 addi x12, x12, -1 x12=000005df x12:000005e0 +75440230ns 1355396 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae19 x6:1c00ae18 +75440250ns 1355397 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005df +75440329ns 1355401 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae19 PA:1c00ae19 +75440349ns 1355402 1c000e82 fff60613 addi x12, x12, -1 x12=000005de x12:000005df +75440368ns 1355403 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae1a x6:1c00ae19 +75440388ns 1355404 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005de +75440467ns 1355408 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae1a PA:1c00ae1a +75440487ns 1355409 1c000e82 fff60613 addi x12, x12, -1 x12=000005dd x12:000005de +75440507ns 1355410 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae1b x6:1c00ae1a +75440527ns 1355411 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005dd +75440606ns 1355415 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae1b PA:1c00ae1b +75440626ns 1355416 1c000e82 fff60613 addi x12, x12, -1 x12=000005dc x12:000005dd +75440645ns 1355417 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae1c x6:1c00ae1b +75440665ns 1355418 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005dc +75440744ns 1355422 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae1c PA:1c00ae1c +75440764ns 1355423 1c000e82 fff60613 addi x12, x12, -1 x12=000005db x12:000005dc +75440784ns 1355424 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae1d x6:1c00ae1c +75440804ns 1355425 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005db +75440883ns 1355429 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae1d PA:1c00ae1d +75440903ns 1355430 1c000e82 fff60613 addi x12, x12, -1 x12=000005da x12:000005db +75440923ns 1355431 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae1e x6:1c00ae1d +75440942ns 1355432 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005da +75441021ns 1355436 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae1e PA:1c00ae1e +75441041ns 1355437 1c000e82 fff60613 addi x12, x12, -1 x12=000005d9 x12:000005da +75441061ns 1355438 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae1f x6:1c00ae1e +75441081ns 1355439 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005d9 +75441160ns 1355443 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae1f PA:1c00ae1f +75441180ns 1355444 1c000e82 fff60613 addi x12, x12, -1 x12=000005d8 x12:000005d9 +75441200ns 1355445 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae20 x6:1c00ae1f +75441219ns 1355446 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005d8 +75441299ns 1355450 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae20 PA:1c00ae20 +75441318ns 1355451 1c000e82 fff60613 addi x12, x12, -1 x12=000005d7 x12:000005d8 +75441338ns 1355452 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae21 x6:1c00ae20 +75441358ns 1355453 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005d7 +75441437ns 1355457 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae21 PA:1c00ae21 +75441457ns 1355458 1c000e82 fff60613 addi x12, x12, -1 x12=000005d6 x12:000005d7 +75441477ns 1355459 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae22 x6:1c00ae21 +75441496ns 1355460 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005d6 +75441576ns 1355464 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae22 PA:1c00ae22 +75441595ns 1355465 1c000e82 fff60613 addi x12, x12, -1 x12=000005d5 x12:000005d6 +75441615ns 1355466 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae23 x6:1c00ae22 +75441635ns 1355467 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005d5 +75441714ns 1355471 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae23 PA:1c00ae23 +75441734ns 1355472 1c000e82 fff60613 addi x12, x12, -1 x12=000005d4 x12:000005d5 +75441754ns 1355473 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae24 x6:1c00ae23 +75441774ns 1355474 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005d4 +75441853ns 1355478 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae24 PA:1c00ae24 +75441873ns 1355479 1c000e82 fff60613 addi x12, x12, -1 x12=000005d3 x12:000005d4 +75441892ns 1355480 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae25 x6:1c00ae24 +75441912ns 1355481 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005d3 +75441991ns 1355485 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae25 PA:1c00ae25 +75442011ns 1355486 1c000e82 fff60613 addi x12, x12, -1 x12=000005d2 x12:000005d3 +75442031ns 1355487 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae26 x6:1c00ae25 +75442051ns 1355488 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005d2 +75442130ns 1355492 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae26 PA:1c00ae26 +75442150ns 1355493 1c000e82 fff60613 addi x12, x12, -1 x12=000005d1 x12:000005d2 +75442169ns 1355494 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae27 x6:1c00ae26 +75442189ns 1355495 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005d1 +75442268ns 1355499 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae27 PA:1c00ae27 +75442288ns 1355500 1c000e82 fff60613 addi x12, x12, -1 x12=000005d0 x12:000005d1 +75442308ns 1355501 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae28 x6:1c00ae27 +75442328ns 1355502 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005d0 +75442407ns 1355506 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae28 PA:1c00ae28 +75442427ns 1355507 1c000e82 fff60613 addi x12, x12, -1 x12=000005cf x12:000005d0 +75442446ns 1355508 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae29 x6:1c00ae28 +75442466ns 1355509 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005cf +75442545ns 1355513 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae29 PA:1c00ae29 +75442565ns 1355514 1c000e82 fff60613 addi x12, x12, -1 x12=000005ce x12:000005cf +75442585ns 1355515 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae2a x6:1c00ae29 +75442605ns 1355516 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005ce +75442684ns 1355520 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae2a PA:1c00ae2a +75442704ns 1355521 1c000e82 fff60613 addi x12, x12, -1 x12=000005cd x12:000005ce +75442724ns 1355522 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae2b x6:1c00ae2a +75442743ns 1355523 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005cd +75442823ns 1355527 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae2b PA:1c00ae2b +75442842ns 1355528 1c000e82 fff60613 addi x12, x12, -1 x12=000005cc x12:000005cd +75442862ns 1355529 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae2c x6:1c00ae2b +75442882ns 1355530 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005cc +75442961ns 1355534 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae2c PA:1c00ae2c +75442981ns 1355535 1c000e82 fff60613 addi x12, x12, -1 x12=000005cb x12:000005cc +75443001ns 1355536 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae2d x6:1c00ae2c +75443020ns 1355537 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005cb +75443100ns 1355541 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae2d PA:1c00ae2d +75443119ns 1355542 1c000e82 fff60613 addi x12, x12, -1 x12=000005ca x12:000005cb +75443139ns 1355543 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae2e x6:1c00ae2d +75443159ns 1355544 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005ca +75443238ns 1355548 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae2e PA:1c00ae2e +75443258ns 1355549 1c000e82 fff60613 addi x12, x12, -1 x12=000005c9 x12:000005ca +75443278ns 1355550 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae2f x6:1c00ae2e +75443298ns 1355551 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005c9 +75443377ns 1355555 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae2f PA:1c00ae2f +75443397ns 1355556 1c000e82 fff60613 addi x12, x12, -1 x12=000005c8 x12:000005c9 +75443416ns 1355557 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae30 x6:1c00ae2f +75443436ns 1355558 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005c8 +75443515ns 1355562 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae30 PA:1c00ae30 +75443535ns 1355563 1c000e82 fff60613 addi x12, x12, -1 x12=000005c7 x12:000005c8 +75443555ns 1355564 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae31 x6:1c00ae30 +75443575ns 1355565 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005c7 +75443654ns 1355569 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae31 PA:1c00ae31 +75443674ns 1355570 1c000e82 fff60613 addi x12, x12, -1 x12=000005c6 x12:000005c7 +75443693ns 1355571 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae32 x6:1c00ae31 +75443713ns 1355572 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005c6 +75443792ns 1355576 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae32 PA:1c00ae32 +75443812ns 1355577 1c000e82 fff60613 addi x12, x12, -1 x12=000005c5 x12:000005c6 +75443832ns 1355578 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae33 x6:1c00ae32 +75443852ns 1355579 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005c5 +75443931ns 1355583 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae33 PA:1c00ae33 +75443951ns 1355584 1c000e82 fff60613 addi x12, x12, -1 x12=000005c4 x12:000005c5 +75443970ns 1355585 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae34 x6:1c00ae33 +75443990ns 1355586 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005c4 +75444069ns 1355590 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae34 PA:1c00ae34 +75444089ns 1355591 1c000e82 fff60613 addi x12, x12, -1 x12=000005c3 x12:000005c4 +75444109ns 1355592 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae35 x6:1c00ae34 +75444129ns 1355593 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005c3 +75444208ns 1355597 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae35 PA:1c00ae35 +75444228ns 1355598 1c000e82 fff60613 addi x12, x12, -1 x12=000005c2 x12:000005c3 +75444248ns 1355599 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae36 x6:1c00ae35 +75444267ns 1355600 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005c2 +75444347ns 1355604 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae36 PA:1c00ae36 +75444366ns 1355605 1c000e82 fff60613 addi x12, x12, -1 x12=000005c1 x12:000005c2 +75444386ns 1355606 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae37 x6:1c00ae36 +75444406ns 1355607 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005c1 +75444485ns 1355611 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae37 PA:1c00ae37 +75444505ns 1355612 1c000e82 fff60613 addi x12, x12, -1 x12=000005c0 x12:000005c1 +75444525ns 1355613 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae38 x6:1c00ae37 +75444544ns 1355614 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005c0 +75444624ns 1355618 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae38 PA:1c00ae38 +75444643ns 1355619 1c000e82 fff60613 addi x12, x12, -1 x12=000005bf x12:000005c0 +75444663ns 1355620 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae39 x6:1c00ae38 +75444683ns 1355621 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005bf +75444762ns 1355625 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae39 PA:1c00ae39 +75444782ns 1355626 1c000e82 fff60613 addi x12, x12, -1 x12=000005be x12:000005bf +75444802ns 1355627 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae3a x6:1c00ae39 +75444822ns 1355628 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005be +75444901ns 1355632 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae3a PA:1c00ae3a +75444920ns 1355633 1c000e82 fff60613 addi x12, x12, -1 x12=000005bd x12:000005be +75444940ns 1355634 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae3b x6:1c00ae3a +75444960ns 1355635 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005bd +75445039ns 1355639 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae3b PA:1c00ae3b +75445059ns 1355640 1c000e82 fff60613 addi x12, x12, -1 x12=000005bc x12:000005bd +75445079ns 1355641 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae3c x6:1c00ae3b +75445099ns 1355642 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005bc +75445178ns 1355646 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae3c PA:1c00ae3c +75445198ns 1355647 1c000e82 fff60613 addi x12, x12, -1 x12=000005bb x12:000005bc +75445217ns 1355648 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae3d x6:1c00ae3c +75445237ns 1355649 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005bb +75445316ns 1355653 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae3d PA:1c00ae3d +75445336ns 1355654 1c000e82 fff60613 addi x12, x12, -1 x12=000005ba x12:000005bb +75445356ns 1355655 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae3e x6:1c00ae3d +75445376ns 1355656 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005ba +75445455ns 1355660 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae3e PA:1c00ae3e +75445475ns 1355661 1c000e82 fff60613 addi x12, x12, -1 x12=000005b9 x12:000005ba +75445494ns 1355662 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae3f x6:1c00ae3e +75445514ns 1355663 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005b9 +75445593ns 1355667 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae3f PA:1c00ae3f +75445613ns 1355668 1c000e82 fff60613 addi x12, x12, -1 x12=000005b8 x12:000005b9 +75445633ns 1355669 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae40 x6:1c00ae3f +75445653ns 1355670 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005b8 +75445732ns 1355674 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae40 PA:1c00ae40 +75445752ns 1355675 1c000e82 fff60613 addi x12, x12, -1 x12=000005b7 x12:000005b8 +75445772ns 1355676 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae41 x6:1c00ae40 +75445791ns 1355677 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005b7 +75445871ns 1355681 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae41 PA:1c00ae41 +75445890ns 1355682 1c000e82 fff60613 addi x12, x12, -1 x12=000005b6 x12:000005b7 +75445910ns 1355683 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae42 x6:1c00ae41 +75445930ns 1355684 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005b6 +75446009ns 1355688 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae42 PA:1c00ae42 +75446029ns 1355689 1c000e82 fff60613 addi x12, x12, -1 x12=000005b5 x12:000005b6 +75446049ns 1355690 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae43 x6:1c00ae42 +75446068ns 1355691 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005b5 +75446148ns 1355695 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae43 PA:1c00ae43 +75446167ns 1355696 1c000e82 fff60613 addi x12, x12, -1 x12=000005b4 x12:000005b5 +75446187ns 1355697 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae44 x6:1c00ae43 +75446207ns 1355698 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005b4 +75446286ns 1355702 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae44 PA:1c00ae44 +75446306ns 1355703 1c000e82 fff60613 addi x12, x12, -1 x12=000005b3 x12:000005b4 +75446326ns 1355704 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae45 x6:1c00ae44 +75446346ns 1355705 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005b3 +75446425ns 1355709 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae45 PA:1c00ae45 +75446444ns 1355710 1c000e82 fff60613 addi x12, x12, -1 x12=000005b2 x12:000005b3 +75446464ns 1355711 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae46 x6:1c00ae45 +75446484ns 1355712 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005b2 +75446563ns 1355716 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae46 PA:1c00ae46 +75446583ns 1355717 1c000e82 fff60613 addi x12, x12, -1 x12=000005b1 x12:000005b2 +75446603ns 1355718 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae47 x6:1c00ae46 +75446623ns 1355719 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005b1 +75446702ns 1355723 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae47 PA:1c00ae47 +75446722ns 1355724 1c000e82 fff60613 addi x12, x12, -1 x12=000005b0 x12:000005b1 +75446741ns 1355725 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae48 x6:1c00ae47 +75446761ns 1355726 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005b0 +75446840ns 1355730 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae48 PA:1c00ae48 +75446860ns 1355731 1c000e82 fff60613 addi x12, x12, -1 x12=000005af x12:000005b0 +75446880ns 1355732 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae49 x6:1c00ae48 +75446900ns 1355733 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005af +75446979ns 1355737 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae49 PA:1c00ae49 +75446999ns 1355738 1c000e82 fff60613 addi x12, x12, -1 x12=000005ae x12:000005af +75447018ns 1355739 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae4a x6:1c00ae49 +75447038ns 1355740 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005ae +75447117ns 1355744 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae4a PA:1c00ae4a +75447137ns 1355745 1c000e82 fff60613 addi x12, x12, -1 x12=000005ad x12:000005ae +75447157ns 1355746 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae4b x6:1c00ae4a +75447177ns 1355747 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005ad +75447256ns 1355751 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae4b PA:1c00ae4b +75447276ns 1355752 1c000e82 fff60613 addi x12, x12, -1 x12=000005ac x12:000005ad +75447296ns 1355753 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae4c x6:1c00ae4b +75447315ns 1355754 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005ac +75447394ns 1355758 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae4c PA:1c00ae4c +75447414ns 1355759 1c000e82 fff60613 addi x12, x12, -1 x12=000005ab x12:000005ac +75447434ns 1355760 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae4d x6:1c00ae4c +75447454ns 1355761 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005ab +75447533ns 1355765 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae4d PA:1c00ae4d +75447553ns 1355766 1c000e82 fff60613 addi x12, x12, -1 x12=000005aa x12:000005ab +75447573ns 1355767 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae4e x6:1c00ae4d +75447592ns 1355768 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005aa +75447672ns 1355772 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae4e PA:1c00ae4e +75447691ns 1355773 1c000e82 fff60613 addi x12, x12, -1 x12=000005a9 x12:000005aa +75447711ns 1355774 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae4f x6:1c00ae4e +75447731ns 1355775 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005a9 +75447810ns 1355779 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae4f PA:1c00ae4f +75447830ns 1355780 1c000e82 fff60613 addi x12, x12, -1 x12=000005a8 x12:000005a9 +75447850ns 1355781 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae50 x6:1c00ae4f +75447869ns 1355782 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005a8 +75447949ns 1355786 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae50 PA:1c00ae50 +75447968ns 1355787 1c000e82 fff60613 addi x12, x12, -1 x12=000005a7 x12:000005a8 +75447988ns 1355788 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae51 x6:1c00ae50 +75448008ns 1355789 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005a7 +75448087ns 1355793 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae51 PA:1c00ae51 +75448107ns 1355794 1c000e82 fff60613 addi x12, x12, -1 x12=000005a6 x12:000005a7 +75448127ns 1355795 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae52 x6:1c00ae51 +75448147ns 1355796 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005a6 +75448226ns 1355800 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae52 PA:1c00ae52 +75448246ns 1355801 1c000e82 fff60613 addi x12, x12, -1 x12=000005a5 x12:000005a6 +75448265ns 1355802 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae53 x6:1c00ae52 +75448285ns 1355803 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005a5 +75448364ns 1355807 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae53 PA:1c00ae53 +75448384ns 1355808 1c000e82 fff60613 addi x12, x12, -1 x12=000005a4 x12:000005a5 +75448404ns 1355809 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae54 x6:1c00ae53 +75448424ns 1355810 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005a4 +75448503ns 1355814 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae54 PA:1c00ae54 +75448523ns 1355815 1c000e82 fff60613 addi x12, x12, -1 x12=000005a3 x12:000005a4 +75448542ns 1355816 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae55 x6:1c00ae54 +75448562ns 1355817 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005a3 +75448641ns 1355821 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae55 PA:1c00ae55 +75448661ns 1355822 1c000e82 fff60613 addi x12, x12, -1 x12=000005a2 x12:000005a3 +75448681ns 1355823 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae56 x6:1c00ae55 +75448701ns 1355824 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005a2 +75448780ns 1355828 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae56 PA:1c00ae56 +75448800ns 1355829 1c000e82 fff60613 addi x12, x12, -1 x12=000005a1 x12:000005a2 +75448820ns 1355830 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae57 x6:1c00ae56 +75448839ns 1355831 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005a1 +75448918ns 1355835 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae57 PA:1c00ae57 +75448938ns 1355836 1c000e82 fff60613 addi x12, x12, -1 x12=000005a0 x12:000005a1 +75448958ns 1355837 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae58 x6:1c00ae57 +75448978ns 1355838 1c000e86 fe061ce3 bne x12, x0, -8 x12:000005a0 +75449057ns 1355842 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae58 PA:1c00ae58 +75449077ns 1355843 1c000e82 fff60613 addi x12, x12, -1 x12=0000059f x12:000005a0 +75449097ns 1355844 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae59 x6:1c00ae58 +75449116ns 1355845 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000059f +75449196ns 1355849 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae59 PA:1c00ae59 +75449215ns 1355850 1c000e82 fff60613 addi x12, x12, -1 x12=0000059e x12:0000059f +75449235ns 1355851 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae5a x6:1c00ae59 +75449255ns 1355852 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000059e +75449334ns 1355856 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae5a PA:1c00ae5a +75449354ns 1355857 1c000e82 fff60613 addi x12, x12, -1 x12=0000059d x12:0000059e +75449374ns 1355858 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae5b x6:1c00ae5a +75449393ns 1355859 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000059d +75449473ns 1355863 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae5b PA:1c00ae5b +75449492ns 1355864 1c000e82 fff60613 addi x12, x12, -1 x12=0000059c x12:0000059d +75449512ns 1355865 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae5c x6:1c00ae5b +75449532ns 1355866 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000059c +75449611ns 1355870 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae5c PA:1c00ae5c +75449631ns 1355871 1c000e82 fff60613 addi x12, x12, -1 x12=0000059b x12:0000059c +75449651ns 1355872 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae5d x6:1c00ae5c +75449671ns 1355873 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000059b +75449750ns 1355877 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae5d PA:1c00ae5d +75449770ns 1355878 1c000e82 fff60613 addi x12, x12, -1 x12=0000059a x12:0000059b +75449789ns 1355879 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae5e x6:1c00ae5d +75449809ns 1355880 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000059a +75449888ns 1355884 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae5e PA:1c00ae5e +75449908ns 1355885 1c000e82 fff60613 addi x12, x12, -1 x12=00000599 x12:0000059a +75449928ns 1355886 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae5f x6:1c00ae5e +75449948ns 1355887 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000599 +75450027ns 1355891 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae5f PA:1c00ae5f +75450047ns 1355892 1c000e82 fff60613 addi x12, x12, -1 x12=00000598 x12:00000599 +75450066ns 1355893 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae60 x6:1c00ae5f +75450086ns 1355894 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000598 +75450165ns 1355898 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae60 PA:1c00ae60 +75450185ns 1355899 1c000e82 fff60613 addi x12, x12, -1 x12=00000597 x12:00000598 +75450205ns 1355900 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae61 x6:1c00ae60 +75450225ns 1355901 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000597 +75450304ns 1355905 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae61 PA:1c00ae61 +75450324ns 1355906 1c000e82 fff60613 addi x12, x12, -1 x12=00000596 x12:00000597 +75450343ns 1355907 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae62 x6:1c00ae61 +75450363ns 1355908 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000596 +75450442ns 1355912 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae62 PA:1c00ae62 +75450462ns 1355913 1c000e82 fff60613 addi x12, x12, -1 x12=00000595 x12:00000596 +75450482ns 1355914 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae63 x6:1c00ae62 +75450502ns 1355915 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000595 +75450581ns 1355919 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae63 PA:1c00ae63 +75450601ns 1355920 1c000e82 fff60613 addi x12, x12, -1 x12=00000594 x12:00000595 +75450621ns 1355921 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae64 x6:1c00ae63 +75450640ns 1355922 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000594 +75450720ns 1355926 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae64 PA:1c00ae64 +75450739ns 1355927 1c000e82 fff60613 addi x12, x12, -1 x12=00000593 x12:00000594 +75450759ns 1355928 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae65 x6:1c00ae64 +75450779ns 1355929 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000593 +75450858ns 1355933 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae65 PA:1c00ae65 +75450878ns 1355934 1c000e82 fff60613 addi x12, x12, -1 x12=00000592 x12:00000593 +75450898ns 1355935 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae66 x6:1c00ae65 +75450917ns 1355936 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000592 +75450997ns 1355940 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae66 PA:1c00ae66 +75451016ns 1355941 1c000e82 fff60613 addi x12, x12, -1 x12=00000591 x12:00000592 +75451036ns 1355942 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae67 x6:1c00ae66 +75451056ns 1355943 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000591 +75451135ns 1355947 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae67 PA:1c00ae67 +75451155ns 1355948 1c000e82 fff60613 addi x12, x12, -1 x12=00000590 x12:00000591 +75451175ns 1355949 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae68 x6:1c00ae67 +75451195ns 1355950 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000590 +75451274ns 1355954 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae68 PA:1c00ae68 +75451294ns 1355955 1c000e82 fff60613 addi x12, x12, -1 x12=0000058f x12:00000590 +75451313ns 1355956 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae69 x6:1c00ae68 +75451333ns 1355957 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000058f +75451412ns 1355961 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae69 PA:1c00ae69 +75451432ns 1355962 1c000e82 fff60613 addi x12, x12, -1 x12=0000058e x12:0000058f +75451452ns 1355963 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae6a x6:1c00ae69 +75451472ns 1355964 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000058e +75451551ns 1355968 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae6a PA:1c00ae6a +75451571ns 1355969 1c000e82 fff60613 addi x12, x12, -1 x12=0000058d x12:0000058e +75451590ns 1355970 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae6b x6:1c00ae6a +75451610ns 1355971 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000058d +75451689ns 1355975 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae6b PA:1c00ae6b +75451709ns 1355976 1c000e82 fff60613 addi x12, x12, -1 x12=0000058c x12:0000058d +75451729ns 1355977 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae6c x6:1c00ae6b +75451749ns 1355978 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000058c +75451828ns 1355982 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae6c PA:1c00ae6c +75451848ns 1355983 1c000e82 fff60613 addi x12, x12, -1 x12=0000058b x12:0000058c +75451867ns 1355984 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae6d x6:1c00ae6c +75451887ns 1355985 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000058b +75451966ns 1355989 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae6d PA:1c00ae6d +75451986ns 1355990 1c000e82 fff60613 addi x12, x12, -1 x12=0000058a x12:0000058b +75452006ns 1355991 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae6e x6:1c00ae6d +75452026ns 1355992 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000058a +75452105ns 1355996 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae6e PA:1c00ae6e +75452125ns 1355997 1c000e82 fff60613 addi x12, x12, -1 x12=00000589 x12:0000058a +75452145ns 1355998 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae6f x6:1c00ae6e +75452164ns 1355999 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000589 +75452244ns 1356003 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae6f PA:1c00ae6f +75452263ns 1356004 1c000e82 fff60613 addi x12, x12, -1 x12=00000588 x12:00000589 +75452283ns 1356005 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae70 x6:1c00ae6f +75452303ns 1356006 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000588 +75452382ns 1356010 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae70 PA:1c00ae70 +75452402ns 1356011 1c000e82 fff60613 addi x12, x12, -1 x12=00000587 x12:00000588 +75452422ns 1356012 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae71 x6:1c00ae70 +75452441ns 1356013 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000587 +75452521ns 1356017 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae71 PA:1c00ae71 +75452540ns 1356018 1c000e82 fff60613 addi x12, x12, -1 x12=00000586 x12:00000587 +75452560ns 1356019 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae72 x6:1c00ae71 +75452580ns 1356020 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000586 +75452659ns 1356024 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae72 PA:1c00ae72 +75452679ns 1356025 1c000e82 fff60613 addi x12, x12, -1 x12=00000585 x12:00000586 +75452699ns 1356026 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae73 x6:1c00ae72 +75452719ns 1356027 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000585 +75452798ns 1356031 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae73 PA:1c00ae73 +75452817ns 1356032 1c000e82 fff60613 addi x12, x12, -1 x12=00000584 x12:00000585 +75452837ns 1356033 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae74 x6:1c00ae73 +75452857ns 1356034 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000584 +75452936ns 1356038 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae74 PA:1c00ae74 +75452956ns 1356039 1c000e82 fff60613 addi x12, x12, -1 x12=00000583 x12:00000584 +75452976ns 1356040 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae75 x6:1c00ae74 +75452996ns 1356041 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000583 +75453075ns 1356045 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae75 PA:1c00ae75 +75453095ns 1356046 1c000e82 fff60613 addi x12, x12, -1 x12=00000582 x12:00000583 +75453114ns 1356047 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae76 x6:1c00ae75 +75453134ns 1356048 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000582 +75453213ns 1356052 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae76 PA:1c00ae76 +75453233ns 1356053 1c000e82 fff60613 addi x12, x12, -1 x12=00000581 x12:00000582 +75453253ns 1356054 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae77 x6:1c00ae76 +75453273ns 1356055 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000581 +75453352ns 1356059 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae77 PA:1c00ae77 +75453372ns 1356060 1c000e82 fff60613 addi x12, x12, -1 x12=00000580 x12:00000581 +75453391ns 1356061 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae78 x6:1c00ae77 +75453411ns 1356062 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000580 +75453490ns 1356066 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae78 PA:1c00ae78 +75453510ns 1356067 1c000e82 fff60613 addi x12, x12, -1 x12=0000057f x12:00000580 +75453530ns 1356068 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae79 x6:1c00ae78 +75453550ns 1356069 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000057f +75453629ns 1356073 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae79 PA:1c00ae79 +75453649ns 1356074 1c000e82 fff60613 addi x12, x12, -1 x12=0000057e x12:0000057f +75453669ns 1356075 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae7a x6:1c00ae79 +75453688ns 1356076 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000057e +75453768ns 1356080 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae7a PA:1c00ae7a +75453787ns 1356081 1c000e82 fff60613 addi x12, x12, -1 x12=0000057d x12:0000057e +75453807ns 1356082 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae7b x6:1c00ae7a +75453827ns 1356083 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000057d +75453906ns 1356087 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae7b PA:1c00ae7b +75453926ns 1356088 1c000e82 fff60613 addi x12, x12, -1 x12=0000057c x12:0000057d +75453946ns 1356089 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae7c x6:1c00ae7b +75453965ns 1356090 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000057c +75454045ns 1356094 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae7c PA:1c00ae7c +75454064ns 1356095 1c000e82 fff60613 addi x12, x12, -1 x12=0000057b x12:0000057c +75454084ns 1356096 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae7d x6:1c00ae7c +75454104ns 1356097 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000057b +75454183ns 1356101 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae7d PA:1c00ae7d +75454203ns 1356102 1c000e82 fff60613 addi x12, x12, -1 x12=0000057a x12:0000057b +75454223ns 1356103 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae7e x6:1c00ae7d +75454243ns 1356104 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000057a +75454322ns 1356108 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae7e PA:1c00ae7e +75454341ns 1356109 1c000e82 fff60613 addi x12, x12, -1 x12=00000579 x12:0000057a +75454361ns 1356110 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae7f x6:1c00ae7e +75454381ns 1356111 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000579 +75454460ns 1356115 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae7f PA:1c00ae7f +75454480ns 1356116 1c000e82 fff60613 addi x12, x12, -1 x12=00000578 x12:00000579 +75454500ns 1356117 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae80 x6:1c00ae7f +75454520ns 1356118 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000578 +75454599ns 1356122 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae80 PA:1c00ae80 +75454619ns 1356123 1c000e82 fff60613 addi x12, x12, -1 x12=00000577 x12:00000578 +75454638ns 1356124 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae81 x6:1c00ae80 +75454658ns 1356125 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000577 +75454737ns 1356129 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae81 PA:1c00ae81 +75454757ns 1356130 1c000e82 fff60613 addi x12, x12, -1 x12=00000576 x12:00000577 +75454777ns 1356131 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae82 x6:1c00ae81 +75454797ns 1356132 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000576 +75454876ns 1356136 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae82 PA:1c00ae82 +75454896ns 1356137 1c000e82 fff60613 addi x12, x12, -1 x12=00000575 x12:00000576 +75454915ns 1356138 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae83 x6:1c00ae82 +75454935ns 1356139 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000575 +75455014ns 1356143 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae83 PA:1c00ae83 +75455034ns 1356144 1c000e82 fff60613 addi x12, x12, -1 x12=00000574 x12:00000575 +75455054ns 1356145 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae84 x6:1c00ae83 +75455074ns 1356146 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000574 +75455153ns 1356150 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae84 PA:1c00ae84 +75455173ns 1356151 1c000e82 fff60613 addi x12, x12, -1 x12=00000573 x12:00000574 +75455193ns 1356152 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae85 x6:1c00ae84 +75455212ns 1356153 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000573 +75455291ns 1356157 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae85 PA:1c00ae85 +75455311ns 1356158 1c000e82 fff60613 addi x12, x12, -1 x12=00000572 x12:00000573 +75455331ns 1356159 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae86 x6:1c00ae85 +75455351ns 1356160 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000572 +75455430ns 1356164 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae86 PA:1c00ae86 +75455450ns 1356165 1c000e82 fff60613 addi x12, x12, -1 x12=00000571 x12:00000572 +75455470ns 1356166 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae87 x6:1c00ae86 +75455489ns 1356167 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000571 +75455569ns 1356171 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae87 PA:1c00ae87 +75455588ns 1356172 1c000e82 fff60613 addi x12, x12, -1 x12=00000570 x12:00000571 +75455608ns 1356173 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae88 x6:1c00ae87 +75455628ns 1356174 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000570 +75455707ns 1356178 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae88 PA:1c00ae88 +75455727ns 1356179 1c000e82 fff60613 addi x12, x12, -1 x12=0000056f x12:00000570 +75455747ns 1356180 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae89 x6:1c00ae88 +75455767ns 1356181 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000056f +75455846ns 1356185 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae89 PA:1c00ae89 +75455865ns 1356186 1c000e82 fff60613 addi x12, x12, -1 x12=0000056e x12:0000056f +75455885ns 1356187 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae8a x6:1c00ae89 +75455905ns 1356188 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000056e +75455984ns 1356192 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae8a PA:1c00ae8a +75456004ns 1356193 1c000e82 fff60613 addi x12, x12, -1 x12=0000056d x12:0000056e +75456024ns 1356194 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae8b x6:1c00ae8a +75456044ns 1356195 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000056d +75456123ns 1356199 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae8b PA:1c00ae8b +75456143ns 1356200 1c000e82 fff60613 addi x12, x12, -1 x12=0000056c x12:0000056d +75456162ns 1356201 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae8c x6:1c00ae8b +75456182ns 1356202 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000056c +75456261ns 1356206 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae8c PA:1c00ae8c +75456281ns 1356207 1c000e82 fff60613 addi x12, x12, -1 x12=0000056b x12:0000056c +75456301ns 1356208 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae8d x6:1c00ae8c +75456321ns 1356209 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000056b +75456400ns 1356213 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae8d PA:1c00ae8d +75456420ns 1356214 1c000e82 fff60613 addi x12, x12, -1 x12=0000056a x12:0000056b +75456439ns 1356215 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae8e x6:1c00ae8d +75456459ns 1356216 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000056a +75456538ns 1356220 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae8e PA:1c00ae8e +75456558ns 1356221 1c000e82 fff60613 addi x12, x12, -1 x12=00000569 x12:0000056a +75456578ns 1356222 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae8f x6:1c00ae8e +75456598ns 1356223 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000569 +75456677ns 1356227 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae8f PA:1c00ae8f +75456697ns 1356228 1c000e82 fff60613 addi x12, x12, -1 x12=00000568 x12:00000569 +75456717ns 1356229 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae90 x6:1c00ae8f +75456736ns 1356230 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000568 +75456815ns 1356234 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae90 PA:1c00ae90 +75456835ns 1356235 1c000e82 fff60613 addi x12, x12, -1 x12=00000567 x12:00000568 +75456855ns 1356236 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae91 x6:1c00ae90 +75456875ns 1356237 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000567 +75456954ns 1356241 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae91 PA:1c00ae91 +75456974ns 1356242 1c000e82 fff60613 addi x12, x12, -1 x12=00000566 x12:00000567 +75456994ns 1356243 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae92 x6:1c00ae91 +75457013ns 1356244 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000566 +75457093ns 1356248 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae92 PA:1c00ae92 +75457112ns 1356249 1c000e82 fff60613 addi x12, x12, -1 x12=00000565 x12:00000566 +75457132ns 1356250 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae93 x6:1c00ae92 +75457152ns 1356251 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000565 +75457231ns 1356255 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae93 PA:1c00ae93 +75457251ns 1356256 1c000e82 fff60613 addi x12, x12, -1 x12=00000564 x12:00000565 +75457271ns 1356257 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae94 x6:1c00ae93 +75457290ns 1356258 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000564 +75457370ns 1356262 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae94 PA:1c00ae94 +75457389ns 1356263 1c000e82 fff60613 addi x12, x12, -1 x12=00000563 x12:00000564 +75457409ns 1356264 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae95 x6:1c00ae94 +75457429ns 1356265 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000563 +75457508ns 1356269 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae95 PA:1c00ae95 +75457528ns 1356270 1c000e82 fff60613 addi x12, x12, -1 x12=00000562 x12:00000563 +75457548ns 1356271 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae96 x6:1c00ae95 +75457568ns 1356272 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000562 +75457647ns 1356276 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae96 PA:1c00ae96 +75457667ns 1356277 1c000e82 fff60613 addi x12, x12, -1 x12=00000561 x12:00000562 +75457686ns 1356278 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae97 x6:1c00ae96 +75457706ns 1356279 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000561 +75457785ns 1356283 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae97 PA:1c00ae97 +75457805ns 1356284 1c000e82 fff60613 addi x12, x12, -1 x12=00000560 x12:00000561 +75457825ns 1356285 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae98 x6:1c00ae97 +75457845ns 1356286 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000560 +75457924ns 1356290 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae98 PA:1c00ae98 +75457944ns 1356291 1c000e82 fff60613 addi x12, x12, -1 x12=0000055f x12:00000560 +75457963ns 1356292 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae99 x6:1c00ae98 +75457983ns 1356293 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000055f +75458062ns 1356297 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae99 PA:1c00ae99 +75458082ns 1356298 1c000e82 fff60613 addi x12, x12, -1 x12=0000055e x12:0000055f +75458102ns 1356299 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae9a x6:1c00ae99 +75458122ns 1356300 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000055e +75458201ns 1356304 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae9a PA:1c00ae9a +75458221ns 1356305 1c000e82 fff60613 addi x12, x12, -1 x12=0000055d x12:0000055e +75458241ns 1356306 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae9b x6:1c00ae9a +75458260ns 1356307 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000055d +75458339ns 1356311 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae9b PA:1c00ae9b +75458359ns 1356312 1c000e82 fff60613 addi x12, x12, -1 x12=0000055c x12:0000055d +75458379ns 1356313 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae9c x6:1c00ae9b +75458399ns 1356314 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000055c +75458478ns 1356318 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae9c PA:1c00ae9c +75458498ns 1356319 1c000e82 fff60613 addi x12, x12, -1 x12=0000055b x12:0000055c +75458518ns 1356320 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae9d x6:1c00ae9c +75458537ns 1356321 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000055b +75458617ns 1356325 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae9d PA:1c00ae9d +75458636ns 1356326 1c000e82 fff60613 addi x12, x12, -1 x12=0000055a x12:0000055b +75458656ns 1356327 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae9e x6:1c00ae9d +75458676ns 1356328 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000055a +75458755ns 1356332 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae9e PA:1c00ae9e +75458775ns 1356333 1c000e82 fff60613 addi x12, x12, -1 x12=00000559 x12:0000055a +75458795ns 1356334 1c000e84 00130313 addi x6, x6, 1 x6=1c00ae9f x6:1c00ae9e +75458814ns 1356335 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000559 +75458894ns 1356339 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00ae9f PA:1c00ae9f +75458913ns 1356340 1c000e82 fff60613 addi x12, x12, -1 x12=00000558 x12:00000559 +75458933ns 1356341 1c000e84 00130313 addi x6, x6, 1 x6=1c00aea0 x6:1c00ae9f +75458953ns 1356342 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000558 +75459032ns 1356346 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aea0 PA:1c00aea0 +75459052ns 1356347 1c000e82 fff60613 addi x12, x12, -1 x12=00000557 x12:00000558 +75459072ns 1356348 1c000e84 00130313 addi x6, x6, 1 x6=1c00aea1 x6:1c00aea0 +75459092ns 1356349 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000557 +75459171ns 1356353 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aea1 PA:1c00aea1 +75459191ns 1356354 1c000e82 fff60613 addi x12, x12, -1 x12=00000556 x12:00000557 +75459210ns 1356355 1c000e84 00130313 addi x6, x6, 1 x6=1c00aea2 x6:1c00aea1 +75459230ns 1356356 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000556 +75459309ns 1356360 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aea2 PA:1c00aea2 +75459329ns 1356361 1c000e82 fff60613 addi x12, x12, -1 x12=00000555 x12:00000556 +75459349ns 1356362 1c000e84 00130313 addi x6, x6, 1 x6=1c00aea3 x6:1c00aea2 +75459369ns 1356363 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000555 +75459448ns 1356367 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aea3 PA:1c00aea3 +75459468ns 1356368 1c000e82 fff60613 addi x12, x12, -1 x12=00000554 x12:00000555 +75459487ns 1356369 1c000e84 00130313 addi x6, x6, 1 x6=1c00aea4 x6:1c00aea3 +75459507ns 1356370 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000554 +75459586ns 1356374 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aea4 PA:1c00aea4 +75459606ns 1356375 1c000e82 fff60613 addi x12, x12, -1 x12=00000553 x12:00000554 +75459626ns 1356376 1c000e84 00130313 addi x6, x6, 1 x6=1c00aea5 x6:1c00aea4 +75459646ns 1356377 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000553 +75459725ns 1356381 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aea5 PA:1c00aea5 +75459745ns 1356382 1c000e82 fff60613 addi x12, x12, -1 x12=00000552 x12:00000553 +75459764ns 1356383 1c000e84 00130313 addi x6, x6, 1 x6=1c00aea6 x6:1c00aea5 +75459784ns 1356384 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000552 +75459863ns 1356388 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aea6 PA:1c00aea6 +75459883ns 1356389 1c000e82 fff60613 addi x12, x12, -1 x12=00000551 x12:00000552 +75459903ns 1356390 1c000e84 00130313 addi x6, x6, 1 x6=1c00aea7 x6:1c00aea6 +75459923ns 1356391 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000551 +75460002ns 1356395 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aea7 PA:1c00aea7 +75460022ns 1356396 1c000e82 fff60613 addi x12, x12, -1 x12=00000550 x12:00000551 +75460042ns 1356397 1c000e84 00130313 addi x6, x6, 1 x6=1c00aea8 x6:1c00aea7 +75460061ns 1356398 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000550 +75460141ns 1356402 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aea8 PA:1c00aea8 +75460160ns 1356403 1c000e82 fff60613 addi x12, x12, -1 x12=0000054f x12:00000550 +75460180ns 1356404 1c000e84 00130313 addi x6, x6, 1 x6=1c00aea9 x6:1c00aea8 +75460200ns 1356405 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000054f +75460279ns 1356409 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aea9 PA:1c00aea9 +75460299ns 1356410 1c000e82 fff60613 addi x12, x12, -1 x12=0000054e x12:0000054f +75460319ns 1356411 1c000e84 00130313 addi x6, x6, 1 x6=1c00aeaa x6:1c00aea9 +75460338ns 1356412 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000054e +75460418ns 1356416 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aeaa PA:1c00aeaa +75460437ns 1356417 1c000e82 fff60613 addi x12, x12, -1 x12=0000054d x12:0000054e +75460457ns 1356418 1c000e84 00130313 addi x6, x6, 1 x6=1c00aeab x6:1c00aeaa +75460477ns 1356419 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000054d +75460556ns 1356423 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aeab PA:1c00aeab +75460576ns 1356424 1c000e82 fff60613 addi x12, x12, -1 x12=0000054c x12:0000054d +75460596ns 1356425 1c000e84 00130313 addi x6, x6, 1 x6=1c00aeac x6:1c00aeab +75460616ns 1356426 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000054c +75460695ns 1356430 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aeac PA:1c00aeac +75460715ns 1356431 1c000e82 fff60613 addi x12, x12, -1 x12=0000054b x12:0000054c +75460734ns 1356432 1c000e84 00130313 addi x6, x6, 1 x6=1c00aead x6:1c00aeac +75460754ns 1356433 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000054b +75460833ns 1356437 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aead PA:1c00aead +75460853ns 1356438 1c000e82 fff60613 addi x12, x12, -1 x12=0000054a x12:0000054b +75460873ns 1356439 1c000e84 00130313 addi x6, x6, 1 x6=1c00aeae x6:1c00aead +75460893ns 1356440 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000054a +75460972ns 1356444 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aeae PA:1c00aeae +75460992ns 1356445 1c000e82 fff60613 addi x12, x12, -1 x12=00000549 x12:0000054a +75461011ns 1356446 1c000e84 00130313 addi x6, x6, 1 x6=1c00aeaf x6:1c00aeae +75461031ns 1356447 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000549 +75461110ns 1356451 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aeaf PA:1c00aeaf +75461130ns 1356452 1c000e82 fff60613 addi x12, x12, -1 x12=00000548 x12:00000549 +75461150ns 1356453 1c000e84 00130313 addi x6, x6, 1 x6=1c00aeb0 x6:1c00aeaf +75461170ns 1356454 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000548 +75461249ns 1356458 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aeb0 PA:1c00aeb0 +75461269ns 1356459 1c000e82 fff60613 addi x12, x12, -1 x12=00000547 x12:00000548 +75461288ns 1356460 1c000e84 00130313 addi x6, x6, 1 x6=1c00aeb1 x6:1c00aeb0 +75461308ns 1356461 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000547 +75461387ns 1356465 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aeb1 PA:1c00aeb1 +75461407ns 1356466 1c000e82 fff60613 addi x12, x12, -1 x12=00000546 x12:00000547 +75461427ns 1356467 1c000e84 00130313 addi x6, x6, 1 x6=1c00aeb2 x6:1c00aeb1 +75461447ns 1356468 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000546 +75461526ns 1356472 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aeb2 PA:1c00aeb2 +75461546ns 1356473 1c000e82 fff60613 addi x12, x12, -1 x12=00000545 x12:00000546 +75461566ns 1356474 1c000e84 00130313 addi x6, x6, 1 x6=1c00aeb3 x6:1c00aeb2 +75461585ns 1356475 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000545 +75461665ns 1356479 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aeb3 PA:1c00aeb3 +75461684ns 1356480 1c000e82 fff60613 addi x12, x12, -1 x12=00000544 x12:00000545 +75461704ns 1356481 1c000e84 00130313 addi x6, x6, 1 x6=1c00aeb4 x6:1c00aeb3 +75461724ns 1356482 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000544 +75461803ns 1356486 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aeb4 PA:1c00aeb4 +75461823ns 1356487 1c000e82 fff60613 addi x12, x12, -1 x12=00000543 x12:00000544 +75461843ns 1356488 1c000e84 00130313 addi x6, x6, 1 x6=1c00aeb5 x6:1c00aeb4 +75461862ns 1356489 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000543 +75461942ns 1356493 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aeb5 PA:1c00aeb5 +75461961ns 1356494 1c000e82 fff60613 addi x12, x12, -1 x12=00000542 x12:00000543 +75461981ns 1356495 1c000e84 00130313 addi x6, x6, 1 x6=1c00aeb6 x6:1c00aeb5 +75462001ns 1356496 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000542 +75462080ns 1356500 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aeb6 PA:1c00aeb6 +75462100ns 1356501 1c000e82 fff60613 addi x12, x12, -1 x12=00000541 x12:00000542 +75462120ns 1356502 1c000e84 00130313 addi x6, x6, 1 x6=1c00aeb7 x6:1c00aeb6 +75462140ns 1356503 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000541 +75462219ns 1356507 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aeb7 PA:1c00aeb7 +75462238ns 1356508 1c000e82 fff60613 addi x12, x12, -1 x12=00000540 x12:00000541 +75462258ns 1356509 1c000e84 00130313 addi x6, x6, 1 x6=1c00aeb8 x6:1c00aeb7 +75462278ns 1356510 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000540 +75462357ns 1356514 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aeb8 PA:1c00aeb8 +75462377ns 1356515 1c000e82 fff60613 addi x12, x12, -1 x12=0000053f x12:00000540 +75462397ns 1356516 1c000e84 00130313 addi x6, x6, 1 x6=1c00aeb9 x6:1c00aeb8 +75462417ns 1356517 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000053f +75462496ns 1356521 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aeb9 PA:1c00aeb9 +75462516ns 1356522 1c000e82 fff60613 addi x12, x12, -1 x12=0000053e x12:0000053f +75462535ns 1356523 1c000e84 00130313 addi x6, x6, 1 x6=1c00aeba x6:1c00aeb9 +75462555ns 1356524 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000053e +75462634ns 1356528 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aeba PA:1c00aeba +75462654ns 1356529 1c000e82 fff60613 addi x12, x12, -1 x12=0000053d x12:0000053e +75462674ns 1356530 1c000e84 00130313 addi x6, x6, 1 x6=1c00aebb x6:1c00aeba +75462694ns 1356531 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000053d +75462773ns 1356535 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aebb PA:1c00aebb +75462793ns 1356536 1c000e82 fff60613 addi x12, x12, -1 x12=0000053c x12:0000053d +75462812ns 1356537 1c000e84 00130313 addi x6, x6, 1 x6=1c00aebc x6:1c00aebb +75462832ns 1356538 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000053c +75462911ns 1356542 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aebc PA:1c00aebc +75462931ns 1356543 1c000e82 fff60613 addi x12, x12, -1 x12=0000053b x12:0000053c +75462951ns 1356544 1c000e84 00130313 addi x6, x6, 1 x6=1c00aebd x6:1c00aebc +75462971ns 1356545 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000053b +75463050ns 1356549 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aebd PA:1c00aebd +75463070ns 1356550 1c000e82 fff60613 addi x12, x12, -1 x12=0000053a x12:0000053b +75463090ns 1356551 1c000e84 00130313 addi x6, x6, 1 x6=1c00aebe x6:1c00aebd +75463109ns 1356552 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000053a +75463189ns 1356556 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aebe PA:1c00aebe +75463208ns 1356557 1c000e82 fff60613 addi x12, x12, -1 x12=00000539 x12:0000053a +75463228ns 1356558 1c000e84 00130313 addi x6, x6, 1 x6=1c00aebf x6:1c00aebe +75463248ns 1356559 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000539 +75463327ns 1356563 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aebf PA:1c00aebf +75463347ns 1356564 1c000e82 fff60613 addi x12, x12, -1 x12=00000538 x12:00000539 +75463367ns 1356565 1c000e84 00130313 addi x6, x6, 1 x6=1c00aec0 x6:1c00aebf +75463386ns 1356566 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000538 +75463466ns 1356570 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aec0 PA:1c00aec0 +75463485ns 1356571 1c000e82 fff60613 addi x12, x12, -1 x12=00000537 x12:00000538 +75463505ns 1356572 1c000e84 00130313 addi x6, x6, 1 x6=1c00aec1 x6:1c00aec0 +75463525ns 1356573 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000537 +75463604ns 1356577 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aec1 PA:1c00aec1 +75463624ns 1356578 1c000e82 fff60613 addi x12, x12, -1 x12=00000536 x12:00000537 +75463644ns 1356579 1c000e84 00130313 addi x6, x6, 1 x6=1c00aec2 x6:1c00aec1 +75463664ns 1356580 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000536 +75463743ns 1356584 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aec2 PA:1c00aec2 +75463762ns 1356585 1c000e82 fff60613 addi x12, x12, -1 x12=00000535 x12:00000536 +75463782ns 1356586 1c000e84 00130313 addi x6, x6, 1 x6=1c00aec3 x6:1c00aec2 +75463802ns 1356587 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000535 +75463881ns 1356591 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aec3 PA:1c00aec3 +75463901ns 1356592 1c000e82 fff60613 addi x12, x12, -1 x12=00000534 x12:00000535 +75463921ns 1356593 1c000e84 00130313 addi x6, x6, 1 x6=1c00aec4 x6:1c00aec3 +75463941ns 1356594 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000534 +75464020ns 1356598 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aec4 PA:1c00aec4 +75464040ns 1356599 1c000e82 fff60613 addi x12, x12, -1 x12=00000533 x12:00000534 +75464059ns 1356600 1c000e84 00130313 addi x6, x6, 1 x6=1c00aec5 x6:1c00aec4 +75464079ns 1356601 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000533 +75464158ns 1356605 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aec5 PA:1c00aec5 +75464178ns 1356606 1c000e82 fff60613 addi x12, x12, -1 x12=00000532 x12:00000533 +75464198ns 1356607 1c000e84 00130313 addi x6, x6, 1 x6=1c00aec6 x6:1c00aec5 +75464218ns 1356608 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000532 +75464297ns 1356612 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aec6 PA:1c00aec6 +75464317ns 1356613 1c000e82 fff60613 addi x12, x12, -1 x12=00000531 x12:00000532 +75464336ns 1356614 1c000e84 00130313 addi x6, x6, 1 x6=1c00aec7 x6:1c00aec6 +75464356ns 1356615 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000531 +75464435ns 1356619 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aec7 PA:1c00aec7 +75464455ns 1356620 1c000e82 fff60613 addi x12, x12, -1 x12=00000530 x12:00000531 +75464475ns 1356621 1c000e84 00130313 addi x6, x6, 1 x6=1c00aec8 x6:1c00aec7 +75464495ns 1356622 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000530 +75464574ns 1356626 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aec8 PA:1c00aec8 +75464594ns 1356627 1c000e82 fff60613 addi x12, x12, -1 x12=0000052f x12:00000530 +75464614ns 1356628 1c000e84 00130313 addi x6, x6, 1 x6=1c00aec9 x6:1c00aec8 +75464633ns 1356629 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000052f +75464712ns 1356633 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aec9 PA:1c00aec9 +75464732ns 1356634 1c000e82 fff60613 addi x12, x12, -1 x12=0000052e x12:0000052f +75464752ns 1356635 1c000e84 00130313 addi x6, x6, 1 x6=1c00aeca x6:1c00aec9 +75464772ns 1356636 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000052e +75464851ns 1356640 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aeca PA:1c00aeca +75464871ns 1356641 1c000e82 fff60613 addi x12, x12, -1 x12=0000052d x12:0000052e +75464891ns 1356642 1c000e84 00130313 addi x6, x6, 1 x6=1c00aecb x6:1c00aeca +75464910ns 1356643 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000052d +75464990ns 1356647 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aecb PA:1c00aecb +75465009ns 1356648 1c000e82 fff60613 addi x12, x12, -1 x12=0000052c x12:0000052d +75465029ns 1356649 1c000e84 00130313 addi x6, x6, 1 x6=1c00aecc x6:1c00aecb +75465049ns 1356650 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000052c +75465128ns 1356654 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aecc PA:1c00aecc +75465148ns 1356655 1c000e82 fff60613 addi x12, x12, -1 x12=0000052b x12:0000052c +75465168ns 1356656 1c000e84 00130313 addi x6, x6, 1 x6=1c00aecd x6:1c00aecc +75465187ns 1356657 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000052b +75465267ns 1356661 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aecd PA:1c00aecd +75465286ns 1356662 1c000e82 fff60613 addi x12, x12, -1 x12=0000052a x12:0000052b +75465306ns 1356663 1c000e84 00130313 addi x6, x6, 1 x6=1c00aece x6:1c00aecd +75465326ns 1356664 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000052a +75465405ns 1356668 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aece PA:1c00aece +75465425ns 1356669 1c000e82 fff60613 addi x12, x12, -1 x12=00000529 x12:0000052a +75465445ns 1356670 1c000e84 00130313 addi x6, x6, 1 x6=1c00aecf x6:1c00aece +75465465ns 1356671 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000529 +75465544ns 1356675 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aecf PA:1c00aecf +75465564ns 1356676 1c000e82 fff60613 addi x12, x12, -1 x12=00000528 x12:00000529 +75465583ns 1356677 1c000e84 00130313 addi x6, x6, 1 x6=1c00aed0 x6:1c00aecf +75465603ns 1356678 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000528 +75465682ns 1356682 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aed0 PA:1c00aed0 +75465702ns 1356683 1c000e82 fff60613 addi x12, x12, -1 x12=00000527 x12:00000528 +75465722ns 1356684 1c000e84 00130313 addi x6, x6, 1 x6=1c00aed1 x6:1c00aed0 +75465742ns 1356685 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000527 +75465821ns 1356689 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aed1 PA:1c00aed1 +75465841ns 1356690 1c000e82 fff60613 addi x12, x12, -1 x12=00000526 x12:00000527 +75465860ns 1356691 1c000e84 00130313 addi x6, x6, 1 x6=1c00aed2 x6:1c00aed1 +75465880ns 1356692 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000526 +75465959ns 1356696 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aed2 PA:1c00aed2 +75465979ns 1356697 1c000e82 fff60613 addi x12, x12, -1 x12=00000525 x12:00000526 +75465999ns 1356698 1c000e84 00130313 addi x6, x6, 1 x6=1c00aed3 x6:1c00aed2 +75466019ns 1356699 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000525 +75466098ns 1356703 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aed3 PA:1c00aed3 +75466118ns 1356704 1c000e82 fff60613 addi x12, x12, -1 x12=00000524 x12:00000525 +75466138ns 1356705 1c000e84 00130313 addi x6, x6, 1 x6=1c00aed4 x6:1c00aed3 +75466157ns 1356706 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000524 +75466236ns 1356710 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aed4 PA:1c00aed4 +75466256ns 1356711 1c000e82 fff60613 addi x12, x12, -1 x12=00000523 x12:00000524 +75466276ns 1356712 1c000e84 00130313 addi x6, x6, 1 x6=1c00aed5 x6:1c00aed4 +75466296ns 1356713 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000523 +75466375ns 1356717 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aed5 PA:1c00aed5 +75466395ns 1356718 1c000e82 fff60613 addi x12, x12, -1 x12=00000522 x12:00000523 +75466415ns 1356719 1c000e84 00130313 addi x6, x6, 1 x6=1c00aed6 x6:1c00aed5 +75466434ns 1356720 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000522 +75466514ns 1356724 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aed6 PA:1c00aed6 +75466533ns 1356725 1c000e82 fff60613 addi x12, x12, -1 x12=00000521 x12:00000522 +75466553ns 1356726 1c000e84 00130313 addi x6, x6, 1 x6=1c00aed7 x6:1c00aed6 +75466573ns 1356727 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000521 +75466652ns 1356731 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aed7 PA:1c00aed7 +75466672ns 1356732 1c000e82 fff60613 addi x12, x12, -1 x12=00000520 x12:00000521 +75466692ns 1356733 1c000e84 00130313 addi x6, x6, 1 x6=1c00aed8 x6:1c00aed7 +75466711ns 1356734 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000520 +75466791ns 1356738 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aed8 PA:1c00aed8 +75466810ns 1356739 1c000e82 fff60613 addi x12, x12, -1 x12=0000051f x12:00000520 +75466830ns 1356740 1c000e84 00130313 addi x6, x6, 1 x6=1c00aed9 x6:1c00aed8 +75466850ns 1356741 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000051f +75466929ns 1356745 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aed9 PA:1c00aed9 +75466949ns 1356746 1c000e82 fff60613 addi x12, x12, -1 x12=0000051e x12:0000051f +75466969ns 1356747 1c000e84 00130313 addi x6, x6, 1 x6=1c00aeda x6:1c00aed9 +75466989ns 1356748 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000051e +75467068ns 1356752 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aeda PA:1c00aeda +75467088ns 1356753 1c000e82 fff60613 addi x12, x12, -1 x12=0000051d x12:0000051e +75467107ns 1356754 1c000e84 00130313 addi x6, x6, 1 x6=1c00aedb x6:1c00aeda +75467127ns 1356755 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000051d +75467206ns 1356759 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aedb PA:1c00aedb +75467226ns 1356760 1c000e82 fff60613 addi x12, x12, -1 x12=0000051c x12:0000051d +75467246ns 1356761 1c000e84 00130313 addi x6, x6, 1 x6=1c00aedc x6:1c00aedb +75467266ns 1356762 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000051c +75467345ns 1356766 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aedc PA:1c00aedc +75467365ns 1356767 1c000e82 fff60613 addi x12, x12, -1 x12=0000051b x12:0000051c +75467384ns 1356768 1c000e84 00130313 addi x6, x6, 1 x6=1c00aedd x6:1c00aedc +75467404ns 1356769 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000051b +75467483ns 1356773 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aedd PA:1c00aedd +75467503ns 1356774 1c000e82 fff60613 addi x12, x12, -1 x12=0000051a x12:0000051b +75467523ns 1356775 1c000e84 00130313 addi x6, x6, 1 x6=1c00aede x6:1c00aedd +75467543ns 1356776 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000051a +75467622ns 1356780 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aede PA:1c00aede +75467642ns 1356781 1c000e82 fff60613 addi x12, x12, -1 x12=00000519 x12:0000051a +75467661ns 1356782 1c000e84 00130313 addi x6, x6, 1 x6=1c00aedf x6:1c00aede +75467681ns 1356783 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000519 +75467760ns 1356787 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aedf PA:1c00aedf +75467780ns 1356788 1c000e82 fff60613 addi x12, x12, -1 x12=00000518 x12:00000519 +75467800ns 1356789 1c000e84 00130313 addi x6, x6, 1 x6=1c00aee0 x6:1c00aedf +75467820ns 1356790 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000518 +75467899ns 1356794 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aee0 PA:1c00aee0 +75467919ns 1356795 1c000e82 fff60613 addi x12, x12, -1 x12=00000517 x12:00000518 +75467939ns 1356796 1c000e84 00130313 addi x6, x6, 1 x6=1c00aee1 x6:1c00aee0 +75467958ns 1356797 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000517 +75468038ns 1356801 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aee1 PA:1c00aee1 +75468057ns 1356802 1c000e82 fff60613 addi x12, x12, -1 x12=00000516 x12:00000517 +75468077ns 1356803 1c000e84 00130313 addi x6, x6, 1 x6=1c00aee2 x6:1c00aee1 +75468097ns 1356804 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000516 +75468176ns 1356808 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aee2 PA:1c00aee2 +75468196ns 1356809 1c000e82 fff60613 addi x12, x12, -1 x12=00000515 x12:00000516 +75468216ns 1356810 1c000e84 00130313 addi x6, x6, 1 x6=1c00aee3 x6:1c00aee2 +75468235ns 1356811 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000515 +75468315ns 1356815 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aee3 PA:1c00aee3 +75468334ns 1356816 1c000e82 fff60613 addi x12, x12, -1 x12=00000514 x12:00000515 +75468354ns 1356817 1c000e84 00130313 addi x6, x6, 1 x6=1c00aee4 x6:1c00aee3 +75468374ns 1356818 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000514 +75468453ns 1356822 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aee4 PA:1c00aee4 +75468473ns 1356823 1c000e82 fff60613 addi x12, x12, -1 x12=00000513 x12:00000514 +75468493ns 1356824 1c000e84 00130313 addi x6, x6, 1 x6=1c00aee5 x6:1c00aee4 +75468513ns 1356825 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000513 +75468592ns 1356829 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aee5 PA:1c00aee5 +75468612ns 1356830 1c000e82 fff60613 addi x12, x12, -1 x12=00000512 x12:00000513 +75468631ns 1356831 1c000e84 00130313 addi x6, x6, 1 x6=1c00aee6 x6:1c00aee5 +75468651ns 1356832 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000512 +75468730ns 1356836 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aee6 PA:1c00aee6 +75468750ns 1356837 1c000e82 fff60613 addi x12, x12, -1 x12=00000511 x12:00000512 +75468770ns 1356838 1c000e84 00130313 addi x6, x6, 1 x6=1c00aee7 x6:1c00aee6 +75468790ns 1356839 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000511 +75468869ns 1356843 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aee7 PA:1c00aee7 +75468889ns 1356844 1c000e82 fff60613 addi x12, x12, -1 x12=00000510 x12:00000511 +75468908ns 1356845 1c000e84 00130313 addi x6, x6, 1 x6=1c00aee8 x6:1c00aee7 +75468928ns 1356846 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000510 +75469007ns 1356850 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aee8 PA:1c00aee8 +75469027ns 1356851 1c000e82 fff60613 addi x12, x12, -1 x12=0000050f x12:00000510 +75469047ns 1356852 1c000e84 00130313 addi x6, x6, 1 x6=1c00aee9 x6:1c00aee8 +75469067ns 1356853 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000050f +75469146ns 1356857 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aee9 PA:1c00aee9 +75469166ns 1356858 1c000e82 fff60613 addi x12, x12, -1 x12=0000050e x12:0000050f +75469185ns 1356859 1c000e84 00130313 addi x6, x6, 1 x6=1c00aeea x6:1c00aee9 +75469205ns 1356860 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000050e +75469284ns 1356864 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aeea PA:1c00aeea +75469304ns 1356865 1c000e82 fff60613 addi x12, x12, -1 x12=0000050d x12:0000050e +75469324ns 1356866 1c000e84 00130313 addi x6, x6, 1 x6=1c00aeeb x6:1c00aeea +75469344ns 1356867 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000050d +75469423ns 1356871 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aeeb PA:1c00aeeb +75469443ns 1356872 1c000e82 fff60613 addi x12, x12, -1 x12=0000050c x12:0000050d +75469463ns 1356873 1c000e84 00130313 addi x6, x6, 1 x6=1c00aeec x6:1c00aeeb +75469482ns 1356874 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000050c +75469562ns 1356878 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aeec PA:1c00aeec +75469581ns 1356879 1c000e82 fff60613 addi x12, x12, -1 x12=0000050b x12:0000050c +75469601ns 1356880 1c000e84 00130313 addi x6, x6, 1 x6=1c00aeed x6:1c00aeec +75469621ns 1356881 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000050b +75469700ns 1356885 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aeed PA:1c00aeed +75469720ns 1356886 1c000e82 fff60613 addi x12, x12, -1 x12=0000050a x12:0000050b +75469740ns 1356887 1c000e84 00130313 addi x6, x6, 1 x6=1c00aeee x6:1c00aeed +75469759ns 1356888 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000050a +75469839ns 1356892 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aeee PA:1c00aeee +75469858ns 1356893 1c000e82 fff60613 addi x12, x12, -1 x12=00000509 x12:0000050a +75469878ns 1356894 1c000e84 00130313 addi x6, x6, 1 x6=1c00aeef x6:1c00aeee +75469898ns 1356895 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000509 +75469977ns 1356899 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aeef PA:1c00aeef +75469997ns 1356900 1c000e82 fff60613 addi x12, x12, -1 x12=00000508 x12:00000509 +75470017ns 1356901 1c000e84 00130313 addi x6, x6, 1 x6=1c00aef0 x6:1c00aeef +75470037ns 1356902 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000508 +75470116ns 1356906 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aef0 PA:1c00aef0 +75470135ns 1356907 1c000e82 fff60613 addi x12, x12, -1 x12=00000507 x12:00000508 +75470155ns 1356908 1c000e84 00130313 addi x6, x6, 1 x6=1c00aef1 x6:1c00aef0 +75470175ns 1356909 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000507 +75470254ns 1356913 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aef1 PA:1c00aef1 +75470274ns 1356914 1c000e82 fff60613 addi x12, x12, -1 x12=00000506 x12:00000507 +75470294ns 1356915 1c000e84 00130313 addi x6, x6, 1 x6=1c00aef2 x6:1c00aef1 +75470314ns 1356916 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000506 +75470393ns 1356920 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aef2 PA:1c00aef2 +75470413ns 1356921 1c000e82 fff60613 addi x12, x12, -1 x12=00000505 x12:00000506 +75470432ns 1356922 1c000e84 00130313 addi x6, x6, 1 x6=1c00aef3 x6:1c00aef2 +75470452ns 1356923 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000505 +75470531ns 1356927 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aef3 PA:1c00aef3 +75470551ns 1356928 1c000e82 fff60613 addi x12, x12, -1 x12=00000504 x12:00000505 +75470571ns 1356929 1c000e84 00130313 addi x6, x6, 1 x6=1c00aef4 x6:1c00aef3 +75470591ns 1356930 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000504 +75470670ns 1356934 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aef4 PA:1c00aef4 +75470690ns 1356935 1c000e82 fff60613 addi x12, x12, -1 x12=00000503 x12:00000504 +75470709ns 1356936 1c000e84 00130313 addi x6, x6, 1 x6=1c00aef5 x6:1c00aef4 +75470729ns 1356937 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000503 +75470808ns 1356941 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aef5 PA:1c00aef5 +75470828ns 1356942 1c000e82 fff60613 addi x12, x12, -1 x12=00000502 x12:00000503 +75470848ns 1356943 1c000e84 00130313 addi x6, x6, 1 x6=1c00aef6 x6:1c00aef5 +75470868ns 1356944 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000502 +75470947ns 1356948 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aef6 PA:1c00aef6 +75470967ns 1356949 1c000e82 fff60613 addi x12, x12, -1 x12=00000501 x12:00000502 +75470987ns 1356950 1c000e84 00130313 addi x6, x6, 1 x6=1c00aef7 x6:1c00aef6 +75471006ns 1356951 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000501 +75471086ns 1356955 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aef7 PA:1c00aef7 +75471105ns 1356956 1c000e82 fff60613 addi x12, x12, -1 x12=00000500 x12:00000501 +75471125ns 1356957 1c000e84 00130313 addi x6, x6, 1 x6=1c00aef8 x6:1c00aef7 +75471145ns 1356958 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000500 +75471224ns 1356962 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aef8 PA:1c00aef8 +75471244ns 1356963 1c000e82 fff60613 addi x12, x12, -1 x12=000004ff x12:00000500 +75471264ns 1356964 1c000e84 00130313 addi x6, x6, 1 x6=1c00aef9 x6:1c00aef8 +75471283ns 1356965 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004ff +75471363ns 1356969 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aef9 PA:1c00aef9 +75471382ns 1356970 1c000e82 fff60613 addi x12, x12, -1 x12=000004fe x12:000004ff +75471402ns 1356971 1c000e84 00130313 addi x6, x6, 1 x6=1c00aefa x6:1c00aef9 +75471422ns 1356972 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004fe +75471501ns 1356976 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aefa PA:1c00aefa +75471521ns 1356977 1c000e82 fff60613 addi x12, x12, -1 x12=000004fd x12:000004fe +75471541ns 1356978 1c000e84 00130313 addi x6, x6, 1 x6=1c00aefb x6:1c00aefa +75471561ns 1356979 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004fd +75471640ns 1356983 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aefb PA:1c00aefb +75471659ns 1356984 1c000e82 fff60613 addi x12, x12, -1 x12=000004fc x12:000004fd +75471679ns 1356985 1c000e84 00130313 addi x6, x6, 1 x6=1c00aefc x6:1c00aefb +75471699ns 1356986 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004fc +75471778ns 1356990 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aefc PA:1c00aefc +75471798ns 1356991 1c000e82 fff60613 addi x12, x12, -1 x12=000004fb x12:000004fc +75471818ns 1356992 1c000e84 00130313 addi x6, x6, 1 x6=1c00aefd x6:1c00aefc +75471838ns 1356993 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004fb +75471917ns 1356997 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aefd PA:1c00aefd +75471937ns 1356998 1c000e82 fff60613 addi x12, x12, -1 x12=000004fa x12:000004fb +75471956ns 1356999 1c000e84 00130313 addi x6, x6, 1 x6=1c00aefe x6:1c00aefd +75471976ns 1357000 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004fa +75472055ns 1357004 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aefe PA:1c00aefe +75472075ns 1357005 1c000e82 fff60613 addi x12, x12, -1 x12=000004f9 x12:000004fa +75472095ns 1357006 1c000e84 00130313 addi x6, x6, 1 x6=1c00aeff x6:1c00aefe +75472115ns 1357007 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004f9 +75472194ns 1357011 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aeff PA:1c00aeff +75472214ns 1357012 1c000e82 fff60613 addi x12, x12, -1 x12=000004f8 x12:000004f9 +75472233ns 1357013 1c000e84 00130313 addi x6, x6, 1 x6=1c00af00 x6:1c00aeff +75472253ns 1357014 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004f8 +75472332ns 1357018 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af00 PA:1c00af00 +75472352ns 1357019 1c000e82 fff60613 addi x12, x12, -1 x12=000004f7 x12:000004f8 +75472372ns 1357020 1c000e84 00130313 addi x6, x6, 1 x6=1c00af01 x6:1c00af00 +75472392ns 1357021 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004f7 +75472471ns 1357025 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af01 PA:1c00af01 +75472491ns 1357026 1c000e82 fff60613 addi x12, x12, -1 x12=000004f6 x12:000004f7 +75472511ns 1357027 1c000e84 00130313 addi x6, x6, 1 x6=1c00af02 x6:1c00af01 +75472530ns 1357028 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004f6 +75472609ns 1357032 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af02 PA:1c00af02 +75472629ns 1357033 1c000e82 fff60613 addi x12, x12, -1 x12=000004f5 x12:000004f6 +75472649ns 1357034 1c000e84 00130313 addi x6, x6, 1 x6=1c00af03 x6:1c00af02 +75472669ns 1357035 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004f5 +75472748ns 1357039 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af03 PA:1c00af03 +75472768ns 1357040 1c000e82 fff60613 addi x12, x12, -1 x12=000004f4 x12:000004f5 +75472788ns 1357041 1c000e84 00130313 addi x6, x6, 1 x6=1c00af04 x6:1c00af03 +75472807ns 1357042 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004f4 +75472887ns 1357046 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af04 PA:1c00af04 +75472906ns 1357047 1c000e82 fff60613 addi x12, x12, -1 x12=000004f3 x12:000004f4 +75472926ns 1357048 1c000e84 00130313 addi x6, x6, 1 x6=1c00af05 x6:1c00af04 +75472946ns 1357049 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004f3 +75473025ns 1357053 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af05 PA:1c00af05 +75473045ns 1357054 1c000e82 fff60613 addi x12, x12, -1 x12=000004f2 x12:000004f3 +75473065ns 1357055 1c000e84 00130313 addi x6, x6, 1 x6=1c00af06 x6:1c00af05 +75473085ns 1357056 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004f2 +75473164ns 1357060 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af06 PA:1c00af06 +75473183ns 1357061 1c000e82 fff60613 addi x12, x12, -1 x12=000004f1 x12:000004f2 +75473203ns 1357062 1c000e84 00130313 addi x6, x6, 1 x6=1c00af07 x6:1c00af06 +75473223ns 1357063 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004f1 +75473302ns 1357067 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af07 PA:1c00af07 +75473322ns 1357068 1c000e82 fff60613 addi x12, x12, -1 x12=000004f0 x12:000004f1 +75473342ns 1357069 1c000e84 00130313 addi x6, x6, 1 x6=1c00af08 x6:1c00af07 +75473362ns 1357070 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004f0 +75473441ns 1357074 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af08 PA:1c00af08 +75473461ns 1357075 1c000e82 fff60613 addi x12, x12, -1 x12=000004ef x12:000004f0 +75473480ns 1357076 1c000e84 00130313 addi x6, x6, 1 x6=1c00af09 x6:1c00af08 +75473500ns 1357077 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004ef +75473579ns 1357081 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af09 PA:1c00af09 +75473599ns 1357082 1c000e82 fff60613 addi x12, x12, -1 x12=000004ee x12:000004ef +75473619ns 1357083 1c000e84 00130313 addi x6, x6, 1 x6=1c00af0a x6:1c00af09 +75473639ns 1357084 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004ee +75473718ns 1357088 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af0a PA:1c00af0a +75473738ns 1357089 1c000e82 fff60613 addi x12, x12, -1 x12=000004ed x12:000004ee +75473757ns 1357090 1c000e84 00130313 addi x6, x6, 1 x6=1c00af0b x6:1c00af0a +75473777ns 1357091 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004ed +75473856ns 1357095 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af0b PA:1c00af0b +75473876ns 1357096 1c000e82 fff60613 addi x12, x12, -1 x12=000004ec x12:000004ed +75473896ns 1357097 1c000e84 00130313 addi x6, x6, 1 x6=1c00af0c x6:1c00af0b +75473916ns 1357098 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004ec +75473995ns 1357102 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af0c PA:1c00af0c +75474015ns 1357103 1c000e82 fff60613 addi x12, x12, -1 x12=000004eb x12:000004ec +75474035ns 1357104 1c000e84 00130313 addi x6, x6, 1 x6=1c00af0d x6:1c00af0c +75474054ns 1357105 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004eb +75474133ns 1357109 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af0d PA:1c00af0d +75474153ns 1357110 1c000e82 fff60613 addi x12, x12, -1 x12=000004ea x12:000004eb +75474173ns 1357111 1c000e84 00130313 addi x6, x6, 1 x6=1c00af0e x6:1c00af0d +75474193ns 1357112 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004ea +75474272ns 1357116 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af0e PA:1c00af0e +75474292ns 1357117 1c000e82 fff60613 addi x12, x12, -1 x12=000004e9 x12:000004ea +75474312ns 1357118 1c000e84 00130313 addi x6, x6, 1 x6=1c00af0f x6:1c00af0e +75474331ns 1357119 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004e9 +75474411ns 1357123 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af0f PA:1c00af0f +75474430ns 1357124 1c000e82 fff60613 addi x12, x12, -1 x12=000004e8 x12:000004e9 +75474450ns 1357125 1c000e84 00130313 addi x6, x6, 1 x6=1c00af10 x6:1c00af0f +75474470ns 1357126 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004e8 +75474549ns 1357130 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af10 PA:1c00af10 +75474569ns 1357131 1c000e82 fff60613 addi x12, x12, -1 x12=000004e7 x12:000004e8 +75474589ns 1357132 1c000e84 00130313 addi x6, x6, 1 x6=1c00af11 x6:1c00af10 +75474608ns 1357133 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004e7 +75474688ns 1357137 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af11 PA:1c00af11 +75474707ns 1357138 1c000e82 fff60613 addi x12, x12, -1 x12=000004e6 x12:000004e7 +75474727ns 1357139 1c000e84 00130313 addi x6, x6, 1 x6=1c00af12 x6:1c00af11 +75474747ns 1357140 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004e6 +75474826ns 1357144 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af12 PA:1c00af12 +75474846ns 1357145 1c000e82 fff60613 addi x12, x12, -1 x12=000004e5 x12:000004e6 +75474866ns 1357146 1c000e84 00130313 addi x6, x6, 1 x6=1c00af13 x6:1c00af12 +75474886ns 1357147 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004e5 +75474965ns 1357151 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af13 PA:1c00af13 +75474985ns 1357152 1c000e82 fff60613 addi x12, x12, -1 x12=000004e4 x12:000004e5 +75475004ns 1357153 1c000e84 00130313 addi x6, x6, 1 x6=1c00af14 x6:1c00af13 +75475024ns 1357154 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004e4 +75475103ns 1357158 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af14 PA:1c00af14 +75475123ns 1357159 1c000e82 fff60613 addi x12, x12, -1 x12=000004e3 x12:000004e4 +75475143ns 1357160 1c000e84 00130313 addi x6, x6, 1 x6=1c00af15 x6:1c00af14 +75475163ns 1357161 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004e3 +75475242ns 1357165 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af15 PA:1c00af15 +75475262ns 1357166 1c000e82 fff60613 addi x12, x12, -1 x12=000004e2 x12:000004e3 +75475281ns 1357167 1c000e84 00130313 addi x6, x6, 1 x6=1c00af16 x6:1c00af15 +75475301ns 1357168 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004e2 +75475380ns 1357172 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af16 PA:1c00af16 +75475400ns 1357173 1c000e82 fff60613 addi x12, x12, -1 x12=000004e1 x12:000004e2 +75475420ns 1357174 1c000e84 00130313 addi x6, x6, 1 x6=1c00af17 x6:1c00af16 +75475440ns 1357175 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004e1 +75475519ns 1357179 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af17 PA:1c00af17 +75475539ns 1357180 1c000e82 fff60613 addi x12, x12, -1 x12=000004e0 x12:000004e1 +75475559ns 1357181 1c000e84 00130313 addi x6, x6, 1 x6=1c00af18 x6:1c00af17 +75475578ns 1357182 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004e0 +75475657ns 1357186 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af18 PA:1c00af18 +75475677ns 1357187 1c000e82 fff60613 addi x12, x12, -1 x12=000004df x12:000004e0 +75475697ns 1357188 1c000e84 00130313 addi x6, x6, 1 x6=1c00af19 x6:1c00af18 +75475717ns 1357189 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004df +75475796ns 1357193 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af19 PA:1c00af19 +75475816ns 1357194 1c000e82 fff60613 addi x12, x12, -1 x12=000004de x12:000004df +75475836ns 1357195 1c000e84 00130313 addi x6, x6, 1 x6=1c00af1a x6:1c00af19 +75475855ns 1357196 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004de +75475935ns 1357200 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af1a PA:1c00af1a +75475954ns 1357201 1c000e82 fff60613 addi x12, x12, -1 x12=000004dd x12:000004de +75475974ns 1357202 1c000e84 00130313 addi x6, x6, 1 x6=1c00af1b x6:1c00af1a +75475994ns 1357203 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004dd +75476073ns 1357207 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af1b PA:1c00af1b +75476093ns 1357208 1c000e82 fff60613 addi x12, x12, -1 x12=000004dc x12:000004dd +75476113ns 1357209 1c000e84 00130313 addi x6, x6, 1 x6=1c00af1c x6:1c00af1b +75476132ns 1357210 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004dc +75476212ns 1357214 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af1c PA:1c00af1c +75476231ns 1357215 1c000e82 fff60613 addi x12, x12, -1 x12=000004db x12:000004dc +75476251ns 1357216 1c000e84 00130313 addi x6, x6, 1 x6=1c00af1d x6:1c00af1c +75476271ns 1357217 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004db +75476350ns 1357221 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af1d PA:1c00af1d +75476370ns 1357222 1c000e82 fff60613 addi x12, x12, -1 x12=000004da x12:000004db +75476390ns 1357223 1c000e84 00130313 addi x6, x6, 1 x6=1c00af1e x6:1c00af1d +75476410ns 1357224 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004da +75476489ns 1357228 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af1e PA:1c00af1e +75476509ns 1357229 1c000e82 fff60613 addi x12, x12, -1 x12=000004d9 x12:000004da +75476528ns 1357230 1c000e84 00130313 addi x6, x6, 1 x6=1c00af1f x6:1c00af1e +75476548ns 1357231 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004d9 +75476627ns 1357235 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af1f PA:1c00af1f +75476647ns 1357236 1c000e82 fff60613 addi x12, x12, -1 x12=000004d8 x12:000004d9 +75476667ns 1357237 1c000e84 00130313 addi x6, x6, 1 x6=1c00af20 x6:1c00af1f +75476687ns 1357238 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004d8 +75476766ns 1357242 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af20 PA:1c00af20 +75476786ns 1357243 1c000e82 fff60613 addi x12, x12, -1 x12=000004d7 x12:000004d8 +75476805ns 1357244 1c000e84 00130313 addi x6, x6, 1 x6=1c00af21 x6:1c00af20 +75476825ns 1357245 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004d7 +75476904ns 1357249 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af21 PA:1c00af21 +75476924ns 1357250 1c000e82 fff60613 addi x12, x12, -1 x12=000004d6 x12:000004d7 +75476944ns 1357251 1c000e84 00130313 addi x6, x6, 1 x6=1c00af22 x6:1c00af21 +75476964ns 1357252 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004d6 +75477043ns 1357256 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af22 PA:1c00af22 +75477063ns 1357257 1c000e82 fff60613 addi x12, x12, -1 x12=000004d5 x12:000004d6 +75477082ns 1357258 1c000e84 00130313 addi x6, x6, 1 x6=1c00af23 x6:1c00af22 +75477102ns 1357259 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004d5 +75477181ns 1357263 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af23 PA:1c00af23 +75477201ns 1357264 1c000e82 fff60613 addi x12, x12, -1 x12=000004d4 x12:000004d5 +75477221ns 1357265 1c000e84 00130313 addi x6, x6, 1 x6=1c00af24 x6:1c00af23 +75477241ns 1357266 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004d4 +75477320ns 1357270 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af24 PA:1c00af24 +75477340ns 1357271 1c000e82 fff60613 addi x12, x12, -1 x12=000004d3 x12:000004d4 +75477360ns 1357272 1c000e84 00130313 addi x6, x6, 1 x6=1c00af25 x6:1c00af24 +75477379ns 1357273 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004d3 +75477459ns 1357277 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af25 PA:1c00af25 +75477478ns 1357278 1c000e82 fff60613 addi x12, x12, -1 x12=000004d2 x12:000004d3 +75477498ns 1357279 1c000e84 00130313 addi x6, x6, 1 x6=1c00af26 x6:1c00af25 +75477518ns 1357280 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004d2 +75477597ns 1357284 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af26 PA:1c00af26 +75477617ns 1357285 1c000e82 fff60613 addi x12, x12, -1 x12=000004d1 x12:000004d2 +75477637ns 1357286 1c000e84 00130313 addi x6, x6, 1 x6=1c00af27 x6:1c00af26 +75477656ns 1357287 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004d1 +75477736ns 1357291 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af27 PA:1c00af27 +75477755ns 1357292 1c000e82 fff60613 addi x12, x12, -1 x12=000004d0 x12:000004d1 +75477775ns 1357293 1c000e84 00130313 addi x6, x6, 1 x6=1c00af28 x6:1c00af27 +75477795ns 1357294 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004d0 +75477874ns 1357298 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af28 PA:1c00af28 +75477894ns 1357299 1c000e82 fff60613 addi x12, x12, -1 x12=000004cf x12:000004d0 +75477914ns 1357300 1c000e84 00130313 addi x6, x6, 1 x6=1c00af29 x6:1c00af28 +75477934ns 1357301 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004cf +75478013ns 1357305 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af29 PA:1c00af29 +75478033ns 1357306 1c000e82 fff60613 addi x12, x12, -1 x12=000004ce x12:000004cf +75478052ns 1357307 1c000e84 00130313 addi x6, x6, 1 x6=1c00af2a x6:1c00af29 +75478072ns 1357308 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004ce +75478151ns 1357312 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af2a PA:1c00af2a +75478171ns 1357313 1c000e82 fff60613 addi x12, x12, -1 x12=000004cd x12:000004ce +75478191ns 1357314 1c000e84 00130313 addi x6, x6, 1 x6=1c00af2b x6:1c00af2a +75478211ns 1357315 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004cd +75478290ns 1357319 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af2b PA:1c00af2b +75478310ns 1357320 1c000e82 fff60613 addi x12, x12, -1 x12=000004cc x12:000004cd +75478329ns 1357321 1c000e84 00130313 addi x6, x6, 1 x6=1c00af2c x6:1c00af2b +75478349ns 1357322 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004cc +75478428ns 1357326 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af2c PA:1c00af2c +75478448ns 1357327 1c000e82 fff60613 addi x12, x12, -1 x12=000004cb x12:000004cc +75478468ns 1357328 1c000e84 00130313 addi x6, x6, 1 x6=1c00af2d x6:1c00af2c +75478488ns 1357329 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004cb +75478567ns 1357333 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af2d PA:1c00af2d +75478587ns 1357334 1c000e82 fff60613 addi x12, x12, -1 x12=000004ca x12:000004cb +75478606ns 1357335 1c000e84 00130313 addi x6, x6, 1 x6=1c00af2e x6:1c00af2d +75478626ns 1357336 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004ca +75478705ns 1357340 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af2e PA:1c00af2e +75478725ns 1357341 1c000e82 fff60613 addi x12, x12, -1 x12=000004c9 x12:000004ca +75478745ns 1357342 1c000e84 00130313 addi x6, x6, 1 x6=1c00af2f x6:1c00af2e +75478765ns 1357343 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004c9 +75478844ns 1357347 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af2f PA:1c00af2f +75478864ns 1357348 1c000e82 fff60613 addi x12, x12, -1 x12=000004c8 x12:000004c9 +75478884ns 1357349 1c000e84 00130313 addi x6, x6, 1 x6=1c00af30 x6:1c00af2f +75478903ns 1357350 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004c8 +75478983ns 1357354 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af30 PA:1c00af30 +75479002ns 1357355 1c000e82 fff60613 addi x12, x12, -1 x12=000004c7 x12:000004c8 +75479022ns 1357356 1c000e84 00130313 addi x6, x6, 1 x6=1c00af31 x6:1c00af30 +75479042ns 1357357 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004c7 +75479121ns 1357361 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af31 PA:1c00af31 +75479141ns 1357362 1c000e82 fff60613 addi x12, x12, -1 x12=000004c6 x12:000004c7 +75479161ns 1357363 1c000e84 00130313 addi x6, x6, 1 x6=1c00af32 x6:1c00af31 +75479180ns 1357364 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004c6 +75479260ns 1357368 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af32 PA:1c00af32 +75479279ns 1357369 1c000e82 fff60613 addi x12, x12, -1 x12=000004c5 x12:000004c6 +75479299ns 1357370 1c000e84 00130313 addi x6, x6, 1 x6=1c00af33 x6:1c00af32 +75479319ns 1357371 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004c5 +75479398ns 1357375 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af33 PA:1c00af33 +75479418ns 1357376 1c000e82 fff60613 addi x12, x12, -1 x12=000004c4 x12:000004c5 +75479438ns 1357377 1c000e84 00130313 addi x6, x6, 1 x6=1c00af34 x6:1c00af33 +75479458ns 1357378 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004c4 +75479537ns 1357382 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af34 PA:1c00af34 +75479556ns 1357383 1c000e82 fff60613 addi x12, x12, -1 x12=000004c3 x12:000004c4 +75479576ns 1357384 1c000e84 00130313 addi x6, x6, 1 x6=1c00af35 x6:1c00af34 +75479596ns 1357385 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004c3 +75479675ns 1357389 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af35 PA:1c00af35 +75479695ns 1357390 1c000e82 fff60613 addi x12, x12, -1 x12=000004c2 x12:000004c3 +75479715ns 1357391 1c000e84 00130313 addi x6, x6, 1 x6=1c00af36 x6:1c00af35 +75479735ns 1357392 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004c2 +75479814ns 1357396 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af36 PA:1c00af36 +75479834ns 1357397 1c000e82 fff60613 addi x12, x12, -1 x12=000004c1 x12:000004c2 +75479853ns 1357398 1c000e84 00130313 addi x6, x6, 1 x6=1c00af37 x6:1c00af36 +75479873ns 1357399 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004c1 +75479952ns 1357403 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af37 PA:1c00af37 +75479972ns 1357404 1c000e82 fff60613 addi x12, x12, -1 x12=000004c0 x12:000004c1 +75479992ns 1357405 1c000e84 00130313 addi x6, x6, 1 x6=1c00af38 x6:1c00af37 +75480012ns 1357406 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004c0 +75480091ns 1357410 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af38 PA:1c00af38 +75480111ns 1357411 1c000e82 fff60613 addi x12, x12, -1 x12=000004bf x12:000004c0 +75480130ns 1357412 1c000e84 00130313 addi x6, x6, 1 x6=1c00af39 x6:1c00af38 +75480150ns 1357413 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004bf +75480229ns 1357417 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af39 PA:1c00af39 +75480249ns 1357418 1c000e82 fff60613 addi x12, x12, -1 x12=000004be x12:000004bf +75480269ns 1357419 1c000e84 00130313 addi x6, x6, 1 x6=1c00af3a x6:1c00af39 +75480289ns 1357420 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004be +75480368ns 1357424 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af3a PA:1c00af3a +75480388ns 1357425 1c000e82 fff60613 addi x12, x12, -1 x12=000004bd x12:000004be +75480408ns 1357426 1c000e84 00130313 addi x6, x6, 1 x6=1c00af3b x6:1c00af3a +75480427ns 1357427 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004bd +75480507ns 1357431 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af3b PA:1c00af3b +75480526ns 1357432 1c000e82 fff60613 addi x12, x12, -1 x12=000004bc x12:000004bd +75480546ns 1357433 1c000e84 00130313 addi x6, x6, 1 x6=1c00af3c x6:1c00af3b +75480566ns 1357434 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004bc +75480645ns 1357438 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af3c PA:1c00af3c +75480665ns 1357439 1c000e82 fff60613 addi x12, x12, -1 x12=000004bb x12:000004bc +75480685ns 1357440 1c000e84 00130313 addi x6, x6, 1 x6=1c00af3d x6:1c00af3c +75480704ns 1357441 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004bb +75480784ns 1357445 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af3d PA:1c00af3d +75480803ns 1357446 1c000e82 fff60613 addi x12, x12, -1 x12=000004ba x12:000004bb +75480823ns 1357447 1c000e84 00130313 addi x6, x6, 1 x6=1c00af3e x6:1c00af3d +75480843ns 1357448 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004ba +75480922ns 1357452 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af3e PA:1c00af3e +75480942ns 1357453 1c000e82 fff60613 addi x12, x12, -1 x12=000004b9 x12:000004ba +75480962ns 1357454 1c000e84 00130313 addi x6, x6, 1 x6=1c00af3f x6:1c00af3e +75480982ns 1357455 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004b9 +75481061ns 1357459 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af3f PA:1c00af3f +75481080ns 1357460 1c000e82 fff60613 addi x12, x12, -1 x12=000004b8 x12:000004b9 +75481100ns 1357461 1c000e84 00130313 addi x6, x6, 1 x6=1c00af40 x6:1c00af3f +75481120ns 1357462 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004b8 +75481199ns 1357466 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af40 PA:1c00af40 +75481219ns 1357467 1c000e82 fff60613 addi x12, x12, -1 x12=000004b7 x12:000004b8 +75481239ns 1357468 1c000e84 00130313 addi x6, x6, 1 x6=1c00af41 x6:1c00af40 +75481259ns 1357469 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004b7 +75481338ns 1357473 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af41 PA:1c00af41 +75481358ns 1357474 1c000e82 fff60613 addi x12, x12, -1 x12=000004b6 x12:000004b7 +75481377ns 1357475 1c000e84 00130313 addi x6, x6, 1 x6=1c00af42 x6:1c00af41 +75481397ns 1357476 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004b6 +75481476ns 1357480 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af42 PA:1c00af42 +75481496ns 1357481 1c000e82 fff60613 addi x12, x12, -1 x12=000004b5 x12:000004b6 +75481516ns 1357482 1c000e84 00130313 addi x6, x6, 1 x6=1c00af43 x6:1c00af42 +75481536ns 1357483 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004b5 +75481615ns 1357487 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af43 PA:1c00af43 +75481635ns 1357488 1c000e82 fff60613 addi x12, x12, -1 x12=000004b4 x12:000004b5 +75481654ns 1357489 1c000e84 00130313 addi x6, x6, 1 x6=1c00af44 x6:1c00af43 +75481674ns 1357490 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004b4 +75481753ns 1357494 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af44 PA:1c00af44 +75481773ns 1357495 1c000e82 fff60613 addi x12, x12, -1 x12=000004b3 x12:000004b4 +75481793ns 1357496 1c000e84 00130313 addi x6, x6, 1 x6=1c00af45 x6:1c00af44 +75481813ns 1357497 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004b3 +75481892ns 1357501 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af45 PA:1c00af45 +75481912ns 1357502 1c000e82 fff60613 addi x12, x12, -1 x12=000004b2 x12:000004b3 +75481932ns 1357503 1c000e84 00130313 addi x6, x6, 1 x6=1c00af46 x6:1c00af45 +75481951ns 1357504 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004b2 +75482030ns 1357508 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af46 PA:1c00af46 +75482050ns 1357509 1c000e82 fff60613 addi x12, x12, -1 x12=000004b1 x12:000004b2 +75482070ns 1357510 1c000e84 00130313 addi x6, x6, 1 x6=1c00af47 x6:1c00af46 +75482090ns 1357511 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004b1 +75482169ns 1357515 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af47 PA:1c00af47 +75482189ns 1357516 1c000e82 fff60613 addi x12, x12, -1 x12=000004b0 x12:000004b1 +75482209ns 1357517 1c000e84 00130313 addi x6, x6, 1 x6=1c00af48 x6:1c00af47 +75482228ns 1357518 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004b0 +75482308ns 1357522 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af48 PA:1c00af48 +75482327ns 1357523 1c000e82 fff60613 addi x12, x12, -1 x12=000004af x12:000004b0 +75482347ns 1357524 1c000e84 00130313 addi x6, x6, 1 x6=1c00af49 x6:1c00af48 +75482367ns 1357525 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004af +75482446ns 1357529 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af49 PA:1c00af49 +75482466ns 1357530 1c000e82 fff60613 addi x12, x12, -1 x12=000004ae x12:000004af +75482486ns 1357531 1c000e84 00130313 addi x6, x6, 1 x6=1c00af4a x6:1c00af49 +75482505ns 1357532 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004ae +75482585ns 1357536 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af4a PA:1c00af4a +75482604ns 1357537 1c000e82 fff60613 addi x12, x12, -1 x12=000004ad x12:000004ae +75482624ns 1357538 1c000e84 00130313 addi x6, x6, 1 x6=1c00af4b x6:1c00af4a +75482644ns 1357539 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004ad +75482723ns 1357543 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af4b PA:1c00af4b +75482743ns 1357544 1c000e82 fff60613 addi x12, x12, -1 x12=000004ac x12:000004ad +75482763ns 1357545 1c000e84 00130313 addi x6, x6, 1 x6=1c00af4c x6:1c00af4b +75482783ns 1357546 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004ac +75482862ns 1357550 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af4c PA:1c00af4c +75482882ns 1357551 1c000e82 fff60613 addi x12, x12, -1 x12=000004ab x12:000004ac +75482901ns 1357552 1c000e84 00130313 addi x6, x6, 1 x6=1c00af4d x6:1c00af4c +75482921ns 1357553 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004ab +75483000ns 1357557 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af4d PA:1c00af4d +75483020ns 1357558 1c000e82 fff60613 addi x12, x12, -1 x12=000004aa x12:000004ab +75483040ns 1357559 1c000e84 00130313 addi x6, x6, 1 x6=1c00af4e x6:1c00af4d +75483060ns 1357560 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004aa +75483139ns 1357564 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af4e PA:1c00af4e +75483159ns 1357565 1c000e82 fff60613 addi x12, x12, -1 x12=000004a9 x12:000004aa +75483178ns 1357566 1c000e84 00130313 addi x6, x6, 1 x6=1c00af4f x6:1c00af4e +75483198ns 1357567 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004a9 +75483277ns 1357571 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af4f PA:1c00af4f +75483297ns 1357572 1c000e82 fff60613 addi x12, x12, -1 x12=000004a8 x12:000004a9 +75483317ns 1357573 1c000e84 00130313 addi x6, x6, 1 x6=1c00af50 x6:1c00af4f +75483337ns 1357574 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004a8 +75483416ns 1357578 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af50 PA:1c00af50 +75483436ns 1357579 1c000e82 fff60613 addi x12, x12, -1 x12=000004a7 x12:000004a8 +75483456ns 1357580 1c000e84 00130313 addi x6, x6, 1 x6=1c00af51 x6:1c00af50 +75483475ns 1357581 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004a7 +75483554ns 1357585 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af51 PA:1c00af51 +75483574ns 1357586 1c000e82 fff60613 addi x12, x12, -1 x12=000004a6 x12:000004a7 +75483594ns 1357587 1c000e84 00130313 addi x6, x6, 1 x6=1c00af52 x6:1c00af51 +75483614ns 1357588 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004a6 +75483693ns 1357592 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af52 PA:1c00af52 +75483713ns 1357593 1c000e82 fff60613 addi x12, x12, -1 x12=000004a5 x12:000004a6 +75483733ns 1357594 1c000e84 00130313 addi x6, x6, 1 x6=1c00af53 x6:1c00af52 +75483752ns 1357595 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004a5 +75483832ns 1357599 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af53 PA:1c00af53 +75483851ns 1357600 1c000e82 fff60613 addi x12, x12, -1 x12=000004a4 x12:000004a5 +75483871ns 1357601 1c000e84 00130313 addi x6, x6, 1 x6=1c00af54 x6:1c00af53 +75483891ns 1357602 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004a4 +75483970ns 1357606 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af54 PA:1c00af54 +75483990ns 1357607 1c000e82 fff60613 addi x12, x12, -1 x12=000004a3 x12:000004a4 +75484010ns 1357608 1c000e84 00130313 addi x6, x6, 1 x6=1c00af55 x6:1c00af54 +75484029ns 1357609 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004a3 +75484109ns 1357613 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af55 PA:1c00af55 +75484128ns 1357614 1c000e82 fff60613 addi x12, x12, -1 x12=000004a2 x12:000004a3 +75484148ns 1357615 1c000e84 00130313 addi x6, x6, 1 x6=1c00af56 x6:1c00af55 +75484168ns 1357616 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004a2 +75484247ns 1357620 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af56 PA:1c00af56 +75484267ns 1357621 1c000e82 fff60613 addi x12, x12, -1 x12=000004a1 x12:000004a2 +75484287ns 1357622 1c000e84 00130313 addi x6, x6, 1 x6=1c00af57 x6:1c00af56 +75484307ns 1357623 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004a1 +75484386ns 1357627 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af57 PA:1c00af57 +75484406ns 1357628 1c000e82 fff60613 addi x12, x12, -1 x12=000004a0 x12:000004a1 +75484425ns 1357629 1c000e84 00130313 addi x6, x6, 1 x6=1c00af58 x6:1c00af57 +75484445ns 1357630 1c000e86 fe061ce3 bne x12, x0, -8 x12:000004a0 +75484524ns 1357634 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af58 PA:1c00af58 +75484544ns 1357635 1c000e82 fff60613 addi x12, x12, -1 x12=0000049f x12:000004a0 +75484564ns 1357636 1c000e84 00130313 addi x6, x6, 1 x6=1c00af59 x6:1c00af58 +75484584ns 1357637 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000049f +75484663ns 1357641 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af59 PA:1c00af59 +75484683ns 1357642 1c000e82 fff60613 addi x12, x12, -1 x12=0000049e x12:0000049f +75484702ns 1357643 1c000e84 00130313 addi x6, x6, 1 x6=1c00af5a x6:1c00af59 +75484722ns 1357644 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000049e +75484801ns 1357648 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af5a PA:1c00af5a +75484821ns 1357649 1c000e82 fff60613 addi x12, x12, -1 x12=0000049d x12:0000049e +75484841ns 1357650 1c000e84 00130313 addi x6, x6, 1 x6=1c00af5b x6:1c00af5a +75484861ns 1357651 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000049d +75484940ns 1357655 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af5b PA:1c00af5b +75484960ns 1357656 1c000e82 fff60613 addi x12, x12, -1 x12=0000049c x12:0000049d +75484979ns 1357657 1c000e84 00130313 addi x6, x6, 1 x6=1c00af5c x6:1c00af5b +75484999ns 1357658 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000049c +75485078ns 1357662 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af5c PA:1c00af5c +75485098ns 1357663 1c000e82 fff60613 addi x12, x12, -1 x12=0000049b x12:0000049c +75485118ns 1357664 1c000e84 00130313 addi x6, x6, 1 x6=1c00af5d x6:1c00af5c +75485138ns 1357665 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000049b +75485217ns 1357669 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af5d PA:1c00af5d +75485237ns 1357670 1c000e82 fff60613 addi x12, x12, -1 x12=0000049a x12:0000049b +75485257ns 1357671 1c000e84 00130313 addi x6, x6, 1 x6=1c00af5e x6:1c00af5d +75485276ns 1357672 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000049a +75485356ns 1357676 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af5e PA:1c00af5e +75485375ns 1357677 1c000e82 fff60613 addi x12, x12, -1 x12=00000499 x12:0000049a +75485395ns 1357678 1c000e84 00130313 addi x6, x6, 1 x6=1c00af5f x6:1c00af5e +75485415ns 1357679 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000499 +75485494ns 1357683 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af5f PA:1c00af5f +75485514ns 1357684 1c000e82 fff60613 addi x12, x12, -1 x12=00000498 x12:00000499 +75485534ns 1357685 1c000e84 00130313 addi x6, x6, 1 x6=1c00af60 x6:1c00af5f +75485553ns 1357686 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000498 +75485633ns 1357690 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af60 PA:1c00af60 +75485652ns 1357691 1c000e82 fff60613 addi x12, x12, -1 x12=00000497 x12:00000498 +75485672ns 1357692 1c000e84 00130313 addi x6, x6, 1 x6=1c00af61 x6:1c00af60 +75485692ns 1357693 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000497 +75485771ns 1357697 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af61 PA:1c00af61 +75485791ns 1357698 1c000e82 fff60613 addi x12, x12, -1 x12=00000496 x12:00000497 +75485811ns 1357699 1c000e84 00130313 addi x6, x6, 1 x6=1c00af62 x6:1c00af61 +75485831ns 1357700 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000496 +75485910ns 1357704 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af62 PA:1c00af62 +75485930ns 1357705 1c000e82 fff60613 addi x12, x12, -1 x12=00000495 x12:00000496 +75485949ns 1357706 1c000e84 00130313 addi x6, x6, 1 x6=1c00af63 x6:1c00af62 +75485969ns 1357707 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000495 +75486048ns 1357711 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af63 PA:1c00af63 +75486068ns 1357712 1c000e82 fff60613 addi x12, x12, -1 x12=00000494 x12:00000495 +75486088ns 1357713 1c000e84 00130313 addi x6, x6, 1 x6=1c00af64 x6:1c00af63 +75486108ns 1357714 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000494 +75486187ns 1357718 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af64 PA:1c00af64 +75486207ns 1357719 1c000e82 fff60613 addi x12, x12, -1 x12=00000493 x12:00000494 +75486226ns 1357720 1c000e84 00130313 addi x6, x6, 1 x6=1c00af65 x6:1c00af64 +75486246ns 1357721 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000493 +75486325ns 1357725 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af65 PA:1c00af65 +75486345ns 1357726 1c000e82 fff60613 addi x12, x12, -1 x12=00000492 x12:00000493 +75486365ns 1357727 1c000e84 00130313 addi x6, x6, 1 x6=1c00af66 x6:1c00af65 +75486385ns 1357728 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000492 +75486464ns 1357732 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af66 PA:1c00af66 +75486484ns 1357733 1c000e82 fff60613 addi x12, x12, -1 x12=00000491 x12:00000492 +75486503ns 1357734 1c000e84 00130313 addi x6, x6, 1 x6=1c00af67 x6:1c00af66 +75486523ns 1357735 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000491 +75486602ns 1357739 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af67 PA:1c00af67 +75486622ns 1357740 1c000e82 fff60613 addi x12, x12, -1 x12=00000490 x12:00000491 +75486642ns 1357741 1c000e84 00130313 addi x6, x6, 1 x6=1c00af68 x6:1c00af67 +75486662ns 1357742 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000490 +75486741ns 1357746 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af68 PA:1c00af68 +75486761ns 1357747 1c000e82 fff60613 addi x12, x12, -1 x12=0000048f x12:00000490 +75486781ns 1357748 1c000e84 00130313 addi x6, x6, 1 x6=1c00af69 x6:1c00af68 +75486800ns 1357749 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000048f +75486880ns 1357753 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af69 PA:1c00af69 +75486899ns 1357754 1c000e82 fff60613 addi x12, x12, -1 x12=0000048e x12:0000048f +75486919ns 1357755 1c000e84 00130313 addi x6, x6, 1 x6=1c00af6a x6:1c00af69 +75486939ns 1357756 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000048e +75487018ns 1357760 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af6a PA:1c00af6a +75487038ns 1357761 1c000e82 fff60613 addi x12, x12, -1 x12=0000048d x12:0000048e +75487058ns 1357762 1c000e84 00130313 addi x6, x6, 1 x6=1c00af6b x6:1c00af6a +75487077ns 1357763 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000048d +75487157ns 1357767 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af6b PA:1c00af6b +75487176ns 1357768 1c000e82 fff60613 addi x12, x12, -1 x12=0000048c x12:0000048d +75487196ns 1357769 1c000e84 00130313 addi x6, x6, 1 x6=1c00af6c x6:1c00af6b +75487216ns 1357770 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000048c +75487295ns 1357774 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af6c PA:1c00af6c +75487315ns 1357775 1c000e82 fff60613 addi x12, x12, -1 x12=0000048b x12:0000048c +75487335ns 1357776 1c000e84 00130313 addi x6, x6, 1 x6=1c00af6d x6:1c00af6c +75487355ns 1357777 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000048b +75487434ns 1357781 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af6d PA:1c00af6d +75487453ns 1357782 1c000e82 fff60613 addi x12, x12, -1 x12=0000048a x12:0000048b +75487473ns 1357783 1c000e84 00130313 addi x6, x6, 1 x6=1c00af6e x6:1c00af6d +75487493ns 1357784 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000048a +75487572ns 1357788 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af6e PA:1c00af6e +75487592ns 1357789 1c000e82 fff60613 addi x12, x12, -1 x12=00000489 x12:0000048a +75487612ns 1357790 1c000e84 00130313 addi x6, x6, 1 x6=1c00af6f x6:1c00af6e +75487632ns 1357791 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000489 +75487711ns 1357795 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af6f PA:1c00af6f +75487731ns 1357796 1c000e82 fff60613 addi x12, x12, -1 x12=00000488 x12:00000489 +75487750ns 1357797 1c000e84 00130313 addi x6, x6, 1 x6=1c00af70 x6:1c00af6f +75487770ns 1357798 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000488 +75487849ns 1357802 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af70 PA:1c00af70 +75487869ns 1357803 1c000e82 fff60613 addi x12, x12, -1 x12=00000487 x12:00000488 +75487889ns 1357804 1c000e84 00130313 addi x6, x6, 1 x6=1c00af71 x6:1c00af70 +75487909ns 1357805 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000487 +75487988ns 1357809 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af71 PA:1c00af71 +75488008ns 1357810 1c000e82 fff60613 addi x12, x12, -1 x12=00000486 x12:00000487 +75488027ns 1357811 1c000e84 00130313 addi x6, x6, 1 x6=1c00af72 x6:1c00af71 +75488047ns 1357812 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000486 +75488126ns 1357816 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af72 PA:1c00af72 +75488146ns 1357817 1c000e82 fff60613 addi x12, x12, -1 x12=00000485 x12:00000486 +75488166ns 1357818 1c000e84 00130313 addi x6, x6, 1 x6=1c00af73 x6:1c00af72 +75488186ns 1357819 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000485 +75488265ns 1357823 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af73 PA:1c00af73 +75488285ns 1357824 1c000e82 fff60613 addi x12, x12, -1 x12=00000484 x12:00000485 +75488305ns 1357825 1c000e84 00130313 addi x6, x6, 1 x6=1c00af74 x6:1c00af73 +75488324ns 1357826 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000484 +75488404ns 1357830 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af74 PA:1c00af74 +75488423ns 1357831 1c000e82 fff60613 addi x12, x12, -1 x12=00000483 x12:00000484 +75488443ns 1357832 1c000e84 00130313 addi x6, x6, 1 x6=1c00af75 x6:1c00af74 +75488463ns 1357833 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000483 +75488542ns 1357837 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af75 PA:1c00af75 +75488562ns 1357838 1c000e82 fff60613 addi x12, x12, -1 x12=00000482 x12:00000483 +75488582ns 1357839 1c000e84 00130313 addi x6, x6, 1 x6=1c00af76 x6:1c00af75 +75488601ns 1357840 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000482 +75488681ns 1357844 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af76 PA:1c00af76 +75488700ns 1357845 1c000e82 fff60613 addi x12, x12, -1 x12=00000481 x12:00000482 +75488720ns 1357846 1c000e84 00130313 addi x6, x6, 1 x6=1c00af77 x6:1c00af76 +75488740ns 1357847 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000481 +75488819ns 1357851 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af77 PA:1c00af77 +75488839ns 1357852 1c000e82 fff60613 addi x12, x12, -1 x12=00000480 x12:00000481 +75488859ns 1357853 1c000e84 00130313 addi x6, x6, 1 x6=1c00af78 x6:1c00af77 +75488879ns 1357854 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000480 +75488958ns 1357858 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af78 PA:1c00af78 +75488977ns 1357859 1c000e82 fff60613 addi x12, x12, -1 x12=0000047f x12:00000480 +75488997ns 1357860 1c000e84 00130313 addi x6, x6, 1 x6=1c00af79 x6:1c00af78 +75489017ns 1357861 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000047f +75489096ns 1357865 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af79 PA:1c00af79 +75489116ns 1357866 1c000e82 fff60613 addi x12, x12, -1 x12=0000047e x12:0000047f +75489136ns 1357867 1c000e84 00130313 addi x6, x6, 1 x6=1c00af7a x6:1c00af79 +75489156ns 1357868 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000047e +75489235ns 1357872 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af7a PA:1c00af7a +75489255ns 1357873 1c000e82 fff60613 addi x12, x12, -1 x12=0000047d x12:0000047e +75489274ns 1357874 1c000e84 00130313 addi x6, x6, 1 x6=1c00af7b x6:1c00af7a +75489294ns 1357875 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000047d +75489373ns 1357879 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af7b PA:1c00af7b +75489393ns 1357880 1c000e82 fff60613 addi x12, x12, -1 x12=0000047c x12:0000047d +75489413ns 1357881 1c000e84 00130313 addi x6, x6, 1 x6=1c00af7c x6:1c00af7b +75489433ns 1357882 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000047c +75489512ns 1357886 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af7c PA:1c00af7c +75489532ns 1357887 1c000e82 fff60613 addi x12, x12, -1 x12=0000047b x12:0000047c +75489551ns 1357888 1c000e84 00130313 addi x6, x6, 1 x6=1c00af7d x6:1c00af7c +75489571ns 1357889 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000047b +75489650ns 1357893 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af7d PA:1c00af7d +75489670ns 1357894 1c000e82 fff60613 addi x12, x12, -1 x12=0000047a x12:0000047b +75489690ns 1357895 1c000e84 00130313 addi x6, x6, 1 x6=1c00af7e x6:1c00af7d +75489710ns 1357896 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000047a +75489789ns 1357900 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af7e PA:1c00af7e +75489809ns 1357901 1c000e82 fff60613 addi x12, x12, -1 x12=00000479 x12:0000047a +75489829ns 1357902 1c000e84 00130313 addi x6, x6, 1 x6=1c00af7f x6:1c00af7e +75489848ns 1357903 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000479 +75489927ns 1357907 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af7f PA:1c00af7f +75489947ns 1357908 1c000e82 fff60613 addi x12, x12, -1 x12=00000478 x12:00000479 +75489967ns 1357909 1c000e84 00130313 addi x6, x6, 1 x6=1c00af80 x6:1c00af7f +75489987ns 1357910 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000478 +75490066ns 1357914 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af80 PA:1c00af80 +75490086ns 1357915 1c000e82 fff60613 addi x12, x12, -1 x12=00000477 x12:00000478 +75490106ns 1357916 1c000e84 00130313 addi x6, x6, 1 x6=1c00af81 x6:1c00af80 +75490125ns 1357917 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000477 +75490205ns 1357921 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af81 PA:1c00af81 +75490224ns 1357922 1c000e82 fff60613 addi x12, x12, -1 x12=00000476 x12:00000477 +75490244ns 1357923 1c000e84 00130313 addi x6, x6, 1 x6=1c00af82 x6:1c00af81 +75490264ns 1357924 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000476 +75490343ns 1357928 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af82 PA:1c00af82 +75490363ns 1357929 1c000e82 fff60613 addi x12, x12, -1 x12=00000475 x12:00000476 +75490383ns 1357930 1c000e84 00130313 addi x6, x6, 1 x6=1c00af83 x6:1c00af82 +75490403ns 1357931 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000475 +75490482ns 1357935 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af83 PA:1c00af83 +75490501ns 1357936 1c000e82 fff60613 addi x12, x12, -1 x12=00000474 x12:00000475 +75490521ns 1357937 1c000e84 00130313 addi x6, x6, 1 x6=1c00af84 x6:1c00af83 +75490541ns 1357938 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000474 +75490620ns 1357942 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af84 PA:1c00af84 +75490640ns 1357943 1c000e82 fff60613 addi x12, x12, -1 x12=00000473 x12:00000474 +75490660ns 1357944 1c000e84 00130313 addi x6, x6, 1 x6=1c00af85 x6:1c00af84 +75490680ns 1357945 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000473 +75490759ns 1357949 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af85 PA:1c00af85 +75490779ns 1357950 1c000e82 fff60613 addi x12, x12, -1 x12=00000472 x12:00000473 +75490798ns 1357951 1c000e84 00130313 addi x6, x6, 1 x6=1c00af86 x6:1c00af85 +75490818ns 1357952 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000472 +75490897ns 1357956 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af86 PA:1c00af86 +75490917ns 1357957 1c000e82 fff60613 addi x12, x12, -1 x12=00000471 x12:00000472 +75490937ns 1357958 1c000e84 00130313 addi x6, x6, 1 x6=1c00af87 x6:1c00af86 +75490957ns 1357959 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000471 +75491036ns 1357963 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af87 PA:1c00af87 +75491056ns 1357964 1c000e82 fff60613 addi x12, x12, -1 x12=00000470 x12:00000471 +75491075ns 1357965 1c000e84 00130313 addi x6, x6, 1 x6=1c00af88 x6:1c00af87 +75491095ns 1357966 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000470 +75491174ns 1357970 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af88 PA:1c00af88 +75491194ns 1357971 1c000e82 fff60613 addi x12, x12, -1 x12=0000046f x12:00000470 +75491214ns 1357972 1c000e84 00130313 addi x6, x6, 1 x6=1c00af89 x6:1c00af88 +75491234ns 1357973 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000046f +75491313ns 1357977 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af89 PA:1c00af89 +75491333ns 1357978 1c000e82 fff60613 addi x12, x12, -1 x12=0000046e x12:0000046f +75491353ns 1357979 1c000e84 00130313 addi x6, x6, 1 x6=1c00af8a x6:1c00af89 +75491372ns 1357980 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000046e +75491451ns 1357984 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af8a PA:1c00af8a +75491471ns 1357985 1c000e82 fff60613 addi x12, x12, -1 x12=0000046d x12:0000046e +75491491ns 1357986 1c000e84 00130313 addi x6, x6, 1 x6=1c00af8b x6:1c00af8a +75491511ns 1357987 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000046d +75491590ns 1357991 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af8b PA:1c00af8b +75491610ns 1357992 1c000e82 fff60613 addi x12, x12, -1 x12=0000046c x12:0000046d +75491630ns 1357993 1c000e84 00130313 addi x6, x6, 1 x6=1c00af8c x6:1c00af8b +75491649ns 1357994 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000046c +75491729ns 1357998 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af8c PA:1c00af8c +75491748ns 1357999 1c000e82 fff60613 addi x12, x12, -1 x12=0000046b x12:0000046c +75491768ns 1358000 1c000e84 00130313 addi x6, x6, 1 x6=1c00af8d x6:1c00af8c +75491788ns 1358001 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000046b +75491867ns 1358005 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af8d PA:1c00af8d +75491887ns 1358006 1c000e82 fff60613 addi x12, x12, -1 x12=0000046a x12:0000046b +75491907ns 1358007 1c000e84 00130313 addi x6, x6, 1 x6=1c00af8e x6:1c00af8d +75491926ns 1358008 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000046a +75492006ns 1358012 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af8e PA:1c00af8e +75492025ns 1358013 1c000e82 fff60613 addi x12, x12, -1 x12=00000469 x12:0000046a +75492045ns 1358014 1c000e84 00130313 addi x6, x6, 1 x6=1c00af8f x6:1c00af8e +75492065ns 1358015 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000469 +75492144ns 1358019 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af8f PA:1c00af8f +75492164ns 1358020 1c000e82 fff60613 addi x12, x12, -1 x12=00000468 x12:00000469 +75492184ns 1358021 1c000e84 00130313 addi x6, x6, 1 x6=1c00af90 x6:1c00af8f +75492204ns 1358022 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000468 +75492283ns 1358026 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af90 PA:1c00af90 +75492303ns 1358027 1c000e82 fff60613 addi x12, x12, -1 x12=00000467 x12:00000468 +75492322ns 1358028 1c000e84 00130313 addi x6, x6, 1 x6=1c00af91 x6:1c00af90 +75492342ns 1358029 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000467 +75492421ns 1358033 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af91 PA:1c00af91 +75492441ns 1358034 1c000e82 fff60613 addi x12, x12, -1 x12=00000466 x12:00000467 +75492461ns 1358035 1c000e84 00130313 addi x6, x6, 1 x6=1c00af92 x6:1c00af91 +75492481ns 1358036 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000466 +75492560ns 1358040 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af92 PA:1c00af92 +75492580ns 1358041 1c000e82 fff60613 addi x12, x12, -1 x12=00000465 x12:00000466 +75492599ns 1358042 1c000e84 00130313 addi x6, x6, 1 x6=1c00af93 x6:1c00af92 +75492619ns 1358043 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000465 +75492698ns 1358047 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af93 PA:1c00af93 +75492718ns 1358048 1c000e82 fff60613 addi x12, x12, -1 x12=00000464 x12:00000465 +75492738ns 1358049 1c000e84 00130313 addi x6, x6, 1 x6=1c00af94 x6:1c00af93 +75492758ns 1358050 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000464 +75492837ns 1358054 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af94 PA:1c00af94 +75492857ns 1358055 1c000e82 fff60613 addi x12, x12, -1 x12=00000463 x12:00000464 +75492877ns 1358056 1c000e84 00130313 addi x6, x6, 1 x6=1c00af95 x6:1c00af94 +75492896ns 1358057 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000463 +75492975ns 1358061 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af95 PA:1c00af95 +75492995ns 1358062 1c000e82 fff60613 addi x12, x12, -1 x12=00000462 x12:00000463 +75493015ns 1358063 1c000e84 00130313 addi x6, x6, 1 x6=1c00af96 x6:1c00af95 +75493035ns 1358064 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000462 +75493114ns 1358068 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af96 PA:1c00af96 +75493134ns 1358069 1c000e82 fff60613 addi x12, x12, -1 x12=00000461 x12:00000462 +75493154ns 1358070 1c000e84 00130313 addi x6, x6, 1 x6=1c00af97 x6:1c00af96 +75493173ns 1358071 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000461 +75493253ns 1358075 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af97 PA:1c00af97 +75493272ns 1358076 1c000e82 fff60613 addi x12, x12, -1 x12=00000460 x12:00000461 +75493292ns 1358077 1c000e84 00130313 addi x6, x6, 1 x6=1c00af98 x6:1c00af97 +75493312ns 1358078 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000460 +75493391ns 1358082 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af98 PA:1c00af98 +75493411ns 1358083 1c000e82 fff60613 addi x12, x12, -1 x12=0000045f x12:00000460 +75493431ns 1358084 1c000e84 00130313 addi x6, x6, 1 x6=1c00af99 x6:1c00af98 +75493450ns 1358085 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000045f +75493530ns 1358089 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af99 PA:1c00af99 +75493549ns 1358090 1c000e82 fff60613 addi x12, x12, -1 x12=0000045e x12:0000045f +75493569ns 1358091 1c000e84 00130313 addi x6, x6, 1 x6=1c00af9a x6:1c00af99 +75493589ns 1358092 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000045e +75493668ns 1358096 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af9a PA:1c00af9a +75493688ns 1358097 1c000e82 fff60613 addi x12, x12, -1 x12=0000045d x12:0000045e +75493708ns 1358098 1c000e84 00130313 addi x6, x6, 1 x6=1c00af9b x6:1c00af9a +75493728ns 1358099 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000045d +75493807ns 1358103 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af9b PA:1c00af9b +75493827ns 1358104 1c000e82 fff60613 addi x12, x12, -1 x12=0000045c x12:0000045d +75493846ns 1358105 1c000e84 00130313 addi x6, x6, 1 x6=1c00af9c x6:1c00af9b +75493866ns 1358106 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000045c +75493945ns 1358110 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af9c PA:1c00af9c +75493965ns 1358111 1c000e82 fff60613 addi x12, x12, -1 x12=0000045b x12:0000045c +75493985ns 1358112 1c000e84 00130313 addi x6, x6, 1 x6=1c00af9d x6:1c00af9c +75494005ns 1358113 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000045b +75494084ns 1358117 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af9d PA:1c00af9d +75494104ns 1358118 1c000e82 fff60613 addi x12, x12, -1 x12=0000045a x12:0000045b +75494123ns 1358119 1c000e84 00130313 addi x6, x6, 1 x6=1c00af9e x6:1c00af9d +75494143ns 1358120 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000045a +75494222ns 1358124 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af9e PA:1c00af9e +75494242ns 1358125 1c000e82 fff60613 addi x12, x12, -1 x12=00000459 x12:0000045a +75494262ns 1358126 1c000e84 00130313 addi x6, x6, 1 x6=1c00af9f x6:1c00af9e +75494282ns 1358127 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000459 +75494361ns 1358131 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00af9f PA:1c00af9f +75494381ns 1358132 1c000e82 fff60613 addi x12, x12, -1 x12=00000458 x12:00000459 +75494400ns 1358133 1c000e84 00130313 addi x6, x6, 1 x6=1c00afa0 x6:1c00af9f +75494420ns 1358134 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000458 +75494499ns 1358138 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afa0 PA:1c00afa0 +75494519ns 1358139 1c000e82 fff60613 addi x12, x12, -1 x12=00000457 x12:00000458 +75494539ns 1358140 1c000e84 00130313 addi x6, x6, 1 x6=1c00afa1 x6:1c00afa0 +75494559ns 1358141 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000457 +75494638ns 1358145 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afa1 PA:1c00afa1 +75494658ns 1358146 1c000e82 fff60613 addi x12, x12, -1 x12=00000456 x12:00000457 +75494678ns 1358147 1c000e84 00130313 addi x6, x6, 1 x6=1c00afa2 x6:1c00afa1 +75494697ns 1358148 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000456 +75494777ns 1358152 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afa2 PA:1c00afa2 +75494796ns 1358153 1c000e82 fff60613 addi x12, x12, -1 x12=00000455 x12:00000456 +75494816ns 1358154 1c000e84 00130313 addi x6, x6, 1 x6=1c00afa3 x6:1c00afa2 +75494836ns 1358155 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000455 +75494915ns 1358159 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afa3 PA:1c00afa3 +75494935ns 1358160 1c000e82 fff60613 addi x12, x12, -1 x12=00000454 x12:00000455 +75494955ns 1358161 1c000e84 00130313 addi x6, x6, 1 x6=1c00afa4 x6:1c00afa3 +75494974ns 1358162 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000454 +75495054ns 1358166 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afa4 PA:1c00afa4 +75495073ns 1358167 1c000e82 fff60613 addi x12, x12, -1 x12=00000453 x12:00000454 +75495093ns 1358168 1c000e84 00130313 addi x6, x6, 1 x6=1c00afa5 x6:1c00afa4 +75495113ns 1358169 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000453 +75495192ns 1358173 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afa5 PA:1c00afa5 +75495212ns 1358174 1c000e82 fff60613 addi x12, x12, -1 x12=00000452 x12:00000453 +75495232ns 1358175 1c000e84 00130313 addi x6, x6, 1 x6=1c00afa6 x6:1c00afa5 +75495252ns 1358176 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000452 +75495331ns 1358180 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afa6 PA:1c00afa6 +75495351ns 1358181 1c000e82 fff60613 addi x12, x12, -1 x12=00000451 x12:00000452 +75495370ns 1358182 1c000e84 00130313 addi x6, x6, 1 x6=1c00afa7 x6:1c00afa6 +75495390ns 1358183 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000451 +75495469ns 1358187 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afa7 PA:1c00afa7 +75495489ns 1358188 1c000e82 fff60613 addi x12, x12, -1 x12=00000450 x12:00000451 +75495509ns 1358189 1c000e84 00130313 addi x6, x6, 1 x6=1c00afa8 x6:1c00afa7 +75495529ns 1358190 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000450 +75495608ns 1358194 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afa8 PA:1c00afa8 +75495628ns 1358195 1c000e82 fff60613 addi x12, x12, -1 x12=0000044f x12:00000450 +75495647ns 1358196 1c000e84 00130313 addi x6, x6, 1 x6=1c00afa9 x6:1c00afa8 +75495667ns 1358197 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000044f +75495746ns 1358201 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afa9 PA:1c00afa9 +75495766ns 1358202 1c000e82 fff60613 addi x12, x12, -1 x12=0000044e x12:0000044f +75495786ns 1358203 1c000e84 00130313 addi x6, x6, 1 x6=1c00afaa x6:1c00afa9 +75495806ns 1358204 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000044e +75495885ns 1358208 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afaa PA:1c00afaa +75495905ns 1358209 1c000e82 fff60613 addi x12, x12, -1 x12=0000044d x12:0000044e +75495924ns 1358210 1c000e84 00130313 addi x6, x6, 1 x6=1c00afab x6:1c00afaa +75495944ns 1358211 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000044d +75496023ns 1358215 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afab PA:1c00afab +75496043ns 1358216 1c000e82 fff60613 addi x12, x12, -1 x12=0000044c x12:0000044d +75496063ns 1358217 1c000e84 00130313 addi x6, x6, 1 x6=1c00afac x6:1c00afab +75496083ns 1358218 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000044c +75496162ns 1358222 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afac PA:1c00afac +75496182ns 1358223 1c000e82 fff60613 addi x12, x12, -1 x12=0000044b x12:0000044c +75496202ns 1358224 1c000e84 00130313 addi x6, x6, 1 x6=1c00afad x6:1c00afac +75496221ns 1358225 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000044b +75496301ns 1358229 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afad PA:1c00afad +75496320ns 1358230 1c000e82 fff60613 addi x12, x12, -1 x12=0000044a x12:0000044b +75496340ns 1358231 1c000e84 00130313 addi x6, x6, 1 x6=1c00afae x6:1c00afad +75496360ns 1358232 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000044a +75496439ns 1358236 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afae PA:1c00afae +75496459ns 1358237 1c000e82 fff60613 addi x12, x12, -1 x12=00000449 x12:0000044a +75496479ns 1358238 1c000e84 00130313 addi x6, x6, 1 x6=1c00afaf x6:1c00afae +75496498ns 1358239 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000449 +75496578ns 1358243 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afaf PA:1c00afaf +75496597ns 1358244 1c000e82 fff60613 addi x12, x12, -1 x12=00000448 x12:00000449 +75496617ns 1358245 1c000e84 00130313 addi x6, x6, 1 x6=1c00afb0 x6:1c00afaf +75496637ns 1358246 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000448 +75496716ns 1358250 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afb0 PA:1c00afb0 +75496736ns 1358251 1c000e82 fff60613 addi x12, x12, -1 x12=00000447 x12:00000448 +75496756ns 1358252 1c000e84 00130313 addi x6, x6, 1 x6=1c00afb1 x6:1c00afb0 +75496776ns 1358253 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000447 +75496855ns 1358257 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afb1 PA:1c00afb1 +75496874ns 1358258 1c000e82 fff60613 addi x12, x12, -1 x12=00000446 x12:00000447 +75496894ns 1358259 1c000e84 00130313 addi x6, x6, 1 x6=1c00afb2 x6:1c00afb1 +75496914ns 1358260 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000446 +75496993ns 1358264 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afb2 PA:1c00afb2 +75497013ns 1358265 1c000e82 fff60613 addi x12, x12, -1 x12=00000445 x12:00000446 +75497033ns 1358266 1c000e84 00130313 addi x6, x6, 1 x6=1c00afb3 x6:1c00afb2 +75497053ns 1358267 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000445 +75497132ns 1358271 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afb3 PA:1c00afb3 +75497152ns 1358272 1c000e82 fff60613 addi x12, x12, -1 x12=00000444 x12:00000445 +75497171ns 1358273 1c000e84 00130313 addi x6, x6, 1 x6=1c00afb4 x6:1c00afb3 +75497191ns 1358274 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000444 +75497270ns 1358278 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afb4 PA:1c00afb4 +75497290ns 1358279 1c000e82 fff60613 addi x12, x12, -1 x12=00000443 x12:00000444 +75497310ns 1358280 1c000e84 00130313 addi x6, x6, 1 x6=1c00afb5 x6:1c00afb4 +75497330ns 1358281 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000443 +75497409ns 1358285 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afb5 PA:1c00afb5 +75497429ns 1358286 1c000e82 fff60613 addi x12, x12, -1 x12=00000442 x12:00000443 +75497448ns 1358287 1c000e84 00130313 addi x6, x6, 1 x6=1c00afb6 x6:1c00afb5 +75497468ns 1358288 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000442 +75497547ns 1358292 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afb6 PA:1c00afb6 +75497567ns 1358293 1c000e82 fff60613 addi x12, x12, -1 x12=00000441 x12:00000442 +75497587ns 1358294 1c000e84 00130313 addi x6, x6, 1 x6=1c00afb7 x6:1c00afb6 +75497607ns 1358295 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000441 +75497686ns 1358299 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afb7 PA:1c00afb7 +75497706ns 1358300 1c000e82 fff60613 addi x12, x12, -1 x12=00000440 x12:00000441 +75497726ns 1358301 1c000e84 00130313 addi x6, x6, 1 x6=1c00afb8 x6:1c00afb7 +75497745ns 1358302 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000440 +75497825ns 1358306 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afb8 PA:1c00afb8 +75497844ns 1358307 1c000e82 fff60613 addi x12, x12, -1 x12=0000043f x12:00000440 +75497864ns 1358308 1c000e84 00130313 addi x6, x6, 1 x6=1c00afb9 x6:1c00afb8 +75497884ns 1358309 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000043f +75497963ns 1358313 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afb9 PA:1c00afb9 +75497983ns 1358314 1c000e82 fff60613 addi x12, x12, -1 x12=0000043e x12:0000043f +75498003ns 1358315 1c000e84 00130313 addi x6, x6, 1 x6=1c00afba x6:1c00afb9 +75498022ns 1358316 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000043e +75498102ns 1358320 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afba PA:1c00afba +75498121ns 1358321 1c000e82 fff60613 addi x12, x12, -1 x12=0000043d x12:0000043e +75498141ns 1358322 1c000e84 00130313 addi x6, x6, 1 x6=1c00afbb x6:1c00afba +75498161ns 1358323 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000043d +75498240ns 1358327 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afbb PA:1c00afbb +75498260ns 1358328 1c000e82 fff60613 addi x12, x12, -1 x12=0000043c x12:0000043d +75498280ns 1358329 1c000e84 00130313 addi x6, x6, 1 x6=1c00afbc x6:1c00afbb +75498300ns 1358330 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000043c +75498379ns 1358334 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afbc PA:1c00afbc +75498398ns 1358335 1c000e82 fff60613 addi x12, x12, -1 x12=0000043b x12:0000043c +75498418ns 1358336 1c000e84 00130313 addi x6, x6, 1 x6=1c00afbd x6:1c00afbc +75498438ns 1358337 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000043b +75498517ns 1358341 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afbd PA:1c00afbd +75498537ns 1358342 1c000e82 fff60613 addi x12, x12, -1 x12=0000043a x12:0000043b +75498557ns 1358343 1c000e84 00130313 addi x6, x6, 1 x6=1c00afbe x6:1c00afbd +75498577ns 1358344 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000043a +75498656ns 1358348 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afbe PA:1c00afbe +75498676ns 1358349 1c000e82 fff60613 addi x12, x12, -1 x12=00000439 x12:0000043a +75498695ns 1358350 1c000e84 00130313 addi x6, x6, 1 x6=1c00afbf x6:1c00afbe +75498715ns 1358351 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000439 +75498794ns 1358355 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afbf PA:1c00afbf +75498814ns 1358356 1c000e82 fff60613 addi x12, x12, -1 x12=00000438 x12:00000439 +75498834ns 1358357 1c000e84 00130313 addi x6, x6, 1 x6=1c00afc0 x6:1c00afbf +75498854ns 1358358 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000438 +75498933ns 1358362 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afc0 PA:1c00afc0 +75498953ns 1358363 1c000e82 fff60613 addi x12, x12, -1 x12=00000437 x12:00000438 +75498972ns 1358364 1c000e84 00130313 addi x6, x6, 1 x6=1c00afc1 x6:1c00afc0 +75498992ns 1358365 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000437 +75499071ns 1358369 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afc1 PA:1c00afc1 +75499091ns 1358370 1c000e82 fff60613 addi x12, x12, -1 x12=00000436 x12:00000437 +75499111ns 1358371 1c000e84 00130313 addi x6, x6, 1 x6=1c00afc2 x6:1c00afc1 +75499131ns 1358372 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000436 +75499210ns 1358376 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afc2 PA:1c00afc2 +75499230ns 1358377 1c000e82 fff60613 addi x12, x12, -1 x12=00000435 x12:00000436 +75499250ns 1358378 1c000e84 00130313 addi x6, x6, 1 x6=1c00afc3 x6:1c00afc2 +75499269ns 1358379 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000435 +75499348ns 1358383 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afc3 PA:1c00afc3 +75499368ns 1358384 1c000e82 fff60613 addi x12, x12, -1 x12=00000434 x12:00000435 +75499388ns 1358385 1c000e84 00130313 addi x6, x6, 1 x6=1c00afc4 x6:1c00afc3 +75499408ns 1358386 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000434 +75499487ns 1358390 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afc4 PA:1c00afc4 +75499507ns 1358391 1c000e82 fff60613 addi x12, x12, -1 x12=00000433 x12:00000434 +75499527ns 1358392 1c000e84 00130313 addi x6, x6, 1 x6=1c00afc5 x6:1c00afc4 +75499546ns 1358393 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000433 +75499626ns 1358397 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afc5 PA:1c00afc5 +75499645ns 1358398 1c000e82 fff60613 addi x12, x12, -1 x12=00000432 x12:00000433 +75499665ns 1358399 1c000e84 00130313 addi x6, x6, 1 x6=1c00afc6 x6:1c00afc5 +75499685ns 1358400 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000432 +75499764ns 1358404 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afc6 PA:1c00afc6 +75499784ns 1358405 1c000e82 fff60613 addi x12, x12, -1 x12=00000431 x12:00000432 +75499804ns 1358406 1c000e84 00130313 addi x6, x6, 1 x6=1c00afc7 x6:1c00afc6 +75499823ns 1358407 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000431 +75499903ns 1358411 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afc7 PA:1c00afc7 +75499922ns 1358412 1c000e82 fff60613 addi x12, x12, -1 x12=00000430 x12:00000431 +75499942ns 1358413 1c000e84 00130313 addi x6, x6, 1 x6=1c00afc8 x6:1c00afc7 +75499962ns 1358414 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000430 +75500041ns 1358418 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afc8 PA:1c00afc8 +75500061ns 1358419 1c000e82 fff60613 addi x12, x12, -1 x12=0000042f x12:00000430 +75500081ns 1358420 1c000e84 00130313 addi x6, x6, 1 x6=1c00afc9 x6:1c00afc8 +75500101ns 1358421 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000042f +75500180ns 1358425 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afc9 PA:1c00afc9 +75500200ns 1358426 1c000e82 fff60613 addi x12, x12, -1 x12=0000042e x12:0000042f +75500219ns 1358427 1c000e84 00130313 addi x6, x6, 1 x6=1c00afca x6:1c00afc9 +75500239ns 1358428 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000042e +75500318ns 1358432 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afca PA:1c00afca +75500338ns 1358433 1c000e82 fff60613 addi x12, x12, -1 x12=0000042d x12:0000042e +75500358ns 1358434 1c000e84 00130313 addi x6, x6, 1 x6=1c00afcb x6:1c00afca +75500378ns 1358435 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000042d +75500457ns 1358439 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afcb PA:1c00afcb +75500477ns 1358440 1c000e82 fff60613 addi x12, x12, -1 x12=0000042c x12:0000042d +75500496ns 1358441 1c000e84 00130313 addi x6, x6, 1 x6=1c00afcc x6:1c00afcb +75500516ns 1358442 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000042c +75500595ns 1358446 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afcc PA:1c00afcc +75500615ns 1358447 1c000e82 fff60613 addi x12, x12, -1 x12=0000042b x12:0000042c +75500635ns 1358448 1c000e84 00130313 addi x6, x6, 1 x6=1c00afcd x6:1c00afcc +75500655ns 1358449 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000042b +75500734ns 1358453 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afcd PA:1c00afcd +75500754ns 1358454 1c000e82 fff60613 addi x12, x12, -1 x12=0000042a x12:0000042b +75500774ns 1358455 1c000e84 00130313 addi x6, x6, 1 x6=1c00afce x6:1c00afcd +75500793ns 1358456 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000042a +75500872ns 1358460 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afce PA:1c00afce +75500892ns 1358461 1c000e82 fff60613 addi x12, x12, -1 x12=00000429 x12:0000042a +75500912ns 1358462 1c000e84 00130313 addi x6, x6, 1 x6=1c00afcf x6:1c00afce +75500932ns 1358463 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000429 +75501011ns 1358467 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afcf PA:1c00afcf +75501031ns 1358468 1c000e82 fff60613 addi x12, x12, -1 x12=00000428 x12:00000429 +75501051ns 1358469 1c000e84 00130313 addi x6, x6, 1 x6=1c00afd0 x6:1c00afcf +75501070ns 1358470 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000428 +75501150ns 1358474 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afd0 PA:1c00afd0 +75501169ns 1358475 1c000e82 fff60613 addi x12, x12, -1 x12=00000427 x12:00000428 +75501189ns 1358476 1c000e84 00130313 addi x6, x6, 1 x6=1c00afd1 x6:1c00afd0 +75501209ns 1358477 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000427 +75501288ns 1358481 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afd1 PA:1c00afd1 +75501308ns 1358482 1c000e82 fff60613 addi x12, x12, -1 x12=00000426 x12:00000427 +75501328ns 1358483 1c000e84 00130313 addi x6, x6, 1 x6=1c00afd2 x6:1c00afd1 +75501347ns 1358484 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000426 +75501427ns 1358488 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afd2 PA:1c00afd2 +75501446ns 1358489 1c000e82 fff60613 addi x12, x12, -1 x12=00000425 x12:00000426 +75501466ns 1358490 1c000e84 00130313 addi x6, x6, 1 x6=1c00afd3 x6:1c00afd2 +75501486ns 1358491 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000425 +75501565ns 1358495 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afd3 PA:1c00afd3 +75501585ns 1358496 1c000e82 fff60613 addi x12, x12, -1 x12=00000424 x12:00000425 +75501605ns 1358497 1c000e84 00130313 addi x6, x6, 1 x6=1c00afd4 x6:1c00afd3 +75501625ns 1358498 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000424 +75501704ns 1358502 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afd4 PA:1c00afd4 +75501724ns 1358503 1c000e82 fff60613 addi x12, x12, -1 x12=00000423 x12:00000424 +75501743ns 1358504 1c000e84 00130313 addi x6, x6, 1 x6=1c00afd5 x6:1c00afd4 +75501763ns 1358505 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000423 +75501842ns 1358509 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afd5 PA:1c00afd5 +75501862ns 1358510 1c000e82 fff60613 addi x12, x12, -1 x12=00000422 x12:00000423 +75501882ns 1358511 1c000e84 00130313 addi x6, x6, 1 x6=1c00afd6 x6:1c00afd5 +75501902ns 1358512 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000422 +75501981ns 1358516 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afd6 PA:1c00afd6 +75502001ns 1358517 1c000e82 fff60613 addi x12, x12, -1 x12=00000421 x12:00000422 +75502020ns 1358518 1c000e84 00130313 addi x6, x6, 1 x6=1c00afd7 x6:1c00afd6 +75502040ns 1358519 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000421 +75502119ns 1358523 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afd7 PA:1c00afd7 +75502139ns 1358524 1c000e82 fff60613 addi x12, x12, -1 x12=00000420 x12:00000421 +75502159ns 1358525 1c000e84 00130313 addi x6, x6, 1 x6=1c00afd8 x6:1c00afd7 +75502179ns 1358526 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000420 +75502258ns 1358530 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afd8 PA:1c00afd8 +75502278ns 1358531 1c000e82 fff60613 addi x12, x12, -1 x12=0000041f x12:00000420 +75502297ns 1358532 1c000e84 00130313 addi x6, x6, 1 x6=1c00afd9 x6:1c00afd8 +75502317ns 1358533 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000041f +75502396ns 1358537 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afd9 PA:1c00afd9 +75502416ns 1358538 1c000e82 fff60613 addi x12, x12, -1 x12=0000041e x12:0000041f +75502436ns 1358539 1c000e84 00130313 addi x6, x6, 1 x6=1c00afda x6:1c00afd9 +75502456ns 1358540 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000041e +75502535ns 1358544 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afda PA:1c00afda +75502555ns 1358545 1c000e82 fff60613 addi x12, x12, -1 x12=0000041d x12:0000041e +75502575ns 1358546 1c000e84 00130313 addi x6, x6, 1 x6=1c00afdb x6:1c00afda +75502594ns 1358547 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000041d +75502674ns 1358551 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afdb PA:1c00afdb +75502693ns 1358552 1c000e82 fff60613 addi x12, x12, -1 x12=0000041c x12:0000041d +75502713ns 1358553 1c000e84 00130313 addi x6, x6, 1 x6=1c00afdc x6:1c00afdb +75502733ns 1358554 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000041c +75502812ns 1358558 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afdc PA:1c00afdc +75502832ns 1358559 1c000e82 fff60613 addi x12, x12, -1 x12=0000041b x12:0000041c +75502852ns 1358560 1c000e84 00130313 addi x6, x6, 1 x6=1c00afdd x6:1c00afdc +75502871ns 1358561 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000041b +75502951ns 1358565 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afdd PA:1c00afdd +75502970ns 1358566 1c000e82 fff60613 addi x12, x12, -1 x12=0000041a x12:0000041b +75502990ns 1358567 1c000e84 00130313 addi x6, x6, 1 x6=1c00afde x6:1c00afdd +75503010ns 1358568 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000041a +75503089ns 1358572 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afde PA:1c00afde +75503109ns 1358573 1c000e82 fff60613 addi x12, x12, -1 x12=00000419 x12:0000041a +75503129ns 1358574 1c000e84 00130313 addi x6, x6, 1 x6=1c00afdf x6:1c00afde +75503149ns 1358575 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000419 +75503228ns 1358579 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afdf PA:1c00afdf +75503248ns 1358580 1c000e82 fff60613 addi x12, x12, -1 x12=00000418 x12:00000419 +75503267ns 1358581 1c000e84 00130313 addi x6, x6, 1 x6=1c00afe0 x6:1c00afdf +75503287ns 1358582 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000418 +75503366ns 1358586 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afe0 PA:1c00afe0 +75503386ns 1358587 1c000e82 fff60613 addi x12, x12, -1 x12=00000417 x12:00000418 +75503406ns 1358588 1c000e84 00130313 addi x6, x6, 1 x6=1c00afe1 x6:1c00afe0 +75503426ns 1358589 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000417 +75503505ns 1358593 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afe1 PA:1c00afe1 +75503525ns 1358594 1c000e82 fff60613 addi x12, x12, -1 x12=00000416 x12:00000417 +75503544ns 1358595 1c000e84 00130313 addi x6, x6, 1 x6=1c00afe2 x6:1c00afe1 +75503564ns 1358596 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000416 +75503643ns 1358600 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afe2 PA:1c00afe2 +75503663ns 1358601 1c000e82 fff60613 addi x12, x12, -1 x12=00000415 x12:00000416 +75503683ns 1358602 1c000e84 00130313 addi x6, x6, 1 x6=1c00afe3 x6:1c00afe2 +75503703ns 1358603 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000415 +75503782ns 1358607 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afe3 PA:1c00afe3 +75503802ns 1358608 1c000e82 fff60613 addi x12, x12, -1 x12=00000414 x12:00000415 +75503821ns 1358609 1c000e84 00130313 addi x6, x6, 1 x6=1c00afe4 x6:1c00afe3 +75503841ns 1358610 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000414 +75503920ns 1358614 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afe4 PA:1c00afe4 +75503940ns 1358615 1c000e82 fff60613 addi x12, x12, -1 x12=00000413 x12:00000414 +75503960ns 1358616 1c000e84 00130313 addi x6, x6, 1 x6=1c00afe5 x6:1c00afe4 +75503980ns 1358617 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000413 +75504059ns 1358621 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afe5 PA:1c00afe5 +75504079ns 1358622 1c000e82 fff60613 addi x12, x12, -1 x12=00000412 x12:00000413 +75504099ns 1358623 1c000e84 00130313 addi x6, x6, 1 x6=1c00afe6 x6:1c00afe5 +75504118ns 1358624 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000412 +75504198ns 1358628 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afe6 PA:1c00afe6 +75504217ns 1358629 1c000e82 fff60613 addi x12, x12, -1 x12=00000411 x12:00000412 +75504237ns 1358630 1c000e84 00130313 addi x6, x6, 1 x6=1c00afe7 x6:1c00afe6 +75504257ns 1358631 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000411 +75504336ns 1358635 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afe7 PA:1c00afe7 +75504356ns 1358636 1c000e82 fff60613 addi x12, x12, -1 x12=00000410 x12:00000411 +75504376ns 1358637 1c000e84 00130313 addi x6, x6, 1 x6=1c00afe8 x6:1c00afe7 +75504395ns 1358638 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000410 +75504475ns 1358642 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afe8 PA:1c00afe8 +75504494ns 1358643 1c000e82 fff60613 addi x12, x12, -1 x12=0000040f x12:00000410 +75504514ns 1358644 1c000e84 00130313 addi x6, x6, 1 x6=1c00afe9 x6:1c00afe8 +75504534ns 1358645 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000040f +75504613ns 1358649 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afe9 PA:1c00afe9 +75504633ns 1358650 1c000e82 fff60613 addi x12, x12, -1 x12=0000040e x12:0000040f +75504653ns 1358651 1c000e84 00130313 addi x6, x6, 1 x6=1c00afea x6:1c00afe9 +75504673ns 1358652 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000040e +75504752ns 1358656 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afea PA:1c00afea +75504771ns 1358657 1c000e82 fff60613 addi x12, x12, -1 x12=0000040d x12:0000040e +75504791ns 1358658 1c000e84 00130313 addi x6, x6, 1 x6=1c00afeb x6:1c00afea +75504811ns 1358659 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000040d +75504890ns 1358663 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afeb PA:1c00afeb +75504910ns 1358664 1c000e82 fff60613 addi x12, x12, -1 x12=0000040c x12:0000040d +75504930ns 1358665 1c000e84 00130313 addi x6, x6, 1 x6=1c00afec x6:1c00afeb +75504950ns 1358666 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000040c +75505029ns 1358670 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afec PA:1c00afec +75505049ns 1358671 1c000e82 fff60613 addi x12, x12, -1 x12=0000040b x12:0000040c +75505068ns 1358672 1c000e84 00130313 addi x6, x6, 1 x6=1c00afed x6:1c00afec +75505088ns 1358673 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000040b +75505167ns 1358677 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afed PA:1c00afed +75505187ns 1358678 1c000e82 fff60613 addi x12, x12, -1 x12=0000040a x12:0000040b +75505207ns 1358679 1c000e84 00130313 addi x6, x6, 1 x6=1c00afee x6:1c00afed +75505227ns 1358680 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000040a +75505306ns 1358684 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afee PA:1c00afee +75505326ns 1358685 1c000e82 fff60613 addi x12, x12, -1 x12=00000409 x12:0000040a +75505345ns 1358686 1c000e84 00130313 addi x6, x6, 1 x6=1c00afef x6:1c00afee +75505365ns 1358687 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000409 +75505444ns 1358691 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afef PA:1c00afef +75505464ns 1358692 1c000e82 fff60613 addi x12, x12, -1 x12=00000408 x12:00000409 +75505484ns 1358693 1c000e84 00130313 addi x6, x6, 1 x6=1c00aff0 x6:1c00afef +75505504ns 1358694 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000408 +75505583ns 1358698 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aff0 PA:1c00aff0 +75505603ns 1358699 1c000e82 fff60613 addi x12, x12, -1 x12=00000407 x12:00000408 +75505623ns 1358700 1c000e84 00130313 addi x6, x6, 1 x6=1c00aff1 x6:1c00aff0 +75505642ns 1358701 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000407 +75505722ns 1358705 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aff1 PA:1c00aff1 +75505741ns 1358706 1c000e82 fff60613 addi x12, x12, -1 x12=00000406 x12:00000407 +75505761ns 1358707 1c000e84 00130313 addi x6, x6, 1 x6=1c00aff2 x6:1c00aff1 +75505781ns 1358708 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000406 +75505860ns 1358712 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aff2 PA:1c00aff2 +75505880ns 1358713 1c000e82 fff60613 addi x12, x12, -1 x12=00000405 x12:00000406 +75505900ns 1358714 1c000e84 00130313 addi x6, x6, 1 x6=1c00aff3 x6:1c00aff2 +75505919ns 1358715 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000405 +75505999ns 1358719 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aff3 PA:1c00aff3 +75506018ns 1358720 1c000e82 fff60613 addi x12, x12, -1 x12=00000404 x12:00000405 +75506038ns 1358721 1c000e84 00130313 addi x6, x6, 1 x6=1c00aff4 x6:1c00aff3 +75506058ns 1358722 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000404 +75506137ns 1358726 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aff4 PA:1c00aff4 +75506157ns 1358727 1c000e82 fff60613 addi x12, x12, -1 x12=00000403 x12:00000404 +75506177ns 1358728 1c000e84 00130313 addi x6, x6, 1 x6=1c00aff5 x6:1c00aff4 +75506197ns 1358729 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000403 +75506276ns 1358733 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aff5 PA:1c00aff5 +75506295ns 1358734 1c000e82 fff60613 addi x12, x12, -1 x12=00000402 x12:00000403 +75506315ns 1358735 1c000e84 00130313 addi x6, x6, 1 x6=1c00aff6 x6:1c00aff5 +75506335ns 1358736 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000402 +75506414ns 1358740 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aff6 PA:1c00aff6 +75506434ns 1358741 1c000e82 fff60613 addi x12, x12, -1 x12=00000401 x12:00000402 +75506454ns 1358742 1c000e84 00130313 addi x6, x6, 1 x6=1c00aff7 x6:1c00aff6 +75506474ns 1358743 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000401 +75506553ns 1358747 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aff7 PA:1c00aff7 +75506573ns 1358748 1c000e82 fff60613 addi x12, x12, -1 x12=00000400 x12:00000401 +75506592ns 1358749 1c000e84 00130313 addi x6, x6, 1 x6=1c00aff8 x6:1c00aff7 +75506612ns 1358750 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000400 +75506691ns 1358754 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aff8 PA:1c00aff8 +75506711ns 1358755 1c000e82 fff60613 addi x12, x12, -1 x12=000003ff x12:00000400 +75506731ns 1358756 1c000e84 00130313 addi x6, x6, 1 x6=1c00aff9 x6:1c00aff8 +75506751ns 1358757 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ff +75506830ns 1358761 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00aff9 PA:1c00aff9 +75506850ns 1358762 1c000e82 fff60613 addi x12, x12, -1 x12=000003fe x12:000003ff +75506869ns 1358763 1c000e84 00130313 addi x6, x6, 1 x6=1c00affa x6:1c00aff9 +75506889ns 1358764 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003fe +75506968ns 1358768 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00affa PA:1c00affa +75506988ns 1358769 1c000e82 fff60613 addi x12, x12, -1 x12=000003fd x12:000003fe +75507008ns 1358770 1c000e84 00130313 addi x6, x6, 1 x6=1c00affb x6:1c00affa +75507028ns 1358771 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003fd +75507107ns 1358775 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00affb PA:1c00affb +75507127ns 1358776 1c000e82 fff60613 addi x12, x12, -1 x12=000003fc x12:000003fd +75507147ns 1358777 1c000e84 00130313 addi x6, x6, 1 x6=1c00affc x6:1c00affb +75507166ns 1358778 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003fc +75507245ns 1358782 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00affc PA:1c00affc +75507265ns 1358783 1c000e82 fff60613 addi x12, x12, -1 x12=000003fb x12:000003fc +75507285ns 1358784 1c000e84 00130313 addi x6, x6, 1 x6=1c00affd x6:1c00affc +75507305ns 1358785 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003fb +75507384ns 1358789 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00affd PA:1c00affd +75507404ns 1358790 1c000e82 fff60613 addi x12, x12, -1 x12=000003fa x12:000003fb +75507424ns 1358791 1c000e84 00130313 addi x6, x6, 1 x6=1c00affe x6:1c00affd +75507443ns 1358792 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003fa +75507523ns 1358796 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00affe PA:1c00affe +75507542ns 1358797 1c000e82 fff60613 addi x12, x12, -1 x12=000003f9 x12:000003fa +75507562ns 1358798 1c000e84 00130313 addi x6, x6, 1 x6=1c00afff x6:1c00affe +75507582ns 1358799 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003f9 +75507661ns 1358803 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00afff PA:1c00afff +75507681ns 1358804 1c000e82 fff60613 addi x12, x12, -1 x12=000003f8 x12:000003f9 +75507701ns 1358805 1c000e84 00130313 addi x6, x6, 1 x6=1c00b000 x6:1c00afff +75507721ns 1358806 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003f8 +75507800ns 1358810 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b000 PA:1c00b000 +75507819ns 1358811 1c000e82 fff60613 addi x12, x12, -1 x12=000003f7 x12:000003f8 +75507839ns 1358812 1c000e84 00130313 addi x6, x6, 1 x6=1c00b001 x6:1c00b000 +75507859ns 1358813 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003f7 +75507938ns 1358817 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b001 PA:1c00b001 +75507958ns 1358818 1c000e82 fff60613 addi x12, x12, -1 x12=000003f6 x12:000003f7 +75507978ns 1358819 1c000e84 00130313 addi x6, x6, 1 x6=1c00b002 x6:1c00b001 +75507998ns 1358820 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003f6 +75508077ns 1358824 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b002 PA:1c00b002 +75508097ns 1358825 1c000e82 fff60613 addi x12, x12, -1 x12=000003f5 x12:000003f6 +75508116ns 1358826 1c000e84 00130313 addi x6, x6, 1 x6=1c00b003 x6:1c00b002 +75508136ns 1358827 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003f5 +75508215ns 1358831 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b003 PA:1c00b003 +75508235ns 1358832 1c000e82 fff60613 addi x12, x12, -1 x12=000003f4 x12:000003f5 +75508255ns 1358833 1c000e84 00130313 addi x6, x6, 1 x6=1c00b004 x6:1c00b003 +75508275ns 1358834 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003f4 +75508354ns 1358838 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b004 PA:1c00b004 +75508374ns 1358839 1c000e82 fff60613 addi x12, x12, -1 x12=000003f3 x12:000003f4 +75508393ns 1358840 1c000e84 00130313 addi x6, x6, 1 x6=1c00b005 x6:1c00b004 +75508413ns 1358841 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003f3 +75508492ns 1358845 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b005 PA:1c00b005 +75508512ns 1358846 1c000e82 fff60613 addi x12, x12, -1 x12=000003f2 x12:000003f3 +75508532ns 1358847 1c000e84 00130313 addi x6, x6, 1 x6=1c00b006 x6:1c00b005 +75508552ns 1358848 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003f2 +75508631ns 1358852 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b006 PA:1c00b006 +75508651ns 1358853 1c000e82 fff60613 addi x12, x12, -1 x12=000003f1 x12:000003f2 +75508671ns 1358854 1c000e84 00130313 addi x6, x6, 1 x6=1c00b007 x6:1c00b006 +75508690ns 1358855 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003f1 +75508769ns 1358859 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b007 PA:1c00b007 +75508789ns 1358860 1c000e82 fff60613 addi x12, x12, -1 x12=000003f0 x12:000003f1 +75508809ns 1358861 1c000e84 00130313 addi x6, x6, 1 x6=1c00b008 x6:1c00b007 +75508829ns 1358862 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003f0 +75508908ns 1358866 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b008 PA:1c00b008 +75508928ns 1358867 1c000e82 fff60613 addi x12, x12, -1 x12=000003ef x12:000003f0 +75508948ns 1358868 1c000e84 00130313 addi x6, x6, 1 x6=1c00b009 x6:1c00b008 +75508967ns 1358869 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ef +75509047ns 1358873 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b009 PA:1c00b009 +75509066ns 1358874 1c000e82 fff60613 addi x12, x12, -1 x12=000003ee x12:000003ef +75509086ns 1358875 1c000e84 00130313 addi x6, x6, 1 x6=1c00b00a x6:1c00b009 +75509106ns 1358876 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ee +75509185ns 1358880 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b00a PA:1c00b00a +75509205ns 1358881 1c000e82 fff60613 addi x12, x12, -1 x12=000003ed x12:000003ee +75509225ns 1358882 1c000e84 00130313 addi x6, x6, 1 x6=1c00b00b x6:1c00b00a +75509244ns 1358883 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ed +75509324ns 1358887 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b00b PA:1c00b00b +75509343ns 1358888 1c000e82 fff60613 addi x12, x12, -1 x12=000003ec x12:000003ed +75509363ns 1358889 1c000e84 00130313 addi x6, x6, 1 x6=1c00b00c x6:1c00b00b +75509383ns 1358890 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ec +75509462ns 1358894 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b00c PA:1c00b00c +75509482ns 1358895 1c000e82 fff60613 addi x12, x12, -1 x12=000003eb x12:000003ec +75509502ns 1358896 1c000e84 00130313 addi x6, x6, 1 x6=1c00b00d x6:1c00b00c +75509522ns 1358897 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003eb +75509601ns 1358901 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b00d PA:1c00b00d +75509621ns 1358902 1c000e82 fff60613 addi x12, x12, -1 x12=000003ea x12:000003eb +75509640ns 1358903 1c000e84 00130313 addi x6, x6, 1 x6=1c00b00e x6:1c00b00d +75509660ns 1358904 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ea +75509739ns 1358908 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b00e PA:1c00b00e +75509759ns 1358909 1c000e82 fff60613 addi x12, x12, -1 x12=000003e9 x12:000003ea +75509779ns 1358910 1c000e84 00130313 addi x6, x6, 1 x6=1c00b00f x6:1c00b00e +75509799ns 1358911 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003e9 +75509878ns 1358915 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b00f PA:1c00b00f +75509898ns 1358916 1c000e82 fff60613 addi x12, x12, -1 x12=000003e8 x12:000003e9 +75509917ns 1358917 1c000e84 00130313 addi x6, x6, 1 x6=1c00b010 x6:1c00b00f +75509937ns 1358918 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003e8 +75510016ns 1358922 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b010 PA:1c00b010 +75510036ns 1358923 1c000e82 fff60613 addi x12, x12, -1 x12=000003e7 x12:000003e8 +75510056ns 1358924 1c000e84 00130313 addi x6, x6, 1 x6=1c00b011 x6:1c00b010 +75510076ns 1358925 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003e7 +75510155ns 1358929 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b011 PA:1c00b011 +75510175ns 1358930 1c000e82 fff60613 addi x12, x12, -1 x12=000003e6 x12:000003e7 +75510195ns 1358931 1c000e84 00130313 addi x6, x6, 1 x6=1c00b012 x6:1c00b011 +75510214ns 1358932 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003e6 +75510293ns 1358936 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b012 PA:1c00b012 +75510313ns 1358937 1c000e82 fff60613 addi x12, x12, -1 x12=000003e5 x12:000003e6 +75510333ns 1358938 1c000e84 00130313 addi x6, x6, 1 x6=1c00b013 x6:1c00b012 +75510353ns 1358939 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003e5 +75510432ns 1358943 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b013 PA:1c00b013 +75510452ns 1358944 1c000e82 fff60613 addi x12, x12, -1 x12=000003e4 x12:000003e5 +75510472ns 1358945 1c000e84 00130313 addi x6, x6, 1 x6=1c00b014 x6:1c00b013 +75510491ns 1358946 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003e4 +75510571ns 1358950 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b014 PA:1c00b014 +75510590ns 1358951 1c000e82 fff60613 addi x12, x12, -1 x12=000003e3 x12:000003e4 +75510610ns 1358952 1c000e84 00130313 addi x6, x6, 1 x6=1c00b015 x6:1c00b014 +75510630ns 1358953 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003e3 +75510709ns 1358957 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b015 PA:1c00b015 +75510729ns 1358958 1c000e82 fff60613 addi x12, x12, -1 x12=000003e2 x12:000003e3 +75510749ns 1358959 1c000e84 00130313 addi x6, x6, 1 x6=1c00b016 x6:1c00b015 +75510768ns 1358960 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003e2 +75510848ns 1358964 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b016 PA:1c00b016 +75510867ns 1358965 1c000e82 fff60613 addi x12, x12, -1 x12=000003e1 x12:000003e2 +75510887ns 1358966 1c000e84 00130313 addi x6, x6, 1 x6=1c00b017 x6:1c00b016 +75510907ns 1358967 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003e1 +75510986ns 1358971 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b017 PA:1c00b017 +75511006ns 1358972 1c000e82 fff60613 addi x12, x12, -1 x12=000003e0 x12:000003e1 +75511026ns 1358973 1c000e84 00130313 addi x6, x6, 1 x6=1c00b018 x6:1c00b017 +75511046ns 1358974 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003e0 +75511125ns 1358978 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b018 PA:1c00b018 +75511145ns 1358979 1c000e82 fff60613 addi x12, x12, -1 x12=000003df x12:000003e0 +75511164ns 1358980 1c000e84 00130313 addi x6, x6, 1 x6=1c00b019 x6:1c00b018 +75511184ns 1358981 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003df +75511263ns 1358985 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b019 PA:1c00b019 +75511283ns 1358986 1c000e82 fff60613 addi x12, x12, -1 x12=000003de x12:000003df +75511303ns 1358987 1c000e84 00130313 addi x6, x6, 1 x6=1c00b01a x6:1c00b019 +75511323ns 1358988 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003de +75511402ns 1358992 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b01a PA:1c00b01a +75511422ns 1358993 1c000e82 fff60613 addi x12, x12, -1 x12=000003dd x12:000003de +75511441ns 1358994 1c000e84 00130313 addi x6, x6, 1 x6=1c00b01b x6:1c00b01a +75511461ns 1358995 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003dd +75511540ns 1358999 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b01b PA:1c00b01b +75511560ns 1359000 1c000e82 fff60613 addi x12, x12, -1 x12=000003dc x12:000003dd +75511580ns 1359001 1c000e84 00130313 addi x6, x6, 1 x6=1c00b01c x6:1c00b01b +75511600ns 1359002 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003dc +75511679ns 1359006 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b01c PA:1c00b01c +75511699ns 1359007 1c000e82 fff60613 addi x12, x12, -1 x12=000003db x12:000003dc +75511718ns 1359008 1c000e84 00130313 addi x6, x6, 1 x6=1c00b01d x6:1c00b01c +75511738ns 1359009 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003db +75511817ns 1359013 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b01d PA:1c00b01d +75511837ns 1359014 1c000e82 fff60613 addi x12, x12, -1 x12=000003da x12:000003db +75511857ns 1359015 1c000e84 00130313 addi x6, x6, 1 x6=1c00b01e x6:1c00b01d +75511877ns 1359016 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003da +75511956ns 1359020 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b01e PA:1c00b01e +75511976ns 1359021 1c000e82 fff60613 addi x12, x12, -1 x12=000003d9 x12:000003da +75511996ns 1359022 1c000e84 00130313 addi x6, x6, 1 x6=1c00b01f x6:1c00b01e +75512015ns 1359023 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003d9 +75512095ns 1359027 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b01f PA:1c00b01f +75512114ns 1359028 1c000e82 fff60613 addi x12, x12, -1 x12=000003d8 x12:000003d9 +75512134ns 1359029 1c000e84 00130313 addi x6, x6, 1 x6=1c00b020 x6:1c00b01f +75512154ns 1359030 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003d8 +75512233ns 1359034 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b020 PA:1c00b020 +75512253ns 1359035 1c000e82 fff60613 addi x12, x12, -1 x12=000003d7 x12:000003d8 +75512273ns 1359036 1c000e84 00130313 addi x6, x6, 1 x6=1c00b021 x6:1c00b020 +75512292ns 1359037 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003d7 +75512372ns 1359041 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b021 PA:1c00b021 +75512391ns 1359042 1c000e82 fff60613 addi x12, x12, -1 x12=000003d6 x12:000003d7 +75512411ns 1359043 1c000e84 00130313 addi x6, x6, 1 x6=1c00b022 x6:1c00b021 +75512431ns 1359044 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003d6 +75512510ns 1359048 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b022 PA:1c00b022 +75512530ns 1359049 1c000e82 fff60613 addi x12, x12, -1 x12=000003d5 x12:000003d6 +75512550ns 1359050 1c000e84 00130313 addi x6, x6, 1 x6=1c00b023 x6:1c00b022 +75512570ns 1359051 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003d5 +75512649ns 1359055 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b023 PA:1c00b023 +75512669ns 1359056 1c000e82 fff60613 addi x12, x12, -1 x12=000003d4 x12:000003d5 +75512688ns 1359057 1c000e84 00130313 addi x6, x6, 1 x6=1c00b024 x6:1c00b023 +75512708ns 1359058 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003d4 +75512787ns 1359062 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b024 PA:1c00b024 +75512807ns 1359063 1c000e82 fff60613 addi x12, x12, -1 x12=000003d3 x12:000003d4 +75512827ns 1359064 1c000e84 00130313 addi x6, x6, 1 x6=1c00b025 x6:1c00b024 +75512847ns 1359065 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003d3 +75512926ns 1359069 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b025 PA:1c00b025 +75512946ns 1359070 1c000e82 fff60613 addi x12, x12, -1 x12=000003d2 x12:000003d3 +75512965ns 1359071 1c000e84 00130313 addi x6, x6, 1 x6=1c00b026 x6:1c00b025 +75512985ns 1359072 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003d2 +75513064ns 1359076 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b026 PA:1c00b026 +75513084ns 1359077 1c000e82 fff60613 addi x12, x12, -1 x12=000003d1 x12:000003d2 +75513104ns 1359078 1c000e84 00130313 addi x6, x6, 1 x6=1c00b027 x6:1c00b026 +75513124ns 1359079 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003d1 +75513203ns 1359083 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b027 PA:1c00b027 +75513223ns 1359084 1c000e82 fff60613 addi x12, x12, -1 x12=000003d0 x12:000003d1 +75513242ns 1359085 1c000e84 00130313 addi x6, x6, 1 x6=1c00b028 x6:1c00b027 +75513262ns 1359086 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003d0 +75513341ns 1359090 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b028 PA:1c00b028 +75513361ns 1359091 1c000e82 fff60613 addi x12, x12, -1 x12=000003cf x12:000003d0 +75513381ns 1359092 1c000e84 00130313 addi x6, x6, 1 x6=1c00b029 x6:1c00b028 +75513401ns 1359093 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003cf +75513480ns 1359097 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b029 PA:1c00b029 +75513500ns 1359098 1c000e82 fff60613 addi x12, x12, -1 x12=000003ce x12:000003cf +75513520ns 1359099 1c000e84 00130313 addi x6, x6, 1 x6=1c00b02a x6:1c00b029 +75513539ns 1359100 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ce +75513619ns 1359104 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b02a PA:1c00b02a +75513638ns 1359105 1c000e82 fff60613 addi x12, x12, -1 x12=000003cd x12:000003ce +75513658ns 1359106 1c000e84 00130313 addi x6, x6, 1 x6=1c00b02b x6:1c00b02a +75513678ns 1359107 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003cd +75513757ns 1359111 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b02b PA:1c00b02b +75513777ns 1359112 1c000e82 fff60613 addi x12, x12, -1 x12=000003cc x12:000003cd +75513797ns 1359113 1c000e84 00130313 addi x6, x6, 1 x6=1c00b02c x6:1c00b02b +75513816ns 1359114 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003cc +75513896ns 1359118 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b02c PA:1c00b02c +75513915ns 1359119 1c000e82 fff60613 addi x12, x12, -1 x12=000003cb x12:000003cc +75513935ns 1359120 1c000e84 00130313 addi x6, x6, 1 x6=1c00b02d x6:1c00b02c +75513955ns 1359121 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003cb +75514034ns 1359125 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b02d PA:1c00b02d +75514054ns 1359126 1c000e82 fff60613 addi x12, x12, -1 x12=000003ca x12:000003cb +75514074ns 1359127 1c000e84 00130313 addi x6, x6, 1 x6=1c00b02e x6:1c00b02d +75514094ns 1359128 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ca +75514173ns 1359132 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b02e PA:1c00b02e +75514192ns 1359133 1c000e82 fff60613 addi x12, x12, -1 x12=000003c9 x12:000003ca +75514212ns 1359134 1c000e84 00130313 addi x6, x6, 1 x6=1c00b02f x6:1c00b02e +75514232ns 1359135 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003c9 +75514311ns 1359139 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b02f PA:1c00b02f +75514331ns 1359140 1c000e82 fff60613 addi x12, x12, -1 x12=000003c8 x12:000003c9 +75514351ns 1359141 1c000e84 00130313 addi x6, x6, 1 x6=1c00b030 x6:1c00b02f +75514371ns 1359142 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003c8 +75514450ns 1359146 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b030 PA:1c00b030 +75514470ns 1359147 1c000e82 fff60613 addi x12, x12, -1 x12=000003c7 x12:000003c8 +75514489ns 1359148 1c000e84 00130313 addi x6, x6, 1 x6=1c00b031 x6:1c00b030 +75514509ns 1359149 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003c7 +75514588ns 1359153 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b031 PA:1c00b031 +75514608ns 1359154 1c000e82 fff60613 addi x12, x12, -1 x12=000003c6 x12:000003c7 +75514628ns 1359155 1c000e84 00130313 addi x6, x6, 1 x6=1c00b032 x6:1c00b031 +75514648ns 1359156 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003c6 +75514727ns 1359160 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b032 PA:1c00b032 +75514747ns 1359161 1c000e82 fff60613 addi x12, x12, -1 x12=000003c5 x12:000003c6 +75514766ns 1359162 1c000e84 00130313 addi x6, x6, 1 x6=1c00b033 x6:1c00b032 +75514786ns 1359163 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003c5 +75514865ns 1359167 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b033 PA:1c00b033 +75514885ns 1359168 1c000e82 fff60613 addi x12, x12, -1 x12=000003c4 x12:000003c5 +75514905ns 1359169 1c000e84 00130313 addi x6, x6, 1 x6=1c00b034 x6:1c00b033 +75514925ns 1359170 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003c4 +75515004ns 1359174 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b034 PA:1c00b034 +75515024ns 1359175 1c000e82 fff60613 addi x12, x12, -1 x12=000003c3 x12:000003c4 +75515044ns 1359176 1c000e84 00130313 addi x6, x6, 1 x6=1c00b035 x6:1c00b034 +75515063ns 1359177 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003c3 +75515143ns 1359181 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b035 PA:1c00b035 +75515162ns 1359182 1c000e82 fff60613 addi x12, x12, -1 x12=000003c2 x12:000003c3 +75515182ns 1359183 1c000e84 00130313 addi x6, x6, 1 x6=1c00b036 x6:1c00b035 +75515202ns 1359184 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003c2 +75515281ns 1359188 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b036 PA:1c00b036 +75515301ns 1359189 1c000e82 fff60613 addi x12, x12, -1 x12=000003c1 x12:000003c2 +75515321ns 1359190 1c000e84 00130313 addi x6, x6, 1 x6=1c00b037 x6:1c00b036 +75515340ns 1359191 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003c1 +75515420ns 1359195 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b037 PA:1c00b037 +75515439ns 1359196 1c000e82 fff60613 addi x12, x12, -1 x12=000003c0 x12:000003c1 +75515459ns 1359197 1c000e84 00130313 addi x6, x6, 1 x6=1c00b038 x6:1c00b037 +75515479ns 1359198 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003c0 +75515558ns 1359202 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b038 PA:1c00b038 +75515578ns 1359203 1c000e82 fff60613 addi x12, x12, -1 x12=000003bf x12:000003c0 +75515598ns 1359204 1c000e84 00130313 addi x6, x6, 1 x6=1c00b039 x6:1c00b038 +75515618ns 1359205 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003bf +75515697ns 1359209 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b039 PA:1c00b039 +75515716ns 1359210 1c000e82 fff60613 addi x12, x12, -1 x12=000003be x12:000003bf +75515736ns 1359211 1c000e84 00130313 addi x6, x6, 1 x6=1c00b03a x6:1c00b039 +75515756ns 1359212 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003be +75515835ns 1359216 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b03a PA:1c00b03a +75515855ns 1359217 1c000e82 fff60613 addi x12, x12, -1 x12=000003bd x12:000003be +75515875ns 1359218 1c000e84 00130313 addi x6, x6, 1 x6=1c00b03b x6:1c00b03a +75515895ns 1359219 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003bd +75515974ns 1359223 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b03b PA:1c00b03b +75515994ns 1359224 1c000e82 fff60613 addi x12, x12, -1 x12=000003bc x12:000003bd +75516013ns 1359225 1c000e84 00130313 addi x6, x6, 1 x6=1c00b03c x6:1c00b03b +75516033ns 1359226 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003bc +75516112ns 1359230 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b03c PA:1c00b03c +75516132ns 1359231 1c000e82 fff60613 addi x12, x12, -1 x12=000003bb x12:000003bc +75516152ns 1359232 1c000e84 00130313 addi x6, x6, 1 x6=1c00b03d x6:1c00b03c +75516172ns 1359233 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003bb +75516251ns 1359237 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b03d PA:1c00b03d +75516271ns 1359238 1c000e82 fff60613 addi x12, x12, -1 x12=000003ba x12:000003bb +75516290ns 1359239 1c000e84 00130313 addi x6, x6, 1 x6=1c00b03e x6:1c00b03d +75516310ns 1359240 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ba +75516389ns 1359244 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b03e PA:1c00b03e +75516409ns 1359245 1c000e82 fff60613 addi x12, x12, -1 x12=000003b9 x12:000003ba +75516429ns 1359246 1c000e84 00130313 addi x6, x6, 1 x6=1c00b03f x6:1c00b03e +75516449ns 1359247 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003b9 +75516528ns 1359251 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b03f PA:1c00b03f +75516548ns 1359252 1c000e82 fff60613 addi x12, x12, -1 x12=000003b8 x12:000003b9 +75516568ns 1359253 1c000e84 00130313 addi x6, x6, 1 x6=1c00b040 x6:1c00b03f +75516587ns 1359254 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003b8 +75516666ns 1359258 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b040 PA:1c00b040 +75516686ns 1359259 1c000e82 fff60613 addi x12, x12, -1 x12=000003b7 x12:000003b8 +75516706ns 1359260 1c000e84 00130313 addi x6, x6, 1 x6=1c00b041 x6:1c00b040 +75516726ns 1359261 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003b7 +75516805ns 1359265 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b041 PA:1c00b041 +75516825ns 1359266 1c000e82 fff60613 addi x12, x12, -1 x12=000003b6 x12:000003b7 +75516845ns 1359267 1c000e84 00130313 addi x6, x6, 1 x6=1c00b042 x6:1c00b041 +75516864ns 1359268 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003b6 +75516944ns 1359272 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b042 PA:1c00b042 +75516963ns 1359273 1c000e82 fff60613 addi x12, x12, -1 x12=000003b5 x12:000003b6 +75516983ns 1359274 1c000e84 00130313 addi x6, x6, 1 x6=1c00b043 x6:1c00b042 +75517003ns 1359275 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003b5 +75517082ns 1359279 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b043 PA:1c00b043 +75517102ns 1359280 1c000e82 fff60613 addi x12, x12, -1 x12=000003b4 x12:000003b5 +75517122ns 1359281 1c000e84 00130313 addi x6, x6, 1 x6=1c00b044 x6:1c00b043 +75517141ns 1359282 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003b4 +75517221ns 1359286 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b044 PA:1c00b044 +75517240ns 1359287 1c000e82 fff60613 addi x12, x12, -1 x12=000003b3 x12:000003b4 +75517260ns 1359288 1c000e84 00130313 addi x6, x6, 1 x6=1c00b045 x6:1c00b044 +75517280ns 1359289 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003b3 +75517359ns 1359293 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b045 PA:1c00b045 +75517379ns 1359294 1c000e82 fff60613 addi x12, x12, -1 x12=000003b2 x12:000003b3 +75517399ns 1359295 1c000e84 00130313 addi x6, x6, 1 x6=1c00b046 x6:1c00b045 +75517419ns 1359296 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003b2 +75517498ns 1359300 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b046 PA:1c00b046 +75517518ns 1359301 1c000e82 fff60613 addi x12, x12, -1 x12=000003b1 x12:000003b2 +75517537ns 1359302 1c000e84 00130313 addi x6, x6, 1 x6=1c00b047 x6:1c00b046 +75517557ns 1359303 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003b1 +75517636ns 1359307 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b047 PA:1c00b047 +75517656ns 1359308 1c000e82 fff60613 addi x12, x12, -1 x12=000003b0 x12:000003b1 +75517676ns 1359309 1c000e84 00130313 addi x6, x6, 1 x6=1c00b048 x6:1c00b047 +75517696ns 1359310 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003b0 +75517775ns 1359314 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b048 PA:1c00b048 +75517795ns 1359315 1c000e82 fff60613 addi x12, x12, -1 x12=000003af x12:000003b0 +75517814ns 1359316 1c000e84 00130313 addi x6, x6, 1 x6=1c00b049 x6:1c00b048 +75517834ns 1359317 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003af +75517913ns 1359321 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b049 PA:1c00b049 +75517933ns 1359322 1c000e82 fff60613 addi x12, x12, -1 x12=000003ae x12:000003af +75517953ns 1359323 1c000e84 00130313 addi x6, x6, 1 x6=1c00b04a x6:1c00b049 +75517973ns 1359324 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ae +75518052ns 1359328 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b04a PA:1c00b04a +75518072ns 1359329 1c000e82 fff60613 addi x12, x12, -1 x12=000003ad x12:000003ae +75518092ns 1359330 1c000e84 00130313 addi x6, x6, 1 x6=1c00b04b x6:1c00b04a +75518111ns 1359331 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ad +75518190ns 1359335 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b04b PA:1c00b04b +75518210ns 1359336 1c000e82 fff60613 addi x12, x12, -1 x12=000003ac x12:000003ad +75518230ns 1359337 1c000e84 00130313 addi x6, x6, 1 x6=1c00b04c x6:1c00b04b +75518250ns 1359338 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ac +75518329ns 1359342 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b04c PA:1c00b04c +75518349ns 1359343 1c000e82 fff60613 addi x12, x12, -1 x12=000003ab x12:000003ac +75518369ns 1359344 1c000e84 00130313 addi x6, x6, 1 x6=1c00b04d x6:1c00b04c +75518388ns 1359345 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ab +75518468ns 1359349 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b04d PA:1c00b04d +75518487ns 1359350 1c000e82 fff60613 addi x12, x12, -1 x12=000003aa x12:000003ab +75518507ns 1359351 1c000e84 00130313 addi x6, x6, 1 x6=1c00b04e x6:1c00b04d +75518527ns 1359352 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003aa +75518606ns 1359356 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b04e PA:1c00b04e +75518626ns 1359357 1c000e82 fff60613 addi x12, x12, -1 x12=000003a9 x12:000003aa +75518646ns 1359358 1c000e84 00130313 addi x6, x6, 1 x6=1c00b04f x6:1c00b04e +75518665ns 1359359 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003a9 +75518745ns 1359363 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b04f PA:1c00b04f +75518764ns 1359364 1c000e82 fff60613 addi x12, x12, -1 x12=000003a8 x12:000003a9 +75518784ns 1359365 1c000e84 00130313 addi x6, x6, 1 x6=1c00b050 x6:1c00b04f +75518804ns 1359366 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003a8 +75518883ns 1359370 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b050 PA:1c00b050 +75518903ns 1359371 1c000e82 fff60613 addi x12, x12, -1 x12=000003a7 x12:000003a8 +75518923ns 1359372 1c000e84 00130313 addi x6, x6, 1 x6=1c00b051 x6:1c00b050 +75518943ns 1359373 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003a7 +75519022ns 1359377 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b051 PA:1c00b051 +75519042ns 1359378 1c000e82 fff60613 addi x12, x12, -1 x12=000003a6 x12:000003a7 +75519061ns 1359379 1c000e84 00130313 addi x6, x6, 1 x6=1c00b052 x6:1c00b051 +75519081ns 1359380 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003a6 +75519160ns 1359384 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b052 PA:1c00b052 +75519180ns 1359385 1c000e82 fff60613 addi x12, x12, -1 x12=000003a5 x12:000003a6 +75519200ns 1359386 1c000e84 00130313 addi x6, x6, 1 x6=1c00b053 x6:1c00b052 +75519220ns 1359387 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003a5 +75519299ns 1359391 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b053 PA:1c00b053 +75519319ns 1359392 1c000e82 fff60613 addi x12, x12, -1 x12=000003a4 x12:000003a5 +75519338ns 1359393 1c000e84 00130313 addi x6, x6, 1 x6=1c00b054 x6:1c00b053 +75519358ns 1359394 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003a4 +75519437ns 1359398 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b054 PA:1c00b054 +75519457ns 1359399 1c000e82 fff60613 addi x12, x12, -1 x12=000003a3 x12:000003a4 +75519477ns 1359400 1c000e84 00130313 addi x6, x6, 1 x6=1c00b055 x6:1c00b054 +75519497ns 1359401 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003a3 +75519576ns 1359405 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b055 PA:1c00b055 +75519596ns 1359406 1c000e82 fff60613 addi x12, x12, -1 x12=000003a2 x12:000003a3 +75519615ns 1359407 1c000e84 00130313 addi x6, x6, 1 x6=1c00b056 x6:1c00b055 +75519635ns 1359408 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003a2 +75519714ns 1359412 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b056 PA:1c00b056 +75519734ns 1359413 1c000e82 fff60613 addi x12, x12, -1 x12=000003a1 x12:000003a2 +75519754ns 1359414 1c000e84 00130313 addi x6, x6, 1 x6=1c00b057 x6:1c00b056 +75519774ns 1359415 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003a1 +75519853ns 1359419 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b057 PA:1c00b057 +75519873ns 1359420 1c000e82 fff60613 addi x12, x12, -1 x12=000003a0 x12:000003a1 +75519893ns 1359421 1c000e84 00130313 addi x6, x6, 1 x6=1c00b058 x6:1c00b057 +75519912ns 1359422 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003a0 +75519992ns 1359426 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b058 PA:1c00b058 +75520011ns 1359427 1c000e82 fff60613 addi x12, x12, -1 x12=0000039f x12:000003a0 +75520031ns 1359428 1c000e84 00130313 addi x6, x6, 1 x6=1c00b059 x6:1c00b058 +75520051ns 1359429 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000039f +75520130ns 1359433 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b059 PA:1c00b059 +75520150ns 1359434 1c000e82 fff60613 addi x12, x12, -1 x12=0000039e x12:0000039f +75520170ns 1359435 1c000e84 00130313 addi x6, x6, 1 x6=1c00b05a x6:1c00b059 +75520189ns 1359436 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000039e +75520269ns 1359440 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b05a PA:1c00b05a +75520288ns 1359441 1c000e82 fff60613 addi x12, x12, -1 x12=0000039d x12:0000039e +75520308ns 1359442 1c000e84 00130313 addi x6, x6, 1 x6=1c00b05b x6:1c00b05a +75520328ns 1359443 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000039d +75520407ns 1359447 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b05b PA:1c00b05b +75520427ns 1359448 1c000e82 fff60613 addi x12, x12, -1 x12=0000039c x12:0000039d +75520447ns 1359449 1c000e84 00130313 addi x6, x6, 1 x6=1c00b05c x6:1c00b05b +75520467ns 1359450 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000039c +75520546ns 1359454 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b05c PA:1c00b05c +75520566ns 1359455 1c000e82 fff60613 addi x12, x12, -1 x12=0000039b x12:0000039c +75520585ns 1359456 1c000e84 00130313 addi x6, x6, 1 x6=1c00b05d x6:1c00b05c +75520605ns 1359457 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000039b +75520684ns 1359461 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b05d PA:1c00b05d +75520704ns 1359462 1c000e82 fff60613 addi x12, x12, -1 x12=0000039a x12:0000039b +75520724ns 1359463 1c000e84 00130313 addi x6, x6, 1 x6=1c00b05e x6:1c00b05d +75520744ns 1359464 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000039a +75520823ns 1359468 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b05e PA:1c00b05e +75520843ns 1359469 1c000e82 fff60613 addi x12, x12, -1 x12=00000399 x12:0000039a +75520862ns 1359470 1c000e84 00130313 addi x6, x6, 1 x6=1c00b05f x6:1c00b05e +75520882ns 1359471 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000399 +75520961ns 1359475 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b05f PA:1c00b05f +75520981ns 1359476 1c000e82 fff60613 addi x12, x12, -1 x12=00000398 x12:00000399 +75521001ns 1359477 1c000e84 00130313 addi x6, x6, 1 x6=1c00b060 x6:1c00b05f +75521021ns 1359478 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000398 +75521100ns 1359482 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b060 PA:1c00b060 +75521120ns 1359483 1c000e82 fff60613 addi x12, x12, -1 x12=00000397 x12:00000398 +75521139ns 1359484 1c000e84 00130313 addi x6, x6, 1 x6=1c00b061 x6:1c00b060 +75521159ns 1359485 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000397 +75521238ns 1359489 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b061 PA:1c00b061 +75521258ns 1359490 1c000e82 fff60613 addi x12, x12, -1 x12=00000396 x12:00000397 +75521278ns 1359491 1c000e84 00130313 addi x6, x6, 1 x6=1c00b062 x6:1c00b061 +75521298ns 1359492 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000396 +75521377ns 1359496 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b062 PA:1c00b062 +75521397ns 1359497 1c000e82 fff60613 addi x12, x12, -1 x12=00000395 x12:00000396 +75521417ns 1359498 1c000e84 00130313 addi x6, x6, 1 x6=1c00b063 x6:1c00b062 +75521436ns 1359499 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000395 +75521516ns 1359503 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b063 PA:1c00b063 +75521535ns 1359504 1c000e82 fff60613 addi x12, x12, -1 x12=00000394 x12:00000395 +75521555ns 1359505 1c000e84 00130313 addi x6, x6, 1 x6=1c00b064 x6:1c00b063 +75521575ns 1359506 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000394 +75521654ns 1359510 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b064 PA:1c00b064 +75521674ns 1359511 1c000e82 fff60613 addi x12, x12, -1 x12=00000393 x12:00000394 +75521694ns 1359512 1c000e84 00130313 addi x6, x6, 1 x6=1c00b065 x6:1c00b064 +75521713ns 1359513 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000393 +75521793ns 1359517 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b065 PA:1c00b065 +75521812ns 1359518 1c000e82 fff60613 addi x12, x12, -1 x12=00000392 x12:00000393 +75521832ns 1359519 1c000e84 00130313 addi x6, x6, 1 x6=1c00b066 x6:1c00b065 +75521852ns 1359520 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000392 +75521931ns 1359524 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b066 PA:1c00b066 +75521951ns 1359525 1c000e82 fff60613 addi x12, x12, -1 x12=00000391 x12:00000392 +75521971ns 1359526 1c000e84 00130313 addi x6, x6, 1 x6=1c00b067 x6:1c00b066 +75521991ns 1359527 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000391 +75522070ns 1359531 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b067 PA:1c00b067 +75522089ns 1359532 1c000e82 fff60613 addi x12, x12, -1 x12=00000390 x12:00000391 +75522109ns 1359533 1c000e84 00130313 addi x6, x6, 1 x6=1c00b068 x6:1c00b067 +75522129ns 1359534 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000390 +75522208ns 1359538 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b068 PA:1c00b068 +75522228ns 1359539 1c000e82 fff60613 addi x12, x12, -1 x12=0000038f x12:00000390 +75522248ns 1359540 1c000e84 00130313 addi x6, x6, 1 x6=1c00b069 x6:1c00b068 +75522268ns 1359541 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000038f +75522347ns 1359545 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b069 PA:1c00b069 +75522367ns 1359546 1c000e82 fff60613 addi x12, x12, -1 x12=0000038e x12:0000038f +75522386ns 1359547 1c000e84 00130313 addi x6, x6, 1 x6=1c00b06a x6:1c00b069 +75522406ns 1359548 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000038e +75522485ns 1359552 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b06a PA:1c00b06a +75522505ns 1359553 1c000e82 fff60613 addi x12, x12, -1 x12=0000038d x12:0000038e +75522525ns 1359554 1c000e84 00130313 addi x6, x6, 1 x6=1c00b06b x6:1c00b06a +75522545ns 1359555 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000038d +75522624ns 1359559 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b06b PA:1c00b06b +75522644ns 1359560 1c000e82 fff60613 addi x12, x12, -1 x12=0000038c x12:0000038d +75522663ns 1359561 1c000e84 00130313 addi x6, x6, 1 x6=1c00b06c x6:1c00b06b +75522683ns 1359562 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000038c +75522762ns 1359566 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b06c PA:1c00b06c +75522782ns 1359567 1c000e82 fff60613 addi x12, x12, -1 x12=0000038b x12:0000038c +75522802ns 1359568 1c000e84 00130313 addi x6, x6, 1 x6=1c00b06d x6:1c00b06c +75522822ns 1359569 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000038b +75522901ns 1359573 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b06d PA:1c00b06d +75522921ns 1359574 1c000e82 fff60613 addi x12, x12, -1 x12=0000038a x12:0000038b +75522941ns 1359575 1c000e84 00130313 addi x6, x6, 1 x6=1c00b06e x6:1c00b06d +75522960ns 1359576 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000038a +75523040ns 1359580 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b06e PA:1c00b06e +75523059ns 1359581 1c000e82 fff60613 addi x12, x12, -1 x12=00000389 x12:0000038a +75523079ns 1359582 1c000e84 00130313 addi x6, x6, 1 x6=1c00b06f x6:1c00b06e +75523099ns 1359583 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000389 +75523178ns 1359587 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b06f PA:1c00b06f +75523198ns 1359588 1c000e82 fff60613 addi x12, x12, -1 x12=00000388 x12:00000389 +75523218ns 1359589 1c000e84 00130313 addi x6, x6, 1 x6=1c00b070 x6:1c00b06f +75523237ns 1359590 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000388 +75523317ns 1359594 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b070 PA:1c00b070 +75523336ns 1359595 1c000e82 fff60613 addi x12, x12, -1 x12=00000387 x12:00000388 +75523356ns 1359596 1c000e84 00130313 addi x6, x6, 1 x6=1c00b071 x6:1c00b070 +75523376ns 1359597 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000387 +75523455ns 1359601 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b071 PA:1c00b071 +75523475ns 1359602 1c000e82 fff60613 addi x12, x12, -1 x12=00000386 x12:00000387 +75523495ns 1359603 1c000e84 00130313 addi x6, x6, 1 x6=1c00b072 x6:1c00b071 +75523515ns 1359604 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000386 +75523594ns 1359608 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b072 PA:1c00b072 +75523613ns 1359609 1c000e82 fff60613 addi x12, x12, -1 x12=00000385 x12:00000386 +75523633ns 1359610 1c000e84 00130313 addi x6, x6, 1 x6=1c00b073 x6:1c00b072 +75523653ns 1359611 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000385 +75523732ns 1359615 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b073 PA:1c00b073 +75523752ns 1359616 1c000e82 fff60613 addi x12, x12, -1 x12=00000384 x12:00000385 +75523772ns 1359617 1c000e84 00130313 addi x6, x6, 1 x6=1c00b074 x6:1c00b073 +75523792ns 1359618 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000384 +75523871ns 1359622 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b074 PA:1c00b074 +75523891ns 1359623 1c000e82 fff60613 addi x12, x12, -1 x12=00000383 x12:00000384 +75523910ns 1359624 1c000e84 00130313 addi x6, x6, 1 x6=1c00b075 x6:1c00b074 +75523930ns 1359625 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000383 +75524009ns 1359629 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b075 PA:1c00b075 +75524029ns 1359630 1c000e82 fff60613 addi x12, x12, -1 x12=00000382 x12:00000383 +75524049ns 1359631 1c000e84 00130313 addi x6, x6, 1 x6=1c00b076 x6:1c00b075 +75524069ns 1359632 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000382 +75524148ns 1359636 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b076 PA:1c00b076 +75524168ns 1359637 1c000e82 fff60613 addi x12, x12, -1 x12=00000381 x12:00000382 +75524187ns 1359638 1c000e84 00130313 addi x6, x6, 1 x6=1c00b077 x6:1c00b076 +75524207ns 1359639 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000381 +75524286ns 1359643 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b077 PA:1c00b077 +75524306ns 1359644 1c000e82 fff60613 addi x12, x12, -1 x12=00000380 x12:00000381 +75524326ns 1359645 1c000e84 00130313 addi x6, x6, 1 x6=1c00b078 x6:1c00b077 +75524346ns 1359646 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000380 +75524425ns 1359650 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b078 PA:1c00b078 +75524445ns 1359651 1c000e82 fff60613 addi x12, x12, -1 x12=0000037f x12:00000380 +75524465ns 1359652 1c000e84 00130313 addi x6, x6, 1 x6=1c00b079 x6:1c00b078 +75524484ns 1359653 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000037f +75524563ns 1359657 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b079 PA:1c00b079 +75524583ns 1359658 1c000e82 fff60613 addi x12, x12, -1 x12=0000037e x12:0000037f +75524603ns 1359659 1c000e84 00130313 addi x6, x6, 1 x6=1c00b07a x6:1c00b079 +75524623ns 1359660 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000037e +75524702ns 1359664 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b07a PA:1c00b07a +75524722ns 1359665 1c000e82 fff60613 addi x12, x12, -1 x12=0000037d x12:0000037e +75524742ns 1359666 1c000e84 00130313 addi x6, x6, 1 x6=1c00b07b x6:1c00b07a +75524761ns 1359667 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000037d +75524841ns 1359671 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b07b PA:1c00b07b +75524860ns 1359672 1c000e82 fff60613 addi x12, x12, -1 x12=0000037c x12:0000037d +75524880ns 1359673 1c000e84 00130313 addi x6, x6, 1 x6=1c00b07c x6:1c00b07b +75524900ns 1359674 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000037c +75524979ns 1359678 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b07c PA:1c00b07c +75524999ns 1359679 1c000e82 fff60613 addi x12, x12, -1 x12=0000037b x12:0000037c +75525019ns 1359680 1c000e84 00130313 addi x6, x6, 1 x6=1c00b07d x6:1c00b07c +75525039ns 1359681 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000037b +75525118ns 1359685 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b07d PA:1c00b07d +75525137ns 1359686 1c000e82 fff60613 addi x12, x12, -1 x12=0000037a x12:0000037b +75525157ns 1359687 1c000e84 00130313 addi x6, x6, 1 x6=1c00b07e x6:1c00b07d +75525177ns 1359688 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000037a +75525256ns 1359692 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b07e PA:1c00b07e +75525276ns 1359693 1c000e82 fff60613 addi x12, x12, -1 x12=00000379 x12:0000037a +75525296ns 1359694 1c000e84 00130313 addi x6, x6, 1 x6=1c00b07f x6:1c00b07e +75525316ns 1359695 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000379 +75525395ns 1359699 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b07f PA:1c00b07f +75525415ns 1359700 1c000e82 fff60613 addi x12, x12, -1 x12=00000378 x12:00000379 +75525434ns 1359701 1c000e84 00130313 addi x6, x6, 1 x6=1c00b080 x6:1c00b07f +75525454ns 1359702 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000378 +75525533ns 1359706 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b080 PA:1c00b080 +75525553ns 1359707 1c000e82 fff60613 addi x12, x12, -1 x12=00000377 x12:00000378 +75525573ns 1359708 1c000e84 00130313 addi x6, x6, 1 x6=1c00b081 x6:1c00b080 +75525593ns 1359709 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000377 +75525672ns 1359713 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b081 PA:1c00b081 +75525692ns 1359714 1c000e82 fff60613 addi x12, x12, -1 x12=00000376 x12:00000377 +75525711ns 1359715 1c000e84 00130313 addi x6, x6, 1 x6=1c00b082 x6:1c00b081 +75525731ns 1359716 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000376 +75525810ns 1359720 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b082 PA:1c00b082 +75525830ns 1359721 1c000e82 fff60613 addi x12, x12, -1 x12=00000375 x12:00000376 +75525850ns 1359722 1c000e84 00130313 addi x6, x6, 1 x6=1c00b083 x6:1c00b082 +75525870ns 1359723 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000375 +75525949ns 1359727 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b083 PA:1c00b083 +75525969ns 1359728 1c000e82 fff60613 addi x12, x12, -1 x12=00000374 x12:00000375 +75525989ns 1359729 1c000e84 00130313 addi x6, x6, 1 x6=1c00b084 x6:1c00b083 +75526008ns 1359730 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000374 +75526087ns 1359734 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b084 PA:1c00b084 +75526107ns 1359735 1c000e82 fff60613 addi x12, x12, -1 x12=00000373 x12:00000374 +75526127ns 1359736 1c000e84 00130313 addi x6, x6, 1 x6=1c00b085 x6:1c00b084 +75526147ns 1359737 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000373 +75526226ns 1359741 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b085 PA:1c00b085 +75526246ns 1359742 1c000e82 fff60613 addi x12, x12, -1 x12=00000372 x12:00000373 +75526266ns 1359743 1c000e84 00130313 addi x6, x6, 1 x6=1c00b086 x6:1c00b085 +75526285ns 1359744 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000372 +75526365ns 1359748 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b086 PA:1c00b086 +75526384ns 1359749 1c000e82 fff60613 addi x12, x12, -1 x12=00000371 x12:00000372 +75526404ns 1359750 1c000e84 00130313 addi x6, x6, 1 x6=1c00b087 x6:1c00b086 +75526424ns 1359751 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000371 +75526503ns 1359755 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b087 PA:1c00b087 +75526523ns 1359756 1c000e82 fff60613 addi x12, x12, -1 x12=00000370 x12:00000371 +75526543ns 1359757 1c000e84 00130313 addi x6, x6, 1 x6=1c00b088 x6:1c00b087 +75526562ns 1359758 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000370 +75526642ns 1359762 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b088 PA:1c00b088 +75526661ns 1359763 1c000e82 fff60613 addi x12, x12, -1 x12=0000036f x12:00000370 +75526681ns 1359764 1c000e84 00130313 addi x6, x6, 1 x6=1c00b089 x6:1c00b088 +75526701ns 1359765 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000036f +75526780ns 1359769 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b089 PA:1c00b089 +75526800ns 1359770 1c000e82 fff60613 addi x12, x12, -1 x12=0000036e x12:0000036f +75526820ns 1359771 1c000e84 00130313 addi x6, x6, 1 x6=1c00b08a x6:1c00b089 +75526840ns 1359772 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000036e +75526919ns 1359776 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b08a PA:1c00b08a +75526939ns 1359777 1c000e82 fff60613 addi x12, x12, -1 x12=0000036d x12:0000036e +75526958ns 1359778 1c000e84 00130313 addi x6, x6, 1 x6=1c00b08b x6:1c00b08a +75526978ns 1359779 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000036d +75527057ns 1359783 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b08b PA:1c00b08b +75527077ns 1359784 1c000e82 fff60613 addi x12, x12, -1 x12=0000036c x12:0000036d +75527097ns 1359785 1c000e84 00130313 addi x6, x6, 1 x6=1c00b08c x6:1c00b08b +75527117ns 1359786 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000036c +75527196ns 1359790 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b08c PA:1c00b08c +75527216ns 1359791 1c000e82 fff60613 addi x12, x12, -1 x12=0000036b x12:0000036c +75527235ns 1359792 1c000e84 00130313 addi x6, x6, 1 x6=1c00b08d x6:1c00b08c +75527255ns 1359793 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000036b +75527334ns 1359797 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b08d PA:1c00b08d +75527354ns 1359798 1c000e82 fff60613 addi x12, x12, -1 x12=0000036a x12:0000036b +75527374ns 1359799 1c000e84 00130313 addi x6, x6, 1 x6=1c00b08e x6:1c00b08d +75527394ns 1359800 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000036a +75527473ns 1359804 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b08e PA:1c00b08e +75527493ns 1359805 1c000e82 fff60613 addi x12, x12, -1 x12=00000369 x12:0000036a +75527513ns 1359806 1c000e84 00130313 addi x6, x6, 1 x6=1c00b08f x6:1c00b08e +75527532ns 1359807 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000369 +75527611ns 1359811 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b08f PA:1c00b08f +75527631ns 1359812 1c000e82 fff60613 addi x12, x12, -1 x12=00000368 x12:00000369 +75527651ns 1359813 1c000e84 00130313 addi x6, x6, 1 x6=1c00b090 x6:1c00b08f +75527671ns 1359814 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000368 +75527750ns 1359818 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b090 PA:1c00b090 +75527770ns 1359819 1c000e82 fff60613 addi x12, x12, -1 x12=00000367 x12:00000368 +75527790ns 1359820 1c000e84 00130313 addi x6, x6, 1 x6=1c00b091 x6:1c00b090 +75527809ns 1359821 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000367 +75527889ns 1359825 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b091 PA:1c00b091 +75527908ns 1359826 1c000e82 fff60613 addi x12, x12, -1 x12=00000366 x12:00000367 +75527928ns 1359827 1c000e84 00130313 addi x6, x6, 1 x6=1c00b092 x6:1c00b091 +75527948ns 1359828 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000366 +75528027ns 1359832 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b092 PA:1c00b092 +75528047ns 1359833 1c000e82 fff60613 addi x12, x12, -1 x12=00000365 x12:00000366 +75528067ns 1359834 1c000e84 00130313 addi x6, x6, 1 x6=1c00b093 x6:1c00b092 +75528086ns 1359835 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000365 +75528166ns 1359839 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b093 PA:1c00b093 +75528185ns 1359840 1c000e82 fff60613 addi x12, x12, -1 x12=00000364 x12:00000365 +75528205ns 1359841 1c000e84 00130313 addi x6, x6, 1 x6=1c00b094 x6:1c00b093 +75528225ns 1359842 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000364 +75528304ns 1359846 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b094 PA:1c00b094 +75528324ns 1359847 1c000e82 fff60613 addi x12, x12, -1 x12=00000363 x12:00000364 +75528344ns 1359848 1c000e84 00130313 addi x6, x6, 1 x6=1c00b095 x6:1c00b094 +75528364ns 1359849 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000363 +75528443ns 1359853 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b095 PA:1c00b095 +75528463ns 1359854 1c000e82 fff60613 addi x12, x12, -1 x12=00000362 x12:00000363 +75528482ns 1359855 1c000e84 00130313 addi x6, x6, 1 x6=1c00b096 x6:1c00b095 +75528502ns 1359856 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000362 +75528581ns 1359860 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b096 PA:1c00b096 +75528601ns 1359861 1c000e82 fff60613 addi x12, x12, -1 x12=00000361 x12:00000362 +75528621ns 1359862 1c000e84 00130313 addi x6, x6, 1 x6=1c00b097 x6:1c00b096 +75528641ns 1359863 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000361 +75528720ns 1359867 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b097 PA:1c00b097 +75528740ns 1359868 1c000e82 fff60613 addi x12, x12, -1 x12=00000360 x12:00000361 +75528759ns 1359869 1c000e84 00130313 addi x6, x6, 1 x6=1c00b098 x6:1c00b097 +75528779ns 1359870 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000360 +75528858ns 1359874 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b098 PA:1c00b098 +75528878ns 1359875 1c000e82 fff60613 addi x12, x12, -1 x12=0000035f x12:00000360 +75528898ns 1359876 1c000e84 00130313 addi x6, x6, 1 x6=1c00b099 x6:1c00b098 +75528918ns 1359877 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000035f +75528997ns 1359881 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b099 PA:1c00b099 +75529017ns 1359882 1c000e82 fff60613 addi x12, x12, -1 x12=0000035e x12:0000035f +75529036ns 1359883 1c000e84 00130313 addi x6, x6, 1 x6=1c00b09a x6:1c00b099 +75529056ns 1359884 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000035e +75529135ns 1359888 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b09a PA:1c00b09a +75529155ns 1359889 1c000e82 fff60613 addi x12, x12, -1 x12=0000035d x12:0000035e +75529175ns 1359890 1c000e84 00130313 addi x6, x6, 1 x6=1c00b09b x6:1c00b09a +75529195ns 1359891 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000035d +75529274ns 1359895 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b09b PA:1c00b09b +75529294ns 1359896 1c000e82 fff60613 addi x12, x12, -1 x12=0000035c x12:0000035d +75529314ns 1359897 1c000e84 00130313 addi x6, x6, 1 x6=1c00b09c x6:1c00b09b +75529333ns 1359898 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000035c +75529413ns 1359902 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b09c PA:1c00b09c +75529432ns 1359903 1c000e82 fff60613 addi x12, x12, -1 x12=0000035b x12:0000035c +75529452ns 1359904 1c000e84 00130313 addi x6, x6, 1 x6=1c00b09d x6:1c00b09c +75529472ns 1359905 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000035b +75529551ns 1359909 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b09d PA:1c00b09d +75529571ns 1359910 1c000e82 fff60613 addi x12, x12, -1 x12=0000035a x12:0000035b +75529591ns 1359911 1c000e84 00130313 addi x6, x6, 1 x6=1c00b09e x6:1c00b09d +75529610ns 1359912 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000035a +75529690ns 1359916 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b09e PA:1c00b09e +75529709ns 1359917 1c000e82 fff60613 addi x12, x12, -1 x12=00000359 x12:0000035a +75529729ns 1359918 1c000e84 00130313 addi x6, x6, 1 x6=1c00b09f x6:1c00b09e +75529749ns 1359919 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000359 +75529828ns 1359923 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b09f PA:1c00b09f +75529848ns 1359924 1c000e82 fff60613 addi x12, x12, -1 x12=00000358 x12:00000359 +75529868ns 1359925 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0a0 x6:1c00b09f +75529888ns 1359926 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000358 +75529967ns 1359930 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0a0 PA:1c00b0a0 +75529987ns 1359931 1c000e82 fff60613 addi x12, x12, -1 x12=00000357 x12:00000358 +75530006ns 1359932 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0a1 x6:1c00b0a0 +75530026ns 1359933 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000357 +75530105ns 1359937 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0a1 PA:1c00b0a1 +75530125ns 1359938 1c000e82 fff60613 addi x12, x12, -1 x12=00000356 x12:00000357 +75530145ns 1359939 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0a2 x6:1c00b0a1 +75530165ns 1359940 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000356 +75530244ns 1359944 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0a2 PA:1c00b0a2 +75530264ns 1359945 1c000e82 fff60613 addi x12, x12, -1 x12=00000355 x12:00000356 +75530283ns 1359946 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0a3 x6:1c00b0a2 +75530303ns 1359947 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000355 +75530382ns 1359951 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0a3 PA:1c00b0a3 +75530402ns 1359952 1c000e82 fff60613 addi x12, x12, -1 x12=00000354 x12:00000355 +75530422ns 1359953 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0a4 x6:1c00b0a3 +75530442ns 1359954 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000354 +75530521ns 1359958 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0a4 PA:1c00b0a4 +75530541ns 1359959 1c000e82 fff60613 addi x12, x12, -1 x12=00000353 x12:00000354 +75530560ns 1359960 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0a5 x6:1c00b0a4 +75530580ns 1359961 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000353 +75530659ns 1359965 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0a5 PA:1c00b0a5 +75530679ns 1359966 1c000e82 fff60613 addi x12, x12, -1 x12=00000352 x12:00000353 +75530699ns 1359967 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0a6 x6:1c00b0a5 +75530719ns 1359968 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000352 +75530798ns 1359972 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0a6 PA:1c00b0a6 +75530818ns 1359973 1c000e82 fff60613 addi x12, x12, -1 x12=00000351 x12:00000352 +75530838ns 1359974 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0a7 x6:1c00b0a6 +75530857ns 1359975 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000351 +75530937ns 1359979 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0a7 PA:1c00b0a7 +75530956ns 1359980 1c000e82 fff60613 addi x12, x12, -1 x12=00000350 x12:00000351 +75530976ns 1359981 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0a8 x6:1c00b0a7 +75530996ns 1359982 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000350 +75531075ns 1359986 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0a8 PA:1c00b0a8 +75531095ns 1359987 1c000e82 fff60613 addi x12, x12, -1 x12=0000034f x12:00000350 +75531115ns 1359988 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0a9 x6:1c00b0a8 +75531134ns 1359989 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000034f +75531214ns 1359993 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0a9 PA:1c00b0a9 +75531233ns 1359994 1c000e82 fff60613 addi x12, x12, -1 x12=0000034e x12:0000034f +75531253ns 1359995 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0aa x6:1c00b0a9 +75531273ns 1359996 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000034e +75531352ns 1360000 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0aa PA:1c00b0aa +75531372ns 1360001 1c000e82 fff60613 addi x12, x12, -1 x12=0000034d x12:0000034e +75531392ns 1360002 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0ab x6:1c00b0aa +75531412ns 1360003 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000034d +75531491ns 1360007 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0ab PA:1c00b0ab +75531510ns 1360008 1c000e82 fff60613 addi x12, x12, -1 x12=0000034c x12:0000034d +75531530ns 1360009 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0ac x6:1c00b0ab +75531550ns 1360010 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000034c +75531629ns 1360014 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0ac PA:1c00b0ac +75531649ns 1360015 1c000e82 fff60613 addi x12, x12, -1 x12=0000034b x12:0000034c +75531669ns 1360016 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0ad x6:1c00b0ac +75531689ns 1360017 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000034b +75531768ns 1360021 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0ad PA:1c00b0ad +75531788ns 1360022 1c000e82 fff60613 addi x12, x12, -1 x12=0000034a x12:0000034b +75531807ns 1360023 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0ae x6:1c00b0ad +75531827ns 1360024 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000034a +75531906ns 1360028 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0ae PA:1c00b0ae +75531926ns 1360029 1c000e82 fff60613 addi x12, x12, -1 x12=00000349 x12:0000034a +75531946ns 1360030 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0af x6:1c00b0ae +75531966ns 1360031 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000349 +75532045ns 1360035 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0af PA:1c00b0af +75532065ns 1360036 1c000e82 fff60613 addi x12, x12, -1 x12=00000348 x12:00000349 +75532084ns 1360037 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0b0 x6:1c00b0af +75532104ns 1360038 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000348 +75532183ns 1360042 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0b0 PA:1c00b0b0 +75532203ns 1360043 1c000e82 fff60613 addi x12, x12, -1 x12=00000347 x12:00000348 +75532223ns 1360044 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0b1 x6:1c00b0b0 +75532243ns 1360045 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000347 +75532322ns 1360049 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0b1 PA:1c00b0b1 +75532342ns 1360050 1c000e82 fff60613 addi x12, x12, -1 x12=00000346 x12:00000347 +75532362ns 1360051 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0b2 x6:1c00b0b1 +75532381ns 1360052 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000346 +75532461ns 1360056 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0b2 PA:1c00b0b2 +75532480ns 1360057 1c000e82 fff60613 addi x12, x12, -1 x12=00000345 x12:00000346 +75532500ns 1360058 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0b3 x6:1c00b0b2 +75532520ns 1360059 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000345 +75532599ns 1360063 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0b3 PA:1c00b0b3 +75532619ns 1360064 1c000e82 fff60613 addi x12, x12, -1 x12=00000344 x12:00000345 +75532639ns 1360065 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0b4 x6:1c00b0b3 +75532658ns 1360066 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000344 +75532738ns 1360070 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0b4 PA:1c00b0b4 +75532757ns 1360071 1c000e82 fff60613 addi x12, x12, -1 x12=00000343 x12:00000344 +75532777ns 1360072 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0b5 x6:1c00b0b4 +75532797ns 1360073 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000343 +75532876ns 1360077 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0b5 PA:1c00b0b5 +75532896ns 1360078 1c000e82 fff60613 addi x12, x12, -1 x12=00000342 x12:00000343 +75532916ns 1360079 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0b6 x6:1c00b0b5 +75532936ns 1360080 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000342 +75533015ns 1360084 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0b6 PA:1c00b0b6 +75533034ns 1360085 1c000e82 fff60613 addi x12, x12, -1 x12=00000341 x12:00000342 +75533054ns 1360086 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0b7 x6:1c00b0b6 +75533074ns 1360087 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000341 +75533153ns 1360091 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0b7 PA:1c00b0b7 +75533173ns 1360092 1c000e82 fff60613 addi x12, x12, -1 x12=00000340 x12:00000341 +75533193ns 1360093 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0b8 x6:1c00b0b7 +75533213ns 1360094 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000340 +75533292ns 1360098 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0b8 PA:1c00b0b8 +75533312ns 1360099 1c000e82 fff60613 addi x12, x12, -1 x12=0000033f x12:00000340 +75533331ns 1360100 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0b9 x6:1c00b0b8 +75533351ns 1360101 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000033f +75533430ns 1360105 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0b9 PA:1c00b0b9 +75533450ns 1360106 1c000e82 fff60613 addi x12, x12, -1 x12=0000033e x12:0000033f +75533470ns 1360107 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0ba x6:1c00b0b9 +75533490ns 1360108 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000033e +75533569ns 1360112 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0ba PA:1c00b0ba +75533589ns 1360113 1c000e82 fff60613 addi x12, x12, -1 x12=0000033d x12:0000033e +75533608ns 1360114 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0bb x6:1c00b0ba +75533628ns 1360115 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000033d +75533707ns 1360119 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0bb PA:1c00b0bb +75533727ns 1360120 1c000e82 fff60613 addi x12, x12, -1 x12=0000033c x12:0000033d +75533747ns 1360121 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0bc x6:1c00b0bb +75533767ns 1360122 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000033c +75533846ns 1360126 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0bc PA:1c00b0bc +75533866ns 1360127 1c000e82 fff60613 addi x12, x12, -1 x12=0000033b x12:0000033c +75533886ns 1360128 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0bd x6:1c00b0bc +75533905ns 1360129 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000033b +75533984ns 1360133 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0bd PA:1c00b0bd +75534004ns 1360134 1c000e82 fff60613 addi x12, x12, -1 x12=0000033a x12:0000033b +75534024ns 1360135 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0be x6:1c00b0bd +75534044ns 1360136 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000033a +75534123ns 1360140 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0be PA:1c00b0be +75534143ns 1360141 1c000e82 fff60613 addi x12, x12, -1 x12=00000339 x12:0000033a +75534163ns 1360142 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0bf x6:1c00b0be +75534182ns 1360143 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000339 +75534262ns 1360147 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0bf PA:1c00b0bf +75534281ns 1360148 1c000e82 fff60613 addi x12, x12, -1 x12=00000338 x12:00000339 +75534301ns 1360149 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0c0 x6:1c00b0bf +75534321ns 1360150 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000338 +75534400ns 1360154 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0c0 PA:1c00b0c0 +75534420ns 1360155 1c000e82 fff60613 addi x12, x12, -1 x12=00000337 x12:00000338 +75534440ns 1360156 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0c1 x6:1c00b0c0 +75534459ns 1360157 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000337 +75534539ns 1360161 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0c1 PA:1c00b0c1 +75534558ns 1360162 1c000e82 fff60613 addi x12, x12, -1 x12=00000336 x12:00000337 +75534578ns 1360163 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0c2 x6:1c00b0c1 +75534598ns 1360164 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000336 +75534677ns 1360168 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0c2 PA:1c00b0c2 +75534697ns 1360169 1c000e82 fff60613 addi x12, x12, -1 x12=00000335 x12:00000336 +75534717ns 1360170 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0c3 x6:1c00b0c2 +75534737ns 1360171 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000335 +75534816ns 1360175 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0c3 PA:1c00b0c3 +75534836ns 1360176 1c000e82 fff60613 addi x12, x12, -1 x12=00000334 x12:00000335 +75534855ns 1360177 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0c4 x6:1c00b0c3 +75534875ns 1360178 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000334 +75534954ns 1360182 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0c4 PA:1c00b0c4 +75534974ns 1360183 1c000e82 fff60613 addi x12, x12, -1 x12=00000333 x12:00000334 +75534994ns 1360184 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0c5 x6:1c00b0c4 +75535014ns 1360185 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000333 +75535093ns 1360189 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0c5 PA:1c00b0c5 +75535113ns 1360190 1c000e82 fff60613 addi x12, x12, -1 x12=00000332 x12:00000333 +75535132ns 1360191 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0c6 x6:1c00b0c5 +75535152ns 1360192 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000332 +75535231ns 1360196 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0c6 PA:1c00b0c6 +75535251ns 1360197 1c000e82 fff60613 addi x12, x12, -1 x12=00000331 x12:00000332 +75535271ns 1360198 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0c7 x6:1c00b0c6 +75535291ns 1360199 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000331 +75535370ns 1360203 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0c7 PA:1c00b0c7 +75535390ns 1360204 1c000e82 fff60613 addi x12, x12, -1 x12=00000330 x12:00000331 +75535410ns 1360205 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0c8 x6:1c00b0c7 +75535429ns 1360206 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000330 +75535508ns 1360210 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0c8 PA:1c00b0c8 +75535528ns 1360211 1c000e82 fff60613 addi x12, x12, -1 x12=0000032f x12:00000330 +75535548ns 1360212 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0c9 x6:1c00b0c8 +75535568ns 1360213 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000032f +75535647ns 1360217 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0c9 PA:1c00b0c9 +75535667ns 1360218 1c000e82 fff60613 addi x12, x12, -1 x12=0000032e x12:0000032f +75535687ns 1360219 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0ca x6:1c00b0c9 +75535706ns 1360220 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000032e +75535786ns 1360224 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0ca PA:1c00b0ca +75535805ns 1360225 1c000e82 fff60613 addi x12, x12, -1 x12=0000032d x12:0000032e +75535825ns 1360226 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0cb x6:1c00b0ca +75535845ns 1360227 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000032d +75535924ns 1360231 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0cb PA:1c00b0cb +75535944ns 1360232 1c000e82 fff60613 addi x12, x12, -1 x12=0000032c x12:0000032d +75535964ns 1360233 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0cc x6:1c00b0cb +75535983ns 1360234 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000032c +75536063ns 1360238 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0cc PA:1c00b0cc +75536082ns 1360239 1c000e82 fff60613 addi x12, x12, -1 x12=0000032b x12:0000032c +75536102ns 1360240 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0cd x6:1c00b0cc +75536122ns 1360241 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000032b +75536201ns 1360245 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0cd PA:1c00b0cd +75536221ns 1360246 1c000e82 fff60613 addi x12, x12, -1 x12=0000032a x12:0000032b +75536241ns 1360247 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0ce x6:1c00b0cd +75536261ns 1360248 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000032a +75536340ns 1360252 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0ce PA:1c00b0ce +75536360ns 1360253 1c000e82 fff60613 addi x12, x12, -1 x12=00000329 x12:0000032a +75536379ns 1360254 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0cf x6:1c00b0ce +75536399ns 1360255 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000329 +75536478ns 1360259 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0cf PA:1c00b0cf +75536498ns 1360260 1c000e82 fff60613 addi x12, x12, -1 x12=00000328 x12:00000329 +75536518ns 1360261 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0d0 x6:1c00b0cf +75536538ns 1360262 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000328 +75536617ns 1360266 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0d0 PA:1c00b0d0 +75536637ns 1360267 1c000e82 fff60613 addi x12, x12, -1 x12=00000327 x12:00000328 +75536656ns 1360268 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0d1 x6:1c00b0d0 +75536676ns 1360269 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000327 +75536755ns 1360273 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0d1 PA:1c00b0d1 +75536775ns 1360274 1c000e82 fff60613 addi x12, x12, -1 x12=00000326 x12:00000327 +75536795ns 1360275 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0d2 x6:1c00b0d1 +75536815ns 1360276 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000326 +75536894ns 1360280 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0d2 PA:1c00b0d2 +75536914ns 1360281 1c000e82 fff60613 addi x12, x12, -1 x12=00000325 x12:00000326 +75536933ns 1360282 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0d3 x6:1c00b0d2 +75536953ns 1360283 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000325 +75537032ns 1360287 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0d3 PA:1c00b0d3 +75537052ns 1360288 1c000e82 fff60613 addi x12, x12, -1 x12=00000324 x12:00000325 +75537072ns 1360289 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0d4 x6:1c00b0d3 +75537092ns 1360290 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000324 +75537171ns 1360294 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0d4 PA:1c00b0d4 +75537191ns 1360295 1c000e82 fff60613 addi x12, x12, -1 x12=00000323 x12:00000324 +75537211ns 1360296 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0d5 x6:1c00b0d4 +75537230ns 1360297 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000323 +75537310ns 1360301 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0d5 PA:1c00b0d5 +75537329ns 1360302 1c000e82 fff60613 addi x12, x12, -1 x12=00000322 x12:00000323 +75537349ns 1360303 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0d6 x6:1c00b0d5 +75537369ns 1360304 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000322 +75537448ns 1360308 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0d6 PA:1c00b0d6 +75537468ns 1360309 1c000e82 fff60613 addi x12, x12, -1 x12=00000321 x12:00000322 +75537488ns 1360310 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0d7 x6:1c00b0d6 +75537507ns 1360311 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000321 +75537587ns 1360315 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0d7 PA:1c00b0d7 +75537606ns 1360316 1c000e82 fff60613 addi x12, x12, -1 x12=00000320 x12:00000321 +75537626ns 1360317 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0d8 x6:1c00b0d7 +75537646ns 1360318 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000320 +75537725ns 1360322 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0d8 PA:1c00b0d8 +75537745ns 1360323 1c000e82 fff60613 addi x12, x12, -1 x12=0000031f x12:00000320 +75537765ns 1360324 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0d9 x6:1c00b0d8 +75537785ns 1360325 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000031f +75537864ns 1360329 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0d9 PA:1c00b0d9 +75537884ns 1360330 1c000e82 fff60613 addi x12, x12, -1 x12=0000031e x12:0000031f +75537903ns 1360331 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0da x6:1c00b0d9 +75537923ns 1360332 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000031e +75538002ns 1360336 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0da PA:1c00b0da +75538022ns 1360337 1c000e82 fff60613 addi x12, x12, -1 x12=0000031d x12:0000031e +75538042ns 1360338 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0db x6:1c00b0da +75538062ns 1360339 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000031d +75538141ns 1360343 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0db PA:1c00b0db +75538161ns 1360344 1c000e82 fff60613 addi x12, x12, -1 x12=0000031c x12:0000031d +75538180ns 1360345 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0dc x6:1c00b0db +75538200ns 1360346 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000031c +75538279ns 1360350 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0dc PA:1c00b0dc +75538299ns 1360351 1c000e82 fff60613 addi x12, x12, -1 x12=0000031b x12:0000031c +75538319ns 1360352 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0dd x6:1c00b0dc +75538339ns 1360353 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000031b +75538418ns 1360357 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0dd PA:1c00b0dd +75538438ns 1360358 1c000e82 fff60613 addi x12, x12, -1 x12=0000031a x12:0000031b +75538457ns 1360359 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0de x6:1c00b0dd +75538477ns 1360360 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000031a +75538556ns 1360364 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0de PA:1c00b0de +75538576ns 1360365 1c000e82 fff60613 addi x12, x12, -1 x12=00000319 x12:0000031a +75538596ns 1360366 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0df x6:1c00b0de +75538616ns 1360367 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000319 +75538695ns 1360371 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0df PA:1c00b0df +75538715ns 1360372 1c000e82 fff60613 addi x12, x12, -1 x12=00000318 x12:00000319 +75538735ns 1360373 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0e0 x6:1c00b0df +75538754ns 1360374 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000318 +75538834ns 1360378 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0e0 PA:1c00b0e0 +75538853ns 1360379 1c000e82 fff60613 addi x12, x12, -1 x12=00000317 x12:00000318 +75538873ns 1360380 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0e1 x6:1c00b0e0 +75538893ns 1360381 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000317 +75538972ns 1360385 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0e1 PA:1c00b0e1 +75538992ns 1360386 1c000e82 fff60613 addi x12, x12, -1 x12=00000316 x12:00000317 +75539012ns 1360387 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0e2 x6:1c00b0e1 +75539031ns 1360388 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000316 +75539111ns 1360392 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0e2 PA:1c00b0e2 +75539130ns 1360393 1c000e82 fff60613 addi x12, x12, -1 x12=00000315 x12:00000316 +75539150ns 1360394 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0e3 x6:1c00b0e2 +75539170ns 1360395 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000315 +75539249ns 1360399 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0e3 PA:1c00b0e3 +75539269ns 1360400 1c000e82 fff60613 addi x12, x12, -1 x12=00000314 x12:00000315 +75539289ns 1360401 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0e4 x6:1c00b0e3 +75539309ns 1360402 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000314 +75539388ns 1360406 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0e4 PA:1c00b0e4 +75539407ns 1360407 1c000e82 fff60613 addi x12, x12, -1 x12=00000313 x12:00000314 +75539427ns 1360408 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0e5 x6:1c00b0e4 +75539447ns 1360409 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000313 +75539526ns 1360413 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0e5 PA:1c00b0e5 +75539546ns 1360414 1c000e82 fff60613 addi x12, x12, -1 x12=00000312 x12:00000313 +75539566ns 1360415 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0e6 x6:1c00b0e5 +75539586ns 1360416 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000312 +75539665ns 1360420 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0e6 PA:1c00b0e6 +75539685ns 1360421 1c000e82 fff60613 addi x12, x12, -1 x12=00000311 x12:00000312 +75539704ns 1360422 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0e7 x6:1c00b0e6 +75539724ns 1360423 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000311 +75539803ns 1360427 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0e7 PA:1c00b0e7 +75539823ns 1360428 1c000e82 fff60613 addi x12, x12, -1 x12=00000310 x12:00000311 +75539843ns 1360429 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0e8 x6:1c00b0e7 +75539863ns 1360430 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000310 +75539942ns 1360434 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0e8 PA:1c00b0e8 +75539962ns 1360435 1c000e82 fff60613 addi x12, x12, -1 x12=0000030f x12:00000310 +75539981ns 1360436 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0e9 x6:1c00b0e8 +75540001ns 1360437 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000030f +75540080ns 1360441 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0e9 PA:1c00b0e9 +75540100ns 1360442 1c000e82 fff60613 addi x12, x12, -1 x12=0000030e x12:0000030f +75540120ns 1360443 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0ea x6:1c00b0e9 +75540140ns 1360444 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000030e +75540219ns 1360448 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0ea PA:1c00b0ea +75540239ns 1360449 1c000e82 fff60613 addi x12, x12, -1 x12=0000030d x12:0000030e +75540259ns 1360450 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0eb x6:1c00b0ea +75540278ns 1360451 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000030d +75540358ns 1360455 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0eb PA:1c00b0eb +75540377ns 1360456 1c000e82 fff60613 addi x12, x12, -1 x12=0000030c x12:0000030d +75540397ns 1360457 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0ec x6:1c00b0eb +75540417ns 1360458 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000030c +75540496ns 1360462 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0ec PA:1c00b0ec +75540516ns 1360463 1c000e82 fff60613 addi x12, x12, -1 x12=0000030b x12:0000030c +75540536ns 1360464 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0ed x6:1c00b0ec +75540555ns 1360465 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000030b +75540635ns 1360469 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0ed PA:1c00b0ed +75540654ns 1360470 1c000e82 fff60613 addi x12, x12, -1 x12=0000030a x12:0000030b +75540674ns 1360471 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0ee x6:1c00b0ed +75540694ns 1360472 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000030a +75540773ns 1360476 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0ee PA:1c00b0ee +75540793ns 1360477 1c000e82 fff60613 addi x12, x12, -1 x12=00000309 x12:0000030a +75540813ns 1360478 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0ef x6:1c00b0ee +75540833ns 1360479 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000309 +75540912ns 1360483 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0ef PA:1c00b0ef +75540931ns 1360484 1c000e82 fff60613 addi x12, x12, -1 x12=00000308 x12:00000309 +75540951ns 1360485 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0f0 x6:1c00b0ef +75540971ns 1360486 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000308 +75541050ns 1360490 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0f0 PA:1c00b0f0 +75541070ns 1360491 1c000e82 fff60613 addi x12, x12, -1 x12=00000307 x12:00000308 +75541090ns 1360492 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0f1 x6:1c00b0f0 +75541110ns 1360493 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000307 +75541189ns 1360497 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0f1 PA:1c00b0f1 +75541209ns 1360498 1c000e82 fff60613 addi x12, x12, -1 x12=00000306 x12:00000307 +75541228ns 1360499 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0f2 x6:1c00b0f1 +75541248ns 1360500 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000306 +75541327ns 1360504 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0f2 PA:1c00b0f2 +75541347ns 1360505 1c000e82 fff60613 addi x12, x12, -1 x12=00000305 x12:00000306 +75541367ns 1360506 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0f3 x6:1c00b0f2 +75541387ns 1360507 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000305 +75541466ns 1360511 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0f3 PA:1c00b0f3 +75541486ns 1360512 1c000e82 fff60613 addi x12, x12, -1 x12=00000304 x12:00000305 +75541505ns 1360513 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0f4 x6:1c00b0f3 +75541525ns 1360514 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000304 +75541604ns 1360518 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0f4 PA:1c00b0f4 +75541624ns 1360519 1c000e82 fff60613 addi x12, x12, -1 x12=00000303 x12:00000304 +75541644ns 1360520 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0f5 x6:1c00b0f4 +75541664ns 1360521 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000303 +75541743ns 1360525 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0f5 PA:1c00b0f5 +75541763ns 1360526 1c000e82 fff60613 addi x12, x12, -1 x12=00000302 x12:00000303 +75541783ns 1360527 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0f6 x6:1c00b0f5 +75541802ns 1360528 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000302 +75541881ns 1360532 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0f6 PA:1c00b0f6 +75541901ns 1360533 1c000e82 fff60613 addi x12, x12, -1 x12=00000301 x12:00000302 +75541921ns 1360534 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0f7 x6:1c00b0f6 +75541941ns 1360535 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000301 +75542020ns 1360539 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0f7 PA:1c00b0f7 +75542040ns 1360540 1c000e82 fff60613 addi x12, x12, -1 x12=00000300 x12:00000301 +75542060ns 1360541 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0f8 x6:1c00b0f7 +75542079ns 1360542 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000300 +75542159ns 1360546 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0f8 PA:1c00b0f8 +75542178ns 1360547 1c000e82 fff60613 addi x12, x12, -1 x12=000002ff x12:00000300 +75542198ns 1360548 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0f9 x6:1c00b0f8 +75542218ns 1360549 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ff +75542297ns 1360553 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0f9 PA:1c00b0f9 +75542317ns 1360554 1c000e82 fff60613 addi x12, x12, -1 x12=000002fe x12:000002ff +75542337ns 1360555 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0fa x6:1c00b0f9 +75542357ns 1360556 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002fe +75542436ns 1360560 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0fa PA:1c00b0fa +75542455ns 1360561 1c000e82 fff60613 addi x12, x12, -1 x12=000002fd x12:000002fe +75542475ns 1360562 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0fb x6:1c00b0fa +75542495ns 1360563 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002fd +75542574ns 1360567 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0fb PA:1c00b0fb +75542594ns 1360568 1c000e82 fff60613 addi x12, x12, -1 x12=000002fc x12:000002fd +75542614ns 1360569 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0fc x6:1c00b0fb +75542634ns 1360570 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002fc +75542713ns 1360574 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0fc PA:1c00b0fc +75542733ns 1360575 1c000e82 fff60613 addi x12, x12, -1 x12=000002fb x12:000002fc +75542752ns 1360576 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0fd x6:1c00b0fc +75542772ns 1360577 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002fb +75542851ns 1360581 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0fd PA:1c00b0fd +75542871ns 1360582 1c000e82 fff60613 addi x12, x12, -1 x12=000002fa x12:000002fb +75542891ns 1360583 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0fe x6:1c00b0fd +75542911ns 1360584 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002fa +75542990ns 1360588 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0fe PA:1c00b0fe +75543010ns 1360589 1c000e82 fff60613 addi x12, x12, -1 x12=000002f9 x12:000002fa +75543029ns 1360590 1c000e84 00130313 addi x6, x6, 1 x6=1c00b0ff x6:1c00b0fe +75543049ns 1360591 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002f9 +75543128ns 1360595 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b0ff PA:1c00b0ff +75543148ns 1360596 1c000e82 fff60613 addi x12, x12, -1 x12=000002f8 x12:000002f9 +75543168ns 1360597 1c000e84 00130313 addi x6, x6, 1 x6=1c00b100 x6:1c00b0ff +75543188ns 1360598 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002f8 +75543267ns 1360602 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b100 PA:1c00b100 +75543287ns 1360603 1c000e82 fff60613 addi x12, x12, -1 x12=000002f7 x12:000002f8 +75543307ns 1360604 1c000e84 00130313 addi x6, x6, 1 x6=1c00b101 x6:1c00b100 +75543326ns 1360605 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002f7 +75543405ns 1360609 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b101 PA:1c00b101 +75543425ns 1360610 1c000e82 fff60613 addi x12, x12, -1 x12=000002f6 x12:000002f7 +75543445ns 1360611 1c000e84 00130313 addi x6, x6, 1 x6=1c00b102 x6:1c00b101 +75543465ns 1360612 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002f6 +75543544ns 1360616 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b102 PA:1c00b102 +75543564ns 1360617 1c000e82 fff60613 addi x12, x12, -1 x12=000002f5 x12:000002f6 +75543584ns 1360618 1c000e84 00130313 addi x6, x6, 1 x6=1c00b103 x6:1c00b102 +75543603ns 1360619 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002f5 +75543683ns 1360623 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b103 PA:1c00b103 +75543702ns 1360624 1c000e82 fff60613 addi x12, x12, -1 x12=000002f4 x12:000002f5 +75543722ns 1360625 1c000e84 00130313 addi x6, x6, 1 x6=1c00b104 x6:1c00b103 +75543742ns 1360626 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002f4 +75543821ns 1360630 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b104 PA:1c00b104 +75543841ns 1360631 1c000e82 fff60613 addi x12, x12, -1 x12=000002f3 x12:000002f4 +75543861ns 1360632 1c000e84 00130313 addi x6, x6, 1 x6=1c00b105 x6:1c00b104 +75543880ns 1360633 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002f3 +75543960ns 1360637 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b105 PA:1c00b105 +75543979ns 1360638 1c000e82 fff60613 addi x12, x12, -1 x12=000002f2 x12:000002f3 +75543999ns 1360639 1c000e84 00130313 addi x6, x6, 1 x6=1c00b106 x6:1c00b105 +75544019ns 1360640 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002f2 +75544098ns 1360644 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b106 PA:1c00b106 +75544118ns 1360645 1c000e82 fff60613 addi x12, x12, -1 x12=000002f1 x12:000002f2 +75544138ns 1360646 1c000e84 00130313 addi x6, x6, 1 x6=1c00b107 x6:1c00b106 +75544158ns 1360647 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002f1 +75544237ns 1360651 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b107 PA:1c00b107 +75544257ns 1360652 1c000e82 fff60613 addi x12, x12, -1 x12=000002f0 x12:000002f1 +75544276ns 1360653 1c000e84 00130313 addi x6, x6, 1 x6=1c00b108 x6:1c00b107 +75544296ns 1360654 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002f0 +75544375ns 1360658 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b108 PA:1c00b108 +75544395ns 1360659 1c000e82 fff60613 addi x12, x12, -1 x12=000002ef x12:000002f0 +75544415ns 1360660 1c000e84 00130313 addi x6, x6, 1 x6=1c00b109 x6:1c00b108 +75544435ns 1360661 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ef +75544514ns 1360665 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b109 PA:1c00b109 +75544534ns 1360666 1c000e82 fff60613 addi x12, x12, -1 x12=000002ee x12:000002ef +75544553ns 1360667 1c000e84 00130313 addi x6, x6, 1 x6=1c00b10a x6:1c00b109 +75544573ns 1360668 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ee +75544652ns 1360672 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b10a PA:1c00b10a +75544672ns 1360673 1c000e82 fff60613 addi x12, x12, -1 x12=000002ed x12:000002ee +75544692ns 1360674 1c000e84 00130313 addi x6, x6, 1 x6=1c00b10b x6:1c00b10a +75544712ns 1360675 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ed +75544791ns 1360679 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b10b PA:1c00b10b +75544811ns 1360680 1c000e82 fff60613 addi x12, x12, -1 x12=000002ec x12:000002ed +75544831ns 1360681 1c000e84 00130313 addi x6, x6, 1 x6=1c00b10c x6:1c00b10b +75544850ns 1360682 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ec +75544929ns 1360686 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b10c PA:1c00b10c +75544949ns 1360687 1c000e82 fff60613 addi x12, x12, -1 x12=000002eb x12:000002ec +75544969ns 1360688 1c000e84 00130313 addi x6, x6, 1 x6=1c00b10d x6:1c00b10c +75544989ns 1360689 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002eb +75545068ns 1360693 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b10d PA:1c00b10d +75545088ns 1360694 1c000e82 fff60613 addi x12, x12, -1 x12=000002ea x12:000002eb +75545108ns 1360695 1c000e84 00130313 addi x6, x6, 1 x6=1c00b10e x6:1c00b10d +75545127ns 1360696 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ea +75545207ns 1360700 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b10e PA:1c00b10e +75545226ns 1360701 1c000e82 fff60613 addi x12, x12, -1 x12=000002e9 x12:000002ea +75545246ns 1360702 1c000e84 00130313 addi x6, x6, 1 x6=1c00b10f x6:1c00b10e +75545266ns 1360703 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002e9 +75545345ns 1360707 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b10f PA:1c00b10f +75545365ns 1360708 1c000e82 fff60613 addi x12, x12, -1 x12=000002e8 x12:000002e9 +75545385ns 1360709 1c000e84 00130313 addi x6, x6, 1 x6=1c00b110 x6:1c00b10f +75545404ns 1360710 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002e8 +75545484ns 1360714 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b110 PA:1c00b110 +75545503ns 1360715 1c000e82 fff60613 addi x12, x12, -1 x12=000002e7 x12:000002e8 +75545523ns 1360716 1c000e84 00130313 addi x6, x6, 1 x6=1c00b111 x6:1c00b110 +75545543ns 1360717 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002e7 +75545622ns 1360721 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b111 PA:1c00b111 +75545642ns 1360722 1c000e82 fff60613 addi x12, x12, -1 x12=000002e6 x12:000002e7 +75545662ns 1360723 1c000e84 00130313 addi x6, x6, 1 x6=1c00b112 x6:1c00b111 +75545682ns 1360724 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002e6 +75545761ns 1360728 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b112 PA:1c00b112 +75545781ns 1360729 1c000e82 fff60613 addi x12, x12, -1 x12=000002e5 x12:000002e6 +75545800ns 1360730 1c000e84 00130313 addi x6, x6, 1 x6=1c00b113 x6:1c00b112 +75545820ns 1360731 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002e5 +75545899ns 1360735 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b113 PA:1c00b113 +75545919ns 1360736 1c000e82 fff60613 addi x12, x12, -1 x12=000002e4 x12:000002e5 +75545939ns 1360737 1c000e84 00130313 addi x6, x6, 1 x6=1c00b114 x6:1c00b113 +75545959ns 1360738 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002e4 +75546038ns 1360742 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b114 PA:1c00b114 +75546058ns 1360743 1c000e82 fff60613 addi x12, x12, -1 x12=000002e3 x12:000002e4 +75546077ns 1360744 1c000e84 00130313 addi x6, x6, 1 x6=1c00b115 x6:1c00b114 +75546097ns 1360745 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002e3 +75546176ns 1360749 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b115 PA:1c00b115 +75546196ns 1360750 1c000e82 fff60613 addi x12, x12, -1 x12=000002e2 x12:000002e3 +75546216ns 1360751 1c000e84 00130313 addi x6, x6, 1 x6=1c00b116 x6:1c00b115 +75546236ns 1360752 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002e2 +75546315ns 1360756 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b116 PA:1c00b116 +75546335ns 1360757 1c000e82 fff60613 addi x12, x12, -1 x12=000002e1 x12:000002e2 +75546354ns 1360758 1c000e84 00130313 addi x6, x6, 1 x6=1c00b117 x6:1c00b116 +75546374ns 1360759 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002e1 +75546453ns 1360763 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b117 PA:1c00b117 +75546473ns 1360764 1c000e82 fff60613 addi x12, x12, -1 x12=000002e0 x12:000002e1 +75546493ns 1360765 1c000e84 00130313 addi x6, x6, 1 x6=1c00b118 x6:1c00b117 +75546513ns 1360766 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002e0 +75546592ns 1360770 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b118 PA:1c00b118 +75546612ns 1360771 1c000e82 fff60613 addi x12, x12, -1 x12=000002df x12:000002e0 +75546632ns 1360772 1c000e84 00130313 addi x6, x6, 1 x6=1c00b119 x6:1c00b118 +75546651ns 1360773 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002df +75546731ns 1360777 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b119 PA:1c00b119 +75546750ns 1360778 1c000e82 fff60613 addi x12, x12, -1 x12=000002de x12:000002df +75546770ns 1360779 1c000e84 00130313 addi x6, x6, 1 x6=1c00b11a x6:1c00b119 +75546790ns 1360780 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002de +75546869ns 1360784 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b11a PA:1c00b11a +75546889ns 1360785 1c000e82 fff60613 addi x12, x12, -1 x12=000002dd x12:000002de +75546909ns 1360786 1c000e84 00130313 addi x6, x6, 1 x6=1c00b11b x6:1c00b11a +75546928ns 1360787 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002dd +75547008ns 1360791 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b11b PA:1c00b11b +75547027ns 1360792 1c000e82 fff60613 addi x12, x12, -1 x12=000002dc x12:000002dd +75547047ns 1360793 1c000e84 00130313 addi x6, x6, 1 x6=1c00b11c x6:1c00b11b +75547067ns 1360794 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002dc +75547146ns 1360798 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b11c PA:1c00b11c +75547166ns 1360799 1c000e82 fff60613 addi x12, x12, -1 x12=000002db x12:000002dc +75547186ns 1360800 1c000e84 00130313 addi x6, x6, 1 x6=1c00b11d x6:1c00b11c +75547206ns 1360801 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002db +75547285ns 1360805 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b11d PA:1c00b11d +75547305ns 1360806 1c000e82 fff60613 addi x12, x12, -1 x12=000002da x12:000002db +75547324ns 1360807 1c000e84 00130313 addi x6, x6, 1 x6=1c00b11e x6:1c00b11d +75547344ns 1360808 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002da +75547423ns 1360812 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b11e PA:1c00b11e +75547443ns 1360813 1c000e82 fff60613 addi x12, x12, -1 x12=000002d9 x12:000002da +75547463ns 1360814 1c000e84 00130313 addi x6, x6, 1 x6=1c00b11f x6:1c00b11e +75547483ns 1360815 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002d9 +75547562ns 1360819 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b11f PA:1c00b11f +75547582ns 1360820 1c000e82 fff60613 addi x12, x12, -1 x12=000002d8 x12:000002d9 +75547601ns 1360821 1c000e84 00130313 addi x6, x6, 1 x6=1c00b120 x6:1c00b11f +75547621ns 1360822 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002d8 +75547700ns 1360826 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b120 PA:1c00b120 +75547720ns 1360827 1c000e82 fff60613 addi x12, x12, -1 x12=000002d7 x12:000002d8 +75547740ns 1360828 1c000e84 00130313 addi x6, x6, 1 x6=1c00b121 x6:1c00b120 +75547760ns 1360829 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002d7 +75547839ns 1360833 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b121 PA:1c00b121 +75547859ns 1360834 1c000e82 fff60613 addi x12, x12, -1 x12=000002d6 x12:000002d7 +75547878ns 1360835 1c000e84 00130313 addi x6, x6, 1 x6=1c00b122 x6:1c00b121 +75547898ns 1360836 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002d6 +75547977ns 1360840 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b122 PA:1c00b122 +75547997ns 1360841 1c000e82 fff60613 addi x12, x12, -1 x12=000002d5 x12:000002d6 +75548017ns 1360842 1c000e84 00130313 addi x6, x6, 1 x6=1c00b123 x6:1c00b122 +75548037ns 1360843 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002d5 +75548116ns 1360847 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b123 PA:1c00b123 +75548136ns 1360848 1c000e82 fff60613 addi x12, x12, -1 x12=000002d4 x12:000002d5 +75548156ns 1360849 1c000e84 00130313 addi x6, x6, 1 x6=1c00b124 x6:1c00b123 +75548175ns 1360850 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002d4 +75548255ns 1360854 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b124 PA:1c00b124 +75548274ns 1360855 1c000e82 fff60613 addi x12, x12, -1 x12=000002d3 x12:000002d4 +75548294ns 1360856 1c000e84 00130313 addi x6, x6, 1 x6=1c00b125 x6:1c00b124 +75548314ns 1360857 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002d3 +75548393ns 1360861 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b125 PA:1c00b125 +75548413ns 1360862 1c000e82 fff60613 addi x12, x12, -1 x12=000002d2 x12:000002d3 +75548433ns 1360863 1c000e84 00130313 addi x6, x6, 1 x6=1c00b126 x6:1c00b125 +75548452ns 1360864 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002d2 +75548532ns 1360868 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b126 PA:1c00b126 +75548551ns 1360869 1c000e82 fff60613 addi x12, x12, -1 x12=000002d1 x12:000002d2 +75548571ns 1360870 1c000e84 00130313 addi x6, x6, 1 x6=1c00b127 x6:1c00b126 +75548591ns 1360871 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002d1 +75548670ns 1360875 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b127 PA:1c00b127 +75548690ns 1360876 1c000e82 fff60613 addi x12, x12, -1 x12=000002d0 x12:000002d1 +75548710ns 1360877 1c000e84 00130313 addi x6, x6, 1 x6=1c00b128 x6:1c00b127 +75548730ns 1360878 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002d0 +75548809ns 1360882 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b128 PA:1c00b128 +75548828ns 1360883 1c000e82 fff60613 addi x12, x12, -1 x12=000002cf x12:000002d0 +75548848ns 1360884 1c000e84 00130313 addi x6, x6, 1 x6=1c00b129 x6:1c00b128 +75548868ns 1360885 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002cf +75548947ns 1360889 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b129 PA:1c00b129 +75548967ns 1360890 1c000e82 fff60613 addi x12, x12, -1 x12=000002ce x12:000002cf +75548987ns 1360891 1c000e84 00130313 addi x6, x6, 1 x6=1c00b12a x6:1c00b129 +75549007ns 1360892 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ce +75549086ns 1360896 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b12a PA:1c00b12a +75549106ns 1360897 1c000e82 fff60613 addi x12, x12, -1 x12=000002cd x12:000002ce +75549125ns 1360898 1c000e84 00130313 addi x6, x6, 1 x6=1c00b12b x6:1c00b12a +75549145ns 1360899 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002cd +75549224ns 1360903 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b12b PA:1c00b12b +75549244ns 1360904 1c000e82 fff60613 addi x12, x12, -1 x12=000002cc x12:000002cd +75549264ns 1360905 1c000e84 00130313 addi x6, x6, 1 x6=1c00b12c x6:1c00b12b +75549284ns 1360906 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002cc +75549363ns 1360910 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b12c PA:1c00b12c +75549383ns 1360911 1c000e82 fff60613 addi x12, x12, -1 x12=000002cb x12:000002cc +75549402ns 1360912 1c000e84 00130313 addi x6, x6, 1 x6=1c00b12d x6:1c00b12c +75549422ns 1360913 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002cb +75549501ns 1360917 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b12d PA:1c00b12d +75549521ns 1360918 1c000e82 fff60613 addi x12, x12, -1 x12=000002ca x12:000002cb +75549541ns 1360919 1c000e84 00130313 addi x6, x6, 1 x6=1c00b12e x6:1c00b12d +75549561ns 1360920 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ca +75549640ns 1360924 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b12e PA:1c00b12e +75549660ns 1360925 1c000e82 fff60613 addi x12, x12, -1 x12=000002c9 x12:000002ca +75549680ns 1360926 1c000e84 00130313 addi x6, x6, 1 x6=1c00b12f x6:1c00b12e +75549699ns 1360927 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002c9 +75549779ns 1360931 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b12f PA:1c00b12f +75549798ns 1360932 1c000e82 fff60613 addi x12, x12, -1 x12=000002c8 x12:000002c9 +75549818ns 1360933 1c000e84 00130313 addi x6, x6, 1 x6=1c00b130 x6:1c00b12f +75549838ns 1360934 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002c8 +75549917ns 1360938 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b130 PA:1c00b130 +75549937ns 1360939 1c000e82 fff60613 addi x12, x12, -1 x12=000002c7 x12:000002c8 +75549957ns 1360940 1c000e84 00130313 addi x6, x6, 1 x6=1c00b131 x6:1c00b130 +75549976ns 1360941 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002c7 +75550056ns 1360945 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b131 PA:1c00b131 +75550075ns 1360946 1c000e82 fff60613 addi x12, x12, -1 x12=000002c6 x12:000002c7 +75550095ns 1360947 1c000e84 00130313 addi x6, x6, 1 x6=1c00b132 x6:1c00b131 +75550115ns 1360948 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002c6 +75550194ns 1360952 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b132 PA:1c00b132 +75550214ns 1360953 1c000e82 fff60613 addi x12, x12, -1 x12=000002c5 x12:000002c6 +75550234ns 1360954 1c000e84 00130313 addi x6, x6, 1 x6=1c00b133 x6:1c00b132 +75550254ns 1360955 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002c5 +75550333ns 1360959 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b133 PA:1c00b133 +75550352ns 1360960 1c000e82 fff60613 addi x12, x12, -1 x12=000002c4 x12:000002c5 +75550372ns 1360961 1c000e84 00130313 addi x6, x6, 1 x6=1c00b134 x6:1c00b133 +75550392ns 1360962 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002c4 +75550471ns 1360966 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b134 PA:1c00b134 +75550491ns 1360967 1c000e82 fff60613 addi x12, x12, -1 x12=000002c3 x12:000002c4 +75550511ns 1360968 1c000e84 00130313 addi x6, x6, 1 x6=1c00b135 x6:1c00b134 +75550531ns 1360969 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002c3 +75550610ns 1360973 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b135 PA:1c00b135 +75550630ns 1360974 1c000e82 fff60613 addi x12, x12, -1 x12=000002c2 x12:000002c3 +75550649ns 1360975 1c000e84 00130313 addi x6, x6, 1 x6=1c00b136 x6:1c00b135 +75550669ns 1360976 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002c2 +75550748ns 1360980 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b136 PA:1c00b136 +75550768ns 1360981 1c000e82 fff60613 addi x12, x12, -1 x12=000002c1 x12:000002c2 +75550788ns 1360982 1c000e84 00130313 addi x6, x6, 1 x6=1c00b137 x6:1c00b136 +75550808ns 1360983 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002c1 +75550887ns 1360987 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b137 PA:1c00b137 +75550907ns 1360988 1c000e82 fff60613 addi x12, x12, -1 x12=000002c0 x12:000002c1 +75550926ns 1360989 1c000e84 00130313 addi x6, x6, 1 x6=1c00b138 x6:1c00b137 +75550946ns 1360990 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002c0 +75551025ns 1360994 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b138 PA:1c00b138 +75551045ns 1360995 1c000e82 fff60613 addi x12, x12, -1 x12=000002bf x12:000002c0 +75551065ns 1360996 1c000e84 00130313 addi x6, x6, 1 x6=1c00b139 x6:1c00b138 +75551085ns 1360997 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002bf +75551164ns 1361001 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b139 PA:1c00b139 +75551184ns 1361002 1c000e82 fff60613 addi x12, x12, -1 x12=000002be x12:000002bf +75551204ns 1361003 1c000e84 00130313 addi x6, x6, 1 x6=1c00b13a x6:1c00b139 +75551223ns 1361004 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002be +75551302ns 1361008 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b13a PA:1c00b13a +75551322ns 1361009 1c000e82 fff60613 addi x12, x12, -1 x12=000002bd x12:000002be +75551342ns 1361010 1c000e84 00130313 addi x6, x6, 1 x6=1c00b13b x6:1c00b13a +75551362ns 1361011 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002bd +75551441ns 1361015 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b13b PA:1c00b13b +75551461ns 1361016 1c000e82 fff60613 addi x12, x12, -1 x12=000002bc x12:000002bd +75551481ns 1361017 1c000e84 00130313 addi x6, x6, 1 x6=1c00b13c x6:1c00b13b +75551500ns 1361018 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002bc +75551580ns 1361022 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b13c PA:1c00b13c +75551599ns 1361023 1c000e82 fff60613 addi x12, x12, -1 x12=000002bb x12:000002bc +75551619ns 1361024 1c000e84 00130313 addi x6, x6, 1 x6=1c00b13d x6:1c00b13c +75551639ns 1361025 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002bb +75551718ns 1361029 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b13d PA:1c00b13d +75551738ns 1361030 1c000e82 fff60613 addi x12, x12, -1 x12=000002ba x12:000002bb +75551758ns 1361031 1c000e84 00130313 addi x6, x6, 1 x6=1c00b13e x6:1c00b13d +75551777ns 1361032 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ba +75551857ns 1361036 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b13e PA:1c00b13e +75551876ns 1361037 1c000e82 fff60613 addi x12, x12, -1 x12=000002b9 x12:000002ba +75551896ns 1361038 1c000e84 00130313 addi x6, x6, 1 x6=1c00b13f x6:1c00b13e +75551916ns 1361039 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002b9 +75551995ns 1361043 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b13f PA:1c00b13f +75552015ns 1361044 1c000e82 fff60613 addi x12, x12, -1 x12=000002b8 x12:000002b9 +75552035ns 1361045 1c000e84 00130313 addi x6, x6, 1 x6=1c00b140 x6:1c00b13f +75552055ns 1361046 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002b8 +75552134ns 1361050 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b140 PA:1c00b140 +75552154ns 1361051 1c000e82 fff60613 addi x12, x12, -1 x12=000002b7 x12:000002b8 +75552173ns 1361052 1c000e84 00130313 addi x6, x6, 1 x6=1c00b141 x6:1c00b140 +75552193ns 1361053 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002b7 +75552272ns 1361057 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b141 PA:1c00b141 +75552292ns 1361058 1c000e82 fff60613 addi x12, x12, -1 x12=000002b6 x12:000002b7 +75552312ns 1361059 1c000e84 00130313 addi x6, x6, 1 x6=1c00b142 x6:1c00b141 +75552332ns 1361060 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002b6 +75552411ns 1361064 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b142 PA:1c00b142 +75552431ns 1361065 1c000e82 fff60613 addi x12, x12, -1 x12=000002b5 x12:000002b6 +75552450ns 1361066 1c000e84 00130313 addi x6, x6, 1 x6=1c00b143 x6:1c00b142 +75552470ns 1361067 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002b5 +75552549ns 1361071 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b143 PA:1c00b143 +75552569ns 1361072 1c000e82 fff60613 addi x12, x12, -1 x12=000002b4 x12:000002b5 +75552589ns 1361073 1c000e84 00130313 addi x6, x6, 1 x6=1c00b144 x6:1c00b143 +75552609ns 1361074 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002b4 +75552688ns 1361078 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b144 PA:1c00b144 +75552708ns 1361079 1c000e82 fff60613 addi x12, x12, -1 x12=000002b3 x12:000002b4 +75552728ns 1361080 1c000e84 00130313 addi x6, x6, 1 x6=1c00b145 x6:1c00b144 +75552747ns 1361081 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002b3 +75552826ns 1361085 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b145 PA:1c00b145 +75552846ns 1361086 1c000e82 fff60613 addi x12, x12, -1 x12=000002b2 x12:000002b3 +75552866ns 1361087 1c000e84 00130313 addi x6, x6, 1 x6=1c00b146 x6:1c00b145 +75552886ns 1361088 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002b2 +75552965ns 1361092 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b146 PA:1c00b146 +75552985ns 1361093 1c000e82 fff60613 addi x12, x12, -1 x12=000002b1 x12:000002b2 +75553005ns 1361094 1c000e84 00130313 addi x6, x6, 1 x6=1c00b147 x6:1c00b146 +75553024ns 1361095 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002b1 +75553104ns 1361099 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b147 PA:1c00b147 +75553123ns 1361100 1c000e82 fff60613 addi x12, x12, -1 x12=000002b0 x12:000002b1 +75553143ns 1361101 1c000e84 00130313 addi x6, x6, 1 x6=1c00b148 x6:1c00b147 +75553163ns 1361102 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002b0 +75553242ns 1361106 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b148 PA:1c00b148 +75553262ns 1361107 1c000e82 fff60613 addi x12, x12, -1 x12=000002af x12:000002b0 +75553282ns 1361108 1c000e84 00130313 addi x6, x6, 1 x6=1c00b149 x6:1c00b148 +75553301ns 1361109 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002af +75553381ns 1361113 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b149 PA:1c00b149 +75553400ns 1361114 1c000e82 fff60613 addi x12, x12, -1 x12=000002ae x12:000002af +75553420ns 1361115 1c000e84 00130313 addi x6, x6, 1 x6=1c00b14a x6:1c00b149 +75553440ns 1361116 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ae +75553519ns 1361120 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b14a PA:1c00b14a +75553539ns 1361121 1c000e82 fff60613 addi x12, x12, -1 x12=000002ad x12:000002ae +75553559ns 1361122 1c000e84 00130313 addi x6, x6, 1 x6=1c00b14b x6:1c00b14a +75553579ns 1361123 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ad +75553658ns 1361127 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b14b PA:1c00b14b +75553678ns 1361128 1c000e82 fff60613 addi x12, x12, -1 x12=000002ac x12:000002ad +75553697ns 1361129 1c000e84 00130313 addi x6, x6, 1 x6=1c00b14c x6:1c00b14b +75553717ns 1361130 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ac +75553796ns 1361134 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b14c PA:1c00b14c +75553816ns 1361135 1c000e82 fff60613 addi x12, x12, -1 x12=000002ab x12:000002ac +75553836ns 1361136 1c000e84 00130313 addi x6, x6, 1 x6=1c00b14d x6:1c00b14c +75553856ns 1361137 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ab +75553935ns 1361141 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b14d PA:1c00b14d +75553955ns 1361142 1c000e82 fff60613 addi x12, x12, -1 x12=000002aa x12:000002ab +75553974ns 1361143 1c000e84 00130313 addi x6, x6, 1 x6=1c00b14e x6:1c00b14d +75553994ns 1361144 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002aa +75554073ns 1361148 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b14e PA:1c00b14e +75554093ns 1361149 1c000e82 fff60613 addi x12, x12, -1 x12=000002a9 x12:000002aa +75554113ns 1361150 1c000e84 00130313 addi x6, x6, 1 x6=1c00b14f x6:1c00b14e +75554133ns 1361151 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002a9 +75554212ns 1361155 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b14f PA:1c00b14f +75554232ns 1361156 1c000e82 fff60613 addi x12, x12, -1 x12=000002a8 x12:000002a9 +75554251ns 1361157 1c000e84 00130313 addi x6, x6, 1 x6=1c00b150 x6:1c00b14f +75554271ns 1361158 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002a8 +75554350ns 1361162 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b150 PA:1c00b150 +75554370ns 1361163 1c000e82 fff60613 addi x12, x12, -1 x12=000002a7 x12:000002a8 +75554390ns 1361164 1c000e84 00130313 addi x6, x6, 1 x6=1c00b151 x6:1c00b150 +75554410ns 1361165 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002a7 +75554489ns 1361169 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b151 PA:1c00b151 +75554509ns 1361170 1c000e82 fff60613 addi x12, x12, -1 x12=000002a6 x12:000002a7 +75554529ns 1361171 1c000e84 00130313 addi x6, x6, 1 x6=1c00b152 x6:1c00b151 +75554548ns 1361172 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002a6 +75554628ns 1361176 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b152 PA:1c00b152 +75554647ns 1361177 1c000e82 fff60613 addi x12, x12, -1 x12=000002a5 x12:000002a6 +75554667ns 1361178 1c000e84 00130313 addi x6, x6, 1 x6=1c00b153 x6:1c00b152 +75554687ns 1361179 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002a5 +75554766ns 1361183 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b153 PA:1c00b153 +75554786ns 1361184 1c000e82 fff60613 addi x12, x12, -1 x12=000002a4 x12:000002a5 +75554806ns 1361185 1c000e84 00130313 addi x6, x6, 1 x6=1c00b154 x6:1c00b153 +75554825ns 1361186 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002a4 +75554905ns 1361190 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b154 PA:1c00b154 +75554924ns 1361191 1c000e82 fff60613 addi x12, x12, -1 x12=000002a3 x12:000002a4 +75554944ns 1361192 1c000e84 00130313 addi x6, x6, 1 x6=1c00b155 x6:1c00b154 +75554964ns 1361193 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002a3 +75555043ns 1361197 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b155 PA:1c00b155 +75555063ns 1361198 1c000e82 fff60613 addi x12, x12, -1 x12=000002a2 x12:000002a3 +75555083ns 1361199 1c000e84 00130313 addi x6, x6, 1 x6=1c00b156 x6:1c00b155 +75555103ns 1361200 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002a2 +75555182ns 1361204 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b156 PA:1c00b156 +75555202ns 1361205 1c000e82 fff60613 addi x12, x12, -1 x12=000002a1 x12:000002a2 +75555221ns 1361206 1c000e84 00130313 addi x6, x6, 1 x6=1c00b157 x6:1c00b156 +75555241ns 1361207 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002a1 +75555320ns 1361211 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b157 PA:1c00b157 +75555340ns 1361212 1c000e82 fff60613 addi x12, x12, -1 x12=000002a0 x12:000002a1 +75555360ns 1361213 1c000e84 00130313 addi x6, x6, 1 x6=1c00b158 x6:1c00b157 +75555380ns 1361214 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002a0 +75555459ns 1361218 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b158 PA:1c00b158 +75555479ns 1361219 1c000e82 fff60613 addi x12, x12, -1 x12=0000029f x12:000002a0 +75555498ns 1361220 1c000e84 00130313 addi x6, x6, 1 x6=1c00b159 x6:1c00b158 +75555518ns 1361221 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000029f +75555597ns 1361225 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b159 PA:1c00b159 +75555617ns 1361226 1c000e82 fff60613 addi x12, x12, -1 x12=0000029e x12:0000029f +75555637ns 1361227 1c000e84 00130313 addi x6, x6, 1 x6=1c00b15a x6:1c00b159 +75555657ns 1361228 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000029e +75555736ns 1361232 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b15a PA:1c00b15a +75555756ns 1361233 1c000e82 fff60613 addi x12, x12, -1 x12=0000029d x12:0000029e +75555775ns 1361234 1c000e84 00130313 addi x6, x6, 1 x6=1c00b15b x6:1c00b15a +75555795ns 1361235 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000029d +75555874ns 1361239 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b15b PA:1c00b15b +75555894ns 1361240 1c000e82 fff60613 addi x12, x12, -1 x12=0000029c x12:0000029d +75555914ns 1361241 1c000e84 00130313 addi x6, x6, 1 x6=1c00b15c x6:1c00b15b +75555934ns 1361242 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000029c +75556013ns 1361246 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b15c PA:1c00b15c +75556033ns 1361247 1c000e82 fff60613 addi x12, x12, -1 x12=0000029b x12:0000029c +75556053ns 1361248 1c000e84 00130313 addi x6, x6, 1 x6=1c00b15d x6:1c00b15c +75556072ns 1361249 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000029b +75556152ns 1361253 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b15d PA:1c00b15d +75556171ns 1361254 1c000e82 fff60613 addi x12, x12, -1 x12=0000029a x12:0000029b +75556191ns 1361255 1c000e84 00130313 addi x6, x6, 1 x6=1c00b15e x6:1c00b15d +75556211ns 1361256 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000029a +75556290ns 1361260 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b15e PA:1c00b15e +75556310ns 1361261 1c000e82 fff60613 addi x12, x12, -1 x12=00000299 x12:0000029a +75556330ns 1361262 1c000e84 00130313 addi x6, x6, 1 x6=1c00b15f x6:1c00b15e +75556349ns 1361263 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000299 +75556429ns 1361267 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b15f PA:1c00b15f +75556448ns 1361268 1c000e82 fff60613 addi x12, x12, -1 x12=00000298 x12:00000299 +75556468ns 1361269 1c000e84 00130313 addi x6, x6, 1 x6=1c00b160 x6:1c00b15f +75556488ns 1361270 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000298 +75556567ns 1361274 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b160 PA:1c00b160 +75556587ns 1361275 1c000e82 fff60613 addi x12, x12, -1 x12=00000297 x12:00000298 +75556607ns 1361276 1c000e84 00130313 addi x6, x6, 1 x6=1c00b161 x6:1c00b160 +75556627ns 1361277 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000297 +75556706ns 1361281 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b161 PA:1c00b161 +75556725ns 1361282 1c000e82 fff60613 addi x12, x12, -1 x12=00000296 x12:00000297 +75556745ns 1361283 1c000e84 00130313 addi x6, x6, 1 x6=1c00b162 x6:1c00b161 +75556765ns 1361284 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000296 +75556844ns 1361288 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b162 PA:1c00b162 +75556864ns 1361289 1c000e82 fff60613 addi x12, x12, -1 x12=00000295 x12:00000296 +75556884ns 1361290 1c000e84 00130313 addi x6, x6, 1 x6=1c00b163 x6:1c00b162 +75556904ns 1361291 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000295 +75556983ns 1361295 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b163 PA:1c00b163 +75557003ns 1361296 1c000e82 fff60613 addi x12, x12, -1 x12=00000294 x12:00000295 +75557022ns 1361297 1c000e84 00130313 addi x6, x6, 1 x6=1c00b164 x6:1c00b163 +75557042ns 1361298 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000294 +75557121ns 1361302 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b164 PA:1c00b164 +75557141ns 1361303 1c000e82 fff60613 addi x12, x12, -1 x12=00000293 x12:00000294 +75557161ns 1361304 1c000e84 00130313 addi x6, x6, 1 x6=1c00b165 x6:1c00b164 +75557181ns 1361305 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000293 +75557260ns 1361309 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b165 PA:1c00b165 +75557280ns 1361310 1c000e82 fff60613 addi x12, x12, -1 x12=00000292 x12:00000293 +75557299ns 1361311 1c000e84 00130313 addi x6, x6, 1 x6=1c00b166 x6:1c00b165 +75557319ns 1361312 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000292 +75557398ns 1361316 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b166 PA:1c00b166 +75557418ns 1361317 1c000e82 fff60613 addi x12, x12, -1 x12=00000291 x12:00000292 +75557438ns 1361318 1c000e84 00130313 addi x6, x6, 1 x6=1c00b167 x6:1c00b166 +75557458ns 1361319 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000291 +75557537ns 1361323 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b167 PA:1c00b167 +75557557ns 1361324 1c000e82 fff60613 addi x12, x12, -1 x12=00000290 x12:00000291 +75557577ns 1361325 1c000e84 00130313 addi x6, x6, 1 x6=1c00b168 x6:1c00b167 +75557596ns 1361326 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000290 +75557676ns 1361330 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b168 PA:1c00b168 +75557695ns 1361331 1c000e82 fff60613 addi x12, x12, -1 x12=0000028f x12:00000290 +75557715ns 1361332 1c000e84 00130313 addi x6, x6, 1 x6=1c00b169 x6:1c00b168 +75557735ns 1361333 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000028f +75557814ns 1361337 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b169 PA:1c00b169 +75557834ns 1361338 1c000e82 fff60613 addi x12, x12, -1 x12=0000028e x12:0000028f +75557854ns 1361339 1c000e84 00130313 addi x6, x6, 1 x6=1c00b16a x6:1c00b169 +75557873ns 1361340 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000028e +75557953ns 1361344 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b16a PA:1c00b16a +75557972ns 1361345 1c000e82 fff60613 addi x12, x12, -1 x12=0000028d x12:0000028e +75557992ns 1361346 1c000e84 00130313 addi x6, x6, 1 x6=1c00b16b x6:1c00b16a +75558012ns 1361347 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000028d +75558091ns 1361351 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b16b PA:1c00b16b +75558111ns 1361352 1c000e82 fff60613 addi x12, x12, -1 x12=0000028c x12:0000028d +75558131ns 1361353 1c000e84 00130313 addi x6, x6, 1 x6=1c00b16c x6:1c00b16b +75558151ns 1361354 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000028c +75558230ns 1361358 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b16c PA:1c00b16c +75558249ns 1361359 1c000e82 fff60613 addi x12, x12, -1 x12=0000028b x12:0000028c +75558269ns 1361360 1c000e84 00130313 addi x6, x6, 1 x6=1c00b16d x6:1c00b16c +75558289ns 1361361 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000028b +75558368ns 1361365 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b16d PA:1c00b16d +75558388ns 1361366 1c000e82 fff60613 addi x12, x12, -1 x12=0000028a x12:0000028b +75558408ns 1361367 1c000e84 00130313 addi x6, x6, 1 x6=1c00b16e x6:1c00b16d +75558428ns 1361368 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000028a +75558507ns 1361372 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b16e PA:1c00b16e +75558527ns 1361373 1c000e82 fff60613 addi x12, x12, -1 x12=00000289 x12:0000028a +75558546ns 1361374 1c000e84 00130313 addi x6, x6, 1 x6=1c00b16f x6:1c00b16e +75558566ns 1361375 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000289 +75558645ns 1361379 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b16f PA:1c00b16f +75558665ns 1361380 1c000e82 fff60613 addi x12, x12, -1 x12=00000288 x12:00000289 +75558685ns 1361381 1c000e84 00130313 addi x6, x6, 1 x6=1c00b170 x6:1c00b16f +75558705ns 1361382 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000288 +75558784ns 1361386 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b170 PA:1c00b170 +75558804ns 1361387 1c000e82 fff60613 addi x12, x12, -1 x12=00000287 x12:00000288 +75558823ns 1361388 1c000e84 00130313 addi x6, x6, 1 x6=1c00b171 x6:1c00b170 +75558843ns 1361389 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000287 +75558922ns 1361393 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b171 PA:1c00b171 +75558942ns 1361394 1c000e82 fff60613 addi x12, x12, -1 x12=00000286 x12:00000287 +75558962ns 1361395 1c000e84 00130313 addi x6, x6, 1 x6=1c00b172 x6:1c00b171 +75558982ns 1361396 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000286 +75559061ns 1361400 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b172 PA:1c00b172 +75559081ns 1361401 1c000e82 fff60613 addi x12, x12, -1 x12=00000285 x12:00000286 +75559101ns 1361402 1c000e84 00130313 addi x6, x6, 1 x6=1c00b173 x6:1c00b172 +75559120ns 1361403 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000285 +75559199ns 1361407 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b173 PA:1c00b173 +75559219ns 1361408 1c000e82 fff60613 addi x12, x12, -1 x12=00000284 x12:00000285 +75559239ns 1361409 1c000e84 00130313 addi x6, x6, 1 x6=1c00b174 x6:1c00b173 +75559259ns 1361410 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000284 +75559338ns 1361414 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b174 PA:1c00b174 +75559358ns 1361415 1c000e82 fff60613 addi x12, x12, -1 x12=00000283 x12:00000284 +75559378ns 1361416 1c000e84 00130313 addi x6, x6, 1 x6=1c00b175 x6:1c00b174 +75559397ns 1361417 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000283 +75559477ns 1361421 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b175 PA:1c00b175 +75559496ns 1361422 1c000e82 fff60613 addi x12, x12, -1 x12=00000282 x12:00000283 +75559516ns 1361423 1c000e84 00130313 addi x6, x6, 1 x6=1c00b176 x6:1c00b175 +75559536ns 1361424 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000282 +75559615ns 1361428 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b176 PA:1c00b176 +75559635ns 1361429 1c000e82 fff60613 addi x12, x12, -1 x12=00000281 x12:00000282 +75559655ns 1361430 1c000e84 00130313 addi x6, x6, 1 x6=1c00b177 x6:1c00b176 +75559675ns 1361431 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000281 +75559754ns 1361435 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b177 PA:1c00b177 +75559773ns 1361436 1c000e82 fff60613 addi x12, x12, -1 x12=00000280 x12:00000281 +75559793ns 1361437 1c000e84 00130313 addi x6, x6, 1 x6=1c00b178 x6:1c00b177 +75559813ns 1361438 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000280 +75559892ns 1361442 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b178 PA:1c00b178 +75559912ns 1361443 1c000e82 fff60613 addi x12, x12, -1 x12=0000027f x12:00000280 +75559932ns 1361444 1c000e84 00130313 addi x6, x6, 1 x6=1c00b179 x6:1c00b178 +75559952ns 1361445 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000027f +75560031ns 1361449 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b179 PA:1c00b179 +75560051ns 1361450 1c000e82 fff60613 addi x12, x12, -1 x12=0000027e x12:0000027f +75560070ns 1361451 1c000e84 00130313 addi x6, x6, 1 x6=1c00b17a x6:1c00b179 +75560090ns 1361452 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000027e +75560169ns 1361456 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b17a PA:1c00b17a +75560189ns 1361457 1c000e82 fff60613 addi x12, x12, -1 x12=0000027d x12:0000027e +75560209ns 1361458 1c000e84 00130313 addi x6, x6, 1 x6=1c00b17b x6:1c00b17a +75560229ns 1361459 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000027d +75560308ns 1361463 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b17b PA:1c00b17b +75560328ns 1361464 1c000e82 fff60613 addi x12, x12, -1 x12=0000027c x12:0000027d +75560347ns 1361465 1c000e84 00130313 addi x6, x6, 1 x6=1c00b17c x6:1c00b17b +75560367ns 1361466 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000027c +75560446ns 1361470 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b17c PA:1c00b17c +75560466ns 1361471 1c000e82 fff60613 addi x12, x12, -1 x12=0000027b x12:0000027c +75560486ns 1361472 1c000e84 00130313 addi x6, x6, 1 x6=1c00b17d x6:1c00b17c +75560506ns 1361473 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000027b +75560585ns 1361477 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b17d PA:1c00b17d +75560605ns 1361478 1c000e82 fff60613 addi x12, x12, -1 x12=0000027a x12:0000027b +75560625ns 1361479 1c000e84 00130313 addi x6, x6, 1 x6=1c00b17e x6:1c00b17d +75560644ns 1361480 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000027a +75560723ns 1361484 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b17e PA:1c00b17e +75560743ns 1361485 1c000e82 fff60613 addi x12, x12, -1 x12=00000279 x12:0000027a +75560763ns 1361486 1c000e84 00130313 addi x6, x6, 1 x6=1c00b17f x6:1c00b17e +75560783ns 1361487 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000279 +75560862ns 1361491 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b17f PA:1c00b17f +75560882ns 1361492 1c000e82 fff60613 addi x12, x12, -1 x12=00000278 x12:00000279 +75560902ns 1361493 1c000e84 00130313 addi x6, x6, 1 x6=1c00b180 x6:1c00b17f +75560921ns 1361494 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000278 +75561001ns 1361498 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b180 PA:1c00b180 +75561020ns 1361499 1c000e82 fff60613 addi x12, x12, -1 x12=00000277 x12:00000278 +75561040ns 1361500 1c000e84 00130313 addi x6, x6, 1 x6=1c00b181 x6:1c00b180 +75561060ns 1361501 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000277 +75561139ns 1361505 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b181 PA:1c00b181 +75561159ns 1361506 1c000e82 fff60613 addi x12, x12, -1 x12=00000276 x12:00000277 +75561179ns 1361507 1c000e84 00130313 addi x6, x6, 1 x6=1c00b182 x6:1c00b181 +75561198ns 1361508 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000276 +75561278ns 1361512 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b182 PA:1c00b182 +75561297ns 1361513 1c000e82 fff60613 addi x12, x12, -1 x12=00000275 x12:00000276 +75561317ns 1361514 1c000e84 00130313 addi x6, x6, 1 x6=1c00b183 x6:1c00b182 +75561337ns 1361515 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000275 +75561416ns 1361519 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b183 PA:1c00b183 +75561436ns 1361520 1c000e82 fff60613 addi x12, x12, -1 x12=00000274 x12:00000275 +75561456ns 1361521 1c000e84 00130313 addi x6, x6, 1 x6=1c00b184 x6:1c00b183 +75561476ns 1361522 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000274 +75561555ns 1361526 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b184 PA:1c00b184 +75561575ns 1361527 1c000e82 fff60613 addi x12, x12, -1 x12=00000273 x12:00000274 +75561594ns 1361528 1c000e84 00130313 addi x6, x6, 1 x6=1c00b185 x6:1c00b184 +75561614ns 1361529 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000273 +75561693ns 1361533 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b185 PA:1c00b185 +75561713ns 1361534 1c000e82 fff60613 addi x12, x12, -1 x12=00000272 x12:00000273 +75561733ns 1361535 1c000e84 00130313 addi x6, x6, 1 x6=1c00b186 x6:1c00b185 +75561753ns 1361536 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000272 +75561832ns 1361540 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b186 PA:1c00b186 +75561852ns 1361541 1c000e82 fff60613 addi x12, x12, -1 x12=00000271 x12:00000272 +75561871ns 1361542 1c000e84 00130313 addi x6, x6, 1 x6=1c00b187 x6:1c00b186 +75561891ns 1361543 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000271 +75561970ns 1361547 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b187 PA:1c00b187 +75561990ns 1361548 1c000e82 fff60613 addi x12, x12, -1 x12=00000270 x12:00000271 +75562010ns 1361549 1c000e84 00130313 addi x6, x6, 1 x6=1c00b188 x6:1c00b187 +75562030ns 1361550 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000270 +75562109ns 1361554 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b188 PA:1c00b188 +75562129ns 1361555 1c000e82 fff60613 addi x12, x12, -1 x12=0000026f x12:00000270 +75562149ns 1361556 1c000e84 00130313 addi x6, x6, 1 x6=1c00b189 x6:1c00b188 +75562168ns 1361557 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000026f +75562247ns 1361561 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b189 PA:1c00b189 +75562267ns 1361562 1c000e82 fff60613 addi x12, x12, -1 x12=0000026e x12:0000026f +75562287ns 1361563 1c000e84 00130313 addi x6, x6, 1 x6=1c00b18a x6:1c00b189 +75562307ns 1361564 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000026e +75562386ns 1361568 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b18a PA:1c00b18a +75562406ns 1361569 1c000e82 fff60613 addi x12, x12, -1 x12=0000026d x12:0000026e +75562426ns 1361570 1c000e84 00130313 addi x6, x6, 1 x6=1c00b18b x6:1c00b18a +75562445ns 1361571 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000026d +75562525ns 1361575 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b18b PA:1c00b18b +75562544ns 1361576 1c000e82 fff60613 addi x12, x12, -1 x12=0000026c x12:0000026d +75562564ns 1361577 1c000e84 00130313 addi x6, x6, 1 x6=1c00b18c x6:1c00b18b +75562584ns 1361578 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000026c +75562663ns 1361582 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b18c PA:1c00b18c +75562683ns 1361583 1c000e82 fff60613 addi x12, x12, -1 x12=0000026b x12:0000026c +75562703ns 1361584 1c000e84 00130313 addi x6, x6, 1 x6=1c00b18d x6:1c00b18c +75562722ns 1361585 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000026b +75562802ns 1361589 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b18d PA:1c00b18d +75562821ns 1361590 1c000e82 fff60613 addi x12, x12, -1 x12=0000026a x12:0000026b +75562841ns 1361591 1c000e84 00130313 addi x6, x6, 1 x6=1c00b18e x6:1c00b18d +75562861ns 1361592 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000026a +75562940ns 1361596 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b18e PA:1c00b18e +75562960ns 1361597 1c000e82 fff60613 addi x12, x12, -1 x12=00000269 x12:0000026a +75562980ns 1361598 1c000e84 00130313 addi x6, x6, 1 x6=1c00b18f x6:1c00b18e +75563000ns 1361599 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000269 +75563079ns 1361603 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b18f PA:1c00b18f +75563099ns 1361604 1c000e82 fff60613 addi x12, x12, -1 x12=00000268 x12:00000269 +75563118ns 1361605 1c000e84 00130313 addi x6, x6, 1 x6=1c00b190 x6:1c00b18f +75563138ns 1361606 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000268 +75563217ns 1361610 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b190 PA:1c00b190 +75563237ns 1361611 1c000e82 fff60613 addi x12, x12, -1 x12=00000267 x12:00000268 +75563257ns 1361612 1c000e84 00130313 addi x6, x6, 1 x6=1c00b191 x6:1c00b190 +75563277ns 1361613 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000267 +75563356ns 1361617 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b191 PA:1c00b191 +75563376ns 1361618 1c000e82 fff60613 addi x12, x12, -1 x12=00000266 x12:00000267 +75563395ns 1361619 1c000e84 00130313 addi x6, x6, 1 x6=1c00b192 x6:1c00b191 +75563415ns 1361620 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000266 +75563494ns 1361624 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b192 PA:1c00b192 +75563514ns 1361625 1c000e82 fff60613 addi x12, x12, -1 x12=00000265 x12:00000266 +75563534ns 1361626 1c000e84 00130313 addi x6, x6, 1 x6=1c00b193 x6:1c00b192 +75563554ns 1361627 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000265 +75563633ns 1361631 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b193 PA:1c00b193 +75563653ns 1361632 1c000e82 fff60613 addi x12, x12, -1 x12=00000264 x12:00000265 +75563672ns 1361633 1c000e84 00130313 addi x6, x6, 1 x6=1c00b194 x6:1c00b193 +75563692ns 1361634 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000264 +75563771ns 1361638 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b194 PA:1c00b194 +75563791ns 1361639 1c000e82 fff60613 addi x12, x12, -1 x12=00000263 x12:00000264 +75563811ns 1361640 1c000e84 00130313 addi x6, x6, 1 x6=1c00b195 x6:1c00b194 +75563831ns 1361641 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000263 +75563910ns 1361645 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b195 PA:1c00b195 +75563930ns 1361646 1c000e82 fff60613 addi x12, x12, -1 x12=00000262 x12:00000263 +75563950ns 1361647 1c000e84 00130313 addi x6, x6, 1 x6=1c00b196 x6:1c00b195 +75563969ns 1361648 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000262 +75564049ns 1361652 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b196 PA:1c00b196 +75564068ns 1361653 1c000e82 fff60613 addi x12, x12, -1 x12=00000261 x12:00000262 +75564088ns 1361654 1c000e84 00130313 addi x6, x6, 1 x6=1c00b197 x6:1c00b196 +75564108ns 1361655 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000261 +75564187ns 1361659 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b197 PA:1c00b197 +75564207ns 1361660 1c000e82 fff60613 addi x12, x12, -1 x12=00000260 x12:00000261 +75564227ns 1361661 1c000e84 00130313 addi x6, x6, 1 x6=1c00b198 x6:1c00b197 +75564246ns 1361662 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000260 +75564326ns 1361666 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b198 PA:1c00b198 +75564345ns 1361667 1c000e82 fff60613 addi x12, x12, -1 x12=0000025f x12:00000260 +75564365ns 1361668 1c000e84 00130313 addi x6, x6, 1 x6=1c00b199 x6:1c00b198 +75564385ns 1361669 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000025f +75564464ns 1361673 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b199 PA:1c00b199 +75564484ns 1361674 1c000e82 fff60613 addi x12, x12, -1 x12=0000025e x12:0000025f +75564504ns 1361675 1c000e84 00130313 addi x6, x6, 1 x6=1c00b19a x6:1c00b199 +75564524ns 1361676 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000025e +75564603ns 1361680 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b19a PA:1c00b19a +75564623ns 1361681 1c000e82 fff60613 addi x12, x12, -1 x12=0000025d x12:0000025e +75564642ns 1361682 1c000e84 00130313 addi x6, x6, 1 x6=1c00b19b x6:1c00b19a +75564662ns 1361683 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000025d +75564741ns 1361687 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b19b PA:1c00b19b +75564761ns 1361688 1c000e82 fff60613 addi x12, x12, -1 x12=0000025c x12:0000025d +75564781ns 1361689 1c000e84 00130313 addi x6, x6, 1 x6=1c00b19c x6:1c00b19b +75564801ns 1361690 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000025c +75564880ns 1361694 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b19c PA:1c00b19c +75564900ns 1361695 1c000e82 fff60613 addi x12, x12, -1 x12=0000025b x12:0000025c +75564919ns 1361696 1c000e84 00130313 addi x6, x6, 1 x6=1c00b19d x6:1c00b19c +75564939ns 1361697 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000025b +75565018ns 1361701 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b19d PA:1c00b19d +75565038ns 1361702 1c000e82 fff60613 addi x12, x12, -1 x12=0000025a x12:0000025b +75565058ns 1361703 1c000e84 00130313 addi x6, x6, 1 x6=1c00b19e x6:1c00b19d +75565078ns 1361704 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000025a +75565157ns 1361708 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b19e PA:1c00b19e +75565177ns 1361709 1c000e82 fff60613 addi x12, x12, -1 x12=00000259 x12:0000025a +75565196ns 1361710 1c000e84 00130313 addi x6, x6, 1 x6=1c00b19f x6:1c00b19e +75565216ns 1361711 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000259 +75565295ns 1361715 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b19f PA:1c00b19f +75565315ns 1361716 1c000e82 fff60613 addi x12, x12, -1 x12=00000258 x12:00000259 +75565335ns 1361717 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1a0 x6:1c00b19f +75565355ns 1361718 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000258 +75565434ns 1361722 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1a0 PA:1c00b1a0 +75565454ns 1361723 1c000e82 fff60613 addi x12, x12, -1 x12=00000257 x12:00000258 +75565474ns 1361724 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1a1 x6:1c00b1a0 +75565493ns 1361725 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000257 +75565573ns 1361729 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1a1 PA:1c00b1a1 +75565592ns 1361730 1c000e82 fff60613 addi x12, x12, -1 x12=00000256 x12:00000257 +75565612ns 1361731 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1a2 x6:1c00b1a1 +75565632ns 1361732 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000256 +75565711ns 1361736 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1a2 PA:1c00b1a2 +75565731ns 1361737 1c000e82 fff60613 addi x12, x12, -1 x12=00000255 x12:00000256 +75565751ns 1361738 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1a3 x6:1c00b1a2 +75565770ns 1361739 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000255 +75565850ns 1361743 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1a3 PA:1c00b1a3 +75565869ns 1361744 1c000e82 fff60613 addi x12, x12, -1 x12=00000254 x12:00000255 +75565889ns 1361745 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1a4 x6:1c00b1a3 +75565909ns 1361746 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000254 +75565988ns 1361750 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1a4 PA:1c00b1a4 +75566008ns 1361751 1c000e82 fff60613 addi x12, x12, -1 x12=00000253 x12:00000254 +75566028ns 1361752 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1a5 x6:1c00b1a4 +75566048ns 1361753 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000253 +75566127ns 1361757 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1a5 PA:1c00b1a5 +75566146ns 1361758 1c000e82 fff60613 addi x12, x12, -1 x12=00000252 x12:00000253 +75566166ns 1361759 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1a6 x6:1c00b1a5 +75566186ns 1361760 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000252 +75566265ns 1361764 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1a6 PA:1c00b1a6 +75566285ns 1361765 1c000e82 fff60613 addi x12, x12, -1 x12=00000251 x12:00000252 +75566305ns 1361766 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1a7 x6:1c00b1a6 +75566325ns 1361767 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000251 +75566404ns 1361771 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1a7 PA:1c00b1a7 +75566424ns 1361772 1c000e82 fff60613 addi x12, x12, -1 x12=00000250 x12:00000251 +75566443ns 1361773 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1a8 x6:1c00b1a7 +75566463ns 1361774 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000250 +75566542ns 1361778 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1a8 PA:1c00b1a8 +75566562ns 1361779 1c000e82 fff60613 addi x12, x12, -1 x12=0000024f x12:00000250 +75566582ns 1361780 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1a9 x6:1c00b1a8 +75566602ns 1361781 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000024f +75566681ns 1361785 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1a9 PA:1c00b1a9 +75566701ns 1361786 1c000e82 fff60613 addi x12, x12, -1 x12=0000024e x12:0000024f +75566720ns 1361787 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1aa x6:1c00b1a9 +75566740ns 1361788 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000024e +75566819ns 1361792 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1aa PA:1c00b1aa +75566839ns 1361793 1c000e82 fff60613 addi x12, x12, -1 x12=0000024d x12:0000024e +75566859ns 1361794 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1ab x6:1c00b1aa +75566879ns 1361795 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000024d +75566958ns 1361799 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1ab PA:1c00b1ab +75566978ns 1361800 1c000e82 fff60613 addi x12, x12, -1 x12=0000024c x12:0000024d +75566998ns 1361801 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1ac x6:1c00b1ab +75567017ns 1361802 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000024c +75567097ns 1361806 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1ac PA:1c00b1ac +75567116ns 1361807 1c000e82 fff60613 addi x12, x12, -1 x12=0000024b x12:0000024c +75567136ns 1361808 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1ad x6:1c00b1ac +75567156ns 1361809 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000024b +75567235ns 1361813 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1ad PA:1c00b1ad +75567255ns 1361814 1c000e82 fff60613 addi x12, x12, -1 x12=0000024a x12:0000024b +75567275ns 1361815 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1ae x6:1c00b1ad +75567294ns 1361816 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000024a +75567374ns 1361820 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1ae PA:1c00b1ae +75567393ns 1361821 1c000e82 fff60613 addi x12, x12, -1 x12=00000249 x12:0000024a +75567413ns 1361822 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1af x6:1c00b1ae +75567433ns 1361823 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000249 +75567512ns 1361827 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1af PA:1c00b1af +75567532ns 1361828 1c000e82 fff60613 addi x12, x12, -1 x12=00000248 x12:00000249 +75567552ns 1361829 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1b0 x6:1c00b1af +75567572ns 1361830 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000248 +75567651ns 1361834 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1b0 PA:1c00b1b0 +75567670ns 1361835 1c000e82 fff60613 addi x12, x12, -1 x12=00000247 x12:00000248 +75567690ns 1361836 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1b1 x6:1c00b1b0 +75567710ns 1361837 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000247 +75567789ns 1361841 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1b1 PA:1c00b1b1 +75567809ns 1361842 1c000e82 fff60613 addi x12, x12, -1 x12=00000246 x12:00000247 +75567829ns 1361843 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1b2 x6:1c00b1b1 +75567849ns 1361844 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000246 +75567928ns 1361848 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1b2 PA:1c00b1b2 +75567948ns 1361849 1c000e82 fff60613 addi x12, x12, -1 x12=00000245 x12:00000246 +75567967ns 1361850 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1b3 x6:1c00b1b2 +75567987ns 1361851 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000245 +75568066ns 1361855 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1b3 PA:1c00b1b3 +75568086ns 1361856 1c000e82 fff60613 addi x12, x12, -1 x12=00000244 x12:00000245 +75568106ns 1361857 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1b4 x6:1c00b1b3 +75568126ns 1361858 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000244 +75568205ns 1361862 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1b4 PA:1c00b1b4 +75568225ns 1361863 1c000e82 fff60613 addi x12, x12, -1 x12=00000243 x12:00000244 +75568244ns 1361864 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1b5 x6:1c00b1b4 +75568264ns 1361865 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000243 +75568343ns 1361869 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1b5 PA:1c00b1b5 +75568363ns 1361870 1c000e82 fff60613 addi x12, x12, -1 x12=00000242 x12:00000243 +75568383ns 1361871 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1b6 x6:1c00b1b5 +75568403ns 1361872 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000242 +75568482ns 1361876 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1b6 PA:1c00b1b6 +75568502ns 1361877 1c000e82 fff60613 addi x12, x12, -1 x12=00000241 x12:00000242 +75568522ns 1361878 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1b7 x6:1c00b1b6 +75568541ns 1361879 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000241 +75568620ns 1361883 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1b7 PA:1c00b1b7 +75568640ns 1361884 1c000e82 fff60613 addi x12, x12, -1 x12=00000240 x12:00000241 +75568660ns 1361885 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1b8 x6:1c00b1b7 +75568680ns 1361886 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000240 +75568759ns 1361890 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1b8 PA:1c00b1b8 +75568779ns 1361891 1c000e82 fff60613 addi x12, x12, -1 x12=0000023f x12:00000240 +75568799ns 1361892 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1b9 x6:1c00b1b8 +75568818ns 1361893 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000023f +75568898ns 1361897 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1b9 PA:1c00b1b9 +75568917ns 1361898 1c000e82 fff60613 addi x12, x12, -1 x12=0000023e x12:0000023f +75568937ns 1361899 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1ba x6:1c00b1b9 +75568957ns 1361900 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000023e +75569036ns 1361904 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1ba PA:1c00b1ba +75569056ns 1361905 1c000e82 fff60613 addi x12, x12, -1 x12=0000023d x12:0000023e +75569076ns 1361906 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1bb x6:1c00b1ba +75569095ns 1361907 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000023d +75569175ns 1361911 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1bb PA:1c00b1bb +75569194ns 1361912 1c000e82 fff60613 addi x12, x12, -1 x12=0000023c x12:0000023d +75569214ns 1361913 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1bc x6:1c00b1bb +75569234ns 1361914 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000023c +75569313ns 1361918 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1bc PA:1c00b1bc +75569333ns 1361919 1c000e82 fff60613 addi x12, x12, -1 x12=0000023b x12:0000023c +75569353ns 1361920 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1bd x6:1c00b1bc +75569373ns 1361921 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000023b +75569452ns 1361925 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1bd PA:1c00b1bd +75569472ns 1361926 1c000e82 fff60613 addi x12, x12, -1 x12=0000023a x12:0000023b +75569491ns 1361927 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1be x6:1c00b1bd +75569511ns 1361928 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000023a +75569590ns 1361932 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1be PA:1c00b1be +75569610ns 1361933 1c000e82 fff60613 addi x12, x12, -1 x12=00000239 x12:0000023a +75569630ns 1361934 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1bf x6:1c00b1be +75569650ns 1361935 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000239 +75569729ns 1361939 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1bf PA:1c00b1bf +75569749ns 1361940 1c000e82 fff60613 addi x12, x12, -1 x12=00000238 x12:00000239 +75569768ns 1361941 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1c0 x6:1c00b1bf +75569788ns 1361942 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000238 +75569867ns 1361946 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1c0 PA:1c00b1c0 +75569887ns 1361947 1c000e82 fff60613 addi x12, x12, -1 x12=00000237 x12:00000238 +75569907ns 1361948 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1c1 x6:1c00b1c0 +75569927ns 1361949 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000237 +75570006ns 1361953 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1c1 PA:1c00b1c1 +75570026ns 1361954 1c000e82 fff60613 addi x12, x12, -1 x12=00000236 x12:00000237 +75570046ns 1361955 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1c2 x6:1c00b1c1 +75570065ns 1361956 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000236 +75570144ns 1361960 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1c2 PA:1c00b1c2 +75570164ns 1361961 1c000e82 fff60613 addi x12, x12, -1 x12=00000235 x12:00000236 +75570184ns 1361962 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1c3 x6:1c00b1c2 +75570204ns 1361963 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000235 +75570283ns 1361967 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1c3 PA:1c00b1c3 +75570303ns 1361968 1c000e82 fff60613 addi x12, x12, -1 x12=00000234 x12:00000235 +75570323ns 1361969 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1c4 x6:1c00b1c3 +75570342ns 1361970 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000234 +75570422ns 1361974 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1c4 PA:1c00b1c4 +75570441ns 1361975 1c000e82 fff60613 addi x12, x12, -1 x12=00000233 x12:00000234 +75570461ns 1361976 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1c5 x6:1c00b1c4 +75570481ns 1361977 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000233 +75570560ns 1361981 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1c5 PA:1c00b1c5 +75570580ns 1361982 1c000e82 fff60613 addi x12, x12, -1 x12=00000232 x12:00000233 +75570600ns 1361983 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1c6 x6:1c00b1c5 +75570619ns 1361984 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000232 +75570699ns 1361988 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1c6 PA:1c00b1c6 +75570718ns 1361989 1c000e82 fff60613 addi x12, x12, -1 x12=00000231 x12:00000232 +75570738ns 1361990 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1c7 x6:1c00b1c6 +75570758ns 1361991 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000231 +75570837ns 1361995 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1c7 PA:1c00b1c7 +75570857ns 1361996 1c000e82 fff60613 addi x12, x12, -1 x12=00000230 x12:00000231 +75570877ns 1361997 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1c8 x6:1c00b1c7 +75570897ns 1361998 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000230 +75570976ns 1362002 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1c8 PA:1c00b1c8 +75570996ns 1362003 1c000e82 fff60613 addi x12, x12, -1 x12=0000022f x12:00000230 +75571015ns 1362004 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1c9 x6:1c00b1c8 +75571035ns 1362005 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000022f +75571114ns 1362009 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1c9 PA:1c00b1c9 +75571134ns 1362010 1c000e82 fff60613 addi x12, x12, -1 x12=0000022e x12:0000022f +75571154ns 1362011 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1ca x6:1c00b1c9 +75571174ns 1362012 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000022e +75571253ns 1362016 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1ca PA:1c00b1ca +75571273ns 1362017 1c000e82 fff60613 addi x12, x12, -1 x12=0000022d x12:0000022e +75571292ns 1362018 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1cb x6:1c00b1ca +75571312ns 1362019 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000022d +75571391ns 1362023 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1cb PA:1c00b1cb +75571411ns 1362024 1c000e82 fff60613 addi x12, x12, -1 x12=0000022c x12:0000022d +75571431ns 1362025 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1cc x6:1c00b1cb +75571451ns 1362026 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000022c +75571530ns 1362030 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1cc PA:1c00b1cc +75571550ns 1362031 1c000e82 fff60613 addi x12, x12, -1 x12=0000022b x12:0000022c +75571569ns 1362032 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1cd x6:1c00b1cc +75571589ns 1362033 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000022b +75571668ns 1362037 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1cd PA:1c00b1cd +75571688ns 1362038 1c000e82 fff60613 addi x12, x12, -1 x12=0000022a x12:0000022b +75571708ns 1362039 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1ce x6:1c00b1cd +75571728ns 1362040 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000022a +75571807ns 1362044 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1ce PA:1c00b1ce +75571827ns 1362045 1c000e82 fff60613 addi x12, x12, -1 x12=00000229 x12:0000022a +75571847ns 1362046 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1cf x6:1c00b1ce +75571866ns 1362047 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000229 +75571946ns 1362051 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1cf PA:1c00b1cf +75571965ns 1362052 1c000e82 fff60613 addi x12, x12, -1 x12=00000228 x12:00000229 +75571985ns 1362053 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1d0 x6:1c00b1cf +75572005ns 1362054 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000228 +75572084ns 1362058 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1d0 PA:1c00b1d0 +75572104ns 1362059 1c000e82 fff60613 addi x12, x12, -1 x12=00000227 x12:00000228 +75572124ns 1362060 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1d1 x6:1c00b1d0 +75572143ns 1362061 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000227 +75572223ns 1362065 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1d1 PA:1c00b1d1 +75572242ns 1362066 1c000e82 fff60613 addi x12, x12, -1 x12=00000226 x12:00000227 +75572262ns 1362067 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1d2 x6:1c00b1d1 +75572282ns 1362068 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000226 +75572361ns 1362072 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1d2 PA:1c00b1d2 +75572381ns 1362073 1c000e82 fff60613 addi x12, x12, -1 x12=00000225 x12:00000226 +75572401ns 1362074 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1d3 x6:1c00b1d2 +75572421ns 1362075 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000225 +75572500ns 1362079 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1d3 PA:1c00b1d3 +75572520ns 1362080 1c000e82 fff60613 addi x12, x12, -1 x12=00000224 x12:00000225 +75572539ns 1362081 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1d4 x6:1c00b1d3 +75572559ns 1362082 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000224 +75572638ns 1362086 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1d4 PA:1c00b1d4 +75572658ns 1362087 1c000e82 fff60613 addi x12, x12, -1 x12=00000223 x12:00000224 +75572678ns 1362088 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1d5 x6:1c00b1d4 +75572698ns 1362089 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000223 +75572777ns 1362093 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1d5 PA:1c00b1d5 +75572797ns 1362094 1c000e82 fff60613 addi x12, x12, -1 x12=00000222 x12:00000223 +75572816ns 1362095 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1d6 x6:1c00b1d5 +75572836ns 1362096 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000222 +75572915ns 1362100 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1d6 PA:1c00b1d6 +75572935ns 1362101 1c000e82 fff60613 addi x12, x12, -1 x12=00000221 x12:00000222 +75572955ns 1362102 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1d7 x6:1c00b1d6 +75572975ns 1362103 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000221 +75573054ns 1362107 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1d7 PA:1c00b1d7 +75573074ns 1362108 1c000e82 fff60613 addi x12, x12, -1 x12=00000220 x12:00000221 +75573093ns 1362109 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1d8 x6:1c00b1d7 +75573113ns 1362110 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000220 +75573192ns 1362114 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1d8 PA:1c00b1d8 +75573212ns 1362115 1c000e82 fff60613 addi x12, x12, -1 x12=0000021f x12:00000220 +75573232ns 1362116 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1d9 x6:1c00b1d8 +75573252ns 1362117 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000021f +75573331ns 1362121 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1d9 PA:1c00b1d9 +75573351ns 1362122 1c000e82 fff60613 addi x12, x12, -1 x12=0000021e x12:0000021f +75573371ns 1362123 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1da x6:1c00b1d9 +75573390ns 1362124 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000021e +75573470ns 1362128 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1da PA:1c00b1da +75573489ns 1362129 1c000e82 fff60613 addi x12, x12, -1 x12=0000021d x12:0000021e +75573509ns 1362130 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1db x6:1c00b1da +75573529ns 1362131 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000021d +75573608ns 1362135 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1db PA:1c00b1db +75573628ns 1362136 1c000e82 fff60613 addi x12, x12, -1 x12=0000021c x12:0000021d +75573648ns 1362137 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1dc x6:1c00b1db +75573667ns 1362138 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000021c +75573747ns 1362142 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1dc PA:1c00b1dc +75573766ns 1362143 1c000e82 fff60613 addi x12, x12, -1 x12=0000021b x12:0000021c +75573786ns 1362144 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1dd x6:1c00b1dc +75573806ns 1362145 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000021b +75573885ns 1362149 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1dd PA:1c00b1dd +75573905ns 1362150 1c000e82 fff60613 addi x12, x12, -1 x12=0000021a x12:0000021b +75573925ns 1362151 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1de x6:1c00b1dd +75573945ns 1362152 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000021a +75574024ns 1362156 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1de PA:1c00b1de +75574043ns 1362157 1c000e82 fff60613 addi x12, x12, -1 x12=00000219 x12:0000021a +75574063ns 1362158 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1df x6:1c00b1de +75574083ns 1362159 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000219 +75574162ns 1362163 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1df PA:1c00b1df +75574182ns 1362164 1c000e82 fff60613 addi x12, x12, -1 x12=00000218 x12:00000219 +75574202ns 1362165 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1e0 x6:1c00b1df +75574222ns 1362166 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000218 +75574301ns 1362170 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1e0 PA:1c00b1e0 +75574321ns 1362171 1c000e82 fff60613 addi x12, x12, -1 x12=00000217 x12:00000218 +75574340ns 1362172 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1e1 x6:1c00b1e0 +75574360ns 1362173 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000217 +75574439ns 1362177 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1e1 PA:1c00b1e1 +75574459ns 1362178 1c000e82 fff60613 addi x12, x12, -1 x12=00000216 x12:00000217 +75574479ns 1362179 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1e2 x6:1c00b1e1 +75574499ns 1362180 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000216 +75574578ns 1362184 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1e2 PA:1c00b1e2 +75574598ns 1362185 1c000e82 fff60613 addi x12, x12, -1 x12=00000215 x12:00000216 +75574617ns 1362186 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1e3 x6:1c00b1e2 +75574637ns 1362187 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000215 +75574716ns 1362191 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1e3 PA:1c00b1e3 +75574736ns 1362192 1c000e82 fff60613 addi x12, x12, -1 x12=00000214 x12:00000215 +75574756ns 1362193 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1e4 x6:1c00b1e3 +75574776ns 1362194 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000214 +75574855ns 1362198 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1e4 PA:1c00b1e4 +75574875ns 1362199 1c000e82 fff60613 addi x12, x12, -1 x12=00000213 x12:00000214 +75574895ns 1362200 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1e5 x6:1c00b1e4 +75574914ns 1362201 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000213 +75574994ns 1362205 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1e5 PA:1c00b1e5 +75575013ns 1362206 1c000e82 fff60613 addi x12, x12, -1 x12=00000212 x12:00000213 +75575033ns 1362207 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1e6 x6:1c00b1e5 +75575053ns 1362208 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000212 +75575132ns 1362212 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1e6 PA:1c00b1e6 +75575152ns 1362213 1c000e82 fff60613 addi x12, x12, -1 x12=00000211 x12:00000212 +75575172ns 1362214 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1e7 x6:1c00b1e6 +75575191ns 1362215 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000211 +75575271ns 1362219 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1e7 PA:1c00b1e7 +75575290ns 1362220 1c000e82 fff60613 addi x12, x12, -1 x12=00000210 x12:00000211 +75575310ns 1362221 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1e8 x6:1c00b1e7 +75575330ns 1362222 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000210 +75575409ns 1362226 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1e8 PA:1c00b1e8 +75575429ns 1362227 1c000e82 fff60613 addi x12, x12, -1 x12=0000020f x12:00000210 +75575449ns 1362228 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1e9 x6:1c00b1e8 +75575469ns 1362229 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000020f +75575548ns 1362233 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1e9 PA:1c00b1e9 +75575567ns 1362234 1c000e82 fff60613 addi x12, x12, -1 x12=0000020e x12:0000020f +75575587ns 1362235 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1ea x6:1c00b1e9 +75575607ns 1362236 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000020e +75575686ns 1362240 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1ea PA:1c00b1ea +75575706ns 1362241 1c000e82 fff60613 addi x12, x12, -1 x12=0000020d x12:0000020e +75575726ns 1362242 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1eb x6:1c00b1ea +75575746ns 1362243 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000020d +75575825ns 1362247 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1eb PA:1c00b1eb +75575845ns 1362248 1c000e82 fff60613 addi x12, x12, -1 x12=0000020c x12:0000020d +75575864ns 1362249 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1ec x6:1c00b1eb +75575884ns 1362250 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000020c +75575963ns 1362254 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1ec PA:1c00b1ec +75575983ns 1362255 1c000e82 fff60613 addi x12, x12, -1 x12=0000020b x12:0000020c +75576003ns 1362256 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1ed x6:1c00b1ec +75576023ns 1362257 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000020b +75576102ns 1362261 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1ed PA:1c00b1ed +75576122ns 1362262 1c000e82 fff60613 addi x12, x12, -1 x12=0000020a x12:0000020b +75576141ns 1362263 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1ee x6:1c00b1ed +75576161ns 1362264 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000020a +75576240ns 1362268 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1ee PA:1c00b1ee +75576260ns 1362269 1c000e82 fff60613 addi x12, x12, -1 x12=00000209 x12:0000020a +75576280ns 1362270 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1ef x6:1c00b1ee +75576300ns 1362271 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000209 +75576379ns 1362275 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1ef PA:1c00b1ef +75576399ns 1362276 1c000e82 fff60613 addi x12, x12, -1 x12=00000208 x12:00000209 +75576419ns 1362277 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1f0 x6:1c00b1ef +75576438ns 1362278 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000208 +75576517ns 1362282 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1f0 PA:1c00b1f0 +75576537ns 1362283 1c000e82 fff60613 addi x12, x12, -1 x12=00000207 x12:00000208 +75576557ns 1362284 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1f1 x6:1c00b1f0 +75576577ns 1362285 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000207 +75576656ns 1362289 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1f1 PA:1c00b1f1 +75576676ns 1362290 1c000e82 fff60613 addi x12, x12, -1 x12=00000206 x12:00000207 +75576696ns 1362291 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1f2 x6:1c00b1f1 +75576715ns 1362292 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000206 +75576795ns 1362296 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1f2 PA:1c00b1f2 +75576814ns 1362297 1c000e82 fff60613 addi x12, x12, -1 x12=00000205 x12:00000206 +75576834ns 1362298 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1f3 x6:1c00b1f2 +75576854ns 1362299 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000205 +75576933ns 1362303 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1f3 PA:1c00b1f3 +75576953ns 1362304 1c000e82 fff60613 addi x12, x12, -1 x12=00000204 x12:00000205 +75576973ns 1362305 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1f4 x6:1c00b1f3 +75576993ns 1362306 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000204 +75577072ns 1362310 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1f4 PA:1c00b1f4 +75577091ns 1362311 1c000e82 fff60613 addi x12, x12, -1 x12=00000203 x12:00000204 +75577111ns 1362312 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1f5 x6:1c00b1f4 +75577131ns 1362313 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000203 +75577210ns 1362317 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1f5 PA:1c00b1f5 +75577230ns 1362318 1c000e82 fff60613 addi x12, x12, -1 x12=00000202 x12:00000203 +75577250ns 1362319 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1f6 x6:1c00b1f5 +75577270ns 1362320 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000202 +75577349ns 1362324 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1f6 PA:1c00b1f6 +75577369ns 1362325 1c000e82 fff60613 addi x12, x12, -1 x12=00000201 x12:00000202 +75577388ns 1362326 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1f7 x6:1c00b1f6 +75577408ns 1362327 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000201 +75577487ns 1362331 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1f7 PA:1c00b1f7 +75577507ns 1362332 1c000e82 fff60613 addi x12, x12, -1 x12=00000200 x12:00000201 +75577527ns 1362333 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1f8 x6:1c00b1f7 +75577547ns 1362334 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000200 +75577626ns 1362338 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1f8 PA:1c00b1f8 +75577646ns 1362339 1c000e82 fff60613 addi x12, x12, -1 x12=000001ff x12:00000200 +75577665ns 1362340 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1f9 x6:1c00b1f8 +75577685ns 1362341 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ff +75577764ns 1362345 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1f9 PA:1c00b1f9 +75577784ns 1362346 1c000e82 fff60613 addi x12, x12, -1 x12=000001fe x12:000001ff +75577804ns 1362347 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1fa x6:1c00b1f9 +75577824ns 1362348 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001fe +75577903ns 1362352 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1fa PA:1c00b1fa +75577923ns 1362353 1c000e82 fff60613 addi x12, x12, -1 x12=000001fd x12:000001fe +75577943ns 1362354 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1fb x6:1c00b1fa +75577962ns 1362355 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001fd +75578041ns 1362359 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1fb PA:1c00b1fb +75578061ns 1362360 1c000e82 fff60613 addi x12, x12, -1 x12=000001fc x12:000001fd +75578081ns 1362361 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1fc x6:1c00b1fb +75578101ns 1362362 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001fc +75578180ns 1362366 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1fc PA:1c00b1fc +75578200ns 1362367 1c000e82 fff60613 addi x12, x12, -1 x12=000001fb x12:000001fc +75578220ns 1362368 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1fd x6:1c00b1fc +75578239ns 1362369 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001fb +75578319ns 1362373 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1fd PA:1c00b1fd +75578338ns 1362374 1c000e82 fff60613 addi x12, x12, -1 x12=000001fa x12:000001fb +75578358ns 1362375 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1fe x6:1c00b1fd +75578378ns 1362376 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001fa +75578457ns 1362380 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1fe PA:1c00b1fe +75578477ns 1362381 1c000e82 fff60613 addi x12, x12, -1 x12=000001f9 x12:000001fa +75578497ns 1362382 1c000e84 00130313 addi x6, x6, 1 x6=1c00b1ff x6:1c00b1fe +75578516ns 1362383 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001f9 +75578596ns 1362387 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b1ff PA:1c00b1ff +75578615ns 1362388 1c000e82 fff60613 addi x12, x12, -1 x12=000001f8 x12:000001f9 +75578635ns 1362389 1c000e84 00130313 addi x6, x6, 1 x6=1c00b200 x6:1c00b1ff +75578655ns 1362390 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001f8 +75578734ns 1362394 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b200 PA:1c00b200 +75578754ns 1362395 1c000e82 fff60613 addi x12, x12, -1 x12=000001f7 x12:000001f8 +75578774ns 1362396 1c000e84 00130313 addi x6, x6, 1 x6=1c00b201 x6:1c00b200 +75578794ns 1362397 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001f7 +75578873ns 1362401 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b201 PA:1c00b201 +75578893ns 1362402 1c000e82 fff60613 addi x12, x12, -1 x12=000001f6 x12:000001f7 +75578912ns 1362403 1c000e84 00130313 addi x6, x6, 1 x6=1c00b202 x6:1c00b201 +75578932ns 1362404 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001f6 +75579011ns 1362408 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b202 PA:1c00b202 +75579031ns 1362409 1c000e82 fff60613 addi x12, x12, -1 x12=000001f5 x12:000001f6 +75579051ns 1362410 1c000e84 00130313 addi x6, x6, 1 x6=1c00b203 x6:1c00b202 +75579071ns 1362411 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001f5 +75579150ns 1362415 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b203 PA:1c00b203 +75579170ns 1362416 1c000e82 fff60613 addi x12, x12, -1 x12=000001f4 x12:000001f5 +75579189ns 1362417 1c000e84 00130313 addi x6, x6, 1 x6=1c00b204 x6:1c00b203 +75579209ns 1362418 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001f4 +75579288ns 1362422 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b204 PA:1c00b204 +75579308ns 1362423 1c000e82 fff60613 addi x12, x12, -1 x12=000001f3 x12:000001f4 +75579328ns 1362424 1c000e84 00130313 addi x6, x6, 1 x6=1c00b205 x6:1c00b204 +75579348ns 1362425 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001f3 +75579427ns 1362429 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b205 PA:1c00b205 +75579447ns 1362430 1c000e82 fff60613 addi x12, x12, -1 x12=000001f2 x12:000001f3 +75579467ns 1362431 1c000e84 00130313 addi x6, x6, 1 x6=1c00b206 x6:1c00b205 +75579486ns 1362432 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001f2 +75579565ns 1362436 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b206 PA:1c00b206 +75579585ns 1362437 1c000e82 fff60613 addi x12, x12, -1 x12=000001f1 x12:000001f2 +75579605ns 1362438 1c000e84 00130313 addi x6, x6, 1 x6=1c00b207 x6:1c00b206 +75579625ns 1362439 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001f1 +75579704ns 1362443 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b207 PA:1c00b207 +75579724ns 1362444 1c000e82 fff60613 addi x12, x12, -1 x12=000001f0 x12:000001f1 +75579744ns 1362445 1c000e84 00130313 addi x6, x6, 1 x6=1c00b208 x6:1c00b207 +75579763ns 1362446 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001f0 +75579843ns 1362450 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b208 PA:1c00b208 +75579862ns 1362451 1c000e82 fff60613 addi x12, x12, -1 x12=000001ef x12:000001f0 +75579882ns 1362452 1c000e84 00130313 addi x6, x6, 1 x6=1c00b209 x6:1c00b208 +75579902ns 1362453 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ef +75579981ns 1362457 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b209 PA:1c00b209 +75580001ns 1362458 1c000e82 fff60613 addi x12, x12, -1 x12=000001ee x12:000001ef +75580021ns 1362459 1c000e84 00130313 addi x6, x6, 1 x6=1c00b20a x6:1c00b209 +75580040ns 1362460 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ee +75580120ns 1362464 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b20a PA:1c00b20a +75580139ns 1362465 1c000e82 fff60613 addi x12, x12, -1 x12=000001ed x12:000001ee +75580159ns 1362466 1c000e84 00130313 addi x6, x6, 1 x6=1c00b20b x6:1c00b20a +75580179ns 1362467 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ed +75580258ns 1362471 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b20b PA:1c00b20b +75580278ns 1362472 1c000e82 fff60613 addi x12, x12, -1 x12=000001ec x12:000001ed +75580298ns 1362473 1c000e84 00130313 addi x6, x6, 1 x6=1c00b20c x6:1c00b20b +75580318ns 1362474 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ec +75580397ns 1362478 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b20c PA:1c00b20c +75580417ns 1362479 1c000e82 fff60613 addi x12, x12, -1 x12=000001eb x12:000001ec +75580436ns 1362480 1c000e84 00130313 addi x6, x6, 1 x6=1c00b20d x6:1c00b20c +75580456ns 1362481 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001eb +75580535ns 1362485 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b20d PA:1c00b20d +75580555ns 1362486 1c000e82 fff60613 addi x12, x12, -1 x12=000001ea x12:000001eb +75580575ns 1362487 1c000e84 00130313 addi x6, x6, 1 x6=1c00b20e x6:1c00b20d +75580595ns 1362488 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ea +75580674ns 1362492 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b20e PA:1c00b20e +75580694ns 1362493 1c000e82 fff60613 addi x12, x12, -1 x12=000001e9 x12:000001ea +75580713ns 1362494 1c000e84 00130313 addi x6, x6, 1 x6=1c00b20f x6:1c00b20e +75580733ns 1362495 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001e9 +75580812ns 1362499 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b20f PA:1c00b20f +75580832ns 1362500 1c000e82 fff60613 addi x12, x12, -1 x12=000001e8 x12:000001e9 +75580852ns 1362501 1c000e84 00130313 addi x6, x6, 1 x6=1c00b210 x6:1c00b20f +75580872ns 1362502 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001e8 +75580951ns 1362506 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b210 PA:1c00b210 +75580971ns 1362507 1c000e82 fff60613 addi x12, x12, -1 x12=000001e7 x12:000001e8 +75580990ns 1362508 1c000e84 00130313 addi x6, x6, 1 x6=1c00b211 x6:1c00b210 +75581010ns 1362509 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001e7 +75581089ns 1362513 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b211 PA:1c00b211 +75581109ns 1362514 1c000e82 fff60613 addi x12, x12, -1 x12=000001e6 x12:000001e7 +75581129ns 1362515 1c000e84 00130313 addi x6, x6, 1 x6=1c00b212 x6:1c00b211 +75581149ns 1362516 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001e6 +75581228ns 1362520 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b212 PA:1c00b212 +75581248ns 1362521 1c000e82 fff60613 addi x12, x12, -1 x12=000001e5 x12:000001e6 +75581268ns 1362522 1c000e84 00130313 addi x6, x6, 1 x6=1c00b213 x6:1c00b212 +75581287ns 1362523 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001e5 +75581367ns 1362527 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b213 PA:1c00b213 +75581386ns 1362528 1c000e82 fff60613 addi x12, x12, -1 x12=000001e4 x12:000001e5 +75581406ns 1362529 1c000e84 00130313 addi x6, x6, 1 x6=1c00b214 x6:1c00b213 +75581426ns 1362530 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001e4 +75581505ns 1362534 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b214 PA:1c00b214 +75581525ns 1362535 1c000e82 fff60613 addi x12, x12, -1 x12=000001e3 x12:000001e4 +75581545ns 1362536 1c000e84 00130313 addi x6, x6, 1 x6=1c00b215 x6:1c00b214 +75581564ns 1362537 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001e3 +75581644ns 1362541 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b215 PA:1c00b215 +75581663ns 1362542 1c000e82 fff60613 addi x12, x12, -1 x12=000001e2 x12:000001e3 +75581683ns 1362543 1c000e84 00130313 addi x6, x6, 1 x6=1c00b216 x6:1c00b215 +75581703ns 1362544 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001e2 +75581782ns 1362548 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b216 PA:1c00b216 +75581802ns 1362549 1c000e82 fff60613 addi x12, x12, -1 x12=000001e1 x12:000001e2 +75581822ns 1362550 1c000e84 00130313 addi x6, x6, 1 x6=1c00b217 x6:1c00b216 +75581842ns 1362551 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001e1 +75581921ns 1362555 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b217 PA:1c00b217 +75581941ns 1362556 1c000e82 fff60613 addi x12, x12, -1 x12=000001e0 x12:000001e1 +75581960ns 1362557 1c000e84 00130313 addi x6, x6, 1 x6=1c00b218 x6:1c00b217 +75581980ns 1362558 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001e0 +75582059ns 1362562 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b218 PA:1c00b218 +75582079ns 1362563 1c000e82 fff60613 addi x12, x12, -1 x12=000001df x12:000001e0 +75582099ns 1362564 1c000e84 00130313 addi x6, x6, 1 x6=1c00b219 x6:1c00b218 +75582119ns 1362565 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001df +75582198ns 1362569 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b219 PA:1c00b219 +75582218ns 1362570 1c000e82 fff60613 addi x12, x12, -1 x12=000001de x12:000001df +75582237ns 1362571 1c000e84 00130313 addi x6, x6, 1 x6=1c00b21a x6:1c00b219 +75582257ns 1362572 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001de +75582336ns 1362576 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b21a PA:1c00b21a +75582356ns 1362577 1c000e82 fff60613 addi x12, x12, -1 x12=000001dd x12:000001de +75582376ns 1362578 1c000e84 00130313 addi x6, x6, 1 x6=1c00b21b x6:1c00b21a +75582396ns 1362579 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001dd +75582475ns 1362583 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b21b PA:1c00b21b +75582495ns 1362584 1c000e82 fff60613 addi x12, x12, -1 x12=000001dc x12:000001dd +75582514ns 1362585 1c000e84 00130313 addi x6, x6, 1 x6=1c00b21c x6:1c00b21b +75582534ns 1362586 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001dc +75582613ns 1362590 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b21c PA:1c00b21c +75582633ns 1362591 1c000e82 fff60613 addi x12, x12, -1 x12=000001db x12:000001dc +75582653ns 1362592 1c000e84 00130313 addi x6, x6, 1 x6=1c00b21d x6:1c00b21c +75582673ns 1362593 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001db +75582752ns 1362597 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b21d PA:1c00b21d +75582772ns 1362598 1c000e82 fff60613 addi x12, x12, -1 x12=000001da x12:000001db +75582792ns 1362599 1c000e84 00130313 addi x6, x6, 1 x6=1c00b21e x6:1c00b21d +75582811ns 1362600 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001da +75582891ns 1362604 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b21e PA:1c00b21e +75582910ns 1362605 1c000e82 fff60613 addi x12, x12, -1 x12=000001d9 x12:000001da +75582930ns 1362606 1c000e84 00130313 addi x6, x6, 1 x6=1c00b21f x6:1c00b21e +75582950ns 1362607 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001d9 +75583029ns 1362611 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b21f PA:1c00b21f +75583049ns 1362612 1c000e82 fff60613 addi x12, x12, -1 x12=000001d8 x12:000001d9 +75583069ns 1362613 1c000e84 00130313 addi x6, x6, 1 x6=1c00b220 x6:1c00b21f +75583088ns 1362614 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001d8 +75583168ns 1362618 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b220 PA:1c00b220 +75583187ns 1362619 1c000e82 fff60613 addi x12, x12, -1 x12=000001d7 x12:000001d8 +75583207ns 1362620 1c000e84 00130313 addi x6, x6, 1 x6=1c00b221 x6:1c00b220 +75583227ns 1362621 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001d7 +75583306ns 1362625 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b221 PA:1c00b221 +75583326ns 1362626 1c000e82 fff60613 addi x12, x12, -1 x12=000001d6 x12:000001d7 +75583346ns 1362627 1c000e84 00130313 addi x6, x6, 1 x6=1c00b222 x6:1c00b221 +75583366ns 1362628 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001d6 +75583445ns 1362632 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b222 PA:1c00b222 +75583464ns 1362633 1c000e82 fff60613 addi x12, x12, -1 x12=000001d5 x12:000001d6 +75583484ns 1362634 1c000e84 00130313 addi x6, x6, 1 x6=1c00b223 x6:1c00b222 +75583504ns 1362635 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001d5 +75583583ns 1362639 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b223 PA:1c00b223 +75583603ns 1362640 1c000e82 fff60613 addi x12, x12, -1 x12=000001d4 x12:000001d5 +75583623ns 1362641 1c000e84 00130313 addi x6, x6, 1 x6=1c00b224 x6:1c00b223 +75583643ns 1362642 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001d4 +75583722ns 1362646 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b224 PA:1c00b224 +75583742ns 1362647 1c000e82 fff60613 addi x12, x12, -1 x12=000001d3 x12:000001d4 +75583761ns 1362648 1c000e84 00130313 addi x6, x6, 1 x6=1c00b225 x6:1c00b224 +75583781ns 1362649 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001d3 +75583860ns 1362653 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b225 PA:1c00b225 +75583880ns 1362654 1c000e82 fff60613 addi x12, x12, -1 x12=000001d2 x12:000001d3 +75583900ns 1362655 1c000e84 00130313 addi x6, x6, 1 x6=1c00b226 x6:1c00b225 +75583920ns 1362656 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001d2 +75583999ns 1362660 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b226 PA:1c00b226 +75584019ns 1362661 1c000e82 fff60613 addi x12, x12, -1 x12=000001d1 x12:000001d2 +75584038ns 1362662 1c000e84 00130313 addi x6, x6, 1 x6=1c00b227 x6:1c00b226 +75584058ns 1362663 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001d1 +75584137ns 1362667 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b227 PA:1c00b227 +75584157ns 1362668 1c000e82 fff60613 addi x12, x12, -1 x12=000001d0 x12:000001d1 +75584177ns 1362669 1c000e84 00130313 addi x6, x6, 1 x6=1c00b228 x6:1c00b227 +75584197ns 1362670 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001d0 +75584276ns 1362674 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b228 PA:1c00b228 +75584296ns 1362675 1c000e82 fff60613 addi x12, x12, -1 x12=000001cf x12:000001d0 +75584316ns 1362676 1c000e84 00130313 addi x6, x6, 1 x6=1c00b229 x6:1c00b228 +75584335ns 1362677 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001cf +75584415ns 1362681 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b229 PA:1c00b229 +75584434ns 1362682 1c000e82 fff60613 addi x12, x12, -1 x12=000001ce x12:000001cf +75584454ns 1362683 1c000e84 00130313 addi x6, x6, 1 x6=1c00b22a x6:1c00b229 +75584474ns 1362684 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ce +75584553ns 1362688 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b22a PA:1c00b22a +75584573ns 1362689 1c000e82 fff60613 addi x12, x12, -1 x12=000001cd x12:000001ce +75584593ns 1362690 1c000e84 00130313 addi x6, x6, 1 x6=1c00b22b x6:1c00b22a +75584612ns 1362691 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001cd +75584692ns 1362695 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b22b PA:1c00b22b +75584711ns 1362696 1c000e82 fff60613 addi x12, x12, -1 x12=000001cc x12:000001cd +75584731ns 1362697 1c000e84 00130313 addi x6, x6, 1 x6=1c00b22c x6:1c00b22b +75584751ns 1362698 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001cc +75584830ns 1362702 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b22c PA:1c00b22c +75584850ns 1362703 1c000e82 fff60613 addi x12, x12, -1 x12=000001cb x12:000001cc +75584870ns 1362704 1c000e84 00130313 addi x6, x6, 1 x6=1c00b22d x6:1c00b22c +75584890ns 1362705 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001cb +75584969ns 1362709 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b22d PA:1c00b22d +75584988ns 1362710 1c000e82 fff60613 addi x12, x12, -1 x12=000001ca x12:000001cb +75585008ns 1362711 1c000e84 00130313 addi x6, x6, 1 x6=1c00b22e x6:1c00b22d +75585028ns 1362712 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ca +75585107ns 1362716 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b22e PA:1c00b22e +75585127ns 1362717 1c000e82 fff60613 addi x12, x12, -1 x12=000001c9 x12:000001ca +75585147ns 1362718 1c000e84 00130313 addi x6, x6, 1 x6=1c00b22f x6:1c00b22e +75585167ns 1362719 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001c9 +75585246ns 1362723 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b22f PA:1c00b22f +75585266ns 1362724 1c000e82 fff60613 addi x12, x12, -1 x12=000001c8 x12:000001c9 +75585285ns 1362725 1c000e84 00130313 addi x6, x6, 1 x6=1c00b230 x6:1c00b22f +75585305ns 1362726 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001c8 +75585384ns 1362730 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b230 PA:1c00b230 +75585404ns 1362731 1c000e82 fff60613 addi x12, x12, -1 x12=000001c7 x12:000001c8 +75585424ns 1362732 1c000e84 00130313 addi x6, x6, 1 x6=1c00b231 x6:1c00b230 +75585444ns 1362733 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001c7 +75585523ns 1362737 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b231 PA:1c00b231 +75585543ns 1362738 1c000e82 fff60613 addi x12, x12, -1 x12=000001c6 x12:000001c7 +75585562ns 1362739 1c000e84 00130313 addi x6, x6, 1 x6=1c00b232 x6:1c00b231 +75585582ns 1362740 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001c6 +75585661ns 1362744 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b232 PA:1c00b232 +75585681ns 1362745 1c000e82 fff60613 addi x12, x12, -1 x12=000001c5 x12:000001c6 +75585701ns 1362746 1c000e84 00130313 addi x6, x6, 1 x6=1c00b233 x6:1c00b232 +75585721ns 1362747 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001c5 +75585800ns 1362751 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b233 PA:1c00b233 +75585820ns 1362752 1c000e82 fff60613 addi x12, x12, -1 x12=000001c4 x12:000001c5 +75585840ns 1362753 1c000e84 00130313 addi x6, x6, 1 x6=1c00b234 x6:1c00b233 +75585859ns 1362754 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001c4 +75585938ns 1362758 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b234 PA:1c00b234 +75585958ns 1362759 1c000e82 fff60613 addi x12, x12, -1 x12=000001c3 x12:000001c4 +75585978ns 1362760 1c000e84 00130313 addi x6, x6, 1 x6=1c00b235 x6:1c00b234 +75585998ns 1362761 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001c3 +75586077ns 1362765 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b235 PA:1c00b235 +75586097ns 1362766 1c000e82 fff60613 addi x12, x12, -1 x12=000001c2 x12:000001c3 +75586117ns 1362767 1c000e84 00130313 addi x6, x6, 1 x6=1c00b236 x6:1c00b235 +75586136ns 1362768 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001c2 +75586216ns 1362772 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b236 PA:1c00b236 +75586235ns 1362773 1c000e82 fff60613 addi x12, x12, -1 x12=000001c1 x12:000001c2 +75586255ns 1362774 1c000e84 00130313 addi x6, x6, 1 x6=1c00b237 x6:1c00b236 +75586275ns 1362775 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001c1 +75586354ns 1362779 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b237 PA:1c00b237 +75586374ns 1362780 1c000e82 fff60613 addi x12, x12, -1 x12=000001c0 x12:000001c1 +75586394ns 1362781 1c000e84 00130313 addi x6, x6, 1 x6=1c00b238 x6:1c00b237 +75586413ns 1362782 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001c0 +75586493ns 1362786 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b238 PA:1c00b238 +75586512ns 1362787 1c000e82 fff60613 addi x12, x12, -1 x12=000001bf x12:000001c0 +75586532ns 1362788 1c000e84 00130313 addi x6, x6, 1 x6=1c00b239 x6:1c00b238 +75586552ns 1362789 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001bf +75586631ns 1362793 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b239 PA:1c00b239 +75586651ns 1362794 1c000e82 fff60613 addi x12, x12, -1 x12=000001be x12:000001bf +75586671ns 1362795 1c000e84 00130313 addi x6, x6, 1 x6=1c00b23a x6:1c00b239 +75586691ns 1362796 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001be +75586770ns 1362800 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b23a PA:1c00b23a +75586790ns 1362801 1c000e82 fff60613 addi x12, x12, -1 x12=000001bd x12:000001be +75586809ns 1362802 1c000e84 00130313 addi x6, x6, 1 x6=1c00b23b x6:1c00b23a +75586829ns 1362803 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001bd +75586908ns 1362807 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b23b PA:1c00b23b +75586928ns 1362808 1c000e82 fff60613 addi x12, x12, -1 x12=000001bc x12:000001bd +75586948ns 1362809 1c000e84 00130313 addi x6, x6, 1 x6=1c00b23c x6:1c00b23b +75586968ns 1362810 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001bc +75587047ns 1362814 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b23c PA:1c00b23c +75587067ns 1362815 1c000e82 fff60613 addi x12, x12, -1 x12=000001bb x12:000001bc +75587086ns 1362816 1c000e84 00130313 addi x6, x6, 1 x6=1c00b23d x6:1c00b23c +75587106ns 1362817 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001bb +75587185ns 1362821 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b23d PA:1c00b23d +75587205ns 1362822 1c000e82 fff60613 addi x12, x12, -1 x12=000001ba x12:000001bb +75587225ns 1362823 1c000e84 00130313 addi x6, x6, 1 x6=1c00b23e x6:1c00b23d +75587245ns 1362824 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ba +75587324ns 1362828 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b23e PA:1c00b23e +75587344ns 1362829 1c000e82 fff60613 addi x12, x12, -1 x12=000001b9 x12:000001ba +75587364ns 1362830 1c000e84 00130313 addi x6, x6, 1 x6=1c00b23f x6:1c00b23e +75587383ns 1362831 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001b9 +75587462ns 1362835 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b23f PA:1c00b23f +75587482ns 1362836 1c000e82 fff60613 addi x12, x12, -1 x12=000001b8 x12:000001b9 +75587502ns 1362837 1c000e84 00130313 addi x6, x6, 1 x6=1c00b240 x6:1c00b23f +75587522ns 1362838 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001b8 +75587601ns 1362842 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b240 PA:1c00b240 +75587621ns 1362843 1c000e82 fff60613 addi x12, x12, -1 x12=000001b7 x12:000001b8 +75587641ns 1362844 1c000e84 00130313 addi x6, x6, 1 x6=1c00b241 x6:1c00b240 +75587660ns 1362845 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001b7 +75587740ns 1362849 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b241 PA:1c00b241 +75587759ns 1362850 1c000e82 fff60613 addi x12, x12, -1 x12=000001b6 x12:000001b7 +75587779ns 1362851 1c000e84 00130313 addi x6, x6, 1 x6=1c00b242 x6:1c00b241 +75587799ns 1362852 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001b6 +75587878ns 1362856 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b242 PA:1c00b242 +75587898ns 1362857 1c000e82 fff60613 addi x12, x12, -1 x12=000001b5 x12:000001b6 +75587918ns 1362858 1c000e84 00130313 addi x6, x6, 1 x6=1c00b243 x6:1c00b242 +75587937ns 1362859 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001b5 +75588017ns 1362863 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b243 PA:1c00b243 +75588036ns 1362864 1c000e82 fff60613 addi x12, x12, -1 x12=000001b4 x12:000001b5 +75588056ns 1362865 1c000e84 00130313 addi x6, x6, 1 x6=1c00b244 x6:1c00b243 +75588076ns 1362866 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001b4 +75588155ns 1362870 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b244 PA:1c00b244 +75588175ns 1362871 1c000e82 fff60613 addi x12, x12, -1 x12=000001b3 x12:000001b4 +75588195ns 1362872 1c000e84 00130313 addi x6, x6, 1 x6=1c00b245 x6:1c00b244 +75588215ns 1362873 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001b3 +75588294ns 1362877 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b245 PA:1c00b245 +75588314ns 1362878 1c000e82 fff60613 addi x12, x12, -1 x12=000001b2 x12:000001b3 +75588333ns 1362879 1c000e84 00130313 addi x6, x6, 1 x6=1c00b246 x6:1c00b245 +75588353ns 1362880 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001b2 +75588432ns 1362884 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b246 PA:1c00b246 +75588452ns 1362885 1c000e82 fff60613 addi x12, x12, -1 x12=000001b1 x12:000001b2 +75588472ns 1362886 1c000e84 00130313 addi x6, x6, 1 x6=1c00b247 x6:1c00b246 +75588492ns 1362887 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001b1 +75588571ns 1362891 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b247 PA:1c00b247 +75588591ns 1362892 1c000e82 fff60613 addi x12, x12, -1 x12=000001b0 x12:000001b1 +75588610ns 1362893 1c000e84 00130313 addi x6, x6, 1 x6=1c00b248 x6:1c00b247 +75588630ns 1362894 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001b0 +75588709ns 1362898 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b248 PA:1c00b248 +75588729ns 1362899 1c000e82 fff60613 addi x12, x12, -1 x12=000001af x12:000001b0 +75588749ns 1362900 1c000e84 00130313 addi x6, x6, 1 x6=1c00b249 x6:1c00b248 +75588769ns 1362901 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001af +75588848ns 1362905 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b249 PA:1c00b249 +75588868ns 1362906 1c000e82 fff60613 addi x12, x12, -1 x12=000001ae x12:000001af +75588887ns 1362907 1c000e84 00130313 addi x6, x6, 1 x6=1c00b24a x6:1c00b249 +75588907ns 1362908 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ae +75588986ns 1362912 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b24a PA:1c00b24a +75589006ns 1362913 1c000e82 fff60613 addi x12, x12, -1 x12=000001ad x12:000001ae +75589026ns 1362914 1c000e84 00130313 addi x6, x6, 1 x6=1c00b24b x6:1c00b24a +75589046ns 1362915 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ad +75589125ns 1362919 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b24b PA:1c00b24b +75589145ns 1362920 1c000e82 fff60613 addi x12, x12, -1 x12=000001ac x12:000001ad +75589165ns 1362921 1c000e84 00130313 addi x6, x6, 1 x6=1c00b24c x6:1c00b24b +75589184ns 1362922 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ac +75589264ns 1362926 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b24c PA:1c00b24c +75589283ns 1362927 1c000e82 fff60613 addi x12, x12, -1 x12=000001ab x12:000001ac +75589303ns 1362928 1c000e84 00130313 addi x6, x6, 1 x6=1c00b24d x6:1c00b24c +75589323ns 1362929 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ab +75589402ns 1362933 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b24d PA:1c00b24d +75589422ns 1362934 1c000e82 fff60613 addi x12, x12, -1 x12=000001aa x12:000001ab +75589442ns 1362935 1c000e84 00130313 addi x6, x6, 1 x6=1c00b24e x6:1c00b24d +75589461ns 1362936 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001aa +75589541ns 1362940 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b24e PA:1c00b24e +75589560ns 1362941 1c000e82 fff60613 addi x12, x12, -1 x12=000001a9 x12:000001aa +75589580ns 1362942 1c000e84 00130313 addi x6, x6, 1 x6=1c00b24f x6:1c00b24e +75589600ns 1362943 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001a9 +75589679ns 1362947 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b24f PA:1c00b24f +75589699ns 1362948 1c000e82 fff60613 addi x12, x12, -1 x12=000001a8 x12:000001a9 +75589719ns 1362949 1c000e84 00130313 addi x6, x6, 1 x6=1c00b250 x6:1c00b24f +75589739ns 1362950 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001a8 +75589818ns 1362954 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b250 PA:1c00b250 +75589838ns 1362955 1c000e82 fff60613 addi x12, x12, -1 x12=000001a7 x12:000001a8 +75589857ns 1362956 1c000e84 00130313 addi x6, x6, 1 x6=1c00b251 x6:1c00b250 +75589877ns 1362957 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001a7 +75589956ns 1362961 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b251 PA:1c00b251 +75589976ns 1362962 1c000e82 fff60613 addi x12, x12, -1 x12=000001a6 x12:000001a7 +75589996ns 1362963 1c000e84 00130313 addi x6, x6, 1 x6=1c00b252 x6:1c00b251 +75590016ns 1362964 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001a6 +75590095ns 1362968 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b252 PA:1c00b252 +75590115ns 1362969 1c000e82 fff60613 addi x12, x12, -1 x12=000001a5 x12:000001a6 +75590134ns 1362970 1c000e84 00130313 addi x6, x6, 1 x6=1c00b253 x6:1c00b252 +75590154ns 1362971 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001a5 +75590233ns 1362975 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b253 PA:1c00b253 +75590253ns 1362976 1c000e82 fff60613 addi x12, x12, -1 x12=000001a4 x12:000001a5 +75590273ns 1362977 1c000e84 00130313 addi x6, x6, 1 x6=1c00b254 x6:1c00b253 +75590293ns 1362978 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001a4 +75590372ns 1362982 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b254 PA:1c00b254 +75590392ns 1362983 1c000e82 fff60613 addi x12, x12, -1 x12=000001a3 x12:000001a4 +75590411ns 1362984 1c000e84 00130313 addi x6, x6, 1 x6=1c00b255 x6:1c00b254 +75590431ns 1362985 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001a3 +75590510ns 1362989 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b255 PA:1c00b255 +75590530ns 1362990 1c000e82 fff60613 addi x12, x12, -1 x12=000001a2 x12:000001a3 +75590550ns 1362991 1c000e84 00130313 addi x6, x6, 1 x6=1c00b256 x6:1c00b255 +75590570ns 1362992 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001a2 +75590649ns 1362996 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b256 PA:1c00b256 +75590669ns 1362997 1c000e82 fff60613 addi x12, x12, -1 x12=000001a1 x12:000001a2 +75590689ns 1362998 1c000e84 00130313 addi x6, x6, 1 x6=1c00b257 x6:1c00b256 +75590708ns 1362999 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001a1 +75590788ns 1363003 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b257 PA:1c00b257 +75590807ns 1363004 1c000e82 fff60613 addi x12, x12, -1 x12=000001a0 x12:000001a1 +75590827ns 1363005 1c000e84 00130313 addi x6, x6, 1 x6=1c00b258 x6:1c00b257 +75590847ns 1363006 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001a0 +75590926ns 1363010 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b258 PA:1c00b258 +75590946ns 1363011 1c000e82 fff60613 addi x12, x12, -1 x12=0000019f x12:000001a0 +75590966ns 1363012 1c000e84 00130313 addi x6, x6, 1 x6=1c00b259 x6:1c00b258 +75590985ns 1363013 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000019f +75591065ns 1363017 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b259 PA:1c00b259 +75591084ns 1363018 1c000e82 fff60613 addi x12, x12, -1 x12=0000019e x12:0000019f +75591104ns 1363019 1c000e84 00130313 addi x6, x6, 1 x6=1c00b25a x6:1c00b259 +75591124ns 1363020 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000019e +75591203ns 1363024 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b25a PA:1c00b25a +75591223ns 1363025 1c000e82 fff60613 addi x12, x12, -1 x12=0000019d x12:0000019e +75591243ns 1363026 1c000e84 00130313 addi x6, x6, 1 x6=1c00b25b x6:1c00b25a +75591263ns 1363027 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000019d +75591342ns 1363031 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b25b PA:1c00b25b +75591361ns 1363032 1c000e82 fff60613 addi x12, x12, -1 x12=0000019c x12:0000019d +75591381ns 1363033 1c000e84 00130313 addi x6, x6, 1 x6=1c00b25c x6:1c00b25b +75591401ns 1363034 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000019c +75591480ns 1363038 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b25c PA:1c00b25c +75591500ns 1363039 1c000e82 fff60613 addi x12, x12, -1 x12=0000019b x12:0000019c +75591520ns 1363040 1c000e84 00130313 addi x6, x6, 1 x6=1c00b25d x6:1c00b25c +75591540ns 1363041 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000019b +75591619ns 1363045 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b25d PA:1c00b25d +75591639ns 1363046 1c000e82 fff60613 addi x12, x12, -1 x12=0000019a x12:0000019b +75591658ns 1363047 1c000e84 00130313 addi x6, x6, 1 x6=1c00b25e x6:1c00b25d +75591678ns 1363048 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000019a +75591757ns 1363052 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b25e PA:1c00b25e +75591777ns 1363053 1c000e82 fff60613 addi x12, x12, -1 x12=00000199 x12:0000019a +75591797ns 1363054 1c000e84 00130313 addi x6, x6, 1 x6=1c00b25f x6:1c00b25e +75591817ns 1363055 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000199 +75591896ns 1363059 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b25f PA:1c00b25f +75591916ns 1363060 1c000e82 fff60613 addi x12, x12, -1 x12=00000198 x12:00000199 +75591935ns 1363061 1c000e84 00130313 addi x6, x6, 1 x6=1c00b260 x6:1c00b25f +75591955ns 1363062 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000198 +75592034ns 1363066 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b260 PA:1c00b260 +75592054ns 1363067 1c000e82 fff60613 addi x12, x12, -1 x12=00000197 x12:00000198 +75592074ns 1363068 1c000e84 00130313 addi x6, x6, 1 x6=1c00b261 x6:1c00b260 +75592094ns 1363069 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000197 +75592173ns 1363073 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b261 PA:1c00b261 +75592193ns 1363074 1c000e82 fff60613 addi x12, x12, -1 x12=00000196 x12:00000197 +75592213ns 1363075 1c000e84 00130313 addi x6, x6, 1 x6=1c00b262 x6:1c00b261 +75592232ns 1363076 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000196 +75592312ns 1363080 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b262 PA:1c00b262 +75592331ns 1363081 1c000e82 fff60613 addi x12, x12, -1 x12=00000195 x12:00000196 +75592351ns 1363082 1c000e84 00130313 addi x6, x6, 1 x6=1c00b263 x6:1c00b262 +75592371ns 1363083 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000195 +75592450ns 1363087 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b263 PA:1c00b263 +75592470ns 1363088 1c000e82 fff60613 addi x12, x12, -1 x12=00000194 x12:00000195 +75592490ns 1363089 1c000e84 00130313 addi x6, x6, 1 x6=1c00b264 x6:1c00b263 +75592509ns 1363090 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000194 +75592589ns 1363094 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b264 PA:1c00b264 +75592608ns 1363095 1c000e82 fff60613 addi x12, x12, -1 x12=00000193 x12:00000194 +75592628ns 1363096 1c000e84 00130313 addi x6, x6, 1 x6=1c00b265 x6:1c00b264 +75592648ns 1363097 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000193 +75592727ns 1363101 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b265 PA:1c00b265 +75592747ns 1363102 1c000e82 fff60613 addi x12, x12, -1 x12=00000192 x12:00000193 +75592767ns 1363103 1c000e84 00130313 addi x6, x6, 1 x6=1c00b266 x6:1c00b265 +75592787ns 1363104 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000192 +75592866ns 1363108 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b266 PA:1c00b266 +75592885ns 1363109 1c000e82 fff60613 addi x12, x12, -1 x12=00000191 x12:00000192 +75592905ns 1363110 1c000e84 00130313 addi x6, x6, 1 x6=1c00b267 x6:1c00b266 +75592925ns 1363111 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000191 +75593004ns 1363115 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b267 PA:1c00b267 +75593024ns 1363116 1c000e82 fff60613 addi x12, x12, -1 x12=00000190 x12:00000191 +75593044ns 1363117 1c000e84 00130313 addi x6, x6, 1 x6=1c00b268 x6:1c00b267 +75593064ns 1363118 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000190 +75593143ns 1363122 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b268 PA:1c00b268 +75593163ns 1363123 1c000e82 fff60613 addi x12, x12, -1 x12=0000018f x12:00000190 +75593182ns 1363124 1c000e84 00130313 addi x6, x6, 1 x6=1c00b269 x6:1c00b268 +75593202ns 1363125 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000018f +75593281ns 1363129 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b269 PA:1c00b269 +75593301ns 1363130 1c000e82 fff60613 addi x12, x12, -1 x12=0000018e x12:0000018f +75593321ns 1363131 1c000e84 00130313 addi x6, x6, 1 x6=1c00b26a x6:1c00b269 +75593341ns 1363132 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000018e +75593420ns 1363136 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b26a PA:1c00b26a +75593440ns 1363137 1c000e82 fff60613 addi x12, x12, -1 x12=0000018d x12:0000018e +75593459ns 1363138 1c000e84 00130313 addi x6, x6, 1 x6=1c00b26b x6:1c00b26a +75593479ns 1363139 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000018d +75593558ns 1363143 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b26b PA:1c00b26b +75593578ns 1363144 1c000e82 fff60613 addi x12, x12, -1 x12=0000018c x12:0000018d +75593598ns 1363145 1c000e84 00130313 addi x6, x6, 1 x6=1c00b26c x6:1c00b26b +75593618ns 1363146 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000018c +75593697ns 1363150 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b26c PA:1c00b26c +75593717ns 1363151 1c000e82 fff60613 addi x12, x12, -1 x12=0000018b x12:0000018c +75593737ns 1363152 1c000e84 00130313 addi x6, x6, 1 x6=1c00b26d x6:1c00b26c +75593756ns 1363153 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000018b +75593835ns 1363157 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b26d PA:1c00b26d +75593855ns 1363158 1c000e82 fff60613 addi x12, x12, -1 x12=0000018a x12:0000018b +75593875ns 1363159 1c000e84 00130313 addi x6, x6, 1 x6=1c00b26e x6:1c00b26d +75593895ns 1363160 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000018a +75593974ns 1363164 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b26e PA:1c00b26e +75593994ns 1363165 1c000e82 fff60613 addi x12, x12, -1 x12=00000189 x12:0000018a +75594014ns 1363166 1c000e84 00130313 addi x6, x6, 1 x6=1c00b26f x6:1c00b26e +75594033ns 1363167 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000189 +75594113ns 1363171 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b26f PA:1c00b26f +75594132ns 1363172 1c000e82 fff60613 addi x12, x12, -1 x12=00000188 x12:00000189 +75594152ns 1363173 1c000e84 00130313 addi x6, x6, 1 x6=1c00b270 x6:1c00b26f +75594172ns 1363174 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000188 +75594251ns 1363178 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b270 PA:1c00b270 +75594271ns 1363179 1c000e82 fff60613 addi x12, x12, -1 x12=00000187 x12:00000188 +75594291ns 1363180 1c000e84 00130313 addi x6, x6, 1 x6=1c00b271 x6:1c00b270 +75594311ns 1363181 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000187 +75594390ns 1363185 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b271 PA:1c00b271 +75594409ns 1363186 1c000e82 fff60613 addi x12, x12, -1 x12=00000186 x12:00000187 +75594429ns 1363187 1c000e84 00130313 addi x6, x6, 1 x6=1c00b272 x6:1c00b271 +75594449ns 1363188 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000186 +75594528ns 1363192 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b272 PA:1c00b272 +75594548ns 1363193 1c000e82 fff60613 addi x12, x12, -1 x12=00000185 x12:00000186 +75594568ns 1363194 1c000e84 00130313 addi x6, x6, 1 x6=1c00b273 x6:1c00b272 +75594588ns 1363195 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000185 +75594667ns 1363199 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b273 PA:1c00b273 +75594687ns 1363200 1c000e82 fff60613 addi x12, x12, -1 x12=00000184 x12:00000185 +75594706ns 1363201 1c000e84 00130313 addi x6, x6, 1 x6=1c00b274 x6:1c00b273 +75594726ns 1363202 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000184 +75594805ns 1363206 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b274 PA:1c00b274 +75594825ns 1363207 1c000e82 fff60613 addi x12, x12, -1 x12=00000183 x12:00000184 +75594845ns 1363208 1c000e84 00130313 addi x6, x6, 1 x6=1c00b275 x6:1c00b274 +75594865ns 1363209 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000183 +75594944ns 1363213 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b275 PA:1c00b275 +75594964ns 1363214 1c000e82 fff60613 addi x12, x12, -1 x12=00000182 x12:00000183 +75594983ns 1363215 1c000e84 00130313 addi x6, x6, 1 x6=1c00b276 x6:1c00b275 +75595003ns 1363216 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000182 +75595082ns 1363220 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b276 PA:1c00b276 +75595102ns 1363221 1c000e82 fff60613 addi x12, x12, -1 x12=00000181 x12:00000182 +75595122ns 1363222 1c000e84 00130313 addi x6, x6, 1 x6=1c00b277 x6:1c00b276 +75595142ns 1363223 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000181 +75595221ns 1363227 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b277 PA:1c00b277 +75595241ns 1363228 1c000e82 fff60613 addi x12, x12, -1 x12=00000180 x12:00000181 +75595261ns 1363229 1c000e84 00130313 addi x6, x6, 1 x6=1c00b278 x6:1c00b277 +75595280ns 1363230 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000180 +75595359ns 1363234 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b278 PA:1c00b278 +75595379ns 1363235 1c000e82 fff60613 addi x12, x12, -1 x12=0000017f x12:00000180 +75595399ns 1363236 1c000e84 00130313 addi x6, x6, 1 x6=1c00b279 x6:1c00b278 +75595419ns 1363237 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000017f +75595498ns 1363241 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b279 PA:1c00b279 +75595518ns 1363242 1c000e82 fff60613 addi x12, x12, -1 x12=0000017e x12:0000017f +75595538ns 1363243 1c000e84 00130313 addi x6, x6, 1 x6=1c00b27a x6:1c00b279 +75595557ns 1363244 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000017e +75595637ns 1363248 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b27a PA:1c00b27a +75595656ns 1363249 1c000e82 fff60613 addi x12, x12, -1 x12=0000017d x12:0000017e +75595676ns 1363250 1c000e84 00130313 addi x6, x6, 1 x6=1c00b27b x6:1c00b27a +75595696ns 1363251 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000017d +75595775ns 1363255 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b27b PA:1c00b27b +75595795ns 1363256 1c000e82 fff60613 addi x12, x12, -1 x12=0000017c x12:0000017d +75595815ns 1363257 1c000e84 00130313 addi x6, x6, 1 x6=1c00b27c x6:1c00b27b +75595834ns 1363258 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000017c +75595914ns 1363262 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b27c PA:1c00b27c +75595933ns 1363263 1c000e82 fff60613 addi x12, x12, -1 x12=0000017b x12:0000017c +75595953ns 1363264 1c000e84 00130313 addi x6, x6, 1 x6=1c00b27d x6:1c00b27c +75595973ns 1363265 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000017b +75596052ns 1363269 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b27d PA:1c00b27d +75596072ns 1363270 1c000e82 fff60613 addi x12, x12, -1 x12=0000017a x12:0000017b +75596092ns 1363271 1c000e84 00130313 addi x6, x6, 1 x6=1c00b27e x6:1c00b27d +75596112ns 1363272 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000017a +75596191ns 1363276 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b27e PA:1c00b27e +75596211ns 1363277 1c000e82 fff60613 addi x12, x12, -1 x12=00000179 x12:0000017a +75596230ns 1363278 1c000e84 00130313 addi x6, x6, 1 x6=1c00b27f x6:1c00b27e +75596250ns 1363279 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000179 +75596329ns 1363283 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b27f PA:1c00b27f +75596349ns 1363284 1c000e82 fff60613 addi x12, x12, -1 x12=00000178 x12:00000179 +75596369ns 1363285 1c000e84 00130313 addi x6, x6, 1 x6=1c00b280 x6:1c00b27f +75596389ns 1363286 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000178 +75596468ns 1363290 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b280 PA:1c00b280 +75596488ns 1363291 1c000e82 fff60613 addi x12, x12, -1 x12=00000177 x12:00000178 +75596507ns 1363292 1c000e84 00130313 addi x6, x6, 1 x6=1c00b281 x6:1c00b280 +75596527ns 1363293 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000177 +75596606ns 1363297 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b281 PA:1c00b281 +75596626ns 1363298 1c000e82 fff60613 addi x12, x12, -1 x12=00000176 x12:00000177 +75596646ns 1363299 1c000e84 00130313 addi x6, x6, 1 x6=1c00b282 x6:1c00b281 +75596666ns 1363300 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000176 +75596745ns 1363304 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b282 PA:1c00b282 +75596765ns 1363305 1c000e82 fff60613 addi x12, x12, -1 x12=00000175 x12:00000176 +75596785ns 1363306 1c000e84 00130313 addi x6, x6, 1 x6=1c00b283 x6:1c00b282 +75596804ns 1363307 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000175 +75596883ns 1363311 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b283 PA:1c00b283 +75596903ns 1363312 1c000e82 fff60613 addi x12, x12, -1 x12=00000174 x12:00000175 +75596923ns 1363313 1c000e84 00130313 addi x6, x6, 1 x6=1c00b284 x6:1c00b283 +75596943ns 1363314 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000174 +75597022ns 1363318 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b284 PA:1c00b284 +75597042ns 1363319 1c000e82 fff60613 addi x12, x12, -1 x12=00000173 x12:00000174 +75597062ns 1363320 1c000e84 00130313 addi x6, x6, 1 x6=1c00b285 x6:1c00b284 +75597081ns 1363321 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000173 +75597161ns 1363325 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b285 PA:1c00b285 +75597180ns 1363326 1c000e82 fff60613 addi x12, x12, -1 x12=00000172 x12:00000173 +75597200ns 1363327 1c000e84 00130313 addi x6, x6, 1 x6=1c00b286 x6:1c00b285 +75597220ns 1363328 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000172 +75597299ns 1363332 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b286 PA:1c00b286 +75597319ns 1363333 1c000e82 fff60613 addi x12, x12, -1 x12=00000171 x12:00000172 +75597339ns 1363334 1c000e84 00130313 addi x6, x6, 1 x6=1c00b287 x6:1c00b286 +75597358ns 1363335 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000171 +75597438ns 1363339 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b287 PA:1c00b287 +75597457ns 1363340 1c000e82 fff60613 addi x12, x12, -1 x12=00000170 x12:00000171 +75597477ns 1363341 1c000e84 00130313 addi x6, x6, 1 x6=1c00b288 x6:1c00b287 +75597497ns 1363342 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000170 +75597576ns 1363346 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b288 PA:1c00b288 +75597596ns 1363347 1c000e82 fff60613 addi x12, x12, -1 x12=0000016f x12:00000170 +75597616ns 1363348 1c000e84 00130313 addi x6, x6, 1 x6=1c00b289 x6:1c00b288 +75597636ns 1363349 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000016f +75597715ns 1363353 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b289 PA:1c00b289 +75597735ns 1363354 1c000e82 fff60613 addi x12, x12, -1 x12=0000016e x12:0000016f +75597754ns 1363355 1c000e84 00130313 addi x6, x6, 1 x6=1c00b28a x6:1c00b289 +75597774ns 1363356 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000016e +75597853ns 1363360 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b28a PA:1c00b28a +75597873ns 1363361 1c000e82 fff60613 addi x12, x12, -1 x12=0000016d x12:0000016e +75597893ns 1363362 1c000e84 00130313 addi x6, x6, 1 x6=1c00b28b x6:1c00b28a +75597913ns 1363363 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000016d +75597992ns 1363367 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b28b PA:1c00b28b +75598012ns 1363368 1c000e82 fff60613 addi x12, x12, -1 x12=0000016c x12:0000016d +75598031ns 1363369 1c000e84 00130313 addi x6, x6, 1 x6=1c00b28c x6:1c00b28b +75598051ns 1363370 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000016c +75598130ns 1363374 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b28c PA:1c00b28c +75598150ns 1363375 1c000e82 fff60613 addi x12, x12, -1 x12=0000016b x12:0000016c +75598170ns 1363376 1c000e84 00130313 addi x6, x6, 1 x6=1c00b28d x6:1c00b28c +75598190ns 1363377 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000016b +75598269ns 1363381 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b28d PA:1c00b28d +75598289ns 1363382 1c000e82 fff60613 addi x12, x12, -1 x12=0000016a x12:0000016b +75598308ns 1363383 1c000e84 00130313 addi x6, x6, 1 x6=1c00b28e x6:1c00b28d +75598328ns 1363384 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000016a +75598407ns 1363388 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b28e PA:1c00b28e +75598427ns 1363389 1c000e82 fff60613 addi x12, x12, -1 x12=00000169 x12:0000016a +75598447ns 1363390 1c000e84 00130313 addi x6, x6, 1 x6=1c00b28f x6:1c00b28e +75598467ns 1363391 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000169 +75598546ns 1363395 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b28f PA:1c00b28f +75598566ns 1363396 1c000e82 fff60613 addi x12, x12, -1 x12=00000168 x12:00000169 +75598586ns 1363397 1c000e84 00130313 addi x6, x6, 1 x6=1c00b290 x6:1c00b28f +75598605ns 1363398 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000168 +75598685ns 1363402 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b290 PA:1c00b290 +75598704ns 1363403 1c000e82 fff60613 addi x12, x12, -1 x12=00000167 x12:00000168 +75598724ns 1363404 1c000e84 00130313 addi x6, x6, 1 x6=1c00b291 x6:1c00b290 +75598744ns 1363405 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000167 +75598823ns 1363409 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b291 PA:1c00b291 +75598843ns 1363410 1c000e82 fff60613 addi x12, x12, -1 x12=00000166 x12:00000167 +75598863ns 1363411 1c000e84 00130313 addi x6, x6, 1 x6=1c00b292 x6:1c00b291 +75598882ns 1363412 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000166 +75598962ns 1363416 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b292 PA:1c00b292 +75598981ns 1363417 1c000e82 fff60613 addi x12, x12, -1 x12=00000165 x12:00000166 +75599001ns 1363418 1c000e84 00130313 addi x6, x6, 1 x6=1c00b293 x6:1c00b292 +75599021ns 1363419 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000165 +75599100ns 1363423 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b293 PA:1c00b293 +75599120ns 1363424 1c000e82 fff60613 addi x12, x12, -1 x12=00000164 x12:00000165 +75599140ns 1363425 1c000e84 00130313 addi x6, x6, 1 x6=1c00b294 x6:1c00b293 +75599160ns 1363426 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000164 +75599239ns 1363430 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b294 PA:1c00b294 +75599259ns 1363431 1c000e82 fff60613 addi x12, x12, -1 x12=00000163 x12:00000164 +75599278ns 1363432 1c000e84 00130313 addi x6, x6, 1 x6=1c00b295 x6:1c00b294 +75599298ns 1363433 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000163 +75599377ns 1363437 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b295 PA:1c00b295 +75599397ns 1363438 1c000e82 fff60613 addi x12, x12, -1 x12=00000162 x12:00000163 +75599417ns 1363439 1c000e84 00130313 addi x6, x6, 1 x6=1c00b296 x6:1c00b295 +75599437ns 1363440 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000162 +75599516ns 1363444 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b296 PA:1c00b296 +75599536ns 1363445 1c000e82 fff60613 addi x12, x12, -1 x12=00000161 x12:00000162 +75599555ns 1363446 1c000e84 00130313 addi x6, x6, 1 x6=1c00b297 x6:1c00b296 +75599575ns 1363447 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000161 +75599654ns 1363451 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b297 PA:1c00b297 +75599674ns 1363452 1c000e82 fff60613 addi x12, x12, -1 x12=00000160 x12:00000161 +75599694ns 1363453 1c000e84 00130313 addi x6, x6, 1 x6=1c00b298 x6:1c00b297 +75599714ns 1363454 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000160 +75599793ns 1363458 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b298 PA:1c00b298 +75599813ns 1363459 1c000e82 fff60613 addi x12, x12, -1 x12=0000015f x12:00000160 +75599832ns 1363460 1c000e84 00130313 addi x6, x6, 1 x6=1c00b299 x6:1c00b298 +75599852ns 1363461 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000015f +75599931ns 1363465 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b299 PA:1c00b299 +75599951ns 1363466 1c000e82 fff60613 addi x12, x12, -1 x12=0000015e x12:0000015f +75599971ns 1363467 1c000e84 00130313 addi x6, x6, 1 x6=1c00b29a x6:1c00b299 +75599991ns 1363468 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000015e +75600070ns 1363472 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b29a PA:1c00b29a +75600090ns 1363473 1c000e82 fff60613 addi x12, x12, -1 x12=0000015d x12:0000015e +75600110ns 1363474 1c000e84 00130313 addi x6, x6, 1 x6=1c00b29b x6:1c00b29a +75600129ns 1363475 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000015d +75600209ns 1363479 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b29b PA:1c00b29b +75600228ns 1363480 1c000e82 fff60613 addi x12, x12, -1 x12=0000015c x12:0000015d +75600248ns 1363481 1c000e84 00130313 addi x6, x6, 1 x6=1c00b29c x6:1c00b29b +75600268ns 1363482 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000015c +75600347ns 1363486 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b29c PA:1c00b29c +75600367ns 1363487 1c000e82 fff60613 addi x12, x12, -1 x12=0000015b x12:0000015c +75600387ns 1363488 1c000e84 00130313 addi x6, x6, 1 x6=1c00b29d x6:1c00b29c +75600406ns 1363489 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000015b +75600486ns 1363493 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b29d PA:1c00b29d +75600505ns 1363494 1c000e82 fff60613 addi x12, x12, -1 x12=0000015a x12:0000015b +75600525ns 1363495 1c000e84 00130313 addi x6, x6, 1 x6=1c00b29e x6:1c00b29d +75600545ns 1363496 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000015a +75600624ns 1363500 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b29e PA:1c00b29e +75600644ns 1363501 1c000e82 fff60613 addi x12, x12, -1 x12=00000159 x12:0000015a +75600664ns 1363502 1c000e84 00130313 addi x6, x6, 1 x6=1c00b29f x6:1c00b29e +75600684ns 1363503 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000159 +75600763ns 1363507 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b29f PA:1c00b29f +75600782ns 1363508 1c000e82 fff60613 addi x12, x12, -1 x12=00000158 x12:00000159 +75600802ns 1363509 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2a0 x6:1c00b29f +75600822ns 1363510 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000158 +75600901ns 1363514 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2a0 PA:1c00b2a0 +75600921ns 1363515 1c000e82 fff60613 addi x12, x12, -1 x12=00000157 x12:00000158 +75600941ns 1363516 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2a1 x6:1c00b2a0 +75600961ns 1363517 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000157 +75601040ns 1363521 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2a1 PA:1c00b2a1 +75601060ns 1363522 1c000e82 fff60613 addi x12, x12, -1 x12=00000156 x12:00000157 +75601079ns 1363523 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2a2 x6:1c00b2a1 +75601099ns 1363524 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000156 +75601178ns 1363528 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2a2 PA:1c00b2a2 +75601198ns 1363529 1c000e82 fff60613 addi x12, x12, -1 x12=00000155 x12:00000156 +75601218ns 1363530 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2a3 x6:1c00b2a2 +75601238ns 1363531 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000155 +75601317ns 1363535 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2a3 PA:1c00b2a3 +75601337ns 1363536 1c000e82 fff60613 addi x12, x12, -1 x12=00000154 x12:00000155 +75601356ns 1363537 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2a4 x6:1c00b2a3 +75601376ns 1363538 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000154 +75601455ns 1363542 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2a4 PA:1c00b2a4 +75601475ns 1363543 1c000e82 fff60613 addi x12, x12, -1 x12=00000153 x12:00000154 +75601495ns 1363544 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2a5 x6:1c00b2a4 +75601515ns 1363545 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000153 +75601594ns 1363549 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2a5 PA:1c00b2a5 +75601614ns 1363550 1c000e82 fff60613 addi x12, x12, -1 x12=00000152 x12:00000153 +75601634ns 1363551 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2a6 x6:1c00b2a5 +75601653ns 1363552 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000152 +75601733ns 1363556 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2a6 PA:1c00b2a6 +75601752ns 1363557 1c000e82 fff60613 addi x12, x12, -1 x12=00000151 x12:00000152 +75601772ns 1363558 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2a7 x6:1c00b2a6 +75601792ns 1363559 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000151 +75601871ns 1363563 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2a7 PA:1c00b2a7 +75601891ns 1363564 1c000e82 fff60613 addi x12, x12, -1 x12=00000150 x12:00000151 +75601911ns 1363565 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2a8 x6:1c00b2a7 +75601930ns 1363566 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000150 +75602010ns 1363570 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2a8 PA:1c00b2a8 +75602029ns 1363571 1c000e82 fff60613 addi x12, x12, -1 x12=0000014f x12:00000150 +75602049ns 1363572 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2a9 x6:1c00b2a8 +75602069ns 1363573 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000014f +75602148ns 1363577 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2a9 PA:1c00b2a9 +75602168ns 1363578 1c000e82 fff60613 addi x12, x12, -1 x12=0000014e x12:0000014f +75602188ns 1363579 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2aa x6:1c00b2a9 +75602208ns 1363580 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000014e +75602287ns 1363584 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2aa PA:1c00b2aa +75602306ns 1363585 1c000e82 fff60613 addi x12, x12, -1 x12=0000014d x12:0000014e +75602326ns 1363586 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2ab x6:1c00b2aa +75602346ns 1363587 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000014d +75602425ns 1363591 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2ab PA:1c00b2ab +75602445ns 1363592 1c000e82 fff60613 addi x12, x12, -1 x12=0000014c x12:0000014d +75602465ns 1363593 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2ac x6:1c00b2ab +75602485ns 1363594 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000014c +75602564ns 1363598 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2ac PA:1c00b2ac +75602584ns 1363599 1c000e82 fff60613 addi x12, x12, -1 x12=0000014b x12:0000014c +75602603ns 1363600 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2ad x6:1c00b2ac +75602623ns 1363601 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000014b +75602702ns 1363605 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2ad PA:1c00b2ad +75602722ns 1363606 1c000e82 fff60613 addi x12, x12, -1 x12=0000014a x12:0000014b +75602742ns 1363607 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2ae x6:1c00b2ad +75602762ns 1363608 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000014a +75602841ns 1363612 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2ae PA:1c00b2ae +75602861ns 1363613 1c000e82 fff60613 addi x12, x12, -1 x12=00000149 x12:0000014a +75602880ns 1363614 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2af x6:1c00b2ae +75602900ns 1363615 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000149 +75602979ns 1363619 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2af PA:1c00b2af +75602999ns 1363620 1c000e82 fff60613 addi x12, x12, -1 x12=00000148 x12:00000149 +75603019ns 1363621 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2b0 x6:1c00b2af +75603039ns 1363622 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000148 +75603118ns 1363626 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2b0 PA:1c00b2b0 +75603138ns 1363627 1c000e82 fff60613 addi x12, x12, -1 x12=00000147 x12:00000148 +75603158ns 1363628 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2b1 x6:1c00b2b0 +75603177ns 1363629 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000147 +75603256ns 1363633 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2b1 PA:1c00b2b1 +75603276ns 1363634 1c000e82 fff60613 addi x12, x12, -1 x12=00000146 x12:00000147 +75603296ns 1363635 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2b2 x6:1c00b2b1 +75603316ns 1363636 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000146 +75603395ns 1363640 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2b2 PA:1c00b2b2 +75603415ns 1363641 1c000e82 fff60613 addi x12, x12, -1 x12=00000145 x12:00000146 +75603435ns 1363642 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2b3 x6:1c00b2b2 +75603454ns 1363643 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000145 +75603534ns 1363647 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2b3 PA:1c00b2b3 +75603553ns 1363648 1c000e82 fff60613 addi x12, x12, -1 x12=00000144 x12:00000145 +75603573ns 1363649 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2b4 x6:1c00b2b3 +75603593ns 1363650 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000144 +75603672ns 1363654 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2b4 PA:1c00b2b4 +75603692ns 1363655 1c000e82 fff60613 addi x12, x12, -1 x12=00000143 x12:00000144 +75603712ns 1363656 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2b5 x6:1c00b2b4 +75603731ns 1363657 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000143 +75603811ns 1363661 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2b5 PA:1c00b2b5 +75603830ns 1363662 1c000e82 fff60613 addi x12, x12, -1 x12=00000142 x12:00000143 +75603850ns 1363663 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2b6 x6:1c00b2b5 +75603870ns 1363664 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000142 +75603949ns 1363668 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2b6 PA:1c00b2b6 +75603969ns 1363669 1c000e82 fff60613 addi x12, x12, -1 x12=00000141 x12:00000142 +75603989ns 1363670 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2b7 x6:1c00b2b6 +75604009ns 1363671 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000141 +75604088ns 1363675 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2b7 PA:1c00b2b7 +75604108ns 1363676 1c000e82 fff60613 addi x12, x12, -1 x12=00000140 x12:00000141 +75604127ns 1363677 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2b8 x6:1c00b2b7 +75604147ns 1363678 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000140 +75604226ns 1363682 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2b8 PA:1c00b2b8 +75604246ns 1363683 1c000e82 fff60613 addi x12, x12, -1 x12=0000013f x12:00000140 +75604266ns 1363684 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2b9 x6:1c00b2b8 +75604286ns 1363685 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000013f +75604365ns 1363689 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2b9 PA:1c00b2b9 +75604385ns 1363690 1c000e82 fff60613 addi x12, x12, -1 x12=0000013e x12:0000013f +75604404ns 1363691 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2ba x6:1c00b2b9 +75604424ns 1363692 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000013e +75604503ns 1363696 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2ba PA:1c00b2ba +75604523ns 1363697 1c000e82 fff60613 addi x12, x12, -1 x12=0000013d x12:0000013e +75604543ns 1363698 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2bb x6:1c00b2ba +75604563ns 1363699 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000013d +75604642ns 1363703 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2bb PA:1c00b2bb +75604662ns 1363704 1c000e82 fff60613 addi x12, x12, -1 x12=0000013c x12:0000013d +75604682ns 1363705 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2bc x6:1c00b2bb +75604701ns 1363706 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000013c +75604780ns 1363710 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2bc PA:1c00b2bc +75604800ns 1363711 1c000e82 fff60613 addi x12, x12, -1 x12=0000013b x12:0000013c +75604820ns 1363712 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2bd x6:1c00b2bc +75604840ns 1363713 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000013b +75604919ns 1363717 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2bd PA:1c00b2bd +75604939ns 1363718 1c000e82 fff60613 addi x12, x12, -1 x12=0000013a x12:0000013b +75604959ns 1363719 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2be x6:1c00b2bd +75604978ns 1363720 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000013a +75605058ns 1363724 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2be PA:1c00b2be +75605077ns 1363725 1c000e82 fff60613 addi x12, x12, -1 x12=00000139 x12:0000013a +75605097ns 1363726 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2bf x6:1c00b2be +75605117ns 1363727 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000139 +75605196ns 1363731 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2bf PA:1c00b2bf +75605216ns 1363732 1c000e82 fff60613 addi x12, x12, -1 x12=00000138 x12:00000139 +75605236ns 1363733 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2c0 x6:1c00b2bf +75605255ns 1363734 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000138 +75605335ns 1363738 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2c0 PA:1c00b2c0 +75605354ns 1363739 1c000e82 fff60613 addi x12, x12, -1 x12=00000137 x12:00000138 +75605374ns 1363740 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2c1 x6:1c00b2c0 +75605394ns 1363741 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000137 +75605473ns 1363745 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2c1 PA:1c00b2c1 +75605493ns 1363746 1c000e82 fff60613 addi x12, x12, -1 x12=00000136 x12:00000137 +75605513ns 1363747 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2c2 x6:1c00b2c1 +75605533ns 1363748 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000136 +75605612ns 1363752 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2c2 PA:1c00b2c2 +75605632ns 1363753 1c000e82 fff60613 addi x12, x12, -1 x12=00000135 x12:00000136 +75605651ns 1363754 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2c3 x6:1c00b2c2 +75605671ns 1363755 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000135 +75605750ns 1363759 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2c3 PA:1c00b2c3 +75605770ns 1363760 1c000e82 fff60613 addi x12, x12, -1 x12=00000134 x12:00000135 +75605790ns 1363761 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2c4 x6:1c00b2c3 +75605810ns 1363762 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000134 +75605889ns 1363766 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2c4 PA:1c00b2c4 +75605909ns 1363767 1c000e82 fff60613 addi x12, x12, -1 x12=00000133 x12:00000134 +75605928ns 1363768 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2c5 x6:1c00b2c4 +75605948ns 1363769 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000133 +75606027ns 1363773 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2c5 PA:1c00b2c5 +75606047ns 1363774 1c000e82 fff60613 addi x12, x12, -1 x12=00000132 x12:00000133 +75606067ns 1363775 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2c6 x6:1c00b2c5 +75606087ns 1363776 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000132 +75606166ns 1363780 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2c6 PA:1c00b2c6 +75606186ns 1363781 1c000e82 fff60613 addi x12, x12, -1 x12=00000131 x12:00000132 +75606205ns 1363782 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2c7 x6:1c00b2c6 +75606225ns 1363783 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000131 +75606304ns 1363787 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2c7 PA:1c00b2c7 +75606324ns 1363788 1c000e82 fff60613 addi x12, x12, -1 x12=00000130 x12:00000131 +75606344ns 1363789 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2c8 x6:1c00b2c7 +75606364ns 1363790 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000130 +75606443ns 1363794 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2c8 PA:1c00b2c8 +75606463ns 1363795 1c000e82 fff60613 addi x12, x12, -1 x12=0000012f x12:00000130 +75606483ns 1363796 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2c9 x6:1c00b2c8 +75606502ns 1363797 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000012f +75606582ns 1363801 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2c9 PA:1c00b2c9 +75606601ns 1363802 1c000e82 fff60613 addi x12, x12, -1 x12=0000012e x12:0000012f +75606621ns 1363803 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2ca x6:1c00b2c9 +75606641ns 1363804 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000012e +75606720ns 1363808 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2ca PA:1c00b2ca +75606740ns 1363809 1c000e82 fff60613 addi x12, x12, -1 x12=0000012d x12:0000012e +75606760ns 1363810 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2cb x6:1c00b2ca +75606779ns 1363811 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000012d +75606859ns 1363815 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2cb PA:1c00b2cb +75606878ns 1363816 1c000e82 fff60613 addi x12, x12, -1 x12=0000012c x12:0000012d +75606898ns 1363817 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2cc x6:1c00b2cb +75606918ns 1363818 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000012c +75606997ns 1363822 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2cc PA:1c00b2cc +75607017ns 1363823 1c000e82 fff60613 addi x12, x12, -1 x12=0000012b x12:0000012c +75607037ns 1363824 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2cd x6:1c00b2cc +75607057ns 1363825 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000012b +75607136ns 1363829 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2cd PA:1c00b2cd +75607156ns 1363830 1c000e82 fff60613 addi x12, x12, -1 x12=0000012a x12:0000012b +75607175ns 1363831 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2ce x6:1c00b2cd +75607195ns 1363832 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000012a +75607274ns 1363836 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2ce PA:1c00b2ce +75607294ns 1363837 1c000e82 fff60613 addi x12, x12, -1 x12=00000129 x12:0000012a +75607314ns 1363838 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2cf x6:1c00b2ce +75607334ns 1363839 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000129 +75607413ns 1363843 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2cf PA:1c00b2cf +75607433ns 1363844 1c000e82 fff60613 addi x12, x12, -1 x12=00000128 x12:00000129 +75607452ns 1363845 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2d0 x6:1c00b2cf +75607472ns 1363846 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000128 +75607551ns 1363850 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2d0 PA:1c00b2d0 +75607571ns 1363851 1c000e82 fff60613 addi x12, x12, -1 x12=00000127 x12:00000128 +75607591ns 1363852 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2d1 x6:1c00b2d0 +75607611ns 1363853 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000127 +75607690ns 1363857 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2d1 PA:1c00b2d1 +75607710ns 1363858 1c000e82 fff60613 addi x12, x12, -1 x12=00000126 x12:00000127 +75607729ns 1363859 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2d2 x6:1c00b2d1 +75607749ns 1363860 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000126 +75607828ns 1363864 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2d2 PA:1c00b2d2 +75607848ns 1363865 1c000e82 fff60613 addi x12, x12, -1 x12=00000125 x12:00000126 +75607868ns 1363866 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2d3 x6:1c00b2d2 +75607888ns 1363867 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000125 +75607967ns 1363871 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2d3 PA:1c00b2d3 +75607987ns 1363872 1c000e82 fff60613 addi x12, x12, -1 x12=00000124 x12:00000125 +75608007ns 1363873 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2d4 x6:1c00b2d3 +75608026ns 1363874 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000124 +75608106ns 1363878 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2d4 PA:1c00b2d4 +75608125ns 1363879 1c000e82 fff60613 addi x12, x12, -1 x12=00000123 x12:00000124 +75608145ns 1363880 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2d5 x6:1c00b2d4 +75608165ns 1363881 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000123 +75608244ns 1363885 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2d5 PA:1c00b2d5 +75608264ns 1363886 1c000e82 fff60613 addi x12, x12, -1 x12=00000122 x12:00000123 +75608284ns 1363887 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2d6 x6:1c00b2d5 +75608303ns 1363888 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000122 +75608383ns 1363892 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2d6 PA:1c00b2d6 +75608402ns 1363893 1c000e82 fff60613 addi x12, x12, -1 x12=00000121 x12:00000122 +75608422ns 1363894 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2d7 x6:1c00b2d6 +75608442ns 1363895 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000121 +75608521ns 1363899 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2d7 PA:1c00b2d7 +75608541ns 1363900 1c000e82 fff60613 addi x12, x12, -1 x12=00000120 x12:00000121 +75608561ns 1363901 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2d8 x6:1c00b2d7 +75608581ns 1363902 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000120 +75608660ns 1363906 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2d8 PA:1c00b2d8 +75608679ns 1363907 1c000e82 fff60613 addi x12, x12, -1 x12=0000011f x12:00000120 +75608699ns 1363908 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2d9 x6:1c00b2d8 +75608719ns 1363909 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000011f +75608798ns 1363913 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2d9 PA:1c00b2d9 +75608818ns 1363914 1c000e82 fff60613 addi x12, x12, -1 x12=0000011e x12:0000011f +75608838ns 1363915 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2da x6:1c00b2d9 +75608858ns 1363916 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000011e +75608937ns 1363920 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2da PA:1c00b2da +75608957ns 1363921 1c000e82 fff60613 addi x12, x12, -1 x12=0000011d x12:0000011e +75608976ns 1363922 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2db x6:1c00b2da +75608996ns 1363923 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000011d +75609075ns 1363927 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2db PA:1c00b2db +75609095ns 1363928 1c000e82 fff60613 addi x12, x12, -1 x12=0000011c x12:0000011d +75609115ns 1363929 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2dc x6:1c00b2db +75609135ns 1363930 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000011c +75609214ns 1363934 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2dc PA:1c00b2dc +75609234ns 1363935 1c000e82 fff60613 addi x12, x12, -1 x12=0000011b x12:0000011c +75609253ns 1363936 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2dd x6:1c00b2dc +75609273ns 1363937 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000011b +75609352ns 1363941 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2dd PA:1c00b2dd +75609372ns 1363942 1c000e82 fff60613 addi x12, x12, -1 x12=0000011a x12:0000011b +75609392ns 1363943 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2de x6:1c00b2dd +75609412ns 1363944 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000011a +75609491ns 1363948 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2de PA:1c00b2de +75609511ns 1363949 1c000e82 fff60613 addi x12, x12, -1 x12=00000119 x12:0000011a +75609531ns 1363950 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2df x6:1c00b2de +75609550ns 1363951 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000119 +75609630ns 1363955 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2df PA:1c00b2df +75609649ns 1363956 1c000e82 fff60613 addi x12, x12, -1 x12=00000118 x12:00000119 +75609669ns 1363957 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2e0 x6:1c00b2df +75609689ns 1363958 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000118 +75609768ns 1363962 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2e0 PA:1c00b2e0 +75609788ns 1363963 1c000e82 fff60613 addi x12, x12, -1 x12=00000117 x12:00000118 +75609808ns 1363964 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2e1 x6:1c00b2e0 +75609827ns 1363965 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000117 +75609907ns 1363969 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2e1 PA:1c00b2e1 +75609926ns 1363970 1c000e82 fff60613 addi x12, x12, -1 x12=00000116 x12:00000117 +75609946ns 1363971 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2e2 x6:1c00b2e1 +75609966ns 1363972 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000116 +75610045ns 1363976 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2e2 PA:1c00b2e2 +75610065ns 1363977 1c000e82 fff60613 addi x12, x12, -1 x12=00000115 x12:00000116 +75610085ns 1363978 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2e3 x6:1c00b2e2 +75610105ns 1363979 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000115 +75610184ns 1363983 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2e3 PA:1c00b2e3 +75610203ns 1363984 1c000e82 fff60613 addi x12, x12, -1 x12=00000114 x12:00000115 +75610223ns 1363985 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2e4 x6:1c00b2e3 +75610243ns 1363986 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000114 +75610322ns 1363990 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2e4 PA:1c00b2e4 +75610342ns 1363991 1c000e82 fff60613 addi x12, x12, -1 x12=00000113 x12:00000114 +75610362ns 1363992 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2e5 x6:1c00b2e4 +75610382ns 1363993 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000113 +75610461ns 1363997 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2e5 PA:1c00b2e5 +75610481ns 1363998 1c000e82 fff60613 addi x12, x12, -1 x12=00000112 x12:00000113 +75610500ns 1363999 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2e6 x6:1c00b2e5 +75610520ns 1364000 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000112 +75610599ns 1364004 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2e6 PA:1c00b2e6 +75610619ns 1364005 1c000e82 fff60613 addi x12, x12, -1 x12=00000111 x12:00000112 +75610639ns 1364006 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2e7 x6:1c00b2e6 +75610659ns 1364007 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000111 +75610738ns 1364011 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2e7 PA:1c00b2e7 +75610758ns 1364012 1c000e82 fff60613 addi x12, x12, -1 x12=00000110 x12:00000111 +75610777ns 1364013 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2e8 x6:1c00b2e7 +75610797ns 1364014 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000110 +75610876ns 1364018 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2e8 PA:1c00b2e8 +75610896ns 1364019 1c000e82 fff60613 addi x12, x12, -1 x12=0000010f x12:00000110 +75610916ns 1364020 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2e9 x6:1c00b2e8 +75610936ns 1364021 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000010f +75611015ns 1364025 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2e9 PA:1c00b2e9 +75611035ns 1364026 1c000e82 fff60613 addi x12, x12, -1 x12=0000010e x12:0000010f +75611055ns 1364027 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2ea x6:1c00b2e9 +75611074ns 1364028 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000010e +75611153ns 1364032 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2ea PA:1c00b2ea +75611173ns 1364033 1c000e82 fff60613 addi x12, x12, -1 x12=0000010d x12:0000010e +75611193ns 1364034 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2eb x6:1c00b2ea +75611213ns 1364035 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000010d +75611292ns 1364039 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2eb PA:1c00b2eb +75611312ns 1364040 1c000e82 fff60613 addi x12, x12, -1 x12=0000010c x12:0000010d +75611332ns 1364041 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2ec x6:1c00b2eb +75611351ns 1364042 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000010c +75611431ns 1364046 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2ec PA:1c00b2ec +75611450ns 1364047 1c000e82 fff60613 addi x12, x12, -1 x12=0000010b x12:0000010c +75611470ns 1364048 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2ed x6:1c00b2ec +75611490ns 1364049 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000010b +75611569ns 1364053 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2ed PA:1c00b2ed +75611589ns 1364054 1c000e82 fff60613 addi x12, x12, -1 x12=0000010a x12:0000010b +75611609ns 1364055 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2ee x6:1c00b2ed +75611629ns 1364056 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000010a +75611708ns 1364060 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2ee PA:1c00b2ee +75611727ns 1364061 1c000e82 fff60613 addi x12, x12, -1 x12=00000109 x12:0000010a +75611747ns 1364062 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2ef x6:1c00b2ee +75611767ns 1364063 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000109 +75611846ns 1364067 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2ef PA:1c00b2ef +75611866ns 1364068 1c000e82 fff60613 addi x12, x12, -1 x12=00000108 x12:00000109 +75611886ns 1364069 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2f0 x6:1c00b2ef +75611906ns 1364070 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000108 +75611985ns 1364074 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2f0 PA:1c00b2f0 +75612005ns 1364075 1c000e82 fff60613 addi x12, x12, -1 x12=00000107 x12:00000108 +75612024ns 1364076 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2f1 x6:1c00b2f0 +75612044ns 1364077 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000107 +75612123ns 1364081 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2f1 PA:1c00b2f1 +75612143ns 1364082 1c000e82 fff60613 addi x12, x12, -1 x12=00000106 x12:00000107 +75612163ns 1364083 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2f2 x6:1c00b2f1 +75612183ns 1364084 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000106 +75612262ns 1364088 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2f2 PA:1c00b2f2 +75612282ns 1364089 1c000e82 fff60613 addi x12, x12, -1 x12=00000105 x12:00000106 +75612301ns 1364090 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2f3 x6:1c00b2f2 +75612321ns 1364091 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000105 +75612400ns 1364095 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2f3 PA:1c00b2f3 +75612420ns 1364096 1c000e82 fff60613 addi x12, x12, -1 x12=00000104 x12:00000105 +75612440ns 1364097 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2f4 x6:1c00b2f3 +75612460ns 1364098 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000104 +75612539ns 1364102 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2f4 PA:1c00b2f4 +75612559ns 1364103 1c000e82 fff60613 addi x12, x12, -1 x12=00000103 x12:00000104 +75612579ns 1364104 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2f5 x6:1c00b2f4 +75612598ns 1364105 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000103 +75612677ns 1364109 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2f5 PA:1c00b2f5 +75612697ns 1364110 1c000e82 fff60613 addi x12, x12, -1 x12=00000102 x12:00000103 +75612717ns 1364111 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2f6 x6:1c00b2f5 +75612737ns 1364112 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000102 +75612816ns 1364116 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2f6 PA:1c00b2f6 +75612836ns 1364117 1c000e82 fff60613 addi x12, x12, -1 x12=00000101 x12:00000102 +75612856ns 1364118 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2f7 x6:1c00b2f6 +75612875ns 1364119 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000101 +75612955ns 1364123 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2f7 PA:1c00b2f7 +75612974ns 1364124 1c000e82 fff60613 addi x12, x12, -1 x12=00000100 x12:00000101 +75612994ns 1364125 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2f8 x6:1c00b2f7 +75613014ns 1364126 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000100 +75613093ns 1364130 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2f8 PA:1c00b2f8 +75613113ns 1364131 1c000e82 fff60613 addi x12, x12, -1 x12=000000ff x12:00000100 +75613133ns 1364132 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2f9 x6:1c00b2f8 +75613152ns 1364133 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ff +75613232ns 1364137 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2f9 PA:1c00b2f9 +75613251ns 1364138 1c000e82 fff60613 addi x12, x12, -1 x12=000000fe x12:000000ff +75613271ns 1364139 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2fa x6:1c00b2f9 +75613291ns 1364140 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000fe +75613370ns 1364144 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2fa PA:1c00b2fa +75613390ns 1364145 1c000e82 fff60613 addi x12, x12, -1 x12=000000fd x12:000000fe +75613410ns 1364146 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2fb x6:1c00b2fa +75613430ns 1364147 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000fd +75613509ns 1364151 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2fb PA:1c00b2fb +75613529ns 1364152 1c000e82 fff60613 addi x12, x12, -1 x12=000000fc x12:000000fd +75613548ns 1364153 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2fc x6:1c00b2fb +75613568ns 1364154 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000fc +75613647ns 1364158 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2fc PA:1c00b2fc +75613667ns 1364159 1c000e82 fff60613 addi x12, x12, -1 x12=000000fb x12:000000fc +75613687ns 1364160 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2fd x6:1c00b2fc +75613707ns 1364161 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000fb +75613786ns 1364165 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2fd PA:1c00b2fd +75613806ns 1364166 1c000e82 fff60613 addi x12, x12, -1 x12=000000fa x12:000000fb +75613825ns 1364167 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2fe x6:1c00b2fd +75613845ns 1364168 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000fa +75613924ns 1364172 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2fe PA:1c00b2fe +75613944ns 1364173 1c000e82 fff60613 addi x12, x12, -1 x12=000000f9 x12:000000fa +75613964ns 1364174 1c000e84 00130313 addi x6, x6, 1 x6=1c00b2ff x6:1c00b2fe +75613984ns 1364175 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f9 +75614063ns 1364179 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b2ff PA:1c00b2ff +75614083ns 1364180 1c000e82 fff60613 addi x12, x12, -1 x12=000000f8 x12:000000f9 +75614103ns 1364181 1c000e84 00130313 addi x6, x6, 1 x6=1c00b300 x6:1c00b2ff +75614122ns 1364182 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f8 +75614201ns 1364186 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b300 PA:1c00b300 +75614221ns 1364187 1c000e82 fff60613 addi x12, x12, -1 x12=000000f7 x12:000000f8 +75614241ns 1364188 1c000e84 00130313 addi x6, x6, 1 x6=1c00b301 x6:1c00b300 +75614261ns 1364189 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f7 +75614340ns 1364193 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b301 PA:1c00b301 +75614360ns 1364194 1c000e82 fff60613 addi x12, x12, -1 x12=000000f6 x12:000000f7 +75614380ns 1364195 1c000e84 00130313 addi x6, x6, 1 x6=1c00b302 x6:1c00b301 +75614399ns 1364196 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f6 +75614479ns 1364200 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b302 PA:1c00b302 +75614498ns 1364201 1c000e82 fff60613 addi x12, x12, -1 x12=000000f5 x12:000000f6 +75614518ns 1364202 1c000e84 00130313 addi x6, x6, 1 x6=1c00b303 x6:1c00b302 +75614538ns 1364203 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f5 +75614617ns 1364207 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b303 PA:1c00b303 +75614637ns 1364208 1c000e82 fff60613 addi x12, x12, -1 x12=000000f4 x12:000000f5 +75614657ns 1364209 1c000e84 00130313 addi x6, x6, 1 x6=1c00b304 x6:1c00b303 +75614676ns 1364210 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f4 +75614756ns 1364214 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b304 PA:1c00b304 +75614775ns 1364215 1c000e82 fff60613 addi x12, x12, -1 x12=000000f3 x12:000000f4 +75614795ns 1364216 1c000e84 00130313 addi x6, x6, 1 x6=1c00b305 x6:1c00b304 +75614815ns 1364217 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f3 +75614894ns 1364221 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b305 PA:1c00b305 +75614914ns 1364222 1c000e82 fff60613 addi x12, x12, -1 x12=000000f2 x12:000000f3 +75614934ns 1364223 1c000e84 00130313 addi x6, x6, 1 x6=1c00b306 x6:1c00b305 +75614954ns 1364224 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f2 +75615033ns 1364228 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b306 PA:1c00b306 +75615053ns 1364229 1c000e82 fff60613 addi x12, x12, -1 x12=000000f1 x12:000000f2 +75615072ns 1364230 1c000e84 00130313 addi x6, x6, 1 x6=1c00b307 x6:1c00b306 +75615092ns 1364231 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f1 +75615171ns 1364235 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b307 PA:1c00b307 +75615191ns 1364236 1c000e82 fff60613 addi x12, x12, -1 x12=000000f0 x12:000000f1 +75615211ns 1364237 1c000e84 00130313 addi x6, x6, 1 x6=1c00b308 x6:1c00b307 +75615231ns 1364238 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f0 +75615310ns 1364242 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b308 PA:1c00b308 +75615330ns 1364243 1c000e82 fff60613 addi x12, x12, -1 x12=000000ef x12:000000f0 +75615349ns 1364244 1c000e84 00130313 addi x6, x6, 1 x6=1c00b309 x6:1c00b308 +75615369ns 1364245 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ef +75615448ns 1364249 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b309 PA:1c00b309 +75615468ns 1364250 1c000e82 fff60613 addi x12, x12, -1 x12=000000ee x12:000000ef +75615488ns 1364251 1c000e84 00130313 addi x6, x6, 1 x6=1c00b30a x6:1c00b309 +75615508ns 1364252 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ee +75615587ns 1364256 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b30a PA:1c00b30a +75615607ns 1364257 1c000e82 fff60613 addi x12, x12, -1 x12=000000ed x12:000000ee +75615626ns 1364258 1c000e84 00130313 addi x6, x6, 1 x6=1c00b30b x6:1c00b30a +75615646ns 1364259 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ed +75615725ns 1364263 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b30b PA:1c00b30b +75615745ns 1364264 1c000e82 fff60613 addi x12, x12, -1 x12=000000ec x12:000000ed +75615765ns 1364265 1c000e84 00130313 addi x6, x6, 1 x6=1c00b30c x6:1c00b30b +75615785ns 1364266 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ec +75615864ns 1364270 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b30c PA:1c00b30c +75615884ns 1364271 1c000e82 fff60613 addi x12, x12, -1 x12=000000eb x12:000000ec +75615904ns 1364272 1c000e84 00130313 addi x6, x6, 1 x6=1c00b30d x6:1c00b30c +75615923ns 1364273 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000eb +75616003ns 1364277 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b30d PA:1c00b30d +75616022ns 1364278 1c000e82 fff60613 addi x12, x12, -1 x12=000000ea x12:000000eb +75616042ns 1364279 1c000e84 00130313 addi x6, x6, 1 x6=1c00b30e x6:1c00b30d +75616062ns 1364280 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ea +75616141ns 1364284 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b30e PA:1c00b30e +75616161ns 1364285 1c000e82 fff60613 addi x12, x12, -1 x12=000000e9 x12:000000ea +75616181ns 1364286 1c000e84 00130313 addi x6, x6, 1 x6=1c00b30f x6:1c00b30e +75616200ns 1364287 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e9 +75616280ns 1364291 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b30f PA:1c00b30f +75616299ns 1364292 1c000e82 fff60613 addi x12, x12, -1 x12=000000e8 x12:000000e9 +75616319ns 1364293 1c000e84 00130313 addi x6, x6, 1 x6=1c00b310 x6:1c00b30f +75616339ns 1364294 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e8 +75616418ns 1364298 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b310 PA:1c00b310 +75616438ns 1364299 1c000e82 fff60613 addi x12, x12, -1 x12=000000e7 x12:000000e8 +75616458ns 1364300 1c000e84 00130313 addi x6, x6, 1 x6=1c00b311 x6:1c00b310 +75616478ns 1364301 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e7 +75616557ns 1364305 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b311 PA:1c00b311 +75616577ns 1364306 1c000e82 fff60613 addi x12, x12, -1 x12=000000e6 x12:000000e7 +75616596ns 1364307 1c000e84 00130313 addi x6, x6, 1 x6=1c00b312 x6:1c00b311 +75616616ns 1364308 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e6 +75616695ns 1364312 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b312 PA:1c00b312 +75616715ns 1364313 1c000e82 fff60613 addi x12, x12, -1 x12=000000e5 x12:000000e6 +75616735ns 1364314 1c000e84 00130313 addi x6, x6, 1 x6=1c00b313 x6:1c00b312 +75616755ns 1364315 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e5 +75616834ns 1364319 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b313 PA:1c00b313 +75616854ns 1364320 1c000e82 fff60613 addi x12, x12, -1 x12=000000e4 x12:000000e5 +75616873ns 1364321 1c000e84 00130313 addi x6, x6, 1 x6=1c00b314 x6:1c00b313 +75616893ns 1364322 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e4 +75616972ns 1364326 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b314 PA:1c00b314 +75616992ns 1364327 1c000e82 fff60613 addi x12, x12, -1 x12=000000e3 x12:000000e4 +75617012ns 1364328 1c000e84 00130313 addi x6, x6, 1 x6=1c00b315 x6:1c00b314 +75617032ns 1364329 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e3 +75617111ns 1364333 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b315 PA:1c00b315 +75617131ns 1364334 1c000e82 fff60613 addi x12, x12, -1 x12=000000e2 x12:000000e3 +75617150ns 1364335 1c000e84 00130313 addi x6, x6, 1 x6=1c00b316 x6:1c00b315 +75617170ns 1364336 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e2 +75617249ns 1364340 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b316 PA:1c00b316 +75617269ns 1364341 1c000e82 fff60613 addi x12, x12, -1 x12=000000e1 x12:000000e2 +75617289ns 1364342 1c000e84 00130313 addi x6, x6, 1 x6=1c00b317 x6:1c00b316 +75617309ns 1364343 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e1 +75617388ns 1364347 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b317 PA:1c00b317 +75617408ns 1364348 1c000e82 fff60613 addi x12, x12, -1 x12=000000e0 x12:000000e1 +75617428ns 1364349 1c000e84 00130313 addi x6, x6, 1 x6=1c00b318 x6:1c00b317 +75617447ns 1364350 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e0 +75617527ns 1364354 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b318 PA:1c00b318 +75617546ns 1364355 1c000e82 fff60613 addi x12, x12, -1 x12=000000df x12:000000e0 +75617566ns 1364356 1c000e84 00130313 addi x6, x6, 1 x6=1c00b319 x6:1c00b318 +75617586ns 1364357 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000df +75617665ns 1364361 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b319 PA:1c00b319 +75617685ns 1364362 1c000e82 fff60613 addi x12, x12, -1 x12=000000de x12:000000df +75617705ns 1364363 1c000e84 00130313 addi x6, x6, 1 x6=1c00b31a x6:1c00b319 +75617724ns 1364364 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000de +75617804ns 1364368 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b31a PA:1c00b31a +75617823ns 1364369 1c000e82 fff60613 addi x12, x12, -1 x12=000000dd x12:000000de +75617843ns 1364370 1c000e84 00130313 addi x6, x6, 1 x6=1c00b31b x6:1c00b31a +75617863ns 1364371 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000dd +75617942ns 1364375 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b31b PA:1c00b31b +75617962ns 1364376 1c000e82 fff60613 addi x12, x12, -1 x12=000000dc x12:000000dd +75617982ns 1364377 1c000e84 00130313 addi x6, x6, 1 x6=1c00b31c x6:1c00b31b +75618002ns 1364378 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000dc +75618081ns 1364382 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b31c PA:1c00b31c +75618100ns 1364383 1c000e82 fff60613 addi x12, x12, -1 x12=000000db x12:000000dc +75618120ns 1364384 1c000e84 00130313 addi x6, x6, 1 x6=1c00b31d x6:1c00b31c +75618140ns 1364385 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000db +75618219ns 1364389 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b31d PA:1c00b31d +75618239ns 1364390 1c000e82 fff60613 addi x12, x12, -1 x12=000000da x12:000000db +75618259ns 1364391 1c000e84 00130313 addi x6, x6, 1 x6=1c00b31e x6:1c00b31d +75618279ns 1364392 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000da +75618358ns 1364396 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b31e PA:1c00b31e +75618378ns 1364397 1c000e82 fff60613 addi x12, x12, -1 x12=000000d9 x12:000000da +75618397ns 1364398 1c000e84 00130313 addi x6, x6, 1 x6=1c00b31f x6:1c00b31e +75618417ns 1364399 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d9 +75618496ns 1364403 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b31f PA:1c00b31f +75618516ns 1364404 1c000e82 fff60613 addi x12, x12, -1 x12=000000d8 x12:000000d9 +75618536ns 1364405 1c000e84 00130313 addi x6, x6, 1 x6=1c00b320 x6:1c00b31f +75618556ns 1364406 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d8 +75618635ns 1364410 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b320 PA:1c00b320 +75618655ns 1364411 1c000e82 fff60613 addi x12, x12, -1 x12=000000d7 x12:000000d8 +75618674ns 1364412 1c000e84 00130313 addi x6, x6, 1 x6=1c00b321 x6:1c00b320 +75618694ns 1364413 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d7 +75618773ns 1364417 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b321 PA:1c00b321 +75618793ns 1364418 1c000e82 fff60613 addi x12, x12, -1 x12=000000d6 x12:000000d7 +75618813ns 1364419 1c000e84 00130313 addi x6, x6, 1 x6=1c00b322 x6:1c00b321 +75618833ns 1364420 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d6 +75618912ns 1364424 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b322 PA:1c00b322 +75618932ns 1364425 1c000e82 fff60613 addi x12, x12, -1 x12=000000d5 x12:000000d6 +75618952ns 1364426 1c000e84 00130313 addi x6, x6, 1 x6=1c00b323 x6:1c00b322 +75618971ns 1364427 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d5 +75619051ns 1364431 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b323 PA:1c00b323 +75619070ns 1364432 1c000e82 fff60613 addi x12, x12, -1 x12=000000d4 x12:000000d5 +75619090ns 1364433 1c000e84 00130313 addi x6, x6, 1 x6=1c00b324 x6:1c00b323 +75619110ns 1364434 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d4 +75619189ns 1364438 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b324 PA:1c00b324 +75619209ns 1364439 1c000e82 fff60613 addi x12, x12, -1 x12=000000d3 x12:000000d4 +75619229ns 1364440 1c000e84 00130313 addi x6, x6, 1 x6=1c00b325 x6:1c00b324 +75619248ns 1364441 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d3 +75619328ns 1364445 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b325 PA:1c00b325 +75619347ns 1364446 1c000e82 fff60613 addi x12, x12, -1 x12=000000d2 x12:000000d3 +75619367ns 1364447 1c000e84 00130313 addi x6, x6, 1 x6=1c00b326 x6:1c00b325 +75619387ns 1364448 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d2 +75619466ns 1364452 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b326 PA:1c00b326 +75619486ns 1364453 1c000e82 fff60613 addi x12, x12, -1 x12=000000d1 x12:000000d2 +75619506ns 1364454 1c000e84 00130313 addi x6, x6, 1 x6=1c00b327 x6:1c00b326 +75619526ns 1364455 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d1 +75619605ns 1364459 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b327 PA:1c00b327 +75619624ns 1364460 1c000e82 fff60613 addi x12, x12, -1 x12=000000d0 x12:000000d1 +75619644ns 1364461 1c000e84 00130313 addi x6, x6, 1 x6=1c00b328 x6:1c00b327 +75619664ns 1364462 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d0 +75619743ns 1364466 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b328 PA:1c00b328 +75619763ns 1364467 1c000e82 fff60613 addi x12, x12, -1 x12=000000cf x12:000000d0 +75619783ns 1364468 1c000e84 00130313 addi x6, x6, 1 x6=1c00b329 x6:1c00b328 +75619803ns 1364469 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000cf +75619882ns 1364473 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b329 PA:1c00b329 +75619902ns 1364474 1c000e82 fff60613 addi x12, x12, -1 x12=000000ce x12:000000cf +75619921ns 1364475 1c000e84 00130313 addi x6, x6, 1 x6=1c00b32a x6:1c00b329 +75619941ns 1364476 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ce +75620020ns 1364480 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b32a PA:1c00b32a +75620040ns 1364481 1c000e82 fff60613 addi x12, x12, -1 x12=000000cd x12:000000ce +75620060ns 1364482 1c000e84 00130313 addi x6, x6, 1 x6=1c00b32b x6:1c00b32a +75620080ns 1364483 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000cd +75620159ns 1364487 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b32b PA:1c00b32b +75620179ns 1364488 1c000e82 fff60613 addi x12, x12, -1 x12=000000cc x12:000000cd +75620198ns 1364489 1c000e84 00130313 addi x6, x6, 1 x6=1c00b32c x6:1c00b32b +75620218ns 1364490 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000cc +75620297ns 1364494 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b32c PA:1c00b32c +75620317ns 1364495 1c000e82 fff60613 addi x12, x12, -1 x12=000000cb x12:000000cc +75620337ns 1364496 1c000e84 00130313 addi x6, x6, 1 x6=1c00b32d x6:1c00b32c +75620357ns 1364497 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000cb +75620436ns 1364501 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b32d PA:1c00b32d +75620456ns 1364502 1c000e82 fff60613 addi x12, x12, -1 x12=000000ca x12:000000cb +75620476ns 1364503 1c000e84 00130313 addi x6, x6, 1 x6=1c00b32e x6:1c00b32d +75620495ns 1364504 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ca +75620574ns 1364508 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b32e PA:1c00b32e +75620594ns 1364509 1c000e82 fff60613 addi x12, x12, -1 x12=000000c9 x12:000000ca +75620614ns 1364510 1c000e84 00130313 addi x6, x6, 1 x6=1c00b32f x6:1c00b32e +75620634ns 1364511 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c9 +75620713ns 1364515 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b32f PA:1c00b32f +75620733ns 1364516 1c000e82 fff60613 addi x12, x12, -1 x12=000000c8 x12:000000c9 +75620753ns 1364517 1c000e84 00130313 addi x6, x6, 1 x6=1c00b330 x6:1c00b32f +75620772ns 1364518 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c8 +75620852ns 1364522 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b330 PA:1c00b330 +75620871ns 1364523 1c000e82 fff60613 addi x12, x12, -1 x12=000000c7 x12:000000c8 +75620891ns 1364524 1c000e84 00130313 addi x6, x6, 1 x6=1c00b331 x6:1c00b330 +75620911ns 1364525 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c7 +75620990ns 1364529 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b331 PA:1c00b331 +75621010ns 1364530 1c000e82 fff60613 addi x12, x12, -1 x12=000000c6 x12:000000c7 +75621030ns 1364531 1c000e84 00130313 addi x6, x6, 1 x6=1c00b332 x6:1c00b331 +75621049ns 1364532 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c6 +75621129ns 1364536 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b332 PA:1c00b332 +75621148ns 1364537 1c000e82 fff60613 addi x12, x12, -1 x12=000000c5 x12:000000c6 +75621168ns 1364538 1c000e84 00130313 addi x6, x6, 1 x6=1c00b333 x6:1c00b332 +75621188ns 1364539 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c5 +75621267ns 1364543 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b333 PA:1c00b333 +75621287ns 1364544 1c000e82 fff60613 addi x12, x12, -1 x12=000000c4 x12:000000c5 +75621307ns 1364545 1c000e84 00130313 addi x6, x6, 1 x6=1c00b334 x6:1c00b333 +75621327ns 1364546 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c4 +75621406ns 1364550 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b334 PA:1c00b334 +75621426ns 1364551 1c000e82 fff60613 addi x12, x12, -1 x12=000000c3 x12:000000c4 +75621445ns 1364552 1c000e84 00130313 addi x6, x6, 1 x6=1c00b335 x6:1c00b334 +75621465ns 1364553 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c3 +75621544ns 1364557 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b335 PA:1c00b335 +75621564ns 1364558 1c000e82 fff60613 addi x12, x12, -1 x12=000000c2 x12:000000c3 +75621584ns 1364559 1c000e84 00130313 addi x6, x6, 1 x6=1c00b336 x6:1c00b335 +75621604ns 1364560 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c2 +75621683ns 1364564 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b336 PA:1c00b336 +75621703ns 1364565 1c000e82 fff60613 addi x12, x12, -1 x12=000000c1 x12:000000c2 +75621722ns 1364566 1c000e84 00130313 addi x6, x6, 1 x6=1c00b337 x6:1c00b336 +75621742ns 1364567 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c1 +75621821ns 1364571 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b337 PA:1c00b337 +75621841ns 1364572 1c000e82 fff60613 addi x12, x12, -1 x12=000000c0 x12:000000c1 +75621861ns 1364573 1c000e84 00130313 addi x6, x6, 1 x6=1c00b338 x6:1c00b337 +75621881ns 1364574 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c0 +75621960ns 1364578 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b338 PA:1c00b338 +75621980ns 1364579 1c000e82 fff60613 addi x12, x12, -1 x12=000000bf x12:000000c0 +75622000ns 1364580 1c000e84 00130313 addi x6, x6, 1 x6=1c00b339 x6:1c00b338 +75622019ns 1364581 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000bf +75622098ns 1364585 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b339 PA:1c00b339 +75622118ns 1364586 1c000e82 fff60613 addi x12, x12, -1 x12=000000be x12:000000bf +75622138ns 1364587 1c000e84 00130313 addi x6, x6, 1 x6=1c00b33a x6:1c00b339 +75622158ns 1364588 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000be +75622237ns 1364592 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b33a PA:1c00b33a +75622257ns 1364593 1c000e82 fff60613 addi x12, x12, -1 x12=000000bd x12:000000be +75622277ns 1364594 1c000e84 00130313 addi x6, x6, 1 x6=1c00b33b x6:1c00b33a +75622296ns 1364595 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000bd +75622376ns 1364599 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b33b PA:1c00b33b +75622395ns 1364600 1c000e82 fff60613 addi x12, x12, -1 x12=000000bc x12:000000bd +75622415ns 1364601 1c000e84 00130313 addi x6, x6, 1 x6=1c00b33c x6:1c00b33b +75622435ns 1364602 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000bc +75622514ns 1364606 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b33c PA:1c00b33c +75622534ns 1364607 1c000e82 fff60613 addi x12, x12, -1 x12=000000bb x12:000000bc +75622554ns 1364608 1c000e84 00130313 addi x6, x6, 1 x6=1c00b33d x6:1c00b33c +75622573ns 1364609 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000bb +75622653ns 1364613 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b33d PA:1c00b33d +75622672ns 1364614 1c000e82 fff60613 addi x12, x12, -1 x12=000000ba x12:000000bb +75622692ns 1364615 1c000e84 00130313 addi x6, x6, 1 x6=1c00b33e x6:1c00b33d +75622712ns 1364616 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ba +75622791ns 1364620 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b33e PA:1c00b33e +75622811ns 1364621 1c000e82 fff60613 addi x12, x12, -1 x12=000000b9 x12:000000ba +75622831ns 1364622 1c000e84 00130313 addi x6, x6, 1 x6=1c00b33f x6:1c00b33e +75622851ns 1364623 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b9 +75622930ns 1364627 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b33f PA:1c00b33f +75622950ns 1364628 1c000e82 fff60613 addi x12, x12, -1 x12=000000b8 x12:000000b9 +75622969ns 1364629 1c000e84 00130313 addi x6, x6, 1 x6=1c00b340 x6:1c00b33f +75622989ns 1364630 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b8 +75623068ns 1364634 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b340 PA:1c00b340 +75623088ns 1364635 1c000e82 fff60613 addi x12, x12, -1 x12=000000b7 x12:000000b8 +75623108ns 1364636 1c000e84 00130313 addi x6, x6, 1 x6=1c00b341 x6:1c00b340 +75623128ns 1364637 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b7 +75623207ns 1364641 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b341 PA:1c00b341 +75623227ns 1364642 1c000e82 fff60613 addi x12, x12, -1 x12=000000b6 x12:000000b7 +75623246ns 1364643 1c000e84 00130313 addi x6, x6, 1 x6=1c00b342 x6:1c00b341 +75623266ns 1364644 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b6 +75623345ns 1364648 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b342 PA:1c00b342 +75623365ns 1364649 1c000e82 fff60613 addi x12, x12, -1 x12=000000b5 x12:000000b6 +75623385ns 1364650 1c000e84 00130313 addi x6, x6, 1 x6=1c00b343 x6:1c00b342 +75623405ns 1364651 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b5 +75623484ns 1364655 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b343 PA:1c00b343 +75623504ns 1364656 1c000e82 fff60613 addi x12, x12, -1 x12=000000b4 x12:000000b5 +75623523ns 1364657 1c000e84 00130313 addi x6, x6, 1 x6=1c00b344 x6:1c00b343 +75623543ns 1364658 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b4 +75623622ns 1364662 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b344 PA:1c00b344 +75623642ns 1364663 1c000e82 fff60613 addi x12, x12, -1 x12=000000b3 x12:000000b4 +75623662ns 1364664 1c000e84 00130313 addi x6, x6, 1 x6=1c00b345 x6:1c00b344 +75623682ns 1364665 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b3 +75623761ns 1364669 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b345 PA:1c00b345 +75623781ns 1364670 1c000e82 fff60613 addi x12, x12, -1 x12=000000b2 x12:000000b3 +75623801ns 1364671 1c000e84 00130313 addi x6, x6, 1 x6=1c00b346 x6:1c00b345 +75623820ns 1364672 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b2 +75623900ns 1364676 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b346 PA:1c00b346 +75623919ns 1364677 1c000e82 fff60613 addi x12, x12, -1 x12=000000b1 x12:000000b2 +75623939ns 1364678 1c000e84 00130313 addi x6, x6, 1 x6=1c00b347 x6:1c00b346 +75623959ns 1364679 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b1 +75624038ns 1364683 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b347 PA:1c00b347 +75624058ns 1364684 1c000e82 fff60613 addi x12, x12, -1 x12=000000b0 x12:000000b1 +75624078ns 1364685 1c000e84 00130313 addi x6, x6, 1 x6=1c00b348 x6:1c00b347 +75624097ns 1364686 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b0 +75624177ns 1364690 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b348 PA:1c00b348 +75624196ns 1364691 1c000e82 fff60613 addi x12, x12, -1 x12=000000af x12:000000b0 +75624216ns 1364692 1c000e84 00130313 addi x6, x6, 1 x6=1c00b349 x6:1c00b348 +75624236ns 1364693 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000af +75624315ns 1364697 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b349 PA:1c00b349 +75624335ns 1364698 1c000e82 fff60613 addi x12, x12, -1 x12=000000ae x12:000000af +75624355ns 1364699 1c000e84 00130313 addi x6, x6, 1 x6=1c00b34a x6:1c00b349 +75624375ns 1364700 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ae +75624454ns 1364704 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b34a PA:1c00b34a +75624474ns 1364705 1c000e82 fff60613 addi x12, x12, -1 x12=000000ad x12:000000ae +75624493ns 1364706 1c000e84 00130313 addi x6, x6, 1 x6=1c00b34b x6:1c00b34a +75624513ns 1364707 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ad +75624592ns 1364711 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b34b PA:1c00b34b +75624612ns 1364712 1c000e82 fff60613 addi x12, x12, -1 x12=000000ac x12:000000ad +75624632ns 1364713 1c000e84 00130313 addi x6, x6, 1 x6=1c00b34c x6:1c00b34b +75624652ns 1364714 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ac +75624731ns 1364718 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b34c PA:1c00b34c +75624751ns 1364719 1c000e82 fff60613 addi x12, x12, -1 x12=000000ab x12:000000ac +75624770ns 1364720 1c000e84 00130313 addi x6, x6, 1 x6=1c00b34d x6:1c00b34c +75624790ns 1364721 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ab +75624869ns 1364725 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b34d PA:1c00b34d +75624889ns 1364726 1c000e82 fff60613 addi x12, x12, -1 x12=000000aa x12:000000ab +75624909ns 1364727 1c000e84 00130313 addi x6, x6, 1 x6=1c00b34e x6:1c00b34d +75624929ns 1364728 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000aa +75625008ns 1364732 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b34e PA:1c00b34e +75625028ns 1364733 1c000e82 fff60613 addi x12, x12, -1 x12=000000a9 x12:000000aa +75625047ns 1364734 1c000e84 00130313 addi x6, x6, 1 x6=1c00b34f x6:1c00b34e +75625067ns 1364735 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a9 +75625146ns 1364739 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b34f PA:1c00b34f +75625166ns 1364740 1c000e82 fff60613 addi x12, x12, -1 x12=000000a8 x12:000000a9 +75625186ns 1364741 1c000e84 00130313 addi x6, x6, 1 x6=1c00b350 x6:1c00b34f +75625206ns 1364742 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a8 +75625285ns 1364746 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b350 PA:1c00b350 +75625305ns 1364747 1c000e82 fff60613 addi x12, x12, -1 x12=000000a7 x12:000000a8 +75625325ns 1364748 1c000e84 00130313 addi x6, x6, 1 x6=1c00b351 x6:1c00b350 +75625344ns 1364749 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a7 +75625424ns 1364753 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b351 PA:1c00b351 +75625443ns 1364754 1c000e82 fff60613 addi x12, x12, -1 x12=000000a6 x12:000000a7 +75625463ns 1364755 1c000e84 00130313 addi x6, x6, 1 x6=1c00b352 x6:1c00b351 +75625483ns 1364756 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a6 +75625562ns 1364760 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b352 PA:1c00b352 +75625582ns 1364761 1c000e82 fff60613 addi x12, x12, -1 x12=000000a5 x12:000000a6 +75625602ns 1364762 1c000e84 00130313 addi x6, x6, 1 x6=1c00b353 x6:1c00b352 +75625621ns 1364763 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a5 +75625701ns 1364767 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b353 PA:1c00b353 +75625720ns 1364768 1c000e82 fff60613 addi x12, x12, -1 x12=000000a4 x12:000000a5 +75625740ns 1364769 1c000e84 00130313 addi x6, x6, 1 x6=1c00b354 x6:1c00b353 +75625760ns 1364770 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a4 +75625839ns 1364774 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b354 PA:1c00b354 +75625859ns 1364775 1c000e82 fff60613 addi x12, x12, -1 x12=000000a3 x12:000000a4 +75625879ns 1364776 1c000e84 00130313 addi x6, x6, 1 x6=1c00b355 x6:1c00b354 +75625899ns 1364777 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a3 +75625978ns 1364781 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b355 PA:1c00b355 +75625997ns 1364782 1c000e82 fff60613 addi x12, x12, -1 x12=000000a2 x12:000000a3 +75626017ns 1364783 1c000e84 00130313 addi x6, x6, 1 x6=1c00b356 x6:1c00b355 +75626037ns 1364784 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a2 +75626116ns 1364788 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b356 PA:1c00b356 +75626136ns 1364789 1c000e82 fff60613 addi x12, x12, -1 x12=000000a1 x12:000000a2 +75626156ns 1364790 1c000e84 00130313 addi x6, x6, 1 x6=1c00b357 x6:1c00b356 +75626176ns 1364791 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a1 +75626255ns 1364795 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b357 PA:1c00b357 +75626275ns 1364796 1c000e82 fff60613 addi x12, x12, -1 x12=000000a0 x12:000000a1 +75626294ns 1364797 1c000e84 00130313 addi x6, x6, 1 x6=1c00b358 x6:1c00b357 +75626314ns 1364798 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a0 +75626393ns 1364802 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b358 PA:1c00b358 +75626413ns 1364803 1c000e82 fff60613 addi x12, x12, -1 x12=0000009f x12:000000a0 +75626433ns 1364804 1c000e84 00130313 addi x6, x6, 1 x6=1c00b359 x6:1c00b358 +75626453ns 1364805 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000009f +75626532ns 1364809 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b359 PA:1c00b359 +75626552ns 1364810 1c000e82 fff60613 addi x12, x12, -1 x12=0000009e x12:0000009f +75626571ns 1364811 1c000e84 00130313 addi x6, x6, 1 x6=1c00b35a x6:1c00b359 +75626591ns 1364812 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000009e +75626670ns 1364816 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b35a PA:1c00b35a +75626690ns 1364817 1c000e82 fff60613 addi x12, x12, -1 x12=0000009d x12:0000009e +75626710ns 1364818 1c000e84 00130313 addi x6, x6, 1 x6=1c00b35b x6:1c00b35a +75626730ns 1364819 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000009d +75626809ns 1364823 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b35b PA:1c00b35b +75626829ns 1364824 1c000e82 fff60613 addi x12, x12, -1 x12=0000009c x12:0000009d +75626849ns 1364825 1c000e84 00130313 addi x6, x6, 1 x6=1c00b35c x6:1c00b35b +75626868ns 1364826 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000009c +75626948ns 1364830 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b35c PA:1c00b35c +75626967ns 1364831 1c000e82 fff60613 addi x12, x12, -1 x12=0000009b x12:0000009c +75626987ns 1364832 1c000e84 00130313 addi x6, x6, 1 x6=1c00b35d x6:1c00b35c +75627007ns 1364833 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000009b +75627086ns 1364837 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b35d PA:1c00b35d +75627106ns 1364838 1c000e82 fff60613 addi x12, x12, -1 x12=0000009a x12:0000009b +75627126ns 1364839 1c000e84 00130313 addi x6, x6, 1 x6=1c00b35e x6:1c00b35d +75627145ns 1364840 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000009a +75627225ns 1364844 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b35e PA:1c00b35e +75627244ns 1364845 1c000e82 fff60613 addi x12, x12, -1 x12=00000099 x12:0000009a +75627264ns 1364846 1c000e84 00130313 addi x6, x6, 1 x6=1c00b35f x6:1c00b35e +75627284ns 1364847 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000099 +75627363ns 1364851 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b35f PA:1c00b35f +75627383ns 1364852 1c000e82 fff60613 addi x12, x12, -1 x12=00000098 x12:00000099 +75627403ns 1364853 1c000e84 00130313 addi x6, x6, 1 x6=1c00b360 x6:1c00b35f +75627423ns 1364854 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000098 +75627502ns 1364858 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b360 PA:1c00b360 +75627521ns 1364859 1c000e82 fff60613 addi x12, x12, -1 x12=00000097 x12:00000098 +75627541ns 1364860 1c000e84 00130313 addi x6, x6, 1 x6=1c00b361 x6:1c00b360 +75627561ns 1364861 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000097 +75627640ns 1364865 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b361 PA:1c00b361 +75627660ns 1364866 1c000e82 fff60613 addi x12, x12, -1 x12=00000096 x12:00000097 +75627680ns 1364867 1c000e84 00130313 addi x6, x6, 1 x6=1c00b362 x6:1c00b361 +75627700ns 1364868 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000096 +75627779ns 1364872 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b362 PA:1c00b362 +75627799ns 1364873 1c000e82 fff60613 addi x12, x12, -1 x12=00000095 x12:00000096 +75627818ns 1364874 1c000e84 00130313 addi x6, x6, 1 x6=1c00b363 x6:1c00b362 +75627838ns 1364875 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000095 +75627917ns 1364879 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b363 PA:1c00b363 +75627937ns 1364880 1c000e82 fff60613 addi x12, x12, -1 x12=00000094 x12:00000095 +75627957ns 1364881 1c000e84 00130313 addi x6, x6, 1 x6=1c00b364 x6:1c00b363 +75627977ns 1364882 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000094 +75628056ns 1364886 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b364 PA:1c00b364 +75628076ns 1364887 1c000e82 fff60613 addi x12, x12, -1 x12=00000093 x12:00000094 +75628095ns 1364888 1c000e84 00130313 addi x6, x6, 1 x6=1c00b365 x6:1c00b364 +75628115ns 1364889 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000093 +75628194ns 1364893 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b365 PA:1c00b365 +75628214ns 1364894 1c000e82 fff60613 addi x12, x12, -1 x12=00000092 x12:00000093 +75628234ns 1364895 1c000e84 00130313 addi x6, x6, 1 x6=1c00b366 x6:1c00b365 +75628254ns 1364896 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000092 +75628333ns 1364900 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b366 PA:1c00b366 +75628353ns 1364901 1c000e82 fff60613 addi x12, x12, -1 x12=00000091 x12:00000092 +75628373ns 1364902 1c000e84 00130313 addi x6, x6, 1 x6=1c00b367 x6:1c00b366 +75628392ns 1364903 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000091 +75628471ns 1364907 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b367 PA:1c00b367 +75628491ns 1364908 1c000e82 fff60613 addi x12, x12, -1 x12=00000090 x12:00000091 +75628511ns 1364909 1c000e84 00130313 addi x6, x6, 1 x6=1c00b368 x6:1c00b367 +75628531ns 1364910 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000090 +75628610ns 1364914 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b368 PA:1c00b368 +75628630ns 1364915 1c000e82 fff60613 addi x12, x12, -1 x12=0000008f x12:00000090 +75628650ns 1364916 1c000e84 00130313 addi x6, x6, 1 x6=1c00b369 x6:1c00b368 +75628669ns 1364917 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000008f +75628749ns 1364921 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b369 PA:1c00b369 +75628768ns 1364922 1c000e82 fff60613 addi x12, x12, -1 x12=0000008e x12:0000008f +75628788ns 1364923 1c000e84 00130313 addi x6, x6, 1 x6=1c00b36a x6:1c00b369 +75628808ns 1364924 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000008e +75628887ns 1364928 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b36a PA:1c00b36a +75628907ns 1364929 1c000e82 fff60613 addi x12, x12, -1 x12=0000008d x12:0000008e +75628927ns 1364930 1c000e84 00130313 addi x6, x6, 1 x6=1c00b36b x6:1c00b36a +75628947ns 1364931 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000008d +75629026ns 1364935 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b36b PA:1c00b36b +75629045ns 1364936 1c000e82 fff60613 addi x12, x12, -1 x12=0000008c x12:0000008d +75629065ns 1364937 1c000e84 00130313 addi x6, x6, 1 x6=1c00b36c x6:1c00b36b +75629085ns 1364938 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000008c +75629164ns 1364942 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b36c PA:1c00b36c +75629184ns 1364943 1c000e82 fff60613 addi x12, x12, -1 x12=0000008b x12:0000008c +75629204ns 1364944 1c000e84 00130313 addi x6, x6, 1 x6=1c00b36d x6:1c00b36c +75629224ns 1364945 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000008b +75629303ns 1364949 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b36d PA:1c00b36d +75629323ns 1364950 1c000e82 fff60613 addi x12, x12, -1 x12=0000008a x12:0000008b +75629342ns 1364951 1c000e84 00130313 addi x6, x6, 1 x6=1c00b36e x6:1c00b36d +75629362ns 1364952 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000008a +75629441ns 1364956 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b36e PA:1c00b36e +75629461ns 1364957 1c000e82 fff60613 addi x12, x12, -1 x12=00000089 x12:0000008a +75629481ns 1364958 1c000e84 00130313 addi x6, x6, 1 x6=1c00b36f x6:1c00b36e +75629501ns 1364959 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000089 +75629580ns 1364963 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b36f PA:1c00b36f +75629600ns 1364964 1c000e82 fff60613 addi x12, x12, -1 x12=00000088 x12:00000089 +75629619ns 1364965 1c000e84 00130313 addi x6, x6, 1 x6=1c00b370 x6:1c00b36f +75629639ns 1364966 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000088 +75629718ns 1364970 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b370 PA:1c00b370 +75629738ns 1364971 1c000e82 fff60613 addi x12, x12, -1 x12=00000087 x12:00000088 +75629758ns 1364972 1c000e84 00130313 addi x6, x6, 1 x6=1c00b371 x6:1c00b370 +75629778ns 1364973 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000087 +75629857ns 1364977 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b371 PA:1c00b371 +75629877ns 1364978 1c000e82 fff60613 addi x12, x12, -1 x12=00000086 x12:00000087 +75629897ns 1364979 1c000e84 00130313 addi x6, x6, 1 x6=1c00b372 x6:1c00b371 +75629916ns 1364980 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000086 +75629995ns 1364984 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b372 PA:1c00b372 +75630015ns 1364985 1c000e82 fff60613 addi x12, x12, -1 x12=00000085 x12:00000086 +75630035ns 1364986 1c000e84 00130313 addi x6, x6, 1 x6=1c00b373 x6:1c00b372 +75630055ns 1364987 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000085 +75630134ns 1364991 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b373 PA:1c00b373 +75630154ns 1364992 1c000e82 fff60613 addi x12, x12, -1 x12=00000084 x12:00000085 +75630174ns 1364993 1c000e84 00130313 addi x6, x6, 1 x6=1c00b374 x6:1c00b373 +75630193ns 1364994 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000084 +75630273ns 1364998 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b374 PA:1c00b374 +75630292ns 1364999 1c000e82 fff60613 addi x12, x12, -1 x12=00000083 x12:00000084 +75630312ns 1365000 1c000e84 00130313 addi x6, x6, 1 x6=1c00b375 x6:1c00b374 +75630332ns 1365001 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000083 +75630411ns 1365005 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b375 PA:1c00b375 +75630431ns 1365006 1c000e82 fff60613 addi x12, x12, -1 x12=00000082 x12:00000083 +75630451ns 1365007 1c000e84 00130313 addi x6, x6, 1 x6=1c00b376 x6:1c00b375 +75630470ns 1365008 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000082 +75630550ns 1365012 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b376 PA:1c00b376 +75630569ns 1365013 1c000e82 fff60613 addi x12, x12, -1 x12=00000081 x12:00000082 +75630589ns 1365014 1c000e84 00130313 addi x6, x6, 1 x6=1c00b377 x6:1c00b376 +75630609ns 1365015 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000081 +75630688ns 1365019 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b377 PA:1c00b377 +75630708ns 1365020 1c000e82 fff60613 addi x12, x12, -1 x12=00000080 x12:00000081 +75630728ns 1365021 1c000e84 00130313 addi x6, x6, 1 x6=1c00b378 x6:1c00b377 +75630748ns 1365022 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000080 +75630827ns 1365026 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b378 PA:1c00b378 +75630847ns 1365027 1c000e82 fff60613 addi x12, x12, -1 x12=0000007f x12:00000080 +75630866ns 1365028 1c000e84 00130313 addi x6, x6, 1 x6=1c00b379 x6:1c00b378 +75630886ns 1365029 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000007f +75630965ns 1365033 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b379 PA:1c00b379 +75630985ns 1365034 1c000e82 fff60613 addi x12, x12, -1 x12=0000007e x12:0000007f +75631005ns 1365035 1c000e84 00130313 addi x6, x6, 1 x6=1c00b37a x6:1c00b379 +75631025ns 1365036 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000007e +75631104ns 1365040 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b37a PA:1c00b37a +75631124ns 1365041 1c000e82 fff60613 addi x12, x12, -1 x12=0000007d x12:0000007e +75631143ns 1365042 1c000e84 00130313 addi x6, x6, 1 x6=1c00b37b x6:1c00b37a +75631163ns 1365043 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000007d +75631242ns 1365047 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b37b PA:1c00b37b +75631262ns 1365048 1c000e82 fff60613 addi x12, x12, -1 x12=0000007c x12:0000007d +75631282ns 1365049 1c000e84 00130313 addi x6, x6, 1 x6=1c00b37c x6:1c00b37b +75631302ns 1365050 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000007c +75631381ns 1365054 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b37c PA:1c00b37c +75631401ns 1365055 1c000e82 fff60613 addi x12, x12, -1 x12=0000007b x12:0000007c +75631421ns 1365056 1c000e84 00130313 addi x6, x6, 1 x6=1c00b37d x6:1c00b37c +75631440ns 1365057 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000007b +75631519ns 1365061 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b37d PA:1c00b37d +75631539ns 1365062 1c000e82 fff60613 addi x12, x12, -1 x12=0000007a x12:0000007b +75631559ns 1365063 1c000e84 00130313 addi x6, x6, 1 x6=1c00b37e x6:1c00b37d +75631579ns 1365064 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000007a +75631658ns 1365068 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b37e PA:1c00b37e +75631678ns 1365069 1c000e82 fff60613 addi x12, x12, -1 x12=00000079 x12:0000007a +75631698ns 1365070 1c000e84 00130313 addi x6, x6, 1 x6=1c00b37f x6:1c00b37e +75631717ns 1365071 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000079 +75631797ns 1365075 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b37f PA:1c00b37f +75631816ns 1365076 1c000e82 fff60613 addi x12, x12, -1 x12=00000078 x12:00000079 +75631836ns 1365077 1c000e84 00130313 addi x6, x6, 1 x6=1c00b380 x6:1c00b37f +75631856ns 1365078 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000078 +75631935ns 1365082 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b380 PA:1c00b380 +75631955ns 1365083 1c000e82 fff60613 addi x12, x12, -1 x12=00000077 x12:00000078 +75631975ns 1365084 1c000e84 00130313 addi x6, x6, 1 x6=1c00b381 x6:1c00b380 +75631994ns 1365085 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000077 +75632074ns 1365089 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b381 PA:1c00b381 +75632093ns 1365090 1c000e82 fff60613 addi x12, x12, -1 x12=00000076 x12:00000077 +75632113ns 1365091 1c000e84 00130313 addi x6, x6, 1 x6=1c00b382 x6:1c00b381 +75632133ns 1365092 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000076 +75632212ns 1365096 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b382 PA:1c00b382 +75632232ns 1365097 1c000e82 fff60613 addi x12, x12, -1 x12=00000075 x12:00000076 +75632252ns 1365098 1c000e84 00130313 addi x6, x6, 1 x6=1c00b383 x6:1c00b382 +75632272ns 1365099 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000075 +75632351ns 1365103 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b383 PA:1c00b383 +75632371ns 1365104 1c000e82 fff60613 addi x12, x12, -1 x12=00000074 x12:00000075 +75632390ns 1365105 1c000e84 00130313 addi x6, x6, 1 x6=1c00b384 x6:1c00b383 +75632410ns 1365106 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000074 +75632489ns 1365110 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b384 PA:1c00b384 +75632509ns 1365111 1c000e82 fff60613 addi x12, x12, -1 x12=00000073 x12:00000074 +75632529ns 1365112 1c000e84 00130313 addi x6, x6, 1 x6=1c00b385 x6:1c00b384 +75632549ns 1365113 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000073 +75632628ns 1365117 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b385 PA:1c00b385 +75632648ns 1365118 1c000e82 fff60613 addi x12, x12, -1 x12=00000072 x12:00000073 +75632667ns 1365119 1c000e84 00130313 addi x6, x6, 1 x6=1c00b386 x6:1c00b385 +75632687ns 1365120 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000072 +75632766ns 1365124 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b386 PA:1c00b386 +75632786ns 1365125 1c000e82 fff60613 addi x12, x12, -1 x12=00000071 x12:00000072 +75632806ns 1365126 1c000e84 00130313 addi x6, x6, 1 x6=1c00b387 x6:1c00b386 +75632826ns 1365127 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000071 +75632905ns 1365131 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b387 PA:1c00b387 +75632925ns 1365132 1c000e82 fff60613 addi x12, x12, -1 x12=00000070 x12:00000071 +75632944ns 1365133 1c000e84 00130313 addi x6, x6, 1 x6=1c00b388 x6:1c00b387 +75632964ns 1365134 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000070 +75633043ns 1365138 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b388 PA:1c00b388 +75633063ns 1365139 1c000e82 fff60613 addi x12, x12, -1 x12=0000006f x12:00000070 +75633083ns 1365140 1c000e84 00130313 addi x6, x6, 1 x6=1c00b389 x6:1c00b388 +75633103ns 1365141 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000006f +75633182ns 1365145 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b389 PA:1c00b389 +75633202ns 1365146 1c000e82 fff60613 addi x12, x12, -1 x12=0000006e x12:0000006f +75633222ns 1365147 1c000e84 00130313 addi x6, x6, 1 x6=1c00b38a x6:1c00b389 +75633241ns 1365148 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000006e +75633321ns 1365152 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b38a PA:1c00b38a +75633340ns 1365153 1c000e82 fff60613 addi x12, x12, -1 x12=0000006d x12:0000006e +75633360ns 1365154 1c000e84 00130313 addi x6, x6, 1 x6=1c00b38b x6:1c00b38a +75633380ns 1365155 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000006d +75633459ns 1365159 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b38b PA:1c00b38b +75633479ns 1365160 1c000e82 fff60613 addi x12, x12, -1 x12=0000006c x12:0000006d +75633499ns 1365161 1c000e84 00130313 addi x6, x6, 1 x6=1c00b38c x6:1c00b38b +75633518ns 1365162 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000006c +75633598ns 1365166 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b38c PA:1c00b38c +75633617ns 1365167 1c000e82 fff60613 addi x12, x12, -1 x12=0000006b x12:0000006c +75633637ns 1365168 1c000e84 00130313 addi x6, x6, 1 x6=1c00b38d x6:1c00b38c +75633657ns 1365169 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000006b +75633736ns 1365173 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b38d PA:1c00b38d +75633756ns 1365174 1c000e82 fff60613 addi x12, x12, -1 x12=0000006a x12:0000006b +75633776ns 1365175 1c000e84 00130313 addi x6, x6, 1 x6=1c00b38e x6:1c00b38d +75633796ns 1365176 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000006a +75633875ns 1365180 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b38e PA:1c00b38e +75633895ns 1365181 1c000e82 fff60613 addi x12, x12, -1 x12=00000069 x12:0000006a +75633914ns 1365182 1c000e84 00130313 addi x6, x6, 1 x6=1c00b38f x6:1c00b38e +75633934ns 1365183 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000069 +75634013ns 1365187 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b38f PA:1c00b38f +75634033ns 1365188 1c000e82 fff60613 addi x12, x12, -1 x12=00000068 x12:00000069 +75634053ns 1365189 1c000e84 00130313 addi x6, x6, 1 x6=1c00b390 x6:1c00b38f +75634073ns 1365190 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000068 +75634152ns 1365194 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b390 PA:1c00b390 +75634172ns 1365195 1c000e82 fff60613 addi x12, x12, -1 x12=00000067 x12:00000068 +75634191ns 1365196 1c000e84 00130313 addi x6, x6, 1 x6=1c00b391 x6:1c00b390 +75634211ns 1365197 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000067 +75634290ns 1365201 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b391 PA:1c00b391 +75634310ns 1365202 1c000e82 fff60613 addi x12, x12, -1 x12=00000066 x12:00000067 +75634330ns 1365203 1c000e84 00130313 addi x6, x6, 1 x6=1c00b392 x6:1c00b391 +75634350ns 1365204 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000066 +75634429ns 1365208 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b392 PA:1c00b392 +75634449ns 1365209 1c000e82 fff60613 addi x12, x12, -1 x12=00000065 x12:00000066 +75634468ns 1365210 1c000e84 00130313 addi x6, x6, 1 x6=1c00b393 x6:1c00b392 +75634488ns 1365211 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000065 +75634567ns 1365215 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b393 PA:1c00b393 +75634587ns 1365216 1c000e82 fff60613 addi x12, x12, -1 x12=00000064 x12:00000065 +75634607ns 1365217 1c000e84 00130313 addi x6, x6, 1 x6=1c00b394 x6:1c00b393 +75634627ns 1365218 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000064 +75634706ns 1365222 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b394 PA:1c00b394 +75634726ns 1365223 1c000e82 fff60613 addi x12, x12, -1 x12=00000063 x12:00000064 +75634746ns 1365224 1c000e84 00130313 addi x6, x6, 1 x6=1c00b395 x6:1c00b394 +75634765ns 1365225 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000063 +75634845ns 1365229 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b395 PA:1c00b395 +75634864ns 1365230 1c000e82 fff60613 addi x12, x12, -1 x12=00000062 x12:00000063 +75634884ns 1365231 1c000e84 00130313 addi x6, x6, 1 x6=1c00b396 x6:1c00b395 +75634904ns 1365232 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000062 +75634983ns 1365236 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b396 PA:1c00b396 +75635003ns 1365237 1c000e82 fff60613 addi x12, x12, -1 x12=00000061 x12:00000062 +75635023ns 1365238 1c000e84 00130313 addi x6, x6, 1 x6=1c00b397 x6:1c00b396 +75635042ns 1365239 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000061 +75635122ns 1365243 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b397 PA:1c00b397 +75635141ns 1365244 1c000e82 fff60613 addi x12, x12, -1 x12=00000060 x12:00000061 +75635161ns 1365245 1c000e84 00130313 addi x6, x6, 1 x6=1c00b398 x6:1c00b397 +75635181ns 1365246 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000060 +75635260ns 1365250 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b398 PA:1c00b398 +75635280ns 1365251 1c000e82 fff60613 addi x12, x12, -1 x12=0000005f x12:00000060 +75635300ns 1365252 1c000e84 00130313 addi x6, x6, 1 x6=1c00b399 x6:1c00b398 +75635320ns 1365253 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000005f +75635399ns 1365257 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b399 PA:1c00b399 +75635418ns 1365258 1c000e82 fff60613 addi x12, x12, -1 x12=0000005e x12:0000005f +75635438ns 1365259 1c000e84 00130313 addi x6, x6, 1 x6=1c00b39a x6:1c00b399 +75635458ns 1365260 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000005e +75635537ns 1365264 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b39a PA:1c00b39a +75635557ns 1365265 1c000e82 fff60613 addi x12, x12, -1 x12=0000005d x12:0000005e +75635577ns 1365266 1c000e84 00130313 addi x6, x6, 1 x6=1c00b39b x6:1c00b39a +75635597ns 1365267 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000005d +75635676ns 1365271 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b39b PA:1c00b39b +75635696ns 1365272 1c000e82 fff60613 addi x12, x12, -1 x12=0000005c x12:0000005d +75635715ns 1365273 1c000e84 00130313 addi x6, x6, 1 x6=1c00b39c x6:1c00b39b +75635735ns 1365274 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000005c +75635814ns 1365278 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b39c PA:1c00b39c +75635834ns 1365279 1c000e82 fff60613 addi x12, x12, -1 x12=0000005b x12:0000005c +75635854ns 1365280 1c000e84 00130313 addi x6, x6, 1 x6=1c00b39d x6:1c00b39c +75635874ns 1365281 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000005b +75635953ns 1365285 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b39d PA:1c00b39d +75635973ns 1365286 1c000e82 fff60613 addi x12, x12, -1 x12=0000005a x12:0000005b +75635992ns 1365287 1c000e84 00130313 addi x6, x6, 1 x6=1c00b39e x6:1c00b39d +75636012ns 1365288 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000005a +75636091ns 1365292 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b39e PA:1c00b39e +75636111ns 1365293 1c000e82 fff60613 addi x12, x12, -1 x12=00000059 x12:0000005a +75636131ns 1365294 1c000e84 00130313 addi x6, x6, 1 x6=1c00b39f x6:1c00b39e +75636151ns 1365295 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000059 +75636230ns 1365299 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b39f PA:1c00b39f +75636250ns 1365300 1c000e82 fff60613 addi x12, x12, -1 x12=00000058 x12:00000059 +75636270ns 1365301 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3a0 x6:1c00b39f +75636289ns 1365302 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000058 +75636369ns 1365306 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3a0 PA:1c00b3a0 +75636388ns 1365307 1c000e82 fff60613 addi x12, x12, -1 x12=00000057 x12:00000058 +75636408ns 1365308 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3a1 x6:1c00b3a0 +75636428ns 1365309 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000057 +75636507ns 1365313 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3a1 PA:1c00b3a1 +75636527ns 1365314 1c000e82 fff60613 addi x12, x12, -1 x12=00000056 x12:00000057 +75636547ns 1365315 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3a2 x6:1c00b3a1 +75636566ns 1365316 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000056 +75636646ns 1365320 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3a2 PA:1c00b3a2 +75636665ns 1365321 1c000e82 fff60613 addi x12, x12, -1 x12=00000055 x12:00000056 +75636685ns 1365322 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3a3 x6:1c00b3a2 +75636705ns 1365323 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000055 +75636784ns 1365327 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3a3 PA:1c00b3a3 +75636804ns 1365328 1c000e82 fff60613 addi x12, x12, -1 x12=00000054 x12:00000055 +75636824ns 1365329 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3a4 x6:1c00b3a3 +75636844ns 1365330 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000054 +75636923ns 1365334 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3a4 PA:1c00b3a4 +75636942ns 1365335 1c000e82 fff60613 addi x12, x12, -1 x12=00000053 x12:00000054 +75636962ns 1365336 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3a5 x6:1c00b3a4 +75636982ns 1365337 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000053 +75637061ns 1365341 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3a5 PA:1c00b3a5 +75637081ns 1365342 1c000e82 fff60613 addi x12, x12, -1 x12=00000052 x12:00000053 +75637101ns 1365343 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3a6 x6:1c00b3a5 +75637121ns 1365344 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000052 +75637200ns 1365348 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3a6 PA:1c00b3a6 +75637220ns 1365349 1c000e82 fff60613 addi x12, x12, -1 x12=00000051 x12:00000052 +75637239ns 1365350 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3a7 x6:1c00b3a6 +75637259ns 1365351 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000051 +75637338ns 1365355 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3a7 PA:1c00b3a7 +75637358ns 1365356 1c000e82 fff60613 addi x12, x12, -1 x12=00000050 x12:00000051 +75637378ns 1365357 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3a8 x6:1c00b3a7 +75637398ns 1365358 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000050 +75637477ns 1365362 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3a8 PA:1c00b3a8 +75637497ns 1365363 1c000e82 fff60613 addi x12, x12, -1 x12=0000004f x12:00000050 +75637516ns 1365364 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3a9 x6:1c00b3a8 +75637536ns 1365365 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000004f +75637615ns 1365369 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3a9 PA:1c00b3a9 +75637635ns 1365370 1c000e82 fff60613 addi x12, x12, -1 x12=0000004e x12:0000004f +75637655ns 1365371 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3aa x6:1c00b3a9 +75637675ns 1365372 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000004e +75637754ns 1365376 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3aa PA:1c00b3aa +75637774ns 1365377 1c000e82 fff60613 addi x12, x12, -1 x12=0000004d x12:0000004e +75637794ns 1365378 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3ab x6:1c00b3aa +75637813ns 1365379 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000004d +75637892ns 1365383 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3ab PA:1c00b3ab +75637912ns 1365384 1c000e82 fff60613 addi x12, x12, -1 x12=0000004c x12:0000004d +75637932ns 1365385 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3ac x6:1c00b3ab +75637952ns 1365386 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000004c +75638031ns 1365390 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3ac PA:1c00b3ac +75638051ns 1365391 1c000e82 fff60613 addi x12, x12, -1 x12=0000004b x12:0000004c +75638071ns 1365392 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3ad x6:1c00b3ac +75638090ns 1365393 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000004b +75638170ns 1365397 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3ad PA:1c00b3ad +75638189ns 1365398 1c000e82 fff60613 addi x12, x12, -1 x12=0000004a x12:0000004b +75638209ns 1365399 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3ae x6:1c00b3ad +75638229ns 1365400 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000004a +75638308ns 1365404 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3ae PA:1c00b3ae +75638328ns 1365405 1c000e82 fff60613 addi x12, x12, -1 x12=00000049 x12:0000004a +75638348ns 1365406 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3af x6:1c00b3ae +75638367ns 1365407 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000049 +75638447ns 1365411 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3af PA:1c00b3af +75638466ns 1365412 1c000e82 fff60613 addi x12, x12, -1 x12=00000048 x12:00000049 +75638486ns 1365413 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3b0 x6:1c00b3af +75638506ns 1365414 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000048 +75638585ns 1365418 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3b0 PA:1c00b3b0 +75638605ns 1365419 1c000e82 fff60613 addi x12, x12, -1 x12=00000047 x12:00000048 +75638625ns 1365420 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3b1 x6:1c00b3b0 +75638645ns 1365421 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000047 +75638724ns 1365425 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3b1 PA:1c00b3b1 +75638744ns 1365426 1c000e82 fff60613 addi x12, x12, -1 x12=00000046 x12:00000047 +75638763ns 1365427 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3b2 x6:1c00b3b1 +75638783ns 1365428 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000046 +75638862ns 1365432 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3b2 PA:1c00b3b2 +75638882ns 1365433 1c000e82 fff60613 addi x12, x12, -1 x12=00000045 x12:00000046 +75638902ns 1365434 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3b3 x6:1c00b3b2 +75638922ns 1365435 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000045 +75639001ns 1365439 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3b3 PA:1c00b3b3 +75639021ns 1365440 1c000e82 fff60613 addi x12, x12, -1 x12=00000044 x12:00000045 +75639040ns 1365441 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3b4 x6:1c00b3b3 +75639060ns 1365442 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000044 +75639139ns 1365446 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3b4 PA:1c00b3b4 +75639159ns 1365447 1c000e82 fff60613 addi x12, x12, -1 x12=00000043 x12:00000044 +75639179ns 1365448 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3b5 x6:1c00b3b4 +75639199ns 1365449 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000043 +75639278ns 1365453 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3b5 PA:1c00b3b5 +75639298ns 1365454 1c000e82 fff60613 addi x12, x12, -1 x12=00000042 x12:00000043 +75639318ns 1365455 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3b6 x6:1c00b3b5 +75639337ns 1365456 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000042 +75639416ns 1365460 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3b6 PA:1c00b3b6 +75639436ns 1365461 1c000e82 fff60613 addi x12, x12, -1 x12=00000041 x12:00000042 +75639456ns 1365462 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3b7 x6:1c00b3b6 +75639476ns 1365463 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000041 +75639555ns 1365467 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3b7 PA:1c00b3b7 +75639575ns 1365468 1c000e82 fff60613 addi x12, x12, -1 x12=00000040 x12:00000041 +75639595ns 1365469 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3b8 x6:1c00b3b7 +75639614ns 1365470 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000040 +75639694ns 1365474 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3b8 PA:1c00b3b8 +75639713ns 1365475 1c000e82 fff60613 addi x12, x12, -1 x12=0000003f x12:00000040 +75639733ns 1365476 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3b9 x6:1c00b3b8 +75639753ns 1365477 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000003f +75639832ns 1365481 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3b9 PA:1c00b3b9 +75639852ns 1365482 1c000e82 fff60613 addi x12, x12, -1 x12=0000003e x12:0000003f +75639872ns 1365483 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3ba x6:1c00b3b9 +75639891ns 1365484 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000003e +75639971ns 1365488 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3ba PA:1c00b3ba +75639990ns 1365489 1c000e82 fff60613 addi x12, x12, -1 x12=0000003d x12:0000003e +75640010ns 1365490 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3bb x6:1c00b3ba +75640030ns 1365491 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000003d +75640109ns 1365495 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3bb PA:1c00b3bb +75640129ns 1365496 1c000e82 fff60613 addi x12, x12, -1 x12=0000003c x12:0000003d +75640149ns 1365497 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3bc x6:1c00b3bb +75640169ns 1365498 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000003c +75640248ns 1365502 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3bc PA:1c00b3bc +75640268ns 1365503 1c000e82 fff60613 addi x12, x12, -1 x12=0000003b x12:0000003c +75640287ns 1365504 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3bd x6:1c00b3bc +75640307ns 1365505 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000003b +75640386ns 1365509 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3bd PA:1c00b3bd +75640406ns 1365510 1c000e82 fff60613 addi x12, x12, -1 x12=0000003a x12:0000003b +75640426ns 1365511 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3be x6:1c00b3bd +75640446ns 1365512 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000003a +75640525ns 1365516 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3be PA:1c00b3be +75640545ns 1365517 1c000e82 fff60613 addi x12, x12, -1 x12=00000039 x12:0000003a +75640564ns 1365518 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3bf x6:1c00b3be +75640584ns 1365519 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000039 +75640663ns 1365523 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3bf PA:1c00b3bf +75640683ns 1365524 1c000e82 fff60613 addi x12, x12, -1 x12=00000038 x12:00000039 +75640703ns 1365525 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3c0 x6:1c00b3bf +75640723ns 1365526 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000038 +75640802ns 1365530 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3c0 PA:1c00b3c0 +75640822ns 1365531 1c000e82 fff60613 addi x12, x12, -1 x12=00000037 x12:00000038 +75640841ns 1365532 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3c1 x6:1c00b3c0 +75640861ns 1365533 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000037 +75640940ns 1365537 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3c1 PA:1c00b3c1 +75640960ns 1365538 1c000e82 fff60613 addi x12, x12, -1 x12=00000036 x12:00000037 +75640980ns 1365539 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3c2 x6:1c00b3c1 +75641000ns 1365540 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000036 +75641079ns 1365544 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3c2 PA:1c00b3c2 +75641099ns 1365545 1c000e82 fff60613 addi x12, x12, -1 x12=00000035 x12:00000036 +75641119ns 1365546 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3c3 x6:1c00b3c2 +75641138ns 1365547 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000035 +75641218ns 1365551 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3c3 PA:1c00b3c3 +75641237ns 1365552 1c000e82 fff60613 addi x12, x12, -1 x12=00000034 x12:00000035 +75641257ns 1365553 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3c4 x6:1c00b3c3 +75641277ns 1365554 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000034 +75641356ns 1365558 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3c4 PA:1c00b3c4 +75641376ns 1365559 1c000e82 fff60613 addi x12, x12, -1 x12=00000033 x12:00000034 +75641396ns 1365560 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3c5 x6:1c00b3c4 +75641415ns 1365561 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000033 +75641495ns 1365565 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3c5 PA:1c00b3c5 +75641514ns 1365566 1c000e82 fff60613 addi x12, x12, -1 x12=00000032 x12:00000033 +75641534ns 1365567 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3c6 x6:1c00b3c5 +75641554ns 1365568 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000032 +75641633ns 1365572 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3c6 PA:1c00b3c6 +75641653ns 1365573 1c000e82 fff60613 addi x12, x12, -1 x12=00000031 x12:00000032 +75641673ns 1365574 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3c7 x6:1c00b3c6 +75641693ns 1365575 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000031 +75641772ns 1365579 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3c7 PA:1c00b3c7 +75641792ns 1365580 1c000e82 fff60613 addi x12, x12, -1 x12=00000030 x12:00000031 +75641811ns 1365581 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3c8 x6:1c00b3c7 +75641831ns 1365582 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000030 +75641910ns 1365586 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3c8 PA:1c00b3c8 +75641930ns 1365587 1c000e82 fff60613 addi x12, x12, -1 x12=0000002f x12:00000030 +75641950ns 1365588 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3c9 x6:1c00b3c8 +75641970ns 1365589 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000002f +75642049ns 1365593 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3c9 PA:1c00b3c9 +75642069ns 1365594 1c000e82 fff60613 addi x12, x12, -1 x12=0000002e x12:0000002f +75642088ns 1365595 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3ca x6:1c00b3c9 +75642108ns 1365596 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000002e +75642187ns 1365600 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3ca PA:1c00b3ca +75642207ns 1365601 1c000e82 fff60613 addi x12, x12, -1 x12=0000002d x12:0000002e +75642227ns 1365602 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3cb x6:1c00b3ca +75642247ns 1365603 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000002d +75642326ns 1365607 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3cb PA:1c00b3cb +75642346ns 1365608 1c000e82 fff60613 addi x12, x12, -1 x12=0000002c x12:0000002d +75642365ns 1365609 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3cc x6:1c00b3cb +75642385ns 1365610 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000002c +75642464ns 1365614 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3cc PA:1c00b3cc +75642484ns 1365615 1c000e82 fff60613 addi x12, x12, -1 x12=0000002b x12:0000002c +75642504ns 1365616 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3cd x6:1c00b3cc +75642524ns 1365617 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000002b +75642603ns 1365621 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3cd PA:1c00b3cd +75642623ns 1365622 1c000e82 fff60613 addi x12, x12, -1 x12=0000002a x12:0000002b +75642643ns 1365623 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3ce x6:1c00b3cd +75642662ns 1365624 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000002a +75642742ns 1365628 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3ce PA:1c00b3ce +75642761ns 1365629 1c000e82 fff60613 addi x12, x12, -1 x12=00000029 x12:0000002a +75642781ns 1365630 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3cf x6:1c00b3ce +75642801ns 1365631 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000029 +75642880ns 1365635 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3cf PA:1c00b3cf +75642900ns 1365636 1c000e82 fff60613 addi x12, x12, -1 x12=00000028 x12:00000029 +75642920ns 1365637 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3d0 x6:1c00b3cf +75642939ns 1365638 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000028 +75643019ns 1365642 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3d0 PA:1c00b3d0 +75643038ns 1365643 1c000e82 fff60613 addi x12, x12, -1 x12=00000027 x12:00000028 +75643058ns 1365644 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3d1 x6:1c00b3d0 +75643078ns 1365645 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000027 +75643157ns 1365649 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3d1 PA:1c00b3d1 +75643177ns 1365650 1c000e82 fff60613 addi x12, x12, -1 x12=00000026 x12:00000027 +75643197ns 1365651 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3d2 x6:1c00b3d1 +75643217ns 1365652 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000026 +75643296ns 1365656 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3d2 PA:1c00b3d2 +75643315ns 1365657 1c000e82 fff60613 addi x12, x12, -1 x12=00000025 x12:00000026 +75643335ns 1365658 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3d3 x6:1c00b3d2 +75643355ns 1365659 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000025 +75643434ns 1365663 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3d3 PA:1c00b3d3 +75643454ns 1365664 1c000e82 fff60613 addi x12, x12, -1 x12=00000024 x12:00000025 +75643474ns 1365665 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3d4 x6:1c00b3d3 +75643494ns 1365666 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000024 +75643573ns 1365670 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3d4 PA:1c00b3d4 +75643593ns 1365671 1c000e82 fff60613 addi x12, x12, -1 x12=00000023 x12:00000024 +75643612ns 1365672 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3d5 x6:1c00b3d4 +75643632ns 1365673 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000023 +75643711ns 1365677 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3d5 PA:1c00b3d5 +75643731ns 1365678 1c000e82 fff60613 addi x12, x12, -1 x12=00000022 x12:00000023 +75643751ns 1365679 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3d6 x6:1c00b3d5 +75643771ns 1365680 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000022 +75643850ns 1365684 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3d6 PA:1c00b3d6 +75643870ns 1365685 1c000e82 fff60613 addi x12, x12, -1 x12=00000021 x12:00000022 +75643889ns 1365686 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3d7 x6:1c00b3d6 +75643909ns 1365687 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000021 +75643988ns 1365691 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3d7 PA:1c00b3d7 +75644008ns 1365692 1c000e82 fff60613 addi x12, x12, -1 x12=00000020 x12:00000021 +75644028ns 1365693 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3d8 x6:1c00b3d7 +75644048ns 1365694 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000020 +75644127ns 1365698 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3d8 PA:1c00b3d8 +75644147ns 1365699 1c000e82 fff60613 addi x12, x12, -1 x12=0000001f x12:00000020 +75644167ns 1365700 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3d9 x6:1c00b3d8 +75644186ns 1365701 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000001f +75644266ns 1365705 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3d9 PA:1c00b3d9 +75644285ns 1365706 1c000e82 fff60613 addi x12, x12, -1 x12=0000001e x12:0000001f +75644305ns 1365707 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3da x6:1c00b3d9 +75644325ns 1365708 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000001e +75644404ns 1365712 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3da PA:1c00b3da +75644424ns 1365713 1c000e82 fff60613 addi x12, x12, -1 x12=0000001d x12:0000001e +75644444ns 1365714 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3db x6:1c00b3da +75644463ns 1365715 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000001d +75644543ns 1365719 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3db PA:1c00b3db +75644562ns 1365720 1c000e82 fff60613 addi x12, x12, -1 x12=0000001c x12:0000001d +75644582ns 1365721 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3dc x6:1c00b3db +75644602ns 1365722 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000001c +75644681ns 1365726 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3dc PA:1c00b3dc +75644701ns 1365727 1c000e82 fff60613 addi x12, x12, -1 x12=0000001b x12:0000001c +75644721ns 1365728 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3dd x6:1c00b3dc +75644741ns 1365729 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000001b +75644820ns 1365733 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3dd PA:1c00b3dd +75644839ns 1365734 1c000e82 fff60613 addi x12, x12, -1 x12=0000001a x12:0000001b +75644859ns 1365735 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3de x6:1c00b3dd +75644879ns 1365736 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000001a +75644958ns 1365740 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3de PA:1c00b3de +75644978ns 1365741 1c000e82 fff60613 addi x12, x12, -1 x12=00000019 x12:0000001a +75644998ns 1365742 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3df x6:1c00b3de +75645018ns 1365743 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000019 +75645097ns 1365747 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3df PA:1c00b3df +75645117ns 1365748 1c000e82 fff60613 addi x12, x12, -1 x12=00000018 x12:00000019 +75645136ns 1365749 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3e0 x6:1c00b3df +75645156ns 1365750 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000018 +75645235ns 1365754 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3e0 PA:1c00b3e0 +75645255ns 1365755 1c000e82 fff60613 addi x12, x12, -1 x12=00000017 x12:00000018 +75645275ns 1365756 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3e1 x6:1c00b3e0 +75645295ns 1365757 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000017 +75645374ns 1365761 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3e1 PA:1c00b3e1 +75645394ns 1365762 1c000e82 fff60613 addi x12, x12, -1 x12=00000016 x12:00000017 +75645413ns 1365763 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3e2 x6:1c00b3e1 +75645433ns 1365764 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000016 +75645512ns 1365768 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3e2 PA:1c00b3e2 +75645532ns 1365769 1c000e82 fff60613 addi x12, x12, -1 x12=00000015 x12:00000016 +75645552ns 1365770 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3e3 x6:1c00b3e2 +75645572ns 1365771 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000015 +75645651ns 1365775 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3e3 PA:1c00b3e3 +75645671ns 1365776 1c000e82 fff60613 addi x12, x12, -1 x12=00000014 x12:00000015 +75645691ns 1365777 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3e4 x6:1c00b3e3 +75645710ns 1365778 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000014 +75645789ns 1365782 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3e4 PA:1c00b3e4 +75645809ns 1365783 1c000e82 fff60613 addi x12, x12, -1 x12=00000013 x12:00000014 +75645829ns 1365784 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3e5 x6:1c00b3e4 +75645849ns 1365785 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000013 +75645928ns 1365789 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3e5 PA:1c00b3e5 +75645948ns 1365790 1c000e82 fff60613 addi x12, x12, -1 x12=00000012 x12:00000013 +75645968ns 1365791 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3e6 x6:1c00b3e5 +75645987ns 1365792 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000012 +75646067ns 1365796 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3e6 PA:1c00b3e6 +75646086ns 1365797 1c000e82 fff60613 addi x12, x12, -1 x12=00000011 x12:00000012 +75646106ns 1365798 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3e7 x6:1c00b3e6 +75646126ns 1365799 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000011 +75646205ns 1365803 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3e7 PA:1c00b3e7 +75646225ns 1365804 1c000e82 fff60613 addi x12, x12, -1 x12=00000010 x12:00000011 +75646245ns 1365805 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3e8 x6:1c00b3e7 +75646265ns 1365806 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000010 +75646344ns 1365810 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3e8 PA:1c00b3e8 +75646363ns 1365811 1c000e82 fff60613 addi x12, x12, -1 x12=0000000f x12:00000010 +75646383ns 1365812 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3e9 x6:1c00b3e8 +75646403ns 1365813 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000000f +75646482ns 1365817 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3e9 PA:1c00b3e9 +75646502ns 1365818 1c000e82 fff60613 addi x12, x12, -1 x12=0000000e x12:0000000f +75646522ns 1365819 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3ea x6:1c00b3e9 +75646542ns 1365820 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000000e +75646621ns 1365824 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3ea PA:1c00b3ea +75646641ns 1365825 1c000e82 fff60613 addi x12, x12, -1 x12=0000000d x12:0000000e +75646660ns 1365826 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3eb x6:1c00b3ea +75646680ns 1365827 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000000d +75646759ns 1365831 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3eb PA:1c00b3eb +75646779ns 1365832 1c000e82 fff60613 addi x12, x12, -1 x12=0000000c x12:0000000d +75646799ns 1365833 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3ec x6:1c00b3eb +75646819ns 1365834 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000000c +75646898ns 1365838 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3ec PA:1c00b3ec +75646918ns 1365839 1c000e82 fff60613 addi x12, x12, -1 x12=0000000b x12:0000000c +75646937ns 1365840 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3ed x6:1c00b3ec +75646957ns 1365841 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000000b +75647036ns 1365845 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3ed PA:1c00b3ed +75647056ns 1365846 1c000e82 fff60613 addi x12, x12, -1 x12=0000000a x12:0000000b +75647076ns 1365847 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3ee x6:1c00b3ed +75647096ns 1365848 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000000a +75647175ns 1365852 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3ee PA:1c00b3ee +75647195ns 1365853 1c000e82 fff60613 addi x12, x12, -1 x12=00000009 x12:0000000a +75647215ns 1365854 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3ef x6:1c00b3ee +75647234ns 1365855 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000009 +75647313ns 1365859 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3ef PA:1c00b3ef +75647333ns 1365860 1c000e82 fff60613 addi x12, x12, -1 x12=00000008 x12:00000009 +75647353ns 1365861 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3f0 x6:1c00b3ef +75647373ns 1365862 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000008 +75647452ns 1365866 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3f0 PA:1c00b3f0 +75647472ns 1365867 1c000e82 fff60613 addi x12, x12, -1 x12=00000007 x12:00000008 +75647492ns 1365868 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3f1 x6:1c00b3f0 +75647511ns 1365869 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000007 +75647591ns 1365873 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3f1 PA:1c00b3f1 +75647610ns 1365874 1c000e82 fff60613 addi x12, x12, -1 x12=00000006 x12:00000007 +75647630ns 1365875 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3f2 x6:1c00b3f1 +75647650ns 1365876 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000006 +75647729ns 1365880 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3f2 PA:1c00b3f2 +75647749ns 1365881 1c000e82 fff60613 addi x12, x12, -1 x12=00000005 x12:00000006 +75647769ns 1365882 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3f3 x6:1c00b3f2 +75647788ns 1365883 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000005 +75647868ns 1365887 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3f3 PA:1c00b3f3 +75647887ns 1365888 1c000e82 fff60613 addi x12, x12, -1 x12=00000004 x12:00000005 +75647907ns 1365889 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3f4 x6:1c00b3f3 +75647927ns 1365890 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000004 +75648006ns 1365894 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3f4 PA:1c00b3f4 +75648026ns 1365895 1c000e82 fff60613 addi x12, x12, -1 x12=00000003 x12:00000004 +75648046ns 1365896 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3f5 x6:1c00b3f4 +75648066ns 1365897 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000003 +75648145ns 1365901 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3f5 PA:1c00b3f5 +75648165ns 1365902 1c000e82 fff60613 addi x12, x12, -1 x12=00000002 x12:00000003 +75648184ns 1365903 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3f6 x6:1c00b3f5 +75648204ns 1365904 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000002 +75648283ns 1365908 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3f6 PA:1c00b3f6 +75648303ns 1365909 1c000e82 fff60613 addi x12, x12, -1 x12=00000001 x12:00000002 +75648323ns 1365910 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3f7 x6:1c00b3f6 +75648343ns 1365911 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000001 +75648422ns 1365915 1c000e7e 00b30023 sb x11, 0(x6) x11:000000a5 x6:1c00b3f7 PA:1c00b3f7 +75648442ns 1365916 1c000e82 fff60613 addi x12, x12, -1 x12=00000000 x12:00000001 +75648461ns 1365917 1c000e84 00130313 addi x6, x6, 1 x6=1c00b3f8 x6:1c00b3f7 +75648481ns 1365918 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000000 +75648501ns 1365919 1c000e88 00008067 jalr x0, x1, 0 x1:1c002094 +75648541ns 1365921 1c002094 03042c03 lw x24, 48(x8) x24=1c00adb8 x8:1c00b400 PA:1c00b430 +75648560ns 1365922 1c002098 00049963 bne x9, x0, 18 x9:1c0086e8 +75648620ns 1365925 1c0020aa 009005b3 add x11, x0, x9 x11=1c0086e8 x9:1c0086e8 +75648640ns 1365926 1c0020ac 03440793 addi x15, x8, 52 x15=1c00b434 x8:1c00b400 +75648659ns 1365927 1c0020b0 01048693 addi x13, x9, 16 x13=1c0086f8 x9:1c0086e8 +75648679ns 1365928 1c0020b4 00058703 lb x14, 0(x11) x14=00000054 x11:1c0086e8 PA:1c0086e8 +75648719ns 1365930 1c0020b8 00e78023 sb x14, 0(x15) x14:00000054 x15:1c00b434 PA:1c00b434 +75648739ns 1365931 1c0020bc 00070563 beq x14, x0, 10 x14:00000054 +75648758ns 1365932 1c0020be 00158593 addi x11, x11, 1 x11=1c0086e9 x11:1c0086e8 +75648778ns 1365933 1c0020c0 00178793 addi x15, x15, 1 x15=1c00b435 x15:1c00b434 +75648798ns 1365934 1c0020c2 fed599e3 bne x11, x13, -14 x11:1c0086e9 x13:1c0086f8 +75648857ns 1365937 1c0020b4 00058703 lb x14, 0(x11) x14=0000006d x11:1c0086e9 PA:1c0086e9 +75648897ns 1365939 1c0020b8 00e78023 sb x14, 0(x15) x14:0000006d x15:1c00b435 PA:1c00b435 +75648917ns 1365940 1c0020bc 00070563 beq x14, x0, 10 x14:0000006d +75648936ns 1365941 1c0020be 00158593 addi x11, x11, 1 x11=1c0086ea x11:1c0086e9 +75648956ns 1365942 1c0020c0 00178793 addi x15, x15, 1 x15=1c00b436 x15:1c00b435 +75648976ns 1365943 1c0020c2 fed599e3 bne x11, x13, -14 x11:1c0086ea x13:1c0086f8 +75649035ns 1365946 1c0020b4 00058703 lb x14, 0(x11) x14=00000072 x11:1c0086ea PA:1c0086ea +75649075ns 1365948 1c0020b8 00e78023 sb x14, 0(x15) x14:00000072 x15:1c00b436 PA:1c00b436 +75649095ns 1365949 1c0020bc 00070563 beq x14, x0, 10 x14:00000072 +75649115ns 1365950 1c0020be 00158593 addi x11, x11, 1 x11=1c0086eb x11:1c0086ea +75649134ns 1365951 1c0020c0 00178793 addi x15, x15, 1 x15=1c00b437 x15:1c00b436 +75649154ns 1365952 1c0020c2 fed599e3 bne x11, x13, -14 x11:1c0086eb x13:1c0086f8 +75649214ns 1365955 1c0020b4 00058703 lb x14, 0(x11) x14=00000020 x11:1c0086eb PA:1c0086eb +75649253ns 1365957 1c0020b8 00e78023 sb x14, 0(x15) x14:00000020 x15:1c00b437 PA:1c00b437 +75649273ns 1365958 1c0020bc 00070563 beq x14, x0, 10 x14:00000020 +75649293ns 1365959 1c0020be 00158593 addi x11, x11, 1 x11=1c0086ec x11:1c0086eb +75649312ns 1365960 1c0020c0 00178793 addi x15, x15, 1 x15=1c00b438 x15:1c00b437 +75649332ns 1365961 1c0020c2 fed599e3 bne x11, x13, -14 x11:1c0086ec x13:1c0086f8 +75649392ns 1365964 1c0020b4 00058703 lb x14, 0(x11) x14=00000053 x11:1c0086ec PA:1c0086ec +75649431ns 1365966 1c0020b8 00e78023 sb x14, 0(x15) x14:00000053 x15:1c00b438 PA:1c00b438 +75649451ns 1365967 1c0020bc 00070563 beq x14, x0, 10 x14:00000053 +75649471ns 1365968 1c0020be 00158593 addi x11, x11, 1 x11=1c0086ed x11:1c0086ec +75649491ns 1365969 1c0020c0 00178793 addi x15, x15, 1 x15=1c00b439 x15:1c00b438 +75649510ns 1365970 1c0020c2 fed599e3 bne x11, x13, -14 x11:1c0086ed x13:1c0086f8 +75649570ns 1365973 1c0020b4 00058703 lb x14, 0(x11) x14=00000076 x11:1c0086ed PA:1c0086ed +75649609ns 1365975 1c0020b8 00e78023 sb x14, 0(x15) x14:00000076 x15:1c00b439 PA:1c00b439 +75649629ns 1365976 1c0020bc 00070563 beq x14, x0, 10 x14:00000076 +75649649ns 1365977 1c0020be 00158593 addi x11, x11, 1 x11=1c0086ee x11:1c0086ed +75649669ns 1365978 1c0020c0 00178793 addi x15, x15, 1 x15=1c00b43a x15:1c00b439 +75649689ns 1365979 1c0020c2 fed599e3 bne x11, x13, -14 x11:1c0086ee x13:1c0086f8 +75649748ns 1365982 1c0020b4 00058703 lb x14, 0(x11) x14=00000063 x11:1c0086ee PA:1c0086ee +75649787ns 1365984 1c0020b8 00e78023 sb x14, 0(x15) x14:00000063 x15:1c00b43a PA:1c00b43a +75649807ns 1365985 1c0020bc 00070563 beq x14, x0, 10 x14:00000063 +75649827ns 1365986 1c0020be 00158593 addi x11, x11, 1 x11=1c0086ef x11:1c0086ee +75649847ns 1365987 1c0020c0 00178793 addi x15, x15, 1 x15=1c00b43b x15:1c00b43a +75649867ns 1365988 1c0020c2 fed599e3 bne x11, x13, -14 x11:1c0086ef x13:1c0086f8 +75649926ns 1365991 1c0020b4 00058703 lb x14, 0(x11) x14=00000000 x11:1c0086ef PA:1c0086ef +75649966ns 1365993 1c0020b8 00e78023 sb x14, 0(x15) x14:00000000 x15:1c00b43b PA:1c00b43b +75649985ns 1365994 1c0020bc 00070563 beq x14, x0, 10 x14:00000000 +75650065ns 1365998 1c0020c6 040401a3 sb x0, 67(x8) x8:1c00b400 PA:1c00b443 +75650084ns 1365999 1c0020ca 00400793 addi x15, x0, 4 x15=00000004 +75650104ns 1366000 1c0020cc 0127f363 bgeu x15, x18, 6 x15:00000004 x18:00000004 +75650183ns 1366004 1c0020d2 00440a13 addi x20, x8, 4 x20=1c00b404 x8:1c00b400 +75650203ns 1366005 1c0020d6 01400533 add x10, x0, x20 x10=1c00b404 x20:1c00b404 +75650223ns 1366006 1c0020d8 03242623 sw x18, 44(x8) x18:00000004 x8:1c00b400 PA:1c00b42c +75650243ns 1366007 1c0020dc 05242823 sw x18, 80(x8) x18:00000004 x8:1c00b400 PA:1c00b450 +75650262ns 1366008 1c0020e0 04042a23 sw x0, 84(x8) x8:1c00b400 PA:1c00b454 +75650282ns 1366009 1c0020e4 df7fe0ef jal x1, -4618 x1=1c0020e8 +75650342ns 1366012 1c000eda 00052823 sw x0, 16(x10) x10:1c00b404 PA:1c00b414 +75650361ns 1366013 1c000ede 00008067 jalr x0, x1, 0 x1:1c0020e8 +75650401ns 1366015 1c0020e8 01840513 addi x10, x8, 24 x10=1c00b418 x8:1c00b400 +75650421ns 1366016 1c0020ec deffe0ef jal x1, -4626 x1=1c0020f0 +75650480ns 1366019 1c000eda 00052823 sw x0, 16(x10) x10:1c00b418 PA:1c00b428 +75650500ns 1366020 1c000ede 00008067 jalr x0, x1, 0 x1:1c0020f0 +75650540ns 1366022 1c0020f0 00500713 addi x14, x0, 5 x14=00000005 +75650559ns 1366023 1c0020f2 412704b3 sub x9, x14, x18 x9=00000001 x14:00000005 x18:00000004 +75650579ns 1366024 1c0020f6 48042023 sw x0, 1152(x8) x8:1c00b400 PA:1c00b880 +75650599ns 1366025 1c0020fa 42800613 addi x12, x0, 1064 x12=00000428 +75650619ns 1366026 1c0020fe 00000593 addi x11, x0, 0 x11=00000000 +75650639ns 1366027 1c002100 00842823 sw x8, 16(x8) x8:1c00b400 x8:1c00b400 PA:1c00b410 +75650658ns 1366028 1c002102 00942c23 sw x9, 24(x8) x9:00000001 x8:1c00b400 PA:1c00b418 +75650678ns 1366029 1c002104 02842223 sw x8, 36(x8) x8:1c00b400 x8:1c00b400 PA:1c00b424 +75650698ns 1366030 1c002106 04042223 sw x0, 68(x8) x8:1c00b400 PA:1c00b444 +75650718ns 1366031 1c00210a 48040223 sb x0, 1156(x8) x8:1c00b400 PA:1c00b884 +75650737ns 1366032 1c00210e 05840513 addi x10, x8, 88 x10=1c00b458 x8:1c00b400 +75650757ns 1366033 1c002112 d69fe0ef jal x1, -4760 x1=1c002116 +75650797ns 1366035 1c000e7a 00a00333 add x6, x0, x10 x6=1c00b458 x10:1c00b458 +75650817ns 1366036 1c000e7c 00060663 beq x12, x0, 12 x12:00000428 +75650836ns 1366037 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b458 PA:1c00b458 +75650856ns 1366038 1c000e82 fff60613 addi x12, x12, -1 x12=00000427 x12:00000428 +75650876ns 1366039 1c000e84 00130313 addi x6, x6, 1 x6=1c00b459 x6:1c00b458 +75650896ns 1366040 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000427 +75650975ns 1366044 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b459 PA:1c00b459 +75650995ns 1366045 1c000e82 fff60613 addi x12, x12, -1 x12=00000426 x12:00000427 +75651015ns 1366046 1c000e84 00130313 addi x6, x6, 1 x6=1c00b45a x6:1c00b459 +75651034ns 1366047 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000426 +75651114ns 1366051 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b45a PA:1c00b45a +75651133ns 1366052 1c000e82 fff60613 addi x12, x12, -1 x12=00000425 x12:00000426 +75651153ns 1366053 1c000e84 00130313 addi x6, x6, 1 x6=1c00b45b x6:1c00b45a +75651173ns 1366054 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000425 +75651252ns 1366058 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b45b PA:1c00b45b +75651272ns 1366059 1c000e82 fff60613 addi x12, x12, -1 x12=00000424 x12:00000425 +75651292ns 1366060 1c000e84 00130313 addi x6, x6, 1 x6=1c00b45c x6:1c00b45b +75651311ns 1366061 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000424 +75651391ns 1366065 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b45c PA:1c00b45c +75651410ns 1366066 1c000e82 fff60613 addi x12, x12, -1 x12=00000423 x12:00000424 +75651430ns 1366067 1c000e84 00130313 addi x6, x6, 1 x6=1c00b45d x6:1c00b45c +75651450ns 1366068 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000423 +75651529ns 1366072 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b45d PA:1c00b45d +75651549ns 1366073 1c000e82 fff60613 addi x12, x12, -1 x12=00000422 x12:00000423 +75651569ns 1366074 1c000e84 00130313 addi x6, x6, 1 x6=1c00b45e x6:1c00b45d +75651589ns 1366075 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000422 +75651668ns 1366079 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b45e PA:1c00b45e +75651688ns 1366080 1c000e82 fff60613 addi x12, x12, -1 x12=00000421 x12:00000422 +75651707ns 1366081 1c000e84 00130313 addi x6, x6, 1 x6=1c00b45f x6:1c00b45e +75651727ns 1366082 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000421 +75651806ns 1366086 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b45f PA:1c00b45f +75651826ns 1366087 1c000e82 fff60613 addi x12, x12, -1 x12=00000420 x12:00000421 +75651846ns 1366088 1c000e84 00130313 addi x6, x6, 1 x6=1c00b460 x6:1c00b45f +75651866ns 1366089 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000420 +75651945ns 1366093 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b460 PA:1c00b460 +75651965ns 1366094 1c000e82 fff60613 addi x12, x12, -1 x12=0000041f x12:00000420 +75651984ns 1366095 1c000e84 00130313 addi x6, x6, 1 x6=1c00b461 x6:1c00b460 +75652004ns 1366096 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000041f +75652083ns 1366100 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b461 PA:1c00b461 +75652103ns 1366101 1c000e82 fff60613 addi x12, x12, -1 x12=0000041e x12:0000041f +75652123ns 1366102 1c000e84 00130313 addi x6, x6, 1 x6=1c00b462 x6:1c00b461 +75652143ns 1366103 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000041e +75652222ns 1366107 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b462 PA:1c00b462 +75652242ns 1366108 1c000e82 fff60613 addi x12, x12, -1 x12=0000041d x12:0000041e +75652261ns 1366109 1c000e84 00130313 addi x6, x6, 1 x6=1c00b463 x6:1c00b462 +75652281ns 1366110 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000041d +75652360ns 1366114 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b463 PA:1c00b463 +75652380ns 1366115 1c000e82 fff60613 addi x12, x12, -1 x12=0000041c x12:0000041d +75652400ns 1366116 1c000e84 00130313 addi x6, x6, 1 x6=1c00b464 x6:1c00b463 +75652420ns 1366117 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000041c +75652499ns 1366121 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b464 PA:1c00b464 +75652519ns 1366122 1c000e82 fff60613 addi x12, x12, -1 x12=0000041b x12:0000041c +75652539ns 1366123 1c000e84 00130313 addi x6, x6, 1 x6=1c00b465 x6:1c00b464 +75652558ns 1366124 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000041b +75652638ns 1366128 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b465 PA:1c00b465 +75652657ns 1366129 1c000e82 fff60613 addi x12, x12, -1 x12=0000041a x12:0000041b +75652677ns 1366130 1c000e84 00130313 addi x6, x6, 1 x6=1c00b466 x6:1c00b465 +75652697ns 1366131 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000041a +75652776ns 1366135 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b466 PA:1c00b466 +75652796ns 1366136 1c000e82 fff60613 addi x12, x12, -1 x12=00000419 x12:0000041a +75652816ns 1366137 1c000e84 00130313 addi x6, x6, 1 x6=1c00b467 x6:1c00b466 +75652835ns 1366138 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000419 +75652915ns 1366142 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b467 PA:1c00b467 +75652934ns 1366143 1c000e82 fff60613 addi x12, x12, -1 x12=00000418 x12:00000419 +75652954ns 1366144 1c000e84 00130313 addi x6, x6, 1 x6=1c00b468 x6:1c00b467 +75652974ns 1366145 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000418 +75653053ns 1366149 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b468 PA:1c00b468 +75653073ns 1366150 1c000e82 fff60613 addi x12, x12, -1 x12=00000417 x12:00000418 +75653093ns 1366151 1c000e84 00130313 addi x6, x6, 1 x6=1c00b469 x6:1c00b468 +75653113ns 1366152 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000417 +75653192ns 1366156 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b469 PA:1c00b469 +75653211ns 1366157 1c000e82 fff60613 addi x12, x12, -1 x12=00000416 x12:00000417 +75653231ns 1366158 1c000e84 00130313 addi x6, x6, 1 x6=1c00b46a x6:1c00b469 +75653251ns 1366159 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000416 +75653330ns 1366163 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b46a PA:1c00b46a +75653350ns 1366164 1c000e82 fff60613 addi x12, x12, -1 x12=00000415 x12:00000416 +75653370ns 1366165 1c000e84 00130313 addi x6, x6, 1 x6=1c00b46b x6:1c00b46a +75653390ns 1366166 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000415 +75653469ns 1366170 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b46b PA:1c00b46b +75653489ns 1366171 1c000e82 fff60613 addi x12, x12, -1 x12=00000414 x12:00000415 +75653508ns 1366172 1c000e84 00130313 addi x6, x6, 1 x6=1c00b46c x6:1c00b46b +75653528ns 1366173 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000414 +75653607ns 1366177 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b46c PA:1c00b46c +75653627ns 1366178 1c000e82 fff60613 addi x12, x12, -1 x12=00000413 x12:00000414 +75653647ns 1366179 1c000e84 00130313 addi x6, x6, 1 x6=1c00b46d x6:1c00b46c +75653667ns 1366180 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000413 +75653746ns 1366184 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b46d PA:1c00b46d +75653766ns 1366185 1c000e82 fff60613 addi x12, x12, -1 x12=00000412 x12:00000413 +75653785ns 1366186 1c000e84 00130313 addi x6, x6, 1 x6=1c00b46e x6:1c00b46d +75653805ns 1366187 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000412 +75653884ns 1366191 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b46e PA:1c00b46e +75653904ns 1366192 1c000e82 fff60613 addi x12, x12, -1 x12=00000411 x12:00000412 +75653924ns 1366193 1c000e84 00130313 addi x6, x6, 1 x6=1c00b46f x6:1c00b46e +75653944ns 1366194 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000411 +75654023ns 1366198 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b46f PA:1c00b46f +75654043ns 1366199 1c000e82 fff60613 addi x12, x12, -1 x12=00000410 x12:00000411 +75654063ns 1366200 1c000e84 00130313 addi x6, x6, 1 x6=1c00b470 x6:1c00b46f +75654082ns 1366201 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000410 +75654162ns 1366205 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b470 PA:1c00b470 +75654181ns 1366206 1c000e82 fff60613 addi x12, x12, -1 x12=0000040f x12:00000410 +75654201ns 1366207 1c000e84 00130313 addi x6, x6, 1 x6=1c00b471 x6:1c00b470 +75654221ns 1366208 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000040f +75654300ns 1366212 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b471 PA:1c00b471 +75654320ns 1366213 1c000e82 fff60613 addi x12, x12, -1 x12=0000040e x12:0000040f +75654340ns 1366214 1c000e84 00130313 addi x6, x6, 1 x6=1c00b472 x6:1c00b471 +75654359ns 1366215 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000040e +75654439ns 1366219 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b472 PA:1c00b472 +75654458ns 1366220 1c000e82 fff60613 addi x12, x12, -1 x12=0000040d x12:0000040e +75654478ns 1366221 1c000e84 00130313 addi x6, x6, 1 x6=1c00b473 x6:1c00b472 +75654498ns 1366222 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000040d +75654577ns 1366226 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b473 PA:1c00b473 +75654597ns 1366227 1c000e82 fff60613 addi x12, x12, -1 x12=0000040c x12:0000040d +75654617ns 1366228 1c000e84 00130313 addi x6, x6, 1 x6=1c00b474 x6:1c00b473 +75654637ns 1366229 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000040c +75654716ns 1366233 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b474 PA:1c00b474 +75654735ns 1366234 1c000e82 fff60613 addi x12, x12, -1 x12=0000040b x12:0000040c +75654755ns 1366235 1c000e84 00130313 addi x6, x6, 1 x6=1c00b475 x6:1c00b474 +75654775ns 1366236 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000040b +75654854ns 1366240 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b475 PA:1c00b475 +75654874ns 1366241 1c000e82 fff60613 addi x12, x12, -1 x12=0000040a x12:0000040b +75654894ns 1366242 1c000e84 00130313 addi x6, x6, 1 x6=1c00b476 x6:1c00b475 +75654914ns 1366243 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000040a +75654993ns 1366247 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b476 PA:1c00b476 +75655013ns 1366248 1c000e82 fff60613 addi x12, x12, -1 x12=00000409 x12:0000040a +75655032ns 1366249 1c000e84 00130313 addi x6, x6, 1 x6=1c00b477 x6:1c00b476 +75655052ns 1366250 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000409 +75655131ns 1366254 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b477 PA:1c00b477 +75655151ns 1366255 1c000e82 fff60613 addi x12, x12, -1 x12=00000408 x12:00000409 +75655171ns 1366256 1c000e84 00130313 addi x6, x6, 1 x6=1c00b478 x6:1c00b477 +75655191ns 1366257 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000408 +75655270ns 1366261 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b478 PA:1c00b478 +75655290ns 1366262 1c000e82 fff60613 addi x12, x12, -1 x12=00000407 x12:00000408 +75655309ns 1366263 1c000e84 00130313 addi x6, x6, 1 x6=1c00b479 x6:1c00b478 +75655329ns 1366264 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000407 +75655408ns 1366268 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b479 PA:1c00b479 +75655428ns 1366269 1c000e82 fff60613 addi x12, x12, -1 x12=00000406 x12:00000407 +75655448ns 1366270 1c000e84 00130313 addi x6, x6, 1 x6=1c00b47a x6:1c00b479 +75655468ns 1366271 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000406 +75655547ns 1366275 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b47a PA:1c00b47a +75655567ns 1366276 1c000e82 fff60613 addi x12, x12, -1 x12=00000405 x12:00000406 +75655587ns 1366277 1c000e84 00130313 addi x6, x6, 1 x6=1c00b47b x6:1c00b47a +75655606ns 1366278 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000405 +75655685ns 1366282 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b47b PA:1c00b47b +75655705ns 1366283 1c000e82 fff60613 addi x12, x12, -1 x12=00000404 x12:00000405 +75655725ns 1366284 1c000e84 00130313 addi x6, x6, 1 x6=1c00b47c x6:1c00b47b +75655745ns 1366285 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000404 +75655824ns 1366289 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b47c PA:1c00b47c +75655844ns 1366290 1c000e82 fff60613 addi x12, x12, -1 x12=00000403 x12:00000404 +75655864ns 1366291 1c000e84 00130313 addi x6, x6, 1 x6=1c00b47d x6:1c00b47c +75655883ns 1366292 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000403 +75655963ns 1366296 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b47d PA:1c00b47d +75655982ns 1366297 1c000e82 fff60613 addi x12, x12, -1 x12=00000402 x12:00000403 +75656002ns 1366298 1c000e84 00130313 addi x6, x6, 1 x6=1c00b47e x6:1c00b47d +75656022ns 1366299 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000402 +75656101ns 1366303 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b47e PA:1c00b47e +75656121ns 1366304 1c000e82 fff60613 addi x12, x12, -1 x12=00000401 x12:00000402 +75656141ns 1366305 1c000e84 00130313 addi x6, x6, 1 x6=1c00b47f x6:1c00b47e +75656161ns 1366306 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000401 +75656240ns 1366310 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b47f PA:1c00b47f +75656259ns 1366311 1c000e82 fff60613 addi x12, x12, -1 x12=00000400 x12:00000401 +75656279ns 1366312 1c000e84 00130313 addi x6, x6, 1 x6=1c00b480 x6:1c00b47f +75656299ns 1366313 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000400 +75656378ns 1366317 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b480 PA:1c00b480 +75656398ns 1366318 1c000e82 fff60613 addi x12, x12, -1 x12=000003ff x12:00000400 +75656418ns 1366319 1c000e84 00130313 addi x6, x6, 1 x6=1c00b481 x6:1c00b480 +75656438ns 1366320 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ff +75656517ns 1366324 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b481 PA:1c00b481 +75656537ns 1366325 1c000e82 fff60613 addi x12, x12, -1 x12=000003fe x12:000003ff +75656556ns 1366326 1c000e84 00130313 addi x6, x6, 1 x6=1c00b482 x6:1c00b481 +75656576ns 1366327 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003fe +75656655ns 1366331 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b482 PA:1c00b482 +75656675ns 1366332 1c000e82 fff60613 addi x12, x12, -1 x12=000003fd x12:000003fe +75656695ns 1366333 1c000e84 00130313 addi x6, x6, 1 x6=1c00b483 x6:1c00b482 +75656715ns 1366334 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003fd +75656794ns 1366338 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b483 PA:1c00b483 +75656814ns 1366339 1c000e82 fff60613 addi x12, x12, -1 x12=000003fc x12:000003fd +75656833ns 1366340 1c000e84 00130313 addi x6, x6, 1 x6=1c00b484 x6:1c00b483 +75656853ns 1366341 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003fc +75656932ns 1366345 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b484 PA:1c00b484 +75656952ns 1366346 1c000e82 fff60613 addi x12, x12, -1 x12=000003fb x12:000003fc +75656972ns 1366347 1c000e84 00130313 addi x6, x6, 1 x6=1c00b485 x6:1c00b484 +75656992ns 1366348 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003fb +75657071ns 1366352 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b485 PA:1c00b485 +75657091ns 1366353 1c000e82 fff60613 addi x12, x12, -1 x12=000003fa x12:000003fb +75657111ns 1366354 1c000e84 00130313 addi x6, x6, 1 x6=1c00b486 x6:1c00b485 +75657130ns 1366355 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003fa +75657209ns 1366359 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b486 PA:1c00b486 +75657229ns 1366360 1c000e82 fff60613 addi x12, x12, -1 x12=000003f9 x12:000003fa +75657249ns 1366361 1c000e84 00130313 addi x6, x6, 1 x6=1c00b487 x6:1c00b486 +75657269ns 1366362 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003f9 +75657348ns 1366366 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b487 PA:1c00b487 +75657368ns 1366367 1c000e82 fff60613 addi x12, x12, -1 x12=000003f8 x12:000003f9 +75657388ns 1366368 1c000e84 00130313 addi x6, x6, 1 x6=1c00b488 x6:1c00b487 +75657407ns 1366369 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003f8 +75657487ns 1366373 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b488 PA:1c00b488 +75657506ns 1366374 1c000e82 fff60613 addi x12, x12, -1 x12=000003f7 x12:000003f8 +75657526ns 1366375 1c000e84 00130313 addi x6, x6, 1 x6=1c00b489 x6:1c00b488 +75657546ns 1366376 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003f7 +75657625ns 1366380 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b489 PA:1c00b489 +75657645ns 1366381 1c000e82 fff60613 addi x12, x12, -1 x12=000003f6 x12:000003f7 +75657665ns 1366382 1c000e84 00130313 addi x6, x6, 1 x6=1c00b48a x6:1c00b489 +75657684ns 1366383 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003f6 +75657764ns 1366387 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b48a PA:1c00b48a +75657783ns 1366388 1c000e82 fff60613 addi x12, x12, -1 x12=000003f5 x12:000003f6 +75657803ns 1366389 1c000e84 00130313 addi x6, x6, 1 x6=1c00b48b x6:1c00b48a +75657823ns 1366390 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003f5 +75657902ns 1366394 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b48b PA:1c00b48b +75657922ns 1366395 1c000e82 fff60613 addi x12, x12, -1 x12=000003f4 x12:000003f5 +75657942ns 1366396 1c000e84 00130313 addi x6, x6, 1 x6=1c00b48c x6:1c00b48b +75657962ns 1366397 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003f4 +75658041ns 1366401 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b48c PA:1c00b48c +75658061ns 1366402 1c000e82 fff60613 addi x12, x12, -1 x12=000003f3 x12:000003f4 +75658080ns 1366403 1c000e84 00130313 addi x6, x6, 1 x6=1c00b48d x6:1c00b48c +75658100ns 1366404 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003f3 +75658179ns 1366408 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b48d PA:1c00b48d +75658199ns 1366409 1c000e82 fff60613 addi x12, x12, -1 x12=000003f2 x12:000003f3 +75658219ns 1366410 1c000e84 00130313 addi x6, x6, 1 x6=1c00b48e x6:1c00b48d +75658239ns 1366411 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003f2 +75658318ns 1366415 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b48e PA:1c00b48e +75658338ns 1366416 1c000e82 fff60613 addi x12, x12, -1 x12=000003f1 x12:000003f2 +75658357ns 1366417 1c000e84 00130313 addi x6, x6, 1 x6=1c00b48f x6:1c00b48e +75658377ns 1366418 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003f1 +75658456ns 1366422 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b48f PA:1c00b48f +75658476ns 1366423 1c000e82 fff60613 addi x12, x12, -1 x12=000003f0 x12:000003f1 +75658496ns 1366424 1c000e84 00130313 addi x6, x6, 1 x6=1c00b490 x6:1c00b48f +75658516ns 1366425 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003f0 +75658595ns 1366429 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b490 PA:1c00b490 +75658615ns 1366430 1c000e82 fff60613 addi x12, x12, -1 x12=000003ef x12:000003f0 +75658635ns 1366431 1c000e84 00130313 addi x6, x6, 1 x6=1c00b491 x6:1c00b490 +75658654ns 1366432 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ef +75658733ns 1366436 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b491 PA:1c00b491 +75658753ns 1366437 1c000e82 fff60613 addi x12, x12, -1 x12=000003ee x12:000003ef +75658773ns 1366438 1c000e84 00130313 addi x6, x6, 1 x6=1c00b492 x6:1c00b491 +75658793ns 1366439 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ee +75658872ns 1366443 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b492 PA:1c00b492 +75658892ns 1366444 1c000e82 fff60613 addi x12, x12, -1 x12=000003ed x12:000003ee +75658912ns 1366445 1c000e84 00130313 addi x6, x6, 1 x6=1c00b493 x6:1c00b492 +75658931ns 1366446 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ed +75659011ns 1366450 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b493 PA:1c00b493 +75659030ns 1366451 1c000e82 fff60613 addi x12, x12, -1 x12=000003ec x12:000003ed +75659050ns 1366452 1c000e84 00130313 addi x6, x6, 1 x6=1c00b494 x6:1c00b493 +75659070ns 1366453 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ec +75659149ns 1366457 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b494 PA:1c00b494 +75659169ns 1366458 1c000e82 fff60613 addi x12, x12, -1 x12=000003eb x12:000003ec +75659189ns 1366459 1c000e84 00130313 addi x6, x6, 1 x6=1c00b495 x6:1c00b494 +75659208ns 1366460 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003eb +75659288ns 1366464 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b495 PA:1c00b495 +75659307ns 1366465 1c000e82 fff60613 addi x12, x12, -1 x12=000003ea x12:000003eb +75659327ns 1366466 1c000e84 00130313 addi x6, x6, 1 x6=1c00b496 x6:1c00b495 +75659347ns 1366467 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ea +75659426ns 1366471 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b496 PA:1c00b496 +75659446ns 1366472 1c000e82 fff60613 addi x12, x12, -1 x12=000003e9 x12:000003ea +75659466ns 1366473 1c000e84 00130313 addi x6, x6, 1 x6=1c00b497 x6:1c00b496 +75659486ns 1366474 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003e9 +75659565ns 1366478 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b497 PA:1c00b497 +75659585ns 1366479 1c000e82 fff60613 addi x12, x12, -1 x12=000003e8 x12:000003e9 +75659604ns 1366480 1c000e84 00130313 addi x6, x6, 1 x6=1c00b498 x6:1c00b497 +75659624ns 1366481 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003e8 +75659703ns 1366485 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b498 PA:1c00b498 +75659723ns 1366486 1c000e82 fff60613 addi x12, x12, -1 x12=000003e7 x12:000003e8 +75659743ns 1366487 1c000e84 00130313 addi x6, x6, 1 x6=1c00b499 x6:1c00b498 +75659763ns 1366488 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003e7 +75659842ns 1366492 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b499 PA:1c00b499 +75659862ns 1366493 1c000e82 fff60613 addi x12, x12, -1 x12=000003e6 x12:000003e7 +75659881ns 1366494 1c000e84 00130313 addi x6, x6, 1 x6=1c00b49a x6:1c00b499 +75659901ns 1366495 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003e6 +75659980ns 1366499 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b49a PA:1c00b49a +75660000ns 1366500 1c000e82 fff60613 addi x12, x12, -1 x12=000003e5 x12:000003e6 +75660020ns 1366501 1c000e84 00130313 addi x6, x6, 1 x6=1c00b49b x6:1c00b49a +75660040ns 1366502 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003e5 +75660119ns 1366506 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b49b PA:1c00b49b +75660139ns 1366507 1c000e82 fff60613 addi x12, x12, -1 x12=000003e4 x12:000003e5 +75660158ns 1366508 1c000e84 00130313 addi x6, x6, 1 x6=1c00b49c x6:1c00b49b +75660178ns 1366509 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003e4 +75660257ns 1366513 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b49c PA:1c00b49c +75660277ns 1366514 1c000e82 fff60613 addi x12, x12, -1 x12=000003e3 x12:000003e4 +75660297ns 1366515 1c000e84 00130313 addi x6, x6, 1 x6=1c00b49d x6:1c00b49c +75660317ns 1366516 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003e3 +75660396ns 1366520 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b49d PA:1c00b49d +75660416ns 1366521 1c000e82 fff60613 addi x12, x12, -1 x12=000003e2 x12:000003e3 +75660436ns 1366522 1c000e84 00130313 addi x6, x6, 1 x6=1c00b49e x6:1c00b49d +75660455ns 1366523 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003e2 +75660535ns 1366527 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b49e PA:1c00b49e +75660554ns 1366528 1c000e82 fff60613 addi x12, x12, -1 x12=000003e1 x12:000003e2 +75660574ns 1366529 1c000e84 00130313 addi x6, x6, 1 x6=1c00b49f x6:1c00b49e +75660594ns 1366530 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003e1 +75660673ns 1366534 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b49f PA:1c00b49f +75660693ns 1366535 1c000e82 fff60613 addi x12, x12, -1 x12=000003e0 x12:000003e1 +75660713ns 1366536 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4a0 x6:1c00b49f +75660732ns 1366537 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003e0 +75660812ns 1366541 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4a0 PA:1c00b4a0 +75660831ns 1366542 1c000e82 fff60613 addi x12, x12, -1 x12=000003df x12:000003e0 +75660851ns 1366543 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4a1 x6:1c00b4a0 +75660871ns 1366544 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003df +75660950ns 1366548 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4a1 PA:1c00b4a1 +75660970ns 1366549 1c000e82 fff60613 addi x12, x12, -1 x12=000003de x12:000003df +75660990ns 1366550 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4a2 x6:1c00b4a1 +75661010ns 1366551 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003de +75661089ns 1366555 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4a2 PA:1c00b4a2 +75661109ns 1366556 1c000e82 fff60613 addi x12, x12, -1 x12=000003dd x12:000003de +75661128ns 1366557 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4a3 x6:1c00b4a2 +75661148ns 1366558 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003dd +75661227ns 1366562 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4a3 PA:1c00b4a3 +75661247ns 1366563 1c000e82 fff60613 addi x12, x12, -1 x12=000003dc x12:000003dd +75661267ns 1366564 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4a4 x6:1c00b4a3 +75661287ns 1366565 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003dc +75661366ns 1366569 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4a4 PA:1c00b4a4 +75661386ns 1366570 1c000e82 fff60613 addi x12, x12, -1 x12=000003db x12:000003dc +75661405ns 1366571 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4a5 x6:1c00b4a4 +75661425ns 1366572 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003db +75661504ns 1366576 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4a5 PA:1c00b4a5 +75661524ns 1366577 1c000e82 fff60613 addi x12, x12, -1 x12=000003da x12:000003db +75661544ns 1366578 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4a6 x6:1c00b4a5 +75661564ns 1366579 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003da +75661643ns 1366583 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4a6 PA:1c00b4a6 +75661663ns 1366584 1c000e82 fff60613 addi x12, x12, -1 x12=000003d9 x12:000003da +75661682ns 1366585 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4a7 x6:1c00b4a6 +75661702ns 1366586 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003d9 +75661781ns 1366590 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4a7 PA:1c00b4a7 +75661801ns 1366591 1c000e82 fff60613 addi x12, x12, -1 x12=000003d8 x12:000003d9 +75661821ns 1366592 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4a8 x6:1c00b4a7 +75661841ns 1366593 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003d8 +75661920ns 1366597 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4a8 PA:1c00b4a8 +75661940ns 1366598 1c000e82 fff60613 addi x12, x12, -1 x12=000003d7 x12:000003d8 +75661960ns 1366599 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4a9 x6:1c00b4a8 +75661979ns 1366600 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003d7 +75662059ns 1366604 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4a9 PA:1c00b4a9 +75662078ns 1366605 1c000e82 fff60613 addi x12, x12, -1 x12=000003d6 x12:000003d7 +75662098ns 1366606 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4aa x6:1c00b4a9 +75662118ns 1366607 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003d6 +75662197ns 1366611 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4aa PA:1c00b4aa +75662217ns 1366612 1c000e82 fff60613 addi x12, x12, -1 x12=000003d5 x12:000003d6 +75662237ns 1366613 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4ab x6:1c00b4aa +75662256ns 1366614 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003d5 +75662336ns 1366618 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4ab PA:1c00b4ab +75662355ns 1366619 1c000e82 fff60613 addi x12, x12, -1 x12=000003d4 x12:000003d5 +75662375ns 1366620 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4ac x6:1c00b4ab +75662395ns 1366621 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003d4 +75662474ns 1366625 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4ac PA:1c00b4ac +75662494ns 1366626 1c000e82 fff60613 addi x12, x12, -1 x12=000003d3 x12:000003d4 +75662514ns 1366627 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4ad x6:1c00b4ac +75662534ns 1366628 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003d3 +75662613ns 1366632 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4ad PA:1c00b4ad +75662632ns 1366633 1c000e82 fff60613 addi x12, x12, -1 x12=000003d2 x12:000003d3 +75662652ns 1366634 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4ae x6:1c00b4ad +75662672ns 1366635 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003d2 +75662751ns 1366639 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4ae PA:1c00b4ae +75662771ns 1366640 1c000e82 fff60613 addi x12, x12, -1 x12=000003d1 x12:000003d2 +75662791ns 1366641 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4af x6:1c00b4ae +75662811ns 1366642 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003d1 +75662890ns 1366646 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4af PA:1c00b4af +75662910ns 1366647 1c000e82 fff60613 addi x12, x12, -1 x12=000003d0 x12:000003d1 +75662929ns 1366648 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4b0 x6:1c00b4af +75662949ns 1366649 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003d0 +75663028ns 1366653 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4b0 PA:1c00b4b0 +75663048ns 1366654 1c000e82 fff60613 addi x12, x12, -1 x12=000003cf x12:000003d0 +75663068ns 1366655 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4b1 x6:1c00b4b0 +75663088ns 1366656 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003cf +75663167ns 1366660 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4b1 PA:1c00b4b1 +75663187ns 1366661 1c000e82 fff60613 addi x12, x12, -1 x12=000003ce x12:000003cf +75663206ns 1366662 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4b2 x6:1c00b4b1 +75663226ns 1366663 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ce +75663305ns 1366667 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4b2 PA:1c00b4b2 +75663325ns 1366668 1c000e82 fff60613 addi x12, x12, -1 x12=000003cd x12:000003ce +75663345ns 1366669 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4b3 x6:1c00b4b2 +75663365ns 1366670 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003cd +75663444ns 1366674 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4b3 PA:1c00b4b3 +75663464ns 1366675 1c000e82 fff60613 addi x12, x12, -1 x12=000003cc x12:000003cd +75663484ns 1366676 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4b4 x6:1c00b4b3 +75663503ns 1366677 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003cc +75663583ns 1366681 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4b4 PA:1c00b4b4 +75663602ns 1366682 1c000e82 fff60613 addi x12, x12, -1 x12=000003cb x12:000003cc +75663622ns 1366683 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4b5 x6:1c00b4b4 +75663642ns 1366684 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003cb +75663721ns 1366688 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4b5 PA:1c00b4b5 +75663741ns 1366689 1c000e82 fff60613 addi x12, x12, -1 x12=000003ca x12:000003cb +75663761ns 1366690 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4b6 x6:1c00b4b5 +75663780ns 1366691 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ca +75663860ns 1366695 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4b6 PA:1c00b4b6 +75663879ns 1366696 1c000e82 fff60613 addi x12, x12, -1 x12=000003c9 x12:000003ca +75663899ns 1366697 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4b7 x6:1c00b4b6 +75663919ns 1366698 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003c9 +75663998ns 1366702 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4b7 PA:1c00b4b7 +75664018ns 1366703 1c000e82 fff60613 addi x12, x12, -1 x12=000003c8 x12:000003c9 +75664038ns 1366704 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4b8 x6:1c00b4b7 +75664058ns 1366705 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003c8 +75664137ns 1366709 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4b8 PA:1c00b4b8 +75664156ns 1366710 1c000e82 fff60613 addi x12, x12, -1 x12=000003c7 x12:000003c8 +75664176ns 1366711 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4b9 x6:1c00b4b8 +75664196ns 1366712 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003c7 +75664275ns 1366716 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4b9 PA:1c00b4b9 +75664295ns 1366717 1c000e82 fff60613 addi x12, x12, -1 x12=000003c6 x12:000003c7 +75664315ns 1366718 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4ba x6:1c00b4b9 +75664335ns 1366719 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003c6 +75664414ns 1366723 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4ba PA:1c00b4ba +75664434ns 1366724 1c000e82 fff60613 addi x12, x12, -1 x12=000003c5 x12:000003c6 +75664453ns 1366725 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4bb x6:1c00b4ba +75664473ns 1366726 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003c5 +75664552ns 1366730 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4bb PA:1c00b4bb +75664572ns 1366731 1c000e82 fff60613 addi x12, x12, -1 x12=000003c4 x12:000003c5 +75664592ns 1366732 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4bc x6:1c00b4bb +75664612ns 1366733 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003c4 +75664691ns 1366737 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4bc PA:1c00b4bc +75664711ns 1366738 1c000e82 fff60613 addi x12, x12, -1 x12=000003c3 x12:000003c4 +75664730ns 1366739 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4bd x6:1c00b4bc +75664750ns 1366740 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003c3 +75664829ns 1366744 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4bd PA:1c00b4bd +75664849ns 1366745 1c000e82 fff60613 addi x12, x12, -1 x12=000003c2 x12:000003c3 +75664869ns 1366746 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4be x6:1c00b4bd +75664889ns 1366747 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003c2 +75664968ns 1366751 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4be PA:1c00b4be +75664988ns 1366752 1c000e82 fff60613 addi x12, x12, -1 x12=000003c1 x12:000003c2 +75665008ns 1366753 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4bf x6:1c00b4be +75665027ns 1366754 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003c1 +75665106ns 1366758 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4bf PA:1c00b4bf +75665126ns 1366759 1c000e82 fff60613 addi x12, x12, -1 x12=000003c0 x12:000003c1 +75665146ns 1366760 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4c0 x6:1c00b4bf +75665166ns 1366761 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003c0 +75665245ns 1366765 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4c0 PA:1c00b4c0 +75665265ns 1366766 1c000e82 fff60613 addi x12, x12, -1 x12=000003bf x12:000003c0 +75665285ns 1366767 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4c1 x6:1c00b4c0 +75665304ns 1366768 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003bf +75665384ns 1366772 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4c1 PA:1c00b4c1 +75665403ns 1366773 1c000e82 fff60613 addi x12, x12, -1 x12=000003be x12:000003bf +75665423ns 1366774 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4c2 x6:1c00b4c1 +75665443ns 1366775 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003be +75665522ns 1366779 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4c2 PA:1c00b4c2 +75665542ns 1366780 1c000e82 fff60613 addi x12, x12, -1 x12=000003bd x12:000003be +75665562ns 1366781 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4c3 x6:1c00b4c2 +75665581ns 1366782 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003bd +75665661ns 1366786 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4c3 PA:1c00b4c3 +75665680ns 1366787 1c000e82 fff60613 addi x12, x12, -1 x12=000003bc x12:000003bd +75665700ns 1366788 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4c4 x6:1c00b4c3 +75665720ns 1366789 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003bc +75665799ns 1366793 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4c4 PA:1c00b4c4 +75665819ns 1366794 1c000e82 fff60613 addi x12, x12, -1 x12=000003bb x12:000003bc +75665839ns 1366795 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4c5 x6:1c00b4c4 +75665859ns 1366796 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003bb +75665938ns 1366800 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4c5 PA:1c00b4c5 +75665958ns 1366801 1c000e82 fff60613 addi x12, x12, -1 x12=000003ba x12:000003bb +75665977ns 1366802 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4c6 x6:1c00b4c5 +75665997ns 1366803 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ba +75666076ns 1366807 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4c6 PA:1c00b4c6 +75666096ns 1366808 1c000e82 fff60613 addi x12, x12, -1 x12=000003b9 x12:000003ba +75666116ns 1366809 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4c7 x6:1c00b4c6 +75666136ns 1366810 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003b9 +75666215ns 1366814 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4c7 PA:1c00b4c7 +75666235ns 1366815 1c000e82 fff60613 addi x12, x12, -1 x12=000003b8 x12:000003b9 +75666254ns 1366816 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4c8 x6:1c00b4c7 +75666274ns 1366817 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003b8 +75666353ns 1366821 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4c8 PA:1c00b4c8 +75666373ns 1366822 1c000e82 fff60613 addi x12, x12, -1 x12=000003b7 x12:000003b8 +75666393ns 1366823 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4c9 x6:1c00b4c8 +75666413ns 1366824 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003b7 +75666492ns 1366828 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4c9 PA:1c00b4c9 +75666512ns 1366829 1c000e82 fff60613 addi x12, x12, -1 x12=000003b6 x12:000003b7 +75666532ns 1366830 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4ca x6:1c00b4c9 +75666551ns 1366831 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003b6 +75666630ns 1366835 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4ca PA:1c00b4ca +75666650ns 1366836 1c000e82 fff60613 addi x12, x12, -1 x12=000003b5 x12:000003b6 +75666670ns 1366837 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4cb x6:1c00b4ca +75666690ns 1366838 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003b5 +75666769ns 1366842 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4cb PA:1c00b4cb +75666789ns 1366843 1c000e82 fff60613 addi x12, x12, -1 x12=000003b4 x12:000003b5 +75666809ns 1366844 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4cc x6:1c00b4cb +75666828ns 1366845 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003b4 +75666908ns 1366849 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4cc PA:1c00b4cc +75666927ns 1366850 1c000e82 fff60613 addi x12, x12, -1 x12=000003b3 x12:000003b4 +75666947ns 1366851 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4cd x6:1c00b4cc +75666967ns 1366852 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003b3 +75667046ns 1366856 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4cd PA:1c00b4cd +75667066ns 1366857 1c000e82 fff60613 addi x12, x12, -1 x12=000003b2 x12:000003b3 +75667086ns 1366858 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4ce x6:1c00b4cd +75667105ns 1366859 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003b2 +75667185ns 1366863 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4ce PA:1c00b4ce +75667204ns 1366864 1c000e82 fff60613 addi x12, x12, -1 x12=000003b1 x12:000003b2 +75667224ns 1366865 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4cf x6:1c00b4ce +75667244ns 1366866 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003b1 +75667323ns 1366870 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4cf PA:1c00b4cf +75667343ns 1366871 1c000e82 fff60613 addi x12, x12, -1 x12=000003b0 x12:000003b1 +75667363ns 1366872 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4d0 x6:1c00b4cf +75667383ns 1366873 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003b0 +75667462ns 1366877 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4d0 PA:1c00b4d0 +75667482ns 1366878 1c000e82 fff60613 addi x12, x12, -1 x12=000003af x12:000003b0 +75667501ns 1366879 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4d1 x6:1c00b4d0 +75667521ns 1366880 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003af +75667600ns 1366884 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4d1 PA:1c00b4d1 +75667620ns 1366885 1c000e82 fff60613 addi x12, x12, -1 x12=000003ae x12:000003af +75667640ns 1366886 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4d2 x6:1c00b4d1 +75667660ns 1366887 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ae +75667739ns 1366891 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4d2 PA:1c00b4d2 +75667759ns 1366892 1c000e82 fff60613 addi x12, x12, -1 x12=000003ad x12:000003ae +75667778ns 1366893 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4d3 x6:1c00b4d2 +75667798ns 1366894 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ad +75667877ns 1366898 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4d3 PA:1c00b4d3 +75667897ns 1366899 1c000e82 fff60613 addi x12, x12, -1 x12=000003ac x12:000003ad +75667917ns 1366900 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4d4 x6:1c00b4d3 +75667937ns 1366901 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ac +75668016ns 1366905 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4d4 PA:1c00b4d4 +75668036ns 1366906 1c000e82 fff60613 addi x12, x12, -1 x12=000003ab x12:000003ac +75668055ns 1366907 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4d5 x6:1c00b4d4 +75668075ns 1366908 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003ab +75668154ns 1366912 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4d5 PA:1c00b4d5 +75668174ns 1366913 1c000e82 fff60613 addi x12, x12, -1 x12=000003aa x12:000003ab +75668194ns 1366914 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4d6 x6:1c00b4d5 +75668214ns 1366915 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003aa +75668293ns 1366919 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4d6 PA:1c00b4d6 +75668313ns 1366920 1c000e82 fff60613 addi x12, x12, -1 x12=000003a9 x12:000003aa +75668333ns 1366921 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4d7 x6:1c00b4d6 +75668352ns 1366922 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003a9 +75668432ns 1366926 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4d7 PA:1c00b4d7 +75668451ns 1366927 1c000e82 fff60613 addi x12, x12, -1 x12=000003a8 x12:000003a9 +75668471ns 1366928 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4d8 x6:1c00b4d7 +75668491ns 1366929 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003a8 +75668570ns 1366933 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4d8 PA:1c00b4d8 +75668590ns 1366934 1c000e82 fff60613 addi x12, x12, -1 x12=000003a7 x12:000003a8 +75668610ns 1366935 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4d9 x6:1c00b4d8 +75668629ns 1366936 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003a7 +75668709ns 1366940 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4d9 PA:1c00b4d9 +75668728ns 1366941 1c000e82 fff60613 addi x12, x12, -1 x12=000003a6 x12:000003a7 +75668748ns 1366942 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4da x6:1c00b4d9 +75668768ns 1366943 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003a6 +75668847ns 1366947 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4da PA:1c00b4da +75668867ns 1366948 1c000e82 fff60613 addi x12, x12, -1 x12=000003a5 x12:000003a6 +75668887ns 1366949 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4db x6:1c00b4da +75668907ns 1366950 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003a5 +75668986ns 1366954 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4db PA:1c00b4db +75669006ns 1366955 1c000e82 fff60613 addi x12, x12, -1 x12=000003a4 x12:000003a5 +75669025ns 1366956 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4dc x6:1c00b4db +75669045ns 1366957 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003a4 +75669124ns 1366961 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4dc PA:1c00b4dc +75669144ns 1366962 1c000e82 fff60613 addi x12, x12, -1 x12=000003a3 x12:000003a4 +75669164ns 1366963 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4dd x6:1c00b4dc +75669184ns 1366964 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003a3 +75669263ns 1366968 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4dd PA:1c00b4dd +75669283ns 1366969 1c000e82 fff60613 addi x12, x12, -1 x12=000003a2 x12:000003a3 +75669302ns 1366970 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4de x6:1c00b4dd +75669322ns 1366971 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003a2 +75669401ns 1366975 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4de PA:1c00b4de +75669421ns 1366976 1c000e82 fff60613 addi x12, x12, -1 x12=000003a1 x12:000003a2 +75669441ns 1366977 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4df x6:1c00b4de +75669461ns 1366978 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003a1 +75669540ns 1366982 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4df PA:1c00b4df +75669560ns 1366983 1c000e82 fff60613 addi x12, x12, -1 x12=000003a0 x12:000003a1 +75669579ns 1366984 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4e0 x6:1c00b4df +75669599ns 1366985 1c000e86 fe061ce3 bne x12, x0, -8 x12:000003a0 +75669678ns 1366989 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4e0 PA:1c00b4e0 +75669698ns 1366990 1c000e82 fff60613 addi x12, x12, -1 x12=0000039f x12:000003a0 +75669718ns 1366991 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4e1 x6:1c00b4e0 +75669738ns 1366992 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000039f +75669817ns 1366996 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4e1 PA:1c00b4e1 +75669837ns 1366997 1c000e82 fff60613 addi x12, x12, -1 x12=0000039e x12:0000039f +75669857ns 1366998 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4e2 x6:1c00b4e1 +75669876ns 1366999 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000039e +75669956ns 1367003 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4e2 PA:1c00b4e2 +75669975ns 1367004 1c000e82 fff60613 addi x12, x12, -1 x12=0000039d x12:0000039e +75669995ns 1367005 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4e3 x6:1c00b4e2 +75670015ns 1367006 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000039d +75670094ns 1367010 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4e3 PA:1c00b4e3 +75670114ns 1367011 1c000e82 fff60613 addi x12, x12, -1 x12=0000039c x12:0000039d +75670134ns 1367012 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4e4 x6:1c00b4e3 +75670153ns 1367013 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000039c +75670233ns 1367017 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4e4 PA:1c00b4e4 +75670252ns 1367018 1c000e82 fff60613 addi x12, x12, -1 x12=0000039b x12:0000039c +75670272ns 1367019 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4e5 x6:1c00b4e4 +75670292ns 1367020 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000039b +75670371ns 1367024 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4e5 PA:1c00b4e5 +75670391ns 1367025 1c000e82 fff60613 addi x12, x12, -1 x12=0000039a x12:0000039b +75670411ns 1367026 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4e6 x6:1c00b4e5 +75670431ns 1367027 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000039a +75670510ns 1367031 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4e6 PA:1c00b4e6 +75670529ns 1367032 1c000e82 fff60613 addi x12, x12, -1 x12=00000399 x12:0000039a +75670549ns 1367033 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4e7 x6:1c00b4e6 +75670569ns 1367034 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000399 +75670648ns 1367038 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4e7 PA:1c00b4e7 +75670668ns 1367039 1c000e82 fff60613 addi x12, x12, -1 x12=00000398 x12:00000399 +75670688ns 1367040 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4e8 x6:1c00b4e7 +75670708ns 1367041 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000398 +75670787ns 1367045 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4e8 PA:1c00b4e8 +75670807ns 1367046 1c000e82 fff60613 addi x12, x12, -1 x12=00000397 x12:00000398 +75670826ns 1367047 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4e9 x6:1c00b4e8 +75670846ns 1367048 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000397 +75670925ns 1367052 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4e9 PA:1c00b4e9 +75670945ns 1367053 1c000e82 fff60613 addi x12, x12, -1 x12=00000396 x12:00000397 +75670965ns 1367054 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4ea x6:1c00b4e9 +75670985ns 1367055 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000396 +75671064ns 1367059 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4ea PA:1c00b4ea +75671084ns 1367060 1c000e82 fff60613 addi x12, x12, -1 x12=00000395 x12:00000396 +75671103ns 1367061 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4eb x6:1c00b4ea +75671123ns 1367062 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000395 +75671202ns 1367066 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4eb PA:1c00b4eb +75671222ns 1367067 1c000e82 fff60613 addi x12, x12, -1 x12=00000394 x12:00000395 +75671242ns 1367068 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4ec x6:1c00b4eb +75671262ns 1367069 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000394 +75671341ns 1367073 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4ec PA:1c00b4ec +75671361ns 1367074 1c000e82 fff60613 addi x12, x12, -1 x12=00000393 x12:00000394 +75671381ns 1367075 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4ed x6:1c00b4ec +75671400ns 1367076 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000393 +75671480ns 1367080 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4ed PA:1c00b4ed +75671499ns 1367081 1c000e82 fff60613 addi x12, x12, -1 x12=00000392 x12:00000393 +75671519ns 1367082 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4ee x6:1c00b4ed +75671539ns 1367083 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000392 +75671618ns 1367087 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4ee PA:1c00b4ee +75671638ns 1367088 1c000e82 fff60613 addi x12, x12, -1 x12=00000391 x12:00000392 +75671658ns 1367089 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4ef x6:1c00b4ee +75671677ns 1367090 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000391 +75671757ns 1367094 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4ef PA:1c00b4ef +75671776ns 1367095 1c000e82 fff60613 addi x12, x12, -1 x12=00000390 x12:00000391 +75671796ns 1367096 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4f0 x6:1c00b4ef +75671816ns 1367097 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000390 +75671895ns 1367101 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4f0 PA:1c00b4f0 +75671915ns 1367102 1c000e82 fff60613 addi x12, x12, -1 x12=0000038f x12:00000390 +75671935ns 1367103 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4f1 x6:1c00b4f0 +75671955ns 1367104 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000038f +75672034ns 1367108 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4f1 PA:1c00b4f1 +75672053ns 1367109 1c000e82 fff60613 addi x12, x12, -1 x12=0000038e x12:0000038f +75672073ns 1367110 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4f2 x6:1c00b4f1 +75672093ns 1367111 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000038e +75672172ns 1367115 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4f2 PA:1c00b4f2 +75672192ns 1367116 1c000e82 fff60613 addi x12, x12, -1 x12=0000038d x12:0000038e +75672212ns 1367117 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4f3 x6:1c00b4f2 +75672232ns 1367118 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000038d +75672311ns 1367122 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4f3 PA:1c00b4f3 +75672331ns 1367123 1c000e82 fff60613 addi x12, x12, -1 x12=0000038c x12:0000038d +75672350ns 1367124 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4f4 x6:1c00b4f3 +75672370ns 1367125 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000038c +75672449ns 1367129 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4f4 PA:1c00b4f4 +75672469ns 1367130 1c000e82 fff60613 addi x12, x12, -1 x12=0000038b x12:0000038c +75672489ns 1367131 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4f5 x6:1c00b4f4 +75672509ns 1367132 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000038b +75672588ns 1367136 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4f5 PA:1c00b4f5 +75672608ns 1367137 1c000e82 fff60613 addi x12, x12, -1 x12=0000038a x12:0000038b +75672627ns 1367138 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4f6 x6:1c00b4f5 +75672647ns 1367139 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000038a +75672726ns 1367143 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4f6 PA:1c00b4f6 +75672746ns 1367144 1c000e82 fff60613 addi x12, x12, -1 x12=00000389 x12:0000038a +75672766ns 1367145 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4f7 x6:1c00b4f6 +75672786ns 1367146 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000389 +75672865ns 1367150 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4f7 PA:1c00b4f7 +75672885ns 1367151 1c000e82 fff60613 addi x12, x12, -1 x12=00000388 x12:00000389 +75672905ns 1367152 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4f8 x6:1c00b4f7 +75672924ns 1367153 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000388 +75673003ns 1367157 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4f8 PA:1c00b4f8 +75673023ns 1367158 1c000e82 fff60613 addi x12, x12, -1 x12=00000387 x12:00000388 +75673043ns 1367159 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4f9 x6:1c00b4f8 +75673063ns 1367160 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000387 +75673142ns 1367164 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4f9 PA:1c00b4f9 +75673162ns 1367165 1c000e82 fff60613 addi x12, x12, -1 x12=00000386 x12:00000387 +75673182ns 1367166 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4fa x6:1c00b4f9 +75673201ns 1367167 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000386 +75673281ns 1367171 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4fa PA:1c00b4fa +75673300ns 1367172 1c000e82 fff60613 addi x12, x12, -1 x12=00000385 x12:00000386 +75673320ns 1367173 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4fb x6:1c00b4fa +75673340ns 1367174 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000385 +75673419ns 1367178 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4fb PA:1c00b4fb +75673439ns 1367179 1c000e82 fff60613 addi x12, x12, -1 x12=00000384 x12:00000385 +75673459ns 1367180 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4fc x6:1c00b4fb +75673479ns 1367181 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000384 +75673558ns 1367185 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4fc PA:1c00b4fc +75673577ns 1367186 1c000e82 fff60613 addi x12, x12, -1 x12=00000383 x12:00000384 +75673597ns 1367187 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4fd x6:1c00b4fc +75673617ns 1367188 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000383 +75673696ns 1367192 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4fd PA:1c00b4fd +75673716ns 1367193 1c000e82 fff60613 addi x12, x12, -1 x12=00000382 x12:00000383 +75673736ns 1367194 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4fe x6:1c00b4fd +75673756ns 1367195 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000382 +75673835ns 1367199 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4fe PA:1c00b4fe +75673855ns 1367200 1c000e82 fff60613 addi x12, x12, -1 x12=00000381 x12:00000382 +75673874ns 1367201 1c000e84 00130313 addi x6, x6, 1 x6=1c00b4ff x6:1c00b4fe +75673894ns 1367202 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000381 +75673973ns 1367206 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b4ff PA:1c00b4ff +75673993ns 1367207 1c000e82 fff60613 addi x12, x12, -1 x12=00000380 x12:00000381 +75674013ns 1367208 1c000e84 00130313 addi x6, x6, 1 x6=1c00b500 x6:1c00b4ff +75674033ns 1367209 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000380 +75674112ns 1367213 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b500 PA:1c00b500 +75674132ns 1367214 1c000e82 fff60613 addi x12, x12, -1 x12=0000037f x12:00000380 +75674151ns 1367215 1c000e84 00130313 addi x6, x6, 1 x6=1c00b501 x6:1c00b500 +75674171ns 1367216 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000037f +75674250ns 1367220 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b501 PA:1c00b501 +75674270ns 1367221 1c000e82 fff60613 addi x12, x12, -1 x12=0000037e x12:0000037f +75674290ns 1367222 1c000e84 00130313 addi x6, x6, 1 x6=1c00b502 x6:1c00b501 +75674310ns 1367223 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000037e +75674389ns 1367227 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b502 PA:1c00b502 +75674409ns 1367228 1c000e82 fff60613 addi x12, x12, -1 x12=0000037d x12:0000037e +75674429ns 1367229 1c000e84 00130313 addi x6, x6, 1 x6=1c00b503 x6:1c00b502 +75674448ns 1367230 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000037d +75674527ns 1367234 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b503 PA:1c00b503 +75674547ns 1367235 1c000e82 fff60613 addi x12, x12, -1 x12=0000037c x12:0000037d +75674567ns 1367236 1c000e84 00130313 addi x6, x6, 1 x6=1c00b504 x6:1c00b503 +75674587ns 1367237 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000037c +75674666ns 1367241 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b504 PA:1c00b504 +75674686ns 1367242 1c000e82 fff60613 addi x12, x12, -1 x12=0000037b x12:0000037c +75674706ns 1367243 1c000e84 00130313 addi x6, x6, 1 x6=1c00b505 x6:1c00b504 +75674725ns 1367244 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000037b +75674805ns 1367248 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b505 PA:1c00b505 +75674824ns 1367249 1c000e82 fff60613 addi x12, x12, -1 x12=0000037a x12:0000037b +75674844ns 1367250 1c000e84 00130313 addi x6, x6, 1 x6=1c00b506 x6:1c00b505 +75674864ns 1367251 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000037a +75674943ns 1367255 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b506 PA:1c00b506 +75674963ns 1367256 1c000e82 fff60613 addi x12, x12, -1 x12=00000379 x12:0000037a +75674983ns 1367257 1c000e84 00130313 addi x6, x6, 1 x6=1c00b507 x6:1c00b506 +75675002ns 1367258 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000379 +75675082ns 1367262 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b507 PA:1c00b507 +75675101ns 1367263 1c000e82 fff60613 addi x12, x12, -1 x12=00000378 x12:00000379 +75675121ns 1367264 1c000e84 00130313 addi x6, x6, 1 x6=1c00b508 x6:1c00b507 +75675141ns 1367265 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000378 +75675220ns 1367269 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b508 PA:1c00b508 +75675240ns 1367270 1c000e82 fff60613 addi x12, x12, -1 x12=00000377 x12:00000378 +75675260ns 1367271 1c000e84 00130313 addi x6, x6, 1 x6=1c00b509 x6:1c00b508 +75675280ns 1367272 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000377 +75675359ns 1367276 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b509 PA:1c00b509 +75675379ns 1367277 1c000e82 fff60613 addi x12, x12, -1 x12=00000376 x12:00000377 +75675398ns 1367278 1c000e84 00130313 addi x6, x6, 1 x6=1c00b50a x6:1c00b509 +75675418ns 1367279 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000376 +75675497ns 1367283 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b50a PA:1c00b50a +75675517ns 1367284 1c000e82 fff60613 addi x12, x12, -1 x12=00000375 x12:00000376 +75675537ns 1367285 1c000e84 00130313 addi x6, x6, 1 x6=1c00b50b x6:1c00b50a +75675557ns 1367286 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000375 +75675636ns 1367290 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b50b PA:1c00b50b +75675656ns 1367291 1c000e82 fff60613 addi x12, x12, -1 x12=00000374 x12:00000375 +75675675ns 1367292 1c000e84 00130313 addi x6, x6, 1 x6=1c00b50c x6:1c00b50b +75675695ns 1367293 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000374 +75675774ns 1367297 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b50c PA:1c00b50c +75675794ns 1367298 1c000e82 fff60613 addi x12, x12, -1 x12=00000373 x12:00000374 +75675814ns 1367299 1c000e84 00130313 addi x6, x6, 1 x6=1c00b50d x6:1c00b50c +75675834ns 1367300 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000373 +75675913ns 1367304 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b50d PA:1c00b50d +75675933ns 1367305 1c000e82 fff60613 addi x12, x12, -1 x12=00000372 x12:00000373 +75675953ns 1367306 1c000e84 00130313 addi x6, x6, 1 x6=1c00b50e x6:1c00b50d +75675972ns 1367307 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000372 +75676051ns 1367311 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b50e PA:1c00b50e +75676071ns 1367312 1c000e82 fff60613 addi x12, x12, -1 x12=00000371 x12:00000372 +75676091ns 1367313 1c000e84 00130313 addi x6, x6, 1 x6=1c00b50f x6:1c00b50e +75676111ns 1367314 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000371 +75676190ns 1367318 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b50f PA:1c00b50f +75676210ns 1367319 1c000e82 fff60613 addi x12, x12, -1 x12=00000370 x12:00000371 +75676230ns 1367320 1c000e84 00130313 addi x6, x6, 1 x6=1c00b510 x6:1c00b50f +75676249ns 1367321 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000370 +75676329ns 1367325 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b510 PA:1c00b510 +75676348ns 1367326 1c000e82 fff60613 addi x12, x12, -1 x12=0000036f x12:00000370 +75676368ns 1367327 1c000e84 00130313 addi x6, x6, 1 x6=1c00b511 x6:1c00b510 +75676388ns 1367328 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000036f +75676467ns 1367332 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b511 PA:1c00b511 +75676487ns 1367333 1c000e82 fff60613 addi x12, x12, -1 x12=0000036e x12:0000036f +75676507ns 1367334 1c000e84 00130313 addi x6, x6, 1 x6=1c00b512 x6:1c00b511 +75676526ns 1367335 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000036e +75676606ns 1367339 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b512 PA:1c00b512 +75676625ns 1367340 1c000e82 fff60613 addi x12, x12, -1 x12=0000036d x12:0000036e +75676645ns 1367341 1c000e84 00130313 addi x6, x6, 1 x6=1c00b513 x6:1c00b512 +75676665ns 1367342 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000036d +75676744ns 1367346 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b513 PA:1c00b513 +75676764ns 1367347 1c000e82 fff60613 addi x12, x12, -1 x12=0000036c x12:0000036d +75676784ns 1367348 1c000e84 00130313 addi x6, x6, 1 x6=1c00b514 x6:1c00b513 +75676804ns 1367349 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000036c +75676883ns 1367353 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b514 PA:1c00b514 +75676903ns 1367354 1c000e82 fff60613 addi x12, x12, -1 x12=0000036b x12:0000036c +75676922ns 1367355 1c000e84 00130313 addi x6, x6, 1 x6=1c00b515 x6:1c00b514 +75676942ns 1367356 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000036b +75677021ns 1367360 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b515 PA:1c00b515 +75677041ns 1367361 1c000e82 fff60613 addi x12, x12, -1 x12=0000036a x12:0000036b +75677061ns 1367362 1c000e84 00130313 addi x6, x6, 1 x6=1c00b516 x6:1c00b515 +75677081ns 1367363 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000036a +75677160ns 1367367 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b516 PA:1c00b516 +75677180ns 1367368 1c000e82 fff60613 addi x12, x12, -1 x12=00000369 x12:0000036a +75677199ns 1367369 1c000e84 00130313 addi x6, x6, 1 x6=1c00b517 x6:1c00b516 +75677219ns 1367370 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000369 +75677298ns 1367374 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b517 PA:1c00b517 +75677318ns 1367375 1c000e82 fff60613 addi x12, x12, -1 x12=00000368 x12:00000369 +75677338ns 1367376 1c000e84 00130313 addi x6, x6, 1 x6=1c00b518 x6:1c00b517 +75677358ns 1367377 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000368 +75677437ns 1367381 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b518 PA:1c00b518 +75677457ns 1367382 1c000e82 fff60613 addi x12, x12, -1 x12=00000367 x12:00000368 +75677476ns 1367383 1c000e84 00130313 addi x6, x6, 1 x6=1c00b519 x6:1c00b518 +75677496ns 1367384 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000367 +75677575ns 1367388 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b519 PA:1c00b519 +75677595ns 1367389 1c000e82 fff60613 addi x12, x12, -1 x12=00000366 x12:00000367 +75677615ns 1367390 1c000e84 00130313 addi x6, x6, 1 x6=1c00b51a x6:1c00b519 +75677635ns 1367391 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000366 +75677714ns 1367395 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b51a PA:1c00b51a +75677734ns 1367396 1c000e82 fff60613 addi x12, x12, -1 x12=00000365 x12:00000366 +75677754ns 1367397 1c000e84 00130313 addi x6, x6, 1 x6=1c00b51b x6:1c00b51a +75677773ns 1367398 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000365 +75677853ns 1367402 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b51b PA:1c00b51b +75677872ns 1367403 1c000e82 fff60613 addi x12, x12, -1 x12=00000364 x12:00000365 +75677892ns 1367404 1c000e84 00130313 addi x6, x6, 1 x6=1c00b51c x6:1c00b51b +75677912ns 1367405 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000364 +75677991ns 1367409 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b51c PA:1c00b51c +75678011ns 1367410 1c000e82 fff60613 addi x12, x12, -1 x12=00000363 x12:00000364 +75678031ns 1367411 1c000e84 00130313 addi x6, x6, 1 x6=1c00b51d x6:1c00b51c +75678050ns 1367412 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000363 +75678130ns 1367416 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b51d PA:1c00b51d +75678149ns 1367417 1c000e82 fff60613 addi x12, x12, -1 x12=00000362 x12:00000363 +75678169ns 1367418 1c000e84 00130313 addi x6, x6, 1 x6=1c00b51e x6:1c00b51d +75678189ns 1367419 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000362 +75678268ns 1367423 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b51e PA:1c00b51e +75678288ns 1367424 1c000e82 fff60613 addi x12, x12, -1 x12=00000361 x12:00000362 +75678308ns 1367425 1c000e84 00130313 addi x6, x6, 1 x6=1c00b51f x6:1c00b51e +75678328ns 1367426 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000361 +75678407ns 1367430 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b51f PA:1c00b51f +75678427ns 1367431 1c000e82 fff60613 addi x12, x12, -1 x12=00000360 x12:00000361 +75678446ns 1367432 1c000e84 00130313 addi x6, x6, 1 x6=1c00b520 x6:1c00b51f +75678466ns 1367433 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000360 +75678545ns 1367437 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b520 PA:1c00b520 +75678565ns 1367438 1c000e82 fff60613 addi x12, x12, -1 x12=0000035f x12:00000360 +75678585ns 1367439 1c000e84 00130313 addi x6, x6, 1 x6=1c00b521 x6:1c00b520 +75678605ns 1367440 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000035f +75678684ns 1367444 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b521 PA:1c00b521 +75678704ns 1367445 1c000e82 fff60613 addi x12, x12, -1 x12=0000035e x12:0000035f +75678723ns 1367446 1c000e84 00130313 addi x6, x6, 1 x6=1c00b522 x6:1c00b521 +75678743ns 1367447 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000035e +75678822ns 1367451 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b522 PA:1c00b522 +75678842ns 1367452 1c000e82 fff60613 addi x12, x12, -1 x12=0000035d x12:0000035e +75678862ns 1367453 1c000e84 00130313 addi x6, x6, 1 x6=1c00b523 x6:1c00b522 +75678882ns 1367454 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000035d +75678961ns 1367458 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b523 PA:1c00b523 +75678981ns 1367459 1c000e82 fff60613 addi x12, x12, -1 x12=0000035c x12:0000035d +75679000ns 1367460 1c000e84 00130313 addi x6, x6, 1 x6=1c00b524 x6:1c00b523 +75679020ns 1367461 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000035c +75679099ns 1367465 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b524 PA:1c00b524 +75679119ns 1367466 1c000e82 fff60613 addi x12, x12, -1 x12=0000035b x12:0000035c +75679139ns 1367467 1c000e84 00130313 addi x6, x6, 1 x6=1c00b525 x6:1c00b524 +75679159ns 1367468 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000035b +75679238ns 1367472 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b525 PA:1c00b525 +75679258ns 1367473 1c000e82 fff60613 addi x12, x12, -1 x12=0000035a x12:0000035b +75679278ns 1367474 1c000e84 00130313 addi x6, x6, 1 x6=1c00b526 x6:1c00b525 +75679297ns 1367475 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000035a +75679377ns 1367479 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b526 PA:1c00b526 +75679396ns 1367480 1c000e82 fff60613 addi x12, x12, -1 x12=00000359 x12:0000035a +75679416ns 1367481 1c000e84 00130313 addi x6, x6, 1 x6=1c00b527 x6:1c00b526 +75679436ns 1367482 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000359 +75679515ns 1367486 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b527 PA:1c00b527 +75679535ns 1367487 1c000e82 fff60613 addi x12, x12, -1 x12=00000358 x12:00000359 +75679555ns 1367488 1c000e84 00130313 addi x6, x6, 1 x6=1c00b528 x6:1c00b527 +75679574ns 1367489 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000358 +75679654ns 1367493 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b528 PA:1c00b528 +75679673ns 1367494 1c000e82 fff60613 addi x12, x12, -1 x12=00000357 x12:00000358 +75679693ns 1367495 1c000e84 00130313 addi x6, x6, 1 x6=1c00b529 x6:1c00b528 +75679713ns 1367496 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000357 +75679792ns 1367500 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b529 PA:1c00b529 +75679812ns 1367501 1c000e82 fff60613 addi x12, x12, -1 x12=00000356 x12:00000357 +75679832ns 1367502 1c000e84 00130313 addi x6, x6, 1 x6=1c00b52a x6:1c00b529 +75679852ns 1367503 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000356 +75679931ns 1367507 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b52a PA:1c00b52a +75679950ns 1367508 1c000e82 fff60613 addi x12, x12, -1 x12=00000355 x12:00000356 +75679970ns 1367509 1c000e84 00130313 addi x6, x6, 1 x6=1c00b52b x6:1c00b52a +75679990ns 1367510 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000355 +75680069ns 1367514 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b52b PA:1c00b52b +75680089ns 1367515 1c000e82 fff60613 addi x12, x12, -1 x12=00000354 x12:00000355 +75680109ns 1367516 1c000e84 00130313 addi x6, x6, 1 x6=1c00b52c x6:1c00b52b +75680129ns 1367517 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000354 +75680208ns 1367521 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b52c PA:1c00b52c +75680228ns 1367522 1c000e82 fff60613 addi x12, x12, -1 x12=00000353 x12:00000354 +75680247ns 1367523 1c000e84 00130313 addi x6, x6, 1 x6=1c00b52d x6:1c00b52c +75680267ns 1367524 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000353 +75680346ns 1367528 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b52d PA:1c00b52d +75680366ns 1367529 1c000e82 fff60613 addi x12, x12, -1 x12=00000352 x12:00000353 +75680386ns 1367530 1c000e84 00130313 addi x6, x6, 1 x6=1c00b52e x6:1c00b52d +75680406ns 1367531 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000352 +75680485ns 1367535 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b52e PA:1c00b52e +75680505ns 1367536 1c000e82 fff60613 addi x12, x12, -1 x12=00000351 x12:00000352 +75680524ns 1367537 1c000e84 00130313 addi x6, x6, 1 x6=1c00b52f x6:1c00b52e +75680544ns 1367538 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000351 +75680623ns 1367542 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b52f PA:1c00b52f +75680643ns 1367543 1c000e82 fff60613 addi x12, x12, -1 x12=00000350 x12:00000351 +75680663ns 1367544 1c000e84 00130313 addi x6, x6, 1 x6=1c00b530 x6:1c00b52f +75680683ns 1367545 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000350 +75680762ns 1367549 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b530 PA:1c00b530 +75680782ns 1367550 1c000e82 fff60613 addi x12, x12, -1 x12=0000034f x12:00000350 +75680802ns 1367551 1c000e84 00130313 addi x6, x6, 1 x6=1c00b531 x6:1c00b530 +75680821ns 1367552 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000034f +75680901ns 1367556 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b531 PA:1c00b531 +75680920ns 1367557 1c000e82 fff60613 addi x12, x12, -1 x12=0000034e x12:0000034f +75680940ns 1367558 1c000e84 00130313 addi x6, x6, 1 x6=1c00b532 x6:1c00b531 +75680960ns 1367559 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000034e +75681039ns 1367563 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b532 PA:1c00b532 +75681059ns 1367564 1c000e82 fff60613 addi x12, x12, -1 x12=0000034d x12:0000034e +75681079ns 1367565 1c000e84 00130313 addi x6, x6, 1 x6=1c00b533 x6:1c00b532 +75681098ns 1367566 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000034d +75681178ns 1367570 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b533 PA:1c00b533 +75681197ns 1367571 1c000e82 fff60613 addi x12, x12, -1 x12=0000034c x12:0000034d +75681217ns 1367572 1c000e84 00130313 addi x6, x6, 1 x6=1c00b534 x6:1c00b533 +75681237ns 1367573 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000034c +75681316ns 1367577 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b534 PA:1c00b534 +75681336ns 1367578 1c000e82 fff60613 addi x12, x12, -1 x12=0000034b x12:0000034c +75681356ns 1367579 1c000e84 00130313 addi x6, x6, 1 x6=1c00b535 x6:1c00b534 +75681376ns 1367580 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000034b +75681455ns 1367584 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b535 PA:1c00b535 +75681474ns 1367585 1c000e82 fff60613 addi x12, x12, -1 x12=0000034a x12:0000034b +75681494ns 1367586 1c000e84 00130313 addi x6, x6, 1 x6=1c00b536 x6:1c00b535 +75681514ns 1367587 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000034a +75681593ns 1367591 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b536 PA:1c00b536 +75681613ns 1367592 1c000e82 fff60613 addi x12, x12, -1 x12=00000349 x12:0000034a +75681633ns 1367593 1c000e84 00130313 addi x6, x6, 1 x6=1c00b537 x6:1c00b536 +75681653ns 1367594 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000349 +75681732ns 1367598 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b537 PA:1c00b537 +75681752ns 1367599 1c000e82 fff60613 addi x12, x12, -1 x12=00000348 x12:00000349 +75681771ns 1367600 1c000e84 00130313 addi x6, x6, 1 x6=1c00b538 x6:1c00b537 +75681791ns 1367601 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000348 +75681870ns 1367605 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b538 PA:1c00b538 +75681890ns 1367606 1c000e82 fff60613 addi x12, x12, -1 x12=00000347 x12:00000348 +75681910ns 1367607 1c000e84 00130313 addi x6, x6, 1 x6=1c00b539 x6:1c00b538 +75681930ns 1367608 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000347 +75682009ns 1367612 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b539 PA:1c00b539 +75682029ns 1367613 1c000e82 fff60613 addi x12, x12, -1 x12=00000346 x12:00000347 +75682048ns 1367614 1c000e84 00130313 addi x6, x6, 1 x6=1c00b53a x6:1c00b539 +75682068ns 1367615 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000346 +75682147ns 1367619 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b53a PA:1c00b53a +75682167ns 1367620 1c000e82 fff60613 addi x12, x12, -1 x12=00000345 x12:00000346 +75682187ns 1367621 1c000e84 00130313 addi x6, x6, 1 x6=1c00b53b x6:1c00b53a +75682207ns 1367622 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000345 +75682286ns 1367626 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b53b PA:1c00b53b +75682306ns 1367627 1c000e82 fff60613 addi x12, x12, -1 x12=00000344 x12:00000345 +75682326ns 1367628 1c000e84 00130313 addi x6, x6, 1 x6=1c00b53c x6:1c00b53b +75682345ns 1367629 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000344 +75682424ns 1367633 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b53c PA:1c00b53c +75682444ns 1367634 1c000e82 fff60613 addi x12, x12, -1 x12=00000343 x12:00000344 +75682464ns 1367635 1c000e84 00130313 addi x6, x6, 1 x6=1c00b53d x6:1c00b53c +75682484ns 1367636 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000343 +75682563ns 1367640 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b53d PA:1c00b53d +75682583ns 1367641 1c000e82 fff60613 addi x12, x12, -1 x12=00000342 x12:00000343 +75682603ns 1367642 1c000e84 00130313 addi x6, x6, 1 x6=1c00b53e x6:1c00b53d +75682622ns 1367643 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000342 +75682702ns 1367647 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b53e PA:1c00b53e +75682721ns 1367648 1c000e82 fff60613 addi x12, x12, -1 x12=00000341 x12:00000342 +75682741ns 1367649 1c000e84 00130313 addi x6, x6, 1 x6=1c00b53f x6:1c00b53e +75682761ns 1367650 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000341 +75682840ns 1367654 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b53f PA:1c00b53f +75682860ns 1367655 1c000e82 fff60613 addi x12, x12, -1 x12=00000340 x12:00000341 +75682880ns 1367656 1c000e84 00130313 addi x6, x6, 1 x6=1c00b540 x6:1c00b53f +75682899ns 1367657 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000340 +75682979ns 1367661 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b540 PA:1c00b540 +75682998ns 1367662 1c000e82 fff60613 addi x12, x12, -1 x12=0000033f x12:00000340 +75683018ns 1367663 1c000e84 00130313 addi x6, x6, 1 x6=1c00b541 x6:1c00b540 +75683038ns 1367664 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000033f +75683117ns 1367668 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b541 PA:1c00b541 +75683137ns 1367669 1c000e82 fff60613 addi x12, x12, -1 x12=0000033e x12:0000033f +75683157ns 1367670 1c000e84 00130313 addi x6, x6, 1 x6=1c00b542 x6:1c00b541 +75683177ns 1367671 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000033e +75683256ns 1367675 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b542 PA:1c00b542 +75683276ns 1367676 1c000e82 fff60613 addi x12, x12, -1 x12=0000033d x12:0000033e +75683295ns 1367677 1c000e84 00130313 addi x6, x6, 1 x6=1c00b543 x6:1c00b542 +75683315ns 1367678 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000033d +75683394ns 1367682 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b543 PA:1c00b543 +75683414ns 1367683 1c000e82 fff60613 addi x12, x12, -1 x12=0000033c x12:0000033d +75683434ns 1367684 1c000e84 00130313 addi x6, x6, 1 x6=1c00b544 x6:1c00b543 +75683454ns 1367685 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000033c +75683533ns 1367689 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b544 PA:1c00b544 +75683553ns 1367690 1c000e82 fff60613 addi x12, x12, -1 x12=0000033b x12:0000033c +75683572ns 1367691 1c000e84 00130313 addi x6, x6, 1 x6=1c00b545 x6:1c00b544 +75683592ns 1367692 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000033b +75683671ns 1367696 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b545 PA:1c00b545 +75683691ns 1367697 1c000e82 fff60613 addi x12, x12, -1 x12=0000033a x12:0000033b +75683711ns 1367698 1c000e84 00130313 addi x6, x6, 1 x6=1c00b546 x6:1c00b545 +75683731ns 1367699 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000033a +75683810ns 1367703 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b546 PA:1c00b546 +75683830ns 1367704 1c000e82 fff60613 addi x12, x12, -1 x12=00000339 x12:0000033a +75683850ns 1367705 1c000e84 00130313 addi x6, x6, 1 x6=1c00b547 x6:1c00b546 +75683869ns 1367706 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000339 +75683948ns 1367710 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b547 PA:1c00b547 +75683968ns 1367711 1c000e82 fff60613 addi x12, x12, -1 x12=00000338 x12:00000339 +75683988ns 1367712 1c000e84 00130313 addi x6, x6, 1 x6=1c00b548 x6:1c00b547 +75684008ns 1367713 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000338 +75684087ns 1367717 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b548 PA:1c00b548 +75684107ns 1367718 1c000e82 fff60613 addi x12, x12, -1 x12=00000337 x12:00000338 +75684127ns 1367719 1c000e84 00130313 addi x6, x6, 1 x6=1c00b549 x6:1c00b548 +75684146ns 1367720 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000337 +75684226ns 1367724 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b549 PA:1c00b549 +75684245ns 1367725 1c000e82 fff60613 addi x12, x12, -1 x12=00000336 x12:00000337 +75684265ns 1367726 1c000e84 00130313 addi x6, x6, 1 x6=1c00b54a x6:1c00b549 +75684285ns 1367727 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000336 +75684364ns 1367731 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b54a PA:1c00b54a +75684384ns 1367732 1c000e82 fff60613 addi x12, x12, -1 x12=00000335 x12:00000336 +75684404ns 1367733 1c000e84 00130313 addi x6, x6, 1 x6=1c00b54b x6:1c00b54a +75684423ns 1367734 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000335 +75684503ns 1367738 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b54b PA:1c00b54b +75684522ns 1367739 1c000e82 fff60613 addi x12, x12, -1 x12=00000334 x12:00000335 +75684542ns 1367740 1c000e84 00130313 addi x6, x6, 1 x6=1c00b54c x6:1c00b54b +75684562ns 1367741 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000334 +75684641ns 1367745 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b54c PA:1c00b54c +75684661ns 1367746 1c000e82 fff60613 addi x12, x12, -1 x12=00000333 x12:00000334 +75684681ns 1367747 1c000e84 00130313 addi x6, x6, 1 x6=1c00b54d x6:1c00b54c +75684701ns 1367748 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000333 +75684780ns 1367752 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b54d PA:1c00b54d +75684800ns 1367753 1c000e82 fff60613 addi x12, x12, -1 x12=00000332 x12:00000333 +75684819ns 1367754 1c000e84 00130313 addi x6, x6, 1 x6=1c00b54e x6:1c00b54d +75684839ns 1367755 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000332 +75684918ns 1367759 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b54e PA:1c00b54e +75684938ns 1367760 1c000e82 fff60613 addi x12, x12, -1 x12=00000331 x12:00000332 +75684958ns 1367761 1c000e84 00130313 addi x6, x6, 1 x6=1c00b54f x6:1c00b54e +75684978ns 1367762 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000331 +75685057ns 1367766 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b54f PA:1c00b54f +75685077ns 1367767 1c000e82 fff60613 addi x12, x12, -1 x12=00000330 x12:00000331 +75685096ns 1367768 1c000e84 00130313 addi x6, x6, 1 x6=1c00b550 x6:1c00b54f +75685116ns 1367769 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000330 +75685195ns 1367773 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b550 PA:1c00b550 +75685215ns 1367774 1c000e82 fff60613 addi x12, x12, -1 x12=0000032f x12:00000330 +75685235ns 1367775 1c000e84 00130313 addi x6, x6, 1 x6=1c00b551 x6:1c00b550 +75685255ns 1367776 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000032f +75685334ns 1367780 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b551 PA:1c00b551 +75685354ns 1367781 1c000e82 fff60613 addi x12, x12, -1 x12=0000032e x12:0000032f +75685373ns 1367782 1c000e84 00130313 addi x6, x6, 1 x6=1c00b552 x6:1c00b551 +75685393ns 1367783 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000032e +75685472ns 1367787 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b552 PA:1c00b552 +75685492ns 1367788 1c000e82 fff60613 addi x12, x12, -1 x12=0000032d x12:0000032e +75685512ns 1367789 1c000e84 00130313 addi x6, x6, 1 x6=1c00b553 x6:1c00b552 +75685532ns 1367790 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000032d +75685611ns 1367794 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b553 PA:1c00b553 +75685631ns 1367795 1c000e82 fff60613 addi x12, x12, -1 x12=0000032c x12:0000032d +75685651ns 1367796 1c000e84 00130313 addi x6, x6, 1 x6=1c00b554 x6:1c00b553 +75685670ns 1367797 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000032c +75685750ns 1367801 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b554 PA:1c00b554 +75685769ns 1367802 1c000e82 fff60613 addi x12, x12, -1 x12=0000032b x12:0000032c +75685789ns 1367803 1c000e84 00130313 addi x6, x6, 1 x6=1c00b555 x6:1c00b554 +75685809ns 1367804 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000032b +75685888ns 1367808 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b555 PA:1c00b555 +75685908ns 1367809 1c000e82 fff60613 addi x12, x12, -1 x12=0000032a x12:0000032b +75685928ns 1367810 1c000e84 00130313 addi x6, x6, 1 x6=1c00b556 x6:1c00b555 +75685947ns 1367811 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000032a +75686027ns 1367815 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b556 PA:1c00b556 +75686046ns 1367816 1c000e82 fff60613 addi x12, x12, -1 x12=00000329 x12:0000032a +75686066ns 1367817 1c000e84 00130313 addi x6, x6, 1 x6=1c00b557 x6:1c00b556 +75686086ns 1367818 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000329 +75686165ns 1367822 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b557 PA:1c00b557 +75686185ns 1367823 1c000e82 fff60613 addi x12, x12, -1 x12=00000328 x12:00000329 +75686205ns 1367824 1c000e84 00130313 addi x6, x6, 1 x6=1c00b558 x6:1c00b557 +75686225ns 1367825 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000328 +75686304ns 1367829 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b558 PA:1c00b558 +75686324ns 1367830 1c000e82 fff60613 addi x12, x12, -1 x12=00000327 x12:00000328 +75686343ns 1367831 1c000e84 00130313 addi x6, x6, 1 x6=1c00b559 x6:1c00b558 +75686363ns 1367832 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000327 +75686442ns 1367836 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b559 PA:1c00b559 +75686462ns 1367837 1c000e82 fff60613 addi x12, x12, -1 x12=00000326 x12:00000327 +75686482ns 1367838 1c000e84 00130313 addi x6, x6, 1 x6=1c00b55a x6:1c00b559 +75686502ns 1367839 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000326 +75686581ns 1367843 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b55a PA:1c00b55a +75686601ns 1367844 1c000e82 fff60613 addi x12, x12, -1 x12=00000325 x12:00000326 +75686620ns 1367845 1c000e84 00130313 addi x6, x6, 1 x6=1c00b55b x6:1c00b55a +75686640ns 1367846 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000325 +75686719ns 1367850 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b55b PA:1c00b55b +75686739ns 1367851 1c000e82 fff60613 addi x12, x12, -1 x12=00000324 x12:00000325 +75686759ns 1367852 1c000e84 00130313 addi x6, x6, 1 x6=1c00b55c x6:1c00b55b +75686779ns 1367853 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000324 +75686858ns 1367857 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b55c PA:1c00b55c +75686878ns 1367858 1c000e82 fff60613 addi x12, x12, -1 x12=00000323 x12:00000324 +75686897ns 1367859 1c000e84 00130313 addi x6, x6, 1 x6=1c00b55d x6:1c00b55c +75686917ns 1367860 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000323 +75686996ns 1367864 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b55d PA:1c00b55d +75687016ns 1367865 1c000e82 fff60613 addi x12, x12, -1 x12=00000322 x12:00000323 +75687036ns 1367866 1c000e84 00130313 addi x6, x6, 1 x6=1c00b55e x6:1c00b55d +75687056ns 1367867 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000322 +75687135ns 1367871 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b55e PA:1c00b55e +75687155ns 1367872 1c000e82 fff60613 addi x12, x12, -1 x12=00000321 x12:00000322 +75687175ns 1367873 1c000e84 00130313 addi x6, x6, 1 x6=1c00b55f x6:1c00b55e +75687194ns 1367874 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000321 +75687274ns 1367878 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b55f PA:1c00b55f +75687293ns 1367879 1c000e82 fff60613 addi x12, x12, -1 x12=00000320 x12:00000321 +75687313ns 1367880 1c000e84 00130313 addi x6, x6, 1 x6=1c00b560 x6:1c00b55f +75687333ns 1367881 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000320 +75687412ns 1367885 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b560 PA:1c00b560 +75687432ns 1367886 1c000e82 fff60613 addi x12, x12, -1 x12=0000031f x12:00000320 +75687452ns 1367887 1c000e84 00130313 addi x6, x6, 1 x6=1c00b561 x6:1c00b560 +75687471ns 1367888 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000031f +75687551ns 1367892 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b561 PA:1c00b561 +75687570ns 1367893 1c000e82 fff60613 addi x12, x12, -1 x12=0000031e x12:0000031f +75687590ns 1367894 1c000e84 00130313 addi x6, x6, 1 x6=1c00b562 x6:1c00b561 +75687610ns 1367895 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000031e +75687689ns 1367899 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b562 PA:1c00b562 +75687709ns 1367900 1c000e82 fff60613 addi x12, x12, -1 x12=0000031d x12:0000031e +75687729ns 1367901 1c000e84 00130313 addi x6, x6, 1 x6=1c00b563 x6:1c00b562 +75687749ns 1367902 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000031d +75687828ns 1367906 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b563 PA:1c00b563 +75687847ns 1367907 1c000e82 fff60613 addi x12, x12, -1 x12=0000031c x12:0000031d +75687867ns 1367908 1c000e84 00130313 addi x6, x6, 1 x6=1c00b564 x6:1c00b563 +75687887ns 1367909 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000031c +75687966ns 1367913 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b564 PA:1c00b564 +75687986ns 1367914 1c000e82 fff60613 addi x12, x12, -1 x12=0000031b x12:0000031c +75688006ns 1367915 1c000e84 00130313 addi x6, x6, 1 x6=1c00b565 x6:1c00b564 +75688026ns 1367916 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000031b +75688105ns 1367920 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b565 PA:1c00b565 +75688125ns 1367921 1c000e82 fff60613 addi x12, x12, -1 x12=0000031a x12:0000031b +75688144ns 1367922 1c000e84 00130313 addi x6, x6, 1 x6=1c00b566 x6:1c00b565 +75688164ns 1367923 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000031a +75688243ns 1367927 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b566 PA:1c00b566 +75688263ns 1367928 1c000e82 fff60613 addi x12, x12, -1 x12=00000319 x12:0000031a +75688283ns 1367929 1c000e84 00130313 addi x6, x6, 1 x6=1c00b567 x6:1c00b566 +75688303ns 1367930 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000319 +75688382ns 1367934 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b567 PA:1c00b567 +75688402ns 1367935 1c000e82 fff60613 addi x12, x12, -1 x12=00000318 x12:00000319 +75688421ns 1367936 1c000e84 00130313 addi x6, x6, 1 x6=1c00b568 x6:1c00b567 +75688441ns 1367937 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000318 +75688520ns 1367941 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b568 PA:1c00b568 +75688540ns 1367942 1c000e82 fff60613 addi x12, x12, -1 x12=00000317 x12:00000318 +75688560ns 1367943 1c000e84 00130313 addi x6, x6, 1 x6=1c00b569 x6:1c00b568 +75688580ns 1367944 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000317 +75688659ns 1367948 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b569 PA:1c00b569 +75688679ns 1367949 1c000e82 fff60613 addi x12, x12, -1 x12=00000316 x12:00000317 +75688699ns 1367950 1c000e84 00130313 addi x6, x6, 1 x6=1c00b56a x6:1c00b569 +75688718ns 1367951 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000316 +75688798ns 1367955 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b56a PA:1c00b56a +75688817ns 1367956 1c000e82 fff60613 addi x12, x12, -1 x12=00000315 x12:00000316 +75688837ns 1367957 1c000e84 00130313 addi x6, x6, 1 x6=1c00b56b x6:1c00b56a +75688857ns 1367958 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000315 +75688936ns 1367962 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b56b PA:1c00b56b +75688956ns 1367963 1c000e82 fff60613 addi x12, x12, -1 x12=00000314 x12:00000315 +75688976ns 1367964 1c000e84 00130313 addi x6, x6, 1 x6=1c00b56c x6:1c00b56b +75688995ns 1367965 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000314 +75689075ns 1367969 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b56c PA:1c00b56c +75689094ns 1367970 1c000e82 fff60613 addi x12, x12, -1 x12=00000313 x12:00000314 +75689114ns 1367971 1c000e84 00130313 addi x6, x6, 1 x6=1c00b56d x6:1c00b56c +75689134ns 1367972 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000313 +75689213ns 1367976 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b56d PA:1c00b56d +75689233ns 1367977 1c000e82 fff60613 addi x12, x12, -1 x12=00000312 x12:00000313 +75689253ns 1367978 1c000e84 00130313 addi x6, x6, 1 x6=1c00b56e x6:1c00b56d +75689273ns 1367979 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000312 +75689352ns 1367983 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b56e PA:1c00b56e +75689371ns 1367984 1c000e82 fff60613 addi x12, x12, -1 x12=00000311 x12:00000312 +75689391ns 1367985 1c000e84 00130313 addi x6, x6, 1 x6=1c00b56f x6:1c00b56e +75689411ns 1367986 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000311 +75689490ns 1367990 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b56f PA:1c00b56f +75689510ns 1367991 1c000e82 fff60613 addi x12, x12, -1 x12=00000310 x12:00000311 +75689530ns 1367992 1c000e84 00130313 addi x6, x6, 1 x6=1c00b570 x6:1c00b56f +75689550ns 1367993 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000310 +75689629ns 1367997 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b570 PA:1c00b570 +75689649ns 1367998 1c000e82 fff60613 addi x12, x12, -1 x12=0000030f x12:00000310 +75689668ns 1367999 1c000e84 00130313 addi x6, x6, 1 x6=1c00b571 x6:1c00b570 +75689688ns 1368000 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000030f +75689767ns 1368004 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b571 PA:1c00b571 +75689787ns 1368005 1c000e82 fff60613 addi x12, x12, -1 x12=0000030e x12:0000030f +75689807ns 1368006 1c000e84 00130313 addi x6, x6, 1 x6=1c00b572 x6:1c00b571 +75689827ns 1368007 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000030e +75689906ns 1368011 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b572 PA:1c00b572 +75689926ns 1368012 1c000e82 fff60613 addi x12, x12, -1 x12=0000030d x12:0000030e +75689945ns 1368013 1c000e84 00130313 addi x6, x6, 1 x6=1c00b573 x6:1c00b572 +75689965ns 1368014 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000030d +75690044ns 1368018 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b573 PA:1c00b573 +75690064ns 1368019 1c000e82 fff60613 addi x12, x12, -1 x12=0000030c x12:0000030d +75690084ns 1368020 1c000e84 00130313 addi x6, x6, 1 x6=1c00b574 x6:1c00b573 +75690104ns 1368021 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000030c +75690183ns 1368025 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b574 PA:1c00b574 +75690203ns 1368026 1c000e82 fff60613 addi x12, x12, -1 x12=0000030b x12:0000030c +75690223ns 1368027 1c000e84 00130313 addi x6, x6, 1 x6=1c00b575 x6:1c00b574 +75690242ns 1368028 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000030b +75690321ns 1368032 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b575 PA:1c00b575 +75690341ns 1368033 1c000e82 fff60613 addi x12, x12, -1 x12=0000030a x12:0000030b +75690361ns 1368034 1c000e84 00130313 addi x6, x6, 1 x6=1c00b576 x6:1c00b575 +75690381ns 1368035 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000030a +75690460ns 1368039 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b576 PA:1c00b576 +75690480ns 1368040 1c000e82 fff60613 addi x12, x12, -1 x12=00000309 x12:0000030a +75690500ns 1368041 1c000e84 00130313 addi x6, x6, 1 x6=1c00b577 x6:1c00b576 +75690519ns 1368042 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000309 +75690599ns 1368046 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b577 PA:1c00b577 +75690618ns 1368047 1c000e82 fff60613 addi x12, x12, -1 x12=00000308 x12:00000309 +75690638ns 1368048 1c000e84 00130313 addi x6, x6, 1 x6=1c00b578 x6:1c00b577 +75690658ns 1368049 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000308 +75690737ns 1368053 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b578 PA:1c00b578 +75690757ns 1368054 1c000e82 fff60613 addi x12, x12, -1 x12=00000307 x12:00000308 +75690777ns 1368055 1c000e84 00130313 addi x6, x6, 1 x6=1c00b579 x6:1c00b578 +75690797ns 1368056 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000307 +75690876ns 1368060 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b579 PA:1c00b579 +75690895ns 1368061 1c000e82 fff60613 addi x12, x12, -1 x12=00000306 x12:00000307 +75690915ns 1368062 1c000e84 00130313 addi x6, x6, 1 x6=1c00b57a x6:1c00b579 +75690935ns 1368063 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000306 +75691014ns 1368067 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b57a PA:1c00b57a +75691034ns 1368068 1c000e82 fff60613 addi x12, x12, -1 x12=00000305 x12:00000306 +75691054ns 1368069 1c000e84 00130313 addi x6, x6, 1 x6=1c00b57b x6:1c00b57a +75691074ns 1368070 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000305 +75691153ns 1368074 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b57b PA:1c00b57b +75691173ns 1368075 1c000e82 fff60613 addi x12, x12, -1 x12=00000304 x12:00000305 +75691192ns 1368076 1c000e84 00130313 addi x6, x6, 1 x6=1c00b57c x6:1c00b57b +75691212ns 1368077 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000304 +75691291ns 1368081 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b57c PA:1c00b57c +75691311ns 1368082 1c000e82 fff60613 addi x12, x12, -1 x12=00000303 x12:00000304 +75691331ns 1368083 1c000e84 00130313 addi x6, x6, 1 x6=1c00b57d x6:1c00b57c +75691351ns 1368084 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000303 +75691430ns 1368088 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b57d PA:1c00b57d +75691450ns 1368089 1c000e82 fff60613 addi x12, x12, -1 x12=00000302 x12:00000303 +75691469ns 1368090 1c000e84 00130313 addi x6, x6, 1 x6=1c00b57e x6:1c00b57d +75691489ns 1368091 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000302 +75691568ns 1368095 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b57e PA:1c00b57e +75691588ns 1368096 1c000e82 fff60613 addi x12, x12, -1 x12=00000301 x12:00000302 +75691608ns 1368097 1c000e84 00130313 addi x6, x6, 1 x6=1c00b57f x6:1c00b57e +75691628ns 1368098 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000301 +75691707ns 1368102 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b57f PA:1c00b57f +75691727ns 1368103 1c000e82 fff60613 addi x12, x12, -1 x12=00000300 x12:00000301 +75691747ns 1368104 1c000e84 00130313 addi x6, x6, 1 x6=1c00b580 x6:1c00b57f +75691766ns 1368105 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000300 +75691845ns 1368109 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b580 PA:1c00b580 +75691865ns 1368110 1c000e82 fff60613 addi x12, x12, -1 x12=000002ff x12:00000300 +75691885ns 1368111 1c000e84 00130313 addi x6, x6, 1 x6=1c00b581 x6:1c00b580 +75691905ns 1368112 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ff +75691984ns 1368116 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b581 PA:1c00b581 +75692004ns 1368117 1c000e82 fff60613 addi x12, x12, -1 x12=000002fe x12:000002ff +75692024ns 1368118 1c000e84 00130313 addi x6, x6, 1 x6=1c00b582 x6:1c00b581 +75692043ns 1368119 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002fe +75692123ns 1368123 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b582 PA:1c00b582 +75692142ns 1368124 1c000e82 fff60613 addi x12, x12, -1 x12=000002fd x12:000002fe +75692162ns 1368125 1c000e84 00130313 addi x6, x6, 1 x6=1c00b583 x6:1c00b582 +75692182ns 1368126 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002fd +75692261ns 1368130 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b583 PA:1c00b583 +75692281ns 1368131 1c000e82 fff60613 addi x12, x12, -1 x12=000002fc x12:000002fd +75692301ns 1368132 1c000e84 00130313 addi x6, x6, 1 x6=1c00b584 x6:1c00b583 +75692320ns 1368133 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002fc +75692400ns 1368137 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b584 PA:1c00b584 +75692419ns 1368138 1c000e82 fff60613 addi x12, x12, -1 x12=000002fb x12:000002fc +75692439ns 1368139 1c000e84 00130313 addi x6, x6, 1 x6=1c00b585 x6:1c00b584 +75692459ns 1368140 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002fb +75692538ns 1368144 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b585 PA:1c00b585 +75692558ns 1368145 1c000e82 fff60613 addi x12, x12, -1 x12=000002fa x12:000002fb +75692578ns 1368146 1c000e84 00130313 addi x6, x6, 1 x6=1c00b586 x6:1c00b585 +75692598ns 1368147 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002fa +75692677ns 1368151 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b586 PA:1c00b586 +75692697ns 1368152 1c000e82 fff60613 addi x12, x12, -1 x12=000002f9 x12:000002fa +75692716ns 1368153 1c000e84 00130313 addi x6, x6, 1 x6=1c00b587 x6:1c00b586 +75692736ns 1368154 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002f9 +75692815ns 1368158 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b587 PA:1c00b587 +75692835ns 1368159 1c000e82 fff60613 addi x12, x12, -1 x12=000002f8 x12:000002f9 +75692855ns 1368160 1c000e84 00130313 addi x6, x6, 1 x6=1c00b588 x6:1c00b587 +75692875ns 1368161 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002f8 +75692954ns 1368165 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b588 PA:1c00b588 +75692974ns 1368166 1c000e82 fff60613 addi x12, x12, -1 x12=000002f7 x12:000002f8 +75692993ns 1368167 1c000e84 00130313 addi x6, x6, 1 x6=1c00b589 x6:1c00b588 +75693013ns 1368168 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002f7 +75693092ns 1368172 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b589 PA:1c00b589 +75693112ns 1368173 1c000e82 fff60613 addi x12, x12, -1 x12=000002f6 x12:000002f7 +75693132ns 1368174 1c000e84 00130313 addi x6, x6, 1 x6=1c00b58a x6:1c00b589 +75693152ns 1368175 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002f6 +75693231ns 1368179 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b58a PA:1c00b58a +75693251ns 1368180 1c000e82 fff60613 addi x12, x12, -1 x12=000002f5 x12:000002f6 +75693271ns 1368181 1c000e84 00130313 addi x6, x6, 1 x6=1c00b58b x6:1c00b58a +75693290ns 1368182 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002f5 +75693369ns 1368186 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b58b PA:1c00b58b +75693389ns 1368187 1c000e82 fff60613 addi x12, x12, -1 x12=000002f4 x12:000002f5 +75693409ns 1368188 1c000e84 00130313 addi x6, x6, 1 x6=1c00b58c x6:1c00b58b +75693429ns 1368189 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002f4 +75693508ns 1368193 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b58c PA:1c00b58c +75693528ns 1368194 1c000e82 fff60613 addi x12, x12, -1 x12=000002f3 x12:000002f4 +75693548ns 1368195 1c000e84 00130313 addi x6, x6, 1 x6=1c00b58d x6:1c00b58c +75693567ns 1368196 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002f3 +75693647ns 1368200 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b58d PA:1c00b58d +75693666ns 1368201 1c000e82 fff60613 addi x12, x12, -1 x12=000002f2 x12:000002f3 +75693686ns 1368202 1c000e84 00130313 addi x6, x6, 1 x6=1c00b58e x6:1c00b58d +75693706ns 1368203 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002f2 +75693785ns 1368207 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b58e PA:1c00b58e +75693805ns 1368208 1c000e82 fff60613 addi x12, x12, -1 x12=000002f1 x12:000002f2 +75693825ns 1368209 1c000e84 00130313 addi x6, x6, 1 x6=1c00b58f x6:1c00b58e +75693844ns 1368210 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002f1 +75693924ns 1368214 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b58f PA:1c00b58f +75693943ns 1368215 1c000e82 fff60613 addi x12, x12, -1 x12=000002f0 x12:000002f1 +75693963ns 1368216 1c000e84 00130313 addi x6, x6, 1 x6=1c00b590 x6:1c00b58f +75693983ns 1368217 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002f0 +75694062ns 1368221 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b590 PA:1c00b590 +75694082ns 1368222 1c000e82 fff60613 addi x12, x12, -1 x12=000002ef x12:000002f0 +75694102ns 1368223 1c000e84 00130313 addi x6, x6, 1 x6=1c00b591 x6:1c00b590 +75694122ns 1368224 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ef +75694201ns 1368228 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b591 PA:1c00b591 +75694221ns 1368229 1c000e82 fff60613 addi x12, x12, -1 x12=000002ee x12:000002ef +75694240ns 1368230 1c000e84 00130313 addi x6, x6, 1 x6=1c00b592 x6:1c00b591 +75694260ns 1368231 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ee +75694339ns 1368235 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b592 PA:1c00b592 +75694359ns 1368236 1c000e82 fff60613 addi x12, x12, -1 x12=000002ed x12:000002ee +75694379ns 1368237 1c000e84 00130313 addi x6, x6, 1 x6=1c00b593 x6:1c00b592 +75694399ns 1368238 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ed +75694478ns 1368242 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b593 PA:1c00b593 +75694498ns 1368243 1c000e82 fff60613 addi x12, x12, -1 x12=000002ec x12:000002ed +75694517ns 1368244 1c000e84 00130313 addi x6, x6, 1 x6=1c00b594 x6:1c00b593 +75694537ns 1368245 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ec +75694616ns 1368249 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b594 PA:1c00b594 +75694636ns 1368250 1c000e82 fff60613 addi x12, x12, -1 x12=000002eb x12:000002ec +75694656ns 1368251 1c000e84 00130313 addi x6, x6, 1 x6=1c00b595 x6:1c00b594 +75694676ns 1368252 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002eb +75694755ns 1368256 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b595 PA:1c00b595 +75694775ns 1368257 1c000e82 fff60613 addi x12, x12, -1 x12=000002ea x12:000002eb +75694794ns 1368258 1c000e84 00130313 addi x6, x6, 1 x6=1c00b596 x6:1c00b595 +75694814ns 1368259 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ea +75694893ns 1368263 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b596 PA:1c00b596 +75694913ns 1368264 1c000e82 fff60613 addi x12, x12, -1 x12=000002e9 x12:000002ea +75694933ns 1368265 1c000e84 00130313 addi x6, x6, 1 x6=1c00b597 x6:1c00b596 +75694953ns 1368266 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002e9 +75695032ns 1368270 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b597 PA:1c00b597 +75695052ns 1368271 1c000e82 fff60613 addi x12, x12, -1 x12=000002e8 x12:000002e9 +75695072ns 1368272 1c000e84 00130313 addi x6, x6, 1 x6=1c00b598 x6:1c00b597 +75695091ns 1368273 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002e8 +75695171ns 1368277 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b598 PA:1c00b598 +75695190ns 1368278 1c000e82 fff60613 addi x12, x12, -1 x12=000002e7 x12:000002e8 +75695210ns 1368279 1c000e84 00130313 addi x6, x6, 1 x6=1c00b599 x6:1c00b598 +75695230ns 1368280 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002e7 +75695309ns 1368284 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b599 PA:1c00b599 +75695329ns 1368285 1c000e82 fff60613 addi x12, x12, -1 x12=000002e6 x12:000002e7 +75695349ns 1368286 1c000e84 00130313 addi x6, x6, 1 x6=1c00b59a x6:1c00b599 +75695368ns 1368287 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002e6 +75695448ns 1368291 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b59a PA:1c00b59a +75695467ns 1368292 1c000e82 fff60613 addi x12, x12, -1 x12=000002e5 x12:000002e6 +75695487ns 1368293 1c000e84 00130313 addi x6, x6, 1 x6=1c00b59b x6:1c00b59a +75695507ns 1368294 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002e5 +75695586ns 1368298 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b59b PA:1c00b59b +75695606ns 1368299 1c000e82 fff60613 addi x12, x12, -1 x12=000002e4 x12:000002e5 +75695626ns 1368300 1c000e84 00130313 addi x6, x6, 1 x6=1c00b59c x6:1c00b59b +75695646ns 1368301 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002e4 +75695725ns 1368305 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b59c PA:1c00b59c +75695745ns 1368306 1c000e82 fff60613 addi x12, x12, -1 x12=000002e3 x12:000002e4 +75695764ns 1368307 1c000e84 00130313 addi x6, x6, 1 x6=1c00b59d x6:1c00b59c +75695784ns 1368308 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002e3 +75695863ns 1368312 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b59d PA:1c00b59d +75695883ns 1368313 1c000e82 fff60613 addi x12, x12, -1 x12=000002e2 x12:000002e3 +75695903ns 1368314 1c000e84 00130313 addi x6, x6, 1 x6=1c00b59e x6:1c00b59d +75695923ns 1368315 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002e2 +75696002ns 1368319 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b59e PA:1c00b59e +75696022ns 1368320 1c000e82 fff60613 addi x12, x12, -1 x12=000002e1 x12:000002e2 +75696041ns 1368321 1c000e84 00130313 addi x6, x6, 1 x6=1c00b59f x6:1c00b59e +75696061ns 1368322 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002e1 +75696140ns 1368326 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b59f PA:1c00b59f +75696160ns 1368327 1c000e82 fff60613 addi x12, x12, -1 x12=000002e0 x12:000002e1 +75696180ns 1368328 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5a0 x6:1c00b59f +75696200ns 1368329 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002e0 +75696279ns 1368333 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5a0 PA:1c00b5a0 +75696299ns 1368334 1c000e82 fff60613 addi x12, x12, -1 x12=000002df x12:000002e0 +75696318ns 1368335 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5a1 x6:1c00b5a0 +75696338ns 1368336 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002df +75696417ns 1368340 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5a1 PA:1c00b5a1 +75696437ns 1368341 1c000e82 fff60613 addi x12, x12, -1 x12=000002de x12:000002df +75696457ns 1368342 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5a2 x6:1c00b5a1 +75696477ns 1368343 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002de +75696556ns 1368347 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5a2 PA:1c00b5a2 +75696576ns 1368348 1c000e82 fff60613 addi x12, x12, -1 x12=000002dd x12:000002de +75696596ns 1368349 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5a3 x6:1c00b5a2 +75696615ns 1368350 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002dd +75696695ns 1368354 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5a3 PA:1c00b5a3 +75696714ns 1368355 1c000e82 fff60613 addi x12, x12, -1 x12=000002dc x12:000002dd +75696734ns 1368356 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5a4 x6:1c00b5a3 +75696754ns 1368357 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002dc +75696833ns 1368361 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5a4 PA:1c00b5a4 +75696853ns 1368362 1c000e82 fff60613 addi x12, x12, -1 x12=000002db x12:000002dc +75696873ns 1368363 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5a5 x6:1c00b5a4 +75696892ns 1368364 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002db +75696972ns 1368368 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5a5 PA:1c00b5a5 +75696991ns 1368369 1c000e82 fff60613 addi x12, x12, -1 x12=000002da x12:000002db +75697011ns 1368370 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5a6 x6:1c00b5a5 +75697031ns 1368371 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002da +75697110ns 1368375 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5a6 PA:1c00b5a6 +75697130ns 1368376 1c000e82 fff60613 addi x12, x12, -1 x12=000002d9 x12:000002da +75697150ns 1368377 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5a7 x6:1c00b5a6 +75697170ns 1368378 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002d9 +75697249ns 1368382 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5a7 PA:1c00b5a7 +75697268ns 1368383 1c000e82 fff60613 addi x12, x12, -1 x12=000002d8 x12:000002d9 +75697288ns 1368384 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5a8 x6:1c00b5a7 +75697308ns 1368385 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002d8 +75697387ns 1368389 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5a8 PA:1c00b5a8 +75697407ns 1368390 1c000e82 fff60613 addi x12, x12, -1 x12=000002d7 x12:000002d8 +75697427ns 1368391 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5a9 x6:1c00b5a8 +75697447ns 1368392 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002d7 +75697526ns 1368396 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5a9 PA:1c00b5a9 +75697546ns 1368397 1c000e82 fff60613 addi x12, x12, -1 x12=000002d6 x12:000002d7 +75697565ns 1368398 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5aa x6:1c00b5a9 +75697585ns 1368399 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002d6 +75697664ns 1368403 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5aa PA:1c00b5aa +75697684ns 1368404 1c000e82 fff60613 addi x12, x12, -1 x12=000002d5 x12:000002d6 +75697704ns 1368405 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5ab x6:1c00b5aa +75697724ns 1368406 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002d5 +75697803ns 1368410 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5ab PA:1c00b5ab +75697823ns 1368411 1c000e82 fff60613 addi x12, x12, -1 x12=000002d4 x12:000002d5 +75697842ns 1368412 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5ac x6:1c00b5ab +75697862ns 1368413 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002d4 +75697941ns 1368417 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5ac PA:1c00b5ac +75697961ns 1368418 1c000e82 fff60613 addi x12, x12, -1 x12=000002d3 x12:000002d4 +75697981ns 1368419 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5ad x6:1c00b5ac +75698001ns 1368420 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002d3 +75698080ns 1368424 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5ad PA:1c00b5ad +75698100ns 1368425 1c000e82 fff60613 addi x12, x12, -1 x12=000002d2 x12:000002d3 +75698120ns 1368426 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5ae x6:1c00b5ad +75698139ns 1368427 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002d2 +75698219ns 1368431 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5ae PA:1c00b5ae +75698238ns 1368432 1c000e82 fff60613 addi x12, x12, -1 x12=000002d1 x12:000002d2 +75698258ns 1368433 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5af x6:1c00b5ae +75698278ns 1368434 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002d1 +75698357ns 1368438 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5af PA:1c00b5af +75698377ns 1368439 1c000e82 fff60613 addi x12, x12, -1 x12=000002d0 x12:000002d1 +75698397ns 1368440 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5b0 x6:1c00b5af +75698416ns 1368441 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002d0 +75698496ns 1368445 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5b0 PA:1c00b5b0 +75698515ns 1368446 1c000e82 fff60613 addi x12, x12, -1 x12=000002cf x12:000002d0 +75698535ns 1368447 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5b1 x6:1c00b5b0 +75698555ns 1368448 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002cf +75698634ns 1368452 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5b1 PA:1c00b5b1 +75698654ns 1368453 1c000e82 fff60613 addi x12, x12, -1 x12=000002ce x12:000002cf +75698674ns 1368454 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5b2 x6:1c00b5b1 +75698694ns 1368455 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ce +75698773ns 1368459 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5b2 PA:1c00b5b2 +75698792ns 1368460 1c000e82 fff60613 addi x12, x12, -1 x12=000002cd x12:000002ce +75698812ns 1368461 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5b3 x6:1c00b5b2 +75698832ns 1368462 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002cd +75698911ns 1368466 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5b3 PA:1c00b5b3 +75698931ns 1368467 1c000e82 fff60613 addi x12, x12, -1 x12=000002cc x12:000002cd +75698951ns 1368468 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5b4 x6:1c00b5b3 +75698971ns 1368469 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002cc +75699050ns 1368473 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5b4 PA:1c00b5b4 +75699070ns 1368474 1c000e82 fff60613 addi x12, x12, -1 x12=000002cb x12:000002cc +75699089ns 1368475 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5b5 x6:1c00b5b4 +75699109ns 1368476 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002cb +75699188ns 1368480 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5b5 PA:1c00b5b5 +75699208ns 1368481 1c000e82 fff60613 addi x12, x12, -1 x12=000002ca x12:000002cb +75699228ns 1368482 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5b6 x6:1c00b5b5 +75699248ns 1368483 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ca +75699327ns 1368487 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5b6 PA:1c00b5b6 +75699347ns 1368488 1c000e82 fff60613 addi x12, x12, -1 x12=000002c9 x12:000002ca +75699366ns 1368489 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5b7 x6:1c00b5b6 +75699386ns 1368490 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002c9 +75699465ns 1368494 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5b7 PA:1c00b5b7 +75699485ns 1368495 1c000e82 fff60613 addi x12, x12, -1 x12=000002c8 x12:000002c9 +75699505ns 1368496 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5b8 x6:1c00b5b7 +75699525ns 1368497 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002c8 +75699604ns 1368501 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5b8 PA:1c00b5b8 +75699624ns 1368502 1c000e82 fff60613 addi x12, x12, -1 x12=000002c7 x12:000002c8 +75699644ns 1368503 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5b9 x6:1c00b5b8 +75699663ns 1368504 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002c7 +75699742ns 1368508 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5b9 PA:1c00b5b9 +75699762ns 1368509 1c000e82 fff60613 addi x12, x12, -1 x12=000002c6 x12:000002c7 +75699782ns 1368510 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5ba x6:1c00b5b9 +75699802ns 1368511 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002c6 +75699881ns 1368515 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5ba PA:1c00b5ba +75699901ns 1368516 1c000e82 fff60613 addi x12, x12, -1 x12=000002c5 x12:000002c6 +75699921ns 1368517 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5bb x6:1c00b5ba +75699940ns 1368518 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002c5 +75700020ns 1368522 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5bb PA:1c00b5bb +75700039ns 1368523 1c000e82 fff60613 addi x12, x12, -1 x12=000002c4 x12:000002c5 +75700059ns 1368524 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5bc x6:1c00b5bb +75700079ns 1368525 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002c4 +75700158ns 1368529 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5bc PA:1c00b5bc +75700178ns 1368530 1c000e82 fff60613 addi x12, x12, -1 x12=000002c3 x12:000002c4 +75700198ns 1368531 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5bd x6:1c00b5bc +75700217ns 1368532 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002c3 +75700297ns 1368536 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5bd PA:1c00b5bd +75700316ns 1368537 1c000e82 fff60613 addi x12, x12, -1 x12=000002c2 x12:000002c3 +75700336ns 1368538 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5be x6:1c00b5bd +75700356ns 1368539 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002c2 +75700435ns 1368543 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5be PA:1c00b5be +75700455ns 1368544 1c000e82 fff60613 addi x12, x12, -1 x12=000002c1 x12:000002c2 +75700475ns 1368545 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5bf x6:1c00b5be +75700495ns 1368546 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002c1 +75700574ns 1368550 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5bf PA:1c00b5bf +75700594ns 1368551 1c000e82 fff60613 addi x12, x12, -1 x12=000002c0 x12:000002c1 +75700613ns 1368552 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5c0 x6:1c00b5bf +75700633ns 1368553 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002c0 +75700712ns 1368557 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5c0 PA:1c00b5c0 +75700732ns 1368558 1c000e82 fff60613 addi x12, x12, -1 x12=000002bf x12:000002c0 +75700752ns 1368559 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5c1 x6:1c00b5c0 +75700772ns 1368560 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002bf +75700851ns 1368564 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5c1 PA:1c00b5c1 +75700871ns 1368565 1c000e82 fff60613 addi x12, x12, -1 x12=000002be x12:000002bf +75700890ns 1368566 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5c2 x6:1c00b5c1 +75700910ns 1368567 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002be +75700989ns 1368571 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5c2 PA:1c00b5c2 +75701009ns 1368572 1c000e82 fff60613 addi x12, x12, -1 x12=000002bd x12:000002be +75701029ns 1368573 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5c3 x6:1c00b5c2 +75701049ns 1368574 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002bd +75701128ns 1368578 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5c3 PA:1c00b5c3 +75701148ns 1368579 1c000e82 fff60613 addi x12, x12, -1 x12=000002bc x12:000002bd +75701168ns 1368580 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5c4 x6:1c00b5c3 +75701187ns 1368581 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002bc +75701266ns 1368585 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5c4 PA:1c00b5c4 +75701286ns 1368586 1c000e82 fff60613 addi x12, x12, -1 x12=000002bb x12:000002bc +75701306ns 1368587 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5c5 x6:1c00b5c4 +75701326ns 1368588 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002bb +75701405ns 1368592 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5c5 PA:1c00b5c5 +75701425ns 1368593 1c000e82 fff60613 addi x12, x12, -1 x12=000002ba x12:000002bb +75701445ns 1368594 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5c6 x6:1c00b5c5 +75701464ns 1368595 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ba +75701544ns 1368599 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5c6 PA:1c00b5c6 +75701563ns 1368600 1c000e82 fff60613 addi x12, x12, -1 x12=000002b9 x12:000002ba +75701583ns 1368601 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5c7 x6:1c00b5c6 +75701603ns 1368602 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002b9 +75701682ns 1368606 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5c7 PA:1c00b5c7 +75701702ns 1368607 1c000e82 fff60613 addi x12, x12, -1 x12=000002b8 x12:000002b9 +75701722ns 1368608 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5c8 x6:1c00b5c7 +75701741ns 1368609 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002b8 +75701821ns 1368613 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5c8 PA:1c00b5c8 +75701840ns 1368614 1c000e82 fff60613 addi x12, x12, -1 x12=000002b7 x12:000002b8 +75701860ns 1368615 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5c9 x6:1c00b5c8 +75701880ns 1368616 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002b7 +75701959ns 1368620 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5c9 PA:1c00b5c9 +75701979ns 1368621 1c000e82 fff60613 addi x12, x12, -1 x12=000002b6 x12:000002b7 +75701999ns 1368622 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5ca x6:1c00b5c9 +75702019ns 1368623 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002b6 +75702098ns 1368627 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5ca PA:1c00b5ca +75702118ns 1368628 1c000e82 fff60613 addi x12, x12, -1 x12=000002b5 x12:000002b6 +75702137ns 1368629 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5cb x6:1c00b5ca +75702157ns 1368630 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002b5 +75702236ns 1368634 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5cb PA:1c00b5cb +75702256ns 1368635 1c000e82 fff60613 addi x12, x12, -1 x12=000002b4 x12:000002b5 +75702276ns 1368636 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5cc x6:1c00b5cb +75702296ns 1368637 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002b4 +75702375ns 1368641 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5cc PA:1c00b5cc +75702395ns 1368642 1c000e82 fff60613 addi x12, x12, -1 x12=000002b3 x12:000002b4 +75702414ns 1368643 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5cd x6:1c00b5cc +75702434ns 1368644 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002b3 +75702513ns 1368648 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5cd PA:1c00b5cd +75702533ns 1368649 1c000e82 fff60613 addi x12, x12, -1 x12=000002b2 x12:000002b3 +75702553ns 1368650 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5ce x6:1c00b5cd +75702573ns 1368651 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002b2 +75702652ns 1368655 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5ce PA:1c00b5ce +75702672ns 1368656 1c000e82 fff60613 addi x12, x12, -1 x12=000002b1 x12:000002b2 +75702691ns 1368657 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5cf x6:1c00b5ce +75702711ns 1368658 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002b1 +75702790ns 1368662 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5cf PA:1c00b5cf +75702810ns 1368663 1c000e82 fff60613 addi x12, x12, -1 x12=000002b0 x12:000002b1 +75702830ns 1368664 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5d0 x6:1c00b5cf +75702850ns 1368665 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002b0 +75702929ns 1368669 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5d0 PA:1c00b5d0 +75702949ns 1368670 1c000e82 fff60613 addi x12, x12, -1 x12=000002af x12:000002b0 +75702969ns 1368671 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5d1 x6:1c00b5d0 +75702988ns 1368672 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002af +75703068ns 1368676 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5d1 PA:1c00b5d1 +75703087ns 1368677 1c000e82 fff60613 addi x12, x12, -1 x12=000002ae x12:000002af +75703107ns 1368678 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5d2 x6:1c00b5d1 +75703127ns 1368679 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ae +75703206ns 1368683 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5d2 PA:1c00b5d2 +75703226ns 1368684 1c000e82 fff60613 addi x12, x12, -1 x12=000002ad x12:000002ae +75703246ns 1368685 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5d3 x6:1c00b5d2 +75703265ns 1368686 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ad +75703345ns 1368690 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5d3 PA:1c00b5d3 +75703364ns 1368691 1c000e82 fff60613 addi x12, x12, -1 x12=000002ac x12:000002ad +75703384ns 1368692 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5d4 x6:1c00b5d3 +75703404ns 1368693 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ac +75703483ns 1368697 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5d4 PA:1c00b5d4 +75703503ns 1368698 1c000e82 fff60613 addi x12, x12, -1 x12=000002ab x12:000002ac +75703523ns 1368699 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5d5 x6:1c00b5d4 +75703543ns 1368700 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002ab +75703622ns 1368704 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5d5 PA:1c00b5d5 +75703642ns 1368705 1c000e82 fff60613 addi x12, x12, -1 x12=000002aa x12:000002ab +75703661ns 1368706 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5d6 x6:1c00b5d5 +75703681ns 1368707 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002aa +75703760ns 1368711 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5d6 PA:1c00b5d6 +75703780ns 1368712 1c000e82 fff60613 addi x12, x12, -1 x12=000002a9 x12:000002aa +75703800ns 1368713 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5d7 x6:1c00b5d6 +75703820ns 1368714 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002a9 +75703899ns 1368718 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5d7 PA:1c00b5d7 +75703919ns 1368719 1c000e82 fff60613 addi x12, x12, -1 x12=000002a8 x12:000002a9 +75703938ns 1368720 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5d8 x6:1c00b5d7 +75703958ns 1368721 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002a8 +75704037ns 1368725 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5d8 PA:1c00b5d8 +75704057ns 1368726 1c000e82 fff60613 addi x12, x12, -1 x12=000002a7 x12:000002a8 +75704077ns 1368727 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5d9 x6:1c00b5d8 +75704097ns 1368728 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002a7 +75704176ns 1368732 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5d9 PA:1c00b5d9 +75704196ns 1368733 1c000e82 fff60613 addi x12, x12, -1 x12=000002a6 x12:000002a7 +75704215ns 1368734 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5da x6:1c00b5d9 +75704235ns 1368735 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002a6 +75704314ns 1368739 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5da PA:1c00b5da +75704334ns 1368740 1c000e82 fff60613 addi x12, x12, -1 x12=000002a5 x12:000002a6 +75704354ns 1368741 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5db x6:1c00b5da +75704374ns 1368742 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002a5 +75704453ns 1368746 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5db PA:1c00b5db +75704473ns 1368747 1c000e82 fff60613 addi x12, x12, -1 x12=000002a4 x12:000002a5 +75704493ns 1368748 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5dc x6:1c00b5db +75704512ns 1368749 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002a4 +75704592ns 1368753 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5dc PA:1c00b5dc +75704611ns 1368754 1c000e82 fff60613 addi x12, x12, -1 x12=000002a3 x12:000002a4 +75704631ns 1368755 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5dd x6:1c00b5dc +75704651ns 1368756 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002a3 +75704730ns 1368760 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5dd PA:1c00b5dd +75704750ns 1368761 1c000e82 fff60613 addi x12, x12, -1 x12=000002a2 x12:000002a3 +75704770ns 1368762 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5de x6:1c00b5dd +75704789ns 1368763 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002a2 +75704869ns 1368767 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5de PA:1c00b5de +75704888ns 1368768 1c000e82 fff60613 addi x12, x12, -1 x12=000002a1 x12:000002a2 +75704908ns 1368769 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5df x6:1c00b5de +75704928ns 1368770 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002a1 +75705007ns 1368774 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5df PA:1c00b5df +75705027ns 1368775 1c000e82 fff60613 addi x12, x12, -1 x12=000002a0 x12:000002a1 +75705047ns 1368776 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5e0 x6:1c00b5df +75705067ns 1368777 1c000e86 fe061ce3 bne x12, x0, -8 x12:000002a0 +75705146ns 1368781 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5e0 PA:1c00b5e0 +75705165ns 1368782 1c000e82 fff60613 addi x12, x12, -1 x12=0000029f x12:000002a0 +75705185ns 1368783 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5e1 x6:1c00b5e0 +75705205ns 1368784 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000029f +75705284ns 1368788 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5e1 PA:1c00b5e1 +75705304ns 1368789 1c000e82 fff60613 addi x12, x12, -1 x12=0000029e x12:0000029f +75705324ns 1368790 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5e2 x6:1c00b5e1 +75705344ns 1368791 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000029e +75705423ns 1368795 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5e2 PA:1c00b5e2 +75705443ns 1368796 1c000e82 fff60613 addi x12, x12, -1 x12=0000029d x12:0000029e +75705462ns 1368797 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5e3 x6:1c00b5e2 +75705482ns 1368798 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000029d +75705561ns 1368802 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5e3 PA:1c00b5e3 +75705581ns 1368803 1c000e82 fff60613 addi x12, x12, -1 x12=0000029c x12:0000029d +75705601ns 1368804 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5e4 x6:1c00b5e3 +75705621ns 1368805 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000029c +75705700ns 1368809 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5e4 PA:1c00b5e4 +75705720ns 1368810 1c000e82 fff60613 addi x12, x12, -1 x12=0000029b x12:0000029c +75705739ns 1368811 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5e5 x6:1c00b5e4 +75705759ns 1368812 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000029b +75705838ns 1368816 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5e5 PA:1c00b5e5 +75705858ns 1368817 1c000e82 fff60613 addi x12, x12, -1 x12=0000029a x12:0000029b +75705878ns 1368818 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5e6 x6:1c00b5e5 +75705898ns 1368819 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000029a +75705977ns 1368823 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5e6 PA:1c00b5e6 +75705997ns 1368824 1c000e82 fff60613 addi x12, x12, -1 x12=00000299 x12:0000029a +75706017ns 1368825 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5e7 x6:1c00b5e6 +75706036ns 1368826 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000299 +75706116ns 1368830 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5e7 PA:1c00b5e7 +75706135ns 1368831 1c000e82 fff60613 addi x12, x12, -1 x12=00000298 x12:00000299 +75706155ns 1368832 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5e8 x6:1c00b5e7 +75706175ns 1368833 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000298 +75706254ns 1368837 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5e8 PA:1c00b5e8 +75706274ns 1368838 1c000e82 fff60613 addi x12, x12, -1 x12=00000297 x12:00000298 +75706294ns 1368839 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5e9 x6:1c00b5e8 +75706313ns 1368840 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000297 +75706393ns 1368844 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5e9 PA:1c00b5e9 +75706412ns 1368845 1c000e82 fff60613 addi x12, x12, -1 x12=00000296 x12:00000297 +75706432ns 1368846 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5ea x6:1c00b5e9 +75706452ns 1368847 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000296 +75706531ns 1368851 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5ea PA:1c00b5ea +75706551ns 1368852 1c000e82 fff60613 addi x12, x12, -1 x12=00000295 x12:00000296 +75706571ns 1368853 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5eb x6:1c00b5ea +75706591ns 1368854 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000295 +75706670ns 1368858 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5eb PA:1c00b5eb +75706689ns 1368859 1c000e82 fff60613 addi x12, x12, -1 x12=00000294 x12:00000295 +75706709ns 1368860 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5ec x6:1c00b5eb +75706729ns 1368861 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000294 +75706808ns 1368865 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5ec PA:1c00b5ec +75706828ns 1368866 1c000e82 fff60613 addi x12, x12, -1 x12=00000293 x12:00000294 +75706848ns 1368867 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5ed x6:1c00b5ec +75706868ns 1368868 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000293 +75706947ns 1368872 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5ed PA:1c00b5ed +75706967ns 1368873 1c000e82 fff60613 addi x12, x12, -1 x12=00000292 x12:00000293 +75706986ns 1368874 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5ee x6:1c00b5ed +75707006ns 1368875 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000292 +75707085ns 1368879 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5ee PA:1c00b5ee +75707105ns 1368880 1c000e82 fff60613 addi x12, x12, -1 x12=00000291 x12:00000292 +75707125ns 1368881 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5ef x6:1c00b5ee +75707145ns 1368882 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000291 +75707224ns 1368886 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5ef PA:1c00b5ef +75707244ns 1368887 1c000e82 fff60613 addi x12, x12, -1 x12=00000290 x12:00000291 +75707263ns 1368888 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5f0 x6:1c00b5ef +75707283ns 1368889 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000290 +75707362ns 1368893 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5f0 PA:1c00b5f0 +75707382ns 1368894 1c000e82 fff60613 addi x12, x12, -1 x12=0000028f x12:00000290 +75707402ns 1368895 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5f1 x6:1c00b5f0 +75707422ns 1368896 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000028f +75707501ns 1368900 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5f1 PA:1c00b5f1 +75707521ns 1368901 1c000e82 fff60613 addi x12, x12, -1 x12=0000028e x12:0000028f +75707541ns 1368902 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5f2 x6:1c00b5f1 +75707560ns 1368903 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000028e +75707639ns 1368907 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5f2 PA:1c00b5f2 +75707659ns 1368908 1c000e82 fff60613 addi x12, x12, -1 x12=0000028d x12:0000028e +75707679ns 1368909 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5f3 x6:1c00b5f2 +75707699ns 1368910 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000028d +75707778ns 1368914 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5f3 PA:1c00b5f3 +75707798ns 1368915 1c000e82 fff60613 addi x12, x12, -1 x12=0000028c x12:0000028d +75707818ns 1368916 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5f4 x6:1c00b5f3 +75707837ns 1368917 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000028c +75707917ns 1368921 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5f4 PA:1c00b5f4 +75707936ns 1368922 1c000e82 fff60613 addi x12, x12, -1 x12=0000028b x12:0000028c +75707956ns 1368923 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5f5 x6:1c00b5f4 +75707976ns 1368924 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000028b +75708055ns 1368928 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5f5 PA:1c00b5f5 +75708075ns 1368929 1c000e82 fff60613 addi x12, x12, -1 x12=0000028a x12:0000028b +75708095ns 1368930 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5f6 x6:1c00b5f5 +75708115ns 1368931 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000028a +75708194ns 1368935 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5f6 PA:1c00b5f6 +75708213ns 1368936 1c000e82 fff60613 addi x12, x12, -1 x12=00000289 x12:0000028a +75708233ns 1368937 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5f7 x6:1c00b5f6 +75708253ns 1368938 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000289 +75708332ns 1368942 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5f7 PA:1c00b5f7 +75708352ns 1368943 1c000e82 fff60613 addi x12, x12, -1 x12=00000288 x12:00000289 +75708372ns 1368944 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5f8 x6:1c00b5f7 +75708392ns 1368945 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000288 +75708471ns 1368949 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5f8 PA:1c00b5f8 +75708491ns 1368950 1c000e82 fff60613 addi x12, x12, -1 x12=00000287 x12:00000288 +75708510ns 1368951 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5f9 x6:1c00b5f8 +75708530ns 1368952 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000287 +75708609ns 1368956 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5f9 PA:1c00b5f9 +75708629ns 1368957 1c000e82 fff60613 addi x12, x12, -1 x12=00000286 x12:00000287 +75708649ns 1368958 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5fa x6:1c00b5f9 +75708669ns 1368959 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000286 +75708748ns 1368963 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5fa PA:1c00b5fa +75708768ns 1368964 1c000e82 fff60613 addi x12, x12, -1 x12=00000285 x12:00000286 +75708787ns 1368965 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5fb x6:1c00b5fa +75708807ns 1368966 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000285 +75708886ns 1368970 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5fb PA:1c00b5fb +75708906ns 1368971 1c000e82 fff60613 addi x12, x12, -1 x12=00000284 x12:00000285 +75708926ns 1368972 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5fc x6:1c00b5fb +75708946ns 1368973 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000284 +75709025ns 1368977 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5fc PA:1c00b5fc +75709045ns 1368978 1c000e82 fff60613 addi x12, x12, -1 x12=00000283 x12:00000284 +75709065ns 1368979 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5fd x6:1c00b5fc +75709084ns 1368980 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000283 +75709163ns 1368984 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5fd PA:1c00b5fd +75709183ns 1368985 1c000e82 fff60613 addi x12, x12, -1 x12=00000282 x12:00000283 +75709203ns 1368986 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5fe x6:1c00b5fd +75709223ns 1368987 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000282 +75709302ns 1368991 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5fe PA:1c00b5fe +75709322ns 1368992 1c000e82 fff60613 addi x12, x12, -1 x12=00000281 x12:00000282 +75709342ns 1368993 1c000e84 00130313 addi x6, x6, 1 x6=1c00b5ff x6:1c00b5fe +75709361ns 1368994 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000281 +75709441ns 1368998 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b5ff PA:1c00b5ff +75709460ns 1368999 1c000e82 fff60613 addi x12, x12, -1 x12=00000280 x12:00000281 +75709480ns 1369000 1c000e84 00130313 addi x6, x6, 1 x6=1c00b600 x6:1c00b5ff +75709500ns 1369001 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000280 +75709579ns 1369005 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b600 PA:1c00b600 +75709599ns 1369006 1c000e82 fff60613 addi x12, x12, -1 x12=0000027f x12:00000280 +75709619ns 1369007 1c000e84 00130313 addi x6, x6, 1 x6=1c00b601 x6:1c00b600 +75709638ns 1369008 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000027f +75709718ns 1369012 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b601 PA:1c00b601 +75709737ns 1369013 1c000e82 fff60613 addi x12, x12, -1 x12=0000027e x12:0000027f +75709757ns 1369014 1c000e84 00130313 addi x6, x6, 1 x6=1c00b602 x6:1c00b601 +75709777ns 1369015 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000027e +75709856ns 1369019 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b602 PA:1c00b602 +75709876ns 1369020 1c000e82 fff60613 addi x12, x12, -1 x12=0000027d x12:0000027e +75709896ns 1369021 1c000e84 00130313 addi x6, x6, 1 x6=1c00b603 x6:1c00b602 +75709916ns 1369022 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000027d +75709995ns 1369026 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b603 PA:1c00b603 +75710015ns 1369027 1c000e82 fff60613 addi x12, x12, -1 x12=0000027c x12:0000027d +75710034ns 1369028 1c000e84 00130313 addi x6, x6, 1 x6=1c00b604 x6:1c00b603 +75710054ns 1369029 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000027c +75710133ns 1369033 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b604 PA:1c00b604 +75710153ns 1369034 1c000e82 fff60613 addi x12, x12, -1 x12=0000027b x12:0000027c +75710173ns 1369035 1c000e84 00130313 addi x6, x6, 1 x6=1c00b605 x6:1c00b604 +75710193ns 1369036 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000027b +75710272ns 1369040 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b605 PA:1c00b605 +75710292ns 1369041 1c000e82 fff60613 addi x12, x12, -1 x12=0000027a x12:0000027b +75710311ns 1369042 1c000e84 00130313 addi x6, x6, 1 x6=1c00b606 x6:1c00b605 +75710331ns 1369043 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000027a +75710410ns 1369047 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b606 PA:1c00b606 +75710430ns 1369048 1c000e82 fff60613 addi x12, x12, -1 x12=00000279 x12:0000027a +75710450ns 1369049 1c000e84 00130313 addi x6, x6, 1 x6=1c00b607 x6:1c00b606 +75710470ns 1369050 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000279 +75710549ns 1369054 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b607 PA:1c00b607 +75710569ns 1369055 1c000e82 fff60613 addi x12, x12, -1 x12=00000278 x12:00000279 +75710589ns 1369056 1c000e84 00130313 addi x6, x6, 1 x6=1c00b608 x6:1c00b607 +75710608ns 1369057 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000278 +75710687ns 1369061 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b608 PA:1c00b608 +75710707ns 1369062 1c000e82 fff60613 addi x12, x12, -1 x12=00000277 x12:00000278 +75710727ns 1369063 1c000e84 00130313 addi x6, x6, 1 x6=1c00b609 x6:1c00b608 +75710747ns 1369064 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000277 +75710826ns 1369068 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b609 PA:1c00b609 +75710846ns 1369069 1c000e82 fff60613 addi x12, x12, -1 x12=00000276 x12:00000277 +75710866ns 1369070 1c000e84 00130313 addi x6, x6, 1 x6=1c00b60a x6:1c00b609 +75710885ns 1369071 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000276 +75710965ns 1369075 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b60a PA:1c00b60a +75710984ns 1369076 1c000e82 fff60613 addi x12, x12, -1 x12=00000275 x12:00000276 +75711004ns 1369077 1c000e84 00130313 addi x6, x6, 1 x6=1c00b60b x6:1c00b60a +75711024ns 1369078 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000275 +75711103ns 1369082 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b60b PA:1c00b60b +75711123ns 1369083 1c000e82 fff60613 addi x12, x12, -1 x12=00000274 x12:00000275 +75711143ns 1369084 1c000e84 00130313 addi x6, x6, 1 x6=1c00b60c x6:1c00b60b +75711162ns 1369085 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000274 +75711242ns 1369089 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b60c PA:1c00b60c +75711261ns 1369090 1c000e82 fff60613 addi x12, x12, -1 x12=00000273 x12:00000274 +75711281ns 1369091 1c000e84 00130313 addi x6, x6, 1 x6=1c00b60d x6:1c00b60c +75711301ns 1369092 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000273 +75711380ns 1369096 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b60d PA:1c00b60d +75711400ns 1369097 1c000e82 fff60613 addi x12, x12, -1 x12=00000272 x12:00000273 +75711420ns 1369098 1c000e84 00130313 addi x6, x6, 1 x6=1c00b60e x6:1c00b60d +75711440ns 1369099 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000272 +75711519ns 1369103 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b60e PA:1c00b60e +75711539ns 1369104 1c000e82 fff60613 addi x12, x12, -1 x12=00000271 x12:00000272 +75711558ns 1369105 1c000e84 00130313 addi x6, x6, 1 x6=1c00b60f x6:1c00b60e +75711578ns 1369106 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000271 +75711657ns 1369110 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b60f PA:1c00b60f +75711677ns 1369111 1c000e82 fff60613 addi x12, x12, -1 x12=00000270 x12:00000271 +75711697ns 1369112 1c000e84 00130313 addi x6, x6, 1 x6=1c00b610 x6:1c00b60f +75711717ns 1369113 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000270 +75711796ns 1369117 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b610 PA:1c00b610 +75711816ns 1369118 1c000e82 fff60613 addi x12, x12, -1 x12=0000026f x12:00000270 +75711835ns 1369119 1c000e84 00130313 addi x6, x6, 1 x6=1c00b611 x6:1c00b610 +75711855ns 1369120 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000026f +75711934ns 1369124 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b611 PA:1c00b611 +75711954ns 1369125 1c000e82 fff60613 addi x12, x12, -1 x12=0000026e x12:0000026f +75711974ns 1369126 1c000e84 00130313 addi x6, x6, 1 x6=1c00b612 x6:1c00b611 +75711994ns 1369127 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000026e +75712073ns 1369131 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b612 PA:1c00b612 +75712093ns 1369132 1c000e82 fff60613 addi x12, x12, -1 x12=0000026d x12:0000026e +75712112ns 1369133 1c000e84 00130313 addi x6, x6, 1 x6=1c00b613 x6:1c00b612 +75712132ns 1369134 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000026d +75712211ns 1369138 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b613 PA:1c00b613 +75712231ns 1369139 1c000e82 fff60613 addi x12, x12, -1 x12=0000026c x12:0000026d +75712251ns 1369140 1c000e84 00130313 addi x6, x6, 1 x6=1c00b614 x6:1c00b613 +75712271ns 1369141 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000026c +75712350ns 1369145 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b614 PA:1c00b614 +75712370ns 1369146 1c000e82 fff60613 addi x12, x12, -1 x12=0000026b x12:0000026c +75712390ns 1369147 1c000e84 00130313 addi x6, x6, 1 x6=1c00b615 x6:1c00b614 +75712409ns 1369148 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000026b +75712489ns 1369152 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b615 PA:1c00b615 +75712508ns 1369153 1c000e82 fff60613 addi x12, x12, -1 x12=0000026a x12:0000026b +75712528ns 1369154 1c000e84 00130313 addi x6, x6, 1 x6=1c00b616 x6:1c00b615 +75712548ns 1369155 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000026a +75712627ns 1369159 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b616 PA:1c00b616 +75712647ns 1369160 1c000e82 fff60613 addi x12, x12, -1 x12=00000269 x12:0000026a +75712667ns 1369161 1c000e84 00130313 addi x6, x6, 1 x6=1c00b617 x6:1c00b616 +75712686ns 1369162 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000269 +75712766ns 1369166 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b617 PA:1c00b617 +75712785ns 1369167 1c000e82 fff60613 addi x12, x12, -1 x12=00000268 x12:00000269 +75712805ns 1369168 1c000e84 00130313 addi x6, x6, 1 x6=1c00b618 x6:1c00b617 +75712825ns 1369169 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000268 +75712904ns 1369173 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b618 PA:1c00b618 +75712924ns 1369174 1c000e82 fff60613 addi x12, x12, -1 x12=00000267 x12:00000268 +75712944ns 1369175 1c000e84 00130313 addi x6, x6, 1 x6=1c00b619 x6:1c00b618 +75712964ns 1369176 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000267 +75713043ns 1369180 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b619 PA:1c00b619 +75713063ns 1369181 1c000e82 fff60613 addi x12, x12, -1 x12=00000266 x12:00000267 +75713082ns 1369182 1c000e84 00130313 addi x6, x6, 1 x6=1c00b61a x6:1c00b619 +75713102ns 1369183 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000266 +75713181ns 1369187 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b61a PA:1c00b61a +75713201ns 1369188 1c000e82 fff60613 addi x12, x12, -1 x12=00000265 x12:00000266 +75713221ns 1369189 1c000e84 00130313 addi x6, x6, 1 x6=1c00b61b x6:1c00b61a +75713241ns 1369190 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000265 +75713320ns 1369194 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b61b PA:1c00b61b +75713340ns 1369195 1c000e82 fff60613 addi x12, x12, -1 x12=00000264 x12:00000265 +75713359ns 1369196 1c000e84 00130313 addi x6, x6, 1 x6=1c00b61c x6:1c00b61b +75713379ns 1369197 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000264 +75713458ns 1369201 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b61c PA:1c00b61c +75713478ns 1369202 1c000e82 fff60613 addi x12, x12, -1 x12=00000263 x12:00000264 +75713498ns 1369203 1c000e84 00130313 addi x6, x6, 1 x6=1c00b61d x6:1c00b61c +75713518ns 1369204 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000263 +75713597ns 1369208 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b61d PA:1c00b61d +75713617ns 1369209 1c000e82 fff60613 addi x12, x12, -1 x12=00000262 x12:00000263 +75713636ns 1369210 1c000e84 00130313 addi x6, x6, 1 x6=1c00b61e x6:1c00b61d +75713656ns 1369211 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000262 +75713735ns 1369215 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b61e PA:1c00b61e +75713755ns 1369216 1c000e82 fff60613 addi x12, x12, -1 x12=00000261 x12:00000262 +75713775ns 1369217 1c000e84 00130313 addi x6, x6, 1 x6=1c00b61f x6:1c00b61e +75713795ns 1369218 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000261 +75713874ns 1369222 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b61f PA:1c00b61f +75713894ns 1369223 1c000e82 fff60613 addi x12, x12, -1 x12=00000260 x12:00000261 +75713914ns 1369224 1c000e84 00130313 addi x6, x6, 1 x6=1c00b620 x6:1c00b61f +75713933ns 1369225 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000260 +75714013ns 1369229 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b620 PA:1c00b620 +75714032ns 1369230 1c000e82 fff60613 addi x12, x12, -1 x12=0000025f x12:00000260 +75714052ns 1369231 1c000e84 00130313 addi x6, x6, 1 x6=1c00b621 x6:1c00b620 +75714072ns 1369232 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000025f +75714151ns 1369236 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b621 PA:1c00b621 +75714171ns 1369237 1c000e82 fff60613 addi x12, x12, -1 x12=0000025e x12:0000025f +75714191ns 1369238 1c000e84 00130313 addi x6, x6, 1 x6=1c00b622 x6:1c00b621 +75714210ns 1369239 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000025e +75714290ns 1369243 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b622 PA:1c00b622 +75714309ns 1369244 1c000e82 fff60613 addi x12, x12, -1 x12=0000025d x12:0000025e +75714329ns 1369245 1c000e84 00130313 addi x6, x6, 1 x6=1c00b623 x6:1c00b622 +75714349ns 1369246 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000025d +75714428ns 1369250 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b623 PA:1c00b623 +75714448ns 1369251 1c000e82 fff60613 addi x12, x12, -1 x12=0000025c x12:0000025d +75714468ns 1369252 1c000e84 00130313 addi x6, x6, 1 x6=1c00b624 x6:1c00b623 +75714488ns 1369253 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000025c +75714567ns 1369257 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b624 PA:1c00b624 +75714586ns 1369258 1c000e82 fff60613 addi x12, x12, -1 x12=0000025b x12:0000025c +75714606ns 1369259 1c000e84 00130313 addi x6, x6, 1 x6=1c00b625 x6:1c00b624 +75714626ns 1369260 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000025b +75714705ns 1369264 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b625 PA:1c00b625 +75714725ns 1369265 1c000e82 fff60613 addi x12, x12, -1 x12=0000025a x12:0000025b +75714745ns 1369266 1c000e84 00130313 addi x6, x6, 1 x6=1c00b626 x6:1c00b625 +75714765ns 1369267 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000025a +75714844ns 1369271 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b626 PA:1c00b626 +75714864ns 1369272 1c000e82 fff60613 addi x12, x12, -1 x12=00000259 x12:0000025a +75714883ns 1369273 1c000e84 00130313 addi x6, x6, 1 x6=1c00b627 x6:1c00b626 +75714903ns 1369274 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000259 +75714982ns 1369278 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b627 PA:1c00b627 +75715002ns 1369279 1c000e82 fff60613 addi x12, x12, -1 x12=00000258 x12:00000259 +75715022ns 1369280 1c000e84 00130313 addi x6, x6, 1 x6=1c00b628 x6:1c00b627 +75715042ns 1369281 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000258 +75715121ns 1369285 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b628 PA:1c00b628 +75715141ns 1369286 1c000e82 fff60613 addi x12, x12, -1 x12=00000257 x12:00000258 +75715160ns 1369287 1c000e84 00130313 addi x6, x6, 1 x6=1c00b629 x6:1c00b628 +75715180ns 1369288 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000257 +75715259ns 1369292 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b629 PA:1c00b629 +75715279ns 1369293 1c000e82 fff60613 addi x12, x12, -1 x12=00000256 x12:00000257 +75715299ns 1369294 1c000e84 00130313 addi x6, x6, 1 x6=1c00b62a x6:1c00b629 +75715319ns 1369295 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000256 +75715398ns 1369299 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b62a PA:1c00b62a +75715418ns 1369300 1c000e82 fff60613 addi x12, x12, -1 x12=00000255 x12:00000256 +75715438ns 1369301 1c000e84 00130313 addi x6, x6, 1 x6=1c00b62b x6:1c00b62a +75715457ns 1369302 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000255 +75715537ns 1369306 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b62b PA:1c00b62b +75715556ns 1369307 1c000e82 fff60613 addi x12, x12, -1 x12=00000254 x12:00000255 +75715576ns 1369308 1c000e84 00130313 addi x6, x6, 1 x6=1c00b62c x6:1c00b62b +75715596ns 1369309 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000254 +75715675ns 1369313 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b62c PA:1c00b62c +75715695ns 1369314 1c000e82 fff60613 addi x12, x12, -1 x12=00000253 x12:00000254 +75715715ns 1369315 1c000e84 00130313 addi x6, x6, 1 x6=1c00b62d x6:1c00b62c +75715734ns 1369316 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000253 +75715814ns 1369320 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b62d PA:1c00b62d +75715833ns 1369321 1c000e82 fff60613 addi x12, x12, -1 x12=00000252 x12:00000253 +75715853ns 1369322 1c000e84 00130313 addi x6, x6, 1 x6=1c00b62e x6:1c00b62d +75715873ns 1369323 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000252 +75715952ns 1369327 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b62e PA:1c00b62e +75715972ns 1369328 1c000e82 fff60613 addi x12, x12, -1 x12=00000251 x12:00000252 +75715992ns 1369329 1c000e84 00130313 addi x6, x6, 1 x6=1c00b62f x6:1c00b62e +75716012ns 1369330 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000251 +75716091ns 1369334 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b62f PA:1c00b62f +75716110ns 1369335 1c000e82 fff60613 addi x12, x12, -1 x12=00000250 x12:00000251 +75716130ns 1369336 1c000e84 00130313 addi x6, x6, 1 x6=1c00b630 x6:1c00b62f +75716150ns 1369337 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000250 +75716229ns 1369341 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b630 PA:1c00b630 +75716249ns 1369342 1c000e82 fff60613 addi x12, x12, -1 x12=0000024f x12:00000250 +75716269ns 1369343 1c000e84 00130313 addi x6, x6, 1 x6=1c00b631 x6:1c00b630 +75716289ns 1369344 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000024f +75716368ns 1369348 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b631 PA:1c00b631 +75716388ns 1369349 1c000e82 fff60613 addi x12, x12, -1 x12=0000024e x12:0000024f +75716407ns 1369350 1c000e84 00130313 addi x6, x6, 1 x6=1c00b632 x6:1c00b631 +75716427ns 1369351 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000024e +75716506ns 1369355 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b632 PA:1c00b632 +75716526ns 1369356 1c000e82 fff60613 addi x12, x12, -1 x12=0000024d x12:0000024e +75716546ns 1369357 1c000e84 00130313 addi x6, x6, 1 x6=1c00b633 x6:1c00b632 +75716566ns 1369358 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000024d +75716645ns 1369362 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b633 PA:1c00b633 +75716665ns 1369363 1c000e82 fff60613 addi x12, x12, -1 x12=0000024c x12:0000024d +75716684ns 1369364 1c000e84 00130313 addi x6, x6, 1 x6=1c00b634 x6:1c00b633 +75716704ns 1369365 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000024c +75716783ns 1369369 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b634 PA:1c00b634 +75716803ns 1369370 1c000e82 fff60613 addi x12, x12, -1 x12=0000024b x12:0000024c +75716823ns 1369371 1c000e84 00130313 addi x6, x6, 1 x6=1c00b635 x6:1c00b634 +75716843ns 1369372 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000024b +75716922ns 1369376 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b635 PA:1c00b635 +75716942ns 1369377 1c000e82 fff60613 addi x12, x12, -1 x12=0000024a x12:0000024b +75716962ns 1369378 1c000e84 00130313 addi x6, x6, 1 x6=1c00b636 x6:1c00b635 +75716981ns 1369379 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000024a +75717060ns 1369383 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b636 PA:1c00b636 +75717080ns 1369384 1c000e82 fff60613 addi x12, x12, -1 x12=00000249 x12:0000024a +75717100ns 1369385 1c000e84 00130313 addi x6, x6, 1 x6=1c00b637 x6:1c00b636 +75717120ns 1369386 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000249 +75717199ns 1369390 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b637 PA:1c00b637 +75717219ns 1369391 1c000e82 fff60613 addi x12, x12, -1 x12=00000248 x12:00000249 +75717239ns 1369392 1c000e84 00130313 addi x6, x6, 1 x6=1c00b638 x6:1c00b637 +75717258ns 1369393 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000248 +75717338ns 1369397 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b638 PA:1c00b638 +75717357ns 1369398 1c000e82 fff60613 addi x12, x12, -1 x12=00000247 x12:00000248 +75717377ns 1369399 1c000e84 00130313 addi x6, x6, 1 x6=1c00b639 x6:1c00b638 +75717397ns 1369400 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000247 +75717476ns 1369404 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b639 PA:1c00b639 +75717496ns 1369405 1c000e82 fff60613 addi x12, x12, -1 x12=00000246 x12:00000247 +75717516ns 1369406 1c000e84 00130313 addi x6, x6, 1 x6=1c00b63a x6:1c00b639 +75717535ns 1369407 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000246 +75717615ns 1369411 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b63a PA:1c00b63a +75717634ns 1369412 1c000e82 fff60613 addi x12, x12, -1 x12=00000245 x12:00000246 +75717654ns 1369413 1c000e84 00130313 addi x6, x6, 1 x6=1c00b63b x6:1c00b63a +75717674ns 1369414 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000245 +75717753ns 1369418 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b63b PA:1c00b63b +75717773ns 1369419 1c000e82 fff60613 addi x12, x12, -1 x12=00000244 x12:00000245 +75717793ns 1369420 1c000e84 00130313 addi x6, x6, 1 x6=1c00b63c x6:1c00b63b +75717813ns 1369421 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000244 +75717892ns 1369425 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b63c PA:1c00b63c +75717912ns 1369426 1c000e82 fff60613 addi x12, x12, -1 x12=00000243 x12:00000244 +75717931ns 1369427 1c000e84 00130313 addi x6, x6, 1 x6=1c00b63d x6:1c00b63c +75717951ns 1369428 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000243 +75718030ns 1369432 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b63d PA:1c00b63d +75718050ns 1369433 1c000e82 fff60613 addi x12, x12, -1 x12=00000242 x12:00000243 +75718070ns 1369434 1c000e84 00130313 addi x6, x6, 1 x6=1c00b63e x6:1c00b63d +75718090ns 1369435 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000242 +75718169ns 1369439 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b63e PA:1c00b63e +75718189ns 1369440 1c000e82 fff60613 addi x12, x12, -1 x12=00000241 x12:00000242 +75718208ns 1369441 1c000e84 00130313 addi x6, x6, 1 x6=1c00b63f x6:1c00b63e +75718228ns 1369442 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000241 +75718307ns 1369446 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b63f PA:1c00b63f +75718327ns 1369447 1c000e82 fff60613 addi x12, x12, -1 x12=00000240 x12:00000241 +75718347ns 1369448 1c000e84 00130313 addi x6, x6, 1 x6=1c00b640 x6:1c00b63f +75718367ns 1369449 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000240 +75718446ns 1369453 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b640 PA:1c00b640 +75718466ns 1369454 1c000e82 fff60613 addi x12, x12, -1 x12=0000023f x12:00000240 +75718486ns 1369455 1c000e84 00130313 addi x6, x6, 1 x6=1c00b641 x6:1c00b640 +75718505ns 1369456 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000023f +75718584ns 1369460 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b641 PA:1c00b641 +75718604ns 1369461 1c000e82 fff60613 addi x12, x12, -1 x12=0000023e x12:0000023f +75718624ns 1369462 1c000e84 00130313 addi x6, x6, 1 x6=1c00b642 x6:1c00b641 +75718644ns 1369463 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000023e +75718723ns 1369467 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b642 PA:1c00b642 +75718743ns 1369468 1c000e82 fff60613 addi x12, x12, -1 x12=0000023d x12:0000023e +75718763ns 1369469 1c000e84 00130313 addi x6, x6, 1 x6=1c00b643 x6:1c00b642 +75718782ns 1369470 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000023d +75718862ns 1369474 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b643 PA:1c00b643 +75718881ns 1369475 1c000e82 fff60613 addi x12, x12, -1 x12=0000023c x12:0000023d +75718901ns 1369476 1c000e84 00130313 addi x6, x6, 1 x6=1c00b644 x6:1c00b643 +75718921ns 1369477 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000023c +75719000ns 1369481 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b644 PA:1c00b644 +75719020ns 1369482 1c000e82 fff60613 addi x12, x12, -1 x12=0000023b x12:0000023c +75719040ns 1369483 1c000e84 00130313 addi x6, x6, 1 x6=1c00b645 x6:1c00b644 +75719059ns 1369484 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000023b +75719139ns 1369488 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b645 PA:1c00b645 +75719158ns 1369489 1c000e82 fff60613 addi x12, x12, -1 x12=0000023a x12:0000023b +75719178ns 1369490 1c000e84 00130313 addi x6, x6, 1 x6=1c00b646 x6:1c00b645 +75719198ns 1369491 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000023a +75719277ns 1369495 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b646 PA:1c00b646 +75719297ns 1369496 1c000e82 fff60613 addi x12, x12, -1 x12=00000239 x12:0000023a +75719317ns 1369497 1c000e84 00130313 addi x6, x6, 1 x6=1c00b647 x6:1c00b646 +75719337ns 1369498 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000239 +75719416ns 1369502 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b647 PA:1c00b647 +75719436ns 1369503 1c000e82 fff60613 addi x12, x12, -1 x12=00000238 x12:00000239 +75719455ns 1369504 1c000e84 00130313 addi x6, x6, 1 x6=1c00b648 x6:1c00b647 +75719475ns 1369505 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000238 +75719554ns 1369509 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b648 PA:1c00b648 +75719574ns 1369510 1c000e82 fff60613 addi x12, x12, -1 x12=00000237 x12:00000238 +75719594ns 1369511 1c000e84 00130313 addi x6, x6, 1 x6=1c00b649 x6:1c00b648 +75719614ns 1369512 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000237 +75719693ns 1369516 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b649 PA:1c00b649 +75719713ns 1369517 1c000e82 fff60613 addi x12, x12, -1 x12=00000236 x12:00000237 +75719732ns 1369518 1c000e84 00130313 addi x6, x6, 1 x6=1c00b64a x6:1c00b649 +75719752ns 1369519 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000236 +75719831ns 1369523 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b64a PA:1c00b64a +75719851ns 1369524 1c000e82 fff60613 addi x12, x12, -1 x12=00000235 x12:00000236 +75719871ns 1369525 1c000e84 00130313 addi x6, x6, 1 x6=1c00b64b x6:1c00b64a +75719891ns 1369526 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000235 +75719970ns 1369530 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b64b PA:1c00b64b +75719990ns 1369531 1c000e82 fff60613 addi x12, x12, -1 x12=00000234 x12:00000235 +75720009ns 1369532 1c000e84 00130313 addi x6, x6, 1 x6=1c00b64c x6:1c00b64b +75720029ns 1369533 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000234 +75720108ns 1369537 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b64c PA:1c00b64c +75720128ns 1369538 1c000e82 fff60613 addi x12, x12, -1 x12=00000233 x12:00000234 +75720148ns 1369539 1c000e84 00130313 addi x6, x6, 1 x6=1c00b64d x6:1c00b64c +75720168ns 1369540 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000233 +75720247ns 1369544 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b64d PA:1c00b64d +75720267ns 1369545 1c000e82 fff60613 addi x12, x12, -1 x12=00000232 x12:00000233 +75720287ns 1369546 1c000e84 00130313 addi x6, x6, 1 x6=1c00b64e x6:1c00b64d +75720306ns 1369547 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000232 +75720386ns 1369551 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b64e PA:1c00b64e +75720405ns 1369552 1c000e82 fff60613 addi x12, x12, -1 x12=00000231 x12:00000232 +75720425ns 1369553 1c000e84 00130313 addi x6, x6, 1 x6=1c00b64f x6:1c00b64e +75720445ns 1369554 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000231 +75720524ns 1369558 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b64f PA:1c00b64f +75720544ns 1369559 1c000e82 fff60613 addi x12, x12, -1 x12=00000230 x12:00000231 +75720564ns 1369560 1c000e84 00130313 addi x6, x6, 1 x6=1c00b650 x6:1c00b64f +75720583ns 1369561 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000230 +75720663ns 1369565 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b650 PA:1c00b650 +75720682ns 1369566 1c000e82 fff60613 addi x12, x12, -1 x12=0000022f x12:00000230 +75720702ns 1369567 1c000e84 00130313 addi x6, x6, 1 x6=1c00b651 x6:1c00b650 +75720722ns 1369568 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000022f +75720801ns 1369572 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b651 PA:1c00b651 +75720821ns 1369573 1c000e82 fff60613 addi x12, x12, -1 x12=0000022e x12:0000022f +75720841ns 1369574 1c000e84 00130313 addi x6, x6, 1 x6=1c00b652 x6:1c00b651 +75720861ns 1369575 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000022e +75720940ns 1369579 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b652 PA:1c00b652 +75720960ns 1369580 1c000e82 fff60613 addi x12, x12, -1 x12=0000022d x12:0000022e +75720979ns 1369581 1c000e84 00130313 addi x6, x6, 1 x6=1c00b653 x6:1c00b652 +75720999ns 1369582 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000022d +75721078ns 1369586 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b653 PA:1c00b653 +75721098ns 1369587 1c000e82 fff60613 addi x12, x12, -1 x12=0000022c x12:0000022d +75721118ns 1369588 1c000e84 00130313 addi x6, x6, 1 x6=1c00b654 x6:1c00b653 +75721138ns 1369589 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000022c +75721217ns 1369593 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b654 PA:1c00b654 +75721237ns 1369594 1c000e82 fff60613 addi x12, x12, -1 x12=0000022b x12:0000022c +75721256ns 1369595 1c000e84 00130313 addi x6, x6, 1 x6=1c00b655 x6:1c00b654 +75721276ns 1369596 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000022b +75721355ns 1369600 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b655 PA:1c00b655 +75721375ns 1369601 1c000e82 fff60613 addi x12, x12, -1 x12=0000022a x12:0000022b +75721395ns 1369602 1c000e84 00130313 addi x6, x6, 1 x6=1c00b656 x6:1c00b655 +75721415ns 1369603 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000022a +75721494ns 1369607 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b656 PA:1c00b656 +75721514ns 1369608 1c000e82 fff60613 addi x12, x12, -1 x12=00000229 x12:0000022a +75721533ns 1369609 1c000e84 00130313 addi x6, x6, 1 x6=1c00b657 x6:1c00b656 +75721553ns 1369610 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000229 +75721632ns 1369614 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b657 PA:1c00b657 +75721652ns 1369615 1c000e82 fff60613 addi x12, x12, -1 x12=00000228 x12:00000229 +75721672ns 1369616 1c000e84 00130313 addi x6, x6, 1 x6=1c00b658 x6:1c00b657 +75721692ns 1369617 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000228 +75721771ns 1369621 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b658 PA:1c00b658 +75721791ns 1369622 1c000e82 fff60613 addi x12, x12, -1 x12=00000227 x12:00000228 +75721811ns 1369623 1c000e84 00130313 addi x6, x6, 1 x6=1c00b659 x6:1c00b658 +75721830ns 1369624 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000227 +75721910ns 1369628 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b659 PA:1c00b659 +75721929ns 1369629 1c000e82 fff60613 addi x12, x12, -1 x12=00000226 x12:00000227 +75721949ns 1369630 1c000e84 00130313 addi x6, x6, 1 x6=1c00b65a x6:1c00b659 +75721969ns 1369631 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000226 +75722048ns 1369635 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b65a PA:1c00b65a +75722068ns 1369636 1c000e82 fff60613 addi x12, x12, -1 x12=00000225 x12:00000226 +75722088ns 1369637 1c000e84 00130313 addi x6, x6, 1 x6=1c00b65b x6:1c00b65a +75722107ns 1369638 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000225 +75722187ns 1369642 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b65b PA:1c00b65b +75722206ns 1369643 1c000e82 fff60613 addi x12, x12, -1 x12=00000224 x12:00000225 +75722226ns 1369644 1c000e84 00130313 addi x6, x6, 1 x6=1c00b65c x6:1c00b65b +75722246ns 1369645 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000224 +75722325ns 1369649 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b65c PA:1c00b65c +75722345ns 1369650 1c000e82 fff60613 addi x12, x12, -1 x12=00000223 x12:00000224 +75722365ns 1369651 1c000e84 00130313 addi x6, x6, 1 x6=1c00b65d x6:1c00b65c +75722385ns 1369652 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000223 +75722464ns 1369656 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b65d PA:1c00b65d +75722483ns 1369657 1c000e82 fff60613 addi x12, x12, -1 x12=00000222 x12:00000223 +75722503ns 1369658 1c000e84 00130313 addi x6, x6, 1 x6=1c00b65e x6:1c00b65d +75722523ns 1369659 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000222 +75722602ns 1369663 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b65e PA:1c00b65e +75722622ns 1369664 1c000e82 fff60613 addi x12, x12, -1 x12=00000221 x12:00000222 +75722642ns 1369665 1c000e84 00130313 addi x6, x6, 1 x6=1c00b65f x6:1c00b65e +75722662ns 1369666 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000221 +75722741ns 1369670 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b65f PA:1c00b65f +75722761ns 1369671 1c000e82 fff60613 addi x12, x12, -1 x12=00000220 x12:00000221 +75722780ns 1369672 1c000e84 00130313 addi x6, x6, 1 x6=1c00b660 x6:1c00b65f +75722800ns 1369673 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000220 +75722879ns 1369677 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b660 PA:1c00b660 +75722899ns 1369678 1c000e82 fff60613 addi x12, x12, -1 x12=0000021f x12:00000220 +75722919ns 1369679 1c000e84 00130313 addi x6, x6, 1 x6=1c00b661 x6:1c00b660 +75722939ns 1369680 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000021f +75723018ns 1369684 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b661 PA:1c00b661 +75723038ns 1369685 1c000e82 fff60613 addi x12, x12, -1 x12=0000021e x12:0000021f +75723057ns 1369686 1c000e84 00130313 addi x6, x6, 1 x6=1c00b662 x6:1c00b661 +75723077ns 1369687 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000021e +75723156ns 1369691 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b662 PA:1c00b662 +75723176ns 1369692 1c000e82 fff60613 addi x12, x12, -1 x12=0000021d x12:0000021e +75723196ns 1369693 1c000e84 00130313 addi x6, x6, 1 x6=1c00b663 x6:1c00b662 +75723216ns 1369694 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000021d +75723295ns 1369698 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b663 PA:1c00b663 +75723315ns 1369699 1c000e82 fff60613 addi x12, x12, -1 x12=0000021c x12:0000021d +75723335ns 1369700 1c000e84 00130313 addi x6, x6, 1 x6=1c00b664 x6:1c00b663 +75723354ns 1369701 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000021c +75723434ns 1369705 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b664 PA:1c00b664 +75723453ns 1369706 1c000e82 fff60613 addi x12, x12, -1 x12=0000021b x12:0000021c +75723473ns 1369707 1c000e84 00130313 addi x6, x6, 1 x6=1c00b665 x6:1c00b664 +75723493ns 1369708 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000021b +75723572ns 1369712 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b665 PA:1c00b665 +75723592ns 1369713 1c000e82 fff60613 addi x12, x12, -1 x12=0000021a x12:0000021b +75723612ns 1369714 1c000e84 00130313 addi x6, x6, 1 x6=1c00b666 x6:1c00b665 +75723631ns 1369715 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000021a +75723711ns 1369719 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b666 PA:1c00b666 +75723730ns 1369720 1c000e82 fff60613 addi x12, x12, -1 x12=00000219 x12:0000021a +75723750ns 1369721 1c000e84 00130313 addi x6, x6, 1 x6=1c00b667 x6:1c00b666 +75723770ns 1369722 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000219 +75723849ns 1369726 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b667 PA:1c00b667 +75723869ns 1369727 1c000e82 fff60613 addi x12, x12, -1 x12=00000218 x12:00000219 +75723889ns 1369728 1c000e84 00130313 addi x6, x6, 1 x6=1c00b668 x6:1c00b667 +75723909ns 1369729 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000218 +75723988ns 1369733 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b668 PA:1c00b668 +75724007ns 1369734 1c000e82 fff60613 addi x12, x12, -1 x12=00000217 x12:00000218 +75724027ns 1369735 1c000e84 00130313 addi x6, x6, 1 x6=1c00b669 x6:1c00b668 +75724047ns 1369736 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000217 +75724126ns 1369740 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b669 PA:1c00b669 +75724146ns 1369741 1c000e82 fff60613 addi x12, x12, -1 x12=00000216 x12:00000217 +75724166ns 1369742 1c000e84 00130313 addi x6, x6, 1 x6=1c00b66a x6:1c00b669 +75724186ns 1369743 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000216 +75724265ns 1369747 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b66a PA:1c00b66a +75724285ns 1369748 1c000e82 fff60613 addi x12, x12, -1 x12=00000215 x12:00000216 +75724304ns 1369749 1c000e84 00130313 addi x6, x6, 1 x6=1c00b66b x6:1c00b66a +75724324ns 1369750 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000215 +75724403ns 1369754 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b66b PA:1c00b66b +75724423ns 1369755 1c000e82 fff60613 addi x12, x12, -1 x12=00000214 x12:00000215 +75724443ns 1369756 1c000e84 00130313 addi x6, x6, 1 x6=1c00b66c x6:1c00b66b +75724463ns 1369757 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000214 +75724542ns 1369761 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b66c PA:1c00b66c +75724562ns 1369762 1c000e82 fff60613 addi x12, x12, -1 x12=00000213 x12:00000214 +75724581ns 1369763 1c000e84 00130313 addi x6, x6, 1 x6=1c00b66d x6:1c00b66c +75724601ns 1369764 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000213 +75724680ns 1369768 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b66d PA:1c00b66d +75724700ns 1369769 1c000e82 fff60613 addi x12, x12, -1 x12=00000212 x12:00000213 +75724720ns 1369770 1c000e84 00130313 addi x6, x6, 1 x6=1c00b66e x6:1c00b66d +75724740ns 1369771 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000212 +75724819ns 1369775 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b66e PA:1c00b66e +75724839ns 1369776 1c000e82 fff60613 addi x12, x12, -1 x12=00000211 x12:00000212 +75724859ns 1369777 1c000e84 00130313 addi x6, x6, 1 x6=1c00b66f x6:1c00b66e +75724878ns 1369778 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000211 +75724957ns 1369782 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b66f PA:1c00b66f +75724977ns 1369783 1c000e82 fff60613 addi x12, x12, -1 x12=00000210 x12:00000211 +75724997ns 1369784 1c000e84 00130313 addi x6, x6, 1 x6=1c00b670 x6:1c00b66f +75725017ns 1369785 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000210 +75725096ns 1369789 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b670 PA:1c00b670 +75725116ns 1369790 1c000e82 fff60613 addi x12, x12, -1 x12=0000020f x12:00000210 +75725136ns 1369791 1c000e84 00130313 addi x6, x6, 1 x6=1c00b671 x6:1c00b670 +75725155ns 1369792 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000020f +75725235ns 1369796 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b671 PA:1c00b671 +75725254ns 1369797 1c000e82 fff60613 addi x12, x12, -1 x12=0000020e x12:0000020f +75725274ns 1369798 1c000e84 00130313 addi x6, x6, 1 x6=1c00b672 x6:1c00b671 +75725294ns 1369799 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000020e +75725373ns 1369803 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b672 PA:1c00b672 +75725393ns 1369804 1c000e82 fff60613 addi x12, x12, -1 x12=0000020d x12:0000020e +75725413ns 1369805 1c000e84 00130313 addi x6, x6, 1 x6=1c00b673 x6:1c00b672 +75725433ns 1369806 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000020d +75725512ns 1369810 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b673 PA:1c00b673 +75725531ns 1369811 1c000e82 fff60613 addi x12, x12, -1 x12=0000020c x12:0000020d +75725551ns 1369812 1c000e84 00130313 addi x6, x6, 1 x6=1c00b674 x6:1c00b673 +75725571ns 1369813 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000020c +75725650ns 1369817 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b674 PA:1c00b674 +75725670ns 1369818 1c000e82 fff60613 addi x12, x12, -1 x12=0000020b x12:0000020c +75725690ns 1369819 1c000e84 00130313 addi x6, x6, 1 x6=1c00b675 x6:1c00b674 +75725710ns 1369820 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000020b +75725789ns 1369824 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b675 PA:1c00b675 +75725809ns 1369825 1c000e82 fff60613 addi x12, x12, -1 x12=0000020a x12:0000020b +75725828ns 1369826 1c000e84 00130313 addi x6, x6, 1 x6=1c00b676 x6:1c00b675 +75725848ns 1369827 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000020a +75725927ns 1369831 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b676 PA:1c00b676 +75725947ns 1369832 1c000e82 fff60613 addi x12, x12, -1 x12=00000209 x12:0000020a +75725967ns 1369833 1c000e84 00130313 addi x6, x6, 1 x6=1c00b677 x6:1c00b676 +75725987ns 1369834 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000209 +75726066ns 1369838 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b677 PA:1c00b677 +75726086ns 1369839 1c000e82 fff60613 addi x12, x12, -1 x12=00000208 x12:00000209 +75726105ns 1369840 1c000e84 00130313 addi x6, x6, 1 x6=1c00b678 x6:1c00b677 +75726125ns 1369841 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000208 +75726204ns 1369845 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b678 PA:1c00b678 +75726224ns 1369846 1c000e82 fff60613 addi x12, x12, -1 x12=00000207 x12:00000208 +75726244ns 1369847 1c000e84 00130313 addi x6, x6, 1 x6=1c00b679 x6:1c00b678 +75726264ns 1369848 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000207 +75726343ns 1369852 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b679 PA:1c00b679 +75726363ns 1369853 1c000e82 fff60613 addi x12, x12, -1 x12=00000206 x12:00000207 +75726383ns 1369854 1c000e84 00130313 addi x6, x6, 1 x6=1c00b67a x6:1c00b679 +75726402ns 1369855 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000206 +75726481ns 1369859 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b67a PA:1c00b67a +75726501ns 1369860 1c000e82 fff60613 addi x12, x12, -1 x12=00000205 x12:00000206 +75726521ns 1369861 1c000e84 00130313 addi x6, x6, 1 x6=1c00b67b x6:1c00b67a +75726541ns 1369862 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000205 +75726620ns 1369866 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b67b PA:1c00b67b +75726640ns 1369867 1c000e82 fff60613 addi x12, x12, -1 x12=00000204 x12:00000205 +75726660ns 1369868 1c000e84 00130313 addi x6, x6, 1 x6=1c00b67c x6:1c00b67b +75726679ns 1369869 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000204 +75726759ns 1369873 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b67c PA:1c00b67c +75726778ns 1369874 1c000e82 fff60613 addi x12, x12, -1 x12=00000203 x12:00000204 +75726798ns 1369875 1c000e84 00130313 addi x6, x6, 1 x6=1c00b67d x6:1c00b67c +75726818ns 1369876 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000203 +75726897ns 1369880 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b67d PA:1c00b67d +75726917ns 1369881 1c000e82 fff60613 addi x12, x12, -1 x12=00000202 x12:00000203 +75726937ns 1369882 1c000e84 00130313 addi x6, x6, 1 x6=1c00b67e x6:1c00b67d +75726956ns 1369883 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000202 +75727036ns 1369887 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b67e PA:1c00b67e +75727055ns 1369888 1c000e82 fff60613 addi x12, x12, -1 x12=00000201 x12:00000202 +75727075ns 1369889 1c000e84 00130313 addi x6, x6, 1 x6=1c00b67f x6:1c00b67e +75727095ns 1369890 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000201 +75727174ns 1369894 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b67f PA:1c00b67f +75727194ns 1369895 1c000e82 fff60613 addi x12, x12, -1 x12=00000200 x12:00000201 +75727214ns 1369896 1c000e84 00130313 addi x6, x6, 1 x6=1c00b680 x6:1c00b67f +75727234ns 1369897 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000200 +75727313ns 1369901 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b680 PA:1c00b680 +75727333ns 1369902 1c000e82 fff60613 addi x12, x12, -1 x12=000001ff x12:00000200 +75727352ns 1369903 1c000e84 00130313 addi x6, x6, 1 x6=1c00b681 x6:1c00b680 +75727372ns 1369904 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ff +75727451ns 1369908 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b681 PA:1c00b681 +75727471ns 1369909 1c000e82 fff60613 addi x12, x12, -1 x12=000001fe x12:000001ff +75727491ns 1369910 1c000e84 00130313 addi x6, x6, 1 x6=1c00b682 x6:1c00b681 +75727511ns 1369911 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001fe +75727590ns 1369915 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b682 PA:1c00b682 +75727610ns 1369916 1c000e82 fff60613 addi x12, x12, -1 x12=000001fd x12:000001fe +75727629ns 1369917 1c000e84 00130313 addi x6, x6, 1 x6=1c00b683 x6:1c00b682 +75727649ns 1369918 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001fd +75727728ns 1369922 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b683 PA:1c00b683 +75727748ns 1369923 1c000e82 fff60613 addi x12, x12, -1 x12=000001fc x12:000001fd +75727768ns 1369924 1c000e84 00130313 addi x6, x6, 1 x6=1c00b684 x6:1c00b683 +75727788ns 1369925 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001fc +75727867ns 1369929 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b684 PA:1c00b684 +75727887ns 1369930 1c000e82 fff60613 addi x12, x12, -1 x12=000001fb x12:000001fc +75727907ns 1369931 1c000e84 00130313 addi x6, x6, 1 x6=1c00b685 x6:1c00b684 +75727926ns 1369932 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001fb +75728005ns 1369936 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b685 PA:1c00b685 +75728025ns 1369937 1c000e82 fff60613 addi x12, x12, -1 x12=000001fa x12:000001fb +75728045ns 1369938 1c000e84 00130313 addi x6, x6, 1 x6=1c00b686 x6:1c00b685 +75728065ns 1369939 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001fa +75728144ns 1369943 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b686 PA:1c00b686 +75728164ns 1369944 1c000e82 fff60613 addi x12, x12, -1 x12=000001f9 x12:000001fa +75728184ns 1369945 1c000e84 00130313 addi x6, x6, 1 x6=1c00b687 x6:1c00b686 +75728203ns 1369946 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001f9 +75728283ns 1369950 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b687 PA:1c00b687 +75728302ns 1369951 1c000e82 fff60613 addi x12, x12, -1 x12=000001f8 x12:000001f9 +75728322ns 1369952 1c000e84 00130313 addi x6, x6, 1 x6=1c00b688 x6:1c00b687 +75728342ns 1369953 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001f8 +75728421ns 1369957 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b688 PA:1c00b688 +75728441ns 1369958 1c000e82 fff60613 addi x12, x12, -1 x12=000001f7 x12:000001f8 +75728461ns 1369959 1c000e84 00130313 addi x6, x6, 1 x6=1c00b689 x6:1c00b688 +75728480ns 1369960 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001f7 +75728560ns 1369964 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b689 PA:1c00b689 +75728579ns 1369965 1c000e82 fff60613 addi x12, x12, -1 x12=000001f6 x12:000001f7 +75728599ns 1369966 1c000e84 00130313 addi x6, x6, 1 x6=1c00b68a x6:1c00b689 +75728619ns 1369967 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001f6 +75728698ns 1369971 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b68a PA:1c00b68a +75728718ns 1369972 1c000e82 fff60613 addi x12, x12, -1 x12=000001f5 x12:000001f6 +75728738ns 1369973 1c000e84 00130313 addi x6, x6, 1 x6=1c00b68b x6:1c00b68a +75728758ns 1369974 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001f5 +75728837ns 1369978 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b68b PA:1c00b68b +75728857ns 1369979 1c000e82 fff60613 addi x12, x12, -1 x12=000001f4 x12:000001f5 +75728876ns 1369980 1c000e84 00130313 addi x6, x6, 1 x6=1c00b68c x6:1c00b68b +75728896ns 1369981 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001f4 +75728975ns 1369985 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b68c PA:1c00b68c +75728995ns 1369986 1c000e82 fff60613 addi x12, x12, -1 x12=000001f3 x12:000001f4 +75729015ns 1369987 1c000e84 00130313 addi x6, x6, 1 x6=1c00b68d x6:1c00b68c +75729035ns 1369988 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001f3 +75729114ns 1369992 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b68d PA:1c00b68d +75729134ns 1369993 1c000e82 fff60613 addi x12, x12, -1 x12=000001f2 x12:000001f3 +75729153ns 1369994 1c000e84 00130313 addi x6, x6, 1 x6=1c00b68e x6:1c00b68d +75729173ns 1369995 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001f2 +75729252ns 1369999 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b68e PA:1c00b68e +75729272ns 1370000 1c000e82 fff60613 addi x12, x12, -1 x12=000001f1 x12:000001f2 +75729292ns 1370001 1c000e84 00130313 addi x6, x6, 1 x6=1c00b68f x6:1c00b68e +75729312ns 1370002 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001f1 +75729391ns 1370006 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b68f PA:1c00b68f +75729411ns 1370007 1c000e82 fff60613 addi x12, x12, -1 x12=000001f0 x12:000001f1 +75729430ns 1370008 1c000e84 00130313 addi x6, x6, 1 x6=1c00b690 x6:1c00b68f +75729450ns 1370009 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001f0 +75729529ns 1370013 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b690 PA:1c00b690 +75729549ns 1370014 1c000e82 fff60613 addi x12, x12, -1 x12=000001ef x12:000001f0 +75729569ns 1370015 1c000e84 00130313 addi x6, x6, 1 x6=1c00b691 x6:1c00b690 +75729589ns 1370016 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ef +75729668ns 1370020 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b691 PA:1c00b691 +75729688ns 1370021 1c000e82 fff60613 addi x12, x12, -1 x12=000001ee x12:000001ef +75729708ns 1370022 1c000e84 00130313 addi x6, x6, 1 x6=1c00b692 x6:1c00b691 +75729727ns 1370023 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ee +75729807ns 1370027 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b692 PA:1c00b692 +75729826ns 1370028 1c000e82 fff60613 addi x12, x12, -1 x12=000001ed x12:000001ee +75729846ns 1370029 1c000e84 00130313 addi x6, x6, 1 x6=1c00b693 x6:1c00b692 +75729866ns 1370030 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ed +75729945ns 1370034 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b693 PA:1c00b693 +75729965ns 1370035 1c000e82 fff60613 addi x12, x12, -1 x12=000001ec x12:000001ed +75729985ns 1370036 1c000e84 00130313 addi x6, x6, 1 x6=1c00b694 x6:1c00b693 +75730004ns 1370037 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ec +75730084ns 1370041 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b694 PA:1c00b694 +75730103ns 1370042 1c000e82 fff60613 addi x12, x12, -1 x12=000001eb x12:000001ec +75730123ns 1370043 1c000e84 00130313 addi x6, x6, 1 x6=1c00b695 x6:1c00b694 +75730143ns 1370044 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001eb +75730222ns 1370048 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b695 PA:1c00b695 +75730242ns 1370049 1c000e82 fff60613 addi x12, x12, -1 x12=000001ea x12:000001eb +75730262ns 1370050 1c000e84 00130313 addi x6, x6, 1 x6=1c00b696 x6:1c00b695 +75730282ns 1370051 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ea +75730361ns 1370055 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b696 PA:1c00b696 +75730381ns 1370056 1c000e82 fff60613 addi x12, x12, -1 x12=000001e9 x12:000001ea +75730400ns 1370057 1c000e84 00130313 addi x6, x6, 1 x6=1c00b697 x6:1c00b696 +75730420ns 1370058 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001e9 +75730499ns 1370062 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b697 PA:1c00b697 +75730519ns 1370063 1c000e82 fff60613 addi x12, x12, -1 x12=000001e8 x12:000001e9 +75730539ns 1370064 1c000e84 00130313 addi x6, x6, 1 x6=1c00b698 x6:1c00b697 +75730559ns 1370065 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001e8 +75730638ns 1370069 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b698 PA:1c00b698 +75730658ns 1370070 1c000e82 fff60613 addi x12, x12, -1 x12=000001e7 x12:000001e8 +75730677ns 1370071 1c000e84 00130313 addi x6, x6, 1 x6=1c00b699 x6:1c00b698 +75730697ns 1370072 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001e7 +75730776ns 1370076 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b699 PA:1c00b699 +75730796ns 1370077 1c000e82 fff60613 addi x12, x12, -1 x12=000001e6 x12:000001e7 +75730816ns 1370078 1c000e84 00130313 addi x6, x6, 1 x6=1c00b69a x6:1c00b699 +75730836ns 1370079 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001e6 +75730915ns 1370083 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b69a PA:1c00b69a +75730935ns 1370084 1c000e82 fff60613 addi x12, x12, -1 x12=000001e5 x12:000001e6 +75730954ns 1370085 1c000e84 00130313 addi x6, x6, 1 x6=1c00b69b x6:1c00b69a +75730974ns 1370086 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001e5 +75731053ns 1370090 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b69b PA:1c00b69b +75731073ns 1370091 1c000e82 fff60613 addi x12, x12, -1 x12=000001e4 x12:000001e5 +75731093ns 1370092 1c000e84 00130313 addi x6, x6, 1 x6=1c00b69c x6:1c00b69b +75731113ns 1370093 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001e4 +75731192ns 1370097 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b69c PA:1c00b69c +75731212ns 1370098 1c000e82 fff60613 addi x12, x12, -1 x12=000001e3 x12:000001e4 +75731232ns 1370099 1c000e84 00130313 addi x6, x6, 1 x6=1c00b69d x6:1c00b69c +75731251ns 1370100 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001e3 +75731331ns 1370104 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b69d PA:1c00b69d +75731350ns 1370105 1c000e82 fff60613 addi x12, x12, -1 x12=000001e2 x12:000001e3 +75731370ns 1370106 1c000e84 00130313 addi x6, x6, 1 x6=1c00b69e x6:1c00b69d +75731390ns 1370107 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001e2 +75731469ns 1370111 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b69e PA:1c00b69e +75731489ns 1370112 1c000e82 fff60613 addi x12, x12, -1 x12=000001e1 x12:000001e2 +75731509ns 1370113 1c000e84 00130313 addi x6, x6, 1 x6=1c00b69f x6:1c00b69e +75731528ns 1370114 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001e1 +75731608ns 1370118 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b69f PA:1c00b69f +75731627ns 1370119 1c000e82 fff60613 addi x12, x12, -1 x12=000001e0 x12:000001e1 +75731647ns 1370120 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6a0 x6:1c00b69f +75731667ns 1370121 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001e0 +75731746ns 1370125 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6a0 PA:1c00b6a0 +75731766ns 1370126 1c000e82 fff60613 addi x12, x12, -1 x12=000001df x12:000001e0 +75731786ns 1370127 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6a1 x6:1c00b6a0 +75731806ns 1370128 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001df +75731885ns 1370132 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6a1 PA:1c00b6a1 +75731904ns 1370133 1c000e82 fff60613 addi x12, x12, -1 x12=000001de x12:000001df +75731924ns 1370134 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6a2 x6:1c00b6a1 +75731944ns 1370135 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001de +75732023ns 1370139 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6a2 PA:1c00b6a2 +75732043ns 1370140 1c000e82 fff60613 addi x12, x12, -1 x12=000001dd x12:000001de +75732063ns 1370141 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6a3 x6:1c00b6a2 +75732083ns 1370142 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001dd +75732162ns 1370146 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6a3 PA:1c00b6a3 +75732182ns 1370147 1c000e82 fff60613 addi x12, x12, -1 x12=000001dc x12:000001dd +75732201ns 1370148 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6a4 x6:1c00b6a3 +75732221ns 1370149 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001dc +75732300ns 1370153 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6a4 PA:1c00b6a4 +75732320ns 1370154 1c000e82 fff60613 addi x12, x12, -1 x12=000001db x12:000001dc +75732340ns 1370155 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6a5 x6:1c00b6a4 +75732360ns 1370156 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001db +75732439ns 1370160 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6a5 PA:1c00b6a5 +75732459ns 1370161 1c000e82 fff60613 addi x12, x12, -1 x12=000001da x12:000001db +75732478ns 1370162 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6a6 x6:1c00b6a5 +75732498ns 1370163 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001da +75732577ns 1370167 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6a6 PA:1c00b6a6 +75732597ns 1370168 1c000e82 fff60613 addi x12, x12, -1 x12=000001d9 x12:000001da +75732617ns 1370169 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6a7 x6:1c00b6a6 +75732637ns 1370170 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001d9 +75732716ns 1370174 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6a7 PA:1c00b6a7 +75732736ns 1370175 1c000e82 fff60613 addi x12, x12, -1 x12=000001d8 x12:000001d9 +75732756ns 1370176 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6a8 x6:1c00b6a7 +75732775ns 1370177 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001d8 +75732855ns 1370181 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6a8 PA:1c00b6a8 +75732874ns 1370182 1c000e82 fff60613 addi x12, x12, -1 x12=000001d7 x12:000001d8 +75732894ns 1370183 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6a9 x6:1c00b6a8 +75732914ns 1370184 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001d7 +75732993ns 1370188 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6a9 PA:1c00b6a9 +75733013ns 1370189 1c000e82 fff60613 addi x12, x12, -1 x12=000001d6 x12:000001d7 +75733033ns 1370190 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6aa x6:1c00b6a9 +75733052ns 1370191 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001d6 +75733132ns 1370195 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6aa PA:1c00b6aa +75733151ns 1370196 1c000e82 fff60613 addi x12, x12, -1 x12=000001d5 x12:000001d6 +75733171ns 1370197 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6ab x6:1c00b6aa +75733191ns 1370198 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001d5 +75733270ns 1370202 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6ab PA:1c00b6ab +75733290ns 1370203 1c000e82 fff60613 addi x12, x12, -1 x12=000001d4 x12:000001d5 +75733310ns 1370204 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6ac x6:1c00b6ab +75733330ns 1370205 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001d4 +75733409ns 1370209 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6ac PA:1c00b6ac +75733428ns 1370210 1c000e82 fff60613 addi x12, x12, -1 x12=000001d3 x12:000001d4 +75733448ns 1370211 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6ad x6:1c00b6ac +75733468ns 1370212 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001d3 +75733547ns 1370216 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6ad PA:1c00b6ad +75733567ns 1370217 1c000e82 fff60613 addi x12, x12, -1 x12=000001d2 x12:000001d3 +75733587ns 1370218 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6ae x6:1c00b6ad +75733607ns 1370219 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001d2 +75733686ns 1370223 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6ae PA:1c00b6ae +75733706ns 1370224 1c000e82 fff60613 addi x12, x12, -1 x12=000001d1 x12:000001d2 +75733725ns 1370225 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6af x6:1c00b6ae +75733745ns 1370226 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001d1 +75733824ns 1370230 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6af PA:1c00b6af +75733844ns 1370231 1c000e82 fff60613 addi x12, x12, -1 x12=000001d0 x12:000001d1 +75733864ns 1370232 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6b0 x6:1c00b6af +75733884ns 1370233 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001d0 +75733963ns 1370237 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6b0 PA:1c00b6b0 +75733983ns 1370238 1c000e82 fff60613 addi x12, x12, -1 x12=000001cf x12:000001d0 +75734002ns 1370239 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6b1 x6:1c00b6b0 +75734022ns 1370240 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001cf +75734101ns 1370244 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6b1 PA:1c00b6b1 +75734121ns 1370245 1c000e82 fff60613 addi x12, x12, -1 x12=000001ce x12:000001cf +75734141ns 1370246 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6b2 x6:1c00b6b1 +75734161ns 1370247 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ce +75734240ns 1370251 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6b2 PA:1c00b6b2 +75734260ns 1370252 1c000e82 fff60613 addi x12, x12, -1 x12=000001cd x12:000001ce +75734280ns 1370253 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6b3 x6:1c00b6b2 +75734299ns 1370254 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001cd +75734378ns 1370258 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6b3 PA:1c00b6b3 +75734398ns 1370259 1c000e82 fff60613 addi x12, x12, -1 x12=000001cc x12:000001cd +75734418ns 1370260 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6b4 x6:1c00b6b3 +75734438ns 1370261 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001cc +75734517ns 1370265 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6b4 PA:1c00b6b4 +75734537ns 1370266 1c000e82 fff60613 addi x12, x12, -1 x12=000001cb x12:000001cc +75734557ns 1370267 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6b5 x6:1c00b6b4 +75734576ns 1370268 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001cb +75734656ns 1370272 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6b5 PA:1c00b6b5 +75734675ns 1370273 1c000e82 fff60613 addi x12, x12, -1 x12=000001ca x12:000001cb +75734695ns 1370274 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6b6 x6:1c00b6b5 +75734715ns 1370275 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ca +75734794ns 1370279 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6b6 PA:1c00b6b6 +75734814ns 1370280 1c000e82 fff60613 addi x12, x12, -1 x12=000001c9 x12:000001ca +75734834ns 1370281 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6b7 x6:1c00b6b6 +75734853ns 1370282 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001c9 +75734933ns 1370286 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6b7 PA:1c00b6b7 +75734952ns 1370287 1c000e82 fff60613 addi x12, x12, -1 x12=000001c8 x12:000001c9 +75734972ns 1370288 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6b8 x6:1c00b6b7 +75734992ns 1370289 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001c8 +75735071ns 1370293 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6b8 PA:1c00b6b8 +75735091ns 1370294 1c000e82 fff60613 addi x12, x12, -1 x12=000001c7 x12:000001c8 +75735111ns 1370295 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6b9 x6:1c00b6b8 +75735131ns 1370296 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001c7 +75735210ns 1370300 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6b9 PA:1c00b6b9 +75735230ns 1370301 1c000e82 fff60613 addi x12, x12, -1 x12=000001c6 x12:000001c7 +75735249ns 1370302 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6ba x6:1c00b6b9 +75735269ns 1370303 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001c6 +75735348ns 1370307 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6ba PA:1c00b6ba +75735368ns 1370308 1c000e82 fff60613 addi x12, x12, -1 x12=000001c5 x12:000001c6 +75735388ns 1370309 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6bb x6:1c00b6ba +75735408ns 1370310 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001c5 +75735487ns 1370314 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6bb PA:1c00b6bb +75735507ns 1370315 1c000e82 fff60613 addi x12, x12, -1 x12=000001c4 x12:000001c5 +75735526ns 1370316 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6bc x6:1c00b6bb +75735546ns 1370317 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001c4 +75735625ns 1370321 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6bc PA:1c00b6bc +75735645ns 1370322 1c000e82 fff60613 addi x12, x12, -1 x12=000001c3 x12:000001c4 +75735665ns 1370323 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6bd x6:1c00b6bc +75735685ns 1370324 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001c3 +75735764ns 1370328 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6bd PA:1c00b6bd +75735784ns 1370329 1c000e82 fff60613 addi x12, x12, -1 x12=000001c2 x12:000001c3 +75735804ns 1370330 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6be x6:1c00b6bd +75735823ns 1370331 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001c2 +75735902ns 1370335 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6be PA:1c00b6be +75735922ns 1370336 1c000e82 fff60613 addi x12, x12, -1 x12=000001c1 x12:000001c2 +75735942ns 1370337 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6bf x6:1c00b6be +75735962ns 1370338 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001c1 +75736041ns 1370342 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6bf PA:1c00b6bf +75736061ns 1370343 1c000e82 fff60613 addi x12, x12, -1 x12=000001c0 x12:000001c1 +75736081ns 1370344 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6c0 x6:1c00b6bf +75736100ns 1370345 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001c0 +75736180ns 1370349 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6c0 PA:1c00b6c0 +75736199ns 1370350 1c000e82 fff60613 addi x12, x12, -1 x12=000001bf x12:000001c0 +75736219ns 1370351 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6c1 x6:1c00b6c0 +75736239ns 1370352 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001bf +75736318ns 1370356 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6c1 PA:1c00b6c1 +75736338ns 1370357 1c000e82 fff60613 addi x12, x12, -1 x12=000001be x12:000001bf +75736358ns 1370358 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6c2 x6:1c00b6c1 +75736377ns 1370359 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001be +75736457ns 1370363 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6c2 PA:1c00b6c2 +75736476ns 1370364 1c000e82 fff60613 addi x12, x12, -1 x12=000001bd x12:000001be +75736496ns 1370365 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6c3 x6:1c00b6c2 +75736516ns 1370366 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001bd +75736595ns 1370370 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6c3 PA:1c00b6c3 +75736615ns 1370371 1c000e82 fff60613 addi x12, x12, -1 x12=000001bc x12:000001bd +75736635ns 1370372 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6c4 x6:1c00b6c3 +75736655ns 1370373 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001bc +75736734ns 1370377 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6c4 PA:1c00b6c4 +75736754ns 1370378 1c000e82 fff60613 addi x12, x12, -1 x12=000001bb x12:000001bc +75736773ns 1370379 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6c5 x6:1c00b6c4 +75736793ns 1370380 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001bb +75736872ns 1370384 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6c5 PA:1c00b6c5 +75736892ns 1370385 1c000e82 fff60613 addi x12, x12, -1 x12=000001ba x12:000001bb +75736912ns 1370386 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6c6 x6:1c00b6c5 +75736932ns 1370387 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ba +75737011ns 1370391 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6c6 PA:1c00b6c6 +75737031ns 1370392 1c000e82 fff60613 addi x12, x12, -1 x12=000001b9 x12:000001ba +75737050ns 1370393 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6c7 x6:1c00b6c6 +75737070ns 1370394 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001b9 +75737149ns 1370398 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6c7 PA:1c00b6c7 +75737169ns 1370399 1c000e82 fff60613 addi x12, x12, -1 x12=000001b8 x12:000001b9 +75737189ns 1370400 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6c8 x6:1c00b6c7 +75737209ns 1370401 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001b8 +75737288ns 1370405 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6c8 PA:1c00b6c8 +75737308ns 1370406 1c000e82 fff60613 addi x12, x12, -1 x12=000001b7 x12:000001b8 +75737327ns 1370407 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6c9 x6:1c00b6c8 +75737347ns 1370408 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001b7 +75737426ns 1370412 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6c9 PA:1c00b6c9 +75737446ns 1370413 1c000e82 fff60613 addi x12, x12, -1 x12=000001b6 x12:000001b7 +75737466ns 1370414 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6ca x6:1c00b6c9 +75737486ns 1370415 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001b6 +75737565ns 1370419 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6ca PA:1c00b6ca +75737585ns 1370420 1c000e82 fff60613 addi x12, x12, -1 x12=000001b5 x12:000001b6 +75737605ns 1370421 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6cb x6:1c00b6ca +75737624ns 1370422 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001b5 +75737704ns 1370426 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6cb PA:1c00b6cb +75737723ns 1370427 1c000e82 fff60613 addi x12, x12, -1 x12=000001b4 x12:000001b5 +75737743ns 1370428 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6cc x6:1c00b6cb +75737763ns 1370429 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001b4 +75737842ns 1370433 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6cc PA:1c00b6cc +75737862ns 1370434 1c000e82 fff60613 addi x12, x12, -1 x12=000001b3 x12:000001b4 +75737882ns 1370435 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6cd x6:1c00b6cc +75737901ns 1370436 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001b3 +75737981ns 1370440 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6cd PA:1c00b6cd +75738000ns 1370441 1c000e82 fff60613 addi x12, x12, -1 x12=000001b2 x12:000001b3 +75738020ns 1370442 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6ce x6:1c00b6cd +75738040ns 1370443 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001b2 +75738119ns 1370447 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6ce PA:1c00b6ce +75738139ns 1370448 1c000e82 fff60613 addi x12, x12, -1 x12=000001b1 x12:000001b2 +75738159ns 1370449 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6cf x6:1c00b6ce +75738179ns 1370450 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001b1 +75738258ns 1370454 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6cf PA:1c00b6cf +75738278ns 1370455 1c000e82 fff60613 addi x12, x12, -1 x12=000001b0 x12:000001b1 +75738297ns 1370456 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6d0 x6:1c00b6cf +75738317ns 1370457 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001b0 +75738396ns 1370461 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6d0 PA:1c00b6d0 +75738416ns 1370462 1c000e82 fff60613 addi x12, x12, -1 x12=000001af x12:000001b0 +75738436ns 1370463 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6d1 x6:1c00b6d0 +75738456ns 1370464 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001af +75738535ns 1370468 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6d1 PA:1c00b6d1 +75738555ns 1370469 1c000e82 fff60613 addi x12, x12, -1 x12=000001ae x12:000001af +75738574ns 1370470 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6d2 x6:1c00b6d1 +75738594ns 1370471 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ae +75738673ns 1370475 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6d2 PA:1c00b6d2 +75738693ns 1370476 1c000e82 fff60613 addi x12, x12, -1 x12=000001ad x12:000001ae +75738713ns 1370477 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6d3 x6:1c00b6d2 +75738733ns 1370478 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ad +75738812ns 1370482 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6d3 PA:1c00b6d3 +75738832ns 1370483 1c000e82 fff60613 addi x12, x12, -1 x12=000001ac x12:000001ad +75738851ns 1370484 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6d4 x6:1c00b6d3 +75738871ns 1370485 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ac +75738950ns 1370489 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6d4 PA:1c00b6d4 +75738970ns 1370490 1c000e82 fff60613 addi x12, x12, -1 x12=000001ab x12:000001ac +75738990ns 1370491 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6d5 x6:1c00b6d4 +75739010ns 1370492 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001ab +75739089ns 1370496 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6d5 PA:1c00b6d5 +75739109ns 1370497 1c000e82 fff60613 addi x12, x12, -1 x12=000001aa x12:000001ab +75739129ns 1370498 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6d6 x6:1c00b6d5 +75739148ns 1370499 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001aa +75739228ns 1370503 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6d6 PA:1c00b6d6 +75739247ns 1370504 1c000e82 fff60613 addi x12, x12, -1 x12=000001a9 x12:000001aa +75739267ns 1370505 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6d7 x6:1c00b6d6 +75739287ns 1370506 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001a9 +75739366ns 1370510 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6d7 PA:1c00b6d7 +75739386ns 1370511 1c000e82 fff60613 addi x12, x12, -1 x12=000001a8 x12:000001a9 +75739406ns 1370512 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6d8 x6:1c00b6d7 +75739425ns 1370513 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001a8 +75739505ns 1370517 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6d8 PA:1c00b6d8 +75739524ns 1370518 1c000e82 fff60613 addi x12, x12, -1 x12=000001a7 x12:000001a8 +75739544ns 1370519 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6d9 x6:1c00b6d8 +75739564ns 1370520 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001a7 +75739643ns 1370524 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6d9 PA:1c00b6d9 +75739663ns 1370525 1c000e82 fff60613 addi x12, x12, -1 x12=000001a6 x12:000001a7 +75739683ns 1370526 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6da x6:1c00b6d9 +75739703ns 1370527 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001a6 +75739782ns 1370531 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6da PA:1c00b6da +75739801ns 1370532 1c000e82 fff60613 addi x12, x12, -1 x12=000001a5 x12:000001a6 +75739821ns 1370533 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6db x6:1c00b6da +75739841ns 1370534 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001a5 +75739920ns 1370538 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6db PA:1c00b6db +75739940ns 1370539 1c000e82 fff60613 addi x12, x12, -1 x12=000001a4 x12:000001a5 +75739960ns 1370540 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6dc x6:1c00b6db +75739980ns 1370541 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001a4 +75740059ns 1370545 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6dc PA:1c00b6dc +75740079ns 1370546 1c000e82 fff60613 addi x12, x12, -1 x12=000001a3 x12:000001a4 +75740098ns 1370547 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6dd x6:1c00b6dc +75740118ns 1370548 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001a3 +75740197ns 1370552 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6dd PA:1c00b6dd +75740217ns 1370553 1c000e82 fff60613 addi x12, x12, -1 x12=000001a2 x12:000001a3 +75740237ns 1370554 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6de x6:1c00b6dd +75740257ns 1370555 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001a2 +75740336ns 1370559 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6de PA:1c00b6de +75740356ns 1370560 1c000e82 fff60613 addi x12, x12, -1 x12=000001a1 x12:000001a2 +75740375ns 1370561 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6df x6:1c00b6de +75740395ns 1370562 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001a1 +75740474ns 1370566 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6df PA:1c00b6df +75740494ns 1370567 1c000e82 fff60613 addi x12, x12, -1 x12=000001a0 x12:000001a1 +75740514ns 1370568 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6e0 x6:1c00b6df +75740534ns 1370569 1c000e86 fe061ce3 bne x12, x0, -8 x12:000001a0 +75740613ns 1370573 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6e0 PA:1c00b6e0 +75740633ns 1370574 1c000e82 fff60613 addi x12, x12, -1 x12=0000019f x12:000001a0 +75740653ns 1370575 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6e1 x6:1c00b6e0 +75740672ns 1370576 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000019f +75740752ns 1370580 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6e1 PA:1c00b6e1 +75740771ns 1370581 1c000e82 fff60613 addi x12, x12, -1 x12=0000019e x12:0000019f +75740791ns 1370582 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6e2 x6:1c00b6e1 +75740811ns 1370583 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000019e +75740890ns 1370587 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6e2 PA:1c00b6e2 +75740910ns 1370588 1c000e82 fff60613 addi x12, x12, -1 x12=0000019d x12:0000019e +75740930ns 1370589 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6e3 x6:1c00b6e2 +75740949ns 1370590 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000019d +75741029ns 1370594 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6e3 PA:1c00b6e3 +75741048ns 1370595 1c000e82 fff60613 addi x12, x12, -1 x12=0000019c x12:0000019d +75741068ns 1370596 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6e4 x6:1c00b6e3 +75741088ns 1370597 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000019c +75741167ns 1370601 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6e4 PA:1c00b6e4 +75741187ns 1370602 1c000e82 fff60613 addi x12, x12, -1 x12=0000019b x12:0000019c +75741207ns 1370603 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6e5 x6:1c00b6e4 +75741227ns 1370604 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000019b +75741306ns 1370608 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6e5 PA:1c00b6e5 +75741325ns 1370609 1c000e82 fff60613 addi x12, x12, -1 x12=0000019a x12:0000019b +75741345ns 1370610 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6e6 x6:1c00b6e5 +75741365ns 1370611 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000019a +75741444ns 1370615 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6e6 PA:1c00b6e6 +75741464ns 1370616 1c000e82 fff60613 addi x12, x12, -1 x12=00000199 x12:0000019a +75741484ns 1370617 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6e7 x6:1c00b6e6 +75741504ns 1370618 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000199 +75741583ns 1370622 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6e7 PA:1c00b6e7 +75741603ns 1370623 1c000e82 fff60613 addi x12, x12, -1 x12=00000198 x12:00000199 +75741622ns 1370624 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6e8 x6:1c00b6e7 +75741642ns 1370625 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000198 +75741721ns 1370629 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6e8 PA:1c00b6e8 +75741741ns 1370630 1c000e82 fff60613 addi x12, x12, -1 x12=00000197 x12:00000198 +75741761ns 1370631 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6e9 x6:1c00b6e8 +75741781ns 1370632 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000197 +75741860ns 1370636 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6e9 PA:1c00b6e9 +75741880ns 1370637 1c000e82 fff60613 addi x12, x12, -1 x12=00000196 x12:00000197 +75741899ns 1370638 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6ea x6:1c00b6e9 +75741919ns 1370639 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000196 +75741998ns 1370643 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6ea PA:1c00b6ea +75742018ns 1370644 1c000e82 fff60613 addi x12, x12, -1 x12=00000195 x12:00000196 +75742038ns 1370645 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6eb x6:1c00b6ea +75742058ns 1370646 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000195 +75742137ns 1370650 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6eb PA:1c00b6eb +75742157ns 1370651 1c000e82 fff60613 addi x12, x12, -1 x12=00000194 x12:00000195 +75742177ns 1370652 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6ec x6:1c00b6eb +75742196ns 1370653 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000194 +75742275ns 1370657 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6ec PA:1c00b6ec +75742295ns 1370658 1c000e82 fff60613 addi x12, x12, -1 x12=00000193 x12:00000194 +75742315ns 1370659 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6ed x6:1c00b6ec +75742335ns 1370660 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000193 +75742414ns 1370664 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6ed PA:1c00b6ed +75742434ns 1370665 1c000e82 fff60613 addi x12, x12, -1 x12=00000192 x12:00000193 +75742454ns 1370666 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6ee x6:1c00b6ed +75742473ns 1370667 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000192 +75742553ns 1370671 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6ee PA:1c00b6ee +75742572ns 1370672 1c000e82 fff60613 addi x12, x12, -1 x12=00000191 x12:00000192 +75742592ns 1370673 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6ef x6:1c00b6ee +75742612ns 1370674 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000191 +75742691ns 1370678 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6ef PA:1c00b6ef +75742711ns 1370679 1c000e82 fff60613 addi x12, x12, -1 x12=00000190 x12:00000191 +75742731ns 1370680 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6f0 x6:1c00b6ef +75742751ns 1370681 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000190 +75742830ns 1370685 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6f0 PA:1c00b6f0 +75742849ns 1370686 1c000e82 fff60613 addi x12, x12, -1 x12=0000018f x12:00000190 +75742869ns 1370687 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6f1 x6:1c00b6f0 +75742889ns 1370688 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000018f +75742968ns 1370692 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6f1 PA:1c00b6f1 +75742988ns 1370693 1c000e82 fff60613 addi x12, x12, -1 x12=0000018e x12:0000018f +75743008ns 1370694 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6f2 x6:1c00b6f1 +75743028ns 1370695 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000018e +75743107ns 1370699 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6f2 PA:1c00b6f2 +75743127ns 1370700 1c000e82 fff60613 addi x12, x12, -1 x12=0000018d x12:0000018e +75743146ns 1370701 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6f3 x6:1c00b6f2 +75743166ns 1370702 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000018d +75743245ns 1370706 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6f3 PA:1c00b6f3 +75743265ns 1370707 1c000e82 fff60613 addi x12, x12, -1 x12=0000018c x12:0000018d +75743285ns 1370708 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6f4 x6:1c00b6f3 +75743305ns 1370709 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000018c +75743384ns 1370713 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6f4 PA:1c00b6f4 +75743404ns 1370714 1c000e82 fff60613 addi x12, x12, -1 x12=0000018b x12:0000018c +75743423ns 1370715 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6f5 x6:1c00b6f4 +75743443ns 1370716 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000018b +75743522ns 1370720 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6f5 PA:1c00b6f5 +75743542ns 1370721 1c000e82 fff60613 addi x12, x12, -1 x12=0000018a x12:0000018b +75743562ns 1370722 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6f6 x6:1c00b6f5 +75743582ns 1370723 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000018a +75743661ns 1370727 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6f6 PA:1c00b6f6 +75743681ns 1370728 1c000e82 fff60613 addi x12, x12, -1 x12=00000189 x12:0000018a +75743701ns 1370729 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6f7 x6:1c00b6f6 +75743720ns 1370730 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000189 +75743799ns 1370734 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6f7 PA:1c00b6f7 +75743819ns 1370735 1c000e82 fff60613 addi x12, x12, -1 x12=00000188 x12:00000189 +75743839ns 1370736 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6f8 x6:1c00b6f7 +75743859ns 1370737 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000188 +75743938ns 1370741 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6f8 PA:1c00b6f8 +75743958ns 1370742 1c000e82 fff60613 addi x12, x12, -1 x12=00000187 x12:00000188 +75743978ns 1370743 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6f9 x6:1c00b6f8 +75743997ns 1370744 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000187 +75744077ns 1370748 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6f9 PA:1c00b6f9 +75744096ns 1370749 1c000e82 fff60613 addi x12, x12, -1 x12=00000186 x12:00000187 +75744116ns 1370750 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6fa x6:1c00b6f9 +75744136ns 1370751 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000186 +75744215ns 1370755 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6fa PA:1c00b6fa +75744235ns 1370756 1c000e82 fff60613 addi x12, x12, -1 x12=00000185 x12:00000186 +75744255ns 1370757 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6fb x6:1c00b6fa +75744274ns 1370758 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000185 +75744354ns 1370762 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6fb PA:1c00b6fb +75744373ns 1370763 1c000e82 fff60613 addi x12, x12, -1 x12=00000184 x12:00000185 +75744393ns 1370764 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6fc x6:1c00b6fb +75744413ns 1370765 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000184 +75744492ns 1370769 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6fc PA:1c00b6fc +75744512ns 1370770 1c000e82 fff60613 addi x12, x12, -1 x12=00000183 x12:00000184 +75744532ns 1370771 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6fd x6:1c00b6fc +75744552ns 1370772 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000183 +75744631ns 1370776 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6fd PA:1c00b6fd +75744651ns 1370777 1c000e82 fff60613 addi x12, x12, -1 x12=00000182 x12:00000183 +75744670ns 1370778 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6fe x6:1c00b6fd +75744690ns 1370779 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000182 +75744769ns 1370783 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6fe PA:1c00b6fe +75744789ns 1370784 1c000e82 fff60613 addi x12, x12, -1 x12=00000181 x12:00000182 +75744809ns 1370785 1c000e84 00130313 addi x6, x6, 1 x6=1c00b6ff x6:1c00b6fe +75744829ns 1370786 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000181 +75744908ns 1370790 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b6ff PA:1c00b6ff +75744928ns 1370791 1c000e82 fff60613 addi x12, x12, -1 x12=00000180 x12:00000181 +75744947ns 1370792 1c000e84 00130313 addi x6, x6, 1 x6=1c00b700 x6:1c00b6ff +75744967ns 1370793 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000180 +75745046ns 1370797 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b700 PA:1c00b700 +75745066ns 1370798 1c000e82 fff60613 addi x12, x12, -1 x12=0000017f x12:00000180 +75745086ns 1370799 1c000e84 00130313 addi x6, x6, 1 x6=1c00b701 x6:1c00b700 +75745106ns 1370800 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000017f +75745185ns 1370804 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b701 PA:1c00b701 +75745205ns 1370805 1c000e82 fff60613 addi x12, x12, -1 x12=0000017e x12:0000017f +75745225ns 1370806 1c000e84 00130313 addi x6, x6, 1 x6=1c00b702 x6:1c00b701 +75745244ns 1370807 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000017e +75745323ns 1370811 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b702 PA:1c00b702 +75745343ns 1370812 1c000e82 fff60613 addi x12, x12, -1 x12=0000017d x12:0000017e +75745363ns 1370813 1c000e84 00130313 addi x6, x6, 1 x6=1c00b703 x6:1c00b702 +75745383ns 1370814 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000017d +75745462ns 1370818 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b703 PA:1c00b703 +75745482ns 1370819 1c000e82 fff60613 addi x12, x12, -1 x12=0000017c x12:0000017d +75745502ns 1370820 1c000e84 00130313 addi x6, x6, 1 x6=1c00b704 x6:1c00b703 +75745521ns 1370821 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000017c +75745601ns 1370825 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b704 PA:1c00b704 +75745620ns 1370826 1c000e82 fff60613 addi x12, x12, -1 x12=0000017b x12:0000017c +75745640ns 1370827 1c000e84 00130313 addi x6, x6, 1 x6=1c00b705 x6:1c00b704 +75745660ns 1370828 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000017b +75745739ns 1370832 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b705 PA:1c00b705 +75745759ns 1370833 1c000e82 fff60613 addi x12, x12, -1 x12=0000017a x12:0000017b +75745779ns 1370834 1c000e84 00130313 addi x6, x6, 1 x6=1c00b706 x6:1c00b705 +75745798ns 1370835 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000017a +75745878ns 1370839 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b706 PA:1c00b706 +75745897ns 1370840 1c000e82 fff60613 addi x12, x12, -1 x12=00000179 x12:0000017a +75745917ns 1370841 1c000e84 00130313 addi x6, x6, 1 x6=1c00b707 x6:1c00b706 +75745937ns 1370842 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000179 +75746016ns 1370846 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b707 PA:1c00b707 +75746036ns 1370847 1c000e82 fff60613 addi x12, x12, -1 x12=00000178 x12:00000179 +75746056ns 1370848 1c000e84 00130313 addi x6, x6, 1 x6=1c00b708 x6:1c00b707 +75746076ns 1370849 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000178 +75746155ns 1370853 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b708 PA:1c00b708 +75746175ns 1370854 1c000e82 fff60613 addi x12, x12, -1 x12=00000177 x12:00000178 +75746194ns 1370855 1c000e84 00130313 addi x6, x6, 1 x6=1c00b709 x6:1c00b708 +75746214ns 1370856 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000177 +75746293ns 1370860 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b709 PA:1c00b709 +75746313ns 1370861 1c000e82 fff60613 addi x12, x12, -1 x12=00000176 x12:00000177 +75746333ns 1370862 1c000e84 00130313 addi x6, x6, 1 x6=1c00b70a x6:1c00b709 +75746353ns 1370863 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000176 +75746432ns 1370867 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b70a PA:1c00b70a +75746452ns 1370868 1c000e82 fff60613 addi x12, x12, -1 x12=00000175 x12:00000176 +75746471ns 1370869 1c000e84 00130313 addi x6, x6, 1 x6=1c00b70b x6:1c00b70a +75746491ns 1370870 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000175 +75746570ns 1370874 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b70b PA:1c00b70b +75746590ns 1370875 1c000e82 fff60613 addi x12, x12, -1 x12=00000174 x12:00000175 +75746610ns 1370876 1c000e84 00130313 addi x6, x6, 1 x6=1c00b70c x6:1c00b70b +75746630ns 1370877 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000174 +75746709ns 1370881 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b70c PA:1c00b70c +75746729ns 1370882 1c000e82 fff60613 addi x12, x12, -1 x12=00000173 x12:00000174 +75746748ns 1370883 1c000e84 00130313 addi x6, x6, 1 x6=1c00b70d x6:1c00b70c +75746768ns 1370884 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000173 +75746847ns 1370888 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b70d PA:1c00b70d +75746867ns 1370889 1c000e82 fff60613 addi x12, x12, -1 x12=00000172 x12:00000173 +75746887ns 1370890 1c000e84 00130313 addi x6, x6, 1 x6=1c00b70e x6:1c00b70d +75746907ns 1370891 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000172 +75746986ns 1370895 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b70e PA:1c00b70e +75747006ns 1370896 1c000e82 fff60613 addi x12, x12, -1 x12=00000171 x12:00000172 +75747026ns 1370897 1c000e84 00130313 addi x6, x6, 1 x6=1c00b70f x6:1c00b70e +75747045ns 1370898 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000171 +75747125ns 1370902 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b70f PA:1c00b70f +75747144ns 1370903 1c000e82 fff60613 addi x12, x12, -1 x12=00000170 x12:00000171 +75747164ns 1370904 1c000e84 00130313 addi x6, x6, 1 x6=1c00b710 x6:1c00b70f +75747184ns 1370905 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000170 +75747263ns 1370909 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b710 PA:1c00b710 +75747283ns 1370910 1c000e82 fff60613 addi x12, x12, -1 x12=0000016f x12:00000170 +75747303ns 1370911 1c000e84 00130313 addi x6, x6, 1 x6=1c00b711 x6:1c00b710 +75747322ns 1370912 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000016f +75747402ns 1370916 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b711 PA:1c00b711 +75747421ns 1370917 1c000e82 fff60613 addi x12, x12, -1 x12=0000016e x12:0000016f +75747441ns 1370918 1c000e84 00130313 addi x6, x6, 1 x6=1c00b712 x6:1c00b711 +75747461ns 1370919 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000016e +75747540ns 1370923 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b712 PA:1c00b712 +75747560ns 1370924 1c000e82 fff60613 addi x12, x12, -1 x12=0000016d x12:0000016e +75747580ns 1370925 1c000e84 00130313 addi x6, x6, 1 x6=1c00b713 x6:1c00b712 +75747600ns 1370926 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000016d +75747679ns 1370930 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b713 PA:1c00b713 +75747699ns 1370931 1c000e82 fff60613 addi x12, x12, -1 x12=0000016c x12:0000016d +75747718ns 1370932 1c000e84 00130313 addi x6, x6, 1 x6=1c00b714 x6:1c00b713 +75747738ns 1370933 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000016c +75747817ns 1370937 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b714 PA:1c00b714 +75747837ns 1370938 1c000e82 fff60613 addi x12, x12, -1 x12=0000016b x12:0000016c +75747857ns 1370939 1c000e84 00130313 addi x6, x6, 1 x6=1c00b715 x6:1c00b714 +75747877ns 1370940 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000016b +75747956ns 1370944 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b715 PA:1c00b715 +75747976ns 1370945 1c000e82 fff60613 addi x12, x12, -1 x12=0000016a x12:0000016b +75747995ns 1370946 1c000e84 00130313 addi x6, x6, 1 x6=1c00b716 x6:1c00b715 +75748015ns 1370947 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000016a +75748094ns 1370951 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b716 PA:1c00b716 +75748114ns 1370952 1c000e82 fff60613 addi x12, x12, -1 x12=00000169 x12:0000016a +75748134ns 1370953 1c000e84 00130313 addi x6, x6, 1 x6=1c00b717 x6:1c00b716 +75748154ns 1370954 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000169 +75748233ns 1370958 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b717 PA:1c00b717 +75748253ns 1370959 1c000e82 fff60613 addi x12, x12, -1 x12=00000168 x12:00000169 +75748272ns 1370960 1c000e84 00130313 addi x6, x6, 1 x6=1c00b718 x6:1c00b717 +75748292ns 1370961 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000168 +75748371ns 1370965 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b718 PA:1c00b718 +75748391ns 1370966 1c000e82 fff60613 addi x12, x12, -1 x12=00000167 x12:00000168 +75748411ns 1370967 1c000e84 00130313 addi x6, x6, 1 x6=1c00b719 x6:1c00b718 +75748431ns 1370968 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000167 +75748510ns 1370972 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b719 PA:1c00b719 +75748530ns 1370973 1c000e82 fff60613 addi x12, x12, -1 x12=00000166 x12:00000167 +75748550ns 1370974 1c000e84 00130313 addi x6, x6, 1 x6=1c00b71a x6:1c00b719 +75748569ns 1370975 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000166 +75748649ns 1370979 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b71a PA:1c00b71a +75748668ns 1370980 1c000e82 fff60613 addi x12, x12, -1 x12=00000165 x12:00000166 +75748688ns 1370981 1c000e84 00130313 addi x6, x6, 1 x6=1c00b71b x6:1c00b71a +75748708ns 1370982 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000165 +75748787ns 1370986 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b71b PA:1c00b71b +75748807ns 1370987 1c000e82 fff60613 addi x12, x12, -1 x12=00000164 x12:00000165 +75748827ns 1370988 1c000e84 00130313 addi x6, x6, 1 x6=1c00b71c x6:1c00b71b +75748846ns 1370989 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000164 +75748926ns 1370993 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b71c PA:1c00b71c +75748945ns 1370994 1c000e82 fff60613 addi x12, x12, -1 x12=00000163 x12:00000164 +75748965ns 1370995 1c000e84 00130313 addi x6, x6, 1 x6=1c00b71d x6:1c00b71c +75748985ns 1370996 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000163 +75749064ns 1371000 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b71d PA:1c00b71d +75749084ns 1371001 1c000e82 fff60613 addi x12, x12, -1 x12=00000162 x12:00000163 +75749104ns 1371002 1c000e84 00130313 addi x6, x6, 1 x6=1c00b71e x6:1c00b71d +75749124ns 1371003 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000162 +75749203ns 1371007 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b71e PA:1c00b71e +75749222ns 1371008 1c000e82 fff60613 addi x12, x12, -1 x12=00000161 x12:00000162 +75749242ns 1371009 1c000e84 00130313 addi x6, x6, 1 x6=1c00b71f x6:1c00b71e +75749262ns 1371010 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000161 +75749341ns 1371014 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b71f PA:1c00b71f +75749361ns 1371015 1c000e82 fff60613 addi x12, x12, -1 x12=00000160 x12:00000161 +75749381ns 1371016 1c000e84 00130313 addi x6, x6, 1 x6=1c00b720 x6:1c00b71f +75749401ns 1371017 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000160 +75749480ns 1371021 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b720 PA:1c00b720 +75749500ns 1371022 1c000e82 fff60613 addi x12, x12, -1 x12=0000015f x12:00000160 +75749519ns 1371023 1c000e84 00130313 addi x6, x6, 1 x6=1c00b721 x6:1c00b720 +75749539ns 1371024 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000015f +75749618ns 1371028 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b721 PA:1c00b721 +75749638ns 1371029 1c000e82 fff60613 addi x12, x12, -1 x12=0000015e x12:0000015f +75749658ns 1371030 1c000e84 00130313 addi x6, x6, 1 x6=1c00b722 x6:1c00b721 +75749678ns 1371031 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000015e +75749757ns 1371035 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b722 PA:1c00b722 +75749777ns 1371036 1c000e82 fff60613 addi x12, x12, -1 x12=0000015d x12:0000015e +75749796ns 1371037 1c000e84 00130313 addi x6, x6, 1 x6=1c00b723 x6:1c00b722 +75749816ns 1371038 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000015d +75749895ns 1371042 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b723 PA:1c00b723 +75749915ns 1371043 1c000e82 fff60613 addi x12, x12, -1 x12=0000015c x12:0000015d +75749935ns 1371044 1c000e84 00130313 addi x6, x6, 1 x6=1c00b724 x6:1c00b723 +75749955ns 1371045 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000015c +75750034ns 1371049 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b724 PA:1c00b724 +75750054ns 1371050 1c000e82 fff60613 addi x12, x12, -1 x12=0000015b x12:0000015c +75750074ns 1371051 1c000e84 00130313 addi x6, x6, 1 x6=1c00b725 x6:1c00b724 +75750093ns 1371052 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000015b +75750173ns 1371056 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b725 PA:1c00b725 +75750192ns 1371057 1c000e82 fff60613 addi x12, x12, -1 x12=0000015a x12:0000015b +75750212ns 1371058 1c000e84 00130313 addi x6, x6, 1 x6=1c00b726 x6:1c00b725 +75750232ns 1371059 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000015a +75750311ns 1371063 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b726 PA:1c00b726 +75750331ns 1371064 1c000e82 fff60613 addi x12, x12, -1 x12=00000159 x12:0000015a +75750351ns 1371065 1c000e84 00130313 addi x6, x6, 1 x6=1c00b727 x6:1c00b726 +75750370ns 1371066 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000159 +75750450ns 1371070 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b727 PA:1c00b727 +75750469ns 1371071 1c000e82 fff60613 addi x12, x12, -1 x12=00000158 x12:00000159 +75750489ns 1371072 1c000e84 00130313 addi x6, x6, 1 x6=1c00b728 x6:1c00b727 +75750509ns 1371073 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000158 +75750588ns 1371077 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b728 PA:1c00b728 +75750608ns 1371078 1c000e82 fff60613 addi x12, x12, -1 x12=00000157 x12:00000158 +75750628ns 1371079 1c000e84 00130313 addi x6, x6, 1 x6=1c00b729 x6:1c00b728 +75750648ns 1371080 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000157 +75750727ns 1371084 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b729 PA:1c00b729 +75750746ns 1371085 1c000e82 fff60613 addi x12, x12, -1 x12=00000156 x12:00000157 +75750766ns 1371086 1c000e84 00130313 addi x6, x6, 1 x6=1c00b72a x6:1c00b729 +75750786ns 1371087 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000156 +75750865ns 1371091 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b72a PA:1c00b72a +75750885ns 1371092 1c000e82 fff60613 addi x12, x12, -1 x12=00000155 x12:00000156 +75750905ns 1371093 1c000e84 00130313 addi x6, x6, 1 x6=1c00b72b x6:1c00b72a +75750925ns 1371094 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000155 +75751004ns 1371098 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b72b PA:1c00b72b +75751024ns 1371099 1c000e82 fff60613 addi x12, x12, -1 x12=00000154 x12:00000155 +75751043ns 1371100 1c000e84 00130313 addi x6, x6, 1 x6=1c00b72c x6:1c00b72b +75751063ns 1371101 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000154 +75751142ns 1371105 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b72c PA:1c00b72c +75751162ns 1371106 1c000e82 fff60613 addi x12, x12, -1 x12=00000153 x12:00000154 +75751182ns 1371107 1c000e84 00130313 addi x6, x6, 1 x6=1c00b72d x6:1c00b72c +75751202ns 1371108 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000153 +75751281ns 1371112 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b72d PA:1c00b72d +75751301ns 1371113 1c000e82 fff60613 addi x12, x12, -1 x12=00000152 x12:00000153 +75751320ns 1371114 1c000e84 00130313 addi x6, x6, 1 x6=1c00b72e x6:1c00b72d +75751340ns 1371115 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000152 +75751419ns 1371119 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b72e PA:1c00b72e +75751439ns 1371120 1c000e82 fff60613 addi x12, x12, -1 x12=00000151 x12:00000152 +75751459ns 1371121 1c000e84 00130313 addi x6, x6, 1 x6=1c00b72f x6:1c00b72e +75751479ns 1371122 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000151 +75751558ns 1371126 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b72f PA:1c00b72f +75751578ns 1371127 1c000e82 fff60613 addi x12, x12, -1 x12=00000150 x12:00000151 +75751598ns 1371128 1c000e84 00130313 addi x6, x6, 1 x6=1c00b730 x6:1c00b72f +75751617ns 1371129 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000150 +75751696ns 1371133 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b730 PA:1c00b730 +75751716ns 1371134 1c000e82 fff60613 addi x12, x12, -1 x12=0000014f x12:00000150 +75751736ns 1371135 1c000e84 00130313 addi x6, x6, 1 x6=1c00b731 x6:1c00b730 +75751756ns 1371136 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000014f +75751835ns 1371140 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b731 PA:1c00b731 +75751855ns 1371141 1c000e82 fff60613 addi x12, x12, -1 x12=0000014e x12:0000014f +75751875ns 1371142 1c000e84 00130313 addi x6, x6, 1 x6=1c00b732 x6:1c00b731 +75751894ns 1371143 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000014e +75751974ns 1371147 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b732 PA:1c00b732 +75751993ns 1371148 1c000e82 fff60613 addi x12, x12, -1 x12=0000014d x12:0000014e +75752013ns 1371149 1c000e84 00130313 addi x6, x6, 1 x6=1c00b733 x6:1c00b732 +75752033ns 1371150 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000014d +75752112ns 1371154 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b733 PA:1c00b733 +75752132ns 1371155 1c000e82 fff60613 addi x12, x12, -1 x12=0000014c x12:0000014d +75752152ns 1371156 1c000e84 00130313 addi x6, x6, 1 x6=1c00b734 x6:1c00b733 +75752171ns 1371157 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000014c +75752251ns 1371161 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b734 PA:1c00b734 +75752270ns 1371162 1c000e82 fff60613 addi x12, x12, -1 x12=0000014b x12:0000014c +75752290ns 1371163 1c000e84 00130313 addi x6, x6, 1 x6=1c00b735 x6:1c00b734 +75752310ns 1371164 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000014b +75752389ns 1371168 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b735 PA:1c00b735 +75752409ns 1371169 1c000e82 fff60613 addi x12, x12, -1 x12=0000014a x12:0000014b +75752429ns 1371170 1c000e84 00130313 addi x6, x6, 1 x6=1c00b736 x6:1c00b735 +75752449ns 1371171 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000014a +75752528ns 1371175 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b736 PA:1c00b736 +75752548ns 1371176 1c000e82 fff60613 addi x12, x12, -1 x12=00000149 x12:0000014a +75752567ns 1371177 1c000e84 00130313 addi x6, x6, 1 x6=1c00b737 x6:1c00b736 +75752587ns 1371178 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000149 +75752666ns 1371182 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b737 PA:1c00b737 +75752686ns 1371183 1c000e82 fff60613 addi x12, x12, -1 x12=00000148 x12:00000149 +75752706ns 1371184 1c000e84 00130313 addi x6, x6, 1 x6=1c00b738 x6:1c00b737 +75752726ns 1371185 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000148 +75752805ns 1371189 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b738 PA:1c00b738 +75752825ns 1371190 1c000e82 fff60613 addi x12, x12, -1 x12=00000147 x12:00000148 +75752844ns 1371191 1c000e84 00130313 addi x6, x6, 1 x6=1c00b739 x6:1c00b738 +75752864ns 1371192 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000147 +75752943ns 1371196 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b739 PA:1c00b739 +75752963ns 1371197 1c000e82 fff60613 addi x12, x12, -1 x12=00000146 x12:00000147 +75752983ns 1371198 1c000e84 00130313 addi x6, x6, 1 x6=1c00b73a x6:1c00b739 +75753003ns 1371199 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000146 +75753082ns 1371203 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b73a PA:1c00b73a +75753102ns 1371204 1c000e82 fff60613 addi x12, x12, -1 x12=00000145 x12:00000146 +75753122ns 1371205 1c000e84 00130313 addi x6, x6, 1 x6=1c00b73b x6:1c00b73a +75753141ns 1371206 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000145 +75753220ns 1371210 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b73b PA:1c00b73b +75753240ns 1371211 1c000e82 fff60613 addi x12, x12, -1 x12=00000144 x12:00000145 +75753260ns 1371212 1c000e84 00130313 addi x6, x6, 1 x6=1c00b73c x6:1c00b73b +75753280ns 1371213 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000144 +75753359ns 1371217 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b73c PA:1c00b73c +75753379ns 1371218 1c000e82 fff60613 addi x12, x12, -1 x12=00000143 x12:00000144 +75753399ns 1371219 1c000e84 00130313 addi x6, x6, 1 x6=1c00b73d x6:1c00b73c +75753418ns 1371220 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000143 +75753498ns 1371224 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b73d PA:1c00b73d +75753517ns 1371225 1c000e82 fff60613 addi x12, x12, -1 x12=00000142 x12:00000143 +75753537ns 1371226 1c000e84 00130313 addi x6, x6, 1 x6=1c00b73e x6:1c00b73d +75753557ns 1371227 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000142 +75753636ns 1371231 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b73e PA:1c00b73e +75753656ns 1371232 1c000e82 fff60613 addi x12, x12, -1 x12=00000141 x12:00000142 +75753676ns 1371233 1c000e84 00130313 addi x6, x6, 1 x6=1c00b73f x6:1c00b73e +75753695ns 1371234 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000141 +75753775ns 1371238 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b73f PA:1c00b73f +75753794ns 1371239 1c000e82 fff60613 addi x12, x12, -1 x12=00000140 x12:00000141 +75753814ns 1371240 1c000e84 00130313 addi x6, x6, 1 x6=1c00b740 x6:1c00b73f +75753834ns 1371241 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000140 +75753913ns 1371245 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b740 PA:1c00b740 +75753933ns 1371246 1c000e82 fff60613 addi x12, x12, -1 x12=0000013f x12:00000140 +75753953ns 1371247 1c000e84 00130313 addi x6, x6, 1 x6=1c00b741 x6:1c00b740 +75753973ns 1371248 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000013f +75754052ns 1371252 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b741 PA:1c00b741 +75754072ns 1371253 1c000e82 fff60613 addi x12, x12, -1 x12=0000013e x12:0000013f +75754091ns 1371254 1c000e84 00130313 addi x6, x6, 1 x6=1c00b742 x6:1c00b741 +75754111ns 1371255 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000013e +75754190ns 1371259 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b742 PA:1c00b742 +75754210ns 1371260 1c000e82 fff60613 addi x12, x12, -1 x12=0000013d x12:0000013e +75754230ns 1371261 1c000e84 00130313 addi x6, x6, 1 x6=1c00b743 x6:1c00b742 +75754250ns 1371262 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000013d +75754329ns 1371266 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b743 PA:1c00b743 +75754349ns 1371267 1c000e82 fff60613 addi x12, x12, -1 x12=0000013c x12:0000013d +75754368ns 1371268 1c000e84 00130313 addi x6, x6, 1 x6=1c00b744 x6:1c00b743 +75754388ns 1371269 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000013c +75754467ns 1371273 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b744 PA:1c00b744 +75754487ns 1371274 1c000e82 fff60613 addi x12, x12, -1 x12=0000013b x12:0000013c +75754507ns 1371275 1c000e84 00130313 addi x6, x6, 1 x6=1c00b745 x6:1c00b744 +75754527ns 1371276 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000013b +75754606ns 1371280 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b745 PA:1c00b745 +75754626ns 1371281 1c000e82 fff60613 addi x12, x12, -1 x12=0000013a x12:0000013b +75754645ns 1371282 1c000e84 00130313 addi x6, x6, 1 x6=1c00b746 x6:1c00b745 +75754665ns 1371283 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000013a +75754744ns 1371287 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b746 PA:1c00b746 +75754764ns 1371288 1c000e82 fff60613 addi x12, x12, -1 x12=00000139 x12:0000013a +75754784ns 1371289 1c000e84 00130313 addi x6, x6, 1 x6=1c00b747 x6:1c00b746 +75754804ns 1371290 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000139 +75754883ns 1371294 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b747 PA:1c00b747 +75754903ns 1371295 1c000e82 fff60613 addi x12, x12, -1 x12=00000138 x12:00000139 +75754923ns 1371296 1c000e84 00130313 addi x6, x6, 1 x6=1c00b748 x6:1c00b747 +75754942ns 1371297 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000138 +75755022ns 1371301 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b748 PA:1c00b748 +75755041ns 1371302 1c000e82 fff60613 addi x12, x12, -1 x12=00000137 x12:00000138 +75755061ns 1371303 1c000e84 00130313 addi x6, x6, 1 x6=1c00b749 x6:1c00b748 +75755081ns 1371304 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000137 +75755160ns 1371308 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b749 PA:1c00b749 +75755180ns 1371309 1c000e82 fff60613 addi x12, x12, -1 x12=00000136 x12:00000137 +75755200ns 1371310 1c000e84 00130313 addi x6, x6, 1 x6=1c00b74a x6:1c00b749 +75755219ns 1371311 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000136 +75755299ns 1371315 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b74a PA:1c00b74a +75755318ns 1371316 1c000e82 fff60613 addi x12, x12, -1 x12=00000135 x12:00000136 +75755338ns 1371317 1c000e84 00130313 addi x6, x6, 1 x6=1c00b74b x6:1c00b74a +75755358ns 1371318 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000135 +75755437ns 1371322 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b74b PA:1c00b74b +75755457ns 1371323 1c000e82 fff60613 addi x12, x12, -1 x12=00000134 x12:00000135 +75755477ns 1371324 1c000e84 00130313 addi x6, x6, 1 x6=1c00b74c x6:1c00b74b +75755497ns 1371325 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000134 +75755576ns 1371329 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b74c PA:1c00b74c +75755596ns 1371330 1c000e82 fff60613 addi x12, x12, -1 x12=00000133 x12:00000134 +75755615ns 1371331 1c000e84 00130313 addi x6, x6, 1 x6=1c00b74d x6:1c00b74c +75755635ns 1371332 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000133 +75755714ns 1371336 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b74d PA:1c00b74d +75755734ns 1371337 1c000e82 fff60613 addi x12, x12, -1 x12=00000132 x12:00000133 +75755754ns 1371338 1c000e84 00130313 addi x6, x6, 1 x6=1c00b74e x6:1c00b74d +75755774ns 1371339 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000132 +75755853ns 1371343 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b74e PA:1c00b74e +75755873ns 1371344 1c000e82 fff60613 addi x12, x12, -1 x12=00000131 x12:00000132 +75755892ns 1371345 1c000e84 00130313 addi x6, x6, 1 x6=1c00b74f x6:1c00b74e +75755912ns 1371346 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000131 +75755991ns 1371350 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b74f PA:1c00b74f +75756011ns 1371351 1c000e82 fff60613 addi x12, x12, -1 x12=00000130 x12:00000131 +75756031ns 1371352 1c000e84 00130313 addi x6, x6, 1 x6=1c00b750 x6:1c00b74f +75756051ns 1371353 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000130 +75756130ns 1371357 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b750 PA:1c00b750 +75756150ns 1371358 1c000e82 fff60613 addi x12, x12, -1 x12=0000012f x12:00000130 +75756169ns 1371359 1c000e84 00130313 addi x6, x6, 1 x6=1c00b751 x6:1c00b750 +75756189ns 1371360 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000012f +75756268ns 1371364 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b751 PA:1c00b751 +75756288ns 1371365 1c000e82 fff60613 addi x12, x12, -1 x12=0000012e x12:0000012f +75756308ns 1371366 1c000e84 00130313 addi x6, x6, 1 x6=1c00b752 x6:1c00b751 +75756328ns 1371367 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000012e +75756407ns 1371371 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b752 PA:1c00b752 +75756427ns 1371372 1c000e82 fff60613 addi x12, x12, -1 x12=0000012d x12:0000012e +75756447ns 1371373 1c000e84 00130313 addi x6, x6, 1 x6=1c00b753 x6:1c00b752 +75756466ns 1371374 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000012d +75756546ns 1371378 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b753 PA:1c00b753 +75756565ns 1371379 1c000e82 fff60613 addi x12, x12, -1 x12=0000012c x12:0000012d +75756585ns 1371380 1c000e84 00130313 addi x6, x6, 1 x6=1c00b754 x6:1c00b753 +75756605ns 1371381 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000012c +75756684ns 1371385 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b754 PA:1c00b754 +75756704ns 1371386 1c000e82 fff60613 addi x12, x12, -1 x12=0000012b x12:0000012c +75756724ns 1371387 1c000e84 00130313 addi x6, x6, 1 x6=1c00b755 x6:1c00b754 +75756743ns 1371388 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000012b +75756823ns 1371392 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b755 PA:1c00b755 +75756842ns 1371393 1c000e82 fff60613 addi x12, x12, -1 x12=0000012a x12:0000012b +75756862ns 1371394 1c000e84 00130313 addi x6, x6, 1 x6=1c00b756 x6:1c00b755 +75756882ns 1371395 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000012a +75756961ns 1371399 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b756 PA:1c00b756 +75756981ns 1371400 1c000e82 fff60613 addi x12, x12, -1 x12=00000129 x12:0000012a +75757001ns 1371401 1c000e84 00130313 addi x6, x6, 1 x6=1c00b757 x6:1c00b756 +75757021ns 1371402 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000129 +75757100ns 1371406 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b757 PA:1c00b757 +75757119ns 1371407 1c000e82 fff60613 addi x12, x12, -1 x12=00000128 x12:00000129 +75757139ns 1371408 1c000e84 00130313 addi x6, x6, 1 x6=1c00b758 x6:1c00b757 +75757159ns 1371409 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000128 +75757238ns 1371413 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b758 PA:1c00b758 +75757258ns 1371414 1c000e82 fff60613 addi x12, x12, -1 x12=00000127 x12:00000128 +75757278ns 1371415 1c000e84 00130313 addi x6, x6, 1 x6=1c00b759 x6:1c00b758 +75757298ns 1371416 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000127 +75757377ns 1371420 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b759 PA:1c00b759 +75757397ns 1371421 1c000e82 fff60613 addi x12, x12, -1 x12=00000126 x12:00000127 +75757416ns 1371422 1c000e84 00130313 addi x6, x6, 1 x6=1c00b75a x6:1c00b759 +75757436ns 1371423 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000126 +75757515ns 1371427 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b75a PA:1c00b75a +75757535ns 1371428 1c000e82 fff60613 addi x12, x12, -1 x12=00000125 x12:00000126 +75757555ns 1371429 1c000e84 00130313 addi x6, x6, 1 x6=1c00b75b x6:1c00b75a +75757575ns 1371430 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000125 +75757654ns 1371434 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b75b PA:1c00b75b +75757674ns 1371435 1c000e82 fff60613 addi x12, x12, -1 x12=00000124 x12:00000125 +75757693ns 1371436 1c000e84 00130313 addi x6, x6, 1 x6=1c00b75c x6:1c00b75b +75757713ns 1371437 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000124 +75757792ns 1371441 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b75c PA:1c00b75c +75757812ns 1371442 1c000e82 fff60613 addi x12, x12, -1 x12=00000123 x12:00000124 +75757832ns 1371443 1c000e84 00130313 addi x6, x6, 1 x6=1c00b75d x6:1c00b75c +75757852ns 1371444 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000123 +75757931ns 1371448 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b75d PA:1c00b75d +75757951ns 1371449 1c000e82 fff60613 addi x12, x12, -1 x12=00000122 x12:00000123 +75757971ns 1371450 1c000e84 00130313 addi x6, x6, 1 x6=1c00b75e x6:1c00b75d +75757990ns 1371451 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000122 +75758070ns 1371455 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b75e PA:1c00b75e +75758089ns 1371456 1c000e82 fff60613 addi x12, x12, -1 x12=00000121 x12:00000122 +75758109ns 1371457 1c000e84 00130313 addi x6, x6, 1 x6=1c00b75f x6:1c00b75e +75758129ns 1371458 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000121 +75758208ns 1371462 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b75f PA:1c00b75f +75758228ns 1371463 1c000e82 fff60613 addi x12, x12, -1 x12=00000120 x12:00000121 +75758248ns 1371464 1c000e84 00130313 addi x6, x6, 1 x6=1c00b760 x6:1c00b75f +75758267ns 1371465 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000120 +75758347ns 1371469 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b760 PA:1c00b760 +75758366ns 1371470 1c000e82 fff60613 addi x12, x12, -1 x12=0000011f x12:00000120 +75758386ns 1371471 1c000e84 00130313 addi x6, x6, 1 x6=1c00b761 x6:1c00b760 +75758406ns 1371472 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000011f +75758485ns 1371476 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b761 PA:1c00b761 +75758505ns 1371477 1c000e82 fff60613 addi x12, x12, -1 x12=0000011e x12:0000011f +75758525ns 1371478 1c000e84 00130313 addi x6, x6, 1 x6=1c00b762 x6:1c00b761 +75758545ns 1371479 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000011e +75758624ns 1371483 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b762 PA:1c00b762 +75758643ns 1371484 1c000e82 fff60613 addi x12, x12, -1 x12=0000011d x12:0000011e +75758663ns 1371485 1c000e84 00130313 addi x6, x6, 1 x6=1c00b763 x6:1c00b762 +75758683ns 1371486 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000011d +75758762ns 1371490 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b763 PA:1c00b763 +75758782ns 1371491 1c000e82 fff60613 addi x12, x12, -1 x12=0000011c x12:0000011d +75758802ns 1371492 1c000e84 00130313 addi x6, x6, 1 x6=1c00b764 x6:1c00b763 +75758822ns 1371493 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000011c +75758901ns 1371497 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b764 PA:1c00b764 +75758921ns 1371498 1c000e82 fff60613 addi x12, x12, -1 x12=0000011b x12:0000011c +75758940ns 1371499 1c000e84 00130313 addi x6, x6, 1 x6=1c00b765 x6:1c00b764 +75758960ns 1371500 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000011b +75759039ns 1371504 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b765 PA:1c00b765 +75759059ns 1371505 1c000e82 fff60613 addi x12, x12, -1 x12=0000011a x12:0000011b +75759079ns 1371506 1c000e84 00130313 addi x6, x6, 1 x6=1c00b766 x6:1c00b765 +75759099ns 1371507 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000011a +75759178ns 1371511 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b766 PA:1c00b766 +75759198ns 1371512 1c000e82 fff60613 addi x12, x12, -1 x12=00000119 x12:0000011a +75759217ns 1371513 1c000e84 00130313 addi x6, x6, 1 x6=1c00b767 x6:1c00b766 +75759237ns 1371514 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000119 +75759316ns 1371518 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b767 PA:1c00b767 +75759336ns 1371519 1c000e82 fff60613 addi x12, x12, -1 x12=00000118 x12:00000119 +75759356ns 1371520 1c000e84 00130313 addi x6, x6, 1 x6=1c00b768 x6:1c00b767 +75759376ns 1371521 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000118 +75759455ns 1371525 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b768 PA:1c00b768 +75759475ns 1371526 1c000e82 fff60613 addi x12, x12, -1 x12=00000117 x12:00000118 +75759495ns 1371527 1c000e84 00130313 addi x6, x6, 1 x6=1c00b769 x6:1c00b768 +75759514ns 1371528 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000117 +75759593ns 1371532 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b769 PA:1c00b769 +75759613ns 1371533 1c000e82 fff60613 addi x12, x12, -1 x12=00000116 x12:00000117 +75759633ns 1371534 1c000e84 00130313 addi x6, x6, 1 x6=1c00b76a x6:1c00b769 +75759653ns 1371535 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000116 +75759732ns 1371539 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b76a PA:1c00b76a +75759752ns 1371540 1c000e82 fff60613 addi x12, x12, -1 x12=00000115 x12:00000116 +75759772ns 1371541 1c000e84 00130313 addi x6, x6, 1 x6=1c00b76b x6:1c00b76a +75759791ns 1371542 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000115 +75759871ns 1371546 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b76b PA:1c00b76b +75759890ns 1371547 1c000e82 fff60613 addi x12, x12, -1 x12=00000114 x12:00000115 +75759910ns 1371548 1c000e84 00130313 addi x6, x6, 1 x6=1c00b76c x6:1c00b76b +75759930ns 1371549 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000114 +75760009ns 1371553 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b76c PA:1c00b76c +75760029ns 1371554 1c000e82 fff60613 addi x12, x12, -1 x12=00000113 x12:00000114 +75760049ns 1371555 1c000e84 00130313 addi x6, x6, 1 x6=1c00b76d x6:1c00b76c +75760069ns 1371556 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000113 +75760148ns 1371560 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b76d PA:1c00b76d +75760167ns 1371561 1c000e82 fff60613 addi x12, x12, -1 x12=00000112 x12:00000113 +75760187ns 1371562 1c000e84 00130313 addi x6, x6, 1 x6=1c00b76e x6:1c00b76d +75760207ns 1371563 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000112 +75760286ns 1371567 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b76e PA:1c00b76e +75760306ns 1371568 1c000e82 fff60613 addi x12, x12, -1 x12=00000111 x12:00000112 +75760326ns 1371569 1c000e84 00130313 addi x6, x6, 1 x6=1c00b76f x6:1c00b76e +75760346ns 1371570 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000111 +75760425ns 1371574 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b76f PA:1c00b76f +75760445ns 1371575 1c000e82 fff60613 addi x12, x12, -1 x12=00000110 x12:00000111 +75760464ns 1371576 1c000e84 00130313 addi x6, x6, 1 x6=1c00b770 x6:1c00b76f +75760484ns 1371577 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000110 +75760563ns 1371581 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b770 PA:1c00b770 +75760583ns 1371582 1c000e82 fff60613 addi x12, x12, -1 x12=0000010f x12:00000110 +75760603ns 1371583 1c000e84 00130313 addi x6, x6, 1 x6=1c00b771 x6:1c00b770 +75760623ns 1371584 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000010f +75760702ns 1371588 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b771 PA:1c00b771 +75760722ns 1371589 1c000e82 fff60613 addi x12, x12, -1 x12=0000010e x12:0000010f +75760741ns 1371590 1c000e84 00130313 addi x6, x6, 1 x6=1c00b772 x6:1c00b771 +75760761ns 1371591 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000010e +75760840ns 1371595 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b772 PA:1c00b772 +75760860ns 1371596 1c000e82 fff60613 addi x12, x12, -1 x12=0000010d x12:0000010e +75760880ns 1371597 1c000e84 00130313 addi x6, x6, 1 x6=1c00b773 x6:1c00b772 +75760900ns 1371598 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000010d +75760979ns 1371602 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b773 PA:1c00b773 +75760999ns 1371603 1c000e82 fff60613 addi x12, x12, -1 x12=0000010c x12:0000010d +75761019ns 1371604 1c000e84 00130313 addi x6, x6, 1 x6=1c00b774 x6:1c00b773 +75761038ns 1371605 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000010c +75761117ns 1371609 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b774 PA:1c00b774 +75761137ns 1371610 1c000e82 fff60613 addi x12, x12, -1 x12=0000010b x12:0000010c +75761157ns 1371611 1c000e84 00130313 addi x6, x6, 1 x6=1c00b775 x6:1c00b774 +75761177ns 1371612 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000010b +75761256ns 1371616 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b775 PA:1c00b775 +75761276ns 1371617 1c000e82 fff60613 addi x12, x12, -1 x12=0000010a x12:0000010b +75761296ns 1371618 1c000e84 00130313 addi x6, x6, 1 x6=1c00b776 x6:1c00b775 +75761315ns 1371619 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000010a +75761395ns 1371623 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b776 PA:1c00b776 +75761414ns 1371624 1c000e82 fff60613 addi x12, x12, -1 x12=00000109 x12:0000010a +75761434ns 1371625 1c000e84 00130313 addi x6, x6, 1 x6=1c00b777 x6:1c00b776 +75761454ns 1371626 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000109 +75761533ns 1371630 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b777 PA:1c00b777 +75761553ns 1371631 1c000e82 fff60613 addi x12, x12, -1 x12=00000108 x12:00000109 +75761573ns 1371632 1c000e84 00130313 addi x6, x6, 1 x6=1c00b778 x6:1c00b777 +75761592ns 1371633 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000108 +75761672ns 1371637 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b778 PA:1c00b778 +75761691ns 1371638 1c000e82 fff60613 addi x12, x12, -1 x12=00000107 x12:00000108 +75761711ns 1371639 1c000e84 00130313 addi x6, x6, 1 x6=1c00b779 x6:1c00b778 +75761731ns 1371640 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000107 +75761810ns 1371644 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b779 PA:1c00b779 +75761830ns 1371645 1c000e82 fff60613 addi x12, x12, -1 x12=00000106 x12:00000107 +75761850ns 1371646 1c000e84 00130313 addi x6, x6, 1 x6=1c00b77a x6:1c00b779 +75761870ns 1371647 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000106 +75761949ns 1371651 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b77a PA:1c00b77a +75761969ns 1371652 1c000e82 fff60613 addi x12, x12, -1 x12=00000105 x12:00000106 +75761988ns 1371653 1c000e84 00130313 addi x6, x6, 1 x6=1c00b77b x6:1c00b77a +75762008ns 1371654 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000105 +75762087ns 1371658 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b77b PA:1c00b77b +75762107ns 1371659 1c000e82 fff60613 addi x12, x12, -1 x12=00000104 x12:00000105 +75762127ns 1371660 1c000e84 00130313 addi x6, x6, 1 x6=1c00b77c x6:1c00b77b +75762147ns 1371661 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000104 +75762226ns 1371665 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b77c PA:1c00b77c +75762246ns 1371666 1c000e82 fff60613 addi x12, x12, -1 x12=00000103 x12:00000104 +75762265ns 1371667 1c000e84 00130313 addi x6, x6, 1 x6=1c00b77d x6:1c00b77c +75762285ns 1371668 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000103 +75762364ns 1371672 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b77d PA:1c00b77d +75762384ns 1371673 1c000e82 fff60613 addi x12, x12, -1 x12=00000102 x12:00000103 +75762404ns 1371674 1c000e84 00130313 addi x6, x6, 1 x6=1c00b77e x6:1c00b77d +75762424ns 1371675 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000102 +75762503ns 1371679 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b77e PA:1c00b77e +75762523ns 1371680 1c000e82 fff60613 addi x12, x12, -1 x12=00000101 x12:00000102 +75762543ns 1371681 1c000e84 00130313 addi x6, x6, 1 x6=1c00b77f x6:1c00b77e +75762562ns 1371682 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000101 +75762641ns 1371686 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b77f PA:1c00b77f +75762661ns 1371687 1c000e82 fff60613 addi x12, x12, -1 x12=00000100 x12:00000101 +75762681ns 1371688 1c000e84 00130313 addi x6, x6, 1 x6=1c00b780 x6:1c00b77f +75762701ns 1371689 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000100 +75762780ns 1371693 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b780 PA:1c00b780 +75762800ns 1371694 1c000e82 fff60613 addi x12, x12, -1 x12=000000ff x12:00000100 +75762820ns 1371695 1c000e84 00130313 addi x6, x6, 1 x6=1c00b781 x6:1c00b780 +75762839ns 1371696 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ff +75762919ns 1371700 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b781 PA:1c00b781 +75762938ns 1371701 1c000e82 fff60613 addi x12, x12, -1 x12=000000fe x12:000000ff +75762958ns 1371702 1c000e84 00130313 addi x6, x6, 1 x6=1c00b782 x6:1c00b781 +75762978ns 1371703 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000fe +75763057ns 1371707 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b782 PA:1c00b782 +75763077ns 1371708 1c000e82 fff60613 addi x12, x12, -1 x12=000000fd x12:000000fe +75763097ns 1371709 1c000e84 00130313 addi x6, x6, 1 x6=1c00b783 x6:1c00b782 +75763116ns 1371710 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000fd +75763196ns 1371714 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b783 PA:1c00b783 +75763215ns 1371715 1c000e82 fff60613 addi x12, x12, -1 x12=000000fc x12:000000fd +75763235ns 1371716 1c000e84 00130313 addi x6, x6, 1 x6=1c00b784 x6:1c00b783 +75763255ns 1371717 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000fc +75763334ns 1371721 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b784 PA:1c00b784 +75763354ns 1371722 1c000e82 fff60613 addi x12, x12, -1 x12=000000fb x12:000000fc +75763374ns 1371723 1c000e84 00130313 addi x6, x6, 1 x6=1c00b785 x6:1c00b784 +75763394ns 1371724 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000fb +75763473ns 1371728 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b785 PA:1c00b785 +75763493ns 1371729 1c000e82 fff60613 addi x12, x12, -1 x12=000000fa x12:000000fb +75763512ns 1371730 1c000e84 00130313 addi x6, x6, 1 x6=1c00b786 x6:1c00b785 +75763532ns 1371731 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000fa +75763611ns 1371735 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b786 PA:1c00b786 +75763631ns 1371736 1c000e82 fff60613 addi x12, x12, -1 x12=000000f9 x12:000000fa +75763651ns 1371737 1c000e84 00130313 addi x6, x6, 1 x6=1c00b787 x6:1c00b786 +75763671ns 1371738 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f9 +75763750ns 1371742 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b787 PA:1c00b787 +75763770ns 1371743 1c000e82 fff60613 addi x12, x12, -1 x12=000000f8 x12:000000f9 +75763789ns 1371744 1c000e84 00130313 addi x6, x6, 1 x6=1c00b788 x6:1c00b787 +75763809ns 1371745 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f8 +75763888ns 1371749 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b788 PA:1c00b788 +75763908ns 1371750 1c000e82 fff60613 addi x12, x12, -1 x12=000000f7 x12:000000f8 +75763928ns 1371751 1c000e84 00130313 addi x6, x6, 1 x6=1c00b789 x6:1c00b788 +75763948ns 1371752 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f7 +75764027ns 1371756 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b789 PA:1c00b789 +75764047ns 1371757 1c000e82 fff60613 addi x12, x12, -1 x12=000000f6 x12:000000f7 +75764066ns 1371758 1c000e84 00130313 addi x6, x6, 1 x6=1c00b78a x6:1c00b789 +75764086ns 1371759 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f6 +75764165ns 1371763 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b78a PA:1c00b78a +75764185ns 1371764 1c000e82 fff60613 addi x12, x12, -1 x12=000000f5 x12:000000f6 +75764205ns 1371765 1c000e84 00130313 addi x6, x6, 1 x6=1c00b78b x6:1c00b78a +75764225ns 1371766 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f5 +75764304ns 1371770 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b78b PA:1c00b78b +75764324ns 1371771 1c000e82 fff60613 addi x12, x12, -1 x12=000000f4 x12:000000f5 +75764344ns 1371772 1c000e84 00130313 addi x6, x6, 1 x6=1c00b78c x6:1c00b78b +75764363ns 1371773 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f4 +75764443ns 1371777 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b78c PA:1c00b78c +75764462ns 1371778 1c000e82 fff60613 addi x12, x12, -1 x12=000000f3 x12:000000f4 +75764482ns 1371779 1c000e84 00130313 addi x6, x6, 1 x6=1c00b78d x6:1c00b78c +75764502ns 1371780 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f3 +75764581ns 1371784 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b78d PA:1c00b78d +75764601ns 1371785 1c000e82 fff60613 addi x12, x12, -1 x12=000000f2 x12:000000f3 +75764621ns 1371786 1c000e84 00130313 addi x6, x6, 1 x6=1c00b78e x6:1c00b78d +75764640ns 1371787 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f2 +75764720ns 1371791 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b78e PA:1c00b78e +75764739ns 1371792 1c000e82 fff60613 addi x12, x12, -1 x12=000000f1 x12:000000f2 +75764759ns 1371793 1c000e84 00130313 addi x6, x6, 1 x6=1c00b78f x6:1c00b78e +75764779ns 1371794 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f1 +75764858ns 1371798 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b78f PA:1c00b78f +75764878ns 1371799 1c000e82 fff60613 addi x12, x12, -1 x12=000000f0 x12:000000f1 +75764898ns 1371800 1c000e84 00130313 addi x6, x6, 1 x6=1c00b790 x6:1c00b78f +75764918ns 1371801 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f0 +75764997ns 1371805 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b790 PA:1c00b790 +75765017ns 1371806 1c000e82 fff60613 addi x12, x12, -1 x12=000000ef x12:000000f0 +75765036ns 1371807 1c000e84 00130313 addi x6, x6, 1 x6=1c00b791 x6:1c00b790 +75765056ns 1371808 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ef +75765135ns 1371812 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b791 PA:1c00b791 +75765155ns 1371813 1c000e82 fff60613 addi x12, x12, -1 x12=000000ee x12:000000ef +75765175ns 1371814 1c000e84 00130313 addi x6, x6, 1 x6=1c00b792 x6:1c00b791 +75765195ns 1371815 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ee +75765274ns 1371819 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b792 PA:1c00b792 +75765294ns 1371820 1c000e82 fff60613 addi x12, x12, -1 x12=000000ed x12:000000ee +75765313ns 1371821 1c000e84 00130313 addi x6, x6, 1 x6=1c00b793 x6:1c00b792 +75765333ns 1371822 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ed +75765412ns 1371826 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b793 PA:1c00b793 +75765432ns 1371827 1c000e82 fff60613 addi x12, x12, -1 x12=000000ec x12:000000ed +75765452ns 1371828 1c000e84 00130313 addi x6, x6, 1 x6=1c00b794 x6:1c00b793 +75765472ns 1371829 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ec +75765551ns 1371833 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b794 PA:1c00b794 +75765571ns 1371834 1c000e82 fff60613 addi x12, x12, -1 x12=000000eb x12:000000ec +75765590ns 1371835 1c000e84 00130313 addi x6, x6, 1 x6=1c00b795 x6:1c00b794 +75765610ns 1371836 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000eb +75765689ns 1371840 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b795 PA:1c00b795 +75765709ns 1371841 1c000e82 fff60613 addi x12, x12, -1 x12=000000ea x12:000000eb +75765729ns 1371842 1c000e84 00130313 addi x6, x6, 1 x6=1c00b796 x6:1c00b795 +75765749ns 1371843 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ea +75765828ns 1371847 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b796 PA:1c00b796 +75765848ns 1371848 1c000e82 fff60613 addi x12, x12, -1 x12=000000e9 x12:000000ea +75765868ns 1371849 1c000e84 00130313 addi x6, x6, 1 x6=1c00b797 x6:1c00b796 +75765887ns 1371850 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e9 +75765967ns 1371854 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b797 PA:1c00b797 +75765986ns 1371855 1c000e82 fff60613 addi x12, x12, -1 x12=000000e8 x12:000000e9 +75766006ns 1371856 1c000e84 00130313 addi x6, x6, 1 x6=1c00b798 x6:1c00b797 +75766026ns 1371857 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e8 +75766105ns 1371861 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b798 PA:1c00b798 +75766125ns 1371862 1c000e82 fff60613 addi x12, x12, -1 x12=000000e7 x12:000000e8 +75766145ns 1371863 1c000e84 00130313 addi x6, x6, 1 x6=1c00b799 x6:1c00b798 +75766164ns 1371864 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e7 +75766244ns 1371868 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b799 PA:1c00b799 +75766263ns 1371869 1c000e82 fff60613 addi x12, x12, -1 x12=000000e6 x12:000000e7 +75766283ns 1371870 1c000e84 00130313 addi x6, x6, 1 x6=1c00b79a x6:1c00b799 +75766303ns 1371871 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e6 +75766382ns 1371875 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b79a PA:1c00b79a +75766402ns 1371876 1c000e82 fff60613 addi x12, x12, -1 x12=000000e5 x12:000000e6 +75766422ns 1371877 1c000e84 00130313 addi x6, x6, 1 x6=1c00b79b x6:1c00b79a +75766442ns 1371878 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e5 +75766521ns 1371882 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b79b PA:1c00b79b +75766540ns 1371883 1c000e82 fff60613 addi x12, x12, -1 x12=000000e4 x12:000000e5 +75766560ns 1371884 1c000e84 00130313 addi x6, x6, 1 x6=1c00b79c x6:1c00b79b +75766580ns 1371885 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e4 +75766659ns 1371889 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b79c PA:1c00b79c +75766679ns 1371890 1c000e82 fff60613 addi x12, x12, -1 x12=000000e3 x12:000000e4 +75766699ns 1371891 1c000e84 00130313 addi x6, x6, 1 x6=1c00b79d x6:1c00b79c +75766719ns 1371892 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e3 +75766798ns 1371896 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b79d PA:1c00b79d +75766818ns 1371897 1c000e82 fff60613 addi x12, x12, -1 x12=000000e2 x12:000000e3 +75766837ns 1371898 1c000e84 00130313 addi x6, x6, 1 x6=1c00b79e x6:1c00b79d +75766857ns 1371899 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e2 +75766936ns 1371903 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b79e PA:1c00b79e +75766956ns 1371904 1c000e82 fff60613 addi x12, x12, -1 x12=000000e1 x12:000000e2 +75766976ns 1371905 1c000e84 00130313 addi x6, x6, 1 x6=1c00b79f x6:1c00b79e +75766996ns 1371906 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e1 +75767075ns 1371910 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b79f PA:1c00b79f +75767095ns 1371911 1c000e82 fff60613 addi x12, x12, -1 x12=000000e0 x12:000000e1 +75767114ns 1371912 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7a0 x6:1c00b79f +75767134ns 1371913 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e0 +75767213ns 1371917 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7a0 PA:1c00b7a0 +75767233ns 1371918 1c000e82 fff60613 addi x12, x12, -1 x12=000000df x12:000000e0 +75767253ns 1371919 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7a1 x6:1c00b7a0 +75767273ns 1371920 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000df +75767352ns 1371924 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7a1 PA:1c00b7a1 +75767372ns 1371925 1c000e82 fff60613 addi x12, x12, -1 x12=000000de x12:000000df +75767392ns 1371926 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7a2 x6:1c00b7a1 +75767411ns 1371927 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000de +75767491ns 1371931 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7a2 PA:1c00b7a2 +75767510ns 1371932 1c000e82 fff60613 addi x12, x12, -1 x12=000000dd x12:000000de +75767530ns 1371933 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7a3 x6:1c00b7a2 +75767550ns 1371934 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000dd +75767629ns 1371938 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7a3 PA:1c00b7a3 +75767649ns 1371939 1c000e82 fff60613 addi x12, x12, -1 x12=000000dc x12:000000dd +75767669ns 1371940 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7a4 x6:1c00b7a3 +75767688ns 1371941 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000dc +75767768ns 1371945 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7a4 PA:1c00b7a4 +75767787ns 1371946 1c000e82 fff60613 addi x12, x12, -1 x12=000000db x12:000000dc +75767807ns 1371947 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7a5 x6:1c00b7a4 +75767827ns 1371948 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000db +75767906ns 1371952 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7a5 PA:1c00b7a5 +75767926ns 1371953 1c000e82 fff60613 addi x12, x12, -1 x12=000000da x12:000000db +75767946ns 1371954 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7a6 x6:1c00b7a5 +75767966ns 1371955 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000da +75768045ns 1371959 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7a6 PA:1c00b7a6 +75768064ns 1371960 1c000e82 fff60613 addi x12, x12, -1 x12=000000d9 x12:000000da +75768084ns 1371961 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7a7 x6:1c00b7a6 +75768104ns 1371962 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d9 +75768183ns 1371966 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7a7 PA:1c00b7a7 +75768203ns 1371967 1c000e82 fff60613 addi x12, x12, -1 x12=000000d8 x12:000000d9 +75768223ns 1371968 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7a8 x6:1c00b7a7 +75768243ns 1371969 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d8 +75768322ns 1371973 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7a8 PA:1c00b7a8 +75768342ns 1371974 1c000e82 fff60613 addi x12, x12, -1 x12=000000d7 x12:000000d8 +75768361ns 1371975 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7a9 x6:1c00b7a8 +75768381ns 1371976 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d7 +75768460ns 1371980 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7a9 PA:1c00b7a9 +75768480ns 1371981 1c000e82 fff60613 addi x12, x12, -1 x12=000000d6 x12:000000d7 +75768500ns 1371982 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7aa x6:1c00b7a9 +75768520ns 1371983 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d6 +75768599ns 1371987 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7aa PA:1c00b7aa +75768619ns 1371988 1c000e82 fff60613 addi x12, x12, -1 x12=000000d5 x12:000000d6 +75768638ns 1371989 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7ab x6:1c00b7aa +75768658ns 1371990 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d5 +75768737ns 1371994 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7ab PA:1c00b7ab +75768757ns 1371995 1c000e82 fff60613 addi x12, x12, -1 x12=000000d4 x12:000000d5 +75768777ns 1371996 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7ac x6:1c00b7ab +75768797ns 1371997 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d4 +75768876ns 1372001 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7ac PA:1c00b7ac +75768896ns 1372002 1c000e82 fff60613 addi x12, x12, -1 x12=000000d3 x12:000000d4 +75768916ns 1372003 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7ad x6:1c00b7ac +75768935ns 1372004 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d3 +75769014ns 1372008 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7ad PA:1c00b7ad +75769034ns 1372009 1c000e82 fff60613 addi x12, x12, -1 x12=000000d2 x12:000000d3 +75769054ns 1372010 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7ae x6:1c00b7ad +75769074ns 1372011 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d2 +75769153ns 1372015 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7ae PA:1c00b7ae +75769173ns 1372016 1c000e82 fff60613 addi x12, x12, -1 x12=000000d1 x12:000000d2 +75769193ns 1372017 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7af x6:1c00b7ae +75769212ns 1372018 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d1 +75769292ns 1372022 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7af PA:1c00b7af +75769311ns 1372023 1c000e82 fff60613 addi x12, x12, -1 x12=000000d0 x12:000000d1 +75769331ns 1372024 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7b0 x6:1c00b7af +75769351ns 1372025 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d0 +75769430ns 1372029 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7b0 PA:1c00b7b0 +75769450ns 1372030 1c000e82 fff60613 addi x12, x12, -1 x12=000000cf x12:000000d0 +75769470ns 1372031 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7b1 x6:1c00b7b0 +75769489ns 1372032 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000cf +75769569ns 1372036 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7b1 PA:1c00b7b1 +75769588ns 1372037 1c000e82 fff60613 addi x12, x12, -1 x12=000000ce x12:000000cf +75769608ns 1372038 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7b2 x6:1c00b7b1 +75769628ns 1372039 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ce +75769707ns 1372043 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7b2 PA:1c00b7b2 +75769727ns 1372044 1c000e82 fff60613 addi x12, x12, -1 x12=000000cd x12:000000ce +75769747ns 1372045 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7b3 x6:1c00b7b2 +75769767ns 1372046 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000cd +75769846ns 1372050 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7b3 PA:1c00b7b3 +75769866ns 1372051 1c000e82 fff60613 addi x12, x12, -1 x12=000000cc x12:000000cd +75769885ns 1372052 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7b4 x6:1c00b7b3 +75769905ns 1372053 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000cc +75769984ns 1372057 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7b4 PA:1c00b7b4 +75770004ns 1372058 1c000e82 fff60613 addi x12, x12, -1 x12=000000cb x12:000000cc +75770024ns 1372059 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7b5 x6:1c00b7b4 +75770044ns 1372060 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000cb +75770123ns 1372064 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7b5 PA:1c00b7b5 +75770143ns 1372065 1c000e82 fff60613 addi x12, x12, -1 x12=000000ca x12:000000cb +75770162ns 1372066 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7b6 x6:1c00b7b5 +75770182ns 1372067 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ca +75770261ns 1372071 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7b6 PA:1c00b7b6 +75770281ns 1372072 1c000e82 fff60613 addi x12, x12, -1 x12=000000c9 x12:000000ca +75770301ns 1372073 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7b7 x6:1c00b7b6 +75770321ns 1372074 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c9 +75770400ns 1372078 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7b7 PA:1c00b7b7 +75770420ns 1372079 1c000e82 fff60613 addi x12, x12, -1 x12=000000c8 x12:000000c9 +75770440ns 1372080 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7b8 x6:1c00b7b7 +75770459ns 1372081 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c8 +75770538ns 1372085 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7b8 PA:1c00b7b8 +75770558ns 1372086 1c000e82 fff60613 addi x12, x12, -1 x12=000000c7 x12:000000c8 +75770578ns 1372087 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7b9 x6:1c00b7b8 +75770598ns 1372088 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c7 +75770677ns 1372092 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7b9 PA:1c00b7b9 +75770697ns 1372093 1c000e82 fff60613 addi x12, x12, -1 x12=000000c6 x12:000000c7 +75770717ns 1372094 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7ba x6:1c00b7b9 +75770736ns 1372095 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c6 +75770816ns 1372099 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7ba PA:1c00b7ba +75770835ns 1372100 1c000e82 fff60613 addi x12, x12, -1 x12=000000c5 x12:000000c6 +75770855ns 1372101 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7bb x6:1c00b7ba +75770875ns 1372102 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c5 +75770954ns 1372106 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7bb PA:1c00b7bb +75770974ns 1372107 1c000e82 fff60613 addi x12, x12, -1 x12=000000c4 x12:000000c5 +75770994ns 1372108 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7bc x6:1c00b7bb +75771013ns 1372109 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c4 +75771093ns 1372113 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7bc PA:1c00b7bc +75771112ns 1372114 1c000e82 fff60613 addi x12, x12, -1 x12=000000c3 x12:000000c4 +75771132ns 1372115 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7bd x6:1c00b7bc +75771152ns 1372116 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c3 +75771231ns 1372120 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7bd PA:1c00b7bd +75771251ns 1372121 1c000e82 fff60613 addi x12, x12, -1 x12=000000c2 x12:000000c3 +75771271ns 1372122 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7be x6:1c00b7bd +75771291ns 1372123 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c2 +75771370ns 1372127 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7be PA:1c00b7be +75771390ns 1372128 1c000e82 fff60613 addi x12, x12, -1 x12=000000c1 x12:000000c2 +75771409ns 1372129 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7bf x6:1c00b7be +75771429ns 1372130 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c1 +75771508ns 1372134 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7bf PA:1c00b7bf +75771528ns 1372135 1c000e82 fff60613 addi x12, x12, -1 x12=000000c0 x12:000000c1 +75771548ns 1372136 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7c0 x6:1c00b7bf +75771568ns 1372137 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c0 +75771647ns 1372141 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7c0 PA:1c00b7c0 +75771667ns 1372142 1c000e82 fff60613 addi x12, x12, -1 x12=000000bf x12:000000c0 +75771686ns 1372143 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7c1 x6:1c00b7c0 +75771706ns 1372144 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000bf +75771785ns 1372148 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7c1 PA:1c00b7c1 +75771805ns 1372149 1c000e82 fff60613 addi x12, x12, -1 x12=000000be x12:000000bf +75771825ns 1372150 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7c2 x6:1c00b7c1 +75771845ns 1372151 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000be +75771924ns 1372155 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7c2 PA:1c00b7c2 +75771944ns 1372156 1c000e82 fff60613 addi x12, x12, -1 x12=000000bd x12:000000be +75771963ns 1372157 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7c3 x6:1c00b7c2 +75771983ns 1372158 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000bd +75772062ns 1372162 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7c3 PA:1c00b7c3 +75772082ns 1372163 1c000e82 fff60613 addi x12, x12, -1 x12=000000bc x12:000000bd +75772102ns 1372164 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7c4 x6:1c00b7c3 +75772122ns 1372165 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000bc +75772201ns 1372169 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7c4 PA:1c00b7c4 +75772221ns 1372170 1c000e82 fff60613 addi x12, x12, -1 x12=000000bb x12:000000bc +75772241ns 1372171 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7c5 x6:1c00b7c4 +75772260ns 1372172 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000bb +75772340ns 1372176 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7c5 PA:1c00b7c5 +75772359ns 1372177 1c000e82 fff60613 addi x12, x12, -1 x12=000000ba x12:000000bb +75772379ns 1372178 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7c6 x6:1c00b7c5 +75772399ns 1372179 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ba +75772478ns 1372183 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7c6 PA:1c00b7c6 +75772498ns 1372184 1c000e82 fff60613 addi x12, x12, -1 x12=000000b9 x12:000000ba +75772518ns 1372185 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7c7 x6:1c00b7c6 +75772537ns 1372186 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b9 +75772617ns 1372190 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7c7 PA:1c00b7c7 +75772636ns 1372191 1c000e82 fff60613 addi x12, x12, -1 x12=000000b8 x12:000000b9 +75772656ns 1372192 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7c8 x6:1c00b7c7 +75772676ns 1372193 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b8 +75772755ns 1372197 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7c8 PA:1c00b7c8 +75772775ns 1372198 1c000e82 fff60613 addi x12, x12, -1 x12=000000b7 x12:000000b8 +75772795ns 1372199 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7c9 x6:1c00b7c8 +75772815ns 1372200 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b7 +75772894ns 1372204 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7c9 PA:1c00b7c9 +75772914ns 1372205 1c000e82 fff60613 addi x12, x12, -1 x12=000000b6 x12:000000b7 +75772933ns 1372206 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7ca x6:1c00b7c9 +75772953ns 1372207 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b6 +75773032ns 1372211 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7ca PA:1c00b7ca +75773052ns 1372212 1c000e82 fff60613 addi x12, x12, -1 x12=000000b5 x12:000000b6 +75773072ns 1372213 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7cb x6:1c00b7ca +75773092ns 1372214 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b5 +75773171ns 1372218 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7cb PA:1c00b7cb +75773191ns 1372219 1c000e82 fff60613 addi x12, x12, -1 x12=000000b4 x12:000000b5 +75773210ns 1372220 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7cc x6:1c00b7cb +75773230ns 1372221 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b4 +75773309ns 1372225 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7cc PA:1c00b7cc +75773329ns 1372226 1c000e82 fff60613 addi x12, x12, -1 x12=000000b3 x12:000000b4 +75773349ns 1372227 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7cd x6:1c00b7cc +75773369ns 1372228 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b3 +75773448ns 1372232 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7cd PA:1c00b7cd +75773468ns 1372233 1c000e82 fff60613 addi x12, x12, -1 x12=000000b2 x12:000000b3 +75773487ns 1372234 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7ce x6:1c00b7cd +75773507ns 1372235 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b2 +75773586ns 1372239 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7ce PA:1c00b7ce +75773606ns 1372240 1c000e82 fff60613 addi x12, x12, -1 x12=000000b1 x12:000000b2 +75773626ns 1372241 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7cf x6:1c00b7ce +75773646ns 1372242 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b1 +75773725ns 1372246 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7cf PA:1c00b7cf +75773745ns 1372247 1c000e82 fff60613 addi x12, x12, -1 x12=000000b0 x12:000000b1 +75773765ns 1372248 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7d0 x6:1c00b7cf +75773784ns 1372249 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b0 +75773864ns 1372253 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7d0 PA:1c00b7d0 +75773883ns 1372254 1c000e82 fff60613 addi x12, x12, -1 x12=000000af x12:000000b0 +75773903ns 1372255 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7d1 x6:1c00b7d0 +75773923ns 1372256 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000af +75774002ns 1372260 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7d1 PA:1c00b7d1 +75774022ns 1372261 1c000e82 fff60613 addi x12, x12, -1 x12=000000ae x12:000000af +75774042ns 1372262 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7d2 x6:1c00b7d1 +75774061ns 1372263 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ae +75774141ns 1372267 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7d2 PA:1c00b7d2 +75774160ns 1372268 1c000e82 fff60613 addi x12, x12, -1 x12=000000ad x12:000000ae +75774180ns 1372269 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7d3 x6:1c00b7d2 +75774200ns 1372270 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ad +75774279ns 1372274 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7d3 PA:1c00b7d3 +75774299ns 1372275 1c000e82 fff60613 addi x12, x12, -1 x12=000000ac x12:000000ad +75774319ns 1372276 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7d4 x6:1c00b7d3 +75774339ns 1372277 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ac +75774418ns 1372281 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7d4 PA:1c00b7d4 +75774437ns 1372282 1c000e82 fff60613 addi x12, x12, -1 x12=000000ab x12:000000ac +75774457ns 1372283 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7d5 x6:1c00b7d4 +75774477ns 1372284 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ab +75774556ns 1372288 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7d5 PA:1c00b7d5 +75774576ns 1372289 1c000e82 fff60613 addi x12, x12, -1 x12=000000aa x12:000000ab +75774596ns 1372290 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7d6 x6:1c00b7d5 +75774616ns 1372291 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000aa +75774695ns 1372295 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7d6 PA:1c00b7d6 +75774715ns 1372296 1c000e82 fff60613 addi x12, x12, -1 x12=000000a9 x12:000000aa +75774734ns 1372297 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7d7 x6:1c00b7d6 +75774754ns 1372298 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a9 +75774833ns 1372302 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7d7 PA:1c00b7d7 +75774853ns 1372303 1c000e82 fff60613 addi x12, x12, -1 x12=000000a8 x12:000000a9 +75774873ns 1372304 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7d8 x6:1c00b7d7 +75774893ns 1372305 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a8 +75774972ns 1372309 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7d8 PA:1c00b7d8 +75774992ns 1372310 1c000e82 fff60613 addi x12, x12, -1 x12=000000a7 x12:000000a8 +75775011ns 1372311 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7d9 x6:1c00b7d8 +75775031ns 1372312 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a7 +75775110ns 1372316 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7d9 PA:1c00b7d9 +75775130ns 1372317 1c000e82 fff60613 addi x12, x12, -1 x12=000000a6 x12:000000a7 +75775150ns 1372318 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7da x6:1c00b7d9 +75775170ns 1372319 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a6 +75775249ns 1372323 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7da PA:1c00b7da +75775269ns 1372324 1c000e82 fff60613 addi x12, x12, -1 x12=000000a5 x12:000000a6 +75775289ns 1372325 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7db x6:1c00b7da +75775308ns 1372326 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a5 +75775388ns 1372330 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7db PA:1c00b7db +75775407ns 1372331 1c000e82 fff60613 addi x12, x12, -1 x12=000000a4 x12:000000a5 +75775427ns 1372332 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7dc x6:1c00b7db +75775447ns 1372333 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a4 +75775526ns 1372337 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7dc PA:1c00b7dc +75775546ns 1372338 1c000e82 fff60613 addi x12, x12, -1 x12=000000a3 x12:000000a4 +75775566ns 1372339 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7dd x6:1c00b7dc +75775585ns 1372340 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a3 +75775665ns 1372344 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7dd PA:1c00b7dd +75775684ns 1372345 1c000e82 fff60613 addi x12, x12, -1 x12=000000a2 x12:000000a3 +75775704ns 1372346 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7de x6:1c00b7dd +75775724ns 1372347 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a2 +75775803ns 1372351 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7de PA:1c00b7de +75775823ns 1372352 1c000e82 fff60613 addi x12, x12, -1 x12=000000a1 x12:000000a2 +75775843ns 1372353 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7df x6:1c00b7de +75775863ns 1372354 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a1 +75775942ns 1372358 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7df PA:1c00b7df +75775961ns 1372359 1c000e82 fff60613 addi x12, x12, -1 x12=000000a0 x12:000000a1 +75775981ns 1372360 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7e0 x6:1c00b7df +75776001ns 1372361 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a0 +75776080ns 1372365 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7e0 PA:1c00b7e0 +75776100ns 1372366 1c000e82 fff60613 addi x12, x12, -1 x12=0000009f x12:000000a0 +75776120ns 1372367 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7e1 x6:1c00b7e0 +75776140ns 1372368 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000009f +75776219ns 1372372 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7e1 PA:1c00b7e1 +75776239ns 1372373 1c000e82 fff60613 addi x12, x12, -1 x12=0000009e x12:0000009f +75776258ns 1372374 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7e2 x6:1c00b7e1 +75776278ns 1372375 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000009e +75776357ns 1372379 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7e2 PA:1c00b7e2 +75776377ns 1372380 1c000e82 fff60613 addi x12, x12, -1 x12=0000009d x12:0000009e +75776397ns 1372381 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7e3 x6:1c00b7e2 +75776417ns 1372382 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000009d +75776496ns 1372386 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7e3 PA:1c00b7e3 +75776516ns 1372387 1c000e82 fff60613 addi x12, x12, -1 x12=0000009c x12:0000009d +75776535ns 1372388 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7e4 x6:1c00b7e3 +75776555ns 1372389 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000009c +75776634ns 1372393 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7e4 PA:1c00b7e4 +75776654ns 1372394 1c000e82 fff60613 addi x12, x12, -1 x12=0000009b x12:0000009c +75776674ns 1372395 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7e5 x6:1c00b7e4 +75776694ns 1372396 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000009b +75776773ns 1372400 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7e5 PA:1c00b7e5 +75776793ns 1372401 1c000e82 fff60613 addi x12, x12, -1 x12=0000009a x12:0000009b +75776813ns 1372402 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7e6 x6:1c00b7e5 +75776832ns 1372403 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000009a +75776911ns 1372407 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7e6 PA:1c00b7e6 +75776931ns 1372408 1c000e82 fff60613 addi x12, x12, -1 x12=00000099 x12:0000009a +75776951ns 1372409 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7e7 x6:1c00b7e6 +75776971ns 1372410 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000099 +75777050ns 1372414 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7e7 PA:1c00b7e7 +75777070ns 1372415 1c000e82 fff60613 addi x12, x12, -1 x12=00000098 x12:00000099 +75777090ns 1372416 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7e8 x6:1c00b7e7 +75777109ns 1372417 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000098 +75777189ns 1372421 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7e8 PA:1c00b7e8 +75777208ns 1372422 1c000e82 fff60613 addi x12, x12, -1 x12=00000097 x12:00000098 +75777228ns 1372423 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7e9 x6:1c00b7e8 +75777248ns 1372424 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000097 +75777327ns 1372428 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7e9 PA:1c00b7e9 +75777347ns 1372429 1c000e82 fff60613 addi x12, x12, -1 x12=00000096 x12:00000097 +75777367ns 1372430 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7ea x6:1c00b7e9 +75777387ns 1372431 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000096 +75777466ns 1372435 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7ea PA:1c00b7ea +75777485ns 1372436 1c000e82 fff60613 addi x12, x12, -1 x12=00000095 x12:00000096 +75777505ns 1372437 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7eb x6:1c00b7ea +75777525ns 1372438 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000095 +75777604ns 1372442 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7eb PA:1c00b7eb +75777624ns 1372443 1c000e82 fff60613 addi x12, x12, -1 x12=00000094 x12:00000095 +75777644ns 1372444 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7ec x6:1c00b7eb +75777664ns 1372445 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000094 +75777743ns 1372449 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7ec PA:1c00b7ec +75777763ns 1372450 1c000e82 fff60613 addi x12, x12, -1 x12=00000093 x12:00000094 +75777782ns 1372451 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7ed x6:1c00b7ec +75777802ns 1372452 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000093 +75777881ns 1372456 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7ed PA:1c00b7ed +75777901ns 1372457 1c000e82 fff60613 addi x12, x12, -1 x12=00000092 x12:00000093 +75777921ns 1372458 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7ee x6:1c00b7ed +75777941ns 1372459 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000092 +75778020ns 1372463 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7ee PA:1c00b7ee +75778040ns 1372464 1c000e82 fff60613 addi x12, x12, -1 x12=00000091 x12:00000092 +75778059ns 1372465 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7ef x6:1c00b7ee +75778079ns 1372466 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000091 +75778158ns 1372470 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7ef PA:1c00b7ef +75778178ns 1372471 1c000e82 fff60613 addi x12, x12, -1 x12=00000090 x12:00000091 +75778198ns 1372472 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7f0 x6:1c00b7ef +75778218ns 1372473 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000090 +75778297ns 1372477 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7f0 PA:1c00b7f0 +75778317ns 1372478 1c000e82 fff60613 addi x12, x12, -1 x12=0000008f x12:00000090 +75778337ns 1372479 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7f1 x6:1c00b7f0 +75778356ns 1372480 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000008f +75778435ns 1372484 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7f1 PA:1c00b7f1 +75778455ns 1372485 1c000e82 fff60613 addi x12, x12, -1 x12=0000008e x12:0000008f +75778475ns 1372486 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7f2 x6:1c00b7f1 +75778495ns 1372487 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000008e +75778574ns 1372491 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7f2 PA:1c00b7f2 +75778594ns 1372492 1c000e82 fff60613 addi x12, x12, -1 x12=0000008d x12:0000008e +75778614ns 1372493 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7f3 x6:1c00b7f2 +75778633ns 1372494 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000008d +75778713ns 1372498 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7f3 PA:1c00b7f3 +75778732ns 1372499 1c000e82 fff60613 addi x12, x12, -1 x12=0000008c x12:0000008d +75778752ns 1372500 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7f4 x6:1c00b7f3 +75778772ns 1372501 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000008c +75778851ns 1372505 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7f4 PA:1c00b7f4 +75778871ns 1372506 1c000e82 fff60613 addi x12, x12, -1 x12=0000008b x12:0000008c +75778891ns 1372507 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7f5 x6:1c00b7f4 +75778910ns 1372508 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000008b +75778990ns 1372512 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7f5 PA:1c00b7f5 +75779009ns 1372513 1c000e82 fff60613 addi x12, x12, -1 x12=0000008a x12:0000008b +75779029ns 1372514 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7f6 x6:1c00b7f5 +75779049ns 1372515 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000008a +75779128ns 1372519 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7f6 PA:1c00b7f6 +75779148ns 1372520 1c000e82 fff60613 addi x12, x12, -1 x12=00000089 x12:0000008a +75779168ns 1372521 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7f7 x6:1c00b7f6 +75779188ns 1372522 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000089 +75779267ns 1372526 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7f7 PA:1c00b7f7 +75779287ns 1372527 1c000e82 fff60613 addi x12, x12, -1 x12=00000088 x12:00000089 +75779306ns 1372528 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7f8 x6:1c00b7f7 +75779326ns 1372529 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000088 +75779405ns 1372533 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7f8 PA:1c00b7f8 +75779425ns 1372534 1c000e82 fff60613 addi x12, x12, -1 x12=00000087 x12:00000088 +75779445ns 1372535 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7f9 x6:1c00b7f8 +75779465ns 1372536 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000087 +75779544ns 1372540 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7f9 PA:1c00b7f9 +75779564ns 1372541 1c000e82 fff60613 addi x12, x12, -1 x12=00000086 x12:00000087 +75779583ns 1372542 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7fa x6:1c00b7f9 +75779603ns 1372543 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000086 +75779682ns 1372547 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7fa PA:1c00b7fa +75779702ns 1372548 1c000e82 fff60613 addi x12, x12, -1 x12=00000085 x12:00000086 +75779722ns 1372549 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7fb x6:1c00b7fa +75779742ns 1372550 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000085 +75779821ns 1372554 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7fb PA:1c00b7fb +75779841ns 1372555 1c000e82 fff60613 addi x12, x12, -1 x12=00000084 x12:00000085 +75779861ns 1372556 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7fc x6:1c00b7fb +75779880ns 1372557 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000084 +75779959ns 1372561 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7fc PA:1c00b7fc +75779979ns 1372562 1c000e82 fff60613 addi x12, x12, -1 x12=00000083 x12:00000084 +75779999ns 1372563 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7fd x6:1c00b7fc +75780019ns 1372564 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000083 +75780098ns 1372568 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7fd PA:1c00b7fd +75780118ns 1372569 1c000e82 fff60613 addi x12, x12, -1 x12=00000082 x12:00000083 +75780138ns 1372570 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7fe x6:1c00b7fd +75780157ns 1372571 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000082 +75780237ns 1372575 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7fe PA:1c00b7fe +75780256ns 1372576 1c000e82 fff60613 addi x12, x12, -1 x12=00000081 x12:00000082 +75780276ns 1372577 1c000e84 00130313 addi x6, x6, 1 x6=1c00b7ff x6:1c00b7fe +75780296ns 1372578 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000081 +75780375ns 1372582 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b7ff PA:1c00b7ff +75780395ns 1372583 1c000e82 fff60613 addi x12, x12, -1 x12=00000080 x12:00000081 +75780415ns 1372584 1c000e84 00130313 addi x6, x6, 1 x6=1c00b800 x6:1c00b7ff +75780434ns 1372585 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000080 +75780514ns 1372589 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b800 PA:1c00b800 +75780533ns 1372590 1c000e82 fff60613 addi x12, x12, -1 x12=0000007f x12:00000080 +75780553ns 1372591 1c000e84 00130313 addi x6, x6, 1 x6=1c00b801 x6:1c00b800 +75780573ns 1372592 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000007f +75780652ns 1372596 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b801 PA:1c00b801 +75780672ns 1372597 1c000e82 fff60613 addi x12, x12, -1 x12=0000007e x12:0000007f +75780692ns 1372598 1c000e84 00130313 addi x6, x6, 1 x6=1c00b802 x6:1c00b801 +75780712ns 1372599 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000007e +75780791ns 1372603 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b802 PA:1c00b802 +75780811ns 1372604 1c000e82 fff60613 addi x12, x12, -1 x12=0000007d x12:0000007e +75780830ns 1372605 1c000e84 00130313 addi x6, x6, 1 x6=1c00b803 x6:1c00b802 +75780850ns 1372606 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000007d +75780929ns 1372610 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b803 PA:1c00b803 +75780949ns 1372611 1c000e82 fff60613 addi x12, x12, -1 x12=0000007c x12:0000007d +75780969ns 1372612 1c000e84 00130313 addi x6, x6, 1 x6=1c00b804 x6:1c00b803 +75780989ns 1372613 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000007c +75781068ns 1372617 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b804 PA:1c00b804 +75781088ns 1372618 1c000e82 fff60613 addi x12, x12, -1 x12=0000007b x12:0000007c +75781107ns 1372619 1c000e84 00130313 addi x6, x6, 1 x6=1c00b805 x6:1c00b804 +75781127ns 1372620 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000007b +75781206ns 1372624 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b805 PA:1c00b805 +75781226ns 1372625 1c000e82 fff60613 addi x12, x12, -1 x12=0000007a x12:0000007b +75781246ns 1372626 1c000e84 00130313 addi x6, x6, 1 x6=1c00b806 x6:1c00b805 +75781266ns 1372627 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000007a +75781345ns 1372631 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b806 PA:1c00b806 +75781365ns 1372632 1c000e82 fff60613 addi x12, x12, -1 x12=00000079 x12:0000007a +75781384ns 1372633 1c000e84 00130313 addi x6, x6, 1 x6=1c00b807 x6:1c00b806 +75781404ns 1372634 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000079 +75781483ns 1372638 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b807 PA:1c00b807 +75781503ns 1372639 1c000e82 fff60613 addi x12, x12, -1 x12=00000078 x12:00000079 +75781523ns 1372640 1c000e84 00130313 addi x6, x6, 1 x6=1c00b808 x6:1c00b807 +75781543ns 1372641 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000078 +75781622ns 1372645 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b808 PA:1c00b808 +75781642ns 1372646 1c000e82 fff60613 addi x12, x12, -1 x12=00000077 x12:00000078 +75781662ns 1372647 1c000e84 00130313 addi x6, x6, 1 x6=1c00b809 x6:1c00b808 +75781681ns 1372648 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000077 +75781761ns 1372652 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b809 PA:1c00b809 +75781780ns 1372653 1c000e82 fff60613 addi x12, x12, -1 x12=00000076 x12:00000077 +75781800ns 1372654 1c000e84 00130313 addi x6, x6, 1 x6=1c00b80a x6:1c00b809 +75781820ns 1372655 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000076 +75781899ns 1372659 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b80a PA:1c00b80a +75781919ns 1372660 1c000e82 fff60613 addi x12, x12, -1 x12=00000075 x12:00000076 +75781939ns 1372661 1c000e84 00130313 addi x6, x6, 1 x6=1c00b80b x6:1c00b80a +75781958ns 1372662 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000075 +75782038ns 1372666 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b80b PA:1c00b80b +75782057ns 1372667 1c000e82 fff60613 addi x12, x12, -1 x12=00000074 x12:00000075 +75782077ns 1372668 1c000e84 00130313 addi x6, x6, 1 x6=1c00b80c x6:1c00b80b +75782097ns 1372669 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000074 +75782176ns 1372673 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b80c PA:1c00b80c +75782196ns 1372674 1c000e82 fff60613 addi x12, x12, -1 x12=00000073 x12:00000074 +75782216ns 1372675 1c000e84 00130313 addi x6, x6, 1 x6=1c00b80d x6:1c00b80c +75782236ns 1372676 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000073 +75782315ns 1372680 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b80d PA:1c00b80d +75782335ns 1372681 1c000e82 fff60613 addi x12, x12, -1 x12=00000072 x12:00000073 +75782354ns 1372682 1c000e84 00130313 addi x6, x6, 1 x6=1c00b80e x6:1c00b80d +75782374ns 1372683 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000072 +75782453ns 1372687 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b80e PA:1c00b80e +75782473ns 1372688 1c000e82 fff60613 addi x12, x12, -1 x12=00000071 x12:00000072 +75782493ns 1372689 1c000e84 00130313 addi x6, x6, 1 x6=1c00b80f x6:1c00b80e +75782513ns 1372690 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000071 +75782592ns 1372694 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b80f PA:1c00b80f +75782612ns 1372695 1c000e82 fff60613 addi x12, x12, -1 x12=00000070 x12:00000071 +75782631ns 1372696 1c000e84 00130313 addi x6, x6, 1 x6=1c00b810 x6:1c00b80f +75782651ns 1372697 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000070 +75782730ns 1372701 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b810 PA:1c00b810 +75782750ns 1372702 1c000e82 fff60613 addi x12, x12, -1 x12=0000006f x12:00000070 +75782770ns 1372703 1c000e84 00130313 addi x6, x6, 1 x6=1c00b811 x6:1c00b810 +75782790ns 1372704 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000006f +75782869ns 1372708 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b811 PA:1c00b811 +75782889ns 1372709 1c000e82 fff60613 addi x12, x12, -1 x12=0000006e x12:0000006f +75782908ns 1372710 1c000e84 00130313 addi x6, x6, 1 x6=1c00b812 x6:1c00b811 +75782928ns 1372711 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000006e +75783007ns 1372715 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b812 PA:1c00b812 +75783027ns 1372716 1c000e82 fff60613 addi x12, x12, -1 x12=0000006d x12:0000006e +75783047ns 1372717 1c000e84 00130313 addi x6, x6, 1 x6=1c00b813 x6:1c00b812 +75783067ns 1372718 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000006d +75783146ns 1372722 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b813 PA:1c00b813 +75783166ns 1372723 1c000e82 fff60613 addi x12, x12, -1 x12=0000006c x12:0000006d +75783186ns 1372724 1c000e84 00130313 addi x6, x6, 1 x6=1c00b814 x6:1c00b813 +75783205ns 1372725 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000006c +75783285ns 1372729 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b814 PA:1c00b814 +75783304ns 1372730 1c000e82 fff60613 addi x12, x12, -1 x12=0000006b x12:0000006c +75783324ns 1372731 1c000e84 00130313 addi x6, x6, 1 x6=1c00b815 x6:1c00b814 +75783344ns 1372732 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000006b +75783423ns 1372736 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b815 PA:1c00b815 +75783443ns 1372737 1c000e82 fff60613 addi x12, x12, -1 x12=0000006a x12:0000006b +75783463ns 1372738 1c000e84 00130313 addi x6, x6, 1 x6=1c00b816 x6:1c00b815 +75783482ns 1372739 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000006a +75783562ns 1372743 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b816 PA:1c00b816 +75783581ns 1372744 1c000e82 fff60613 addi x12, x12, -1 x12=00000069 x12:0000006a +75783601ns 1372745 1c000e84 00130313 addi x6, x6, 1 x6=1c00b817 x6:1c00b816 +75783621ns 1372746 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000069 +75783700ns 1372750 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b817 PA:1c00b817 +75783720ns 1372751 1c000e82 fff60613 addi x12, x12, -1 x12=00000068 x12:00000069 +75783740ns 1372752 1c000e84 00130313 addi x6, x6, 1 x6=1c00b818 x6:1c00b817 +75783760ns 1372753 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000068 +75783839ns 1372757 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b818 PA:1c00b818 +75783858ns 1372758 1c000e82 fff60613 addi x12, x12, -1 x12=00000067 x12:00000068 +75783878ns 1372759 1c000e84 00130313 addi x6, x6, 1 x6=1c00b819 x6:1c00b818 +75783898ns 1372760 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000067 +75783977ns 1372764 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b819 PA:1c00b819 +75783997ns 1372765 1c000e82 fff60613 addi x12, x12, -1 x12=00000066 x12:00000067 +75784017ns 1372766 1c000e84 00130313 addi x6, x6, 1 x6=1c00b81a x6:1c00b819 +75784037ns 1372767 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000066 +75784116ns 1372771 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b81a PA:1c00b81a +75784136ns 1372772 1c000e82 fff60613 addi x12, x12, -1 x12=00000065 x12:00000066 +75784155ns 1372773 1c000e84 00130313 addi x6, x6, 1 x6=1c00b81b x6:1c00b81a +75784175ns 1372774 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000065 +75784254ns 1372778 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b81b PA:1c00b81b +75784274ns 1372779 1c000e82 fff60613 addi x12, x12, -1 x12=00000064 x12:00000065 +75784294ns 1372780 1c000e84 00130313 addi x6, x6, 1 x6=1c00b81c x6:1c00b81b +75784314ns 1372781 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000064 +75784393ns 1372785 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b81c PA:1c00b81c +75784413ns 1372786 1c000e82 fff60613 addi x12, x12, -1 x12=00000063 x12:00000064 +75784432ns 1372787 1c000e84 00130313 addi x6, x6, 1 x6=1c00b81d x6:1c00b81c +75784452ns 1372788 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000063 +75784531ns 1372792 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b81d PA:1c00b81d +75784551ns 1372793 1c000e82 fff60613 addi x12, x12, -1 x12=00000062 x12:00000063 +75784571ns 1372794 1c000e84 00130313 addi x6, x6, 1 x6=1c00b81e x6:1c00b81d +75784591ns 1372795 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000062 +75784670ns 1372799 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b81e PA:1c00b81e +75784690ns 1372800 1c000e82 fff60613 addi x12, x12, -1 x12=00000061 x12:00000062 +75784710ns 1372801 1c000e84 00130313 addi x6, x6, 1 x6=1c00b81f x6:1c00b81e +75784729ns 1372802 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000061 +75784809ns 1372806 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b81f PA:1c00b81f +75784828ns 1372807 1c000e82 fff60613 addi x12, x12, -1 x12=00000060 x12:00000061 +75784848ns 1372808 1c000e84 00130313 addi x6, x6, 1 x6=1c00b820 x6:1c00b81f +75784868ns 1372809 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000060 +75784947ns 1372813 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b820 PA:1c00b820 +75784967ns 1372814 1c000e82 fff60613 addi x12, x12, -1 x12=0000005f x12:00000060 +75784987ns 1372815 1c000e84 00130313 addi x6, x6, 1 x6=1c00b821 x6:1c00b820 +75785006ns 1372816 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000005f +75785086ns 1372820 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b821 PA:1c00b821 +75785105ns 1372821 1c000e82 fff60613 addi x12, x12, -1 x12=0000005e x12:0000005f +75785125ns 1372822 1c000e84 00130313 addi x6, x6, 1 x6=1c00b822 x6:1c00b821 +75785145ns 1372823 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000005e +75785224ns 1372827 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b822 PA:1c00b822 +75785244ns 1372828 1c000e82 fff60613 addi x12, x12, -1 x12=0000005d x12:0000005e +75785264ns 1372829 1c000e84 00130313 addi x6, x6, 1 x6=1c00b823 x6:1c00b822 +75785284ns 1372830 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000005d +75785363ns 1372834 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b823 PA:1c00b823 +75785382ns 1372835 1c000e82 fff60613 addi x12, x12, -1 x12=0000005c x12:0000005d +75785402ns 1372836 1c000e84 00130313 addi x6, x6, 1 x6=1c00b824 x6:1c00b823 +75785422ns 1372837 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000005c +75785501ns 1372841 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b824 PA:1c00b824 +75785521ns 1372842 1c000e82 fff60613 addi x12, x12, -1 x12=0000005b x12:0000005c +75785541ns 1372843 1c000e84 00130313 addi x6, x6, 1 x6=1c00b825 x6:1c00b824 +75785561ns 1372844 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000005b +75785640ns 1372848 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b825 PA:1c00b825 +75785660ns 1372849 1c000e82 fff60613 addi x12, x12, -1 x12=0000005a x12:0000005b +75785679ns 1372850 1c000e84 00130313 addi x6, x6, 1 x6=1c00b826 x6:1c00b825 +75785699ns 1372851 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000005a +75785778ns 1372855 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b826 PA:1c00b826 +75785798ns 1372856 1c000e82 fff60613 addi x12, x12, -1 x12=00000059 x12:0000005a +75785818ns 1372857 1c000e84 00130313 addi x6, x6, 1 x6=1c00b827 x6:1c00b826 +75785838ns 1372858 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000059 +75785917ns 1372862 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b827 PA:1c00b827 +75785937ns 1372863 1c000e82 fff60613 addi x12, x12, -1 x12=00000058 x12:00000059 +75785956ns 1372864 1c000e84 00130313 addi x6, x6, 1 x6=1c00b828 x6:1c00b827 +75785976ns 1372865 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000058 +75786055ns 1372869 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b828 PA:1c00b828 +75786075ns 1372870 1c000e82 fff60613 addi x12, x12, -1 x12=00000057 x12:00000058 +75786095ns 1372871 1c000e84 00130313 addi x6, x6, 1 x6=1c00b829 x6:1c00b828 +75786115ns 1372872 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000057 +75786194ns 1372876 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b829 PA:1c00b829 +75786214ns 1372877 1c000e82 fff60613 addi x12, x12, -1 x12=00000056 x12:00000057 +75786234ns 1372878 1c000e84 00130313 addi x6, x6, 1 x6=1c00b82a x6:1c00b829 +75786253ns 1372879 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000056 +75786332ns 1372883 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b82a PA:1c00b82a +75786352ns 1372884 1c000e82 fff60613 addi x12, x12, -1 x12=00000055 x12:00000056 +75786372ns 1372885 1c000e84 00130313 addi x6, x6, 1 x6=1c00b82b x6:1c00b82a +75786392ns 1372886 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000055 +75786471ns 1372890 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b82b PA:1c00b82b +75786491ns 1372891 1c000e82 fff60613 addi x12, x12, -1 x12=00000054 x12:00000055 +75786511ns 1372892 1c000e84 00130313 addi x6, x6, 1 x6=1c00b82c x6:1c00b82b +75786530ns 1372893 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000054 +75786610ns 1372897 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b82c PA:1c00b82c +75786629ns 1372898 1c000e82 fff60613 addi x12, x12, -1 x12=00000053 x12:00000054 +75786649ns 1372899 1c000e84 00130313 addi x6, x6, 1 x6=1c00b82d x6:1c00b82c +75786669ns 1372900 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000053 +75786748ns 1372904 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b82d PA:1c00b82d +75786768ns 1372905 1c000e82 fff60613 addi x12, x12, -1 x12=00000052 x12:00000053 +75786788ns 1372906 1c000e84 00130313 addi x6, x6, 1 x6=1c00b82e x6:1c00b82d +75786807ns 1372907 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000052 +75786887ns 1372911 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b82e PA:1c00b82e +75786906ns 1372912 1c000e82 fff60613 addi x12, x12, -1 x12=00000051 x12:00000052 +75786926ns 1372913 1c000e84 00130313 addi x6, x6, 1 x6=1c00b82f x6:1c00b82e +75786946ns 1372914 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000051 +75787025ns 1372918 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b82f PA:1c00b82f +75787045ns 1372919 1c000e82 fff60613 addi x12, x12, -1 x12=00000050 x12:00000051 +75787065ns 1372920 1c000e84 00130313 addi x6, x6, 1 x6=1c00b830 x6:1c00b82f +75787085ns 1372921 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000050 +75787164ns 1372925 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b830 PA:1c00b830 +75787184ns 1372926 1c000e82 fff60613 addi x12, x12, -1 x12=0000004f x12:00000050 +75787203ns 1372927 1c000e84 00130313 addi x6, x6, 1 x6=1c00b831 x6:1c00b830 +75787223ns 1372928 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000004f +75787302ns 1372932 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b831 PA:1c00b831 +75787322ns 1372933 1c000e82 fff60613 addi x12, x12, -1 x12=0000004e x12:0000004f +75787342ns 1372934 1c000e84 00130313 addi x6, x6, 1 x6=1c00b832 x6:1c00b831 +75787362ns 1372935 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000004e +75787441ns 1372939 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b832 PA:1c00b832 +75787461ns 1372940 1c000e82 fff60613 addi x12, x12, -1 x12=0000004d x12:0000004e +75787480ns 1372941 1c000e84 00130313 addi x6, x6, 1 x6=1c00b833 x6:1c00b832 +75787500ns 1372942 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000004d +75787579ns 1372946 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b833 PA:1c00b833 +75787599ns 1372947 1c000e82 fff60613 addi x12, x12, -1 x12=0000004c x12:0000004d +75787619ns 1372948 1c000e84 00130313 addi x6, x6, 1 x6=1c00b834 x6:1c00b833 +75787639ns 1372949 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000004c +75787718ns 1372953 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b834 PA:1c00b834 +75787738ns 1372954 1c000e82 fff60613 addi x12, x12, -1 x12=0000004b x12:0000004c +75787758ns 1372955 1c000e84 00130313 addi x6, x6, 1 x6=1c00b835 x6:1c00b834 +75787777ns 1372956 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000004b +75787856ns 1372960 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b835 PA:1c00b835 +75787876ns 1372961 1c000e82 fff60613 addi x12, x12, -1 x12=0000004a x12:0000004b +75787896ns 1372962 1c000e84 00130313 addi x6, x6, 1 x6=1c00b836 x6:1c00b835 +75787916ns 1372963 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000004a +75787995ns 1372967 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b836 PA:1c00b836 +75788015ns 1372968 1c000e82 fff60613 addi x12, x12, -1 x12=00000049 x12:0000004a +75788035ns 1372969 1c000e84 00130313 addi x6, x6, 1 x6=1c00b837 x6:1c00b836 +75788054ns 1372970 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000049 +75788134ns 1372974 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b837 PA:1c00b837 +75788153ns 1372975 1c000e82 fff60613 addi x12, x12, -1 x12=00000048 x12:00000049 +75788173ns 1372976 1c000e84 00130313 addi x6, x6, 1 x6=1c00b838 x6:1c00b837 +75788193ns 1372977 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000048 +75788272ns 1372981 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b838 PA:1c00b838 +75788292ns 1372982 1c000e82 fff60613 addi x12, x12, -1 x12=00000047 x12:00000048 +75788312ns 1372983 1c000e84 00130313 addi x6, x6, 1 x6=1c00b839 x6:1c00b838 +75788331ns 1372984 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000047 +75788411ns 1372988 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b839 PA:1c00b839 +75788430ns 1372989 1c000e82 fff60613 addi x12, x12, -1 x12=00000046 x12:00000047 +75788450ns 1372990 1c000e84 00130313 addi x6, x6, 1 x6=1c00b83a x6:1c00b839 +75788470ns 1372991 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000046 +75788549ns 1372995 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b83a PA:1c00b83a +75788569ns 1372996 1c000e82 fff60613 addi x12, x12, -1 x12=00000045 x12:00000046 +75788589ns 1372997 1c000e84 00130313 addi x6, x6, 1 x6=1c00b83b x6:1c00b83a +75788609ns 1372998 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000045 +75788688ns 1373002 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b83b PA:1c00b83b +75788708ns 1373003 1c000e82 fff60613 addi x12, x12, -1 x12=00000044 x12:00000045 +75788727ns 1373004 1c000e84 00130313 addi x6, x6, 1 x6=1c00b83c x6:1c00b83b +75788747ns 1373005 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000044 +75788826ns 1373009 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b83c PA:1c00b83c +75788846ns 1373010 1c000e82 fff60613 addi x12, x12, -1 x12=00000043 x12:00000044 +75788866ns 1373011 1c000e84 00130313 addi x6, x6, 1 x6=1c00b83d x6:1c00b83c +75788886ns 1373012 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000043 +75788965ns 1373016 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b83d PA:1c00b83d +75788985ns 1373017 1c000e82 fff60613 addi x12, x12, -1 x12=00000042 x12:00000043 +75789004ns 1373018 1c000e84 00130313 addi x6, x6, 1 x6=1c00b83e x6:1c00b83d +75789024ns 1373019 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000042 +75789103ns 1373023 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b83e PA:1c00b83e +75789123ns 1373024 1c000e82 fff60613 addi x12, x12, -1 x12=00000041 x12:00000042 +75789143ns 1373025 1c000e84 00130313 addi x6, x6, 1 x6=1c00b83f x6:1c00b83e +75789163ns 1373026 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000041 +75789242ns 1373030 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b83f PA:1c00b83f +75789262ns 1373031 1c000e82 fff60613 addi x12, x12, -1 x12=00000040 x12:00000041 +75789281ns 1373032 1c000e84 00130313 addi x6, x6, 1 x6=1c00b840 x6:1c00b83f +75789301ns 1373033 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000040 +75789380ns 1373037 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b840 PA:1c00b840 +75789400ns 1373038 1c000e82 fff60613 addi x12, x12, -1 x12=0000003f x12:00000040 +75789420ns 1373039 1c000e84 00130313 addi x6, x6, 1 x6=1c00b841 x6:1c00b840 +75789440ns 1373040 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000003f +75789519ns 1373044 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b841 PA:1c00b841 +75789539ns 1373045 1c000e82 fff60613 addi x12, x12, -1 x12=0000003e x12:0000003f +75789559ns 1373046 1c000e84 00130313 addi x6, x6, 1 x6=1c00b842 x6:1c00b841 +75789578ns 1373047 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000003e +75789658ns 1373051 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b842 PA:1c00b842 +75789677ns 1373052 1c000e82 fff60613 addi x12, x12, -1 x12=0000003d x12:0000003e +75789697ns 1373053 1c000e84 00130313 addi x6, x6, 1 x6=1c00b843 x6:1c00b842 +75789717ns 1373054 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000003d +75789796ns 1373058 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b843 PA:1c00b843 +75789816ns 1373059 1c000e82 fff60613 addi x12, x12, -1 x12=0000003c x12:0000003d +75789836ns 1373060 1c000e84 00130313 addi x6, x6, 1 x6=1c00b844 x6:1c00b843 +75789855ns 1373061 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000003c +75789935ns 1373065 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b844 PA:1c00b844 +75789954ns 1373066 1c000e82 fff60613 addi x12, x12, -1 x12=0000003b x12:0000003c +75789974ns 1373067 1c000e84 00130313 addi x6, x6, 1 x6=1c00b845 x6:1c00b844 +75789994ns 1373068 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000003b +75790073ns 1373072 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b845 PA:1c00b845 +75790093ns 1373073 1c000e82 fff60613 addi x12, x12, -1 x12=0000003a x12:0000003b +75790113ns 1373074 1c000e84 00130313 addi x6, x6, 1 x6=1c00b846 x6:1c00b845 +75790133ns 1373075 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000003a +75790212ns 1373079 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b846 PA:1c00b846 +75790232ns 1373080 1c000e82 fff60613 addi x12, x12, -1 x12=00000039 x12:0000003a +75790251ns 1373081 1c000e84 00130313 addi x6, x6, 1 x6=1c00b847 x6:1c00b846 +75790271ns 1373082 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000039 +75790350ns 1373086 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b847 PA:1c00b847 +75790370ns 1373087 1c000e82 fff60613 addi x12, x12, -1 x12=00000038 x12:00000039 +75790390ns 1373088 1c000e84 00130313 addi x6, x6, 1 x6=1c00b848 x6:1c00b847 +75790410ns 1373089 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000038 +75790489ns 1373093 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b848 PA:1c00b848 +75790509ns 1373094 1c000e82 fff60613 addi x12, x12, -1 x12=00000037 x12:00000038 +75790528ns 1373095 1c000e84 00130313 addi x6, x6, 1 x6=1c00b849 x6:1c00b848 +75790548ns 1373096 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000037 +75790627ns 1373100 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b849 PA:1c00b849 +75790647ns 1373101 1c000e82 fff60613 addi x12, x12, -1 x12=00000036 x12:00000037 +75790667ns 1373102 1c000e84 00130313 addi x6, x6, 1 x6=1c00b84a x6:1c00b849 +75790687ns 1373103 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000036 +75790766ns 1373107 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b84a PA:1c00b84a +75790786ns 1373108 1c000e82 fff60613 addi x12, x12, -1 x12=00000035 x12:00000036 +75790805ns 1373109 1c000e84 00130313 addi x6, x6, 1 x6=1c00b84b x6:1c00b84a +75790825ns 1373110 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000035 +75790904ns 1373114 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b84b PA:1c00b84b +75790924ns 1373115 1c000e82 fff60613 addi x12, x12, -1 x12=00000034 x12:00000035 +75790944ns 1373116 1c000e84 00130313 addi x6, x6, 1 x6=1c00b84c x6:1c00b84b +75790964ns 1373117 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000034 +75791043ns 1373121 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b84c PA:1c00b84c +75791063ns 1373122 1c000e82 fff60613 addi x12, x12, -1 x12=00000033 x12:00000034 +75791083ns 1373123 1c000e84 00130313 addi x6, x6, 1 x6=1c00b84d x6:1c00b84c +75791102ns 1373124 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000033 +75791182ns 1373128 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b84d PA:1c00b84d +75791201ns 1373129 1c000e82 fff60613 addi x12, x12, -1 x12=00000032 x12:00000033 +75791221ns 1373130 1c000e84 00130313 addi x6, x6, 1 x6=1c00b84e x6:1c00b84d +75791241ns 1373131 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000032 +75791320ns 1373135 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b84e PA:1c00b84e +75791340ns 1373136 1c000e82 fff60613 addi x12, x12, -1 x12=00000031 x12:00000032 +75791360ns 1373137 1c000e84 00130313 addi x6, x6, 1 x6=1c00b84f x6:1c00b84e +75791379ns 1373138 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000031 +75791459ns 1373142 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b84f PA:1c00b84f +75791478ns 1373143 1c000e82 fff60613 addi x12, x12, -1 x12=00000030 x12:00000031 +75791498ns 1373144 1c000e84 00130313 addi x6, x6, 1 x6=1c00b850 x6:1c00b84f +75791518ns 1373145 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000030 +75791597ns 1373149 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b850 PA:1c00b850 +75791617ns 1373150 1c000e82 fff60613 addi x12, x12, -1 x12=0000002f x12:00000030 +75791637ns 1373151 1c000e84 00130313 addi x6, x6, 1 x6=1c00b851 x6:1c00b850 +75791657ns 1373152 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000002f +75791736ns 1373156 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b851 PA:1c00b851 +75791755ns 1373157 1c000e82 fff60613 addi x12, x12, -1 x12=0000002e x12:0000002f +75791775ns 1373158 1c000e84 00130313 addi x6, x6, 1 x6=1c00b852 x6:1c00b851 +75791795ns 1373159 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000002e +75791874ns 1373163 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b852 PA:1c00b852 +75791894ns 1373164 1c000e82 fff60613 addi x12, x12, -1 x12=0000002d x12:0000002e +75791914ns 1373165 1c000e84 00130313 addi x6, x6, 1 x6=1c00b853 x6:1c00b852 +75791934ns 1373166 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000002d +75792013ns 1373170 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b853 PA:1c00b853 +75792033ns 1373171 1c000e82 fff60613 addi x12, x12, -1 x12=0000002c x12:0000002d +75792052ns 1373172 1c000e84 00130313 addi x6, x6, 1 x6=1c00b854 x6:1c00b853 +75792072ns 1373173 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000002c +75792151ns 1373177 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b854 PA:1c00b854 +75792171ns 1373178 1c000e82 fff60613 addi x12, x12, -1 x12=0000002b x12:0000002c +75792191ns 1373179 1c000e84 00130313 addi x6, x6, 1 x6=1c00b855 x6:1c00b854 +75792211ns 1373180 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000002b +75792290ns 1373184 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b855 PA:1c00b855 +75792310ns 1373185 1c000e82 fff60613 addi x12, x12, -1 x12=0000002a x12:0000002b +75792329ns 1373186 1c000e84 00130313 addi x6, x6, 1 x6=1c00b856 x6:1c00b855 +75792349ns 1373187 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000002a +75792428ns 1373191 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b856 PA:1c00b856 +75792448ns 1373192 1c000e82 fff60613 addi x12, x12, -1 x12=00000029 x12:0000002a +75792468ns 1373193 1c000e84 00130313 addi x6, x6, 1 x6=1c00b857 x6:1c00b856 +75792488ns 1373194 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000029 +75792567ns 1373198 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b857 PA:1c00b857 +75792587ns 1373199 1c000e82 fff60613 addi x12, x12, -1 x12=00000028 x12:00000029 +75792607ns 1373200 1c000e84 00130313 addi x6, x6, 1 x6=1c00b858 x6:1c00b857 +75792626ns 1373201 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000028 +75792706ns 1373205 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b858 PA:1c00b858 +75792725ns 1373206 1c000e82 fff60613 addi x12, x12, -1 x12=00000027 x12:00000028 +75792745ns 1373207 1c000e84 00130313 addi x6, x6, 1 x6=1c00b859 x6:1c00b858 +75792765ns 1373208 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000027 +75792844ns 1373212 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b859 PA:1c00b859 +75792864ns 1373213 1c000e82 fff60613 addi x12, x12, -1 x12=00000026 x12:00000027 +75792884ns 1373214 1c000e84 00130313 addi x6, x6, 1 x6=1c00b85a x6:1c00b859 +75792903ns 1373215 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000026 +75792983ns 1373219 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b85a PA:1c00b85a +75793002ns 1373220 1c000e82 fff60613 addi x12, x12, -1 x12=00000025 x12:00000026 +75793022ns 1373221 1c000e84 00130313 addi x6, x6, 1 x6=1c00b85b x6:1c00b85a +75793042ns 1373222 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000025 +75793121ns 1373226 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b85b PA:1c00b85b +75793141ns 1373227 1c000e82 fff60613 addi x12, x12, -1 x12=00000024 x12:00000025 +75793161ns 1373228 1c000e84 00130313 addi x6, x6, 1 x6=1c00b85c x6:1c00b85b +75793181ns 1373229 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000024 +75793260ns 1373233 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b85c PA:1c00b85c +75793279ns 1373234 1c000e82 fff60613 addi x12, x12, -1 x12=00000023 x12:00000024 +75793299ns 1373235 1c000e84 00130313 addi x6, x6, 1 x6=1c00b85d x6:1c00b85c +75793319ns 1373236 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000023 +75793398ns 1373240 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b85d PA:1c00b85d +75793418ns 1373241 1c000e82 fff60613 addi x12, x12, -1 x12=00000022 x12:00000023 +75793438ns 1373242 1c000e84 00130313 addi x6, x6, 1 x6=1c00b85e x6:1c00b85d +75793458ns 1373243 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000022 +75793537ns 1373247 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b85e PA:1c00b85e +75793557ns 1373248 1c000e82 fff60613 addi x12, x12, -1 x12=00000021 x12:00000022 +75793576ns 1373249 1c000e84 00130313 addi x6, x6, 1 x6=1c00b85f x6:1c00b85e +75793596ns 1373250 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000021 +75793675ns 1373254 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b85f PA:1c00b85f +75793695ns 1373255 1c000e82 fff60613 addi x12, x12, -1 x12=00000020 x12:00000021 +75793715ns 1373256 1c000e84 00130313 addi x6, x6, 1 x6=1c00b860 x6:1c00b85f +75793735ns 1373257 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000020 +75793814ns 1373261 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b860 PA:1c00b860 +75793834ns 1373262 1c000e82 fff60613 addi x12, x12, -1 x12=0000001f x12:00000020 +75793853ns 1373263 1c000e84 00130313 addi x6, x6, 1 x6=1c00b861 x6:1c00b860 +75793873ns 1373264 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000001f +75793952ns 1373268 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b861 PA:1c00b861 +75793972ns 1373269 1c000e82 fff60613 addi x12, x12, -1 x12=0000001e x12:0000001f +75793992ns 1373270 1c000e84 00130313 addi x6, x6, 1 x6=1c00b862 x6:1c00b861 +75794012ns 1373271 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000001e +75794091ns 1373275 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b862 PA:1c00b862 +75794111ns 1373276 1c000e82 fff60613 addi x12, x12, -1 x12=0000001d x12:0000001e +75794131ns 1373277 1c000e84 00130313 addi x6, x6, 1 x6=1c00b863 x6:1c00b862 +75794150ns 1373278 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000001d +75794229ns 1373282 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b863 PA:1c00b863 +75794249ns 1373283 1c000e82 fff60613 addi x12, x12, -1 x12=0000001c x12:0000001d +75794269ns 1373284 1c000e84 00130313 addi x6, x6, 1 x6=1c00b864 x6:1c00b863 +75794289ns 1373285 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000001c +75794368ns 1373289 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b864 PA:1c00b864 +75794388ns 1373290 1c000e82 fff60613 addi x12, x12, -1 x12=0000001b x12:0000001c +75794408ns 1373291 1c000e84 00130313 addi x6, x6, 1 x6=1c00b865 x6:1c00b864 +75794427ns 1373292 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000001b +75794507ns 1373296 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b865 PA:1c00b865 +75794526ns 1373297 1c000e82 fff60613 addi x12, x12, -1 x12=0000001a x12:0000001b +75794546ns 1373298 1c000e84 00130313 addi x6, x6, 1 x6=1c00b866 x6:1c00b865 +75794566ns 1373299 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000001a +75794645ns 1373303 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b866 PA:1c00b866 +75794665ns 1373304 1c000e82 fff60613 addi x12, x12, -1 x12=00000019 x12:0000001a +75794685ns 1373305 1c000e84 00130313 addi x6, x6, 1 x6=1c00b867 x6:1c00b866 +75794705ns 1373306 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000019 +75794784ns 1373310 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b867 PA:1c00b867 +75794803ns 1373311 1c000e82 fff60613 addi x12, x12, -1 x12=00000018 x12:00000019 +75794823ns 1373312 1c000e84 00130313 addi x6, x6, 1 x6=1c00b868 x6:1c00b867 +75794843ns 1373313 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000018 +75794922ns 1373317 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b868 PA:1c00b868 +75794942ns 1373318 1c000e82 fff60613 addi x12, x12, -1 x12=00000017 x12:00000018 +75794962ns 1373319 1c000e84 00130313 addi x6, x6, 1 x6=1c00b869 x6:1c00b868 +75794982ns 1373320 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000017 +75795061ns 1373324 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b869 PA:1c00b869 +75795081ns 1373325 1c000e82 fff60613 addi x12, x12, -1 x12=00000016 x12:00000017 +75795100ns 1373326 1c000e84 00130313 addi x6, x6, 1 x6=1c00b86a x6:1c00b869 +75795120ns 1373327 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000016 +75795199ns 1373331 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b86a PA:1c00b86a +75795219ns 1373332 1c000e82 fff60613 addi x12, x12, -1 x12=00000015 x12:00000016 +75795239ns 1373333 1c000e84 00130313 addi x6, x6, 1 x6=1c00b86b x6:1c00b86a +75795259ns 1373334 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000015 +75795338ns 1373338 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b86b PA:1c00b86b +75795358ns 1373339 1c000e82 fff60613 addi x12, x12, -1 x12=00000014 x12:00000015 +75795377ns 1373340 1c000e84 00130313 addi x6, x6, 1 x6=1c00b86c x6:1c00b86b +75795397ns 1373341 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000014 +75795476ns 1373345 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b86c PA:1c00b86c +75795496ns 1373346 1c000e82 fff60613 addi x12, x12, -1 x12=00000013 x12:00000014 +75795516ns 1373347 1c000e84 00130313 addi x6, x6, 1 x6=1c00b86d x6:1c00b86c +75795536ns 1373348 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000013 +75795615ns 1373352 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b86d PA:1c00b86d +75795635ns 1373353 1c000e82 fff60613 addi x12, x12, -1 x12=00000012 x12:00000013 +75795655ns 1373354 1c000e84 00130313 addi x6, x6, 1 x6=1c00b86e x6:1c00b86d +75795674ns 1373355 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000012 +75795753ns 1373359 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b86e PA:1c00b86e +75795773ns 1373360 1c000e82 fff60613 addi x12, x12, -1 x12=00000011 x12:00000012 +75795793ns 1373361 1c000e84 00130313 addi x6, x6, 1 x6=1c00b86f x6:1c00b86e +75795813ns 1373362 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000011 +75795892ns 1373366 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b86f PA:1c00b86f +75795912ns 1373367 1c000e82 fff60613 addi x12, x12, -1 x12=00000010 x12:00000011 +75795932ns 1373368 1c000e84 00130313 addi x6, x6, 1 x6=1c00b870 x6:1c00b86f +75795951ns 1373369 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000010 +75796031ns 1373373 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b870 PA:1c00b870 +75796050ns 1373374 1c000e82 fff60613 addi x12, x12, -1 x12=0000000f x12:00000010 +75796070ns 1373375 1c000e84 00130313 addi x6, x6, 1 x6=1c00b871 x6:1c00b870 +75796090ns 1373376 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000000f +75796169ns 1373380 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b871 PA:1c00b871 +75796189ns 1373381 1c000e82 fff60613 addi x12, x12, -1 x12=0000000e x12:0000000f +75796209ns 1373382 1c000e84 00130313 addi x6, x6, 1 x6=1c00b872 x6:1c00b871 +75796228ns 1373383 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000000e +75796308ns 1373387 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b872 PA:1c00b872 +75796327ns 1373388 1c000e82 fff60613 addi x12, x12, -1 x12=0000000d x12:0000000e +75796347ns 1373389 1c000e84 00130313 addi x6, x6, 1 x6=1c00b873 x6:1c00b872 +75796367ns 1373390 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000000d +75796446ns 1373394 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b873 PA:1c00b873 +75796466ns 1373395 1c000e82 fff60613 addi x12, x12, -1 x12=0000000c x12:0000000d +75796486ns 1373396 1c000e84 00130313 addi x6, x6, 1 x6=1c00b874 x6:1c00b873 +75796506ns 1373397 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000000c +75796585ns 1373401 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b874 PA:1c00b874 +75796605ns 1373402 1c000e82 fff60613 addi x12, x12, -1 x12=0000000b x12:0000000c +75796624ns 1373403 1c000e84 00130313 addi x6, x6, 1 x6=1c00b875 x6:1c00b874 +75796644ns 1373404 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000000b +75796723ns 1373408 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b875 PA:1c00b875 +75796743ns 1373409 1c000e82 fff60613 addi x12, x12, -1 x12=0000000a x12:0000000b +75796763ns 1373410 1c000e84 00130313 addi x6, x6, 1 x6=1c00b876 x6:1c00b875 +75796783ns 1373411 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000000a +75796862ns 1373415 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b876 PA:1c00b876 +75796882ns 1373416 1c000e82 fff60613 addi x12, x12, -1 x12=00000009 x12:0000000a +75796901ns 1373417 1c000e84 00130313 addi x6, x6, 1 x6=1c00b877 x6:1c00b876 +75796921ns 1373418 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000009 +75797000ns 1373422 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b877 PA:1c00b877 +75797020ns 1373423 1c000e82 fff60613 addi x12, x12, -1 x12=00000008 x12:00000009 +75797040ns 1373424 1c000e84 00130313 addi x6, x6, 1 x6=1c00b878 x6:1c00b877 +75797060ns 1373425 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000008 +75797139ns 1373429 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b878 PA:1c00b878 +75797159ns 1373430 1c000e82 fff60613 addi x12, x12, -1 x12=00000007 x12:00000008 +75797179ns 1373431 1c000e84 00130313 addi x6, x6, 1 x6=1c00b879 x6:1c00b878 +75797198ns 1373432 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000007 +75797277ns 1373436 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b879 PA:1c00b879 +75797297ns 1373437 1c000e82 fff60613 addi x12, x12, -1 x12=00000006 x12:00000007 +75797317ns 1373438 1c000e84 00130313 addi x6, x6, 1 x6=1c00b87a x6:1c00b879 +75797337ns 1373439 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000006 +75797416ns 1373443 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b87a PA:1c00b87a +75797436ns 1373444 1c000e82 fff60613 addi x12, x12, -1 x12=00000005 x12:00000006 +75797456ns 1373445 1c000e84 00130313 addi x6, x6, 1 x6=1c00b87b x6:1c00b87a +75797475ns 1373446 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000005 +75797555ns 1373450 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b87b PA:1c00b87b +75797574ns 1373451 1c000e82 fff60613 addi x12, x12, -1 x12=00000004 x12:00000005 +75797594ns 1373452 1c000e84 00130313 addi x6, x6, 1 x6=1c00b87c x6:1c00b87b +75797614ns 1373453 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000004 +75797693ns 1373457 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b87c PA:1c00b87c +75797713ns 1373458 1c000e82 fff60613 addi x12, x12, -1 x12=00000003 x12:00000004 +75797733ns 1373459 1c000e84 00130313 addi x6, x6, 1 x6=1c00b87d x6:1c00b87c +75797752ns 1373460 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000003 +75797832ns 1373464 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b87d PA:1c00b87d +75797851ns 1373465 1c000e82 fff60613 addi x12, x12, -1 x12=00000002 x12:00000003 +75797871ns 1373466 1c000e84 00130313 addi x6, x6, 1 x6=1c00b87e x6:1c00b87d +75797891ns 1373467 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000002 +75797970ns 1373471 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b87e PA:1c00b87e +75797990ns 1373472 1c000e82 fff60613 addi x12, x12, -1 x12=00000001 x12:00000002 +75798010ns 1373473 1c000e84 00130313 addi x6, x6, 1 x6=1c00b87f x6:1c00b87e +75798030ns 1373474 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000001 +75798109ns 1373478 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b87f PA:1c00b87f +75798129ns 1373479 1c000e82 fff60613 addi x12, x12, -1 x12=00000000 x12:00000001 +75798148ns 1373480 1c000e84 00130313 addi x6, x6, 1 x6=1c00b880 x6:1c00b87f +75798168ns 1373481 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000000 +75798188ns 1373482 1c000e88 00008067 jalr x0, x1, 0 x1:1c002116 +75798247ns 1373485 1c002116 34440793 addi x15, x8, 836 x15=1c00b744 x8:1c00b400 +75798267ns 1373486 1c00211a 04f42e23 sw x15, 92(x8) x15:1c00b744 x8:1c00b400 PA:1c00b45c +75798287ns 1373487 1c00211c 3ac40793 addi x15, x8, 940 x15=1c00b7ac x8:1c00b400 +75798307ns 1373488 1c002120 06f42023 sw x15, 96(x8) x15:1c00b7ac x8:1c00b400 PA:1c00b460 +75798326ns 1373489 1c002122 00100713 addi x14, x0, 1 x14=00000001 +75798346ns 1373490 1c002124 41440793 addi x15, x8, 1044 x15=1c00b814 x8:1c00b400 +75798366ns 1373491 1c002128 06f42223 sw x15, 100(x8) x15:1c00b814 x8:1c00b400 PA:1c00b464 +75798386ns 1373492 1c00212a 10e42023 sw x14, 256(x8) x14:00000001 x8:1c00b400 PA:1c00b500 +75798406ns 1373493 1c00212e 00000793 addi x15, x0, 0 x15=00000000 +75798425ns 1373494 1c002130 abcd3737 lui x14, 0xabcd3000 x14=abcd3000 +75798445ns 1373495 1c002134 10f42223 sw x15, 260(x8) x15:00000000 x8:1c00b400 PA:1c00b504 +75798465ns 1373496 1c002138 30e70713 addi x14, x14, 782 x14=abcd330e x14:abcd3000 +75798485ns 1373497 1c00213c 10040793 addi x15, x8, 256 x15=1c00b500 x8:1c00b400 +75798505ns 1373498 1c002140 00e7a423 sw x14, 8(x15) x14:abcd330e x15:1c00b500 PA:1c00b508 +75798524ns 1373499 1c002142 e66d1737 lui x14, 0xe66d1000 x14=e66d1000 +75798544ns 1373500 1c002146 23470713 addi x14, x14, 564 x14=e66d1234 x14:e66d1000 +75798564ns 1373501 1c00214a 00e7a623 sw x14, 12(x15) x14:e66d1234 x15:1c00b500 PA:1c00b50c +75798584ns 1373502 1c00214c 0005e737 lui x14, 0x5e000 x14=0005e000 +75798604ns 1373503 1c002150 eec70713 addi x14, x14, -276 x14=0005deec x14:0005e000 +75798623ns 1373504 1c002154 ffc98993 addi x19, x19, -4 x19=0000063c x19:00000640 +75798643ns 1373505 1c002156 00e7a823 sw x14, 16(x15) x14:0005deec x15:1c00b500 PA:1c00b510 +75798663ns 1373506 1c002158 018989b3 add x19, x19, x24 x19=1c00b3f4 x19:0000063c x24:1c00adb8 +75798683ns 1373507 1c00215a 00b00793 addi x15, x0, 11 x15=0000000b +75798702ns 1373508 1c00215c 10f41a23 sh x15, 276(x8) x15:0000000b x8:1c00b400 PA:1c00b514 +75798722ns 1373509 1c002160 480402a3 sb x0, 1157(x8) x8:1c00b400 PA:1c00b885 +75798742ns 1373510 1c002164 01700633 add x12, x0, x23 x12=00000000 x23:00000000 +75798762ns 1373511 1c002166 016005b3 add x11, x0, x22 x11=1c002754 x22:1c002754 +75798782ns 1373512 1c002168 ff09f513 andi x10, x19, -16 x10=1c00b3f0 x19:1c00b3f4 +75798801ns 1373513 1c00216c c95fe0ef jal x1, -4972 x1=1c002170 +75798841ns 1373515 1c000e00 300022f3 csrrs x5, x0, 0x300 x5=00001800 +75798920ns 1373519 1c000e04 ff72f293 andi x5, x5, -9 x5=00001800 x5:00001800 +75798940ns 1373520 1c000e08 18800313 addi x6, x0, 392 x6=00000188 +75798960ns 1373521 1c000e0c 00431313 slli x6, x6, 0x4 x6=00001880 x6:00000188 +75798980ns 1373522 1c000e0e 0062e2b3 or x5, x5, x6 x5=00001880 x5:00001800 x6:00001880 +75798999ns 1373523 1c000e12 ffc50513 addi x10, x10, -4 x10=1c00b3ec x10:1c00b3f0 +75799019ns 1373524 1c000e14 00552023 sw x5, 0(x10) x5:00001880 x10:1c00b3ec PA:1c00b3ec +75799039ns 1373525 1c000e18 fa850513 addi x10, x10, -88 x10=1c00b394 x10:1c00b3ec +75799059ns 1373526 1c000e1c 00c52023 sw x12, 0(x10) x12:00000000 x10:1c00b394 PA:1c00b394 +75799079ns 1373527 1c000e1e fe850513 addi x10, x10, -24 x10=1c00b37c x10:1c00b394 +75799098ns 1373528 1c000e20 00052023 sw x0, 0(x10) x10:1c00b37c PA:1c00b37c +75799118ns 1373529 1c000e24 00600293 addi x5, x0, 6 x5=00000006 +75799138ns 1373530 1c000e26 00028763 beq x5, x0, 14 x5:00000006 +75799158ns 1373531 1c000e2a ffc50513 addi x10, x10, -4 x10=1c00b378 x10:1c00b37c +75799177ns 1373532 1c000e2c 00052023 sw x0, 0(x10) x10:1c00b378 PA:1c00b378 +75799197ns 1373533 1c000e30 fff28293 addi x5, x5, -1 x5=00000005 x5:00000006 +75799217ns 1373534 1c000e32 ff5ff06f jal x0, -12 +75799276ns 1373537 1c000e26 00028763 beq x5, x0, 14 x5:00000005 +75799296ns 1373538 1c000e2a ffc50513 addi x10, x10, -4 x10=1c00b374 x10:1c00b378 +75799316ns 1373539 1c000e2c 00052023 sw x0, 0(x10) x10:1c00b374 PA:1c00b374 +75799336ns 1373540 1c000e30 fff28293 addi x5, x5, -1 x5=00000004 x5:00000005 +75799356ns 1373541 1c000e32 ff5ff06f jal x0, -12 +75799415ns 1373544 1c000e26 00028763 beq x5, x0, 14 x5:00000004 +75799435ns 1373545 1c000e2a ffc50513 addi x10, x10, -4 x10=1c00b370 x10:1c00b374 +75799455ns 1373546 1c000e2c 00052023 sw x0, 0(x10) x10:1c00b370 PA:1c00b370 +75799474ns 1373547 1c000e30 fff28293 addi x5, x5, -1 x5=00000003 x5:00000004 +75799494ns 1373548 1c000e32 ff5ff06f jal x0, -12 +75799554ns 1373551 1c000e26 00028763 beq x5, x0, 14 x5:00000003 +75799573ns 1373552 1c000e2a ffc50513 addi x10, x10, -4 x10=1c00b36c x10:1c00b370 +75799593ns 1373553 1c000e2c 00052023 sw x0, 0(x10) x10:1c00b36c PA:1c00b36c +75799613ns 1373554 1c000e30 fff28293 addi x5, x5, -1 x5=00000002 x5:00000003 +75799633ns 1373555 1c000e32 ff5ff06f jal x0, -12 +75799692ns 1373558 1c000e26 00028763 beq x5, x0, 14 x5:00000002 +75799712ns 1373559 1c000e2a ffc50513 addi x10, x10, -4 x10=1c00b368 x10:1c00b36c +75799732ns 1373560 1c000e2c 00052023 sw x0, 0(x10) x10:1c00b368 PA:1c00b368 +75799751ns 1373561 1c000e30 fff28293 addi x5, x5, -1 x5=00000001 x5:00000002 +75799771ns 1373562 1c000e32 ff5ff06f jal x0, -12 +75799831ns 1373565 1c000e26 00028763 beq x5, x0, 14 x5:00000001 +75799850ns 1373566 1c000e2a ffc50513 addi x10, x10, -4 x10=1c00b364 x10:1c00b368 +75799870ns 1373567 1c000e2c 00052023 sw x0, 0(x10) x10:1c00b364 PA:1c00b364 +75799890ns 1373568 1c000e30 fff28293 addi x5, x5, -1 x5=00000000 x5:00000001 +75799910ns 1373569 1c000e32 ff5ff06f jal x0, -12 +75799969ns 1373572 1c000e26 00028763 beq x5, x0, 14 x5:00000000 +75800029ns 1373575 1c000e34 ffc50513 addi x10, x10, -4 x10=1c00b360 x10:1c00b364 +75800048ns 1373576 1c000e36 00b52023 sw x11, 0(x10) x11:1c002754 x10:1c00b360 PA:1c00b360 +75800068ns 1373577 1c000e38 00008067 jalr x0, x1, 0 x1:1c002170 +75800108ns 1373579 1c002170 00a42023 sw x10, 0(x8) x10:1c00b360 x8:1c00b400 PA:1c00b400 +75800128ns 1373580 1c002172 000a8463 beq x21, x0, 8 x21:1c00917c +75800147ns 1373581 1c002176 008aa023 sw x8, 0(x21) x8:1c00b400 x21:1c00917c PA:1c00917c +75800167ns 1373582 1c00217a e93ff0ef jal x1, -366 x1=1c00217c +75800207ns 1373584 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +75800286ns 1373588 1c002010 d841a783 lw x15, -636(x3) x15=00000000 x3:1c0093dc PA:1c009160 +75800325ns 1373590 1c002014 00078863 beq x15, x0, 16 x15:00000000 +75800385ns 1373593 1c002024 00008067 jalr x0, x1, 0 x1:1c00217c +75800424ns 1373595 1c00217c d6018793 addi x15, x3, -672 x15=1c00913c x3:1c0093dc +75800444ns 1373596 1c002180 0007a703 lw x14, 0(x15) x14=00000002 x15:1c00913c PA:1c00913c +75800464ns 1373597 1c002182 1c0094b7 lui x9, 0x1c009000 x9=1c009000 +75800484ns 1373598 1c002186 00170713 addi x14, x14, 1 x14=00000003 x14:00000002 +75800504ns 1373599 1c002188 00e7a023 sw x14, 0(x15) x14:00000003 x15:1c00913c PA:1c00913c +75800523ns 1373600 1c00218a d5418713 addi x14, x3, -684 x14=1c009130 x3:1c0093dc +75800543ns 1373601 1c00218e 00072703 lw x14, 0(x14) x14=1c009db8 x14:1c009130 PA:1c009130 +75800563ns 1373602 1c002190 d5418913 addi x18, x3, -684 x18=1c009130 x3:1c0093dc +75800583ns 1373603 1c002194 c8848993 addi x19, x9, -888 x19=1c008c88 x9:1c009000 +75800603ns 1373604 1c002198 0a071d63 bne x14, x0, 186 x14:1c009db8 +75800682ns 1373608 1c002252 d841a783 lw x15, -636(x3) x15=00000000 x3:1c0093dc PA:1c009160 +75800721ns 1373610 1c002256 f8079fe3 bne x15, x0, -98 x15:00000000 +75800741ns 1373611 1c002258 00092783 lw x15, 0(x18) x15=1c009db8 x18:1c009130 PA:1c009130 +75800761ns 1373612 1c00225c 02c42703 lw x14, 44(x8) x14=00000004 x8:1c00b400 PA:1c00b42c +75800781ns 1373613 1c00225e 02c7a783 lw x15, 44(x15) x15=00000001 x15:1c009db8 PA:1c009de4 +75800820ns 1373615 1c002260 f8f76ae3 bltu x14, x15, -108 x14:00000004 x15:00000001 +75800840ns 1373616 1c002264 00892023 sw x8, 0(x18) x8:1c00b400 x18:1c009130 PA:1c009130 +75800860ns 1373617 1c002268 f8dff06f jal x0, -116 +75800899ns 1373619 1c0021f4 d6c18713 addi x14, x3, -660 x14=1c009148 x3:1c0093dc +75800919ns 1373620 1c0021f8 00072783 lw x15, 0(x14) x15=00000002 x14:1c009148 PA:1c009148 +75800939ns 1373621 1c0021fa 02c42503 lw x10, 44(x8) x10=00000004 x8:1c00b400 PA:1c00b42c +75800959ns 1373622 1c0021fc 014005b3 add x11, x0, x20 x11=1c00b404 x20:1c00b404 +75800979ns 1373623 1c0021fe 00178793 addi x15, x15, 1 x15=00000003 x15:00000002 +75800998ns 1373624 1c002200 00f72023 sw x15, 0(x14) x15:00000003 x14:1c009148 PA:1c009148 +75801018ns 1373625 1c002202 d7018713 addi x14, x3, -656 x14=1c00914c x3:1c0093dc +75801038ns 1373626 1c002206 00072683 lw x13, 0(x14) x13=00000003 x14:1c00914c PA:1c00914c +75801058ns 1373627 1c002208 04f42423 sw x15, 72(x8) x15:00000003 x8:1c00b400 PA:1c00b448 +75801078ns 1373628 1c00220a 00100793 addi x15, x0, 1 x15=00000001 +75801097ns 1373629 1c00220c 00a797b3 sll x15, x15, x10 x15=00000010 x15:00000001 x10:00000004 +75801117ns 1373630 1c002210 00d7e7b3 or x15, x15, x13 x15=00000013 x15:00000010 x13:00000003 +75801137ns 1373631 1c002212 00f72023 sw x15, 0(x14) x15:00000013 x14:1c00914c PA:1c00914c +75801157ns 1373632 1c002214 01400793 addi x15, x0, 20 x15=00000014 +75801176ns 1373633 1c002216 02f50533 mul x10, x10, x15 x10=00000050 x10:00000004 x15:00000014 +75801196ns 1373634 1c00221a 01350533 add x10, x10, x19 x10=1c008cd8 x10:00000050 x19:1c008c88 +75801216ns 1373635 1c00221c cc5fe0ef jal x1, -4924 x1=1c002220 +75801256ns 1373637 1c000ee0 00452783 lw x15, 4(x10) x15=1c008ce0 x10:1c008cd8 PA:1c008cdc +75801295ns 1373639 1c000ee2 0087a703 lw x14, 8(x15) x14=1c008ce0 x15:1c008ce0 PA:1c008ce8 +75801315ns 1373640 1c000ee4 00f5a223 sw x15, 4(x11) x15:1c008ce0 x11:1c00b404 PA:1c00b408 +75801335ns 1373641 1c000ee6 00e5a423 sw x14, 8(x11) x14:1c008ce0 x11:1c00b404 PA:1c00b40c +75801355ns 1373642 1c000ee8 0087a703 lw x14, 8(x15) x14=1c008ce0 x15:1c008ce0 PA:1c008ce8 +75801394ns 1373644 1c000eea 00b72223 sw x11, 4(x14) x11:1c00b404 x14:1c008ce0 PA:1c008ce4 +75801414ns 1373645 1c000eec 00b7a423 sw x11, 8(x15) x11:1c00b404 x15:1c008ce0 PA:1c008ce8 +75801434ns 1373646 1c000eee 00052783 lw x15, 0(x10) x15=00000000 x10:1c008cd8 PA:1c008cd8 +75801454ns 1373647 1c000ef0 00a5a823 sw x10, 16(x11) x10:1c008cd8 x11:1c00b404 PA:1c00b414 +75801473ns 1373648 1c000ef2 00178793 addi x15, x15, 1 x15=00000001 x15:00000000 +75801493ns 1373649 1c000ef4 00f52023 sw x15, 0(x10) x15:00000001 x10:1c008cd8 PA:1c008cd8 +75801513ns 1373650 1c000ef6 00008067 jalr x0, x1, 0 x1:1c002220 +75801553ns 1373652 1c002220 e07ff0ef jal x1, -506 x1=1c002222 +75801612ns 1373655 1c002026 d841a783 lw x15, -636(x3) x15=00000000 x3:1c0093dc PA:1c009160 +75801651ns 1373657 1c00202a 00078f63 beq x15, x0, 30 x15:00000000 +75801711ns 1373660 1c002048 00008067 jalr x0, x1, 0 x1:1c002222 +75801770ns 1373663 1c002222 d841a783 lw x15, -636(x3) x15=00000000 x3:1c0093dc PA:1c009160 +75801790ns 1373664 1c002226 00100513 addi x10, x0, 1 x10=00000001 +75801810ns 1373665 1c002228 00078963 beq x15, x0, 18 x15:00000000 +75801869ns 1373668 1c00223a 02c12083 lw x1, 44(x2) x1=1c00260c x2:1c019940 PA:1c01996c +75801889ns 1373669 1c00223c 02812403 lw x8, 40(x2) x8=00000001 x2:1c019940 PA:1c019968 +75801909ns 1373670 1c00223e 02412483 lw x9, 36(x2) x9=xxxxxxxx x2:1c019940 PA:1c019964 +75801929ns 1373671 1c002240 02012903 lw x18, 32(x2) x18=xxxxxxxx x2:1c019940 PA:1c019960 +75801948ns 1373672 1c002242 01c12983 lw x19, 28(x2) x19=xxxxxxxx x2:1c019940 PA:1c01995c +75801968ns 1373673 1c002244 01812a03 lw x20, 24(x2) x20=xxxxxxxx x2:1c019940 PA:1c019958 +75801988ns 1373674 1c002246 01412a83 lw x21, 20(x2) x21=xxxxxxxx x2:1c019940 PA:1c019954 +75802008ns 1373675 1c002248 01012b03 lw x22, 16(x2) x22=xxxxxxxx x2:1c019940 PA:1c019950 +75802028ns 1373676 1c00224a 00c12b83 lw x23, 12(x2) x23=xxxxxxxx x2:1c019940 PA:1c01994c +75802047ns 1373677 1c00224c 00812c03 lw x24, 8(x2) x24=xxxxxxxx x2:1c019940 PA:1c019948 +75802067ns 1373678 1c00224e 03010113 addi x2, x2, 48 x2=1c019970 x2:1c019940 +75802087ns 1373679 1c002250 00008067 jalr x0, x1, 0 x1:1c00260c +75802127ns 1373681 1c00260c fc0500e3 beq x10, x0, -64 x10:00000001 +75802146ns 1373682 1c00260e 00c12083 lw x1, 12(x2) x1=1c002296 x2:1c019970 PA:1c01997c +75802166ns 1373683 1c002610 01010113 addi x2, x2, 16 x2=1c019980 x2:1c019970 +75802206ns 1373685 1c002612 00008067 jalr x0, x1, 0 x1:1c002296 +75802265ns 1373688 1c002296 02851863 bne x10, x8, 48 x10:00000001 x8:00000001 +75802285ns 1373689 1c00229a 30047073 csrrci x0, 0x00000008, 0x300 +75802364ns 1373693 1c00229e d541a783 lw x15, -684(x3) x15=1c00b400 x3:1c0093dc PA:1c009130 +75802384ns 1373694 1c0022a2 1c009737 lui x14, 0x1c009000 x14=1c009000 +75802404ns 1373695 1c0022a6 00812403 lw x8, 8(x2) x8=xxxxxxxx x2:1c019980 PA:1c019988 +75802423ns 1373696 1c0022a8 05878793 addi x15, x15, 88 x15=1c00b458 x15:1c00b400 +75802443ns 1373697 1c0022ac c4f72223 sw x15, -956(x14) x15:1c00b458 x14:1c009000 PA:1c008c44 +75802463ns 1373698 1c0022b0 fff00713 addi x14, x0, -1 x14=ffffffff +75802483ns 1373699 1c0022b2 d6e1ac23 sw x14, -648(x3) x14:ffffffff x3:1c0093dc PA:1c009154 +75802503ns 1373700 1c0022b6 d8a1a223 sw x10, -636(x3) x10:00000001 x3:1c0093dc PA:1c009160 +75802522ns 1373701 1c0022ba 00c12083 lw x1, 12(x2) x1=1c0037b0 x2:1c019980 PA:1c01998c +75802542ns 1373702 1c0022bc d801a423 sw x0, -632(x3) x3:1c0093dc PA:1c009164 +75802562ns 1373703 1c0022c0 01010113 addi x2, x2, 16 x2=1c019990 x2:1c019980 +75802582ns 1373704 1c0022c2 6580006f jal x0, 1624 +75802621ns 1373706 1c00291a fe010113 addi x2, x2, -32 x2=1c019970 x2:1c019990 +75802641ns 1373707 1c00291c 00112e23 sw x1, 28(x2) x1:1c0037b0 x2:1c019970 PA:1c01998c +75802661ns 1373708 1c00291e 00012623 sw x0, 12(x2) x2:1c019970 PA:1c01997c +75802681ns 1373709 1c002920 305027f3 csrrs x15, x0, 0x305 x15=1c000801 +75802700ns 1373710 1c002924 00f12623 sw x15, 12(x2) x15:1c000801 x2:1c019970 PA:1c01997c +75802720ns 1373711 1c002926 1c01a7b7 lui x15, 0x1c01a000 x15=1c01a000 +75802740ns 1373712 1c00292a 9b078793 addi x15, x15, -1616 x15=1c0199b0 x15:1c01a000 +75802760ns 1373713 1c00292e 00f7f793 andi x15, x15, 15 x15=00000000 x15:1c0199b0 +75802780ns 1373714 1c002930 02078163 beq x15, x0, 34 x15:00000000 +75802839ns 1373717 1c002952 19c000ef jal x1, 412 x1=1c002954 +75802879ns 1373719 1c002aee ff010113 addi x2, x2, -16 x2=1c019960 x2:1c019970 +75802898ns 1373720 1c002af0 02000513 addi x10, x0, 32 x10=00000020 +75802918ns 1373721 1c002af4 00112623 sw x1, 12(x2) x1:1c002954 x2:1c019960 PA:1c01996c +75802938ns 1373722 1c002af6 019000ef jal x1, 2072 x1=1c002afa +75802997ns 1373725 1c00330e 1a10b7b7 lui x15, 0x1a10b000 x15=1a10b000 +75803017ns 1373726 1c003312 02078693 addi x13, x15, 32 x13=1a10b020 x15:1a10b000 +75803037ns 1373727 1c003316 00100713 addi x14, x0, 1 x14=00000001 +75803057ns 1373728 1c003318 00e6a023 sw x14, 0(x13) x14:00000001 x13:1a10b020 PA:1a10b020 +75803077ns 1373729 1c00331a 01078713 addi x14, x15, 16 x14=1a10b010 x15:1a10b000 +75803136ns 1373732 1c00331e 00a72023 sw x10, 0(x14) x10:00000020 x14:1a10b010 PA:1a10b010 +75803156ns 1373733 1c003320 09700713 addi x14, x0, 151 x14=00000097 +75803215ns 1373736 1c003324 00e7a023 sw x14, 0(x15) x14:00000097 x15:1a10b000 PA:1a10b000 +75803235ns 1373737 1c003326 00000513 addi x10, x0, 0 x10=00000000 +75803294ns 1373740 1c003328 00008067 jalr x0, x1, 0 x1:1c002afa +75803314ns 1373741 1c002afa 00c12083 lw x1, 12(x2) x1=1c002954 x2:1c019960 PA:1c01996c +75803334ns 1373742 1c002afc 40000513 addi x10, x0, 1024 x10=00000400 +75803354ns 1373743 1c002b00 01010113 addi x2, x2, 16 x2=1c019970 x2:1c019960 +75803373ns 1373744 1c002b02 0290006f jal x0, 2088 +75803433ns 1373747 1c00332a 1a10a7b7 lui x15, 0x1a10a000 x15=1a10a000 +75803453ns 1373748 1c00332e 80478793 addi x15, x15, -2044 x15=1a109804 x15:1a10a000 +75803472ns 1373749 1c003332 00a7a023 sw x10, 0(x15) x10:00000400 x15:1a109804 PA:1a109804 +75803492ns 1373750 1c003334 00008067 jalr x0, x1, 0 x1:1c002954 +75803571ns 1373754 1c002954 000017b7 lui x15, 0x1000 x15=00001000 +75803591ns 1373755 1c002956 80078793 addi x15, x15, -2048 x15=00000800 x15:00001000 +75803611ns 1373756 1c00295a 3047a073 csrrs x0, x15, 0x304 x15:00000800 +75803631ns 1373757 1c00295e ba2fe0ef jal x1, -7262 x1=1c002962 +75803670ns 1373759 1c000d00 d541a103 lw x2, -684(x3) x2=1c00b400 x3:1c0093dc PA:1c009130 +75803710ns 1373761 1c000d04 00012103 lw x2, 0(x2) x2=1c00b360 x2:1c00b400 PA:1c00b400 +75803749ns 1373763 1c000d06 00012083 lw x1, 0(x2) x1=1c002754 x2:1c00b360 PA:1c00b360 +75803769ns 1373764 1c000d08 00412283 lw x5, 4(x2) x5=00000000 x2:1c00b360 PA:1c00b364 +75803789ns 1373765 1c000d0a 00812303 lw x6, 8(x2) x6=00000000 x2:1c00b360 PA:1c00b368 +75803809ns 1373766 1c000d0c 00c12383 lw x7, 12(x2) x7=00000000 x2:1c00b360 PA:1c00b36c +75803829ns 1373767 1c000d0e 01012e03 lw x28, 16(x2) x28=00000000 x2:1c00b360 PA:1c00b370 +75803848ns 1373768 1c000d10 01412e83 lw x29, 20(x2) x29=00000000 x2:1c00b360 PA:1c00b374 +75803868ns 1373769 1c000d12 01812f03 lw x30, 24(x2) x30=00000000 x2:1c00b360 PA:1c00b378 +75803888ns 1373770 1c000d14 7c029073 csrrw x0, x5, 0x7c0 x5:00000000 +75803908ns 1373771 1c000d18 7c131073 csrrw x0, x6, 0x7c1 x6:00000000 +75803928ns 1373772 1c000d1c 7c239073 csrrw x0, x7, 0x7c2 x7:00000000 +75803947ns 1373773 1c000d20 7c4e1073 csrrw x0, x28, 0x7c4 x28:00000000 +75803967ns 1373774 1c000d24 7c5e9073 csrrw x0, x29, 0x7c5 x29:00000000 +75803987ns 1373775 1c000d28 7c6f1073 csrrw x0, x30, 0x7c6 x30:00000000 +75804007ns 1373776 1c000d2c 01810113 addi x2, x2, 24 x2=1c00b378 x2:1c00b360 +75804027ns 1373777 1c000d2e 00c12303 lw x6, 12(x2) x6=a5a5a5a5 x2:1c00b378 PA:1c00b384 +75804046ns 1373778 1c000d30 01012383 lw x7, 16(x2) x7=a5a5a5a5 x2:1c00b378 PA:1c00b388 +75804066ns 1373779 1c000d32 01412403 lw x8, 20(x2) x8=a5a5a5a5 x2:1c00b378 PA:1c00b38c +75804086ns 1373780 1c000d34 01812483 lw x9, 24(x2) x9=a5a5a5a5 x2:1c00b378 PA:1c00b390 +75804106ns 1373781 1c000d36 01c12503 lw x10, 28(x2) x10=00000000 x2:1c00b378 PA:1c00b394 +75804125ns 1373782 1c000d38 02012583 lw x11, 32(x2) x11=a5a5a5a5 x2:1c00b378 PA:1c00b398 +75804145ns 1373783 1c000d3a 02412603 lw x12, 36(x2) x12=a5a5a5a5 x2:1c00b378 PA:1c00b39c +75804165ns 1373784 1c000d3c 02812683 lw x13, 40(x2) x13=a5a5a5a5 x2:1c00b378 PA:1c00b3a0 +75804185ns 1373785 1c000d3e 02c12703 lw x14, 44(x2) x14=a5a5a5a5 x2:1c00b378 PA:1c00b3a4 +75804205ns 1373786 1c000d40 03012783 lw x15, 48(x2) x15=a5a5a5a5 x2:1c00b378 PA:1c00b3a8 +75804224ns 1373787 1c000d42 03412803 lw x16, 52(x2) x16=a5a5a5a5 x2:1c00b378 PA:1c00b3ac +75804244ns 1373788 1c000d44 03812883 lw x17, 56(x2) x17=a5a5a5a5 x2:1c00b378 PA:1c00b3b0 +75804264ns 1373789 1c000d46 03c12903 lw x18, 60(x2) x18=a5a5a5a5 x2:1c00b378 PA:1c00b3b4 +75804284ns 1373790 1c000d48 04012983 lw x19, 64(x2) x19=a5a5a5a5 x2:1c00b378 PA:1c00b3b8 +75804304ns 1373791 1c000d4a 04412a03 lw x20, 68(x2) x20=a5a5a5a5 x2:1c00b378 PA:1c00b3bc +75804323ns 1373792 1c000d4c 04812a83 lw x21, 72(x2) x21=a5a5a5a5 x2:1c00b378 PA:1c00b3c0 +75804343ns 1373793 1c000d4e 04c12b03 lw x22, 76(x2) x22=a5a5a5a5 x2:1c00b378 PA:1c00b3c4 +75804363ns 1373794 1c000d50 05012b83 lw x23, 80(x2) x23=a5a5a5a5 x2:1c00b378 PA:1c00b3c8 +75804383ns 1373795 1c000d52 05412c03 lw x24, 84(x2) x24=a5a5a5a5 x2:1c00b378 PA:1c00b3cc +75804403ns 1373796 1c000d54 05812c83 lw x25, 88(x2) x25=a5a5a5a5 x2:1c00b378 PA:1c00b3d0 +75804422ns 1373797 1c000d56 05c12d03 lw x26, 92(x2) x26=a5a5a5a5 x2:1c00b378 PA:1c00b3d4 +75804442ns 1373798 1c000d58 06012d83 lw x27, 96(x2) x27=a5a5a5a5 x2:1c00b378 PA:1c00b3d8 +75804462ns 1373799 1c000d5a 06412e03 lw x28, 100(x2) x28=a5a5a5a5 x2:1c00b378 PA:1c00b3dc +75804482ns 1373800 1c000d5c 06812e83 lw x29, 104(x2) x29=a5a5a5a5 x2:1c00b378 PA:1c00b3e0 +75804502ns 1373801 1c000d5e 06c12f03 lw x30, 108(x2) x30=a5a5a5a5 x2:1c00b378 PA:1c00b3e4 +75804521ns 1373802 1c000d60 07012f83 lw x31, 112(x2) x31=a5a5a5a5 x2:1c00b378 PA:1c00b3e8 +75804541ns 1373803 1c000d62 07412283 lw x5, 116(x2) x5=00001880 x2:1c00b378 PA:1c00b3ec +75804581ns 1373805 1c000d64 00828293 addi x5, x5, 8 x5=00001888 x5:00001880 +75804601ns 1373806 1c000d66 30029073 csrrw x0, x5, 0x300 x5:00001888 +75804680ns 1373810 1c000d6a 00812283 lw x5, 8(x2) x5=a5a5a5a5 x2:1c00b378 PA:1c00b380 +75804699ns 1373811 1c000d6c 07810113 addi x2, x2, 120 x2=1c00b3f0 x2:1c00b378 +75804719ns 1373812 1c000d70 00008067 jalr x0, x1, 0 x1:1c002754 +75804759ns 1373814 1c002754 fb010113 addi x2, x2, -80 x2=1c00b3a0 x2:1c00b3f0 +75804779ns 1373815 1c002756 05212023 sw x18, 64(x2) x18:a5a5a5a5 x2:1c00b3a0 PA:1c00b3e0 +75804798ns 1373816 1c002758 1c008937 lui x18, 0x1c008000 x18=1c008000 +75804818ns 1373817 1c00275c 03312e23 sw x19, 60(x2) x19:a5a5a5a5 x2:1c00b3a0 PA:1c00b3dc +75804838ns 1373818 1c00275e 03512a23 sw x21, 52(x2) x21:a5a5a5a5 x2:1c00b3a0 PA:1c00b3d4 +75804858ns 1373819 1c002760 04112623 sw x1, 76(x2) x1:1c002754 x2:1c00b3a0 PA:1c00b3ec +75804878ns 1373820 1c002762 04812423 sw x8, 72(x2) x8:a5a5a5a5 x2:1c00b3a0 PA:1c00b3e8 +75804897ns 1373821 1c002764 04912223 sw x9, 68(x2) x9:a5a5a5a5 x2:1c00b3a0 PA:1c00b3e4 +75804917ns 1373822 1c002766 03412c23 sw x20, 56(x2) x20:a5a5a5a5 x2:1c00b3a0 PA:1c00b3d8 +75804937ns 1373823 1c002768 03612823 sw x22, 48(x2) x22:a5a5a5a5 x2:1c00b3a0 PA:1c00b3d0 +75804957ns 1373824 1c00276a 03712623 sw x23, 44(x2) x23:a5a5a5a5 x2:1c00b3a0 PA:1c00b3cc +75804977ns 1373825 1c00276c 72890913 addi x18, x18, 1832 x18=1c008728 x18:1c008000 +75804996ns 1373826 1c002770 d901a783 lw x15, -624(x3) x15=1c008d50 x3:1c0093dc PA:1c00916c +75805016ns 1373827 1c002774 d9018b93 addi x23, x3, -624 x23=1c00916c x3:1c0093dc +75805036ns 1373828 1c002778 00100413 addi x8, x0, 1 x8=00000001 +75805056ns 1373829 1c00277a 0007a483 lw x9, 0(x15) x9=00000000 x15:1c008d50 PA:1c008d50 +75805095ns 1373831 1c00277c 00048463 beq x9, x0, 8 x9:00000000 +75805155ns 1373834 1c002784 a92ff0ef jal x1, -3438 x1=1c002788 +75805214ns 1373837 1c001a16 d6818793 addi x15, x3, -664 x15=1c009144 x3:1c0093dc +75805234ns 1373838 1c001a1a 0007a703 lw x14, 0(x15) x14=00000000 x15:1c009144 PA:1c009144 +75805273ns 1373840 1c001a1c 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +75805293ns 1373841 1c001a1e 00e7a023 sw x14, 0(x15) x14:00000001 x15:1c009144 PA:1c009144 +75805313ns 1373842 1c001a20 00008067 jalr x0, x1, 0 x1:1c002788 +75805353ns 1373844 1c002788 01010513 addi x10, x2, 16 x10=1c00b3b0 x2:1c00b3a0 +75805372ns 1373845 1c00278a f03ff0ef jal x1, -254 x1=1c00278c +75805412ns 1373847 1c00268c fd010113 addi x2, x2, -48 x2=1c00b370 x2:1c00b3a0 +75805432ns 1373848 1c00268e 02912223 sw x9, 36(x2) x9:00000000 x2:1c00b370 PA:1c00b394 +75805452ns 1373849 1c002690 03212023 sw x18, 32(x2) x18:1c008728 x2:1c00b370 PA:1c00b390 +75805471ns 1373850 1c002692 01312e23 sw x19, 28(x2) x19:a5a5a5a5 x2:1c00b370 PA:1c00b38c +75805491ns 1373851 1c002694 02112623 sw x1, 44(x2) x1:1c00278c x2:1c00b370 PA:1c00b39c +75805511ns 1373852 1c002696 02812423 sw x8, 40(x2) x8:00000001 x2:1c00b370 PA:1c00b398 +75805531ns 1373853 1c002698 01412c23 sw x20, 24(x2) x20:a5a5a5a5 x2:1c00b370 PA:1c00b388 +75805551ns 1373854 1c00269a 01512a23 sw x21, 20(x2) x21:a5a5a5a5 x2:1c00b370 PA:1c00b384 +75805570ns 1373855 1c00269c 00a009b3 add x19, x0, x10 x19=1c00b3b0 x10:1c00b3b0 +75805590ns 1373856 1c00269e b84ff0ef jal x1, -3196 x1=1c0026a2 +75805649ns 1373859 1c001a22 d881a503 lw x10, -632(x3) x10=00000000 x3:1c0093dc PA:1c009164 +75805669ns 1373860 1c001a26 00008067 jalr x0, x1, 0 x1:1c0026a2 +75805729ns 1373863 1c0026a2 d981a783 lw x15, -616(x3) x15=00000000 x3:1c0093dc PA:1c009174 +75805748ns 1373864 1c0026a6 00a004b3 add x9, x0, x10 x9=00000000 x10:00000000 +75805768ns 1373865 1c0026a8 d9818913 addi x18, x3, -616 x18=1c009174 x3:1c0093dc +75805788ns 1373866 1c0026ac 0af57163 bgeu x10, x15, 162 x10:00000000 x15:00000000 +75805867ns 1373870 1c00274e 0009a023 sw x0, 0(x19) x19:1c00b3b0 PA:1c00b3b0 +75805887ns 1373871 1c002752 f7dff06f jal x0, -132 +75805927ns 1373873 1c0026ce 02c12083 lw x1, 44(x2) x1=1c00278c x2:1c00b370 PA:1c00b39c +75805946ns 1373874 1c0026d0 02812403 lw x8, 40(x2) x8=00000001 x2:1c00b370 PA:1c00b398 +75805966ns 1373875 1c0026d2 00992023 sw x9, 0(x18) x9:00000000 x18:1c009174 PA:1c009174 +75805986ns 1373876 1c0026d6 01c12983 lw x19, 28(x2) x19=a5a5a5a5 x2:1c00b370 PA:1c00b38c +75806006ns 1373877 1c0026d8 02012903 lw x18, 32(x2) x18=1c008728 x2:1c00b370 PA:1c00b390 +75806026ns 1373878 1c0026da 01812a03 lw x20, 24(x2) x20=a5a5a5a5 x2:1c00b370 PA:1c00b388 +75806045ns 1373879 1c0026dc 01412a83 lw x21, 20(x2) x21=a5a5a5a5 x2:1c00b370 PA:1c00b384 +75806065ns 1373880 1c0026de 00900533 add x10, x0, x9 x10=00000000 x9:00000000 +75806085ns 1373881 1c0026e0 02412483 lw x9, 36(x2) x9=00000000 x2:1c00b370 PA:1c00b394 +75806105ns 1373882 1c0026e2 03010113 addi x2, x2, 48 x2=1c00b3a0 x2:1c00b370 +75806124ns 1373883 1c0026e4 00008067 jalr x0, x1, 0 x1:1c00278c +75806164ns 1373885 1c00278c 01012783 lw x15, 16(x2) x15=00000000 x2:1c00b3a0 PA:1c00b3b0 +75806184ns 1373886 1c00278e 00a00b33 add x22, x0, x10 x22=00000000 x10:00000000 +75806204ns 1373887 1c002790 d9c18a13 addi x20, x3, -612 x20=1c009178 x3:1c0093dc +75806223ns 1373888 1c002794 0c079363 bne x15, x0, 198 x15:00000000 +75806243ns 1373889 1c002796 0a041063 bne x8, x0, 160 x8:00000001 +75806322ns 1373893 1c002836 d941a783 lw x15, -620(x3) x15=1c008d64 x3:1c0093dc PA:1c009170 +75806362ns 1373895 1c00283a 0007a403 lw x8, 0(x15) x8=00000000 x15:1c008d64 PA:1c008d64 +75806402ns 1373897 1c00283c 00143413 sltiu x8, x8, 1 x8=00000001 x8:00000000 +75806421ns 1373898 1c002840 000a2503 lw x10, 0(x20) x10=1c00ad20 x20:1c009178 PA:1c009178 +75806441ns 1373899 1c002844 00800633 add x12, x0, x8 x12=00000001 x8:00000001 +75806461ns 1373900 1c002846 416485b3 sub x11, x9, x22 x11=00000000 x9:00000000 x22:00000000 +75806481ns 1373901 1c00284a 8a6ff0ef jal x1, -3930 x1=1c00284e +75806520ns 1373903 1c0018f0 ff010113 addi x2, x2, -16 x2=1c00b390 x2:1c00b3a0 +75806540ns 1373904 1c0018f2 00812423 sw x8, 8(x2) x8:00000001 x2:1c00b390 PA:1c00b398 +75806560ns 1373905 1c0018f4 00912223 sw x9, 4(x2) x9:00000000 x2:1c00b390 PA:1c00b394 +75806580ns 1373906 1c0018f6 01212023 sw x18, 0(x2) x18:1c008728 x2:1c00b390 PA:1c00b390 +75806599ns 1373907 1c0018f8 00a00433 add x8, x0, x10 x8=1c00ad20 x10:1c00ad20 +75806619ns 1373908 1c0018fa 00112623 sw x1, 12(x2) x1:1c00284e x2:1c00b390 PA:1c00b39c +75806639ns 1373909 1c0018fc 00b004b3 add x9, x0, x11 x9=00000000 x11:00000000 +75806659ns 1373910 1c0018fe 00c00933 add x18, x0, x12 x18=00000001 x12:00000001 +75806679ns 1373911 1c001900 70c000ef jal x1, 1804 x1=1c001904 +75806718ns 1373913 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +75806797ns 1373917 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +75806837ns 1373919 1c002014 00078863 beq x15, x0, 16 x15:00000001 +75806857ns 1373920 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +75806877ns 1373921 1c00201a 0007a683 lw x13, 0(x15) x13=1c00b400 x15:1c009130 PA:1c009130 +75806896ns 1373922 1c00201c 0007a783 lw x15, 0(x15) x15=1c00b400 x15:1c009130 PA:1c009130 +75806916ns 1373923 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c00b400 PA:1c00b444 +75806956ns 1373925 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +75806976ns 1373926 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c00b400 PA:1c00b444 +75806995ns 1373927 1c002024 00008067 jalr x0, x1, 0 x1:1c001904 +75807035ns 1373929 1c001904 04444783 lbu x15, 68(x8) x15=000000ff x8:1c00ad20 PA:1c00ad64 +75807055ns 1373930 1c001908 fff00713 addi x14, x0, -1 x14=ffffffff +75807075ns 1373931 1c00190a 01879793 slli x15, x15, 0x18 x15=ff000000 x15:000000ff +75807094ns 1373932 1c00190c 4187d793 srai x15, x15, 0x418 x15=ffffffff x15:ff000000 +75807114ns 1373933 1c00190e 00e79463 bne x15, x14, 8 x15:ffffffff x14:ffffffff +75807134ns 1373934 1c001912 04040223 sb x0, 68(x8) x8:1c00ad20 PA:1c00ad64 +75807154ns 1373935 1c001916 04544783 lbu x15, 69(x8) x15=000000ff x8:1c00ad20 PA:1c00ad65 +75807173ns 1373936 1c00191a fff00713 addi x14, x0, -1 x14=ffffffff +75807193ns 1373937 1c00191c 01879793 slli x15, x15, 0x18 x15=ff000000 x15:000000ff +75807213ns 1373938 1c00191e 4187d793 srai x15, x15, 0x418 x15=ffffffff x15:ff000000 +75807233ns 1373939 1c001920 00e79463 bne x15, x14, 8 x15:ffffffff x14:ffffffff +75807253ns 1373940 1c001924 040402a3 sb x0, 69(x8) x8:1c00ad20 PA:1c00ad65 +75807272ns 1373941 1c001928 6fe000ef jal x1, 1790 x1=1c00192c +75807332ns 1373944 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +75807371ns 1373946 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +75807391ns 1373947 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +75807411ns 1373948 1c002030 0007a703 lw x14, 0(x15) x14=1c00b400 x15:1c009130 PA:1c009130 +75807451ns 1373950 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c00b400 PA:1c00b444 +75807490ns 1373952 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +75807510ns 1373953 1c002036 0007a683 lw x13, 0(x15) x13=1c00b400 x15:1c009130 PA:1c009130 +75807530ns 1373954 1c002038 0007a783 lw x15, 0(x15) x15=1c00b400 x15:1c009130 PA:1c009130 +75807550ns 1373955 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c00b400 PA:1c00b444 +75807589ns 1373957 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +75807609ns 1373958 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c00b400 PA:1c00b444 +75807629ns 1373959 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c00b400 PA:1c00b444 +75807668ns 1373961 1c002042 00079363 bne x15, x0, 6 x15:00000000 +75807688ns 1373962 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +75807767ns 1373966 1c002048 00008067 jalr x0, x1, 0 x1:1c00192c +75807807ns 1373968 1c00192c 03842783 lw x15, 56(x8) x15=00000000 x8:1c00ad20 PA:1c00ad58 +75807846ns 1373970 1c00192e 00079663 bne x15, x0, 12 x15:00000000 +75807866ns 1373971 1c001930 01200633 add x12, x0, x18 x12=00000001 x18:00000001 +75807886ns 1373972 1c001932 009005b3 add x11, x0, x9 x11=00000000 x9:00000000 +75807906ns 1373973 1c001934 02440513 addi x10, x8, 36 x10=1c00ad44 x8:1c00ad20 +75807926ns 1373974 1c001938 350000ef jal x1, 848 x1=1c00193a +75807965ns 1373976 1c001c88 ff010113 addi x2, x2, -16 x2=1c00b380 x2:1c00b390 +75807985ns 1373977 1c001c8a 00112623 sw x1, 12(x2) x1:1c00193a x2:1c00b380 PA:1c00b38c +75808005ns 1373978 1c001c8c 00812423 sw x8, 8(x2) x8:1c00ad20 x2:1c00b380 PA:1c00b388 +75808025ns 1373979 1c001c8e 00912223 sw x9, 4(x2) x9:00000000 x2:1c00b380 PA:1c00b384 +75808044ns 1373980 1c001c90 02051263 bne x10, x0, 36 x10:1c00ad44 +75808104ns 1373983 1c001cb4 00b00433 add x8, x0, x11 x8=00000000 x11:00000000 +75808123ns 1373984 1c001cb6 d541a583 lw x11, -684(x3) x11=1c00b400 x3:1c0093dc PA:1c009130 +75808143ns 1373985 1c001cba 00c004b3 add x9, x0, x12 x9=00000001 x12:00000001 +75808163ns 1373986 1c001cbc 01858593 addi x11, x11, 24 x11=1c00b418 x11:1c00b400 +75808183ns 1373987 1c001cbe a22ff0ef jal x1, -3550 x1=1c001cc2 +75808222ns 1373989 1c000ee0 00452783 lw x15, 4(x10) x15=1c00ad4c x10:1c00ad44 PA:1c00ad48 +75808262ns 1373991 1c000ee2 0087a703 lw x14, 8(x15) x14=1c00ad4c x15:1c00ad4c PA:1c00ad54 +75808282ns 1373992 1c000ee4 00f5a223 sw x15, 4(x11) x15:1c00ad4c x11:1c00b418 PA:1c00b41c +75808302ns 1373993 1c000ee6 00e5a423 sw x14, 8(x11) x14:1c00ad4c x11:1c00b418 PA:1c00b420 +75808321ns 1373994 1c000ee8 0087a703 lw x14, 8(x15) x14=1c00ad4c x15:1c00ad4c PA:1c00ad54 +75808361ns 1373996 1c000eea 00b72223 sw x11, 4(x14) x11:1c00b418 x14:1c00ad4c PA:1c00ad50 +75808381ns 1373997 1c000eec 00b7a423 sw x11, 8(x15) x11:1c00b418 x15:1c00ad4c PA:1c00ad54 +75808401ns 1373998 1c000eee 00052783 lw x15, 0(x10) x15=00000000 x10:1c00ad44 PA:1c00ad44 +75808420ns 1373999 1c000ef0 00a5a823 sw x10, 16(x11) x10:1c00ad44 x11:1c00b418 PA:1c00b428 +75808440ns 1374000 1c000ef2 00178793 addi x15, x15, 1 x15=00000001 x15:00000000 +75808460ns 1374001 1c000ef4 00f52023 sw x15, 0(x10) x15:00000001 x10:1c00ad44 PA:1c00ad44 +75808480ns 1374002 1c000ef6 00008067 jalr x0, x1, 0 x1:1c001cc2 +75808519ns 1374004 1c001cc2 00048263 beq x9, x0, 4 x9:00000001 +75808539ns 1374005 1c001cc4 fff00413 addi x8, x0, -1 x8=ffffffff +75808559ns 1374006 1c001cc6 00800533 add x10, x0, x8 x10=ffffffff x8:ffffffff +75808579ns 1374007 1c001cc8 00812403 lw x8, 8(x2) x8=1c00ad20 x2:1c00b380 PA:1c00b388 +75808598ns 1374008 1c001cca 00c12083 lw x1, 12(x2) x1=1c00193a x2:1c00b380 PA:1c00b38c +75808618ns 1374009 1c001ccc 009005b3 add x11, x0, x9 x11=00000001 x9:00000001 +75808638ns 1374010 1c001cce 00412483 lw x9, 4(x2) x9=00000000 x2:1c00b380 PA:1c00b384 +75808658ns 1374011 1c001cd0 01010113 addi x2, x2, 16 x2=1c00b390 x2:1c00b380 +75808678ns 1374012 1c001cd2 c79ff06f jal x0, -904 +75808717ns 1374014 1c00194a fe010113 addi x2, x2, -32 x2=1c00b370 x2:1c00b390 +75808737ns 1374015 1c00194c 00912a23 sw x9, 20(x2) x9:00000000 x2:1c00b370 PA:1c00b384 +75808757ns 1374016 1c00194e 01312623 sw x19, 12(x2) x19:a5a5a5a5 x2:1c00b370 PA:1c00b37c +75808777ns 1374017 1c001950 d881a983 lw x19, -632(x3) x19=00000000 x3:1c0093dc PA:1c009164 +75808796ns 1374018 1c001954 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +75808816ns 1374019 1c001958 0007a703 lw x14, 0(x15) x14=1c00b400 x15:1c009130 PA:1c009130 +75808836ns 1374020 1c00195a 00812c23 sw x8, 24(x2) x8:1c00ad20 x2:1c00b370 PA:1c00b388 +75808856ns 1374021 1c00195c 00a00433 add x8, x0, x10 x8=ffffffff x10:ffffffff +75808876ns 1374022 1c00195e 0007a503 lw x10, 0(x15) x10=1c00b400 x15:1c009130 PA:1c009130 +75808895ns 1374023 1c001960 01212823 sw x18, 16(x2) x18:00000001 x2:1c00b370 PA:1c00b380 +75808915ns 1374024 1c001962 00112e23 sw x1, 28(x2) x1:1c00193a x2:1c00b370 PA:1c00b38c +75808935ns 1374025 1c001964 480702a3 sb x0, 1157(x14) x14:1c00b400 PA:1c00b885 +75808955ns 1374026 1c001968 00450513 addi x10, x10, 4 x10=1c00b404 x10:1c00b400 +75808975ns 1374027 1c00196a 00b00933 add x18, x0, x11 x18=00000001 x11:00000001 +75808994ns 1374028 1c00196c dbaff0ef jal x1, -2630 x1=1c001970 +75809034ns 1374030 1c000f26 00452683 lw x13, 4(x10) x13=1c008ce0 x10:1c00b404 PA:1c00b408 +75809054ns 1374031 1c000f28 00852703 lw x14, 8(x10) x14=1c008ce0 x10:1c00b404 PA:1c00b40c +75809073ns 1374032 1c000f2a 01052783 lw x15, 16(x10) x15=1c008cd8 x10:1c00b404 PA:1c00b414 +75809093ns 1374033 1c000f2c 00e6a423 sw x14, 8(x13) x14:1c008ce0 x13:1c008ce0 PA:1c008ce8 +75809113ns 1374034 1c000f2e 00d72223 sw x13, 4(x14) x13:1c008ce0 x14:1c008ce0 PA:1c008ce4 +75809133ns 1374035 1c000f30 0047a683 lw x13, 4(x15) x13=1c008ce0 x15:1c008cd8 PA:1c008cdc +75809172ns 1374037 1c000f32 00a69363 bne x13, x10, 6 x13:1c008ce0 x10:1c00b404 +75809232ns 1374040 1c000f38 0007a703 lw x14, 0(x15) x14=00000001 x15:1c008cd8 PA:1c008cd8 +75809252ns 1374041 1c000f3a 00052823 sw x0, 16(x10) x10:1c00b404 PA:1c00b414 +75809271ns 1374042 1c000f3e fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +75809291ns 1374043 1c000f40 00e7a023 sw x14, 0(x15) x14:00000000 x15:1c008cd8 PA:1c008cd8 +75809311ns 1374044 1c000f42 0007a503 lw x10, 0(x15) x10=00000000 x15:1c008cd8 PA:1c008cd8 +75809331ns 1374045 1c000f44 00008067 jalr x0, x1, 0 x1:1c001970 +75809370ns 1374047 1c001970 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +75809390ns 1374048 1c001974 00051d63 bne x10, x0, 26 x10:00000000 +75809410ns 1374049 1c001976 0007a703 lw x14, 0(x15) x14=1c00b400 x15:1c009130 PA:1c009130 +75809430ns 1374050 1c001978 d7018693 addi x13, x3, -656 x13=1c00914c x3:1c0093dc +75809450ns 1374051 1c00197c 02c72583 lw x11, 44(x14) x11=00000004 x14:1c00b400 PA:1c00b42c +75809469ns 1374052 1c00197e 0006a603 lw x12, 0(x13) x12=00000013 x13:1c00914c PA:1c00914c +75809489ns 1374053 1c001980 00100713 addi x14, x0, 1 x14=00000001 +75809509ns 1374054 1c001982 00b71733 sll x14, x14, x11 x14=00000010 x14:00000001 x11:00000004 +75809529ns 1374055 1c001986 fff74713 xori x14, x14, -1 x14=ffffffef x14:00000010 +75809549ns 1374056 1c00198a 00c77733 and x14, x14, x12 x14=00000003 x14:ffffffef x12:00000013 +75809568ns 1374057 1c00198c 00e6a023 sw x14, 0(x13) x14:00000003 x13:1c00914c PA:1c00914c +75809588ns 1374058 1c00198e fff00713 addi x14, x0, -1 x14=ffffffff +75809608ns 1374059 1c001990 02e41063 bne x8, x14, 32 x8:ffffffff x14:ffffffff +75809628ns 1374060 1c001994 00090e63 beq x18, x0, 28 x18:00000001 +75809647ns 1374061 1c001998 0007a583 lw x11, 0(x15) x11=1c00b400 x15:1c009130 PA:1c009130 +75809667ns 1374062 1c00199a 01812403 lw x8, 24(x2) x8=1c00ad20 x2:1c00b370 PA:1c00b388 +75809687ns 1374063 1c00199c 01c12083 lw x1, 28(x2) x1=1c00193a x2:1c00b370 PA:1c00b38c +75809707ns 1374064 1c00199e 01412483 lw x9, 20(x2) x9=00000000 x2:1c00b370 PA:1c00b384 +75809727ns 1374065 1c0019a0 01012903 lw x18, 16(x2) x18=00000001 x2:1c00b370 PA:1c00b380 +75809746ns 1374066 1c0019a2 00c12983 lw x19, 12(x2) x19=a5a5a5a5 x2:1c00b370 PA:1c00b37c +75809766ns 1374067 1c0019a4 00458593 addi x11, x11, 4 x11=1c00b404 x11:1c00b400 +75809786ns 1374068 1c0019a6 94c18513 addi x10, x3, -1716 x10=1c008d28 x3:1c0093dc +75809806ns 1374069 1c0019aa 02010113 addi x2, x2, 32 x2=1c00b390 x2:1c00b370 +75809826ns 1374070 1c0019ac d34ff06f jal x0, -2764 +75809865ns 1374072 1c000ee0 00452783 lw x15, 4(x10) x15=1c008d30 x10:1c008d28 PA:1c008d2c +75809905ns 1374074 1c000ee2 0087a703 lw x14, 8(x15) x14=1c008d30 x15:1c008d30 PA:1c008d38 +75809925ns 1374075 1c000ee4 00f5a223 sw x15, 4(x11) x15:1c008d30 x11:1c00b404 PA:1c00b408 +75809944ns 1374076 1c000ee6 00e5a423 sw x14, 8(x11) x14:1c008d30 x11:1c00b404 PA:1c00b40c +75809964ns 1374077 1c000ee8 0087a703 lw x14, 8(x15) x14=1c008d30 x15:1c008d30 PA:1c008d38 +75810004ns 1374079 1c000eea 00b72223 sw x11, 4(x14) x11:1c00b404 x14:1c008d30 PA:1c008d34 +75810024ns 1374080 1c000eec 00b7a423 sw x11, 8(x15) x11:1c00b404 x15:1c008d30 PA:1c008d38 +75810043ns 1374081 1c000eee 00052783 lw x15, 0(x10) x15=00000000 x10:1c008d28 PA:1c008d28 +75810063ns 1374082 1c000ef0 00a5a823 sw x10, 16(x11) x10:1c008d28 x11:1c00b404 PA:1c00b414 +75810083ns 1374083 1c000ef2 00178793 addi x15, x15, 1 x15=00000001 x15:00000000 +75810103ns 1374084 1c000ef4 00f52023 sw x15, 0(x10) x15:00000001 x10:1c008d28 PA:1c008d28 +75810122ns 1374085 1c000ef6 00008067 jalr x0, x1, 0 x1:1c00193a +75810162ns 1374087 1c00193a 00800533 add x10, x0, x8 x10=1c00ad20 x8:1c00ad20 +75810182ns 1374088 1c00193c 00812403 lw x8, 8(x2) x8=00000001 x2:1c00b390 PA:1c00b398 +75810202ns 1374089 1c00193e 00c12083 lw x1, 12(x2) x1=1c00284e x2:1c00b390 PA:1c00b39c +75810221ns 1374090 1c001940 00412483 lw x9, 4(x2) x9=00000000 x2:1c00b390 PA:1c00b394 +75810241ns 1374091 1c001942 00012903 lw x18, 0(x2) x18=1c008728 x2:1c00b390 PA:1c00b390 +75810261ns 1374092 1c001944 01010113 addi x2, x2, 16 x2=1c00b3a0 x2:1c00b390 +75810281ns 1374093 1c001946 ec2ff06f jal x0, -2366 +75810320ns 1374095 1c001008 ff010113 addi x2, x2, -16 x2=1c00b390 x2:1c00b3a0 +75810340ns 1374096 1c00100a 00812423 sw x8, 8(x2) x8:00000001 x2:1c00b390 PA:1c00b398 +75810360ns 1374097 1c00100c 00a00433 add x8, x0, x10 x8=1c00ad20 x10:1c00ad20 +75810380ns 1374098 1c00100e 00912223 sw x9, 4(x2) x9:00000000 x2:1c00b390 PA:1c00b394 +75810400ns 1374099 1c001010 01212023 sw x18, 0(x2) x18:1c008728 x2:1c00b390 PA:1c00b390 +75810419ns 1374100 1c001012 00112623 sw x1, 12(x2) x1:1c00284e x2:1c00b390 PA:1c00b39c +75810439ns 1374101 1c001014 7f9000ef jal x1, 4088 x1=1c001018 +75810479ns 1374103 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +75810558ns 1374107 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +75810597ns 1374109 1c002014 00078863 beq x15, x0, 16 x15:00000001 +75810617ns 1374110 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +75810637ns 1374111 1c00201a 0007a683 lw x13, 0(x15) x13=1c00b400 x15:1c009130 PA:1c009130 +75810657ns 1374112 1c00201c 0007a783 lw x15, 0(x15) x15=1c00b400 x15:1c009130 PA:1c009130 +75810677ns 1374113 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c00b400 PA:1c00b444 +75810716ns 1374115 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +75810736ns 1374116 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c00b400 PA:1c00b444 +75810756ns 1374117 1c002024 00008067 jalr x0, x1, 0 x1:1c001018 +75810795ns 1374119 1c001018 04544483 lbu x9, 69(x8) x9=00000000 x8:1c00ad20 PA:1c00ad65 +75810815ns 1374120 1c00101c 02440913 addi x18, x8, 36 x18=1c00ad44 x8:1c00ad20 +75810835ns 1374121 1c001020 01849493 slli x9, x9, 0x18 x9=00000000 x9:00000000 +75810855ns 1374122 1c001022 4184d493 srai x9, x9, 0x418 x9=00000000 x9:00000000 +75810875ns 1374123 1c001024 02904b63 blt x0, x9, 54 x9:00000000 +75810894ns 1374124 1c001028 fff00793 addi x15, x0, -1 x15=ffffffff +75810914ns 1374125 1c00102a 04f402a3 sb x15, 69(x8) x15:ffffffff x8:1c00ad20 PA:1c00ad65 +75810934ns 1374126 1c00102e 7f9000ef jal x1, 4088 x1=1c001032 +75810993ns 1374129 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +75811033ns 1374131 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +75811053ns 1374132 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +75811072ns 1374133 1c002030 0007a703 lw x14, 0(x15) x14=1c00b400 x15:1c009130 PA:1c009130 +75811112ns 1374135 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c00b400 PA:1c00b444 +75811152ns 1374137 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +75811171ns 1374138 1c002036 0007a683 lw x13, 0(x15) x13=1c00b400 x15:1c009130 PA:1c009130 +75811191ns 1374139 1c002038 0007a783 lw x15, 0(x15) x15=1c00b400 x15:1c009130 PA:1c009130 +75811211ns 1374140 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c00b400 PA:1c00b444 +75811251ns 1374142 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +75811270ns 1374143 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c00b400 PA:1c00b444 +75811290ns 1374144 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c00b400 PA:1c00b444 +75811330ns 1374146 1c002042 00079363 bne x15, x0, 6 x15:00000000 +75811350ns 1374147 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +75811429ns 1374151 1c002048 00008067 jalr x0, x1, 0 x1:1c001032 +75811488ns 1374154 1c001032 7db000ef jal x1, 4058 x1=1c001036 +75811528ns 1374156 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +75811607ns 1374160 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +75811646ns 1374162 1c002014 00078863 beq x15, x0, 16 x15:00000001 +75811666ns 1374163 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +75811686ns 1374164 1c00201a 0007a683 lw x13, 0(x15) x13=1c00b400 x15:1c009130 PA:1c009130 +75811706ns 1374165 1c00201c 0007a783 lw x15, 0(x15) x15=1c00b400 x15:1c009130 PA:1c009130 +75811726ns 1374166 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c00b400 PA:1c00b444 +75811765ns 1374168 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +75811785ns 1374169 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c00b400 PA:1c00b444 +75811805ns 1374170 1c002024 00008067 jalr x0, x1, 0 x1:1c001036 +75811864ns 1374173 1c001036 04444483 lbu x9, 68(x8) x9=00000000 x8:1c00ad20 PA:1c00ad64 +75811884ns 1374174 1c00103a 01040913 addi x18, x8, 16 x18=1c00ad30 x8:1c00ad20 +75811904ns 1374175 1c00103e 01849493 slli x9, x9, 0x18 x9=00000000 x9:00000000 +75811924ns 1374176 1c001040 4184d493 srai x9, x9, 0x418 x9=00000000 x9:00000000 +75811943ns 1374177 1c001042 02904863 blt x0, x9, 48 x9:00000000 +75811963ns 1374178 1c001046 fff00793 addi x15, x0, -1 x15=ffffffff +75811983ns 1374179 1c001048 04f40223 sb x15, 68(x8) x15:ffffffff x8:1c00ad20 PA:1c00ad64 +75812003ns 1374180 1c00104c 00812403 lw x8, 8(x2) x8=00000001 x2:1c00b390 PA:1c00b398 +75812023ns 1374181 1c00104e 00c12083 lw x1, 12(x2) x1=1c00284e x2:1c00b390 PA:1c00b39c +75812042ns 1374182 1c001050 00412483 lw x9, 4(x2) x9=00000000 x2:1c00b390 PA:1c00b394 +75812062ns 1374183 1c001052 00012903 lw x18, 0(x2) x18=1c008728 x2:1c00b390 PA:1c00b390 +75812082ns 1374184 1c001054 01010113 addi x2, x2, 16 x2=1c00b3a0 x2:1c00b390 +75812102ns 1374185 1c001056 7d10006f jal x0, 4048 +75812161ns 1374188 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +75812201ns 1374190 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +75812220ns 1374191 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +75812240ns 1374192 1c002030 0007a703 lw x14, 0(x15) x14=1c00b400 x15:1c009130 PA:1c009130 +75812280ns 1374194 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c00b400 PA:1c00b444 +75812319ns 1374196 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +75812339ns 1374197 1c002036 0007a683 lw x13, 0(x15) x13=1c00b400 x15:1c009130 PA:1c009130 +75812359ns 1374198 1c002038 0007a783 lw x15, 0(x15) x15=1c00b400 x15:1c009130 PA:1c009130 +75812379ns 1374199 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c00b400 PA:1c00b444 +75812418ns 1374201 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +75812438ns 1374202 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c00b400 PA:1c00b444 +75812458ns 1374203 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c00b400 PA:1c00b444 +75812498ns 1374205 1c002042 00079363 bne x15, x0, 6 x15:00000000 +75812517ns 1374206 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +75812596ns 1374210 1c002048 00008067 jalr x0, x1, 0 x1:1c00284e +75812656ns 1374213 1c00284e affff0ef jal x1, -1282 x1=1c002852 +75812695ns 1374215 1c00234c fc010113 addi x2, x2, -64 x2=1c00b360 x2:1c00b3a0 +75812715ns 1374216 1c00234e 02812c23 sw x8, 56(x2) x8:00000001 x2:1c00b360 PA:1c00b398 +75812735ns 1374217 1c002350 d6818413 addi x8, x3, -664 x8=1c009144 x3:1c0093dc +75812755ns 1374218 1c002354 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +75812775ns 1374219 1c002356 02112e23 sw x1, 60(x2) x1:1c002852 x2:1c00b360 PA:1c00b39c +75812794ns 1374220 1c002358 02912a23 sw x9, 52(x2) x9:00000000 x2:1c00b360 PA:1c00b394 +75812814ns 1374221 1c00235a 03212823 sw x18, 48(x2) x18:1c008728 x2:1c00b360 PA:1c00b390 +75812834ns 1374222 1c00235c 03312623 sw x19, 44(x2) x19:a5a5a5a5 x2:1c00b360 PA:1c00b38c +75812854ns 1374223 1c00235e 03412423 sw x20, 40(x2) x20:1c009178 x2:1c00b360 PA:1c00b388 +75812874ns 1374224 1c002360 03512223 sw x21, 36(x2) x21:a5a5a5a5 x2:1c00b360 PA:1c00b384 +75812893ns 1374225 1c002362 03612023 sw x22, 32(x2) x22:00000000 x2:1c00b360 PA:1c00b380 +75812913ns 1374226 1c002364 01712e23 sw x23, 28(x2) x23:1c00916c x2:1c00b360 PA:1c00b37c +75812933ns 1374227 1c002366 02079263 bne x15, x0, 36 x15:00000001 +75813012ns 1374231 1c00238a c83ff0ef jal x1, -894 x1=1c00238e +75813052ns 1374233 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +75813131ns 1374237 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +75813170ns 1374239 1c002014 00078863 beq x15, x0, 16 x15:00000001 +75813190ns 1374240 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +75813210ns 1374241 1c00201a 0007a683 lw x13, 0(x15) x13=1c00b400 x15:1c009130 PA:1c009130 +75813230ns 1374242 1c00201c 0007a783 lw x15, 0(x15) x15=1c00b400 x15:1c009130 PA:1c009130 +75813250ns 1374243 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c00b400 PA:1c00b444 +75813289ns 1374245 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +75813309ns 1374246 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c00b400 PA:1c00b444 +75813329ns 1374247 1c002024 00008067 jalr x0, x1, 0 x1:1c00238e +75813368ns 1374249 1c00238e 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +75813408ns 1374251 1c002390 fff78793 addi x15, x15, -1 x15=00000000 x15:00000001 +75813428ns 1374252 1c002392 00f42023 sw x15, 0(x8) x15:00000000 x8:1c009144 PA:1c009144 +75813448ns 1374253 1c002394 00042783 lw x15, 0(x8) x15=00000000 x8:1c009144 PA:1c009144 +75813487ns 1374255 1c002396 02078163 beq x15, x0, 34 x15:00000000 +75813546ns 1374258 1c0023b8 d601a783 lw x15, -672(x3) x15=00000003 x3:1c0093dc PA:1c00913c +75813586ns 1374260 1c0023bc fc078ee3 beq x15, x0, -36 x15:00000003 +75813606ns 1374261 1c0023be 1c009937 lui x18, 0x1c009000 x18=1c009000 +75813626ns 1374262 1c0023c2 00000413 addi x8, x0, 0 x8=00000000 +75813645ns 1374263 1c0023c4 93818493 addi x9, x3, -1736 x9=1c008d14 x3:1c0093dc +75813665ns 1374264 1c0023c8 00100993 addi x19, x0, 1 x19=00000001 +75813685ns 1374265 1c0023ca c8890913 addi x18, x18, -888 x18=1c008c88 x18:1c009000 +75813705ns 1374266 1c0023ce 01400a93 addi x21, x0, 20 x21=00000014 +75813725ns 1374267 1c0023d0 04c0006f jal x0, 76 +75813764ns 1374269 1c00241c 0004a783 lw x15, 0(x9) x15=00000000 x9:1c008d14 PA:1c008d14 +75813804ns 1374271 1c00241e fa079ae3 bne x15, x0, -76 x15:00000000 +75813824ns 1374272 1c002420 00040363 beq x8, x0, 6 x8:00000000 +75813903ns 1374276 1c002426 d8018713 addi x14, x3, -640 x14=1c00915c x3:1c0093dc +75813923ns 1374277 1c00242a 00072483 lw x9, 0(x14) x9=00000000 x14:1c00915c PA:1c00915c +75813942ns 1374278 1c00242c d8018413 addi x8, x3, -640 x8=1c00915c x3:1c0093dc +75813962ns 1374279 1c002430 00048d63 beq x9, x0, 26 x9:00000000 +75814041ns 1374283 1c00244a d8c1a783 lw x15, -628(x3) x15=00000000 x3:1c0093dc PA:1c009168 +75814081ns 1374285 1c00244e f40785e3 beq x15, x0, -182 x15:00000000 +75814140ns 1374288 1c002398 00000513 addi x10, x0, 0 x10=00000000 +75814160ns 1374289 1c00239a 00a12623 sw x10, 12(x2) x10:00000000 x2:1c00b360 PA:1c00b36c +75814180ns 1374290 1c00239c c8bff0ef jal x1, -886 x1=1c0023a0 +75814239ns 1374293 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +75814279ns 1374295 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +75814299ns 1374296 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +75814318ns 1374297 1c002030 0007a703 lw x14, 0(x15) x14=1c00b400 x15:1c009130 PA:1c009130 +75814358ns 1374299 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c00b400 PA:1c00b444 +75814398ns 1374301 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +75814417ns 1374302 1c002036 0007a683 lw x13, 0(x15) x13=1c00b400 x15:1c009130 PA:1c009130 +75814437ns 1374303 1c002038 0007a783 lw x15, 0(x15) x15=1c00b400 x15:1c009130 PA:1c009130 +75814457ns 1374304 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c00b400 PA:1c00b444 +75814497ns 1374306 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +75814516ns 1374307 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c00b400 PA:1c00b444 +75814536ns 1374308 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c00b400 PA:1c00b444 +75814576ns 1374310 1c002042 00079363 bne x15, x0, 6 x15:00000000 +75814595ns 1374311 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +75814675ns 1374315 1c002048 00008067 jalr x0, x1, 0 x1:1c0023a0 +75814714ns 1374317 1c0023a0 03c12083 lw x1, 60(x2) x1=1c002852 x2:1c00b360 PA:1c00b39c +75814734ns 1374318 1c0023a2 03812403 lw x8, 56(x2) x8=00000001 x2:1c00b360 PA:1c00b398 +75814754ns 1374319 1c0023a4 00c12503 lw x10, 12(x2) x10=00000000 x2:1c00b360 PA:1c00b36c +75814774ns 1374320 1c0023a6 03412483 lw x9, 52(x2) x9=00000000 x2:1c00b360 PA:1c00b394 +75814793ns 1374321 1c0023a8 03012903 lw x18, 48(x2) x18=1c008728 x2:1c00b360 PA:1c00b390 +75814813ns 1374322 1c0023aa 02c12983 lw x19, 44(x2) x19=a5a5a5a5 x2:1c00b360 PA:1c00b38c +75814833ns 1374323 1c0023ac 02812a03 lw x20, 40(x2) x20=1c009178 x2:1c00b360 PA:1c00b388 +75814853ns 1374324 1c0023ae 02412a83 lw x21, 36(x2) x21=a5a5a5a5 x2:1c00b360 PA:1c00b384 +75814873ns 1374325 1c0023b0 02012b03 lw x22, 32(x2) x22=00000000 x2:1c00b360 PA:1c00b380 +75814892ns 1374326 1c0023b2 01c12b83 lw x23, 28(x2) x23=1c00916c x2:1c00b360 PA:1c00b37c +75814912ns 1374327 1c0023b4 04010113 addi x2, x2, 64 x2=1c00b3a0 x2:1c00b360 +75814932ns 1374328 1c0023b6 00008067 jalr x0, x1, 0 x1:1c002852 +75814972ns 1374330 1c002852 fa0519e3 bne x10, x0, -78 x10:00000000 +75814991ns 1374331 1c002854 00000073 ecall +75815070ns 1374335 1c000800 1000006f jal x0, 256 +75815110ns 1374337 1c000900 f8810113 addi x2, x2, -120 x2=1c00b328 x2:1c00b3a0 +75815130ns 1374338 1c000904 00112223 sw x1, 4(x2) x1:1c002852 x2:1c00b328 PA:1c00b32c +75815150ns 1374339 1c000906 00512423 sw x5, 8(x2) x5:a5a5a5a5 x2:1c00b328 PA:1c00b330 +75815169ns 1374340 1c000908 00612623 sw x6, 12(x2) x6:a5a5a5a5 x2:1c00b328 PA:1c00b334 +75815189ns 1374341 1c00090a 00712823 sw x7, 16(x2) x7:a5a5a5a5 x2:1c00b328 PA:1c00b338 +75815209ns 1374342 1c00090c 00812a23 sw x8, 20(x2) x8:00000001 x2:1c00b328 PA:1c00b33c +75815229ns 1374343 1c00090e 00912c23 sw x9, 24(x2) x9:00000000 x2:1c00b328 PA:1c00b340 +75815249ns 1374344 1c000910 00a12e23 sw x10, 28(x2) x10:00000000 x2:1c00b328 PA:1c00b344 +75815268ns 1374345 1c000912 02b12023 sw x11, 32(x2) x11:1c00b404 x2:1c00b328 PA:1c00b348 +75815288ns 1374346 1c000914 02c12223 sw x12, 36(x2) x12:00000013 x2:1c00b328 PA:1c00b34c +75815308ns 1374347 1c000916 02d12423 sw x13, 40(x2) x13:1c00b400 x2:1c00b328 PA:1c00b350 +75815328ns 1374348 1c000918 02e12623 sw x14, 44(x2) x14:00000000 x2:1c00b328 PA:1c00b354 +75815348ns 1374349 1c00091a 02f12823 sw x15, 48(x2) x15:00000000 x2:1c00b328 PA:1c00b358 +75815367ns 1374350 1c00091c 03012a23 sw x16, 52(x2) x16:a5a5a5a5 x2:1c00b328 PA:1c00b35c +75815387ns 1374351 1c00091e 03112c23 sw x17, 56(x2) x17:a5a5a5a5 x2:1c00b328 PA:1c00b360 +75815407ns 1374352 1c000920 03212e23 sw x18, 60(x2) x18:1c008728 x2:1c00b328 PA:1c00b364 +75815427ns 1374353 1c000922 05312023 sw x19, 64(x2) x19:a5a5a5a5 x2:1c00b328 PA:1c00b368 +75815447ns 1374354 1c000924 05412223 sw x20, 68(x2) x20:1c009178 x2:1c00b328 PA:1c00b36c +75815466ns 1374355 1c000926 05512423 sw x21, 72(x2) x21:a5a5a5a5 x2:1c00b328 PA:1c00b370 +75815486ns 1374356 1c000928 05612623 sw x22, 76(x2) x22:00000000 x2:1c00b328 PA:1c00b374 +75815506ns 1374357 1c00092a 05712823 sw x23, 80(x2) x23:1c00916c x2:1c00b328 PA:1c00b378 +75815526ns 1374358 1c00092c 05812a23 sw x24, 84(x2) x24:a5a5a5a5 x2:1c00b328 PA:1c00b37c +75815545ns 1374359 1c00092e 05912c23 sw x25, 88(x2) x25:a5a5a5a5 x2:1c00b328 PA:1c00b380 +75815565ns 1374360 1c000930 05a12e23 sw x26, 92(x2) x26:a5a5a5a5 x2:1c00b328 PA:1c00b384 +75815585ns 1374361 1c000932 07b12023 sw x27, 96(x2) x27:a5a5a5a5 x2:1c00b328 PA:1c00b388 +75815605ns 1374362 1c000934 07c12223 sw x28, 100(x2) x28:a5a5a5a5 x2:1c00b328 PA:1c00b38c +75815625ns 1374363 1c000936 07d12423 sw x29, 104(x2) x29:a5a5a5a5 x2:1c00b328 PA:1c00b390 +75815644ns 1374364 1c000938 07e12623 sw x30, 108(x2) x30:a5a5a5a5 x2:1c00b328 PA:1c00b394 +75815664ns 1374365 1c00093a 07f12823 sw x31, 112(x2) x31:a5a5a5a5 x2:1c00b328 PA:1c00b398 +75815684ns 1374366 1c00093c 300022f3 csrrs x5, x0, 0x300 x5=00001880 +75815763ns 1374370 1c000940 06512a23 sw x5, 116(x2) x5:00001880 x2:1c00b328 PA:1c00b39c +75815783ns 1374371 1c000942 fe810113 addi x2, x2, -24 x2=1c00b310 x2:1c00b328 +75815803ns 1374372 1c000944 7c0022f3 csrrs x5, x0, 0x7c0 x5=00000000 +75815823ns 1374373 1c000948 7c102373 csrrs x6, x0, 0x7c1 x6=00000000 +75815842ns 1374374 1c00094c 7c2023f3 csrrs x7, x0, 0x7c2 x7=00000000 +75815862ns 1374375 1c000950 7c402e73 csrrs x28, x0, 0x7c4 x28=00000000 +75815882ns 1374376 1c000954 7c502ef3 csrrs x29, x0, 0x7c5 x29=00000000 +75815902ns 1374377 1c000958 7c602f73 csrrs x30, x0, 0x7c6 x30=00000000 +75815922ns 1374378 1c00095c 00512223 sw x5, 4(x2) x5:00000000 x2:1c00b310 PA:1c00b314 +75815941ns 1374379 1c00095e 00612423 sw x6, 8(x2) x6:00000000 x2:1c00b310 PA:1c00b318 +75815961ns 1374380 1c000960 00712623 sw x7, 12(x2) x7:00000000 x2:1c00b310 PA:1c00b31c +75815981ns 1374381 1c000962 01c12823 sw x28, 16(x2) x28:00000000 x2:1c00b310 PA:1c00b320 +75816001ns 1374382 1c000964 01d12a23 sw x29, 20(x2) x29:00000000 x2:1c00b310 PA:1c00b324 +75816020ns 1374383 1c000966 01e12c23 sw x30, 24(x2) x30:00000000 x2:1c00b310 PA:1c00b328 +75816040ns 1374384 1c000968 d541a283 lw x5, -684(x3) x5=1c00b400 x3:1c0093dc PA:1c009130 +75816080ns 1374386 1c00096c 0022a023 sw x2, 0(x5) x2:1c00b310 x5:1c00b400 PA:1c00b400 +75816100ns 1374387 1c000970 34202573 csrrs x10, x0, 0x342 x10=0000000b +75816119ns 1374388 1c000974 341025f3 csrrs x11, x0, 0x341 x11=1c002854 +75816139ns 1374389 1c000978 01f55613 srli x12, x10, 0x1f x12=00000000 x10:0000000b +75816159ns 1374390 1c00097c 00060963 beq x12, x0, 18 x12:00000000 +75816218ns 1374393 1c00098e 00458593 addi x11, x11, 4 x11=1c002858 x11:1c002854 +75816238ns 1374394 1c000990 00b12023 sw x11, 0(x2) x11:1c002858 x2:1c00b310 PA:1c00b310 +75816258ns 1374395 1c000992 00b00293 addi x5, x0, 11 x5=0000000b +75816278ns 1374396 1c000994 7ff57513 andi x10, x10, 2047 x10=0000000b x10:0000000b +75816298ns 1374397 1c000998 00551963 bne x10, x5, 18 x10:0000000b x5:0000000b +75816317ns 1374398 1c00099c 00008117 auipc x2, 0x8000 x2=1c00899c +75816337ns 1374399 1c0009a0 23812103 lw x2, 568(x2) x2=1c0199b0 x2:1c00899c PA:1c008bd4 +75816357ns 1374400 1c0009a4 1d2010ef jal x1, 4562 x1=1c0009a8 +75816416ns 1374403 1c001b76 d681a703 lw x14, -664(x3) x14=00000000 x3:1c0093dc PA:1c009144 +75816436ns 1374404 1c001b7a d8c18793 addi x15, x3, -628 x15=1c009168 x3:1c0093dc +75816456ns 1374405 1c001b7e 00070463 beq x14, x0, 8 x14:00000000 +75816515ns 1374408 1c001b86 ff010113 addi x2, x2, -16 x2=1c0199a0 x2:1c0199b0 +75816535ns 1374409 1c001b88 00812423 sw x8, 8(x2) x8:00000001 x2:1c0199a0 PA:1c0199a8 +75816555ns 1374410 1c001b8a 00112623 sw x1, 12(x2) x1:1c0009a8 x2:1c0199a0 PA:1c0199ac +75816575ns 1374411 1c001b8c 0007a023 sw x0, 0(x15) x15:1c009168 PA:1c009168 +75816594ns 1374412 1c001b90 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +75816614ns 1374413 1c001b94 0007a783 lw x15, 0(x15) x15=1c00b400 x15:1c009130 PA:1c009130 +75816634ns 1374414 1c001b96 a5a5a737 lui x14, 0xa5a5a000 x14=a5a5a000 +75816654ns 1374415 1c001b9a 5a570713 addi x14, x14, 1445 x14=a5a5a5a5 x14:a5a5a000 +75816674ns 1374416 1c001b9e 0307a783 lw x15, 48(x15) x15=1c00adb8 x15:1c00b400 PA:1c00b430 +75816693ns 1374417 1c001ba0 d5418413 addi x8, x3, -684 x8=1c009130 x3:1c0093dc +75816713ns 1374418 1c001ba4 0007a603 lw x12, 0(x15) x12=a5a5a5a5 x15:1c00adb8 PA:1c00adb8 +75816753ns 1374420 1c001ba6 00e61b63 bne x12, x14, 22 x12:a5a5a5a5 x14:a5a5a5a5 +75816773ns 1374421 1c001baa 0047a683 lw x13, 4(x15) x13=a5a5a5a5 x15:1c00adb8 PA:1c00adbc +75816812ns 1374423 1c001bac 00c69863 bne x13, x12, 16 x13:a5a5a5a5 x12:a5a5a5a5 +75816832ns 1374424 1c001bb0 0087a703 lw x14, 8(x15) x14=a5a5a5a5 x15:1c00adb8 PA:1c00adc0 +75816872ns 1374426 1c001bb2 00d71563 bne x14, x13, 10 x14:a5a5a5a5 x13:a5a5a5a5 +75816891ns 1374427 1c001bb6 00c7a783 lw x15, 12(x15) x15=a5a5a5a5 x15:1c00adb8 PA:1c00adc4 +75816931ns 1374429 1c001bb8 00e78863 beq x15, x14, 16 x15:a5a5a5a5 x14:a5a5a5a5 +75816990ns 1374432 1c001bc8 d701a503 lw x10, -656(x3) x10=00000003 x3:1c0093dc PA:1c00914c +75817010ns 1374433 1c001bcc abeff0ef jal x1, -3394 x1=1c001bd0 +75817050ns 1374435 1c000e8a 000107b7 lui x15, 0x10000 x15=00010000 +75817069ns 1374436 1c000e8c 02f57663 bgeu x10, x15, 44 x10:00000003 x15:00010000 +75817089ns 1374437 1c000e90 0ff00793 addi x15, x0, 255 x15=000000ff +75817109ns 1374438 1c000e94 00a7b7b3 sltu x15, x15, x10 x15=00000000 x15:000000ff x10:00000003 +75817129ns 1374439 1c000e98 00379793 slli x15, x15, 0x3 x15=00000000 x15:00000000 +75817149ns 1374440 1c000e9a 1c009737 lui x14, 0x1c009000 x14=1c009000 +75817168ns 1374441 1c000e9e 02000693 addi x13, x0, 32 x13=00000020 +75817188ns 1374442 1c000ea2 40f686b3 sub x13, x13, x15 x13=00000020 x13:00000020 x15:00000000 +75817208ns 1374443 1c000ea4 00f55533 srl x10, x10, x15 x10=00000003 x10:00000003 x15:00000000 +75817228ns 1374444 1c000ea8 ad470793 addi x15, x14, -1324 x15=1c008ad4 x14:1c009000 +75817248ns 1374445 1c000eac 00f50533 add x10, x10, x15 x10=1c008ad7 x10:00000003 x15:1c008ad4 +75817267ns 1374446 1c000eae 00054503 lbu x10, 0(x10) x10=00000002 x10:1c008ad7 PA:1c008ad7 +75817307ns 1374448 1c000eb2 40a68533 sub x10, x13, x10 x10=0000001e x13:00000020 x10:00000002 +75817327ns 1374449 1c000eb6 00008067 jalr x0, x1, 0 x1:1c001bd0 +75817366ns 1374451 1c001bd0 01f00713 addi x14, x0, 31 x14=0000001f +75817386ns 1374452 1c001bd2 40a70533 sub x10, x14, x10 x10=00000001 x14:0000001f x10:0000001e +75817406ns 1374453 1c001bd6 01400793 addi x15, x0, 20 x15=00000014 +75817426ns 1374454 1c001bd8 02f507b3 mul x15, x10, x15 x15=00000014 x10:00000001 x15:00000014 +75817446ns 1374455 1c001bdc 1c009737 lui x14, 0x1c009000 x14=1c009000 +75817465ns 1374456 1c001be0 c8870693 addi x13, x14, -888 x13=1c008c88 x14:1c009000 +75817485ns 1374457 1c001be4 c8870713 addi x14, x14, -888 x14=1c008c88 x14:1c009000 +75817505ns 1374458 1c001be8 00f686b3 add x13, x13, x15 x13=1c008c9c x13:1c008c88 x15:00000014 +75817525ns 1374459 1c001bea 0006a603 lw x12, 0(x13) x12=00000001 x13:1c008c9c PA:1c008c9c +75817564ns 1374461 1c001bec 02061263 bne x12, x0, 36 x12:00000001 +75817624ns 1374464 1c001c10 0046a603 lw x12, 4(x13) x12=1c008ca4 x13:1c008c9c PA:1c008ca0 +75817643ns 1374465 1c001c12 00878793 addi x15, x15, 8 x15=0000001c x15:00000014 +75817663ns 1374466 1c001c14 00e787b3 add x15, x15, x14 x15=1c008ca4 x15:0000001c x14:1c008c88 +75817683ns 1374467 1c001c16 00462603 lw x12, 4(x12) x12=1c009dbc x12:1c008ca4 PA:1c008ca8 +75817723ns 1374469 1c001c18 00c6a223 sw x12, 4(x13) x12:1c009dbc x13:1c008c9c PA:1c008ca0 +75817742ns 1374470 1c001c1a 00f61463 bne x12, x15, 8 x12:1c009dbc x15:1c008ca4 +75817802ns 1374473 1c001c22 01400793 addi x15, x0, 20 x15=00000014 +75817822ns 1374474 1c001c24 02f50533 mul x10, x10, x15 x10=00000014 x10:00000001 x15:00000014 +75817841ns 1374475 1c001c28 00c12083 lw x1, 12(x2) x1=1c0009a8 x2:1c0199a0 PA:1c0199ac +75817861ns 1374476 1c001c2a 00a70733 add x14, x14, x10 x14=1c008c9c x14:1c008c88 x10:00000014 +75817881ns 1374477 1c001c2c 00472783 lw x15, 4(x14) x15=1c009dbc x14:1c008c9c PA:1c008ca0 +75817901ns 1374478 1c001c2e 1c009737 lui x14, 0x1c009000 x14=1c009000 +75817921ns 1374479 1c001c32 00c7a783 lw x15, 12(x15) x15=1c009db8 x15:1c009dbc PA:1c009dc8 +75817960ns 1374481 1c001c34 00f42023 sw x15, 0(x8) x15:1c009db8 x8:1c009130 PA:1c009130 +75817980ns 1374482 1c001c36 00042783 lw x15, 0(x8) x15=1c009db8 x8:1c009130 PA:1c009130 +75818000ns 1374483 1c001c38 00812403 lw x8, 8(x2) x8=00000001 x2:1c0199a0 PA:1c0199a8 +75818019ns 1374484 1c001c3a 05878793 addi x15, x15, 88 x15=1c009e10 x15:1c009db8 +75818039ns 1374485 1c001c3e c4f72223 sw x15, -956(x14) x15:1c009e10 x14:1c009000 PA:1c008c44 +75818059ns 1374486 1c001c42 01010113 addi x2, x2, 16 x2=1c0199b0 x2:1c0199a0 +75818079ns 1374487 1c001c44 00008067 jalr x0, x1, 0 x1:1c0009a8 +75818118ns 1374489 1c0009a8 0160006f jal x0, 22 +75818178ns 1374492 1c0009be d541a303 lw x6, -684(x3) x6=1c009db8 x3:1c0093dc PA:1c009130 +75818217ns 1374494 1c0009c2 00032103 lw x2, 0(x6) x2=1c009d10 x6:1c009db8 PA:1c009db8 +75818257ns 1374496 1c0009c6 00012283 lw x5, 0(x2) x5=1c003754 x2:1c009d10 PA:1c009d10 +75818297ns 1374498 1c0009c8 34129073 csrrw x0, x5, 0x341 x5:1c003754 +75818316ns 1374499 1c0009cc 00412283 lw x5, 4(x2) x5=00000000 x2:1c009d10 PA:1c009d14 +75818336ns 1374500 1c0009ce 00812303 lw x6, 8(x2) x6=00000000 x2:1c009d10 PA:1c009d18 +75818356ns 1374501 1c0009d0 00c12383 lw x7, 12(x2) x7=00000000 x2:1c009d10 PA:1c009d1c +75818376ns 1374502 1c0009d2 01012e03 lw x28, 16(x2) x28=00000000 x2:1c009d10 PA:1c009d20 +75818396ns 1374503 1c0009d4 01412e83 lw x29, 20(x2) x29=00000000 x2:1c009d10 PA:1c009d24 +75818415ns 1374504 1c0009d6 01812f03 lw x30, 24(x2) x30=00000000 x2:1c009d10 PA:1c009d28 +75818435ns 1374505 1c0009d8 7c029073 csrrw x0, x5, 0x7c0 x5:00000000 +75818455ns 1374506 1c0009dc 7c131073 csrrw x0, x6, 0x7c1 x6:00000000 +75818475ns 1374507 1c0009e0 7c239073 csrrw x0, x7, 0x7c2 x7:00000000 +75818494ns 1374508 1c0009e4 7c4e1073 csrrw x0, x28, 0x7c4 x28:00000000 +75818514ns 1374509 1c0009e8 7c5e9073 csrrw x0, x29, 0x7c5 x29:00000000 +75818534ns 1374510 1c0009ec 7c6f1073 csrrw x0, x30, 0x7c6 x30:00000000 +75818554ns 1374511 1c0009f0 01810113 addi x2, x2, 24 x2=1c009d28 x2:1c009d10 +75818574ns 1374512 1c0009f2 07412283 lw x5, 116(x2) x5=00001880 x2:1c009d28 PA:1c009d9c +75818613ns 1374514 1c0009f4 30029073 csrrw x0, x5, 0x300 x5:00001880 +75818692ns 1374518 1c0009f8 00412083 lw x1, 4(x2) x1=00000000 x2:1c009d28 PA:1c009d2c +75818712ns 1374519 1c0009fa 00812283 lw x5, 8(x2) x5=a5a5a5a5 x2:1c009d28 PA:1c009d30 +75818732ns 1374520 1c0009fc 00c12303 lw x6, 12(x2) x6=a5a5a5a5 x2:1c009d28 PA:1c009d34 +75818752ns 1374521 1c0009fe 01012383 lw x7, 16(x2) x7=a5a5a5a5 x2:1c009d28 PA:1c009d38 +75818772ns 1374522 1c000a00 01412403 lw x8, 20(x2) x8=a5a5a5a5 x2:1c009d28 PA:1c009d3c +75818791ns 1374523 1c000a02 01812483 lw x9, 24(x2) x9=a5a5a5a5 x2:1c009d28 PA:1c009d40 +75818811ns 1374524 1c000a04 01c12503 lw x10, 28(x2) x10=00000000 x2:1c009d28 PA:1c009d44 +75818831ns 1374525 1c000a06 02012583 lw x11, 32(x2) x11=a5a5a5a5 x2:1c009d28 PA:1c009d48 +75818851ns 1374526 1c000a08 02412603 lw x12, 36(x2) x12=a5a5a5a5 x2:1c009d28 PA:1c009d4c +75818871ns 1374527 1c000a0a 02812683 lw x13, 40(x2) x13=a5a5a5a5 x2:1c009d28 PA:1c009d50 +75818890ns 1374528 1c000a0c 02c12703 lw x14, 44(x2) x14=a5a5a5a5 x2:1c009d28 PA:1c009d54 +75818910ns 1374529 1c000a0e 03012783 lw x15, 48(x2) x15=a5a5a5a5 x2:1c009d28 PA:1c009d58 +75818930ns 1374530 1c000a10 03412803 lw x16, 52(x2) x16=a5a5a5a5 x2:1c009d28 PA:1c009d5c +75818950ns 1374531 1c000a12 03812883 lw x17, 56(x2) x17=a5a5a5a5 x2:1c009d28 PA:1c009d60 +75818969ns 1374532 1c000a14 03c12903 lw x18, 60(x2) x18=a5a5a5a5 x2:1c009d28 PA:1c009d64 +75818989ns 1374533 1c000a16 04012983 lw x19, 64(x2) x19=a5a5a5a5 x2:1c009d28 PA:1c009d68 +75819009ns 1374534 1c000a18 04412a03 lw x20, 68(x2) x20=a5a5a5a5 x2:1c009d28 PA:1c009d6c +75819029ns 1374535 1c000a1a 04812a83 lw x21, 72(x2) x21=a5a5a5a5 x2:1c009d28 PA:1c009d70 +75819049ns 1374536 1c000a1c 04c12b03 lw x22, 76(x2) x22=a5a5a5a5 x2:1c009d28 PA:1c009d74 +75819068ns 1374537 1c000a1e 05012b83 lw x23, 80(x2) x23=a5a5a5a5 x2:1c009d28 PA:1c009d78 +75819088ns 1374538 1c000a20 05412c03 lw x24, 84(x2) x24=a5a5a5a5 x2:1c009d28 PA:1c009d7c +75819108ns 1374539 1c000a22 05812c83 lw x25, 88(x2) x25=a5a5a5a5 x2:1c009d28 PA:1c009d80 +75819128ns 1374540 1c000a24 05c12d03 lw x26, 92(x2) x26=a5a5a5a5 x2:1c009d28 PA:1c009d84 +75819148ns 1374541 1c000a26 06012d83 lw x27, 96(x2) x27=a5a5a5a5 x2:1c009d28 PA:1c009d88 +75819167ns 1374542 1c000a28 06412e03 lw x28, 100(x2) x28=a5a5a5a5 x2:1c009d28 PA:1c009d8c +75819187ns 1374543 1c000a2a 06812e83 lw x29, 104(x2) x29=a5a5a5a5 x2:1c009d28 PA:1c009d90 +75819207ns 1374544 1c000a2c 06c12f03 lw x30, 108(x2) x30=a5a5a5a5 x2:1c009d28 PA:1c009d94 +75819227ns 1374545 1c000a2e 07012f83 lw x31, 112(x2) x31=a5a5a5a5 x2:1c009d28 PA:1c009d98 +75819247ns 1374546 1c000a30 07810113 addi x2, x2, 120 x2=1c009da0 x2:1c009d28 +75819266ns 1374547 1c000a34 30200073 mret +75819365ns 1374552 1c003754 ff010113 addi x2, x2, -16 x2=1c009d90 x2:1c009da0 +75819385ns 1374553 1c003756 00112623 sw x1, 12(x2) x1:00000000 x2:1c009d90 PA:1c009d9c +75819405ns 1374554 1c003758 dabff0ef jal x1, -598 x1=1c00375c +75819445ns 1374556 1c003502 e3010113 addi x2, x2, -464 x2=1c009bc0 x2:1c009d90 +75819464ns 1374557 1c003504 02c10513 addi x10, x2, 44 x10=1c009bec x2:1c009bc0 +75819484ns 1374558 1c003506 1c112623 sw x1, 460(x2) x1:1c00375c x2:1c009bc0 PA:1c009d8c +75819504ns 1374559 1c00350a 1c812423 sw x8, 456(x2) x8:a5a5a5a5 x2:1c009bc0 PA:1c009d88 +75819524ns 1374560 1c00350e 1c912223 sw x9, 452(x2) x9:a5a5a5a5 x2:1c009bc0 PA:1c009d84 +75819543ns 1374561 1c003512 1d212023 sw x18, 448(x2) x18:a5a5a5a5 x2:1c009bc0 PA:1c009d80 +75819563ns 1374562 1c003516 1b312e23 sw x19, 444(x2) x19:a5a5a5a5 x2:1c009bc0 PA:1c009d7c +75819583ns 1374563 1c00351a 1b412c23 sw x20, 440(x2) x20:a5a5a5a5 x2:1c009bc0 PA:1c009d78 +75819603ns 1374564 1c00351e 00012c23 sw x0, 24(x2) x2:1c009bc0 PA:1c009bd8 +75819623ns 1374565 1c003520 00010e23 sb x0, 28(x2) x2:1c009bc0 PA:1c009bdc +75819642ns 1374566 1c003524 df2ff0ef jal x1, -2574 x1=1c003528 +75819702ns 1374569 1c002b16 009897b7 lui x15, 0x989000 x15=00989000 +75819722ns 1374570 1c002b1a 68078793 addi x15, x15, 1664 x15=00989680 x15:00989000 +75819741ns 1374571 1c002b1e 00f52023 sw x15, 0(x10) x15:00989680 x10:1c009bec PA:1c009bec +75819761ns 1374572 1c002b20 0ff00793 addi x15, x0, 255 x15=000000ff +75819781ns 1374573 1c002b24 00051223 sh x0, 4(x10) x10:1c009bec PA:1c009bf0 +75819801ns 1374574 1c002b28 00052423 sw x0, 8(x10) x10:1c009bec PA:1c009bf4 +75819821ns 1374575 1c002b2c 00052623 sw x0, 12(x10) x10:1c009bec PA:1c009bf8 +75819840ns 1374576 1c002b30 00f51823 sh x15, 16(x10) x15:000000ff x10:1c009bec PA:1c009bfc +75819860ns 1374577 1c002b34 00008067 jalr x0, x1, 0 x1:1c003528 +75819900ns 1374579 1c003528 009897b7 lui x15, 0x989000 x15=00989000 +75819920ns 1374580 1c00352c 68078793 addi x15, x15, 1664 x15=00989680 x15:00989000 +75819939ns 1374581 1c003530 02f12623 sw x15, 44(x2) x15:00989680 x2:1c009bc0 PA:1c009bec +75819959ns 1374582 1c003532 02c10593 addi x11, x2, 44 x11=1c009bec x2:1c009bc0 +75819979ns 1374583 1c003534 10000793 addi x15, x0, 256 x15=00000100 +75819999ns 1374584 1c003538 02010513 addi x10, x2, 32 x10=1c009be0 x2:1c009bc0 +75820018ns 1374585 1c00353a 02f11823 sh x15, 48(x2) x15:00000100 x2:1c009bc0 PA:1c009bf0 +75820038ns 1374586 1c00353e 02012a23 sw x0, 52(x2) x2:1c009bc0 PA:1c009bf4 +75820058ns 1374587 1c003540 02012c23 sw x0, 56(x2) x2:1c009bc0 PA:1c009bf8 +75820078ns 1374588 1c003542 02011e23 sh x0, 60(x2) x2:1c009bc0 PA:1c009bfc +75820098ns 1374589 1c003546 fb9ff0ef jal x1, -72 x1=1c00354a +75820137ns 1374591 1c0034fe 00b52223 sw x11, 4(x10) x11:1c009bec x10:1c009be0 PA:1c009be4 +75820157ns 1374592 1c003500 00008067 jalr x0, x1, 0 x1:1c00354a +75820197ns 1374594 1c00354a 02010513 addi x10, x2, 32 x10=1c009be0 x2:1c009bc0 +75820216ns 1374595 1c00354c deaff0ef jal x1, -2582 x1=1c003550 +75820256ns 1374597 1c002b36 00452583 lw x11, 4(x10) x11=1c009bec x10:1c009be0 PA:1c009be4 +75820276ns 1374598 1c002b38 00850513 addi x10, x10, 8 x10=1c009be8 x10:1c009be0 +75820296ns 1374599 1c002b3a 3920006f jal x0, 914 +75820335ns 1374601 1c002ecc fe010113 addi x2, x2, -32 x2=1c009ba0 x2:1c009bc0 +75820355ns 1374602 1c002ece 00812c23 sw x8, 24(x2) x8:a5a5a5a5 x2:1c009ba0 PA:1c009bb8 +75820375ns 1374603 1c002ed0 01312623 sw x19, 12(x2) x19:a5a5a5a5 x2:1c009ba0 PA:1c009bac +75820395ns 1374604 1c002ed2 01412423 sw x20, 8(x2) x20:a5a5a5a5 x2:1c009ba0 PA:1c009ba8 +75820414ns 1374605 1c002ed4 00b00433 add x8, x0, x11 x8=1c009bec x11:1c009bec +75820434ns 1374606 1c002ed6 00112e23 sw x1, 28(x2) x1:1c003550 x2:1c009ba0 PA:1c009bbc +75820454ns 1374607 1c002ed8 00912a23 sw x9, 20(x2) x9:a5a5a5a5 x2:1c009ba0 PA:1c009bb4 +75820474ns 1374608 1c002eda 01212823 sw x18, 16(x2) x18:a5a5a5a5 x2:1c009ba0 PA:1c009bb0 +75820493ns 1374609 1c002edc 01512223 sw x21, 4(x2) x21:a5a5a5a5 x2:1c009ba0 PA:1c009ba4 +75820513ns 1374610 1c002ede 00a00a33 add x20, x0, x10 x20=1c009be8 x10:1c009be8 +75820533ns 1374611 1c002ee0 cd3ff0ef jal x1, -814 x1=1c002ee4 +75820592ns 1374614 1c002bb2 30047573 csrrci x10, 0x00000008, 0x300 x10=00000088 +75820672ns 1374618 1c002bb6 00008067 jalr x0, x1, 0 x1:1c002ee4 +75820711ns 1374620 1c002ee4 01140783 lb x15, 17(x8) x15=00000000 x8:1c009bec PA:1c009bfd +75820731ns 1374621 1c002ee8 00100713 addi x14, x0, 1 x14=00000001 +75820751ns 1374622 1c002eea 00a009b3 add x19, x0, x10 x19=00000088 x10:00000088 +75820771ns 1374623 1c002eec 00178793 addi x15, x15, 1 x15=00000001 x15:00000000 +75820790ns 1374624 1c002eee 00f717b3 sll x15, x14, x15 x15=00000002 x14:00000001 x15:00000001 +75820810ns 1374625 1c002ef2 1a1026b7 lui x13, 0x1a102000 x13=1a102000 +75820830ns 1374626 1c002ef6 0006a603 lw x12, 0(x13) x12=00000000 x13:1a102000 PA:1a102000 +75820909ns 1374630 1c002ef8 00c7e7b3 or x15, x15, x12 x15=00000002 x15:00000002 x12:00000000 +75820929ns 1374631 1c002efa 00f6a023 sw x15, 0(x13) x15:00000002 x13:1a102000 PA:1a102000 +75820949ns 1374632 1c002efc 01140503 lb x10, 17(x8) x10=00000000 x8:1c009bec PA:1c009bfd +75821028ns 1374636 1c002f00 00251793 slli x15, x10, 0x2 x15=00000000 x10:00000000 +75821048ns 1374637 1c002f04 00778513 addi x10, x15, 7 x10=00000007 x15:00000000 +75821067ns 1374638 1c002f08 0ff00793 addi x15, x0, 255 x15=000000ff +75821087ns 1374639 1c002f0c 02a7e063 bltu x15, x10, 32 x15:000000ff x10:00000007 +75821107ns 1374640 1c002f10 00555793 srli x15, x10, 0x5 x15=00000000 x10:00000007 +75821127ns 1374641 1c002f14 1a1066b7 lui x13, 0x1a106000 x13=1a106000 +75821147ns 1374642 1c002f18 00468693 addi x13, x13, 4 x13=1a106004 x13:1a106000 +75821166ns 1374643 1c002f1a 00279793 slli x15, x15, 0x2 x15=00000000 x15:00000000 +75821186ns 1374644 1c002f1c 00d787b3 add x15, x15, x13 x15=1a106004 x15:00000000 x13:1a106004 +75821206ns 1374645 1c002f1e 0007a683 lw x13, 0(x15) x13=ffffffff x15:1a106004 PA:1a106004 +75821226ns 1374646 1c002f20 00a71733 sll x14, x14, x10 x14=00000080 x14:00000001 x10:00000007 +75821285ns 1374649 1c002f24 fff74713 xori x14, x14, -1 x14=ffffff7f x14:00000080 +75821305ns 1374650 1c002f28 00d77733 and x14, x14, x13 x14=ffffff7f x14:ffffff7f x13:ffffffff +75821325ns 1374651 1c002f2a 00e7a023 sw x14, 0(x15) x14:ffffff7f x15:1a106004 PA:1a106004 +75821345ns 1374652 1c002f2c 1c0035b7 lui x11, 0x1c003000 x11=1c003000 +75821404ns 1374655 1c002f30 10658593 addi x11, x11, 262 x11=1c003106 x11:1c003000 +75821424ns 1374656 1c002f34 482000ef jal x1, 1154 x1=1c002f36 +75821483ns 1374659 1c0033b6 00251793 slli x15, x10, 0x2 x15=0000001c x10:00000007 +75821503ns 1374660 1c0033ba a2818513 addi x10, x3, -1496 x10=1c008e04 x3:1c0093dc +75821523ns 1374661 1c0033be 00f50533 add x10, x10, x15 x10=1c008e20 x10:1c008e04 x15:0000001c +75821542ns 1374662 1c0033c0 00b52023 sw x11, 0(x10) x11:1c003106 x10:1c008e20 PA:1c008e20 +75821562ns 1374663 1c0033c2 00008067 jalr x0, x1, 0 x1:1c002f36 +75821622ns 1374666 1c002f36 01140503 lb x10, 17(x8) x10=00000000 x8:1c009bec PA:1c009bfd +75821641ns 1374667 1c002f3a 1c0035b7 lui x11, 0x1c003000 x11=1c003000 +75821661ns 1374668 1c002f3e 14858593 addi x11, x11, 328 x11=1c003148 x11:1c003000 +75821681ns 1374669 1c002f42 00251513 slli x10, x10, 0x2 x10=00000000 x10:00000000 +75821701ns 1374670 1c002f44 00550513 addi x10, x10, 5 x10=00000005 x10:00000000 +75821721ns 1374671 1c002f46 470000ef jal x1, 1136 x1=1c002f48 +75821780ns 1374674 1c0033b6 00251793 slli x15, x10, 0x2 x15=00000014 x10:00000005 +75821800ns 1374675 1c0033ba a2818513 addi x10, x3, -1496 x10=1c008e04 x3:1c0093dc +75821820ns 1374676 1c0033be 00f50533 add x10, x10, x15 x10=1c008e18 x10:1c008e04 x15:00000014 +75821839ns 1374677 1c0033c0 00b52023 sw x11, 0(x10) x11:1c003148 x10:1c008e18 PA:1c008e18 +75821859ns 1374678 1c0033c2 00008067 jalr x0, x1, 0 x1:1c002f48 +75821899ns 1374680 1c002f48 01140503 lb x10, 17(x8) x10=00000000 x8:1c009bec PA:1c009bfd +75821919ns 1374681 1c002f4c 1c0035b7 lui x11, 0x1c003000 x11=1c003000 +75821938ns 1374682 1c002f50 16658593 addi x11, x11, 358 x11=1c003166 x11:1c003000 +75821958ns 1374683 1c002f54 00150513 addi x10, x10, 1 x10=00000001 x10:00000000 +75821978ns 1374684 1c002f56 00251513 slli x10, x10, 0x2 x10=00000004 x10:00000001 +75821998ns 1374685 1c002f58 45e000ef jal x1, 1118 x1=1c002f5a +75822057ns 1374688 1c0033b6 00251793 slli x15, x10, 0x2 x15=00000010 x10:00000004 +75822077ns 1374689 1c0033ba a2818513 addi x10, x3, -1496 x10=1c008e04 x3:1c0093dc +75822097ns 1374690 1c0033be 00f50533 add x10, x10, x15 x10=1c008e14 x10:1c008e04 x15:00000010 +75822116ns 1374691 1c0033c0 00b52023 sw x11, 0(x10) x11:1c003166 x10:1c008e14 PA:1c008e14 +75822136ns 1374692 1c0033c2 00008067 jalr x0, x1, 0 x1:1c002f5a +75822196ns 1374695 1c002f5a 01140a83 lb x21, 17(x8) x21=00000000 x8:1c009bec PA:1c009bfd +75822215ns 1374696 1c002f5e da418913 addi x18, x3, -604 x18=1c009180 x3:1c0093dc +75822235ns 1374697 1c002f62 002a9793 slli x15, x21, 0x2 x15=00000000 x21:00000000 +75822255ns 1374698 1c002f66 00f90933 add x18, x18, x15 x18=1c009180 x18:1c009180 x15:00000000 +75822275ns 1374699 1c002f68 00092483 lw x9, 0(x18) x9=00000000 x18:1c009180 PA:1c009180 +75822314ns 1374701 1c002f6c 02049b63 bne x9, x0, 54 x9:00000000 +75822334ns 1374702 1c002f6e 01800513 addi x10, x0, 24 x10=00000018 +75822354ns 1374703 1c002f70 199000ef jal x1, 2456 x1=1c002f74 +75822394ns 1374705 1c003908 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +75822413ns 1374706 1c00390c 00a005b3 add x11, x0, x10 x11=00000018 x10:00000018 +75822433ns 1374707 1c00390e c447a503 lw x10, -956(x15) x10=1c009e10 x15:1c009000 PA:1c008c44 +75822453ns 1374708 1c003912 0b60006f jal x0, 182 +75822492ns 1374710 1c0039c8 fe010113 addi x2, x2, -32 x2=1c009b80 x2:1c009ba0 +75822512ns 1374711 1c0039ca 00912a23 sw x9, 20(x2) x9:00000000 x2:1c009b80 PA:1c009b94 +75822532ns 1374712 1c0039cc 00358493 addi x9, x11, 3 x9=0000001b x11:00000018 +75822552ns 1374713 1c0039d0 ffc4f493 andi x9, x9, -4 x9=00000018 x9:0000001b +75822572ns 1374714 1c0039d2 01212823 sw x18, 16(x2) x18:1c009180 x2:1c009b80 PA:1c009b90 +75822591ns 1374715 1c0039d4 00112e23 sw x1, 28(x2) x1:1c002f74 x2:1c009b80 PA:1c009b9c +75822611ns 1374716 1c0039d6 00812c23 sw x8, 24(x2) x8:1c009bec x2:1c009b80 PA:1c009b98 +75822631ns 1374717 1c0039d8 01312623 sw x19, 12(x2) x19:00000088 x2:1c009b80 PA:1c009b8c +75822651ns 1374718 1c0039da 00848493 addi x9, x9, 8 x9=00000020 x9:00000018 +75822671ns 1374719 1c0039dc 00c00793 addi x15, x0, 12 x15=0000000c +75822690ns 1374720 1c0039de 00a00933 add x18, x0, x10 x18=1c009e10 x10:1c009e10 +75822710ns 1374721 1c0039e0 04f4f363 bgeu x9, x15, 70 x9:00000020 x15:0000000c +75822789ns 1374725 1c003a26 fc04d0e3 bge x9, x0, -64 x9:00000020 +75822869ns 1374729 1c0039e6 04b4e263 bltu x9, x11, 68 x9:00000020 x11:00000018 +75822888ns 1374730 1c0039ea 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +75822908ns 1374731 1c0039ec 87aff0ef jal x1, -3974 x1=1c0039f0 +75822967ns 1374734 1c002a66 fb1fe06f jal x0, -4176 +75823027ns 1374737 1c001a16 d6818793 addi x15, x3, -664 x15=1c009144 x3:1c0093dc +75823047ns 1374738 1c001a1a 0007a703 lw x14, 0(x15) x14=00000000 x15:1c009144 PA:1c009144 +75823086ns 1374740 1c001a1c 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +75823106ns 1374741 1c001a1e 00e7a023 sw x14, 0(x15) x14:00000001 x15:1c009144 PA:1c009144 +75823126ns 1374742 1c001a20 00008067 jalr x0, x1, 0 x1:1c0039f0 +75823165ns 1374744 1c0039f0 db81a703 lw x14, -584(x3) x14=00000000 x3:1c0093dc PA:1c009194 +75823185ns 1374745 1c0039f4 db818693 addi x13, x3, -584 x13=1c009194 x3:1c0093dc +75823205ns 1374746 1c0039f8 00e00433 add x8, x0, x14 x8=00000000 x14:00000000 +75823225ns 1374747 1c0039fa 04041363 bne x8, x0, 70 x8:00000000 +75823245ns 1374748 1c0039fc dbc18413 addi x8, x3, -580 x8=1c009198 x3:1c0093dc +75823264ns 1374749 1c003a00 00042783 lw x15, 0(x8) x15=1c0091b0 x8:1c009198 PA:1c009198 +75823304ns 1374751 1c003a02 00079563 bne x15, x0, 10 x15:1c0091b0 +75823363ns 1374754 1c003a0c 009005b3 add x11, x0, x9 x11=00000020 x9:00000020 +75823383ns 1374755 1c003a0e 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +75823403ns 1374756 1c003a10 5cc000ef jal x1, 1484 x1=1c003a12 +75823442ns 1374758 1c003fdc ff010113 addi x2, x2, -16 x2=1c009b70 x2:1c009b80 +75823462ns 1374759 1c003fde 00812423 sw x8, 8(x2) x8:1c009198 x2:1c009b70 PA:1c009b78 +75823482ns 1374760 1c003fe0 00912223 sw x9, 4(x2) x9:00000020 x2:1c009b70 PA:1c009b74 +75823502ns 1374761 1c003fe2 00a00433 add x8, x0, x10 x8=1c009e10 x10:1c009e10 +75823522ns 1374762 1c003fe4 00b00533 add x10, x0, x11 x10=00000020 x11:00000020 +75823541ns 1374763 1c003fe6 00112623 sw x1, 12(x2) x1:1c003a12 x2:1c009b70 PA:1c009b7c +75823561ns 1374764 1c003fe8 dc01a023 sw x0, -576(x3) x3:1c0093dc PA:1c00919c +75823581ns 1374765 1c003fec a53fe0ef jal x1, -5550 x1=1c003ff0 +75823640ns 1374768 1c002a3e 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +75823660ns 1374769 1c002a42 c3c78793 addi x15, x15, -964 x15=1c008c3c x15:1c009000 +75823680ns 1374770 1c002a46 00a00733 add x14, x0, x10 x14=00000020 x10:00000020 +75823700ns 1374771 1c002a48 0007a503 lw x10, 0(x15) x10=1c00b88c x15:1c008c3c PA:1c008c3c +75823720ns 1374772 1c002a4a 1c0196b7 lui x13, 0x1c019000 x13=1c019000 +75823739ns 1374773 1c002a4e 1b068693 addi x13, x13, 432 x13=1c0191b0 x13:1c019000 +75823759ns 1374774 1c002a52 00a70733 add x14, x14, x10 x14=1c00b8ac x14:00000020 x10:1c00b88c +75823779ns 1374775 1c002a54 00d76763 bltu x14, x13, 14 x14:1c00b8ac x13:1c0191b0 +75823838ns 1374778 1c002a62 00e7a023 sw x14, 0(x15) x14:1c00b8ac x15:1c008c3c PA:1c008c3c +75823858ns 1374779 1c002a64 00008067 jalr x0, x1, 0 x1:1c003ff0 +75823898ns 1374781 1c003ff0 fff00793 addi x15, x0, -1 x15=ffffffff +75823917ns 1374782 1c003ff2 00f51663 bne x10, x15, 12 x10:1c00b88c x15:ffffffff +75823977ns 1374785 1c003ffe 00c12083 lw x1, 12(x2) x1=1c003a12 x2:1c009b70 PA:1c009b7c +75823997ns 1374786 1c004000 00812403 lw x8, 8(x2) x8=1c009198 x2:1c009b70 PA:1c009b78 +75824016ns 1374787 1c004002 00412483 lw x9, 4(x2) x9=00000020 x2:1c009b70 PA:1c009b74 +75824036ns 1374788 1c004004 01010113 addi x2, x2, 16 x2=1c009b80 x2:1c009b70 +75824056ns 1374789 1c004006 00008067 jalr x0, x1, 0 x1:1c003a12 +75824096ns 1374791 1c003a12 fff00993 addi x19, x0, -1 x19=ffffffff +75824115ns 1374792 1c003a14 07351a63 bne x10, x19, 116 x10:1c00b88c x19:ffffffff +75824175ns 1374795 1c003a88 00350413 addi x8, x10, 3 x8=1c00b88f x10:1c00b88c +75824195ns 1374796 1c003a8c ffc47413 andi x8, x8, -4 x8=1c00b88c x8:1c00b88f +75824214ns 1374797 1c003a8e fc8502e3 beq x10, x8, -60 x10:1c00b88c x8:1c00b88c +75824274ns 1374800 1c003a52 00942023 sw x9, 0(x8) x9:00000020 x8:1c00b88c PA:1c00b88c +75824294ns 1374801 1c003a54 00a0006f jal x0, 10 +75824333ns 1374803 1c003a5e 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +75824353ns 1374804 1c003a60 80aff0ef jal x1, -4086 x1=1c003a64 +75824412ns 1374807 1c002a6a 8e3ff06f jal x0, -1822 +75824452ns 1374809 1c00234c fc010113 addi x2, x2, -64 x2=1c009b40 x2:1c009b80 +75824472ns 1374810 1c00234e 02812c23 sw x8, 56(x2) x8:1c00b88c x2:1c009b40 PA:1c009b78 +75824491ns 1374811 1c002350 d6818413 addi x8, x3, -664 x8=1c009144 x3:1c0093dc +75824511ns 1374812 1c002354 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +75824531ns 1374813 1c002356 02112e23 sw x1, 60(x2) x1:1c003a64 x2:1c009b40 PA:1c009b7c +75824551ns 1374814 1c002358 02912a23 sw x9, 52(x2) x9:00000020 x2:1c009b40 PA:1c009b74 +75824571ns 1374815 1c00235a 03212823 sw x18, 48(x2) x18:1c009e10 x2:1c009b40 PA:1c009b70 +75824590ns 1374816 1c00235c 03312623 sw x19, 44(x2) x19:ffffffff x2:1c009b40 PA:1c009b6c +75824610ns 1374817 1c00235e 03412423 sw x20, 40(x2) x20:1c009be8 x2:1c009b40 PA:1c009b68 +75824630ns 1374818 1c002360 03512223 sw x21, 36(x2) x21:00000000 x2:1c009b40 PA:1c009b64 +75824650ns 1374819 1c002362 03612023 sw x22, 32(x2) x22:a5a5a5a5 x2:1c009b40 PA:1c009b60 +75824670ns 1374820 1c002364 01712e23 sw x23, 28(x2) x23:a5a5a5a5 x2:1c009b40 PA:1c009b5c +75824689ns 1374821 1c002366 02079263 bne x15, x0, 36 x15:00000001 +75824769ns 1374825 1c00238a c83ff0ef jal x1, -894 x1=1c00238e +75824808ns 1374827 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +75824887ns 1374831 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +75824927ns 1374833 1c002014 00078863 beq x15, x0, 16 x15:00000001 +75824947ns 1374834 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +75824966ns 1374835 1c00201a 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +75824986ns 1374836 1c00201c 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +75825006ns 1374837 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c009db8 PA:1c009dfc +75825046ns 1374839 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +75825065ns 1374840 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c009db8 PA:1c009dfc +75825085ns 1374841 1c002024 00008067 jalr x0, x1, 0 x1:1c00238e +75825125ns 1374843 1c00238e 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +75825164ns 1374845 1c002390 fff78793 addi x15, x15, -1 x15=00000000 x15:00000001 +75825184ns 1374846 1c002392 00f42023 sw x15, 0(x8) x15:00000000 x8:1c009144 PA:1c009144 +75825204ns 1374847 1c002394 00042783 lw x15, 0(x8) x15=00000000 x8:1c009144 PA:1c009144 +75825244ns 1374849 1c002396 02078163 beq x15, x0, 34 x15:00000000 +75825303ns 1374852 1c0023b8 d601a783 lw x15, -672(x3) x15=00000003 x3:1c0093dc PA:1c00913c +75825343ns 1374854 1c0023bc fc078ee3 beq x15, x0, -36 x15:00000003 +75825362ns 1374855 1c0023be 1c009937 lui x18, 0x1c009000 x18=1c009000 +75825382ns 1374856 1c0023c2 00000413 addi x8, x0, 0 x8=00000000 +75825402ns 1374857 1c0023c4 93818493 addi x9, x3, -1736 x9=1c008d14 x3:1c0093dc +75825422ns 1374858 1c0023c8 00100993 addi x19, x0, 1 x19=00000001 +75825441ns 1374859 1c0023ca c8890913 addi x18, x18, -888 x18=1c008c88 x18:1c009000 +75825461ns 1374860 1c0023ce 01400a93 addi x21, x0, 20 x21=00000014 +75825481ns 1374861 1c0023d0 04c0006f jal x0, 76 +75825521ns 1374863 1c00241c 0004a783 lw x15, 0(x9) x15=00000000 x9:1c008d14 PA:1c008d14 +75825560ns 1374865 1c00241e fa079ae3 bne x15, x0, -76 x15:00000000 +75825580ns 1374866 1c002420 00040363 beq x8, x0, 6 x8:00000000 +75825659ns 1374870 1c002426 d8018713 addi x14, x3, -640 x14=1c00915c x3:1c0093dc +75825679ns 1374871 1c00242a 00072483 lw x9, 0(x14) x9=00000000 x14:1c00915c PA:1c00915c +75825699ns 1374872 1c00242c d8018413 addi x8, x3, -640 x8=1c00915c x3:1c0093dc +75825719ns 1374873 1c002430 00048d63 beq x9, x0, 26 x9:00000000 +75825798ns 1374877 1c00244a d8c1a783 lw x15, -628(x3) x15=00000000 x3:1c0093dc PA:1c009168 +75825837ns 1374879 1c00244e f40785e3 beq x15, x0, -182 x15:00000000 +75825897ns 1374882 1c002398 00000513 addi x10, x0, 0 x10=00000000 +75825916ns 1374883 1c00239a 00a12623 sw x10, 12(x2) x10:00000000 x2:1c009b40 PA:1c009b4c +75825936ns 1374884 1c00239c c8bff0ef jal x1, -886 x1=1c0023a0 +75825996ns 1374887 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +75826035ns 1374889 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +75826055ns 1374890 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +75826075ns 1374891 1c002030 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +75826114ns 1374893 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c009db8 PA:1c009dfc +75826154ns 1374895 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +75826174ns 1374896 1c002036 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +75826194ns 1374897 1c002038 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +75826213ns 1374898 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c009db8 PA:1c009dfc +75826253ns 1374900 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +75826273ns 1374901 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c009db8 PA:1c009dfc +75826293ns 1374902 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c009db8 PA:1c009dfc +75826332ns 1374904 1c002042 00079363 bne x15, x0, 6 x15:00000000 +75826352ns 1374905 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +75826431ns 1374909 1c002048 00008067 jalr x0, x1, 0 x1:1c0023a0 +75826471ns 1374911 1c0023a0 03c12083 lw x1, 60(x2) x1=1c003a64 x2:1c009b40 PA:1c009b7c +75826490ns 1374912 1c0023a2 03812403 lw x8, 56(x2) x8=1c00b88c x2:1c009b40 PA:1c009b78 +75826510ns 1374913 1c0023a4 00c12503 lw x10, 12(x2) x10=00000000 x2:1c009b40 PA:1c009b4c +75826530ns 1374914 1c0023a6 03412483 lw x9, 52(x2) x9=00000020 x2:1c009b40 PA:1c009b74 +75826550ns 1374915 1c0023a8 03012903 lw x18, 48(x2) x18=1c009e10 x2:1c009b40 PA:1c009b70 +75826570ns 1374916 1c0023aa 02c12983 lw x19, 44(x2) x19=ffffffff x2:1c009b40 PA:1c009b6c +75826589ns 1374917 1c0023ac 02812a03 lw x20, 40(x2) x20=1c009be8 x2:1c009b40 PA:1c009b68 +75826609ns 1374918 1c0023ae 02412a83 lw x21, 36(x2) x21=00000000 x2:1c009b40 PA:1c009b64 +75826629ns 1374919 1c0023b0 02012b03 lw x22, 32(x2) x22=a5a5a5a5 x2:1c009b40 PA:1c009b60 +75826649ns 1374920 1c0023b2 01c12b83 lw x23, 28(x2) x23=a5a5a5a5 x2:1c009b40 PA:1c009b5c +75826669ns 1374921 1c0023b4 04010113 addi x2, x2, 64 x2=1c009b80 x2:1c009b40 +75826688ns 1374922 1c0023b6 00008067 jalr x0, x1, 0 x1:1c003a64 +75826728ns 1374924 1c003a64 00b40513 addi x10, x8, 11 x10=1c00b897 x8:1c00b88c +75826748ns 1374925 1c003a68 00440793 addi x15, x8, 4 x15=1c00b890 x8:1c00b88c +75826768ns 1374926 1c003a6c ff857513 andi x10, x10, -8 x10=1c00b890 x10:1c00b897 +75826787ns 1374927 1c003a6e 40f50733 sub x14, x10, x15 x14=00000000 x10:1c00b890 x15:1c00b890 +75826807ns 1374928 1c003a72 fcf500e3 beq x10, x15, -64 x10:1c00b890 x15:1c00b890 +75826867ns 1374931 1c003a32 01c12083 lw x1, 28(x2) x1=1c002f74 x2:1c009b80 PA:1c009b9c +75826886ns 1374932 1c003a34 01812403 lw x8, 24(x2) x8=1c009bec x2:1c009b80 PA:1c009b98 +75826906ns 1374933 1c003a36 01412483 lw x9, 20(x2) x9=00000000 x2:1c009b80 PA:1c009b94 +75826926ns 1374934 1c003a38 01012903 lw x18, 16(x2) x18=1c009180 x2:1c009b80 PA:1c009b90 +75826946ns 1374935 1c003a3a 00c12983 lw x19, 12(x2) x19=00000088 x2:1c009b80 PA:1c009b8c +75826965ns 1374936 1c003a3c 02010113 addi x2, x2, 32 x2=1c009ba0 x2:1c009b80 +75826985ns 1374937 1c003a3e 00008067 jalr x0, x1, 0 x1:1c002f74 +75827025ns 1374939 1c002f74 00a004b3 add x9, x0, x10 x9=1c00b890 x10:1c00b890 +75827045ns 1374940 1c002f76 00a92023 sw x10, 0(x18) x10:1c00b890 x18:1c009180 PA:1c009180 +75827064ns 1374941 1c002f7a 00052223 sw x0, 4(x10) x10:1c00b890 PA:1c00b894 +75827084ns 1374942 1c002f7e 00052423 sw x0, 8(x10) x10:1c00b890 PA:1c00b898 +75827104ns 1374943 1c002f82 00052623 sw x0, 12(x10) x10:1c00b890 PA:1c00b89c +75827124ns 1374944 1c002f86 00052823 sw x0, 16(x10) x10:1c00b890 PA:1c00b8a0 +75827144ns 1374945 1c002f8a 00052a23 sw x0, 20(x10) x10:1c00b890 PA:1c00b8a4 +75827163ns 1374946 1c002f8e 00800513 addi x10, x0, 8 x10=00000008 +75827183ns 1374947 1c002f90 179000ef jal x1, 2424 x1=1c002f94 +75827223ns 1374949 1c003908 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +75827243ns 1374950 1c00390c 00a005b3 add x11, x0, x10 x11=00000008 x10:00000008 +75827262ns 1374951 1c00390e c447a503 lw x10, -956(x15) x10=1c009e10 x15:1c009000 PA:1c008c44 +75827282ns 1374952 1c003912 0b60006f jal x0, 182 +75827322ns 1374954 1c0039c8 fe010113 addi x2, x2, -32 x2=1c009b80 x2:1c009ba0 +75827342ns 1374955 1c0039ca 00912a23 sw x9, 20(x2) x9:1c00b890 x2:1c009b80 PA:1c009b94 +75827361ns 1374956 1c0039cc 00358493 addi x9, x11, 3 x9=0000000b x11:00000008 +75827381ns 1374957 1c0039d0 ffc4f493 andi x9, x9, -4 x9=00000008 x9:0000000b +75827401ns 1374958 1c0039d2 01212823 sw x18, 16(x2) x18:1c009180 x2:1c009b80 PA:1c009b90 +75827421ns 1374959 1c0039d4 00112e23 sw x1, 28(x2) x1:1c002f94 x2:1c009b80 PA:1c009b9c +75827440ns 1374960 1c0039d6 00812c23 sw x8, 24(x2) x8:1c009bec x2:1c009b80 PA:1c009b98 +75827460ns 1374961 1c0039d8 01312623 sw x19, 12(x2) x19:00000088 x2:1c009b80 PA:1c009b8c +75827480ns 1374962 1c0039da 00848493 addi x9, x9, 8 x9=00000010 x9:00000008 +75827500ns 1374963 1c0039dc 00c00793 addi x15, x0, 12 x15=0000000c +75827520ns 1374964 1c0039de 00a00933 add x18, x0, x10 x18=1c009e10 x10:1c009e10 +75827539ns 1374965 1c0039e0 04f4f363 bgeu x9, x15, 70 x9:00000010 x15:0000000c +75827619ns 1374969 1c003a26 fc04d0e3 bge x9, x0, -64 x9:00000010 +75827698ns 1374973 1c0039e6 04b4e263 bltu x9, x11, 68 x9:00000010 x11:00000008 +75827718ns 1374974 1c0039ea 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +75827737ns 1374975 1c0039ec 87aff0ef jal x1, -3974 x1=1c0039f0 +75827797ns 1374978 1c002a66 fb1fe06f jal x0, -4176 +75827856ns 1374981 1c001a16 d6818793 addi x15, x3, -664 x15=1c009144 x3:1c0093dc +75827876ns 1374982 1c001a1a 0007a703 lw x14, 0(x15) x14=00000000 x15:1c009144 PA:1c009144 +75827915ns 1374984 1c001a1c 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +75827935ns 1374985 1c001a1e 00e7a023 sw x14, 0(x15) x14:00000001 x15:1c009144 PA:1c009144 +75827955ns 1374986 1c001a20 00008067 jalr x0, x1, 0 x1:1c0039f0 +75827995ns 1374988 1c0039f0 db81a703 lw x14, -584(x3) x14=00000000 x3:1c0093dc PA:1c009194 +75828014ns 1374989 1c0039f4 db818693 addi x13, x3, -584 x13=1c009194 x3:1c0093dc +75828034ns 1374990 1c0039f8 00e00433 add x8, x0, x14 x8=00000000 x14:00000000 +75828054ns 1374991 1c0039fa 04041363 bne x8, x0, 70 x8:00000000 +75828074ns 1374992 1c0039fc dbc18413 addi x8, x3, -580 x8=1c009198 x3:1c0093dc +75828094ns 1374993 1c003a00 00042783 lw x15, 0(x8) x15=1c0091b0 x8:1c009198 PA:1c009198 +75828133ns 1374995 1c003a02 00079563 bne x15, x0, 10 x15:1c0091b0 +75828193ns 1374998 1c003a0c 009005b3 add x11, x0, x9 x11=00000010 x9:00000010 +75828212ns 1374999 1c003a0e 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +75828232ns 1375000 1c003a10 5cc000ef jal x1, 1484 x1=1c003a12 +75828272ns 1375002 1c003fdc ff010113 addi x2, x2, -16 x2=1c009b70 x2:1c009b80 +75828292ns 1375003 1c003fde 00812423 sw x8, 8(x2) x8:1c009198 x2:1c009b70 PA:1c009b78 +75828311ns 1375004 1c003fe0 00912223 sw x9, 4(x2) x9:00000010 x2:1c009b70 PA:1c009b74 +75828331ns 1375005 1c003fe2 00a00433 add x8, x0, x10 x8=1c009e10 x10:1c009e10 +75828351ns 1375006 1c003fe4 00b00533 add x10, x0, x11 x10=00000010 x11:00000010 +75828371ns 1375007 1c003fe6 00112623 sw x1, 12(x2) x1:1c003a12 x2:1c009b70 PA:1c009b7c +75828390ns 1375008 1c003fe8 dc01a023 sw x0, -576(x3) x3:1c0093dc PA:1c00919c +75828410ns 1375009 1c003fec a53fe0ef jal x1, -5550 x1=1c003ff0 +75828470ns 1375012 1c002a3e 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +75828489ns 1375013 1c002a42 c3c78793 addi x15, x15, -964 x15=1c008c3c x15:1c009000 +75828509ns 1375014 1c002a46 00a00733 add x14, x0, x10 x14=00000010 x10:00000010 +75828529ns 1375015 1c002a48 0007a503 lw x10, 0(x15) x10=1c00b8ac x15:1c008c3c PA:1c008c3c +75828549ns 1375016 1c002a4a 1c0196b7 lui x13, 0x1c019000 x13=1c019000 +75828569ns 1375017 1c002a4e 1b068693 addi x13, x13, 432 x13=1c0191b0 x13:1c019000 +75828588ns 1375018 1c002a52 00a70733 add x14, x14, x10 x14=1c00b8bc x14:00000010 x10:1c00b8ac +75828608ns 1375019 1c002a54 00d76763 bltu x14, x13, 14 x14:1c00b8bc x13:1c0191b0 +75828668ns 1375022 1c002a62 00e7a023 sw x14, 0(x15) x14:1c00b8bc x15:1c008c3c PA:1c008c3c +75828687ns 1375023 1c002a64 00008067 jalr x0, x1, 0 x1:1c003ff0 +75828727ns 1375025 1c003ff0 fff00793 addi x15, x0, -1 x15=ffffffff +75828747ns 1375026 1c003ff2 00f51663 bne x10, x15, 12 x10:1c00b8ac x15:ffffffff +75828806ns 1375029 1c003ffe 00c12083 lw x1, 12(x2) x1=1c003a12 x2:1c009b70 PA:1c009b7c +75828826ns 1375030 1c004000 00812403 lw x8, 8(x2) x8=1c009198 x2:1c009b70 PA:1c009b78 +75828846ns 1375031 1c004002 00412483 lw x9, 4(x2) x9=00000010 x2:1c009b70 PA:1c009b74 +75828865ns 1375032 1c004004 01010113 addi x2, x2, 16 x2=1c009b80 x2:1c009b70 +75828885ns 1375033 1c004006 00008067 jalr x0, x1, 0 x1:1c003a12 +75828925ns 1375035 1c003a12 fff00993 addi x19, x0, -1 x19=ffffffff +75828945ns 1375036 1c003a14 07351a63 bne x10, x19, 116 x10:1c00b8ac x19:ffffffff +75829004ns 1375039 1c003a88 00350413 addi x8, x10, 3 x8=1c00b8af x10:1c00b8ac +75829024ns 1375040 1c003a8c ffc47413 andi x8, x8, -4 x8=1c00b8ac x8:1c00b8af +75829044ns 1375041 1c003a8e fc8502e3 beq x10, x8, -60 x10:1c00b8ac x8:1c00b8ac +75829103ns 1375044 1c003a52 00942023 sw x9, 0(x8) x9:00000010 x8:1c00b8ac PA:1c00b8ac +75829123ns 1375045 1c003a54 00a0006f jal x0, 10 +75829162ns 1375047 1c003a5e 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +75829182ns 1375048 1c003a60 80aff0ef jal x1, -4086 x1=1c003a64 +75829242ns 1375051 1c002a6a 8e3ff06f jal x0, -1822 +75829281ns 1375053 1c00234c fc010113 addi x2, x2, -64 x2=1c009b40 x2:1c009b80 +75829301ns 1375054 1c00234e 02812c23 sw x8, 56(x2) x8:1c00b8ac x2:1c009b40 PA:1c009b78 +75829321ns 1375055 1c002350 d6818413 addi x8, x3, -664 x8=1c009144 x3:1c0093dc +75829341ns 1375056 1c002354 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +75829360ns 1375057 1c002356 02112e23 sw x1, 60(x2) x1:1c003a64 x2:1c009b40 PA:1c009b7c +75829380ns 1375058 1c002358 02912a23 sw x9, 52(x2) x9:00000010 x2:1c009b40 PA:1c009b74 +75829400ns 1375059 1c00235a 03212823 sw x18, 48(x2) x18:1c009e10 x2:1c009b40 PA:1c009b70 +75829420ns 1375060 1c00235c 03312623 sw x19, 44(x2) x19:ffffffff x2:1c009b40 PA:1c009b6c +75829439ns 1375061 1c00235e 03412423 sw x20, 40(x2) x20:1c009be8 x2:1c009b40 PA:1c009b68 +75829459ns 1375062 1c002360 03512223 sw x21, 36(x2) x21:00000000 x2:1c009b40 PA:1c009b64 +75829479ns 1375063 1c002362 03612023 sw x22, 32(x2) x22:a5a5a5a5 x2:1c009b40 PA:1c009b60 +75829499ns 1375064 1c002364 01712e23 sw x23, 28(x2) x23:a5a5a5a5 x2:1c009b40 PA:1c009b5c +75829519ns 1375065 1c002366 02079263 bne x15, x0, 36 x15:00000001 +75829598ns 1375069 1c00238a c83ff0ef jal x1, -894 x1=1c00238e +75829637ns 1375071 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +75829717ns 1375075 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +75829756ns 1375077 1c002014 00078863 beq x15, x0, 16 x15:00000001 +75829776ns 1375078 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +75829796ns 1375079 1c00201a 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +75829816ns 1375080 1c00201c 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +75829835ns 1375081 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c009db8 PA:1c009dfc +75829875ns 1375083 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +75829895ns 1375084 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c009db8 PA:1c009dfc +75829914ns 1375085 1c002024 00008067 jalr x0, x1, 0 x1:1c00238e +75829954ns 1375087 1c00238e 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +75829994ns 1375089 1c002390 fff78793 addi x15, x15, -1 x15=00000000 x15:00000001 +75830013ns 1375090 1c002392 00f42023 sw x15, 0(x8) x15:00000000 x8:1c009144 PA:1c009144 +75830033ns 1375091 1c002394 00042783 lw x15, 0(x8) x15=00000000 x8:1c009144 PA:1c009144 +75830073ns 1375093 1c002396 02078163 beq x15, x0, 34 x15:00000000 +75830132ns 1375096 1c0023b8 d601a783 lw x15, -672(x3) x15=00000003 x3:1c0093dc PA:1c00913c +75830172ns 1375098 1c0023bc fc078ee3 beq x15, x0, -36 x15:00000003 +75830192ns 1375099 1c0023be 1c009937 lui x18, 0x1c009000 x18=1c009000 +75830211ns 1375100 1c0023c2 00000413 addi x8, x0, 0 x8=00000000 +75830231ns 1375101 1c0023c4 93818493 addi x9, x3, -1736 x9=1c008d14 x3:1c0093dc +75830251ns 1375102 1c0023c8 00100993 addi x19, x0, 1 x19=00000001 +75830271ns 1375103 1c0023ca c8890913 addi x18, x18, -888 x18=1c008c88 x18:1c009000 +75830291ns 1375104 1c0023ce 01400a93 addi x21, x0, 20 x21=00000014 +75830310ns 1375105 1c0023d0 04c0006f jal x0, 76 +75830350ns 1375107 1c00241c 0004a783 lw x15, 0(x9) x15=00000000 x9:1c008d14 PA:1c008d14 +75830389ns 1375109 1c00241e fa079ae3 bne x15, x0, -76 x15:00000000 +75830409ns 1375110 1c002420 00040363 beq x8, x0, 6 x8:00000000 +75830488ns 1375114 1c002426 d8018713 addi x14, x3, -640 x14=1c00915c x3:1c0093dc +75830508ns 1375115 1c00242a 00072483 lw x9, 0(x14) x9=00000000 x14:1c00915c PA:1c00915c +75830528ns 1375116 1c00242c d8018413 addi x8, x3, -640 x8=1c00915c x3:1c0093dc +75830548ns 1375117 1c002430 00048d63 beq x9, x0, 26 x9:00000000 +75830627ns 1375121 1c00244a d8c1a783 lw x15, -628(x3) x15=00000000 x3:1c0093dc PA:1c009168 +75830667ns 1375123 1c00244e f40785e3 beq x15, x0, -182 x15:00000000 +75830726ns 1375126 1c002398 00000513 addi x10, x0, 0 x10=00000000 +75830746ns 1375127 1c00239a 00a12623 sw x10, 12(x2) x10:00000000 x2:1c009b40 PA:1c009b4c +75830766ns 1375128 1c00239c c8bff0ef jal x1, -886 x1=1c0023a0 +75830825ns 1375131 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +75830864ns 1375133 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +75830884ns 1375134 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +75830904ns 1375135 1c002030 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +75830944ns 1375137 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c009db8 PA:1c009dfc +75830983ns 1375139 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +75831003ns 1375140 1c002036 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +75831023ns 1375141 1c002038 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +75831043ns 1375142 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c009db8 PA:1c009dfc +75831082ns 1375144 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +75831102ns 1375145 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c009db8 PA:1c009dfc +75831122ns 1375146 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c009db8 PA:1c009dfc +75831161ns 1375148 1c002042 00079363 bne x15, x0, 6 x15:00000000 +75831181ns 1375149 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +75831260ns 1375153 1c002048 00008067 jalr x0, x1, 0 x1:1c0023a0 +75831300ns 1375155 1c0023a0 03c12083 lw x1, 60(x2) x1=1c003a64 x2:1c009b40 PA:1c009b7c +75831320ns 1375156 1c0023a2 03812403 lw x8, 56(x2) x8=1c00b8ac x2:1c009b40 PA:1c009b78 +75831339ns 1375157 1c0023a4 00c12503 lw x10, 12(x2) x10=00000000 x2:1c009b40 PA:1c009b4c +75831359ns 1375158 1c0023a6 03412483 lw x9, 52(x2) x9=00000010 x2:1c009b40 PA:1c009b74 +75831379ns 1375159 1c0023a8 03012903 lw x18, 48(x2) x18=1c009e10 x2:1c009b40 PA:1c009b70 +75831399ns 1375160 1c0023aa 02c12983 lw x19, 44(x2) x19=ffffffff x2:1c009b40 PA:1c009b6c +75831419ns 1375161 1c0023ac 02812a03 lw x20, 40(x2) x20=1c009be8 x2:1c009b40 PA:1c009b68 +75831438ns 1375162 1c0023ae 02412a83 lw x21, 36(x2) x21=00000000 x2:1c009b40 PA:1c009b64 +75831458ns 1375163 1c0023b0 02012b03 lw x22, 32(x2) x22=a5a5a5a5 x2:1c009b40 PA:1c009b60 +75831478ns 1375164 1c0023b2 01c12b83 lw x23, 28(x2) x23=a5a5a5a5 x2:1c009b40 PA:1c009b5c +75831498ns 1375165 1c0023b4 04010113 addi x2, x2, 64 x2=1c009b80 x2:1c009b40 +75831518ns 1375166 1c0023b6 00008067 jalr x0, x1, 0 x1:1c003a64 +75831557ns 1375168 1c003a64 00b40513 addi x10, x8, 11 x10=1c00b8b7 x8:1c00b8ac +75831577ns 1375169 1c003a68 00440793 addi x15, x8, 4 x15=1c00b8b0 x8:1c00b8ac +75831597ns 1375170 1c003a6c ff857513 andi x10, x10, -8 x10=1c00b8b0 x10:1c00b8b7 +75831617ns 1375171 1c003a6e 40f50733 sub x14, x10, x15 x14=00000000 x10:1c00b8b0 x15:1c00b8b0 +75831636ns 1375172 1c003a72 fcf500e3 beq x10, x15, -64 x10:1c00b8b0 x15:1c00b8b0 +75831696ns 1375175 1c003a32 01c12083 lw x1, 28(x2) x1=1c002f94 x2:1c009b80 PA:1c009b9c +75831716ns 1375176 1c003a34 01812403 lw x8, 24(x2) x8=1c009bec x2:1c009b80 PA:1c009b98 +75831735ns 1375177 1c003a36 01412483 lw x9, 20(x2) x9=1c00b890 x2:1c009b80 PA:1c009b94 +75831755ns 1375178 1c003a38 01012903 lw x18, 16(x2) x18=1c009180 x2:1c009b80 PA:1c009b90 +75831775ns 1375179 1c003a3a 00c12983 lw x19, 12(x2) x19=00000088 x2:1c009b80 PA:1c009b8c +75831795ns 1375180 1c003a3c 02010113 addi x2, x2, 32 x2=1c009ba0 x2:1c009b80 +75831815ns 1375181 1c003a3e 00008067 jalr x0, x1, 0 x1:1c002f94 +75831854ns 1375183 1c002f94 00a4a023 sw x10, 0(x9) x10:1c00b8b0 x9:1c00b890 PA:1c00b890 +75831874ns 1375184 1c002f96 00052023 sw x0, 0(x10) x10:1c00b8b0 PA:1c00b8b0 +75831894ns 1375185 1c002f9a 00052223 sw x0, 4(x10) x10:1c00b8b0 PA:1c00b8b4 +75831913ns 1375186 1c002f9e 01548a23 sb x21, 20(x9) x21:00000000 x9:1c00b890 PA:1c00b8a4 +75831933ns 1375187 1c002fa2 0104a783 lw x15, 16(x9) x15=00000000 x9:1c00b890 PA:1c00b8a0 +75831953ns 1375188 1c002fa4 00900533 add x10, x0, x9 x10=1c00b890 x9:1c00b890 +75831973ns 1375189 1c002fa6 00178793 addi x15, x15, 1 x15=00000001 x15:00000000 +75831993ns 1375190 1c002fa8 00f4a823 sw x15, 16(x9) x15:00000001 x9:1c00b890 PA:1c00b8a0 +75832012ns 1375191 1c002faa 01040583 lb x11, 16(x8) x11=00000000 x8:1c009bec PA:1c009bfc +75832032ns 1375192 1c002fae c65ff0ef jal x1, -924 x1=1c002fb2 +75832072ns 1375194 1c002c12 00452503 lw x10, 4(x10) x10=00000000 x10:1c00b890 PA:1c00b894 +75832111ns 1375196 1c002c14 00050563 beq x10, x0, 10 x10:00000000 +75832171ns 1375199 1c002c1e 00008067 jalr x0, x1, 0 x1:1c002fb2 +75832230ns 1375202 1c002fb2 00aa2023 sw x10, 0(x20) x10:00000000 x20:1c009be8 PA:1c009be8 +75832250ns 1375203 1c002fb6 08051863 bne x10, x0, 144 x10:00000000 +75832270ns 1375204 1c002fb8 00042503 lw x10, 0(x8) x10=00989680 x8:1c009bec PA:1c009bec +75832290ns 1375205 1c002fba c91ff0ef jal x1, -880 x1=1c002fbe +75832329ns 1375207 1c002c4a ff010113 addi x2, x2, -16 x2=1c009b90 x2:1c009ba0 +75832349ns 1375208 1c002c4c 00812423 sw x8, 8(x2) x8:1c009bec x2:1c009b90 PA:1c009b98 +75832369ns 1375209 1c002c4e 00a00433 add x8, x0, x10 x8=00989680 x10:00989680 +75832388ns 1375210 1c002c50 00200513 addi x10, x0, 2 x10=00000002 +75832408ns 1375211 1c002c52 00112623 sw x1, 12(x2) x1:1c002fbe x2:1c009b90 PA:1c009b9c +75832428ns 1375212 1c002c54 69a000ef jal x1, 1690 x1=1c002c58 +75832468ns 1375214 1c0032ee 00100713 addi x14, x0, 1 x14=00000001 +75832487ns 1375215 1c0032f0 00a007b3 add x15, x0, x10 x15=00000002 x10:00000002 +75832507ns 1375216 1c0032f2 00e50a63 beq x10, x14, 20 x10:00000002 x14:00000001 +75832527ns 1375217 1c0032f6 00200713 addi x14, x0, 2 x14=00000002 +75832547ns 1375218 1c0032f8 00e50463 beq x10, x14, 8 x10:00000002 x14:00000002 +75832606ns 1375221 1c003300 a1c1a503 lw x10, -1508(x3) x10=02fa8000 x3:1c0093dc PA:1c008df8 +75832626ns 1375222 1c003304 00008067 jalr x0, x1, 0 x1:1c002c58 +75832666ns 1375224 1c002c58 02a47063 bgeu x8, x10, 32 x8:00989680 x10:02fa8000 +75832685ns 1375225 1c002c5c fff40793 addi x15, x8, -1 x15=0098967f x8:00989680 +75832705ns 1375226 1c002c60 00a787b3 add x15, x15, x10 x15=0393167f x15:0098967f x10:02fa8000 +75832725ns 1375227 1c002c62 0287d533 divu x10, x15, x8 x10=00000005 x15:0098967f x8:00989680 +75832943ns 1375238 1c002c66 00157793 andi x15, x10, 1 x15=00000001 x10:00000005 +75832962ns 1375239 1c002c6a 00078263 beq x15, x0, 4 x15:00000001 +75832982ns 1375240 1c002c6c 00150513 addi x10, x10, 1 x10=00000006 x10:00000005 +75833002ns 1375241 1c002c6e 00155513 srli x10, x10, 0x1 x10=00000003 x10:00000006 +75833022ns 1375242 1c002c70 00c12083 lw x1, 12(x2) x1=1c002fbe x2:1c009b90 PA:1c009b9c +75833042ns 1375243 1c002c72 00812403 lw x8, 8(x2) x8=1c009bec x2:1c009b90 PA:1c009b98 +75833061ns 1375244 1c002c74 01010113 addi x2, x2, 16 x2=1c009ba0 x2:1c009b90 +75833081ns 1375245 1c002c76 00008067 jalr x0, x1, 0 x1:1c002fbe +75833121ns 1375247 1c002fbe 00a00ab3 add x21, x0, x10 x21=00000003 x10:00000003 +75833141ns 1375248 1c002fc0 03c00513 addi x10, x0, 60 x10=0000003c +75833160ns 1375249 1c002fc4 145000ef jal x1, 2372 x1=1c002fc8 +75833200ns 1375251 1c003908 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +75833220ns 1375252 1c00390c 00a005b3 add x11, x0, x10 x11=0000003c x10:0000003c +75833240ns 1375253 1c00390e c447a503 lw x10, -956(x15) x10=1c009e10 x15:1c009000 PA:1c008c44 +75833259ns 1375254 1c003912 0b60006f jal x0, 182 +75833299ns 1375256 1c0039c8 fe010113 addi x2, x2, -32 x2=1c009b80 x2:1c009ba0 +75833319ns 1375257 1c0039ca 00912a23 sw x9, 20(x2) x9:1c00b890 x2:1c009b80 PA:1c009b94 +75833338ns 1375258 1c0039cc 00358493 addi x9, x11, 3 x9=0000003f x11:0000003c +75833358ns 1375259 1c0039d0 ffc4f493 andi x9, x9, -4 x9=0000003c x9:0000003f +75833378ns 1375260 1c0039d2 01212823 sw x18, 16(x2) x18:1c009180 x2:1c009b80 PA:1c009b90 +75833398ns 1375261 1c0039d4 00112e23 sw x1, 28(x2) x1:1c002fc8 x2:1c009b80 PA:1c009b9c +75833418ns 1375262 1c0039d6 00812c23 sw x8, 24(x2) x8:1c009bec x2:1c009b80 PA:1c009b98 +75833437ns 1375263 1c0039d8 01312623 sw x19, 12(x2) x19:00000088 x2:1c009b80 PA:1c009b8c +75833457ns 1375264 1c0039da 00848493 addi x9, x9, 8 x9=00000044 x9:0000003c +75833477ns 1375265 1c0039dc 00c00793 addi x15, x0, 12 x15=0000000c +75833497ns 1375266 1c0039de 00a00933 add x18, x0, x10 x18=1c009e10 x10:1c009e10 +75833517ns 1375267 1c0039e0 04f4f363 bgeu x9, x15, 70 x9:00000044 x15:0000000c +75833596ns 1375271 1c003a26 fc04d0e3 bge x9, x0, -64 x9:00000044 +75833675ns 1375275 1c0039e6 04b4e263 bltu x9, x11, 68 x9:00000044 x11:0000003c +75833695ns 1375276 1c0039ea 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +75833715ns 1375277 1c0039ec 87aff0ef jal x1, -3974 x1=1c0039f0 +75833774ns 1375280 1c002a66 fb1fe06f jal x0, -4176 +75833833ns 1375283 1c001a16 d6818793 addi x15, x3, -664 x15=1c009144 x3:1c0093dc +75833853ns 1375284 1c001a1a 0007a703 lw x14, 0(x15) x14=00000000 x15:1c009144 PA:1c009144 +75833893ns 1375286 1c001a1c 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +75833912ns 1375287 1c001a1e 00e7a023 sw x14, 0(x15) x14:00000001 x15:1c009144 PA:1c009144 +75833932ns 1375288 1c001a20 00008067 jalr x0, x1, 0 x1:1c0039f0 +75833972ns 1375290 1c0039f0 db81a703 lw x14, -584(x3) x14=00000000 x3:1c0093dc PA:1c009194 +75833992ns 1375291 1c0039f4 db818693 addi x13, x3, -584 x13=1c009194 x3:1c0093dc +75834011ns 1375292 1c0039f8 00e00433 add x8, x0, x14 x8=00000000 x14:00000000 +75834031ns 1375293 1c0039fa 04041363 bne x8, x0, 70 x8:00000000 +75834051ns 1375294 1c0039fc dbc18413 addi x8, x3, -580 x8=1c009198 x3:1c0093dc +75834071ns 1375295 1c003a00 00042783 lw x15, 0(x8) x15=1c0091b0 x8:1c009198 PA:1c009198 +75834110ns 1375297 1c003a02 00079563 bne x15, x0, 10 x15:1c0091b0 +75834170ns 1375300 1c003a0c 009005b3 add x11, x0, x9 x11=00000044 x9:00000044 +75834190ns 1375301 1c003a0e 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +75834209ns 1375302 1c003a10 5cc000ef jal x1, 1484 x1=1c003a12 +75834249ns 1375304 1c003fdc ff010113 addi x2, x2, -16 x2=1c009b70 x2:1c009b80 +75834269ns 1375305 1c003fde 00812423 sw x8, 8(x2) x8:1c009198 x2:1c009b70 PA:1c009b78 +75834289ns 1375306 1c003fe0 00912223 sw x9, 4(x2) x9:00000044 x2:1c009b70 PA:1c009b74 +75834308ns 1375307 1c003fe2 00a00433 add x8, x0, x10 x8=1c009e10 x10:1c009e10 +75834328ns 1375308 1c003fe4 00b00533 add x10, x0, x11 x10=00000044 x11:00000044 +75834348ns 1375309 1c003fe6 00112623 sw x1, 12(x2) x1:1c003a12 x2:1c009b70 PA:1c009b7c +75834368ns 1375310 1c003fe8 dc01a023 sw x0, -576(x3) x3:1c0093dc PA:1c00919c +75834387ns 1375311 1c003fec a53fe0ef jal x1, -5550 x1=1c003ff0 +75834447ns 1375314 1c002a3e 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +75834467ns 1375315 1c002a42 c3c78793 addi x15, x15, -964 x15=1c008c3c x15:1c009000 +75834486ns 1375316 1c002a46 00a00733 add x14, x0, x10 x14=00000044 x10:00000044 +75834506ns 1375317 1c002a48 0007a503 lw x10, 0(x15) x10=1c00b8bc x15:1c008c3c PA:1c008c3c +75834526ns 1375318 1c002a4a 1c0196b7 lui x13, 0x1c019000 x13=1c019000 +75834546ns 1375319 1c002a4e 1b068693 addi x13, x13, 432 x13=1c0191b0 x13:1c019000 +75834566ns 1375320 1c002a52 00a70733 add x14, x14, x10 x14=1c00b900 x14:00000044 x10:1c00b8bc +75834585ns 1375321 1c002a54 00d76763 bltu x14, x13, 14 x14:1c00b900 x13:1c0191b0 +75834645ns 1375324 1c002a62 00e7a023 sw x14, 0(x15) x14:1c00b900 x15:1c008c3c PA:1c008c3c +75834665ns 1375325 1c002a64 00008067 jalr x0, x1, 0 x1:1c003ff0 +75834704ns 1375327 1c003ff0 fff00793 addi x15, x0, -1 x15=ffffffff +75834724ns 1375328 1c003ff2 00f51663 bne x10, x15, 12 x10:1c00b8bc x15:ffffffff +75834783ns 1375331 1c003ffe 00c12083 lw x1, 12(x2) x1=1c003a12 x2:1c009b70 PA:1c009b7c +75834803ns 1375332 1c004000 00812403 lw x8, 8(x2) x8=1c009198 x2:1c009b70 PA:1c009b78 +75834823ns 1375333 1c004002 00412483 lw x9, 4(x2) x9=00000044 x2:1c009b70 PA:1c009b74 +75834843ns 1375334 1c004004 01010113 addi x2, x2, 16 x2=1c009b80 x2:1c009b70 +75834862ns 1375335 1c004006 00008067 jalr x0, x1, 0 x1:1c003a12 +75834902ns 1375337 1c003a12 fff00993 addi x19, x0, -1 x19=ffffffff +75834922ns 1375338 1c003a14 07351a63 bne x10, x19, 116 x10:1c00b8bc x19:ffffffff +75834981ns 1375341 1c003a88 00350413 addi x8, x10, 3 x8=1c00b8bf x10:1c00b8bc +75835001ns 1375342 1c003a8c ffc47413 andi x8, x8, -4 x8=1c00b8bc x8:1c00b8bf +75835021ns 1375343 1c003a8e fc8502e3 beq x10, x8, -60 x10:1c00b8bc x8:1c00b8bc +75835080ns 1375346 1c003a52 00942023 sw x9, 0(x8) x9:00000044 x8:1c00b8bc PA:1c00b8bc +75835100ns 1375347 1c003a54 00a0006f jal x0, 10 +75835140ns 1375349 1c003a5e 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +75835159ns 1375350 1c003a60 80aff0ef jal x1, -4086 x1=1c003a64 +75835219ns 1375353 1c002a6a 8e3ff06f jal x0, -1822 +75835258ns 1375355 1c00234c fc010113 addi x2, x2, -64 x2=1c009b40 x2:1c009b80 +75835278ns 1375356 1c00234e 02812c23 sw x8, 56(x2) x8:1c00b8bc x2:1c009b40 PA:1c009b78 +75835298ns 1375357 1c002350 d6818413 addi x8, x3, -664 x8=1c009144 x3:1c0093dc +75835318ns 1375358 1c002354 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +75835337ns 1375359 1c002356 02112e23 sw x1, 60(x2) x1:1c003a64 x2:1c009b40 PA:1c009b7c +75835357ns 1375360 1c002358 02912a23 sw x9, 52(x2) x9:00000044 x2:1c009b40 PA:1c009b74 +75835377ns 1375361 1c00235a 03212823 sw x18, 48(x2) x18:1c009e10 x2:1c009b40 PA:1c009b70 +75835397ns 1375362 1c00235c 03312623 sw x19, 44(x2) x19:ffffffff x2:1c009b40 PA:1c009b6c +75835417ns 1375363 1c00235e 03412423 sw x20, 40(x2) x20:1c009be8 x2:1c009b40 PA:1c009b68 +75835436ns 1375364 1c002360 03512223 sw x21, 36(x2) x21:00000003 x2:1c009b40 PA:1c009b64 +75835456ns 1375365 1c002362 03612023 sw x22, 32(x2) x22:a5a5a5a5 x2:1c009b40 PA:1c009b60 +75835476ns 1375366 1c002364 01712e23 sw x23, 28(x2) x23:a5a5a5a5 x2:1c009b40 PA:1c009b5c +75835496ns 1375367 1c002366 02079263 bne x15, x0, 36 x15:00000001 +75835575ns 1375371 1c00238a c83ff0ef jal x1, -894 x1=1c00238e +75835615ns 1375373 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +75835694ns 1375377 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +75835733ns 1375379 1c002014 00078863 beq x15, x0, 16 x15:00000001 +75835753ns 1375380 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +75835773ns 1375381 1c00201a 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +75835793ns 1375382 1c00201c 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +75835812ns 1375383 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c009db8 PA:1c009dfc +75835852ns 1375385 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +75835872ns 1375386 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c009db8 PA:1c009dfc +75835892ns 1375387 1c002024 00008067 jalr x0, x1, 0 x1:1c00238e +75835931ns 1375389 1c00238e 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +75835971ns 1375391 1c002390 fff78793 addi x15, x15, -1 x15=00000000 x15:00000001 +75835991ns 1375392 1c002392 00f42023 sw x15, 0(x8) x15:00000000 x8:1c009144 PA:1c009144 +75836010ns 1375393 1c002394 00042783 lw x15, 0(x8) x15=00000000 x8:1c009144 PA:1c009144 +75836050ns 1375395 1c002396 02078163 beq x15, x0, 34 x15:00000000 +75836109ns 1375398 1c0023b8 d601a783 lw x15, -672(x3) x15=00000003 x3:1c0093dc PA:1c00913c +75836149ns 1375400 1c0023bc fc078ee3 beq x15, x0, -36 x15:00000003 +75836169ns 1375401 1c0023be 1c009937 lui x18, 0x1c009000 x18=1c009000 +75836189ns 1375402 1c0023c2 00000413 addi x8, x0, 0 x8=00000000 +75836208ns 1375403 1c0023c4 93818493 addi x9, x3, -1736 x9=1c008d14 x3:1c0093dc +75836228ns 1375404 1c0023c8 00100993 addi x19, x0, 1 x19=00000001 +75836248ns 1375405 1c0023ca c8890913 addi x18, x18, -888 x18=1c008c88 x18:1c009000 +75836268ns 1375406 1c0023ce 01400a93 addi x21, x0, 20 x21=00000014 +75836287ns 1375407 1c0023d0 04c0006f jal x0, 76 +75836327ns 1375409 1c00241c 0004a783 lw x15, 0(x9) x15=00000000 x9:1c008d14 PA:1c008d14 +75836367ns 1375411 1c00241e fa079ae3 bne x15, x0, -76 x15:00000000 +75836386ns 1375412 1c002420 00040363 beq x8, x0, 6 x8:00000000 +75836466ns 1375416 1c002426 d8018713 addi x14, x3, -640 x14=1c00915c x3:1c0093dc +75836485ns 1375417 1c00242a 00072483 lw x9, 0(x14) x9=00000000 x14:1c00915c PA:1c00915c +75836505ns 1375418 1c00242c d8018413 addi x8, x3, -640 x8=1c00915c x3:1c0093dc +75836525ns 1375419 1c002430 00048d63 beq x9, x0, 26 x9:00000000 +75836604ns 1375423 1c00244a d8c1a783 lw x15, -628(x3) x15=00000000 x3:1c0093dc PA:1c009168 +75836644ns 1375425 1c00244e f40785e3 beq x15, x0, -182 x15:00000000 +75836703ns 1375428 1c002398 00000513 addi x10, x0, 0 x10=00000000 +75836723ns 1375429 1c00239a 00a12623 sw x10, 12(x2) x10:00000000 x2:1c009b40 PA:1c009b4c +75836743ns 1375430 1c00239c c8bff0ef jal x1, -886 x1=1c0023a0 +75836802ns 1375433 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +75836842ns 1375435 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +75836861ns 1375436 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +75836881ns 1375437 1c002030 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +75836921ns 1375439 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c009db8 PA:1c009dfc +75836960ns 1375441 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +75836980ns 1375442 1c002036 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +75837000ns 1375443 1c002038 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +75837020ns 1375444 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c009db8 PA:1c009dfc +75837059ns 1375446 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +75837079ns 1375447 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c009db8 PA:1c009dfc +75837099ns 1375448 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c009db8 PA:1c009dfc +75837139ns 1375450 1c002042 00079363 bne x15, x0, 6 x15:00000000 +75837158ns 1375451 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +75837238ns 1375455 1c002048 00008067 jalr x0, x1, 0 x1:1c0023a0 +75837277ns 1375457 1c0023a0 03c12083 lw x1, 60(x2) x1=1c003a64 x2:1c009b40 PA:1c009b7c +75837297ns 1375458 1c0023a2 03812403 lw x8, 56(x2) x8=1c00b8bc x2:1c009b40 PA:1c009b78 +75837317ns 1375459 1c0023a4 00c12503 lw x10, 12(x2) x10=00000000 x2:1c009b40 PA:1c009b4c +75837336ns 1375460 1c0023a6 03412483 lw x9, 52(x2) x9=00000044 x2:1c009b40 PA:1c009b74 +75837356ns 1375461 1c0023a8 03012903 lw x18, 48(x2) x18=1c009e10 x2:1c009b40 PA:1c009b70 +75837376ns 1375462 1c0023aa 02c12983 lw x19, 44(x2) x19=ffffffff x2:1c009b40 PA:1c009b6c +75837396ns 1375463 1c0023ac 02812a03 lw x20, 40(x2) x20=1c009be8 x2:1c009b40 PA:1c009b68 +75837416ns 1375464 1c0023ae 02412a83 lw x21, 36(x2) x21=00000003 x2:1c009b40 PA:1c009b64 +75837435ns 1375465 1c0023b0 02012b03 lw x22, 32(x2) x22=a5a5a5a5 x2:1c009b40 PA:1c009b60 +75837455ns 1375466 1c0023b2 01c12b83 lw x23, 28(x2) x23=a5a5a5a5 x2:1c009b40 PA:1c009b5c +75837475ns 1375467 1c0023b4 04010113 addi x2, x2, 64 x2=1c009b80 x2:1c009b40 +75837495ns 1375468 1c0023b6 00008067 jalr x0, x1, 0 x1:1c003a64 +75837534ns 1375470 1c003a64 00b40513 addi x10, x8, 11 x10=1c00b8c7 x8:1c00b8bc +75837554ns 1375471 1c003a68 00440793 addi x15, x8, 4 x15=1c00b8c0 x8:1c00b8bc +75837574ns 1375472 1c003a6c ff857513 andi x10, x10, -8 x10=1c00b8c0 x10:1c00b8c7 +75837594ns 1375473 1c003a6e 40f50733 sub x14, x10, x15 x14=00000000 x10:1c00b8c0 x15:1c00b8c0 +75837614ns 1375474 1c003a72 fcf500e3 beq x10, x15, -64 x10:1c00b8c0 x15:1c00b8c0 +75837673ns 1375477 1c003a32 01c12083 lw x1, 28(x2) x1=1c002fc8 x2:1c009b80 PA:1c009b9c +75837693ns 1375478 1c003a34 01812403 lw x8, 24(x2) x8=1c009bec x2:1c009b80 PA:1c009b98 +75837713ns 1375479 1c003a36 01412483 lw x9, 20(x2) x9=1c00b890 x2:1c009b80 PA:1c009b94 +75837732ns 1375480 1c003a38 01012903 lw x18, 16(x2) x18=1c009180 x2:1c009b80 PA:1c009b90 +75837752ns 1375481 1c003a3a 00c12983 lw x19, 12(x2) x19=00000088 x2:1c009b80 PA:1c009b8c +75837772ns 1375482 1c003a3c 02010113 addi x2, x2, 32 x2=1c009ba0 x2:1c009b80 +75837792ns 1375483 1c003a3e 00008067 jalr x0, x1, 0 x1:1c002fc8 +75837831ns 1375485 1c002fc8 00a00933 add x18, x0, x10 x18=1c00b8c0 x10:1c00b8c0 +75837851ns 1375486 1c002fca 00051e63 bne x10, x0, 28 x10:1c00b8c0 +75837930ns 1375490 1c002fe6 0ff00793 addi x15, x0, 255 x15=000000ff +75837950ns 1375491 1c002fea 0157f763 bgeu x15, x21, 14 x15:000000ff x21:00000003 +75838009ns 1375494 1c002ff8 00000593 addi x11, x0, 0 x11=00000000 +75838029ns 1375495 1c002ffa 03c00613 addi x12, x0, 60 x12=0000003c +75838049ns 1375496 1c002ffe e7dfd0ef jal x1, -8580 x1=1c003002 +75838089ns 1375498 1c000e7a 00a00333 add x6, x0, x10 x6=1c00b8c0 x10:1c00b8c0 +75838108ns 1375499 1c000e7c 00060663 beq x12, x0, 12 x12:0000003c +75838128ns 1375500 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b8c0 PA:1c00b8c0 +75838148ns 1375501 1c000e82 fff60613 addi x12, x12, -1 x12=0000003b x12:0000003c +75838168ns 1375502 1c000e84 00130313 addi x6, x6, 1 x6=1c00b8c1 x6:1c00b8c0 +75838188ns 1375503 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000003b +75838267ns 1375507 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b8c1 PA:1c00b8c1 +75838286ns 1375508 1c000e82 fff60613 addi x12, x12, -1 x12=0000003a x12:0000003b +75838306ns 1375509 1c000e84 00130313 addi x6, x6, 1 x6=1c00b8c2 x6:1c00b8c1 +75838326ns 1375510 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000003a +75838405ns 1375514 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b8c2 PA:1c00b8c2 +75838425ns 1375515 1c000e82 fff60613 addi x12, x12, -1 x12=00000039 x12:0000003a +75838445ns 1375516 1c000e84 00130313 addi x6, x6, 1 x6=1c00b8c3 x6:1c00b8c2 +75838465ns 1375517 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000039 +75838544ns 1375521 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b8c3 PA:1c00b8c3 +75838564ns 1375522 1c000e82 fff60613 addi x12, x12, -1 x12=00000038 x12:00000039 +75838583ns 1375523 1c000e84 00130313 addi x6, x6, 1 x6=1c00b8c4 x6:1c00b8c3 +75838603ns 1375524 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000038 +75838682ns 1375528 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b8c4 PA:1c00b8c4 +75838702ns 1375529 1c000e82 fff60613 addi x12, x12, -1 x12=00000037 x12:00000038 +75838722ns 1375530 1c000e84 00130313 addi x6, x6, 1 x6=1c00b8c5 x6:1c00b8c4 +75838742ns 1375531 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000037 +75838821ns 1375535 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b8c5 PA:1c00b8c5 +75838841ns 1375536 1c000e82 fff60613 addi x12, x12, -1 x12=00000036 x12:00000037 +75838860ns 1375537 1c000e84 00130313 addi x6, x6, 1 x6=1c00b8c6 x6:1c00b8c5 +75838880ns 1375538 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000036 +75838959ns 1375542 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b8c6 PA:1c00b8c6 +75838979ns 1375543 1c000e82 fff60613 addi x12, x12, -1 x12=00000035 x12:00000036 +75838999ns 1375544 1c000e84 00130313 addi x6, x6, 1 x6=1c00b8c7 x6:1c00b8c6 +75839019ns 1375545 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000035 +75839098ns 1375549 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b8c7 PA:1c00b8c7 +75839118ns 1375550 1c000e82 fff60613 addi x12, x12, -1 x12=00000034 x12:00000035 +75839138ns 1375551 1c000e84 00130313 addi x6, x6, 1 x6=1c00b8c8 x6:1c00b8c7 +75839157ns 1375552 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000034 +75839237ns 1375556 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b8c8 PA:1c00b8c8 +75839256ns 1375557 1c000e82 fff60613 addi x12, x12, -1 x12=00000033 x12:00000034 +75839276ns 1375558 1c000e84 00130313 addi x6, x6, 1 x6=1c00b8c9 x6:1c00b8c8 +75839296ns 1375559 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000033 +75839375ns 1375563 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b8c9 PA:1c00b8c9 +75839395ns 1375564 1c000e82 fff60613 addi x12, x12, -1 x12=00000032 x12:00000033 +75839415ns 1375565 1c000e84 00130313 addi x6, x6, 1 x6=1c00b8ca x6:1c00b8c9 +75839434ns 1375566 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000032 +75839514ns 1375570 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b8ca PA:1c00b8ca +75839533ns 1375571 1c000e82 fff60613 addi x12, x12, -1 x12=00000031 x12:00000032 +75839553ns 1375572 1c000e84 00130313 addi x6, x6, 1 x6=1c00b8cb x6:1c00b8ca +75839573ns 1375573 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000031 +75839652ns 1375577 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b8cb PA:1c00b8cb +75839672ns 1375578 1c000e82 fff60613 addi x12, x12, -1 x12=00000030 x12:00000031 +75839692ns 1375579 1c000e84 00130313 addi x6, x6, 1 x6=1c00b8cc x6:1c00b8cb +75839712ns 1375580 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000030 +75839791ns 1375584 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b8cc PA:1c00b8cc +75839810ns 1375585 1c000e82 fff60613 addi x12, x12, -1 x12=0000002f x12:00000030 +75839830ns 1375586 1c000e84 00130313 addi x6, x6, 1 x6=1c00b8cd x6:1c00b8cc +75839850ns 1375587 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000002f +75839929ns 1375591 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b8cd PA:1c00b8cd +75839949ns 1375592 1c000e82 fff60613 addi x12, x12, -1 x12=0000002e x12:0000002f +75839969ns 1375593 1c000e84 00130313 addi x6, x6, 1 x6=1c00b8ce x6:1c00b8cd +75839989ns 1375594 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000002e +75840068ns 1375598 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b8ce PA:1c00b8ce +75840088ns 1375599 1c000e82 fff60613 addi x12, x12, -1 x12=0000002d x12:0000002e +75840107ns 1375600 1c000e84 00130313 addi x6, x6, 1 x6=1c00b8cf x6:1c00b8ce +75840127ns 1375601 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000002d +75840206ns 1375605 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b8cf PA:1c00b8cf +75840226ns 1375606 1c000e82 fff60613 addi x12, x12, -1 x12=0000002c x12:0000002d +75840246ns 1375607 1c000e84 00130313 addi x6, x6, 1 x6=1c00b8d0 x6:1c00b8cf +75840266ns 1375608 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000002c +75840345ns 1375612 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b8d0 PA:1c00b8d0 +75840365ns 1375613 1c000e82 fff60613 addi x12, x12, -1 x12=0000002b x12:0000002c +75840384ns 1375614 1c000e84 00130313 addi x6, x6, 1 x6=1c00b8d1 x6:1c00b8d0 +75840404ns 1375615 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000002b +75840483ns 1375619 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b8d1 PA:1c00b8d1 +75840503ns 1375620 1c000e82 fff60613 addi x12, x12, -1 x12=0000002a x12:0000002b +75840523ns 1375621 1c000e84 00130313 addi x6, x6, 1 x6=1c00b8d2 x6:1c00b8d1 +75840543ns 1375622 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000002a +75840622ns 1375626 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b8d2 PA:1c00b8d2 +75840642ns 1375627 1c000e82 fff60613 addi x12, x12, -1 x12=00000029 x12:0000002a +75840662ns 1375628 1c000e84 00130313 addi x6, x6, 1 x6=1c00b8d3 x6:1c00b8d2 +75840681ns 1375629 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000029 +75840760ns 1375633 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b8d3 PA:1c00b8d3 +75840780ns 1375634 1c000e82 fff60613 addi x12, x12, -1 x12=00000028 x12:00000029 +75840800ns 1375635 1c000e84 00130313 addi x6, x6, 1 x6=1c00b8d4 x6:1c00b8d3 +75840820ns 1375636 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000028 +75840899ns 1375640 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b8d4 PA:1c00b8d4 +75840919ns 1375641 1c000e82 fff60613 addi x12, x12, -1 x12=00000027 x12:00000028 +75840939ns 1375642 1c000e84 00130313 addi x6, x6, 1 x6=1c00b8d5 x6:1c00b8d4 +75840958ns 1375643 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000027 +75841038ns 1375647 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b8d5 PA:1c00b8d5 +75841057ns 1375648 1c000e82 fff60613 addi x12, x12, -1 x12=00000026 x12:00000027 +75841077ns 1375649 1c000e84 00130313 addi x6, x6, 1 x6=1c00b8d6 x6:1c00b8d5 +75841097ns 1375650 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000026 +75841176ns 1375654 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b8d6 PA:1c00b8d6 +75841196ns 1375655 1c000e82 fff60613 addi x12, x12, -1 x12=00000025 x12:00000026 +75841216ns 1375656 1c000e84 00130313 addi x6, x6, 1 x6=1c00b8d7 x6:1c00b8d6 +75841235ns 1375657 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000025 +75841315ns 1375661 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b8d7 PA:1c00b8d7 +75841334ns 1375662 1c000e82 fff60613 addi x12, x12, -1 x12=00000024 x12:00000025 +75841354ns 1375663 1c000e84 00130313 addi x6, x6, 1 x6=1c00b8d8 x6:1c00b8d7 +75841374ns 1375664 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000024 +75841453ns 1375668 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b8d8 PA:1c00b8d8 +75841473ns 1375669 1c000e82 fff60613 addi x12, x12, -1 x12=00000023 x12:00000024 +75841493ns 1375670 1c000e84 00130313 addi x6, x6, 1 x6=1c00b8d9 x6:1c00b8d8 +75841513ns 1375671 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000023 +75841592ns 1375675 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b8d9 PA:1c00b8d9 +75841612ns 1375676 1c000e82 fff60613 addi x12, x12, -1 x12=00000022 x12:00000023 +75841631ns 1375677 1c000e84 00130313 addi x6, x6, 1 x6=1c00b8da x6:1c00b8d9 +75841651ns 1375678 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000022 +75841730ns 1375682 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b8da PA:1c00b8da +75841750ns 1375683 1c000e82 fff60613 addi x12, x12, -1 x12=00000021 x12:00000022 +75841770ns 1375684 1c000e84 00130313 addi x6, x6, 1 x6=1c00b8db x6:1c00b8da +75841790ns 1375685 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000021 +75841869ns 1375689 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b8db PA:1c00b8db +75841889ns 1375690 1c000e82 fff60613 addi x12, x12, -1 x12=00000020 x12:00000021 +75841908ns 1375691 1c000e84 00130313 addi x6, x6, 1 x6=1c00b8dc x6:1c00b8db +75841928ns 1375692 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000020 +75842007ns 1375696 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b8dc PA:1c00b8dc +75842027ns 1375697 1c000e82 fff60613 addi x12, x12, -1 x12=0000001f x12:00000020 +75842047ns 1375698 1c000e84 00130313 addi x6, x6, 1 x6=1c00b8dd x6:1c00b8dc +75842067ns 1375699 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000001f +75842146ns 1375703 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b8dd PA:1c00b8dd +75842166ns 1375704 1c000e82 fff60613 addi x12, x12, -1 x12=0000001e x12:0000001f +75842186ns 1375705 1c000e84 00130313 addi x6, x6, 1 x6=1c00b8de x6:1c00b8dd +75842205ns 1375706 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000001e +75842284ns 1375710 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b8de PA:1c00b8de +75842304ns 1375711 1c000e82 fff60613 addi x12, x12, -1 x12=0000001d x12:0000001e +75842324ns 1375712 1c000e84 00130313 addi x6, x6, 1 x6=1c00b8df x6:1c00b8de +75842344ns 1375713 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000001d +75842423ns 1375717 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b8df PA:1c00b8df +75842443ns 1375718 1c000e82 fff60613 addi x12, x12, -1 x12=0000001c x12:0000001d +75842463ns 1375719 1c000e84 00130313 addi x6, x6, 1 x6=1c00b8e0 x6:1c00b8df +75842482ns 1375720 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000001c +75842562ns 1375724 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b8e0 PA:1c00b8e0 +75842581ns 1375725 1c000e82 fff60613 addi x12, x12, -1 x12=0000001b x12:0000001c +75842601ns 1375726 1c000e84 00130313 addi x6, x6, 1 x6=1c00b8e1 x6:1c00b8e0 +75842621ns 1375727 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000001b +75842700ns 1375731 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b8e1 PA:1c00b8e1 +75842720ns 1375732 1c000e82 fff60613 addi x12, x12, -1 x12=0000001a x12:0000001b +75842740ns 1375733 1c000e84 00130313 addi x6, x6, 1 x6=1c00b8e2 x6:1c00b8e1 +75842759ns 1375734 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000001a +75842839ns 1375738 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b8e2 PA:1c00b8e2 +75842858ns 1375739 1c000e82 fff60613 addi x12, x12, -1 x12=00000019 x12:0000001a +75842878ns 1375740 1c000e84 00130313 addi x6, x6, 1 x6=1c00b8e3 x6:1c00b8e2 +75842898ns 1375741 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000019 +75842977ns 1375745 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b8e3 PA:1c00b8e3 +75842997ns 1375746 1c000e82 fff60613 addi x12, x12, -1 x12=00000018 x12:00000019 +75843017ns 1375747 1c000e84 00130313 addi x6, x6, 1 x6=1c00b8e4 x6:1c00b8e3 +75843037ns 1375748 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000018 +75843116ns 1375752 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b8e4 PA:1c00b8e4 +75843136ns 1375753 1c000e82 fff60613 addi x12, x12, -1 x12=00000017 x12:00000018 +75843155ns 1375754 1c000e84 00130313 addi x6, x6, 1 x6=1c00b8e5 x6:1c00b8e4 +75843175ns 1375755 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000017 +75843254ns 1375759 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b8e5 PA:1c00b8e5 +75843274ns 1375760 1c000e82 fff60613 addi x12, x12, -1 x12=00000016 x12:00000017 +75843294ns 1375761 1c000e84 00130313 addi x6, x6, 1 x6=1c00b8e6 x6:1c00b8e5 +75843314ns 1375762 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000016 +75843393ns 1375766 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b8e6 PA:1c00b8e6 +75843413ns 1375767 1c000e82 fff60613 addi x12, x12, -1 x12=00000015 x12:00000016 +75843432ns 1375768 1c000e84 00130313 addi x6, x6, 1 x6=1c00b8e7 x6:1c00b8e6 +75843452ns 1375769 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000015 +75843531ns 1375773 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b8e7 PA:1c00b8e7 +75843551ns 1375774 1c000e82 fff60613 addi x12, x12, -1 x12=00000014 x12:00000015 +75843571ns 1375775 1c000e84 00130313 addi x6, x6, 1 x6=1c00b8e8 x6:1c00b8e7 +75843591ns 1375776 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000014 +75843670ns 1375780 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b8e8 PA:1c00b8e8 +75843690ns 1375781 1c000e82 fff60613 addi x12, x12, -1 x12=00000013 x12:00000014 +75843709ns 1375782 1c000e84 00130313 addi x6, x6, 1 x6=1c00b8e9 x6:1c00b8e8 +75843729ns 1375783 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000013 +75843808ns 1375787 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b8e9 PA:1c00b8e9 +75843828ns 1375788 1c000e82 fff60613 addi x12, x12, -1 x12=00000012 x12:00000013 +75843848ns 1375789 1c000e84 00130313 addi x6, x6, 1 x6=1c00b8ea x6:1c00b8e9 +75843868ns 1375790 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000012 +75843947ns 1375794 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b8ea PA:1c00b8ea +75843967ns 1375795 1c000e82 fff60613 addi x12, x12, -1 x12=00000011 x12:00000012 +75843987ns 1375796 1c000e84 00130313 addi x6, x6, 1 x6=1c00b8eb x6:1c00b8ea +75844006ns 1375797 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000011 +75844086ns 1375801 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b8eb PA:1c00b8eb +75844105ns 1375802 1c000e82 fff60613 addi x12, x12, -1 x12=00000010 x12:00000011 +75844125ns 1375803 1c000e84 00130313 addi x6, x6, 1 x6=1c00b8ec x6:1c00b8eb +75844145ns 1375804 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000010 +75844224ns 1375808 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b8ec PA:1c00b8ec +75844244ns 1375809 1c000e82 fff60613 addi x12, x12, -1 x12=0000000f x12:00000010 +75844264ns 1375810 1c000e84 00130313 addi x6, x6, 1 x6=1c00b8ed x6:1c00b8ec +75844283ns 1375811 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000000f +75844363ns 1375815 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b8ed PA:1c00b8ed +75844382ns 1375816 1c000e82 fff60613 addi x12, x12, -1 x12=0000000e x12:0000000f +75844402ns 1375817 1c000e84 00130313 addi x6, x6, 1 x6=1c00b8ee x6:1c00b8ed +75844422ns 1375818 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000000e +75844501ns 1375822 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b8ee PA:1c00b8ee +75844521ns 1375823 1c000e82 fff60613 addi x12, x12, -1 x12=0000000d x12:0000000e +75844541ns 1375824 1c000e84 00130313 addi x6, x6, 1 x6=1c00b8ef x6:1c00b8ee +75844561ns 1375825 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000000d +75844640ns 1375829 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b8ef PA:1c00b8ef +75844660ns 1375830 1c000e82 fff60613 addi x12, x12, -1 x12=0000000c x12:0000000d +75844679ns 1375831 1c000e84 00130313 addi x6, x6, 1 x6=1c00b8f0 x6:1c00b8ef +75844699ns 1375832 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000000c +75844778ns 1375836 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b8f0 PA:1c00b8f0 +75844798ns 1375837 1c000e82 fff60613 addi x12, x12, -1 x12=0000000b x12:0000000c +75844818ns 1375838 1c000e84 00130313 addi x6, x6, 1 x6=1c00b8f1 x6:1c00b8f0 +75844838ns 1375839 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000000b +75844917ns 1375843 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b8f1 PA:1c00b8f1 +75844937ns 1375844 1c000e82 fff60613 addi x12, x12, -1 x12=0000000a x12:0000000b +75844956ns 1375845 1c000e84 00130313 addi x6, x6, 1 x6=1c00b8f2 x6:1c00b8f1 +75844976ns 1375846 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000000a +75845055ns 1375850 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b8f2 PA:1c00b8f2 +75845075ns 1375851 1c000e82 fff60613 addi x12, x12, -1 x12=00000009 x12:0000000a +75845095ns 1375852 1c000e84 00130313 addi x6, x6, 1 x6=1c00b8f3 x6:1c00b8f2 +75845115ns 1375853 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000009 +75845194ns 1375857 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b8f3 PA:1c00b8f3 +75845214ns 1375858 1c000e82 fff60613 addi x12, x12, -1 x12=00000008 x12:00000009 +75845233ns 1375859 1c000e84 00130313 addi x6, x6, 1 x6=1c00b8f4 x6:1c00b8f3 +75845253ns 1375860 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000008 +75845332ns 1375864 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b8f4 PA:1c00b8f4 +75845352ns 1375865 1c000e82 fff60613 addi x12, x12, -1 x12=00000007 x12:00000008 +75845372ns 1375866 1c000e84 00130313 addi x6, x6, 1 x6=1c00b8f5 x6:1c00b8f4 +75845392ns 1375867 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000007 +75845471ns 1375871 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b8f5 PA:1c00b8f5 +75845491ns 1375872 1c000e82 fff60613 addi x12, x12, -1 x12=00000006 x12:00000007 +75845511ns 1375873 1c000e84 00130313 addi x6, x6, 1 x6=1c00b8f6 x6:1c00b8f5 +75845530ns 1375874 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000006 +75845610ns 1375878 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b8f6 PA:1c00b8f6 +75845629ns 1375879 1c000e82 fff60613 addi x12, x12, -1 x12=00000005 x12:00000006 +75845649ns 1375880 1c000e84 00130313 addi x6, x6, 1 x6=1c00b8f7 x6:1c00b8f6 +75845669ns 1375881 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000005 +75845748ns 1375885 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b8f7 PA:1c00b8f7 +75845768ns 1375886 1c000e82 fff60613 addi x12, x12, -1 x12=00000004 x12:00000005 +75845788ns 1375887 1c000e84 00130313 addi x6, x6, 1 x6=1c00b8f8 x6:1c00b8f7 +75845807ns 1375888 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000004 +75845887ns 1375892 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b8f8 PA:1c00b8f8 +75845906ns 1375893 1c000e82 fff60613 addi x12, x12, -1 x12=00000003 x12:00000004 +75845926ns 1375894 1c000e84 00130313 addi x6, x6, 1 x6=1c00b8f9 x6:1c00b8f8 +75845946ns 1375895 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000003 +75846025ns 1375899 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b8f9 PA:1c00b8f9 +75846045ns 1375900 1c000e82 fff60613 addi x12, x12, -1 x12=00000002 x12:00000003 +75846065ns 1375901 1c000e84 00130313 addi x6, x6, 1 x6=1c00b8fa x6:1c00b8f9 +75846085ns 1375902 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000002 +75846164ns 1375906 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b8fa PA:1c00b8fa +75846183ns 1375907 1c000e82 fff60613 addi x12, x12, -1 x12=00000001 x12:00000002 +75846203ns 1375908 1c000e84 00130313 addi x6, x6, 1 x6=1c00b8fb x6:1c00b8fa +75846223ns 1375909 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000001 +75846302ns 1375913 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b8fb PA:1c00b8fb +75846322ns 1375914 1c000e82 fff60613 addi x12, x12, -1 x12=00000000 x12:00000001 +75846342ns 1375915 1c000e84 00130313 addi x6, x6, 1 x6=1c00b8fc x6:1c00b8fb +75846362ns 1375916 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000000 +75846381ns 1375917 1c000e88 00008067 jalr x0, x1, 0 x1:1c003002 +75846421ns 1375919 1c003002 00042783 lw x15, 0(x8) x15=00989680 x8:1c009bec PA:1c009bec +75846441ns 1375920 1c003004 00544683 lbu x13, 5(x8) x13=00000001 x8:1c009bec PA:1c009bf1 +75846461ns 1375921 1c003008 00842703 lw x14, 8(x8) x14=00000000 x8:1c009bec PA:1c009bf4 +75846480ns 1375922 1c00300a 02f92623 sw x15, 44(x18) x15:00989680 x18:1c00b8c0 PA:1c00b8ec +75846500ns 1375923 1c00300e 02d90d23 sb x13, 58(x18) x13:00000001 x18:1c00b8c0 PA:1c00b8fa +75846520ns 1375924 1c003012 00c42783 lw x15, 12(x8) x15=00000000 x8:1c009bec PA:1c009bf8 +75846540ns 1375925 1c003014 00444683 lbu x13, 4(x8) x13=00000000 x8:1c009bec PA:1c009bf0 +75846560ns 1375926 1c003018 02e92823 sw x14, 48(x18) x14:00000000 x18:1c00b8c0 PA:1c00b8f0 +75846579ns 1375927 1c00301c 02f92a23 sw x15, 52(x18) x15:00000000 x18:1c00b8c0 PA:1c00b8f4 +75846599ns 1375928 1c003020 02d90ca3 sb x13, 57(x18) x13:00000000 x18:1c00b8c0 PA:1c00b8f9 +75846619ns 1375929 1c003024 00979793 slli x15, x15, 0x9 x15=00000000 x15:00000000 +75846639ns 1375930 1c003026 01044683 lbu x13, 16(x8) x13=00000000 x8:1c009bec PA:1c009bfc +75846659ns 1375931 1c00302a 00871713 slli x14, x14, 0x8 x14=00000000 x14:00000000 +75846678ns 1375932 1c00302c 00e7e7b3 or x15, x15, x14 x15=00000000 x15:00000000 x14:00000000 +75846698ns 1375933 1c00302e 0157e7b3 or x15, x15, x21 x15=00000003 x15:00000000 x21:00000003 +75846718ns 1375934 1c003032 02d90c23 sb x13, 56(x18) x13:00000000 x18:1c00b8c0 PA:1c00b8f8 +75846738ns 1375935 1c003036 00f92423 sw x15, 8(x18) x15:00000003 x18:1c00b8c0 PA:1c00b8c8 +75846757ns 1375936 1c00303a 012a2023 sw x18, 0(x20) x18:1c00b8c0 x20:1c009be8 PA:1c009be8 +75846777ns 1375937 1c00303e 012005b3 add x11, x0, x18 x11=1c00b8c0 x18:1c00b8c0 +75846797ns 1375938 1c003040 00900533 add x10, x0, x9 x10=1c00b890 x9:1c00b890 +75846817ns 1375939 1c003042 c01ff0ef jal x1, -1024 x1=1c003046 +75846856ns 1375941 1c002c42 00452783 lw x15, 4(x10) x15=00000000 x10:1c00b890 PA:1c00b894 +75846876ns 1375942 1c002c44 00a5a223 sw x10, 4(x11) x10:1c00b890 x11:1c00b8c0 PA:1c00b8c4 +75846896ns 1375943 1c002c46 00f5a023 sw x15, 0(x11) x15:00000000 x11:1c00b8c0 PA:1c00b8c0 +75846916ns 1375944 1c002c48 00008067 jalr x0, x1, 0 x1:1c003046 +75846955ns 1375946 1c003046 01300533 add x10, x0, x19 x10=00000088 x19:00000088 +75846975ns 1375947 1c003048 b71ff0ef jal x1, -1168 x1=1c00304c +75847015ns 1375949 1c002bb8 30051073 csrrw x0, x10, 0x300 x10:00000088 +75847094ns 1375953 1c002bbc 00008067 jalr x0, x1, 0 x1:1c00304c +75847134ns 1375955 1c00304c 00000513 addi x10, x0, 0 x10=00000000 +75847153ns 1375956 1c00304e f87ff06f jal x0, -122 +75847193ns 1375958 1c002fd4 01c12083 lw x1, 28(x2) x1=1c003550 x2:1c009ba0 PA:1c009bbc +75847213ns 1375959 1c002fd6 01812403 lw x8, 24(x2) x8=a5a5a5a5 x2:1c009ba0 PA:1c009bb8 +75847232ns 1375960 1c002fd8 01412483 lw x9, 20(x2) x9=a5a5a5a5 x2:1c009ba0 PA:1c009bb4 +75847252ns 1375961 1c002fda 01012903 lw x18, 16(x2) x18=a5a5a5a5 x2:1c009ba0 PA:1c009bb0 +75847272ns 1375962 1c002fdc 00c12983 lw x19, 12(x2) x19=a5a5a5a5 x2:1c009ba0 PA:1c009bac +75847292ns 1375963 1c002fde 00812a03 lw x20, 8(x2) x20=a5a5a5a5 x2:1c009ba0 PA:1c009ba8 +75847312ns 1375964 1c002fe0 00412a83 lw x21, 4(x2) x21=a5a5a5a5 x2:1c009ba0 PA:1c009ba4 +75847331ns 1375965 1c002fe2 02010113 addi x2, x2, 32 x2=1c009bc0 x2:1c009ba0 +75847351ns 1375966 1c002fe4 00008067 jalr x0, x1, 0 x1:1c003550 +75847391ns 1375968 1c003550 02050163 beq x10, x0, 34 x10:00000000 +75847450ns 1375971 1c003572 00a00433 add x8, x0, x10 x8=00000000 x10:00000000 +75847470ns 1375972 1c003574 1c009537 lui x10, 0x1c009000 x10=1c009000 +75847490ns 1375973 1c003578 89450513 addi x10, x10, -1900 x10=1c008894 x10:1c009000 +75847510ns 1375974 1c00357c 157000ef jal x1, 2390 x1=1c003580 +75847569ns 1375977 1c003ed2 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +75847589ns 1375978 1c003ed6 00a005b3 add x11, x0, x10 x11=1c008894 x10:1c008894 +75847609ns 1375979 1c003ed8 c447a503 lw x10, -956(x15) x10=1c009e10 x15:1c009000 PA:1c008c44 +75847628ns 1375980 1c003edc f19ff06f jal x0, -232 +75847668ns 1375982 1c003df4 fe010113 addi x2, x2, -32 x2=1c009ba0 x2:1c009bc0 +75847688ns 1375983 1c003df6 00912a23 sw x9, 20(x2) x9:a5a5a5a5 x2:1c009ba0 PA:1c009bb4 +75847707ns 1375984 1c003df8 01212823 sw x18, 16(x2) x18:a5a5a5a5 x2:1c009ba0 PA:1c009bb0 +75847727ns 1375985 1c003dfa 00112e23 sw x1, 28(x2) x1:1c003580 x2:1c009ba0 PA:1c009bbc +75847747ns 1375986 1c003dfc 00812c23 sw x8, 24(x2) x8:00000000 x2:1c009ba0 PA:1c009bb8 +75847767ns 1375987 1c003dfe 01312623 sw x19, 12(x2) x19:a5a5a5a5 x2:1c009ba0 PA:1c009bac +75847787ns 1375988 1c003e00 01412423 sw x20, 8(x2) x20:a5a5a5a5 x2:1c009ba0 PA:1c009ba8 +75847806ns 1375989 1c003e02 00a004b3 add x9, x0, x10 x9=1c009e10 x10:1c009e10 +75847826ns 1375990 1c003e04 00b00933 add x18, x0, x11 x18=1c008894 x11:1c008894 +75847846ns 1375991 1c003e06 00050563 beq x10, x0, 10 x10:1c009e10 +75847866ns 1375992 1c003e08 01852783 lw x15, 24(x10) x15=00000000 x10:1c009e10 PA:1c009e28 +75847905ns 1375994 1c003e0a 00079363 bne x15, x0, 6 x15:00000000 +75847925ns 1375995 1c003e0c 019000ef jal x1, 2072 x1=1c003e10 +75847965ns 1375997 1c004624 01852783 lw x15, 24(x10) x15=00000000 x10:1c009e10 PA:1c009e28 +75848004ns 1375999 1c004626 06079663 bne x15, x0, 108 x15:00000000 +75848024ns 1376000 1c004628 ff010113 addi x2, x2, -16 x2=1c009b90 x2:1c009ba0 +75848044ns 1376001 1c00462a 1c0047b7 lui x15, 0x1c004000 x15=1c004000 +75848064ns 1376002 1c00462e 00812423 sw x8, 8(x2) x8:00000000 x2:1c009b90 PA:1c009b98 +75848084ns 1376003 1c004630 00112623 sw x1, 12(x2) x1:1c003e10 x2:1c009b90 PA:1c009b9c +75848103ns 1376004 1c004632 5d278793 addi x15, x15, 1490 x15=1c0045d2 x15:1c004000 +75848123ns 1376005 1c004636 02f52423 sw x15, 40(x10) x15:1c0045d2 x10:1c009e10 PA:1c009e38 +75848143ns 1376006 1c004638 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +75848163ns 1376007 1c00463c bd87a783 lw x15, -1064(x15) x15=1c008bdc x15:1c009000 PA:1c008bd8 +75848182ns 1376008 1c004640 04052423 sw x0, 72(x10) x10:1c009e10 PA:1c009e58 +75848202ns 1376009 1c004644 04052623 sw x0, 76(x10) x10:1c009e10 PA:1c009e5c +75848222ns 1376010 1c004648 04052823 sw x0, 80(x10) x10:1c009e10 PA:1c009e60 +75848242ns 1376011 1c00464c 00a00433 add x8, x0, x10 x8=1c009e10 x10:1c009e10 +75848262ns 1376012 1c00464e 00f51463 bne x10, x15, 8 x10:1c009e10 x15:1c008bdc +75848321ns 1376015 1c004656 00800533 add x10, x0, x8 x10=1c009e10 x8:1c009e10 +75848341ns 1376016 1c004658 03c000ef jal x1, 60 x1=1c00465a +75848380ns 1376018 1c004694 ff010113 addi x2, x2, -16 x2=1c009b80 x2:1c009b90 +75848400ns 1376019 1c004696 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +75848420ns 1376020 1c00469a 00912223 sw x9, 4(x2) x9:1c009e10 x2:1c009b80 PA:1c009b84 +75848440ns 1376021 1c00469c bd87a483 lw x9, -1064(x15) x9=1c008bdc x15:1c009000 PA:1c008bd8 +75848460ns 1376022 1c0046a0 01212023 sw x18, 0(x2) x18:1c008894 x2:1c009b80 PA:1c009b80 +75848479ns 1376023 1c0046a2 00112623 sw x1, 12(x2) x1:1c00465a x2:1c009b80 PA:1c009b8c +75848499ns 1376024 1c0046a4 0184a783 lw x15, 24(x9) x15=00000001 x9:1c008bdc PA:1c008bf4 +75848519ns 1376025 1c0046a6 00812423 sw x8, 8(x2) x8:1c009e10 x2:1c009b80 PA:1c009b88 +75848539ns 1376026 1c0046a8 00a00933 add x18, x0, x10 x18=1c009e10 x10:1c009e10 +75848559ns 1376027 1c0046aa 00079463 bne x15, x0, 8 x15:00000001 +75848638ns 1376031 1c0046b2 04848493 addi x9, x9, 72 x9=1c008c24 x9:1c008bdc +75848657ns 1376032 1c0046b6 0084a403 lw x8, 8(x9) x8=00000000 x9:1c008c24 PA:1c008c2c +75848677ns 1376033 1c0046b8 0044a783 lw x15, 4(x9) x15=00000000 x9:1c008c24 PA:1c008c28 +75848717ns 1376035 1c0046ba fff78793 addi x15, x15, -1 x15=ffffffff x15:00000000 +75848737ns 1376036 1c0046bc 0007d663 bge x15, x0, 12 x15:ffffffff +75848756ns 1376037 1c0046c0 0004a783 lw x15, 0(x9) x15=1c0091b8 x9:1c008c24 PA:1c008c24 +75848796ns 1376039 1c0046c2 04078f63 beq x15, x0, 94 x15:1c0091b8 +75848816ns 1376040 1c0046c4 0004a483 lw x9, 0(x9) x9=1c0091b8 x9:1c008c24 PA:1c008c24 +75848836ns 1376041 1c0046c6 ff1ff06f jal x0, -16 +75848875ns 1376043 1c0046b6 0084a403 lw x8, 8(x9) x8=1c0091c4 x9:1c0091b8 PA:1c0091c0 +75848895ns 1376044 1c0046b8 0044a783 lw x15, 4(x9) x15=00000004 x9:1c0091b8 PA:1c0091bc +75848935ns 1376046 1c0046ba fff78793 addi x15, x15, -1 x15=00000003 x15:00000004 +75848954ns 1376047 1c0046bc 0007d663 bge x15, x0, 12 x15:00000003 +75849014ns 1376050 1c0046c8 00c41703 lh x14, 12(x8) x14=00000004 x8:1c0091c4 PA:1c0091d0 +75849053ns 1376052 1c0046cc 04071763 bne x14, x0, 78 x14:00000004 +75849133ns 1376056 1c00471a 06840413 addi x8, x8, 104 x8=1c00922c x8:1c0091c4 +75849152ns 1376057 1c00471e f9dff06f jal x0, -100 +75849192ns 1376059 1c0046ba fff78793 addi x15, x15, -1 x15=00000002 x15:00000003 +75849212ns 1376060 1c0046bc 0007d663 bge x15, x0, 12 x15:00000002 +75849271ns 1376063 1c0046c8 00c41703 lh x14, 12(x8) x14=00000089 x8:1c00922c PA:1c009238 +75849311ns 1376065 1c0046cc 04071763 bne x14, x0, 78 x14:00000089 +75849390ns 1376069 1c00471a 06840413 addi x8, x8, 104 x8=1c009294 x8:1c00922c +75849410ns 1376070 1c00471e f9dff06f jal x0, -100 +75849449ns 1376072 1c0046ba fff78793 addi x15, x15, -1 x15=00000001 x15:00000002 +75849469ns 1376073 1c0046bc 0007d663 bge x15, x0, 12 x15:00000001 +75849528ns 1376076 1c0046c8 00c41703 lh x14, 12(x8) x14=00000012 x8:1c009294 PA:1c0092a0 +75849568ns 1376078 1c0046cc 04071763 bne x14, x0, 78 x14:00000012 +75849647ns 1376082 1c00471a 06840413 addi x8, x8, 104 x8=1c0092fc x8:1c009294 +75849667ns 1376083 1c00471e f9dff06f jal x0, -100 +75849706ns 1376085 1c0046ba fff78793 addi x15, x15, -1 x15=00000000 x15:00000001 +75849726ns 1376086 1c0046bc 0007d663 bge x15, x0, 12 x15:00000000 +75849786ns 1376089 1c0046c8 00c41703 lh x14, 12(x8) x14=00000000 x8:1c0092fc PA:1c009308 +75849825ns 1376091 1c0046cc 04071763 bne x14, x0, 78 x14:00000000 +75849845ns 1376092 1c0046ce ffff07b7 lui x15, 0xffff0000 x15=ffff0000 +75849865ns 1376093 1c0046d0 00178793 addi x15, x15, 1 x15=ffff0001 x15:ffff0000 +75849885ns 1376094 1c0046d2 06042223 sw x0, 100(x8) x8:1c0092fc PA:1c009360 +75849904ns 1376095 1c0046d6 00042023 sw x0, 0(x8) x8:1c0092fc PA:1c0092fc +75849924ns 1376096 1c0046da 00042223 sw x0, 4(x8) x8:1c0092fc PA:1c009300 +75849944ns 1376097 1c0046de 00042423 sw x0, 8(x8) x8:1c0092fc PA:1c009304 +75849964ns 1376098 1c0046e2 00f42623 sw x15, 12(x8) x15:ffff0001 x8:1c0092fc PA:1c009308 +75849984ns 1376099 1c0046e4 00042823 sw x0, 16(x8) x8:1c0092fc PA:1c00930c +75850003ns 1376100 1c0046e8 00042a23 sw x0, 20(x8) x8:1c0092fc PA:1c009310 +75850023ns 1376101 1c0046ec 00042c23 sw x0, 24(x8) x8:1c0092fc PA:1c009314 +75850043ns 1376102 1c0046f0 00800613 addi x12, x0, 8 x12=00000008 +75850063ns 1376103 1c0046f2 00000593 addi x11, x0, 0 x11=00000000 +75850083ns 1376104 1c0046f4 05c40513 addi x10, x8, 92 x10=1c009358 x8:1c0092fc +75850102ns 1376105 1c0046f8 f82fc0ef jal x1, -14462 x1=1c0046fc +75850142ns 1376107 1c000e7a 00a00333 add x6, x0, x10 x6=1c009358 x10:1c009358 +75850162ns 1376108 1c000e7c 00060663 beq x12, x0, 12 x12:00000008 +75850181ns 1376109 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009358 PA:1c009358 +75850201ns 1376110 1c000e82 fff60613 addi x12, x12, -1 x12=00000007 x12:00000008 +75850221ns 1376111 1c000e84 00130313 addi x6, x6, 1 x6=1c009359 x6:1c009358 +75850241ns 1376112 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000007 +75850320ns 1376116 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009359 PA:1c009359 +75850340ns 1376117 1c000e82 fff60613 addi x12, x12, -1 x12=00000006 x12:00000007 +75850360ns 1376118 1c000e84 00130313 addi x6, x6, 1 x6=1c00935a x6:1c009359 +75850379ns 1376119 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000006 +75850459ns 1376123 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00935a PA:1c00935a +75850478ns 1376124 1c000e82 fff60613 addi x12, x12, -1 x12=00000005 x12:00000006 +75850498ns 1376125 1c000e84 00130313 addi x6, x6, 1 x6=1c00935b x6:1c00935a +75850518ns 1376126 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000005 +75850597ns 1376130 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00935b PA:1c00935b +75850617ns 1376131 1c000e82 fff60613 addi x12, x12, -1 x12=00000004 x12:00000005 +75850637ns 1376132 1c000e84 00130313 addi x6, x6, 1 x6=1c00935c x6:1c00935b +75850656ns 1376133 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000004 +75850736ns 1376137 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00935c PA:1c00935c +75850755ns 1376138 1c000e82 fff60613 addi x12, x12, -1 x12=00000003 x12:00000004 +75850775ns 1376139 1c000e84 00130313 addi x6, x6, 1 x6=1c00935d x6:1c00935c +75850795ns 1376140 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000003 +75850874ns 1376144 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00935d PA:1c00935d +75850894ns 1376145 1c000e82 fff60613 addi x12, x12, -1 x12=00000002 x12:00000003 +75850914ns 1376146 1c000e84 00130313 addi x6, x6, 1 x6=1c00935e x6:1c00935d +75850934ns 1376147 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000002 +75851013ns 1376151 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00935e PA:1c00935e +75851033ns 1376152 1c000e82 fff60613 addi x12, x12, -1 x12=00000001 x12:00000002 +75851052ns 1376153 1c000e84 00130313 addi x6, x6, 1 x6=1c00935f x6:1c00935e +75851072ns 1376154 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000001 +75851151ns 1376158 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00935f PA:1c00935f +75851171ns 1376159 1c000e82 fff60613 addi x12, x12, -1 x12=00000000 x12:00000001 +75851191ns 1376160 1c000e84 00130313 addi x6, x6, 1 x6=1c009360 x6:1c00935f +75851211ns 1376161 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000000 +75851230ns 1376162 1c000e88 00008067 jalr x0, x1, 0 x1:1c0046fc +75851270ns 1376164 1c0046fc 02042a23 sw x0, 52(x8) x8:1c0092fc PA:1c009330 +75851290ns 1376165 1c004700 02042c23 sw x0, 56(x8) x8:1c0092fc PA:1c009334 +75851310ns 1376166 1c004704 04042423 sw x0, 72(x8) x8:1c0092fc PA:1c009344 +75851329ns 1376167 1c004708 04042623 sw x0, 76(x8) x8:1c0092fc PA:1c009348 +75851349ns 1376168 1c00470c 00c12083 lw x1, 12(x2) x1=1c00465a x2:1c009b80 PA:1c009b8c +75851369ns 1376169 1c00470e 00800533 add x10, x0, x8 x10=1c0092fc x8:1c0092fc +75851389ns 1376170 1c004710 00812403 lw x8, 8(x2) x8=1c009e10 x2:1c009b80 PA:1c009b88 +75851409ns 1376171 1c004712 00412483 lw x9, 4(x2) x9=1c009e10 x2:1c009b80 PA:1c009b84 +75851428ns 1376172 1c004714 00012903 lw x18, 0(x2) x18=1c008894 x2:1c009b80 PA:1c009b80 +75851448ns 1376173 1c004716 01010113 addi x2, x2, 16 x2=1c009b90 x2:1c009b80 +75851468ns 1376174 1c004718 00008067 jalr x0, x1, 0 x1:1c00465a +75851508ns 1376176 1c00465a 00a42223 sw x10, 4(x8) x10:1c0092fc x8:1c009e10 PA:1c009e14 +75851527ns 1376177 1c00465c 00800533 add x10, x0, x8 x10=1c009e10 x8:1c009e10 +75851547ns 1376178 1c00465e 036000ef jal x1, 54 x1=1c004660 +75851587ns 1376180 1c004694 ff010113 addi x2, x2, -16 x2=1c009b80 x2:1c009b90 +75851607ns 1376181 1c004696 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +75851626ns 1376182 1c00469a 00912223 sw x9, 4(x2) x9:1c009e10 x2:1c009b80 PA:1c009b84 +75851646ns 1376183 1c00469c bd87a483 lw x9, -1064(x15) x9=1c008bdc x15:1c009000 PA:1c008bd8 +75851666ns 1376184 1c0046a0 01212023 sw x18, 0(x2) x18:1c008894 x2:1c009b80 PA:1c009b80 +75851686ns 1376185 1c0046a2 00112623 sw x1, 12(x2) x1:1c004660 x2:1c009b80 PA:1c009b8c +75851705ns 1376186 1c0046a4 0184a783 lw x15, 24(x9) x15=00000001 x9:1c008bdc PA:1c008bf4 +75851725ns 1376187 1c0046a6 00812423 sw x8, 8(x2) x8:1c009e10 x2:1c009b80 PA:1c009b88 +75851745ns 1376188 1c0046a8 00a00933 add x18, x0, x10 x18=1c009e10 x10:1c009e10 +75851765ns 1376189 1c0046aa 00079463 bne x15, x0, 8 x15:00000001 +75851844ns 1376193 1c0046b2 04848493 addi x9, x9, 72 x9=1c008c24 x9:1c008bdc +75851864ns 1376194 1c0046b6 0084a403 lw x8, 8(x9) x8=00000000 x9:1c008c24 PA:1c008c2c +75851884ns 1376195 1c0046b8 0044a783 lw x15, 4(x9) x15=00000000 x9:1c008c24 PA:1c008c28 +75851923ns 1376197 1c0046ba fff78793 addi x15, x15, -1 x15=ffffffff x15:00000000 +75851943ns 1376198 1c0046bc 0007d663 bge x15, x0, 12 x15:ffffffff +75851963ns 1376199 1c0046c0 0004a783 lw x15, 0(x9) x15=1c0091b8 x9:1c008c24 PA:1c008c24 +75852002ns 1376201 1c0046c2 04078f63 beq x15, x0, 94 x15:1c0091b8 +75852022ns 1376202 1c0046c4 0004a483 lw x9, 0(x9) x9=1c0091b8 x9:1c008c24 PA:1c008c24 +75852042ns 1376203 1c0046c6 ff1ff06f jal x0, -16 +75852082ns 1376205 1c0046b6 0084a403 lw x8, 8(x9) x8=1c0091c4 x9:1c0091b8 PA:1c0091c0 +75852101ns 1376206 1c0046b8 0044a783 lw x15, 4(x9) x15=00000004 x9:1c0091b8 PA:1c0091bc +75852141ns 1376208 1c0046ba fff78793 addi x15, x15, -1 x15=00000003 x15:00000004 +75852161ns 1376209 1c0046bc 0007d663 bge x15, x0, 12 x15:00000003 +75852220ns 1376212 1c0046c8 00c41703 lh x14, 12(x8) x14=00000004 x8:1c0091c4 PA:1c0091d0 +75852260ns 1376214 1c0046cc 04071763 bne x14, x0, 78 x14:00000004 +75852339ns 1376218 1c00471a 06840413 addi x8, x8, 104 x8=1c00922c x8:1c0091c4 +75852359ns 1376219 1c00471e f9dff06f jal x0, -100 +75852398ns 1376221 1c0046ba fff78793 addi x15, x15, -1 x15=00000002 x15:00000003 +75852418ns 1376222 1c0046bc 0007d663 bge x15, x0, 12 x15:00000002 +75852477ns 1376225 1c0046c8 00c41703 lh x14, 12(x8) x14=00000089 x8:1c00922c PA:1c009238 +75852517ns 1376227 1c0046cc 04071763 bne x14, x0, 78 x14:00000089 +75852596ns 1376231 1c00471a 06840413 addi x8, x8, 104 x8=1c009294 x8:1c00922c +75852616ns 1376232 1c00471e f9dff06f jal x0, -100 +75852655ns 1376234 1c0046ba fff78793 addi x15, x15, -1 x15=00000001 x15:00000002 +75852675ns 1376235 1c0046bc 0007d663 bge x15, x0, 12 x15:00000001 +75852735ns 1376238 1c0046c8 00c41703 lh x14, 12(x8) x14=00000012 x8:1c009294 PA:1c0092a0 +75852774ns 1376240 1c0046cc 04071763 bne x14, x0, 78 x14:00000012 +75852853ns 1376244 1c00471a 06840413 addi x8, x8, 104 x8=1c0092fc x8:1c009294 +75852873ns 1376245 1c00471e f9dff06f jal x0, -100 +75852913ns 1376247 1c0046ba fff78793 addi x15, x15, -1 x15=00000000 x15:00000001 +75852933ns 1376248 1c0046bc 0007d663 bge x15, x0, 12 x15:00000000 +75852992ns 1376251 1c0046c8 00c41703 lh x14, 12(x8) x14=00000001 x8:1c0092fc PA:1c009308 +75853032ns 1376253 1c0046cc 04071763 bne x14, x0, 78 x14:00000001 +75853111ns 1376257 1c00471a 06840413 addi x8, x8, 104 x8=1c009364 x8:1c0092fc +75853130ns 1376258 1c00471e f9dff06f jal x0, -100 +75853170ns 1376260 1c0046ba fff78793 addi x15, x15, -1 x15=ffffffff x15:00000000 +75853190ns 1376261 1c0046bc 0007d663 bge x15, x0, 12 x15:ffffffff +75853210ns 1376262 1c0046c0 0004a783 lw x15, 0(x9) x15=00000000 x9:1c0091b8 PA:1c0091b8 +75853249ns 1376264 1c0046c2 04078f63 beq x15, x0, 94 x15:00000000 +75853309ns 1376267 1c004720 00400593 addi x11, x0, 4 x11=00000004 +75853328ns 1376268 1c004722 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +75853348ns 1376269 1c004724 eb9ff0ef jal x1, -328 x1=1c004728 +75853388ns 1376271 1c0045dc ff010113 addi x2, x2, -16 x2=1c009b70 x2:1c009b80 +75853408ns 1376272 1c0045de 00912223 sw x9, 4(x2) x9:1c0091b8 x2:1c009b70 PA:1c009b74 +75853427ns 1376273 1c0045e0 06800613 addi x12, x0, 104 x12=00000068 +75853447ns 1376274 1c0045e4 fff58493 addi x9, x11, -1 x9=00000003 x11:00000004 +75853467ns 1376275 1c0045e8 02c484b3 mul x9, x9, x12 x9=00000138 x9:00000003 x12:00000068 +75853487ns 1376276 1c0045ec 01212023 sw x18, 0(x2) x18:1c009e10 x2:1c009b70 PA:1c009b70 +75853507ns 1376277 1c0045ee 00b00933 add x18, x0, x11 x18=00000004 x11:00000004 +75853526ns 1376278 1c0045f0 00812423 sw x8, 8(x2) x8:1c009364 x2:1c009b70 PA:1c009b78 +75853546ns 1376279 1c0045f2 00112623 sw x1, 12(x2) x1:1c004728 x2:1c009b70 PA:1c009b7c +75853566ns 1376280 1c0045f4 07448593 addi x11, x9, 116 x11=000001ac x9:00000138 +75853586ns 1376281 1c0045f8 bd0ff0ef jal x1, -3120 x1=1c0045fc +75853625ns 1376283 1c0039c8 fe010113 addi x2, x2, -32 x2=1c009b50 x2:1c009b70 +75853645ns 1376284 1c0039ca 00912a23 sw x9, 20(x2) x9:00000138 x2:1c009b50 PA:1c009b64 +75853665ns 1376285 1c0039cc 00358493 addi x9, x11, 3 x9=000001af x11:000001ac +75853685ns 1376286 1c0039d0 ffc4f493 andi x9, x9, -4 x9=000001ac x9:000001af +75853704ns 1376287 1c0039d2 01212823 sw x18, 16(x2) x18:00000004 x2:1c009b50 PA:1c009b60 +75853724ns 1376288 1c0039d4 00112e23 sw x1, 28(x2) x1:1c0045fc x2:1c009b50 PA:1c009b6c +75853744ns 1376289 1c0039d6 00812c23 sw x8, 24(x2) x8:1c009364 x2:1c009b50 PA:1c009b68 +75853764ns 1376290 1c0039d8 01312623 sw x19, 12(x2) x19:a5a5a5a5 x2:1c009b50 PA:1c009b5c +75853784ns 1376291 1c0039da 00848493 addi x9, x9, 8 x9=000001b4 x9:000001ac +75853803ns 1376292 1c0039dc 00c00793 addi x15, x0, 12 x15=0000000c +75853823ns 1376293 1c0039de 00a00933 add x18, x0, x10 x18=1c009e10 x10:1c009e10 +75853843ns 1376294 1c0039e0 04f4f363 bgeu x9, x15, 70 x9:000001b4 x15:0000000c +75853922ns 1376298 1c003a26 fc04d0e3 bge x9, x0, -64 x9:000001b4 +75854001ns 1376302 1c0039e6 04b4e263 bltu x9, x11, 68 x9:000001b4 x11:000001ac +75854021ns 1376303 1c0039ea 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +75854041ns 1376304 1c0039ec 87aff0ef jal x1, -3974 x1=1c0039f0 +75854100ns 1376307 1c002a66 fb1fe06f jal x0, -4176 +75854160ns 1376310 1c001a16 d6818793 addi x15, x3, -664 x15=1c009144 x3:1c0093dc +75854179ns 1376311 1c001a1a 0007a703 lw x14, 0(x15) x14=00000000 x15:1c009144 PA:1c009144 +75854219ns 1376313 1c001a1c 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +75854239ns 1376314 1c001a1e 00e7a023 sw x14, 0(x15) x14:00000001 x15:1c009144 PA:1c009144 +75854259ns 1376315 1c001a20 00008067 jalr x0, x1, 0 x1:1c0039f0 +75854298ns 1376317 1c0039f0 db81a703 lw x14, -584(x3) x14=00000000 x3:1c0093dc PA:1c009194 +75854318ns 1376318 1c0039f4 db818693 addi x13, x3, -584 x13=1c009194 x3:1c0093dc +75854338ns 1376319 1c0039f8 00e00433 add x8, x0, x14 x8=00000000 x14:00000000 +75854358ns 1376320 1c0039fa 04041363 bne x8, x0, 70 x8:00000000 +75854377ns 1376321 1c0039fc dbc18413 addi x8, x3, -580 x8=1c009198 x3:1c0093dc +75854397ns 1376322 1c003a00 00042783 lw x15, 0(x8) x15=1c0091b0 x8:1c009198 PA:1c009198 +75854437ns 1376324 1c003a02 00079563 bne x15, x0, 10 x15:1c0091b0 +75854496ns 1376327 1c003a0c 009005b3 add x11, x0, x9 x11=000001b4 x9:000001b4 +75854516ns 1376328 1c003a0e 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +75854536ns 1376329 1c003a10 5cc000ef jal x1, 1484 x1=1c003a12 +75854575ns 1376331 1c003fdc ff010113 addi x2, x2, -16 x2=1c009b40 x2:1c009b50 +75854595ns 1376332 1c003fde 00812423 sw x8, 8(x2) x8:1c009198 x2:1c009b40 PA:1c009b48 +75854615ns 1376333 1c003fe0 00912223 sw x9, 4(x2) x9:000001b4 x2:1c009b40 PA:1c009b44 +75854635ns 1376334 1c003fe2 00a00433 add x8, x0, x10 x8=1c009e10 x10:1c009e10 +75854654ns 1376335 1c003fe4 00b00533 add x10, x0, x11 x10=000001b4 x11:000001b4 +75854674ns 1376336 1c003fe6 00112623 sw x1, 12(x2) x1:1c003a12 x2:1c009b40 PA:1c009b4c +75854694ns 1376337 1c003fe8 dc01a023 sw x0, -576(x3) x3:1c0093dc PA:1c00919c +75854714ns 1376338 1c003fec a53fe0ef jal x1, -5550 x1=1c003ff0 +75854773ns 1376341 1c002a3e 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +75854793ns 1376342 1c002a42 c3c78793 addi x15, x15, -964 x15=1c008c3c x15:1c009000 +75854813ns 1376343 1c002a46 00a00733 add x14, x0, x10 x14=000001b4 x10:000001b4 +75854833ns 1376344 1c002a48 0007a503 lw x10, 0(x15) x10=1c00b900 x15:1c008c3c PA:1c008c3c +75854852ns 1376345 1c002a4a 1c0196b7 lui x13, 0x1c019000 x13=1c019000 +75854872ns 1376346 1c002a4e 1b068693 addi x13, x13, 432 x13=1c0191b0 x13:1c019000 +75854892ns 1376347 1c002a52 00a70733 add x14, x14, x10 x14=1c00bab4 x14:000001b4 x10:1c00b900 +75854912ns 1376348 1c002a54 00d76763 bltu x14, x13, 14 x14:1c00bab4 x13:1c0191b0 +75854971ns 1376351 1c002a62 00e7a023 sw x14, 0(x15) x14:1c00bab4 x15:1c008c3c PA:1c008c3c +75854991ns 1376352 1c002a64 00008067 jalr x0, x1, 0 x1:1c003ff0 +75855031ns 1376354 1c003ff0 fff00793 addi x15, x0, -1 x15=ffffffff +75855050ns 1376355 1c003ff2 00f51663 bne x10, x15, 12 x10:1c00b900 x15:ffffffff +75855110ns 1376358 1c003ffe 00c12083 lw x1, 12(x2) x1=1c003a12 x2:1c009b40 PA:1c009b4c +75855129ns 1376359 1c004000 00812403 lw x8, 8(x2) x8=1c009198 x2:1c009b40 PA:1c009b48 +75855149ns 1376360 1c004002 00412483 lw x9, 4(x2) x9=000001b4 x2:1c009b40 PA:1c009b44 +75855169ns 1376361 1c004004 01010113 addi x2, x2, 16 x2=1c009b50 x2:1c009b40 +75855189ns 1376362 1c004006 00008067 jalr x0, x1, 0 x1:1c003a12 +75855228ns 1376364 1c003a12 fff00993 addi x19, x0, -1 x19=ffffffff +75855248ns 1376365 1c003a14 07351a63 bne x10, x19, 116 x10:1c00b900 x19:ffffffff +75855308ns 1376368 1c003a88 00350413 addi x8, x10, 3 x8=1c00b903 x10:1c00b900 +75855327ns 1376369 1c003a8c ffc47413 andi x8, x8, -4 x8=1c00b900 x8:1c00b903 +75855347ns 1376370 1c003a8e fc8502e3 beq x10, x8, -60 x10:1c00b900 x8:1c00b900 +75855407ns 1376373 1c003a52 00942023 sw x9, 0(x8) x9:000001b4 x8:1c00b900 PA:1c00b900 +75855426ns 1376374 1c003a54 00a0006f jal x0, 10 +75855466ns 1376376 1c003a5e 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +75855486ns 1376377 1c003a60 80aff0ef jal x1, -4086 x1=1c003a64 +75855545ns 1376380 1c002a6a 8e3ff06f jal x0, -1822 +75855585ns 1376382 1c00234c fc010113 addi x2, x2, -64 x2=1c009b10 x2:1c009b50 +75855604ns 1376383 1c00234e 02812c23 sw x8, 56(x2) x8:1c00b900 x2:1c009b10 PA:1c009b48 +75855624ns 1376384 1c002350 d6818413 addi x8, x3, -664 x8=1c009144 x3:1c0093dc +75855644ns 1376385 1c002354 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +75855664ns 1376386 1c002356 02112e23 sw x1, 60(x2) x1:1c003a64 x2:1c009b10 PA:1c009b4c +75855684ns 1376387 1c002358 02912a23 sw x9, 52(x2) x9:000001b4 x2:1c009b10 PA:1c009b44 +75855703ns 1376388 1c00235a 03212823 sw x18, 48(x2) x18:1c009e10 x2:1c009b10 PA:1c009b40 +75855723ns 1376389 1c00235c 03312623 sw x19, 44(x2) x19:ffffffff x2:1c009b10 PA:1c009b3c +75855743ns 1376390 1c00235e 03412423 sw x20, 40(x2) x20:a5a5a5a5 x2:1c009b10 PA:1c009b38 +75855763ns 1376391 1c002360 03512223 sw x21, 36(x2) x21:a5a5a5a5 x2:1c009b10 PA:1c009b34 +75855783ns 1376392 1c002362 03612023 sw x22, 32(x2) x22:a5a5a5a5 x2:1c009b10 PA:1c009b30 +75855802ns 1376393 1c002364 01712e23 sw x23, 28(x2) x23:a5a5a5a5 x2:1c009b10 PA:1c009b2c +75855822ns 1376394 1c002366 02079263 bne x15, x0, 36 x15:00000001 +75855901ns 1376398 1c00238a c83ff0ef jal x1, -894 x1=1c00238e +75855941ns 1376400 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +75856020ns 1376404 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +75856060ns 1376406 1c002014 00078863 beq x15, x0, 16 x15:00000001 +75856079ns 1376407 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +75856099ns 1376408 1c00201a 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +75856119ns 1376409 1c00201c 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +75856139ns 1376410 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c009db8 PA:1c009dfc +75856178ns 1376412 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +75856198ns 1376413 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c009db8 PA:1c009dfc +75856218ns 1376414 1c002024 00008067 jalr x0, x1, 0 x1:1c00238e +75856258ns 1376416 1c00238e 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +75856297ns 1376418 1c002390 fff78793 addi x15, x15, -1 x15=00000000 x15:00000001 +75856317ns 1376419 1c002392 00f42023 sw x15, 0(x8) x15:00000000 x8:1c009144 PA:1c009144 +75856337ns 1376420 1c002394 00042783 lw x15, 0(x8) x15=00000000 x8:1c009144 PA:1c009144 +75856376ns 1376422 1c002396 02078163 beq x15, x0, 34 x15:00000000 +75856436ns 1376425 1c0023b8 d601a783 lw x15, -672(x3) x15=00000003 x3:1c0093dc PA:1c00913c +75856475ns 1376427 1c0023bc fc078ee3 beq x15, x0, -36 x15:00000003 +75856495ns 1376428 1c0023be 1c009937 lui x18, 0x1c009000 x18=1c009000 +75856515ns 1376429 1c0023c2 00000413 addi x8, x0, 0 x8=00000000 +75856535ns 1376430 1c0023c4 93818493 addi x9, x3, -1736 x9=1c008d14 x3:1c0093dc +75856555ns 1376431 1c0023c8 00100993 addi x19, x0, 1 x19=00000001 +75856574ns 1376432 1c0023ca c8890913 addi x18, x18, -888 x18=1c008c88 x18:1c009000 +75856594ns 1376433 1c0023ce 01400a93 addi x21, x0, 20 x21=00000014 +75856614ns 1376434 1c0023d0 04c0006f jal x0, 76 +75856653ns 1376436 1c00241c 0004a783 lw x15, 0(x9) x15=00000000 x9:1c008d14 PA:1c008d14 +75856693ns 1376438 1c00241e fa079ae3 bne x15, x0, -76 x15:00000000 +75856713ns 1376439 1c002420 00040363 beq x8, x0, 6 x8:00000000 +75856792ns 1376443 1c002426 d8018713 addi x14, x3, -640 x14=1c00915c x3:1c0093dc +75856812ns 1376444 1c00242a 00072483 lw x9, 0(x14) x9=00000000 x14:1c00915c PA:1c00915c +75856832ns 1376445 1c00242c d8018413 addi x8, x3, -640 x8=1c00915c x3:1c0093dc +75856851ns 1376446 1c002430 00048d63 beq x9, x0, 26 x9:00000000 +75856931ns 1376450 1c00244a d8c1a783 lw x15, -628(x3) x15=00000000 x3:1c0093dc PA:1c009168 +75856970ns 1376452 1c00244e f40785e3 beq x15, x0, -182 x15:00000000 +75857030ns 1376455 1c002398 00000513 addi x10, x0, 0 x10=00000000 +75857049ns 1376456 1c00239a 00a12623 sw x10, 12(x2) x10:00000000 x2:1c009b10 PA:1c009b1c +75857069ns 1376457 1c00239c c8bff0ef jal x1, -886 x1=1c0023a0 +75857128ns 1376460 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +75857168ns 1376462 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +75857188ns 1376463 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +75857208ns 1376464 1c002030 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +75857247ns 1376466 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c009db8 PA:1c009dfc +75857287ns 1376468 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +75857307ns 1376469 1c002036 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +75857326ns 1376470 1c002038 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +75857346ns 1376471 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c009db8 PA:1c009dfc +75857386ns 1376473 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +75857406ns 1376474 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c009db8 PA:1c009dfc +75857425ns 1376475 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c009db8 PA:1c009dfc +75857465ns 1376477 1c002042 00079363 bne x15, x0, 6 x15:00000000 +75857485ns 1376478 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +75857564ns 1376482 1c002048 00008067 jalr x0, x1, 0 x1:1c0023a0 +75857603ns 1376484 1c0023a0 03c12083 lw x1, 60(x2) x1=1c003a64 x2:1c009b10 PA:1c009b4c +75857623ns 1376485 1c0023a2 03812403 lw x8, 56(x2) x8=1c00b900 x2:1c009b10 PA:1c009b48 +75857643ns 1376486 1c0023a4 00c12503 lw x10, 12(x2) x10=00000000 x2:1c009b10 PA:1c009b1c +75857663ns 1376487 1c0023a6 03412483 lw x9, 52(x2) x9=000001b4 x2:1c009b10 PA:1c009b44 +75857683ns 1376488 1c0023a8 03012903 lw x18, 48(x2) x18=1c009e10 x2:1c009b10 PA:1c009b40 +75857702ns 1376489 1c0023aa 02c12983 lw x19, 44(x2) x19=ffffffff x2:1c009b10 PA:1c009b3c +75857722ns 1376490 1c0023ac 02812a03 lw x20, 40(x2) x20=a5a5a5a5 x2:1c009b10 PA:1c009b38 +75857742ns 1376491 1c0023ae 02412a83 lw x21, 36(x2) x21=a5a5a5a5 x2:1c009b10 PA:1c009b34 +75857762ns 1376492 1c0023b0 02012b03 lw x22, 32(x2) x22=a5a5a5a5 x2:1c009b10 PA:1c009b30 +75857782ns 1376493 1c0023b2 01c12b83 lw x23, 28(x2) x23=a5a5a5a5 x2:1c009b10 PA:1c009b2c +75857801ns 1376494 1c0023b4 04010113 addi x2, x2, 64 x2=1c009b50 x2:1c009b10 +75857821ns 1376495 1c0023b6 00008067 jalr x0, x1, 0 x1:1c003a64 +75857861ns 1376497 1c003a64 00b40513 addi x10, x8, 11 x10=1c00b90b x8:1c00b900 +75857881ns 1376498 1c003a68 00440793 addi x15, x8, 4 x15=1c00b904 x8:1c00b900 +75857900ns 1376499 1c003a6c ff857513 andi x10, x10, -8 x10=1c00b908 x10:1c00b90b +75857920ns 1376500 1c003a6e 40f50733 sub x14, x10, x15 x14=00000004 x10:1c00b908 x15:1c00b904 +75857940ns 1376501 1c003a72 fcf500e3 beq x10, x15, -64 x10:1c00b908 x15:1c00b904 +75857960ns 1376502 1c003a76 00e40433 add x8, x8, x14 x8=1c00b904 x8:1c00b900 x14:00000004 +75857980ns 1376503 1c003a78 40a787b3 sub x15, x15, x10 x15=fffffffc x15:1c00b904 x10:1c00b908 +75857999ns 1376504 1c003a7a 00f42023 sw x15, 0(x8) x15:fffffffc x8:1c00b904 PA:1c00b904 +75858019ns 1376505 1c003a7c fb7ff06f jal x0, -74 +75858059ns 1376507 1c003a32 01c12083 lw x1, 28(x2) x1=1c0045fc x2:1c009b50 PA:1c009b6c +75858078ns 1376508 1c003a34 01812403 lw x8, 24(x2) x8=1c009364 x2:1c009b50 PA:1c009b68 +75858098ns 1376509 1c003a36 01412483 lw x9, 20(x2) x9=00000138 x2:1c009b50 PA:1c009b64 +75858118ns 1376510 1c003a38 01012903 lw x18, 16(x2) x18=00000004 x2:1c009b50 PA:1c009b60 +75858138ns 1376511 1c003a3a 00c12983 lw x19, 12(x2) x19=a5a5a5a5 x2:1c009b50 PA:1c009b5c +75858158ns 1376512 1c003a3c 02010113 addi x2, x2, 32 x2=1c009b70 x2:1c009b50 +75858177ns 1376513 1c003a3e 00008067 jalr x0, x1, 0 x1:1c0045fc +75858217ns 1376515 1c0045fc 00a00433 add x8, x0, x10 x8=1c00b908 x10:1c00b908 +75858237ns 1376516 1c0045fe 00050c63 beq x10, x0, 24 x10:1c00b908 +75858257ns 1376517 1c004600 00052023 sw x0, 0(x10) x10:1c00b908 PA:1c00b908 +75858276ns 1376518 1c004604 01252223 sw x18, 4(x10) x18:00000004 x10:1c00b908 PA:1c00b90c +75858296ns 1376519 1c004608 00c50513 addi x10, x10, 12 x10=1c00b914 x10:1c00b908 +75858316ns 1376520 1c00460a 00a42423 sw x10, 8(x8) x10:1c00b914 x8:1c00b908 PA:1c00b910 +75858336ns 1376521 1c00460c 06848613 addi x12, x9, 104 x12=000001a0 x9:00000138 +75858356ns 1376522 1c004610 00000593 addi x11, x0, 0 x11=00000000 +75858375ns 1376523 1c004612 869fc0ef jal x1, -14232 x1=1c004616 +75858415ns 1376525 1c000e7a 00a00333 add x6, x0, x10 x6=1c00b914 x10:1c00b914 +75858435ns 1376526 1c000e7c 00060663 beq x12, x0, 12 x12:000001a0 +75858455ns 1376527 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b914 PA:1c00b914 +75858474ns 1376528 1c000e82 fff60613 addi x12, x12, -1 x12=0000019f x12:000001a0 +75858494ns 1376529 1c000e84 00130313 addi x6, x6, 1 x6=1c00b915 x6:1c00b914 +75858514ns 1376530 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000019f +75858593ns 1376534 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b915 PA:1c00b915 +75858613ns 1376535 1c000e82 fff60613 addi x12, x12, -1 x12=0000019e x12:0000019f +75858633ns 1376536 1c000e84 00130313 addi x6, x6, 1 x6=1c00b916 x6:1c00b915 +75858652ns 1376537 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000019e +75858732ns 1376541 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b916 PA:1c00b916 +75858751ns 1376542 1c000e82 fff60613 addi x12, x12, -1 x12=0000019d x12:0000019e +75858771ns 1376543 1c000e84 00130313 addi x6, x6, 1 x6=1c00b917 x6:1c00b916 +75858791ns 1376544 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000019d +75858870ns 1376548 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b917 PA:1c00b917 +75858890ns 1376549 1c000e82 fff60613 addi x12, x12, -1 x12=0000019c x12:0000019d +75858910ns 1376550 1c000e84 00130313 addi x6, x6, 1 x6=1c00b918 x6:1c00b917 +75858930ns 1376551 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000019c +75859009ns 1376555 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b918 PA:1c00b918 +75859029ns 1376556 1c000e82 fff60613 addi x12, x12, -1 x12=0000019b x12:0000019c +75859048ns 1376557 1c000e84 00130313 addi x6, x6, 1 x6=1c00b919 x6:1c00b918 +75859068ns 1376558 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000019b +75859147ns 1376562 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b919 PA:1c00b919 +75859167ns 1376563 1c000e82 fff60613 addi x12, x12, -1 x12=0000019a x12:0000019b +75859187ns 1376564 1c000e84 00130313 addi x6, x6, 1 x6=1c00b91a x6:1c00b919 +75859207ns 1376565 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000019a +75859286ns 1376569 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b91a PA:1c00b91a +75859306ns 1376570 1c000e82 fff60613 addi x12, x12, -1 x12=00000199 x12:0000019a +75859325ns 1376571 1c000e84 00130313 addi x6, x6, 1 x6=1c00b91b x6:1c00b91a +75859345ns 1376572 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000199 +75859424ns 1376576 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b91b PA:1c00b91b +75859444ns 1376577 1c000e82 fff60613 addi x12, x12, -1 x12=00000198 x12:00000199 +75859464ns 1376578 1c000e84 00130313 addi x6, x6, 1 x6=1c00b91c x6:1c00b91b +75859484ns 1376579 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000198 +75859563ns 1376583 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b91c PA:1c00b91c +75859583ns 1376584 1c000e82 fff60613 addi x12, x12, -1 x12=00000197 x12:00000198 +75859602ns 1376585 1c000e84 00130313 addi x6, x6, 1 x6=1c00b91d x6:1c00b91c +75859622ns 1376586 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000197 +75859701ns 1376590 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b91d PA:1c00b91d +75859721ns 1376591 1c000e82 fff60613 addi x12, x12, -1 x12=00000196 x12:00000197 +75859741ns 1376592 1c000e84 00130313 addi x6, x6, 1 x6=1c00b91e x6:1c00b91d +75859761ns 1376593 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000196 +75859840ns 1376597 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b91e PA:1c00b91e +75859860ns 1376598 1c000e82 fff60613 addi x12, x12, -1 x12=00000195 x12:00000196 +75859880ns 1376599 1c000e84 00130313 addi x6, x6, 1 x6=1c00b91f x6:1c00b91e +75859899ns 1376600 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000195 +75859979ns 1376604 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b91f PA:1c00b91f +75859998ns 1376605 1c000e82 fff60613 addi x12, x12, -1 x12=00000194 x12:00000195 +75860018ns 1376606 1c000e84 00130313 addi x6, x6, 1 x6=1c00b920 x6:1c00b91f +75860038ns 1376607 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000194 +75860117ns 1376611 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b920 PA:1c00b920 +75860137ns 1376612 1c000e82 fff60613 addi x12, x12, -1 x12=00000193 x12:00000194 +75860157ns 1376613 1c000e84 00130313 addi x6, x6, 1 x6=1c00b921 x6:1c00b920 +75860176ns 1376614 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000193 +75860256ns 1376618 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b921 PA:1c00b921 +75860275ns 1376619 1c000e82 fff60613 addi x12, x12, -1 x12=00000192 x12:00000193 +75860295ns 1376620 1c000e84 00130313 addi x6, x6, 1 x6=1c00b922 x6:1c00b921 +75860315ns 1376621 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000192 +75860394ns 1376625 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b922 PA:1c00b922 +75860414ns 1376626 1c000e82 fff60613 addi x12, x12, -1 x12=00000191 x12:00000192 +75860434ns 1376627 1c000e84 00130313 addi x6, x6, 1 x6=1c00b923 x6:1c00b922 +75860454ns 1376628 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000191 +75860533ns 1376632 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b923 PA:1c00b923 +75860552ns 1376633 1c000e82 fff60613 addi x12, x12, -1 x12=00000190 x12:00000191 +75860572ns 1376634 1c000e84 00130313 addi x6, x6, 1 x6=1c00b924 x6:1c00b923 +75860592ns 1376635 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000190 +75860671ns 1376639 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b924 PA:1c00b924 +75860691ns 1376640 1c000e82 fff60613 addi x12, x12, -1 x12=0000018f x12:00000190 +75860711ns 1376641 1c000e84 00130313 addi x6, x6, 1 x6=1c00b925 x6:1c00b924 +75860731ns 1376642 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000018f +75860810ns 1376646 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b925 PA:1c00b925 +75860830ns 1376647 1c000e82 fff60613 addi x12, x12, -1 x12=0000018e x12:0000018f +75860849ns 1376648 1c000e84 00130313 addi x6, x6, 1 x6=1c00b926 x6:1c00b925 +75860869ns 1376649 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000018e +75860948ns 1376653 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b926 PA:1c00b926 +75860968ns 1376654 1c000e82 fff60613 addi x12, x12, -1 x12=0000018d x12:0000018e +75860988ns 1376655 1c000e84 00130313 addi x6, x6, 1 x6=1c00b927 x6:1c00b926 +75861008ns 1376656 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000018d +75861087ns 1376660 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b927 PA:1c00b927 +75861107ns 1376661 1c000e82 fff60613 addi x12, x12, -1 x12=0000018c x12:0000018d +75861126ns 1376662 1c000e84 00130313 addi x6, x6, 1 x6=1c00b928 x6:1c00b927 +75861146ns 1376663 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000018c +75861225ns 1376667 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b928 PA:1c00b928 +75861245ns 1376668 1c000e82 fff60613 addi x12, x12, -1 x12=0000018b x12:0000018c +75861265ns 1376669 1c000e84 00130313 addi x6, x6, 1 x6=1c00b929 x6:1c00b928 +75861285ns 1376670 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000018b +75861364ns 1376674 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b929 PA:1c00b929 +75861384ns 1376675 1c000e82 fff60613 addi x12, x12, -1 x12=0000018a x12:0000018b +75861404ns 1376676 1c000e84 00130313 addi x6, x6, 1 x6=1c00b92a x6:1c00b929 +75861423ns 1376677 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000018a +75861503ns 1376681 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b92a PA:1c00b92a +75861522ns 1376682 1c000e82 fff60613 addi x12, x12, -1 x12=00000189 x12:0000018a +75861542ns 1376683 1c000e84 00130313 addi x6, x6, 1 x6=1c00b92b x6:1c00b92a +75861562ns 1376684 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000189 +75861641ns 1376688 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b92b PA:1c00b92b +75861661ns 1376689 1c000e82 fff60613 addi x12, x12, -1 x12=00000188 x12:00000189 +75861681ns 1376690 1c000e84 00130313 addi x6, x6, 1 x6=1c00b92c x6:1c00b92b +75861700ns 1376691 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000188 +75861780ns 1376695 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b92c PA:1c00b92c +75861799ns 1376696 1c000e82 fff60613 addi x12, x12, -1 x12=00000187 x12:00000188 +75861819ns 1376697 1c000e84 00130313 addi x6, x6, 1 x6=1c00b92d x6:1c00b92c +75861839ns 1376698 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000187 +75861918ns 1376702 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b92d PA:1c00b92d +75861938ns 1376703 1c000e82 fff60613 addi x12, x12, -1 x12=00000186 x12:00000187 +75861958ns 1376704 1c000e84 00130313 addi x6, x6, 1 x6=1c00b92e x6:1c00b92d +75861978ns 1376705 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000186 +75862057ns 1376709 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b92e PA:1c00b92e +75862076ns 1376710 1c000e82 fff60613 addi x12, x12, -1 x12=00000185 x12:00000186 +75862096ns 1376711 1c000e84 00130313 addi x6, x6, 1 x6=1c00b92f x6:1c00b92e +75862116ns 1376712 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000185 +75862195ns 1376716 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b92f PA:1c00b92f +75862215ns 1376717 1c000e82 fff60613 addi x12, x12, -1 x12=00000184 x12:00000185 +75862235ns 1376718 1c000e84 00130313 addi x6, x6, 1 x6=1c00b930 x6:1c00b92f +75862255ns 1376719 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000184 +75862334ns 1376723 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b930 PA:1c00b930 +75862354ns 1376724 1c000e82 fff60613 addi x12, x12, -1 x12=00000183 x12:00000184 +75862373ns 1376725 1c000e84 00130313 addi x6, x6, 1 x6=1c00b931 x6:1c00b930 +75862393ns 1376726 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000183 +75862472ns 1376730 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b931 PA:1c00b931 +75862492ns 1376731 1c000e82 fff60613 addi x12, x12, -1 x12=00000182 x12:00000183 +75862512ns 1376732 1c000e84 00130313 addi x6, x6, 1 x6=1c00b932 x6:1c00b931 +75862532ns 1376733 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000182 +75862611ns 1376737 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b932 PA:1c00b932 +75862631ns 1376738 1c000e82 fff60613 addi x12, x12, -1 x12=00000181 x12:00000182 +75862650ns 1376739 1c000e84 00130313 addi x6, x6, 1 x6=1c00b933 x6:1c00b932 +75862670ns 1376740 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000181 +75862749ns 1376744 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b933 PA:1c00b933 +75862769ns 1376745 1c000e82 fff60613 addi x12, x12, -1 x12=00000180 x12:00000181 +75862789ns 1376746 1c000e84 00130313 addi x6, x6, 1 x6=1c00b934 x6:1c00b933 +75862809ns 1376747 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000180 +75862888ns 1376751 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b934 PA:1c00b934 +75862908ns 1376752 1c000e82 fff60613 addi x12, x12, -1 x12=0000017f x12:00000180 +75862928ns 1376753 1c000e84 00130313 addi x6, x6, 1 x6=1c00b935 x6:1c00b934 +75862947ns 1376754 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000017f +75863026ns 1376758 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b935 PA:1c00b935 +75863046ns 1376759 1c000e82 fff60613 addi x12, x12, -1 x12=0000017e x12:0000017f +75863066ns 1376760 1c000e84 00130313 addi x6, x6, 1 x6=1c00b936 x6:1c00b935 +75863086ns 1376761 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000017e +75863165ns 1376765 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b936 PA:1c00b936 +75863185ns 1376766 1c000e82 fff60613 addi x12, x12, -1 x12=0000017d x12:0000017e +75863205ns 1376767 1c000e84 00130313 addi x6, x6, 1 x6=1c00b937 x6:1c00b936 +75863224ns 1376768 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000017d +75863304ns 1376772 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b937 PA:1c00b937 +75863323ns 1376773 1c000e82 fff60613 addi x12, x12, -1 x12=0000017c x12:0000017d +75863343ns 1376774 1c000e84 00130313 addi x6, x6, 1 x6=1c00b938 x6:1c00b937 +75863363ns 1376775 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000017c +75863442ns 1376779 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b938 PA:1c00b938 +75863462ns 1376780 1c000e82 fff60613 addi x12, x12, -1 x12=0000017b x12:0000017c +75863482ns 1376781 1c000e84 00130313 addi x6, x6, 1 x6=1c00b939 x6:1c00b938 +75863501ns 1376782 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000017b +75863581ns 1376786 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b939 PA:1c00b939 +75863600ns 1376787 1c000e82 fff60613 addi x12, x12, -1 x12=0000017a x12:0000017b +75863620ns 1376788 1c000e84 00130313 addi x6, x6, 1 x6=1c00b93a x6:1c00b939 +75863640ns 1376789 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000017a +75863719ns 1376793 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b93a PA:1c00b93a +75863739ns 1376794 1c000e82 fff60613 addi x12, x12, -1 x12=00000179 x12:0000017a +75863759ns 1376795 1c000e84 00130313 addi x6, x6, 1 x6=1c00b93b x6:1c00b93a +75863779ns 1376796 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000179 +75863858ns 1376800 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b93b PA:1c00b93b +75863878ns 1376801 1c000e82 fff60613 addi x12, x12, -1 x12=00000178 x12:00000179 +75863897ns 1376802 1c000e84 00130313 addi x6, x6, 1 x6=1c00b93c x6:1c00b93b +75863917ns 1376803 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000178 +75863996ns 1376807 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b93c PA:1c00b93c +75864016ns 1376808 1c000e82 fff60613 addi x12, x12, -1 x12=00000177 x12:00000178 +75864036ns 1376809 1c000e84 00130313 addi x6, x6, 1 x6=1c00b93d x6:1c00b93c +75864056ns 1376810 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000177 +75864135ns 1376814 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b93d PA:1c00b93d +75864155ns 1376815 1c000e82 fff60613 addi x12, x12, -1 x12=00000176 x12:00000177 +75864174ns 1376816 1c000e84 00130313 addi x6, x6, 1 x6=1c00b93e x6:1c00b93d +75864194ns 1376817 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000176 +75864273ns 1376821 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b93e PA:1c00b93e +75864293ns 1376822 1c000e82 fff60613 addi x12, x12, -1 x12=00000175 x12:00000176 +75864313ns 1376823 1c000e84 00130313 addi x6, x6, 1 x6=1c00b93f x6:1c00b93e +75864333ns 1376824 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000175 +75864412ns 1376828 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b93f PA:1c00b93f +75864432ns 1376829 1c000e82 fff60613 addi x12, x12, -1 x12=00000174 x12:00000175 +75864452ns 1376830 1c000e84 00130313 addi x6, x6, 1 x6=1c00b940 x6:1c00b93f +75864471ns 1376831 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000174 +75864550ns 1376835 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b940 PA:1c00b940 +75864570ns 1376836 1c000e82 fff60613 addi x12, x12, -1 x12=00000173 x12:00000174 +75864590ns 1376837 1c000e84 00130313 addi x6, x6, 1 x6=1c00b941 x6:1c00b940 +75864610ns 1376838 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000173 +75864689ns 1376842 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b941 PA:1c00b941 +75864709ns 1376843 1c000e82 fff60613 addi x12, x12, -1 x12=00000172 x12:00000173 +75864729ns 1376844 1c000e84 00130313 addi x6, x6, 1 x6=1c00b942 x6:1c00b941 +75864748ns 1376845 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000172 +75864828ns 1376849 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b942 PA:1c00b942 +75864847ns 1376850 1c000e82 fff60613 addi x12, x12, -1 x12=00000171 x12:00000172 +75864867ns 1376851 1c000e84 00130313 addi x6, x6, 1 x6=1c00b943 x6:1c00b942 +75864887ns 1376852 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000171 +75864966ns 1376856 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b943 PA:1c00b943 +75864986ns 1376857 1c000e82 fff60613 addi x12, x12, -1 x12=00000170 x12:00000171 +75865006ns 1376858 1c000e84 00130313 addi x6, x6, 1 x6=1c00b944 x6:1c00b943 +75865025ns 1376859 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000170 +75865105ns 1376863 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b944 PA:1c00b944 +75865124ns 1376864 1c000e82 fff60613 addi x12, x12, -1 x12=0000016f x12:00000170 +75865144ns 1376865 1c000e84 00130313 addi x6, x6, 1 x6=1c00b945 x6:1c00b944 +75865164ns 1376866 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000016f +75865243ns 1376870 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b945 PA:1c00b945 +75865263ns 1376871 1c000e82 fff60613 addi x12, x12, -1 x12=0000016e x12:0000016f +75865283ns 1376872 1c000e84 00130313 addi x6, x6, 1 x6=1c00b946 x6:1c00b945 +75865303ns 1376873 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000016e +75865382ns 1376877 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b946 PA:1c00b946 +75865402ns 1376878 1c000e82 fff60613 addi x12, x12, -1 x12=0000016d x12:0000016e +75865421ns 1376879 1c000e84 00130313 addi x6, x6, 1 x6=1c00b947 x6:1c00b946 +75865441ns 1376880 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000016d +75865520ns 1376884 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b947 PA:1c00b947 +75865540ns 1376885 1c000e82 fff60613 addi x12, x12, -1 x12=0000016c x12:0000016d +75865560ns 1376886 1c000e84 00130313 addi x6, x6, 1 x6=1c00b948 x6:1c00b947 +75865580ns 1376887 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000016c +75865659ns 1376891 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b948 PA:1c00b948 +75865679ns 1376892 1c000e82 fff60613 addi x12, x12, -1 x12=0000016b x12:0000016c +75865698ns 1376893 1c000e84 00130313 addi x6, x6, 1 x6=1c00b949 x6:1c00b948 +75865718ns 1376894 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000016b +75865797ns 1376898 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b949 PA:1c00b949 +75865817ns 1376899 1c000e82 fff60613 addi x12, x12, -1 x12=0000016a x12:0000016b +75865837ns 1376900 1c000e84 00130313 addi x6, x6, 1 x6=1c00b94a x6:1c00b949 +75865857ns 1376901 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000016a +75865936ns 1376905 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b94a PA:1c00b94a +75865956ns 1376906 1c000e82 fff60613 addi x12, x12, -1 x12=00000169 x12:0000016a +75865975ns 1376907 1c000e84 00130313 addi x6, x6, 1 x6=1c00b94b x6:1c00b94a +75865995ns 1376908 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000169 +75866074ns 1376912 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b94b PA:1c00b94b +75866094ns 1376913 1c000e82 fff60613 addi x12, x12, -1 x12=00000168 x12:00000169 +75866114ns 1376914 1c000e84 00130313 addi x6, x6, 1 x6=1c00b94c x6:1c00b94b +75866134ns 1376915 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000168 +75866213ns 1376919 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b94c PA:1c00b94c +75866233ns 1376920 1c000e82 fff60613 addi x12, x12, -1 x12=00000167 x12:00000168 +75866253ns 1376921 1c000e84 00130313 addi x6, x6, 1 x6=1c00b94d x6:1c00b94c +75866272ns 1376922 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000167 +75866352ns 1376926 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b94d PA:1c00b94d +75866371ns 1376927 1c000e82 fff60613 addi x12, x12, -1 x12=00000166 x12:00000167 +75866391ns 1376928 1c000e84 00130313 addi x6, x6, 1 x6=1c00b94e x6:1c00b94d +75866411ns 1376929 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000166 +75866490ns 1376933 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b94e PA:1c00b94e +75866510ns 1376934 1c000e82 fff60613 addi x12, x12, -1 x12=00000165 x12:00000166 +75866530ns 1376935 1c000e84 00130313 addi x6, x6, 1 x6=1c00b94f x6:1c00b94e +75866549ns 1376936 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000165 +75866629ns 1376940 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b94f PA:1c00b94f +75866648ns 1376941 1c000e82 fff60613 addi x12, x12, -1 x12=00000164 x12:00000165 +75866668ns 1376942 1c000e84 00130313 addi x6, x6, 1 x6=1c00b950 x6:1c00b94f +75866688ns 1376943 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000164 +75866767ns 1376947 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b950 PA:1c00b950 +75866787ns 1376948 1c000e82 fff60613 addi x12, x12, -1 x12=00000163 x12:00000164 +75866807ns 1376949 1c000e84 00130313 addi x6, x6, 1 x6=1c00b951 x6:1c00b950 +75866827ns 1376950 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000163 +75866906ns 1376954 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b951 PA:1c00b951 +75866926ns 1376955 1c000e82 fff60613 addi x12, x12, -1 x12=00000162 x12:00000163 +75866945ns 1376956 1c000e84 00130313 addi x6, x6, 1 x6=1c00b952 x6:1c00b951 +75866965ns 1376957 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000162 +75867044ns 1376961 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b952 PA:1c00b952 +75867064ns 1376962 1c000e82 fff60613 addi x12, x12, -1 x12=00000161 x12:00000162 +75867084ns 1376963 1c000e84 00130313 addi x6, x6, 1 x6=1c00b953 x6:1c00b952 +75867104ns 1376964 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000161 +75867183ns 1376968 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b953 PA:1c00b953 +75867203ns 1376969 1c000e82 fff60613 addi x12, x12, -1 x12=00000160 x12:00000161 +75867222ns 1376970 1c000e84 00130313 addi x6, x6, 1 x6=1c00b954 x6:1c00b953 +75867242ns 1376971 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000160 +75867321ns 1376975 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b954 PA:1c00b954 +75867341ns 1376976 1c000e82 fff60613 addi x12, x12, -1 x12=0000015f x12:00000160 +75867361ns 1376977 1c000e84 00130313 addi x6, x6, 1 x6=1c00b955 x6:1c00b954 +75867381ns 1376978 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000015f +75867460ns 1376982 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b955 PA:1c00b955 +75867480ns 1376983 1c000e82 fff60613 addi x12, x12, -1 x12=0000015e x12:0000015f +75867499ns 1376984 1c000e84 00130313 addi x6, x6, 1 x6=1c00b956 x6:1c00b955 +75867519ns 1376985 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000015e +75867598ns 1376989 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b956 PA:1c00b956 +75867618ns 1376990 1c000e82 fff60613 addi x12, x12, -1 x12=0000015d x12:0000015e +75867638ns 1376991 1c000e84 00130313 addi x6, x6, 1 x6=1c00b957 x6:1c00b956 +75867658ns 1376992 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000015d +75867737ns 1376996 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b957 PA:1c00b957 +75867757ns 1376997 1c000e82 fff60613 addi x12, x12, -1 x12=0000015c x12:0000015d +75867777ns 1376998 1c000e84 00130313 addi x6, x6, 1 x6=1c00b958 x6:1c00b957 +75867796ns 1376999 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000015c +75867876ns 1377003 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b958 PA:1c00b958 +75867895ns 1377004 1c000e82 fff60613 addi x12, x12, -1 x12=0000015b x12:0000015c +75867915ns 1377005 1c000e84 00130313 addi x6, x6, 1 x6=1c00b959 x6:1c00b958 +75867935ns 1377006 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000015b +75868014ns 1377010 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b959 PA:1c00b959 +75868034ns 1377011 1c000e82 fff60613 addi x12, x12, -1 x12=0000015a x12:0000015b +75868054ns 1377012 1c000e84 00130313 addi x6, x6, 1 x6=1c00b95a x6:1c00b959 +75868073ns 1377013 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000015a +75868153ns 1377017 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b95a PA:1c00b95a +75868172ns 1377018 1c000e82 fff60613 addi x12, x12, -1 x12=00000159 x12:0000015a +75868192ns 1377019 1c000e84 00130313 addi x6, x6, 1 x6=1c00b95b x6:1c00b95a +75868212ns 1377020 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000159 +75868291ns 1377024 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b95b PA:1c00b95b +75868311ns 1377025 1c000e82 fff60613 addi x12, x12, -1 x12=00000158 x12:00000159 +75868331ns 1377026 1c000e84 00130313 addi x6, x6, 1 x6=1c00b95c x6:1c00b95b +75868351ns 1377027 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000158 +75868430ns 1377031 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b95c PA:1c00b95c +75868449ns 1377032 1c000e82 fff60613 addi x12, x12, -1 x12=00000157 x12:00000158 +75868469ns 1377033 1c000e84 00130313 addi x6, x6, 1 x6=1c00b95d x6:1c00b95c +75868489ns 1377034 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000157 +75868568ns 1377038 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b95d PA:1c00b95d +75868588ns 1377039 1c000e82 fff60613 addi x12, x12, -1 x12=00000156 x12:00000157 +75868608ns 1377040 1c000e84 00130313 addi x6, x6, 1 x6=1c00b95e x6:1c00b95d +75868628ns 1377041 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000156 +75868707ns 1377045 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b95e PA:1c00b95e +75868727ns 1377046 1c000e82 fff60613 addi x12, x12, -1 x12=00000155 x12:00000156 +75868746ns 1377047 1c000e84 00130313 addi x6, x6, 1 x6=1c00b95f x6:1c00b95e +75868766ns 1377048 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000155 +75868845ns 1377052 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b95f PA:1c00b95f +75868865ns 1377053 1c000e82 fff60613 addi x12, x12, -1 x12=00000154 x12:00000155 +75868885ns 1377054 1c000e84 00130313 addi x6, x6, 1 x6=1c00b960 x6:1c00b95f +75868905ns 1377055 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000154 +75868984ns 1377059 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b960 PA:1c00b960 +75869004ns 1377060 1c000e82 fff60613 addi x12, x12, -1 x12=00000153 x12:00000154 +75869023ns 1377061 1c000e84 00130313 addi x6, x6, 1 x6=1c00b961 x6:1c00b960 +75869043ns 1377062 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000153 +75869122ns 1377066 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b961 PA:1c00b961 +75869142ns 1377067 1c000e82 fff60613 addi x12, x12, -1 x12=00000152 x12:00000153 +75869162ns 1377068 1c000e84 00130313 addi x6, x6, 1 x6=1c00b962 x6:1c00b961 +75869182ns 1377069 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000152 +75869261ns 1377073 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b962 PA:1c00b962 +75869281ns 1377074 1c000e82 fff60613 addi x12, x12, -1 x12=00000151 x12:00000152 +75869301ns 1377075 1c000e84 00130313 addi x6, x6, 1 x6=1c00b963 x6:1c00b962 +75869320ns 1377076 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000151 +75869400ns 1377080 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b963 PA:1c00b963 +75869419ns 1377081 1c000e82 fff60613 addi x12, x12, -1 x12=00000150 x12:00000151 +75869439ns 1377082 1c000e84 00130313 addi x6, x6, 1 x6=1c00b964 x6:1c00b963 +75869459ns 1377083 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000150 +75869538ns 1377087 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b964 PA:1c00b964 +75869558ns 1377088 1c000e82 fff60613 addi x12, x12, -1 x12=0000014f x12:00000150 +75869578ns 1377089 1c000e84 00130313 addi x6, x6, 1 x6=1c00b965 x6:1c00b964 +75869597ns 1377090 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000014f +75869677ns 1377094 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b965 PA:1c00b965 +75869696ns 1377095 1c000e82 fff60613 addi x12, x12, -1 x12=0000014e x12:0000014f +75869716ns 1377096 1c000e84 00130313 addi x6, x6, 1 x6=1c00b966 x6:1c00b965 +75869736ns 1377097 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000014e +75869815ns 1377101 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b966 PA:1c00b966 +75869835ns 1377102 1c000e82 fff60613 addi x12, x12, -1 x12=0000014d x12:0000014e +75869855ns 1377103 1c000e84 00130313 addi x6, x6, 1 x6=1c00b967 x6:1c00b966 +75869875ns 1377104 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000014d +75869954ns 1377108 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b967 PA:1c00b967 +75869973ns 1377109 1c000e82 fff60613 addi x12, x12, -1 x12=0000014c x12:0000014d +75869993ns 1377110 1c000e84 00130313 addi x6, x6, 1 x6=1c00b968 x6:1c00b967 +75870013ns 1377111 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000014c +75870092ns 1377115 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b968 PA:1c00b968 +75870112ns 1377116 1c000e82 fff60613 addi x12, x12, -1 x12=0000014b x12:0000014c +75870132ns 1377117 1c000e84 00130313 addi x6, x6, 1 x6=1c00b969 x6:1c00b968 +75870152ns 1377118 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000014b +75870231ns 1377122 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b969 PA:1c00b969 +75870251ns 1377123 1c000e82 fff60613 addi x12, x12, -1 x12=0000014a x12:0000014b +75870270ns 1377124 1c000e84 00130313 addi x6, x6, 1 x6=1c00b96a x6:1c00b969 +75870290ns 1377125 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000014a +75870369ns 1377129 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b96a PA:1c00b96a +75870389ns 1377130 1c000e82 fff60613 addi x12, x12, -1 x12=00000149 x12:0000014a +75870409ns 1377131 1c000e84 00130313 addi x6, x6, 1 x6=1c00b96b x6:1c00b96a +75870429ns 1377132 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000149 +75870508ns 1377136 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b96b PA:1c00b96b +75870528ns 1377137 1c000e82 fff60613 addi x12, x12, -1 x12=00000148 x12:00000149 +75870547ns 1377138 1c000e84 00130313 addi x6, x6, 1 x6=1c00b96c x6:1c00b96b +75870567ns 1377139 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000148 +75870646ns 1377143 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b96c PA:1c00b96c +75870666ns 1377144 1c000e82 fff60613 addi x12, x12, -1 x12=00000147 x12:00000148 +75870686ns 1377145 1c000e84 00130313 addi x6, x6, 1 x6=1c00b96d x6:1c00b96c +75870706ns 1377146 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000147 +75870785ns 1377150 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b96d PA:1c00b96d +75870805ns 1377151 1c000e82 fff60613 addi x12, x12, -1 x12=00000146 x12:00000147 +75870825ns 1377152 1c000e84 00130313 addi x6, x6, 1 x6=1c00b96e x6:1c00b96d +75870844ns 1377153 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000146 +75870923ns 1377157 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b96e PA:1c00b96e +75870943ns 1377158 1c000e82 fff60613 addi x12, x12, -1 x12=00000145 x12:00000146 +75870963ns 1377159 1c000e84 00130313 addi x6, x6, 1 x6=1c00b96f x6:1c00b96e +75870983ns 1377160 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000145 +75871062ns 1377164 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b96f PA:1c00b96f +75871082ns 1377165 1c000e82 fff60613 addi x12, x12, -1 x12=00000144 x12:00000145 +75871102ns 1377166 1c000e84 00130313 addi x6, x6, 1 x6=1c00b970 x6:1c00b96f +75871121ns 1377167 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000144 +75871201ns 1377171 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b970 PA:1c00b970 +75871220ns 1377172 1c000e82 fff60613 addi x12, x12, -1 x12=00000143 x12:00000144 +75871240ns 1377173 1c000e84 00130313 addi x6, x6, 1 x6=1c00b971 x6:1c00b970 +75871260ns 1377174 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000143 +75871339ns 1377178 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b971 PA:1c00b971 +75871359ns 1377179 1c000e82 fff60613 addi x12, x12, -1 x12=00000142 x12:00000143 +75871379ns 1377180 1c000e84 00130313 addi x6, x6, 1 x6=1c00b972 x6:1c00b971 +75871399ns 1377181 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000142 +75871478ns 1377185 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b972 PA:1c00b972 +75871497ns 1377186 1c000e82 fff60613 addi x12, x12, -1 x12=00000141 x12:00000142 +75871517ns 1377187 1c000e84 00130313 addi x6, x6, 1 x6=1c00b973 x6:1c00b972 +75871537ns 1377188 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000141 +75871616ns 1377192 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b973 PA:1c00b973 +75871636ns 1377193 1c000e82 fff60613 addi x12, x12, -1 x12=00000140 x12:00000141 +75871656ns 1377194 1c000e84 00130313 addi x6, x6, 1 x6=1c00b974 x6:1c00b973 +75871676ns 1377195 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000140 +75871755ns 1377199 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b974 PA:1c00b974 +75871775ns 1377200 1c000e82 fff60613 addi x12, x12, -1 x12=0000013f x12:00000140 +75871794ns 1377201 1c000e84 00130313 addi x6, x6, 1 x6=1c00b975 x6:1c00b974 +75871814ns 1377202 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000013f +75871893ns 1377206 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b975 PA:1c00b975 +75871913ns 1377207 1c000e82 fff60613 addi x12, x12, -1 x12=0000013e x12:0000013f +75871933ns 1377208 1c000e84 00130313 addi x6, x6, 1 x6=1c00b976 x6:1c00b975 +75871953ns 1377209 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000013e +75872032ns 1377213 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b976 PA:1c00b976 +75872052ns 1377214 1c000e82 fff60613 addi x12, x12, -1 x12=0000013d x12:0000013e +75872071ns 1377215 1c000e84 00130313 addi x6, x6, 1 x6=1c00b977 x6:1c00b976 +75872091ns 1377216 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000013d +75872170ns 1377220 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b977 PA:1c00b977 +75872190ns 1377221 1c000e82 fff60613 addi x12, x12, -1 x12=0000013c x12:0000013d +75872210ns 1377222 1c000e84 00130313 addi x6, x6, 1 x6=1c00b978 x6:1c00b977 +75872230ns 1377223 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000013c +75872309ns 1377227 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b978 PA:1c00b978 +75872329ns 1377228 1c000e82 fff60613 addi x12, x12, -1 x12=0000013b x12:0000013c +75872349ns 1377229 1c000e84 00130313 addi x6, x6, 1 x6=1c00b979 x6:1c00b978 +75872368ns 1377230 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000013b +75872447ns 1377234 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b979 PA:1c00b979 +75872467ns 1377235 1c000e82 fff60613 addi x12, x12, -1 x12=0000013a x12:0000013b +75872487ns 1377236 1c000e84 00130313 addi x6, x6, 1 x6=1c00b97a x6:1c00b979 +75872507ns 1377237 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000013a +75872586ns 1377241 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b97a PA:1c00b97a +75872606ns 1377242 1c000e82 fff60613 addi x12, x12, -1 x12=00000139 x12:0000013a +75872626ns 1377243 1c000e84 00130313 addi x6, x6, 1 x6=1c00b97b x6:1c00b97a +75872645ns 1377244 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000139 +75872725ns 1377248 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b97b PA:1c00b97b +75872744ns 1377249 1c000e82 fff60613 addi x12, x12, -1 x12=00000138 x12:00000139 +75872764ns 1377250 1c000e84 00130313 addi x6, x6, 1 x6=1c00b97c x6:1c00b97b +75872784ns 1377251 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000138 +75872863ns 1377255 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b97c PA:1c00b97c +75872883ns 1377256 1c000e82 fff60613 addi x12, x12, -1 x12=00000137 x12:00000138 +75872903ns 1377257 1c000e84 00130313 addi x6, x6, 1 x6=1c00b97d x6:1c00b97c +75872922ns 1377258 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000137 +75873002ns 1377262 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b97d PA:1c00b97d +75873021ns 1377263 1c000e82 fff60613 addi x12, x12, -1 x12=00000136 x12:00000137 +75873041ns 1377264 1c000e84 00130313 addi x6, x6, 1 x6=1c00b97e x6:1c00b97d +75873061ns 1377265 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000136 +75873140ns 1377269 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b97e PA:1c00b97e +75873160ns 1377270 1c000e82 fff60613 addi x12, x12, -1 x12=00000135 x12:00000136 +75873180ns 1377271 1c000e84 00130313 addi x6, x6, 1 x6=1c00b97f x6:1c00b97e +75873200ns 1377272 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000135 +75873279ns 1377276 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b97f PA:1c00b97f +75873299ns 1377277 1c000e82 fff60613 addi x12, x12, -1 x12=00000134 x12:00000135 +75873318ns 1377278 1c000e84 00130313 addi x6, x6, 1 x6=1c00b980 x6:1c00b97f +75873338ns 1377279 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000134 +75873417ns 1377283 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b980 PA:1c00b980 +75873437ns 1377284 1c000e82 fff60613 addi x12, x12, -1 x12=00000133 x12:00000134 +75873457ns 1377285 1c000e84 00130313 addi x6, x6, 1 x6=1c00b981 x6:1c00b980 +75873477ns 1377286 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000133 +75873556ns 1377290 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b981 PA:1c00b981 +75873576ns 1377291 1c000e82 fff60613 addi x12, x12, -1 x12=00000132 x12:00000133 +75873595ns 1377292 1c000e84 00130313 addi x6, x6, 1 x6=1c00b982 x6:1c00b981 +75873615ns 1377293 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000132 +75873694ns 1377297 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b982 PA:1c00b982 +75873714ns 1377298 1c000e82 fff60613 addi x12, x12, -1 x12=00000131 x12:00000132 +75873734ns 1377299 1c000e84 00130313 addi x6, x6, 1 x6=1c00b983 x6:1c00b982 +75873754ns 1377300 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000131 +75873833ns 1377304 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b983 PA:1c00b983 +75873853ns 1377305 1c000e82 fff60613 addi x12, x12, -1 x12=00000130 x12:00000131 +75873873ns 1377306 1c000e84 00130313 addi x6, x6, 1 x6=1c00b984 x6:1c00b983 +75873892ns 1377307 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000130 +75873971ns 1377311 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b984 PA:1c00b984 +75873991ns 1377312 1c000e82 fff60613 addi x12, x12, -1 x12=0000012f x12:00000130 +75874011ns 1377313 1c000e84 00130313 addi x6, x6, 1 x6=1c00b985 x6:1c00b984 +75874031ns 1377314 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000012f +75874110ns 1377318 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b985 PA:1c00b985 +75874130ns 1377319 1c000e82 fff60613 addi x12, x12, -1 x12=0000012e x12:0000012f +75874150ns 1377320 1c000e84 00130313 addi x6, x6, 1 x6=1c00b986 x6:1c00b985 +75874169ns 1377321 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000012e +75874249ns 1377325 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b986 PA:1c00b986 +75874268ns 1377326 1c000e82 fff60613 addi x12, x12, -1 x12=0000012d x12:0000012e +75874288ns 1377327 1c000e84 00130313 addi x6, x6, 1 x6=1c00b987 x6:1c00b986 +75874308ns 1377328 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000012d +75874387ns 1377332 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b987 PA:1c00b987 +75874407ns 1377333 1c000e82 fff60613 addi x12, x12, -1 x12=0000012c x12:0000012d +75874427ns 1377334 1c000e84 00130313 addi x6, x6, 1 x6=1c00b988 x6:1c00b987 +75874446ns 1377335 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000012c +75874526ns 1377339 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b988 PA:1c00b988 +75874545ns 1377340 1c000e82 fff60613 addi x12, x12, -1 x12=0000012b x12:0000012c +75874565ns 1377341 1c000e84 00130313 addi x6, x6, 1 x6=1c00b989 x6:1c00b988 +75874585ns 1377342 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000012b +75874664ns 1377346 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b989 PA:1c00b989 +75874684ns 1377347 1c000e82 fff60613 addi x12, x12, -1 x12=0000012a x12:0000012b +75874704ns 1377348 1c000e84 00130313 addi x6, x6, 1 x6=1c00b98a x6:1c00b989 +75874724ns 1377349 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000012a +75874803ns 1377353 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b98a PA:1c00b98a +75874823ns 1377354 1c000e82 fff60613 addi x12, x12, -1 x12=00000129 x12:0000012a +75874842ns 1377355 1c000e84 00130313 addi x6, x6, 1 x6=1c00b98b x6:1c00b98a +75874862ns 1377356 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000129 +75874941ns 1377360 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b98b PA:1c00b98b +75874961ns 1377361 1c000e82 fff60613 addi x12, x12, -1 x12=00000128 x12:00000129 +75874981ns 1377362 1c000e84 00130313 addi x6, x6, 1 x6=1c00b98c x6:1c00b98b +75875001ns 1377363 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000128 +75875080ns 1377367 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b98c PA:1c00b98c +75875100ns 1377368 1c000e82 fff60613 addi x12, x12, -1 x12=00000127 x12:00000128 +75875119ns 1377369 1c000e84 00130313 addi x6, x6, 1 x6=1c00b98d x6:1c00b98c +75875139ns 1377370 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000127 +75875218ns 1377374 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b98d PA:1c00b98d +75875238ns 1377375 1c000e82 fff60613 addi x12, x12, -1 x12=00000126 x12:00000127 +75875258ns 1377376 1c000e84 00130313 addi x6, x6, 1 x6=1c00b98e x6:1c00b98d +75875278ns 1377377 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000126 +75875357ns 1377381 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b98e PA:1c00b98e +75875377ns 1377382 1c000e82 fff60613 addi x12, x12, -1 x12=00000125 x12:00000126 +75875396ns 1377383 1c000e84 00130313 addi x6, x6, 1 x6=1c00b98f x6:1c00b98e +75875416ns 1377384 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000125 +75875495ns 1377388 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b98f PA:1c00b98f +75875515ns 1377389 1c000e82 fff60613 addi x12, x12, -1 x12=00000124 x12:00000125 +75875535ns 1377390 1c000e84 00130313 addi x6, x6, 1 x6=1c00b990 x6:1c00b98f +75875555ns 1377391 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000124 +75875634ns 1377395 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b990 PA:1c00b990 +75875654ns 1377396 1c000e82 fff60613 addi x12, x12, -1 x12=00000123 x12:00000124 +75875674ns 1377397 1c000e84 00130313 addi x6, x6, 1 x6=1c00b991 x6:1c00b990 +75875693ns 1377398 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000123 +75875773ns 1377402 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b991 PA:1c00b991 +75875792ns 1377403 1c000e82 fff60613 addi x12, x12, -1 x12=00000122 x12:00000123 +75875812ns 1377404 1c000e84 00130313 addi x6, x6, 1 x6=1c00b992 x6:1c00b991 +75875832ns 1377405 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000122 +75875911ns 1377409 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b992 PA:1c00b992 +75875931ns 1377410 1c000e82 fff60613 addi x12, x12, -1 x12=00000121 x12:00000122 +75875951ns 1377411 1c000e84 00130313 addi x6, x6, 1 x6=1c00b993 x6:1c00b992 +75875970ns 1377412 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000121 +75876050ns 1377416 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b993 PA:1c00b993 +75876069ns 1377417 1c000e82 fff60613 addi x12, x12, -1 x12=00000120 x12:00000121 +75876089ns 1377418 1c000e84 00130313 addi x6, x6, 1 x6=1c00b994 x6:1c00b993 +75876109ns 1377419 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000120 +75876188ns 1377423 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b994 PA:1c00b994 +75876208ns 1377424 1c000e82 fff60613 addi x12, x12, -1 x12=0000011f x12:00000120 +75876228ns 1377425 1c000e84 00130313 addi x6, x6, 1 x6=1c00b995 x6:1c00b994 +75876248ns 1377426 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000011f +75876327ns 1377430 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b995 PA:1c00b995 +75876347ns 1377431 1c000e82 fff60613 addi x12, x12, -1 x12=0000011e x12:0000011f +75876366ns 1377432 1c000e84 00130313 addi x6, x6, 1 x6=1c00b996 x6:1c00b995 +75876386ns 1377433 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000011e +75876465ns 1377437 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b996 PA:1c00b996 +75876485ns 1377438 1c000e82 fff60613 addi x12, x12, -1 x12=0000011d x12:0000011e +75876505ns 1377439 1c000e84 00130313 addi x6, x6, 1 x6=1c00b997 x6:1c00b996 +75876525ns 1377440 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000011d +75876604ns 1377444 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b997 PA:1c00b997 +75876624ns 1377445 1c000e82 fff60613 addi x12, x12, -1 x12=0000011c x12:0000011d +75876643ns 1377446 1c000e84 00130313 addi x6, x6, 1 x6=1c00b998 x6:1c00b997 +75876663ns 1377447 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000011c +75876742ns 1377451 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b998 PA:1c00b998 +75876762ns 1377452 1c000e82 fff60613 addi x12, x12, -1 x12=0000011b x12:0000011c +75876782ns 1377453 1c000e84 00130313 addi x6, x6, 1 x6=1c00b999 x6:1c00b998 +75876802ns 1377454 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000011b +75876881ns 1377458 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b999 PA:1c00b999 +75876901ns 1377459 1c000e82 fff60613 addi x12, x12, -1 x12=0000011a x12:0000011b +75876920ns 1377460 1c000e84 00130313 addi x6, x6, 1 x6=1c00b99a x6:1c00b999 +75876940ns 1377461 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000011a +75877019ns 1377465 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b99a PA:1c00b99a +75877039ns 1377466 1c000e82 fff60613 addi x12, x12, -1 x12=00000119 x12:0000011a +75877059ns 1377467 1c000e84 00130313 addi x6, x6, 1 x6=1c00b99b x6:1c00b99a +75877079ns 1377468 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000119 +75877158ns 1377472 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b99b PA:1c00b99b +75877178ns 1377473 1c000e82 fff60613 addi x12, x12, -1 x12=00000118 x12:00000119 +75877198ns 1377474 1c000e84 00130313 addi x6, x6, 1 x6=1c00b99c x6:1c00b99b +75877217ns 1377475 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000118 +75877297ns 1377479 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b99c PA:1c00b99c +75877316ns 1377480 1c000e82 fff60613 addi x12, x12, -1 x12=00000117 x12:00000118 +75877336ns 1377481 1c000e84 00130313 addi x6, x6, 1 x6=1c00b99d x6:1c00b99c +75877356ns 1377482 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000117 +75877435ns 1377486 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b99d PA:1c00b99d +75877455ns 1377487 1c000e82 fff60613 addi x12, x12, -1 x12=00000116 x12:00000117 +75877475ns 1377488 1c000e84 00130313 addi x6, x6, 1 x6=1c00b99e x6:1c00b99d +75877494ns 1377489 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000116 +75877574ns 1377493 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b99e PA:1c00b99e +75877593ns 1377494 1c000e82 fff60613 addi x12, x12, -1 x12=00000115 x12:00000116 +75877613ns 1377495 1c000e84 00130313 addi x6, x6, 1 x6=1c00b99f x6:1c00b99e +75877633ns 1377496 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000115 +75877712ns 1377500 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b99f PA:1c00b99f +75877732ns 1377501 1c000e82 fff60613 addi x12, x12, -1 x12=00000114 x12:00000115 +75877752ns 1377502 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9a0 x6:1c00b99f +75877772ns 1377503 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000114 +75877851ns 1377507 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9a0 PA:1c00b9a0 +75877870ns 1377508 1c000e82 fff60613 addi x12, x12, -1 x12=00000113 x12:00000114 +75877890ns 1377509 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9a1 x6:1c00b9a0 +75877910ns 1377510 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000113 +75877989ns 1377514 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9a1 PA:1c00b9a1 +75878009ns 1377515 1c000e82 fff60613 addi x12, x12, -1 x12=00000112 x12:00000113 +75878029ns 1377516 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9a2 x6:1c00b9a1 +75878049ns 1377517 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000112 +75878128ns 1377521 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9a2 PA:1c00b9a2 +75878148ns 1377522 1c000e82 fff60613 addi x12, x12, -1 x12=00000111 x12:00000112 +75878167ns 1377523 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9a3 x6:1c00b9a2 +75878187ns 1377524 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000111 +75878266ns 1377528 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9a3 PA:1c00b9a3 +75878286ns 1377529 1c000e82 fff60613 addi x12, x12, -1 x12=00000110 x12:00000111 +75878306ns 1377530 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9a4 x6:1c00b9a3 +75878326ns 1377531 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000110 +75878405ns 1377535 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9a4 PA:1c00b9a4 +75878425ns 1377536 1c000e82 fff60613 addi x12, x12, -1 x12=0000010f x12:00000110 +75878444ns 1377537 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9a5 x6:1c00b9a4 +75878464ns 1377538 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000010f +75878543ns 1377542 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9a5 PA:1c00b9a5 +75878563ns 1377543 1c000e82 fff60613 addi x12, x12, -1 x12=0000010e x12:0000010f +75878583ns 1377544 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9a6 x6:1c00b9a5 +75878603ns 1377545 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000010e +75878682ns 1377549 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9a6 PA:1c00b9a6 +75878702ns 1377550 1c000e82 fff60613 addi x12, x12, -1 x12=0000010d x12:0000010e +75878722ns 1377551 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9a7 x6:1c00b9a6 +75878741ns 1377552 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000010d +75878821ns 1377556 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9a7 PA:1c00b9a7 +75878840ns 1377557 1c000e82 fff60613 addi x12, x12, -1 x12=0000010c x12:0000010d +75878860ns 1377558 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9a8 x6:1c00b9a7 +75878880ns 1377559 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000010c +75878959ns 1377563 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9a8 PA:1c00b9a8 +75878979ns 1377564 1c000e82 fff60613 addi x12, x12, -1 x12=0000010b x12:0000010c +75878999ns 1377565 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9a9 x6:1c00b9a8 +75879018ns 1377566 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000010b +75879098ns 1377570 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9a9 PA:1c00b9a9 +75879117ns 1377571 1c000e82 fff60613 addi x12, x12, -1 x12=0000010a x12:0000010b +75879137ns 1377572 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9aa x6:1c00b9a9 +75879157ns 1377573 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000010a +75879236ns 1377577 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9aa PA:1c00b9aa +75879256ns 1377578 1c000e82 fff60613 addi x12, x12, -1 x12=00000109 x12:0000010a +75879276ns 1377579 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9ab x6:1c00b9aa +75879296ns 1377580 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000109 +75879375ns 1377584 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9ab PA:1c00b9ab +75879394ns 1377585 1c000e82 fff60613 addi x12, x12, -1 x12=00000108 x12:00000109 +75879414ns 1377586 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9ac x6:1c00b9ab +75879434ns 1377587 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000108 +75879513ns 1377591 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9ac PA:1c00b9ac +75879533ns 1377592 1c000e82 fff60613 addi x12, x12, -1 x12=00000107 x12:00000108 +75879553ns 1377593 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9ad x6:1c00b9ac +75879573ns 1377594 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000107 +75879652ns 1377598 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9ad PA:1c00b9ad +75879672ns 1377599 1c000e82 fff60613 addi x12, x12, -1 x12=00000106 x12:00000107 +75879691ns 1377600 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9ae x6:1c00b9ad +75879711ns 1377601 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000106 +75879790ns 1377605 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9ae PA:1c00b9ae +75879810ns 1377606 1c000e82 fff60613 addi x12, x12, -1 x12=00000105 x12:00000106 +75879830ns 1377607 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9af x6:1c00b9ae +75879850ns 1377608 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000105 +75879929ns 1377612 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9af PA:1c00b9af +75879949ns 1377613 1c000e82 fff60613 addi x12, x12, -1 x12=00000104 x12:00000105 +75879968ns 1377614 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9b0 x6:1c00b9af +75879988ns 1377615 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000104 +75880067ns 1377619 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9b0 PA:1c00b9b0 +75880087ns 1377620 1c000e82 fff60613 addi x12, x12, -1 x12=00000103 x12:00000104 +75880107ns 1377621 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9b1 x6:1c00b9b0 +75880127ns 1377622 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000103 +75880206ns 1377626 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9b1 PA:1c00b9b1 +75880226ns 1377627 1c000e82 fff60613 addi x12, x12, -1 x12=00000102 x12:00000103 +75880246ns 1377628 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9b2 x6:1c00b9b1 +75880265ns 1377629 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000102 +75880344ns 1377633 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9b2 PA:1c00b9b2 +75880364ns 1377634 1c000e82 fff60613 addi x12, x12, -1 x12=00000101 x12:00000102 +75880384ns 1377635 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9b3 x6:1c00b9b2 +75880404ns 1377636 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000101 +75880483ns 1377640 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9b3 PA:1c00b9b3 +75880503ns 1377641 1c000e82 fff60613 addi x12, x12, -1 x12=00000100 x12:00000101 +75880523ns 1377642 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9b4 x6:1c00b9b3 +75880542ns 1377643 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000100 +75880622ns 1377647 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9b4 PA:1c00b9b4 +75880641ns 1377648 1c000e82 fff60613 addi x12, x12, -1 x12=000000ff x12:00000100 +75880661ns 1377649 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9b5 x6:1c00b9b4 +75880681ns 1377650 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ff +75880760ns 1377654 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9b5 PA:1c00b9b5 +75880780ns 1377655 1c000e82 fff60613 addi x12, x12, -1 x12=000000fe x12:000000ff +75880800ns 1377656 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9b6 x6:1c00b9b5 +75880819ns 1377657 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000fe +75880899ns 1377661 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9b6 PA:1c00b9b6 +75880918ns 1377662 1c000e82 fff60613 addi x12, x12, -1 x12=000000fd x12:000000fe +75880938ns 1377663 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9b7 x6:1c00b9b6 +75880958ns 1377664 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000fd +75881037ns 1377668 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9b7 PA:1c00b9b7 +75881057ns 1377669 1c000e82 fff60613 addi x12, x12, -1 x12=000000fc x12:000000fd +75881077ns 1377670 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9b8 x6:1c00b9b7 +75881097ns 1377671 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000fc +75881176ns 1377675 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9b8 PA:1c00b9b8 +75881196ns 1377676 1c000e82 fff60613 addi x12, x12, -1 x12=000000fb x12:000000fc +75881215ns 1377677 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9b9 x6:1c00b9b8 +75881235ns 1377678 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000fb +75881314ns 1377682 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9b9 PA:1c00b9b9 +75881334ns 1377683 1c000e82 fff60613 addi x12, x12, -1 x12=000000fa x12:000000fb +75881354ns 1377684 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9ba x6:1c00b9b9 +75881374ns 1377685 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000fa +75881453ns 1377689 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9ba PA:1c00b9ba +75881473ns 1377690 1c000e82 fff60613 addi x12, x12, -1 x12=000000f9 x12:000000fa +75881492ns 1377691 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9bb x6:1c00b9ba +75881512ns 1377692 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f9 +75881591ns 1377696 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9bb PA:1c00b9bb +75881611ns 1377697 1c000e82 fff60613 addi x12, x12, -1 x12=000000f8 x12:000000f9 +75881631ns 1377698 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9bc x6:1c00b9bb +75881651ns 1377699 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f8 +75881730ns 1377703 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9bc PA:1c00b9bc +75881750ns 1377704 1c000e82 fff60613 addi x12, x12, -1 x12=000000f7 x12:000000f8 +75881770ns 1377705 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9bd x6:1c00b9bc +75881789ns 1377706 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f7 +75881868ns 1377710 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9bd PA:1c00b9bd +75881888ns 1377711 1c000e82 fff60613 addi x12, x12, -1 x12=000000f6 x12:000000f7 +75881908ns 1377712 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9be x6:1c00b9bd +75881928ns 1377713 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f6 +75882007ns 1377717 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9be PA:1c00b9be +75882027ns 1377718 1c000e82 fff60613 addi x12, x12, -1 x12=000000f5 x12:000000f6 +75882047ns 1377719 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9bf x6:1c00b9be +75882066ns 1377720 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f5 +75882146ns 1377724 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9bf PA:1c00b9bf +75882165ns 1377725 1c000e82 fff60613 addi x12, x12, -1 x12=000000f4 x12:000000f5 +75882185ns 1377726 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9c0 x6:1c00b9bf +75882205ns 1377727 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f4 +75882284ns 1377731 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9c0 PA:1c00b9c0 +75882304ns 1377732 1c000e82 fff60613 addi x12, x12, -1 x12=000000f3 x12:000000f4 +75882324ns 1377733 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9c1 x6:1c00b9c0 +75882343ns 1377734 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f3 +75882423ns 1377738 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9c1 PA:1c00b9c1 +75882442ns 1377739 1c000e82 fff60613 addi x12, x12, -1 x12=000000f2 x12:000000f3 +75882462ns 1377740 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9c2 x6:1c00b9c1 +75882482ns 1377741 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f2 +75882561ns 1377745 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9c2 PA:1c00b9c2 +75882581ns 1377746 1c000e82 fff60613 addi x12, x12, -1 x12=000000f1 x12:000000f2 +75882601ns 1377747 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9c3 x6:1c00b9c2 +75882621ns 1377748 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f1 +75882700ns 1377752 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9c3 PA:1c00b9c3 +75882720ns 1377753 1c000e82 fff60613 addi x12, x12, -1 x12=000000f0 x12:000000f1 +75882739ns 1377754 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9c4 x6:1c00b9c3 +75882759ns 1377755 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000f0 +75882838ns 1377759 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9c4 PA:1c00b9c4 +75882858ns 1377760 1c000e82 fff60613 addi x12, x12, -1 x12=000000ef x12:000000f0 +75882878ns 1377761 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9c5 x6:1c00b9c4 +75882898ns 1377762 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ef +75882977ns 1377766 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9c5 PA:1c00b9c5 +75882997ns 1377767 1c000e82 fff60613 addi x12, x12, -1 x12=000000ee x12:000000ef +75883016ns 1377768 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9c6 x6:1c00b9c5 +75883036ns 1377769 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ee +75883115ns 1377773 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9c6 PA:1c00b9c6 +75883135ns 1377774 1c000e82 fff60613 addi x12, x12, -1 x12=000000ed x12:000000ee +75883155ns 1377775 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9c7 x6:1c00b9c6 +75883175ns 1377776 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ed +75883254ns 1377780 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9c7 PA:1c00b9c7 +75883274ns 1377781 1c000e82 fff60613 addi x12, x12, -1 x12=000000ec x12:000000ed +75883293ns 1377782 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9c8 x6:1c00b9c7 +75883313ns 1377783 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ec +75883392ns 1377787 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9c8 PA:1c00b9c8 +75883412ns 1377788 1c000e82 fff60613 addi x12, x12, -1 x12=000000eb x12:000000ec +75883432ns 1377789 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9c9 x6:1c00b9c8 +75883452ns 1377790 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000eb +75883531ns 1377794 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9c9 PA:1c00b9c9 +75883551ns 1377795 1c000e82 fff60613 addi x12, x12, -1 x12=000000ea x12:000000eb +75883571ns 1377796 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9ca x6:1c00b9c9 +75883590ns 1377797 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ea +75883670ns 1377801 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9ca PA:1c00b9ca +75883689ns 1377802 1c000e82 fff60613 addi x12, x12, -1 x12=000000e9 x12:000000ea +75883709ns 1377803 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9cb x6:1c00b9ca +75883729ns 1377804 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e9 +75883808ns 1377808 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9cb PA:1c00b9cb +75883828ns 1377809 1c000e82 fff60613 addi x12, x12, -1 x12=000000e8 x12:000000e9 +75883848ns 1377810 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9cc x6:1c00b9cb +75883867ns 1377811 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e8 +75883947ns 1377815 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9cc PA:1c00b9cc +75883966ns 1377816 1c000e82 fff60613 addi x12, x12, -1 x12=000000e7 x12:000000e8 +75883986ns 1377817 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9cd x6:1c00b9cc +75884006ns 1377818 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e7 +75884085ns 1377822 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9cd PA:1c00b9cd +75884105ns 1377823 1c000e82 fff60613 addi x12, x12, -1 x12=000000e6 x12:000000e7 +75884125ns 1377824 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9ce x6:1c00b9cd +75884145ns 1377825 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e6 +75884224ns 1377829 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9ce PA:1c00b9ce +75884244ns 1377830 1c000e82 fff60613 addi x12, x12, -1 x12=000000e5 x12:000000e6 +75884263ns 1377831 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9cf x6:1c00b9ce +75884283ns 1377832 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e5 +75884362ns 1377836 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9cf PA:1c00b9cf +75884382ns 1377837 1c000e82 fff60613 addi x12, x12, -1 x12=000000e4 x12:000000e5 +75884402ns 1377838 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9d0 x6:1c00b9cf +75884422ns 1377839 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e4 +75884501ns 1377843 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9d0 PA:1c00b9d0 +75884521ns 1377844 1c000e82 fff60613 addi x12, x12, -1 x12=000000e3 x12:000000e4 +75884540ns 1377845 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9d1 x6:1c00b9d0 +75884560ns 1377846 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e3 +75884639ns 1377850 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9d1 PA:1c00b9d1 +75884659ns 1377851 1c000e82 fff60613 addi x12, x12, -1 x12=000000e2 x12:000000e3 +75884679ns 1377852 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9d2 x6:1c00b9d1 +75884699ns 1377853 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e2 +75884778ns 1377857 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9d2 PA:1c00b9d2 +75884798ns 1377858 1c000e82 fff60613 addi x12, x12, -1 x12=000000e1 x12:000000e2 +75884817ns 1377859 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9d3 x6:1c00b9d2 +75884837ns 1377860 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e1 +75884916ns 1377864 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9d3 PA:1c00b9d3 +75884936ns 1377865 1c000e82 fff60613 addi x12, x12, -1 x12=000000e0 x12:000000e1 +75884956ns 1377866 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9d4 x6:1c00b9d3 +75884976ns 1377867 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000e0 +75885055ns 1377871 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9d4 PA:1c00b9d4 +75885075ns 1377872 1c000e82 fff60613 addi x12, x12, -1 x12=000000df x12:000000e0 +75885095ns 1377873 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9d5 x6:1c00b9d4 +75885114ns 1377874 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000df +75885194ns 1377878 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9d5 PA:1c00b9d5 +75885213ns 1377879 1c000e82 fff60613 addi x12, x12, -1 x12=000000de x12:000000df +75885233ns 1377880 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9d6 x6:1c00b9d5 +75885253ns 1377881 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000de +75885332ns 1377885 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9d6 PA:1c00b9d6 +75885352ns 1377886 1c000e82 fff60613 addi x12, x12, -1 x12=000000dd x12:000000de +75885372ns 1377887 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9d7 x6:1c00b9d6 +75885391ns 1377888 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000dd +75885471ns 1377892 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9d7 PA:1c00b9d7 +75885490ns 1377893 1c000e82 fff60613 addi x12, x12, -1 x12=000000dc x12:000000dd +75885510ns 1377894 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9d8 x6:1c00b9d7 +75885530ns 1377895 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000dc +75885609ns 1377899 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9d8 PA:1c00b9d8 +75885629ns 1377900 1c000e82 fff60613 addi x12, x12, -1 x12=000000db x12:000000dc +75885649ns 1377901 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9d9 x6:1c00b9d8 +75885669ns 1377902 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000db +75885748ns 1377906 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9d9 PA:1c00b9d9 +75885767ns 1377907 1c000e82 fff60613 addi x12, x12, -1 x12=000000da x12:000000db +75885787ns 1377908 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9da x6:1c00b9d9 +75885807ns 1377909 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000da +75885886ns 1377913 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9da PA:1c00b9da +75885906ns 1377914 1c000e82 fff60613 addi x12, x12, -1 x12=000000d9 x12:000000da +75885926ns 1377915 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9db x6:1c00b9da +75885946ns 1377916 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d9 +75886025ns 1377920 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9db PA:1c00b9db +75886045ns 1377921 1c000e82 fff60613 addi x12, x12, -1 x12=000000d8 x12:000000d9 +75886064ns 1377922 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9dc x6:1c00b9db +75886084ns 1377923 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d8 +75886163ns 1377927 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9dc PA:1c00b9dc +75886183ns 1377928 1c000e82 fff60613 addi x12, x12, -1 x12=000000d7 x12:000000d8 +75886203ns 1377929 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9dd x6:1c00b9dc +75886223ns 1377930 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d7 +75886302ns 1377934 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9dd PA:1c00b9dd +75886322ns 1377935 1c000e82 fff60613 addi x12, x12, -1 x12=000000d6 x12:000000d7 +75886341ns 1377936 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9de x6:1c00b9dd +75886361ns 1377937 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d6 +75886440ns 1377941 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9de PA:1c00b9de +75886460ns 1377942 1c000e82 fff60613 addi x12, x12, -1 x12=000000d5 x12:000000d6 +75886480ns 1377943 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9df x6:1c00b9de +75886500ns 1377944 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d5 +75886579ns 1377948 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9df PA:1c00b9df +75886599ns 1377949 1c000e82 fff60613 addi x12, x12, -1 x12=000000d4 x12:000000d5 +75886619ns 1377950 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9e0 x6:1c00b9df +75886638ns 1377951 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d4 +75886718ns 1377955 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9e0 PA:1c00b9e0 +75886737ns 1377956 1c000e82 fff60613 addi x12, x12, -1 x12=000000d3 x12:000000d4 +75886757ns 1377957 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9e1 x6:1c00b9e0 +75886777ns 1377958 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d3 +75886856ns 1377962 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9e1 PA:1c00b9e1 +75886876ns 1377963 1c000e82 fff60613 addi x12, x12, -1 x12=000000d2 x12:000000d3 +75886896ns 1377964 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9e2 x6:1c00b9e1 +75886915ns 1377965 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d2 +75886995ns 1377969 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9e2 PA:1c00b9e2 +75887014ns 1377970 1c000e82 fff60613 addi x12, x12, -1 x12=000000d1 x12:000000d2 +75887034ns 1377971 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9e3 x6:1c00b9e2 +75887054ns 1377972 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d1 +75887133ns 1377976 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9e3 PA:1c00b9e3 +75887153ns 1377977 1c000e82 fff60613 addi x12, x12, -1 x12=000000d0 x12:000000d1 +75887173ns 1377978 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9e4 x6:1c00b9e3 +75887193ns 1377979 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000d0 +75887272ns 1377983 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9e4 PA:1c00b9e4 +75887291ns 1377984 1c000e82 fff60613 addi x12, x12, -1 x12=000000cf x12:000000d0 +75887311ns 1377985 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9e5 x6:1c00b9e4 +75887331ns 1377986 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000cf +75887410ns 1377990 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9e5 PA:1c00b9e5 +75887430ns 1377991 1c000e82 fff60613 addi x12, x12, -1 x12=000000ce x12:000000cf +75887450ns 1377992 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9e6 x6:1c00b9e5 +75887470ns 1377993 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ce +75887549ns 1377997 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9e6 PA:1c00b9e6 +75887569ns 1377998 1c000e82 fff60613 addi x12, x12, -1 x12=000000cd x12:000000ce +75887588ns 1377999 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9e7 x6:1c00b9e6 +75887608ns 1378000 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000cd +75887687ns 1378004 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9e7 PA:1c00b9e7 +75887707ns 1378005 1c000e82 fff60613 addi x12, x12, -1 x12=000000cc x12:000000cd +75887727ns 1378006 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9e8 x6:1c00b9e7 +75887747ns 1378007 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000cc +75887826ns 1378011 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9e8 PA:1c00b9e8 +75887846ns 1378012 1c000e82 fff60613 addi x12, x12, -1 x12=000000cb x12:000000cc +75887865ns 1378013 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9e9 x6:1c00b9e8 +75887885ns 1378014 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000cb +75887964ns 1378018 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9e9 PA:1c00b9e9 +75887984ns 1378019 1c000e82 fff60613 addi x12, x12, -1 x12=000000ca x12:000000cb +75888004ns 1378020 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9ea x6:1c00b9e9 +75888024ns 1378021 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ca +75888103ns 1378025 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9ea PA:1c00b9ea +75888123ns 1378026 1c000e82 fff60613 addi x12, x12, -1 x12=000000c9 x12:000000ca +75888143ns 1378027 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9eb x6:1c00b9ea +75888162ns 1378028 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c9 +75888241ns 1378032 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9eb PA:1c00b9eb +75888261ns 1378033 1c000e82 fff60613 addi x12, x12, -1 x12=000000c8 x12:000000c9 +75888281ns 1378034 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9ec x6:1c00b9eb +75888301ns 1378035 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c8 +75888380ns 1378039 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9ec PA:1c00b9ec +75888400ns 1378040 1c000e82 fff60613 addi x12, x12, -1 x12=000000c7 x12:000000c8 +75888420ns 1378041 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9ed x6:1c00b9ec +75888439ns 1378042 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c7 +75888519ns 1378046 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9ed PA:1c00b9ed +75888538ns 1378047 1c000e82 fff60613 addi x12, x12, -1 x12=000000c6 x12:000000c7 +75888558ns 1378048 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9ee x6:1c00b9ed +75888578ns 1378049 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c6 +75888657ns 1378053 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9ee PA:1c00b9ee +75888677ns 1378054 1c000e82 fff60613 addi x12, x12, -1 x12=000000c5 x12:000000c6 +75888697ns 1378055 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9ef x6:1c00b9ee +75888717ns 1378056 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c5 +75888796ns 1378060 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9ef PA:1c00b9ef +75888815ns 1378061 1c000e82 fff60613 addi x12, x12, -1 x12=000000c4 x12:000000c5 +75888835ns 1378062 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9f0 x6:1c00b9ef +75888855ns 1378063 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c4 +75888934ns 1378067 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9f0 PA:1c00b9f0 +75888954ns 1378068 1c000e82 fff60613 addi x12, x12, -1 x12=000000c3 x12:000000c4 +75888974ns 1378069 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9f1 x6:1c00b9f0 +75888994ns 1378070 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c3 +75889073ns 1378074 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9f1 PA:1c00b9f1 +75889093ns 1378075 1c000e82 fff60613 addi x12, x12, -1 x12=000000c2 x12:000000c3 +75889112ns 1378076 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9f2 x6:1c00b9f1 +75889132ns 1378077 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c2 +75889211ns 1378081 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9f2 PA:1c00b9f2 +75889231ns 1378082 1c000e82 fff60613 addi x12, x12, -1 x12=000000c1 x12:000000c2 +75889251ns 1378083 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9f3 x6:1c00b9f2 +75889271ns 1378084 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c1 +75889350ns 1378088 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9f3 PA:1c00b9f3 +75889370ns 1378089 1c000e82 fff60613 addi x12, x12, -1 x12=000000c0 x12:000000c1 +75889389ns 1378090 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9f4 x6:1c00b9f3 +75889409ns 1378091 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000c0 +75889488ns 1378095 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9f4 PA:1c00b9f4 +75889508ns 1378096 1c000e82 fff60613 addi x12, x12, -1 x12=000000bf x12:000000c0 +75889528ns 1378097 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9f5 x6:1c00b9f4 +75889548ns 1378098 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000bf +75889627ns 1378102 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9f5 PA:1c00b9f5 +75889647ns 1378103 1c000e82 fff60613 addi x12, x12, -1 x12=000000be x12:000000bf +75889667ns 1378104 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9f6 x6:1c00b9f5 +75889686ns 1378105 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000be +75889765ns 1378109 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9f6 PA:1c00b9f6 +75889785ns 1378110 1c000e82 fff60613 addi x12, x12, -1 x12=000000bd x12:000000be +75889805ns 1378111 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9f7 x6:1c00b9f6 +75889825ns 1378112 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000bd +75889904ns 1378116 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9f7 PA:1c00b9f7 +75889924ns 1378117 1c000e82 fff60613 addi x12, x12, -1 x12=000000bc x12:000000bd +75889944ns 1378118 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9f8 x6:1c00b9f7 +75889963ns 1378119 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000bc +75890043ns 1378123 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9f8 PA:1c00b9f8 +75890062ns 1378124 1c000e82 fff60613 addi x12, x12, -1 x12=000000bb x12:000000bc +75890082ns 1378125 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9f9 x6:1c00b9f8 +75890102ns 1378126 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000bb +75890181ns 1378130 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9f9 PA:1c00b9f9 +75890201ns 1378131 1c000e82 fff60613 addi x12, x12, -1 x12=000000ba x12:000000bb +75890221ns 1378132 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9fa x6:1c00b9f9 +75890240ns 1378133 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ba +75890320ns 1378137 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9fa PA:1c00b9fa +75890339ns 1378138 1c000e82 fff60613 addi x12, x12, -1 x12=000000b9 x12:000000ba +75890359ns 1378139 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9fb x6:1c00b9fa +75890379ns 1378140 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b9 +75890458ns 1378144 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9fb PA:1c00b9fb +75890478ns 1378145 1c000e82 fff60613 addi x12, x12, -1 x12=000000b8 x12:000000b9 +75890498ns 1378146 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9fc x6:1c00b9fb +75890518ns 1378147 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b8 +75890597ns 1378151 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9fc PA:1c00b9fc +75890617ns 1378152 1c000e82 fff60613 addi x12, x12, -1 x12=000000b7 x12:000000b8 +75890636ns 1378153 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9fd x6:1c00b9fc +75890656ns 1378154 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b7 +75890735ns 1378158 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9fd PA:1c00b9fd +75890755ns 1378159 1c000e82 fff60613 addi x12, x12, -1 x12=000000b6 x12:000000b7 +75890775ns 1378160 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9fe x6:1c00b9fd +75890795ns 1378161 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b6 +75890874ns 1378165 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9fe PA:1c00b9fe +75890894ns 1378166 1c000e82 fff60613 addi x12, x12, -1 x12=000000b5 x12:000000b6 +75890913ns 1378167 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9ff x6:1c00b9fe +75890933ns 1378168 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b5 +75891012ns 1378172 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9ff PA:1c00b9ff +75891032ns 1378173 1c000e82 fff60613 addi x12, x12, -1 x12=000000b4 x12:000000b5 +75891052ns 1378174 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba00 x6:1c00b9ff +75891072ns 1378175 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b4 +75891151ns 1378179 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba00 PA:1c00ba00 +75891171ns 1378180 1c000e82 fff60613 addi x12, x12, -1 x12=000000b3 x12:000000b4 +75891191ns 1378181 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba01 x6:1c00ba00 +75891210ns 1378182 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b3 +75891289ns 1378186 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba01 PA:1c00ba01 +75891309ns 1378187 1c000e82 fff60613 addi x12, x12, -1 x12=000000b2 x12:000000b3 +75891329ns 1378188 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba02 x6:1c00ba01 +75891349ns 1378189 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b2 +75891428ns 1378193 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba02 PA:1c00ba02 +75891448ns 1378194 1c000e82 fff60613 addi x12, x12, -1 x12=000000b1 x12:000000b2 +75891468ns 1378195 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba03 x6:1c00ba02 +75891487ns 1378196 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b1 +75891567ns 1378200 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba03 PA:1c00ba03 +75891586ns 1378201 1c000e82 fff60613 addi x12, x12, -1 x12=000000b0 x12:000000b1 +75891606ns 1378202 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba04 x6:1c00ba03 +75891626ns 1378203 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000b0 +75891705ns 1378207 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba04 PA:1c00ba04 +75891725ns 1378208 1c000e82 fff60613 addi x12, x12, -1 x12=000000af x12:000000b0 +75891745ns 1378209 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba05 x6:1c00ba04 +75891764ns 1378210 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000af +75891844ns 1378214 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba05 PA:1c00ba05 +75891863ns 1378215 1c000e82 fff60613 addi x12, x12, -1 x12=000000ae x12:000000af +75891883ns 1378216 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba06 x6:1c00ba05 +75891903ns 1378217 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ae +75891982ns 1378221 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba06 PA:1c00ba06 +75892002ns 1378222 1c000e82 fff60613 addi x12, x12, -1 x12=000000ad x12:000000ae +75892022ns 1378223 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba07 x6:1c00ba06 +75892042ns 1378224 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ad +75892121ns 1378228 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba07 PA:1c00ba07 +75892141ns 1378229 1c000e82 fff60613 addi x12, x12, -1 x12=000000ac x12:000000ad +75892160ns 1378230 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba08 x6:1c00ba07 +75892180ns 1378231 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ac +75892259ns 1378235 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba08 PA:1c00ba08 +75892279ns 1378236 1c000e82 fff60613 addi x12, x12, -1 x12=000000ab x12:000000ac +75892299ns 1378237 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba09 x6:1c00ba08 +75892319ns 1378238 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000ab +75892398ns 1378242 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba09 PA:1c00ba09 +75892418ns 1378243 1c000e82 fff60613 addi x12, x12, -1 x12=000000aa x12:000000ab +75892437ns 1378244 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba0a x6:1c00ba09 +75892457ns 1378245 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000aa +75892536ns 1378249 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba0a PA:1c00ba0a +75892556ns 1378250 1c000e82 fff60613 addi x12, x12, -1 x12=000000a9 x12:000000aa +75892576ns 1378251 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba0b x6:1c00ba0a +75892596ns 1378252 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a9 +75892675ns 1378256 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba0b PA:1c00ba0b +75892695ns 1378257 1c000e82 fff60613 addi x12, x12, -1 x12=000000a8 x12:000000a9 +75892714ns 1378258 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba0c x6:1c00ba0b +75892734ns 1378259 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a8 +75892813ns 1378263 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba0c PA:1c00ba0c +75892833ns 1378264 1c000e82 fff60613 addi x12, x12, -1 x12=000000a7 x12:000000a8 +75892853ns 1378265 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba0d x6:1c00ba0c +75892873ns 1378266 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a7 +75892952ns 1378270 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba0d PA:1c00ba0d +75892972ns 1378271 1c000e82 fff60613 addi x12, x12, -1 x12=000000a6 x12:000000a7 +75892992ns 1378272 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba0e x6:1c00ba0d +75893011ns 1378273 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a6 +75893091ns 1378277 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba0e PA:1c00ba0e +75893110ns 1378278 1c000e82 fff60613 addi x12, x12, -1 x12=000000a5 x12:000000a6 +75893130ns 1378279 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba0f x6:1c00ba0e +75893150ns 1378280 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a5 +75893229ns 1378284 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba0f PA:1c00ba0f +75893249ns 1378285 1c000e82 fff60613 addi x12, x12, -1 x12=000000a4 x12:000000a5 +75893269ns 1378286 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba10 x6:1c00ba0f +75893288ns 1378287 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a4 +75893368ns 1378291 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba10 PA:1c00ba10 +75893387ns 1378292 1c000e82 fff60613 addi x12, x12, -1 x12=000000a3 x12:000000a4 +75893407ns 1378293 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba11 x6:1c00ba10 +75893427ns 1378294 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a3 +75893506ns 1378298 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba11 PA:1c00ba11 +75893526ns 1378299 1c000e82 fff60613 addi x12, x12, -1 x12=000000a2 x12:000000a3 +75893546ns 1378300 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba12 x6:1c00ba11 +75893566ns 1378301 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a2 +75893645ns 1378305 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba12 PA:1c00ba12 +75893665ns 1378306 1c000e82 fff60613 addi x12, x12, -1 x12=000000a1 x12:000000a2 +75893684ns 1378307 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba13 x6:1c00ba12 +75893704ns 1378308 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a1 +75893783ns 1378312 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba13 PA:1c00ba13 +75893803ns 1378313 1c000e82 fff60613 addi x12, x12, -1 x12=000000a0 x12:000000a1 +75893823ns 1378314 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba14 x6:1c00ba13 +75893843ns 1378315 1c000e86 fe061ce3 bne x12, x0, -8 x12:000000a0 +75893922ns 1378319 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba14 PA:1c00ba14 +75893942ns 1378320 1c000e82 fff60613 addi x12, x12, -1 x12=0000009f x12:000000a0 +75893961ns 1378321 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba15 x6:1c00ba14 +75893981ns 1378322 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000009f +75894060ns 1378326 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba15 PA:1c00ba15 +75894080ns 1378327 1c000e82 fff60613 addi x12, x12, -1 x12=0000009e x12:0000009f +75894100ns 1378328 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba16 x6:1c00ba15 +75894120ns 1378329 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000009e +75894199ns 1378333 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba16 PA:1c00ba16 +75894219ns 1378334 1c000e82 fff60613 addi x12, x12, -1 x12=0000009d x12:0000009e +75894238ns 1378335 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba17 x6:1c00ba16 +75894258ns 1378336 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000009d +75894337ns 1378340 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba17 PA:1c00ba17 +75894357ns 1378341 1c000e82 fff60613 addi x12, x12, -1 x12=0000009c x12:0000009d +75894377ns 1378342 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba18 x6:1c00ba17 +75894397ns 1378343 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000009c +75894476ns 1378347 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba18 PA:1c00ba18 +75894496ns 1378348 1c000e82 fff60613 addi x12, x12, -1 x12=0000009b x12:0000009c +75894516ns 1378349 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba19 x6:1c00ba18 +75894535ns 1378350 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000009b +75894615ns 1378354 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba19 PA:1c00ba19 +75894634ns 1378355 1c000e82 fff60613 addi x12, x12, -1 x12=0000009a x12:0000009b +75894654ns 1378356 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba1a x6:1c00ba19 +75894674ns 1378357 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000009a +75894753ns 1378361 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba1a PA:1c00ba1a +75894773ns 1378362 1c000e82 fff60613 addi x12, x12, -1 x12=00000099 x12:0000009a +75894793ns 1378363 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba1b x6:1c00ba1a +75894812ns 1378364 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000099 +75894892ns 1378368 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba1b PA:1c00ba1b +75894911ns 1378369 1c000e82 fff60613 addi x12, x12, -1 x12=00000098 x12:00000099 +75894931ns 1378370 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba1c x6:1c00ba1b +75894951ns 1378371 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000098 +75895030ns 1378375 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba1c PA:1c00ba1c +75895050ns 1378376 1c000e82 fff60613 addi x12, x12, -1 x12=00000097 x12:00000098 +75895070ns 1378377 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba1d x6:1c00ba1c +75895090ns 1378378 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000097 +75895169ns 1378382 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba1d PA:1c00ba1d +75895188ns 1378383 1c000e82 fff60613 addi x12, x12, -1 x12=00000096 x12:00000097 +75895208ns 1378384 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba1e x6:1c00ba1d +75895228ns 1378385 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000096 +75895307ns 1378389 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba1e PA:1c00ba1e +75895327ns 1378390 1c000e82 fff60613 addi x12, x12, -1 x12=00000095 x12:00000096 +75895347ns 1378391 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba1f x6:1c00ba1e +75895367ns 1378392 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000095 +75895446ns 1378396 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba1f PA:1c00ba1f +75895466ns 1378397 1c000e82 fff60613 addi x12, x12, -1 x12=00000094 x12:00000095 +75895485ns 1378398 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba20 x6:1c00ba1f +75895505ns 1378399 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000094 +75895584ns 1378403 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba20 PA:1c00ba20 +75895604ns 1378404 1c000e82 fff60613 addi x12, x12, -1 x12=00000093 x12:00000094 +75895624ns 1378405 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba21 x6:1c00ba20 +75895644ns 1378406 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000093 +75895723ns 1378410 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba21 PA:1c00ba21 +75895743ns 1378411 1c000e82 fff60613 addi x12, x12, -1 x12=00000092 x12:00000093 +75895762ns 1378412 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba22 x6:1c00ba21 +75895782ns 1378413 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000092 +75895861ns 1378417 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba22 PA:1c00ba22 +75895881ns 1378418 1c000e82 fff60613 addi x12, x12, -1 x12=00000091 x12:00000092 +75895901ns 1378419 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba23 x6:1c00ba22 +75895921ns 1378420 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000091 +75896000ns 1378424 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba23 PA:1c00ba23 +75896020ns 1378425 1c000e82 fff60613 addi x12, x12, -1 x12=00000090 x12:00000091 +75896040ns 1378426 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba24 x6:1c00ba23 +75896059ns 1378427 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000090 +75896139ns 1378431 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba24 PA:1c00ba24 +75896158ns 1378432 1c000e82 fff60613 addi x12, x12, -1 x12=0000008f x12:00000090 +75896178ns 1378433 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba25 x6:1c00ba24 +75896198ns 1378434 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000008f +75896277ns 1378438 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba25 PA:1c00ba25 +75896297ns 1378439 1c000e82 fff60613 addi x12, x12, -1 x12=0000008e x12:0000008f +75896317ns 1378440 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba26 x6:1c00ba25 +75896336ns 1378441 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000008e +75896416ns 1378445 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba26 PA:1c00ba26 +75896435ns 1378446 1c000e82 fff60613 addi x12, x12, -1 x12=0000008d x12:0000008e +75896455ns 1378447 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba27 x6:1c00ba26 +75896475ns 1378448 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000008d +75896554ns 1378452 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba27 PA:1c00ba27 +75896574ns 1378453 1c000e82 fff60613 addi x12, x12, -1 x12=0000008c x12:0000008d +75896594ns 1378454 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba28 x6:1c00ba27 +75896614ns 1378455 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000008c +75896693ns 1378459 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba28 PA:1c00ba28 +75896712ns 1378460 1c000e82 fff60613 addi x12, x12, -1 x12=0000008b x12:0000008c +75896732ns 1378461 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba29 x6:1c00ba28 +75896752ns 1378462 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000008b +75896831ns 1378466 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba29 PA:1c00ba29 +75896851ns 1378467 1c000e82 fff60613 addi x12, x12, -1 x12=0000008a x12:0000008b +75896871ns 1378468 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba2a x6:1c00ba29 +75896891ns 1378469 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000008a +75896970ns 1378473 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba2a PA:1c00ba2a +75896990ns 1378474 1c000e82 fff60613 addi x12, x12, -1 x12=00000089 x12:0000008a +75897009ns 1378475 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba2b x6:1c00ba2a +75897029ns 1378476 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000089 +75897108ns 1378480 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba2b PA:1c00ba2b +75897128ns 1378481 1c000e82 fff60613 addi x12, x12, -1 x12=00000088 x12:00000089 +75897148ns 1378482 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba2c x6:1c00ba2b +75897168ns 1378483 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000088 +75897247ns 1378487 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba2c PA:1c00ba2c +75897267ns 1378488 1c000e82 fff60613 addi x12, x12, -1 x12=00000087 x12:00000088 +75897286ns 1378489 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba2d x6:1c00ba2c +75897306ns 1378490 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000087 +75897385ns 1378494 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba2d PA:1c00ba2d +75897405ns 1378495 1c000e82 fff60613 addi x12, x12, -1 x12=00000086 x12:00000087 +75897425ns 1378496 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba2e x6:1c00ba2d +75897445ns 1378497 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000086 +75897524ns 1378501 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba2e PA:1c00ba2e +75897544ns 1378502 1c000e82 fff60613 addi x12, x12, -1 x12=00000085 x12:00000086 +75897564ns 1378503 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba2f x6:1c00ba2e +75897583ns 1378504 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000085 +75897662ns 1378508 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba2f PA:1c00ba2f +75897682ns 1378509 1c000e82 fff60613 addi x12, x12, -1 x12=00000084 x12:00000085 +75897702ns 1378510 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba30 x6:1c00ba2f +75897722ns 1378511 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000084 +75897801ns 1378515 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba30 PA:1c00ba30 +75897821ns 1378516 1c000e82 fff60613 addi x12, x12, -1 x12=00000083 x12:00000084 +75897841ns 1378517 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba31 x6:1c00ba30 +75897860ns 1378518 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000083 +75897940ns 1378522 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba31 PA:1c00ba31 +75897959ns 1378523 1c000e82 fff60613 addi x12, x12, -1 x12=00000082 x12:00000083 +75897979ns 1378524 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba32 x6:1c00ba31 +75897999ns 1378525 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000082 +75898078ns 1378529 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba32 PA:1c00ba32 +75898098ns 1378530 1c000e82 fff60613 addi x12, x12, -1 x12=00000081 x12:00000082 +75898118ns 1378531 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba33 x6:1c00ba32 +75898137ns 1378532 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000081 +75898217ns 1378536 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba33 PA:1c00ba33 +75898236ns 1378537 1c000e82 fff60613 addi x12, x12, -1 x12=00000080 x12:00000081 +75898256ns 1378538 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba34 x6:1c00ba33 +75898276ns 1378539 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000080 +75898355ns 1378543 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba34 PA:1c00ba34 +75898375ns 1378544 1c000e82 fff60613 addi x12, x12, -1 x12=0000007f x12:00000080 +75898395ns 1378545 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba35 x6:1c00ba34 +75898415ns 1378546 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000007f +75898494ns 1378550 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba35 PA:1c00ba35 +75898514ns 1378551 1c000e82 fff60613 addi x12, x12, -1 x12=0000007e x12:0000007f +75898533ns 1378552 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba36 x6:1c00ba35 +75898553ns 1378553 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000007e +75898632ns 1378557 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba36 PA:1c00ba36 +75898652ns 1378558 1c000e82 fff60613 addi x12, x12, -1 x12=0000007d x12:0000007e +75898672ns 1378559 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba37 x6:1c00ba36 +75898692ns 1378560 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000007d +75898771ns 1378564 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba37 PA:1c00ba37 +75898791ns 1378565 1c000e82 fff60613 addi x12, x12, -1 x12=0000007c x12:0000007d +75898810ns 1378566 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba38 x6:1c00ba37 +75898830ns 1378567 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000007c +75898909ns 1378571 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba38 PA:1c00ba38 +75898929ns 1378572 1c000e82 fff60613 addi x12, x12, -1 x12=0000007b x12:0000007c +75898949ns 1378573 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba39 x6:1c00ba38 +75898969ns 1378574 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000007b +75899048ns 1378578 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba39 PA:1c00ba39 +75899068ns 1378579 1c000e82 fff60613 addi x12, x12, -1 x12=0000007a x12:0000007b +75899088ns 1378580 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba3a x6:1c00ba39 +75899107ns 1378581 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000007a +75899186ns 1378585 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba3a PA:1c00ba3a +75899206ns 1378586 1c000e82 fff60613 addi x12, x12, -1 x12=00000079 x12:0000007a +75899226ns 1378587 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba3b x6:1c00ba3a +75899246ns 1378588 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000079 +75899325ns 1378592 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba3b PA:1c00ba3b +75899345ns 1378593 1c000e82 fff60613 addi x12, x12, -1 x12=00000078 x12:00000079 +75899365ns 1378594 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba3c x6:1c00ba3b +75899384ns 1378595 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000078 +75899464ns 1378599 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba3c PA:1c00ba3c +75899483ns 1378600 1c000e82 fff60613 addi x12, x12, -1 x12=00000077 x12:00000078 +75899503ns 1378601 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba3d x6:1c00ba3c +75899523ns 1378602 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000077 +75899602ns 1378606 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba3d PA:1c00ba3d +75899622ns 1378607 1c000e82 fff60613 addi x12, x12, -1 x12=00000076 x12:00000077 +75899642ns 1378608 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba3e x6:1c00ba3d +75899661ns 1378609 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000076 +75899741ns 1378613 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba3e PA:1c00ba3e +75899760ns 1378614 1c000e82 fff60613 addi x12, x12, -1 x12=00000075 x12:00000076 +75899780ns 1378615 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba3f x6:1c00ba3e +75899800ns 1378616 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000075 +75899879ns 1378620 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba3f PA:1c00ba3f +75899899ns 1378621 1c000e82 fff60613 addi x12, x12, -1 x12=00000074 x12:00000075 +75899919ns 1378622 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba40 x6:1c00ba3f +75899939ns 1378623 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000074 +75900018ns 1378627 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba40 PA:1c00ba40 +75900038ns 1378628 1c000e82 fff60613 addi x12, x12, -1 x12=00000073 x12:00000074 +75900057ns 1378629 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba41 x6:1c00ba40 +75900077ns 1378630 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000073 +75900156ns 1378634 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba41 PA:1c00ba41 +75900176ns 1378635 1c000e82 fff60613 addi x12, x12, -1 x12=00000072 x12:00000073 +75900196ns 1378636 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba42 x6:1c00ba41 +75900216ns 1378637 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000072 +75900295ns 1378641 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba42 PA:1c00ba42 +75900315ns 1378642 1c000e82 fff60613 addi x12, x12, -1 x12=00000071 x12:00000072 +75900334ns 1378643 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba43 x6:1c00ba42 +75900354ns 1378644 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000071 +75900433ns 1378648 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba43 PA:1c00ba43 +75900453ns 1378649 1c000e82 fff60613 addi x12, x12, -1 x12=00000070 x12:00000071 +75900473ns 1378650 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba44 x6:1c00ba43 +75900493ns 1378651 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000070 +75900572ns 1378655 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba44 PA:1c00ba44 +75900592ns 1378656 1c000e82 fff60613 addi x12, x12, -1 x12=0000006f x12:00000070 +75900611ns 1378657 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba45 x6:1c00ba44 +75900631ns 1378658 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000006f +75900710ns 1378662 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba45 PA:1c00ba45 +75900730ns 1378663 1c000e82 fff60613 addi x12, x12, -1 x12=0000006e x12:0000006f +75900750ns 1378664 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba46 x6:1c00ba45 +75900770ns 1378665 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000006e +75900849ns 1378669 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba46 PA:1c00ba46 +75900869ns 1378670 1c000e82 fff60613 addi x12, x12, -1 x12=0000006d x12:0000006e +75900889ns 1378671 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba47 x6:1c00ba46 +75900908ns 1378672 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000006d +75900988ns 1378676 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba47 PA:1c00ba47 +75901007ns 1378677 1c000e82 fff60613 addi x12, x12, -1 x12=0000006c x12:0000006d +75901027ns 1378678 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba48 x6:1c00ba47 +75901047ns 1378679 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000006c +75901126ns 1378683 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba48 PA:1c00ba48 +75901146ns 1378684 1c000e82 fff60613 addi x12, x12, -1 x12=0000006b x12:0000006c +75901166ns 1378685 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba49 x6:1c00ba48 +75901185ns 1378686 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000006b +75901265ns 1378690 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba49 PA:1c00ba49 +75901284ns 1378691 1c000e82 fff60613 addi x12, x12, -1 x12=0000006a x12:0000006b +75901304ns 1378692 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba4a x6:1c00ba49 +75901324ns 1378693 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000006a +75901403ns 1378697 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba4a PA:1c00ba4a +75901423ns 1378698 1c000e82 fff60613 addi x12, x12, -1 x12=00000069 x12:0000006a +75901443ns 1378699 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba4b x6:1c00ba4a +75901463ns 1378700 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000069 +75901542ns 1378704 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba4b PA:1c00ba4b +75901562ns 1378705 1c000e82 fff60613 addi x12, x12, -1 x12=00000068 x12:00000069 +75901581ns 1378706 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba4c x6:1c00ba4b +75901601ns 1378707 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000068 +75901680ns 1378711 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba4c PA:1c00ba4c +75901700ns 1378712 1c000e82 fff60613 addi x12, x12, -1 x12=00000067 x12:00000068 +75901720ns 1378713 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba4d x6:1c00ba4c +75901740ns 1378714 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000067 +75901819ns 1378718 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba4d PA:1c00ba4d +75901839ns 1378719 1c000e82 fff60613 addi x12, x12, -1 x12=00000066 x12:00000067 +75901858ns 1378720 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba4e x6:1c00ba4d +75901878ns 1378721 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000066 +75901957ns 1378725 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba4e PA:1c00ba4e +75901977ns 1378726 1c000e82 fff60613 addi x12, x12, -1 x12=00000065 x12:00000066 +75901997ns 1378727 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba4f x6:1c00ba4e +75902017ns 1378728 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000065 +75902096ns 1378732 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba4f PA:1c00ba4f +75902116ns 1378733 1c000e82 fff60613 addi x12, x12, -1 x12=00000064 x12:00000065 +75902135ns 1378734 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba50 x6:1c00ba4f +75902155ns 1378735 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000064 +75902234ns 1378739 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba50 PA:1c00ba50 +75902254ns 1378740 1c000e82 fff60613 addi x12, x12, -1 x12=00000063 x12:00000064 +75902274ns 1378741 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba51 x6:1c00ba50 +75902294ns 1378742 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000063 +75902373ns 1378746 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba51 PA:1c00ba51 +75902393ns 1378747 1c000e82 fff60613 addi x12, x12, -1 x12=00000062 x12:00000063 +75902413ns 1378748 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba52 x6:1c00ba51 +75902432ns 1378749 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000062 +75902512ns 1378753 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba52 PA:1c00ba52 +75902531ns 1378754 1c000e82 fff60613 addi x12, x12, -1 x12=00000061 x12:00000062 +75902551ns 1378755 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba53 x6:1c00ba52 +75902571ns 1378756 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000061 +75902650ns 1378760 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba53 PA:1c00ba53 +75902670ns 1378761 1c000e82 fff60613 addi x12, x12, -1 x12=00000060 x12:00000061 +75902690ns 1378762 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba54 x6:1c00ba53 +75902709ns 1378763 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000060 +75902789ns 1378767 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba54 PA:1c00ba54 +75902808ns 1378768 1c000e82 fff60613 addi x12, x12, -1 x12=0000005f x12:00000060 +75902828ns 1378769 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba55 x6:1c00ba54 +75902848ns 1378770 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000005f +75902927ns 1378774 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba55 PA:1c00ba55 +75902947ns 1378775 1c000e82 fff60613 addi x12, x12, -1 x12=0000005e x12:0000005f +75902967ns 1378776 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba56 x6:1c00ba55 +75902987ns 1378777 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000005e +75903066ns 1378781 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba56 PA:1c00ba56 +75903085ns 1378782 1c000e82 fff60613 addi x12, x12, -1 x12=0000005d x12:0000005e +75903105ns 1378783 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba57 x6:1c00ba56 +75903125ns 1378784 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000005d +75903204ns 1378788 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba57 PA:1c00ba57 +75903224ns 1378789 1c000e82 fff60613 addi x12, x12, -1 x12=0000005c x12:0000005d +75903244ns 1378790 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba58 x6:1c00ba57 +75903264ns 1378791 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000005c +75903343ns 1378795 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba58 PA:1c00ba58 +75903363ns 1378796 1c000e82 fff60613 addi x12, x12, -1 x12=0000005b x12:0000005c +75903382ns 1378797 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba59 x6:1c00ba58 +75903402ns 1378798 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000005b +75903481ns 1378802 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba59 PA:1c00ba59 +75903501ns 1378803 1c000e82 fff60613 addi x12, x12, -1 x12=0000005a x12:0000005b +75903521ns 1378804 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba5a x6:1c00ba59 +75903541ns 1378805 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000005a +75903620ns 1378809 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba5a PA:1c00ba5a +75903640ns 1378810 1c000e82 fff60613 addi x12, x12, -1 x12=00000059 x12:0000005a +75903659ns 1378811 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba5b x6:1c00ba5a +75903679ns 1378812 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000059 +75903758ns 1378816 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba5b PA:1c00ba5b +75903778ns 1378817 1c000e82 fff60613 addi x12, x12, -1 x12=00000058 x12:00000059 +75903798ns 1378818 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba5c x6:1c00ba5b +75903818ns 1378819 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000058 +75903897ns 1378823 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba5c PA:1c00ba5c +75903917ns 1378824 1c000e82 fff60613 addi x12, x12, -1 x12=00000057 x12:00000058 +75903937ns 1378825 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba5d x6:1c00ba5c +75903956ns 1378826 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000057 +75904036ns 1378830 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba5d PA:1c00ba5d +75904055ns 1378831 1c000e82 fff60613 addi x12, x12, -1 x12=00000056 x12:00000057 +75904075ns 1378832 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba5e x6:1c00ba5d +75904095ns 1378833 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000056 +75904174ns 1378837 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba5e PA:1c00ba5e +75904194ns 1378838 1c000e82 fff60613 addi x12, x12, -1 x12=00000055 x12:00000056 +75904214ns 1378839 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba5f x6:1c00ba5e +75904233ns 1378840 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000055 +75904313ns 1378844 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba5f PA:1c00ba5f +75904332ns 1378845 1c000e82 fff60613 addi x12, x12, -1 x12=00000054 x12:00000055 +75904352ns 1378846 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba60 x6:1c00ba5f +75904372ns 1378847 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000054 +75904451ns 1378851 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba60 PA:1c00ba60 +75904471ns 1378852 1c000e82 fff60613 addi x12, x12, -1 x12=00000053 x12:00000054 +75904491ns 1378853 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba61 x6:1c00ba60 +75904511ns 1378854 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000053 +75904590ns 1378858 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba61 PA:1c00ba61 +75904609ns 1378859 1c000e82 fff60613 addi x12, x12, -1 x12=00000052 x12:00000053 +75904629ns 1378860 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba62 x6:1c00ba61 +75904649ns 1378861 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000052 +75904728ns 1378865 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba62 PA:1c00ba62 +75904748ns 1378866 1c000e82 fff60613 addi x12, x12, -1 x12=00000051 x12:00000052 +75904768ns 1378867 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba63 x6:1c00ba62 +75904788ns 1378868 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000051 +75904867ns 1378872 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba63 PA:1c00ba63 +75904887ns 1378873 1c000e82 fff60613 addi x12, x12, -1 x12=00000050 x12:00000051 +75904906ns 1378874 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba64 x6:1c00ba63 +75904926ns 1378875 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000050 +75905005ns 1378879 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba64 PA:1c00ba64 +75905025ns 1378880 1c000e82 fff60613 addi x12, x12, -1 x12=0000004f x12:00000050 +75905045ns 1378881 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba65 x6:1c00ba64 +75905065ns 1378882 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000004f +75905144ns 1378886 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba65 PA:1c00ba65 +75905164ns 1378887 1c000e82 fff60613 addi x12, x12, -1 x12=0000004e x12:0000004f +75905183ns 1378888 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba66 x6:1c00ba65 +75905203ns 1378889 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000004e +75905282ns 1378893 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba66 PA:1c00ba66 +75905302ns 1378894 1c000e82 fff60613 addi x12, x12, -1 x12=0000004d x12:0000004e +75905322ns 1378895 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba67 x6:1c00ba66 +75905342ns 1378896 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000004d +75905421ns 1378900 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba67 PA:1c00ba67 +75905441ns 1378901 1c000e82 fff60613 addi x12, x12, -1 x12=0000004c x12:0000004d +75905461ns 1378902 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba68 x6:1c00ba67 +75905480ns 1378903 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000004c +75905559ns 1378907 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba68 PA:1c00ba68 +75905579ns 1378908 1c000e82 fff60613 addi x12, x12, -1 x12=0000004b x12:0000004c +75905599ns 1378909 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba69 x6:1c00ba68 +75905619ns 1378910 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000004b +75905698ns 1378914 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba69 PA:1c00ba69 +75905718ns 1378915 1c000e82 fff60613 addi x12, x12, -1 x12=0000004a x12:0000004b +75905738ns 1378916 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba6a x6:1c00ba69 +75905757ns 1378917 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000004a +75905837ns 1378921 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba6a PA:1c00ba6a +75905856ns 1378922 1c000e82 fff60613 addi x12, x12, -1 x12=00000049 x12:0000004a +75905876ns 1378923 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba6b x6:1c00ba6a +75905896ns 1378924 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000049 +75905975ns 1378928 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba6b PA:1c00ba6b +75905995ns 1378929 1c000e82 fff60613 addi x12, x12, -1 x12=00000048 x12:00000049 +75906015ns 1378930 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba6c x6:1c00ba6b +75906035ns 1378931 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000048 +75906114ns 1378935 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba6c PA:1c00ba6c +75906133ns 1378936 1c000e82 fff60613 addi x12, x12, -1 x12=00000047 x12:00000048 +75906153ns 1378937 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba6d x6:1c00ba6c +75906173ns 1378938 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000047 +75906252ns 1378942 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba6d PA:1c00ba6d +75906272ns 1378943 1c000e82 fff60613 addi x12, x12, -1 x12=00000046 x12:00000047 +75906292ns 1378944 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba6e x6:1c00ba6d +75906312ns 1378945 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000046 +75906391ns 1378949 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba6e PA:1c00ba6e +75906411ns 1378950 1c000e82 fff60613 addi x12, x12, -1 x12=00000045 x12:00000046 +75906430ns 1378951 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba6f x6:1c00ba6e +75906450ns 1378952 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000045 +75906529ns 1378956 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba6f PA:1c00ba6f +75906549ns 1378957 1c000e82 fff60613 addi x12, x12, -1 x12=00000044 x12:00000045 +75906569ns 1378958 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba70 x6:1c00ba6f +75906589ns 1378959 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000044 +75906668ns 1378963 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba70 PA:1c00ba70 +75906688ns 1378964 1c000e82 fff60613 addi x12, x12, -1 x12=00000043 x12:00000044 +75906707ns 1378965 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba71 x6:1c00ba70 +75906727ns 1378966 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000043 +75906806ns 1378970 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba71 PA:1c00ba71 +75906826ns 1378971 1c000e82 fff60613 addi x12, x12, -1 x12=00000042 x12:00000043 +75906846ns 1378972 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba72 x6:1c00ba71 +75906866ns 1378973 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000042 +75906945ns 1378977 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba72 PA:1c00ba72 +75906965ns 1378978 1c000e82 fff60613 addi x12, x12, -1 x12=00000041 x12:00000042 +75906985ns 1378979 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba73 x6:1c00ba72 +75907004ns 1378980 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000041 +75907083ns 1378984 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba73 PA:1c00ba73 +75907103ns 1378985 1c000e82 fff60613 addi x12, x12, -1 x12=00000040 x12:00000041 +75907123ns 1378986 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba74 x6:1c00ba73 +75907143ns 1378987 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000040 +75907222ns 1378991 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba74 PA:1c00ba74 +75907242ns 1378992 1c000e82 fff60613 addi x12, x12, -1 x12=0000003f x12:00000040 +75907262ns 1378993 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba75 x6:1c00ba74 +75907281ns 1378994 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000003f +75907361ns 1378998 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba75 PA:1c00ba75 +75907380ns 1378999 1c000e82 fff60613 addi x12, x12, -1 x12=0000003e x12:0000003f +75907400ns 1379000 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba76 x6:1c00ba75 +75907420ns 1379001 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000003e +75907499ns 1379005 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba76 PA:1c00ba76 +75907519ns 1379006 1c000e82 fff60613 addi x12, x12, -1 x12=0000003d x12:0000003e +75907539ns 1379007 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba77 x6:1c00ba76 +75907558ns 1379008 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000003d +75907638ns 1379012 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba77 PA:1c00ba77 +75907657ns 1379013 1c000e82 fff60613 addi x12, x12, -1 x12=0000003c x12:0000003d +75907677ns 1379014 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba78 x6:1c00ba77 +75907697ns 1379015 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000003c +75907776ns 1379019 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba78 PA:1c00ba78 +75907796ns 1379020 1c000e82 fff60613 addi x12, x12, -1 x12=0000003b x12:0000003c +75907816ns 1379021 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba79 x6:1c00ba78 +75907836ns 1379022 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000003b +75907915ns 1379026 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba79 PA:1c00ba79 +75907935ns 1379027 1c000e82 fff60613 addi x12, x12, -1 x12=0000003a x12:0000003b +75907954ns 1379028 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba7a x6:1c00ba79 +75907974ns 1379029 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000003a +75908053ns 1379033 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba7a PA:1c00ba7a +75908073ns 1379034 1c000e82 fff60613 addi x12, x12, -1 x12=00000039 x12:0000003a +75908093ns 1379035 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba7b x6:1c00ba7a +75908113ns 1379036 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000039 +75908192ns 1379040 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba7b PA:1c00ba7b +75908212ns 1379041 1c000e82 fff60613 addi x12, x12, -1 x12=00000038 x12:00000039 +75908231ns 1379042 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba7c x6:1c00ba7b +75908251ns 1379043 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000038 +75908330ns 1379047 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba7c PA:1c00ba7c +75908350ns 1379048 1c000e82 fff60613 addi x12, x12, -1 x12=00000037 x12:00000038 +75908370ns 1379049 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba7d x6:1c00ba7c +75908390ns 1379050 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000037 +75908469ns 1379054 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba7d PA:1c00ba7d +75908489ns 1379055 1c000e82 fff60613 addi x12, x12, -1 x12=00000036 x12:00000037 +75908509ns 1379056 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba7e x6:1c00ba7d +75908528ns 1379057 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000036 +75908607ns 1379061 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba7e PA:1c00ba7e +75908627ns 1379062 1c000e82 fff60613 addi x12, x12, -1 x12=00000035 x12:00000036 +75908647ns 1379063 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba7f x6:1c00ba7e +75908667ns 1379064 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000035 +75908746ns 1379068 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba7f PA:1c00ba7f +75908766ns 1379069 1c000e82 fff60613 addi x12, x12, -1 x12=00000034 x12:00000035 +75908786ns 1379070 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba80 x6:1c00ba7f +75908805ns 1379071 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000034 +75908885ns 1379075 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba80 PA:1c00ba80 +75908904ns 1379076 1c000e82 fff60613 addi x12, x12, -1 x12=00000033 x12:00000034 +75908924ns 1379077 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba81 x6:1c00ba80 +75908944ns 1379078 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000033 +75909023ns 1379082 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba81 PA:1c00ba81 +75909043ns 1379083 1c000e82 fff60613 addi x12, x12, -1 x12=00000032 x12:00000033 +75909063ns 1379084 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba82 x6:1c00ba81 +75909082ns 1379085 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000032 +75909162ns 1379089 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba82 PA:1c00ba82 +75909181ns 1379090 1c000e82 fff60613 addi x12, x12, -1 x12=00000031 x12:00000032 +75909201ns 1379091 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba83 x6:1c00ba82 +75909221ns 1379092 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000031 +75909300ns 1379096 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba83 PA:1c00ba83 +75909320ns 1379097 1c000e82 fff60613 addi x12, x12, -1 x12=00000030 x12:00000031 +75909340ns 1379098 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba84 x6:1c00ba83 +75909360ns 1379099 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000030 +75909439ns 1379103 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba84 PA:1c00ba84 +75909459ns 1379104 1c000e82 fff60613 addi x12, x12, -1 x12=0000002f x12:00000030 +75909478ns 1379105 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba85 x6:1c00ba84 +75909498ns 1379106 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000002f +75909577ns 1379110 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba85 PA:1c00ba85 +75909597ns 1379111 1c000e82 fff60613 addi x12, x12, -1 x12=0000002e x12:0000002f +75909617ns 1379112 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba86 x6:1c00ba85 +75909637ns 1379113 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000002e +75909716ns 1379117 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba86 PA:1c00ba86 +75909736ns 1379118 1c000e82 fff60613 addi x12, x12, -1 x12=0000002d x12:0000002e +75909755ns 1379119 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba87 x6:1c00ba86 +75909775ns 1379120 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000002d +75909854ns 1379124 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba87 PA:1c00ba87 +75909874ns 1379125 1c000e82 fff60613 addi x12, x12, -1 x12=0000002c x12:0000002d +75909894ns 1379126 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba88 x6:1c00ba87 +75909914ns 1379127 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000002c +75909993ns 1379131 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba88 PA:1c00ba88 +75910013ns 1379132 1c000e82 fff60613 addi x12, x12, -1 x12=0000002b x12:0000002c +75910032ns 1379133 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba89 x6:1c00ba88 +75910052ns 1379134 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000002b +75910131ns 1379138 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba89 PA:1c00ba89 +75910151ns 1379139 1c000e82 fff60613 addi x12, x12, -1 x12=0000002a x12:0000002b +75910171ns 1379140 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba8a x6:1c00ba89 +75910191ns 1379141 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000002a +75910270ns 1379145 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba8a PA:1c00ba8a +75910290ns 1379146 1c000e82 fff60613 addi x12, x12, -1 x12=00000029 x12:0000002a +75910310ns 1379147 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba8b x6:1c00ba8a +75910329ns 1379148 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000029 +75910409ns 1379152 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba8b PA:1c00ba8b +75910428ns 1379153 1c000e82 fff60613 addi x12, x12, -1 x12=00000028 x12:00000029 +75910448ns 1379154 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba8c x6:1c00ba8b +75910468ns 1379155 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000028 +75910547ns 1379159 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba8c PA:1c00ba8c +75910567ns 1379160 1c000e82 fff60613 addi x12, x12, -1 x12=00000027 x12:00000028 +75910587ns 1379161 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba8d x6:1c00ba8c +75910606ns 1379162 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000027 +75910686ns 1379166 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba8d PA:1c00ba8d +75910705ns 1379167 1c000e82 fff60613 addi x12, x12, -1 x12=00000026 x12:00000027 +75910725ns 1379168 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba8e x6:1c00ba8d +75910745ns 1379169 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000026 +75910824ns 1379173 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba8e PA:1c00ba8e +75910844ns 1379174 1c000e82 fff60613 addi x12, x12, -1 x12=00000025 x12:00000026 +75910864ns 1379175 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba8f x6:1c00ba8e +75910884ns 1379176 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000025 +75910963ns 1379180 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba8f PA:1c00ba8f +75910983ns 1379181 1c000e82 fff60613 addi x12, x12, -1 x12=00000024 x12:00000025 +75911002ns 1379182 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba90 x6:1c00ba8f +75911022ns 1379183 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000024 +75911101ns 1379187 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba90 PA:1c00ba90 +75911121ns 1379188 1c000e82 fff60613 addi x12, x12, -1 x12=00000023 x12:00000024 +75911141ns 1379189 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba91 x6:1c00ba90 +75911161ns 1379190 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000023 +75911240ns 1379194 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba91 PA:1c00ba91 +75911260ns 1379195 1c000e82 fff60613 addi x12, x12, -1 x12=00000022 x12:00000023 +75911279ns 1379196 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba92 x6:1c00ba91 +75911299ns 1379197 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000022 +75911378ns 1379201 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba92 PA:1c00ba92 +75911398ns 1379202 1c000e82 fff60613 addi x12, x12, -1 x12=00000021 x12:00000022 +75911418ns 1379203 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba93 x6:1c00ba92 +75911438ns 1379204 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000021 +75911517ns 1379208 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba93 PA:1c00ba93 +75911537ns 1379209 1c000e82 fff60613 addi x12, x12, -1 x12=00000020 x12:00000021 +75911556ns 1379210 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba94 x6:1c00ba93 +75911576ns 1379211 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000020 +75911655ns 1379215 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba94 PA:1c00ba94 +75911675ns 1379216 1c000e82 fff60613 addi x12, x12, -1 x12=0000001f x12:00000020 +75911695ns 1379217 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba95 x6:1c00ba94 +75911715ns 1379218 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000001f +75911794ns 1379222 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba95 PA:1c00ba95 +75911814ns 1379223 1c000e82 fff60613 addi x12, x12, -1 x12=0000001e x12:0000001f +75911834ns 1379224 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba96 x6:1c00ba95 +75911853ns 1379225 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000001e +75911933ns 1379229 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba96 PA:1c00ba96 +75911952ns 1379230 1c000e82 fff60613 addi x12, x12, -1 x12=0000001d x12:0000001e +75911972ns 1379231 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba97 x6:1c00ba96 +75911992ns 1379232 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000001d +75912071ns 1379236 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba97 PA:1c00ba97 +75912091ns 1379237 1c000e82 fff60613 addi x12, x12, -1 x12=0000001c x12:0000001d +75912111ns 1379238 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba98 x6:1c00ba97 +75912130ns 1379239 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000001c +75912210ns 1379243 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba98 PA:1c00ba98 +75912229ns 1379244 1c000e82 fff60613 addi x12, x12, -1 x12=0000001b x12:0000001c +75912249ns 1379245 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba99 x6:1c00ba98 +75912269ns 1379246 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000001b +75912348ns 1379250 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba99 PA:1c00ba99 +75912368ns 1379251 1c000e82 fff60613 addi x12, x12, -1 x12=0000001a x12:0000001b +75912388ns 1379252 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba9a x6:1c00ba99 +75912408ns 1379253 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000001a +75912487ns 1379257 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba9a PA:1c00ba9a +75912506ns 1379258 1c000e82 fff60613 addi x12, x12, -1 x12=00000019 x12:0000001a +75912526ns 1379259 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba9b x6:1c00ba9a +75912546ns 1379260 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000019 +75912625ns 1379264 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba9b PA:1c00ba9b +75912645ns 1379265 1c000e82 fff60613 addi x12, x12, -1 x12=00000018 x12:00000019 +75912665ns 1379266 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba9c x6:1c00ba9b +75912685ns 1379267 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000018 +75912764ns 1379271 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba9c PA:1c00ba9c +75912784ns 1379272 1c000e82 fff60613 addi x12, x12, -1 x12=00000017 x12:00000018 +75912803ns 1379273 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba9d x6:1c00ba9c +75912823ns 1379274 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000017 +75912902ns 1379278 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba9d PA:1c00ba9d +75912922ns 1379279 1c000e82 fff60613 addi x12, x12, -1 x12=00000016 x12:00000017 +75912942ns 1379280 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba9e x6:1c00ba9d +75912962ns 1379281 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000016 +75913041ns 1379285 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba9e PA:1c00ba9e +75913061ns 1379286 1c000e82 fff60613 addi x12, x12, -1 x12=00000015 x12:00000016 +75913080ns 1379287 1c000e84 00130313 addi x6, x6, 1 x6=1c00ba9f x6:1c00ba9e +75913100ns 1379288 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000015 +75913179ns 1379292 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00ba9f PA:1c00ba9f +75913199ns 1379293 1c000e82 fff60613 addi x12, x12, -1 x12=00000014 x12:00000015 +75913219ns 1379294 1c000e84 00130313 addi x6, x6, 1 x6=1c00baa0 x6:1c00ba9f +75913239ns 1379295 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000014 +75913318ns 1379299 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00baa0 PA:1c00baa0 +75913338ns 1379300 1c000e82 fff60613 addi x12, x12, -1 x12=00000013 x12:00000014 +75913358ns 1379301 1c000e84 00130313 addi x6, x6, 1 x6=1c00baa1 x6:1c00baa0 +75913377ns 1379302 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000013 +75913457ns 1379306 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00baa1 PA:1c00baa1 +75913476ns 1379307 1c000e82 fff60613 addi x12, x12, -1 x12=00000012 x12:00000013 +75913496ns 1379308 1c000e84 00130313 addi x6, x6, 1 x6=1c00baa2 x6:1c00baa1 +75913516ns 1379309 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000012 +75913595ns 1379313 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00baa2 PA:1c00baa2 +75913615ns 1379314 1c000e82 fff60613 addi x12, x12, -1 x12=00000011 x12:00000012 +75913635ns 1379315 1c000e84 00130313 addi x6, x6, 1 x6=1c00baa3 x6:1c00baa2 +75913654ns 1379316 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000011 +75913734ns 1379320 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00baa3 PA:1c00baa3 +75913753ns 1379321 1c000e82 fff60613 addi x12, x12, -1 x12=00000010 x12:00000011 +75913773ns 1379322 1c000e84 00130313 addi x6, x6, 1 x6=1c00baa4 x6:1c00baa3 +75913793ns 1379323 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000010 +75913872ns 1379327 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00baa4 PA:1c00baa4 +75913892ns 1379328 1c000e82 fff60613 addi x12, x12, -1 x12=0000000f x12:00000010 +75913912ns 1379329 1c000e84 00130313 addi x6, x6, 1 x6=1c00baa5 x6:1c00baa4 +75913932ns 1379330 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000000f +75914011ns 1379334 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00baa5 PA:1c00baa5 +75914030ns 1379335 1c000e82 fff60613 addi x12, x12, -1 x12=0000000e x12:0000000f +75914050ns 1379336 1c000e84 00130313 addi x6, x6, 1 x6=1c00baa6 x6:1c00baa5 +75914070ns 1379337 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000000e +75914149ns 1379341 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00baa6 PA:1c00baa6 +75914169ns 1379342 1c000e82 fff60613 addi x12, x12, -1 x12=0000000d x12:0000000e +75914189ns 1379343 1c000e84 00130313 addi x6, x6, 1 x6=1c00baa7 x6:1c00baa6 +75914209ns 1379344 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000000d +75914288ns 1379348 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00baa7 PA:1c00baa7 +75914308ns 1379349 1c000e82 fff60613 addi x12, x12, -1 x12=0000000c x12:0000000d +75914327ns 1379350 1c000e84 00130313 addi x6, x6, 1 x6=1c00baa8 x6:1c00baa7 +75914347ns 1379351 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000000c +75914426ns 1379355 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00baa8 PA:1c00baa8 +75914446ns 1379356 1c000e82 fff60613 addi x12, x12, -1 x12=0000000b x12:0000000c +75914466ns 1379357 1c000e84 00130313 addi x6, x6, 1 x6=1c00baa9 x6:1c00baa8 +75914486ns 1379358 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000000b +75914565ns 1379362 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00baa9 PA:1c00baa9 +75914585ns 1379363 1c000e82 fff60613 addi x12, x12, -1 x12=0000000a x12:0000000b +75914604ns 1379364 1c000e84 00130313 addi x6, x6, 1 x6=1c00baaa x6:1c00baa9 +75914624ns 1379365 1c000e86 fe061ce3 bne x12, x0, -8 x12:0000000a +75914703ns 1379369 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00baaa PA:1c00baaa +75914723ns 1379370 1c000e82 fff60613 addi x12, x12, -1 x12=00000009 x12:0000000a +75914743ns 1379371 1c000e84 00130313 addi x6, x6, 1 x6=1c00baab x6:1c00baaa +75914763ns 1379372 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000009 +75914842ns 1379376 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00baab PA:1c00baab +75914862ns 1379377 1c000e82 fff60613 addi x12, x12, -1 x12=00000008 x12:00000009 +75914882ns 1379378 1c000e84 00130313 addi x6, x6, 1 x6=1c00baac x6:1c00baab +75914901ns 1379379 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000008 +75914980ns 1379383 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00baac PA:1c00baac +75915000ns 1379384 1c000e82 fff60613 addi x12, x12, -1 x12=00000007 x12:00000008 +75915020ns 1379385 1c000e84 00130313 addi x6, x6, 1 x6=1c00baad x6:1c00baac +75915040ns 1379386 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000007 +75915119ns 1379390 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00baad PA:1c00baad +75915139ns 1379391 1c000e82 fff60613 addi x12, x12, -1 x12=00000006 x12:00000007 +75915159ns 1379392 1c000e84 00130313 addi x6, x6, 1 x6=1c00baae x6:1c00baad +75915178ns 1379393 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000006 +75915258ns 1379397 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00baae PA:1c00baae +75915277ns 1379398 1c000e82 fff60613 addi x12, x12, -1 x12=00000005 x12:00000006 +75915297ns 1379399 1c000e84 00130313 addi x6, x6, 1 x6=1c00baaf x6:1c00baae +75915317ns 1379400 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000005 +75915396ns 1379404 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00baaf PA:1c00baaf +75915416ns 1379405 1c000e82 fff60613 addi x12, x12, -1 x12=00000004 x12:00000005 +75915436ns 1379406 1c000e84 00130313 addi x6, x6, 1 x6=1c00bab0 x6:1c00baaf +75915455ns 1379407 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000004 +75915535ns 1379411 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00bab0 PA:1c00bab0 +75915554ns 1379412 1c000e82 fff60613 addi x12, x12, -1 x12=00000003 x12:00000004 +75915574ns 1379413 1c000e84 00130313 addi x6, x6, 1 x6=1c00bab1 x6:1c00bab0 +75915594ns 1379414 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000003 +75915673ns 1379418 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00bab1 PA:1c00bab1 +75915693ns 1379419 1c000e82 fff60613 addi x12, x12, -1 x12=00000002 x12:00000003 +75915713ns 1379420 1c000e84 00130313 addi x6, x6, 1 x6=1c00bab2 x6:1c00bab1 +75915733ns 1379421 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000002 +75915812ns 1379425 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00bab2 PA:1c00bab2 +75915832ns 1379426 1c000e82 fff60613 addi x12, x12, -1 x12=00000001 x12:00000002 +75915851ns 1379427 1c000e84 00130313 addi x6, x6, 1 x6=1c00bab3 x6:1c00bab2 +75915871ns 1379428 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000001 +75915950ns 1379432 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00bab3 PA:1c00bab3 +75915970ns 1379433 1c000e82 fff60613 addi x12, x12, -1 x12=00000000 x12:00000001 +75915990ns 1379434 1c000e84 00130313 addi x6, x6, 1 x6=1c00bab4 x6:1c00bab3 +75916010ns 1379435 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000000 +75916029ns 1379436 1c000e88 00008067 jalr x0, x1, 0 x1:1c004616 +75916069ns 1379438 1c004616 00c12083 lw x1, 12(x2) x1=1c004728 x2:1c009b70 PA:1c009b7c +75916089ns 1379439 1c004618 00800533 add x10, x0, x8 x10=1c00b908 x8:1c00b908 +75916109ns 1379440 1c00461a 00812403 lw x8, 8(x2) x8=1c009364 x2:1c009b70 PA:1c009b78 +75916128ns 1379441 1c00461c 00412483 lw x9, 4(x2) x9=1c0091b8 x2:1c009b70 PA:1c009b74 +75916148ns 1379442 1c00461e 00012903 lw x18, 0(x2) x18=1c009e10 x2:1c009b70 PA:1c009b70 +75916168ns 1379443 1c004620 01010113 addi x2, x2, 16 x2=1c009b80 x2:1c009b70 +75916188ns 1379444 1c004622 00008067 jalr x0, x1, 0 x1:1c004728 +75916227ns 1379446 1c004728 00a4a023 sw x10, 0(x9) x10:1c00b908 x9:1c0091b8 PA:1c0091b8 +75916247ns 1379447 1c00472a 00a00433 add x8, x0, x10 x8=1c00b908 x10:1c00b908 +75916267ns 1379448 1c00472c f8051ce3 bne x10, x0, -104 x10:1c00b908 +75916326ns 1379451 1c0046c4 0004a483 lw x9, 0(x9) x9=1c00b908 x9:1c0091b8 PA:1c0091b8 +75916346ns 1379452 1c0046c6 ff1ff06f jal x0, -16 +75916386ns 1379454 1c0046b6 0084a403 lw x8, 8(x9) x8=1c00b914 x9:1c00b908 PA:1c00b910 +75916406ns 1379455 1c0046b8 0044a783 lw x15, 4(x9) x15=00000004 x9:1c00b908 PA:1c00b90c +75916445ns 1379457 1c0046ba fff78793 addi x15, x15, -1 x15=00000003 x15:00000004 +75916465ns 1379458 1c0046bc 0007d663 bge x15, x0, 12 x15:00000003 +75916524ns 1379461 1c0046c8 00c41703 lh x14, 12(x8) x14=00000000 x8:1c00b914 PA:1c00b920 +75916564ns 1379463 1c0046cc 04071763 bne x14, x0, 78 x14:00000000 +75916584ns 1379464 1c0046ce ffff07b7 lui x15, 0xffff0000 x15=ffff0000 +75916603ns 1379465 1c0046d0 00178793 addi x15, x15, 1 x15=ffff0001 x15:ffff0000 +75916623ns 1379466 1c0046d2 06042223 sw x0, 100(x8) x8:1c00b914 PA:1c00b978 +75916643ns 1379467 1c0046d6 00042023 sw x0, 0(x8) x8:1c00b914 PA:1c00b914 +75916663ns 1379468 1c0046da 00042223 sw x0, 4(x8) x8:1c00b914 PA:1c00b918 +75916683ns 1379469 1c0046de 00042423 sw x0, 8(x8) x8:1c00b914 PA:1c00b91c +75916702ns 1379470 1c0046e2 00f42623 sw x15, 12(x8) x15:ffff0001 x8:1c00b914 PA:1c00b920 +75916722ns 1379471 1c0046e4 00042823 sw x0, 16(x8) x8:1c00b914 PA:1c00b924 +75916742ns 1379472 1c0046e8 00042a23 sw x0, 20(x8) x8:1c00b914 PA:1c00b928 +75916762ns 1379473 1c0046ec 00042c23 sw x0, 24(x8) x8:1c00b914 PA:1c00b92c +75916782ns 1379474 1c0046f0 00800613 addi x12, x0, 8 x12=00000008 +75916801ns 1379475 1c0046f2 00000593 addi x11, x0, 0 x11=00000000 +75916821ns 1379476 1c0046f4 05c40513 addi x10, x8, 92 x10=1c00b970 x8:1c00b914 +75916841ns 1379477 1c0046f8 f82fc0ef jal x1, -14462 x1=1c0046fc +75916881ns 1379479 1c000e7a 00a00333 add x6, x0, x10 x6=1c00b970 x10:1c00b970 +75916900ns 1379480 1c000e7c 00060663 beq x12, x0, 12 x12:00000008 +75916920ns 1379481 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b970 PA:1c00b970 +75916940ns 1379482 1c000e82 fff60613 addi x12, x12, -1 x12=00000007 x12:00000008 +75916960ns 1379483 1c000e84 00130313 addi x6, x6, 1 x6=1c00b971 x6:1c00b970 +75916979ns 1379484 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000007 +75917059ns 1379488 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b971 PA:1c00b971 +75917078ns 1379489 1c000e82 fff60613 addi x12, x12, -1 x12=00000006 x12:00000007 +75917098ns 1379490 1c000e84 00130313 addi x6, x6, 1 x6=1c00b972 x6:1c00b971 +75917118ns 1379491 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000006 +75917197ns 1379495 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b972 PA:1c00b972 +75917217ns 1379496 1c000e82 fff60613 addi x12, x12, -1 x12=00000005 x12:00000006 +75917237ns 1379497 1c000e84 00130313 addi x6, x6, 1 x6=1c00b973 x6:1c00b972 +75917257ns 1379498 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000005 +75917336ns 1379502 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b973 PA:1c00b973 +75917356ns 1379503 1c000e82 fff60613 addi x12, x12, -1 x12=00000004 x12:00000005 +75917375ns 1379504 1c000e84 00130313 addi x6, x6, 1 x6=1c00b974 x6:1c00b973 +75917395ns 1379505 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000004 +75917474ns 1379509 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b974 PA:1c00b974 +75917494ns 1379510 1c000e82 fff60613 addi x12, x12, -1 x12=00000003 x12:00000004 +75917514ns 1379511 1c000e84 00130313 addi x6, x6, 1 x6=1c00b975 x6:1c00b974 +75917534ns 1379512 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000003 +75917613ns 1379516 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b975 PA:1c00b975 +75917633ns 1379517 1c000e82 fff60613 addi x12, x12, -1 x12=00000002 x12:00000003 +75917652ns 1379518 1c000e84 00130313 addi x6, x6, 1 x6=1c00b976 x6:1c00b975 +75917672ns 1379519 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000002 +75917751ns 1379523 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b976 PA:1c00b976 +75917771ns 1379524 1c000e82 fff60613 addi x12, x12, -1 x12=00000001 x12:00000002 +75917791ns 1379525 1c000e84 00130313 addi x6, x6, 1 x6=1c00b977 x6:1c00b976 +75917811ns 1379526 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000001 +75917890ns 1379530 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b977 PA:1c00b977 +75917910ns 1379531 1c000e82 fff60613 addi x12, x12, -1 x12=00000000 x12:00000001 +75917929ns 1379532 1c000e84 00130313 addi x6, x6, 1 x6=1c00b978 x6:1c00b977 +75917949ns 1379533 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000000 +75917969ns 1379534 1c000e88 00008067 jalr x0, x1, 0 x1:1c0046fc +75918009ns 1379536 1c0046fc 02042a23 sw x0, 52(x8) x8:1c00b914 PA:1c00b948 +75918028ns 1379537 1c004700 02042c23 sw x0, 56(x8) x8:1c00b914 PA:1c00b94c +75918048ns 1379538 1c004704 04042423 sw x0, 72(x8) x8:1c00b914 PA:1c00b95c +75918068ns 1379539 1c004708 04042623 sw x0, 76(x8) x8:1c00b914 PA:1c00b960 +75918088ns 1379540 1c00470c 00c12083 lw x1, 12(x2) x1=1c004660 x2:1c009b80 PA:1c009b8c +75918108ns 1379541 1c00470e 00800533 add x10, x0, x8 x10=1c00b914 x8:1c00b914 +75918127ns 1379542 1c004710 00812403 lw x8, 8(x2) x8=1c009e10 x2:1c009b80 PA:1c009b88 +75918147ns 1379543 1c004712 00412483 lw x9, 4(x2) x9=1c009e10 x2:1c009b80 PA:1c009b84 +75918167ns 1379544 1c004714 00012903 lw x18, 0(x2) x18=1c008894 x2:1c009b80 PA:1c009b80 +75918187ns 1379545 1c004716 01010113 addi x2, x2, 16 x2=1c009b90 x2:1c009b80 +75918207ns 1379546 1c004718 00008067 jalr x0, x1, 0 x1:1c004660 +75918246ns 1379548 1c004660 00a42423 sw x10, 8(x8) x10:1c00b914 x8:1c009e10 PA:1c009e18 +75918266ns 1379549 1c004662 00800533 add x10, x0, x8 x10=1c009e10 x8:1c009e10 +75918286ns 1379550 1c004664 030000ef jal x1, 48 x1=1c004666 +75918325ns 1379552 1c004694 ff010113 addi x2, x2, -16 x2=1c009b80 x2:1c009b90 +75918345ns 1379553 1c004696 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +75918365ns 1379554 1c00469a 00912223 sw x9, 4(x2) x9:1c009e10 x2:1c009b80 PA:1c009b84 +75918385ns 1379555 1c00469c bd87a483 lw x9, -1064(x15) x9=1c008bdc x15:1c009000 PA:1c008bd8 +75918405ns 1379556 1c0046a0 01212023 sw x18, 0(x2) x18:1c008894 x2:1c009b80 PA:1c009b80 +75918424ns 1379557 1c0046a2 00112623 sw x1, 12(x2) x1:1c004666 x2:1c009b80 PA:1c009b8c +75918444ns 1379558 1c0046a4 0184a783 lw x15, 24(x9) x15=00000001 x9:1c008bdc PA:1c008bf4 +75918464ns 1379559 1c0046a6 00812423 sw x8, 8(x2) x8:1c009e10 x2:1c009b80 PA:1c009b88 +75918484ns 1379560 1c0046a8 00a00933 add x18, x0, x10 x18=1c009e10 x10:1c009e10 +75918503ns 1379561 1c0046aa 00079463 bne x15, x0, 8 x15:00000001 +75918583ns 1379565 1c0046b2 04848493 addi x9, x9, 72 x9=1c008c24 x9:1c008bdc +75918602ns 1379566 1c0046b6 0084a403 lw x8, 8(x9) x8=00000000 x9:1c008c24 PA:1c008c2c +75918622ns 1379567 1c0046b8 0044a783 lw x15, 4(x9) x15=00000000 x9:1c008c24 PA:1c008c28 +75918662ns 1379569 1c0046ba fff78793 addi x15, x15, -1 x15=ffffffff x15:00000000 +75918682ns 1379570 1c0046bc 0007d663 bge x15, x0, 12 x15:ffffffff +75918701ns 1379571 1c0046c0 0004a783 lw x15, 0(x9) x15=1c0091b8 x9:1c008c24 PA:1c008c24 +75918741ns 1379573 1c0046c2 04078f63 beq x15, x0, 94 x15:1c0091b8 +75918761ns 1379574 1c0046c4 0004a483 lw x9, 0(x9) x9=1c0091b8 x9:1c008c24 PA:1c008c24 +75918781ns 1379575 1c0046c6 ff1ff06f jal x0, -16 +75918820ns 1379577 1c0046b6 0084a403 lw x8, 8(x9) x8=1c0091c4 x9:1c0091b8 PA:1c0091c0 +75918840ns 1379578 1c0046b8 0044a783 lw x15, 4(x9) x15=00000004 x9:1c0091b8 PA:1c0091bc +75918880ns 1379580 1c0046ba fff78793 addi x15, x15, -1 x15=00000003 x15:00000004 +75918899ns 1379581 1c0046bc 0007d663 bge x15, x0, 12 x15:00000003 +75918959ns 1379584 1c0046c8 00c41703 lh x14, 12(x8) x14=00000004 x8:1c0091c4 PA:1c0091d0 +75918998ns 1379586 1c0046cc 04071763 bne x14, x0, 78 x14:00000004 +75919077ns 1379590 1c00471a 06840413 addi x8, x8, 104 x8=1c00922c x8:1c0091c4 +75919097ns 1379591 1c00471e f9dff06f jal x0, -100 +75919137ns 1379593 1c0046ba fff78793 addi x15, x15, -1 x15=00000002 x15:00000003 +75919157ns 1379594 1c0046bc 0007d663 bge x15, x0, 12 x15:00000002 +75919216ns 1379597 1c0046c8 00c41703 lh x14, 12(x8) x14=00000089 x8:1c00922c PA:1c009238 +75919256ns 1379599 1c0046cc 04071763 bne x14, x0, 78 x14:00000089 +75919335ns 1379603 1c00471a 06840413 addi x8, x8, 104 x8=1c009294 x8:1c00922c +75919355ns 1379604 1c00471e f9dff06f jal x0, -100 +75919394ns 1379606 1c0046ba fff78793 addi x15, x15, -1 x15=00000001 x15:00000002 +75919414ns 1379607 1c0046bc 0007d663 bge x15, x0, 12 x15:00000001 +75919473ns 1379610 1c0046c8 00c41703 lh x14, 12(x8) x14=00000012 x8:1c009294 PA:1c0092a0 +75919513ns 1379612 1c0046cc 04071763 bne x14, x0, 78 x14:00000012 +75919592ns 1379616 1c00471a 06840413 addi x8, x8, 104 x8=1c0092fc x8:1c009294 +75919612ns 1379617 1c00471e f9dff06f jal x0, -100 +75919651ns 1379619 1c0046ba fff78793 addi x15, x15, -1 x15=00000000 x15:00000001 +75919671ns 1379620 1c0046bc 0007d663 bge x15, x0, 12 x15:00000000 +75919731ns 1379623 1c0046c8 00c41703 lh x14, 12(x8) x14=00000001 x8:1c0092fc PA:1c009308 +75919770ns 1379625 1c0046cc 04071763 bne x14, x0, 78 x14:00000001 +75919849ns 1379629 1c00471a 06840413 addi x8, x8, 104 x8=1c009364 x8:1c0092fc +75919869ns 1379630 1c00471e f9dff06f jal x0, -100 +75919909ns 1379632 1c0046ba fff78793 addi x15, x15, -1 x15=ffffffff x15:00000000 +75919928ns 1379633 1c0046bc 0007d663 bge x15, x0, 12 x15:ffffffff +75919948ns 1379634 1c0046c0 0004a783 lw x15, 0(x9) x15=1c00b908 x9:1c0091b8 PA:1c0091b8 +75919988ns 1379636 1c0046c2 04078f63 beq x15, x0, 94 x15:1c00b908 +75920008ns 1379637 1c0046c4 0004a483 lw x9, 0(x9) x9=1c00b908 x9:1c0091b8 PA:1c0091b8 +75920027ns 1379638 1c0046c6 ff1ff06f jal x0, -16 +75920067ns 1379640 1c0046b6 0084a403 lw x8, 8(x9) x8=1c00b914 x9:1c00b908 PA:1c00b910 +75920087ns 1379641 1c0046b8 0044a783 lw x15, 4(x9) x15=00000004 x9:1c00b908 PA:1c00b90c +75920126ns 1379643 1c0046ba fff78793 addi x15, x15, -1 x15=00000003 x15:00000004 +75920146ns 1379644 1c0046bc 0007d663 bge x15, x0, 12 x15:00000003 +75920206ns 1379647 1c0046c8 00c41703 lh x14, 12(x8) x14=00000001 x8:1c00b914 PA:1c00b920 +75920245ns 1379649 1c0046cc 04071763 bne x14, x0, 78 x14:00000001 +75920324ns 1379653 1c00471a 06840413 addi x8, x8, 104 x8=1c00b97c x8:1c00b914 +75920344ns 1379654 1c00471e f9dff06f jal x0, -100 +75920384ns 1379656 1c0046ba fff78793 addi x15, x15, -1 x15=00000002 x15:00000003 +75920403ns 1379657 1c0046bc 0007d663 bge x15, x0, 12 x15:00000002 +75920463ns 1379660 1c0046c8 00c41703 lh x14, 12(x8) x14=00000000 x8:1c00b97c PA:1c00b988 +75920502ns 1379662 1c0046cc 04071763 bne x14, x0, 78 x14:00000000 +75920522ns 1379663 1c0046ce ffff07b7 lui x15, 0xffff0000 x15=ffff0000 +75920542ns 1379664 1c0046d0 00178793 addi x15, x15, 1 x15=ffff0001 x15:ffff0000 +75920562ns 1379665 1c0046d2 06042223 sw x0, 100(x8) x8:1c00b97c PA:1c00b9e0 +75920582ns 1379666 1c0046d6 00042023 sw x0, 0(x8) x8:1c00b97c PA:1c00b97c +75920601ns 1379667 1c0046da 00042223 sw x0, 4(x8) x8:1c00b97c PA:1c00b980 +75920621ns 1379668 1c0046de 00042423 sw x0, 8(x8) x8:1c00b97c PA:1c00b984 +75920641ns 1379669 1c0046e2 00f42623 sw x15, 12(x8) x15:ffff0001 x8:1c00b97c PA:1c00b988 +75920661ns 1379670 1c0046e4 00042823 sw x0, 16(x8) x8:1c00b97c PA:1c00b98c +75920681ns 1379671 1c0046e8 00042a23 sw x0, 20(x8) x8:1c00b97c PA:1c00b990 +75920700ns 1379672 1c0046ec 00042c23 sw x0, 24(x8) x8:1c00b97c PA:1c00b994 +75920720ns 1379673 1c0046f0 00800613 addi x12, x0, 8 x12=00000008 +75920740ns 1379674 1c0046f2 00000593 addi x11, x0, 0 x11=00000000 +75920760ns 1379675 1c0046f4 05c40513 addi x10, x8, 92 x10=1c00b9d8 x8:1c00b97c +75920780ns 1379676 1c0046f8 f82fc0ef jal x1, -14462 x1=1c0046fc +75920819ns 1379678 1c000e7a 00a00333 add x6, x0, x10 x6=1c00b9d8 x10:1c00b9d8 +75920839ns 1379679 1c000e7c 00060663 beq x12, x0, 12 x12:00000008 +75920859ns 1379680 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9d8 PA:1c00b9d8 +75920879ns 1379681 1c000e82 fff60613 addi x12, x12, -1 x12=00000007 x12:00000008 +75920898ns 1379682 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9d9 x6:1c00b9d8 +75920918ns 1379683 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000007 +75920997ns 1379687 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9d9 PA:1c00b9d9 +75921017ns 1379688 1c000e82 fff60613 addi x12, x12, -1 x12=00000006 x12:00000007 +75921037ns 1379689 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9da x6:1c00b9d9 +75921057ns 1379690 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000006 +75921136ns 1379694 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9da PA:1c00b9da +75921156ns 1379695 1c000e82 fff60613 addi x12, x12, -1 x12=00000005 x12:00000006 +75921175ns 1379696 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9db x6:1c00b9da +75921195ns 1379697 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000005 +75921274ns 1379701 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9db PA:1c00b9db +75921294ns 1379702 1c000e82 fff60613 addi x12, x12, -1 x12=00000004 x12:00000005 +75921314ns 1379703 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9dc x6:1c00b9db +75921334ns 1379704 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000004 +75921413ns 1379708 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9dc PA:1c00b9dc +75921433ns 1379709 1c000e82 fff60613 addi x12, x12, -1 x12=00000003 x12:00000004 +75921452ns 1379710 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9dd x6:1c00b9dc +75921472ns 1379711 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000003 +75921551ns 1379715 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9dd PA:1c00b9dd +75921571ns 1379716 1c000e82 fff60613 addi x12, x12, -1 x12=00000002 x12:00000003 +75921591ns 1379717 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9de x6:1c00b9dd +75921611ns 1379718 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000002 +75921690ns 1379722 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9de PA:1c00b9de +75921710ns 1379723 1c000e82 fff60613 addi x12, x12, -1 x12=00000001 x12:00000002 +75921730ns 1379724 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9df x6:1c00b9de +75921749ns 1379725 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000001 +75921829ns 1379729 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9df PA:1c00b9df +75921848ns 1379730 1c000e82 fff60613 addi x12, x12, -1 x12=00000000 x12:00000001 +75921868ns 1379731 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9e0 x6:1c00b9df +75921888ns 1379732 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000000 +75921908ns 1379733 1c000e88 00008067 jalr x0, x1, 0 x1:1c0046fc +75921947ns 1379735 1c0046fc 02042a23 sw x0, 52(x8) x8:1c00b97c PA:1c00b9b0 +75921967ns 1379736 1c004700 02042c23 sw x0, 56(x8) x8:1c00b97c PA:1c00b9b4 +75921987ns 1379737 1c004704 04042423 sw x0, 72(x8) x8:1c00b97c PA:1c00b9c4 +75922007ns 1379738 1c004708 04042623 sw x0, 76(x8) x8:1c00b97c PA:1c00b9c8 +75922026ns 1379739 1c00470c 00c12083 lw x1, 12(x2) x1=1c004666 x2:1c009b80 PA:1c009b8c +75922046ns 1379740 1c00470e 00800533 add x10, x0, x8 x10=1c00b97c x8:1c00b97c +75922066ns 1379741 1c004710 00812403 lw x8, 8(x2) x8=1c009e10 x2:1c009b80 PA:1c009b88 +75922086ns 1379742 1c004712 00412483 lw x9, 4(x2) x9=1c009e10 x2:1c009b80 PA:1c009b84 +75922106ns 1379743 1c004714 00012903 lw x18, 0(x2) x18=1c008894 x2:1c009b80 PA:1c009b80 +75922125ns 1379744 1c004716 01010113 addi x2, x2, 16 x2=1c009b90 x2:1c009b80 +75922145ns 1379745 1c004718 00008067 jalr x0, x1, 0 x1:1c004666 +75922185ns 1379747 1c004666 00a42623 sw x10, 12(x8) x10:1c00b97c x8:1c009e10 PA:1c009e1c +75922205ns 1379748 1c004668 00442503 lw x10, 4(x8) x10=1c0092fc x8:1c009e10 PA:1c009e14 +75922224ns 1379749 1c00466a 00000613 addi x12, x0, 0 x12=00000000 +75922244ns 1379750 1c00466c 00400593 addi x11, x0, 4 x11=00000004 +75922264ns 1379751 1c00466e efbff0ef jal x1, -262 x1=1c004672 +75922304ns 1379753 1c004568 ff010113 addi x2, x2, -16 x2=1c009b80 x2:1c009b90 +75922323ns 1379754 1c00456a 00812423 sw x8, 8(x2) x8:1c009e10 x2:1c009b80 PA:1c009b88 +75922343ns 1379755 1c00456c 00112623 sw x1, 12(x2) x1:1c004672 x2:1c009b80 PA:1c009b8c +75922363ns 1379756 1c00456e 00a00433 add x8, x0, x10 x8=1c0092fc x10:1c0092fc +75922383ns 1379757 1c004570 00b51623 sh x11, 12(x10) x11:00000004 x10:1c0092fc PA:1c009308 +75922402ns 1379758 1c004574 00c51723 sh x12, 14(x10) x12:00000000 x10:1c0092fc PA:1c00930a +75922422ns 1379759 1c004578 00052023 sw x0, 0(x10) x10:1c0092fc PA:1c0092fc +75922442ns 1379760 1c00457c 00052223 sw x0, 4(x10) x10:1c0092fc PA:1c009300 +75922462ns 1379761 1c004580 00052423 sw x0, 8(x10) x10:1c0092fc PA:1c009304 +75922482ns 1379762 1c004584 06052223 sw x0, 100(x10) x10:1c0092fc PA:1c009360 +75922501ns 1379763 1c004588 00052823 sw x0, 16(x10) x10:1c0092fc PA:1c00930c +75922521ns 1379764 1c00458c 00052a23 sw x0, 20(x10) x10:1c0092fc PA:1c009310 +75922541ns 1379765 1c004590 00052c23 sw x0, 24(x10) x10:1c0092fc PA:1c009314 +75922561ns 1379766 1c004594 00800613 addi x12, x0, 8 x12=00000008 +75922581ns 1379767 1c004596 00000593 addi x11, x0, 0 x11=00000000 +75922600ns 1379768 1c004598 05c50513 addi x10, x10, 92 x10=1c009358 x10:1c0092fc +75922620ns 1379769 1c00459c 8dffc0ef jal x1, -14114 x1=1c0045a0 +75922660ns 1379771 1c000e7a 00a00333 add x6, x0, x10 x6=1c009358 x10:1c009358 +75922680ns 1379772 1c000e7c 00060663 beq x12, x0, 12 x12:00000008 +75922699ns 1379773 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009358 PA:1c009358 +75922719ns 1379774 1c000e82 fff60613 addi x12, x12, -1 x12=00000007 x12:00000008 +75922739ns 1379775 1c000e84 00130313 addi x6, x6, 1 x6=1c009359 x6:1c009358 +75922759ns 1379776 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000007 +75922838ns 1379780 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c009359 PA:1c009359 +75922858ns 1379781 1c000e82 fff60613 addi x12, x12, -1 x12=00000006 x12:00000007 +75922877ns 1379782 1c000e84 00130313 addi x6, x6, 1 x6=1c00935a x6:1c009359 +75922897ns 1379783 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000006 +75922976ns 1379787 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00935a PA:1c00935a +75922996ns 1379788 1c000e82 fff60613 addi x12, x12, -1 x12=00000005 x12:00000006 +75923016ns 1379789 1c000e84 00130313 addi x6, x6, 1 x6=1c00935b x6:1c00935a +75923036ns 1379790 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000005 +75923115ns 1379794 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00935b PA:1c00935b +75923135ns 1379795 1c000e82 fff60613 addi x12, x12, -1 x12=00000004 x12:00000005 +75923155ns 1379796 1c000e84 00130313 addi x6, x6, 1 x6=1c00935c x6:1c00935b +75923174ns 1379797 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000004 +75923254ns 1379801 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00935c PA:1c00935c +75923273ns 1379802 1c000e82 fff60613 addi x12, x12, -1 x12=00000003 x12:00000004 +75923293ns 1379803 1c000e84 00130313 addi x6, x6, 1 x6=1c00935d x6:1c00935c +75923313ns 1379804 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000003 +75923392ns 1379808 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00935d PA:1c00935d +75923412ns 1379809 1c000e82 fff60613 addi x12, x12, -1 x12=00000002 x12:00000003 +75923432ns 1379810 1c000e84 00130313 addi x6, x6, 1 x6=1c00935e x6:1c00935d +75923451ns 1379811 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000002 +75923531ns 1379815 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00935e PA:1c00935e +75923550ns 1379816 1c000e82 fff60613 addi x12, x12, -1 x12=00000001 x12:00000002 +75923570ns 1379817 1c000e84 00130313 addi x6, x6, 1 x6=1c00935f x6:1c00935e +75923590ns 1379818 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000001 +75923669ns 1379822 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00935f PA:1c00935f +75923689ns 1379823 1c000e82 fff60613 addi x12, x12, -1 x12=00000000 x12:00000001 +75923709ns 1379824 1c000e84 00130313 addi x6, x6, 1 x6=1c009360 x6:1c00935f +75923729ns 1379825 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000000 +75923748ns 1379826 1c000e88 00008067 jalr x0, x1, 0 x1:1c0045a0 +75923788ns 1379828 1c0045a0 1c0057b7 lui x15, 0x1c005000 x15=1c005000 +75923808ns 1379829 1c0045a4 c2e78793 addi x15, x15, -978 x15=1c004c2e x15:1c005000 +75923828ns 1379830 1c0045a8 02f42223 sw x15, 36(x8) x15:1c004c2e x8:1c0092fc PA:1c009320 +75923847ns 1379831 1c0045aa 1c0057b7 lui x15, 0x1c005000 x15=1c005000 +75923867ns 1379832 1c0045ae c5e78793 addi x15, x15, -930 x15=1c004c5e x15:1c005000 +75923887ns 1379833 1c0045b2 02f42423 sw x15, 40(x8) x15:1c004c5e x8:1c0092fc PA:1c009324 +75923907ns 1379834 1c0045b4 1c0057b7 lui x15, 0x1c005000 x15=1c005000 +75923926ns 1379835 1c0045b8 cac78793 addi x15, x15, -852 x15=1c004cac x15:1c005000 +75923946ns 1379836 1c0045bc 02f42623 sw x15, 44(x8) x15:1c004cac x8:1c0092fc PA:1c009328 +75923966ns 1379837 1c0045be 1c0057b7 lui x15, 0x1c005000 x15=1c005000 +75923986ns 1379838 1c0045c2 ce278793 addi x15, x15, -798 x15=1c004ce2 x15:1c005000 +75924006ns 1379839 1c0045c6 00c12083 lw x1, 12(x2) x1=1c004672 x2:1c009b80 PA:1c009b8c +75924025ns 1379840 1c0045c8 02842023 sw x8, 32(x8) x8:1c0092fc x8:1c0092fc PA:1c00931c +75924045ns 1379841 1c0045ca 02f42823 sw x15, 48(x8) x15:1c004ce2 x8:1c0092fc PA:1c00932c +75924065ns 1379842 1c0045cc 00812403 lw x8, 8(x2) x8=1c009e10 x2:1c009b80 PA:1c009b88 +75924085ns 1379843 1c0045ce 01010113 addi x2, x2, 16 x2=1c009b90 x2:1c009b80 +75924105ns 1379844 1c0045d0 00008067 jalr x0, x1, 0 x1:1c004672 +75924144ns 1379846 1c004672 00842503 lw x10, 8(x8) x10=1c00b914 x8:1c009e10 PA:1c009e18 +75924164ns 1379847 1c004674 00100613 addi x12, x0, 1 x12=00000001 +75924184ns 1379848 1c004676 00900593 addi x11, x0, 9 x11=00000009 +75924204ns 1379849 1c004678 ef1ff0ef jal x1, -272 x1=1c00467c +75924243ns 1379851 1c004568 ff010113 addi x2, x2, -16 x2=1c009b80 x2:1c009b90 +75924263ns 1379852 1c00456a 00812423 sw x8, 8(x2) x8:1c009e10 x2:1c009b80 PA:1c009b88 +75924283ns 1379853 1c00456c 00112623 sw x1, 12(x2) x1:1c00467c x2:1c009b80 PA:1c009b8c +75924303ns 1379854 1c00456e 00a00433 add x8, x0, x10 x8=1c00b914 x10:1c00b914 +75924322ns 1379855 1c004570 00b51623 sh x11, 12(x10) x11:00000009 x10:1c00b914 PA:1c00b920 +75924342ns 1379856 1c004574 00c51723 sh x12, 14(x10) x12:00000001 x10:1c00b914 PA:1c00b922 +75924362ns 1379857 1c004578 00052023 sw x0, 0(x10) x10:1c00b914 PA:1c00b914 +75924382ns 1379858 1c00457c 00052223 sw x0, 4(x10) x10:1c00b914 PA:1c00b918 +75924401ns 1379859 1c004580 00052423 sw x0, 8(x10) x10:1c00b914 PA:1c00b91c +75924421ns 1379860 1c004584 06052223 sw x0, 100(x10) x10:1c00b914 PA:1c00b978 +75924441ns 1379861 1c004588 00052823 sw x0, 16(x10) x10:1c00b914 PA:1c00b924 +75924461ns 1379862 1c00458c 00052a23 sw x0, 20(x10) x10:1c00b914 PA:1c00b928 +75924481ns 1379863 1c004590 00052c23 sw x0, 24(x10) x10:1c00b914 PA:1c00b92c +75924500ns 1379864 1c004594 00800613 addi x12, x0, 8 x12=00000008 +75924520ns 1379865 1c004596 00000593 addi x11, x0, 0 x11=00000000 +75924540ns 1379866 1c004598 05c50513 addi x10, x10, 92 x10=1c00b970 x10:1c00b914 +75924560ns 1379867 1c00459c 8dffc0ef jal x1, -14114 x1=1c0045a0 +75924599ns 1379869 1c000e7a 00a00333 add x6, x0, x10 x6=1c00b970 x10:1c00b970 +75924619ns 1379870 1c000e7c 00060663 beq x12, x0, 12 x12:00000008 +75924639ns 1379871 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b970 PA:1c00b970 +75924659ns 1379872 1c000e82 fff60613 addi x12, x12, -1 x12=00000007 x12:00000008 +75924679ns 1379873 1c000e84 00130313 addi x6, x6, 1 x6=1c00b971 x6:1c00b970 +75924698ns 1379874 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000007 +75924778ns 1379878 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b971 PA:1c00b971 +75924797ns 1379879 1c000e82 fff60613 addi x12, x12, -1 x12=00000006 x12:00000007 +75924817ns 1379880 1c000e84 00130313 addi x6, x6, 1 x6=1c00b972 x6:1c00b971 +75924837ns 1379881 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000006 +75924916ns 1379885 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b972 PA:1c00b972 +75924936ns 1379886 1c000e82 fff60613 addi x12, x12, -1 x12=00000005 x12:00000006 +75924956ns 1379887 1c000e84 00130313 addi x6, x6, 1 x6=1c00b973 x6:1c00b972 +75924975ns 1379888 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000005 +75925055ns 1379892 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b973 PA:1c00b973 +75925074ns 1379893 1c000e82 fff60613 addi x12, x12, -1 x12=00000004 x12:00000005 +75925094ns 1379894 1c000e84 00130313 addi x6, x6, 1 x6=1c00b974 x6:1c00b973 +75925114ns 1379895 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000004 +75925193ns 1379899 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b974 PA:1c00b974 +75925213ns 1379900 1c000e82 fff60613 addi x12, x12, -1 x12=00000003 x12:00000004 +75925233ns 1379901 1c000e84 00130313 addi x6, x6, 1 x6=1c00b975 x6:1c00b974 +75925253ns 1379902 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000003 +75925332ns 1379906 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b975 PA:1c00b975 +75925351ns 1379907 1c000e82 fff60613 addi x12, x12, -1 x12=00000002 x12:00000003 +75925371ns 1379908 1c000e84 00130313 addi x6, x6, 1 x6=1c00b976 x6:1c00b975 +75925391ns 1379909 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000002 +75925470ns 1379913 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b976 PA:1c00b976 +75925490ns 1379914 1c000e82 fff60613 addi x12, x12, -1 x12=00000001 x12:00000002 +75925510ns 1379915 1c000e84 00130313 addi x6, x6, 1 x6=1c00b977 x6:1c00b976 +75925530ns 1379916 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000001 +75925609ns 1379920 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b977 PA:1c00b977 +75925629ns 1379921 1c000e82 fff60613 addi x12, x12, -1 x12=00000000 x12:00000001 +75925648ns 1379922 1c000e84 00130313 addi x6, x6, 1 x6=1c00b978 x6:1c00b977 +75925668ns 1379923 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000000 +75925688ns 1379924 1c000e88 00008067 jalr x0, x1, 0 x1:1c0045a0 +75925728ns 1379926 1c0045a0 1c0057b7 lui x15, 0x1c005000 x15=1c005000 +75925747ns 1379927 1c0045a4 c2e78793 addi x15, x15, -978 x15=1c004c2e x15:1c005000 +75925767ns 1379928 1c0045a8 02f42223 sw x15, 36(x8) x15:1c004c2e x8:1c00b914 PA:1c00b938 +75925787ns 1379929 1c0045aa 1c0057b7 lui x15, 0x1c005000 x15=1c005000 +75925807ns 1379930 1c0045ae c5e78793 addi x15, x15, -930 x15=1c004c5e x15:1c005000 +75925827ns 1379931 1c0045b2 02f42423 sw x15, 40(x8) x15:1c004c5e x8:1c00b914 PA:1c00b93c +75925846ns 1379932 1c0045b4 1c0057b7 lui x15, 0x1c005000 x15=1c005000 +75925866ns 1379933 1c0045b8 cac78793 addi x15, x15, -852 x15=1c004cac x15:1c005000 +75925886ns 1379934 1c0045bc 02f42623 sw x15, 44(x8) x15:1c004cac x8:1c00b914 PA:1c00b940 +75925906ns 1379935 1c0045be 1c0057b7 lui x15, 0x1c005000 x15=1c005000 +75925925ns 1379936 1c0045c2 ce278793 addi x15, x15, -798 x15=1c004ce2 x15:1c005000 +75925945ns 1379937 1c0045c6 00c12083 lw x1, 12(x2) x1=1c00467c x2:1c009b80 PA:1c009b8c +75925965ns 1379938 1c0045c8 02842023 sw x8, 32(x8) x8:1c00b914 x8:1c00b914 PA:1c00b934 +75925985ns 1379939 1c0045ca 02f42823 sw x15, 48(x8) x15:1c004ce2 x8:1c00b914 PA:1c00b944 +75926005ns 1379940 1c0045cc 00812403 lw x8, 8(x2) x8=1c009e10 x2:1c009b80 PA:1c009b88 +75926024ns 1379941 1c0045ce 01010113 addi x2, x2, 16 x2=1c009b90 x2:1c009b80 +75926044ns 1379942 1c0045d0 00008067 jalr x0, x1, 0 x1:1c00467c +75926084ns 1379944 1c00467c 00c42503 lw x10, 12(x8) x10=1c00b97c x8:1c009e10 PA:1c009e1c +75926104ns 1379945 1c00467e 00200613 addi x12, x0, 2 x12=00000002 +75926123ns 1379946 1c004680 01200593 addi x11, x0, 18 x11=00000012 +75926143ns 1379947 1c004682 ee7ff0ef jal x1, -282 x1=1c004686 +75926183ns 1379949 1c004568 ff010113 addi x2, x2, -16 x2=1c009b80 x2:1c009b90 +75926203ns 1379950 1c00456a 00812423 sw x8, 8(x2) x8:1c009e10 x2:1c009b80 PA:1c009b88 +75926222ns 1379951 1c00456c 00112623 sw x1, 12(x2) x1:1c004686 x2:1c009b80 PA:1c009b8c +75926242ns 1379952 1c00456e 00a00433 add x8, x0, x10 x8=1c00b97c x10:1c00b97c +75926262ns 1379953 1c004570 00b51623 sh x11, 12(x10) x11:00000012 x10:1c00b97c PA:1c00b988 +75926282ns 1379954 1c004574 00c51723 sh x12, 14(x10) x12:00000002 x10:1c00b97c PA:1c00b98a +75926302ns 1379955 1c004578 00052023 sw x0, 0(x10) x10:1c00b97c PA:1c00b97c +75926321ns 1379956 1c00457c 00052223 sw x0, 4(x10) x10:1c00b97c PA:1c00b980 +75926341ns 1379957 1c004580 00052423 sw x0, 8(x10) x10:1c00b97c PA:1c00b984 +75926361ns 1379958 1c004584 06052223 sw x0, 100(x10) x10:1c00b97c PA:1c00b9e0 +75926381ns 1379959 1c004588 00052823 sw x0, 16(x10) x10:1c00b97c PA:1c00b98c +75926400ns 1379960 1c00458c 00052a23 sw x0, 20(x10) x10:1c00b97c PA:1c00b990 +75926420ns 1379961 1c004590 00052c23 sw x0, 24(x10) x10:1c00b97c PA:1c00b994 +75926440ns 1379962 1c004594 00800613 addi x12, x0, 8 x12=00000008 +75926460ns 1379963 1c004596 00000593 addi x11, x0, 0 x11=00000000 +75926480ns 1379964 1c004598 05c50513 addi x10, x10, 92 x10=1c00b9d8 x10:1c00b97c +75926499ns 1379965 1c00459c 8dffc0ef jal x1, -14114 x1=1c0045a0 +75926539ns 1379967 1c000e7a 00a00333 add x6, x0, x10 x6=1c00b9d8 x10:1c00b9d8 +75926559ns 1379968 1c000e7c 00060663 beq x12, x0, 12 x12:00000008 +75926579ns 1379969 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9d8 PA:1c00b9d8 +75926598ns 1379970 1c000e82 fff60613 addi x12, x12, -1 x12=00000007 x12:00000008 +75926618ns 1379971 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9d9 x6:1c00b9d8 +75926638ns 1379972 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000007 +75926717ns 1379976 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9d9 PA:1c00b9d9 +75926737ns 1379977 1c000e82 fff60613 addi x12, x12, -1 x12=00000006 x12:00000007 +75926757ns 1379978 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9da x6:1c00b9d9 +75926777ns 1379979 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000006 +75926856ns 1379983 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9da PA:1c00b9da +75926875ns 1379984 1c000e82 fff60613 addi x12, x12, -1 x12=00000005 x12:00000006 +75926895ns 1379985 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9db x6:1c00b9da +75926915ns 1379986 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000005 +75926994ns 1379990 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9db PA:1c00b9db +75927014ns 1379991 1c000e82 fff60613 addi x12, x12, -1 x12=00000004 x12:00000005 +75927034ns 1379992 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9dc x6:1c00b9db +75927054ns 1379993 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000004 +75927133ns 1379997 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9dc PA:1c00b9dc +75927153ns 1379998 1c000e82 fff60613 addi x12, x12, -1 x12=00000003 x12:00000004 +75927172ns 1379999 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9dd x6:1c00b9dc +75927192ns 1380000 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000003 +75927271ns 1380004 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9dd PA:1c00b9dd +75927291ns 1380005 1c000e82 fff60613 addi x12, x12, -1 x12=00000002 x12:00000003 +75927311ns 1380006 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9de x6:1c00b9dd +75927331ns 1380007 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000002 +75927410ns 1380011 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9de PA:1c00b9de +75927430ns 1380012 1c000e82 fff60613 addi x12, x12, -1 x12=00000001 x12:00000002 +75927449ns 1380013 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9df x6:1c00b9de +75927469ns 1380014 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000001 +75927548ns 1380018 1c000e7e 00b30023 sb x11, 0(x6) x11:00000000 x6:1c00b9df PA:1c00b9df +75927568ns 1380019 1c000e82 fff60613 addi x12, x12, -1 x12=00000000 x12:00000001 +75927588ns 1380020 1c000e84 00130313 addi x6, x6, 1 x6=1c00b9e0 x6:1c00b9df +75927608ns 1380021 1c000e86 fe061ce3 bne x12, x0, -8 x12:00000000 +75927628ns 1380022 1c000e88 00008067 jalr x0, x1, 0 x1:1c0045a0 +75927667ns 1380024 1c0045a0 1c0057b7 lui x15, 0x1c005000 x15=1c005000 +75927687ns 1380025 1c0045a4 c2e78793 addi x15, x15, -978 x15=1c004c2e x15:1c005000 +75927707ns 1380026 1c0045a8 02f42223 sw x15, 36(x8) x15:1c004c2e x8:1c00b97c PA:1c00b9a0 +75927727ns 1380027 1c0045aa 1c0057b7 lui x15, 0x1c005000 x15=1c005000 +75927746ns 1380028 1c0045ae c5e78793 addi x15, x15, -930 x15=1c004c5e x15:1c005000 +75927766ns 1380029 1c0045b2 02f42423 sw x15, 40(x8) x15:1c004c5e x8:1c00b97c PA:1c00b9a4 +75927786ns 1380030 1c0045b4 1c0057b7 lui x15, 0x1c005000 x15=1c005000 +75927806ns 1380031 1c0045b8 cac78793 addi x15, x15, -852 x15=1c004cac x15:1c005000 +75927825ns 1380032 1c0045bc 02f42623 sw x15, 44(x8) x15:1c004cac x8:1c00b97c PA:1c00b9a8 +75927845ns 1380033 1c0045be 1c0057b7 lui x15, 0x1c005000 x15=1c005000 +75927865ns 1380034 1c0045c2 ce278793 addi x15, x15, -798 x15=1c004ce2 x15:1c005000 +75927885ns 1380035 1c0045c6 00c12083 lw x1, 12(x2) x1=1c004686 x2:1c009b80 PA:1c009b8c +75927905ns 1380036 1c0045c8 02842023 sw x8, 32(x8) x8:1c00b97c x8:1c00b97c PA:1c00b99c +75927924ns 1380037 1c0045ca 02f42823 sw x15, 48(x8) x15:1c004ce2 x8:1c00b97c PA:1c00b9ac +75927944ns 1380038 1c0045cc 00812403 lw x8, 8(x2) x8=1c009e10 x2:1c009b80 PA:1c009b88 +75927964ns 1380039 1c0045ce 01010113 addi x2, x2, 16 x2=1c009b90 x2:1c009b80 +75927984ns 1380040 1c0045d0 00008067 jalr x0, x1, 0 x1:1c004686 +75928023ns 1380042 1c004686 00100793 addi x15, x0, 1 x15=00000001 +75928043ns 1380043 1c004688 00c12083 lw x1, 12(x2) x1=1c003e10 x2:1c009b90 PA:1c009b9c +75928063ns 1380044 1c00468a 00f42c23 sw x15, 24(x8) x15:00000001 x8:1c009e10 PA:1c009e28 +75928083ns 1380045 1c00468c 00812403 lw x8, 8(x2) x8=00000000 x2:1c009b90 PA:1c009b98 +75928103ns 1380046 1c00468e 01010113 addi x2, x2, 16 x2=1c009ba0 x2:1c009b90 +75928122ns 1380047 1c004690 00008067 jalr x0, x1, 0 x1:1c003e10 +75928162ns 1380049 1c003e10 0184a783 lw x15, 24(x9) x15=00000001 x9:1c009e10 PA:1c009e28 +75928182ns 1380050 1c003e12 0084a403 lw x8, 8(x9) x8=1c00b914 x9:1c009e10 PA:1c009e18 +75928202ns 1380051 1c003e14 00079463 bne x15, x0, 8 x15:00000001 +75928261ns 1380054 1c003e1c 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +75928281ns 1380055 1c003e20 a1478793 addi x15, x15, -1516 x15=1c008a14 x15:1c009000 +75928301ns 1380056 1c003e24 02f41c63 bne x8, x15, 56 x8:1c00b914 x15:1c008a14 +75928360ns 1380059 1c003e5c 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +75928380ns 1380060 1c003e60 a3478793 addi x15, x15, -1484 x15=1c008a34 x15:1c009000 +75928399ns 1380061 1c003e64 00f41463 bne x8, x15, 8 x8:1c00b914 x15:1c008a34 +75928459ns 1380064 1c003e6c 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +75928479ns 1380065 1c003e70 9f478793 addi x15, x15, -1548 x15=1c0089f4 x15:1c009000 +75928498ns 1380066 1c003e74 faf41be3 bne x8, x15, -74 x8:1c00b914 x15:1c0089f4 +75928578ns 1380070 1c003e2a 00c45783 lhu x15, 12(x8) x15=00000009 x8:1c00b914 PA:1c00b920 +75928617ns 1380072 1c003e2e 0087f793 andi x15, x15, 8 x15=00000008 x15:00000009 +75928637ns 1380073 1c003e30 04078663 beq x15, x0, 76 x15:00000008 +75928657ns 1380074 1c003e32 01042783 lw x15, 16(x8) x15=00000000 x8:1c00b914 PA:1c00b924 +75928696ns 1380076 1c003e34 04078463 beq x15, x0, 72 x15:00000000 +75928756ns 1380079 1c003e7c 008005b3 add x11, x0, x8 x11=1c00b914 x8:1c00b914 +75928776ns 1380080 1c003e7e 00900533 add x10, x0, x9 x10=1c009e10 x9:1c009e10 +75928795ns 1380081 1c003e80 2ea000ef jal x1, 746 x1=1c003e82 +75928835ns 1380083 1c00416a ff010113 addi x2, x2, -16 x2=1c009b90 x2:1c009ba0 +75928855ns 1380084 1c00416c 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +75928874ns 1380085 1c004170 00912223 sw x9, 4(x2) x9:1c009e10 x2:1c009b90 PA:1c009b94 +75928894ns 1380086 1c004172 c447a483 lw x9, -956(x15) x9=1c009e10 x15:1c009000 PA:1c008c44 +75928914ns 1380087 1c004176 00812423 sw x8, 8(x2) x8:1c00b914 x2:1c009b90 PA:1c009b98 +75928934ns 1380088 1c004178 01212023 sw x18, 0(x2) x18:1c008894 x2:1c009b90 PA:1c009b90 +75928954ns 1380089 1c00417a 00112623 sw x1, 12(x2) x1:1c003e82 x2:1c009b90 PA:1c009b9c +75928973ns 1380090 1c00417c 00a00933 add x18, x0, x10 x18=1c009e10 x10:1c009e10 +75928993ns 1380091 1c00417e 00b00433 add x8, x0, x11 x8=1c00b914 x11:1c00b914 +75929013ns 1380092 1c004180 00048563 beq x9, x0, 10 x9:1c009e10 +75929033ns 1380093 1c004182 0184a783 lw x15, 24(x9) x15=00000001 x9:1c009e10 PA:1c009e28 +75929072ns 1380095 1c004184 00079363 bne x15, x0, 6 x15:00000001 +75929152ns 1380099 1c00418a 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +75929171ns 1380100 1c00418e a1478793 addi x15, x15, -1516 x15=1c008a14 x15:1c009000 +75929191ns 1380101 1c004192 02f41763 bne x8, x15, 46 x8:1c00b914 x15:1c008a14 +75929251ns 1380104 1c0041c0 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +75929270ns 1380105 1c0041c4 a3478793 addi x15, x15, -1484 x15=1c008a34 x15:1c009000 +75929290ns 1380106 1c0041c8 00f41463 bne x8, x15, 8 x8:1c00b914 x15:1c008a34 +75929349ns 1380109 1c0041d0 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +75929369ns 1380110 1c0041d4 9f478793 addi x15, x15, -1548 x15=1c0089f4 x15:1c009000 +75929389ns 1380111 1c0041d8 fcf410e3 bne x8, x15, -64 x8:1c00b914 x15:1c0089f4 +75929448ns 1380114 1c004198 00c41783 lh x15, 12(x8) x15=00000009 x8:1c00b914 PA:1c00b920 +75929488ns 1380116 1c00419c 01079713 slli x14, x15, 0x10 x14=00090000 x15:00000009 +75929508ns 1380117 1c0041a0 0087f693 andi x13, x15, 8 x13=00000008 x15:00000009 +75929528ns 1380118 1c0041a4 01075713 srli x14, x14, 0x10 x14=00000009 x14:00090000 +75929547ns 1380119 1c0041a6 06069a63 bne x13, x0, 116 x13:00000008 +75929607ns 1380122 1c00421a 01042783 lw x15, 16(x8) x15=00000000 x8:1c00b914 PA:1c00b924 +75929646ns 1380124 1c00421c 00079c63 bne x15, x0, 24 x15:00000000 +75929666ns 1380125 1c00421e 00c45783 lhu x15, 12(x8) x15=00000009 x8:1c00b914 PA:1c00b920 +75929686ns 1380126 1c004222 20000713 addi x14, x0, 512 x14=00000200 +75929706ns 1380127 1c004226 2807f793 andi x15, x15, 640 x15=00000000 x15:00000009 +75929726ns 1380128 1c00422a 00e78563 beq x15, x14, 10 x15:00000000 x14:00000200 +75929745ns 1380129 1c00422e 008005b3 add x11, x0, x8 x11=1c00b914 x8:1c00b914 +75929765ns 1380130 1c004230 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +75929785ns 1380131 1c004232 5c8000ef jal x1, 1480 x1=1c004234 +75929844ns 1380134 1c0047fa 00c5d783 lhu x15, 12(x11) x15=00000009 x11:1c00b914 PA:1c00b920 +75929864ns 1380135 1c0047fe fe010113 addi x2, x2, -32 x2=1c009b70 x2:1c009b90 +75929884ns 1380136 1c004800 00812c23 sw x8, 24(x2) x8:1c00b914 x2:1c009b70 PA:1c009b88 +75929904ns 1380137 1c004802 00112e23 sw x1, 28(x2) x1:1c004234 x2:1c009b70 PA:1c009b8c +75929923ns 1380138 1c004804 00912a23 sw x9, 20(x2) x9:1c009e10 x2:1c009b70 PA:1c009b84 +75929943ns 1380139 1c004806 01212823 sw x18, 16(x2) x18:1c009e10 x2:1c009b70 PA:1c009b80 +75929963ns 1380140 1c004808 0027f793 andi x15, x15, 2 x15=00000000 x15:00000009 +75929983ns 1380141 1c00480a 00b00433 add x8, x0, x11 x8=1c00b914 x11:1c00b914 +75930003ns 1380142 1c00480c 00078d63 beq x15, x0, 26 x15:00000000 +75930062ns 1380145 1c004826 00c10693 addi x13, x2, 12 x13=1c009b7c x2:1c009b70 +75930082ns 1380146 1c004828 00810613 addi x12, x2, 8 x12=1c009b78 x2:1c009b70 +75930102ns 1380147 1c00482a 00a00933 add x18, x0, x10 x18=1c009e10 x10:1c009e10 +75930121ns 1380148 1c00482c f75ff0ef jal x1, -140 x1=1c004830 +75930161ns 1380150 1c0047a0 f9010113 addi x2, x2, -112 x2=1c009b00 x2:1c009b70 +75930181ns 1380151 1c0047a2 07212023 sw x18, 96(x2) x18:1c009e10 x2:1c009b00 PA:1c009b60 +75930201ns 1380152 1c0047a4 00b00933 add x18, x0, x11 x18=1c00b914 x11:1c00b914 +75930220ns 1380153 1c0047a6 00e59583 lh x11, 14(x11) x11=00000001 x11:1c00b914 PA:1c00b922 +75930240ns 1380154 1c0047aa 06812423 sw x8, 104(x2) x8:1c00b914 x2:1c009b00 PA:1c009b68 +75930260ns 1380155 1c0047ac 06912223 sw x9, 100(x2) x9:1c009e10 x2:1c009b00 PA:1c009b64 +75930280ns 1380156 1c0047ae 06112623 sw x1, 108(x2) x1:1c004830 x2:1c009b00 PA:1c009b6c +75930299ns 1380157 1c0047b0 00c00433 add x8, x0, x12 x8=1c009b78 x12:1c009b78 +75930319ns 1380158 1c0047b2 00d004b3 add x9, x0, x13 x9=1c009b7c x13:1c009b7c +75930339ns 1380159 1c0047b4 0005dc63 bge x11, x0, 24 x11:00000001 +75930398ns 1380162 1c0047cc 00810613 addi x12, x2, 8 x12=1c009b08 x2:1c009b00 +75930418ns 1380163 1c0047ce 576000ef jal x1, 1398 x1=1c0047d0 +75930458ns 1380165 1c004d44 ff010113 addi x2, x2, -16 x2=1c009af0 x2:1c009b00 +75930478ns 1380166 1c004d46 00812423 sw x8, 8(x2) x8:1c009b78 x2:1c009af0 PA:1c009af8 +75930497ns 1380167 1c004d48 00912223 sw x9, 4(x2) x9:1c009b7c x2:1c009af0 PA:1c009af4 +75930517ns 1380168 1c004d4a 00a00433 add x8, x0, x10 x8=1c009e10 x10:1c009e10 +75930537ns 1380169 1c004d4c 00b00533 add x10, x0, x11 x10=00000001 x11:00000001 +75930557ns 1380170 1c004d4e 00c005b3 add x11, x0, x12 x11=1c009b08 x12:1c009b08 +75930577ns 1380171 1c004d50 00112623 sw x1, 12(x2) x1:1c0047d0 x2:1c009af0 PA:1c009afc +75930596ns 1380172 1c004d52 dc01a023 sw x0, -576(x3) x3:1c0093dc PA:1c00919c +75930616ns 1380173 1c004d56 c77fd0ef jal x1, -9098 x1=1c004d5a +75930656ns 1380175 1c0029cc 000027b7 lui x15, 0x2000 x15=00002000 +75930676ns 1380176 1c0029ce 00f5a223 sw x15, 4(x11) x15:00002000 x11:1c009b08 PA:1c009b0c +75930695ns 1380177 1c0029d0 00000513 addi x10, x0, 0 x10=00000000 +75930715ns 1380178 1c0029d2 00008067 jalr x0, x1, 0 x1:1c004d5a +75930755ns 1380180 1c004d5a fff00793 addi x15, x0, -1 x15=ffffffff +75930775ns 1380181 1c004d5c 00f51663 bne x10, x15, 12 x10:00000000 x15:ffffffff +75930834ns 1380184 1c004d68 00c12083 lw x1, 12(x2) x1=1c0047d0 x2:1c009af0 PA:1c009afc +75930854ns 1380185 1c004d6a 00812403 lw x8, 8(x2) x8=1c009b78 x2:1c009af0 PA:1c009af8 +75930873ns 1380186 1c004d6c 00412483 lw x9, 4(x2) x9=1c009b7c x2:1c009af0 PA:1c009af4 +75930893ns 1380187 1c004d6e 01010113 addi x2, x2, 16 x2=1c009b00 x2:1c009af0 +75930913ns 1380188 1c004d70 00008067 jalr x0, x1, 0 x1:1c0047d0 +75930953ns 1380190 1c0047d0 fe0544e3 blt x10, x0, -24 x10:00000000 +75930972ns 1380191 1c0047d4 00c12703 lw x14, 12(x2) x14=00002000 x2:1c009b00 PA:1c009b0c +75930992ns 1380192 1c0047d6 0000f7b7 lui x15, 0xf000 x15=0000f000 +75931012ns 1380193 1c0047d8 00e7f7b3 and x15, x15, x14 x15=00002000 x15:0000f000 x14:00002000 +75931032ns 1380194 1c0047da ffffe737 lui x14, 0xffffe000 x14=ffffe000 +75931052ns 1380195 1c0047dc 00e787b3 add x15, x15, x14 x15=00000000 x15:00002000 x14:ffffe000 +75931071ns 1380196 1c0047de 0017b793 sltiu x15, x15, 1 x15=00000001 x15:00000000 +75931091ns 1380197 1c0047e2 00f4a023 sw x15, 0(x9) x15:00000001 x9:1c009b7c PA:1c009b7c +75931111ns 1380198 1c0047e4 fe3ff06f jal x0, -30 +75931170ns 1380201 1c0047c6 40000793 addi x15, x0, 1024 x15=00000400 +75931190ns 1380202 1c0047ca 0200006f jal x0, 32 +75931230ns 1380204 1c0047ea 06c12083 lw x1, 108(x2) x1=1c004830 x2:1c009b00 PA:1c009b6c +75931250ns 1380205 1c0047ec 00f42023 sw x15, 0(x8) x15:00000400 x8:1c009b78 PA:1c009b78 +75931269ns 1380206 1c0047ee 06812403 lw x8, 104(x2) x8=1c00b914 x2:1c009b00 PA:1c009b68 +75931289ns 1380207 1c0047f0 06412483 lw x9, 100(x2) x9=1c009e10 x2:1c009b00 PA:1c009b64 +75931309ns 1380208 1c0047f2 06012903 lw x18, 96(x2) x18=1c009e10 x2:1c009b00 PA:1c009b60 +75931329ns 1380209 1c0047f4 00000513 addi x10, x0, 0 x10=00000000 +75931348ns 1380210 1c0047f6 07010113 addi x2, x2, 112 x2=1c009b70 x2:1c009b00 +75931368ns 1380211 1c0047f8 00008067 jalr x0, x1, 0 x1:1c004830 +75931408ns 1380213 1c004830 00812583 lw x11, 8(x2) x11=00000400 x2:1c009b70 PA:1c009b78 +75931428ns 1380214 1c004832 00a004b3 add x9, x0, x10 x9=00000000 x10:00000000 +75931447ns 1380215 1c004834 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +75931467ns 1380216 1c004836 992ff0ef jal x1, -3694 x1=1c00483a +75931507ns 1380218 1c0039c8 fe010113 addi x2, x2, -32 x2=1c009b50 x2:1c009b70 +75931527ns 1380219 1c0039ca 00912a23 sw x9, 20(x2) x9:00000000 x2:1c009b50 PA:1c009b64 +75931546ns 1380220 1c0039cc 00358493 addi x9, x11, 3 x9=00000403 x11:00000400 +75931566ns 1380221 1c0039d0 ffc4f493 andi x9, x9, -4 x9=00000400 x9:00000403 +75931586ns 1380222 1c0039d2 01212823 sw x18, 16(x2) x18:1c009e10 x2:1c009b50 PA:1c009b60 +75931606ns 1380223 1c0039d4 00112e23 sw x1, 28(x2) x1:1c00483a x2:1c009b50 PA:1c009b6c +75931626ns 1380224 1c0039d6 00812c23 sw x8, 24(x2) x8:1c00b914 x2:1c009b50 PA:1c009b68 +75931645ns 1380225 1c0039d8 01312623 sw x19, 12(x2) x19:a5a5a5a5 x2:1c009b50 PA:1c009b5c +75931665ns 1380226 1c0039da 00848493 addi x9, x9, 8 x9=00000408 x9:00000400 +75931685ns 1380227 1c0039dc 00c00793 addi x15, x0, 12 x15=0000000c +75931705ns 1380228 1c0039de 00a00933 add x18, x0, x10 x18=1c009e10 x10:1c009e10 +75931725ns 1380229 1c0039e0 04f4f363 bgeu x9, x15, 70 x9:00000408 x15:0000000c +75931804ns 1380233 1c003a26 fc04d0e3 bge x9, x0, -64 x9:00000408 +75931883ns 1380237 1c0039e6 04b4e263 bltu x9, x11, 68 x9:00000408 x11:00000400 +75931903ns 1380238 1c0039ea 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +75931922ns 1380239 1c0039ec 87aff0ef jal x1, -3974 x1=1c0039f0 +75931982ns 1380242 1c002a66 fb1fe06f jal x0, -4176 +75932041ns 1380245 1c001a16 d6818793 addi x15, x3, -664 x15=1c009144 x3:1c0093dc +75932061ns 1380246 1c001a1a 0007a703 lw x14, 0(x15) x14=00000000 x15:1c009144 PA:1c009144 +75932101ns 1380248 1c001a1c 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +75932120ns 1380249 1c001a1e 00e7a023 sw x14, 0(x15) x14:00000001 x15:1c009144 PA:1c009144 +75932140ns 1380250 1c001a20 00008067 jalr x0, x1, 0 x1:1c0039f0 +75932180ns 1380252 1c0039f0 db81a703 lw x14, -584(x3) x14=00000000 x3:1c0093dc PA:1c009194 +75932200ns 1380253 1c0039f4 db818693 addi x13, x3, -584 x13=1c009194 x3:1c0093dc +75932219ns 1380254 1c0039f8 00e00433 add x8, x0, x14 x8=00000000 x14:00000000 +75932239ns 1380255 1c0039fa 04041363 bne x8, x0, 70 x8:00000000 +75932259ns 1380256 1c0039fc dbc18413 addi x8, x3, -580 x8=1c009198 x3:1c0093dc +75932279ns 1380257 1c003a00 00042783 lw x15, 0(x8) x15=1c0091b0 x8:1c009198 PA:1c009198 +75932318ns 1380259 1c003a02 00079563 bne x15, x0, 10 x15:1c0091b0 +75932378ns 1380262 1c003a0c 009005b3 add x11, x0, x9 x11=00000408 x9:00000408 +75932397ns 1380263 1c003a0e 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +75932417ns 1380264 1c003a10 5cc000ef jal x1, 1484 x1=1c003a12 +75932457ns 1380266 1c003fdc ff010113 addi x2, x2, -16 x2=1c009b40 x2:1c009b50 +75932477ns 1380267 1c003fde 00812423 sw x8, 8(x2) x8:1c009198 x2:1c009b40 PA:1c009b48 +75932496ns 1380268 1c003fe0 00912223 sw x9, 4(x2) x9:00000408 x2:1c009b40 PA:1c009b44 +75932516ns 1380269 1c003fe2 00a00433 add x8, x0, x10 x8=1c009e10 x10:1c009e10 +75932536ns 1380270 1c003fe4 00b00533 add x10, x0, x11 x10=00000408 x11:00000408 +75932556ns 1380271 1c003fe6 00112623 sw x1, 12(x2) x1:1c003a12 x2:1c009b40 PA:1c009b4c +75932576ns 1380272 1c003fe8 dc01a023 sw x0, -576(x3) x3:1c0093dc PA:1c00919c +75932595ns 1380273 1c003fec a53fe0ef jal x1, -5550 x1=1c003ff0 +75932655ns 1380276 1c002a3e 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +75932675ns 1380277 1c002a42 c3c78793 addi x15, x15, -964 x15=1c008c3c x15:1c009000 +75932694ns 1380278 1c002a46 00a00733 add x14, x0, x10 x14=00000408 x10:00000408 +75932714ns 1380279 1c002a48 0007a503 lw x10, 0(x15) x10=1c00bab4 x15:1c008c3c PA:1c008c3c +75932734ns 1380280 1c002a4a 1c0196b7 lui x13, 0x1c019000 x13=1c019000 +75932754ns 1380281 1c002a4e 1b068693 addi x13, x13, 432 x13=1c0191b0 x13:1c019000 +75932773ns 1380282 1c002a52 00a70733 add x14, x14, x10 x14=1c00bebc x14:00000408 x10:1c00bab4 +75932793ns 1380283 1c002a54 00d76763 bltu x14, x13, 14 x14:1c00bebc x13:1c0191b0 +75932853ns 1380286 1c002a62 00e7a023 sw x14, 0(x15) x14:1c00bebc x15:1c008c3c PA:1c008c3c +75932872ns 1380287 1c002a64 00008067 jalr x0, x1, 0 x1:1c003ff0 +75932912ns 1380289 1c003ff0 fff00793 addi x15, x0, -1 x15=ffffffff +75932932ns 1380290 1c003ff2 00f51663 bne x10, x15, 12 x10:1c00bab4 x15:ffffffff +75932991ns 1380293 1c003ffe 00c12083 lw x1, 12(x2) x1=1c003a12 x2:1c009b40 PA:1c009b4c +75933011ns 1380294 1c004000 00812403 lw x8, 8(x2) x8=1c009198 x2:1c009b40 PA:1c009b48 +75933031ns 1380295 1c004002 00412483 lw x9, 4(x2) x9=00000408 x2:1c009b40 PA:1c009b44 +75933051ns 1380296 1c004004 01010113 addi x2, x2, 16 x2=1c009b50 x2:1c009b40 +75933070ns 1380297 1c004006 00008067 jalr x0, x1, 0 x1:1c003a12 +75933110ns 1380299 1c003a12 fff00993 addi x19, x0, -1 x19=ffffffff +75933130ns 1380300 1c003a14 07351a63 bne x10, x19, 116 x10:1c00bab4 x19:ffffffff +75933189ns 1380303 1c003a88 00350413 addi x8, x10, 3 x8=1c00bab7 x10:1c00bab4 +75933209ns 1380304 1c003a8c ffc47413 andi x8, x8, -4 x8=1c00bab4 x8:1c00bab7 +75933229ns 1380305 1c003a8e fc8502e3 beq x10, x8, -60 x10:1c00bab4 x8:1c00bab4 +75933288ns 1380308 1c003a52 00942023 sw x9, 0(x8) x9:00000408 x8:1c00bab4 PA:1c00bab4 +75933308ns 1380309 1c003a54 00a0006f jal x0, 10 +75933347ns 1380311 1c003a5e 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +75933367ns 1380312 1c003a60 80aff0ef jal x1, -4086 x1=1c003a64 +75933427ns 1380315 1c002a6a 8e3ff06f jal x0, -1822 +75933466ns 1380317 1c00234c fc010113 addi x2, x2, -64 x2=1c009b10 x2:1c009b50 +75933486ns 1380318 1c00234e 02812c23 sw x8, 56(x2) x8:1c00bab4 x2:1c009b10 PA:1c009b48 +75933506ns 1380319 1c002350 d6818413 addi x8, x3, -664 x8=1c009144 x3:1c0093dc +75933526ns 1380320 1c002354 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +75933545ns 1380321 1c002356 02112e23 sw x1, 60(x2) x1:1c003a64 x2:1c009b10 PA:1c009b4c +75933565ns 1380322 1c002358 02912a23 sw x9, 52(x2) x9:00000408 x2:1c009b10 PA:1c009b44 +75933585ns 1380323 1c00235a 03212823 sw x18, 48(x2) x18:1c009e10 x2:1c009b10 PA:1c009b40 +75933605ns 1380324 1c00235c 03312623 sw x19, 44(x2) x19:ffffffff x2:1c009b10 PA:1c009b3c +75933625ns 1380325 1c00235e 03412423 sw x20, 40(x2) x20:a5a5a5a5 x2:1c009b10 PA:1c009b38 +75933644ns 1380326 1c002360 03512223 sw x21, 36(x2) x21:a5a5a5a5 x2:1c009b10 PA:1c009b34 +75933664ns 1380327 1c002362 03612023 sw x22, 32(x2) x22:a5a5a5a5 x2:1c009b10 PA:1c009b30 +75933684ns 1380328 1c002364 01712e23 sw x23, 28(x2) x23:a5a5a5a5 x2:1c009b10 PA:1c009b2c +75933704ns 1380329 1c002366 02079263 bne x15, x0, 36 x15:00000001 +75933783ns 1380333 1c00238a c83ff0ef jal x1, -894 x1=1c00238e +75933822ns 1380335 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +75933902ns 1380339 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +75933941ns 1380341 1c002014 00078863 beq x15, x0, 16 x15:00000001 +75933961ns 1380342 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +75933981ns 1380343 1c00201a 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +75934001ns 1380344 1c00201c 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +75934020ns 1380345 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c009db8 PA:1c009dfc +75934060ns 1380347 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +75934080ns 1380348 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c009db8 PA:1c009dfc +75934100ns 1380349 1c002024 00008067 jalr x0, x1, 0 x1:1c00238e +75934139ns 1380351 1c00238e 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +75934179ns 1380353 1c002390 fff78793 addi x15, x15, -1 x15=00000000 x15:00000001 +75934199ns 1380354 1c002392 00f42023 sw x15, 0(x8) x15:00000000 x8:1c009144 PA:1c009144 +75934218ns 1380355 1c002394 00042783 lw x15, 0(x8) x15=00000000 x8:1c009144 PA:1c009144 +75934258ns 1380357 1c002396 02078163 beq x15, x0, 34 x15:00000000 +75934317ns 1380360 1c0023b8 d601a783 lw x15, -672(x3) x15=00000003 x3:1c0093dc PA:1c00913c +75934357ns 1380362 1c0023bc fc078ee3 beq x15, x0, -36 x15:00000003 +75934377ns 1380363 1c0023be 1c009937 lui x18, 0x1c009000 x18=1c009000 +75934396ns 1380364 1c0023c2 00000413 addi x8, x0, 0 x8=00000000 +75934416ns 1380365 1c0023c4 93818493 addi x9, x3, -1736 x9=1c008d14 x3:1c0093dc +75934436ns 1380366 1c0023c8 00100993 addi x19, x0, 1 x19=00000001 +75934456ns 1380367 1c0023ca c8890913 addi x18, x18, -888 x18=1c008c88 x18:1c009000 +75934476ns 1380368 1c0023ce 01400a93 addi x21, x0, 20 x21=00000014 +75934495ns 1380369 1c0023d0 04c0006f jal x0, 76 +75934535ns 1380371 1c00241c 0004a783 lw x15, 0(x9) x15=00000000 x9:1c008d14 PA:1c008d14 +75934575ns 1380373 1c00241e fa079ae3 bne x15, x0, -76 x15:00000000 +75934594ns 1380374 1c002420 00040363 beq x8, x0, 6 x8:00000000 +75934674ns 1380378 1c002426 d8018713 addi x14, x3, -640 x14=1c00915c x3:1c0093dc +75934693ns 1380379 1c00242a 00072483 lw x9, 0(x14) x9=00000000 x14:1c00915c PA:1c00915c +75934713ns 1380380 1c00242c d8018413 addi x8, x3, -640 x8=1c00915c x3:1c0093dc +75934733ns 1380381 1c002430 00048d63 beq x9, x0, 26 x9:00000000 +75934812ns 1380385 1c00244a d8c1a783 lw x15, -628(x3) x15=00000000 x3:1c0093dc PA:1c009168 +75934852ns 1380387 1c00244e f40785e3 beq x15, x0, -182 x15:00000000 +75934911ns 1380390 1c002398 00000513 addi x10, x0, 0 x10=00000000 +75934931ns 1380391 1c00239a 00a12623 sw x10, 12(x2) x10:00000000 x2:1c009b10 PA:1c009b1c +75934951ns 1380392 1c00239c c8bff0ef jal x1, -886 x1=1c0023a0 +75935010ns 1380395 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +75935050ns 1380397 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +75935069ns 1380398 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +75935089ns 1380399 1c002030 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +75935129ns 1380401 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c009db8 PA:1c009dfc +75935168ns 1380403 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +75935188ns 1380404 1c002036 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +75935208ns 1380405 1c002038 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +75935228ns 1380406 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c009db8 PA:1c009dfc +75935267ns 1380408 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +75935287ns 1380409 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c009db8 PA:1c009dfc +75935307ns 1380410 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c009db8 PA:1c009dfc +75935346ns 1380412 1c002042 00079363 bne x15, x0, 6 x15:00000000 +75935366ns 1380413 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +75935445ns 1380417 1c002048 00008067 jalr x0, x1, 0 x1:1c0023a0 +75935485ns 1380419 1c0023a0 03c12083 lw x1, 60(x2) x1=1c003a64 x2:1c009b10 PA:1c009b4c +75935505ns 1380420 1c0023a2 03812403 lw x8, 56(x2) x8=1c00bab4 x2:1c009b10 PA:1c009b48 +75935525ns 1380421 1c0023a4 00c12503 lw x10, 12(x2) x10=00000000 x2:1c009b10 PA:1c009b1c +75935544ns 1380422 1c0023a6 03412483 lw x9, 52(x2) x9=00000408 x2:1c009b10 PA:1c009b44 +75935564ns 1380423 1c0023a8 03012903 lw x18, 48(x2) x18=1c009e10 x2:1c009b10 PA:1c009b40 +75935584ns 1380424 1c0023aa 02c12983 lw x19, 44(x2) x19=ffffffff x2:1c009b10 PA:1c009b3c +75935604ns 1380425 1c0023ac 02812a03 lw x20, 40(x2) x20=a5a5a5a5 x2:1c009b10 PA:1c009b38 +75935624ns 1380426 1c0023ae 02412a83 lw x21, 36(x2) x21=a5a5a5a5 x2:1c009b10 PA:1c009b34 +75935643ns 1380427 1c0023b0 02012b03 lw x22, 32(x2) x22=a5a5a5a5 x2:1c009b10 PA:1c009b30 +75935663ns 1380428 1c0023b2 01c12b83 lw x23, 28(x2) x23=a5a5a5a5 x2:1c009b10 PA:1c009b2c +75935683ns 1380429 1c0023b4 04010113 addi x2, x2, 64 x2=1c009b50 x2:1c009b10 +75935703ns 1380430 1c0023b6 00008067 jalr x0, x1, 0 x1:1c003a64 +75935742ns 1380432 1c003a64 00b40513 addi x10, x8, 11 x10=1c00babf x8:1c00bab4 +75935762ns 1380433 1c003a68 00440793 addi x15, x8, 4 x15=1c00bab8 x8:1c00bab4 +75935782ns 1380434 1c003a6c ff857513 andi x10, x10, -8 x10=1c00bab8 x10:1c00babf +75935802ns 1380435 1c003a6e 40f50733 sub x14, x10, x15 x14=00000000 x10:1c00bab8 x15:1c00bab8 +75935821ns 1380436 1c003a72 fcf500e3 beq x10, x15, -64 x10:1c00bab8 x15:1c00bab8 +75935881ns 1380439 1c003a32 01c12083 lw x1, 28(x2) x1=1c00483a x2:1c009b50 PA:1c009b6c +75935901ns 1380440 1c003a34 01812403 lw x8, 24(x2) x8=1c00b914 x2:1c009b50 PA:1c009b68 +75935920ns 1380441 1c003a36 01412483 lw x9, 20(x2) x9=00000000 x2:1c009b50 PA:1c009b64 +75935940ns 1380442 1c003a38 01012903 lw x18, 16(x2) x18=1c009e10 x2:1c009b50 PA:1c009b60 +75935960ns 1380443 1c003a3a 00c12983 lw x19, 12(x2) x19=a5a5a5a5 x2:1c009b50 PA:1c009b5c +75935980ns 1380444 1c003a3c 02010113 addi x2, x2, 32 x2=1c009b70 x2:1c009b50 +75936000ns 1380445 1c003a3e 00008067 jalr x0, x1, 0 x1:1c00483a +75936039ns 1380447 1c00483a 00051c63 bne x10, x0, 24 x10:1c00bab8 +75936118ns 1380451 1c004852 1c0047b7 lui x15, 0x1c004000 x15=1c004000 +75936138ns 1380452 1c004856 5d278793 addi x15, x15, 1490 x15=1c0045d2 x15:1c004000 +75936158ns 1380453 1c00485a 02f92423 sw x15, 40(x18) x15:1c0045d2 x18:1c009e10 PA:1c009e38 +75936178ns 1380454 1c00485e 00c45783 lhu x15, 12(x8) x15=00000009 x8:1c00b914 PA:1c00b920 +75936198ns 1380455 1c004862 00a42023 sw x10, 0(x8) x10:1c00bab8 x8:1c00b914 PA:1c00b914 +75936217ns 1380456 1c004864 00a42823 sw x10, 16(x8) x10:1c00bab8 x8:1c00b914 PA:1c00b924 +75936237ns 1380457 1c004866 0807e793 ori x15, x15, 128 x15=00000089 x15:00000009 +75936257ns 1380458 1c00486a 00f41623 sh x15, 12(x8) x15:00000089 x8:1c00b914 PA:1c00b920 +75936277ns 1380459 1c00486e 00812783 lw x15, 8(x2) x15=00000400 x2:1c009b70 PA:1c009b78 +75936316ns 1380461 1c004870 00f42a23 sw x15, 20(x8) x15:00000400 x8:1c00b914 PA:1c00b928 +75936336ns 1380462 1c004872 00c12783 lw x15, 12(x2) x15=00000001 x2:1c009b70 PA:1c009b7c +75936376ns 1380464 1c004874 00078d63 beq x15, x0, 26 x15:00000001 +75936395ns 1380465 1c004876 00e41583 lh x11, 14(x8) x11=00000001 x8:1c00b914 PA:1c00b922 +75936415ns 1380466 1c00487a 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +75936435ns 1380467 1c00487c 4f6000ef jal x1, 1270 x1=1c00487e +75936475ns 1380469 1c004d72 ff010113 addi x2, x2, -16 x2=1c009b60 x2:1c009b70 +75936494ns 1380470 1c004d74 00812423 sw x8, 8(x2) x8:1c00b914 x2:1c009b60 PA:1c009b68 +75936514ns 1380471 1c004d76 00912223 sw x9, 4(x2) x9:00000000 x2:1c009b60 PA:1c009b64 +75936534ns 1380472 1c004d78 00a00433 add x8, x0, x10 x8=1c009e10 x10:1c009e10 +75936554ns 1380473 1c004d7a 00b00533 add x10, x0, x11 x10=00000001 x11:00000001 +75936574ns 1380474 1c004d7c 00112623 sw x1, 12(x2) x1:1c00487e x2:1c009b60 PA:1c009b6c +75936593ns 1380475 1c004d7e dc01a023 sw x0, -576(x3) x3:1c0093dc PA:1c00919c +75936613ns 1380476 1c004d82 c57fd0ef jal x1, -9130 x1=1c004d86 +75936653ns 1380478 1c0029d8 fff50513 addi x10, x10, -1 x10=00000000 x10:00000001 +75936673ns 1380479 1c0029da 00153513 sltiu x10, x10, 1 x10=00000001 x10:00000000 +75936692ns 1380480 1c0029de 00008067 jalr x0, x1, 0 x1:1c004d86 +75936732ns 1380482 1c004d86 fff00793 addi x15, x0, -1 x15=ffffffff +75936752ns 1380483 1c004d88 00f51663 bne x10, x15, 12 x10:00000001 x15:ffffffff +75936811ns 1380486 1c004d94 00c12083 lw x1, 12(x2) x1=1c00487e x2:1c009b60 PA:1c009b6c +75936831ns 1380487 1c004d96 00812403 lw x8, 8(x2) x8=1c00b914 x2:1c009b60 PA:1c009b68 +75936851ns 1380488 1c004d98 00412483 lw x9, 4(x2) x9=00000000 x2:1c009b60 PA:1c009b64 +75936870ns 1380489 1c004d9a 01010113 addi x2, x2, 16 x2=1c009b70 x2:1c009b60 +75936890ns 1380490 1c004d9c 00008067 jalr x0, x1, 0 x1:1c00487e +75936930ns 1380492 1c00487e 00050863 beq x10, x0, 16 x10:00000001 +75936950ns 1380493 1c004880 00c45783 lhu x15, 12(x8) x15=00000089 x8:1c00b914 PA:1c00b920 +75936989ns 1380495 1c004884 ffc7f793 andi x15, x15, -4 x15=00000088 x15:00000089 +75937009ns 1380496 1c004886 0017e793 ori x15, x15, 1 x15=00000089 x15:00000088 +75937029ns 1380497 1c00488a 00f41623 sh x15, 12(x8) x15:00000089 x8:1c00b914 PA:1c00b920 +75937049ns 1380498 1c00488e 00c45503 lhu x10, 12(x8) x10=00000089 x8:1c00b914 PA:1c00b920 +75937088ns 1380500 1c004892 00a4e4b3 or x9, x9, x10 x9=00000089 x9:00000000 x10:00000089 +75937108ns 1380501 1c004894 00941623 sh x9, 12(x8) x9:00000089 x8:1c00b914 PA:1c00b920 +75937128ns 1380502 1c004898 f83ff06f jal x0, -126 +75937167ns 1380504 1c00481a 01c12083 lw x1, 28(x2) x1=1c004234 x2:1c009b70 PA:1c009b8c +75937187ns 1380505 1c00481c 01812403 lw x8, 24(x2) x8=1c00b914 x2:1c009b70 PA:1c009b88 +75937207ns 1380506 1c00481e 01412483 lw x9, 20(x2) x9=1c009e10 x2:1c009b70 PA:1c009b84 +75937227ns 1380507 1c004820 01012903 lw x18, 16(x2) x18=1c009e10 x2:1c009b70 PA:1c009b80 +75937246ns 1380508 1c004822 02010113 addi x2, x2, 32 x2=1c009b90 x2:1c009b70 +75937266ns 1380509 1c004824 00008067 jalr x0, x1, 0 x1:1c004234 +75937306ns 1380511 1c004234 00c41783 lh x15, 12(x8) x15=00000089 x8:1c00b914 PA:1c00b920 +75937345ns 1380513 1c004238 01079713 slli x14, x15, 0x10 x14=00890000 x15:00000089 +75937365ns 1380514 1c00423c 0017f693 andi x13, x15, 1 x13=00000001 x15:00000089 +75937385ns 1380515 1c004240 01075713 srli x14, x14, 0x10 x14=00000089 x14:00890000 +75937405ns 1380516 1c004242 02068363 beq x13, x0, 38 x13:00000001 +75937425ns 1380517 1c004244 01442683 lw x13, 20(x8) x13=00000400 x8:1c00b914 PA:1c00b928 +75937444ns 1380518 1c004246 00042423 sw x0, 8(x8) x8:1c00b914 PA:1c00b91c +75937464ns 1380519 1c00424a 40d006b3 sub x13, x0, x13 x13=fffffc00 x13:00000400 +75937484ns 1380520 1c00424e 00d42c23 sw x13, 24(x8) x13:fffffc00 x8:1c00b914 PA:1c00b92c +75937504ns 1380521 1c004250 01042683 lw x13, 16(x8) x13=1c00bab8 x8:1c00b914 PA:1c00b924 +75937524ns 1380522 1c004252 00000513 addi x10, x0, 0 x10=00000000 +75937543ns 1380523 1c004254 00069463 bne x13, x0, 8 x13:1c00bab8 +75937603ns 1380526 1c00425c 00c12083 lw x1, 12(x2) x1=1c003e82 x2:1c009b90 PA:1c009b9c +75937623ns 1380527 1c00425e 00812403 lw x8, 8(x2) x8=1c00b914 x2:1c009b90 PA:1c009b98 +75937642ns 1380528 1c004260 00412483 lw x9, 4(x2) x9=1c009e10 x2:1c009b90 PA:1c009b94 +75937662ns 1380529 1c004262 00012903 lw x18, 0(x2) x18=1c008894 x2:1c009b90 PA:1c009b90 +75937682ns 1380530 1c004264 01010113 addi x2, x2, 16 x2=1c009ba0 x2:1c009b90 +75937702ns 1380531 1c004266 00008067 jalr x0, x1, 0 x1:1c003e82 +75937741ns 1380533 1c003e82 fa050ae3 beq x10, x0, -76 x10:00000000 +75937801ns 1380536 1c003e36 fff00993 addi x19, x0, -1 x19=ffffffff +75937820ns 1380537 1c003e38 00a00a13 addi x20, x0, 10 x20=0000000a +75937840ns 1380538 1c003e3a 00842783 lw x15, 8(x8) x15=00000000 x8:1c00b914 PA:1c00b91c +75937860ns 1380539 1c003e3c 00094583 lbu x11, 0(x18) x11=0000006d x18:1c008894 PA:1c008894 +75937880ns 1380540 1c003e40 fff78793 addi x15, x15, -1 x15=ffffffff x15:00000000 +75937900ns 1380541 1c003e42 04059a63 bne x11, x0, 84 x11:0000006d +75937959ns 1380544 1c003e96 00f42423 sw x15, 8(x8) x15:ffffffff x8:1c00b914 PA:1c00b91c +75937979ns 1380545 1c003e98 00190913 addi x18, x18, 1 x18=1c008895 x18:1c008894 +75937999ns 1380546 1c003e9a 0007d763 bge x15, x0, 14 x15:ffffffff +75938018ns 1380547 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +75938058ns 1380549 1c003ea0 00e7cb63 blt x15, x14, 22 x15:ffffffff x14:fffffc00 +75938078ns 1380550 1c003ea4 01458963 beq x11, x20, 18 x11:0000006d x20:0000000a +75938098ns 1380551 1c003ea8 00042783 lw x15, 0(x8) x15=1c00bab8 x8:1c00b914 PA:1c00b914 +75938137ns 1380553 1c003eaa 00178713 addi x14, x15, 1 x14=1c00bab9 x15:1c00bab8 +75938157ns 1380554 1c003eae 00e42023 sw x14, 0(x8) x14:1c00bab9 x8:1c00b914 PA:1c00b914 +75938177ns 1380555 1c003eb0 00b78023 sb x11, 0(x15) x11:0000006d x15:1c00bab8 PA:1c00bab8 +75938197ns 1380556 1c003eb4 f87ff06f jal x0, -122 +75938236ns 1380558 1c003e3a 00842783 lw x15, 8(x8) x15=ffffffff x8:1c00b914 PA:1c00b91c +75938256ns 1380559 1c003e3c 00094583 lbu x11, 0(x18) x11=00000061 x18:1c008895 PA:1c008895 +75938276ns 1380560 1c003e40 fff78793 addi x15, x15, -1 x15=fffffffe x15:ffffffff +75938295ns 1380561 1c003e42 04059a63 bne x11, x0, 84 x11:00000061 +75938355ns 1380564 1c003e96 00f42423 sw x15, 8(x8) x15:fffffffe x8:1c00b914 PA:1c00b91c +75938375ns 1380565 1c003e98 00190913 addi x18, x18, 1 x18=1c008896 x18:1c008895 +75938394ns 1380566 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffffe +75938414ns 1380567 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +75938454ns 1380569 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffffe x14:fffffc00 +75938474ns 1380570 1c003ea4 01458963 beq x11, x20, 18 x11:00000061 x20:0000000a +75938493ns 1380571 1c003ea8 00042783 lw x15, 0(x8) x15=1c00bab9 x8:1c00b914 PA:1c00b914 +75938533ns 1380573 1c003eaa 00178713 addi x14, x15, 1 x14=1c00baba x15:1c00bab9 +75938553ns 1380574 1c003eae 00e42023 sw x14, 0(x8) x14:1c00baba x8:1c00b914 PA:1c00b914 +75938573ns 1380575 1c003eb0 00b78023 sb x11, 0(x15) x11:00000061 x15:1c00bab9 PA:1c00bab9 +75938592ns 1380576 1c003eb4 f87ff06f jal x0, -122 +75938632ns 1380578 1c003e3a 00842783 lw x15, 8(x8) x15=fffffffe x8:1c00b914 PA:1c00b91c +75938652ns 1380579 1c003e3c 00094583 lbu x11, 0(x18) x11=0000006c x18:1c008896 PA:1c008896 +75938672ns 1380580 1c003e40 fff78793 addi x15, x15, -1 x15=fffffffd x15:fffffffe +75938691ns 1380581 1c003e42 04059a63 bne x11, x0, 84 x11:0000006c +75938751ns 1380584 1c003e96 00f42423 sw x15, 8(x8) x15:fffffffd x8:1c00b914 PA:1c00b91c +75938770ns 1380585 1c003e98 00190913 addi x18, x18, 1 x18=1c008897 x18:1c008896 +75938790ns 1380586 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffffd +75938810ns 1380587 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +75938850ns 1380589 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffffd x14:fffffc00 +75938869ns 1380590 1c003ea4 01458963 beq x11, x20, 18 x11:0000006c x20:0000000a +75938889ns 1380591 1c003ea8 00042783 lw x15, 0(x8) x15=1c00baba x8:1c00b914 PA:1c00b914 +75938929ns 1380593 1c003eaa 00178713 addi x14, x15, 1 x14=1c00babb x15:1c00baba +75938949ns 1380594 1c003eae 00e42023 sw x14, 0(x8) x14:1c00babb x8:1c00b914 PA:1c00b914 +75938968ns 1380595 1c003eb0 00b78023 sb x11, 0(x15) x11:0000006c x15:1c00baba PA:1c00baba +75938988ns 1380596 1c003eb4 f87ff06f jal x0, -122 +75939028ns 1380598 1c003e3a 00842783 lw x15, 8(x8) x15=fffffffd x8:1c00b914 PA:1c00b91c +75939048ns 1380599 1c003e3c 00094583 lbu x11, 0(x18) x11=0000006c x18:1c008897 PA:1c008897 +75939067ns 1380600 1c003e40 fff78793 addi x15, x15, -1 x15=fffffffc x15:fffffffd +75939087ns 1380601 1c003e42 04059a63 bne x11, x0, 84 x11:0000006c +75939147ns 1380604 1c003e96 00f42423 sw x15, 8(x8) x15:fffffffc x8:1c00b914 PA:1c00b91c +75939166ns 1380605 1c003e98 00190913 addi x18, x18, 1 x18=1c008898 x18:1c008897 +75939186ns 1380606 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffffc +75939206ns 1380607 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +75939245ns 1380609 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffffc x14:fffffc00 +75939265ns 1380610 1c003ea4 01458963 beq x11, x20, 18 x11:0000006c x20:0000000a +75939285ns 1380611 1c003ea8 00042783 lw x15, 0(x8) x15=1c00babb x8:1c00b914 PA:1c00b914 +75939325ns 1380613 1c003eaa 00178713 addi x14, x15, 1 x14=1c00babc x15:1c00babb +75939344ns 1380614 1c003eae 00e42023 sw x14, 0(x8) x14:1c00babc x8:1c00b914 PA:1c00b914 +75939364ns 1380615 1c003eb0 00b78023 sb x11, 0(x15) x11:0000006c x15:1c00babb PA:1c00babb +75939384ns 1380616 1c003eb4 f87ff06f jal x0, -122 +75939424ns 1380618 1c003e3a 00842783 lw x15, 8(x8) x15=fffffffc x8:1c00b914 PA:1c00b91c +75939443ns 1380619 1c003e3c 00094583 lbu x11, 0(x18) x11=0000006f x18:1c008898 PA:1c008898 +75939463ns 1380620 1c003e40 fff78793 addi x15, x15, -1 x15=fffffffb x15:fffffffc +75939483ns 1380621 1c003e42 04059a63 bne x11, x0, 84 x11:0000006f +75939542ns 1380624 1c003e96 00f42423 sw x15, 8(x8) x15:fffffffb x8:1c00b914 PA:1c00b91c +75939562ns 1380625 1c003e98 00190913 addi x18, x18, 1 x18=1c008899 x18:1c008898 +75939582ns 1380626 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffffb +75939602ns 1380627 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +75939641ns 1380629 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffffb x14:fffffc00 +75939661ns 1380630 1c003ea4 01458963 beq x11, x20, 18 x11:0000006f x20:0000000a +75939681ns 1380631 1c003ea8 00042783 lw x15, 0(x8) x15=1c00babc x8:1c00b914 PA:1c00b914 +75939720ns 1380633 1c003eaa 00178713 addi x14, x15, 1 x14=1c00babd x15:1c00babc +75939740ns 1380634 1c003eae 00e42023 sw x14, 0(x8) x14:1c00babd x8:1c00b914 PA:1c00b914 +75939760ns 1380635 1c003eb0 00b78023 sb x11, 0(x15) x11:0000006f x15:1c00babc PA:1c00babc +75939780ns 1380636 1c003eb4 f87ff06f jal x0, -122 +75939819ns 1380638 1c003e3a 00842783 lw x15, 8(x8) x15=fffffffb x8:1c00b914 PA:1c00b91c +75939839ns 1380639 1c003e3c 00094583 lbu x11, 0(x18) x11=00000063 x18:1c008899 PA:1c008899 +75939859ns 1380640 1c003e40 fff78793 addi x15, x15, -1 x15=fffffffa x15:fffffffb +75939879ns 1380641 1c003e42 04059a63 bne x11, x0, 84 x11:00000063 +75939938ns 1380644 1c003e96 00f42423 sw x15, 8(x8) x15:fffffffa x8:1c00b914 PA:1c00b91c +75939958ns 1380645 1c003e98 00190913 addi x18, x18, 1 x18=1c00889a x18:1c008899 +75939978ns 1380646 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffffa +75939998ns 1380647 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +75940037ns 1380649 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffffa x14:fffffc00 +75940057ns 1380650 1c003ea4 01458963 beq x11, x20, 18 x11:00000063 x20:0000000a +75940077ns 1380651 1c003ea8 00042783 lw x15, 0(x8) x15=1c00babd x8:1c00b914 PA:1c00b914 +75940116ns 1380653 1c003eaa 00178713 addi x14, x15, 1 x14=1c00babe x15:1c00babd +75940136ns 1380654 1c003eae 00e42023 sw x14, 0(x8) x14:1c00babe x8:1c00b914 PA:1c00b914 +75940156ns 1380655 1c003eb0 00b78023 sb x11, 0(x15) x11:00000063 x15:1c00babd PA:1c00babd +75940176ns 1380656 1c003eb4 f87ff06f jal x0, -122 +75940215ns 1380658 1c003e3a 00842783 lw x15, 8(x8) x15=fffffffa x8:1c00b914 PA:1c00b91c +75940235ns 1380659 1c003e3c 00094583 lbu x11, 0(x18) x11=00000020 x18:1c00889a PA:1c00889a +75940255ns 1380660 1c003e40 fff78793 addi x15, x15, -1 x15=fffffff9 x15:fffffffa +75940275ns 1380661 1c003e42 04059a63 bne x11, x0, 84 x11:00000020 +75940334ns 1380664 1c003e96 00f42423 sw x15, 8(x8) x15:fffffff9 x8:1c00b914 PA:1c00b91c +75940354ns 1380665 1c003e98 00190913 addi x18, x18, 1 x18=1c00889b x18:1c00889a +75940374ns 1380666 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffff9 +75940393ns 1380667 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +75940433ns 1380669 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffff9 x14:fffffc00 +75940453ns 1380670 1c003ea4 01458963 beq x11, x20, 18 x11:00000020 x20:0000000a +75940473ns 1380671 1c003ea8 00042783 lw x15, 0(x8) x15=1c00babe x8:1c00b914 PA:1c00b914 +75940512ns 1380673 1c003eaa 00178713 addi x14, x15, 1 x14=1c00babf x15:1c00babe +75940532ns 1380674 1c003eae 00e42023 sw x14, 0(x8) x14:1c00babf x8:1c00b914 PA:1c00b914 +75940552ns 1380675 1c003eb0 00b78023 sb x11, 0(x15) x11:00000020 x15:1c00babe PA:1c00babe +75940572ns 1380676 1c003eb4 f87ff06f jal x0, -122 +75940611ns 1380678 1c003e3a 00842783 lw x15, 8(x8) x15=fffffff9 x8:1c00b914 PA:1c00b91c +75940631ns 1380679 1c003e3c 00094583 lbu x11, 0(x18) x11=00000074 x18:1c00889b PA:1c00889b +75940651ns 1380680 1c003e40 fff78793 addi x15, x15, -1 x15=fffffff8 x15:fffffff9 +75940671ns 1380681 1c003e42 04059a63 bne x11, x0, 84 x11:00000074 +75940730ns 1380684 1c003e96 00f42423 sw x15, 8(x8) x15:fffffff8 x8:1c00b914 PA:1c00b91c +75940750ns 1380685 1c003e98 00190913 addi x18, x18, 1 x18=1c00889c x18:1c00889b +75940769ns 1380686 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffff8 +75940789ns 1380687 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +75940829ns 1380689 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffff8 x14:fffffc00 +75940849ns 1380690 1c003ea4 01458963 beq x11, x20, 18 x11:00000074 x20:0000000a +75940868ns 1380691 1c003ea8 00042783 lw x15, 0(x8) x15=1c00babf x8:1c00b914 PA:1c00b914 +75940908ns 1380693 1c003eaa 00178713 addi x14, x15, 1 x14=1c00bac0 x15:1c00babf +75940928ns 1380694 1c003eae 00e42023 sw x14, 0(x8) x14:1c00bac0 x8:1c00b914 PA:1c00b914 +75940948ns 1380695 1c003eb0 00b78023 sb x11, 0(x15) x11:00000074 x15:1c00babf PA:1c00babf +75940967ns 1380696 1c003eb4 f87ff06f jal x0, -122 +75941007ns 1380698 1c003e3a 00842783 lw x15, 8(x8) x15=fffffff8 x8:1c00b914 PA:1c00b91c +75941027ns 1380699 1c003e3c 00094583 lbu x11, 0(x18) x11=00000078 x18:1c00889c PA:1c00889c +75941047ns 1380700 1c003e40 fff78793 addi x15, x15, -1 x15=fffffff7 x15:fffffff8 +75941066ns 1380701 1c003e42 04059a63 bne x11, x0, 84 x11:00000078 +75941126ns 1380704 1c003e96 00f42423 sw x15, 8(x8) x15:fffffff7 x8:1c00b914 PA:1c00b91c +75941146ns 1380705 1c003e98 00190913 addi x18, x18, 1 x18=1c00889d x18:1c00889c +75941165ns 1380706 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffff7 +75941185ns 1380707 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +75941225ns 1380709 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffff7 x14:fffffc00 +75941244ns 1380710 1c003ea4 01458963 beq x11, x20, 18 x11:00000078 x20:0000000a +75941264ns 1380711 1c003ea8 00042783 lw x15, 0(x8) x15=1c00bac0 x8:1c00b914 PA:1c00b914 +75941304ns 1380713 1c003eaa 00178713 addi x14, x15, 1 x14=1c00bac1 x15:1c00bac0 +75941324ns 1380714 1c003eae 00e42023 sw x14, 0(x8) x14:1c00bac1 x8:1c00b914 PA:1c00b914 +75941343ns 1380715 1c003eb0 00b78023 sb x11, 0(x15) x11:00000078 x15:1c00bac0 PA:1c00bac0 +75941363ns 1380716 1c003eb4 f87ff06f jal x0, -122 +75941403ns 1380718 1c003e3a 00842783 lw x15, 8(x8) x15=fffffff7 x8:1c00b914 PA:1c00b91c +75941423ns 1380719 1c003e3c 00094583 lbu x11, 0(x18) x11=00000020 x18:1c00889d PA:1c00889d +75941442ns 1380720 1c003e40 fff78793 addi x15, x15, -1 x15=fffffff6 x15:fffffff7 +75941462ns 1380721 1c003e42 04059a63 bne x11, x0, 84 x11:00000020 +75941522ns 1380724 1c003e96 00f42423 sw x15, 8(x8) x15:fffffff6 x8:1c00b914 PA:1c00b91c +75941541ns 1380725 1c003e98 00190913 addi x18, x18, 1 x18=1c00889e x18:1c00889d +75941561ns 1380726 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffff6 +75941581ns 1380727 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +75941621ns 1380729 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffff6 x14:fffffc00 +75941640ns 1380730 1c003ea4 01458963 beq x11, x20, 18 x11:00000020 x20:0000000a +75941660ns 1380731 1c003ea8 00042783 lw x15, 0(x8) x15=1c00bac1 x8:1c00b914 PA:1c00b914 +75941700ns 1380733 1c003eaa 00178713 addi x14, x15, 1 x14=1c00bac2 x15:1c00bac1 +75941719ns 1380734 1c003eae 00e42023 sw x14, 0(x8) x14:1c00bac2 x8:1c00b914 PA:1c00b914 +75941739ns 1380735 1c003eb0 00b78023 sb x11, 0(x15) x11:00000020 x15:1c00bac1 PA:1c00bac1 +75941759ns 1380736 1c003eb4 f87ff06f jal x0, -122 +75941799ns 1380738 1c003e3a 00842783 lw x15, 8(x8) x15=fffffff6 x8:1c00b914 PA:1c00b91c +75941818ns 1380739 1c003e3c 00094583 lbu x11, 0(x18) x11=00000062 x18:1c00889e PA:1c00889e +75941838ns 1380740 1c003e40 fff78793 addi x15, x15, -1 x15=fffffff5 x15:fffffff6 +75941858ns 1380741 1c003e42 04059a63 bne x11, x0, 84 x11:00000062 +75941917ns 1380744 1c003e96 00f42423 sw x15, 8(x8) x15:fffffff5 x8:1c00b914 PA:1c00b91c +75941937ns 1380745 1c003e98 00190913 addi x18, x18, 1 x18=1c00889f x18:1c00889e +75941957ns 1380746 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffff5 +75941977ns 1380747 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +75942016ns 1380749 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffff5 x14:fffffc00 +75942036ns 1380750 1c003ea4 01458963 beq x11, x20, 18 x11:00000062 x20:0000000a +75942056ns 1380751 1c003ea8 00042783 lw x15, 0(x8) x15=1c00bac2 x8:1c00b914 PA:1c00b914 +75942096ns 1380753 1c003eaa 00178713 addi x14, x15, 1 x14=1c00bac3 x15:1c00bac2 +75942115ns 1380754 1c003eae 00e42023 sw x14, 0(x8) x14:1c00bac3 x8:1c00b914 PA:1c00b914 +75942135ns 1380755 1c003eb0 00b78023 sb x11, 0(x15) x11:00000062 x15:1c00bac2 PA:1c00bac2 +75942155ns 1380756 1c003eb4 f87ff06f jal x0, -122 +75942194ns 1380758 1c003e3a 00842783 lw x15, 8(x8) x15=fffffff5 x8:1c00b914 PA:1c00b91c +75942214ns 1380759 1c003e3c 00094583 lbu x11, 0(x18) x11=00000075 x18:1c00889f PA:1c00889f +75942234ns 1380760 1c003e40 fff78793 addi x15, x15, -1 x15=fffffff4 x15:fffffff5 +75942254ns 1380761 1c003e42 04059a63 bne x11, x0, 84 x11:00000075 +75942313ns 1380764 1c003e96 00f42423 sw x15, 8(x8) x15:fffffff4 x8:1c00b914 PA:1c00b91c +75942333ns 1380765 1c003e98 00190913 addi x18, x18, 1 x18=1c0088a0 x18:1c00889f +75942353ns 1380766 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffff4 +75942373ns 1380767 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +75942412ns 1380769 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffff4 x14:fffffc00 +75942432ns 1380770 1c003ea4 01458963 beq x11, x20, 18 x11:00000075 x20:0000000a +75942452ns 1380771 1c003ea8 00042783 lw x15, 0(x8) x15=1c00bac3 x8:1c00b914 PA:1c00b914 +75942491ns 1380773 1c003eaa 00178713 addi x14, x15, 1 x14=1c00bac4 x15:1c00bac3 +75942511ns 1380774 1c003eae 00e42023 sw x14, 0(x8) x14:1c00bac4 x8:1c00b914 PA:1c00b914 +75942531ns 1380775 1c003eb0 00b78023 sb x11, 0(x15) x11:00000075 x15:1c00bac3 PA:1c00bac3 +75942551ns 1380776 1c003eb4 f87ff06f jal x0, -122 +75942590ns 1380778 1c003e3a 00842783 lw x15, 8(x8) x15=fffffff4 x8:1c00b914 PA:1c00b91c +75942610ns 1380779 1c003e3c 00094583 lbu x11, 0(x18) x11=00000066 x18:1c0088a0 PA:1c0088a0 +75942630ns 1380780 1c003e40 fff78793 addi x15, x15, -1 x15=fffffff3 x15:fffffff4 +75942650ns 1380781 1c003e42 04059a63 bne x11, x0, 84 x11:00000066 +75942709ns 1380784 1c003e96 00f42423 sw x15, 8(x8) x15:fffffff3 x8:1c00b914 PA:1c00b91c +75942729ns 1380785 1c003e98 00190913 addi x18, x18, 1 x18=1c0088a1 x18:1c0088a0 +75942749ns 1380786 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffff3 +75942768ns 1380787 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +75942808ns 1380789 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffff3 x14:fffffc00 +75942828ns 1380790 1c003ea4 01458963 beq x11, x20, 18 x11:00000066 x20:0000000a +75942848ns 1380791 1c003ea8 00042783 lw x15, 0(x8) x15=1c00bac4 x8:1c00b914 PA:1c00b914 +75942887ns 1380793 1c003eaa 00178713 addi x14, x15, 1 x14=1c00bac5 x15:1c00bac4 +75942907ns 1380794 1c003eae 00e42023 sw x14, 0(x8) x14:1c00bac5 x8:1c00b914 PA:1c00b914 +75942927ns 1380795 1c003eb0 00b78023 sb x11, 0(x15) x11:00000066 x15:1c00bac4 PA:1c00bac4 +75942947ns 1380796 1c003eb4 f87ff06f jal x0, -122 +75942986ns 1380798 1c003e3a 00842783 lw x15, 8(x8) x15=fffffff3 x8:1c00b914 PA:1c00b91c +75943006ns 1380799 1c003e3c 00094583 lbu x11, 0(x18) x11=00000066 x18:1c0088a1 PA:1c0088a1 +75943026ns 1380800 1c003e40 fff78793 addi x15, x15, -1 x15=fffffff2 x15:fffffff3 +75943046ns 1380801 1c003e42 04059a63 bne x11, x0, 84 x11:00000066 +75943105ns 1380804 1c003e96 00f42423 sw x15, 8(x8) x15:fffffff2 x8:1c00b914 PA:1c00b91c +75943125ns 1380805 1c003e98 00190913 addi x18, x18, 1 x18=1c0088a2 x18:1c0088a1 +75943145ns 1380806 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffff2 +75943164ns 1380807 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +75943204ns 1380809 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffff2 x14:fffffc00 +75943224ns 1380810 1c003ea4 01458963 beq x11, x20, 18 x11:00000066 x20:0000000a +75943243ns 1380811 1c003ea8 00042783 lw x15, 0(x8) x15=1c00bac5 x8:1c00b914 PA:1c00b914 +75943283ns 1380813 1c003eaa 00178713 addi x14, x15, 1 x14=1c00bac6 x15:1c00bac5 +75943303ns 1380814 1c003eae 00e42023 sw x14, 0(x8) x14:1c00bac6 x8:1c00b914 PA:1c00b914 +75943323ns 1380815 1c003eb0 00b78023 sb x11, 0(x15) x11:00000066 x15:1c00bac5 PA:1c00bac5 +75943342ns 1380816 1c003eb4 f87ff06f jal x0, -122 +75943382ns 1380818 1c003e3a 00842783 lw x15, 8(x8) x15=fffffff2 x8:1c00b914 PA:1c00b91c +75943402ns 1380819 1c003e3c 00094583 lbu x11, 0(x18) x11=00000065 x18:1c0088a2 PA:1c0088a2 +75943422ns 1380820 1c003e40 fff78793 addi x15, x15, -1 x15=fffffff1 x15:fffffff2 +75943441ns 1380821 1c003e42 04059a63 bne x11, x0, 84 x11:00000065 +75943501ns 1380824 1c003e96 00f42423 sw x15, 8(x8) x15:fffffff1 x8:1c00b914 PA:1c00b91c +75943521ns 1380825 1c003e98 00190913 addi x18, x18, 1 x18=1c0088a3 x18:1c0088a2 +75943540ns 1380826 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffff1 +75943560ns 1380827 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +75943600ns 1380829 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffff1 x14:fffffc00 +75943620ns 1380830 1c003ea4 01458963 beq x11, x20, 18 x11:00000065 x20:0000000a +75943639ns 1380831 1c003ea8 00042783 lw x15, 0(x8) x15=1c00bac6 x8:1c00b914 PA:1c00b914 +75943679ns 1380833 1c003eaa 00178713 addi x14, x15, 1 x14=1c00bac7 x15:1c00bac6 +75943699ns 1380834 1c003eae 00e42023 sw x14, 0(x8) x14:1c00bac7 x8:1c00b914 PA:1c00b914 +75943718ns 1380835 1c003eb0 00b78023 sb x11, 0(x15) x11:00000065 x15:1c00bac6 PA:1c00bac6 +75943738ns 1380836 1c003eb4 f87ff06f jal x0, -122 +75943778ns 1380838 1c003e3a 00842783 lw x15, 8(x8) x15=fffffff1 x8:1c00b914 PA:1c00b91c +75943798ns 1380839 1c003e3c 00094583 lbu x11, 0(x18) x11=00000072 x18:1c0088a3 PA:1c0088a3 +75943817ns 1380840 1c003e40 fff78793 addi x15, x15, -1 x15=fffffff0 x15:fffffff1 +75943837ns 1380841 1c003e42 04059a63 bne x11, x0, 84 x11:00000072 +75943897ns 1380844 1c003e96 00f42423 sw x15, 8(x8) x15:fffffff0 x8:1c00b914 PA:1c00b91c +75943916ns 1380845 1c003e98 00190913 addi x18, x18, 1 x18=1c0088a4 x18:1c0088a3 +75943936ns 1380846 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffff0 +75943956ns 1380847 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +75943996ns 1380849 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffff0 x14:fffffc00 +75944015ns 1380850 1c003ea4 01458963 beq x11, x20, 18 x11:00000072 x20:0000000a +75944035ns 1380851 1c003ea8 00042783 lw x15, 0(x8) x15=1c00bac7 x8:1c00b914 PA:1c00b914 +75944075ns 1380853 1c003eaa 00178713 addi x14, x15, 1 x14=1c00bac8 x15:1c00bac7 +75944095ns 1380854 1c003eae 00e42023 sw x14, 0(x8) x14:1c00bac8 x8:1c00b914 PA:1c00b914 +75944114ns 1380855 1c003eb0 00b78023 sb x11, 0(x15) x11:00000072 x15:1c00bac7 PA:1c00bac7 +75944134ns 1380856 1c003eb4 f87ff06f jal x0, -122 +75944174ns 1380858 1c003e3a 00842783 lw x15, 8(x8) x15=fffffff0 x8:1c00b914 PA:1c00b91c +75944193ns 1380859 1c003e3c 00094583 lbu x11, 0(x18) x11=00000000 x18:1c0088a4 PA:1c0088a4 +75944213ns 1380860 1c003e40 fff78793 addi x15, x15, -1 x15=ffffffef x15:fffffff0 +75944233ns 1380861 1c003e42 04059a63 bne x11, x0, 84 x11:00000000 +75944253ns 1380862 1c003e44 00f42423 sw x15, 8(x8) x15:ffffffef x8:1c00b914 PA:1c00b91c +75944273ns 1380863 1c003e46 0607de63 bge x15, x0, 124 x15:ffffffef +75944292ns 1380864 1c003e4a 00800633 add x12, x0, x8 x12=1c00b914 x8:1c00b914 +75944312ns 1380865 1c003e4c 00a00593 addi x11, x0, 10 x11=0000000a +75944332ns 1380866 1c003e4e 00900533 add x10, x0, x9 x10=1c009e10 x9:1c009e10 +75944352ns 1380867 1c003e50 25a000ef jal x1, 602 x1=1c003e52 +75944391ns 1380869 1c0040aa fe010113 addi x2, x2, -32 x2=1c009b80 x2:1c009ba0 +75944411ns 1380870 1c0040ac 00812c23 sw x8, 24(x2) x8:1c00b914 x2:1c009b80 PA:1c009b98 +75944431ns 1380871 1c0040ae 00912a23 sw x9, 20(x2) x9:1c009e10 x2:1c009b80 PA:1c009b94 +75944451ns 1380872 1c0040b0 01212823 sw x18, 16(x2) x18:1c0088a4 x2:1c009b80 PA:1c009b90 +75944471ns 1380873 1c0040b2 00112e23 sw x1, 28(x2) x1:1c003e52 x2:1c009b80 PA:1c009b9c +75944490ns 1380874 1c0040b4 01312623 sw x19, 12(x2) x19:ffffffff x2:1c009b80 PA:1c009b8c +75944510ns 1380875 1c0040b6 00a004b3 add x9, x0, x10 x9=1c009e10 x10:1c009e10 +75944530ns 1380876 1c0040b8 00b00933 add x18, x0, x11 x18=0000000a x11:0000000a +75944550ns 1380877 1c0040ba 00c00433 add x8, x0, x12 x8=1c00b914 x12:1c00b914 +75944570ns 1380878 1c0040bc 00050463 beq x10, x0, 8 x10:1c009e10 +75944589ns 1380879 1c0040be 01852783 lw x15, 24(x10) x15=00000001 x10:1c009e10 PA:1c009e28 +75944629ns 1380881 1c0040c0 00079263 bne x15, x0, 4 x15:00000001 +75944688ns 1380884 1c0040c4 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +75944708ns 1380885 1c0040c8 a1478793 addi x15, x15, -1516 x15=1c008a14 x15:1c009000 +75944728ns 1380886 1c0040cc 06f41963 bne x8, x15, 114 x8:1c00b914 x15:1c008a14 +75944807ns 1380890 1c00413e 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +75944827ns 1380891 1c004142 a3478793 addi x15, x15, -1484 x15=1c008a34 x15:1c009000 +75944847ns 1380892 1c004146 00f41463 bne x8, x15, 8 x8:1c00b914 x15:1c008a34 +75944926ns 1380896 1c00414e 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +75944946ns 1380897 1c004152 9f478793 addi x15, x15, -1548 x15=1c0089f4 x15:1c009000 +75944965ns 1380898 1c004156 f6f41ee3 bne x8, x15, -132 x8:1c00b914 x15:1c0089f4 +75945025ns 1380901 1c0040d2 01842783 lw x15, 24(x8) x15=fffffc00 x8:1c00b914 PA:1c00b92c +75945064ns 1380903 1c0040d4 00f42423 sw x15, 8(x8) x15:fffffc00 x8:1c00b914 PA:1c00b91c +75945084ns 1380904 1c0040d6 00c45783 lhu x15, 12(x8) x15=00000089 x8:1c00b914 PA:1c00b920 +75945124ns 1380906 1c0040da 0087f793 andi x15, x15, 8 x15=00000008 x15:00000089 +75945143ns 1380907 1c0040dc 08078163 beq x15, x0, 130 x15:00000008 +75945163ns 1380908 1c0040de 01042783 lw x15, 16(x8) x15=1c00bab8 x8:1c00b914 PA:1c00b924 +75945203ns 1380910 1c0040e0 06078f63 beq x15, x0, 126 x15:1c00bab8 +75945223ns 1380911 1c0040e2 01042783 lw x15, 16(x8) x15=1c00bab8 x8:1c00b914 PA:1c00b924 +75945242ns 1380912 1c0040e4 00042503 lw x10, 0(x8) x10=1c00bac8 x8:1c00b914 PA:1c00b914 +75945262ns 1380913 1c0040e6 0ff97993 andi x19, x18, 255 x19=0000000a x18:0000000a +75945282ns 1380914 1c0040ea 0ff97913 andi x18, x18, 255 x18=0000000a x18:0000000a +75945302ns 1380915 1c0040ee 40f50533 sub x10, x10, x15 x10=00000010 x10:1c00bac8 x15:1c00bab8 +75945322ns 1380916 1c0040f0 01442783 lw x15, 20(x8) x15=00000400 x8:1c00b914 PA:1c00b928 +75945361ns 1380918 1c0040f2 00f54663 blt x10, x15, 12 x10:00000010 x15:00000400 +75945421ns 1380921 1c0040fe 00842783 lw x15, 8(x8) x15=fffffc00 x8:1c00b914 PA:1c00b91c +75945440ns 1380922 1c004100 00150513 addi x10, x10, 1 x10=00000011 x10:00000010 +75945460ns 1380923 1c004102 fff78793 addi x15, x15, -1 x15=fffffbff x15:fffffc00 +75945480ns 1380924 1c004104 00f42423 sw x15, 8(x8) x15:fffffbff x8:1c00b914 PA:1c00b91c +75945500ns 1380925 1c004106 00042783 lw x15, 0(x8) x15=1c00bac8 x8:1c00b914 PA:1c00b914 +75945539ns 1380927 1c004108 00178713 addi x14, x15, 1 x14=1c00bac9 x15:1c00bac8 +75945559ns 1380928 1c00410c 00e42023 sw x14, 0(x8) x14:1c00bac9 x8:1c00b914 PA:1c00b914 +75945579ns 1380929 1c00410e 01378023 sb x19, 0(x15) x19:0000000a x15:1c00bac8 PA:1c00bac8 +75945599ns 1380930 1c004112 01442783 lw x15, 20(x8) x15=00000400 x8:1c00b914 PA:1c00b928 +75945638ns 1380932 1c004114 00a78963 beq x15, x10, 18 x15:00000400 x10:00000011 +75945658ns 1380933 1c004118 00c45783 lhu x15, 12(x8) x15=00000089 x8:1c00b914 PA:1c00b920 +75945698ns 1380935 1c00411c 0017f793 andi x15, x15, 1 x15=00000001 x15:00000089 +75945717ns 1380936 1c00411e 00078863 beq x15, x0, 16 x15:00000001 +75945737ns 1380937 1c004120 00a00793 addi x15, x0, 10 x15=0000000a +75945757ns 1380938 1c004122 00f91663 bne x18, x15, 12 x18:0000000a x15:0000000a +75945777ns 1380939 1c004126 008005b3 add x11, x0, x8 x11=1c00b914 x8:1c00b914 +75945797ns 1380940 1c004128 00900533 add x10, x0, x9 x10=1c009e10 x9:1c009e10 +75945816ns 1380941 1c00412a 3d8000ef jal x1, 984 x1=1c00412c +75945856ns 1380943 1c004502 0105a783 lw x15, 16(x11) x15=1c00bab8 x11:1c00b914 PA:1c00b924 +75945896ns 1380945 1c004504 06078063 beq x15, x0, 96 x15:1c00bab8 +75945915ns 1380946 1c004506 fe010113 addi x2, x2, -32 x2=1c009b60 x2:1c009b80 +75945935ns 1380947 1c004508 00812c23 sw x8, 24(x2) x8:1c00b914 x2:1c009b60 PA:1c009b78 +75945955ns 1380948 1c00450a 00112e23 sw x1, 28(x2) x1:1c00412c x2:1c009b60 PA:1c009b7c +75945975ns 1380949 1c00450c 00a00433 add x8, x0, x10 x8=1c009e10 x10:1c009e10 +75945995ns 1380950 1c00450e 00050663 beq x10, x0, 12 x10:1c009e10 +75946014ns 1380951 1c004510 01852783 lw x15, 24(x10) x15=00000001 x10:1c009e10 PA:1c009e28 +75946054ns 1380953 1c004512 00079463 bne x15, x0, 8 x15:00000001 +75946133ns 1380957 1c00451a 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +75946153ns 1380958 1c00451e a1478793 addi x15, x15, -1516 x15=1c008a14 x15:1c009000 +75946173ns 1380959 1c004522 00f59c63 bne x11, x15, 24 x11:1c00b914 x15:1c008a14 +75946252ns 1380963 1c00453a 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +75946272ns 1380964 1c00453e a3478793 addi x15, x15, -1484 x15=1c008a34 x15:1c009000 +75946291ns 1380965 1c004542 00f59463 bne x11, x15, 8 x11:1c00b914 x15:1c008a34 +75946371ns 1380969 1c00454a 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +75946390ns 1380970 1c00454e 9f478793 addi x15, x15, -1548 x15=1c0089f4 x15:1c009000 +75946410ns 1380971 1c004552 fcf59be3 bne x11, x15, -42 x11:1c00b914 x15:1c0089f4 +75946470ns 1380974 1c004528 00c59783 lh x15, 12(x11) x15=00000089 x11:1c00b914 PA:1c00b920 +75946509ns 1380976 1c00452c 02078763 beq x15, x0, 46 x15:00000089 +75946529ns 1380977 1c00452e 00800533 add x10, x0, x8 x10=1c009e10 x8:1c009e10 +75946549ns 1380978 1c004530 01812403 lw x8, 24(x2) x8=1c00b914 x2:1c009b60 PA:1c009b78 +75946569ns 1380979 1c004532 01c12083 lw x1, 28(x2) x1=1c00412c x2:1c009b60 PA:1c009b7c +75946588ns 1380980 1c004534 02010113 addi x2, x2, 32 x2=1c009b80 x2:1c009b60 +75946608ns 1380981 1c004536 e85ff06f jal x0, -380 +75946667ns 1380984 1c0043ba 00c5d783 lhu x15, 12(x11) x15=00000089 x11:1c00b914 PA:1c00b920 +75946687ns 1380985 1c0043be fe010113 addi x2, x2, -32 x2=1c009b60 x2:1c009b80 +75946707ns 1380986 1c0043c0 00812c23 sw x8, 24(x2) x8:1c00b914 x2:1c009b60 PA:1c009b78 +75946727ns 1380987 1c0043c2 00912a23 sw x9, 20(x2) x9:1c009e10 x2:1c009b60 PA:1c009b74 +75946747ns 1380988 1c0043c4 00112e23 sw x1, 28(x2) x1:1c00412c x2:1c009b60 PA:1c009b7c +75946766ns 1380989 1c0043c6 01212823 sw x18, 16(x2) x18:0000000a x2:1c009b60 PA:1c009b70 +75946786ns 1380990 1c0043c8 01312623 sw x19, 12(x2) x19:0000000a x2:1c009b60 PA:1c009b6c +75946806ns 1380991 1c0043ca 0087f713 andi x14, x15, 8 x14=00000008 x15:00000089 +75946826ns 1380992 1c0043ce 00a004b3 add x9, x0, x10 x9=1c009e10 x10:1c009e10 +75946846ns 1380993 1c0043d0 00b00433 add x8, x0, x11 x8=1c00b914 x11:1c00b914 +75946865ns 1380994 1c0043d2 0e071363 bne x14, x0, 230 x14:00000008 +75946925ns 1380997 1c0044b8 0105a983 lw x19, 16(x11) x19=1c00bab8 x11:1c00b914 PA:1c00b924 +75946964ns 1380999 1c0044bc f20982e3 beq x19, x0, -220 x19:1c00bab8 +75946984ns 1381000 1c0044c0 0005a903 lw x18, 0(x11) x18=1c00bac9 x11:1c00b914 PA:1c00b914 +75947004ns 1381001 1c0044c4 0037f793 andi x15, x15, 3 x15=00000001 x15:00000089 +75947024ns 1381002 1c0044c6 0135a023 sw x19, 0(x11) x19:1c00bab8 x11:1c00b914 PA:1c00b914 +75947044ns 1381003 1c0044ca 41390933 sub x18, x18, x19 x18=00000011 x18:1c00bac9 x19:1c00bab8 +75947063ns 1381004 1c0044ce 00000713 addi x14, x0, 0 x14=00000000 +75947083ns 1381005 1c0044d0 00079263 bne x15, x0, 4 x15:00000001 +75947142ns 1381008 1c0044d4 00e42423 sw x14, 8(x8) x14:00000000 x8:1c00b914 PA:1c00b91c +75947162ns 1381009 1c0044d6 f12055e3 bge x0, x18, -246 x18:00000011 +75947182ns 1381010 1c0044da 02842783 lw x15, 40(x8) x15=1c004c5e x8:1c00b914 PA:1c00b93c +75947202ns 1381011 1c0044dc 02042583 lw x11, 32(x8) x11=1c00b914 x8:1c00b914 PA:1c00b934 +75947222ns 1381012 1c0044de 012006b3 add x13, x0, x18 x13=00000011 x18:00000011 +75947241ns 1381013 1c0044e0 01300633 add x12, x0, x19 x12=1c00bab8 x19:1c00bab8 +75947261ns 1381014 1c0044e2 00900533 add x10, x0, x9 x10=1c009e10 x9:1c009e10 +75947281ns 1381015 1c0044e4 000780e7 jalr x1, x15, 0 x1=1c0044e6 x15:1c004c5e +75947340ns 1381018 1c004c5e 00c5d783 lhu x15, 12(x11) x15=00000089 x11:1c00b914 PA:1c00b920 +75947360ns 1381019 1c004c62 fe010113 addi x2, x2, -32 x2=1c009b40 x2:1c009b60 +75947380ns 1381020 1c004c64 00812c23 sw x8, 24(x2) x8:1c00b914 x2:1c009b40 PA:1c009b58 +75947400ns 1381021 1c004c66 00912a23 sw x9, 20(x2) x9:1c009e10 x2:1c009b40 PA:1c009b54 +75947420ns 1381022 1c004c68 01212823 sw x18, 16(x2) x18:00000011 x2:1c009b40 PA:1c009b50 +75947439ns 1381023 1c004c6a 01312623 sw x19, 12(x2) x19:1c00bab8 x2:1c009b40 PA:1c009b4c +75947459ns 1381024 1c004c6c 00112e23 sw x1, 28(x2) x1:1c0044e6 x2:1c009b40 PA:1c009b5c +75947479ns 1381025 1c004c6e 1007f793 andi x15, x15, 256 x15=00000000 x15:00000089 +75947499ns 1381026 1c004c72 00a004b3 add x9, x0, x10 x9=1c009e10 x10:1c009e10 +75947519ns 1381027 1c004c74 00b00433 add x8, x0, x11 x8=1c00b914 x11:1c00b914 +75947538ns 1381028 1c004c76 00c00933 add x18, x0, x12 x18=1c00bab8 x12:1c00bab8 +75947558ns 1381029 1c004c78 00d009b3 add x19, x0, x13 x19=00000011 x13:00000011 +75947578ns 1381030 1c004c7a 00078663 beq x15, x0, 12 x15:00000000 +75947657ns 1381034 1c004c86 00c45783 lhu x15, 12(x8) x15=00000089 x8:1c00b914 PA:1c00b920 +75947677ns 1381035 1c004c8a fffff737 lui x14, 0xfffff000 x14=fffff000 +75947697ns 1381036 1c004c8c fff70713 addi x14, x14, -1 x14=ffffefff x14:fffff000 +75947716ns 1381037 1c004c8e 00e7f7b3 and x15, x15, x14 x15=00000089 x15:00000089 x14:ffffefff +75947736ns 1381038 1c004c90 00e41583 lh x11, 14(x8) x11=00000001 x8:1c00b914 PA:1c00b922 +75947756ns 1381039 1c004c94 00f41623 sh x15, 12(x8) x15:00000089 x8:1c00b914 PA:1c00b920 +75947776ns 1381040 1c004c98 01812403 lw x8, 24(x2) x8=1c00b914 x2:1c009b40 PA:1c009b58 +75947796ns 1381041 1c004c9a 01c12083 lw x1, 28(x2) x1=1c0044e6 x2:1c009b40 PA:1c009b5c +75947815ns 1381042 1c004c9c 013006b3 add x13, x0, x19 x13=00000011 x19:00000011 +75947835ns 1381043 1c004c9e 01200633 add x12, x0, x18 x12=1c00bab8 x18:1c00bab8 +75947855ns 1381044 1c004ca0 00c12983 lw x19, 12(x2) x19=1c00bab8 x2:1c009b40 PA:1c009b4c +75947875ns 1381045 1c004ca2 01012903 lw x18, 16(x2) x18=00000011 x2:1c009b40 PA:1c009b50 +75947895ns 1381046 1c004ca4 00900533 add x10, x0, x9 x10=1c009e10 x9:1c009e10 +75947914ns 1381047 1c004ca6 01412483 lw x9, 20(x2) x9=1c009e10 x2:1c009b40 PA:1c009b54 +75947934ns 1381048 1c004ca8 02010113 addi x2, x2, 32 x2=1c009b60 x2:1c009b40 +75947954ns 1381049 1c004caa 03e0006f jal x0, 62 +75947994ns 1381051 1c004ce8 ff010113 addi x2, x2, -16 x2=1c009b50 x2:1c009b60 +75948013ns 1381052 1c004cea 00812423 sw x8, 8(x2) x8:1c00b914 x2:1c009b50 PA:1c009b58 +75948033ns 1381053 1c004cec 00912223 sw x9, 4(x2) x9:1c009e10 x2:1c009b50 PA:1c009b54 +75948053ns 1381054 1c004cee 00a00433 add x8, x0, x10 x8=1c009e10 x10:1c009e10 +75948073ns 1381055 1c004cf0 00b00533 add x10, x0, x11 x10=00000001 x11:00000001 +75948093ns 1381056 1c004cf2 00c005b3 add x11, x0, x12 x11=1c00bab8 x12:1c00bab8 +75948112ns 1381057 1c004cf4 00d00633 add x12, x0, x13 x12=00000011 x13:00000011 +75948132ns 1381058 1c004cf6 00112623 sw x1, 12(x2) x1:1c0044e6 x2:1c009b50 PA:1c009b5c +75948152ns 1381059 1c004cf8 dc01a023 sw x0, -576(x3) x3:1c0093dc PA:1c00919c +75948172ns 1381060 1c004cfc cf7fd0ef jal x1, -8970 x1=1c004d00 +75948211ns 1381062 1c0029f2 fff50513 addi x10, x10, -1 x10=00000000 x10:00000001 +75948231ns 1381063 1c0029f4 00100793 addi x15, x0, 1 x15=00000001 +75948251ns 1381064 1c0029f6 00c58833 add x16, x11, x12 x16=1c00bac9 x11:1c00bab8 x12:00000011 +75948271ns 1381065 1c0029fa 00a7eb63 bltu x15, x10, 22 x15:00000001 x10:00000000 +75948290ns 1381066 1c0029fe 000026b7 lui x13, 0x2000 x13=00002000 +75948310ns 1381067 1c002a00 f8068693 addi x13, x13, -128 x13=00001f80 x13:00002000 +75948330ns 1381068 1c002a04 1a10f537 lui x10, 0x1a10f000 x10=1a10f000 +75948350ns 1381069 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bab8 x16:1c00bac9 +75948409ns 1381072 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bab9 x11:1c00bab8 +75948429ns 1381073 1c002a1e fff5c883 lbu x17, -1(x11) x17=0000006d x11:1c00bab9 PA:1c00bab8 +75948449ns 1381074 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +75948469ns 1381075 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +75948488ns 1381076 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +75948508ns 1381077 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +75948528ns 1381078 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +75948548ns 1381079 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +75948568ns 1381080 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +75948587ns 1381081 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +75948607ns 1381082 1c002a38 0117a023 sw x17, 0(x15) x17:0000006d x15:1a10ff80 PA:1a10ff80 +75948627ns 1381083 1c002a3c fcdff06f jal x0, -52 +75948726ns 1381088 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bab9 x16:1c00bac9 +75948785ns 1381091 1c002a1c 00158593 addi x11, x11, 1 x11=1c00baba x11:1c00bab9 +75948805ns 1381092 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000061 x11:1c00baba PA:1c00bab9 +75948825ns 1381093 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +75948845ns 1381094 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +75948864ns 1381095 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +75948884ns 1381096 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +75948904ns 1381097 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +75948924ns 1381098 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +75948944ns 1381099 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +75948963ns 1381100 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +75948983ns 1381101 1c002a38 0117a023 sw x17, 0(x15) x17:00000061 x15:1a10ff80 PA:1a10ff80 +75949003ns 1381102 1c002a3c fcdff06f jal x0, -52 +75949102ns 1381107 1c002a08 01059a63 bne x11, x16, 20 x11:1c00baba x16:1c00bac9 +75949161ns 1381110 1c002a1c 00158593 addi x11, x11, 1 x11=1c00babb x11:1c00baba +75949181ns 1381111 1c002a1e fff5c883 lbu x17, -1(x11) x17=0000006c x11:1c00babb PA:1c00baba +75949201ns 1381112 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +75949221ns 1381113 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +75949240ns 1381114 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +75949260ns 1381115 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +75949280ns 1381116 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +75949300ns 1381117 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +75949320ns 1381118 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +75949339ns 1381119 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +75949359ns 1381120 1c002a38 0117a023 sw x17, 0(x15) x17:0000006c x15:1a10ff80 PA:1a10ff80 +75949379ns 1381121 1c002a3c fcdff06f jal x0, -52 +75949478ns 1381126 1c002a08 01059a63 bne x11, x16, 20 x11:1c00babb x16:1c00bac9 +75949537ns 1381129 1c002a1c 00158593 addi x11, x11, 1 x11=1c00babc x11:1c00babb +75949557ns 1381130 1c002a1e fff5c883 lbu x17, -1(x11) x17=0000006c x11:1c00babc PA:1c00babb +75949577ns 1381131 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +75949597ns 1381132 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +75949616ns 1381133 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +75949636ns 1381134 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +75949656ns 1381135 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +75949676ns 1381136 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +75949696ns 1381137 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +75949715ns 1381138 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +75949735ns 1381139 1c002a38 0117a023 sw x17, 0(x15) x17:0000006c x15:1a10ff80 PA:1a10ff80 +75949755ns 1381140 1c002a3c fcdff06f jal x0, -52 +75949854ns 1381145 1c002a08 01059a63 bne x11, x16, 20 x11:1c00babc x16:1c00bac9 +75949913ns 1381148 1c002a1c 00158593 addi x11, x11, 1 x11=1c00babd x11:1c00babc +75949933ns 1381149 1c002a1e fff5c883 lbu x17, -1(x11) x17=0000006f x11:1c00babd PA:1c00babc +75949953ns 1381150 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +75949973ns 1381151 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +75949993ns 1381152 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +75950012ns 1381153 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +75950032ns 1381154 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +75950052ns 1381155 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +75950072ns 1381156 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +75950091ns 1381157 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +75950111ns 1381158 1c002a38 0117a023 sw x17, 0(x15) x17:0000006f x15:1a10ff80 PA:1a10ff80 +75950131ns 1381159 1c002a3c fcdff06f jal x0, -52 +75950230ns 1381164 1c002a08 01059a63 bne x11, x16, 20 x11:1c00babd x16:1c00bac9 +75950289ns 1381167 1c002a1c 00158593 addi x11, x11, 1 x11=1c00babe x11:1c00babd +75950309ns 1381168 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000063 x11:1c00babe PA:1c00babd +75950329ns 1381169 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +75950349ns 1381170 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +75950369ns 1381171 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +75950388ns 1381172 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +75950408ns 1381173 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +75950428ns 1381174 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +75950448ns 1381175 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +75950468ns 1381176 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +75950487ns 1381177 1c002a38 0117a023 sw x17, 0(x15) x17:00000063 x15:1a10ff80 PA:1a10ff80 +75950507ns 1381178 1c002a3c fcdff06f jal x0, -52 +75950606ns 1381183 1c002a08 01059a63 bne x11, x16, 20 x11:1c00babe x16:1c00bac9 +75950665ns 1381186 1c002a1c 00158593 addi x11, x11, 1 x11=1c00babf x11:1c00babe +75950685ns 1381187 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000020 x11:1c00babf PA:1c00babe +75950705ns 1381188 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +75950725ns 1381189 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +75950745ns 1381190 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +75950764ns 1381191 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +75950784ns 1381192 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +75950804ns 1381193 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +75950824ns 1381194 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +75950844ns 1381195 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +75950863ns 1381196 1c002a38 0117a023 sw x17, 0(x15) x17:00000020 x15:1a10ff80 PA:1a10ff80 +75950883ns 1381197 1c002a3c fcdff06f jal x0, -52 +75950982ns 1381202 1c002a08 01059a63 bne x11, x16, 20 x11:1c00babf x16:1c00bac9 +75951042ns 1381205 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac0 x11:1c00babf +75951061ns 1381206 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000074 x11:1c00bac0 PA:1c00babf +75951081ns 1381207 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +75951101ns 1381208 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +75951121ns 1381209 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +75951140ns 1381210 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +75951160ns 1381211 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +75951180ns 1381212 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +75951200ns 1381213 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +75951220ns 1381214 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +75951239ns 1381215 1c002a38 0117a023 sw x17, 0(x15) x17:00000074 x15:1a10ff80 PA:1a10ff80 +75951259ns 1381216 1c002a3c fcdff06f jal x0, -52 +75951358ns 1381221 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac0 x16:1c00bac9 +75951418ns 1381224 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac1 x11:1c00bac0 +75951437ns 1381225 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000078 x11:1c00bac1 PA:1c00bac0 +75951457ns 1381226 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +75951477ns 1381227 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +75951497ns 1381228 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +75951517ns 1381229 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +75951536ns 1381230 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +75951556ns 1381231 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +75951576ns 1381232 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +75951596ns 1381233 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +75951615ns 1381234 1c002a38 0117a023 sw x17, 0(x15) x17:00000078 x15:1a10ff80 PA:1a10ff80 +75951635ns 1381235 1c002a3c fcdff06f jal x0, -52 +75951734ns 1381240 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac1 x16:1c00bac9 +75951794ns 1381243 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac2 x11:1c00bac1 +75951813ns 1381244 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000020 x11:1c00bac2 PA:1c00bac1 +75951833ns 1381245 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +75951853ns 1381246 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +75951873ns 1381247 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +75951893ns 1381248 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +75951912ns 1381249 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +75951932ns 1381250 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +75951952ns 1381251 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +75951972ns 1381252 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +75951992ns 1381253 1c002a38 0117a023 sw x17, 0(x15) x17:00000020 x15:1a10ff80 PA:1a10ff80 +75952011ns 1381254 1c002a3c fcdff06f jal x0, -52 +75952110ns 1381259 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac2 x16:1c00bac9 +75952170ns 1381262 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac3 x11:1c00bac2 +75952189ns 1381263 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000062 x11:1c00bac3 PA:1c00bac2 +75952209ns 1381264 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +75952229ns 1381265 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +75952249ns 1381266 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +75952269ns 1381267 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +75952288ns 1381268 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +75952308ns 1381269 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +75952328ns 1381270 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +75952348ns 1381271 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +75952368ns 1381272 1c002a38 0117a023 sw x17, 0(x15) x17:00000062 x15:1a10ff80 PA:1a10ff80 +75952387ns 1381273 1c002a3c fcdff06f jal x0, -52 +75952486ns 1381278 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac3 x16:1c00bac9 +75952546ns 1381281 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac4 x11:1c00bac3 +75952565ns 1381282 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000075 x11:1c00bac4 PA:1c00bac3 +75952585ns 1381283 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +75952605ns 1381284 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +75952625ns 1381285 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +75952645ns 1381286 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +75952664ns 1381287 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +75952684ns 1381288 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +75952704ns 1381289 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +75952724ns 1381290 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +75952744ns 1381291 1c002a38 0117a023 sw x17, 0(x15) x17:00000075 x15:1a10ff80 PA:1a10ff80 +75952763ns 1381292 1c002a3c fcdff06f jal x0, -52 +75952862ns 1381297 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac4 x16:1c00bac9 +75952922ns 1381300 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac5 x11:1c00bac4 +75952942ns 1381301 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000066 x11:1c00bac5 PA:1c00bac4 +75952961ns 1381302 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +75952981ns 1381303 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +75953001ns 1381304 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +75953021ns 1381305 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +75953041ns 1381306 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +75953060ns 1381307 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +75953080ns 1381308 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +75953100ns 1381309 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +75953120ns 1381310 1c002a38 0117a023 sw x17, 0(x15) x17:00000066 x15:1a10ff80 PA:1a10ff80 +75953139ns 1381311 1c002a3c fcdff06f jal x0, -52 +75953238ns 1381316 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac5 x16:1c00bac9 +75953298ns 1381319 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac6 x11:1c00bac5 +75953318ns 1381320 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000066 x11:1c00bac6 PA:1c00bac5 +75953337ns 1381321 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +75953357ns 1381322 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +75953377ns 1381323 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +75953397ns 1381324 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +75953417ns 1381325 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +75953436ns 1381326 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +75953456ns 1381327 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +75953476ns 1381328 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +75953496ns 1381329 1c002a38 0117a023 sw x17, 0(x15) x17:00000066 x15:1a10ff80 PA:1a10ff80 +75953516ns 1381330 1c002a3c fcdff06f jal x0, -52 +75953614ns 1381335 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac6 x16:1c00bac9 +75953674ns 1381338 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac7 x11:1c00bac6 +75953694ns 1381339 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000065 x11:1c00bac7 PA:1c00bac6 +75953713ns 1381340 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +75953733ns 1381341 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +75953753ns 1381342 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +75953773ns 1381343 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +75953793ns 1381344 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +75953812ns 1381345 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +75953832ns 1381346 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +75953852ns 1381347 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +75953872ns 1381348 1c002a38 0117a023 sw x17, 0(x15) x17:00000065 x15:1a10ff80 PA:1a10ff80 +75953892ns 1381349 1c002a3c fcdff06f jal x0, -52 +75953991ns 1381354 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac7 x16:1c00bac9 +75954050ns 1381357 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac8 x11:1c00bac7 +75954070ns 1381358 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000072 x11:1c00bac8 PA:1c00bac7 +75954089ns 1381359 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +75954109ns 1381360 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +75954129ns 1381361 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +75954149ns 1381362 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +75954169ns 1381363 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +75954188ns 1381364 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +75954208ns 1381365 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +75954228ns 1381366 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +75954248ns 1381367 1c002a38 0117a023 sw x17, 0(x15) x17:00000072 x15:1a10ff80 PA:1a10ff80 +75954268ns 1381368 1c002a3c fcdff06f jal x0, -52 +75954367ns 1381373 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac8 x16:1c00bac9 +75954426ns 1381376 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac9 x11:1c00bac8 +75954446ns 1381377 1c002a1e fff5c883 lbu x17, -1(x11) x17=0000000a x11:1c00bac9 PA:1c00bac8 +75954466ns 1381378 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +75954485ns 1381379 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +75954505ns 1381380 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +75954525ns 1381381 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +75954545ns 1381382 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +75954564ns 1381383 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +75954584ns 1381384 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +75954604ns 1381385 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +75954624ns 1381386 1c002a38 0117a023 sw x17, 0(x15) x17:0000000a x15:1a10ff80 PA:1a10ff80 +75954644ns 1381387 1c002a3c fcdff06f jal x0, -52 +75954743ns 1381392 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac9 x16:1c00bac9 +75954762ns 1381393 1c002a0c 00c00533 add x10, x0, x12 x10=00000011 x12:00000011 +75954782ns 1381394 1c002a0e 00008067 jalr x0, x1, 0 x1:1c004d00 +75954822ns 1381396 1c004d00 fff00793 addi x15, x0, -1 x15=ffffffff +75954842ns 1381397 1c004d02 00f51663 bne x10, x15, 12 x10:00000011 x15:ffffffff +75954901ns 1381400 1c004d0e 00c12083 lw x1, 12(x2) x1=1c0044e6 x2:1c009b50 PA:1c009b5c +75954921ns 1381401 1c004d10 00812403 lw x8, 8(x2) x8=1c00b914 x2:1c009b50 PA:1c009b58 +75954941ns 1381402 1c004d12 00412483 lw x9, 4(x2) x9=1c009e10 x2:1c009b50 PA:1c009b54 +75954960ns 1381403 1c004d14 01010113 addi x2, x2, 16 x2=1c009b60 x2:1c009b50 +75954980ns 1381404 1c004d16 00008067 jalr x0, x1, 0 x1:1c0044e6 +75955039ns 1381407 1c0044e6 00a04a63 blt x0, x10, 20 x10:00000011 +75955099ns 1381410 1c0044fa 00a989b3 add x19, x19, x10 x19=1c00bac9 x19:1c00bab8 x10:00000011 +75955119ns 1381411 1c0044fc 40a90933 sub x18, x18, x10 x18=00000000 x18:00000011 x10:00000011 +75955138ns 1381412 1c004500 fd7ff06f jal x0, -42 +75955198ns 1381415 1c0044d6 f12055e3 bge x0, x18, -246 x18:00000000 +75955257ns 1381418 1c0043e0 00000513 addi x10, x0, 0 x10=00000000 +75955277ns 1381419 1c0043e2 0be0006f jal x0, 190 +75955317ns 1381421 1c0044a0 01c12083 lw x1, 28(x2) x1=1c00412c x2:1c009b60 PA:1c009b7c +75955336ns 1381422 1c0044a2 01812403 lw x8, 24(x2) x8=1c00b914 x2:1c009b60 PA:1c009b78 +75955356ns 1381423 1c0044a4 01412483 lw x9, 20(x2) x9=1c009e10 x2:1c009b60 PA:1c009b74 +75955376ns 1381424 1c0044a6 01012903 lw x18, 16(x2) x18=0000000a x2:1c009b60 PA:1c009b70 +75955396ns 1381425 1c0044a8 00c12983 lw x19, 12(x2) x19=0000000a x2:1c009b60 PA:1c009b6c +75955416ns 1381426 1c0044aa 02010113 addi x2, x2, 32 x2=1c009b80 x2:1c009b60 +75955435ns 1381427 1c0044ac 00008067 jalr x0, x1, 0 x1:1c00412c +75955475ns 1381429 1c00412c 02051d63 bne x10, x0, 58 x10:00000000 +75955495ns 1381430 1c00412e 01c12083 lw x1, 28(x2) x1=1c003e52 x2:1c009b80 PA:1c009b9c +75955515ns 1381431 1c004130 01812403 lw x8, 24(x2) x8=1c00b914 x2:1c009b80 PA:1c009b98 +75955534ns 1381432 1c004132 01412483 lw x9, 20(x2) x9=1c009e10 x2:1c009b80 PA:1c009b94 +75955554ns 1381433 1c004134 00c12983 lw x19, 12(x2) x19=ffffffff x2:1c009b80 PA:1c009b8c +75955574ns 1381434 1c004136 01200533 add x10, x0, x18 x10=0000000a x18:0000000a +75955594ns 1381435 1c004138 01012903 lw x18, 16(x2) x18=1c0088a4 x2:1c009b80 PA:1c009b90 +75955613ns 1381436 1c00413a 02010113 addi x2, x2, 32 x2=1c009ba0 x2:1c009b80 +75955633ns 1381437 1c00413c 00008067 jalr x0, x1, 0 x1:1c003e52 +75955673ns 1381439 1c003e52 fff00793 addi x15, x0, -1 x15=ffffffff +75955693ns 1381440 1c003e54 02f50863 beq x10, x15, 48 x10:0000000a x15:ffffffff +75955712ns 1381441 1c003e58 00a00513 addi x10, x0, 10 x10=0000000a +75955732ns 1381442 1c003e5a 02c0006f jal x0, 44 +75955772ns 1381444 1c003e86 01c12083 lw x1, 28(x2) x1=1c003580 x2:1c009ba0 PA:1c009bbc +75955792ns 1381445 1c003e88 01812403 lw x8, 24(x2) x8=00000000 x2:1c009ba0 PA:1c009bb8 +75955811ns 1381446 1c003e8a 01412483 lw x9, 20(x2) x9=a5a5a5a5 x2:1c009ba0 PA:1c009bb4 +75955831ns 1381447 1c003e8c 01012903 lw x18, 16(x2) x18=a5a5a5a5 x2:1c009ba0 PA:1c009bb0 +75955851ns 1381448 1c003e8e 00c12983 lw x19, 12(x2) x19=a5a5a5a5 x2:1c009ba0 PA:1c009bac +75955871ns 1381449 1c003e90 00812a03 lw x20, 8(x2) x20=a5a5a5a5 x2:1c009ba0 PA:1c009ba8 +75955891ns 1381450 1c003e92 02010113 addi x2, x2, 32 x2=1c009bc0 x2:1c009ba0 +75955910ns 1381451 1c003e94 00008067 jalr x0, x1, 0 x1:1c003580 +75955950ns 1381453 1c003580 10000513 addi x10, x0, 256 x10=00000100 +75955970ns 1381454 1c003584 ceaff0ef jal x1, -2838 x1=1c003588 +75956029ns 1381457 1c002a6e 69b0006f jal x0, 3738 +75956069ns 1381459 1c003908 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +75956088ns 1381460 1c00390c 00a005b3 add x11, x0, x10 x11=00000100 x10:00000100 +75956108ns 1381461 1c00390e c447a503 lw x10, -956(x15) x10=1c009e10 x15:1c009000 PA:1c008c44 +75956128ns 1381462 1c003912 0b60006f jal x0, 182 +75956168ns 1381464 1c0039c8 fe010113 addi x2, x2, -32 x2=1c009ba0 x2:1c009bc0 +75956187ns 1381465 1c0039ca 00912a23 sw x9, 20(x2) x9:a5a5a5a5 x2:1c009ba0 PA:1c009bb4 +75956207ns 1381466 1c0039cc 00358493 addi x9, x11, 3 x9=00000103 x11:00000100 +75956227ns 1381467 1c0039d0 ffc4f493 andi x9, x9, -4 x9=00000100 x9:00000103 +75956247ns 1381468 1c0039d2 01212823 sw x18, 16(x2) x18:a5a5a5a5 x2:1c009ba0 PA:1c009bb0 +75956267ns 1381469 1c0039d4 00112e23 sw x1, 28(x2) x1:1c003588 x2:1c009ba0 PA:1c009bbc +75956286ns 1381470 1c0039d6 00812c23 sw x8, 24(x2) x8:00000000 x2:1c009ba0 PA:1c009bb8 +75956306ns 1381471 1c0039d8 01312623 sw x19, 12(x2) x19:a5a5a5a5 x2:1c009ba0 PA:1c009bac +75956326ns 1381472 1c0039da 00848493 addi x9, x9, 8 x9=00000108 x9:00000100 +75956346ns 1381473 1c0039dc 00c00793 addi x15, x0, 12 x15=0000000c +75956366ns 1381474 1c0039de 00a00933 add x18, x0, x10 x18=1c009e10 x10:1c009e10 +75956385ns 1381475 1c0039e0 04f4f363 bgeu x9, x15, 70 x9:00000108 x15:0000000c +75956465ns 1381479 1c003a26 fc04d0e3 bge x9, x0, -64 x9:00000108 +75956544ns 1381483 1c0039e6 04b4e263 bltu x9, x11, 68 x9:00000108 x11:00000100 +75956563ns 1381484 1c0039ea 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +75956583ns 1381485 1c0039ec 87aff0ef jal x1, -3974 x1=1c0039f0 +75956643ns 1381488 1c002a66 fb1fe06f jal x0, -4176 +75956702ns 1381491 1c001a16 d6818793 addi x15, x3, -664 x15=1c009144 x3:1c0093dc +75956722ns 1381492 1c001a1a 0007a703 lw x14, 0(x15) x14=00000000 x15:1c009144 PA:1c009144 +75956761ns 1381494 1c001a1c 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +75956781ns 1381495 1c001a1e 00e7a023 sw x14, 0(x15) x14:00000001 x15:1c009144 PA:1c009144 +75956801ns 1381496 1c001a20 00008067 jalr x0, x1, 0 x1:1c0039f0 +75956841ns 1381498 1c0039f0 db81a703 lw x14, -584(x3) x14=00000000 x3:1c0093dc PA:1c009194 +75956860ns 1381499 1c0039f4 db818693 addi x13, x3, -584 x13=1c009194 x3:1c0093dc +75956880ns 1381500 1c0039f8 00e00433 add x8, x0, x14 x8=00000000 x14:00000000 +75956900ns 1381501 1c0039fa 04041363 bne x8, x0, 70 x8:00000000 +75956920ns 1381502 1c0039fc dbc18413 addi x8, x3, -580 x8=1c009198 x3:1c0093dc +75956940ns 1381503 1c003a00 00042783 lw x15, 0(x8) x15=1c0091b0 x8:1c009198 PA:1c009198 +75956979ns 1381505 1c003a02 00079563 bne x15, x0, 10 x15:1c0091b0 +75957038ns 1381508 1c003a0c 009005b3 add x11, x0, x9 x11=00000108 x9:00000108 +75957058ns 1381509 1c003a0e 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +75957078ns 1381510 1c003a10 5cc000ef jal x1, 1484 x1=1c003a12 +75957118ns 1381512 1c003fdc ff010113 addi x2, x2, -16 x2=1c009b90 x2:1c009ba0 +75957137ns 1381513 1c003fde 00812423 sw x8, 8(x2) x8:1c009198 x2:1c009b90 PA:1c009b98 +75957157ns 1381514 1c003fe0 00912223 sw x9, 4(x2) x9:00000108 x2:1c009b90 PA:1c009b94 +75957177ns 1381515 1c003fe2 00a00433 add x8, x0, x10 x8=1c009e10 x10:1c009e10 +75957197ns 1381516 1c003fe4 00b00533 add x10, x0, x11 x10=00000108 x11:00000108 +75957217ns 1381517 1c003fe6 00112623 sw x1, 12(x2) x1:1c003a12 x2:1c009b90 PA:1c009b9c +75957236ns 1381518 1c003fe8 dc01a023 sw x0, -576(x3) x3:1c0093dc PA:1c00919c +75957256ns 1381519 1c003fec a53fe0ef jal x1, -5550 x1=1c003ff0 +75957316ns 1381522 1c002a3e 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +75957335ns 1381523 1c002a42 c3c78793 addi x15, x15, -964 x15=1c008c3c x15:1c009000 +75957355ns 1381524 1c002a46 00a00733 add x14, x0, x10 x14=00000108 x10:00000108 +75957375ns 1381525 1c002a48 0007a503 lw x10, 0(x15) x10=1c00bebc x15:1c008c3c PA:1c008c3c +75957395ns 1381526 1c002a4a 1c0196b7 lui x13, 0x1c019000 x13=1c019000 +75957415ns 1381527 1c002a4e 1b068693 addi x13, x13, 432 x13=1c0191b0 x13:1c019000 +75957434ns 1381528 1c002a52 00a70733 add x14, x14, x10 x14=1c00bfc4 x14:00000108 x10:1c00bebc +75957454ns 1381529 1c002a54 00d76763 bltu x14, x13, 14 x14:1c00bfc4 x13:1c0191b0 +75957513ns 1381532 1c002a62 00e7a023 sw x14, 0(x15) x14:1c00bfc4 x15:1c008c3c PA:1c008c3c +75957533ns 1381533 1c002a64 00008067 jalr x0, x1, 0 x1:1c003ff0 +75957573ns 1381535 1c003ff0 fff00793 addi x15, x0, -1 x15=ffffffff +75957593ns 1381536 1c003ff2 00f51663 bne x10, x15, 12 x10:1c00bebc x15:ffffffff +75957652ns 1381539 1c003ffe 00c12083 lw x1, 12(x2) x1=1c003a12 x2:1c009b90 PA:1c009b9c +75957672ns 1381540 1c004000 00812403 lw x8, 8(x2) x8=1c009198 x2:1c009b90 PA:1c009b98 +75957692ns 1381541 1c004002 00412483 lw x9, 4(x2) x9=00000108 x2:1c009b90 PA:1c009b94 +75957711ns 1381542 1c004004 01010113 addi x2, x2, 16 x2=1c009ba0 x2:1c009b90 +75957731ns 1381543 1c004006 00008067 jalr x0, x1, 0 x1:1c003a12 +75957771ns 1381545 1c003a12 fff00993 addi x19, x0, -1 x19=ffffffff +75957791ns 1381546 1c003a14 07351a63 bne x10, x19, 116 x10:1c00bebc x19:ffffffff +75957850ns 1381549 1c003a88 00350413 addi x8, x10, 3 x8=1c00bebf x10:1c00bebc +75957870ns 1381550 1c003a8c ffc47413 andi x8, x8, -4 x8=1c00bebc x8:1c00bebf +75957890ns 1381551 1c003a8e fc8502e3 beq x10, x8, -60 x10:1c00bebc x8:1c00bebc +75957949ns 1381554 1c003a52 00942023 sw x9, 0(x8) x9:00000108 x8:1c00bebc PA:1c00bebc +75957969ns 1381555 1c003a54 00a0006f jal x0, 10 +75958008ns 1381557 1c003a5e 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +75958028ns 1381558 1c003a60 80aff0ef jal x1, -4086 x1=1c003a64 +75958087ns 1381561 1c002a6a 8e3ff06f jal x0, -1822 +75958127ns 1381563 1c00234c fc010113 addi x2, x2, -64 x2=1c009b60 x2:1c009ba0 +75958147ns 1381564 1c00234e 02812c23 sw x8, 56(x2) x8:1c00bebc x2:1c009b60 PA:1c009b98 +75958167ns 1381565 1c002350 d6818413 addi x8, x3, -664 x8=1c009144 x3:1c0093dc +75958186ns 1381566 1c002354 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +75958206ns 1381567 1c002356 02112e23 sw x1, 60(x2) x1:1c003a64 x2:1c009b60 PA:1c009b9c +75958226ns 1381568 1c002358 02912a23 sw x9, 52(x2) x9:00000108 x2:1c009b60 PA:1c009b94 +75958246ns 1381569 1c00235a 03212823 sw x18, 48(x2) x18:1c009e10 x2:1c009b60 PA:1c009b90 +75958266ns 1381570 1c00235c 03312623 sw x19, 44(x2) x19:ffffffff x2:1c009b60 PA:1c009b8c +75958285ns 1381571 1c00235e 03412423 sw x20, 40(x2) x20:a5a5a5a5 x2:1c009b60 PA:1c009b88 +75958305ns 1381572 1c002360 03512223 sw x21, 36(x2) x21:a5a5a5a5 x2:1c009b60 PA:1c009b84 +75958325ns 1381573 1c002362 03612023 sw x22, 32(x2) x22:a5a5a5a5 x2:1c009b60 PA:1c009b80 +75958345ns 1381574 1c002364 01712e23 sw x23, 28(x2) x23:a5a5a5a5 x2:1c009b60 PA:1c009b7c +75958365ns 1381575 1c002366 02079263 bne x15, x0, 36 x15:00000001 +75958444ns 1381579 1c00238a c83ff0ef jal x1, -894 x1=1c00238e +75958483ns 1381581 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +75958562ns 1381585 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +75958602ns 1381587 1c002014 00078863 beq x15, x0, 16 x15:00000001 +75958622ns 1381588 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +75958642ns 1381589 1c00201a 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +75958661ns 1381590 1c00201c 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +75958681ns 1381591 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c009db8 PA:1c009dfc +75958721ns 1381593 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +75958741ns 1381594 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c009db8 PA:1c009dfc +75958760ns 1381595 1c002024 00008067 jalr x0, x1, 0 x1:1c00238e +75958800ns 1381597 1c00238e 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +75958840ns 1381599 1c002390 fff78793 addi x15, x15, -1 x15=00000000 x15:00000001 +75958859ns 1381600 1c002392 00f42023 sw x15, 0(x8) x15:00000000 x8:1c009144 PA:1c009144 +75958879ns 1381601 1c002394 00042783 lw x15, 0(x8) x15=00000000 x8:1c009144 PA:1c009144 +75958919ns 1381603 1c002396 02078163 beq x15, x0, 34 x15:00000000 +75958978ns 1381606 1c0023b8 d601a783 lw x15, -672(x3) x15=00000003 x3:1c0093dc PA:1c00913c +75959018ns 1381608 1c0023bc fc078ee3 beq x15, x0, -36 x15:00000003 +75959037ns 1381609 1c0023be 1c009937 lui x18, 0x1c009000 x18=1c009000 +75959057ns 1381610 1c0023c2 00000413 addi x8, x0, 0 x8=00000000 +75959077ns 1381611 1c0023c4 93818493 addi x9, x3, -1736 x9=1c008d14 x3:1c0093dc +75959097ns 1381612 1c0023c8 00100993 addi x19, x0, 1 x19=00000001 +75959117ns 1381613 1c0023ca c8890913 addi x18, x18, -888 x18=1c008c88 x18:1c009000 +75959136ns 1381614 1c0023ce 01400a93 addi x21, x0, 20 x21=00000014 +75959156ns 1381615 1c0023d0 04c0006f jal x0, 76 +75959196ns 1381617 1c00241c 0004a783 lw x15, 0(x9) x15=00000000 x9:1c008d14 PA:1c008d14 +75959235ns 1381619 1c00241e fa079ae3 bne x15, x0, -76 x15:00000000 +75959255ns 1381620 1c002420 00040363 beq x8, x0, 6 x8:00000000 +75959334ns 1381624 1c002426 d8018713 addi x14, x3, -640 x14=1c00915c x3:1c0093dc +75959354ns 1381625 1c00242a 00072483 lw x9, 0(x14) x9=00000000 x14:1c00915c PA:1c00915c +75959374ns 1381626 1c00242c d8018413 addi x8, x3, -640 x8=1c00915c x3:1c0093dc +75959394ns 1381627 1c002430 00048d63 beq x9, x0, 26 x9:00000000 +75959473ns 1381631 1c00244a d8c1a783 lw x15, -628(x3) x15=00000000 x3:1c0093dc PA:1c009168 +75959512ns 1381633 1c00244e f40785e3 beq x15, x0, -182 x15:00000000 +75959572ns 1381636 1c002398 00000513 addi x10, x0, 0 x10=00000000 +75959592ns 1381637 1c00239a 00a12623 sw x10, 12(x2) x10:00000000 x2:1c009b60 PA:1c009b6c +75959611ns 1381638 1c00239c c8bff0ef jal x1, -886 x1=1c0023a0 +75959671ns 1381641 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +75959710ns 1381643 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +75959730ns 1381644 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +75959750ns 1381645 1c002030 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +75959790ns 1381647 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c009db8 PA:1c009dfc +75959829ns 1381649 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +75959849ns 1381650 1c002036 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +75959869ns 1381651 1c002038 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +75959889ns 1381652 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c009db8 PA:1c009dfc +75959928ns 1381654 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +75959948ns 1381655 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c009db8 PA:1c009dfc +75959968ns 1381656 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c009db8 PA:1c009dfc +75960007ns 1381658 1c002042 00079363 bne x15, x0, 6 x15:00000000 +75960027ns 1381659 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +75960106ns 1381663 1c002048 00008067 jalr x0, x1, 0 x1:1c0023a0 +75960146ns 1381665 1c0023a0 03c12083 lw x1, 60(x2) x1=1c003a64 x2:1c009b60 PA:1c009b9c +75960166ns 1381666 1c0023a2 03812403 lw x8, 56(x2) x8=1c00bebc x2:1c009b60 PA:1c009b98 +75960185ns 1381667 1c0023a4 00c12503 lw x10, 12(x2) x10=00000000 x2:1c009b60 PA:1c009b6c +75960205ns 1381668 1c0023a6 03412483 lw x9, 52(x2) x9=00000108 x2:1c009b60 PA:1c009b94 +75960225ns 1381669 1c0023a8 03012903 lw x18, 48(x2) x18=1c009e10 x2:1c009b60 PA:1c009b90 +75960245ns 1381670 1c0023aa 02c12983 lw x19, 44(x2) x19=ffffffff x2:1c009b60 PA:1c009b8c +75960265ns 1381671 1c0023ac 02812a03 lw x20, 40(x2) x20=a5a5a5a5 x2:1c009b60 PA:1c009b88 +75960284ns 1381672 1c0023ae 02412a83 lw x21, 36(x2) x21=a5a5a5a5 x2:1c009b60 PA:1c009b84 +75960304ns 1381673 1c0023b0 02012b03 lw x22, 32(x2) x22=a5a5a5a5 x2:1c009b60 PA:1c009b80 +75960324ns 1381674 1c0023b2 01c12b83 lw x23, 28(x2) x23=a5a5a5a5 x2:1c009b60 PA:1c009b7c +75960344ns 1381675 1c0023b4 04010113 addi x2, x2, 64 x2=1c009ba0 x2:1c009b60 +75960364ns 1381676 1c0023b6 00008067 jalr x0, x1, 0 x1:1c003a64 +75960403ns 1381678 1c003a64 00b40513 addi x10, x8, 11 x10=1c00bec7 x8:1c00bebc +75960423ns 1381679 1c003a68 00440793 addi x15, x8, 4 x15=1c00bec0 x8:1c00bebc +75960443ns 1381680 1c003a6c ff857513 andi x10, x10, -8 x10=1c00bec0 x10:1c00bec7 +75960463ns 1381681 1c003a6e 40f50733 sub x14, x10, x15 x14=00000000 x10:1c00bec0 x15:1c00bec0 +75960482ns 1381682 1c003a72 fcf500e3 beq x10, x15, -64 x10:1c00bec0 x15:1c00bec0 +75960542ns 1381685 1c003a32 01c12083 lw x1, 28(x2) x1=1c003588 x2:1c009ba0 PA:1c009bbc +75960561ns 1381686 1c003a34 01812403 lw x8, 24(x2) x8=00000000 x2:1c009ba0 PA:1c009bb8 +75960581ns 1381687 1c003a36 01412483 lw x9, 20(x2) x9=a5a5a5a5 x2:1c009ba0 PA:1c009bb4 +75960601ns 1381688 1c003a38 01012903 lw x18, 16(x2) x18=a5a5a5a5 x2:1c009ba0 PA:1c009bb0 +75960621ns 1381689 1c003a3a 00c12983 lw x19, 12(x2) x19=a5a5a5a5 x2:1c009ba0 PA:1c009bac +75960641ns 1381690 1c003a3c 02010113 addi x2, x2, 32 x2=1c009bc0 x2:1c009ba0 +75960660ns 1381691 1c003a3e 00008067 jalr x0, x1, 0 x1:1c003588 +75960700ns 1381693 1c003588 daa1aa23 sw x10, -588(x3) x10:1c00bec0 x3:1c0093dc PA:1c009190 +75960720ns 1381694 1c00358c db418493 addi x9, x3, -588 x9=1c009190 x3:1c0093dc +75960740ns 1381695 1c003590 fc0501e3 beq x10, x0, -62 x10:1c00bec0 +75960759ns 1381696 1c003592 1c009537 lui x10, 0x1c009000 x10=1c009000 +75960779ns 1381697 1c003596 8a850513 addi x10, x10, -1880 x10=1c0088a8 x10:1c009000 +75960799ns 1381698 1c00359a 139000ef jal x1, 2360 x1=1c00359e +75960858ns 1381701 1c003ed2 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +75960878ns 1381702 1c003ed6 00a005b3 add x11, x0, x10 x11=1c0088a8 x10:1c0088a8 +75960898ns 1381703 1c003ed8 c447a503 lw x10, -956(x15) x10=1c009e10 x15:1c009000 PA:1c008c44 +75960918ns 1381704 1c003edc f19ff06f jal x0, -232 +75960957ns 1381706 1c003df4 fe010113 addi x2, x2, -32 x2=1c009ba0 x2:1c009bc0 +75960977ns 1381707 1c003df6 00912a23 sw x9, 20(x2) x9:1c009190 x2:1c009ba0 PA:1c009bb4 +75960997ns 1381708 1c003df8 01212823 sw x18, 16(x2) x18:a5a5a5a5 x2:1c009ba0 PA:1c009bb0 +75961017ns 1381709 1c003dfa 00112e23 sw x1, 28(x2) x1:1c00359e x2:1c009ba0 PA:1c009bbc +75961036ns 1381710 1c003dfc 00812c23 sw x8, 24(x2) x8:00000000 x2:1c009ba0 PA:1c009bb8 +75961056ns 1381711 1c003dfe 01312623 sw x19, 12(x2) x19:a5a5a5a5 x2:1c009ba0 PA:1c009bac +75961076ns 1381712 1c003e00 01412423 sw x20, 8(x2) x20:a5a5a5a5 x2:1c009ba0 PA:1c009ba8 +75961096ns 1381713 1c003e02 00a004b3 add x9, x0, x10 x9=1c009e10 x10:1c009e10 +75961116ns 1381714 1c003e04 00b00933 add x18, x0, x11 x18=1c0088a8 x11:1c0088a8 +75961135ns 1381715 1c003e06 00050563 beq x10, x0, 10 x10:1c009e10 +75961155ns 1381716 1c003e08 01852783 lw x15, 24(x10) x15=00000001 x10:1c009e10 PA:1c009e28 +75961195ns 1381718 1c003e0a 00079363 bne x15, x0, 6 x15:00000001 +75961254ns 1381721 1c003e10 0184a783 lw x15, 24(x9) x15=00000001 x9:1c009e10 PA:1c009e28 +75961274ns 1381722 1c003e12 0084a403 lw x8, 8(x9) x8=1c00b914 x9:1c009e10 PA:1c009e18 +75961294ns 1381723 1c003e14 00079463 bne x15, x0, 8 x15:00000001 +75961353ns 1381726 1c003e1c 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +75961373ns 1381727 1c003e20 a1478793 addi x15, x15, -1516 x15=1c008a14 x15:1c009000 +75961393ns 1381728 1c003e24 02f41c63 bne x8, x15, 56 x8:1c00b914 x15:1c008a14 +75961452ns 1381731 1c003e5c 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +75961472ns 1381732 1c003e60 a3478793 addi x15, x15, -1484 x15=1c008a34 x15:1c009000 +75961492ns 1381733 1c003e64 00f41463 bne x8, x15, 8 x8:1c00b914 x15:1c008a34 +75961551ns 1381736 1c003e6c 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +75961571ns 1381737 1c003e70 9f478793 addi x15, x15, -1548 x15=1c0089f4 x15:1c009000 +75961591ns 1381738 1c003e74 faf41be3 bne x8, x15, -74 x8:1c00b914 x15:1c0089f4 +75961670ns 1381742 1c003e2a 00c45783 lhu x15, 12(x8) x15=00000089 x8:1c00b914 PA:1c00b920 +75961709ns 1381744 1c003e2e 0087f793 andi x15, x15, 8 x15=00000008 x15:00000089 +75961729ns 1381745 1c003e30 04078663 beq x15, x0, 76 x15:00000008 +75961749ns 1381746 1c003e32 01042783 lw x15, 16(x8) x15=1c00bab8 x8:1c00b914 PA:1c00b924 +75961789ns 1381748 1c003e34 04078463 beq x15, x0, 72 x15:1c00bab8 +75961808ns 1381749 1c003e36 fff00993 addi x19, x0, -1 x19=ffffffff +75961828ns 1381750 1c003e38 00a00a13 addi x20, x0, 10 x20=0000000a +75961848ns 1381751 1c003e3a 00842783 lw x15, 8(x8) x15=00000000 x8:1c00b914 PA:1c00b91c +75961868ns 1381752 1c003e3c 00094583 lbu x11, 0(x18) x11=0000006d x18:1c0088a8 PA:1c0088a8 +75961888ns 1381753 1c003e40 fff78793 addi x15, x15, -1 x15=ffffffff x15:00000000 +75961907ns 1381754 1c003e42 04059a63 bne x11, x0, 84 x11:0000006d +75961967ns 1381757 1c003e96 00f42423 sw x15, 8(x8) x15:ffffffff x8:1c00b914 PA:1c00b91c +75961986ns 1381758 1c003e98 00190913 addi x18, x18, 1 x18=1c0088a9 x18:1c0088a8 +75962006ns 1381759 1c003e9a 0007d763 bge x15, x0, 14 x15:ffffffff +75962026ns 1381760 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +75962066ns 1381762 1c003ea0 00e7cb63 blt x15, x14, 22 x15:ffffffff x14:fffffc00 +75962085ns 1381763 1c003ea4 01458963 beq x11, x20, 18 x11:0000006d x20:0000000a +75962105ns 1381764 1c003ea8 00042783 lw x15, 0(x8) x15=1c00bab8 x8:1c00b914 PA:1c00b914 +75962145ns 1381766 1c003eaa 00178713 addi x14, x15, 1 x14=1c00bab9 x15:1c00bab8 +75962165ns 1381767 1c003eae 00e42023 sw x14, 0(x8) x14:1c00bab9 x8:1c00b914 PA:1c00b914 +75962184ns 1381768 1c003eb0 00b78023 sb x11, 0(x15) x11:0000006d x15:1c00bab8 PA:1c00bab8 +75962204ns 1381769 1c003eb4 f87ff06f jal x0, -122 +75962244ns 1381771 1c003e3a 00842783 lw x15, 8(x8) x15=ffffffff x8:1c00b914 PA:1c00b91c +75962264ns 1381772 1c003e3c 00094583 lbu x11, 0(x18) x11=00000061 x18:1c0088a9 PA:1c0088a9 +75962283ns 1381773 1c003e40 fff78793 addi x15, x15, -1 x15=fffffffe x15:ffffffff +75962303ns 1381774 1c003e42 04059a63 bne x11, x0, 84 x11:00000061 +75962363ns 1381777 1c003e96 00f42423 sw x15, 8(x8) x15:fffffffe x8:1c00b914 PA:1c00b91c +75962382ns 1381778 1c003e98 00190913 addi x18, x18, 1 x18=1c0088aa x18:1c0088a9 +75962402ns 1381779 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffffe +75962422ns 1381780 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +75962461ns 1381782 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffffe x14:fffffc00 +75962481ns 1381783 1c003ea4 01458963 beq x11, x20, 18 x11:00000061 x20:0000000a +75962501ns 1381784 1c003ea8 00042783 lw x15, 0(x8) x15=1c00bab9 x8:1c00b914 PA:1c00b914 +75962541ns 1381786 1c003eaa 00178713 addi x14, x15, 1 x14=1c00baba x15:1c00bab9 +75962560ns 1381787 1c003eae 00e42023 sw x14, 0(x8) x14:1c00baba x8:1c00b914 PA:1c00b914 +75962580ns 1381788 1c003eb0 00b78023 sb x11, 0(x15) x11:00000061 x15:1c00bab9 PA:1c00bab9 +75962600ns 1381789 1c003eb4 f87ff06f jal x0, -122 +75962640ns 1381791 1c003e3a 00842783 lw x15, 8(x8) x15=fffffffe x8:1c00b914 PA:1c00b91c +75962659ns 1381792 1c003e3c 00094583 lbu x11, 0(x18) x11=0000006c x18:1c0088aa PA:1c0088aa +75962679ns 1381793 1c003e40 fff78793 addi x15, x15, -1 x15=fffffffd x15:fffffffe +75962699ns 1381794 1c003e42 04059a63 bne x11, x0, 84 x11:0000006c +75962758ns 1381797 1c003e96 00f42423 sw x15, 8(x8) x15:fffffffd x8:1c00b914 PA:1c00b91c +75962778ns 1381798 1c003e98 00190913 addi x18, x18, 1 x18=1c0088ab x18:1c0088aa +75962798ns 1381799 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffffd +75962818ns 1381800 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +75962857ns 1381802 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffffd x14:fffffc00 +75962877ns 1381803 1c003ea4 01458963 beq x11, x20, 18 x11:0000006c x20:0000000a +75962897ns 1381804 1c003ea8 00042783 lw x15, 0(x8) x15=1c00baba x8:1c00b914 PA:1c00b914 +75962937ns 1381806 1c003eaa 00178713 addi x14, x15, 1 x14=1c00babb x15:1c00baba +75962956ns 1381807 1c003eae 00e42023 sw x14, 0(x8) x14:1c00babb x8:1c00b914 PA:1c00b914 +75962976ns 1381808 1c003eb0 00b78023 sb x11, 0(x15) x11:0000006c x15:1c00baba PA:1c00baba +75962996ns 1381809 1c003eb4 f87ff06f jal x0, -122 +75963035ns 1381811 1c003e3a 00842783 lw x15, 8(x8) x15=fffffffd x8:1c00b914 PA:1c00b91c +75963055ns 1381812 1c003e3c 00094583 lbu x11, 0(x18) x11=0000006c x18:1c0088ab PA:1c0088ab +75963075ns 1381813 1c003e40 fff78793 addi x15, x15, -1 x15=fffffffc x15:fffffffd +75963095ns 1381814 1c003e42 04059a63 bne x11, x0, 84 x11:0000006c +75963154ns 1381817 1c003e96 00f42423 sw x15, 8(x8) x15:fffffffc x8:1c00b914 PA:1c00b91c +75963174ns 1381818 1c003e98 00190913 addi x18, x18, 1 x18=1c0088ac x18:1c0088ab +75963194ns 1381819 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffffc +75963214ns 1381820 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +75963253ns 1381822 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffffc x14:fffffc00 +75963273ns 1381823 1c003ea4 01458963 beq x11, x20, 18 x11:0000006c x20:0000000a +75963293ns 1381824 1c003ea8 00042783 lw x15, 0(x8) x15=1c00babb x8:1c00b914 PA:1c00b914 +75963332ns 1381826 1c003eaa 00178713 addi x14, x15, 1 x14=1c00babc x15:1c00babb +75963352ns 1381827 1c003eae 00e42023 sw x14, 0(x8) x14:1c00babc x8:1c00b914 PA:1c00b914 +75963372ns 1381828 1c003eb0 00b78023 sb x11, 0(x15) x11:0000006c x15:1c00babb PA:1c00babb +75963392ns 1381829 1c003eb4 f87ff06f jal x0, -122 +75963431ns 1381831 1c003e3a 00842783 lw x15, 8(x8) x15=fffffffc x8:1c00b914 PA:1c00b91c +75963451ns 1381832 1c003e3c 00094583 lbu x11, 0(x18) x11=0000006f x18:1c0088ac PA:1c0088ac +75963471ns 1381833 1c003e40 fff78793 addi x15, x15, -1 x15=fffffffb x15:fffffffc +75963491ns 1381834 1c003e42 04059a63 bne x11, x0, 84 x11:0000006f +75963550ns 1381837 1c003e96 00f42423 sw x15, 8(x8) x15:fffffffb x8:1c00b914 PA:1c00b91c +75963570ns 1381838 1c003e98 00190913 addi x18, x18, 1 x18=1c0088ad x18:1c0088ac +75963590ns 1381839 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffffb +75963609ns 1381840 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +75963649ns 1381842 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffffb x14:fffffc00 +75963669ns 1381843 1c003ea4 01458963 beq x11, x20, 18 x11:0000006f x20:0000000a +75963689ns 1381844 1c003ea8 00042783 lw x15, 0(x8) x15=1c00babc x8:1c00b914 PA:1c00b914 +75963728ns 1381846 1c003eaa 00178713 addi x14, x15, 1 x14=1c00babd x15:1c00babc +75963748ns 1381847 1c003eae 00e42023 sw x14, 0(x8) x14:1c00babd x8:1c00b914 PA:1c00b914 +75963768ns 1381848 1c003eb0 00b78023 sb x11, 0(x15) x11:0000006f x15:1c00babc PA:1c00babc +75963788ns 1381849 1c003eb4 f87ff06f jal x0, -122 +75963827ns 1381851 1c003e3a 00842783 lw x15, 8(x8) x15=fffffffb x8:1c00b914 PA:1c00b91c +75963847ns 1381852 1c003e3c 00094583 lbu x11, 0(x18) x11=00000063 x18:1c0088ad PA:1c0088ad +75963867ns 1381853 1c003e40 fff78793 addi x15, x15, -1 x15=fffffffa x15:fffffffb +75963887ns 1381854 1c003e42 04059a63 bne x11, x0, 84 x11:00000063 +75963946ns 1381857 1c003e96 00f42423 sw x15, 8(x8) x15:fffffffa x8:1c00b914 PA:1c00b91c +75963966ns 1381858 1c003e98 00190913 addi x18, x18, 1 x18=1c0088ae x18:1c0088ad +75963985ns 1381859 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffffa +75964005ns 1381860 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +75964045ns 1381862 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffffa x14:fffffc00 +75964065ns 1381863 1c003ea4 01458963 beq x11, x20, 18 x11:00000063 x20:0000000a +75964084ns 1381864 1c003ea8 00042783 lw x15, 0(x8) x15=1c00babd x8:1c00b914 PA:1c00b914 +75964124ns 1381866 1c003eaa 00178713 addi x14, x15, 1 x14=1c00babe x15:1c00babd +75964144ns 1381867 1c003eae 00e42023 sw x14, 0(x8) x14:1c00babe x8:1c00b914 PA:1c00b914 +75964164ns 1381868 1c003eb0 00b78023 sb x11, 0(x15) x11:00000063 x15:1c00babd PA:1c00babd +75964183ns 1381869 1c003eb4 f87ff06f jal x0, -122 +75964223ns 1381871 1c003e3a 00842783 lw x15, 8(x8) x15=fffffffa x8:1c00b914 PA:1c00b91c +75964243ns 1381872 1c003e3c 00094583 lbu x11, 0(x18) x11=00000020 x18:1c0088ae PA:1c0088ae +75964263ns 1381873 1c003e40 fff78793 addi x15, x15, -1 x15=fffffff9 x15:fffffffa +75964282ns 1381874 1c003e42 04059a63 bne x11, x0, 84 x11:00000020 +75964342ns 1381877 1c003e96 00f42423 sw x15, 8(x8) x15:fffffff9 x8:1c00b914 PA:1c00b91c +75964362ns 1381878 1c003e98 00190913 addi x18, x18, 1 x18=1c0088af x18:1c0088ae +75964381ns 1381879 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffff9 +75964401ns 1381880 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +75964441ns 1381882 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffff9 x14:fffffc00 +75964460ns 1381883 1c003ea4 01458963 beq x11, x20, 18 x11:00000020 x20:0000000a +75964480ns 1381884 1c003ea8 00042783 lw x15, 0(x8) x15=1c00babe x8:1c00b914 PA:1c00b914 +75964520ns 1381886 1c003eaa 00178713 addi x14, x15, 1 x14=1c00babf x15:1c00babe +75964540ns 1381887 1c003eae 00e42023 sw x14, 0(x8) x14:1c00babf x8:1c00b914 PA:1c00b914 +75964559ns 1381888 1c003eb0 00b78023 sb x11, 0(x15) x11:00000020 x15:1c00babe PA:1c00babe +75964579ns 1381889 1c003eb4 f87ff06f jal x0, -122 +75964619ns 1381891 1c003e3a 00842783 lw x15, 8(x8) x15=fffffff9 x8:1c00b914 PA:1c00b91c +75964639ns 1381892 1c003e3c 00094583 lbu x11, 0(x18) x11=00000072 x18:1c0088af PA:1c0088af +75964658ns 1381893 1c003e40 fff78793 addi x15, x15, -1 x15=fffffff8 x15:fffffff9 +75964678ns 1381894 1c003e42 04059a63 bne x11, x0, 84 x11:00000072 +75964738ns 1381897 1c003e96 00f42423 sw x15, 8(x8) x15:fffffff8 x8:1c00b914 PA:1c00b91c +75964757ns 1381898 1c003e98 00190913 addi x18, x18, 1 x18=1c0088b0 x18:1c0088af +75964777ns 1381899 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffff8 +75964797ns 1381900 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +75964837ns 1381902 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffff8 x14:fffffc00 +75964856ns 1381903 1c003ea4 01458963 beq x11, x20, 18 x11:00000072 x20:0000000a +75964876ns 1381904 1c003ea8 00042783 lw x15, 0(x8) x15=1c00babf x8:1c00b914 PA:1c00b914 +75964916ns 1381906 1c003eaa 00178713 addi x14, x15, 1 x14=1c00bac0 x15:1c00babf +75964935ns 1381907 1c003eae 00e42023 sw x14, 0(x8) x14:1c00bac0 x8:1c00b914 PA:1c00b914 +75964955ns 1381908 1c003eb0 00b78023 sb x11, 0(x15) x11:00000072 x15:1c00babf PA:1c00babf +75964975ns 1381909 1c003eb4 f87ff06f jal x0, -122 +75965015ns 1381911 1c003e3a 00842783 lw x15, 8(x8) x15=fffffff8 x8:1c00b914 PA:1c00b91c +75965034ns 1381912 1c003e3c 00094583 lbu x11, 0(x18) x11=00000078 x18:1c0088b0 PA:1c0088b0 +75965054ns 1381913 1c003e40 fff78793 addi x15, x15, -1 x15=fffffff7 x15:fffffff8 +75965074ns 1381914 1c003e42 04059a63 bne x11, x0, 84 x11:00000078 +75965133ns 1381917 1c003e96 00f42423 sw x15, 8(x8) x15:fffffff7 x8:1c00b914 PA:1c00b91c +75965153ns 1381918 1c003e98 00190913 addi x18, x18, 1 x18=1c0088b1 x18:1c0088b0 +75965173ns 1381919 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffff7 +75965193ns 1381920 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +75965232ns 1381922 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffff7 x14:fffffc00 +75965252ns 1381923 1c003ea4 01458963 beq x11, x20, 18 x11:00000078 x20:0000000a +75965272ns 1381924 1c003ea8 00042783 lw x15, 0(x8) x15=1c00bac0 x8:1c00b914 PA:1c00b914 +75965312ns 1381926 1c003eaa 00178713 addi x14, x15, 1 x14=1c00bac1 x15:1c00bac0 +75965331ns 1381927 1c003eae 00e42023 sw x14, 0(x8) x14:1c00bac1 x8:1c00b914 PA:1c00b914 +75965351ns 1381928 1c003eb0 00b78023 sb x11, 0(x15) x11:00000078 x15:1c00bac0 PA:1c00bac0 +75965371ns 1381929 1c003eb4 f87ff06f jal x0, -122 +75965411ns 1381931 1c003e3a 00842783 lw x15, 8(x8) x15=fffffff7 x8:1c00b914 PA:1c00b91c +75965430ns 1381932 1c003e3c 00094583 lbu x11, 0(x18) x11=00000020 x18:1c0088b1 PA:1c0088b1 +75965450ns 1381933 1c003e40 fff78793 addi x15, x15, -1 x15=fffffff6 x15:fffffff7 +75965470ns 1381934 1c003e42 04059a63 bne x11, x0, 84 x11:00000020 +75965529ns 1381937 1c003e96 00f42423 sw x15, 8(x8) x15:fffffff6 x8:1c00b914 PA:1c00b91c +75965549ns 1381938 1c003e98 00190913 addi x18, x18, 1 x18=1c0088b2 x18:1c0088b1 +75965569ns 1381939 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffff6 +75965589ns 1381940 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +75965628ns 1381942 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffff6 x14:fffffc00 +75965648ns 1381943 1c003ea4 01458963 beq x11, x20, 18 x11:00000020 x20:0000000a +75965668ns 1381944 1c003ea8 00042783 lw x15, 0(x8) x15=1c00bac1 x8:1c00b914 PA:1c00b914 +75965707ns 1381946 1c003eaa 00178713 addi x14, x15, 1 x14=1c00bac2 x15:1c00bac1 +75965727ns 1381947 1c003eae 00e42023 sw x14, 0(x8) x14:1c00bac2 x8:1c00b914 PA:1c00b914 +75965747ns 1381948 1c003eb0 00b78023 sb x11, 0(x15) x11:00000020 x15:1c00bac1 PA:1c00bac1 +75965767ns 1381949 1c003eb4 f87ff06f jal x0, -122 +75965806ns 1381951 1c003e3a 00842783 lw x15, 8(x8) x15=fffffff6 x8:1c00b914 PA:1c00b91c +75965826ns 1381952 1c003e3c 00094583 lbu x11, 0(x18) x11=00000062 x18:1c0088b2 PA:1c0088b2 +75965846ns 1381953 1c003e40 fff78793 addi x15, x15, -1 x15=fffffff5 x15:fffffff6 +75965866ns 1381954 1c003e42 04059a63 bne x11, x0, 84 x11:00000062 +75965925ns 1381957 1c003e96 00f42423 sw x15, 8(x8) x15:fffffff5 x8:1c00b914 PA:1c00b91c +75965945ns 1381958 1c003e98 00190913 addi x18, x18, 1 x18=1c0088b3 x18:1c0088b2 +75965965ns 1381959 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffff5 +75965984ns 1381960 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +75966024ns 1381962 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffff5 x14:fffffc00 +75966044ns 1381963 1c003ea4 01458963 beq x11, x20, 18 x11:00000062 x20:0000000a +75966064ns 1381964 1c003ea8 00042783 lw x15, 0(x8) x15=1c00bac2 x8:1c00b914 PA:1c00b914 +75966103ns 1381966 1c003eaa 00178713 addi x14, x15, 1 x14=1c00bac3 x15:1c00bac2 +75966123ns 1381967 1c003eae 00e42023 sw x14, 0(x8) x14:1c00bac3 x8:1c00b914 PA:1c00b914 +75966143ns 1381968 1c003eb0 00b78023 sb x11, 0(x15) x11:00000062 x15:1c00bac2 PA:1c00bac2 +75966163ns 1381969 1c003eb4 f87ff06f jal x0, -122 +75966202ns 1381971 1c003e3a 00842783 lw x15, 8(x8) x15=fffffff5 x8:1c00b914 PA:1c00b91c +75966222ns 1381972 1c003e3c 00094583 lbu x11, 0(x18) x11=00000075 x18:1c0088b3 PA:1c0088b3 +75966242ns 1381973 1c003e40 fff78793 addi x15, x15, -1 x15=fffffff4 x15:fffffff5 +75966262ns 1381974 1c003e42 04059a63 bne x11, x0, 84 x11:00000075 +75966321ns 1381977 1c003e96 00f42423 sw x15, 8(x8) x15:fffffff4 x8:1c00b914 PA:1c00b91c +75966341ns 1381978 1c003e98 00190913 addi x18, x18, 1 x18=1c0088b4 x18:1c0088b3 +75966361ns 1381979 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffff4 +75966380ns 1381980 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +75966420ns 1381982 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffff4 x14:fffffc00 +75966440ns 1381983 1c003ea4 01458963 beq x11, x20, 18 x11:00000075 x20:0000000a +75966459ns 1381984 1c003ea8 00042783 lw x15, 0(x8) x15=1c00bac3 x8:1c00b914 PA:1c00b914 +75966499ns 1381986 1c003eaa 00178713 addi x14, x15, 1 x14=1c00bac4 x15:1c00bac3 +75966519ns 1381987 1c003eae 00e42023 sw x14, 0(x8) x14:1c00bac4 x8:1c00b914 PA:1c00b914 +75966539ns 1381988 1c003eb0 00b78023 sb x11, 0(x15) x11:00000075 x15:1c00bac3 PA:1c00bac3 +75966558ns 1381989 1c003eb4 f87ff06f jal x0, -122 +75966598ns 1381991 1c003e3a 00842783 lw x15, 8(x8) x15=fffffff4 x8:1c00b914 PA:1c00b91c +75966618ns 1381992 1c003e3c 00094583 lbu x11, 0(x18) x11=00000066 x18:1c0088b4 PA:1c0088b4 +75966638ns 1381993 1c003e40 fff78793 addi x15, x15, -1 x15=fffffff3 x15:fffffff4 +75966657ns 1381994 1c003e42 04059a63 bne x11, x0, 84 x11:00000066 +75966717ns 1381997 1c003e96 00f42423 sw x15, 8(x8) x15:fffffff3 x8:1c00b914 PA:1c00b91c +75966737ns 1381998 1c003e98 00190913 addi x18, x18, 1 x18=1c0088b5 x18:1c0088b4 +75966756ns 1381999 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffff3 +75966776ns 1382000 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +75966816ns 1382002 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffff3 x14:fffffc00 +75966836ns 1382003 1c003ea4 01458963 beq x11, x20, 18 x11:00000066 x20:0000000a +75966855ns 1382004 1c003ea8 00042783 lw x15, 0(x8) x15=1c00bac4 x8:1c00b914 PA:1c00b914 +75966895ns 1382006 1c003eaa 00178713 addi x14, x15, 1 x14=1c00bac5 x15:1c00bac4 +75966915ns 1382007 1c003eae 00e42023 sw x14, 0(x8) x14:1c00bac5 x8:1c00b914 PA:1c00b914 +75966934ns 1382008 1c003eb0 00b78023 sb x11, 0(x15) x11:00000066 x15:1c00bac4 PA:1c00bac4 +75966954ns 1382009 1c003eb4 f87ff06f jal x0, -122 +75966994ns 1382011 1c003e3a 00842783 lw x15, 8(x8) x15=fffffff3 x8:1c00b914 PA:1c00b91c +75967014ns 1382012 1c003e3c 00094583 lbu x11, 0(x18) x11=00000066 x18:1c0088b5 PA:1c0088b5 +75967033ns 1382013 1c003e40 fff78793 addi x15, x15, -1 x15=fffffff2 x15:fffffff3 +75967053ns 1382014 1c003e42 04059a63 bne x11, x0, 84 x11:00000066 +75967113ns 1382017 1c003e96 00f42423 sw x15, 8(x8) x15:fffffff2 x8:1c00b914 PA:1c00b91c +75967132ns 1382018 1c003e98 00190913 addi x18, x18, 1 x18=1c0088b6 x18:1c0088b5 +75967152ns 1382019 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffff2 +75967172ns 1382020 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +75967212ns 1382022 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffff2 x14:fffffc00 +75967231ns 1382023 1c003ea4 01458963 beq x11, x20, 18 x11:00000066 x20:0000000a +75967251ns 1382024 1c003ea8 00042783 lw x15, 0(x8) x15=1c00bac5 x8:1c00b914 PA:1c00b914 +75967291ns 1382026 1c003eaa 00178713 addi x14, x15, 1 x14=1c00bac6 x15:1c00bac5 +75967311ns 1382027 1c003eae 00e42023 sw x14, 0(x8) x14:1c00bac6 x8:1c00b914 PA:1c00b914 +75967330ns 1382028 1c003eb0 00b78023 sb x11, 0(x15) x11:00000066 x15:1c00bac5 PA:1c00bac5 +75967350ns 1382029 1c003eb4 f87ff06f jal x0, -122 +75967390ns 1382031 1c003e3a 00842783 lw x15, 8(x8) x15=fffffff2 x8:1c00b914 PA:1c00b91c +75967409ns 1382032 1c003e3c 00094583 lbu x11, 0(x18) x11=00000065 x18:1c0088b6 PA:1c0088b6 +75967429ns 1382033 1c003e40 fff78793 addi x15, x15, -1 x15=fffffff1 x15:fffffff2 +75967449ns 1382034 1c003e42 04059a63 bne x11, x0, 84 x11:00000065 +75967508ns 1382037 1c003e96 00f42423 sw x15, 8(x8) x15:fffffff1 x8:1c00b914 PA:1c00b91c +75967528ns 1382038 1c003e98 00190913 addi x18, x18, 1 x18=1c0088b7 x18:1c0088b6 +75967548ns 1382039 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffff1 +75967568ns 1382040 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +75967607ns 1382042 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffff1 x14:fffffc00 +75967627ns 1382043 1c003ea4 01458963 beq x11, x20, 18 x11:00000065 x20:0000000a +75967647ns 1382044 1c003ea8 00042783 lw x15, 0(x8) x15=1c00bac6 x8:1c00b914 PA:1c00b914 +75967687ns 1382046 1c003eaa 00178713 addi x14, x15, 1 x14=1c00bac7 x15:1c00bac6 +75967706ns 1382047 1c003eae 00e42023 sw x14, 0(x8) x14:1c00bac7 x8:1c00b914 PA:1c00b914 +75967726ns 1382048 1c003eb0 00b78023 sb x11, 0(x15) x11:00000065 x15:1c00bac6 PA:1c00bac6 +75967746ns 1382049 1c003eb4 f87ff06f jal x0, -122 +75967786ns 1382051 1c003e3a 00842783 lw x15, 8(x8) x15=fffffff1 x8:1c00b914 PA:1c00b91c +75967805ns 1382052 1c003e3c 00094583 lbu x11, 0(x18) x11=00000072 x18:1c0088b7 PA:1c0088b7 +75967825ns 1382053 1c003e40 fff78793 addi x15, x15, -1 x15=fffffff0 x15:fffffff1 +75967845ns 1382054 1c003e42 04059a63 bne x11, x0, 84 x11:00000072 +75967904ns 1382057 1c003e96 00f42423 sw x15, 8(x8) x15:fffffff0 x8:1c00b914 PA:1c00b91c +75967924ns 1382058 1c003e98 00190913 addi x18, x18, 1 x18=1c0088b8 x18:1c0088b7 +75967944ns 1382059 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffff0 +75967964ns 1382060 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +75968003ns 1382062 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffff0 x14:fffffc00 +75968023ns 1382063 1c003ea4 01458963 beq x11, x20, 18 x11:00000072 x20:0000000a +75968043ns 1382064 1c003ea8 00042783 lw x15, 0(x8) x15=1c00bac7 x8:1c00b914 PA:1c00b914 +75968082ns 1382066 1c003eaa 00178713 addi x14, x15, 1 x14=1c00bac8 x15:1c00bac7 +75968102ns 1382067 1c003eae 00e42023 sw x14, 0(x8) x14:1c00bac8 x8:1c00b914 PA:1c00b914 +75968122ns 1382068 1c003eb0 00b78023 sb x11, 0(x15) x11:00000072 x15:1c00bac7 PA:1c00bac7 +75968142ns 1382069 1c003eb4 f87ff06f jal x0, -122 +75968181ns 1382071 1c003e3a 00842783 lw x15, 8(x8) x15=fffffff0 x8:1c00b914 PA:1c00b91c +75968201ns 1382072 1c003e3c 00094583 lbu x11, 0(x18) x11=00000020 x18:1c0088b8 PA:1c0088b8 +75968221ns 1382073 1c003e40 fff78793 addi x15, x15, -1 x15=ffffffef x15:fffffff0 +75968241ns 1382074 1c003e42 04059a63 bne x11, x0, 84 x11:00000020 +75968300ns 1382077 1c003e96 00f42423 sw x15, 8(x8) x15:ffffffef x8:1c00b914 PA:1c00b91c +75968320ns 1382078 1c003e98 00190913 addi x18, x18, 1 x18=1c0088b9 x18:1c0088b8 +75968340ns 1382079 1c003e9a 0007d763 bge x15, x0, 14 x15:ffffffef +75968360ns 1382080 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +75968399ns 1382082 1c003ea0 00e7cb63 blt x15, x14, 22 x15:ffffffef x14:fffffc00 +75968419ns 1382083 1c003ea4 01458963 beq x11, x20, 18 x11:00000020 x20:0000000a +75968439ns 1382084 1c003ea8 00042783 lw x15, 0(x8) x15=1c00bac8 x8:1c00b914 PA:1c00b914 +75968478ns 1382086 1c003eaa 00178713 addi x14, x15, 1 x14=1c00bac9 x15:1c00bac8 +75968498ns 1382087 1c003eae 00e42023 sw x14, 0(x8) x14:1c00bac9 x8:1c00b914 PA:1c00b914 +75968518ns 1382088 1c003eb0 00b78023 sb x11, 0(x15) x11:00000020 x15:1c00bac8 PA:1c00bac8 +75968538ns 1382089 1c003eb4 f87ff06f jal x0, -122 +75968577ns 1382091 1c003e3a 00842783 lw x15, 8(x8) x15=ffffffef x8:1c00b914 PA:1c00b91c +75968597ns 1382092 1c003e3c 00094583 lbu x11, 0(x18) x11=00000031 x18:1c0088b9 PA:1c0088b9 +75968617ns 1382093 1c003e40 fff78793 addi x15, x15, -1 x15=ffffffee x15:ffffffef +75968637ns 1382094 1c003e42 04059a63 bne x11, x0, 84 x11:00000031 +75968696ns 1382097 1c003e96 00f42423 sw x15, 8(x8) x15:ffffffee x8:1c00b914 PA:1c00b91c +75968716ns 1382098 1c003e98 00190913 addi x18, x18, 1 x18=1c0088ba x18:1c0088b9 +75968736ns 1382099 1c003e9a 0007d763 bge x15, x0, 14 x15:ffffffee +75968755ns 1382100 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +75968795ns 1382102 1c003ea0 00e7cb63 blt x15, x14, 22 x15:ffffffee x14:fffffc00 +75968815ns 1382103 1c003ea4 01458963 beq x11, x20, 18 x11:00000031 x20:0000000a +75968835ns 1382104 1c003ea8 00042783 lw x15, 0(x8) x15=1c00bac9 x8:1c00b914 PA:1c00b914 +75968874ns 1382106 1c003eaa 00178713 addi x14, x15, 1 x14=1c00baca x15:1c00bac9 +75968894ns 1382107 1c003eae 00e42023 sw x14, 0(x8) x14:1c00baca x8:1c00b914 PA:1c00b914 +75968914ns 1382108 1c003eb0 00b78023 sb x11, 0(x15) x11:00000031 x15:1c00bac9 PA:1c00bac9 +75968933ns 1382109 1c003eb4 f87ff06f jal x0, -122 +75968973ns 1382111 1c003e3a 00842783 lw x15, 8(x8) x15=ffffffee x8:1c00b914 PA:1c00b91c +75968993ns 1382112 1c003e3c 00094583 lbu x11, 0(x18) x11=00000000 x18:1c0088ba PA:1c0088ba +75969013ns 1382113 1c003e40 fff78793 addi x15, x15, -1 x15=ffffffed x15:ffffffee +75969032ns 1382114 1c003e42 04059a63 bne x11, x0, 84 x11:00000000 +75969052ns 1382115 1c003e44 00f42423 sw x15, 8(x8) x15:ffffffed x8:1c00b914 PA:1c00b91c +75969072ns 1382116 1c003e46 0607de63 bge x15, x0, 124 x15:ffffffed +75969092ns 1382117 1c003e4a 00800633 add x12, x0, x8 x12=1c00b914 x8:1c00b914 +75969112ns 1382118 1c003e4c 00a00593 addi x11, x0, 10 x11=0000000a +75969131ns 1382119 1c003e4e 00900533 add x10, x0, x9 x10=1c009e10 x9:1c009e10 +75969151ns 1382120 1c003e50 25a000ef jal x1, 602 x1=1c003e52 +75969191ns 1382122 1c0040aa fe010113 addi x2, x2, -32 x2=1c009b80 x2:1c009ba0 +75969211ns 1382123 1c0040ac 00812c23 sw x8, 24(x2) x8:1c00b914 x2:1c009b80 PA:1c009b98 +75969230ns 1382124 1c0040ae 00912a23 sw x9, 20(x2) x9:1c009e10 x2:1c009b80 PA:1c009b94 +75969250ns 1382125 1c0040b0 01212823 sw x18, 16(x2) x18:1c0088ba x2:1c009b80 PA:1c009b90 +75969270ns 1382126 1c0040b2 00112e23 sw x1, 28(x2) x1:1c003e52 x2:1c009b80 PA:1c009b9c +75969290ns 1382127 1c0040b4 01312623 sw x19, 12(x2) x19:ffffffff x2:1c009b80 PA:1c009b8c +75969310ns 1382128 1c0040b6 00a004b3 add x9, x0, x10 x9=1c009e10 x10:1c009e10 +75969329ns 1382129 1c0040b8 00b00933 add x18, x0, x11 x18=0000000a x11:0000000a +75969349ns 1382130 1c0040ba 00c00433 add x8, x0, x12 x8=1c00b914 x12:1c00b914 +75969369ns 1382131 1c0040bc 00050463 beq x10, x0, 8 x10:1c009e10 +75969389ns 1382132 1c0040be 01852783 lw x15, 24(x10) x15=00000001 x10:1c009e10 PA:1c009e28 +75969428ns 1382134 1c0040c0 00079263 bne x15, x0, 4 x15:00000001 +75969488ns 1382137 1c0040c4 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +75969507ns 1382138 1c0040c8 a1478793 addi x15, x15, -1516 x15=1c008a14 x15:1c009000 +75969527ns 1382139 1c0040cc 06f41963 bne x8, x15, 114 x8:1c00b914 x15:1c008a14 +75969606ns 1382143 1c00413e 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +75969626ns 1382144 1c004142 a3478793 addi x15, x15, -1484 x15=1c008a34 x15:1c009000 +75969646ns 1382145 1c004146 00f41463 bne x8, x15, 8 x8:1c00b914 x15:1c008a34 +75969725ns 1382149 1c00414e 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +75969745ns 1382150 1c004152 9f478793 addi x15, x15, -1548 x15=1c0089f4 x15:1c009000 +75969765ns 1382151 1c004156 f6f41ee3 bne x8, x15, -132 x8:1c00b914 x15:1c0089f4 +75969824ns 1382154 1c0040d2 01842783 lw x15, 24(x8) x15=fffffc00 x8:1c00b914 PA:1c00b92c +75969864ns 1382156 1c0040d4 00f42423 sw x15, 8(x8) x15:fffffc00 x8:1c00b914 PA:1c00b91c +75969883ns 1382157 1c0040d6 00c45783 lhu x15, 12(x8) x15=00000089 x8:1c00b914 PA:1c00b920 +75969923ns 1382159 1c0040da 0087f793 andi x15, x15, 8 x15=00000008 x15:00000089 +75969943ns 1382160 1c0040dc 08078163 beq x15, x0, 130 x15:00000008 +75969963ns 1382161 1c0040de 01042783 lw x15, 16(x8) x15=1c00bab8 x8:1c00b914 PA:1c00b924 +75970002ns 1382163 1c0040e0 06078f63 beq x15, x0, 126 x15:1c00bab8 +75970022ns 1382164 1c0040e2 01042783 lw x15, 16(x8) x15=1c00bab8 x8:1c00b914 PA:1c00b924 +75970042ns 1382165 1c0040e4 00042503 lw x10, 0(x8) x10=1c00baca x8:1c00b914 PA:1c00b914 +75970062ns 1382166 1c0040e6 0ff97993 andi x19, x18, 255 x19=0000000a x18:0000000a +75970081ns 1382167 1c0040ea 0ff97913 andi x18, x18, 255 x18=0000000a x18:0000000a +75970101ns 1382168 1c0040ee 40f50533 sub x10, x10, x15 x10=00000012 x10:1c00baca x15:1c00bab8 +75970121ns 1382169 1c0040f0 01442783 lw x15, 20(x8) x15=00000400 x8:1c00b914 PA:1c00b928 +75970161ns 1382171 1c0040f2 00f54663 blt x10, x15, 12 x10:00000012 x15:00000400 +75970220ns 1382174 1c0040fe 00842783 lw x15, 8(x8) x15=fffffc00 x8:1c00b914 PA:1c00b91c +75970240ns 1382175 1c004100 00150513 addi x10, x10, 1 x10=00000013 x10:00000012 +75970260ns 1382176 1c004102 fff78793 addi x15, x15, -1 x15=fffffbff x15:fffffc00 +75970279ns 1382177 1c004104 00f42423 sw x15, 8(x8) x15:fffffbff x8:1c00b914 PA:1c00b91c +75970299ns 1382178 1c004106 00042783 lw x15, 0(x8) x15=1c00baca x8:1c00b914 PA:1c00b914 +75970339ns 1382180 1c004108 00178713 addi x14, x15, 1 x14=1c00bacb x15:1c00baca +75970359ns 1382181 1c00410c 00e42023 sw x14, 0(x8) x14:1c00bacb x8:1c00b914 PA:1c00b914 +75970378ns 1382182 1c00410e 01378023 sb x19, 0(x15) x19:0000000a x15:1c00baca PA:1c00baca +75970398ns 1382183 1c004112 01442783 lw x15, 20(x8) x15=00000400 x8:1c00b914 PA:1c00b928 +75970438ns 1382185 1c004114 00a78963 beq x15, x10, 18 x15:00000400 x10:00000013 +75970457ns 1382186 1c004118 00c45783 lhu x15, 12(x8) x15=00000089 x8:1c00b914 PA:1c00b920 +75970497ns 1382188 1c00411c 0017f793 andi x15, x15, 1 x15=00000001 x15:00000089 +75970517ns 1382189 1c00411e 00078863 beq x15, x0, 16 x15:00000001 +75970537ns 1382190 1c004120 00a00793 addi x15, x0, 10 x15=0000000a +75970556ns 1382191 1c004122 00f91663 bne x18, x15, 12 x18:0000000a x15:0000000a +75970576ns 1382192 1c004126 008005b3 add x11, x0, x8 x11=1c00b914 x8:1c00b914 +75970596ns 1382193 1c004128 00900533 add x10, x0, x9 x10=1c009e10 x9:1c009e10 +75970616ns 1382194 1c00412a 3d8000ef jal x1, 984 x1=1c00412c +75970655ns 1382196 1c004502 0105a783 lw x15, 16(x11) x15=1c00bab8 x11:1c00b914 PA:1c00b924 +75970695ns 1382198 1c004504 06078063 beq x15, x0, 96 x15:1c00bab8 +75970715ns 1382199 1c004506 fe010113 addi x2, x2, -32 x2=1c009b60 x2:1c009b80 +75970735ns 1382200 1c004508 00812c23 sw x8, 24(x2) x8:1c00b914 x2:1c009b60 PA:1c009b78 +75970754ns 1382201 1c00450a 00112e23 sw x1, 28(x2) x1:1c00412c x2:1c009b60 PA:1c009b7c +75970774ns 1382202 1c00450c 00a00433 add x8, x0, x10 x8=1c009e10 x10:1c009e10 +75970794ns 1382203 1c00450e 00050663 beq x10, x0, 12 x10:1c009e10 +75970814ns 1382204 1c004510 01852783 lw x15, 24(x10) x15=00000001 x10:1c009e10 PA:1c009e28 +75970853ns 1382206 1c004512 00079463 bne x15, x0, 8 x15:00000001 +75970932ns 1382210 1c00451a 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +75970952ns 1382211 1c00451e a1478793 addi x15, x15, -1516 x15=1c008a14 x15:1c009000 +75970972ns 1382212 1c004522 00f59c63 bne x11, x15, 24 x11:1c00b914 x15:1c008a14 +75971051ns 1382216 1c00453a 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +75971071ns 1382217 1c00453e a3478793 addi x15, x15, -1484 x15=1c008a34 x15:1c009000 +75971091ns 1382218 1c004542 00f59463 bne x11, x15, 8 x11:1c00b914 x15:1c008a34 +75971170ns 1382222 1c00454a 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +75971190ns 1382223 1c00454e 9f478793 addi x15, x15, -1548 x15=1c0089f4 x15:1c009000 +75971210ns 1382224 1c004552 fcf59be3 bne x11, x15, -42 x11:1c00b914 x15:1c0089f4 +75971269ns 1382227 1c004528 00c59783 lh x15, 12(x11) x15=00000089 x11:1c00b914 PA:1c00b920 +75971309ns 1382229 1c00452c 02078763 beq x15, x0, 46 x15:00000089 +75971328ns 1382230 1c00452e 00800533 add x10, x0, x8 x10=1c009e10 x8:1c009e10 +75971348ns 1382231 1c004530 01812403 lw x8, 24(x2) x8=1c00b914 x2:1c009b60 PA:1c009b78 +75971368ns 1382232 1c004532 01c12083 lw x1, 28(x2) x1=1c00412c x2:1c009b60 PA:1c009b7c +75971388ns 1382233 1c004534 02010113 addi x2, x2, 32 x2=1c009b80 x2:1c009b60 +75971407ns 1382234 1c004536 e85ff06f jal x0, -380 +75971467ns 1382237 1c0043ba 00c5d783 lhu x15, 12(x11) x15=00000089 x11:1c00b914 PA:1c00b920 +75971487ns 1382238 1c0043be fe010113 addi x2, x2, -32 x2=1c009b60 x2:1c009b80 +75971506ns 1382239 1c0043c0 00812c23 sw x8, 24(x2) x8:1c00b914 x2:1c009b60 PA:1c009b78 +75971526ns 1382240 1c0043c2 00912a23 sw x9, 20(x2) x9:1c009e10 x2:1c009b60 PA:1c009b74 +75971546ns 1382241 1c0043c4 00112e23 sw x1, 28(x2) x1:1c00412c x2:1c009b60 PA:1c009b7c +75971566ns 1382242 1c0043c6 01212823 sw x18, 16(x2) x18:0000000a x2:1c009b60 PA:1c009b70 +75971586ns 1382243 1c0043c8 01312623 sw x19, 12(x2) x19:0000000a x2:1c009b60 PA:1c009b6c +75971605ns 1382244 1c0043ca 0087f713 andi x14, x15, 8 x14=00000008 x15:00000089 +75971625ns 1382245 1c0043ce 00a004b3 add x9, x0, x10 x9=1c009e10 x10:1c009e10 +75971645ns 1382246 1c0043d0 00b00433 add x8, x0, x11 x8=1c00b914 x11:1c00b914 +75971665ns 1382247 1c0043d2 0e071363 bne x14, x0, 230 x14:00000008 +75971724ns 1382250 1c0044b8 0105a983 lw x19, 16(x11) x19=1c00bab8 x11:1c00b914 PA:1c00b924 +75971764ns 1382252 1c0044bc f20982e3 beq x19, x0, -220 x19:1c00bab8 +75971784ns 1382253 1c0044c0 0005a903 lw x18, 0(x11) x18=1c00bacb x11:1c00b914 PA:1c00b914 +75971803ns 1382254 1c0044c4 0037f793 andi x15, x15, 3 x15=00000001 x15:00000089 +75971823ns 1382255 1c0044c6 0135a023 sw x19, 0(x11) x19:1c00bab8 x11:1c00b914 PA:1c00b914 +75971843ns 1382256 1c0044ca 41390933 sub x18, x18, x19 x18=00000013 x18:1c00bacb x19:1c00bab8 +75971863ns 1382257 1c0044ce 00000713 addi x14, x0, 0 x14=00000000 +75971882ns 1382258 1c0044d0 00079263 bne x15, x0, 4 x15:00000001 +75971942ns 1382261 1c0044d4 00e42423 sw x14, 8(x8) x14:00000000 x8:1c00b914 PA:1c00b91c +75971962ns 1382262 1c0044d6 f12055e3 bge x0, x18, -246 x18:00000013 +75971981ns 1382263 1c0044da 02842783 lw x15, 40(x8) x15=1c004c5e x8:1c00b914 PA:1c00b93c +75972001ns 1382264 1c0044dc 02042583 lw x11, 32(x8) x11=1c00b914 x8:1c00b914 PA:1c00b934 +75972021ns 1382265 1c0044de 012006b3 add x13, x0, x18 x13=00000013 x18:00000013 +75972041ns 1382266 1c0044e0 01300633 add x12, x0, x19 x12=1c00bab8 x19:1c00bab8 +75972061ns 1382267 1c0044e2 00900533 add x10, x0, x9 x10=1c009e10 x9:1c009e10 +75972080ns 1382268 1c0044e4 000780e7 jalr x1, x15, 0 x1=1c0044e6 x15:1c004c5e +75972140ns 1382271 1c004c5e 00c5d783 lhu x15, 12(x11) x15=00000089 x11:1c00b914 PA:1c00b920 +75972160ns 1382272 1c004c62 fe010113 addi x2, x2, -32 x2=1c009b40 x2:1c009b60 +75972179ns 1382273 1c004c64 00812c23 sw x8, 24(x2) x8:1c00b914 x2:1c009b40 PA:1c009b58 +75972199ns 1382274 1c004c66 00912a23 sw x9, 20(x2) x9:1c009e10 x2:1c009b40 PA:1c009b54 +75972219ns 1382275 1c004c68 01212823 sw x18, 16(x2) x18:00000013 x2:1c009b40 PA:1c009b50 +75972239ns 1382276 1c004c6a 01312623 sw x19, 12(x2) x19:1c00bab8 x2:1c009b40 PA:1c009b4c +75972259ns 1382277 1c004c6c 00112e23 sw x1, 28(x2) x1:1c0044e6 x2:1c009b40 PA:1c009b5c +75972278ns 1382278 1c004c6e 1007f793 andi x15, x15, 256 x15=00000000 x15:00000089 +75972298ns 1382279 1c004c72 00a004b3 add x9, x0, x10 x9=1c009e10 x10:1c009e10 +75972318ns 1382280 1c004c74 00b00433 add x8, x0, x11 x8=1c00b914 x11:1c00b914 +75972338ns 1382281 1c004c76 00c00933 add x18, x0, x12 x18=1c00bab8 x12:1c00bab8 +75972357ns 1382282 1c004c78 00d009b3 add x19, x0, x13 x19=00000013 x13:00000013 +75972377ns 1382283 1c004c7a 00078663 beq x15, x0, 12 x15:00000000 +75972456ns 1382287 1c004c86 00c45783 lhu x15, 12(x8) x15=00000089 x8:1c00b914 PA:1c00b920 +75972476ns 1382288 1c004c8a fffff737 lui x14, 0xfffff000 x14=fffff000 +75972496ns 1382289 1c004c8c fff70713 addi x14, x14, -1 x14=ffffefff x14:fffff000 +75972516ns 1382290 1c004c8e 00e7f7b3 and x15, x15, x14 x15=00000089 x15:00000089 x14:ffffefff +75972536ns 1382291 1c004c90 00e41583 lh x11, 14(x8) x11=00000001 x8:1c00b914 PA:1c00b922 +75972555ns 1382292 1c004c94 00f41623 sh x15, 12(x8) x15:00000089 x8:1c00b914 PA:1c00b920 +75972575ns 1382293 1c004c98 01812403 lw x8, 24(x2) x8=1c00b914 x2:1c009b40 PA:1c009b58 +75972595ns 1382294 1c004c9a 01c12083 lw x1, 28(x2) x1=1c0044e6 x2:1c009b40 PA:1c009b5c +75972615ns 1382295 1c004c9c 013006b3 add x13, x0, x19 x13=00000013 x19:00000013 +75972635ns 1382296 1c004c9e 01200633 add x12, x0, x18 x12=1c00bab8 x18:1c00bab8 +75972654ns 1382297 1c004ca0 00c12983 lw x19, 12(x2) x19=1c00bab8 x2:1c009b40 PA:1c009b4c +75972674ns 1382298 1c004ca2 01012903 lw x18, 16(x2) x18=00000013 x2:1c009b40 PA:1c009b50 +75972694ns 1382299 1c004ca4 00900533 add x10, x0, x9 x10=1c009e10 x9:1c009e10 +75972714ns 1382300 1c004ca6 01412483 lw x9, 20(x2) x9=1c009e10 x2:1c009b40 PA:1c009b54 +75972734ns 1382301 1c004ca8 02010113 addi x2, x2, 32 x2=1c009b60 x2:1c009b40 +75972753ns 1382302 1c004caa 03e0006f jal x0, 62 +75972793ns 1382304 1c004ce8 ff010113 addi x2, x2, -16 x2=1c009b50 x2:1c009b60 +75972813ns 1382305 1c004cea 00812423 sw x8, 8(x2) x8:1c00b914 x2:1c009b50 PA:1c009b58 +75972833ns 1382306 1c004cec 00912223 sw x9, 4(x2) x9:1c009e10 x2:1c009b50 PA:1c009b54 +75972852ns 1382307 1c004cee 00a00433 add x8, x0, x10 x8=1c009e10 x10:1c009e10 +75972872ns 1382308 1c004cf0 00b00533 add x10, x0, x11 x10=00000001 x11:00000001 +75972892ns 1382309 1c004cf2 00c005b3 add x11, x0, x12 x11=1c00bab8 x12:1c00bab8 +75972912ns 1382310 1c004cf4 00d00633 add x12, x0, x13 x12=00000013 x13:00000013 +75972931ns 1382311 1c004cf6 00112623 sw x1, 12(x2) x1:1c0044e6 x2:1c009b50 PA:1c009b5c +75972951ns 1382312 1c004cf8 dc01a023 sw x0, -576(x3) x3:1c0093dc PA:1c00919c +75972971ns 1382313 1c004cfc cf7fd0ef jal x1, -8970 x1=1c004d00 +75973011ns 1382315 1c0029f2 fff50513 addi x10, x10, -1 x10=00000000 x10:00000001 +75973030ns 1382316 1c0029f4 00100793 addi x15, x0, 1 x15=00000001 +75973050ns 1382317 1c0029f6 00c58833 add x16, x11, x12 x16=1c00bacb x11:1c00bab8 x12:00000013 +75973070ns 1382318 1c0029fa 00a7eb63 bltu x15, x10, 22 x15:00000001 x10:00000000 +75973090ns 1382319 1c0029fe 000026b7 lui x13, 0x2000 x13=00002000 +75973110ns 1382320 1c002a00 f8068693 addi x13, x13, -128 x13=00001f80 x13:00002000 +75973129ns 1382321 1c002a04 1a10f537 lui x10, 0x1a10f000 x10=1a10f000 +75973149ns 1382322 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bab8 x16:1c00bacb +75973209ns 1382325 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bab9 x11:1c00bab8 +75973228ns 1382326 1c002a1e fff5c883 lbu x17, -1(x11) x17=0000006d x11:1c00bab9 PA:1c00bab8 +75973248ns 1382327 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +75973268ns 1382328 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +75973288ns 1382329 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +75973308ns 1382330 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +75973327ns 1382331 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +75973347ns 1382332 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +75973367ns 1382333 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +75973387ns 1382334 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +75973406ns 1382335 1c002a38 0117a023 sw x17, 0(x15) x17:0000006d x15:1a10ff80 PA:1a10ff80 +75973426ns 1382336 1c002a3c fcdff06f jal x0, -52 +75973525ns 1382341 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bab9 x16:1c00bacb +75973585ns 1382344 1c002a1c 00158593 addi x11, x11, 1 x11=1c00baba x11:1c00bab9 +75973604ns 1382345 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000061 x11:1c00baba PA:1c00bab9 +75973624ns 1382346 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +75973644ns 1382347 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +75973664ns 1382348 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +75973684ns 1382349 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +75973703ns 1382350 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +75973723ns 1382351 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +75973743ns 1382352 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +75973763ns 1382353 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +75973783ns 1382354 1c002a38 0117a023 sw x17, 0(x15) x17:00000061 x15:1a10ff80 PA:1a10ff80 +75973802ns 1382355 1c002a3c fcdff06f jal x0, -52 +75973901ns 1382360 1c002a08 01059a63 bne x11, x16, 20 x11:1c00baba x16:1c00bacb +75973961ns 1382363 1c002a1c 00158593 addi x11, x11, 1 x11=1c00babb x11:1c00baba +75973980ns 1382364 1c002a1e fff5c883 lbu x17, -1(x11) x17=0000006c x11:1c00babb PA:1c00baba +75974000ns 1382365 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +75974020ns 1382366 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +75974040ns 1382367 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +75974060ns 1382368 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +75974079ns 1382369 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +75974099ns 1382370 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +75974119ns 1382371 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +75974139ns 1382372 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +75974159ns 1382373 1c002a38 0117a023 sw x17, 0(x15) x17:0000006c x15:1a10ff80 PA:1a10ff80 +75974178ns 1382374 1c002a3c fcdff06f jal x0, -52 +75974277ns 1382379 1c002a08 01059a63 bne x11, x16, 20 x11:1c00babb x16:1c00bacb +75974337ns 1382382 1c002a1c 00158593 addi x11, x11, 1 x11=1c00babc x11:1c00babb +75974356ns 1382383 1c002a1e fff5c883 lbu x17, -1(x11) x17=0000006c x11:1c00babc PA:1c00babb +75974376ns 1382384 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +75974396ns 1382385 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +75974416ns 1382386 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +75974436ns 1382387 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +75974455ns 1382388 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +75974475ns 1382389 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +75974495ns 1382390 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +75974515ns 1382391 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +75974535ns 1382392 1c002a38 0117a023 sw x17, 0(x15) x17:0000006c x15:1a10ff80 PA:1a10ff80 +75974554ns 1382393 1c002a3c fcdff06f jal x0, -52 +75974653ns 1382398 1c002a08 01059a63 bne x11, x16, 20 x11:1c00babc x16:1c00bacb +75974713ns 1382401 1c002a1c 00158593 addi x11, x11, 1 x11=1c00babd x11:1c00babc +75974733ns 1382402 1c002a1e fff5c883 lbu x17, -1(x11) x17=0000006f x11:1c00babd PA:1c00babc +75974752ns 1382403 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +75974772ns 1382404 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +75974792ns 1382405 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +75974812ns 1382406 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +75974831ns 1382407 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +75974851ns 1382408 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +75974871ns 1382409 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +75974891ns 1382410 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +75974911ns 1382411 1c002a38 0117a023 sw x17, 0(x15) x17:0000006f x15:1a10ff80 PA:1a10ff80 +75974930ns 1382412 1c002a3c fcdff06f jal x0, -52 +75975029ns 1382417 1c002a08 01059a63 bne x11, x16, 20 x11:1c00babd x16:1c00bacb +75975089ns 1382420 1c002a1c 00158593 addi x11, x11, 1 x11=1c00babe x11:1c00babd +75975109ns 1382421 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000063 x11:1c00babe PA:1c00babd +75975128ns 1382422 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +75975148ns 1382423 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +75975168ns 1382424 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +75975188ns 1382425 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +75975208ns 1382426 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +75975227ns 1382427 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +75975247ns 1382428 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +75975267ns 1382429 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +75975287ns 1382430 1c002a38 0117a023 sw x17, 0(x15) x17:00000063 x15:1a10ff80 PA:1a10ff80 +75975307ns 1382431 1c002a3c fcdff06f jal x0, -52 +75975405ns 1382436 1c002a08 01059a63 bne x11, x16, 20 x11:1c00babe x16:1c00bacb +75975465ns 1382439 1c002a1c 00158593 addi x11, x11, 1 x11=1c00babf x11:1c00babe +75975485ns 1382440 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000020 x11:1c00babf PA:1c00babe +75975504ns 1382441 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +75975524ns 1382442 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +75975544ns 1382443 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +75975564ns 1382444 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +75975584ns 1382445 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +75975603ns 1382446 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +75975623ns 1382447 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +75975643ns 1382448 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +75975663ns 1382449 1c002a38 0117a023 sw x17, 0(x15) x17:00000020 x15:1a10ff80 PA:1a10ff80 +75975683ns 1382450 1c002a3c fcdff06f jal x0, -52 +75975782ns 1382455 1c002a08 01059a63 bne x11, x16, 20 x11:1c00babf x16:1c00bacb +75975841ns 1382458 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac0 x11:1c00babf +75975861ns 1382459 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000072 x11:1c00bac0 PA:1c00babf +75975880ns 1382460 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +75975900ns 1382461 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +75975920ns 1382462 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +75975940ns 1382463 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +75975960ns 1382464 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +75975979ns 1382465 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +75975999ns 1382466 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +75976019ns 1382467 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +75976039ns 1382468 1c002a38 0117a023 sw x17, 0(x15) x17:00000072 x15:1a10ff80 PA:1a10ff80 +75976059ns 1382469 1c002a3c fcdff06f jal x0, -52 +75976158ns 1382474 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac0 x16:1c00bacb +75976217ns 1382477 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac1 x11:1c00bac0 +75976237ns 1382478 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000078 x11:1c00bac1 PA:1c00bac0 +75976257ns 1382479 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +75976276ns 1382480 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +75976296ns 1382481 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +75976316ns 1382482 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +75976336ns 1382483 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +75976355ns 1382484 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +75976375ns 1382485 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +75976395ns 1382486 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +75976415ns 1382487 1c002a38 0117a023 sw x17, 0(x15) x17:00000078 x15:1a10ff80 PA:1a10ff80 +75976435ns 1382488 1c002a3c fcdff06f jal x0, -52 +75976534ns 1382493 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac1 x16:1c00bacb +75976593ns 1382496 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac2 x11:1c00bac1 +75976613ns 1382497 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000020 x11:1c00bac2 PA:1c00bac1 +75976633ns 1382498 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +75976652ns 1382499 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +75976672ns 1382500 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +75976692ns 1382501 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +75976712ns 1382502 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +75976732ns 1382503 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +75976751ns 1382504 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +75976771ns 1382505 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +75976791ns 1382506 1c002a38 0117a023 sw x17, 0(x15) x17:00000020 x15:1a10ff80 PA:1a10ff80 +75976811ns 1382507 1c002a3c fcdff06f jal x0, -52 +75976910ns 1382512 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac2 x16:1c00bacb +75976969ns 1382515 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac3 x11:1c00bac2 +75976989ns 1382516 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000062 x11:1c00bac3 PA:1c00bac2 +75977009ns 1382517 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +75977028ns 1382518 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +75977048ns 1382519 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +75977068ns 1382520 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +75977088ns 1382521 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +75977108ns 1382522 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +75977127ns 1382523 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +75977147ns 1382524 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +75977167ns 1382525 1c002a38 0117a023 sw x17, 0(x15) x17:00000062 x15:1a10ff80 PA:1a10ff80 +75977187ns 1382526 1c002a3c fcdff06f jal x0, -52 +75977286ns 1382531 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac3 x16:1c00bacb +75977345ns 1382534 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac4 x11:1c00bac3 +75977365ns 1382535 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000075 x11:1c00bac4 PA:1c00bac3 +75977385ns 1382536 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +75977404ns 1382537 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +75977424ns 1382538 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +75977444ns 1382539 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +75977464ns 1382540 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +75977484ns 1382541 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +75977503ns 1382542 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +75977523ns 1382543 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +75977543ns 1382544 1c002a38 0117a023 sw x17, 0(x15) x17:00000075 x15:1a10ff80 PA:1a10ff80 +75977563ns 1382545 1c002a3c fcdff06f jal x0, -52 +75977662ns 1382550 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac4 x16:1c00bacb +75977721ns 1382553 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac5 x11:1c00bac4 +75977741ns 1382554 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000066 x11:1c00bac5 PA:1c00bac4 +75977761ns 1382555 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +75977781ns 1382556 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +75977800ns 1382557 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +75977820ns 1382558 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +75977840ns 1382559 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +75977860ns 1382560 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +75977879ns 1382561 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +75977899ns 1382562 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +75977919ns 1382563 1c002a38 0117a023 sw x17, 0(x15) x17:00000066 x15:1a10ff80 PA:1a10ff80 +75977939ns 1382564 1c002a3c fcdff06f jal x0, -52 +75978038ns 1382569 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac5 x16:1c00bacb +75978097ns 1382572 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac6 x11:1c00bac5 +75978117ns 1382573 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000066 x11:1c00bac6 PA:1c00bac5 +75978137ns 1382574 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +75978157ns 1382575 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +75978176ns 1382576 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +75978196ns 1382577 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +75978216ns 1382578 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +75978236ns 1382579 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +75978256ns 1382580 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +75978275ns 1382581 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +75978295ns 1382582 1c002a38 0117a023 sw x17, 0(x15) x17:00000066 x15:1a10ff80 PA:1a10ff80 +75978315ns 1382583 1c002a3c fcdff06f jal x0, -52 +75978414ns 1382588 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac6 x16:1c00bacb +75978473ns 1382591 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac7 x11:1c00bac6 +75978493ns 1382592 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000065 x11:1c00bac7 PA:1c00bac6 +75978513ns 1382593 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +75978533ns 1382594 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +75978552ns 1382595 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +75978572ns 1382596 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +75978592ns 1382597 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +75978612ns 1382598 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +75978632ns 1382599 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +75978651ns 1382600 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +75978671ns 1382601 1c002a38 0117a023 sw x17, 0(x15) x17:00000065 x15:1a10ff80 PA:1a10ff80 +75978691ns 1382602 1c002a3c fcdff06f jal x0, -52 +75978790ns 1382607 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac7 x16:1c00bacb +75978849ns 1382610 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac8 x11:1c00bac7 +75978869ns 1382611 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000072 x11:1c00bac8 PA:1c00bac7 +75978889ns 1382612 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +75978909ns 1382613 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +75978928ns 1382614 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +75978948ns 1382615 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +75978968ns 1382616 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +75978988ns 1382617 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +75979008ns 1382618 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +75979027ns 1382619 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +75979047ns 1382620 1c002a38 0117a023 sw x17, 0(x15) x17:00000072 x15:1a10ff80 PA:1a10ff80 +75979067ns 1382621 1c002a3c fcdff06f jal x0, -52 +75979166ns 1382626 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac8 x16:1c00bacb +75979225ns 1382629 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac9 x11:1c00bac8 +75979245ns 1382630 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000020 x11:1c00bac9 PA:1c00bac8 +75979265ns 1382631 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +75979285ns 1382632 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +75979304ns 1382633 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +75979324ns 1382634 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +75979344ns 1382635 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +75979364ns 1382636 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +75979384ns 1382637 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +75979403ns 1382638 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +75979423ns 1382639 1c002a38 0117a023 sw x17, 0(x15) x17:00000020 x15:1a10ff80 PA:1a10ff80 +75979443ns 1382640 1c002a3c fcdff06f jal x0, -52 +75979542ns 1382645 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac9 x16:1c00bacb +75979601ns 1382648 1c002a1c 00158593 addi x11, x11, 1 x11=1c00baca x11:1c00bac9 +75979621ns 1382649 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000031 x11:1c00baca PA:1c00bac9 +75979641ns 1382650 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +75979661ns 1382651 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +75979681ns 1382652 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +75979700ns 1382653 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +75979720ns 1382654 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +75979740ns 1382655 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +75979760ns 1382656 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +75979779ns 1382657 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +75979799ns 1382658 1c002a38 0117a023 sw x17, 0(x15) x17:00000031 x15:1a10ff80 PA:1a10ff80 +75979819ns 1382659 1c002a3c fcdff06f jal x0, -52 +75979918ns 1382664 1c002a08 01059a63 bne x11, x16, 20 x11:1c00baca x16:1c00bacb +75979977ns 1382667 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bacb x11:1c00baca +75979997ns 1382668 1c002a1e fff5c883 lbu x17, -1(x11) x17=0000000a x11:1c00bacb PA:1c00baca +75980017ns 1382669 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +75980037ns 1382670 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +75980057ns 1382671 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +75980076ns 1382672 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +75980096ns 1382673 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +75980116ns 1382674 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +75980136ns 1382675 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +75980156ns 1382676 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +75980175ns 1382677 1c002a38 0117a023 sw x17, 0(x15) x17:0000000a x15:1a10ff80 PA:1a10ff80 +75980195ns 1382678 1c002a3c fcdff06f jal x0, -52 +75980294ns 1382683 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bacb x16:1c00bacb +75980314ns 1382684 1c002a0c 00c00533 add x10, x0, x12 x10=00000013 x12:00000013 +75980334ns 1382685 1c002a0e 00008067 jalr x0, x1, 0 x1:1c004d00 +75980373ns 1382687 1c004d00 fff00793 addi x15, x0, -1 x15=ffffffff +75980393ns 1382688 1c004d02 00f51663 bne x10, x15, 12 x10:00000013 x15:ffffffff +75980452ns 1382691 1c004d0e 00c12083 lw x1, 12(x2) x1=1c0044e6 x2:1c009b50 PA:1c009b5c +75980472ns 1382692 1c004d10 00812403 lw x8, 8(x2) x8=1c00b914 x2:1c009b50 PA:1c009b58 +75980492ns 1382693 1c004d12 00412483 lw x9, 4(x2) x9=1c009e10 x2:1c009b50 PA:1c009b54 +75980512ns 1382694 1c004d14 01010113 addi x2, x2, 16 x2=1c009b60 x2:1c009b50 +75980532ns 1382695 1c004d16 00008067 jalr x0, x1, 0 x1:1c0044e6 +75980591ns 1382698 1c0044e6 00a04a63 blt x0, x10, 20 x10:00000013 +75980650ns 1382701 1c0044fa 00a989b3 add x19, x19, x10 x19=1c00bacb x19:1c00bab8 x10:00000013 +75980670ns 1382702 1c0044fc 40a90933 sub x18, x18, x10 x18=00000000 x18:00000013 x10:00000013 +75980690ns 1382703 1c004500 fd7ff06f jal x0, -42 +75980749ns 1382706 1c0044d6 f12055e3 bge x0, x18, -246 x18:00000000 +75980809ns 1382709 1c0043e0 00000513 addi x10, x0, 0 x10=00000000 +75980828ns 1382710 1c0043e2 0be0006f jal x0, 190 +75980868ns 1382712 1c0044a0 01c12083 lw x1, 28(x2) x1=1c00412c x2:1c009b60 PA:1c009b7c +75980888ns 1382713 1c0044a2 01812403 lw x8, 24(x2) x8=1c00b914 x2:1c009b60 PA:1c009b78 +75980908ns 1382714 1c0044a4 01412483 lw x9, 20(x2) x9=1c009e10 x2:1c009b60 PA:1c009b74 +75980927ns 1382715 1c0044a6 01012903 lw x18, 16(x2) x18=0000000a x2:1c009b60 PA:1c009b70 +75980947ns 1382716 1c0044a8 00c12983 lw x19, 12(x2) x19=0000000a x2:1c009b60 PA:1c009b6c +75980967ns 1382717 1c0044aa 02010113 addi x2, x2, 32 x2=1c009b80 x2:1c009b60 +75980987ns 1382718 1c0044ac 00008067 jalr x0, x1, 0 x1:1c00412c +75981026ns 1382720 1c00412c 02051d63 bne x10, x0, 58 x10:00000000 +75981046ns 1382721 1c00412e 01c12083 lw x1, 28(x2) x1=1c003e52 x2:1c009b80 PA:1c009b9c +75981066ns 1382722 1c004130 01812403 lw x8, 24(x2) x8=1c00b914 x2:1c009b80 PA:1c009b98 +75981086ns 1382723 1c004132 01412483 lw x9, 20(x2) x9=1c009e10 x2:1c009b80 PA:1c009b94 +75981106ns 1382724 1c004134 00c12983 lw x19, 12(x2) x19=ffffffff x2:1c009b80 PA:1c009b8c +75981125ns 1382725 1c004136 01200533 add x10, x0, x18 x10=0000000a x18:0000000a +75981145ns 1382726 1c004138 01012903 lw x18, 16(x2) x18=1c0088ba x2:1c009b80 PA:1c009b90 +75981165ns 1382727 1c00413a 02010113 addi x2, x2, 32 x2=1c009ba0 x2:1c009b80 +75981185ns 1382728 1c00413c 00008067 jalr x0, x1, 0 x1:1c003e52 +75981224ns 1382730 1c003e52 fff00793 addi x15, x0, -1 x15=ffffffff +75981244ns 1382731 1c003e54 02f50863 beq x10, x15, 48 x10:0000000a x15:ffffffff +75981264ns 1382732 1c003e58 00a00513 addi x10, x0, 10 x10=0000000a +75981284ns 1382733 1c003e5a 02c0006f jal x0, 44 +75981323ns 1382735 1c003e86 01c12083 lw x1, 28(x2) x1=1c00359e x2:1c009ba0 PA:1c009bbc +75981343ns 1382736 1c003e88 01812403 lw x8, 24(x2) x8=00000000 x2:1c009ba0 PA:1c009bb8 +75981363ns 1382737 1c003e8a 01412483 lw x9, 20(x2) x9=1c009190 x2:1c009ba0 PA:1c009bb4 +75981383ns 1382738 1c003e8c 01012903 lw x18, 16(x2) x18=a5a5a5a5 x2:1c009ba0 PA:1c009bb0 +75981402ns 1382739 1c003e8e 00c12983 lw x19, 12(x2) x19=a5a5a5a5 x2:1c009ba0 PA:1c009bac +75981422ns 1382740 1c003e90 00812a03 lw x20, 8(x2) x20=a5a5a5a5 x2:1c009ba0 PA:1c009ba8 +75981442ns 1382741 1c003e92 02010113 addi x2, x2, 32 x2=1c009bc0 x2:1c009ba0 +75981462ns 1382742 1c003e94 00008067 jalr x0, x1, 0 x1:1c00359e +75981521ns 1382745 1c00359e 10000513 addi x10, x0, 256 x10=00000100 +75981541ns 1382746 1c0035a2 cccff0ef jal x1, -2868 x1=1c0035a6 +75981600ns 1382749 1c002a6e 69b0006f jal x0, 3738 +75981640ns 1382751 1c003908 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +75981660ns 1382752 1c00390c 00a005b3 add x11, x0, x10 x11=00000100 x10:00000100 +75981680ns 1382753 1c00390e c447a503 lw x10, -956(x15) x10=1c009e10 x15:1c009000 PA:1c008c44 +75981699ns 1382754 1c003912 0b60006f jal x0, 182 +75981739ns 1382756 1c0039c8 fe010113 addi x2, x2, -32 x2=1c009ba0 x2:1c009bc0 +75981759ns 1382757 1c0039ca 00912a23 sw x9, 20(x2) x9:1c009190 x2:1c009ba0 PA:1c009bb4 +75981778ns 1382758 1c0039cc 00358493 addi x9, x11, 3 x9=00000103 x11:00000100 +75981798ns 1382759 1c0039d0 ffc4f493 andi x9, x9, -4 x9=00000100 x9:00000103 +75981818ns 1382760 1c0039d2 01212823 sw x18, 16(x2) x18:a5a5a5a5 x2:1c009ba0 PA:1c009bb0 +75981838ns 1382761 1c0039d4 00112e23 sw x1, 28(x2) x1:1c0035a6 x2:1c009ba0 PA:1c009bbc +75981858ns 1382762 1c0039d6 00812c23 sw x8, 24(x2) x8:00000000 x2:1c009ba0 PA:1c009bb8 +75981877ns 1382763 1c0039d8 01312623 sw x19, 12(x2) x19:a5a5a5a5 x2:1c009ba0 PA:1c009bac +75981897ns 1382764 1c0039da 00848493 addi x9, x9, 8 x9=00000108 x9:00000100 +75981917ns 1382765 1c0039dc 00c00793 addi x15, x0, 12 x15=0000000c +75981937ns 1382766 1c0039de 00a00933 add x18, x0, x10 x18=1c009e10 x10:1c009e10 +75981957ns 1382767 1c0039e0 04f4f363 bgeu x9, x15, 70 x9:00000108 x15:0000000c +75982036ns 1382771 1c003a26 fc04d0e3 bge x9, x0, -64 x9:00000108 +75982115ns 1382775 1c0039e6 04b4e263 bltu x9, x11, 68 x9:00000108 x11:00000100 +75982135ns 1382776 1c0039ea 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +75982155ns 1382777 1c0039ec 87aff0ef jal x1, -3974 x1=1c0039f0 +75982214ns 1382780 1c002a66 fb1fe06f jal x0, -4176 +75982273ns 1382783 1c001a16 d6818793 addi x15, x3, -664 x15=1c009144 x3:1c0093dc +75982293ns 1382784 1c001a1a 0007a703 lw x14, 0(x15) x14=00000000 x15:1c009144 PA:1c009144 +75982333ns 1382786 1c001a1c 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +75982352ns 1382787 1c001a1e 00e7a023 sw x14, 0(x15) x14:00000001 x15:1c009144 PA:1c009144 +75982372ns 1382788 1c001a20 00008067 jalr x0, x1, 0 x1:1c0039f0 +75982412ns 1382790 1c0039f0 db81a703 lw x14, -584(x3) x14=00000000 x3:1c0093dc PA:1c009194 +75982432ns 1382791 1c0039f4 db818693 addi x13, x3, -584 x13=1c009194 x3:1c0093dc +75982451ns 1382792 1c0039f8 00e00433 add x8, x0, x14 x8=00000000 x14:00000000 +75982471ns 1382793 1c0039fa 04041363 bne x8, x0, 70 x8:00000000 +75982491ns 1382794 1c0039fc dbc18413 addi x8, x3, -580 x8=1c009198 x3:1c0093dc +75982511ns 1382795 1c003a00 00042783 lw x15, 0(x8) x15=1c0091b0 x8:1c009198 PA:1c009198 +75982550ns 1382797 1c003a02 00079563 bne x15, x0, 10 x15:1c0091b0 +75982610ns 1382800 1c003a0c 009005b3 add x11, x0, x9 x11=00000108 x9:00000108 +75982630ns 1382801 1c003a0e 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +75982649ns 1382802 1c003a10 5cc000ef jal x1, 1484 x1=1c003a12 +75982689ns 1382804 1c003fdc ff010113 addi x2, x2, -16 x2=1c009b90 x2:1c009ba0 +75982709ns 1382805 1c003fde 00812423 sw x8, 8(x2) x8:1c009198 x2:1c009b90 PA:1c009b98 +75982729ns 1382806 1c003fe0 00912223 sw x9, 4(x2) x9:00000108 x2:1c009b90 PA:1c009b94 +75982748ns 1382807 1c003fe2 00a00433 add x8, x0, x10 x8=1c009e10 x10:1c009e10 +75982768ns 1382808 1c003fe4 00b00533 add x10, x0, x11 x10=00000108 x11:00000108 +75982788ns 1382809 1c003fe6 00112623 sw x1, 12(x2) x1:1c003a12 x2:1c009b90 PA:1c009b9c +75982808ns 1382810 1c003fe8 dc01a023 sw x0, -576(x3) x3:1c0093dc PA:1c00919c +75982827ns 1382811 1c003fec a53fe0ef jal x1, -5550 x1=1c003ff0 +75982887ns 1382814 1c002a3e 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +75982907ns 1382815 1c002a42 c3c78793 addi x15, x15, -964 x15=1c008c3c x15:1c009000 +75982926ns 1382816 1c002a46 00a00733 add x14, x0, x10 x14=00000108 x10:00000108 +75982946ns 1382817 1c002a48 0007a503 lw x10, 0(x15) x10=1c00bfc4 x15:1c008c3c PA:1c008c3c +75982966ns 1382818 1c002a4a 1c0196b7 lui x13, 0x1c019000 x13=1c019000 +75982986ns 1382819 1c002a4e 1b068693 addi x13, x13, 432 x13=1c0191b0 x13:1c019000 +75983006ns 1382820 1c002a52 00a70733 add x14, x14, x10 x14=1c00c0cc x14:00000108 x10:1c00bfc4 +75983025ns 1382821 1c002a54 00d76763 bltu x14, x13, 14 x14:1c00c0cc x13:1c0191b0 +75983085ns 1382824 1c002a62 00e7a023 sw x14, 0(x15) x14:1c00c0cc x15:1c008c3c PA:1c008c3c +75983105ns 1382825 1c002a64 00008067 jalr x0, x1, 0 x1:1c003ff0 +75983144ns 1382827 1c003ff0 fff00793 addi x15, x0, -1 x15=ffffffff +75983164ns 1382828 1c003ff2 00f51663 bne x10, x15, 12 x10:1c00bfc4 x15:ffffffff +75983223ns 1382831 1c003ffe 00c12083 lw x1, 12(x2) x1=1c003a12 x2:1c009b90 PA:1c009b9c +75983243ns 1382832 1c004000 00812403 lw x8, 8(x2) x8=1c009198 x2:1c009b90 PA:1c009b98 +75983263ns 1382833 1c004002 00412483 lw x9, 4(x2) x9=00000108 x2:1c009b90 PA:1c009b94 +75983283ns 1382834 1c004004 01010113 addi x2, x2, 16 x2=1c009ba0 x2:1c009b90 +75983302ns 1382835 1c004006 00008067 jalr x0, x1, 0 x1:1c003a12 +75983342ns 1382837 1c003a12 fff00993 addi x19, x0, -1 x19=ffffffff +75983362ns 1382838 1c003a14 07351a63 bne x10, x19, 116 x10:1c00bfc4 x19:ffffffff +75983421ns 1382841 1c003a88 00350413 addi x8, x10, 3 x8=1c00bfc7 x10:1c00bfc4 +75983441ns 1382842 1c003a8c ffc47413 andi x8, x8, -4 x8=1c00bfc4 x8:1c00bfc7 +75983461ns 1382843 1c003a8e fc8502e3 beq x10, x8, -60 x10:1c00bfc4 x8:1c00bfc4 +75983520ns 1382846 1c003a52 00942023 sw x9, 0(x8) x9:00000108 x8:1c00bfc4 PA:1c00bfc4 +75983540ns 1382847 1c003a54 00a0006f jal x0, 10 +75983580ns 1382849 1c003a5e 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +75983599ns 1382850 1c003a60 80aff0ef jal x1, -4086 x1=1c003a64 +75983659ns 1382853 1c002a6a 8e3ff06f jal x0, -1822 +75983698ns 1382855 1c00234c fc010113 addi x2, x2, -64 x2=1c009b60 x2:1c009ba0 +75983718ns 1382856 1c00234e 02812c23 sw x8, 56(x2) x8:1c00bfc4 x2:1c009b60 PA:1c009b98 +75983738ns 1382857 1c002350 d6818413 addi x8, x3, -664 x8=1c009144 x3:1c0093dc +75983758ns 1382858 1c002354 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +75983777ns 1382859 1c002356 02112e23 sw x1, 60(x2) x1:1c003a64 x2:1c009b60 PA:1c009b9c +75983797ns 1382860 1c002358 02912a23 sw x9, 52(x2) x9:00000108 x2:1c009b60 PA:1c009b94 +75983817ns 1382861 1c00235a 03212823 sw x18, 48(x2) x18:1c009e10 x2:1c009b60 PA:1c009b90 +75983837ns 1382862 1c00235c 03312623 sw x19, 44(x2) x19:ffffffff x2:1c009b60 PA:1c009b8c +75983857ns 1382863 1c00235e 03412423 sw x20, 40(x2) x20:a5a5a5a5 x2:1c009b60 PA:1c009b88 +75983876ns 1382864 1c002360 03512223 sw x21, 36(x2) x21:a5a5a5a5 x2:1c009b60 PA:1c009b84 +75983896ns 1382865 1c002362 03612023 sw x22, 32(x2) x22:a5a5a5a5 x2:1c009b60 PA:1c009b80 +75983916ns 1382866 1c002364 01712e23 sw x23, 28(x2) x23:a5a5a5a5 x2:1c009b60 PA:1c009b7c +75983936ns 1382867 1c002366 02079263 bne x15, x0, 36 x15:00000001 +75984015ns 1382871 1c00238a c83ff0ef jal x1, -894 x1=1c00238e +75984055ns 1382873 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +75984134ns 1382877 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +75984173ns 1382879 1c002014 00078863 beq x15, x0, 16 x15:00000001 +75984193ns 1382880 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +75984213ns 1382881 1c00201a 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +75984233ns 1382882 1c00201c 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +75984252ns 1382883 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c009db8 PA:1c009dfc +75984292ns 1382885 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +75984312ns 1382886 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c009db8 PA:1c009dfc +75984332ns 1382887 1c002024 00008067 jalr x0, x1, 0 x1:1c00238e +75984371ns 1382889 1c00238e 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +75984411ns 1382891 1c002390 fff78793 addi x15, x15, -1 x15=00000000 x15:00000001 +75984431ns 1382892 1c002392 00f42023 sw x15, 0(x8) x15:00000000 x8:1c009144 PA:1c009144 +75984450ns 1382893 1c002394 00042783 lw x15, 0(x8) x15=00000000 x8:1c009144 PA:1c009144 +75984490ns 1382895 1c002396 02078163 beq x15, x0, 34 x15:00000000 +75984549ns 1382898 1c0023b8 d601a783 lw x15, -672(x3) x15=00000003 x3:1c0093dc PA:1c00913c +75984589ns 1382900 1c0023bc fc078ee3 beq x15, x0, -36 x15:00000003 +75984609ns 1382901 1c0023be 1c009937 lui x18, 0x1c009000 x18=1c009000 +75984629ns 1382902 1c0023c2 00000413 addi x8, x0, 0 x8=00000000 +75984648ns 1382903 1c0023c4 93818493 addi x9, x3, -1736 x9=1c008d14 x3:1c0093dc +75984668ns 1382904 1c0023c8 00100993 addi x19, x0, 1 x19=00000001 +75984688ns 1382905 1c0023ca c8890913 addi x18, x18, -888 x18=1c008c88 x18:1c009000 +75984708ns 1382906 1c0023ce 01400a93 addi x21, x0, 20 x21=00000014 +75984727ns 1382907 1c0023d0 04c0006f jal x0, 76 +75984767ns 1382909 1c00241c 0004a783 lw x15, 0(x9) x15=00000000 x9:1c008d14 PA:1c008d14 +75984807ns 1382911 1c00241e fa079ae3 bne x15, x0, -76 x15:00000000 +75984826ns 1382912 1c002420 00040363 beq x8, x0, 6 x8:00000000 +75984906ns 1382916 1c002426 d8018713 addi x14, x3, -640 x14=1c00915c x3:1c0093dc +75984925ns 1382917 1c00242a 00072483 lw x9, 0(x14) x9=00000000 x14:1c00915c PA:1c00915c +75984945ns 1382918 1c00242c d8018413 addi x8, x3, -640 x8=1c00915c x3:1c0093dc +75984965ns 1382919 1c002430 00048d63 beq x9, x0, 26 x9:00000000 +75985044ns 1382923 1c00244a d8c1a783 lw x15, -628(x3) x15=00000000 x3:1c0093dc PA:1c009168 +75985084ns 1382925 1c00244e f40785e3 beq x15, x0, -182 x15:00000000 +75985143ns 1382928 1c002398 00000513 addi x10, x0, 0 x10=00000000 +75985163ns 1382929 1c00239a 00a12623 sw x10, 12(x2) x10:00000000 x2:1c009b60 PA:1c009b6c +75985183ns 1382930 1c00239c c8bff0ef jal x1, -886 x1=1c0023a0 +75985242ns 1382933 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +75985282ns 1382935 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +75985301ns 1382936 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +75985321ns 1382937 1c002030 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +75985361ns 1382939 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c009db8 PA:1c009dfc +75985400ns 1382941 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +75985420ns 1382942 1c002036 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +75985440ns 1382943 1c002038 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +75985460ns 1382944 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c009db8 PA:1c009dfc +75985499ns 1382946 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +75985519ns 1382947 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c009db8 PA:1c009dfc +75985539ns 1382948 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c009db8 PA:1c009dfc +75985579ns 1382950 1c002042 00079363 bne x15, x0, 6 x15:00000000 +75985598ns 1382951 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +75985678ns 1382955 1c002048 00008067 jalr x0, x1, 0 x1:1c0023a0 +75985717ns 1382957 1c0023a0 03c12083 lw x1, 60(x2) x1=1c003a64 x2:1c009b60 PA:1c009b9c +75985737ns 1382958 1c0023a2 03812403 lw x8, 56(x2) x8=1c00bfc4 x2:1c009b60 PA:1c009b98 +75985757ns 1382959 1c0023a4 00c12503 lw x10, 12(x2) x10=00000000 x2:1c009b60 PA:1c009b6c +75985776ns 1382960 1c0023a6 03412483 lw x9, 52(x2) x9=00000108 x2:1c009b60 PA:1c009b94 +75985796ns 1382961 1c0023a8 03012903 lw x18, 48(x2) x18=1c009e10 x2:1c009b60 PA:1c009b90 +75985816ns 1382962 1c0023aa 02c12983 lw x19, 44(x2) x19=ffffffff x2:1c009b60 PA:1c009b8c +75985836ns 1382963 1c0023ac 02812a03 lw x20, 40(x2) x20=a5a5a5a5 x2:1c009b60 PA:1c009b88 +75985856ns 1382964 1c0023ae 02412a83 lw x21, 36(x2) x21=a5a5a5a5 x2:1c009b60 PA:1c009b84 +75985875ns 1382965 1c0023b0 02012b03 lw x22, 32(x2) x22=a5a5a5a5 x2:1c009b60 PA:1c009b80 +75985895ns 1382966 1c0023b2 01c12b83 lw x23, 28(x2) x23=a5a5a5a5 x2:1c009b60 PA:1c009b7c +75985915ns 1382967 1c0023b4 04010113 addi x2, x2, 64 x2=1c009ba0 x2:1c009b60 +75985935ns 1382968 1c0023b6 00008067 jalr x0, x1, 0 x1:1c003a64 +75985974ns 1382970 1c003a64 00b40513 addi x10, x8, 11 x10=1c00bfcf x8:1c00bfc4 +75985994ns 1382971 1c003a68 00440793 addi x15, x8, 4 x15=1c00bfc8 x8:1c00bfc4 +75986014ns 1382972 1c003a6c ff857513 andi x10, x10, -8 x10=1c00bfc8 x10:1c00bfcf +75986034ns 1382973 1c003a6e 40f50733 sub x14, x10, x15 x14=00000000 x10:1c00bfc8 x15:1c00bfc8 +75986054ns 1382974 1c003a72 fcf500e3 beq x10, x15, -64 x10:1c00bfc8 x15:1c00bfc8 +75986113ns 1382977 1c003a32 01c12083 lw x1, 28(x2) x1=1c0035a6 x2:1c009ba0 PA:1c009bbc +75986133ns 1382978 1c003a34 01812403 lw x8, 24(x2) x8=00000000 x2:1c009ba0 PA:1c009bb8 +75986153ns 1382979 1c003a36 01412483 lw x9, 20(x2) x9=1c009190 x2:1c009ba0 PA:1c009bb4 +75986172ns 1382980 1c003a38 01012903 lw x18, 16(x2) x18=a5a5a5a5 x2:1c009ba0 PA:1c009bb0 +75986192ns 1382981 1c003a3a 00c12983 lw x19, 12(x2) x19=a5a5a5a5 x2:1c009ba0 PA:1c009bac +75986212ns 1382982 1c003a3c 02010113 addi x2, x2, 32 x2=1c009bc0 x2:1c009ba0 +75986232ns 1382983 1c003a3e 00008067 jalr x0, x1, 0 x1:1c0035a6 +75986291ns 1382986 1c0035a6 daa1a623 sw x10, -596(x3) x10:1c00bfc8 x3:1c0093dc PA:1c009188 +75986311ns 1382987 1c0035aa dac18913 addi x18, x3, -596 x18=1c009188 x3:1c0093dc +75986331ns 1382988 1c0035ae fa0502e3 beq x10, x0, -92 x10:1c00bfc8 +75986350ns 1382989 1c0035b0 1c009537 lui x10, 0x1c009000 x10=1c009000 +75986370ns 1382990 1c0035b4 8bc50513 addi x10, x10, -1860 x10=1c0088bc x10:1c009000 +75986390ns 1382991 1c0035b8 11b000ef jal x1, 2330 x1=1c0035bc +75986449ns 1382994 1c003ed2 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +75986469ns 1382995 1c003ed6 00a005b3 add x11, x0, x10 x11=1c0088bc x10:1c0088bc +75986489ns 1382996 1c003ed8 c447a503 lw x10, -956(x15) x10=1c009e10 x15:1c009000 PA:1c008c44 +75986509ns 1382997 1c003edc f19ff06f jal x0, -232 +75986548ns 1382999 1c003df4 fe010113 addi x2, x2, -32 x2=1c009ba0 x2:1c009bc0 +75986568ns 1383000 1c003df6 00912a23 sw x9, 20(x2) x9:1c009190 x2:1c009ba0 PA:1c009bb4 +75986588ns 1383001 1c003df8 01212823 sw x18, 16(x2) x18:1c009188 x2:1c009ba0 PA:1c009bb0 +75986608ns 1383002 1c003dfa 00112e23 sw x1, 28(x2) x1:1c0035bc x2:1c009ba0 PA:1c009bbc +75986628ns 1383003 1c003dfc 00812c23 sw x8, 24(x2) x8:00000000 x2:1c009ba0 PA:1c009bb8 +75986647ns 1383004 1c003dfe 01312623 sw x19, 12(x2) x19:a5a5a5a5 x2:1c009ba0 PA:1c009bac +75986667ns 1383005 1c003e00 01412423 sw x20, 8(x2) x20:a5a5a5a5 x2:1c009ba0 PA:1c009ba8 +75986687ns 1383006 1c003e02 00a004b3 add x9, x0, x10 x9=1c009e10 x10:1c009e10 +75986707ns 1383007 1c003e04 00b00933 add x18, x0, x11 x18=1c0088bc x11:1c0088bc +75986726ns 1383008 1c003e06 00050563 beq x10, x0, 10 x10:1c009e10 +75986746ns 1383009 1c003e08 01852783 lw x15, 24(x10) x15=00000001 x10:1c009e10 PA:1c009e28 +75986786ns 1383011 1c003e0a 00079363 bne x15, x0, 6 x15:00000001 +75986845ns 1383014 1c003e10 0184a783 lw x15, 24(x9) x15=00000001 x9:1c009e10 PA:1c009e28 +75986865ns 1383015 1c003e12 0084a403 lw x8, 8(x9) x8=1c00b914 x9:1c009e10 PA:1c009e18 +75986885ns 1383016 1c003e14 00079463 bne x15, x0, 8 x15:00000001 +75986944ns 1383019 1c003e1c 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +75986964ns 1383020 1c003e20 a1478793 addi x15, x15, -1516 x15=1c008a14 x15:1c009000 +75986984ns 1383021 1c003e24 02f41c63 bne x8, x15, 56 x8:1c00b914 x15:1c008a14 +75987043ns 1383024 1c003e5c 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +75987063ns 1383025 1c003e60 a3478793 addi x15, x15, -1484 x15=1c008a34 x15:1c009000 +75987083ns 1383026 1c003e64 00f41463 bne x8, x15, 8 x8:1c00b914 x15:1c008a34 +75987142ns 1383029 1c003e6c 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +75987162ns 1383030 1c003e70 9f478793 addi x15, x15, -1548 x15=1c0089f4 x15:1c009000 +75987182ns 1383031 1c003e74 faf41be3 bne x8, x15, -74 x8:1c00b914 x15:1c0089f4 +75987261ns 1383035 1c003e2a 00c45783 lhu x15, 12(x8) x15=00000089 x8:1c00b914 PA:1c00b920 +75987300ns 1383037 1c003e2e 0087f793 andi x15, x15, 8 x15=00000008 x15:00000089 +75987320ns 1383038 1c003e30 04078663 beq x15, x0, 76 x15:00000008 +75987340ns 1383039 1c003e32 01042783 lw x15, 16(x8) x15=1c00bab8 x8:1c00b914 PA:1c00b924 +75987380ns 1383041 1c003e34 04078463 beq x15, x0, 72 x15:1c00bab8 +75987399ns 1383042 1c003e36 fff00993 addi x19, x0, -1 x19=ffffffff +75987419ns 1383043 1c003e38 00a00a13 addi x20, x0, 10 x20=0000000a +75987439ns 1383044 1c003e3a 00842783 lw x15, 8(x8) x15=00000000 x8:1c00b914 PA:1c00b91c +75987459ns 1383045 1c003e3c 00094583 lbu x11, 0(x18) x11=0000006d x18:1c0088bc PA:1c0088bc +75987479ns 1383046 1c003e40 fff78793 addi x15, x15, -1 x15=ffffffff x15:00000000 +75987498ns 1383047 1c003e42 04059a63 bne x11, x0, 84 x11:0000006d +75987558ns 1383050 1c003e96 00f42423 sw x15, 8(x8) x15:ffffffff x8:1c00b914 PA:1c00b91c +75987578ns 1383051 1c003e98 00190913 addi x18, x18, 1 x18=1c0088bd x18:1c0088bc +75987597ns 1383052 1c003e9a 0007d763 bge x15, x0, 14 x15:ffffffff +75987617ns 1383053 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +75987657ns 1383055 1c003ea0 00e7cb63 blt x15, x14, 22 x15:ffffffff x14:fffffc00 +75987677ns 1383056 1c003ea4 01458963 beq x11, x20, 18 x11:0000006d x20:0000000a +75987696ns 1383057 1c003ea8 00042783 lw x15, 0(x8) x15=1c00bab8 x8:1c00b914 PA:1c00b914 +75987736ns 1383059 1c003eaa 00178713 addi x14, x15, 1 x14=1c00bab9 x15:1c00bab8 +75987756ns 1383060 1c003eae 00e42023 sw x14, 0(x8) x14:1c00bab9 x8:1c00b914 PA:1c00b914 +75987775ns 1383061 1c003eb0 00b78023 sb x11, 0(x15) x11:0000006d x15:1c00bab8 PA:1c00bab8 +75987795ns 1383062 1c003eb4 f87ff06f jal x0, -122 +75987835ns 1383064 1c003e3a 00842783 lw x15, 8(x8) x15=ffffffff x8:1c00b914 PA:1c00b91c +75987855ns 1383065 1c003e3c 00094583 lbu x11, 0(x18) x11=00000061 x18:1c0088bd PA:1c0088bd +75987874ns 1383066 1c003e40 fff78793 addi x15, x15, -1 x15=fffffffe x15:ffffffff +75987894ns 1383067 1c003e42 04059a63 bne x11, x0, 84 x11:00000061 +75987954ns 1383070 1c003e96 00f42423 sw x15, 8(x8) x15:fffffffe x8:1c00b914 PA:1c00b91c +75987973ns 1383071 1c003e98 00190913 addi x18, x18, 1 x18=1c0088be x18:1c0088bd +75987993ns 1383072 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffffe +75988013ns 1383073 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +75988053ns 1383075 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffffe x14:fffffc00 +75988072ns 1383076 1c003ea4 01458963 beq x11, x20, 18 x11:00000061 x20:0000000a +75988092ns 1383077 1c003ea8 00042783 lw x15, 0(x8) x15=1c00bab9 x8:1c00b914 PA:1c00b914 +75988132ns 1383079 1c003eaa 00178713 addi x14, x15, 1 x14=1c00baba x15:1c00bab9 +75988152ns 1383080 1c003eae 00e42023 sw x14, 0(x8) x14:1c00baba x8:1c00b914 PA:1c00b914 +75988171ns 1383081 1c003eb0 00b78023 sb x11, 0(x15) x11:00000061 x15:1c00bab9 PA:1c00bab9 +75988191ns 1383082 1c003eb4 f87ff06f jal x0, -122 +75988231ns 1383084 1c003e3a 00842783 lw x15, 8(x8) x15=fffffffe x8:1c00b914 PA:1c00b91c +75988250ns 1383085 1c003e3c 00094583 lbu x11, 0(x18) x11=0000006c x18:1c0088be PA:1c0088be +75988270ns 1383086 1c003e40 fff78793 addi x15, x15, -1 x15=fffffffd x15:fffffffe +75988290ns 1383087 1c003e42 04059a63 bne x11, x0, 84 x11:0000006c +75988349ns 1383090 1c003e96 00f42423 sw x15, 8(x8) x15:fffffffd x8:1c00b914 PA:1c00b91c +75988369ns 1383091 1c003e98 00190913 addi x18, x18, 1 x18=1c0088bf x18:1c0088be +75988389ns 1383092 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffffd +75988409ns 1383093 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +75988448ns 1383095 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffffd x14:fffffc00 +75988468ns 1383096 1c003ea4 01458963 beq x11, x20, 18 x11:0000006c x20:0000000a +75988488ns 1383097 1c003ea8 00042783 lw x15, 0(x8) x15=1c00baba x8:1c00b914 PA:1c00b914 +75988528ns 1383099 1c003eaa 00178713 addi x14, x15, 1 x14=1c00babb x15:1c00baba +75988547ns 1383100 1c003eae 00e42023 sw x14, 0(x8) x14:1c00babb x8:1c00b914 PA:1c00b914 +75988567ns 1383101 1c003eb0 00b78023 sb x11, 0(x15) x11:0000006c x15:1c00baba PA:1c00baba +75988587ns 1383102 1c003eb4 f87ff06f jal x0, -122 +75988627ns 1383104 1c003e3a 00842783 lw x15, 8(x8) x15=fffffffd x8:1c00b914 PA:1c00b91c +75988646ns 1383105 1c003e3c 00094583 lbu x11, 0(x18) x11=0000006c x18:1c0088bf PA:1c0088bf +75988666ns 1383106 1c003e40 fff78793 addi x15, x15, -1 x15=fffffffc x15:fffffffd +75988686ns 1383107 1c003e42 04059a63 bne x11, x0, 84 x11:0000006c +75988745ns 1383110 1c003e96 00f42423 sw x15, 8(x8) x15:fffffffc x8:1c00b914 PA:1c00b91c +75988765ns 1383111 1c003e98 00190913 addi x18, x18, 1 x18=1c0088c0 x18:1c0088bf +75988785ns 1383112 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffffc +75988805ns 1383113 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +75988844ns 1383115 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffffc x14:fffffc00 +75988864ns 1383116 1c003ea4 01458963 beq x11, x20, 18 x11:0000006c x20:0000000a +75988884ns 1383117 1c003ea8 00042783 lw x15, 0(x8) x15=1c00babb x8:1c00b914 PA:1c00b914 +75988923ns 1383119 1c003eaa 00178713 addi x14, x15, 1 x14=1c00babc x15:1c00babb +75988943ns 1383120 1c003eae 00e42023 sw x14, 0(x8) x14:1c00babc x8:1c00b914 PA:1c00b914 +75988963ns 1383121 1c003eb0 00b78023 sb x11, 0(x15) x11:0000006c x15:1c00babb PA:1c00babb +75988983ns 1383122 1c003eb4 f87ff06f jal x0, -122 +75989022ns 1383124 1c003e3a 00842783 lw x15, 8(x8) x15=fffffffc x8:1c00b914 PA:1c00b91c +75989042ns 1383125 1c003e3c 00094583 lbu x11, 0(x18) x11=0000006f x18:1c0088c0 PA:1c0088c0 +75989062ns 1383126 1c003e40 fff78793 addi x15, x15, -1 x15=fffffffb x15:fffffffc +75989082ns 1383127 1c003e42 04059a63 bne x11, x0, 84 x11:0000006f +75989141ns 1383130 1c003e96 00f42423 sw x15, 8(x8) x15:fffffffb x8:1c00b914 PA:1c00b91c +75989161ns 1383131 1c003e98 00190913 addi x18, x18, 1 x18=1c0088c1 x18:1c0088c0 +75989181ns 1383132 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffffb +75989200ns 1383133 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +75989240ns 1383135 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffffb x14:fffffc00 +75989260ns 1383136 1c003ea4 01458963 beq x11, x20, 18 x11:0000006f x20:0000000a +75989280ns 1383137 1c003ea8 00042783 lw x15, 0(x8) x15=1c00babc x8:1c00b914 PA:1c00b914 +75989319ns 1383139 1c003eaa 00178713 addi x14, x15, 1 x14=1c00babd x15:1c00babc +75989339ns 1383140 1c003eae 00e42023 sw x14, 0(x8) x14:1c00babd x8:1c00b914 PA:1c00b914 +75989359ns 1383141 1c003eb0 00b78023 sb x11, 0(x15) x11:0000006f x15:1c00babc PA:1c00babc +75989379ns 1383142 1c003eb4 f87ff06f jal x0, -122 +75989418ns 1383144 1c003e3a 00842783 lw x15, 8(x8) x15=fffffffb x8:1c00b914 PA:1c00b91c +75989438ns 1383145 1c003e3c 00094583 lbu x11, 0(x18) x11=00000063 x18:1c0088c1 PA:1c0088c1 +75989458ns 1383146 1c003e40 fff78793 addi x15, x15, -1 x15=fffffffa x15:fffffffb +75989478ns 1383147 1c003e42 04059a63 bne x11, x0, 84 x11:00000063 +75989537ns 1383150 1c003e96 00f42423 sw x15, 8(x8) x15:fffffffa x8:1c00b914 PA:1c00b91c +75989557ns 1383151 1c003e98 00190913 addi x18, x18, 1 x18=1c0088c2 x18:1c0088c1 +75989577ns 1383152 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffffa +75989596ns 1383153 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +75989636ns 1383155 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffffa x14:fffffc00 +75989656ns 1383156 1c003ea4 01458963 beq x11, x20, 18 x11:00000063 x20:0000000a +75989675ns 1383157 1c003ea8 00042783 lw x15, 0(x8) x15=1c00babd x8:1c00b914 PA:1c00b914 +75989715ns 1383159 1c003eaa 00178713 addi x14, x15, 1 x14=1c00babe x15:1c00babd +75989735ns 1383160 1c003eae 00e42023 sw x14, 0(x8) x14:1c00babe x8:1c00b914 PA:1c00b914 +75989755ns 1383161 1c003eb0 00b78023 sb x11, 0(x15) x11:00000063 x15:1c00babd PA:1c00babd +75989774ns 1383162 1c003eb4 f87ff06f jal x0, -122 +75989814ns 1383164 1c003e3a 00842783 lw x15, 8(x8) x15=fffffffa x8:1c00b914 PA:1c00b91c +75989834ns 1383165 1c003e3c 00094583 lbu x11, 0(x18) x11=00000020 x18:1c0088c2 PA:1c0088c2 +75989854ns 1383166 1c003e40 fff78793 addi x15, x15, -1 x15=fffffff9 x15:fffffffa +75989873ns 1383167 1c003e42 04059a63 bne x11, x0, 84 x11:00000020 +75989933ns 1383170 1c003e96 00f42423 sw x15, 8(x8) x15:fffffff9 x8:1c00b914 PA:1c00b91c +75989953ns 1383171 1c003e98 00190913 addi x18, x18, 1 x18=1c0088c3 x18:1c0088c2 +75989972ns 1383172 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffff9 +75989992ns 1383173 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +75990032ns 1383175 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffff9 x14:fffffc00 +75990052ns 1383176 1c003ea4 01458963 beq x11, x20, 18 x11:00000020 x20:0000000a +75990071ns 1383177 1c003ea8 00042783 lw x15, 0(x8) x15=1c00babe x8:1c00b914 PA:1c00b914 +75990111ns 1383179 1c003eaa 00178713 addi x14, x15, 1 x14=1c00babf x15:1c00babe +75990131ns 1383180 1c003eae 00e42023 sw x14, 0(x8) x14:1c00babf x8:1c00b914 PA:1c00b914 +75990151ns 1383181 1c003eb0 00b78023 sb x11, 0(x15) x11:00000020 x15:1c00babe PA:1c00babe +75990170ns 1383182 1c003eb4 f87ff06f jal x0, -122 +75990210ns 1383184 1c003e3a 00842783 lw x15, 8(x8) x15=fffffff9 x8:1c00b914 PA:1c00b91c +75990230ns 1383185 1c003e3c 00094583 lbu x11, 0(x18) x11=00000072 x18:1c0088c3 PA:1c0088c3 +75990249ns 1383186 1c003e40 fff78793 addi x15, x15, -1 x15=fffffff8 x15:fffffff9 +75990269ns 1383187 1c003e42 04059a63 bne x11, x0, 84 x11:00000072 +75990329ns 1383190 1c003e96 00f42423 sw x15, 8(x8) x15:fffffff8 x8:1c00b914 PA:1c00b91c +75990348ns 1383191 1c003e98 00190913 addi x18, x18, 1 x18=1c0088c4 x18:1c0088c3 +75990368ns 1383192 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffff8 +75990388ns 1383193 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +75990428ns 1383195 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffff8 x14:fffffc00 +75990447ns 1383196 1c003ea4 01458963 beq x11, x20, 18 x11:00000072 x20:0000000a +75990467ns 1383197 1c003ea8 00042783 lw x15, 0(x8) x15=1c00babf x8:1c00b914 PA:1c00b914 +75990507ns 1383199 1c003eaa 00178713 addi x14, x15, 1 x14=1c00bac0 x15:1c00babf +75990527ns 1383200 1c003eae 00e42023 sw x14, 0(x8) x14:1c00bac0 x8:1c00b914 PA:1c00b914 +75990546ns 1383201 1c003eb0 00b78023 sb x11, 0(x15) x11:00000072 x15:1c00babf PA:1c00babf +75990566ns 1383202 1c003eb4 f87ff06f jal x0, -122 +75990606ns 1383204 1c003e3a 00842783 lw x15, 8(x8) x15=fffffff8 x8:1c00b914 PA:1c00b91c +75990626ns 1383205 1c003e3c 00094583 lbu x11, 0(x18) x11=00000078 x18:1c0088c4 PA:1c0088c4 +75990645ns 1383206 1c003e40 fff78793 addi x15, x15, -1 x15=fffffff7 x15:fffffff8 +75990665ns 1383207 1c003e42 04059a63 bne x11, x0, 84 x11:00000078 +75990724ns 1383210 1c003e96 00f42423 sw x15, 8(x8) x15:fffffff7 x8:1c00b914 PA:1c00b91c +75990744ns 1383211 1c003e98 00190913 addi x18, x18, 1 x18=1c0088c5 x18:1c0088c4 +75990764ns 1383212 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffff7 +75990784ns 1383213 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +75990823ns 1383215 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffff7 x14:fffffc00 +75990843ns 1383216 1c003ea4 01458963 beq x11, x20, 18 x11:00000078 x20:0000000a +75990863ns 1383217 1c003ea8 00042783 lw x15, 0(x8) x15=1c00bac0 x8:1c00b914 PA:1c00b914 +75990903ns 1383219 1c003eaa 00178713 addi x14, x15, 1 x14=1c00bac1 x15:1c00bac0 +75990922ns 1383220 1c003eae 00e42023 sw x14, 0(x8) x14:1c00bac1 x8:1c00b914 PA:1c00b914 +75990942ns 1383221 1c003eb0 00b78023 sb x11, 0(x15) x11:00000078 x15:1c00bac0 PA:1c00bac0 +75990962ns 1383222 1c003eb4 f87ff06f jal x0, -122 +75991002ns 1383224 1c003e3a 00842783 lw x15, 8(x8) x15=fffffff7 x8:1c00b914 PA:1c00b91c +75991021ns 1383225 1c003e3c 00094583 lbu x11, 0(x18) x11=00000020 x18:1c0088c5 PA:1c0088c5 +75991041ns 1383226 1c003e40 fff78793 addi x15, x15, -1 x15=fffffff6 x15:fffffff7 +75991061ns 1383227 1c003e42 04059a63 bne x11, x0, 84 x11:00000020 +75991120ns 1383230 1c003e96 00f42423 sw x15, 8(x8) x15:fffffff6 x8:1c00b914 PA:1c00b91c +75991140ns 1383231 1c003e98 00190913 addi x18, x18, 1 x18=1c0088c6 x18:1c0088c5 +75991160ns 1383232 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffff6 +75991180ns 1383233 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +75991219ns 1383235 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffff6 x14:fffffc00 +75991239ns 1383236 1c003ea4 01458963 beq x11, x20, 18 x11:00000020 x20:0000000a +75991259ns 1383237 1c003ea8 00042783 lw x15, 0(x8) x15=1c00bac1 x8:1c00b914 PA:1c00b914 +75991298ns 1383239 1c003eaa 00178713 addi x14, x15, 1 x14=1c00bac2 x15:1c00bac1 +75991318ns 1383240 1c003eae 00e42023 sw x14, 0(x8) x14:1c00bac2 x8:1c00b914 PA:1c00b914 +75991338ns 1383241 1c003eb0 00b78023 sb x11, 0(x15) x11:00000020 x15:1c00bac1 PA:1c00bac1 +75991358ns 1383242 1c003eb4 f87ff06f jal x0, -122 +75991397ns 1383244 1c003e3a 00842783 lw x15, 8(x8) x15=fffffff6 x8:1c00b914 PA:1c00b91c +75991417ns 1383245 1c003e3c 00094583 lbu x11, 0(x18) x11=00000062 x18:1c0088c6 PA:1c0088c6 +75991437ns 1383246 1c003e40 fff78793 addi x15, x15, -1 x15=fffffff5 x15:fffffff6 +75991457ns 1383247 1c003e42 04059a63 bne x11, x0, 84 x11:00000062 +75991516ns 1383250 1c003e96 00f42423 sw x15, 8(x8) x15:fffffff5 x8:1c00b914 PA:1c00b91c +75991536ns 1383251 1c003e98 00190913 addi x18, x18, 1 x18=1c0088c7 x18:1c0088c6 +75991556ns 1383252 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffff5 +75991576ns 1383253 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +75991615ns 1383255 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffff5 x14:fffffc00 +75991635ns 1383256 1c003ea4 01458963 beq x11, x20, 18 x11:00000062 x20:0000000a +75991655ns 1383257 1c003ea8 00042783 lw x15, 0(x8) x15=1c00bac2 x8:1c00b914 PA:1c00b914 +75991694ns 1383259 1c003eaa 00178713 addi x14, x15, 1 x14=1c00bac3 x15:1c00bac2 +75991714ns 1383260 1c003eae 00e42023 sw x14, 0(x8) x14:1c00bac3 x8:1c00b914 PA:1c00b914 +75991734ns 1383261 1c003eb0 00b78023 sb x11, 0(x15) x11:00000062 x15:1c00bac2 PA:1c00bac2 +75991754ns 1383262 1c003eb4 f87ff06f jal x0, -122 +75991793ns 1383264 1c003e3a 00842783 lw x15, 8(x8) x15=fffffff5 x8:1c00b914 PA:1c00b91c +75991813ns 1383265 1c003e3c 00094583 lbu x11, 0(x18) x11=00000075 x18:1c0088c7 PA:1c0088c7 +75991833ns 1383266 1c003e40 fff78793 addi x15, x15, -1 x15=fffffff4 x15:fffffff5 +75991853ns 1383267 1c003e42 04059a63 bne x11, x0, 84 x11:00000075 +75991912ns 1383270 1c003e96 00f42423 sw x15, 8(x8) x15:fffffff4 x8:1c00b914 PA:1c00b91c +75991932ns 1383271 1c003e98 00190913 addi x18, x18, 1 x18=1c0088c8 x18:1c0088c7 +75991952ns 1383272 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffff4 +75991971ns 1383273 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +75992011ns 1383275 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffff4 x14:fffffc00 +75992031ns 1383276 1c003ea4 01458963 beq x11, x20, 18 x11:00000075 x20:0000000a +75992051ns 1383277 1c003ea8 00042783 lw x15, 0(x8) x15=1c00bac3 x8:1c00b914 PA:1c00b914 +75992090ns 1383279 1c003eaa 00178713 addi x14, x15, 1 x14=1c00bac4 x15:1c00bac3 +75992110ns 1383280 1c003eae 00e42023 sw x14, 0(x8) x14:1c00bac4 x8:1c00b914 PA:1c00b914 +75992130ns 1383281 1c003eb0 00b78023 sb x11, 0(x15) x11:00000075 x15:1c00bac3 PA:1c00bac3 +75992149ns 1383282 1c003eb4 f87ff06f jal x0, -122 +75992189ns 1383284 1c003e3a 00842783 lw x15, 8(x8) x15=fffffff4 x8:1c00b914 PA:1c00b91c +75992209ns 1383285 1c003e3c 00094583 lbu x11, 0(x18) x11=00000066 x18:1c0088c8 PA:1c0088c8 +75992229ns 1383286 1c003e40 fff78793 addi x15, x15, -1 x15=fffffff3 x15:fffffff4 +75992248ns 1383287 1c003e42 04059a63 bne x11, x0, 84 x11:00000066 +75992308ns 1383290 1c003e96 00f42423 sw x15, 8(x8) x15:fffffff3 x8:1c00b914 PA:1c00b91c +75992328ns 1383291 1c003e98 00190913 addi x18, x18, 1 x18=1c0088c9 x18:1c0088c8 +75992347ns 1383292 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffff3 +75992367ns 1383293 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +75992407ns 1383295 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffff3 x14:fffffc00 +75992427ns 1383296 1c003ea4 01458963 beq x11, x20, 18 x11:00000066 x20:0000000a +75992446ns 1383297 1c003ea8 00042783 lw x15, 0(x8) x15=1c00bac4 x8:1c00b914 PA:1c00b914 +75992486ns 1383299 1c003eaa 00178713 addi x14, x15, 1 x14=1c00bac5 x15:1c00bac4 +75992506ns 1383300 1c003eae 00e42023 sw x14, 0(x8) x14:1c00bac5 x8:1c00b914 PA:1c00b914 +75992526ns 1383301 1c003eb0 00b78023 sb x11, 0(x15) x11:00000066 x15:1c00bac4 PA:1c00bac4 +75992545ns 1383302 1c003eb4 f87ff06f jal x0, -122 +75992585ns 1383304 1c003e3a 00842783 lw x15, 8(x8) x15=fffffff3 x8:1c00b914 PA:1c00b91c +75992605ns 1383305 1c003e3c 00094583 lbu x11, 0(x18) x11=00000066 x18:1c0088c9 PA:1c0088c9 +75992625ns 1383306 1c003e40 fff78793 addi x15, x15, -1 x15=fffffff2 x15:fffffff3 +75992644ns 1383307 1c003e42 04059a63 bne x11, x0, 84 x11:00000066 +75992704ns 1383310 1c003e96 00f42423 sw x15, 8(x8) x15:fffffff2 x8:1c00b914 PA:1c00b91c +75992723ns 1383311 1c003e98 00190913 addi x18, x18, 1 x18=1c0088ca x18:1c0088c9 +75992743ns 1383312 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffff2 +75992763ns 1383313 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +75992803ns 1383315 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffff2 x14:fffffc00 +75992822ns 1383316 1c003ea4 01458963 beq x11, x20, 18 x11:00000066 x20:0000000a +75992842ns 1383317 1c003ea8 00042783 lw x15, 0(x8) x15=1c00bac5 x8:1c00b914 PA:1c00b914 +75992882ns 1383319 1c003eaa 00178713 addi x14, x15, 1 x14=1c00bac6 x15:1c00bac5 +75992902ns 1383320 1c003eae 00e42023 sw x14, 0(x8) x14:1c00bac6 x8:1c00b914 PA:1c00b914 +75992921ns 1383321 1c003eb0 00b78023 sb x11, 0(x15) x11:00000066 x15:1c00bac5 PA:1c00bac5 +75992941ns 1383322 1c003eb4 f87ff06f jal x0, -122 +75992981ns 1383324 1c003e3a 00842783 lw x15, 8(x8) x15=fffffff2 x8:1c00b914 PA:1c00b91c +75993001ns 1383325 1c003e3c 00094583 lbu x11, 0(x18) x11=00000065 x18:1c0088ca PA:1c0088ca +75993020ns 1383326 1c003e40 fff78793 addi x15, x15, -1 x15=fffffff1 x15:fffffff2 +75993040ns 1383327 1c003e42 04059a63 bne x11, x0, 84 x11:00000065 +75993100ns 1383330 1c003e96 00f42423 sw x15, 8(x8) x15:fffffff1 x8:1c00b914 PA:1c00b91c +75993119ns 1383331 1c003e98 00190913 addi x18, x18, 1 x18=1c0088cb x18:1c0088ca +75993139ns 1383332 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffff1 +75993159ns 1383333 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +75993198ns 1383335 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffff1 x14:fffffc00 +75993218ns 1383336 1c003ea4 01458963 beq x11, x20, 18 x11:00000065 x20:0000000a +75993238ns 1383337 1c003ea8 00042783 lw x15, 0(x8) x15=1c00bac6 x8:1c00b914 PA:1c00b914 +75993278ns 1383339 1c003eaa 00178713 addi x14, x15, 1 x14=1c00bac7 x15:1c00bac6 +75993297ns 1383340 1c003eae 00e42023 sw x14, 0(x8) x14:1c00bac7 x8:1c00b914 PA:1c00b914 +75993317ns 1383341 1c003eb0 00b78023 sb x11, 0(x15) x11:00000065 x15:1c00bac6 PA:1c00bac6 +75993337ns 1383342 1c003eb4 f87ff06f jal x0, -122 +75993377ns 1383344 1c003e3a 00842783 lw x15, 8(x8) x15=fffffff1 x8:1c00b914 PA:1c00b91c +75993396ns 1383345 1c003e3c 00094583 lbu x11, 0(x18) x11=00000072 x18:1c0088cb PA:1c0088cb +75993416ns 1383346 1c003e40 fff78793 addi x15, x15, -1 x15=fffffff0 x15:fffffff1 +75993436ns 1383347 1c003e42 04059a63 bne x11, x0, 84 x11:00000072 +75993495ns 1383350 1c003e96 00f42423 sw x15, 8(x8) x15:fffffff0 x8:1c00b914 PA:1c00b91c +75993515ns 1383351 1c003e98 00190913 addi x18, x18, 1 x18=1c0088cc x18:1c0088cb +75993535ns 1383352 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffff0 +75993555ns 1383353 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +75993594ns 1383355 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffff0 x14:fffffc00 +75993614ns 1383356 1c003ea4 01458963 beq x11, x20, 18 x11:00000072 x20:0000000a +75993634ns 1383357 1c003ea8 00042783 lw x15, 0(x8) x15=1c00bac7 x8:1c00b914 PA:1c00b914 +75993673ns 1383359 1c003eaa 00178713 addi x14, x15, 1 x14=1c00bac8 x15:1c00bac7 +75993693ns 1383360 1c003eae 00e42023 sw x14, 0(x8) x14:1c00bac8 x8:1c00b914 PA:1c00b914 +75993713ns 1383361 1c003eb0 00b78023 sb x11, 0(x15) x11:00000072 x15:1c00bac7 PA:1c00bac7 +75993733ns 1383362 1c003eb4 f87ff06f jal x0, -122 +75993772ns 1383364 1c003e3a 00842783 lw x15, 8(x8) x15=fffffff0 x8:1c00b914 PA:1c00b91c +75993792ns 1383365 1c003e3c 00094583 lbu x11, 0(x18) x11=00000020 x18:1c0088cc PA:1c0088cc +75993812ns 1383366 1c003e40 fff78793 addi x15, x15, -1 x15=ffffffef x15:fffffff0 +75993832ns 1383367 1c003e42 04059a63 bne x11, x0, 84 x11:00000020 +75993891ns 1383370 1c003e96 00f42423 sw x15, 8(x8) x15:ffffffef x8:1c00b914 PA:1c00b91c +75993911ns 1383371 1c003e98 00190913 addi x18, x18, 1 x18=1c0088cd x18:1c0088cc +75993931ns 1383372 1c003e9a 0007d763 bge x15, x0, 14 x15:ffffffef +75993951ns 1383373 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +75993990ns 1383375 1c003ea0 00e7cb63 blt x15, x14, 22 x15:ffffffef x14:fffffc00 +75994010ns 1383376 1c003ea4 01458963 beq x11, x20, 18 x11:00000020 x20:0000000a +75994030ns 1383377 1c003ea8 00042783 lw x15, 0(x8) x15=1c00bac8 x8:1c00b914 PA:1c00b914 +75994069ns 1383379 1c003eaa 00178713 addi x14, x15, 1 x14=1c00bac9 x15:1c00bac8 +75994089ns 1383380 1c003eae 00e42023 sw x14, 0(x8) x14:1c00bac9 x8:1c00b914 PA:1c00b914 +75994109ns 1383381 1c003eb0 00b78023 sb x11, 0(x15) x11:00000020 x15:1c00bac8 PA:1c00bac8 +75994129ns 1383382 1c003eb4 f87ff06f jal x0, -122 +75994168ns 1383384 1c003e3a 00842783 lw x15, 8(x8) x15=ffffffef x8:1c00b914 PA:1c00b91c +75994188ns 1383385 1c003e3c 00094583 lbu x11, 0(x18) x11=00000032 x18:1c0088cd PA:1c0088cd +75994208ns 1383386 1c003e40 fff78793 addi x15, x15, -1 x15=ffffffee x15:ffffffef +75994228ns 1383387 1c003e42 04059a63 bne x11, x0, 84 x11:00000032 +75994287ns 1383390 1c003e96 00f42423 sw x15, 8(x8) x15:ffffffee x8:1c00b914 PA:1c00b91c +75994307ns 1383391 1c003e98 00190913 addi x18, x18, 1 x18=1c0088ce x18:1c0088cd +75994327ns 1383392 1c003e9a 0007d763 bge x15, x0, 14 x15:ffffffee +75994346ns 1383393 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +75994386ns 1383395 1c003ea0 00e7cb63 blt x15, x14, 22 x15:ffffffee x14:fffffc00 +75994406ns 1383396 1c003ea4 01458963 beq x11, x20, 18 x11:00000032 x20:0000000a +75994426ns 1383397 1c003ea8 00042783 lw x15, 0(x8) x15=1c00bac9 x8:1c00b914 PA:1c00b914 +75994465ns 1383399 1c003eaa 00178713 addi x14, x15, 1 x14=1c00baca x15:1c00bac9 +75994485ns 1383400 1c003eae 00e42023 sw x14, 0(x8) x14:1c00baca x8:1c00b914 PA:1c00b914 +75994505ns 1383401 1c003eb0 00b78023 sb x11, 0(x15) x11:00000032 x15:1c00bac9 PA:1c00bac9 +75994525ns 1383402 1c003eb4 f87ff06f jal x0, -122 +75994564ns 1383404 1c003e3a 00842783 lw x15, 8(x8) x15=ffffffee x8:1c00b914 PA:1c00b91c +75994584ns 1383405 1c003e3c 00094583 lbu x11, 0(x18) x11=00000000 x18:1c0088ce PA:1c0088ce +75994604ns 1383406 1c003e40 fff78793 addi x15, x15, -1 x15=ffffffed x15:ffffffee +75994623ns 1383407 1c003e42 04059a63 bne x11, x0, 84 x11:00000000 +75994643ns 1383408 1c003e44 00f42423 sw x15, 8(x8) x15:ffffffed x8:1c00b914 PA:1c00b91c +75994663ns 1383409 1c003e46 0607de63 bge x15, x0, 124 x15:ffffffed +75994683ns 1383410 1c003e4a 00800633 add x12, x0, x8 x12=1c00b914 x8:1c00b914 +75994703ns 1383411 1c003e4c 00a00593 addi x11, x0, 10 x11=0000000a +75994722ns 1383412 1c003e4e 00900533 add x10, x0, x9 x10=1c009e10 x9:1c009e10 +75994742ns 1383413 1c003e50 25a000ef jal x1, 602 x1=1c003e52 +75994782ns 1383415 1c0040aa fe010113 addi x2, x2, -32 x2=1c009b80 x2:1c009ba0 +75994802ns 1383416 1c0040ac 00812c23 sw x8, 24(x2) x8:1c00b914 x2:1c009b80 PA:1c009b98 +75994821ns 1383417 1c0040ae 00912a23 sw x9, 20(x2) x9:1c009e10 x2:1c009b80 PA:1c009b94 +75994841ns 1383418 1c0040b0 01212823 sw x18, 16(x2) x18:1c0088ce x2:1c009b80 PA:1c009b90 +75994861ns 1383419 1c0040b2 00112e23 sw x1, 28(x2) x1:1c003e52 x2:1c009b80 PA:1c009b9c +75994881ns 1383420 1c0040b4 01312623 sw x19, 12(x2) x19:ffffffff x2:1c009b80 PA:1c009b8c +75994901ns 1383421 1c0040b6 00a004b3 add x9, x0, x10 x9=1c009e10 x10:1c009e10 +75994920ns 1383422 1c0040b8 00b00933 add x18, x0, x11 x18=0000000a x11:0000000a +75994940ns 1383423 1c0040ba 00c00433 add x8, x0, x12 x8=1c00b914 x12:1c00b914 +75994960ns 1383424 1c0040bc 00050463 beq x10, x0, 8 x10:1c009e10 +75994980ns 1383425 1c0040be 01852783 lw x15, 24(x10) x15=00000001 x10:1c009e10 PA:1c009e28 +75995019ns 1383427 1c0040c0 00079263 bne x15, x0, 4 x15:00000001 +75995079ns 1383430 1c0040c4 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +75995099ns 1383431 1c0040c8 a1478793 addi x15, x15, -1516 x15=1c008a14 x15:1c009000 +75995118ns 1383432 1c0040cc 06f41963 bne x8, x15, 114 x8:1c00b914 x15:1c008a14 +75995197ns 1383436 1c00413e 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +75995217ns 1383437 1c004142 a3478793 addi x15, x15, -1484 x15=1c008a34 x15:1c009000 +75995237ns 1383438 1c004146 00f41463 bne x8, x15, 8 x8:1c00b914 x15:1c008a34 +75995316ns 1383442 1c00414e 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +75995336ns 1383443 1c004152 9f478793 addi x15, x15, -1548 x15=1c0089f4 x15:1c009000 +75995356ns 1383444 1c004156 f6f41ee3 bne x8, x15, -132 x8:1c00b914 x15:1c0089f4 +75995415ns 1383447 1c0040d2 01842783 lw x15, 24(x8) x15=fffffc00 x8:1c00b914 PA:1c00b92c +75995455ns 1383449 1c0040d4 00f42423 sw x15, 8(x8) x15:fffffc00 x8:1c00b914 PA:1c00b91c +75995475ns 1383450 1c0040d6 00c45783 lhu x15, 12(x8) x15=00000089 x8:1c00b914 PA:1c00b920 +75995514ns 1383452 1c0040da 0087f793 andi x15, x15, 8 x15=00000008 x15:00000089 +75995534ns 1383453 1c0040dc 08078163 beq x15, x0, 130 x15:00000008 +75995554ns 1383454 1c0040de 01042783 lw x15, 16(x8) x15=1c00bab8 x8:1c00b914 PA:1c00b924 +75995593ns 1383456 1c0040e0 06078f63 beq x15, x0, 126 x15:1c00bab8 +75995613ns 1383457 1c0040e2 01042783 lw x15, 16(x8) x15=1c00bab8 x8:1c00b914 PA:1c00b924 +75995633ns 1383458 1c0040e4 00042503 lw x10, 0(x8) x10=1c00baca x8:1c00b914 PA:1c00b914 +75995653ns 1383459 1c0040e6 0ff97993 andi x19, x18, 255 x19=0000000a x18:0000000a +75995672ns 1383460 1c0040ea 0ff97913 andi x18, x18, 255 x18=0000000a x18:0000000a +75995692ns 1383461 1c0040ee 40f50533 sub x10, x10, x15 x10=00000012 x10:1c00baca x15:1c00bab8 +75995712ns 1383462 1c0040f0 01442783 lw x15, 20(x8) x15=00000400 x8:1c00b914 PA:1c00b928 +75995752ns 1383464 1c0040f2 00f54663 blt x10, x15, 12 x10:00000012 x15:00000400 +75995811ns 1383467 1c0040fe 00842783 lw x15, 8(x8) x15=fffffc00 x8:1c00b914 PA:1c00b91c +75995831ns 1383468 1c004100 00150513 addi x10, x10, 1 x10=00000013 x10:00000012 +75995851ns 1383469 1c004102 fff78793 addi x15, x15, -1 x15=fffffbff x15:fffffc00 +75995870ns 1383470 1c004104 00f42423 sw x15, 8(x8) x15:fffffbff x8:1c00b914 PA:1c00b91c +75995890ns 1383471 1c004106 00042783 lw x15, 0(x8) x15=1c00baca x8:1c00b914 PA:1c00b914 +75995930ns 1383473 1c004108 00178713 addi x14, x15, 1 x14=1c00bacb x15:1c00baca +75995950ns 1383474 1c00410c 00e42023 sw x14, 0(x8) x14:1c00bacb x8:1c00b914 PA:1c00b914 +75995969ns 1383475 1c00410e 01378023 sb x19, 0(x15) x19:0000000a x15:1c00baca PA:1c00baca +75995989ns 1383476 1c004112 01442783 lw x15, 20(x8) x15=00000400 x8:1c00b914 PA:1c00b928 +75996029ns 1383478 1c004114 00a78963 beq x15, x10, 18 x15:00000400 x10:00000013 +75996049ns 1383479 1c004118 00c45783 lhu x15, 12(x8) x15=00000089 x8:1c00b914 PA:1c00b920 +75996088ns 1383481 1c00411c 0017f793 andi x15, x15, 1 x15=00000001 x15:00000089 +75996108ns 1383482 1c00411e 00078863 beq x15, x0, 16 x15:00000001 +75996128ns 1383483 1c004120 00a00793 addi x15, x0, 10 x15=0000000a +75996147ns 1383484 1c004122 00f91663 bne x18, x15, 12 x18:0000000a x15:0000000a +75996167ns 1383485 1c004126 008005b3 add x11, x0, x8 x11=1c00b914 x8:1c00b914 +75996187ns 1383486 1c004128 00900533 add x10, x0, x9 x10=1c009e10 x9:1c009e10 +75996207ns 1383487 1c00412a 3d8000ef jal x1, 984 x1=1c00412c +75996246ns 1383489 1c004502 0105a783 lw x15, 16(x11) x15=1c00bab8 x11:1c00b914 PA:1c00b924 +75996286ns 1383491 1c004504 06078063 beq x15, x0, 96 x15:1c00bab8 +75996306ns 1383492 1c004506 fe010113 addi x2, x2, -32 x2=1c009b60 x2:1c009b80 +75996326ns 1383493 1c004508 00812c23 sw x8, 24(x2) x8:1c00b914 x2:1c009b60 PA:1c009b78 +75996345ns 1383494 1c00450a 00112e23 sw x1, 28(x2) x1:1c00412c x2:1c009b60 PA:1c009b7c +75996365ns 1383495 1c00450c 00a00433 add x8, x0, x10 x8=1c009e10 x10:1c009e10 +75996385ns 1383496 1c00450e 00050663 beq x10, x0, 12 x10:1c009e10 +75996405ns 1383497 1c004510 01852783 lw x15, 24(x10) x15=00000001 x10:1c009e10 PA:1c009e28 +75996444ns 1383499 1c004512 00079463 bne x15, x0, 8 x15:00000001 +75996524ns 1383503 1c00451a 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +75996543ns 1383504 1c00451e a1478793 addi x15, x15, -1516 x15=1c008a14 x15:1c009000 +75996563ns 1383505 1c004522 00f59c63 bne x11, x15, 24 x11:1c00b914 x15:1c008a14 +75996642ns 1383509 1c00453a 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +75996662ns 1383510 1c00453e a3478793 addi x15, x15, -1484 x15=1c008a34 x15:1c009000 +75996682ns 1383511 1c004542 00f59463 bne x11, x15, 8 x11:1c00b914 x15:1c008a34 +75996761ns 1383515 1c00454a 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +75996781ns 1383516 1c00454e 9f478793 addi x15, x15, -1548 x15=1c0089f4 x15:1c009000 +75996801ns 1383517 1c004552 fcf59be3 bne x11, x15, -42 x11:1c00b914 x15:1c0089f4 +75996860ns 1383520 1c004528 00c59783 lh x15, 12(x11) x15=00000089 x11:1c00b914 PA:1c00b920 +75996900ns 1383522 1c00452c 02078763 beq x15, x0, 46 x15:00000089 +75996919ns 1383523 1c00452e 00800533 add x10, x0, x8 x10=1c009e10 x8:1c009e10 +75996939ns 1383524 1c004530 01812403 lw x8, 24(x2) x8=1c00b914 x2:1c009b60 PA:1c009b78 +75996959ns 1383525 1c004532 01c12083 lw x1, 28(x2) x1=1c00412c x2:1c009b60 PA:1c009b7c +75996979ns 1383526 1c004534 02010113 addi x2, x2, 32 x2=1c009b80 x2:1c009b60 +75996999ns 1383527 1c004536 e85ff06f jal x0, -380 +75997058ns 1383530 1c0043ba 00c5d783 lhu x15, 12(x11) x15=00000089 x11:1c00b914 PA:1c00b920 +75997078ns 1383531 1c0043be fe010113 addi x2, x2, -32 x2=1c009b60 x2:1c009b80 +75997097ns 1383532 1c0043c0 00812c23 sw x8, 24(x2) x8:1c00b914 x2:1c009b60 PA:1c009b78 +75997117ns 1383533 1c0043c2 00912a23 sw x9, 20(x2) x9:1c009e10 x2:1c009b60 PA:1c009b74 +75997137ns 1383534 1c0043c4 00112e23 sw x1, 28(x2) x1:1c00412c x2:1c009b60 PA:1c009b7c +75997157ns 1383535 1c0043c6 01212823 sw x18, 16(x2) x18:0000000a x2:1c009b60 PA:1c009b70 +75997177ns 1383536 1c0043c8 01312623 sw x19, 12(x2) x19:0000000a x2:1c009b60 PA:1c009b6c +75997196ns 1383537 1c0043ca 0087f713 andi x14, x15, 8 x14=00000008 x15:00000089 +75997216ns 1383538 1c0043ce 00a004b3 add x9, x0, x10 x9=1c009e10 x10:1c009e10 +75997236ns 1383539 1c0043d0 00b00433 add x8, x0, x11 x8=1c00b914 x11:1c00b914 +75997256ns 1383540 1c0043d2 0e071363 bne x14, x0, 230 x14:00000008 +75997315ns 1383543 1c0044b8 0105a983 lw x19, 16(x11) x19=1c00bab8 x11:1c00b914 PA:1c00b924 +75997355ns 1383545 1c0044bc f20982e3 beq x19, x0, -220 x19:1c00bab8 +75997375ns 1383546 1c0044c0 0005a903 lw x18, 0(x11) x18=1c00bacb x11:1c00b914 PA:1c00b914 +75997394ns 1383547 1c0044c4 0037f793 andi x15, x15, 3 x15=00000001 x15:00000089 +75997414ns 1383548 1c0044c6 0135a023 sw x19, 0(x11) x19:1c00bab8 x11:1c00b914 PA:1c00b914 +75997434ns 1383549 1c0044ca 41390933 sub x18, x18, x19 x18=00000013 x18:1c00bacb x19:1c00bab8 +75997454ns 1383550 1c0044ce 00000713 addi x14, x0, 0 x14=00000000 +75997474ns 1383551 1c0044d0 00079263 bne x15, x0, 4 x15:00000001 +75997533ns 1383554 1c0044d4 00e42423 sw x14, 8(x8) x14:00000000 x8:1c00b914 PA:1c00b91c +75997553ns 1383555 1c0044d6 f12055e3 bge x0, x18, -246 x18:00000013 +75997573ns 1383556 1c0044da 02842783 lw x15, 40(x8) x15=1c004c5e x8:1c00b914 PA:1c00b93c +75997592ns 1383557 1c0044dc 02042583 lw x11, 32(x8) x11=1c00b914 x8:1c00b914 PA:1c00b934 +75997612ns 1383558 1c0044de 012006b3 add x13, x0, x18 x13=00000013 x18:00000013 +75997632ns 1383559 1c0044e0 01300633 add x12, x0, x19 x12=1c00bab8 x19:1c00bab8 +75997652ns 1383560 1c0044e2 00900533 add x10, x0, x9 x10=1c009e10 x9:1c009e10 +75997671ns 1383561 1c0044e4 000780e7 jalr x1, x15, 0 x1=1c0044e6 x15:1c004c5e +75997731ns 1383564 1c004c5e 00c5d783 lhu x15, 12(x11) x15=00000089 x11:1c00b914 PA:1c00b920 +75997751ns 1383565 1c004c62 fe010113 addi x2, x2, -32 x2=1c009b40 x2:1c009b60 +75997770ns 1383566 1c004c64 00812c23 sw x8, 24(x2) x8:1c00b914 x2:1c009b40 PA:1c009b58 +75997790ns 1383567 1c004c66 00912a23 sw x9, 20(x2) x9:1c009e10 x2:1c009b40 PA:1c009b54 +75997810ns 1383568 1c004c68 01212823 sw x18, 16(x2) x18:00000013 x2:1c009b40 PA:1c009b50 +75997830ns 1383569 1c004c6a 01312623 sw x19, 12(x2) x19:1c00bab8 x2:1c009b40 PA:1c009b4c +75997850ns 1383570 1c004c6c 00112e23 sw x1, 28(x2) x1:1c0044e6 x2:1c009b40 PA:1c009b5c +75997869ns 1383571 1c004c6e 1007f793 andi x15, x15, 256 x15=00000000 x15:00000089 +75997889ns 1383572 1c004c72 00a004b3 add x9, x0, x10 x9=1c009e10 x10:1c009e10 +75997909ns 1383573 1c004c74 00b00433 add x8, x0, x11 x8=1c00b914 x11:1c00b914 +75997929ns 1383574 1c004c76 00c00933 add x18, x0, x12 x18=1c00bab8 x12:1c00bab8 +75997949ns 1383575 1c004c78 00d009b3 add x19, x0, x13 x19=00000013 x13:00000013 +75997968ns 1383576 1c004c7a 00078663 beq x15, x0, 12 x15:00000000 +75998048ns 1383580 1c004c86 00c45783 lhu x15, 12(x8) x15=00000089 x8:1c00b914 PA:1c00b920 +75998067ns 1383581 1c004c8a fffff737 lui x14, 0xfffff000 x14=fffff000 +75998087ns 1383582 1c004c8c fff70713 addi x14, x14, -1 x14=ffffefff x14:fffff000 +75998107ns 1383583 1c004c8e 00e7f7b3 and x15, x15, x14 x15=00000089 x15:00000089 x14:ffffefff +75998127ns 1383584 1c004c90 00e41583 lh x11, 14(x8) x11=00000001 x8:1c00b914 PA:1c00b922 +75998146ns 1383585 1c004c94 00f41623 sh x15, 12(x8) x15:00000089 x8:1c00b914 PA:1c00b920 +75998166ns 1383586 1c004c98 01812403 lw x8, 24(x2) x8=1c00b914 x2:1c009b40 PA:1c009b58 +75998186ns 1383587 1c004c9a 01c12083 lw x1, 28(x2) x1=1c0044e6 x2:1c009b40 PA:1c009b5c +75998206ns 1383588 1c004c9c 013006b3 add x13, x0, x19 x13=00000013 x19:00000013 +75998226ns 1383589 1c004c9e 01200633 add x12, x0, x18 x12=1c00bab8 x18:1c00bab8 +75998245ns 1383590 1c004ca0 00c12983 lw x19, 12(x2) x19=1c00bab8 x2:1c009b40 PA:1c009b4c +75998265ns 1383591 1c004ca2 01012903 lw x18, 16(x2) x18=00000013 x2:1c009b40 PA:1c009b50 +75998285ns 1383592 1c004ca4 00900533 add x10, x0, x9 x10=1c009e10 x9:1c009e10 +75998305ns 1383593 1c004ca6 01412483 lw x9, 20(x2) x9=1c009e10 x2:1c009b40 PA:1c009b54 +75998325ns 1383594 1c004ca8 02010113 addi x2, x2, 32 x2=1c009b60 x2:1c009b40 +75998344ns 1383595 1c004caa 03e0006f jal x0, 62 +75998384ns 1383597 1c004ce8 ff010113 addi x2, x2, -16 x2=1c009b50 x2:1c009b60 +75998404ns 1383598 1c004cea 00812423 sw x8, 8(x2) x8:1c00b914 x2:1c009b50 PA:1c009b58 +75998424ns 1383599 1c004cec 00912223 sw x9, 4(x2) x9:1c009e10 x2:1c009b50 PA:1c009b54 +75998443ns 1383600 1c004cee 00a00433 add x8, x0, x10 x8=1c009e10 x10:1c009e10 +75998463ns 1383601 1c004cf0 00b00533 add x10, x0, x11 x10=00000001 x11:00000001 +75998483ns 1383602 1c004cf2 00c005b3 add x11, x0, x12 x11=1c00bab8 x12:1c00bab8 +75998503ns 1383603 1c004cf4 00d00633 add x12, x0, x13 x12=00000013 x13:00000013 +75998523ns 1383604 1c004cf6 00112623 sw x1, 12(x2) x1:1c0044e6 x2:1c009b50 PA:1c009b5c +75998542ns 1383605 1c004cf8 dc01a023 sw x0, -576(x3) x3:1c0093dc PA:1c00919c +75998562ns 1383606 1c004cfc cf7fd0ef jal x1, -8970 x1=1c004d00 +75998602ns 1383608 1c0029f2 fff50513 addi x10, x10, -1 x10=00000000 x10:00000001 +75998621ns 1383609 1c0029f4 00100793 addi x15, x0, 1 x15=00000001 +75998641ns 1383610 1c0029f6 00c58833 add x16, x11, x12 x16=1c00bacb x11:1c00bab8 x12:00000013 +75998661ns 1383611 1c0029fa 00a7eb63 bltu x15, x10, 22 x15:00000001 x10:00000000 +75998681ns 1383612 1c0029fe 000026b7 lui x13, 0x2000 x13=00002000 +75998701ns 1383613 1c002a00 f8068693 addi x13, x13, -128 x13=00001f80 x13:00002000 +75998720ns 1383614 1c002a04 1a10f537 lui x10, 0x1a10f000 x10=1a10f000 +75998740ns 1383615 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bab8 x16:1c00bacb +75998800ns 1383618 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bab9 x11:1c00bab8 +75998819ns 1383619 1c002a1e fff5c883 lbu x17, -1(x11) x17=0000006d x11:1c00bab9 PA:1c00bab8 +75998839ns 1383620 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +75998859ns 1383621 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +75998879ns 1383622 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +75998899ns 1383623 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +75998918ns 1383624 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +75998938ns 1383625 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +75998958ns 1383626 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +75998978ns 1383627 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +75998998ns 1383628 1c002a38 0117a023 sw x17, 0(x15) x17:0000006d x15:1a10ff80 PA:1a10ff80 +75999017ns 1383629 1c002a3c fcdff06f jal x0, -52 +75999116ns 1383634 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bab9 x16:1c00bacb +75999176ns 1383637 1c002a1c 00158593 addi x11, x11, 1 x11=1c00baba x11:1c00bab9 +75999195ns 1383638 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000061 x11:1c00baba PA:1c00bab9 +75999215ns 1383639 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +75999235ns 1383640 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +75999255ns 1383641 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +75999275ns 1383642 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +75999294ns 1383643 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +75999314ns 1383644 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +75999334ns 1383645 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +75999354ns 1383646 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +75999374ns 1383647 1c002a38 0117a023 sw x17, 0(x15) x17:00000061 x15:1a10ff80 PA:1a10ff80 +75999393ns 1383648 1c002a3c fcdff06f jal x0, -52 +75999492ns 1383653 1c002a08 01059a63 bne x11, x16, 20 x11:1c00baba x16:1c00bacb +75999552ns 1383656 1c002a1c 00158593 addi x11, x11, 1 x11=1c00babb x11:1c00baba +75999571ns 1383657 1c002a1e fff5c883 lbu x17, -1(x11) x17=0000006c x11:1c00babb PA:1c00baba +75999591ns 1383658 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +75999611ns 1383659 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +75999631ns 1383660 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +75999651ns 1383661 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +75999670ns 1383662 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +75999690ns 1383663 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +75999710ns 1383664 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +75999730ns 1383665 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +75999750ns 1383666 1c002a38 0117a023 sw x17, 0(x15) x17:0000006c x15:1a10ff80 PA:1a10ff80 +75999769ns 1383667 1c002a3c fcdff06f jal x0, -52 +75999868ns 1383672 1c002a08 01059a63 bne x11, x16, 20 x11:1c00babb x16:1c00bacb +75999928ns 1383675 1c002a1c 00158593 addi x11, x11, 1 x11=1c00babc x11:1c00babb +75999948ns 1383676 1c002a1e fff5c883 lbu x17, -1(x11) x17=0000006c x11:1c00babc PA:1c00babb +75999967ns 1383677 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +75999987ns 1383678 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76000007ns 1383679 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76000027ns 1383680 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76000047ns 1383681 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76000066ns 1383682 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76000086ns 1383683 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76000106ns 1383684 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76000126ns 1383685 1c002a38 0117a023 sw x17, 0(x15) x17:0000006c x15:1a10ff80 PA:1a10ff80 +76000145ns 1383686 1c002a3c fcdff06f jal x0, -52 +76000244ns 1383691 1c002a08 01059a63 bne x11, x16, 20 x11:1c00babc x16:1c00bacb +76000304ns 1383694 1c002a1c 00158593 addi x11, x11, 1 x11=1c00babd x11:1c00babc +76000324ns 1383695 1c002a1e fff5c883 lbu x17, -1(x11) x17=0000006f x11:1c00babd PA:1c00babc +76000343ns 1383696 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76000363ns 1383697 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76000383ns 1383698 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76000403ns 1383699 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76000423ns 1383700 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76000442ns 1383701 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76000462ns 1383702 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76000482ns 1383703 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76000502ns 1383704 1c002a38 0117a023 sw x17, 0(x15) x17:0000006f x15:1a10ff80 PA:1a10ff80 +76000522ns 1383705 1c002a3c fcdff06f jal x0, -52 +76000620ns 1383710 1c002a08 01059a63 bne x11, x16, 20 x11:1c00babd x16:1c00bacb +76000680ns 1383713 1c002a1c 00158593 addi x11, x11, 1 x11=1c00babe x11:1c00babd +76000700ns 1383714 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000063 x11:1c00babe PA:1c00babd +76000719ns 1383715 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76000739ns 1383716 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76000759ns 1383717 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76000779ns 1383718 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76000799ns 1383719 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76000818ns 1383720 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76000838ns 1383721 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76000858ns 1383722 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76000878ns 1383723 1c002a38 0117a023 sw x17, 0(x15) x17:00000063 x15:1a10ff80 PA:1a10ff80 +76000898ns 1383724 1c002a3c fcdff06f jal x0, -52 +76000997ns 1383729 1c002a08 01059a63 bne x11, x16, 20 x11:1c00babe x16:1c00bacb +76001056ns 1383732 1c002a1c 00158593 addi x11, x11, 1 x11=1c00babf x11:1c00babe +76001076ns 1383733 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000020 x11:1c00babf PA:1c00babe +76001095ns 1383734 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76001115ns 1383735 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76001135ns 1383736 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76001155ns 1383737 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76001175ns 1383738 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76001194ns 1383739 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76001214ns 1383740 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76001234ns 1383741 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76001254ns 1383742 1c002a38 0117a023 sw x17, 0(x15) x17:00000020 x15:1a10ff80 PA:1a10ff80 +76001274ns 1383743 1c002a3c fcdff06f jal x0, -52 +76001373ns 1383748 1c002a08 01059a63 bne x11, x16, 20 x11:1c00babf x16:1c00bacb +76001432ns 1383751 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac0 x11:1c00babf +76001452ns 1383752 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000072 x11:1c00bac0 PA:1c00babf +76001472ns 1383753 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76001491ns 1383754 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76001511ns 1383755 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76001531ns 1383756 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76001551ns 1383757 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76001570ns 1383758 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76001590ns 1383759 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76001610ns 1383760 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76001630ns 1383761 1c002a38 0117a023 sw x17, 0(x15) x17:00000072 x15:1a10ff80 PA:1a10ff80 +76001650ns 1383762 1c002a3c fcdff06f jal x0, -52 +76001749ns 1383767 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac0 x16:1c00bacb +76001808ns 1383770 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac1 x11:1c00bac0 +76001828ns 1383771 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000078 x11:1c00bac1 PA:1c00bac0 +76001848ns 1383772 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76001867ns 1383773 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76001887ns 1383774 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76001907ns 1383775 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76001927ns 1383776 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76001947ns 1383777 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76001966ns 1383778 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76001986ns 1383779 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76002006ns 1383780 1c002a38 0117a023 sw x17, 0(x15) x17:00000078 x15:1a10ff80 PA:1a10ff80 +76002026ns 1383781 1c002a3c fcdff06f jal x0, -52 +76002125ns 1383786 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac1 x16:1c00bacb +76002184ns 1383789 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac2 x11:1c00bac1 +76002204ns 1383790 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000020 x11:1c00bac2 PA:1c00bac1 +76002224ns 1383791 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76002243ns 1383792 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76002263ns 1383793 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76002283ns 1383794 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76002303ns 1383795 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76002323ns 1383796 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76002342ns 1383797 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76002362ns 1383798 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76002382ns 1383799 1c002a38 0117a023 sw x17, 0(x15) x17:00000020 x15:1a10ff80 PA:1a10ff80 +76002402ns 1383800 1c002a3c fcdff06f jal x0, -52 +76002501ns 1383805 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac2 x16:1c00bacb +76002560ns 1383808 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac3 x11:1c00bac2 +76002580ns 1383809 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000062 x11:1c00bac3 PA:1c00bac2 +76002600ns 1383810 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76002619ns 1383811 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76002639ns 1383812 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76002659ns 1383813 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76002679ns 1383814 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76002699ns 1383815 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76002718ns 1383816 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76002738ns 1383817 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76002758ns 1383818 1c002a38 0117a023 sw x17, 0(x15) x17:00000062 x15:1a10ff80 PA:1a10ff80 +76002778ns 1383819 1c002a3c fcdff06f jal x0, -52 +76002877ns 1383824 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac3 x16:1c00bacb +76002936ns 1383827 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac4 x11:1c00bac3 +76002956ns 1383828 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000075 x11:1c00bac4 PA:1c00bac3 +76002976ns 1383829 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76002996ns 1383830 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76003015ns 1383831 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76003035ns 1383832 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76003055ns 1383833 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76003075ns 1383834 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76003094ns 1383835 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76003114ns 1383836 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76003134ns 1383837 1c002a38 0117a023 sw x17, 0(x15) x17:00000075 x15:1a10ff80 PA:1a10ff80 +76003154ns 1383838 1c002a3c fcdff06f jal x0, -52 +76003253ns 1383843 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac4 x16:1c00bacb +76003312ns 1383846 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac5 x11:1c00bac4 +76003332ns 1383847 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000066 x11:1c00bac5 PA:1c00bac4 +76003352ns 1383848 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76003372ns 1383849 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76003391ns 1383850 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76003411ns 1383851 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76003431ns 1383852 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76003451ns 1383853 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76003471ns 1383854 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76003490ns 1383855 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76003510ns 1383856 1c002a38 0117a023 sw x17, 0(x15) x17:00000066 x15:1a10ff80 PA:1a10ff80 +76003530ns 1383857 1c002a3c fcdff06f jal x0, -52 +76003629ns 1383862 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac5 x16:1c00bacb +76003688ns 1383865 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac6 x11:1c00bac5 +76003708ns 1383866 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000066 x11:1c00bac6 PA:1c00bac5 +76003728ns 1383867 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76003748ns 1383868 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76003767ns 1383869 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76003787ns 1383870 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76003807ns 1383871 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76003827ns 1383872 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76003847ns 1383873 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76003866ns 1383874 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76003886ns 1383875 1c002a38 0117a023 sw x17, 0(x15) x17:00000066 x15:1a10ff80 PA:1a10ff80 +76003906ns 1383876 1c002a3c fcdff06f jal x0, -52 +76004005ns 1383881 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac6 x16:1c00bacb +76004064ns 1383884 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac7 x11:1c00bac6 +76004084ns 1383885 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000065 x11:1c00bac7 PA:1c00bac6 +76004104ns 1383886 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76004124ns 1383887 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76004143ns 1383888 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76004163ns 1383889 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76004183ns 1383890 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76004203ns 1383891 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76004223ns 1383892 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76004242ns 1383893 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76004262ns 1383894 1c002a38 0117a023 sw x17, 0(x15) x17:00000065 x15:1a10ff80 PA:1a10ff80 +76004282ns 1383895 1c002a3c fcdff06f jal x0, -52 +76004381ns 1383900 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac7 x16:1c00bacb +76004440ns 1383903 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac8 x11:1c00bac7 +76004460ns 1383904 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000072 x11:1c00bac8 PA:1c00bac7 +76004480ns 1383905 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76004500ns 1383906 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76004519ns 1383907 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76004539ns 1383908 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76004559ns 1383909 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76004579ns 1383910 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76004599ns 1383911 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76004618ns 1383912 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76004638ns 1383913 1c002a38 0117a023 sw x17, 0(x15) x17:00000072 x15:1a10ff80 PA:1a10ff80 +76004658ns 1383914 1c002a3c fcdff06f jal x0, -52 +76004757ns 1383919 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac8 x16:1c00bacb +76004816ns 1383922 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac9 x11:1c00bac8 +76004836ns 1383923 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000020 x11:1c00bac9 PA:1c00bac8 +76004856ns 1383924 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76004876ns 1383925 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76004896ns 1383926 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76004915ns 1383927 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76004935ns 1383928 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76004955ns 1383929 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76004975ns 1383930 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76004995ns 1383931 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76005014ns 1383932 1c002a38 0117a023 sw x17, 0(x15) x17:00000020 x15:1a10ff80 PA:1a10ff80 +76005034ns 1383933 1c002a3c fcdff06f jal x0, -52 +76005133ns 1383938 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac9 x16:1c00bacb +76005192ns 1383941 1c002a1c 00158593 addi x11, x11, 1 x11=1c00baca x11:1c00bac9 +76005212ns 1383942 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000032 x11:1c00baca PA:1c00bac9 +76005232ns 1383943 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76005252ns 1383944 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76005272ns 1383945 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76005291ns 1383946 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76005311ns 1383947 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76005331ns 1383948 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76005351ns 1383949 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76005371ns 1383950 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76005390ns 1383951 1c002a38 0117a023 sw x17, 0(x15) x17:00000032 x15:1a10ff80 PA:1a10ff80 +76005410ns 1383952 1c002a3c fcdff06f jal x0, -52 +76005509ns 1383957 1c002a08 01059a63 bne x11, x16, 20 x11:1c00baca x16:1c00bacb +76005568ns 1383960 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bacb x11:1c00baca +76005588ns 1383961 1c002a1e fff5c883 lbu x17, -1(x11) x17=0000000a x11:1c00bacb PA:1c00baca +76005608ns 1383962 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76005628ns 1383963 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76005648ns 1383964 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76005667ns 1383965 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76005687ns 1383966 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76005707ns 1383967 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76005727ns 1383968 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76005747ns 1383969 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76005766ns 1383970 1c002a38 0117a023 sw x17, 0(x15) x17:0000000a x15:1a10ff80 PA:1a10ff80 +76005786ns 1383971 1c002a3c fcdff06f jal x0, -52 +76005885ns 1383976 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bacb x16:1c00bacb +76005905ns 1383977 1c002a0c 00c00533 add x10, x0, x12 x10=00000013 x12:00000013 +76005925ns 1383978 1c002a0e 00008067 jalr x0, x1, 0 x1:1c004d00 +76005964ns 1383980 1c004d00 fff00793 addi x15, x0, -1 x15=ffffffff +76005984ns 1383981 1c004d02 00f51663 bne x10, x15, 12 x10:00000013 x15:ffffffff +76006043ns 1383984 1c004d0e 00c12083 lw x1, 12(x2) x1=1c0044e6 x2:1c009b50 PA:1c009b5c +76006063ns 1383985 1c004d10 00812403 lw x8, 8(x2) x8=1c00b914 x2:1c009b50 PA:1c009b58 +76006083ns 1383986 1c004d12 00412483 lw x9, 4(x2) x9=1c009e10 x2:1c009b50 PA:1c009b54 +76006103ns 1383987 1c004d14 01010113 addi x2, x2, 16 x2=1c009b60 x2:1c009b50 +76006123ns 1383988 1c004d16 00008067 jalr x0, x1, 0 x1:1c0044e6 +76006182ns 1383991 1c0044e6 00a04a63 blt x0, x10, 20 x10:00000013 +76006241ns 1383994 1c0044fa 00a989b3 add x19, x19, x10 x19=1c00bacb x19:1c00bab8 x10:00000013 +76006261ns 1383995 1c0044fc 40a90933 sub x18, x18, x10 x18=00000000 x18:00000013 x10:00000013 +76006281ns 1383996 1c004500 fd7ff06f jal x0, -42 +76006340ns 1383999 1c0044d6 f12055e3 bge x0, x18, -246 x18:00000000 +76006400ns 1384002 1c0043e0 00000513 addi x10, x0, 0 x10=00000000 +76006420ns 1384003 1c0043e2 0be0006f jal x0, 190 +76006459ns 1384005 1c0044a0 01c12083 lw x1, 28(x2) x1=1c00412c x2:1c009b60 PA:1c009b7c +76006479ns 1384006 1c0044a2 01812403 lw x8, 24(x2) x8=1c00b914 x2:1c009b60 PA:1c009b78 +76006499ns 1384007 1c0044a4 01412483 lw x9, 20(x2) x9=1c009e10 x2:1c009b60 PA:1c009b74 +76006518ns 1384008 1c0044a6 01012903 lw x18, 16(x2) x18=0000000a x2:1c009b60 PA:1c009b70 +76006538ns 1384009 1c0044a8 00c12983 lw x19, 12(x2) x19=0000000a x2:1c009b60 PA:1c009b6c +76006558ns 1384010 1c0044aa 02010113 addi x2, x2, 32 x2=1c009b80 x2:1c009b60 +76006578ns 1384011 1c0044ac 00008067 jalr x0, x1, 0 x1:1c00412c +76006617ns 1384013 1c00412c 02051d63 bne x10, x0, 58 x10:00000000 +76006637ns 1384014 1c00412e 01c12083 lw x1, 28(x2) x1=1c003e52 x2:1c009b80 PA:1c009b9c +76006657ns 1384015 1c004130 01812403 lw x8, 24(x2) x8=1c00b914 x2:1c009b80 PA:1c009b98 +76006677ns 1384016 1c004132 01412483 lw x9, 20(x2) x9=1c009e10 x2:1c009b80 PA:1c009b94 +76006697ns 1384017 1c004134 00c12983 lw x19, 12(x2) x19=ffffffff x2:1c009b80 PA:1c009b8c +76006716ns 1384018 1c004136 01200533 add x10, x0, x18 x10=0000000a x18:0000000a +76006736ns 1384019 1c004138 01012903 lw x18, 16(x2) x18=1c0088ce x2:1c009b80 PA:1c009b90 +76006756ns 1384020 1c00413a 02010113 addi x2, x2, 32 x2=1c009ba0 x2:1c009b80 +76006776ns 1384021 1c00413c 00008067 jalr x0, x1, 0 x1:1c003e52 +76006815ns 1384023 1c003e52 fff00793 addi x15, x0, -1 x15=ffffffff +76006835ns 1384024 1c003e54 02f50863 beq x10, x15, 48 x10:0000000a x15:ffffffff +76006855ns 1384025 1c003e58 00a00513 addi x10, x0, 10 x10=0000000a +76006875ns 1384026 1c003e5a 02c0006f jal x0, 44 +76006914ns 1384028 1c003e86 01c12083 lw x1, 28(x2) x1=1c0035bc x2:1c009ba0 PA:1c009bbc +76006934ns 1384029 1c003e88 01812403 lw x8, 24(x2) x8=00000000 x2:1c009ba0 PA:1c009bb8 +76006954ns 1384030 1c003e8a 01412483 lw x9, 20(x2) x9=1c009190 x2:1c009ba0 PA:1c009bb4 +76006974ns 1384031 1c003e8c 01012903 lw x18, 16(x2) x18=1c009188 x2:1c009ba0 PA:1c009bb0 +76006993ns 1384032 1c003e8e 00c12983 lw x19, 12(x2) x19=a5a5a5a5 x2:1c009ba0 PA:1c009bac +76007013ns 1384033 1c003e90 00812a03 lw x20, 8(x2) x20=a5a5a5a5 x2:1c009ba0 PA:1c009ba8 +76007033ns 1384034 1c003e92 02010113 addi x2, x2, 32 x2=1c009bc0 x2:1c009ba0 +76007053ns 1384035 1c003e94 00008067 jalr x0, x1, 0 x1:1c0035bc +76007092ns 1384037 1c0035bc 10000513 addi x10, x0, 256 x10=00000100 +76007112ns 1384038 1c0035c0 caeff0ef jal x1, -2898 x1=1c0035c4 +76007172ns 1384041 1c002a6e 69b0006f jal x0, 3738 +76007211ns 1384043 1c003908 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76007231ns 1384044 1c00390c 00a005b3 add x11, x0, x10 x11=00000100 x10:00000100 +76007251ns 1384045 1c00390e c447a503 lw x10, -956(x15) x10=1c009e10 x15:1c009000 PA:1c008c44 +76007271ns 1384046 1c003912 0b60006f jal x0, 182 +76007310ns 1384048 1c0039c8 fe010113 addi x2, x2, -32 x2=1c009ba0 x2:1c009bc0 +76007330ns 1384049 1c0039ca 00912a23 sw x9, 20(x2) x9:1c009190 x2:1c009ba0 PA:1c009bb4 +76007350ns 1384050 1c0039cc 00358493 addi x9, x11, 3 x9=00000103 x11:00000100 +76007370ns 1384051 1c0039d0 ffc4f493 andi x9, x9, -4 x9=00000100 x9:00000103 +76007389ns 1384052 1c0039d2 01212823 sw x18, 16(x2) x18:1c009188 x2:1c009ba0 PA:1c009bb0 +76007409ns 1384053 1c0039d4 00112e23 sw x1, 28(x2) x1:1c0035c4 x2:1c009ba0 PA:1c009bbc +76007429ns 1384054 1c0039d6 00812c23 sw x8, 24(x2) x8:00000000 x2:1c009ba0 PA:1c009bb8 +76007449ns 1384055 1c0039d8 01312623 sw x19, 12(x2) x19:a5a5a5a5 x2:1c009ba0 PA:1c009bac +76007469ns 1384056 1c0039da 00848493 addi x9, x9, 8 x9=00000108 x9:00000100 +76007488ns 1384057 1c0039dc 00c00793 addi x15, x0, 12 x15=0000000c +76007508ns 1384058 1c0039de 00a00933 add x18, x0, x10 x18=1c009e10 x10:1c009e10 +76007528ns 1384059 1c0039e0 04f4f363 bgeu x9, x15, 70 x9:00000108 x15:0000000c +76007607ns 1384063 1c003a26 fc04d0e3 bge x9, x0, -64 x9:00000108 +76007686ns 1384067 1c0039e6 04b4e263 bltu x9, x11, 68 x9:00000108 x11:00000100 +76007706ns 1384068 1c0039ea 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +76007726ns 1384069 1c0039ec 87aff0ef jal x1, -3974 x1=1c0039f0 +76007785ns 1384072 1c002a66 fb1fe06f jal x0, -4176 +76007845ns 1384075 1c001a16 d6818793 addi x15, x3, -664 x15=1c009144 x3:1c0093dc +76007864ns 1384076 1c001a1a 0007a703 lw x14, 0(x15) x14=00000000 x15:1c009144 PA:1c009144 +76007904ns 1384078 1c001a1c 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76007924ns 1384079 1c001a1e 00e7a023 sw x14, 0(x15) x14:00000001 x15:1c009144 PA:1c009144 +76007944ns 1384080 1c001a20 00008067 jalr x0, x1, 0 x1:1c0039f0 +76007983ns 1384082 1c0039f0 db81a703 lw x14, -584(x3) x14=00000000 x3:1c0093dc PA:1c009194 +76008003ns 1384083 1c0039f4 db818693 addi x13, x3, -584 x13=1c009194 x3:1c0093dc +76008023ns 1384084 1c0039f8 00e00433 add x8, x0, x14 x8=00000000 x14:00000000 +76008042ns 1384085 1c0039fa 04041363 bne x8, x0, 70 x8:00000000 +76008062ns 1384086 1c0039fc dbc18413 addi x8, x3, -580 x8=1c009198 x3:1c0093dc +76008082ns 1384087 1c003a00 00042783 lw x15, 0(x8) x15=1c0091b0 x8:1c009198 PA:1c009198 +76008122ns 1384089 1c003a02 00079563 bne x15, x0, 10 x15:1c0091b0 +76008181ns 1384092 1c003a0c 009005b3 add x11, x0, x9 x11=00000108 x9:00000108 +76008201ns 1384093 1c003a0e 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +76008221ns 1384094 1c003a10 5cc000ef jal x1, 1484 x1=1c003a12 +76008260ns 1384096 1c003fdc ff010113 addi x2, x2, -16 x2=1c009b90 x2:1c009ba0 +76008280ns 1384097 1c003fde 00812423 sw x8, 8(x2) x8:1c009198 x2:1c009b90 PA:1c009b98 +76008300ns 1384098 1c003fe0 00912223 sw x9, 4(x2) x9:00000108 x2:1c009b90 PA:1c009b94 +76008320ns 1384099 1c003fe2 00a00433 add x8, x0, x10 x8=1c009e10 x10:1c009e10 +76008339ns 1384100 1c003fe4 00b00533 add x10, x0, x11 x10=00000108 x11:00000108 +76008359ns 1384101 1c003fe6 00112623 sw x1, 12(x2) x1:1c003a12 x2:1c009b90 PA:1c009b9c +76008379ns 1384102 1c003fe8 dc01a023 sw x0, -576(x3) x3:1c0093dc PA:1c00919c +76008399ns 1384103 1c003fec a53fe0ef jal x1, -5550 x1=1c003ff0 +76008458ns 1384106 1c002a3e 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76008478ns 1384107 1c002a42 c3c78793 addi x15, x15, -964 x15=1c008c3c x15:1c009000 +76008498ns 1384108 1c002a46 00a00733 add x14, x0, x10 x14=00000108 x10:00000108 +76008517ns 1384109 1c002a48 0007a503 lw x10, 0(x15) x10=1c00c0cc x15:1c008c3c PA:1c008c3c +76008537ns 1384110 1c002a4a 1c0196b7 lui x13, 0x1c019000 x13=1c019000 +76008557ns 1384111 1c002a4e 1b068693 addi x13, x13, 432 x13=1c0191b0 x13:1c019000 +76008577ns 1384112 1c002a52 00a70733 add x14, x14, x10 x14=1c00c1d4 x14:00000108 x10:1c00c0cc +76008597ns 1384113 1c002a54 00d76763 bltu x14, x13, 14 x14:1c00c1d4 x13:1c0191b0 +76008656ns 1384116 1c002a62 00e7a023 sw x14, 0(x15) x14:1c00c1d4 x15:1c008c3c PA:1c008c3c +76008676ns 1384117 1c002a64 00008067 jalr x0, x1, 0 x1:1c003ff0 +76008715ns 1384119 1c003ff0 fff00793 addi x15, x0, -1 x15=ffffffff +76008735ns 1384120 1c003ff2 00f51663 bne x10, x15, 12 x10:1c00c0cc x15:ffffffff +76008795ns 1384123 1c003ffe 00c12083 lw x1, 12(x2) x1=1c003a12 x2:1c009b90 PA:1c009b9c +76008814ns 1384124 1c004000 00812403 lw x8, 8(x2) x8=1c009198 x2:1c009b90 PA:1c009b98 +76008834ns 1384125 1c004002 00412483 lw x9, 4(x2) x9=00000108 x2:1c009b90 PA:1c009b94 +76008854ns 1384126 1c004004 01010113 addi x2, x2, 16 x2=1c009ba0 x2:1c009b90 +76008874ns 1384127 1c004006 00008067 jalr x0, x1, 0 x1:1c003a12 +76008913ns 1384129 1c003a12 fff00993 addi x19, x0, -1 x19=ffffffff +76008933ns 1384130 1c003a14 07351a63 bne x10, x19, 116 x10:1c00c0cc x19:ffffffff +76008992ns 1384133 1c003a88 00350413 addi x8, x10, 3 x8=1c00c0cf x10:1c00c0cc +76009012ns 1384134 1c003a8c ffc47413 andi x8, x8, -4 x8=1c00c0cc x8:1c00c0cf +76009032ns 1384135 1c003a8e fc8502e3 beq x10, x8, -60 x10:1c00c0cc x8:1c00c0cc +76009091ns 1384138 1c003a52 00942023 sw x9, 0(x8) x9:00000108 x8:1c00c0cc PA:1c00c0cc +76009111ns 1384139 1c003a54 00a0006f jal x0, 10 +76009151ns 1384141 1c003a5e 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +76009171ns 1384142 1c003a60 80aff0ef jal x1, -4086 x1=1c003a64 +76009230ns 1384145 1c002a6a 8e3ff06f jal x0, -1822 +76009270ns 1384147 1c00234c fc010113 addi x2, x2, -64 x2=1c009b60 x2:1c009ba0 +76009289ns 1384148 1c00234e 02812c23 sw x8, 56(x2) x8:1c00c0cc x2:1c009b60 PA:1c009b98 +76009309ns 1384149 1c002350 d6818413 addi x8, x3, -664 x8=1c009144 x3:1c0093dc +76009329ns 1384150 1c002354 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +76009349ns 1384151 1c002356 02112e23 sw x1, 60(x2) x1:1c003a64 x2:1c009b60 PA:1c009b9c +76009369ns 1384152 1c002358 02912a23 sw x9, 52(x2) x9:00000108 x2:1c009b60 PA:1c009b94 +76009388ns 1384153 1c00235a 03212823 sw x18, 48(x2) x18:1c009e10 x2:1c009b60 PA:1c009b90 +76009408ns 1384154 1c00235c 03312623 sw x19, 44(x2) x19:ffffffff x2:1c009b60 PA:1c009b8c +76009428ns 1384155 1c00235e 03412423 sw x20, 40(x2) x20:a5a5a5a5 x2:1c009b60 PA:1c009b88 +76009448ns 1384156 1c002360 03512223 sw x21, 36(x2) x21:a5a5a5a5 x2:1c009b60 PA:1c009b84 +76009467ns 1384157 1c002362 03612023 sw x22, 32(x2) x22:a5a5a5a5 x2:1c009b60 PA:1c009b80 +76009487ns 1384158 1c002364 01712e23 sw x23, 28(x2) x23:a5a5a5a5 x2:1c009b60 PA:1c009b7c +76009507ns 1384159 1c002366 02079263 bne x15, x0, 36 x15:00000001 +76009586ns 1384163 1c00238a c83ff0ef jal x1, -894 x1=1c00238e +76009626ns 1384165 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +76009705ns 1384169 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76009745ns 1384171 1c002014 00078863 beq x15, x0, 16 x15:00000001 +76009764ns 1384172 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76009784ns 1384173 1c00201a 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76009804ns 1384174 1c00201c 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76009824ns 1384175 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c009db8 PA:1c009dfc +76009863ns 1384177 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76009883ns 1384178 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c009db8 PA:1c009dfc +76009903ns 1384179 1c002024 00008067 jalr x0, x1, 0 x1:1c00238e +76009943ns 1384181 1c00238e 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +76009982ns 1384183 1c002390 fff78793 addi x15, x15, -1 x15=00000000 x15:00000001 +76010002ns 1384184 1c002392 00f42023 sw x15, 0(x8) x15:00000000 x8:1c009144 PA:1c009144 +76010022ns 1384185 1c002394 00042783 lw x15, 0(x8) x15=00000000 x8:1c009144 PA:1c009144 +76010061ns 1384187 1c002396 02078163 beq x15, x0, 34 x15:00000000 +76010121ns 1384190 1c0023b8 d601a783 lw x15, -672(x3) x15=00000003 x3:1c0093dc PA:1c00913c +76010160ns 1384192 1c0023bc fc078ee3 beq x15, x0, -36 x15:00000003 +76010180ns 1384193 1c0023be 1c009937 lui x18, 0x1c009000 x18=1c009000 +76010200ns 1384194 1c0023c2 00000413 addi x8, x0, 0 x8=00000000 +76010220ns 1384195 1c0023c4 93818493 addi x9, x3, -1736 x9=1c008d14 x3:1c0093dc +76010239ns 1384196 1c0023c8 00100993 addi x19, x0, 1 x19=00000001 +76010259ns 1384197 1c0023ca c8890913 addi x18, x18, -888 x18=1c008c88 x18:1c009000 +76010279ns 1384198 1c0023ce 01400a93 addi x21, x0, 20 x21=00000014 +76010299ns 1384199 1c0023d0 04c0006f jal x0, 76 +76010338ns 1384201 1c00241c 0004a783 lw x15, 0(x9) x15=00000000 x9:1c008d14 PA:1c008d14 +76010378ns 1384203 1c00241e fa079ae3 bne x15, x0, -76 x15:00000000 +76010398ns 1384204 1c002420 00040363 beq x8, x0, 6 x8:00000000 +76010477ns 1384208 1c002426 d8018713 addi x14, x3, -640 x14=1c00915c x3:1c0093dc +76010497ns 1384209 1c00242a 00072483 lw x9, 0(x14) x9=00000000 x14:1c00915c PA:1c00915c +76010516ns 1384210 1c00242c d8018413 addi x8, x3, -640 x8=1c00915c x3:1c0093dc +76010536ns 1384211 1c002430 00048d63 beq x9, x0, 26 x9:00000000 +76010615ns 1384215 1c00244a d8c1a783 lw x15, -628(x3) x15=00000000 x3:1c0093dc PA:1c009168 +76010655ns 1384217 1c00244e f40785e3 beq x15, x0, -182 x15:00000000 +76010714ns 1384220 1c002398 00000513 addi x10, x0, 0 x10=00000000 +76010734ns 1384221 1c00239a 00a12623 sw x10, 12(x2) x10:00000000 x2:1c009b60 PA:1c009b6c +76010754ns 1384222 1c00239c c8bff0ef jal x1, -886 x1=1c0023a0 +76010813ns 1384225 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76010853ns 1384227 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +76010873ns 1384228 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76010893ns 1384229 1c002030 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +76010932ns 1384231 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c009db8 PA:1c009dfc +76010972ns 1384233 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +76010991ns 1384234 1c002036 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76011011ns 1384235 1c002038 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76011031ns 1384236 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c009db8 PA:1c009dfc +76011071ns 1384238 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +76011090ns 1384239 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c009db8 PA:1c009dfc +76011110ns 1384240 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c009db8 PA:1c009dfc +76011150ns 1384242 1c002042 00079363 bne x15, x0, 6 x15:00000000 +76011170ns 1384243 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +76011249ns 1384247 1c002048 00008067 jalr x0, x1, 0 x1:1c0023a0 +76011288ns 1384249 1c0023a0 03c12083 lw x1, 60(x2) x1=1c003a64 x2:1c009b60 PA:1c009b9c +76011308ns 1384250 1c0023a2 03812403 lw x8, 56(x2) x8=1c00c0cc x2:1c009b60 PA:1c009b98 +76011328ns 1384251 1c0023a4 00c12503 lw x10, 12(x2) x10=00000000 x2:1c009b60 PA:1c009b6c +76011348ns 1384252 1c0023a6 03412483 lw x9, 52(x2) x9=00000108 x2:1c009b60 PA:1c009b94 +76011368ns 1384253 1c0023a8 03012903 lw x18, 48(x2) x18=1c009e10 x2:1c009b60 PA:1c009b90 +76011387ns 1384254 1c0023aa 02c12983 lw x19, 44(x2) x19=ffffffff x2:1c009b60 PA:1c009b8c +76011407ns 1384255 1c0023ac 02812a03 lw x20, 40(x2) x20=a5a5a5a5 x2:1c009b60 PA:1c009b88 +76011427ns 1384256 1c0023ae 02412a83 lw x21, 36(x2) x21=a5a5a5a5 x2:1c009b60 PA:1c009b84 +76011447ns 1384257 1c0023b0 02012b03 lw x22, 32(x2) x22=a5a5a5a5 x2:1c009b60 PA:1c009b80 +76011466ns 1384258 1c0023b2 01c12b83 lw x23, 28(x2) x23=a5a5a5a5 x2:1c009b60 PA:1c009b7c +76011486ns 1384259 1c0023b4 04010113 addi x2, x2, 64 x2=1c009ba0 x2:1c009b60 +76011506ns 1384260 1c0023b6 00008067 jalr x0, x1, 0 x1:1c003a64 +76011546ns 1384262 1c003a64 00b40513 addi x10, x8, 11 x10=1c00c0d7 x8:1c00c0cc +76011565ns 1384263 1c003a68 00440793 addi x15, x8, 4 x15=1c00c0d0 x8:1c00c0cc +76011585ns 1384264 1c003a6c ff857513 andi x10, x10, -8 x10=1c00c0d0 x10:1c00c0d7 +76011605ns 1384265 1c003a6e 40f50733 sub x14, x10, x15 x14=00000000 x10:1c00c0d0 x15:1c00c0d0 +76011625ns 1384266 1c003a72 fcf500e3 beq x10, x15, -64 x10:1c00c0d0 x15:1c00c0d0 +76011684ns 1384269 1c003a32 01c12083 lw x1, 28(x2) x1=1c0035c4 x2:1c009ba0 PA:1c009bbc +76011704ns 1384270 1c003a34 01812403 lw x8, 24(x2) x8=00000000 x2:1c009ba0 PA:1c009bb8 +76011724ns 1384271 1c003a36 01412483 lw x9, 20(x2) x9=1c009190 x2:1c009ba0 PA:1c009bb4 +76011744ns 1384272 1c003a38 01012903 lw x18, 16(x2) x18=1c009188 x2:1c009ba0 PA:1c009bb0 +76011763ns 1384273 1c003a3a 00c12983 lw x19, 12(x2) x19=a5a5a5a5 x2:1c009ba0 PA:1c009bac +76011783ns 1384274 1c003a3c 02010113 addi x2, x2, 32 x2=1c009bc0 x2:1c009ba0 +76011803ns 1384275 1c003a3e 00008067 jalr x0, x1, 0 x1:1c0035c4 +76011843ns 1384277 1c0035c4 daa1a823 sw x10, -592(x3) x10:1c00c0d0 x3:1c0093dc PA:1c00918c +76011862ns 1384278 1c0035c8 db018a13 addi x20, x3, -592 x20=1c00918c x3:1c0093dc +76011882ns 1384279 1c0035cc f80503e3 beq x10, x0, -122 x10:1c00c0d0 +76011902ns 1384280 1c0035ce 1c009537 lui x10, 0x1c009000 x10=1c009000 +76011922ns 1384281 1c0035d2 8d050513 addi x10, x10, -1840 x10=1c0088d0 x10:1c009000 +76011941ns 1384282 1c0035d6 0fd000ef jal x1, 2300 x1=1c0035da +76012001ns 1384285 1c003ed2 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76012021ns 1384286 1c003ed6 00a005b3 add x11, x0, x10 x11=1c0088d0 x10:1c0088d0 +76012040ns 1384287 1c003ed8 c447a503 lw x10, -956(x15) x10=1c009e10 x15:1c009000 PA:1c008c44 +76012060ns 1384288 1c003edc f19ff06f jal x0, -232 +76012100ns 1384290 1c003df4 fe010113 addi x2, x2, -32 x2=1c009ba0 x2:1c009bc0 +76012120ns 1384291 1c003df6 00912a23 sw x9, 20(x2) x9:1c009190 x2:1c009ba0 PA:1c009bb4 +76012139ns 1384292 1c003df8 01212823 sw x18, 16(x2) x18:1c009188 x2:1c009ba0 PA:1c009bb0 +76012159ns 1384293 1c003dfa 00112e23 sw x1, 28(x2) x1:1c0035da x2:1c009ba0 PA:1c009bbc +76012179ns 1384294 1c003dfc 00812c23 sw x8, 24(x2) x8:00000000 x2:1c009ba0 PA:1c009bb8 +76012199ns 1384295 1c003dfe 01312623 sw x19, 12(x2) x19:a5a5a5a5 x2:1c009ba0 PA:1c009bac +76012219ns 1384296 1c003e00 01412423 sw x20, 8(x2) x20:1c00918c x2:1c009ba0 PA:1c009ba8 +76012238ns 1384297 1c003e02 00a004b3 add x9, x0, x10 x9=1c009e10 x10:1c009e10 +76012258ns 1384298 1c003e04 00b00933 add x18, x0, x11 x18=1c0088d0 x11:1c0088d0 +76012278ns 1384299 1c003e06 00050563 beq x10, x0, 10 x10:1c009e10 +76012298ns 1384300 1c003e08 01852783 lw x15, 24(x10) x15=00000001 x10:1c009e10 PA:1c009e28 +76012337ns 1384302 1c003e0a 00079363 bne x15, x0, 6 x15:00000001 +76012397ns 1384305 1c003e10 0184a783 lw x15, 24(x9) x15=00000001 x9:1c009e10 PA:1c009e28 +76012417ns 1384306 1c003e12 0084a403 lw x8, 8(x9) x8=1c00b914 x9:1c009e10 PA:1c009e18 +76012436ns 1384307 1c003e14 00079463 bne x15, x0, 8 x15:00000001 +76012496ns 1384310 1c003e1c 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76012515ns 1384311 1c003e20 a1478793 addi x15, x15, -1516 x15=1c008a14 x15:1c009000 +76012535ns 1384312 1c003e24 02f41c63 bne x8, x15, 56 x8:1c00b914 x15:1c008a14 +76012595ns 1384315 1c003e5c 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76012614ns 1384316 1c003e60 a3478793 addi x15, x15, -1484 x15=1c008a34 x15:1c009000 +76012634ns 1384317 1c003e64 00f41463 bne x8, x15, 8 x8:1c00b914 x15:1c008a34 +76012694ns 1384320 1c003e6c 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76012713ns 1384321 1c003e70 9f478793 addi x15, x15, -1548 x15=1c0089f4 x15:1c009000 +76012733ns 1384322 1c003e74 faf41be3 bne x8, x15, -74 x8:1c00b914 x15:1c0089f4 +76012812ns 1384326 1c003e2a 00c45783 lhu x15, 12(x8) x15=00000089 x8:1c00b914 PA:1c00b920 +76012852ns 1384328 1c003e2e 0087f793 andi x15, x15, 8 x15=00000008 x15:00000089 +76012872ns 1384329 1c003e30 04078663 beq x15, x0, 76 x15:00000008 +76012892ns 1384330 1c003e32 01042783 lw x15, 16(x8) x15=1c00bab8 x8:1c00b914 PA:1c00b924 +76012931ns 1384332 1c003e34 04078463 beq x15, x0, 72 x15:1c00bab8 +76012951ns 1384333 1c003e36 fff00993 addi x19, x0, -1 x19=ffffffff +76012971ns 1384334 1c003e38 00a00a13 addi x20, x0, 10 x20=0000000a +76012990ns 1384335 1c003e3a 00842783 lw x15, 8(x8) x15=00000000 x8:1c00b914 PA:1c00b91c +76013010ns 1384336 1c003e3c 00094583 lbu x11, 0(x18) x11=00000074 x18:1c0088d0 PA:1c0088d0 +76013030ns 1384337 1c003e40 fff78793 addi x15, x15, -1 x15=ffffffff x15:00000000 +76013050ns 1384338 1c003e42 04059a63 bne x11, x0, 84 x11:00000074 +76013109ns 1384341 1c003e96 00f42423 sw x15, 8(x8) x15:ffffffff x8:1c00b914 PA:1c00b91c +76013129ns 1384342 1c003e98 00190913 addi x18, x18, 1 x18=1c0088d1 x18:1c0088d0 +76013149ns 1384343 1c003e9a 0007d763 bge x15, x0, 14 x15:ffffffff +76013169ns 1384344 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +76013208ns 1384346 1c003ea0 00e7cb63 blt x15, x14, 22 x15:ffffffff x14:fffffc00 +76013228ns 1384347 1c003ea4 01458963 beq x11, x20, 18 x11:00000074 x20:0000000a +76013248ns 1384348 1c003ea8 00042783 lw x15, 0(x8) x15=1c00bab8 x8:1c00b914 PA:1c00b914 +76013287ns 1384350 1c003eaa 00178713 addi x14, x15, 1 x14=1c00bab9 x15:1c00bab8 +76013307ns 1384351 1c003eae 00e42023 sw x14, 0(x8) x14:1c00bab9 x8:1c00b914 PA:1c00b914 +76013327ns 1384352 1c003eb0 00b78023 sb x11, 0(x15) x11:00000074 x15:1c00bab8 PA:1c00bab8 +76013347ns 1384353 1c003eb4 f87ff06f jal x0, -122 +76013386ns 1384355 1c003e3a 00842783 lw x15, 8(x8) x15=ffffffff x8:1c00b914 PA:1c00b91c +76013406ns 1384356 1c003e3c 00094583 lbu x11, 0(x18) x11=00000078 x18:1c0088d1 PA:1c0088d1 +76013426ns 1384357 1c003e40 fff78793 addi x15, x15, -1 x15=fffffffe x15:ffffffff +76013446ns 1384358 1c003e42 04059a63 bne x11, x0, 84 x11:00000078 +76013505ns 1384361 1c003e96 00f42423 sw x15, 8(x8) x15:fffffffe x8:1c00b914 PA:1c00b91c +76013525ns 1384362 1c003e98 00190913 addi x18, x18, 1 x18=1c0088d2 x18:1c0088d1 +76013545ns 1384363 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffffe +76013564ns 1384364 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +76013604ns 1384366 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffffe x14:fffffc00 +76013624ns 1384367 1c003ea4 01458963 beq x11, x20, 18 x11:00000078 x20:0000000a +76013644ns 1384368 1c003ea8 00042783 lw x15, 0(x8) x15=1c00bab9 x8:1c00b914 PA:1c00b914 +76013683ns 1384370 1c003eaa 00178713 addi x14, x15, 1 x14=1c00baba x15:1c00bab9 +76013703ns 1384371 1c003eae 00e42023 sw x14, 0(x8) x14:1c00baba x8:1c00b914 PA:1c00b914 +76013723ns 1384372 1c003eb0 00b78023 sb x11, 0(x15) x11:00000078 x15:1c00bab9 PA:1c00bab9 +76013743ns 1384373 1c003eb4 f87ff06f jal x0, -122 +76013782ns 1384375 1c003e3a 00842783 lw x15, 8(x8) x15=fffffffe x8:1c00b914 PA:1c00b91c +76013802ns 1384376 1c003e3c 00094583 lbu x11, 0(x18) x11=00000020 x18:1c0088d2 PA:1c0088d2 +76013822ns 1384377 1c003e40 fff78793 addi x15, x15, -1 x15=fffffffd x15:fffffffe +76013842ns 1384378 1c003e42 04059a63 bne x11, x0, 84 x11:00000020 +76013901ns 1384381 1c003e96 00f42423 sw x15, 8(x8) x15:fffffffd x8:1c00b914 PA:1c00b91c +76013921ns 1384382 1c003e98 00190913 addi x18, x18, 1 x18=1c0088d3 x18:1c0088d2 +76013940ns 1384383 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffffd +76013960ns 1384384 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +76014000ns 1384386 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffffd x14:fffffc00 +76014020ns 1384387 1c003ea4 01458963 beq x11, x20, 18 x11:00000020 x20:0000000a +76014039ns 1384388 1c003ea8 00042783 lw x15, 0(x8) x15=1c00baba x8:1c00b914 PA:1c00b914 +76014079ns 1384390 1c003eaa 00178713 addi x14, x15, 1 x14=1c00babb x15:1c00baba +76014099ns 1384391 1c003eae 00e42023 sw x14, 0(x8) x14:1c00babb x8:1c00b914 PA:1c00b914 +76014119ns 1384392 1c003eb0 00b78023 sb x11, 0(x15) x11:00000020 x15:1c00baba PA:1c00baba +76014138ns 1384393 1c003eb4 f87ff06f jal x0, -122 +76014178ns 1384395 1c003e3a 00842783 lw x15, 8(x8) x15=fffffffd x8:1c00b914 PA:1c00b91c +76014198ns 1384396 1c003e3c 00094583 lbu x11, 0(x18) x11=00000062 x18:1c0088d3 PA:1c0088d3 +76014218ns 1384397 1c003e40 fff78793 addi x15, x15, -1 x15=fffffffc x15:fffffffd +76014237ns 1384398 1c003e42 04059a63 bne x11, x0, 84 x11:00000062 +76014297ns 1384401 1c003e96 00f42423 sw x15, 8(x8) x15:fffffffc x8:1c00b914 PA:1c00b91c +76014317ns 1384402 1c003e98 00190913 addi x18, x18, 1 x18=1c0088d4 x18:1c0088d3 +76014336ns 1384403 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffffc +76014356ns 1384404 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +76014396ns 1384406 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffffc x14:fffffc00 +76014415ns 1384407 1c003ea4 01458963 beq x11, x20, 18 x11:00000062 x20:0000000a +76014435ns 1384408 1c003ea8 00042783 lw x15, 0(x8) x15=1c00babb x8:1c00b914 PA:1c00b914 +76014475ns 1384410 1c003eaa 00178713 addi x14, x15, 1 x14=1c00babc x15:1c00babb +76014495ns 1384411 1c003eae 00e42023 sw x14, 0(x8) x14:1c00babc x8:1c00b914 PA:1c00b914 +76014514ns 1384412 1c003eb0 00b78023 sb x11, 0(x15) x11:00000062 x15:1c00babb PA:1c00babb +76014534ns 1384413 1c003eb4 f87ff06f jal x0, -122 +76014574ns 1384415 1c003e3a 00842783 lw x15, 8(x8) x15=fffffffc x8:1c00b914 PA:1c00b91c +76014594ns 1384416 1c003e3c 00094583 lbu x11, 0(x18) x11=00000075 x18:1c0088d4 PA:1c0088d4 +76014613ns 1384417 1c003e40 fff78793 addi x15, x15, -1 x15=fffffffb x15:fffffffc +76014633ns 1384418 1c003e42 04059a63 bne x11, x0, 84 x11:00000075 +76014693ns 1384421 1c003e96 00f42423 sw x15, 8(x8) x15:fffffffb x8:1c00b914 PA:1c00b91c +76014712ns 1384422 1c003e98 00190913 addi x18, x18, 1 x18=1c0088d5 x18:1c0088d4 +76014732ns 1384423 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffffb +76014752ns 1384424 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +76014792ns 1384426 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffffb x14:fffffc00 +76014811ns 1384427 1c003ea4 01458963 beq x11, x20, 18 x11:00000075 x20:0000000a +76014831ns 1384428 1c003ea8 00042783 lw x15, 0(x8) x15=1c00babc x8:1c00b914 PA:1c00b914 +76014871ns 1384430 1c003eaa 00178713 addi x14, x15, 1 x14=1c00babd x15:1c00babc +76014891ns 1384431 1c003eae 00e42023 sw x14, 0(x8) x14:1c00babd x8:1c00b914 PA:1c00b914 +76014910ns 1384432 1c003eb0 00b78023 sb x11, 0(x15) x11:00000075 x15:1c00babc PA:1c00babc +76014930ns 1384433 1c003eb4 f87ff06f jal x0, -122 +76014970ns 1384435 1c003e3a 00842783 lw x15, 8(x8) x15=fffffffb x8:1c00b914 PA:1c00b91c +76014989ns 1384436 1c003e3c 00094583 lbu x11, 0(x18) x11=00000066 x18:1c0088d5 PA:1c0088d5 +76015009ns 1384437 1c003e40 fff78793 addi x15, x15, -1 x15=fffffffa x15:fffffffb +76015029ns 1384438 1c003e42 04059a63 bne x11, x0, 84 x11:00000066 +76015088ns 1384441 1c003e96 00f42423 sw x15, 8(x8) x15:fffffffa x8:1c00b914 PA:1c00b91c +76015108ns 1384442 1c003e98 00190913 addi x18, x18, 1 x18=1c0088d6 x18:1c0088d5 +76015128ns 1384443 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffffa +76015148ns 1384444 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +76015187ns 1384446 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffffa x14:fffffc00 +76015207ns 1384447 1c003ea4 01458963 beq x11, x20, 18 x11:00000066 x20:0000000a +76015227ns 1384448 1c003ea8 00042783 lw x15, 0(x8) x15=1c00babd x8:1c00b914 PA:1c00b914 +76015267ns 1384450 1c003eaa 00178713 addi x14, x15, 1 x14=1c00babe x15:1c00babd +76015286ns 1384451 1c003eae 00e42023 sw x14, 0(x8) x14:1c00babe x8:1c00b914 PA:1c00b914 +76015306ns 1384452 1c003eb0 00b78023 sb x11, 0(x15) x11:00000066 x15:1c00babd PA:1c00babd +76015326ns 1384453 1c003eb4 f87ff06f jal x0, -122 +76015366ns 1384455 1c003e3a 00842783 lw x15, 8(x8) x15=fffffffa x8:1c00b914 PA:1c00b91c +76015385ns 1384456 1c003e3c 00094583 lbu x11, 0(x18) x11=00000066 x18:1c0088d6 PA:1c0088d6 +76015405ns 1384457 1c003e40 fff78793 addi x15, x15, -1 x15=fffffff9 x15:fffffffa +76015425ns 1384458 1c003e42 04059a63 bne x11, x0, 84 x11:00000066 +76015484ns 1384461 1c003e96 00f42423 sw x15, 8(x8) x15:fffffff9 x8:1c00b914 PA:1c00b91c +76015504ns 1384462 1c003e98 00190913 addi x18, x18, 1 x18=1c0088d7 x18:1c0088d6 +76015524ns 1384463 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffff9 +76015544ns 1384464 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +76015583ns 1384466 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffff9 x14:fffffc00 +76015603ns 1384467 1c003ea4 01458963 beq x11, x20, 18 x11:00000066 x20:0000000a +76015623ns 1384468 1c003ea8 00042783 lw x15, 0(x8) x15=1c00babe x8:1c00b914 PA:1c00b914 +76015662ns 1384470 1c003eaa 00178713 addi x14, x15, 1 x14=1c00babf x15:1c00babe +76015682ns 1384471 1c003eae 00e42023 sw x14, 0(x8) x14:1c00babf x8:1c00b914 PA:1c00b914 +76015702ns 1384472 1c003eb0 00b78023 sb x11, 0(x15) x11:00000066 x15:1c00babe PA:1c00babe +76015722ns 1384473 1c003eb4 f87ff06f jal x0, -122 +76015761ns 1384475 1c003e3a 00842783 lw x15, 8(x8) x15=fffffff9 x8:1c00b914 PA:1c00b91c +76015781ns 1384476 1c003e3c 00094583 lbu x11, 0(x18) x11=00000065 x18:1c0088d7 PA:1c0088d7 +76015801ns 1384477 1c003e40 fff78793 addi x15, x15, -1 x15=fffffff8 x15:fffffff9 +76015821ns 1384478 1c003e42 04059a63 bne x11, x0, 84 x11:00000065 +76015880ns 1384481 1c003e96 00f42423 sw x15, 8(x8) x15:fffffff8 x8:1c00b914 PA:1c00b91c +76015900ns 1384482 1c003e98 00190913 addi x18, x18, 1 x18=1c0088d8 x18:1c0088d7 +76015920ns 1384483 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffff8 +76015939ns 1384484 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +76015979ns 1384486 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffff8 x14:fffffc00 +76015999ns 1384487 1c003ea4 01458963 beq x11, x20, 18 x11:00000065 x20:0000000a +76016019ns 1384488 1c003ea8 00042783 lw x15, 0(x8) x15=1c00babf x8:1c00b914 PA:1c00b914 +76016058ns 1384490 1c003eaa 00178713 addi x14, x15, 1 x14=1c00bac0 x15:1c00babf +76016078ns 1384491 1c003eae 00e42023 sw x14, 0(x8) x14:1c00bac0 x8:1c00b914 PA:1c00b914 +76016098ns 1384492 1c003eb0 00b78023 sb x11, 0(x15) x11:00000065 x15:1c00babf PA:1c00babf +76016118ns 1384493 1c003eb4 f87ff06f jal x0, -122 +76016157ns 1384495 1c003e3a 00842783 lw x15, 8(x8) x15=fffffff8 x8:1c00b914 PA:1c00b91c +76016177ns 1384496 1c003e3c 00094583 lbu x11, 0(x18) x11=00000072 x18:1c0088d8 PA:1c0088d8 +76016197ns 1384497 1c003e40 fff78793 addi x15, x15, -1 x15=fffffff7 x15:fffffff8 +76016217ns 1384498 1c003e42 04059a63 bne x11, x0, 84 x11:00000072 +76016276ns 1384501 1c003e96 00f42423 sw x15, 8(x8) x15:fffffff7 x8:1c00b914 PA:1c00b91c +76016296ns 1384502 1c003e98 00190913 addi x18, x18, 1 x18=1c0088d9 x18:1c0088d8 +76016316ns 1384503 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffff7 +76016335ns 1384504 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +76016375ns 1384506 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffff7 x14:fffffc00 +76016395ns 1384507 1c003ea4 01458963 beq x11, x20, 18 x11:00000072 x20:0000000a +76016414ns 1384508 1c003ea8 00042783 lw x15, 0(x8) x15=1c00bac0 x8:1c00b914 PA:1c00b914 +76016454ns 1384510 1c003eaa 00178713 addi x14, x15, 1 x14=1c00bac1 x15:1c00bac0 +76016474ns 1384511 1c003eae 00e42023 sw x14, 0(x8) x14:1c00bac1 x8:1c00b914 PA:1c00b914 +76016494ns 1384512 1c003eb0 00b78023 sb x11, 0(x15) x11:00000072 x15:1c00bac0 PA:1c00bac0 +76016513ns 1384513 1c003eb4 f87ff06f jal x0, -122 +76016553ns 1384515 1c003e3a 00842783 lw x15, 8(x8) x15=fffffff7 x8:1c00b914 PA:1c00b91c +76016573ns 1384516 1c003e3c 00094583 lbu x11, 0(x18) x11=00000020 x18:1c0088d9 PA:1c0088d9 +76016593ns 1384517 1c003e40 fff78793 addi x15, x15, -1 x15=fffffff6 x15:fffffff7 +76016612ns 1384518 1c003e42 04059a63 bne x11, x0, 84 x11:00000020 +76016672ns 1384521 1c003e96 00f42423 sw x15, 8(x8) x15:fffffff6 x8:1c00b914 PA:1c00b91c +76016692ns 1384522 1c003e98 00190913 addi x18, x18, 1 x18=1c0088da x18:1c0088d9 +76016711ns 1384523 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffff6 +76016731ns 1384524 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +76016771ns 1384526 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffff6 x14:fffffc00 +76016791ns 1384527 1c003ea4 01458963 beq x11, x20, 18 x11:00000020 x20:0000000a +76016810ns 1384528 1c003ea8 00042783 lw x15, 0(x8) x15=1c00bac1 x8:1c00b914 PA:1c00b914 +76016850ns 1384530 1c003eaa 00178713 addi x14, x15, 1 x14=1c00bac2 x15:1c00bac1 +76016870ns 1384531 1c003eae 00e42023 sw x14, 0(x8) x14:1c00bac2 x8:1c00b914 PA:1c00b914 +76016889ns 1384532 1c003eb0 00b78023 sb x11, 0(x15) x11:00000020 x15:1c00bac1 PA:1c00bac1 +76016909ns 1384533 1c003eb4 f87ff06f jal x0, -122 +76016949ns 1384535 1c003e3a 00842783 lw x15, 8(x8) x15=fffffff6 x8:1c00b914 PA:1c00b91c +76016969ns 1384536 1c003e3c 00094583 lbu x11, 0(x18) x11=00000069 x18:1c0088da PA:1c0088da +76016988ns 1384537 1c003e40 fff78793 addi x15, x15, -1 x15=fffffff5 x15:fffffff6 +76017008ns 1384538 1c003e42 04059a63 bne x11, x0, 84 x11:00000069 +76017068ns 1384541 1c003e96 00f42423 sw x15, 8(x8) x15:fffffff5 x8:1c00b914 PA:1c00b91c +76017087ns 1384542 1c003e98 00190913 addi x18, x18, 1 x18=1c0088db x18:1c0088da +76017107ns 1384543 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffff5 +76017127ns 1384544 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +76017167ns 1384546 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffff5 x14:fffffc00 +76017186ns 1384547 1c003ea4 01458963 beq x11, x20, 18 x11:00000069 x20:0000000a +76017206ns 1384548 1c003ea8 00042783 lw x15, 0(x8) x15=1c00bac2 x8:1c00b914 PA:1c00b914 +76017246ns 1384550 1c003eaa 00178713 addi x14, x15, 1 x14=1c00bac3 x15:1c00bac2 +76017266ns 1384551 1c003eae 00e42023 sw x14, 0(x8) x14:1c00bac3 x8:1c00b914 PA:1c00b914 +76017285ns 1384552 1c003eb0 00b78023 sb x11, 0(x15) x11:00000069 x15:1c00bac2 PA:1c00bac2 +76017305ns 1384553 1c003eb4 f87ff06f jal x0, -122 +76017345ns 1384555 1c003e3a 00842783 lw x15, 8(x8) x15=fffffff5 x8:1c00b914 PA:1c00b91c +76017365ns 1384556 1c003e3c 00094583 lbu x11, 0(x18) x11=0000006e x18:1c0088db PA:1c0088db +76017384ns 1384557 1c003e40 fff78793 addi x15, x15, -1 x15=fffffff4 x15:fffffff5 +76017404ns 1384558 1c003e42 04059a63 bne x11, x0, 84 x11:0000006e +76017463ns 1384561 1c003e96 00f42423 sw x15, 8(x8) x15:fffffff4 x8:1c00b914 PA:1c00b91c +76017483ns 1384562 1c003e98 00190913 addi x18, x18, 1 x18=1c0088dc x18:1c0088db +76017503ns 1384563 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffff4 +76017523ns 1384564 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +76017562ns 1384566 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffff4 x14:fffffc00 +76017582ns 1384567 1c003ea4 01458963 beq x11, x20, 18 x11:0000006e x20:0000000a +76017602ns 1384568 1c003ea8 00042783 lw x15, 0(x8) x15=1c00bac3 x8:1c00b914 PA:1c00b914 +76017642ns 1384570 1c003eaa 00178713 addi x14, x15, 1 x14=1c00bac4 x15:1c00bac3 +76017661ns 1384571 1c003eae 00e42023 sw x14, 0(x8) x14:1c00bac4 x8:1c00b914 PA:1c00b914 +76017681ns 1384572 1c003eb0 00b78023 sb x11, 0(x15) x11:0000006e x15:1c00bac3 PA:1c00bac3 +76017701ns 1384573 1c003eb4 f87ff06f jal x0, -122 +76017741ns 1384575 1c003e3a 00842783 lw x15, 8(x8) x15=fffffff4 x8:1c00b914 PA:1c00b91c +76017760ns 1384576 1c003e3c 00094583 lbu x11, 0(x18) x11=00000069 x18:1c0088dc PA:1c0088dc +76017780ns 1384577 1c003e40 fff78793 addi x15, x15, -1 x15=fffffff3 x15:fffffff4 +76017800ns 1384578 1c003e42 04059a63 bne x11, x0, 84 x11:00000069 +76017859ns 1384581 1c003e96 00f42423 sw x15, 8(x8) x15:fffffff3 x8:1c00b914 PA:1c00b91c +76017879ns 1384582 1c003e98 00190913 addi x18, x18, 1 x18=1c0088dd x18:1c0088dc +76017899ns 1384583 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffff3 +76017919ns 1384584 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +76017958ns 1384586 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffff3 x14:fffffc00 +76017978ns 1384587 1c003ea4 01458963 beq x11, x20, 18 x11:00000069 x20:0000000a +76017998ns 1384588 1c003ea8 00042783 lw x15, 0(x8) x15=1c00bac4 x8:1c00b914 PA:1c00b914 +76018037ns 1384590 1c003eaa 00178713 addi x14, x15, 1 x14=1c00bac5 x15:1c00bac4 +76018057ns 1384591 1c003eae 00e42023 sw x14, 0(x8) x14:1c00bac5 x8:1c00b914 PA:1c00b914 +76018077ns 1384592 1c003eb0 00b78023 sb x11, 0(x15) x11:00000069 x15:1c00bac4 PA:1c00bac4 +76018097ns 1384593 1c003eb4 f87ff06f jal x0, -122 +76018136ns 1384595 1c003e3a 00842783 lw x15, 8(x8) x15=fffffff3 x8:1c00b914 PA:1c00b91c +76018156ns 1384596 1c003e3c 00094583 lbu x11, 0(x18) x11=00000074 x18:1c0088dd PA:1c0088dd +76018176ns 1384597 1c003e40 fff78793 addi x15, x15, -1 x15=fffffff2 x15:fffffff3 +76018196ns 1384598 1c003e42 04059a63 bne x11, x0, 84 x11:00000074 +76018255ns 1384601 1c003e96 00f42423 sw x15, 8(x8) x15:fffffff2 x8:1c00b914 PA:1c00b91c +76018275ns 1384602 1c003e98 00190913 addi x18, x18, 1 x18=1c0088de x18:1c0088dd +76018295ns 1384603 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffff2 +76018315ns 1384604 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +76018354ns 1384606 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffff2 x14:fffffc00 +76018374ns 1384607 1c003ea4 01458963 beq x11, x20, 18 x11:00000074 x20:0000000a +76018394ns 1384608 1c003ea8 00042783 lw x15, 0(x8) x15=1c00bac5 x8:1c00b914 PA:1c00b914 +76018433ns 1384610 1c003eaa 00178713 addi x14, x15, 1 x14=1c00bac6 x15:1c00bac5 +76018453ns 1384611 1c003eae 00e42023 sw x14, 0(x8) x14:1c00bac6 x8:1c00b914 PA:1c00b914 +76018473ns 1384612 1c003eb0 00b78023 sb x11, 0(x15) x11:00000074 x15:1c00bac5 PA:1c00bac5 +76018493ns 1384613 1c003eb4 f87ff06f jal x0, -122 +76018532ns 1384615 1c003e3a 00842783 lw x15, 8(x8) x15=fffffff2 x8:1c00b914 PA:1c00b91c +76018552ns 1384616 1c003e3c 00094583 lbu x11, 0(x18) x11=00000000 x18:1c0088de PA:1c0088de +76018572ns 1384617 1c003e40 fff78793 addi x15, x15, -1 x15=fffffff1 x15:fffffff2 +76018592ns 1384618 1c003e42 04059a63 bne x11, x0, 84 x11:00000000 +76018611ns 1384619 1c003e44 00f42423 sw x15, 8(x8) x15:fffffff1 x8:1c00b914 PA:1c00b91c +76018631ns 1384620 1c003e46 0607de63 bge x15, x0, 124 x15:fffffff1 +76018651ns 1384621 1c003e4a 00800633 add x12, x0, x8 x12=1c00b914 x8:1c00b914 +76018671ns 1384622 1c003e4c 00a00593 addi x11, x0, 10 x11=0000000a +76018691ns 1384623 1c003e4e 00900533 add x10, x0, x9 x10=1c009e10 x9:1c009e10 +76018710ns 1384624 1c003e50 25a000ef jal x1, 602 x1=1c003e52 +76018750ns 1384626 1c0040aa fe010113 addi x2, x2, -32 x2=1c009b80 x2:1c009ba0 +76018770ns 1384627 1c0040ac 00812c23 sw x8, 24(x2) x8:1c00b914 x2:1c009b80 PA:1c009b98 +76018790ns 1384628 1c0040ae 00912a23 sw x9, 20(x2) x9:1c009e10 x2:1c009b80 PA:1c009b94 +76018809ns 1384629 1c0040b0 01212823 sw x18, 16(x2) x18:1c0088de x2:1c009b80 PA:1c009b90 +76018829ns 1384630 1c0040b2 00112e23 sw x1, 28(x2) x1:1c003e52 x2:1c009b80 PA:1c009b9c +76018849ns 1384631 1c0040b4 01312623 sw x19, 12(x2) x19:ffffffff x2:1c009b80 PA:1c009b8c +76018869ns 1384632 1c0040b6 00a004b3 add x9, x0, x10 x9=1c009e10 x10:1c009e10 +76018888ns 1384633 1c0040b8 00b00933 add x18, x0, x11 x18=0000000a x11:0000000a +76018908ns 1384634 1c0040ba 00c00433 add x8, x0, x12 x8=1c00b914 x12:1c00b914 +76018928ns 1384635 1c0040bc 00050463 beq x10, x0, 8 x10:1c009e10 +76018948ns 1384636 1c0040be 01852783 lw x15, 24(x10) x15=00000001 x10:1c009e10 PA:1c009e28 +76018987ns 1384638 1c0040c0 00079263 bne x15, x0, 4 x15:00000001 +76019047ns 1384641 1c0040c4 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76019067ns 1384642 1c0040c8 a1478793 addi x15, x15, -1516 x15=1c008a14 x15:1c009000 +76019086ns 1384643 1c0040cc 06f41963 bne x8, x15, 114 x8:1c00b914 x15:1c008a14 +76019166ns 1384647 1c00413e 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76019185ns 1384648 1c004142 a3478793 addi x15, x15, -1484 x15=1c008a34 x15:1c009000 +76019205ns 1384649 1c004146 00f41463 bne x8, x15, 8 x8:1c00b914 x15:1c008a34 +76019284ns 1384653 1c00414e 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76019304ns 1384654 1c004152 9f478793 addi x15, x15, -1548 x15=1c0089f4 x15:1c009000 +76019324ns 1384655 1c004156 f6f41ee3 bne x8, x15, -132 x8:1c00b914 x15:1c0089f4 +76019383ns 1384658 1c0040d2 01842783 lw x15, 24(x8) x15=fffffc00 x8:1c00b914 PA:1c00b92c +76019423ns 1384660 1c0040d4 00f42423 sw x15, 8(x8) x15:fffffc00 x8:1c00b914 PA:1c00b91c +76019443ns 1384661 1c0040d6 00c45783 lhu x15, 12(x8) x15=00000089 x8:1c00b914 PA:1c00b920 +76019482ns 1384663 1c0040da 0087f793 andi x15, x15, 8 x15=00000008 x15:00000089 +76019502ns 1384664 1c0040dc 08078163 beq x15, x0, 130 x15:00000008 +76019522ns 1384665 1c0040de 01042783 lw x15, 16(x8) x15=1c00bab8 x8:1c00b914 PA:1c00b924 +76019561ns 1384667 1c0040e0 06078f63 beq x15, x0, 126 x15:1c00bab8 +76019581ns 1384668 1c0040e2 01042783 lw x15, 16(x8) x15=1c00bab8 x8:1c00b914 PA:1c00b924 +76019601ns 1384669 1c0040e4 00042503 lw x10, 0(x8) x10=1c00bac6 x8:1c00b914 PA:1c00b914 +76019621ns 1384670 1c0040e6 0ff97993 andi x19, x18, 255 x19=0000000a x18:0000000a +76019641ns 1384671 1c0040ea 0ff97913 andi x18, x18, 255 x18=0000000a x18:0000000a +76019660ns 1384672 1c0040ee 40f50533 sub x10, x10, x15 x10=0000000e x10:1c00bac6 x15:1c00bab8 +76019680ns 1384673 1c0040f0 01442783 lw x15, 20(x8) x15=00000400 x8:1c00b914 PA:1c00b928 +76019720ns 1384675 1c0040f2 00f54663 blt x10, x15, 12 x10:0000000e x15:00000400 +76019779ns 1384678 1c0040fe 00842783 lw x15, 8(x8) x15=fffffc00 x8:1c00b914 PA:1c00b91c +76019799ns 1384679 1c004100 00150513 addi x10, x10, 1 x10=0000000f x10:0000000e +76019819ns 1384680 1c004102 fff78793 addi x15, x15, -1 x15=fffffbff x15:fffffc00 +76019839ns 1384681 1c004104 00f42423 sw x15, 8(x8) x15:fffffbff x8:1c00b914 PA:1c00b91c +76019858ns 1384682 1c004106 00042783 lw x15, 0(x8) x15=1c00bac6 x8:1c00b914 PA:1c00b914 +76019898ns 1384684 1c004108 00178713 addi x14, x15, 1 x14=1c00bac7 x15:1c00bac6 +76019918ns 1384685 1c00410c 00e42023 sw x14, 0(x8) x14:1c00bac7 x8:1c00b914 PA:1c00b914 +76019937ns 1384686 1c00410e 01378023 sb x19, 0(x15) x19:0000000a x15:1c00bac6 PA:1c00bac6 +76019957ns 1384687 1c004112 01442783 lw x15, 20(x8) x15=00000400 x8:1c00b914 PA:1c00b928 +76019997ns 1384689 1c004114 00a78963 beq x15, x10, 18 x15:00000400 x10:0000000f +76020017ns 1384690 1c004118 00c45783 lhu x15, 12(x8) x15=00000089 x8:1c00b914 PA:1c00b920 +76020056ns 1384692 1c00411c 0017f793 andi x15, x15, 1 x15=00000001 x15:00000089 +76020076ns 1384693 1c00411e 00078863 beq x15, x0, 16 x15:00000001 +76020096ns 1384694 1c004120 00a00793 addi x15, x0, 10 x15=0000000a +76020116ns 1384695 1c004122 00f91663 bne x18, x15, 12 x18:0000000a x15:0000000a +76020135ns 1384696 1c004126 008005b3 add x11, x0, x8 x11=1c00b914 x8:1c00b914 +76020155ns 1384697 1c004128 00900533 add x10, x0, x9 x10=1c009e10 x9:1c009e10 +76020175ns 1384698 1c00412a 3d8000ef jal x1, 984 x1=1c00412c +76020215ns 1384700 1c004502 0105a783 lw x15, 16(x11) x15=1c00bab8 x11:1c00b914 PA:1c00b924 +76020254ns 1384702 1c004504 06078063 beq x15, x0, 96 x15:1c00bab8 +76020274ns 1384703 1c004506 fe010113 addi x2, x2, -32 x2=1c009b60 x2:1c009b80 +76020294ns 1384704 1c004508 00812c23 sw x8, 24(x2) x8:1c00b914 x2:1c009b60 PA:1c009b78 +76020314ns 1384705 1c00450a 00112e23 sw x1, 28(x2) x1:1c00412c x2:1c009b60 PA:1c009b7c +76020333ns 1384706 1c00450c 00a00433 add x8, x0, x10 x8=1c009e10 x10:1c009e10 +76020353ns 1384707 1c00450e 00050663 beq x10, x0, 12 x10:1c009e10 +76020373ns 1384708 1c004510 01852783 lw x15, 24(x10) x15=00000001 x10:1c009e10 PA:1c009e28 +76020412ns 1384710 1c004512 00079463 bne x15, x0, 8 x15:00000001 +76020492ns 1384714 1c00451a 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76020511ns 1384715 1c00451e a1478793 addi x15, x15, -1516 x15=1c008a14 x15:1c009000 +76020531ns 1384716 1c004522 00f59c63 bne x11, x15, 24 x11:1c00b914 x15:1c008a14 +76020610ns 1384720 1c00453a 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76020630ns 1384721 1c00453e a3478793 addi x15, x15, -1484 x15=1c008a34 x15:1c009000 +76020650ns 1384722 1c004542 00f59463 bne x11, x15, 8 x11:1c00b914 x15:1c008a34 +76020729ns 1384726 1c00454a 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76020749ns 1384727 1c00454e 9f478793 addi x15, x15, -1548 x15=1c0089f4 x15:1c009000 +76020769ns 1384728 1c004552 fcf59be3 bne x11, x15, -42 x11:1c00b914 x15:1c0089f4 +76020828ns 1384731 1c004528 00c59783 lh x15, 12(x11) x15=00000089 x11:1c00b914 PA:1c00b920 +76020868ns 1384733 1c00452c 02078763 beq x15, x0, 46 x15:00000089 +76020887ns 1384734 1c00452e 00800533 add x10, x0, x8 x10=1c009e10 x8:1c009e10 +76020907ns 1384735 1c004530 01812403 lw x8, 24(x2) x8=1c00b914 x2:1c009b60 PA:1c009b78 +76020927ns 1384736 1c004532 01c12083 lw x1, 28(x2) x1=1c00412c x2:1c009b60 PA:1c009b7c +76020947ns 1384737 1c004534 02010113 addi x2, x2, 32 x2=1c009b80 x2:1c009b60 +76020967ns 1384738 1c004536 e85ff06f jal x0, -380 +76021026ns 1384741 1c0043ba 00c5d783 lhu x15, 12(x11) x15=00000089 x11:1c00b914 PA:1c00b920 +76021046ns 1384742 1c0043be fe010113 addi x2, x2, -32 x2=1c009b60 x2:1c009b80 +76021066ns 1384743 1c0043c0 00812c23 sw x8, 24(x2) x8:1c00b914 x2:1c009b60 PA:1c009b78 +76021085ns 1384744 1c0043c2 00912a23 sw x9, 20(x2) x9:1c009e10 x2:1c009b60 PA:1c009b74 +76021105ns 1384745 1c0043c4 00112e23 sw x1, 28(x2) x1:1c00412c x2:1c009b60 PA:1c009b7c +76021125ns 1384746 1c0043c6 01212823 sw x18, 16(x2) x18:0000000a x2:1c009b60 PA:1c009b70 +76021145ns 1384747 1c0043c8 01312623 sw x19, 12(x2) x19:0000000a x2:1c009b60 PA:1c009b6c +76021165ns 1384748 1c0043ca 0087f713 andi x14, x15, 8 x14=00000008 x15:00000089 +76021184ns 1384749 1c0043ce 00a004b3 add x9, x0, x10 x9=1c009e10 x10:1c009e10 +76021204ns 1384750 1c0043d0 00b00433 add x8, x0, x11 x8=1c00b914 x11:1c00b914 +76021224ns 1384751 1c0043d2 0e071363 bne x14, x0, 230 x14:00000008 +76021283ns 1384754 1c0044b8 0105a983 lw x19, 16(x11) x19=1c00bab8 x11:1c00b914 PA:1c00b924 +76021323ns 1384756 1c0044bc f20982e3 beq x19, x0, -220 x19:1c00bab8 +76021343ns 1384757 1c0044c0 0005a903 lw x18, 0(x11) x18=1c00bac7 x11:1c00b914 PA:1c00b914 +76021362ns 1384758 1c0044c4 0037f793 andi x15, x15, 3 x15=00000001 x15:00000089 +76021382ns 1384759 1c0044c6 0135a023 sw x19, 0(x11) x19:1c00bab8 x11:1c00b914 PA:1c00b914 +76021402ns 1384760 1c0044ca 41390933 sub x18, x18, x19 x18=0000000f x18:1c00bac7 x19:1c00bab8 +76021422ns 1384761 1c0044ce 00000713 addi x14, x0, 0 x14=00000000 +76021442ns 1384762 1c0044d0 00079263 bne x15, x0, 4 x15:00000001 +76021501ns 1384765 1c0044d4 00e42423 sw x14, 8(x8) x14:00000000 x8:1c00b914 PA:1c00b91c +76021521ns 1384766 1c0044d6 f12055e3 bge x0, x18, -246 x18:0000000f +76021541ns 1384767 1c0044da 02842783 lw x15, 40(x8) x15=1c004c5e x8:1c00b914 PA:1c00b93c +76021560ns 1384768 1c0044dc 02042583 lw x11, 32(x8) x11=1c00b914 x8:1c00b914 PA:1c00b934 +76021580ns 1384769 1c0044de 012006b3 add x13, x0, x18 x13=0000000f x18:0000000f +76021600ns 1384770 1c0044e0 01300633 add x12, x0, x19 x12=1c00bab8 x19:1c00bab8 +76021620ns 1384771 1c0044e2 00900533 add x10, x0, x9 x10=1c009e10 x9:1c009e10 +76021640ns 1384772 1c0044e4 000780e7 jalr x1, x15, 0 x1=1c0044e6 x15:1c004c5e +76021699ns 1384775 1c004c5e 00c5d783 lhu x15, 12(x11) x15=00000089 x11:1c00b914 PA:1c00b920 +76021719ns 1384776 1c004c62 fe010113 addi x2, x2, -32 x2=1c009b40 x2:1c009b60 +76021739ns 1384777 1c004c64 00812c23 sw x8, 24(x2) x8:1c00b914 x2:1c009b40 PA:1c009b58 +76021758ns 1384778 1c004c66 00912a23 sw x9, 20(x2) x9:1c009e10 x2:1c009b40 PA:1c009b54 +76021778ns 1384779 1c004c68 01212823 sw x18, 16(x2) x18:0000000f x2:1c009b40 PA:1c009b50 +76021798ns 1384780 1c004c6a 01312623 sw x19, 12(x2) x19:1c00bab8 x2:1c009b40 PA:1c009b4c +76021818ns 1384781 1c004c6c 00112e23 sw x1, 28(x2) x1:1c0044e6 x2:1c009b40 PA:1c009b5c +76021837ns 1384782 1c004c6e 1007f793 andi x15, x15, 256 x15=00000000 x15:00000089 +76021857ns 1384783 1c004c72 00a004b3 add x9, x0, x10 x9=1c009e10 x10:1c009e10 +76021877ns 1384784 1c004c74 00b00433 add x8, x0, x11 x8=1c00b914 x11:1c00b914 +76021897ns 1384785 1c004c76 00c00933 add x18, x0, x12 x18=1c00bab8 x12:1c00bab8 +76021917ns 1384786 1c004c78 00d009b3 add x19, x0, x13 x19=0000000f x13:0000000f +76021936ns 1384787 1c004c7a 00078663 beq x15, x0, 12 x15:00000000 +76022016ns 1384791 1c004c86 00c45783 lhu x15, 12(x8) x15=00000089 x8:1c00b914 PA:1c00b920 +76022035ns 1384792 1c004c8a fffff737 lui x14, 0xfffff000 x14=fffff000 +76022055ns 1384793 1c004c8c fff70713 addi x14, x14, -1 x14=ffffefff x14:fffff000 +76022075ns 1384794 1c004c8e 00e7f7b3 and x15, x15, x14 x15=00000089 x15:00000089 x14:ffffefff +76022095ns 1384795 1c004c90 00e41583 lh x11, 14(x8) x11=00000001 x8:1c00b914 PA:1c00b922 +76022115ns 1384796 1c004c94 00f41623 sh x15, 12(x8) x15:00000089 x8:1c00b914 PA:1c00b920 +76022134ns 1384797 1c004c98 01812403 lw x8, 24(x2) x8=1c00b914 x2:1c009b40 PA:1c009b58 +76022154ns 1384798 1c004c9a 01c12083 lw x1, 28(x2) x1=1c0044e6 x2:1c009b40 PA:1c009b5c +76022174ns 1384799 1c004c9c 013006b3 add x13, x0, x19 x13=0000000f x19:0000000f +76022194ns 1384800 1c004c9e 01200633 add x12, x0, x18 x12=1c00bab8 x18:1c00bab8 +76022214ns 1384801 1c004ca0 00c12983 lw x19, 12(x2) x19=1c00bab8 x2:1c009b40 PA:1c009b4c +76022233ns 1384802 1c004ca2 01012903 lw x18, 16(x2) x18=0000000f x2:1c009b40 PA:1c009b50 +76022253ns 1384803 1c004ca4 00900533 add x10, x0, x9 x10=1c009e10 x9:1c009e10 +76022273ns 1384804 1c004ca6 01412483 lw x9, 20(x2) x9=1c009e10 x2:1c009b40 PA:1c009b54 +76022293ns 1384805 1c004ca8 02010113 addi x2, x2, 32 x2=1c009b60 x2:1c009b40 +76022313ns 1384806 1c004caa 03e0006f jal x0, 62 +76022352ns 1384808 1c004ce8 ff010113 addi x2, x2, -16 x2=1c009b50 x2:1c009b60 +76022372ns 1384809 1c004cea 00812423 sw x8, 8(x2) x8:1c00b914 x2:1c009b50 PA:1c009b58 +76022392ns 1384810 1c004cec 00912223 sw x9, 4(x2) x9:1c009e10 x2:1c009b50 PA:1c009b54 +76022411ns 1384811 1c004cee 00a00433 add x8, x0, x10 x8=1c009e10 x10:1c009e10 +76022431ns 1384812 1c004cf0 00b00533 add x10, x0, x11 x10=00000001 x11:00000001 +76022451ns 1384813 1c004cf2 00c005b3 add x11, x0, x12 x11=1c00bab8 x12:1c00bab8 +76022471ns 1384814 1c004cf4 00d00633 add x12, x0, x13 x12=0000000f x13:0000000f +76022491ns 1384815 1c004cf6 00112623 sw x1, 12(x2) x1:1c0044e6 x2:1c009b50 PA:1c009b5c +76022510ns 1384816 1c004cf8 dc01a023 sw x0, -576(x3) x3:1c0093dc PA:1c00919c +76022530ns 1384817 1c004cfc cf7fd0ef jal x1, -8970 x1=1c004d00 +76022570ns 1384819 1c0029f2 fff50513 addi x10, x10, -1 x10=00000000 x10:00000001 +76022590ns 1384820 1c0029f4 00100793 addi x15, x0, 1 x15=00000001 +76022609ns 1384821 1c0029f6 00c58833 add x16, x11, x12 x16=1c00bac7 x11:1c00bab8 x12:0000000f +76022629ns 1384822 1c0029fa 00a7eb63 bltu x15, x10, 22 x15:00000001 x10:00000000 +76022649ns 1384823 1c0029fe 000026b7 lui x13, 0x2000 x13=00002000 +76022669ns 1384824 1c002a00 f8068693 addi x13, x13, -128 x13=00001f80 x13:00002000 +76022689ns 1384825 1c002a04 1a10f537 lui x10, 0x1a10f000 x10=1a10f000 +76022708ns 1384826 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bab8 x16:1c00bac7 +76022768ns 1384829 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bab9 x11:1c00bab8 +76022788ns 1384830 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000074 x11:1c00bab9 PA:1c00bab8 +76022807ns 1384831 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76022827ns 1384832 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76022847ns 1384833 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76022867ns 1384834 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76022886ns 1384835 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76022906ns 1384836 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76022926ns 1384837 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76022946ns 1384838 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76022966ns 1384839 1c002a38 0117a023 sw x17, 0(x15) x17:00000074 x15:1a10ff80 PA:1a10ff80 +76022985ns 1384840 1c002a3c fcdff06f jal x0, -52 +76023084ns 1384845 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bab9 x16:1c00bac7 +76023144ns 1384848 1c002a1c 00158593 addi x11, x11, 1 x11=1c00baba x11:1c00bab9 +76023164ns 1384849 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000078 x11:1c00baba PA:1c00bab9 +76023183ns 1384850 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76023203ns 1384851 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76023223ns 1384852 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76023243ns 1384853 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76023263ns 1384854 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76023282ns 1384855 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76023302ns 1384856 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76023322ns 1384857 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76023342ns 1384858 1c002a38 0117a023 sw x17, 0(x15) x17:00000078 x15:1a10ff80 PA:1a10ff80 +76023361ns 1384859 1c002a3c fcdff06f jal x0, -52 +76023460ns 1384864 1c002a08 01059a63 bne x11, x16, 20 x11:1c00baba x16:1c00bac7 +76023520ns 1384867 1c002a1c 00158593 addi x11, x11, 1 x11=1c00babb x11:1c00baba +76023540ns 1384868 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000020 x11:1c00babb PA:1c00baba +76023559ns 1384869 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76023579ns 1384870 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76023599ns 1384871 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76023619ns 1384872 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76023639ns 1384873 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76023658ns 1384874 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76023678ns 1384875 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76023698ns 1384876 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76023718ns 1384877 1c002a38 0117a023 sw x17, 0(x15) x17:00000020 x15:1a10ff80 PA:1a10ff80 +76023738ns 1384878 1c002a3c fcdff06f jal x0, -52 +76023836ns 1384883 1c002a08 01059a63 bne x11, x16, 20 x11:1c00babb x16:1c00bac7 +76023896ns 1384886 1c002a1c 00158593 addi x11, x11, 1 x11=1c00babc x11:1c00babb +76023916ns 1384887 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000062 x11:1c00babc PA:1c00babb +76023935ns 1384888 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76023955ns 1384889 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76023975ns 1384890 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76023995ns 1384891 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76024015ns 1384892 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76024034ns 1384893 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76024054ns 1384894 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76024074ns 1384895 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76024094ns 1384896 1c002a38 0117a023 sw x17, 0(x15) x17:00000062 x15:1a10ff80 PA:1a10ff80 +76024114ns 1384897 1c002a3c fcdff06f jal x0, -52 +76024213ns 1384902 1c002a08 01059a63 bne x11, x16, 20 x11:1c00babc x16:1c00bac7 +76024272ns 1384905 1c002a1c 00158593 addi x11, x11, 1 x11=1c00babd x11:1c00babc +76024292ns 1384906 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000075 x11:1c00babd PA:1c00babc +76024311ns 1384907 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76024331ns 1384908 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76024351ns 1384909 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76024371ns 1384910 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76024391ns 1384911 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76024410ns 1384912 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76024430ns 1384913 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76024450ns 1384914 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76024470ns 1384915 1c002a38 0117a023 sw x17, 0(x15) x17:00000075 x15:1a10ff80 PA:1a10ff80 +76024490ns 1384916 1c002a3c fcdff06f jal x0, -52 +76024589ns 1384921 1c002a08 01059a63 bne x11, x16, 20 x11:1c00babd x16:1c00bac7 +76024648ns 1384924 1c002a1c 00158593 addi x11, x11, 1 x11=1c00babe x11:1c00babd +76024668ns 1384925 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000066 x11:1c00babe PA:1c00babd +76024688ns 1384926 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76024707ns 1384927 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76024727ns 1384928 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76024747ns 1384929 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76024767ns 1384930 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76024787ns 1384931 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76024806ns 1384932 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76024826ns 1384933 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76024846ns 1384934 1c002a38 0117a023 sw x17, 0(x15) x17:00000066 x15:1a10ff80 PA:1a10ff80 +76024866ns 1384935 1c002a3c fcdff06f jal x0, -52 +76024965ns 1384940 1c002a08 01059a63 bne x11, x16, 20 x11:1c00babe x16:1c00bac7 +76025024ns 1384943 1c002a1c 00158593 addi x11, x11, 1 x11=1c00babf x11:1c00babe +76025044ns 1384944 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000066 x11:1c00babf PA:1c00babe +76025064ns 1384945 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76025083ns 1384946 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76025103ns 1384947 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76025123ns 1384948 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76025143ns 1384949 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76025163ns 1384950 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76025182ns 1384951 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76025202ns 1384952 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76025222ns 1384953 1c002a38 0117a023 sw x17, 0(x15) x17:00000066 x15:1a10ff80 PA:1a10ff80 +76025242ns 1384954 1c002a3c fcdff06f jal x0, -52 +76025341ns 1384959 1c002a08 01059a63 bne x11, x16, 20 x11:1c00babf x16:1c00bac7 +76025400ns 1384962 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac0 x11:1c00babf +76025420ns 1384963 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000065 x11:1c00bac0 PA:1c00babf +76025440ns 1384964 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76025459ns 1384965 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76025479ns 1384966 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76025499ns 1384967 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76025519ns 1384968 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76025539ns 1384969 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76025558ns 1384970 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76025578ns 1384971 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76025598ns 1384972 1c002a38 0117a023 sw x17, 0(x15) x17:00000065 x15:1a10ff80 PA:1a10ff80 +76025618ns 1384973 1c002a3c fcdff06f jal x0, -52 +76025717ns 1384978 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac0 x16:1c00bac7 +76025776ns 1384981 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac1 x11:1c00bac0 +76025796ns 1384982 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000072 x11:1c00bac1 PA:1c00bac0 +76025816ns 1384983 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76025835ns 1384984 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76025855ns 1384985 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76025875ns 1384986 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76025895ns 1384987 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76025915ns 1384988 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76025934ns 1384989 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76025954ns 1384990 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76025974ns 1384991 1c002a38 0117a023 sw x17, 0(x15) x17:00000072 x15:1a10ff80 PA:1a10ff80 +76025994ns 1384992 1c002a3c fcdff06f jal x0, -52 +76026093ns 1384997 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac1 x16:1c00bac7 +76026152ns 1385000 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac2 x11:1c00bac1 +76026172ns 1385001 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000020 x11:1c00bac2 PA:1c00bac1 +76026192ns 1385002 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76026212ns 1385003 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76026231ns 1385004 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76026251ns 1385005 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76026271ns 1385006 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76026291ns 1385007 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76026310ns 1385008 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76026330ns 1385009 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76026350ns 1385010 1c002a38 0117a023 sw x17, 0(x15) x17:00000020 x15:1a10ff80 PA:1a10ff80 +76026370ns 1385011 1c002a3c fcdff06f jal x0, -52 +76026469ns 1385016 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac2 x16:1c00bac7 +76026528ns 1385019 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac3 x11:1c00bac2 +76026548ns 1385020 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000069 x11:1c00bac3 PA:1c00bac2 +76026568ns 1385021 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76026588ns 1385022 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76026607ns 1385023 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76026627ns 1385024 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76026647ns 1385025 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76026667ns 1385026 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76026687ns 1385027 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76026706ns 1385028 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76026726ns 1385029 1c002a38 0117a023 sw x17, 0(x15) x17:00000069 x15:1a10ff80 PA:1a10ff80 +76026746ns 1385030 1c002a3c fcdff06f jal x0, -52 +76026845ns 1385035 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac3 x16:1c00bac7 +76026904ns 1385038 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac4 x11:1c00bac3 +76026924ns 1385039 1c002a1e fff5c883 lbu x17, -1(x11) x17=0000006e x11:1c00bac4 PA:1c00bac3 +76026944ns 1385040 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76026964ns 1385041 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76026983ns 1385042 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76027003ns 1385043 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76027023ns 1385044 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76027043ns 1385045 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76027063ns 1385046 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76027082ns 1385047 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76027102ns 1385048 1c002a38 0117a023 sw x17, 0(x15) x17:0000006e x15:1a10ff80 PA:1a10ff80 +76027122ns 1385049 1c002a3c fcdff06f jal x0, -52 +76027221ns 1385054 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac4 x16:1c00bac7 +76027280ns 1385057 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac5 x11:1c00bac4 +76027300ns 1385058 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000069 x11:1c00bac5 PA:1c00bac4 +76027320ns 1385059 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76027340ns 1385060 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76027359ns 1385061 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76027379ns 1385062 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76027399ns 1385063 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76027419ns 1385064 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76027439ns 1385065 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76027458ns 1385066 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76027478ns 1385067 1c002a38 0117a023 sw x17, 0(x15) x17:00000069 x15:1a10ff80 PA:1a10ff80 +76027498ns 1385068 1c002a3c fcdff06f jal x0, -52 +76027597ns 1385073 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac5 x16:1c00bac7 +76027656ns 1385076 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac6 x11:1c00bac5 +76027676ns 1385077 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000074 x11:1c00bac6 PA:1c00bac5 +76027696ns 1385078 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76027716ns 1385079 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76027736ns 1385080 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76027755ns 1385081 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76027775ns 1385082 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76027795ns 1385083 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76027815ns 1385084 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76027834ns 1385085 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76027854ns 1385086 1c002a38 0117a023 sw x17, 0(x15) x17:00000074 x15:1a10ff80 PA:1a10ff80 +76027874ns 1385087 1c002a3c fcdff06f jal x0, -52 +76027973ns 1385092 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac6 x16:1c00bac7 +76028032ns 1385095 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac7 x11:1c00bac6 +76028052ns 1385096 1c002a1e fff5c883 lbu x17, -1(x11) x17=0000000a x11:1c00bac7 PA:1c00bac6 +76028072ns 1385097 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76028092ns 1385098 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76028112ns 1385099 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76028131ns 1385100 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76028151ns 1385101 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76028171ns 1385102 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76028191ns 1385103 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76028211ns 1385104 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76028230ns 1385105 1c002a38 0117a023 sw x17, 0(x15) x17:0000000a x15:1a10ff80 PA:1a10ff80 +76028250ns 1385106 1c002a3c fcdff06f jal x0, -52 +76028349ns 1385111 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac7 x16:1c00bac7 +76028369ns 1385112 1c002a0c 00c00533 add x10, x0, x12 x10=0000000f x12:0000000f +76028389ns 1385113 1c002a0e 00008067 jalr x0, x1, 0 x1:1c004d00 +76028428ns 1385115 1c004d00 fff00793 addi x15, x0, -1 x15=ffffffff +76028448ns 1385116 1c004d02 00f51663 bne x10, x15, 12 x10:0000000f x15:ffffffff +76028507ns 1385119 1c004d0e 00c12083 lw x1, 12(x2) x1=1c0044e6 x2:1c009b50 PA:1c009b5c +76028527ns 1385120 1c004d10 00812403 lw x8, 8(x2) x8=1c00b914 x2:1c009b50 PA:1c009b58 +76028547ns 1385121 1c004d12 00412483 lw x9, 4(x2) x9=1c009e10 x2:1c009b50 PA:1c009b54 +76028567ns 1385122 1c004d14 01010113 addi x2, x2, 16 x2=1c009b60 x2:1c009b50 +76028587ns 1385123 1c004d16 00008067 jalr x0, x1, 0 x1:1c0044e6 +76028646ns 1385126 1c0044e6 00a04a63 blt x0, x10, 20 x10:0000000f +76028705ns 1385129 1c0044fa 00a989b3 add x19, x19, x10 x19=1c00bac7 x19:1c00bab8 x10:0000000f +76028725ns 1385130 1c0044fc 40a90933 sub x18, x18, x10 x18=00000000 x18:0000000f x10:0000000f +76028745ns 1385131 1c004500 fd7ff06f jal x0, -42 +76028804ns 1385134 1c0044d6 f12055e3 bge x0, x18, -246 x18:00000000 +76028864ns 1385137 1c0043e0 00000513 addi x10, x0, 0 x10=00000000 +76028883ns 1385138 1c0043e2 0be0006f jal x0, 190 +76028923ns 1385140 1c0044a0 01c12083 lw x1, 28(x2) x1=1c00412c x2:1c009b60 PA:1c009b7c +76028943ns 1385141 1c0044a2 01812403 lw x8, 24(x2) x8=1c00b914 x2:1c009b60 PA:1c009b78 +76028963ns 1385142 1c0044a4 01412483 lw x9, 20(x2) x9=1c009e10 x2:1c009b60 PA:1c009b74 +76028982ns 1385143 1c0044a6 01012903 lw x18, 16(x2) x18=0000000a x2:1c009b60 PA:1c009b70 +76029002ns 1385144 1c0044a8 00c12983 lw x19, 12(x2) x19=0000000a x2:1c009b60 PA:1c009b6c +76029022ns 1385145 1c0044aa 02010113 addi x2, x2, 32 x2=1c009b80 x2:1c009b60 +76029042ns 1385146 1c0044ac 00008067 jalr x0, x1, 0 x1:1c00412c +76029081ns 1385148 1c00412c 02051d63 bne x10, x0, 58 x10:00000000 +76029101ns 1385149 1c00412e 01c12083 lw x1, 28(x2) x1=1c003e52 x2:1c009b80 PA:1c009b9c +76029121ns 1385150 1c004130 01812403 lw x8, 24(x2) x8=1c00b914 x2:1c009b80 PA:1c009b98 +76029141ns 1385151 1c004132 01412483 lw x9, 20(x2) x9=1c009e10 x2:1c009b80 PA:1c009b94 +76029161ns 1385152 1c004134 00c12983 lw x19, 12(x2) x19=ffffffff x2:1c009b80 PA:1c009b8c +76029180ns 1385153 1c004136 01200533 add x10, x0, x18 x10=0000000a x18:0000000a +76029200ns 1385154 1c004138 01012903 lw x18, 16(x2) x18=1c0088de x2:1c009b80 PA:1c009b90 +76029220ns 1385155 1c00413a 02010113 addi x2, x2, 32 x2=1c009ba0 x2:1c009b80 +76029240ns 1385156 1c00413c 00008067 jalr x0, x1, 0 x1:1c003e52 +76029279ns 1385158 1c003e52 fff00793 addi x15, x0, -1 x15=ffffffff +76029299ns 1385159 1c003e54 02f50863 beq x10, x15, 48 x10:0000000a x15:ffffffff +76029319ns 1385160 1c003e58 00a00513 addi x10, x0, 10 x10=0000000a +76029339ns 1385161 1c003e5a 02c0006f jal x0, 44 +76029378ns 1385163 1c003e86 01c12083 lw x1, 28(x2) x1=1c0035da x2:1c009ba0 PA:1c009bbc +76029398ns 1385164 1c003e88 01812403 lw x8, 24(x2) x8=00000000 x2:1c009ba0 PA:1c009bb8 +76029418ns 1385165 1c003e8a 01412483 lw x9, 20(x2) x9=1c009190 x2:1c009ba0 PA:1c009bb4 +76029438ns 1385166 1c003e8c 01012903 lw x18, 16(x2) x18=1c009188 x2:1c009ba0 PA:1c009bb0 +76029457ns 1385167 1c003e8e 00c12983 lw x19, 12(x2) x19=a5a5a5a5 x2:1c009ba0 PA:1c009bac +76029477ns 1385168 1c003e90 00812a03 lw x20, 8(x2) x20=1c00918c x2:1c009ba0 PA:1c009ba8 +76029497ns 1385169 1c003e92 02010113 addi x2, x2, 32 x2=1c009bc0 x2:1c009ba0 +76029517ns 1385170 1c003e94 00008067 jalr x0, x1, 0 x1:1c0035da +76029556ns 1385172 1c0035da 00000793 addi x15, x0, 0 x15=00000000 +76029576ns 1385173 1c0035dc 10000693 addi x13, x0, 256 x13=00000100 +76029596ns 1385174 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76029636ns 1385176 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bec0 x14:1c00bec0 x15:00000000 +76029655ns 1385177 1c0035e4 00f70023 sb x15, 0(x14) x15:00000000 x14:1c00bec0 PA:1c00bec0 +76029675ns 1385178 1c0035e8 00178793 addi x15, x15, 1 x15=00000001 x15:00000000 +76029695ns 1385179 1c0035ea fed79be3 bne x15, x13, -10 x15:00000001 x13:00000100 +76029754ns 1385182 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76029794ns 1385184 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bec1 x14:1c00bec0 x15:00000001 +76029814ns 1385185 1c0035e4 00f70023 sb x15, 0(x14) x15:00000001 x14:1c00bec1 PA:1c00bec1 +76029833ns 1385186 1c0035e8 00178793 addi x15, x15, 1 x15=00000002 x15:00000001 +76029853ns 1385187 1c0035ea fed79be3 bne x15, x13, -10 x15:00000002 x13:00000100 +76029913ns 1385190 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76029952ns 1385192 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bec2 x14:1c00bec0 x15:00000002 +76029972ns 1385193 1c0035e4 00f70023 sb x15, 0(x14) x15:00000002 x14:1c00bec2 PA:1c00bec2 +76029992ns 1385194 1c0035e8 00178793 addi x15, x15, 1 x15=00000003 x15:00000002 +76030012ns 1385195 1c0035ea fed79be3 bne x15, x13, -10 x15:00000003 x13:00000100 +76030071ns 1385198 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76030111ns 1385200 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bec3 x14:1c00bec0 x15:00000003 +76030130ns 1385201 1c0035e4 00f70023 sb x15, 0(x14) x15:00000003 x14:1c00bec3 PA:1c00bec3 +76030150ns 1385202 1c0035e8 00178793 addi x15, x15, 1 x15=00000004 x15:00000003 +76030170ns 1385203 1c0035ea fed79be3 bne x15, x13, -10 x15:00000004 x13:00000100 +76030229ns 1385206 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76030269ns 1385208 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bec4 x14:1c00bec0 x15:00000004 +76030289ns 1385209 1c0035e4 00f70023 sb x15, 0(x14) x15:00000004 x14:1c00bec4 PA:1c00bec4 +76030308ns 1385210 1c0035e8 00178793 addi x15, x15, 1 x15=00000005 x15:00000004 +76030328ns 1385211 1c0035ea fed79be3 bne x15, x13, -10 x15:00000005 x13:00000100 +76030388ns 1385214 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76030427ns 1385216 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bec5 x14:1c00bec0 x15:00000005 +76030447ns 1385217 1c0035e4 00f70023 sb x15, 0(x14) x15:00000005 x14:1c00bec5 PA:1c00bec5 +76030467ns 1385218 1c0035e8 00178793 addi x15, x15, 1 x15=00000006 x15:00000005 +76030487ns 1385219 1c0035ea fed79be3 bne x15, x13, -10 x15:00000006 x13:00000100 +76030546ns 1385222 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76030586ns 1385224 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bec6 x14:1c00bec0 x15:00000006 +76030605ns 1385225 1c0035e4 00f70023 sb x15, 0(x14) x15:00000006 x14:1c00bec6 PA:1c00bec6 +76030625ns 1385226 1c0035e8 00178793 addi x15, x15, 1 x15=00000007 x15:00000006 +76030645ns 1385227 1c0035ea fed79be3 bne x15, x13, -10 x15:00000007 x13:00000100 +76030704ns 1385230 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76030744ns 1385232 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bec7 x14:1c00bec0 x15:00000007 +76030764ns 1385233 1c0035e4 00f70023 sb x15, 0(x14) x15:00000007 x14:1c00bec7 PA:1c00bec7 +76030783ns 1385234 1c0035e8 00178793 addi x15, x15, 1 x15=00000008 x15:00000007 +76030803ns 1385235 1c0035ea fed79be3 bne x15, x13, -10 x15:00000008 x13:00000100 +76030863ns 1385238 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76030902ns 1385240 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bec8 x14:1c00bec0 x15:00000008 +76030922ns 1385241 1c0035e4 00f70023 sb x15, 0(x14) x15:00000008 x14:1c00bec8 PA:1c00bec8 +76030942ns 1385242 1c0035e8 00178793 addi x15, x15, 1 x15=00000009 x15:00000008 +76030962ns 1385243 1c0035ea fed79be3 bne x15, x13, -10 x15:00000009 x13:00000100 +76031021ns 1385246 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76031061ns 1385248 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bec9 x14:1c00bec0 x15:00000009 +76031080ns 1385249 1c0035e4 00f70023 sb x15, 0(x14) x15:00000009 x14:1c00bec9 PA:1c00bec9 +76031100ns 1385250 1c0035e8 00178793 addi x15, x15, 1 x15=0000000a x15:00000009 +76031120ns 1385251 1c0035ea fed79be3 bne x15, x13, -10 x15:0000000a x13:00000100 +76031179ns 1385254 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76031219ns 1385256 1c0035e2 00f70733 add x14, x14, x15 x14=1c00beca x14:1c00bec0 x15:0000000a +76031239ns 1385257 1c0035e4 00f70023 sb x15, 0(x14) x15:0000000a x14:1c00beca PA:1c00beca +76031258ns 1385258 1c0035e8 00178793 addi x15, x15, 1 x15=0000000b x15:0000000a +76031278ns 1385259 1c0035ea fed79be3 bne x15, x13, -10 x15:0000000b x13:00000100 +76031338ns 1385262 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76031377ns 1385264 1c0035e2 00f70733 add x14, x14, x15 x14=1c00becb x14:1c00bec0 x15:0000000b +76031397ns 1385265 1c0035e4 00f70023 sb x15, 0(x14) x15:0000000b x14:1c00becb PA:1c00becb +76031417ns 1385266 1c0035e8 00178793 addi x15, x15, 1 x15=0000000c x15:0000000b +76031437ns 1385267 1c0035ea fed79be3 bne x15, x13, -10 x15:0000000c x13:00000100 +76031496ns 1385270 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76031536ns 1385272 1c0035e2 00f70733 add x14, x14, x15 x14=1c00becc x14:1c00bec0 x15:0000000c +76031555ns 1385273 1c0035e4 00f70023 sb x15, 0(x14) x15:0000000c x14:1c00becc PA:1c00becc +76031575ns 1385274 1c0035e8 00178793 addi x15, x15, 1 x15=0000000d x15:0000000c +76031595ns 1385275 1c0035ea fed79be3 bne x15, x13, -10 x15:0000000d x13:00000100 +76031654ns 1385278 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76031694ns 1385280 1c0035e2 00f70733 add x14, x14, x15 x14=1c00becd x14:1c00bec0 x15:0000000d +76031714ns 1385281 1c0035e4 00f70023 sb x15, 0(x14) x15:0000000d x14:1c00becd PA:1c00becd +76031733ns 1385282 1c0035e8 00178793 addi x15, x15, 1 x15=0000000e x15:0000000d +76031753ns 1385283 1c0035ea fed79be3 bne x15, x13, -10 x15:0000000e x13:00000100 +76031813ns 1385286 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76031852ns 1385288 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bece x14:1c00bec0 x15:0000000e +76031872ns 1385289 1c0035e4 00f70023 sb x15, 0(x14) x15:0000000e x14:1c00bece PA:1c00bece +76031892ns 1385290 1c0035e8 00178793 addi x15, x15, 1 x15=0000000f x15:0000000e +76031912ns 1385291 1c0035ea fed79be3 bne x15, x13, -10 x15:0000000f x13:00000100 +76031971ns 1385294 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76032011ns 1385296 1c0035e2 00f70733 add x14, x14, x15 x14=1c00becf x14:1c00bec0 x15:0000000f +76032030ns 1385297 1c0035e4 00f70023 sb x15, 0(x14) x15:0000000f x14:1c00becf PA:1c00becf +76032050ns 1385298 1c0035e8 00178793 addi x15, x15, 1 x15=00000010 x15:0000000f +76032070ns 1385299 1c0035ea fed79be3 bne x15, x13, -10 x15:00000010 x13:00000100 +76032129ns 1385302 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76032169ns 1385304 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bed0 x14:1c00bec0 x15:00000010 +76032189ns 1385305 1c0035e4 00f70023 sb x15, 0(x14) x15:00000010 x14:1c00bed0 PA:1c00bed0 +76032209ns 1385306 1c0035e8 00178793 addi x15, x15, 1 x15=00000011 x15:00000010 +76032228ns 1385307 1c0035ea fed79be3 bne x15, x13, -10 x15:00000011 x13:00000100 +76032288ns 1385310 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76032327ns 1385312 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bed1 x14:1c00bec0 x15:00000011 +76032347ns 1385313 1c0035e4 00f70023 sb x15, 0(x14) x15:00000011 x14:1c00bed1 PA:1c00bed1 +76032367ns 1385314 1c0035e8 00178793 addi x15, x15, 1 x15=00000012 x15:00000011 +76032387ns 1385315 1c0035ea fed79be3 bne x15, x13, -10 x15:00000012 x13:00000100 +76032446ns 1385318 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76032486ns 1385320 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bed2 x14:1c00bec0 x15:00000012 +76032505ns 1385321 1c0035e4 00f70023 sb x15, 0(x14) x15:00000012 x14:1c00bed2 PA:1c00bed2 +76032525ns 1385322 1c0035e8 00178793 addi x15, x15, 1 x15=00000013 x15:00000012 +76032545ns 1385323 1c0035ea fed79be3 bne x15, x13, -10 x15:00000013 x13:00000100 +76032604ns 1385326 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76032644ns 1385328 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bed3 x14:1c00bec0 x15:00000013 +76032664ns 1385329 1c0035e4 00f70023 sb x15, 0(x14) x15:00000013 x14:1c00bed3 PA:1c00bed3 +76032684ns 1385330 1c0035e8 00178793 addi x15, x15, 1 x15=00000014 x15:00000013 +76032703ns 1385331 1c0035ea fed79be3 bne x15, x13, -10 x15:00000014 x13:00000100 +76032763ns 1385334 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76032802ns 1385336 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bed4 x14:1c00bec0 x15:00000014 +76032822ns 1385337 1c0035e4 00f70023 sb x15, 0(x14) x15:00000014 x14:1c00bed4 PA:1c00bed4 +76032842ns 1385338 1c0035e8 00178793 addi x15, x15, 1 x15=00000015 x15:00000014 +76032862ns 1385339 1c0035ea fed79be3 bne x15, x13, -10 x15:00000015 x13:00000100 +76032921ns 1385342 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76032961ns 1385344 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bed5 x14:1c00bec0 x15:00000015 +76032980ns 1385345 1c0035e4 00f70023 sb x15, 0(x14) x15:00000015 x14:1c00bed5 PA:1c00bed5 +76033000ns 1385346 1c0035e8 00178793 addi x15, x15, 1 x15=00000016 x15:00000015 +76033020ns 1385347 1c0035ea fed79be3 bne x15, x13, -10 x15:00000016 x13:00000100 +76033079ns 1385350 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76033119ns 1385352 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bed6 x14:1c00bec0 x15:00000016 +76033139ns 1385353 1c0035e4 00f70023 sb x15, 0(x14) x15:00000016 x14:1c00bed6 PA:1c00bed6 +76033159ns 1385354 1c0035e8 00178793 addi x15, x15, 1 x15=00000017 x15:00000016 +76033178ns 1385355 1c0035ea fed79be3 bne x15, x13, -10 x15:00000017 x13:00000100 +76033238ns 1385358 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76033277ns 1385360 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bed7 x14:1c00bec0 x15:00000017 +76033297ns 1385361 1c0035e4 00f70023 sb x15, 0(x14) x15:00000017 x14:1c00bed7 PA:1c00bed7 +76033317ns 1385362 1c0035e8 00178793 addi x15, x15, 1 x15=00000018 x15:00000017 +76033337ns 1385363 1c0035ea fed79be3 bne x15, x13, -10 x15:00000018 x13:00000100 +76033396ns 1385366 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76033436ns 1385368 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bed8 x14:1c00bec0 x15:00000018 +76033455ns 1385369 1c0035e4 00f70023 sb x15, 0(x14) x15:00000018 x14:1c00bed8 PA:1c00bed8 +76033475ns 1385370 1c0035e8 00178793 addi x15, x15, 1 x15=00000019 x15:00000018 +76033495ns 1385371 1c0035ea fed79be3 bne x15, x13, -10 x15:00000019 x13:00000100 +76033554ns 1385374 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76033594ns 1385376 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bed9 x14:1c00bec0 x15:00000019 +76033614ns 1385377 1c0035e4 00f70023 sb x15, 0(x14) x15:00000019 x14:1c00bed9 PA:1c00bed9 +76033634ns 1385378 1c0035e8 00178793 addi x15, x15, 1 x15=0000001a x15:00000019 +76033653ns 1385379 1c0035ea fed79be3 bne x15, x13, -10 x15:0000001a x13:00000100 +76033713ns 1385382 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76033752ns 1385384 1c0035e2 00f70733 add x14, x14, x15 x14=1c00beda x14:1c00bec0 x15:0000001a +76033772ns 1385385 1c0035e4 00f70023 sb x15, 0(x14) x15:0000001a x14:1c00beda PA:1c00beda +76033792ns 1385386 1c0035e8 00178793 addi x15, x15, 1 x15=0000001b x15:0000001a +76033812ns 1385387 1c0035ea fed79be3 bne x15, x13, -10 x15:0000001b x13:00000100 +76033871ns 1385390 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76033911ns 1385392 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bedb x14:1c00bec0 x15:0000001b +76033930ns 1385393 1c0035e4 00f70023 sb x15, 0(x14) x15:0000001b x14:1c00bedb PA:1c00bedb +76033950ns 1385394 1c0035e8 00178793 addi x15, x15, 1 x15=0000001c x15:0000001b +76033970ns 1385395 1c0035ea fed79be3 bne x15, x13, -10 x15:0000001c x13:00000100 +76034029ns 1385398 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76034069ns 1385400 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bedc x14:1c00bec0 x15:0000001c +76034089ns 1385401 1c0035e4 00f70023 sb x15, 0(x14) x15:0000001c x14:1c00bedc PA:1c00bedc +76034109ns 1385402 1c0035e8 00178793 addi x15, x15, 1 x15=0000001d x15:0000001c +76034128ns 1385403 1c0035ea fed79be3 bne x15, x13, -10 x15:0000001d x13:00000100 +76034188ns 1385406 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76034227ns 1385408 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bedd x14:1c00bec0 x15:0000001d +76034247ns 1385409 1c0035e4 00f70023 sb x15, 0(x14) x15:0000001d x14:1c00bedd PA:1c00bedd +76034267ns 1385410 1c0035e8 00178793 addi x15, x15, 1 x15=0000001e x15:0000001d +76034287ns 1385411 1c0035ea fed79be3 bne x15, x13, -10 x15:0000001e x13:00000100 +76034346ns 1385414 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76034386ns 1385416 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bede x14:1c00bec0 x15:0000001e +76034405ns 1385417 1c0035e4 00f70023 sb x15, 0(x14) x15:0000001e x14:1c00bede PA:1c00bede +76034425ns 1385418 1c0035e8 00178793 addi x15, x15, 1 x15=0000001f x15:0000001e +76034445ns 1385419 1c0035ea fed79be3 bne x15, x13, -10 x15:0000001f x13:00000100 +76034504ns 1385422 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76034544ns 1385424 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bedf x14:1c00bec0 x15:0000001f +76034564ns 1385425 1c0035e4 00f70023 sb x15, 0(x14) x15:0000001f x14:1c00bedf PA:1c00bedf +76034584ns 1385426 1c0035e8 00178793 addi x15, x15, 1 x15=00000020 x15:0000001f +76034603ns 1385427 1c0035ea fed79be3 bne x15, x13, -10 x15:00000020 x13:00000100 +76034663ns 1385430 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76034702ns 1385432 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bee0 x14:1c00bec0 x15:00000020 +76034722ns 1385433 1c0035e4 00f70023 sb x15, 0(x14) x15:00000020 x14:1c00bee0 PA:1c00bee0 +76034742ns 1385434 1c0035e8 00178793 addi x15, x15, 1 x15=00000021 x15:00000020 +76034762ns 1385435 1c0035ea fed79be3 bne x15, x13, -10 x15:00000021 x13:00000100 +76034821ns 1385438 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76034861ns 1385440 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bee1 x14:1c00bec0 x15:00000021 +76034880ns 1385441 1c0035e4 00f70023 sb x15, 0(x14) x15:00000021 x14:1c00bee1 PA:1c00bee1 +76034900ns 1385442 1c0035e8 00178793 addi x15, x15, 1 x15=00000022 x15:00000021 +76034920ns 1385443 1c0035ea fed79be3 bne x15, x13, -10 x15:00000022 x13:00000100 +76034979ns 1385446 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76035019ns 1385448 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bee2 x14:1c00bec0 x15:00000022 +76035039ns 1385449 1c0035e4 00f70023 sb x15, 0(x14) x15:00000022 x14:1c00bee2 PA:1c00bee2 +76035059ns 1385450 1c0035e8 00178793 addi x15, x15, 1 x15=00000023 x15:00000022 +76035078ns 1385451 1c0035ea fed79be3 bne x15, x13, -10 x15:00000023 x13:00000100 +76035138ns 1385454 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76035177ns 1385456 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bee3 x14:1c00bec0 x15:00000023 +76035197ns 1385457 1c0035e4 00f70023 sb x15, 0(x14) x15:00000023 x14:1c00bee3 PA:1c00bee3 +76035217ns 1385458 1c0035e8 00178793 addi x15, x15, 1 x15=00000024 x15:00000023 +76035237ns 1385459 1c0035ea fed79be3 bne x15, x13, -10 x15:00000024 x13:00000100 +76035296ns 1385462 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76035336ns 1385464 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bee4 x14:1c00bec0 x15:00000024 +76035355ns 1385465 1c0035e4 00f70023 sb x15, 0(x14) x15:00000024 x14:1c00bee4 PA:1c00bee4 +76035375ns 1385466 1c0035e8 00178793 addi x15, x15, 1 x15=00000025 x15:00000024 +76035395ns 1385467 1c0035ea fed79be3 bne x15, x13, -10 x15:00000025 x13:00000100 +76035454ns 1385470 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76035494ns 1385472 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bee5 x14:1c00bec0 x15:00000025 +76035514ns 1385473 1c0035e4 00f70023 sb x15, 0(x14) x15:00000025 x14:1c00bee5 PA:1c00bee5 +76035534ns 1385474 1c0035e8 00178793 addi x15, x15, 1 x15=00000026 x15:00000025 +76035553ns 1385475 1c0035ea fed79be3 bne x15, x13, -10 x15:00000026 x13:00000100 +76035613ns 1385478 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76035652ns 1385480 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bee6 x14:1c00bec0 x15:00000026 +76035672ns 1385481 1c0035e4 00f70023 sb x15, 0(x14) x15:00000026 x14:1c00bee6 PA:1c00bee6 +76035692ns 1385482 1c0035e8 00178793 addi x15, x15, 1 x15=00000027 x15:00000026 +76035712ns 1385483 1c0035ea fed79be3 bne x15, x13, -10 x15:00000027 x13:00000100 +76035771ns 1385486 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76035811ns 1385488 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bee7 x14:1c00bec0 x15:00000027 +76035830ns 1385489 1c0035e4 00f70023 sb x15, 0(x14) x15:00000027 x14:1c00bee7 PA:1c00bee7 +76035850ns 1385490 1c0035e8 00178793 addi x15, x15, 1 x15=00000028 x15:00000027 +76035870ns 1385491 1c0035ea fed79be3 bne x15, x13, -10 x15:00000028 x13:00000100 +76035929ns 1385494 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76035969ns 1385496 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bee8 x14:1c00bec0 x15:00000028 +76035989ns 1385497 1c0035e4 00f70023 sb x15, 0(x14) x15:00000028 x14:1c00bee8 PA:1c00bee8 +76036009ns 1385498 1c0035e8 00178793 addi x15, x15, 1 x15=00000029 x15:00000028 +76036028ns 1385499 1c0035ea fed79be3 bne x15, x13, -10 x15:00000029 x13:00000100 +76036088ns 1385502 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76036127ns 1385504 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bee9 x14:1c00bec0 x15:00000029 +76036147ns 1385505 1c0035e4 00f70023 sb x15, 0(x14) x15:00000029 x14:1c00bee9 PA:1c00bee9 +76036167ns 1385506 1c0035e8 00178793 addi x15, x15, 1 x15=0000002a x15:00000029 +76036187ns 1385507 1c0035ea fed79be3 bne x15, x13, -10 x15:0000002a x13:00000100 +76036246ns 1385510 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76036286ns 1385512 1c0035e2 00f70733 add x14, x14, x15 x14=1c00beea x14:1c00bec0 x15:0000002a +76036305ns 1385513 1c0035e4 00f70023 sb x15, 0(x14) x15:0000002a x14:1c00beea PA:1c00beea +76036325ns 1385514 1c0035e8 00178793 addi x15, x15, 1 x15=0000002b x15:0000002a +76036345ns 1385515 1c0035ea fed79be3 bne x15, x13, -10 x15:0000002b x13:00000100 +76036404ns 1385518 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76036444ns 1385520 1c0035e2 00f70733 add x14, x14, x15 x14=1c00beeb x14:1c00bec0 x15:0000002b +76036464ns 1385521 1c0035e4 00f70023 sb x15, 0(x14) x15:0000002b x14:1c00beeb PA:1c00beeb +76036484ns 1385522 1c0035e8 00178793 addi x15, x15, 1 x15=0000002c x15:0000002b +76036503ns 1385523 1c0035ea fed79be3 bne x15, x13, -10 x15:0000002c x13:00000100 +76036563ns 1385526 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76036602ns 1385528 1c0035e2 00f70733 add x14, x14, x15 x14=1c00beec x14:1c00bec0 x15:0000002c +76036622ns 1385529 1c0035e4 00f70023 sb x15, 0(x14) x15:0000002c x14:1c00beec PA:1c00beec +76036642ns 1385530 1c0035e8 00178793 addi x15, x15, 1 x15=0000002d x15:0000002c +76036662ns 1385531 1c0035ea fed79be3 bne x15, x13, -10 x15:0000002d x13:00000100 +76036721ns 1385534 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76036761ns 1385536 1c0035e2 00f70733 add x14, x14, x15 x14=1c00beed x14:1c00bec0 x15:0000002d +76036780ns 1385537 1c0035e4 00f70023 sb x15, 0(x14) x15:0000002d x14:1c00beed PA:1c00beed +76036800ns 1385538 1c0035e8 00178793 addi x15, x15, 1 x15=0000002e x15:0000002d +76036820ns 1385539 1c0035ea fed79be3 bne x15, x13, -10 x15:0000002e x13:00000100 +76036879ns 1385542 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76036919ns 1385544 1c0035e2 00f70733 add x14, x14, x15 x14=1c00beee x14:1c00bec0 x15:0000002e +76036939ns 1385545 1c0035e4 00f70023 sb x15, 0(x14) x15:0000002e x14:1c00beee PA:1c00beee +76036959ns 1385546 1c0035e8 00178793 addi x15, x15, 1 x15=0000002f x15:0000002e +76036978ns 1385547 1c0035ea fed79be3 bne x15, x13, -10 x15:0000002f x13:00000100 +76037038ns 1385550 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76037077ns 1385552 1c0035e2 00f70733 add x14, x14, x15 x14=1c00beef x14:1c00bec0 x15:0000002f +76037097ns 1385553 1c0035e4 00f70023 sb x15, 0(x14) x15:0000002f x14:1c00beef PA:1c00beef +76037117ns 1385554 1c0035e8 00178793 addi x15, x15, 1 x15=00000030 x15:0000002f +76037137ns 1385555 1c0035ea fed79be3 bne x15, x13, -10 x15:00000030 x13:00000100 +76037196ns 1385558 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76037236ns 1385560 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bef0 x14:1c00bec0 x15:00000030 +76037255ns 1385561 1c0035e4 00f70023 sb x15, 0(x14) x15:00000030 x14:1c00bef0 PA:1c00bef0 +76037275ns 1385562 1c0035e8 00178793 addi x15, x15, 1 x15=00000031 x15:00000030 +76037295ns 1385563 1c0035ea fed79be3 bne x15, x13, -10 x15:00000031 x13:00000100 +76037354ns 1385566 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76037394ns 1385568 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bef1 x14:1c00bec0 x15:00000031 +76037414ns 1385569 1c0035e4 00f70023 sb x15, 0(x14) x15:00000031 x14:1c00bef1 PA:1c00bef1 +76037434ns 1385570 1c0035e8 00178793 addi x15, x15, 1 x15=00000032 x15:00000031 +76037453ns 1385571 1c0035ea fed79be3 bne x15, x13, -10 x15:00000032 x13:00000100 +76037513ns 1385574 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76037552ns 1385576 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bef2 x14:1c00bec0 x15:00000032 +76037572ns 1385577 1c0035e4 00f70023 sb x15, 0(x14) x15:00000032 x14:1c00bef2 PA:1c00bef2 +76037592ns 1385578 1c0035e8 00178793 addi x15, x15, 1 x15=00000033 x15:00000032 +76037612ns 1385579 1c0035ea fed79be3 bne x15, x13, -10 x15:00000033 x13:00000100 +76037671ns 1385582 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76037711ns 1385584 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bef3 x14:1c00bec0 x15:00000033 +76037730ns 1385585 1c0035e4 00f70023 sb x15, 0(x14) x15:00000033 x14:1c00bef3 PA:1c00bef3 +76037750ns 1385586 1c0035e8 00178793 addi x15, x15, 1 x15=00000034 x15:00000033 +76037770ns 1385587 1c0035ea fed79be3 bne x15, x13, -10 x15:00000034 x13:00000100 +76037829ns 1385590 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76037869ns 1385592 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bef4 x14:1c00bec0 x15:00000034 +76037889ns 1385593 1c0035e4 00f70023 sb x15, 0(x14) x15:00000034 x14:1c00bef4 PA:1c00bef4 +76037909ns 1385594 1c0035e8 00178793 addi x15, x15, 1 x15=00000035 x15:00000034 +76037928ns 1385595 1c0035ea fed79be3 bne x15, x13, -10 x15:00000035 x13:00000100 +76037988ns 1385598 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76038027ns 1385600 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bef5 x14:1c00bec0 x15:00000035 +76038047ns 1385601 1c0035e4 00f70023 sb x15, 0(x14) x15:00000035 x14:1c00bef5 PA:1c00bef5 +76038067ns 1385602 1c0035e8 00178793 addi x15, x15, 1 x15=00000036 x15:00000035 +76038087ns 1385603 1c0035ea fed79be3 bne x15, x13, -10 x15:00000036 x13:00000100 +76038146ns 1385606 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76038186ns 1385608 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bef6 x14:1c00bec0 x15:00000036 +76038205ns 1385609 1c0035e4 00f70023 sb x15, 0(x14) x15:00000036 x14:1c00bef6 PA:1c00bef6 +76038225ns 1385610 1c0035e8 00178793 addi x15, x15, 1 x15=00000037 x15:00000036 +76038245ns 1385611 1c0035ea fed79be3 bne x15, x13, -10 x15:00000037 x13:00000100 +76038304ns 1385614 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76038344ns 1385616 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bef7 x14:1c00bec0 x15:00000037 +76038364ns 1385617 1c0035e4 00f70023 sb x15, 0(x14) x15:00000037 x14:1c00bef7 PA:1c00bef7 +76038384ns 1385618 1c0035e8 00178793 addi x15, x15, 1 x15=00000038 x15:00000037 +76038403ns 1385619 1c0035ea fed79be3 bne x15, x13, -10 x15:00000038 x13:00000100 +76038463ns 1385622 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76038502ns 1385624 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bef8 x14:1c00bec0 x15:00000038 +76038522ns 1385625 1c0035e4 00f70023 sb x15, 0(x14) x15:00000038 x14:1c00bef8 PA:1c00bef8 +76038542ns 1385626 1c0035e8 00178793 addi x15, x15, 1 x15=00000039 x15:00000038 +76038562ns 1385627 1c0035ea fed79be3 bne x15, x13, -10 x15:00000039 x13:00000100 +76038621ns 1385630 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76038661ns 1385632 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bef9 x14:1c00bec0 x15:00000039 +76038680ns 1385633 1c0035e4 00f70023 sb x15, 0(x14) x15:00000039 x14:1c00bef9 PA:1c00bef9 +76038700ns 1385634 1c0035e8 00178793 addi x15, x15, 1 x15=0000003a x15:00000039 +76038720ns 1385635 1c0035ea fed79be3 bne x15, x13, -10 x15:0000003a x13:00000100 +76038779ns 1385638 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76038819ns 1385640 1c0035e2 00f70733 add x14, x14, x15 x14=1c00befa x14:1c00bec0 x15:0000003a +76038839ns 1385641 1c0035e4 00f70023 sb x15, 0(x14) x15:0000003a x14:1c00befa PA:1c00befa +76038859ns 1385642 1c0035e8 00178793 addi x15, x15, 1 x15=0000003b x15:0000003a +76038878ns 1385643 1c0035ea fed79be3 bne x15, x13, -10 x15:0000003b x13:00000100 +76038938ns 1385646 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76038977ns 1385648 1c0035e2 00f70733 add x14, x14, x15 x14=1c00befb x14:1c00bec0 x15:0000003b +76038997ns 1385649 1c0035e4 00f70023 sb x15, 0(x14) x15:0000003b x14:1c00befb PA:1c00befb +76039017ns 1385650 1c0035e8 00178793 addi x15, x15, 1 x15=0000003c x15:0000003b +76039037ns 1385651 1c0035ea fed79be3 bne x15, x13, -10 x15:0000003c x13:00000100 +76039096ns 1385654 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76039136ns 1385656 1c0035e2 00f70733 add x14, x14, x15 x14=1c00befc x14:1c00bec0 x15:0000003c +76039155ns 1385657 1c0035e4 00f70023 sb x15, 0(x14) x15:0000003c x14:1c00befc PA:1c00befc +76039175ns 1385658 1c0035e8 00178793 addi x15, x15, 1 x15=0000003d x15:0000003c +76039195ns 1385659 1c0035ea fed79be3 bne x15, x13, -10 x15:0000003d x13:00000100 +76039254ns 1385662 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76039294ns 1385664 1c0035e2 00f70733 add x14, x14, x15 x14=1c00befd x14:1c00bec0 x15:0000003d +76039314ns 1385665 1c0035e4 00f70023 sb x15, 0(x14) x15:0000003d x14:1c00befd PA:1c00befd +76039334ns 1385666 1c0035e8 00178793 addi x15, x15, 1 x15=0000003e x15:0000003d +76039353ns 1385667 1c0035ea fed79be3 bne x15, x13, -10 x15:0000003e x13:00000100 +76039413ns 1385670 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76039452ns 1385672 1c0035e2 00f70733 add x14, x14, x15 x14=1c00befe x14:1c00bec0 x15:0000003e +76039472ns 1385673 1c0035e4 00f70023 sb x15, 0(x14) x15:0000003e x14:1c00befe PA:1c00befe +76039492ns 1385674 1c0035e8 00178793 addi x15, x15, 1 x15=0000003f x15:0000003e +76039512ns 1385675 1c0035ea fed79be3 bne x15, x13, -10 x15:0000003f x13:00000100 +76039571ns 1385678 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76039611ns 1385680 1c0035e2 00f70733 add x14, x14, x15 x14=1c00beff x14:1c00bec0 x15:0000003f +76039631ns 1385681 1c0035e4 00f70023 sb x15, 0(x14) x15:0000003f x14:1c00beff PA:1c00beff +76039650ns 1385682 1c0035e8 00178793 addi x15, x15, 1 x15=00000040 x15:0000003f +76039670ns 1385683 1c0035ea fed79be3 bne x15, x13, -10 x15:00000040 x13:00000100 +76039729ns 1385686 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76039769ns 1385688 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf00 x14:1c00bec0 x15:00000040 +76039789ns 1385689 1c0035e4 00f70023 sb x15, 0(x14) x15:00000040 x14:1c00bf00 PA:1c00bf00 +76039809ns 1385690 1c0035e8 00178793 addi x15, x15, 1 x15=00000041 x15:00000040 +76039828ns 1385691 1c0035ea fed79be3 bne x15, x13, -10 x15:00000041 x13:00000100 +76039888ns 1385694 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76039927ns 1385696 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf01 x14:1c00bec0 x15:00000041 +76039947ns 1385697 1c0035e4 00f70023 sb x15, 0(x14) x15:00000041 x14:1c00bf01 PA:1c00bf01 +76039967ns 1385698 1c0035e8 00178793 addi x15, x15, 1 x15=00000042 x15:00000041 +76039987ns 1385699 1c0035ea fed79be3 bne x15, x13, -10 x15:00000042 x13:00000100 +76040046ns 1385702 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76040086ns 1385704 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf02 x14:1c00bec0 x15:00000042 +76040106ns 1385705 1c0035e4 00f70023 sb x15, 0(x14) x15:00000042 x14:1c00bf02 PA:1c00bf02 +76040125ns 1385706 1c0035e8 00178793 addi x15, x15, 1 x15=00000043 x15:00000042 +76040145ns 1385707 1c0035ea fed79be3 bne x15, x13, -10 x15:00000043 x13:00000100 +76040204ns 1385710 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76040244ns 1385712 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf03 x14:1c00bec0 x15:00000043 +76040264ns 1385713 1c0035e4 00f70023 sb x15, 0(x14) x15:00000043 x14:1c00bf03 PA:1c00bf03 +76040284ns 1385714 1c0035e8 00178793 addi x15, x15, 1 x15=00000044 x15:00000043 +76040303ns 1385715 1c0035ea fed79be3 bne x15, x13, -10 x15:00000044 x13:00000100 +76040363ns 1385718 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76040402ns 1385720 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf04 x14:1c00bec0 x15:00000044 +76040422ns 1385721 1c0035e4 00f70023 sb x15, 0(x14) x15:00000044 x14:1c00bf04 PA:1c00bf04 +76040442ns 1385722 1c0035e8 00178793 addi x15, x15, 1 x15=00000045 x15:00000044 +76040462ns 1385723 1c0035ea fed79be3 bne x15, x13, -10 x15:00000045 x13:00000100 +76040521ns 1385726 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76040561ns 1385728 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf05 x14:1c00bec0 x15:00000045 +76040581ns 1385729 1c0035e4 00f70023 sb x15, 0(x14) x15:00000045 x14:1c00bf05 PA:1c00bf05 +76040600ns 1385730 1c0035e8 00178793 addi x15, x15, 1 x15=00000046 x15:00000045 +76040620ns 1385731 1c0035ea fed79be3 bne x15, x13, -10 x15:00000046 x13:00000100 +76040679ns 1385734 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76040719ns 1385736 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf06 x14:1c00bec0 x15:00000046 +76040739ns 1385737 1c0035e4 00f70023 sb x15, 0(x14) x15:00000046 x14:1c00bf06 PA:1c00bf06 +76040759ns 1385738 1c0035e8 00178793 addi x15, x15, 1 x15=00000047 x15:00000046 +76040778ns 1385739 1c0035ea fed79be3 bne x15, x13, -10 x15:00000047 x13:00000100 +76040838ns 1385742 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76040877ns 1385744 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf07 x14:1c00bec0 x15:00000047 +76040897ns 1385745 1c0035e4 00f70023 sb x15, 0(x14) x15:00000047 x14:1c00bf07 PA:1c00bf07 +76040917ns 1385746 1c0035e8 00178793 addi x15, x15, 1 x15=00000048 x15:00000047 +76040937ns 1385747 1c0035ea fed79be3 bne x15, x13, -10 x15:00000048 x13:00000100 +76040996ns 1385750 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76041036ns 1385752 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf08 x14:1c00bec0 x15:00000048 +76041056ns 1385753 1c0035e4 00f70023 sb x15, 0(x14) x15:00000048 x14:1c00bf08 PA:1c00bf08 +76041075ns 1385754 1c0035e8 00178793 addi x15, x15, 1 x15=00000049 x15:00000048 +76041095ns 1385755 1c0035ea fed79be3 bne x15, x13, -10 x15:00000049 x13:00000100 +76041154ns 1385758 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76041194ns 1385760 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf09 x14:1c00bec0 x15:00000049 +76041214ns 1385761 1c0035e4 00f70023 sb x15, 0(x14) x15:00000049 x14:1c00bf09 PA:1c00bf09 +76041234ns 1385762 1c0035e8 00178793 addi x15, x15, 1 x15=0000004a x15:00000049 +76041253ns 1385763 1c0035ea fed79be3 bne x15, x13, -10 x15:0000004a x13:00000100 +76041313ns 1385766 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76041352ns 1385768 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf0a x14:1c00bec0 x15:0000004a +76041372ns 1385769 1c0035e4 00f70023 sb x15, 0(x14) x15:0000004a x14:1c00bf0a PA:1c00bf0a +76041392ns 1385770 1c0035e8 00178793 addi x15, x15, 1 x15=0000004b x15:0000004a +76041412ns 1385771 1c0035ea fed79be3 bne x15, x13, -10 x15:0000004b x13:00000100 +76041471ns 1385774 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76041511ns 1385776 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf0b x14:1c00bec0 x15:0000004b +76041531ns 1385777 1c0035e4 00f70023 sb x15, 0(x14) x15:0000004b x14:1c00bf0b PA:1c00bf0b +76041550ns 1385778 1c0035e8 00178793 addi x15, x15, 1 x15=0000004c x15:0000004b +76041570ns 1385779 1c0035ea fed79be3 bne x15, x13, -10 x15:0000004c x13:00000100 +76041629ns 1385782 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76041669ns 1385784 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf0c x14:1c00bec0 x15:0000004c +76041689ns 1385785 1c0035e4 00f70023 sb x15, 0(x14) x15:0000004c x14:1c00bf0c PA:1c00bf0c +76041709ns 1385786 1c0035e8 00178793 addi x15, x15, 1 x15=0000004d x15:0000004c +76041728ns 1385787 1c0035ea fed79be3 bne x15, x13, -10 x15:0000004d x13:00000100 +76041788ns 1385790 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76041827ns 1385792 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf0d x14:1c00bec0 x15:0000004d +76041847ns 1385793 1c0035e4 00f70023 sb x15, 0(x14) x15:0000004d x14:1c00bf0d PA:1c00bf0d +76041867ns 1385794 1c0035e8 00178793 addi x15, x15, 1 x15=0000004e x15:0000004d +76041887ns 1385795 1c0035ea fed79be3 bne x15, x13, -10 x15:0000004e x13:00000100 +76041946ns 1385798 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76041986ns 1385800 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf0e x14:1c00bec0 x15:0000004e +76042006ns 1385801 1c0035e4 00f70023 sb x15, 0(x14) x15:0000004e x14:1c00bf0e PA:1c00bf0e +76042025ns 1385802 1c0035e8 00178793 addi x15, x15, 1 x15=0000004f x15:0000004e +76042045ns 1385803 1c0035ea fed79be3 bne x15, x13, -10 x15:0000004f x13:00000100 +76042105ns 1385806 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76042144ns 1385808 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf0f x14:1c00bec0 x15:0000004f +76042164ns 1385809 1c0035e4 00f70023 sb x15, 0(x14) x15:0000004f x14:1c00bf0f PA:1c00bf0f +76042184ns 1385810 1c0035e8 00178793 addi x15, x15, 1 x15=00000050 x15:0000004f +76042203ns 1385811 1c0035ea fed79be3 bne x15, x13, -10 x15:00000050 x13:00000100 +76042263ns 1385814 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76042302ns 1385816 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf10 x14:1c00bec0 x15:00000050 +76042322ns 1385817 1c0035e4 00f70023 sb x15, 0(x14) x15:00000050 x14:1c00bf10 PA:1c00bf10 +76042342ns 1385818 1c0035e8 00178793 addi x15, x15, 1 x15=00000051 x15:00000050 +76042362ns 1385819 1c0035ea fed79be3 bne x15, x13, -10 x15:00000051 x13:00000100 +76042421ns 1385822 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76042461ns 1385824 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf11 x14:1c00bec0 x15:00000051 +76042481ns 1385825 1c0035e4 00f70023 sb x15, 0(x14) x15:00000051 x14:1c00bf11 PA:1c00bf11 +76042500ns 1385826 1c0035e8 00178793 addi x15, x15, 1 x15=00000052 x15:00000051 +76042520ns 1385827 1c0035ea fed79be3 bne x15, x13, -10 x15:00000052 x13:00000100 +76042580ns 1385830 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76042619ns 1385832 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf12 x14:1c00bec0 x15:00000052 +76042639ns 1385833 1c0035e4 00f70023 sb x15, 0(x14) x15:00000052 x14:1c00bf12 PA:1c00bf12 +76042659ns 1385834 1c0035e8 00178793 addi x15, x15, 1 x15=00000053 x15:00000052 +76042678ns 1385835 1c0035ea fed79be3 bne x15, x13, -10 x15:00000053 x13:00000100 +76042738ns 1385838 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76042777ns 1385840 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf13 x14:1c00bec0 x15:00000053 +76042797ns 1385841 1c0035e4 00f70023 sb x15, 0(x14) x15:00000053 x14:1c00bf13 PA:1c00bf13 +76042817ns 1385842 1c0035e8 00178793 addi x15, x15, 1 x15=00000054 x15:00000053 +76042837ns 1385843 1c0035ea fed79be3 bne x15, x13, -10 x15:00000054 x13:00000100 +76042896ns 1385846 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76042936ns 1385848 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf14 x14:1c00bec0 x15:00000054 +76042956ns 1385849 1c0035e4 00f70023 sb x15, 0(x14) x15:00000054 x14:1c00bf14 PA:1c00bf14 +76042975ns 1385850 1c0035e8 00178793 addi x15, x15, 1 x15=00000055 x15:00000054 +76042995ns 1385851 1c0035ea fed79be3 bne x15, x13, -10 x15:00000055 x13:00000100 +76043055ns 1385854 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76043094ns 1385856 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf15 x14:1c00bec0 x15:00000055 +76043114ns 1385857 1c0035e4 00f70023 sb x15, 0(x14) x15:00000055 x14:1c00bf15 PA:1c00bf15 +76043134ns 1385858 1c0035e8 00178793 addi x15, x15, 1 x15=00000056 x15:00000055 +76043153ns 1385859 1c0035ea fed79be3 bne x15, x13, -10 x15:00000056 x13:00000100 +76043213ns 1385862 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76043252ns 1385864 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf16 x14:1c00bec0 x15:00000056 +76043272ns 1385865 1c0035e4 00f70023 sb x15, 0(x14) x15:00000056 x14:1c00bf16 PA:1c00bf16 +76043292ns 1385866 1c0035e8 00178793 addi x15, x15, 1 x15=00000057 x15:00000056 +76043312ns 1385867 1c0035ea fed79be3 bne x15, x13, -10 x15:00000057 x13:00000100 +76043371ns 1385870 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76043411ns 1385872 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf17 x14:1c00bec0 x15:00000057 +76043431ns 1385873 1c0035e4 00f70023 sb x15, 0(x14) x15:00000057 x14:1c00bf17 PA:1c00bf17 +76043450ns 1385874 1c0035e8 00178793 addi x15, x15, 1 x15=00000058 x15:00000057 +76043470ns 1385875 1c0035ea fed79be3 bne x15, x13, -10 x15:00000058 x13:00000100 +76043530ns 1385878 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76043569ns 1385880 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf18 x14:1c00bec0 x15:00000058 +76043589ns 1385881 1c0035e4 00f70023 sb x15, 0(x14) x15:00000058 x14:1c00bf18 PA:1c00bf18 +76043609ns 1385882 1c0035e8 00178793 addi x15, x15, 1 x15=00000059 x15:00000058 +76043628ns 1385883 1c0035ea fed79be3 bne x15, x13, -10 x15:00000059 x13:00000100 +76043688ns 1385886 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76043727ns 1385888 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf19 x14:1c00bec0 x15:00000059 +76043747ns 1385889 1c0035e4 00f70023 sb x15, 0(x14) x15:00000059 x14:1c00bf19 PA:1c00bf19 +76043767ns 1385890 1c0035e8 00178793 addi x15, x15, 1 x15=0000005a x15:00000059 +76043787ns 1385891 1c0035ea fed79be3 bne x15, x13, -10 x15:0000005a x13:00000100 +76043846ns 1385894 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76043886ns 1385896 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf1a x14:1c00bec0 x15:0000005a +76043906ns 1385897 1c0035e4 00f70023 sb x15, 0(x14) x15:0000005a x14:1c00bf1a PA:1c00bf1a +76043925ns 1385898 1c0035e8 00178793 addi x15, x15, 1 x15=0000005b x15:0000005a +76043945ns 1385899 1c0035ea fed79be3 bne x15, x13, -10 x15:0000005b x13:00000100 +76044005ns 1385902 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76044044ns 1385904 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf1b x14:1c00bec0 x15:0000005b +76044064ns 1385905 1c0035e4 00f70023 sb x15, 0(x14) x15:0000005b x14:1c00bf1b PA:1c00bf1b +76044084ns 1385906 1c0035e8 00178793 addi x15, x15, 1 x15=0000005c x15:0000005b +76044103ns 1385907 1c0035ea fed79be3 bne x15, x13, -10 x15:0000005c x13:00000100 +76044163ns 1385910 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76044202ns 1385912 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf1c x14:1c00bec0 x15:0000005c +76044222ns 1385913 1c0035e4 00f70023 sb x15, 0(x14) x15:0000005c x14:1c00bf1c PA:1c00bf1c +76044242ns 1385914 1c0035e8 00178793 addi x15, x15, 1 x15=0000005d x15:0000005c +76044262ns 1385915 1c0035ea fed79be3 bne x15, x13, -10 x15:0000005d x13:00000100 +76044321ns 1385918 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76044361ns 1385920 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf1d x14:1c00bec0 x15:0000005d +76044381ns 1385921 1c0035e4 00f70023 sb x15, 0(x14) x15:0000005d x14:1c00bf1d PA:1c00bf1d +76044400ns 1385922 1c0035e8 00178793 addi x15, x15, 1 x15=0000005e x15:0000005d +76044420ns 1385923 1c0035ea fed79be3 bne x15, x13, -10 x15:0000005e x13:00000100 +76044480ns 1385926 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76044519ns 1385928 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf1e x14:1c00bec0 x15:0000005e +76044539ns 1385929 1c0035e4 00f70023 sb x15, 0(x14) x15:0000005e x14:1c00bf1e PA:1c00bf1e +76044559ns 1385930 1c0035e8 00178793 addi x15, x15, 1 x15=0000005f x15:0000005e +76044579ns 1385931 1c0035ea fed79be3 bne x15, x13, -10 x15:0000005f x13:00000100 +76044638ns 1385934 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76044677ns 1385936 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf1f x14:1c00bec0 x15:0000005f +76044697ns 1385937 1c0035e4 00f70023 sb x15, 0(x14) x15:0000005f x14:1c00bf1f PA:1c00bf1f +76044717ns 1385938 1c0035e8 00178793 addi x15, x15, 1 x15=00000060 x15:0000005f +76044737ns 1385939 1c0035ea fed79be3 bne x15, x13, -10 x15:00000060 x13:00000100 +76044796ns 1385942 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76044836ns 1385944 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf20 x14:1c00bec0 x15:00000060 +76044856ns 1385945 1c0035e4 00f70023 sb x15, 0(x14) x15:00000060 x14:1c00bf20 PA:1c00bf20 +76044875ns 1385946 1c0035e8 00178793 addi x15, x15, 1 x15=00000061 x15:00000060 +76044895ns 1385947 1c0035ea fed79be3 bne x15, x13, -10 x15:00000061 x13:00000100 +76044955ns 1385950 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76044994ns 1385952 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf21 x14:1c00bec0 x15:00000061 +76045014ns 1385953 1c0035e4 00f70023 sb x15, 0(x14) x15:00000061 x14:1c00bf21 PA:1c00bf21 +76045034ns 1385954 1c0035e8 00178793 addi x15, x15, 1 x15=00000062 x15:00000061 +76045054ns 1385955 1c0035ea fed79be3 bne x15, x13, -10 x15:00000062 x13:00000100 +76045113ns 1385958 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76045152ns 1385960 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf22 x14:1c00bec0 x15:00000062 +76045172ns 1385961 1c0035e4 00f70023 sb x15, 0(x14) x15:00000062 x14:1c00bf22 PA:1c00bf22 +76045192ns 1385962 1c0035e8 00178793 addi x15, x15, 1 x15=00000063 x15:00000062 +76045212ns 1385963 1c0035ea fed79be3 bne x15, x13, -10 x15:00000063 x13:00000100 +76045271ns 1385966 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76045311ns 1385968 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf23 x14:1c00bec0 x15:00000063 +76045331ns 1385969 1c0035e4 00f70023 sb x15, 0(x14) x15:00000063 x14:1c00bf23 PA:1c00bf23 +76045350ns 1385970 1c0035e8 00178793 addi x15, x15, 1 x15=00000064 x15:00000063 +76045370ns 1385971 1c0035ea fed79be3 bne x15, x13, -10 x15:00000064 x13:00000100 +76045430ns 1385974 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76045469ns 1385976 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf24 x14:1c00bec0 x15:00000064 +76045489ns 1385977 1c0035e4 00f70023 sb x15, 0(x14) x15:00000064 x14:1c00bf24 PA:1c00bf24 +76045509ns 1385978 1c0035e8 00178793 addi x15, x15, 1 x15=00000065 x15:00000064 +76045529ns 1385979 1c0035ea fed79be3 bne x15, x13, -10 x15:00000065 x13:00000100 +76045588ns 1385982 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76045627ns 1385984 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf25 x14:1c00bec0 x15:00000065 +76045647ns 1385985 1c0035e4 00f70023 sb x15, 0(x14) x15:00000065 x14:1c00bf25 PA:1c00bf25 +76045667ns 1385986 1c0035e8 00178793 addi x15, x15, 1 x15=00000066 x15:00000065 +76045687ns 1385987 1c0035ea fed79be3 bne x15, x13, -10 x15:00000066 x13:00000100 +76045746ns 1385990 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76045786ns 1385992 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf26 x14:1c00bec0 x15:00000066 +76045806ns 1385993 1c0035e4 00f70023 sb x15, 0(x14) x15:00000066 x14:1c00bf26 PA:1c00bf26 +76045825ns 1385994 1c0035e8 00178793 addi x15, x15, 1 x15=00000067 x15:00000066 +76045845ns 1385995 1c0035ea fed79be3 bne x15, x13, -10 x15:00000067 x13:00000100 +76045905ns 1385998 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76045944ns 1386000 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf27 x14:1c00bec0 x15:00000067 +76045964ns 1386001 1c0035e4 00f70023 sb x15, 0(x14) x15:00000067 x14:1c00bf27 PA:1c00bf27 +76045984ns 1386002 1c0035e8 00178793 addi x15, x15, 1 x15=00000068 x15:00000067 +76046004ns 1386003 1c0035ea fed79be3 bne x15, x13, -10 x15:00000068 x13:00000100 +76046063ns 1386006 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76046102ns 1386008 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf28 x14:1c00bec0 x15:00000068 +76046122ns 1386009 1c0035e4 00f70023 sb x15, 0(x14) x15:00000068 x14:1c00bf28 PA:1c00bf28 +76046142ns 1386010 1c0035e8 00178793 addi x15, x15, 1 x15=00000069 x15:00000068 +76046162ns 1386011 1c0035ea fed79be3 bne x15, x13, -10 x15:00000069 x13:00000100 +76046221ns 1386014 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76046261ns 1386016 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf29 x14:1c00bec0 x15:00000069 +76046281ns 1386017 1c0035e4 00f70023 sb x15, 0(x14) x15:00000069 x14:1c00bf29 PA:1c00bf29 +76046300ns 1386018 1c0035e8 00178793 addi x15, x15, 1 x15=0000006a x15:00000069 +76046320ns 1386019 1c0035ea fed79be3 bne x15, x13, -10 x15:0000006a x13:00000100 +76046380ns 1386022 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76046419ns 1386024 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf2a x14:1c00bec0 x15:0000006a +76046439ns 1386025 1c0035e4 00f70023 sb x15, 0(x14) x15:0000006a x14:1c00bf2a PA:1c00bf2a +76046459ns 1386026 1c0035e8 00178793 addi x15, x15, 1 x15=0000006b x15:0000006a +76046479ns 1386027 1c0035ea fed79be3 bne x15, x13, -10 x15:0000006b x13:00000100 +76046538ns 1386030 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76046577ns 1386032 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf2b x14:1c00bec0 x15:0000006b +76046597ns 1386033 1c0035e4 00f70023 sb x15, 0(x14) x15:0000006b x14:1c00bf2b PA:1c00bf2b +76046617ns 1386034 1c0035e8 00178793 addi x15, x15, 1 x15=0000006c x15:0000006b +76046637ns 1386035 1c0035ea fed79be3 bne x15, x13, -10 x15:0000006c x13:00000100 +76046696ns 1386038 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76046736ns 1386040 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf2c x14:1c00bec0 x15:0000006c +76046756ns 1386041 1c0035e4 00f70023 sb x15, 0(x14) x15:0000006c x14:1c00bf2c PA:1c00bf2c +76046775ns 1386042 1c0035e8 00178793 addi x15, x15, 1 x15=0000006d x15:0000006c +76046795ns 1386043 1c0035ea fed79be3 bne x15, x13, -10 x15:0000006d x13:00000100 +76046855ns 1386046 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76046894ns 1386048 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf2d x14:1c00bec0 x15:0000006d +76046914ns 1386049 1c0035e4 00f70023 sb x15, 0(x14) x15:0000006d x14:1c00bf2d PA:1c00bf2d +76046934ns 1386050 1c0035e8 00178793 addi x15, x15, 1 x15=0000006e x15:0000006d +76046954ns 1386051 1c0035ea fed79be3 bne x15, x13, -10 x15:0000006e x13:00000100 +76047013ns 1386054 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76047053ns 1386056 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf2e x14:1c00bec0 x15:0000006e +76047072ns 1386057 1c0035e4 00f70023 sb x15, 0(x14) x15:0000006e x14:1c00bf2e PA:1c00bf2e +76047092ns 1386058 1c0035e8 00178793 addi x15, x15, 1 x15=0000006f x15:0000006e +76047112ns 1386059 1c0035ea fed79be3 bne x15, x13, -10 x15:0000006f x13:00000100 +76047171ns 1386062 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76047211ns 1386064 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf2f x14:1c00bec0 x15:0000006f +76047231ns 1386065 1c0035e4 00f70023 sb x15, 0(x14) x15:0000006f x14:1c00bf2f PA:1c00bf2f +76047250ns 1386066 1c0035e8 00178793 addi x15, x15, 1 x15=00000070 x15:0000006f +76047270ns 1386067 1c0035ea fed79be3 bne x15, x13, -10 x15:00000070 x13:00000100 +76047330ns 1386070 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76047369ns 1386072 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf30 x14:1c00bec0 x15:00000070 +76047389ns 1386073 1c0035e4 00f70023 sb x15, 0(x14) x15:00000070 x14:1c00bf30 PA:1c00bf30 +76047409ns 1386074 1c0035e8 00178793 addi x15, x15, 1 x15=00000071 x15:00000070 +76047429ns 1386075 1c0035ea fed79be3 bne x15, x13, -10 x15:00000071 x13:00000100 +76047488ns 1386078 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76047528ns 1386080 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf31 x14:1c00bec0 x15:00000071 +76047547ns 1386081 1c0035e4 00f70023 sb x15, 0(x14) x15:00000071 x14:1c00bf31 PA:1c00bf31 +76047567ns 1386082 1c0035e8 00178793 addi x15, x15, 1 x15=00000072 x15:00000071 +76047587ns 1386083 1c0035ea fed79be3 bne x15, x13, -10 x15:00000072 x13:00000100 +76047646ns 1386086 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76047686ns 1386088 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf32 x14:1c00bec0 x15:00000072 +76047706ns 1386089 1c0035e4 00f70023 sb x15, 0(x14) x15:00000072 x14:1c00bf32 PA:1c00bf32 +76047725ns 1386090 1c0035e8 00178793 addi x15, x15, 1 x15=00000073 x15:00000072 +76047745ns 1386091 1c0035ea fed79be3 bne x15, x13, -10 x15:00000073 x13:00000100 +76047805ns 1386094 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76047844ns 1386096 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf33 x14:1c00bec0 x15:00000073 +76047864ns 1386097 1c0035e4 00f70023 sb x15, 0(x14) x15:00000073 x14:1c00bf33 PA:1c00bf33 +76047884ns 1386098 1c0035e8 00178793 addi x15, x15, 1 x15=00000074 x15:00000073 +76047904ns 1386099 1c0035ea fed79be3 bne x15, x13, -10 x15:00000074 x13:00000100 +76047963ns 1386102 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76048003ns 1386104 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf34 x14:1c00bec0 x15:00000074 +76048022ns 1386105 1c0035e4 00f70023 sb x15, 0(x14) x15:00000074 x14:1c00bf34 PA:1c00bf34 +76048042ns 1386106 1c0035e8 00178793 addi x15, x15, 1 x15=00000075 x15:00000074 +76048062ns 1386107 1c0035ea fed79be3 bne x15, x13, -10 x15:00000075 x13:00000100 +76048121ns 1386110 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76048161ns 1386112 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf35 x14:1c00bec0 x15:00000075 +76048181ns 1386113 1c0035e4 00f70023 sb x15, 0(x14) x15:00000075 x14:1c00bf35 PA:1c00bf35 +76048200ns 1386114 1c0035e8 00178793 addi x15, x15, 1 x15=00000076 x15:00000075 +76048220ns 1386115 1c0035ea fed79be3 bne x15, x13, -10 x15:00000076 x13:00000100 +76048280ns 1386118 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76048319ns 1386120 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf36 x14:1c00bec0 x15:00000076 +76048339ns 1386121 1c0035e4 00f70023 sb x15, 0(x14) x15:00000076 x14:1c00bf36 PA:1c00bf36 +76048359ns 1386122 1c0035e8 00178793 addi x15, x15, 1 x15=00000077 x15:00000076 +76048379ns 1386123 1c0035ea fed79be3 bne x15, x13, -10 x15:00000077 x13:00000100 +76048438ns 1386126 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76048478ns 1386128 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf37 x14:1c00bec0 x15:00000077 +76048497ns 1386129 1c0035e4 00f70023 sb x15, 0(x14) x15:00000077 x14:1c00bf37 PA:1c00bf37 +76048517ns 1386130 1c0035e8 00178793 addi x15, x15, 1 x15=00000078 x15:00000077 +76048537ns 1386131 1c0035ea fed79be3 bne x15, x13, -10 x15:00000078 x13:00000100 +76048596ns 1386134 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76048636ns 1386136 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf38 x14:1c00bec0 x15:00000078 +76048656ns 1386137 1c0035e4 00f70023 sb x15, 0(x14) x15:00000078 x14:1c00bf38 PA:1c00bf38 +76048675ns 1386138 1c0035e8 00178793 addi x15, x15, 1 x15=00000079 x15:00000078 +76048695ns 1386139 1c0035ea fed79be3 bne x15, x13, -10 x15:00000079 x13:00000100 +76048755ns 1386142 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76048794ns 1386144 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf39 x14:1c00bec0 x15:00000079 +76048814ns 1386145 1c0035e4 00f70023 sb x15, 0(x14) x15:00000079 x14:1c00bf39 PA:1c00bf39 +76048834ns 1386146 1c0035e8 00178793 addi x15, x15, 1 x15=0000007a x15:00000079 +76048854ns 1386147 1c0035ea fed79be3 bne x15, x13, -10 x15:0000007a x13:00000100 +76048913ns 1386150 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76048953ns 1386152 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf3a x14:1c00bec0 x15:0000007a +76048972ns 1386153 1c0035e4 00f70023 sb x15, 0(x14) x15:0000007a x14:1c00bf3a PA:1c00bf3a +76048992ns 1386154 1c0035e8 00178793 addi x15, x15, 1 x15=0000007b x15:0000007a +76049012ns 1386155 1c0035ea fed79be3 bne x15, x13, -10 x15:0000007b x13:00000100 +76049071ns 1386158 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76049111ns 1386160 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf3b x14:1c00bec0 x15:0000007b +76049131ns 1386161 1c0035e4 00f70023 sb x15, 0(x14) x15:0000007b x14:1c00bf3b PA:1c00bf3b +76049150ns 1386162 1c0035e8 00178793 addi x15, x15, 1 x15=0000007c x15:0000007b +76049170ns 1386163 1c0035ea fed79be3 bne x15, x13, -10 x15:0000007c x13:00000100 +76049230ns 1386166 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76049269ns 1386168 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf3c x14:1c00bec0 x15:0000007c +76049289ns 1386169 1c0035e4 00f70023 sb x15, 0(x14) x15:0000007c x14:1c00bf3c PA:1c00bf3c +76049309ns 1386170 1c0035e8 00178793 addi x15, x15, 1 x15=0000007d x15:0000007c +76049329ns 1386171 1c0035ea fed79be3 bne x15, x13, -10 x15:0000007d x13:00000100 +76049388ns 1386174 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76049428ns 1386176 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf3d x14:1c00bec0 x15:0000007d +76049447ns 1386177 1c0035e4 00f70023 sb x15, 0(x14) x15:0000007d x14:1c00bf3d PA:1c00bf3d +76049467ns 1386178 1c0035e8 00178793 addi x15, x15, 1 x15=0000007e x15:0000007d +76049487ns 1386179 1c0035ea fed79be3 bne x15, x13, -10 x15:0000007e x13:00000100 +76049546ns 1386182 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76049586ns 1386184 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf3e x14:1c00bec0 x15:0000007e +76049606ns 1386185 1c0035e4 00f70023 sb x15, 0(x14) x15:0000007e x14:1c00bf3e PA:1c00bf3e +76049625ns 1386186 1c0035e8 00178793 addi x15, x15, 1 x15=0000007f x15:0000007e +76049645ns 1386187 1c0035ea fed79be3 bne x15, x13, -10 x15:0000007f x13:00000100 +76049705ns 1386190 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76049744ns 1386192 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf3f x14:1c00bec0 x15:0000007f +76049764ns 1386193 1c0035e4 00f70023 sb x15, 0(x14) x15:0000007f x14:1c00bf3f PA:1c00bf3f +76049784ns 1386194 1c0035e8 00178793 addi x15, x15, 1 x15=00000080 x15:0000007f +76049804ns 1386195 1c0035ea fed79be3 bne x15, x13, -10 x15:00000080 x13:00000100 +76049863ns 1386198 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76049903ns 1386200 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf40 x14:1c00bec0 x15:00000080 +76049922ns 1386201 1c0035e4 00f70023 sb x15, 0(x14) x15:00000080 x14:1c00bf40 PA:1c00bf40 +76049942ns 1386202 1c0035e8 00178793 addi x15, x15, 1 x15=00000081 x15:00000080 +76049962ns 1386203 1c0035ea fed79be3 bne x15, x13, -10 x15:00000081 x13:00000100 +76050021ns 1386206 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76050061ns 1386208 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf41 x14:1c00bec0 x15:00000081 +76050081ns 1386209 1c0035e4 00f70023 sb x15, 0(x14) x15:00000081 x14:1c00bf41 PA:1c00bf41 +76050100ns 1386210 1c0035e8 00178793 addi x15, x15, 1 x15=00000082 x15:00000081 +76050120ns 1386211 1c0035ea fed79be3 bne x15, x13, -10 x15:00000082 x13:00000100 +76050180ns 1386214 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76050219ns 1386216 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf42 x14:1c00bec0 x15:00000082 +76050239ns 1386217 1c0035e4 00f70023 sb x15, 0(x14) x15:00000082 x14:1c00bf42 PA:1c00bf42 +76050259ns 1386218 1c0035e8 00178793 addi x15, x15, 1 x15=00000083 x15:00000082 +76050279ns 1386219 1c0035ea fed79be3 bne x15, x13, -10 x15:00000083 x13:00000100 +76050338ns 1386222 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76050378ns 1386224 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf43 x14:1c00bec0 x15:00000083 +76050397ns 1386225 1c0035e4 00f70023 sb x15, 0(x14) x15:00000083 x14:1c00bf43 PA:1c00bf43 +76050417ns 1386226 1c0035e8 00178793 addi x15, x15, 1 x15=00000084 x15:00000083 +76050437ns 1386227 1c0035ea fed79be3 bne x15, x13, -10 x15:00000084 x13:00000100 +76050496ns 1386230 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76050536ns 1386232 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf44 x14:1c00bec0 x15:00000084 +76050556ns 1386233 1c0035e4 00f70023 sb x15, 0(x14) x15:00000084 x14:1c00bf44 PA:1c00bf44 +76050575ns 1386234 1c0035e8 00178793 addi x15, x15, 1 x15=00000085 x15:00000084 +76050595ns 1386235 1c0035ea fed79be3 bne x15, x13, -10 x15:00000085 x13:00000100 +76050655ns 1386238 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76050694ns 1386240 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf45 x14:1c00bec0 x15:00000085 +76050714ns 1386241 1c0035e4 00f70023 sb x15, 0(x14) x15:00000085 x14:1c00bf45 PA:1c00bf45 +76050734ns 1386242 1c0035e8 00178793 addi x15, x15, 1 x15=00000086 x15:00000085 +76050754ns 1386243 1c0035ea fed79be3 bne x15, x13, -10 x15:00000086 x13:00000100 +76050813ns 1386246 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76050853ns 1386248 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf46 x14:1c00bec0 x15:00000086 +76050872ns 1386249 1c0035e4 00f70023 sb x15, 0(x14) x15:00000086 x14:1c00bf46 PA:1c00bf46 +76050892ns 1386250 1c0035e8 00178793 addi x15, x15, 1 x15=00000087 x15:00000086 +76050912ns 1386251 1c0035ea fed79be3 bne x15, x13, -10 x15:00000087 x13:00000100 +76050971ns 1386254 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76051011ns 1386256 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf47 x14:1c00bec0 x15:00000087 +76051031ns 1386257 1c0035e4 00f70023 sb x15, 0(x14) x15:00000087 x14:1c00bf47 PA:1c00bf47 +76051050ns 1386258 1c0035e8 00178793 addi x15, x15, 1 x15=00000088 x15:00000087 +76051070ns 1386259 1c0035ea fed79be3 bne x15, x13, -10 x15:00000088 x13:00000100 +76051130ns 1386262 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76051169ns 1386264 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf48 x14:1c00bec0 x15:00000088 +76051189ns 1386265 1c0035e4 00f70023 sb x15, 0(x14) x15:00000088 x14:1c00bf48 PA:1c00bf48 +76051209ns 1386266 1c0035e8 00178793 addi x15, x15, 1 x15=00000089 x15:00000088 +76051229ns 1386267 1c0035ea fed79be3 bne x15, x13, -10 x15:00000089 x13:00000100 +76051288ns 1386270 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76051328ns 1386272 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf49 x14:1c00bec0 x15:00000089 +76051347ns 1386273 1c0035e4 00f70023 sb x15, 0(x14) x15:00000089 x14:1c00bf49 PA:1c00bf49 +76051367ns 1386274 1c0035e8 00178793 addi x15, x15, 1 x15=0000008a x15:00000089 +76051387ns 1386275 1c0035ea fed79be3 bne x15, x13, -10 x15:0000008a x13:00000100 +76051446ns 1386278 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76051486ns 1386280 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf4a x14:1c00bec0 x15:0000008a +76051506ns 1386281 1c0035e4 00f70023 sb x15, 0(x14) x15:0000008a x14:1c00bf4a PA:1c00bf4a +76051525ns 1386282 1c0035e8 00178793 addi x15, x15, 1 x15=0000008b x15:0000008a +76051545ns 1386283 1c0035ea fed79be3 bne x15, x13, -10 x15:0000008b x13:00000100 +76051605ns 1386286 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76051644ns 1386288 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf4b x14:1c00bec0 x15:0000008b +76051664ns 1386289 1c0035e4 00f70023 sb x15, 0(x14) x15:0000008b x14:1c00bf4b PA:1c00bf4b +76051684ns 1386290 1c0035e8 00178793 addi x15, x15, 1 x15=0000008c x15:0000008b +76051704ns 1386291 1c0035ea fed79be3 bne x15, x13, -10 x15:0000008c x13:00000100 +76051763ns 1386294 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76051803ns 1386296 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf4c x14:1c00bec0 x15:0000008c +76051822ns 1386297 1c0035e4 00f70023 sb x15, 0(x14) x15:0000008c x14:1c00bf4c PA:1c00bf4c +76051842ns 1386298 1c0035e8 00178793 addi x15, x15, 1 x15=0000008d x15:0000008c +76051862ns 1386299 1c0035ea fed79be3 bne x15, x13, -10 x15:0000008d x13:00000100 +76051921ns 1386302 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76051961ns 1386304 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf4d x14:1c00bec0 x15:0000008d +76051981ns 1386305 1c0035e4 00f70023 sb x15, 0(x14) x15:0000008d x14:1c00bf4d PA:1c00bf4d +76052001ns 1386306 1c0035e8 00178793 addi x15, x15, 1 x15=0000008e x15:0000008d +76052020ns 1386307 1c0035ea fed79be3 bne x15, x13, -10 x15:0000008e x13:00000100 +76052080ns 1386310 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76052119ns 1386312 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf4e x14:1c00bec0 x15:0000008e +76052139ns 1386313 1c0035e4 00f70023 sb x15, 0(x14) x15:0000008e x14:1c00bf4e PA:1c00bf4e +76052159ns 1386314 1c0035e8 00178793 addi x15, x15, 1 x15=0000008f x15:0000008e +76052179ns 1386315 1c0035ea fed79be3 bne x15, x13, -10 x15:0000008f x13:00000100 +76052238ns 1386318 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76052278ns 1386320 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf4f x14:1c00bec0 x15:0000008f +76052297ns 1386321 1c0035e4 00f70023 sb x15, 0(x14) x15:0000008f x14:1c00bf4f PA:1c00bf4f +76052317ns 1386322 1c0035e8 00178793 addi x15, x15, 1 x15=00000090 x15:0000008f +76052337ns 1386323 1c0035ea fed79be3 bne x15, x13, -10 x15:00000090 x13:00000100 +76052396ns 1386326 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76052436ns 1386328 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf50 x14:1c00bec0 x15:00000090 +76052456ns 1386329 1c0035e4 00f70023 sb x15, 0(x14) x15:00000090 x14:1c00bf50 PA:1c00bf50 +76052476ns 1386330 1c0035e8 00178793 addi x15, x15, 1 x15=00000091 x15:00000090 +76052495ns 1386331 1c0035ea fed79be3 bne x15, x13, -10 x15:00000091 x13:00000100 +76052555ns 1386334 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76052594ns 1386336 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf51 x14:1c00bec0 x15:00000091 +76052614ns 1386337 1c0035e4 00f70023 sb x15, 0(x14) x15:00000091 x14:1c00bf51 PA:1c00bf51 +76052634ns 1386338 1c0035e8 00178793 addi x15, x15, 1 x15=00000092 x15:00000091 +76052654ns 1386339 1c0035ea fed79be3 bne x15, x13, -10 x15:00000092 x13:00000100 +76052713ns 1386342 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76052753ns 1386344 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf52 x14:1c00bec0 x15:00000092 +76052772ns 1386345 1c0035e4 00f70023 sb x15, 0(x14) x15:00000092 x14:1c00bf52 PA:1c00bf52 +76052792ns 1386346 1c0035e8 00178793 addi x15, x15, 1 x15=00000093 x15:00000092 +76052812ns 1386347 1c0035ea fed79be3 bne x15, x13, -10 x15:00000093 x13:00000100 +76052871ns 1386350 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76052911ns 1386352 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf53 x14:1c00bec0 x15:00000093 +76052931ns 1386353 1c0035e4 00f70023 sb x15, 0(x14) x15:00000093 x14:1c00bf53 PA:1c00bf53 +76052951ns 1386354 1c0035e8 00178793 addi x15, x15, 1 x15=00000094 x15:00000093 +76052970ns 1386355 1c0035ea fed79be3 bne x15, x13, -10 x15:00000094 x13:00000100 +76053030ns 1386358 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76053069ns 1386360 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf54 x14:1c00bec0 x15:00000094 +76053089ns 1386361 1c0035e4 00f70023 sb x15, 0(x14) x15:00000094 x14:1c00bf54 PA:1c00bf54 +76053109ns 1386362 1c0035e8 00178793 addi x15, x15, 1 x15=00000095 x15:00000094 +76053129ns 1386363 1c0035ea fed79be3 bne x15, x13, -10 x15:00000095 x13:00000100 +76053188ns 1386366 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76053228ns 1386368 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf55 x14:1c00bec0 x15:00000095 +76053247ns 1386369 1c0035e4 00f70023 sb x15, 0(x14) x15:00000095 x14:1c00bf55 PA:1c00bf55 +76053267ns 1386370 1c0035e8 00178793 addi x15, x15, 1 x15=00000096 x15:00000095 +76053287ns 1386371 1c0035ea fed79be3 bne x15, x13, -10 x15:00000096 x13:00000100 +76053346ns 1386374 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76053386ns 1386376 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf56 x14:1c00bec0 x15:00000096 +76053406ns 1386377 1c0035e4 00f70023 sb x15, 0(x14) x15:00000096 x14:1c00bf56 PA:1c00bf56 +76053426ns 1386378 1c0035e8 00178793 addi x15, x15, 1 x15=00000097 x15:00000096 +76053445ns 1386379 1c0035ea fed79be3 bne x15, x13, -10 x15:00000097 x13:00000100 +76053505ns 1386382 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76053544ns 1386384 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf57 x14:1c00bec0 x15:00000097 +76053564ns 1386385 1c0035e4 00f70023 sb x15, 0(x14) x15:00000097 x14:1c00bf57 PA:1c00bf57 +76053584ns 1386386 1c0035e8 00178793 addi x15, x15, 1 x15=00000098 x15:00000097 +76053604ns 1386387 1c0035ea fed79be3 bne x15, x13, -10 x15:00000098 x13:00000100 +76053663ns 1386390 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76053703ns 1386392 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf58 x14:1c00bec0 x15:00000098 +76053722ns 1386393 1c0035e4 00f70023 sb x15, 0(x14) x15:00000098 x14:1c00bf58 PA:1c00bf58 +76053742ns 1386394 1c0035e8 00178793 addi x15, x15, 1 x15=00000099 x15:00000098 +76053762ns 1386395 1c0035ea fed79be3 bne x15, x13, -10 x15:00000099 x13:00000100 +76053821ns 1386398 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76053861ns 1386400 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf59 x14:1c00bec0 x15:00000099 +76053881ns 1386401 1c0035e4 00f70023 sb x15, 0(x14) x15:00000099 x14:1c00bf59 PA:1c00bf59 +76053901ns 1386402 1c0035e8 00178793 addi x15, x15, 1 x15=0000009a x15:00000099 +76053920ns 1386403 1c0035ea fed79be3 bne x15, x13, -10 x15:0000009a x13:00000100 +76053980ns 1386406 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76054019ns 1386408 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf5a x14:1c00bec0 x15:0000009a +76054039ns 1386409 1c0035e4 00f70023 sb x15, 0(x14) x15:0000009a x14:1c00bf5a PA:1c00bf5a +76054059ns 1386410 1c0035e8 00178793 addi x15, x15, 1 x15=0000009b x15:0000009a +76054079ns 1386411 1c0035ea fed79be3 bne x15, x13, -10 x15:0000009b x13:00000100 +76054138ns 1386414 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76054178ns 1386416 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf5b x14:1c00bec0 x15:0000009b +76054197ns 1386417 1c0035e4 00f70023 sb x15, 0(x14) x15:0000009b x14:1c00bf5b PA:1c00bf5b +76054217ns 1386418 1c0035e8 00178793 addi x15, x15, 1 x15=0000009c x15:0000009b +76054237ns 1386419 1c0035ea fed79be3 bne x15, x13, -10 x15:0000009c x13:00000100 +76054296ns 1386422 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76054336ns 1386424 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf5c x14:1c00bec0 x15:0000009c +76054356ns 1386425 1c0035e4 00f70023 sb x15, 0(x14) x15:0000009c x14:1c00bf5c PA:1c00bf5c +76054376ns 1386426 1c0035e8 00178793 addi x15, x15, 1 x15=0000009d x15:0000009c +76054395ns 1386427 1c0035ea fed79be3 bne x15, x13, -10 x15:0000009d x13:00000100 +76054455ns 1386430 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76054494ns 1386432 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf5d x14:1c00bec0 x15:0000009d +76054514ns 1386433 1c0035e4 00f70023 sb x15, 0(x14) x15:0000009d x14:1c00bf5d PA:1c00bf5d +76054534ns 1386434 1c0035e8 00178793 addi x15, x15, 1 x15=0000009e x15:0000009d +76054554ns 1386435 1c0035ea fed79be3 bne x15, x13, -10 x15:0000009e x13:00000100 +76054613ns 1386438 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76054653ns 1386440 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf5e x14:1c00bec0 x15:0000009e +76054672ns 1386441 1c0035e4 00f70023 sb x15, 0(x14) x15:0000009e x14:1c00bf5e PA:1c00bf5e +76054692ns 1386442 1c0035e8 00178793 addi x15, x15, 1 x15=0000009f x15:0000009e +76054712ns 1386443 1c0035ea fed79be3 bne x15, x13, -10 x15:0000009f x13:00000100 +76054771ns 1386446 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76054811ns 1386448 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf5f x14:1c00bec0 x15:0000009f +76054831ns 1386449 1c0035e4 00f70023 sb x15, 0(x14) x15:0000009f x14:1c00bf5f PA:1c00bf5f +76054851ns 1386450 1c0035e8 00178793 addi x15, x15, 1 x15=000000a0 x15:0000009f +76054870ns 1386451 1c0035ea fed79be3 bne x15, x13, -10 x15:000000a0 x13:00000100 +76054930ns 1386454 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76054969ns 1386456 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf60 x14:1c00bec0 x15:000000a0 +76054989ns 1386457 1c0035e4 00f70023 sb x15, 0(x14) x15:000000a0 x14:1c00bf60 PA:1c00bf60 +76055009ns 1386458 1c0035e8 00178793 addi x15, x15, 1 x15=000000a1 x15:000000a0 +76055029ns 1386459 1c0035ea fed79be3 bne x15, x13, -10 x15:000000a1 x13:00000100 +76055088ns 1386462 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76055128ns 1386464 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf61 x14:1c00bec0 x15:000000a1 +76055147ns 1386465 1c0035e4 00f70023 sb x15, 0(x14) x15:000000a1 x14:1c00bf61 PA:1c00bf61 +76055167ns 1386466 1c0035e8 00178793 addi x15, x15, 1 x15=000000a2 x15:000000a1 +76055187ns 1386467 1c0035ea fed79be3 bne x15, x13, -10 x15:000000a2 x13:00000100 +76055246ns 1386470 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76055286ns 1386472 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf62 x14:1c00bec0 x15:000000a2 +76055306ns 1386473 1c0035e4 00f70023 sb x15, 0(x14) x15:000000a2 x14:1c00bf62 PA:1c00bf62 +76055326ns 1386474 1c0035e8 00178793 addi x15, x15, 1 x15=000000a3 x15:000000a2 +76055345ns 1386475 1c0035ea fed79be3 bne x15, x13, -10 x15:000000a3 x13:00000100 +76055405ns 1386478 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76055444ns 1386480 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf63 x14:1c00bec0 x15:000000a3 +76055464ns 1386481 1c0035e4 00f70023 sb x15, 0(x14) x15:000000a3 x14:1c00bf63 PA:1c00bf63 +76055484ns 1386482 1c0035e8 00178793 addi x15, x15, 1 x15=000000a4 x15:000000a3 +76055504ns 1386483 1c0035ea fed79be3 bne x15, x13, -10 x15:000000a4 x13:00000100 +76055563ns 1386486 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76055603ns 1386488 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf64 x14:1c00bec0 x15:000000a4 +76055622ns 1386489 1c0035e4 00f70023 sb x15, 0(x14) x15:000000a4 x14:1c00bf64 PA:1c00bf64 +76055642ns 1386490 1c0035e8 00178793 addi x15, x15, 1 x15=000000a5 x15:000000a4 +76055662ns 1386491 1c0035ea fed79be3 bne x15, x13, -10 x15:000000a5 x13:00000100 +76055721ns 1386494 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76055761ns 1386496 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf65 x14:1c00bec0 x15:000000a5 +76055781ns 1386497 1c0035e4 00f70023 sb x15, 0(x14) x15:000000a5 x14:1c00bf65 PA:1c00bf65 +76055801ns 1386498 1c0035e8 00178793 addi x15, x15, 1 x15=000000a6 x15:000000a5 +76055820ns 1386499 1c0035ea fed79be3 bne x15, x13, -10 x15:000000a6 x13:00000100 +76055880ns 1386502 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76055919ns 1386504 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf66 x14:1c00bec0 x15:000000a6 +76055939ns 1386505 1c0035e4 00f70023 sb x15, 0(x14) x15:000000a6 x14:1c00bf66 PA:1c00bf66 +76055959ns 1386506 1c0035e8 00178793 addi x15, x15, 1 x15=000000a7 x15:000000a6 +76055979ns 1386507 1c0035ea fed79be3 bne x15, x13, -10 x15:000000a7 x13:00000100 +76056038ns 1386510 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76056078ns 1386512 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf67 x14:1c00bec0 x15:000000a7 +76056097ns 1386513 1c0035e4 00f70023 sb x15, 0(x14) x15:000000a7 x14:1c00bf67 PA:1c00bf67 +76056117ns 1386514 1c0035e8 00178793 addi x15, x15, 1 x15=000000a8 x15:000000a7 +76056137ns 1386515 1c0035ea fed79be3 bne x15, x13, -10 x15:000000a8 x13:00000100 +76056196ns 1386518 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76056236ns 1386520 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf68 x14:1c00bec0 x15:000000a8 +76056256ns 1386521 1c0035e4 00f70023 sb x15, 0(x14) x15:000000a8 x14:1c00bf68 PA:1c00bf68 +76056276ns 1386522 1c0035e8 00178793 addi x15, x15, 1 x15=000000a9 x15:000000a8 +76056295ns 1386523 1c0035ea fed79be3 bne x15, x13, -10 x15:000000a9 x13:00000100 +76056355ns 1386526 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76056394ns 1386528 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf69 x14:1c00bec0 x15:000000a9 +76056414ns 1386529 1c0035e4 00f70023 sb x15, 0(x14) x15:000000a9 x14:1c00bf69 PA:1c00bf69 +76056434ns 1386530 1c0035e8 00178793 addi x15, x15, 1 x15=000000aa x15:000000a9 +76056454ns 1386531 1c0035ea fed79be3 bne x15, x13, -10 x15:000000aa x13:00000100 +76056513ns 1386534 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76056553ns 1386536 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf6a x14:1c00bec0 x15:000000aa +76056572ns 1386537 1c0035e4 00f70023 sb x15, 0(x14) x15:000000aa x14:1c00bf6a PA:1c00bf6a +76056592ns 1386538 1c0035e8 00178793 addi x15, x15, 1 x15=000000ab x15:000000aa +76056612ns 1386539 1c0035ea fed79be3 bne x15, x13, -10 x15:000000ab x13:00000100 +76056671ns 1386542 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76056711ns 1386544 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf6b x14:1c00bec0 x15:000000ab +76056731ns 1386545 1c0035e4 00f70023 sb x15, 0(x14) x15:000000ab x14:1c00bf6b PA:1c00bf6b +76056751ns 1386546 1c0035e8 00178793 addi x15, x15, 1 x15=000000ac x15:000000ab +76056770ns 1386547 1c0035ea fed79be3 bne x15, x13, -10 x15:000000ac x13:00000100 +76056830ns 1386550 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76056869ns 1386552 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf6c x14:1c00bec0 x15:000000ac +76056889ns 1386553 1c0035e4 00f70023 sb x15, 0(x14) x15:000000ac x14:1c00bf6c PA:1c00bf6c +76056909ns 1386554 1c0035e8 00178793 addi x15, x15, 1 x15=000000ad x15:000000ac +76056929ns 1386555 1c0035ea fed79be3 bne x15, x13, -10 x15:000000ad x13:00000100 +76056988ns 1386558 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76057028ns 1386560 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf6d x14:1c00bec0 x15:000000ad +76057047ns 1386561 1c0035e4 00f70023 sb x15, 0(x14) x15:000000ad x14:1c00bf6d PA:1c00bf6d +76057067ns 1386562 1c0035e8 00178793 addi x15, x15, 1 x15=000000ae x15:000000ad +76057087ns 1386563 1c0035ea fed79be3 bne x15, x13, -10 x15:000000ae x13:00000100 +76057146ns 1386566 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76057186ns 1386568 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf6e x14:1c00bec0 x15:000000ae +76057206ns 1386569 1c0035e4 00f70023 sb x15, 0(x14) x15:000000ae x14:1c00bf6e PA:1c00bf6e +76057226ns 1386570 1c0035e8 00178793 addi x15, x15, 1 x15=000000af x15:000000ae +76057245ns 1386571 1c0035ea fed79be3 bne x15, x13, -10 x15:000000af x13:00000100 +76057305ns 1386574 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76057344ns 1386576 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf6f x14:1c00bec0 x15:000000af +76057364ns 1386577 1c0035e4 00f70023 sb x15, 0(x14) x15:000000af x14:1c00bf6f PA:1c00bf6f +76057384ns 1386578 1c0035e8 00178793 addi x15, x15, 1 x15=000000b0 x15:000000af +76057404ns 1386579 1c0035ea fed79be3 bne x15, x13, -10 x15:000000b0 x13:00000100 +76057463ns 1386582 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76057503ns 1386584 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf70 x14:1c00bec0 x15:000000b0 +76057522ns 1386585 1c0035e4 00f70023 sb x15, 0(x14) x15:000000b0 x14:1c00bf70 PA:1c00bf70 +76057542ns 1386586 1c0035e8 00178793 addi x15, x15, 1 x15=000000b1 x15:000000b0 +76057562ns 1386587 1c0035ea fed79be3 bne x15, x13, -10 x15:000000b1 x13:00000100 +76057621ns 1386590 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76057661ns 1386592 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf71 x14:1c00bec0 x15:000000b1 +76057681ns 1386593 1c0035e4 00f70023 sb x15, 0(x14) x15:000000b1 x14:1c00bf71 PA:1c00bf71 +76057701ns 1386594 1c0035e8 00178793 addi x15, x15, 1 x15=000000b2 x15:000000b1 +76057720ns 1386595 1c0035ea fed79be3 bne x15, x13, -10 x15:000000b2 x13:00000100 +76057780ns 1386598 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76057819ns 1386600 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf72 x14:1c00bec0 x15:000000b2 +76057839ns 1386601 1c0035e4 00f70023 sb x15, 0(x14) x15:000000b2 x14:1c00bf72 PA:1c00bf72 +76057859ns 1386602 1c0035e8 00178793 addi x15, x15, 1 x15=000000b3 x15:000000b2 +76057879ns 1386603 1c0035ea fed79be3 bne x15, x13, -10 x15:000000b3 x13:00000100 +76057938ns 1386606 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76057978ns 1386608 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf73 x14:1c00bec0 x15:000000b3 +76057997ns 1386609 1c0035e4 00f70023 sb x15, 0(x14) x15:000000b3 x14:1c00bf73 PA:1c00bf73 +76058017ns 1386610 1c0035e8 00178793 addi x15, x15, 1 x15=000000b4 x15:000000b3 +76058037ns 1386611 1c0035ea fed79be3 bne x15, x13, -10 x15:000000b4 x13:00000100 +76058096ns 1386614 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76058136ns 1386616 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf74 x14:1c00bec0 x15:000000b4 +76058156ns 1386617 1c0035e4 00f70023 sb x15, 0(x14) x15:000000b4 x14:1c00bf74 PA:1c00bf74 +76058176ns 1386618 1c0035e8 00178793 addi x15, x15, 1 x15=000000b5 x15:000000b4 +76058195ns 1386619 1c0035ea fed79be3 bne x15, x13, -10 x15:000000b5 x13:00000100 +76058255ns 1386622 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76058294ns 1386624 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf75 x14:1c00bec0 x15:000000b5 +76058314ns 1386625 1c0035e4 00f70023 sb x15, 0(x14) x15:000000b5 x14:1c00bf75 PA:1c00bf75 +76058334ns 1386626 1c0035e8 00178793 addi x15, x15, 1 x15=000000b6 x15:000000b5 +76058354ns 1386627 1c0035ea fed79be3 bne x15, x13, -10 x15:000000b6 x13:00000100 +76058413ns 1386630 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76058453ns 1386632 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf76 x14:1c00bec0 x15:000000b6 +76058472ns 1386633 1c0035e4 00f70023 sb x15, 0(x14) x15:000000b6 x14:1c00bf76 PA:1c00bf76 +76058492ns 1386634 1c0035e8 00178793 addi x15, x15, 1 x15=000000b7 x15:000000b6 +76058512ns 1386635 1c0035ea fed79be3 bne x15, x13, -10 x15:000000b7 x13:00000100 +76058571ns 1386638 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76058611ns 1386640 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf77 x14:1c00bec0 x15:000000b7 +76058631ns 1386641 1c0035e4 00f70023 sb x15, 0(x14) x15:000000b7 x14:1c00bf77 PA:1c00bf77 +76058651ns 1386642 1c0035e8 00178793 addi x15, x15, 1 x15=000000b8 x15:000000b7 +76058670ns 1386643 1c0035ea fed79be3 bne x15, x13, -10 x15:000000b8 x13:00000100 +76058730ns 1386646 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76058769ns 1386648 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf78 x14:1c00bec0 x15:000000b8 +76058789ns 1386649 1c0035e4 00f70023 sb x15, 0(x14) x15:000000b8 x14:1c00bf78 PA:1c00bf78 +76058809ns 1386650 1c0035e8 00178793 addi x15, x15, 1 x15=000000b9 x15:000000b8 +76058829ns 1386651 1c0035ea fed79be3 bne x15, x13, -10 x15:000000b9 x13:00000100 +76058888ns 1386654 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76058928ns 1386656 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf79 x14:1c00bec0 x15:000000b9 +76058947ns 1386657 1c0035e4 00f70023 sb x15, 0(x14) x15:000000b9 x14:1c00bf79 PA:1c00bf79 +76058967ns 1386658 1c0035e8 00178793 addi x15, x15, 1 x15=000000ba x15:000000b9 +76058987ns 1386659 1c0035ea fed79be3 bne x15, x13, -10 x15:000000ba x13:00000100 +76059046ns 1386662 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76059086ns 1386664 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf7a x14:1c00bec0 x15:000000ba +76059106ns 1386665 1c0035e4 00f70023 sb x15, 0(x14) x15:000000ba x14:1c00bf7a PA:1c00bf7a +76059126ns 1386666 1c0035e8 00178793 addi x15, x15, 1 x15=000000bb x15:000000ba +76059145ns 1386667 1c0035ea fed79be3 bne x15, x13, -10 x15:000000bb x13:00000100 +76059205ns 1386670 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76059244ns 1386672 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf7b x14:1c00bec0 x15:000000bb +76059264ns 1386673 1c0035e4 00f70023 sb x15, 0(x14) x15:000000bb x14:1c00bf7b PA:1c00bf7b +76059284ns 1386674 1c0035e8 00178793 addi x15, x15, 1 x15=000000bc x15:000000bb +76059304ns 1386675 1c0035ea fed79be3 bne x15, x13, -10 x15:000000bc x13:00000100 +76059363ns 1386678 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76059403ns 1386680 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf7c x14:1c00bec0 x15:000000bc +76059423ns 1386681 1c0035e4 00f70023 sb x15, 0(x14) x15:000000bc x14:1c00bf7c PA:1c00bf7c +76059442ns 1386682 1c0035e8 00178793 addi x15, x15, 1 x15=000000bd x15:000000bc +76059462ns 1386683 1c0035ea fed79be3 bne x15, x13, -10 x15:000000bd x13:00000100 +76059521ns 1386686 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76059561ns 1386688 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf7d x14:1c00bec0 x15:000000bd +76059581ns 1386689 1c0035e4 00f70023 sb x15, 0(x14) x15:000000bd x14:1c00bf7d PA:1c00bf7d +76059601ns 1386690 1c0035e8 00178793 addi x15, x15, 1 x15=000000be x15:000000bd +76059620ns 1386691 1c0035ea fed79be3 bne x15, x13, -10 x15:000000be x13:00000100 +76059680ns 1386694 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76059719ns 1386696 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf7e x14:1c00bec0 x15:000000be +76059739ns 1386697 1c0035e4 00f70023 sb x15, 0(x14) x15:000000be x14:1c00bf7e PA:1c00bf7e +76059759ns 1386698 1c0035e8 00178793 addi x15, x15, 1 x15=000000bf x15:000000be +76059779ns 1386699 1c0035ea fed79be3 bne x15, x13, -10 x15:000000bf x13:00000100 +76059838ns 1386702 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76059878ns 1386704 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf7f x14:1c00bec0 x15:000000bf +76059898ns 1386705 1c0035e4 00f70023 sb x15, 0(x14) x15:000000bf x14:1c00bf7f PA:1c00bf7f +76059917ns 1386706 1c0035e8 00178793 addi x15, x15, 1 x15=000000c0 x15:000000bf +76059937ns 1386707 1c0035ea fed79be3 bne x15, x13, -10 x15:000000c0 x13:00000100 +76059996ns 1386710 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76060036ns 1386712 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf80 x14:1c00bec0 x15:000000c0 +76060056ns 1386713 1c0035e4 00f70023 sb x15, 0(x14) x15:000000c0 x14:1c00bf80 PA:1c00bf80 +76060076ns 1386714 1c0035e8 00178793 addi x15, x15, 1 x15=000000c1 x15:000000c0 +76060095ns 1386715 1c0035ea fed79be3 bne x15, x13, -10 x15:000000c1 x13:00000100 +76060155ns 1386718 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76060194ns 1386720 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf81 x14:1c00bec0 x15:000000c1 +76060214ns 1386721 1c0035e4 00f70023 sb x15, 0(x14) x15:000000c1 x14:1c00bf81 PA:1c00bf81 +76060234ns 1386722 1c0035e8 00178793 addi x15, x15, 1 x15=000000c2 x15:000000c1 +76060254ns 1386723 1c0035ea fed79be3 bne x15, x13, -10 x15:000000c2 x13:00000100 +76060313ns 1386726 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76060353ns 1386728 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf82 x14:1c00bec0 x15:000000c2 +76060373ns 1386729 1c0035e4 00f70023 sb x15, 0(x14) x15:000000c2 x14:1c00bf82 PA:1c00bf82 +76060392ns 1386730 1c0035e8 00178793 addi x15, x15, 1 x15=000000c3 x15:000000c2 +76060412ns 1386731 1c0035ea fed79be3 bne x15, x13, -10 x15:000000c3 x13:00000100 +76060471ns 1386734 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76060511ns 1386736 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf83 x14:1c00bec0 x15:000000c3 +76060531ns 1386737 1c0035e4 00f70023 sb x15, 0(x14) x15:000000c3 x14:1c00bf83 PA:1c00bf83 +76060551ns 1386738 1c0035e8 00178793 addi x15, x15, 1 x15=000000c4 x15:000000c3 +76060570ns 1386739 1c0035ea fed79be3 bne x15, x13, -10 x15:000000c4 x13:00000100 +76060630ns 1386742 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76060669ns 1386744 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf84 x14:1c00bec0 x15:000000c4 +76060689ns 1386745 1c0035e4 00f70023 sb x15, 0(x14) x15:000000c4 x14:1c00bf84 PA:1c00bf84 +76060709ns 1386746 1c0035e8 00178793 addi x15, x15, 1 x15=000000c5 x15:000000c4 +76060729ns 1386747 1c0035ea fed79be3 bne x15, x13, -10 x15:000000c5 x13:00000100 +76060788ns 1386750 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76060828ns 1386752 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf85 x14:1c00bec0 x15:000000c5 +76060848ns 1386753 1c0035e4 00f70023 sb x15, 0(x14) x15:000000c5 x14:1c00bf85 PA:1c00bf85 +76060867ns 1386754 1c0035e8 00178793 addi x15, x15, 1 x15=000000c6 x15:000000c5 +76060887ns 1386755 1c0035ea fed79be3 bne x15, x13, -10 x15:000000c6 x13:00000100 +76060946ns 1386758 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76060986ns 1386760 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf86 x14:1c00bec0 x15:000000c6 +76061006ns 1386761 1c0035e4 00f70023 sb x15, 0(x14) x15:000000c6 x14:1c00bf86 PA:1c00bf86 +76061026ns 1386762 1c0035e8 00178793 addi x15, x15, 1 x15=000000c7 x15:000000c6 +76061045ns 1386763 1c0035ea fed79be3 bne x15, x13, -10 x15:000000c7 x13:00000100 +76061105ns 1386766 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76061144ns 1386768 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf87 x14:1c00bec0 x15:000000c7 +76061164ns 1386769 1c0035e4 00f70023 sb x15, 0(x14) x15:000000c7 x14:1c00bf87 PA:1c00bf87 +76061184ns 1386770 1c0035e8 00178793 addi x15, x15, 1 x15=000000c8 x15:000000c7 +76061204ns 1386771 1c0035ea fed79be3 bne x15, x13, -10 x15:000000c8 x13:00000100 +76061263ns 1386774 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76061303ns 1386776 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf88 x14:1c00bec0 x15:000000c8 +76061323ns 1386777 1c0035e4 00f70023 sb x15, 0(x14) x15:000000c8 x14:1c00bf88 PA:1c00bf88 +76061342ns 1386778 1c0035e8 00178793 addi x15, x15, 1 x15=000000c9 x15:000000c8 +76061362ns 1386779 1c0035ea fed79be3 bne x15, x13, -10 x15:000000c9 x13:00000100 +76061421ns 1386782 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76061461ns 1386784 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf89 x14:1c00bec0 x15:000000c9 +76061481ns 1386785 1c0035e4 00f70023 sb x15, 0(x14) x15:000000c9 x14:1c00bf89 PA:1c00bf89 +76061501ns 1386786 1c0035e8 00178793 addi x15, x15, 1 x15=000000ca x15:000000c9 +76061520ns 1386787 1c0035ea fed79be3 bne x15, x13, -10 x15:000000ca x13:00000100 +76061580ns 1386790 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76061619ns 1386792 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf8a x14:1c00bec0 x15:000000ca +76061639ns 1386793 1c0035e4 00f70023 sb x15, 0(x14) x15:000000ca x14:1c00bf8a PA:1c00bf8a +76061659ns 1386794 1c0035e8 00178793 addi x15, x15, 1 x15=000000cb x15:000000ca +76061679ns 1386795 1c0035ea fed79be3 bne x15, x13, -10 x15:000000cb x13:00000100 +76061738ns 1386798 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76061778ns 1386800 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf8b x14:1c00bec0 x15:000000cb +76061798ns 1386801 1c0035e4 00f70023 sb x15, 0(x14) x15:000000cb x14:1c00bf8b PA:1c00bf8b +76061817ns 1386802 1c0035e8 00178793 addi x15, x15, 1 x15=000000cc x15:000000cb +76061837ns 1386803 1c0035ea fed79be3 bne x15, x13, -10 x15:000000cc x13:00000100 +76061897ns 1386806 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76061936ns 1386808 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf8c x14:1c00bec0 x15:000000cc +76061956ns 1386809 1c0035e4 00f70023 sb x15, 0(x14) x15:000000cc x14:1c00bf8c PA:1c00bf8c +76061976ns 1386810 1c0035e8 00178793 addi x15, x15, 1 x15=000000cd x15:000000cc +76061995ns 1386811 1c0035ea fed79be3 bne x15, x13, -10 x15:000000cd x13:00000100 +76062055ns 1386814 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76062094ns 1386816 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf8d x14:1c00bec0 x15:000000cd +76062114ns 1386817 1c0035e4 00f70023 sb x15, 0(x14) x15:000000cd x14:1c00bf8d PA:1c00bf8d +76062134ns 1386818 1c0035e8 00178793 addi x15, x15, 1 x15=000000ce x15:000000cd +76062154ns 1386819 1c0035ea fed79be3 bne x15, x13, -10 x15:000000ce x13:00000100 +76062213ns 1386822 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76062253ns 1386824 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf8e x14:1c00bec0 x15:000000ce +76062273ns 1386825 1c0035e4 00f70023 sb x15, 0(x14) x15:000000ce x14:1c00bf8e PA:1c00bf8e +76062292ns 1386826 1c0035e8 00178793 addi x15, x15, 1 x15=000000cf x15:000000ce +76062312ns 1386827 1c0035ea fed79be3 bne x15, x13, -10 x15:000000cf x13:00000100 +76062372ns 1386830 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76062411ns 1386832 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf8f x14:1c00bec0 x15:000000cf +76062431ns 1386833 1c0035e4 00f70023 sb x15, 0(x14) x15:000000cf x14:1c00bf8f PA:1c00bf8f +76062451ns 1386834 1c0035e8 00178793 addi x15, x15, 1 x15=000000d0 x15:000000cf +76062470ns 1386835 1c0035ea fed79be3 bne x15, x13, -10 x15:000000d0 x13:00000100 +76062530ns 1386838 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76062569ns 1386840 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf90 x14:1c00bec0 x15:000000d0 +76062589ns 1386841 1c0035e4 00f70023 sb x15, 0(x14) x15:000000d0 x14:1c00bf90 PA:1c00bf90 +76062609ns 1386842 1c0035e8 00178793 addi x15, x15, 1 x15=000000d1 x15:000000d0 +76062629ns 1386843 1c0035ea fed79be3 bne x15, x13, -10 x15:000000d1 x13:00000100 +76062688ns 1386846 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76062728ns 1386848 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf91 x14:1c00bec0 x15:000000d1 +76062748ns 1386849 1c0035e4 00f70023 sb x15, 0(x14) x15:000000d1 x14:1c00bf91 PA:1c00bf91 +76062767ns 1386850 1c0035e8 00178793 addi x15, x15, 1 x15=000000d2 x15:000000d1 +76062787ns 1386851 1c0035ea fed79be3 bne x15, x13, -10 x15:000000d2 x13:00000100 +76062847ns 1386854 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76062886ns 1386856 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf92 x14:1c00bec0 x15:000000d2 +76062906ns 1386857 1c0035e4 00f70023 sb x15, 0(x14) x15:000000d2 x14:1c00bf92 PA:1c00bf92 +76062926ns 1386858 1c0035e8 00178793 addi x15, x15, 1 x15=000000d3 x15:000000d2 +76062945ns 1386859 1c0035ea fed79be3 bne x15, x13, -10 x15:000000d3 x13:00000100 +76063005ns 1386862 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76063044ns 1386864 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf93 x14:1c00bec0 x15:000000d3 +76063064ns 1386865 1c0035e4 00f70023 sb x15, 0(x14) x15:000000d3 x14:1c00bf93 PA:1c00bf93 +76063084ns 1386866 1c0035e8 00178793 addi x15, x15, 1 x15=000000d4 x15:000000d3 +76063104ns 1386867 1c0035ea fed79be3 bne x15, x13, -10 x15:000000d4 x13:00000100 +76063163ns 1386870 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76063203ns 1386872 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf94 x14:1c00bec0 x15:000000d4 +76063223ns 1386873 1c0035e4 00f70023 sb x15, 0(x14) x15:000000d4 x14:1c00bf94 PA:1c00bf94 +76063242ns 1386874 1c0035e8 00178793 addi x15, x15, 1 x15=000000d5 x15:000000d4 +76063262ns 1386875 1c0035ea fed79be3 bne x15, x13, -10 x15:000000d5 x13:00000100 +76063322ns 1386878 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76063361ns 1386880 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf95 x14:1c00bec0 x15:000000d5 +76063381ns 1386881 1c0035e4 00f70023 sb x15, 0(x14) x15:000000d5 x14:1c00bf95 PA:1c00bf95 +76063401ns 1386882 1c0035e8 00178793 addi x15, x15, 1 x15=000000d6 x15:000000d5 +76063420ns 1386883 1c0035ea fed79be3 bne x15, x13, -10 x15:000000d6 x13:00000100 +76063480ns 1386886 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76063519ns 1386888 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf96 x14:1c00bec0 x15:000000d6 +76063539ns 1386889 1c0035e4 00f70023 sb x15, 0(x14) x15:000000d6 x14:1c00bf96 PA:1c00bf96 +76063559ns 1386890 1c0035e8 00178793 addi x15, x15, 1 x15=000000d7 x15:000000d6 +76063579ns 1386891 1c0035ea fed79be3 bne x15, x13, -10 x15:000000d7 x13:00000100 +76063638ns 1386894 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76063678ns 1386896 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf97 x14:1c00bec0 x15:000000d7 +76063698ns 1386897 1c0035e4 00f70023 sb x15, 0(x14) x15:000000d7 x14:1c00bf97 PA:1c00bf97 +76063717ns 1386898 1c0035e8 00178793 addi x15, x15, 1 x15=000000d8 x15:000000d7 +76063737ns 1386899 1c0035ea fed79be3 bne x15, x13, -10 x15:000000d8 x13:00000100 +76063797ns 1386902 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76063836ns 1386904 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf98 x14:1c00bec0 x15:000000d8 +76063856ns 1386905 1c0035e4 00f70023 sb x15, 0(x14) x15:000000d8 x14:1c00bf98 PA:1c00bf98 +76063876ns 1386906 1c0035e8 00178793 addi x15, x15, 1 x15=000000d9 x15:000000d8 +76063895ns 1386907 1c0035ea fed79be3 bne x15, x13, -10 x15:000000d9 x13:00000100 +76063955ns 1386910 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76063994ns 1386912 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf99 x14:1c00bec0 x15:000000d9 +76064014ns 1386913 1c0035e4 00f70023 sb x15, 0(x14) x15:000000d9 x14:1c00bf99 PA:1c00bf99 +76064034ns 1386914 1c0035e8 00178793 addi x15, x15, 1 x15=000000da x15:000000d9 +76064054ns 1386915 1c0035ea fed79be3 bne x15, x13, -10 x15:000000da x13:00000100 +76064113ns 1386918 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76064153ns 1386920 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf9a x14:1c00bec0 x15:000000da +76064173ns 1386921 1c0035e4 00f70023 sb x15, 0(x14) x15:000000da x14:1c00bf9a PA:1c00bf9a +76064192ns 1386922 1c0035e8 00178793 addi x15, x15, 1 x15=000000db x15:000000da +76064212ns 1386923 1c0035ea fed79be3 bne x15, x13, -10 x15:000000db x13:00000100 +76064272ns 1386926 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76064311ns 1386928 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf9b x14:1c00bec0 x15:000000db +76064331ns 1386929 1c0035e4 00f70023 sb x15, 0(x14) x15:000000db x14:1c00bf9b PA:1c00bf9b +76064351ns 1386930 1c0035e8 00178793 addi x15, x15, 1 x15=000000dc x15:000000db +76064371ns 1386931 1c0035ea fed79be3 bne x15, x13, -10 x15:000000dc x13:00000100 +76064430ns 1386934 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76064469ns 1386936 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf9c x14:1c00bec0 x15:000000dc +76064489ns 1386937 1c0035e4 00f70023 sb x15, 0(x14) x15:000000dc x14:1c00bf9c PA:1c00bf9c +76064509ns 1386938 1c0035e8 00178793 addi x15, x15, 1 x15=000000dd x15:000000dc +76064529ns 1386939 1c0035ea fed79be3 bne x15, x13, -10 x15:000000dd x13:00000100 +76064588ns 1386942 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76064628ns 1386944 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf9d x14:1c00bec0 x15:000000dd +76064648ns 1386945 1c0035e4 00f70023 sb x15, 0(x14) x15:000000dd x14:1c00bf9d PA:1c00bf9d +76064667ns 1386946 1c0035e8 00178793 addi x15, x15, 1 x15=000000de x15:000000dd +76064687ns 1386947 1c0035ea fed79be3 bne x15, x13, -10 x15:000000de x13:00000100 +76064747ns 1386950 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76064786ns 1386952 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf9e x14:1c00bec0 x15:000000de +76064806ns 1386953 1c0035e4 00f70023 sb x15, 0(x14) x15:000000de x14:1c00bf9e PA:1c00bf9e +76064826ns 1386954 1c0035e8 00178793 addi x15, x15, 1 x15=000000df x15:000000de +76064846ns 1386955 1c0035ea fed79be3 bne x15, x13, -10 x15:000000df x13:00000100 +76064905ns 1386958 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76064944ns 1386960 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bf9f x14:1c00bec0 x15:000000df +76064964ns 1386961 1c0035e4 00f70023 sb x15, 0(x14) x15:000000df x14:1c00bf9f PA:1c00bf9f +76064984ns 1386962 1c0035e8 00178793 addi x15, x15, 1 x15=000000e0 x15:000000df +76065004ns 1386963 1c0035ea fed79be3 bne x15, x13, -10 x15:000000e0 x13:00000100 +76065063ns 1386966 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76065103ns 1386968 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bfa0 x14:1c00bec0 x15:000000e0 +76065123ns 1386969 1c0035e4 00f70023 sb x15, 0(x14) x15:000000e0 x14:1c00bfa0 PA:1c00bfa0 +76065142ns 1386970 1c0035e8 00178793 addi x15, x15, 1 x15=000000e1 x15:000000e0 +76065162ns 1386971 1c0035ea fed79be3 bne x15, x13, -10 x15:000000e1 x13:00000100 +76065222ns 1386974 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76065261ns 1386976 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bfa1 x14:1c00bec0 x15:000000e1 +76065281ns 1386977 1c0035e4 00f70023 sb x15, 0(x14) x15:000000e1 x14:1c00bfa1 PA:1c00bfa1 +76065301ns 1386978 1c0035e8 00178793 addi x15, x15, 1 x15=000000e2 x15:000000e1 +76065321ns 1386979 1c0035ea fed79be3 bne x15, x13, -10 x15:000000e2 x13:00000100 +76065380ns 1386982 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76065419ns 1386984 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bfa2 x14:1c00bec0 x15:000000e2 +76065439ns 1386985 1c0035e4 00f70023 sb x15, 0(x14) x15:000000e2 x14:1c00bfa2 PA:1c00bfa2 +76065459ns 1386986 1c0035e8 00178793 addi x15, x15, 1 x15=000000e3 x15:000000e2 +76065479ns 1386987 1c0035ea fed79be3 bne x15, x13, -10 x15:000000e3 x13:00000100 +76065538ns 1386990 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76065578ns 1386992 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bfa3 x14:1c00bec0 x15:000000e3 +76065598ns 1386993 1c0035e4 00f70023 sb x15, 0(x14) x15:000000e3 x14:1c00bfa3 PA:1c00bfa3 +76065617ns 1386994 1c0035e8 00178793 addi x15, x15, 1 x15=000000e4 x15:000000e3 +76065637ns 1386995 1c0035ea fed79be3 bne x15, x13, -10 x15:000000e4 x13:00000100 +76065697ns 1386998 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76065736ns 1387000 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bfa4 x14:1c00bec0 x15:000000e4 +76065756ns 1387001 1c0035e4 00f70023 sb x15, 0(x14) x15:000000e4 x14:1c00bfa4 PA:1c00bfa4 +76065776ns 1387002 1c0035e8 00178793 addi x15, x15, 1 x15=000000e5 x15:000000e4 +76065796ns 1387003 1c0035ea fed79be3 bne x15, x13, -10 x15:000000e5 x13:00000100 +76065855ns 1387006 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76065894ns 1387008 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bfa5 x14:1c00bec0 x15:000000e5 +76065914ns 1387009 1c0035e4 00f70023 sb x15, 0(x14) x15:000000e5 x14:1c00bfa5 PA:1c00bfa5 +76065934ns 1387010 1c0035e8 00178793 addi x15, x15, 1 x15=000000e6 x15:000000e5 +76065954ns 1387011 1c0035ea fed79be3 bne x15, x13, -10 x15:000000e6 x13:00000100 +76066013ns 1387014 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76066053ns 1387016 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bfa6 x14:1c00bec0 x15:000000e6 +76066073ns 1387017 1c0035e4 00f70023 sb x15, 0(x14) x15:000000e6 x14:1c00bfa6 PA:1c00bfa6 +76066092ns 1387018 1c0035e8 00178793 addi x15, x15, 1 x15=000000e7 x15:000000e6 +76066112ns 1387019 1c0035ea fed79be3 bne x15, x13, -10 x15:000000e7 x13:00000100 +76066172ns 1387022 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76066211ns 1387024 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bfa7 x14:1c00bec0 x15:000000e7 +76066231ns 1387025 1c0035e4 00f70023 sb x15, 0(x14) x15:000000e7 x14:1c00bfa7 PA:1c00bfa7 +76066251ns 1387026 1c0035e8 00178793 addi x15, x15, 1 x15=000000e8 x15:000000e7 +76066271ns 1387027 1c0035ea fed79be3 bne x15, x13, -10 x15:000000e8 x13:00000100 +76066330ns 1387030 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76066369ns 1387032 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bfa8 x14:1c00bec0 x15:000000e8 +76066389ns 1387033 1c0035e4 00f70023 sb x15, 0(x14) x15:000000e8 x14:1c00bfa8 PA:1c00bfa8 +76066409ns 1387034 1c0035e8 00178793 addi x15, x15, 1 x15=000000e9 x15:000000e8 +76066429ns 1387035 1c0035ea fed79be3 bne x15, x13, -10 x15:000000e9 x13:00000100 +76066488ns 1387038 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76066528ns 1387040 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bfa9 x14:1c00bec0 x15:000000e9 +76066548ns 1387041 1c0035e4 00f70023 sb x15, 0(x14) x15:000000e9 x14:1c00bfa9 PA:1c00bfa9 +76066567ns 1387042 1c0035e8 00178793 addi x15, x15, 1 x15=000000ea x15:000000e9 +76066587ns 1387043 1c0035ea fed79be3 bne x15, x13, -10 x15:000000ea x13:00000100 +76066647ns 1387046 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76066686ns 1387048 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bfaa x14:1c00bec0 x15:000000ea +76066706ns 1387049 1c0035e4 00f70023 sb x15, 0(x14) x15:000000ea x14:1c00bfaa PA:1c00bfaa +76066726ns 1387050 1c0035e8 00178793 addi x15, x15, 1 x15=000000eb x15:000000ea +76066746ns 1387051 1c0035ea fed79be3 bne x15, x13, -10 x15:000000eb x13:00000100 +76066805ns 1387054 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76066845ns 1387056 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bfab x14:1c00bec0 x15:000000eb +76066864ns 1387057 1c0035e4 00f70023 sb x15, 0(x14) x15:000000eb x14:1c00bfab PA:1c00bfab +76066884ns 1387058 1c0035e8 00178793 addi x15, x15, 1 x15=000000ec x15:000000eb +76066904ns 1387059 1c0035ea fed79be3 bne x15, x13, -10 x15:000000ec x13:00000100 +76066963ns 1387062 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76067003ns 1387064 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bfac x14:1c00bec0 x15:000000ec +76067023ns 1387065 1c0035e4 00f70023 sb x15, 0(x14) x15:000000ec x14:1c00bfac PA:1c00bfac +76067042ns 1387066 1c0035e8 00178793 addi x15, x15, 1 x15=000000ed x15:000000ec +76067062ns 1387067 1c0035ea fed79be3 bne x15, x13, -10 x15:000000ed x13:00000100 +76067122ns 1387070 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76067161ns 1387072 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bfad x14:1c00bec0 x15:000000ed +76067181ns 1387073 1c0035e4 00f70023 sb x15, 0(x14) x15:000000ed x14:1c00bfad PA:1c00bfad +76067201ns 1387074 1c0035e8 00178793 addi x15, x15, 1 x15=000000ee x15:000000ed +76067221ns 1387075 1c0035ea fed79be3 bne x15, x13, -10 x15:000000ee x13:00000100 +76067280ns 1387078 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76067320ns 1387080 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bfae x14:1c00bec0 x15:000000ee +76067339ns 1387081 1c0035e4 00f70023 sb x15, 0(x14) x15:000000ee x14:1c00bfae PA:1c00bfae +76067359ns 1387082 1c0035e8 00178793 addi x15, x15, 1 x15=000000ef x15:000000ee +76067379ns 1387083 1c0035ea fed79be3 bne x15, x13, -10 x15:000000ef x13:00000100 +76067438ns 1387086 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76067478ns 1387088 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bfaf x14:1c00bec0 x15:000000ef +76067498ns 1387089 1c0035e4 00f70023 sb x15, 0(x14) x15:000000ef x14:1c00bfaf PA:1c00bfaf +76067517ns 1387090 1c0035e8 00178793 addi x15, x15, 1 x15=000000f0 x15:000000ef +76067537ns 1387091 1c0035ea fed79be3 bne x15, x13, -10 x15:000000f0 x13:00000100 +76067597ns 1387094 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76067636ns 1387096 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bfb0 x14:1c00bec0 x15:000000f0 +76067656ns 1387097 1c0035e4 00f70023 sb x15, 0(x14) x15:000000f0 x14:1c00bfb0 PA:1c00bfb0 +76067676ns 1387098 1c0035e8 00178793 addi x15, x15, 1 x15=000000f1 x15:000000f0 +76067696ns 1387099 1c0035ea fed79be3 bne x15, x13, -10 x15:000000f1 x13:00000100 +76067755ns 1387102 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76067795ns 1387104 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bfb1 x14:1c00bec0 x15:000000f1 +76067814ns 1387105 1c0035e4 00f70023 sb x15, 0(x14) x15:000000f1 x14:1c00bfb1 PA:1c00bfb1 +76067834ns 1387106 1c0035e8 00178793 addi x15, x15, 1 x15=000000f2 x15:000000f1 +76067854ns 1387107 1c0035ea fed79be3 bne x15, x13, -10 x15:000000f2 x13:00000100 +76067913ns 1387110 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76067953ns 1387112 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bfb2 x14:1c00bec0 x15:000000f2 +76067973ns 1387113 1c0035e4 00f70023 sb x15, 0(x14) x15:000000f2 x14:1c00bfb2 PA:1c00bfb2 +76067992ns 1387114 1c0035e8 00178793 addi x15, x15, 1 x15=000000f3 x15:000000f2 +76068012ns 1387115 1c0035ea fed79be3 bne x15, x13, -10 x15:000000f3 x13:00000100 +76068072ns 1387118 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76068111ns 1387120 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bfb3 x14:1c00bec0 x15:000000f3 +76068131ns 1387121 1c0035e4 00f70023 sb x15, 0(x14) x15:000000f3 x14:1c00bfb3 PA:1c00bfb3 +76068151ns 1387122 1c0035e8 00178793 addi x15, x15, 1 x15=000000f4 x15:000000f3 +76068171ns 1387123 1c0035ea fed79be3 bne x15, x13, -10 x15:000000f4 x13:00000100 +76068230ns 1387126 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76068270ns 1387128 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bfb4 x14:1c00bec0 x15:000000f4 +76068289ns 1387129 1c0035e4 00f70023 sb x15, 0(x14) x15:000000f4 x14:1c00bfb4 PA:1c00bfb4 +76068309ns 1387130 1c0035e8 00178793 addi x15, x15, 1 x15=000000f5 x15:000000f4 +76068329ns 1387131 1c0035ea fed79be3 bne x15, x13, -10 x15:000000f5 x13:00000100 +76068388ns 1387134 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76068428ns 1387136 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bfb5 x14:1c00bec0 x15:000000f5 +76068448ns 1387137 1c0035e4 00f70023 sb x15, 0(x14) x15:000000f5 x14:1c00bfb5 PA:1c00bfb5 +76068467ns 1387138 1c0035e8 00178793 addi x15, x15, 1 x15=000000f6 x15:000000f5 +76068487ns 1387139 1c0035ea fed79be3 bne x15, x13, -10 x15:000000f6 x13:00000100 +76068547ns 1387142 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76068586ns 1387144 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bfb6 x14:1c00bec0 x15:000000f6 +76068606ns 1387145 1c0035e4 00f70023 sb x15, 0(x14) x15:000000f6 x14:1c00bfb6 PA:1c00bfb6 +76068626ns 1387146 1c0035e8 00178793 addi x15, x15, 1 x15=000000f7 x15:000000f6 +76068646ns 1387147 1c0035ea fed79be3 bne x15, x13, -10 x15:000000f7 x13:00000100 +76068705ns 1387150 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76068745ns 1387152 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bfb7 x14:1c00bec0 x15:000000f7 +76068764ns 1387153 1c0035e4 00f70023 sb x15, 0(x14) x15:000000f7 x14:1c00bfb7 PA:1c00bfb7 +76068784ns 1387154 1c0035e8 00178793 addi x15, x15, 1 x15=000000f8 x15:000000f7 +76068804ns 1387155 1c0035ea fed79be3 bne x15, x13, -10 x15:000000f8 x13:00000100 +76068863ns 1387158 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76068903ns 1387160 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bfb8 x14:1c00bec0 x15:000000f8 +76068923ns 1387161 1c0035e4 00f70023 sb x15, 0(x14) x15:000000f8 x14:1c00bfb8 PA:1c00bfb8 +76068942ns 1387162 1c0035e8 00178793 addi x15, x15, 1 x15=000000f9 x15:000000f8 +76068962ns 1387163 1c0035ea fed79be3 bne x15, x13, -10 x15:000000f9 x13:00000100 +76069022ns 1387166 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76069061ns 1387168 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bfb9 x14:1c00bec0 x15:000000f9 +76069081ns 1387169 1c0035e4 00f70023 sb x15, 0(x14) x15:000000f9 x14:1c00bfb9 PA:1c00bfb9 +76069101ns 1387170 1c0035e8 00178793 addi x15, x15, 1 x15=000000fa x15:000000f9 +76069121ns 1387171 1c0035ea fed79be3 bne x15, x13, -10 x15:000000fa x13:00000100 +76069180ns 1387174 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76069220ns 1387176 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bfba x14:1c00bec0 x15:000000fa +76069239ns 1387177 1c0035e4 00f70023 sb x15, 0(x14) x15:000000fa x14:1c00bfba PA:1c00bfba +76069259ns 1387178 1c0035e8 00178793 addi x15, x15, 1 x15=000000fb x15:000000fa +76069279ns 1387179 1c0035ea fed79be3 bne x15, x13, -10 x15:000000fb x13:00000100 +76069338ns 1387182 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76069378ns 1387184 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bfbb x14:1c00bec0 x15:000000fb +76069398ns 1387185 1c0035e4 00f70023 sb x15, 0(x14) x15:000000fb x14:1c00bfbb PA:1c00bfbb +76069417ns 1387186 1c0035e8 00178793 addi x15, x15, 1 x15=000000fc x15:000000fb +76069437ns 1387187 1c0035ea fed79be3 bne x15, x13, -10 x15:000000fc x13:00000100 +76069497ns 1387190 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76069536ns 1387192 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bfbc x14:1c00bec0 x15:000000fc +76069556ns 1387193 1c0035e4 00f70023 sb x15, 0(x14) x15:000000fc x14:1c00bfbc PA:1c00bfbc +76069576ns 1387194 1c0035e8 00178793 addi x15, x15, 1 x15=000000fd x15:000000fc +76069596ns 1387195 1c0035ea fed79be3 bne x15, x13, -10 x15:000000fd x13:00000100 +76069655ns 1387198 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76069695ns 1387200 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bfbd x14:1c00bec0 x15:000000fd +76069714ns 1387201 1c0035e4 00f70023 sb x15, 0(x14) x15:000000fd x14:1c00bfbd PA:1c00bfbd +76069734ns 1387202 1c0035e8 00178793 addi x15, x15, 1 x15=000000fe x15:000000fd +76069754ns 1387203 1c0035ea fed79be3 bne x15, x13, -10 x15:000000fe x13:00000100 +76069813ns 1387206 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76069853ns 1387208 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bfbe x14:1c00bec0 x15:000000fe +76069873ns 1387209 1c0035e4 00f70023 sb x15, 0(x14) x15:000000fe x14:1c00bfbe PA:1c00bfbe +76069892ns 1387210 1c0035e8 00178793 addi x15, x15, 1 x15=000000ff x15:000000fe +76069912ns 1387211 1c0035ea fed79be3 bne x15, x13, -10 x15:000000ff x13:00000100 +76069972ns 1387214 1c0035e0 0004a703 lw x14, 0(x9) x14=1c00bec0 x9:1c009190 PA:1c009190 +76070011ns 1387216 1c0035e2 00f70733 add x14, x14, x15 x14=1c00bfbf x14:1c00bec0 x15:000000ff +76070031ns 1387217 1c0035e4 00f70023 sb x15, 0(x14) x15:000000ff x14:1c00bfbf PA:1c00bfbf +76070051ns 1387218 1c0035e8 00178793 addi x15, x15, 1 x15=00000100 x15:000000ff +76070071ns 1387219 1c0035ea fed79be3 bne x15, x13, -10 x15:00000100 x13:00000100 +76070090ns 1387220 1c0035ee 1c009537 lui x10, 0x1c009000 x10=1c009000 +76070110ns 1387221 1c0035f2 00600993 addi x19, x0, 6 x19=00000006 +76070130ns 1387222 1c0035f4 8e050513 addi x10, x10, -1824 x10=1c0088e0 x10:1c009000 +76070150ns 1387223 1c0035f8 01310b23 sb x19, 22(x2) x19:00000006 x2:1c009bc0 PA:1c009bd6 +76070170ns 1387224 1c0035fc 0d7000ef jal x1, 2262 x1=1c003600 +76070229ns 1387227 1c003ed2 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76070249ns 1387228 1c003ed6 00a005b3 add x11, x0, x10 x11=1c0088e0 x10:1c0088e0 +76070269ns 1387229 1c003ed8 c447a503 lw x10, -956(x15) x10=1c009e10 x15:1c009000 PA:1c008c44 +76070288ns 1387230 1c003edc f19ff06f jal x0, -232 +76070328ns 1387232 1c003df4 fe010113 addi x2, x2, -32 x2=1c009ba0 x2:1c009bc0 +76070348ns 1387233 1c003df6 00912a23 sw x9, 20(x2) x9:1c009190 x2:1c009ba0 PA:1c009bb4 +76070367ns 1387234 1c003df8 01212823 sw x18, 16(x2) x18:1c009188 x2:1c009ba0 PA:1c009bb0 +76070387ns 1387235 1c003dfa 00112e23 sw x1, 28(x2) x1:1c003600 x2:1c009ba0 PA:1c009bbc +76070407ns 1387236 1c003dfc 00812c23 sw x8, 24(x2) x8:00000000 x2:1c009ba0 PA:1c009bb8 +76070427ns 1387237 1c003dfe 01312623 sw x19, 12(x2) x19:00000006 x2:1c009ba0 PA:1c009bac +76070447ns 1387238 1c003e00 01412423 sw x20, 8(x2) x20:1c00918c x2:1c009ba0 PA:1c009ba8 +76070466ns 1387239 1c003e02 00a004b3 add x9, x0, x10 x9=1c009e10 x10:1c009e10 +76070486ns 1387240 1c003e04 00b00933 add x18, x0, x11 x18=1c0088e0 x11:1c0088e0 +76070506ns 1387241 1c003e06 00050563 beq x10, x0, 10 x10:1c009e10 +76070526ns 1387242 1c003e08 01852783 lw x15, 24(x10) x15=00000001 x10:1c009e10 PA:1c009e28 +76070565ns 1387244 1c003e0a 00079363 bne x15, x0, 6 x15:00000001 +76070625ns 1387247 1c003e10 0184a783 lw x15, 24(x9) x15=00000001 x9:1c009e10 PA:1c009e28 +76070645ns 1387248 1c003e12 0084a403 lw x8, 8(x9) x8=1c00b914 x9:1c009e10 PA:1c009e18 +76070664ns 1387249 1c003e14 00079463 bne x15, x0, 8 x15:00000001 +76070724ns 1387252 1c003e1c 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76070744ns 1387253 1c003e20 a1478793 addi x15, x15, -1516 x15=1c008a14 x15:1c009000 +76070763ns 1387254 1c003e24 02f41c63 bne x8, x15, 56 x8:1c00b914 x15:1c008a14 +76070823ns 1387257 1c003e5c 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76070842ns 1387258 1c003e60 a3478793 addi x15, x15, -1484 x15=1c008a34 x15:1c009000 +76070862ns 1387259 1c003e64 00f41463 bne x8, x15, 8 x8:1c00b914 x15:1c008a34 +76070922ns 1387262 1c003e6c 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76070941ns 1387263 1c003e70 9f478793 addi x15, x15, -1548 x15=1c0089f4 x15:1c009000 +76070961ns 1387264 1c003e74 faf41be3 bne x8, x15, -74 x8:1c00b914 x15:1c0089f4 +76071040ns 1387268 1c003e2a 00c45783 lhu x15, 12(x8) x15=00000089 x8:1c00b914 PA:1c00b920 +76071080ns 1387270 1c003e2e 0087f793 andi x15, x15, 8 x15=00000008 x15:00000089 +76071100ns 1387271 1c003e30 04078663 beq x15, x0, 76 x15:00000008 +76071120ns 1387272 1c003e32 01042783 lw x15, 16(x8) x15=1c00bab8 x8:1c00b914 PA:1c00b924 +76071159ns 1387274 1c003e34 04078463 beq x15, x0, 72 x15:1c00bab8 +76071179ns 1387275 1c003e36 fff00993 addi x19, x0, -1 x19=ffffffff +76071199ns 1387276 1c003e38 00a00a13 addi x20, x0, 10 x20=0000000a +76071219ns 1387277 1c003e3a 00842783 lw x15, 8(x8) x15=00000000 x8:1c00b914 PA:1c00b91c +76071238ns 1387278 1c003e3c 00094583 lbu x11, 0(x18) x11=00000061 x18:1c0088e0 PA:1c0088e0 +76071258ns 1387279 1c003e40 fff78793 addi x15, x15, -1 x15=ffffffff x15:00000000 +76071278ns 1387280 1c003e42 04059a63 bne x11, x0, 84 x11:00000061 +76071337ns 1387283 1c003e96 00f42423 sw x15, 8(x8) x15:ffffffff x8:1c00b914 PA:1c00b91c +76071357ns 1387284 1c003e98 00190913 addi x18, x18, 1 x18=1c0088e1 x18:1c0088e0 +76071377ns 1387285 1c003e9a 0007d763 bge x15, x0, 14 x15:ffffffff +76071397ns 1387286 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +76071436ns 1387288 1c003ea0 00e7cb63 blt x15, x14, 22 x15:ffffffff x14:fffffc00 +76071456ns 1387289 1c003ea4 01458963 beq x11, x20, 18 x11:00000061 x20:0000000a +76071476ns 1387290 1c003ea8 00042783 lw x15, 0(x8) x15=1c00bab8 x8:1c00b914 PA:1c00b914 +76071515ns 1387292 1c003eaa 00178713 addi x14, x15, 1 x14=1c00bab9 x15:1c00bab8 +76071535ns 1387293 1c003eae 00e42023 sw x14, 0(x8) x14:1c00bab9 x8:1c00b914 PA:1c00b914 +76071555ns 1387294 1c003eb0 00b78023 sb x11, 0(x15) x11:00000061 x15:1c00bab8 PA:1c00bab8 +76071575ns 1387295 1c003eb4 f87ff06f jal x0, -122 +76071614ns 1387297 1c003e3a 00842783 lw x15, 8(x8) x15=ffffffff x8:1c00b914 PA:1c00b91c +76071634ns 1387298 1c003e3c 00094583 lbu x11, 0(x18) x11=00000073 x18:1c0088e1 PA:1c0088e1 +76071654ns 1387299 1c003e40 fff78793 addi x15, x15, -1 x15=fffffffe x15:ffffffff +76071674ns 1387300 1c003e42 04059a63 bne x11, x0, 84 x11:00000073 +76071733ns 1387303 1c003e96 00f42423 sw x15, 8(x8) x15:fffffffe x8:1c00b914 PA:1c00b91c +76071753ns 1387304 1c003e98 00190913 addi x18, x18, 1 x18=1c0088e2 x18:1c0088e1 +76071773ns 1387305 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffffe +76071793ns 1387306 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +76071832ns 1387308 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffffe x14:fffffc00 +76071852ns 1387309 1c003ea4 01458963 beq x11, x20, 18 x11:00000073 x20:0000000a +76071872ns 1387310 1c003ea8 00042783 lw x15, 0(x8) x15=1c00bab9 x8:1c00b914 PA:1c00b914 +76071911ns 1387312 1c003eaa 00178713 addi x14, x15, 1 x14=1c00baba x15:1c00bab9 +76071931ns 1387313 1c003eae 00e42023 sw x14, 0(x8) x14:1c00baba x8:1c00b914 PA:1c00b914 +76071951ns 1387314 1c003eb0 00b78023 sb x11, 0(x15) x11:00000073 x15:1c00bab9 PA:1c00bab9 +76071971ns 1387315 1c003eb4 f87ff06f jal x0, -122 +76072010ns 1387317 1c003e3a 00842783 lw x15, 8(x8) x15=fffffffe x8:1c00b914 PA:1c00b91c +76072030ns 1387318 1c003e3c 00094583 lbu x11, 0(x18) x11=00000079 x18:1c0088e2 PA:1c0088e2 +76072050ns 1387319 1c003e40 fff78793 addi x15, x15, -1 x15=fffffffd x15:fffffffe +76072070ns 1387320 1c003e42 04059a63 bne x11, x0, 84 x11:00000079 +76072129ns 1387323 1c003e96 00f42423 sw x15, 8(x8) x15:fffffffd x8:1c00b914 PA:1c00b91c +76072149ns 1387324 1c003e98 00190913 addi x18, x18, 1 x18=1c0088e3 x18:1c0088e2 +76072169ns 1387325 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffffd +76072188ns 1387326 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +76072228ns 1387328 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffffd x14:fffffc00 +76072248ns 1387329 1c003ea4 01458963 beq x11, x20, 18 x11:00000079 x20:0000000a +76072268ns 1387330 1c003ea8 00042783 lw x15, 0(x8) x15=1c00baba x8:1c00b914 PA:1c00b914 +76072307ns 1387332 1c003eaa 00178713 addi x14, x15, 1 x14=1c00babb x15:1c00baba +76072327ns 1387333 1c003eae 00e42023 sw x14, 0(x8) x14:1c00babb x8:1c00b914 PA:1c00b914 +76072347ns 1387334 1c003eb0 00b78023 sb x11, 0(x15) x11:00000079 x15:1c00baba PA:1c00baba +76072366ns 1387335 1c003eb4 f87ff06f jal x0, -122 +76072406ns 1387337 1c003e3a 00842783 lw x15, 8(x8) x15=fffffffd x8:1c00b914 PA:1c00b91c +76072426ns 1387338 1c003e3c 00094583 lbu x11, 0(x18) x11=0000006e x18:1c0088e3 PA:1c0088e3 +76072446ns 1387339 1c003e40 fff78793 addi x15, x15, -1 x15=fffffffc x15:fffffffd +76072465ns 1387340 1c003e42 04059a63 bne x11, x0, 84 x11:0000006e +76072525ns 1387343 1c003e96 00f42423 sw x15, 8(x8) x15:fffffffc x8:1c00b914 PA:1c00b91c +76072545ns 1387344 1c003e98 00190913 addi x18, x18, 1 x18=1c0088e4 x18:1c0088e3 +76072564ns 1387345 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffffc +76072584ns 1387346 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +76072624ns 1387348 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffffc x14:fffffc00 +76072644ns 1387349 1c003ea4 01458963 beq x11, x20, 18 x11:0000006e x20:0000000a +76072663ns 1387350 1c003ea8 00042783 lw x15, 0(x8) x15=1c00babb x8:1c00b914 PA:1c00b914 +76072703ns 1387352 1c003eaa 00178713 addi x14, x15, 1 x14=1c00babc x15:1c00babb +76072723ns 1387353 1c003eae 00e42023 sw x14, 0(x8) x14:1c00babc x8:1c00b914 PA:1c00b914 +76072743ns 1387354 1c003eb0 00b78023 sb x11, 0(x15) x11:0000006e x15:1c00babb PA:1c00babb +76072762ns 1387355 1c003eb4 f87ff06f jal x0, -122 +76072802ns 1387357 1c003e3a 00842783 lw x15, 8(x8) x15=fffffffc x8:1c00b914 PA:1c00b91c +76072822ns 1387358 1c003e3c 00094583 lbu x11, 0(x18) x11=00000063 x18:1c0088e4 PA:1c0088e4 +76072841ns 1387359 1c003e40 fff78793 addi x15, x15, -1 x15=fffffffb x15:fffffffc +76072861ns 1387360 1c003e42 04059a63 bne x11, x0, 84 x11:00000063 +76072921ns 1387363 1c003e96 00f42423 sw x15, 8(x8) x15:fffffffb x8:1c00b914 PA:1c00b91c +76072940ns 1387364 1c003e98 00190913 addi x18, x18, 1 x18=1c0088e5 x18:1c0088e4 +76072960ns 1387365 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffffb +76072980ns 1387366 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +76073020ns 1387368 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffffb x14:fffffc00 +76073039ns 1387369 1c003ea4 01458963 beq x11, x20, 18 x11:00000063 x20:0000000a +76073059ns 1387370 1c003ea8 00042783 lw x15, 0(x8) x15=1c00babc x8:1c00b914 PA:1c00b914 +76073099ns 1387372 1c003eaa 00178713 addi x14, x15, 1 x14=1c00babd x15:1c00babc +76073119ns 1387373 1c003eae 00e42023 sw x14, 0(x8) x14:1c00babd x8:1c00b914 PA:1c00b914 +76073138ns 1387374 1c003eb0 00b78023 sb x11, 0(x15) x11:00000063 x15:1c00babc PA:1c00babc +76073158ns 1387375 1c003eb4 f87ff06f jal x0, -122 +76073198ns 1387377 1c003e3a 00842783 lw x15, 8(x8) x15=fffffffb x8:1c00b914 PA:1c00b91c +76073218ns 1387378 1c003e3c 00094583 lbu x11, 0(x18) x11=00000020 x18:1c0088e5 PA:1c0088e5 +76073237ns 1387379 1c003e40 fff78793 addi x15, x15, -1 x15=fffffffa x15:fffffffb +76073257ns 1387380 1c003e42 04059a63 bne x11, x0, 84 x11:00000020 +76073316ns 1387383 1c003e96 00f42423 sw x15, 8(x8) x15:fffffffa x8:1c00b914 PA:1c00b91c +76073336ns 1387384 1c003e98 00190913 addi x18, x18, 1 x18=1c0088e6 x18:1c0088e5 +76073356ns 1387385 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffffa +76073376ns 1387386 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +76073415ns 1387388 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffffa x14:fffffc00 +76073435ns 1387389 1c003ea4 01458963 beq x11, x20, 18 x11:00000020 x20:0000000a +76073455ns 1387390 1c003ea8 00042783 lw x15, 0(x8) x15=1c00babd x8:1c00b914 PA:1c00b914 +76073495ns 1387392 1c003eaa 00178713 addi x14, x15, 1 x14=1c00babe x15:1c00babd +76073514ns 1387393 1c003eae 00e42023 sw x14, 0(x8) x14:1c00babe x8:1c00b914 PA:1c00b914 +76073534ns 1387394 1c003eb0 00b78023 sb x11, 0(x15) x11:00000020 x15:1c00babd PA:1c00babd +76073554ns 1387395 1c003eb4 f87ff06f jal x0, -122 +76073594ns 1387397 1c003e3a 00842783 lw x15, 8(x8) x15=fffffffa x8:1c00b914 PA:1c00b91c +76073613ns 1387398 1c003e3c 00094583 lbu x11, 0(x18) x11=00000063 x18:1c0088e6 PA:1c0088e6 +76073633ns 1387399 1c003e40 fff78793 addi x15, x15, -1 x15=fffffff9 x15:fffffffa +76073653ns 1387400 1c003e42 04059a63 bne x11, x0, 84 x11:00000063 +76073712ns 1387403 1c003e96 00f42423 sw x15, 8(x8) x15:fffffff9 x8:1c00b914 PA:1c00b91c +76073732ns 1387404 1c003e98 00190913 addi x18, x18, 1 x18=1c0088e7 x18:1c0088e6 +76073752ns 1387405 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffff9 +76073772ns 1387406 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +76073811ns 1387408 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffff9 x14:fffffc00 +76073831ns 1387409 1c003ea4 01458963 beq x11, x20, 18 x11:00000063 x20:0000000a +76073851ns 1387410 1c003ea8 00042783 lw x15, 0(x8) x15=1c00babe x8:1c00b914 PA:1c00b914 +76073890ns 1387412 1c003eaa 00178713 addi x14, x15, 1 x14=1c00babf x15:1c00babe +76073910ns 1387413 1c003eae 00e42023 sw x14, 0(x8) x14:1c00babf x8:1c00b914 PA:1c00b914 +76073930ns 1387414 1c003eb0 00b78023 sb x11, 0(x15) x11:00000063 x15:1c00babe PA:1c00babe +76073950ns 1387415 1c003eb4 f87ff06f jal x0, -122 +76073989ns 1387417 1c003e3a 00842783 lw x15, 8(x8) x15=fffffff9 x8:1c00b914 PA:1c00b91c +76074009ns 1387418 1c003e3c 00094583 lbu x11, 0(x18) x11=00000073 x18:1c0088e7 PA:1c0088e7 +76074029ns 1387419 1c003e40 fff78793 addi x15, x15, -1 x15=fffffff8 x15:fffffff9 +76074049ns 1387420 1c003e42 04059a63 bne x11, x0, 84 x11:00000073 +76074108ns 1387423 1c003e96 00f42423 sw x15, 8(x8) x15:fffffff8 x8:1c00b914 PA:1c00b91c +76074128ns 1387424 1c003e98 00190913 addi x18, x18, 1 x18=1c0088e8 x18:1c0088e7 +76074148ns 1387425 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffff8 +76074168ns 1387426 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +76074207ns 1387428 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffff8 x14:fffffc00 +76074227ns 1387429 1c003ea4 01458963 beq x11, x20, 18 x11:00000073 x20:0000000a +76074247ns 1387430 1c003ea8 00042783 lw x15, 0(x8) x15=1c00babf x8:1c00b914 PA:1c00b914 +76074286ns 1387432 1c003eaa 00178713 addi x14, x15, 1 x14=1c00bac0 x15:1c00babf +76074306ns 1387433 1c003eae 00e42023 sw x14, 0(x8) x14:1c00bac0 x8:1c00b914 PA:1c00b914 +76074326ns 1387434 1c003eb0 00b78023 sb x11, 0(x15) x11:00000073 x15:1c00babf PA:1c00babf +76074346ns 1387435 1c003eb4 f87ff06f jal x0, -122 +76074385ns 1387437 1c003e3a 00842783 lw x15, 8(x8) x15=fffffff8 x8:1c00b914 PA:1c00b91c +76074405ns 1387438 1c003e3c 00094583 lbu x11, 0(x18) x11=00000020 x18:1c0088e8 PA:1c0088e8 +76074425ns 1387439 1c003e40 fff78793 addi x15, x15, -1 x15=fffffff7 x15:fffffff8 +76074445ns 1387440 1c003e42 04059a63 bne x11, x0, 84 x11:00000020 +76074504ns 1387443 1c003e96 00f42423 sw x15, 8(x8) x15:fffffff7 x8:1c00b914 PA:1c00b91c +76074524ns 1387444 1c003e98 00190913 addi x18, x18, 1 x18=1c0088e9 x18:1c0088e8 +76074544ns 1387445 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffff7 +76074563ns 1387446 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +76074603ns 1387448 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffff7 x14:fffffc00 +76074623ns 1387449 1c003ea4 01458963 beq x11, x20, 18 x11:00000020 x20:0000000a +76074643ns 1387450 1c003ea8 00042783 lw x15, 0(x8) x15=1c00bac0 x8:1c00b914 PA:1c00b914 +76074682ns 1387452 1c003eaa 00178713 addi x14, x15, 1 x14=1c00bac1 x15:1c00bac0 +76074702ns 1387453 1c003eae 00e42023 sw x14, 0(x8) x14:1c00bac1 x8:1c00b914 PA:1c00b914 +76074722ns 1387454 1c003eb0 00b78023 sb x11, 0(x15) x11:00000020 x15:1c00bac0 PA:1c00bac0 +76074742ns 1387455 1c003eb4 f87ff06f jal x0, -122 +76074781ns 1387457 1c003e3a 00842783 lw x15, 8(x8) x15=fffffff7 x8:1c00b914 PA:1c00b91c +76074801ns 1387458 1c003e3c 00094583 lbu x11, 0(x18) x11=00000061 x18:1c0088e9 PA:1c0088e9 +76074821ns 1387459 1c003e40 fff78793 addi x15, x15, -1 x15=fffffff6 x15:fffffff7 +76074840ns 1387460 1c003e42 04059a63 bne x11, x0, 84 x11:00000061 +76074900ns 1387463 1c003e96 00f42423 sw x15, 8(x8) x15:fffffff6 x8:1c00b914 PA:1c00b91c +76074920ns 1387464 1c003e98 00190913 addi x18, x18, 1 x18=1c0088ea x18:1c0088e9 +76074939ns 1387465 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffff6 +76074959ns 1387466 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +76074999ns 1387468 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffff6 x14:fffffc00 +76075019ns 1387469 1c003ea4 01458963 beq x11, x20, 18 x11:00000061 x20:0000000a +76075038ns 1387470 1c003ea8 00042783 lw x15, 0(x8) x15=1c00bac1 x8:1c00b914 PA:1c00b914 +76075078ns 1387472 1c003eaa 00178713 addi x14, x15, 1 x14=1c00bac2 x15:1c00bac1 +76075098ns 1387473 1c003eae 00e42023 sw x14, 0(x8) x14:1c00bac2 x8:1c00b914 PA:1c00b914 +76075118ns 1387474 1c003eb0 00b78023 sb x11, 0(x15) x11:00000061 x15:1c00bac1 PA:1c00bac1 +76075137ns 1387475 1c003eb4 f87ff06f jal x0, -122 +76075177ns 1387477 1c003e3a 00842783 lw x15, 8(x8) x15=fffffff6 x8:1c00b914 PA:1c00b91c +76075197ns 1387478 1c003e3c 00094583 lbu x11, 0(x18) x11=00000075 x18:1c0088ea PA:1c0088ea +76075217ns 1387479 1c003e40 fff78793 addi x15, x15, -1 x15=fffffff5 x15:fffffff6 +76075236ns 1387480 1c003e42 04059a63 bne x11, x0, 84 x11:00000075 +76075296ns 1387483 1c003e96 00f42423 sw x15, 8(x8) x15:fffffff5 x8:1c00b914 PA:1c00b91c +76075315ns 1387484 1c003e98 00190913 addi x18, x18, 1 x18=1c0088eb x18:1c0088ea +76075335ns 1387485 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffff5 +76075355ns 1387486 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +76075395ns 1387488 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffff5 x14:fffffc00 +76075414ns 1387489 1c003ea4 01458963 beq x11, x20, 18 x11:00000075 x20:0000000a +76075434ns 1387490 1c003ea8 00042783 lw x15, 0(x8) x15=1c00bac2 x8:1c00b914 PA:1c00b914 +76075474ns 1387492 1c003eaa 00178713 addi x14, x15, 1 x14=1c00bac3 x15:1c00bac2 +76075494ns 1387493 1c003eae 00e42023 sw x14, 0(x8) x14:1c00bac3 x8:1c00b914 PA:1c00b914 +76075513ns 1387494 1c003eb0 00b78023 sb x11, 0(x15) x11:00000075 x15:1c00bac2 PA:1c00bac2 +76075533ns 1387495 1c003eb4 f87ff06f jal x0, -122 +76075573ns 1387497 1c003e3a 00842783 lw x15, 8(x8) x15=fffffff5 x8:1c00b914 PA:1c00b91c +76075593ns 1387498 1c003e3c 00094583 lbu x11, 0(x18) x11=00000074 x18:1c0088eb PA:1c0088eb +76075612ns 1387499 1c003e40 fff78793 addi x15, x15, -1 x15=fffffff4 x15:fffffff5 +76075632ns 1387500 1c003e42 04059a63 bne x11, x0, 84 x11:00000074 +76075692ns 1387503 1c003e96 00f42423 sw x15, 8(x8) x15:fffffff4 x8:1c00b914 PA:1c00b91c +76075711ns 1387504 1c003e98 00190913 addi x18, x18, 1 x18=1c0088ec x18:1c0088eb +76075731ns 1387505 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffff4 +76075751ns 1387506 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +76075790ns 1387508 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffff4 x14:fffffc00 +76075810ns 1387509 1c003ea4 01458963 beq x11, x20, 18 x11:00000074 x20:0000000a +76075830ns 1387510 1c003ea8 00042783 lw x15, 0(x8) x15=1c00bac3 x8:1c00b914 PA:1c00b914 +76075870ns 1387512 1c003eaa 00178713 addi x14, x15, 1 x14=1c00bac4 x15:1c00bac3 +76075889ns 1387513 1c003eae 00e42023 sw x14, 0(x8) x14:1c00bac4 x8:1c00b914 PA:1c00b914 +76075909ns 1387514 1c003eb0 00b78023 sb x11, 0(x15) x11:00000074 x15:1c00bac3 PA:1c00bac3 +76075929ns 1387515 1c003eb4 f87ff06f jal x0, -122 +76075969ns 1387517 1c003e3a 00842783 lw x15, 8(x8) x15=fffffff4 x8:1c00b914 PA:1c00b91c +76075988ns 1387518 1c003e3c 00094583 lbu x11, 0(x18) x11=0000006f x18:1c0088ec PA:1c0088ec +76076008ns 1387519 1c003e40 fff78793 addi x15, x15, -1 x15=fffffff3 x15:fffffff4 +76076028ns 1387520 1c003e42 04059a63 bne x11, x0, 84 x11:0000006f +76076087ns 1387523 1c003e96 00f42423 sw x15, 8(x8) x15:fffffff3 x8:1c00b914 PA:1c00b91c +76076107ns 1387524 1c003e98 00190913 addi x18, x18, 1 x18=1c0088ed x18:1c0088ec +76076127ns 1387525 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffff3 +76076147ns 1387526 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +76076186ns 1387528 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffff3 x14:fffffc00 +76076206ns 1387529 1c003ea4 01458963 beq x11, x20, 18 x11:0000006f x20:0000000a +76076226ns 1387530 1c003ea8 00042783 lw x15, 0(x8) x15=1c00bac4 x8:1c00b914 PA:1c00b914 +76076265ns 1387532 1c003eaa 00178713 addi x14, x15, 1 x14=1c00bac5 x15:1c00bac4 +76076285ns 1387533 1c003eae 00e42023 sw x14, 0(x8) x14:1c00bac5 x8:1c00b914 PA:1c00b914 +76076305ns 1387534 1c003eb0 00b78023 sb x11, 0(x15) x11:0000006f x15:1c00bac4 PA:1c00bac4 +76076325ns 1387535 1c003eb4 f87ff06f jal x0, -122 +76076364ns 1387537 1c003e3a 00842783 lw x15, 8(x8) x15=fffffff3 x8:1c00b914 PA:1c00b91c +76076384ns 1387538 1c003e3c 00094583 lbu x11, 0(x18) x11=00000000 x18:1c0088ed PA:1c0088ed +76076404ns 1387539 1c003e40 fff78793 addi x15, x15, -1 x15=fffffff2 x15:fffffff3 +76076424ns 1387540 1c003e42 04059a63 bne x11, x0, 84 x11:00000000 +76076444ns 1387541 1c003e44 00f42423 sw x15, 8(x8) x15:fffffff2 x8:1c00b914 PA:1c00b91c +76076463ns 1387542 1c003e46 0607de63 bge x15, x0, 124 x15:fffffff2 +76076483ns 1387543 1c003e4a 00800633 add x12, x0, x8 x12=1c00b914 x8:1c00b914 +76076503ns 1387544 1c003e4c 00a00593 addi x11, x0, 10 x11=0000000a +76076523ns 1387545 1c003e4e 00900533 add x10, x0, x9 x10=1c009e10 x9:1c009e10 +76076543ns 1387546 1c003e50 25a000ef jal x1, 602 x1=1c003e52 +76076582ns 1387548 1c0040aa fe010113 addi x2, x2, -32 x2=1c009b80 x2:1c009ba0 +76076602ns 1387549 1c0040ac 00812c23 sw x8, 24(x2) x8:1c00b914 x2:1c009b80 PA:1c009b98 +76076622ns 1387550 1c0040ae 00912a23 sw x9, 20(x2) x9:1c009e10 x2:1c009b80 PA:1c009b94 +76076642ns 1387551 1c0040b0 01212823 sw x18, 16(x2) x18:1c0088ed x2:1c009b80 PA:1c009b90 +76076661ns 1387552 1c0040b2 00112e23 sw x1, 28(x2) x1:1c003e52 x2:1c009b80 PA:1c009b9c +76076681ns 1387553 1c0040b4 01312623 sw x19, 12(x2) x19:ffffffff x2:1c009b80 PA:1c009b8c +76076701ns 1387554 1c0040b6 00a004b3 add x9, x0, x10 x9=1c009e10 x10:1c009e10 +76076721ns 1387555 1c0040b8 00b00933 add x18, x0, x11 x18=0000000a x11:0000000a +76076741ns 1387556 1c0040ba 00c00433 add x8, x0, x12 x8=1c00b914 x12:1c00b914 +76076760ns 1387557 1c0040bc 00050463 beq x10, x0, 8 x10:1c009e10 +76076780ns 1387558 1c0040be 01852783 lw x15, 24(x10) x15=00000001 x10:1c009e10 PA:1c009e28 +76076820ns 1387560 1c0040c0 00079263 bne x15, x0, 4 x15:00000001 +76076879ns 1387563 1c0040c4 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76076899ns 1387564 1c0040c8 a1478793 addi x15, x15, -1516 x15=1c008a14 x15:1c009000 +76076919ns 1387565 1c0040cc 06f41963 bne x8, x15, 114 x8:1c00b914 x15:1c008a14 +76076998ns 1387569 1c00413e 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76077018ns 1387570 1c004142 a3478793 addi x15, x15, -1484 x15=1c008a34 x15:1c009000 +76077037ns 1387571 1c004146 00f41463 bne x8, x15, 8 x8:1c00b914 x15:1c008a34 +76077117ns 1387575 1c00414e 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76077136ns 1387576 1c004152 9f478793 addi x15, x15, -1548 x15=1c0089f4 x15:1c009000 +76077156ns 1387577 1c004156 f6f41ee3 bne x8, x15, -132 x8:1c00b914 x15:1c0089f4 +76077216ns 1387580 1c0040d2 01842783 lw x15, 24(x8) x15=fffffc00 x8:1c00b914 PA:1c00b92c +76077255ns 1387582 1c0040d4 00f42423 sw x15, 8(x8) x15:fffffc00 x8:1c00b914 PA:1c00b91c +76077275ns 1387583 1c0040d6 00c45783 lhu x15, 12(x8) x15=00000089 x8:1c00b914 PA:1c00b920 +76077314ns 1387585 1c0040da 0087f793 andi x15, x15, 8 x15=00000008 x15:00000089 +76077334ns 1387586 1c0040dc 08078163 beq x15, x0, 130 x15:00000008 +76077354ns 1387587 1c0040de 01042783 lw x15, 16(x8) x15=1c00bab8 x8:1c00b914 PA:1c00b924 +76077394ns 1387589 1c0040e0 06078f63 beq x15, x0, 126 x15:1c00bab8 +76077413ns 1387590 1c0040e2 01042783 lw x15, 16(x8) x15=1c00bab8 x8:1c00b914 PA:1c00b924 +76077433ns 1387591 1c0040e4 00042503 lw x10, 0(x8) x10=1c00bac5 x8:1c00b914 PA:1c00b914 +76077453ns 1387592 1c0040e6 0ff97993 andi x19, x18, 255 x19=0000000a x18:0000000a +76077473ns 1387593 1c0040ea 0ff97913 andi x18, x18, 255 x18=0000000a x18:0000000a +76077493ns 1387594 1c0040ee 40f50533 sub x10, x10, x15 x10=0000000d x10:1c00bac5 x15:1c00bab8 +76077512ns 1387595 1c0040f0 01442783 lw x15, 20(x8) x15=00000400 x8:1c00b914 PA:1c00b928 +76077552ns 1387597 1c0040f2 00f54663 blt x10, x15, 12 x10:0000000d x15:00000400 +76077611ns 1387600 1c0040fe 00842783 lw x15, 8(x8) x15=fffffc00 x8:1c00b914 PA:1c00b91c +76077631ns 1387601 1c004100 00150513 addi x10, x10, 1 x10=0000000e x10:0000000d +76077651ns 1387602 1c004102 fff78793 addi x15, x15, -1 x15=fffffbff x15:fffffc00 +76077671ns 1387603 1c004104 00f42423 sw x15, 8(x8) x15:fffffbff x8:1c00b914 PA:1c00b91c +76077691ns 1387604 1c004106 00042783 lw x15, 0(x8) x15=1c00bac5 x8:1c00b914 PA:1c00b914 +76077730ns 1387606 1c004108 00178713 addi x14, x15, 1 x14=1c00bac6 x15:1c00bac5 +76077750ns 1387607 1c00410c 00e42023 sw x14, 0(x8) x14:1c00bac6 x8:1c00b914 PA:1c00b914 +76077770ns 1387608 1c00410e 01378023 sb x19, 0(x15) x19:0000000a x15:1c00bac5 PA:1c00bac5 +76077789ns 1387609 1c004112 01442783 lw x15, 20(x8) x15=00000400 x8:1c00b914 PA:1c00b928 +76077829ns 1387611 1c004114 00a78963 beq x15, x10, 18 x15:00000400 x10:0000000e +76077849ns 1387612 1c004118 00c45783 lhu x15, 12(x8) x15=00000089 x8:1c00b914 PA:1c00b920 +76077888ns 1387614 1c00411c 0017f793 andi x15, x15, 1 x15=00000001 x15:00000089 +76077908ns 1387615 1c00411e 00078863 beq x15, x0, 16 x15:00000001 +76077928ns 1387616 1c004120 00a00793 addi x15, x0, 10 x15=0000000a +76077948ns 1387617 1c004122 00f91663 bne x18, x15, 12 x18:0000000a x15:0000000a +76077968ns 1387618 1c004126 008005b3 add x11, x0, x8 x11=1c00b914 x8:1c00b914 +76077987ns 1387619 1c004128 00900533 add x10, x0, x9 x10=1c009e10 x9:1c009e10 +76078007ns 1387620 1c00412a 3d8000ef jal x1, 984 x1=1c00412c +76078047ns 1387622 1c004502 0105a783 lw x15, 16(x11) x15=1c00bab8 x11:1c00b914 PA:1c00b924 +76078086ns 1387624 1c004504 06078063 beq x15, x0, 96 x15:1c00bab8 +76078106ns 1387625 1c004506 fe010113 addi x2, x2, -32 x2=1c009b60 x2:1c009b80 +76078126ns 1387626 1c004508 00812c23 sw x8, 24(x2) x8:1c00b914 x2:1c009b60 PA:1c009b78 +76078146ns 1387627 1c00450a 00112e23 sw x1, 28(x2) x1:1c00412c x2:1c009b60 PA:1c009b7c +76078166ns 1387628 1c00450c 00a00433 add x8, x0, x10 x8=1c009e10 x10:1c009e10 +76078185ns 1387629 1c00450e 00050663 beq x10, x0, 12 x10:1c009e10 +76078205ns 1387630 1c004510 01852783 lw x15, 24(x10) x15=00000001 x10:1c009e10 PA:1c009e28 +76078245ns 1387632 1c004512 00079463 bne x15, x0, 8 x15:00000001 +76078324ns 1387636 1c00451a 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76078344ns 1387637 1c00451e a1478793 addi x15, x15, -1516 x15=1c008a14 x15:1c009000 +76078363ns 1387638 1c004522 00f59c63 bne x11, x15, 24 x11:1c00b914 x15:1c008a14 +76078443ns 1387642 1c00453a 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76078462ns 1387643 1c00453e a3478793 addi x15, x15, -1484 x15=1c008a34 x15:1c009000 +76078482ns 1387644 1c004542 00f59463 bne x11, x15, 8 x11:1c00b914 x15:1c008a34 +76078561ns 1387648 1c00454a 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76078581ns 1387649 1c00454e 9f478793 addi x15, x15, -1548 x15=1c0089f4 x15:1c009000 +76078601ns 1387650 1c004552 fcf59be3 bne x11, x15, -42 x11:1c00b914 x15:1c0089f4 +76078660ns 1387653 1c004528 00c59783 lh x15, 12(x11) x15=00000089 x11:1c00b914 PA:1c00b920 +76078700ns 1387655 1c00452c 02078763 beq x15, x0, 46 x15:00000089 +76078720ns 1387656 1c00452e 00800533 add x10, x0, x8 x10=1c009e10 x8:1c009e10 +76078739ns 1387657 1c004530 01812403 lw x8, 24(x2) x8=1c00b914 x2:1c009b60 PA:1c009b78 +76078759ns 1387658 1c004532 01c12083 lw x1, 28(x2) x1=1c00412c x2:1c009b60 PA:1c009b7c +76078779ns 1387659 1c004534 02010113 addi x2, x2, 32 x2=1c009b80 x2:1c009b60 +76078799ns 1387660 1c004536 e85ff06f jal x0, -380 +76078858ns 1387663 1c0043ba 00c5d783 lhu x15, 12(x11) x15=00000089 x11:1c00b914 PA:1c00b920 +76078878ns 1387664 1c0043be fe010113 addi x2, x2, -32 x2=1c009b60 x2:1c009b80 +76078898ns 1387665 1c0043c0 00812c23 sw x8, 24(x2) x8:1c00b914 x2:1c009b60 PA:1c009b78 +76078918ns 1387666 1c0043c2 00912a23 sw x9, 20(x2) x9:1c009e10 x2:1c009b60 PA:1c009b74 +76078937ns 1387667 1c0043c4 00112e23 sw x1, 28(x2) x1:1c00412c x2:1c009b60 PA:1c009b7c +76078957ns 1387668 1c0043c6 01212823 sw x18, 16(x2) x18:0000000a x2:1c009b60 PA:1c009b70 +76078977ns 1387669 1c0043c8 01312623 sw x19, 12(x2) x19:0000000a x2:1c009b60 PA:1c009b6c +76078997ns 1387670 1c0043ca 0087f713 andi x14, x15, 8 x14=00000008 x15:00000089 +76079017ns 1387671 1c0043ce 00a004b3 add x9, x0, x10 x9=1c009e10 x10:1c009e10 +76079036ns 1387672 1c0043d0 00b00433 add x8, x0, x11 x8=1c00b914 x11:1c00b914 +76079056ns 1387673 1c0043d2 0e071363 bne x14, x0, 230 x14:00000008 +76079116ns 1387676 1c0044b8 0105a983 lw x19, 16(x11) x19=1c00bab8 x11:1c00b914 PA:1c00b924 +76079155ns 1387678 1c0044bc f20982e3 beq x19, x0, -220 x19:1c00bab8 +76079175ns 1387679 1c0044c0 0005a903 lw x18, 0(x11) x18=1c00bac6 x11:1c00b914 PA:1c00b914 +76079195ns 1387680 1c0044c4 0037f793 andi x15, x15, 3 x15=00000001 x15:00000089 +76079215ns 1387681 1c0044c6 0135a023 sw x19, 0(x11) x19:1c00bab8 x11:1c00b914 PA:1c00b914 +76079234ns 1387682 1c0044ca 41390933 sub x18, x18, x19 x18=0000000e x18:1c00bac6 x19:1c00bab8 +76079254ns 1387683 1c0044ce 00000713 addi x14, x0, 0 x14=00000000 +76079274ns 1387684 1c0044d0 00079263 bne x15, x0, 4 x15:00000001 +76079333ns 1387687 1c0044d4 00e42423 sw x14, 8(x8) x14:00000000 x8:1c00b914 PA:1c00b91c +76079353ns 1387688 1c0044d6 f12055e3 bge x0, x18, -246 x18:0000000e +76079373ns 1387689 1c0044da 02842783 lw x15, 40(x8) x15=1c004c5e x8:1c00b914 PA:1c00b93c +76079393ns 1387690 1c0044dc 02042583 lw x11, 32(x8) x11=1c00b914 x8:1c00b914 PA:1c00b934 +76079412ns 1387691 1c0044de 012006b3 add x13, x0, x18 x13=0000000e x18:0000000e +76079432ns 1387692 1c0044e0 01300633 add x12, x0, x19 x12=1c00bab8 x19:1c00bab8 +76079452ns 1387693 1c0044e2 00900533 add x10, x0, x9 x10=1c009e10 x9:1c009e10 +76079472ns 1387694 1c0044e4 000780e7 jalr x1, x15, 0 x1=1c0044e6 x15:1c004c5e +76079531ns 1387697 1c004c5e 00c5d783 lhu x15, 12(x11) x15=00000089 x11:1c00b914 PA:1c00b920 +76079551ns 1387698 1c004c62 fe010113 addi x2, x2, -32 x2=1c009b40 x2:1c009b60 +76079571ns 1387699 1c004c64 00812c23 sw x8, 24(x2) x8:1c00b914 x2:1c009b40 PA:1c009b58 +76079591ns 1387700 1c004c66 00912a23 sw x9, 20(x2) x9:1c009e10 x2:1c009b40 PA:1c009b54 +76079610ns 1387701 1c004c68 01212823 sw x18, 16(x2) x18:0000000e x2:1c009b40 PA:1c009b50 +76079630ns 1387702 1c004c6a 01312623 sw x19, 12(x2) x19:1c00bab8 x2:1c009b40 PA:1c009b4c +76079650ns 1387703 1c004c6c 00112e23 sw x1, 28(x2) x1:1c0044e6 x2:1c009b40 PA:1c009b5c +76079670ns 1387704 1c004c6e 1007f793 andi x15, x15, 256 x15=00000000 x15:00000089 +76079690ns 1387705 1c004c72 00a004b3 add x9, x0, x10 x9=1c009e10 x10:1c009e10 +76079709ns 1387706 1c004c74 00b00433 add x8, x0, x11 x8=1c00b914 x11:1c00b914 +76079729ns 1387707 1c004c76 00c00933 add x18, x0, x12 x18=1c00bab8 x12:1c00bab8 +76079749ns 1387708 1c004c78 00d009b3 add x19, x0, x13 x19=0000000e x13:0000000e +76079769ns 1387709 1c004c7a 00078663 beq x15, x0, 12 x15:00000000 +76079848ns 1387713 1c004c86 00c45783 lhu x15, 12(x8) x15=00000089 x8:1c00b914 PA:1c00b920 +76079868ns 1387714 1c004c8a fffff737 lui x14, 0xfffff000 x14=fffff000 +76079887ns 1387715 1c004c8c fff70713 addi x14, x14, -1 x14=ffffefff x14:fffff000 +76079907ns 1387716 1c004c8e 00e7f7b3 and x15, x15, x14 x15=00000089 x15:00000089 x14:ffffefff +76079927ns 1387717 1c004c90 00e41583 lh x11, 14(x8) x11=00000001 x8:1c00b914 PA:1c00b922 +76079947ns 1387718 1c004c94 00f41623 sh x15, 12(x8) x15:00000089 x8:1c00b914 PA:1c00b920 +76079967ns 1387719 1c004c98 01812403 lw x8, 24(x2) x8=1c00b914 x2:1c009b40 PA:1c009b58 +76079986ns 1387720 1c004c9a 01c12083 lw x1, 28(x2) x1=1c0044e6 x2:1c009b40 PA:1c009b5c +76080006ns 1387721 1c004c9c 013006b3 add x13, x0, x19 x13=0000000e x19:0000000e +76080026ns 1387722 1c004c9e 01200633 add x12, x0, x18 x12=1c00bab8 x18:1c00bab8 +76080046ns 1387723 1c004ca0 00c12983 lw x19, 12(x2) x19=1c00bab8 x2:1c009b40 PA:1c009b4c +76080066ns 1387724 1c004ca2 01012903 lw x18, 16(x2) x18=0000000e x2:1c009b40 PA:1c009b50 +76080085ns 1387725 1c004ca4 00900533 add x10, x0, x9 x10=1c009e10 x9:1c009e10 +76080105ns 1387726 1c004ca6 01412483 lw x9, 20(x2) x9=1c009e10 x2:1c009b40 PA:1c009b54 +76080125ns 1387727 1c004ca8 02010113 addi x2, x2, 32 x2=1c009b60 x2:1c009b40 +76080145ns 1387728 1c004caa 03e0006f jal x0, 62 +76080184ns 1387730 1c004ce8 ff010113 addi x2, x2, -16 x2=1c009b50 x2:1c009b60 +76080204ns 1387731 1c004cea 00812423 sw x8, 8(x2) x8:1c00b914 x2:1c009b50 PA:1c009b58 +76080224ns 1387732 1c004cec 00912223 sw x9, 4(x2) x9:1c009e10 x2:1c009b50 PA:1c009b54 +76080244ns 1387733 1c004cee 00a00433 add x8, x0, x10 x8=1c009e10 x10:1c009e10 +76080263ns 1387734 1c004cf0 00b00533 add x10, x0, x11 x10=00000001 x11:00000001 +76080283ns 1387735 1c004cf2 00c005b3 add x11, x0, x12 x11=1c00bab8 x12:1c00bab8 +76080303ns 1387736 1c004cf4 00d00633 add x12, x0, x13 x12=0000000e x13:0000000e +76080323ns 1387737 1c004cf6 00112623 sw x1, 12(x2) x1:1c0044e6 x2:1c009b50 PA:1c009b5c +76080343ns 1387738 1c004cf8 dc01a023 sw x0, -576(x3) x3:1c0093dc PA:1c00919c +76080362ns 1387739 1c004cfc cf7fd0ef jal x1, -8970 x1=1c004d00 +76080402ns 1387741 1c0029f2 fff50513 addi x10, x10, -1 x10=00000000 x10:00000001 +76080422ns 1387742 1c0029f4 00100793 addi x15, x0, 1 x15=00000001 +76080442ns 1387743 1c0029f6 00c58833 add x16, x11, x12 x16=1c00bac6 x11:1c00bab8 x12:0000000e +76080461ns 1387744 1c0029fa 00a7eb63 bltu x15, x10, 22 x15:00000001 x10:00000000 +76080481ns 1387745 1c0029fe 000026b7 lui x13, 0x2000 x13=00002000 +76080501ns 1387746 1c002a00 f8068693 addi x13, x13, -128 x13=00001f80 x13:00002000 +76080521ns 1387747 1c002a04 1a10f537 lui x10, 0x1a10f000 x10=1a10f000 +76080541ns 1387748 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bab8 x16:1c00bac6 +76080600ns 1387751 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bab9 x11:1c00bab8 +76080620ns 1387752 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000061 x11:1c00bab9 PA:1c00bab8 +76080640ns 1387753 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76080659ns 1387754 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76080679ns 1387755 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76080699ns 1387756 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76080719ns 1387757 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76080738ns 1387758 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76080758ns 1387759 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76080778ns 1387760 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76080798ns 1387761 1c002a38 0117a023 sw x17, 0(x15) x17:00000061 x15:1a10ff80 PA:1a10ff80 +76080818ns 1387762 1c002a3c fcdff06f jal x0, -52 +76080917ns 1387767 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bab9 x16:1c00bac6 +76080976ns 1387770 1c002a1c 00158593 addi x11, x11, 1 x11=1c00baba x11:1c00bab9 +76080996ns 1387771 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000073 x11:1c00baba PA:1c00bab9 +76081016ns 1387772 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76081035ns 1387773 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76081055ns 1387774 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76081075ns 1387775 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76081095ns 1387776 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76081115ns 1387777 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76081134ns 1387778 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76081154ns 1387779 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76081174ns 1387780 1c002a38 0117a023 sw x17, 0(x15) x17:00000073 x15:1a10ff80 PA:1a10ff80 +76081194ns 1387781 1c002a3c fcdff06f jal x0, -52 +76081293ns 1387786 1c002a08 01059a63 bne x11, x16, 20 x11:1c00baba x16:1c00bac6 +76081352ns 1387789 1c002a1c 00158593 addi x11, x11, 1 x11=1c00babb x11:1c00baba +76081372ns 1387790 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000079 x11:1c00babb PA:1c00baba +76081392ns 1387791 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76081411ns 1387792 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76081431ns 1387793 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76081451ns 1387794 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76081471ns 1387795 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76081491ns 1387796 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76081510ns 1387797 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76081530ns 1387798 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76081550ns 1387799 1c002a38 0117a023 sw x17, 0(x15) x17:00000079 x15:1a10ff80 PA:1a10ff80 +76081570ns 1387800 1c002a3c fcdff06f jal x0, -52 +76081669ns 1387805 1c002a08 01059a63 bne x11, x16, 20 x11:1c00babb x16:1c00bac6 +76081728ns 1387808 1c002a1c 00158593 addi x11, x11, 1 x11=1c00babc x11:1c00babb +76081748ns 1387809 1c002a1e fff5c883 lbu x17, -1(x11) x17=0000006e x11:1c00babc PA:1c00babb +76081768ns 1387810 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76081787ns 1387811 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76081807ns 1387812 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76081827ns 1387813 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76081847ns 1387814 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76081867ns 1387815 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76081886ns 1387816 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76081906ns 1387817 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76081926ns 1387818 1c002a38 0117a023 sw x17, 0(x15) x17:0000006e x15:1a10ff80 PA:1a10ff80 +76081946ns 1387819 1c002a3c fcdff06f jal x0, -52 +76082045ns 1387824 1c002a08 01059a63 bne x11, x16, 20 x11:1c00babc x16:1c00bac6 +76082104ns 1387827 1c002a1c 00158593 addi x11, x11, 1 x11=1c00babd x11:1c00babc +76082124ns 1387828 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000063 x11:1c00babd PA:1c00babc +76082144ns 1387829 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76082164ns 1387830 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76082183ns 1387831 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76082203ns 1387832 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76082223ns 1387833 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76082243ns 1387834 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76082262ns 1387835 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76082282ns 1387836 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76082302ns 1387837 1c002a38 0117a023 sw x17, 0(x15) x17:00000063 x15:1a10ff80 PA:1a10ff80 +76082322ns 1387838 1c002a3c fcdff06f jal x0, -52 +76082421ns 1387843 1c002a08 01059a63 bne x11, x16, 20 x11:1c00babd x16:1c00bac6 +76082480ns 1387846 1c002a1c 00158593 addi x11, x11, 1 x11=1c00babe x11:1c00babd +76082500ns 1387847 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000020 x11:1c00babe PA:1c00babd +76082520ns 1387848 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76082540ns 1387849 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76082559ns 1387850 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76082579ns 1387851 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76082599ns 1387852 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76082619ns 1387853 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76082639ns 1387854 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76082658ns 1387855 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76082678ns 1387856 1c002a38 0117a023 sw x17, 0(x15) x17:00000020 x15:1a10ff80 PA:1a10ff80 +76082698ns 1387857 1c002a3c fcdff06f jal x0, -52 +76082797ns 1387862 1c002a08 01059a63 bne x11, x16, 20 x11:1c00babe x16:1c00bac6 +76082856ns 1387865 1c002a1c 00158593 addi x11, x11, 1 x11=1c00babf x11:1c00babe +76082876ns 1387866 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000063 x11:1c00babf PA:1c00babe +76082896ns 1387867 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76082916ns 1387868 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76082935ns 1387869 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76082955ns 1387870 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76082975ns 1387871 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76082995ns 1387872 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76083015ns 1387873 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76083034ns 1387874 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76083054ns 1387875 1c002a38 0117a023 sw x17, 0(x15) x17:00000063 x15:1a10ff80 PA:1a10ff80 +76083074ns 1387876 1c002a3c fcdff06f jal x0, -52 +76083173ns 1387881 1c002a08 01059a63 bne x11, x16, 20 x11:1c00babf x16:1c00bac6 +76083232ns 1387884 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac0 x11:1c00babf +76083252ns 1387885 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000073 x11:1c00bac0 PA:1c00babf +76083272ns 1387886 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76083292ns 1387887 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76083311ns 1387888 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76083331ns 1387889 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76083351ns 1387890 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76083371ns 1387891 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76083391ns 1387892 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76083410ns 1387893 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76083430ns 1387894 1c002a38 0117a023 sw x17, 0(x15) x17:00000073 x15:1a10ff80 PA:1a10ff80 +76083450ns 1387895 1c002a3c fcdff06f jal x0, -52 +76083549ns 1387900 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac0 x16:1c00bac6 +76083608ns 1387903 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac1 x11:1c00bac0 +76083628ns 1387904 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000020 x11:1c00bac1 PA:1c00bac0 +76083648ns 1387905 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76083668ns 1387906 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76083687ns 1387907 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76083707ns 1387908 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76083727ns 1387909 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76083747ns 1387910 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76083767ns 1387911 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76083786ns 1387912 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76083806ns 1387913 1c002a38 0117a023 sw x17, 0(x15) x17:00000020 x15:1a10ff80 PA:1a10ff80 +76083826ns 1387914 1c002a3c fcdff06f jal x0, -52 +76083925ns 1387919 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac1 x16:1c00bac6 +76083984ns 1387922 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac2 x11:1c00bac1 +76084004ns 1387923 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000061 x11:1c00bac2 PA:1c00bac1 +76084024ns 1387924 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76084044ns 1387925 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76084064ns 1387926 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76084083ns 1387927 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76084103ns 1387928 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76084123ns 1387929 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76084143ns 1387930 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76084163ns 1387931 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76084182ns 1387932 1c002a38 0117a023 sw x17, 0(x15) x17:00000061 x15:1a10ff80 PA:1a10ff80 +76084202ns 1387933 1c002a3c fcdff06f jal x0, -52 +76084301ns 1387938 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac2 x16:1c00bac6 +76084360ns 1387941 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac3 x11:1c00bac2 +76084380ns 1387942 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000075 x11:1c00bac3 PA:1c00bac2 +76084400ns 1387943 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76084420ns 1387944 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76084440ns 1387945 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76084459ns 1387946 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76084479ns 1387947 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76084499ns 1387948 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76084519ns 1387949 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76084539ns 1387950 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76084558ns 1387951 1c002a38 0117a023 sw x17, 0(x15) x17:00000075 x15:1a10ff80 PA:1a10ff80 +76084578ns 1387952 1c002a3c fcdff06f jal x0, -52 +76084677ns 1387957 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac3 x16:1c00bac6 +76084736ns 1387960 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac4 x11:1c00bac3 +76084756ns 1387961 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000074 x11:1c00bac4 PA:1c00bac3 +76084776ns 1387962 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76084796ns 1387963 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76084816ns 1387964 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76084835ns 1387965 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76084855ns 1387966 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76084875ns 1387967 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76084895ns 1387968 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76084915ns 1387969 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76084934ns 1387970 1c002a38 0117a023 sw x17, 0(x15) x17:00000074 x15:1a10ff80 PA:1a10ff80 +76084954ns 1387971 1c002a3c fcdff06f jal x0, -52 +76085053ns 1387976 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac4 x16:1c00bac6 +76085113ns 1387979 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac5 x11:1c00bac4 +76085132ns 1387980 1c002a1e fff5c883 lbu x17, -1(x11) x17=0000006f x11:1c00bac5 PA:1c00bac4 +76085152ns 1387981 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76085172ns 1387982 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76085192ns 1387983 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76085211ns 1387984 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76085231ns 1387985 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76085251ns 1387986 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76085271ns 1387987 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76085291ns 1387988 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76085310ns 1387989 1c002a38 0117a023 sw x17, 0(x15) x17:0000006f x15:1a10ff80 PA:1a10ff80 +76085330ns 1387990 1c002a3c fcdff06f jal x0, -52 +76085429ns 1387995 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac5 x16:1c00bac6 +76085489ns 1387998 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac6 x11:1c00bac5 +76085508ns 1387999 1c002a1e fff5c883 lbu x17, -1(x11) x17=0000000a x11:1c00bac6 PA:1c00bac5 +76085528ns 1388000 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76085548ns 1388001 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76085568ns 1388002 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76085588ns 1388003 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76085607ns 1388004 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76085627ns 1388005 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76085647ns 1388006 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76085667ns 1388007 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76085686ns 1388008 1c002a38 0117a023 sw x17, 0(x15) x17:0000000a x15:1a10ff80 PA:1a10ff80 +76085706ns 1388009 1c002a3c fcdff06f jal x0, -52 +76085805ns 1388014 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac6 x16:1c00bac6 +76085825ns 1388015 1c002a0c 00c00533 add x10, x0, x12 x10=0000000e x12:0000000e +76085845ns 1388016 1c002a0e 00008067 jalr x0, x1, 0 x1:1c004d00 +76085884ns 1388018 1c004d00 fff00793 addi x15, x0, -1 x15=ffffffff +76085904ns 1388019 1c004d02 00f51663 bne x10, x15, 12 x10:0000000e x15:ffffffff +76085964ns 1388022 1c004d0e 00c12083 lw x1, 12(x2) x1=1c0044e6 x2:1c009b50 PA:1c009b5c +76085983ns 1388023 1c004d10 00812403 lw x8, 8(x2) x8=1c00b914 x2:1c009b50 PA:1c009b58 +76086003ns 1388024 1c004d12 00412483 lw x9, 4(x2) x9=1c009e10 x2:1c009b50 PA:1c009b54 +76086023ns 1388025 1c004d14 01010113 addi x2, x2, 16 x2=1c009b60 x2:1c009b50 +76086043ns 1388026 1c004d16 00008067 jalr x0, x1, 0 x1:1c0044e6 +76086102ns 1388029 1c0044e6 00a04a63 blt x0, x10, 20 x10:0000000e +76086161ns 1388032 1c0044fa 00a989b3 add x19, x19, x10 x19=1c00bac6 x19:1c00bab8 x10:0000000e +76086181ns 1388033 1c0044fc 40a90933 sub x18, x18, x10 x18=00000000 x18:0000000e x10:0000000e +76086201ns 1388034 1c004500 fd7ff06f jal x0, -42 +76086260ns 1388037 1c0044d6 f12055e3 bge x0, x18, -246 x18:00000000 +76086320ns 1388040 1c0043e0 00000513 addi x10, x0, 0 x10=00000000 +76086340ns 1388041 1c0043e2 0be0006f jal x0, 190 +76086379ns 1388043 1c0044a0 01c12083 lw x1, 28(x2) x1=1c00412c x2:1c009b60 PA:1c009b7c +76086399ns 1388044 1c0044a2 01812403 lw x8, 24(x2) x8=1c00b914 x2:1c009b60 PA:1c009b78 +76086419ns 1388045 1c0044a4 01412483 lw x9, 20(x2) x9=1c009e10 x2:1c009b60 PA:1c009b74 +76086439ns 1388046 1c0044a6 01012903 lw x18, 16(x2) x18=0000000a x2:1c009b60 PA:1c009b70 +76086458ns 1388047 1c0044a8 00c12983 lw x19, 12(x2) x19=0000000a x2:1c009b60 PA:1c009b6c +76086478ns 1388048 1c0044aa 02010113 addi x2, x2, 32 x2=1c009b80 x2:1c009b60 +76086498ns 1388049 1c0044ac 00008067 jalr x0, x1, 0 x1:1c00412c +76086538ns 1388051 1c00412c 02051d63 bne x10, x0, 58 x10:00000000 +76086557ns 1388052 1c00412e 01c12083 lw x1, 28(x2) x1=1c003e52 x2:1c009b80 PA:1c009b9c +76086577ns 1388053 1c004130 01812403 lw x8, 24(x2) x8=1c00b914 x2:1c009b80 PA:1c009b98 +76086597ns 1388054 1c004132 01412483 lw x9, 20(x2) x9=1c009e10 x2:1c009b80 PA:1c009b94 +76086617ns 1388055 1c004134 00c12983 lw x19, 12(x2) x19=ffffffff x2:1c009b80 PA:1c009b8c +76086637ns 1388056 1c004136 01200533 add x10, x0, x18 x10=0000000a x18:0000000a +76086656ns 1388057 1c004138 01012903 lw x18, 16(x2) x18=1c0088ed x2:1c009b80 PA:1c009b90 +76086676ns 1388058 1c00413a 02010113 addi x2, x2, 32 x2=1c009ba0 x2:1c009b80 +76086696ns 1388059 1c00413c 00008067 jalr x0, x1, 0 x1:1c003e52 +76086735ns 1388061 1c003e52 fff00793 addi x15, x0, -1 x15=ffffffff +76086755ns 1388062 1c003e54 02f50863 beq x10, x15, 48 x10:0000000a x15:ffffffff +76086775ns 1388063 1c003e58 00a00513 addi x10, x0, 10 x10=0000000a +76086795ns 1388064 1c003e5a 02c0006f jal x0, 44 +76086834ns 1388066 1c003e86 01c12083 lw x1, 28(x2) x1=1c003600 x2:1c009ba0 PA:1c009bbc +76086854ns 1388067 1c003e88 01812403 lw x8, 24(x2) x8=00000000 x2:1c009ba0 PA:1c009bb8 +76086874ns 1388068 1c003e8a 01412483 lw x9, 20(x2) x9=1c009190 x2:1c009ba0 PA:1c009bb4 +76086894ns 1388069 1c003e8c 01012903 lw x18, 16(x2) x18=1c009188 x2:1c009ba0 PA:1c009bb0 +76086914ns 1388070 1c003e8e 00c12983 lw x19, 12(x2) x19=00000006 x2:1c009ba0 PA:1c009bac +76086933ns 1388071 1c003e90 00812a03 lw x20, 8(x2) x20=1c00918c x2:1c009ba0 PA:1c009ba8 +76086953ns 1388072 1c003e92 02010113 addi x2, x2, 32 x2=1c009bc0 x2:1c009ba0 +76086973ns 1388073 1c003e94 00008067 jalr x0, x1, 0 x1:1c003600 +76087013ns 1388075 1c003600 04810513 addi x10, x2, 72 x10=1c009c08 x2:1c009bc0 +76087032ns 1388076 1c003602 01310b23 sb x19, 22(x2) x19:00000006 x2:1c009bc0 PA:1c009bd6 +76087052ns 1388077 1c003606 e35ff0ef jal x1, -460 x1=1c00360a +76087092ns 1388079 1c00343a ff010113 addi x2, x2, -16 x2=1c009bb0 x2:1c009bc0 +76087112ns 1388080 1c00343c 00812423 sw x8, 8(x2) x8:00000000 x2:1c009bb0 PA:1c009bb8 +76087131ns 1388081 1c00343e 00112623 sw x1, 12(x2) x1:1c00360a x2:1c009bb0 PA:1c009bbc +76087151ns 1388082 1c003440 00100793 addi x15, x0, 1 x15=00000001 +76087171ns 1388083 1c003442 00a00433 add x8, x0, x10 x8=1c009c08 x10:1c009c08 +76087191ns 1388084 1c003444 00f52823 sw x15, 16(x10) x15:00000001 x10:1c009c08 PA:1c009c18 +76087210ns 1388085 1c003446 04050223 sb x0, 68(x10) x10:1c009c08 PA:1c009c4c +76087230ns 1388086 1c00344a 00000593 addi x11, x0, 0 x11=00000000 +76087250ns 1388087 1c00344c 0ff00513 addi x10, x0, 255 x10=000000ff +76087270ns 1388088 1c003450 d33fd0ef jal x1, -8910 x1=1c003454 +76087309ns 1388090 1c001182 ff010113 addi x2, x2, -16 x2=1c009ba0 x2:1c009bb0 +76087329ns 1388091 1c001184 00112623 sw x1, 12(x2) x1:1c003454 x2:1c009ba0 PA:1c009bac +76087349ns 1388092 1c001186 00812423 sw x8, 8(x2) x8:1c009c08 x2:1c009ba0 PA:1c009ba8 +76087369ns 1388093 1c001188 02051163 bne x10, x0, 34 x10:000000ff +76087428ns 1388096 1c0011aa 00b00433 add x8, x0, x11 x8=00000000 x11:00000000 +76087448ns 1388097 1c0011ac 00b57d63 bgeu x10, x11, 26 x10:000000ff x11:00000000 +76087507ns 1388100 1c0011c6 00200613 addi x12, x0, 2 x12=00000002 +76087527ns 1388101 1c0011c8 00000593 addi x11, x0, 0 x11=00000000 +76087547ns 1388102 1c0011ca f4bff0ef jal x1, -182 x1=1c0011cc +76087587ns 1388104 1c001114 fe010113 addi x2, x2, -32 x2=1c009b80 x2:1c009ba0 +76087606ns 1388105 1c001116 00112e23 sw x1, 28(x2) x1:1c0011cc x2:1c009b80 PA:1c009b9c +76087626ns 1388106 1c001118 00812c23 sw x8, 24(x2) x8:00000000 x2:1c009b80 PA:1c009b98 +76087646ns 1388107 1c00111a 00912a23 sw x9, 20(x2) x9:1c009190 x2:1c009b80 PA:1c009b94 +76087666ns 1388108 1c00111c 01212823 sw x18, 16(x2) x18:1c009188 x2:1c009b80 PA:1c009b90 +76087685ns 1388109 1c00111e 01312623 sw x19, 12(x2) x19:00000006 x2:1c009b80 PA:1c009b8c +76087705ns 1388110 1c001120 02051163 bne x10, x0, 34 x10:000000ff +76087765ns 1388113 1c001142 00a00933 add x18, x0, x10 x18=000000ff x10:000000ff +76087784ns 1388114 1c001144 02b50533 mul x10, x10, x11 x10=00000000 x10:000000ff x11:00000000 +76087804ns 1388115 1c001148 00b004b3 add x9, x0, x11 x9=00000000 x11:00000000 +76087824ns 1388116 1c00114a 00c009b3 add x19, x0, x12 x19=00000002 x12:00000002 +76087844ns 1388117 1c00114c 05050513 addi x10, x10, 80 x10=00000050 x10:00000000 +76087864ns 1388118 1c001150 01b010ef jal x1, 6170 x1=1c001154 +76087903ns 1388120 1c00296a fe010113 addi x2, x2, -32 x2=1c009b60 x2:1c009b80 +76087923ns 1388121 1c00296c 00112e23 sw x1, 28(x2) x1:1c001154 x2:1c009b60 PA:1c009b7c +76087943ns 1388122 1c00296e 00812c23 sw x8, 24(x2) x8:00000000 x2:1c009b60 PA:1c009b78 +76087963ns 1388123 1c002970 00a12623 sw x10, 12(x2) x10:00000050 x2:1c009b60 PA:1c009b6c +76087982ns 1388124 1c002972 8a4ff0ef jal x1, -3932 x1=1c002976 +76088042ns 1388127 1c001a16 d6818793 addi x15, x3, -664 x15=1c009144 x3:1c0093dc +76088062ns 1388128 1c001a1a 0007a703 lw x14, 0(x15) x14=00000000 x15:1c009144 PA:1c009144 +76088101ns 1388130 1c001a1c 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76088121ns 1388131 1c001a1e 00e7a023 sw x14, 0(x15) x14:00000001 x15:1c009144 PA:1c009144 +76088141ns 1388132 1c001a20 00008067 jalr x0, x1, 0 x1:1c002976 +76088180ns 1388134 1c002976 00c12503 lw x10, 12(x2) x10=00000050 x2:1c009b60 PA:1c009b6c +76088200ns 1388135 1c002978 791000ef jal x1, 3984 x1=1c00297c +76088240ns 1388137 1c003908 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76088259ns 1388138 1c00390c 00a005b3 add x11, x0, x10 x11=00000050 x10:00000050 +76088279ns 1388139 1c00390e c447a503 lw x10, -956(x15) x10=1c009e10 x15:1c009000 PA:1c008c44 +76088299ns 1388140 1c003912 0b60006f jal x0, 182 +76088339ns 1388142 1c0039c8 fe010113 addi x2, x2, -32 x2=1c009b40 x2:1c009b60 +76088358ns 1388143 1c0039ca 00912a23 sw x9, 20(x2) x9:00000000 x2:1c009b40 PA:1c009b54 +76088378ns 1388144 1c0039cc 00358493 addi x9, x11, 3 x9=00000053 x11:00000050 +76088398ns 1388145 1c0039d0 ffc4f493 andi x9, x9, -4 x9=00000050 x9:00000053 +76088418ns 1388146 1c0039d2 01212823 sw x18, 16(x2) x18:000000ff x2:1c009b40 PA:1c009b50 +76088438ns 1388147 1c0039d4 00112e23 sw x1, 28(x2) x1:1c00297c x2:1c009b40 PA:1c009b5c +76088457ns 1388148 1c0039d6 00812c23 sw x8, 24(x2) x8:00000000 x2:1c009b40 PA:1c009b58 +76088477ns 1388149 1c0039d8 01312623 sw x19, 12(x2) x19:00000002 x2:1c009b40 PA:1c009b4c +76088497ns 1388150 1c0039da 00848493 addi x9, x9, 8 x9=00000058 x9:00000050 +76088517ns 1388151 1c0039dc 00c00793 addi x15, x0, 12 x15=0000000c +76088537ns 1388152 1c0039de 00a00933 add x18, x0, x10 x18=1c009e10 x10:1c009e10 +76088556ns 1388153 1c0039e0 04f4f363 bgeu x9, x15, 70 x9:00000058 x15:0000000c +76088635ns 1388157 1c003a26 fc04d0e3 bge x9, x0, -64 x9:00000058 +76088715ns 1388161 1c0039e6 04b4e263 bltu x9, x11, 68 x9:00000058 x11:00000050 +76088734ns 1388162 1c0039ea 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +76088754ns 1388163 1c0039ec 87aff0ef jal x1, -3974 x1=1c0039f0 +76088814ns 1388166 1c002a66 fb1fe06f jal x0, -4176 +76088873ns 1388169 1c001a16 d6818793 addi x15, x3, -664 x15=1c009144 x3:1c0093dc +76088893ns 1388170 1c001a1a 0007a703 lw x14, 0(x15) x14=00000001 x15:1c009144 PA:1c009144 +76088932ns 1388172 1c001a1c 00170713 addi x14, x14, 1 x14=00000002 x14:00000001 +76088952ns 1388173 1c001a1e 00e7a023 sw x14, 0(x15) x14:00000002 x15:1c009144 PA:1c009144 +76088972ns 1388174 1c001a20 00008067 jalr x0, x1, 0 x1:1c0039f0 +76089012ns 1388176 1c0039f0 db81a703 lw x14, -584(x3) x14=00000000 x3:1c0093dc PA:1c009194 +76089031ns 1388177 1c0039f4 db818693 addi x13, x3, -584 x13=1c009194 x3:1c0093dc +76089051ns 1388178 1c0039f8 00e00433 add x8, x0, x14 x8=00000000 x14:00000000 +76089071ns 1388179 1c0039fa 04041363 bne x8, x0, 70 x8:00000000 +76089091ns 1388180 1c0039fc dbc18413 addi x8, x3, -580 x8=1c009198 x3:1c0093dc +76089111ns 1388181 1c003a00 00042783 lw x15, 0(x8) x15=1c0091b0 x8:1c009198 PA:1c009198 +76089150ns 1388183 1c003a02 00079563 bne x15, x0, 10 x15:1c0091b0 +76089209ns 1388186 1c003a0c 009005b3 add x11, x0, x9 x11=00000058 x9:00000058 +76089229ns 1388187 1c003a0e 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +76089249ns 1388188 1c003a10 5cc000ef jal x1, 1484 x1=1c003a12 +76089289ns 1388190 1c003fdc ff010113 addi x2, x2, -16 x2=1c009b30 x2:1c009b40 +76089308ns 1388191 1c003fde 00812423 sw x8, 8(x2) x8:1c009198 x2:1c009b30 PA:1c009b38 +76089328ns 1388192 1c003fe0 00912223 sw x9, 4(x2) x9:00000058 x2:1c009b30 PA:1c009b34 +76089348ns 1388193 1c003fe2 00a00433 add x8, x0, x10 x8=1c009e10 x10:1c009e10 +76089368ns 1388194 1c003fe4 00b00533 add x10, x0, x11 x10=00000058 x11:00000058 +76089388ns 1388195 1c003fe6 00112623 sw x1, 12(x2) x1:1c003a12 x2:1c009b30 PA:1c009b3c +76089407ns 1388196 1c003fe8 dc01a023 sw x0, -576(x3) x3:1c0093dc PA:1c00919c +76089427ns 1388197 1c003fec a53fe0ef jal x1, -5550 x1=1c003ff0 +76089487ns 1388200 1c002a3e 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76089506ns 1388201 1c002a42 c3c78793 addi x15, x15, -964 x15=1c008c3c x15:1c009000 +76089526ns 1388202 1c002a46 00a00733 add x14, x0, x10 x14=00000058 x10:00000058 +76089546ns 1388203 1c002a48 0007a503 lw x10, 0(x15) x10=1c00c1d4 x15:1c008c3c PA:1c008c3c +76089566ns 1388204 1c002a4a 1c0196b7 lui x13, 0x1c019000 x13=1c019000 +76089586ns 1388205 1c002a4e 1b068693 addi x13, x13, 432 x13=1c0191b0 x13:1c019000 +76089605ns 1388206 1c002a52 00a70733 add x14, x14, x10 x14=1c00c22c x14:00000058 x10:1c00c1d4 +76089625ns 1388207 1c002a54 00d76763 bltu x14, x13, 14 x14:1c00c22c x13:1c0191b0 +76089684ns 1388210 1c002a62 00e7a023 sw x14, 0(x15) x14:1c00c22c x15:1c008c3c PA:1c008c3c +76089704ns 1388211 1c002a64 00008067 jalr x0, x1, 0 x1:1c003ff0 +76089744ns 1388213 1c003ff0 fff00793 addi x15, x0, -1 x15=ffffffff +76089764ns 1388214 1c003ff2 00f51663 bne x10, x15, 12 x10:1c00c1d4 x15:ffffffff +76089823ns 1388217 1c003ffe 00c12083 lw x1, 12(x2) x1=1c003a12 x2:1c009b30 PA:1c009b3c +76089843ns 1388218 1c004000 00812403 lw x8, 8(x2) x8=1c009198 x2:1c009b30 PA:1c009b38 +76089863ns 1388219 1c004002 00412483 lw x9, 4(x2) x9=00000058 x2:1c009b30 PA:1c009b34 +76089882ns 1388220 1c004004 01010113 addi x2, x2, 16 x2=1c009b40 x2:1c009b30 +76089902ns 1388221 1c004006 00008067 jalr x0, x1, 0 x1:1c003a12 +76089942ns 1388223 1c003a12 fff00993 addi x19, x0, -1 x19=ffffffff +76089962ns 1388224 1c003a14 07351a63 bne x10, x19, 116 x10:1c00c1d4 x19:ffffffff +76090021ns 1388227 1c003a88 00350413 addi x8, x10, 3 x8=1c00c1d7 x10:1c00c1d4 +76090041ns 1388228 1c003a8c ffc47413 andi x8, x8, -4 x8=1c00c1d4 x8:1c00c1d7 +76090061ns 1388229 1c003a8e fc8502e3 beq x10, x8, -60 x10:1c00c1d4 x8:1c00c1d4 +76090120ns 1388232 1c003a52 00942023 sw x9, 0(x8) x9:00000058 x8:1c00c1d4 PA:1c00c1d4 +76090140ns 1388233 1c003a54 00a0006f jal x0, 10 +76090179ns 1388235 1c003a5e 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +76090199ns 1388236 1c003a60 80aff0ef jal x1, -4086 x1=1c003a64 +76090258ns 1388239 1c002a6a 8e3ff06f jal x0, -1822 +76090298ns 1388241 1c00234c fc010113 addi x2, x2, -64 x2=1c009b00 x2:1c009b40 +76090318ns 1388242 1c00234e 02812c23 sw x8, 56(x2) x8:1c00c1d4 x2:1c009b00 PA:1c009b38 +76090338ns 1388243 1c002350 d6818413 addi x8, x3, -664 x8=1c009144 x3:1c0093dc +76090357ns 1388244 1c002354 00042783 lw x15, 0(x8) x15=00000002 x8:1c009144 PA:1c009144 +76090377ns 1388245 1c002356 02112e23 sw x1, 60(x2) x1:1c003a64 x2:1c009b00 PA:1c009b3c +76090397ns 1388246 1c002358 02912a23 sw x9, 52(x2) x9:00000058 x2:1c009b00 PA:1c009b34 +76090417ns 1388247 1c00235a 03212823 sw x18, 48(x2) x18:1c009e10 x2:1c009b00 PA:1c009b30 +76090437ns 1388248 1c00235c 03312623 sw x19, 44(x2) x19:ffffffff x2:1c009b00 PA:1c009b2c +76090456ns 1388249 1c00235e 03412423 sw x20, 40(x2) x20:1c00918c x2:1c009b00 PA:1c009b28 +76090476ns 1388250 1c002360 03512223 sw x21, 36(x2) x21:a5a5a5a5 x2:1c009b00 PA:1c009b24 +76090496ns 1388251 1c002362 03612023 sw x22, 32(x2) x22:a5a5a5a5 x2:1c009b00 PA:1c009b20 +76090516ns 1388252 1c002364 01712e23 sw x23, 28(x2) x23:a5a5a5a5 x2:1c009b00 PA:1c009b1c +76090536ns 1388253 1c002366 02079263 bne x15, x0, 36 x15:00000002 +76090615ns 1388257 1c00238a c83ff0ef jal x1, -894 x1=1c00238e +76090654ns 1388259 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +76090733ns 1388263 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76090773ns 1388265 1c002014 00078863 beq x15, x0, 16 x15:00000001 +76090793ns 1388266 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76090813ns 1388267 1c00201a 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76090832ns 1388268 1c00201c 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76090852ns 1388269 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c009db8 PA:1c009dfc +76090892ns 1388271 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76090912ns 1388272 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c009db8 PA:1c009dfc +76090931ns 1388273 1c002024 00008067 jalr x0, x1, 0 x1:1c00238e +76090971ns 1388275 1c00238e 00042783 lw x15, 0(x8) x15=00000002 x8:1c009144 PA:1c009144 +76091011ns 1388277 1c002390 fff78793 addi x15, x15, -1 x15=00000001 x15:00000002 +76091030ns 1388278 1c002392 00f42023 sw x15, 0(x8) x15:00000001 x8:1c009144 PA:1c009144 +76091050ns 1388279 1c002394 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +76091090ns 1388281 1c002396 02078163 beq x15, x0, 34 x15:00000001 +76091109ns 1388282 1c002398 00000513 addi x10, x0, 0 x10=00000000 +76091129ns 1388283 1c00239a 00a12623 sw x10, 12(x2) x10:00000000 x2:1c009b00 PA:1c009b0c +76091149ns 1388284 1c00239c c8bff0ef jal x1, -886 x1=1c0023a0 +76091208ns 1388287 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76091248ns 1388289 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +76091268ns 1388290 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76091288ns 1388291 1c002030 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +76091327ns 1388293 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c009db8 PA:1c009dfc +76091367ns 1388295 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +76091387ns 1388296 1c002036 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76091406ns 1388297 1c002038 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76091426ns 1388298 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c009db8 PA:1c009dfc +76091466ns 1388300 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +76091486ns 1388301 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c009db8 PA:1c009dfc +76091505ns 1388302 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c009db8 PA:1c009dfc +76091545ns 1388304 1c002042 00079363 bne x15, x0, 6 x15:00000000 +76091565ns 1388305 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +76091644ns 1388309 1c002048 00008067 jalr x0, x1, 0 x1:1c0023a0 +76091683ns 1388311 1c0023a0 03c12083 lw x1, 60(x2) x1=1c003a64 x2:1c009b00 PA:1c009b3c +76091703ns 1388312 1c0023a2 03812403 lw x8, 56(x2) x8=1c00c1d4 x2:1c009b00 PA:1c009b38 +76091723ns 1388313 1c0023a4 00c12503 lw x10, 12(x2) x10=00000000 x2:1c009b00 PA:1c009b0c +76091743ns 1388314 1c0023a6 03412483 lw x9, 52(x2) x9=00000058 x2:1c009b00 PA:1c009b34 +76091763ns 1388315 1c0023a8 03012903 lw x18, 48(x2) x18=1c009e10 x2:1c009b00 PA:1c009b30 +76091782ns 1388316 1c0023aa 02c12983 lw x19, 44(x2) x19=ffffffff x2:1c009b00 PA:1c009b2c +76091802ns 1388317 1c0023ac 02812a03 lw x20, 40(x2) x20=1c00918c x2:1c009b00 PA:1c009b28 +76091822ns 1388318 1c0023ae 02412a83 lw x21, 36(x2) x21=a5a5a5a5 x2:1c009b00 PA:1c009b24 +76091842ns 1388319 1c0023b0 02012b03 lw x22, 32(x2) x22=a5a5a5a5 x2:1c009b00 PA:1c009b20 +76091862ns 1388320 1c0023b2 01c12b83 lw x23, 28(x2) x23=a5a5a5a5 x2:1c009b00 PA:1c009b1c +76091881ns 1388321 1c0023b4 04010113 addi x2, x2, 64 x2=1c009b40 x2:1c009b00 +76091901ns 1388322 1c0023b6 00008067 jalr x0, x1, 0 x1:1c003a64 +76091941ns 1388324 1c003a64 00b40513 addi x10, x8, 11 x10=1c00c1df x8:1c00c1d4 +76091961ns 1388325 1c003a68 00440793 addi x15, x8, 4 x15=1c00c1d8 x8:1c00c1d4 +76091980ns 1388326 1c003a6c ff857513 andi x10, x10, -8 x10=1c00c1d8 x10:1c00c1df +76092000ns 1388327 1c003a6e 40f50733 sub x14, x10, x15 x14=00000000 x10:1c00c1d8 x15:1c00c1d8 +76092020ns 1388328 1c003a72 fcf500e3 beq x10, x15, -64 x10:1c00c1d8 x15:1c00c1d8 +76092079ns 1388331 1c003a32 01c12083 lw x1, 28(x2) x1=1c00297c x2:1c009b40 PA:1c009b5c +76092099ns 1388332 1c003a34 01812403 lw x8, 24(x2) x8=00000000 x2:1c009b40 PA:1c009b58 +76092119ns 1388333 1c003a36 01412483 lw x9, 20(x2) x9=00000000 x2:1c009b40 PA:1c009b54 +76092139ns 1388334 1c003a38 01012903 lw x18, 16(x2) x18=000000ff x2:1c009b40 PA:1c009b50 +76092158ns 1388335 1c003a3a 00c12983 lw x19, 12(x2) x19=00000002 x2:1c009b40 PA:1c009b4c +76092178ns 1388336 1c003a3c 02010113 addi x2, x2, 32 x2=1c009b60 x2:1c009b40 +76092198ns 1388337 1c003a3e 00008067 jalr x0, x1, 0 x1:1c00297c +76092238ns 1388339 1c00297c 00a00433 add x8, x0, x10 x8=1c00c1d8 x10:1c00c1d8 +76092257ns 1388340 1c00297e 9cfff0ef jal x1, -1586 x1=1c002982 +76092297ns 1388342 1c00234c fc010113 addi x2, x2, -64 x2=1c009b20 x2:1c009b60 +76092317ns 1388343 1c00234e 02812c23 sw x8, 56(x2) x8:1c00c1d8 x2:1c009b20 PA:1c009b58 +76092337ns 1388344 1c002350 d6818413 addi x8, x3, -664 x8=1c009144 x3:1c0093dc +76092356ns 1388345 1c002354 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +76092376ns 1388346 1c002356 02112e23 sw x1, 60(x2) x1:1c002982 x2:1c009b20 PA:1c009b5c +76092396ns 1388347 1c002358 02912a23 sw x9, 52(x2) x9:00000000 x2:1c009b20 PA:1c009b54 +76092416ns 1388348 1c00235a 03212823 sw x18, 48(x2) x18:000000ff x2:1c009b20 PA:1c009b50 +76092436ns 1388349 1c00235c 03312623 sw x19, 44(x2) x19:00000002 x2:1c009b20 PA:1c009b4c +76092455ns 1388350 1c00235e 03412423 sw x20, 40(x2) x20:1c00918c x2:1c009b20 PA:1c009b48 +76092475ns 1388351 1c002360 03512223 sw x21, 36(x2) x21:a5a5a5a5 x2:1c009b20 PA:1c009b44 +76092495ns 1388352 1c002362 03612023 sw x22, 32(x2) x22:a5a5a5a5 x2:1c009b20 PA:1c009b40 +76092515ns 1388353 1c002364 01712e23 sw x23, 28(x2) x23:a5a5a5a5 x2:1c009b20 PA:1c009b3c +76092535ns 1388354 1c002366 02079263 bne x15, x0, 36 x15:00000001 +76092614ns 1388358 1c00238a c83ff0ef jal x1, -894 x1=1c00238e +76092653ns 1388360 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +76092732ns 1388364 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76092772ns 1388366 1c002014 00078863 beq x15, x0, 16 x15:00000001 +76092792ns 1388367 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76092812ns 1388368 1c00201a 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76092831ns 1388369 1c00201c 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76092851ns 1388370 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c009db8 PA:1c009dfc +76092891ns 1388372 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76092911ns 1388373 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c009db8 PA:1c009dfc +76092930ns 1388374 1c002024 00008067 jalr x0, x1, 0 x1:1c00238e +76092970ns 1388376 1c00238e 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +76093010ns 1388378 1c002390 fff78793 addi x15, x15, -1 x15=00000000 x15:00000001 +76093029ns 1388379 1c002392 00f42023 sw x15, 0(x8) x15:00000000 x8:1c009144 PA:1c009144 +76093049ns 1388380 1c002394 00042783 lw x15, 0(x8) x15=00000000 x8:1c009144 PA:1c009144 +76093089ns 1388382 1c002396 02078163 beq x15, x0, 34 x15:00000000 +76093148ns 1388385 1c0023b8 d601a783 lw x15, -672(x3) x15=00000003 x3:1c0093dc PA:1c00913c +76093188ns 1388387 1c0023bc fc078ee3 beq x15, x0, -36 x15:00000003 +76093207ns 1388388 1c0023be 1c009937 lui x18, 0x1c009000 x18=1c009000 +76093227ns 1388389 1c0023c2 00000413 addi x8, x0, 0 x8=00000000 +76093247ns 1388390 1c0023c4 93818493 addi x9, x3, -1736 x9=1c008d14 x3:1c0093dc +76093267ns 1388391 1c0023c8 00100993 addi x19, x0, 1 x19=00000001 +76093287ns 1388392 1c0023ca c8890913 addi x18, x18, -888 x18=1c008c88 x18:1c009000 +76093306ns 1388393 1c0023ce 01400a93 addi x21, x0, 20 x21=00000014 +76093326ns 1388394 1c0023d0 04c0006f jal x0, 76 +76093366ns 1388396 1c00241c 0004a783 lw x15, 0(x9) x15=00000000 x9:1c008d14 PA:1c008d14 +76093405ns 1388398 1c00241e fa079ae3 bne x15, x0, -76 x15:00000000 +76093425ns 1388399 1c002420 00040363 beq x8, x0, 6 x8:00000000 +76093504ns 1388403 1c002426 d8018713 addi x14, x3, -640 x14=1c00915c x3:1c0093dc +76093524ns 1388404 1c00242a 00072483 lw x9, 0(x14) x9=00000000 x14:1c00915c PA:1c00915c +76093544ns 1388405 1c00242c d8018413 addi x8, x3, -640 x8=1c00915c x3:1c0093dc +76093564ns 1388406 1c002430 00048d63 beq x9, x0, 26 x9:00000000 +76093643ns 1388410 1c00244a d8c1a783 lw x15, -628(x3) x15=00000000 x3:1c0093dc PA:1c009168 +76093682ns 1388412 1c00244e f40785e3 beq x15, x0, -182 x15:00000000 +76093742ns 1388415 1c002398 00000513 addi x10, x0, 0 x10=00000000 +76093762ns 1388416 1c00239a 00a12623 sw x10, 12(x2) x10:00000000 x2:1c009b20 PA:1c009b2c +76093781ns 1388417 1c00239c c8bff0ef jal x1, -886 x1=1c0023a0 +76093841ns 1388420 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76093880ns 1388422 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +76093900ns 1388423 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76093920ns 1388424 1c002030 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +76093960ns 1388426 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c009db8 PA:1c009dfc +76093999ns 1388428 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +76094019ns 1388429 1c002036 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76094039ns 1388430 1c002038 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76094059ns 1388431 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c009db8 PA:1c009dfc +76094098ns 1388433 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +76094118ns 1388434 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c009db8 PA:1c009dfc +76094138ns 1388435 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c009db8 PA:1c009dfc +76094177ns 1388437 1c002042 00079363 bne x15, x0, 6 x15:00000000 +76094197ns 1388438 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +76094276ns 1388442 1c002048 00008067 jalr x0, x1, 0 x1:1c0023a0 +76094316ns 1388444 1c0023a0 03c12083 lw x1, 60(x2) x1=1c002982 x2:1c009b20 PA:1c009b5c +76094336ns 1388445 1c0023a2 03812403 lw x8, 56(x2) x8=1c00c1d8 x2:1c009b20 PA:1c009b58 +76094355ns 1388446 1c0023a4 00c12503 lw x10, 12(x2) x10=00000000 x2:1c009b20 PA:1c009b2c +76094375ns 1388447 1c0023a6 03412483 lw x9, 52(x2) x9=00000000 x2:1c009b20 PA:1c009b54 +76094395ns 1388448 1c0023a8 03012903 lw x18, 48(x2) x18=000000ff x2:1c009b20 PA:1c009b50 +76094415ns 1388449 1c0023aa 02c12983 lw x19, 44(x2) x19=00000002 x2:1c009b20 PA:1c009b4c +76094435ns 1388450 1c0023ac 02812a03 lw x20, 40(x2) x20=1c00918c x2:1c009b20 PA:1c009b48 +76094454ns 1388451 1c0023ae 02412a83 lw x21, 36(x2) x21=a5a5a5a5 x2:1c009b20 PA:1c009b44 +76094474ns 1388452 1c0023b0 02012b03 lw x22, 32(x2) x22=a5a5a5a5 x2:1c009b20 PA:1c009b40 +76094494ns 1388453 1c0023b2 01c12b83 lw x23, 28(x2) x23=a5a5a5a5 x2:1c009b20 PA:1c009b3c +76094514ns 1388454 1c0023b4 04010113 addi x2, x2, 64 x2=1c009b60 x2:1c009b20 +76094534ns 1388455 1c0023b6 00008067 jalr x0, x1, 0 x1:1c002982 +76094573ns 1388457 1c002982 00041363 bne x8, x0, 6 x8:1c00c1d8 +76094632ns 1388460 1c002988 01c12083 lw x1, 28(x2) x1=1c001154 x2:1c009b60 PA:1c009b7c +76094652ns 1388461 1c00298a 00800533 add x10, x0, x8 x10=1c00c1d8 x8:1c00c1d8 +76094672ns 1388462 1c00298c 01812403 lw x8, 24(x2) x8=00000000 x2:1c009b60 PA:1c009b78 +76094692ns 1388463 1c00298e 02010113 addi x2, x2, 32 x2=1c009b80 x2:1c009b60 +76094712ns 1388464 1c002990 00008067 jalr x0, x1, 0 x1:1c001154 +76094751ns 1388466 1c001154 00a00433 add x8, x0, x10 x8=1c00c1d8 x10:1c00c1d8 +76094771ns 1388467 1c001156 00050e63 beq x10, x0, 28 x10:1c00c1d8 +76094791ns 1388468 1c001158 00a007b3 add x15, x0, x10 x15=1c00c1d8 x10:1c00c1d8 +76094811ns 1388469 1c00115a 00048363 beq x9, x0, 6 x9:00000000 +76094870ns 1388472 1c001160 00f42023 sw x15, 0(x8) x15:1c00c1d8 x8:1c00c1d8 PA:1c00c1d8 +76094890ns 1388473 1c001162 03242e23 sw x18, 60(x8) x18:000000ff x8:1c00c1d8 PA:1c00c214 +76094910ns 1388474 1c001166 04942023 sw x9, 64(x8) x9:00000000 x8:1c00c1d8 PA:1c00c218 +76094929ns 1388475 1c001168 00100593 addi x11, x0, 1 x11=00000001 +76094949ns 1388476 1c00116a 00800533 add x10, x0, x8 x10=1c00c1d8 x8:1c00c1d8 +76094969ns 1388477 1c00116c f1fff0ef jal x1, -226 x1=1c00116e +76095009ns 1388479 1c00108a ff010113 addi x2, x2, -16 x2=1c009b70 x2:1c009b80 +76095028ns 1388480 1c00108c 00112623 sw x1, 12(x2) x1:1c00116e x2:1c009b70 PA:1c009b7c +76095048ns 1388481 1c00108e 00812423 sw x8, 8(x2) x8:1c00c1d8 x2:1c009b70 PA:1c009b78 +76095068ns 1388482 1c001090 00912223 sw x9, 4(x2) x9:00000000 x2:1c009b70 PA:1c009b74 +76095088ns 1388483 1c001092 02051163 bne x10, x0, 34 x10:1c00c1d8 +76095147ns 1388486 1c0010b4 00a00433 add x8, x0, x10 x8=1c00c1d8 x10:1c00c1d8 +76095167ns 1388487 1c0010b6 00b004b3 add x9, x0, x11 x9=00000001 x11:00000001 +76095187ns 1388488 1c0010b8 755000ef jal x1, 3924 x1=1c0010bc +76095226ns 1388490 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +76095305ns 1388494 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76095345ns 1388496 1c002014 00078863 beq x15, x0, 16 x15:00000001 +76095365ns 1388497 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76095385ns 1388498 1c00201a 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76095404ns 1388499 1c00201c 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76095424ns 1388500 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c009db8 PA:1c009dfc +76095464ns 1388502 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76095484ns 1388503 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c009db8 PA:1c009dfc +76095503ns 1388504 1c002024 00008067 jalr x0, x1, 0 x1:1c0010bc +76095543ns 1388506 1c0010bc 04042683 lw x13, 64(x8) x13=00000000 x8:1c00c1d8 PA:1c00c218 +76095563ns 1388507 1c0010be 03c42783 lw x15, 60(x8) x15=000000ff x8:1c00c1d8 PA:1c00c214 +76095582ns 1388508 1c0010c0 00042703 lw x14, 0(x8) x14=1c00c1d8 x8:1c00c1d8 PA:1c00c1d8 +76095602ns 1388509 1c0010c2 02042c23 sw x0, 56(x8) x8:1c00c1d8 PA:1c00c210 +76095622ns 1388510 1c0010c6 02f687b3 mul x15, x13, x15 x15=00000000 x13:00000000 x15:000000ff +76095642ns 1388511 1c0010ca 00e42223 sw x14, 4(x8) x14:1c00c1d8 x8:1c00c1d8 PA:1c00c1dc +76095662ns 1388512 1c0010cc 00f70633 add x12, x14, x15 x12=1c00c1d8 x14:1c00c1d8 x15:00000000 +76095681ns 1388513 1c0010d0 40d787b3 sub x15, x15, x13 x15=00000000 x15:00000000 x13:00000000 +76095701ns 1388514 1c0010d2 00e787b3 add x15, x15, x14 x15=1c00c1d8 x15:00000000 x14:1c00c1d8 +76095721ns 1388515 1c0010d4 00f42623 sw x15, 12(x8) x15:1c00c1d8 x8:1c00c1d8 PA:1c00c1e4 +76095741ns 1388516 1c0010d6 fff00793 addi x15, x0, -1 x15=ffffffff +76095761ns 1388517 1c0010d8 04f40223 sb x15, 68(x8) x15:ffffffff x8:1c00c1d8 PA:1c00c21c +76095780ns 1388518 1c0010dc 00c42423 sw x12, 8(x8) x12:1c00c1d8 x8:1c00c1d8 PA:1c00c1e0 +76095800ns 1388519 1c0010de 04f402a3 sb x15, 69(x8) x15:ffffffff x8:1c00c1d8 PA:1c00c21d +76095820ns 1388520 1c0010e2 02049263 bne x9, x0, 36 x9:00000001 +76095899ns 1388524 1c001106 01040513 addi x10, x8, 16 x10=1c00c1e8 x8:1c00c1d8 +76095919ns 1388525 1c00110a dbdff0ef jal x1, -580 x1=1c00110c +76095978ns 1388528 1c000ec6 00850793 addi x15, x10, 8 x15=1c00c1f0 x10:1c00c1e8 +76095998ns 1388529 1c000eca fff00713 addi x14, x0, -1 x14=ffffffff +76096018ns 1388530 1c000ecc 00f52223 sw x15, 4(x10) x15:1c00c1f0 x10:1c00c1e8 PA:1c00c1ec +76096038ns 1388531 1c000ece 00e52423 sw x14, 8(x10) x14:ffffffff x10:1c00c1e8 PA:1c00c1f0 +76096057ns 1388532 1c000ed0 00f52623 sw x15, 12(x10) x15:1c00c1f0 x10:1c00c1e8 PA:1c00c1f4 +76096077ns 1388533 1c000ed2 00f52823 sw x15, 16(x10) x15:1c00c1f0 x10:1c00c1e8 PA:1c00c1f8 +76096097ns 1388534 1c000ed4 00052023 sw x0, 0(x10) x10:1c00c1e8 PA:1c00c1e8 +76096117ns 1388535 1c000ed8 00008067 jalr x0, x1, 0 x1:1c00110c +76096156ns 1388537 1c00110c 02440513 addi x10, x8, 36 x10=1c00c1fc x8:1c00c1d8 +76096176ns 1388538 1c001110 db7ff0ef jal x1, -586 x1=1c001112 +76096236ns 1388541 1c000ec6 00850793 addi x15, x10, 8 x15=1c00c204 x10:1c00c1fc +76096255ns 1388542 1c000eca fff00713 addi x14, x0, -1 x14=ffffffff +76096275ns 1388543 1c000ecc 00f52223 sw x15, 4(x10) x15:1c00c204 x10:1c00c1fc PA:1c00c200 +76096295ns 1388544 1c000ece 00e52423 sw x14, 8(x10) x14:ffffffff x10:1c00c1fc PA:1c00c204 +76096315ns 1388545 1c000ed0 00f52623 sw x15, 12(x10) x15:1c00c204 x10:1c00c1fc PA:1c00c208 +76096335ns 1388546 1c000ed2 00f52823 sw x15, 16(x10) x15:1c00c204 x10:1c00c1fc PA:1c00c20c +76096354ns 1388547 1c000ed4 00052023 sw x0, 0(x10) x10:1c00c1fc PA:1c00c1fc +76096374ns 1388548 1c000ed8 00008067 jalr x0, x1, 0 x1:1c001112 +76096414ns 1388550 1c001112 fe5ff06f jal x0, -28 +76096473ns 1388553 1c0010f6 731000ef jal x1, 3888 x1=1c0010fa +76096533ns 1388556 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76096572ns 1388558 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +76096592ns 1388559 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76096612ns 1388560 1c002030 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +76096651ns 1388562 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c009db8 PA:1c009dfc +76096691ns 1388564 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +76096711ns 1388565 1c002036 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76096730ns 1388566 1c002038 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76096750ns 1388567 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c009db8 PA:1c009dfc +76096790ns 1388569 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +76096810ns 1388570 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c009db8 PA:1c009dfc +76096829ns 1388571 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c009db8 PA:1c009dfc +76096869ns 1388573 1c002042 00079363 bne x15, x0, 6 x15:00000000 +76096889ns 1388574 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +76096968ns 1388578 1c002048 00008067 jalr x0, x1, 0 x1:1c0010fa +76097008ns 1388580 1c0010fa 00c12083 lw x1, 12(x2) x1=1c00116e x2:1c009b70 PA:1c009b7c +76097027ns 1388581 1c0010fc 00812403 lw x8, 8(x2) x8=1c00c1d8 x2:1c009b70 PA:1c009b78 +76097047ns 1388582 1c0010fe 00412483 lw x9, 4(x2) x9=00000000 x2:1c009b70 PA:1c009b74 +76097067ns 1388583 1c001100 00100513 addi x10, x0, 1 x10=00000001 +76097087ns 1388584 1c001102 01010113 addi x2, x2, 16 x2=1c009b80 x2:1c009b70 +76097106ns 1388585 1c001104 00008067 jalr x0, x1, 0 x1:1c00116e +76097166ns 1388588 1c00116e 05340623 sb x19, 76(x8) x19:00000002 x8:1c00c1d8 PA:1c00c224 +76097186ns 1388589 1c001172 01c12083 lw x1, 28(x2) x1=1c0011cc x2:1c009b80 PA:1c009b9c +76097205ns 1388590 1c001174 00800533 add x10, x0, x8 x10=1c00c1d8 x8:1c00c1d8 +76097225ns 1388591 1c001176 01812403 lw x8, 24(x2) x8=00000000 x2:1c009b80 PA:1c009b98 +76097245ns 1388592 1c001178 01412483 lw x9, 20(x2) x9=1c009190 x2:1c009b80 PA:1c009b94 +76097265ns 1388593 1c00117a 01012903 lw x18, 16(x2) x18=1c009188 x2:1c009b80 PA:1c009b90 +76097285ns 1388594 1c00117c 00c12983 lw x19, 12(x2) x19=00000006 x2:1c009b80 PA:1c009b8c +76097304ns 1388595 1c00117e 02010113 addi x2, x2, 32 x2=1c009ba0 x2:1c009b80 +76097324ns 1388596 1c001180 00008067 jalr x0, x1, 0 x1:1c0011cc +76097364ns 1388598 1c0011cc 00050263 beq x10, x0, 4 x10:1c00c1d8 +76097384ns 1388599 1c0011ce 02852c23 sw x8, 56(x10) x8:00000000 x10:1c00c1d8 PA:1c00c210 +76097403ns 1388600 1c0011d0 00c12083 lw x1, 12(x2) x1=1c003454 x2:1c009ba0 PA:1c009bac +76097423ns 1388601 1c0011d2 00812403 lw x8, 8(x2) x8=1c009c08 x2:1c009ba0 PA:1c009ba8 +76097443ns 1388602 1c0011d4 01010113 addi x2, x2, 16 x2=1c009bb0 x2:1c009ba0 +76097463ns 1388603 1c0011d6 00008067 jalr x0, x1, 0 x1:1c003454 +76097502ns 1388605 1c003454 02a42a23 sw x10, 52(x8) x10:1c00c1d8 x8:1c009c08 PA:1c009c3c +76097522ns 1388606 1c003456 00050b63 beq x10, x0, 22 x10:1c00c1d8 +76097542ns 1388607 1c003458 1c0037b7 lui x15, 0x1c003000 x15=1c003000 +76097562ns 1388608 1c00345c 40c78793 addi x15, x15, 1036 x15=1c00340c x15:1c003000 +76097581ns 1388609 1c003460 02f42c23 sw x15, 56(x8) x15:1c00340c x8:1c009c08 PA:1c009c40 +76097601ns 1388610 1c003462 1c0037b7 lui x15, 0x1c003000 x15=1c003000 +76097621ns 1388611 1c003466 3da78793 addi x15, x15, 986 x15=1c0033da x15:1c003000 +76097641ns 1388612 1c00346a 02f42e23 sw x15, 60(x8) x15:1c0033da x8:1c009c08 PA:1c009c44 +76097661ns 1388613 1c00346c 00100793 addi x15, x0, 1 x15=00000001 +76097680ns 1388614 1c00346e 04f403a3 sb x15, 71(x8) x15:00000001 x8:1c009c08 PA:1c009c4f +76097700ns 1388615 1c003472 fff00793 addi x15, x0, -1 x15=ffffffff +76097720ns 1388616 1c003474 00c12083 lw x1, 12(x2) x1=1c00360a x2:1c009bb0 PA:1c009bbc +76097740ns 1388617 1c003476 04f402a3 sb x15, 69(x8) x15:ffffffff x8:1c009c08 PA:1c009c4d +76097760ns 1388618 1c00347a 00800533 add x10, x0, x8 x10=1c009c08 x8:1c009c08 +76097779ns 1388619 1c00347c 00812403 lw x8, 8(x2) x8=00000000 x2:1c009bb0 PA:1c009bb8 +76097799ns 1388620 1c00347e 01010113 addi x2, x2, 16 x2=1c009bc0 x2:1c009bb0 +76097819ns 1388621 1c003480 00008067 jalr x0, x1, 0 x1:1c00360a +76097859ns 1388623 1c00360a 00a00733 add x14, x0, x10 x14=1c009c08 x10:1c009c08 +76097878ns 1388624 1c00360c 00000693 addi x13, x0, 0 x13=00000000 +76097898ns 1388625 1c00360e 00800613 addi x12, x0, 8 x12=00000008 +76097918ns 1388626 1c003610 01610593 addi x11, x2, 22 x11=1c009bd6 x2:1c009bc0 +76097938ns 1388627 1c003614 02010513 addi x10, x2, 32 x10=1c009be0 x2:1c009bc0 +76097958ns 1388628 1c003616 d2cff0ef jal x1, -2772 x1=1c00361a +76097997ns 1388630 1c002b42 00852503 lw x10, 8(x10) x10=1c00b8c0 x10:1c009be0 PA:1c009be8 +76098017ns 1388631 1c002b44 2820006f jal x0, 642 +76098076ns 1388634 1c002dc6 00452e83 lw x29, 4(x10) x29=1c00b890 x10:1c00b8c0 PA:1c00b8c4 +76098096ns 1388635 1c002dca fd010113 addi x2, x2, -48 x2=1c009b90 x2:1c009bc0 +76098116ns 1388636 1c002dcc 02112623 sw x1, 44(x2) x1:1c00361a x2:1c009b90 PA:1c009bbc +76098136ns 1388637 1c002dce 02812423 sw x8, 40(x2) x8:00000000 x2:1c009b90 PA:1c009bb8 +76098155ns 1388638 1c002dd0 00c008b3 add x17, x0, x12 x17=00000008 x12:00000008 +76098175ns 1388639 1c002dd2 00e00633 add x12, x0, x14 x12=1c009c08 x14:1c009c08 +76098195ns 1388640 1c002dd4 00010737 lui x14, 0x10000 x14=00010000 +76098215ns 1388641 1c002dd6 014ec783 lbu x15, 20(x29) x15=00000000 x29:1c00b890 PA:1c00b8a4 +76098235ns 1388642 1c002dda 00852803 lw x16, 8(x10) x16=00000003 x10:1c00b8c0 PA:1c00b8c8 +76098254ns 1388643 1c002dde 01177463 bgeu x14, x17, 8 x14:00010000 x17:00000008 +76098334ns 1388647 1c002de6 30047473 csrrci x8, 0x00000008, 0x300 x8=00000088 +76098413ns 1388651 1c002dea 03954303 lbu x6, 57(x10) x6=00000000 x10:1c00b8c0 PA:1c00b8f9 +76098452ns 1388653 1c002dee 0a030963 beq x6, x0, 178 x6:00000000 +76098512ns 1388656 1c002ea0 00000713 addi x14, x0, 0 x14=00000000 +76098531ns 1388657 1c002ea2 00800e13 addi x28, x0, 8 x28=00000008 +76098551ns 1388658 1c002ea4 f5fff06f jal x0, -162 +76098611ns 1388661 1c002e02 00ceaf03 lw x30, 12(x29) x30=00000000 x29:1c00b890 PA:1c00b89c +76098650ns 1388663 1c002e06 0a0f1863 bne x30, x0, 176 x30:00000000 +76098670ns 1388664 1c002e0a 03854703 lbu x14, 56(x10) x14=00000000 x10:1c00b8c0 PA:1c00b8f8 +76098690ns 1388665 1c002e0e 01052623 sw x16, 12(x10) x16:00000003 x10:1c00b8c0 PA:1c00b8cc +76098710ns 1388666 1c002e12 10000837 lui x16, 0x10000000 x16=10000000 +76098729ns 1388667 1c002e16 01076733 or x14, x14, x16 x14=10000000 x14:00000000 x16:10000000 +76098749ns 1388668 1c002e1a 00e52823 sw x14, 16(x10) x14:10000000 x10:1c00b8c0 PA:1c00b8d0 +76098769ns 1388669 1c002e1c fffe0713 addi x14, x28, -1 x14=00000007 x28:00000008 +76098789ns 1388670 1c002e20 03c8de33 divu x28, x17, x28 x28=00000001 x17:00000008 x28:00000008 +76099402ns 1388701 1c002e24 00c6f813 andi x16, x13, 12 x16=00000000 x13:00000000 +76099422ns 1388702 1c002e28 ffc80813 addi x16, x16, -4 x16=fffffffc x16:00000000 +76099442ns 1388703 1c002e2a 00183813 sltiu x16, x16, 1 x16=00000000 x16:fffffffc +76099462ns 1388704 1c002e2e 01071713 slli x14, x14, 0x10 x14=00070000 x14:00000007 +76099482ns 1388705 1c002e30 01b81813 slli x16, x16, 0x1b x16=00000000 x16:00000000 +76099501ns 1388706 1c002e32 00e86833 or x16, x16, x14 x16=00070000 x16:00000000 x14:00070000 +76099521ns 1388707 1c002e36 60000737 lui x14, 0x60000000 x14=60000000 +76099541ns 1388708 1c002e3a 00e86833 or x16, x16, x14 x16=60070000 x16:00070000 x14:60000000 +76099561ns 1388709 1c002e3e 0036f693 andi x13, x13, 3 x13=00000000 x13:00000000 +76099580ns 1388710 1c002e40 00100713 addi x14, x0, 1 x14=00000001 +76099600ns 1388711 1c002e42 fffe0e13 addi x28, x28, -1 x28=00000000 x28:00000001 +76099620ns 1388712 1c002e44 01c86833 or x16, x16, x28 x16=60070000 x16:60070000 x28:00000000 +76099640ns 1388713 1c002e48 01052a23 sw x16, 20(x10) x16:60070000 x10:1c00b8c0 PA:1c00b8d4 +76099660ns 1388714 1c002e4c 06e68163 beq x13, x14, 98 x13:00000000 x14:00000001 +76099679ns 1388715 1c002e50 900006b7 lui x13, 0x90000000 x13=90000000 +76099699ns 1388716 1c002e54 00168693 addi x13, x13, 1 x13=90000001 x13:90000000 +76099719ns 1388717 1c002e56 00178793 addi x15, x15, 1 x15=00000001 x15:00000000 +76099739ns 1388718 1c002e58 1a102737 lui x14, 0x1a102000 x14=1a102000 +76099759ns 1388719 1c002e5c 00d52c23 sw x13, 24(x10) x13:90000001 x10:1c00b8c0 PA:1c00b8d8 +76099778ns 1388720 1c002e5e 08070713 addi x14, x14, 128 x14=1a102080 x14:1a102000 +76099798ns 1388721 1c002e62 00779793 slli x15, x15, 0x7 x15=00000080 x15:00000001 +76099818ns 1388722 1c002e64 00cea623 sw x12, 12(x29) x12:1c009c08 x29:1c00b890 PA:1c00b89c +76099838ns 1388723 1c002e68 000ea423 sw x0, 8(x29) x29:1c00b890 PA:1c00b898 +76099858ns 1388724 1c002e6c 00e787b3 add x15, x15, x14 x15=1a102100 x15:00000080 x14:1a102080 +76099877ns 1388725 1c002e6e 00c50513 addi x10, x10, 12 x10=1c00b8cc x10:1c00b8c0 +76099897ns 1388726 1c002e70 00078793 addi x15, x15, 0 x15=1a102100 x15:1a102100 +76099917ns 1388727 1c002e74 02a7a023 sw x10, 32(x15) x10:1c00b8cc x15:1a102100 PA:1a102120 +76099937ns 1388728 1c002e76 01000713 addi x14, x0, 16 x14=00000010 +76099996ns 1388731 1c002e78 02e7a223 sw x14, 36(x15) x14:00000010 x15:1a102100 PA:1a102124 +76100016ns 1388732 1c002e7a 01400713 addi x14, x0, 20 x14=00000014 +76100075ns 1388735 1c002e7c 02e7a423 sw x14, 40(x15) x14:00000014 x15:1a102100 PA:1a102128 +76100095ns 1388736 1c002e7e 00131313 slli x6, x6, 0x1 x6=00000000 x6:00000000 +76100154ns 1388739 1c002e80 01036313 ori x6, x6, 16 x6=00000010 x6:00000000 +76100174ns 1388740 1c002e84 00b7a823 sw x11, 16(x15) x11:1c009bd6 x15:1a102100 PA:1a102110 +76100194ns 1388741 1c002e86 00788893 addi x17, x17, 7 x17=0000000f x17:00000008 +76100253ns 1388744 1c002e88 0038d893 srli x17, x17, 0x3 x17=00000001 x17:0000000f +76100273ns 1388745 1c002e8c 0117aa23 sw x17, 20(x15) x17:00000001 x15:1a102100 PA:1a102114 +76100293ns 1388746 1c002e90 0067ac23 sw x6, 24(x15) x6:00000010 x15:1a102100 PA:1a102118 +76100372ns 1388750 1c002e94 00800533 add x10, x0, x8 x10=00000088 x8:00000088 +76100432ns 1388753 1c002e96 02812403 lw x8, 40(x2) x8=00000000 x2:1c009b90 PA:1c009bb8 +76100451ns 1388754 1c002e98 02c12083 lw x1, 44(x2) x1=1c00361a x2:1c009b90 PA:1c009bbc +76100471ns 1388755 1c002e9a 03010113 addi x2, x2, 48 x2=1c009bc0 x2:1c009b90 +76100491ns 1388756 1c002e9c d1dff06f jal x0, -740 +76100530ns 1388758 1c002bb8 30051073 csrrw x0, x10, 0x300 x10:00000088 +76100610ns 1388762 1c002bbc 00008067 jalr x0, x1, 0 x1:1c00361a +76100649ns 1388764 1c00361a 01200793 addi x15, x0, 18 x15=00000012 +76100669ns 1388765 1c00361c 09010513 addi x10, x2, 144 x10=1c009c50 x2:1c009bc0 +76100689ns 1388766 1c00361e 00f10c23 sb x15, 24(x2) x15:00000012 x2:1c009bc0 PA:1c009bd8 +76100709ns 1388767 1c003622 e19ff0ef jal x1, -488 x1=1c003626 +76100748ns 1388769 1c00343a ff010113 addi x2, x2, -16 x2=1c009bb0 x2:1c009bc0 +76100768ns 1388770 1c00343c 00812423 sw x8, 8(x2) x8:00000000 x2:1c009bb0 PA:1c009bb8 +76100788ns 1388771 1c00343e 00112623 sw x1, 12(x2) x1:1c003626 x2:1c009bb0 PA:1c009bbc +76100808ns 1388772 1c003440 00100793 addi x15, x0, 1 x15=00000001 +76100827ns 1388773 1c003442 00a00433 add x8, x0, x10 x8=1c009c50 x10:1c009c50 +76100847ns 1388774 1c003444 00f52823 sw x15, 16(x10) x15:00000001 x10:1c009c50 PA:1c009c60 +76100867ns 1388775 1c003446 04050223 sb x0, 68(x10) x10:1c009c50 PA:1c009c94 +76100887ns 1388776 1c00344a 00000593 addi x11, x0, 0 x11=00000000 +76100907ns 1388777 1c00344c 0ff00513 addi x10, x0, 255 x10=000000ff +76100926ns 1388778 1c003450 d33fd0ef jal x1, -8910 x1=1c003454 +76100966ns 1388780 1c001182 ff010113 addi x2, x2, -16 x2=1c009ba0 x2:1c009bb0 +76100986ns 1388781 1c001184 00112623 sw x1, 12(x2) x1:1c003454 x2:1c009ba0 PA:1c009bac +76101005ns 1388782 1c001186 00812423 sw x8, 8(x2) x8:1c009c50 x2:1c009ba0 PA:1c009ba8 +76101025ns 1388783 1c001188 02051163 bne x10, x0, 34 x10:000000ff +76101085ns 1388786 1c0011aa 00b00433 add x8, x0, x11 x8=00000000 x11:00000000 +76101104ns 1388787 1c0011ac 00b57d63 bgeu x10, x11, 26 x10:000000ff x11:00000000 +76101164ns 1388790 1c0011c6 00200613 addi x12, x0, 2 x12=00000002 +76101184ns 1388791 1c0011c8 00000593 addi x11, x0, 0 x11=00000000 +76101203ns 1388792 1c0011ca f4bff0ef jal x1, -182 x1=1c0011cc +76101243ns 1388794 1c001114 fe010113 addi x2, x2, -32 x2=1c009b80 x2:1c009ba0 +76101263ns 1388795 1c001116 00112e23 sw x1, 28(x2) x1:1c0011cc x2:1c009b80 PA:1c009b9c +76101283ns 1388796 1c001118 00812c23 sw x8, 24(x2) x8:00000000 x2:1c009b80 PA:1c009b98 +76101302ns 1388797 1c00111a 00912a23 sw x9, 20(x2) x9:1c009190 x2:1c009b80 PA:1c009b94 +76101322ns 1388798 1c00111c 01212823 sw x18, 16(x2) x18:1c009188 x2:1c009b80 PA:1c009b90 +76101342ns 1388799 1c00111e 01312623 sw x19, 12(x2) x19:00000006 x2:1c009b80 PA:1c009b8c +76101362ns 1388800 1c001120 02051163 bne x10, x0, 34 x10:000000ff +76101421ns 1388803 1c001142 00a00933 add x18, x0, x10 x18=000000ff x10:000000ff +76101441ns 1388804 1c001144 02b50533 mul x10, x10, x11 x10=00000000 x10:000000ff x11:00000000 +76101461ns 1388805 1c001148 00b004b3 add x9, x0, x11 x9=00000000 x11:00000000 +76101481ns 1388806 1c00114a 00c009b3 add x19, x0, x12 x19=00000002 x12:00000002 +76101500ns 1388807 1c00114c 05050513 addi x10, x10, 80 x10=00000050 x10:00000000 +76101520ns 1388808 1c001150 01b010ef jal x1, 6170 x1=1c001154 +76101560ns 1388810 1c00296a fe010113 addi x2, x2, -32 x2=1c009b60 x2:1c009b80 +76101579ns 1388811 1c00296c 00112e23 sw x1, 28(x2) x1:1c001154 x2:1c009b60 PA:1c009b7c +76101599ns 1388812 1c00296e 00812c23 sw x8, 24(x2) x8:00000000 x2:1c009b60 PA:1c009b78 +76101619ns 1388813 1c002970 00a12623 sw x10, 12(x2) x10:00000050 x2:1c009b60 PA:1c009b6c +76101639ns 1388814 1c002972 8a4ff0ef jal x1, -3932 x1=1c002976 +76101698ns 1388817 1c001a16 d6818793 addi x15, x3, -664 x15=1c009144 x3:1c0093dc +76101718ns 1388818 1c001a1a 0007a703 lw x14, 0(x15) x14=00000000 x15:1c009144 PA:1c009144 +76101758ns 1388820 1c001a1c 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76101777ns 1388821 1c001a1e 00e7a023 sw x14, 0(x15) x14:00000001 x15:1c009144 PA:1c009144 +76101797ns 1388822 1c001a20 00008067 jalr x0, x1, 0 x1:1c002976 +76101837ns 1388824 1c002976 00c12503 lw x10, 12(x2) x10=00000050 x2:1c009b60 PA:1c009b6c +76101857ns 1388825 1c002978 791000ef jal x1, 3984 x1=1c00297c +76101896ns 1388827 1c003908 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76101916ns 1388828 1c00390c 00a005b3 add x11, x0, x10 x11=00000050 x10:00000050 +76101936ns 1388829 1c00390e c447a503 lw x10, -956(x15) x10=1c009e10 x15:1c009000 PA:1c008c44 +76101956ns 1388830 1c003912 0b60006f jal x0, 182 +76101995ns 1388832 1c0039c8 fe010113 addi x2, x2, -32 x2=1c009b40 x2:1c009b60 +76102094ns 1388837 1c000868 0980006f jal x0, 152 +76102134ns 1388839 1c000900 f8810113 addi x2, x2, -120 x2=1c009ac8 x2:1c009b40 +76102153ns 1388840 1c000904 00112223 sw x1, 4(x2) x1:1c00297c x2:1c009ac8 PA:1c009acc +76102173ns 1388841 1c000906 00512423 sw x5, 8(x2) x5:a5a5a5a5 x2:1c009ac8 PA:1c009ad0 +76102193ns 1388842 1c000908 00612623 sw x6, 12(x2) x6:00000010 x2:1c009ac8 PA:1c009ad4 +76102213ns 1388843 1c00090a 00712823 sw x7, 16(x2) x7:a5a5a5a5 x2:1c009ac8 PA:1c009ad8 +76102233ns 1388844 1c00090c 00812a23 sw x8, 20(x2) x8:00000000 x2:1c009ac8 PA:1c009adc +76102252ns 1388845 1c00090e 00912c23 sw x9, 24(x2) x9:00000000 x2:1c009ac8 PA:1c009ae0 +76102272ns 1388846 1c000910 00a12e23 sw x10, 28(x2) x10:1c009e10 x2:1c009ac8 PA:1c009ae4 +76102292ns 1388847 1c000912 02b12023 sw x11, 32(x2) x11:00000050 x2:1c009ac8 PA:1c009ae8 +76102312ns 1388848 1c000914 02c12223 sw x12, 36(x2) x12:00000002 x2:1c009ac8 PA:1c009aec +76102332ns 1388849 1c000916 02d12423 sw x13, 40(x2) x13:90000001 x2:1c009ac8 PA:1c009af0 +76102351ns 1388850 1c000918 02e12623 sw x14, 44(x2) x14:00000001 x2:1c009ac8 PA:1c009af4 +76102371ns 1388851 1c00091a 02f12823 sw x15, 48(x2) x15:1c009000 x2:1c009ac8 PA:1c009af8 +76102391ns 1388852 1c00091c 03012a23 sw x16, 52(x2) x16:60070000 x2:1c009ac8 PA:1c009afc +76102411ns 1388853 1c00091e 03112c23 sw x17, 56(x2) x17:00000001 x2:1c009ac8 PA:1c009b00 +76102431ns 1388854 1c000920 03212e23 sw x18, 60(x2) x18:000000ff x2:1c009ac8 PA:1c009b04 +76102450ns 1388855 1c000922 05312023 sw x19, 64(x2) x19:00000002 x2:1c009ac8 PA:1c009b08 +76102470ns 1388856 1c000924 05412223 sw x20, 68(x2) x20:1c00918c x2:1c009ac8 PA:1c009b0c +76102490ns 1388857 1c000926 05512423 sw x21, 72(x2) x21:a5a5a5a5 x2:1c009ac8 PA:1c009b10 +76102510ns 1388858 1c000928 05612623 sw x22, 76(x2) x22:a5a5a5a5 x2:1c009ac8 PA:1c009b14 +76102529ns 1388859 1c00092a 05712823 sw x23, 80(x2) x23:a5a5a5a5 x2:1c009ac8 PA:1c009b18 +76102549ns 1388860 1c00092c 05812a23 sw x24, 84(x2) x24:a5a5a5a5 x2:1c009ac8 PA:1c009b1c +76102569ns 1388861 1c00092e 05912c23 sw x25, 88(x2) x25:a5a5a5a5 x2:1c009ac8 PA:1c009b20 +76102589ns 1388862 1c000930 05a12e23 sw x26, 92(x2) x26:a5a5a5a5 x2:1c009ac8 PA:1c009b24 +76102609ns 1388863 1c000932 07b12023 sw x27, 96(x2) x27:a5a5a5a5 x2:1c009ac8 PA:1c009b28 +76102628ns 1388864 1c000934 07c12223 sw x28, 100(x2) x28:00000000 x2:1c009ac8 PA:1c009b2c +76102648ns 1388865 1c000936 07d12423 sw x29, 104(x2) x29:1c00b890 x2:1c009ac8 PA:1c009b30 +76102668ns 1388866 1c000938 07e12623 sw x30, 108(x2) x30:00000000 x2:1c009ac8 PA:1c009b34 +76102688ns 1388867 1c00093a 07f12823 sw x31, 112(x2) x31:a5a5a5a5 x2:1c009ac8 PA:1c009b38 +76102708ns 1388868 1c00093c 300022f3 csrrs x5, x0, 0x300 x5=00001880 +76102787ns 1388872 1c000940 06512a23 sw x5, 116(x2) x5:00001880 x2:1c009ac8 PA:1c009b3c +76102807ns 1388873 1c000942 fe810113 addi x2, x2, -24 x2=1c009ab0 x2:1c009ac8 +76102826ns 1388874 1c000944 7c0022f3 csrrs x5, x0, 0x7c0 x5=00000000 +76102846ns 1388875 1c000948 7c102373 csrrs x6, x0, 0x7c1 x6=00000000 +76102866ns 1388876 1c00094c 7c2023f3 csrrs x7, x0, 0x7c2 x7=00000000 +76102886ns 1388877 1c000950 7c402e73 csrrs x28, x0, 0x7c4 x28=00000000 +76102906ns 1388878 1c000954 7c502ef3 csrrs x29, x0, 0x7c5 x29=00000000 +76102925ns 1388879 1c000958 7c602f73 csrrs x30, x0, 0x7c6 x30=00000000 +76102945ns 1388880 1c00095c 00512223 sw x5, 4(x2) x5:00000000 x2:1c009ab0 PA:1c009ab4 +76102965ns 1388881 1c00095e 00612423 sw x6, 8(x2) x6:00000000 x2:1c009ab0 PA:1c009ab8 +76102985ns 1388882 1c000960 00712623 sw x7, 12(x2) x7:00000000 x2:1c009ab0 PA:1c009abc +76103004ns 1388883 1c000962 01c12823 sw x28, 16(x2) x28:00000000 x2:1c009ab0 PA:1c009ac0 +76103024ns 1388884 1c000964 01d12a23 sw x29, 20(x2) x29:00000000 x2:1c009ab0 PA:1c009ac4 +76103044ns 1388885 1c000966 01e12c23 sw x30, 24(x2) x30:00000000 x2:1c009ab0 PA:1c009ac8 +76103064ns 1388886 1c000968 d541a283 lw x5, -684(x3) x5=1c009db8 x3:1c0093dc PA:1c009130 +76103103ns 1388888 1c00096c 0022a023 sw x2, 0(x5) x2:1c009ab0 x5:1c009db8 PA:1c009db8 +76103123ns 1388889 1c000970 34202573 csrrs x10, x0, 0x342 x10=8000001a +76103143ns 1388890 1c000974 341025f3 csrrs x11, x0, 0x341 x11=1c0039ca +76103163ns 1388891 1c000978 01f55613 srli x12, x10, 0x1f x12=00000001 x10:8000001a +76103183ns 1388892 1c00097c 00060963 beq x12, x0, 18 x12:00000001 +76103202ns 1388893 1c00097e 00b12023 sw x11, 0(x2) x11:1c0039ca x2:1c009ab0 PA:1c009ab0 +76103222ns 1388894 1c000980 00008117 auipc x2, 0x8000 x2=1c008980 +76103242ns 1388895 1c000984 25412103 lw x2, 596(x2) x2=1c0199b0 x2:1c008980 PA:1c008bd4 +76103262ns 1388896 1c000988 17e020ef jal x1, 8574 x1=1c00098c +76103301ns 1388898 1c002b06 01f57513 andi x10, x10, 31 x10=0000001a x10:8000001a +76103321ns 1388899 1c002b08 00251793 slli x15, x10, 0x2 x15=00000068 x10:0000001a +76103341ns 1388900 1c002b0c 99c18513 addi x10, x3, -1636 x10=1c008d78 x3:1c0093dc +76103361ns 1388901 1c002b10 00f50533 add x10, x10, x15 x10=1c008de0 x10:1c008d78 x15:00000068 +76103381ns 1388902 1c002b12 00052783 lw x15, 0(x10) x15=1c000e42 x10:1c008de0 PA:1c008de0 +76103440ns 1388905 1c002b14 00078067 jalr x0, x15, 0 x15:1c000e42 +76103499ns 1388908 1c000e42 1a10a7b7 lui x15, 0x1a10a000 x15=1a10a000 +76103519ns 1388909 1c000e46 80078793 addi x15, x15, -2048 x15=1a109800 x15:1a10a000 +76103539ns 1388910 1c000e4a 0247a503 lw x10, 36(x15) x10=00000007 x15:1a109800 PA:1a109824 +76103559ns 1388911 1c000e4c a2818793 addi x15, x3, -1496 x15=1c008e04 x3:1c0093dc +76103618ns 1388914 1c000e50 0ff57513 andi x10, x10, 255 x10=00000007 x10:00000007 +76103638ns 1388915 1c000e54 00251713 slli x14, x10, 0x2 x14=0000001c x10:00000007 +76103658ns 1388916 1c000e58 00e787b3 add x15, x15, x14 x15=1c008e20 x15:1c008e04 x14:0000001c +76103677ns 1388917 1c000e5a 0007a703 lw x14, 0(x15) x14=1c003106 x15:1c008e20 PA:1c008e20 +76103717ns 1388919 1c000e5c 00070363 beq x14, x0, 6 x14:1c003106 +76103737ns 1388920 1c000e5e 0007a783 lw x15, 0(x15) x15=1c003106 x15:1c008e20 PA:1c008e20 +76103796ns 1388923 1c000e60 00078067 jalr x0, x15, 0 x15:1c003106 +76103836ns 1388925 1c003106 ff950513 addi x10, x10, -7 x10=00000000 x10:00000007 +76103856ns 1388926 1c003108 00251793 slli x15, x10, 0x2 x15=00000000 x10:00000000 +76103875ns 1388927 1c00310c da418513 addi x10, x3, -604 x10=1c009180 x3:1c0093dc +76103895ns 1388928 1c003110 ff010113 addi x2, x2, -16 x2=1c0199a0 x2:1c0199b0 +76103915ns 1388929 1c003112 00f50533 add x10, x10, x15 x10=1c009180 x10:1c009180 x15:00000000 +76103935ns 1388930 1c003114 00812423 sw x8, 8(x2) x8:00000000 x2:1c0199a0 PA:1c0199a8 +76103955ns 1388931 1c003116 00052403 lw x8, 0(x10) x8=1c00b890 x10:1c009180 PA:1c009180 +76103974ns 1388932 1c003118 00112623 sw x1, 12(x2) x1:1c00098c x2:1c0199a0 PA:1c0199ac +76103994ns 1388933 1c00311a 00842783 lw x15, 8(x8) x15=00000000 x8:1c00b890 PA:1c00b898 +76104034ns 1388935 1c00311c 02079263 bne x15, x0, 36 x15:00000000 +76104053ns 1388936 1c00311e 00c42503 lw x10, 12(x8) x10=1c009c08 x8:1c00b890 PA:1c00b89c +76104093ns 1388938 1c003120 00050863 beq x10, x0, 16 x10:1c009c08 +76104113ns 1388939 1c003122 01052703 lw x14, 16(x10) x14=00000001 x10:1c009c08 PA:1c009c18 +76104133ns 1388940 1c003124 00100793 addi x15, x0, 1 x15=00000001 +76104152ns 1388941 1c003126 00f71363 bne x14, x15, 6 x14:00000001 x15:00000001 +76104172ns 1388942 1c00312a 3b6000ef jal x1, 950 x1=1c00312c +76104212ns 1388944 1c0034e0 ff010113 addi x2, x2, -16 x2=1c019990 x2:1c0199a0 +76104232ns 1388945 1c0034e2 00812423 sw x8, 8(x2) x8:1c00b890 x2:1c019990 PA:1c019998 +76104251ns 1388946 1c0034e4 00a00433 add x8, x0, x10 x8=1c009c08 x10:1c009c08 +76104271ns 1388947 1c0034e6 03452503 lw x10, 52(x10) x10=1c00c1d8 x10:1c009c08 PA:1c009c3c +76104291ns 1388948 1c0034e8 00112623 sw x1, 12(x2) x1:1c00312c x2:1c019990 PA:1c01999c +76104311ns 1388949 1c0034ea 00050363 beq x10, x0, 6 x10:1c00c1d8 +76104331ns 1388950 1c0034ec 03c42783 lw x15, 60(x8) x15=1c0033da x8:1c009c08 PA:1c009c44 +76104390ns 1388953 1c0034ee 000780e7 jalr x1, x15, 0 x1=1c0034f0 x15:1c0033da +76104430ns 1388955 1c0033da fe010113 addi x2, x2, -32 x2=1c019970 x2:1c019990 +76104449ns 1388956 1c0033dc 00112e23 sw x1, 28(x2) x1:1c0034f0 x2:1c019970 PA:1c01998c +76104469ns 1388957 1c0033de 00812c23 sw x8, 24(x2) x8:1c009c08 x2:1c019970 PA:1c019988 +76104489ns 1388958 1c0033e0 30047473 csrrci x8, 0x00000008, 0x300 x8=00001880 +76104568ns 1388962 1c0033e4 342027f3 csrrs x15, x0, 0x342 x15=8000001a +76104588ns 1388963 1c0033e8 00c10593 addi x11, x2, 12 x11=1c01997c x2:1c019970 +76104608ns 1388964 1c0033ea 0007de63 bge x15, x0, 28 x15:8000001a +76104627ns 1388965 1c0033ee 838fe0ef jal x1, -8136 x1=1c0033f2 +76104667ns 1388967 1c001426 ff010113 addi x2, x2, -16 x2=1c019960 x2:1c019970 +76104687ns 1388968 1c001428 00112623 sw x1, 12(x2) x1:1c0033f2 x2:1c019960 PA:1c01996c +76104707ns 1388969 1c00142a 00812423 sw x8, 8(x2) x8:00001880 x2:1c019960 PA:1c019968 +76104726ns 1388970 1c00142c 02051163 bne x10, x0, 34 x10:1c00c1d8 +76104786ns 1388973 1c00144e 04052703 lw x14, 64(x10) x14=00000000 x10:1c00c1d8 PA:1c00c218 +76104806ns 1388974 1c001450 00a007b3 add x15, x0, x10 x15=1c00c1d8 x10:1c00c1d8 +76104825ns 1388975 1c001452 00070c63 beq x14, x0, 24 x14:00000000 +76104885ns 1388978 1c00146a 00052703 lw x14, 0(x10) x14=1c00c1d8 x10:1c00c1d8 PA:1c00c1d8 +76104905ns 1388979 1c00146c 00b00433 add x8, x0, x11 x8=1c01997c x11:1c01997c +76104924ns 1388980 1c00146e 00071e63 bne x14, x0, 28 x14:1c00c1d8 +76104984ns 1388983 1c00148a 0387a683 lw x13, 56(x15) x13=00000000 x15:1c00c1d8 PA:1c00c210 +76105003ns 1388984 1c00148c 03c7a703 lw x14, 60(x15) x14=000000ff x15:1c00c1d8 PA:1c00c214 +76105023ns 1388985 1c00148e 00000513 addi x10, x0, 0 x10=00000000 +76105043ns 1388986 1c001490 00e6ff63 bgeu x13, x14, 30 x13:00000000 x14:000000ff +76105063ns 1388987 1c001494 0457c703 lbu x14, 69(x15) x14=000000ff x15:1c00c1d8 PA:1c00c21d +76105083ns 1388988 1c001498 00168693 addi x13, x13, 1 x13=00000001 x13:00000000 +76105102ns 1388989 1c00149a 02d7ac23 sw x13, 56(x15) x13:00000001 x15:1c00c1d8 PA:1c00c210 +76105122ns 1388990 1c00149c 01871613 slli x12, x14, 0x18 x12=ff000000 x14:000000ff +76105142ns 1388991 1c0014a0 41865613 srai x12, x12, 0x418 x12=ffffffff x12:ff000000 +76105162ns 1388992 1c0014a2 fff00693 addi x13, x0, -1 x13=ffffffff +76105182ns 1388993 1c0014a4 02d61263 bne x12, x13, 36 x12:ffffffff x13:ffffffff +76105201ns 1388994 1c0014a8 0247a703 lw x14, 36(x15) x14=00000000 x15:1c00c1d8 PA:1c00c1fc +76105241ns 1388996 1c0014aa 00071663 bne x14, x0, 12 x14:00000000 +76105261ns 1388997 1c0014ac 00100513 addi x10, x0, 1 x10=00000001 +76105281ns 1388998 1c0014ae 00c12083 lw x1, 12(x2) x1=1c0033f2 x2:1c019960 PA:1c01996c +76105300ns 1388999 1c0014b0 00812403 lw x8, 8(x2) x8=00001880 x2:1c019960 PA:1c019968 +76105320ns 1389000 1c0014b2 01010113 addi x2, x2, 16 x2=1c019970 x2:1c019960 +76105340ns 1389001 1c0014b4 00008067 jalr x0, x1, 0 x1:1c0033f2 +76105380ns 1389003 1c0033f2 00c12783 lw x15, 12(x2) x15=1c000801 x2:1c019970 PA:1c01997c +76105419ns 1389005 1c0033f4 00078363 beq x15, x0, 6 x15:1c000801 +76105439ns 1389006 1c0033f6 f80fe0ef jal x1, -6272 x1=1c0033fa +76105498ns 1389009 1c001b76 d681a703 lw x14, -664(x3) x14=00000001 x3:1c0093dc PA:1c009144 +76105518ns 1389010 1c001b7a d8c18793 addi x15, x3, -628 x15=1c009168 x3:1c0093dc +76105538ns 1389011 1c001b7e 00070463 beq x14, x0, 8 x14:00000001 +76105558ns 1389012 1c001b80 00100713 addi x14, x0, 1 x14=00000001 +76105577ns 1389013 1c001b82 00e7a023 sw x14, 0(x15) x14:00000001 x15:1c009168 PA:1c009168 +76105597ns 1389014 1c001b84 00008067 jalr x0, x1, 0 x1:1c0033fa +76105657ns 1389017 1c0033fa 30041073 csrrw x0, x8, 0x300 x8:00001880 +76105736ns 1389021 1c0033fe 01c12083 lw x1, 28(x2) x1=1c0034f0 x2:1c019970 PA:1c01998c +76105756ns 1389022 1c003400 01812403 lw x8, 24(x2) x8=1c009c08 x2:1c019970 PA:1c019988 +76105775ns 1389023 1c003402 02010113 addi x2, x2, 32 x2=1c019990 x2:1c019970 +76105795ns 1389024 1c003404 00008067 jalr x0, x1, 0 x1:1c0034f0 +76105835ns 1389026 1c0034f0 00100793 addi x15, x0, 1 x15=00000001 +76105855ns 1389027 1c0034f2 04f40223 sb x15, 68(x8) x15:00000001 x8:1c009c08 PA:1c009c4c +76105874ns 1389028 1c0034f6 00c12083 lw x1, 12(x2) x1=1c00312c x2:1c019990 PA:1c01999c +76105894ns 1389029 1c0034f8 00812403 lw x8, 8(x2) x8=1c00b890 x2:1c019990 PA:1c019998 +76105914ns 1389030 1c0034fa 01010113 addi x2, x2, 16 x2=1c0199a0 x2:1c019990 +76105934ns 1389031 1c0034fc 00008067 jalr x0, x1, 0 x1:1c00312c +76105973ns 1389033 1c00312c 00042623 sw x0, 12(x8) x8:1c00b890 PA:1c00b89c +76105993ns 1389034 1c003130 00800533 add x10, x0, x8 x10=1c00b890 x8:1c00b890 +76106013ns 1389035 1c003132 ac3ff0ef jal x1, -1342 x1=1c003136 +76106052ns 1389037 1c002bf4 300027f3 csrrs x15, x0, 0x300 x15=00001880 +76106132ns 1389041 1c002bf8 300476f3 csrrci x13, 0x00000008, 0x300 x13=00001880 +76106211ns 1389045 1c002bfc 00052783 lw x15, 0(x10) x15=1c00b8b0 x10:1c00b890 PA:1c00b890 +76106250ns 1389047 1c002bfe 0007a503 lw x10, 0(x15) x10=00000000 x15:1c00b8b0 PA:1c00b8b0 +76106290ns 1389049 1c002c00 00050663 beq x10, x0, 12 x10:00000000 +76106349ns 1389052 1c002c0c 30069073 csrrw x0, x13, 0x300 x13:00001880 +76106429ns 1389056 1c002c10 00008067 jalr x0, x1, 0 x1:1c003136 +76106468ns 1389058 1c003136 00050563 beq x10, x0, 10 x10:00000000 +76106527ns 1389061 1c003140 00c12083 lw x1, 12(x2) x1=1c00098c x2:1c0199a0 PA:1c0199ac +76106547ns 1389062 1c003142 00812403 lw x8, 8(x2) x8=00000000 x2:1c0199a0 PA:1c0199a8 +76106567ns 1389063 1c003144 01010113 addi x2, x2, 16 x2=1c0199b0 x2:1c0199a0 +76106587ns 1389064 1c003146 00008067 jalr x0, x1, 0 x1:1c00098c +76106626ns 1389066 1c00098c 0320006f jal x0, 50 +76106686ns 1389069 1c0009be d541a303 lw x6, -684(x3) x6=1c009db8 x3:1c0093dc PA:1c009130 +76106725ns 1389071 1c0009c2 00032103 lw x2, 0(x6) x2=1c009ab0 x6:1c009db8 PA:1c009db8 +76106765ns 1389073 1c0009c6 00012283 lw x5, 0(x2) x5=1c0039ca x2:1c009ab0 PA:1c009ab0 +76106805ns 1389075 1c0009c8 34129073 csrrw x0, x5, 0x341 x5:1c0039ca +76106824ns 1389076 1c0009cc 00412283 lw x5, 4(x2) x5=00000000 x2:1c009ab0 PA:1c009ab4 +76106844ns 1389077 1c0009ce 00812303 lw x6, 8(x2) x6=00000000 x2:1c009ab0 PA:1c009ab8 +76106864ns 1389078 1c0009d0 00c12383 lw x7, 12(x2) x7=00000000 x2:1c009ab0 PA:1c009abc +76106884ns 1389079 1c0009d2 01012e03 lw x28, 16(x2) x28=00000000 x2:1c009ab0 PA:1c009ac0 +76106904ns 1389080 1c0009d4 01412e83 lw x29, 20(x2) x29=00000000 x2:1c009ab0 PA:1c009ac4 +76106923ns 1389081 1c0009d6 01812f03 lw x30, 24(x2) x30=00000000 x2:1c009ab0 PA:1c009ac8 +76106943ns 1389082 1c0009d8 7c029073 csrrw x0, x5, 0x7c0 x5:00000000 +76106963ns 1389083 1c0009dc 7c131073 csrrw x0, x6, 0x7c1 x6:00000000 +76106983ns 1389084 1c0009e0 7c239073 csrrw x0, x7, 0x7c2 x7:00000000 +76107002ns 1389085 1c0009e4 7c4e1073 csrrw x0, x28, 0x7c4 x28:00000000 +76107022ns 1389086 1c0009e8 7c5e9073 csrrw x0, x29, 0x7c5 x29:00000000 +76107042ns 1389087 1c0009ec 7c6f1073 csrrw x0, x30, 0x7c6 x30:00000000 +76107062ns 1389088 1c0009f0 01810113 addi x2, x2, 24 x2=1c009ac8 x2:1c009ab0 +76107082ns 1389089 1c0009f2 07412283 lw x5, 116(x2) x5=00001880 x2:1c009ac8 PA:1c009b3c +76107121ns 1389091 1c0009f4 30029073 csrrw x0, x5, 0x300 x5:00001880 +76107200ns 1389095 1c0009f8 00412083 lw x1, 4(x2) x1=1c00297c x2:1c009ac8 PA:1c009acc +76107220ns 1389096 1c0009fa 00812283 lw x5, 8(x2) x5=a5a5a5a5 x2:1c009ac8 PA:1c009ad0 +76107240ns 1389097 1c0009fc 00c12303 lw x6, 12(x2) x6=00000010 x2:1c009ac8 PA:1c009ad4 +76107260ns 1389098 1c0009fe 01012383 lw x7, 16(x2) x7=a5a5a5a5 x2:1c009ac8 PA:1c009ad8 +76107280ns 1389099 1c000a00 01412403 lw x8, 20(x2) x8=00000000 x2:1c009ac8 PA:1c009adc +76107299ns 1389100 1c000a02 01812483 lw x9, 24(x2) x9=00000000 x2:1c009ac8 PA:1c009ae0 +76107319ns 1389101 1c000a04 01c12503 lw x10, 28(x2) x10=1c009e10 x2:1c009ac8 PA:1c009ae4 +76107339ns 1389102 1c000a06 02012583 lw x11, 32(x2) x11=00000050 x2:1c009ac8 PA:1c009ae8 +76107359ns 1389103 1c000a08 02412603 lw x12, 36(x2) x12=00000002 x2:1c009ac8 PA:1c009aec +76107379ns 1389104 1c000a0a 02812683 lw x13, 40(x2) x13=90000001 x2:1c009ac8 PA:1c009af0 +76107398ns 1389105 1c000a0c 02c12703 lw x14, 44(x2) x14=00000001 x2:1c009ac8 PA:1c009af4 +76107418ns 1389106 1c000a0e 03012783 lw x15, 48(x2) x15=1c009000 x2:1c009ac8 PA:1c009af8 +76107438ns 1389107 1c000a10 03412803 lw x16, 52(x2) x16=60070000 x2:1c009ac8 PA:1c009afc +76107458ns 1389108 1c000a12 03812883 lw x17, 56(x2) x17=00000001 x2:1c009ac8 PA:1c009b00 +76107477ns 1389109 1c000a14 03c12903 lw x18, 60(x2) x18=000000ff x2:1c009ac8 PA:1c009b04 +76107497ns 1389110 1c000a16 04012983 lw x19, 64(x2) x19=00000002 x2:1c009ac8 PA:1c009b08 +76107517ns 1389111 1c000a18 04412a03 lw x20, 68(x2) x20=1c00918c x2:1c009ac8 PA:1c009b0c +76107537ns 1389112 1c000a1a 04812a83 lw x21, 72(x2) x21=a5a5a5a5 x2:1c009ac8 PA:1c009b10 +76107557ns 1389113 1c000a1c 04c12b03 lw x22, 76(x2) x22=a5a5a5a5 x2:1c009ac8 PA:1c009b14 +76107576ns 1389114 1c000a1e 05012b83 lw x23, 80(x2) x23=a5a5a5a5 x2:1c009ac8 PA:1c009b18 +76107596ns 1389115 1c000a20 05412c03 lw x24, 84(x2) x24=a5a5a5a5 x2:1c009ac8 PA:1c009b1c +76107616ns 1389116 1c000a22 05812c83 lw x25, 88(x2) x25=a5a5a5a5 x2:1c009ac8 PA:1c009b20 +76107636ns 1389117 1c000a24 05c12d03 lw x26, 92(x2) x26=a5a5a5a5 x2:1c009ac8 PA:1c009b24 +76107656ns 1389118 1c000a26 06012d83 lw x27, 96(x2) x27=a5a5a5a5 x2:1c009ac8 PA:1c009b28 +76107675ns 1389119 1c000a28 06412e03 lw x28, 100(x2) x28=00000000 x2:1c009ac8 PA:1c009b2c +76107695ns 1389120 1c000a2a 06812e83 lw x29, 104(x2) x29=1c00b890 x2:1c009ac8 PA:1c009b30 +76107715ns 1389121 1c000a2c 06c12f03 lw x30, 108(x2) x30=00000000 x2:1c009ac8 PA:1c009b34 +76107735ns 1389122 1c000a2e 07012f83 lw x31, 112(x2) x31=a5a5a5a5 x2:1c009ac8 PA:1c009b38 +76107755ns 1389123 1c000a30 07810113 addi x2, x2, 120 x2=1c009b40 x2:1c009ac8 +76107774ns 1389124 1c000a34 30200073 mret +76107873ns 1389129 1c0039ca 00912a23 sw x9, 20(x2) x9:00000000 x2:1c009b40 PA:1c009b54 +76107893ns 1389130 1c0039cc 00358493 addi x9, x11, 3 x9=00000053 x11:00000050 +76107913ns 1389131 1c0039d0 ffc4f493 andi x9, x9, -4 x9=00000050 x9:00000053 +76107933ns 1389132 1c0039d2 01212823 sw x18, 16(x2) x18:000000ff x2:1c009b40 PA:1c009b50 +76107952ns 1389133 1c0039d4 00112e23 sw x1, 28(x2) x1:1c00297c x2:1c009b40 PA:1c009b5c +76107972ns 1389134 1c0039d6 00812c23 sw x8, 24(x2) x8:00000000 x2:1c009b40 PA:1c009b58 +76107992ns 1389135 1c0039d8 01312623 sw x19, 12(x2) x19:00000002 x2:1c009b40 PA:1c009b4c +76108012ns 1389136 1c0039da 00848493 addi x9, x9, 8 x9=00000058 x9:00000050 +76108032ns 1389137 1c0039dc 00c00793 addi x15, x0, 12 x15=0000000c +76108051ns 1389138 1c0039de 00a00933 add x18, x0, x10 x18=1c009e10 x10:1c009e10 +76108071ns 1389139 1c0039e0 04f4f363 bgeu x9, x15, 70 x9:00000058 x15:0000000c +76108150ns 1389143 1c003a26 fc04d0e3 bge x9, x0, -64 x9:00000058 +76108230ns 1389147 1c0039e6 04b4e263 bltu x9, x11, 68 x9:00000058 x11:00000050 +76108249ns 1389148 1c0039ea 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +76108269ns 1389149 1c0039ec 87aff0ef jal x1, -3974 x1=1c0039f0 +76108329ns 1389152 1c002a66 fb1fe06f jal x0, -4176 +76108388ns 1389155 1c001a16 d6818793 addi x15, x3, -664 x15=1c009144 x3:1c0093dc +76108408ns 1389156 1c001a1a 0007a703 lw x14, 0(x15) x14=00000001 x15:1c009144 PA:1c009144 +76108447ns 1389158 1c001a1c 00170713 addi x14, x14, 1 x14=00000002 x14:00000001 +76108467ns 1389159 1c001a1e 00e7a023 sw x14, 0(x15) x14:00000002 x15:1c009144 PA:1c009144 +76108487ns 1389160 1c001a20 00008067 jalr x0, x1, 0 x1:1c0039f0 +76108526ns 1389162 1c0039f0 db81a703 lw x14, -584(x3) x14=00000000 x3:1c0093dc PA:1c009194 +76108546ns 1389163 1c0039f4 db818693 addi x13, x3, -584 x13=1c009194 x3:1c0093dc +76108566ns 1389164 1c0039f8 00e00433 add x8, x0, x14 x8=00000000 x14:00000000 +76108586ns 1389165 1c0039fa 04041363 bne x8, x0, 70 x8:00000000 +76108606ns 1389166 1c0039fc dbc18413 addi x8, x3, -580 x8=1c009198 x3:1c0093dc +76108625ns 1389167 1c003a00 00042783 lw x15, 0(x8) x15=1c0091b0 x8:1c009198 PA:1c009198 +76108665ns 1389169 1c003a02 00079563 bne x15, x0, 10 x15:1c0091b0 +76108724ns 1389172 1c003a0c 009005b3 add x11, x0, x9 x11=00000058 x9:00000058 +76108744ns 1389173 1c003a0e 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +76108764ns 1389174 1c003a10 5cc000ef jal x1, 1484 x1=1c003a12 +76108804ns 1389176 1c003fdc ff010113 addi x2, x2, -16 x2=1c009b30 x2:1c009b40 +76108823ns 1389177 1c003fde 00812423 sw x8, 8(x2) x8:1c009198 x2:1c009b30 PA:1c009b38 +76108843ns 1389178 1c003fe0 00912223 sw x9, 4(x2) x9:00000058 x2:1c009b30 PA:1c009b34 +76108863ns 1389179 1c003fe2 00a00433 add x8, x0, x10 x8=1c009e10 x10:1c009e10 +76108883ns 1389180 1c003fe4 00b00533 add x10, x0, x11 x10=00000058 x11:00000058 +76108903ns 1389181 1c003fe6 00112623 sw x1, 12(x2) x1:1c003a12 x2:1c009b30 PA:1c009b3c +76108922ns 1389182 1c003fe8 dc01a023 sw x0, -576(x3) x3:1c0093dc PA:1c00919c +76108942ns 1389183 1c003fec a53fe0ef jal x1, -5550 x1=1c003ff0 +76109001ns 1389186 1c002a3e 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76109021ns 1389187 1c002a42 c3c78793 addi x15, x15, -964 x15=1c008c3c x15:1c009000 +76109041ns 1389188 1c002a46 00a00733 add x14, x0, x10 x14=00000058 x10:00000058 +76109061ns 1389189 1c002a48 0007a503 lw x10, 0(x15) x10=1c00c22c x15:1c008c3c PA:1c008c3c +76109081ns 1389190 1c002a4a 1c0196b7 lui x13, 0x1c019000 x13=1c019000 +76109100ns 1389191 1c002a4e 1b068693 addi x13, x13, 432 x13=1c0191b0 x13:1c019000 +76109120ns 1389192 1c002a52 00a70733 add x14, x14, x10 x14=1c00c284 x14:00000058 x10:1c00c22c +76109140ns 1389193 1c002a54 00d76763 bltu x14, x13, 14 x14:1c00c284 x13:1c0191b0 +76109199ns 1389196 1c002a62 00e7a023 sw x14, 0(x15) x14:1c00c284 x15:1c008c3c PA:1c008c3c +76109219ns 1389197 1c002a64 00008067 jalr x0, x1, 0 x1:1c003ff0 +76109259ns 1389199 1c003ff0 fff00793 addi x15, x0, -1 x15=ffffffff +76109279ns 1389200 1c003ff2 00f51663 bne x10, x15, 12 x10:1c00c22c x15:ffffffff +76109338ns 1389203 1c003ffe 00c12083 lw x1, 12(x2) x1=1c003a12 x2:1c009b30 PA:1c009b3c +76109358ns 1389204 1c004000 00812403 lw x8, 8(x2) x8=1c009198 x2:1c009b30 PA:1c009b38 +76109378ns 1389205 1c004002 00412483 lw x9, 4(x2) x9=00000058 x2:1c009b30 PA:1c009b34 +76109397ns 1389206 1c004004 01010113 addi x2, x2, 16 x2=1c009b40 x2:1c009b30 +76109417ns 1389207 1c004006 00008067 jalr x0, x1, 0 x1:1c003a12 +76109457ns 1389209 1c003a12 fff00993 addi x19, x0, -1 x19=ffffffff +76109476ns 1389210 1c003a14 07351a63 bne x10, x19, 116 x10:1c00c22c x19:ffffffff +76109536ns 1389213 1c003a88 00350413 addi x8, x10, 3 x8=1c00c22f x10:1c00c22c +76109556ns 1389214 1c003a8c ffc47413 andi x8, x8, -4 x8=1c00c22c x8:1c00c22f +76109575ns 1389215 1c003a8e fc8502e3 beq x10, x8, -60 x10:1c00c22c x8:1c00c22c +76109635ns 1389218 1c003a52 00942023 sw x9, 0(x8) x9:00000058 x8:1c00c22c PA:1c00c22c +76109655ns 1389219 1c003a54 00a0006f jal x0, 10 +76109694ns 1389221 1c003a5e 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +76109714ns 1389222 1c003a60 80aff0ef jal x1, -4086 x1=1c003a64 +76109773ns 1389225 1c002a6a 8e3ff06f jal x0, -1822 +76109813ns 1389227 1c00234c fc010113 addi x2, x2, -64 x2=1c009b00 x2:1c009b40 +76109833ns 1389228 1c00234e 02812c23 sw x8, 56(x2) x8:1c00c22c x2:1c009b00 PA:1c009b38 +76109853ns 1389229 1c002350 d6818413 addi x8, x3, -664 x8=1c009144 x3:1c0093dc +76109872ns 1389230 1c002354 00042783 lw x15, 0(x8) x15=00000002 x8:1c009144 PA:1c009144 +76109892ns 1389231 1c002356 02112e23 sw x1, 60(x2) x1:1c003a64 x2:1c009b00 PA:1c009b3c +76109912ns 1389232 1c002358 02912a23 sw x9, 52(x2) x9:00000058 x2:1c009b00 PA:1c009b34 +76109932ns 1389233 1c00235a 03212823 sw x18, 48(x2) x18:1c009e10 x2:1c009b00 PA:1c009b30 +76109951ns 1389234 1c00235c 03312623 sw x19, 44(x2) x19:ffffffff x2:1c009b00 PA:1c009b2c +76109971ns 1389235 1c00235e 03412423 sw x20, 40(x2) x20:1c00918c x2:1c009b00 PA:1c009b28 +76109991ns 1389236 1c002360 03512223 sw x21, 36(x2) x21:a5a5a5a5 x2:1c009b00 PA:1c009b24 +76110011ns 1389237 1c002362 03612023 sw x22, 32(x2) x22:a5a5a5a5 x2:1c009b00 PA:1c009b20 +76110031ns 1389238 1c002364 01712e23 sw x23, 28(x2) x23:a5a5a5a5 x2:1c009b00 PA:1c009b1c +76110050ns 1389239 1c002366 02079263 bne x15, x0, 36 x15:00000002 +76110130ns 1389243 1c00238a c83ff0ef jal x1, -894 x1=1c00238e +76110169ns 1389245 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +76110248ns 1389249 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76110288ns 1389251 1c002014 00078863 beq x15, x0, 16 x15:00000001 +76110308ns 1389252 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76110328ns 1389253 1c00201a 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76110347ns 1389254 1c00201c 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76110367ns 1389255 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c009db8 PA:1c009dfc +76110407ns 1389257 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76110426ns 1389258 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c009db8 PA:1c009dfc +76110446ns 1389259 1c002024 00008067 jalr x0, x1, 0 x1:1c00238e +76110486ns 1389261 1c00238e 00042783 lw x15, 0(x8) x15=00000002 x8:1c009144 PA:1c009144 +76110525ns 1389263 1c002390 fff78793 addi x15, x15, -1 x15=00000001 x15:00000002 +76110545ns 1389264 1c002392 00f42023 sw x15, 0(x8) x15:00000001 x8:1c009144 PA:1c009144 +76110565ns 1389265 1c002394 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +76110605ns 1389267 1c002396 02078163 beq x15, x0, 34 x15:00000001 +76110624ns 1389268 1c002398 00000513 addi x10, x0, 0 x10=00000000 +76110644ns 1389269 1c00239a 00a12623 sw x10, 12(x2) x10:00000000 x2:1c009b00 PA:1c009b0c +76110664ns 1389270 1c00239c c8bff0ef jal x1, -886 x1=1c0023a0 +76110723ns 1389273 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76110763ns 1389275 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +76110783ns 1389276 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76110803ns 1389277 1c002030 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +76110842ns 1389279 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c009db8 PA:1c009dfc +76110882ns 1389281 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +76110901ns 1389282 1c002036 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76110921ns 1389283 1c002038 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76110941ns 1389284 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c009db8 PA:1c009dfc +76110981ns 1389286 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +76111000ns 1389287 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c009db8 PA:1c009dfc +76111020ns 1389288 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c009db8 PA:1c009dfc +76111060ns 1389290 1c002042 00079363 bne x15, x0, 6 x15:00000000 +76111080ns 1389291 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +76111159ns 1389295 1c002048 00008067 jalr x0, x1, 0 x1:1c0023a0 +76111198ns 1389297 1c0023a0 03c12083 lw x1, 60(x2) x1=1c003a64 x2:1c009b00 PA:1c009b3c +76111218ns 1389298 1c0023a2 03812403 lw x8, 56(x2) x8=1c00c22c x2:1c009b00 PA:1c009b38 +76111238ns 1389299 1c0023a4 00c12503 lw x10, 12(x2) x10=00000000 x2:1c009b00 PA:1c009b0c +76111258ns 1389300 1c0023a6 03412483 lw x9, 52(x2) x9=00000058 x2:1c009b00 PA:1c009b34 +76111278ns 1389301 1c0023a8 03012903 lw x18, 48(x2) x18=1c009e10 x2:1c009b00 PA:1c009b30 +76111297ns 1389302 1c0023aa 02c12983 lw x19, 44(x2) x19=ffffffff x2:1c009b00 PA:1c009b2c +76111317ns 1389303 1c0023ac 02812a03 lw x20, 40(x2) x20=1c00918c x2:1c009b00 PA:1c009b28 +76111337ns 1389304 1c0023ae 02412a83 lw x21, 36(x2) x21=a5a5a5a5 x2:1c009b00 PA:1c009b24 +76111357ns 1389305 1c0023b0 02012b03 lw x22, 32(x2) x22=a5a5a5a5 x2:1c009b00 PA:1c009b20 +76111377ns 1389306 1c0023b2 01c12b83 lw x23, 28(x2) x23=a5a5a5a5 x2:1c009b00 PA:1c009b1c +76111396ns 1389307 1c0023b4 04010113 addi x2, x2, 64 x2=1c009b40 x2:1c009b00 +76111416ns 1389308 1c0023b6 00008067 jalr x0, x1, 0 x1:1c003a64 +76111456ns 1389310 1c003a64 00b40513 addi x10, x8, 11 x10=1c00c237 x8:1c00c22c +76111475ns 1389311 1c003a68 00440793 addi x15, x8, 4 x15=1c00c230 x8:1c00c22c +76111495ns 1389312 1c003a6c ff857513 andi x10, x10, -8 x10=1c00c230 x10:1c00c237 +76111515ns 1389313 1c003a6e 40f50733 sub x14, x10, x15 x14=00000000 x10:1c00c230 x15:1c00c230 +76111535ns 1389314 1c003a72 fcf500e3 beq x10, x15, -64 x10:1c00c230 x15:1c00c230 +76111594ns 1389317 1c003a32 01c12083 lw x1, 28(x2) x1=1c00297c x2:1c009b40 PA:1c009b5c +76111614ns 1389318 1c003a34 01812403 lw x8, 24(x2) x8=00000000 x2:1c009b40 PA:1c009b58 +76111634ns 1389319 1c003a36 01412483 lw x9, 20(x2) x9=00000000 x2:1c009b40 PA:1c009b54 +76111654ns 1389320 1c003a38 01012903 lw x18, 16(x2) x18=000000ff x2:1c009b40 PA:1c009b50 +76111673ns 1389321 1c003a3a 00c12983 lw x19, 12(x2) x19=00000002 x2:1c009b40 PA:1c009b4c +76111693ns 1389322 1c003a3c 02010113 addi x2, x2, 32 x2=1c009b60 x2:1c009b40 +76111713ns 1389323 1c003a3e 00008067 jalr x0, x1, 0 x1:1c00297c +76111753ns 1389325 1c00297c 00a00433 add x8, x0, x10 x8=1c00c230 x10:1c00c230 +76111772ns 1389326 1c00297e 9cfff0ef jal x1, -1586 x1=1c002982 +76111812ns 1389328 1c00234c fc010113 addi x2, x2, -64 x2=1c009b20 x2:1c009b60 +76111832ns 1389329 1c00234e 02812c23 sw x8, 56(x2) x8:1c00c230 x2:1c009b20 PA:1c009b58 +76111852ns 1389330 1c002350 d6818413 addi x8, x3, -664 x8=1c009144 x3:1c0093dc +76111871ns 1389331 1c002354 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +76111891ns 1389332 1c002356 02112e23 sw x1, 60(x2) x1:1c002982 x2:1c009b20 PA:1c009b5c +76111911ns 1389333 1c002358 02912a23 sw x9, 52(x2) x9:00000000 x2:1c009b20 PA:1c009b54 +76111931ns 1389334 1c00235a 03212823 sw x18, 48(x2) x18:000000ff x2:1c009b20 PA:1c009b50 +76111950ns 1389335 1c00235c 03312623 sw x19, 44(x2) x19:00000002 x2:1c009b20 PA:1c009b4c +76111970ns 1389336 1c00235e 03412423 sw x20, 40(x2) x20:1c00918c x2:1c009b20 PA:1c009b48 +76111990ns 1389337 1c002360 03512223 sw x21, 36(x2) x21:a5a5a5a5 x2:1c009b20 PA:1c009b44 +76112010ns 1389338 1c002362 03612023 sw x22, 32(x2) x22:a5a5a5a5 x2:1c009b20 PA:1c009b40 +76112030ns 1389339 1c002364 01712e23 sw x23, 28(x2) x23:a5a5a5a5 x2:1c009b20 PA:1c009b3c +76112049ns 1389340 1c002366 02079263 bne x15, x0, 36 x15:00000001 +76112129ns 1389344 1c00238a c83ff0ef jal x1, -894 x1=1c00238e +76112168ns 1389346 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +76112247ns 1389350 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76112287ns 1389352 1c002014 00078863 beq x15, x0, 16 x15:00000001 +76112307ns 1389353 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76112327ns 1389354 1c00201a 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76112346ns 1389355 1c00201c 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76112366ns 1389356 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c009db8 PA:1c009dfc +76112406ns 1389358 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76112425ns 1389359 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c009db8 PA:1c009dfc +76112445ns 1389360 1c002024 00008067 jalr x0, x1, 0 x1:1c00238e +76112485ns 1389362 1c00238e 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +76112524ns 1389364 1c002390 fff78793 addi x15, x15, -1 x15=00000000 x15:00000001 +76112544ns 1389365 1c002392 00f42023 sw x15, 0(x8) x15:00000000 x8:1c009144 PA:1c009144 +76112564ns 1389366 1c002394 00042783 lw x15, 0(x8) x15=00000000 x8:1c009144 PA:1c009144 +76112604ns 1389368 1c002396 02078163 beq x15, x0, 34 x15:00000000 +76112663ns 1389371 1c0023b8 d601a783 lw x15, -672(x3) x15=00000003 x3:1c0093dc PA:1c00913c +76112703ns 1389373 1c0023bc fc078ee3 beq x15, x0, -36 x15:00000003 +76112722ns 1389374 1c0023be 1c009937 lui x18, 0x1c009000 x18=1c009000 +76112742ns 1389375 1c0023c2 00000413 addi x8, x0, 0 x8=00000000 +76112762ns 1389376 1c0023c4 93818493 addi x9, x3, -1736 x9=1c008d14 x3:1c0093dc +76112782ns 1389377 1c0023c8 00100993 addi x19, x0, 1 x19=00000001 +76112802ns 1389378 1c0023ca c8890913 addi x18, x18, -888 x18=1c008c88 x18:1c009000 +76112821ns 1389379 1c0023ce 01400a93 addi x21, x0, 20 x21=00000014 +76112841ns 1389380 1c0023d0 04c0006f jal x0, 76 +76112881ns 1389382 1c00241c 0004a783 lw x15, 0(x9) x15=00000000 x9:1c008d14 PA:1c008d14 +76112920ns 1389384 1c00241e fa079ae3 bne x15, x0, -76 x15:00000000 +76112940ns 1389385 1c002420 00040363 beq x8, x0, 6 x8:00000000 +76113019ns 1389389 1c002426 d8018713 addi x14, x3, -640 x14=1c00915c x3:1c0093dc +76113039ns 1389390 1c00242a 00072483 lw x9, 0(x14) x9=00000000 x14:1c00915c PA:1c00915c +76113059ns 1389391 1c00242c d8018413 addi x8, x3, -640 x8=1c00915c x3:1c0093dc +76113079ns 1389392 1c002430 00048d63 beq x9, x0, 26 x9:00000000 +76113158ns 1389396 1c00244a d8c1a783 lw x15, -628(x3) x15=00000001 x3:1c0093dc PA:1c009168 +76113197ns 1389398 1c00244e f40785e3 beq x15, x0, -182 x15:00000001 +76113217ns 1389399 1c002450 00000073 ecall +76113296ns 1389403 1c000800 1000006f jal x0, 256 +76113336ns 1389405 1c000900 f8810113 addi x2, x2, -120 x2=1c009aa8 x2:1c009b20 +76113356ns 1389406 1c000904 00112223 sw x1, 4(x2) x1:1c00238e x2:1c009aa8 PA:1c009aac +76113375ns 1389407 1c000906 00512423 sw x5, 8(x2) x5:a5a5a5a5 x2:1c009aa8 PA:1c009ab0 +76113395ns 1389408 1c000908 00612623 sw x6, 12(x2) x6:00000010 x2:1c009aa8 PA:1c009ab4 +76113415ns 1389409 1c00090a 00712823 sw x7, 16(x2) x7:a5a5a5a5 x2:1c009aa8 PA:1c009ab8 +76113435ns 1389410 1c00090c 00812a23 sw x8, 20(x2) x8:1c00915c x2:1c009aa8 PA:1c009abc +76113455ns 1389411 1c00090e 00912c23 sw x9, 24(x2) x9:00000000 x2:1c009aa8 PA:1c009ac0 +76113474ns 1389412 1c000910 00a12e23 sw x10, 28(x2) x10:1c00c230 x2:1c009aa8 PA:1c009ac4 +76113494ns 1389413 1c000912 02b12023 sw x11, 32(x2) x11:00000058 x2:1c009aa8 PA:1c009ac8 +76113514ns 1389414 1c000914 02c12223 sw x12, 36(x2) x12:00000002 x2:1c009aa8 PA:1c009acc +76113534ns 1389415 1c000916 02d12423 sw x13, 40(x2) x13:1c009db8 x2:1c009aa8 PA:1c009ad0 +76113554ns 1389416 1c000918 02e12623 sw x14, 44(x2) x14:1c00915c x2:1c009aa8 PA:1c009ad4 +76113573ns 1389417 1c00091a 02f12823 sw x15, 48(x2) x15:00000001 x2:1c009aa8 PA:1c009ad8 +76113593ns 1389418 1c00091c 03012a23 sw x16, 52(x2) x16:60070000 x2:1c009aa8 PA:1c009adc +76113613ns 1389419 1c00091e 03112c23 sw x17, 56(x2) x17:00000001 x2:1c009aa8 PA:1c009ae0 +76113633ns 1389420 1c000920 03212e23 sw x18, 60(x2) x18:1c008c88 x2:1c009aa8 PA:1c009ae4 +76113653ns 1389421 1c000922 05312023 sw x19, 64(x2) x19:00000001 x2:1c009aa8 PA:1c009ae8 +76113672ns 1389422 1c000924 05412223 sw x20, 68(x2) x20:1c00918c x2:1c009aa8 PA:1c009aec +76113692ns 1389423 1c000926 05512423 sw x21, 72(x2) x21:00000014 x2:1c009aa8 PA:1c009af0 +76113712ns 1389424 1c000928 05612623 sw x22, 76(x2) x22:a5a5a5a5 x2:1c009aa8 PA:1c009af4 +76113732ns 1389425 1c00092a 05712823 sw x23, 80(x2) x23:a5a5a5a5 x2:1c009aa8 PA:1c009af8 +76113752ns 1389426 1c00092c 05812a23 sw x24, 84(x2) x24:a5a5a5a5 x2:1c009aa8 PA:1c009afc +76113771ns 1389427 1c00092e 05912c23 sw x25, 88(x2) x25:a5a5a5a5 x2:1c009aa8 PA:1c009b00 +76113791ns 1389428 1c000930 05a12e23 sw x26, 92(x2) x26:a5a5a5a5 x2:1c009aa8 PA:1c009b04 +76113811ns 1389429 1c000932 07b12023 sw x27, 96(x2) x27:a5a5a5a5 x2:1c009aa8 PA:1c009b08 +76113831ns 1389430 1c000934 07c12223 sw x28, 100(x2) x28:00000000 x2:1c009aa8 PA:1c009b0c +76113851ns 1389431 1c000936 07d12423 sw x29, 104(x2) x29:1c00b890 x2:1c009aa8 PA:1c009b10 +76113870ns 1389432 1c000938 07e12623 sw x30, 108(x2) x30:00000000 x2:1c009aa8 PA:1c009b14 +76113890ns 1389433 1c00093a 07f12823 sw x31, 112(x2) x31:a5a5a5a5 x2:1c009aa8 PA:1c009b18 +76113910ns 1389434 1c00093c 300022f3 csrrs x5, x0, 0x300 x5=00001800 +76113989ns 1389438 1c000940 06512a23 sw x5, 116(x2) x5:00001800 x2:1c009aa8 PA:1c009b1c +76114009ns 1389439 1c000942 fe810113 addi x2, x2, -24 x2=1c009a90 x2:1c009aa8 +76114029ns 1389440 1c000944 7c0022f3 csrrs x5, x0, 0x7c0 x5=00000000 +76114048ns 1389441 1c000948 7c102373 csrrs x6, x0, 0x7c1 x6=00000000 +76114068ns 1389442 1c00094c 7c2023f3 csrrs x7, x0, 0x7c2 x7=00000000 +76114088ns 1389443 1c000950 7c402e73 csrrs x28, x0, 0x7c4 x28=00000000 +76114108ns 1389444 1c000954 7c502ef3 csrrs x29, x0, 0x7c5 x29=00000000 +76114128ns 1389445 1c000958 7c602f73 csrrs x30, x0, 0x7c6 x30=00000000 +76114147ns 1389446 1c00095c 00512223 sw x5, 4(x2) x5:00000000 x2:1c009a90 PA:1c009a94 +76114167ns 1389447 1c00095e 00612423 sw x6, 8(x2) x6:00000000 x2:1c009a90 PA:1c009a98 +76114187ns 1389448 1c000960 00712623 sw x7, 12(x2) x7:00000000 x2:1c009a90 PA:1c009a9c +76114207ns 1389449 1c000962 01c12823 sw x28, 16(x2) x28:00000000 x2:1c009a90 PA:1c009aa0 +76114227ns 1389450 1c000964 01d12a23 sw x29, 20(x2) x29:00000000 x2:1c009a90 PA:1c009aa4 +76114246ns 1389451 1c000966 01e12c23 sw x30, 24(x2) x30:00000000 x2:1c009a90 PA:1c009aa8 +76114266ns 1389452 1c000968 d541a283 lw x5, -684(x3) x5=1c009db8 x3:1c0093dc PA:1c009130 +76114306ns 1389454 1c00096c 0022a023 sw x2, 0(x5) x2:1c009a90 x5:1c009db8 PA:1c009db8 +76114326ns 1389455 1c000970 34202573 csrrs x10, x0, 0x342 x10=0000000b +76114345ns 1389456 1c000974 341025f3 csrrs x11, x0, 0x341 x11=1c002450 +76114365ns 1389457 1c000978 01f55613 srli x12, x10, 0x1f x12=00000000 x10:0000000b +76114385ns 1389458 1c00097c 00060963 beq x12, x0, 18 x12:00000000 +76114444ns 1389461 1c00098e 00458593 addi x11, x11, 4 x11=1c002454 x11:1c002450 +76114464ns 1389462 1c000990 00b12023 sw x11, 0(x2) x11:1c002454 x2:1c009a90 PA:1c009a90 +76114484ns 1389463 1c000992 00b00293 addi x5, x0, 11 x5=0000000b +76114504ns 1389464 1c000994 7ff57513 andi x10, x10, 2047 x10=0000000b x10:0000000b +76114523ns 1389465 1c000998 00551963 bne x10, x5, 18 x10:0000000b x5:0000000b +76114543ns 1389466 1c00099c 00008117 auipc x2, 0x8000 x2=1c00899c +76114563ns 1389467 1c0009a0 23812103 lw x2, 568(x2) x2=1c0199b0 x2:1c00899c PA:1c008bd4 +76114583ns 1389468 1c0009a4 1d2010ef jal x1, 4562 x1=1c0009a8 +76114642ns 1389471 1c001b76 d681a703 lw x14, -664(x3) x14=00000000 x3:1c0093dc PA:1c009144 +76114662ns 1389472 1c001b7a d8c18793 addi x15, x3, -628 x15=1c009168 x3:1c0093dc +76114682ns 1389473 1c001b7e 00070463 beq x14, x0, 8 x14:00000000 +76114741ns 1389476 1c001b86 ff010113 addi x2, x2, -16 x2=1c0199a0 x2:1c0199b0 +76114761ns 1389477 1c001b88 00812423 sw x8, 8(x2) x8:1c00915c x2:1c0199a0 PA:1c0199a8 +76114781ns 1389478 1c001b8a 00112623 sw x1, 12(x2) x1:1c0009a8 x2:1c0199a0 PA:1c0199ac +76114801ns 1389479 1c001b8c 0007a023 sw x0, 0(x15) x15:1c009168 PA:1c009168 +76114820ns 1389480 1c001b90 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76114840ns 1389481 1c001b94 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76114860ns 1389482 1c001b96 a5a5a737 lui x14, 0xa5a5a000 x14=a5a5a000 +76114880ns 1389483 1c001b9a 5a570713 addi x14, x14, 1445 x14=a5a5a5a5 x14:a5a5a000 +76114899ns 1389484 1c001b9e 0307a783 lw x15, 48(x15) x15=1c009770 x15:1c009db8 PA:1c009de8 +76114919ns 1389485 1c001ba0 d5418413 addi x8, x3, -684 x8=1c009130 x3:1c0093dc +76114939ns 1389486 1c001ba4 0007a603 lw x12, 0(x15) x12=a5a5a5a5 x15:1c009770 PA:1c009770 +76114979ns 1389488 1c001ba6 00e61b63 bne x12, x14, 22 x12:a5a5a5a5 x14:a5a5a5a5 +76114998ns 1389489 1c001baa 0047a683 lw x13, 4(x15) x13=a5a5a5a5 x15:1c009770 PA:1c009774 +76115038ns 1389491 1c001bac 00c69863 bne x13, x12, 16 x13:a5a5a5a5 x12:a5a5a5a5 +76115058ns 1389492 1c001bb0 0087a703 lw x14, 8(x15) x14=a5a5a5a5 x15:1c009770 PA:1c009778 +76115097ns 1389494 1c001bb2 00d71563 bne x14, x13, 10 x14:a5a5a5a5 x13:a5a5a5a5 +76115117ns 1389495 1c001bb6 00c7a783 lw x15, 12(x15) x15=a5a5a5a5 x15:1c009770 PA:1c00977c +76115157ns 1389497 1c001bb8 00e78863 beq x15, x14, 16 x15:a5a5a5a5 x14:a5a5a5a5 +76115216ns 1389500 1c001bc8 d701a503 lw x10, -656(x3) x10=00000003 x3:1c0093dc PA:1c00914c +76115236ns 1389501 1c001bcc abeff0ef jal x1, -3394 x1=1c001bd0 +76115276ns 1389503 1c000e8a 000107b7 lui x15, 0x10000 x15=00010000 +76115295ns 1389504 1c000e8c 02f57663 bgeu x10, x15, 44 x10:00000003 x15:00010000 +76115315ns 1389505 1c000e90 0ff00793 addi x15, x0, 255 x15=000000ff +76115335ns 1389506 1c000e94 00a7b7b3 sltu x15, x15, x10 x15=00000000 x15:000000ff x10:00000003 +76115355ns 1389507 1c000e98 00379793 slli x15, x15, 0x3 x15=00000000 x15:00000000 +76115374ns 1389508 1c000e9a 1c009737 lui x14, 0x1c009000 x14=1c009000 +76115394ns 1389509 1c000e9e 02000693 addi x13, x0, 32 x13=00000020 +76115414ns 1389510 1c000ea2 40f686b3 sub x13, x13, x15 x13=00000020 x13:00000020 x15:00000000 +76115434ns 1389511 1c000ea4 00f55533 srl x10, x10, x15 x10=00000003 x10:00000003 x15:00000000 +76115454ns 1389512 1c000ea8 ad470793 addi x15, x14, -1324 x15=1c008ad4 x14:1c009000 +76115473ns 1389513 1c000eac 00f50533 add x10, x10, x15 x10=1c008ad7 x10:00000003 x15:1c008ad4 +76115493ns 1389514 1c000eae 00054503 lbu x10, 0(x10) x10=00000002 x10:1c008ad7 PA:1c008ad7 +76115533ns 1389516 1c000eb2 40a68533 sub x10, x13, x10 x10=0000001e x13:00000020 x10:00000002 +76115553ns 1389517 1c000eb6 00008067 jalr x0, x1, 0 x1:1c001bd0 +76115592ns 1389519 1c001bd0 01f00713 addi x14, x0, 31 x14=0000001f +76115612ns 1389520 1c001bd2 40a70533 sub x10, x14, x10 x10=00000001 x14:0000001f x10:0000001e +76115632ns 1389521 1c001bd6 01400793 addi x15, x0, 20 x15=00000014 +76115652ns 1389522 1c001bd8 02f507b3 mul x15, x10, x15 x15=00000014 x10:00000001 x15:00000014 +76115671ns 1389523 1c001bdc 1c009737 lui x14, 0x1c009000 x14=1c009000 +76115691ns 1389524 1c001be0 c8870693 addi x13, x14, -888 x13=1c008c88 x14:1c009000 +76115711ns 1389525 1c001be4 c8870713 addi x14, x14, -888 x14=1c008c88 x14:1c009000 +76115731ns 1389526 1c001be8 00f686b3 add x13, x13, x15 x13=1c008c9c x13:1c008c88 x15:00000014 +76115751ns 1389527 1c001bea 0006a603 lw x12, 0(x13) x12=00000001 x13:1c008c9c PA:1c008c9c +76115790ns 1389529 1c001bec 02061263 bne x12, x0, 36 x12:00000001 +76115849ns 1389532 1c001c10 0046a603 lw x12, 4(x13) x12=1c009dbc x13:1c008c9c PA:1c008ca0 +76115869ns 1389533 1c001c12 00878793 addi x15, x15, 8 x15=0000001c x15:00000014 +76115889ns 1389534 1c001c14 00e787b3 add x15, x15, x14 x15=1c008ca4 x15:0000001c x14:1c008c88 +76115909ns 1389535 1c001c16 00462603 lw x12, 4(x12) x12=1c008ca4 x12:1c009dbc PA:1c009dc0 +76115948ns 1389537 1c001c18 00c6a223 sw x12, 4(x13) x12:1c008ca4 x13:1c008c9c PA:1c008ca0 +76115968ns 1389538 1c001c1a 00f61463 bne x12, x15, 8 x12:1c008ca4 x15:1c008ca4 +76115988ns 1389539 1c001c1e 00462783 lw x15, 4(x12) x15=1c009dbc x12:1c008ca4 PA:1c008ca8 +76116028ns 1389541 1c001c20 00f6a223 sw x15, 4(x13) x15:1c009dbc x13:1c008c9c PA:1c008ca0 +76116047ns 1389542 1c001c22 01400793 addi x15, x0, 20 x15=00000014 +76116067ns 1389543 1c001c24 02f50533 mul x10, x10, x15 x10=00000014 x10:00000001 x15:00000014 +76116087ns 1389544 1c001c28 00c12083 lw x1, 12(x2) x1=1c0009a8 x2:1c0199a0 PA:1c0199ac +76116107ns 1389545 1c001c2a 00a70733 add x14, x14, x10 x14=1c008c9c x14:1c008c88 x10:00000014 +76116127ns 1389546 1c001c2c 00472783 lw x15, 4(x14) x15=1c009dbc x14:1c008c9c PA:1c008ca0 +76116146ns 1389547 1c001c2e 1c009737 lui x14, 0x1c009000 x14=1c009000 +76116166ns 1389548 1c001c32 00c7a783 lw x15, 12(x15) x15=1c009db8 x15:1c009dbc PA:1c009dc8 +76116206ns 1389550 1c001c34 00f42023 sw x15, 0(x8) x15:1c009db8 x8:1c009130 PA:1c009130 +76116226ns 1389551 1c001c36 00042783 lw x15, 0(x8) x15=1c009db8 x8:1c009130 PA:1c009130 +76116245ns 1389552 1c001c38 00812403 lw x8, 8(x2) x8=1c00915c x2:1c0199a0 PA:1c0199a8 +76116265ns 1389553 1c001c3a 05878793 addi x15, x15, 88 x15=1c009e10 x15:1c009db8 +76116285ns 1389554 1c001c3e c4f72223 sw x15, -956(x14) x15:1c009e10 x14:1c009000 PA:1c008c44 +76116305ns 1389555 1c001c42 01010113 addi x2, x2, 16 x2=1c0199b0 x2:1c0199a0 +76116325ns 1389556 1c001c44 00008067 jalr x0, x1, 0 x1:1c0009a8 +76116364ns 1389558 1c0009a8 0160006f jal x0, 22 +76116423ns 1389561 1c0009be d541a303 lw x6, -684(x3) x6=1c009db8 x3:1c0093dc PA:1c009130 +76116463ns 1389563 1c0009c2 00032103 lw x2, 0(x6) x2=1c009a90 x6:1c009db8 PA:1c009db8 +76116503ns 1389565 1c0009c6 00012283 lw x5, 0(x2) x5=1c002454 x2:1c009a90 PA:1c009a90 +76116542ns 1389567 1c0009c8 34129073 csrrw x0, x5, 0x341 x5:1c002454 +76116562ns 1389568 1c0009cc 00412283 lw x5, 4(x2) x5=00000000 x2:1c009a90 PA:1c009a94 +76116582ns 1389569 1c0009ce 00812303 lw x6, 8(x2) x6=00000000 x2:1c009a90 PA:1c009a98 +76116602ns 1389570 1c0009d0 00c12383 lw x7, 12(x2) x7=00000000 x2:1c009a90 PA:1c009a9c +76116621ns 1389571 1c0009d2 01012e03 lw x28, 16(x2) x28=00000000 x2:1c009a90 PA:1c009aa0 +76116641ns 1389572 1c0009d4 01412e83 lw x29, 20(x2) x29=00000000 x2:1c009a90 PA:1c009aa4 +76116661ns 1389573 1c0009d6 01812f03 lw x30, 24(x2) x30=00000000 x2:1c009a90 PA:1c009aa8 +76116681ns 1389574 1c0009d8 7c029073 csrrw x0, x5, 0x7c0 x5:00000000 +76116701ns 1389575 1c0009dc 7c131073 csrrw x0, x6, 0x7c1 x6:00000000 +76116720ns 1389576 1c0009e0 7c239073 csrrw x0, x7, 0x7c2 x7:00000000 +76116740ns 1389577 1c0009e4 7c4e1073 csrrw x0, x28, 0x7c4 x28:00000000 +76116760ns 1389578 1c0009e8 7c5e9073 csrrw x0, x29, 0x7c5 x29:00000000 +76116780ns 1389579 1c0009ec 7c6f1073 csrrw x0, x30, 0x7c6 x30:00000000 +76116800ns 1389580 1c0009f0 01810113 addi x2, x2, 24 x2=1c009aa8 x2:1c009a90 +76116819ns 1389581 1c0009f2 07412283 lw x5, 116(x2) x5=00001800 x2:1c009aa8 PA:1c009b1c +76116859ns 1389583 1c0009f4 30029073 csrrw x0, x5, 0x300 x5:00001800 +76116938ns 1389587 1c0009f8 00412083 lw x1, 4(x2) x1=1c00238e x2:1c009aa8 PA:1c009aac +76116958ns 1389588 1c0009fa 00812283 lw x5, 8(x2) x5=a5a5a5a5 x2:1c009aa8 PA:1c009ab0 +76116978ns 1389589 1c0009fc 00c12303 lw x6, 12(x2) x6=00000010 x2:1c009aa8 PA:1c009ab4 +76116997ns 1389590 1c0009fe 01012383 lw x7, 16(x2) x7=a5a5a5a5 x2:1c009aa8 PA:1c009ab8 +76117017ns 1389591 1c000a00 01412403 lw x8, 20(x2) x8=1c00915c x2:1c009aa8 PA:1c009abc +76117037ns 1389592 1c000a02 01812483 lw x9, 24(x2) x9=00000000 x2:1c009aa8 PA:1c009ac0 +76117057ns 1389593 1c000a04 01c12503 lw x10, 28(x2) x10=1c00c230 x2:1c009aa8 PA:1c009ac4 +76117077ns 1389594 1c000a06 02012583 lw x11, 32(x2) x11=00000058 x2:1c009aa8 PA:1c009ac8 +76117096ns 1389595 1c000a08 02412603 lw x12, 36(x2) x12=00000002 x2:1c009aa8 PA:1c009acc +76117116ns 1389596 1c000a0a 02812683 lw x13, 40(x2) x13=1c009db8 x2:1c009aa8 PA:1c009ad0 +76117136ns 1389597 1c000a0c 02c12703 lw x14, 44(x2) x14=1c00915c x2:1c009aa8 PA:1c009ad4 +76117156ns 1389598 1c000a0e 03012783 lw x15, 48(x2) x15=00000001 x2:1c009aa8 PA:1c009ad8 +76117176ns 1389599 1c000a10 03412803 lw x16, 52(x2) x16=60070000 x2:1c009aa8 PA:1c009adc +76117195ns 1389600 1c000a12 03812883 lw x17, 56(x2) x17=00000001 x2:1c009aa8 PA:1c009ae0 +76117215ns 1389601 1c000a14 03c12903 lw x18, 60(x2) x18=1c008c88 x2:1c009aa8 PA:1c009ae4 +76117235ns 1389602 1c000a16 04012983 lw x19, 64(x2) x19=00000001 x2:1c009aa8 PA:1c009ae8 +76117255ns 1389603 1c000a18 04412a03 lw x20, 68(x2) x20=1c00918c x2:1c009aa8 PA:1c009aec +76117275ns 1389604 1c000a1a 04812a83 lw x21, 72(x2) x21=00000014 x2:1c009aa8 PA:1c009af0 +76117294ns 1389605 1c000a1c 04c12b03 lw x22, 76(x2) x22=a5a5a5a5 x2:1c009aa8 PA:1c009af4 +76117314ns 1389606 1c000a1e 05012b83 lw x23, 80(x2) x23=a5a5a5a5 x2:1c009aa8 PA:1c009af8 +76117334ns 1389607 1c000a20 05412c03 lw x24, 84(x2) x24=a5a5a5a5 x2:1c009aa8 PA:1c009afc +76117354ns 1389608 1c000a22 05812c83 lw x25, 88(x2) x25=a5a5a5a5 x2:1c009aa8 PA:1c009b00 +76117373ns 1389609 1c000a24 05c12d03 lw x26, 92(x2) x26=a5a5a5a5 x2:1c009aa8 PA:1c009b04 +76117393ns 1389610 1c000a26 06012d83 lw x27, 96(x2) x27=a5a5a5a5 x2:1c009aa8 PA:1c009b08 +76117413ns 1389611 1c000a28 06412e03 lw x28, 100(x2) x28=00000000 x2:1c009aa8 PA:1c009b0c +76117433ns 1389612 1c000a2a 06812e83 lw x29, 104(x2) x29=1c00b890 x2:1c009aa8 PA:1c009b10 +76117453ns 1389613 1c000a2c 06c12f03 lw x30, 108(x2) x30=00000000 x2:1c009aa8 PA:1c009b14 +76117472ns 1389614 1c000a2e 07012f83 lw x31, 112(x2) x31=a5a5a5a5 x2:1c009aa8 PA:1c009b18 +76117492ns 1389615 1c000a30 07810113 addi x2, x2, 120 x2=1c009b20 x2:1c009aa8 +76117512ns 1389616 1c000a34 30200073 mret +76117611ns 1389621 1c002454 00100513 addi x10, x0, 1 x10=00000001 +76117631ns 1389622 1c002456 f45ff06f jal x0, -188 +76117670ns 1389624 1c00239a 00a12623 sw x10, 12(x2) x10:00000001 x2:1c009b20 PA:1c009b2c +76117690ns 1389625 1c00239c c8bff0ef jal x1, -886 x1=1c0023a0 +76117750ns 1389628 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76117789ns 1389630 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +76117809ns 1389631 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76117829ns 1389632 1c002030 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +76117868ns 1389634 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c009db8 PA:1c009dfc +76117908ns 1389636 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +76117928ns 1389637 1c002036 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76117947ns 1389638 1c002038 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76117967ns 1389639 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c009db8 PA:1c009dfc +76118007ns 1389641 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +76118027ns 1389642 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c009db8 PA:1c009dfc +76118046ns 1389643 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c009db8 PA:1c009dfc +76118086ns 1389645 1c002042 00079363 bne x15, x0, 6 x15:00000000 +76118106ns 1389646 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +76118185ns 1389650 1c002048 00008067 jalr x0, x1, 0 x1:1c0023a0 +76118225ns 1389652 1c0023a0 03c12083 lw x1, 60(x2) x1=1c002982 x2:1c009b20 PA:1c009b5c +76118244ns 1389653 1c0023a2 03812403 lw x8, 56(x2) x8=1c00c230 x2:1c009b20 PA:1c009b58 +76118264ns 1389654 1c0023a4 00c12503 lw x10, 12(x2) x10=00000001 x2:1c009b20 PA:1c009b2c +76118284ns 1389655 1c0023a6 03412483 lw x9, 52(x2) x9=00000000 x2:1c009b20 PA:1c009b54 +76118304ns 1389656 1c0023a8 03012903 lw x18, 48(x2) x18=000000ff x2:1c009b20 PA:1c009b50 +76118323ns 1389657 1c0023aa 02c12983 lw x19, 44(x2) x19=00000002 x2:1c009b20 PA:1c009b4c +76118343ns 1389658 1c0023ac 02812a03 lw x20, 40(x2) x20=1c00918c x2:1c009b20 PA:1c009b48 +76118363ns 1389659 1c0023ae 02412a83 lw x21, 36(x2) x21=a5a5a5a5 x2:1c009b20 PA:1c009b44 +76118383ns 1389660 1c0023b0 02012b03 lw x22, 32(x2) x22=a5a5a5a5 x2:1c009b20 PA:1c009b40 +76118403ns 1389661 1c0023b2 01c12b83 lw x23, 28(x2) x23=a5a5a5a5 x2:1c009b20 PA:1c009b3c +76118422ns 1389662 1c0023b4 04010113 addi x2, x2, 64 x2=1c009b60 x2:1c009b20 +76118442ns 1389663 1c0023b6 00008067 jalr x0, x1, 0 x1:1c002982 +76118482ns 1389665 1c002982 00041363 bne x8, x0, 6 x8:1c00c230 +76118541ns 1389668 1c002988 01c12083 lw x1, 28(x2) x1=1c001154 x2:1c009b60 PA:1c009b7c +76118561ns 1389669 1c00298a 00800533 add x10, x0, x8 x10=1c00c230 x8:1c00c230 +76118581ns 1389670 1c00298c 01812403 lw x8, 24(x2) x8=00000000 x2:1c009b60 PA:1c009b78 +76118601ns 1389671 1c00298e 02010113 addi x2, x2, 32 x2=1c009b80 x2:1c009b60 +76118620ns 1389672 1c002990 00008067 jalr x0, x1, 0 x1:1c001154 +76118660ns 1389674 1c001154 00a00433 add x8, x0, x10 x8=1c00c230 x10:1c00c230 +76118680ns 1389675 1c001156 00050e63 beq x10, x0, 28 x10:1c00c230 +76118700ns 1389676 1c001158 00a007b3 add x15, x0, x10 x15=1c00c230 x10:1c00c230 +76118719ns 1389677 1c00115a 00048363 beq x9, x0, 6 x9:00000000 +76118779ns 1389680 1c001160 00f42023 sw x15, 0(x8) x15:1c00c230 x8:1c00c230 PA:1c00c230 +76118799ns 1389681 1c001162 03242e23 sw x18, 60(x8) x18:000000ff x8:1c00c230 PA:1c00c26c +76118818ns 1389682 1c001166 04942023 sw x9, 64(x8) x9:00000000 x8:1c00c230 PA:1c00c270 +76118838ns 1389683 1c001168 00100593 addi x11, x0, 1 x11=00000001 +76118858ns 1389684 1c00116a 00800533 add x10, x0, x8 x10=1c00c230 x8:1c00c230 +76118878ns 1389685 1c00116c f1fff0ef jal x1, -226 x1=1c00116e +76118917ns 1389687 1c00108a ff010113 addi x2, x2, -16 x2=1c009b70 x2:1c009b80 +76118937ns 1389688 1c00108c 00112623 sw x1, 12(x2) x1:1c00116e x2:1c009b70 PA:1c009b7c +76118957ns 1389689 1c00108e 00812423 sw x8, 8(x2) x8:1c00c230 x2:1c009b70 PA:1c009b78 +76118977ns 1389690 1c001090 00912223 sw x9, 4(x2) x9:00000000 x2:1c009b70 PA:1c009b74 +76118996ns 1389691 1c001092 02051163 bne x10, x0, 34 x10:1c00c230 +76119056ns 1389694 1c0010b4 00a00433 add x8, x0, x10 x8=1c00c230 x10:1c00c230 +76119076ns 1389695 1c0010b6 00b004b3 add x9, x0, x11 x9=00000001 x11:00000001 +76119095ns 1389696 1c0010b8 755000ef jal x1, 3924 x1=1c0010bc +76119135ns 1389698 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +76119214ns 1389702 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76119254ns 1389704 1c002014 00078863 beq x15, x0, 16 x15:00000001 +76119274ns 1389705 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76119293ns 1389706 1c00201a 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76119313ns 1389707 1c00201c 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76119333ns 1389708 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c009db8 PA:1c009dfc +76119372ns 1389710 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76119392ns 1389711 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c009db8 PA:1c009dfc +76119412ns 1389712 1c002024 00008067 jalr x0, x1, 0 x1:1c0010bc +76119452ns 1389714 1c0010bc 04042683 lw x13, 64(x8) x13=00000000 x8:1c00c230 PA:1c00c270 +76119471ns 1389715 1c0010be 03c42783 lw x15, 60(x8) x15=000000ff x8:1c00c230 PA:1c00c26c +76119491ns 1389716 1c0010c0 00042703 lw x14, 0(x8) x14=1c00c230 x8:1c00c230 PA:1c00c230 +76119511ns 1389717 1c0010c2 02042c23 sw x0, 56(x8) x8:1c00c230 PA:1c00c268 +76119531ns 1389718 1c0010c6 02f687b3 mul x15, x13, x15 x15=00000000 x13:00000000 x15:000000ff +76119551ns 1389719 1c0010ca 00e42223 sw x14, 4(x8) x14:1c00c230 x8:1c00c230 PA:1c00c234 +76119570ns 1389720 1c0010cc 00f70633 add x12, x14, x15 x12=1c00c230 x14:1c00c230 x15:00000000 +76119590ns 1389721 1c0010d0 40d787b3 sub x15, x15, x13 x15=00000000 x15:00000000 x13:00000000 +76119610ns 1389722 1c0010d2 00e787b3 add x15, x15, x14 x15=1c00c230 x15:00000000 x14:1c00c230 +76119630ns 1389723 1c0010d4 00f42623 sw x15, 12(x8) x15:1c00c230 x8:1c00c230 PA:1c00c23c +76119650ns 1389724 1c0010d6 fff00793 addi x15, x0, -1 x15=ffffffff +76119669ns 1389725 1c0010d8 04f40223 sb x15, 68(x8) x15:ffffffff x8:1c00c230 PA:1c00c274 +76119689ns 1389726 1c0010dc 00c42423 sw x12, 8(x8) x12:1c00c230 x8:1c00c230 PA:1c00c238 +76119709ns 1389727 1c0010de 04f402a3 sb x15, 69(x8) x15:ffffffff x8:1c00c230 PA:1c00c275 +76119729ns 1389728 1c0010e2 02049263 bne x9, x0, 36 x9:00000001 +76119808ns 1389732 1c001106 01040513 addi x10, x8, 16 x10=1c00c240 x8:1c00c230 +76119828ns 1389733 1c00110a dbdff0ef jal x1, -580 x1=1c00110c +76119887ns 1389736 1c000ec6 00850793 addi x15, x10, 8 x15=1c00c248 x10:1c00c240 +76119907ns 1389737 1c000eca fff00713 addi x14, x0, -1 x14=ffffffff +76119927ns 1389738 1c000ecc 00f52223 sw x15, 4(x10) x15:1c00c248 x10:1c00c240 PA:1c00c244 +76119946ns 1389739 1c000ece 00e52423 sw x14, 8(x10) x14:ffffffff x10:1c00c240 PA:1c00c248 +76119966ns 1389740 1c000ed0 00f52623 sw x15, 12(x10) x15:1c00c248 x10:1c00c240 PA:1c00c24c +76119986ns 1389741 1c000ed2 00f52823 sw x15, 16(x10) x15:1c00c248 x10:1c00c240 PA:1c00c250 +76120006ns 1389742 1c000ed4 00052023 sw x0, 0(x10) x10:1c00c240 PA:1c00c240 +76120026ns 1389743 1c000ed8 00008067 jalr x0, x1, 0 x1:1c00110c +76120065ns 1389745 1c00110c 02440513 addi x10, x8, 36 x10=1c00c254 x8:1c00c230 +76120085ns 1389746 1c001110 db7ff0ef jal x1, -586 x1=1c001112 +76120144ns 1389749 1c000ec6 00850793 addi x15, x10, 8 x15=1c00c25c x10:1c00c254 +76120164ns 1389750 1c000eca fff00713 addi x14, x0, -1 x14=ffffffff +76120184ns 1389751 1c000ecc 00f52223 sw x15, 4(x10) x15:1c00c25c x10:1c00c254 PA:1c00c258 +76120204ns 1389752 1c000ece 00e52423 sw x14, 8(x10) x14:ffffffff x10:1c00c254 PA:1c00c25c +76120224ns 1389753 1c000ed0 00f52623 sw x15, 12(x10) x15:1c00c25c x10:1c00c254 PA:1c00c260 +76120243ns 1389754 1c000ed2 00f52823 sw x15, 16(x10) x15:1c00c25c x10:1c00c254 PA:1c00c264 +76120263ns 1389755 1c000ed4 00052023 sw x0, 0(x10) x10:1c00c254 PA:1c00c254 +76120283ns 1389756 1c000ed8 00008067 jalr x0, x1, 0 x1:1c001112 +76120322ns 1389758 1c001112 fe5ff06f jal x0, -28 +76120382ns 1389761 1c0010f6 731000ef jal x1, 3888 x1=1c0010fa +76120441ns 1389764 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76120481ns 1389766 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +76120501ns 1389767 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76120520ns 1389768 1c002030 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +76120560ns 1389770 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c009db8 PA:1c009dfc +76120600ns 1389772 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +76120619ns 1389773 1c002036 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76120639ns 1389774 1c002038 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76120659ns 1389775 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c009db8 PA:1c009dfc +76120699ns 1389777 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +76120718ns 1389778 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c009db8 PA:1c009dfc +76120738ns 1389779 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c009db8 PA:1c009dfc +76120778ns 1389781 1c002042 00079363 bne x15, x0, 6 x15:00000000 +76120797ns 1389782 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +76120877ns 1389786 1c002048 00008067 jalr x0, x1, 0 x1:1c0010fa +76120916ns 1389788 1c0010fa 00c12083 lw x1, 12(x2) x1=1c00116e x2:1c009b70 PA:1c009b7c +76120936ns 1389789 1c0010fc 00812403 lw x8, 8(x2) x8=1c00c230 x2:1c009b70 PA:1c009b78 +76120956ns 1389790 1c0010fe 00412483 lw x9, 4(x2) x9=00000000 x2:1c009b70 PA:1c009b74 +76120976ns 1389791 1c001100 00100513 addi x10, x0, 1 x10=00000001 +76120995ns 1389792 1c001102 01010113 addi x2, x2, 16 x2=1c009b80 x2:1c009b70 +76121015ns 1389793 1c001104 00008067 jalr x0, x1, 0 x1:1c00116e +76121075ns 1389796 1c00116e 05340623 sb x19, 76(x8) x19:00000002 x8:1c00c230 PA:1c00c27c +76121094ns 1389797 1c001172 01c12083 lw x1, 28(x2) x1=1c0011cc x2:1c009b80 PA:1c009b9c +76121114ns 1389798 1c001174 00800533 add x10, x0, x8 x10=1c00c230 x8:1c00c230 +76121134ns 1389799 1c001176 01812403 lw x8, 24(x2) x8=00000000 x2:1c009b80 PA:1c009b98 +76121154ns 1389800 1c001178 01412483 lw x9, 20(x2) x9=1c009190 x2:1c009b80 PA:1c009b94 +76121174ns 1389801 1c00117a 01012903 lw x18, 16(x2) x18=1c009188 x2:1c009b80 PA:1c009b90 +76121193ns 1389802 1c00117c 00c12983 lw x19, 12(x2) x19=00000006 x2:1c009b80 PA:1c009b8c +76121213ns 1389803 1c00117e 02010113 addi x2, x2, 32 x2=1c009ba0 x2:1c009b80 +76121233ns 1389804 1c001180 00008067 jalr x0, x1, 0 x1:1c0011cc +76121273ns 1389806 1c0011cc 00050263 beq x10, x0, 4 x10:1c00c230 +76121292ns 1389807 1c0011ce 02852c23 sw x8, 56(x10) x8:00000000 x10:1c00c230 PA:1c00c268 +76121312ns 1389808 1c0011d0 00c12083 lw x1, 12(x2) x1=1c003454 x2:1c009ba0 PA:1c009bac +76121332ns 1389809 1c0011d2 00812403 lw x8, 8(x2) x8=1c009c50 x2:1c009ba0 PA:1c009ba8 +76121352ns 1389810 1c0011d4 01010113 addi x2, x2, 16 x2=1c009bb0 x2:1c009ba0 +76121371ns 1389811 1c0011d6 00008067 jalr x0, x1, 0 x1:1c003454 +76121411ns 1389813 1c003454 02a42a23 sw x10, 52(x8) x10:1c00c230 x8:1c009c50 PA:1c009c84 +76121431ns 1389814 1c003456 00050b63 beq x10, x0, 22 x10:1c00c230 +76121451ns 1389815 1c003458 1c0037b7 lui x15, 0x1c003000 x15=1c003000 +76121470ns 1389816 1c00345c 40c78793 addi x15, x15, 1036 x15=1c00340c x15:1c003000 +76121490ns 1389817 1c003460 02f42c23 sw x15, 56(x8) x15:1c00340c x8:1c009c50 PA:1c009c88 +76121510ns 1389818 1c003462 1c0037b7 lui x15, 0x1c003000 x15=1c003000 +76121530ns 1389819 1c003466 3da78793 addi x15, x15, 986 x15=1c0033da x15:1c003000 +76121550ns 1389820 1c00346a 02f42e23 sw x15, 60(x8) x15:1c0033da x8:1c009c50 PA:1c009c8c +76121569ns 1389821 1c00346c 00100793 addi x15, x0, 1 x15=00000001 +76121589ns 1389822 1c00346e 04f403a3 sb x15, 71(x8) x15:00000001 x8:1c009c50 PA:1c009c97 +76121609ns 1389823 1c003472 fff00793 addi x15, x0, -1 x15=ffffffff +76121629ns 1389824 1c003474 00c12083 lw x1, 12(x2) x1=1c003626 x2:1c009bb0 PA:1c009bbc +76121649ns 1389825 1c003476 04f402a3 sb x15, 69(x8) x15:ffffffff x8:1c009c50 PA:1c009c95 +76121668ns 1389826 1c00347a 00800533 add x10, x0, x8 x10=1c009c50 x8:1c009c50 +76121688ns 1389827 1c00347c 00812403 lw x8, 8(x2) x8=00000000 x2:1c009bb0 PA:1c009bb8 +76121708ns 1389828 1c00347e 01010113 addi x2, x2, 16 x2=1c009bc0 x2:1c009bb0 +76121728ns 1389829 1c003480 00008067 jalr x0, x1, 0 x1:1c003626 +76121767ns 1389831 1c003626 00a00733 add x14, x0, x10 x14=1c009c50 x10:1c009c50 +76121787ns 1389832 1c003628 00100693 addi x13, x0, 1 x13=00000001 +76121807ns 1389833 1c00362a 02800613 addi x12, x0, 40 x12=00000028 +76121827ns 1389834 1c00362e 01810593 addi x11, x2, 24 x11=1c009bd8 x2:1c009bc0 +76121846ns 1389835 1c003630 02010513 addi x10, x2, 32 x10=1c009be0 x2:1c009bc0 +76121866ns 1389836 1c003632 d10ff0ef jal x1, -2800 x1=1c003636 +76121906ns 1389838 1c002b42 00852503 lw x10, 8(x10) x10=1c00b8c0 x10:1c009be0 PA:1c009be8 +76121926ns 1389839 1c002b44 2820006f jal x0, 642 +76121985ns 1389842 1c002dc6 00452e83 lw x29, 4(x10) x29=1c00b890 x10:1c00b8c0 PA:1c00b8c4 +76122005ns 1389843 1c002dca fd010113 addi x2, x2, -48 x2=1c009b90 x2:1c009bc0 +76122025ns 1389844 1c002dcc 02112623 sw x1, 44(x2) x1:1c003636 x2:1c009b90 PA:1c009bbc +76122044ns 1389845 1c002dce 02812423 sw x8, 40(x2) x8:00000000 x2:1c009b90 PA:1c009bb8 +76122064ns 1389846 1c002dd0 00c008b3 add x17, x0, x12 x17=00000028 x12:00000028 +76122084ns 1389847 1c002dd2 00e00633 add x12, x0, x14 x12=1c009c50 x14:1c009c50 +76122104ns 1389848 1c002dd4 00010737 lui x14, 0x10000 x14=00010000 +76122124ns 1389849 1c002dd6 014ec783 lbu x15, 20(x29) x15=00000000 x29:1c00b890 PA:1c00b8a4 +76122143ns 1389850 1c002dda 00852803 lw x16, 8(x10) x16=00000003 x10:1c00b8c0 PA:1c00b8c8 +76122163ns 1389851 1c002dde 01177463 bgeu x14, x17, 8 x14:00010000 x17:00000028 +76122242ns 1389855 1c002de6 30047473 csrrci x8, 0x00000008, 0x300 x8=00000088 +76122321ns 1389859 1c002dea 03954303 lbu x6, 57(x10) x6=00000000 x10:1c00b8c0 PA:1c00b8f9 +76122361ns 1389861 1c002dee 0a030963 beq x6, x0, 178 x6:00000000 +76122420ns 1389864 1c002ea0 00000713 addi x14, x0, 0 x14=00000000 +76122440ns 1389865 1c002ea2 00800e13 addi x28, x0, 8 x28=00000008 +76122460ns 1389866 1c002ea4 f5fff06f jal x0, -162 +76122519ns 1389869 1c002e02 00ceaf03 lw x30, 12(x29) x30=00000000 x29:1c00b890 PA:1c00b89c +76122559ns 1389871 1c002e06 0a0f1863 bne x30, x0, 176 x30:00000000 +76122579ns 1389872 1c002e0a 03854703 lbu x14, 56(x10) x14=00000000 x10:1c00b8c0 PA:1c00b8f8 +76122599ns 1389873 1c002e0e 01052623 sw x16, 12(x10) x16:00000003 x10:1c00b8c0 PA:1c00b8cc +76122618ns 1389874 1c002e12 10000837 lui x16, 0x10000000 x16=10000000 +76122638ns 1389875 1c002e16 01076733 or x14, x14, x16 x14=10000000 x14:00000000 x16:10000000 +76122658ns 1389876 1c002e1a 00e52823 sw x14, 16(x10) x14:10000000 x10:1c00b8c0 PA:1c00b8d0 +76122678ns 1389877 1c002e1c fffe0713 addi x14, x28, -1 x14=00000007 x28:00000008 +76122698ns 1389878 1c002e20 03c8de33 divu x28, x17, x28 x28=00000005 x17:00000028 x28:00000008 +76123311ns 1389909 1c002e24 00c6f813 andi x16, x13, 12 x16=00000000 x13:00000001 +76123331ns 1389910 1c002e28 ffc80813 addi x16, x16, -4 x16=fffffffc x16:00000000 +76123351ns 1389911 1c002e2a 00183813 sltiu x16, x16, 1 x16=00000000 x16:fffffffc +76123370ns 1389912 1c002e2e 01071713 slli x14, x14, 0x10 x14=00070000 x14:00000007 +76123390ns 1389913 1c002e30 01b81813 slli x16, x16, 0x1b x16=00000000 x16:00000000 +76123410ns 1389914 1c002e32 00e86833 or x16, x16, x14 x16=00070000 x16:00000000 x14:00070000 +76123430ns 1389915 1c002e36 60000737 lui x14, 0x60000000 x14=60000000 +76123450ns 1389916 1c002e3a 00e86833 or x16, x16, x14 x16=60070000 x16:00070000 x14:60000000 +76123469ns 1389917 1c002e3e 0036f693 andi x13, x13, 3 x13=00000001 x13:00000001 +76123489ns 1389918 1c002e40 00100713 addi x14, x0, 1 x14=00000001 +76123509ns 1389919 1c002e42 fffe0e13 addi x28, x28, -1 x28=00000004 x28:00000005 +76123529ns 1389920 1c002e44 01c86833 or x16, x16, x28 x16=60070004 x16:60070000 x28:00000004 +76123549ns 1389921 1c002e48 01052a23 sw x16, 20(x10) x16:60070004 x10:1c00b8c0 PA:1c00b8d4 +76123568ns 1389922 1c002e4c 06e68163 beq x13, x14, 98 x13:00000001 x14:00000001 +76123648ns 1389926 1c002eae 900006b7 lui x13, 0x90000000 x13=90000000 +76123667ns 1389927 1c002eb2 00368693 addi x13, x13, 3 x13=90000003 x13:90000000 +76123687ns 1389928 1c002eb4 fa3ff06f jal x0, -94 +76123727ns 1389930 1c002e56 00178793 addi x15, x15, 1 x15=00000001 x15:00000000 +76123747ns 1389931 1c002e58 1a102737 lui x14, 0x1a102000 x14=1a102000 +76123766ns 1389932 1c002e5c 00d52c23 sw x13, 24(x10) x13:90000003 x10:1c00b8c0 PA:1c00b8d8 +76123786ns 1389933 1c002e5e 08070713 addi x14, x14, 128 x14=1a102080 x14:1a102000 +76123806ns 1389934 1c002e62 00779793 slli x15, x15, 0x7 x15=00000080 x15:00000001 +76123826ns 1389935 1c002e64 00cea623 sw x12, 12(x29) x12:1c009c50 x29:1c00b890 PA:1c00b89c +76123845ns 1389936 1c002e68 000ea423 sw x0, 8(x29) x29:1c00b890 PA:1c00b898 +76123865ns 1389937 1c002e6c 00e787b3 add x15, x15, x14 x15=1a102100 x15:00000080 x14:1a102080 +76123885ns 1389938 1c002e6e 00c50513 addi x10, x10, 12 x10=1c00b8cc x10:1c00b8c0 +76123905ns 1389939 1c002e70 00078793 addi x15, x15, 0 x15=1a102100 x15:1a102100 +76123925ns 1389940 1c002e74 02a7a023 sw x10, 32(x15) x10:1c00b8cc x15:1a102100 PA:1a102120 +76123944ns 1389941 1c002e76 01000713 addi x14, x0, 16 x14=00000010 +76124004ns 1389944 1c002e78 02e7a223 sw x14, 36(x15) x14:00000010 x15:1a102100 PA:1a102124 +76124024ns 1389945 1c002e7a 01400713 addi x14, x0, 20 x14=00000014 +76124083ns 1389948 1c002e7c 02e7a423 sw x14, 40(x15) x14:00000014 x15:1a102100 PA:1a102128 +76124103ns 1389949 1c002e7e 00131313 slli x6, x6, 0x1 x6=00000000 x6:00000000 +76124162ns 1389952 1c002e80 01036313 ori x6, x6, 16 x6=00000010 x6:00000000 +76124182ns 1389953 1c002e84 00b7a823 sw x11, 16(x15) x11:1c009bd8 x15:1a102100 PA:1a102110 +76124202ns 1389954 1c002e86 00788893 addi x17, x17, 7 x17=0000002f x17:00000028 +76124261ns 1389957 1c002e88 0038d893 srli x17, x17, 0x3 x17=00000005 x17:0000002f +76124281ns 1389958 1c002e8c 0117aa23 sw x17, 20(x15) x17:00000005 x15:1a102100 PA:1a102114 +76124301ns 1389959 1c002e90 0067ac23 sw x6, 24(x15) x6:00000010 x15:1a102100 PA:1a102118 +76124380ns 1389963 1c002e94 00800533 add x10, x0, x8 x10=00000088 x8:00000088 +76124439ns 1389966 1c002e96 02812403 lw x8, 40(x2) x8=00000000 x2:1c009b90 PA:1c009bb8 +76124459ns 1389967 1c002e98 02c12083 lw x1, 44(x2) x1=1c003636 x2:1c009b90 PA:1c009bbc +76124479ns 1389968 1c002e9a 03010113 addi x2, x2, 48 x2=1c009bc0 x2:1c009b90 +76124499ns 1389969 1c002e9c d1dff06f jal x0, -740 +76124538ns 1389971 1c002bb8 30051073 csrrw x0, x10, 0x300 x10:00000088 +76124617ns 1389975 1c002bbc 00008067 jalr x0, x1, 0 x1:1c003636 +76124657ns 1389977 1c003636 0004a583 lw x11, 0(x9) x11=1c00bec0 x9:1c009190 PA:1c009190 +76124677ns 1389978 1c003638 0d810513 addi x10, x2, 216 x10=1c009c98 x2:1c009bc0 +76124697ns 1389979 1c00363a 1c0099b7 lui x19, 0x1c009000 x19=1c009000 +76124716ns 1389980 1c00363e 00b12623 sw x11, 12(x2) x11:1c00bec0 x2:1c009bc0 PA:1c009bcc +76124736ns 1389981 1c003640 dfbff0ef jal x1, -518 x1=1c003644 +76124776ns 1389983 1c00343a ff010113 addi x2, x2, -16 x2=1c009bb0 x2:1c009bc0 +76124795ns 1389984 1c00343c 00812423 sw x8, 8(x2) x8:00000000 x2:1c009bb0 PA:1c009bb8 +76124815ns 1389985 1c00343e 00112623 sw x1, 12(x2) x1:1c003644 x2:1c009bb0 PA:1c009bbc +76124835ns 1389986 1c003440 00100793 addi x15, x0, 1 x15=00000001 +76124855ns 1389987 1c003442 00a00433 add x8, x0, x10 x8=1c009c98 x10:1c009c98 +76124875ns 1389988 1c003444 00f52823 sw x15, 16(x10) x15:00000001 x10:1c009c98 PA:1c009ca8 +76124894ns 1389989 1c003446 04050223 sb x0, 68(x10) x10:1c009c98 PA:1c009cdc +76124914ns 1389990 1c00344a 00000593 addi x11, x0, 0 x11=00000000 +76124934ns 1389991 1c00344c 0ff00513 addi x10, x0, 255 x10=000000ff +76124954ns 1389992 1c003450 d33fd0ef jal x1, -8910 x1=1c003454 +76124993ns 1389994 1c001182 ff010113 addi x2, x2, -16 x2=1c009ba0 x2:1c009bb0 +76125013ns 1389995 1c001184 00112623 sw x1, 12(x2) x1:1c003454 x2:1c009ba0 PA:1c009bac +76125033ns 1389996 1c001186 00812423 sw x8, 8(x2) x8:1c009c98 x2:1c009ba0 PA:1c009ba8 +76125053ns 1389997 1c001188 02051163 bne x10, x0, 34 x10:000000ff +76125112ns 1390000 1c0011aa 00b00433 add x8, x0, x11 x8=00000000 x11:00000000 +76125132ns 1390001 1c0011ac 00b57d63 bgeu x10, x11, 26 x10:000000ff x11:00000000 +76125191ns 1390004 1c0011c6 00200613 addi x12, x0, 2 x12=00000002 +76125211ns 1390005 1c0011c8 00000593 addi x11, x0, 0 x11=00000000 +76125231ns 1390006 1c0011ca f4bff0ef jal x1, -182 x1=1c0011cc +76125270ns 1390008 1c001114 fe010113 addi x2, x2, -32 x2=1c009b80 x2:1c009ba0 +76125290ns 1390009 1c001116 00112e23 sw x1, 28(x2) x1:1c0011cc x2:1c009b80 PA:1c009b9c +76125310ns 1390010 1c001118 00812c23 sw x8, 24(x2) x8:00000000 x2:1c009b80 PA:1c009b98 +76125330ns 1390011 1c00111a 00912a23 sw x9, 20(x2) x9:1c009190 x2:1c009b80 PA:1c009b94 +76125350ns 1390012 1c00111c 01212823 sw x18, 16(x2) x18:1c009188 x2:1c009b80 PA:1c009b90 +76125369ns 1390013 1c00111e 01312623 sw x19, 12(x2) x19:1c009000 x2:1c009b80 PA:1c009b8c +76125389ns 1390014 1c001120 02051163 bne x10, x0, 34 x10:000000ff +76125449ns 1390017 1c001142 00a00933 add x18, x0, x10 x18=000000ff x10:000000ff +76125468ns 1390018 1c001144 02b50533 mul x10, x10, x11 x10=00000000 x10:000000ff x11:00000000 +76125488ns 1390019 1c001148 00b004b3 add x9, x0, x11 x9=00000000 x11:00000000 +76125508ns 1390020 1c00114a 00c009b3 add x19, x0, x12 x19=00000002 x12:00000002 +76125528ns 1390021 1c00114c 05050513 addi x10, x10, 80 x10=00000050 x10:00000000 +76125548ns 1390022 1c001150 01b010ef jal x1, 6170 x1=1c001154 +76125587ns 1390024 1c00296a fe010113 addi x2, x2, -32 x2=1c009b60 x2:1c009b80 +76125607ns 1390025 1c00296c 00112e23 sw x1, 28(x2) x1:1c001154 x2:1c009b60 PA:1c009b7c +76125627ns 1390026 1c00296e 00812c23 sw x8, 24(x2) x8:00000000 x2:1c009b60 PA:1c009b78 +76125647ns 1390027 1c002970 00a12623 sw x10, 12(x2) x10:00000050 x2:1c009b60 PA:1c009b6c +76125666ns 1390028 1c002972 8a4ff0ef jal x1, -3932 x1=1c002976 +76125726ns 1390031 1c001a16 d6818793 addi x15, x3, -664 x15=1c009144 x3:1c0093dc +76125745ns 1390032 1c001a1a 0007a703 lw x14, 0(x15) x14=00000000 x15:1c009144 PA:1c009144 +76125785ns 1390034 1c001a1c 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76125805ns 1390035 1c001a1e 00e7a023 sw x14, 0(x15) x14:00000001 x15:1c009144 PA:1c009144 +76125825ns 1390036 1c001a20 00008067 jalr x0, x1, 0 x1:1c002976 +76125864ns 1390038 1c002976 00c12503 lw x10, 12(x2) x10=00000050 x2:1c009b60 PA:1c009b6c +76125884ns 1390039 1c002978 791000ef jal x1, 3984 x1=1c00297c +76125924ns 1390041 1c003908 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76125943ns 1390042 1c00390c 00a005b3 add x11, x0, x10 x11=00000050 x10:00000050 +76125963ns 1390043 1c00390e c447a503 lw x10, -956(x15) x10=1c009e10 x15:1c009000 PA:1c008c44 +76125983ns 1390044 1c003912 0b60006f jal x0, 182 +76126023ns 1390046 1c0039c8 fe010113 addi x2, x2, -32 x2=1c009b40 x2:1c009b60 +76126042ns 1390047 1c0039ca 00912a23 sw x9, 20(x2) x9:00000000 x2:1c009b40 PA:1c009b54 +76126062ns 1390048 1c0039cc 00358493 addi x9, x11, 3 x9=00000053 x11:00000050 +76126082ns 1390049 1c0039d0 ffc4f493 andi x9, x9, -4 x9=00000050 x9:00000053 +76126102ns 1390050 1c0039d2 01212823 sw x18, 16(x2) x18:000000ff x2:1c009b40 PA:1c009b50 +76126122ns 1390051 1c0039d4 00112e23 sw x1, 28(x2) x1:1c00297c x2:1c009b40 PA:1c009b5c +76126141ns 1390052 1c0039d6 00812c23 sw x8, 24(x2) x8:00000000 x2:1c009b40 PA:1c009b58 +76126161ns 1390053 1c0039d8 01312623 sw x19, 12(x2) x19:00000002 x2:1c009b40 PA:1c009b4c +76126181ns 1390054 1c0039da 00848493 addi x9, x9, 8 x9=00000058 x9:00000050 +76126201ns 1390055 1c0039dc 00c00793 addi x15, x0, 12 x15=0000000c +76126221ns 1390056 1c0039de 00a00933 add x18, x0, x10 x18=1c009e10 x10:1c009e10 +76126240ns 1390057 1c0039e0 04f4f363 bgeu x9, x15, 70 x9:00000058 x15:0000000c +76126319ns 1390061 1c003a26 fc04d0e3 bge x9, x0, -64 x9:00000058 +76126399ns 1390065 1c0039e6 04b4e263 bltu x9, x11, 68 x9:00000058 x11:00000050 +76126418ns 1390066 1c0039ea 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +76126438ns 1390067 1c0039ec 87aff0ef jal x1, -3974 x1=1c0039f0 +76126498ns 1390070 1c002a66 fb1fe06f jal x0, -4176 +76126557ns 1390073 1c001a16 d6818793 addi x15, x3, -664 x15=1c009144 x3:1c0093dc +76126577ns 1390074 1c001a1a 0007a703 lw x14, 0(x15) x14=00000001 x15:1c009144 PA:1c009144 +76126616ns 1390076 1c001a1c 00170713 addi x14, x14, 1 x14=00000002 x14:00000001 +76126636ns 1390077 1c001a1e 00e7a023 sw x14, 0(x15) x14:00000002 x15:1c009144 PA:1c009144 +76126656ns 1390078 1c001a20 00008067 jalr x0, x1, 0 x1:1c0039f0 +76126696ns 1390080 1c0039f0 db81a703 lw x14, -584(x3) x14=00000000 x3:1c0093dc PA:1c009194 +76126715ns 1390081 1c0039f4 db818693 addi x13, x3, -584 x13=1c009194 x3:1c0093dc +76126735ns 1390082 1c0039f8 00e00433 add x8, x0, x14 x8=00000000 x14:00000000 +76126755ns 1390083 1c0039fa 04041363 bne x8, x0, 70 x8:00000000 +76126775ns 1390084 1c0039fc dbc18413 addi x8, x3, -580 x8=1c009198 x3:1c0093dc +76126794ns 1390085 1c003a00 00042783 lw x15, 0(x8) x15=1c0091b0 x8:1c009198 PA:1c009198 +76126834ns 1390087 1c003a02 00079563 bne x15, x0, 10 x15:1c0091b0 +76126893ns 1390090 1c003a0c 009005b3 add x11, x0, x9 x11=00000058 x9:00000058 +76126913ns 1390091 1c003a0e 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +76126933ns 1390092 1c003a10 5cc000ef jal x1, 1484 x1=1c003a12 +76126973ns 1390094 1c003fdc ff010113 addi x2, x2, -16 x2=1c009b30 x2:1c009b40 +76126992ns 1390095 1c003fde 00812423 sw x8, 8(x2) x8:1c009198 x2:1c009b30 PA:1c009b38 +76127012ns 1390096 1c003fe0 00912223 sw x9, 4(x2) x9:00000058 x2:1c009b30 PA:1c009b34 +76127032ns 1390097 1c003fe2 00a00433 add x8, x0, x10 x8=1c009e10 x10:1c009e10 +76127052ns 1390098 1c003fe4 00b00533 add x10, x0, x11 x10=00000058 x11:00000058 +76127072ns 1390099 1c003fe6 00112623 sw x1, 12(x2) x1:1c003a12 x2:1c009b30 PA:1c009b3c +76127091ns 1390100 1c003fe8 dc01a023 sw x0, -576(x3) x3:1c0093dc PA:1c00919c +76127111ns 1390101 1c003fec a53fe0ef jal x1, -5550 x1=1c003ff0 +76127171ns 1390104 1c002a3e 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76127190ns 1390105 1c002a42 c3c78793 addi x15, x15, -964 x15=1c008c3c x15:1c009000 +76127210ns 1390106 1c002a46 00a00733 add x14, x0, x10 x14=00000058 x10:00000058 +76127230ns 1390107 1c002a48 0007a503 lw x10, 0(x15) x10=1c00c284 x15:1c008c3c PA:1c008c3c +76127250ns 1390108 1c002a4a 1c0196b7 lui x13, 0x1c019000 x13=1c019000 +76127269ns 1390109 1c002a4e 1b068693 addi x13, x13, 432 x13=1c0191b0 x13:1c019000 +76127289ns 1390110 1c002a52 00a70733 add x14, x14, x10 x14=1c00c2dc x14:00000058 x10:1c00c284 +76127309ns 1390111 1c002a54 00d76763 bltu x14, x13, 14 x14:1c00c2dc x13:1c0191b0 +76127368ns 1390114 1c002a62 00e7a023 sw x14, 0(x15) x14:1c00c2dc x15:1c008c3c PA:1c008c3c +76127388ns 1390115 1c002a64 00008067 jalr x0, x1, 0 x1:1c003ff0 +76127428ns 1390117 1c003ff0 fff00793 addi x15, x0, -1 x15=ffffffff +76127448ns 1390118 1c003ff2 00f51663 bne x10, x15, 12 x10:1c00c284 x15:ffffffff +76127507ns 1390121 1c003ffe 00c12083 lw x1, 12(x2) x1=1c003a12 x2:1c009b30 PA:1c009b3c +76127527ns 1390122 1c004000 00812403 lw x8, 8(x2) x8=1c009198 x2:1c009b30 PA:1c009b38 +76127547ns 1390123 1c004002 00412483 lw x9, 4(x2) x9=00000058 x2:1c009b30 PA:1c009b34 +76127566ns 1390124 1c004004 01010113 addi x2, x2, 16 x2=1c009b40 x2:1c009b30 +76127586ns 1390125 1c004006 00008067 jalr x0, x1, 0 x1:1c003a12 +76127626ns 1390127 1c003a12 fff00993 addi x19, x0, -1 x19=ffffffff +76127646ns 1390128 1c003a14 07351a63 bne x10, x19, 116 x10:1c00c284 x19:ffffffff +76127705ns 1390131 1c003a88 00350413 addi x8, x10, 3 x8=1c00c287 x10:1c00c284 +76127725ns 1390132 1c003a8c ffc47413 andi x8, x8, -4 x8=1c00c284 x8:1c00c287 +76127744ns 1390133 1c003a8e fc8502e3 beq x10, x8, -60 x10:1c00c284 x8:1c00c284 +76127804ns 1390136 1c003a52 00942023 sw x9, 0(x8) x9:00000058 x8:1c00c284 PA:1c00c284 +76127824ns 1390137 1c003a54 00a0006f jal x0, 10 +76127863ns 1390139 1c003a5e 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +76127883ns 1390140 1c003a60 80aff0ef jal x1, -4086 x1=1c003a64 +76127942ns 1390143 1c002a6a 8e3ff06f jal x0, -1822 +76127982ns 1390145 1c00234c fc010113 addi x2, x2, -64 x2=1c009b00 x2:1c009b40 +76128002ns 1390146 1c00234e 02812c23 sw x8, 56(x2) x8:1c00c284 x2:1c009b00 PA:1c009b38 +76128022ns 1390147 1c002350 d6818413 addi x8, x3, -664 x8=1c009144 x3:1c0093dc +76128041ns 1390148 1c002354 00042783 lw x15, 0(x8) x15=00000002 x8:1c009144 PA:1c009144 +76128061ns 1390149 1c002356 02112e23 sw x1, 60(x2) x1:1c003a64 x2:1c009b00 PA:1c009b3c +76128081ns 1390150 1c002358 02912a23 sw x9, 52(x2) x9:00000058 x2:1c009b00 PA:1c009b34 +76128101ns 1390151 1c00235a 03212823 sw x18, 48(x2) x18:1c009e10 x2:1c009b00 PA:1c009b30 +76128121ns 1390152 1c00235c 03312623 sw x19, 44(x2) x19:ffffffff x2:1c009b00 PA:1c009b2c +76128140ns 1390153 1c00235e 03412423 sw x20, 40(x2) x20:1c00918c x2:1c009b00 PA:1c009b28 +76128160ns 1390154 1c002360 03512223 sw x21, 36(x2) x21:a5a5a5a5 x2:1c009b00 PA:1c009b24 +76128180ns 1390155 1c002362 03612023 sw x22, 32(x2) x22:a5a5a5a5 x2:1c009b00 PA:1c009b20 +76128200ns 1390156 1c002364 01712e23 sw x23, 28(x2) x23:a5a5a5a5 x2:1c009b00 PA:1c009b1c +76128219ns 1390157 1c002366 02079263 bne x15, x0, 36 x15:00000002 +76128299ns 1390161 1c00238a c83ff0ef jal x1, -894 x1=1c00238e +76128338ns 1390163 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +76128417ns 1390167 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76128457ns 1390169 1c002014 00078863 beq x15, x0, 16 x15:00000001 +76128477ns 1390170 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76128497ns 1390171 1c00201a 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76128516ns 1390172 1c00201c 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76128536ns 1390173 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c009db8 PA:1c009dfc +76128576ns 1390175 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76128596ns 1390176 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c009db8 PA:1c009dfc +76128615ns 1390177 1c002024 00008067 jalr x0, x1, 0 x1:1c00238e +76128655ns 1390179 1c00238e 00042783 lw x15, 0(x8) x15=00000002 x8:1c009144 PA:1c009144 +76128695ns 1390181 1c002390 fff78793 addi x15, x15, -1 x15=00000001 x15:00000002 +76128714ns 1390182 1c002392 00f42023 sw x15, 0(x8) x15:00000001 x8:1c009144 PA:1c009144 +76128734ns 1390183 1c002394 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +76128774ns 1390185 1c002396 02078163 beq x15, x0, 34 x15:00000001 +76128793ns 1390186 1c002398 00000513 addi x10, x0, 0 x10=00000000 +76128813ns 1390187 1c00239a 00a12623 sw x10, 12(x2) x10:00000000 x2:1c009b00 PA:1c009b0c +76128833ns 1390188 1c00239c c8bff0ef jal x1, -886 x1=1c0023a0 +76128892ns 1390191 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76128932ns 1390193 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +76128952ns 1390194 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76128972ns 1390195 1c002030 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +76129011ns 1390197 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c009db8 PA:1c009dfc +76129051ns 1390199 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +76129071ns 1390200 1c002036 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76129090ns 1390201 1c002038 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76129110ns 1390202 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c009db8 PA:1c009dfc +76129150ns 1390204 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +76129170ns 1390205 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c009db8 PA:1c009dfc +76129189ns 1390206 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c009db8 PA:1c009dfc +76129229ns 1390208 1c002042 00079363 bne x15, x0, 6 x15:00000000 +76129249ns 1390209 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +76129328ns 1390213 1c002048 00008067 jalr x0, x1, 0 x1:1c0023a0 +76129367ns 1390215 1c0023a0 03c12083 lw x1, 60(x2) x1=1c003a64 x2:1c009b00 PA:1c009b3c +76129387ns 1390216 1c0023a2 03812403 lw x8, 56(x2) x8=1c00c284 x2:1c009b00 PA:1c009b38 +76129407ns 1390217 1c0023a4 00c12503 lw x10, 12(x2) x10=00000000 x2:1c009b00 PA:1c009b0c +76129427ns 1390218 1c0023a6 03412483 lw x9, 52(x2) x9=00000058 x2:1c009b00 PA:1c009b34 +76129447ns 1390219 1c0023a8 03012903 lw x18, 48(x2) x18=1c009e10 x2:1c009b00 PA:1c009b30 +76129466ns 1390220 1c0023aa 02c12983 lw x19, 44(x2) x19=ffffffff x2:1c009b00 PA:1c009b2c +76129486ns 1390221 1c0023ac 02812a03 lw x20, 40(x2) x20=1c00918c x2:1c009b00 PA:1c009b28 +76129506ns 1390222 1c0023ae 02412a83 lw x21, 36(x2) x21=a5a5a5a5 x2:1c009b00 PA:1c009b24 +76129526ns 1390223 1c0023b0 02012b03 lw x22, 32(x2) x22=a5a5a5a5 x2:1c009b00 PA:1c009b20 +76129546ns 1390224 1c0023b2 01c12b83 lw x23, 28(x2) x23=a5a5a5a5 x2:1c009b00 PA:1c009b1c +76129565ns 1390225 1c0023b4 04010113 addi x2, x2, 64 x2=1c009b40 x2:1c009b00 +76129585ns 1390226 1c0023b6 00008067 jalr x0, x1, 0 x1:1c003a64 +76129625ns 1390228 1c003a64 00b40513 addi x10, x8, 11 x10=1c00c28f x8:1c00c284 +76129645ns 1390229 1c003a68 00440793 addi x15, x8, 4 x15=1c00c288 x8:1c00c284 +76129664ns 1390230 1c003a6c ff857513 andi x10, x10, -8 x10=1c00c288 x10:1c00c28f +76129684ns 1390231 1c003a6e 40f50733 sub x14, x10, x15 x14=00000000 x10:1c00c288 x15:1c00c288 +76129704ns 1390232 1c003a72 fcf500e3 beq x10, x15, -64 x10:1c00c288 x15:1c00c288 +76129763ns 1390235 1c003a32 01c12083 lw x1, 28(x2) x1=1c00297c x2:1c009b40 PA:1c009b5c +76129783ns 1390236 1c003a34 01812403 lw x8, 24(x2) x8=00000000 x2:1c009b40 PA:1c009b58 +76129803ns 1390237 1c003a36 01412483 lw x9, 20(x2) x9=00000000 x2:1c009b40 PA:1c009b54 +76129823ns 1390238 1c003a38 01012903 lw x18, 16(x2) x18=000000ff x2:1c009b40 PA:1c009b50 +76129842ns 1390239 1c003a3a 00c12983 lw x19, 12(x2) x19=00000002 x2:1c009b40 PA:1c009b4c +76129862ns 1390240 1c003a3c 02010113 addi x2, x2, 32 x2=1c009b60 x2:1c009b40 +76129882ns 1390241 1c003a3e 00008067 jalr x0, x1, 0 x1:1c00297c +76129922ns 1390243 1c00297c 00a00433 add x8, x0, x10 x8=1c00c288 x10:1c00c288 +76129941ns 1390244 1c00297e 9cfff0ef jal x1, -1586 x1=1c002982 +76129981ns 1390246 1c00234c fc010113 addi x2, x2, -64 x2=1c009b20 x2:1c009b60 +76130001ns 1390247 1c00234e 02812c23 sw x8, 56(x2) x8:1c00c288 x2:1c009b20 PA:1c009b58 +76130021ns 1390248 1c002350 d6818413 addi x8, x3, -664 x8=1c009144 x3:1c0093dc +76130040ns 1390249 1c002354 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +76130060ns 1390250 1c002356 02112e23 sw x1, 60(x2) x1:1c002982 x2:1c009b20 PA:1c009b5c +76130080ns 1390251 1c002358 02912a23 sw x9, 52(x2) x9:00000000 x2:1c009b20 PA:1c009b54 +76130100ns 1390252 1c00235a 03212823 sw x18, 48(x2) x18:000000ff x2:1c009b20 PA:1c009b50 +76130120ns 1390253 1c00235c 03312623 sw x19, 44(x2) x19:00000002 x2:1c009b20 PA:1c009b4c +76130139ns 1390254 1c00235e 03412423 sw x20, 40(x2) x20:1c00918c x2:1c009b20 PA:1c009b48 +76130159ns 1390255 1c002360 03512223 sw x21, 36(x2) x21:a5a5a5a5 x2:1c009b20 PA:1c009b44 +76130179ns 1390256 1c002362 03612023 sw x22, 32(x2) x22:a5a5a5a5 x2:1c009b20 PA:1c009b40 +76130199ns 1390257 1c002364 01712e23 sw x23, 28(x2) x23:a5a5a5a5 x2:1c009b20 PA:1c009b3c +76130218ns 1390258 1c002366 02079263 bne x15, x0, 36 x15:00000001 +76130377ns 1390266 1c000868 0980006f jal x0, 152 +76130416ns 1390268 1c000900 f8810113 addi x2, x2, -120 x2=1c009aa8 x2:1c009b20 +76130436ns 1390269 1c000904 00112223 sw x1, 4(x2) x1:1c002982 x2:1c009aa8 PA:1c009aac +76130456ns 1390270 1c000906 00512423 sw x5, 8(x2) x5:a5a5a5a5 x2:1c009aa8 PA:1c009ab0 +76130476ns 1390271 1c000908 00612623 sw x6, 12(x2) x6:00000010 x2:1c009aa8 PA:1c009ab4 +76130496ns 1390272 1c00090a 00712823 sw x7, 16(x2) x7:a5a5a5a5 x2:1c009aa8 PA:1c009ab8 +76130515ns 1390273 1c00090c 00812a23 sw x8, 20(x2) x8:1c009144 x2:1c009aa8 PA:1c009abc +76130535ns 1390274 1c00090e 00912c23 sw x9, 24(x2) x9:00000000 x2:1c009aa8 PA:1c009ac0 +76130555ns 1390275 1c000910 00a12e23 sw x10, 28(x2) x10:1c00c288 x2:1c009aa8 PA:1c009ac4 +76130575ns 1390276 1c000912 02b12023 sw x11, 32(x2) x11:00000058 x2:1c009aa8 PA:1c009ac8 +76130595ns 1390277 1c000914 02c12223 sw x12, 36(x2) x12:00000002 x2:1c009aa8 PA:1c009acc +76130614ns 1390278 1c000916 02d12423 sw x13, 40(x2) x13:1c009db8 x2:1c009aa8 PA:1c009ad0 +76130634ns 1390279 1c000918 02e12623 sw x14, 44(x2) x14:00000000 x2:1c009aa8 PA:1c009ad4 +76130654ns 1390280 1c00091a 02f12823 sw x15, 48(x2) x15:00000001 x2:1c009aa8 PA:1c009ad8 +76130674ns 1390281 1c00091c 03012a23 sw x16, 52(x2) x16:60070004 x2:1c009aa8 PA:1c009adc +76130693ns 1390282 1c00091e 03112c23 sw x17, 56(x2) x17:00000005 x2:1c009aa8 PA:1c009ae0 +76130713ns 1390283 1c000920 03212e23 sw x18, 60(x2) x18:000000ff x2:1c009aa8 PA:1c009ae4 +76130733ns 1390284 1c000922 05312023 sw x19, 64(x2) x19:00000002 x2:1c009aa8 PA:1c009ae8 +76130753ns 1390285 1c000924 05412223 sw x20, 68(x2) x20:1c00918c x2:1c009aa8 PA:1c009aec +76130773ns 1390286 1c000926 05512423 sw x21, 72(x2) x21:a5a5a5a5 x2:1c009aa8 PA:1c009af0 +76130792ns 1390287 1c000928 05612623 sw x22, 76(x2) x22:a5a5a5a5 x2:1c009aa8 PA:1c009af4 +76130812ns 1390288 1c00092a 05712823 sw x23, 80(x2) x23:a5a5a5a5 x2:1c009aa8 PA:1c009af8 +76130832ns 1390289 1c00092c 05812a23 sw x24, 84(x2) x24:a5a5a5a5 x2:1c009aa8 PA:1c009afc +76130852ns 1390290 1c00092e 05912c23 sw x25, 88(x2) x25:a5a5a5a5 x2:1c009aa8 PA:1c009b00 +76130872ns 1390291 1c000930 05a12e23 sw x26, 92(x2) x26:a5a5a5a5 x2:1c009aa8 PA:1c009b04 +76130891ns 1390292 1c000932 07b12023 sw x27, 96(x2) x27:a5a5a5a5 x2:1c009aa8 PA:1c009b08 +76130911ns 1390293 1c000934 07c12223 sw x28, 100(x2) x28:00000004 x2:1c009aa8 PA:1c009b0c +76130931ns 1390294 1c000936 07d12423 sw x29, 104(x2) x29:1c00b890 x2:1c009aa8 PA:1c009b10 +76130951ns 1390295 1c000938 07e12623 sw x30, 108(x2) x30:00000000 x2:1c009aa8 PA:1c009b14 +76130971ns 1390296 1c00093a 07f12823 sw x31, 112(x2) x31:a5a5a5a5 x2:1c009aa8 PA:1c009b18 +76130990ns 1390297 1c00093c 300022f3 csrrs x5, x0, 0x300 x5=00001880 +76131070ns 1390301 1c000940 06512a23 sw x5, 116(x2) x5:00001880 x2:1c009aa8 PA:1c009b1c +76131089ns 1390302 1c000942 fe810113 addi x2, x2, -24 x2=1c009a90 x2:1c009aa8 +76131109ns 1390303 1c000944 7c0022f3 csrrs x5, x0, 0x7c0 x5=00000000 +76131129ns 1390304 1c000948 7c102373 csrrs x6, x0, 0x7c1 x6=00000000 +76131149ns 1390305 1c00094c 7c2023f3 csrrs x7, x0, 0x7c2 x7=00000000 +76131169ns 1390306 1c000950 7c402e73 csrrs x28, x0, 0x7c4 x28=00000000 +76131188ns 1390307 1c000954 7c502ef3 csrrs x29, x0, 0x7c5 x29=00000000 +76131208ns 1390308 1c000958 7c602f73 csrrs x30, x0, 0x7c6 x30=00000000 +76131228ns 1390309 1c00095c 00512223 sw x5, 4(x2) x5:00000000 x2:1c009a90 PA:1c009a94 +76131248ns 1390310 1c00095e 00612423 sw x6, 8(x2) x6:00000000 x2:1c009a90 PA:1c009a98 +76131267ns 1390311 1c000960 00712623 sw x7, 12(x2) x7:00000000 x2:1c009a90 PA:1c009a9c +76131287ns 1390312 1c000962 01c12823 sw x28, 16(x2) x28:00000000 x2:1c009a90 PA:1c009aa0 +76131307ns 1390313 1c000964 01d12a23 sw x29, 20(x2) x29:00000000 x2:1c009a90 PA:1c009aa4 +76131327ns 1390314 1c000966 01e12c23 sw x30, 24(x2) x30:00000000 x2:1c009a90 PA:1c009aa8 +76131347ns 1390315 1c000968 d541a283 lw x5, -684(x3) x5=1c009db8 x3:1c0093dc PA:1c009130 +76131386ns 1390317 1c00096c 0022a023 sw x2, 0(x5) x2:1c009a90 x5:1c009db8 PA:1c009db8 +76131406ns 1390318 1c000970 34202573 csrrs x10, x0, 0x342 x10=8000001a +76131426ns 1390319 1c000974 341025f3 csrrs x11, x0, 0x341 x11=1c00238a +76131446ns 1390320 1c000978 01f55613 srli x12, x10, 0x1f x12=00000001 x10:8000001a +76131465ns 1390321 1c00097c 00060963 beq x12, x0, 18 x12:00000001 +76131485ns 1390322 1c00097e 00b12023 sw x11, 0(x2) x11:1c00238a x2:1c009a90 PA:1c009a90 +76131505ns 1390323 1c000980 00008117 auipc x2, 0x8000 x2=1c008980 +76131525ns 1390324 1c000984 25412103 lw x2, 596(x2) x2=1c0199b0 x2:1c008980 PA:1c008bd4 +76131545ns 1390325 1c000988 17e020ef jal x1, 8574 x1=1c00098c +76131584ns 1390327 1c002b06 01f57513 andi x10, x10, 31 x10=0000001a x10:8000001a +76131604ns 1390328 1c002b08 00251793 slli x15, x10, 0x2 x15=00000068 x10:0000001a +76131624ns 1390329 1c002b0c 99c18513 addi x10, x3, -1636 x10=1c008d78 x3:1c0093dc +76131644ns 1390330 1c002b10 00f50533 add x10, x10, x15 x10=1c008de0 x10:1c008d78 x15:00000068 +76131663ns 1390331 1c002b12 00052783 lw x15, 0(x10) x15=1c000e42 x10:1c008de0 PA:1c008de0 +76131723ns 1390334 1c002b14 00078067 jalr x0, x15, 0 x15:1c000e42 +76131782ns 1390337 1c000e42 1a10a7b7 lui x15, 0x1a10a000 x15=1a10a000 +76131802ns 1390338 1c000e46 80078793 addi x15, x15, -2048 x15=1a109800 x15:1a10a000 +76131822ns 1390339 1c000e4a 0247a503 lw x10, 36(x15) x10=00000007 x15:1a109800 PA:1a109824 +76131841ns 1390340 1c000e4c a2818793 addi x15, x3, -1496 x15=1c008e04 x3:1c0093dc +76131901ns 1390343 1c000e50 0ff57513 andi x10, x10, 255 x10=00000007 x10:00000007 +76131921ns 1390344 1c000e54 00251713 slli x14, x10, 0x2 x14=0000001c x10:00000007 +76131940ns 1390345 1c000e58 00e787b3 add x15, x15, x14 x15=1c008e20 x15:1c008e04 x14:0000001c +76131960ns 1390346 1c000e5a 0007a703 lw x14, 0(x15) x14=1c003106 x15:1c008e20 PA:1c008e20 +76132000ns 1390348 1c000e5c 00070363 beq x14, x0, 6 x14:1c003106 +76132020ns 1390349 1c000e5e 0007a783 lw x15, 0(x15) x15=1c003106 x15:1c008e20 PA:1c008e20 +76132079ns 1390352 1c000e60 00078067 jalr x0, x15, 0 x15:1c003106 +76132119ns 1390354 1c003106 ff950513 addi x10, x10, -7 x10=00000000 x10:00000007 +76132138ns 1390355 1c003108 00251793 slli x15, x10, 0x2 x15=00000000 x10:00000000 +76132158ns 1390356 1c00310c da418513 addi x10, x3, -604 x10=1c009180 x3:1c0093dc +76132178ns 1390357 1c003110 ff010113 addi x2, x2, -16 x2=1c0199a0 x2:1c0199b0 +76132198ns 1390358 1c003112 00f50533 add x10, x10, x15 x10=1c009180 x10:1c009180 x15:00000000 +76132217ns 1390359 1c003114 00812423 sw x8, 8(x2) x8:1c009144 x2:1c0199a0 PA:1c0199a8 +76132237ns 1390360 1c003116 00052403 lw x8, 0(x10) x8=1c00b890 x10:1c009180 PA:1c009180 +76132257ns 1390361 1c003118 00112623 sw x1, 12(x2) x1:1c00098c x2:1c0199a0 PA:1c0199ac +76132277ns 1390362 1c00311a 00842783 lw x15, 8(x8) x15=00000000 x8:1c00b890 PA:1c00b898 +76132316ns 1390364 1c00311c 02079263 bne x15, x0, 36 x15:00000000 +76132336ns 1390365 1c00311e 00c42503 lw x10, 12(x8) x10=1c009c50 x8:1c00b890 PA:1c00b89c +76132376ns 1390367 1c003120 00050863 beq x10, x0, 16 x10:1c009c50 +76132396ns 1390368 1c003122 01052703 lw x14, 16(x10) x14=00000001 x10:1c009c50 PA:1c009c60 +76132415ns 1390369 1c003124 00100793 addi x15, x0, 1 x15=00000001 +76132435ns 1390370 1c003126 00f71363 bne x14, x15, 6 x14:00000001 x15:00000001 +76132455ns 1390371 1c00312a 3b6000ef jal x1, 950 x1=1c00312c +76132495ns 1390373 1c0034e0 ff010113 addi x2, x2, -16 x2=1c019990 x2:1c0199a0 +76132514ns 1390374 1c0034e2 00812423 sw x8, 8(x2) x8:1c00b890 x2:1c019990 PA:1c019998 +76132534ns 1390375 1c0034e4 00a00433 add x8, x0, x10 x8=1c009c50 x10:1c009c50 +76132554ns 1390376 1c0034e6 03452503 lw x10, 52(x10) x10=1c00c230 x10:1c009c50 PA:1c009c84 +76132574ns 1390377 1c0034e8 00112623 sw x1, 12(x2) x1:1c00312c x2:1c019990 PA:1c01999c +76132594ns 1390378 1c0034ea 00050363 beq x10, x0, 6 x10:1c00c230 +76132613ns 1390379 1c0034ec 03c42783 lw x15, 60(x8) x15=1c0033da x8:1c009c50 PA:1c009c8c +76132673ns 1390382 1c0034ee 000780e7 jalr x1, x15, 0 x1=1c0034f0 x15:1c0033da +76132712ns 1390384 1c0033da fe010113 addi x2, x2, -32 x2=1c019970 x2:1c019990 +76132732ns 1390385 1c0033dc 00112e23 sw x1, 28(x2) x1:1c0034f0 x2:1c019970 PA:1c01998c +76132752ns 1390386 1c0033de 00812c23 sw x8, 24(x2) x8:1c009c50 x2:1c019970 PA:1c019988 +76132772ns 1390387 1c0033e0 30047473 csrrci x8, 0x00000008, 0x300 x8=00001880 +76132851ns 1390391 1c0033e4 342027f3 csrrs x15, x0, 0x342 x15=8000001a +76132871ns 1390392 1c0033e8 00c10593 addi x11, x2, 12 x11=1c01997c x2:1c019970 +76132890ns 1390393 1c0033ea 0007de63 bge x15, x0, 28 x15:8000001a +76132910ns 1390394 1c0033ee 838fe0ef jal x1, -8136 x1=1c0033f2 +76132950ns 1390396 1c001426 ff010113 addi x2, x2, -16 x2=1c019960 x2:1c019970 +76132970ns 1390397 1c001428 00112623 sw x1, 12(x2) x1:1c0033f2 x2:1c019960 PA:1c01996c +76132989ns 1390398 1c00142a 00812423 sw x8, 8(x2) x8:00001880 x2:1c019960 PA:1c019968 +76133009ns 1390399 1c00142c 02051163 bne x10, x0, 34 x10:1c00c230 +76133069ns 1390402 1c00144e 04052703 lw x14, 64(x10) x14=00000000 x10:1c00c230 PA:1c00c270 +76133088ns 1390403 1c001450 00a007b3 add x15, x0, x10 x15=1c00c230 x10:1c00c230 +76133108ns 1390404 1c001452 00070c63 beq x14, x0, 24 x14:00000000 +76133167ns 1390407 1c00146a 00052703 lw x14, 0(x10) x14=1c00c230 x10:1c00c230 PA:1c00c230 +76133187ns 1390408 1c00146c 00b00433 add x8, x0, x11 x8=1c01997c x11:1c01997c +76133207ns 1390409 1c00146e 00071e63 bne x14, x0, 28 x14:1c00c230 +76133266ns 1390412 1c00148a 0387a683 lw x13, 56(x15) x13=00000000 x15:1c00c230 PA:1c00c268 +76133286ns 1390413 1c00148c 03c7a703 lw x14, 60(x15) x14=000000ff x15:1c00c230 PA:1c00c26c +76133306ns 1390414 1c00148e 00000513 addi x10, x0, 0 x10=00000000 +76133326ns 1390415 1c001490 00e6ff63 bgeu x13, x14, 30 x13:00000000 x14:000000ff +76133346ns 1390416 1c001494 0457c703 lbu x14, 69(x15) x14=000000ff x15:1c00c230 PA:1c00c275 +76133365ns 1390417 1c001498 00168693 addi x13, x13, 1 x13=00000001 x13:00000000 +76133385ns 1390418 1c00149a 02d7ac23 sw x13, 56(x15) x13:00000001 x15:1c00c230 PA:1c00c268 +76133405ns 1390419 1c00149c 01871613 slli x12, x14, 0x18 x12=ff000000 x14:000000ff +76133425ns 1390420 1c0014a0 41865613 srai x12, x12, 0x418 x12=ffffffff x12:ff000000 +76133445ns 1390421 1c0014a2 fff00693 addi x13, x0, -1 x13=ffffffff +76133464ns 1390422 1c0014a4 02d61263 bne x12, x13, 36 x12:ffffffff x13:ffffffff +76133484ns 1390423 1c0014a8 0247a703 lw x14, 36(x15) x14=00000000 x15:1c00c230 PA:1c00c254 +76133524ns 1390425 1c0014aa 00071663 bne x14, x0, 12 x14:00000000 +76133544ns 1390426 1c0014ac 00100513 addi x10, x0, 1 x10=00000001 +76133563ns 1390427 1c0014ae 00c12083 lw x1, 12(x2) x1=1c0033f2 x2:1c019960 PA:1c01996c +76133583ns 1390428 1c0014b0 00812403 lw x8, 8(x2) x8=00001880 x2:1c019960 PA:1c019968 +76133603ns 1390429 1c0014b2 01010113 addi x2, x2, 16 x2=1c019970 x2:1c019960 +76133623ns 1390430 1c0014b4 00008067 jalr x0, x1, 0 x1:1c0033f2 +76133662ns 1390432 1c0033f2 00c12783 lw x15, 12(x2) x15=1c000801 x2:1c019970 PA:1c01997c +76133702ns 1390434 1c0033f4 00078363 beq x15, x0, 6 x15:1c000801 +76133722ns 1390435 1c0033f6 f80fe0ef jal x1, -6272 x1=1c0033fa +76133781ns 1390438 1c001b76 d681a703 lw x14, -664(x3) x14=00000001 x3:1c0093dc PA:1c009144 +76133801ns 1390439 1c001b7a d8c18793 addi x15, x3, -628 x15=1c009168 x3:1c0093dc +76133821ns 1390440 1c001b7e 00070463 beq x14, x0, 8 x14:00000001 +76133840ns 1390441 1c001b80 00100713 addi x14, x0, 1 x14=00000001 +76133860ns 1390442 1c001b82 00e7a023 sw x14, 0(x15) x14:00000001 x15:1c009168 PA:1c009168 +76133880ns 1390443 1c001b84 00008067 jalr x0, x1, 0 x1:1c0033fa +76133939ns 1390446 1c0033fa 30041073 csrrw x0, x8, 0x300 x8:00001880 +76134019ns 1390450 1c0033fe 01c12083 lw x1, 28(x2) x1=1c0034f0 x2:1c019970 PA:1c01998c +76134038ns 1390451 1c003400 01812403 lw x8, 24(x2) x8=1c009c50 x2:1c019970 PA:1c019988 +76134058ns 1390452 1c003402 02010113 addi x2, x2, 32 x2=1c019990 x2:1c019970 +76134078ns 1390453 1c003404 00008067 jalr x0, x1, 0 x1:1c0034f0 +76134118ns 1390455 1c0034f0 00100793 addi x15, x0, 1 x15=00000001 +76134137ns 1390456 1c0034f2 04f40223 sb x15, 68(x8) x15:00000001 x8:1c009c50 PA:1c009c94 +76134157ns 1390457 1c0034f6 00c12083 lw x1, 12(x2) x1=1c00312c x2:1c019990 PA:1c01999c +76134177ns 1390458 1c0034f8 00812403 lw x8, 8(x2) x8=1c00b890 x2:1c019990 PA:1c019998 +76134197ns 1390459 1c0034fa 01010113 addi x2, x2, 16 x2=1c0199a0 x2:1c019990 +76134216ns 1390460 1c0034fc 00008067 jalr x0, x1, 0 x1:1c00312c +76134256ns 1390462 1c00312c 00042623 sw x0, 12(x8) x8:1c00b890 PA:1c00b89c +76134276ns 1390463 1c003130 00800533 add x10, x0, x8 x10=1c00b890 x8:1c00b890 +76134296ns 1390464 1c003132 ac3ff0ef jal x1, -1342 x1=1c003136 +76134335ns 1390466 1c002bf4 300027f3 csrrs x15, x0, 0x300 x15=00001880 +76134414ns 1390470 1c002bf8 300476f3 csrrci x13, 0x00000008, 0x300 x13=00001880 +76134494ns 1390474 1c002bfc 00052783 lw x15, 0(x10) x15=1c00b8b0 x10:1c00b890 PA:1c00b890 +76134533ns 1390476 1c002bfe 0007a503 lw x10, 0(x15) x10=00000000 x15:1c00b8b0 PA:1c00b8b0 +76134573ns 1390478 1c002c00 00050663 beq x10, x0, 12 x10:00000000 +76134632ns 1390481 1c002c0c 30069073 csrrw x0, x13, 0x300 x13:00001880 +76134711ns 1390485 1c002c10 00008067 jalr x0, x1, 0 x1:1c003136 +76134751ns 1390487 1c003136 00050563 beq x10, x0, 10 x10:00000000 +76134810ns 1390490 1c003140 00c12083 lw x1, 12(x2) x1=1c00098c x2:1c0199a0 PA:1c0199ac +76134830ns 1390491 1c003142 00812403 lw x8, 8(x2) x8=1c009144 x2:1c0199a0 PA:1c0199a8 +76134850ns 1390492 1c003144 01010113 addi x2, x2, 16 x2=1c0199b0 x2:1c0199a0 +76134870ns 1390493 1c003146 00008067 jalr x0, x1, 0 x1:1c00098c +76134909ns 1390495 1c00098c 0320006f jal x0, 50 +76134969ns 1390498 1c0009be d541a303 lw x6, -684(x3) x6=1c009db8 x3:1c0093dc PA:1c009130 +76135008ns 1390500 1c0009c2 00032103 lw x2, 0(x6) x2=1c009a90 x6:1c009db8 PA:1c009db8 +76135048ns 1390502 1c0009c6 00012283 lw x5, 0(x2) x5=1c00238a x2:1c009a90 PA:1c009a90 +76135087ns 1390504 1c0009c8 34129073 csrrw x0, x5, 0x341 x5:1c00238a +76135107ns 1390505 1c0009cc 00412283 lw x5, 4(x2) x5=00000000 x2:1c009a90 PA:1c009a94 +76135127ns 1390506 1c0009ce 00812303 lw x6, 8(x2) x6=00000000 x2:1c009a90 PA:1c009a98 +76135147ns 1390507 1c0009d0 00c12383 lw x7, 12(x2) x7=00000000 x2:1c009a90 PA:1c009a9c +76135166ns 1390508 1c0009d2 01012e03 lw x28, 16(x2) x28=00000000 x2:1c009a90 PA:1c009aa0 +76135186ns 1390509 1c0009d4 01412e83 lw x29, 20(x2) x29=00000000 x2:1c009a90 PA:1c009aa4 +76135206ns 1390510 1c0009d6 01812f03 lw x30, 24(x2) x30=00000000 x2:1c009a90 PA:1c009aa8 +76135226ns 1390511 1c0009d8 7c029073 csrrw x0, x5, 0x7c0 x5:00000000 +76135246ns 1390512 1c0009dc 7c131073 csrrw x0, x6, 0x7c1 x6:00000000 +76135265ns 1390513 1c0009e0 7c239073 csrrw x0, x7, 0x7c2 x7:00000000 +76135285ns 1390514 1c0009e4 7c4e1073 csrrw x0, x28, 0x7c4 x28:00000000 +76135305ns 1390515 1c0009e8 7c5e9073 csrrw x0, x29, 0x7c5 x29:00000000 +76135325ns 1390516 1c0009ec 7c6f1073 csrrw x0, x30, 0x7c6 x30:00000000 +76135345ns 1390517 1c0009f0 01810113 addi x2, x2, 24 x2=1c009aa8 x2:1c009a90 +76135364ns 1390518 1c0009f2 07412283 lw x5, 116(x2) x5=00001880 x2:1c009aa8 PA:1c009b1c +76135404ns 1390520 1c0009f4 30029073 csrrw x0, x5, 0x300 x5:00001880 +76135483ns 1390524 1c0009f8 00412083 lw x1, 4(x2) x1=1c002982 x2:1c009aa8 PA:1c009aac +76135503ns 1390525 1c0009fa 00812283 lw x5, 8(x2) x5=a5a5a5a5 x2:1c009aa8 PA:1c009ab0 +76135523ns 1390526 1c0009fc 00c12303 lw x6, 12(x2) x6=00000010 x2:1c009aa8 PA:1c009ab4 +76135543ns 1390527 1c0009fe 01012383 lw x7, 16(x2) x7=a5a5a5a5 x2:1c009aa8 PA:1c009ab8 +76135562ns 1390528 1c000a00 01412403 lw x8, 20(x2) x8=1c009144 x2:1c009aa8 PA:1c009abc +76135582ns 1390529 1c000a02 01812483 lw x9, 24(x2) x9=00000000 x2:1c009aa8 PA:1c009ac0 +76135602ns 1390530 1c000a04 01c12503 lw x10, 28(x2) x10=1c00c288 x2:1c009aa8 PA:1c009ac4 +76135622ns 1390531 1c000a06 02012583 lw x11, 32(x2) x11=00000058 x2:1c009aa8 PA:1c009ac8 +76135641ns 1390532 1c000a08 02412603 lw x12, 36(x2) x12=00000002 x2:1c009aa8 PA:1c009acc +76135661ns 1390533 1c000a0a 02812683 lw x13, 40(x2) x13=1c009db8 x2:1c009aa8 PA:1c009ad0 +76135681ns 1390534 1c000a0c 02c12703 lw x14, 44(x2) x14=00000000 x2:1c009aa8 PA:1c009ad4 +76135701ns 1390535 1c000a0e 03012783 lw x15, 48(x2) x15=00000001 x2:1c009aa8 PA:1c009ad8 +76135721ns 1390536 1c000a10 03412803 lw x16, 52(x2) x16=60070004 x2:1c009aa8 PA:1c009adc +76135740ns 1390537 1c000a12 03812883 lw x17, 56(x2) x17=00000005 x2:1c009aa8 PA:1c009ae0 +76135760ns 1390538 1c000a14 03c12903 lw x18, 60(x2) x18=000000ff x2:1c009aa8 PA:1c009ae4 +76135780ns 1390539 1c000a16 04012983 lw x19, 64(x2) x19=00000002 x2:1c009aa8 PA:1c009ae8 +76135800ns 1390540 1c000a18 04412a03 lw x20, 68(x2) x20=1c00918c x2:1c009aa8 PA:1c009aec +76135820ns 1390541 1c000a1a 04812a83 lw x21, 72(x2) x21=a5a5a5a5 x2:1c009aa8 PA:1c009af0 +76135839ns 1390542 1c000a1c 04c12b03 lw x22, 76(x2) x22=a5a5a5a5 x2:1c009aa8 PA:1c009af4 +76135859ns 1390543 1c000a1e 05012b83 lw x23, 80(x2) x23=a5a5a5a5 x2:1c009aa8 PA:1c009af8 +76135879ns 1390544 1c000a20 05412c03 lw x24, 84(x2) x24=a5a5a5a5 x2:1c009aa8 PA:1c009afc +76135899ns 1390545 1c000a22 05812c83 lw x25, 88(x2) x25=a5a5a5a5 x2:1c009aa8 PA:1c009b00 +76135919ns 1390546 1c000a24 05c12d03 lw x26, 92(x2) x26=a5a5a5a5 x2:1c009aa8 PA:1c009b04 +76135938ns 1390547 1c000a26 06012d83 lw x27, 96(x2) x27=a5a5a5a5 x2:1c009aa8 PA:1c009b08 +76135958ns 1390548 1c000a28 06412e03 lw x28, 100(x2) x28=00000004 x2:1c009aa8 PA:1c009b0c +76135978ns 1390549 1c000a2a 06812e83 lw x29, 104(x2) x29=1c00b890 x2:1c009aa8 PA:1c009b10 +76135998ns 1390550 1c000a2c 06c12f03 lw x30, 108(x2) x30=00000000 x2:1c009aa8 PA:1c009b14 +76136018ns 1390551 1c000a2e 07012f83 lw x31, 112(x2) x31=a5a5a5a5 x2:1c009aa8 PA:1c009b18 +76136037ns 1390552 1c000a30 07810113 addi x2, x2, 120 x2=1c009b20 x2:1c009aa8 +76136057ns 1390553 1c000a34 30200073 mret +76136176ns 1390559 1c00238a c83ff0ef jal x1, -894 x1=1c00238e +76136215ns 1390561 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +76136295ns 1390565 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76136334ns 1390567 1c002014 00078863 beq x15, x0, 16 x15:00000001 +76136354ns 1390568 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76136374ns 1390569 1c00201a 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76136394ns 1390570 1c00201c 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76136413ns 1390571 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c009db8 PA:1c009dfc +76136453ns 1390573 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76136473ns 1390574 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c009db8 PA:1c009dfc +76136493ns 1390575 1c002024 00008067 jalr x0, x1, 0 x1:1c00238e +76136532ns 1390577 1c00238e 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +76136572ns 1390579 1c002390 fff78793 addi x15, x15, -1 x15=00000000 x15:00000001 +76136592ns 1390580 1c002392 00f42023 sw x15, 0(x8) x15:00000000 x8:1c009144 PA:1c009144 +76136611ns 1390581 1c002394 00042783 lw x15, 0(x8) x15=00000000 x8:1c009144 PA:1c009144 +76136651ns 1390583 1c002396 02078163 beq x15, x0, 34 x15:00000000 +76136710ns 1390586 1c0023b8 d601a783 lw x15, -672(x3) x15=00000003 x3:1c0093dc PA:1c00913c +76136750ns 1390588 1c0023bc fc078ee3 beq x15, x0, -36 x15:00000003 +76136770ns 1390589 1c0023be 1c009937 lui x18, 0x1c009000 x18=1c009000 +76136789ns 1390590 1c0023c2 00000413 addi x8, x0, 0 x8=00000000 +76136809ns 1390591 1c0023c4 93818493 addi x9, x3, -1736 x9=1c008d14 x3:1c0093dc +76136829ns 1390592 1c0023c8 00100993 addi x19, x0, 1 x19=00000001 +76136849ns 1390593 1c0023ca c8890913 addi x18, x18, -888 x18=1c008c88 x18:1c009000 +76136869ns 1390594 1c0023ce 01400a93 addi x21, x0, 20 x21=00000014 +76136888ns 1390595 1c0023d0 04c0006f jal x0, 76 +76136928ns 1390597 1c00241c 0004a783 lw x15, 0(x9) x15=00000000 x9:1c008d14 PA:1c008d14 +76136968ns 1390599 1c00241e fa079ae3 bne x15, x0, -76 x15:00000000 +76136987ns 1390600 1c002420 00040363 beq x8, x0, 6 x8:00000000 +76137067ns 1390604 1c002426 d8018713 addi x14, x3, -640 x14=1c00915c x3:1c0093dc +76137086ns 1390605 1c00242a 00072483 lw x9, 0(x14) x9=00000000 x14:1c00915c PA:1c00915c +76137106ns 1390606 1c00242c d8018413 addi x8, x3, -640 x8=1c00915c x3:1c0093dc +76137126ns 1390607 1c002430 00048d63 beq x9, x0, 26 x9:00000000 +76137205ns 1390611 1c00244a d8c1a783 lw x15, -628(x3) x15=00000001 x3:1c0093dc PA:1c009168 +76137245ns 1390613 1c00244e f40785e3 beq x15, x0, -182 x15:00000001 +76137264ns 1390614 1c002450 00000073 ecall +76137344ns 1390618 1c000800 1000006f jal x0, 256 +76137383ns 1390620 1c000900 f8810113 addi x2, x2, -120 x2=1c009aa8 x2:1c009b20 +76137403ns 1390621 1c000904 00112223 sw x1, 4(x2) x1:1c00238e x2:1c009aa8 PA:1c009aac +76137423ns 1390622 1c000906 00512423 sw x5, 8(x2) x5:a5a5a5a5 x2:1c009aa8 PA:1c009ab0 +76137443ns 1390623 1c000908 00612623 sw x6, 12(x2) x6:00000010 x2:1c009aa8 PA:1c009ab4 +76137462ns 1390624 1c00090a 00712823 sw x7, 16(x2) x7:a5a5a5a5 x2:1c009aa8 PA:1c009ab8 +76137482ns 1390625 1c00090c 00812a23 sw x8, 20(x2) x8:1c00915c x2:1c009aa8 PA:1c009abc +76137502ns 1390626 1c00090e 00912c23 sw x9, 24(x2) x9:00000000 x2:1c009aa8 PA:1c009ac0 +76137522ns 1390627 1c000910 00a12e23 sw x10, 28(x2) x10:1c00c288 x2:1c009aa8 PA:1c009ac4 +76137542ns 1390628 1c000912 02b12023 sw x11, 32(x2) x11:00000058 x2:1c009aa8 PA:1c009ac8 +76137561ns 1390629 1c000914 02c12223 sw x12, 36(x2) x12:00000002 x2:1c009aa8 PA:1c009acc +76137581ns 1390630 1c000916 02d12423 sw x13, 40(x2) x13:1c009db8 x2:1c009aa8 PA:1c009ad0 +76137601ns 1390631 1c000918 02e12623 sw x14, 44(x2) x14:1c00915c x2:1c009aa8 PA:1c009ad4 +76137621ns 1390632 1c00091a 02f12823 sw x15, 48(x2) x15:00000001 x2:1c009aa8 PA:1c009ad8 +76137640ns 1390633 1c00091c 03012a23 sw x16, 52(x2) x16:60070004 x2:1c009aa8 PA:1c009adc +76137660ns 1390634 1c00091e 03112c23 sw x17, 56(x2) x17:00000005 x2:1c009aa8 PA:1c009ae0 +76137680ns 1390635 1c000920 03212e23 sw x18, 60(x2) x18:1c008c88 x2:1c009aa8 PA:1c009ae4 +76137700ns 1390636 1c000922 05312023 sw x19, 64(x2) x19:00000001 x2:1c009aa8 PA:1c009ae8 +76137720ns 1390637 1c000924 05412223 sw x20, 68(x2) x20:1c00918c x2:1c009aa8 PA:1c009aec +76137739ns 1390638 1c000926 05512423 sw x21, 72(x2) x21:00000014 x2:1c009aa8 PA:1c009af0 +76137759ns 1390639 1c000928 05612623 sw x22, 76(x2) x22:a5a5a5a5 x2:1c009aa8 PA:1c009af4 +76137779ns 1390640 1c00092a 05712823 sw x23, 80(x2) x23:a5a5a5a5 x2:1c009aa8 PA:1c009af8 +76137799ns 1390641 1c00092c 05812a23 sw x24, 84(x2) x24:a5a5a5a5 x2:1c009aa8 PA:1c009afc +76137819ns 1390642 1c00092e 05912c23 sw x25, 88(x2) x25:a5a5a5a5 x2:1c009aa8 PA:1c009b00 +76137838ns 1390643 1c000930 05a12e23 sw x26, 92(x2) x26:a5a5a5a5 x2:1c009aa8 PA:1c009b04 +76137858ns 1390644 1c000932 07b12023 sw x27, 96(x2) x27:a5a5a5a5 x2:1c009aa8 PA:1c009b08 +76137878ns 1390645 1c000934 07c12223 sw x28, 100(x2) x28:00000004 x2:1c009aa8 PA:1c009b0c +76137898ns 1390646 1c000936 07d12423 sw x29, 104(x2) x29:1c00b890 x2:1c009aa8 PA:1c009b10 +76137918ns 1390647 1c000938 07e12623 sw x30, 108(x2) x30:00000000 x2:1c009aa8 PA:1c009b14 +76137937ns 1390648 1c00093a 07f12823 sw x31, 112(x2) x31:a5a5a5a5 x2:1c009aa8 PA:1c009b18 +76137957ns 1390649 1c00093c 300022f3 csrrs x5, x0, 0x300 x5=00001800 +76138036ns 1390653 1c000940 06512a23 sw x5, 116(x2) x5:00001800 x2:1c009aa8 PA:1c009b1c +76138056ns 1390654 1c000942 fe810113 addi x2, x2, -24 x2=1c009a90 x2:1c009aa8 +76138076ns 1390655 1c000944 7c0022f3 csrrs x5, x0, 0x7c0 x5=00000000 +76138096ns 1390656 1c000948 7c102373 csrrs x6, x0, 0x7c1 x6=00000000 +76138115ns 1390657 1c00094c 7c2023f3 csrrs x7, x0, 0x7c2 x7=00000000 +76138135ns 1390658 1c000950 7c402e73 csrrs x28, x0, 0x7c4 x28=00000000 +76138155ns 1390659 1c000954 7c502ef3 csrrs x29, x0, 0x7c5 x29=00000000 +76138175ns 1390660 1c000958 7c602f73 csrrs x30, x0, 0x7c6 x30=00000000 +76138195ns 1390661 1c00095c 00512223 sw x5, 4(x2) x5:00000000 x2:1c009a90 PA:1c009a94 +76138214ns 1390662 1c00095e 00612423 sw x6, 8(x2) x6:00000000 x2:1c009a90 PA:1c009a98 +76138234ns 1390663 1c000960 00712623 sw x7, 12(x2) x7:00000000 x2:1c009a90 PA:1c009a9c +76138254ns 1390664 1c000962 01c12823 sw x28, 16(x2) x28:00000000 x2:1c009a90 PA:1c009aa0 +76138274ns 1390665 1c000964 01d12a23 sw x29, 20(x2) x29:00000000 x2:1c009a90 PA:1c009aa4 +76138294ns 1390666 1c000966 01e12c23 sw x30, 24(x2) x30:00000000 x2:1c009a90 PA:1c009aa8 +76138313ns 1390667 1c000968 d541a283 lw x5, -684(x3) x5=1c009db8 x3:1c0093dc PA:1c009130 +76138353ns 1390669 1c00096c 0022a023 sw x2, 0(x5) x2:1c009a90 x5:1c009db8 PA:1c009db8 +76138373ns 1390670 1c000970 34202573 csrrs x10, x0, 0x342 x10=0000000b +76138393ns 1390671 1c000974 341025f3 csrrs x11, x0, 0x341 x11=1c002450 +76138412ns 1390672 1c000978 01f55613 srli x12, x10, 0x1f x12=00000000 x10:0000000b +76138432ns 1390673 1c00097c 00060963 beq x12, x0, 18 x12:00000000 +76138492ns 1390676 1c00098e 00458593 addi x11, x11, 4 x11=1c002454 x11:1c002450 +76138511ns 1390677 1c000990 00b12023 sw x11, 0(x2) x11:1c002454 x2:1c009a90 PA:1c009a90 +76138531ns 1390678 1c000992 00b00293 addi x5, x0, 11 x5=0000000b +76138551ns 1390679 1c000994 7ff57513 andi x10, x10, 2047 x10=0000000b x10:0000000b +76138571ns 1390680 1c000998 00551963 bne x10, x5, 18 x10:0000000b x5:0000000b +76138591ns 1390681 1c00099c 00008117 auipc x2, 0x8000 x2=1c00899c +76138610ns 1390682 1c0009a0 23812103 lw x2, 568(x2) x2=1c0199b0 x2:1c00899c PA:1c008bd4 +76138630ns 1390683 1c0009a4 1d2010ef jal x1, 4562 x1=1c0009a8 +76138689ns 1390686 1c001b76 d681a703 lw x14, -664(x3) x14=00000000 x3:1c0093dc PA:1c009144 +76138709ns 1390687 1c001b7a d8c18793 addi x15, x3, -628 x15=1c009168 x3:1c0093dc +76138729ns 1390688 1c001b7e 00070463 beq x14, x0, 8 x14:00000000 +76138788ns 1390691 1c001b86 ff010113 addi x2, x2, -16 x2=1c0199a0 x2:1c0199b0 +76138808ns 1390692 1c001b88 00812423 sw x8, 8(x2) x8:1c00915c x2:1c0199a0 PA:1c0199a8 +76138828ns 1390693 1c001b8a 00112623 sw x1, 12(x2) x1:1c0009a8 x2:1c0199a0 PA:1c0199ac +76138848ns 1390694 1c001b8c 0007a023 sw x0, 0(x15) x15:1c009168 PA:1c009168 +76138868ns 1390695 1c001b90 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76138887ns 1390696 1c001b94 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76138907ns 1390697 1c001b96 a5a5a737 lui x14, 0xa5a5a000 x14=a5a5a000 +76138927ns 1390698 1c001b9a 5a570713 addi x14, x14, 1445 x14=a5a5a5a5 x14:a5a5a000 +76138947ns 1390699 1c001b9e 0307a783 lw x15, 48(x15) x15=1c009770 x15:1c009db8 PA:1c009de8 +76138967ns 1390700 1c001ba0 d5418413 addi x8, x3, -684 x8=1c009130 x3:1c0093dc +76138986ns 1390701 1c001ba4 0007a603 lw x12, 0(x15) x12=a5a5a5a5 x15:1c009770 PA:1c009770 +76139026ns 1390703 1c001ba6 00e61b63 bne x12, x14, 22 x12:a5a5a5a5 x14:a5a5a5a5 +76139046ns 1390704 1c001baa 0047a683 lw x13, 4(x15) x13=a5a5a5a5 x15:1c009770 PA:1c009774 +76139085ns 1390706 1c001bac 00c69863 bne x13, x12, 16 x13:a5a5a5a5 x12:a5a5a5a5 +76139105ns 1390707 1c001bb0 0087a703 lw x14, 8(x15) x14=a5a5a5a5 x15:1c009770 PA:1c009778 +76139145ns 1390709 1c001bb2 00d71563 bne x14, x13, 10 x14:a5a5a5a5 x13:a5a5a5a5 +76139164ns 1390710 1c001bb6 00c7a783 lw x15, 12(x15) x15=a5a5a5a5 x15:1c009770 PA:1c00977c +76139204ns 1390712 1c001bb8 00e78863 beq x15, x14, 16 x15:a5a5a5a5 x14:a5a5a5a5 +76139263ns 1390715 1c001bc8 d701a503 lw x10, -656(x3) x10=00000003 x3:1c0093dc PA:1c00914c +76139283ns 1390716 1c001bcc abeff0ef jal x1, -3394 x1=1c001bd0 +76139323ns 1390718 1c000e8a 000107b7 lui x15, 0x10000 x15=00010000 +76139343ns 1390719 1c000e8c 02f57663 bgeu x10, x15, 44 x10:00000003 x15:00010000 +76139362ns 1390720 1c000e90 0ff00793 addi x15, x0, 255 x15=000000ff +76139382ns 1390721 1c000e94 00a7b7b3 sltu x15, x15, x10 x15=00000000 x15:000000ff x10:00000003 +76139402ns 1390722 1c000e98 00379793 slli x15, x15, 0x3 x15=00000000 x15:00000000 +76139422ns 1390723 1c000e9a 1c009737 lui x14, 0x1c009000 x14=1c009000 +76139442ns 1390724 1c000e9e 02000693 addi x13, x0, 32 x13=00000020 +76139461ns 1390725 1c000ea2 40f686b3 sub x13, x13, x15 x13=00000020 x13:00000020 x15:00000000 +76139481ns 1390726 1c000ea4 00f55533 srl x10, x10, x15 x10=00000003 x10:00000003 x15:00000000 +76139501ns 1390727 1c000ea8 ad470793 addi x15, x14, -1324 x15=1c008ad4 x14:1c009000 +76139521ns 1390728 1c000eac 00f50533 add x10, x10, x15 x10=1c008ad7 x10:00000003 x15:1c008ad4 +76139541ns 1390729 1c000eae 00054503 lbu x10, 0(x10) x10=00000002 x10:1c008ad7 PA:1c008ad7 +76139580ns 1390731 1c000eb2 40a68533 sub x10, x13, x10 x10=0000001e x13:00000020 x10:00000002 +76139600ns 1390732 1c000eb6 00008067 jalr x0, x1, 0 x1:1c001bd0 +76139639ns 1390734 1c001bd0 01f00713 addi x14, x0, 31 x14=0000001f +76139659ns 1390735 1c001bd2 40a70533 sub x10, x14, x10 x10=00000001 x14:0000001f x10:0000001e +76139679ns 1390736 1c001bd6 01400793 addi x15, x0, 20 x15=00000014 +76139699ns 1390737 1c001bd8 02f507b3 mul x15, x10, x15 x15=00000014 x10:00000001 x15:00000014 +76139719ns 1390738 1c001bdc 1c009737 lui x14, 0x1c009000 x14=1c009000 +76139738ns 1390739 1c001be0 c8870693 addi x13, x14, -888 x13=1c008c88 x14:1c009000 +76139758ns 1390740 1c001be4 c8870713 addi x14, x14, -888 x14=1c008c88 x14:1c009000 +76139778ns 1390741 1c001be8 00f686b3 add x13, x13, x15 x13=1c008c9c x13:1c008c88 x15:00000014 +76139798ns 1390742 1c001bea 0006a603 lw x12, 0(x13) x12=00000001 x13:1c008c9c PA:1c008c9c +76139837ns 1390744 1c001bec 02061263 bne x12, x0, 36 x12:00000001 +76139897ns 1390747 1c001c10 0046a603 lw x12, 4(x13) x12=1c009dbc x13:1c008c9c PA:1c008ca0 +76139917ns 1390748 1c001c12 00878793 addi x15, x15, 8 x15=0000001c x15:00000014 +76139936ns 1390749 1c001c14 00e787b3 add x15, x15, x14 x15=1c008ca4 x15:0000001c x14:1c008c88 +76139956ns 1390750 1c001c16 00462603 lw x12, 4(x12) x12=1c008ca4 x12:1c009dbc PA:1c009dc0 +76139996ns 1390752 1c001c18 00c6a223 sw x12, 4(x13) x12:1c008ca4 x13:1c008c9c PA:1c008ca0 +76140016ns 1390753 1c001c1a 00f61463 bne x12, x15, 8 x12:1c008ca4 x15:1c008ca4 +76140035ns 1390754 1c001c1e 00462783 lw x15, 4(x12) x15=1c009dbc x12:1c008ca4 PA:1c008ca8 +76140075ns 1390756 1c001c20 00f6a223 sw x15, 4(x13) x15:1c009dbc x13:1c008c9c PA:1c008ca0 +76140095ns 1390757 1c001c22 01400793 addi x15, x0, 20 x15=00000014 +76140114ns 1390758 1c001c24 02f50533 mul x10, x10, x15 x10=00000014 x10:00000001 x15:00000014 +76140134ns 1390759 1c001c28 00c12083 lw x1, 12(x2) x1=1c0009a8 x2:1c0199a0 PA:1c0199ac +76140154ns 1390760 1c001c2a 00a70733 add x14, x14, x10 x14=1c008c9c x14:1c008c88 x10:00000014 +76140174ns 1390761 1c001c2c 00472783 lw x15, 4(x14) x15=1c009dbc x14:1c008c9c PA:1c008ca0 +76140194ns 1390762 1c001c2e 1c009737 lui x14, 0x1c009000 x14=1c009000 +76140213ns 1390763 1c001c32 00c7a783 lw x15, 12(x15) x15=1c009db8 x15:1c009dbc PA:1c009dc8 +76140253ns 1390765 1c001c34 00f42023 sw x15, 0(x8) x15:1c009db8 x8:1c009130 PA:1c009130 +76140273ns 1390766 1c001c36 00042783 lw x15, 0(x8) x15=1c009db8 x8:1c009130 PA:1c009130 +76140293ns 1390767 1c001c38 00812403 lw x8, 8(x2) x8=1c00915c x2:1c0199a0 PA:1c0199a8 +76140312ns 1390768 1c001c3a 05878793 addi x15, x15, 88 x15=1c009e10 x15:1c009db8 +76140332ns 1390769 1c001c3e c4f72223 sw x15, -956(x14) x15:1c009e10 x14:1c009000 PA:1c008c44 +76140352ns 1390770 1c001c42 01010113 addi x2, x2, 16 x2=1c0199b0 x2:1c0199a0 +76140372ns 1390771 1c001c44 00008067 jalr x0, x1, 0 x1:1c0009a8 +76140411ns 1390773 1c0009a8 0160006f jal x0, 22 +76140471ns 1390776 1c0009be d541a303 lw x6, -684(x3) x6=1c009db8 x3:1c0093dc PA:1c009130 +76140510ns 1390778 1c0009c2 00032103 lw x2, 0(x6) x2=1c009a90 x6:1c009db8 PA:1c009db8 +76140550ns 1390780 1c0009c6 00012283 lw x5, 0(x2) x5=1c002454 x2:1c009a90 PA:1c009a90 +76140589ns 1390782 1c0009c8 34129073 csrrw x0, x5, 0x341 x5:1c002454 +76140609ns 1390783 1c0009cc 00412283 lw x5, 4(x2) x5=00000000 x2:1c009a90 PA:1c009a94 +76140629ns 1390784 1c0009ce 00812303 lw x6, 8(x2) x6=00000000 x2:1c009a90 PA:1c009a98 +76140649ns 1390785 1c0009d0 00c12383 lw x7, 12(x2) x7=00000000 x2:1c009a90 PA:1c009a9c +76140669ns 1390786 1c0009d2 01012e03 lw x28, 16(x2) x28=00000000 x2:1c009a90 PA:1c009aa0 +76140688ns 1390787 1c0009d4 01412e83 lw x29, 20(x2) x29=00000000 x2:1c009a90 PA:1c009aa4 +76140708ns 1390788 1c0009d6 01812f03 lw x30, 24(x2) x30=00000000 x2:1c009a90 PA:1c009aa8 +76140728ns 1390789 1c0009d8 7c029073 csrrw x0, x5, 0x7c0 x5:00000000 +76140748ns 1390790 1c0009dc 7c131073 csrrw x0, x6, 0x7c1 x6:00000000 +76140768ns 1390791 1c0009e0 7c239073 csrrw x0, x7, 0x7c2 x7:00000000 +76140787ns 1390792 1c0009e4 7c4e1073 csrrw x0, x28, 0x7c4 x28:00000000 +76140807ns 1390793 1c0009e8 7c5e9073 csrrw x0, x29, 0x7c5 x29:00000000 +76140827ns 1390794 1c0009ec 7c6f1073 csrrw x0, x30, 0x7c6 x30:00000000 +76140847ns 1390795 1c0009f0 01810113 addi x2, x2, 24 x2=1c009aa8 x2:1c009a90 +76140867ns 1390796 1c0009f2 07412283 lw x5, 116(x2) x5=00001800 x2:1c009aa8 PA:1c009b1c +76140906ns 1390798 1c0009f4 30029073 csrrw x0, x5, 0x300 x5:00001800 +76140985ns 1390802 1c0009f8 00412083 lw x1, 4(x2) x1=1c00238e x2:1c009aa8 PA:1c009aac +76141005ns 1390803 1c0009fa 00812283 lw x5, 8(x2) x5=a5a5a5a5 x2:1c009aa8 PA:1c009ab0 +76141025ns 1390804 1c0009fc 00c12303 lw x6, 12(x2) x6=00000010 x2:1c009aa8 PA:1c009ab4 +76141045ns 1390805 1c0009fe 01012383 lw x7, 16(x2) x7=a5a5a5a5 x2:1c009aa8 PA:1c009ab8 +76141065ns 1390806 1c000a00 01412403 lw x8, 20(x2) x8=1c00915c x2:1c009aa8 PA:1c009abc +76141084ns 1390807 1c000a02 01812483 lw x9, 24(x2) x9=00000000 x2:1c009aa8 PA:1c009ac0 +76141104ns 1390808 1c000a04 01c12503 lw x10, 28(x2) x10=1c00c288 x2:1c009aa8 PA:1c009ac4 +76141124ns 1390809 1c000a06 02012583 lw x11, 32(x2) x11=00000058 x2:1c009aa8 PA:1c009ac8 +76141144ns 1390810 1c000a08 02412603 lw x12, 36(x2) x12=00000002 x2:1c009aa8 PA:1c009acc +76141163ns 1390811 1c000a0a 02812683 lw x13, 40(x2) x13=1c009db8 x2:1c009aa8 PA:1c009ad0 +76141183ns 1390812 1c000a0c 02c12703 lw x14, 44(x2) x14=1c00915c x2:1c009aa8 PA:1c009ad4 +76141203ns 1390813 1c000a0e 03012783 lw x15, 48(x2) x15=00000001 x2:1c009aa8 PA:1c009ad8 +76141223ns 1390814 1c000a10 03412803 lw x16, 52(x2) x16=60070004 x2:1c009aa8 PA:1c009adc +76141243ns 1390815 1c000a12 03812883 lw x17, 56(x2) x17=00000005 x2:1c009aa8 PA:1c009ae0 +76141262ns 1390816 1c000a14 03c12903 lw x18, 60(x2) x18=1c008c88 x2:1c009aa8 PA:1c009ae4 +76141282ns 1390817 1c000a16 04012983 lw x19, 64(x2) x19=00000001 x2:1c009aa8 PA:1c009ae8 +76141302ns 1390818 1c000a18 04412a03 lw x20, 68(x2) x20=1c00918c x2:1c009aa8 PA:1c009aec +76141322ns 1390819 1c000a1a 04812a83 lw x21, 72(x2) x21=00000014 x2:1c009aa8 PA:1c009af0 +76141342ns 1390820 1c000a1c 04c12b03 lw x22, 76(x2) x22=a5a5a5a5 x2:1c009aa8 PA:1c009af4 +76141361ns 1390821 1c000a1e 05012b83 lw x23, 80(x2) x23=a5a5a5a5 x2:1c009aa8 PA:1c009af8 +76141381ns 1390822 1c000a20 05412c03 lw x24, 84(x2) x24=a5a5a5a5 x2:1c009aa8 PA:1c009afc +76141401ns 1390823 1c000a22 05812c83 lw x25, 88(x2) x25=a5a5a5a5 x2:1c009aa8 PA:1c009b00 +76141421ns 1390824 1c000a24 05c12d03 lw x26, 92(x2) x26=a5a5a5a5 x2:1c009aa8 PA:1c009b04 +76141441ns 1390825 1c000a26 06012d83 lw x27, 96(x2) x27=a5a5a5a5 x2:1c009aa8 PA:1c009b08 +76141460ns 1390826 1c000a28 06412e03 lw x28, 100(x2) x28=00000004 x2:1c009aa8 PA:1c009b0c +76141480ns 1390827 1c000a2a 06812e83 lw x29, 104(x2) x29=1c00b890 x2:1c009aa8 PA:1c009b10 +76141500ns 1390828 1c000a2c 06c12f03 lw x30, 108(x2) x30=00000000 x2:1c009aa8 PA:1c009b14 +76141520ns 1390829 1c000a2e 07012f83 lw x31, 112(x2) x31=a5a5a5a5 x2:1c009aa8 PA:1c009b18 +76141540ns 1390830 1c000a30 07810113 addi x2, x2, 120 x2=1c009b20 x2:1c009aa8 +76141559ns 1390831 1c000a34 30200073 mret +76141658ns 1390836 1c002454 00100513 addi x10, x0, 1 x10=00000001 +76141678ns 1390837 1c002456 f45ff06f jal x0, -188 +76141718ns 1390839 1c00239a 00a12623 sw x10, 12(x2) x10:00000001 x2:1c009b20 PA:1c009b2c +76141737ns 1390840 1c00239c c8bff0ef jal x1, -886 x1=1c0023a0 +76141797ns 1390843 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76141836ns 1390845 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +76141856ns 1390846 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76141876ns 1390847 1c002030 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +76141916ns 1390849 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c009db8 PA:1c009dfc +76141955ns 1390851 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +76141975ns 1390852 1c002036 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76141995ns 1390853 1c002038 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76142015ns 1390854 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c009db8 PA:1c009dfc +76142054ns 1390856 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +76142074ns 1390857 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c009db8 PA:1c009dfc +76142094ns 1390858 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c009db8 PA:1c009dfc +76142133ns 1390860 1c002042 00079363 bne x15, x0, 6 x15:00000000 +76142153ns 1390861 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +76142232ns 1390865 1c002048 00008067 jalr x0, x1, 0 x1:1c0023a0 +76142272ns 1390867 1c0023a0 03c12083 lw x1, 60(x2) x1=1c002982 x2:1c009b20 PA:1c009b5c +76142292ns 1390868 1c0023a2 03812403 lw x8, 56(x2) x8=1c00c288 x2:1c009b20 PA:1c009b58 +76142311ns 1390869 1c0023a4 00c12503 lw x10, 12(x2) x10=00000001 x2:1c009b20 PA:1c009b2c +76142331ns 1390870 1c0023a6 03412483 lw x9, 52(x2) x9=00000000 x2:1c009b20 PA:1c009b54 +76142351ns 1390871 1c0023a8 03012903 lw x18, 48(x2) x18=000000ff x2:1c009b20 PA:1c009b50 +76142371ns 1390872 1c0023aa 02c12983 lw x19, 44(x2) x19=00000002 x2:1c009b20 PA:1c009b4c +76142391ns 1390873 1c0023ac 02812a03 lw x20, 40(x2) x20=1c00918c x2:1c009b20 PA:1c009b48 +76142410ns 1390874 1c0023ae 02412a83 lw x21, 36(x2) x21=a5a5a5a5 x2:1c009b20 PA:1c009b44 +76142430ns 1390875 1c0023b0 02012b03 lw x22, 32(x2) x22=a5a5a5a5 x2:1c009b20 PA:1c009b40 +76142450ns 1390876 1c0023b2 01c12b83 lw x23, 28(x2) x23=a5a5a5a5 x2:1c009b20 PA:1c009b3c +76142470ns 1390877 1c0023b4 04010113 addi x2, x2, 64 x2=1c009b60 x2:1c009b20 +76142490ns 1390878 1c0023b6 00008067 jalr x0, x1, 0 x1:1c002982 +76142529ns 1390880 1c002982 00041363 bne x8, x0, 6 x8:1c00c288 +76142588ns 1390883 1c002988 01c12083 lw x1, 28(x2) x1=1c001154 x2:1c009b60 PA:1c009b7c +76142608ns 1390884 1c00298a 00800533 add x10, x0, x8 x10=1c00c288 x8:1c00c288 +76142628ns 1390885 1c00298c 01812403 lw x8, 24(x2) x8=00000000 x2:1c009b60 PA:1c009b78 +76142648ns 1390886 1c00298e 02010113 addi x2, x2, 32 x2=1c009b80 x2:1c009b60 +76142668ns 1390887 1c002990 00008067 jalr x0, x1, 0 x1:1c001154 +76142707ns 1390889 1c001154 00a00433 add x8, x0, x10 x8=1c00c288 x10:1c00c288 +76142727ns 1390890 1c001156 00050e63 beq x10, x0, 28 x10:1c00c288 +76142747ns 1390891 1c001158 00a007b3 add x15, x0, x10 x15=1c00c288 x10:1c00c288 +76142767ns 1390892 1c00115a 00048363 beq x9, x0, 6 x9:00000000 +76142826ns 1390895 1c001160 00f42023 sw x15, 0(x8) x15:1c00c288 x8:1c00c288 PA:1c00c288 +76142846ns 1390896 1c001162 03242e23 sw x18, 60(x8) x18:000000ff x8:1c00c288 PA:1c00c2c4 +76142866ns 1390897 1c001166 04942023 sw x9, 64(x8) x9:00000000 x8:1c00c288 PA:1c00c2c8 +76142885ns 1390898 1c001168 00100593 addi x11, x0, 1 x11=00000001 +76142905ns 1390899 1c00116a 00800533 add x10, x0, x8 x10=1c00c288 x8:1c00c288 +76142925ns 1390900 1c00116c f1fff0ef jal x1, -226 x1=1c00116e +76142965ns 1390902 1c00108a ff010113 addi x2, x2, -16 x2=1c009b70 x2:1c009b80 +76142984ns 1390903 1c00108c 00112623 sw x1, 12(x2) x1:1c00116e x2:1c009b70 PA:1c009b7c +76143004ns 1390904 1c00108e 00812423 sw x8, 8(x2) x8:1c00c288 x2:1c009b70 PA:1c009b78 +76143024ns 1390905 1c001090 00912223 sw x9, 4(x2) x9:00000000 x2:1c009b70 PA:1c009b74 +76143044ns 1390906 1c001092 02051163 bne x10, x0, 34 x10:1c00c288 +76143103ns 1390909 1c0010b4 00a00433 add x8, x0, x10 x8=1c00c288 x10:1c00c288 +76143123ns 1390910 1c0010b6 00b004b3 add x9, x0, x11 x9=00000001 x11:00000001 +76143143ns 1390911 1c0010b8 755000ef jal x1, 3924 x1=1c0010bc +76143182ns 1390913 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +76143261ns 1390917 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76143301ns 1390919 1c002014 00078863 beq x15, x0, 16 x15:00000001 +76143321ns 1390920 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76143341ns 1390921 1c00201a 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76143360ns 1390922 1c00201c 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76143380ns 1390923 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c009db8 PA:1c009dfc +76143420ns 1390925 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76143440ns 1390926 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c009db8 PA:1c009dfc +76143459ns 1390927 1c002024 00008067 jalr x0, x1, 0 x1:1c0010bc +76143499ns 1390929 1c0010bc 04042683 lw x13, 64(x8) x13=00000000 x8:1c00c288 PA:1c00c2c8 +76143519ns 1390930 1c0010be 03c42783 lw x15, 60(x8) x15=000000ff x8:1c00c288 PA:1c00c2c4 +76143539ns 1390931 1c0010c0 00042703 lw x14, 0(x8) x14=1c00c288 x8:1c00c288 PA:1c00c288 +76143558ns 1390932 1c0010c2 02042c23 sw x0, 56(x8) x8:1c00c288 PA:1c00c2c0 +76143578ns 1390933 1c0010c6 02f687b3 mul x15, x13, x15 x15=00000000 x13:00000000 x15:000000ff +76143598ns 1390934 1c0010ca 00e42223 sw x14, 4(x8) x14:1c00c288 x8:1c00c288 PA:1c00c28c +76143618ns 1390935 1c0010cc 00f70633 add x12, x14, x15 x12=1c00c288 x14:1c00c288 x15:00000000 +76143637ns 1390936 1c0010d0 40d787b3 sub x15, x15, x13 x15=00000000 x15:00000000 x13:00000000 +76143657ns 1390937 1c0010d2 00e787b3 add x15, x15, x14 x15=1c00c288 x15:00000000 x14:1c00c288 +76143677ns 1390938 1c0010d4 00f42623 sw x15, 12(x8) x15:1c00c288 x8:1c00c288 PA:1c00c294 +76143697ns 1390939 1c0010d6 fff00793 addi x15, x0, -1 x15=ffffffff +76143717ns 1390940 1c0010d8 04f40223 sb x15, 68(x8) x15:ffffffff x8:1c00c288 PA:1c00c2cc +76143736ns 1390941 1c0010dc 00c42423 sw x12, 8(x8) x12:1c00c288 x8:1c00c288 PA:1c00c290 +76143756ns 1390942 1c0010de 04f402a3 sb x15, 69(x8) x15:ffffffff x8:1c00c288 PA:1c00c2cd +76143776ns 1390943 1c0010e2 02049263 bne x9, x0, 36 x9:00000001 +76143855ns 1390947 1c001106 01040513 addi x10, x8, 16 x10=1c00c298 x8:1c00c288 +76143875ns 1390948 1c00110a dbdff0ef jal x1, -580 x1=1c00110c +76143934ns 1390951 1c000ec6 00850793 addi x15, x10, 8 x15=1c00c2a0 x10:1c00c298 +76143954ns 1390952 1c000eca fff00713 addi x14, x0, -1 x14=ffffffff +76143974ns 1390953 1c000ecc 00f52223 sw x15, 4(x10) x15:1c00c2a0 x10:1c00c298 PA:1c00c29c +76143994ns 1390954 1c000ece 00e52423 sw x14, 8(x10) x14:ffffffff x10:1c00c298 PA:1c00c2a0 +76144014ns 1390955 1c000ed0 00f52623 sw x15, 12(x10) x15:1c00c2a0 x10:1c00c298 PA:1c00c2a4 +76144033ns 1390956 1c000ed2 00f52823 sw x15, 16(x10) x15:1c00c2a0 x10:1c00c298 PA:1c00c2a8 +76144053ns 1390957 1c000ed4 00052023 sw x0, 0(x10) x10:1c00c298 PA:1c00c298 +76144073ns 1390958 1c000ed8 00008067 jalr x0, x1, 0 x1:1c00110c +76144112ns 1390960 1c00110c 02440513 addi x10, x8, 36 x10=1c00c2ac x8:1c00c288 +76144132ns 1390961 1c001110 db7ff0ef jal x1, -586 x1=1c001112 +76144192ns 1390964 1c000ec6 00850793 addi x15, x10, 8 x15=1c00c2b4 x10:1c00c2ac +76144211ns 1390965 1c000eca fff00713 addi x14, x0, -1 x14=ffffffff +76144231ns 1390966 1c000ecc 00f52223 sw x15, 4(x10) x15:1c00c2b4 x10:1c00c2ac PA:1c00c2b0 +76144251ns 1390967 1c000ece 00e52423 sw x14, 8(x10) x14:ffffffff x10:1c00c2ac PA:1c00c2b4 +76144271ns 1390968 1c000ed0 00f52623 sw x15, 12(x10) x15:1c00c2b4 x10:1c00c2ac PA:1c00c2b8 +76144291ns 1390969 1c000ed2 00f52823 sw x15, 16(x10) x15:1c00c2b4 x10:1c00c2ac PA:1c00c2bc +76144310ns 1390970 1c000ed4 00052023 sw x0, 0(x10) x10:1c00c2ac PA:1c00c2ac +76144330ns 1390971 1c000ed8 00008067 jalr x0, x1, 0 x1:1c001112 +76144370ns 1390973 1c001112 fe5ff06f jal x0, -28 +76144429ns 1390976 1c0010f6 731000ef jal x1, 3888 x1=1c0010fa +76144489ns 1390979 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76144528ns 1390981 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +76144548ns 1390982 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76144568ns 1390983 1c002030 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +76144607ns 1390985 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c009db8 PA:1c009dfc +76144647ns 1390987 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +76144667ns 1390988 1c002036 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76144686ns 1390989 1c002038 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76144706ns 1390990 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c009db8 PA:1c009dfc +76144746ns 1390992 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +76144766ns 1390993 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c009db8 PA:1c009dfc +76144785ns 1390994 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c009db8 PA:1c009dfc +76144825ns 1390996 1c002042 00079363 bne x15, x0, 6 x15:00000000 +76144845ns 1390997 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +76144924ns 1391001 1c002048 00008067 jalr x0, x1, 0 x1:1c0010fa +76144964ns 1391003 1c0010fa 00c12083 lw x1, 12(x2) x1=1c00116e x2:1c009b70 PA:1c009b7c +76144983ns 1391004 1c0010fc 00812403 lw x8, 8(x2) x8=1c00c288 x2:1c009b70 PA:1c009b78 +76145003ns 1391005 1c0010fe 00412483 lw x9, 4(x2) x9=00000000 x2:1c009b70 PA:1c009b74 +76145023ns 1391006 1c001100 00100513 addi x10, x0, 1 x10=00000001 +76145043ns 1391007 1c001102 01010113 addi x2, x2, 16 x2=1c009b80 x2:1c009b70 +76145062ns 1391008 1c001104 00008067 jalr x0, x1, 0 x1:1c00116e +76145122ns 1391011 1c00116e 05340623 sb x19, 76(x8) x19:00000002 x8:1c00c288 PA:1c00c2d4 +76145142ns 1391012 1c001172 01c12083 lw x1, 28(x2) x1=1c0011cc x2:1c009b80 PA:1c009b9c +76145161ns 1391013 1c001174 00800533 add x10, x0, x8 x10=1c00c288 x8:1c00c288 +76145181ns 1391014 1c001176 01812403 lw x8, 24(x2) x8=00000000 x2:1c009b80 PA:1c009b98 +76145201ns 1391015 1c001178 01412483 lw x9, 20(x2) x9=1c009190 x2:1c009b80 PA:1c009b94 +76145221ns 1391016 1c00117a 01012903 lw x18, 16(x2) x18=1c009188 x2:1c009b80 PA:1c009b90 +76145241ns 1391017 1c00117c 00c12983 lw x19, 12(x2) x19=1c009000 x2:1c009b80 PA:1c009b8c +76145260ns 1391018 1c00117e 02010113 addi x2, x2, 32 x2=1c009ba0 x2:1c009b80 +76145280ns 1391019 1c001180 00008067 jalr x0, x1, 0 x1:1c0011cc +76145320ns 1391021 1c0011cc 00050263 beq x10, x0, 4 x10:1c00c288 +76145340ns 1391022 1c0011ce 02852c23 sw x8, 56(x10) x8:00000000 x10:1c00c288 PA:1c00c2c0 +76145359ns 1391023 1c0011d0 00c12083 lw x1, 12(x2) x1=1c003454 x2:1c009ba0 PA:1c009bac +76145379ns 1391024 1c0011d2 00812403 lw x8, 8(x2) x8=1c009c98 x2:1c009ba0 PA:1c009ba8 +76145399ns 1391025 1c0011d4 01010113 addi x2, x2, 16 x2=1c009bb0 x2:1c009ba0 +76145419ns 1391026 1c0011d6 00008067 jalr x0, x1, 0 x1:1c003454 +76145458ns 1391028 1c003454 02a42a23 sw x10, 52(x8) x10:1c00c288 x8:1c009c98 PA:1c009ccc +76145478ns 1391029 1c003456 00050b63 beq x10, x0, 22 x10:1c00c288 +76145498ns 1391030 1c003458 1c0037b7 lui x15, 0x1c003000 x15=1c003000 +76145518ns 1391031 1c00345c 40c78793 addi x15, x15, 1036 x15=1c00340c x15:1c003000 +76145537ns 1391032 1c003460 02f42c23 sw x15, 56(x8) x15:1c00340c x8:1c009c98 PA:1c009cd0 +76145557ns 1391033 1c003462 1c0037b7 lui x15, 0x1c003000 x15=1c003000 +76145577ns 1391034 1c003466 3da78793 addi x15, x15, 986 x15=1c0033da x15:1c003000 +76145597ns 1391035 1c00346a 02f42e23 sw x15, 60(x8) x15:1c0033da x8:1c009c98 PA:1c009cd4 +76145617ns 1391036 1c00346c 00100793 addi x15, x0, 1 x15=00000001 +76145636ns 1391037 1c00346e 04f403a3 sb x15, 71(x8) x15:00000001 x8:1c009c98 PA:1c009cdf +76145656ns 1391038 1c003472 fff00793 addi x15, x0, -1 x15=ffffffff +76145676ns 1391039 1c003474 00c12083 lw x1, 12(x2) x1=1c003644 x2:1c009bb0 PA:1c009bbc +76145696ns 1391040 1c003476 04f402a3 sb x15, 69(x8) x15:ffffffff x8:1c009c98 PA:1c009cdd +76145716ns 1391041 1c00347a 00800533 add x10, x0, x8 x10=1c009c98 x8:1c009c98 +76145735ns 1391042 1c00347c 00812403 lw x8, 8(x2) x8=00000000 x2:1c009bb0 PA:1c009bb8 +76145755ns 1391043 1c00347e 01010113 addi x2, x2, 16 x2=1c009bc0 x2:1c009bb0 +76145775ns 1391044 1c003480 00008067 jalr x0, x1, 0 x1:1c003644 +76145815ns 1391046 1c003644 00c12583 lw x11, 12(x2) x11=1c00bec0 x2:1c009bc0 PA:1c009bcc +76145834ns 1391047 1c003646 00001637 lui x12, 0x1000 x12=00001000 +76145854ns 1391048 1c003648 00a00733 add x14, x0, x10 x14=1c009c98 x10:1c009c98 +76145874ns 1391049 1c00364a 00000693 addi x13, x0, 0 x13=00000000 +76145894ns 1391050 1c00364c 80060613 addi x12, x12, -2048 x12=00000800 x12:00001000 +76145914ns 1391051 1c003650 02010513 addi x10, x2, 32 x10=1c009be0 x2:1c009bc0 +76145933ns 1391052 1c003652 cf0ff0ef jal x1, -2832 x1=1c003656 +76145973ns 1391054 1c002b42 00852503 lw x10, 8(x10) x10=1c00b8c0 x10:1c009be0 PA:1c009be8 +76145993ns 1391055 1c002b44 2820006f jal x0, 642 +76146052ns 1391058 1c002dc6 00452e83 lw x29, 4(x10) x29=1c00b890 x10:1c00b8c0 PA:1c00b8c4 +76146072ns 1391059 1c002dca fd010113 addi x2, x2, -48 x2=1c009b90 x2:1c009bc0 +76146092ns 1391060 1c002dcc 02112623 sw x1, 44(x2) x1:1c003656 x2:1c009b90 PA:1c009bbc +76146111ns 1391061 1c002dce 02812423 sw x8, 40(x2) x8:00000000 x2:1c009b90 PA:1c009bb8 +76146131ns 1391062 1c002dd0 00c008b3 add x17, x0, x12 x17=00000800 x12:00000800 +76146151ns 1391063 1c002dd2 00e00633 add x12, x0, x14 x12=1c009c98 x14:1c009c98 +76146171ns 1391064 1c002dd4 00010737 lui x14, 0x10000 x14=00010000 +76146191ns 1391065 1c002dd6 014ec783 lbu x15, 20(x29) x15=00000000 x29:1c00b890 PA:1c00b8a4 +76146210ns 1391066 1c002dda 00852803 lw x16, 8(x10) x16=00000003 x10:1c00b8c0 PA:1c00b8c8 +76146230ns 1391067 1c002dde 01177463 bgeu x14, x17, 8 x14:00010000 x17:00000800 +76146309ns 1391071 1c002de6 30047473 csrrci x8, 0x00000008, 0x300 x8=00000088 +76146389ns 1391075 1c002dea 03954303 lbu x6, 57(x10) x6=00000000 x10:1c00b8c0 PA:1c00b8f9 +76146428ns 1391077 1c002dee 0a030963 beq x6, x0, 178 x6:00000000 +76146488ns 1391080 1c002ea0 00000713 addi x14, x0, 0 x14=00000000 +76146507ns 1391081 1c002ea2 00800e13 addi x28, x0, 8 x28=00000008 +76146527ns 1391082 1c002ea4 f5fff06f jal x0, -162 +76146586ns 1391085 1c002e02 00ceaf03 lw x30, 12(x29) x30=00000000 x29:1c00b890 PA:1c00b89c +76146626ns 1391087 1c002e06 0a0f1863 bne x30, x0, 176 x30:00000000 +76146646ns 1391088 1c002e0a 03854703 lbu x14, 56(x10) x14=00000000 x10:1c00b8c0 PA:1c00b8f8 +76146666ns 1391089 1c002e0e 01052623 sw x16, 12(x10) x16:00000003 x10:1c00b8c0 PA:1c00b8cc +76146685ns 1391090 1c002e12 10000837 lui x16, 0x10000000 x16=10000000 +76146705ns 1391091 1c002e16 01076733 or x14, x14, x16 x14=10000000 x14:00000000 x16:10000000 +76146725ns 1391092 1c002e1a 00e52823 sw x14, 16(x10) x14:10000000 x10:1c00b8c0 PA:1c00b8d0 +76146745ns 1391093 1c002e1c fffe0713 addi x14, x28, -1 x14=00000007 x28:00000008 +76146765ns 1391094 1c002e20 03c8de33 divu x28, x17, x28 x28=00000100 x17:00000800 x28:00000008 +76147378ns 1391125 1c002e24 00c6f813 andi x16, x13, 12 x16=00000000 x13:00000000 +76147398ns 1391126 1c002e28 ffc80813 addi x16, x16, -4 x16=fffffffc x16:00000000 +76147418ns 1391127 1c002e2a 00183813 sltiu x16, x16, 1 x16=00000000 x16:fffffffc +76147438ns 1391128 1c002e2e 01071713 slli x14, x14, 0x10 x14=00070000 x14:00000007 +76147457ns 1391129 1c002e30 01b81813 slli x16, x16, 0x1b x16=00000000 x16:00000000 +76147477ns 1391130 1c002e32 00e86833 or x16, x16, x14 x16=00070000 x16:00000000 x14:00070000 +76147497ns 1391131 1c002e36 60000737 lui x14, 0x60000000 x14=60000000 +76147517ns 1391132 1c002e3a 00e86833 or x16, x16, x14 x16=60070000 x16:00070000 x14:60000000 +76147536ns 1391133 1c002e3e 0036f693 andi x13, x13, 3 x13=00000000 x13:00000000 +76147556ns 1391134 1c002e40 00100713 addi x14, x0, 1 x14=00000001 +76147576ns 1391135 1c002e42 fffe0e13 addi x28, x28, -1 x28=000000ff x28:00000100 +76147596ns 1391136 1c002e44 01c86833 or x16, x16, x28 x16=600700ff x16:60070000 x28:000000ff +76147616ns 1391137 1c002e48 01052a23 sw x16, 20(x10) x16:600700ff x10:1c00b8c0 PA:1c00b8d4 +76147635ns 1391138 1c002e4c 06e68163 beq x13, x14, 98 x13:00000000 x14:00000001 +76147655ns 1391139 1c002e50 900006b7 lui x13, 0x90000000 x13=90000000 +76147675ns 1391140 1c002e54 00168693 addi x13, x13, 1 x13=90000001 x13:90000000 +76147695ns 1391141 1c002e56 00178793 addi x15, x15, 1 x15=00000001 x15:00000000 +76147715ns 1391142 1c002e58 1a102737 lui x14, 0x1a102000 x14=1a102000 +76147734ns 1391143 1c002e5c 00d52c23 sw x13, 24(x10) x13:90000001 x10:1c00b8c0 PA:1c00b8d8 +76147754ns 1391144 1c002e5e 08070713 addi x14, x14, 128 x14=1a102080 x14:1a102000 +76147774ns 1391145 1c002e62 00779793 slli x15, x15, 0x7 x15=00000080 x15:00000001 +76147794ns 1391146 1c002e64 00cea623 sw x12, 12(x29) x12:1c009c98 x29:1c00b890 PA:1c00b89c +76147814ns 1391147 1c002e68 000ea423 sw x0, 8(x29) x29:1c00b890 PA:1c00b898 +76147833ns 1391148 1c002e6c 00e787b3 add x15, x15, x14 x15=1a102100 x15:00000080 x14:1a102080 +76147853ns 1391149 1c002e6e 00c50513 addi x10, x10, 12 x10=1c00b8cc x10:1c00b8c0 +76147873ns 1391150 1c002e70 00078793 addi x15, x15, 0 x15=1a102100 x15:1a102100 +76147893ns 1391151 1c002e74 02a7a023 sw x10, 32(x15) x10:1c00b8cc x15:1a102100 PA:1a102120 +76147913ns 1391152 1c002e76 01000713 addi x14, x0, 16 x14=00000010 +76147972ns 1391155 1c002e78 02e7a223 sw x14, 36(x15) x14:00000010 x15:1a102100 PA:1a102124 +76147992ns 1391156 1c002e7a 01400713 addi x14, x0, 20 x14=00000014 +76148051ns 1391159 1c002e7c 02e7a423 sw x14, 40(x15) x14:00000014 x15:1a102100 PA:1a102128 +76148071ns 1391160 1c002e7e 00131313 slli x6, x6, 0x1 x6=00000000 x6:00000000 +76148130ns 1391163 1c002e80 01036313 ori x6, x6, 16 x6=00000010 x6:00000000 +76148150ns 1391164 1c002e84 00b7a823 sw x11, 16(x15) x11:1c00bec0 x15:1a102100 PA:1a102110 +76148170ns 1391165 1c002e86 00788893 addi x17, x17, 7 x17=00000807 x17:00000800 +76148229ns 1391168 1c002e88 0038d893 srli x17, x17, 0x3 x17=00000100 x17:00000807 +76148249ns 1391169 1c002e8c 0117aa23 sw x17, 20(x15) x17:00000100 x15:1a102100 PA:1a102114 +76148269ns 1391170 1c002e90 0067ac23 sw x6, 24(x15) x6:00000010 x15:1a102100 PA:1a102118 +76148348ns 1391174 1c002e94 00800533 add x10, x0, x8 x10=00000088 x8:00000088 +76148407ns 1391177 1c002e96 02812403 lw x8, 40(x2) x8=00000000 x2:1c009b90 PA:1c009bb8 +76148427ns 1391178 1c002e98 02c12083 lw x1, 44(x2) x1=1c003656 x2:1c009b90 PA:1c009bbc +76148447ns 1391179 1c002e9a 03010113 addi x2, x2, 48 x2=1c009bc0 x2:1c009b90 +76148467ns 1391180 1c002e9c d1dff06f jal x0, -740 +76148506ns 1391182 1c002bb8 30051073 csrrw x0, x10, 0x300 x10:00000088 +76148585ns 1391186 1c002bbc 00008067 jalr x0, x1, 0 x1:1c003656 +76148625ns 1391188 1c003656 00500793 addi x15, x0, 5 x15=00000005 +76148645ns 1391189 1c003658 00f10b23 sb x15, 22(x2) x15:00000005 x2:1c009bc0 PA:1c009bd6 +76148665ns 1391190 1c00365c fff00793 addi x15, x0, -1 x15=ffffffff +76148684ns 1391191 1c00365e 00f10ba3 sb x15, 23(x2) x15:ffffffff x2:1c009bc0 PA:1c009bd7 +76148704ns 1391192 1c003662 00100693 addi x13, x0, 1 x13=00000001 +76148724ns 1391193 1c003664 00800613 addi x12, x0, 8 x12=00000008 +76148744ns 1391194 1c003666 01610593 addi x11, x2, 22 x11=1c009bd6 x2:1c009bc0 +76148764ns 1391195 1c00366a 02010513 addi x10, x2, 32 x10=1c009be0 x2:1c009bc0 +76148783ns 1391196 1c00366c cdaff0ef jal x1, -2854 x1=1c003670 +76148823ns 1391198 1c002b46 f9010113 addi x2, x2, -112 x2=1c009b50 x2:1c009bc0 +76148843ns 1391199 1c002b48 06812423 sw x8, 104(x2) x8:00000000 x2:1c009b50 PA:1c009bb8 +76148882ns 1391201 1c002b4a 00a00433 add x8, x0, x10 x8=1c009be0 x10:1c009be0 +76148902ns 1391202 1c002b4c 01810513 addi x10, x2, 24 x10=1c009b68 x2:1c009b50 +76148922ns 1391203 1c002b4e 06112623 sw x1, 108(x2) x1:1c003670 x2:1c009b50 PA:1c009bbc +76148942ns 1391204 1c002b50 00b12623 sw x11, 12(x2) x11:1c009bd6 x2:1c009b50 PA:1c009b5c +76148962ns 1391205 1c002b52 00c12423 sw x12, 8(x2) x12:00000008 x2:1c009b50 PA:1c009b58 +76148981ns 1391206 1c002b54 00d12223 sw x13, 4(x2) x13:00000001 x2:1c009b50 PA:1c009b54 +76149001ns 1391207 1c002b56 0e5000ef jal x1, 2276 x1=1c002b5a +76149041ns 1391209 1c00343a ff010113 addi x2, x2, -16 x2=1c009b40 x2:1c009b50 +76149060ns 1391210 1c00343c 00812423 sw x8, 8(x2) x8:1c009be0 x2:1c009b40 PA:1c009b48 +76149080ns 1391211 1c00343e 00112623 sw x1, 12(x2) x1:1c002b5a x2:1c009b40 PA:1c009b4c +76149100ns 1391212 1c003440 00100793 addi x15, x0, 1 x15=00000001 +76149120ns 1391213 1c003442 00a00433 add x8, x0, x10 x8=1c009b68 x10:1c009b68 +76149140ns 1391214 1c003444 00f52823 sw x15, 16(x10) x15:00000001 x10:1c009b68 PA:1c009b78 +76149159ns 1391215 1c003446 04050223 sb x0, 68(x10) x10:1c009b68 PA:1c009bac +76149179ns 1391216 1c00344a 00000593 addi x11, x0, 0 x11=00000000 +76149199ns 1391217 1c00344c 0ff00513 addi x10, x0, 255 x10=000000ff +76149219ns 1391218 1c003450 d33fd0ef jal x1, -8910 x1=1c003454 +76149258ns 1391220 1c001182 ff010113 addi x2, x2, -16 x2=1c009b30 x2:1c009b40 +76149278ns 1391221 1c001184 00112623 sw x1, 12(x2) x1:1c003454 x2:1c009b30 PA:1c009b3c +76149298ns 1391222 1c001186 00812423 sw x8, 8(x2) x8:1c009b68 x2:1c009b30 PA:1c009b38 +76149318ns 1391223 1c001188 02051163 bne x10, x0, 34 x10:000000ff +76149377ns 1391226 1c0011aa 00b00433 add x8, x0, x11 x8=00000000 x11:00000000 +76149397ns 1391227 1c0011ac 00b57d63 bgeu x10, x11, 26 x10:000000ff x11:00000000 +76149456ns 1391230 1c0011c6 00200613 addi x12, x0, 2 x12=00000002 +76149476ns 1391231 1c0011c8 00000593 addi x11, x0, 0 x11=00000000 +76149496ns 1391232 1c0011ca f4bff0ef jal x1, -182 x1=1c0011cc +76149535ns 1391234 1c001114 fe010113 addi x2, x2, -32 x2=1c009b10 x2:1c009b30 +76149555ns 1391235 1c001116 00112e23 sw x1, 28(x2) x1:1c0011cc x2:1c009b10 PA:1c009b2c +76149575ns 1391236 1c001118 00812c23 sw x8, 24(x2) x8:00000000 x2:1c009b10 PA:1c009b28 +76149595ns 1391237 1c00111a 00912a23 sw x9, 20(x2) x9:1c009190 x2:1c009b10 PA:1c009b24 +76149615ns 1391238 1c00111c 01212823 sw x18, 16(x2) x18:1c009188 x2:1c009b10 PA:1c009b20 +76149634ns 1391239 1c00111e 01312623 sw x19, 12(x2) x19:1c009000 x2:1c009b10 PA:1c009b1c +76149654ns 1391240 1c001120 02051163 bne x10, x0, 34 x10:000000ff +76149714ns 1391243 1c001142 00a00933 add x18, x0, x10 x18=000000ff x10:000000ff +76149733ns 1391244 1c001144 02b50533 mul x10, x10, x11 x10=00000000 x10:000000ff x11:00000000 +76149753ns 1391245 1c001148 00b004b3 add x9, x0, x11 x9=00000000 x11:00000000 +76149773ns 1391246 1c00114a 00c009b3 add x19, x0, x12 x19=00000002 x12:00000002 +76149793ns 1391247 1c00114c 05050513 addi x10, x10, 80 x10=00000050 x10:00000000 +76149813ns 1391248 1c001150 01b010ef jal x1, 6170 x1=1c001154 +76149852ns 1391250 1c00296a fe010113 addi x2, x2, -32 x2=1c009af0 x2:1c009b10 +76149872ns 1391251 1c00296c 00112e23 sw x1, 28(x2) x1:1c001154 x2:1c009af0 PA:1c009b0c +76149892ns 1391252 1c00296e 00812c23 sw x8, 24(x2) x8:00000000 x2:1c009af0 PA:1c009b08 +76149912ns 1391253 1c002970 00a12623 sw x10, 12(x2) x10:00000050 x2:1c009af0 PA:1c009afc +76149931ns 1391254 1c002972 8a4ff0ef jal x1, -3932 x1=1c002976 +76149991ns 1391257 1c001a16 d6818793 addi x15, x3, -664 x15=1c009144 x3:1c0093dc +76150010ns 1391258 1c001a1a 0007a703 lw x14, 0(x15) x14=00000000 x15:1c009144 PA:1c009144 +76150050ns 1391260 1c001a1c 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76150070ns 1391261 1c001a1e 00e7a023 sw x14, 0(x15) x14:00000001 x15:1c009144 PA:1c009144 +76150090ns 1391262 1c001a20 00008067 jalr x0, x1, 0 x1:1c002976 +76150129ns 1391264 1c002976 00c12503 lw x10, 12(x2) x10=00000050 x2:1c009af0 PA:1c009afc +76150149ns 1391265 1c002978 791000ef jal x1, 3984 x1=1c00297c +76150189ns 1391267 1c003908 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76150208ns 1391268 1c00390c 00a005b3 add x11, x0, x10 x11=00000050 x10:00000050 +76150228ns 1391269 1c00390e c447a503 lw x10, -956(x15) x10=1c009e10 x15:1c009000 PA:1c008c44 +76150248ns 1391270 1c003912 0b60006f jal x0, 182 +76150288ns 1391272 1c0039c8 fe010113 addi x2, x2, -32 x2=1c009ad0 x2:1c009af0 +76150307ns 1391273 1c0039ca 00912a23 sw x9, 20(x2) x9:00000000 x2:1c009ad0 PA:1c009ae4 +76150327ns 1391274 1c0039cc 00358493 addi x9, x11, 3 x9=00000053 x11:00000050 +76150347ns 1391275 1c0039d0 ffc4f493 andi x9, x9, -4 x9=00000050 x9:00000053 +76150367ns 1391276 1c0039d2 01212823 sw x18, 16(x2) x18:000000ff x2:1c009ad0 PA:1c009ae0 +76150406ns 1391278 1c0039d4 00112e23 sw x1, 28(x2) x1:1c00297c x2:1c009ad0 PA:1c009aec +76150426ns 1391279 1c0039d6 00812c23 sw x8, 24(x2) x8:00000000 x2:1c009ad0 PA:1c009ae8 +76150446ns 1391280 1c0039d8 01312623 sw x19, 12(x2) x19:00000002 x2:1c009ad0 PA:1c009adc +76150466ns 1391281 1c0039da 00848493 addi x9, x9, 8 x9=00000058 x9:00000050 +76150485ns 1391282 1c0039dc 00c00793 addi x15, x0, 12 x15=0000000c +76150505ns 1391283 1c0039de 00a00933 add x18, x0, x10 x18=1c009e10 x10:1c009e10 +76150525ns 1391284 1c0039e0 04f4f363 bgeu x9, x15, 70 x9:00000058 x15:0000000c +76150604ns 1391288 1c003a26 fc04d0e3 bge x9, x0, -64 x9:00000058 +76150683ns 1391292 1c0039e6 04b4e263 bltu x9, x11, 68 x9:00000058 x11:00000050 +76150703ns 1391293 1c0039ea 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +76150723ns 1391294 1c0039ec 87aff0ef jal x1, -3974 x1=1c0039f0 +76150782ns 1391297 1c002a66 fb1fe06f jal x0, -4176 +76150842ns 1391300 1c001a16 d6818793 addi x15, x3, -664 x15=1c009144 x3:1c0093dc +76150862ns 1391301 1c001a1a 0007a703 lw x14, 0(x15) x14=00000001 x15:1c009144 PA:1c009144 +76150901ns 1391303 1c001a1c 00170713 addi x14, x14, 1 x14=00000002 x14:00000001 +76150921ns 1391304 1c001a1e 00e7a023 sw x14, 0(x15) x14:00000002 x15:1c009144 PA:1c009144 +76150941ns 1391305 1c001a20 00008067 jalr x0, x1, 0 x1:1c0039f0 +76150980ns 1391307 1c0039f0 db81a703 lw x14, -584(x3) x14=00000000 x3:1c0093dc PA:1c009194 +76151000ns 1391308 1c0039f4 db818693 addi x13, x3, -584 x13=1c009194 x3:1c0093dc +76151020ns 1391309 1c0039f8 00e00433 add x8, x0, x14 x8=00000000 x14:00000000 +76151040ns 1391310 1c0039fa 04041363 bne x8, x0, 70 x8:00000000 +76151059ns 1391311 1c0039fc dbc18413 addi x8, x3, -580 x8=1c009198 x3:1c0093dc +76151079ns 1391312 1c003a00 00042783 lw x15, 0(x8) x15=1c0091b0 x8:1c009198 PA:1c009198 +76151119ns 1391314 1c003a02 00079563 bne x15, x0, 10 x15:1c0091b0 +76151178ns 1391317 1c003a0c 009005b3 add x11, x0, x9 x11=00000058 x9:00000058 +76151198ns 1391318 1c003a0e 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +76151218ns 1391319 1c003a10 5cc000ef jal x1, 1484 x1=1c003a12 +76151257ns 1391321 1c003fdc ff010113 addi x2, x2, -16 x2=1c009ac0 x2:1c009ad0 +76151277ns 1391322 1c003fde 00812423 sw x8, 8(x2) x8:1c009198 x2:1c009ac0 PA:1c009ac8 +76151297ns 1391323 1c003fe0 00912223 sw x9, 4(x2) x9:00000058 x2:1c009ac0 PA:1c009ac4 +76151317ns 1391324 1c003fe2 00a00433 add x8, x0, x10 x8=1c009e10 x10:1c009e10 +76151337ns 1391325 1c003fe4 00b00533 add x10, x0, x11 x10=00000058 x11:00000058 +76151356ns 1391326 1c003fe6 00112623 sw x1, 12(x2) x1:1c003a12 x2:1c009ac0 PA:1c009acc +76151376ns 1391327 1c003fe8 dc01a023 sw x0, -576(x3) x3:1c0093dc PA:1c00919c +76151396ns 1391328 1c003fec a53fe0ef jal x1, -5550 x1=1c003ff0 +76151455ns 1391331 1c002a3e 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76151475ns 1391332 1c002a42 c3c78793 addi x15, x15, -964 x15=1c008c3c x15:1c009000 +76151495ns 1391333 1c002a46 00a00733 add x14, x0, x10 x14=00000058 x10:00000058 +76151515ns 1391334 1c002a48 0007a503 lw x10, 0(x15) x10=1c00c2dc x15:1c008c3c PA:1c008c3c +76151534ns 1391335 1c002a4a 1c0196b7 lui x13, 0x1c019000 x13=1c019000 +76151554ns 1391336 1c002a4e 1b068693 addi x13, x13, 432 x13=1c0191b0 x13:1c019000 +76151574ns 1391337 1c002a52 00a70733 add x14, x14, x10 x14=1c00c334 x14:00000058 x10:1c00c2dc +76151594ns 1391338 1c002a54 00d76763 bltu x14, x13, 14 x14:1c00c334 x13:1c0191b0 +76151653ns 1391341 1c002a62 00e7a023 sw x14, 0(x15) x14:1c00c334 x15:1c008c3c PA:1c008c3c +76151673ns 1391342 1c002a64 00008067 jalr x0, x1, 0 x1:1c003ff0 +76151713ns 1391344 1c003ff0 fff00793 addi x15, x0, -1 x15=ffffffff +76151732ns 1391345 1c003ff2 00f51663 bne x10, x15, 12 x10:1c00c2dc x15:ffffffff +76151792ns 1391348 1c003ffe 00c12083 lw x1, 12(x2) x1=1c003a12 x2:1c009ac0 PA:1c009acc +76151812ns 1391349 1c004000 00812403 lw x8, 8(x2) x8=1c009198 x2:1c009ac0 PA:1c009ac8 +76151831ns 1391350 1c004002 00412483 lw x9, 4(x2) x9=00000058 x2:1c009ac0 PA:1c009ac4 +76151851ns 1391351 1c004004 01010113 addi x2, x2, 16 x2=1c009ad0 x2:1c009ac0 +76151871ns 1391352 1c004006 00008067 jalr x0, x1, 0 x1:1c003a12 +76151911ns 1391354 1c003a12 fff00993 addi x19, x0, -1 x19=ffffffff +76151930ns 1391355 1c003a14 07351a63 bne x10, x19, 116 x10:1c00c2dc x19:ffffffff +76151990ns 1391358 1c003a88 00350413 addi x8, x10, 3 x8=1c00c2df x10:1c00c2dc +76152009ns 1391359 1c003a8c ffc47413 andi x8, x8, -4 x8=1c00c2dc x8:1c00c2df +76152029ns 1391360 1c003a8e fc8502e3 beq x10, x8, -60 x10:1c00c2dc x8:1c00c2dc +76152089ns 1391363 1c003a52 00942023 sw x9, 0(x8) x9:00000058 x8:1c00c2dc PA:1c00c2dc +76152108ns 1391364 1c003a54 00a0006f jal x0, 10 +76152148ns 1391366 1c003a5e 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +76152168ns 1391367 1c003a60 80aff0ef jal x1, -4086 x1=1c003a64 +76152227ns 1391370 1c002a6a 8e3ff06f jal x0, -1822 +76152267ns 1391372 1c00234c fc010113 addi x2, x2, -64 x2=1c009a90 x2:1c009ad0 +76152287ns 1391373 1c00234e 02812c23 sw x8, 56(x2) x8:1c00c2dc x2:1c009a90 PA:1c009ac8 +76152306ns 1391374 1c002350 d6818413 addi x8, x3, -664 x8=1c009144 x3:1c0093dc +76152326ns 1391375 1c002354 00042783 lw x15, 0(x8) x15=00000002 x8:1c009144 PA:1c009144 +76152346ns 1391376 1c002356 02112e23 sw x1, 60(x2) x1:1c003a64 x2:1c009a90 PA:1c009acc +76152366ns 1391377 1c002358 02912a23 sw x9, 52(x2) x9:00000058 x2:1c009a90 PA:1c009ac4 +76152386ns 1391378 1c00235a 03212823 sw x18, 48(x2) x18:1c009e10 x2:1c009a90 PA:1c009ac0 +76152405ns 1391379 1c00235c 03312623 sw x19, 44(x2) x19:ffffffff x2:1c009a90 PA:1c009abc +76152425ns 1391380 1c00235e 03412423 sw x20, 40(x2) x20:1c00918c x2:1c009a90 PA:1c009ab8 +76152445ns 1391381 1c002360 03512223 sw x21, 36(x2) x21:a5a5a5a5 x2:1c009a90 PA:1c009ab4 +76152465ns 1391382 1c002362 03612023 sw x22, 32(x2) x22:a5a5a5a5 x2:1c009a90 PA:1c009ab0 +76152484ns 1391383 1c002364 01712e23 sw x23, 28(x2) x23:a5a5a5a5 x2:1c009a90 PA:1c009aac +76152504ns 1391384 1c002366 02079263 bne x15, x0, 36 x15:00000002 +76152583ns 1391388 1c00238a c83ff0ef jal x1, -894 x1=1c00238e +76152623ns 1391390 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +76152702ns 1391394 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76152742ns 1391396 1c002014 00078863 beq x15, x0, 16 x15:00000001 +76152762ns 1391397 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76152781ns 1391398 1c00201a 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76152801ns 1391399 1c00201c 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76152821ns 1391400 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c009db8 PA:1c009dfc +76152861ns 1391402 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76152880ns 1391403 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c009db8 PA:1c009dfc +76152900ns 1391404 1c002024 00008067 jalr x0, x1, 0 x1:1c00238e +76152940ns 1391406 1c00238e 00042783 lw x15, 0(x8) x15=00000002 x8:1c009144 PA:1c009144 +76152979ns 1391408 1c002390 fff78793 addi x15, x15, -1 x15=00000001 x15:00000002 +76152999ns 1391409 1c002392 00f42023 sw x15, 0(x8) x15:00000001 x8:1c009144 PA:1c009144 +76153019ns 1391410 1c002394 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +76153058ns 1391412 1c002396 02078163 beq x15, x0, 34 x15:00000001 +76153078ns 1391413 1c002398 00000513 addi x10, x0, 0 x10=00000000 +76153098ns 1391414 1c00239a 00a12623 sw x10, 12(x2) x10:00000000 x2:1c009a90 PA:1c009a9c +76153118ns 1391415 1c00239c c8bff0ef jal x1, -886 x1=1c0023a0 +76153177ns 1391418 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76153217ns 1391420 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +76153237ns 1391421 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76153256ns 1391422 1c002030 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +76153296ns 1391424 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c009db8 PA:1c009dfc +76153336ns 1391426 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +76153355ns 1391427 1c002036 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76153375ns 1391428 1c002038 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76153395ns 1391429 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c009db8 PA:1c009dfc +76153435ns 1391431 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +76153454ns 1391432 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c009db8 PA:1c009dfc +76153474ns 1391433 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c009db8 PA:1c009dfc +76153514ns 1391435 1c002042 00079363 bne x15, x0, 6 x15:00000000 +76153533ns 1391436 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +76153613ns 1391440 1c002048 00008067 jalr x0, x1, 0 x1:1c0023a0 +76153652ns 1391442 1c0023a0 03c12083 lw x1, 60(x2) x1=1c003a64 x2:1c009a90 PA:1c009acc +76153672ns 1391443 1c0023a2 03812403 lw x8, 56(x2) x8=1c00c2dc x2:1c009a90 PA:1c009ac8 +76153692ns 1391444 1c0023a4 00c12503 lw x10, 12(x2) x10=00000000 x2:1c009a90 PA:1c009a9c +76153712ns 1391445 1c0023a6 03412483 lw x9, 52(x2) x9=00000058 x2:1c009a90 PA:1c009ac4 +76153731ns 1391446 1c0023a8 03012903 lw x18, 48(x2) x18=1c009e10 x2:1c009a90 PA:1c009ac0 +76153751ns 1391447 1c0023aa 02c12983 lw x19, 44(x2) x19=ffffffff x2:1c009a90 PA:1c009abc +76153771ns 1391448 1c0023ac 02812a03 lw x20, 40(x2) x20=1c00918c x2:1c009a90 PA:1c009ab8 +76153791ns 1391449 1c0023ae 02412a83 lw x21, 36(x2) x21=a5a5a5a5 x2:1c009a90 PA:1c009ab4 +76153811ns 1391450 1c0023b0 02012b03 lw x22, 32(x2) x22=a5a5a5a5 x2:1c009a90 PA:1c009ab0 +76153830ns 1391451 1c0023b2 01c12b83 lw x23, 28(x2) x23=a5a5a5a5 x2:1c009a90 PA:1c009aac +76153850ns 1391452 1c0023b4 04010113 addi x2, x2, 64 x2=1c009ad0 x2:1c009a90 +76153870ns 1391453 1c0023b6 00008067 jalr x0, x1, 0 x1:1c003a64 +76153910ns 1391455 1c003a64 00b40513 addi x10, x8, 11 x10=1c00c2e7 x8:1c00c2dc +76153929ns 1391456 1c003a68 00440793 addi x15, x8, 4 x15=1c00c2e0 x8:1c00c2dc +76153949ns 1391457 1c003a6c ff857513 andi x10, x10, -8 x10=1c00c2e0 x10:1c00c2e7 +76153969ns 1391458 1c003a6e 40f50733 sub x14, x10, x15 x14=00000000 x10:1c00c2e0 x15:1c00c2e0 +76153989ns 1391459 1c003a72 fcf500e3 beq x10, x15, -64 x10:1c00c2e0 x15:1c00c2e0 +76154048ns 1391462 1c003a32 01c12083 lw x1, 28(x2) x1=1c00297c x2:1c009ad0 PA:1c009aec +76154068ns 1391463 1c003a34 01812403 lw x8, 24(x2) x8=00000000 x2:1c009ad0 PA:1c009ae8 +76154088ns 1391464 1c003a36 01412483 lw x9, 20(x2) x9=00000000 x2:1c009ad0 PA:1c009ae4 +76154107ns 1391465 1c003a38 01012903 lw x18, 16(x2) x18=000000ff x2:1c009ad0 PA:1c009ae0 +76154127ns 1391466 1c003a3a 00c12983 lw x19, 12(x2) x19=00000002 x2:1c009ad0 PA:1c009adc +76154147ns 1391467 1c003a3c 02010113 addi x2, x2, 32 x2=1c009af0 x2:1c009ad0 +76154167ns 1391468 1c003a3e 00008067 jalr x0, x1, 0 x1:1c00297c +76154206ns 1391470 1c00297c 00a00433 add x8, x0, x10 x8=1c00c2e0 x10:1c00c2e0 +76154226ns 1391471 1c00297e 9cfff0ef jal x1, -1586 x1=1c002982 +76154266ns 1391473 1c00234c fc010113 addi x2, x2, -64 x2=1c009ab0 x2:1c009af0 +76154286ns 1391474 1c00234e 02812c23 sw x8, 56(x2) x8:1c00c2e0 x2:1c009ab0 PA:1c009ae8 +76154305ns 1391475 1c002350 d6818413 addi x8, x3, -664 x8=1c009144 x3:1c0093dc +76154325ns 1391476 1c002354 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +76154345ns 1391477 1c002356 02112e23 sw x1, 60(x2) x1:1c002982 x2:1c009ab0 PA:1c009aec +76154365ns 1391478 1c002358 02912a23 sw x9, 52(x2) x9:00000000 x2:1c009ab0 PA:1c009ae4 +76154385ns 1391479 1c00235a 03212823 sw x18, 48(x2) x18:000000ff x2:1c009ab0 PA:1c009ae0 +76154404ns 1391480 1c00235c 03312623 sw x19, 44(x2) x19:00000002 x2:1c009ab0 PA:1c009adc +76154424ns 1391481 1c00235e 03412423 sw x20, 40(x2) x20:1c00918c x2:1c009ab0 PA:1c009ad8 +76154444ns 1391482 1c002360 03512223 sw x21, 36(x2) x21:a5a5a5a5 x2:1c009ab0 PA:1c009ad4 +76154464ns 1391483 1c002362 03612023 sw x22, 32(x2) x22:a5a5a5a5 x2:1c009ab0 PA:1c009ad0 +76154483ns 1391484 1c002364 01712e23 sw x23, 28(x2) x23:a5a5a5a5 x2:1c009ab0 PA:1c009acc +76154503ns 1391485 1c002366 02079263 bne x15, x0, 36 x15:00000001 +76154582ns 1391489 1c00238a c83ff0ef jal x1, -894 x1=1c00238e +76154622ns 1391491 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +76154701ns 1391495 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76154741ns 1391497 1c002014 00078863 beq x15, x0, 16 x15:00000001 +76154761ns 1391498 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76154780ns 1391499 1c00201a 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76154800ns 1391500 1c00201c 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76154820ns 1391501 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c009db8 PA:1c009dfc +76154860ns 1391503 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76154879ns 1391504 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c009db8 PA:1c009dfc +76154899ns 1391505 1c002024 00008067 jalr x0, x1, 0 x1:1c00238e +76154939ns 1391507 1c00238e 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +76154978ns 1391509 1c002390 fff78793 addi x15, x15, -1 x15=00000000 x15:00000001 +76154998ns 1391510 1c002392 00f42023 sw x15, 0(x8) x15:00000000 x8:1c009144 PA:1c009144 +76155018ns 1391511 1c002394 00042783 lw x15, 0(x8) x15=00000000 x8:1c009144 PA:1c009144 +76155057ns 1391513 1c002396 02078163 beq x15, x0, 34 x15:00000000 +76155117ns 1391516 1c0023b8 d601a783 lw x15, -672(x3) x15=00000003 x3:1c0093dc PA:1c00913c +76155156ns 1391518 1c0023bc fc078ee3 beq x15, x0, -36 x15:00000003 +76155176ns 1391519 1c0023be 1c009937 lui x18, 0x1c009000 x18=1c009000 +76155196ns 1391520 1c0023c2 00000413 addi x8, x0, 0 x8=00000000 +76155216ns 1391521 1c0023c4 93818493 addi x9, x3, -1736 x9=1c008d14 x3:1c0093dc +76155236ns 1391522 1c0023c8 00100993 addi x19, x0, 1 x19=00000001 +76155255ns 1391523 1c0023ca c8890913 addi x18, x18, -888 x18=1c008c88 x18:1c009000 +76155275ns 1391524 1c0023ce 01400a93 addi x21, x0, 20 x21=00000014 +76155295ns 1391525 1c0023d0 04c0006f jal x0, 76 +76155335ns 1391527 1c00241c 0004a783 lw x15, 0(x9) x15=00000000 x9:1c008d14 PA:1c008d14 +76155374ns 1391529 1c00241e fa079ae3 bne x15, x0, -76 x15:00000000 +76155394ns 1391530 1c002420 00040363 beq x8, x0, 6 x8:00000000 +76155473ns 1391534 1c002426 d8018713 addi x14, x3, -640 x14=1c00915c x3:1c0093dc +76155493ns 1391535 1c00242a 00072483 lw x9, 0(x14) x9=00000000 x14:1c00915c PA:1c00915c +76155513ns 1391536 1c00242c d8018413 addi x8, x3, -640 x8=1c00915c x3:1c0093dc +76155532ns 1391537 1c002430 00048d63 beq x9, x0, 26 x9:00000000 +76155612ns 1391541 1c00244a d8c1a783 lw x15, -628(x3) x15=00000000 x3:1c0093dc PA:1c009168 +76155651ns 1391543 1c00244e f40785e3 beq x15, x0, -182 x15:00000000 +76155711ns 1391546 1c002398 00000513 addi x10, x0, 0 x10=00000000 +76155730ns 1391547 1c00239a 00a12623 sw x10, 12(x2) x10:00000000 x2:1c009ab0 PA:1c009abc +76155750ns 1391548 1c00239c c8bff0ef jal x1, -886 x1=1c0023a0 +76155810ns 1391551 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76155849ns 1391553 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +76155869ns 1391554 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76155889ns 1391555 1c002030 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +76155928ns 1391557 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c009db8 PA:1c009dfc +76155968ns 1391559 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +76155988ns 1391560 1c002036 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76156007ns 1391561 1c002038 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76156027ns 1391562 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c009db8 PA:1c009dfc +76156067ns 1391564 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +76156087ns 1391565 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c009db8 PA:1c009dfc +76156106ns 1391566 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c009db8 PA:1c009dfc +76156146ns 1391568 1c002042 00079363 bne x15, x0, 6 x15:00000000 +76156166ns 1391569 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +76156245ns 1391573 1c002048 00008067 jalr x0, x1, 0 x1:1c0023a0 +76156285ns 1391575 1c0023a0 03c12083 lw x1, 60(x2) x1=1c002982 x2:1c009ab0 PA:1c009aec +76156304ns 1391576 1c0023a2 03812403 lw x8, 56(x2) x8=1c00c2e0 x2:1c009ab0 PA:1c009ae8 +76156324ns 1391577 1c0023a4 00c12503 lw x10, 12(x2) x10=00000000 x2:1c009ab0 PA:1c009abc +76156344ns 1391578 1c0023a6 03412483 lw x9, 52(x2) x9=00000000 x2:1c009ab0 PA:1c009ae4 +76156364ns 1391579 1c0023a8 03012903 lw x18, 48(x2) x18=000000ff x2:1c009ab0 PA:1c009ae0 +76156384ns 1391580 1c0023aa 02c12983 lw x19, 44(x2) x19=00000002 x2:1c009ab0 PA:1c009adc +76156403ns 1391581 1c0023ac 02812a03 lw x20, 40(x2) x20=1c00918c x2:1c009ab0 PA:1c009ad8 +76156423ns 1391582 1c0023ae 02412a83 lw x21, 36(x2) x21=a5a5a5a5 x2:1c009ab0 PA:1c009ad4 +76156443ns 1391583 1c0023b0 02012b03 lw x22, 32(x2) x22=a5a5a5a5 x2:1c009ab0 PA:1c009ad0 +76156463ns 1391584 1c0023b2 01c12b83 lw x23, 28(x2) x23=a5a5a5a5 x2:1c009ab0 PA:1c009acc +76156482ns 1391585 1c0023b4 04010113 addi x2, x2, 64 x2=1c009af0 x2:1c009ab0 +76156502ns 1391586 1c0023b6 00008067 jalr x0, x1, 0 x1:1c002982 +76156542ns 1391588 1c002982 00041363 bne x8, x0, 6 x8:1c00c2e0 +76156601ns 1391591 1c002988 01c12083 lw x1, 28(x2) x1=1c001154 x2:1c009af0 PA:1c009b0c +76156621ns 1391592 1c00298a 00800533 add x10, x0, x8 x10=1c00c2e0 x8:1c00c2e0 +76156641ns 1391593 1c00298c 01812403 lw x8, 24(x2) x8=00000000 x2:1c009af0 PA:1c009b08 +76156661ns 1391594 1c00298e 02010113 addi x2, x2, 32 x2=1c009b10 x2:1c009af0 +76156680ns 1391595 1c002990 00008067 jalr x0, x1, 0 x1:1c001154 +76156720ns 1391597 1c001154 00a00433 add x8, x0, x10 x8=1c00c2e0 x10:1c00c2e0 +76156740ns 1391598 1c001156 00050e63 beq x10, x0, 28 x10:1c00c2e0 +76156760ns 1391599 1c001158 00a007b3 add x15, x0, x10 x15=1c00c2e0 x10:1c00c2e0 +76156779ns 1391600 1c00115a 00048363 beq x9, x0, 6 x9:00000000 +76156839ns 1391603 1c001160 00f42023 sw x15, 0(x8) x15:1c00c2e0 x8:1c00c2e0 PA:1c00c2e0 +76156859ns 1391604 1c001162 03242e23 sw x18, 60(x8) x18:000000ff x8:1c00c2e0 PA:1c00c31c +76156878ns 1391605 1c001166 04942023 sw x9, 64(x8) x9:00000000 x8:1c00c2e0 PA:1c00c320 +76156898ns 1391606 1c001168 00100593 addi x11, x0, 1 x11=00000001 +76156918ns 1391607 1c00116a 00800533 add x10, x0, x8 x10=1c00c2e0 x8:1c00c2e0 +76156938ns 1391608 1c00116c f1fff0ef jal x1, -226 x1=1c00116e +76156977ns 1391610 1c00108a ff010113 addi x2, x2, -16 x2=1c009b00 x2:1c009b10 +76156997ns 1391611 1c00108c 00112623 sw x1, 12(x2) x1:1c00116e x2:1c009b00 PA:1c009b0c +76157017ns 1391612 1c00108e 00812423 sw x8, 8(x2) x8:1c00c2e0 x2:1c009b00 PA:1c009b08 +76157037ns 1391613 1c001090 00912223 sw x9, 4(x2) x9:00000000 x2:1c009b00 PA:1c009b04 +76157056ns 1391614 1c001092 02051163 bne x10, x0, 34 x10:1c00c2e0 +76157116ns 1391617 1c0010b4 00a00433 add x8, x0, x10 x8=1c00c2e0 x10:1c00c2e0 +76157136ns 1391618 1c0010b6 00b004b3 add x9, x0, x11 x9=00000001 x11:00000001 +76157155ns 1391619 1c0010b8 755000ef jal x1, 3924 x1=1c0010bc +76157195ns 1391621 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +76157274ns 1391625 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76157314ns 1391627 1c002014 00078863 beq x15, x0, 16 x15:00000001 +76157334ns 1391628 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76157353ns 1391629 1c00201a 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76157373ns 1391630 1c00201c 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76157393ns 1391631 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c009db8 PA:1c009dfc +76157432ns 1391633 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76157452ns 1391634 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c009db8 PA:1c009dfc +76157472ns 1391635 1c002024 00008067 jalr x0, x1, 0 x1:1c0010bc +76157512ns 1391637 1c0010bc 04042683 lw x13, 64(x8) x13=00000000 x8:1c00c2e0 PA:1c00c320 +76157531ns 1391638 1c0010be 03c42783 lw x15, 60(x8) x15=000000ff x8:1c00c2e0 PA:1c00c31c +76157551ns 1391639 1c0010c0 00042703 lw x14, 0(x8) x14=1c00c2e0 x8:1c00c2e0 PA:1c00c2e0 +76157571ns 1391640 1c0010c2 02042c23 sw x0, 56(x8) x8:1c00c2e0 PA:1c00c318 +76157591ns 1391641 1c0010c6 02f687b3 mul x15, x13, x15 x15=00000000 x13:00000000 x15:000000ff +76157611ns 1391642 1c0010ca 00e42223 sw x14, 4(x8) x14:1c00c2e0 x8:1c00c2e0 PA:1c00c2e4 +76157630ns 1391643 1c0010cc 00f70633 add x12, x14, x15 x12=1c00c2e0 x14:1c00c2e0 x15:00000000 +76157650ns 1391644 1c0010d0 40d787b3 sub x15, x15, x13 x15=00000000 x15:00000000 x13:00000000 +76157670ns 1391645 1c0010d2 00e787b3 add x15, x15, x14 x15=1c00c2e0 x15:00000000 x14:1c00c2e0 +76157690ns 1391646 1c0010d4 00f42623 sw x15, 12(x8) x15:1c00c2e0 x8:1c00c2e0 PA:1c00c2ec +76157710ns 1391647 1c0010d6 fff00793 addi x15, x0, -1 x15=ffffffff +76157729ns 1391648 1c0010d8 04f40223 sb x15, 68(x8) x15:ffffffff x8:1c00c2e0 PA:1c00c324 +76157749ns 1391649 1c0010dc 00c42423 sw x12, 8(x8) x12:1c00c2e0 x8:1c00c2e0 PA:1c00c2e8 +76157769ns 1391650 1c0010de 04f402a3 sb x15, 69(x8) x15:ffffffff x8:1c00c2e0 PA:1c00c325 +76157789ns 1391651 1c0010e2 02049263 bne x9, x0, 36 x9:00000001 +76157868ns 1391655 1c001106 01040513 addi x10, x8, 16 x10=1c00c2f0 x8:1c00c2e0 +76157888ns 1391656 1c00110a dbdff0ef jal x1, -580 x1=1c00110c +76157947ns 1391659 1c000ec6 00850793 addi x15, x10, 8 x15=1c00c2f8 x10:1c00c2f0 +76157967ns 1391660 1c000eca fff00713 addi x14, x0, -1 x14=ffffffff +76157987ns 1391661 1c000ecc 00f52223 sw x15, 4(x10) x15:1c00c2f8 x10:1c00c2f0 PA:1c00c2f4 +76158006ns 1391662 1c000ece 00e52423 sw x14, 8(x10) x14:ffffffff x10:1c00c2f0 PA:1c00c2f8 +76158026ns 1391663 1c000ed0 00f52623 sw x15, 12(x10) x15:1c00c2f8 x10:1c00c2f0 PA:1c00c2fc +76158046ns 1391664 1c000ed2 00f52823 sw x15, 16(x10) x15:1c00c2f8 x10:1c00c2f0 PA:1c00c300 +76158066ns 1391665 1c000ed4 00052023 sw x0, 0(x10) x10:1c00c2f0 PA:1c00c2f0 +76158086ns 1391666 1c000ed8 00008067 jalr x0, x1, 0 x1:1c00110c +76158125ns 1391668 1c00110c 02440513 addi x10, x8, 36 x10=1c00c304 x8:1c00c2e0 +76158145ns 1391669 1c001110 db7ff0ef jal x1, -586 x1=1c001112 +76158204ns 1391672 1c000ec6 00850793 addi x15, x10, 8 x15=1c00c30c x10:1c00c304 +76158224ns 1391673 1c000eca fff00713 addi x14, x0, -1 x14=ffffffff +76158244ns 1391674 1c000ecc 00f52223 sw x15, 4(x10) x15:1c00c30c x10:1c00c304 PA:1c00c308 +76158264ns 1391675 1c000ece 00e52423 sw x14, 8(x10) x14:ffffffff x10:1c00c304 PA:1c00c30c +76158284ns 1391676 1c000ed0 00f52623 sw x15, 12(x10) x15:1c00c30c x10:1c00c304 PA:1c00c310 +76158303ns 1391677 1c000ed2 00f52823 sw x15, 16(x10) x15:1c00c30c x10:1c00c304 PA:1c00c314 +76158323ns 1391678 1c000ed4 00052023 sw x0, 0(x10) x10:1c00c304 PA:1c00c304 +76158343ns 1391679 1c000ed8 00008067 jalr x0, x1, 0 x1:1c001112 +76158383ns 1391681 1c001112 fe5ff06f jal x0, -28 +76158442ns 1391684 1c0010f6 731000ef jal x1, 3888 x1=1c0010fa +76158501ns 1391687 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76158541ns 1391689 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +76158561ns 1391690 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76158580ns 1391691 1c002030 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +76158620ns 1391693 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c009db8 PA:1c009dfc +76158660ns 1391695 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +76158679ns 1391696 1c002036 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76158699ns 1391697 1c002038 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76158719ns 1391698 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c009db8 PA:1c009dfc +76158759ns 1391700 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +76158778ns 1391701 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c009db8 PA:1c009dfc +76158798ns 1391702 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c009db8 PA:1c009dfc +76158838ns 1391704 1c002042 00079363 bne x15, x0, 6 x15:00000000 +76158858ns 1391705 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +76158937ns 1391709 1c002048 00008067 jalr x0, x1, 0 x1:1c0010fa +76158976ns 1391711 1c0010fa 00c12083 lw x1, 12(x2) x1=1c00116e x2:1c009b00 PA:1c009b0c +76158996ns 1391712 1c0010fc 00812403 lw x8, 8(x2) x8=1c00c2e0 x2:1c009b00 PA:1c009b08 +76159016ns 1391713 1c0010fe 00412483 lw x9, 4(x2) x9=00000000 x2:1c009b00 PA:1c009b04 +76159036ns 1391714 1c001100 00100513 addi x10, x0, 1 x10=00000001 +76159055ns 1391715 1c001102 01010113 addi x2, x2, 16 x2=1c009b10 x2:1c009b00 +76159075ns 1391716 1c001104 00008067 jalr x0, x1, 0 x1:1c00116e +76159135ns 1391719 1c00116e 05340623 sb x19, 76(x8) x19:00000002 x8:1c00c2e0 PA:1c00c32c +76159154ns 1391720 1c001172 01c12083 lw x1, 28(x2) x1=1c0011cc x2:1c009b10 PA:1c009b2c +76159174ns 1391721 1c001174 00800533 add x10, x0, x8 x10=1c00c2e0 x8:1c00c2e0 +76159194ns 1391722 1c001176 01812403 lw x8, 24(x2) x8=00000000 x2:1c009b10 PA:1c009b28 +76159214ns 1391723 1c001178 01412483 lw x9, 20(x2) x9=1c009190 x2:1c009b10 PA:1c009b24 +76159234ns 1391724 1c00117a 01012903 lw x18, 16(x2) x18=1c009188 x2:1c009b10 PA:1c009b20 +76159253ns 1391725 1c00117c 00c12983 lw x19, 12(x2) x19=1c009000 x2:1c009b10 PA:1c009b1c +76159273ns 1391726 1c00117e 02010113 addi x2, x2, 32 x2=1c009b30 x2:1c009b10 +76159293ns 1391727 1c001180 00008067 jalr x0, x1, 0 x1:1c0011cc +76159333ns 1391729 1c0011cc 00050263 beq x10, x0, 4 x10:1c00c2e0 +76159352ns 1391730 1c0011ce 02852c23 sw x8, 56(x10) x8:00000000 x10:1c00c2e0 PA:1c00c318 +76159372ns 1391731 1c0011d0 00c12083 lw x1, 12(x2) x1=1c003454 x2:1c009b30 PA:1c009b3c +76159392ns 1391732 1c0011d2 00812403 lw x8, 8(x2) x8=1c009b68 x2:1c009b30 PA:1c009b38 +76159412ns 1391733 1c0011d4 01010113 addi x2, x2, 16 x2=1c009b40 x2:1c009b30 +76159431ns 1391734 1c0011d6 00008067 jalr x0, x1, 0 x1:1c003454 +76159471ns 1391736 1c003454 02a42a23 sw x10, 52(x8) x10:1c00c2e0 x8:1c009b68 PA:1c009b9c +76159491ns 1391737 1c003456 00050b63 beq x10, x0, 22 x10:1c00c2e0 +76159511ns 1391738 1c003458 1c0037b7 lui x15, 0x1c003000 x15=1c003000 +76159530ns 1391739 1c00345c 40c78793 addi x15, x15, 1036 x15=1c00340c x15:1c003000 +76159550ns 1391740 1c003460 02f42c23 sw x15, 56(x8) x15:1c00340c x8:1c009b68 PA:1c009ba0 +76159570ns 1391741 1c003462 1c0037b7 lui x15, 0x1c003000 x15=1c003000 +76159590ns 1391742 1c003466 3da78793 addi x15, x15, 986 x15=1c0033da x15:1c003000 +76159610ns 1391743 1c00346a 02f42e23 sw x15, 60(x8) x15:1c0033da x8:1c009b68 PA:1c009ba4 +76159629ns 1391744 1c00346c 00100793 addi x15, x0, 1 x15=00000001 +76159649ns 1391745 1c00346e 04f403a3 sb x15, 71(x8) x15:00000001 x8:1c009b68 PA:1c009baf +76159669ns 1391746 1c003472 fff00793 addi x15, x0, -1 x15=ffffffff +76159689ns 1391747 1c003474 00c12083 lw x1, 12(x2) x1=1c002b5a x2:1c009b40 PA:1c009b4c +76159709ns 1391748 1c003476 04f402a3 sb x15, 69(x8) x15:ffffffff x8:1c009b68 PA:1c009bad +76159728ns 1391749 1c00347a 00800533 add x10, x0, x8 x10=1c009b68 x8:1c009b68 +76159748ns 1391750 1c00347c 00812403 lw x8, 8(x2) x8=1c009be0 x2:1c009b40 PA:1c009b48 +76159768ns 1391751 1c00347e 01010113 addi x2, x2, 16 x2=1c009b50 x2:1c009b40 +76159788ns 1391752 1c003480 00008067 jalr x0, x1, 0 x1:1c002b5a +76159827ns 1391754 1c002b5a 00412683 lw x13, 4(x2) x13=00000001 x2:1c009b50 PA:1c009b54 +76159847ns 1391755 1c002b5c 00812603 lw x12, 8(x2) x12=00000008 x2:1c009b50 PA:1c009b58 +76159867ns 1391756 1c002b5e 00c12583 lw x11, 12(x2) x11=1c009bd6 x2:1c009b50 PA:1c009b5c +76159906ns 1391758 1c002b60 01810713 addi x14, x2, 24 x14=1c009b68 x2:1c009b50 +76159926ns 1391759 1c002b62 00800533 add x10, x0, x8 x10=1c009be0 x8:1c009be0 +76159946ns 1391760 1c002b64 fdfff0ef jal x1, -34 x1=1c002b66 +76159986ns 1391762 1c002b42 00852503 lw x10, 8(x10) x10=1c00b8c0 x10:1c009be0 PA:1c009be8 +76160005ns 1391763 1c002b44 2820006f jal x0, 642 +76160065ns 1391766 1c002dc6 00452e83 lw x29, 4(x10) x29=1c00b890 x10:1c00b8c0 PA:1c00b8c4 +76160085ns 1391767 1c002dca fd010113 addi x2, x2, -48 x2=1c009b20 x2:1c009b50 +76160104ns 1391768 1c002dcc 02112623 sw x1, 44(x2) x1:1c002b66 x2:1c009b20 PA:1c009b4c +76160124ns 1391769 1c002dce 02812423 sw x8, 40(x2) x8:1c009be0 x2:1c009b20 PA:1c009b48 +76160144ns 1391770 1c002dd0 00c008b3 add x17, x0, x12 x17=00000008 x12:00000008 +76160164ns 1391771 1c002dd2 00e00633 add x12, x0, x14 x12=1c009b68 x14:1c009b68 +76160184ns 1391772 1c002dd4 00010737 lui x14, 0x10000 x14=00010000 +76160203ns 1391773 1c002dd6 014ec783 lbu x15, 20(x29) x15=00000000 x29:1c00b890 PA:1c00b8a4 +76160223ns 1391774 1c002dda 00852803 lw x16, 8(x10) x16=00000003 x10:1c00b8c0 PA:1c00b8c8 +76160243ns 1391775 1c002dde 01177463 bgeu x14, x17, 8 x14:00010000 x17:00000008 +76160322ns 1391779 1c002de6 30047473 csrrci x8, 0x00000008, 0x300 x8=00000088 +76160401ns 1391783 1c002dea 03954303 lbu x6, 57(x10) x6=00000000 x10:1c00b8c0 PA:1c00b8f9 +76160441ns 1391785 1c002dee 0a030963 beq x6, x0, 178 x6:00000000 +76160500ns 1391788 1c002ea0 00000713 addi x14, x0, 0 x14=00000000 +76160520ns 1391789 1c002ea2 00800e13 addi x28, x0, 8 x28=00000008 +76160540ns 1391790 1c002ea4 f5fff06f jal x0, -162 +76160599ns 1391793 1c002e02 00ceaf03 lw x30, 12(x29) x30=1c009c98 x29:1c00b890 PA:1c00b89c +76160639ns 1391795 1c002e06 0a0f1863 bne x30, x0, 176 x30:1c009c98 +76160698ns 1391798 1c002eb6 00b12623 sw x11, 12(x2) x11:1c009bd6 x2:1c009b20 PA:1c009b2c +76160718ns 1391799 1c002eb8 00100793 addi x15, x0, 1 x15=00000001 +76160738ns 1391800 1c002eba 00810593 addi x11, x2, 8 x11=1c009b28 x2:1c009b20 +76160758ns 1391801 1c002ebc 00d12423 sw x13, 8(x2) x13:00000001 x2:1c009b20 PA:1c009b28 +76160777ns 1391802 1c002ebe 01112823 sw x17, 16(x2) x17:00000008 x2:1c009b20 PA:1c009b30 +76160797ns 1391803 1c002ec0 01012a23 sw x16, 20(x2) x16:00000003 x2:1c009b20 PA:1c009b34 +76160817ns 1391804 1c002ec2 00e12c23 sw x14, 24(x2) x14:00000000 x2:1c009b20 PA:1c009b38 +76160837ns 1391805 1c002ec4 00f12e23 sw x15, 28(x2) x15:00000001 x2:1c009b20 PA:1c009b3c +76160857ns 1391806 1c002ec6 cf9ff0ef jal x1, -776 x1=1c002eca +76160916ns 1391809 1c002bbe 30047773 csrrci x14, 0x00000008, 0x300 x14=00000080 +76160995ns 1391813 1c002bc2 0045a683 lw x13, 4(x11) x13=1c009bd6 x11:1c009b28 PA:1c009b2c +76161015ns 1391814 1c002bc4 00452783 lw x15, 4(x10) x15=1c00b890 x10:1c00b8c0 PA:1c00b8c4 +76161035ns 1391815 1c002bc6 00a62a23 sw x10, 20(x12) x10:1c00b8c0 x12:1c009b68 PA:1c009b7c +76161054ns 1391816 1c002bc8 00d62c23 sw x13, 24(x12) x13:1c009bd6 x12:1c009b68 PA:1c009b80 +76161074ns 1391817 1c002bca 0085a683 lw x13, 8(x11) x13=00000008 x11:1c009b28 PA:1c009b30 +76161094ns 1391818 1c002bcc 0007a783 lw x15, 0(x15) x15=1c00b8b0 x15:1c00b890 PA:1c00b890 +76161114ns 1391819 1c002bce 00d62e23 sw x13, 28(x12) x13:00000008 x12:1c009b68 PA:1c009b84 +76161134ns 1391820 1c002bd0 0005a683 lw x13, 0(x11) x13=00000001 x11:1c009b28 PA:1c009b28 +76161153ns 1391821 1c002bd2 02c62223 sw x12, 36(x12) x12:1c009b68 x12:1c009b68 PA:1c009b8c +76161173ns 1391822 1c002bd4 02d62023 sw x13, 32(x12) x13:00000001 x12:1c009b68 PA:1c009b88 +76161193ns 1391823 1c002bd6 0145a683 lw x13, 20(x11) x13=00000001 x11:1c009b28 PA:1c009b3c +76161213ns 1391824 1c002bd8 04062023 sw x0, 64(x12) x12:1c009b68 PA:1c009ba8 +76161233ns 1391825 1c002bdc 02d62423 sw x13, 40(x12) x13:00000001 x12:1c009b68 PA:1c009b90 +76161252ns 1391826 1c002bde 0007a683 lw x13, 0(x15) x13=00000000 x15:1c00b8b0 PA:1c00b8b0 +76161292ns 1391828 1c002be0 00069763 bne x13, x0, 14 x13:00000000 +76161312ns 1391829 1c002be2 00c7a023 sw x12, 0(x15) x12:1c009b68 x15:1c00b8b0 PA:1c00b8b0 +76161332ns 1391830 1c002be4 00c7a223 sw x12, 4(x15) x12:1c009b68 x15:1c00b8b0 PA:1c00b8b4 +76161351ns 1391831 1c002be6 30071073 csrrw x0, x14, 0x300 x14:00000080 +76161430ns 1391835 1c002bea 00000513 addi x10, x0, 0 x10=00000000 +76161450ns 1391836 1c002bec 00008067 jalr x0, x1, 0 x1:1c002eca +76161490ns 1391838 1c002eca fcbff06f jal x0, -54 +76161529ns 1391840 1c002e94 00800533 add x10, x0, x8 x10=00000088 x8:00000088 +76161549ns 1391841 1c002e96 02812403 lw x8, 40(x2) x8=1c009be0 x2:1c009b20 PA:1c009b48 +76161569ns 1391842 1c002e98 02c12083 lw x1, 44(x2) x1=1c002b66 x2:1c009b20 PA:1c009b4c +76161589ns 1391843 1c002e9a 03010113 addi x2, x2, 48 x2=1c009b50 x2:1c009b20 +76161609ns 1391844 1c002e9c d1dff06f jal x0, -740 +76161648ns 1391846 1c002bb8 30051073 csrrw x0, x10, 0x300 x10:00000088 +76161727ns 1391850 1c002bbc 00008067 jalr x0, x1, 0 x1:1c002b66 +76161767ns 1391852 1c002b66 01810513 addi x10, x2, 24 x10=1c009b68 x2:1c009b50 +76161787ns 1391853 1c002b68 14f000ef jal x1, 2382 x1=1c002b6c +76161826ns 1391855 1c0034b6 ff010113 addi x2, x2, -16 x2=1c009b40 x2:1c009b50 +76161846ns 1391856 1c0034b8 00812423 sw x8, 8(x2) x8:1c009be0 x2:1c009b40 PA:1c009b48 +76161866ns 1391857 1c0034ba 00112623 sw x1, 12(x2) x1:1c002b6c x2:1c009b40 PA:1c009b4c +76161886ns 1391858 1c0034bc 00a00433 add x8, x0, x10 x8=1c009b68 x10:1c009b68 +76161905ns 1391859 1c0034be 04444783 lbu x15, 68(x8) x15=00000000 x8:1c009b68 PA:1c009bac +76161945ns 1391861 1c0034c2 01879793 slli x15, x15, 0x18 x15=00000000 x15:00000000 +76161965ns 1391862 1c0034c4 4187d793 srai x15, x15, 0x418 x15=00000000 x15:00000000 +76161985ns 1391863 1c0034c6 00078763 beq x15, x0, 14 x15:00000000 +76162044ns 1391866 1c0034d4 03442783 lw x15, 52(x8) x15=1c00c2e0 x8:1c009b68 PA:1c009b9c +76162084ns 1391868 1c0034d6 fe0784e3 beq x15, x0, -24 x15:1c00c2e0 +76162103ns 1391869 1c0034d8 03842783 lw x15, 56(x8) x15=1c00340c x8:1c009b68 PA:1c009ba0 +76162123ns 1391870 1c0034da 03442503 lw x10, 52(x8) x10=1c00c2e0 x8:1c009b68 PA:1c009b9c +76162163ns 1391872 1c0034dc 000780e7 jalr x1, x15, 0 x1=1c0034de x15:1c00340c +76162202ns 1391874 1c00340c fe010113 addi x2, x2, -32 x2=1c009b20 x2:1c009b40 +76162222ns 1391875 1c00340e 00112e23 sw x1, 28(x2) x1:1c0034de x2:1c009b20 PA:1c009b3c +76162242ns 1391876 1c003410 00812c23 sw x8, 24(x2) x8:1c009b68 x2:1c009b20 PA:1c009b38 +76162262ns 1391877 1c003412 30047473 csrrci x8, 0x00000008, 0x300 x8=00000088 +76162341ns 1391881 1c003416 342027f3 csrrs x15, x0, 0x342 x15=0000000b +76162361ns 1391882 1c00341a 0007dc63 bge x15, x0, 24 x15:0000000b +76162420ns 1391885 1c003432 fff00593 addi x11, x0, -1 x11=ffffffff +76162440ns 1391886 1c003434 9eafe0ef jal x1, -7702 x1=1c003438 +76162479ns 1391888 1c00161e fc010113 addi x2, x2, -64 x2=1c009ae0 x2:1c009b20 +76162499ns 1391889 1c001620 02112e23 sw x1, 60(x2) x1:1c003438 x2:1c009ae0 PA:1c009b1c +76162519ns 1391890 1c001622 02812c23 sw x8, 56(x2) x8:00000088 x2:1c009ae0 PA:1c009b18 +76162539ns 1391891 1c001624 02912a23 sw x9, 52(x2) x9:1c009190 x2:1c009ae0 PA:1c009b14 +76162559ns 1391892 1c001626 03212823 sw x18, 48(x2) x18:1c009188 x2:1c009ae0 PA:1c009b10 +76162578ns 1391893 1c001628 03312623 sw x19, 44(x2) x19:1c009000 x2:1c009ae0 PA:1c009b0c +76162598ns 1391894 1c00162a 03412423 sw x20, 40(x2) x20:1c00918c x2:1c009ae0 PA:1c009b08 +76162618ns 1391895 1c00162c 00b12623 sw x11, 12(x2) x11:ffffffff x2:1c009ae0 PA:1c009aec +76162638ns 1391896 1c00162e 02051163 bne x10, x0, 34 x10:1c00c2e0 +76162697ns 1391899 1c001650 04052783 lw x15, 64(x10) x15=00000000 x10:1c00c2e0 PA:1c00c320 +76162717ns 1391900 1c001652 00a00433 add x8, x0, x10 x8=1c00c2e0 x10:1c00c2e0 +76162737ns 1391901 1c001654 00078c63 beq x15, x0, 24 x15:00000000 +76162796ns 1391904 1c00166c 718000ef jal x1, 1816 x1=1c001670 +76162836ns 1391906 1c001d84 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76162855ns 1391907 1c001d88 00100513 addi x10, x0, 1 x10=00000001 +76162875ns 1391908 1c001d8a 00078663 beq x15, x0, 12 x15:00000001 +76162895ns 1391909 1c001d8c d681a503 lw x10, -664(x3) x10=00000000 x3:1c0093dc PA:1c009144 +76162935ns 1391911 1c001d90 00153513 sltiu x10, x10, 1 x10=00000001 x10:00000000 +76162954ns 1391912 1c001d94 00151513 slli x10, x10, 0x1 x10=00000002 x10:00000001 +76162974ns 1391913 1c001d96 00008067 jalr x0, x1, 0 x1:1c001670 +76163014ns 1391915 1c001670 00a00933 add x18, x0, x10 x18=00000002 x10:00000002 +76163034ns 1391916 1c001672 00051f63 bne x10, x0, 30 x10:00000002 +76163093ns 1391919 1c001690 00000493 addi x9, x0, 0 x9=00000000 +76163113ns 1391920 1c001692 00000913 addi x18, x0, 0 x18=00000000 +76163133ns 1391921 1c001694 fff00993 addi x19, x0, -1 x19=ffffffff +76163152ns 1391922 1c001696 02440a13 addi x20, x8, 36 x20=1c00c304 x8:1c00c2e0 +76163172ns 1391923 1c00169a 09a0006f jal x0, 154 +76163212ns 1391925 1c001734 0d9000ef jal x1, 2264 x1=1c001738 +76163251ns 1391927 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +76163331ns 1391931 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76163370ns 1391933 1c002014 00078863 beq x15, x0, 16 x15:00000001 +76163390ns 1391934 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76163410ns 1391935 1c00201a 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76163429ns 1391936 1c00201c 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76163449ns 1391937 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c009db8 PA:1c009dfc +76163489ns 1391939 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76163509ns 1391940 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c009db8 PA:1c009dfc +76163528ns 1391941 1c002024 00008067 jalr x0, x1, 0 x1:1c001738 +76163568ns 1391943 1c001738 03842783 lw x15, 56(x8) x15=00000000 x8:1c00c2e0 PA:1c00c318 +76163608ns 1391945 1c00173a f60781e3 beq x15, x0, -158 x15:00000000 +76163667ns 1391948 1c00169c 00c12783 lw x15, 12(x2) x15=ffffffff x2:1c009ae0 PA:1c009aec +76163726ns 1391951 1c00169e 02079063 bne x15, x0, 32 x15:ffffffff +76163806ns 1391955 1c0016be 00091563 bne x18, x0, 10 x18:00000000 +76163825ns 1391956 1c0016c2 01810513 addi x10, x2, 24 x10=1c009af8 x2:1c009ae0 +76163845ns 1391957 1c0016c4 6aa000ef jal x1, 1706 x1=1c0016c8 +76163904ns 1391960 1c001d6e d7c1a783 lw x15, -644(x3) x15=00000000 x3:1c0093dc PA:1c009158 +76163944ns 1391962 1c001d72 00f52023 sw x15, 0(x10) x15:00000000 x10:1c009af8 PA:1c009af8 +76163964ns 1391963 1c001d74 d881a783 lw x15, -632(x3) x15=00000000 x3:1c0093dc PA:1c009164 +76164003ns 1391965 1c001d78 00f52223 sw x15, 4(x10) x15:00000000 x10:1c009af8 PA:1c009afc +76164023ns 1391966 1c001d7a 00008067 jalr x0, x1, 0 x1:1c0016c8 +76164063ns 1391968 1c0016c8 15f000ef jal x1, 2398 x1=1c0016cc +76164122ns 1391971 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76164162ns 1391973 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +76164182ns 1391974 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76164201ns 1391975 1c002030 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +76164241ns 1391977 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c009db8 PA:1c009dfc +76164281ns 1391979 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +76164300ns 1391980 1c002036 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76164320ns 1391981 1c002038 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76164340ns 1391982 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c009db8 PA:1c009dfc +76164379ns 1391984 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +76164399ns 1391985 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c009db8 PA:1c009dfc +76164419ns 1391986 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c009db8 PA:1c009dfc +76164459ns 1391988 1c002042 00079363 bne x15, x0, 6 x15:00000000 +76164478ns 1391989 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +76164558ns 1391993 1c002048 00008067 jalr x0, x1, 0 x1:1c0016cc +76164597ns 1391995 1c0016cc 34a000ef jal x1, 842 x1=1c0016ce +76164657ns 1391998 1c001a16 d6818793 addi x15, x3, -664 x15=1c009144 x3:1c0093dc +76164676ns 1391999 1c001a1a 0007a703 lw x14, 0(x15) x14=00000000 x15:1c009144 PA:1c009144 +76164716ns 1392001 1c001a1c 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76164736ns 1392002 1c001a1e 00e7a023 sw x14, 0(x15) x14:00000001 x15:1c009144 PA:1c009144 +76164756ns 1392003 1c001a20 00008067 jalr x0, x1, 0 x1:1c0016ce +76164815ns 1392006 1c0016ce 13f000ef jal x1, 2366 x1=1c0016d2 +76164854ns 1392008 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +76164934ns 1392012 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76164973ns 1392014 1c002014 00078863 beq x15, x0, 16 x15:00000001 +76164993ns 1392015 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76165013ns 1392016 1c00201a 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76165033ns 1392017 1c00201c 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76165052ns 1392018 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c009db8 PA:1c009dfc +76165092ns 1392020 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76165112ns 1392021 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c009db8 PA:1c009dfc +76165132ns 1392022 1c002024 00008067 jalr x0, x1, 0 x1:1c0016d2 +76165191ns 1392025 1c0016d2 04444783 lbu x15, 68(x8) x15=000000ff x8:1c00c2e0 PA:1c00c324 +76165231ns 1392027 1c0016d6 01879793 slli x15, x15, 0x18 x15=ff000000 x15:000000ff +76165250ns 1392028 1c0016d8 4187d793 srai x15, x15, 0x418 x15=ffffffff x15:ff000000 +76165270ns 1392029 1c0016da 01379463 bne x15, x19, 8 x15:ffffffff x19:ffffffff +76165290ns 1392030 1c0016de 04040223 sb x0, 68(x8) x8:1c00c2e0 PA:1c00c324 +76165310ns 1392031 1c0016e2 04544783 lbu x15, 69(x8) x15=000000ff x8:1c00c2e0 PA:1c00c325 +76165349ns 1392033 1c0016e6 01879793 slli x15, x15, 0x18 x15=ff000000 x15:000000ff +76165369ns 1392034 1c0016e8 4187d793 srai x15, x15, 0x418 x15=ffffffff x15:ff000000 +76165389ns 1392035 1c0016ea 01379463 bne x15, x19, 8 x15:ffffffff x19:ffffffff +76165409ns 1392036 1c0016ee 040402a3 sb x0, 69(x8) x8:1c00c2e0 PA:1c00c325 +76165428ns 1392037 1c0016f2 135000ef jal x1, 2356 x1=1c0016f6 +76165488ns 1392040 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76165527ns 1392042 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +76165547ns 1392043 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76165567ns 1392044 1c002030 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +76165626ns 1392047 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c009db8 PA:1c009dfc +76165666ns 1392049 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +76165686ns 1392050 1c002036 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76165706ns 1392051 1c002038 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76165725ns 1392052 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c009db8 PA:1c009dfc +76165765ns 1392054 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +76165785ns 1392055 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c009db8 PA:1c009dfc +76165805ns 1392056 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c009db8 PA:1c009dfc +76165844ns 1392058 1c002042 00079363 bne x15, x0, 6 x15:00000000 +76165864ns 1392059 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +76165943ns 1392063 1c002048 00008067 jalr x0, x1, 0 x1:1c0016f6 +76165983ns 1392065 1c0016f6 00c10593 addi x11, x2, 12 x11=1c009aec x2:1c009ae0 +76166002ns 1392066 1c0016f8 01810513 addi x10, x2, 24 x10=1c009af8 x2:1c009ae0 +76166022ns 1392067 1c0016fa 55f000ef jal x1, 3422 x1=1c0016fe +76166062ns 1392069 1c002458 fe010113 addi x2, x2, -32 x2=1c009ac0 x2:1c009ae0 +76166082ns 1392070 1c00245a 00112e23 sw x1, 28(x2) x1:1c0016fe x2:1c009ac0 PA:1c009adc +76166101ns 1392071 1c00245c 00812c23 sw x8, 24(x2) x8:1c00c2e0 x2:1c009ac0 PA:1c009ad8 +76166121ns 1392072 1c00245e 00912a23 sw x9, 20(x2) x9:00000000 x2:1c009ac0 PA:1c009ad4 +76166141ns 1392073 1c002460 02051263 bne x10, x0, 36 x10:1c009af8 +76166200ns 1392076 1c002484 00b00433 add x8, x0, x11 x8=1c009aec x11:1c009aec +76166220ns 1392077 1c002486 00059d63 bne x11, x0, 26 x11:1c009aec +76166280ns 1392080 1c0024a0 00a004b3 add x9, x0, x10 x9=1c009af8 x10:1c009af8 +76166299ns 1392081 1c0024a2 b6bff0ef jal x1, -1174 x1=1c0024a6 +76166339ns 1392083 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +76166418ns 1392087 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76166458ns 1392089 1c002014 00078863 beq x15, x0, 16 x15:00000001 +76166477ns 1392090 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76166497ns 1392091 1c00201a 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76166517ns 1392092 1c00201c 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76166537ns 1392093 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c009db8 PA:1c009dfc +76166576ns 1392095 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76166596ns 1392096 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c009db8 PA:1c009dfc +76166616ns 1392097 1c002024 00008067 jalr x0, x1, 0 x1:1c0024a6 +76166675ns 1392100 1c0024a6 d5418713 addi x14, x3, -684 x14=1c009130 x3:1c0093dc +76166695ns 1392101 1c0024aa d881a683 lw x13, -632(x3) x13=00000000 x3:1c0093dc PA:1c009164 +76166715ns 1392102 1c0024ae 00072783 lw x15, 0(x14) x15=1c009db8 x14:1c009130 PA:1c009130 +76166755ns 1392104 1c0024b0 4857c783 lbu x15, 1157(x15) x15=00000000 x15:1c009db8 PA:1c00a23d +76166794ns 1392106 1c0024b4 00078663 beq x15, x0, 12 x15:00000000 +76166853ns 1392109 1c0024c0 00042783 lw x15, 0(x8) x15=ffffffff x8:1c009aec PA:1c009aec +76166873ns 1392110 1c0024c2 fff00713 addi x14, x0, -1 x14=ffffffff +76166893ns 1392111 1c0024c4 00000513 addi x10, x0, 0 x10=00000000 +76166913ns 1392112 1c0024c6 02e78663 beq x15, x14, 44 x15:ffffffff x14:ffffffff +76166972ns 1392115 1c0024f2 00a12623 sw x10, 12(x2) x10:00000000 x2:1c009ac0 PA:1c009acc +76166992ns 1392116 1c0024f4 b33ff0ef jal x1, -1230 x1=1c0024f8 +76167051ns 1392119 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76167091ns 1392121 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +76167111ns 1392122 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76167131ns 1392123 1c002030 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +76167170ns 1392125 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c009db8 PA:1c009dfc +76167210ns 1392127 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +76167230ns 1392128 1c002036 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76167249ns 1392129 1c002038 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76167269ns 1392130 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c009db8 PA:1c009dfc +76167309ns 1392132 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +76167328ns 1392133 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c009db8 PA:1c009dfc +76167348ns 1392134 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c009db8 PA:1c009dfc +76167388ns 1392136 1c002042 00079363 bne x15, x0, 6 x15:00000000 +76167408ns 1392137 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +76167487ns 1392141 1c002048 00008067 jalr x0, x1, 0 x1:1c0024f8 +76167526ns 1392143 1c0024f8 01c12083 lw x1, 28(x2) x1=1c0016fe x2:1c009ac0 PA:1c009adc +76167546ns 1392144 1c0024fa 01812403 lw x8, 24(x2) x8=1c00c2e0 x2:1c009ac0 PA:1c009ad8 +76167566ns 1392145 1c0024fc 00c12503 lw x10, 12(x2) x10=00000000 x2:1c009ac0 PA:1c009acc +76167586ns 1392146 1c0024fe 01412483 lw x9, 20(x2) x9=00000000 x2:1c009ac0 PA:1c009ad4 +76167606ns 1392147 1c002500 02010113 addi x2, x2, 32 x2=1c009ae0 x2:1c009ac0 +76167625ns 1392148 1c002502 00008067 jalr x0, x1, 0 x1:1c0016fe +76167665ns 1392150 1c0016fe 08051063 bne x10, x0, 128 x10:00000000 +76167685ns 1392151 1c001700 00800533 add x10, x0, x8 x10=1c00c2e0 x8:1c00c2e0 +76167705ns 1392152 1c001702 845ff0ef jal x1, -1980 x1=1c001706 +76167744ns 1392154 1c000f46 ff010113 addi x2, x2, -16 x2=1c009ad0 x2:1c009ae0 +76167764ns 1392155 1c000f48 00812423 sw x8, 8(x2) x8:1c00c2e0 x2:1c009ad0 PA:1c009ad8 +76167784ns 1392156 1c000f4a 00a00433 add x8, x0, x10 x8=1c00c2e0 x10:1c00c2e0 +76167803ns 1392157 1c000f4c 00112623 sw x1, 12(x2) x1:1c001706 x2:1c009ad0 PA:1c009adc +76167823ns 1392158 1c000f4e 0be010ef jal x1, 4286 x1=1c000f52 +76167863ns 1392160 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +76167942ns 1392164 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76167982ns 1392166 1c002014 00078863 beq x15, x0, 16 x15:00000001 +76168001ns 1392167 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76168021ns 1392168 1c00201a 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76168041ns 1392169 1c00201c 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76168061ns 1392170 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c009db8 PA:1c009dfc +76168100ns 1392172 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76168120ns 1392173 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c009db8 PA:1c009dfc +76168140ns 1392174 1c002024 00008067 jalr x0, x1, 0 x1:1c000f52 +76168180ns 1392176 1c000f52 03842403 lw x8, 56(x8) x8=00000000 x8:1c00c2e0 PA:1c00c318 +76168199ns 1392177 1c000f54 0d2010ef jal x1, 4306 x1=1c000f58 +76168259ns 1392180 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76168298ns 1392182 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +76168318ns 1392183 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76168338ns 1392184 1c002030 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +76168377ns 1392186 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c009db8 PA:1c009dfc +76168417ns 1392188 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +76168437ns 1392189 1c002036 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76168457ns 1392190 1c002038 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76168476ns 1392191 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c009db8 PA:1c009dfc +76168516ns 1392193 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +76168536ns 1392194 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c009db8 PA:1c009dfc +76168556ns 1392195 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c009db8 PA:1c009dfc +76168595ns 1392197 1c002042 00079363 bne x15, x0, 6 x15:00000000 +76168615ns 1392198 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +76168694ns 1392202 1c002048 00008067 jalr x0, x1, 0 x1:1c000f58 +76168734ns 1392204 1c000f58 00c12083 lw x1, 12(x2) x1=1c001706 x2:1c009ad0 PA:1c009adc +76168754ns 1392205 1c000f5a 00143513 sltiu x10, x8, 1 x10=00000001 x8:00000000 +76168773ns 1392206 1c000f5e 00812403 lw x8, 8(x2) x8=1c00c2e0 x2:1c009ad0 PA:1c009ad8 +76168793ns 1392207 1c000f60 01010113 addi x2, x2, 16 x2=1c009ae0 x2:1c009ad0 +76168813ns 1392208 1c000f62 00008067 jalr x0, x1, 0 x1:1c001706 +76168852ns 1392210 1c001706 06050663 beq x10, x0, 108 x10:00000001 +76168872ns 1392211 1c001708 00042783 lw x15, 0(x8) x15=1c00c2e0 x8:1c00c2e0 PA:1c00c2e0 +76168912ns 1392213 1c00170a 00079963 bne x15, x0, 18 x15:1c00c2e0 +76168971ns 1392216 1c00171c 00c12583 lw x11, 12(x2) x11=ffffffff x2:1c009ae0 PA:1c009aec +76168991ns 1392217 1c00171e 01400533 add x10, x0, x20 x10=1c00c304 x20:1c00c304 +76169011ns 1392218 1c001720 526000ef jal x1, 1318 x1=1c001722 +76169050ns 1392220 1c001c46 ff010113 addi x2, x2, -16 x2=1c009ad0 x2:1c009ae0 +76169070ns 1392221 1c001c48 00112623 sw x1, 12(x2) x1:1c001722 x2:1c009ad0 PA:1c009adc +76169090ns 1392222 1c001c4a 00812423 sw x8, 8(x2) x8:1c00c2e0 x2:1c009ad0 PA:1c009ad8 +76169110ns 1392223 1c001c4c 02051263 bne x10, x0, 36 x10:1c00c304 +76169169ns 1392226 1c001c70 00b00433 add x8, x0, x11 x8=ffffffff x11:ffffffff +76169189ns 1392227 1c001c72 d541a583 lw x11, -684(x3) x11=1c009db8 x3:1c0093dc PA:1c009130 +76169229ns 1392229 1c001c76 01858593 addi x11, x11, 24 x11=1c009dd0 x11:1c009db8 +76169248ns 1392230 1c001c78 a80ff0ef jal x1, -3456 x1=1c001c7c +76169288ns 1392232 1c000ef8 0005a683 lw x13, 0(x11) x13=00000004 x11:1c009dd0 PA:1c009dd0 +76169308ns 1392233 1c000efa fff00793 addi x15, x0, -1 x15=ffffffff +76169327ns 1392234 1c000efc 00850713 addi x14, x10, 8 x14=1c00c30c x10:1c00c304 +76169347ns 1392235 1c000f00 00f69d63 bne x13, x15, 26 x13:00000004 x15:ffffffff +76169407ns 1392238 1c000f1a 00e007b3 add x15, x0, x14 x15=1c00c30c x14:1c00c30c +76169426ns 1392239 1c000f1c 00472703 lw x14, 4(x14) x14=1c00c30c x14:1c00c30c PA:1c00c310 +76169466ns 1392241 1c000f1e 00072603 lw x12, 0(x14) x12=ffffffff x14:1c00c30c PA:1c00c30c +76169506ns 1392243 1c000f20 fec6fde3 bgeu x13, x12, -6 x13:00000004 x12:ffffffff +76169525ns 1392244 1c000f24 fe3ff06f jal x0, -30 +76169565ns 1392246 1c000f06 0047a703 lw x14, 4(x15) x14=1c00c30c x15:1c00c30c PA:1c00c310 +76169605ns 1392248 1c000f08 00e5a223 sw x14, 4(x11) x14:1c00c30c x11:1c009dd0 PA:1c009dd4 +76169624ns 1392249 1c000f0a 00b72423 sw x11, 8(x14) x11:1c009dd0 x14:1c00c30c PA:1c00c314 +76169644ns 1392250 1c000f0c 00f5a423 sw x15, 8(x11) x15:1c00c30c x11:1c009dd0 PA:1c009dd8 +76169664ns 1392251 1c000f0e 00b7a223 sw x11, 4(x15) x11:1c009dd0 x15:1c00c30c PA:1c00c310 +76169684ns 1392252 1c000f10 00052783 lw x15, 0(x10) x15=00000000 x10:1c00c304 PA:1c00c304 +76169704ns 1392253 1c000f12 00a5a823 sw x10, 16(x11) x10:1c00c304 x11:1c009dd0 PA:1c009de0 +76169723ns 1392254 1c000f14 00178793 addi x15, x15, 1 x15=00000001 x15:00000000 +76169743ns 1392255 1c000f16 00f52023 sw x15, 0(x10) x15:00000001 x10:1c00c304 PA:1c00c304 +76169763ns 1392256 1c000f18 00008067 jalr x0, x1, 0 x1:1c001c7c +76169802ns 1392258 1c001c7c 00800533 add x10, x0, x8 x10=ffffffff x8:ffffffff +76169822ns 1392259 1c001c7e 00812403 lw x8, 8(x2) x8=1c00c2e0 x2:1c009ad0 PA:1c009ad8 +76169842ns 1392260 1c001c80 00c12083 lw x1, 12(x2) x1=1c001722 x2:1c009ad0 PA:1c009adc +76169862ns 1392261 1c001c82 00100593 addi x11, x0, 1 x11=00000001 +76169882ns 1392262 1c001c84 01010113 addi x2, x2, 16 x2=1c009ae0 x2:1c009ad0 +76169901ns 1392263 1c001c86 cc5ff06f jal x0, -828 +76169941ns 1392265 1c00194a fe010113 addi x2, x2, -32 x2=1c009ac0 x2:1c009ae0 +76169961ns 1392266 1c00194c 00912a23 sw x9, 20(x2) x9:00000000 x2:1c009ac0 PA:1c009ad4 +76169981ns 1392267 1c00194e 01312623 sw x19, 12(x2) x19:ffffffff x2:1c009ac0 PA:1c009acc +76170000ns 1392268 1c001950 d881a983 lw x19, -632(x3) x19=00000000 x3:1c0093dc PA:1c009164 +76170020ns 1392269 1c001954 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76170040ns 1392270 1c001958 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +76170060ns 1392271 1c00195a 00812c23 sw x8, 24(x2) x8:1c00c2e0 x2:1c009ac0 PA:1c009ad8 +76170080ns 1392272 1c00195c 00a00433 add x8, x0, x10 x8=ffffffff x10:ffffffff +76170099ns 1392273 1c00195e 0007a503 lw x10, 0(x15) x10=1c009db8 x15:1c009130 PA:1c009130 +76170119ns 1392274 1c001960 01212823 sw x18, 16(x2) x18:00000000 x2:1c009ac0 PA:1c009ad0 +76170139ns 1392275 1c001962 00112e23 sw x1, 28(x2) x1:1c001722 x2:1c009ac0 PA:1c009adc +76170159ns 1392276 1c001964 480702a3 sb x0, 1157(x14) x14:1c009db8 PA:1c00a23d +76170179ns 1392277 1c001968 00450513 addi x10, x10, 4 x10=1c009dbc x10:1c009db8 +76170198ns 1392278 1c00196a 00b00933 add x18, x0, x11 x18=00000001 x11:00000001 +76170218ns 1392279 1c00196c dbaff0ef jal x1, -2630 x1=1c001970 +76170258ns 1392281 1c000f26 00452683 lw x13, 4(x10) x13=1c008ca4 x10:1c009dbc PA:1c009dc0 +76170277ns 1392282 1c000f28 00852703 lw x14, 8(x10) x14=1c008ca4 x10:1c009dbc PA:1c009dc4 +76170297ns 1392283 1c000f2a 01052783 lw x15, 16(x10) x15=1c008c9c x10:1c009dbc PA:1c009dcc +76170317ns 1392284 1c000f2c 00e6a423 sw x14, 8(x13) x14:1c008ca4 x13:1c008ca4 PA:1c008cac +76170337ns 1392285 1c000f2e 00d72223 sw x13, 4(x14) x13:1c008ca4 x14:1c008ca4 PA:1c008ca8 +76170357ns 1392286 1c000f30 0047a683 lw x13, 4(x15) x13=1c009dbc x15:1c008c9c PA:1c008ca0 +76170396ns 1392288 1c000f32 00a69363 bne x13, x10, 6 x13:1c009dbc x10:1c009dbc +76170416ns 1392289 1c000f36 00e7a223 sw x14, 4(x15) x14:1c008ca4 x15:1c008c9c PA:1c008ca0 +76170436ns 1392290 1c000f38 0007a703 lw x14, 0(x15) x14=00000001 x15:1c008c9c PA:1c008c9c +76170456ns 1392291 1c000f3a 00052823 sw x0, 16(x10) x10:1c009dbc PA:1c009dcc +76170475ns 1392292 1c000f3e fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +76170495ns 1392293 1c000f40 00e7a023 sw x14, 0(x15) x14:00000000 x15:1c008c9c PA:1c008c9c +76170515ns 1392294 1c000f42 0007a503 lw x10, 0(x15) x10=00000000 x15:1c008c9c PA:1c008c9c +76170535ns 1392295 1c000f44 00008067 jalr x0, x1, 0 x1:1c001970 +76170574ns 1392297 1c001970 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76170594ns 1392298 1c001974 00051d63 bne x10, x0, 26 x10:00000000 +76170614ns 1392299 1c001976 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +76170634ns 1392300 1c001978 d7018693 addi x13, x3, -656 x13=1c00914c x3:1c0093dc +76170654ns 1392301 1c00197c 02c72583 lw x11, 44(x14) x11=00000001 x14:1c009db8 PA:1c009de4 +76170673ns 1392302 1c00197e 0006a603 lw x12, 0(x13) x12=00000003 x13:1c00914c PA:1c00914c +76170693ns 1392303 1c001980 00100713 addi x14, x0, 1 x14=00000001 +76170713ns 1392304 1c001982 00b71733 sll x14, x14, x11 x14=00000002 x14:00000001 x11:00000001 +76170733ns 1392305 1c001986 fff74713 xori x14, x14, -1 x14=fffffffd x14:00000002 +76170753ns 1392306 1c00198a 00c77733 and x14, x14, x12 x14=00000001 x14:fffffffd x12:00000003 +76170772ns 1392307 1c00198c 00e6a023 sw x14, 0(x13) x14:00000001 x13:1c00914c PA:1c00914c +76170792ns 1392308 1c00198e fff00713 addi x14, x0, -1 x14=ffffffff +76170812ns 1392309 1c001990 02e41063 bne x8, x14, 32 x8:ffffffff x14:ffffffff +76170832ns 1392310 1c001994 00090e63 beq x18, x0, 28 x18:00000001 +76170851ns 1392311 1c001998 0007a583 lw x11, 0(x15) x11=1c009db8 x15:1c009130 PA:1c009130 +76170871ns 1392312 1c00199a 01812403 lw x8, 24(x2) x8=1c00c2e0 x2:1c009ac0 PA:1c009ad8 +76170891ns 1392313 1c00199c 01c12083 lw x1, 28(x2) x1=1c001722 x2:1c009ac0 PA:1c009adc +76170911ns 1392314 1c00199e 01412483 lw x9, 20(x2) x9=00000000 x2:1c009ac0 PA:1c009ad4 +76170931ns 1392315 1c0019a0 01012903 lw x18, 16(x2) x18=00000000 x2:1c009ac0 PA:1c009ad0 +76170950ns 1392316 1c0019a2 00c12983 lw x19, 12(x2) x19=ffffffff x2:1c009ac0 PA:1c009acc +76170970ns 1392317 1c0019a4 00458593 addi x11, x11, 4 x11=1c009dbc x11:1c009db8 +76170990ns 1392318 1c0019a6 94c18513 addi x10, x3, -1716 x10=1c008d28 x3:1c0093dc +76171010ns 1392319 1c0019aa 02010113 addi x2, x2, 32 x2=1c009ae0 x2:1c009ac0 +76171030ns 1392320 1c0019ac d34ff06f jal x0, -2764 +76171069ns 1392322 1c000ee0 00452783 lw x15, 4(x10) x15=1c008d30 x10:1c008d28 PA:1c008d2c +76171109ns 1392324 1c000ee2 0087a703 lw x14, 8(x15) x14=1c00b404 x15:1c008d30 PA:1c008d38 +76171129ns 1392325 1c000ee4 00f5a223 sw x15, 4(x11) x15:1c008d30 x11:1c009dbc PA:1c009dc0 +76171148ns 1392326 1c000ee6 00e5a423 sw x14, 8(x11) x14:1c00b404 x11:1c009dbc PA:1c009dc4 +76171168ns 1392327 1c000ee8 0087a703 lw x14, 8(x15) x14=1c00b404 x15:1c008d30 PA:1c008d38 +76171208ns 1392329 1c000eea 00b72223 sw x11, 4(x14) x11:1c009dbc x14:1c00b404 PA:1c00b408 +76171228ns 1392330 1c000eec 00b7a423 sw x11, 8(x15) x11:1c009dbc x15:1c008d30 PA:1c008d38 +76171247ns 1392331 1c000eee 00052783 lw x15, 0(x10) x15=00000001 x10:1c008d28 PA:1c008d28 +76171267ns 1392332 1c000ef0 00a5a823 sw x10, 16(x11) x10:1c008d28 x11:1c009dbc PA:1c009dcc +76171307ns 1392334 1c000ef2 00178793 addi x15, x15, 1 x15=00000002 x15:00000001 +76171326ns 1392335 1c000ef4 00f52023 sw x15, 0(x10) x15:00000002 x10:1c008d28 PA:1c008d28 +76171346ns 1392336 1c000ef6 00008067 jalr x0, x1, 0 x1:1c001722 +76171386ns 1392338 1c001722 00800533 add x10, x0, x8 x10=1c00c2e0 x8:1c00c2e0 +76171406ns 1392339 1c001724 8e5ff0ef jal x1, -1820 x1=1c001728 +76171445ns 1392341 1c001008 ff010113 addi x2, x2, -16 x2=1c009ad0 x2:1c009ae0 +76171465ns 1392342 1c00100a 00812423 sw x8, 8(x2) x8:1c00c2e0 x2:1c009ad0 PA:1c009ad8 +76171485ns 1392343 1c00100c 00a00433 add x8, x0, x10 x8=1c00c2e0 x10:1c00c2e0 +76171505ns 1392344 1c00100e 00912223 sw x9, 4(x2) x9:00000000 x2:1c009ad0 PA:1c009ad4 +76171524ns 1392345 1c001010 01212023 sw x18, 0(x2) x18:00000000 x2:1c009ad0 PA:1c009ad0 +76171544ns 1392346 1c001012 00112623 sw x1, 12(x2) x1:1c001728 x2:1c009ad0 PA:1c009adc +76171564ns 1392347 1c001014 7f9000ef jal x1, 4088 x1=1c001018 +76171604ns 1392349 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +76171683ns 1392353 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76171722ns 1392355 1c002014 00078863 beq x15, x0, 16 x15:00000001 +76171742ns 1392356 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76171762ns 1392357 1c00201a 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76171782ns 1392358 1c00201c 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76171801ns 1392359 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c009db8 PA:1c009dfc +76171841ns 1392361 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76171861ns 1392362 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c009db8 PA:1c009dfc +76171881ns 1392363 1c002024 00008067 jalr x0, x1, 0 x1:1c001018 +76171920ns 1392365 1c001018 04544483 lbu x9, 69(x8) x9=00000000 x8:1c00c2e0 PA:1c00c325 +76171940ns 1392366 1c00101c 02440913 addi x18, x8, 36 x18=1c00c304 x8:1c00c2e0 +76171960ns 1392367 1c001020 01849493 slli x9, x9, 0x18 x9=00000000 x9:00000000 +76171980ns 1392368 1c001022 4184d493 srai x9, x9, 0x418 x9=00000000 x9:00000000 +76171999ns 1392369 1c001024 02904b63 blt x0, x9, 54 x9:00000000 +76172019ns 1392370 1c001028 fff00793 addi x15, x0, -1 x15=ffffffff +76172039ns 1392371 1c00102a 04f402a3 sb x15, 69(x8) x15:ffffffff x8:1c00c2e0 PA:1c00c325 +76172059ns 1392372 1c00102e 7f9000ef jal x1, 4088 x1=1c001032 +76172118ns 1392375 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76172158ns 1392377 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +76172178ns 1392378 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76172197ns 1392379 1c002030 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +76172237ns 1392381 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c009db8 PA:1c009dfc +76172276ns 1392383 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +76172296ns 1392384 1c002036 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76172316ns 1392385 1c002038 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76172336ns 1392386 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c009db8 PA:1c009dfc +76172375ns 1392388 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +76172395ns 1392389 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c009db8 PA:1c009dfc +76172415ns 1392390 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c009db8 PA:1c009dfc +76172455ns 1392392 1c002042 00079363 bne x15, x0, 6 x15:00000000 +76172474ns 1392393 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +76172554ns 1392397 1c002048 00008067 jalr x0, x1, 0 x1:1c001032 +76172613ns 1392400 1c001032 7db000ef jal x1, 4058 x1=1c001036 +76172653ns 1392402 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +76172732ns 1392406 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76172771ns 1392408 1c002014 00078863 beq x15, x0, 16 x15:00000001 +76172791ns 1392409 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76172811ns 1392410 1c00201a 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76172831ns 1392411 1c00201c 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76172850ns 1392412 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c009db8 PA:1c009dfc +76172890ns 1392414 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76172910ns 1392415 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c009db8 PA:1c009dfc +76172930ns 1392416 1c002024 00008067 jalr x0, x1, 0 x1:1c001036 +76172989ns 1392419 1c001036 04444483 lbu x9, 68(x8) x9=00000000 x8:1c00c2e0 PA:1c00c324 +76173009ns 1392420 1c00103a 01040913 addi x18, x8, 16 x18=1c00c2f0 x8:1c00c2e0 +76173029ns 1392421 1c00103e 01849493 slli x9, x9, 0x18 x9=00000000 x9:00000000 +76173048ns 1392422 1c001040 4184d493 srai x9, x9, 0x418 x9=00000000 x9:00000000 +76173068ns 1392423 1c001042 02904863 blt x0, x9, 48 x9:00000000 +76173088ns 1392424 1c001046 fff00793 addi x15, x0, -1 x15=ffffffff +76173108ns 1392425 1c001048 04f40223 sb x15, 68(x8) x15:ffffffff x8:1c00c2e0 PA:1c00c324 +76173128ns 1392426 1c00104c 00812403 lw x8, 8(x2) x8=1c00c2e0 x2:1c009ad0 PA:1c009ad8 +76173147ns 1392427 1c00104e 00c12083 lw x1, 12(x2) x1=1c001728 x2:1c009ad0 PA:1c009adc +76173167ns 1392428 1c001050 00412483 lw x9, 4(x2) x9=00000000 x2:1c009ad0 PA:1c009ad4 +76173207ns 1392430 1c001052 00012903 lw x18, 0(x2) x18=00000000 x2:1c009ad0 PA:1c009ad0 +76173246ns 1392432 1c001054 01010113 addi x2, x2, 16 x2=1c009ae0 x2:1c009ad0 +76173266ns 1392433 1c001056 7d10006f jal x0, 4048 +76173325ns 1392436 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76173365ns 1392438 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +76173385ns 1392439 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76173405ns 1392440 1c002030 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +76173444ns 1392442 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c009db8 PA:1c009dfc +76173484ns 1392444 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +76173504ns 1392445 1c002036 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76173523ns 1392446 1c002038 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76173543ns 1392447 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c009db8 PA:1c009dfc +76173583ns 1392449 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +76173603ns 1392450 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c009db8 PA:1c009dfc +76173622ns 1392451 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c009db8 PA:1c009dfc +76173662ns 1392453 1c002042 00079363 bne x15, x0, 6 x15:00000000 +76173682ns 1392454 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +76173761ns 1392458 1c002048 00008067 jalr x0, x1, 0 x1:1c001728 +76173800ns 1392460 1c001728 425000ef jal x1, 3108 x1=1c00172c +76173840ns 1392462 1c00234c fc010113 addi x2, x2, -64 x2=1c009aa0 x2:1c009ae0 +76173860ns 1392463 1c00234e 02812c23 sw x8, 56(x2) x8:1c00c2e0 x2:1c009aa0 PA:1c009ad8 +76173880ns 1392464 1c002350 d6818413 addi x8, x3, -664 x8=1c009144 x3:1c0093dc +76173899ns 1392465 1c002354 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +76173919ns 1392466 1c002356 02112e23 sw x1, 60(x2) x1:1c00172c x2:1c009aa0 PA:1c009adc +76173939ns 1392467 1c002358 02912a23 sw x9, 52(x2) x9:00000000 x2:1c009aa0 PA:1c009ad4 +76173959ns 1392468 1c00235a 03212823 sw x18, 48(x2) x18:00000000 x2:1c009aa0 PA:1c009ad0 +76173979ns 1392469 1c00235c 03312623 sw x19, 44(x2) x19:ffffffff x2:1c009aa0 PA:1c009acc +76173998ns 1392470 1c00235e 03412423 sw x20, 40(x2) x20:1c00c304 x2:1c009aa0 PA:1c009ac8 +76174018ns 1392471 1c002360 03512223 sw x21, 36(x2) x21:a5a5a5a5 x2:1c009aa0 PA:1c009ac4 +76174038ns 1392472 1c002362 03612023 sw x22, 32(x2) x22:a5a5a5a5 x2:1c009aa0 PA:1c009ac0 +76174058ns 1392473 1c002364 01712e23 sw x23, 28(x2) x23:a5a5a5a5 x2:1c009aa0 PA:1c009abc +76174078ns 1392474 1c002366 02079263 bne x15, x0, 36 x15:00000001 +76174157ns 1392478 1c00238a c83ff0ef jal x1, -894 x1=1c00238e +76174196ns 1392480 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +76174275ns 1392484 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76174315ns 1392486 1c002014 00078863 beq x15, x0, 16 x15:00000001 +76174335ns 1392487 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76174355ns 1392488 1c00201a 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76174374ns 1392489 1c00201c 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76174394ns 1392490 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c009db8 PA:1c009dfc +76174434ns 1392492 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76174454ns 1392493 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c009db8 PA:1c009dfc +76174473ns 1392494 1c002024 00008067 jalr x0, x1, 0 x1:1c00238e +76174513ns 1392496 1c00238e 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +76174553ns 1392498 1c002390 fff78793 addi x15, x15, -1 x15=00000000 x15:00000001 +76174572ns 1392499 1c002392 00f42023 sw x15, 0(x8) x15:00000000 x8:1c009144 PA:1c009144 +76174592ns 1392500 1c002394 00042783 lw x15, 0(x8) x15=00000000 x8:1c009144 PA:1c009144 +76174632ns 1392502 1c002396 02078163 beq x15, x0, 34 x15:00000000 +76174691ns 1392505 1c0023b8 d601a783 lw x15, -672(x3) x15=00000003 x3:1c0093dc PA:1c00913c +76174731ns 1392507 1c0023bc fc078ee3 beq x15, x0, -36 x15:00000003 +76174750ns 1392508 1c0023be 1c009937 lui x18, 0x1c009000 x18=1c009000 +76174770ns 1392509 1c0023c2 00000413 addi x8, x0, 0 x8=00000000 +76174790ns 1392510 1c0023c4 93818493 addi x9, x3, -1736 x9=1c008d14 x3:1c0093dc +76174810ns 1392511 1c0023c8 00100993 addi x19, x0, 1 x19=00000001 +76174830ns 1392512 1c0023ca c8890913 addi x18, x18, -888 x18=1c008c88 x18:1c009000 +76174849ns 1392513 1c0023ce 01400a93 addi x21, x0, 20 x21=00000014 +76174869ns 1392514 1c0023d0 04c0006f jal x0, 76 +76174909ns 1392516 1c00241c 0004a783 lw x15, 0(x9) x15=00000000 x9:1c008d14 PA:1c008d14 +76174948ns 1392518 1c00241e fa079ae3 bne x15, x0, -76 x15:00000000 +76174968ns 1392519 1c002420 00040363 beq x8, x0, 6 x8:00000000 +76175047ns 1392523 1c002426 d8018713 addi x14, x3, -640 x14=1c00915c x3:1c0093dc +76175067ns 1392524 1c00242a 00072483 lw x9, 0(x14) x9=00000000 x14:1c00915c PA:1c00915c +76175107ns 1392526 1c00242c d8018413 addi x8, x3, -640 x8=1c00915c x3:1c0093dc +76175127ns 1392527 1c002430 00048d63 beq x9, x0, 26 x9:00000000 +76175206ns 1392531 1c00244a d8c1a783 lw x15, -628(x3) x15=00000000 x3:1c0093dc PA:1c009168 +76175245ns 1392533 1c00244e f40785e3 beq x15, x0, -182 x15:00000000 +76175305ns 1392536 1c002398 00000513 addi x10, x0, 0 x10=00000000 +76175324ns 1392537 1c00239a 00a12623 sw x10, 12(x2) x10:00000000 x2:1c009aa0 PA:1c009aac +76175344ns 1392538 1c00239c c8bff0ef jal x1, -886 x1=1c0023a0 +76175404ns 1392541 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76175443ns 1392543 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +76175463ns 1392544 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76175483ns 1392545 1c002030 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +76175522ns 1392547 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c009db8 PA:1c009dfc +76175562ns 1392549 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +76175582ns 1392550 1c002036 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76175602ns 1392551 1c002038 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76175621ns 1392552 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c009db8 PA:1c009dfc +76175661ns 1392554 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +76175681ns 1392555 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c009db8 PA:1c009dfc +76175701ns 1392556 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c009db8 PA:1c009dfc +76175740ns 1392558 1c002042 00079363 bne x15, x0, 6 x15:00000000 +76175760ns 1392559 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +76175839ns 1392563 1c002048 00008067 jalr x0, x1, 0 x1:1c0023a0 +76175879ns 1392565 1c0023a0 03c12083 lw x1, 60(x2) x1=1c00172c x2:1c009aa0 PA:1c009adc +76175898ns 1392566 1c0023a2 03812403 lw x8, 56(x2) x8=1c00c2e0 x2:1c009aa0 PA:1c009ad8 +76175918ns 1392567 1c0023a4 00c12503 lw x10, 12(x2) x10=00000000 x2:1c009aa0 PA:1c009aac +76175938ns 1392568 1c0023a6 03412483 lw x9, 52(x2) x9=00000000 x2:1c009aa0 PA:1c009ad4 +76175958ns 1392569 1c0023a8 03012903 lw x18, 48(x2) x18=00000000 x2:1c009aa0 PA:1c009ad0 +76175978ns 1392570 1c0023aa 02c12983 lw x19, 44(x2) x19=ffffffff x2:1c009aa0 PA:1c009acc +76175997ns 1392571 1c0023ac 02812a03 lw x20, 40(x2) x20=1c00c304 x2:1c009aa0 PA:1c009ac8 +76176017ns 1392572 1c0023ae 02412a83 lw x21, 36(x2) x21=a5a5a5a5 x2:1c009aa0 PA:1c009ac4 +76176037ns 1392573 1c0023b0 02012b03 lw x22, 32(x2) x22=a5a5a5a5 x2:1c009aa0 PA:1c009ac0 +76176057ns 1392574 1c0023b2 01c12b83 lw x23, 28(x2) x23=a5a5a5a5 x2:1c009aa0 PA:1c009abc +76176077ns 1392575 1c0023b4 04010113 addi x2, x2, 64 x2=1c009ae0 x2:1c009aa0 +76176096ns 1392576 1c0023b6 00008067 jalr x0, x1, 0 x1:1c00172c +76176136ns 1392578 1c00172c 00051363 bne x10, x0, 6 x10:00000000 +76176156ns 1392579 1c00172e 00000073 ecall +76176235ns 1392583 1c000800 1000006f jal x0, 256 +76176274ns 1392585 1c000900 f8810113 addi x2, x2, -120 x2=1c009a68 x2:1c009ae0 +76176294ns 1392586 1c000904 00112223 sw x1, 4(x2) x1:1c00172c x2:1c009a68 PA:1c009a6c +76176314ns 1392587 1c000906 00512423 sw x5, 8(x2) x5:a5a5a5a5 x2:1c009a68 PA:1c009a70 +76176334ns 1392588 1c000908 00612623 sw x6, 12(x2) x6:00000000 x2:1c009a68 PA:1c009a74 +76176354ns 1392589 1c00090a 00712823 sw x7, 16(x2) x7:a5a5a5a5 x2:1c009a68 PA:1c009a78 +76176373ns 1392590 1c00090c 00812a23 sw x8, 20(x2) x8:1c00c2e0 x2:1c009a68 PA:1c009a7c +76176393ns 1392591 1c00090e 00912c23 sw x9, 24(x2) x9:00000000 x2:1c009a68 PA:1c009a80 +76176413ns 1392592 1c000910 00a12e23 sw x10, 28(x2) x10:00000000 x2:1c009a68 PA:1c009a84 +76176433ns 1392593 1c000912 02b12023 sw x11, 32(x2) x11:1c009dbc x2:1c009a68 PA:1c009a88 +76176453ns 1392594 1c000914 02c12223 sw x12, 36(x2) x12:00000003 x2:1c009a68 PA:1c009a8c +76176472ns 1392595 1c000916 02d12423 sw x13, 40(x2) x13:1c009db8 x2:1c009a68 PA:1c009a90 +76176492ns 1392596 1c000918 02e12623 sw x14, 44(x2) x14:00000000 x2:1c009a68 PA:1c009a94 +76176512ns 1392597 1c00091a 02f12823 sw x15, 48(x2) x15:00000000 x2:1c009a68 PA:1c009a98 +76176532ns 1392598 1c00091c 03012a23 sw x16, 52(x2) x16:00000003 x2:1c009a68 PA:1c009a9c +76176552ns 1392599 1c00091e 03112c23 sw x17, 56(x2) x17:00000008 x2:1c009a68 PA:1c009aa0 +76176571ns 1392600 1c000920 03212e23 sw x18, 60(x2) x18:00000000 x2:1c009a68 PA:1c009aa4 +76176591ns 1392601 1c000922 05312023 sw x19, 64(x2) x19:ffffffff x2:1c009a68 PA:1c009aa8 +76176611ns 1392602 1c000924 05412223 sw x20, 68(x2) x20:1c00c304 x2:1c009a68 PA:1c009aac +76176631ns 1392603 1c000926 05512423 sw x21, 72(x2) x21:a5a5a5a5 x2:1c009a68 PA:1c009ab0 +76176651ns 1392604 1c000928 05612623 sw x22, 76(x2) x22:a5a5a5a5 x2:1c009a68 PA:1c009ab4 +76176670ns 1392605 1c00092a 05712823 sw x23, 80(x2) x23:a5a5a5a5 x2:1c009a68 PA:1c009ab8 +76176690ns 1392606 1c00092c 05812a23 sw x24, 84(x2) x24:a5a5a5a5 x2:1c009a68 PA:1c009abc +76176710ns 1392607 1c00092e 05912c23 sw x25, 88(x2) x25:a5a5a5a5 x2:1c009a68 PA:1c009ac0 +76176730ns 1392608 1c000930 05a12e23 sw x26, 92(x2) x26:a5a5a5a5 x2:1c009a68 PA:1c009ac4 +76176749ns 1392609 1c000932 07b12023 sw x27, 96(x2) x27:a5a5a5a5 x2:1c009a68 PA:1c009ac8 +76176769ns 1392610 1c000934 07c12223 sw x28, 100(x2) x28:00000008 x2:1c009a68 PA:1c009acc +76176789ns 1392611 1c000936 07d12423 sw x29, 104(x2) x29:1c00b890 x2:1c009a68 PA:1c009ad0 +76176809ns 1392612 1c000938 07e12623 sw x30, 108(x2) x30:1c009c98 x2:1c009a68 PA:1c009ad4 +76176829ns 1392613 1c00093a 07f12823 sw x31, 112(x2) x31:a5a5a5a5 x2:1c009a68 PA:1c009ad8 +76176848ns 1392614 1c00093c 300022f3 csrrs x5, x0, 0x300 x5=00001880 +76176928ns 1392618 1c000940 06512a23 sw x5, 116(x2) x5:00001880 x2:1c009a68 PA:1c009adc +76176947ns 1392619 1c000942 fe810113 addi x2, x2, -24 x2=1c009a50 x2:1c009a68 +76176967ns 1392620 1c000944 7c0022f3 csrrs x5, x0, 0x7c0 x5=00000000 +76176987ns 1392621 1c000948 7c102373 csrrs x6, x0, 0x7c1 x6=00000000 +76177007ns 1392622 1c00094c 7c2023f3 csrrs x7, x0, 0x7c2 x7=00000000 +76177027ns 1392623 1c000950 7c402e73 csrrs x28, x0, 0x7c4 x28=00000000 +76177046ns 1392624 1c000954 7c502ef3 csrrs x29, x0, 0x7c5 x29=00000000 +76177066ns 1392625 1c000958 7c602f73 csrrs x30, x0, 0x7c6 x30=00000000 +76177086ns 1392626 1c00095c 00512223 sw x5, 4(x2) x5:00000000 x2:1c009a50 PA:1c009a54 +76177106ns 1392627 1c00095e 00612423 sw x6, 8(x2) x6:00000000 x2:1c009a50 PA:1c009a58 +76177126ns 1392628 1c000960 00712623 sw x7, 12(x2) x7:00000000 x2:1c009a50 PA:1c009a5c +76177145ns 1392629 1c000962 01c12823 sw x28, 16(x2) x28:00000000 x2:1c009a50 PA:1c009a60 +76177165ns 1392630 1c000964 01d12a23 sw x29, 20(x2) x29:00000000 x2:1c009a50 PA:1c009a64 +76177185ns 1392631 1c000966 01e12c23 sw x30, 24(x2) x30:00000000 x2:1c009a50 PA:1c009a68 +76177205ns 1392632 1c000968 d541a283 lw x5, -684(x3) x5=1c009db8 x3:1c0093dc PA:1c009130 +76177244ns 1392634 1c00096c 0022a023 sw x2, 0(x5) x2:1c009a50 x5:1c009db8 PA:1c009db8 +76177264ns 1392635 1c000970 34202573 csrrs x10, x0, 0x342 x10=0000000b +76177284ns 1392636 1c000974 341025f3 csrrs x11, x0, 0x341 x11=1c00172e +76177304ns 1392637 1c000978 01f55613 srli x12, x10, 0x1f x12=00000000 x10:0000000b +76177323ns 1392638 1c00097c 00060963 beq x12, x0, 18 x12:00000000 +76177383ns 1392641 1c00098e 00458593 addi x11, x11, 4 x11=1c001732 x11:1c00172e +76177403ns 1392642 1c000990 00b12023 sw x11, 0(x2) x11:1c001732 x2:1c009a50 PA:1c009a50 +76177422ns 1392643 1c000992 00b00293 addi x5, x0, 11 x5=0000000b +76177442ns 1392644 1c000994 7ff57513 andi x10, x10, 2047 x10=0000000b x10:0000000b +76177462ns 1392645 1c000998 00551963 bne x10, x5, 18 x10:0000000b x5:0000000b +76177482ns 1392646 1c00099c 00008117 auipc x2, 0x8000 x2=1c00899c +76177502ns 1392647 1c0009a0 23812103 lw x2, 568(x2) x2=1c0199b0 x2:1c00899c PA:1c008bd4 +76177521ns 1392648 1c0009a4 1d2010ef jal x1, 4562 x1=1c0009a8 +76177581ns 1392651 1c001b76 d681a703 lw x14, -664(x3) x14=00000000 x3:1c0093dc PA:1c009144 +76177601ns 1392652 1c001b7a d8c18793 addi x15, x3, -628 x15=1c009168 x3:1c0093dc +76177620ns 1392653 1c001b7e 00070463 beq x14, x0, 8 x14:00000000 +76177680ns 1392656 1c001b86 ff010113 addi x2, x2, -16 x2=1c0199a0 x2:1c0199b0 +76177699ns 1392657 1c001b88 00812423 sw x8, 8(x2) x8:1c00c2e0 x2:1c0199a0 PA:1c0199a8 +76177719ns 1392658 1c001b8a 00112623 sw x1, 12(x2) x1:1c0009a8 x2:1c0199a0 PA:1c0199ac +76177739ns 1392659 1c001b8c 0007a023 sw x0, 0(x15) x15:1c009168 PA:1c009168 +76177759ns 1392660 1c001b90 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76177779ns 1392661 1c001b94 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76177798ns 1392662 1c001b96 a5a5a737 lui x14, 0xa5a5a000 x14=a5a5a000 +76177818ns 1392663 1c001b9a 5a570713 addi x14, x14, 1445 x14=a5a5a5a5 x14:a5a5a000 +76177838ns 1392664 1c001b9e 0307a783 lw x15, 48(x15) x15=1c009770 x15:1c009db8 PA:1c009de8 +76177858ns 1392665 1c001ba0 d5418413 addi x8, x3, -684 x8=1c009130 x3:1c0093dc +76177878ns 1392666 1c001ba4 0007a603 lw x12, 0(x15) x12=a5a5a5a5 x15:1c009770 PA:1c009770 +76177917ns 1392668 1c001ba6 00e61b63 bne x12, x14, 22 x12:a5a5a5a5 x14:a5a5a5a5 +76177937ns 1392669 1c001baa 0047a683 lw x13, 4(x15) x13=a5a5a5a5 x15:1c009770 PA:1c009774 +76177977ns 1392671 1c001bac 00c69863 bne x13, x12, 16 x13:a5a5a5a5 x12:a5a5a5a5 +76177996ns 1392672 1c001bb0 0087a703 lw x14, 8(x15) x14=a5a5a5a5 x15:1c009770 PA:1c009778 +76178036ns 1392674 1c001bb2 00d71563 bne x14, x13, 10 x14:a5a5a5a5 x13:a5a5a5a5 +76178056ns 1392675 1c001bb6 00c7a783 lw x15, 12(x15) x15=a5a5a5a5 x15:1c009770 PA:1c00977c +76178095ns 1392677 1c001bb8 00e78863 beq x15, x14, 16 x15:a5a5a5a5 x14:a5a5a5a5 +76178155ns 1392680 1c001bc8 d701a503 lw x10, -656(x3) x10=00000001 x3:1c0093dc PA:1c00914c +76178175ns 1392681 1c001bcc abeff0ef jal x1, -3394 x1=1c001bd0 +76178214ns 1392683 1c000e8a 000107b7 lui x15, 0x10000 x15=00010000 +76178234ns 1392684 1c000e8c 02f57663 bgeu x10, x15, 44 x10:00000001 x15:00010000 +76178254ns 1392685 1c000e90 0ff00793 addi x15, x0, 255 x15=000000ff +76178273ns 1392686 1c000e94 00a7b7b3 sltu x15, x15, x10 x15=00000000 x15:000000ff x10:00000001 +76178293ns 1392687 1c000e98 00379793 slli x15, x15, 0x3 x15=00000000 x15:00000000 +76178313ns 1392688 1c000e9a 1c009737 lui x14, 0x1c009000 x14=1c009000 +76178333ns 1392689 1c000e9e 02000693 addi x13, x0, 32 x13=00000020 +76178353ns 1392690 1c000ea2 40f686b3 sub x13, x13, x15 x13=00000020 x13:00000020 x15:00000000 +76178372ns 1392691 1c000ea4 00f55533 srl x10, x10, x15 x10=00000001 x10:00000001 x15:00000000 +76178392ns 1392692 1c000ea8 ad470793 addi x15, x14, -1324 x15=1c008ad4 x14:1c009000 +76178412ns 1392693 1c000eac 00f50533 add x10, x10, x15 x10=1c008ad5 x10:00000001 x15:1c008ad4 +76178432ns 1392694 1c000eae 00054503 lbu x10, 0(x10) x10=00000001 x10:1c008ad5 PA:1c008ad5 +76178471ns 1392696 1c000eb2 40a68533 sub x10, x13, x10 x10=0000001f x13:00000020 x10:00000001 +76178491ns 1392697 1c000eb6 00008067 jalr x0, x1, 0 x1:1c001bd0 +76178531ns 1392699 1c001bd0 01f00713 addi x14, x0, 31 x14=0000001f +76178551ns 1392700 1c001bd2 40a70533 sub x10, x14, x10 x10=00000000 x14:0000001f x10:0000001f +76178570ns 1392701 1c001bd6 01400793 addi x15, x0, 20 x15=00000014 +76178590ns 1392702 1c001bd8 02f507b3 mul x15, x10, x15 x15=00000000 x10:00000000 x15:00000014 +76178610ns 1392703 1c001bdc 1c009737 lui x14, 0x1c009000 x14=1c009000 +76178630ns 1392704 1c001be0 c8870693 addi x13, x14, -888 x13=1c008c88 x14:1c009000 +76178650ns 1392705 1c001be4 c8870713 addi x14, x14, -888 x14=1c008c88 x14:1c009000 +76178669ns 1392706 1c001be8 00f686b3 add x13, x13, x15 x13=1c008c88 x13:1c008c88 x15:00000000 +76178689ns 1392707 1c001bea 0006a603 lw x12, 0(x13) x12=00000001 x13:1c008c88 PA:1c008c88 +76178729ns 1392709 1c001bec 02061263 bne x12, x0, 36 x12:00000001 +76178788ns 1392712 1c001c10 0046a603 lw x12, 4(x13) x12=1c008c90 x13:1c008c88 PA:1c008c8c +76178808ns 1392713 1c001c12 00878793 addi x15, x15, 8 x15=00000008 x15:00000000 +76178828ns 1392714 1c001c14 00e787b3 add x15, x15, x14 x15=1c008c90 x15:00000008 x14:1c008c88 +76178847ns 1392715 1c001c16 00462603 lw x12, 4(x12) x12=1c00a894 x12:1c008c90 PA:1c008c94 +76178887ns 1392717 1c001c18 00c6a223 sw x12, 4(x13) x12:1c00a894 x13:1c008c88 PA:1c008c8c +76178927ns 1392719 1c001c1a 00f61463 bne x12, x15, 8 x12:1c00a894 x15:1c008c90 +76178986ns 1392722 1c001c22 01400793 addi x15, x0, 20 x15=00000014 +76179006ns 1392723 1c001c24 02f50533 mul x10, x10, x15 x10=00000000 x10:00000000 x15:00000014 +76179026ns 1392724 1c001c28 00c12083 lw x1, 12(x2) x1=1c0009a8 x2:1c0199a0 PA:1c0199ac +76179045ns 1392725 1c001c2a 00a70733 add x14, x14, x10 x14=1c008c88 x14:1c008c88 x10:00000000 +76179065ns 1392726 1c001c2c 00472783 lw x15, 4(x14) x15=1c00a894 x14:1c008c88 PA:1c008c8c +76179085ns 1392727 1c001c2e 1c009737 lui x14, 0x1c009000 x14=1c009000 +76179105ns 1392728 1c001c32 00c7a783 lw x15, 12(x15) x15=1c00a890 x15:1c00a894 PA:1c00a8a0 +76179144ns 1392730 1c001c34 00f42023 sw x15, 0(x8) x15:1c00a890 x8:1c009130 PA:1c009130 +76179164ns 1392731 1c001c36 00042783 lw x15, 0(x8) x15=1c00a890 x8:1c009130 PA:1c009130 +76179184ns 1392732 1c001c38 00812403 lw x8, 8(x2) x8=1c00c2e0 x2:1c0199a0 PA:1c0199a8 +76179204ns 1392733 1c001c3a 05878793 addi x15, x15, 88 x15=1c00a8e8 x15:1c00a890 +76179223ns 1392734 1c001c3e c4f72223 sw x15, -956(x14) x15:1c00a8e8 x14:1c009000 PA:1c008c44 +76179243ns 1392735 1c001c42 01010113 addi x2, x2, 16 x2=1c0199b0 x2:1c0199a0 +76179263ns 1392736 1c001c44 00008067 jalr x0, x1, 0 x1:1c0009a8 +76179303ns 1392738 1c0009a8 0160006f jal x0, 22 +76179362ns 1392741 1c0009be d541a303 lw x6, -684(x3) x6=1c00a890 x3:1c0093dc PA:1c009130 +76179402ns 1392743 1c0009c2 00032103 lw x2, 0(x6) x2=1c00a7f0 x6:1c00a890 PA:1c00a890 +76179441ns 1392745 1c0009c6 00012283 lw x5, 0(x2) x5=1c0022f6 x2:1c00a7f0 PA:1c00a7f0 +76179481ns 1392747 1c0009c8 34129073 csrrw x0, x5, 0x341 x5:1c0022f6 +76179501ns 1392748 1c0009cc 00412283 lw x5, 4(x2) x5=00000000 x2:1c00a7f0 PA:1c00a7f4 +76179520ns 1392749 1c0009ce 00812303 lw x6, 8(x2) x6=00000000 x2:1c00a7f0 PA:1c00a7f8 +76179540ns 1392750 1c0009d0 00c12383 lw x7, 12(x2) x7=00000000 x2:1c00a7f0 PA:1c00a7fc +76179560ns 1392751 1c0009d2 01012e03 lw x28, 16(x2) x28=00000000 x2:1c00a7f0 PA:1c00a800 +76179580ns 1392752 1c0009d4 01412e83 lw x29, 20(x2) x29=00000000 x2:1c00a7f0 PA:1c00a804 +76179600ns 1392753 1c0009d6 01812f03 lw x30, 24(x2) x30=00000000 x2:1c00a7f0 PA:1c00a808 +76179619ns 1392754 1c0009d8 7c029073 csrrw x0, x5, 0x7c0 x5:00000000 +76179639ns 1392755 1c0009dc 7c131073 csrrw x0, x6, 0x7c1 x6:00000000 +76179659ns 1392756 1c0009e0 7c239073 csrrw x0, x7, 0x7c2 x7:00000000 +76179679ns 1392757 1c0009e4 7c4e1073 csrrw x0, x28, 0x7c4 x28:00000000 +76179698ns 1392758 1c0009e8 7c5e9073 csrrw x0, x29, 0x7c5 x29:00000000 +76179718ns 1392759 1c0009ec 7c6f1073 csrrw x0, x30, 0x7c6 x30:00000000 +76179738ns 1392760 1c0009f0 01810113 addi x2, x2, 24 x2=1c00a808 x2:1c00a7f0 +76179758ns 1392761 1c0009f2 07412283 lw x5, 116(x2) x5=00001880 x2:1c00a808 PA:1c00a87c +76179797ns 1392763 1c0009f4 30029073 csrrw x0, x5, 0x300 x5:00001880 +76179877ns 1392767 1c0009f8 00412083 lw x1, 4(x2) x1=00000000 x2:1c00a808 PA:1c00a80c +76179896ns 1392768 1c0009fa 00812283 lw x5, 8(x2) x5=a5a5a5a5 x2:1c00a808 PA:1c00a810 +76179916ns 1392769 1c0009fc 00c12303 lw x6, 12(x2) x6=a5a5a5a5 x2:1c00a808 PA:1c00a814 +76179936ns 1392770 1c0009fe 01012383 lw x7, 16(x2) x7=a5a5a5a5 x2:1c00a808 PA:1c00a818 +76179956ns 1392771 1c000a00 01412403 lw x8, 20(x2) x8=a5a5a5a5 x2:1c00a808 PA:1c00a81c +76179976ns 1392772 1c000a02 01812483 lw x9, 24(x2) x9=a5a5a5a5 x2:1c00a808 PA:1c00a820 +76179995ns 1392773 1c000a04 01c12503 lw x10, 28(x2) x10=00000000 x2:1c00a808 PA:1c00a824 +76180015ns 1392774 1c000a06 02012583 lw x11, 32(x2) x11=a5a5a5a5 x2:1c00a808 PA:1c00a828 +76180035ns 1392775 1c000a08 02412603 lw x12, 36(x2) x12=a5a5a5a5 x2:1c00a808 PA:1c00a82c +76180055ns 1392776 1c000a0a 02812683 lw x13, 40(x2) x13=a5a5a5a5 x2:1c00a808 PA:1c00a830 +76180075ns 1392777 1c000a0c 02c12703 lw x14, 44(x2) x14=a5a5a5a5 x2:1c00a808 PA:1c00a834 +76180094ns 1392778 1c000a0e 03012783 lw x15, 48(x2) x15=a5a5a5a5 x2:1c00a808 PA:1c00a838 +76180114ns 1392779 1c000a10 03412803 lw x16, 52(x2) x16=a5a5a5a5 x2:1c00a808 PA:1c00a83c +76180134ns 1392780 1c000a12 03812883 lw x17, 56(x2) x17=a5a5a5a5 x2:1c00a808 PA:1c00a840 +76180154ns 1392781 1c000a14 03c12903 lw x18, 60(x2) x18=a5a5a5a5 x2:1c00a808 PA:1c00a844 +76180173ns 1392782 1c000a16 04012983 lw x19, 64(x2) x19=a5a5a5a5 x2:1c00a808 PA:1c00a848 +76180193ns 1392783 1c000a18 04412a03 lw x20, 68(x2) x20=a5a5a5a5 x2:1c00a808 PA:1c00a84c +76180213ns 1392784 1c000a1a 04812a83 lw x21, 72(x2) x21=a5a5a5a5 x2:1c00a808 PA:1c00a850 +76180233ns 1392785 1c000a1c 04c12b03 lw x22, 76(x2) x22=a5a5a5a5 x2:1c00a808 PA:1c00a854 +76180253ns 1392786 1c000a1e 05012b83 lw x23, 80(x2) x23=a5a5a5a5 x2:1c00a808 PA:1c00a858 +76180272ns 1392787 1c000a20 05412c03 lw x24, 84(x2) x24=a5a5a5a5 x2:1c00a808 PA:1c00a85c +76180292ns 1392788 1c000a22 05812c83 lw x25, 88(x2) x25=a5a5a5a5 x2:1c00a808 PA:1c00a860 +76180312ns 1392789 1c000a24 05c12d03 lw x26, 92(x2) x26=a5a5a5a5 x2:1c00a808 PA:1c00a864 +76180332ns 1392790 1c000a26 06012d83 lw x27, 96(x2) x27=a5a5a5a5 x2:1c00a808 PA:1c00a868 +76180352ns 1392791 1c000a28 06412e03 lw x28, 100(x2) x28=a5a5a5a5 x2:1c00a808 PA:1c00a86c +76180371ns 1392792 1c000a2a 06812e83 lw x29, 104(x2) x29=a5a5a5a5 x2:1c00a808 PA:1c00a870 +76180391ns 1392793 1c000a2c 06c12f03 lw x30, 108(x2) x30=a5a5a5a5 x2:1c00a808 PA:1c00a874 +76180411ns 1392794 1c000a2e 07012f83 lw x31, 112(x2) x31=a5a5a5a5 x2:1c00a808 PA:1c00a878 +76180431ns 1392795 1c000a30 07810113 addi x2, x2, 120 x2=1c00a880 x2:1c00a808 +76180451ns 1392796 1c000a34 30200073 mret +76180550ns 1392801 1c0022f6 fe010113 addi x2, x2, -32 x2=1c00a860 x2:1c00a880 +76180569ns 1392802 1c0022f8 00912a23 sw x9, 20(x2) x9:a5a5a5a5 x2:1c00a860 PA:1c00a874 +76180589ns 1392803 1c0022fa 01312623 sw x19, 12(x2) x19:a5a5a5a5 x2:1c00a860 PA:1c00a86c +76180609ns 1392804 1c0022fc 01412423 sw x20, 8(x2) x20:a5a5a5a5 x2:1c00a860 PA:1c00a868 +76180629ns 1392805 1c0022fe 00112e23 sw x1, 28(x2) x1:00000000 x2:1c00a860 PA:1c00a87c +76180649ns 1392806 1c002300 00812c23 sw x8, 24(x2) x8:a5a5a5a5 x2:1c00a860 PA:1c00a878 +76180668ns 1392807 1c002302 01212823 sw x18, 16(x2) x18:a5a5a5a5 x2:1c00a860 PA:1c00a870 +76180688ns 1392808 1c002304 96018493 addi x9, x3, -1696 x9=1c008d3c x3:1c0093dc +76180708ns 1392809 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76180728ns 1392810 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76180767ns 1392812 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76180827ns 1392815 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76180846ns 1392816 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76180886ns 1392818 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76180945ns 1392821 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76180965ns 1392822 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76181005ns 1392824 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76181064ns 1392827 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76181084ns 1392828 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76181124ns 1392830 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76181183ns 1392833 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76181203ns 1392834 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76181242ns 1392836 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76181302ns 1392839 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76181321ns 1392840 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76181361ns 1392842 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76181420ns 1392845 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76181440ns 1392846 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76181480ns 1392848 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76181539ns 1392851 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76181559ns 1392852 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76181599ns 1392854 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76181658ns 1392857 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76181678ns 1392858 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76181717ns 1392860 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76181777ns 1392863 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76181796ns 1392864 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76181836ns 1392866 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76181895ns 1392869 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76181915ns 1392870 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76181955ns 1392872 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76182014ns 1392875 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76182034ns 1392876 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76182074ns 1392878 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76182133ns 1392881 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76182153ns 1392882 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76182192ns 1392884 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76182252ns 1392887 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76182271ns 1392888 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76182311ns 1392890 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76182370ns 1392893 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76182390ns 1392894 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76182430ns 1392896 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76182489ns 1392899 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76182509ns 1392900 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76182549ns 1392902 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76182608ns 1392905 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76182628ns 1392906 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76182667ns 1392908 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76182727ns 1392911 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76182746ns 1392912 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76182786ns 1392914 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76182845ns 1392917 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76182865ns 1392918 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76182905ns 1392920 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76182964ns 1392923 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76182984ns 1392924 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76183024ns 1392926 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76183083ns 1392929 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76183103ns 1392930 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76183142ns 1392932 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76183202ns 1392935 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76183221ns 1392936 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76183261ns 1392938 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76183320ns 1392941 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76183340ns 1392942 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76183380ns 1392944 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76183439ns 1392947 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76183459ns 1392948 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76183499ns 1392950 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76183558ns 1392953 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76183578ns 1392954 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76183617ns 1392956 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76183677ns 1392959 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76183696ns 1392960 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76183736ns 1392962 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76183795ns 1392965 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76183815ns 1392966 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76183855ns 1392968 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76183914ns 1392971 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76183934ns 1392972 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76183974ns 1392974 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76184033ns 1392977 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76184053ns 1392978 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76184092ns 1392980 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76184152ns 1392983 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76184171ns 1392984 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76184211ns 1392986 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76184270ns 1392989 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76184290ns 1392990 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76184330ns 1392992 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76184389ns 1392995 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76184409ns 1392996 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76184449ns 1392998 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76184508ns 1393001 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76184528ns 1393002 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76184567ns 1393004 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76184627ns 1393007 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76184646ns 1393008 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76184686ns 1393010 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76184745ns 1393013 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76184765ns 1393014 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76184805ns 1393016 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76184864ns 1393019 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76184884ns 1393020 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76184924ns 1393022 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76184983ns 1393025 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76185003ns 1393026 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76185042ns 1393028 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76185102ns 1393031 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76185121ns 1393032 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76185161ns 1393034 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76185220ns 1393037 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76185240ns 1393038 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76185280ns 1393040 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76185339ns 1393043 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76185359ns 1393044 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76185399ns 1393046 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76185458ns 1393049 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76185478ns 1393050 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76185517ns 1393052 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76185577ns 1393055 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76185597ns 1393056 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76185636ns 1393058 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76185695ns 1393061 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76185715ns 1393062 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76185755ns 1393064 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76185814ns 1393067 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76185834ns 1393068 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76185874ns 1393070 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76185933ns 1393073 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76185953ns 1393074 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76185992ns 1393076 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76186052ns 1393079 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76186072ns 1393080 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76186111ns 1393082 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76186170ns 1393085 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76186190ns 1393086 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76186230ns 1393088 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76186289ns 1393091 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76186309ns 1393092 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76186349ns 1393094 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76186408ns 1393097 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76186428ns 1393098 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76186467ns 1393100 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76186527ns 1393103 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76186547ns 1393104 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76186586ns 1393106 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76186645ns 1393109 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76186665ns 1393110 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76186705ns 1393112 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76186764ns 1393115 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76186784ns 1393116 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76186824ns 1393118 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76186883ns 1393121 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76186903ns 1393122 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76186942ns 1393124 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76187002ns 1393127 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76187022ns 1393128 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76187061ns 1393130 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76187120ns 1393133 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76187140ns 1393134 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76187180ns 1393136 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76187239ns 1393139 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76187259ns 1393140 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76187299ns 1393142 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76187358ns 1393145 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76187378ns 1393146 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76187417ns 1393148 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76187477ns 1393151 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76187497ns 1393152 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76187536ns 1393154 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76187595ns 1393157 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76187615ns 1393158 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76187655ns 1393160 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76187714ns 1393163 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76187734ns 1393164 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76187774ns 1393166 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76187833ns 1393169 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76187853ns 1393170 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76187892ns 1393172 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76187952ns 1393175 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76187972ns 1393176 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76188011ns 1393178 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76188071ns 1393181 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76188090ns 1393182 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76188130ns 1393184 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76188189ns 1393187 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76188209ns 1393188 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76188249ns 1393190 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76188308ns 1393193 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76188328ns 1393194 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76188367ns 1393196 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76188427ns 1393199 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76188447ns 1393200 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76188486ns 1393202 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76188546ns 1393205 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76188565ns 1393206 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76188605ns 1393208 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76188664ns 1393211 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76188684ns 1393212 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76188724ns 1393214 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76188783ns 1393217 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76188803ns 1393218 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76188842ns 1393220 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76188902ns 1393223 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76188922ns 1393224 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76188961ns 1393226 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76189021ns 1393229 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76189040ns 1393230 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76189080ns 1393232 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76189139ns 1393235 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76189159ns 1393236 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76189199ns 1393238 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76189258ns 1393241 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76189278ns 1393242 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76189317ns 1393244 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76189377ns 1393247 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76189397ns 1393248 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76189436ns 1393250 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76189496ns 1393253 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76189515ns 1393254 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76189555ns 1393256 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76189614ns 1393259 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76189634ns 1393260 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76189674ns 1393262 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76189733ns 1393265 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76189753ns 1393266 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76189792ns 1393268 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76189852ns 1393271 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76189872ns 1393272 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76189911ns 1393274 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76189971ns 1393277 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76189990ns 1393278 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76190030ns 1393280 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76190089ns 1393283 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76190109ns 1393284 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76190149ns 1393286 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76190208ns 1393289 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76190228ns 1393290 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76190267ns 1393292 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76190327ns 1393295 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76190347ns 1393296 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76190386ns 1393298 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76190446ns 1393301 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76190465ns 1393302 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76190505ns 1393304 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76190564ns 1393307 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76190584ns 1393308 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76190624ns 1393310 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76190683ns 1393313 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76190703ns 1393314 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76190742ns 1393316 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76190802ns 1393319 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76190822ns 1393320 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76190861ns 1393322 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76190921ns 1393325 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76190940ns 1393326 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76190980ns 1393328 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76191039ns 1393331 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76191059ns 1393332 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76191099ns 1393334 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76191158ns 1393337 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76191178ns 1393338 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76191217ns 1393340 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76191277ns 1393343 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76191297ns 1393344 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76191336ns 1393346 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76191396ns 1393349 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76191415ns 1393350 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76191455ns 1393352 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76191514ns 1393355 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76191534ns 1393356 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76191574ns 1393358 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76191633ns 1393361 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76191653ns 1393362 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76191692ns 1393364 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76191752ns 1393367 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76191772ns 1393368 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76191811ns 1393370 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76191871ns 1393373 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76191890ns 1393374 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76191930ns 1393376 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76191989ns 1393379 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76192009ns 1393380 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76192049ns 1393382 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76192108ns 1393385 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76192128ns 1393386 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76192167ns 1393388 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76192227ns 1393391 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76192247ns 1393392 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76192286ns 1393394 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76192346ns 1393397 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76192365ns 1393398 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76192405ns 1393400 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76192464ns 1393403 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76192484ns 1393404 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76192524ns 1393406 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76192583ns 1393409 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76192603ns 1393410 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76192642ns 1393412 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76192702ns 1393415 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76192722ns 1393416 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76192761ns 1393418 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76192821ns 1393421 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76192840ns 1393422 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76192880ns 1393424 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76192939ns 1393427 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76192959ns 1393428 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76192999ns 1393430 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76193058ns 1393433 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76193078ns 1393434 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76193117ns 1393436 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76193177ns 1393439 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76193197ns 1393440 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76193236ns 1393442 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76193296ns 1393445 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76193315ns 1393446 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76193355ns 1393448 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76193414ns 1393451 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76193434ns 1393452 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76193474ns 1393454 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76193533ns 1393457 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76193553ns 1393458 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76193592ns 1393460 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76193652ns 1393463 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76193672ns 1393464 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76193711ns 1393466 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76193771ns 1393469 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76193790ns 1393470 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76193830ns 1393472 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76193889ns 1393475 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76193909ns 1393476 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76193949ns 1393478 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76194008ns 1393481 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76194028ns 1393482 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76194067ns 1393484 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76194127ns 1393487 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76194147ns 1393488 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76194186ns 1393490 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76194246ns 1393493 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76194265ns 1393494 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76194305ns 1393496 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76194364ns 1393499 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76194384ns 1393500 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76194424ns 1393502 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76194483ns 1393505 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76194503ns 1393506 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76194542ns 1393508 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76194602ns 1393511 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76194622ns 1393512 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76194661ns 1393514 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76194721ns 1393517 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76194740ns 1393518 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76194780ns 1393520 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76194839ns 1393523 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76194859ns 1393524 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76194899ns 1393526 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76194958ns 1393529 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76194978ns 1393530 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76195017ns 1393532 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76195077ns 1393535 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76195097ns 1393536 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76195136ns 1393538 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76195196ns 1393541 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76195215ns 1393542 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76195255ns 1393544 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76195314ns 1393547 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76195334ns 1393548 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76195374ns 1393550 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76195433ns 1393553 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76195453ns 1393554 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76195493ns 1393556 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76195552ns 1393559 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76195572ns 1393560 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76195611ns 1393562 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76195671ns 1393565 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76195690ns 1393566 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76195730ns 1393568 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76195789ns 1393571 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76195809ns 1393572 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76195849ns 1393574 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76195908ns 1393577 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76195928ns 1393578 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76195968ns 1393580 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76196027ns 1393583 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76196047ns 1393584 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76196086ns 1393586 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76196146ns 1393589 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76196165ns 1393590 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76196205ns 1393592 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76196264ns 1393595 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76196284ns 1393596 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76196324ns 1393598 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76196383ns 1393601 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76196403ns 1393602 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76196443ns 1393604 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76196502ns 1393607 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76196522ns 1393608 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76196561ns 1393610 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76196621ns 1393613 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76196640ns 1393614 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76196680ns 1393616 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76196739ns 1393619 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76196759ns 1393620 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76196799ns 1393622 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76196858ns 1393625 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76196878ns 1393626 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76196918ns 1393628 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76196977ns 1393631 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76196997ns 1393632 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76197036ns 1393634 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76197096ns 1393637 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76197115ns 1393638 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76197155ns 1393640 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76197214ns 1393643 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76197234ns 1393644 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76197274ns 1393646 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76197333ns 1393649 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76197353ns 1393650 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76197393ns 1393652 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76197452ns 1393655 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76197472ns 1393656 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76197511ns 1393658 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76197571ns 1393661 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76197590ns 1393662 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76197630ns 1393664 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76197689ns 1393667 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76197709ns 1393668 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76197749ns 1393670 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76197808ns 1393673 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76197828ns 1393674 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76197868ns 1393676 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76197927ns 1393679 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76197947ns 1393680 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76197986ns 1393682 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76198046ns 1393685 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76198065ns 1393686 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76198105ns 1393688 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76198164ns 1393691 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76198184ns 1393692 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76198224ns 1393694 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76198283ns 1393697 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76198303ns 1393698 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76198343ns 1393700 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76198402ns 1393703 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76198422ns 1393704 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76198461ns 1393706 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76198521ns 1393709 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76198540ns 1393710 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76198580ns 1393712 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76198639ns 1393715 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76198659ns 1393716 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76198699ns 1393718 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76198758ns 1393721 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76198778ns 1393722 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76198818ns 1393724 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76198877ns 1393727 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76198897ns 1393728 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76198936ns 1393730 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76198996ns 1393733 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76199015ns 1393734 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76199055ns 1393736 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76199114ns 1393739 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76199134ns 1393740 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76199174ns 1393742 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76199233ns 1393745 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76199253ns 1393746 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76199293ns 1393748 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76199352ns 1393751 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76199372ns 1393752 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76199411ns 1393754 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76199471ns 1393757 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76199490ns 1393758 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76199530ns 1393760 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76199589ns 1393763 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76199609ns 1393764 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76199649ns 1393766 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76199708ns 1393769 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76199728ns 1393770 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76199768ns 1393772 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76199827ns 1393775 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76199847ns 1393776 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76199886ns 1393778 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76199946ns 1393781 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76199965ns 1393782 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76200005ns 1393784 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76200064ns 1393787 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76200084ns 1393788 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76200124ns 1393790 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76200183ns 1393793 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76200203ns 1393794 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76200243ns 1393796 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76200302ns 1393799 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76200322ns 1393800 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76200361ns 1393802 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76200421ns 1393805 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76200441ns 1393806 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76200480ns 1393808 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76200539ns 1393811 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76200559ns 1393812 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76200599ns 1393814 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76200658ns 1393817 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76200678ns 1393818 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76200718ns 1393820 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76200777ns 1393823 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76200797ns 1393824 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76200836ns 1393826 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76200896ns 1393829 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76200916ns 1393830 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76200955ns 1393832 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76201014ns 1393835 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76201034ns 1393836 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76201074ns 1393838 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76201133ns 1393841 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76201153ns 1393842 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76201193ns 1393844 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76201252ns 1393847 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76201272ns 1393848 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76201311ns 1393850 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76201371ns 1393853 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76201391ns 1393854 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76201430ns 1393856 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76201489ns 1393859 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76201509ns 1393860 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76201549ns 1393862 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76201608ns 1393865 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76201628ns 1393866 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76201668ns 1393868 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76201727ns 1393871 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76201747ns 1393872 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76201786ns 1393874 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76201846ns 1393877 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76201866ns 1393878 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76201905ns 1393880 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76201964ns 1393883 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76201984ns 1393884 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76202024ns 1393886 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76202083ns 1393889 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76202103ns 1393890 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76202143ns 1393892 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76202202ns 1393895 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76202222ns 1393896 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76202261ns 1393898 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76202321ns 1393901 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76202341ns 1393902 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76202380ns 1393904 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76202439ns 1393907 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76202459ns 1393908 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76202499ns 1393910 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76202558ns 1393913 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76202578ns 1393914 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76202618ns 1393916 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76202677ns 1393919 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76202697ns 1393920 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76202736ns 1393922 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76202796ns 1393925 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76202816ns 1393926 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76202855ns 1393928 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76202915ns 1393931 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76202934ns 1393932 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76202974ns 1393934 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76203033ns 1393937 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76203053ns 1393938 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76203093ns 1393940 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76203152ns 1393943 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76203172ns 1393944 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76203211ns 1393946 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76203271ns 1393949 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76203291ns 1393950 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76203330ns 1393952 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76203390ns 1393955 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76203409ns 1393956 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76203449ns 1393958 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76203508ns 1393961 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76203528ns 1393962 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76203568ns 1393964 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76203627ns 1393967 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76203647ns 1393968 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76203686ns 1393970 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76203746ns 1393973 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76203766ns 1393974 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76203805ns 1393976 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76203865ns 1393979 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76203884ns 1393980 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76203924ns 1393982 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76203983ns 1393985 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76204003ns 1393986 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76204043ns 1393988 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76204102ns 1393991 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76204122ns 1393992 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76204161ns 1393994 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76204221ns 1393997 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76204241ns 1393998 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76204280ns 1394000 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76204340ns 1394003 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76204359ns 1394004 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76204399ns 1394006 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76204458ns 1394009 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76204478ns 1394010 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76204518ns 1394012 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76204577ns 1394015 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76204597ns 1394016 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76204636ns 1394018 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76204696ns 1394021 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76204716ns 1394022 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76204755ns 1394024 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76204815ns 1394027 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76204834ns 1394028 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76204874ns 1394030 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76204933ns 1394033 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76204953ns 1394034 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76204993ns 1394036 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76205052ns 1394039 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76205072ns 1394040 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76205111ns 1394042 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76205171ns 1394045 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76205191ns 1394046 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76205230ns 1394048 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76205290ns 1394051 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76205309ns 1394052 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76205349ns 1394054 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76205408ns 1394057 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76205428ns 1394058 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76205468ns 1394060 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76205527ns 1394063 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76205547ns 1394064 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76205586ns 1394066 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76205646ns 1394069 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76205666ns 1394070 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76205705ns 1394072 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76205765ns 1394075 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76205784ns 1394076 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76205824ns 1394078 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76205883ns 1394081 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76205903ns 1394082 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76205943ns 1394084 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76206002ns 1394087 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76206022ns 1394088 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76206061ns 1394090 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76206121ns 1394093 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76206141ns 1394094 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76206180ns 1394096 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76206240ns 1394099 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76206259ns 1394100 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76206299ns 1394102 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76206358ns 1394105 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76206378ns 1394106 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76206418ns 1394108 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76206477ns 1394111 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76206497ns 1394112 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76206536ns 1394114 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76206596ns 1394117 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76206616ns 1394118 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76206655ns 1394120 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76206715ns 1394123 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76206734ns 1394124 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76206774ns 1394126 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76206833ns 1394129 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76206853ns 1394130 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76206893ns 1394132 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76206952ns 1394135 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76206972ns 1394136 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76207011ns 1394138 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76207071ns 1394141 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76207091ns 1394142 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76207130ns 1394144 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76207190ns 1394147 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76207209ns 1394148 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76207249ns 1394150 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76207308ns 1394153 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76207328ns 1394154 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76207368ns 1394156 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76207427ns 1394159 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76207447ns 1394160 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76207486ns 1394162 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76207546ns 1394165 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76207566ns 1394166 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76207605ns 1394168 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76207665ns 1394171 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76207684ns 1394172 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76207724ns 1394174 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76207783ns 1394177 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76207803ns 1394178 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76207843ns 1394180 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76207902ns 1394183 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76207922ns 1394184 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76207961ns 1394186 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76208021ns 1394189 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76208041ns 1394190 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76208080ns 1394192 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76208140ns 1394195 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76208159ns 1394196 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76208199ns 1394198 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76208258ns 1394201 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76208278ns 1394202 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76208318ns 1394204 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76208377ns 1394207 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76208397ns 1394208 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76208436ns 1394210 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76208496ns 1394213 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76208516ns 1394214 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76208555ns 1394216 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76208615ns 1394219 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76208634ns 1394220 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76208674ns 1394222 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76208733ns 1394225 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76208753ns 1394226 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76208793ns 1394228 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76208852ns 1394231 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76208872ns 1394232 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76208911ns 1394234 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76208971ns 1394237 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76208991ns 1394238 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76209030ns 1394240 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76209090ns 1394243 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76209109ns 1394244 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76209149ns 1394246 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76209208ns 1394249 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76209228ns 1394250 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76209268ns 1394252 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76209327ns 1394255 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76209347ns 1394256 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76209386ns 1394258 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76209446ns 1394261 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76209466ns 1394262 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76209505ns 1394264 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76209565ns 1394267 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76209584ns 1394268 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76209624ns 1394270 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76209683ns 1394273 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76209703ns 1394274 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76209743ns 1394276 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76209802ns 1394279 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76209822ns 1394280 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76209861ns 1394282 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76209921ns 1394285 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76209941ns 1394286 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76209980ns 1394288 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76210040ns 1394291 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76210059ns 1394292 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76210099ns 1394294 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76210158ns 1394297 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76210178ns 1394298 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76210218ns 1394300 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76210277ns 1394303 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76210297ns 1394304 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76210337ns 1394306 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76210396ns 1394309 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76210416ns 1394310 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76210455ns 1394312 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76210515ns 1394315 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76210534ns 1394316 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76210574ns 1394318 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76210633ns 1394321 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76210653ns 1394322 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76210693ns 1394324 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76210752ns 1394327 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76210772ns 1394328 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76210812ns 1394330 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76210871ns 1394333 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76210891ns 1394334 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76210930ns 1394336 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76210990ns 1394339 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76211009ns 1394340 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76211049ns 1394342 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76211108ns 1394345 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76211128ns 1394346 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76211168ns 1394348 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76211227ns 1394351 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76211247ns 1394352 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76211287ns 1394354 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76211346ns 1394357 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76211366ns 1394358 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76211405ns 1394360 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76211465ns 1394363 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76211484ns 1394364 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76211524ns 1394366 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76211583ns 1394369 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76211603ns 1394370 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76211643ns 1394372 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76211702ns 1394375 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76211722ns 1394376 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76211762ns 1394378 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76211821ns 1394381 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76211841ns 1394382 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76211880ns 1394384 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76211940ns 1394387 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76211959ns 1394388 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76211999ns 1394390 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76212058ns 1394393 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76212078ns 1394394 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76212118ns 1394396 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76212177ns 1394399 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76212197ns 1394400 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76212237ns 1394402 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76212296ns 1394405 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76212316ns 1394406 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76212355ns 1394408 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76212415ns 1394411 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76212434ns 1394412 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76212474ns 1394414 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76212533ns 1394417 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76212553ns 1394418 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76212593ns 1394420 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76212652ns 1394423 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76212672ns 1394424 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76212712ns 1394426 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76212771ns 1394429 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76212791ns 1394430 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76212830ns 1394432 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76212890ns 1394435 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76212909ns 1394436 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76212949ns 1394438 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76213008ns 1394441 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76213028ns 1394442 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76213068ns 1394444 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76213127ns 1394447 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76213147ns 1394448 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76213187ns 1394450 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76213246ns 1394453 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76213266ns 1394454 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76213305ns 1394456 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76213365ns 1394459 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76213384ns 1394460 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76213424ns 1394462 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76213483ns 1394465 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76213503ns 1394466 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76213543ns 1394468 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76213602ns 1394471 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76213622ns 1394472 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76213662ns 1394474 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76213721ns 1394477 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76213741ns 1394478 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76213780ns 1394480 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76213840ns 1394483 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76213859ns 1394484 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76213899ns 1394486 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76213958ns 1394489 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76213978ns 1394490 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76214018ns 1394492 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76214077ns 1394495 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76214097ns 1394496 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76214137ns 1394498 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76214196ns 1394501 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76214216ns 1394502 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76214255ns 1394504 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76214315ns 1394507 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76214334ns 1394508 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76214374ns 1394510 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76214433ns 1394513 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76214453ns 1394514 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76214493ns 1394516 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76214552ns 1394519 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76214572ns 1394520 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76214612ns 1394522 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76214671ns 1394525 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76214691ns 1394526 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76214730ns 1394528 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76214790ns 1394531 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76214809ns 1394532 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76214849ns 1394534 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76214908ns 1394537 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76214928ns 1394538 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76214968ns 1394540 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76215027ns 1394543 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76215047ns 1394544 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76215087ns 1394546 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76215146ns 1394549 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76215166ns 1394550 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76215205ns 1394552 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76215265ns 1394555 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76215285ns 1394556 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76215324ns 1394558 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76215383ns 1394561 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76215403ns 1394562 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76215443ns 1394564 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76215502ns 1394567 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76215522ns 1394568 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76215562ns 1394570 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76215621ns 1394573 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76215641ns 1394574 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76215680ns 1394576 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76215740ns 1394579 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76215760ns 1394580 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76215799ns 1394582 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76215858ns 1394585 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76215878ns 1394586 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76215918ns 1394588 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76215977ns 1394591 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76215997ns 1394592 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76216037ns 1394594 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76216096ns 1394597 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76216116ns 1394598 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76216155ns 1394600 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76216215ns 1394603 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76216235ns 1394604 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76216274ns 1394606 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76216333ns 1394609 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76216353ns 1394610 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76216393ns 1394612 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76216452ns 1394615 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76216472ns 1394616 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76216512ns 1394618 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76216571ns 1394621 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76216591ns 1394622 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76216630ns 1394624 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76216690ns 1394627 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76216710ns 1394628 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76216749ns 1394630 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76216808ns 1394633 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76216828ns 1394634 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76216868ns 1394636 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76216927ns 1394639 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76216947ns 1394640 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76216987ns 1394642 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76217046ns 1394645 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76217066ns 1394646 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76217105ns 1394648 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76217165ns 1394651 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76217185ns 1394652 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76217224ns 1394654 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76217283ns 1394657 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76217303ns 1394658 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76217343ns 1394660 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76217402ns 1394663 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76217422ns 1394664 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76217462ns 1394666 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76217521ns 1394669 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76217541ns 1394670 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76217580ns 1394672 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76217640ns 1394675 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76217660ns 1394676 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76217699ns 1394678 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76217759ns 1394681 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76217778ns 1394682 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76217818ns 1394684 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76217877ns 1394687 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76217897ns 1394688 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76217937ns 1394690 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76217996ns 1394693 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76218016ns 1394694 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76218055ns 1394696 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76218115ns 1394699 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76218135ns 1394700 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76218174ns 1394702 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76218234ns 1394705 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76218253ns 1394706 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76218293ns 1394708 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76218352ns 1394711 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76218372ns 1394712 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76218412ns 1394714 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76218471ns 1394717 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76218491ns 1394718 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76218530ns 1394720 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76218590ns 1394723 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76218610ns 1394724 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76218649ns 1394726 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76218709ns 1394729 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76218728ns 1394730 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76218768ns 1394732 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76218827ns 1394735 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76218847ns 1394736 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76218887ns 1394738 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76218946ns 1394741 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76218966ns 1394742 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76219005ns 1394744 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76219065ns 1394747 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76219085ns 1394748 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76219124ns 1394750 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76219184ns 1394753 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76219203ns 1394754 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76219243ns 1394756 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76219302ns 1394759 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76219322ns 1394760 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76219362ns 1394762 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76219421ns 1394765 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76219441ns 1394766 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76219480ns 1394768 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76219540ns 1394771 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76219560ns 1394772 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76219599ns 1394774 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76219659ns 1394777 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76219678ns 1394778 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76219718ns 1394780 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76219777ns 1394783 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76219797ns 1394784 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76219837ns 1394786 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76219896ns 1394789 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76219916ns 1394790 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76219955ns 1394792 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76220015ns 1394795 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76220035ns 1394796 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76220074ns 1394798 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76220134ns 1394801 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76220153ns 1394802 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76220193ns 1394804 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76220252ns 1394807 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76220272ns 1394808 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76220312ns 1394810 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76220371ns 1394813 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76220391ns 1394814 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76220430ns 1394816 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76220490ns 1394819 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76220510ns 1394820 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76220549ns 1394822 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76220609ns 1394825 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76220628ns 1394826 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76220668ns 1394828 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76220727ns 1394831 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76220747ns 1394832 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76220787ns 1394834 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76220846ns 1394837 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76220866ns 1394838 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76220905ns 1394840 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76220965ns 1394843 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76220985ns 1394844 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76221024ns 1394846 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76221084ns 1394849 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76221103ns 1394850 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76221143ns 1394852 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76221202ns 1394855 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76221222ns 1394856 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76221262ns 1394858 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76221321ns 1394861 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76221341ns 1394862 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76221380ns 1394864 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76221440ns 1394867 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76221460ns 1394868 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76221499ns 1394870 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76221559ns 1394873 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76221578ns 1394874 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76221618ns 1394876 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76221677ns 1394879 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76221697ns 1394880 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76221737ns 1394882 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76221796ns 1394885 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76221816ns 1394886 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76221855ns 1394888 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76221915ns 1394891 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76221935ns 1394892 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76221974ns 1394894 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76222034ns 1394897 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76222053ns 1394898 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76222093ns 1394900 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76222152ns 1394903 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76222172ns 1394904 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76222212ns 1394906 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76222271ns 1394909 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76222291ns 1394910 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76222330ns 1394912 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76222390ns 1394915 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76222410ns 1394916 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76222449ns 1394918 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76222509ns 1394921 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76222528ns 1394922 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76222568ns 1394924 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76222627ns 1394927 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76222647ns 1394928 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76222687ns 1394930 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76222746ns 1394933 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76222766ns 1394934 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76222805ns 1394936 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76222865ns 1394939 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76222885ns 1394940 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76222924ns 1394942 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76222984ns 1394945 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76223003ns 1394946 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76223043ns 1394948 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76223102ns 1394951 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76223122ns 1394952 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76223162ns 1394954 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76223221ns 1394957 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76223241ns 1394958 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76223280ns 1394960 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76223340ns 1394963 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76223360ns 1394964 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76223399ns 1394966 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76223459ns 1394969 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76223478ns 1394970 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76223518ns 1394972 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76223577ns 1394975 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76223597ns 1394976 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76223637ns 1394978 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76223696ns 1394981 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76223716ns 1394982 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76223755ns 1394984 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76223815ns 1394987 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76223835ns 1394988 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76223874ns 1394990 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76223934ns 1394993 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76223953ns 1394994 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76223993ns 1394996 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76224052ns 1394999 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76224072ns 1395000 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76224112ns 1395002 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76224171ns 1395005 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76224191ns 1395006 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76224230ns 1395008 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76224290ns 1395011 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76224310ns 1395012 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76224349ns 1395014 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76224409ns 1395017 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76224428ns 1395018 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76224468ns 1395020 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76224527ns 1395023 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76224547ns 1395024 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76224587ns 1395026 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76224646ns 1395029 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76224666ns 1395030 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76224705ns 1395032 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76224765ns 1395035 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76224785ns 1395036 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76224824ns 1395038 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76224884ns 1395041 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76224903ns 1395042 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76224943ns 1395044 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76225002ns 1395047 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76225022ns 1395048 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76225062ns 1395050 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76225121ns 1395053 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76225141ns 1395054 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76225181ns 1395056 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76225240ns 1395059 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76225260ns 1395060 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76225299ns 1395062 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76225359ns 1395065 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76225378ns 1395066 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76225418ns 1395068 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76225477ns 1395071 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76225497ns 1395072 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76225537ns 1395074 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76225596ns 1395077 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76225616ns 1395078 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76225656ns 1395080 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76225715ns 1395083 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76225735ns 1395084 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76225774ns 1395086 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76225834ns 1395089 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76225853ns 1395090 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76225893ns 1395092 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76225952ns 1395095 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76225972ns 1395096 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76226012ns 1395098 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76226071ns 1395101 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76226091ns 1395102 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76226131ns 1395104 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76226190ns 1395107 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76226210ns 1395108 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76226249ns 1395110 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76226309ns 1395113 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76226328ns 1395114 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76226368ns 1395116 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76226427ns 1395119 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76226447ns 1395120 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76226487ns 1395122 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76226546ns 1395125 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76226566ns 1395126 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76226606ns 1395128 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76226665ns 1395131 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76226685ns 1395132 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76226724ns 1395134 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76226784ns 1395137 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76226803ns 1395138 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76226843ns 1395140 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76226902ns 1395143 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76226922ns 1395144 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76226962ns 1395146 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76227021ns 1395149 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76227041ns 1395150 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76227081ns 1395152 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76227140ns 1395155 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76227160ns 1395156 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76227199ns 1395158 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76227259ns 1395161 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76227278ns 1395162 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76227318ns 1395164 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76227377ns 1395167 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76227397ns 1395168 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76227437ns 1395170 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76227496ns 1395173 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76227516ns 1395174 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76227556ns 1395176 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76227615ns 1395179 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76227635ns 1395180 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76227674ns 1395182 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76227734ns 1395185 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76227753ns 1395186 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76227793ns 1395188 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76227852ns 1395191 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76227872ns 1395192 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76227912ns 1395194 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76227971ns 1395197 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76227991ns 1395198 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76228031ns 1395200 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76228090ns 1395203 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76228110ns 1395204 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76228149ns 1395206 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76228209ns 1395209 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76228228ns 1395210 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76228268ns 1395212 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76228327ns 1395215 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76228347ns 1395216 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76228387ns 1395218 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76228446ns 1395221 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76228466ns 1395222 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76228506ns 1395224 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76228565ns 1395227 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76228585ns 1395228 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76228624ns 1395230 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76228684ns 1395233 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76228703ns 1395234 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76228743ns 1395236 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76228802ns 1395239 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76228822ns 1395240 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76228862ns 1395242 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76228921ns 1395245 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76228941ns 1395246 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76228981ns 1395248 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76229040ns 1395251 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76229060ns 1395252 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76229099ns 1395254 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76229159ns 1395257 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76229178ns 1395258 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76229218ns 1395260 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76229277ns 1395263 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76229297ns 1395264 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76229337ns 1395266 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76229396ns 1395269 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76229416ns 1395270 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76229456ns 1395272 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76229515ns 1395275 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76229535ns 1395276 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76229574ns 1395278 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76229634ns 1395281 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76229653ns 1395282 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76229693ns 1395284 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76229752ns 1395287 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76229772ns 1395288 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76229812ns 1395290 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76229871ns 1395293 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76229891ns 1395294 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76229931ns 1395296 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76229990ns 1395299 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76230010ns 1395300 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76230049ns 1395302 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76230109ns 1395305 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76230129ns 1395306 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76230168ns 1395308 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76230227ns 1395311 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76230247ns 1395312 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76230287ns 1395314 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76230346ns 1395317 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76230366ns 1395318 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76230406ns 1395320 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76230465ns 1395323 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76230485ns 1395324 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76230524ns 1395326 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76230584ns 1395329 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76230604ns 1395330 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76230643ns 1395332 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76230702ns 1395335 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76230722ns 1395336 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76230762ns 1395338 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76230821ns 1395341 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76230841ns 1395342 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76230881ns 1395344 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76230940ns 1395347 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76230960ns 1395348 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76230999ns 1395350 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76231059ns 1395353 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76231079ns 1395354 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76231118ns 1395356 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76231177ns 1395359 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76231197ns 1395360 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76231237ns 1395362 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76231296ns 1395365 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76231316ns 1395366 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76231356ns 1395368 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76231415ns 1395371 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76231435ns 1395372 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76231474ns 1395374 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76231534ns 1395377 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76231554ns 1395378 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76231593ns 1395380 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76231652ns 1395383 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76231672ns 1395384 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76231712ns 1395386 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76231771ns 1395389 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76231791ns 1395390 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76231831ns 1395392 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76231890ns 1395395 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76231910ns 1395396 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76231949ns 1395398 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76232009ns 1395401 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76232029ns 1395402 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76232068ns 1395404 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76232127ns 1395407 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76232147ns 1395408 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76232187ns 1395410 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76232246ns 1395413 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76232266ns 1395414 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76232306ns 1395416 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76232365ns 1395419 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76232385ns 1395420 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76232424ns 1395422 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76232484ns 1395425 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76232504ns 1395426 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76232543ns 1395428 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76232603ns 1395431 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76232622ns 1395432 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76232662ns 1395434 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76232721ns 1395437 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76232741ns 1395438 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76232781ns 1395440 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76232840ns 1395443 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76232860ns 1395444 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76232899ns 1395446 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76232959ns 1395449 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76232979ns 1395450 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76233018ns 1395452 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76233078ns 1395455 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76233097ns 1395456 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76233137ns 1395458 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76233196ns 1395461 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76233216ns 1395462 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76233256ns 1395464 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76233315ns 1395467 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76233335ns 1395468 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76233374ns 1395470 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76233434ns 1395473 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76233454ns 1395474 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76233493ns 1395476 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76233553ns 1395479 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76233572ns 1395480 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76233612ns 1395482 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76233671ns 1395485 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76233691ns 1395486 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76233731ns 1395488 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76233790ns 1395491 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76233810ns 1395492 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76233849ns 1395494 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76233909ns 1395497 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76233929ns 1395498 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76233968ns 1395500 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76234028ns 1395503 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76234047ns 1395504 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76234087ns 1395506 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76234146ns 1395509 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76234166ns 1395510 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76234206ns 1395512 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76234265ns 1395515 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76234285ns 1395516 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76234324ns 1395518 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76234384ns 1395521 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76234404ns 1395522 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76234443ns 1395524 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76234503ns 1395527 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76234522ns 1395528 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76234562ns 1395530 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76234621ns 1395533 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76234641ns 1395534 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76234681ns 1395536 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76234740ns 1395539 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76234760ns 1395540 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76234799ns 1395542 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76234859ns 1395545 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76234879ns 1395546 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76234918ns 1395548 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76234978ns 1395551 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76234997ns 1395552 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76235037ns 1395554 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76235096ns 1395557 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76235116ns 1395558 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76235156ns 1395560 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76235215ns 1395563 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76235235ns 1395564 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76235274ns 1395566 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76235334ns 1395569 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76235354ns 1395570 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76235393ns 1395572 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76235453ns 1395575 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76235472ns 1395576 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76235512ns 1395578 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76235571ns 1395581 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76235591ns 1395582 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76235631ns 1395584 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76235690ns 1395587 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76235710ns 1395588 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76235749ns 1395590 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76235809ns 1395593 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76235829ns 1395594 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76235868ns 1395596 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76235928ns 1395599 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76235947ns 1395600 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76235987ns 1395602 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76236046ns 1395605 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76236066ns 1395606 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76236106ns 1395608 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76236165ns 1395611 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76236185ns 1395612 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76236224ns 1395614 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76236284ns 1395617 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76236304ns 1395618 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76236343ns 1395620 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76236403ns 1395623 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76236422ns 1395624 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76236462ns 1395626 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76236521ns 1395629 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76236541ns 1395630 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76236581ns 1395632 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76236640ns 1395635 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76236660ns 1395636 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76236699ns 1395638 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76236759ns 1395641 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76236779ns 1395642 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76236818ns 1395644 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76236878ns 1395647 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76236897ns 1395648 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76236937ns 1395650 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76236996ns 1395653 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76237016ns 1395654 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76237056ns 1395656 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76237115ns 1395659 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76237135ns 1395660 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76237174ns 1395662 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76237234ns 1395665 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76237254ns 1395666 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76237293ns 1395668 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76237353ns 1395671 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76237372ns 1395672 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76237412ns 1395674 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76237471ns 1395677 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76237491ns 1395678 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76237531ns 1395680 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76237590ns 1395683 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76237610ns 1395684 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76237649ns 1395686 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76237709ns 1395689 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76237729ns 1395690 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76237768ns 1395692 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76237828ns 1395695 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76237847ns 1395696 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76237887ns 1395698 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76237946ns 1395701 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76237966ns 1395702 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76238006ns 1395704 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76238065ns 1395707 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76238085ns 1395708 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76238124ns 1395710 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76238184ns 1395713 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76238204ns 1395714 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76238243ns 1395716 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76238303ns 1395719 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76238322ns 1395720 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76238362ns 1395722 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76238421ns 1395725 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76238441ns 1395726 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76238481ns 1395728 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76238540ns 1395731 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76238560ns 1395732 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76238599ns 1395734 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76238659ns 1395737 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76238679ns 1395738 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76238718ns 1395740 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76238778ns 1395743 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76238797ns 1395744 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76238837ns 1395746 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76238896ns 1395749 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76238916ns 1395750 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76238956ns 1395752 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76239015ns 1395755 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76239035ns 1395756 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76239074ns 1395758 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76239134ns 1395761 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76239154ns 1395762 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76239193ns 1395764 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76239253ns 1395767 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76239272ns 1395768 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76239312ns 1395770 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76239371ns 1395773 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76239391ns 1395774 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76239431ns 1395776 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76239490ns 1395779 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76239510ns 1395780 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76239549ns 1395782 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76239609ns 1395785 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76239629ns 1395786 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76239668ns 1395788 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76239728ns 1395791 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76239747ns 1395792 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76239787ns 1395794 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76239846ns 1395797 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76239866ns 1395798 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76239906ns 1395800 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76239965ns 1395803 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76239985ns 1395804 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76240025ns 1395806 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76240084ns 1395809 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76240104ns 1395810 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76240143ns 1395812 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76240203ns 1395815 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76240222ns 1395816 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76240262ns 1395818 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76240321ns 1395821 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76240341ns 1395822 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76240381ns 1395824 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76240440ns 1395827 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76240460ns 1395828 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76240500ns 1395830 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76240559ns 1395833 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76240579ns 1395834 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76240618ns 1395836 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76240678ns 1395839 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76240697ns 1395840 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76240737ns 1395842 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76240796ns 1395845 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76240816ns 1395846 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76240856ns 1395848 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76240915ns 1395851 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76240935ns 1395852 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76240975ns 1395854 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76241034ns 1395857 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76241054ns 1395858 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76241093ns 1395860 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76241153ns 1395863 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76241172ns 1395864 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76241212ns 1395866 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76241271ns 1395869 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76241291ns 1395870 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76241331ns 1395872 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76241390ns 1395875 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76241410ns 1395876 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76241450ns 1395878 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76241509ns 1395881 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76241529ns 1395882 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76241568ns 1395884 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76241628ns 1395887 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76241647ns 1395888 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76241687ns 1395890 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76241746ns 1395893 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76241766ns 1395894 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76241806ns 1395896 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76241865ns 1395899 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76241885ns 1395900 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76241925ns 1395902 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76241984ns 1395905 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76242004ns 1395906 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76242043ns 1395908 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76242103ns 1395911 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76242122ns 1395912 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76242162ns 1395914 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76242221ns 1395917 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76242241ns 1395918 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76242281ns 1395920 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76242340ns 1395923 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76242360ns 1395924 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76242400ns 1395926 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76242459ns 1395929 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76242479ns 1395930 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76242518ns 1395932 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76242578ns 1395935 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76242597ns 1395936 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76242637ns 1395938 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76242696ns 1395941 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76242716ns 1395942 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76242756ns 1395944 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76242815ns 1395947 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76242835ns 1395948 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76242875ns 1395950 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76242934ns 1395953 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76242954ns 1395954 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76242993ns 1395956 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76243053ns 1395959 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76243072ns 1395960 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76243112ns 1395962 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76243171ns 1395965 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76243191ns 1395966 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76243231ns 1395968 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76243290ns 1395971 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76243310ns 1395972 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76243350ns 1395974 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76243409ns 1395977 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76243429ns 1395978 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76243468ns 1395980 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76243528ns 1395983 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76243547ns 1395984 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76243587ns 1395986 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76243646ns 1395989 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76243666ns 1395990 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76243706ns 1395992 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76243765ns 1395995 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76243785ns 1395996 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76243825ns 1395998 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76243884ns 1396001 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76243904ns 1396002 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76243943ns 1396004 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76244003ns 1396007 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76244022ns 1396008 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76244062ns 1396010 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76244121ns 1396013 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76244141ns 1396014 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76244181ns 1396016 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76244240ns 1396019 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76244260ns 1396020 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76244300ns 1396022 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76244359ns 1396025 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76244379ns 1396026 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76244418ns 1396028 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76244478ns 1396031 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76244497ns 1396032 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76244537ns 1396034 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76244596ns 1396037 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76244616ns 1396038 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76244656ns 1396040 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76244715ns 1396043 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76244735ns 1396044 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76244775ns 1396046 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76244834ns 1396049 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76244854ns 1396050 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76244893ns 1396052 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76244953ns 1396055 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76244973ns 1396056 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76245012ns 1396058 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76245071ns 1396061 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76245091ns 1396062 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76245131ns 1396064 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76245190ns 1396067 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76245210ns 1396068 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76245250ns 1396070 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76245309ns 1396073 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76245329ns 1396074 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76245368ns 1396076 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76245428ns 1396079 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76245448ns 1396080 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76245487ns 1396082 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76245546ns 1396085 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76245566ns 1396086 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76245606ns 1396088 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76245665ns 1396091 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76245685ns 1396092 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76245725ns 1396094 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76245784ns 1396097 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76245804ns 1396098 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76245843ns 1396100 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76245903ns 1396103 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76245923ns 1396104 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76245962ns 1396106 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76246021ns 1396109 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76246041ns 1396110 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76246081ns 1396112 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76246140ns 1396115 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76246160ns 1396116 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76246200ns 1396118 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76246259ns 1396121 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76246279ns 1396122 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76246318ns 1396124 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76246378ns 1396127 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76246398ns 1396128 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76246437ns 1396130 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76246496ns 1396133 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76246516ns 1396134 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76246556ns 1396136 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76246615ns 1396139 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76246635ns 1396140 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76246675ns 1396142 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76246734ns 1396145 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76246754ns 1396146 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76246793ns 1396148 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76246853ns 1396151 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76246873ns 1396152 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76246912ns 1396154 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76246971ns 1396157 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76246991ns 1396158 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76247031ns 1396160 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76247090ns 1396163 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76247110ns 1396164 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76247150ns 1396166 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76247209ns 1396169 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76247229ns 1396170 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76247268ns 1396172 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76247328ns 1396175 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76247348ns 1396176 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76247387ns 1396178 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76247447ns 1396181 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76247466ns 1396182 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76247506ns 1396184 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76247565ns 1396187 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76247585ns 1396188 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76247625ns 1396190 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76247684ns 1396193 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76247704ns 1396194 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76247743ns 1396196 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76247803ns 1396199 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76247823ns 1396200 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76247862ns 1396202 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76247922ns 1396205 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76247941ns 1396206 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76247981ns 1396208 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76248040ns 1396211 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76248060ns 1396212 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76248100ns 1396214 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76248159ns 1396217 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76248179ns 1396218 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76248218ns 1396220 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76248278ns 1396223 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76248298ns 1396224 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76248337ns 1396226 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76248397ns 1396229 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76248416ns 1396230 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76248456ns 1396232 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76248515ns 1396235 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76248535ns 1396236 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76248575ns 1396238 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76248634ns 1396241 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76248654ns 1396242 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76248693ns 1396244 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76248753ns 1396247 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76248773ns 1396248 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76248812ns 1396250 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76248872ns 1396253 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76248891ns 1396254 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76248931ns 1396256 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76248990ns 1396259 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76249010ns 1396260 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76249050ns 1396262 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76249109ns 1396265 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76249129ns 1396266 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76249168ns 1396268 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76249228ns 1396271 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76249248ns 1396272 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76249287ns 1396274 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76249347ns 1396277 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76249366ns 1396278 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76249406ns 1396280 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76249465ns 1396283 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76249485ns 1396284 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76249525ns 1396286 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76249584ns 1396289 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76249604ns 1396290 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76249643ns 1396292 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76249703ns 1396295 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76249723ns 1396296 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76249762ns 1396298 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76249822ns 1396301 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76249841ns 1396302 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76249881ns 1396304 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76249940ns 1396307 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76249960ns 1396308 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76250000ns 1396310 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76250059ns 1396313 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76250079ns 1396314 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76250118ns 1396316 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76250178ns 1396319 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76250198ns 1396320 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76250237ns 1396322 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76250297ns 1396325 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76250316ns 1396326 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76250356ns 1396328 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76250415ns 1396331 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76250435ns 1396332 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76250475ns 1396334 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76250534ns 1396337 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76250554ns 1396338 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76250593ns 1396340 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76250653ns 1396343 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76250673ns 1396344 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76250712ns 1396346 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76250772ns 1396349 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76250791ns 1396350 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76250831ns 1396352 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76250890ns 1396355 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76250910ns 1396356 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76250950ns 1396358 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76251009ns 1396361 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76251029ns 1396362 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76251068ns 1396364 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76251128ns 1396367 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76251148ns 1396368 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76251187ns 1396370 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76251247ns 1396373 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76251266ns 1396374 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76251306ns 1396376 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76251365ns 1396379 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76251385ns 1396380 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76251425ns 1396382 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76251484ns 1396385 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76251504ns 1396386 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76251543ns 1396388 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76251603ns 1396391 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76251623ns 1396392 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76251662ns 1396394 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76251722ns 1396397 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76251741ns 1396398 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76251781ns 1396400 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76251840ns 1396403 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76251860ns 1396404 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76251900ns 1396406 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76251959ns 1396409 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76251979ns 1396410 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76252018ns 1396412 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76252078ns 1396415 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76252098ns 1396416 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76252137ns 1396418 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76252197ns 1396421 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76252216ns 1396422 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76252256ns 1396424 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76252315ns 1396427 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76252335ns 1396428 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76252375ns 1396430 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76252434ns 1396433 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76252454ns 1396434 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76252493ns 1396436 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76252553ns 1396439 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76252573ns 1396440 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76252612ns 1396442 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76252672ns 1396445 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76252691ns 1396446 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76252731ns 1396448 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76252790ns 1396451 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76252810ns 1396452 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76252850ns 1396454 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76252909ns 1396457 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76252929ns 1396458 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76252968ns 1396460 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76253028ns 1396463 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76253048ns 1396464 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76253087ns 1396466 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76253147ns 1396469 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76253166ns 1396470 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76253206ns 1396472 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76253265ns 1396475 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76253285ns 1396476 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76253325ns 1396478 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76253384ns 1396481 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76253404ns 1396482 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76253443ns 1396484 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76253503ns 1396487 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76253523ns 1396488 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76253562ns 1396490 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76253622ns 1396493 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76253641ns 1396494 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76253681ns 1396496 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76253740ns 1396499 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76253760ns 1396500 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76253800ns 1396502 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76253859ns 1396505 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76253879ns 1396506 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76253918ns 1396508 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76253978ns 1396511 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76253998ns 1396512 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76254037ns 1396514 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76254097ns 1396517 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76254116ns 1396518 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76254156ns 1396520 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76254215ns 1396523 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76254235ns 1396524 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76254275ns 1396526 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76254334ns 1396529 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76254354ns 1396530 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76254393ns 1396532 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76254453ns 1396535 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76254473ns 1396536 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76254512ns 1396538 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76254572ns 1396541 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76254591ns 1396542 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76254631ns 1396544 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76254690ns 1396547 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76254710ns 1396548 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76254750ns 1396550 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76254809ns 1396553 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76254829ns 1396554 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76254869ns 1396556 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76254928ns 1396559 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76254948ns 1396560 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76254987ns 1396562 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76255047ns 1396565 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76255066ns 1396566 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76255106ns 1396568 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76255165ns 1396571 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76255185ns 1396572 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76255225ns 1396574 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76255284ns 1396577 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76255304ns 1396578 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76255344ns 1396580 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76255403ns 1396583 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76255423ns 1396584 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76255462ns 1396586 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76255522ns 1396589 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76255541ns 1396590 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76255581ns 1396592 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76255640ns 1396595 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76255660ns 1396596 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76255700ns 1396598 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76255759ns 1396601 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76255779ns 1396602 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76255819ns 1396604 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76255878ns 1396607 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76255898ns 1396608 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76255937ns 1396610 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76255997ns 1396613 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76256016ns 1396614 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76256056ns 1396616 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76256115ns 1396619 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76256135ns 1396620 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76256175ns 1396622 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76256234ns 1396625 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76256254ns 1396626 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76256294ns 1396628 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76256353ns 1396631 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76256373ns 1396632 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76256412ns 1396634 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76256472ns 1396637 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76256491ns 1396638 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76256531ns 1396640 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76256590ns 1396643 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76256610ns 1396644 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76256650ns 1396646 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76256709ns 1396649 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76256729ns 1396650 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76256769ns 1396652 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76256828ns 1396655 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76256848ns 1396656 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76256887ns 1396658 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76256947ns 1396661 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76256966ns 1396662 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76257006ns 1396664 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76257065ns 1396667 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76257085ns 1396668 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76257125ns 1396670 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76257184ns 1396673 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76257204ns 1396674 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76257244ns 1396676 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76257303ns 1396679 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76257323ns 1396680 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76257362ns 1396682 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76257422ns 1396685 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76257441ns 1396686 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76257481ns 1396688 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76257540ns 1396691 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76257560ns 1396692 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76257600ns 1396694 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76257659ns 1396697 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76257679ns 1396698 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76257719ns 1396700 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76257778ns 1396703 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76257798ns 1396704 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76257837ns 1396706 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76257897ns 1396709 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76257916ns 1396710 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76257956ns 1396712 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76258015ns 1396715 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76258035ns 1396716 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76258075ns 1396718 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76258134ns 1396721 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76258154ns 1396722 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76258194ns 1396724 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76258253ns 1396727 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76258273ns 1396728 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76258312ns 1396730 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76258372ns 1396733 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76258391ns 1396734 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76258431ns 1396736 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76258490ns 1396739 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76258510ns 1396740 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76258550ns 1396742 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76258609ns 1396745 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76258629ns 1396746 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76258669ns 1396748 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76258728ns 1396751 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76258748ns 1396752 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76258787ns 1396754 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76258847ns 1396757 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76258866ns 1396758 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76258906ns 1396760 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76258965ns 1396763 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76258985ns 1396764 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76259025ns 1396766 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76259084ns 1396769 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76259104ns 1396770 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76259144ns 1396772 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76259203ns 1396775 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76259223ns 1396776 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76259262ns 1396778 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76259322ns 1396781 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76259341ns 1396782 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76259381ns 1396784 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76259440ns 1396787 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76259460ns 1396788 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76259500ns 1396790 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76259559ns 1396793 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76259579ns 1396794 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76259619ns 1396796 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76259678ns 1396799 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76259698ns 1396800 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76259737ns 1396802 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76259797ns 1396805 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76259817ns 1396806 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76259856ns 1396808 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76259915ns 1396811 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76259935ns 1396812 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76259975ns 1396814 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76260034ns 1396817 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76260054ns 1396818 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76260094ns 1396820 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76260153ns 1396823 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76260173ns 1396824 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76260212ns 1396826 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76260272ns 1396829 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76260292ns 1396830 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76260331ns 1396832 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76260390ns 1396835 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76260410ns 1396836 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76260450ns 1396838 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76260509ns 1396841 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76260529ns 1396842 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76260569ns 1396844 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76260628ns 1396847 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76260648ns 1396848 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76260687ns 1396850 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76260747ns 1396853 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76260767ns 1396854 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76260806ns 1396856 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76260865ns 1396859 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76260885ns 1396860 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76260925ns 1396862 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76260984ns 1396865 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76261004ns 1396866 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76261044ns 1396868 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76261103ns 1396871 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76261123ns 1396872 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76261162ns 1396874 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76261222ns 1396877 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76261242ns 1396878 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76261281ns 1396880 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76261340ns 1396883 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76261360ns 1396884 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76261400ns 1396886 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76261459ns 1396889 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76261479ns 1396890 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76261519ns 1396892 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76261578ns 1396895 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76261598ns 1396896 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76261637ns 1396898 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76261697ns 1396901 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76261717ns 1396902 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76261756ns 1396904 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76261815ns 1396907 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76261835ns 1396908 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76261875ns 1396910 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76261934ns 1396913 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76261954ns 1396914 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76261994ns 1396916 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76262053ns 1396919 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76262073ns 1396920 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76262112ns 1396922 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76262172ns 1396925 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76262192ns 1396926 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76262231ns 1396928 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76262291ns 1396931 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76262310ns 1396932 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76262350ns 1396934 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76262409ns 1396937 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76262429ns 1396938 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76262469ns 1396940 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76262528ns 1396943 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76262548ns 1396944 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76262587ns 1396946 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76262647ns 1396949 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76262667ns 1396950 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76262706ns 1396952 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76262766ns 1396955 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76262785ns 1396956 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76262825ns 1396958 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76262884ns 1396961 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76262904ns 1396962 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76262944ns 1396964 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76263003ns 1396967 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76263023ns 1396968 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76263062ns 1396970 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76263122ns 1396973 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76263142ns 1396974 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76263181ns 1396976 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76263241ns 1396979 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76263260ns 1396980 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76263300ns 1396982 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76263359ns 1396985 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76263379ns 1396986 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76263419ns 1396988 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76263478ns 1396991 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76263498ns 1396992 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76263537ns 1396994 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76263597ns 1396997 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76263617ns 1396998 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76263656ns 1397000 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76263716ns 1397003 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76263735ns 1397004 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76263775ns 1397006 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76263834ns 1397009 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76263854ns 1397010 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76263894ns 1397012 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76263953ns 1397015 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76263973ns 1397016 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76264012ns 1397018 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76264072ns 1397021 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76264092ns 1397022 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76264131ns 1397024 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76264191ns 1397027 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76264210ns 1397028 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76264250ns 1397030 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76264309ns 1397033 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76264329ns 1397034 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76264369ns 1397036 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76264428ns 1397039 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76264448ns 1397040 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76264487ns 1397042 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76264547ns 1397045 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76264567ns 1397046 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76264606ns 1397048 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76264666ns 1397051 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76264685ns 1397052 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76264725ns 1397054 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76264784ns 1397057 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76264804ns 1397058 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76264844ns 1397060 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76264903ns 1397063 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76264923ns 1397064 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76264962ns 1397066 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76265022ns 1397069 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76265042ns 1397070 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76265081ns 1397072 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76265141ns 1397075 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76265160ns 1397076 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76265200ns 1397078 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76265259ns 1397081 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76265279ns 1397082 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76265319ns 1397084 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76265378ns 1397087 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76265398ns 1397088 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76265437ns 1397090 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76265497ns 1397093 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76265517ns 1397094 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76265556ns 1397096 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76265616ns 1397099 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76265635ns 1397100 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76265675ns 1397102 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76265734ns 1397105 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76265754ns 1397106 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76265794ns 1397108 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76265853ns 1397111 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76265873ns 1397112 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76265912ns 1397114 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76265972ns 1397117 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76265992ns 1397118 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76266031ns 1397120 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76266091ns 1397123 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76266110ns 1397124 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76266150ns 1397126 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76266209ns 1397129 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76266229ns 1397130 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76266269ns 1397132 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76266328ns 1397135 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76266348ns 1397136 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76266387ns 1397138 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76266447ns 1397141 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76266467ns 1397142 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76266506ns 1397144 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76266566ns 1397147 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76266585ns 1397148 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76266625ns 1397150 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76266684ns 1397153 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76266704ns 1397154 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76266744ns 1397156 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76266803ns 1397159 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76266823ns 1397160 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76266862ns 1397162 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76266922ns 1397165 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76266942ns 1397166 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76266981ns 1397168 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76267041ns 1397171 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76267060ns 1397172 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76267100ns 1397174 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76267159ns 1397177 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76267179ns 1397178 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76267219ns 1397180 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76267278ns 1397183 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76267298ns 1397184 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76267337ns 1397186 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76267397ns 1397189 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76267417ns 1397190 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76267456ns 1397192 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76267516ns 1397195 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76267535ns 1397196 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76267575ns 1397198 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76267634ns 1397201 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76267654ns 1397202 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76267694ns 1397204 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76267753ns 1397207 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76267773ns 1397208 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76267812ns 1397210 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76267872ns 1397213 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76267892ns 1397214 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76267931ns 1397216 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76267991ns 1397219 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76268010ns 1397220 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76268050ns 1397222 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76268109ns 1397225 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76268129ns 1397226 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76268169ns 1397228 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76268228ns 1397231 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76268248ns 1397232 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76268287ns 1397234 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76268347ns 1397237 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76268367ns 1397238 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76268406ns 1397240 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76268466ns 1397243 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76268485ns 1397244 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76268525ns 1397246 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76268584ns 1397249 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76268604ns 1397250 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76268644ns 1397252 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76268703ns 1397255 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76268723ns 1397256 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76268762ns 1397258 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76268822ns 1397261 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76268842ns 1397262 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76268881ns 1397264 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76268941ns 1397267 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76268960ns 1397268 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76269000ns 1397270 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76269059ns 1397273 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76269079ns 1397274 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76269119ns 1397276 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76269178ns 1397279 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76269198ns 1397280 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76269237ns 1397282 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76269297ns 1397285 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76269317ns 1397286 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76269356ns 1397288 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76269416ns 1397291 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76269435ns 1397292 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76269475ns 1397294 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76269534ns 1397297 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76269554ns 1397298 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76269594ns 1397300 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76269653ns 1397303 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76269673ns 1397304 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76269713ns 1397306 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76269772ns 1397309 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76269792ns 1397310 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76269831ns 1397312 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76269891ns 1397315 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76269910ns 1397316 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76269950ns 1397318 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76270009ns 1397321 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76270029ns 1397322 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76270069ns 1397324 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76270128ns 1397327 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76270148ns 1397328 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76270188ns 1397330 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76270247ns 1397333 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76270267ns 1397334 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76270306ns 1397336 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76270366ns 1397339 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76270385ns 1397340 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76270425ns 1397342 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76270484ns 1397345 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76270504ns 1397346 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76270544ns 1397348 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76270603ns 1397351 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76270623ns 1397352 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76270663ns 1397354 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76270722ns 1397357 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76270742ns 1397358 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76270781ns 1397360 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76270841ns 1397363 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76270860ns 1397364 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76270900ns 1397366 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76270959ns 1397369 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76270979ns 1397370 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76271019ns 1397372 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76271078ns 1397375 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76271098ns 1397376 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76271138ns 1397378 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76271197ns 1397381 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76271217ns 1397382 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76271256ns 1397384 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76271316ns 1397387 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76271335ns 1397388 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76271375ns 1397390 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76271434ns 1397393 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76271454ns 1397394 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76271494ns 1397396 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76271553ns 1397399 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76271573ns 1397400 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76271613ns 1397402 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76271672ns 1397405 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76271692ns 1397406 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76271731ns 1397408 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76271791ns 1397411 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76271810ns 1397412 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76271850ns 1397414 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76271909ns 1397417 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76271929ns 1397418 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76271969ns 1397420 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76272028ns 1397423 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76272048ns 1397424 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76272088ns 1397426 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76272147ns 1397429 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76272167ns 1397430 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76272206ns 1397432 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76272266ns 1397435 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76272285ns 1397436 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76272325ns 1397438 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76272384ns 1397441 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76272404ns 1397442 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76272444ns 1397444 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76272503ns 1397447 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76272523ns 1397448 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76272563ns 1397450 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76272622ns 1397453 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76272642ns 1397454 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76272681ns 1397456 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76272741ns 1397459 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76272760ns 1397460 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76272800ns 1397462 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76272859ns 1397465 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76272879ns 1397466 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76272919ns 1397468 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76272978ns 1397471 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76272998ns 1397472 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76273038ns 1397474 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76273097ns 1397477 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76273117ns 1397478 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76273156ns 1397480 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76273216ns 1397483 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76273235ns 1397484 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76273275ns 1397486 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76273334ns 1397489 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76273354ns 1397490 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76273394ns 1397492 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76273453ns 1397495 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76273473ns 1397496 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76273513ns 1397498 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76273572ns 1397501 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76273592ns 1397502 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76273631ns 1397504 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76273691ns 1397507 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76273710ns 1397508 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76273750ns 1397510 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76273809ns 1397513 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76273829ns 1397514 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76273869ns 1397516 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76273928ns 1397519 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76273948ns 1397520 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76273988ns 1397522 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76274047ns 1397525 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76274067ns 1397526 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76274106ns 1397528 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76274166ns 1397531 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76274185ns 1397532 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76274225ns 1397534 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76274284ns 1397537 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76274304ns 1397538 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76274344ns 1397540 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76274403ns 1397543 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76274423ns 1397544 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76274463ns 1397546 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76274522ns 1397549 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76274542ns 1397550 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76274581ns 1397552 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76274641ns 1397555 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76274661ns 1397556 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76274700ns 1397558 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76274759ns 1397561 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76274779ns 1397562 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76274819ns 1397564 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76274878ns 1397567 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76274898ns 1397568 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76274938ns 1397570 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76274997ns 1397573 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76275017ns 1397574 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76275056ns 1397576 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76275116ns 1397579 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76275136ns 1397580 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76275175ns 1397582 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76275234ns 1397585 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76275254ns 1397586 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76275294ns 1397588 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76275353ns 1397591 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76275373ns 1397592 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76275413ns 1397594 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76275472ns 1397597 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76275492ns 1397598 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76275531ns 1397600 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76275591ns 1397603 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76275611ns 1397604 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76275650ns 1397606 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76275709ns 1397609 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76275729ns 1397610 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76275769ns 1397612 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76275828ns 1397615 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76275848ns 1397616 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76275888ns 1397618 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76275947ns 1397621 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76275967ns 1397622 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76276006ns 1397624 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76276066ns 1397627 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76276086ns 1397628 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76276125ns 1397630 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76276184ns 1397633 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76276204ns 1397634 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76276244ns 1397636 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76276303ns 1397639 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76276323ns 1397640 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76276363ns 1397642 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76276422ns 1397645 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76276442ns 1397646 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76276481ns 1397648 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76276541ns 1397651 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76276561ns 1397652 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76276600ns 1397654 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76276659ns 1397657 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76276679ns 1397658 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76276719ns 1397660 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76276778ns 1397663 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76276798ns 1397664 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76276838ns 1397666 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76276897ns 1397669 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76276917ns 1397670 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76276956ns 1397672 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76277016ns 1397675 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76277036ns 1397676 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76277075ns 1397678 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76277135ns 1397681 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76277154ns 1397682 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76277194ns 1397684 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76277253ns 1397687 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76277273ns 1397688 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76277313ns 1397690 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76277372ns 1397693 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76277392ns 1397694 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76277431ns 1397696 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76277491ns 1397699 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76277511ns 1397700 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76277550ns 1397702 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76277610ns 1397705 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76277629ns 1397706 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76277669ns 1397708 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76277728ns 1397711 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76277748ns 1397712 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76277788ns 1397714 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76277847ns 1397717 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76277867ns 1397718 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76277906ns 1397720 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76277966ns 1397723 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76277986ns 1397724 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76278025ns 1397726 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76278085ns 1397729 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76278104ns 1397730 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76278144ns 1397732 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76278203ns 1397735 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76278223ns 1397736 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76278263ns 1397738 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76278322ns 1397741 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76278342ns 1397742 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76278381ns 1397744 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76278441ns 1397747 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76278461ns 1397748 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76278500ns 1397750 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76278560ns 1397753 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76278579ns 1397754 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76278619ns 1397756 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76278678ns 1397759 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76278698ns 1397760 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76278738ns 1397762 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76278797ns 1397765 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76278817ns 1397766 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76278856ns 1397768 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76278916ns 1397771 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76278936ns 1397772 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76278975ns 1397774 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76279035ns 1397777 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76279054ns 1397778 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76279094ns 1397780 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76279153ns 1397783 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76279173ns 1397784 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76279213ns 1397786 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76279272ns 1397789 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76279292ns 1397790 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76279331ns 1397792 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76279391ns 1397795 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76279411ns 1397796 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76279450ns 1397798 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76279510ns 1397801 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76279529ns 1397802 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76279569ns 1397804 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76279628ns 1397807 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76279648ns 1397808 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76279688ns 1397810 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76279747ns 1397813 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76279767ns 1397814 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76279806ns 1397816 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76279866ns 1397819 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76279886ns 1397820 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76279925ns 1397822 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76279985ns 1397825 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76280004ns 1397826 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76280044ns 1397828 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76280103ns 1397831 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76280123ns 1397832 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76280163ns 1397834 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76280222ns 1397837 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76280242ns 1397838 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76280281ns 1397840 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76280341ns 1397843 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76280361ns 1397844 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76280400ns 1397846 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76280460ns 1397849 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76280479ns 1397850 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76280519ns 1397852 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76280578ns 1397855 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76280598ns 1397856 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76280638ns 1397858 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76280697ns 1397861 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76280717ns 1397862 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76280756ns 1397864 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76280816ns 1397867 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76280836ns 1397868 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76280875ns 1397870 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76280935ns 1397873 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76280954ns 1397874 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76280994ns 1397876 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76281053ns 1397879 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76281073ns 1397880 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76281113ns 1397882 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76281172ns 1397885 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76281192ns 1397886 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76281231ns 1397888 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76281291ns 1397891 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76281311ns 1397892 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76281350ns 1397894 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76281410ns 1397897 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76281429ns 1397898 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76281469ns 1397900 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76281528ns 1397903 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76281548ns 1397904 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76281588ns 1397906 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76281647ns 1397909 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76281667ns 1397910 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76281706ns 1397912 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76281766ns 1397915 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76281786ns 1397916 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76281825ns 1397918 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76281885ns 1397921 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76281904ns 1397922 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76281944ns 1397924 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76282003ns 1397927 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76282023ns 1397928 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76282063ns 1397930 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76282122ns 1397933 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76282142ns 1397934 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76282181ns 1397936 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76282241ns 1397939 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76282261ns 1397940 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76282300ns 1397942 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76282360ns 1397945 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76282379ns 1397946 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76282419ns 1397948 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76282478ns 1397951 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76282498ns 1397952 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76282538ns 1397954 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76282597ns 1397957 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76282617ns 1397958 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76282656ns 1397960 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76282716ns 1397963 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76282736ns 1397964 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76282775ns 1397966 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76282835ns 1397969 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76282854ns 1397970 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76282894ns 1397972 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76282953ns 1397975 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76282973ns 1397976 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76283013ns 1397978 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76283072ns 1397981 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76283092ns 1397982 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76283131ns 1397984 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76283191ns 1397987 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76283211ns 1397988 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76283250ns 1397990 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76283310ns 1397993 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76283329ns 1397994 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76283369ns 1397996 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76283428ns 1397999 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76283448ns 1398000 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76283488ns 1398002 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76283547ns 1398005 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76283567ns 1398006 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76283606ns 1398008 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76283666ns 1398011 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76283686ns 1398012 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76283725ns 1398014 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76283785ns 1398017 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76283804ns 1398018 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76283844ns 1398020 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76283903ns 1398023 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76283923ns 1398024 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76283963ns 1398026 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76284022ns 1398029 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76284042ns 1398030 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76284081ns 1398032 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76284141ns 1398035 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76284161ns 1398036 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76284200ns 1398038 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76284260ns 1398041 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76284279ns 1398042 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76284319ns 1398044 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76284378ns 1398047 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76284398ns 1398048 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76284438ns 1398050 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76284497ns 1398053 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76284517ns 1398054 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76284557ns 1398056 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76284616ns 1398059 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76284636ns 1398060 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76284675ns 1398062 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76284735ns 1398065 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76284754ns 1398066 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76284794ns 1398068 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76284853ns 1398071 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76284873ns 1398072 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76284913ns 1398074 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76284972ns 1398077 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76284992ns 1398078 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76285032ns 1398080 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76285091ns 1398083 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76285111ns 1398084 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76285150ns 1398086 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76285210ns 1398089 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76285229ns 1398090 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76285269ns 1398092 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76285328ns 1398095 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76285348ns 1398096 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76285388ns 1398098 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76285447ns 1398101 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76285467ns 1398102 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76285507ns 1398104 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76285566ns 1398107 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76285586ns 1398108 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76285625ns 1398110 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76285685ns 1398113 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76285704ns 1398114 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76285744ns 1398116 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76285803ns 1398119 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76285823ns 1398120 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76285863ns 1398122 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76285922ns 1398125 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76285942ns 1398126 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76285982ns 1398128 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76286041ns 1398131 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76286061ns 1398132 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76286100ns 1398134 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76286160ns 1398137 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76286179ns 1398138 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76286219ns 1398140 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76286278ns 1398143 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76286298ns 1398144 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76286338ns 1398146 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76286397ns 1398149 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76286417ns 1398150 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76286457ns 1398152 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76286516ns 1398155 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76286536ns 1398156 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76286575ns 1398158 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76286635ns 1398161 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76286654ns 1398162 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76286694ns 1398164 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76286753ns 1398167 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76286773ns 1398168 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76286813ns 1398170 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76286872ns 1398173 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76286892ns 1398174 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76286932ns 1398176 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76286991ns 1398179 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76287011ns 1398180 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76287050ns 1398182 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76287110ns 1398185 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76287129ns 1398186 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76287169ns 1398188 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76287228ns 1398191 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76287248ns 1398192 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76287288ns 1398194 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76287347ns 1398197 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76287367ns 1398198 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76287407ns 1398200 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76287466ns 1398203 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76287486ns 1398204 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76287525ns 1398206 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76287585ns 1398209 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76287604ns 1398210 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76287644ns 1398212 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76287703ns 1398215 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76287723ns 1398216 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76287763ns 1398218 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76287822ns 1398221 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76287842ns 1398222 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76287882ns 1398224 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76287941ns 1398227 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76287961ns 1398228 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76288000ns 1398230 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76288060ns 1398233 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76288079ns 1398234 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76288119ns 1398236 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76288178ns 1398239 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76288198ns 1398240 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76288238ns 1398242 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76288297ns 1398245 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76288317ns 1398246 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76288357ns 1398248 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76288416ns 1398251 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76288436ns 1398252 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76288475ns 1398254 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76288535ns 1398257 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76288554ns 1398258 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76288594ns 1398260 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76288653ns 1398263 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76288673ns 1398264 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76288713ns 1398266 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76288772ns 1398269 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76288792ns 1398270 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76288832ns 1398272 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76288891ns 1398275 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76288911ns 1398276 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76288950ns 1398278 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76289010ns 1398281 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76289029ns 1398282 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76289069ns 1398284 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76289128ns 1398287 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76289148ns 1398288 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76289188ns 1398290 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76289247ns 1398293 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76289267ns 1398294 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76289307ns 1398296 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76289366ns 1398299 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76289386ns 1398300 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76289425ns 1398302 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76289485ns 1398305 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76289505ns 1398306 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76289544ns 1398308 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76289603ns 1398311 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76289623ns 1398312 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76289663ns 1398314 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76289722ns 1398317 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76289742ns 1398318 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76289782ns 1398320 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76289841ns 1398323 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76289861ns 1398324 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76289900ns 1398326 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76289960ns 1398329 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76289980ns 1398330 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76290019ns 1398332 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76290078ns 1398335 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76290098ns 1398336 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76290138ns 1398338 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76290197ns 1398341 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76290217ns 1398342 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76290257ns 1398344 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76290316ns 1398347 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76290336ns 1398348 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76290375ns 1398350 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76290435ns 1398353 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76290455ns 1398354 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76290494ns 1398356 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76290553ns 1398359 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76290573ns 1398360 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76290613ns 1398362 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76290672ns 1398365 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76290692ns 1398366 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76290732ns 1398368 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76290791ns 1398371 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76290811ns 1398372 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76290850ns 1398374 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76290910ns 1398377 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76290930ns 1398378 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76290969ns 1398380 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76291028ns 1398383 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76291048ns 1398384 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76291088ns 1398386 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76291147ns 1398389 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76291167ns 1398390 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76291207ns 1398392 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76291266ns 1398395 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76291286ns 1398396 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76291325ns 1398398 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76291385ns 1398401 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76291405ns 1398402 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76291444ns 1398404 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76291503ns 1398407 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76291523ns 1398408 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76291563ns 1398410 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76291622ns 1398413 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76291642ns 1398414 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76291682ns 1398416 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76291741ns 1398419 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76291761ns 1398420 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76291800ns 1398422 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76291860ns 1398425 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76291880ns 1398426 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76291919ns 1398428 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76291979ns 1398431 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76291998ns 1398432 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76292038ns 1398434 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76292097ns 1398437 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76292117ns 1398438 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76292157ns 1398440 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76292216ns 1398443 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76292236ns 1398444 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76292275ns 1398446 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76292335ns 1398449 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76292355ns 1398450 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76292394ns 1398452 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76292454ns 1398455 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76292473ns 1398456 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76292513ns 1398458 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76292572ns 1398461 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76292592ns 1398462 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76292632ns 1398464 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76292691ns 1398467 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76292711ns 1398468 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76292750ns 1398470 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76292810ns 1398473 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76292830ns 1398474 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76292869ns 1398476 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76292929ns 1398479 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76292948ns 1398480 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76292988ns 1398482 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76293047ns 1398485 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76293067ns 1398486 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76293107ns 1398488 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76293166ns 1398491 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76293186ns 1398492 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76293225ns 1398494 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76293285ns 1398497 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76293305ns 1398498 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76293344ns 1398500 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76293404ns 1398503 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76293423ns 1398504 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76293463ns 1398506 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76293522ns 1398509 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76293542ns 1398510 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76293582ns 1398512 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76293641ns 1398515 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76293661ns 1398516 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76293700ns 1398518 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76293760ns 1398521 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76293780ns 1398522 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76293819ns 1398524 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76293879ns 1398527 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76293898ns 1398528 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76293938ns 1398530 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76293997ns 1398533 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76294017ns 1398534 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76294057ns 1398536 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76294116ns 1398539 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76294136ns 1398540 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76294175ns 1398542 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76294235ns 1398545 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76294255ns 1398546 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76294294ns 1398548 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76294354ns 1398551 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76294373ns 1398552 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76294413ns 1398554 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76294472ns 1398557 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76294492ns 1398558 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76294532ns 1398560 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76294591ns 1398563 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76294611ns 1398564 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76294650ns 1398566 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76294710ns 1398569 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76294730ns 1398570 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76294769ns 1398572 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76294829ns 1398575 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76294848ns 1398576 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76294888ns 1398578 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76294947ns 1398581 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76294967ns 1398582 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76295007ns 1398584 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76295066ns 1398587 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76295086ns 1398588 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76295125ns 1398590 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76295185ns 1398593 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76295205ns 1398594 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76295244ns 1398596 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76295304ns 1398599 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76295323ns 1398600 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76295363ns 1398602 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76295422ns 1398605 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76295442ns 1398606 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76295482ns 1398608 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76295541ns 1398611 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76295561ns 1398612 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76295600ns 1398614 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76295660ns 1398617 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76295680ns 1398618 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76295719ns 1398620 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76295779ns 1398623 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76295798ns 1398624 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76295838ns 1398626 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76295897ns 1398629 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76295917ns 1398630 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76295957ns 1398632 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76296016ns 1398635 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76296036ns 1398636 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76296075ns 1398638 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76296135ns 1398641 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76296155ns 1398642 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76296194ns 1398644 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76296254ns 1398647 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76296273ns 1398648 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76296313ns 1398650 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76296372ns 1398653 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76296392ns 1398654 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76296432ns 1398656 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76296491ns 1398659 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76296511ns 1398660 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76296550ns 1398662 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76296610ns 1398665 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76296630ns 1398666 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76296669ns 1398668 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76296729ns 1398671 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76296748ns 1398672 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76296788ns 1398674 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76296847ns 1398677 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76296867ns 1398678 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76296907ns 1398680 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76296966ns 1398683 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76296986ns 1398684 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76297025ns 1398686 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76297085ns 1398689 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76297105ns 1398690 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76297144ns 1398692 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76297204ns 1398695 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76297223ns 1398696 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76297263ns 1398698 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76297322ns 1398701 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76297342ns 1398702 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76297382ns 1398704 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76297441ns 1398707 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76297461ns 1398708 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76297500ns 1398710 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76297560ns 1398713 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76297580ns 1398714 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76297619ns 1398716 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76297679ns 1398719 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76297698ns 1398720 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76297738ns 1398722 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76297797ns 1398725 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76297817ns 1398726 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76297857ns 1398728 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76297916ns 1398731 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76297936ns 1398732 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76297975ns 1398734 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76298035ns 1398737 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76298055ns 1398738 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76298094ns 1398740 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76298154ns 1398743 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76298173ns 1398744 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76298213ns 1398746 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76298272ns 1398749 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76298292ns 1398750 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76298332ns 1398752 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76298391ns 1398755 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76298411ns 1398756 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76298450ns 1398758 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76298510ns 1398761 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76298530ns 1398762 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76298569ns 1398764 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76298629ns 1398767 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76298648ns 1398768 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76298688ns 1398770 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76298747ns 1398773 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76298767ns 1398774 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76298807ns 1398776 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76298866ns 1398779 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76298886ns 1398780 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76298925ns 1398782 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76298985ns 1398785 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76299005ns 1398786 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76299044ns 1398788 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76299104ns 1398791 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76299123ns 1398792 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76299163ns 1398794 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76299222ns 1398797 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76299242ns 1398798 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76299282ns 1398800 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76299341ns 1398803 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76299361ns 1398804 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76299401ns 1398806 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76299460ns 1398809 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76299480ns 1398810 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76299519ns 1398812 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76299579ns 1398815 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76299598ns 1398816 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76299638ns 1398818 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76299697ns 1398821 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76299717ns 1398822 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76299757ns 1398824 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76299816ns 1398827 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76299836ns 1398828 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76299876ns 1398830 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76299935ns 1398833 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76299955ns 1398834 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76299994ns 1398836 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76300054ns 1398839 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76300073ns 1398840 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76300113ns 1398842 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76300172ns 1398845 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76300192ns 1398846 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76300232ns 1398848 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76300291ns 1398851 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76300311ns 1398852 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76300351ns 1398854 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76300410ns 1398857 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76300430ns 1398858 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76300469ns 1398860 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76300529ns 1398863 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76300548ns 1398864 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76300588ns 1398866 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76300647ns 1398869 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76300667ns 1398870 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76300707ns 1398872 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76300766ns 1398875 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76300786ns 1398876 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76300826ns 1398878 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76300885ns 1398881 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76300905ns 1398882 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76300944ns 1398884 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76301004ns 1398887 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76301023ns 1398888 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76301063ns 1398890 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76301122ns 1398893 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76301142ns 1398894 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76301182ns 1398896 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76301241ns 1398899 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76301261ns 1398900 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76301301ns 1398902 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76301360ns 1398905 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76301380ns 1398906 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76301419ns 1398908 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76301479ns 1398911 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76301498ns 1398912 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76301538ns 1398914 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76301597ns 1398917 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76301617ns 1398918 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76301657ns 1398920 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76301716ns 1398923 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76301736ns 1398924 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76301776ns 1398926 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76301835ns 1398929 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76301855ns 1398930 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76301894ns 1398932 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76301954ns 1398935 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76301973ns 1398936 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76302013ns 1398938 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76302072ns 1398941 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76302092ns 1398942 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76302132ns 1398944 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76302191ns 1398947 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76302211ns 1398948 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76302251ns 1398950 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76302310ns 1398953 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76302330ns 1398954 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76302369ns 1398956 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76302429ns 1398959 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76302448ns 1398960 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76302488ns 1398962 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76302547ns 1398965 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76302567ns 1398966 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76302607ns 1398968 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76302666ns 1398971 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76302686ns 1398972 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76302726ns 1398974 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76302785ns 1398977 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76302805ns 1398978 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76302844ns 1398980 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76302904ns 1398983 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76302923ns 1398984 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76302963ns 1398986 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76303022ns 1398989 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76303042ns 1398990 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76303082ns 1398992 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76303141ns 1398995 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76303161ns 1398996 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76303201ns 1398998 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76303260ns 1399001 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76303280ns 1399002 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76303319ns 1399004 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76303379ns 1399007 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76303398ns 1399008 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76303438ns 1399010 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76303497ns 1399013 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76303517ns 1399014 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76303557ns 1399016 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76303616ns 1399019 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76303636ns 1399020 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76303676ns 1399022 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76303735ns 1399025 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76303755ns 1399026 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76303794ns 1399028 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76303854ns 1399031 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76303873ns 1399032 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76303913ns 1399034 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76303972ns 1399037 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76303992ns 1399038 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76304032ns 1399040 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76304091ns 1399043 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76304111ns 1399044 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76304151ns 1399046 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76304210ns 1399049 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76304230ns 1399050 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76304269ns 1399052 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76304329ns 1399055 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76304349ns 1399056 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76304388ns 1399058 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76304447ns 1399061 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76304467ns 1399062 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76304507ns 1399064 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76304566ns 1399067 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76304586ns 1399068 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76304626ns 1399070 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76304685ns 1399073 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76304705ns 1399074 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76304744ns 1399076 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76304804ns 1399079 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76304824ns 1399080 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76304863ns 1399082 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76304922ns 1399085 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76304942ns 1399086 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76304982ns 1399088 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76305041ns 1399091 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76305061ns 1399092 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76305101ns 1399094 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76305160ns 1399097 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76305180ns 1399098 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76305219ns 1399100 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76305279ns 1399103 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76305299ns 1399104 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76305338ns 1399106 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76305397ns 1399109 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76305417ns 1399110 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76305457ns 1399112 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76305516ns 1399115 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76305536ns 1399116 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76305576ns 1399118 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76305635ns 1399121 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76305655ns 1399122 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76305694ns 1399124 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76305754ns 1399127 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76305774ns 1399128 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76305813ns 1399130 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76305872ns 1399133 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76305892ns 1399134 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76305932ns 1399136 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76305991ns 1399139 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76306011ns 1399140 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76306051ns 1399142 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76306110ns 1399145 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76306130ns 1399146 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76306169ns 1399148 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76306229ns 1399151 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76306249ns 1399152 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76306288ns 1399154 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76306347ns 1399157 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76306367ns 1399158 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76306407ns 1399160 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76306466ns 1399163 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76306486ns 1399164 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76306526ns 1399166 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76306585ns 1399169 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76306605ns 1399170 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76306644ns 1399172 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76306704ns 1399175 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76306724ns 1399176 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76306763ns 1399178 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76306823ns 1399181 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76306842ns 1399182 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76306882ns 1399184 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76306941ns 1399187 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76306961ns 1399188 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76307001ns 1399190 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76307060ns 1399193 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76307080ns 1399194 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76307119ns 1399196 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76307179ns 1399199 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76307199ns 1399200 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76307238ns 1399202 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76307298ns 1399205 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76307317ns 1399206 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76307357ns 1399208 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76307416ns 1399211 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76307436ns 1399212 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76307476ns 1399214 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76307535ns 1399217 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76307555ns 1399218 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76307594ns 1399220 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76307654ns 1399223 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76307674ns 1399224 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76307713ns 1399226 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76307773ns 1399229 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76307792ns 1399230 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76307832ns 1399232 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76307891ns 1399235 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76307911ns 1399236 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76307951ns 1399238 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76308010ns 1399241 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76308030ns 1399242 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76308069ns 1399244 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76308129ns 1399247 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76308149ns 1399248 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76308188ns 1399250 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76308248ns 1399253 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76308267ns 1399254 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76308307ns 1399256 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76308366ns 1399259 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76308386ns 1399260 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76308426ns 1399262 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76308485ns 1399265 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76308505ns 1399266 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76308544ns 1399268 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76308604ns 1399271 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76308624ns 1399272 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76308663ns 1399274 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76308723ns 1399277 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76308742ns 1399278 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76308782ns 1399280 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76308841ns 1399283 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76308861ns 1399284 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76308901ns 1399286 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76308960ns 1399289 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76308980ns 1399290 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76309019ns 1399292 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76309079ns 1399295 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76309099ns 1399296 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76309138ns 1399298 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76309198ns 1399301 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76309217ns 1399302 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76309257ns 1399304 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76309316ns 1399307 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76309336ns 1399308 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76309376ns 1399310 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76309435ns 1399313 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76309455ns 1399314 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76309494ns 1399316 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76309554ns 1399319 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76309574ns 1399320 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76309613ns 1399322 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76309673ns 1399325 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76309692ns 1399326 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76309732ns 1399328 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76309791ns 1399331 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76309811ns 1399332 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76309851ns 1399334 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76309910ns 1399337 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76309930ns 1399338 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76309969ns 1399340 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76310029ns 1399343 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76310049ns 1399344 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76310088ns 1399346 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76310148ns 1399349 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76310167ns 1399350 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76310207ns 1399352 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76310266ns 1399355 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76310286ns 1399356 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76310326ns 1399358 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76310385ns 1399361 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76310405ns 1399362 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76310444ns 1399364 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76310504ns 1399367 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76310524ns 1399368 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76310563ns 1399370 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76310623ns 1399373 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76310642ns 1399374 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76310682ns 1399376 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76310741ns 1399379 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76310761ns 1399380 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76310801ns 1399382 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76310860ns 1399385 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76310880ns 1399386 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76310919ns 1399388 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76310979ns 1399391 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76310999ns 1399392 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76311038ns 1399394 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76311098ns 1399397 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76311117ns 1399398 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76311157ns 1399400 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76311216ns 1399403 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76311236ns 1399404 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76311276ns 1399406 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76311335ns 1399409 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76311355ns 1399410 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76311394ns 1399412 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76311454ns 1399415 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76311474ns 1399416 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76311513ns 1399418 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76311573ns 1399421 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76311592ns 1399422 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76311632ns 1399424 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76311691ns 1399427 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76311711ns 1399428 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76311751ns 1399430 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76311810ns 1399433 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76311830ns 1399434 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76311869ns 1399436 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76311929ns 1399439 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76311949ns 1399440 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76311988ns 1399442 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76312048ns 1399445 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76312067ns 1399446 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76312107ns 1399448 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76312166ns 1399451 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76312186ns 1399452 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76312226ns 1399454 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76312285ns 1399457 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76312305ns 1399458 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76312344ns 1399460 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76312404ns 1399463 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76312424ns 1399464 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76312463ns 1399466 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76312523ns 1399469 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76312542ns 1399470 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76312582ns 1399472 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76312641ns 1399475 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76312661ns 1399476 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76312701ns 1399478 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76312760ns 1399481 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76312780ns 1399482 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76312819ns 1399484 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76312879ns 1399487 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76312899ns 1399488 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76312938ns 1399490 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76312998ns 1399493 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76313017ns 1399494 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76313057ns 1399496 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76313116ns 1399499 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76313136ns 1399500 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76313176ns 1399502 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76313235ns 1399505 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76313255ns 1399506 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76313294ns 1399508 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76313354ns 1399511 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76313374ns 1399512 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76313413ns 1399514 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76313473ns 1399517 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76313492ns 1399518 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76313532ns 1399520 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76313591ns 1399523 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76313611ns 1399524 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76313651ns 1399526 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76313710ns 1399529 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76313730ns 1399530 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76313769ns 1399532 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76313829ns 1399535 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76313849ns 1399536 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76313888ns 1399538 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76313948ns 1399541 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76313967ns 1399542 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76314007ns 1399544 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76314066ns 1399547 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76314086ns 1399548 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76314126ns 1399550 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76314185ns 1399553 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76314205ns 1399554 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76314245ns 1399556 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76314304ns 1399559 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76314324ns 1399560 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76314363ns 1399562 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76314423ns 1399565 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76314442ns 1399566 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76314482ns 1399568 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76314541ns 1399571 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76314561ns 1399572 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76314601ns 1399574 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76314660ns 1399577 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76314680ns 1399578 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76314720ns 1399580 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76314779ns 1399583 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76314799ns 1399584 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76314838ns 1399586 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76314898ns 1399589 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76314917ns 1399590 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76314957ns 1399592 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76315016ns 1399595 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76315036ns 1399596 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76315076ns 1399598 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76315135ns 1399601 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76315155ns 1399602 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76315195ns 1399604 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76315254ns 1399607 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76315274ns 1399608 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76315313ns 1399610 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76315373ns 1399613 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76315392ns 1399614 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76315432ns 1399616 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76315491ns 1399619 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76315511ns 1399620 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76315551ns 1399622 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76315610ns 1399625 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76315630ns 1399626 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76315670ns 1399628 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76315729ns 1399631 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76315749ns 1399632 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76315788ns 1399634 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76315848ns 1399637 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76315867ns 1399638 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76315907ns 1399640 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76315966ns 1399643 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76315986ns 1399644 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76316026ns 1399646 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76316085ns 1399649 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76316105ns 1399650 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76316145ns 1399652 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76316204ns 1399655 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76316224ns 1399656 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76316263ns 1399658 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76316323ns 1399661 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76316342ns 1399662 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76316382ns 1399664 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76316441ns 1399667 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76316461ns 1399668 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76316501ns 1399670 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76316560ns 1399673 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76316580ns 1399674 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76316620ns 1399676 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76316679ns 1399679 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76316699ns 1399680 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76316738ns 1399682 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76316798ns 1399685 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76316817ns 1399686 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76316857ns 1399688 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76316916ns 1399691 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76316936ns 1399692 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76316976ns 1399694 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76317035ns 1399697 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76317055ns 1399698 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76317095ns 1399700 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76317154ns 1399703 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76317174ns 1399704 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76317213ns 1399706 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76317273ns 1399709 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76317292ns 1399710 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76317332ns 1399712 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76317391ns 1399715 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76317411ns 1399716 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76317451ns 1399718 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76317510ns 1399721 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76317530ns 1399722 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76317570ns 1399724 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76317629ns 1399727 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76317649ns 1399728 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76317688ns 1399730 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76317748ns 1399733 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76317767ns 1399734 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76317807ns 1399736 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76317866ns 1399739 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76317886ns 1399740 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76317926ns 1399742 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76317985ns 1399745 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76318005ns 1399746 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76318045ns 1399748 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76318104ns 1399751 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76318124ns 1399752 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76318163ns 1399754 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76318223ns 1399757 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76318242ns 1399758 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76318282ns 1399760 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76318341ns 1399763 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76318361ns 1399764 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76318401ns 1399766 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76318460ns 1399769 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76318480ns 1399770 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76318520ns 1399772 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76318579ns 1399775 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76318599ns 1399776 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76318638ns 1399778 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76318698ns 1399781 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76318717ns 1399782 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76318757ns 1399784 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76318816ns 1399787 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76318836ns 1399788 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76318876ns 1399790 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76318935ns 1399793 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76318955ns 1399794 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76318995ns 1399796 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76319054ns 1399799 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76319074ns 1399800 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76319113ns 1399802 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76319173ns 1399805 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76319193ns 1399806 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76319232ns 1399808 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76319291ns 1399811 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76319311ns 1399812 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76319351ns 1399814 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76319410ns 1399817 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76319430ns 1399818 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76319470ns 1399820 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76319529ns 1399823 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76319549ns 1399824 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76319588ns 1399826 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76319648ns 1399829 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76319668ns 1399830 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76319707ns 1399832 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76319766ns 1399835 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76319786ns 1399836 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76319826ns 1399838 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76319885ns 1399841 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76319905ns 1399842 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76319945ns 1399844 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76320004ns 1399847 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76320024ns 1399848 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76320063ns 1399850 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76320123ns 1399853 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76320143ns 1399854 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76320182ns 1399856 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76320241ns 1399859 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76320261ns 1399860 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76320301ns 1399862 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76320360ns 1399865 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76320380ns 1399866 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76320420ns 1399868 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76320479ns 1399871 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76320499ns 1399872 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76320538ns 1399874 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76320598ns 1399877 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76320618ns 1399878 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76320657ns 1399880 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76320716ns 1399883 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76320736ns 1399884 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76320776ns 1399886 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76320835ns 1399889 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76320855ns 1399890 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76320895ns 1399892 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76320954ns 1399895 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76320974ns 1399896 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76321013ns 1399898 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76321073ns 1399901 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76321093ns 1399902 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76321132ns 1399904 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76321191ns 1399907 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76321211ns 1399908 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76321251ns 1399910 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76321310ns 1399913 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76321330ns 1399914 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76321370ns 1399916 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76321429ns 1399919 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76321449ns 1399920 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76321488ns 1399922 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76321548ns 1399925 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76321568ns 1399926 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76321607ns 1399928 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76321667ns 1399931 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76321686ns 1399932 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76321726ns 1399934 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76321785ns 1399937 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76321805ns 1399938 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76321845ns 1399940 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76321904ns 1399943 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76321924ns 1399944 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76321963ns 1399946 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76322023ns 1399949 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76322043ns 1399950 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76322082ns 1399952 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76322142ns 1399955 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76322161ns 1399956 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76322201ns 1399958 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76322260ns 1399961 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76322280ns 1399962 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76322320ns 1399964 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76322379ns 1399967 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76322399ns 1399968 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76322438ns 1399970 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76322498ns 1399973 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76322518ns 1399974 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76322557ns 1399976 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76322617ns 1399979 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76322636ns 1399980 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76322676ns 1399982 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76322735ns 1399985 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76322755ns 1399986 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76322795ns 1399988 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76322854ns 1399991 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76322874ns 1399992 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76322913ns 1399994 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76322973ns 1399997 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76322993ns 1399998 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76323032ns 1400000 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76323092ns 1400003 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76323111ns 1400004 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76323151ns 1400006 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76323210ns 1400009 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76323230ns 1400010 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76323270ns 1400012 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76323329ns 1400015 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76323349ns 1400016 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76323388ns 1400018 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76323448ns 1400021 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76323468ns 1400022 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76323507ns 1400024 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76323567ns 1400027 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76323586ns 1400028 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76323626ns 1400030 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76323685ns 1400033 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76323705ns 1400034 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76323745ns 1400036 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76323804ns 1400039 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76323824ns 1400040 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76323863ns 1400042 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76323923ns 1400045 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76323943ns 1400046 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76323982ns 1400048 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76324042ns 1400051 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76324061ns 1400052 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76324101ns 1400054 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76324160ns 1400057 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76324180ns 1400058 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76324220ns 1400060 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76324279ns 1400063 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76324299ns 1400064 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76324338ns 1400066 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76324398ns 1400069 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76324418ns 1400070 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76324457ns 1400072 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76324517ns 1400075 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76324536ns 1400076 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76324576ns 1400078 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76324635ns 1400081 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76324655ns 1400082 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76324695ns 1400084 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76324754ns 1400087 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76324774ns 1400088 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76324813ns 1400090 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76324873ns 1400093 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76324893ns 1400094 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76324932ns 1400096 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76324992ns 1400099 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76325011ns 1400100 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76325051ns 1400102 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76325110ns 1400105 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76325130ns 1400106 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76325170ns 1400108 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76325229ns 1400111 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76325249ns 1400112 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76325288ns 1400114 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76325348ns 1400117 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76325368ns 1400118 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76325407ns 1400120 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76325467ns 1400123 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76325486ns 1400124 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76325526ns 1400126 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76325585ns 1400129 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76325605ns 1400130 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76325645ns 1400132 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76325704ns 1400135 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76325724ns 1400136 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76325763ns 1400138 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76325823ns 1400141 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76325843ns 1400142 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76325882ns 1400144 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76325942ns 1400147 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76325961ns 1400148 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76326001ns 1400150 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76326060ns 1400153 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76326080ns 1400154 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76326120ns 1400156 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76326179ns 1400159 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76326199ns 1400160 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76326238ns 1400162 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76326298ns 1400165 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76326318ns 1400166 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76326357ns 1400168 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76326417ns 1400171 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76326436ns 1400172 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76326476ns 1400174 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76326535ns 1400177 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76326555ns 1400178 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76326595ns 1400180 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76326654ns 1400183 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76326674ns 1400184 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76326713ns 1400186 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76326773ns 1400189 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76326793ns 1400190 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76326832ns 1400192 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76326892ns 1400195 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76326911ns 1400196 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76326951ns 1400198 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76327010ns 1400201 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76327030ns 1400202 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76327070ns 1400204 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76327129ns 1400207 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76327149ns 1400208 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76327188ns 1400210 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76327248ns 1400213 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76327268ns 1400214 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76327307ns 1400216 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76327367ns 1400219 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76327386ns 1400220 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76327426ns 1400222 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76327485ns 1400225 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76327505ns 1400226 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76327545ns 1400228 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76327604ns 1400231 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76327624ns 1400232 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76327663ns 1400234 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76327723ns 1400237 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76327743ns 1400238 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76327782ns 1400240 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76327842ns 1400243 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76327861ns 1400244 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76327901ns 1400246 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76327960ns 1400249 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76327980ns 1400250 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76328020ns 1400252 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76328079ns 1400255 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76328099ns 1400256 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76328138ns 1400258 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76328198ns 1400261 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76328218ns 1400262 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76328257ns 1400264 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76328317ns 1400267 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76328336ns 1400268 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76328376ns 1400270 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76328435ns 1400273 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76328455ns 1400274 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76328495ns 1400276 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76328554ns 1400279 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76328574ns 1400280 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76328613ns 1400282 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76328673ns 1400285 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76328693ns 1400286 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76328732ns 1400288 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76328792ns 1400291 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76328811ns 1400292 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76328851ns 1400294 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76328910ns 1400297 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76328930ns 1400298 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76328970ns 1400300 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76329029ns 1400303 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76329049ns 1400304 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76329089ns 1400306 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76329148ns 1400309 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76329168ns 1400310 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76329207ns 1400312 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76329267ns 1400315 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76329286ns 1400316 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76329326ns 1400318 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76329385ns 1400321 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76329405ns 1400322 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76329445ns 1400324 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76329504ns 1400327 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76329524ns 1400328 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76329564ns 1400330 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76329623ns 1400333 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76329643ns 1400334 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76329682ns 1400336 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76329742ns 1400339 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76329761ns 1400340 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76329801ns 1400342 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76329860ns 1400345 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76329880ns 1400346 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76329920ns 1400348 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76329979ns 1400351 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76329999ns 1400352 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76330039ns 1400354 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76330098ns 1400357 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76330118ns 1400358 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76330157ns 1400360 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76330217ns 1400363 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76330236ns 1400364 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76330276ns 1400366 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76330335ns 1400369 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76330355ns 1400370 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76330395ns 1400372 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76330454ns 1400375 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76330474ns 1400376 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76330514ns 1400378 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76330573ns 1400381 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76330593ns 1400382 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76330632ns 1400384 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76330692ns 1400387 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76330711ns 1400388 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76330751ns 1400390 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76330810ns 1400393 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76330830ns 1400394 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76330870ns 1400396 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76330929ns 1400399 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76330949ns 1400400 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76330989ns 1400402 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76331048ns 1400405 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76331068ns 1400406 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76331107ns 1400408 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76331167ns 1400411 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76331186ns 1400412 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76331226ns 1400414 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76331285ns 1400417 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76331305ns 1400418 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76331345ns 1400420 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76331404ns 1400423 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76331424ns 1400424 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76331464ns 1400426 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76331523ns 1400429 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76331543ns 1400430 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76331582ns 1400432 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76331642ns 1400435 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76331661ns 1400436 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76331701ns 1400438 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76331760ns 1400441 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76331780ns 1400442 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76331820ns 1400444 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76331879ns 1400447 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76331899ns 1400448 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76331939ns 1400450 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76331998ns 1400453 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76332018ns 1400454 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76332057ns 1400456 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76332117ns 1400459 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76332136ns 1400460 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76332176ns 1400462 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76332235ns 1400465 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76332255ns 1400466 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76332295ns 1400468 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76332354ns 1400471 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76332374ns 1400472 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76332414ns 1400474 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76332473ns 1400477 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76332493ns 1400478 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76332532ns 1400480 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76332592ns 1400483 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76332611ns 1400484 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76332651ns 1400486 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76332710ns 1400489 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76332730ns 1400490 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76332770ns 1400492 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76332829ns 1400495 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76332849ns 1400496 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76332889ns 1400498 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76332948ns 1400501 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76332968ns 1400502 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76333007ns 1400504 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76333067ns 1400507 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76333086ns 1400508 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76333126ns 1400510 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76333185ns 1400513 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76333205ns 1400514 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76333245ns 1400516 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76333304ns 1400519 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76333324ns 1400520 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76333364ns 1400522 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76333423ns 1400525 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76333443ns 1400526 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76333482ns 1400528 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76333542ns 1400531 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76333561ns 1400532 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76333601ns 1400534 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76333660ns 1400537 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76333680ns 1400538 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76333720ns 1400540 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76333779ns 1400543 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76333799ns 1400544 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76333839ns 1400546 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76333898ns 1400549 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76333918ns 1400550 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76333957ns 1400552 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76334017ns 1400555 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76334037ns 1400556 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76334076ns 1400558 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76334135ns 1400561 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76334155ns 1400562 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76334195ns 1400564 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76334254ns 1400567 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76334274ns 1400568 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76334314ns 1400570 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76334373ns 1400573 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76334393ns 1400574 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76334432ns 1400576 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76334492ns 1400579 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76334512ns 1400580 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76334551ns 1400582 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76334610ns 1400585 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76334630ns 1400586 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76334670ns 1400588 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76334729ns 1400591 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76334749ns 1400592 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76334789ns 1400594 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76334848ns 1400597 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76334868ns 1400598 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76334907ns 1400600 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76334967ns 1400603 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76334987ns 1400604 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76335026ns 1400606 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76335085ns 1400609 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76335105ns 1400610 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76335145ns 1400612 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76335204ns 1400615 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76335224ns 1400616 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76335264ns 1400618 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76335323ns 1400621 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76335343ns 1400622 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76335382ns 1400624 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76335442ns 1400627 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76335462ns 1400628 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76335501ns 1400630 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76335560ns 1400633 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76335580ns 1400634 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76335620ns 1400636 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76335679ns 1400639 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76335699ns 1400640 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76335739ns 1400642 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76335798ns 1400645 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76335818ns 1400646 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76335857ns 1400648 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76335917ns 1400651 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76335937ns 1400652 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76335976ns 1400654 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76336035ns 1400657 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76336055ns 1400658 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76336095ns 1400660 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76336154ns 1400663 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76336174ns 1400664 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76336214ns 1400666 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76336273ns 1400669 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76336293ns 1400670 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76336332ns 1400672 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76336392ns 1400675 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76336412ns 1400676 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76336451ns 1400678 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76336511ns 1400681 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76336530ns 1400682 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76336570ns 1400684 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76336629ns 1400687 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76336649ns 1400688 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76336689ns 1400690 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76336748ns 1400693 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76336768ns 1400694 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76336807ns 1400696 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76336867ns 1400699 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76336887ns 1400700 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76336926ns 1400702 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76336986ns 1400705 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76337005ns 1400706 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76337045ns 1400708 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76337104ns 1400711 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76337124ns 1400712 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76337164ns 1400714 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76337223ns 1400717 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76337243ns 1400718 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76337282ns 1400720 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76337342ns 1400723 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76337362ns 1400724 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76337401ns 1400726 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76337461ns 1400729 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76337480ns 1400730 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76337520ns 1400732 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76337579ns 1400735 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76337599ns 1400736 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76337639ns 1400738 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76337698ns 1400741 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76337718ns 1400742 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76337757ns 1400744 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76337817ns 1400747 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76337837ns 1400748 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76337876ns 1400750 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76337936ns 1400753 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76337955ns 1400754 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76337995ns 1400756 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76338054ns 1400759 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76338074ns 1400760 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76338114ns 1400762 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76338173ns 1400765 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76338193ns 1400766 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76338232ns 1400768 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76338292ns 1400771 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76338312ns 1400772 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76338351ns 1400774 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76338411ns 1400777 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76338430ns 1400778 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76338470ns 1400780 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76338529ns 1400783 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76338549ns 1400784 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76338589ns 1400786 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76338648ns 1400789 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76338668ns 1400790 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76338707ns 1400792 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76338767ns 1400795 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76338787ns 1400796 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76338826ns 1400798 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76338886ns 1400801 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76338905ns 1400802 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76338945ns 1400804 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76339004ns 1400807 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76339024ns 1400808 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76339064ns 1400810 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76339123ns 1400813 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76339143ns 1400814 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76339182ns 1400816 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76339242ns 1400819 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76339262ns 1400820 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76339301ns 1400822 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76339361ns 1400825 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76339380ns 1400826 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76339420ns 1400828 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76339479ns 1400831 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76339499ns 1400832 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76339539ns 1400834 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76339598ns 1400837 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76339618ns 1400838 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76339657ns 1400840 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76339717ns 1400843 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76339737ns 1400844 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76339776ns 1400846 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76339836ns 1400849 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76339855ns 1400850 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76339895ns 1400852 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76339954ns 1400855 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76339974ns 1400856 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76340014ns 1400858 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76340073ns 1400861 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76340093ns 1400862 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76340132ns 1400864 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76340192ns 1400867 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76340212ns 1400868 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76340251ns 1400870 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76340311ns 1400873 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76340330ns 1400874 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76340370ns 1400876 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76340429ns 1400879 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76340449ns 1400880 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76340489ns 1400882 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76340548ns 1400885 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76340568ns 1400886 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76340607ns 1400888 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76340667ns 1400891 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76340687ns 1400892 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76340726ns 1400894 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76340786ns 1400897 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76340805ns 1400898 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76340845ns 1400900 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76340904ns 1400903 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76340924ns 1400904 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76340964ns 1400906 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76341023ns 1400909 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76341043ns 1400910 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76341082ns 1400912 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76341142ns 1400915 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76341162ns 1400916 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76341201ns 1400918 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76341261ns 1400921 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76341280ns 1400922 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76341320ns 1400924 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76341379ns 1400927 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76341399ns 1400928 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76341439ns 1400930 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76341498ns 1400933 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76341518ns 1400934 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76341557ns 1400936 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76341617ns 1400939 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76341637ns 1400940 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76341676ns 1400942 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76341736ns 1400945 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76341755ns 1400946 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76341795ns 1400948 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76341854ns 1400951 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76341874ns 1400952 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76341914ns 1400954 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76341973ns 1400957 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76341993ns 1400958 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76342032ns 1400960 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76342092ns 1400963 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76342112ns 1400964 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76342151ns 1400966 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76342211ns 1400969 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76342230ns 1400970 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76342270ns 1400972 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76342329ns 1400975 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76342349ns 1400976 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76342389ns 1400978 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76342448ns 1400981 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76342468ns 1400982 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76342507ns 1400984 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76342567ns 1400987 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76342587ns 1400988 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76342626ns 1400990 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76342686ns 1400993 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76342705ns 1400994 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76342745ns 1400996 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76342804ns 1400999 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76342824ns 1401000 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76342864ns 1401002 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76342923ns 1401005 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76342943ns 1401006 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76342982ns 1401008 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76343042ns 1401011 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76343062ns 1401012 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76343101ns 1401014 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76343161ns 1401017 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76343180ns 1401018 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76343220ns 1401020 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76343279ns 1401023 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76343299ns 1401024 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76343339ns 1401026 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76343398ns 1401029 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76343418ns 1401030 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76343457ns 1401032 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76343517ns 1401035 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76343537ns 1401036 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76343576ns 1401038 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76343636ns 1401041 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76343655ns 1401042 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76343695ns 1401044 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76343754ns 1401047 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76343774ns 1401048 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76343814ns 1401050 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76343873ns 1401053 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76343893ns 1401054 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76343933ns 1401056 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76343992ns 1401059 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76344012ns 1401060 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76344051ns 1401062 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76344111ns 1401065 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76344130ns 1401066 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76344170ns 1401068 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76344229ns 1401071 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76344249ns 1401072 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76344289ns 1401074 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76344348ns 1401077 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76344368ns 1401078 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76344408ns 1401080 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76344467ns 1401083 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76344487ns 1401084 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76344526ns 1401086 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76344586ns 1401089 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76344605ns 1401090 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76344645ns 1401092 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76344704ns 1401095 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76344724ns 1401096 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76344764ns 1401098 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76344823ns 1401101 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76344843ns 1401102 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76344883ns 1401104 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76344942ns 1401107 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76344962ns 1401108 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76345001ns 1401110 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76345061ns 1401113 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76345080ns 1401114 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76345120ns 1401116 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76345179ns 1401119 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76345199ns 1401120 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76345239ns 1401122 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76345298ns 1401125 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76345318ns 1401126 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76345358ns 1401128 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76345417ns 1401131 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76345437ns 1401132 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76345476ns 1401134 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76345536ns 1401137 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76345555ns 1401138 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76345595ns 1401140 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76345654ns 1401143 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76345674ns 1401144 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76345714ns 1401146 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76345773ns 1401149 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76345793ns 1401150 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76345833ns 1401152 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76345892ns 1401155 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76345912ns 1401156 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76345951ns 1401158 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76346011ns 1401161 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76346030ns 1401162 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76346070ns 1401164 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76346129ns 1401167 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76346149ns 1401168 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76346189ns 1401170 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76346248ns 1401173 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76346268ns 1401174 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76346308ns 1401176 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76346367ns 1401179 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76346387ns 1401180 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76346426ns 1401182 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76346486ns 1401185 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76346505ns 1401186 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76346545ns 1401188 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76346604ns 1401191 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76346624ns 1401192 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76346664ns 1401194 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76346723ns 1401197 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76346743ns 1401198 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76346783ns 1401200 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76346842ns 1401203 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76346862ns 1401204 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76346901ns 1401206 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76346961ns 1401209 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76346980ns 1401210 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76347020ns 1401212 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76347079ns 1401215 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76347099ns 1401216 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76347139ns 1401218 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76347198ns 1401221 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76347218ns 1401222 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76347258ns 1401224 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76347317ns 1401227 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76347337ns 1401228 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76347376ns 1401230 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76347436ns 1401233 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76347455ns 1401234 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76347495ns 1401236 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76347554ns 1401239 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76347574ns 1401240 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76347614ns 1401242 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76347673ns 1401245 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76347693ns 1401246 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76347733ns 1401248 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76347792ns 1401251 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76347812ns 1401252 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76347851ns 1401254 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76347911ns 1401257 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76347930ns 1401258 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76347970ns 1401260 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76348029ns 1401263 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76348049ns 1401264 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76348089ns 1401266 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76348148ns 1401269 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76348168ns 1401270 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76348208ns 1401272 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76348267ns 1401275 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76348287ns 1401276 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76348326ns 1401278 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76348386ns 1401281 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76348405ns 1401282 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76348445ns 1401284 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76348504ns 1401287 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76348524ns 1401288 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76348564ns 1401290 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76348623ns 1401293 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76348643ns 1401294 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76348683ns 1401296 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76348742ns 1401299 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76348762ns 1401300 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76348801ns 1401302 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76348861ns 1401305 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76348881ns 1401306 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76348920ns 1401308 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76348979ns 1401311 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76348999ns 1401312 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76349039ns 1401314 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76349098ns 1401317 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76349118ns 1401318 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76349158ns 1401320 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76349217ns 1401323 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76349237ns 1401324 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76349276ns 1401326 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76349336ns 1401329 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76349356ns 1401330 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76349395ns 1401332 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76349454ns 1401335 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76349474ns 1401336 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76349514ns 1401338 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76349573ns 1401341 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76349593ns 1401342 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76349633ns 1401344 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76349692ns 1401347 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76349712ns 1401348 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76349751ns 1401350 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76349811ns 1401353 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76349831ns 1401354 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76349870ns 1401356 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76349929ns 1401359 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76349949ns 1401360 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76349989ns 1401362 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76350048ns 1401365 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76350068ns 1401366 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76350108ns 1401368 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76350167ns 1401371 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76350187ns 1401372 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76350226ns 1401374 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76350286ns 1401377 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76350306ns 1401378 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76350345ns 1401380 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76350404ns 1401383 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76350424ns 1401384 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76350464ns 1401386 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76350523ns 1401389 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76350543ns 1401390 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76350583ns 1401392 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76350642ns 1401395 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76350662ns 1401396 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76350701ns 1401398 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76350761ns 1401401 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76350781ns 1401402 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76350820ns 1401404 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76350879ns 1401407 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76350899ns 1401408 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76350939ns 1401410 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76350998ns 1401413 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76351018ns 1401414 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76351058ns 1401416 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76351117ns 1401419 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76351137ns 1401420 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76351176ns 1401422 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76351236ns 1401425 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76351256ns 1401426 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76351295ns 1401428 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76351355ns 1401431 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76351374ns 1401432 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76351414ns 1401434 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76351473ns 1401437 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76351493ns 1401438 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76351533ns 1401440 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76351592ns 1401443 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76351612ns 1401444 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76351651ns 1401446 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76351711ns 1401449 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76351731ns 1401450 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76351770ns 1401452 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76351830ns 1401455 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76351849ns 1401456 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76351889ns 1401458 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76351948ns 1401461 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76351968ns 1401462 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76352008ns 1401464 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76352067ns 1401467 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76352087ns 1401468 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76352126ns 1401470 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76352186ns 1401473 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76352206ns 1401474 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76352245ns 1401476 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76352305ns 1401479 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76352324ns 1401480 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76352364ns 1401482 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76352423ns 1401485 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76352443ns 1401486 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76352483ns 1401488 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76352542ns 1401491 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76352562ns 1401492 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76352601ns 1401494 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76352661ns 1401497 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76352681ns 1401498 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76352720ns 1401500 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76352780ns 1401503 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76352799ns 1401504 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76352839ns 1401506 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76352898ns 1401509 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76352918ns 1401510 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76352958ns 1401512 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76353017ns 1401515 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76353037ns 1401516 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76353076ns 1401518 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76353136ns 1401521 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76353156ns 1401522 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76353195ns 1401524 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76353255ns 1401527 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76353274ns 1401528 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76353314ns 1401530 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76353373ns 1401533 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76353393ns 1401534 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76353433ns 1401536 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76353492ns 1401539 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76353512ns 1401540 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76353551ns 1401542 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76353611ns 1401545 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76353631ns 1401546 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76353670ns 1401548 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76353730ns 1401551 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76353749ns 1401552 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76353789ns 1401554 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76353848ns 1401557 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76353868ns 1401558 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76353908ns 1401560 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76353967ns 1401563 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76353987ns 1401564 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76354026ns 1401566 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76354086ns 1401569 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76354106ns 1401570 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76354145ns 1401572 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76354205ns 1401575 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76354224ns 1401576 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76354264ns 1401578 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76354323ns 1401581 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76354343ns 1401582 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76354383ns 1401584 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76354442ns 1401587 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76354462ns 1401588 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76354501ns 1401590 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76354561ns 1401593 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76354581ns 1401594 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76354620ns 1401596 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76354680ns 1401599 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76354699ns 1401600 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76354739ns 1401602 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76354798ns 1401605 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76354818ns 1401606 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76354858ns 1401608 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76354917ns 1401611 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76354937ns 1401612 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76354976ns 1401614 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76355036ns 1401617 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76355056ns 1401618 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76355095ns 1401620 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76355155ns 1401623 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76355174ns 1401624 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76355214ns 1401626 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76355273ns 1401629 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76355293ns 1401630 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76355333ns 1401632 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76355392ns 1401635 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76355412ns 1401636 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76355451ns 1401638 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76355511ns 1401641 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76355531ns 1401642 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76355570ns 1401644 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76355630ns 1401647 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76355649ns 1401648 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76355689ns 1401650 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76355748ns 1401653 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76355768ns 1401654 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76355808ns 1401656 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76355867ns 1401659 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76355887ns 1401660 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76355926ns 1401662 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76355986ns 1401665 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76356006ns 1401666 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76356045ns 1401668 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76356105ns 1401671 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76356124ns 1401672 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76356164ns 1401674 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76356223ns 1401677 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76356243ns 1401678 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76356283ns 1401680 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76356342ns 1401683 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76356362ns 1401684 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76356401ns 1401686 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76356461ns 1401689 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76356481ns 1401690 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76356520ns 1401692 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76356580ns 1401695 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76356599ns 1401696 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76356639ns 1401698 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76356698ns 1401701 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76356718ns 1401702 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76356758ns 1401704 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76356817ns 1401707 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76356837ns 1401708 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76356876ns 1401710 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76356936ns 1401713 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76356956ns 1401714 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76356995ns 1401716 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76357055ns 1401719 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76357074ns 1401720 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76357114ns 1401722 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76357173ns 1401725 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76357193ns 1401726 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76357233ns 1401728 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76357292ns 1401731 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76357312ns 1401732 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76357351ns 1401734 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76357411ns 1401737 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76357431ns 1401738 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76357470ns 1401740 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76357530ns 1401743 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76357549ns 1401744 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76357589ns 1401746 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76357648ns 1401749 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76357668ns 1401750 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76357708ns 1401752 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76357767ns 1401755 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76357787ns 1401756 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76357826ns 1401758 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76357886ns 1401761 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76357906ns 1401762 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76357945ns 1401764 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76358005ns 1401767 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76358024ns 1401768 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76358064ns 1401770 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76358123ns 1401773 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76358143ns 1401774 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76358183ns 1401776 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76358242ns 1401779 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76358262ns 1401780 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76358301ns 1401782 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76358361ns 1401785 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76358381ns 1401786 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76358420ns 1401788 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76358480ns 1401791 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76358499ns 1401792 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76358539ns 1401794 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76358598ns 1401797 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76358618ns 1401798 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76358658ns 1401800 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76358717ns 1401803 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76358737ns 1401804 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76358777ns 1401806 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76358836ns 1401809 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76358856ns 1401810 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76358895ns 1401812 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76358955ns 1401815 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76358974ns 1401816 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76359014ns 1401818 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76359073ns 1401821 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76359093ns 1401822 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76359133ns 1401824 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76359192ns 1401827 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76359212ns 1401828 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76359252ns 1401830 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76359311ns 1401833 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76359331ns 1401834 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76359370ns 1401836 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76359430ns 1401839 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76359449ns 1401840 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76359489ns 1401842 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76359548ns 1401845 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76359568ns 1401846 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76359608ns 1401848 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76359667ns 1401851 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76359687ns 1401852 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76359727ns 1401854 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76359786ns 1401857 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76359806ns 1401858 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76359845ns 1401860 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76359905ns 1401863 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76359924ns 1401864 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76359964ns 1401866 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76360023ns 1401869 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76360043ns 1401870 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76360083ns 1401872 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76360142ns 1401875 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76360162ns 1401876 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76360202ns 1401878 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76360261ns 1401881 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76360281ns 1401882 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76360320ns 1401884 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76360380ns 1401887 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76360399ns 1401888 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76360439ns 1401890 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76360498ns 1401893 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76360518ns 1401894 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76360558ns 1401896 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76360617ns 1401899 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76360637ns 1401900 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76360677ns 1401902 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76360736ns 1401905 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76360756ns 1401906 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76360795ns 1401908 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76360855ns 1401911 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76360874ns 1401912 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76360914ns 1401914 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76360973ns 1401917 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76360993ns 1401918 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76361033ns 1401920 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76361092ns 1401923 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76361112ns 1401924 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76361152ns 1401926 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76361211ns 1401929 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76361231ns 1401930 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76361270ns 1401932 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76361330ns 1401935 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76361349ns 1401936 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76361389ns 1401938 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76361448ns 1401941 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76361468ns 1401942 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76361508ns 1401944 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76361567ns 1401947 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76361587ns 1401948 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76361627ns 1401950 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76361686ns 1401953 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76361706ns 1401954 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76361745ns 1401956 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76361805ns 1401959 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76361824ns 1401960 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76361864ns 1401962 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76361923ns 1401965 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76361943ns 1401966 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76361983ns 1401968 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76362042ns 1401971 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76362062ns 1401972 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76362102ns 1401974 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76362161ns 1401977 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76362181ns 1401978 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76362220ns 1401980 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76362280ns 1401983 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76362299ns 1401984 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76362339ns 1401986 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76362398ns 1401989 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76362418ns 1401990 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76362458ns 1401992 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76362517ns 1401995 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76362537ns 1401996 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76362577ns 1401998 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76362636ns 1402001 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76362656ns 1402002 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76362695ns 1402004 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76362755ns 1402007 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76362774ns 1402008 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76362814ns 1402010 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76362873ns 1402013 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76362893ns 1402014 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76362933ns 1402016 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76362992ns 1402019 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76363012ns 1402020 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76363052ns 1402022 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76363111ns 1402025 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76363131ns 1402026 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76363170ns 1402028 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76363230ns 1402031 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76363249ns 1402032 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76363289ns 1402034 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76363348ns 1402037 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76363368ns 1402038 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76363408ns 1402040 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76363467ns 1402043 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76363487ns 1402044 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76363527ns 1402046 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76363586ns 1402049 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76363606ns 1402050 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76363645ns 1402052 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76363705ns 1402055 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76363725ns 1402056 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76363764ns 1402058 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76363823ns 1402061 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76363843ns 1402062 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76363883ns 1402064 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76363942ns 1402067 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76363962ns 1402068 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76364002ns 1402070 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76364061ns 1402073 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76364081ns 1402074 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76364120ns 1402076 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76364180ns 1402079 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76364200ns 1402080 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76364239ns 1402082 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76364298ns 1402085 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76364318ns 1402086 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76364358ns 1402088 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76364417ns 1402091 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76364437ns 1402092 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76364477ns 1402094 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76364536ns 1402097 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76364556ns 1402098 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76364595ns 1402100 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76364655ns 1402103 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76364675ns 1402104 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76364714ns 1402106 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76364773ns 1402109 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76364793ns 1402110 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76364833ns 1402112 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76364892ns 1402115 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76364912ns 1402116 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76364952ns 1402118 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76365011ns 1402121 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76365031ns 1402122 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76365070ns 1402124 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76365130ns 1402127 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76365150ns 1402128 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76365189ns 1402130 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76365248ns 1402133 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76365268ns 1402134 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76365308ns 1402136 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76365367ns 1402139 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76365387ns 1402140 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76365427ns 1402142 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76365486ns 1402145 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76365506ns 1402146 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76365545ns 1402148 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76365605ns 1402151 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76365625ns 1402152 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76365664ns 1402154 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76365723ns 1402157 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76365743ns 1402158 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76365783ns 1402160 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76365842ns 1402163 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76365862ns 1402164 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76365902ns 1402166 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76365961ns 1402169 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76365981ns 1402170 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76366020ns 1402172 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76366080ns 1402175 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76366100ns 1402176 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76366139ns 1402178 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76366199ns 1402181 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76366218ns 1402182 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76366258ns 1402184 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76366317ns 1402187 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76366337ns 1402188 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76366377ns 1402190 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76366436ns 1402193 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76366456ns 1402194 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76366495ns 1402196 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76366555ns 1402199 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76366575ns 1402200 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76366614ns 1402202 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76366674ns 1402205 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76366693ns 1402206 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76366733ns 1402208 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76366792ns 1402211 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76366812ns 1402212 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76366852ns 1402214 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76366911ns 1402217 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76366931ns 1402218 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76366970ns 1402220 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76367030ns 1402223 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76367050ns 1402224 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76367089ns 1402226 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76367149ns 1402229 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76367168ns 1402230 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76367208ns 1402232 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76367267ns 1402235 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76367287ns 1402236 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76367327ns 1402238 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76367386ns 1402241 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76367406ns 1402242 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76367445ns 1402244 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76367505ns 1402247 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76367525ns 1402248 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76367564ns 1402250 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76367624ns 1402253 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76367643ns 1402254 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76367683ns 1402256 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76367742ns 1402259 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76367762ns 1402260 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76367802ns 1402262 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76367861ns 1402265 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76367881ns 1402266 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76367920ns 1402268 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76367980ns 1402271 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76368000ns 1402272 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76368039ns 1402274 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76368099ns 1402277 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76368118ns 1402278 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76368158ns 1402280 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76368217ns 1402283 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76368237ns 1402284 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76368277ns 1402286 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76368336ns 1402289 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76368356ns 1402290 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76368395ns 1402292 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76368455ns 1402295 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76368475ns 1402296 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76368514ns 1402298 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76368574ns 1402301 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76368593ns 1402302 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76368633ns 1402304 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76368692ns 1402307 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76368712ns 1402308 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76368752ns 1402310 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76368811ns 1402313 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76368831ns 1402314 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76368870ns 1402316 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76368930ns 1402319 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76368950ns 1402320 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76368989ns 1402322 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76369049ns 1402325 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76369068ns 1402326 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76369108ns 1402328 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76369167ns 1402331 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76369187ns 1402332 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76369227ns 1402334 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76369286ns 1402337 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76369306ns 1402338 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76369345ns 1402340 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76369405ns 1402343 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76369425ns 1402344 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76369464ns 1402346 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76369524ns 1402349 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76369543ns 1402350 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76369583ns 1402352 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76369642ns 1402355 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76369662ns 1402356 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76369702ns 1402358 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76369761ns 1402361 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76369781ns 1402362 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76369820ns 1402364 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76369880ns 1402367 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76369900ns 1402368 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76369939ns 1402370 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76369999ns 1402373 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76370018ns 1402374 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76370058ns 1402376 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76370117ns 1402379 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76370137ns 1402380 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76370177ns 1402382 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76370236ns 1402385 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76370256ns 1402386 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76370295ns 1402388 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76370355ns 1402391 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76370375ns 1402392 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76370414ns 1402394 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76370474ns 1402397 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76370493ns 1402398 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76370533ns 1402400 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76370592ns 1402403 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76370612ns 1402404 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76370652ns 1402406 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76370711ns 1402409 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76370731ns 1402410 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76370770ns 1402412 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76370830ns 1402415 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76370850ns 1402416 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76370889ns 1402418 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76370949ns 1402421 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76370968ns 1402422 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76371008ns 1402424 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76371067ns 1402427 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76371087ns 1402428 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76371127ns 1402430 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76371186ns 1402433 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76371206ns 1402434 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76371245ns 1402436 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76371305ns 1402439 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76371325ns 1402440 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76371364ns 1402442 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76371424ns 1402445 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76371443ns 1402446 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76371483ns 1402448 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76371542ns 1402451 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76371562ns 1402452 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76371602ns 1402454 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76371661ns 1402457 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76371681ns 1402458 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76371720ns 1402460 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76371780ns 1402463 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76371800ns 1402464 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76371839ns 1402466 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76371899ns 1402469 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76371918ns 1402470 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76371958ns 1402472 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76372017ns 1402475 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76372037ns 1402476 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76372077ns 1402478 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76372136ns 1402481 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76372156ns 1402482 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76372195ns 1402484 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76372255ns 1402487 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76372275ns 1402488 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76372314ns 1402490 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76372374ns 1402493 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76372393ns 1402494 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76372433ns 1402496 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76372492ns 1402499 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76372512ns 1402500 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76372552ns 1402502 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76372611ns 1402505 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76372631ns 1402506 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76372670ns 1402508 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76372730ns 1402511 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76372750ns 1402512 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76372789ns 1402514 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76372849ns 1402517 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76372868ns 1402518 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76372908ns 1402520 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76372967ns 1402523 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76372987ns 1402524 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76373027ns 1402526 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76373086ns 1402529 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76373106ns 1402530 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76373145ns 1402532 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76373205ns 1402535 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76373225ns 1402536 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76373264ns 1402538 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76373324ns 1402541 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76373343ns 1402542 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76373383ns 1402544 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76373442ns 1402547 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76373462ns 1402548 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76373502ns 1402550 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76373561ns 1402553 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76373581ns 1402554 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76373621ns 1402556 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76373680ns 1402559 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76373700ns 1402560 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76373739ns 1402562 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76373799ns 1402565 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76373818ns 1402566 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76373858ns 1402568 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76373917ns 1402571 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76373937ns 1402572 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76373977ns 1402574 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76374036ns 1402577 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76374056ns 1402578 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76374096ns 1402580 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76374155ns 1402583 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76374175ns 1402584 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76374214ns 1402586 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76374274ns 1402589 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76374293ns 1402590 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76374333ns 1402592 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76374392ns 1402595 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76374412ns 1402596 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76374452ns 1402598 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76374511ns 1402601 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76374531ns 1402602 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76374571ns 1402604 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76374630ns 1402607 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76374650ns 1402608 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76374689ns 1402610 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76374749ns 1402613 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76374768ns 1402614 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76374808ns 1402616 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76374867ns 1402619 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76374887ns 1402620 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76374927ns 1402622 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76374986ns 1402625 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76375006ns 1402626 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76375046ns 1402628 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76375105ns 1402631 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76375125ns 1402632 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76375164ns 1402634 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76375224ns 1402637 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76375243ns 1402638 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76375283ns 1402640 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76375342ns 1402643 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76375362ns 1402644 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76375402ns 1402646 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76375461ns 1402649 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76375481ns 1402650 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76375521ns 1402652 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76375580ns 1402655 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76375600ns 1402656 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76375639ns 1402658 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76375699ns 1402661 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76375718ns 1402662 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76375758ns 1402664 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76375817ns 1402667 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76375837ns 1402668 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76375877ns 1402670 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76375936ns 1402673 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76375956ns 1402674 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76375996ns 1402676 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76376055ns 1402679 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76376075ns 1402680 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76376114ns 1402682 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76376174ns 1402685 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76376193ns 1402686 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76376233ns 1402688 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76376292ns 1402691 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76376312ns 1402692 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76376352ns 1402694 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76376411ns 1402697 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76376431ns 1402698 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76376471ns 1402700 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76376530ns 1402703 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76376550ns 1402704 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76376589ns 1402706 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76376649ns 1402709 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76376668ns 1402710 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76376708ns 1402712 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76376767ns 1402715 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76376787ns 1402716 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76376827ns 1402718 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76376886ns 1402721 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76376906ns 1402722 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76376946ns 1402724 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76377005ns 1402727 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76377025ns 1402728 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76377064ns 1402730 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76377124ns 1402733 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76377143ns 1402734 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76377183ns 1402736 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76377242ns 1402739 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76377262ns 1402740 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76377302ns 1402742 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76377361ns 1402745 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76377381ns 1402746 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76377421ns 1402748 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76377480ns 1402751 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76377500ns 1402752 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76377539ns 1402754 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76377599ns 1402757 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76377618ns 1402758 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76377658ns 1402760 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76377717ns 1402763 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76377737ns 1402764 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76377777ns 1402766 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76377836ns 1402769 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76377856ns 1402770 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76377896ns 1402772 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76377955ns 1402775 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76377975ns 1402776 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76378014ns 1402778 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76378074ns 1402781 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76378093ns 1402782 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76378133ns 1402784 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76378192ns 1402787 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76378212ns 1402788 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76378252ns 1402790 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76378311ns 1402793 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76378331ns 1402794 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76378371ns 1402796 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76378430ns 1402799 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76378450ns 1402800 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76378489ns 1402802 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76378549ns 1402805 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76378569ns 1402806 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76378608ns 1402808 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76378667ns 1402811 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76378687ns 1402812 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76378727ns 1402814 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76378786ns 1402817 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76378806ns 1402818 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76378846ns 1402820 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76378905ns 1402823 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76378925ns 1402824 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76378964ns 1402826 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76379024ns 1402829 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76379044ns 1402830 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76379083ns 1402832 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76379142ns 1402835 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76379162ns 1402836 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76379202ns 1402838 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76379261ns 1402841 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76379281ns 1402842 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76379321ns 1402844 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76379380ns 1402847 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76379400ns 1402848 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76379439ns 1402850 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76379499ns 1402853 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76379519ns 1402854 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76379558ns 1402856 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76379617ns 1402859 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76379637ns 1402860 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76379677ns 1402862 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76379736ns 1402865 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76379756ns 1402866 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76379796ns 1402868 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76379855ns 1402871 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76379875ns 1402872 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76379914ns 1402874 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76379974ns 1402877 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76379994ns 1402878 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76380033ns 1402880 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76380092ns 1402883 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76380112ns 1402884 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76380152ns 1402886 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76380211ns 1402889 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76380231ns 1402890 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76380271ns 1402892 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76380330ns 1402895 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76380350ns 1402896 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76380389ns 1402898 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76380449ns 1402901 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76380469ns 1402902 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76380508ns 1402904 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76380567ns 1402907 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76380587ns 1402908 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76380627ns 1402910 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76380686ns 1402913 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76380706ns 1402914 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76380746ns 1402916 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76380805ns 1402919 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76380825ns 1402920 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76380864ns 1402922 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76380924ns 1402925 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76380944ns 1402926 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76380983ns 1402928 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76381043ns 1402931 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76381062ns 1402932 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76381102ns 1402934 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76381161ns 1402937 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76381181ns 1402938 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76381221ns 1402940 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76381280ns 1402943 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76381300ns 1402944 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76381339ns 1402946 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76381399ns 1402949 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76381419ns 1402950 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76381458ns 1402952 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76381518ns 1402955 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76381537ns 1402956 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76381577ns 1402958 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76381636ns 1402961 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76381656ns 1402962 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76381696ns 1402964 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76381755ns 1402967 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76381775ns 1402968 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76381814ns 1402970 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76381874ns 1402973 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76381894ns 1402974 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76381933ns 1402976 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76381993ns 1402979 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76382012ns 1402980 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76382052ns 1402982 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76382111ns 1402985 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76382131ns 1402986 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76382171ns 1402988 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76382230ns 1402991 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76382250ns 1402992 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76382289ns 1402994 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76382349ns 1402997 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76382369ns 1402998 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76382408ns 1403000 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76382468ns 1403003 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76382487ns 1403004 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76382527ns 1403006 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76382586ns 1403009 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76382606ns 1403010 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76382646ns 1403012 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76382705ns 1403015 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76382725ns 1403016 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76382764ns 1403018 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76382824ns 1403021 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76382844ns 1403022 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76382883ns 1403024 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76382943ns 1403027 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76382962ns 1403028 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76383002ns 1403030 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76383061ns 1403033 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76383081ns 1403034 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76383121ns 1403036 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76383180ns 1403039 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76383200ns 1403040 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76383239ns 1403042 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76383299ns 1403045 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76383319ns 1403046 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76383358ns 1403048 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76383418ns 1403051 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76383437ns 1403052 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76383477ns 1403054 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76383536ns 1403057 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76383556ns 1403058 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76383596ns 1403060 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76383655ns 1403063 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76383675ns 1403064 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76383714ns 1403066 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76383774ns 1403069 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76383794ns 1403070 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76383833ns 1403072 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76383893ns 1403075 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76383912ns 1403076 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76383952ns 1403078 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76384011ns 1403081 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76384031ns 1403082 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76384071ns 1403084 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76384132ns 1403087 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76384152ns 1403088 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76384192ns 1403090 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76384253ns 1403093 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76384273ns 1403094 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76384313ns 1403096 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76384374ns 1403099 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76384394ns 1403100 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76384434ns 1403102 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76384495ns 1403105 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76384515ns 1403106 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76384556ns 1403108 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76384616ns 1403111 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76384636ns 1403112 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76384677ns 1403114 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76384737ns 1403117 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76384758ns 1403118 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76384798ns 1403120 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76384858ns 1403123 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76384879ns 1403124 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76384919ns 1403126 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76384980ns 1403129 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76385000ns 1403130 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76385040ns 1403132 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76385101ns 1403135 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76385121ns 1403136 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76385161ns 1403138 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76385222ns 1403141 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76385242ns 1403142 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76385283ns 1403144 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76385343ns 1403147 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76385363ns 1403148 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76385404ns 1403150 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76385464ns 1403153 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76385484ns 1403154 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76385525ns 1403156 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76385585ns 1403159 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76385606ns 1403160 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76385646ns 1403162 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76385707ns 1403165 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76385727ns 1403166 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76385767ns 1403168 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76385828ns 1403171 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76385848ns 1403172 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76385888ns 1403174 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76385949ns 1403177 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76385969ns 1403178 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76386009ns 1403180 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76386070ns 1403183 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76386090ns 1403184 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76386131ns 1403186 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76386191ns 1403189 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76386211ns 1403190 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76386252ns 1403192 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76386312ns 1403195 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76386332ns 1403196 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76386373ns 1403198 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76386433ns 1403201 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76386454ns 1403202 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76386494ns 1403204 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76386555ns 1403207 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76386575ns 1403208 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76386615ns 1403210 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76386676ns 1403213 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76386696ns 1403214 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76386736ns 1403216 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76386797ns 1403219 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76386817ns 1403220 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76386857ns 1403222 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76386918ns 1403225 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76386938ns 1403226 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76386979ns 1403228 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76387039ns 1403231 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76387059ns 1403232 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76387100ns 1403234 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76387160ns 1403237 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76387181ns 1403238 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76387221ns 1403240 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76387282ns 1403243 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76387302ns 1403244 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76387342ns 1403246 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76387403ns 1403249 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76387423ns 1403250 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76387463ns 1403252 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76387524ns 1403255 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76387544ns 1403256 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76387584ns 1403258 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76387645ns 1403261 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76387665ns 1403262 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76387706ns 1403264 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76387766ns 1403267 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76387786ns 1403268 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76387827ns 1403270 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76387887ns 1403273 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76387907ns 1403274 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76387948ns 1403276 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76388008ns 1403279 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76388029ns 1403280 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76388069ns 1403282 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76388130ns 1403285 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76388150ns 1403286 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76388190ns 1403288 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76388251ns 1403291 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76388271ns 1403292 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76388311ns 1403294 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76388372ns 1403297 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76388392ns 1403298 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76388432ns 1403300 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76388493ns 1403303 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76388513ns 1403304 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76388554ns 1403306 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76388614ns 1403309 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76388634ns 1403310 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76388675ns 1403312 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76388735ns 1403315 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76388756ns 1403316 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76388796ns 1403318 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76388856ns 1403321 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76388877ns 1403322 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76388917ns 1403324 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76388978ns 1403327 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76388998ns 1403328 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76389038ns 1403330 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76389099ns 1403333 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76389119ns 1403334 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76389159ns 1403336 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76389220ns 1403339 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76389240ns 1403340 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76389281ns 1403342 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76389341ns 1403345 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76389361ns 1403346 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76389402ns 1403348 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76389462ns 1403351 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76389482ns 1403352 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76389523ns 1403354 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76389583ns 1403357 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76389604ns 1403358 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76389644ns 1403360 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76389705ns 1403363 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76389725ns 1403364 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76389765ns 1403366 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76389826ns 1403369 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76389846ns 1403370 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76389886ns 1403372 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76389947ns 1403375 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76389967ns 1403376 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76390007ns 1403378 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76390068ns 1403381 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76390088ns 1403382 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76390129ns 1403384 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76390189ns 1403387 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76390209ns 1403388 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76390250ns 1403390 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76390310ns 1403393 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76390331ns 1403394 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76390371ns 1403396 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76390431ns 1403399 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76390452ns 1403400 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76390492ns 1403402 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76390553ns 1403405 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76390573ns 1403406 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76390613ns 1403408 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76390674ns 1403411 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76390694ns 1403412 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76390734ns 1403414 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76390795ns 1403417 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76390815ns 1403418 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76390855ns 1403420 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76390916ns 1403423 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76390936ns 1403424 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76390977ns 1403426 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76391037ns 1403429 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76391057ns 1403430 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76391098ns 1403432 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76391158ns 1403435 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76391179ns 1403436 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76391219ns 1403438 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76391280ns 1403441 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76391300ns 1403442 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76391340ns 1403444 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76391401ns 1403447 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76391421ns 1403448 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76391461ns 1403450 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76391522ns 1403453 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76391542ns 1403454 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76391582ns 1403456 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76391643ns 1403459 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76391663ns 1403460 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76391704ns 1403462 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76391764ns 1403465 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76391784ns 1403466 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76391825ns 1403468 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76391885ns 1403471 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76391905ns 1403472 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76391946ns 1403474 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76392006ns 1403477 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76392027ns 1403478 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76392067ns 1403480 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76392128ns 1403483 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76392148ns 1403484 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76392188ns 1403486 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76392249ns 1403489 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76392269ns 1403490 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76392309ns 1403492 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76392370ns 1403495 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76392390ns 1403496 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76392430ns 1403498 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76392491ns 1403501 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76392511ns 1403502 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76392552ns 1403504 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76392612ns 1403507 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76392632ns 1403508 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76392673ns 1403510 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76392733ns 1403513 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76392834ns 1403518 1c000868 0980006f jal x0, 152 +76392875ns 1403520 1c000900 f8810113 addi x2, x2, -120 x2=1c00a7e8 x2:1c00a860 +76392895ns 1403521 1c000904 00112223 sw x1, 4(x2) x1:00000000 x2:1c00a7e8 PA:1c00a7ec +76392915ns 1403522 1c000906 00512423 sw x5, 8(x2) x5:a5a5a5a5 x2:1c00a7e8 PA:1c00a7f0 +76392935ns 1403523 1c000908 00612623 sw x6, 12(x2) x6:a5a5a5a5 x2:1c00a7e8 PA:1c00a7f4 +76392955ns 1403524 1c00090a 00712823 sw x7, 16(x2) x7:a5a5a5a5 x2:1c00a7e8 PA:1c00a7f8 +76392976ns 1403525 1c00090c 00812a23 sw x8, 20(x2) x8:a5a5a5a5 x2:1c00a7e8 PA:1c00a7fc +76392996ns 1403526 1c00090e 00912c23 sw x9, 24(x2) x9:1c008d3c x2:1c00a7e8 PA:1c00a800 +76393016ns 1403527 1c000910 00a12e23 sw x10, 28(x2) x10:00000000 x2:1c00a7e8 PA:1c00a804 +76393036ns 1403528 1c000912 02b12023 sw x11, 32(x2) x11:a5a5a5a5 x2:1c00a7e8 PA:1c00a808 +76393056ns 1403529 1c000914 02c12223 sw x12, 36(x2) x12:a5a5a5a5 x2:1c00a7e8 PA:1c00a80c +76393077ns 1403530 1c000916 02d12423 sw x13, 40(x2) x13:a5a5a5a5 x2:1c00a7e8 PA:1c00a810 +76393097ns 1403531 1c000918 02e12623 sw x14, 44(x2) x14:a5a5a5a5 x2:1c00a7e8 PA:1c00a814 +76393117ns 1403532 1c00091a 02f12823 sw x15, 48(x2) x15:00000000 x2:1c00a7e8 PA:1c00a818 +76393137ns 1403533 1c00091c 03012a23 sw x16, 52(x2) x16:a5a5a5a5 x2:1c00a7e8 PA:1c00a81c +76393157ns 1403534 1c00091e 03112c23 sw x17, 56(x2) x17:a5a5a5a5 x2:1c00a7e8 PA:1c00a820 +76393178ns 1403535 1c000920 03212e23 sw x18, 60(x2) x18:1c009140 x2:1c00a7e8 PA:1c00a824 +76393198ns 1403536 1c000922 05312023 sw x19, 64(x2) x19:a5a5a5a5 x2:1c00a7e8 PA:1c00a828 +76393218ns 1403537 1c000924 05412223 sw x20, 68(x2) x20:a5a5a5a5 x2:1c00a7e8 PA:1c00a82c +76393238ns 1403538 1c000926 05512423 sw x21, 72(x2) x21:a5a5a5a5 x2:1c00a7e8 PA:1c00a830 +76393258ns 1403539 1c000928 05612623 sw x22, 76(x2) x22:a5a5a5a5 x2:1c00a7e8 PA:1c00a834 +76393279ns 1403540 1c00092a 05712823 sw x23, 80(x2) x23:a5a5a5a5 x2:1c00a7e8 PA:1c00a838 +76393299ns 1403541 1c00092c 05812a23 sw x24, 84(x2) x24:a5a5a5a5 x2:1c00a7e8 PA:1c00a83c +76393319ns 1403542 1c00092e 05912c23 sw x25, 88(x2) x25:a5a5a5a5 x2:1c00a7e8 PA:1c00a840 +76393339ns 1403543 1c000930 05a12e23 sw x26, 92(x2) x26:a5a5a5a5 x2:1c00a7e8 PA:1c00a844 +76393359ns 1403544 1c000932 07b12023 sw x27, 96(x2) x27:a5a5a5a5 x2:1c00a7e8 PA:1c00a848 +76393379ns 1403545 1c000934 07c12223 sw x28, 100(x2) x28:a5a5a5a5 x2:1c00a7e8 PA:1c00a84c +76393400ns 1403546 1c000936 07d12423 sw x29, 104(x2) x29:a5a5a5a5 x2:1c00a7e8 PA:1c00a850 +76393420ns 1403547 1c000938 07e12623 sw x30, 108(x2) x30:a5a5a5a5 x2:1c00a7e8 PA:1c00a854 +76393440ns 1403548 1c00093a 07f12823 sw x31, 112(x2) x31:a5a5a5a5 x2:1c00a7e8 PA:1c00a858 +76393460ns 1403549 1c00093c 300022f3 csrrs x5, x0, 0x300 x5=00001880 +76393541ns 1403553 1c000940 06512a23 sw x5, 116(x2) x5:00001880 x2:1c00a7e8 PA:1c00a85c +76393561ns 1403554 1c000942 fe810113 addi x2, x2, -24 x2=1c00a7d0 x2:1c00a7e8 +76393581ns 1403555 1c000944 7c0022f3 csrrs x5, x0, 0x7c0 x5=00000000 +76393602ns 1403556 1c000948 7c102373 csrrs x6, x0, 0x7c1 x6=00000000 +76393622ns 1403557 1c00094c 7c2023f3 csrrs x7, x0, 0x7c2 x7=00000000 +76393642ns 1403558 1c000950 7c402e73 csrrs x28, x0, 0x7c4 x28=00000000 +76393662ns 1403559 1c000954 7c502ef3 csrrs x29, x0, 0x7c5 x29=00000000 +76393682ns 1403560 1c000958 7c602f73 csrrs x30, x0, 0x7c6 x30=00000000 +76393703ns 1403561 1c00095c 00512223 sw x5, 4(x2) x5:00000000 x2:1c00a7d0 PA:1c00a7d4 +76393723ns 1403562 1c00095e 00612423 sw x6, 8(x2) x6:00000000 x2:1c00a7d0 PA:1c00a7d8 +76393743ns 1403563 1c000960 00712623 sw x7, 12(x2) x7:00000000 x2:1c00a7d0 PA:1c00a7dc +76393763ns 1403564 1c000962 01c12823 sw x28, 16(x2) x28:00000000 x2:1c00a7d0 PA:1c00a7e0 +76393783ns 1403565 1c000964 01d12a23 sw x29, 20(x2) x29:00000000 x2:1c00a7d0 PA:1c00a7e4 +76393804ns 1403566 1c000966 01e12c23 sw x30, 24(x2) x30:00000000 x2:1c00a7d0 PA:1c00a7e8 +76393824ns 1403567 1c000968 d541a283 lw x5, -684(x3) x5=1c00a890 x3:1c0093dc PA:1c009130 +76393864ns 1403569 1c00096c 0022a023 sw x2, 0(x5) x2:1c00a7d0 x5:1c00a890 PA:1c00a890 +76393884ns 1403570 1c000970 34202573 csrrs x10, x0, 0x342 x10=8000001a +76393904ns 1403571 1c000974 341025f3 csrrs x11, x0, 0x341 x11=1c00230c +76393925ns 1403572 1c000978 01f55613 srli x12, x10, 0x1f x12=00000001 x10:8000001a +76393945ns 1403573 1c00097c 00060963 beq x12, x0, 18 x12:00000001 +76393965ns 1403574 1c00097e 00b12023 sw x11, 0(x2) x11:1c00230c x2:1c00a7d0 PA:1c00a7d0 +76393985ns 1403575 1c000980 00008117 auipc x2, 0x8000 x2=1c008980 +76394005ns 1403576 1c000984 25412103 lw x2, 596(x2) x2=1c0199b0 x2:1c008980 PA:1c008bd4 +76394026ns 1403577 1c000988 17e020ef jal x1, 8574 x1=1c00098c +76394066ns 1403579 1c002b06 01f57513 andi x10, x10, 31 x10=0000001a x10:8000001a +76394086ns 1403580 1c002b08 00251793 slli x15, x10, 0x2 x15=00000068 x10:0000001a +76394106ns 1403581 1c002b0c 99c18513 addi x10, x3, -1636 x10=1c008d78 x3:1c0093dc +76394127ns 1403582 1c002b10 00f50533 add x10, x10, x15 x10=1c008de0 x10:1c008d78 x15:00000068 +76394147ns 1403583 1c002b12 00052783 lw x15, 0(x10) x15=1c000e42 x10:1c008de0 PA:1c008de0 +76394207ns 1403586 1c002b14 00078067 jalr x0, x15, 0 x15:1c000e42 +76394268ns 1403589 1c000e42 1a10a7b7 lui x15, 0x1a10a000 x15=1a10a000 +76394288ns 1403590 1c000e46 80078793 addi x15, x15, -2048 x15=1a109800 x15:1a10a000 +76394308ns 1403591 1c000e4a 0247a503 lw x10, 36(x15) x10=00000007 x15:1a109800 PA:1a109824 +76394329ns 1403592 1c000e4c a2818793 addi x15, x3, -1496 x15=1c008e04 x3:1c0093dc +76394389ns 1403595 1c000e50 0ff57513 andi x10, x10, 255 x10=00000007 x10:00000007 +76394409ns 1403596 1c000e54 00251713 slli x14, x10, 0x2 x14=0000001c x10:00000007 +76394429ns 1403597 1c000e58 00e787b3 add x15, x15, x14 x15=1c008e20 x15:1c008e04 x14:0000001c +76394450ns 1403598 1c000e5a 0007a703 lw x14, 0(x15) x14=1c003106 x15:1c008e20 PA:1c008e20 +76394490ns 1403600 1c000e5c 00070363 beq x14, x0, 6 x14:1c003106 +76394510ns 1403601 1c000e5e 0007a783 lw x15, 0(x15) x15=1c003106 x15:1c008e20 PA:1c008e20 +76394571ns 1403604 1c000e60 00078067 jalr x0, x15, 0 x15:1c003106 +76394611ns 1403606 1c003106 ff950513 addi x10, x10, -7 x10=00000000 x10:00000007 +76394631ns 1403607 1c003108 00251793 slli x15, x10, 0x2 x15=00000000 x10:00000000 +76394652ns 1403608 1c00310c da418513 addi x10, x3, -604 x10=1c009180 x3:1c0093dc +76394672ns 1403609 1c003110 ff010113 addi x2, x2, -16 x2=1c0199a0 x2:1c0199b0 +76394692ns 1403610 1c003112 00f50533 add x10, x10, x15 x10=1c009180 x10:1c009180 x15:00000000 +76394712ns 1403611 1c003114 00812423 sw x8, 8(x2) x8:a5a5a5a5 x2:1c0199a0 PA:1c0199a8 +76394732ns 1403612 1c003116 00052403 lw x8, 0(x10) x8=1c00b890 x10:1c009180 PA:1c009180 +76394753ns 1403613 1c003118 00112623 sw x1, 12(x2) x1:1c00098c x2:1c0199a0 PA:1c0199ac +76394773ns 1403614 1c00311a 00842783 lw x15, 8(x8) x15=00000000 x8:1c00b890 PA:1c00b898 +76394813ns 1403616 1c00311c 02079263 bne x15, x0, 36 x15:00000000 +76394833ns 1403617 1c00311e 00c42503 lw x10, 12(x8) x10=1c009c98 x8:1c00b890 PA:1c00b89c +76394874ns 1403619 1c003120 00050863 beq x10, x0, 16 x10:1c009c98 +76394894ns 1403620 1c003122 01052703 lw x14, 16(x10) x14=00000001 x10:1c009c98 PA:1c009ca8 +76394914ns 1403621 1c003124 00100793 addi x15, x0, 1 x15=00000001 +76394934ns 1403622 1c003126 00f71363 bne x14, x15, 6 x14:00000001 x15:00000001 +76394954ns 1403623 1c00312a 3b6000ef jal x1, 950 x1=1c00312c +76394995ns 1403625 1c0034e0 ff010113 addi x2, x2, -16 x2=1c019990 x2:1c0199a0 +76395015ns 1403626 1c0034e2 00812423 sw x8, 8(x2) x8:1c00b890 x2:1c019990 PA:1c019998 +76395035ns 1403627 1c0034e4 00a00433 add x8, x0, x10 x8=1c009c98 x10:1c009c98 +76395055ns 1403628 1c0034e6 03452503 lw x10, 52(x10) x10=1c00c288 x10:1c009c98 PA:1c009ccc +76395076ns 1403629 1c0034e8 00112623 sw x1, 12(x2) x1:1c00312c x2:1c019990 PA:1c01999c +76395096ns 1403630 1c0034ea 00050363 beq x10, x0, 6 x10:1c00c288 +76395116ns 1403631 1c0034ec 03c42783 lw x15, 60(x8) x15=1c0033da x8:1c009c98 PA:1c009cd4 +76395177ns 1403634 1c0034ee 000780e7 jalr x1, x15, 0 x1=1c0034f0 x15:1c0033da +76395217ns 1403636 1c0033da fe010113 addi x2, x2, -32 x2=1c019970 x2:1c019990 +76395237ns 1403637 1c0033dc 00112e23 sw x1, 28(x2) x1:1c0034f0 x2:1c019970 PA:1c01998c +76395257ns 1403638 1c0033de 00812c23 sw x8, 24(x2) x8:1c009c98 x2:1c019970 PA:1c019988 +76395278ns 1403639 1c0033e0 30047473 csrrci x8, 0x00000008, 0x300 x8=00001880 +76395358ns 1403643 1c0033e4 342027f3 csrrs x15, x0, 0x342 x15=8000001a +76395379ns 1403644 1c0033e8 00c10593 addi x11, x2, 12 x11=1c01997c x2:1c019970 +76395399ns 1403645 1c0033ea 0007de63 bge x15, x0, 28 x15:8000001a +76395419ns 1403646 1c0033ee 838fe0ef jal x1, -8136 x1=1c0033f2 +76395459ns 1403648 1c001426 ff010113 addi x2, x2, -16 x2=1c019960 x2:1c019970 +76395479ns 1403649 1c001428 00112623 sw x1, 12(x2) x1:1c0033f2 x2:1c019960 PA:1c01996c +76395500ns 1403650 1c00142a 00812423 sw x8, 8(x2) x8:00001880 x2:1c019960 PA:1c019968 +76395520ns 1403651 1c00142c 02051163 bne x10, x0, 34 x10:1c00c288 +76395580ns 1403654 1c00144e 04052703 lw x14, 64(x10) x14=00000000 x10:1c00c288 PA:1c00c2c8 +76395601ns 1403655 1c001450 00a007b3 add x15, x0, x10 x15=1c00c288 x10:1c00c288 +76395621ns 1403656 1c001452 00070c63 beq x14, x0, 24 x14:00000000 +76395681ns 1403659 1c00146a 00052703 lw x14, 0(x10) x14=1c00c288 x10:1c00c288 PA:1c00c288 +76395702ns 1403660 1c00146c 00b00433 add x8, x0, x11 x8=1c01997c x11:1c01997c +76395722ns 1403661 1c00146e 00071e63 bne x14, x0, 28 x14:1c00c288 +76395782ns 1403664 1c00148a 0387a683 lw x13, 56(x15) x13=00000000 x15:1c00c288 PA:1c00c2c0 +76395803ns 1403665 1c00148c 03c7a703 lw x14, 60(x15) x14=000000ff x15:1c00c288 PA:1c00c2c4 +76395823ns 1403666 1c00148e 00000513 addi x10, x0, 0 x10=00000000 +76395843ns 1403667 1c001490 00e6ff63 bgeu x13, x14, 30 x13:00000000 x14:000000ff +76395863ns 1403668 1c001494 0457c703 lbu x14, 69(x15) x14=000000ff x15:1c00c288 PA:1c00c2cd +76395883ns 1403669 1c001498 00168693 addi x13, x13, 1 x13=00000001 x13:00000000 +76395903ns 1403670 1c00149a 02d7ac23 sw x13, 56(x15) x13:00000001 x15:1c00c288 PA:1c00c2c0 +76395924ns 1403671 1c00149c 01871613 slli x12, x14, 0x18 x12=ff000000 x14:000000ff +76395944ns 1403672 1c0014a0 41865613 srai x12, x12, 0x418 x12=ffffffff x12:ff000000 +76395964ns 1403673 1c0014a2 fff00693 addi x13, x0, -1 x13=ffffffff +76395984ns 1403674 1c0014a4 02d61263 bne x12, x13, 36 x12:ffffffff x13:ffffffff +76396004ns 1403675 1c0014a8 0247a703 lw x14, 36(x15) x14=00000000 x15:1c00c288 PA:1c00c2ac +76396045ns 1403677 1c0014aa 00071663 bne x14, x0, 12 x14:00000000 +76396065ns 1403678 1c0014ac 00100513 addi x10, x0, 1 x10=00000001 +76396085ns 1403679 1c0014ae 00c12083 lw x1, 12(x2) x1=1c0033f2 x2:1c019960 PA:1c01996c +76396105ns 1403680 1c0014b0 00812403 lw x8, 8(x2) x8=00001880 x2:1c019960 PA:1c019968 +76396126ns 1403681 1c0014b2 01010113 addi x2, x2, 16 x2=1c019970 x2:1c019960 +76396146ns 1403682 1c0014b4 00008067 jalr x0, x1, 0 x1:1c0033f2 +76396186ns 1403684 1c0033f2 00c12783 lw x15, 12(x2) x15=1c000801 x2:1c019970 PA:1c01997c +76396227ns 1403686 1c0033f4 00078363 beq x15, x0, 6 x15:1c000801 +76396247ns 1403687 1c0033f6 f80fe0ef jal x1, -6272 x1=1c0033fa +76396307ns 1403690 1c001b76 d681a703 lw x14, -664(x3) x14=00000000 x3:1c0093dc PA:1c009144 +76396328ns 1403691 1c001b7a d8c18793 addi x15, x3, -628 x15=1c009168 x3:1c0093dc +76396348ns 1403692 1c001b7e 00070463 beq x14, x0, 8 x14:00000000 +76396408ns 1403695 1c001b86 ff010113 addi x2, x2, -16 x2=1c019960 x2:1c019970 +76396428ns 1403696 1c001b88 00812423 sw x8, 8(x2) x8:00001880 x2:1c019960 PA:1c019968 +76396449ns 1403697 1c001b8a 00112623 sw x1, 12(x2) x1:1c0033fa x2:1c019960 PA:1c01996c +76396469ns 1403698 1c001b8c 0007a023 sw x0, 0(x15) x15:1c009168 PA:1c009168 +76396489ns 1403699 1c001b90 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76396509ns 1403700 1c001b94 0007a783 lw x15, 0(x15) x15=1c00a890 x15:1c009130 PA:1c009130 +76396529ns 1403701 1c001b96 a5a5a737 lui x14, 0xa5a5a000 x14=a5a5a000 +76396550ns 1403702 1c001b9a 5a570713 addi x14, x14, 1445 x14=a5a5a5a5 x14:a5a5a000 +76396570ns 1403703 1c001b9e 0307a783 lw x15, 48(x15) x15=1c00a248 x15:1c00a890 PA:1c00a8c0 +76396590ns 1403704 1c001ba0 d5418413 addi x8, x3, -684 x8=1c009130 x3:1c0093dc +76396610ns 1403705 1c001ba4 0007a603 lw x12, 0(x15) x12=a5a5a5a5 x15:1c00a248 PA:1c00a248 +76396651ns 1403707 1c001ba6 00e61b63 bne x12, x14, 22 x12:a5a5a5a5 x14:a5a5a5a5 +76396671ns 1403708 1c001baa 0047a683 lw x13, 4(x15) x13=a5a5a5a5 x15:1c00a248 PA:1c00a24c +76396711ns 1403710 1c001bac 00c69863 bne x13, x12, 16 x13:a5a5a5a5 x12:a5a5a5a5 +76396731ns 1403711 1c001bb0 0087a703 lw x14, 8(x15) x14=a5a5a5a5 x15:1c00a248 PA:1c00a250 +76396772ns 1403713 1c001bb2 00d71563 bne x14, x13, 10 x14:a5a5a5a5 x13:a5a5a5a5 +76396792ns 1403714 1c001bb6 00c7a783 lw x15, 12(x15) x15=a5a5a5a5 x15:1c00a248 PA:1c00a254 +76396832ns 1403716 1c001bb8 00e78863 beq x15, x14, 16 x15:a5a5a5a5 x14:a5a5a5a5 +76396893ns 1403719 1c001bc8 d701a503 lw x10, -656(x3) x10=00000001 x3:1c0093dc PA:1c00914c +76396913ns 1403720 1c001bcc abeff0ef jal x1, -3394 x1=1c001bd0 +76396953ns 1403722 1c000e8a 000107b7 lui x15, 0x10000 x15=00010000 +76396974ns 1403723 1c000e8c 02f57663 bgeu x10, x15, 44 x10:00000001 x15:00010000 +76396994ns 1403724 1c000e90 0ff00793 addi x15, x0, 255 x15=000000ff +76397014ns 1403725 1c000e94 00a7b7b3 sltu x15, x15, x10 x15=00000000 x15:000000ff x10:00000001 +76397034ns 1403726 1c000e98 00379793 slli x15, x15, 0x3 x15=00000000 x15:00000000 +76397054ns 1403727 1c000e9a 1c009737 lui x14, 0x1c009000 x14=1c009000 +76397075ns 1403728 1c000e9e 02000693 addi x13, x0, 32 x13=00000020 +76397095ns 1403729 1c000ea2 40f686b3 sub x13, x13, x15 x13=00000020 x13:00000020 x15:00000000 +76397115ns 1403730 1c000ea4 00f55533 srl x10, x10, x15 x10=00000001 x10:00000001 x15:00000000 +76397135ns 1403731 1c000ea8 ad470793 addi x15, x14, -1324 x15=1c008ad4 x14:1c009000 +76397155ns 1403732 1c000eac 00f50533 add x10, x10, x15 x10=1c008ad5 x10:00000001 x15:1c008ad4 +76397176ns 1403733 1c000eae 00054503 lbu x10, 0(x10) x10=00000001 x10:1c008ad5 PA:1c008ad5 +76397216ns 1403735 1c000eb2 40a68533 sub x10, x13, x10 x10=0000001f x13:00000020 x10:00000001 +76397236ns 1403736 1c000eb6 00008067 jalr x0, x1, 0 x1:1c001bd0 +76397277ns 1403738 1c001bd0 01f00713 addi x14, x0, 31 x14=0000001f +76397297ns 1403739 1c001bd2 40a70533 sub x10, x14, x10 x10=00000000 x14:0000001f x10:0000001f +76397317ns 1403740 1c001bd6 01400793 addi x15, x0, 20 x15=00000014 +76397337ns 1403741 1c001bd8 02f507b3 mul x15, x10, x15 x15=00000000 x10:00000000 x15:00000014 +76397357ns 1403742 1c001bdc 1c009737 lui x14, 0x1c009000 x14=1c009000 +76397378ns 1403743 1c001be0 c8870693 addi x13, x14, -888 x13=1c008c88 x14:1c009000 +76397398ns 1403744 1c001be4 c8870713 addi x14, x14, -888 x14=1c008c88 x14:1c009000 +76397418ns 1403745 1c001be8 00f686b3 add x13, x13, x15 x13=1c008c88 x13:1c008c88 x15:00000000 +76397438ns 1403746 1c001bea 0006a603 lw x12, 0(x13) x12=00000001 x13:1c008c88 PA:1c008c88 +76397478ns 1403748 1c001bec 02061263 bne x12, x0, 36 x12:00000001 +76397539ns 1403751 1c001c10 0046a603 lw x12, 4(x13) x12=1c00a894 x13:1c008c88 PA:1c008c8c +76397559ns 1403752 1c001c12 00878793 addi x15, x15, 8 x15=00000008 x15:00000000 +76397579ns 1403753 1c001c14 00e787b3 add x15, x15, x14 x15=1c008c90 x15:00000008 x14:1c008c88 +76397600ns 1403754 1c001c16 00462603 lw x12, 4(x12) x12=1c008c90 x12:1c00a894 PA:1c00a898 +76397640ns 1403756 1c001c18 00c6a223 sw x12, 4(x13) x12:1c008c90 x13:1c008c88 PA:1c008c8c +76397660ns 1403757 1c001c1a 00f61463 bne x12, x15, 8 x12:1c008c90 x15:1c008c90 +76397680ns 1403758 1c001c1e 00462783 lw x15, 4(x12) x15=1c00a894 x12:1c008c90 PA:1c008c94 +76397721ns 1403760 1c001c20 00f6a223 sw x15, 4(x13) x15:1c00a894 x13:1c008c88 PA:1c008c8c +76397741ns 1403761 1c001c22 01400793 addi x15, x0, 20 x15=00000014 +76397761ns 1403762 1c001c24 02f50533 mul x10, x10, x15 x10=00000000 x10:00000000 x15:00000014 +76397781ns 1403763 1c001c28 00c12083 lw x1, 12(x2) x1=1c0033fa x2:1c019960 PA:1c01996c +76397802ns 1403764 1c001c2a 00a70733 add x14, x14, x10 x14=1c008c88 x14:1c008c88 x10:00000000 +76397822ns 1403765 1c001c2c 00472783 lw x15, 4(x14) x15=1c00a894 x14:1c008c88 PA:1c008c8c +76397842ns 1403766 1c001c2e 1c009737 lui x14, 0x1c009000 x14=1c009000 +76397862ns 1403767 1c001c32 00c7a783 lw x15, 12(x15) x15=1c00a890 x15:1c00a894 PA:1c00a8a0 +76397903ns 1403769 1c001c34 00f42023 sw x15, 0(x8) x15:1c00a890 x8:1c009130 PA:1c009130 +76397923ns 1403770 1c001c36 00042783 lw x15, 0(x8) x15=1c00a890 x8:1c009130 PA:1c009130 +76397943ns 1403771 1c001c38 00812403 lw x8, 8(x2) x8=00001880 x2:1c019960 PA:1c019968 +76397963ns 1403772 1c001c3a 05878793 addi x15, x15, 88 x15=1c00a8e8 x15:1c00a890 +76397983ns 1403773 1c001c3e c4f72223 sw x15, -956(x14) x15:1c00a8e8 x14:1c009000 PA:1c008c44 +76398003ns 1403774 1c001c42 01010113 addi x2, x2, 16 x2=1c019970 x2:1c019960 +76398024ns 1403775 1c001c44 00008067 jalr x0, x1, 0 x1:1c0033fa +76398084ns 1403778 1c0033fa 30041073 csrrw x0, x8, 0x300 x8:00001880 +76398165ns 1403782 1c0033fe 01c12083 lw x1, 28(x2) x1=1c0034f0 x2:1c019970 PA:1c01998c +76398185ns 1403783 1c003400 01812403 lw x8, 24(x2) x8=1c009c98 x2:1c019970 PA:1c019988 +76398205ns 1403784 1c003402 02010113 addi x2, x2, 32 x2=1c019990 x2:1c019970 +76398226ns 1403785 1c003404 00008067 jalr x0, x1, 0 x1:1c0034f0 +76398266ns 1403787 1c0034f0 00100793 addi x15, x0, 1 x15=00000001 +76398286ns 1403788 1c0034f2 04f40223 sb x15, 68(x8) x15:00000001 x8:1c009c98 PA:1c009cdc +76398306ns 1403789 1c0034f6 00c12083 lw x1, 12(x2) x1=1c00312c x2:1c019990 PA:1c01999c +76398327ns 1403790 1c0034f8 00812403 lw x8, 8(x2) x8=1c00b890 x2:1c019990 PA:1c019998 +76398347ns 1403791 1c0034fa 01010113 addi x2, x2, 16 x2=1c0199a0 x2:1c019990 +76398367ns 1403792 1c0034fc 00008067 jalr x0, x1, 0 x1:1c00312c +76398407ns 1403794 1c00312c 00042623 sw x0, 12(x8) x8:1c00b890 PA:1c00b89c +76398427ns 1403795 1c003130 00800533 add x10, x0, x8 x10=1c00b890 x8:1c00b890 +76398448ns 1403796 1c003132 ac3ff0ef jal x1, -1342 x1=1c003136 +76398488ns 1403798 1c002bf4 300027f3 csrrs x15, x0, 0x300 x15=00001880 +76398569ns 1403802 1c002bf8 300476f3 csrrci x13, 0x00000008, 0x300 x13=00001880 +76398650ns 1403806 1c002bfc 00052783 lw x15, 0(x10) x15=1c00b8b0 x10:1c00b890 PA:1c00b890 +76398690ns 1403808 1c002bfe 0007a503 lw x10, 0(x15) x10=1c009b68 x15:1c00b8b0 PA:1c00b8b0 +76398730ns 1403810 1c002c00 00050663 beq x10, x0, 12 x10:1c009b68 +76398751ns 1403811 1c002c02 04052703 lw x14, 64(x10) x14=00000000 x10:1c009b68 PA:1c009ba8 +76398791ns 1403813 1c002c04 00e7a023 sw x14, 0(x15) x14:00000000 x15:1c00b8b0 PA:1c00b8b0 +76398811ns 1403814 1c002c06 00071363 bne x14, x0, 6 x14:00000000 +76398831ns 1403815 1c002c08 0007a223 sw x0, 4(x15) x15:1c00b8b0 PA:1c00b8b4 +76398852ns 1403816 1c002c0c 30069073 csrrw x0, x13, 0x300 x13:00001880 +76398932ns 1403820 1c002c10 00008067 jalr x0, x1, 0 x1:1c003136 +76398973ns 1403822 1c003136 00050563 beq x10, x0, 10 x10:1c009b68 +76398993ns 1403823 1c003138 00812403 lw x8, 8(x2) x8=a5a5a5a5 x2:1c0199a0 PA:1c0199a8 +76399013ns 1403824 1c00313a 00c12083 lw x1, 12(x2) x1=1c00098c x2:1c0199a0 PA:1c0199ac +76399033ns 1403825 1c00313c 01010113 addi x2, x2, 16 x2=1c0199b0 x2:1c0199a0 +76399053ns 1403826 1c00313e f9bff06f jal x0, -102 +76399094ns 1403828 1c0030d8 02852783 lw x15, 40(x10) x15=00000001 x10:1c009b68 PA:1c009b90 +76399114ns 1403829 1c0030da 00100713 addi x14, x0, 1 x14=00000001 +76399134ns 1403830 1c0030dc 00e79963 bne x15, x14, 18 x15:00000001 x14:00000001 +76399154ns 1403831 1c0030e0 02452703 lw x14, 36(x10) x14=1c009b68 x10:1c009b68 PA:1c009b8c +76399175ns 1403832 1c0030e2 02052683 lw x13, 32(x10) x13=00000001 x10:1c009b68 PA:1c009b88 +76399195ns 1403833 1c0030e4 01c52603 lw x12, 28(x10) x12=00000008 x10:1c009b68 PA:1c009b84 +76399215ns 1403834 1c0030e6 01852583 lw x11, 24(x10) x11=1c009bd6 x10:1c009b68 PA:1c009b80 +76399235ns 1403835 1c0030e8 01452503 lw x10, 20(x10) x10=1c00b8c0 x10:1c009b68 PA:1c009b7c +76399255ns 1403836 1c0030ea cddff06f jal x0, -804 +76399316ns 1403839 1c002dc6 00452e83 lw x29, 4(x10) x29=1c00b890 x10:1c00b8c0 PA:1c00b8c4 +76399336ns 1403840 1c002dca fd010113 addi x2, x2, -48 x2=1c019980 x2:1c0199b0 +76399356ns 1403841 1c002dcc 02112623 sw x1, 44(x2) x1:1c00098c x2:1c019980 PA:1c0199ac +76399377ns 1403842 1c002dce 02812423 sw x8, 40(x2) x8:a5a5a5a5 x2:1c019980 PA:1c0199a8 +76399397ns 1403843 1c002dd0 00c008b3 add x17, x0, x12 x17=00000008 x12:00000008 +76399417ns 1403844 1c002dd2 00e00633 add x12, x0, x14 x12=1c009b68 x14:1c009b68 +76399437ns 1403845 1c002dd4 00010737 lui x14, 0x10000 x14=00010000 +76399457ns 1403846 1c002dd6 014ec783 lbu x15, 20(x29) x15=00000000 x29:1c00b890 PA:1c00b8a4 +76399477ns 1403847 1c002dda 00852803 lw x16, 8(x10) x16=00000003 x10:1c00b8c0 PA:1c00b8c8 +76399498ns 1403848 1c002dde 01177463 bgeu x14, x17, 8 x14:00010000 x17:00000008 +76399578ns 1403852 1c002de6 30047473 csrrci x8, 0x00000008, 0x300 x8=00001880 +76399659ns 1403856 1c002dea 03954303 lbu x6, 57(x10) x6=00000000 x10:1c00b8c0 PA:1c00b8f9 +76399700ns 1403858 1c002dee 0a030963 beq x6, x0, 178 x6:00000000 +76399760ns 1403861 1c002ea0 00000713 addi x14, x0, 0 x14=00000000 +76399780ns 1403862 1c002ea2 00800e13 addi x28, x0, 8 x28=00000008 +76399801ns 1403863 1c002ea4 f5fff06f jal x0, -162 +76399861ns 1403866 1c002e02 00ceaf03 lw x30, 12(x29) x30=00000000 x29:1c00b890 PA:1c00b89c +76399902ns 1403868 1c002e06 0a0f1863 bne x30, x0, 176 x30:00000000 +76399922ns 1403869 1c002e0a 03854703 lbu x14, 56(x10) x14=00000000 x10:1c00b8c0 PA:1c00b8f8 +76399942ns 1403870 1c002e0e 01052623 sw x16, 12(x10) x16:00000003 x10:1c00b8c0 PA:1c00b8cc +76399962ns 1403871 1c002e12 10000837 lui x16, 0x10000000 x16=10000000 +76399982ns 1403872 1c002e16 01076733 or x14, x14, x16 x14=10000000 x14:00000000 x16:10000000 +76400002ns 1403873 1c002e1a 00e52823 sw x14, 16(x10) x14:10000000 x10:1c00b8c0 PA:1c00b8d0 +76400023ns 1403874 1c002e1c fffe0713 addi x14, x28, -1 x14=00000007 x28:00000008 +76400043ns 1403875 1c002e20 03c8de33 divu x28, x17, x28 x28=00000001 x17:00000008 x28:00000008 +76400669ns 1403906 1c002e24 00c6f813 andi x16, x13, 12 x16=00000000 x13:00000001 +76400689ns 1403907 1c002e28 ffc80813 addi x16, x16, -4 x16=fffffffc x16:00000000 +76400709ns 1403908 1c002e2a 00183813 sltiu x16, x16, 1 x16=00000000 x16:fffffffc +76400729ns 1403909 1c002e2e 01071713 slli x14, x14, 0x10 x14=00070000 x14:00000007 +76400750ns 1403910 1c002e30 01b81813 slli x16, x16, 0x1b x16=00000000 x16:00000000 +76400770ns 1403911 1c002e32 00e86833 or x16, x16, x14 x16=00070000 x16:00000000 x14:00070000 +76400790ns 1403912 1c002e36 60000737 lui x14, 0x60000000 x14=60000000 +76400810ns 1403913 1c002e3a 00e86833 or x16, x16, x14 x16=60070000 x16:00070000 x14:60000000 +76400830ns 1403914 1c002e3e 0036f693 andi x13, x13, 3 x13=00000001 x13:00000001 +76400851ns 1403915 1c002e40 00100713 addi x14, x0, 1 x14=00000001 +76400871ns 1403916 1c002e42 fffe0e13 addi x28, x28, -1 x28=00000000 x28:00000001 +76400891ns 1403917 1c002e44 01c86833 or x16, x16, x28 x16=60070000 x16:60070000 x28:00000000 +76400911ns 1403918 1c002e48 01052a23 sw x16, 20(x10) x16:60070000 x10:1c00b8c0 PA:1c00b8d4 +76400931ns 1403919 1c002e4c 06e68163 beq x13, x14, 98 x13:00000001 x14:00000001 +76401012ns 1403923 1c002eae 900006b7 lui x13, 0x90000000 x13=90000000 +76401032ns 1403924 1c002eb2 00368693 addi x13, x13, 3 x13=90000003 x13:90000000 +76401052ns 1403925 1c002eb4 fa3ff06f jal x0, -94 +76401093ns 1403927 1c002e56 00178793 addi x15, x15, 1 x15=00000001 x15:00000000 +76401113ns 1403928 1c002e58 1a102737 lui x14, 0x1a102000 x14=1a102000 +76401133ns 1403929 1c002e5c 00d52c23 sw x13, 24(x10) x13:90000003 x10:1c00b8c0 PA:1c00b8d8 +76401153ns 1403930 1c002e5e 08070713 addi x14, x14, 128 x14=1a102080 x14:1a102000 +76401174ns 1403931 1c002e62 00779793 slli x15, x15, 0x7 x15=00000080 x15:00000001 +76401194ns 1403932 1c002e64 00cea623 sw x12, 12(x29) x12:1c009b68 x29:1c00b890 PA:1c00b89c +76401214ns 1403933 1c002e68 000ea423 sw x0, 8(x29) x29:1c00b890 PA:1c00b898 +76401234ns 1403934 1c002e6c 00e787b3 add x15, x15, x14 x15=1a102100 x15:00000080 x14:1a102080 +76401254ns 1403935 1c002e6e 00c50513 addi x10, x10, 12 x10=1c00b8cc x10:1c00b8c0 +76401275ns 1403936 1c002e70 00078793 addi x15, x15, 0 x15=1a102100 x15:1a102100 +76401295ns 1403937 1c002e74 02a7a023 sw x10, 32(x15) x10:1c00b8cc x15:1a102100 PA:1a102120 +76401315ns 1403938 1c002e76 01000713 addi x14, x0, 16 x14=00000010 +76401376ns 1403941 1c002e78 02e7a223 sw x14, 36(x15) x14:00000010 x15:1a102100 PA:1a102124 +76401396ns 1403942 1c002e7a 01400713 addi x14, x0, 20 x14=00000014 +76401456ns 1403945 1c002e7c 02e7a423 sw x14, 40(x15) x14:00000014 x15:1a102100 PA:1a102128 +76401476ns 1403946 1c002e7e 00131313 slli x6, x6, 0x1 x6=00000000 x6:00000000 +76401537ns 1403949 1c002e80 01036313 ori x6, x6, 16 x6=00000010 x6:00000000 +76401557ns 1403950 1c002e84 00b7a823 sw x11, 16(x15) x11:1c009bd6 x15:1a102100 PA:1a102110 +76401577ns 1403951 1c002e86 00788893 addi x17, x17, 7 x17=0000000f x17:00000008 +76401638ns 1403954 1c002e88 0038d893 srli x17, x17, 0x3 x17=00000001 x17:0000000f +76401658ns 1403955 1c002e8c 0117aa23 sw x17, 20(x15) x17:00000001 x15:1a102100 PA:1a102114 +76401678ns 1403956 1c002e90 0067ac23 sw x6, 24(x15) x6:00000010 x15:1a102100 PA:1a102118 +76401759ns 1403960 1c002e94 00800533 add x10, x0, x8 x10=00001880 x8:00001880 +76401820ns 1403963 1c002e96 02812403 lw x8, 40(x2) x8=a5a5a5a5 x2:1c019980 PA:1c0199a8 +76401840ns 1403964 1c002e98 02c12083 lw x1, 44(x2) x1=1c00098c x2:1c019980 PA:1c0199ac +76401860ns 1403965 1c002e9a 03010113 addi x2, x2, 48 x2=1c0199b0 x2:1c019980 +76401880ns 1403966 1c002e9c d1dff06f jal x0, -740 +76401921ns 1403968 1c002bb8 30051073 csrrw x0, x10, 0x300 x10:00001880 +76402001ns 1403972 1c002bbc 00008067 jalr x0, x1, 0 x1:1c00098c +76402042ns 1403974 1c00098c 0320006f jal x0, 50 +76402102ns 1403977 1c0009be d541a303 lw x6, -684(x3) x6=1c00a890 x3:1c0093dc PA:1c009130 +76402143ns 1403979 1c0009c2 00032103 lw x2, 0(x6) x2=1c00a7d0 x6:1c00a890 PA:1c00a890 +76402183ns 1403981 1c0009c6 00012283 lw x5, 0(x2) x5=1c00230c x2:1c00a7d0 PA:1c00a7d0 +76402224ns 1403983 1c0009c8 34129073 csrrw x0, x5, 0x341 x5:1c00230c +76402244ns 1403984 1c0009cc 00412283 lw x5, 4(x2) x5=00000000 x2:1c00a7d0 PA:1c00a7d4 +76402264ns 1403985 1c0009ce 00812303 lw x6, 8(x2) x6=00000000 x2:1c00a7d0 PA:1c00a7d8 +76402284ns 1403986 1c0009d0 00c12383 lw x7, 12(x2) x7=00000000 x2:1c00a7d0 PA:1c00a7dc +76402304ns 1403987 1c0009d2 01012e03 lw x28, 16(x2) x28=00000000 x2:1c00a7d0 PA:1c00a7e0 +76402325ns 1403988 1c0009d4 01412e83 lw x29, 20(x2) x29=00000000 x2:1c00a7d0 PA:1c00a7e4 +76402345ns 1403989 1c0009d6 01812f03 lw x30, 24(x2) x30=00000000 x2:1c00a7d0 PA:1c00a7e8 +76402365ns 1403990 1c0009d8 7c029073 csrrw x0, x5, 0x7c0 x5:00000000 +76402385ns 1403991 1c0009dc 7c131073 csrrw x0, x6, 0x7c1 x6:00000000 +76402405ns 1403992 1c0009e0 7c239073 csrrw x0, x7, 0x7c2 x7:00000000 +76402426ns 1403993 1c0009e4 7c4e1073 csrrw x0, x28, 0x7c4 x28:00000000 +76402446ns 1403994 1c0009e8 7c5e9073 csrrw x0, x29, 0x7c5 x29:00000000 +76402466ns 1403995 1c0009ec 7c6f1073 csrrw x0, x30, 0x7c6 x30:00000000 +76402486ns 1403996 1c0009f0 01810113 addi x2, x2, 24 x2=1c00a7e8 x2:1c00a7d0 +76402506ns 1403997 1c0009f2 07412283 lw x5, 116(x2) x5=00001880 x2:1c00a7e8 PA:1c00a85c +76402547ns 1403999 1c0009f4 30029073 csrrw x0, x5, 0x300 x5:00001880 +76402627ns 1404003 1c0009f8 00412083 lw x1, 4(x2) x1=00000000 x2:1c00a7e8 PA:1c00a7ec +76402648ns 1404004 1c0009fa 00812283 lw x5, 8(x2) x5=a5a5a5a5 x2:1c00a7e8 PA:1c00a7f0 +76402668ns 1404005 1c0009fc 00c12303 lw x6, 12(x2) x6=a5a5a5a5 x2:1c00a7e8 PA:1c00a7f4 +76402688ns 1404006 1c0009fe 01012383 lw x7, 16(x2) x7=a5a5a5a5 x2:1c00a7e8 PA:1c00a7f8 +76402708ns 1404007 1c000a00 01412403 lw x8, 20(x2) x8=a5a5a5a5 x2:1c00a7e8 PA:1c00a7fc +76402728ns 1404008 1c000a02 01812483 lw x9, 24(x2) x9=1c008d3c x2:1c00a7e8 PA:1c00a800 +76402749ns 1404009 1c000a04 01c12503 lw x10, 28(x2) x10=00000000 x2:1c00a7e8 PA:1c00a804 +76402769ns 1404010 1c000a06 02012583 lw x11, 32(x2) x11=a5a5a5a5 x2:1c00a7e8 PA:1c00a808 +76402789ns 1404011 1c000a08 02412603 lw x12, 36(x2) x12=a5a5a5a5 x2:1c00a7e8 PA:1c00a80c +76402809ns 1404012 1c000a0a 02812683 lw x13, 40(x2) x13=a5a5a5a5 x2:1c00a7e8 PA:1c00a810 +76402829ns 1404013 1c000a0c 02c12703 lw x14, 44(x2) x14=a5a5a5a5 x2:1c00a7e8 PA:1c00a814 +76402850ns 1404014 1c000a0e 03012783 lw x15, 48(x2) x15=00000000 x2:1c00a7e8 PA:1c00a818 +76402870ns 1404015 1c000a10 03412803 lw x16, 52(x2) x16=a5a5a5a5 x2:1c00a7e8 PA:1c00a81c +76402890ns 1404016 1c000a12 03812883 lw x17, 56(x2) x17=a5a5a5a5 x2:1c00a7e8 PA:1c00a820 +76402910ns 1404017 1c000a14 03c12903 lw x18, 60(x2) x18=1c009140 x2:1c00a7e8 PA:1c00a824 +76402930ns 1404018 1c000a16 04012983 lw x19, 64(x2) x19=a5a5a5a5 x2:1c00a7e8 PA:1c00a828 +76402951ns 1404019 1c000a18 04412a03 lw x20, 68(x2) x20=a5a5a5a5 x2:1c00a7e8 PA:1c00a82c +76402971ns 1404020 1c000a1a 04812a83 lw x21, 72(x2) x21=a5a5a5a5 x2:1c00a7e8 PA:1c00a830 +76402991ns 1404021 1c000a1c 04c12b03 lw x22, 76(x2) x22=a5a5a5a5 x2:1c00a7e8 PA:1c00a834 +76403011ns 1404022 1c000a1e 05012b83 lw x23, 80(x2) x23=a5a5a5a5 x2:1c00a7e8 PA:1c00a838 +76403031ns 1404023 1c000a20 05412c03 lw x24, 84(x2) x24=a5a5a5a5 x2:1c00a7e8 PA:1c00a83c +76403051ns 1404024 1c000a22 05812c83 lw x25, 88(x2) x25=a5a5a5a5 x2:1c00a7e8 PA:1c00a840 +76403072ns 1404025 1c000a24 05c12d03 lw x26, 92(x2) x26=a5a5a5a5 x2:1c00a7e8 PA:1c00a844 +76403092ns 1404026 1c000a26 06012d83 lw x27, 96(x2) x27=a5a5a5a5 x2:1c00a7e8 PA:1c00a848 +76403112ns 1404027 1c000a28 06412e03 lw x28, 100(x2) x28=a5a5a5a5 x2:1c00a7e8 PA:1c00a84c +76403132ns 1404028 1c000a2a 06812e83 lw x29, 104(x2) x29=a5a5a5a5 x2:1c00a7e8 PA:1c00a850 +76403152ns 1404029 1c000a2c 06c12f03 lw x30, 108(x2) x30=a5a5a5a5 x2:1c00a7e8 PA:1c00a854 +76403173ns 1404030 1c000a2e 07012f83 lw x31, 112(x2) x31=a5a5a5a5 x2:1c00a7e8 PA:1c00a858 +76403193ns 1404031 1c000a30 07810113 addi x2, x2, 120 x2=1c00a860 x2:1c00a7e8 +76403213ns 1404032 1c000a34 30200073 mret +76403314ns 1404037 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76403354ns 1404039 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76403415ns 1404042 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76403435ns 1404043 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76403475ns 1404045 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76403536ns 1404048 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76403556ns 1404049 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76403597ns 1404051 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76403657ns 1404054 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76403677ns 1404055 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76403718ns 1404057 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76403778ns 1404060 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76403799ns 1404061 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76403900ns 1404066 1c000868 0980006f jal x0, 152 +76403940ns 1404068 1c000900 f8810113 addi x2, x2, -120 x2=1c00a7e8 x2:1c00a860 +76403960ns 1404069 1c000904 00112223 sw x1, 4(x2) x1:00000000 x2:1c00a7e8 PA:1c00a7ec +76403980ns 1404070 1c000906 00512423 sw x5, 8(x2) x5:a5a5a5a5 x2:1c00a7e8 PA:1c00a7f0 +76404000ns 1404071 1c000908 00612623 sw x6, 12(x2) x6:a5a5a5a5 x2:1c00a7e8 PA:1c00a7f4 +76404021ns 1404072 1c00090a 00712823 sw x7, 16(x2) x7:a5a5a5a5 x2:1c00a7e8 PA:1c00a7f8 +76404041ns 1404073 1c00090c 00812a23 sw x8, 20(x2) x8:a5a5a5a5 x2:1c00a7e8 PA:1c00a7fc +76404061ns 1404074 1c00090e 00912c23 sw x9, 24(x2) x9:1c008d3c x2:1c00a7e8 PA:1c00a800 +76404081ns 1404075 1c000910 00a12e23 sw x10, 28(x2) x10:00000000 x2:1c00a7e8 PA:1c00a804 +76404101ns 1404076 1c000912 02b12023 sw x11, 32(x2) x11:a5a5a5a5 x2:1c00a7e8 PA:1c00a808 +76404122ns 1404077 1c000914 02c12223 sw x12, 36(x2) x12:a5a5a5a5 x2:1c00a7e8 PA:1c00a80c +76404142ns 1404078 1c000916 02d12423 sw x13, 40(x2) x13:a5a5a5a5 x2:1c00a7e8 PA:1c00a810 +76404162ns 1404079 1c000918 02e12623 sw x14, 44(x2) x14:a5a5a5a5 x2:1c00a7e8 PA:1c00a814 +76404182ns 1404080 1c00091a 02f12823 sw x15, 48(x2) x15:00000000 x2:1c00a7e8 PA:1c00a818 +76404202ns 1404081 1c00091c 03012a23 sw x16, 52(x2) x16:a5a5a5a5 x2:1c00a7e8 PA:1c00a81c +76404223ns 1404082 1c00091e 03112c23 sw x17, 56(x2) x17:a5a5a5a5 x2:1c00a7e8 PA:1c00a820 +76404243ns 1404083 1c000920 03212e23 sw x18, 60(x2) x18:1c009140 x2:1c00a7e8 PA:1c00a824 +76404263ns 1404084 1c000922 05312023 sw x19, 64(x2) x19:a5a5a5a5 x2:1c00a7e8 PA:1c00a828 +76404283ns 1404085 1c000924 05412223 sw x20, 68(x2) x20:a5a5a5a5 x2:1c00a7e8 PA:1c00a82c +76404303ns 1404086 1c000926 05512423 sw x21, 72(x2) x21:a5a5a5a5 x2:1c00a7e8 PA:1c00a830 +76404324ns 1404087 1c000928 05612623 sw x22, 76(x2) x22:a5a5a5a5 x2:1c00a7e8 PA:1c00a834 +76404344ns 1404088 1c00092a 05712823 sw x23, 80(x2) x23:a5a5a5a5 x2:1c00a7e8 PA:1c00a838 +76404364ns 1404089 1c00092c 05812a23 sw x24, 84(x2) x24:a5a5a5a5 x2:1c00a7e8 PA:1c00a83c +76404384ns 1404090 1c00092e 05912c23 sw x25, 88(x2) x25:a5a5a5a5 x2:1c00a7e8 PA:1c00a840 +76404404ns 1404091 1c000930 05a12e23 sw x26, 92(x2) x26:a5a5a5a5 x2:1c00a7e8 PA:1c00a844 +76404425ns 1404092 1c000932 07b12023 sw x27, 96(x2) x27:a5a5a5a5 x2:1c00a7e8 PA:1c00a848 +76404445ns 1404093 1c000934 07c12223 sw x28, 100(x2) x28:a5a5a5a5 x2:1c00a7e8 PA:1c00a84c +76404465ns 1404094 1c000936 07d12423 sw x29, 104(x2) x29:a5a5a5a5 x2:1c00a7e8 PA:1c00a850 +76404485ns 1404095 1c000938 07e12623 sw x30, 108(x2) x30:a5a5a5a5 x2:1c00a7e8 PA:1c00a854 +76404505ns 1404096 1c00093a 07f12823 sw x31, 112(x2) x31:a5a5a5a5 x2:1c00a7e8 PA:1c00a858 +76404525ns 1404097 1c00093c 300022f3 csrrs x5, x0, 0x300 x5=00001880 +76404606ns 1404101 1c000940 06512a23 sw x5, 116(x2) x5:00001880 x2:1c00a7e8 PA:1c00a85c +76404626ns 1404102 1c000942 fe810113 addi x2, x2, -24 x2=1c00a7d0 x2:1c00a7e8 +76404647ns 1404103 1c000944 7c0022f3 csrrs x5, x0, 0x7c0 x5=00000000 +76404667ns 1404104 1c000948 7c102373 csrrs x6, x0, 0x7c1 x6=00000000 +76404687ns 1404105 1c00094c 7c2023f3 csrrs x7, x0, 0x7c2 x7=00000000 +76404707ns 1404106 1c000950 7c402e73 csrrs x28, x0, 0x7c4 x28=00000000 +76404727ns 1404107 1c000954 7c502ef3 csrrs x29, x0, 0x7c5 x29=00000000 +76404748ns 1404108 1c000958 7c602f73 csrrs x30, x0, 0x7c6 x30=00000000 +76404768ns 1404109 1c00095c 00512223 sw x5, 4(x2) x5:00000000 x2:1c00a7d0 PA:1c00a7d4 +76404788ns 1404110 1c00095e 00612423 sw x6, 8(x2) x6:00000000 x2:1c00a7d0 PA:1c00a7d8 +76404808ns 1404111 1c000960 00712623 sw x7, 12(x2) x7:00000000 x2:1c00a7d0 PA:1c00a7dc +76404828ns 1404112 1c000962 01c12823 sw x28, 16(x2) x28:00000000 x2:1c00a7d0 PA:1c00a7e0 +76404849ns 1404113 1c000964 01d12a23 sw x29, 20(x2) x29:00000000 x2:1c00a7d0 PA:1c00a7e4 +76404869ns 1404114 1c000966 01e12c23 sw x30, 24(x2) x30:00000000 x2:1c00a7d0 PA:1c00a7e8 +76404889ns 1404115 1c000968 d541a283 lw x5, -684(x3) x5=1c00a890 x3:1c0093dc PA:1c009130 +76404929ns 1404117 1c00096c 0022a023 sw x2, 0(x5) x2:1c00a7d0 x5:1c00a890 PA:1c00a890 +76404950ns 1404118 1c000970 34202573 csrrs x10, x0, 0x342 x10=8000001a +76404970ns 1404119 1c000974 341025f3 csrrs x11, x0, 0x341 x11=1c002310 +76404990ns 1404120 1c000978 01f55613 srli x12, x10, 0x1f x12=00000001 x10:8000001a +76405010ns 1404121 1c00097c 00060963 beq x12, x0, 18 x12:00000001 +76405030ns 1404122 1c00097e 00b12023 sw x11, 0(x2) x11:1c002310 x2:1c00a7d0 PA:1c00a7d0 +76405050ns 1404123 1c000980 00008117 auipc x2, 0x8000 x2=1c008980 +76405071ns 1404124 1c000984 25412103 lw x2, 596(x2) x2=1c0199b0 x2:1c008980 PA:1c008bd4 +76405091ns 1404125 1c000988 17e020ef jal x1, 8574 x1=1c00098c +76405131ns 1404127 1c002b06 01f57513 andi x10, x10, 31 x10=0000001a x10:8000001a +76405151ns 1404128 1c002b08 00251793 slli x15, x10, 0x2 x15=00000068 x10:0000001a +76405172ns 1404129 1c002b0c 99c18513 addi x10, x3, -1636 x10=1c008d78 x3:1c0093dc +76405192ns 1404130 1c002b10 00f50533 add x10, x10, x15 x10=1c008de0 x10:1c008d78 x15:00000068 +76405212ns 1404131 1c002b12 00052783 lw x15, 0(x10) x15=1c000e42 x10:1c008de0 PA:1c008de0 +76405273ns 1404134 1c002b14 00078067 jalr x0, x15, 0 x15:1c000e42 +76405333ns 1404137 1c000e42 1a10a7b7 lui x15, 0x1a10a000 x15=1a10a000 +76405353ns 1404138 1c000e46 80078793 addi x15, x15, -2048 x15=1a109800 x15:1a10a000 +76405374ns 1404139 1c000e4a 0247a503 lw x10, 36(x15) x10=00000007 x15:1a109800 PA:1a109824 +76405394ns 1404140 1c000e4c a2818793 addi x15, x3, -1496 x15=1c008e04 x3:1c0093dc +76405454ns 1404143 1c000e50 0ff57513 andi x10, x10, 255 x10=00000007 x10:00000007 +76405475ns 1404144 1c000e54 00251713 slli x14, x10, 0x2 x14=0000001c x10:00000007 +76405495ns 1404145 1c000e58 00e787b3 add x15, x15, x14 x15=1c008e20 x15:1c008e04 x14:0000001c +76405515ns 1404146 1c000e5a 0007a703 lw x14, 0(x15) x14=1c003106 x15:1c008e20 PA:1c008e20 +76405555ns 1404148 1c000e5c 00070363 beq x14, x0, 6 x14:1c003106 +76405575ns 1404149 1c000e5e 0007a783 lw x15, 0(x15) x15=1c003106 x15:1c008e20 PA:1c008e20 +76405636ns 1404152 1c000e60 00078067 jalr x0, x15, 0 x15:1c003106 +76405676ns 1404154 1c003106 ff950513 addi x10, x10, -7 x10=00000000 x10:00000007 +76405697ns 1404155 1c003108 00251793 slli x15, x10, 0x2 x15=00000000 x10:00000000 +76405717ns 1404156 1c00310c da418513 addi x10, x3, -604 x10=1c009180 x3:1c0093dc +76405737ns 1404157 1c003110 ff010113 addi x2, x2, -16 x2=1c0199a0 x2:1c0199b0 +76405757ns 1404158 1c003112 00f50533 add x10, x10, x15 x10=1c009180 x10:1c009180 x15:00000000 +76405777ns 1404159 1c003114 00812423 sw x8, 8(x2) x8:a5a5a5a5 x2:1c0199a0 PA:1c0199a8 +76405798ns 1404160 1c003116 00052403 lw x8, 0(x10) x8=1c00b890 x10:1c009180 PA:1c009180 +76405818ns 1404161 1c003118 00112623 sw x1, 12(x2) x1:1c00098c x2:1c0199a0 PA:1c0199ac +76405838ns 1404162 1c00311a 00842783 lw x15, 8(x8) x15=00000000 x8:1c00b890 PA:1c00b898 +76405878ns 1404164 1c00311c 02079263 bne x15, x0, 36 x15:00000000 +76405899ns 1404165 1c00311e 00c42503 lw x10, 12(x8) x10=1c009b68 x8:1c00b890 PA:1c00b89c +76405939ns 1404167 1c003120 00050863 beq x10, x0, 16 x10:1c009b68 +76405959ns 1404168 1c003122 01052703 lw x14, 16(x10) x14=00000001 x10:1c009b68 PA:1c009b78 +76405979ns 1404169 1c003124 00100793 addi x15, x0, 1 x15=00000001 +76405999ns 1404170 1c003126 00f71363 bne x14, x15, 6 x14:00000001 x15:00000001 +76406020ns 1404171 1c00312a 3b6000ef jal x1, 950 x1=1c00312c +76406060ns 1404173 1c0034e0 ff010113 addi x2, x2, -16 x2=1c019990 x2:1c0199a0 +76406080ns 1404174 1c0034e2 00812423 sw x8, 8(x2) x8:1c00b890 x2:1c019990 PA:1c019998 +76406100ns 1404175 1c0034e4 00a00433 add x8, x0, x10 x8=1c009b68 x10:1c009b68 +76406121ns 1404176 1c0034e6 03452503 lw x10, 52(x10) x10=1c00c2e0 x10:1c009b68 PA:1c009b9c +76406141ns 1404177 1c0034e8 00112623 sw x1, 12(x2) x1:1c00312c x2:1c019990 PA:1c01999c +76406161ns 1404178 1c0034ea 00050363 beq x10, x0, 6 x10:1c00c2e0 +76406181ns 1404179 1c0034ec 03c42783 lw x15, 60(x8) x15=1c0033da x8:1c009b68 PA:1c009ba4 +76406242ns 1404182 1c0034ee 000780e7 jalr x1, x15, 0 x1=1c0034f0 x15:1c0033da +76406282ns 1404184 1c0033da fe010113 addi x2, x2, -32 x2=1c019970 x2:1c019990 +76406302ns 1404185 1c0033dc 00112e23 sw x1, 28(x2) x1:1c0034f0 x2:1c019970 PA:1c01998c +76406323ns 1404186 1c0033de 00812c23 sw x8, 24(x2) x8:1c009b68 x2:1c019970 PA:1c019988 +76406343ns 1404187 1c0033e0 30047473 csrrci x8, 0x00000008, 0x300 x8=00001880 +76406424ns 1404191 1c0033e4 342027f3 csrrs x15, x0, 0x342 x15=8000001a +76406444ns 1404192 1c0033e8 00c10593 addi x11, x2, 12 x11=1c01997c x2:1c019970 +76406464ns 1404193 1c0033ea 0007de63 bge x15, x0, 28 x15:8000001a +76406484ns 1404194 1c0033ee 838fe0ef jal x1, -8136 x1=1c0033f2 +76406524ns 1404196 1c001426 ff010113 addi x2, x2, -16 x2=1c019960 x2:1c019970 +76406545ns 1404197 1c001428 00112623 sw x1, 12(x2) x1:1c0033f2 x2:1c019960 PA:1c01996c +76406565ns 1404198 1c00142a 00812423 sw x8, 8(x2) x8:00001880 x2:1c019960 PA:1c019968 +76406585ns 1404199 1c00142c 02051163 bne x10, x0, 34 x10:1c00c2e0 +76406646ns 1404202 1c00144e 04052703 lw x14, 64(x10) x14=00000000 x10:1c00c2e0 PA:1c00c320 +76406666ns 1404203 1c001450 00a007b3 add x15, x0, x10 x15=1c00c2e0 x10:1c00c2e0 +76406686ns 1404204 1c001452 00070c63 beq x14, x0, 24 x14:00000000 +76406747ns 1404207 1c00146a 00052703 lw x14, 0(x10) x14=1c00c2e0 x10:1c00c2e0 PA:1c00c2e0 +76406767ns 1404208 1c00146c 00b00433 add x8, x0, x11 x8=1c01997c x11:1c01997c +76406787ns 1404209 1c00146e 00071e63 bne x14, x0, 28 x14:1c00c2e0 +76406848ns 1404212 1c00148a 0387a683 lw x13, 56(x15) x13=00000000 x15:1c00c2e0 PA:1c00c318 +76406868ns 1404213 1c00148c 03c7a703 lw x14, 60(x15) x14=000000ff x15:1c00c2e0 PA:1c00c31c +76406888ns 1404214 1c00148e 00000513 addi x10, x0, 0 x10=00000000 +76406908ns 1404215 1c001490 00e6ff63 bgeu x13, x14, 30 x13:00000000 x14:000000ff +76406928ns 1404216 1c001494 0457c703 lbu x14, 69(x15) x14=000000ff x15:1c00c2e0 PA:1c00c325 +76406949ns 1404217 1c001498 00168693 addi x13, x13, 1 x13=00000001 x13:00000000 +76406969ns 1404218 1c00149a 02d7ac23 sw x13, 56(x15) x13:00000001 x15:1c00c2e0 PA:1c00c318 +76406989ns 1404219 1c00149c 01871613 slli x12, x14, 0x18 x12=ff000000 x14:000000ff +76407009ns 1404220 1c0014a0 41865613 srai x12, x12, 0x418 x12=ffffffff x12:ff000000 +76407029ns 1404221 1c0014a2 fff00693 addi x13, x0, -1 x13=ffffffff +76407049ns 1404222 1c0014a4 02d61263 bne x12, x13, 36 x12:ffffffff x13:ffffffff +76407070ns 1404223 1c0014a8 0247a703 lw x14, 36(x15) x14=00000001 x15:1c00c2e0 PA:1c00c304 +76407110ns 1404225 1c0014aa 00071663 bne x14, x0, 12 x14:00000001 +76407191ns 1404229 1c0014b6 02478513 addi x10, x15, 36 x10=1c00c304 x15:1c00c2e0 +76407211ns 1404230 1c0014ba 01b000ef jal x1, 2074 x1=1c0014be +76407251ns 1404232 1c001cd4 00c52783 lw x15, 12(x10) x15=1c009dd0 x10:1c00c304 PA:1c00c310 +76407272ns 1404233 1c001cd6 fe010113 addi x2, x2, -32 x2=1c019940 x2:1c019960 +76407292ns 1404234 1c001cd8 00812c23 sw x8, 24(x2) x8:1c01997c x2:1c019940 PA:1c019958 +76407312ns 1404235 1c001cda 00c7a403 lw x8, 12(x15) x8=1c009db8 x15:1c009dd0 PA:1c009ddc +76407332ns 1404236 1c001cdc 00112e23 sw x1, 28(x2) x1:1c0014be x2:1c019940 PA:1c01995c +76407352ns 1404237 1c001cde 02041263 bne x8, x0, 36 x8:1c009db8 +76407433ns 1404241 1c001d02 01840593 addi x11, x8, 24 x11=1c009dd0 x8:1c009db8 +76407453ns 1404242 1c001d06 00b00533 add x10, x0, x11 x10=1c009dd0 x11:1c009dd0 +76407474ns 1404243 1c001d08 00b12623 sw x11, 12(x2) x11:1c009dd0 x2:1c019940 PA:1c01994c +76407494ns 1404244 1c001d0a a1cff0ef jal x1, -3556 x1=1c001d0e +76407534ns 1404246 1c000f26 00452683 lw x13, 4(x10) x13=1c00c30c x10:1c009dd0 PA:1c009dd4 +76407554ns 1404247 1c000f28 00852703 lw x14, 8(x10) x14=1c00c30c x10:1c009dd0 PA:1c009dd8 +76407574ns 1404248 1c000f2a 01052783 lw x15, 16(x10) x15=1c00c304 x10:1c009dd0 PA:1c009de0 +76407595ns 1404249 1c000f2c 00e6a423 sw x14, 8(x13) x14:1c00c30c x13:1c00c30c PA:1c00c314 +76407615ns 1404250 1c000f2e 00d72223 sw x13, 4(x14) x13:1c00c30c x14:1c00c30c PA:1c00c310 +76407635ns 1404251 1c000f30 0047a683 lw x13, 4(x15) x13=1c00c30c x15:1c00c304 PA:1c00c308 +76407675ns 1404253 1c000f32 00a69363 bne x13, x10, 6 x13:1c00c30c x10:1c009dd0 +76407736ns 1404256 1c000f38 0007a703 lw x14, 0(x15) x14=00000001 x15:1c00c304 PA:1c00c304 +76407756ns 1404257 1c000f3a 00052823 sw x0, 16(x10) x10:1c009dd0 PA:1c009de0 +76407776ns 1404258 1c000f3e fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +76407797ns 1404259 1c000f40 00e7a023 sw x14, 0(x15) x14:00000000 x15:1c00c304 PA:1c00c304 +76407817ns 1404260 1c000f42 0007a503 lw x10, 0(x15) x10=00000000 x15:1c00c304 PA:1c00c304 +76407837ns 1404261 1c000f44 00008067 jalr x0, x1, 0 x1:1c001d0e +76407898ns 1404264 1c001d0e d681a783 lw x15, -664(x3) x15=00000000 x3:1c0093dc PA:1c009144 +76407918ns 1404265 1c001d12 00c12583 lw x11, 12(x2) x11=1c009dd0 x2:1c019940 PA:1c01994c +76407938ns 1404266 1c001d14 04079a63 bne x15, x0, 84 x15:00000000 +76407958ns 1404267 1c001d16 00440593 addi x11, x8, 4 x11=1c009dbc x8:1c009db8 +76407978ns 1404268 1c001d1a 00b00533 add x10, x0, x11 x10=1c009dbc x11:1c009dbc +76407999ns 1404269 1c001d1c 00b12623 sw x11, 12(x2) x11:1c009dbc x2:1c019940 PA:1c01994c +76408019ns 1404270 1c001d1e a08ff0ef jal x1, -3576 x1=1c001d22 +76408059ns 1404272 1c000f26 00452683 lw x13, 4(x10) x13=1c008d30 x10:1c009dbc PA:1c009dc0 +76408079ns 1404273 1c000f28 00852703 lw x14, 8(x10) x14=1c00b404 x10:1c009dbc PA:1c009dc4 +76408099ns 1404274 1c000f2a 01052783 lw x15, 16(x10) x15=1c008d28 x10:1c009dbc PA:1c009dcc +76408120ns 1404275 1c000f2c 00e6a423 sw x14, 8(x13) x14:1c00b404 x13:1c008d30 PA:1c008d38 +76408140ns 1404276 1c000f2e 00d72223 sw x13, 4(x14) x13:1c008d30 x14:1c00b404 PA:1c00b408 +76408160ns 1404277 1c000f30 0047a683 lw x13, 4(x15) x13=1c008d30 x15:1c008d28 PA:1c008d2c +76408200ns 1404279 1c000f32 00a69363 bne x13, x10, 6 x13:1c008d30 x10:1c009dbc +76408261ns 1404282 1c000f38 0007a703 lw x14, 0(x15) x14=00000002 x15:1c008d28 PA:1c008d28 +76408281ns 1404283 1c000f3a 00052823 sw x0, 16(x10) x10:1c009dbc PA:1c009dcc +76408301ns 1404284 1c000f3e fff70713 addi x14, x14, -1 x14=00000001 x14:00000002 +76408322ns 1404285 1c000f40 00e7a023 sw x14, 0(x15) x14:00000001 x15:1c008d28 PA:1c008d28 +76408342ns 1404286 1c000f42 0007a503 lw x10, 0(x15) x10=00000001 x15:1c008d28 PA:1c008d28 +76408362ns 1404287 1c000f44 00008067 jalr x0, x1, 0 x1:1c001d22 +76408402ns 1404289 1c001d22 02c42503 lw x10, 44(x8) x10=00000001 x8:1c009db8 PA:1c009de4 +76408423ns 1404290 1c001d24 d7018713 addi x14, x3, -656 x14=1c00914c x3:1c0093dc +76408443ns 1404291 1c001d28 00072683 lw x13, 0(x14) x13=00000001 x14:1c00914c PA:1c00914c +76408463ns 1404292 1c001d2a 00100793 addi x15, x0, 1 x15=00000001 +76408483ns 1404293 1c001d2c 00a797b3 sll x15, x15, x10 x15=00000002 x15:00000001 x10:00000001 +76408503ns 1404294 1c001d30 00d7e7b3 or x15, x15, x13 x15=00000003 x15:00000002 x13:00000001 +76408523ns 1404295 1c001d32 00f72023 sw x15, 0(x14) x15:00000003 x14:1c00914c PA:1c00914c +76408544ns 1404296 1c001d34 01400793 addi x15, x0, 20 x15=00000014 +76408564ns 1404297 1c001d36 02f50533 mul x10, x10, x15 x10=00000014 x10:00000001 x15:00000014 +76408584ns 1404298 1c001d3a 00c12583 lw x11, 12(x2) x11=1c009dbc x2:1c019940 PA:1c01994c +76408604ns 1404299 1c001d3c 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76408624ns 1404300 1c001d40 c8878793 addi x15, x15, -888 x15=1c008c88 x15:1c009000 +76408645ns 1404301 1c001d44 00f50533 add x10, x10, x15 x10=1c008c9c x10:00000014 x15:1c008c88 +76408665ns 1404302 1c001d46 99aff0ef jal x1, -3686 x1=1c001d4a +76408705ns 1404304 1c000ee0 00452783 lw x15, 4(x10) x15=1c008ca4 x10:1c008c9c PA:1c008ca0 +76408746ns 1404306 1c000ee2 0087a703 lw x14, 8(x15) x14=1c008ca4 x15:1c008ca4 PA:1c008cac +76408766ns 1404307 1c000ee4 00f5a223 sw x15, 4(x11) x15:1c008ca4 x11:1c009dbc PA:1c009dc0 +76408786ns 1404308 1c000ee6 00e5a423 sw x14, 8(x11) x14:1c008ca4 x11:1c009dbc PA:1c009dc4 +76408806ns 1404309 1c000ee8 0087a703 lw x14, 8(x15) x14=1c008ca4 x15:1c008ca4 PA:1c008cac +76408847ns 1404311 1c000eea 00b72223 sw x11, 4(x14) x11:1c009dbc x14:1c008ca4 PA:1c008ca8 +76408867ns 1404312 1c000eec 00b7a423 sw x11, 8(x15) x11:1c009dbc x15:1c008ca4 PA:1c008cac +76408887ns 1404313 1c000eee 00052783 lw x15, 0(x10) x15=00000000 x10:1c008c9c PA:1c008c9c +76408907ns 1404314 1c000ef0 00a5a823 sw x10, 16(x11) x10:1c008c9c x11:1c009dbc PA:1c009dcc +76408927ns 1404315 1c000ef2 00178793 addi x15, x15, 1 x15=00000001 x15:00000000 +76408948ns 1404316 1c000ef4 00f52023 sw x15, 0(x10) x15:00000001 x10:1c008c9c PA:1c008c9c +76408968ns 1404317 1c000ef6 00008067 jalr x0, x1, 0 x1:1c001d4a +76409028ns 1404320 1c001d4a d541a783 lw x15, -684(x3) x15=1c00a890 x3:1c0093dc PA:1c009130 +76409048ns 1404321 1c001d4e 02c42703 lw x14, 44(x8) x14=00000001 x8:1c009db8 PA:1c009de4 +76409069ns 1404322 1c001d50 00000513 addi x10, x0, 0 x10=00000000 +76409089ns 1404323 1c001d52 02c7a783 lw x15, 44(x15) x15=00000000 x15:1c00a890 PA:1c00a8bc +76409129ns 1404325 1c001d54 00e7f663 bgeu x15, x14, 12 x15:00000000 x14:00000001 +76409149ns 1404326 1c001d58 00100713 addi x14, x0, 1 x14=00000001 +76409170ns 1404327 1c001d5a d8e1a623 sw x14, -628(x3) x14:00000001 x3:1c0093dc PA:1c009168 +76409190ns 1404328 1c001d5e 00100513 addi x10, x0, 1 x10=00000001 +76409210ns 1404329 1c001d60 01c12083 lw x1, 28(x2) x1=1c0014be x2:1c019940 PA:1c01995c +76409230ns 1404330 1c001d62 01812403 lw x8, 24(x2) x8=1c01997c x2:1c019940 PA:1c019958 +76409250ns 1404331 1c001d64 02010113 addi x2, x2, 32 x2=1c019960 x2:1c019940 +76409271ns 1404332 1c001d66 00008067 jalr x0, x1, 0 x1:1c0014be +76409311ns 1404334 1c0014be fe0507e3 beq x10, x0, -18 x10:00000001 +76409331ns 1404335 1c0014c0 fe0406e3 beq x8, x0, -20 x8:1c01997c +76409351ns 1404336 1c0014c2 00100793 addi x15, x0, 1 x15=00000001 +76409372ns 1404337 1c0014c4 00f42023 sw x15, 0(x8) x15:00000001 x8:1c01997c PA:1c01997c +76409392ns 1404338 1c0014c6 fe7ff06f jal x0, -26 +76409432ns 1404340 1c0014ac 00100513 addi x10, x0, 1 x10=00000001 +76409452ns 1404341 1c0014ae 00c12083 lw x1, 12(x2) x1=1c0033f2 x2:1c019960 PA:1c01996c +76409473ns 1404342 1c0014b0 00812403 lw x8, 8(x2) x8=00001880 x2:1c019960 PA:1c019968 +76409493ns 1404343 1c0014b2 01010113 addi x2, x2, 16 x2=1c019970 x2:1c019960 +76409513ns 1404344 1c0014b4 00008067 jalr x0, x1, 0 x1:1c0033f2 +76409553ns 1404346 1c0033f2 00c12783 lw x15, 12(x2) x15=00000001 x2:1c019970 PA:1c01997c +76409594ns 1404348 1c0033f4 00078363 beq x15, x0, 6 x15:00000001 +76409614ns 1404349 1c0033f6 f80fe0ef jal x1, -6272 x1=1c0033fa +76409674ns 1404352 1c001b76 d681a703 lw x14, -664(x3) x14=00000000 x3:1c0093dc PA:1c009144 +76409695ns 1404353 1c001b7a d8c18793 addi x15, x3, -628 x15=1c009168 x3:1c0093dc +76409715ns 1404354 1c001b7e 00070463 beq x14, x0, 8 x14:00000000 +76409775ns 1404357 1c001b86 ff010113 addi x2, x2, -16 x2=1c019960 x2:1c019970 +76409796ns 1404358 1c001b88 00812423 sw x8, 8(x2) x8:00001880 x2:1c019960 PA:1c019968 +76409816ns 1404359 1c001b8a 00112623 sw x1, 12(x2) x1:1c0033fa x2:1c019960 PA:1c01996c +76409836ns 1404360 1c001b8c 0007a023 sw x0, 0(x15) x15:1c009168 PA:1c009168 +76409856ns 1404361 1c001b90 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76409876ns 1404362 1c001b94 0007a783 lw x15, 0(x15) x15=1c00a890 x15:1c009130 PA:1c009130 +76409897ns 1404363 1c001b96 a5a5a737 lui x14, 0xa5a5a000 x14=a5a5a000 +76409917ns 1404364 1c001b9a 5a570713 addi x14, x14, 1445 x14=a5a5a5a5 x14:a5a5a000 +76409937ns 1404365 1c001b9e 0307a783 lw x15, 48(x15) x15=1c00a248 x15:1c00a890 PA:1c00a8c0 +76409957ns 1404366 1c001ba0 d5418413 addi x8, x3, -684 x8=1c009130 x3:1c0093dc +76409977ns 1404367 1c001ba4 0007a603 lw x12, 0(x15) x12=a5a5a5a5 x15:1c00a248 PA:1c00a248 +76410018ns 1404369 1c001ba6 00e61b63 bne x12, x14, 22 x12:a5a5a5a5 x14:a5a5a5a5 +76410038ns 1404370 1c001baa 0047a683 lw x13, 4(x15) x13=a5a5a5a5 x15:1c00a248 PA:1c00a24c +76410078ns 1404372 1c001bac 00c69863 bne x13, x12, 16 x13:a5a5a5a5 x12:a5a5a5a5 +76410098ns 1404373 1c001bb0 0087a703 lw x14, 8(x15) x14=a5a5a5a5 x15:1c00a248 PA:1c00a250 +76410139ns 1404375 1c001bb2 00d71563 bne x14, x13, 10 x14:a5a5a5a5 x13:a5a5a5a5 +76410159ns 1404376 1c001bb6 00c7a783 lw x15, 12(x15) x15=a5a5a5a5 x15:1c00a248 PA:1c00a254 +76410199ns 1404378 1c001bb8 00e78863 beq x15, x14, 16 x15:a5a5a5a5 x14:a5a5a5a5 +76410260ns 1404381 1c001bc8 d701a503 lw x10, -656(x3) x10=00000003 x3:1c0093dc PA:1c00914c +76410280ns 1404382 1c001bcc abeff0ef jal x1, -3394 x1=1c001bd0 +76410321ns 1404384 1c000e8a 000107b7 lui x15, 0x10000 x15=00010000 +76410341ns 1404385 1c000e8c 02f57663 bgeu x10, x15, 44 x10:00000003 x15:00010000 +76410361ns 1404386 1c000e90 0ff00793 addi x15, x0, 255 x15=000000ff +76410381ns 1404387 1c000e94 00a7b7b3 sltu x15, x15, x10 x15=00000000 x15:000000ff x10:00000003 +76410401ns 1404388 1c000e98 00379793 slli x15, x15, 0x3 x15=00000000 x15:00000000 +76410422ns 1404389 1c000e9a 1c009737 lui x14, 0x1c009000 x14=1c009000 +76410442ns 1404390 1c000e9e 02000693 addi x13, x0, 32 x13=00000020 +76410462ns 1404391 1c000ea2 40f686b3 sub x13, x13, x15 x13=00000020 x13:00000020 x15:00000000 +76410482ns 1404392 1c000ea4 00f55533 srl x10, x10, x15 x10=00000003 x10:00000003 x15:00000000 +76410502ns 1404393 1c000ea8 ad470793 addi x15, x14, -1324 x15=1c008ad4 x14:1c009000 +76410523ns 1404394 1c000eac 00f50533 add x10, x10, x15 x10=1c008ad7 x10:00000003 x15:1c008ad4 +76410543ns 1404395 1c000eae 00054503 lbu x10, 0(x10) x10=00000002 x10:1c008ad7 PA:1c008ad7 +76410583ns 1404397 1c000eb2 40a68533 sub x10, x13, x10 x10=0000001e x13:00000020 x10:00000002 +76410603ns 1404398 1c000eb6 00008067 jalr x0, x1, 0 x1:1c001bd0 +76410644ns 1404400 1c001bd0 01f00713 addi x14, x0, 31 x14=0000001f +76410664ns 1404401 1c001bd2 40a70533 sub x10, x14, x10 x10=00000001 x14:0000001f x10:0000001e +76410684ns 1404402 1c001bd6 01400793 addi x15, x0, 20 x15=00000014 +76410704ns 1404403 1c001bd8 02f507b3 mul x15, x10, x15 x15=00000014 x10:00000001 x15:00000014 +76410724ns 1404404 1c001bdc 1c009737 lui x14, 0x1c009000 x14=1c009000 +76410745ns 1404405 1c001be0 c8870693 addi x13, x14, -888 x13=1c008c88 x14:1c009000 +76410765ns 1404406 1c001be4 c8870713 addi x14, x14, -888 x14=1c008c88 x14:1c009000 +76410785ns 1404407 1c001be8 00f686b3 add x13, x13, x15 x13=1c008c9c x13:1c008c88 x15:00000014 +76410805ns 1404408 1c001bea 0006a603 lw x12, 0(x13) x12=00000001 x13:1c008c9c PA:1c008c9c +76410846ns 1404410 1c001bec 02061263 bne x12, x0, 36 x12:00000001 +76410906ns 1404413 1c001c10 0046a603 lw x12, 4(x13) x12=1c008ca4 x13:1c008c9c PA:1c008ca0 +76410926ns 1404414 1c001c12 00878793 addi x15, x15, 8 x15=0000001c x15:00000014 +76410947ns 1404415 1c001c14 00e787b3 add x15, x15, x14 x15=1c008ca4 x15:0000001c x14:1c008c88 +76410967ns 1404416 1c001c16 00462603 lw x12, 4(x12) x12=1c009dbc x12:1c008ca4 PA:1c008ca8 +76411007ns 1404418 1c001c18 00c6a223 sw x12, 4(x13) x12:1c009dbc x13:1c008c9c PA:1c008ca0 +76411027ns 1404419 1c001c1a 00f61463 bne x12, x15, 8 x12:1c009dbc x15:1c008ca4 +76411088ns 1404422 1c001c22 01400793 addi x15, x0, 20 x15=00000014 +76411108ns 1404423 1c001c24 02f50533 mul x10, x10, x15 x10=00000014 x10:00000001 x15:00000014 +76411128ns 1404424 1c001c28 00c12083 lw x1, 12(x2) x1=1c0033fa x2:1c019960 PA:1c01996c +76411148ns 1404425 1c001c2a 00a70733 add x14, x14, x10 x14=1c008c9c x14:1c008c88 x10:00000014 +76411169ns 1404426 1c001c2c 00472783 lw x15, 4(x14) x15=1c009dbc x14:1c008c9c PA:1c008ca0 +76411189ns 1404427 1c001c2e 1c009737 lui x14, 0x1c009000 x14=1c009000 +76411209ns 1404428 1c001c32 00c7a783 lw x15, 12(x15) x15=1c009db8 x15:1c009dbc PA:1c009dc8 +76411249ns 1404430 1c001c34 00f42023 sw x15, 0(x8) x15:1c009db8 x8:1c009130 PA:1c009130 +76411270ns 1404431 1c001c36 00042783 lw x15, 0(x8) x15=1c009db8 x8:1c009130 PA:1c009130 +76411290ns 1404432 1c001c38 00812403 lw x8, 8(x2) x8=00001880 x2:1c019960 PA:1c019968 +76411310ns 1404433 1c001c3a 05878793 addi x15, x15, 88 x15=1c009e10 x15:1c009db8 +76411330ns 1404434 1c001c3e c4f72223 sw x15, -956(x14) x15:1c009e10 x14:1c009000 PA:1c008c44 +76411350ns 1404435 1c001c42 01010113 addi x2, x2, 16 x2=1c019970 x2:1c019960 +76411371ns 1404436 1c001c44 00008067 jalr x0, x1, 0 x1:1c0033fa +76411431ns 1404439 1c0033fa 30041073 csrrw x0, x8, 0x300 x8:00001880 +76411512ns 1404443 1c0033fe 01c12083 lw x1, 28(x2) x1=1c0034f0 x2:1c019970 PA:1c01998c +76411532ns 1404444 1c003400 01812403 lw x8, 24(x2) x8=1c009b68 x2:1c019970 PA:1c019988 +76411552ns 1404445 1c003402 02010113 addi x2, x2, 32 x2=1c019990 x2:1c019970 +76411572ns 1404446 1c003404 00008067 jalr x0, x1, 0 x1:1c0034f0 +76411613ns 1404448 1c0034f0 00100793 addi x15, x0, 1 x15=00000001 +76411633ns 1404449 1c0034f2 04f40223 sb x15, 68(x8) x15:00000001 x8:1c009b68 PA:1c009bac +76411653ns 1404450 1c0034f6 00c12083 lw x1, 12(x2) x1=1c00312c x2:1c019990 PA:1c01999c +76411673ns 1404451 1c0034f8 00812403 lw x8, 8(x2) x8=1c00b890 x2:1c019990 PA:1c019998 +76411694ns 1404452 1c0034fa 01010113 addi x2, x2, 16 x2=1c0199a0 x2:1c019990 +76411714ns 1404453 1c0034fc 00008067 jalr x0, x1, 0 x1:1c00312c +76411754ns 1404455 1c00312c 00042623 sw x0, 12(x8) x8:1c00b890 PA:1c00b89c +76411774ns 1404456 1c003130 00800533 add x10, x0, x8 x10=1c00b890 x8:1c00b890 +76411795ns 1404457 1c003132 ac3ff0ef jal x1, -1342 x1=1c003136 +76411835ns 1404459 1c002bf4 300027f3 csrrs x15, x0, 0x300 x15=00001880 +76411916ns 1404463 1c002bf8 300476f3 csrrci x13, 0x00000008, 0x300 x13=00001880 +76411997ns 1404467 1c002bfc 00052783 lw x15, 0(x10) x15=1c00b8b0 x10:1c00b890 PA:1c00b890 +76412037ns 1404469 1c002bfe 0007a503 lw x10, 0(x15) x10=00000000 x15:1c00b8b0 PA:1c00b8b0 +76412077ns 1404471 1c002c00 00050663 beq x10, x0, 12 x10:00000000 +76412138ns 1404474 1c002c0c 30069073 csrrw x0, x13, 0x300 x13:00001880 +76412219ns 1404478 1c002c10 00008067 jalr x0, x1, 0 x1:1c003136 +76412259ns 1404480 1c003136 00050563 beq x10, x0, 10 x10:00000000 +76412320ns 1404483 1c003140 00c12083 lw x1, 12(x2) x1=1c00098c x2:1c0199a0 PA:1c0199ac +76412340ns 1404484 1c003142 00812403 lw x8, 8(x2) x8=a5a5a5a5 x2:1c0199a0 PA:1c0199a8 +76412360ns 1404485 1c003144 01010113 addi x2, x2, 16 x2=1c0199b0 x2:1c0199a0 +76412380ns 1404486 1c003146 00008067 jalr x0, x1, 0 x1:1c00098c +76412421ns 1404488 1c00098c 0320006f jal x0, 50 +76412481ns 1404491 1c0009be d541a303 lw x6, -684(x3) x6=1c009db8 x3:1c0093dc PA:1c009130 +76412522ns 1404493 1c0009c2 00032103 lw x2, 0(x6) x2=1c009a50 x6:1c009db8 PA:1c009db8 +76412562ns 1404495 1c0009c6 00012283 lw x5, 0(x2) x5=1c001732 x2:1c009a50 PA:1c009a50 +76412602ns 1404497 1c0009c8 34129073 csrrw x0, x5, 0x341 x5:1c001732 +76412622ns 1404498 1c0009cc 00412283 lw x5, 4(x2) x5=00000000 x2:1c009a50 PA:1c009a54 +76412643ns 1404499 1c0009ce 00812303 lw x6, 8(x2) x6=00000000 x2:1c009a50 PA:1c009a58 +76412663ns 1404500 1c0009d0 00c12383 lw x7, 12(x2) x7=00000000 x2:1c009a50 PA:1c009a5c +76412683ns 1404501 1c0009d2 01012e03 lw x28, 16(x2) x28=00000000 x2:1c009a50 PA:1c009a60 +76412703ns 1404502 1c0009d4 01412e83 lw x29, 20(x2) x29=00000000 x2:1c009a50 PA:1c009a64 +76412723ns 1404503 1c0009d6 01812f03 lw x30, 24(x2) x30=00000000 x2:1c009a50 PA:1c009a68 +76412744ns 1404504 1c0009d8 7c029073 csrrw x0, x5, 0x7c0 x5:00000000 +76412764ns 1404505 1c0009dc 7c131073 csrrw x0, x6, 0x7c1 x6:00000000 +76412784ns 1404506 1c0009e0 7c239073 csrrw x0, x7, 0x7c2 x7:00000000 +76412804ns 1404507 1c0009e4 7c4e1073 csrrw x0, x28, 0x7c4 x28:00000000 +76412824ns 1404508 1c0009e8 7c5e9073 csrrw x0, x29, 0x7c5 x29:00000000 +76412845ns 1404509 1c0009ec 7c6f1073 csrrw x0, x30, 0x7c6 x30:00000000 +76412865ns 1404510 1c0009f0 01810113 addi x2, x2, 24 x2=1c009a68 x2:1c009a50 +76412885ns 1404511 1c0009f2 07412283 lw x5, 116(x2) x5=00001880 x2:1c009a68 PA:1c009adc +76412925ns 1404513 1c0009f4 30029073 csrrw x0, x5, 0x300 x5:00001880 +76413006ns 1404517 1c0009f8 00412083 lw x1, 4(x2) x1=1c00172c x2:1c009a68 PA:1c009a6c +76413026ns 1404518 1c0009fa 00812283 lw x5, 8(x2) x5=a5a5a5a5 x2:1c009a68 PA:1c009a70 +76413047ns 1404519 1c0009fc 00c12303 lw x6, 12(x2) x6=00000000 x2:1c009a68 PA:1c009a74 +76413067ns 1404520 1c0009fe 01012383 lw x7, 16(x2) x7=a5a5a5a5 x2:1c009a68 PA:1c009a78 +76413087ns 1404521 1c000a00 01412403 lw x8, 20(x2) x8=1c00c2e0 x2:1c009a68 PA:1c009a7c +76413107ns 1404522 1c000a02 01812483 lw x9, 24(x2) x9=00000000 x2:1c009a68 PA:1c009a80 +76413127ns 1404523 1c000a04 01c12503 lw x10, 28(x2) x10=00000000 x2:1c009a68 PA:1c009a84 +76413147ns 1404524 1c000a06 02012583 lw x11, 32(x2) x11=1c009dbc x2:1c009a68 PA:1c009a88 +76413168ns 1404525 1c000a08 02412603 lw x12, 36(x2) x12=00000003 x2:1c009a68 PA:1c009a8c +76413188ns 1404526 1c000a0a 02812683 lw x13, 40(x2) x13=1c009db8 x2:1c009a68 PA:1c009a90 +76413208ns 1404527 1c000a0c 02c12703 lw x14, 44(x2) x14=00000000 x2:1c009a68 PA:1c009a94 +76413228ns 1404528 1c000a0e 03012783 lw x15, 48(x2) x15=00000000 x2:1c009a68 PA:1c009a98 +76413248ns 1404529 1c000a10 03412803 lw x16, 52(x2) x16=00000003 x2:1c009a68 PA:1c009a9c +76413269ns 1404530 1c000a12 03812883 lw x17, 56(x2) x17=00000008 x2:1c009a68 PA:1c009aa0 +76413289ns 1404531 1c000a14 03c12903 lw x18, 60(x2) x18=00000000 x2:1c009a68 PA:1c009aa4 +76413309ns 1404532 1c000a16 04012983 lw x19, 64(x2) x19=ffffffff x2:1c009a68 PA:1c009aa8 +76413329ns 1404533 1c000a18 04412a03 lw x20, 68(x2) x20=1c00c304 x2:1c009a68 PA:1c009aac +76413349ns 1404534 1c000a1a 04812a83 lw x21, 72(x2) x21=a5a5a5a5 x2:1c009a68 PA:1c009ab0 +76413370ns 1404535 1c000a1c 04c12b03 lw x22, 76(x2) x22=a5a5a5a5 x2:1c009a68 PA:1c009ab4 +76413390ns 1404536 1c000a1e 05012b83 lw x23, 80(x2) x23=a5a5a5a5 x2:1c009a68 PA:1c009ab8 +76413410ns 1404537 1c000a20 05412c03 lw x24, 84(x2) x24=a5a5a5a5 x2:1c009a68 PA:1c009abc +76413430ns 1404538 1c000a22 05812c83 lw x25, 88(x2) x25=a5a5a5a5 x2:1c009a68 PA:1c009ac0 +76413450ns 1404539 1c000a24 05c12d03 lw x26, 92(x2) x26=a5a5a5a5 x2:1c009a68 PA:1c009ac4 +76413471ns 1404540 1c000a26 06012d83 lw x27, 96(x2) x27=a5a5a5a5 x2:1c009a68 PA:1c009ac8 +76413491ns 1404541 1c000a28 06412e03 lw x28, 100(x2) x28=00000008 x2:1c009a68 PA:1c009acc +76413511ns 1404542 1c000a2a 06812e83 lw x29, 104(x2) x29=1c00b890 x2:1c009a68 PA:1c009ad0 +76413531ns 1404543 1c000a2c 06c12f03 lw x30, 108(x2) x30=1c009c98 x2:1c009a68 PA:1c009ad4 +76413551ns 1404544 1c000a2e 07012f83 lw x31, 112(x2) x31=a5a5a5a5 x2:1c009a68 PA:1c009ad8 +76413571ns 1404545 1c000a30 07810113 addi x2, x2, 120 x2=1c009ae0 x2:1c009a68 +76413592ns 1404546 1c000a34 30200073 mret +76413693ns 1404551 1c001732 00100913 addi x18, x0, 1 x18=00000001 +76413713ns 1404552 1c001734 0d9000ef jal x1, 2264 x1=1c001738 +76413753ns 1404554 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +76413834ns 1404558 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76413874ns 1404560 1c002014 00078863 beq x15, x0, 16 x15:00000001 +76413895ns 1404561 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76413915ns 1404562 1c00201a 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76413935ns 1404563 1c00201c 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76413955ns 1404564 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c009db8 PA:1c009dfc +76413996ns 1404566 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76414016ns 1404567 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c009db8 PA:1c009dfc +76414036ns 1404568 1c002024 00008067 jalr x0, x1, 0 x1:1c001738 +76414076ns 1404570 1c001738 03842783 lw x15, 56(x8) x15=00000001 x8:1c00c2e0 PA:1c00c318 +76414117ns 1404572 1c00173a f60781e3 beq x15, x0, -158 x15:00000001 +76414137ns 1404573 1c00173c fff78793 addi x15, x15, -1 x15=00000000 x15:00000001 +76414157ns 1404574 1c00173e 02f42c23 sw x15, 56(x8) x15:00000000 x8:1c00c2e0 PA:1c00c318 +76414177ns 1404575 1c001740 00042783 lw x15, 0(x8) x15=1c00c2e0 x8:1c00c2e0 PA:1c00c2e0 +76414218ns 1404577 1c001742 00079463 bne x15, x0, 8 x15:1c00c2e0 +76414278ns 1404580 1c00174a 01042783 lw x15, 16(x8) x15=00000000 x8:1c00c2e0 PA:1c00c2f0 +76414319ns 1404582 1c00174c 00078763 beq x15, x0, 14 x15:00000000 +76414399ns 1404586 1c00175a 0cd000ef jal x1, 2252 x1=1c00175e +76414460ns 1404589 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76414500ns 1404591 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +76414521ns 1404592 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76414541ns 1404593 1c002030 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +76414581ns 1404595 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c009db8 PA:1c009dfc +76414621ns 1404597 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +76414642ns 1404598 1c002036 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76414662ns 1404599 1c002038 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76414682ns 1404600 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c009db8 PA:1c009dfc +76414722ns 1404602 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +76414743ns 1404603 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c009db8 PA:1c009dfc +76414763ns 1404604 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c009db8 PA:1c009dfc +76414803ns 1404606 1c002042 00079363 bne x15, x0, 6 x15:00000000 +76414823ns 1404607 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +76414904ns 1404611 1c002048 00008067 jalr x0, x1, 0 x1:1c00175e +76414945ns 1404613 1c00175e 00100493 addi x9, x0, 1 x9=00000001 +76414965ns 1404614 1c001760 03c12083 lw x1, 60(x2) x1=1c003438 x2:1c009ae0 PA:1c009b1c +76414985ns 1404615 1c001762 03812403 lw x8, 56(x2) x8=00000088 x2:1c009ae0 PA:1c009b18 +76415005ns 1404616 1c001764 03012903 lw x18, 48(x2) x18=1c009188 x2:1c009ae0 PA:1c009b10 +76415025ns 1404617 1c001766 02c12983 lw x19, 44(x2) x19=1c009000 x2:1c009ae0 PA:1c009b0c +76415046ns 1404618 1c001768 02812a03 lw x20, 40(x2) x20=1c00918c x2:1c009ae0 PA:1c009b08 +76415066ns 1404619 1c00176a 00900533 add x10, x0, x9 x10=00000001 x9:00000001 +76415086ns 1404620 1c00176c 03412483 lw x9, 52(x2) x9=1c009190 x2:1c009ae0 PA:1c009b14 +76415106ns 1404621 1c00176e 04010113 addi x2, x2, 64 x2=1c009b20 x2:1c009ae0 +76415126ns 1404622 1c001770 00008067 jalr x0, x1, 0 x1:1c003438 +76415167ns 1404624 1c003438 fefff06f jal x0, -18 +76415227ns 1404627 1c003426 30041073 csrrw x0, x8, 0x300 x8:00000088 +76415308ns 1404631 1c00342a 01c12083 lw x1, 28(x2) x1=1c0034de x2:1c009b20 PA:1c009b3c +76415328ns 1404632 1c00342c 01812403 lw x8, 24(x2) x8=1c009b68 x2:1c009b20 PA:1c009b38 +76415348ns 1404633 1c00342e 02010113 addi x2, x2, 32 x2=1c009b40 x2:1c009b20 +76415369ns 1404634 1c003430 00008067 jalr x0, x1, 0 x1:1c0034de +76415409ns 1404636 1c0034de fe1ff06f jal x0, -32 +76415470ns 1404639 1c0034be 04444783 lbu x15, 68(x8) x15=00000001 x8:1c009b68 PA:1c009bac +76415510ns 1404641 1c0034c2 01879793 slli x15, x15, 0x18 x15=01000000 x15:00000001 +76415530ns 1404642 1c0034c4 4187d793 srai x15, x15, 0x418 x15=00000001 x15:01000000 +76415550ns 1404643 1c0034c6 00078763 beq x15, x0, 14 x15:00000001 +76415571ns 1404644 1c0034c8 00800533 add x10, x0, x8 x10=1c009b68 x8:1c009b68 +76415591ns 1404645 1c0034ca 00812403 lw x8, 8(x2) x8=1c009be0 x2:1c009b40 PA:1c009b48 +76415611ns 1404646 1c0034cc 00c12083 lw x1, 12(x2) x1=1c002b6c x2:1c009b40 PA:1c009b4c +76415631ns 1404647 1c0034ce 01010113 addi x2, x2, 16 x2=1c009b50 x2:1c009b40 +76415651ns 1404648 1c0034d0 fb3ff06f jal x0, -78 +76415712ns 1404651 1c003482 04750783 lb x15, 71(x10) x15=00000001 x10:1c009b68 PA:1c009baf +76415752ns 1404653 1c003486 02078763 beq x15, x0, 46 x15:00000001 +76415772ns 1404654 1c003488 ff010113 addi x2, x2, -16 x2=1c009b40 x2:1c009b50 +76415793ns 1404655 1c00348a 00812423 sw x8, 8(x2) x8:1c009be0 x2:1c009b40 PA:1c009b48 +76415813ns 1404656 1c00348c 00112623 sw x1, 12(x2) x1:1c002b6c x2:1c009b40 PA:1c009b4c +76415833ns 1404657 1c00348e 00a00433 add x8, x0, x10 x8=1c009b68 x10:1c009b68 +76415853ns 1404658 1c003490 040503a3 sb x0, 71(x10) x10:1c009b68 PA:1c009baf +76415873ns 1404659 1c003494 03452783 lw x15, 52(x10) x15=1c00c2e0 x10:1c009b68 PA:1c009b9c +76415914ns 1404661 1c003496 00078b63 beq x15, x0, 22 x15:1c00c2e0 +76415934ns 1404662 1c003498 03452503 lw x10, 52(x10) x10=1c00c2e0 x10:1c009b68 PA:1c009b9c +76415974ns 1404664 1c00349a 00050763 beq x10, x0, 14 x10:1c00c2e0 +76415995ns 1404665 1c00349c c1cfe0ef jal x1, -7140 x1=1c0034a0 +76416035ns 1404667 1c0018b8 ff010113 addi x2, x2, -16 x2=1c009b30 x2:1c009b40 +76416055ns 1404668 1c0018ba 00112623 sw x1, 12(x2) x1:1c0034a0 x2:1c009b30 PA:1c009b3c +76416075ns 1404669 1c0018bc 00812423 sw x8, 8(x2) x8:1c009b68 x2:1c009b30 PA:1c009b38 +76416095ns 1404670 1c0018be 02051163 bne x10, x0, 34 x10:1c00c2e0 +76416156ns 1404673 1c0018e0 00a00433 add x8, x0, x10 x8=1c00c2e0 x10:1c00c2e0 +76416176ns 1404674 1c0018e2 fa9ff0ef jal x1, -88 x1=1c0018e4 +76416237ns 1404677 1c00188a 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76416257ns 1404678 1c00188e c4878693 addi x13, x15, -952 x13=1c008c48 x15:1c009000 +76416277ns 1404679 1c001892 00000713 addi x14, x0, 0 x14=00000000 +76416297ns 1404680 1c001894 c4878793 addi x15, x15, -952 x15=1c008c48 x15:1c009000 +76416318ns 1404681 1c001898 00800613 addi x12, x0, 8 x12=00000008 +76416338ns 1404682 1c00189a 0046a583 lw x11, 4(x13) x11=1c00ad20 x13:1c008c48 PA:1c008c4c +76416378ns 1404684 1c00189c 00a59963 bne x11, x10, 18 x11:1c00ad20 x10:1c00c2e0 +76416439ns 1404687 1c0018ae 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76416459ns 1404688 1c0018b0 00868693 addi x13, x13, 8 x13=1c008c50 x13:1c008c48 +76416479ns 1404689 1c0018b2 fec714e3 bne x14, x12, -24 x14:00000001 x12:00000008 +76416540ns 1404692 1c00189a 0046a583 lw x11, 4(x13) x11=00000000 x13:1c008c50 PA:1c008c54 +76416580ns 1404694 1c00189c 00a59963 bne x11, x10, 18 x11:00000000 x10:1c00c2e0 +76416641ns 1404697 1c0018ae 00170713 addi x14, x14, 1 x14=00000002 x14:00000001 +76416661ns 1404698 1c0018b0 00868693 addi x13, x13, 8 x13=1c008c58 x13:1c008c50 +76416681ns 1404699 1c0018b2 fec714e3 bne x14, x12, -24 x14:00000002 x12:00000008 +76416742ns 1404702 1c00189a 0046a583 lw x11, 4(x13) x11=00000000 x13:1c008c58 PA:1c008c5c +76416782ns 1404704 1c00189c 00a59963 bne x11, x10, 18 x11:00000000 x10:1c00c2e0 +76416843ns 1404707 1c0018ae 00170713 addi x14, x14, 1 x14=00000003 x14:00000002 +76416863ns 1404708 1c0018b0 00868693 addi x13, x13, 8 x13=1c008c60 x13:1c008c58 +76416883ns 1404709 1c0018b2 fec714e3 bne x14, x12, -24 x14:00000003 x12:00000008 +76416944ns 1404712 1c00189a 0046a583 lw x11, 4(x13) x11=00000000 x13:1c008c60 PA:1c008c64 +76416984ns 1404714 1c00189c 00a59963 bne x11, x10, 18 x11:00000000 x10:1c00c2e0 +76417045ns 1404717 1c0018ae 00170713 addi x14, x14, 1 x14=00000004 x14:00000003 +76417065ns 1404718 1c0018b0 00868693 addi x13, x13, 8 x13=1c008c68 x13:1c008c60 +76417085ns 1404719 1c0018b2 fec714e3 bne x14, x12, -24 x14:00000004 x12:00000008 +76417145ns 1404722 1c00189a 0046a583 lw x11, 4(x13) x11=00000000 x13:1c008c68 PA:1c008c6c +76417186ns 1404724 1c00189c 00a59963 bne x11, x10, 18 x11:00000000 x10:1c00c2e0 +76417246ns 1404727 1c0018ae 00170713 addi x14, x14, 1 x14=00000005 x14:00000004 +76417267ns 1404728 1c0018b0 00868693 addi x13, x13, 8 x13=1c008c70 x13:1c008c68 +76417287ns 1404729 1c0018b2 fec714e3 bne x14, x12, -24 x14:00000005 x12:00000008 +76417347ns 1404732 1c00189a 0046a583 lw x11, 4(x13) x11=00000000 x13:1c008c70 PA:1c008c74 +76417388ns 1404734 1c00189c 00a59963 bne x11, x10, 18 x11:00000000 x10:1c00c2e0 +76417448ns 1404737 1c0018ae 00170713 addi x14, x14, 1 x14=00000006 x14:00000005 +76417469ns 1404738 1c0018b0 00868693 addi x13, x13, 8 x13=1c008c78 x13:1c008c70 +76417489ns 1404739 1c0018b2 fec714e3 bne x14, x12, -24 x14:00000006 x12:00000008 +76417549ns 1404742 1c00189a 0046a583 lw x11, 4(x13) x11=00000000 x13:1c008c78 PA:1c008c7c +76417590ns 1404744 1c00189c 00a59963 bne x11, x10, 18 x11:00000000 x10:1c00c2e0 +76417650ns 1404747 1c0018ae 00170713 addi x14, x14, 1 x14=00000007 x14:00000006 +76417670ns 1404748 1c0018b0 00868693 addi x13, x13, 8 x13=1c008c80 x13:1c008c78 +76417691ns 1404749 1c0018b2 fec714e3 bne x14, x12, -24 x14:00000007 x12:00000008 +76417751ns 1404752 1c00189a 0046a583 lw x11, 4(x13) x11=00000000 x13:1c008c80 PA:1c008c84 +76417792ns 1404754 1c00189c 00a59963 bne x11, x10, 18 x11:00000000 x10:1c00c2e0 +76417852ns 1404757 1c0018ae 00170713 addi x14, x14, 1 x14=00000008 x14:00000007 +76417872ns 1404758 1c0018b0 00868693 addi x13, x13, 8 x13=1c008c88 x13:1c008c80 +76417893ns 1404759 1c0018b2 fec714e3 bne x14, x12, -24 x14:00000008 x12:00000008 +76417913ns 1404760 1c0018b6 00008067 jalr x0, x1, 0 x1:1c0018e4 +76417953ns 1404762 1c0018e4 00800533 add x10, x0, x8 x10=1c00c2e0 x8:1c00c2e0 +76417973ns 1404763 1c0018e6 00812403 lw x8, 8(x2) x8=1c009b68 x2:1c009b30 PA:1c009b38 +76417994ns 1404764 1c0018e8 00c12083 lw x1, 12(x2) x1=1c0034a0 x2:1c009b30 PA:1c009b3c +76418014ns 1404765 1c0018ea 01010113 addi x2, x2, 16 x2=1c009b40 x2:1c009b30 +76418034ns 1404766 1c0018ec 0a60106f jal x0, 4262 +76418074ns 1404768 1c002992 fe010113 addi x2, x2, -32 x2=1c009b20 x2:1c009b40 +76418095ns 1404769 1c002994 00112e23 sw x1, 28(x2) x1:1c0034a0 x2:1c009b20 PA:1c009b3c +76418115ns 1404770 1c002996 00a12623 sw x10, 12(x2) x10:1c00c2e0 x2:1c009b20 PA:1c009b2c +76418135ns 1404771 1c002998 00050a63 beq x10, x0, 20 x10:1c00c2e0 +76418155ns 1404772 1c00299a 87cff0ef jal x1, -3972 x1=1c00299e +76418216ns 1404775 1c001a16 d6818793 addi x15, x3, -664 x15=1c009144 x3:1c0093dc +76418236ns 1404776 1c001a1a 0007a703 lw x14, 0(x15) x14=00000000 x15:1c009144 PA:1c009144 +76418276ns 1404778 1c001a1c 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76418296ns 1404779 1c001a1e 00e7a023 sw x14, 0(x15) x14:00000001 x15:1c009144 PA:1c009144 +76418317ns 1404780 1c001a20 00008067 jalr x0, x1, 0 x1:1c00299e +76418357ns 1404782 1c00299e 00c12503 lw x10, 12(x2) x10=1c00c2e0 x2:1c009b20 PA:1c009b2c +76418377ns 1404783 1c0029a0 775000ef jal x1, 3956 x1=1c0029a4 +76418418ns 1404785 1c003914 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76418438ns 1404786 1c003918 00a005b3 add x11, x0, x10 x11=1c00c2e0 x10:1c00c2e0 +76418458ns 1404787 1c00391a c447a503 lw x10, -956(x15) x10=1c009e10 x15:1c009000 PA:1c008c44 +76418478ns 1404788 1c00391e 0020006f jal x0, 2 +76418519ns 1404790 1c003920 0a058363 beq x11, x0, 166 x11:1c00c2e0 +76418539ns 1404791 1c003922 ffc5a783 lw x15, -4(x11) x15=00000058 x11:1c00c2e0 PA:1c00c2dc +76418559ns 1404792 1c003926 fe010113 addi x2, x2, -32 x2=1c009b00 x2:1c009b20 +76418579ns 1404793 1c003928 00812c23 sw x8, 24(x2) x8:1c009b68 x2:1c009b00 PA:1c009b18 +76418599ns 1404794 1c00392a 00112e23 sw x1, 28(x2) x1:1c0029a4 x2:1c009b00 PA:1c009b1c +76418619ns 1404795 1c00392c ffc58413 addi x8, x11, -4 x8=1c00c2dc x11:1c00c2e0 +76418640ns 1404796 1c003930 0007d363 bge x15, x0, 6 x15:00000058 +76418700ns 1404799 1c003936 00a12623 sw x10, 12(x2) x10:1c009e10 x2:1c009b00 PA:1c009b0c +76418720ns 1404800 1c003938 92eff0ef jal x1, -3794 x1=1c00393c +76418781ns 1404803 1c002a66 fb1fe06f jal x0, -4176 +76418842ns 1404806 1c001a16 d6818793 addi x15, x3, -664 x15=1c009144 x3:1c0093dc +76418862ns 1404807 1c001a1a 0007a703 lw x14, 0(x15) x14=00000001 x15:1c009144 PA:1c009144 +76418902ns 1404809 1c001a1c 00170713 addi x14, x14, 1 x14=00000002 x14:00000001 +76418922ns 1404810 1c001a1e 00e7a023 sw x14, 0(x15) x14:00000002 x15:1c009144 PA:1c009144 +76418943ns 1404811 1c001a20 00008067 jalr x0, x1, 0 x1:1c00393c +76418983ns 1404813 1c00393c db81a783 lw x15, -584(x3) x15=00000000 x3:1c0093dc PA:1c009194 +76419003ns 1404814 1c003940 00c12503 lw x10, 12(x2) x10=1c009e10 x2:1c009b00 PA:1c009b0c +76419023ns 1404815 1c003942 00e00633 add x12, x0, x14 x12=00000002 x14:00000002 +76419044ns 1404816 1c003944 00079a63 bne x15, x0, 20 x15:00000000 +76419064ns 1404817 1c003946 00042223 sw x0, 4(x8) x8:1c00c2dc PA:1c00c2e0 +76419084ns 1404818 1c00394a da81ac23 sw x8, -584(x3) x8:1c00c2dc x3:1c0093dc PA:1c009194 +76419104ns 1404819 1c00394e 01812403 lw x8, 24(x2) x8=1c009b68 x2:1c009b00 PA:1c009b18 +76419124ns 1404820 1c003950 01c12083 lw x1, 28(x2) x1=1c0029a4 x2:1c009b00 PA:1c009b1c +76419144ns 1404821 1c003952 02010113 addi x2, x2, 32 x2=1c009b20 x2:1c009b00 +76419165ns 1404822 1c003954 916ff06f jal x0, -3818 +76419225ns 1404825 1c002a6a 8e3ff06f jal x0, -1822 +76419266ns 1404827 1c00234c fc010113 addi x2, x2, -64 x2=1c009ae0 x2:1c009b20 +76419286ns 1404828 1c00234e 02812c23 sw x8, 56(x2) x8:1c009b68 x2:1c009ae0 PA:1c009b18 +76419306ns 1404829 1c002350 d6818413 addi x8, x3, -664 x8=1c009144 x3:1c0093dc +76419326ns 1404830 1c002354 00042783 lw x15, 0(x8) x15=00000002 x8:1c009144 PA:1c009144 +76419346ns 1404831 1c002356 02112e23 sw x1, 60(x2) x1:1c0029a4 x2:1c009ae0 PA:1c009b1c +76419367ns 1404832 1c002358 02912a23 sw x9, 52(x2) x9:1c009190 x2:1c009ae0 PA:1c009b14 +76419387ns 1404833 1c00235a 03212823 sw x18, 48(x2) x18:1c009188 x2:1c009ae0 PA:1c009b10 +76419407ns 1404834 1c00235c 03312623 sw x19, 44(x2) x19:1c009000 x2:1c009ae0 PA:1c009b0c +76419427ns 1404835 1c00235e 03412423 sw x20, 40(x2) x20:1c00918c x2:1c009ae0 PA:1c009b08 +76419447ns 1404836 1c002360 03512223 sw x21, 36(x2) x21:a5a5a5a5 x2:1c009ae0 PA:1c009b04 +76419468ns 1404837 1c002362 03612023 sw x22, 32(x2) x22:a5a5a5a5 x2:1c009ae0 PA:1c009b00 +76419488ns 1404838 1c002364 01712e23 sw x23, 28(x2) x23:a5a5a5a5 x2:1c009ae0 PA:1c009afc +76419508ns 1404839 1c002366 02079263 bne x15, x0, 36 x15:00000002 +76419589ns 1404843 1c00238a c83ff0ef jal x1, -894 x1=1c00238e +76419629ns 1404845 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +76419710ns 1404849 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76419750ns 1404851 1c002014 00078863 beq x15, x0, 16 x15:00000001 +76419770ns 1404852 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76419791ns 1404853 1c00201a 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76419811ns 1404854 1c00201c 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76419831ns 1404855 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c009db8 PA:1c009dfc +76419871ns 1404857 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76419892ns 1404858 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c009db8 PA:1c009dfc +76419912ns 1404859 1c002024 00008067 jalr x0, x1, 0 x1:1c00238e +76419952ns 1404861 1c00238e 00042783 lw x15, 0(x8) x15=00000002 x8:1c009144 PA:1c009144 +76419993ns 1404863 1c002390 fff78793 addi x15, x15, -1 x15=00000001 x15:00000002 +76420013ns 1404864 1c002392 00f42023 sw x15, 0(x8) x15:00000001 x8:1c009144 PA:1c009144 +76420033ns 1404865 1c002394 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +76420073ns 1404867 1c002396 02078163 beq x15, x0, 34 x15:00000001 +76420094ns 1404868 1c002398 00000513 addi x10, x0, 0 x10=00000000 +76420114ns 1404869 1c00239a 00a12623 sw x10, 12(x2) x10:00000000 x2:1c009ae0 PA:1c009aec +76420134ns 1404870 1c00239c c8bff0ef jal x1, -886 x1=1c0023a0 +76420194ns 1404873 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76420235ns 1404875 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +76420255ns 1404876 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76420275ns 1404877 1c002030 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +76420316ns 1404879 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c009db8 PA:1c009dfc +76420356ns 1404881 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +76420376ns 1404882 1c002036 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76420396ns 1404883 1c002038 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76420417ns 1404884 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c009db8 PA:1c009dfc +76420457ns 1404886 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +76420477ns 1404887 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c009db8 PA:1c009dfc +76420497ns 1404888 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c009db8 PA:1c009dfc +76420538ns 1404890 1c002042 00079363 bne x15, x0, 6 x15:00000000 +76420558ns 1404891 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +76420639ns 1404895 1c002048 00008067 jalr x0, x1, 0 x1:1c0023a0 +76420679ns 1404897 1c0023a0 03c12083 lw x1, 60(x2) x1=1c0029a4 x2:1c009ae0 PA:1c009b1c +76420699ns 1404898 1c0023a2 03812403 lw x8, 56(x2) x8=1c009b68 x2:1c009ae0 PA:1c009b18 +76420719ns 1404899 1c0023a4 00c12503 lw x10, 12(x2) x10=00000000 x2:1c009ae0 PA:1c009aec +76420740ns 1404900 1c0023a6 03412483 lw x9, 52(x2) x9=1c009190 x2:1c009ae0 PA:1c009b14 +76420760ns 1404901 1c0023a8 03012903 lw x18, 48(x2) x18=1c009188 x2:1c009ae0 PA:1c009b10 +76420780ns 1404902 1c0023aa 02c12983 lw x19, 44(x2) x19=1c009000 x2:1c009ae0 PA:1c009b0c +76420800ns 1404903 1c0023ac 02812a03 lw x20, 40(x2) x20=1c00918c x2:1c009ae0 PA:1c009b08 +76420820ns 1404904 1c0023ae 02412a83 lw x21, 36(x2) x21=a5a5a5a5 x2:1c009ae0 PA:1c009b04 +76420841ns 1404905 1c0023b0 02012b03 lw x22, 32(x2) x22=a5a5a5a5 x2:1c009ae0 PA:1c009b00 +76420861ns 1404906 1c0023b2 01c12b83 lw x23, 28(x2) x23=a5a5a5a5 x2:1c009ae0 PA:1c009afc +76420881ns 1404907 1c0023b4 04010113 addi x2, x2, 64 x2=1c009b20 x2:1c009ae0 +76420901ns 1404908 1c0023b6 00008067 jalr x0, x1, 0 x1:1c0029a4 +76420942ns 1404910 1c0029a4 01c12083 lw x1, 28(x2) x1=1c0034a0 x2:1c009b20 PA:1c009b3c +76420962ns 1404911 1c0029a6 02010113 addi x2, x2, 32 x2=1c009b40 x2:1c009b20 +76420982ns 1404912 1c0029a8 9a5ff06f jal x0, -1628 +76421022ns 1404914 1c00234c fc010113 addi x2, x2, -64 x2=1c009b00 x2:1c009b40 +76421043ns 1404915 1c00234e 02812c23 sw x8, 56(x2) x8:1c009b68 x2:1c009b00 PA:1c009b38 +76421063ns 1404916 1c002350 d6818413 addi x8, x3, -664 x8=1c009144 x3:1c0093dc +76421083ns 1404917 1c002354 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +76421103ns 1404918 1c002356 02112e23 sw x1, 60(x2) x1:1c0034a0 x2:1c009b00 PA:1c009b3c +76421123ns 1404919 1c002358 02912a23 sw x9, 52(x2) x9:1c009190 x2:1c009b00 PA:1c009b34 +76421143ns 1404920 1c00235a 03212823 sw x18, 48(x2) x18:1c009188 x2:1c009b00 PA:1c009b30 +76421164ns 1404921 1c00235c 03312623 sw x19, 44(x2) x19:1c009000 x2:1c009b00 PA:1c009b2c +76421184ns 1404922 1c00235e 03412423 sw x20, 40(x2) x20:1c00918c x2:1c009b00 PA:1c009b28 +76421204ns 1404923 1c002360 03512223 sw x21, 36(x2) x21:a5a5a5a5 x2:1c009b00 PA:1c009b24 +76421224ns 1404924 1c002362 03612023 sw x22, 32(x2) x22:a5a5a5a5 x2:1c009b00 PA:1c009b20 +76421244ns 1404925 1c002364 01712e23 sw x23, 28(x2) x23:a5a5a5a5 x2:1c009b00 PA:1c009b1c +76421265ns 1404926 1c002366 02079263 bne x15, x0, 36 x15:00000001 +76421345ns 1404930 1c00238a c83ff0ef jal x1, -894 x1=1c00238e +76421386ns 1404932 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +76421467ns 1404936 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76421507ns 1404938 1c002014 00078863 beq x15, x0, 16 x15:00000001 +76421527ns 1404939 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76421547ns 1404940 1c00201a 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76421568ns 1404941 1c00201c 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76421588ns 1404942 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c009db8 PA:1c009dfc +76421628ns 1404944 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76421648ns 1404945 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c009db8 PA:1c009dfc +76421668ns 1404946 1c002024 00008067 jalr x0, x1, 0 x1:1c00238e +76421709ns 1404948 1c00238e 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +76421749ns 1404950 1c002390 fff78793 addi x15, x15, -1 x15=00000000 x15:00000001 +76421769ns 1404951 1c002392 00f42023 sw x15, 0(x8) x15:00000000 x8:1c009144 PA:1c009144 +76421790ns 1404952 1c002394 00042783 lw x15, 0(x8) x15=00000000 x8:1c009144 PA:1c009144 +76421830ns 1404954 1c002396 02078163 beq x15, x0, 34 x15:00000000 +76421891ns 1404957 1c0023b8 d601a783 lw x15, -672(x3) x15=00000003 x3:1c0093dc PA:1c00913c +76421931ns 1404959 1c0023bc fc078ee3 beq x15, x0, -36 x15:00000003 +76421951ns 1404960 1c0023be 1c009937 lui x18, 0x1c009000 x18=1c009000 +76421971ns 1404961 1c0023c2 00000413 addi x8, x0, 0 x8=00000000 +76421992ns 1404962 1c0023c4 93818493 addi x9, x3, -1736 x9=1c008d14 x3:1c0093dc +76422012ns 1404963 1c0023c8 00100993 addi x19, x0, 1 x19=00000001 +76422032ns 1404964 1c0023ca c8890913 addi x18, x18, -888 x18=1c008c88 x18:1c009000 +76422052ns 1404965 1c0023ce 01400a93 addi x21, x0, 20 x21=00000014 +76422072ns 1404966 1c0023d0 04c0006f jal x0, 76 +76422113ns 1404968 1c00241c 0004a783 lw x15, 0(x9) x15=00000000 x9:1c008d14 PA:1c008d14 +76422153ns 1404970 1c00241e fa079ae3 bne x15, x0, -76 x15:00000000 +76422173ns 1404971 1c002420 00040363 beq x8, x0, 6 x8:00000000 +76422254ns 1404975 1c002426 d8018713 addi x14, x3, -640 x14=1c00915c x3:1c0093dc +76422274ns 1404976 1c00242a 00072483 lw x9, 0(x14) x9=00000000 x14:1c00915c PA:1c00915c +76422294ns 1404977 1c00242c d8018413 addi x8, x3, -640 x8=1c00915c x3:1c0093dc +76422315ns 1404978 1c002430 00048d63 beq x9, x0, 26 x9:00000000 +76422395ns 1404982 1c00244a d8c1a783 lw x15, -628(x3) x15=00000000 x3:1c0093dc PA:1c009168 +76422436ns 1404984 1c00244e f40785e3 beq x15, x0, -182 x15:00000000 +76422496ns 1404987 1c002398 00000513 addi x10, x0, 0 x10=00000000 +76422517ns 1404988 1c00239a 00a12623 sw x10, 12(x2) x10:00000000 x2:1c009b00 PA:1c009b0c +76422537ns 1404989 1c00239c c8bff0ef jal x1, -886 x1=1c0023a0 +76422597ns 1404992 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76422638ns 1404994 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +76422658ns 1404995 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76422678ns 1404996 1c002030 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +76422718ns 1404998 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c009db8 PA:1c009dfc +76422759ns 1405000 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +76422779ns 1405001 1c002036 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76422799ns 1405002 1c002038 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76422819ns 1405003 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c009db8 PA:1c009dfc +76422860ns 1405005 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +76422880ns 1405006 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c009db8 PA:1c009dfc +76422900ns 1405007 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c009db8 PA:1c009dfc +76422941ns 1405009 1c002042 00079363 bne x15, x0, 6 x15:00000000 +76422961ns 1405010 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +76423042ns 1405014 1c002048 00008067 jalr x0, x1, 0 x1:1c0023a0 +76423082ns 1405016 1c0023a0 03c12083 lw x1, 60(x2) x1=1c0034a0 x2:1c009b00 PA:1c009b3c +76423102ns 1405017 1c0023a2 03812403 lw x8, 56(x2) x8=1c009b68 x2:1c009b00 PA:1c009b38 +76423122ns 1405018 1c0023a4 00c12503 lw x10, 12(x2) x10=00000000 x2:1c009b00 PA:1c009b0c +76423143ns 1405019 1c0023a6 03412483 lw x9, 52(x2) x9=1c009190 x2:1c009b00 PA:1c009b34 +76423163ns 1405020 1c0023a8 03012903 lw x18, 48(x2) x18=1c009188 x2:1c009b00 PA:1c009b30 +76423183ns 1405021 1c0023aa 02c12983 lw x19, 44(x2) x19=1c009000 x2:1c009b00 PA:1c009b2c +76423203ns 1405022 1c0023ac 02812a03 lw x20, 40(x2) x20=1c00918c x2:1c009b00 PA:1c009b28 +76423223ns 1405023 1c0023ae 02412a83 lw x21, 36(x2) x21=a5a5a5a5 x2:1c009b00 PA:1c009b24 +76423243ns 1405024 1c0023b0 02012b03 lw x22, 32(x2) x22=a5a5a5a5 x2:1c009b00 PA:1c009b20 +76423264ns 1405025 1c0023b2 01c12b83 lw x23, 28(x2) x23=a5a5a5a5 x2:1c009b00 PA:1c009b1c +76423284ns 1405026 1c0023b4 04010113 addi x2, x2, 64 x2=1c009b40 x2:1c009b00 +76423304ns 1405027 1c0023b6 00008067 jalr x0, x1, 0 x1:1c0034a0 +76423344ns 1405029 1c0034a0 02042c23 sw x0, 56(x8) x8:1c009b68 PA:1c009ba0 +76423365ns 1405030 1c0034a4 02042e23 sw x0, 60(x8) x8:1c009b68 PA:1c009ba4 +76423385ns 1405031 1c0034a8 02042a23 sw x0, 52(x8) x8:1c009b68 PA:1c009b9c +76423405ns 1405032 1c0034ac 00c12083 lw x1, 12(x2) x1=1c002b6c x2:1c009b40 PA:1c009b4c +76423425ns 1405033 1c0034ae 00812403 lw x8, 8(x2) x8=1c009be0 x2:1c009b40 PA:1c009b48 +76423445ns 1405034 1c0034b0 01010113 addi x2, x2, 16 x2=1c009b50 x2:1c009b40 +76423466ns 1405035 1c0034b2 00008067 jalr x0, x1, 0 x1:1c002b6c +76423506ns 1405037 1c002b6c 01810513 addi x10, x2, 24 x10=1c009b68 x2:1c009b50 +76423526ns 1405038 1c002b6e 115000ef jal x1, 2324 x1=1c002b72 +76423587ns 1405041 1c003482 04750783 lb x15, 71(x10) x15=00000000 x10:1c009b68 PA:1c009baf +76423627ns 1405043 1c003486 02078763 beq x15, x0, 46 x15:00000000 +76423688ns 1405046 1c0034b4 00008067 jalr x0, x1, 0 x1:1c002b72 +76423728ns 1405048 1c002b72 06c12083 lw x1, 108(x2) x1=1c003670 x2:1c009b50 PA:1c009bbc +76423748ns 1405049 1c002b74 06812403 lw x8, 104(x2) x8=00000000 x2:1c009b50 PA:1c009bb8 +76423768ns 1405050 1c002b76 07010113 addi x2, x2, 112 x2=1c009bc0 x2:1c009b50 +76423789ns 1405051 1c002b78 00008067 jalr x0, x1, 0 x1:1c003670 +76423829ns 1405053 1c003670 00000693 addi x13, x0, 0 x13=00000000 +76423849ns 1405054 1c003672 00800613 addi x12, x0, 8 x12=00000008 +76423869ns 1405055 1c003674 01710593 addi x11, x2, 23 x11=1c009bd7 x2:1c009bc0 +76423890ns 1405056 1c003678 02010513 addi x10, x2, 32 x10=1c009be0 x2:1c009bc0 +76423910ns 1405057 1c00367a d04ff0ef jal x1, -2812 x1=1c00367e +76423950ns 1405059 1c002b7e f9010113 addi x2, x2, -112 x2=1c009b50 x2:1c009bc0 +76423970ns 1405060 1c002b80 06812423 sw x8, 104(x2) x8:00000000 x2:1c009b50 PA:1c009bb8 +76423991ns 1405061 1c002b82 00a00433 add x8, x0, x10 x8=1c009be0 x10:1c009be0 +76424011ns 1405062 1c002b84 01810513 addi x10, x2, 24 x10=1c009b68 x2:1c009b50 +76424031ns 1405063 1c002b86 06112623 sw x1, 108(x2) x1:1c00367e x2:1c009b50 PA:1c009bbc +76424051ns 1405064 1c002b88 00b12623 sw x11, 12(x2) x11:1c009bd7 x2:1c009b50 PA:1c009b5c +76424071ns 1405065 1c002b8a 00c12423 sw x12, 8(x2) x12:00000008 x2:1c009b50 PA:1c009b58 +76424092ns 1405066 1c002b8c 00d12223 sw x13, 4(x2) x13:00000000 x2:1c009b50 PA:1c009b54 +76424112ns 1405067 1c002b8e 0ad000ef jal x1, 2220 x1=1c002b92 +76424152ns 1405069 1c00343a ff010113 addi x2, x2, -16 x2=1c009b40 x2:1c009b50 +76424172ns 1405070 1c00343c 00812423 sw x8, 8(x2) x8:1c009be0 x2:1c009b40 PA:1c009b48 +76424192ns 1405071 1c00343e 00112623 sw x1, 12(x2) x1:1c002b92 x2:1c009b40 PA:1c009b4c +76424213ns 1405072 1c003440 00100793 addi x15, x0, 1 x15=00000001 +76424233ns 1405073 1c003442 00a00433 add x8, x0, x10 x8=1c009b68 x10:1c009b68 +76424253ns 1405074 1c003444 00f52823 sw x15, 16(x10) x15:00000001 x10:1c009b68 PA:1c009b78 +76424273ns 1405075 1c003446 04050223 sb x0, 68(x10) x10:1c009b68 PA:1c009bac +76424293ns 1405076 1c00344a 00000593 addi x11, x0, 0 x11=00000000 +76424314ns 1405077 1c00344c 0ff00513 addi x10, x0, 255 x10=000000ff +76424334ns 1405078 1c003450 d33fd0ef jal x1, -8910 x1=1c003454 +76424374ns 1405080 1c001182 ff010113 addi x2, x2, -16 x2=1c009b30 x2:1c009b40 +76424394ns 1405081 1c001184 00112623 sw x1, 12(x2) x1:1c003454 x2:1c009b30 PA:1c009b3c +76424415ns 1405082 1c001186 00812423 sw x8, 8(x2) x8:1c009b68 x2:1c009b30 PA:1c009b38 +76424435ns 1405083 1c001188 02051163 bne x10, x0, 34 x10:000000ff +76424495ns 1405086 1c0011aa 00b00433 add x8, x0, x11 x8=00000000 x11:00000000 +76424516ns 1405087 1c0011ac 00b57d63 bgeu x10, x11, 26 x10:000000ff x11:00000000 +76424576ns 1405090 1c0011c6 00200613 addi x12, x0, 2 x12=00000002 +76424596ns 1405091 1c0011c8 00000593 addi x11, x0, 0 x11=00000000 +76424617ns 1405092 1c0011ca f4bff0ef jal x1, -182 x1=1c0011cc +76424657ns 1405094 1c001114 fe010113 addi x2, x2, -32 x2=1c009b10 x2:1c009b30 +76424677ns 1405095 1c001116 00112e23 sw x1, 28(x2) x1:1c0011cc x2:1c009b10 PA:1c009b2c +76424697ns 1405096 1c001118 00812c23 sw x8, 24(x2) x8:00000000 x2:1c009b10 PA:1c009b28 +76424717ns 1405097 1c00111a 00912a23 sw x9, 20(x2) x9:1c009190 x2:1c009b10 PA:1c009b24 +76424738ns 1405098 1c00111c 01212823 sw x18, 16(x2) x18:1c009188 x2:1c009b10 PA:1c009b20 +76424758ns 1405099 1c00111e 01312623 sw x19, 12(x2) x19:1c009000 x2:1c009b10 PA:1c009b1c +76424778ns 1405100 1c001120 02051163 bne x10, x0, 34 x10:000000ff +76424839ns 1405103 1c001142 00a00933 add x18, x0, x10 x18=000000ff x10:000000ff +76424859ns 1405104 1c001144 02b50533 mul x10, x10, x11 x10=00000000 x10:000000ff x11:00000000 +76424879ns 1405105 1c001148 00b004b3 add x9, x0, x11 x9=00000000 x11:00000000 +76424899ns 1405106 1c00114a 00c009b3 add x19, x0, x12 x19=00000002 x12:00000002 +76424919ns 1405107 1c00114c 05050513 addi x10, x10, 80 x10=00000050 x10:00000000 +76424940ns 1405108 1c001150 01b010ef jal x1, 6170 x1=1c001154 +76424980ns 1405110 1c00296a fe010113 addi x2, x2, -32 x2=1c009af0 x2:1c009b10 +76425000ns 1405111 1c00296c 00112e23 sw x1, 28(x2) x1:1c001154 x2:1c009af0 PA:1c009b0c +76425020ns 1405112 1c00296e 00812c23 sw x8, 24(x2) x8:00000000 x2:1c009af0 PA:1c009b08 +76425041ns 1405113 1c002970 00a12623 sw x10, 12(x2) x10:00000050 x2:1c009af0 PA:1c009afc +76425061ns 1405114 1c002972 8a4ff0ef jal x1, -3932 x1=1c002976 +76425121ns 1405117 1c001a16 d6818793 addi x15, x3, -664 x15=1c009144 x3:1c0093dc +76425142ns 1405118 1c001a1a 0007a703 lw x14, 0(x15) x14=00000000 x15:1c009144 PA:1c009144 +76425182ns 1405120 1c001a1c 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76425202ns 1405121 1c001a1e 00e7a023 sw x14, 0(x15) x14:00000001 x15:1c009144 PA:1c009144 +76425222ns 1405122 1c001a20 00008067 jalr x0, x1, 0 x1:1c002976 +76425263ns 1405124 1c002976 00c12503 lw x10, 12(x2) x10=00000050 x2:1c009af0 PA:1c009afc +76425283ns 1405125 1c002978 791000ef jal x1, 3984 x1=1c00297c +76425323ns 1405127 1c003908 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76425343ns 1405128 1c00390c 00a005b3 add x11, x0, x10 x11=00000050 x10:00000050 +76425364ns 1405129 1c00390e c447a503 lw x10, -956(x15) x10=1c009e10 x15:1c009000 PA:1c008c44 +76425384ns 1405130 1c003912 0b60006f jal x0, 182 +76425424ns 1405132 1c0039c8 fe010113 addi x2, x2, -32 x2=1c009ad0 x2:1c009af0 +76425444ns 1405133 1c0039ca 00912a23 sw x9, 20(x2) x9:00000000 x2:1c009ad0 PA:1c009ae4 +76425465ns 1405134 1c0039cc 00358493 addi x9, x11, 3 x9=00000053 x11:00000050 +76425485ns 1405135 1c0039d0 ffc4f493 andi x9, x9, -4 x9=00000050 x9:00000053 +76425505ns 1405136 1c0039d2 01212823 sw x18, 16(x2) x18:000000ff x2:1c009ad0 PA:1c009ae0 +76425525ns 1405137 1c0039d4 00112e23 sw x1, 28(x2) x1:1c00297c x2:1c009ad0 PA:1c009aec +76425545ns 1405138 1c0039d6 00812c23 sw x8, 24(x2) x8:00000000 x2:1c009ad0 PA:1c009ae8 +76425566ns 1405139 1c0039d8 01312623 sw x19, 12(x2) x19:00000002 x2:1c009ad0 PA:1c009adc +76425586ns 1405140 1c0039da 00848493 addi x9, x9, 8 x9=00000058 x9:00000050 +76425606ns 1405141 1c0039dc 00c00793 addi x15, x0, 12 x15=0000000c +76425626ns 1405142 1c0039de 00a00933 add x18, x0, x10 x18=1c009e10 x10:1c009e10 +76425646ns 1405143 1c0039e0 04f4f363 bgeu x9, x15, 70 x9:00000058 x15:0000000c +76425727ns 1405147 1c003a26 fc04d0e3 bge x9, x0, -64 x9:00000058 +76425808ns 1405151 1c0039e6 04b4e263 bltu x9, x11, 68 x9:00000058 x11:00000050 +76425828ns 1405152 1c0039ea 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +76425848ns 1405153 1c0039ec 87aff0ef jal x1, -3974 x1=1c0039f0 +76425909ns 1405156 1c002a66 fb1fe06f jal x0, -4176 +76425969ns 1405159 1c001a16 d6818793 addi x15, x3, -664 x15=1c009144 x3:1c0093dc +76425990ns 1405160 1c001a1a 0007a703 lw x14, 0(x15) x14=00000001 x15:1c009144 PA:1c009144 +76426030ns 1405162 1c001a1c 00170713 addi x14, x14, 1 x14=00000002 x14:00000001 +76426050ns 1405163 1c001a1e 00e7a023 sw x14, 0(x15) x14:00000002 x15:1c009144 PA:1c009144 +76426070ns 1405164 1c001a20 00008067 jalr x0, x1, 0 x1:1c0039f0 +76426111ns 1405166 1c0039f0 db81a703 lw x14, -584(x3) x14=1c00c2dc x3:1c0093dc PA:1c009194 +76426131ns 1405167 1c0039f4 db818693 addi x13, x3, -584 x13=1c009194 x3:1c0093dc +76426151ns 1405168 1c0039f8 00e00433 add x8, x0, x14 x8=1c00c2dc x14:1c00c2dc +76426171ns 1405169 1c0039fa 04041363 bne x8, x0, 70 x8:1c00c2dc +76426232ns 1405172 1c003a40 00042783 lw x15, 0(x8) x15=00000058 x8:1c00c2dc PA:1c00c2dc +76426272ns 1405174 1c003a42 409787b3 sub x15, x15, x9 x15=00000000 x15:00000058 x9:00000058 +76426292ns 1405175 1c003a44 0207cf63 blt x15, x0, 62 x15:00000000 +76426313ns 1405176 1c003a48 00b00613 addi x12, x0, 11 x12=0000000b +76426333ns 1405177 1c003a4a 00f67663 bgeu x12, x15, 12 x12:0000000b x15:00000000 +76426393ns 1405180 1c003a56 00442783 lw x15, 4(x8) x15=00000000 x8:1c00c2dc PA:1c00c2e0 +76426414ns 1405181 1c003a58 02871363 bne x14, x8, 38 x14:1c00c2dc x8:1c00c2dc +76426434ns 1405182 1c003a5c 00f6a023 sw x15, 0(x13) x15:00000000 x13:1c009194 PA:1c009194 +76426454ns 1405183 1c003a5e 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +76426474ns 1405184 1c003a60 80aff0ef jal x1, -4086 x1=1c003a64 +76426535ns 1405187 1c002a6a 8e3ff06f jal x0, -1822 +76426575ns 1405189 1c00234c fc010113 addi x2, x2, -64 x2=1c009a90 x2:1c009ad0 +76426595ns 1405190 1c00234e 02812c23 sw x8, 56(x2) x8:1c00c2dc x2:1c009a90 PA:1c009ac8 +76426616ns 1405191 1c002350 d6818413 addi x8, x3, -664 x8=1c009144 x3:1c0093dc +76426636ns 1405192 1c002354 00042783 lw x15, 0(x8) x15=00000002 x8:1c009144 PA:1c009144 +76426656ns 1405193 1c002356 02112e23 sw x1, 60(x2) x1:1c003a64 x2:1c009a90 PA:1c009acc +76426676ns 1405194 1c002358 02912a23 sw x9, 52(x2) x9:00000058 x2:1c009a90 PA:1c009ac4 +76426696ns 1405195 1c00235a 03212823 sw x18, 48(x2) x18:1c009e10 x2:1c009a90 PA:1c009ac0 +76426716ns 1405196 1c00235c 03312623 sw x19, 44(x2) x19:00000002 x2:1c009a90 PA:1c009abc +76426737ns 1405197 1c00235e 03412423 sw x20, 40(x2) x20:1c00918c x2:1c009a90 PA:1c009ab8 +76426757ns 1405198 1c002360 03512223 sw x21, 36(x2) x21:a5a5a5a5 x2:1c009a90 PA:1c009ab4 +76426777ns 1405199 1c002362 03612023 sw x22, 32(x2) x22:a5a5a5a5 x2:1c009a90 PA:1c009ab0 +76426797ns 1405200 1c002364 01712e23 sw x23, 28(x2) x23:a5a5a5a5 x2:1c009a90 PA:1c009aac +76426817ns 1405201 1c002366 02079263 bne x15, x0, 36 x15:00000002 +76426898ns 1405205 1c00238a c83ff0ef jal x1, -894 x1=1c00238e +76426939ns 1405207 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +76427019ns 1405211 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76427060ns 1405213 1c002014 00078863 beq x15, x0, 16 x15:00000001 +76427080ns 1405214 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76427100ns 1405215 1c00201a 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76427120ns 1405216 1c00201c 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76427141ns 1405217 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c009db8 PA:1c009dfc +76427181ns 1405219 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76427201ns 1405220 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c009db8 PA:1c009dfc +76427221ns 1405221 1c002024 00008067 jalr x0, x1, 0 x1:1c00238e +76427262ns 1405223 1c00238e 00042783 lw x15, 0(x8) x15=00000002 x8:1c009144 PA:1c009144 +76427302ns 1405225 1c002390 fff78793 addi x15, x15, -1 x15=00000001 x15:00000002 +76427322ns 1405226 1c002392 00f42023 sw x15, 0(x8) x15:00000001 x8:1c009144 PA:1c009144 +76427342ns 1405227 1c002394 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +76427383ns 1405229 1c002396 02078163 beq x15, x0, 34 x15:00000001 +76427403ns 1405230 1c002398 00000513 addi x10, x0, 0 x10=00000000 +76427423ns 1405231 1c00239a 00a12623 sw x10, 12(x2) x10:00000000 x2:1c009a90 PA:1c009a9c +76427443ns 1405232 1c00239c c8bff0ef jal x1, -886 x1=1c0023a0 +76427504ns 1405235 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76427544ns 1405237 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +76427565ns 1405238 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76427585ns 1405239 1c002030 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +76427625ns 1405241 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c009db8 PA:1c009dfc +76427666ns 1405243 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +76427686ns 1405244 1c002036 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76427706ns 1405245 1c002038 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76427726ns 1405246 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c009db8 PA:1c009dfc +76427766ns 1405248 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +76427787ns 1405249 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c009db8 PA:1c009dfc +76427807ns 1405250 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c009db8 PA:1c009dfc +76427847ns 1405252 1c002042 00079363 bne x15, x0, 6 x15:00000000 +76427867ns 1405253 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +76427948ns 1405257 1c002048 00008067 jalr x0, x1, 0 x1:1c0023a0 +76427989ns 1405259 1c0023a0 03c12083 lw x1, 60(x2) x1=1c003a64 x2:1c009a90 PA:1c009acc +76428009ns 1405260 1c0023a2 03812403 lw x8, 56(x2) x8=1c00c2dc x2:1c009a90 PA:1c009ac8 +76428029ns 1405261 1c0023a4 00c12503 lw x10, 12(x2) x10=00000000 x2:1c009a90 PA:1c009a9c +76428049ns 1405262 1c0023a6 03412483 lw x9, 52(x2) x9=00000058 x2:1c009a90 PA:1c009ac4 +76428069ns 1405263 1c0023a8 03012903 lw x18, 48(x2) x18=1c009e10 x2:1c009a90 PA:1c009ac0 +76428090ns 1405264 1c0023aa 02c12983 lw x19, 44(x2) x19=00000002 x2:1c009a90 PA:1c009abc +76428110ns 1405265 1c0023ac 02812a03 lw x20, 40(x2) x20=1c00918c x2:1c009a90 PA:1c009ab8 +76428130ns 1405266 1c0023ae 02412a83 lw x21, 36(x2) x21=a5a5a5a5 x2:1c009a90 PA:1c009ab4 +76428150ns 1405267 1c0023b0 02012b03 lw x22, 32(x2) x22=a5a5a5a5 x2:1c009a90 PA:1c009ab0 +76428170ns 1405268 1c0023b2 01c12b83 lw x23, 28(x2) x23=a5a5a5a5 x2:1c009a90 PA:1c009aac +76428191ns 1405269 1c0023b4 04010113 addi x2, x2, 64 x2=1c009ad0 x2:1c009a90 +76428211ns 1405270 1c0023b6 00008067 jalr x0, x1, 0 x1:1c003a64 +76428251ns 1405272 1c003a64 00b40513 addi x10, x8, 11 x10=1c00c2e7 x8:1c00c2dc +76428271ns 1405273 1c003a68 00440793 addi x15, x8, 4 x15=1c00c2e0 x8:1c00c2dc +76428291ns 1405274 1c003a6c ff857513 andi x10, x10, -8 x10=1c00c2e0 x10:1c00c2e7 +76428312ns 1405275 1c003a6e 40f50733 sub x14, x10, x15 x14=00000000 x10:1c00c2e0 x15:1c00c2e0 +76428332ns 1405276 1c003a72 fcf500e3 beq x10, x15, -64 x10:1c00c2e0 x15:1c00c2e0 +76428392ns 1405279 1c003a32 01c12083 lw x1, 28(x2) x1=1c00297c x2:1c009ad0 PA:1c009aec +76428413ns 1405280 1c003a34 01812403 lw x8, 24(x2) x8=00000000 x2:1c009ad0 PA:1c009ae8 +76428433ns 1405281 1c003a36 01412483 lw x9, 20(x2) x9=00000000 x2:1c009ad0 PA:1c009ae4 +76428453ns 1405282 1c003a38 01012903 lw x18, 16(x2) x18=000000ff x2:1c009ad0 PA:1c009ae0 +76428473ns 1405283 1c003a3a 00c12983 lw x19, 12(x2) x19=00000002 x2:1c009ad0 PA:1c009adc +76428493ns 1405284 1c003a3c 02010113 addi x2, x2, 32 x2=1c009af0 x2:1c009ad0 +76428514ns 1405285 1c003a3e 00008067 jalr x0, x1, 0 x1:1c00297c +76428554ns 1405287 1c00297c 00a00433 add x8, x0, x10 x8=1c00c2e0 x10:1c00c2e0 +76428574ns 1405288 1c00297e 9cfff0ef jal x1, -1586 x1=1c002982 +76428615ns 1405290 1c00234c fc010113 addi x2, x2, -64 x2=1c009ab0 x2:1c009af0 +76428635ns 1405291 1c00234e 02812c23 sw x8, 56(x2) x8:1c00c2e0 x2:1c009ab0 PA:1c009ae8 +76428655ns 1405292 1c002350 d6818413 addi x8, x3, -664 x8=1c009144 x3:1c0093dc +76428675ns 1405293 1c002354 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +76428695ns 1405294 1c002356 02112e23 sw x1, 60(x2) x1:1c002982 x2:1c009ab0 PA:1c009aec +76428715ns 1405295 1c002358 02912a23 sw x9, 52(x2) x9:00000000 x2:1c009ab0 PA:1c009ae4 +76428736ns 1405296 1c00235a 03212823 sw x18, 48(x2) x18:000000ff x2:1c009ab0 PA:1c009ae0 +76428756ns 1405297 1c00235c 03312623 sw x19, 44(x2) x19:00000002 x2:1c009ab0 PA:1c009adc +76428776ns 1405298 1c00235e 03412423 sw x20, 40(x2) x20:1c00918c x2:1c009ab0 PA:1c009ad8 +76428796ns 1405299 1c002360 03512223 sw x21, 36(x2) x21:a5a5a5a5 x2:1c009ab0 PA:1c009ad4 +76428816ns 1405300 1c002362 03612023 sw x22, 32(x2) x22:a5a5a5a5 x2:1c009ab0 PA:1c009ad0 +76428837ns 1405301 1c002364 01712e23 sw x23, 28(x2) x23:a5a5a5a5 x2:1c009ab0 PA:1c009acc +76428857ns 1405302 1c002366 02079263 bne x15, x0, 36 x15:00000001 +76428938ns 1405306 1c00238a c83ff0ef jal x1, -894 x1=1c00238e +76428978ns 1405308 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +76429059ns 1405312 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76429099ns 1405314 1c002014 00078863 beq x15, x0, 16 x15:00000001 +76429119ns 1405315 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76429140ns 1405316 1c00201a 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76429160ns 1405317 1c00201c 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76429180ns 1405318 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c009db8 PA:1c009dfc +76429220ns 1405320 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76429240ns 1405321 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c009db8 PA:1c009dfc +76429261ns 1405322 1c002024 00008067 jalr x0, x1, 0 x1:1c00238e +76429301ns 1405324 1c00238e 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +76429341ns 1405326 1c002390 fff78793 addi x15, x15, -1 x15=00000000 x15:00000001 +76429362ns 1405327 1c002392 00f42023 sw x15, 0(x8) x15:00000000 x8:1c009144 PA:1c009144 +76429382ns 1405328 1c002394 00042783 lw x15, 0(x8) x15=00000000 x8:1c009144 PA:1c009144 +76429422ns 1405330 1c002396 02078163 beq x15, x0, 34 x15:00000000 +76429483ns 1405333 1c0023b8 d601a783 lw x15, -672(x3) x15=00000003 x3:1c0093dc PA:1c00913c +76429523ns 1405335 1c0023bc fc078ee3 beq x15, x0, -36 x15:00000003 +76429543ns 1405336 1c0023be 1c009937 lui x18, 0x1c009000 x18=1c009000 +76429564ns 1405337 1c0023c2 00000413 addi x8, x0, 0 x8=00000000 +76429584ns 1405338 1c0023c4 93818493 addi x9, x3, -1736 x9=1c008d14 x3:1c0093dc +76429604ns 1405339 1c0023c8 00100993 addi x19, x0, 1 x19=00000001 +76429624ns 1405340 1c0023ca c8890913 addi x18, x18, -888 x18=1c008c88 x18:1c009000 +76429644ns 1405341 1c0023ce 01400a93 addi x21, x0, 20 x21=00000014 +76429665ns 1405342 1c0023d0 04c0006f jal x0, 76 +76429705ns 1405344 1c00241c 0004a783 lw x15, 0(x9) x15=00000000 x9:1c008d14 PA:1c008d14 +76429745ns 1405346 1c00241e fa079ae3 bne x15, x0, -76 x15:00000000 +76429765ns 1405347 1c002420 00040363 beq x8, x0, 6 x8:00000000 +76429846ns 1405351 1c002426 d8018713 addi x14, x3, -640 x14=1c00915c x3:1c0093dc +76429866ns 1405352 1c00242a 00072483 lw x9, 0(x14) x9=00000000 x14:1c00915c PA:1c00915c +76429887ns 1405353 1c00242c d8018413 addi x8, x3, -640 x8=1c00915c x3:1c0093dc +76429907ns 1405354 1c002430 00048d63 beq x9, x0, 26 x9:00000000 +76429988ns 1405358 1c00244a d8c1a783 lw x15, -628(x3) x15=00000000 x3:1c0093dc PA:1c009168 +76430028ns 1405360 1c00244e f40785e3 beq x15, x0, -182 x15:00000000 +76430089ns 1405363 1c002398 00000513 addi x10, x0, 0 x10=00000000 +76430109ns 1405364 1c00239a 00a12623 sw x10, 12(x2) x10:00000000 x2:1c009ab0 PA:1c009abc +76430129ns 1405365 1c00239c c8bff0ef jal x1, -886 x1=1c0023a0 +76430190ns 1405368 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76430230ns 1405370 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +76430250ns 1405371 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76430270ns 1405372 1c002030 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +76430311ns 1405374 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c009db8 PA:1c009dfc +76430351ns 1405376 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +76430371ns 1405377 1c002036 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76430391ns 1405378 1c002038 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76430412ns 1405379 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c009db8 PA:1c009dfc +76430452ns 1405381 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +76430472ns 1405382 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c009db8 PA:1c009dfc +76430492ns 1405383 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c009db8 PA:1c009dfc +76430533ns 1405385 1c002042 00079363 bne x15, x0, 6 x15:00000000 +76430553ns 1405386 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +76430634ns 1405390 1c002048 00008067 jalr x0, x1, 0 x1:1c0023a0 +76430674ns 1405392 1c0023a0 03c12083 lw x1, 60(x2) x1=1c002982 x2:1c009ab0 PA:1c009aec +76430694ns 1405393 1c0023a2 03812403 lw x8, 56(x2) x8=1c00c2e0 x2:1c009ab0 PA:1c009ae8 +76430715ns 1405394 1c0023a4 00c12503 lw x10, 12(x2) x10=00000000 x2:1c009ab0 PA:1c009abc +76430735ns 1405395 1c0023a6 03412483 lw x9, 52(x2) x9=00000000 x2:1c009ab0 PA:1c009ae4 +76430755ns 1405396 1c0023a8 03012903 lw x18, 48(x2) x18=000000ff x2:1c009ab0 PA:1c009ae0 +76430775ns 1405397 1c0023aa 02c12983 lw x19, 44(x2) x19=00000002 x2:1c009ab0 PA:1c009adc +76430795ns 1405398 1c0023ac 02812a03 lw x20, 40(x2) x20=1c00918c x2:1c009ab0 PA:1c009ad8 +76430815ns 1405399 1c0023ae 02412a83 lw x21, 36(x2) x21=a5a5a5a5 x2:1c009ab0 PA:1c009ad4 +76430836ns 1405400 1c0023b0 02012b03 lw x22, 32(x2) x22=a5a5a5a5 x2:1c009ab0 PA:1c009ad0 +76430856ns 1405401 1c0023b2 01c12b83 lw x23, 28(x2) x23=a5a5a5a5 x2:1c009ab0 PA:1c009acc +76430876ns 1405402 1c0023b4 04010113 addi x2, x2, 64 x2=1c009af0 x2:1c009ab0 +76430896ns 1405403 1c0023b6 00008067 jalr x0, x1, 0 x1:1c002982 +76430937ns 1405405 1c002982 00041363 bne x8, x0, 6 x8:1c00c2e0 +76430997ns 1405408 1c002988 01c12083 lw x1, 28(x2) x1=1c001154 x2:1c009af0 PA:1c009b0c +76431017ns 1405409 1c00298a 00800533 add x10, x0, x8 x10=1c00c2e0 x8:1c00c2e0 +76431038ns 1405410 1c00298c 01812403 lw x8, 24(x2) x8=00000000 x2:1c009af0 PA:1c009b08 +76431058ns 1405411 1c00298e 02010113 addi x2, x2, 32 x2=1c009b10 x2:1c009af0 +76431078ns 1405412 1c002990 00008067 jalr x0, x1, 0 x1:1c001154 +76431118ns 1405414 1c001154 00a00433 add x8, x0, x10 x8=1c00c2e0 x10:1c00c2e0 +76431139ns 1405415 1c001156 00050e63 beq x10, x0, 28 x10:1c00c2e0 +76431159ns 1405416 1c001158 00a007b3 add x15, x0, x10 x15=1c00c2e0 x10:1c00c2e0 +76431179ns 1405417 1c00115a 00048363 beq x9, x0, 6 x9:00000000 +76431239ns 1405420 1c001160 00f42023 sw x15, 0(x8) x15:1c00c2e0 x8:1c00c2e0 PA:1c00c2e0 +76431260ns 1405421 1c001162 03242e23 sw x18, 60(x8) x18:000000ff x8:1c00c2e0 PA:1c00c31c +76431280ns 1405422 1c001166 04942023 sw x9, 64(x8) x9:00000000 x8:1c00c2e0 PA:1c00c320 +76431300ns 1405423 1c001168 00100593 addi x11, x0, 1 x11=00000001 +76431320ns 1405424 1c00116a 00800533 add x10, x0, x8 x10=1c00c2e0 x8:1c00c2e0 +76431340ns 1405425 1c00116c f1fff0ef jal x1, -226 x1=1c00116e +76431381ns 1405427 1c00108a ff010113 addi x2, x2, -16 x2=1c009b00 x2:1c009b10 +76431401ns 1405428 1c00108c 00112623 sw x1, 12(x2) x1:1c00116e x2:1c009b00 PA:1c009b0c +76431421ns 1405429 1c00108e 00812423 sw x8, 8(x2) x8:1c00c2e0 x2:1c009b00 PA:1c009b08 +76431441ns 1405430 1c001090 00912223 sw x9, 4(x2) x9:00000000 x2:1c009b00 PA:1c009b04 +76431462ns 1405431 1c001092 02051163 bne x10, x0, 34 x10:1c00c2e0 +76431522ns 1405434 1c0010b4 00a00433 add x8, x0, x10 x8=1c00c2e0 x10:1c00c2e0 +76431542ns 1405435 1c0010b6 00b004b3 add x9, x0, x11 x9=00000001 x11:00000001 +76431563ns 1405436 1c0010b8 755000ef jal x1, 3924 x1=1c0010bc +76431603ns 1405438 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +76431684ns 1405442 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76431724ns 1405444 1c002014 00078863 beq x15, x0, 16 x15:00000001 +76431744ns 1405445 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76431764ns 1405446 1c00201a 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76431785ns 1405447 1c00201c 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76431805ns 1405448 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c009db8 PA:1c009dfc +76431845ns 1405450 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76431865ns 1405451 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c009db8 PA:1c009dfc +76431886ns 1405452 1c002024 00008067 jalr x0, x1, 0 x1:1c0010bc +76431926ns 1405454 1c0010bc 04042683 lw x13, 64(x8) x13=00000000 x8:1c00c2e0 PA:1c00c320 +76431946ns 1405455 1c0010be 03c42783 lw x15, 60(x8) x15=000000ff x8:1c00c2e0 PA:1c00c31c +76431966ns 1405456 1c0010c0 00042703 lw x14, 0(x8) x14=1c00c2e0 x8:1c00c2e0 PA:1c00c2e0 +76431987ns 1405457 1c0010c2 02042c23 sw x0, 56(x8) x8:1c00c2e0 PA:1c00c318 +76432007ns 1405458 1c0010c6 02f687b3 mul x15, x13, x15 x15=00000000 x13:00000000 x15:000000ff +76432027ns 1405459 1c0010ca 00e42223 sw x14, 4(x8) x14:1c00c2e0 x8:1c00c2e0 PA:1c00c2e4 +76432047ns 1405460 1c0010cc 00f70633 add x12, x14, x15 x12=1c00c2e0 x14:1c00c2e0 x15:00000000 +76432067ns 1405461 1c0010d0 40d787b3 sub x15, x15, x13 x15=00000000 x15:00000000 x13:00000000 +76432088ns 1405462 1c0010d2 00e787b3 add x15, x15, x14 x15=1c00c2e0 x15:00000000 x14:1c00c2e0 +76432108ns 1405463 1c0010d4 00f42623 sw x15, 12(x8) x15:1c00c2e0 x8:1c00c2e0 PA:1c00c2ec +76432128ns 1405464 1c0010d6 fff00793 addi x15, x0, -1 x15=ffffffff +76432148ns 1405465 1c0010d8 04f40223 sb x15, 68(x8) x15:ffffffff x8:1c00c2e0 PA:1c00c324 +76432168ns 1405466 1c0010dc 00c42423 sw x12, 8(x8) x12:1c00c2e0 x8:1c00c2e0 PA:1c00c2e8 +76432189ns 1405467 1c0010de 04f402a3 sb x15, 69(x8) x15:ffffffff x8:1c00c2e0 PA:1c00c325 +76432209ns 1405468 1c0010e2 02049263 bne x9, x0, 36 x9:00000001 +76432289ns 1405472 1c001106 01040513 addi x10, x8, 16 x10=1c00c2f0 x8:1c00c2e0 +76432310ns 1405473 1c00110a dbdff0ef jal x1, -580 x1=1c00110c +76432370ns 1405476 1c000ec6 00850793 addi x15, x10, 8 x15=1c00c2f8 x10:1c00c2f0 +76432390ns 1405477 1c000eca fff00713 addi x14, x0, -1 x14=ffffffff +76432411ns 1405478 1c000ecc 00f52223 sw x15, 4(x10) x15:1c00c2f8 x10:1c00c2f0 PA:1c00c2f4 +76432431ns 1405479 1c000ece 00e52423 sw x14, 8(x10) x14:ffffffff x10:1c00c2f0 PA:1c00c2f8 +76432451ns 1405480 1c000ed0 00f52623 sw x15, 12(x10) x15:1c00c2f8 x10:1c00c2f0 PA:1c00c2fc +76432471ns 1405481 1c000ed2 00f52823 sw x15, 16(x10) x15:1c00c2f8 x10:1c00c2f0 PA:1c00c300 +76432491ns 1405482 1c000ed4 00052023 sw x0, 0(x10) x10:1c00c2f0 PA:1c00c2f0 +76432512ns 1405483 1c000ed8 00008067 jalr x0, x1, 0 x1:1c00110c +76432552ns 1405485 1c00110c 02440513 addi x10, x8, 36 x10=1c00c304 x8:1c00c2e0 +76432572ns 1405486 1c001110 db7ff0ef jal x1, -586 x1=1c001112 +76432633ns 1405489 1c000ec6 00850793 addi x15, x10, 8 x15=1c00c30c x10:1c00c304 +76432653ns 1405490 1c000eca fff00713 addi x14, x0, -1 x14=ffffffff +76432673ns 1405491 1c000ecc 00f52223 sw x15, 4(x10) x15:1c00c30c x10:1c00c304 PA:1c00c308 +76432693ns 1405492 1c000ece 00e52423 sw x14, 8(x10) x14:ffffffff x10:1c00c304 PA:1c00c30c +76432714ns 1405493 1c000ed0 00f52623 sw x15, 12(x10) x15:1c00c30c x10:1c00c304 PA:1c00c310 +76432734ns 1405494 1c000ed2 00f52823 sw x15, 16(x10) x15:1c00c30c x10:1c00c304 PA:1c00c314 +76432754ns 1405495 1c000ed4 00052023 sw x0, 0(x10) x10:1c00c304 PA:1c00c304 +76432774ns 1405496 1c000ed8 00008067 jalr x0, x1, 0 x1:1c001112 +76432814ns 1405498 1c001112 fe5ff06f jal x0, -28 +76432875ns 1405501 1c0010f6 731000ef jal x1, 3888 x1=1c0010fa +76432936ns 1405504 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76432976ns 1405506 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +76432996ns 1405507 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76433016ns 1405508 1c002030 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +76433057ns 1405510 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c009db8 PA:1c009dfc +76433097ns 1405512 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +76433117ns 1405513 1c002036 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76433138ns 1405514 1c002038 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76433158ns 1405515 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c009db8 PA:1c009dfc +76433198ns 1405517 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +76433218ns 1405518 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c009db8 PA:1c009dfc +76433239ns 1405519 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c009db8 PA:1c009dfc +76433279ns 1405521 1c002042 00079363 bne x15, x0, 6 x15:00000000 +76433299ns 1405522 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +76433380ns 1405526 1c002048 00008067 jalr x0, x1, 0 x1:1c0010fa +76433420ns 1405528 1c0010fa 00c12083 lw x1, 12(x2) x1=1c00116e x2:1c009b00 PA:1c009b0c +76433440ns 1405529 1c0010fc 00812403 lw x8, 8(x2) x8=1c00c2e0 x2:1c009b00 PA:1c009b08 +76433461ns 1405530 1c0010fe 00412483 lw x9, 4(x2) x9=00000000 x2:1c009b00 PA:1c009b04 +76433481ns 1405531 1c001100 00100513 addi x10, x0, 1 x10=00000001 +76433501ns 1405532 1c001102 01010113 addi x2, x2, 16 x2=1c009b10 x2:1c009b00 +76433521ns 1405533 1c001104 00008067 jalr x0, x1, 0 x1:1c00116e +76433582ns 1405536 1c00116e 05340623 sb x19, 76(x8) x19:00000002 x8:1c00c2e0 PA:1c00c32c +76433602ns 1405537 1c001172 01c12083 lw x1, 28(x2) x1=1c0011cc x2:1c009b10 PA:1c009b2c +76433622ns 1405538 1c001174 00800533 add x10, x0, x8 x10=1c00c2e0 x8:1c00c2e0 +76433642ns 1405539 1c001176 01812403 lw x8, 24(x2) x8=00000000 x2:1c009b10 PA:1c009b28 +76433663ns 1405540 1c001178 01412483 lw x9, 20(x2) x9=1c009190 x2:1c009b10 PA:1c009b24 +76433683ns 1405541 1c00117a 01012903 lw x18, 16(x2) x18=1c009188 x2:1c009b10 PA:1c009b20 +76433703ns 1405542 1c00117c 00c12983 lw x19, 12(x2) x19=1c009000 x2:1c009b10 PA:1c009b1c +76433723ns 1405543 1c00117e 02010113 addi x2, x2, 32 x2=1c009b30 x2:1c009b10 +76433743ns 1405544 1c001180 00008067 jalr x0, x1, 0 x1:1c0011cc +76433784ns 1405546 1c0011cc 00050263 beq x10, x0, 4 x10:1c00c2e0 +76433804ns 1405547 1c0011ce 02852c23 sw x8, 56(x10) x8:00000000 x10:1c00c2e0 PA:1c00c318 +76433824ns 1405548 1c0011d0 00c12083 lw x1, 12(x2) x1=1c003454 x2:1c009b30 PA:1c009b3c +76433844ns 1405549 1c0011d2 00812403 lw x8, 8(x2) x8=1c009b68 x2:1c009b30 PA:1c009b38 +76433864ns 1405550 1c0011d4 01010113 addi x2, x2, 16 x2=1c009b40 x2:1c009b30 +76433885ns 1405551 1c0011d6 00008067 jalr x0, x1, 0 x1:1c003454 +76433925ns 1405553 1c003454 02a42a23 sw x10, 52(x8) x10:1c00c2e0 x8:1c009b68 PA:1c009b9c +76433945ns 1405554 1c003456 00050b63 beq x10, x0, 22 x10:1c00c2e0 +76433965ns 1405555 1c003458 1c0037b7 lui x15, 0x1c003000 x15=1c003000 +76433986ns 1405556 1c00345c 40c78793 addi x15, x15, 1036 x15=1c00340c x15:1c003000 +76434006ns 1405557 1c003460 02f42c23 sw x15, 56(x8) x15:1c00340c x8:1c009b68 PA:1c009ba0 +76434026ns 1405558 1c003462 1c0037b7 lui x15, 0x1c003000 x15=1c003000 +76434046ns 1405559 1c003466 3da78793 addi x15, x15, 986 x15=1c0033da x15:1c003000 +76434066ns 1405560 1c00346a 02f42e23 sw x15, 60(x8) x15:1c0033da x8:1c009b68 PA:1c009ba4 +76434087ns 1405561 1c00346c 00100793 addi x15, x0, 1 x15=00000001 +76434107ns 1405562 1c00346e 04f403a3 sb x15, 71(x8) x15:00000001 x8:1c009b68 PA:1c009baf +76434127ns 1405563 1c003472 fff00793 addi x15, x0, -1 x15=ffffffff +76434147ns 1405564 1c003474 00c12083 lw x1, 12(x2) x1=1c002b92 x2:1c009b40 PA:1c009b4c +76434167ns 1405565 1c003476 04f402a3 sb x15, 69(x8) x15:ffffffff x8:1c009b68 PA:1c009bad +76434188ns 1405566 1c00347a 00800533 add x10, x0, x8 x10=1c009b68 x8:1c009b68 +76434208ns 1405567 1c00347c 00812403 lw x8, 8(x2) x8=1c009be0 x2:1c009b40 PA:1c009b48 +76434228ns 1405568 1c00347e 01010113 addi x2, x2, 16 x2=1c009b50 x2:1c009b40 +76434248ns 1405569 1c003480 00008067 jalr x0, x1, 0 x1:1c002b92 +76434288ns 1405571 1c002b92 00412683 lw x13, 4(x2) x13=00000000 x2:1c009b50 PA:1c009b54 +76434309ns 1405572 1c002b94 00812603 lw x12, 8(x2) x12=00000008 x2:1c009b50 PA:1c009b58 +76434329ns 1405573 1c002b96 00c12583 lw x11, 12(x2) x11=1c009bd7 x2:1c009b50 PA:1c009b5c +76434349ns 1405574 1c002b98 01810713 addi x14, x2, 24 x14=1c009b68 x2:1c009b50 +76434369ns 1405575 1c002b9a 00800533 add x10, x0, x8 x10=1c009be0 x8:1c009be0 +76434389ns 1405576 1c002b9c fdfff0ef jal x1, -34 x1=1c002b9e +76434430ns 1405578 1c002b7a 00852503 lw x10, 8(x10) x10=1c00b8c0 x10:1c009be0 PA:1c009be8 +76434450ns 1405579 1c002b7c 1240006f jal x0, 292 +76434490ns 1405581 1c002ca0 fa010113 addi x2, x2, -96 x2=1c009af0 x2:1c009b50 +76434511ns 1405582 1c002ca2 05612023 sw x22, 64(x2) x22:a5a5a5a5 x2:1c009af0 PA:1c009b30 +76434531ns 1405583 1c002ca4 00452b03 lw x22, 4(x10) x22=1c00b890 x10:1c00b8c0 PA:1c00b8c4 +76434551ns 1405584 1c002ca8 05212823 sw x18, 80(x2) x18:1c009188 x2:1c009af0 PA:1c009b40 +76434571ns 1405585 1c002caa 03712e23 sw x23, 60(x2) x23:a5a5a5a5 x2:1c009af0 PA:1c009b2c +76434591ns 1405586 1c002cac 04112e23 sw x1, 92(x2) x1:1c002b9e x2:1c009af0 PA:1c009b4c +76434612ns 1405587 1c002cae 04812c23 sw x8, 88(x2) x8:1c009be0 x2:1c009af0 PA:1c009b48 +76434632ns 1405588 1c002cb0 04912a23 sw x9, 84(x2) x9:1c009190 x2:1c009af0 PA:1c009b44 +76434652ns 1405589 1c002cb2 05312623 sw x19, 76(x2) x19:1c009000 x2:1c009af0 PA:1c009b3c +76434672ns 1405590 1c002cb4 05412423 sw x20, 72(x2) x20:1c00918c x2:1c009af0 PA:1c009b38 +76434692ns 1405591 1c002cb6 05512223 sw x21, 68(x2) x21:a5a5a5a5 x2:1c009af0 PA:1c009b34 +76434713ns 1405592 1c002cb8 000107b7 lui x15, 0x10000 x15=00010000 +76434733ns 1405593 1c002cba 014b4483 lbu x9, 20(x22) x9=00000000 x22:1c00b890 PA:1c00b8a4 +76434753ns 1405594 1c002cbe 00852b83 lw x23, 8(x10) x23=00000003 x10:1c00b8c0 PA:1c00b8c8 +76434773ns 1405595 1c002cc2 00c00933 add x18, x0, x12 x18=00000008 x12:00000008 +76434793ns 1405596 1c002cc4 00c7f463 bgeu x15, x12, 8 x15:00010000 x12:00000008 +76434854ns 1405599 1c002ccc 00a00433 add x8, x0, x10 x8=1c00b8c0 x10:1c00b8c0 +76434874ns 1405600 1c002cce 00b00a33 add x20, x0, x11 x20=1c009bd7 x11:1c009bd7 +76434894ns 1405601 1c002cd0 00d009b3 add x19, x0, x13 x19=00000000 x13:00000000 +76434914ns 1405602 1c002cd2 00e12623 sw x14, 12(x2) x14:1c009b68 x2:1c009af0 PA:1c009afc +76434935ns 1405603 1c002cd4 edfff0ef jal x1, -290 x1=1c002cd8 +76434995ns 1405606 1c002bb2 30047573 csrrci x10, 0x00000008, 0x300 x10=00000088 +76435076ns 1405610 1c002bb6 00008067 jalr x0, x1, 0 x1:1c002cd8 +76435116ns 1405612 1c002cd8 03944803 lbu x16, 57(x8) x16=00000000 x8:1c00b8c0 PA:1c00b8f9 +76435137ns 1405613 1c002cdc 00c12603 lw x12, 12(x2) x12=1c009b68 x2:1c009af0 PA:1c009afc +76435157ns 1405614 1c002cde 00a00ab3 add x21, x0, x10 x21=00000088 x10:00000088 +76435177ns 1405615 1c002ce0 00080e63 beq x16, x0, 28 x16:00000000 +76435238ns 1405618 1c002cfc 00000793 addi x15, x0, 0 x15=00000000 +76435258ns 1405619 1c002cfe 00800893 addi x17, x0, 8 x17=00000008 +76435278ns 1405620 1c002d00 00cb2703 lw x14, 12(x22) x14=00000000 x22:1c00b890 PA:1c00b89c +76435318ns 1405622 1c002d04 0a071663 bne x14, x0, 172 x14:00000000 +76435338ns 1405623 1c002d06 03844783 lbu x15, 56(x8) x15=00000000 x8:1c00b8c0 PA:1c00b8f8 +76435359ns 1405624 1c002d0a 10000737 lui x14, 0x10000000 x14=10000000 +76435379ns 1405625 1c002d0e 01742623 sw x23, 12(x8) x23:00000003 x8:1c00b8c0 PA:1c00b8cc +76435399ns 1405626 1c002d12 00e7e7b3 or x15, x15, x14 x15=10000000 x15:00000000 x14:10000000 +76435419ns 1405627 1c002d14 fff88713 addi x14, x17, -1 x14=00000007 x17:00000008 +76435439ns 1405628 1c002d18 031958b3 divu x17, x18, x17 x17=00000001 x18:00000008 x17:00000008 +76436065ns 1405659 1c002d1c 00f42823 sw x15, 16(x8) x15:10000000 x8:1c00b8c0 PA:1c00b8d0 +76436086ns 1405660 1c002d1e 00c9f793 andi x15, x19, 12 x15=00000000 x19:00000000 +76436106ns 1405661 1c002d22 ffc78793 addi x15, x15, -4 x15=fffffffc x15:00000000 +76436126ns 1405662 1c002d24 0017b793 sltiu x15, x15, 1 x15=00000000 x15:fffffffc +76436146ns 1405663 1c002d28 01071713 slli x14, x14, 0x10 x14=00070000 x14:00000007 +76436166ns 1405664 1c002d2a 01b79793 slli x15, x15, 0x1b x15=00000000 x15:00000000 +76436187ns 1405665 1c002d2c 00e7e7b3 or x15, x15, x14 x15=00070000 x15:00000000 x14:00070000 +76436207ns 1405666 1c002d2e 70000737 lui x14, 0x70000000 x14=70000000 +76436227ns 1405667 1c002d32 00e7e7b3 or x15, x15, x14 x15=70070000 x15:00070000 x14:70000000 +76436247ns 1405668 1c002d34 0039f993 andi x19, x19, 3 x19=00000000 x19:00000000 +76436267ns 1405669 1c002d38 fff88893 addi x17, x17, -1 x17=00000000 x17:00000001 +76436287ns 1405670 1c002d3a 0117e7b3 or x15, x15, x17 x15=70070000 x15:70070000 x17:00000000 +76436308ns 1405671 1c002d3e 00f42a23 sw x15, 20(x8) x15:70070000 x8:1c00b8c0 PA:1c00b8d4 +76436328ns 1405672 1c002d40 00100793 addi x15, x0, 1 x15=00000001 +76436348ns 1405673 1c002d42 06f98363 beq x19, x15, 102 x19:00000000 x15:00000001 +76436368ns 1405674 1c002d46 900007b7 lui x15, 0x90000000 x15=90000000 +76436388ns 1405675 1c002d4a 00178793 addi x15, x15, 1 x15=90000001 x15:90000000 +76436409ns 1405676 1c002d4c 00f42c23 sw x15, 24(x8) x15:90000001 x8:1c00b8c0 PA:1c00b8d8 +76436429ns 1405677 1c002d4e 1a102737 lui x14, 0x1a102000 x14=1a102000 +76436449ns 1405678 1c002d52 00148793 addi x15, x9, 1 x15=00000001 x9:00000000 +76436469ns 1405679 1c002d56 08070713 addi x14, x14, 128 x14=1a102080 x14:1a102000 +76436489ns 1405680 1c002d5a 00181813 slli x16, x16, 0x1 x16=00000000 x16:00000000 +76436510ns 1405681 1c002d5c 00779793 slli x15, x15, 0x7 x15=00000080 x15:00000001 +76436530ns 1405682 1c002d5e 00cb2623 sw x12, 12(x22) x12:1c009b68 x22:1c00b890 PA:1c00b89c +76436550ns 1405683 1c002d62 000b2423 sw x0, 8(x22) x22:1c00b890 PA:1c00b898 +76436570ns 1405684 1c002d66 01086813 ori x16, x16, 16 x16=00000010 x16:00000000 +76436590ns 1405685 1c002d6a 00e787b3 add x15, x15, x14 x15=1a102100 x15:00000080 x14:1a102080 +76436611ns 1405686 1c002d6c 0147a023 sw x20, 0(x15) x20:1c009bd7 x15:1a102100 PA:1a102100 +76436631ns 1405687 1c002d70 00790913 addi x18, x18, 7 x18=0000000f x18:00000008 +76436691ns 1405690 1c002d72 00395913 srli x18, x18, 0x3 x18=00000001 x18:0000000f +76436712ns 1405691 1c002d76 00078793 addi x15, x15, 0 x15=1a102100 x15:1a102100 +76436732ns 1405692 1c002d7a 0127a223 sw x18, 4(x15) x18:00000001 x15:1a102100 PA:1a102104 +76436752ns 1405693 1c002d7e 0107a423 sw x16, 8(x15) x16:00000010 x15:1a102100 PA:1a102108 +76436833ns 1405697 1c002d82 00c40413 addi x8, x8, 12 x8=1c00b8cc x8:1c00b8c0 +76436893ns 1405700 1c002d84 0287a023 sw x8, 32(x15) x8:1c00b8cc x15:1a102100 PA:1a102120 +76436913ns 1405701 1c002d86 01000713 addi x14, x0, 16 x14=00000010 +76436974ns 1405704 1c002d88 02e7a223 sw x14, 36(x15) x14:00000010 x15:1a102100 PA:1a102124 +76436994ns 1405705 1c002d8a 01400713 addi x14, x0, 20 x14=00000014 +76437055ns 1405708 1c002d8c 02e7a423 sw x14, 40(x15) x14:00000014 x15:1a102100 PA:1a102128 +76437075ns 1405709 1c002d8e 05812403 lw x8, 88(x2) x8=1c009be0 x2:1c009af0 PA:1c009b48 +76437136ns 1405712 1c002d90 05c12083 lw x1, 92(x2) x1=1c002b9e x2:1c009af0 PA:1c009b4c +76437156ns 1405713 1c002d92 05412483 lw x9, 84(x2) x9=1c009190 x2:1c009af0 PA:1c009b44 +76437176ns 1405714 1c002d94 05012903 lw x18, 80(x2) x18=1c009188 x2:1c009af0 PA:1c009b40 +76437216ns 1405716 1c002d96 04c12983 lw x19, 76(x2) x19=1c009000 x2:1c009af0 PA:1c009b3c +76437257ns 1405718 1c002d98 04812a03 lw x20, 72(x2) x20=1c00918c x2:1c009af0 PA:1c009b38 +76437277ns 1405719 1c002d9a 04012b03 lw x22, 64(x2) x22=a5a5a5a5 x2:1c009af0 PA:1c009b30 +76437297ns 1405720 1c002d9c 03c12b83 lw x23, 60(x2) x23=a5a5a5a5 x2:1c009af0 PA:1c009b2c +76437317ns 1405721 1c002d9e 01500533 add x10, x0, x21 x10=00000088 x21:00000088 +76437337ns 1405722 1c002da0 04412a83 lw x21, 68(x2) x21=a5a5a5a5 x2:1c009af0 PA:1c009b34 +76437378ns 1405724 1c002da2 06010113 addi x2, x2, 96 x2=1c009b50 x2:1c009af0 +76437398ns 1405725 1c002da4 e15ff06f jal x0, -492 +76437438ns 1405727 1c002bb8 30051073 csrrw x0, x10, 0x300 x10:00000088 +76437519ns 1405731 1c002bbc 00008067 jalr x0, x1, 0 x1:1c002b9e +76437560ns 1405733 1c002b9e 01810513 addi x10, x2, 24 x10=1c009b68 x2:1c009b50 +76437580ns 1405734 1c002ba0 117000ef jal x1, 2326 x1=1c002ba4 +76437620ns 1405736 1c0034b6 ff010113 addi x2, x2, -16 x2=1c009b40 x2:1c009b50 +76437640ns 1405737 1c0034b8 00812423 sw x8, 8(x2) x8:1c009be0 x2:1c009b40 PA:1c009b48 +76437661ns 1405738 1c0034ba 00112623 sw x1, 12(x2) x1:1c002ba4 x2:1c009b40 PA:1c009b4c +76437681ns 1405739 1c0034bc 00a00433 add x8, x0, x10 x8=1c009b68 x10:1c009b68 +76437701ns 1405740 1c0034be 04444783 lbu x15, 68(x8) x15=00000000 x8:1c009b68 PA:1c009bac +76437741ns 1405742 1c0034c2 01879793 slli x15, x15, 0x18 x15=00000000 x15:00000000 +76437762ns 1405743 1c0034c4 4187d793 srai x15, x15, 0x418 x15=00000000 x15:00000000 +76437782ns 1405744 1c0034c6 00078763 beq x15, x0, 14 x15:00000000 +76437842ns 1405747 1c0034d4 03442783 lw x15, 52(x8) x15=1c00c2e0 x8:1c009b68 PA:1c009b9c +76437883ns 1405749 1c0034d6 fe0784e3 beq x15, x0, -24 x15:1c00c2e0 +76437903ns 1405750 1c0034d8 03842783 lw x15, 56(x8) x15=1c00340c x8:1c009b68 PA:1c009ba0 +76437923ns 1405751 1c0034da 03442503 lw x10, 52(x8) x10=1c00c2e0 x8:1c009b68 PA:1c009b9c +76437963ns 1405753 1c0034dc 000780e7 jalr x1, x15, 0 x1=1c0034de x15:1c00340c +76438004ns 1405755 1c00340c fe010113 addi x2, x2, -32 x2=1c009b20 x2:1c009b40 +76438024ns 1405756 1c00340e 00112e23 sw x1, 28(x2) x1:1c0034de x2:1c009b20 PA:1c009b3c +76438044ns 1405757 1c003410 00812c23 sw x8, 24(x2) x8:1c009b68 x2:1c009b20 PA:1c009b38 +76438064ns 1405758 1c003412 30047473 csrrci x8, 0x00000008, 0x300 x8=00000088 +76438145ns 1405762 1c003416 342027f3 csrrs x15, x0, 0x342 x15=8000001a +76438165ns 1405763 1c00341a 0007dc63 bge x15, x0, 24 x15:8000001a +76438186ns 1405764 1c00341e 00c10613 addi x12, x2, 12 x12=1c009b2c x2:1c009b20 +76438206ns 1405765 1c003420 00000593 addi x11, x0, 0 x11=00000000 +76438226ns 1405766 1c003422 b8efe0ef jal x1, -7282 x1=1c003426 +76438266ns 1405768 1c0017b0 fe010113 addi x2, x2, -32 x2=1c009b00 x2:1c009b20 +76438287ns 1405769 1c0017b2 00112e23 sw x1, 28(x2) x1:1c003426 x2:1c009b00 PA:1c009b1c +76438307ns 1405770 1c0017b4 00812c23 sw x8, 24(x2) x8:00000088 x2:1c009b00 PA:1c009b18 +76438327ns 1405771 1c0017b6 00912a23 sw x9, 20(x2) x9:1c009190 x2:1c009b00 PA:1c009b14 +76438347ns 1405772 1c0017b8 01212823 sw x18, 16(x2) x18:1c009188 x2:1c009b00 PA:1c009b10 +76438367ns 1405773 1c0017ba 01312623 sw x19, 12(x2) x19:1c009000 x2:1c009b00 PA:1c009b0c +76438387ns 1405774 1c0017bc 01412423 sw x20, 8(x2) x20:1c00918c x2:1c009b00 PA:1c009b08 +76438408ns 1405775 1c0017be 02051163 bne x10, x0, 34 x10:1c00c2e0 +76438468ns 1405778 1c0017e0 00a00433 add x8, x0, x10 x8=1c00c2e0 x10:1c00c2e0 +76438488ns 1405779 1c0017e2 00c00933 add x18, x0, x12 x18=1c009b2c x12:1c009b2c +76438509ns 1405780 1c0017e4 00059e63 bne x11, x0, 28 x11:00000000 +76438529ns 1405781 1c0017e6 04052783 lw x15, 64(x10) x15=00000000 x10:1c00c2e0 PA:1c00c320 +76438569ns 1405783 1c0017e8 00078c63 beq x15, x0, 24 x15:00000000 +76438630ns 1405786 1c001800 03842983 lw x19, 56(x8) x19=00000000 x8:1c00c2e0 PA:1c00c318 +76438650ns 1405787 1c001804 00000513 addi x10, x0, 0 x10=00000000 +76438670ns 1405788 1c001806 02098463 beq x19, x0, 40 x19:00000000 +76438731ns 1405791 1c00182e 01c12083 lw x1, 28(x2) x1=1c003426 x2:1c009b00 PA:1c009b1c +76438751ns 1405792 1c001830 01812403 lw x8, 24(x2) x8=00000088 x2:1c009b00 PA:1c009b18 +76438771ns 1405793 1c001832 01412483 lw x9, 20(x2) x9=1c009190 x2:1c009b00 PA:1c009b14 +76438791ns 1405794 1c001834 01012903 lw x18, 16(x2) x18=1c009188 x2:1c009b00 PA:1c009b10 +76438811ns 1405795 1c001836 00c12983 lw x19, 12(x2) x19=1c009000 x2:1c009b00 PA:1c009b0c +76438832ns 1405796 1c001838 00812a03 lw x20, 8(x2) x20=1c00918c x2:1c009b00 PA:1c009b08 +76438852ns 1405797 1c00183a 02010113 addi x2, x2, 32 x2=1c009b20 x2:1c009b00 +76438872ns 1405798 1c00183c 00008067 jalr x0, x1, 0 x1:1c003426 +76438933ns 1405801 1c003426 30041073 csrrw x0, x8, 0x300 x8:00000088 +76439013ns 1405805 1c00342a 01c12083 lw x1, 28(x2) x1=1c0034de x2:1c009b20 PA:1c009b3c +76439034ns 1405806 1c00342c 01812403 lw x8, 24(x2) x8=1c009b68 x2:1c009b20 PA:1c009b38 +76439054ns 1405807 1c00342e 02010113 addi x2, x2, 32 x2=1c009b40 x2:1c009b20 +76439074ns 1405808 1c003430 00008067 jalr x0, x1, 0 x1:1c0034de +76439114ns 1405810 1c0034de fe1ff06f jal x0, -32 +76439175ns 1405813 1c0034be 04444783 lbu x15, 68(x8) x15=00000000 x8:1c009b68 PA:1c009bac +76439215ns 1405815 1c0034c2 01879793 slli x15, x15, 0x18 x15=00000000 x15:00000000 +76439236ns 1405816 1c0034c4 4187d793 srai x15, x15, 0x418 x15=00000000 x15:00000000 +76439256ns 1405817 1c0034c6 00078763 beq x15, x0, 14 x15:00000000 +76439316ns 1405820 1c0034d4 03442783 lw x15, 52(x8) x15=1c00c2e0 x8:1c009b68 PA:1c009b9c +76439417ns 1405825 1c000868 0980006f jal x0, 152 +76439458ns 1405827 1c000900 f8810113 addi x2, x2, -120 x2=1c009ac8 x2:1c009b40 +76439478ns 1405828 1c000904 00112223 sw x1, 4(x2) x1:1c0034de x2:1c009ac8 PA:1c009acc +76439498ns 1405829 1c000906 00512423 sw x5, 8(x2) x5:a5a5a5a5 x2:1c009ac8 PA:1c009ad0 +76439518ns 1405830 1c000908 00612623 sw x6, 12(x2) x6:00000000 x2:1c009ac8 PA:1c009ad4 +76439538ns 1405831 1c00090a 00712823 sw x7, 16(x2) x7:a5a5a5a5 x2:1c009ac8 PA:1c009ad8 +76439559ns 1405832 1c00090c 00812a23 sw x8, 20(x2) x8:1c009b68 x2:1c009ac8 PA:1c009adc +76439579ns 1405833 1c00090e 00912c23 sw x9, 24(x2) x9:1c009190 x2:1c009ac8 PA:1c009ae0 +76439599ns 1405834 1c000910 00a12e23 sw x10, 28(x2) x10:00000000 x2:1c009ac8 PA:1c009ae4 +76439619ns 1405835 1c000912 02b12023 sw x11, 32(x2) x11:00000000 x2:1c009ac8 PA:1c009ae8 +76439639ns 1405836 1c000914 02c12223 sw x12, 36(x2) x12:1c009b2c x2:1c009ac8 PA:1c009aec +76439660ns 1405837 1c000916 02d12423 sw x13, 40(x2) x13:00000000 x2:1c009ac8 PA:1c009af0 +76439680ns 1405838 1c000918 02e12623 sw x14, 44(x2) x14:00000014 x2:1c009ac8 PA:1c009af4 +76439700ns 1405839 1c00091a 02f12823 sw x15, 48(x2) x15:1c00c2e0 x2:1c009ac8 PA:1c009af8 +76439720ns 1405840 1c00091c 03012a23 sw x16, 52(x2) x16:00000010 x2:1c009ac8 PA:1c009afc +76439740ns 1405841 1c00091e 03112c23 sw x17, 56(x2) x17:00000000 x2:1c009ac8 PA:1c009b00 +76439761ns 1405842 1c000920 03212e23 sw x18, 60(x2) x18:1c009188 x2:1c009ac8 PA:1c009b04 +76439781ns 1405843 1c000922 05312023 sw x19, 64(x2) x19:1c009000 x2:1c009ac8 PA:1c009b08 +76439801ns 1405844 1c000924 05412223 sw x20, 68(x2) x20:1c00918c x2:1c009ac8 PA:1c009b0c +76439821ns 1405845 1c000926 05512423 sw x21, 72(x2) x21:a5a5a5a5 x2:1c009ac8 PA:1c009b10 +76439841ns 1405846 1c000928 05612623 sw x22, 76(x2) x22:a5a5a5a5 x2:1c009ac8 PA:1c009b14 +76439861ns 1405847 1c00092a 05712823 sw x23, 80(x2) x23:a5a5a5a5 x2:1c009ac8 PA:1c009b18 +76439882ns 1405848 1c00092c 05812a23 sw x24, 84(x2) x24:a5a5a5a5 x2:1c009ac8 PA:1c009b1c +76439902ns 1405849 1c00092e 05912c23 sw x25, 88(x2) x25:a5a5a5a5 x2:1c009ac8 PA:1c009b20 +76439922ns 1405850 1c000930 05a12e23 sw x26, 92(x2) x26:a5a5a5a5 x2:1c009ac8 PA:1c009b24 +76439942ns 1405851 1c000932 07b12023 sw x27, 96(x2) x27:a5a5a5a5 x2:1c009ac8 PA:1c009b28 +76439962ns 1405852 1c000934 07c12223 sw x28, 100(x2) x28:00000008 x2:1c009ac8 PA:1c009b2c +76439983ns 1405853 1c000936 07d12423 sw x29, 104(x2) x29:1c00b890 x2:1c009ac8 PA:1c009b30 +76440003ns 1405854 1c000938 07e12623 sw x30, 108(x2) x30:1c009c98 x2:1c009ac8 PA:1c009b34 +76440023ns 1405855 1c00093a 07f12823 sw x31, 112(x2) x31:a5a5a5a5 x2:1c009ac8 PA:1c009b38 +76440043ns 1405856 1c00093c 300022f3 csrrs x5, x0, 0x300 x5=00001880 +76440124ns 1405860 1c000940 06512a23 sw x5, 116(x2) x5:00001880 x2:1c009ac8 PA:1c009b3c +76440144ns 1405861 1c000942 fe810113 addi x2, x2, -24 x2=1c009ab0 x2:1c009ac8 +76440164ns 1405862 1c000944 7c0022f3 csrrs x5, x0, 0x7c0 x5=00000000 +76440185ns 1405863 1c000948 7c102373 csrrs x6, x0, 0x7c1 x6=00000000 +76440205ns 1405864 1c00094c 7c2023f3 csrrs x7, x0, 0x7c2 x7=00000000 +76440225ns 1405865 1c000950 7c402e73 csrrs x28, x0, 0x7c4 x28=00000000 +76440245ns 1405866 1c000954 7c502ef3 csrrs x29, x0, 0x7c5 x29=00000000 +76440265ns 1405867 1c000958 7c602f73 csrrs x30, x0, 0x7c6 x30=00000000 +76440286ns 1405868 1c00095c 00512223 sw x5, 4(x2) x5:00000000 x2:1c009ab0 PA:1c009ab4 +76440306ns 1405869 1c00095e 00612423 sw x6, 8(x2) x6:00000000 x2:1c009ab0 PA:1c009ab8 +76440326ns 1405870 1c000960 00712623 sw x7, 12(x2) x7:00000000 x2:1c009ab0 PA:1c009abc +76440346ns 1405871 1c000962 01c12823 sw x28, 16(x2) x28:00000000 x2:1c009ab0 PA:1c009ac0 +76440366ns 1405872 1c000964 01d12a23 sw x29, 20(x2) x29:00000000 x2:1c009ab0 PA:1c009ac4 +76440386ns 1405873 1c000966 01e12c23 sw x30, 24(x2) x30:00000000 x2:1c009ab0 PA:1c009ac8 +76440407ns 1405874 1c000968 d541a283 lw x5, -684(x3) x5=1c009db8 x3:1c0093dc PA:1c009130 +76440447ns 1405876 1c00096c 0022a023 sw x2, 0(x5) x2:1c009ab0 x5:1c009db8 PA:1c009db8 +76440467ns 1405877 1c000970 34202573 csrrs x10, x0, 0x342 x10=8000001a +76440487ns 1405878 1c000974 341025f3 csrrs x11, x0, 0x341 x11=1c0034d6 +76440508ns 1405879 1c000978 01f55613 srli x12, x10, 0x1f x12=00000001 x10:8000001a +76440528ns 1405880 1c00097c 00060963 beq x12, x0, 18 x12:00000001 +76440548ns 1405881 1c00097e 00b12023 sw x11, 0(x2) x11:1c0034d6 x2:1c009ab0 PA:1c009ab0 +76440568ns 1405882 1c000980 00008117 auipc x2, 0x8000 x2=1c008980 +76440588ns 1405883 1c000984 25412103 lw x2, 596(x2) x2=1c0199b0 x2:1c008980 PA:1c008bd4 +76440609ns 1405884 1c000988 17e020ef jal x1, 8574 x1=1c00098c +76440649ns 1405886 1c002b06 01f57513 andi x10, x10, 31 x10=0000001a x10:8000001a +76440669ns 1405887 1c002b08 00251793 slli x15, x10, 0x2 x15=00000068 x10:0000001a +76440689ns 1405888 1c002b0c 99c18513 addi x10, x3, -1636 x10=1c008d78 x3:1c0093dc +76440710ns 1405889 1c002b10 00f50533 add x10, x10, x15 x10=1c008de0 x10:1c008d78 x15:00000068 +76440730ns 1405890 1c002b12 00052783 lw x15, 0(x10) x15=1c000e42 x10:1c008de0 PA:1c008de0 +76440790ns 1405893 1c002b14 00078067 jalr x0, x15, 0 x15:1c000e42 +76440851ns 1405896 1c000e42 1a10a7b7 lui x15, 0x1a10a000 x15=1a10a000 +76440871ns 1405897 1c000e46 80078793 addi x15, x15, -2048 x15=1a109800 x15:1a10a000 +76440891ns 1405898 1c000e4a 0247a503 lw x10, 36(x15) x10=00000007 x15:1a109800 PA:1a109824 +76440911ns 1405899 1c000e4c a2818793 addi x15, x3, -1496 x15=1c008e04 x3:1c0093dc +76440972ns 1405902 1c000e50 0ff57513 andi x10, x10, 255 x10=00000007 x10:00000007 +76440992ns 1405903 1c000e54 00251713 slli x14, x10, 0x2 x14=0000001c x10:00000007 +76441012ns 1405904 1c000e58 00e787b3 add x15, x15, x14 x15=1c008e20 x15:1c008e04 x14:0000001c +76441033ns 1405905 1c000e5a 0007a703 lw x14, 0(x15) x14=1c003106 x15:1c008e20 PA:1c008e20 +76441073ns 1405907 1c000e5c 00070363 beq x14, x0, 6 x14:1c003106 +76441093ns 1405908 1c000e5e 0007a783 lw x15, 0(x15) x15=1c003106 x15:1c008e20 PA:1c008e20 +76441154ns 1405911 1c000e60 00078067 jalr x0, x15, 0 x15:1c003106 +76441194ns 1405913 1c003106 ff950513 addi x10, x10, -7 x10=00000000 x10:00000007 +76441214ns 1405914 1c003108 00251793 slli x15, x10, 0x2 x15=00000000 x10:00000000 +76441235ns 1405915 1c00310c da418513 addi x10, x3, -604 x10=1c009180 x3:1c0093dc +76441255ns 1405916 1c003110 ff010113 addi x2, x2, -16 x2=1c0199a0 x2:1c0199b0 +76441275ns 1405917 1c003112 00f50533 add x10, x10, x15 x10=1c009180 x10:1c009180 x15:00000000 +76441295ns 1405918 1c003114 00812423 sw x8, 8(x2) x8:1c009b68 x2:1c0199a0 PA:1c0199a8 +76441315ns 1405919 1c003116 00052403 lw x8, 0(x10) x8=1c00b890 x10:1c009180 PA:1c009180 +76441335ns 1405920 1c003118 00112623 sw x1, 12(x2) x1:1c00098c x2:1c0199a0 PA:1c0199ac +76441356ns 1405921 1c00311a 00842783 lw x15, 8(x8) x15=00000000 x8:1c00b890 PA:1c00b898 +76441396ns 1405923 1c00311c 02079263 bne x15, x0, 36 x15:00000000 +76441416ns 1405924 1c00311e 00c42503 lw x10, 12(x8) x10=1c009b68 x8:1c00b890 PA:1c00b89c +76441457ns 1405926 1c003120 00050863 beq x10, x0, 16 x10:1c009b68 +76441477ns 1405927 1c003122 01052703 lw x14, 16(x10) x14=00000001 x10:1c009b68 PA:1c009b78 +76441497ns 1405928 1c003124 00100793 addi x15, x0, 1 x15=00000001 +76441517ns 1405929 1c003126 00f71363 bne x14, x15, 6 x14:00000001 x15:00000001 +76441537ns 1405930 1c00312a 3b6000ef jal x1, 950 x1=1c00312c +76441578ns 1405932 1c0034e0 ff010113 addi x2, x2, -16 x2=1c019990 x2:1c0199a0 +76441598ns 1405933 1c0034e2 00812423 sw x8, 8(x2) x8:1c00b890 x2:1c019990 PA:1c019998 +76441618ns 1405934 1c0034e4 00a00433 add x8, x0, x10 x8=1c009b68 x10:1c009b68 +76441638ns 1405935 1c0034e6 03452503 lw x10, 52(x10) x10=1c00c2e0 x10:1c009b68 PA:1c009b9c +76441659ns 1405936 1c0034e8 00112623 sw x1, 12(x2) x1:1c00312c x2:1c019990 PA:1c01999c +76441679ns 1405937 1c0034ea 00050363 beq x10, x0, 6 x10:1c00c2e0 +76441699ns 1405938 1c0034ec 03c42783 lw x15, 60(x8) x15=1c0033da x8:1c009b68 PA:1c009ba4 +76441760ns 1405941 1c0034ee 000780e7 jalr x1, x15, 0 x1=1c0034f0 x15:1c0033da +76441800ns 1405943 1c0033da fe010113 addi x2, x2, -32 x2=1c019970 x2:1c019990 +76441820ns 1405944 1c0033dc 00112e23 sw x1, 28(x2) x1:1c0034f0 x2:1c019970 PA:1c01998c +76441840ns 1405945 1c0033de 00812c23 sw x8, 24(x2) x8:1c009b68 x2:1c019970 PA:1c019988 +76441860ns 1405946 1c0033e0 30047473 csrrci x8, 0x00000008, 0x300 x8=00001880 +76441941ns 1405950 1c0033e4 342027f3 csrrs x15, x0, 0x342 x15=8000001a +76441961ns 1405951 1c0033e8 00c10593 addi x11, x2, 12 x11=1c01997c x2:1c019970 +76441982ns 1405952 1c0033ea 0007de63 bge x15, x0, 28 x15:8000001a +76442002ns 1405953 1c0033ee 838fe0ef jal x1, -8136 x1=1c0033f2 +76442042ns 1405955 1c001426 ff010113 addi x2, x2, -16 x2=1c019960 x2:1c019970 +76442062ns 1405956 1c001428 00112623 sw x1, 12(x2) x1:1c0033f2 x2:1c019960 PA:1c01996c +76442083ns 1405957 1c00142a 00812423 sw x8, 8(x2) x8:00001880 x2:1c019960 PA:1c019968 +76442103ns 1405958 1c00142c 02051163 bne x10, x0, 34 x10:1c00c2e0 +76442163ns 1405961 1c00144e 04052703 lw x14, 64(x10) x14=00000000 x10:1c00c2e0 PA:1c00c320 +76442184ns 1405962 1c001450 00a007b3 add x15, x0, x10 x15=1c00c2e0 x10:1c00c2e0 +76442204ns 1405963 1c001452 00070c63 beq x14, x0, 24 x14:00000000 +76442264ns 1405966 1c00146a 00052703 lw x14, 0(x10) x14=1c00c2e0 x10:1c00c2e0 PA:1c00c2e0 +76442285ns 1405967 1c00146c 00b00433 add x8, x0, x11 x8=1c01997c x11:1c01997c +76442305ns 1405968 1c00146e 00071e63 bne x14, x0, 28 x14:1c00c2e0 +76442365ns 1405971 1c00148a 0387a683 lw x13, 56(x15) x13=00000000 x15:1c00c2e0 PA:1c00c318 +76442385ns 1405972 1c00148c 03c7a703 lw x14, 60(x15) x14=000000ff x15:1c00c2e0 PA:1c00c31c +76442406ns 1405973 1c00148e 00000513 addi x10, x0, 0 x10=00000000 +76442426ns 1405974 1c001490 00e6ff63 bgeu x13, x14, 30 x13:00000000 x14:000000ff +76442446ns 1405975 1c001494 0457c703 lbu x14, 69(x15) x14=000000ff x15:1c00c2e0 PA:1c00c325 +76442466ns 1405976 1c001498 00168693 addi x13, x13, 1 x13=00000001 x13:00000000 +76442486ns 1405977 1c00149a 02d7ac23 sw x13, 56(x15) x13:00000001 x15:1c00c2e0 PA:1c00c318 +76442507ns 1405978 1c00149c 01871613 slli x12, x14, 0x18 x12=ff000000 x14:000000ff +76442527ns 1405979 1c0014a0 41865613 srai x12, x12, 0x418 x12=ffffffff x12:ff000000 +76442547ns 1405980 1c0014a2 fff00693 addi x13, x0, -1 x13=ffffffff +76442567ns 1405981 1c0014a4 02d61263 bne x12, x13, 36 x12:ffffffff x13:ffffffff +76442587ns 1405982 1c0014a8 0247a703 lw x14, 36(x15) x14=00000000 x15:1c00c2e0 PA:1c00c304 +76442628ns 1405984 1c0014aa 00071663 bne x14, x0, 12 x14:00000000 +76442648ns 1405985 1c0014ac 00100513 addi x10, x0, 1 x10=00000001 +76442668ns 1405986 1c0014ae 00c12083 lw x1, 12(x2) x1=1c0033f2 x2:1c019960 PA:1c01996c +76442688ns 1405987 1c0014b0 00812403 lw x8, 8(x2) x8=00001880 x2:1c019960 PA:1c019968 +76442709ns 1405988 1c0014b2 01010113 addi x2, x2, 16 x2=1c019970 x2:1c019960 +76442729ns 1405989 1c0014b4 00008067 jalr x0, x1, 0 x1:1c0033f2 +76442769ns 1405991 1c0033f2 00c12783 lw x15, 12(x2) x15=00000001 x2:1c019970 PA:1c01997c +76442810ns 1405993 1c0033f4 00078363 beq x15, x0, 6 x15:00000001 +76442830ns 1405994 1c0033f6 f80fe0ef jal x1, -6272 x1=1c0033fa +76442890ns 1405997 1c001b76 d681a703 lw x14, -664(x3) x14=00000000 x3:1c0093dc PA:1c009144 +76442910ns 1405998 1c001b7a d8c18793 addi x15, x3, -628 x15=1c009168 x3:1c0093dc +76442931ns 1405999 1c001b7e 00070463 beq x14, x0, 8 x14:00000000 +76442991ns 1406002 1c001b86 ff010113 addi x2, x2, -16 x2=1c019960 x2:1c019970 +76443011ns 1406003 1c001b88 00812423 sw x8, 8(x2) x8:00001880 x2:1c019960 PA:1c019968 +76443032ns 1406004 1c001b8a 00112623 sw x1, 12(x2) x1:1c0033fa x2:1c019960 PA:1c01996c +76443052ns 1406005 1c001b8c 0007a023 sw x0, 0(x15) x15:1c009168 PA:1c009168 +76443072ns 1406006 1c001b90 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76443092ns 1406007 1c001b94 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76443112ns 1406008 1c001b96 a5a5a737 lui x14, 0xa5a5a000 x14=a5a5a000 +76443133ns 1406009 1c001b9a 5a570713 addi x14, x14, 1445 x14=a5a5a5a5 x14:a5a5a000 +76443153ns 1406010 1c001b9e 0307a783 lw x15, 48(x15) x15=1c009770 x15:1c009db8 PA:1c009de8 +76443173ns 1406011 1c001ba0 d5418413 addi x8, x3, -684 x8=1c009130 x3:1c0093dc +76443193ns 1406012 1c001ba4 0007a603 lw x12, 0(x15) x12=a5a5a5a5 x15:1c009770 PA:1c009770 +76443234ns 1406014 1c001ba6 00e61b63 bne x12, x14, 22 x12:a5a5a5a5 x14:a5a5a5a5 +76443254ns 1406015 1c001baa 0047a683 lw x13, 4(x15) x13=a5a5a5a5 x15:1c009770 PA:1c009774 +76443294ns 1406017 1c001bac 00c69863 bne x13, x12, 16 x13:a5a5a5a5 x12:a5a5a5a5 +76443314ns 1406018 1c001bb0 0087a703 lw x14, 8(x15) x14=a5a5a5a5 x15:1c009770 PA:1c009778 +76443355ns 1406020 1c001bb2 00d71563 bne x14, x13, 10 x14:a5a5a5a5 x13:a5a5a5a5 +76443375ns 1406021 1c001bb6 00c7a783 lw x15, 12(x15) x15=a5a5a5a5 x15:1c009770 PA:1c00977c +76443415ns 1406023 1c001bb8 00e78863 beq x15, x14, 16 x15:a5a5a5a5 x14:a5a5a5a5 +76443476ns 1406026 1c001bc8 d701a503 lw x10, -656(x3) x10=00000003 x3:1c0093dc PA:1c00914c +76443496ns 1406027 1c001bcc abeff0ef jal x1, -3394 x1=1c001bd0 +76443536ns 1406029 1c000e8a 000107b7 lui x15, 0x10000 x15=00010000 +76443557ns 1406030 1c000e8c 02f57663 bgeu x10, x15, 44 x10:00000003 x15:00010000 +76443577ns 1406031 1c000e90 0ff00793 addi x15, x0, 255 x15=000000ff +76443597ns 1406032 1c000e94 00a7b7b3 sltu x15, x15, x10 x15=00000000 x15:000000ff x10:00000003 +76443617ns 1406033 1c000e98 00379793 slli x15, x15, 0x3 x15=00000000 x15:00000000 +76443637ns 1406034 1c000e9a 1c009737 lui x14, 0x1c009000 x14=1c009000 +76443658ns 1406035 1c000e9e 02000693 addi x13, x0, 32 x13=00000020 +76443678ns 1406036 1c000ea2 40f686b3 sub x13, x13, x15 x13=00000020 x13:00000020 x15:00000000 +76443698ns 1406037 1c000ea4 00f55533 srl x10, x10, x15 x10=00000003 x10:00000003 x15:00000000 +76443718ns 1406038 1c000ea8 ad470793 addi x15, x14, -1324 x15=1c008ad4 x14:1c009000 +76443738ns 1406039 1c000eac 00f50533 add x10, x10, x15 x10=1c008ad7 x10:00000003 x15:1c008ad4 +76443759ns 1406040 1c000eae 00054503 lbu x10, 0(x10) x10=00000002 x10:1c008ad7 PA:1c008ad7 +76443799ns 1406042 1c000eb2 40a68533 sub x10, x13, x10 x10=0000001e x13:00000020 x10:00000002 +76443819ns 1406043 1c000eb6 00008067 jalr x0, x1, 0 x1:1c001bd0 +76443859ns 1406045 1c001bd0 01f00713 addi x14, x0, 31 x14=0000001f +76443880ns 1406046 1c001bd2 40a70533 sub x10, x14, x10 x10=00000001 x14:0000001f x10:0000001e +76443900ns 1406047 1c001bd6 01400793 addi x15, x0, 20 x15=00000014 +76443920ns 1406048 1c001bd8 02f507b3 mul x15, x10, x15 x15=00000014 x10:00000001 x15:00000014 +76443940ns 1406049 1c001bdc 1c009737 lui x14, 0x1c009000 x14=1c009000 +76443960ns 1406050 1c001be0 c8870693 addi x13, x14, -888 x13=1c008c88 x14:1c009000 +76443981ns 1406051 1c001be4 c8870713 addi x14, x14, -888 x14=1c008c88 x14:1c009000 +76444001ns 1406052 1c001be8 00f686b3 add x13, x13, x15 x13=1c008c9c x13:1c008c88 x15:00000014 +76444021ns 1406053 1c001bea 0006a603 lw x12, 0(x13) x12=00000001 x13:1c008c9c PA:1c008c9c +76444061ns 1406055 1c001bec 02061263 bne x12, x0, 36 x12:00000001 +76444122ns 1406058 1c001c10 0046a603 lw x12, 4(x13) x12=1c009dbc x13:1c008c9c PA:1c008ca0 +76444142ns 1406059 1c001c12 00878793 addi x15, x15, 8 x15=0000001c x15:00000014 +76444162ns 1406060 1c001c14 00e787b3 add x15, x15, x14 x15=1c008ca4 x15:0000001c x14:1c008c88 +76444183ns 1406061 1c001c16 00462603 lw x12, 4(x12) x12=1c008ca4 x12:1c009dbc PA:1c009dc0 +76444223ns 1406063 1c001c18 00c6a223 sw x12, 4(x13) x12:1c008ca4 x13:1c008c9c PA:1c008ca0 +76444243ns 1406064 1c001c1a 00f61463 bne x12, x15, 8 x12:1c008ca4 x15:1c008ca4 +76444263ns 1406065 1c001c1e 00462783 lw x15, 4(x12) x15=1c009dbc x12:1c008ca4 PA:1c008ca8 +76444304ns 1406067 1c001c20 00f6a223 sw x15, 4(x13) x15:1c009dbc x13:1c008c9c PA:1c008ca0 +76444324ns 1406068 1c001c22 01400793 addi x15, x0, 20 x15=00000014 +76444344ns 1406069 1c001c24 02f50533 mul x10, x10, x15 x10=00000014 x10:00000001 x15:00000014 +76444364ns 1406070 1c001c28 00c12083 lw x1, 12(x2) x1=1c0033fa x2:1c019960 PA:1c01996c +76444384ns 1406071 1c001c2a 00a70733 add x14, x14, x10 x14=1c008c9c x14:1c008c88 x10:00000014 +76444405ns 1406072 1c001c2c 00472783 lw x15, 4(x14) x15=1c009dbc x14:1c008c9c PA:1c008ca0 +76444425ns 1406073 1c001c2e 1c009737 lui x14, 0x1c009000 x14=1c009000 +76444445ns 1406074 1c001c32 00c7a783 lw x15, 12(x15) x15=1c009db8 x15:1c009dbc PA:1c009dc8 +76444485ns 1406076 1c001c34 00f42023 sw x15, 0(x8) x15:1c009db8 x8:1c009130 PA:1c009130 +76444506ns 1406077 1c001c36 00042783 lw x15, 0(x8) x15=1c009db8 x8:1c009130 PA:1c009130 +76444526ns 1406078 1c001c38 00812403 lw x8, 8(x2) x8=00001880 x2:1c019960 PA:1c019968 +76444546ns 1406079 1c001c3a 05878793 addi x15, x15, 88 x15=1c009e10 x15:1c009db8 +76444566ns 1406080 1c001c3e c4f72223 sw x15, -956(x14) x15:1c009e10 x14:1c009000 PA:1c008c44 +76444586ns 1406081 1c001c42 01010113 addi x2, x2, 16 x2=1c019970 x2:1c019960 +76444607ns 1406082 1c001c44 00008067 jalr x0, x1, 0 x1:1c0033fa +76444667ns 1406085 1c0033fa 30041073 csrrw x0, x8, 0x300 x8:00001880 +76444748ns 1406089 1c0033fe 01c12083 lw x1, 28(x2) x1=1c0034f0 x2:1c019970 PA:1c01998c +76444768ns 1406090 1c003400 01812403 lw x8, 24(x2) x8=1c009b68 x2:1c019970 PA:1c019988 +76444788ns 1406091 1c003402 02010113 addi x2, x2, 32 x2=1c019990 x2:1c019970 +76444809ns 1406092 1c003404 00008067 jalr x0, x1, 0 x1:1c0034f0 +76444849ns 1406094 1c0034f0 00100793 addi x15, x0, 1 x15=00000001 +76444869ns 1406095 1c0034f2 04f40223 sb x15, 68(x8) x15:00000001 x8:1c009b68 PA:1c009bac +76444889ns 1406096 1c0034f6 00c12083 lw x1, 12(x2) x1=1c00312c x2:1c019990 PA:1c01999c +76444909ns 1406097 1c0034f8 00812403 lw x8, 8(x2) x8=1c00b890 x2:1c019990 PA:1c019998 +76444930ns 1406098 1c0034fa 01010113 addi x2, x2, 16 x2=1c0199a0 x2:1c019990 +76444950ns 1406099 1c0034fc 00008067 jalr x0, x1, 0 x1:1c00312c +76444990ns 1406101 1c00312c 00042623 sw x0, 12(x8) x8:1c00b890 PA:1c00b89c +76445010ns 1406102 1c003130 00800533 add x10, x0, x8 x10=1c00b890 x8:1c00b890 +76445031ns 1406103 1c003132 ac3ff0ef jal x1, -1342 x1=1c003136 +76445071ns 1406105 1c002bf4 300027f3 csrrs x15, x0, 0x300 x15=00001880 +76445152ns 1406109 1c002bf8 300476f3 csrrci x13, 0x00000008, 0x300 x13=00001880 +76445233ns 1406113 1c002bfc 00052783 lw x15, 0(x10) x15=1c00b8b0 x10:1c00b890 PA:1c00b890 +76445273ns 1406115 1c002bfe 0007a503 lw x10, 0(x15) x10=00000000 x15:1c00b8b0 PA:1c00b8b0 +76445313ns 1406117 1c002c00 00050663 beq x10, x0, 12 x10:00000000 +76445374ns 1406120 1c002c0c 30069073 csrrw x0, x13, 0x300 x13:00001880 +76445455ns 1406124 1c002c10 00008067 jalr x0, x1, 0 x1:1c003136 +76445495ns 1406126 1c003136 00050563 beq x10, x0, 10 x10:00000000 +76445556ns 1406129 1c003140 00c12083 lw x1, 12(x2) x1=1c00098c x2:1c0199a0 PA:1c0199ac +76445576ns 1406130 1c003142 00812403 lw x8, 8(x2) x8=1c009b68 x2:1c0199a0 PA:1c0199a8 +76445596ns 1406131 1c003144 01010113 addi x2, x2, 16 x2=1c0199b0 x2:1c0199a0 +76445616ns 1406132 1c003146 00008067 jalr x0, x1, 0 x1:1c00098c +76445657ns 1406134 1c00098c 0320006f jal x0, 50 +76445717ns 1406137 1c0009be d541a303 lw x6, -684(x3) x6=1c009db8 x3:1c0093dc PA:1c009130 +76445758ns 1406139 1c0009c2 00032103 lw x2, 0(x6) x2=1c009ab0 x6:1c009db8 PA:1c009db8 +76445798ns 1406141 1c0009c6 00012283 lw x5, 0(x2) x5=1c0034d6 x2:1c009ab0 PA:1c009ab0 +76445838ns 1406143 1c0009c8 34129073 csrrw x0, x5, 0x341 x5:1c0034d6 +76445859ns 1406144 1c0009cc 00412283 lw x5, 4(x2) x5=00000000 x2:1c009ab0 PA:1c009ab4 +76445879ns 1406145 1c0009ce 00812303 lw x6, 8(x2) x6=00000000 x2:1c009ab0 PA:1c009ab8 +76445899ns 1406146 1c0009d0 00c12383 lw x7, 12(x2) x7=00000000 x2:1c009ab0 PA:1c009abc +76445919ns 1406147 1c0009d2 01012e03 lw x28, 16(x2) x28=00000000 x2:1c009ab0 PA:1c009ac0 +76445939ns 1406148 1c0009d4 01412e83 lw x29, 20(x2) x29=00000000 x2:1c009ab0 PA:1c009ac4 +76445959ns 1406149 1c0009d6 01812f03 lw x30, 24(x2) x30=00000000 x2:1c009ab0 PA:1c009ac8 +76445980ns 1406150 1c0009d8 7c029073 csrrw x0, x5, 0x7c0 x5:00000000 +76446000ns 1406151 1c0009dc 7c131073 csrrw x0, x6, 0x7c1 x6:00000000 +76446020ns 1406152 1c0009e0 7c239073 csrrw x0, x7, 0x7c2 x7:00000000 +76446040ns 1406153 1c0009e4 7c4e1073 csrrw x0, x28, 0x7c4 x28:00000000 +76446060ns 1406154 1c0009e8 7c5e9073 csrrw x0, x29, 0x7c5 x29:00000000 +76446081ns 1406155 1c0009ec 7c6f1073 csrrw x0, x30, 0x7c6 x30:00000000 +76446101ns 1406156 1c0009f0 01810113 addi x2, x2, 24 x2=1c009ac8 x2:1c009ab0 +76446121ns 1406157 1c0009f2 07412283 lw x5, 116(x2) x5=00001880 x2:1c009ac8 PA:1c009b3c +76446161ns 1406159 1c0009f4 30029073 csrrw x0, x5, 0x300 x5:00001880 +76446242ns 1406163 1c0009f8 00412083 lw x1, 4(x2) x1=1c0034de x2:1c009ac8 PA:1c009acc +76446262ns 1406164 1c0009fa 00812283 lw x5, 8(x2) x5=a5a5a5a5 x2:1c009ac8 PA:1c009ad0 +76446283ns 1406165 1c0009fc 00c12303 lw x6, 12(x2) x6=00000000 x2:1c009ac8 PA:1c009ad4 +76446303ns 1406166 1c0009fe 01012383 lw x7, 16(x2) x7=a5a5a5a5 x2:1c009ac8 PA:1c009ad8 +76446323ns 1406167 1c000a00 01412403 lw x8, 20(x2) x8=1c009b68 x2:1c009ac8 PA:1c009adc +76446343ns 1406168 1c000a02 01812483 lw x9, 24(x2) x9=1c009190 x2:1c009ac8 PA:1c009ae0 +76446363ns 1406169 1c000a04 01c12503 lw x10, 28(x2) x10=00000000 x2:1c009ac8 PA:1c009ae4 +76446383ns 1406170 1c000a06 02012583 lw x11, 32(x2) x11=00000000 x2:1c009ac8 PA:1c009ae8 +76446404ns 1406171 1c000a08 02412603 lw x12, 36(x2) x12=1c009b2c x2:1c009ac8 PA:1c009aec +76446424ns 1406172 1c000a0a 02812683 lw x13, 40(x2) x13=00000000 x2:1c009ac8 PA:1c009af0 +76446444ns 1406173 1c000a0c 02c12703 lw x14, 44(x2) x14=00000014 x2:1c009ac8 PA:1c009af4 +76446464ns 1406174 1c000a0e 03012783 lw x15, 48(x2) x15=1c00c2e0 x2:1c009ac8 PA:1c009af8 +76446484ns 1406175 1c000a10 03412803 lw x16, 52(x2) x16=00000010 x2:1c009ac8 PA:1c009afc +76446505ns 1406176 1c000a12 03812883 lw x17, 56(x2) x17=00000000 x2:1c009ac8 PA:1c009b00 +76446525ns 1406177 1c000a14 03c12903 lw x18, 60(x2) x18=1c009188 x2:1c009ac8 PA:1c009b04 +76446545ns 1406178 1c000a16 04012983 lw x19, 64(x2) x19=1c009000 x2:1c009ac8 PA:1c009b08 +76446565ns 1406179 1c000a18 04412a03 lw x20, 68(x2) x20=1c00918c x2:1c009ac8 PA:1c009b0c +76446585ns 1406180 1c000a1a 04812a83 lw x21, 72(x2) x21=a5a5a5a5 x2:1c009ac8 PA:1c009b10 +76446606ns 1406181 1c000a1c 04c12b03 lw x22, 76(x2) x22=a5a5a5a5 x2:1c009ac8 PA:1c009b14 +76446626ns 1406182 1c000a1e 05012b83 lw x23, 80(x2) x23=a5a5a5a5 x2:1c009ac8 PA:1c009b18 +76446646ns 1406183 1c000a20 05412c03 lw x24, 84(x2) x24=a5a5a5a5 x2:1c009ac8 PA:1c009b1c +76446666ns 1406184 1c000a22 05812c83 lw x25, 88(x2) x25=a5a5a5a5 x2:1c009ac8 PA:1c009b20 +76446686ns 1406185 1c000a24 05c12d03 lw x26, 92(x2) x26=a5a5a5a5 x2:1c009ac8 PA:1c009b24 +76446707ns 1406186 1c000a26 06012d83 lw x27, 96(x2) x27=a5a5a5a5 x2:1c009ac8 PA:1c009b28 +76446727ns 1406187 1c000a28 06412e03 lw x28, 100(x2) x28=00000008 x2:1c009ac8 PA:1c009b2c +76446747ns 1406188 1c000a2a 06812e83 lw x29, 104(x2) x29=1c00b890 x2:1c009ac8 PA:1c009b30 +76446767ns 1406189 1c000a2c 06c12f03 lw x30, 108(x2) x30=1c009c98 x2:1c009ac8 PA:1c009b34 +76446787ns 1406190 1c000a2e 07012f83 lw x31, 112(x2) x31=a5a5a5a5 x2:1c009ac8 PA:1c009b38 +76446808ns 1406191 1c000a30 07810113 addi x2, x2, 120 x2=1c009b40 x2:1c009ac8 +76446828ns 1406192 1c000a34 30200073 mret +76446929ns 1406197 1c0034d6 fe0784e3 beq x15, x0, -24 x15:1c00c2e0 +76446949ns 1406198 1c0034d8 03842783 lw x15, 56(x8) x15=1c00340c x8:1c009b68 PA:1c009ba0 +76446969ns 1406199 1c0034da 03442503 lw x10, 52(x8) x10=1c00c2e0 x8:1c009b68 PA:1c009b9c +76447009ns 1406201 1c0034dc 000780e7 jalr x1, x15, 0 x1=1c0034de x15:1c00340c +76447050ns 1406203 1c00340c fe010113 addi x2, x2, -32 x2=1c009b20 x2:1c009b40 +76447070ns 1406204 1c00340e 00112e23 sw x1, 28(x2) x1:1c0034de x2:1c009b20 PA:1c009b3c +76447090ns 1406205 1c003410 00812c23 sw x8, 24(x2) x8:1c009b68 x2:1c009b20 PA:1c009b38 +76447110ns 1406206 1c003412 30047473 csrrci x8, 0x00000008, 0x300 x8=00000088 +76447191ns 1406210 1c003416 342027f3 csrrs x15, x0, 0x342 x15=8000001a +76447211ns 1406211 1c00341a 0007dc63 bge x15, x0, 24 x15:8000001a +76447232ns 1406212 1c00341e 00c10613 addi x12, x2, 12 x12=1c009b2c x2:1c009b20 +76447252ns 1406213 1c003420 00000593 addi x11, x0, 0 x11=00000000 +76447272ns 1406214 1c003422 b8efe0ef jal x1, -7282 x1=1c003426 +76447312ns 1406216 1c0017b0 fe010113 addi x2, x2, -32 x2=1c009b00 x2:1c009b20 +76447333ns 1406217 1c0017b2 00112e23 sw x1, 28(x2) x1:1c003426 x2:1c009b00 PA:1c009b1c +76447353ns 1406218 1c0017b4 00812c23 sw x8, 24(x2) x8:00000088 x2:1c009b00 PA:1c009b18 +76447373ns 1406219 1c0017b6 00912a23 sw x9, 20(x2) x9:1c009190 x2:1c009b00 PA:1c009b14 +76447393ns 1406220 1c0017b8 01212823 sw x18, 16(x2) x18:1c009188 x2:1c009b00 PA:1c009b10 +76447413ns 1406221 1c0017ba 01312623 sw x19, 12(x2) x19:1c009000 x2:1c009b00 PA:1c009b0c +76447433ns 1406222 1c0017bc 01412423 sw x20, 8(x2) x20:1c00918c x2:1c009b00 PA:1c009b08 +76447454ns 1406223 1c0017be 02051163 bne x10, x0, 34 x10:1c00c2e0 +76447514ns 1406226 1c0017e0 00a00433 add x8, x0, x10 x8=1c00c2e0 x10:1c00c2e0 +76447534ns 1406227 1c0017e2 00c00933 add x18, x0, x12 x18=1c009b2c x12:1c009b2c +76447555ns 1406228 1c0017e4 00059e63 bne x11, x0, 28 x11:00000000 +76447575ns 1406229 1c0017e6 04052783 lw x15, 64(x10) x15=00000000 x10:1c00c2e0 PA:1c00c320 +76447615ns 1406231 1c0017e8 00078c63 beq x15, x0, 24 x15:00000000 +76447676ns 1406234 1c001800 03842983 lw x19, 56(x8) x19=00000001 x8:1c00c2e0 PA:1c00c318 +76447696ns 1406235 1c001804 00000513 addi x10, x0, 0 x10=00000000 +76447716ns 1406236 1c001806 02098463 beq x19, x0, 40 x19:00000001 +76447736ns 1406237 1c00180a 04444483 lbu x9, 68(x8) x9=000000ff x8:1c00c2e0 PA:1c00c324 +76447757ns 1406238 1c00180e 00800533 add x10, x0, x8 x10=1c00c2e0 x8:1c00c2e0 +76447777ns 1406239 1c001810 fdaff0ef jal x1, -2086 x1=1c001814 +76447817ns 1406241 1c000fea 00a007b3 add x15, x0, x10 x15=1c00c2e0 x10:1c00c2e0 +76447837ns 1406242 1c000fec 0407a603 lw x12, 64(x15) x12=00000000 x15:1c00c2e0 PA:1c00c320 +76447858ns 1406243 1c000fee 00b00533 add x10, x0, x11 x10=00000000 x11:00000000 +76447878ns 1406244 1c000ff0 00060b63 beq x12, x0, 22 x12:00000000 +76447938ns 1406247 1c001006 00008067 jalr x0, x1, 0 x1:1c001814 +76447979ns 1406249 1c001814 01849a13 slli x20, x9, 0x18 x20=ff000000 x9:000000ff +76447999ns 1406250 1c001818 fff98993 addi x19, x19, -1 x19=00000000 x19:00000001 +76448019ns 1406251 1c00181a 418a5a13 srai x20, x20, 0x418 x20=ffffffff x20:ff000000 +76448039ns 1406252 1c00181e 03342c23 sw x19, 56(x8) x19:00000000 x8:1c00c2e0 PA:1c00c318 +76448059ns 1406253 1c001822 fff00793 addi x15, x0, -1 x15=ffffffff +76448080ns 1406254 1c001824 02fa1763 bne x20, x15, 46 x20:ffffffff x15:ffffffff +76448100ns 1406255 1c001828 01042783 lw x15, 16(x8) x15=00000000 x8:1c00c2e0 PA:1c00c2f0 +76448140ns 1406257 1c00182a 00079a63 bne x15, x0, 20 x15:00000000 +76448160ns 1406258 1c00182c 00100513 addi x10, x0, 1 x10=00000001 +76448181ns 1406259 1c00182e 01c12083 lw x1, 28(x2) x1=1c003426 x2:1c009b00 PA:1c009b1c +76448201ns 1406260 1c001830 01812403 lw x8, 24(x2) x8=00000088 x2:1c009b00 PA:1c009b18 +76448221ns 1406261 1c001832 01412483 lw x9, 20(x2) x9=1c009190 x2:1c009b00 PA:1c009b14 +76448241ns 1406262 1c001834 01012903 lw x18, 16(x2) x18=1c009188 x2:1c009b00 PA:1c009b10 +76448261ns 1406263 1c001836 00c12983 lw x19, 12(x2) x19=1c009000 x2:1c009b00 PA:1c009b0c +76448282ns 1406264 1c001838 00812a03 lw x20, 8(x2) x20=1c00918c x2:1c009b00 PA:1c009b08 +76448302ns 1406265 1c00183a 02010113 addi x2, x2, 32 x2=1c009b20 x2:1c009b00 +76448322ns 1406266 1c00183c 00008067 jalr x0, x1, 0 x1:1c003426 +76448383ns 1406269 1c003426 30041073 csrrw x0, x8, 0x300 x8:00000088 +76448463ns 1406273 1c00342a 01c12083 lw x1, 28(x2) x1=1c0034de x2:1c009b20 PA:1c009b3c +76448483ns 1406274 1c00342c 01812403 lw x8, 24(x2) x8=1c009b68 x2:1c009b20 PA:1c009b38 +76448504ns 1406275 1c00342e 02010113 addi x2, x2, 32 x2=1c009b40 x2:1c009b20 +76448524ns 1406276 1c003430 00008067 jalr x0, x1, 0 x1:1c0034de +76448564ns 1406278 1c0034de fe1ff06f jal x0, -32 +76448625ns 1406281 1c0034be 04444783 lbu x15, 68(x8) x15=00000001 x8:1c009b68 PA:1c009bac +76448665ns 1406283 1c0034c2 01879793 slli x15, x15, 0x18 x15=01000000 x15:00000001 +76448685ns 1406284 1c0034c4 4187d793 srai x15, x15, 0x418 x15=00000001 x15:01000000 +76448706ns 1406285 1c0034c6 00078763 beq x15, x0, 14 x15:00000001 +76448726ns 1406286 1c0034c8 00800533 add x10, x0, x8 x10=1c009b68 x8:1c009b68 +76448746ns 1406287 1c0034ca 00812403 lw x8, 8(x2) x8=1c009be0 x2:1c009b40 PA:1c009b48 +76448766ns 1406288 1c0034cc 00c12083 lw x1, 12(x2) x1=1c002ba4 x2:1c009b40 PA:1c009b4c +76448786ns 1406289 1c0034ce 01010113 addi x2, x2, 16 x2=1c009b50 x2:1c009b40 +76448807ns 1406290 1c0034d0 fb3ff06f jal x0, -78 +76448867ns 1406293 1c003482 04750783 lb x15, 71(x10) x15=00000001 x10:1c009b68 PA:1c009baf +76448907ns 1406295 1c003486 02078763 beq x15, x0, 46 x15:00000001 +76448928ns 1406296 1c003488 ff010113 addi x2, x2, -16 x2=1c009b40 x2:1c009b50 +76448948ns 1406297 1c00348a 00812423 sw x8, 8(x2) x8:1c009be0 x2:1c009b40 PA:1c009b48 +76448968ns 1406298 1c00348c 00112623 sw x1, 12(x2) x1:1c002ba4 x2:1c009b40 PA:1c009b4c +76448988ns 1406299 1c00348e 00a00433 add x8, x0, x10 x8=1c009b68 x10:1c009b68 +76449008ns 1406300 1c003490 040503a3 sb x0, 71(x10) x10:1c009b68 PA:1c009baf +76449029ns 1406301 1c003494 03452783 lw x15, 52(x10) x15=1c00c2e0 x10:1c009b68 PA:1c009b9c +76449069ns 1406303 1c003496 00078b63 beq x15, x0, 22 x15:1c00c2e0 +76449089ns 1406304 1c003498 03452503 lw x10, 52(x10) x10=1c00c2e0 x10:1c009b68 PA:1c009b9c +76449130ns 1406306 1c00349a 00050763 beq x10, x0, 14 x10:1c00c2e0 +76449150ns 1406307 1c00349c c1cfe0ef jal x1, -7140 x1=1c0034a0 +76449190ns 1406309 1c0018b8 ff010113 addi x2, x2, -16 x2=1c009b30 x2:1c009b40 +76449210ns 1406310 1c0018ba 00112623 sw x1, 12(x2) x1:1c0034a0 x2:1c009b30 PA:1c009b3c +76449231ns 1406311 1c0018bc 00812423 sw x8, 8(x2) x8:1c009b68 x2:1c009b30 PA:1c009b38 +76449251ns 1406312 1c0018be 02051163 bne x10, x0, 34 x10:1c00c2e0 +76449311ns 1406315 1c0018e0 00a00433 add x8, x0, x10 x8=1c00c2e0 x10:1c00c2e0 +76449332ns 1406316 1c0018e2 fa9ff0ef jal x1, -88 x1=1c0018e4 +76449392ns 1406319 1c00188a 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76449412ns 1406320 1c00188e c4878693 addi x13, x15, -952 x13=1c008c48 x15:1c009000 +76449432ns 1406321 1c001892 00000713 addi x14, x0, 0 x14=00000000 +76449453ns 1406322 1c001894 c4878793 addi x15, x15, -952 x15=1c008c48 x15:1c009000 +76449473ns 1406323 1c001898 00800613 addi x12, x0, 8 x12=00000008 +76449493ns 1406324 1c00189a 0046a583 lw x11, 4(x13) x11=1c00ad20 x13:1c008c48 PA:1c008c4c +76449533ns 1406326 1c00189c 00a59963 bne x11, x10, 18 x11:1c00ad20 x10:1c00c2e0 +76449594ns 1406329 1c0018ae 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76449614ns 1406330 1c0018b0 00868693 addi x13, x13, 8 x13=1c008c50 x13:1c008c48 +76449634ns 1406331 1c0018b2 fec714e3 bne x14, x12, -24 x14:00000001 x12:00000008 +76449695ns 1406334 1c00189a 0046a583 lw x11, 4(x13) x11=00000000 x13:1c008c50 PA:1c008c54 +76449735ns 1406336 1c00189c 00a59963 bne x11, x10, 18 x11:00000000 x10:1c00c2e0 +76449796ns 1406339 1c0018ae 00170713 addi x14, x14, 1 x14=00000002 x14:00000001 +76449816ns 1406340 1c0018b0 00868693 addi x13, x13, 8 x13=1c008c58 x13:1c008c50 +76449836ns 1406341 1c0018b2 fec714e3 bne x14, x12, -24 x14:00000002 x12:00000008 +76449897ns 1406344 1c00189a 0046a583 lw x11, 4(x13) x11=00000000 x13:1c008c58 PA:1c008c5c +76449937ns 1406346 1c00189c 00a59963 bne x11, x10, 18 x11:00000000 x10:1c00c2e0 +76449998ns 1406349 1c0018ae 00170713 addi x14, x14, 1 x14=00000003 x14:00000002 +76450018ns 1406350 1c0018b0 00868693 addi x13, x13, 8 x13=1c008c60 x13:1c008c58 +76450038ns 1406351 1c0018b2 fec714e3 bne x14, x12, -24 x14:00000003 x12:00000008 +76450099ns 1406354 1c00189a 0046a583 lw x11, 4(x13) x11=00000000 x13:1c008c60 PA:1c008c64 +76450139ns 1406356 1c00189c 00a59963 bne x11, x10, 18 x11:00000000 x10:1c00c2e0 +76450200ns 1406359 1c0018ae 00170713 addi x14, x14, 1 x14=00000004 x14:00000003 +76450220ns 1406360 1c0018b0 00868693 addi x13, x13, 8 x13=1c008c68 x13:1c008c60 +76450240ns 1406361 1c0018b2 fec714e3 bne x14, x12, -24 x14:00000004 x12:00000008 +76450301ns 1406364 1c00189a 0046a583 lw x11, 4(x13) x11=00000000 x13:1c008c68 PA:1c008c6c +76450341ns 1406366 1c00189c 00a59963 bne x11, x10, 18 x11:00000000 x10:1c00c2e0 +76450402ns 1406369 1c0018ae 00170713 addi x14, x14, 1 x14=00000005 x14:00000004 +76450422ns 1406370 1c0018b0 00868693 addi x13, x13, 8 x13=1c008c70 x13:1c008c68 +76450442ns 1406371 1c0018b2 fec714e3 bne x14, x12, -24 x14:00000005 x12:00000008 +76450503ns 1406374 1c00189a 0046a583 lw x11, 4(x13) x11=00000000 x13:1c008c70 PA:1c008c74 +76450543ns 1406376 1c00189c 00a59963 bne x11, x10, 18 x11:00000000 x10:1c00c2e0 +76450604ns 1406379 1c0018ae 00170713 addi x14, x14, 1 x14=00000006 x14:00000005 +76450624ns 1406380 1c0018b0 00868693 addi x13, x13, 8 x13=1c008c78 x13:1c008c70 +76450644ns 1406381 1c0018b2 fec714e3 bne x14, x12, -24 x14:00000006 x12:00000008 +76450705ns 1406384 1c00189a 0046a583 lw x11, 4(x13) x11=00000000 x13:1c008c78 PA:1c008c7c +76450745ns 1406386 1c00189c 00a59963 bne x11, x10, 18 x11:00000000 x10:1c00c2e0 +76450806ns 1406389 1c0018ae 00170713 addi x14, x14, 1 x14=00000007 x14:00000006 +76450826ns 1406390 1c0018b0 00868693 addi x13, x13, 8 x13=1c008c80 x13:1c008c78 +76450846ns 1406391 1c0018b2 fec714e3 bne x14, x12, -24 x14:00000007 x12:00000008 +76450907ns 1406394 1c00189a 0046a583 lw x11, 4(x13) x11=00000000 x13:1c008c80 PA:1c008c84 +76450947ns 1406396 1c00189c 00a59963 bne x11, x10, 18 x11:00000000 x10:1c00c2e0 +76451007ns 1406399 1c0018ae 00170713 addi x14, x14, 1 x14=00000008 x14:00000007 +76451028ns 1406400 1c0018b0 00868693 addi x13, x13, 8 x13=1c008c88 x13:1c008c80 +76451048ns 1406401 1c0018b2 fec714e3 bne x14, x12, -24 x14:00000008 x12:00000008 +76451068ns 1406402 1c0018b6 00008067 jalr x0, x1, 0 x1:1c0018e4 +76451108ns 1406404 1c0018e4 00800533 add x10, x0, x8 x10=1c00c2e0 x8:1c00c2e0 +76451129ns 1406405 1c0018e6 00812403 lw x8, 8(x2) x8=1c009b68 x2:1c009b30 PA:1c009b38 +76451149ns 1406406 1c0018e8 00c12083 lw x1, 12(x2) x1=1c0034a0 x2:1c009b30 PA:1c009b3c +76451169ns 1406407 1c0018ea 01010113 addi x2, x2, 16 x2=1c009b40 x2:1c009b30 +76451189ns 1406408 1c0018ec 0a60106f jal x0, 4262 +76451230ns 1406410 1c002992 fe010113 addi x2, x2, -32 x2=1c009b20 x2:1c009b40 +76451250ns 1406411 1c002994 00112e23 sw x1, 28(x2) x1:1c0034a0 x2:1c009b20 PA:1c009b3c +76451270ns 1406412 1c002996 00a12623 sw x10, 12(x2) x10:1c00c2e0 x2:1c009b20 PA:1c009b2c +76451290ns 1406413 1c002998 00050a63 beq x10, x0, 20 x10:1c00c2e0 +76451310ns 1406414 1c00299a 87cff0ef jal x1, -3972 x1=1c00299e +76451371ns 1406417 1c001a16 d6818793 addi x15, x3, -664 x15=1c009144 x3:1c0093dc +76451391ns 1406418 1c001a1a 0007a703 lw x14, 0(x15) x14=00000000 x15:1c009144 PA:1c009144 +76451431ns 1406420 1c001a1c 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76451452ns 1406421 1c001a1e 00e7a023 sw x14, 0(x15) x14:00000001 x15:1c009144 PA:1c009144 +76451472ns 1406422 1c001a20 00008067 jalr x0, x1, 0 x1:1c00299e +76451512ns 1406424 1c00299e 00c12503 lw x10, 12(x2) x10=1c00c2e0 x2:1c009b20 PA:1c009b2c +76451532ns 1406425 1c0029a0 775000ef jal x1, 3956 x1=1c0029a4 +76451573ns 1406427 1c003914 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76451593ns 1406428 1c003918 00a005b3 add x11, x0, x10 x11=1c00c2e0 x10:1c00c2e0 +76451613ns 1406429 1c00391a c447a503 lw x10, -956(x15) x10=1c009e10 x15:1c009000 PA:1c008c44 +76451633ns 1406430 1c00391e 0020006f jal x0, 2 +76451674ns 1406432 1c003920 0a058363 beq x11, x0, 166 x11:1c00c2e0 +76451694ns 1406433 1c003922 ffc5a783 lw x15, -4(x11) x15=00000058 x11:1c00c2e0 PA:1c00c2dc +76451714ns 1406434 1c003926 fe010113 addi x2, x2, -32 x2=1c009b00 x2:1c009b20 +76451734ns 1406435 1c003928 00812c23 sw x8, 24(x2) x8:1c009b68 x2:1c009b00 PA:1c009b18 +76451755ns 1406436 1c00392a 00112e23 sw x1, 28(x2) x1:1c0029a4 x2:1c009b00 PA:1c009b1c +76451775ns 1406437 1c00392c ffc58413 addi x8, x11, -4 x8=1c00c2dc x11:1c00c2e0 +76451795ns 1406438 1c003930 0007d363 bge x15, x0, 6 x15:00000058 +76451856ns 1406441 1c003936 00a12623 sw x10, 12(x2) x10:1c009e10 x2:1c009b00 PA:1c009b0c +76451876ns 1406442 1c003938 92eff0ef jal x1, -3794 x1=1c00393c +76451936ns 1406445 1c002a66 fb1fe06f jal x0, -4176 +76451997ns 1406448 1c001a16 d6818793 addi x15, x3, -664 x15=1c009144 x3:1c0093dc +76452017ns 1406449 1c001a1a 0007a703 lw x14, 0(x15) x14=00000001 x15:1c009144 PA:1c009144 +76452057ns 1406451 1c001a1c 00170713 addi x14, x14, 1 x14=00000002 x14:00000001 +76452078ns 1406452 1c001a1e 00e7a023 sw x14, 0(x15) x14:00000002 x15:1c009144 PA:1c009144 +76452098ns 1406453 1c001a20 00008067 jalr x0, x1, 0 x1:1c00393c +76452138ns 1406455 1c00393c db81a783 lw x15, -584(x3) x15=00000000 x3:1c0093dc PA:1c009194 +76452158ns 1406456 1c003940 00c12503 lw x10, 12(x2) x10=1c009e10 x2:1c009b00 PA:1c009b0c +76452179ns 1406457 1c003942 00e00633 add x12, x0, x14 x12=00000002 x14:00000002 +76452199ns 1406458 1c003944 00079a63 bne x15, x0, 20 x15:00000000 +76452219ns 1406459 1c003946 00042223 sw x0, 4(x8) x8:1c00c2dc PA:1c00c2e0 +76452239ns 1406460 1c00394a da81ac23 sw x8, -584(x3) x8:1c00c2dc x3:1c0093dc PA:1c009194 +76452259ns 1406461 1c00394e 01812403 lw x8, 24(x2) x8=1c009b68 x2:1c009b00 PA:1c009b18 +76452280ns 1406462 1c003950 01c12083 lw x1, 28(x2) x1=1c0029a4 x2:1c009b00 PA:1c009b1c +76452300ns 1406463 1c003952 02010113 addi x2, x2, 32 x2=1c009b20 x2:1c009b00 +76452320ns 1406464 1c003954 916ff06f jal x0, -3818 +76452381ns 1406467 1c002a6a 8e3ff06f jal x0, -1822 +76452421ns 1406469 1c00234c fc010113 addi x2, x2, -64 x2=1c009ae0 x2:1c009b20 +76452441ns 1406470 1c00234e 02812c23 sw x8, 56(x2) x8:1c009b68 x2:1c009ae0 PA:1c009b18 +76452461ns 1406471 1c002350 d6818413 addi x8, x3, -664 x8=1c009144 x3:1c0093dc +76452481ns 1406472 1c002354 00042783 lw x15, 0(x8) x15=00000002 x8:1c009144 PA:1c009144 +76452502ns 1406473 1c002356 02112e23 sw x1, 60(x2) x1:1c0029a4 x2:1c009ae0 PA:1c009b1c +76452522ns 1406474 1c002358 02912a23 sw x9, 52(x2) x9:1c009190 x2:1c009ae0 PA:1c009b14 +76452542ns 1406475 1c00235a 03212823 sw x18, 48(x2) x18:1c009188 x2:1c009ae0 PA:1c009b10 +76452562ns 1406476 1c00235c 03312623 sw x19, 44(x2) x19:1c009000 x2:1c009ae0 PA:1c009b0c +76452582ns 1406477 1c00235e 03412423 sw x20, 40(x2) x20:1c00918c x2:1c009ae0 PA:1c009b08 +76452603ns 1406478 1c002360 03512223 sw x21, 36(x2) x21:a5a5a5a5 x2:1c009ae0 PA:1c009b04 +76452623ns 1406479 1c002362 03612023 sw x22, 32(x2) x22:a5a5a5a5 x2:1c009ae0 PA:1c009b00 +76452643ns 1406480 1c002364 01712e23 sw x23, 28(x2) x23:a5a5a5a5 x2:1c009ae0 PA:1c009afc +76452663ns 1406481 1c002366 02079263 bne x15, x0, 36 x15:00000002 +76452744ns 1406485 1c00238a c83ff0ef jal x1, -894 x1=1c00238e +76452784ns 1406487 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +76452865ns 1406491 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76452906ns 1406493 1c002014 00078863 beq x15, x0, 16 x15:00000001 +76452926ns 1406494 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76452946ns 1406495 1c00201a 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76452966ns 1406496 1c00201c 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76452986ns 1406497 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c009db8 PA:1c009dfc +76453027ns 1406499 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76453047ns 1406500 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c009db8 PA:1c009dfc +76453067ns 1406501 1c002024 00008067 jalr x0, x1, 0 x1:1c00238e +76453107ns 1406503 1c00238e 00042783 lw x15, 0(x8) x15=00000002 x8:1c009144 PA:1c009144 +76453148ns 1406505 1c002390 fff78793 addi x15, x15, -1 x15=00000001 x15:00000002 +76453168ns 1406506 1c002392 00f42023 sw x15, 0(x8) x15:00000001 x8:1c009144 PA:1c009144 +76453188ns 1406507 1c002394 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +76453229ns 1406509 1c002396 02078163 beq x15, x0, 34 x15:00000001 +76453249ns 1406510 1c002398 00000513 addi x10, x0, 0 x10=00000000 +76453269ns 1406511 1c00239a 00a12623 sw x10, 12(x2) x10:00000000 x2:1c009ae0 PA:1c009aec +76453289ns 1406512 1c00239c c8bff0ef jal x1, -886 x1=1c0023a0 +76453350ns 1406515 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76453390ns 1406517 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +76453410ns 1406518 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76453431ns 1406519 1c002030 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +76453471ns 1406521 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c009db8 PA:1c009dfc +76453511ns 1406523 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +76453531ns 1406524 1c002036 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76453552ns 1406525 1c002038 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76453572ns 1406526 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c009db8 PA:1c009dfc +76453612ns 1406528 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +76453632ns 1406529 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c009db8 PA:1c009dfc +76453653ns 1406530 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c009db8 PA:1c009dfc +76453693ns 1406532 1c002042 00079363 bne x15, x0, 6 x15:00000000 +76453713ns 1406533 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +76453794ns 1406537 1c002048 00008067 jalr x0, x1, 0 x1:1c0023a0 +76453834ns 1406539 1c0023a0 03c12083 lw x1, 60(x2) x1=1c0029a4 x2:1c009ae0 PA:1c009b1c +76453855ns 1406540 1c0023a2 03812403 lw x8, 56(x2) x8=1c009b68 x2:1c009ae0 PA:1c009b18 +76453875ns 1406541 1c0023a4 00c12503 lw x10, 12(x2) x10=00000000 x2:1c009ae0 PA:1c009aec +76453895ns 1406542 1c0023a6 03412483 lw x9, 52(x2) x9=1c009190 x2:1c009ae0 PA:1c009b14 +76453915ns 1406543 1c0023a8 03012903 lw x18, 48(x2) x18=1c009188 x2:1c009ae0 PA:1c009b10 +76453935ns 1406544 1c0023aa 02c12983 lw x19, 44(x2) x19=1c009000 x2:1c009ae0 PA:1c009b0c +76453955ns 1406545 1c0023ac 02812a03 lw x20, 40(x2) x20=1c00918c x2:1c009ae0 PA:1c009b08 +76453976ns 1406546 1c0023ae 02412a83 lw x21, 36(x2) x21=a5a5a5a5 x2:1c009ae0 PA:1c009b04 +76453996ns 1406547 1c0023b0 02012b03 lw x22, 32(x2) x22=a5a5a5a5 x2:1c009ae0 PA:1c009b00 +76454016ns 1406548 1c0023b2 01c12b83 lw x23, 28(x2) x23=a5a5a5a5 x2:1c009ae0 PA:1c009afc +76454036ns 1406549 1c0023b4 04010113 addi x2, x2, 64 x2=1c009b20 x2:1c009ae0 +76454056ns 1406550 1c0023b6 00008067 jalr x0, x1, 0 x1:1c0029a4 +76454097ns 1406552 1c0029a4 01c12083 lw x1, 28(x2) x1=1c0034a0 x2:1c009b20 PA:1c009b3c +76454117ns 1406553 1c0029a6 02010113 addi x2, x2, 32 x2=1c009b40 x2:1c009b20 +76454137ns 1406554 1c0029a8 9a5ff06f jal x0, -1628 +76454178ns 1406556 1c00234c fc010113 addi x2, x2, -64 x2=1c009b00 x2:1c009b40 +76454198ns 1406557 1c00234e 02812c23 sw x8, 56(x2) x8:1c009b68 x2:1c009b00 PA:1c009b38 +76454218ns 1406558 1c002350 d6818413 addi x8, x3, -664 x8=1c009144 x3:1c0093dc +76454238ns 1406559 1c002354 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +76454258ns 1406560 1c002356 02112e23 sw x1, 60(x2) x1:1c0034a0 x2:1c009b00 PA:1c009b3c +76454279ns 1406561 1c002358 02912a23 sw x9, 52(x2) x9:1c009190 x2:1c009b00 PA:1c009b34 +76454299ns 1406562 1c00235a 03212823 sw x18, 48(x2) x18:1c009188 x2:1c009b00 PA:1c009b30 +76454319ns 1406563 1c00235c 03312623 sw x19, 44(x2) x19:1c009000 x2:1c009b00 PA:1c009b2c +76454339ns 1406564 1c00235e 03412423 sw x20, 40(x2) x20:1c00918c x2:1c009b00 PA:1c009b28 +76454359ns 1406565 1c002360 03512223 sw x21, 36(x2) x21:a5a5a5a5 x2:1c009b00 PA:1c009b24 +76454380ns 1406566 1c002362 03612023 sw x22, 32(x2) x22:a5a5a5a5 x2:1c009b00 PA:1c009b20 +76454400ns 1406567 1c002364 01712e23 sw x23, 28(x2) x23:a5a5a5a5 x2:1c009b00 PA:1c009b1c +76454420ns 1406568 1c002366 02079263 bne x15, x0, 36 x15:00000001 +76454501ns 1406572 1c00238a c83ff0ef jal x1, -894 x1=1c00238e +76454541ns 1406574 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +76454622ns 1406578 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76454662ns 1406580 1c002014 00078863 beq x15, x0, 16 x15:00000001 +76454682ns 1406581 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76454703ns 1406582 1c00201a 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76454723ns 1406583 1c00201c 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76454743ns 1406584 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c009db8 PA:1c009dfc +76454783ns 1406586 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76454804ns 1406587 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c009db8 PA:1c009dfc +76454824ns 1406588 1c002024 00008067 jalr x0, x1, 0 x1:1c00238e +76454864ns 1406590 1c00238e 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +76454905ns 1406592 1c002390 fff78793 addi x15, x15, -1 x15=00000000 x15:00000001 +76454925ns 1406593 1c002392 00f42023 sw x15, 0(x8) x15:00000000 x8:1c009144 PA:1c009144 +76454945ns 1406594 1c002394 00042783 lw x15, 0(x8) x15=00000000 x8:1c009144 PA:1c009144 +76454985ns 1406596 1c002396 02078163 beq x15, x0, 34 x15:00000000 +76455046ns 1406599 1c0023b8 d601a783 lw x15, -672(x3) x15=00000003 x3:1c0093dc PA:1c00913c +76455086ns 1406601 1c0023bc fc078ee3 beq x15, x0, -36 x15:00000003 +76455106ns 1406602 1c0023be 1c009937 lui x18, 0x1c009000 x18=1c009000 +76455127ns 1406603 1c0023c2 00000413 addi x8, x0, 0 x8=00000000 +76455147ns 1406604 1c0023c4 93818493 addi x9, x3, -1736 x9=1c008d14 x3:1c0093dc +76455167ns 1406605 1c0023c8 00100993 addi x19, x0, 1 x19=00000001 +76455187ns 1406606 1c0023ca c8890913 addi x18, x18, -888 x18=1c008c88 x18:1c009000 +76455207ns 1406607 1c0023ce 01400a93 addi x21, x0, 20 x21=00000014 +76455228ns 1406608 1c0023d0 04c0006f jal x0, 76 +76455268ns 1406610 1c00241c 0004a783 lw x15, 0(x9) x15=00000000 x9:1c008d14 PA:1c008d14 +76455308ns 1406612 1c00241e fa079ae3 bne x15, x0, -76 x15:00000000 +76455329ns 1406613 1c002420 00040363 beq x8, x0, 6 x8:00000000 +76455409ns 1406617 1c002426 d8018713 addi x14, x3, -640 x14=1c00915c x3:1c0093dc +76455430ns 1406618 1c00242a 00072483 lw x9, 0(x14) x9=00000000 x14:1c00915c PA:1c00915c +76455450ns 1406619 1c00242c d8018413 addi x8, x3, -640 x8=1c00915c x3:1c0093dc +76455470ns 1406620 1c002430 00048d63 beq x9, x0, 26 x9:00000000 +76455551ns 1406624 1c00244a d8c1a783 lw x15, -628(x3) x15=00000000 x3:1c0093dc PA:1c009168 +76455591ns 1406626 1c00244e f40785e3 beq x15, x0, -182 x15:00000000 +76455652ns 1406629 1c002398 00000513 addi x10, x0, 0 x10=00000000 +76455672ns 1406630 1c00239a 00a12623 sw x10, 12(x2) x10:00000000 x2:1c009b00 PA:1c009b0c +76455692ns 1406631 1c00239c c8bff0ef jal x1, -886 x1=1c0023a0 +76455753ns 1406634 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76455793ns 1406636 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +76455813ns 1406637 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76455833ns 1406638 1c002030 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +76455874ns 1406640 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c009db8 PA:1c009dfc +76455914ns 1406642 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +76455934ns 1406643 1c002036 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76455955ns 1406644 1c002038 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76455975ns 1406645 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c009db8 PA:1c009dfc +76456015ns 1406647 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +76456035ns 1406648 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c009db8 PA:1c009dfc +76456055ns 1406649 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c009db8 PA:1c009dfc +76456096ns 1406651 1c002042 00079363 bne x15, x0, 6 x15:00000000 +76456116ns 1406652 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +76456197ns 1406656 1c002048 00008067 jalr x0, x1, 0 x1:1c0023a0 +76456237ns 1406658 1c0023a0 03c12083 lw x1, 60(x2) x1=1c0034a0 x2:1c009b00 PA:1c009b3c +76456257ns 1406659 1c0023a2 03812403 lw x8, 56(x2) x8=1c009b68 x2:1c009b00 PA:1c009b38 +76456278ns 1406660 1c0023a4 00c12503 lw x10, 12(x2) x10=00000000 x2:1c009b00 PA:1c009b0c +76456298ns 1406661 1c0023a6 03412483 lw x9, 52(x2) x9=1c009190 x2:1c009b00 PA:1c009b34 +76456318ns 1406662 1c0023a8 03012903 lw x18, 48(x2) x18=1c009188 x2:1c009b00 PA:1c009b30 +76456338ns 1406663 1c0023aa 02c12983 lw x19, 44(x2) x19=1c009000 x2:1c009b00 PA:1c009b2c +76456358ns 1406664 1c0023ac 02812a03 lw x20, 40(x2) x20=1c00918c x2:1c009b00 PA:1c009b28 +76456379ns 1406665 1c0023ae 02412a83 lw x21, 36(x2) x21=a5a5a5a5 x2:1c009b00 PA:1c009b24 +76456399ns 1406666 1c0023b0 02012b03 lw x22, 32(x2) x22=a5a5a5a5 x2:1c009b00 PA:1c009b20 +76456419ns 1406667 1c0023b2 01c12b83 lw x23, 28(x2) x23=a5a5a5a5 x2:1c009b00 PA:1c009b1c +76456439ns 1406668 1c0023b4 04010113 addi x2, x2, 64 x2=1c009b40 x2:1c009b00 +76456459ns 1406669 1c0023b6 00008067 jalr x0, x1, 0 x1:1c0034a0 +76456500ns 1406671 1c0034a0 02042c23 sw x0, 56(x8) x8:1c009b68 PA:1c009ba0 +76456520ns 1406672 1c0034a4 02042e23 sw x0, 60(x8) x8:1c009b68 PA:1c009ba4 +76456540ns 1406673 1c0034a8 02042a23 sw x0, 52(x8) x8:1c009b68 PA:1c009b9c +76456560ns 1406674 1c0034ac 00c12083 lw x1, 12(x2) x1=1c002ba4 x2:1c009b40 PA:1c009b4c +76456580ns 1406675 1c0034ae 00812403 lw x8, 8(x2) x8=1c009be0 x2:1c009b40 PA:1c009b48 +76456601ns 1406676 1c0034b0 01010113 addi x2, x2, 16 x2=1c009b50 x2:1c009b40 +76456621ns 1406677 1c0034b2 00008067 jalr x0, x1, 0 x1:1c002ba4 +76456661ns 1406679 1c002ba4 01810513 addi x10, x2, 24 x10=1c009b68 x2:1c009b50 +76456681ns 1406680 1c002ba6 0dd000ef jal x1, 2268 x1=1c002baa +76456742ns 1406683 1c003482 04750783 lb x15, 71(x10) x15=00000000 x10:1c009b68 PA:1c009baf +76456782ns 1406685 1c003486 02078763 beq x15, x0, 46 x15:00000000 +76456843ns 1406688 1c0034b4 00008067 jalr x0, x1, 0 x1:1c002baa +76456883ns 1406690 1c002baa 06c12083 lw x1, 108(x2) x1=1c00367e x2:1c009b50 PA:1c009bbc +76456904ns 1406691 1c002bac 06812403 lw x8, 104(x2) x8=00000000 x2:1c009b50 PA:1c009bb8 +76456924ns 1406692 1c002bae 07010113 addi x2, x2, 112 x2=1c009bc0 x2:1c009b50 +76456944ns 1406693 1c002bb0 00008067 jalr x0, x1, 0 x1:1c00367e +76457004ns 1406696 1c00367e 01714583 lbu x11, 23(x2) x11=00000003 x2:1c009bc0 PA:1c009bd7 +76457025ns 1406697 1c003682 8f098513 addi x10, x19, -1808 x10=1c0088f0 x19:1c009000 +76457045ns 1406698 1c003686 0ff5f593 andi x11, x11, 255 x11=00000003 x11:00000003 +76457065ns 1406699 1c00368a 72a000ef jal x1, 1834 x1=1c00368e +76457105ns 1406701 1c003db4 fb010113 addi x2, x2, -80 x2=1c009b70 x2:1c009bc0 +76457126ns 1406702 1c003db6 04f12223 sw x15, 68(x2) x15:00000000 x2:1c009b70 PA:1c009bb4 +76457146ns 1406703 1c003db8 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76457166ns 1406704 1c003dbc 02812423 sw x8, 40(x2) x8:00000000 x2:1c009b70 PA:1c009b98 +76457186ns 1406705 1c003dbe 00a00433 add x8, x0, x10 x8=1c0088f0 x10:1c0088f0 +76457206ns 1406706 1c003dc0 c447a503 lw x10, -956(x15) x10=1c009e10 x15:1c009000 PA:1c008c44 +76457227ns 1406707 1c003dc4 02112623 sw x1, 44(x2) x1:1c00368e x2:1c009b70 PA:1c009b9c +76457247ns 1406708 1c003dc6 02b12a23 sw x11, 52(x2) x11:00000003 x2:1c009b70 PA:1c009ba4 +76457267ns 1406709 1c003dc8 02c12c23 sw x12, 56(x2) x12:00000002 x2:1c009b70 PA:1c009ba8 +76457287ns 1406710 1c003dca 02d12e23 sw x13, 60(x2) x13:1c009db8 x2:1c009b70 PA:1c009bac +76457307ns 1406711 1c003dcc 04e12023 sw x14, 64(x2) x14:00000000 x2:1c009b70 PA:1c009bb0 +76457328ns 1406712 1c003dce 05012423 sw x16, 72(x2) x16:00000010 x2:1c009b70 PA:1c009bb8 +76457348ns 1406713 1c003dd0 05112623 sw x17, 76(x2) x17:00000000 x2:1c009b70 PA:1c009bbc +76457368ns 1406714 1c003dd2 00050763 beq x10, x0, 14 x10:1c009e10 +76457388ns 1406715 1c003dd4 01852783 lw x15, 24(x10) x15=00000001 x10:1c009e10 PA:1c009e28 +76457429ns 1406717 1c003dd6 00079563 bne x15, x0, 10 x15:00000001 +76457489ns 1406720 1c003de0 00852583 lw x11, 8(x10) x11=1c00b914 x10:1c009e10 PA:1c009e18 +76457509ns 1406721 1c003de2 03410693 addi x13, x2, 52 x13=1c009ba4 x2:1c009b70 +76457529ns 1406722 1c003de4 00800633 add x12, x0, x8 x12=1c0088f0 x8:1c0088f0 +76457550ns 1406723 1c003de6 00d12e23 sw x13, 28(x2) x13:1c009ba4 x2:1c009b70 PA:1c009b8c +76457570ns 1406724 1c003de8 d25ff0ef jal x1, -732 x1=1c003dec +76457610ns 1406726 1c003b0c f5010113 addi x2, x2, -176 x2=1c009ac0 x2:1c009b70 +76457630ns 1406727 1c003b0e 0a812423 sw x8, 168(x2) x8:1c0088f0 x2:1c009ac0 PA:1c009b68 +76457651ns 1406728 1c003b10 0a912223 sw x9, 164(x2) x9:1c009190 x2:1c009ac0 PA:1c009b64 +76457671ns 1406729 1c003b12 0b212023 sw x18, 160(x2) x18:1c009188 x2:1c009ac0 PA:1c009b60 +76457691ns 1406730 1c003b14 09312e23 sw x19, 156(x2) x19:1c009000 x2:1c009ac0 PA:1c009b5c +76457711ns 1406731 1c003b16 0a112623 sw x1, 172(x2) x1:1c003dec x2:1c009ac0 PA:1c009b6c +76457731ns 1406732 1c003b18 09412c23 sw x20, 152(x2) x20:1c00918c x2:1c009ac0 PA:1c009b58 +76457752ns 1406733 1c003b1a 09512a23 sw x21, 148(x2) x21:a5a5a5a5 x2:1c009ac0 PA:1c009b54 +76457772ns 1406734 1c003b1c 09612823 sw x22, 144(x2) x22:a5a5a5a5 x2:1c009ac0 PA:1c009b50 +76457792ns 1406735 1c003b1e 09712623 sw x23, 140(x2) x23:a5a5a5a5 x2:1c009ac0 PA:1c009b4c +76457812ns 1406736 1c003b20 09812423 sw x24, 136(x2) x24:a5a5a5a5 x2:1c009ac0 PA:1c009b48 +76457832ns 1406737 1c003b22 09912223 sw x25, 132(x2) x25:a5a5a5a5 x2:1c009ac0 PA:1c009b44 +76457853ns 1406738 1c003b24 09a12023 sw x26, 128(x2) x26:a5a5a5a5 x2:1c009ac0 PA:1c009b40 +76457873ns 1406739 1c003b26 07b12e23 sw x27, 124(x2) x27:a5a5a5a5 x2:1c009ac0 PA:1c009b3c +76457893ns 1406740 1c003b28 00a009b3 add x19, x0, x10 x19=1c009e10 x10:1c009e10 +76457913ns 1406741 1c003b2a 00b004b3 add x9, x0, x11 x9=1c00b914 x11:1c00b914 +76457933ns 1406742 1c003b2c 00c00933 add x18, x0, x12 x18=1c0088f0 x12:1c0088f0 +76457954ns 1406743 1c003b2e 00d00433 add x8, x0, x13 x8=1c009ba4 x13:1c009ba4 +76457974ns 1406744 1c003b30 00050563 beq x10, x0, 10 x10:1c009e10 +76457994ns 1406745 1c003b32 01852783 lw x15, 24(x10) x15=00000001 x10:1c009e10 PA:1c009e28 +76458034ns 1406747 1c003b34 00079363 bne x15, x0, 6 x15:00000001 +76458115ns 1406751 1c003b3a 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76458135ns 1406752 1c003b3e a1478793 addi x15, x15, -1516 x15=1c008a14 x15:1c009000 +76458155ns 1406753 1c003b42 0ef49663 bne x9, x15, 236 x9:1c00b914 x15:1c008a14 +76458236ns 1406757 1c003c2e 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76458256ns 1406758 1c003c32 a3478793 addi x15, x15, -1484 x15=1c008a34 x15:1c009000 +76458277ns 1406759 1c003c36 00f49563 bne x9, x15, 10 x9:1c00b914 x15:1c008a34 +76458337ns 1406762 1c003c40 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76458357ns 1406763 1c003c44 9f478793 addi x15, x15, -1548 x15=1c0089f4 x15:1c009000 +76458378ns 1406764 1c003c48 f0f491e3 bne x9, x15, -254 x9:1c00b914 x15:1c0089f4 +76458458ns 1406768 1c003b4a 00c4d783 lhu x15, 12(x9) x15=00000089 x9:1c00b914 PA:1c00b920 +76458499ns 1406770 1c003b4e 0087f793 andi x15, x15, 8 x15=00000008 x15:00000089 +76458519ns 1406771 1c003b50 10078163 beq x15, x0, 258 x15:00000008 +76458539ns 1406772 1c003b54 0104a783 lw x15, 16(x9) x15=1c00bab8 x9:1c00b914 PA:1c00b924 +76458579ns 1406774 1c003b56 0e078e63 beq x15, x0, 252 x15:1c00bab8 +76458600ns 1406775 1c003b5a 02000793 addi x15, x0, 32 x15=00000020 +76458620ns 1406776 1c003b5e 02f104a3 sb x15, 41(x2) x15:00000020 x2:1c009ac0 PA:1c009ae9 +76458640ns 1406777 1c003b62 03000793 addi x15, x0, 48 x15=00000030 +76458660ns 1406778 1c003b66 02012223 sw x0, 36(x2) x2:1c009ac0 PA:1c009ae4 +76458680ns 1406779 1c003b68 02f10523 sb x15, 42(x2) x15:00000030 x2:1c009ac0 PA:1c009aea +76458701ns 1406780 1c003b6c 00812623 sw x8, 12(x2) x8:1c009ba4 x2:1c009ac0 PA:1c009acc +76458721ns 1406781 1c003b6e 02500c93 addi x25, x0, 37 x25=00000025 +76458741ns 1406782 1c003b72 1c009b37 lui x22, 0x1c009000 x22=1c009000 +76458761ns 1406783 1c003b76 1c009bb7 lui x23, 0x1c009000 x23=1c009000 +76458781ns 1406784 1c003b7a 1c009d37 lui x26, 0x1c009000 x26=1c009000 +76458802ns 1406785 1c003b7e 1c004c37 lui x24, 0x1c004000 x24=1c004000 +76458822ns 1406786 1c003b82 00000a93 addi x21, x0, 0 x21=00000000 +76458842ns 1406787 1c003b86 01200433 add x8, x0, x18 x8=1c0088f0 x18:1c0088f0 +76458862ns 1406788 1c003b88 00044783 lbu x15, 0(x8) x15=00000057 x8:1c0088f0 PA:1c0088f0 +76458903ns 1406790 1c003b8c 00078363 beq x15, x0, 6 x15:00000057 +76458923ns 1406791 1c003b8e 0f979763 bne x15, x25, 238 x15:00000057 x25:00000025 +76458983ns 1406794 1c003c7c 00140413 addi x8, x8, 1 x8=1c0088f1 x8:1c0088f0 +76459003ns 1406795 1c003c7e f0bff06f jal x0, -246 +76459044ns 1406797 1c003b88 00044783 lbu x15, 0(x8) x15=00000049 x8:1c0088f1 PA:1c0088f1 +76459084ns 1406799 1c003b8c 00078363 beq x15, x0, 6 x15:00000049 +76459104ns 1406800 1c003b8e 0f979763 bne x15, x25, 238 x15:00000049 x25:00000025 +76459165ns 1406803 1c003c7c 00140413 addi x8, x8, 1 x8=1c0088f2 x8:1c0088f1 +76459185ns 1406804 1c003c7e f0bff06f jal x0, -246 +76459226ns 1406806 1c003b88 00044783 lbu x15, 0(x8) x15=00000050 x8:1c0088f2 PA:1c0088f2 +76459266ns 1406808 1c003b8c 00078363 beq x15, x0, 6 x15:00000050 +76459286ns 1406809 1c003b8e 0f979763 bne x15, x25, 238 x15:00000050 x25:00000025 +76459347ns 1406812 1c003c7c 00140413 addi x8, x8, 1 x8=1c0088f3 x8:1c0088f2 +76459367ns 1406813 1c003c7e f0bff06f jal x0, -246 +76459407ns 1406815 1c003b88 00044783 lbu x15, 0(x8) x15=00000020 x8:1c0088f3 PA:1c0088f3 +76459448ns 1406817 1c003b8c 00078363 beq x15, x0, 6 x15:00000020 +76459468ns 1406818 1c003b8e 0f979763 bne x15, x25, 238 x15:00000020 x25:00000025 +76459528ns 1406821 1c003c7c 00140413 addi x8, x8, 1 x8=1c0088f4 x8:1c0088f3 +76459549ns 1406822 1c003c7e f0bff06f jal x0, -246 +76459589ns 1406824 1c003b88 00044783 lbu x15, 0(x8) x15=00000052 x8:1c0088f4 PA:1c0088f4 +76459629ns 1406826 1c003b8c 00078363 beq x15, x0, 6 x15:00000052 +76459650ns 1406827 1c003b8e 0f979763 bne x15, x25, 238 x15:00000052 x25:00000025 +76459710ns 1406830 1c003c7c 00140413 addi x8, x8, 1 x8=1c0088f5 x8:1c0088f4 +76459730ns 1406831 1c003c7e f0bff06f jal x0, -246 +76459771ns 1406833 1c003b88 00044783 lbu x15, 0(x8) x15=00000065 x8:1c0088f5 PA:1c0088f5 +76459811ns 1406835 1c003b8c 00078363 beq x15, x0, 6 x15:00000065 +76459831ns 1406836 1c003b8e 0f979763 bne x15, x25, 238 x15:00000065 x25:00000025 +76459892ns 1406839 1c003c7c 00140413 addi x8, x8, 1 x8=1c0088f6 x8:1c0088f5 +76459912ns 1406840 1c003c7e f0bff06f jal x0, -246 +76459953ns 1406842 1c003b88 00044783 lbu x15, 0(x8) x15=00000067 x8:1c0088f6 PA:1c0088f6 +76459993ns 1406844 1c003b8c 00078363 beq x15, x0, 6 x15:00000067 +76460013ns 1406845 1c003b8e 0f979763 bne x15, x25, 238 x15:00000067 x25:00000025 +76460074ns 1406848 1c003c7c 00140413 addi x8, x8, 1 x8=1c0088f7 x8:1c0088f6 +76460094ns 1406849 1c003c7e f0bff06f jal x0, -246 +76460134ns 1406851 1c003b88 00044783 lbu x15, 0(x8) x15=00000069 x8:1c0088f7 PA:1c0088f7 +76460175ns 1406853 1c003b8c 00078363 beq x15, x0, 6 x15:00000069 +76460195ns 1406854 1c003b8e 0f979763 bne x15, x25, 238 x15:00000069 x25:00000025 +76460255ns 1406857 1c003c7c 00140413 addi x8, x8, 1 x8=1c0088f8 x8:1c0088f7 +76460276ns 1406858 1c003c7e f0bff06f jal x0, -246 +76460316ns 1406860 1c003b88 00044783 lbu x15, 0(x8) x15=00000073 x8:1c0088f8 PA:1c0088f8 +76460356ns 1406862 1c003b8c 00078363 beq x15, x0, 6 x15:00000073 +76460377ns 1406863 1c003b8e 0f979763 bne x15, x25, 238 x15:00000073 x25:00000025 +76460437ns 1406866 1c003c7c 00140413 addi x8, x8, 1 x8=1c0088f9 x8:1c0088f8 +76460457ns 1406867 1c003c7e f0bff06f jal x0, -246 +76460498ns 1406869 1c003b88 00044783 lbu x15, 0(x8) x15=00000074 x8:1c0088f9 PA:1c0088f9 +76460538ns 1406871 1c003b8c 00078363 beq x15, x0, 6 x15:00000074 +76460558ns 1406872 1c003b8e 0f979763 bne x15, x25, 238 x15:00000074 x25:00000025 +76460619ns 1406875 1c003c7c 00140413 addi x8, x8, 1 x8=1c0088fa x8:1c0088f9 +76460639ns 1406876 1c003c7e f0bff06f jal x0, -246 +76460679ns 1406878 1c003b88 00044783 lbu x15, 0(x8) x15=00000065 x8:1c0088fa PA:1c0088fa +76460720ns 1406880 1c003b8c 00078363 beq x15, x0, 6 x15:00000065 +76460740ns 1406881 1c003b8e 0f979763 bne x15, x25, 238 x15:00000065 x25:00000025 +76460801ns 1406884 1c003c7c 00140413 addi x8, x8, 1 x8=1c0088fb x8:1c0088fa +76460821ns 1406885 1c003c7e f0bff06f jal x0, -246 +76460861ns 1406887 1c003b88 00044783 lbu x15, 0(x8) x15=00000072 x8:1c0088fb PA:1c0088fb +76460902ns 1406889 1c003b8c 00078363 beq x15, x0, 6 x15:00000072 +76460922ns 1406890 1c003b8e 0f979763 bne x15, x25, 238 x15:00000072 x25:00000025 +76460982ns 1406893 1c003c7c 00140413 addi x8, x8, 1 x8=1c0088fc x8:1c0088fb +76461003ns 1406894 1c003c7e f0bff06f jal x0, -246 +76461043ns 1406896 1c003b88 00044783 lbu x15, 0(x8) x15=0000003a x8:1c0088fc PA:1c0088fc +76461083ns 1406898 1c003b8c 00078363 beq x15, x0, 6 x15:0000003a +76461103ns 1406899 1c003b8e 0f979763 bne x15, x25, 238 x15:0000003a x25:00000025 +76461164ns 1406902 1c003c7c 00140413 addi x8, x8, 1 x8=1c0088fd x8:1c0088fc +76461184ns 1406903 1c003c7e f0bff06f jal x0, -246 +76461225ns 1406905 1c003b88 00044783 lbu x15, 0(x8) x15=00000020 x8:1c0088fd PA:1c0088fd +76461265ns 1406907 1c003b8c 00078363 beq x15, x0, 6 x15:00000020 +76461285ns 1406908 1c003b8e 0f979763 bne x15, x25, 238 x15:00000020 x25:00000025 +76461346ns 1406911 1c003c7c 00140413 addi x8, x8, 1 x8=1c0088fe x8:1c0088fd +76461366ns 1406912 1c003c7e f0bff06f jal x0, -246 +76461406ns 1406914 1c003b88 00044783 lbu x15, 0(x8) x15=00000025 x8:1c0088fe PA:1c0088fe +76461447ns 1406916 1c003b8c 00078363 beq x15, x0, 6 x15:00000025 +76461467ns 1406917 1c003b8e 0f979763 bne x15, x25, 238 x15:00000025 x25:00000025 +76461487ns 1406918 1c003b92 41240db3 sub x27, x8, x18 x27=0000000e x8:1c0088fe x18:1c0088f0 +76461507ns 1406919 1c003b96 01240e63 beq x8, x18, 28 x8:1c0088fe x18:1c0088f0 +76461527ns 1406920 1c003b9a 01b006b3 add x13, x0, x27 x13=0000000e x27:0000000e +76461548ns 1406921 1c003b9c 01200633 add x12, x0, x18 x12=1c0088f0 x18:1c0088f0 +76461568ns 1406922 1c003b9e 009005b3 add x11, x0, x9 x11=1c00b914 x9:1c00b914 +76461588ns 1406923 1c003ba0 01300533 add x10, x0, x19 x10=1c009e10 x19:1c009e10 +76461608ns 1406924 1c003ba2 f27ff0ef jal x1, -218 x1=1c003ba6 +76461649ns 1406926 1c003ac8 fe010113 addi x2, x2, -32 x2=1c009aa0 x2:1c009ac0 +76461669ns 1406927 1c003aca 00812c23 sw x8, 24(x2) x8:1c0088fe x2:1c009aa0 PA:1c009ab8 +76461689ns 1406928 1c003acc 00912a23 sw x9, 20(x2) x9:1c00b914 x2:1c009aa0 PA:1c009ab4 +76461709ns 1406929 1c003ace 01212823 sw x18, 16(x2) x18:1c0088f0 x2:1c009aa0 PA:1c009ab0 +76461729ns 1406930 1c003ad0 01312623 sw x19, 12(x2) x19:1c009e10 x2:1c009aa0 PA:1c009aac +76461750ns 1406931 1c003ad2 01412423 sw x20, 8(x2) x20:1c00918c x2:1c009aa0 PA:1c009aa8 +76461770ns 1406932 1c003ad4 00112e23 sw x1, 28(x2) x1:1c003ba6 x2:1c009aa0 PA:1c009abc +76461790ns 1406933 1c003ad6 00a00933 add x18, x0, x10 x18=1c009e10 x10:1c009e10 +76461810ns 1406934 1c003ad8 00b009b3 add x19, x0, x11 x19=1c00b914 x11:1c00b914 +76461830ns 1406935 1c003ada 00c00433 add x8, x0, x12 x8=1c0088f0 x12:1c0088f0 +76461851ns 1406936 1c003adc 00d604b3 add x9, x12, x13 x9=1c0088fe x12:1c0088f0 x13:0000000e +76461871ns 1406937 1c003ae0 fff00a13 addi x20, x0, -1 x20=ffffffff +76461891ns 1406938 1c003ae2 00941463 bne x8, x9, 8 x8:1c0088f0 x9:1c0088fe +76461972ns 1406942 1c003aea 00044583 lbu x11, 0(x8) x11=00000057 x8:1c0088f0 PA:1c0088f0 +76461992ns 1406943 1c003aee 01300633 add x12, x0, x19 x12=1c00b914 x19:1c00b914 +76462012ns 1406944 1c003af0 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +76462032ns 1406945 1c003af2 fafff0ef jal x1, -82 x1=1c003af6 +76462073ns 1406947 1c003aa0 00862783 lw x15, 8(x12) x15=00000000 x12:1c00b914 PA:1c00b91c +76462113ns 1406949 1c003aa2 fff78793 addi x15, x15, -1 x15=ffffffff x15:00000000 +76462133ns 1406950 1c003aa4 00f62423 sw x15, 8(x12) x15:ffffffff x12:1c00b914 PA:1c00b91c +76462153ns 1406951 1c003aa6 0007d963 bge x15, x0, 18 x15:ffffffff +76462174ns 1406952 1c003aaa 01862703 lw x14, 24(x12) x14=fffffc00 x12:1c00b914 PA:1c00b92c +76462214ns 1406954 1c003aac 00e7c563 blt x15, x14, 10 x15:ffffffff x14:fffffc00 +76462234ns 1406955 1c003ab0 00a00793 addi x15, x0, 10 x15=0000000a +76462254ns 1406956 1c003ab2 00f59363 bne x11, x15, 6 x11:00000057 x15:0000000a +76462315ns 1406959 1c003ab8 00062783 lw x15, 0(x12) x15=1c00bab8 x12:1c00b914 PA:1c00b914 +76462335ns 1406960 1c003aba 00b00533 add x10, x0, x11 x10=00000057 x11:00000057 +76462355ns 1406961 1c003abc 00178713 addi x14, x15, 1 x14=1c00bab9 x15:1c00bab8 +76462376ns 1406962 1c003ac0 00e62023 sw x14, 0(x12) x14:1c00bab9 x12:1c00b914 PA:1c00b914 +76462396ns 1406963 1c003ac2 00b78023 sb x11, 0(x15) x11:00000057 x15:1c00bab8 PA:1c00bab8 +76462416ns 1406964 1c003ac6 00008067 jalr x0, x1, 0 x1:1c003af6 +76462456ns 1406966 1c003af6 00140413 addi x8, x8, 1 x8=1c0088f1 x8:1c0088f0 +76462477ns 1406967 1c003af8 ff4515e3 bne x10, x20, -22 x10:00000057 x20:ffffffff +76462557ns 1406971 1c003ae2 00941463 bne x8, x9, 8 x8:1c0088f1 x9:1c0088fe +76462638ns 1406975 1c003aea 00044583 lbu x11, 0(x8) x11=00000049 x8:1c0088f1 PA:1c0088f1 +76462658ns 1406976 1c003aee 01300633 add x12, x0, x19 x12=1c00b914 x19:1c00b914 +76462678ns 1406977 1c003af0 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +76462699ns 1406978 1c003af2 fafff0ef jal x1, -82 x1=1c003af6 +76462739ns 1406980 1c003aa0 00862783 lw x15, 8(x12) x15=ffffffff x12:1c00b914 PA:1c00b91c +76462779ns 1406982 1c003aa2 fff78793 addi x15, x15, -1 x15=fffffffe x15:ffffffff +76462800ns 1406983 1c003aa4 00f62423 sw x15, 8(x12) x15:fffffffe x12:1c00b914 PA:1c00b91c +76462820ns 1406984 1c003aa6 0007d963 bge x15, x0, 18 x15:fffffffe +76462840ns 1406985 1c003aaa 01862703 lw x14, 24(x12) x14=fffffc00 x12:1c00b914 PA:1c00b92c +76462880ns 1406987 1c003aac 00e7c563 blt x15, x14, 10 x15:fffffffe x14:fffffc00 +76462901ns 1406988 1c003ab0 00a00793 addi x15, x0, 10 x15=0000000a +76462921ns 1406989 1c003ab2 00f59363 bne x11, x15, 6 x11:00000049 x15:0000000a +76462981ns 1406992 1c003ab8 00062783 lw x15, 0(x12) x15=1c00bab9 x12:1c00b914 PA:1c00b914 +76463002ns 1406993 1c003aba 00b00533 add x10, x0, x11 x10=00000049 x11:00000049 +76463022ns 1406994 1c003abc 00178713 addi x14, x15, 1 x14=1c00baba x15:1c00bab9 +76463042ns 1406995 1c003ac0 00e62023 sw x14, 0(x12) x14:1c00baba x12:1c00b914 PA:1c00b914 +76463062ns 1406996 1c003ac2 00b78023 sb x11, 0(x15) x11:00000049 x15:1c00bab9 PA:1c00bab9 +76463082ns 1406997 1c003ac6 00008067 jalr x0, x1, 0 x1:1c003af6 +76463123ns 1406999 1c003af6 00140413 addi x8, x8, 1 x8=1c0088f2 x8:1c0088f1 +76463143ns 1407000 1c003af8 ff4515e3 bne x10, x20, -22 x10:00000049 x20:ffffffff +76463224ns 1407004 1c003ae2 00941463 bne x8, x9, 8 x8:1c0088f2 x9:1c0088fe +76463304ns 1407008 1c003aea 00044583 lbu x11, 0(x8) x11=00000050 x8:1c0088f2 PA:1c0088f2 +76463325ns 1407009 1c003aee 01300633 add x12, x0, x19 x12=1c00b914 x19:1c00b914 +76463345ns 1407010 1c003af0 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +76463365ns 1407011 1c003af2 fafff0ef jal x1, -82 x1=1c003af6 +76463405ns 1407013 1c003aa0 00862783 lw x15, 8(x12) x15=fffffffe x12:1c00b914 PA:1c00b91c +76463446ns 1407015 1c003aa2 fff78793 addi x15, x15, -1 x15=fffffffd x15:fffffffe +76463466ns 1407016 1c003aa4 00f62423 sw x15, 8(x12) x15:fffffffd x12:1c00b914 PA:1c00b91c +76463486ns 1407017 1c003aa6 0007d963 bge x15, x0, 18 x15:fffffffd +76463506ns 1407018 1c003aaa 01862703 lw x14, 24(x12) x14=fffffc00 x12:1c00b914 PA:1c00b92c +76463547ns 1407020 1c003aac 00e7c563 blt x15, x14, 10 x15:fffffffd x14:fffffc00 +76463567ns 1407021 1c003ab0 00a00793 addi x15, x0, 10 x15=0000000a +76463587ns 1407022 1c003ab2 00f59363 bne x11, x15, 6 x11:00000050 x15:0000000a +76463648ns 1407025 1c003ab8 00062783 lw x15, 0(x12) x15=1c00baba x12:1c00b914 PA:1c00b914 +76463668ns 1407026 1c003aba 00b00533 add x10, x0, x11 x10=00000050 x11:00000050 +76463688ns 1407027 1c003abc 00178713 addi x14, x15, 1 x14=1c00babb x15:1c00baba +76463708ns 1407028 1c003ac0 00e62023 sw x14, 0(x12) x14:1c00babb x12:1c00b914 PA:1c00b914 +76463728ns 1407029 1c003ac2 00b78023 sb x11, 0(x15) x11:00000050 x15:1c00baba PA:1c00baba +76463749ns 1407030 1c003ac6 00008067 jalr x0, x1, 0 x1:1c003af6 +76463789ns 1407032 1c003af6 00140413 addi x8, x8, 1 x8=1c0088f3 x8:1c0088f2 +76463809ns 1407033 1c003af8 ff4515e3 bne x10, x20, -22 x10:00000050 x20:ffffffff +76463890ns 1407037 1c003ae2 00941463 bne x8, x9, 8 x8:1c0088f3 x9:1c0088fe +76463971ns 1407041 1c003aea 00044583 lbu x11, 0(x8) x11=00000020 x8:1c0088f3 PA:1c0088f3 +76463991ns 1407042 1c003aee 01300633 add x12, x0, x19 x12=1c00b914 x19:1c00b914 +76464011ns 1407043 1c003af0 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +76464031ns 1407044 1c003af2 fafff0ef jal x1, -82 x1=1c003af6 +76464072ns 1407046 1c003aa0 00862783 lw x15, 8(x12) x15=fffffffd x12:1c00b914 PA:1c00b91c +76464112ns 1407048 1c003aa2 fff78793 addi x15, x15, -1 x15=fffffffc x15:fffffffd +76464132ns 1407049 1c003aa4 00f62423 sw x15, 8(x12) x15:fffffffc x12:1c00b914 PA:1c00b91c +76464152ns 1407050 1c003aa6 0007d963 bge x15, x0, 18 x15:fffffffc +76464173ns 1407051 1c003aaa 01862703 lw x14, 24(x12) x14=fffffc00 x12:1c00b914 PA:1c00b92c +76464213ns 1407053 1c003aac 00e7c563 blt x15, x14, 10 x15:fffffffc x14:fffffc00 +76464233ns 1407054 1c003ab0 00a00793 addi x15, x0, 10 x15=0000000a +76464253ns 1407055 1c003ab2 00f59363 bne x11, x15, 6 x11:00000020 x15:0000000a +76464314ns 1407058 1c003ab8 00062783 lw x15, 0(x12) x15=1c00babb x12:1c00b914 PA:1c00b914 +76464334ns 1407059 1c003aba 00b00533 add x10, x0, x11 x10=00000020 x11:00000020 +76464354ns 1407060 1c003abc 00178713 addi x14, x15, 1 x14=1c00babc x15:1c00babb +76464375ns 1407061 1c003ac0 00e62023 sw x14, 0(x12) x14:1c00babc x12:1c00b914 PA:1c00b914 +76464395ns 1407062 1c003ac2 00b78023 sb x11, 0(x15) x11:00000020 x15:1c00babb PA:1c00babb +76464415ns 1407063 1c003ac6 00008067 jalr x0, x1, 0 x1:1c003af6 +76464455ns 1407065 1c003af6 00140413 addi x8, x8, 1 x8=1c0088f4 x8:1c0088f3 +76464476ns 1407066 1c003af8 ff4515e3 bne x10, x20, -22 x10:00000020 x20:ffffffff +76464556ns 1407070 1c003ae2 00941463 bne x8, x9, 8 x8:1c0088f4 x9:1c0088fe +76464637ns 1407074 1c003aea 00044583 lbu x11, 0(x8) x11=00000052 x8:1c0088f4 PA:1c0088f4 +76464657ns 1407075 1c003aee 01300633 add x12, x0, x19 x12=1c00b914 x19:1c00b914 +76464677ns 1407076 1c003af0 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +76464698ns 1407077 1c003af2 fafff0ef jal x1, -82 x1=1c003af6 +76464738ns 1407079 1c003aa0 00862783 lw x15, 8(x12) x15=fffffffc x12:1c00b914 PA:1c00b91c +76464778ns 1407081 1c003aa2 fff78793 addi x15, x15, -1 x15=fffffffb x15:fffffffc +76464799ns 1407082 1c003aa4 00f62423 sw x15, 8(x12) x15:fffffffb x12:1c00b914 PA:1c00b91c +76464819ns 1407083 1c003aa6 0007d963 bge x15, x0, 18 x15:fffffffb +76464839ns 1407084 1c003aaa 01862703 lw x14, 24(x12) x14=fffffc00 x12:1c00b914 PA:1c00b92c +76464879ns 1407086 1c003aac 00e7c563 blt x15, x14, 10 x15:fffffffb x14:fffffc00 +76464900ns 1407087 1c003ab0 00a00793 addi x15, x0, 10 x15=0000000a +76464920ns 1407088 1c003ab2 00f59363 bne x11, x15, 6 x11:00000052 x15:0000000a +76464980ns 1407091 1c003ab8 00062783 lw x15, 0(x12) x15=1c00babc x12:1c00b914 PA:1c00b914 +76465001ns 1407092 1c003aba 00b00533 add x10, x0, x11 x10=00000052 x11:00000052 +76465021ns 1407093 1c003abc 00178713 addi x14, x15, 1 x14=1c00babd x15:1c00babc +76465041ns 1407094 1c003ac0 00e62023 sw x14, 0(x12) x14:1c00babd x12:1c00b914 PA:1c00b914 +76465061ns 1407095 1c003ac2 00b78023 sb x11, 0(x15) x11:00000052 x15:1c00babc PA:1c00babc +76465081ns 1407096 1c003ac6 00008067 jalr x0, x1, 0 x1:1c003af6 +76465122ns 1407098 1c003af6 00140413 addi x8, x8, 1 x8=1c0088f5 x8:1c0088f4 +76465142ns 1407099 1c003af8 ff4515e3 bne x10, x20, -22 x10:00000052 x20:ffffffff +76465223ns 1407103 1c003ae2 00941463 bne x8, x9, 8 x8:1c0088f5 x9:1c0088fe +76465303ns 1407107 1c003aea 00044583 lbu x11, 0(x8) x11=00000065 x8:1c0088f5 PA:1c0088f5 +76465324ns 1407108 1c003aee 01300633 add x12, x0, x19 x12=1c00b914 x19:1c00b914 +76465344ns 1407109 1c003af0 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +76465364ns 1407110 1c003af2 fafff0ef jal x1, -82 x1=1c003af6 +76465404ns 1407112 1c003aa0 00862783 lw x15, 8(x12) x15=fffffffb x12:1c00b914 PA:1c00b91c +76465445ns 1407114 1c003aa2 fff78793 addi x15, x15, -1 x15=fffffffa x15:fffffffb +76465465ns 1407115 1c003aa4 00f62423 sw x15, 8(x12) x15:fffffffa x12:1c00b914 PA:1c00b91c +76465485ns 1407116 1c003aa6 0007d963 bge x15, x0, 18 x15:fffffffa +76465505ns 1407117 1c003aaa 01862703 lw x14, 24(x12) x14=fffffc00 x12:1c00b914 PA:1c00b92c +76465546ns 1407119 1c003aac 00e7c563 blt x15, x14, 10 x15:fffffffa x14:fffffc00 +76465566ns 1407120 1c003ab0 00a00793 addi x15, x0, 10 x15=0000000a +76465586ns 1407121 1c003ab2 00f59363 bne x11, x15, 6 x11:00000065 x15:0000000a +76465647ns 1407124 1c003ab8 00062783 lw x15, 0(x12) x15=1c00babd x12:1c00b914 PA:1c00b914 +76465667ns 1407125 1c003aba 00b00533 add x10, x0, x11 x10=00000065 x11:00000065 +76465687ns 1407126 1c003abc 00178713 addi x14, x15, 1 x14=1c00babe x15:1c00babd +76465707ns 1407127 1c003ac0 00e62023 sw x14, 0(x12) x14:1c00babe x12:1c00b914 PA:1c00b914 +76465727ns 1407128 1c003ac2 00b78023 sb x11, 0(x15) x11:00000065 x15:1c00babd PA:1c00babd +76465748ns 1407129 1c003ac6 00008067 jalr x0, x1, 0 x1:1c003af6 +76465788ns 1407131 1c003af6 00140413 addi x8, x8, 1 x8=1c0088f6 x8:1c0088f5 +76465808ns 1407132 1c003af8 ff4515e3 bne x10, x20, -22 x10:00000065 x20:ffffffff +76465889ns 1407136 1c003ae2 00941463 bne x8, x9, 8 x8:1c0088f6 x9:1c0088fe +76465970ns 1407140 1c003aea 00044583 lbu x11, 0(x8) x11=00000067 x8:1c0088f6 PA:1c0088f6 +76465990ns 1407141 1c003aee 01300633 add x12, x0, x19 x12=1c00b914 x19:1c00b914 +76466010ns 1407142 1c003af0 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +76466030ns 1407143 1c003af2 fafff0ef jal x1, -82 x1=1c003af6 +76466071ns 1407145 1c003aa0 00862783 lw x15, 8(x12) x15=fffffffa x12:1c00b914 PA:1c00b91c +76466111ns 1407147 1c003aa2 fff78793 addi x15, x15, -1 x15=fffffff9 x15:fffffffa +76466131ns 1407148 1c003aa4 00f62423 sw x15, 8(x12) x15:fffffff9 x12:1c00b914 PA:1c00b91c +76466151ns 1407149 1c003aa6 0007d963 bge x15, x0, 18 x15:fffffff9 +76466172ns 1407150 1c003aaa 01862703 lw x14, 24(x12) x14=fffffc00 x12:1c00b914 PA:1c00b92c +76466212ns 1407152 1c003aac 00e7c563 blt x15, x14, 10 x15:fffffff9 x14:fffffc00 +76466232ns 1407153 1c003ab0 00a00793 addi x15, x0, 10 x15=0000000a +76466252ns 1407154 1c003ab2 00f59363 bne x11, x15, 6 x11:00000067 x15:0000000a +76466313ns 1407157 1c003ab8 00062783 lw x15, 0(x12) x15=1c00babe x12:1c00b914 PA:1c00b914 +76466333ns 1407158 1c003aba 00b00533 add x10, x0, x11 x10=00000067 x11:00000067 +76466353ns 1407159 1c003abc 00178713 addi x14, x15, 1 x14=1c00babf x15:1c00babe +76466374ns 1407160 1c003ac0 00e62023 sw x14, 0(x12) x14:1c00babf x12:1c00b914 PA:1c00b914 +76466394ns 1407161 1c003ac2 00b78023 sb x11, 0(x15) x11:00000067 x15:1c00babe PA:1c00babe +76466414ns 1407162 1c003ac6 00008067 jalr x0, x1, 0 x1:1c003af6 +76466454ns 1407164 1c003af6 00140413 addi x8, x8, 1 x8=1c0088f7 x8:1c0088f6 +76466475ns 1407165 1c003af8 ff4515e3 bne x10, x20, -22 x10:00000067 x20:ffffffff +76466555ns 1407169 1c003ae2 00941463 bne x8, x9, 8 x8:1c0088f7 x9:1c0088fe +76466636ns 1407173 1c003aea 00044583 lbu x11, 0(x8) x11=00000069 x8:1c0088f7 PA:1c0088f7 +76466656ns 1407174 1c003aee 01300633 add x12, x0, x19 x12=1c00b914 x19:1c00b914 +76466676ns 1407175 1c003af0 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +76466697ns 1407176 1c003af2 fafff0ef jal x1, -82 x1=1c003af6 +76466737ns 1407178 1c003aa0 00862783 lw x15, 8(x12) x15=fffffff9 x12:1c00b914 PA:1c00b91c +76466777ns 1407180 1c003aa2 fff78793 addi x15, x15, -1 x15=fffffff8 x15:fffffff9 +76466798ns 1407181 1c003aa4 00f62423 sw x15, 8(x12) x15:fffffff8 x12:1c00b914 PA:1c00b91c +76466818ns 1407182 1c003aa6 0007d963 bge x15, x0, 18 x15:fffffff8 +76466838ns 1407183 1c003aaa 01862703 lw x14, 24(x12) x14=fffffc00 x12:1c00b914 PA:1c00b92c +76466878ns 1407185 1c003aac 00e7c563 blt x15, x14, 10 x15:fffffff8 x14:fffffc00 +76466899ns 1407186 1c003ab0 00a00793 addi x15, x0, 10 x15=0000000a +76466919ns 1407187 1c003ab2 00f59363 bne x11, x15, 6 x11:00000069 x15:0000000a +76466979ns 1407190 1c003ab8 00062783 lw x15, 0(x12) x15=1c00babf x12:1c00b914 PA:1c00b914 +76467000ns 1407191 1c003aba 00b00533 add x10, x0, x11 x10=00000069 x11:00000069 +76467020ns 1407192 1c003abc 00178713 addi x14, x15, 1 x14=1c00bac0 x15:1c00babf +76467040ns 1407193 1c003ac0 00e62023 sw x14, 0(x12) x14:1c00bac0 x12:1c00b914 PA:1c00b914 +76467060ns 1407194 1c003ac2 00b78023 sb x11, 0(x15) x11:00000069 x15:1c00babf PA:1c00babf +76467080ns 1407195 1c003ac6 00008067 jalr x0, x1, 0 x1:1c003af6 +76467121ns 1407197 1c003af6 00140413 addi x8, x8, 1 x8=1c0088f8 x8:1c0088f7 +76467141ns 1407198 1c003af8 ff4515e3 bne x10, x20, -22 x10:00000069 x20:ffffffff +76467222ns 1407202 1c003ae2 00941463 bne x8, x9, 8 x8:1c0088f8 x9:1c0088fe +76467302ns 1407206 1c003aea 00044583 lbu x11, 0(x8) x11=00000073 x8:1c0088f8 PA:1c0088f8 +76467323ns 1407207 1c003aee 01300633 add x12, x0, x19 x12=1c00b914 x19:1c00b914 +76467343ns 1407208 1c003af0 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +76467363ns 1407209 1c003af2 fafff0ef jal x1, -82 x1=1c003af6 +76467403ns 1407211 1c003aa0 00862783 lw x15, 8(x12) x15=fffffff8 x12:1c00b914 PA:1c00b91c +76467444ns 1407213 1c003aa2 fff78793 addi x15, x15, -1 x15=fffffff7 x15:fffffff8 +76467464ns 1407214 1c003aa4 00f62423 sw x15, 8(x12) x15:fffffff7 x12:1c00b914 PA:1c00b91c +76467484ns 1407215 1c003aa6 0007d963 bge x15, x0, 18 x15:fffffff7 +76467504ns 1407216 1c003aaa 01862703 lw x14, 24(x12) x14=fffffc00 x12:1c00b914 PA:1c00b92c +76467545ns 1407218 1c003aac 00e7c563 blt x15, x14, 10 x15:fffffff7 x14:fffffc00 +76467565ns 1407219 1c003ab0 00a00793 addi x15, x0, 10 x15=0000000a +76467585ns 1407220 1c003ab2 00f59363 bne x11, x15, 6 x11:00000073 x15:0000000a +76467646ns 1407223 1c003ab8 00062783 lw x15, 0(x12) x15=1c00bac0 x12:1c00b914 PA:1c00b914 +76467666ns 1407224 1c003aba 00b00533 add x10, x0, x11 x10=00000073 x11:00000073 +76467686ns 1407225 1c003abc 00178713 addi x14, x15, 1 x14=1c00bac1 x15:1c00bac0 +76467706ns 1407226 1c003ac0 00e62023 sw x14, 0(x12) x14:1c00bac1 x12:1c00b914 PA:1c00b914 +76467726ns 1407227 1c003ac2 00b78023 sb x11, 0(x15) x11:00000073 x15:1c00bac0 PA:1c00bac0 +76467747ns 1407228 1c003ac6 00008067 jalr x0, x1, 0 x1:1c003af6 +76467787ns 1407230 1c003af6 00140413 addi x8, x8, 1 x8=1c0088f9 x8:1c0088f8 +76467807ns 1407231 1c003af8 ff4515e3 bne x10, x20, -22 x10:00000073 x20:ffffffff +76467888ns 1407235 1c003ae2 00941463 bne x8, x9, 8 x8:1c0088f9 x9:1c0088fe +76467969ns 1407239 1c003aea 00044583 lbu x11, 0(x8) x11=00000074 x8:1c0088f9 PA:1c0088f9 +76467989ns 1407240 1c003aee 01300633 add x12, x0, x19 x12=1c00b914 x19:1c00b914 +76468009ns 1407241 1c003af0 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +76468029ns 1407242 1c003af2 fafff0ef jal x1, -82 x1=1c003af6 +76468070ns 1407244 1c003aa0 00862783 lw x15, 8(x12) x15=fffffff7 x12:1c00b914 PA:1c00b91c +76468110ns 1407246 1c003aa2 fff78793 addi x15, x15, -1 x15=fffffff6 x15:fffffff7 +76468130ns 1407247 1c003aa4 00f62423 sw x15, 8(x12) x15:fffffff6 x12:1c00b914 PA:1c00b91c +76468150ns 1407248 1c003aa6 0007d963 bge x15, x0, 18 x15:fffffff6 +76468171ns 1407249 1c003aaa 01862703 lw x14, 24(x12) x14=fffffc00 x12:1c00b914 PA:1c00b92c +76468211ns 1407251 1c003aac 00e7c563 blt x15, x14, 10 x15:fffffff6 x14:fffffc00 +76468231ns 1407252 1c003ab0 00a00793 addi x15, x0, 10 x15=0000000a +76468251ns 1407253 1c003ab2 00f59363 bne x11, x15, 6 x11:00000074 x15:0000000a +76468312ns 1407256 1c003ab8 00062783 lw x15, 0(x12) x15=1c00bac1 x12:1c00b914 PA:1c00b914 +76468332ns 1407257 1c003aba 00b00533 add x10, x0, x11 x10=00000074 x11:00000074 +76468352ns 1407258 1c003abc 00178713 addi x14, x15, 1 x14=1c00bac2 x15:1c00bac1 +76468373ns 1407259 1c003ac0 00e62023 sw x14, 0(x12) x14:1c00bac2 x12:1c00b914 PA:1c00b914 +76468393ns 1407260 1c003ac2 00b78023 sb x11, 0(x15) x11:00000074 x15:1c00bac1 PA:1c00bac1 +76468413ns 1407261 1c003ac6 00008067 jalr x0, x1, 0 x1:1c003af6 +76468453ns 1407263 1c003af6 00140413 addi x8, x8, 1 x8=1c0088fa x8:1c0088f9 +76468474ns 1407264 1c003af8 ff4515e3 bne x10, x20, -22 x10:00000074 x20:ffffffff +76468554ns 1407268 1c003ae2 00941463 bne x8, x9, 8 x8:1c0088fa x9:1c0088fe +76468635ns 1407272 1c003aea 00044583 lbu x11, 0(x8) x11=00000065 x8:1c0088fa PA:1c0088fa +76468655ns 1407273 1c003aee 01300633 add x12, x0, x19 x12=1c00b914 x19:1c00b914 +76468675ns 1407274 1c003af0 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +76468696ns 1407275 1c003af2 fafff0ef jal x1, -82 x1=1c003af6 +76468736ns 1407277 1c003aa0 00862783 lw x15, 8(x12) x15=fffffff6 x12:1c00b914 PA:1c00b91c +76468776ns 1407279 1c003aa2 fff78793 addi x15, x15, -1 x15=fffffff5 x15:fffffff6 +76468797ns 1407280 1c003aa4 00f62423 sw x15, 8(x12) x15:fffffff5 x12:1c00b914 PA:1c00b91c +76468817ns 1407281 1c003aa6 0007d963 bge x15, x0, 18 x15:fffffff5 +76468837ns 1407282 1c003aaa 01862703 lw x14, 24(x12) x14=fffffc00 x12:1c00b914 PA:1c00b92c +76468877ns 1407284 1c003aac 00e7c563 blt x15, x14, 10 x15:fffffff5 x14:fffffc00 +76468898ns 1407285 1c003ab0 00a00793 addi x15, x0, 10 x15=0000000a +76468918ns 1407286 1c003ab2 00f59363 bne x11, x15, 6 x11:00000065 x15:0000000a +76468978ns 1407289 1c003ab8 00062783 lw x15, 0(x12) x15=1c00bac2 x12:1c00b914 PA:1c00b914 +76468999ns 1407290 1c003aba 00b00533 add x10, x0, x11 x10=00000065 x11:00000065 +76469019ns 1407291 1c003abc 00178713 addi x14, x15, 1 x14=1c00bac3 x15:1c00bac2 +76469039ns 1407292 1c003ac0 00e62023 sw x14, 0(x12) x14:1c00bac3 x12:1c00b914 PA:1c00b914 +76469059ns 1407293 1c003ac2 00b78023 sb x11, 0(x15) x11:00000065 x15:1c00bac2 PA:1c00bac2 +76469079ns 1407294 1c003ac6 00008067 jalr x0, x1, 0 x1:1c003af6 +76469120ns 1407296 1c003af6 00140413 addi x8, x8, 1 x8=1c0088fb x8:1c0088fa +76469140ns 1407297 1c003af8 ff4515e3 bne x10, x20, -22 x10:00000065 x20:ffffffff +76469221ns 1407301 1c003ae2 00941463 bne x8, x9, 8 x8:1c0088fb x9:1c0088fe +76469301ns 1407305 1c003aea 00044583 lbu x11, 0(x8) x11=00000072 x8:1c0088fb PA:1c0088fb +76469322ns 1407306 1c003aee 01300633 add x12, x0, x19 x12=1c00b914 x19:1c00b914 +76469342ns 1407307 1c003af0 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +76469362ns 1407308 1c003af2 fafff0ef jal x1, -82 x1=1c003af6 +76469402ns 1407310 1c003aa0 00862783 lw x15, 8(x12) x15=fffffff5 x12:1c00b914 PA:1c00b91c +76469443ns 1407312 1c003aa2 fff78793 addi x15, x15, -1 x15=fffffff4 x15:fffffff5 +76469463ns 1407313 1c003aa4 00f62423 sw x15, 8(x12) x15:fffffff4 x12:1c00b914 PA:1c00b91c +76469483ns 1407314 1c003aa6 0007d963 bge x15, x0, 18 x15:fffffff4 +76469503ns 1407315 1c003aaa 01862703 lw x14, 24(x12) x14=fffffc00 x12:1c00b914 PA:1c00b92c +76469544ns 1407317 1c003aac 00e7c563 blt x15, x14, 10 x15:fffffff4 x14:fffffc00 +76469564ns 1407318 1c003ab0 00a00793 addi x15, x0, 10 x15=0000000a +76469584ns 1407319 1c003ab2 00f59363 bne x11, x15, 6 x11:00000072 x15:0000000a +76469645ns 1407322 1c003ab8 00062783 lw x15, 0(x12) x15=1c00bac3 x12:1c00b914 PA:1c00b914 +76469665ns 1407323 1c003aba 00b00533 add x10, x0, x11 x10=00000072 x11:00000072 +76469685ns 1407324 1c003abc 00178713 addi x14, x15, 1 x14=1c00bac4 x15:1c00bac3 +76469705ns 1407325 1c003ac0 00e62023 sw x14, 0(x12) x14:1c00bac4 x12:1c00b914 PA:1c00b914 +76469725ns 1407326 1c003ac2 00b78023 sb x11, 0(x15) x11:00000072 x15:1c00bac3 PA:1c00bac3 +76469746ns 1407327 1c003ac6 00008067 jalr x0, x1, 0 x1:1c003af6 +76469786ns 1407329 1c003af6 00140413 addi x8, x8, 1 x8=1c0088fc x8:1c0088fb +76469806ns 1407330 1c003af8 ff4515e3 bne x10, x20, -22 x10:00000072 x20:ffffffff +76469887ns 1407334 1c003ae2 00941463 bne x8, x9, 8 x8:1c0088fc x9:1c0088fe +76469968ns 1407338 1c003aea 00044583 lbu x11, 0(x8) x11=0000003a x8:1c0088fc PA:1c0088fc +76469988ns 1407339 1c003aee 01300633 add x12, x0, x19 x12=1c00b914 x19:1c00b914 +76470008ns 1407340 1c003af0 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +76470028ns 1407341 1c003af2 fafff0ef jal x1, -82 x1=1c003af6 +76470069ns 1407343 1c003aa0 00862783 lw x15, 8(x12) x15=fffffff4 x12:1c00b914 PA:1c00b91c +76470109ns 1407345 1c003aa2 fff78793 addi x15, x15, -1 x15=fffffff3 x15:fffffff4 +76470129ns 1407346 1c003aa4 00f62423 sw x15, 8(x12) x15:fffffff3 x12:1c00b914 PA:1c00b91c +76470149ns 1407347 1c003aa6 0007d963 bge x15, x0, 18 x15:fffffff3 +76470170ns 1407348 1c003aaa 01862703 lw x14, 24(x12) x14=fffffc00 x12:1c00b914 PA:1c00b92c +76470210ns 1407350 1c003aac 00e7c563 blt x15, x14, 10 x15:fffffff3 x14:fffffc00 +76470230ns 1407351 1c003ab0 00a00793 addi x15, x0, 10 x15=0000000a +76470250ns 1407352 1c003ab2 00f59363 bne x11, x15, 6 x11:0000003a x15:0000000a +76470311ns 1407355 1c003ab8 00062783 lw x15, 0(x12) x15=1c00bac4 x12:1c00b914 PA:1c00b914 +76470331ns 1407356 1c003aba 00b00533 add x10, x0, x11 x10=0000003a x11:0000003a +76470351ns 1407357 1c003abc 00178713 addi x14, x15, 1 x14=1c00bac5 x15:1c00bac4 +76470372ns 1407358 1c003ac0 00e62023 sw x14, 0(x12) x14:1c00bac5 x12:1c00b914 PA:1c00b914 +76470392ns 1407359 1c003ac2 00b78023 sb x11, 0(x15) x11:0000003a x15:1c00bac4 PA:1c00bac4 +76470412ns 1407360 1c003ac6 00008067 jalr x0, x1, 0 x1:1c003af6 +76470452ns 1407362 1c003af6 00140413 addi x8, x8, 1 x8=1c0088fd x8:1c0088fc +76470473ns 1407363 1c003af8 ff4515e3 bne x10, x20, -22 x10:0000003a x20:ffffffff +76470553ns 1407367 1c003ae2 00941463 bne x8, x9, 8 x8:1c0088fd x9:1c0088fe +76470634ns 1407371 1c003aea 00044583 lbu x11, 0(x8) x11=00000020 x8:1c0088fd PA:1c0088fd +76470654ns 1407372 1c003aee 01300633 add x12, x0, x19 x12=1c00b914 x19:1c00b914 +76470674ns 1407373 1c003af0 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +76470695ns 1407374 1c003af2 fafff0ef jal x1, -82 x1=1c003af6 +76470735ns 1407376 1c003aa0 00862783 lw x15, 8(x12) x15=fffffff3 x12:1c00b914 PA:1c00b91c +76470775ns 1407378 1c003aa2 fff78793 addi x15, x15, -1 x15=fffffff2 x15:fffffff3 +76470796ns 1407379 1c003aa4 00f62423 sw x15, 8(x12) x15:fffffff2 x12:1c00b914 PA:1c00b91c +76470816ns 1407380 1c003aa6 0007d963 bge x15, x0, 18 x15:fffffff2 +76470836ns 1407381 1c003aaa 01862703 lw x14, 24(x12) x14=fffffc00 x12:1c00b914 PA:1c00b92c +76470876ns 1407383 1c003aac 00e7c563 blt x15, x14, 10 x15:fffffff2 x14:fffffc00 +76470897ns 1407384 1c003ab0 00a00793 addi x15, x0, 10 x15=0000000a +76470917ns 1407385 1c003ab2 00f59363 bne x11, x15, 6 x11:00000020 x15:0000000a +76470977ns 1407388 1c003ab8 00062783 lw x15, 0(x12) x15=1c00bac5 x12:1c00b914 PA:1c00b914 +76470998ns 1407389 1c003aba 00b00533 add x10, x0, x11 x10=00000020 x11:00000020 +76471018ns 1407390 1c003abc 00178713 addi x14, x15, 1 x14=1c00bac6 x15:1c00bac5 +76471038ns 1407391 1c003ac0 00e62023 sw x14, 0(x12) x14:1c00bac6 x12:1c00b914 PA:1c00b914 +76471058ns 1407392 1c003ac2 00b78023 sb x11, 0(x15) x11:00000020 x15:1c00bac5 PA:1c00bac5 +76471078ns 1407393 1c003ac6 00008067 jalr x0, x1, 0 x1:1c003af6 +76471119ns 1407395 1c003af6 00140413 addi x8, x8, 1 x8=1c0088fe x8:1c0088fd +76471139ns 1407396 1c003af8 ff4515e3 bne x10, x20, -22 x10:00000020 x20:ffffffff +76471220ns 1407400 1c003ae2 00941463 bne x8, x9, 8 x8:1c0088fe x9:1c0088fe +76471240ns 1407401 1c003ae6 00000513 addi x10, x0, 0 x10=00000000 +76471260ns 1407402 1c003ae8 0140006f jal x0, 20 +76471300ns 1407404 1c003afc 01c12083 lw x1, 28(x2) x1=1c003ba6 x2:1c009aa0 PA:1c009abc +76471321ns 1407405 1c003afe 01812403 lw x8, 24(x2) x8=1c0088fe x2:1c009aa0 PA:1c009ab8 +76471341ns 1407406 1c003b00 01412483 lw x9, 20(x2) x9=1c00b914 x2:1c009aa0 PA:1c009ab4 +76471361ns 1407407 1c003b02 01012903 lw x18, 16(x2) x18=1c0088f0 x2:1c009aa0 PA:1c009ab0 +76471381ns 1407408 1c003b04 00c12983 lw x19, 12(x2) x19=1c009e10 x2:1c009aa0 PA:1c009aac +76471401ns 1407409 1c003b06 00812a03 lw x20, 8(x2) x20=1c00918c x2:1c009aa0 PA:1c009aa8 +76471422ns 1407410 1c003b08 02010113 addi x2, x2, 32 x2=1c009ac0 x2:1c009aa0 +76471442ns 1407411 1c003b0a 00008067 jalr x0, x1, 0 x1:1c003ba6 +76471482ns 1407413 1c003ba6 fff00793 addi x15, x0, -1 x15=ffffffff +76471502ns 1407414 1c003ba8 1ef50563 beq x10, x15, 490 x10:00000000 x15:ffffffff +76471523ns 1407415 1c003bac 02412783 lw x15, 36(x2) x15=00000000 x2:1c009ac0 PA:1c009ae4 +76471563ns 1407417 1c003bae 01b787b3 add x15, x15, x27 x15=0000000e x15:00000000 x27:0000000e +76471583ns 1407418 1c003bb0 02f12223 sw x15, 36(x2) x15:0000000e x2:1c009ac0 PA:1c009ae4 +76471603ns 1407419 1c003bb2 00044783 lbu x15, 0(x8) x15=00000025 x8:1c0088fe PA:1c0088fe +76471644ns 1407421 1c003bb6 1c078e63 beq x15, x0, 476 x15:00000025 +76471664ns 1407422 1c003bba fff00793 addi x15, x0, -1 x15=ffffffff +76471684ns 1407423 1c003bbc 00140913 addi x18, x8, 1 x18=1c0088ff x8:1c0088fe +76471704ns 1407424 1c003bc0 00012823 sw x0, 16(x2) x2:1c009ac0 PA:1c009ad0 +76471724ns 1407425 1c003bc2 00012e23 sw x0, 28(x2) x2:1c009ac0 PA:1c009adc +76471745ns 1407426 1c003bc4 00f12a23 sw x15, 20(x2) x15:ffffffff x2:1c009ac0 PA:1c009ad4 +76471765ns 1407427 1c003bc6 00012c23 sw x0, 24(x2) x2:1c009ac0 PA:1c009ad8 +76471785ns 1407428 1c003bc8 040109a3 sb x0, 83(x2) x2:1c009ac0 PA:1c009b13 +76471805ns 1407429 1c003bcc 06012423 sw x0, 104(x2) x2:1c009ac0 PA:1c009b28 +76471825ns 1407430 1c003bce 00100d93 addi x27, x0, 1 x27=00000001 +76471846ns 1407431 1c003bd0 00094583 lbu x11, 0(x18) x11=00000064 x18:1c0088ff PA:1c0088ff +76471866ns 1407432 1c003bd4 00500613 addi x12, x0, 5 x12=00000005 +76471886ns 1407433 1c003bd6 9e0b0513 addi x10, x22, -1568 x10=1c0089e0 x22:1c009000 +76471906ns 1407434 1c003bda 4c1000ef jal x1, 3264 x1=1c003bde +76471967ns 1407437 1c00489a 0ff5f593 andi x11, x11, 255 x11=00000064 x11:00000064 +76471987ns 1407438 1c00489e 00a60633 add x12, x12, x10 x12=1c0089e5 x12:00000005 x10:1c0089e0 +76472007ns 1407439 1c0048a0 00c51463 bne x10, x12, 8 x10:1c0089e0 x12:1c0089e5 +76472068ns 1407442 1c0048a8 00054783 lbu x15, 0(x10) x15=00000023 x10:1c0089e0 PA:1c0089e0 +76472108ns 1407444 1c0048ac feb78de3 beq x15, x11, -6 x15:00000023 x11:00000064 +76472128ns 1407445 1c0048b0 00150513 addi x10, x10, 1 x10=1c0089e1 x10:1c0089e0 +76472148ns 1407446 1c0048b2 fefff06f jal x0, -18 +76472189ns 1407448 1c0048a0 00c51463 bne x10, x12, 8 x10:1c0089e1 x12:1c0089e5 +76472249ns 1407451 1c0048a8 00054783 lbu x15, 0(x10) x15=0000002d x10:1c0089e1 PA:1c0089e1 +76472290ns 1407453 1c0048ac feb78de3 beq x15, x11, -6 x15:0000002d x11:00000064 +76472310ns 1407454 1c0048b0 00150513 addi x10, x10, 1 x10=1c0089e2 x10:1c0089e1 +76472330ns 1407455 1c0048b2 fefff06f jal x0, -18 +76472371ns 1407457 1c0048a0 00c51463 bne x10, x12, 8 x10:1c0089e2 x12:1c0089e5 +76472431ns 1407460 1c0048a8 00054783 lbu x15, 0(x10) x15=00000030 x10:1c0089e2 PA:1c0089e2 +76472472ns 1407462 1c0048ac feb78de3 beq x15, x11, -6 x15:00000030 x11:00000064 +76472492ns 1407463 1c0048b0 00150513 addi x10, x10, 1 x10=1c0089e3 x10:1c0089e2 +76472512ns 1407464 1c0048b2 fefff06f jal x0, -18 +76472552ns 1407466 1c0048a0 00c51463 bne x10, x12, 8 x10:1c0089e3 x12:1c0089e5 +76472613ns 1407469 1c0048a8 00054783 lbu x15, 0(x10) x15=0000002b x10:1c0089e3 PA:1c0089e3 +76472653ns 1407471 1c0048ac feb78de3 beq x15, x11, -6 x15:0000002b x11:00000064 +76472673ns 1407472 1c0048b0 00150513 addi x10, x10, 1 x10=1c0089e4 x10:1c0089e3 +76472694ns 1407473 1c0048b2 fefff06f jal x0, -18 +76472734ns 1407475 1c0048a0 00c51463 bne x10, x12, 8 x10:1c0089e4 x12:1c0089e5 +76472795ns 1407478 1c0048a8 00054783 lbu x15, 0(x10) x15=00000020 x10:1c0089e4 PA:1c0089e4 +76472835ns 1407480 1c0048ac feb78de3 beq x15, x11, -6 x15:00000020 x11:00000064 +76472855ns 1407481 1c0048b0 00150513 addi x10, x10, 1 x10=1c0089e5 x10:1c0089e4 +76472875ns 1407482 1c0048b2 fefff06f jal x0, -18 +76472916ns 1407484 1c0048a0 00c51463 bne x10, x12, 8 x10:1c0089e5 x12:1c0089e5 +76472936ns 1407485 1c0048a4 00000513 addi x10, x0, 0 x10=00000000 +76472956ns 1407486 1c0048a6 00008067 jalr x0, x1, 0 x1:1c003bde +76472997ns 1407488 1c003bde 01012783 lw x15, 16(x2) x15=00000000 x2:1c009ac0 PA:1c009ad0 +76473017ns 1407489 1c003be0 00190413 addi x8, x18, 1 x8=1c008900 x18:1c0088ff +76473037ns 1407490 1c003be4 08051e63 bne x10, x0, 156 x10:00000000 +76473057ns 1407491 1c003be6 0107f713 andi x14, x15, 16 x14=00000000 x15:00000000 +76473077ns 1407492 1c003bea 00070563 beq x14, x0, 10 x14:00000000 +76473138ns 1407495 1c003bf4 0087f713 andi x14, x15, 8 x14=00000000 x15:00000000 +76473158ns 1407496 1c003bf8 00070563 beq x14, x0, 10 x14:00000000 +76473239ns 1407500 1c003c02 00094683 lbu x13, 0(x18) x13=00000064 x18:1c0088ff PA:1c0088ff +76473259ns 1407501 1c003c06 02a00713 addi x14, x0, 42 x14=0000002a +76473279ns 1407502 1c003c0a 08e68463 beq x13, x14, 136 x13:00000064 x14:0000002a +76473299ns 1407503 1c003c0e 01c12783 lw x15, 28(x2) x15=00000000 x2:1c009ac0 PA:1c009adc +76473320ns 1407504 1c003c10 01200433 add x8, x0, x18 x8=1c0088ff x18:1c0088ff +76473340ns 1407505 1c003c12 00000693 addi x13, x0, 0 x13=00000000 +76473360ns 1407506 1c003c14 00900613 addi x12, x0, 9 x12=00000009 +76473380ns 1407507 1c003c16 00a00513 addi x10, x0, 10 x10=0000000a +76473400ns 1407508 1c003c18 00044703 lbu x14, 0(x8) x14=00000064 x8:1c0088ff PA:1c0088ff +76473421ns 1407509 1c003c1c 00140593 addi x11, x8, 1 x11=1c008900 x8:1c0088ff +76473441ns 1407510 1c003c20 fd070713 addi x14, x14, -48 x14=00000034 x14:00000064 +76473461ns 1407511 1c003c24 0ae67c63 bgeu x12, x14, 184 x12:00000009 x14:00000034 +76473481ns 1407512 1c003c28 06068d63 beq x13, x0, 122 x13:00000000 +76473562ns 1407516 1c003ca2 00044703 lbu x14, 0(x8) x14=00000064 x8:1c0088ff PA:1c0088ff +76473582ns 1407517 1c003ca6 02e00793 addi x15, x0, 46 x15=0000002e +76473602ns 1407518 1c003caa 06f71063 bne x14, x15, 96 x14:00000064 x15:0000002e +76473683ns 1407522 1c003d0a 00044583 lbu x11, 0(x8) x11=00000064 x8:1c0088ff PA:1c0088ff +76473703ns 1407523 1c003d0e 00300613 addi x12, x0, 3 x12=00000003 +76473723ns 1407524 1c003d10 9e8b8513 addi x10, x23, -1560 x10=1c0089e8 x23:1c009000 +76473744ns 1407525 1c003d14 387000ef jal x1, 2950 x1=1c003d18 +76473804ns 1407528 1c00489a 0ff5f593 andi x11, x11, 255 x11=00000064 x11:00000064 +76473824ns 1407529 1c00489e 00a60633 add x12, x12, x10 x12=1c0089eb x12:00000003 x10:1c0089e8 +76473845ns 1407530 1c0048a0 00c51463 bne x10, x12, 8 x10:1c0089e8 x12:1c0089eb +76473905ns 1407533 1c0048a8 00054783 lbu x15, 0(x10) x15=00000068 x10:1c0089e8 PA:1c0089e8 +76473946ns 1407535 1c0048ac feb78de3 beq x15, x11, -6 x15:00000068 x11:00000064 +76473966ns 1407536 1c0048b0 00150513 addi x10, x10, 1 x10=1c0089e9 x10:1c0089e8 +76473986ns 1407537 1c0048b2 fefff06f jal x0, -18 +76474026ns 1407539 1c0048a0 00c51463 bne x10, x12, 8 x10:1c0089e9 x12:1c0089eb +76474087ns 1407542 1c0048a8 00054783 lbu x15, 0(x10) x15=0000006c x10:1c0089e9 PA:1c0089e9 +76474127ns 1407544 1c0048ac feb78de3 beq x15, x11, -6 x15:0000006c x11:00000064 +76474147ns 1407545 1c0048b0 00150513 addi x10, x10, 1 x10=1c0089ea x10:1c0089e9 +76474168ns 1407546 1c0048b2 fefff06f jal x0, -18 +76474208ns 1407548 1c0048a0 00c51463 bne x10, x12, 8 x10:1c0089ea x12:1c0089eb +76474269ns 1407551 1c0048a8 00054783 lbu x15, 0(x10) x15=0000004c x10:1c0089ea PA:1c0089ea +76474309ns 1407553 1c0048ac feb78de3 beq x15, x11, -6 x15:0000004c x11:00000064 +76474329ns 1407554 1c0048b0 00150513 addi x10, x10, 1 x10=1c0089eb x10:1c0089ea +76474349ns 1407555 1c0048b2 fefff06f jal x0, -18 +76474390ns 1407557 1c0048a0 00c51463 bne x10, x12, 8 x10:1c0089eb x12:1c0089eb +76474410ns 1407558 1c0048a4 00000513 addi x10, x0, 0 x10=00000000 +76474430ns 1407559 1c0048a6 00008067 jalr x0, x1, 0 x1:1c003d18 +76474471ns 1407561 1c003d18 00050c63 beq x10, x0, 24 x10:00000000 +76474531ns 1407564 1c003d30 00044583 lbu x11, 0(x8) x11=00000064 x8:1c0088ff PA:1c0088ff +76474551ns 1407565 1c003d34 00600613 addi x12, x0, 6 x12=00000006 +76474572ns 1407566 1c003d36 9ecd0513 addi x10, x26, -1556 x10=1c0089ec x26:1c009000 +76474592ns 1407567 1c003d3a 00140913 addi x18, x8, 1 x18=1c008900 x8:1c0088ff +76474612ns 1407568 1c003d3e 02b10423 sb x11, 40(x2) x11:00000064 x2:1c009ac0 PA:1c009ae8 +76474632ns 1407569 1c003d42 359000ef jal x1, 2904 x1=1c003d46 +76474693ns 1407572 1c00489a 0ff5f593 andi x11, x11, 255 x11=00000064 x11:00000064 +76474713ns 1407573 1c00489e 00a60633 add x12, x12, x10 x12=1c0089f2 x12:00000006 x10:1c0089ec +76474733ns 1407574 1c0048a0 00c51463 bne x10, x12, 8 x10:1c0089ec x12:1c0089f2 +76474794ns 1407577 1c0048a8 00054783 lbu x15, 0(x10) x15=00000065 x10:1c0089ec PA:1c0089ec +76474834ns 1407579 1c0048ac feb78de3 beq x15, x11, -6 x15:00000065 x11:00000064 +76474854ns 1407580 1c0048b0 00150513 addi x10, x10, 1 x10=1c0089ed x10:1c0089ec +76474874ns 1407581 1c0048b2 fefff06f jal x0, -18 +76474915ns 1407583 1c0048a0 00c51463 bne x10, x12, 8 x10:1c0089ed x12:1c0089f2 +76474975ns 1407586 1c0048a8 00054783 lbu x15, 0(x10) x15=00000066 x10:1c0089ed PA:1c0089ed +76475016ns 1407588 1c0048ac feb78de3 beq x15, x11, -6 x15:00000066 x11:00000064 +76475036ns 1407589 1c0048b0 00150513 addi x10, x10, 1 x10=1c0089ee x10:1c0089ed +76475056ns 1407590 1c0048b2 fefff06f jal x0, -18 +76475097ns 1407592 1c0048a0 00c51463 bne x10, x12, 8 x10:1c0089ee x12:1c0089f2 +76475157ns 1407595 1c0048a8 00054783 lbu x15, 0(x10) x15=00000067 x10:1c0089ee PA:1c0089ee +76475197ns 1407597 1c0048ac feb78de3 beq x15, x11, -6 x15:00000067 x11:00000064 +76475218ns 1407598 1c0048b0 00150513 addi x10, x10, 1 x10=1c0089ef x10:1c0089ee +76475238ns 1407599 1c0048b2 fefff06f jal x0, -18 +76475278ns 1407601 1c0048a0 00c51463 bne x10, x12, 8 x10:1c0089ef x12:1c0089f2 +76475339ns 1407604 1c0048a8 00054783 lbu x15, 0(x10) x15=00000045 x10:1c0089ef PA:1c0089ef +76475379ns 1407606 1c0048ac feb78de3 beq x15, x11, -6 x15:00000045 x11:00000064 +76475399ns 1407607 1c0048b0 00150513 addi x10, x10, 1 x10=1c0089f0 x10:1c0089ef +76475420ns 1407608 1c0048b2 fefff06f jal x0, -18 +76475460ns 1407610 1c0048a0 00c51463 bne x10, x12, 8 x10:1c0089f0 x12:1c0089f2 +76475521ns 1407613 1c0048a8 00054783 lbu x15, 0(x10) x15=00000046 x10:1c0089f0 PA:1c0089f0 +76475561ns 1407615 1c0048ac feb78de3 beq x15, x11, -6 x15:00000046 x11:00000064 +76475581ns 1407616 1c0048b0 00150513 addi x10, x10, 1 x10=1c0089f1 x10:1c0089f0 +76475601ns 1407617 1c0048b2 fefff06f jal x0, -18 +76475642ns 1407619 1c0048a0 00c51463 bne x10, x12, 8 x10:1c0089f1 x12:1c0089f2 +76475702ns 1407622 1c0048a8 00054783 lbu x15, 0(x10) x15=00000047 x10:1c0089f1 PA:1c0089f1 +76475743ns 1407624 1c0048ac feb78de3 beq x15, x11, -6 x15:00000047 x11:00000064 +76475763ns 1407625 1c0048b0 00150513 addi x10, x10, 1 x10=1c0089f2 x10:1c0089f1 +76475783ns 1407626 1c0048b2 fefff06f jal x0, -18 +76475823ns 1407628 1c0048a0 00c51463 bne x10, x12, 8 x10:1c0089f2 x12:1c0089f2 +76475844ns 1407629 1c0048a4 00000513 addi x10, x0, 0 x10=00000000 +76475864ns 1407630 1c0048a6 00008067 jalr x0, x1, 0 x1:1c003d46 +76475904ns 1407632 1c003d46 04050e63 beq x10, x0, 92 x10:00000000 +76475965ns 1407635 1c003da2 00c10713 addi x14, x2, 12 x14=1c009acc x2:1c009ac0 +76475985ns 1407636 1c003da4 ac8c0693 addi x13, x24, -1336 x13=1c003ac8 x24:1c004000 +76476005ns 1407637 1c003da8 00900633 add x12, x0, x9 x12=1c00b914 x9:1c00b914 +76476025ns 1407638 1c003daa 01010593 addi x11, x2, 16 x11=1c009ad0 x2:1c009ac0 +76476046ns 1407639 1c003dac 01300533 add x10, x0, x19 x10=1c009e10 x19:1c009e10 +76476066ns 1407640 1c003dae 413000ef jal x1, 3090 x1=1c003db2 +76476106ns 1407642 1c0049c0 fd010113 addi x2, x2, -48 x2=1c009a90 x2:1c009ac0 +76476126ns 1407643 1c0049c2 02812423 sw x8, 40(x2) x8:1c0088ff x2:1c009a90 PA:1c009ab8 +76476147ns 1407644 1c0049c4 02912223 sw x9, 36(x2) x9:1c00b914 x2:1c009a90 PA:1c009ab4 +76476167ns 1407645 1c0049c6 03212023 sw x18, 32(x2) x18:1c008900 x2:1c009a90 PA:1c009ab0 +76476187ns 1407646 1c0049c8 01312e23 sw x19, 28(x2) x19:1c009e10 x2:1c009a90 PA:1c009aac +76476207ns 1407647 1c0049ca 02112623 sw x1, 44(x2) x1:1c003db2 x2:1c009a90 PA:1c009abc +76476227ns 1407648 1c0049cc 01412c23 sw x20, 24(x2) x20:1c00918c x2:1c009a90 PA:1c009aa8 +76476247ns 1407649 1c0049ce 01512a23 sw x21, 20(x2) x21:00000000 x2:1c009a90 PA:1c009aa4 +76476268ns 1407650 1c0049d0 01612823 sw x22, 16(x2) x22:1c009000 x2:1c009a90 PA:1c009aa0 +76476288ns 1407651 1c0049d2 0185c883 lbu x17, 24(x11) x17=00000064 x11:1c009ad0 PA:1c009ae8 +76476308ns 1407652 1c0049d6 07800793 addi x15, x0, 120 x15=00000078 +76476328ns 1407653 1c0049da 00a004b3 add x9, x0, x10 x9=1c009e10 x10:1c009e10 +76476348ns 1407654 1c0049dc 00b00433 add x8, x0, x11 x8=1c009ad0 x11:1c009ad0 +76476369ns 1407655 1c0049de 00c00933 add x18, x0, x12 x18=1c00b914 x12:1c00b914 +76476389ns 1407656 1c0049e0 00d009b3 add x19, x0, x13 x19=1c003ac8 x13:1c003ac8 +76476409ns 1407657 1c0049e2 0117ee63 bltu x15, x17, 28 x15:00000078 x17:00000064 +76476429ns 1407658 1c0049e6 06200793 addi x15, x0, 98 x15=00000062 +76476449ns 1407659 1c0049ea 04358693 addi x13, x11, 67 x13=1c009b13 x11:1c009ad0 +76476470ns 1407660 1c0049ee 0117ed63 bltu x15, x17, 26 x15:00000062 x17:00000064 +76476530ns 1407663 1c004a08 f9d88793 addi x15, x17, -99 x15=00000001 x17:00000064 +76476550ns 1407664 1c004a0c 0ff7f793 andi x15, x15, 255 x15=00000001 x15:00000001 +76476571ns 1407665 1c004a10 01500613 addi x12, x0, 21 x12=00000015 +76476591ns 1407666 1c004a12 fef666e3 bltu x12, x15, -20 x12:00000015 x15:00000001 +76476611ns 1407667 1c004a16 1c009637 lui x12, 0x1c009000 x12=1c009000 +76476631ns 1407668 1c004a1a 00279793 slli x15, x15, 0x2 x15=00000004 x15:00000001 +76476651ns 1407669 1c004a1c a7c60613 addi x12, x12, -1412 x12=1c008a7c x12:1c009000 +76476671ns 1407670 1c004a20 00c787b3 add x15, x15, x12 x15=1c008a80 x15:00000004 x12:1c008a7c +76476692ns 1407671 1c004a22 0007a783 lw x15, 0(x15) x15=1c004a3c x15:1c008a80 PA:1c008a80 +76476752ns 1407674 1c004a24 00078067 jalr x0, x15, 0 x15:1c004a3c +76476793ns 1407676 1c004a3c 0005a783 lw x15, 0(x11) x15=00000000 x11:1c009ad0 PA:1c009ad0 +76476813ns 1407677 1c004a3e 00072503 lw x10, 0(x14) x10=1c009ba4 x14:1c009acc PA:1c009acc +76476833ns 1407678 1c004a40 0807f613 andi x12, x15, 128 x12=00000000 x15:00000000 +76476853ns 1407679 1c004a44 00450593 addi x11, x10, 4 x11=1c009ba8 x10:1c009ba4 +76476873ns 1407680 1c004a48 02060163 beq x12, x0, 34 x12:00000000 +76476954ns 1407684 1c004a6a 0407f613 andi x12, x15, 64 x12=00000000 x15:00000000 +76476974ns 1407685 1c004a6e 00052783 lw x15, 0(x10) x15=00000003 x10:1c009ba4 PA:1c009ba4 +76476995ns 1407686 1c004a70 00b72023 sw x11, 0(x14) x11:1c009ba8 x14:1c009acc PA:1c009acc +76477015ns 1407687 1c004a72 fc060ee3 beq x12, x0, -36 x12:00000000 +76477096ns 1407691 1c004a4e 1c009837 lui x16, 0x1c009000 x16=1c009000 +76477116ns 1407692 1c004a52 0007d863 bge x15, x0, 16 x15:00000003 +76477196ns 1407696 1c004a62 a5480813 addi x16, x16, -1452 x16=1c008a54 x16:1c009000 +76477217ns 1407697 1c004a66 00a00713 addi x14, x0, 10 x14=0000000a +76477237ns 1407698 1c004a68 0480006f jal x0, 72 +76477277ns 1407700 1c004ab0 00442603 lw x12, 4(x8) x12=ffffffff x8:1c009ad0 PA:1c009ad4 +76477318ns 1407702 1c004ab2 00c42423 sw x12, 8(x8) x12:ffffffff x8:1c009ad0 PA:1c009ad8 +76477338ns 1407703 1c004ab4 00064563 blt x12, x0, 10 x12:ffffffff +76477398ns 1407706 1c004abe 00079363 bne x15, x0, 6 x15:00000003 +76477459ns 1407709 1c004ac4 00d00ab3 add x21, x0, x13 x21=1c009b13 x13:1c009b13 +76477479ns 1407710 1c004ac6 02e7f633 remu x12, x15, x14 x12=00000003 x15:00000003 x14:0000000a +76478105ns 1407741 1c004aca fffa8a93 addi x21, x21, -1 x21=1c009b12 x21:1c009b13 +76478125ns 1407742 1c004acc 01060633 add x12, x12, x16 x12=1c008a57 x12:00000003 x16:1c008a54 +76478146ns 1407743 1c004ace 00064603 lbu x12, 0(x12) x12=00000033 x12:1c008a57 PA:1c008a57 +76478186ns 1407745 1c004ad2 00ca8023 sb x12, 0(x21) x12:00000033 x21:1c009b12 PA:1c009b12 +76478206ns 1407746 1c004ad6 00f00633 add x12, x0, x15 x12=00000003 x15:00000003 +76478226ns 1407747 1c004ad8 02e7d7b3 divu x15, x15, x14 x15=00000000 x15:00000003 x14:0000000a +76478852ns 1407778 1c004adc fee675e3 bgeu x12, x14, -22 x12:00000003 x14:0000000a +76478872ns 1407779 1c004ae0 00800793 addi x15, x0, 8 x15=00000008 +76478893ns 1407780 1c004ae2 00f71e63 bne x14, x15, 28 x14:0000000a x15:00000008 +76478973ns 1407784 1c004afe 415686b3 sub x13, x13, x21 x13=00000001 x13:1c009b13 x21:1c009b12 +76478994ns 1407785 1c004b02 00d42823 sw x13, 16(x8) x13:00000001 x8:1c009ad0 PA:1c009ae0 +76479014ns 1407786 1c004b04 01300733 add x14, x0, x19 x14=1c003ac8 x19:1c003ac8 +76479034ns 1407787 1c004b06 012006b3 add x13, x0, x18 x13=1c00b914 x18:1c00b914 +76479054ns 1407788 1c004b08 00c10613 addi x12, x2, 12 x12=1c009a9c x2:1c009a90 +76479074ns 1407789 1c004b0a 008005b3 add x11, x0, x8 x11=1c009ad0 x8:1c009ad0 +76479095ns 1407790 1c004b0c 00900533 add x10, x0, x9 x10=1c009e10 x9:1c009e10 +76479115ns 1407791 1c004b0e da7ff0ef jal x1, -602 x1=1c004b12 +76479155ns 1407793 1c0048b4 fd010113 addi x2, x2, -48 x2=1c009a60 x2:1c009a90 +76479175ns 1407794 1c0048b6 01412c23 sw x20, 24(x2) x20:1c00918c x2:1c009a60 PA:1c009a78 +76479195ns 1407795 1c0048b8 0105a783 lw x15, 16(x11) x15=00000001 x11:1c009ad0 PA:1c009ae0 +76479216ns 1407796 1c0048ba 00e00a33 add x20, x0, x14 x20=1c003ac8 x14:1c003ac8 +76479236ns 1407797 1c0048bc 0085a703 lw x14, 8(x11) x14=ffffffff x11:1c009ad0 PA:1c009ad8 +76479256ns 1407798 1c0048be 02812423 sw x8, 40(x2) x8:1c009ad0 x2:1c009a60 PA:1c009a88 +76479276ns 1407799 1c0048c0 02912223 sw x9, 36(x2) x9:1c009e10 x2:1c009a60 PA:1c009a84 +76479296ns 1407800 1c0048c2 01312e23 sw x19, 28(x2) x19:1c003ac8 x2:1c009a60 PA:1c009a7c +76479317ns 1407801 1c0048c4 01512a23 sw x21, 20(x2) x21:1c009b12 x2:1c009a60 PA:1c009a74 +76479337ns 1407802 1c0048c6 02112623 sw x1, 44(x2) x1:1c004b12 x2:1c009a60 PA:1c009a8c +76479357ns 1407803 1c0048c8 03212023 sw x18, 32(x2) x18:1c00b914 x2:1c009a60 PA:1c009a80 +76479377ns 1407804 1c0048ca 01612823 sw x22, 16(x2) x22:1c009000 x2:1c009a60 PA:1c009a70 +76479397ns 1407805 1c0048cc 01712623 sw x23, 12(x2) x23:1c009000 x2:1c009a60 PA:1c009a6c +76479418ns 1407806 1c0048ce 00a009b3 add x19, x0, x10 x19=1c009e10 x10:1c009e10 +76479438ns 1407807 1c0048d0 00b00433 add x8, x0, x11 x8=1c009ad0 x11:1c009ad0 +76479458ns 1407808 1c0048d2 00c004b3 add x9, x0, x12 x9=1c009a9c x12:1c009a9c +76479478ns 1407809 1c0048d4 00d00ab3 add x21, x0, x13 x21=1c00b914 x13:1c00b914 +76479498ns 1407810 1c0048d6 00e7d363 bge x15, x14, 6 x15:00000001 x14:ffffffff +76479559ns 1407813 1c0048dc 00f4a023 sw x15, 0(x9) x15:00000001 x9:1c009a9c PA:1c009a9c +76479579ns 1407814 1c0048de 04344703 lbu x14, 67(x8) x14=00000000 x8:1c009ad0 PA:1c009b13 +76479620ns 1407816 1c0048e2 00070363 beq x14, x0, 6 x14:00000000 +76479680ns 1407819 1c0048e8 00042783 lw x15, 0(x8) x15=00000000 x8:1c009ad0 PA:1c009ad0 +76479720ns 1407821 1c0048ea 0207f793 andi x15, x15, 32 x15=00000000 x15:00000000 +76479741ns 1407822 1c0048ee 00078463 beq x15, x0, 8 x15:00000000 +76479821ns 1407826 1c0048f6 00042903 lw x18, 0(x8) x18=00000000 x8:1c009ad0 PA:1c009ad0 +76479862ns 1407828 1c0048fa 00697913 andi x18, x18, 6 x18=00000000 x18:00000000 +76479882ns 1407829 1c0048fe 00091a63 bne x18, x0, 20 x18:00000000 +76479902ns 1407830 1c004902 01940b13 addi x22, x8, 25 x22=1c009ae9 x8:1c009ad0 +76479922ns 1407831 1c004906 fff00b93 addi x23, x0, -1 x23=ffffffff +76479943ns 1407832 1c004908 00c42783 lw x15, 12(x8) x15=00000000 x8:1c009ad0 PA:1c009adc +76479963ns 1407833 1c00490a 0004a703 lw x14, 0(x9) x14=00000001 x9:1c009a9c PA:1c009a9c +76480003ns 1407835 1c00490c 40e787b3 sub x15, x15, x14 x15=ffffffff x15:00000000 x14:00000001 +76480023ns 1407836 1c00490e 04f94c63 blt x18, x15, 88 x18:00000000 x15:ffffffff +76480044ns 1407837 1c004912 04344783 lbu x15, 67(x8) x15=00000000 x8:1c009ad0 PA:1c009b13 +76480084ns 1407839 1c004916 00f036b3 sltu x13, x0, x15 x13=00000000 x15:00000000 +76480104ns 1407840 1c00491a 00042783 lw x15, 0(x8) x15=00000000 x8:1c009ad0 PA:1c009ad0 +76480145ns 1407842 1c00491c 0207f793 andi x15, x15, 32 x15=00000000 x15:00000000 +76480165ns 1407843 1c004920 06079863 bne x15, x0, 112 x15:00000000 +76480185ns 1407844 1c004922 04340613 addi x12, x8, 67 x12=1c009b13 x8:1c009ad0 +76480205ns 1407845 1c004926 015005b3 add x11, x0, x21 x11=1c00b914 x21:1c00b914 +76480225ns 1407846 1c004928 01300533 add x10, x0, x19 x10=1c009e10 x19:1c009e10 +76480245ns 1407847 1c00492a 000a00e7 jalr x1, x20, 0 x1=1c00492c x20:1c003ac8 +76480286ns 1407849 1c003ac8 fe010113 addi x2, x2, -32 x2=1c009a40 x2:1c009a60 +76480306ns 1407850 1c003aca 00812c23 sw x8, 24(x2) x8:1c009ad0 x2:1c009a40 PA:1c009a58 +76480326ns 1407851 1c003acc 00912a23 sw x9, 20(x2) x9:1c009a9c x2:1c009a40 PA:1c009a54 +76480346ns 1407852 1c003ace 01212823 sw x18, 16(x2) x18:00000000 x2:1c009a40 PA:1c009a50 +76480367ns 1407853 1c003ad0 01312623 sw x19, 12(x2) x19:1c009e10 x2:1c009a40 PA:1c009a4c +76480387ns 1407854 1c003ad2 01412423 sw x20, 8(x2) x20:1c003ac8 x2:1c009a40 PA:1c009a48 +76480407ns 1407855 1c003ad4 00112e23 sw x1, 28(x2) x1:1c00492c x2:1c009a40 PA:1c009a5c +76480427ns 1407856 1c003ad6 00a00933 add x18, x0, x10 x18=1c009e10 x10:1c009e10 +76480447ns 1407857 1c003ad8 00b009b3 add x19, x0, x11 x19=1c00b914 x11:1c00b914 +76480468ns 1407858 1c003ada 00c00433 add x8, x0, x12 x8=1c009b13 x12:1c009b13 +76480488ns 1407859 1c003adc 00d604b3 add x9, x12, x13 x9=1c009b13 x12:1c009b13 x13:00000000 +76480508ns 1407860 1c003ae0 fff00a13 addi x20, x0, -1 x20=ffffffff +76480528ns 1407861 1c003ae2 00941463 bne x8, x9, 8 x8:1c009b13 x9:1c009b13 +76480548ns 1407862 1c003ae6 00000513 addi x10, x0, 0 x10=00000000 +76480569ns 1407863 1c003ae8 0140006f jal x0, 20 +76480609ns 1407865 1c003afc 01c12083 lw x1, 28(x2) x1=1c00492c x2:1c009a40 PA:1c009a5c +76480629ns 1407866 1c003afe 01812403 lw x8, 24(x2) x8=1c009ad0 x2:1c009a40 PA:1c009a58 +76480649ns 1407867 1c003b00 01412483 lw x9, 20(x2) x9=1c009a9c x2:1c009a40 PA:1c009a54 +76480670ns 1407868 1c003b02 01012903 lw x18, 16(x2) x18=00000000 x2:1c009a40 PA:1c009a50 +76480690ns 1407869 1c003b04 00c12983 lw x19, 12(x2) x19=1c009e10 x2:1c009a40 PA:1c009a4c +76480710ns 1407870 1c003b06 00812a03 lw x20, 8(x2) x20=1c003ac8 x2:1c009a40 PA:1c009a48 +76480730ns 1407871 1c003b08 02010113 addi x2, x2, 32 x2=1c009a60 x2:1c009a40 +76480750ns 1407872 1c003b0a 00008067 jalr x0, x1, 0 x1:1c00492c +76480791ns 1407874 1c00492c fff00793 addi x15, x0, -1 x15=ffffffff +76480811ns 1407875 1c00492e 04f50363 beq x10, x15, 70 x10:00000000 x15:ffffffff +76480831ns 1407876 1c004932 00042783 lw x15, 0(x8) x15=00000000 x8:1c009ad0 PA:1c009ad0 +76480851ns 1407877 1c004934 00400613 addi x12, x0, 4 x12=00000004 +76480871ns 1407878 1c004936 0004a703 lw x14, 0(x9) x14=00000001 x9:1c009a9c PA:1c009a9c +76480892ns 1407879 1c004938 0067f793 andi x15, x15, 6 x15=00000000 x15:00000000 +76480912ns 1407880 1c00493a 00c42683 lw x13, 12(x8) x13=00000000 x8:1c009ad0 PA:1c009adc +76480932ns 1407881 1c00493c 00000493 addi x9, x0, 0 x9=00000000 +76480952ns 1407882 1c00493e 00c79763 bne x15, x12, 14 x15:00000000 x12:00000004 +76481013ns 1407885 1c00494c 00842783 lw x15, 8(x8) x15=ffffffff x8:1c009ad0 PA:1c009ad8 +76481033ns 1407886 1c00494e 01042703 lw x14, 16(x8) x14=00000001 x8:1c009ad0 PA:1c009ae0 +76481073ns 1407888 1c004950 00f75463 bge x14, x15, 8 x14:00000001 x15:ffffffff +76481134ns 1407891 1c004958 00000913 addi x18, x0, 0 x18=00000000 +76481154ns 1407892 1c00495a 01a40413 addi x8, x8, 26 x8=1c009aea x8:1c009ad0 +76481174ns 1407893 1c00495c fff00b13 addi x22, x0, -1 x22=ffffffff +76481195ns 1407894 1c00495e 05249863 bne x9, x18, 80 x9:00000000 x18:00000000 +76481215ns 1407895 1c004962 00000513 addi x10, x0, 0 x10=00000000 +76481235ns 1407896 1c004964 0120006f jal x0, 18 +76481275ns 1407898 1c004976 02c12083 lw x1, 44(x2) x1=1c004b12 x2:1c009a60 PA:1c009a8c +76481295ns 1407899 1c004978 02812403 lw x8, 40(x2) x8=1c009ad0 x2:1c009a60 PA:1c009a88 +76481316ns 1407900 1c00497a 02412483 lw x9, 36(x2) x9=1c009e10 x2:1c009a60 PA:1c009a84 +76481336ns 1407901 1c00497c 02012903 lw x18, 32(x2) x18=1c00b914 x2:1c009a60 PA:1c009a80 +76481356ns 1407902 1c00497e 01c12983 lw x19, 28(x2) x19=1c003ac8 x2:1c009a60 PA:1c009a7c +76481376ns 1407903 1c004980 01812a03 lw x20, 24(x2) x20=1c00918c x2:1c009a60 PA:1c009a78 +76481396ns 1407904 1c004982 01412a83 lw x21, 20(x2) x21=1c009b12 x2:1c009a60 PA:1c009a74 +76481417ns 1407905 1c004984 01012b03 lw x22, 16(x2) x22=1c009000 x2:1c009a60 PA:1c009a70 +76481437ns 1407906 1c004986 00c12b83 lw x23, 12(x2) x23=1c009000 x2:1c009a60 PA:1c009a6c +76481457ns 1407907 1c004988 03010113 addi x2, x2, 48 x2=1c009a90 x2:1c009a60 +76481477ns 1407908 1c00498a 00008067 jalr x0, x1, 0 x1:1c004b12 +76481518ns 1407910 1c004b12 fff00a13 addi x20, x0, -1 x20=ffffffff +76481538ns 1407911 1c004b14 0d451a63 bne x10, x20, 212 x10:00000000 x20:ffffffff +76481598ns 1407914 1c004be8 01042683 lw x13, 16(x8) x13=00000001 x8:1c009ad0 PA:1c009ae0 +76481619ns 1407915 1c004bea 01500633 add x12, x0, x21 x12=1c009b12 x21:1c009b12 +76481639ns 1407916 1c004bec 012005b3 add x11, x0, x18 x11=1c00b914 x18:1c00b914 +76481659ns 1407917 1c004bee 00900533 add x10, x0, x9 x10=1c009e10 x9:1c009e10 +76481679ns 1407918 1c004bf0 000980e7 jalr x1, x19, 0 x1=1c004bf2 x19:1c003ac8 +76481719ns 1407920 1c003ac8 fe010113 addi x2, x2, -32 x2=1c009a70 x2:1c009a90 +76481740ns 1407921 1c003aca 00812c23 sw x8, 24(x2) x8:1c009ad0 x2:1c009a70 PA:1c009a88 +76481760ns 1407922 1c003acc 00912a23 sw x9, 20(x2) x9:1c009e10 x2:1c009a70 PA:1c009a84 +76481780ns 1407923 1c003ace 01212823 sw x18, 16(x2) x18:1c00b914 x2:1c009a70 PA:1c009a80 +76481800ns 1407924 1c003ad0 01312623 sw x19, 12(x2) x19:1c003ac8 x2:1c009a70 PA:1c009a7c +76481820ns 1407925 1c003ad2 01412423 sw x20, 8(x2) x20:ffffffff x2:1c009a70 PA:1c009a78 +76481841ns 1407926 1c003ad4 00112e23 sw x1, 28(x2) x1:1c004bf2 x2:1c009a70 PA:1c009a8c +76481861ns 1407927 1c003ad6 00a00933 add x18, x0, x10 x18=1c009e10 x10:1c009e10 +76481881ns 1407928 1c003ad8 00b009b3 add x19, x0, x11 x19=1c00b914 x11:1c00b914 +76481901ns 1407929 1c003ada 00c00433 add x8, x0, x12 x8=1c009b12 x12:1c009b12 +76481921ns 1407930 1c003adc 00d604b3 add x9, x12, x13 x9=1c009b13 x12:1c009b12 x13:00000001 +76481942ns 1407931 1c003ae0 fff00a13 addi x20, x0, -1 x20=ffffffff +76481962ns 1407932 1c003ae2 00941463 bne x8, x9, 8 x8:1c009b12 x9:1c009b13 +76482043ns 1407936 1c003aea 00044583 lbu x11, 0(x8) x11=00000033 x8:1c009b12 PA:1c009b12 +76482063ns 1407937 1c003aee 01300633 add x12, x0, x19 x12=1c00b914 x19:1c00b914 +76482083ns 1407938 1c003af0 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +76482103ns 1407939 1c003af2 fafff0ef jal x1, -82 x1=1c003af6 +76482144ns 1407941 1c003aa0 00862783 lw x15, 8(x12) x15=fffffff2 x12:1c00b914 PA:1c00b91c +76482184ns 1407943 1c003aa2 fff78793 addi x15, x15, -1 x15=fffffff1 x15:fffffff2 +76482204ns 1407944 1c003aa4 00f62423 sw x15, 8(x12) x15:fffffff1 x12:1c00b914 PA:1c00b91c +76482224ns 1407945 1c003aa6 0007d963 bge x15, x0, 18 x15:fffffff1 +76482244ns 1407946 1c003aaa 01862703 lw x14, 24(x12) x14=fffffc00 x12:1c00b914 PA:1c00b92c +76482285ns 1407948 1c003aac 00e7c563 blt x15, x14, 10 x15:fffffff1 x14:fffffc00 +76482305ns 1407949 1c003ab0 00a00793 addi x15, x0, 10 x15=0000000a +76482325ns 1407950 1c003ab2 00f59363 bne x11, x15, 6 x11:00000033 x15:0000000a +76482386ns 1407953 1c003ab8 00062783 lw x15, 0(x12) x15=1c00bac6 x12:1c00b914 PA:1c00b914 +76482406ns 1407954 1c003aba 00b00533 add x10, x0, x11 x10=00000033 x11:00000033 +76482426ns 1407955 1c003abc 00178713 addi x14, x15, 1 x14=1c00bac7 x15:1c00bac6 +76482446ns 1407956 1c003ac0 00e62023 sw x14, 0(x12) x14:1c00bac7 x12:1c00b914 PA:1c00b914 +76482467ns 1407957 1c003ac2 00b78023 sb x11, 0(x15) x11:00000033 x15:1c00bac6 PA:1c00bac6 +76482487ns 1407958 1c003ac6 00008067 jalr x0, x1, 0 x1:1c003af6 +76482527ns 1407960 1c003af6 00140413 addi x8, x8, 1 x8=1c009b13 x8:1c009b12 +76482547ns 1407961 1c003af8 ff4515e3 bne x10, x20, -22 x10:00000033 x20:ffffffff +76482628ns 1407965 1c003ae2 00941463 bne x8, x9, 8 x8:1c009b13 x9:1c009b13 +76482648ns 1407966 1c003ae6 00000513 addi x10, x0, 0 x10=00000000 +76482669ns 1407967 1c003ae8 0140006f jal x0, 20 +76482709ns 1407969 1c003afc 01c12083 lw x1, 28(x2) x1=1c004bf2 x2:1c009a70 PA:1c009a8c +76482729ns 1407970 1c003afe 01812403 lw x8, 24(x2) x8=1c009ad0 x2:1c009a70 PA:1c009a88 +76482749ns 1407971 1c003b00 01412483 lw x9, 20(x2) x9=1c009e10 x2:1c009a70 PA:1c009a84 +76482769ns 1407972 1c003b02 01012903 lw x18, 16(x2) x18=1c00b914 x2:1c009a70 PA:1c009a80 +76482790ns 1407973 1c003b04 00c12983 lw x19, 12(x2) x19=1c003ac8 x2:1c009a70 PA:1c009a7c +76482810ns 1407974 1c003b06 00812a03 lw x20, 8(x2) x20=ffffffff x2:1c009a70 PA:1c009a78 +76482830ns 1407975 1c003b08 02010113 addi x2, x2, 32 x2=1c009a90 x2:1c009a70 +76482850ns 1407976 1c003b0a 00008067 jalr x0, x1, 0 x1:1c004bf2 +76482911ns 1407979 1c004bf2 f34503e3 beq x10, x20, -218 x10:00000000 x20:ffffffff +76482931ns 1407980 1c004bf6 00042783 lw x15, 0(x8) x15=00000000 x8:1c009ad0 PA:1c009ad0 +76482971ns 1407982 1c004bf8 0027f793 andi x15, x15, 2 x15=00000000 x15:00000000 +76482992ns 1407983 1c004bfa 02079563 bne x15, x0, 42 x15:00000000 +76483012ns 1407984 1c004bfc 00c12783 lw x15, 12(x2) x15=00000001 x2:1c009a90 PA:1c009a9c +76483032ns 1407985 1c004bfe 00c42503 lw x10, 12(x8) x10=00000000 x8:1c009ad0 PA:1c009adc +76483072ns 1407987 1c004c00 f0f55de3 bge x10, x15, -230 x10:00000000 x15:00000001 +76483093ns 1407988 1c004c04 00f00533 add x10, x0, x15 x10=00000001 x15:00000001 +76483113ns 1407989 1c004c06 f15ff06f jal x0, -236 +76483153ns 1407991 1c004b1a 02c12083 lw x1, 44(x2) x1=1c003db2 x2:1c009a90 PA:1c009abc +76483173ns 1407992 1c004b1c 02812403 lw x8, 40(x2) x8=1c0088ff x2:1c009a90 PA:1c009ab8 +76483194ns 1407993 1c004b1e 02412483 lw x9, 36(x2) x9=1c00b914 x2:1c009a90 PA:1c009ab4 +76483214ns 1407994 1c004b20 02012903 lw x18, 32(x2) x18=1c008900 x2:1c009a90 PA:1c009ab0 +76483234ns 1407995 1c004b22 01c12983 lw x19, 28(x2) x19=1c009e10 x2:1c009a90 PA:1c009aac +76483254ns 1407996 1c004b24 01812a03 lw x20, 24(x2) x20=1c00918c x2:1c009a90 PA:1c009aa8 +76483274ns 1407997 1c004b26 01412a83 lw x21, 20(x2) x21=00000000 x2:1c009a90 PA:1c009aa4 +76483294ns 1407998 1c004b28 01012b03 lw x22, 16(x2) x22=1c009000 x2:1c009a90 PA:1c009aa0 +76483315ns 1407999 1c004b2a 03010113 addi x2, x2, 48 x2=1c009ac0 x2:1c009a90 +76483335ns 1408000 1c004b2c 00008067 jalr x0, x1, 0 x1:1c003db2 +76483375ns 1408002 1c003db2 fd9ff06f jal x0, -40 +76483416ns 1408004 1c003d8a fff00793 addi x15, x0, -1 x15=ffffffff +76483436ns 1408005 1c003d8c 00a00a33 add x20, x0, x10 x20=00000001 x10:00000001 +76483456ns 1408006 1c003d8e fcf516e3 bne x10, x15, -52 x10:00000001 x15:ffffffff +76483517ns 1408009 1c003d5a 02412783 lw x15, 36(x2) x15=0000000e x2:1c009ac0 PA:1c009ae4 +76483557ns 1408011 1c003d5c 014787b3 add x15, x15, x20 x15=0000000f x15:0000000e x20:00000001 +76483577ns 1408012 1c003d5e 02f12223 sw x15, 36(x2) x15:0000000f x2:1c009ac0 PA:1c009ae4 +76483597ns 1408013 1c003d60 e27ff06f jal x0, -474 +76483638ns 1408015 1c003b86 01200433 add x8, x0, x18 x8=1c008900 x18:1c008900 +76483658ns 1408016 1c003b88 00044783 lbu x15, 0(x8) x15=0000000a x8:1c008900 PA:1c008900 +76483698ns 1408018 1c003b8c 00078363 beq x15, x0, 6 x15:0000000a +76483719ns 1408019 1c003b8e 0f979763 bne x15, x25, 238 x15:0000000a x25:00000025 +76483779ns 1408022 1c003c7c 00140413 addi x8, x8, 1 x8=1c008901 x8:1c008900 +76483799ns 1408023 1c003c7e f0bff06f jal x0, -246 +76483840ns 1408025 1c003b88 00044783 lbu x15, 0(x8) x15=00000000 x8:1c008901 PA:1c008901 +76483880ns 1408027 1c003b8c 00078363 beq x15, x0, 6 x15:00000000 +76483961ns 1408031 1c003b92 41240db3 sub x27, x8, x18 x27=00000001 x8:1c008901 x18:1c008900 +76483981ns 1408032 1c003b96 01240e63 beq x8, x18, 28 x8:1c008901 x18:1c008900 +76484001ns 1408033 1c003b9a 01b006b3 add x13, x0, x27 x13=00000001 x27:00000001 +76484021ns 1408034 1c003b9c 01200633 add x12, x0, x18 x12=1c008900 x18:1c008900 +76484042ns 1408035 1c003b9e 009005b3 add x11, x0, x9 x11=1c00b914 x9:1c00b914 +76484062ns 1408036 1c003ba0 01300533 add x10, x0, x19 x10=1c009e10 x19:1c009e10 +76484082ns 1408037 1c003ba2 f27ff0ef jal x1, -218 x1=1c003ba6 +76484122ns 1408039 1c003ac8 fe010113 addi x2, x2, -32 x2=1c009aa0 x2:1c009ac0 +76484143ns 1408040 1c003aca 00812c23 sw x8, 24(x2) x8:1c008901 x2:1c009aa0 PA:1c009ab8 +76484163ns 1408041 1c003acc 00912a23 sw x9, 20(x2) x9:1c00b914 x2:1c009aa0 PA:1c009ab4 +76484183ns 1408042 1c003ace 01212823 sw x18, 16(x2) x18:1c008900 x2:1c009aa0 PA:1c009ab0 +76484203ns 1408043 1c003ad0 01312623 sw x19, 12(x2) x19:1c009e10 x2:1c009aa0 PA:1c009aac +76484223ns 1408044 1c003ad2 01412423 sw x20, 8(x2) x20:00000001 x2:1c009aa0 PA:1c009aa8 +76484243ns 1408045 1c003ad4 00112e23 sw x1, 28(x2) x1:1c003ba6 x2:1c009aa0 PA:1c009abc +76484264ns 1408046 1c003ad6 00a00933 add x18, x0, x10 x18=1c009e10 x10:1c009e10 +76484284ns 1408047 1c003ad8 00b009b3 add x19, x0, x11 x19=1c00b914 x11:1c00b914 +76484304ns 1408048 1c003ada 00c00433 add x8, x0, x12 x8=1c008900 x12:1c008900 +76484324ns 1408049 1c003adc 00d604b3 add x9, x12, x13 x9=1c008901 x12:1c008900 x13:00000001 +76484344ns 1408050 1c003ae0 fff00a13 addi x20, x0, -1 x20=ffffffff +76484365ns 1408051 1c003ae2 00941463 bne x8, x9, 8 x8:1c008900 x9:1c008901 +76484445ns 1408055 1c003aea 00044583 lbu x11, 0(x8) x11=0000000a x8:1c008900 PA:1c008900 +76484466ns 1408056 1c003aee 01300633 add x12, x0, x19 x12=1c00b914 x19:1c00b914 +76484486ns 1408057 1c003af0 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +76484506ns 1408058 1c003af2 fafff0ef jal x1, -82 x1=1c003af6 +76484546ns 1408060 1c003aa0 00862783 lw x15, 8(x12) x15=fffffff1 x12:1c00b914 PA:1c00b91c +76484587ns 1408062 1c003aa2 fff78793 addi x15, x15, -1 x15=fffffff0 x15:fffffff1 +76484607ns 1408063 1c003aa4 00f62423 sw x15, 8(x12) x15:fffffff0 x12:1c00b914 PA:1c00b91c +76484627ns 1408064 1c003aa6 0007d963 bge x15, x0, 18 x15:fffffff0 +76484647ns 1408065 1c003aaa 01862703 lw x14, 24(x12) x14=fffffc00 x12:1c00b914 PA:1c00b92c +76484688ns 1408067 1c003aac 00e7c563 blt x15, x14, 10 x15:fffffff0 x14:fffffc00 +76484708ns 1408068 1c003ab0 00a00793 addi x15, x0, 10 x15=0000000a +76484728ns 1408069 1c003ab2 00f59363 bne x11, x15, 6 x11:0000000a x15:0000000a +76484748ns 1408070 1c003ab6 5f40006f jal x0, 1524 +76484789ns 1408072 1c0040aa fe010113 addi x2, x2, -32 x2=1c009a80 x2:1c009aa0 +76484809ns 1408073 1c0040ac 00812c23 sw x8, 24(x2) x8:1c008900 x2:1c009a80 PA:1c009a98 +76484829ns 1408074 1c0040ae 00912a23 sw x9, 20(x2) x9:1c008901 x2:1c009a80 PA:1c009a94 +76484849ns 1408075 1c0040b0 01212823 sw x18, 16(x2) x18:1c009e10 x2:1c009a80 PA:1c009a90 +76484869ns 1408076 1c0040b2 00112e23 sw x1, 28(x2) x1:1c003af6 x2:1c009a80 PA:1c009a9c +76484890ns 1408077 1c0040b4 01312623 sw x19, 12(x2) x19:1c00b914 x2:1c009a80 PA:1c009a8c +76484910ns 1408078 1c0040b6 00a004b3 add x9, x0, x10 x9=1c009e10 x10:1c009e10 +76484930ns 1408079 1c0040b8 00b00933 add x18, x0, x11 x18=0000000a x11:0000000a +76484950ns 1408080 1c0040ba 00c00433 add x8, x0, x12 x8=1c00b914 x12:1c00b914 +76484970ns 1408081 1c0040bc 00050463 beq x10, x0, 8 x10:1c009e10 +76484991ns 1408082 1c0040be 01852783 lw x15, 24(x10) x15=00000001 x10:1c009e10 PA:1c009e28 +76485031ns 1408084 1c0040c0 00079263 bne x15, x0, 4 x15:00000001 +76485092ns 1408087 1c0040c4 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76485112ns 1408088 1c0040c8 a1478793 addi x15, x15, -1516 x15=1c008a14 x15:1c009000 +76485132ns 1408089 1c0040cc 06f41963 bne x8, x15, 114 x8:1c00b914 x15:1c008a14 +76485213ns 1408093 1c00413e 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76485233ns 1408094 1c004142 a3478793 addi x15, x15, -1484 x15=1c008a34 x15:1c009000 +76485253ns 1408095 1c004146 00f41463 bne x8, x15, 8 x8:1c00b914 x15:1c008a34 +76485334ns 1408099 1c00414e 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76485354ns 1408100 1c004152 9f478793 addi x15, x15, -1548 x15=1c0089f4 x15:1c009000 +76485374ns 1408101 1c004156 f6f41ee3 bne x8, x15, -132 x8:1c00b914 x15:1c0089f4 +76485435ns 1408104 1c0040d2 01842783 lw x15, 24(x8) x15=fffffc00 x8:1c00b914 PA:1c00b92c +76485475ns 1408106 1c0040d4 00f42423 sw x15, 8(x8) x15:fffffc00 x8:1c00b914 PA:1c00b91c +76485495ns 1408107 1c0040d6 00c45783 lhu x15, 12(x8) x15=00000089 x8:1c00b914 PA:1c00b920 +76485536ns 1408109 1c0040da 0087f793 andi x15, x15, 8 x15=00000008 x15:00000089 +76485556ns 1408110 1c0040dc 08078163 beq x15, x0, 130 x15:00000008 +76485576ns 1408111 1c0040de 01042783 lw x15, 16(x8) x15=1c00bab8 x8:1c00b914 PA:1c00b924 +76485617ns 1408113 1c0040e0 06078f63 beq x15, x0, 126 x15:1c00bab8 +76485637ns 1408114 1c0040e2 01042783 lw x15, 16(x8) x15=1c00bab8 x8:1c00b914 PA:1c00b924 +76485657ns 1408115 1c0040e4 00042503 lw x10, 0(x8) x10=1c00bac7 x8:1c00b914 PA:1c00b914 +76485677ns 1408116 1c0040e6 0ff97993 andi x19, x18, 255 x19=0000000a x18:0000000a +76485697ns 1408117 1c0040ea 0ff97913 andi x18, x18, 255 x18=0000000a x18:0000000a +76485718ns 1408118 1c0040ee 40f50533 sub x10, x10, x15 x10=0000000f x10:1c00bac7 x15:1c00bab8 +76485738ns 1408119 1c0040f0 01442783 lw x15, 20(x8) x15=00000400 x8:1c00b914 PA:1c00b928 +76485778ns 1408121 1c0040f2 00f54663 blt x10, x15, 12 x10:0000000f x15:00000400 +76485839ns 1408124 1c0040fe 00842783 lw x15, 8(x8) x15=fffffc00 x8:1c00b914 PA:1c00b91c +76485859ns 1408125 1c004100 00150513 addi x10, x10, 1 x10=00000010 x10:0000000f +76485879ns 1408126 1c004102 fff78793 addi x15, x15, -1 x15=fffffbff x15:fffffc00 +76485899ns 1408127 1c004104 00f42423 sw x15, 8(x8) x15:fffffbff x8:1c00b914 PA:1c00b91c +76485919ns 1408128 1c004106 00042783 lw x15, 0(x8) x15=1c00bac7 x8:1c00b914 PA:1c00b914 +76485960ns 1408130 1c004108 00178713 addi x14, x15, 1 x14=1c00bac8 x15:1c00bac7 +76485980ns 1408131 1c00410c 00e42023 sw x14, 0(x8) x14:1c00bac8 x8:1c00b914 PA:1c00b914 +76486000ns 1408132 1c00410e 01378023 sb x19, 0(x15) x19:0000000a x15:1c00bac7 PA:1c00bac7 +76486020ns 1408133 1c004112 01442783 lw x15, 20(x8) x15=00000400 x8:1c00b914 PA:1c00b928 +76486061ns 1408135 1c004114 00a78963 beq x15, x10, 18 x15:00000400 x10:00000010 +76486081ns 1408136 1c004118 00c45783 lhu x15, 12(x8) x15=00000089 x8:1c00b914 PA:1c00b920 +76486121ns 1408138 1c00411c 0017f793 andi x15, x15, 1 x15=00000001 x15:00000089 +76486142ns 1408139 1c00411e 00078863 beq x15, x0, 16 x15:00000001 +76486162ns 1408140 1c004120 00a00793 addi x15, x0, 10 x15=0000000a +76486182ns 1408141 1c004122 00f91663 bne x18, x15, 12 x18:0000000a x15:0000000a +76486202ns 1408142 1c004126 008005b3 add x11, x0, x8 x11=1c00b914 x8:1c00b914 +76486222ns 1408143 1c004128 00900533 add x10, x0, x9 x10=1c009e10 x9:1c009e10 +76486243ns 1408144 1c00412a 3d8000ef jal x1, 984 x1=1c00412c +76486283ns 1408146 1c004502 0105a783 lw x15, 16(x11) x15=1c00bab8 x11:1c00b914 PA:1c00b924 +76486323ns 1408148 1c004504 06078063 beq x15, x0, 96 x15:1c00bab8 +76486343ns 1408149 1c004506 fe010113 addi x2, x2, -32 x2=1c009a60 x2:1c009a80 +76486364ns 1408150 1c004508 00812c23 sw x8, 24(x2) x8:1c00b914 x2:1c009a60 PA:1c009a78 +76486384ns 1408151 1c00450a 00112e23 sw x1, 28(x2) x1:1c00412c x2:1c009a60 PA:1c009a7c +76486404ns 1408152 1c00450c 00a00433 add x8, x0, x10 x8=1c009e10 x10:1c009e10 +76486424ns 1408153 1c00450e 00050663 beq x10, x0, 12 x10:1c009e10 +76486444ns 1408154 1c004510 01852783 lw x15, 24(x10) x15=00000001 x10:1c009e10 PA:1c009e28 +76486485ns 1408156 1c004512 00079463 bne x15, x0, 8 x15:00000001 +76486566ns 1408160 1c00451a 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76486586ns 1408161 1c00451e a1478793 addi x15, x15, -1516 x15=1c008a14 x15:1c009000 +76486606ns 1408162 1c004522 00f59c63 bne x11, x15, 24 x11:1c00b914 x15:1c008a14 +76486687ns 1408166 1c00453a 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76486707ns 1408167 1c00453e a3478793 addi x15, x15, -1484 x15=1c008a34 x15:1c009000 +76486727ns 1408168 1c004542 00f59463 bne x11, x15, 8 x11:1c00b914 x15:1c008a34 +76486808ns 1408172 1c00454a 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76486828ns 1408173 1c00454e 9f478793 addi x15, x15, -1548 x15=1c0089f4 x15:1c009000 +76486848ns 1408174 1c004552 fcf59be3 bne x11, x15, -42 x11:1c00b914 x15:1c0089f4 +76486909ns 1408177 1c004528 00c59783 lh x15, 12(x11) x15=00000089 x11:1c00b914 PA:1c00b920 +76486949ns 1408179 1c00452c 02078763 beq x15, x0, 46 x15:00000089 +76486969ns 1408180 1c00452e 00800533 add x10, x0, x8 x10=1c009e10 x8:1c009e10 +76486990ns 1408181 1c004530 01812403 lw x8, 24(x2) x8=1c00b914 x2:1c009a60 PA:1c009a78 +76487010ns 1408182 1c004532 01c12083 lw x1, 28(x2) x1=1c00412c x2:1c009a60 PA:1c009a7c +76487030ns 1408183 1c004534 02010113 addi x2, x2, 32 x2=1c009a80 x2:1c009a60 +76487050ns 1408184 1c004536 e85ff06f jal x0, -380 +76487111ns 1408187 1c0043ba 00c5d783 lhu x15, 12(x11) x15=00000089 x11:1c00b914 PA:1c00b920 +76487131ns 1408188 1c0043be fe010113 addi x2, x2, -32 x2=1c009a60 x2:1c009a80 +76487151ns 1408189 1c0043c0 00812c23 sw x8, 24(x2) x8:1c00b914 x2:1c009a60 PA:1c009a78 +76487171ns 1408190 1c0043c2 00912a23 sw x9, 20(x2) x9:1c009e10 x2:1c009a60 PA:1c009a74 +76487192ns 1408191 1c0043c4 00112e23 sw x1, 28(x2) x1:1c00412c x2:1c009a60 PA:1c009a7c +76487212ns 1408192 1c0043c6 01212823 sw x18, 16(x2) x18:0000000a x2:1c009a60 PA:1c009a70 +76487232ns 1408193 1c0043c8 01312623 sw x19, 12(x2) x19:0000000a x2:1c009a60 PA:1c009a6c +76487252ns 1408194 1c0043ca 0087f713 andi x14, x15, 8 x14=00000008 x15:00000089 +76487272ns 1408195 1c0043ce 00a004b3 add x9, x0, x10 x9=1c009e10 x10:1c009e10 +76487292ns 1408196 1c0043d0 00b00433 add x8, x0, x11 x8=1c00b914 x11:1c00b914 +76487313ns 1408197 1c0043d2 0e071363 bne x14, x0, 230 x14:00000008 +76487373ns 1408200 1c0044b8 0105a983 lw x19, 16(x11) x19=1c00bab8 x11:1c00b914 PA:1c00b924 +76487414ns 1408202 1c0044bc f20982e3 beq x19, x0, -220 x19:1c00bab8 +76487434ns 1408203 1c0044c0 0005a903 lw x18, 0(x11) x18=1c00bac8 x11:1c00b914 PA:1c00b914 +76487454ns 1408204 1c0044c4 0037f793 andi x15, x15, 3 x15=00000001 x15:00000089 +76487474ns 1408205 1c0044c6 0135a023 sw x19, 0(x11) x19:1c00bab8 x11:1c00b914 PA:1c00b914 +76487494ns 1408206 1c0044ca 41390933 sub x18, x18, x19 x18=00000010 x18:1c00bac8 x19:1c00bab8 +76487515ns 1408207 1c0044ce 00000713 addi x14, x0, 0 x14=00000000 +76487535ns 1408208 1c0044d0 00079263 bne x15, x0, 4 x15:00000001 +76487595ns 1408211 1c0044d4 00e42423 sw x14, 8(x8) x14:00000000 x8:1c00b914 PA:1c00b91c +76487616ns 1408212 1c0044d6 f12055e3 bge x0, x18, -246 x18:00000010 +76487636ns 1408213 1c0044da 02842783 lw x15, 40(x8) x15=1c004c5e x8:1c00b914 PA:1c00b93c +76487656ns 1408214 1c0044dc 02042583 lw x11, 32(x8) x11=1c00b914 x8:1c00b914 PA:1c00b934 +76487676ns 1408215 1c0044de 012006b3 add x13, x0, x18 x13=00000010 x18:00000010 +76487696ns 1408216 1c0044e0 01300633 add x12, x0, x19 x12=1c00bab8 x19:1c00bab8 +76487717ns 1408217 1c0044e2 00900533 add x10, x0, x9 x10=1c009e10 x9:1c009e10 +76487737ns 1408218 1c0044e4 000780e7 jalr x1, x15, 0 x1=1c0044e6 x15:1c004c5e +76487797ns 1408221 1c004c5e 00c5d783 lhu x15, 12(x11) x15=00000089 x11:1c00b914 PA:1c00b920 +76487817ns 1408222 1c004c62 fe010113 addi x2, x2, -32 x2=1c009a40 x2:1c009a60 +76487838ns 1408223 1c004c64 00812c23 sw x8, 24(x2) x8:1c00b914 x2:1c009a40 PA:1c009a58 +76487858ns 1408224 1c004c66 00912a23 sw x9, 20(x2) x9:1c009e10 x2:1c009a40 PA:1c009a54 +76487878ns 1408225 1c004c68 01212823 sw x18, 16(x2) x18:00000010 x2:1c009a40 PA:1c009a50 +76487898ns 1408226 1c004c6a 01312623 sw x19, 12(x2) x19:1c00bab8 x2:1c009a40 PA:1c009a4c +76487918ns 1408227 1c004c6c 00112e23 sw x1, 28(x2) x1:1c0044e6 x2:1c009a40 PA:1c009a5c +76487939ns 1408228 1c004c6e 1007f793 andi x15, x15, 256 x15=00000000 x15:00000089 +76487959ns 1408229 1c004c72 00a004b3 add x9, x0, x10 x9=1c009e10 x10:1c009e10 +76487979ns 1408230 1c004c74 00b00433 add x8, x0, x11 x8=1c00b914 x11:1c00b914 +76487999ns 1408231 1c004c76 00c00933 add x18, x0, x12 x18=1c00bab8 x12:1c00bab8 +76488019ns 1408232 1c004c78 00d009b3 add x19, x0, x13 x19=00000010 x13:00000010 +76488040ns 1408233 1c004c7a 00078663 beq x15, x0, 12 x15:00000000 +76488120ns 1408237 1c004c86 00c45783 lhu x15, 12(x8) x15=00000089 x8:1c00b914 PA:1c00b920 +76488141ns 1408238 1c004c8a fffff737 lui x14, 0xfffff000 x14=fffff000 +76488161ns 1408239 1c004c8c fff70713 addi x14, x14, -1 x14=ffffefff x14:fffff000 +76488181ns 1408240 1c004c8e 00e7f7b3 and x15, x15, x14 x15=00000089 x15:00000089 x14:ffffefff +76488201ns 1408241 1c004c90 00e41583 lh x11, 14(x8) x11=00000001 x8:1c00b914 PA:1c00b922 +76488221ns 1408242 1c004c94 00f41623 sh x15, 12(x8) x15:00000089 x8:1c00b914 PA:1c00b920 +76488242ns 1408243 1c004c98 01812403 lw x8, 24(x2) x8=1c00b914 x2:1c009a40 PA:1c009a58 +76488262ns 1408244 1c004c9a 01c12083 lw x1, 28(x2) x1=1c0044e6 x2:1c009a40 PA:1c009a5c +76488282ns 1408245 1c004c9c 013006b3 add x13, x0, x19 x13=00000010 x19:00000010 +76488302ns 1408246 1c004c9e 01200633 add x12, x0, x18 x12=1c00bab8 x18:1c00bab8 +76488322ns 1408247 1c004ca0 00c12983 lw x19, 12(x2) x19=1c00bab8 x2:1c009a40 PA:1c009a4c +76488342ns 1408248 1c004ca2 01012903 lw x18, 16(x2) x18=00000010 x2:1c009a40 PA:1c009a50 +76488363ns 1408249 1c004ca4 00900533 add x10, x0, x9 x10=1c009e10 x9:1c009e10 +76488383ns 1408250 1c004ca6 01412483 lw x9, 20(x2) x9=1c009e10 x2:1c009a40 PA:1c009a54 +76488403ns 1408251 1c004ca8 02010113 addi x2, x2, 32 x2=1c009a60 x2:1c009a40 +76488423ns 1408252 1c004caa 03e0006f jal x0, 62 +76488464ns 1408254 1c004ce8 ff010113 addi x2, x2, -16 x2=1c009a50 x2:1c009a60 +76488484ns 1408255 1c004cea 00812423 sw x8, 8(x2) x8:1c00b914 x2:1c009a50 PA:1c009a58 +76488504ns 1408256 1c004cec 00912223 sw x9, 4(x2) x9:1c009e10 x2:1c009a50 PA:1c009a54 +76488524ns 1408257 1c004cee 00a00433 add x8, x0, x10 x8=1c009e10 x10:1c009e10 +76488544ns 1408258 1c004cf0 00b00533 add x10, x0, x11 x10=00000001 x11:00000001 +76488565ns 1408259 1c004cf2 00c005b3 add x11, x0, x12 x11=1c00bab8 x12:1c00bab8 +76488585ns 1408260 1c004cf4 00d00633 add x12, x0, x13 x12=00000010 x13:00000010 +76488605ns 1408261 1c004cf6 00112623 sw x1, 12(x2) x1:1c0044e6 x2:1c009a50 PA:1c009a5c +76488625ns 1408262 1c004cf8 dc01a023 sw x0, -576(x3) x3:1c0093dc PA:1c00919c +76488645ns 1408263 1c004cfc cf7fd0ef jal x1, -8970 x1=1c004d00 +76488686ns 1408265 1c0029f2 fff50513 addi x10, x10, -1 x10=00000000 x10:00000001 +76488706ns 1408266 1c0029f4 00100793 addi x15, x0, 1 x15=00000001 +76488726ns 1408267 1c0029f6 00c58833 add x16, x11, x12 x16=1c00bac8 x11:1c00bab8 x12:00000010 +76488746ns 1408268 1c0029fa 00a7eb63 bltu x15, x10, 22 x15:00000001 x10:00000000 +76488767ns 1408269 1c0029fe 000026b7 lui x13, 0x2000 x13=00002000 +76488787ns 1408270 1c002a00 f8068693 addi x13, x13, -128 x13=00001f80 x13:00002000 +76488807ns 1408271 1c002a04 1a10f537 lui x10, 0x1a10f000 x10=1a10f000 +76488827ns 1408272 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bab8 x16:1c00bac8 +76488888ns 1408275 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bab9 x11:1c00bab8 +76488908ns 1408276 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000057 x11:1c00bab9 PA:1c00bab8 +76488928ns 1408277 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76488948ns 1408278 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76488968ns 1408279 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76488989ns 1408280 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76489009ns 1408281 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76489029ns 1408282 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76489049ns 1408283 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76489069ns 1408284 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76489090ns 1408285 1c002a38 0117a023 sw x17, 0(x15) x17:00000057 x15:1a10ff80 PA:1a10ff80 +76489110ns 1408286 1c002a3c fcdff06f jal x0, -52 +76489211ns 1408291 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bab9 x16:1c00bac8 +76489271ns 1408294 1c002a1c 00158593 addi x11, x11, 1 x11=1c00baba x11:1c00bab9 +76489291ns 1408295 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000049 x11:1c00baba PA:1c00bab9 +76489312ns 1408296 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76489332ns 1408297 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76489352ns 1408298 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76489372ns 1408299 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76489392ns 1408300 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76489413ns 1408301 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76489433ns 1408302 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76489453ns 1408303 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76489473ns 1408304 1c002a38 0117a023 sw x17, 0(x15) x17:00000049 x15:1a10ff80 PA:1a10ff80 +76489493ns 1408305 1c002a3c fcdff06f jal x0, -52 +76489594ns 1408310 1c002a08 01059a63 bne x11, x16, 20 x11:1c00baba x16:1c00bac8 +76489655ns 1408313 1c002a1c 00158593 addi x11, x11, 1 x11=1c00babb x11:1c00baba +76489675ns 1408314 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000050 x11:1c00babb PA:1c00baba +76489695ns 1408315 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76489716ns 1408316 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76489736ns 1408317 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76489756ns 1408318 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76489776ns 1408319 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76489796ns 1408320 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76489816ns 1408321 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76489837ns 1408322 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76489857ns 1408323 1c002a38 0117a023 sw x17, 0(x15) x17:00000050 x15:1a10ff80 PA:1a10ff80 +76489877ns 1408324 1c002a3c fcdff06f jal x0, -52 +76489978ns 1408329 1c002a08 01059a63 bne x11, x16, 20 x11:1c00babb x16:1c00bac8 +76490039ns 1408332 1c002a1c 00158593 addi x11, x11, 1 x11=1c00babc x11:1c00babb +76490059ns 1408333 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000020 x11:1c00babc PA:1c00babb +76490079ns 1408334 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76490099ns 1408335 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76490119ns 1408336 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76490140ns 1408337 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76490160ns 1408338 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76490180ns 1408339 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76490200ns 1408340 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76490220ns 1408341 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76490241ns 1408342 1c002a38 0117a023 sw x17, 0(x15) x17:00000020 x15:1a10ff80 PA:1a10ff80 +76490261ns 1408343 1c002a3c fcdff06f jal x0, -52 +76490362ns 1408348 1c002a08 01059a63 bne x11, x16, 20 x11:1c00babc x16:1c00bac8 +76490422ns 1408351 1c002a1c 00158593 addi x11, x11, 1 x11=1c00babd x11:1c00babc +76490442ns 1408352 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000052 x11:1c00babd PA:1c00babc +76490463ns 1408353 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76490483ns 1408354 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76490503ns 1408355 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76490523ns 1408356 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76490543ns 1408357 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76490564ns 1408358 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76490584ns 1408359 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76490604ns 1408360 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76490624ns 1408361 1c002a38 0117a023 sw x17, 0(x15) x17:00000052 x15:1a10ff80 PA:1a10ff80 +76490644ns 1408362 1c002a3c fcdff06f jal x0, -52 +76490745ns 1408367 1c002a08 01059a63 bne x11, x16, 20 x11:1c00babd x16:1c00bac8 +76490806ns 1408370 1c002a1c 00158593 addi x11, x11, 1 x11=1c00babe x11:1c00babd +76490826ns 1408371 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000065 x11:1c00babe PA:1c00babd +76490846ns 1408372 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76490866ns 1408373 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76490887ns 1408374 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76490907ns 1408375 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76490927ns 1408376 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76490947ns 1408377 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76490967ns 1408378 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76490988ns 1408379 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76491008ns 1408380 1c002a38 0117a023 sw x17, 0(x15) x17:00000065 x15:1a10ff80 PA:1a10ff80 +76491028ns 1408381 1c002a3c fcdff06f jal x0, -52 +76491129ns 1408386 1c002a08 01059a63 bne x11, x16, 20 x11:1c00babe x16:1c00bac8 +76491190ns 1408389 1c002a1c 00158593 addi x11, x11, 1 x11=1c00babf x11:1c00babe +76491210ns 1408390 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000067 x11:1c00babf PA:1c00babe +76491230ns 1408391 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76491250ns 1408392 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76491270ns 1408393 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76491291ns 1408394 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76491311ns 1408395 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76491331ns 1408396 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76491351ns 1408397 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76491371ns 1408398 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76491391ns 1408399 1c002a38 0117a023 sw x17, 0(x15) x17:00000067 x15:1a10ff80 PA:1a10ff80 +76491412ns 1408400 1c002a3c fcdff06f jal x0, -52 +76491513ns 1408405 1c002a08 01059a63 bne x11, x16, 20 x11:1c00babf x16:1c00bac8 +76491573ns 1408408 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac0 x11:1c00babf +76491593ns 1408409 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000069 x11:1c00bac0 PA:1c00babf +76491614ns 1408410 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76491634ns 1408411 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76491654ns 1408412 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76491674ns 1408413 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76491694ns 1408414 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76491715ns 1408415 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76491735ns 1408416 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76491755ns 1408417 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76491775ns 1408418 1c002a38 0117a023 sw x17, 0(x15) x17:00000069 x15:1a10ff80 PA:1a10ff80 +76491795ns 1408419 1c002a3c fcdff06f jal x0, -52 +76491896ns 1408424 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac0 x16:1c00bac8 +76491957ns 1408427 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac1 x11:1c00bac0 +76491977ns 1408428 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000073 x11:1c00bac1 PA:1c00bac0 +76491997ns 1408429 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76492017ns 1408430 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76492038ns 1408431 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76492058ns 1408432 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76492078ns 1408433 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76492098ns 1408434 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76492118ns 1408435 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76492139ns 1408436 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76492159ns 1408437 1c002a38 0117a023 sw x17, 0(x15) x17:00000073 x15:1a10ff80 PA:1a10ff80 +76492179ns 1408438 1c002a3c fcdff06f jal x0, -52 +76492280ns 1408443 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac1 x16:1c00bac8 +76492340ns 1408446 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac2 x11:1c00bac1 +76492361ns 1408447 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000074 x11:1c00bac2 PA:1c00bac1 +76492381ns 1408448 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76492401ns 1408449 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76492421ns 1408450 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76492441ns 1408451 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76492462ns 1408452 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76492482ns 1408453 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76492502ns 1408454 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76492522ns 1408455 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76492542ns 1408456 1c002a38 0117a023 sw x17, 0(x15) x17:00000074 x15:1a10ff80 PA:1a10ff80 +76492563ns 1408457 1c002a3c fcdff06f jal x0, -52 +76492664ns 1408462 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac2 x16:1c00bac8 +76492724ns 1408465 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac3 x11:1c00bac2 +76492744ns 1408466 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000065 x11:1c00bac3 PA:1c00bac2 +76492765ns 1408467 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76492785ns 1408468 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76492805ns 1408469 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76492825ns 1408470 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76492845ns 1408471 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76492865ns 1408472 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76492886ns 1408473 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76492906ns 1408474 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76492926ns 1408475 1c002a38 0117a023 sw x17, 0(x15) x17:00000065 x15:1a10ff80 PA:1a10ff80 +76492946ns 1408476 1c002a3c fcdff06f jal x0, -52 +76493047ns 1408481 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac3 x16:1c00bac8 +76493108ns 1408484 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac4 x11:1c00bac3 +76493128ns 1408485 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000072 x11:1c00bac4 PA:1c00bac3 +76493148ns 1408486 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76493168ns 1408487 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76493189ns 1408488 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76493209ns 1408489 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76493229ns 1408490 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76493249ns 1408491 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76493269ns 1408492 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76493290ns 1408493 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76493310ns 1408494 1c002a38 0117a023 sw x17, 0(x15) x17:00000072 x15:1a10ff80 PA:1a10ff80 +76493330ns 1408495 1c002a3c fcdff06f jal x0, -52 +76493431ns 1408500 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac4 x16:1c00bac8 +76493491ns 1408503 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac5 x11:1c00bac4 +76493512ns 1408504 1c002a1e fff5c883 lbu x17, -1(x11) x17=0000003a x11:1c00bac5 PA:1c00bac4 +76493532ns 1408505 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76493552ns 1408506 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76493572ns 1408507 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76493592ns 1408508 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76493613ns 1408509 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76493633ns 1408510 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76493653ns 1408511 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76493673ns 1408512 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76493693ns 1408513 1c002a38 0117a023 sw x17, 0(x15) x17:0000003a x15:1a10ff80 PA:1a10ff80 +76493714ns 1408514 1c002a3c fcdff06f jal x0, -52 +76493815ns 1408519 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac5 x16:1c00bac8 +76493875ns 1408522 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac6 x11:1c00bac5 +76493895ns 1408523 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000020 x11:1c00bac6 PA:1c00bac5 +76493915ns 1408524 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76493936ns 1408525 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76493956ns 1408526 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76493976ns 1408527 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76493996ns 1408528 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76494016ns 1408529 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76494037ns 1408530 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76494057ns 1408531 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76494077ns 1408532 1c002a38 0117a023 sw x17, 0(x15) x17:00000020 x15:1a10ff80 PA:1a10ff80 +76494097ns 1408533 1c002a3c fcdff06f jal x0, -52 +76494198ns 1408538 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac6 x16:1c00bac8 +76494259ns 1408541 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac7 x11:1c00bac6 +76494279ns 1408542 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000033 x11:1c00bac7 PA:1c00bac6 +76494299ns 1408543 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76494319ns 1408544 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76494339ns 1408545 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76494360ns 1408546 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76494380ns 1408547 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76494400ns 1408548 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76494420ns 1408549 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76494440ns 1408550 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76494461ns 1408551 1c002a38 0117a023 sw x17, 0(x15) x17:00000033 x15:1a10ff80 PA:1a10ff80 +76494481ns 1408552 1c002a3c fcdff06f jal x0, -52 +76494582ns 1408557 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac7 x16:1c00bac8 +76494642ns 1408560 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac8 x11:1c00bac7 +76494663ns 1408561 1c002a1e fff5c883 lbu x17, -1(x11) x17=0000000a x11:1c00bac8 PA:1c00bac7 +76494683ns 1408562 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76494703ns 1408563 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76494723ns 1408564 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76494743ns 1408565 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76494764ns 1408566 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76494784ns 1408567 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76494804ns 1408568 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76494824ns 1408569 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76494844ns 1408570 1c002a38 0117a023 sw x17, 0(x15) x17:0000000a x15:1a10ff80 PA:1a10ff80 +76494864ns 1408571 1c002a3c fcdff06f jal x0, -52 +76494965ns 1408576 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac8 x16:1c00bac8 +76494986ns 1408577 1c002a0c 00c00533 add x10, x0, x12 x10=00000010 x12:00000010 +76495006ns 1408578 1c002a0e 00008067 jalr x0, x1, 0 x1:1c004d00 +76495046ns 1408580 1c004d00 fff00793 addi x15, x0, -1 x15=ffffffff +76495066ns 1408581 1c004d02 00f51663 bne x10, x15, 12 x10:00000010 x15:ffffffff +76495127ns 1408584 1c004d0e 00c12083 lw x1, 12(x2) x1=1c0044e6 x2:1c009a50 PA:1c009a5c +76495147ns 1408585 1c004d10 00812403 lw x8, 8(x2) x8=1c00b914 x2:1c009a50 PA:1c009a58 +76495167ns 1408586 1c004d12 00412483 lw x9, 4(x2) x9=1c009e10 x2:1c009a50 PA:1c009a54 +76495188ns 1408587 1c004d14 01010113 addi x2, x2, 16 x2=1c009a60 x2:1c009a50 +76495208ns 1408588 1c004d16 00008067 jalr x0, x1, 0 x1:1c0044e6 +76495268ns 1408591 1c0044e6 00a04a63 blt x0, x10, 20 x10:00000010 +76495329ns 1408594 1c0044fa 00a989b3 add x19, x19, x10 x19=1c00bac8 x19:1c00bab8 x10:00000010 +76495349ns 1408595 1c0044fc 40a90933 sub x18, x18, x10 x18=00000000 x18:00000010 x10:00000010 +76495369ns 1408596 1c004500 fd7ff06f jal x0, -42 +76495430ns 1408599 1c0044d6 f12055e3 bge x0, x18, -246 x18:00000000 +76495490ns 1408602 1c0043e0 00000513 addi x10, x0, 0 x10=00000000 +76495511ns 1408603 1c0043e2 0be0006f jal x0, 190 +76495551ns 1408605 1c0044a0 01c12083 lw x1, 28(x2) x1=1c00412c x2:1c009a60 PA:1c009a7c +76495571ns 1408606 1c0044a2 01812403 lw x8, 24(x2) x8=1c00b914 x2:1c009a60 PA:1c009a78 +76495591ns 1408607 1c0044a4 01412483 lw x9, 20(x2) x9=1c009e10 x2:1c009a60 PA:1c009a74 +76495612ns 1408608 1c0044a6 01012903 lw x18, 16(x2) x18=0000000a x2:1c009a60 PA:1c009a70 +76495632ns 1408609 1c0044a8 00c12983 lw x19, 12(x2) x19=0000000a x2:1c009a60 PA:1c009a6c +76495652ns 1408610 1c0044aa 02010113 addi x2, x2, 32 x2=1c009a80 x2:1c009a60 +76495672ns 1408611 1c0044ac 00008067 jalr x0, x1, 0 x1:1c00412c +76495713ns 1408613 1c00412c 02051d63 bne x10, x0, 58 x10:00000000 +76495733ns 1408614 1c00412e 01c12083 lw x1, 28(x2) x1=1c003af6 x2:1c009a80 PA:1c009a9c +76495753ns 1408615 1c004130 01812403 lw x8, 24(x2) x8=1c008900 x2:1c009a80 PA:1c009a98 +76495773ns 1408616 1c004132 01412483 lw x9, 20(x2) x9=1c008901 x2:1c009a80 PA:1c009a94 +76495793ns 1408617 1c004134 00c12983 lw x19, 12(x2) x19=1c00b914 x2:1c009a80 PA:1c009a8c +76495814ns 1408618 1c004136 01200533 add x10, x0, x18 x10=0000000a x18:0000000a +76495834ns 1408619 1c004138 01012903 lw x18, 16(x2) x18=1c009e10 x2:1c009a80 PA:1c009a90 +76495854ns 1408620 1c00413a 02010113 addi x2, x2, 32 x2=1c009aa0 x2:1c009a80 +76495874ns 1408621 1c00413c 00008067 jalr x0, x1, 0 x1:1c003af6 +76495914ns 1408623 1c003af6 00140413 addi x8, x8, 1 x8=1c008901 x8:1c008900 +76495935ns 1408624 1c003af8 ff4515e3 bne x10, x20, -22 x10:0000000a x20:ffffffff +76496015ns 1408628 1c003ae2 00941463 bne x8, x9, 8 x8:1c008901 x9:1c008901 +76496036ns 1408629 1c003ae6 00000513 addi x10, x0, 0 x10=00000000 +76496056ns 1408630 1c003ae8 0140006f jal x0, 20 +76496096ns 1408632 1c003afc 01c12083 lw x1, 28(x2) x1=1c003ba6 x2:1c009aa0 PA:1c009abc +76496116ns 1408633 1c003afe 01812403 lw x8, 24(x2) x8=1c008901 x2:1c009aa0 PA:1c009ab8 +76496137ns 1408634 1c003b00 01412483 lw x9, 20(x2) x9=1c00b914 x2:1c009aa0 PA:1c009ab4 +76496157ns 1408635 1c003b02 01012903 lw x18, 16(x2) x18=1c008900 x2:1c009aa0 PA:1c009ab0 +76496177ns 1408636 1c003b04 00c12983 lw x19, 12(x2) x19=1c009e10 x2:1c009aa0 PA:1c009aac +76496197ns 1408637 1c003b06 00812a03 lw x20, 8(x2) x20=00000001 x2:1c009aa0 PA:1c009aa8 +76496217ns 1408638 1c003b08 02010113 addi x2, x2, 32 x2=1c009ac0 x2:1c009aa0 +76496238ns 1408639 1c003b0a 00008067 jalr x0, x1, 0 x1:1c003ba6 +76496278ns 1408641 1c003ba6 fff00793 addi x15, x0, -1 x15=ffffffff +76496298ns 1408642 1c003ba8 1ef50563 beq x10, x15, 490 x10:00000000 x15:ffffffff +76496318ns 1408643 1c003bac 02412783 lw x15, 36(x2) x15=0000000f x2:1c009ac0 PA:1c009ae4 +76496359ns 1408645 1c003bae 01b787b3 add x15, x15, x27 x15=00000010 x15:0000000f x27:00000001 +76496379ns 1408646 1c003bb0 02f12223 sw x15, 36(x2) x15:00000010 x2:1c009ac0 PA:1c009ae4 +76496399ns 1408647 1c003bb2 00044783 lbu x15, 0(x8) x15=00000000 x8:1c008901 PA:1c008901 +76496439ns 1408649 1c003bb6 1c078e63 beq x15, x0, 476 x15:00000000 +76496520ns 1408653 1c003d92 00c4d783 lhu x15, 12(x9) x15=00000089 x9:1c00b914 PA:1c00b920 +76496561ns 1408655 1c003d96 0407f793 andi x15, x15, 64 x15=00000000 x15:00000089 +76496581ns 1408656 1c003d9a ec0791e3 bne x15, x0, -318 x15:00000000 +76496601ns 1408657 1c003d9e 02412503 lw x10, 36(x2) x10=00000010 x2:1c009ac0 PA:1c009ae4 +76496621ns 1408658 1c003da0 ebfff06f jal x0, -322 +76496662ns 1408660 1c003c5e 0ac12083 lw x1, 172(x2) x1=1c003dec x2:1c009ac0 PA:1c009b6c +76496682ns 1408661 1c003c60 0a812403 lw x8, 168(x2) x8=1c0088f0 x2:1c009ac0 PA:1c009b68 +76496702ns 1408662 1c003c62 0a412483 lw x9, 164(x2) x9=1c009190 x2:1c009ac0 PA:1c009b64 +76496722ns 1408663 1c003c64 0a012903 lw x18, 160(x2) x18=1c009188 x2:1c009ac0 PA:1c009b60 +76496742ns 1408664 1c003c66 09c12983 lw x19, 156(x2) x19=1c009000 x2:1c009ac0 PA:1c009b5c +76496763ns 1408665 1c003c68 09812a03 lw x20, 152(x2) x20=1c00918c x2:1c009ac0 PA:1c009b58 +76496783ns 1408666 1c003c6a 09412a83 lw x21, 148(x2) x21=a5a5a5a5 x2:1c009ac0 PA:1c009b54 +76496803ns 1408667 1c003c6c 09012b03 lw x22, 144(x2) x22=a5a5a5a5 x2:1c009ac0 PA:1c009b50 +76496823ns 1408668 1c003c6e 08c12b83 lw x23, 140(x2) x23=a5a5a5a5 x2:1c009ac0 PA:1c009b4c +76496843ns 1408669 1c003c70 08812c03 lw x24, 136(x2) x24=a5a5a5a5 x2:1c009ac0 PA:1c009b48 +76496863ns 1408670 1c003c72 08412c83 lw x25, 132(x2) x25=a5a5a5a5 x2:1c009ac0 PA:1c009b44 +76496884ns 1408671 1c003c74 08012d03 lw x26, 128(x2) x26=a5a5a5a5 x2:1c009ac0 PA:1c009b40 +76496904ns 1408672 1c003c76 07c12d83 lw x27, 124(x2) x27=a5a5a5a5 x2:1c009ac0 PA:1c009b3c +76496924ns 1408673 1c003c78 0b010113 addi x2, x2, 176 x2=1c009b70 x2:1c009ac0 +76496944ns 1408674 1c003c7a 00008067 jalr x0, x1, 0 x1:1c003dec +76496985ns 1408676 1c003dec 02c12083 lw x1, 44(x2) x1=1c00368e x2:1c009b70 PA:1c009b9c +76497005ns 1408677 1c003dee 02812403 lw x8, 40(x2) x8=00000000 x2:1c009b70 PA:1c009b98 +76497025ns 1408678 1c003df0 05010113 addi x2, x2, 80 x2=1c009bc0 x2:1c009b70 +76497045ns 1408679 1c003df2 00008067 jalr x0, x1, 0 x1:1c00368e +76497106ns 1408682 1c00368e 01714783 lbu x15, 23(x2) x15=00000003 x2:1c009bc0 PA:1c009bd7 +76497146ns 1408684 1c003692 0017f793 andi x15, x15, 1 x15=00000001 x15:00000003 +76497166ns 1408685 1c003694 fc0797e3 bne x15, x0, -50 x15:00000001 +76497227ns 1408688 1c003662 00100693 addi x13, x0, 1 x13=00000001 +76497247ns 1408689 1c003664 00800613 addi x12, x0, 8 x12=00000008 +76497267ns 1408690 1c003666 01610593 addi x11, x2, 22 x11=1c009bd6 x2:1c009bc0 +76497288ns 1408691 1c00366a 02010513 addi x10, x2, 32 x10=1c009be0 x2:1c009bc0 +76497308ns 1408692 1c00366c cdaff0ef jal x1, -2854 x1=1c003670 +76497348ns 1408694 1c002b46 f9010113 addi x2, x2, -112 x2=1c009b50 x2:1c009bc0 +76497368ns 1408695 1c002b48 06812423 sw x8, 104(x2) x8:00000000 x2:1c009b50 PA:1c009bb8 +76497388ns 1408696 1c002b4a 00a00433 add x8, x0, x10 x8=1c009be0 x10:1c009be0 +76497409ns 1408697 1c002b4c 01810513 addi x10, x2, 24 x10=1c009b68 x2:1c009b50 +76497429ns 1408698 1c002b4e 06112623 sw x1, 108(x2) x1:1c003670 x2:1c009b50 PA:1c009bbc +76497449ns 1408699 1c002b50 00b12623 sw x11, 12(x2) x11:1c009bd6 x2:1c009b50 PA:1c009b5c +76497469ns 1408700 1c002b52 00c12423 sw x12, 8(x2) x12:00000008 x2:1c009b50 PA:1c009b58 +76497489ns 1408701 1c002b54 00d12223 sw x13, 4(x2) x13:00000001 x2:1c009b50 PA:1c009b54 +76497510ns 1408702 1c002b56 0e5000ef jal x1, 2276 x1=1c002b5a +76497550ns 1408704 1c00343a ff010113 addi x2, x2, -16 x2=1c009b40 x2:1c009b50 +76497570ns 1408705 1c00343c 00812423 sw x8, 8(x2) x8:1c009be0 x2:1c009b40 PA:1c009b48 +76497590ns 1408706 1c00343e 00112623 sw x1, 12(x2) x1:1c002b5a x2:1c009b40 PA:1c009b4c +76497611ns 1408707 1c003440 00100793 addi x15, x0, 1 x15=00000001 +76497631ns 1408708 1c003442 00a00433 add x8, x0, x10 x8=1c009b68 x10:1c009b68 +76497651ns 1408709 1c003444 00f52823 sw x15, 16(x10) x15:00000001 x10:1c009b68 PA:1c009b78 +76497671ns 1408710 1c003446 04050223 sb x0, 68(x10) x10:1c009b68 PA:1c009bac +76497691ns 1408711 1c00344a 00000593 addi x11, x0, 0 x11=00000000 +76497712ns 1408712 1c00344c 0ff00513 addi x10, x0, 255 x10=000000ff +76497732ns 1408713 1c003450 d33fd0ef jal x1, -8910 x1=1c003454 +76497772ns 1408715 1c001182 ff010113 addi x2, x2, -16 x2=1c009b30 x2:1c009b40 +76497792ns 1408716 1c001184 00112623 sw x1, 12(x2) x1:1c003454 x2:1c009b30 PA:1c009b3c +76497813ns 1408717 1c001186 00812423 sw x8, 8(x2) x8:1c009b68 x2:1c009b30 PA:1c009b38 +76497833ns 1408718 1c001188 02051163 bne x10, x0, 34 x10:000000ff +76497893ns 1408721 1c0011aa 00b00433 add x8, x0, x11 x8=00000000 x11:00000000 +76497913ns 1408722 1c0011ac 00b57d63 bgeu x10, x11, 26 x10:000000ff x11:00000000 +76497974ns 1408725 1c0011c6 00200613 addi x12, x0, 2 x12=00000002 +76497994ns 1408726 1c0011c8 00000593 addi x11, x0, 0 x11=00000000 +76498014ns 1408727 1c0011ca f4bff0ef jal x1, -182 x1=1c0011cc +76498055ns 1408729 1c001114 fe010113 addi x2, x2, -32 x2=1c009b10 x2:1c009b30 +76498075ns 1408730 1c001116 00112e23 sw x1, 28(x2) x1:1c0011cc x2:1c009b10 PA:1c009b2c +76498095ns 1408731 1c001118 00812c23 sw x8, 24(x2) x8:00000000 x2:1c009b10 PA:1c009b28 +76498115ns 1408732 1c00111a 00912a23 sw x9, 20(x2) x9:1c009190 x2:1c009b10 PA:1c009b24 +76498136ns 1408733 1c00111c 01212823 sw x18, 16(x2) x18:1c009188 x2:1c009b10 PA:1c009b20 +76498156ns 1408734 1c00111e 01312623 sw x19, 12(x2) x19:1c009000 x2:1c009b10 PA:1c009b1c +76498176ns 1408735 1c001120 02051163 bne x10, x0, 34 x10:000000ff +76498237ns 1408738 1c001142 00a00933 add x18, x0, x10 x18=000000ff x10:000000ff +76498257ns 1408739 1c001144 02b50533 mul x10, x10, x11 x10=00000000 x10:000000ff x11:00000000 +76498277ns 1408740 1c001148 00b004b3 add x9, x0, x11 x9=00000000 x11:00000000 +76498297ns 1408741 1c00114a 00c009b3 add x19, x0, x12 x19=00000002 x12:00000002 +76498317ns 1408742 1c00114c 05050513 addi x10, x10, 80 x10=00000050 x10:00000000 +76498338ns 1408743 1c001150 01b010ef jal x1, 6170 x1=1c001154 +76498378ns 1408745 1c00296a fe010113 addi x2, x2, -32 x2=1c009af0 x2:1c009b10 +76498398ns 1408746 1c00296c 00112e23 sw x1, 28(x2) x1:1c001154 x2:1c009af0 PA:1c009b0c +76498418ns 1408747 1c00296e 00812c23 sw x8, 24(x2) x8:00000000 x2:1c009af0 PA:1c009b08 +76498438ns 1408748 1c002970 00a12623 sw x10, 12(x2) x10:00000050 x2:1c009af0 PA:1c009afc +76498459ns 1408749 1c002972 8a4ff0ef jal x1, -3932 x1=1c002976 +76498519ns 1408752 1c001a16 d6818793 addi x15, x3, -664 x15=1c009144 x3:1c0093dc +76498539ns 1408753 1c001a1a 0007a703 lw x14, 0(x15) x14=00000000 x15:1c009144 PA:1c009144 +76498580ns 1408755 1c001a1c 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76498600ns 1408756 1c001a1e 00e7a023 sw x14, 0(x15) x14:00000001 x15:1c009144 PA:1c009144 +76498620ns 1408757 1c001a20 00008067 jalr x0, x1, 0 x1:1c002976 +76498661ns 1408759 1c002976 00c12503 lw x10, 12(x2) x10=00000050 x2:1c009af0 PA:1c009afc +76498681ns 1408760 1c002978 791000ef jal x1, 3984 x1=1c00297c +76498721ns 1408762 1c003908 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76498741ns 1408763 1c00390c 00a005b3 add x11, x0, x10 x11=00000050 x10:00000050 +76498762ns 1408764 1c00390e c447a503 lw x10, -956(x15) x10=1c009e10 x15:1c009000 PA:1c008c44 +76498782ns 1408765 1c003912 0b60006f jal x0, 182 +76498822ns 1408767 1c0039c8 fe010113 addi x2, x2, -32 x2=1c009ad0 x2:1c009af0 +76498842ns 1408768 1c0039ca 00912a23 sw x9, 20(x2) x9:00000000 x2:1c009ad0 PA:1c009ae4 +76498863ns 1408769 1c0039cc 00358493 addi x9, x11, 3 x9=00000053 x11:00000050 +76498883ns 1408770 1c0039d0 ffc4f493 andi x9, x9, -4 x9=00000050 x9:00000053 +76498903ns 1408771 1c0039d2 01212823 sw x18, 16(x2) x18:000000ff x2:1c009ad0 PA:1c009ae0 +76498923ns 1408772 1c0039d4 00112e23 sw x1, 28(x2) x1:1c00297c x2:1c009ad0 PA:1c009aec +76498943ns 1408773 1c0039d6 00812c23 sw x8, 24(x2) x8:00000000 x2:1c009ad0 PA:1c009ae8 +76498963ns 1408774 1c0039d8 01312623 sw x19, 12(x2) x19:00000002 x2:1c009ad0 PA:1c009adc +76498984ns 1408775 1c0039da 00848493 addi x9, x9, 8 x9=00000058 x9:00000050 +76499004ns 1408776 1c0039dc 00c00793 addi x15, x0, 12 x15=0000000c +76499024ns 1408777 1c0039de 00a00933 add x18, x0, x10 x18=1c009e10 x10:1c009e10 +76499044ns 1408778 1c0039e0 04f4f363 bgeu x9, x15, 70 x9:00000058 x15:0000000c +76499125ns 1408782 1c003a26 fc04d0e3 bge x9, x0, -64 x9:00000058 +76499206ns 1408786 1c0039e6 04b4e263 bltu x9, x11, 68 x9:00000058 x11:00000050 +76499226ns 1408787 1c0039ea 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +76499246ns 1408788 1c0039ec 87aff0ef jal x1, -3974 x1=1c0039f0 +76499307ns 1408791 1c002a66 fb1fe06f jal x0, -4176 +76499367ns 1408794 1c001a16 d6818793 addi x15, x3, -664 x15=1c009144 x3:1c0093dc +76499387ns 1408795 1c001a1a 0007a703 lw x14, 0(x15) x14=00000001 x15:1c009144 PA:1c009144 +76499428ns 1408797 1c001a1c 00170713 addi x14, x14, 1 x14=00000002 x14:00000001 +76499448ns 1408798 1c001a1e 00e7a023 sw x14, 0(x15) x14:00000002 x15:1c009144 PA:1c009144 +76499468ns 1408799 1c001a20 00008067 jalr x0, x1, 0 x1:1c0039f0 +76499509ns 1408801 1c0039f0 db81a703 lw x14, -584(x3) x14=1c00c2dc x3:1c0093dc PA:1c009194 +76499529ns 1408802 1c0039f4 db818693 addi x13, x3, -584 x13=1c009194 x3:1c0093dc +76499549ns 1408803 1c0039f8 00e00433 add x8, x0, x14 x8=1c00c2dc x14:1c00c2dc +76499569ns 1408804 1c0039fa 04041363 bne x8, x0, 70 x8:1c00c2dc +76499630ns 1408807 1c003a40 00042783 lw x15, 0(x8) x15=00000058 x8:1c00c2dc PA:1c00c2dc +76499670ns 1408809 1c003a42 409787b3 sub x15, x15, x9 x15=00000000 x15:00000058 x9:00000058 +76499690ns 1408810 1c003a44 0207cf63 blt x15, x0, 62 x15:00000000 +76499711ns 1408811 1c003a48 00b00613 addi x12, x0, 11 x12=0000000b +76499731ns 1408812 1c003a4a 00f67663 bgeu x12, x15, 12 x12:0000000b x15:00000000 +76499791ns 1408815 1c003a56 00442783 lw x15, 4(x8) x15=00000000 x8:1c00c2dc PA:1c00c2e0 +76499812ns 1408816 1c003a58 02871363 bne x14, x8, 38 x14:1c00c2dc x8:1c00c2dc +76499832ns 1408817 1c003a5c 00f6a023 sw x15, 0(x13) x15:00000000 x13:1c009194 PA:1c009194 +76499852ns 1408818 1c003a5e 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +76499872ns 1408819 1c003a60 80aff0ef jal x1, -4086 x1=1c003a64 +76499933ns 1408822 1c002a6a 8e3ff06f jal x0, -1822 +76499973ns 1408824 1c00234c fc010113 addi x2, x2, -64 x2=1c009a90 x2:1c009ad0 +76499993ns 1408825 1c00234e 02812c23 sw x8, 56(x2) x8:1c00c2dc x2:1c009a90 PA:1c009ac8 +76500013ns 1408826 1c002350 d6818413 addi x8, x3, -664 x8=1c009144 x3:1c0093dc +76500034ns 1408827 1c002354 00042783 lw x15, 0(x8) x15=00000002 x8:1c009144 PA:1c009144 +76500054ns 1408828 1c002356 02112e23 sw x1, 60(x2) x1:1c003a64 x2:1c009a90 PA:1c009acc +76500074ns 1408829 1c002358 02912a23 sw x9, 52(x2) x9:00000058 x2:1c009a90 PA:1c009ac4 +76500094ns 1408830 1c00235a 03212823 sw x18, 48(x2) x18:1c009e10 x2:1c009a90 PA:1c009ac0 +76500114ns 1408831 1c00235c 03312623 sw x19, 44(x2) x19:00000002 x2:1c009a90 PA:1c009abc +76500135ns 1408832 1c00235e 03412423 sw x20, 40(x2) x20:1c00918c x2:1c009a90 PA:1c009ab8 +76500155ns 1408833 1c002360 03512223 sw x21, 36(x2) x21:a5a5a5a5 x2:1c009a90 PA:1c009ab4 +76500175ns 1408834 1c002362 03612023 sw x22, 32(x2) x22:a5a5a5a5 x2:1c009a90 PA:1c009ab0 +76500195ns 1408835 1c002364 01712e23 sw x23, 28(x2) x23:a5a5a5a5 x2:1c009a90 PA:1c009aac +76500215ns 1408836 1c002366 02079263 bne x15, x0, 36 x15:00000002 +76500296ns 1408840 1c00238a c83ff0ef jal x1, -894 x1=1c00238e +76500337ns 1408842 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +76500417ns 1408846 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76500458ns 1408848 1c002014 00078863 beq x15, x0, 16 x15:00000001 +76500478ns 1408849 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76500498ns 1408850 1c00201a 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76500518ns 1408851 1c00201c 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76500538ns 1408852 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c009db8 PA:1c009dfc +76500579ns 1408854 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76500599ns 1408855 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c009db8 PA:1c009dfc +76500619ns 1408856 1c002024 00008067 jalr x0, x1, 0 x1:1c00238e +76500660ns 1408858 1c00238e 00042783 lw x15, 0(x8) x15=00000002 x8:1c009144 PA:1c009144 +76500700ns 1408860 1c002390 fff78793 addi x15, x15, -1 x15=00000001 x15:00000002 +76500720ns 1408861 1c002392 00f42023 sw x15, 0(x8) x15:00000001 x8:1c009144 PA:1c009144 +76500740ns 1408862 1c002394 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +76500781ns 1408864 1c002396 02078163 beq x15, x0, 34 x15:00000001 +76500801ns 1408865 1c002398 00000513 addi x10, x0, 0 x10=00000000 +76500821ns 1408866 1c00239a 00a12623 sw x10, 12(x2) x10:00000000 x2:1c009a90 PA:1c009a9c +76500841ns 1408867 1c00239c c8bff0ef jal x1, -886 x1=1c0023a0 +76500902ns 1408870 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76500942ns 1408872 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +76500962ns 1408873 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76500983ns 1408874 1c002030 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +76501023ns 1408876 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c009db8 PA:1c009dfc +76501063ns 1408878 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +76501084ns 1408879 1c002036 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76501104ns 1408880 1c002038 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76501124ns 1408881 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c009db8 PA:1c009dfc +76501164ns 1408883 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +76501185ns 1408884 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c009db8 PA:1c009dfc +76501205ns 1408885 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c009db8 PA:1c009dfc +76501245ns 1408887 1c002042 00079363 bne x15, x0, 6 x15:00000000 +76501265ns 1408888 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +76501346ns 1408892 1c002048 00008067 jalr x0, x1, 0 x1:1c0023a0 +76501387ns 1408894 1c0023a0 03c12083 lw x1, 60(x2) x1=1c003a64 x2:1c009a90 PA:1c009acc +76501407ns 1408895 1c0023a2 03812403 lw x8, 56(x2) x8=1c00c2dc x2:1c009a90 PA:1c009ac8 +76501427ns 1408896 1c0023a4 00c12503 lw x10, 12(x2) x10=00000000 x2:1c009a90 PA:1c009a9c +76501447ns 1408897 1c0023a6 03412483 lw x9, 52(x2) x9=00000058 x2:1c009a90 PA:1c009ac4 +76501467ns 1408898 1c0023a8 03012903 lw x18, 48(x2) x18=1c009e10 x2:1c009a90 PA:1c009ac0 +76501487ns 1408899 1c0023aa 02c12983 lw x19, 44(x2) x19=00000002 x2:1c009a90 PA:1c009abc +76501508ns 1408900 1c0023ac 02812a03 lw x20, 40(x2) x20=1c00918c x2:1c009a90 PA:1c009ab8 +76501528ns 1408901 1c0023ae 02412a83 lw x21, 36(x2) x21=a5a5a5a5 x2:1c009a90 PA:1c009ab4 +76501548ns 1408902 1c0023b0 02012b03 lw x22, 32(x2) x22=a5a5a5a5 x2:1c009a90 PA:1c009ab0 +76501568ns 1408903 1c0023b2 01c12b83 lw x23, 28(x2) x23=a5a5a5a5 x2:1c009a90 PA:1c009aac +76501588ns 1408904 1c0023b4 04010113 addi x2, x2, 64 x2=1c009ad0 x2:1c009a90 +76501609ns 1408905 1c0023b6 00008067 jalr x0, x1, 0 x1:1c003a64 +76501649ns 1408907 1c003a64 00b40513 addi x10, x8, 11 x10=1c00c2e7 x8:1c00c2dc +76501669ns 1408908 1c003a68 00440793 addi x15, x8, 4 x15=1c00c2e0 x8:1c00c2dc +76501689ns 1408909 1c003a6c ff857513 andi x10, x10, -8 x10=1c00c2e0 x10:1c00c2e7 +76501710ns 1408910 1c003a6e 40f50733 sub x14, x10, x15 x14=00000000 x10:1c00c2e0 x15:1c00c2e0 +76501730ns 1408911 1c003a72 fcf500e3 beq x10, x15, -64 x10:1c00c2e0 x15:1c00c2e0 +76501790ns 1408914 1c003a32 01c12083 lw x1, 28(x2) x1=1c00297c x2:1c009ad0 PA:1c009aec +76501811ns 1408915 1c003a34 01812403 lw x8, 24(x2) x8=00000000 x2:1c009ad0 PA:1c009ae8 +76501831ns 1408916 1c003a36 01412483 lw x9, 20(x2) x9=00000000 x2:1c009ad0 PA:1c009ae4 +76501851ns 1408917 1c003a38 01012903 lw x18, 16(x2) x18=000000ff x2:1c009ad0 PA:1c009ae0 +76501871ns 1408918 1c003a3a 00c12983 lw x19, 12(x2) x19=00000002 x2:1c009ad0 PA:1c009adc +76501891ns 1408919 1c003a3c 02010113 addi x2, x2, 32 x2=1c009af0 x2:1c009ad0 +76501911ns 1408920 1c003a3e 00008067 jalr x0, x1, 0 x1:1c00297c +76501952ns 1408922 1c00297c 00a00433 add x8, x0, x10 x8=1c00c2e0 x10:1c00c2e0 +76501972ns 1408923 1c00297e 9cfff0ef jal x1, -1586 x1=1c002982 +76502012ns 1408925 1c00234c fc010113 addi x2, x2, -64 x2=1c009ab0 x2:1c009af0 +76502033ns 1408926 1c00234e 02812c23 sw x8, 56(x2) x8:1c00c2e0 x2:1c009ab0 PA:1c009ae8 +76502053ns 1408927 1c002350 d6818413 addi x8, x3, -664 x8=1c009144 x3:1c0093dc +76502073ns 1408928 1c002354 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +76502093ns 1408929 1c002356 02112e23 sw x1, 60(x2) x1:1c002982 x2:1c009ab0 PA:1c009aec +76502113ns 1408930 1c002358 02912a23 sw x9, 52(x2) x9:00000000 x2:1c009ab0 PA:1c009ae4 +76502134ns 1408931 1c00235a 03212823 sw x18, 48(x2) x18:000000ff x2:1c009ab0 PA:1c009ae0 +76502154ns 1408932 1c00235c 03312623 sw x19, 44(x2) x19:00000002 x2:1c009ab0 PA:1c009adc +76502174ns 1408933 1c00235e 03412423 sw x20, 40(x2) x20:1c00918c x2:1c009ab0 PA:1c009ad8 +76502194ns 1408934 1c002360 03512223 sw x21, 36(x2) x21:a5a5a5a5 x2:1c009ab0 PA:1c009ad4 +76502214ns 1408935 1c002362 03612023 sw x22, 32(x2) x22:a5a5a5a5 x2:1c009ab0 PA:1c009ad0 +76502235ns 1408936 1c002364 01712e23 sw x23, 28(x2) x23:a5a5a5a5 x2:1c009ab0 PA:1c009acc +76502255ns 1408937 1c002366 02079263 bne x15, x0, 36 x15:00000001 +76502336ns 1408941 1c00238a c83ff0ef jal x1, -894 x1=1c00238e +76502376ns 1408943 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +76502457ns 1408947 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76502497ns 1408949 1c002014 00078863 beq x15, x0, 16 x15:00000001 +76502517ns 1408950 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76502537ns 1408951 1c00201a 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76502558ns 1408952 1c00201c 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76502578ns 1408953 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c009db8 PA:1c009dfc +76502618ns 1408955 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76502638ns 1408956 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c009db8 PA:1c009dfc +76502659ns 1408957 1c002024 00008067 jalr x0, x1, 0 x1:1c00238e +76502699ns 1408959 1c00238e 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +76502739ns 1408961 1c002390 fff78793 addi x15, x15, -1 x15=00000000 x15:00000001 +76502760ns 1408962 1c002392 00f42023 sw x15, 0(x8) x15:00000000 x8:1c009144 PA:1c009144 +76502780ns 1408963 1c002394 00042783 lw x15, 0(x8) x15=00000000 x8:1c009144 PA:1c009144 +76502820ns 1408965 1c002396 02078163 beq x15, x0, 34 x15:00000000 +76502881ns 1408968 1c0023b8 d601a783 lw x15, -672(x3) x15=00000003 x3:1c0093dc PA:1c00913c +76502921ns 1408970 1c0023bc fc078ee3 beq x15, x0, -36 x15:00000003 +76502941ns 1408971 1c0023be 1c009937 lui x18, 0x1c009000 x18=1c009000 +76502961ns 1408972 1c0023c2 00000413 addi x8, x0, 0 x8=00000000 +76502982ns 1408973 1c0023c4 93818493 addi x9, x3, -1736 x9=1c008d14 x3:1c0093dc +76503002ns 1408974 1c0023c8 00100993 addi x19, x0, 1 x19=00000001 +76503022ns 1408975 1c0023ca c8890913 addi x18, x18, -888 x18=1c008c88 x18:1c009000 +76503042ns 1408976 1c0023ce 01400a93 addi x21, x0, 20 x21=00000014 +76503062ns 1408977 1c0023d0 04c0006f jal x0, 76 +76503103ns 1408979 1c00241c 0004a783 lw x15, 0(x9) x15=00000000 x9:1c008d14 PA:1c008d14 +76503143ns 1408981 1c00241e fa079ae3 bne x15, x0, -76 x15:00000000 +76503163ns 1408982 1c002420 00040363 beq x8, x0, 6 x8:00000000 +76503244ns 1408986 1c002426 d8018713 addi x14, x3, -640 x14=1c00915c x3:1c0093dc +76503264ns 1408987 1c00242a 00072483 lw x9, 0(x14) x9=00000000 x14:1c00915c PA:1c00915c +76503285ns 1408988 1c00242c d8018413 addi x8, x3, -640 x8=1c00915c x3:1c0093dc +76503305ns 1408989 1c002430 00048d63 beq x9, x0, 26 x9:00000000 +76503386ns 1408993 1c00244a d8c1a783 lw x15, -628(x3) x15=00000000 x3:1c0093dc PA:1c009168 +76503426ns 1408995 1c00244e f40785e3 beq x15, x0, -182 x15:00000000 +76503486ns 1408998 1c002398 00000513 addi x10, x0, 0 x10=00000000 +76503507ns 1408999 1c00239a 00a12623 sw x10, 12(x2) x10:00000000 x2:1c009ab0 PA:1c009abc +76503527ns 1409000 1c00239c c8bff0ef jal x1, -886 x1=1c0023a0 +76503587ns 1409003 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76503628ns 1409005 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +76503648ns 1409006 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76503668ns 1409007 1c002030 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +76503709ns 1409009 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c009db8 PA:1c009dfc +76503749ns 1409011 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +76503769ns 1409012 1c002036 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76503789ns 1409013 1c002038 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76503810ns 1409014 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c009db8 PA:1c009dfc +76503850ns 1409016 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +76503870ns 1409017 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c009db8 PA:1c009dfc +76503890ns 1409018 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c009db8 PA:1c009dfc +76503931ns 1409020 1c002042 00079363 bne x15, x0, 6 x15:00000000 +76503951ns 1409021 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +76504032ns 1409025 1c002048 00008067 jalr x0, x1, 0 x1:1c0023a0 +76504072ns 1409027 1c0023a0 03c12083 lw x1, 60(x2) x1=1c002982 x2:1c009ab0 PA:1c009aec +76504092ns 1409028 1c0023a2 03812403 lw x8, 56(x2) x8=1c00c2e0 x2:1c009ab0 PA:1c009ae8 +76504112ns 1409029 1c0023a4 00c12503 lw x10, 12(x2) x10=00000000 x2:1c009ab0 PA:1c009abc +76504133ns 1409030 1c0023a6 03412483 lw x9, 52(x2) x9=00000000 x2:1c009ab0 PA:1c009ae4 +76504153ns 1409031 1c0023a8 03012903 lw x18, 48(x2) x18=000000ff x2:1c009ab0 PA:1c009ae0 +76504173ns 1409032 1c0023aa 02c12983 lw x19, 44(x2) x19=00000002 x2:1c009ab0 PA:1c009adc +76504193ns 1409033 1c0023ac 02812a03 lw x20, 40(x2) x20=1c00918c x2:1c009ab0 PA:1c009ad8 +76504213ns 1409034 1c0023ae 02412a83 lw x21, 36(x2) x21=a5a5a5a5 x2:1c009ab0 PA:1c009ad4 +76504234ns 1409035 1c0023b0 02012b03 lw x22, 32(x2) x22=a5a5a5a5 x2:1c009ab0 PA:1c009ad0 +76504254ns 1409036 1c0023b2 01c12b83 lw x23, 28(x2) x23=a5a5a5a5 x2:1c009ab0 PA:1c009acc +76504274ns 1409037 1c0023b4 04010113 addi x2, x2, 64 x2=1c009af0 x2:1c009ab0 +76504294ns 1409038 1c0023b6 00008067 jalr x0, x1, 0 x1:1c002982 +76504335ns 1409040 1c002982 00041363 bne x8, x0, 6 x8:1c00c2e0 +76504395ns 1409043 1c002988 01c12083 lw x1, 28(x2) x1=1c001154 x2:1c009af0 PA:1c009b0c +76504415ns 1409044 1c00298a 00800533 add x10, x0, x8 x10=1c00c2e0 x8:1c00c2e0 +76504435ns 1409045 1c00298c 01812403 lw x8, 24(x2) x8=00000000 x2:1c009af0 PA:1c009b08 +76504456ns 1409046 1c00298e 02010113 addi x2, x2, 32 x2=1c009b10 x2:1c009af0 +76504476ns 1409047 1c002990 00008067 jalr x0, x1, 0 x1:1c001154 +76504516ns 1409049 1c001154 00a00433 add x8, x0, x10 x8=1c00c2e0 x10:1c00c2e0 +76504536ns 1409050 1c001156 00050e63 beq x10, x0, 28 x10:1c00c2e0 +76504557ns 1409051 1c001158 00a007b3 add x15, x0, x10 x15=1c00c2e0 x10:1c00c2e0 +76504577ns 1409052 1c00115a 00048363 beq x9, x0, 6 x9:00000000 +76504637ns 1409055 1c001160 00f42023 sw x15, 0(x8) x15:1c00c2e0 x8:1c00c2e0 PA:1c00c2e0 +76504658ns 1409056 1c001162 03242e23 sw x18, 60(x8) x18:000000ff x8:1c00c2e0 PA:1c00c31c +76504678ns 1409057 1c001166 04942023 sw x9, 64(x8) x9:00000000 x8:1c00c2e0 PA:1c00c320 +76504698ns 1409058 1c001168 00100593 addi x11, x0, 1 x11=00000001 +76504718ns 1409059 1c00116a 00800533 add x10, x0, x8 x10=1c00c2e0 x8:1c00c2e0 +76504738ns 1409060 1c00116c f1fff0ef jal x1, -226 x1=1c00116e +76504779ns 1409062 1c00108a ff010113 addi x2, x2, -16 x2=1c009b00 x2:1c009b10 +76504799ns 1409063 1c00108c 00112623 sw x1, 12(x2) x1:1c00116e x2:1c009b00 PA:1c009b0c +76504819ns 1409064 1c00108e 00812423 sw x8, 8(x2) x8:1c00c2e0 x2:1c009b00 PA:1c009b08 +76504839ns 1409065 1c001090 00912223 sw x9, 4(x2) x9:00000000 x2:1c009b00 PA:1c009b04 +76504860ns 1409066 1c001092 02051163 bne x10, x0, 34 x10:1c00c2e0 +76504920ns 1409069 1c0010b4 00a00433 add x8, x0, x10 x8=1c00c2e0 x10:1c00c2e0 +76504940ns 1409070 1c0010b6 00b004b3 add x9, x0, x11 x9=00000001 x11:00000001 +76504960ns 1409071 1c0010b8 755000ef jal x1, 3924 x1=1c0010bc +76505001ns 1409073 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +76505082ns 1409077 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76505122ns 1409079 1c002014 00078863 beq x15, x0, 16 x15:00000001 +76505142ns 1409080 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76505162ns 1409081 1c00201a 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76505183ns 1409082 1c00201c 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76505203ns 1409083 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c009db8 PA:1c009dfc +76505243ns 1409085 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76505263ns 1409086 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c009db8 PA:1c009dfc +76505284ns 1409087 1c002024 00008067 jalr x0, x1, 0 x1:1c0010bc +76505324ns 1409089 1c0010bc 04042683 lw x13, 64(x8) x13=00000000 x8:1c00c2e0 PA:1c00c320 +76505344ns 1409090 1c0010be 03c42783 lw x15, 60(x8) x15=000000ff x8:1c00c2e0 PA:1c00c31c +76505364ns 1409091 1c0010c0 00042703 lw x14, 0(x8) x14=1c00c2e0 x8:1c00c2e0 PA:1c00c2e0 +76505385ns 1409092 1c0010c2 02042c23 sw x0, 56(x8) x8:1c00c2e0 PA:1c00c318 +76505405ns 1409093 1c0010c6 02f687b3 mul x15, x13, x15 x15=00000000 x13:00000000 x15:000000ff +76505425ns 1409094 1c0010ca 00e42223 sw x14, 4(x8) x14:1c00c2e0 x8:1c00c2e0 PA:1c00c2e4 +76505445ns 1409095 1c0010cc 00f70633 add x12, x14, x15 x12=1c00c2e0 x14:1c00c2e0 x15:00000000 +76505465ns 1409096 1c0010d0 40d787b3 sub x15, x15, x13 x15=00000000 x15:00000000 x13:00000000 +76505485ns 1409097 1c0010d2 00e787b3 add x15, x15, x14 x15=1c00c2e0 x15:00000000 x14:1c00c2e0 +76505506ns 1409098 1c0010d4 00f42623 sw x15, 12(x8) x15:1c00c2e0 x8:1c00c2e0 PA:1c00c2ec +76505526ns 1409099 1c0010d6 fff00793 addi x15, x0, -1 x15=ffffffff +76505546ns 1409100 1c0010d8 04f40223 sb x15, 68(x8) x15:ffffffff x8:1c00c2e0 PA:1c00c324 +76505566ns 1409101 1c0010dc 00c42423 sw x12, 8(x8) x12:1c00c2e0 x8:1c00c2e0 PA:1c00c2e8 +76505586ns 1409102 1c0010de 04f402a3 sb x15, 69(x8) x15:ffffffff x8:1c00c2e0 PA:1c00c325 +76505607ns 1409103 1c0010e2 02049263 bne x9, x0, 36 x9:00000001 +76505687ns 1409107 1c001106 01040513 addi x10, x8, 16 x10=1c00c2f0 x8:1c00c2e0 +76505708ns 1409108 1c00110a dbdff0ef jal x1, -580 x1=1c00110c +76505768ns 1409111 1c000ec6 00850793 addi x15, x10, 8 x15=1c00c2f8 x10:1c00c2f0 +76505788ns 1409112 1c000eca fff00713 addi x14, x0, -1 x14=ffffffff +76505809ns 1409113 1c000ecc 00f52223 sw x15, 4(x10) x15:1c00c2f8 x10:1c00c2f0 PA:1c00c2f4 +76505829ns 1409114 1c000ece 00e52423 sw x14, 8(x10) x14:ffffffff x10:1c00c2f0 PA:1c00c2f8 +76505849ns 1409115 1c000ed0 00f52623 sw x15, 12(x10) x15:1c00c2f8 x10:1c00c2f0 PA:1c00c2fc +76505869ns 1409116 1c000ed2 00f52823 sw x15, 16(x10) x15:1c00c2f8 x10:1c00c2f0 PA:1c00c300 +76505889ns 1409117 1c000ed4 00052023 sw x0, 0(x10) x10:1c00c2f0 PA:1c00c2f0 +76505910ns 1409118 1c000ed8 00008067 jalr x0, x1, 0 x1:1c00110c +76505950ns 1409120 1c00110c 02440513 addi x10, x8, 36 x10=1c00c304 x8:1c00c2e0 +76505970ns 1409121 1c001110 db7ff0ef jal x1, -586 x1=1c001112 +76506031ns 1409124 1c000ec6 00850793 addi x15, x10, 8 x15=1c00c30c x10:1c00c304 +76506051ns 1409125 1c000eca fff00713 addi x14, x0, -1 x14=ffffffff +76506071ns 1409126 1c000ecc 00f52223 sw x15, 4(x10) x15:1c00c30c x10:1c00c304 PA:1c00c308 +76506091ns 1409127 1c000ece 00e52423 sw x14, 8(x10) x14:ffffffff x10:1c00c304 PA:1c00c30c +76506111ns 1409128 1c000ed0 00f52623 sw x15, 12(x10) x15:1c00c30c x10:1c00c304 PA:1c00c310 +76506132ns 1409129 1c000ed2 00f52823 sw x15, 16(x10) x15:1c00c30c x10:1c00c304 PA:1c00c314 +76506152ns 1409130 1c000ed4 00052023 sw x0, 0(x10) x10:1c00c304 PA:1c00c304 +76506172ns 1409131 1c000ed8 00008067 jalr x0, x1, 0 x1:1c001112 +76506212ns 1409133 1c001112 fe5ff06f jal x0, -28 +76506273ns 1409136 1c0010f6 731000ef jal x1, 3888 x1=1c0010fa +76506334ns 1409139 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76506374ns 1409141 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +76506394ns 1409142 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76506414ns 1409143 1c002030 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +76506455ns 1409145 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c009db8 PA:1c009dfc +76506495ns 1409147 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +76506515ns 1409148 1c002036 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76506535ns 1409149 1c002038 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76506556ns 1409150 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c009db8 PA:1c009dfc +76506596ns 1409152 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +76506616ns 1409153 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c009db8 PA:1c009dfc +76506636ns 1409154 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c009db8 PA:1c009dfc +76506677ns 1409156 1c002042 00079363 bne x15, x0, 6 x15:00000000 +76506697ns 1409157 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +76506778ns 1409161 1c002048 00008067 jalr x0, x1, 0 x1:1c0010fa +76506818ns 1409163 1c0010fa 00c12083 lw x1, 12(x2) x1=1c00116e x2:1c009b00 PA:1c009b0c +76506838ns 1409164 1c0010fc 00812403 lw x8, 8(x2) x8=1c00c2e0 x2:1c009b00 PA:1c009b08 +76506859ns 1409165 1c0010fe 00412483 lw x9, 4(x2) x9=00000000 x2:1c009b00 PA:1c009b04 +76506879ns 1409166 1c001100 00100513 addi x10, x0, 1 x10=00000001 +76506899ns 1409167 1c001102 01010113 addi x2, x2, 16 x2=1c009b10 x2:1c009b00 +76506919ns 1409168 1c001104 00008067 jalr x0, x1, 0 x1:1c00116e +76506980ns 1409171 1c00116e 05340623 sb x19, 76(x8) x19:00000002 x8:1c00c2e0 PA:1c00c32c +76507000ns 1409172 1c001172 01c12083 lw x1, 28(x2) x1=1c0011cc x2:1c009b10 PA:1c009b2c +76507020ns 1409173 1c001174 00800533 add x10, x0, x8 x10=1c00c2e0 x8:1c00c2e0 +76507040ns 1409174 1c001176 01812403 lw x8, 24(x2) x8=00000000 x2:1c009b10 PA:1c009b28 +76507060ns 1409175 1c001178 01412483 lw x9, 20(x2) x9=1c009190 x2:1c009b10 PA:1c009b24 +76507081ns 1409176 1c00117a 01012903 lw x18, 16(x2) x18=1c009188 x2:1c009b10 PA:1c009b20 +76507101ns 1409177 1c00117c 00c12983 lw x19, 12(x2) x19=1c009000 x2:1c009b10 PA:1c009b1c +76507121ns 1409178 1c00117e 02010113 addi x2, x2, 32 x2=1c009b30 x2:1c009b10 +76507141ns 1409179 1c001180 00008067 jalr x0, x1, 0 x1:1c0011cc +76507182ns 1409181 1c0011cc 00050263 beq x10, x0, 4 x10:1c00c2e0 +76507202ns 1409182 1c0011ce 02852c23 sw x8, 56(x10) x8:00000000 x10:1c00c2e0 PA:1c00c318 +76507222ns 1409183 1c0011d0 00c12083 lw x1, 12(x2) x1=1c003454 x2:1c009b30 PA:1c009b3c +76507242ns 1409184 1c0011d2 00812403 lw x8, 8(x2) x8=1c009b68 x2:1c009b30 PA:1c009b38 +76507262ns 1409185 1c0011d4 01010113 addi x2, x2, 16 x2=1c009b40 x2:1c009b30 +76507283ns 1409186 1c0011d6 00008067 jalr x0, x1, 0 x1:1c003454 +76507323ns 1409188 1c003454 02a42a23 sw x10, 52(x8) x10:1c00c2e0 x8:1c009b68 PA:1c009b9c +76507343ns 1409189 1c003456 00050b63 beq x10, x0, 22 x10:1c00c2e0 +76507363ns 1409190 1c003458 1c0037b7 lui x15, 0x1c003000 x15=1c003000 +76507384ns 1409191 1c00345c 40c78793 addi x15, x15, 1036 x15=1c00340c x15:1c003000 +76507404ns 1409192 1c003460 02f42c23 sw x15, 56(x8) x15:1c00340c x8:1c009b68 PA:1c009ba0 +76507424ns 1409193 1c003462 1c0037b7 lui x15, 0x1c003000 x15=1c003000 +76507444ns 1409194 1c003466 3da78793 addi x15, x15, 986 x15=1c0033da x15:1c003000 +76507464ns 1409195 1c00346a 02f42e23 sw x15, 60(x8) x15:1c0033da x8:1c009b68 PA:1c009ba4 +76507484ns 1409196 1c00346c 00100793 addi x15, x0, 1 x15=00000001 +76507505ns 1409197 1c00346e 04f403a3 sb x15, 71(x8) x15:00000001 x8:1c009b68 PA:1c009baf +76507525ns 1409198 1c003472 fff00793 addi x15, x0, -1 x15=ffffffff +76507545ns 1409199 1c003474 00c12083 lw x1, 12(x2) x1=1c002b5a x2:1c009b40 PA:1c009b4c +76507565ns 1409200 1c003476 04f402a3 sb x15, 69(x8) x15:ffffffff x8:1c009b68 PA:1c009bad +76507585ns 1409201 1c00347a 00800533 add x10, x0, x8 x10=1c009b68 x8:1c009b68 +76507606ns 1409202 1c00347c 00812403 lw x8, 8(x2) x8=1c009be0 x2:1c009b40 PA:1c009b48 +76507626ns 1409203 1c00347e 01010113 addi x2, x2, 16 x2=1c009b50 x2:1c009b40 +76507646ns 1409204 1c003480 00008067 jalr x0, x1, 0 x1:1c002b5a +76507686ns 1409206 1c002b5a 00412683 lw x13, 4(x2) x13=00000001 x2:1c009b50 PA:1c009b54 +76507707ns 1409207 1c002b5c 00812603 lw x12, 8(x2) x12=00000008 x2:1c009b50 PA:1c009b58 +76507727ns 1409208 1c002b5e 00c12583 lw x11, 12(x2) x11=1c009bd6 x2:1c009b50 PA:1c009b5c +76507747ns 1409209 1c002b60 01810713 addi x14, x2, 24 x14=1c009b68 x2:1c009b50 +76507767ns 1409210 1c002b62 00800533 add x10, x0, x8 x10=1c009be0 x8:1c009be0 +76507787ns 1409211 1c002b64 fdfff0ef jal x1, -34 x1=1c002b66 +76507828ns 1409213 1c002b42 00852503 lw x10, 8(x10) x10=1c00b8c0 x10:1c009be0 PA:1c009be8 +76507848ns 1409214 1c002b44 2820006f jal x0, 642 +76507909ns 1409217 1c002dc6 00452e83 lw x29, 4(x10) x29=1c00b890 x10:1c00b8c0 PA:1c00b8c4 +76507929ns 1409218 1c002dca fd010113 addi x2, x2, -48 x2=1c009b20 x2:1c009b50 +76507949ns 1409219 1c002dcc 02112623 sw x1, 44(x2) x1:1c002b66 x2:1c009b20 PA:1c009b4c +76507969ns 1409220 1c002dce 02812423 sw x8, 40(x2) x8:1c009be0 x2:1c009b20 PA:1c009b48 +76507989ns 1409221 1c002dd0 00c008b3 add x17, x0, x12 x17=00000008 x12:00000008 +76508009ns 1409222 1c002dd2 00e00633 add x12, x0, x14 x12=1c009b68 x14:1c009b68 +76508030ns 1409223 1c002dd4 00010737 lui x14, 0x10000 x14=00010000 +76508050ns 1409224 1c002dd6 014ec783 lbu x15, 20(x29) x15=00000000 x29:1c00b890 PA:1c00b8a4 +76508070ns 1409225 1c002dda 00852803 lw x16, 8(x10) x16=00000003 x10:1c00b8c0 PA:1c00b8c8 +76508090ns 1409226 1c002dde 01177463 bgeu x14, x17, 8 x14:00010000 x17:00000008 +76508171ns 1409230 1c002de6 30047473 csrrci x8, 0x00000008, 0x300 x8=00000088 +76508252ns 1409234 1c002dea 03954303 lbu x6, 57(x10) x6=00000000 x10:1c00b8c0 PA:1c00b8f9 +76508292ns 1409236 1c002dee 0a030963 beq x6, x0, 178 x6:00000000 +76508353ns 1409239 1c002ea0 00000713 addi x14, x0, 0 x14=00000000 +76508373ns 1409240 1c002ea2 00800e13 addi x28, x0, 8 x28=00000008 +76508393ns 1409241 1c002ea4 f5fff06f jal x0, -162 +76508454ns 1409244 1c002e02 00ceaf03 lw x30, 12(x29) x30=00000000 x29:1c00b890 PA:1c00b89c +76508494ns 1409246 1c002e06 0a0f1863 bne x30, x0, 176 x30:00000000 +76508514ns 1409247 1c002e0a 03854703 lbu x14, 56(x10) x14=00000000 x10:1c00b8c0 PA:1c00b8f8 +76508534ns 1409248 1c002e0e 01052623 sw x16, 12(x10) x16:00000003 x10:1c00b8c0 PA:1c00b8cc +76508555ns 1409249 1c002e12 10000837 lui x16, 0x10000000 x16=10000000 +76508575ns 1409250 1c002e16 01076733 or x14, x14, x16 x14=10000000 x14:00000000 x16:10000000 +76508595ns 1409251 1c002e1a 00e52823 sw x14, 16(x10) x14:10000000 x10:1c00b8c0 PA:1c00b8d0 +76508615ns 1409252 1c002e1c fffe0713 addi x14, x28, -1 x14=00000007 x28:00000008 +76508635ns 1409253 1c002e20 03c8de33 divu x28, x17, x28 x28=00000001 x17:00000008 x28:00000008 +76509261ns 1409284 1c002e24 00c6f813 andi x16, x13, 12 x16=00000000 x13:00000001 +76509282ns 1409285 1c002e28 ffc80813 addi x16, x16, -4 x16=fffffffc x16:00000000 +76509302ns 1409286 1c002e2a 00183813 sltiu x16, x16, 1 x16=00000000 x16:fffffffc +76509322ns 1409287 1c002e2e 01071713 slli x14, x14, 0x10 x14=00070000 x14:00000007 +76509342ns 1409288 1c002e30 01b81813 slli x16, x16, 0x1b x16=00000000 x16:00000000 +76509362ns 1409289 1c002e32 00e86833 or x16, x16, x14 x16=00070000 x16:00000000 x14:00070000 +76509383ns 1409290 1c002e36 60000737 lui x14, 0x60000000 x14=60000000 +76509403ns 1409291 1c002e3a 00e86833 or x16, x16, x14 x16=60070000 x16:00070000 x14:60000000 +76509423ns 1409292 1c002e3e 0036f693 andi x13, x13, 3 x13=00000001 x13:00000001 +76509443ns 1409293 1c002e40 00100713 addi x14, x0, 1 x14=00000001 +76509463ns 1409294 1c002e42 fffe0e13 addi x28, x28, -1 x28=00000000 x28:00000001 +76509483ns 1409295 1c002e44 01c86833 or x16, x16, x28 x16=60070000 x16:60070000 x28:00000000 +76509504ns 1409296 1c002e48 01052a23 sw x16, 20(x10) x16:60070000 x10:1c00b8c0 PA:1c00b8d4 +76509524ns 1409297 1c002e4c 06e68163 beq x13, x14, 98 x13:00000001 x14:00000001 +76509605ns 1409301 1c002eae 900006b7 lui x13, 0x90000000 x13=90000000 +76509625ns 1409302 1c002eb2 00368693 addi x13, x13, 3 x13=90000003 x13:90000000 +76509645ns 1409303 1c002eb4 fa3ff06f jal x0, -94 +76509685ns 1409305 1c002e56 00178793 addi x15, x15, 1 x15=00000001 x15:00000000 +76509706ns 1409306 1c002e58 1a102737 lui x14, 0x1a102000 x14=1a102000 +76509726ns 1409307 1c002e5c 00d52c23 sw x13, 24(x10) x13:90000003 x10:1c00b8c0 PA:1c00b8d8 +76509746ns 1409308 1c002e5e 08070713 addi x14, x14, 128 x14=1a102080 x14:1a102000 +76509766ns 1409309 1c002e62 00779793 slli x15, x15, 0x7 x15=00000080 x15:00000001 +76509786ns 1409310 1c002e64 00cea623 sw x12, 12(x29) x12:1c009b68 x29:1c00b890 PA:1c00b89c +76509807ns 1409311 1c002e68 000ea423 sw x0, 8(x29) x29:1c00b890 PA:1c00b898 +76509827ns 1409312 1c002e6c 00e787b3 add x15, x15, x14 x15=1a102100 x15:00000080 x14:1a102080 +76509847ns 1409313 1c002e6e 00c50513 addi x10, x10, 12 x10=1c00b8cc x10:1c00b8c0 +76509867ns 1409314 1c002e70 00078793 addi x15, x15, 0 x15=1a102100 x15:1a102100 +76509887ns 1409315 1c002e74 02a7a023 sw x10, 32(x15) x10:1c00b8cc x15:1a102100 PA:1a102120 +76509908ns 1409316 1c002e76 01000713 addi x14, x0, 16 x14=00000010 +76509968ns 1409319 1c002e78 02e7a223 sw x14, 36(x15) x14:00000010 x15:1a102100 PA:1a102124 +76509988ns 1409320 1c002e7a 01400713 addi x14, x0, 20 x14=00000014 +76510049ns 1409323 1c002e7c 02e7a423 sw x14, 40(x15) x14:00000014 x15:1a102100 PA:1a102128 +76510069ns 1409324 1c002e7e 00131313 slli x6, x6, 0x1 x6=00000000 x6:00000000 +76510130ns 1409327 1c002e80 01036313 ori x6, x6, 16 x6=00000010 x6:00000000 +76510150ns 1409328 1c002e84 00b7a823 sw x11, 16(x15) x11:1c009bd6 x15:1a102100 PA:1a102110 +76510170ns 1409329 1c002e86 00788893 addi x17, x17, 7 x17=0000000f x17:00000008 +76510231ns 1409332 1c002e88 0038d893 srli x17, x17, 0x3 x17=00000001 x17:0000000f +76510251ns 1409333 1c002e8c 0117aa23 sw x17, 20(x15) x17:00000001 x15:1a102100 PA:1a102114 +76510271ns 1409334 1c002e90 0067ac23 sw x6, 24(x15) x6:00000010 x15:1a102100 PA:1a102118 +76510352ns 1409338 1c002e94 00800533 add x10, x0, x8 x10=00000088 x8:00000088 +76510412ns 1409341 1c002e96 02812403 lw x8, 40(x2) x8=1c009be0 x2:1c009b20 PA:1c009b48 +76510433ns 1409342 1c002e98 02c12083 lw x1, 44(x2) x1=1c002b66 x2:1c009b20 PA:1c009b4c +76510453ns 1409343 1c002e9a 03010113 addi x2, x2, 48 x2=1c009b50 x2:1c009b20 +76510473ns 1409344 1c002e9c d1dff06f jal x0, -740 +76510513ns 1409346 1c002bb8 30051073 csrrw x0, x10, 0x300 x10:00000088 +76510594ns 1409350 1c002bbc 00008067 jalr x0, x1, 0 x1:1c002b66 +76510634ns 1409352 1c002b66 01810513 addi x10, x2, 24 x10=1c009b68 x2:1c009b50 +76510655ns 1409353 1c002b68 14f000ef jal x1, 2382 x1=1c002b6c +76510695ns 1409355 1c0034b6 ff010113 addi x2, x2, -16 x2=1c009b40 x2:1c009b50 +76510715ns 1409356 1c0034b8 00812423 sw x8, 8(x2) x8:1c009be0 x2:1c009b40 PA:1c009b48 +76510735ns 1409357 1c0034ba 00112623 sw x1, 12(x2) x1:1c002b6c x2:1c009b40 PA:1c009b4c +76510756ns 1409358 1c0034bc 00a00433 add x8, x0, x10 x8=1c009b68 x10:1c009b68 +76510776ns 1409359 1c0034be 04444783 lbu x15, 68(x8) x15=00000000 x8:1c009b68 PA:1c009bac +76510816ns 1409361 1c0034c2 01879793 slli x15, x15, 0x18 x15=00000000 x15:00000000 +76510836ns 1409362 1c0034c4 4187d793 srai x15, x15, 0x418 x15=00000000 x15:00000000 +76510857ns 1409363 1c0034c6 00078763 beq x15, x0, 14 x15:00000000 +76510917ns 1409366 1c0034d4 03442783 lw x15, 52(x8) x15=1c00c2e0 x8:1c009b68 PA:1c009b9c +76510958ns 1409368 1c0034d6 fe0784e3 beq x15, x0, -24 x15:1c00c2e0 +76510978ns 1409369 1c0034d8 03842783 lw x15, 56(x8) x15=1c00340c x8:1c009b68 PA:1c009ba0 +76510998ns 1409370 1c0034da 03442503 lw x10, 52(x8) x10=1c00c2e0 x8:1c009b68 PA:1c009b9c +76511038ns 1409372 1c0034dc 000780e7 jalr x1, x15, 0 x1=1c0034de x15:1c00340c +76511079ns 1409374 1c00340c fe010113 addi x2, x2, -32 x2=1c009b20 x2:1c009b40 +76511099ns 1409375 1c00340e 00112e23 sw x1, 28(x2) x1:1c0034de x2:1c009b20 PA:1c009b3c +76511119ns 1409376 1c003410 00812c23 sw x8, 24(x2) x8:1c009b68 x2:1c009b20 PA:1c009b38 +76511139ns 1409377 1c003412 30047473 csrrci x8, 0x00000008, 0x300 x8=00000088 +76511220ns 1409381 1c003416 342027f3 csrrs x15, x0, 0x342 x15=8000001a +76511240ns 1409382 1c00341a 0007dc63 bge x15, x0, 24 x15:8000001a +76511260ns 1409383 1c00341e 00c10613 addi x12, x2, 12 x12=1c009b2c x2:1c009b20 +76511281ns 1409384 1c003420 00000593 addi x11, x0, 0 x11=00000000 +76511301ns 1409385 1c003422 b8efe0ef jal x1, -7282 x1=1c003426 +76511341ns 1409387 1c0017b0 fe010113 addi x2, x2, -32 x2=1c009b00 x2:1c009b20 +76511361ns 1409388 1c0017b2 00112e23 sw x1, 28(x2) x1:1c003426 x2:1c009b00 PA:1c009b1c +76511382ns 1409389 1c0017b4 00812c23 sw x8, 24(x2) x8:00000088 x2:1c009b00 PA:1c009b18 +76511402ns 1409390 1c0017b6 00912a23 sw x9, 20(x2) x9:1c009190 x2:1c009b00 PA:1c009b14 +76511422ns 1409391 1c0017b8 01212823 sw x18, 16(x2) x18:1c009188 x2:1c009b00 PA:1c009b10 +76511442ns 1409392 1c0017ba 01312623 sw x19, 12(x2) x19:1c009000 x2:1c009b00 PA:1c009b0c +76511462ns 1409393 1c0017bc 01412423 sw x20, 8(x2) x20:1c00918c x2:1c009b00 PA:1c009b08 +76511483ns 1409394 1c0017be 02051163 bne x10, x0, 34 x10:1c00c2e0 +76511543ns 1409397 1c0017e0 00a00433 add x8, x0, x10 x8=1c00c2e0 x10:1c00c2e0 +76511563ns 1409398 1c0017e2 00c00933 add x18, x0, x12 x18=1c009b2c x12:1c009b2c +76511583ns 1409399 1c0017e4 00059e63 bne x11, x0, 28 x11:00000000 +76511604ns 1409400 1c0017e6 04052783 lw x15, 64(x10) x15=00000000 x10:1c00c2e0 PA:1c00c320 +76511644ns 1409402 1c0017e8 00078c63 beq x15, x0, 24 x15:00000000 +76511705ns 1409405 1c001800 03842983 lw x19, 56(x8) x19=00000000 x8:1c00c2e0 PA:1c00c318 +76511725ns 1409406 1c001804 00000513 addi x10, x0, 0 x10=00000000 +76511745ns 1409407 1c001806 02098463 beq x19, x0, 40 x19:00000000 +76511806ns 1409410 1c00182e 01c12083 lw x1, 28(x2) x1=1c003426 x2:1c009b00 PA:1c009b1c +76511826ns 1409411 1c001830 01812403 lw x8, 24(x2) x8=00000088 x2:1c009b00 PA:1c009b18 +76511846ns 1409412 1c001832 01412483 lw x9, 20(x2) x9=1c009190 x2:1c009b00 PA:1c009b14 +76511866ns 1409413 1c001834 01012903 lw x18, 16(x2) x18=1c009188 x2:1c009b00 PA:1c009b10 +76511886ns 1409414 1c001836 00c12983 lw x19, 12(x2) x19=1c009000 x2:1c009b00 PA:1c009b0c +76511907ns 1409415 1c001838 00812a03 lw x20, 8(x2) x20=1c00918c x2:1c009b00 PA:1c009b08 +76511927ns 1409416 1c00183a 02010113 addi x2, x2, 32 x2=1c009b20 x2:1c009b00 +76511947ns 1409417 1c00183c 00008067 jalr x0, x1, 0 x1:1c003426 +76512007ns 1409420 1c003426 30041073 csrrw x0, x8, 0x300 x8:00000088 +76512088ns 1409424 1c00342a 01c12083 lw x1, 28(x2) x1=1c0034de x2:1c009b20 PA:1c009b3c +76512108ns 1409425 1c00342c 01812403 lw x8, 24(x2) x8=1c009b68 x2:1c009b20 PA:1c009b38 +76512129ns 1409426 1c00342e 02010113 addi x2, x2, 32 x2=1c009b40 x2:1c009b20 +76512149ns 1409427 1c003430 00008067 jalr x0, x1, 0 x1:1c0034de +76512189ns 1409429 1c0034de fe1ff06f jal x0, -32 +76512250ns 1409432 1c0034be 04444783 lbu x15, 68(x8) x15=00000000 x8:1c009b68 PA:1c009bac +76512290ns 1409434 1c0034c2 01879793 slli x15, x15, 0x18 x15=00000000 x15:00000000 +76512310ns 1409435 1c0034c4 4187d793 srai x15, x15, 0x418 x15=00000000 x15:00000000 +76512331ns 1409436 1c0034c6 00078763 beq x15, x0, 14 x15:00000000 +76512391ns 1409439 1c0034d4 03442783 lw x15, 52(x8) x15=1c00c2e0 x8:1c009b68 PA:1c009b9c +76512432ns 1409441 1c0034d6 fe0784e3 beq x15, x0, -24 x15:1c00c2e0 +76512452ns 1409442 1c0034d8 03842783 lw x15, 56(x8) x15=1c00340c x8:1c009b68 PA:1c009ba0 +76512472ns 1409443 1c0034da 03442503 lw x10, 52(x8) x10=1c00c2e0 x8:1c009b68 PA:1c009b9c +76512593ns 1409449 1c000868 0980006f jal x0, 152 +76512633ns 1409451 1c000900 f8810113 addi x2, x2, -120 x2=1c009ac8 x2:1c009b40 +76512654ns 1409452 1c000904 00112223 sw x1, 4(x2) x1:1c0034de x2:1c009ac8 PA:1c009acc +76512674ns 1409453 1c000906 00512423 sw x5, 8(x2) x5:a5a5a5a5 x2:1c009ac8 PA:1c009ad0 +76512694ns 1409454 1c000908 00612623 sw x6, 12(x2) x6:00000010 x2:1c009ac8 PA:1c009ad4 +76512714ns 1409455 1c00090a 00712823 sw x7, 16(x2) x7:a5a5a5a5 x2:1c009ac8 PA:1c009ad8 +76512734ns 1409456 1c00090c 00812a23 sw x8, 20(x2) x8:1c009b68 x2:1c009ac8 PA:1c009adc +76512755ns 1409457 1c00090e 00912c23 sw x9, 24(x2) x9:1c009190 x2:1c009ac8 PA:1c009ae0 +76512775ns 1409458 1c000910 00a12e23 sw x10, 28(x2) x10:1c00c2e0 x2:1c009ac8 PA:1c009ae4 +76512795ns 1409459 1c000912 02b12023 sw x11, 32(x2) x11:00000000 x2:1c009ac8 PA:1c009ae8 +76512815ns 1409460 1c000914 02c12223 sw x12, 36(x2) x12:1c009b2c x2:1c009ac8 PA:1c009aec +76512835ns 1409461 1c000916 02d12423 sw x13, 40(x2) x13:90000003 x2:1c009ac8 PA:1c009af0 +76512856ns 1409462 1c000918 02e12623 sw x14, 44(x2) x14:00000014 x2:1c009ac8 PA:1c009af4 +76512876ns 1409463 1c00091a 02f12823 sw x15, 48(x2) x15:1c00340c x2:1c009ac8 PA:1c009af8 +76512896ns 1409464 1c00091c 03012a23 sw x16, 52(x2) x16:60070000 x2:1c009ac8 PA:1c009afc +76512916ns 1409465 1c00091e 03112c23 sw x17, 56(x2) x17:00000001 x2:1c009ac8 PA:1c009b00 +76512936ns 1409466 1c000920 03212e23 sw x18, 60(x2) x18:1c009188 x2:1c009ac8 PA:1c009b04 +76512957ns 1409467 1c000922 05312023 sw x19, 64(x2) x19:1c009000 x2:1c009ac8 PA:1c009b08 +76512977ns 1409468 1c000924 05412223 sw x20, 68(x2) x20:1c00918c x2:1c009ac8 PA:1c009b0c +76512997ns 1409469 1c000926 05512423 sw x21, 72(x2) x21:a5a5a5a5 x2:1c009ac8 PA:1c009b10 +76513017ns 1409470 1c000928 05612623 sw x22, 76(x2) x22:a5a5a5a5 x2:1c009ac8 PA:1c009b14 +76513037ns 1409471 1c00092a 05712823 sw x23, 80(x2) x23:a5a5a5a5 x2:1c009ac8 PA:1c009b18 +76513057ns 1409472 1c00092c 05812a23 sw x24, 84(x2) x24:a5a5a5a5 x2:1c009ac8 PA:1c009b1c +76513078ns 1409473 1c00092e 05912c23 sw x25, 88(x2) x25:a5a5a5a5 x2:1c009ac8 PA:1c009b20 +76513098ns 1409474 1c000930 05a12e23 sw x26, 92(x2) x26:a5a5a5a5 x2:1c009ac8 PA:1c009b24 +76513118ns 1409475 1c000932 07b12023 sw x27, 96(x2) x27:a5a5a5a5 x2:1c009ac8 PA:1c009b28 +76513138ns 1409476 1c000934 07c12223 sw x28, 100(x2) x28:00000000 x2:1c009ac8 PA:1c009b2c +76513158ns 1409477 1c000936 07d12423 sw x29, 104(x2) x29:1c00b890 x2:1c009ac8 PA:1c009b30 +76513179ns 1409478 1c000938 07e12623 sw x30, 108(x2) x30:00000000 x2:1c009ac8 PA:1c009b34 +76513199ns 1409479 1c00093a 07f12823 sw x31, 112(x2) x31:a5a5a5a5 x2:1c009ac8 PA:1c009b38 +76513219ns 1409480 1c00093c 300022f3 csrrs x5, x0, 0x300 x5=00001880 +76513300ns 1409484 1c000940 06512a23 sw x5, 116(x2) x5:00001880 x2:1c009ac8 PA:1c009b3c +76513320ns 1409485 1c000942 fe810113 addi x2, x2, -24 x2=1c009ab0 x2:1c009ac8 +76513340ns 1409486 1c000944 7c0022f3 csrrs x5, x0, 0x7c0 x5=00000000 +76513360ns 1409487 1c000948 7c102373 csrrs x6, x0, 0x7c1 x6=00000000 +76513381ns 1409488 1c00094c 7c2023f3 csrrs x7, x0, 0x7c2 x7=00000000 +76513401ns 1409489 1c000950 7c402e73 csrrs x28, x0, 0x7c4 x28=00000000 +76513421ns 1409490 1c000954 7c502ef3 csrrs x29, x0, 0x7c5 x29=00000000 +76513441ns 1409491 1c000958 7c602f73 csrrs x30, x0, 0x7c6 x30=00000000 +76513461ns 1409492 1c00095c 00512223 sw x5, 4(x2) x5:00000000 x2:1c009ab0 PA:1c009ab4 +76513482ns 1409493 1c00095e 00612423 sw x6, 8(x2) x6:00000000 x2:1c009ab0 PA:1c009ab8 +76513502ns 1409494 1c000960 00712623 sw x7, 12(x2) x7:00000000 x2:1c009ab0 PA:1c009abc +76513522ns 1409495 1c000962 01c12823 sw x28, 16(x2) x28:00000000 x2:1c009ab0 PA:1c009ac0 +76513542ns 1409496 1c000964 01d12a23 sw x29, 20(x2) x29:00000000 x2:1c009ab0 PA:1c009ac4 +76513562ns 1409497 1c000966 01e12c23 sw x30, 24(x2) x30:00000000 x2:1c009ab0 PA:1c009ac8 +76513582ns 1409498 1c000968 d541a283 lw x5, -684(x3) x5=1c009db8 x3:1c0093dc PA:1c009130 +76513623ns 1409500 1c00096c 0022a023 sw x2, 0(x5) x2:1c009ab0 x5:1c009db8 PA:1c009db8 +76513643ns 1409501 1c000970 34202573 csrrs x10, x0, 0x342 x10=8000001a +76513663ns 1409502 1c000974 341025f3 csrrs x11, x0, 0x341 x11=1c0034dc +76513683ns 1409503 1c000978 01f55613 srli x12, x10, 0x1f x12=00000001 x10:8000001a +76513704ns 1409504 1c00097c 00060963 beq x12, x0, 18 x12:00000001 +76513724ns 1409505 1c00097e 00b12023 sw x11, 0(x2) x11:1c0034dc x2:1c009ab0 PA:1c009ab0 +76513744ns 1409506 1c000980 00008117 auipc x2, 0x8000 x2=1c008980 +76513764ns 1409507 1c000984 25412103 lw x2, 596(x2) x2=1c0199b0 x2:1c008980 PA:1c008bd4 +76513784ns 1409508 1c000988 17e020ef jal x1, 8574 x1=1c00098c +76513825ns 1409510 1c002b06 01f57513 andi x10, x10, 31 x10=0000001a x10:8000001a +76513845ns 1409511 1c002b08 00251793 slli x15, x10, 0x2 x15=00000068 x10:0000001a +76513865ns 1409512 1c002b0c 99c18513 addi x10, x3, -1636 x10=1c008d78 x3:1c0093dc +76513885ns 1409513 1c002b10 00f50533 add x10, x10, x15 x10=1c008de0 x10:1c008d78 x15:00000068 +76513906ns 1409514 1c002b12 00052783 lw x15, 0(x10) x15=1c000e42 x10:1c008de0 PA:1c008de0 +76513966ns 1409517 1c002b14 00078067 jalr x0, x15, 0 x15:1c000e42 +76514027ns 1409520 1c000e42 1a10a7b7 lui x15, 0x1a10a000 x15=1a10a000 +76514047ns 1409521 1c000e46 80078793 addi x15, x15, -2048 x15=1a109800 x15:1a10a000 +76514067ns 1409522 1c000e4a 0247a503 lw x10, 36(x15) x10=00000007 x15:1a109800 PA:1a109824 +76514087ns 1409523 1c000e4c a2818793 addi x15, x3, -1496 x15=1c008e04 x3:1c0093dc +76514148ns 1409526 1c000e50 0ff57513 andi x10, x10, 255 x10=00000007 x10:00000007 +76514168ns 1409527 1c000e54 00251713 slli x14, x10, 0x2 x14=0000001c x10:00000007 +76514188ns 1409528 1c000e58 00e787b3 add x15, x15, x14 x15=1c008e20 x15:1c008e04 x14:0000001c +76514208ns 1409529 1c000e5a 0007a703 lw x14, 0(x15) x14=1c003106 x15:1c008e20 PA:1c008e20 +76514249ns 1409531 1c000e5c 00070363 beq x14, x0, 6 x14:1c003106 +76514269ns 1409532 1c000e5e 0007a783 lw x15, 0(x15) x15=1c003106 x15:1c008e20 PA:1c008e20 +76514330ns 1409535 1c000e60 00078067 jalr x0, x15, 0 x15:1c003106 +76514370ns 1409537 1c003106 ff950513 addi x10, x10, -7 x10=00000000 x10:00000007 +76514390ns 1409538 1c003108 00251793 slli x15, x10, 0x2 x15=00000000 x10:00000000 +76514410ns 1409539 1c00310c da418513 addi x10, x3, -604 x10=1c009180 x3:1c0093dc +76514431ns 1409540 1c003110 ff010113 addi x2, x2, -16 x2=1c0199a0 x2:1c0199b0 +76514451ns 1409541 1c003112 00f50533 add x10, x10, x15 x10=1c009180 x10:1c009180 x15:00000000 +76514471ns 1409542 1c003114 00812423 sw x8, 8(x2) x8:1c009b68 x2:1c0199a0 PA:1c0199a8 +76514491ns 1409543 1c003116 00052403 lw x8, 0(x10) x8=1c00b890 x10:1c009180 PA:1c009180 +76514511ns 1409544 1c003118 00112623 sw x1, 12(x2) x1:1c00098c x2:1c0199a0 PA:1c0199ac +76514531ns 1409545 1c00311a 00842783 lw x15, 8(x8) x15=00000000 x8:1c00b890 PA:1c00b898 +76514572ns 1409547 1c00311c 02079263 bne x15, x0, 36 x15:00000000 +76514592ns 1409548 1c00311e 00c42503 lw x10, 12(x8) x10=1c009b68 x8:1c00b890 PA:1c00b89c +76514632ns 1409550 1c003120 00050863 beq x10, x0, 16 x10:1c009b68 +76514653ns 1409551 1c003122 01052703 lw x14, 16(x10) x14=00000001 x10:1c009b68 PA:1c009b78 +76514673ns 1409552 1c003124 00100793 addi x15, x0, 1 x15=00000001 +76514693ns 1409553 1c003126 00f71363 bne x14, x15, 6 x14:00000001 x15:00000001 +76514713ns 1409554 1c00312a 3b6000ef jal x1, 950 x1=1c00312c +76514754ns 1409556 1c0034e0 ff010113 addi x2, x2, -16 x2=1c019990 x2:1c0199a0 +76514774ns 1409557 1c0034e2 00812423 sw x8, 8(x2) x8:1c00b890 x2:1c019990 PA:1c019998 +76514794ns 1409558 1c0034e4 00a00433 add x8, x0, x10 x8=1c009b68 x10:1c009b68 +76514814ns 1409559 1c0034e6 03452503 lw x10, 52(x10) x10=1c00c2e0 x10:1c009b68 PA:1c009b9c +76514834ns 1409560 1c0034e8 00112623 sw x1, 12(x2) x1:1c00312c x2:1c019990 PA:1c01999c +76514855ns 1409561 1c0034ea 00050363 beq x10, x0, 6 x10:1c00c2e0 +76514875ns 1409562 1c0034ec 03c42783 lw x15, 60(x8) x15=1c0033da x8:1c009b68 PA:1c009ba4 +76514935ns 1409565 1c0034ee 000780e7 jalr x1, x15, 0 x1=1c0034f0 x15:1c0033da +76514976ns 1409567 1c0033da fe010113 addi x2, x2, -32 x2=1c019970 x2:1c019990 +76514996ns 1409568 1c0033dc 00112e23 sw x1, 28(x2) x1:1c0034f0 x2:1c019970 PA:1c01998c +76515016ns 1409569 1c0033de 00812c23 sw x8, 24(x2) x8:1c009b68 x2:1c019970 PA:1c019988 +76515036ns 1409570 1c0033e0 30047473 csrrci x8, 0x00000008, 0x300 x8=00001880 +76515117ns 1409574 1c0033e4 342027f3 csrrs x15, x0, 0x342 x15=8000001a +76515137ns 1409575 1c0033e8 00c10593 addi x11, x2, 12 x11=1c01997c x2:1c019970 +76515157ns 1409576 1c0033ea 0007de63 bge x15, x0, 28 x15:8000001a +76515178ns 1409577 1c0033ee 838fe0ef jal x1, -8136 x1=1c0033f2 +76515218ns 1409579 1c001426 ff010113 addi x2, x2, -16 x2=1c019960 x2:1c019970 +76515238ns 1409580 1c001428 00112623 sw x1, 12(x2) x1:1c0033f2 x2:1c019960 PA:1c01996c +76515258ns 1409581 1c00142a 00812423 sw x8, 8(x2) x8:00001880 x2:1c019960 PA:1c019968 +76515279ns 1409582 1c00142c 02051163 bne x10, x0, 34 x10:1c00c2e0 +76515339ns 1409585 1c00144e 04052703 lw x14, 64(x10) x14=00000000 x10:1c00c2e0 PA:1c00c320 +76515359ns 1409586 1c001450 00a007b3 add x15, x0, x10 x15=1c00c2e0 x10:1c00c2e0 +76515380ns 1409587 1c001452 00070c63 beq x14, x0, 24 x14:00000000 +76515440ns 1409590 1c00146a 00052703 lw x14, 0(x10) x14=1c00c2e0 x10:1c00c2e0 PA:1c00c2e0 +76515460ns 1409591 1c00146c 00b00433 add x8, x0, x11 x8=1c01997c x11:1c01997c +76515481ns 1409592 1c00146e 00071e63 bne x14, x0, 28 x14:1c00c2e0 +76515541ns 1409595 1c00148a 0387a683 lw x13, 56(x15) x13=00000000 x15:1c00c2e0 PA:1c00c318 +76515561ns 1409596 1c00148c 03c7a703 lw x14, 60(x15) x14=000000ff x15:1c00c2e0 PA:1c00c31c +76515581ns 1409597 1c00148e 00000513 addi x10, x0, 0 x10=00000000 +76515602ns 1409598 1c001490 00e6ff63 bgeu x13, x14, 30 x13:00000000 x14:000000ff +76515622ns 1409599 1c001494 0457c703 lbu x14, 69(x15) x14=000000ff x15:1c00c2e0 PA:1c00c325 +76515642ns 1409600 1c001498 00168693 addi x13, x13, 1 x13=00000001 x13:00000000 +76515662ns 1409601 1c00149a 02d7ac23 sw x13, 56(x15) x13:00000001 x15:1c00c2e0 PA:1c00c318 +76515682ns 1409602 1c00149c 01871613 slli x12, x14, 0x18 x12=ff000000 x14:000000ff +76515703ns 1409603 1c0014a0 41865613 srai x12, x12, 0x418 x12=ffffffff x12:ff000000 +76515723ns 1409604 1c0014a2 fff00693 addi x13, x0, -1 x13=ffffffff +76515743ns 1409605 1c0014a4 02d61263 bne x12, x13, 36 x12:ffffffff x13:ffffffff +76515763ns 1409606 1c0014a8 0247a703 lw x14, 36(x15) x14=00000000 x15:1c00c2e0 PA:1c00c304 +76515804ns 1409608 1c0014aa 00071663 bne x14, x0, 12 x14:00000000 +76515824ns 1409609 1c0014ac 00100513 addi x10, x0, 1 x10=00000001 +76515844ns 1409610 1c0014ae 00c12083 lw x1, 12(x2) x1=1c0033f2 x2:1c019960 PA:1c01996c +76515864ns 1409611 1c0014b0 00812403 lw x8, 8(x2) x8=00001880 x2:1c019960 PA:1c019968 +76515884ns 1409612 1c0014b2 01010113 addi x2, x2, 16 x2=1c019970 x2:1c019960 +76515905ns 1409613 1c0014b4 00008067 jalr x0, x1, 0 x1:1c0033f2 +76515945ns 1409615 1c0033f2 00c12783 lw x15, 12(x2) x15=00000001 x2:1c019970 PA:1c01997c +76515985ns 1409617 1c0033f4 00078363 beq x15, x0, 6 x15:00000001 +76516006ns 1409618 1c0033f6 f80fe0ef jal x1, -6272 x1=1c0033fa +76516066ns 1409621 1c001b76 d681a703 lw x14, -664(x3) x14=00000000 x3:1c0093dc PA:1c009144 +76516086ns 1409622 1c001b7a d8c18793 addi x15, x3, -628 x15=1c009168 x3:1c0093dc +76516106ns 1409623 1c001b7e 00070463 beq x14, x0, 8 x14:00000000 +76516167ns 1409626 1c001b86 ff010113 addi x2, x2, -16 x2=1c019960 x2:1c019970 +76516187ns 1409627 1c001b88 00812423 sw x8, 8(x2) x8:00001880 x2:1c019960 PA:1c019968 +76516207ns 1409628 1c001b8a 00112623 sw x1, 12(x2) x1:1c0033fa x2:1c019960 PA:1c01996c +76516228ns 1409629 1c001b8c 0007a023 sw x0, 0(x15) x15:1c009168 PA:1c009168 +76516248ns 1409630 1c001b90 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76516268ns 1409631 1c001b94 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76516288ns 1409632 1c001b96 a5a5a737 lui x14, 0xa5a5a000 x14=a5a5a000 +76516308ns 1409633 1c001b9a 5a570713 addi x14, x14, 1445 x14=a5a5a5a5 x14:a5a5a000 +76516329ns 1409634 1c001b9e 0307a783 lw x15, 48(x15) x15=1c009770 x15:1c009db8 PA:1c009de8 +76516349ns 1409635 1c001ba0 d5418413 addi x8, x3, -684 x8=1c009130 x3:1c0093dc +76516369ns 1409636 1c001ba4 0007a603 lw x12, 0(x15) x12=a5a5a5a5 x15:1c009770 PA:1c009770 +76516409ns 1409638 1c001ba6 00e61b63 bne x12, x14, 22 x12:a5a5a5a5 x14:a5a5a5a5 +76516430ns 1409639 1c001baa 0047a683 lw x13, 4(x15) x13=a5a5a5a5 x15:1c009770 PA:1c009774 +76516470ns 1409641 1c001bac 00c69863 bne x13, x12, 16 x13:a5a5a5a5 x12:a5a5a5a5 +76516490ns 1409642 1c001bb0 0087a703 lw x14, 8(x15) x14=a5a5a5a5 x15:1c009770 PA:1c009778 +76516531ns 1409644 1c001bb2 00d71563 bne x14, x13, 10 x14:a5a5a5a5 x13:a5a5a5a5 +76516551ns 1409645 1c001bb6 00c7a783 lw x15, 12(x15) x15=a5a5a5a5 x15:1c009770 PA:1c00977c +76516591ns 1409647 1c001bb8 00e78863 beq x15, x14, 16 x15:a5a5a5a5 x14:a5a5a5a5 +76516652ns 1409650 1c001bc8 d701a503 lw x10, -656(x3) x10=00000003 x3:1c0093dc PA:1c00914c +76516672ns 1409651 1c001bcc abeff0ef jal x1, -3394 x1=1c001bd0 +76516712ns 1409653 1c000e8a 000107b7 lui x15, 0x10000 x15=00010000 +76516732ns 1409654 1c000e8c 02f57663 bgeu x10, x15, 44 x10:00000003 x15:00010000 +76516753ns 1409655 1c000e90 0ff00793 addi x15, x0, 255 x15=000000ff +76516773ns 1409656 1c000e94 00a7b7b3 sltu x15, x15, x10 x15=00000000 x15:000000ff x10:00000003 +76516793ns 1409657 1c000e98 00379793 slli x15, x15, 0x3 x15=00000000 x15:00000000 +76516813ns 1409658 1c000e9a 1c009737 lui x14, 0x1c009000 x14=1c009000 +76516833ns 1409659 1c000e9e 02000693 addi x13, x0, 32 x13=00000020 +76516854ns 1409660 1c000ea2 40f686b3 sub x13, x13, x15 x13=00000020 x13:00000020 x15:00000000 +76516874ns 1409661 1c000ea4 00f55533 srl x10, x10, x15 x10=00000003 x10:00000003 x15:00000000 +76516894ns 1409662 1c000ea8 ad470793 addi x15, x14, -1324 x15=1c008ad4 x14:1c009000 +76516914ns 1409663 1c000eac 00f50533 add x10, x10, x15 x10=1c008ad7 x10:00000003 x15:1c008ad4 +76516934ns 1409664 1c000eae 00054503 lbu x10, 0(x10) x10=00000002 x10:1c008ad7 PA:1c008ad7 +76516975ns 1409666 1c000eb2 40a68533 sub x10, x13, x10 x10=0000001e x13:00000020 x10:00000002 +76516995ns 1409667 1c000eb6 00008067 jalr x0, x1, 0 x1:1c001bd0 +76517035ns 1409669 1c001bd0 01f00713 addi x14, x0, 31 x14=0000001f +76517055ns 1409670 1c001bd2 40a70533 sub x10, x14, x10 x10=00000001 x14:0000001f x10:0000001e +76517076ns 1409671 1c001bd6 01400793 addi x15, x0, 20 x15=00000014 +76517096ns 1409672 1c001bd8 02f507b3 mul x15, x10, x15 x15=00000014 x10:00000001 x15:00000014 +76517116ns 1409673 1c001bdc 1c009737 lui x14, 0x1c009000 x14=1c009000 +76517136ns 1409674 1c001be0 c8870693 addi x13, x14, -888 x13=1c008c88 x14:1c009000 +76517156ns 1409675 1c001be4 c8870713 addi x14, x14, -888 x14=1c008c88 x14:1c009000 +76517177ns 1409676 1c001be8 00f686b3 add x13, x13, x15 x13=1c008c9c x13:1c008c88 x15:00000014 +76517197ns 1409677 1c001bea 0006a603 lw x12, 0(x13) x12=00000001 x13:1c008c9c PA:1c008c9c +76517237ns 1409679 1c001bec 02061263 bne x12, x0, 36 x12:00000001 +76517298ns 1409682 1c001c10 0046a603 lw x12, 4(x13) x12=1c009dbc x13:1c008c9c PA:1c008ca0 +76517318ns 1409683 1c001c12 00878793 addi x15, x15, 8 x15=0000001c x15:00000014 +76517338ns 1409684 1c001c14 00e787b3 add x15, x15, x14 x15=1c008ca4 x15:0000001c x14:1c008c88 +76517358ns 1409685 1c001c16 00462603 lw x12, 4(x12) x12=1c008ca4 x12:1c009dbc PA:1c009dc0 +76517399ns 1409687 1c001c18 00c6a223 sw x12, 4(x13) x12:1c008ca4 x13:1c008c9c PA:1c008ca0 +76517419ns 1409688 1c001c1a 00f61463 bne x12, x15, 8 x12:1c008ca4 x15:1c008ca4 +76517439ns 1409689 1c001c1e 00462783 lw x15, 4(x12) x15=1c009dbc x12:1c008ca4 PA:1c008ca8 +76517480ns 1409691 1c001c20 00f6a223 sw x15, 4(x13) x15:1c009dbc x13:1c008c9c PA:1c008ca0 +76517500ns 1409692 1c001c22 01400793 addi x15, x0, 20 x15=00000014 +76517520ns 1409693 1c001c24 02f50533 mul x10, x10, x15 x10=00000014 x10:00000001 x15:00000014 +76517540ns 1409694 1c001c28 00c12083 lw x1, 12(x2) x1=1c0033fa x2:1c019960 PA:1c01996c +76517560ns 1409695 1c001c2a 00a70733 add x14, x14, x10 x14=1c008c9c x14:1c008c88 x10:00000014 +76517580ns 1409696 1c001c2c 00472783 lw x15, 4(x14) x15=1c009dbc x14:1c008c9c PA:1c008ca0 +76517601ns 1409697 1c001c2e 1c009737 lui x14, 0x1c009000 x14=1c009000 +76517621ns 1409698 1c001c32 00c7a783 lw x15, 12(x15) x15=1c009db8 x15:1c009dbc PA:1c009dc8 +76517661ns 1409700 1c001c34 00f42023 sw x15, 0(x8) x15:1c009db8 x8:1c009130 PA:1c009130 +76517681ns 1409701 1c001c36 00042783 lw x15, 0(x8) x15=1c009db8 x8:1c009130 PA:1c009130 +76517702ns 1409702 1c001c38 00812403 lw x8, 8(x2) x8=00001880 x2:1c019960 PA:1c019968 +76517722ns 1409703 1c001c3a 05878793 addi x15, x15, 88 x15=1c009e10 x15:1c009db8 +76517742ns 1409704 1c001c3e c4f72223 sw x15, -956(x14) x15:1c009e10 x14:1c009000 PA:1c008c44 +76517762ns 1409705 1c001c42 01010113 addi x2, x2, 16 x2=1c019970 x2:1c019960 +76517782ns 1409706 1c001c44 00008067 jalr x0, x1, 0 x1:1c0033fa +76517843ns 1409709 1c0033fa 30041073 csrrw x0, x8, 0x300 x8:00001880 +76517924ns 1409713 1c0033fe 01c12083 lw x1, 28(x2) x1=1c0034f0 x2:1c019970 PA:1c01998c +76517944ns 1409714 1c003400 01812403 lw x8, 24(x2) x8=1c009b68 x2:1c019970 PA:1c019988 +76517964ns 1409715 1c003402 02010113 addi x2, x2, 32 x2=1c019990 x2:1c019970 +76517984ns 1409716 1c003404 00008067 jalr x0, x1, 0 x1:1c0034f0 +76518025ns 1409718 1c0034f0 00100793 addi x15, x0, 1 x15=00000001 +76518045ns 1409719 1c0034f2 04f40223 sb x15, 68(x8) x15:00000001 x8:1c009b68 PA:1c009bac +76518065ns 1409720 1c0034f6 00c12083 lw x1, 12(x2) x1=1c00312c x2:1c019990 PA:1c01999c +76518085ns 1409721 1c0034f8 00812403 lw x8, 8(x2) x8=1c00b890 x2:1c019990 PA:1c019998 +76518105ns 1409722 1c0034fa 01010113 addi x2, x2, 16 x2=1c0199a0 x2:1c019990 +76518126ns 1409723 1c0034fc 00008067 jalr x0, x1, 0 x1:1c00312c +76518166ns 1409725 1c00312c 00042623 sw x0, 12(x8) x8:1c00b890 PA:1c00b89c +76518186ns 1409726 1c003130 00800533 add x10, x0, x8 x10=1c00b890 x8:1c00b890 +76518206ns 1409727 1c003132 ac3ff0ef jal x1, -1342 x1=1c003136 +76518247ns 1409729 1c002bf4 300027f3 csrrs x15, x0, 0x300 x15=00001880 +76518328ns 1409733 1c002bf8 300476f3 csrrci x13, 0x00000008, 0x300 x13=00001880 +76518408ns 1409737 1c002bfc 00052783 lw x15, 0(x10) x15=1c00b8b0 x10:1c00b890 PA:1c00b890 +76518449ns 1409739 1c002bfe 0007a503 lw x10, 0(x15) x10=00000000 x15:1c00b8b0 PA:1c00b8b0 +76518489ns 1409741 1c002c00 00050663 beq x10, x0, 12 x10:00000000 +76518550ns 1409744 1c002c0c 30069073 csrrw x0, x13, 0x300 x13:00001880 +76518630ns 1409748 1c002c10 00008067 jalr x0, x1, 0 x1:1c003136 +76518671ns 1409750 1c003136 00050563 beq x10, x0, 10 x10:00000000 +76518731ns 1409753 1c003140 00c12083 lw x1, 12(x2) x1=1c00098c x2:1c0199a0 PA:1c0199ac +76518752ns 1409754 1c003142 00812403 lw x8, 8(x2) x8=1c009b68 x2:1c0199a0 PA:1c0199a8 +76518772ns 1409755 1c003144 01010113 addi x2, x2, 16 x2=1c0199b0 x2:1c0199a0 +76518792ns 1409756 1c003146 00008067 jalr x0, x1, 0 x1:1c00098c +76518832ns 1409758 1c00098c 0320006f jal x0, 50 +76518893ns 1409761 1c0009be d541a303 lw x6, -684(x3) x6=1c009db8 x3:1c0093dc PA:1c009130 +76518933ns 1409763 1c0009c2 00032103 lw x2, 0(x6) x2=1c009ab0 x6:1c009db8 PA:1c009db8 +76518974ns 1409765 1c0009c6 00012283 lw x5, 0(x2) x5=1c0034dc x2:1c009ab0 PA:1c009ab0 +76519014ns 1409767 1c0009c8 34129073 csrrw x0, x5, 0x341 x5:1c0034dc +76519034ns 1409768 1c0009cc 00412283 lw x5, 4(x2) x5=00000000 x2:1c009ab0 PA:1c009ab4 +76519055ns 1409769 1c0009ce 00812303 lw x6, 8(x2) x6=00000000 x2:1c009ab0 PA:1c009ab8 +76519075ns 1409770 1c0009d0 00c12383 lw x7, 12(x2) x7=00000000 x2:1c009ab0 PA:1c009abc +76519095ns 1409771 1c0009d2 01012e03 lw x28, 16(x2) x28=00000000 x2:1c009ab0 PA:1c009ac0 +76519115ns 1409772 1c0009d4 01412e83 lw x29, 20(x2) x29=00000000 x2:1c009ab0 PA:1c009ac4 +76519135ns 1409773 1c0009d6 01812f03 lw x30, 24(x2) x30=00000000 x2:1c009ab0 PA:1c009ac8 +76519155ns 1409774 1c0009d8 7c029073 csrrw x0, x5, 0x7c0 x5:00000000 +76519176ns 1409775 1c0009dc 7c131073 csrrw x0, x6, 0x7c1 x6:00000000 +76519196ns 1409776 1c0009e0 7c239073 csrrw x0, x7, 0x7c2 x7:00000000 +76519216ns 1409777 1c0009e4 7c4e1073 csrrw x0, x28, 0x7c4 x28:00000000 +76519236ns 1409778 1c0009e8 7c5e9073 csrrw x0, x29, 0x7c5 x29:00000000 +76519256ns 1409779 1c0009ec 7c6f1073 csrrw x0, x30, 0x7c6 x30:00000000 +76519277ns 1409780 1c0009f0 01810113 addi x2, x2, 24 x2=1c009ac8 x2:1c009ab0 +76519297ns 1409781 1c0009f2 07412283 lw x5, 116(x2) x5=00001880 x2:1c009ac8 PA:1c009b3c +76519337ns 1409783 1c0009f4 30029073 csrrw x0, x5, 0x300 x5:00001880 +76519418ns 1409787 1c0009f8 00412083 lw x1, 4(x2) x1=1c0034de x2:1c009ac8 PA:1c009acc +76519438ns 1409788 1c0009fa 00812283 lw x5, 8(x2) x5=a5a5a5a5 x2:1c009ac8 PA:1c009ad0 +76519458ns 1409789 1c0009fc 00c12303 lw x6, 12(x2) x6=00000010 x2:1c009ac8 PA:1c009ad4 +76519479ns 1409790 1c0009fe 01012383 lw x7, 16(x2) x7=a5a5a5a5 x2:1c009ac8 PA:1c009ad8 +76519499ns 1409791 1c000a00 01412403 lw x8, 20(x2) x8=1c009b68 x2:1c009ac8 PA:1c009adc +76519519ns 1409792 1c000a02 01812483 lw x9, 24(x2) x9=1c009190 x2:1c009ac8 PA:1c009ae0 +76519539ns 1409793 1c000a04 01c12503 lw x10, 28(x2) x10=1c00c2e0 x2:1c009ac8 PA:1c009ae4 +76519559ns 1409794 1c000a06 02012583 lw x11, 32(x2) x11=00000000 x2:1c009ac8 PA:1c009ae8 +76519579ns 1409795 1c000a08 02412603 lw x12, 36(x2) x12=1c009b2c x2:1c009ac8 PA:1c009aec +76519600ns 1409796 1c000a0a 02812683 lw x13, 40(x2) x13=90000003 x2:1c009ac8 PA:1c009af0 +76519620ns 1409797 1c000a0c 02c12703 lw x14, 44(x2) x14=00000014 x2:1c009ac8 PA:1c009af4 +76519640ns 1409798 1c000a0e 03012783 lw x15, 48(x2) x15=1c00340c x2:1c009ac8 PA:1c009af8 +76519660ns 1409799 1c000a10 03412803 lw x16, 52(x2) x16=60070000 x2:1c009ac8 PA:1c009afc +76519680ns 1409800 1c000a12 03812883 lw x17, 56(x2) x17=00000001 x2:1c009ac8 PA:1c009b00 +76519701ns 1409801 1c000a14 03c12903 lw x18, 60(x2) x18=1c009188 x2:1c009ac8 PA:1c009b04 +76519721ns 1409802 1c000a16 04012983 lw x19, 64(x2) x19=1c009000 x2:1c009ac8 PA:1c009b08 +76519741ns 1409803 1c000a18 04412a03 lw x20, 68(x2) x20=1c00918c x2:1c009ac8 PA:1c009b0c +76519761ns 1409804 1c000a1a 04812a83 lw x21, 72(x2) x21=a5a5a5a5 x2:1c009ac8 PA:1c009b10 +76519781ns 1409805 1c000a1c 04c12b03 lw x22, 76(x2) x22=a5a5a5a5 x2:1c009ac8 PA:1c009b14 +76519802ns 1409806 1c000a1e 05012b83 lw x23, 80(x2) x23=a5a5a5a5 x2:1c009ac8 PA:1c009b18 +76519822ns 1409807 1c000a20 05412c03 lw x24, 84(x2) x24=a5a5a5a5 x2:1c009ac8 PA:1c009b1c +76519842ns 1409808 1c000a22 05812c83 lw x25, 88(x2) x25=a5a5a5a5 x2:1c009ac8 PA:1c009b20 +76519862ns 1409809 1c000a24 05c12d03 lw x26, 92(x2) x26=a5a5a5a5 x2:1c009ac8 PA:1c009b24 +76519882ns 1409810 1c000a26 06012d83 lw x27, 96(x2) x27=a5a5a5a5 x2:1c009ac8 PA:1c009b28 +76519903ns 1409811 1c000a28 06412e03 lw x28, 100(x2) x28=00000000 x2:1c009ac8 PA:1c009b2c +76519923ns 1409812 1c000a2a 06812e83 lw x29, 104(x2) x29=1c00b890 x2:1c009ac8 PA:1c009b30 +76519943ns 1409813 1c000a2c 06c12f03 lw x30, 108(x2) x30=00000000 x2:1c009ac8 PA:1c009b34 +76519963ns 1409814 1c000a2e 07012f83 lw x31, 112(x2) x31=a5a5a5a5 x2:1c009ac8 PA:1c009b38 +76519983ns 1409815 1c000a30 07810113 addi x2, x2, 120 x2=1c009b40 x2:1c009ac8 +76520004ns 1409816 1c000a34 30200073 mret +76520104ns 1409821 1c0034dc 000780e7 jalr x1, x15, 0 x1=1c0034de x15:1c00340c +76520145ns 1409823 1c00340c fe010113 addi x2, x2, -32 x2=1c009b20 x2:1c009b40 +76520165ns 1409824 1c00340e 00112e23 sw x1, 28(x2) x1:1c0034de x2:1c009b20 PA:1c009b3c +76520185ns 1409825 1c003410 00812c23 sw x8, 24(x2) x8:1c009b68 x2:1c009b20 PA:1c009b38 +76520205ns 1409826 1c003412 30047473 csrrci x8, 0x00000008, 0x300 x8=00000088 +76520286ns 1409830 1c003416 342027f3 csrrs x15, x0, 0x342 x15=8000001a +76520306ns 1409831 1c00341a 0007dc63 bge x15, x0, 24 x15:8000001a +76520327ns 1409832 1c00341e 00c10613 addi x12, x2, 12 x12=1c009b2c x2:1c009b20 +76520347ns 1409833 1c003420 00000593 addi x11, x0, 0 x11=00000000 +76520367ns 1409834 1c003422 b8efe0ef jal x1, -7282 x1=1c003426 +76520407ns 1409836 1c0017b0 fe010113 addi x2, x2, -32 x2=1c009b00 x2:1c009b20 +76520428ns 1409837 1c0017b2 00112e23 sw x1, 28(x2) x1:1c003426 x2:1c009b00 PA:1c009b1c +76520448ns 1409838 1c0017b4 00812c23 sw x8, 24(x2) x8:00000088 x2:1c009b00 PA:1c009b18 +76520468ns 1409839 1c0017b6 00912a23 sw x9, 20(x2) x9:1c009190 x2:1c009b00 PA:1c009b14 +76520488ns 1409840 1c0017b8 01212823 sw x18, 16(x2) x18:1c009188 x2:1c009b00 PA:1c009b10 +76520508ns 1409841 1c0017ba 01312623 sw x19, 12(x2) x19:1c009000 x2:1c009b00 PA:1c009b0c +76520529ns 1409842 1c0017bc 01412423 sw x20, 8(x2) x20:1c00918c x2:1c009b00 PA:1c009b08 +76520549ns 1409843 1c0017be 02051163 bne x10, x0, 34 x10:1c00c2e0 +76520609ns 1409846 1c0017e0 00a00433 add x8, x0, x10 x8=1c00c2e0 x10:1c00c2e0 +76520629ns 1409847 1c0017e2 00c00933 add x18, x0, x12 x18=1c009b2c x12:1c009b2c +76520650ns 1409848 1c0017e4 00059e63 bne x11, x0, 28 x11:00000000 +76520670ns 1409849 1c0017e6 04052783 lw x15, 64(x10) x15=00000000 x10:1c00c2e0 PA:1c00c320 +76520710ns 1409851 1c0017e8 00078c63 beq x15, x0, 24 x15:00000000 +76520771ns 1409854 1c001800 03842983 lw x19, 56(x8) x19=00000001 x8:1c00c2e0 PA:1c00c318 +76520791ns 1409855 1c001804 00000513 addi x10, x0, 0 x10=00000000 +76520811ns 1409856 1c001806 02098463 beq x19, x0, 40 x19:00000001 +76520831ns 1409857 1c00180a 04444483 lbu x9, 68(x8) x9=000000ff x8:1c00c2e0 PA:1c00c324 +76520852ns 1409858 1c00180e 00800533 add x10, x0, x8 x10=1c00c2e0 x8:1c00c2e0 +76520872ns 1409859 1c001810 fdaff0ef jal x1, -2086 x1=1c001814 +76520912ns 1409861 1c000fea 00a007b3 add x15, x0, x10 x15=1c00c2e0 x10:1c00c2e0 +76520932ns 1409862 1c000fec 0407a603 lw x12, 64(x15) x12=00000000 x15:1c00c2e0 PA:1c00c320 +76520953ns 1409863 1c000fee 00b00533 add x10, x0, x11 x10=00000000 x11:00000000 +76520973ns 1409864 1c000ff0 00060b63 beq x12, x0, 22 x12:00000000 +76521033ns 1409867 1c001006 00008067 jalr x0, x1, 0 x1:1c001814 +76521074ns 1409869 1c001814 01849a13 slli x20, x9, 0x18 x20=ff000000 x9:000000ff +76521094ns 1409870 1c001818 fff98993 addi x19, x19, -1 x19=00000000 x19:00000001 +76521114ns 1409871 1c00181a 418a5a13 srai x20, x20, 0x418 x20=ffffffff x20:ff000000 +76521134ns 1409872 1c00181e 03342c23 sw x19, 56(x8) x19:00000000 x8:1c00c2e0 PA:1c00c318 +76521154ns 1409873 1c001822 fff00793 addi x15, x0, -1 x15=ffffffff +76521175ns 1409874 1c001824 02fa1763 bne x20, x15, 46 x20:ffffffff x15:ffffffff +76521195ns 1409875 1c001828 01042783 lw x15, 16(x8) x15=00000000 x8:1c00c2e0 PA:1c00c2f0 +76521235ns 1409877 1c00182a 00079a63 bne x15, x0, 20 x15:00000000 +76521255ns 1409878 1c00182c 00100513 addi x10, x0, 1 x10=00000001 +76521276ns 1409879 1c00182e 01c12083 lw x1, 28(x2) x1=1c003426 x2:1c009b00 PA:1c009b1c +76521296ns 1409880 1c001830 01812403 lw x8, 24(x2) x8=00000088 x2:1c009b00 PA:1c009b18 +76521316ns 1409881 1c001832 01412483 lw x9, 20(x2) x9=1c009190 x2:1c009b00 PA:1c009b14 +76521336ns 1409882 1c001834 01012903 lw x18, 16(x2) x18=1c009188 x2:1c009b00 PA:1c009b10 +76521356ns 1409883 1c001836 00c12983 lw x19, 12(x2) x19=1c009000 x2:1c009b00 PA:1c009b0c +76521377ns 1409884 1c001838 00812a03 lw x20, 8(x2) x20=1c00918c x2:1c009b00 PA:1c009b08 +76521397ns 1409885 1c00183a 02010113 addi x2, x2, 32 x2=1c009b20 x2:1c009b00 +76521417ns 1409886 1c00183c 00008067 jalr x0, x1, 0 x1:1c003426 +76521478ns 1409889 1c003426 30041073 csrrw x0, x8, 0x300 x8:00000088 +76521558ns 1409893 1c00342a 01c12083 lw x1, 28(x2) x1=1c0034de x2:1c009b20 PA:1c009b3c +76521579ns 1409894 1c00342c 01812403 lw x8, 24(x2) x8=1c009b68 x2:1c009b20 PA:1c009b38 +76521599ns 1409895 1c00342e 02010113 addi x2, x2, 32 x2=1c009b40 x2:1c009b20 +76521619ns 1409896 1c003430 00008067 jalr x0, x1, 0 x1:1c0034de +76521659ns 1409898 1c0034de fe1ff06f jal x0, -32 +76521720ns 1409901 1c0034be 04444783 lbu x15, 68(x8) x15=00000001 x8:1c009b68 PA:1c009bac +76521760ns 1409903 1c0034c2 01879793 slli x15, x15, 0x18 x15=01000000 x15:00000001 +76521780ns 1409904 1c0034c4 4187d793 srai x15, x15, 0x418 x15=00000001 x15:01000000 +76521801ns 1409905 1c0034c6 00078763 beq x15, x0, 14 x15:00000001 +76521821ns 1409906 1c0034c8 00800533 add x10, x0, x8 x10=1c009b68 x8:1c009b68 +76521841ns 1409907 1c0034ca 00812403 lw x8, 8(x2) x8=1c009be0 x2:1c009b40 PA:1c009b48 +76521861ns 1409908 1c0034cc 00c12083 lw x1, 12(x2) x1=1c002b6c x2:1c009b40 PA:1c009b4c +76521881ns 1409909 1c0034ce 01010113 addi x2, x2, 16 x2=1c009b50 x2:1c009b40 +76521902ns 1409910 1c0034d0 fb3ff06f jal x0, -78 +76521962ns 1409913 1c003482 04750783 lb x15, 71(x10) x15=00000001 x10:1c009b68 PA:1c009baf +76522003ns 1409915 1c003486 02078763 beq x15, x0, 46 x15:00000001 +76522023ns 1409916 1c003488 ff010113 addi x2, x2, -16 x2=1c009b40 x2:1c009b50 +76522043ns 1409917 1c00348a 00812423 sw x8, 8(x2) x8:1c009be0 x2:1c009b40 PA:1c009b48 +76522063ns 1409918 1c00348c 00112623 sw x1, 12(x2) x1:1c002b6c x2:1c009b40 PA:1c009b4c +76522083ns 1409919 1c00348e 00a00433 add x8, x0, x10 x8=1c009b68 x10:1c009b68 +76522103ns 1409920 1c003490 040503a3 sb x0, 71(x10) x10:1c009b68 PA:1c009baf +76522124ns 1409921 1c003494 03452783 lw x15, 52(x10) x15=1c00c2e0 x10:1c009b68 PA:1c009b9c +76522164ns 1409923 1c003496 00078b63 beq x15, x0, 22 x15:1c00c2e0 +76522184ns 1409924 1c003498 03452503 lw x10, 52(x10) x10=1c00c2e0 x10:1c009b68 PA:1c009b9c +76522225ns 1409926 1c00349a 00050763 beq x10, x0, 14 x10:1c00c2e0 +76522245ns 1409927 1c00349c c1cfe0ef jal x1, -7140 x1=1c0034a0 +76522285ns 1409929 1c0018b8 ff010113 addi x2, x2, -16 x2=1c009b30 x2:1c009b40 +76522305ns 1409930 1c0018ba 00112623 sw x1, 12(x2) x1:1c0034a0 x2:1c009b30 PA:1c009b3c +76522326ns 1409931 1c0018bc 00812423 sw x8, 8(x2) x8:1c009b68 x2:1c009b30 PA:1c009b38 +76522346ns 1409932 1c0018be 02051163 bne x10, x0, 34 x10:1c00c2e0 +76522406ns 1409935 1c0018e0 00a00433 add x8, x0, x10 x8=1c00c2e0 x10:1c00c2e0 +76522427ns 1409936 1c0018e2 fa9ff0ef jal x1, -88 x1=1c0018e4 +76522487ns 1409939 1c00188a 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76522507ns 1409940 1c00188e c4878693 addi x13, x15, -952 x13=1c008c48 x15:1c009000 +76522528ns 1409941 1c001892 00000713 addi x14, x0, 0 x14=00000000 +76522548ns 1409942 1c001894 c4878793 addi x15, x15, -952 x15=1c008c48 x15:1c009000 +76522568ns 1409943 1c001898 00800613 addi x12, x0, 8 x12=00000008 +76522588ns 1409944 1c00189a 0046a583 lw x11, 4(x13) x11=1c00ad20 x13:1c008c48 PA:1c008c4c +76522628ns 1409946 1c00189c 00a59963 bne x11, x10, 18 x11:1c00ad20 x10:1c00c2e0 +76522689ns 1409949 1c0018ae 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76522709ns 1409950 1c0018b0 00868693 addi x13, x13, 8 x13=1c008c50 x13:1c008c48 +76522729ns 1409951 1c0018b2 fec714e3 bne x14, x12, -24 x14:00000001 x12:00000008 +76522790ns 1409954 1c00189a 0046a583 lw x11, 4(x13) x11=00000000 x13:1c008c50 PA:1c008c54 +76522830ns 1409956 1c00189c 00a59963 bne x11, x10, 18 x11:00000000 x10:1c00c2e0 +76522891ns 1409959 1c0018ae 00170713 addi x14, x14, 1 x14=00000002 x14:00000001 +76522911ns 1409960 1c0018b0 00868693 addi x13, x13, 8 x13=1c008c58 x13:1c008c50 +76522931ns 1409961 1c0018b2 fec714e3 bne x14, x12, -24 x14:00000002 x12:00000008 +76522992ns 1409964 1c00189a 0046a583 lw x11, 4(x13) x11=00000000 x13:1c008c58 PA:1c008c5c +76523032ns 1409966 1c00189c 00a59963 bne x11, x10, 18 x11:00000000 x10:1c00c2e0 +76523093ns 1409969 1c0018ae 00170713 addi x14, x14, 1 x14=00000003 x14:00000002 +76523113ns 1409970 1c0018b0 00868693 addi x13, x13, 8 x13=1c008c60 x13:1c008c58 +76523133ns 1409971 1c0018b2 fec714e3 bne x14, x12, -24 x14:00000003 x12:00000008 +76523194ns 1409974 1c00189a 0046a583 lw x11, 4(x13) x11=00000000 x13:1c008c60 PA:1c008c64 +76523234ns 1409976 1c00189c 00a59963 bne x11, x10, 18 x11:00000000 x10:1c00c2e0 +76523295ns 1409979 1c0018ae 00170713 addi x14, x14, 1 x14=00000004 x14:00000003 +76523315ns 1409980 1c0018b0 00868693 addi x13, x13, 8 x13=1c008c68 x13:1c008c60 +76523335ns 1409981 1c0018b2 fec714e3 bne x14, x12, -24 x14:00000004 x12:00000008 +76523396ns 1409984 1c00189a 0046a583 lw x11, 4(x13) x11=00000000 x13:1c008c68 PA:1c008c6c +76523436ns 1409986 1c00189c 00a59963 bne x11, x10, 18 x11:00000000 x10:1c00c2e0 +76523497ns 1409989 1c0018ae 00170713 addi x14, x14, 1 x14=00000005 x14:00000004 +76523517ns 1409990 1c0018b0 00868693 addi x13, x13, 8 x13=1c008c70 x13:1c008c68 +76523537ns 1409991 1c0018b2 fec714e3 bne x14, x12, -24 x14:00000005 x12:00000008 +76523598ns 1409994 1c00189a 0046a583 lw x11, 4(x13) x11=00000000 x13:1c008c70 PA:1c008c74 +76523638ns 1409996 1c00189c 00a59963 bne x11, x10, 18 x11:00000000 x10:1c00c2e0 +76523699ns 1409999 1c0018ae 00170713 addi x14, x14, 1 x14=00000006 x14:00000005 +76523719ns 1410000 1c0018b0 00868693 addi x13, x13, 8 x13=1c008c78 x13:1c008c70 +76523739ns 1410001 1c0018b2 fec714e3 bne x14, x12, -24 x14:00000006 x12:00000008 +76523800ns 1410004 1c00189a 0046a583 lw x11, 4(x13) x11=00000000 x13:1c008c78 PA:1c008c7c +76523840ns 1410006 1c00189c 00a59963 bne x11, x10, 18 x11:00000000 x10:1c00c2e0 +76523901ns 1410009 1c0018ae 00170713 addi x14, x14, 1 x14=00000007 x14:00000006 +76523921ns 1410010 1c0018b0 00868693 addi x13, x13, 8 x13=1c008c80 x13:1c008c78 +76523941ns 1410011 1c0018b2 fec714e3 bne x14, x12, -24 x14:00000007 x12:00000008 +76524002ns 1410014 1c00189a 0046a583 lw x11, 4(x13) x11=00000000 x13:1c008c80 PA:1c008c84 +76524042ns 1410016 1c00189c 00a59963 bne x11, x10, 18 x11:00000000 x10:1c00c2e0 +76524103ns 1410019 1c0018ae 00170713 addi x14, x14, 1 x14=00000008 x14:00000007 +76524123ns 1410020 1c0018b0 00868693 addi x13, x13, 8 x13=1c008c88 x13:1c008c80 +76524143ns 1410021 1c0018b2 fec714e3 bne x14, x12, -24 x14:00000008 x12:00000008 +76524163ns 1410022 1c0018b6 00008067 jalr x0, x1, 0 x1:1c0018e4 +76524203ns 1410024 1c0018e4 00800533 add x10, x0, x8 x10=1c00c2e0 x8:1c00c2e0 +76524224ns 1410025 1c0018e6 00812403 lw x8, 8(x2) x8=1c009b68 x2:1c009b30 PA:1c009b38 +76524244ns 1410026 1c0018e8 00c12083 lw x1, 12(x2) x1=1c0034a0 x2:1c009b30 PA:1c009b3c +76524264ns 1410027 1c0018ea 01010113 addi x2, x2, 16 x2=1c009b40 x2:1c009b30 +76524284ns 1410028 1c0018ec 0a60106f jal x0, 4262 +76524325ns 1410030 1c002992 fe010113 addi x2, x2, -32 x2=1c009b20 x2:1c009b40 +76524345ns 1410031 1c002994 00112e23 sw x1, 28(x2) x1:1c0034a0 x2:1c009b20 PA:1c009b3c +76524365ns 1410032 1c002996 00a12623 sw x10, 12(x2) x10:1c00c2e0 x2:1c009b20 PA:1c009b2c +76524385ns 1410033 1c002998 00050a63 beq x10, x0, 20 x10:1c00c2e0 +76524405ns 1410034 1c00299a 87cff0ef jal x1, -3972 x1=1c00299e +76524466ns 1410037 1c001a16 d6818793 addi x15, x3, -664 x15=1c009144 x3:1c0093dc +76524486ns 1410038 1c001a1a 0007a703 lw x14, 0(x15) x14=00000000 x15:1c009144 PA:1c009144 +76524527ns 1410040 1c001a1c 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76524547ns 1410041 1c001a1e 00e7a023 sw x14, 0(x15) x14:00000001 x15:1c009144 PA:1c009144 +76524567ns 1410042 1c001a20 00008067 jalr x0, x1, 0 x1:1c00299e +76524607ns 1410044 1c00299e 00c12503 lw x10, 12(x2) x10=1c00c2e0 x2:1c009b20 PA:1c009b2c +76524627ns 1410045 1c0029a0 775000ef jal x1, 3956 x1=1c0029a4 +76524668ns 1410047 1c003914 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76524688ns 1410048 1c003918 00a005b3 add x11, x0, x10 x11=1c00c2e0 x10:1c00c2e0 +76524708ns 1410049 1c00391a c447a503 lw x10, -956(x15) x10=1c009e10 x15:1c009000 PA:1c008c44 +76524728ns 1410050 1c00391e 0020006f jal x0, 2 +76524769ns 1410052 1c003920 0a058363 beq x11, x0, 166 x11:1c00c2e0 +76524789ns 1410053 1c003922 ffc5a783 lw x15, -4(x11) x15=00000058 x11:1c00c2e0 PA:1c00c2dc +76524809ns 1410054 1c003926 fe010113 addi x2, x2, -32 x2=1c009b00 x2:1c009b20 +76524829ns 1410055 1c003928 00812c23 sw x8, 24(x2) x8:1c009b68 x2:1c009b00 PA:1c009b18 +76524850ns 1410056 1c00392a 00112e23 sw x1, 28(x2) x1:1c0029a4 x2:1c009b00 PA:1c009b1c +76524870ns 1410057 1c00392c ffc58413 addi x8, x11, -4 x8=1c00c2dc x11:1c00c2e0 +76524890ns 1410058 1c003930 0007d363 bge x15, x0, 6 x15:00000058 +76524951ns 1410061 1c003936 00a12623 sw x10, 12(x2) x10:1c009e10 x2:1c009b00 PA:1c009b0c +76524971ns 1410062 1c003938 92eff0ef jal x1, -3794 x1=1c00393c +76525031ns 1410065 1c002a66 fb1fe06f jal x0, -4176 +76525092ns 1410068 1c001a16 d6818793 addi x15, x3, -664 x15=1c009144 x3:1c0093dc +76525112ns 1410069 1c001a1a 0007a703 lw x14, 0(x15) x14=00000001 x15:1c009144 PA:1c009144 +76525152ns 1410071 1c001a1c 00170713 addi x14, x14, 1 x14=00000002 x14:00000001 +76525173ns 1410072 1c001a1e 00e7a023 sw x14, 0(x15) x14:00000002 x15:1c009144 PA:1c009144 +76525193ns 1410073 1c001a20 00008067 jalr x0, x1, 0 x1:1c00393c +76525233ns 1410075 1c00393c db81a783 lw x15, -584(x3) x15=00000000 x3:1c0093dc PA:1c009194 +76525253ns 1410076 1c003940 00c12503 lw x10, 12(x2) x10=1c009e10 x2:1c009b00 PA:1c009b0c +76525274ns 1410077 1c003942 00e00633 add x12, x0, x14 x12=00000002 x14:00000002 +76525294ns 1410078 1c003944 00079a63 bne x15, x0, 20 x15:00000000 +76525314ns 1410079 1c003946 00042223 sw x0, 4(x8) x8:1c00c2dc PA:1c00c2e0 +76525334ns 1410080 1c00394a da81ac23 sw x8, -584(x3) x8:1c00c2dc x3:1c0093dc PA:1c009194 +76525354ns 1410081 1c00394e 01812403 lw x8, 24(x2) x8=1c009b68 x2:1c009b00 PA:1c009b18 +76525375ns 1410082 1c003950 01c12083 lw x1, 28(x2) x1=1c0029a4 x2:1c009b00 PA:1c009b1c +76525395ns 1410083 1c003952 02010113 addi x2, x2, 32 x2=1c009b20 x2:1c009b00 +76525415ns 1410084 1c003954 916ff06f jal x0, -3818 +76525476ns 1410087 1c002a6a 8e3ff06f jal x0, -1822 +76525516ns 1410089 1c00234c fc010113 addi x2, x2, -64 x2=1c009ae0 x2:1c009b20 +76525536ns 1410090 1c00234e 02812c23 sw x8, 56(x2) x8:1c009b68 x2:1c009ae0 PA:1c009b18 +76525556ns 1410091 1c002350 d6818413 addi x8, x3, -664 x8=1c009144 x3:1c0093dc +76525577ns 1410092 1c002354 00042783 lw x15, 0(x8) x15=00000002 x8:1c009144 PA:1c009144 +76525597ns 1410093 1c002356 02112e23 sw x1, 60(x2) x1:1c0029a4 x2:1c009ae0 PA:1c009b1c +76525617ns 1410094 1c002358 02912a23 sw x9, 52(x2) x9:1c009190 x2:1c009ae0 PA:1c009b14 +76525637ns 1410095 1c00235a 03212823 sw x18, 48(x2) x18:1c009188 x2:1c009ae0 PA:1c009b10 +76525657ns 1410096 1c00235c 03312623 sw x19, 44(x2) x19:1c009000 x2:1c009ae0 PA:1c009b0c +76525677ns 1410097 1c00235e 03412423 sw x20, 40(x2) x20:1c00918c x2:1c009ae0 PA:1c009b08 +76525698ns 1410098 1c002360 03512223 sw x21, 36(x2) x21:a5a5a5a5 x2:1c009ae0 PA:1c009b04 +76525718ns 1410099 1c002362 03612023 sw x22, 32(x2) x22:a5a5a5a5 x2:1c009ae0 PA:1c009b00 +76525738ns 1410100 1c002364 01712e23 sw x23, 28(x2) x23:a5a5a5a5 x2:1c009ae0 PA:1c009afc +76525758ns 1410101 1c002366 02079263 bne x15, x0, 36 x15:00000002 +76525839ns 1410105 1c00238a c83ff0ef jal x1, -894 x1=1c00238e +76525879ns 1410107 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +76525960ns 1410111 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76526001ns 1410113 1c002014 00078863 beq x15, x0, 16 x15:00000001 +76526021ns 1410114 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76526041ns 1410115 1c00201a 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76526061ns 1410116 1c00201c 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76526081ns 1410117 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c009db8 PA:1c009dfc +76526122ns 1410119 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76526142ns 1410120 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c009db8 PA:1c009dfc +76526162ns 1410121 1c002024 00008067 jalr x0, x1, 0 x1:1c00238e +76526202ns 1410123 1c00238e 00042783 lw x15, 0(x8) x15=00000002 x8:1c009144 PA:1c009144 +76526243ns 1410125 1c002390 fff78793 addi x15, x15, -1 x15=00000001 x15:00000002 +76526263ns 1410126 1c002392 00f42023 sw x15, 0(x8) x15:00000001 x8:1c009144 PA:1c009144 +76526283ns 1410127 1c002394 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +76526324ns 1410129 1c002396 02078163 beq x15, x0, 34 x15:00000001 +76526344ns 1410130 1c002398 00000513 addi x10, x0, 0 x10=00000000 +76526364ns 1410131 1c00239a 00a12623 sw x10, 12(x2) x10:00000000 x2:1c009ae0 PA:1c009aec +76526384ns 1410132 1c00239c c8bff0ef jal x1, -886 x1=1c0023a0 +76526445ns 1410135 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76526485ns 1410137 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +76526505ns 1410138 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76526526ns 1410139 1c002030 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +76526566ns 1410141 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c009db8 PA:1c009dfc +76526606ns 1410143 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +76526627ns 1410144 1c002036 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76526647ns 1410145 1c002038 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76526667ns 1410146 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c009db8 PA:1c009dfc +76526707ns 1410148 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +76526727ns 1410149 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c009db8 PA:1c009dfc +76526748ns 1410150 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c009db8 PA:1c009dfc +76526788ns 1410152 1c002042 00079363 bne x15, x0, 6 x15:00000000 +76526808ns 1410153 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +76526889ns 1410157 1c002048 00008067 jalr x0, x1, 0 x1:1c0023a0 +76526929ns 1410159 1c0023a0 03c12083 lw x1, 60(x2) x1=1c0029a4 x2:1c009ae0 PA:1c009b1c +76526950ns 1410160 1c0023a2 03812403 lw x8, 56(x2) x8=1c009b68 x2:1c009ae0 PA:1c009b18 +76526970ns 1410161 1c0023a4 00c12503 lw x10, 12(x2) x10=00000000 x2:1c009ae0 PA:1c009aec +76526990ns 1410162 1c0023a6 03412483 lw x9, 52(x2) x9=1c009190 x2:1c009ae0 PA:1c009b14 +76527010ns 1410163 1c0023a8 03012903 lw x18, 48(x2) x18=1c009188 x2:1c009ae0 PA:1c009b10 +76527030ns 1410164 1c0023aa 02c12983 lw x19, 44(x2) x19=1c009000 x2:1c009ae0 PA:1c009b0c +76527051ns 1410165 1c0023ac 02812a03 lw x20, 40(x2) x20=1c00918c x2:1c009ae0 PA:1c009b08 +76527071ns 1410166 1c0023ae 02412a83 lw x21, 36(x2) x21=a5a5a5a5 x2:1c009ae0 PA:1c009b04 +76527091ns 1410167 1c0023b0 02012b03 lw x22, 32(x2) x22=a5a5a5a5 x2:1c009ae0 PA:1c009b00 +76527111ns 1410168 1c0023b2 01c12b83 lw x23, 28(x2) x23=a5a5a5a5 x2:1c009ae0 PA:1c009afc +76527131ns 1410169 1c0023b4 04010113 addi x2, x2, 64 x2=1c009b20 x2:1c009ae0 +76527151ns 1410170 1c0023b6 00008067 jalr x0, x1, 0 x1:1c0029a4 +76527192ns 1410172 1c0029a4 01c12083 lw x1, 28(x2) x1=1c0034a0 x2:1c009b20 PA:1c009b3c +76527212ns 1410173 1c0029a6 02010113 addi x2, x2, 32 x2=1c009b40 x2:1c009b20 +76527232ns 1410174 1c0029a8 9a5ff06f jal x0, -1628 +76527273ns 1410176 1c00234c fc010113 addi x2, x2, -64 x2=1c009b00 x2:1c009b40 +76527293ns 1410177 1c00234e 02812c23 sw x8, 56(x2) x8:1c009b68 x2:1c009b00 PA:1c009b38 +76527313ns 1410178 1c002350 d6818413 addi x8, x3, -664 x8=1c009144 x3:1c0093dc +76527333ns 1410179 1c002354 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +76527353ns 1410180 1c002356 02112e23 sw x1, 60(x2) x1:1c0034a0 x2:1c009b00 PA:1c009b3c +76527374ns 1410181 1c002358 02912a23 sw x9, 52(x2) x9:1c009190 x2:1c009b00 PA:1c009b34 +76527394ns 1410182 1c00235a 03212823 sw x18, 48(x2) x18:1c009188 x2:1c009b00 PA:1c009b30 +76527414ns 1410183 1c00235c 03312623 sw x19, 44(x2) x19:1c009000 x2:1c009b00 PA:1c009b2c +76527434ns 1410184 1c00235e 03412423 sw x20, 40(x2) x20:1c00918c x2:1c009b00 PA:1c009b28 +76527454ns 1410185 1c002360 03512223 sw x21, 36(x2) x21:a5a5a5a5 x2:1c009b00 PA:1c009b24 +76527475ns 1410186 1c002362 03612023 sw x22, 32(x2) x22:a5a5a5a5 x2:1c009b00 PA:1c009b20 +76527495ns 1410187 1c002364 01712e23 sw x23, 28(x2) x23:a5a5a5a5 x2:1c009b00 PA:1c009b1c +76527515ns 1410188 1c002366 02079263 bne x15, x0, 36 x15:00000001 +76527596ns 1410192 1c00238a c83ff0ef jal x1, -894 x1=1c00238e +76527636ns 1410194 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +76527717ns 1410198 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76527757ns 1410200 1c002014 00078863 beq x15, x0, 16 x15:00000001 +76527777ns 1410201 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76527798ns 1410202 1c00201a 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76527818ns 1410203 1c00201c 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76527838ns 1410204 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c009db8 PA:1c009dfc +76527878ns 1410206 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76527899ns 1410207 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c009db8 PA:1c009dfc +76527919ns 1410208 1c002024 00008067 jalr x0, x1, 0 x1:1c00238e +76527959ns 1410210 1c00238e 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +76528000ns 1410212 1c002390 fff78793 addi x15, x15, -1 x15=00000000 x15:00000001 +76528020ns 1410213 1c002392 00f42023 sw x15, 0(x8) x15:00000000 x8:1c009144 PA:1c009144 +76528040ns 1410214 1c002394 00042783 lw x15, 0(x8) x15=00000000 x8:1c009144 PA:1c009144 +76528080ns 1410216 1c002396 02078163 beq x15, x0, 34 x15:00000000 +76528141ns 1410219 1c0023b8 d601a783 lw x15, -672(x3) x15=00000003 x3:1c0093dc PA:1c00913c +76528181ns 1410221 1c0023bc fc078ee3 beq x15, x0, -36 x15:00000003 +76528201ns 1410222 1c0023be 1c009937 lui x18, 0x1c009000 x18=1c009000 +76528222ns 1410223 1c0023c2 00000413 addi x8, x0, 0 x8=00000000 +76528242ns 1410224 1c0023c4 93818493 addi x9, x3, -1736 x9=1c008d14 x3:1c0093dc +76528262ns 1410225 1c0023c8 00100993 addi x19, x0, 1 x19=00000001 +76528282ns 1410226 1c0023ca c8890913 addi x18, x18, -888 x18=1c008c88 x18:1c009000 +76528302ns 1410227 1c0023ce 01400a93 addi x21, x0, 20 x21=00000014 +76528323ns 1410228 1c0023d0 04c0006f jal x0, 76 +76528363ns 1410230 1c00241c 0004a783 lw x15, 0(x9) x15=00000000 x9:1c008d14 PA:1c008d14 +76528403ns 1410232 1c00241e fa079ae3 bne x15, x0, -76 x15:00000000 +76528424ns 1410233 1c002420 00040363 beq x8, x0, 6 x8:00000000 +76528504ns 1410237 1c002426 d8018713 addi x14, x3, -640 x14=1c00915c x3:1c0093dc +76528525ns 1410238 1c00242a 00072483 lw x9, 0(x14) x9=00000000 x14:1c00915c PA:1c00915c +76528545ns 1410239 1c00242c d8018413 addi x8, x3, -640 x8=1c00915c x3:1c0093dc +76528565ns 1410240 1c002430 00048d63 beq x9, x0, 26 x9:00000000 +76528646ns 1410244 1c00244a d8c1a783 lw x15, -628(x3) x15=00000000 x3:1c0093dc PA:1c009168 +76528686ns 1410246 1c00244e f40785e3 beq x15, x0, -182 x15:00000000 +76528747ns 1410249 1c002398 00000513 addi x10, x0, 0 x10=00000000 +76528767ns 1410250 1c00239a 00a12623 sw x10, 12(x2) x10:00000000 x2:1c009b00 PA:1c009b0c +76528787ns 1410251 1c00239c c8bff0ef jal x1, -886 x1=1c0023a0 +76528848ns 1410254 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76528888ns 1410256 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +76528908ns 1410257 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76528928ns 1410258 1c002030 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +76528969ns 1410260 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c009db8 PA:1c009dfc +76529009ns 1410262 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +76529029ns 1410263 1c002036 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76529050ns 1410264 1c002038 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76529070ns 1410265 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c009db8 PA:1c009dfc +76529110ns 1410267 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +76529130ns 1410268 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c009db8 PA:1c009dfc +76529151ns 1410269 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c009db8 PA:1c009dfc +76529191ns 1410271 1c002042 00079363 bne x15, x0, 6 x15:00000000 +76529211ns 1410272 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +76529292ns 1410276 1c002048 00008067 jalr x0, x1, 0 x1:1c0023a0 +76529332ns 1410278 1c0023a0 03c12083 lw x1, 60(x2) x1=1c0034a0 x2:1c009b00 PA:1c009b3c +76529352ns 1410279 1c0023a2 03812403 lw x8, 56(x2) x8=1c009b68 x2:1c009b00 PA:1c009b38 +76529373ns 1410280 1c0023a4 00c12503 lw x10, 12(x2) x10=00000000 x2:1c009b00 PA:1c009b0c +76529393ns 1410281 1c0023a6 03412483 lw x9, 52(x2) x9=1c009190 x2:1c009b00 PA:1c009b34 +76529413ns 1410282 1c0023a8 03012903 lw x18, 48(x2) x18=1c009188 x2:1c009b00 PA:1c009b30 +76529433ns 1410283 1c0023aa 02c12983 lw x19, 44(x2) x19=1c009000 x2:1c009b00 PA:1c009b2c +76529453ns 1410284 1c0023ac 02812a03 lw x20, 40(x2) x20=1c00918c x2:1c009b00 PA:1c009b28 +76529474ns 1410285 1c0023ae 02412a83 lw x21, 36(x2) x21=a5a5a5a5 x2:1c009b00 PA:1c009b24 +76529494ns 1410286 1c0023b0 02012b03 lw x22, 32(x2) x22=a5a5a5a5 x2:1c009b00 PA:1c009b20 +76529514ns 1410287 1c0023b2 01c12b83 lw x23, 28(x2) x23=a5a5a5a5 x2:1c009b00 PA:1c009b1c +76529534ns 1410288 1c0023b4 04010113 addi x2, x2, 64 x2=1c009b40 x2:1c009b00 +76529554ns 1410289 1c0023b6 00008067 jalr x0, x1, 0 x1:1c0034a0 +76529595ns 1410291 1c0034a0 02042c23 sw x0, 56(x8) x8:1c009b68 PA:1c009ba0 +76529615ns 1410292 1c0034a4 02042e23 sw x0, 60(x8) x8:1c009b68 PA:1c009ba4 +76529635ns 1410293 1c0034a8 02042a23 sw x0, 52(x8) x8:1c009b68 PA:1c009b9c +76529655ns 1410294 1c0034ac 00c12083 lw x1, 12(x2) x1=1c002b6c x2:1c009b40 PA:1c009b4c +76529675ns 1410295 1c0034ae 00812403 lw x8, 8(x2) x8=1c009be0 x2:1c009b40 PA:1c009b48 +76529696ns 1410296 1c0034b0 01010113 addi x2, x2, 16 x2=1c009b50 x2:1c009b40 +76529716ns 1410297 1c0034b2 00008067 jalr x0, x1, 0 x1:1c002b6c +76529756ns 1410299 1c002b6c 01810513 addi x10, x2, 24 x10=1c009b68 x2:1c009b50 +76529776ns 1410300 1c002b6e 115000ef jal x1, 2324 x1=1c002b72 +76529837ns 1410303 1c003482 04750783 lb x15, 71(x10) x15=00000000 x10:1c009b68 PA:1c009baf +76529877ns 1410305 1c003486 02078763 beq x15, x0, 46 x15:00000000 +76529938ns 1410308 1c0034b4 00008067 jalr x0, x1, 0 x1:1c002b72 +76529978ns 1410310 1c002b72 06c12083 lw x1, 108(x2) x1=1c003670 x2:1c009b50 PA:1c009bbc +76529999ns 1410311 1c002b74 06812403 lw x8, 104(x2) x8=00000000 x2:1c009b50 PA:1c009bb8 +76530019ns 1410312 1c002b76 07010113 addi x2, x2, 112 x2=1c009bc0 x2:1c009b50 +76530039ns 1410313 1c002b78 00008067 jalr x0, x1, 0 x1:1c003670 +76530079ns 1410315 1c003670 00000693 addi x13, x0, 0 x13=00000000 +76530100ns 1410316 1c003672 00800613 addi x12, x0, 8 x12=00000008 +76530120ns 1410317 1c003674 01710593 addi x11, x2, 23 x11=1c009bd7 x2:1c009bc0 +76530140ns 1410318 1c003678 02010513 addi x10, x2, 32 x10=1c009be0 x2:1c009bc0 +76530160ns 1410319 1c00367a d04ff0ef jal x1, -2812 x1=1c00367e +76530200ns 1410321 1c002b7e f9010113 addi x2, x2, -112 x2=1c009b50 x2:1c009bc0 +76530221ns 1410322 1c002b80 06812423 sw x8, 104(x2) x8:00000000 x2:1c009b50 PA:1c009bb8 +76530241ns 1410323 1c002b82 00a00433 add x8, x0, x10 x8=1c009be0 x10:1c009be0 +76530261ns 1410324 1c002b84 01810513 addi x10, x2, 24 x10=1c009b68 x2:1c009b50 +76530281ns 1410325 1c002b86 06112623 sw x1, 108(x2) x1:1c00367e x2:1c009b50 PA:1c009bbc +76530301ns 1410326 1c002b88 00b12623 sw x11, 12(x2) x11:1c009bd7 x2:1c009b50 PA:1c009b5c +76530322ns 1410327 1c002b8a 00c12423 sw x12, 8(x2) x12:00000008 x2:1c009b50 PA:1c009b58 +76530342ns 1410328 1c002b8c 00d12223 sw x13, 4(x2) x13:00000000 x2:1c009b50 PA:1c009b54 +76530362ns 1410329 1c002b8e 0ad000ef jal x1, 2220 x1=1c002b92 +76530402ns 1410331 1c00343a ff010113 addi x2, x2, -16 x2=1c009b40 x2:1c009b50 +76530423ns 1410332 1c00343c 00812423 sw x8, 8(x2) x8:1c009be0 x2:1c009b40 PA:1c009b48 +76530443ns 1410333 1c00343e 00112623 sw x1, 12(x2) x1:1c002b92 x2:1c009b40 PA:1c009b4c +76530463ns 1410334 1c003440 00100793 addi x15, x0, 1 x15=00000001 +76530483ns 1410335 1c003442 00a00433 add x8, x0, x10 x8=1c009b68 x10:1c009b68 +76530503ns 1410336 1c003444 00f52823 sw x15, 16(x10) x15:00000001 x10:1c009b68 PA:1c009b78 +76530524ns 1410337 1c003446 04050223 sb x0, 68(x10) x10:1c009b68 PA:1c009bac +76530544ns 1410338 1c00344a 00000593 addi x11, x0, 0 x11=00000000 +76530564ns 1410339 1c00344c 0ff00513 addi x10, x0, 255 x10=000000ff +76530584ns 1410340 1c003450 d33fd0ef jal x1, -8910 x1=1c003454 +76530625ns 1410342 1c001182 ff010113 addi x2, x2, -16 x2=1c009b30 x2:1c009b40 +76530645ns 1410343 1c001184 00112623 sw x1, 12(x2) x1:1c003454 x2:1c009b30 PA:1c009b3c +76530665ns 1410344 1c001186 00812423 sw x8, 8(x2) x8:1c009b68 x2:1c009b30 PA:1c009b38 +76530685ns 1410345 1c001188 02051163 bne x10, x0, 34 x10:000000ff +76530746ns 1410348 1c0011aa 00b00433 add x8, x0, x11 x8=00000000 x11:00000000 +76530766ns 1410349 1c0011ac 00b57d63 bgeu x10, x11, 26 x10:000000ff x11:00000000 +76530826ns 1410352 1c0011c6 00200613 addi x12, x0, 2 x12=00000002 +76530847ns 1410353 1c0011c8 00000593 addi x11, x0, 0 x11=00000000 +76530867ns 1410354 1c0011ca f4bff0ef jal x1, -182 x1=1c0011cc +76530907ns 1410356 1c001114 fe010113 addi x2, x2, -32 x2=1c009b10 x2:1c009b30 +76530927ns 1410357 1c001116 00112e23 sw x1, 28(x2) x1:1c0011cc x2:1c009b10 PA:1c009b2c +76530948ns 1410358 1c001118 00812c23 sw x8, 24(x2) x8:00000000 x2:1c009b10 PA:1c009b28 +76530968ns 1410359 1c00111a 00912a23 sw x9, 20(x2) x9:1c009190 x2:1c009b10 PA:1c009b24 +76530988ns 1410360 1c00111c 01212823 sw x18, 16(x2) x18:1c009188 x2:1c009b10 PA:1c009b20 +76531008ns 1410361 1c00111e 01312623 sw x19, 12(x2) x19:1c009000 x2:1c009b10 PA:1c009b1c +76531028ns 1410362 1c001120 02051163 bne x10, x0, 34 x10:000000ff +76531089ns 1410365 1c001142 00a00933 add x18, x0, x10 x18=000000ff x10:000000ff +76531109ns 1410366 1c001144 02b50533 mul x10, x10, x11 x10=00000000 x10:000000ff x11:00000000 +76531129ns 1410367 1c001148 00b004b3 add x9, x0, x11 x9=00000000 x11:00000000 +76531150ns 1410368 1c00114a 00c009b3 add x19, x0, x12 x19=00000002 x12:00000002 +76531170ns 1410369 1c00114c 05050513 addi x10, x10, 80 x10=00000050 x10:00000000 +76531190ns 1410370 1c001150 01b010ef jal x1, 6170 x1=1c001154 +76531230ns 1410372 1c00296a fe010113 addi x2, x2, -32 x2=1c009af0 x2:1c009b10 +76531250ns 1410373 1c00296c 00112e23 sw x1, 28(x2) x1:1c001154 x2:1c009af0 PA:1c009b0c +76531271ns 1410374 1c00296e 00812c23 sw x8, 24(x2) x8:00000000 x2:1c009af0 PA:1c009b08 +76531291ns 1410375 1c002970 00a12623 sw x10, 12(x2) x10:00000050 x2:1c009af0 PA:1c009afc +76531311ns 1410376 1c002972 8a4ff0ef jal x1, -3932 x1=1c002976 +76531372ns 1410379 1c001a16 d6818793 addi x15, x3, -664 x15=1c009144 x3:1c0093dc +76531392ns 1410380 1c001a1a 0007a703 lw x14, 0(x15) x14=00000000 x15:1c009144 PA:1c009144 +76531432ns 1410382 1c001a1c 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76531452ns 1410383 1c001a1e 00e7a023 sw x14, 0(x15) x14:00000001 x15:1c009144 PA:1c009144 +76531473ns 1410384 1c001a20 00008067 jalr x0, x1, 0 x1:1c002976 +76531513ns 1410386 1c002976 00c12503 lw x10, 12(x2) x10=00000050 x2:1c009af0 PA:1c009afc +76531533ns 1410387 1c002978 791000ef jal x1, 3984 x1=1c00297c +76531574ns 1410389 1c003908 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76531594ns 1410390 1c00390c 00a005b3 add x11, x0, x10 x11=00000050 x10:00000050 +76531614ns 1410391 1c00390e c447a503 lw x10, -956(x15) x10=1c009e10 x15:1c009000 PA:1c008c44 +76531634ns 1410392 1c003912 0b60006f jal x0, 182 +76531675ns 1410394 1c0039c8 fe010113 addi x2, x2, -32 x2=1c009ad0 x2:1c009af0 +76531695ns 1410395 1c0039ca 00912a23 sw x9, 20(x2) x9:00000000 x2:1c009ad0 PA:1c009ae4 +76531715ns 1410396 1c0039cc 00358493 addi x9, x11, 3 x9=00000053 x11:00000050 +76531735ns 1410397 1c0039d0 ffc4f493 andi x9, x9, -4 x9=00000050 x9:00000053 +76531755ns 1410398 1c0039d2 01212823 sw x18, 16(x2) x18:000000ff x2:1c009ad0 PA:1c009ae0 +76531775ns 1410399 1c0039d4 00112e23 sw x1, 28(x2) x1:1c00297c x2:1c009ad0 PA:1c009aec +76531796ns 1410400 1c0039d6 00812c23 sw x8, 24(x2) x8:00000000 x2:1c009ad0 PA:1c009ae8 +76531816ns 1410401 1c0039d8 01312623 sw x19, 12(x2) x19:00000002 x2:1c009ad0 PA:1c009adc +76531836ns 1410402 1c0039da 00848493 addi x9, x9, 8 x9=00000058 x9:00000050 +76531856ns 1410403 1c0039dc 00c00793 addi x15, x0, 12 x15=0000000c +76531876ns 1410404 1c0039de 00a00933 add x18, x0, x10 x18=1c009e10 x10:1c009e10 +76531897ns 1410405 1c0039e0 04f4f363 bgeu x9, x15, 70 x9:00000058 x15:0000000c +76531977ns 1410409 1c003a26 fc04d0e3 bge x9, x0, -64 x9:00000058 +76532058ns 1410413 1c0039e6 04b4e263 bltu x9, x11, 68 x9:00000058 x11:00000050 +76532078ns 1410414 1c0039ea 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +76532099ns 1410415 1c0039ec 87aff0ef jal x1, -3974 x1=1c0039f0 +76532159ns 1410418 1c002a66 fb1fe06f jal x0, -4176 +76532220ns 1410421 1c001a16 d6818793 addi x15, x3, -664 x15=1c009144 x3:1c0093dc +76532240ns 1410422 1c001a1a 0007a703 lw x14, 0(x15) x14=00000001 x15:1c009144 PA:1c009144 +76532280ns 1410424 1c001a1c 00170713 addi x14, x14, 1 x14=00000002 x14:00000001 +76532300ns 1410425 1c001a1e 00e7a023 sw x14, 0(x15) x14:00000002 x15:1c009144 PA:1c009144 +76532321ns 1410426 1c001a20 00008067 jalr x0, x1, 0 x1:1c0039f0 +76532361ns 1410428 1c0039f0 db81a703 lw x14, -584(x3) x14=1c00c2dc x3:1c0093dc PA:1c009194 +76532381ns 1410429 1c0039f4 db818693 addi x13, x3, -584 x13=1c009194 x3:1c0093dc +76532401ns 1410430 1c0039f8 00e00433 add x8, x0, x14 x8=1c00c2dc x14:1c00c2dc +76532422ns 1410431 1c0039fa 04041363 bne x8, x0, 70 x8:1c00c2dc +76532482ns 1410434 1c003a40 00042783 lw x15, 0(x8) x15=00000058 x8:1c00c2dc PA:1c00c2dc +76532523ns 1410436 1c003a42 409787b3 sub x15, x15, x9 x15=00000000 x15:00000058 x9:00000058 +76532543ns 1410437 1c003a44 0207cf63 blt x15, x0, 62 x15:00000000 +76532563ns 1410438 1c003a48 00b00613 addi x12, x0, 11 x12=0000000b +76532583ns 1410439 1c003a4a 00f67663 bgeu x12, x15, 12 x12:0000000b x15:00000000 +76532644ns 1410442 1c003a56 00442783 lw x15, 4(x8) x15=00000000 x8:1c00c2dc PA:1c00c2e0 +76532664ns 1410443 1c003a58 02871363 bne x14, x8, 38 x14:1c00c2dc x8:1c00c2dc +76532684ns 1410444 1c003a5c 00f6a023 sw x15, 0(x13) x15:00000000 x13:1c009194 PA:1c009194 +76532704ns 1410445 1c003a5e 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +76532724ns 1410446 1c003a60 80aff0ef jal x1, -4086 x1=1c003a64 +76532785ns 1410449 1c002a6a 8e3ff06f jal x0, -1822 +76532825ns 1410451 1c00234c fc010113 addi x2, x2, -64 x2=1c009a90 x2:1c009ad0 +76532846ns 1410452 1c00234e 02812c23 sw x8, 56(x2) x8:1c00c2dc x2:1c009a90 PA:1c009ac8 +76532866ns 1410453 1c002350 d6818413 addi x8, x3, -664 x8=1c009144 x3:1c0093dc +76532886ns 1410454 1c002354 00042783 lw x15, 0(x8) x15=00000002 x8:1c009144 PA:1c009144 +76532906ns 1410455 1c002356 02112e23 sw x1, 60(x2) x1:1c003a64 x2:1c009a90 PA:1c009acc +76532926ns 1410456 1c002358 02912a23 sw x9, 52(x2) x9:00000058 x2:1c009a90 PA:1c009ac4 +76532947ns 1410457 1c00235a 03212823 sw x18, 48(x2) x18:1c009e10 x2:1c009a90 PA:1c009ac0 +76532967ns 1410458 1c00235c 03312623 sw x19, 44(x2) x19:00000002 x2:1c009a90 PA:1c009abc +76532987ns 1410459 1c00235e 03412423 sw x20, 40(x2) x20:1c00918c x2:1c009a90 PA:1c009ab8 +76533007ns 1410460 1c002360 03512223 sw x21, 36(x2) x21:a5a5a5a5 x2:1c009a90 PA:1c009ab4 +76533027ns 1410461 1c002362 03612023 sw x22, 32(x2) x22:a5a5a5a5 x2:1c009a90 PA:1c009ab0 +76533048ns 1410462 1c002364 01712e23 sw x23, 28(x2) x23:a5a5a5a5 x2:1c009a90 PA:1c009aac +76533068ns 1410463 1c002366 02079263 bne x15, x0, 36 x15:00000002 +76533149ns 1410467 1c00238a c83ff0ef jal x1, -894 x1=1c00238e +76533189ns 1410469 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +76533270ns 1410473 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76533310ns 1410475 1c002014 00078863 beq x15, x0, 16 x15:00000001 +76533330ns 1410476 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76533350ns 1410477 1c00201a 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76533371ns 1410478 1c00201c 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76533391ns 1410479 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c009db8 PA:1c009dfc +76533431ns 1410481 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76533451ns 1410482 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c009db8 PA:1c009dfc +76533472ns 1410483 1c002024 00008067 jalr x0, x1, 0 x1:1c00238e +76533512ns 1410485 1c00238e 00042783 lw x15, 0(x8) x15=00000002 x8:1c009144 PA:1c009144 +76533552ns 1410487 1c002390 fff78793 addi x15, x15, -1 x15=00000001 x15:00000002 +76533573ns 1410488 1c002392 00f42023 sw x15, 0(x8) x15:00000001 x8:1c009144 PA:1c009144 +76533593ns 1410489 1c002394 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +76533633ns 1410491 1c002396 02078163 beq x15, x0, 34 x15:00000001 +76533653ns 1410492 1c002398 00000513 addi x10, x0, 0 x10=00000000 +76533674ns 1410493 1c00239a 00a12623 sw x10, 12(x2) x10:00000000 x2:1c009a90 PA:1c009a9c +76533694ns 1410494 1c00239c c8bff0ef jal x1, -886 x1=1c0023a0 +76533754ns 1410497 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76533795ns 1410499 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +76533815ns 1410500 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76533835ns 1410501 1c002030 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +76533875ns 1410503 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c009db8 PA:1c009dfc +76533916ns 1410505 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +76533936ns 1410506 1c002036 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76533956ns 1410507 1c002038 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76533976ns 1410508 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c009db8 PA:1c009dfc +76534017ns 1410510 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +76534037ns 1410511 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c009db8 PA:1c009dfc +76534057ns 1410512 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c009db8 PA:1c009dfc +76534098ns 1410514 1c002042 00079363 bne x15, x0, 6 x15:00000000 +76534118ns 1410515 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +76534199ns 1410519 1c002048 00008067 jalr x0, x1, 0 x1:1c0023a0 +76534239ns 1410521 1c0023a0 03c12083 lw x1, 60(x2) x1=1c003a64 x2:1c009a90 PA:1c009acc +76534259ns 1410522 1c0023a2 03812403 lw x8, 56(x2) x8=1c00c2dc x2:1c009a90 PA:1c009ac8 +76534279ns 1410523 1c0023a4 00c12503 lw x10, 12(x2) x10=00000000 x2:1c009a90 PA:1c009a9c +76534299ns 1410524 1c0023a6 03412483 lw x9, 52(x2) x9=00000058 x2:1c009a90 PA:1c009ac4 +76534320ns 1410525 1c0023a8 03012903 lw x18, 48(x2) x18=1c009e10 x2:1c009a90 PA:1c009ac0 +76534340ns 1410526 1c0023aa 02c12983 lw x19, 44(x2) x19=00000002 x2:1c009a90 PA:1c009abc +76534360ns 1410527 1c0023ac 02812a03 lw x20, 40(x2) x20=1c00918c x2:1c009a90 PA:1c009ab8 +76534380ns 1410528 1c0023ae 02412a83 lw x21, 36(x2) x21=a5a5a5a5 x2:1c009a90 PA:1c009ab4 +76534400ns 1410529 1c0023b0 02012b03 lw x22, 32(x2) x22=a5a5a5a5 x2:1c009a90 PA:1c009ab0 +76534421ns 1410530 1c0023b2 01c12b83 lw x23, 28(x2) x23=a5a5a5a5 x2:1c009a90 PA:1c009aac +76534441ns 1410531 1c0023b4 04010113 addi x2, x2, 64 x2=1c009ad0 x2:1c009a90 +76534461ns 1410532 1c0023b6 00008067 jalr x0, x1, 0 x1:1c003a64 +76534501ns 1410534 1c003a64 00b40513 addi x10, x8, 11 x10=1c00c2e7 x8:1c00c2dc +76534522ns 1410535 1c003a68 00440793 addi x15, x8, 4 x15=1c00c2e0 x8:1c00c2dc +76534542ns 1410536 1c003a6c ff857513 andi x10, x10, -8 x10=1c00c2e0 x10:1c00c2e7 +76534562ns 1410537 1c003a6e 40f50733 sub x14, x10, x15 x14=00000000 x10:1c00c2e0 x15:1c00c2e0 +76534582ns 1410538 1c003a72 fcf500e3 beq x10, x15, -64 x10:1c00c2e0 x15:1c00c2e0 +76534643ns 1410541 1c003a32 01c12083 lw x1, 28(x2) x1=1c00297c x2:1c009ad0 PA:1c009aec +76534663ns 1410542 1c003a34 01812403 lw x8, 24(x2) x8=00000000 x2:1c009ad0 PA:1c009ae8 +76534683ns 1410543 1c003a36 01412483 lw x9, 20(x2) x9=00000000 x2:1c009ad0 PA:1c009ae4 +76534703ns 1410544 1c003a38 01012903 lw x18, 16(x2) x18=000000ff x2:1c009ad0 PA:1c009ae0 +76534723ns 1410545 1c003a3a 00c12983 lw x19, 12(x2) x19=00000002 x2:1c009ad0 PA:1c009adc +76534744ns 1410546 1c003a3c 02010113 addi x2, x2, 32 x2=1c009af0 x2:1c009ad0 +76534764ns 1410547 1c003a3e 00008067 jalr x0, x1, 0 x1:1c00297c +76534804ns 1410549 1c00297c 00a00433 add x8, x0, x10 x8=1c00c2e0 x10:1c00c2e0 +76534824ns 1410550 1c00297e 9cfff0ef jal x1, -1586 x1=1c002982 +76534865ns 1410552 1c00234c fc010113 addi x2, x2, -64 x2=1c009ab0 x2:1c009af0 +76534885ns 1410553 1c00234e 02812c23 sw x8, 56(x2) x8:1c00c2e0 x2:1c009ab0 PA:1c009ae8 +76534905ns 1410554 1c002350 d6818413 addi x8, x3, -664 x8=1c009144 x3:1c0093dc +76534925ns 1410555 1c002354 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +76534946ns 1410556 1c002356 02112e23 sw x1, 60(x2) x1:1c002982 x2:1c009ab0 PA:1c009aec +76534966ns 1410557 1c002358 02912a23 sw x9, 52(x2) x9:00000000 x2:1c009ab0 PA:1c009ae4 +76534986ns 1410558 1c00235a 03212823 sw x18, 48(x2) x18:000000ff x2:1c009ab0 PA:1c009ae0 +76535006ns 1410559 1c00235c 03312623 sw x19, 44(x2) x19:00000002 x2:1c009ab0 PA:1c009adc +76535026ns 1410560 1c00235e 03412423 sw x20, 40(x2) x20:1c00918c x2:1c009ab0 PA:1c009ad8 +76535047ns 1410561 1c002360 03512223 sw x21, 36(x2) x21:a5a5a5a5 x2:1c009ab0 PA:1c009ad4 +76535067ns 1410562 1c002362 03612023 sw x22, 32(x2) x22:a5a5a5a5 x2:1c009ab0 PA:1c009ad0 +76535087ns 1410563 1c002364 01712e23 sw x23, 28(x2) x23:a5a5a5a5 x2:1c009ab0 PA:1c009acc +76535107ns 1410564 1c002366 02079263 bne x15, x0, 36 x15:00000001 +76535188ns 1410568 1c00238a c83ff0ef jal x1, -894 x1=1c00238e +76535228ns 1410570 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +76535309ns 1410574 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76535349ns 1410576 1c002014 00078863 beq x15, x0, 16 x15:00000001 +76535370ns 1410577 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76535390ns 1410578 1c00201a 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76535410ns 1410579 1c00201c 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76535430ns 1410580 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c009db8 PA:1c009dfc +76535471ns 1410582 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76535491ns 1410583 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c009db8 PA:1c009dfc +76535511ns 1410584 1c002024 00008067 jalr x0, x1, 0 x1:1c00238e +76535551ns 1410586 1c00238e 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +76535592ns 1410588 1c002390 fff78793 addi x15, x15, -1 x15=00000000 x15:00000001 +76535612ns 1410589 1c002392 00f42023 sw x15, 0(x8) x15:00000000 x8:1c009144 PA:1c009144 +76535632ns 1410590 1c002394 00042783 lw x15, 0(x8) x15=00000000 x8:1c009144 PA:1c009144 +76535673ns 1410592 1c002396 02078163 beq x15, x0, 34 x15:00000000 +76535733ns 1410595 1c0023b8 d601a783 lw x15, -672(x3) x15=00000003 x3:1c0093dc PA:1c00913c +76535773ns 1410597 1c0023bc fc078ee3 beq x15, x0, -36 x15:00000003 +76535794ns 1410598 1c0023be 1c009937 lui x18, 0x1c009000 x18=1c009000 +76535814ns 1410599 1c0023c2 00000413 addi x8, x0, 0 x8=00000000 +76535834ns 1410600 1c0023c4 93818493 addi x9, x3, -1736 x9=1c008d14 x3:1c0093dc +76535854ns 1410601 1c0023c8 00100993 addi x19, x0, 1 x19=00000001 +76535874ns 1410602 1c0023ca c8890913 addi x18, x18, -888 x18=1c008c88 x18:1c009000 +76535895ns 1410603 1c0023ce 01400a93 addi x21, x0, 20 x21=00000014 +76535915ns 1410604 1c0023d0 04c0006f jal x0, 76 +76535955ns 1410606 1c00241c 0004a783 lw x15, 0(x9) x15=00000000 x9:1c008d14 PA:1c008d14 +76535996ns 1410608 1c00241e fa079ae3 bne x15, x0, -76 x15:00000000 +76536016ns 1410609 1c002420 00040363 beq x8, x0, 6 x8:00000000 +76536097ns 1410613 1c002426 d8018713 addi x14, x3, -640 x14=1c00915c x3:1c0093dc +76536117ns 1410614 1c00242a 00072483 lw x9, 0(x14) x9=00000000 x14:1c00915c PA:1c00915c +76536137ns 1410615 1c00242c d8018413 addi x8, x3, -640 x8=1c00915c x3:1c0093dc +76536157ns 1410616 1c002430 00048d63 beq x9, x0, 26 x9:00000000 +76536238ns 1410620 1c00244a d8c1a783 lw x15, -628(x3) x15=00000000 x3:1c0093dc PA:1c009168 +76536278ns 1410622 1c00244e f40785e3 beq x15, x0, -182 x15:00000000 +76536339ns 1410625 1c002398 00000513 addi x10, x0, 0 x10=00000000 +76536359ns 1410626 1c00239a 00a12623 sw x10, 12(x2) x10:00000000 x2:1c009ab0 PA:1c009abc +76536379ns 1410627 1c00239c c8bff0ef jal x1, -886 x1=1c0023a0 +76536440ns 1410630 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76536480ns 1410632 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +76536500ns 1410633 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76536521ns 1410634 1c002030 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +76536561ns 1410636 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c009db8 PA:1c009dfc +76536601ns 1410638 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +76536622ns 1410639 1c002036 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76536642ns 1410640 1c002038 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76536662ns 1410641 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c009db8 PA:1c009dfc +76536702ns 1410643 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +76536723ns 1410644 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c009db8 PA:1c009dfc +76536743ns 1410645 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c009db8 PA:1c009dfc +76536783ns 1410647 1c002042 00079363 bne x15, x0, 6 x15:00000000 +76536803ns 1410648 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +76536884ns 1410652 1c002048 00008067 jalr x0, x1, 0 x1:1c0023a0 +76536924ns 1410654 1c0023a0 03c12083 lw x1, 60(x2) x1=1c002982 x2:1c009ab0 PA:1c009aec +76536945ns 1410655 1c0023a2 03812403 lw x8, 56(x2) x8=1c00c2e0 x2:1c009ab0 PA:1c009ae8 +76536965ns 1410656 1c0023a4 00c12503 lw x10, 12(x2) x10=00000000 x2:1c009ab0 PA:1c009abc +76536985ns 1410657 1c0023a6 03412483 lw x9, 52(x2) x9=00000000 x2:1c009ab0 PA:1c009ae4 +76537005ns 1410658 1c0023a8 03012903 lw x18, 48(x2) x18=000000ff x2:1c009ab0 PA:1c009ae0 +76537025ns 1410659 1c0023aa 02c12983 lw x19, 44(x2) x19=00000002 x2:1c009ab0 PA:1c009adc +76537046ns 1410660 1c0023ac 02812a03 lw x20, 40(x2) x20=1c00918c x2:1c009ab0 PA:1c009ad8 +76537066ns 1410661 1c0023ae 02412a83 lw x21, 36(x2) x21=a5a5a5a5 x2:1c009ab0 PA:1c009ad4 +76537086ns 1410662 1c0023b0 02012b03 lw x22, 32(x2) x22=a5a5a5a5 x2:1c009ab0 PA:1c009ad0 +76537106ns 1410663 1c0023b2 01c12b83 lw x23, 28(x2) x23=a5a5a5a5 x2:1c009ab0 PA:1c009acc +76537126ns 1410664 1c0023b4 04010113 addi x2, x2, 64 x2=1c009af0 x2:1c009ab0 +76537147ns 1410665 1c0023b6 00008067 jalr x0, x1, 0 x1:1c002982 +76537187ns 1410667 1c002982 00041363 bne x8, x0, 6 x8:1c00c2e0 +76537247ns 1410670 1c002988 01c12083 lw x1, 28(x2) x1=1c001154 x2:1c009af0 PA:1c009b0c +76537268ns 1410671 1c00298a 00800533 add x10, x0, x8 x10=1c00c2e0 x8:1c00c2e0 +76537288ns 1410672 1c00298c 01812403 lw x8, 24(x2) x8=00000000 x2:1c009af0 PA:1c009b08 +76537308ns 1410673 1c00298e 02010113 addi x2, x2, 32 x2=1c009b10 x2:1c009af0 +76537328ns 1410674 1c002990 00008067 jalr x0, x1, 0 x1:1c001154 +76537369ns 1410676 1c001154 00a00433 add x8, x0, x10 x8=1c00c2e0 x10:1c00c2e0 +76537389ns 1410677 1c001156 00050e63 beq x10, x0, 28 x10:1c00c2e0 +76537409ns 1410678 1c001158 00a007b3 add x15, x0, x10 x15=1c00c2e0 x10:1c00c2e0 +76537429ns 1410679 1c00115a 00048363 beq x9, x0, 6 x9:00000000 +76537490ns 1410682 1c001160 00f42023 sw x15, 0(x8) x15:1c00c2e0 x8:1c00c2e0 PA:1c00c2e0 +76537510ns 1410683 1c001162 03242e23 sw x18, 60(x8) x18:000000ff x8:1c00c2e0 PA:1c00c31c +76537530ns 1410684 1c001166 04942023 sw x9, 64(x8) x9:00000000 x8:1c00c2e0 PA:1c00c320 +76537550ns 1410685 1c001168 00100593 addi x11, x0, 1 x11=00000001 +76537571ns 1410686 1c00116a 00800533 add x10, x0, x8 x10=1c00c2e0 x8:1c00c2e0 +76537591ns 1410687 1c00116c f1fff0ef jal x1, -226 x1=1c00116e +76537631ns 1410689 1c00108a ff010113 addi x2, x2, -16 x2=1c009b00 x2:1c009b10 +76537651ns 1410690 1c00108c 00112623 sw x1, 12(x2) x1:1c00116e x2:1c009b00 PA:1c009b0c +76537672ns 1410691 1c00108e 00812423 sw x8, 8(x2) x8:1c00c2e0 x2:1c009b00 PA:1c009b08 +76537692ns 1410692 1c001090 00912223 sw x9, 4(x2) x9:00000000 x2:1c009b00 PA:1c009b04 +76537712ns 1410693 1c001092 02051163 bne x10, x0, 34 x10:1c00c2e0 +76537772ns 1410696 1c0010b4 00a00433 add x8, x0, x10 x8=1c00c2e0 x10:1c00c2e0 +76537793ns 1410697 1c0010b6 00b004b3 add x9, x0, x11 x9=00000001 x11:00000001 +76537813ns 1410698 1c0010b8 755000ef jal x1, 3924 x1=1c0010bc +76537853ns 1410700 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +76537934ns 1410704 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76537974ns 1410706 1c002014 00078863 beq x15, x0, 16 x15:00000001 +76537995ns 1410707 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76538015ns 1410708 1c00201a 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76538035ns 1410709 1c00201c 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76538055ns 1410710 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c009db8 PA:1c009dfc +76538096ns 1410712 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76538116ns 1410713 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c009db8 PA:1c009dfc +76538136ns 1410714 1c002024 00008067 jalr x0, x1, 0 x1:1c0010bc +76538176ns 1410716 1c0010bc 04042683 lw x13, 64(x8) x13=00000000 x8:1c00c2e0 PA:1c00c320 +76538197ns 1410717 1c0010be 03c42783 lw x15, 60(x8) x15=000000ff x8:1c00c2e0 PA:1c00c31c +76538217ns 1410718 1c0010c0 00042703 lw x14, 0(x8) x14=1c00c2e0 x8:1c00c2e0 PA:1c00c2e0 +76538237ns 1410719 1c0010c2 02042c23 sw x0, 56(x8) x8:1c00c2e0 PA:1c00c318 +76538257ns 1410720 1c0010c6 02f687b3 mul x15, x13, x15 x15=00000000 x13:00000000 x15:000000ff +76538277ns 1410721 1c0010ca 00e42223 sw x14, 4(x8) x14:1c00c2e0 x8:1c00c2e0 PA:1c00c2e4 +76538297ns 1410722 1c0010cc 00f70633 add x12, x14, x15 x12=1c00c2e0 x14:1c00c2e0 x15:00000000 +76538318ns 1410723 1c0010d0 40d787b3 sub x15, x15, x13 x15=00000000 x15:00000000 x13:00000000 +76538338ns 1410724 1c0010d2 00e787b3 add x15, x15, x14 x15=1c00c2e0 x15:00000000 x14:1c00c2e0 +76538358ns 1410725 1c0010d4 00f42623 sw x15, 12(x8) x15:1c00c2e0 x8:1c00c2e0 PA:1c00c2ec +76538378ns 1410726 1c0010d6 fff00793 addi x15, x0, -1 x15=ffffffff +76538398ns 1410727 1c0010d8 04f40223 sb x15, 68(x8) x15:ffffffff x8:1c00c2e0 PA:1c00c324 +76538419ns 1410728 1c0010dc 00c42423 sw x12, 8(x8) x12:1c00c2e0 x8:1c00c2e0 PA:1c00c2e8 +76538439ns 1410729 1c0010de 04f402a3 sb x15, 69(x8) x15:ffffffff x8:1c00c2e0 PA:1c00c325 +76538459ns 1410730 1c0010e2 02049263 bne x9, x0, 36 x9:00000001 +76538540ns 1410734 1c001106 01040513 addi x10, x8, 16 x10=1c00c2f0 x8:1c00c2e0 +76538560ns 1410735 1c00110a dbdff0ef jal x1, -580 x1=1c00110c +76538621ns 1410738 1c000ec6 00850793 addi x15, x10, 8 x15=1c00c2f8 x10:1c00c2f0 +76538641ns 1410739 1c000eca fff00713 addi x14, x0, -1 x14=ffffffff +76538661ns 1410740 1c000ecc 00f52223 sw x15, 4(x10) x15:1c00c2f8 x10:1c00c2f0 PA:1c00c2f4 +76538681ns 1410741 1c000ece 00e52423 sw x14, 8(x10) x14:ffffffff x10:1c00c2f0 PA:1c00c2f8 +76538701ns 1410742 1c000ed0 00f52623 sw x15, 12(x10) x15:1c00c2f8 x10:1c00c2f0 PA:1c00c2fc +76538722ns 1410743 1c000ed2 00f52823 sw x15, 16(x10) x15:1c00c2f8 x10:1c00c2f0 PA:1c00c300 +76538742ns 1410744 1c000ed4 00052023 sw x0, 0(x10) x10:1c00c2f0 PA:1c00c2f0 +76538762ns 1410745 1c000ed8 00008067 jalr x0, x1, 0 x1:1c00110c +76538802ns 1410747 1c00110c 02440513 addi x10, x8, 36 x10=1c00c304 x8:1c00c2e0 +76538822ns 1410748 1c001110 db7ff0ef jal x1, -586 x1=1c001112 +76538883ns 1410751 1c000ec6 00850793 addi x15, x10, 8 x15=1c00c30c x10:1c00c304 +76538903ns 1410752 1c000eca fff00713 addi x14, x0, -1 x14=ffffffff +76538923ns 1410753 1c000ecc 00f52223 sw x15, 4(x10) x15:1c00c30c x10:1c00c304 PA:1c00c308 +76538944ns 1410754 1c000ece 00e52423 sw x14, 8(x10) x14:ffffffff x10:1c00c304 PA:1c00c30c +76538964ns 1410755 1c000ed0 00f52623 sw x15, 12(x10) x15:1c00c30c x10:1c00c304 PA:1c00c310 +76538984ns 1410756 1c000ed2 00f52823 sw x15, 16(x10) x15:1c00c30c x10:1c00c304 PA:1c00c314 +76539004ns 1410757 1c000ed4 00052023 sw x0, 0(x10) x10:1c00c304 PA:1c00c304 +76539024ns 1410758 1c000ed8 00008067 jalr x0, x1, 0 x1:1c001112 +76539065ns 1410760 1c001112 fe5ff06f jal x0, -28 +76539125ns 1410763 1c0010f6 731000ef jal x1, 3888 x1=1c0010fa +76539186ns 1410766 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76539226ns 1410768 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +76539247ns 1410769 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76539267ns 1410770 1c002030 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +76539307ns 1410772 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c009db8 PA:1c009dfc +76539347ns 1410774 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +76539368ns 1410775 1c002036 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76539388ns 1410776 1c002038 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76539408ns 1410777 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c009db8 PA:1c009dfc +76539448ns 1410779 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +76539469ns 1410780 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c009db8 PA:1c009dfc +76539489ns 1410781 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c009db8 PA:1c009dfc +76539529ns 1410783 1c002042 00079363 bne x15, x0, 6 x15:00000000 +76539549ns 1410784 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +76539630ns 1410788 1c002048 00008067 jalr x0, x1, 0 x1:1c0010fa +76539671ns 1410790 1c0010fa 00c12083 lw x1, 12(x2) x1=1c00116e x2:1c009b00 PA:1c009b0c +76539691ns 1410791 1c0010fc 00812403 lw x8, 8(x2) x8=1c00c2e0 x2:1c009b00 PA:1c009b08 +76539711ns 1410792 1c0010fe 00412483 lw x9, 4(x2) x9=00000000 x2:1c009b00 PA:1c009b04 +76539731ns 1410793 1c001100 00100513 addi x10, x0, 1 x10=00000001 +76539751ns 1410794 1c001102 01010113 addi x2, x2, 16 x2=1c009b10 x2:1c009b00 +76539771ns 1410795 1c001104 00008067 jalr x0, x1, 0 x1:1c00116e +76539832ns 1410798 1c00116e 05340623 sb x19, 76(x8) x19:00000002 x8:1c00c2e0 PA:1c00c32c +76539852ns 1410799 1c001172 01c12083 lw x1, 28(x2) x1=1c0011cc x2:1c009b10 PA:1c009b2c +76539872ns 1410800 1c001174 00800533 add x10, x0, x8 x10=1c00c2e0 x8:1c00c2e0 +76539893ns 1410801 1c001176 01812403 lw x8, 24(x2) x8=00000000 x2:1c009b10 PA:1c009b28 +76539913ns 1410802 1c001178 01412483 lw x9, 20(x2) x9=1c009190 x2:1c009b10 PA:1c009b24 +76539933ns 1410803 1c00117a 01012903 lw x18, 16(x2) x18=1c009188 x2:1c009b10 PA:1c009b20 +76539953ns 1410804 1c00117c 00c12983 lw x19, 12(x2) x19=1c009000 x2:1c009b10 PA:1c009b1c +76539973ns 1410805 1c00117e 02010113 addi x2, x2, 32 x2=1c009b30 x2:1c009b10 +76539994ns 1410806 1c001180 00008067 jalr x0, x1, 0 x1:1c0011cc +76540034ns 1410808 1c0011cc 00050263 beq x10, x0, 4 x10:1c00c2e0 +76540054ns 1410809 1c0011ce 02852c23 sw x8, 56(x10) x8:00000000 x10:1c00c2e0 PA:1c00c318 +76540074ns 1410810 1c0011d0 00c12083 lw x1, 12(x2) x1=1c003454 x2:1c009b30 PA:1c009b3c +76540095ns 1410811 1c0011d2 00812403 lw x8, 8(x2) x8=1c009b68 x2:1c009b30 PA:1c009b38 +76540115ns 1410812 1c0011d4 01010113 addi x2, x2, 16 x2=1c009b40 x2:1c009b30 +76540135ns 1410813 1c0011d6 00008067 jalr x0, x1, 0 x1:1c003454 +76540175ns 1410815 1c003454 02a42a23 sw x10, 52(x8) x10:1c00c2e0 x8:1c009b68 PA:1c009b9c +76540196ns 1410816 1c003456 00050b63 beq x10, x0, 22 x10:1c00c2e0 +76540216ns 1410817 1c003458 1c0037b7 lui x15, 0x1c003000 x15=1c003000 +76540236ns 1410818 1c00345c 40c78793 addi x15, x15, 1036 x15=1c00340c x15:1c003000 +76540256ns 1410819 1c003460 02f42c23 sw x15, 56(x8) x15:1c00340c x8:1c009b68 PA:1c009ba0 +76540276ns 1410820 1c003462 1c0037b7 lui x15, 0x1c003000 x15=1c003000 +76540296ns 1410821 1c003466 3da78793 addi x15, x15, 986 x15=1c0033da x15:1c003000 +76540317ns 1410822 1c00346a 02f42e23 sw x15, 60(x8) x15:1c0033da x8:1c009b68 PA:1c009ba4 +76540337ns 1410823 1c00346c 00100793 addi x15, x0, 1 x15=00000001 +76540357ns 1410824 1c00346e 04f403a3 sb x15, 71(x8) x15:00000001 x8:1c009b68 PA:1c009baf +76540377ns 1410825 1c003472 fff00793 addi x15, x0, -1 x15=ffffffff +76540397ns 1410826 1c003474 00c12083 lw x1, 12(x2) x1=1c002b92 x2:1c009b40 PA:1c009b4c +76540418ns 1410827 1c003476 04f402a3 sb x15, 69(x8) x15:ffffffff x8:1c009b68 PA:1c009bad +76540438ns 1410828 1c00347a 00800533 add x10, x0, x8 x10=1c009b68 x8:1c009b68 +76540458ns 1410829 1c00347c 00812403 lw x8, 8(x2) x8=1c009be0 x2:1c009b40 PA:1c009b48 +76540478ns 1410830 1c00347e 01010113 addi x2, x2, 16 x2=1c009b50 x2:1c009b40 +76540498ns 1410831 1c003480 00008067 jalr x0, x1, 0 x1:1c002b92 +76540539ns 1410833 1c002b92 00412683 lw x13, 4(x2) x13=00000000 x2:1c009b50 PA:1c009b54 +76540559ns 1410834 1c002b94 00812603 lw x12, 8(x2) x12=00000008 x2:1c009b50 PA:1c009b58 +76540579ns 1410835 1c002b96 00c12583 lw x11, 12(x2) x11=1c009bd7 x2:1c009b50 PA:1c009b5c +76540599ns 1410836 1c002b98 01810713 addi x14, x2, 24 x14=1c009b68 x2:1c009b50 +76540620ns 1410837 1c002b9a 00800533 add x10, x0, x8 x10=1c009be0 x8:1c009be0 +76540640ns 1410838 1c002b9c fdfff0ef jal x1, -34 x1=1c002b9e +76540680ns 1410840 1c002b7a 00852503 lw x10, 8(x10) x10=1c00b8c0 x10:1c009be0 PA:1c009be8 +76540700ns 1410841 1c002b7c 1240006f jal x0, 292 +76540741ns 1410843 1c002ca0 fa010113 addi x2, x2, -96 x2=1c009af0 x2:1c009b50 +76540761ns 1410844 1c002ca2 05612023 sw x22, 64(x2) x22:a5a5a5a5 x2:1c009af0 PA:1c009b30 +76540781ns 1410845 1c002ca4 00452b03 lw x22, 4(x10) x22=1c00b890 x10:1c00b8c0 PA:1c00b8c4 +76540801ns 1410846 1c002ca8 05212823 sw x18, 80(x2) x18:1c009188 x2:1c009af0 PA:1c009b40 +76540821ns 1410847 1c002caa 03712e23 sw x23, 60(x2) x23:a5a5a5a5 x2:1c009af0 PA:1c009b2c +76540842ns 1410848 1c002cac 04112e23 sw x1, 92(x2) x1:1c002b9e x2:1c009af0 PA:1c009b4c +76540862ns 1410849 1c002cae 04812c23 sw x8, 88(x2) x8:1c009be0 x2:1c009af0 PA:1c009b48 +76540882ns 1410850 1c002cb0 04912a23 sw x9, 84(x2) x9:1c009190 x2:1c009af0 PA:1c009b44 +76540902ns 1410851 1c002cb2 05312623 sw x19, 76(x2) x19:1c009000 x2:1c009af0 PA:1c009b3c +76540922ns 1410852 1c002cb4 05412423 sw x20, 72(x2) x20:1c00918c x2:1c009af0 PA:1c009b38 +76540943ns 1410853 1c002cb6 05512223 sw x21, 68(x2) x21:a5a5a5a5 x2:1c009af0 PA:1c009b34 +76540963ns 1410854 1c002cb8 000107b7 lui x15, 0x10000 x15=00010000 +76540983ns 1410855 1c002cba 014b4483 lbu x9, 20(x22) x9=00000000 x22:1c00b890 PA:1c00b8a4 +76541003ns 1410856 1c002cbe 00852b83 lw x23, 8(x10) x23=00000003 x10:1c00b8c0 PA:1c00b8c8 +76541023ns 1410857 1c002cc2 00c00933 add x18, x0, x12 x18=00000008 x12:00000008 +76541044ns 1410858 1c002cc4 00c7f463 bgeu x15, x12, 8 x15:00010000 x12:00000008 +76541104ns 1410861 1c002ccc 00a00433 add x8, x0, x10 x8=1c00b8c0 x10:1c00b8c0 +76541124ns 1410862 1c002cce 00b00a33 add x20, x0, x11 x20=1c009bd7 x11:1c009bd7 +76541145ns 1410863 1c002cd0 00d009b3 add x19, x0, x13 x19=00000000 x13:00000000 +76541165ns 1410864 1c002cd2 00e12623 sw x14, 12(x2) x14:1c009b68 x2:1c009af0 PA:1c009afc +76541185ns 1410865 1c002cd4 edfff0ef jal x1, -290 x1=1c002cd8 +76541246ns 1410868 1c002bb2 30047573 csrrci x10, 0x00000008, 0x300 x10=00000088 +76541326ns 1410872 1c002bb6 00008067 jalr x0, x1, 0 x1:1c002cd8 +76541367ns 1410874 1c002cd8 03944803 lbu x16, 57(x8) x16=00000000 x8:1c00b8c0 PA:1c00b8f9 +76541387ns 1410875 1c002cdc 00c12603 lw x12, 12(x2) x12=1c009b68 x2:1c009af0 PA:1c009afc +76541407ns 1410876 1c002cde 00a00ab3 add x21, x0, x10 x21=00000088 x10:00000088 +76541427ns 1410877 1c002ce0 00080e63 beq x16, x0, 28 x16:00000000 +76541488ns 1410880 1c002cfc 00000793 addi x15, x0, 0 x15=00000000 +76541508ns 1410881 1c002cfe 00800893 addi x17, x0, 8 x17=00000008 +76541528ns 1410882 1c002d00 00cb2703 lw x14, 12(x22) x14=00000000 x22:1c00b890 PA:1c00b89c +76541569ns 1410884 1c002d04 0a071663 bne x14, x0, 172 x14:00000000 +76541589ns 1410885 1c002d06 03844783 lbu x15, 56(x8) x15=00000000 x8:1c00b8c0 PA:1c00b8f8 +76541609ns 1410886 1c002d0a 10000737 lui x14, 0x10000000 x14=10000000 +76541629ns 1410887 1c002d0e 01742623 sw x23, 12(x8) x23:00000003 x8:1c00b8c0 PA:1c00b8cc +76541649ns 1410888 1c002d12 00e7e7b3 or x15, x15, x14 x15=10000000 x15:00000000 x14:10000000 +76541670ns 1410889 1c002d14 fff88713 addi x14, x17, -1 x14=00000007 x17:00000008 +76541690ns 1410890 1c002d18 031958b3 divu x17, x18, x17 x17=00000001 x18:00000008 x17:00000008 +76542316ns 1410921 1c002d1c 00f42823 sw x15, 16(x8) x15:10000000 x8:1c00b8c0 PA:1c00b8d0 +76542336ns 1410922 1c002d1e 00c9f793 andi x15, x19, 12 x15=00000000 x19:00000000 +76542356ns 1410923 1c002d22 ffc78793 addi x15, x15, -4 x15=fffffffc x15:00000000 +76542376ns 1410924 1c002d24 0017b793 sltiu x15, x15, 1 x15=00000000 x15:fffffffc +76542396ns 1410925 1c002d28 01071713 slli x14, x14, 0x10 x14=00070000 x14:00000007 +76542417ns 1410926 1c002d2a 01b79793 slli x15, x15, 0x1b x15=00000000 x15:00000000 +76542437ns 1410927 1c002d2c 00e7e7b3 or x15, x15, x14 x15=00070000 x15:00000000 x14:00070000 +76542457ns 1410928 1c002d2e 70000737 lui x14, 0x70000000 x14=70000000 +76542477ns 1410929 1c002d32 00e7e7b3 or x15, x15, x14 x15=70070000 x15:00070000 x14:70000000 +76542497ns 1410930 1c002d34 0039f993 andi x19, x19, 3 x19=00000000 x19:00000000 +76542518ns 1410931 1c002d38 fff88893 addi x17, x17, -1 x17=00000000 x17:00000001 +76542538ns 1410932 1c002d3a 0117e7b3 or x15, x15, x17 x15=70070000 x15:70070000 x17:00000000 +76542558ns 1410933 1c002d3e 00f42a23 sw x15, 20(x8) x15:70070000 x8:1c00b8c0 PA:1c00b8d4 +76542578ns 1410934 1c002d40 00100793 addi x15, x0, 1 x15=00000001 +76542598ns 1410935 1c002d42 06f98363 beq x19, x15, 102 x19:00000000 x15:00000001 +76542619ns 1410936 1c002d46 900007b7 lui x15, 0x90000000 x15=90000000 +76542639ns 1410937 1c002d4a 00178793 addi x15, x15, 1 x15=90000001 x15:90000000 +76542659ns 1410938 1c002d4c 00f42c23 sw x15, 24(x8) x15:90000001 x8:1c00b8c0 PA:1c00b8d8 +76542679ns 1410939 1c002d4e 1a102737 lui x14, 0x1a102000 x14=1a102000 +76542699ns 1410940 1c002d52 00148793 addi x15, x9, 1 x15=00000001 x9:00000000 +76542720ns 1410941 1c002d56 08070713 addi x14, x14, 128 x14=1a102080 x14:1a102000 +76542740ns 1410942 1c002d5a 00181813 slli x16, x16, 0x1 x16=00000000 x16:00000000 +76542760ns 1410943 1c002d5c 00779793 slli x15, x15, 0x7 x15=00000080 x15:00000001 +76542780ns 1410944 1c002d5e 00cb2623 sw x12, 12(x22) x12:1c009b68 x22:1c00b890 PA:1c00b89c +76542800ns 1410945 1c002d62 000b2423 sw x0, 8(x22) x22:1c00b890 PA:1c00b898 +76542820ns 1410946 1c002d66 01086813 ori x16, x16, 16 x16=00000010 x16:00000000 +76542841ns 1410947 1c002d6a 00e787b3 add x15, x15, x14 x15=1a102100 x15:00000080 x14:1a102080 +76542861ns 1410948 1c002d6c 0147a023 sw x20, 0(x15) x20:1c009bd7 x15:1a102100 PA:1a102100 +76542881ns 1410949 1c002d70 00790913 addi x18, x18, 7 x18=0000000f x18:00000008 +76542942ns 1410952 1c002d72 00395913 srli x18, x18, 0x3 x18=00000001 x18:0000000f +76542962ns 1410953 1c002d76 00078793 addi x15, x15, 0 x15=1a102100 x15:1a102100 +76542982ns 1410954 1c002d7a 0127a223 sw x18, 4(x15) x18:00000001 x15:1a102100 PA:1a102104 +76543002ns 1410955 1c002d7e 0107a423 sw x16, 8(x15) x16:00000010 x15:1a102100 PA:1a102108 +76543083ns 1410959 1c002d82 00c40413 addi x8, x8, 12 x8=1c00b8cc x8:1c00b8c0 +76543144ns 1410962 1c002d84 0287a023 sw x8, 32(x15) x8:1c00b8cc x15:1a102100 PA:1a102120 +76543164ns 1410963 1c002d86 01000713 addi x14, x0, 16 x14=00000010 +76543224ns 1410966 1c002d88 02e7a223 sw x14, 36(x15) x14:00000010 x15:1a102100 PA:1a102124 +76543245ns 1410967 1c002d8a 01400713 addi x14, x0, 20 x14=00000014 +76543305ns 1410970 1c002d8c 02e7a423 sw x14, 40(x15) x14:00000014 x15:1a102100 PA:1a102128 +76543325ns 1410971 1c002d8e 05812403 lw x8, 88(x2) x8=1c009be0 x2:1c009af0 PA:1c009b48 +76543386ns 1410974 1c002d90 05c12083 lw x1, 92(x2) x1=1c002b9e x2:1c009af0 PA:1c009b4c +76543406ns 1410975 1c002d92 05412483 lw x9, 84(x2) x9=1c009190 x2:1c009af0 PA:1c009b44 +76543426ns 1410976 1c002d94 05012903 lw x18, 80(x2) x18=1c009188 x2:1c009af0 PA:1c009b40 +76543467ns 1410978 1c002d96 04c12983 lw x19, 76(x2) x19=1c009000 x2:1c009af0 PA:1c009b3c +76543507ns 1410980 1c002d98 04812a03 lw x20, 72(x2) x20=1c00918c x2:1c009af0 PA:1c009b38 +76543527ns 1410981 1c002d9a 04012b03 lw x22, 64(x2) x22=a5a5a5a5 x2:1c009af0 PA:1c009b30 +76543547ns 1410982 1c002d9c 03c12b83 lw x23, 60(x2) x23=a5a5a5a5 x2:1c009af0 PA:1c009b2c +76543568ns 1410983 1c002d9e 01500533 add x10, x0, x21 x10=00000088 x21:00000088 +76543588ns 1410984 1c002da0 04412a83 lw x21, 68(x2) x21=a5a5a5a5 x2:1c009af0 PA:1c009b34 +76543628ns 1410986 1c002da2 06010113 addi x2, x2, 96 x2=1c009b50 x2:1c009af0 +76543648ns 1410987 1c002da4 e15ff06f jal x0, -492 +76543689ns 1410989 1c002bb8 30051073 csrrw x0, x10, 0x300 x10:00000088 +76543770ns 1410993 1c002bbc 00008067 jalr x0, x1, 0 x1:1c002b9e +76543810ns 1410995 1c002b9e 01810513 addi x10, x2, 24 x10=1c009b68 x2:1c009b50 +76543830ns 1410996 1c002ba0 117000ef jal x1, 2326 x1=1c002ba4 +76543870ns 1410998 1c0034b6 ff010113 addi x2, x2, -16 x2=1c009b40 x2:1c009b50 +76543891ns 1410999 1c0034b8 00812423 sw x8, 8(x2) x8:1c009be0 x2:1c009b40 PA:1c009b48 +76543911ns 1411000 1c0034ba 00112623 sw x1, 12(x2) x1:1c002ba4 x2:1c009b40 PA:1c009b4c +76543931ns 1411001 1c0034bc 00a00433 add x8, x0, x10 x8=1c009b68 x10:1c009b68 +76543951ns 1411002 1c0034be 04444783 lbu x15, 68(x8) x15=00000000 x8:1c009b68 PA:1c009bac +76543992ns 1411004 1c0034c2 01879793 slli x15, x15, 0x18 x15=00000000 x15:00000000 +76544012ns 1411005 1c0034c4 4187d793 srai x15, x15, 0x418 x15=00000000 x15:00000000 +76544032ns 1411006 1c0034c6 00078763 beq x15, x0, 14 x15:00000000 +76544093ns 1411009 1c0034d4 03442783 lw x15, 52(x8) x15=1c00c2e0 x8:1c009b68 PA:1c009b9c +76544133ns 1411011 1c0034d6 fe0784e3 beq x15, x0, -24 x15:1c00c2e0 +76544153ns 1411012 1c0034d8 03842783 lw x15, 56(x8) x15=1c00340c x8:1c009b68 PA:1c009ba0 +76544173ns 1411013 1c0034da 03442503 lw x10, 52(x8) x10=1c00c2e0 x8:1c009b68 PA:1c009b9c +76544214ns 1411015 1c0034dc 000780e7 jalr x1, x15, 0 x1=1c0034de x15:1c00340c +76544254ns 1411017 1c00340c fe010113 addi x2, x2, -32 x2=1c009b20 x2:1c009b40 +76544274ns 1411018 1c00340e 00112e23 sw x1, 28(x2) x1:1c0034de x2:1c009b20 PA:1c009b3c +76544295ns 1411019 1c003410 00812c23 sw x8, 24(x2) x8:1c009b68 x2:1c009b20 PA:1c009b38 +76544315ns 1411020 1c003412 30047473 csrrci x8, 0x00000008, 0x300 x8=00000088 +76544395ns 1411024 1c003416 342027f3 csrrs x15, x0, 0x342 x15=8000001a +76544416ns 1411025 1c00341a 0007dc63 bge x15, x0, 24 x15:8000001a +76544436ns 1411026 1c00341e 00c10613 addi x12, x2, 12 x12=1c009b2c x2:1c009b20 +76544456ns 1411027 1c003420 00000593 addi x11, x0, 0 x11=00000000 +76544476ns 1411028 1c003422 b8efe0ef jal x1, -7282 x1=1c003426 +76544517ns 1411030 1c0017b0 fe010113 addi x2, x2, -32 x2=1c009b00 x2:1c009b20 +76544537ns 1411031 1c0017b2 00112e23 sw x1, 28(x2) x1:1c003426 x2:1c009b00 PA:1c009b1c +76544557ns 1411032 1c0017b4 00812c23 sw x8, 24(x2) x8:00000088 x2:1c009b00 PA:1c009b18 +76544577ns 1411033 1c0017b6 00912a23 sw x9, 20(x2) x9:1c009190 x2:1c009b00 PA:1c009b14 +76544597ns 1411034 1c0017b8 01212823 sw x18, 16(x2) x18:1c009188 x2:1c009b00 PA:1c009b10 +76544618ns 1411035 1c0017ba 01312623 sw x19, 12(x2) x19:1c009000 x2:1c009b00 PA:1c009b0c +76544638ns 1411036 1c0017bc 01412423 sw x20, 8(x2) x20:1c00918c x2:1c009b00 PA:1c009b08 +76544658ns 1411037 1c0017be 02051163 bne x10, x0, 34 x10:1c00c2e0 +76544719ns 1411040 1c0017e0 00a00433 add x8, x0, x10 x8=1c00c2e0 x10:1c00c2e0 +76544739ns 1411041 1c0017e2 00c00933 add x18, x0, x12 x18=1c009b2c x12:1c009b2c +76544759ns 1411042 1c0017e4 00059e63 bne x11, x0, 28 x11:00000000 +76544779ns 1411043 1c0017e6 04052783 lw x15, 64(x10) x15=00000000 x10:1c00c2e0 PA:1c00c320 +76544819ns 1411045 1c0017e8 00078c63 beq x15, x0, 24 x15:00000000 +76544880ns 1411048 1c001800 03842983 lw x19, 56(x8) x19=00000000 x8:1c00c2e0 PA:1c00c318 +76544900ns 1411049 1c001804 00000513 addi x10, x0, 0 x10=00000000 +76544920ns 1411050 1c001806 02098463 beq x19, x0, 40 x19:00000000 +76544981ns 1411053 1c00182e 01c12083 lw x1, 28(x2) x1=1c003426 x2:1c009b00 PA:1c009b1c +76545001ns 1411054 1c001830 01812403 lw x8, 24(x2) x8=00000088 x2:1c009b00 PA:1c009b18 +76545021ns 1411055 1c001832 01412483 lw x9, 20(x2) x9=1c009190 x2:1c009b00 PA:1c009b14 +76545042ns 1411056 1c001834 01012903 lw x18, 16(x2) x18=1c009188 x2:1c009b00 PA:1c009b10 +76545062ns 1411057 1c001836 00c12983 lw x19, 12(x2) x19=1c009000 x2:1c009b00 PA:1c009b0c +76545082ns 1411058 1c001838 00812a03 lw x20, 8(x2) x20=1c00918c x2:1c009b00 PA:1c009b08 +76545102ns 1411059 1c00183a 02010113 addi x2, x2, 32 x2=1c009b20 x2:1c009b00 +76545122ns 1411060 1c00183c 00008067 jalr x0, x1, 0 x1:1c003426 +76545183ns 1411063 1c003426 30041073 csrrw x0, x8, 0x300 x8:00000088 +76545264ns 1411067 1c00342a 01c12083 lw x1, 28(x2) x1=1c0034de x2:1c009b20 PA:1c009b3c +76545284ns 1411068 1c00342c 01812403 lw x8, 24(x2) x8=1c009b68 x2:1c009b20 PA:1c009b38 +76545304ns 1411069 1c00342e 02010113 addi x2, x2, 32 x2=1c009b40 x2:1c009b20 +76545324ns 1411070 1c003430 00008067 jalr x0, x1, 0 x1:1c0034de +76545365ns 1411072 1c0034de fe1ff06f jal x0, -32 +76545425ns 1411075 1c0034be 04444783 lbu x15, 68(x8) x15=00000000 x8:1c009b68 PA:1c009bac +76545466ns 1411077 1c0034c2 01879793 slli x15, x15, 0x18 x15=00000000 x15:00000000 +76545486ns 1411078 1c0034c4 4187d793 srai x15, x15, 0x418 x15=00000000 x15:00000000 +76545506ns 1411079 1c0034c6 00078763 beq x15, x0, 14 x15:00000000 +76545567ns 1411082 1c0034d4 03442783 lw x15, 52(x8) x15=1c00c2e0 x8:1c009b68 PA:1c009b9c +76545607ns 1411084 1c0034d6 fe0784e3 beq x15, x0, -24 x15:1c00c2e0 +76545627ns 1411085 1c0034d8 03842783 lw x15, 56(x8) x15=1c00340c x8:1c009b68 PA:1c009ba0 +76545647ns 1411086 1c0034da 03442503 lw x10, 52(x8) x10=1c00c2e0 x8:1c009b68 PA:1c009b9c +76545748ns 1411091 1c000868 0980006f jal x0, 152 +76545789ns 1411093 1c000900 f8810113 addi x2, x2, -120 x2=1c009ac8 x2:1c009b40 +76545809ns 1411094 1c000904 00112223 sw x1, 4(x2) x1:1c0034de x2:1c009ac8 PA:1c009acc +76545829ns 1411095 1c000906 00512423 sw x5, 8(x2) x5:a5a5a5a5 x2:1c009ac8 PA:1c009ad0 +76545849ns 1411096 1c000908 00612623 sw x6, 12(x2) x6:00000010 x2:1c009ac8 PA:1c009ad4 +76545869ns 1411097 1c00090a 00712823 sw x7, 16(x2) x7:a5a5a5a5 x2:1c009ac8 PA:1c009ad8 +76545890ns 1411098 1c00090c 00812a23 sw x8, 20(x2) x8:1c009b68 x2:1c009ac8 PA:1c009adc +76545910ns 1411099 1c00090e 00912c23 sw x9, 24(x2) x9:1c009190 x2:1c009ac8 PA:1c009ae0 +76545930ns 1411100 1c000910 00a12e23 sw x10, 28(x2) x10:1c00c2e0 x2:1c009ac8 PA:1c009ae4 +76545950ns 1411101 1c000912 02b12023 sw x11, 32(x2) x11:00000000 x2:1c009ac8 PA:1c009ae8 +76545970ns 1411102 1c000914 02c12223 sw x12, 36(x2) x12:1c009b2c x2:1c009ac8 PA:1c009aec +76545991ns 1411103 1c000916 02d12423 sw x13, 40(x2) x13:00000000 x2:1c009ac8 PA:1c009af0 +76546011ns 1411104 1c000918 02e12623 sw x14, 44(x2) x14:00000014 x2:1c009ac8 PA:1c009af4 +76546031ns 1411105 1c00091a 02f12823 sw x15, 48(x2) x15:1c00340c x2:1c009ac8 PA:1c009af8 +76546051ns 1411106 1c00091c 03012a23 sw x16, 52(x2) x16:00000010 x2:1c009ac8 PA:1c009afc +76546071ns 1411107 1c00091e 03112c23 sw x17, 56(x2) x17:00000000 x2:1c009ac8 PA:1c009b00 +76546092ns 1411108 1c000920 03212e23 sw x18, 60(x2) x18:1c009188 x2:1c009ac8 PA:1c009b04 +76546112ns 1411109 1c000922 05312023 sw x19, 64(x2) x19:1c009000 x2:1c009ac8 PA:1c009b08 +76546132ns 1411110 1c000924 05412223 sw x20, 68(x2) x20:1c00918c x2:1c009ac8 PA:1c009b0c +76546152ns 1411111 1c000926 05512423 sw x21, 72(x2) x21:a5a5a5a5 x2:1c009ac8 PA:1c009b10 +76546172ns 1411112 1c000928 05612623 sw x22, 76(x2) x22:a5a5a5a5 x2:1c009ac8 PA:1c009b14 +76546193ns 1411113 1c00092a 05712823 sw x23, 80(x2) x23:a5a5a5a5 x2:1c009ac8 PA:1c009b18 +76546213ns 1411114 1c00092c 05812a23 sw x24, 84(x2) x24:a5a5a5a5 x2:1c009ac8 PA:1c009b1c +76546233ns 1411115 1c00092e 05912c23 sw x25, 88(x2) x25:a5a5a5a5 x2:1c009ac8 PA:1c009b20 +76546253ns 1411116 1c000930 05a12e23 sw x26, 92(x2) x26:a5a5a5a5 x2:1c009ac8 PA:1c009b24 +76546273ns 1411117 1c000932 07b12023 sw x27, 96(x2) x27:a5a5a5a5 x2:1c009ac8 PA:1c009b28 +76546294ns 1411118 1c000934 07c12223 sw x28, 100(x2) x28:00000000 x2:1c009ac8 PA:1c009b2c +76546314ns 1411119 1c000936 07d12423 sw x29, 104(x2) x29:1c00b890 x2:1c009ac8 PA:1c009b30 +76546334ns 1411120 1c000938 07e12623 sw x30, 108(x2) x30:00000000 x2:1c009ac8 PA:1c009b34 +76546354ns 1411121 1c00093a 07f12823 sw x31, 112(x2) x31:a5a5a5a5 x2:1c009ac8 PA:1c009b38 +76546374ns 1411122 1c00093c 300022f3 csrrs x5, x0, 0x300 x5=00001880 +76546455ns 1411126 1c000940 06512a23 sw x5, 116(x2) x5:00001880 x2:1c009ac8 PA:1c009b3c +76546475ns 1411127 1c000942 fe810113 addi x2, x2, -24 x2=1c009ab0 x2:1c009ac8 +76546495ns 1411128 1c000944 7c0022f3 csrrs x5, x0, 0x7c0 x5=00000000 +76546516ns 1411129 1c000948 7c102373 csrrs x6, x0, 0x7c1 x6=00000000 +76546536ns 1411130 1c00094c 7c2023f3 csrrs x7, x0, 0x7c2 x7=00000000 +76546556ns 1411131 1c000950 7c402e73 csrrs x28, x0, 0x7c4 x28=00000000 +76546576ns 1411132 1c000954 7c502ef3 csrrs x29, x0, 0x7c5 x29=00000000 +76546596ns 1411133 1c000958 7c602f73 csrrs x30, x0, 0x7c6 x30=00000000 +76546617ns 1411134 1c00095c 00512223 sw x5, 4(x2) x5:00000000 x2:1c009ab0 PA:1c009ab4 +76546637ns 1411135 1c00095e 00612423 sw x6, 8(x2) x6:00000000 x2:1c009ab0 PA:1c009ab8 +76546657ns 1411136 1c000960 00712623 sw x7, 12(x2) x7:00000000 x2:1c009ab0 PA:1c009abc +76546677ns 1411137 1c000962 01c12823 sw x28, 16(x2) x28:00000000 x2:1c009ab0 PA:1c009ac0 +76546697ns 1411138 1c000964 01d12a23 sw x29, 20(x2) x29:00000000 x2:1c009ab0 PA:1c009ac4 +76546718ns 1411139 1c000966 01e12c23 sw x30, 24(x2) x30:00000000 x2:1c009ab0 PA:1c009ac8 +76546738ns 1411140 1c000968 d541a283 lw x5, -684(x3) x5=1c009db8 x3:1c0093dc PA:1c009130 +76546778ns 1411142 1c00096c 0022a023 sw x2, 0(x5) x2:1c009ab0 x5:1c009db8 PA:1c009db8 +76546798ns 1411143 1c000970 34202573 csrrs x10, x0, 0x342 x10=8000001a +76546819ns 1411144 1c000974 341025f3 csrrs x11, x0, 0x341 x11=1c0034dc +76546839ns 1411145 1c000978 01f55613 srli x12, x10, 0x1f x12=00000001 x10:8000001a +76546859ns 1411146 1c00097c 00060963 beq x12, x0, 18 x12:00000001 +76546879ns 1411147 1c00097e 00b12023 sw x11, 0(x2) x11:1c0034dc x2:1c009ab0 PA:1c009ab0 +76546899ns 1411148 1c000980 00008117 auipc x2, 0x8000 x2=1c008980 +76546919ns 1411149 1c000984 25412103 lw x2, 596(x2) x2=1c0199b0 x2:1c008980 PA:1c008bd4 +76546940ns 1411150 1c000988 17e020ef jal x1, 8574 x1=1c00098c +76546980ns 1411152 1c002b06 01f57513 andi x10, x10, 31 x10=0000001a x10:8000001a +76547000ns 1411153 1c002b08 00251793 slli x15, x10, 0x2 x15=00000068 x10:0000001a +76547020ns 1411154 1c002b0c 99c18513 addi x10, x3, -1636 x10=1c008d78 x3:1c0093dc +76547041ns 1411155 1c002b10 00f50533 add x10, x10, x15 x10=1c008de0 x10:1c008d78 x15:00000068 +76547061ns 1411156 1c002b12 00052783 lw x15, 0(x10) x15=1c000e42 x10:1c008de0 PA:1c008de0 +76547121ns 1411159 1c002b14 00078067 jalr x0, x15, 0 x15:1c000e42 +76547182ns 1411162 1c000e42 1a10a7b7 lui x15, 0x1a10a000 x15=1a10a000 +76547202ns 1411163 1c000e46 80078793 addi x15, x15, -2048 x15=1a109800 x15:1a10a000 +76547222ns 1411164 1c000e4a 0247a503 lw x10, 36(x15) x10=00000007 x15:1a109800 PA:1a109824 +76547243ns 1411165 1c000e4c a2818793 addi x15, x3, -1496 x15=1c008e04 x3:1c0093dc +76547303ns 1411168 1c000e50 0ff57513 andi x10, x10, 255 x10=00000007 x10:00000007 +76547323ns 1411169 1c000e54 00251713 slli x14, x10, 0x2 x14=0000001c x10:00000007 +76547343ns 1411170 1c000e58 00e787b3 add x15, x15, x14 x15=1c008e20 x15:1c008e04 x14:0000001c +76547364ns 1411171 1c000e5a 0007a703 lw x14, 0(x15) x14=1c003106 x15:1c008e20 PA:1c008e20 +76547404ns 1411173 1c000e5c 00070363 beq x14, x0, 6 x14:1c003106 +76547424ns 1411174 1c000e5e 0007a783 lw x15, 0(x15) x15=1c003106 x15:1c008e20 PA:1c008e20 +76547485ns 1411177 1c000e60 00078067 jalr x0, x15, 0 x15:1c003106 +76547525ns 1411179 1c003106 ff950513 addi x10, x10, -7 x10=00000000 x10:00000007 +76547545ns 1411180 1c003108 00251793 slli x15, x10, 0x2 x15=00000000 x10:00000000 +76547566ns 1411181 1c00310c da418513 addi x10, x3, -604 x10=1c009180 x3:1c0093dc +76547586ns 1411182 1c003110 ff010113 addi x2, x2, -16 x2=1c0199a0 x2:1c0199b0 +76547606ns 1411183 1c003112 00f50533 add x10, x10, x15 x10=1c009180 x10:1c009180 x15:00000000 +76547626ns 1411184 1c003114 00812423 sw x8, 8(x2) x8:1c009b68 x2:1c0199a0 PA:1c0199a8 +76547646ns 1411185 1c003116 00052403 lw x8, 0(x10) x8=1c00b890 x10:1c009180 PA:1c009180 +76547667ns 1411186 1c003118 00112623 sw x1, 12(x2) x1:1c00098c x2:1c0199a0 PA:1c0199ac +76547687ns 1411187 1c00311a 00842783 lw x15, 8(x8) x15=00000000 x8:1c00b890 PA:1c00b898 +76547727ns 1411189 1c00311c 02079263 bne x15, x0, 36 x15:00000000 +76547747ns 1411190 1c00311e 00c42503 lw x10, 12(x8) x10=1c009b68 x8:1c00b890 PA:1c00b89c +76547788ns 1411192 1c003120 00050863 beq x10, x0, 16 x10:1c009b68 +76547808ns 1411193 1c003122 01052703 lw x14, 16(x10) x14=00000001 x10:1c009b68 PA:1c009b78 +76547828ns 1411194 1c003124 00100793 addi x15, x0, 1 x15=00000001 +76547848ns 1411195 1c003126 00f71363 bne x14, x15, 6 x14:00000001 x15:00000001 +76547868ns 1411196 1c00312a 3b6000ef jal x1, 950 x1=1c00312c +76547909ns 1411198 1c0034e0 ff010113 addi x2, x2, -16 x2=1c019990 x2:1c0199a0 +76547929ns 1411199 1c0034e2 00812423 sw x8, 8(x2) x8:1c00b890 x2:1c019990 PA:1c019998 +76547949ns 1411200 1c0034e4 00a00433 add x8, x0, x10 x8=1c009b68 x10:1c009b68 +76547969ns 1411201 1c0034e6 03452503 lw x10, 52(x10) x10=1c00c2e0 x10:1c009b68 PA:1c009b9c +76547990ns 1411202 1c0034e8 00112623 sw x1, 12(x2) x1:1c00312c x2:1c019990 PA:1c01999c +76548010ns 1411203 1c0034ea 00050363 beq x10, x0, 6 x10:1c00c2e0 +76548030ns 1411204 1c0034ec 03c42783 lw x15, 60(x8) x15=1c0033da x8:1c009b68 PA:1c009ba4 +76548091ns 1411207 1c0034ee 000780e7 jalr x1, x15, 0 x1=1c0034f0 x15:1c0033da +76548131ns 1411209 1c0033da fe010113 addi x2, x2, -32 x2=1c019970 x2:1c019990 +76548151ns 1411210 1c0033dc 00112e23 sw x1, 28(x2) x1:1c0034f0 x2:1c019970 PA:1c01998c +76548171ns 1411211 1c0033de 00812c23 sw x8, 24(x2) x8:1c009b68 x2:1c019970 PA:1c019988 +76548192ns 1411212 1c0033e0 30047473 csrrci x8, 0x00000008, 0x300 x8=00001880 +76548272ns 1411216 1c0033e4 342027f3 csrrs x15, x0, 0x342 x15=8000001a +76548293ns 1411217 1c0033e8 00c10593 addi x11, x2, 12 x11=1c01997c x2:1c019970 +76548313ns 1411218 1c0033ea 0007de63 bge x15, x0, 28 x15:8000001a +76548333ns 1411219 1c0033ee 838fe0ef jal x1, -8136 x1=1c0033f2 +76548373ns 1411221 1c001426 ff010113 addi x2, x2, -16 x2=1c019960 x2:1c019970 +76548393ns 1411222 1c001428 00112623 sw x1, 12(x2) x1:1c0033f2 x2:1c019960 PA:1c01996c +76548414ns 1411223 1c00142a 00812423 sw x8, 8(x2) x8:00001880 x2:1c019960 PA:1c019968 +76548434ns 1411224 1c00142c 02051163 bne x10, x0, 34 x10:1c00c2e0 +76548494ns 1411227 1c00144e 04052703 lw x14, 64(x10) x14=00000000 x10:1c00c2e0 PA:1c00c320 +76548515ns 1411228 1c001450 00a007b3 add x15, x0, x10 x15=1c00c2e0 x10:1c00c2e0 +76548535ns 1411229 1c001452 00070c63 beq x14, x0, 24 x14:00000000 +76548595ns 1411232 1c00146a 00052703 lw x14, 0(x10) x14=1c00c2e0 x10:1c00c2e0 PA:1c00c2e0 +76548616ns 1411233 1c00146c 00b00433 add x8, x0, x11 x8=1c01997c x11:1c01997c +76548636ns 1411234 1c00146e 00071e63 bne x14, x0, 28 x14:1c00c2e0 +76548696ns 1411237 1c00148a 0387a683 lw x13, 56(x15) x13=00000000 x15:1c00c2e0 PA:1c00c318 +76548717ns 1411238 1c00148c 03c7a703 lw x14, 60(x15) x14=000000ff x15:1c00c2e0 PA:1c00c31c +76548737ns 1411239 1c00148e 00000513 addi x10, x0, 0 x10=00000000 +76548757ns 1411240 1c001490 00e6ff63 bgeu x13, x14, 30 x13:00000000 x14:000000ff +76548777ns 1411241 1c001494 0457c703 lbu x14, 69(x15) x14=000000ff x15:1c00c2e0 PA:1c00c325 +76548797ns 1411242 1c001498 00168693 addi x13, x13, 1 x13=00000001 x13:00000000 +76548818ns 1411243 1c00149a 02d7ac23 sw x13, 56(x15) x13:00000001 x15:1c00c2e0 PA:1c00c318 +76548838ns 1411244 1c00149c 01871613 slli x12, x14, 0x18 x12=ff000000 x14:000000ff +76548858ns 1411245 1c0014a0 41865613 srai x12, x12, 0x418 x12=ffffffff x12:ff000000 +76548878ns 1411246 1c0014a2 fff00693 addi x13, x0, -1 x13=ffffffff +76548898ns 1411247 1c0014a4 02d61263 bne x12, x13, 36 x12:ffffffff x13:ffffffff +76548918ns 1411248 1c0014a8 0247a703 lw x14, 36(x15) x14=00000000 x15:1c00c2e0 PA:1c00c304 +76548959ns 1411250 1c0014aa 00071663 bne x14, x0, 12 x14:00000000 +76548979ns 1411251 1c0014ac 00100513 addi x10, x0, 1 x10=00000001 +76548999ns 1411252 1c0014ae 00c12083 lw x1, 12(x2) x1=1c0033f2 x2:1c019960 PA:1c01996c +76549019ns 1411253 1c0014b0 00812403 lw x8, 8(x2) x8=00001880 x2:1c019960 PA:1c019968 +76549040ns 1411254 1c0014b2 01010113 addi x2, x2, 16 x2=1c019970 x2:1c019960 +76549060ns 1411255 1c0014b4 00008067 jalr x0, x1, 0 x1:1c0033f2 +76549100ns 1411257 1c0033f2 00c12783 lw x15, 12(x2) x15=00000001 x2:1c019970 PA:1c01997c +76549141ns 1411259 1c0033f4 00078363 beq x15, x0, 6 x15:00000001 +76549161ns 1411260 1c0033f6 f80fe0ef jal x1, -6272 x1=1c0033fa +76549221ns 1411263 1c001b76 d681a703 lw x14, -664(x3) x14=00000000 x3:1c0093dc PA:1c009144 +76549242ns 1411264 1c001b7a d8c18793 addi x15, x3, -628 x15=1c009168 x3:1c0093dc +76549262ns 1411265 1c001b7e 00070463 beq x14, x0, 8 x14:00000000 +76549322ns 1411268 1c001b86 ff010113 addi x2, x2, -16 x2=1c019960 x2:1c019970 +76549343ns 1411269 1c001b88 00812423 sw x8, 8(x2) x8:00001880 x2:1c019960 PA:1c019968 +76549363ns 1411270 1c001b8a 00112623 sw x1, 12(x2) x1:1c0033fa x2:1c019960 PA:1c01996c +76549383ns 1411271 1c001b8c 0007a023 sw x0, 0(x15) x15:1c009168 PA:1c009168 +76549403ns 1411272 1c001b90 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76549423ns 1411273 1c001b94 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76549443ns 1411274 1c001b96 a5a5a737 lui x14, 0xa5a5a000 x14=a5a5a000 +76549464ns 1411275 1c001b9a 5a570713 addi x14, x14, 1445 x14=a5a5a5a5 x14:a5a5a000 +76549484ns 1411276 1c001b9e 0307a783 lw x15, 48(x15) x15=1c009770 x15:1c009db8 PA:1c009de8 +76549504ns 1411277 1c001ba0 d5418413 addi x8, x3, -684 x8=1c009130 x3:1c0093dc +76549524ns 1411278 1c001ba4 0007a603 lw x12, 0(x15) x12=a5a5a5a5 x15:1c009770 PA:1c009770 +76549565ns 1411280 1c001ba6 00e61b63 bne x12, x14, 22 x12:a5a5a5a5 x14:a5a5a5a5 +76549585ns 1411281 1c001baa 0047a683 lw x13, 4(x15) x13=a5a5a5a5 x15:1c009770 PA:1c009774 +76549625ns 1411283 1c001bac 00c69863 bne x13, x12, 16 x13:a5a5a5a5 x12:a5a5a5a5 +76549645ns 1411284 1c001bb0 0087a703 lw x14, 8(x15) x14=a5a5a5a5 x15:1c009770 PA:1c009778 +76549686ns 1411286 1c001bb2 00d71563 bne x14, x13, 10 x14:a5a5a5a5 x13:a5a5a5a5 +76549706ns 1411287 1c001bb6 00c7a783 lw x15, 12(x15) x15=a5a5a5a5 x15:1c009770 PA:1c00977c +76549746ns 1411289 1c001bb8 00e78863 beq x15, x14, 16 x15:a5a5a5a5 x14:a5a5a5a5 +76549807ns 1411292 1c001bc8 d701a503 lw x10, -656(x3) x10=00000003 x3:1c0093dc PA:1c00914c +76549827ns 1411293 1c001bcc abeff0ef jal x1, -3394 x1=1c001bd0 +76549867ns 1411295 1c000e8a 000107b7 lui x15, 0x10000 x15=00010000 +76549888ns 1411296 1c000e8c 02f57663 bgeu x10, x15, 44 x10:00000003 x15:00010000 +76549908ns 1411297 1c000e90 0ff00793 addi x15, x0, 255 x15=000000ff +76549928ns 1411298 1c000e94 00a7b7b3 sltu x15, x15, x10 x15=00000000 x15:000000ff x10:00000003 +76549948ns 1411299 1c000e98 00379793 slli x15, x15, 0x3 x15=00000000 x15:00000000 +76549968ns 1411300 1c000e9a 1c009737 lui x14, 0x1c009000 x14=1c009000 +76549989ns 1411301 1c000e9e 02000693 addi x13, x0, 32 x13=00000020 +76550009ns 1411302 1c000ea2 40f686b3 sub x13, x13, x15 x13=00000020 x13:00000020 x15:00000000 +76550029ns 1411303 1c000ea4 00f55533 srl x10, x10, x15 x10=00000003 x10:00000003 x15:00000000 +76550049ns 1411304 1c000ea8 ad470793 addi x15, x14, -1324 x15=1c008ad4 x14:1c009000 +76550069ns 1411305 1c000eac 00f50533 add x10, x10, x15 x10=1c008ad7 x10:00000003 x15:1c008ad4 +76550090ns 1411306 1c000eae 00054503 lbu x10, 0(x10) x10=00000002 x10:1c008ad7 PA:1c008ad7 +76550130ns 1411308 1c000eb2 40a68533 sub x10, x13, x10 x10=0000001e x13:00000020 x10:00000002 +76550150ns 1411309 1c000eb6 00008067 jalr x0, x1, 0 x1:1c001bd0 +76550191ns 1411311 1c001bd0 01f00713 addi x14, x0, 31 x14=0000001f +76550211ns 1411312 1c001bd2 40a70533 sub x10, x14, x10 x10=00000001 x14:0000001f x10:0000001e +76550231ns 1411313 1c001bd6 01400793 addi x15, x0, 20 x15=00000014 +76550251ns 1411314 1c001bd8 02f507b3 mul x15, x10, x15 x15=00000014 x10:00000001 x15:00000014 +76550271ns 1411315 1c001bdc 1c009737 lui x14, 0x1c009000 x14=1c009000 +76550292ns 1411316 1c001be0 c8870693 addi x13, x14, -888 x13=1c008c88 x14:1c009000 +76550312ns 1411317 1c001be4 c8870713 addi x14, x14, -888 x14=1c008c88 x14:1c009000 +76550332ns 1411318 1c001be8 00f686b3 add x13, x13, x15 x13=1c008c9c x13:1c008c88 x15:00000014 +76550352ns 1411319 1c001bea 0006a603 lw x12, 0(x13) x12=00000001 x13:1c008c9c PA:1c008c9c +76550392ns 1411321 1c001bec 02061263 bne x12, x0, 36 x12:00000001 +76550453ns 1411324 1c001c10 0046a603 lw x12, 4(x13) x12=1c009dbc x13:1c008c9c PA:1c008ca0 +76550473ns 1411325 1c001c12 00878793 addi x15, x15, 8 x15=0000001c x15:00000014 +76550493ns 1411326 1c001c14 00e787b3 add x15, x15, x14 x15=1c008ca4 x15:0000001c x14:1c008c88 +76550514ns 1411327 1c001c16 00462603 lw x12, 4(x12) x12=1c008ca4 x12:1c009dbc PA:1c009dc0 +76550554ns 1411329 1c001c18 00c6a223 sw x12, 4(x13) x12:1c008ca4 x13:1c008c9c PA:1c008ca0 +76550574ns 1411330 1c001c1a 00f61463 bne x12, x15, 8 x12:1c008ca4 x15:1c008ca4 +76550594ns 1411331 1c001c1e 00462783 lw x15, 4(x12) x15=1c009dbc x12:1c008ca4 PA:1c008ca8 +76550635ns 1411333 1c001c20 00f6a223 sw x15, 4(x13) x15:1c009dbc x13:1c008c9c PA:1c008ca0 +76550655ns 1411334 1c001c22 01400793 addi x15, x0, 20 x15=00000014 +76550675ns 1411335 1c001c24 02f50533 mul x10, x10, x15 x10=00000014 x10:00000001 x15:00000014 +76550695ns 1411336 1c001c28 00c12083 lw x1, 12(x2) x1=1c0033fa x2:1c019960 PA:1c01996c +76550716ns 1411337 1c001c2a 00a70733 add x14, x14, x10 x14=1c008c9c x14:1c008c88 x10:00000014 +76550736ns 1411338 1c001c2c 00472783 lw x15, 4(x14) x15=1c009dbc x14:1c008c9c PA:1c008ca0 +76550756ns 1411339 1c001c2e 1c009737 lui x14, 0x1c009000 x14=1c009000 +76550776ns 1411340 1c001c32 00c7a783 lw x15, 12(x15) x15=1c009db8 x15:1c009dbc PA:1c009dc8 +76550817ns 1411342 1c001c34 00f42023 sw x15, 0(x8) x15:1c009db8 x8:1c009130 PA:1c009130 +76550837ns 1411343 1c001c36 00042783 lw x15, 0(x8) x15=1c009db8 x8:1c009130 PA:1c009130 +76550857ns 1411344 1c001c38 00812403 lw x8, 8(x2) x8=00001880 x2:1c019960 PA:1c019968 +76550877ns 1411345 1c001c3a 05878793 addi x15, x15, 88 x15=1c009e10 x15:1c009db8 +76550897ns 1411346 1c001c3e c4f72223 sw x15, -956(x14) x15:1c009e10 x14:1c009000 PA:1c008c44 +76550917ns 1411347 1c001c42 01010113 addi x2, x2, 16 x2=1c019970 x2:1c019960 +76550938ns 1411348 1c001c44 00008067 jalr x0, x1, 0 x1:1c0033fa +76550998ns 1411351 1c0033fa 30041073 csrrw x0, x8, 0x300 x8:00001880 +76551079ns 1411355 1c0033fe 01c12083 lw x1, 28(x2) x1=1c0034f0 x2:1c019970 PA:1c01998c +76551099ns 1411356 1c003400 01812403 lw x8, 24(x2) x8=1c009b68 x2:1c019970 PA:1c019988 +76551119ns 1411357 1c003402 02010113 addi x2, x2, 32 x2=1c019990 x2:1c019970 +76551140ns 1411358 1c003404 00008067 jalr x0, x1, 0 x1:1c0034f0 +76551180ns 1411360 1c0034f0 00100793 addi x15, x0, 1 x15=00000001 +76551200ns 1411361 1c0034f2 04f40223 sb x15, 68(x8) x15:00000001 x8:1c009b68 PA:1c009bac +76551220ns 1411362 1c0034f6 00c12083 lw x1, 12(x2) x1=1c00312c x2:1c019990 PA:1c01999c +76551241ns 1411363 1c0034f8 00812403 lw x8, 8(x2) x8=1c00b890 x2:1c019990 PA:1c019998 +76551261ns 1411364 1c0034fa 01010113 addi x2, x2, 16 x2=1c0199a0 x2:1c019990 +76551281ns 1411365 1c0034fc 00008067 jalr x0, x1, 0 x1:1c00312c +76551321ns 1411367 1c00312c 00042623 sw x0, 12(x8) x8:1c00b890 PA:1c00b89c +76551342ns 1411368 1c003130 00800533 add x10, x0, x8 x10=1c00b890 x8:1c00b890 +76551362ns 1411369 1c003132 ac3ff0ef jal x1, -1342 x1=1c003136 +76551402ns 1411371 1c002bf4 300027f3 csrrs x15, x0, 0x300 x15=00001880 +76551483ns 1411375 1c002bf8 300476f3 csrrci x13, 0x00000008, 0x300 x13=00001880 +76551564ns 1411379 1c002bfc 00052783 lw x15, 0(x10) x15=1c00b8b0 x10:1c00b890 PA:1c00b890 +76551604ns 1411381 1c002bfe 0007a503 lw x10, 0(x15) x10=00000000 x15:1c00b8b0 PA:1c00b8b0 +76551644ns 1411383 1c002c00 00050663 beq x10, x0, 12 x10:00000000 +76551705ns 1411386 1c002c0c 30069073 csrrw x0, x13, 0x300 x13:00001880 +76551786ns 1411390 1c002c10 00008067 jalr x0, x1, 0 x1:1c003136 +76551826ns 1411392 1c003136 00050563 beq x10, x0, 10 x10:00000000 +76551887ns 1411395 1c003140 00c12083 lw x1, 12(x2) x1=1c00098c x2:1c0199a0 PA:1c0199ac +76551907ns 1411396 1c003142 00812403 lw x8, 8(x2) x8=1c009b68 x2:1c0199a0 PA:1c0199a8 +76551927ns 1411397 1c003144 01010113 addi x2, x2, 16 x2=1c0199b0 x2:1c0199a0 +76551947ns 1411398 1c003146 00008067 jalr x0, x1, 0 x1:1c00098c +76551988ns 1411400 1c00098c 0320006f jal x0, 50 +76552048ns 1411403 1c0009be d541a303 lw x6, -684(x3) x6=1c009db8 x3:1c0093dc PA:1c009130 +76552089ns 1411405 1c0009c2 00032103 lw x2, 0(x6) x2=1c009ab0 x6:1c009db8 PA:1c009db8 +76552129ns 1411407 1c0009c6 00012283 lw x5, 0(x2) x5=1c0034dc x2:1c009ab0 PA:1c009ab0 +76552169ns 1411409 1c0009c8 34129073 csrrw x0, x5, 0x341 x5:1c0034dc +76552190ns 1411410 1c0009cc 00412283 lw x5, 4(x2) x5=00000000 x2:1c009ab0 PA:1c009ab4 +76552210ns 1411411 1c0009ce 00812303 lw x6, 8(x2) x6=00000000 x2:1c009ab0 PA:1c009ab8 +76552230ns 1411412 1c0009d0 00c12383 lw x7, 12(x2) x7=00000000 x2:1c009ab0 PA:1c009abc +76552250ns 1411413 1c0009d2 01012e03 lw x28, 16(x2) x28=00000000 x2:1c009ab0 PA:1c009ac0 +76552270ns 1411414 1c0009d4 01412e83 lw x29, 20(x2) x29=00000000 x2:1c009ab0 PA:1c009ac4 +76552291ns 1411415 1c0009d6 01812f03 lw x30, 24(x2) x30=00000000 x2:1c009ab0 PA:1c009ac8 +76552311ns 1411416 1c0009d8 7c029073 csrrw x0, x5, 0x7c0 x5:00000000 +76552331ns 1411417 1c0009dc 7c131073 csrrw x0, x6, 0x7c1 x6:00000000 +76552351ns 1411418 1c0009e0 7c239073 csrrw x0, x7, 0x7c2 x7:00000000 +76552371ns 1411419 1c0009e4 7c4e1073 csrrw x0, x28, 0x7c4 x28:00000000 +76552391ns 1411420 1c0009e8 7c5e9073 csrrw x0, x29, 0x7c5 x29:00000000 +76552412ns 1411421 1c0009ec 7c6f1073 csrrw x0, x30, 0x7c6 x30:00000000 +76552432ns 1411422 1c0009f0 01810113 addi x2, x2, 24 x2=1c009ac8 x2:1c009ab0 +76552452ns 1411423 1c0009f2 07412283 lw x5, 116(x2) x5=00001880 x2:1c009ac8 PA:1c009b3c +76552492ns 1411425 1c0009f4 30029073 csrrw x0, x5, 0x300 x5:00001880 +76552573ns 1411429 1c0009f8 00412083 lw x1, 4(x2) x1=1c0034de x2:1c009ac8 PA:1c009acc +76552593ns 1411430 1c0009fa 00812283 lw x5, 8(x2) x5=a5a5a5a5 x2:1c009ac8 PA:1c009ad0 +76552614ns 1411431 1c0009fc 00c12303 lw x6, 12(x2) x6=00000010 x2:1c009ac8 PA:1c009ad4 +76552634ns 1411432 1c0009fe 01012383 lw x7, 16(x2) x7=a5a5a5a5 x2:1c009ac8 PA:1c009ad8 +76552654ns 1411433 1c000a00 01412403 lw x8, 20(x2) x8=1c009b68 x2:1c009ac8 PA:1c009adc +76552674ns 1411434 1c000a02 01812483 lw x9, 24(x2) x9=1c009190 x2:1c009ac8 PA:1c009ae0 +76552694ns 1411435 1c000a04 01c12503 lw x10, 28(x2) x10=1c00c2e0 x2:1c009ac8 PA:1c009ae4 +76552715ns 1411436 1c000a06 02012583 lw x11, 32(x2) x11=00000000 x2:1c009ac8 PA:1c009ae8 +76552735ns 1411437 1c000a08 02412603 lw x12, 36(x2) x12=1c009b2c x2:1c009ac8 PA:1c009aec +76552755ns 1411438 1c000a0a 02812683 lw x13, 40(x2) x13=00000000 x2:1c009ac8 PA:1c009af0 +76552775ns 1411439 1c000a0c 02c12703 lw x14, 44(x2) x14=00000014 x2:1c009ac8 PA:1c009af4 +76552795ns 1411440 1c000a0e 03012783 lw x15, 48(x2) x15=1c00340c x2:1c009ac8 PA:1c009af8 +76552816ns 1411441 1c000a10 03412803 lw x16, 52(x2) x16=00000010 x2:1c009ac8 PA:1c009afc +76552836ns 1411442 1c000a12 03812883 lw x17, 56(x2) x17=00000000 x2:1c009ac8 PA:1c009b00 +76552856ns 1411443 1c000a14 03c12903 lw x18, 60(x2) x18=1c009188 x2:1c009ac8 PA:1c009b04 +76552876ns 1411444 1c000a16 04012983 lw x19, 64(x2) x19=1c009000 x2:1c009ac8 PA:1c009b08 +76552896ns 1411445 1c000a18 04412a03 lw x20, 68(x2) x20=1c00918c x2:1c009ac8 PA:1c009b0c +76552916ns 1411446 1c000a1a 04812a83 lw x21, 72(x2) x21=a5a5a5a5 x2:1c009ac8 PA:1c009b10 +76552937ns 1411447 1c000a1c 04c12b03 lw x22, 76(x2) x22=a5a5a5a5 x2:1c009ac8 PA:1c009b14 +76552957ns 1411448 1c000a1e 05012b83 lw x23, 80(x2) x23=a5a5a5a5 x2:1c009ac8 PA:1c009b18 +76552977ns 1411449 1c000a20 05412c03 lw x24, 84(x2) x24=a5a5a5a5 x2:1c009ac8 PA:1c009b1c +76552997ns 1411450 1c000a22 05812c83 lw x25, 88(x2) x25=a5a5a5a5 x2:1c009ac8 PA:1c009b20 +76553017ns 1411451 1c000a24 05c12d03 lw x26, 92(x2) x26=a5a5a5a5 x2:1c009ac8 PA:1c009b24 +76553038ns 1411452 1c000a26 06012d83 lw x27, 96(x2) x27=a5a5a5a5 x2:1c009ac8 PA:1c009b28 +76553058ns 1411453 1c000a28 06412e03 lw x28, 100(x2) x28=00000000 x2:1c009ac8 PA:1c009b2c +76553078ns 1411454 1c000a2a 06812e83 lw x29, 104(x2) x29=1c00b890 x2:1c009ac8 PA:1c009b30 +76553098ns 1411455 1c000a2c 06c12f03 lw x30, 108(x2) x30=00000000 x2:1c009ac8 PA:1c009b34 +76553118ns 1411456 1c000a2e 07012f83 lw x31, 112(x2) x31=a5a5a5a5 x2:1c009ac8 PA:1c009b38 +76553139ns 1411457 1c000a30 07810113 addi x2, x2, 120 x2=1c009b40 x2:1c009ac8 +76553159ns 1411458 1c000a34 30200073 mret +76553260ns 1411463 1c0034dc 000780e7 jalr x1, x15, 0 x1=1c0034de x15:1c00340c +76553300ns 1411465 1c00340c fe010113 addi x2, x2, -32 x2=1c009b20 x2:1c009b40 +76553320ns 1411466 1c00340e 00112e23 sw x1, 28(x2) x1:1c0034de x2:1c009b20 PA:1c009b3c +76553341ns 1411467 1c003410 00812c23 sw x8, 24(x2) x8:1c009b68 x2:1c009b20 PA:1c009b38 +76553361ns 1411468 1c003412 30047473 csrrci x8, 0x00000008, 0x300 x8=00000088 +76553441ns 1411472 1c003416 342027f3 csrrs x15, x0, 0x342 x15=8000001a +76553462ns 1411473 1c00341a 0007dc63 bge x15, x0, 24 x15:8000001a +76553482ns 1411474 1c00341e 00c10613 addi x12, x2, 12 x12=1c009b2c x2:1c009b20 +76553502ns 1411475 1c003420 00000593 addi x11, x0, 0 x11=00000000 +76553522ns 1411476 1c003422 b8efe0ef jal x1, -7282 x1=1c003426 +76553563ns 1411478 1c0017b0 fe010113 addi x2, x2, -32 x2=1c009b00 x2:1c009b20 +76553583ns 1411479 1c0017b2 00112e23 sw x1, 28(x2) x1:1c003426 x2:1c009b00 PA:1c009b1c +76553603ns 1411480 1c0017b4 00812c23 sw x8, 24(x2) x8:00000088 x2:1c009b00 PA:1c009b18 +76553623ns 1411481 1c0017b6 00912a23 sw x9, 20(x2) x9:1c009190 x2:1c009b00 PA:1c009b14 +76553643ns 1411482 1c0017b8 01212823 sw x18, 16(x2) x18:1c009188 x2:1c009b00 PA:1c009b10 +76553664ns 1411483 1c0017ba 01312623 sw x19, 12(x2) x19:1c009000 x2:1c009b00 PA:1c009b0c +76553684ns 1411484 1c0017bc 01412423 sw x20, 8(x2) x20:1c00918c x2:1c009b00 PA:1c009b08 +76553704ns 1411485 1c0017be 02051163 bne x10, x0, 34 x10:1c00c2e0 +76553765ns 1411488 1c0017e0 00a00433 add x8, x0, x10 x8=1c00c2e0 x10:1c00c2e0 +76553785ns 1411489 1c0017e2 00c00933 add x18, x0, x12 x18=1c009b2c x12:1c009b2c +76553805ns 1411490 1c0017e4 00059e63 bne x11, x0, 28 x11:00000000 +76553825ns 1411491 1c0017e6 04052783 lw x15, 64(x10) x15=00000000 x10:1c00c2e0 PA:1c00c320 +76553866ns 1411493 1c0017e8 00078c63 beq x15, x0, 24 x15:00000000 +76553926ns 1411496 1c001800 03842983 lw x19, 56(x8) x19=00000001 x8:1c00c2e0 PA:1c00c318 +76553946ns 1411497 1c001804 00000513 addi x10, x0, 0 x10=00000000 +76553966ns 1411498 1c001806 02098463 beq x19, x0, 40 x19:00000001 +76553987ns 1411499 1c00180a 04444483 lbu x9, 68(x8) x9=000000ff x8:1c00c2e0 PA:1c00c324 +76554007ns 1411500 1c00180e 00800533 add x10, x0, x8 x10=1c00c2e0 x8:1c00c2e0 +76554027ns 1411501 1c001810 fdaff0ef jal x1, -2086 x1=1c001814 +76554067ns 1411503 1c000fea 00a007b3 add x15, x0, x10 x15=1c00c2e0 x10:1c00c2e0 +76554088ns 1411504 1c000fec 0407a603 lw x12, 64(x15) x12=00000000 x15:1c00c2e0 PA:1c00c320 +76554108ns 1411505 1c000fee 00b00533 add x10, x0, x11 x10=00000000 x11:00000000 +76554128ns 1411506 1c000ff0 00060b63 beq x12, x0, 22 x12:00000000 +76554189ns 1411509 1c001006 00008067 jalr x0, x1, 0 x1:1c001814 +76554229ns 1411511 1c001814 01849a13 slli x20, x9, 0x18 x20=ff000000 x9:000000ff +76554249ns 1411512 1c001818 fff98993 addi x19, x19, -1 x19=00000000 x19:00000001 +76554269ns 1411513 1c00181a 418a5a13 srai x20, x20, 0x418 x20=ffffffff x20:ff000000 +76554290ns 1411514 1c00181e 03342c23 sw x19, 56(x8) x19:00000000 x8:1c00c2e0 PA:1c00c318 +76554310ns 1411515 1c001822 fff00793 addi x15, x0, -1 x15=ffffffff +76554330ns 1411516 1c001824 02fa1763 bne x20, x15, 46 x20:ffffffff x15:ffffffff +76554350ns 1411517 1c001828 01042783 lw x15, 16(x8) x15=00000000 x8:1c00c2e0 PA:1c00c2f0 +76554391ns 1411519 1c00182a 00079a63 bne x15, x0, 20 x15:00000000 +76554411ns 1411520 1c00182c 00100513 addi x10, x0, 1 x10=00000001 +76554431ns 1411521 1c00182e 01c12083 lw x1, 28(x2) x1=1c003426 x2:1c009b00 PA:1c009b1c +76554451ns 1411522 1c001830 01812403 lw x8, 24(x2) x8=00000088 x2:1c009b00 PA:1c009b18 +76554471ns 1411523 1c001832 01412483 lw x9, 20(x2) x9=1c009190 x2:1c009b00 PA:1c009b14 +76554491ns 1411524 1c001834 01012903 lw x18, 16(x2) x18=1c009188 x2:1c009b00 PA:1c009b10 +76554512ns 1411525 1c001836 00c12983 lw x19, 12(x2) x19=1c009000 x2:1c009b00 PA:1c009b0c +76554532ns 1411526 1c001838 00812a03 lw x20, 8(x2) x20=1c00918c x2:1c009b00 PA:1c009b08 +76554552ns 1411527 1c00183a 02010113 addi x2, x2, 32 x2=1c009b20 x2:1c009b00 +76554572ns 1411528 1c00183c 00008067 jalr x0, x1, 0 x1:1c003426 +76554633ns 1411531 1c003426 30041073 csrrw x0, x8, 0x300 x8:00000088 +76554714ns 1411535 1c00342a 01c12083 lw x1, 28(x2) x1=1c0034de x2:1c009b20 PA:1c009b3c +76554734ns 1411536 1c00342c 01812403 lw x8, 24(x2) x8=1c009b68 x2:1c009b20 PA:1c009b38 +76554754ns 1411537 1c00342e 02010113 addi x2, x2, 32 x2=1c009b40 x2:1c009b20 +76554774ns 1411538 1c003430 00008067 jalr x0, x1, 0 x1:1c0034de +76554815ns 1411540 1c0034de fe1ff06f jal x0, -32 +76554875ns 1411543 1c0034be 04444783 lbu x15, 68(x8) x15=00000001 x8:1c009b68 PA:1c009bac +76554915ns 1411545 1c0034c2 01879793 slli x15, x15, 0x18 x15=01000000 x15:00000001 +76554936ns 1411546 1c0034c4 4187d793 srai x15, x15, 0x418 x15=00000001 x15:01000000 +76554956ns 1411547 1c0034c6 00078763 beq x15, x0, 14 x15:00000001 +76554976ns 1411548 1c0034c8 00800533 add x10, x0, x8 x10=1c009b68 x8:1c009b68 +76554996ns 1411549 1c0034ca 00812403 lw x8, 8(x2) x8=1c009be0 x2:1c009b40 PA:1c009b48 +76555016ns 1411550 1c0034cc 00c12083 lw x1, 12(x2) x1=1c002ba4 x2:1c009b40 PA:1c009b4c +76555037ns 1411551 1c0034ce 01010113 addi x2, x2, 16 x2=1c009b50 x2:1c009b40 +76555057ns 1411552 1c0034d0 fb3ff06f jal x0, -78 +76555117ns 1411555 1c003482 04750783 lb x15, 71(x10) x15=00000001 x10:1c009b68 PA:1c009baf +76555158ns 1411557 1c003486 02078763 beq x15, x0, 46 x15:00000001 +76555178ns 1411558 1c003488 ff010113 addi x2, x2, -16 x2=1c009b40 x2:1c009b50 +76555198ns 1411559 1c00348a 00812423 sw x8, 8(x2) x8:1c009be0 x2:1c009b40 PA:1c009b48 +76555218ns 1411560 1c00348c 00112623 sw x1, 12(x2) x1:1c002ba4 x2:1c009b40 PA:1c009b4c +76555239ns 1411561 1c00348e 00a00433 add x8, x0, x10 x8=1c009b68 x10:1c009b68 +76555259ns 1411562 1c003490 040503a3 sb x0, 71(x10) x10:1c009b68 PA:1c009baf +76555279ns 1411563 1c003494 03452783 lw x15, 52(x10) x15=1c00c2e0 x10:1c009b68 PA:1c009b9c +76555319ns 1411565 1c003496 00078b63 beq x15, x0, 22 x15:1c00c2e0 +76555340ns 1411566 1c003498 03452503 lw x10, 52(x10) x10=1c00c2e0 x10:1c009b68 PA:1c009b9c +76555380ns 1411568 1c00349a 00050763 beq x10, x0, 14 x10:1c00c2e0 +76555400ns 1411569 1c00349c c1cfe0ef jal x1, -7140 x1=1c0034a0 +76555440ns 1411571 1c0018b8 ff010113 addi x2, x2, -16 x2=1c009b30 x2:1c009b40 +76555461ns 1411572 1c0018ba 00112623 sw x1, 12(x2) x1:1c0034a0 x2:1c009b30 PA:1c009b3c +76555481ns 1411573 1c0018bc 00812423 sw x8, 8(x2) x8:1c009b68 x2:1c009b30 PA:1c009b38 +76555501ns 1411574 1c0018be 02051163 bne x10, x0, 34 x10:1c00c2e0 +76555562ns 1411577 1c0018e0 00a00433 add x8, x0, x10 x8=1c00c2e0 x10:1c00c2e0 +76555582ns 1411578 1c0018e2 fa9ff0ef jal x1, -88 x1=1c0018e4 +76555642ns 1411581 1c00188a 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76555663ns 1411582 1c00188e c4878693 addi x13, x15, -952 x13=1c008c48 x15:1c009000 +76555683ns 1411583 1c001892 00000713 addi x14, x0, 0 x14=00000000 +76555703ns 1411584 1c001894 c4878793 addi x15, x15, -952 x15=1c008c48 x15:1c009000 +76555723ns 1411585 1c001898 00800613 addi x12, x0, 8 x12=00000008 +76555743ns 1411586 1c00189a 0046a583 lw x11, 4(x13) x11=1c00ad20 x13:1c008c48 PA:1c008c4c +76555784ns 1411588 1c00189c 00a59963 bne x11, x10, 18 x11:1c00ad20 x10:1c00c2e0 +76555844ns 1411591 1c0018ae 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76555865ns 1411592 1c0018b0 00868693 addi x13, x13, 8 x13=1c008c50 x13:1c008c48 +76555885ns 1411593 1c0018b2 fec714e3 bne x14, x12, -24 x14:00000001 x12:00000008 +76555945ns 1411596 1c00189a 0046a583 lw x11, 4(x13) x11=00000000 x13:1c008c50 PA:1c008c54 +76555986ns 1411598 1c00189c 00a59963 bne x11, x10, 18 x11:00000000 x10:1c00c2e0 +76556046ns 1411601 1c0018ae 00170713 addi x14, x14, 1 x14=00000002 x14:00000001 +76556066ns 1411602 1c0018b0 00868693 addi x13, x13, 8 x13=1c008c58 x13:1c008c50 +76556087ns 1411603 1c0018b2 fec714e3 bne x14, x12, -24 x14:00000002 x12:00000008 +76556147ns 1411606 1c00189a 0046a583 lw x11, 4(x13) x11=00000000 x13:1c008c58 PA:1c008c5c +76556188ns 1411608 1c00189c 00a59963 bne x11, x10, 18 x11:00000000 x10:1c00c2e0 +76556248ns 1411611 1c0018ae 00170713 addi x14, x14, 1 x14=00000003 x14:00000002 +76556268ns 1411612 1c0018b0 00868693 addi x13, x13, 8 x13=1c008c60 x13:1c008c58 +76556289ns 1411613 1c0018b2 fec714e3 bne x14, x12, -24 x14:00000003 x12:00000008 +76556349ns 1411616 1c00189a 0046a583 lw x11, 4(x13) x11=00000000 x13:1c008c60 PA:1c008c64 +76556390ns 1411618 1c00189c 00a59963 bne x11, x10, 18 x11:00000000 x10:1c00c2e0 +76556450ns 1411621 1c0018ae 00170713 addi x14, x14, 1 x14=00000004 x14:00000003 +76556470ns 1411622 1c0018b0 00868693 addi x13, x13, 8 x13=1c008c68 x13:1c008c60 +76556490ns 1411623 1c0018b2 fec714e3 bne x14, x12, -24 x14:00000004 x12:00000008 +76556551ns 1411626 1c00189a 0046a583 lw x11, 4(x13) x11=00000000 x13:1c008c68 PA:1c008c6c +76556591ns 1411628 1c00189c 00a59963 bne x11, x10, 18 x11:00000000 x10:1c00c2e0 +76556652ns 1411631 1c0018ae 00170713 addi x14, x14, 1 x14=00000005 x14:00000004 +76556672ns 1411632 1c0018b0 00868693 addi x13, x13, 8 x13=1c008c70 x13:1c008c68 +76556692ns 1411633 1c0018b2 fec714e3 bne x14, x12, -24 x14:00000005 x12:00000008 +76556753ns 1411636 1c00189a 0046a583 lw x11, 4(x13) x11=00000000 x13:1c008c70 PA:1c008c74 +76556793ns 1411638 1c00189c 00a59963 bne x11, x10, 18 x11:00000000 x10:1c00c2e0 +76556854ns 1411641 1c0018ae 00170713 addi x14, x14, 1 x14=00000006 x14:00000005 +76556874ns 1411642 1c0018b0 00868693 addi x13, x13, 8 x13=1c008c78 x13:1c008c70 +76556894ns 1411643 1c0018b2 fec714e3 bne x14, x12, -24 x14:00000006 x12:00000008 +76556955ns 1411646 1c00189a 0046a583 lw x11, 4(x13) x11=00000000 x13:1c008c78 PA:1c008c7c +76556995ns 1411648 1c00189c 00a59963 bne x11, x10, 18 x11:00000000 x10:1c00c2e0 +76557056ns 1411651 1c0018ae 00170713 addi x14, x14, 1 x14=00000007 x14:00000006 +76557076ns 1411652 1c0018b0 00868693 addi x13, x13, 8 x13=1c008c80 x13:1c008c78 +76557096ns 1411653 1c0018b2 fec714e3 bne x14, x12, -24 x14:00000007 x12:00000008 +76557157ns 1411656 1c00189a 0046a583 lw x11, 4(x13) x11=00000000 x13:1c008c80 PA:1c008c84 +76557197ns 1411658 1c00189c 00a59963 bne x11, x10, 18 x11:00000000 x10:1c00c2e0 +76557258ns 1411661 1c0018ae 00170713 addi x14, x14, 1 x14=00000008 x14:00000007 +76557278ns 1411662 1c0018b0 00868693 addi x13, x13, 8 x13=1c008c88 x13:1c008c80 +76557298ns 1411663 1c0018b2 fec714e3 bne x14, x12, -24 x14:00000008 x12:00000008 +76557318ns 1411664 1c0018b6 00008067 jalr x0, x1, 0 x1:1c0018e4 +76557359ns 1411666 1c0018e4 00800533 add x10, x0, x8 x10=1c00c2e0 x8:1c00c2e0 +76557379ns 1411667 1c0018e6 00812403 lw x8, 8(x2) x8=1c009b68 x2:1c009b30 PA:1c009b38 +76557399ns 1411668 1c0018e8 00c12083 lw x1, 12(x2) x1=1c0034a0 x2:1c009b30 PA:1c009b3c +76557419ns 1411669 1c0018ea 01010113 addi x2, x2, 16 x2=1c009b40 x2:1c009b30 +76557439ns 1411670 1c0018ec 0a60106f jal x0, 4262 +76557480ns 1411672 1c002992 fe010113 addi x2, x2, -32 x2=1c009b20 x2:1c009b40 +76557500ns 1411673 1c002994 00112e23 sw x1, 28(x2) x1:1c0034a0 x2:1c009b20 PA:1c009b3c +76557520ns 1411674 1c002996 00a12623 sw x10, 12(x2) x10:1c00c2e0 x2:1c009b20 PA:1c009b2c +76557540ns 1411675 1c002998 00050a63 beq x10, x0, 20 x10:1c00c2e0 +76557561ns 1411676 1c00299a 87cff0ef jal x1, -3972 x1=1c00299e +76557621ns 1411679 1c001a16 d6818793 addi x15, x3, -664 x15=1c009144 x3:1c0093dc +76557641ns 1411680 1c001a1a 0007a703 lw x14, 0(x15) x14=00000000 x15:1c009144 PA:1c009144 +76557682ns 1411682 1c001a1c 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76557702ns 1411683 1c001a1e 00e7a023 sw x14, 0(x15) x14:00000001 x15:1c009144 PA:1c009144 +76557722ns 1411684 1c001a20 00008067 jalr x0, x1, 0 x1:1c00299e +76557763ns 1411686 1c00299e 00c12503 lw x10, 12(x2) x10=1c00c2e0 x2:1c009b20 PA:1c009b2c +76557783ns 1411687 1c0029a0 775000ef jal x1, 3956 x1=1c0029a4 +76557823ns 1411689 1c003914 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76557843ns 1411690 1c003918 00a005b3 add x11, x0, x10 x11=1c00c2e0 x10:1c00c2e0 +76557864ns 1411691 1c00391a c447a503 lw x10, -956(x15) x10=1c009e10 x15:1c009000 PA:1c008c44 +76557884ns 1411692 1c00391e 0020006f jal x0, 2 +76557924ns 1411694 1c003920 0a058363 beq x11, x0, 166 x11:1c00c2e0 +76557944ns 1411695 1c003922 ffc5a783 lw x15, -4(x11) x15=00000058 x11:1c00c2e0 PA:1c00c2dc +76557964ns 1411696 1c003926 fe010113 addi x2, x2, -32 x2=1c009b00 x2:1c009b20 +76557985ns 1411697 1c003928 00812c23 sw x8, 24(x2) x8:1c009b68 x2:1c009b00 PA:1c009b18 +76558005ns 1411698 1c00392a 00112e23 sw x1, 28(x2) x1:1c0029a4 x2:1c009b00 PA:1c009b1c +76558025ns 1411699 1c00392c ffc58413 addi x8, x11, -4 x8=1c00c2dc x11:1c00c2e0 +76558045ns 1411700 1c003930 0007d363 bge x15, x0, 6 x15:00000058 +76558106ns 1411703 1c003936 00a12623 sw x10, 12(x2) x10:1c009e10 x2:1c009b00 PA:1c009b0c +76558126ns 1411704 1c003938 92eff0ef jal x1, -3794 x1=1c00393c +76558187ns 1411707 1c002a66 fb1fe06f jal x0, -4176 +76558247ns 1411710 1c001a16 d6818793 addi x15, x3, -664 x15=1c009144 x3:1c0093dc +76558267ns 1411711 1c001a1a 0007a703 lw x14, 0(x15) x14=00000001 x15:1c009144 PA:1c009144 +76558308ns 1411713 1c001a1c 00170713 addi x14, x14, 1 x14=00000002 x14:00000001 +76558328ns 1411714 1c001a1e 00e7a023 sw x14, 0(x15) x14:00000002 x15:1c009144 PA:1c009144 +76558348ns 1411715 1c001a20 00008067 jalr x0, x1, 0 x1:1c00393c +76558389ns 1411717 1c00393c db81a783 lw x15, -584(x3) x15=00000000 x3:1c0093dc PA:1c009194 +76558409ns 1411718 1c003940 00c12503 lw x10, 12(x2) x10=1c009e10 x2:1c009b00 PA:1c009b0c +76558429ns 1411719 1c003942 00e00633 add x12, x0, x14 x12=00000002 x14:00000002 +76558449ns 1411720 1c003944 00079a63 bne x15, x0, 20 x15:00000000 +76558469ns 1411721 1c003946 00042223 sw x0, 4(x8) x8:1c00c2dc PA:1c00c2e0 +76558489ns 1411722 1c00394a da81ac23 sw x8, -584(x3) x8:1c00c2dc x3:1c0093dc PA:1c009194 +76558510ns 1411723 1c00394e 01812403 lw x8, 24(x2) x8=1c009b68 x2:1c009b00 PA:1c009b18 +76558530ns 1411724 1c003950 01c12083 lw x1, 28(x2) x1=1c0029a4 x2:1c009b00 PA:1c009b1c +76558550ns 1411725 1c003952 02010113 addi x2, x2, 32 x2=1c009b20 x2:1c009b00 +76558570ns 1411726 1c003954 916ff06f jal x0, -3818 +76558631ns 1411729 1c002a6a 8e3ff06f jal x0, -1822 +76558671ns 1411731 1c00234c fc010113 addi x2, x2, -64 x2=1c009ae0 x2:1c009b20 +76558691ns 1411732 1c00234e 02812c23 sw x8, 56(x2) x8:1c009b68 x2:1c009ae0 PA:1c009b18 +76558712ns 1411733 1c002350 d6818413 addi x8, x3, -664 x8=1c009144 x3:1c0093dc +76558732ns 1411734 1c002354 00042783 lw x15, 0(x8) x15=00000002 x8:1c009144 PA:1c009144 +76558752ns 1411735 1c002356 02112e23 sw x1, 60(x2) x1:1c0029a4 x2:1c009ae0 PA:1c009b1c +76558772ns 1411736 1c002358 02912a23 sw x9, 52(x2) x9:1c009190 x2:1c009ae0 PA:1c009b14 +76558792ns 1411737 1c00235a 03212823 sw x18, 48(x2) x18:1c009188 x2:1c009ae0 PA:1c009b10 +76558813ns 1411738 1c00235c 03312623 sw x19, 44(x2) x19:1c009000 x2:1c009ae0 PA:1c009b0c +76558833ns 1411739 1c00235e 03412423 sw x20, 40(x2) x20:1c00918c x2:1c009ae0 PA:1c009b08 +76558853ns 1411740 1c002360 03512223 sw x21, 36(x2) x21:a5a5a5a5 x2:1c009ae0 PA:1c009b04 +76558873ns 1411741 1c002362 03612023 sw x22, 32(x2) x22:a5a5a5a5 x2:1c009ae0 PA:1c009b00 +76558893ns 1411742 1c002364 01712e23 sw x23, 28(x2) x23:a5a5a5a5 x2:1c009ae0 PA:1c009afc +76558914ns 1411743 1c002366 02079263 bne x15, x0, 36 x15:00000002 +76558994ns 1411747 1c00238a c83ff0ef jal x1, -894 x1=1c00238e +76559035ns 1411749 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +76559115ns 1411753 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76559156ns 1411755 1c002014 00078863 beq x15, x0, 16 x15:00000001 +76559176ns 1411756 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76559196ns 1411757 1c00201a 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76559216ns 1411758 1c00201c 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76559237ns 1411759 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c009db8 PA:1c009dfc +76559277ns 1411761 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76559297ns 1411762 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c009db8 PA:1c009dfc +76559317ns 1411763 1c002024 00008067 jalr x0, x1, 0 x1:1c00238e +76559358ns 1411765 1c00238e 00042783 lw x15, 0(x8) x15=00000002 x8:1c009144 PA:1c009144 +76559398ns 1411767 1c002390 fff78793 addi x15, x15, -1 x15=00000001 x15:00000002 +76559418ns 1411768 1c002392 00f42023 sw x15, 0(x8) x15:00000001 x8:1c009144 PA:1c009144 +76559439ns 1411769 1c002394 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +76559479ns 1411771 1c002396 02078163 beq x15, x0, 34 x15:00000001 +76559499ns 1411772 1c002398 00000513 addi x10, x0, 0 x10=00000000 +76559519ns 1411773 1c00239a 00a12623 sw x10, 12(x2) x10:00000000 x2:1c009ae0 PA:1c009aec +76559539ns 1411774 1c00239c c8bff0ef jal x1, -886 x1=1c0023a0 +76559600ns 1411777 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76559640ns 1411779 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +76559661ns 1411780 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76559681ns 1411781 1c002030 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +76559721ns 1411783 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c009db8 PA:1c009dfc +76559762ns 1411785 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +76559782ns 1411786 1c002036 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76559802ns 1411787 1c002038 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76559822ns 1411788 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c009db8 PA:1c009dfc +76559863ns 1411790 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +76559883ns 1411791 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c009db8 PA:1c009dfc +76559903ns 1411792 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c009db8 PA:1c009dfc +76559943ns 1411794 1c002042 00079363 bne x15, x0, 6 x15:00000000 +76559963ns 1411795 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +76560044ns 1411799 1c002048 00008067 jalr x0, x1, 0 x1:1c0023a0 +76560085ns 1411801 1c0023a0 03c12083 lw x1, 60(x2) x1=1c0029a4 x2:1c009ae0 PA:1c009b1c +76560105ns 1411802 1c0023a2 03812403 lw x8, 56(x2) x8=1c009b68 x2:1c009ae0 PA:1c009b18 +76560125ns 1411803 1c0023a4 00c12503 lw x10, 12(x2) x10=00000000 x2:1c009ae0 PA:1c009aec +76560145ns 1411804 1c0023a6 03412483 lw x9, 52(x2) x9=1c009190 x2:1c009ae0 PA:1c009b14 +76560165ns 1411805 1c0023a8 03012903 lw x18, 48(x2) x18=1c009188 x2:1c009ae0 PA:1c009b10 +76560186ns 1411806 1c0023aa 02c12983 lw x19, 44(x2) x19=1c009000 x2:1c009ae0 PA:1c009b0c +76560206ns 1411807 1c0023ac 02812a03 lw x20, 40(x2) x20=1c00918c x2:1c009ae0 PA:1c009b08 +76560226ns 1411808 1c0023ae 02412a83 lw x21, 36(x2) x21=a5a5a5a5 x2:1c009ae0 PA:1c009b04 +76560246ns 1411809 1c0023b0 02012b03 lw x22, 32(x2) x22=a5a5a5a5 x2:1c009ae0 PA:1c009b00 +76560266ns 1411810 1c0023b2 01c12b83 lw x23, 28(x2) x23=a5a5a5a5 x2:1c009ae0 PA:1c009afc +76560287ns 1411811 1c0023b4 04010113 addi x2, x2, 64 x2=1c009b20 x2:1c009ae0 +76560307ns 1411812 1c0023b6 00008067 jalr x0, x1, 0 x1:1c0029a4 +76560347ns 1411814 1c0029a4 01c12083 lw x1, 28(x2) x1=1c0034a0 x2:1c009b20 PA:1c009b3c +76560367ns 1411815 1c0029a6 02010113 addi x2, x2, 32 x2=1c009b40 x2:1c009b20 +76560388ns 1411816 1c0029a8 9a5ff06f jal x0, -1628 +76560428ns 1411818 1c00234c fc010113 addi x2, x2, -64 x2=1c009b00 x2:1c009b40 +76560448ns 1411819 1c00234e 02812c23 sw x8, 56(x2) x8:1c009b68 x2:1c009b00 PA:1c009b38 +76560468ns 1411820 1c002350 d6818413 addi x8, x3, -664 x8=1c009144 x3:1c0093dc +76560488ns 1411821 1c002354 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +76560509ns 1411822 1c002356 02112e23 sw x1, 60(x2) x1:1c0034a0 x2:1c009b00 PA:1c009b3c +76560529ns 1411823 1c002358 02912a23 sw x9, 52(x2) x9:1c009190 x2:1c009b00 PA:1c009b34 +76560549ns 1411824 1c00235a 03212823 sw x18, 48(x2) x18:1c009188 x2:1c009b00 PA:1c009b30 +76560569ns 1411825 1c00235c 03312623 sw x19, 44(x2) x19:1c009000 x2:1c009b00 PA:1c009b2c +76560589ns 1411826 1c00235e 03412423 sw x20, 40(x2) x20:1c00918c x2:1c009b00 PA:1c009b28 +76560610ns 1411827 1c002360 03512223 sw x21, 36(x2) x21:a5a5a5a5 x2:1c009b00 PA:1c009b24 +76560630ns 1411828 1c002362 03612023 sw x22, 32(x2) x22:a5a5a5a5 x2:1c009b00 PA:1c009b20 +76560650ns 1411829 1c002364 01712e23 sw x23, 28(x2) x23:a5a5a5a5 x2:1c009b00 PA:1c009b1c +76560670ns 1411830 1c002366 02079263 bne x15, x0, 36 x15:00000001 +76560751ns 1411834 1c00238a c83ff0ef jal x1, -894 x1=1c00238e +76560791ns 1411836 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +76560872ns 1411840 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76560913ns 1411842 1c002014 00078863 beq x15, x0, 16 x15:00000001 +76560933ns 1411843 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76560953ns 1411844 1c00201a 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76560973ns 1411845 1c00201c 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76560993ns 1411846 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c009db8 PA:1c009dfc +76561034ns 1411848 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76561054ns 1411849 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c009db8 PA:1c009dfc +76561074ns 1411850 1c002024 00008067 jalr x0, x1, 0 x1:1c00238e +76561114ns 1411852 1c00238e 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +76561155ns 1411854 1c002390 fff78793 addi x15, x15, -1 x15=00000000 x15:00000001 +76561175ns 1411855 1c002392 00f42023 sw x15, 0(x8) x15:00000000 x8:1c009144 PA:1c009144 +76561195ns 1411856 1c002394 00042783 lw x15, 0(x8) x15=00000000 x8:1c009144 PA:1c009144 +76561236ns 1411858 1c002396 02078163 beq x15, x0, 34 x15:00000000 +76561296ns 1411861 1c0023b8 d601a783 lw x15, -672(x3) x15=00000003 x3:1c0093dc PA:1c00913c +76561337ns 1411863 1c0023bc fc078ee3 beq x15, x0, -36 x15:00000003 +76561357ns 1411864 1c0023be 1c009937 lui x18, 0x1c009000 x18=1c009000 +76561377ns 1411865 1c0023c2 00000413 addi x8, x0, 0 x8=00000000 +76561397ns 1411866 1c0023c4 93818493 addi x9, x3, -1736 x9=1c008d14 x3:1c0093dc +76561417ns 1411867 1c0023c8 00100993 addi x19, x0, 1 x19=00000001 +76561438ns 1411868 1c0023ca c8890913 addi x18, x18, -888 x18=1c008c88 x18:1c009000 +76561458ns 1411869 1c0023ce 01400a93 addi x21, x0, 20 x21=00000014 +76561478ns 1411870 1c0023d0 04c0006f jal x0, 76 +76561518ns 1411872 1c00241c 0004a783 lw x15, 0(x9) x15=00000000 x9:1c008d14 PA:1c008d14 +76561559ns 1411874 1c00241e fa079ae3 bne x15, x0, -76 x15:00000000 +76561579ns 1411875 1c002420 00040363 beq x8, x0, 6 x8:00000000 +76561660ns 1411879 1c002426 d8018713 addi x14, x3, -640 x14=1c00915c x3:1c0093dc +76561680ns 1411880 1c00242a 00072483 lw x9, 0(x14) x9=00000000 x14:1c00915c PA:1c00915c +76561700ns 1411881 1c00242c d8018413 addi x8, x3, -640 x8=1c00915c x3:1c0093dc +76561720ns 1411882 1c002430 00048d63 beq x9, x0, 26 x9:00000000 +76561801ns 1411886 1c00244a d8c1a783 lw x15, -628(x3) x15=00000000 x3:1c0093dc PA:1c009168 +76561841ns 1411888 1c00244e f40785e3 beq x15, x0, -182 x15:00000000 +76561902ns 1411891 1c002398 00000513 addi x10, x0, 0 x10=00000000 +76561922ns 1411892 1c00239a 00a12623 sw x10, 12(x2) x10:00000000 x2:1c009b00 PA:1c009b0c +76561942ns 1411893 1c00239c c8bff0ef jal x1, -886 x1=1c0023a0 +76562003ns 1411896 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76562043ns 1411898 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +76562063ns 1411899 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76562084ns 1411900 1c002030 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +76562124ns 1411902 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c009db8 PA:1c009dfc +76562164ns 1411904 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +76562185ns 1411905 1c002036 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76562205ns 1411906 1c002038 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76562225ns 1411907 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c009db8 PA:1c009dfc +76562265ns 1411909 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +76562286ns 1411910 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c009db8 PA:1c009dfc +76562306ns 1411911 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c009db8 PA:1c009dfc +76562346ns 1411913 1c002042 00079363 bne x15, x0, 6 x15:00000000 +76562366ns 1411914 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +76562447ns 1411918 1c002048 00008067 jalr x0, x1, 0 x1:1c0023a0 +76562487ns 1411920 1c0023a0 03c12083 lw x1, 60(x2) x1=1c0034a0 x2:1c009b00 PA:1c009b3c +76562508ns 1411921 1c0023a2 03812403 lw x8, 56(x2) x8=1c009b68 x2:1c009b00 PA:1c009b38 +76562528ns 1411922 1c0023a4 00c12503 lw x10, 12(x2) x10=00000000 x2:1c009b00 PA:1c009b0c +76562548ns 1411923 1c0023a6 03412483 lw x9, 52(x2) x9=1c009190 x2:1c009b00 PA:1c009b34 +76562568ns 1411924 1c0023a8 03012903 lw x18, 48(x2) x18=1c009188 x2:1c009b00 PA:1c009b30 +76562588ns 1411925 1c0023aa 02c12983 lw x19, 44(x2) x19=1c009000 x2:1c009b00 PA:1c009b2c +76562609ns 1411926 1c0023ac 02812a03 lw x20, 40(x2) x20=1c00918c x2:1c009b00 PA:1c009b28 +76562629ns 1411927 1c0023ae 02412a83 lw x21, 36(x2) x21=a5a5a5a5 x2:1c009b00 PA:1c009b24 +76562649ns 1411928 1c0023b0 02012b03 lw x22, 32(x2) x22=a5a5a5a5 x2:1c009b00 PA:1c009b20 +76562669ns 1411929 1c0023b2 01c12b83 lw x23, 28(x2) x23=a5a5a5a5 x2:1c009b00 PA:1c009b1c +76562689ns 1411930 1c0023b4 04010113 addi x2, x2, 64 x2=1c009b40 x2:1c009b00 +76562710ns 1411931 1c0023b6 00008067 jalr x0, x1, 0 x1:1c0034a0 +76562750ns 1411933 1c0034a0 02042c23 sw x0, 56(x8) x8:1c009b68 PA:1c009ba0 +76562770ns 1411934 1c0034a4 02042e23 sw x0, 60(x8) x8:1c009b68 PA:1c009ba4 +76562790ns 1411935 1c0034a8 02042a23 sw x0, 52(x8) x8:1c009b68 PA:1c009b9c +76562811ns 1411936 1c0034ac 00c12083 lw x1, 12(x2) x1=1c002ba4 x2:1c009b40 PA:1c009b4c +76562831ns 1411937 1c0034ae 00812403 lw x8, 8(x2) x8=1c009be0 x2:1c009b40 PA:1c009b48 +76562851ns 1411938 1c0034b0 01010113 addi x2, x2, 16 x2=1c009b50 x2:1c009b40 +76562871ns 1411939 1c0034b2 00008067 jalr x0, x1, 0 x1:1c002ba4 +76562912ns 1411941 1c002ba4 01810513 addi x10, x2, 24 x10=1c009b68 x2:1c009b50 +76562932ns 1411942 1c002ba6 0dd000ef jal x1, 2268 x1=1c002baa +76562992ns 1411945 1c003482 04750783 lb x15, 71(x10) x15=00000000 x10:1c009b68 PA:1c009baf +76563033ns 1411947 1c003486 02078763 beq x15, x0, 46 x15:00000000 +76563093ns 1411950 1c0034b4 00008067 jalr x0, x1, 0 x1:1c002baa +76563134ns 1411952 1c002baa 06c12083 lw x1, 108(x2) x1=1c00367e x2:1c009b50 PA:1c009bbc +76563154ns 1411953 1c002bac 06812403 lw x8, 104(x2) x8=00000000 x2:1c009b50 PA:1c009bb8 +76563174ns 1411954 1c002bae 07010113 addi x2, x2, 112 x2=1c009bc0 x2:1c009b50 +76563194ns 1411955 1c002bb0 00008067 jalr x0, x1, 0 x1:1c00367e +76563255ns 1411958 1c00367e 01714583 lbu x11, 23(x2) x11=00000000 x2:1c009bc0 PA:1c009bd7 +76563275ns 1411959 1c003682 8f098513 addi x10, x19, -1808 x10=1c0088f0 x19:1c009000 +76563295ns 1411960 1c003686 0ff5f593 andi x11, x11, 255 x11=00000000 x11:00000000 +76563315ns 1411961 1c00368a 72a000ef jal x1, 1834 x1=1c00368e +76563356ns 1411963 1c003db4 fb010113 addi x2, x2, -80 x2=1c009b70 x2:1c009bc0 +76563376ns 1411964 1c003db6 04f12223 sw x15, 68(x2) x15:00000000 x2:1c009b70 PA:1c009bb4 +76563396ns 1411965 1c003db8 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76563416ns 1411966 1c003dbc 02812423 sw x8, 40(x2) x8:00000000 x2:1c009b70 PA:1c009b98 +76563437ns 1411967 1c003dbe 00a00433 add x8, x0, x10 x8=1c0088f0 x10:1c0088f0 +76563457ns 1411968 1c003dc0 c447a503 lw x10, -956(x15) x10=1c009e10 x15:1c009000 PA:1c008c44 +76563477ns 1411969 1c003dc4 02112623 sw x1, 44(x2) x1:1c00368e x2:1c009b70 PA:1c009b9c +76563497ns 1411970 1c003dc6 02b12a23 sw x11, 52(x2) x11:00000000 x2:1c009b70 PA:1c009ba4 +76563517ns 1411971 1c003dc8 02c12c23 sw x12, 56(x2) x12:00000002 x2:1c009b70 PA:1c009ba8 +76563537ns 1411972 1c003dca 02d12e23 sw x13, 60(x2) x13:1c009db8 x2:1c009b70 PA:1c009bac +76563558ns 1411973 1c003dcc 04e12023 sw x14, 64(x2) x14:00000000 x2:1c009b70 PA:1c009bb0 +76563578ns 1411974 1c003dce 05012423 sw x16, 72(x2) x16:00000010 x2:1c009b70 PA:1c009bb8 +76563598ns 1411975 1c003dd0 05112623 sw x17, 76(x2) x17:00000000 x2:1c009b70 PA:1c009bbc +76563618ns 1411976 1c003dd2 00050763 beq x10, x0, 14 x10:1c009e10 +76563638ns 1411977 1c003dd4 01852783 lw x15, 24(x10) x15=00000001 x10:1c009e10 PA:1c009e28 +76563679ns 1411979 1c003dd6 00079563 bne x15, x0, 10 x15:00000001 +76563739ns 1411982 1c003de0 00852583 lw x11, 8(x10) x11=1c00b914 x10:1c009e10 PA:1c009e18 +76563760ns 1411983 1c003de2 03410693 addi x13, x2, 52 x13=1c009ba4 x2:1c009b70 +76563780ns 1411984 1c003de4 00800633 add x12, x0, x8 x12=1c0088f0 x8:1c0088f0 +76563800ns 1411985 1c003de6 00d12e23 sw x13, 28(x2) x13:1c009ba4 x2:1c009b70 PA:1c009b8c +76563820ns 1411986 1c003de8 d25ff0ef jal x1, -732 x1=1c003dec +76563861ns 1411988 1c003b0c f5010113 addi x2, x2, -176 x2=1c009ac0 x2:1c009b70 +76563881ns 1411989 1c003b0e 0a812423 sw x8, 168(x2) x8:1c0088f0 x2:1c009ac0 PA:1c009b68 +76563901ns 1411990 1c003b10 0a912223 sw x9, 164(x2) x9:1c009190 x2:1c009ac0 PA:1c009b64 +76563921ns 1411991 1c003b12 0b212023 sw x18, 160(x2) x18:1c009188 x2:1c009ac0 PA:1c009b60 +76563941ns 1411992 1c003b14 09312e23 sw x19, 156(x2) x19:1c009000 x2:1c009ac0 PA:1c009b5c +76563962ns 1411993 1c003b16 0a112623 sw x1, 172(x2) x1:1c003dec x2:1c009ac0 PA:1c009b6c +76563982ns 1411994 1c003b18 09412c23 sw x20, 152(x2) x20:1c00918c x2:1c009ac0 PA:1c009b58 +76564002ns 1411995 1c003b1a 09512a23 sw x21, 148(x2) x21:a5a5a5a5 x2:1c009ac0 PA:1c009b54 +76564022ns 1411996 1c003b1c 09612823 sw x22, 144(x2) x22:a5a5a5a5 x2:1c009ac0 PA:1c009b50 +76564042ns 1411997 1c003b1e 09712623 sw x23, 140(x2) x23:a5a5a5a5 x2:1c009ac0 PA:1c009b4c +76564062ns 1411998 1c003b20 09812423 sw x24, 136(x2) x24:a5a5a5a5 x2:1c009ac0 PA:1c009b48 +76564083ns 1411999 1c003b22 09912223 sw x25, 132(x2) x25:a5a5a5a5 x2:1c009ac0 PA:1c009b44 +76564103ns 1412000 1c003b24 09a12023 sw x26, 128(x2) x26:a5a5a5a5 x2:1c009ac0 PA:1c009b40 +76564123ns 1412001 1c003b26 07b12e23 sw x27, 124(x2) x27:a5a5a5a5 x2:1c009ac0 PA:1c009b3c +76564143ns 1412002 1c003b28 00a009b3 add x19, x0, x10 x19=1c009e10 x10:1c009e10 +76564163ns 1412003 1c003b2a 00b004b3 add x9, x0, x11 x9=1c00b914 x11:1c00b914 +76564184ns 1412004 1c003b2c 00c00933 add x18, x0, x12 x18=1c0088f0 x12:1c0088f0 +76564204ns 1412005 1c003b2e 00d00433 add x8, x0, x13 x8=1c009ba4 x13:1c009ba4 +76564224ns 1412006 1c003b30 00050563 beq x10, x0, 10 x10:1c009e10 +76564244ns 1412007 1c003b32 01852783 lw x15, 24(x10) x15=00000001 x10:1c009e10 PA:1c009e28 +76564285ns 1412009 1c003b34 00079363 bne x15, x0, 6 x15:00000001 +76564365ns 1412013 1c003b3a 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76564386ns 1412014 1c003b3e a1478793 addi x15, x15, -1516 x15=1c008a14 x15:1c009000 +76564406ns 1412015 1c003b42 0ef49663 bne x9, x15, 236 x9:1c00b914 x15:1c008a14 +76564487ns 1412019 1c003c2e 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76564507ns 1412020 1c003c32 a3478793 addi x15, x15, -1484 x15=1c008a34 x15:1c009000 +76564527ns 1412021 1c003c36 00f49563 bne x9, x15, 10 x9:1c00b914 x15:1c008a34 +76564587ns 1412024 1c003c40 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76564608ns 1412025 1c003c44 9f478793 addi x15, x15, -1548 x15=1c0089f4 x15:1c009000 +76564628ns 1412026 1c003c48 f0f491e3 bne x9, x15, -254 x9:1c00b914 x15:1c0089f4 +76564709ns 1412030 1c003b4a 00c4d783 lhu x15, 12(x9) x15=00000089 x9:1c00b914 PA:1c00b920 +76564749ns 1412032 1c003b4e 0087f793 andi x15, x15, 8 x15=00000008 x15:00000089 +76564769ns 1412033 1c003b50 10078163 beq x15, x0, 258 x15:00000008 +76564789ns 1412034 1c003b54 0104a783 lw x15, 16(x9) x15=1c00bab8 x9:1c00b914 PA:1c00b924 +76564830ns 1412036 1c003b56 0e078e63 beq x15, x0, 252 x15:1c00bab8 +76564850ns 1412037 1c003b5a 02000793 addi x15, x0, 32 x15=00000020 +76564870ns 1412038 1c003b5e 02f104a3 sb x15, 41(x2) x15:00000020 x2:1c009ac0 PA:1c009ae9 +76564890ns 1412039 1c003b62 03000793 addi x15, x0, 48 x15=00000030 +76564911ns 1412040 1c003b66 02012223 sw x0, 36(x2) x2:1c009ac0 PA:1c009ae4 +76564931ns 1412041 1c003b68 02f10523 sb x15, 42(x2) x15:00000030 x2:1c009ac0 PA:1c009aea +76564951ns 1412042 1c003b6c 00812623 sw x8, 12(x2) x8:1c009ba4 x2:1c009ac0 PA:1c009acc +76564971ns 1412043 1c003b6e 02500c93 addi x25, x0, 37 x25=00000025 +76564991ns 1412044 1c003b72 1c009b37 lui x22, 0x1c009000 x22=1c009000 +76565011ns 1412045 1c003b76 1c009bb7 lui x23, 0x1c009000 x23=1c009000 +76565032ns 1412046 1c003b7a 1c009d37 lui x26, 0x1c009000 x26=1c009000 +76565052ns 1412047 1c003b7e 1c004c37 lui x24, 0x1c004000 x24=1c004000 +76565072ns 1412048 1c003b82 00000a93 addi x21, x0, 0 x21=00000000 +76565092ns 1412049 1c003b86 01200433 add x8, x0, x18 x8=1c0088f0 x18:1c0088f0 +76565112ns 1412050 1c003b88 00044783 lbu x15, 0(x8) x15=00000057 x8:1c0088f0 PA:1c0088f0 +76565153ns 1412052 1c003b8c 00078363 beq x15, x0, 6 x15:00000057 +76565173ns 1412053 1c003b8e 0f979763 bne x15, x25, 238 x15:00000057 x25:00000025 +76565234ns 1412056 1c003c7c 00140413 addi x8, x8, 1 x8=1c0088f1 x8:1c0088f0 +76565254ns 1412057 1c003c7e f0bff06f jal x0, -246 +76565294ns 1412059 1c003b88 00044783 lbu x15, 0(x8) x15=00000049 x8:1c0088f1 PA:1c0088f1 +76565335ns 1412061 1c003b8c 00078363 beq x15, x0, 6 x15:00000049 +76565355ns 1412062 1c003b8e 0f979763 bne x15, x25, 238 x15:00000049 x25:00000025 +76565415ns 1412065 1c003c7c 00140413 addi x8, x8, 1 x8=1c0088f2 x8:1c0088f1 +76565436ns 1412066 1c003c7e f0bff06f jal x0, -246 +76565476ns 1412068 1c003b88 00044783 lbu x15, 0(x8) x15=00000050 x8:1c0088f2 PA:1c0088f2 +76565516ns 1412070 1c003b8c 00078363 beq x15, x0, 6 x15:00000050 +76565536ns 1412071 1c003b8e 0f979763 bne x15, x25, 238 x15:00000050 x25:00000025 +76565597ns 1412074 1c003c7c 00140413 addi x8, x8, 1 x8=1c0088f3 x8:1c0088f2 +76565617ns 1412075 1c003c7e f0bff06f jal x0, -246 +76565658ns 1412077 1c003b88 00044783 lbu x15, 0(x8) x15=00000020 x8:1c0088f3 PA:1c0088f3 +76565698ns 1412079 1c003b8c 00078363 beq x15, x0, 6 x15:00000020 +76565718ns 1412080 1c003b8e 0f979763 bne x15, x25, 238 x15:00000020 x25:00000025 +76565779ns 1412083 1c003c7c 00140413 addi x8, x8, 1 x8=1c0088f4 x8:1c0088f3 +76565799ns 1412084 1c003c7e f0bff06f jal x0, -246 +76565839ns 1412086 1c003b88 00044783 lbu x15, 0(x8) x15=00000052 x8:1c0088f4 PA:1c0088f4 +76565880ns 1412088 1c003b8c 00078363 beq x15, x0, 6 x15:00000052 +76565900ns 1412089 1c003b8e 0f979763 bne x15, x25, 238 x15:00000052 x25:00000025 +76565961ns 1412092 1c003c7c 00140413 addi x8, x8, 1 x8=1c0088f5 x8:1c0088f4 +76565981ns 1412093 1c003c7e f0bff06f jal x0, -246 +76566021ns 1412095 1c003b88 00044783 lbu x15, 0(x8) x15=00000065 x8:1c0088f5 PA:1c0088f5 +76566061ns 1412097 1c003b8c 00078363 beq x15, x0, 6 x15:00000065 +76566082ns 1412098 1c003b8e 0f979763 bne x15, x25, 238 x15:00000065 x25:00000025 +76566142ns 1412101 1c003c7c 00140413 addi x8, x8, 1 x8=1c0088f6 x8:1c0088f5 +76566162ns 1412102 1c003c7e f0bff06f jal x0, -246 +76566203ns 1412104 1c003b88 00044783 lbu x15, 0(x8) x15=00000067 x8:1c0088f6 PA:1c0088f6 +76566243ns 1412106 1c003b8c 00078363 beq x15, x0, 6 x15:00000067 +76566263ns 1412107 1c003b8e 0f979763 bne x15, x25, 238 x15:00000067 x25:00000025 +76566324ns 1412110 1c003c7c 00140413 addi x8, x8, 1 x8=1c0088f7 x8:1c0088f6 +76566344ns 1412111 1c003c7e f0bff06f jal x0, -246 +76566385ns 1412113 1c003b88 00044783 lbu x15, 0(x8) x15=00000069 x8:1c0088f7 PA:1c0088f7 +76566425ns 1412115 1c003b8c 00078363 beq x15, x0, 6 x15:00000069 +76566445ns 1412116 1c003b8e 0f979763 bne x15, x25, 238 x15:00000069 x25:00000025 +76566506ns 1412119 1c003c7c 00140413 addi x8, x8, 1 x8=1c0088f8 x8:1c0088f7 +76566526ns 1412120 1c003c7e f0bff06f jal x0, -246 +76566566ns 1412122 1c003b88 00044783 lbu x15, 0(x8) x15=00000073 x8:1c0088f8 PA:1c0088f8 +76566607ns 1412124 1c003b8c 00078363 beq x15, x0, 6 x15:00000073 +76566627ns 1412125 1c003b8e 0f979763 bne x15, x25, 238 x15:00000073 x25:00000025 +76566687ns 1412128 1c003c7c 00140413 addi x8, x8, 1 x8=1c0088f9 x8:1c0088f8 +76566708ns 1412129 1c003c7e f0bff06f jal x0, -246 +76566748ns 1412131 1c003b88 00044783 lbu x15, 0(x8) x15=00000074 x8:1c0088f9 PA:1c0088f9 +76566788ns 1412133 1c003b8c 00078363 beq x15, x0, 6 x15:00000074 +76566809ns 1412134 1c003b8e 0f979763 bne x15, x25, 238 x15:00000074 x25:00000025 +76566869ns 1412137 1c003c7c 00140413 addi x8, x8, 1 x8=1c0088fa x8:1c0088f9 +76566889ns 1412138 1c003c7e f0bff06f jal x0, -246 +76566930ns 1412140 1c003b88 00044783 lbu x15, 0(x8) x15=00000065 x8:1c0088fa PA:1c0088fa +76566970ns 1412142 1c003b8c 00078363 beq x15, x0, 6 x15:00000065 +76566990ns 1412143 1c003b8e 0f979763 bne x15, x25, 238 x15:00000065 x25:00000025 +76567051ns 1412146 1c003c7c 00140413 addi x8, x8, 1 x8=1c0088fb x8:1c0088fa +76567071ns 1412147 1c003c7e f0bff06f jal x0, -246 +76567111ns 1412149 1c003b88 00044783 lbu x15, 0(x8) x15=00000072 x8:1c0088fb PA:1c0088fb +76567152ns 1412151 1c003b8c 00078363 beq x15, x0, 6 x15:00000072 +76567172ns 1412152 1c003b8e 0f979763 bne x15, x25, 238 x15:00000072 x25:00000025 +76567233ns 1412155 1c003c7c 00140413 addi x8, x8, 1 x8=1c0088fc x8:1c0088fb +76567253ns 1412156 1c003c7e f0bff06f jal x0, -246 +76567293ns 1412158 1c003b88 00044783 lbu x15, 0(x8) x15=0000003a x8:1c0088fc PA:1c0088fc +76567334ns 1412160 1c003b8c 00078363 beq x15, x0, 6 x15:0000003a +76567354ns 1412161 1c003b8e 0f979763 bne x15, x25, 238 x15:0000003a x25:00000025 +76567414ns 1412164 1c003c7c 00140413 addi x8, x8, 1 x8=1c0088fd x8:1c0088fc +76567435ns 1412165 1c003c7e f0bff06f jal x0, -246 +76567475ns 1412167 1c003b88 00044783 lbu x15, 0(x8) x15=00000020 x8:1c0088fd PA:1c0088fd +76567515ns 1412169 1c003b8c 00078363 beq x15, x0, 6 x15:00000020 +76567535ns 1412170 1c003b8e 0f979763 bne x15, x25, 238 x15:00000020 x25:00000025 +76567596ns 1412173 1c003c7c 00140413 addi x8, x8, 1 x8=1c0088fe x8:1c0088fd +76567616ns 1412174 1c003c7e f0bff06f jal x0, -246 +76567657ns 1412176 1c003b88 00044783 lbu x15, 0(x8) x15=00000025 x8:1c0088fe PA:1c0088fe +76567697ns 1412178 1c003b8c 00078363 beq x15, x0, 6 x15:00000025 +76567717ns 1412179 1c003b8e 0f979763 bne x15, x25, 238 x15:00000025 x25:00000025 +76567737ns 1412180 1c003b92 41240db3 sub x27, x8, x18 x27=0000000e x8:1c0088fe x18:1c0088f0 +76567758ns 1412181 1c003b96 01240e63 beq x8, x18, 28 x8:1c0088fe x18:1c0088f0 +76567778ns 1412182 1c003b9a 01b006b3 add x13, x0, x27 x13=0000000e x27:0000000e +76567798ns 1412183 1c003b9c 01200633 add x12, x0, x18 x12=1c0088f0 x18:1c0088f0 +76567818ns 1412184 1c003b9e 009005b3 add x11, x0, x9 x11=1c00b914 x9:1c00b914 +76567838ns 1412185 1c003ba0 01300533 add x10, x0, x19 x10=1c009e10 x19:1c009e10 +76567859ns 1412186 1c003ba2 f27ff0ef jal x1, -218 x1=1c003ba6 +76567899ns 1412188 1c003ac8 fe010113 addi x2, x2, -32 x2=1c009aa0 x2:1c009ac0 +76567919ns 1412189 1c003aca 00812c23 sw x8, 24(x2) x8:1c0088fe x2:1c009aa0 PA:1c009ab8 +76567939ns 1412190 1c003acc 00912a23 sw x9, 20(x2) x9:1c00b914 x2:1c009aa0 PA:1c009ab4 +76567960ns 1412191 1c003ace 01212823 sw x18, 16(x2) x18:1c0088f0 x2:1c009aa0 PA:1c009ab0 +76567980ns 1412192 1c003ad0 01312623 sw x19, 12(x2) x19:1c009e10 x2:1c009aa0 PA:1c009aac +76568000ns 1412193 1c003ad2 01412423 sw x20, 8(x2) x20:1c00918c x2:1c009aa0 PA:1c009aa8 +76568020ns 1412194 1c003ad4 00112e23 sw x1, 28(x2) x1:1c003ba6 x2:1c009aa0 PA:1c009abc +76568040ns 1412195 1c003ad6 00a00933 add x18, x0, x10 x18=1c009e10 x10:1c009e10 +76568060ns 1412196 1c003ad8 00b009b3 add x19, x0, x11 x19=1c00b914 x11:1c00b914 +76568081ns 1412197 1c003ada 00c00433 add x8, x0, x12 x8=1c0088f0 x12:1c0088f0 +76568101ns 1412198 1c003adc 00d604b3 add x9, x12, x13 x9=1c0088fe x12:1c0088f0 x13:0000000e +76568121ns 1412199 1c003ae0 fff00a13 addi x20, x0, -1 x20=ffffffff +76568141ns 1412200 1c003ae2 00941463 bne x8, x9, 8 x8:1c0088f0 x9:1c0088fe +76568222ns 1412204 1c003aea 00044583 lbu x11, 0(x8) x11=00000057 x8:1c0088f0 PA:1c0088f0 +76568242ns 1412205 1c003aee 01300633 add x12, x0, x19 x12=1c00b914 x19:1c00b914 +76568262ns 1412206 1c003af0 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +76568283ns 1412207 1c003af2 fafff0ef jal x1, -82 x1=1c003af6 +76568323ns 1412209 1c003aa0 00862783 lw x15, 8(x12) x15=00000000 x12:1c00b914 PA:1c00b91c +76568363ns 1412211 1c003aa2 fff78793 addi x15, x15, -1 x15=ffffffff x15:00000000 +76568384ns 1412212 1c003aa4 00f62423 sw x15, 8(x12) x15:ffffffff x12:1c00b914 PA:1c00b91c +76568404ns 1412213 1c003aa6 0007d963 bge x15, x0, 18 x15:ffffffff +76568424ns 1412214 1c003aaa 01862703 lw x14, 24(x12) x14=fffffc00 x12:1c00b914 PA:1c00b92c +76568464ns 1412216 1c003aac 00e7c563 blt x15, x14, 10 x15:ffffffff x14:fffffc00 +76568485ns 1412217 1c003ab0 00a00793 addi x15, x0, 10 x15=0000000a +76568505ns 1412218 1c003ab2 00f59363 bne x11, x15, 6 x11:00000057 x15:0000000a +76568565ns 1412221 1c003ab8 00062783 lw x15, 0(x12) x15=1c00bab8 x12:1c00b914 PA:1c00b914 +76568585ns 1412222 1c003aba 00b00533 add x10, x0, x11 x10=00000057 x11:00000057 +76568606ns 1412223 1c003abc 00178713 addi x14, x15, 1 x14=1c00bab9 x15:1c00bab8 +76568626ns 1412224 1c003ac0 00e62023 sw x14, 0(x12) x14:1c00bab9 x12:1c00b914 PA:1c00b914 +76568646ns 1412225 1c003ac2 00b78023 sb x11, 0(x15) x11:00000057 x15:1c00bab8 PA:1c00bab8 +76568666ns 1412226 1c003ac6 00008067 jalr x0, x1, 0 x1:1c003af6 +76568707ns 1412228 1c003af6 00140413 addi x8, x8, 1 x8=1c0088f1 x8:1c0088f0 +76568727ns 1412229 1c003af8 ff4515e3 bne x10, x20, -22 x10:00000057 x20:ffffffff +76568808ns 1412233 1c003ae2 00941463 bne x8, x9, 8 x8:1c0088f1 x9:1c0088fe +76568888ns 1412237 1c003aea 00044583 lbu x11, 0(x8) x11=00000049 x8:1c0088f1 PA:1c0088f1 +76568909ns 1412238 1c003aee 01300633 add x12, x0, x19 x12=1c00b914 x19:1c00b914 +76568929ns 1412239 1c003af0 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +76568949ns 1412240 1c003af2 fafff0ef jal x1, -82 x1=1c003af6 +76568989ns 1412242 1c003aa0 00862783 lw x15, 8(x12) x15=ffffffff x12:1c00b914 PA:1c00b91c +76569030ns 1412244 1c003aa2 fff78793 addi x15, x15, -1 x15=fffffffe x15:ffffffff +76569050ns 1412245 1c003aa4 00f62423 sw x15, 8(x12) x15:fffffffe x12:1c00b914 PA:1c00b91c +76569070ns 1412246 1c003aa6 0007d963 bge x15, x0, 18 x15:fffffffe +76569090ns 1412247 1c003aaa 01862703 lw x14, 24(x12) x14=fffffc00 x12:1c00b914 PA:1c00b92c +76569131ns 1412249 1c003aac 00e7c563 blt x15, x14, 10 x15:fffffffe x14:fffffc00 +76569151ns 1412250 1c003ab0 00a00793 addi x15, x0, 10 x15=0000000a +76569171ns 1412251 1c003ab2 00f59363 bne x11, x15, 6 x11:00000049 x15:0000000a +76569232ns 1412254 1c003ab8 00062783 lw x15, 0(x12) x15=1c00bab9 x12:1c00b914 PA:1c00b914 +76569252ns 1412255 1c003aba 00b00533 add x10, x0, x11 x10=00000049 x11:00000049 +76569272ns 1412256 1c003abc 00178713 addi x14, x15, 1 x14=1c00baba x15:1c00bab9 +76569292ns 1412257 1c003ac0 00e62023 sw x14, 0(x12) x14:1c00baba x12:1c00b914 PA:1c00b914 +76569312ns 1412258 1c003ac2 00b78023 sb x11, 0(x15) x11:00000049 x15:1c00bab9 PA:1c00bab9 +76569333ns 1412259 1c003ac6 00008067 jalr x0, x1, 0 x1:1c003af6 +76569373ns 1412261 1c003af6 00140413 addi x8, x8, 1 x8=1c0088f2 x8:1c0088f1 +76569393ns 1412262 1c003af8 ff4515e3 bne x10, x20, -22 x10:00000049 x20:ffffffff +76569474ns 1412266 1c003ae2 00941463 bne x8, x9, 8 x8:1c0088f2 x9:1c0088fe +76569555ns 1412270 1c003aea 00044583 lbu x11, 0(x8) x11=00000050 x8:1c0088f2 PA:1c0088f2 +76569575ns 1412271 1c003aee 01300633 add x12, x0, x19 x12=1c00b914 x19:1c00b914 +76569595ns 1412272 1c003af0 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +76569615ns 1412273 1c003af2 fafff0ef jal x1, -82 x1=1c003af6 +76569656ns 1412275 1c003aa0 00862783 lw x15, 8(x12) x15=fffffffe x12:1c00b914 PA:1c00b91c +76569696ns 1412277 1c003aa2 fff78793 addi x15, x15, -1 x15=fffffffd x15:fffffffe +76569716ns 1412278 1c003aa4 00f62423 sw x15, 8(x12) x15:fffffffd x12:1c00b914 PA:1c00b91c +76569736ns 1412279 1c003aa6 0007d963 bge x15, x0, 18 x15:fffffffd +76569757ns 1412280 1c003aaa 01862703 lw x14, 24(x12) x14=fffffc00 x12:1c00b914 PA:1c00b92c +76569797ns 1412282 1c003aac 00e7c563 blt x15, x14, 10 x15:fffffffd x14:fffffc00 +76569817ns 1412283 1c003ab0 00a00793 addi x15, x0, 10 x15=0000000a +76569837ns 1412284 1c003ab2 00f59363 bne x11, x15, 6 x11:00000050 x15:0000000a +76569898ns 1412287 1c003ab8 00062783 lw x15, 0(x12) x15=1c00baba x12:1c00b914 PA:1c00b914 +76569918ns 1412288 1c003aba 00b00533 add x10, x0, x11 x10=00000050 x11:00000050 +76569938ns 1412289 1c003abc 00178713 addi x14, x15, 1 x14=1c00babb x15:1c00baba +76569959ns 1412290 1c003ac0 00e62023 sw x14, 0(x12) x14:1c00babb x12:1c00b914 PA:1c00b914 +76569979ns 1412291 1c003ac2 00b78023 sb x11, 0(x15) x11:00000050 x15:1c00baba PA:1c00baba +76569999ns 1412292 1c003ac6 00008067 jalr x0, x1, 0 x1:1c003af6 +76570039ns 1412294 1c003af6 00140413 addi x8, x8, 1 x8=1c0088f3 x8:1c0088f2 +76570059ns 1412295 1c003af8 ff4515e3 bne x10, x20, -22 x10:00000050 x20:ffffffff +76570140ns 1412299 1c003ae2 00941463 bne x8, x9, 8 x8:1c0088f3 x9:1c0088fe +76570221ns 1412303 1c003aea 00044583 lbu x11, 0(x8) x11=00000020 x8:1c0088f3 PA:1c0088f3 +76570241ns 1412304 1c003aee 01300633 add x12, x0, x19 x12=1c00b914 x19:1c00b914 +76570261ns 1412305 1c003af0 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +76570282ns 1412306 1c003af2 fafff0ef jal x1, -82 x1=1c003af6 +76570322ns 1412308 1c003aa0 00862783 lw x15, 8(x12) x15=fffffffd x12:1c00b914 PA:1c00b91c +76570362ns 1412310 1c003aa2 fff78793 addi x15, x15, -1 x15=fffffffc x15:fffffffd +76570383ns 1412311 1c003aa4 00f62423 sw x15, 8(x12) x15:fffffffc x12:1c00b914 PA:1c00b91c +76570403ns 1412312 1c003aa6 0007d963 bge x15, x0, 18 x15:fffffffc +76570423ns 1412313 1c003aaa 01862703 lw x14, 24(x12) x14=fffffc00 x12:1c00b914 PA:1c00b92c +76570463ns 1412315 1c003aac 00e7c563 blt x15, x14, 10 x15:fffffffc x14:fffffc00 +76570484ns 1412316 1c003ab0 00a00793 addi x15, x0, 10 x15=0000000a +76570504ns 1412317 1c003ab2 00f59363 bne x11, x15, 6 x11:00000020 x15:0000000a +76570564ns 1412320 1c003ab8 00062783 lw x15, 0(x12) x15=1c00babb x12:1c00b914 PA:1c00b914 +76570584ns 1412321 1c003aba 00b00533 add x10, x0, x11 x10=00000020 x11:00000020 +76570605ns 1412322 1c003abc 00178713 addi x14, x15, 1 x14=1c00babc x15:1c00babb +76570625ns 1412323 1c003ac0 00e62023 sw x14, 0(x12) x14:1c00babc x12:1c00b914 PA:1c00b914 +76570645ns 1412324 1c003ac2 00b78023 sb x11, 0(x15) x11:00000020 x15:1c00babb PA:1c00babb +76570665ns 1412325 1c003ac6 00008067 jalr x0, x1, 0 x1:1c003af6 +76570706ns 1412327 1c003af6 00140413 addi x8, x8, 1 x8=1c0088f4 x8:1c0088f3 +76570726ns 1412328 1c003af8 ff4515e3 bne x10, x20, -22 x10:00000020 x20:ffffffff +76570807ns 1412332 1c003ae2 00941463 bne x8, x9, 8 x8:1c0088f4 x9:1c0088fe +76570887ns 1412336 1c003aea 00044583 lbu x11, 0(x8) x11=00000052 x8:1c0088f4 PA:1c0088f4 +76570908ns 1412337 1c003aee 01300633 add x12, x0, x19 x12=1c00b914 x19:1c00b914 +76570928ns 1412338 1c003af0 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +76570948ns 1412339 1c003af2 fafff0ef jal x1, -82 x1=1c003af6 +76570988ns 1412341 1c003aa0 00862783 lw x15, 8(x12) x15=fffffffc x12:1c00b914 PA:1c00b91c +76571029ns 1412343 1c003aa2 fff78793 addi x15, x15, -1 x15=fffffffb x15:fffffffc +76571049ns 1412344 1c003aa4 00f62423 sw x15, 8(x12) x15:fffffffb x12:1c00b914 PA:1c00b91c +76571069ns 1412345 1c003aa6 0007d963 bge x15, x0, 18 x15:fffffffb +76571089ns 1412346 1c003aaa 01862703 lw x14, 24(x12) x14=fffffc00 x12:1c00b914 PA:1c00b92c +76571130ns 1412348 1c003aac 00e7c563 blt x15, x14, 10 x15:fffffffb x14:fffffc00 +76571150ns 1412349 1c003ab0 00a00793 addi x15, x0, 10 x15=0000000a +76571170ns 1412350 1c003ab2 00f59363 bne x11, x15, 6 x11:00000052 x15:0000000a +76571231ns 1412353 1c003ab8 00062783 lw x15, 0(x12) x15=1c00babc x12:1c00b914 PA:1c00b914 +76571251ns 1412354 1c003aba 00b00533 add x10, x0, x11 x10=00000052 x11:00000052 +76571271ns 1412355 1c003abc 00178713 addi x14, x15, 1 x14=1c00babd x15:1c00babc +76571291ns 1412356 1c003ac0 00e62023 sw x14, 0(x12) x14:1c00babd x12:1c00b914 PA:1c00b914 +76571311ns 1412357 1c003ac2 00b78023 sb x11, 0(x15) x11:00000052 x15:1c00babc PA:1c00babc +76571332ns 1412358 1c003ac6 00008067 jalr x0, x1, 0 x1:1c003af6 +76571372ns 1412360 1c003af6 00140413 addi x8, x8, 1 x8=1c0088f5 x8:1c0088f4 +76571392ns 1412361 1c003af8 ff4515e3 bne x10, x20, -22 x10:00000052 x20:ffffffff +76571473ns 1412365 1c003ae2 00941463 bne x8, x9, 8 x8:1c0088f5 x9:1c0088fe +76571554ns 1412369 1c003aea 00044583 lbu x11, 0(x8) x11=00000065 x8:1c0088f5 PA:1c0088f5 +76571574ns 1412370 1c003aee 01300633 add x12, x0, x19 x12=1c00b914 x19:1c00b914 +76571594ns 1412371 1c003af0 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +76571614ns 1412372 1c003af2 fafff0ef jal x1, -82 x1=1c003af6 +76571655ns 1412374 1c003aa0 00862783 lw x15, 8(x12) x15=fffffffb x12:1c00b914 PA:1c00b91c +76571695ns 1412376 1c003aa2 fff78793 addi x15, x15, -1 x15=fffffffa x15:fffffffb +76571715ns 1412377 1c003aa4 00f62423 sw x15, 8(x12) x15:fffffffa x12:1c00b914 PA:1c00b91c +76571735ns 1412378 1c003aa6 0007d963 bge x15, x0, 18 x15:fffffffa +76571756ns 1412379 1c003aaa 01862703 lw x14, 24(x12) x14=fffffc00 x12:1c00b914 PA:1c00b92c +76571796ns 1412381 1c003aac 00e7c563 blt x15, x14, 10 x15:fffffffa x14:fffffc00 +76571816ns 1412382 1c003ab0 00a00793 addi x15, x0, 10 x15=0000000a +76571836ns 1412383 1c003ab2 00f59363 bne x11, x15, 6 x11:00000065 x15:0000000a +76571897ns 1412386 1c003ab8 00062783 lw x15, 0(x12) x15=1c00babd x12:1c00b914 PA:1c00b914 +76571917ns 1412387 1c003aba 00b00533 add x10, x0, x11 x10=00000065 x11:00000065 +76571937ns 1412388 1c003abc 00178713 addi x14, x15, 1 x14=1c00babe x15:1c00babd +76571958ns 1412389 1c003ac0 00e62023 sw x14, 0(x12) x14:1c00babe x12:1c00b914 PA:1c00b914 +76571978ns 1412390 1c003ac2 00b78023 sb x11, 0(x15) x11:00000065 x15:1c00babd PA:1c00babd +76571998ns 1412391 1c003ac6 00008067 jalr x0, x1, 0 x1:1c003af6 +76572038ns 1412393 1c003af6 00140413 addi x8, x8, 1 x8=1c0088f6 x8:1c0088f5 +76572059ns 1412394 1c003af8 ff4515e3 bne x10, x20, -22 x10:00000065 x20:ffffffff +76572139ns 1412398 1c003ae2 00941463 bne x8, x9, 8 x8:1c0088f6 x9:1c0088fe +76572220ns 1412402 1c003aea 00044583 lbu x11, 0(x8) x11=00000067 x8:1c0088f6 PA:1c0088f6 +76572240ns 1412403 1c003aee 01300633 add x12, x0, x19 x12=1c00b914 x19:1c00b914 +76572260ns 1412404 1c003af0 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +76572281ns 1412405 1c003af2 fafff0ef jal x1, -82 x1=1c003af6 +76572321ns 1412407 1c003aa0 00862783 lw x15, 8(x12) x15=fffffffa x12:1c00b914 PA:1c00b91c +76572361ns 1412409 1c003aa2 fff78793 addi x15, x15, -1 x15=fffffff9 x15:fffffffa +76572382ns 1412410 1c003aa4 00f62423 sw x15, 8(x12) x15:fffffff9 x12:1c00b914 PA:1c00b91c +76572402ns 1412411 1c003aa6 0007d963 bge x15, x0, 18 x15:fffffff9 +76572422ns 1412412 1c003aaa 01862703 lw x14, 24(x12) x14=fffffc00 x12:1c00b914 PA:1c00b92c +76572462ns 1412414 1c003aac 00e7c563 blt x15, x14, 10 x15:fffffff9 x14:fffffc00 +76572483ns 1412415 1c003ab0 00a00793 addi x15, x0, 10 x15=0000000a +76572503ns 1412416 1c003ab2 00f59363 bne x11, x15, 6 x11:00000067 x15:0000000a +76572563ns 1412419 1c003ab8 00062783 lw x15, 0(x12) x15=1c00babe x12:1c00b914 PA:1c00b914 +76572583ns 1412420 1c003aba 00b00533 add x10, x0, x11 x10=00000067 x11:00000067 +76572604ns 1412421 1c003abc 00178713 addi x14, x15, 1 x14=1c00babf x15:1c00babe +76572624ns 1412422 1c003ac0 00e62023 sw x14, 0(x12) x14:1c00babf x12:1c00b914 PA:1c00b914 +76572644ns 1412423 1c003ac2 00b78023 sb x11, 0(x15) x11:00000067 x15:1c00babe PA:1c00babe +76572664ns 1412424 1c003ac6 00008067 jalr x0, x1, 0 x1:1c003af6 +76572705ns 1412426 1c003af6 00140413 addi x8, x8, 1 x8=1c0088f7 x8:1c0088f6 +76572725ns 1412427 1c003af8 ff4515e3 bne x10, x20, -22 x10:00000067 x20:ffffffff +76572806ns 1412431 1c003ae2 00941463 bne x8, x9, 8 x8:1c0088f7 x9:1c0088fe +76572886ns 1412435 1c003aea 00044583 lbu x11, 0(x8) x11=00000069 x8:1c0088f7 PA:1c0088f7 +76572907ns 1412436 1c003aee 01300633 add x12, x0, x19 x12=1c00b914 x19:1c00b914 +76572927ns 1412437 1c003af0 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +76572947ns 1412438 1c003af2 fafff0ef jal x1, -82 x1=1c003af6 +76572987ns 1412440 1c003aa0 00862783 lw x15, 8(x12) x15=fffffff9 x12:1c00b914 PA:1c00b91c +76573028ns 1412442 1c003aa2 fff78793 addi x15, x15, -1 x15=fffffff8 x15:fffffff9 +76573048ns 1412443 1c003aa4 00f62423 sw x15, 8(x12) x15:fffffff8 x12:1c00b914 PA:1c00b91c +76573068ns 1412444 1c003aa6 0007d963 bge x15, x0, 18 x15:fffffff8 +76573088ns 1412445 1c003aaa 01862703 lw x14, 24(x12) x14=fffffc00 x12:1c00b914 PA:1c00b92c +76573129ns 1412447 1c003aac 00e7c563 blt x15, x14, 10 x15:fffffff8 x14:fffffc00 +76573149ns 1412448 1c003ab0 00a00793 addi x15, x0, 10 x15=0000000a +76573169ns 1412449 1c003ab2 00f59363 bne x11, x15, 6 x11:00000069 x15:0000000a +76573230ns 1412452 1c003ab8 00062783 lw x15, 0(x12) x15=1c00babf x12:1c00b914 PA:1c00b914 +76573250ns 1412453 1c003aba 00b00533 add x10, x0, x11 x10=00000069 x11:00000069 +76573270ns 1412454 1c003abc 00178713 addi x14, x15, 1 x14=1c00bac0 x15:1c00babf +76573290ns 1412455 1c003ac0 00e62023 sw x14, 0(x12) x14:1c00bac0 x12:1c00b914 PA:1c00b914 +76573310ns 1412456 1c003ac2 00b78023 sb x11, 0(x15) x11:00000069 x15:1c00babf PA:1c00babf +76573331ns 1412457 1c003ac6 00008067 jalr x0, x1, 0 x1:1c003af6 +76573371ns 1412459 1c003af6 00140413 addi x8, x8, 1 x8=1c0088f8 x8:1c0088f7 +76573391ns 1412460 1c003af8 ff4515e3 bne x10, x20, -22 x10:00000069 x20:ffffffff +76573472ns 1412464 1c003ae2 00941463 bne x8, x9, 8 x8:1c0088f8 x9:1c0088fe +76573553ns 1412468 1c003aea 00044583 lbu x11, 0(x8) x11=00000073 x8:1c0088f8 PA:1c0088f8 +76573573ns 1412469 1c003aee 01300633 add x12, x0, x19 x12=1c00b914 x19:1c00b914 +76573593ns 1412470 1c003af0 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +76573613ns 1412471 1c003af2 fafff0ef jal x1, -82 x1=1c003af6 +76573654ns 1412473 1c003aa0 00862783 lw x15, 8(x12) x15=fffffff8 x12:1c00b914 PA:1c00b91c +76573694ns 1412475 1c003aa2 fff78793 addi x15, x15, -1 x15=fffffff7 x15:fffffff8 +76573714ns 1412476 1c003aa4 00f62423 sw x15, 8(x12) x15:fffffff7 x12:1c00b914 PA:1c00b91c +76573734ns 1412477 1c003aa6 0007d963 bge x15, x0, 18 x15:fffffff7 +76573755ns 1412478 1c003aaa 01862703 lw x14, 24(x12) x14=fffffc00 x12:1c00b914 PA:1c00b92c +76573795ns 1412480 1c003aac 00e7c563 blt x15, x14, 10 x15:fffffff7 x14:fffffc00 +76573815ns 1412481 1c003ab0 00a00793 addi x15, x0, 10 x15=0000000a +76573835ns 1412482 1c003ab2 00f59363 bne x11, x15, 6 x11:00000073 x15:0000000a +76573896ns 1412485 1c003ab8 00062783 lw x15, 0(x12) x15=1c00bac0 x12:1c00b914 PA:1c00b914 +76573916ns 1412486 1c003aba 00b00533 add x10, x0, x11 x10=00000073 x11:00000073 +76573936ns 1412487 1c003abc 00178713 addi x14, x15, 1 x14=1c00bac1 x15:1c00bac0 +76573957ns 1412488 1c003ac0 00e62023 sw x14, 0(x12) x14:1c00bac1 x12:1c00b914 PA:1c00b914 +76573977ns 1412489 1c003ac2 00b78023 sb x11, 0(x15) x11:00000073 x15:1c00bac0 PA:1c00bac0 +76573997ns 1412490 1c003ac6 00008067 jalr x0, x1, 0 x1:1c003af6 +76574037ns 1412492 1c003af6 00140413 addi x8, x8, 1 x8=1c0088f9 x8:1c0088f8 +76574058ns 1412493 1c003af8 ff4515e3 bne x10, x20, -22 x10:00000073 x20:ffffffff +76574138ns 1412497 1c003ae2 00941463 bne x8, x9, 8 x8:1c0088f9 x9:1c0088fe +76574219ns 1412501 1c003aea 00044583 lbu x11, 0(x8) x11=00000074 x8:1c0088f9 PA:1c0088f9 +76574239ns 1412502 1c003aee 01300633 add x12, x0, x19 x12=1c00b914 x19:1c00b914 +76574259ns 1412503 1c003af0 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +76574280ns 1412504 1c003af2 fafff0ef jal x1, -82 x1=1c003af6 +76574320ns 1412506 1c003aa0 00862783 lw x15, 8(x12) x15=fffffff7 x12:1c00b914 PA:1c00b91c +76574360ns 1412508 1c003aa2 fff78793 addi x15, x15, -1 x15=fffffff6 x15:fffffff7 +76574381ns 1412509 1c003aa4 00f62423 sw x15, 8(x12) x15:fffffff6 x12:1c00b914 PA:1c00b91c +76574401ns 1412510 1c003aa6 0007d963 bge x15, x0, 18 x15:fffffff6 +76574421ns 1412511 1c003aaa 01862703 lw x14, 24(x12) x14=fffffc00 x12:1c00b914 PA:1c00b92c +76574461ns 1412513 1c003aac 00e7c563 blt x15, x14, 10 x15:fffffff6 x14:fffffc00 +76574482ns 1412514 1c003ab0 00a00793 addi x15, x0, 10 x15=0000000a +76574502ns 1412515 1c003ab2 00f59363 bne x11, x15, 6 x11:00000074 x15:0000000a +76574562ns 1412518 1c003ab8 00062783 lw x15, 0(x12) x15=1c00bac1 x12:1c00b914 PA:1c00b914 +76574583ns 1412519 1c003aba 00b00533 add x10, x0, x11 x10=00000074 x11:00000074 +76574603ns 1412520 1c003abc 00178713 addi x14, x15, 1 x14=1c00bac2 x15:1c00bac1 +76574623ns 1412521 1c003ac0 00e62023 sw x14, 0(x12) x14:1c00bac2 x12:1c00b914 PA:1c00b914 +76574643ns 1412522 1c003ac2 00b78023 sb x11, 0(x15) x11:00000074 x15:1c00bac1 PA:1c00bac1 +76574663ns 1412523 1c003ac6 00008067 jalr x0, x1, 0 x1:1c003af6 +76574704ns 1412525 1c003af6 00140413 addi x8, x8, 1 x8=1c0088fa x8:1c0088f9 +76574724ns 1412526 1c003af8 ff4515e3 bne x10, x20, -22 x10:00000074 x20:ffffffff +76574805ns 1412530 1c003ae2 00941463 bne x8, x9, 8 x8:1c0088fa x9:1c0088fe +76574885ns 1412534 1c003aea 00044583 lbu x11, 0(x8) x11=00000065 x8:1c0088fa PA:1c0088fa +76574906ns 1412535 1c003aee 01300633 add x12, x0, x19 x12=1c00b914 x19:1c00b914 +76574926ns 1412536 1c003af0 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +76574946ns 1412537 1c003af2 fafff0ef jal x1, -82 x1=1c003af6 +76574986ns 1412539 1c003aa0 00862783 lw x15, 8(x12) x15=fffffff6 x12:1c00b914 PA:1c00b91c +76575027ns 1412541 1c003aa2 fff78793 addi x15, x15, -1 x15=fffffff5 x15:fffffff6 +76575047ns 1412542 1c003aa4 00f62423 sw x15, 8(x12) x15:fffffff5 x12:1c00b914 PA:1c00b91c +76575067ns 1412543 1c003aa6 0007d963 bge x15, x0, 18 x15:fffffff5 +76575087ns 1412544 1c003aaa 01862703 lw x14, 24(x12) x14=fffffc00 x12:1c00b914 PA:1c00b92c +76575128ns 1412546 1c003aac 00e7c563 blt x15, x14, 10 x15:fffffff5 x14:fffffc00 +76575148ns 1412547 1c003ab0 00a00793 addi x15, x0, 10 x15=0000000a +76575168ns 1412548 1c003ab2 00f59363 bne x11, x15, 6 x11:00000065 x15:0000000a +76575229ns 1412551 1c003ab8 00062783 lw x15, 0(x12) x15=1c00bac2 x12:1c00b914 PA:1c00b914 +76575249ns 1412552 1c003aba 00b00533 add x10, x0, x11 x10=00000065 x11:00000065 +76575269ns 1412553 1c003abc 00178713 addi x14, x15, 1 x14=1c00bac3 x15:1c00bac2 +76575289ns 1412554 1c003ac0 00e62023 sw x14, 0(x12) x14:1c00bac3 x12:1c00b914 PA:1c00b914 +76575309ns 1412555 1c003ac2 00b78023 sb x11, 0(x15) x11:00000065 x15:1c00bac2 PA:1c00bac2 +76575330ns 1412556 1c003ac6 00008067 jalr x0, x1, 0 x1:1c003af6 +76575370ns 1412558 1c003af6 00140413 addi x8, x8, 1 x8=1c0088fb x8:1c0088fa +76575390ns 1412559 1c003af8 ff4515e3 bne x10, x20, -22 x10:00000065 x20:ffffffff +76575471ns 1412563 1c003ae2 00941463 bne x8, x9, 8 x8:1c0088fb x9:1c0088fe +76575552ns 1412567 1c003aea 00044583 lbu x11, 0(x8) x11=00000072 x8:1c0088fb PA:1c0088fb +76575572ns 1412568 1c003aee 01300633 add x12, x0, x19 x12=1c00b914 x19:1c00b914 +76575592ns 1412569 1c003af0 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +76575612ns 1412570 1c003af2 fafff0ef jal x1, -82 x1=1c003af6 +76575653ns 1412572 1c003aa0 00862783 lw x15, 8(x12) x15=fffffff5 x12:1c00b914 PA:1c00b91c +76575693ns 1412574 1c003aa2 fff78793 addi x15, x15, -1 x15=fffffff4 x15:fffffff5 +76575713ns 1412575 1c003aa4 00f62423 sw x15, 8(x12) x15:fffffff4 x12:1c00b914 PA:1c00b91c +76575733ns 1412576 1c003aa6 0007d963 bge x15, x0, 18 x15:fffffff4 +76575754ns 1412577 1c003aaa 01862703 lw x14, 24(x12) x14=fffffc00 x12:1c00b914 PA:1c00b92c +76575794ns 1412579 1c003aac 00e7c563 blt x15, x14, 10 x15:fffffff4 x14:fffffc00 +76575814ns 1412580 1c003ab0 00a00793 addi x15, x0, 10 x15=0000000a +76575834ns 1412581 1c003ab2 00f59363 bne x11, x15, 6 x11:00000072 x15:0000000a +76575895ns 1412584 1c003ab8 00062783 lw x15, 0(x12) x15=1c00bac3 x12:1c00b914 PA:1c00b914 +76575915ns 1412585 1c003aba 00b00533 add x10, x0, x11 x10=00000072 x11:00000072 +76575935ns 1412586 1c003abc 00178713 addi x14, x15, 1 x14=1c00bac4 x15:1c00bac3 +76575956ns 1412587 1c003ac0 00e62023 sw x14, 0(x12) x14:1c00bac4 x12:1c00b914 PA:1c00b914 +76575976ns 1412588 1c003ac2 00b78023 sb x11, 0(x15) x11:00000072 x15:1c00bac3 PA:1c00bac3 +76575996ns 1412589 1c003ac6 00008067 jalr x0, x1, 0 x1:1c003af6 +76576036ns 1412591 1c003af6 00140413 addi x8, x8, 1 x8=1c0088fc x8:1c0088fb +76576057ns 1412592 1c003af8 ff4515e3 bne x10, x20, -22 x10:00000072 x20:ffffffff +76576137ns 1412596 1c003ae2 00941463 bne x8, x9, 8 x8:1c0088fc x9:1c0088fe +76576218ns 1412600 1c003aea 00044583 lbu x11, 0(x8) x11=0000003a x8:1c0088fc PA:1c0088fc +76576238ns 1412601 1c003aee 01300633 add x12, x0, x19 x12=1c00b914 x19:1c00b914 +76576258ns 1412602 1c003af0 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +76576279ns 1412603 1c003af2 fafff0ef jal x1, -82 x1=1c003af6 +76576319ns 1412605 1c003aa0 00862783 lw x15, 8(x12) x15=fffffff4 x12:1c00b914 PA:1c00b91c +76576359ns 1412607 1c003aa2 fff78793 addi x15, x15, -1 x15=fffffff3 x15:fffffff4 +76576380ns 1412608 1c003aa4 00f62423 sw x15, 8(x12) x15:fffffff3 x12:1c00b914 PA:1c00b91c +76576400ns 1412609 1c003aa6 0007d963 bge x15, x0, 18 x15:fffffff3 +76576420ns 1412610 1c003aaa 01862703 lw x14, 24(x12) x14=fffffc00 x12:1c00b914 PA:1c00b92c +76576460ns 1412612 1c003aac 00e7c563 blt x15, x14, 10 x15:fffffff3 x14:fffffc00 +76576481ns 1412613 1c003ab0 00a00793 addi x15, x0, 10 x15=0000000a +76576501ns 1412614 1c003ab2 00f59363 bne x11, x15, 6 x11:0000003a x15:0000000a +76576561ns 1412617 1c003ab8 00062783 lw x15, 0(x12) x15=1c00bac4 x12:1c00b914 PA:1c00b914 +76576582ns 1412618 1c003aba 00b00533 add x10, x0, x11 x10=0000003a x11:0000003a +76576602ns 1412619 1c003abc 00178713 addi x14, x15, 1 x14=1c00bac5 x15:1c00bac4 +76576622ns 1412620 1c003ac0 00e62023 sw x14, 0(x12) x14:1c00bac5 x12:1c00b914 PA:1c00b914 +76576642ns 1412621 1c003ac2 00b78023 sb x11, 0(x15) x11:0000003a x15:1c00bac4 PA:1c00bac4 +76576662ns 1412622 1c003ac6 00008067 jalr x0, x1, 0 x1:1c003af6 +76576703ns 1412624 1c003af6 00140413 addi x8, x8, 1 x8=1c0088fd x8:1c0088fc +76576723ns 1412625 1c003af8 ff4515e3 bne x10, x20, -22 x10:0000003a x20:ffffffff +76576804ns 1412629 1c003ae2 00941463 bne x8, x9, 8 x8:1c0088fd x9:1c0088fe +76576884ns 1412633 1c003aea 00044583 lbu x11, 0(x8) x11=00000020 x8:1c0088fd PA:1c0088fd +76576905ns 1412634 1c003aee 01300633 add x12, x0, x19 x12=1c00b914 x19:1c00b914 +76576925ns 1412635 1c003af0 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +76576945ns 1412636 1c003af2 fafff0ef jal x1, -82 x1=1c003af6 +76576985ns 1412638 1c003aa0 00862783 lw x15, 8(x12) x15=fffffff3 x12:1c00b914 PA:1c00b91c +76577026ns 1412640 1c003aa2 fff78793 addi x15, x15, -1 x15=fffffff2 x15:fffffff3 +76577046ns 1412641 1c003aa4 00f62423 sw x15, 8(x12) x15:fffffff2 x12:1c00b914 PA:1c00b91c +76577066ns 1412642 1c003aa6 0007d963 bge x15, x0, 18 x15:fffffff2 +76577086ns 1412643 1c003aaa 01862703 lw x14, 24(x12) x14=fffffc00 x12:1c00b914 PA:1c00b92c +76577127ns 1412645 1c003aac 00e7c563 blt x15, x14, 10 x15:fffffff2 x14:fffffc00 +76577147ns 1412646 1c003ab0 00a00793 addi x15, x0, 10 x15=0000000a +76577167ns 1412647 1c003ab2 00f59363 bne x11, x15, 6 x11:00000020 x15:0000000a +76577228ns 1412650 1c003ab8 00062783 lw x15, 0(x12) x15=1c00bac5 x12:1c00b914 PA:1c00b914 +76577248ns 1412651 1c003aba 00b00533 add x10, x0, x11 x10=00000020 x11:00000020 +76577268ns 1412652 1c003abc 00178713 addi x14, x15, 1 x14=1c00bac6 x15:1c00bac5 +76577288ns 1412653 1c003ac0 00e62023 sw x14, 0(x12) x14:1c00bac6 x12:1c00b914 PA:1c00b914 +76577308ns 1412654 1c003ac2 00b78023 sb x11, 0(x15) x11:00000020 x15:1c00bac5 PA:1c00bac5 +76577329ns 1412655 1c003ac6 00008067 jalr x0, x1, 0 x1:1c003af6 +76577369ns 1412657 1c003af6 00140413 addi x8, x8, 1 x8=1c0088fe x8:1c0088fd +76577389ns 1412658 1c003af8 ff4515e3 bne x10, x20, -22 x10:00000020 x20:ffffffff +76577470ns 1412662 1c003ae2 00941463 bne x8, x9, 8 x8:1c0088fe x9:1c0088fe +76577490ns 1412663 1c003ae6 00000513 addi x10, x0, 0 x10=00000000 +76577510ns 1412664 1c003ae8 0140006f jal x0, 20 +76577551ns 1412666 1c003afc 01c12083 lw x1, 28(x2) x1=1c003ba6 x2:1c009aa0 PA:1c009abc +76577571ns 1412667 1c003afe 01812403 lw x8, 24(x2) x8=1c0088fe x2:1c009aa0 PA:1c009ab8 +76577591ns 1412668 1c003b00 01412483 lw x9, 20(x2) x9=1c00b914 x2:1c009aa0 PA:1c009ab4 +76577611ns 1412669 1c003b02 01012903 lw x18, 16(x2) x18=1c0088f0 x2:1c009aa0 PA:1c009ab0 +76577631ns 1412670 1c003b04 00c12983 lw x19, 12(x2) x19=1c009e10 x2:1c009aa0 PA:1c009aac +76577652ns 1412671 1c003b06 00812a03 lw x20, 8(x2) x20=1c00918c x2:1c009aa0 PA:1c009aa8 +76577672ns 1412672 1c003b08 02010113 addi x2, x2, 32 x2=1c009ac0 x2:1c009aa0 +76577692ns 1412673 1c003b0a 00008067 jalr x0, x1, 0 x1:1c003ba6 +76577732ns 1412675 1c003ba6 fff00793 addi x15, x0, -1 x15=ffffffff +76577753ns 1412676 1c003ba8 1ef50563 beq x10, x15, 490 x10:00000000 x15:ffffffff +76577773ns 1412677 1c003bac 02412783 lw x15, 36(x2) x15=00000000 x2:1c009ac0 PA:1c009ae4 +76577813ns 1412679 1c003bae 01b787b3 add x15, x15, x27 x15=0000000e x15:00000000 x27:0000000e +76577833ns 1412680 1c003bb0 02f12223 sw x15, 36(x2) x15:0000000e x2:1c009ac0 PA:1c009ae4 +76577854ns 1412681 1c003bb2 00044783 lbu x15, 0(x8) x15=00000025 x8:1c0088fe PA:1c0088fe +76577894ns 1412683 1c003bb6 1c078e63 beq x15, x0, 476 x15:00000025 +76577914ns 1412684 1c003bba fff00793 addi x15, x0, -1 x15=ffffffff +76577934ns 1412685 1c003bbc 00140913 addi x18, x8, 1 x18=1c0088ff x8:1c0088fe +76577955ns 1412686 1c003bc0 00012823 sw x0, 16(x2) x2:1c009ac0 PA:1c009ad0 +76577975ns 1412687 1c003bc2 00012e23 sw x0, 28(x2) x2:1c009ac0 PA:1c009adc +76577995ns 1412688 1c003bc4 00f12a23 sw x15, 20(x2) x15:ffffffff x2:1c009ac0 PA:1c009ad4 +76578015ns 1412689 1c003bc6 00012c23 sw x0, 24(x2) x2:1c009ac0 PA:1c009ad8 +76578035ns 1412690 1c003bc8 040109a3 sb x0, 83(x2) x2:1c009ac0 PA:1c009b13 +76578056ns 1412691 1c003bcc 06012423 sw x0, 104(x2) x2:1c009ac0 PA:1c009b28 +76578076ns 1412692 1c003bce 00100d93 addi x27, x0, 1 x27=00000001 +76578096ns 1412693 1c003bd0 00094583 lbu x11, 0(x18) x11=00000064 x18:1c0088ff PA:1c0088ff +76578116ns 1412694 1c003bd4 00500613 addi x12, x0, 5 x12=00000005 +76578136ns 1412695 1c003bd6 9e0b0513 addi x10, x22, -1568 x10=1c0089e0 x22:1c009000 +76578156ns 1412696 1c003bda 4c1000ef jal x1, 3264 x1=1c003bde +76578217ns 1412699 1c00489a 0ff5f593 andi x11, x11, 255 x11=00000064 x11:00000064 +76578237ns 1412700 1c00489e 00a60633 add x12, x12, x10 x12=1c0089e5 x12:00000005 x10:1c0089e0 +76578257ns 1412701 1c0048a0 00c51463 bne x10, x12, 8 x10:1c0089e0 x12:1c0089e5 +76578318ns 1412704 1c0048a8 00054783 lbu x15, 0(x10) x15=00000023 x10:1c0089e0 PA:1c0089e0 +76578358ns 1412706 1c0048ac feb78de3 beq x15, x11, -6 x15:00000023 x11:00000064 +76578379ns 1412707 1c0048b0 00150513 addi x10, x10, 1 x10=1c0089e1 x10:1c0089e0 +76578399ns 1412708 1c0048b2 fefff06f jal x0, -18 +76578439ns 1412710 1c0048a0 00c51463 bne x10, x12, 8 x10:1c0089e1 x12:1c0089e5 +76578500ns 1412713 1c0048a8 00054783 lbu x15, 0(x10) x15=0000002d x10:1c0089e1 PA:1c0089e1 +76578540ns 1412715 1c0048ac feb78de3 beq x15, x11, -6 x15:0000002d x11:00000064 +76578560ns 1412716 1c0048b0 00150513 addi x10, x10, 1 x10=1c0089e2 x10:1c0089e1 +76578581ns 1412717 1c0048b2 fefff06f jal x0, -18 +76578621ns 1412719 1c0048a0 00c51463 bne x10, x12, 8 x10:1c0089e2 x12:1c0089e5 +76578681ns 1412722 1c0048a8 00054783 lbu x15, 0(x10) x15=00000030 x10:1c0089e2 PA:1c0089e2 +76578722ns 1412724 1c0048ac feb78de3 beq x15, x11, -6 x15:00000030 x11:00000064 +76578742ns 1412725 1c0048b0 00150513 addi x10, x10, 1 x10=1c0089e3 x10:1c0089e2 +76578762ns 1412726 1c0048b2 fefff06f jal x0, -18 +76578803ns 1412728 1c0048a0 00c51463 bne x10, x12, 8 x10:1c0089e3 x12:1c0089e5 +76578863ns 1412731 1c0048a8 00054783 lbu x15, 0(x10) x15=0000002b x10:1c0089e3 PA:1c0089e3 +76578904ns 1412733 1c0048ac feb78de3 beq x15, x11, -6 x15:0000002b x11:00000064 +76578924ns 1412734 1c0048b0 00150513 addi x10, x10, 1 x10=1c0089e4 x10:1c0089e3 +76578944ns 1412735 1c0048b2 fefff06f jal x0, -18 +76578984ns 1412737 1c0048a0 00c51463 bne x10, x12, 8 x10:1c0089e4 x12:1c0089e5 +76579045ns 1412740 1c0048a8 00054783 lbu x15, 0(x10) x15=00000020 x10:1c0089e4 PA:1c0089e4 +76579085ns 1412742 1c0048ac feb78de3 beq x15, x11, -6 x15:00000020 x11:00000064 +76579106ns 1412743 1c0048b0 00150513 addi x10, x10, 1 x10=1c0089e5 x10:1c0089e4 +76579126ns 1412744 1c0048b2 fefff06f jal x0, -18 +76579166ns 1412746 1c0048a0 00c51463 bne x10, x12, 8 x10:1c0089e5 x12:1c0089e5 +76579186ns 1412747 1c0048a4 00000513 addi x10, x0, 0 x10=00000000 +76579206ns 1412748 1c0048a6 00008067 jalr x0, x1, 0 x1:1c003bde +76579247ns 1412750 1c003bde 01012783 lw x15, 16(x2) x15=00000000 x2:1c009ac0 PA:1c009ad0 +76579267ns 1412751 1c003be0 00190413 addi x8, x18, 1 x8=1c008900 x18:1c0088ff +76579287ns 1412752 1c003be4 08051e63 bne x10, x0, 156 x10:00000000 +76579307ns 1412753 1c003be6 0107f713 andi x14, x15, 16 x14=00000000 x15:00000000 +76579328ns 1412754 1c003bea 00070563 beq x14, x0, 10 x14:00000000 +76579388ns 1412757 1c003bf4 0087f713 andi x14, x15, 8 x14=00000000 x15:00000000 +76579408ns 1412758 1c003bf8 00070563 beq x14, x0, 10 x14:00000000 +76579489ns 1412762 1c003c02 00094683 lbu x13, 0(x18) x13=00000064 x18:1c0088ff PA:1c0088ff +76579509ns 1412763 1c003c06 02a00713 addi x14, x0, 42 x14=0000002a +76579530ns 1412764 1c003c0a 08e68463 beq x13, x14, 136 x13:00000064 x14:0000002a +76579550ns 1412765 1c003c0e 01c12783 lw x15, 28(x2) x15=00000000 x2:1c009ac0 PA:1c009adc +76579570ns 1412766 1c003c10 01200433 add x8, x0, x18 x8=1c0088ff x18:1c0088ff +76579590ns 1412767 1c003c12 00000693 addi x13, x0, 0 x13=00000000 +76579610ns 1412768 1c003c14 00900613 addi x12, x0, 9 x12=00000009 +76579631ns 1412769 1c003c16 00a00513 addi x10, x0, 10 x10=0000000a +76579651ns 1412770 1c003c18 00044703 lbu x14, 0(x8) x14=00000064 x8:1c0088ff PA:1c0088ff +76579671ns 1412771 1c003c1c 00140593 addi x11, x8, 1 x11=1c008900 x8:1c0088ff +76579691ns 1412772 1c003c20 fd070713 addi x14, x14, -48 x14=00000034 x14:00000064 +76579711ns 1412773 1c003c24 0ae67c63 bgeu x12, x14, 184 x12:00000009 x14:00000034 +76579731ns 1412774 1c003c28 06068d63 beq x13, x0, 122 x13:00000000 +76579812ns 1412778 1c003ca2 00044703 lbu x14, 0(x8) x14=00000064 x8:1c0088ff PA:1c0088ff +76579832ns 1412779 1c003ca6 02e00793 addi x15, x0, 46 x15=0000002e +76579853ns 1412780 1c003caa 06f71063 bne x14, x15, 96 x14:00000064 x15:0000002e +76579933ns 1412784 1c003d0a 00044583 lbu x11, 0(x8) x11=00000064 x8:1c0088ff PA:1c0088ff +76579954ns 1412785 1c003d0e 00300613 addi x12, x0, 3 x12=00000003 +76579974ns 1412786 1c003d10 9e8b8513 addi x10, x23, -1560 x10=1c0089e8 x23:1c009000 +76579994ns 1412787 1c003d14 387000ef jal x1, 2950 x1=1c003d18 +76580055ns 1412790 1c00489a 0ff5f593 andi x11, x11, 255 x11=00000064 x11:00000064 +76580075ns 1412791 1c00489e 00a60633 add x12, x12, x10 x12=1c0089eb x12:00000003 x10:1c0089e8 +76580095ns 1412792 1c0048a0 00c51463 bne x10, x12, 8 x10:1c0089e8 x12:1c0089eb +76580155ns 1412795 1c0048a8 00054783 lbu x15, 0(x10) x15=00000068 x10:1c0089e8 PA:1c0089e8 +76580196ns 1412797 1c0048ac feb78de3 beq x15, x11, -6 x15:00000068 x11:00000064 +76580216ns 1412798 1c0048b0 00150513 addi x10, x10, 1 x10=1c0089e9 x10:1c0089e8 +76580236ns 1412799 1c0048b2 fefff06f jal x0, -18 +76580277ns 1412801 1c0048a0 00c51463 bne x10, x12, 8 x10:1c0089e9 x12:1c0089eb +76580337ns 1412804 1c0048a8 00054783 lbu x15, 0(x10) x15=0000006c x10:1c0089e9 PA:1c0089e9 +76580378ns 1412806 1c0048ac feb78de3 beq x15, x11, -6 x15:0000006c x11:00000064 +76580398ns 1412807 1c0048b0 00150513 addi x10, x10, 1 x10=1c0089ea x10:1c0089e9 +76580418ns 1412808 1c0048b2 fefff06f jal x0, -18 +76580458ns 1412810 1c0048a0 00c51463 bne x10, x12, 8 x10:1c0089ea x12:1c0089eb +76580519ns 1412813 1c0048a8 00054783 lbu x15, 0(x10) x15=0000004c x10:1c0089ea PA:1c0089ea +76580559ns 1412815 1c0048ac feb78de3 beq x15, x11, -6 x15:0000004c x11:00000064 +76580580ns 1412816 1c0048b0 00150513 addi x10, x10, 1 x10=1c0089eb x10:1c0089ea +76580600ns 1412817 1c0048b2 fefff06f jal x0, -18 +76580640ns 1412819 1c0048a0 00c51463 bne x10, x12, 8 x10:1c0089eb x12:1c0089eb +76580660ns 1412820 1c0048a4 00000513 addi x10, x0, 0 x10=00000000 +76580680ns 1412821 1c0048a6 00008067 jalr x0, x1, 0 x1:1c003d18 +76580721ns 1412823 1c003d18 00050c63 beq x10, x0, 24 x10:00000000 +76580781ns 1412826 1c003d30 00044583 lbu x11, 0(x8) x11=00000064 x8:1c0088ff PA:1c0088ff +76580802ns 1412827 1c003d34 00600613 addi x12, x0, 6 x12=00000006 +76580822ns 1412828 1c003d36 9ecd0513 addi x10, x26, -1556 x10=1c0089ec x26:1c009000 +76580842ns 1412829 1c003d3a 00140913 addi x18, x8, 1 x18=1c008900 x8:1c0088ff +76580862ns 1412830 1c003d3e 02b10423 sb x11, 40(x2) x11:00000064 x2:1c009ac0 PA:1c009ae8 +76580882ns 1412831 1c003d42 359000ef jal x1, 2904 x1=1c003d46 +76580943ns 1412834 1c00489a 0ff5f593 andi x11, x11, 255 x11=00000064 x11:00000064 +76580963ns 1412835 1c00489e 00a60633 add x12, x12, x10 x12=1c0089f2 x12:00000006 x10:1c0089ec +76580983ns 1412836 1c0048a0 00c51463 bne x10, x12, 8 x10:1c0089ec x12:1c0089f2 +76581044ns 1412839 1c0048a8 00054783 lbu x15, 0(x10) x15=00000065 x10:1c0089ec PA:1c0089ec +76581084ns 1412841 1c0048ac feb78de3 beq x15, x11, -6 x15:00000065 x11:00000064 +76581105ns 1412842 1c0048b0 00150513 addi x10, x10, 1 x10=1c0089ed x10:1c0089ec +76581125ns 1412843 1c0048b2 fefff06f jal x0, -18 +76581165ns 1412845 1c0048a0 00c51463 bne x10, x12, 8 x10:1c0089ed x12:1c0089f2 +76581226ns 1412848 1c0048a8 00054783 lbu x15, 0(x10) x15=00000066 x10:1c0089ed PA:1c0089ed +76581266ns 1412850 1c0048ac feb78de3 beq x15, x11, -6 x15:00000066 x11:00000064 +76581286ns 1412851 1c0048b0 00150513 addi x10, x10, 1 x10=1c0089ee x10:1c0089ed +76581306ns 1412852 1c0048b2 fefff06f jal x0, -18 +76581347ns 1412854 1c0048a0 00c51463 bne x10, x12, 8 x10:1c0089ee x12:1c0089f2 +76581407ns 1412857 1c0048a8 00054783 lbu x15, 0(x10) x15=00000067 x10:1c0089ee PA:1c0089ee +76581448ns 1412859 1c0048ac feb78de3 beq x15, x11, -6 x15:00000067 x11:00000064 +76581468ns 1412860 1c0048b0 00150513 addi x10, x10, 1 x10=1c0089ef x10:1c0089ee +76581488ns 1412861 1c0048b2 fefff06f jal x0, -18 +76581529ns 1412863 1c0048a0 00c51463 bne x10, x12, 8 x10:1c0089ef x12:1c0089f2 +76581589ns 1412866 1c0048a8 00054783 lbu x15, 0(x10) x15=00000045 x10:1c0089ef PA:1c0089ef +76581630ns 1412868 1c0048ac feb78de3 beq x15, x11, -6 x15:00000045 x11:00000064 +76581650ns 1412869 1c0048b0 00150513 addi x10, x10, 1 x10=1c0089f0 x10:1c0089ef +76581670ns 1412870 1c0048b2 fefff06f jal x0, -18 +76581710ns 1412872 1c0048a0 00c51463 bne x10, x12, 8 x10:1c0089f0 x12:1c0089f2 +76581771ns 1412875 1c0048a8 00054783 lbu x15, 0(x10) x15=00000046 x10:1c0089f0 PA:1c0089f0 +76581811ns 1412877 1c0048ac feb78de3 beq x15, x11, -6 x15:00000046 x11:00000064 +76581831ns 1412878 1c0048b0 00150513 addi x10, x10, 1 x10=1c0089f1 x10:1c0089f0 +76581852ns 1412879 1c0048b2 fefff06f jal x0, -18 +76581892ns 1412881 1c0048a0 00c51463 bne x10, x12, 8 x10:1c0089f1 x12:1c0089f2 +76581953ns 1412884 1c0048a8 00054783 lbu x15, 0(x10) x15=00000047 x10:1c0089f1 PA:1c0089f1 +76581993ns 1412886 1c0048ac feb78de3 beq x15, x11, -6 x15:00000047 x11:00000064 +76582013ns 1412887 1c0048b0 00150513 addi x10, x10, 1 x10=1c0089f2 x10:1c0089f1 +76582033ns 1412888 1c0048b2 fefff06f jal x0, -18 +76582074ns 1412890 1c0048a0 00c51463 bne x10, x12, 8 x10:1c0089f2 x12:1c0089f2 +76582094ns 1412891 1c0048a4 00000513 addi x10, x0, 0 x10=00000000 +76582114ns 1412892 1c0048a6 00008067 jalr x0, x1, 0 x1:1c003d46 +76582155ns 1412894 1c003d46 04050e63 beq x10, x0, 92 x10:00000000 +76582215ns 1412897 1c003da2 00c10713 addi x14, x2, 12 x14=1c009acc x2:1c009ac0 +76582235ns 1412898 1c003da4 ac8c0693 addi x13, x24, -1336 x13=1c003ac8 x24:1c004000 +76582255ns 1412899 1c003da8 00900633 add x12, x0, x9 x12=1c00b914 x9:1c00b914 +76582276ns 1412900 1c003daa 01010593 addi x11, x2, 16 x11=1c009ad0 x2:1c009ac0 +76582296ns 1412901 1c003dac 01300533 add x10, x0, x19 x10=1c009e10 x19:1c009e10 +76582316ns 1412902 1c003dae 413000ef jal x1, 3090 x1=1c003db2 +76582356ns 1412904 1c0049c0 fd010113 addi x2, x2, -48 x2=1c009a90 x2:1c009ac0 +76582377ns 1412905 1c0049c2 02812423 sw x8, 40(x2) x8:1c0088ff x2:1c009a90 PA:1c009ab8 +76582397ns 1412906 1c0049c4 02912223 sw x9, 36(x2) x9:1c00b914 x2:1c009a90 PA:1c009ab4 +76582417ns 1412907 1c0049c6 03212023 sw x18, 32(x2) x18:1c008900 x2:1c009a90 PA:1c009ab0 +76582437ns 1412908 1c0049c8 01312e23 sw x19, 28(x2) x19:1c009e10 x2:1c009a90 PA:1c009aac +76582457ns 1412909 1c0049ca 02112623 sw x1, 44(x2) x1:1c003db2 x2:1c009a90 PA:1c009abc +76582478ns 1412910 1c0049cc 01412c23 sw x20, 24(x2) x20:1c00918c x2:1c009a90 PA:1c009aa8 +76582498ns 1412911 1c0049ce 01512a23 sw x21, 20(x2) x21:00000000 x2:1c009a90 PA:1c009aa4 +76582518ns 1412912 1c0049d0 01612823 sw x22, 16(x2) x22:1c009000 x2:1c009a90 PA:1c009aa0 +76582538ns 1412913 1c0049d2 0185c883 lbu x17, 24(x11) x17=00000064 x11:1c009ad0 PA:1c009ae8 +76582558ns 1412914 1c0049d6 07800793 addi x15, x0, 120 x15=00000078 +76582579ns 1412915 1c0049da 00a004b3 add x9, x0, x10 x9=1c009e10 x10:1c009e10 +76582599ns 1412916 1c0049dc 00b00433 add x8, x0, x11 x8=1c009ad0 x11:1c009ad0 +76582619ns 1412917 1c0049de 00c00933 add x18, x0, x12 x18=1c00b914 x12:1c00b914 +76582639ns 1412918 1c0049e0 00d009b3 add x19, x0, x13 x19=1c003ac8 x13:1c003ac8 +76582659ns 1412919 1c0049e2 0117ee63 bltu x15, x17, 28 x15:00000078 x17:00000064 +76582679ns 1412920 1c0049e6 06200793 addi x15, x0, 98 x15=00000062 +76582700ns 1412921 1c0049ea 04358693 addi x13, x11, 67 x13=1c009b13 x11:1c009ad0 +76582720ns 1412922 1c0049ee 0117ed63 bltu x15, x17, 26 x15:00000062 x17:00000064 +76582780ns 1412925 1c004a08 f9d88793 addi x15, x17, -99 x15=00000001 x17:00000064 +76582801ns 1412926 1c004a0c 0ff7f793 andi x15, x15, 255 x15=00000001 x15:00000001 +76582821ns 1412927 1c004a10 01500613 addi x12, x0, 21 x12=00000015 +76582841ns 1412928 1c004a12 fef666e3 bltu x12, x15, -20 x12:00000015 x15:00000001 +76582861ns 1412929 1c004a16 1c009637 lui x12, 0x1c009000 x12=1c009000 +76582881ns 1412930 1c004a1a 00279793 slli x15, x15, 0x2 x15=00000004 x15:00000001 +76582902ns 1412931 1c004a1c a7c60613 addi x12, x12, -1412 x12=1c008a7c x12:1c009000 +76582922ns 1412932 1c004a20 00c787b3 add x15, x15, x12 x15=1c008a80 x15:00000004 x12:1c008a7c +76582942ns 1412933 1c004a22 0007a783 lw x15, 0(x15) x15=1c004a3c x15:1c008a80 PA:1c008a80 +76583003ns 1412936 1c004a24 00078067 jalr x0, x15, 0 x15:1c004a3c +76583043ns 1412938 1c004a3c 0005a783 lw x15, 0(x11) x15=00000000 x11:1c009ad0 PA:1c009ad0 +76583063ns 1412939 1c004a3e 00072503 lw x10, 0(x14) x10=1c009ba4 x14:1c009acc PA:1c009acc +76583083ns 1412940 1c004a40 0807f613 andi x12, x15, 128 x12=00000000 x15:00000000 +76583104ns 1412941 1c004a44 00450593 addi x11, x10, 4 x11=1c009ba8 x10:1c009ba4 +76583124ns 1412942 1c004a48 02060163 beq x12, x0, 34 x12:00000000 +76583204ns 1412946 1c004a6a 0407f613 andi x12, x15, 64 x12=00000000 x15:00000000 +76583225ns 1412947 1c004a6e 00052783 lw x15, 0(x10) x15=00000000 x10:1c009ba4 PA:1c009ba4 +76583245ns 1412948 1c004a70 00b72023 sw x11, 0(x14) x11:1c009ba8 x14:1c009acc PA:1c009acc +76583265ns 1412949 1c004a72 fc060ee3 beq x12, x0, -36 x12:00000000 +76583346ns 1412953 1c004a4e 1c009837 lui x16, 0x1c009000 x16=1c009000 +76583366ns 1412954 1c004a52 0007d863 bge x15, x0, 16 x15:00000000 +76583447ns 1412958 1c004a62 a5480813 addi x16, x16, -1452 x16=1c008a54 x16:1c009000 +76583467ns 1412959 1c004a66 00a00713 addi x14, x0, 10 x14=0000000a +76583487ns 1412960 1c004a68 0480006f jal x0, 72 +76583528ns 1412962 1c004ab0 00442603 lw x12, 4(x8) x12=ffffffff x8:1c009ad0 PA:1c009ad4 +76583568ns 1412964 1c004ab2 00c42423 sw x12, 8(x8) x12:ffffffff x8:1c009ad0 PA:1c009ad8 +76583588ns 1412965 1c004ab4 00064563 blt x12, x0, 10 x12:ffffffff +76583649ns 1412968 1c004abe 00079363 bne x15, x0, 6 x15:00000000 +76583669ns 1412969 1c004ac0 00d00ab3 add x21, x0, x13 x21=1c009b13 x13:1c009b13 +76583689ns 1412970 1c004ac2 00060f63 beq x12, x0, 30 x12:ffffffff +76583709ns 1412971 1c004ac4 00d00ab3 add x21, x0, x13 x21=1c009b13 x13:1c009b13 +76583729ns 1412972 1c004ac6 02e7f633 remu x12, x15, x14 x12=00000000 x15:00000000 x14:0000000a +76584355ns 1413003 1c004aca fffa8a93 addi x21, x21, -1 x21=1c009b12 x21:1c009b13 +76584376ns 1413004 1c004acc 01060633 add x12, x12, x16 x12=1c008a54 x12:00000000 x16:1c008a54 +76584396ns 1413005 1c004ace 00064603 lbu x12, 0(x12) x12=00000030 x12:1c008a54 PA:1c008a54 +76584436ns 1413007 1c004ad2 00ca8023 sb x12, 0(x21) x12:00000030 x21:1c009b12 PA:1c009b12 +76584456ns 1413008 1c004ad6 00f00633 add x12, x0, x15 x12=00000000 x15:00000000 +76584477ns 1413009 1c004ad8 02e7d7b3 divu x15, x15, x14 x15=00000000 x15:00000000 x14:0000000a +76585103ns 1413040 1c004adc fee675e3 bgeu x12, x14, -22 x12:00000000 x14:0000000a +76585123ns 1413041 1c004ae0 00800793 addi x15, x0, 8 x15=00000008 +76585143ns 1413042 1c004ae2 00f71e63 bne x14, x15, 28 x14:0000000a x15:00000008 +76585224ns 1413046 1c004afe 415686b3 sub x13, x13, x21 x13=00000001 x13:1c009b13 x21:1c009b12 +76585244ns 1413047 1c004b02 00d42823 sw x13, 16(x8) x13:00000001 x8:1c009ad0 PA:1c009ae0 +76585264ns 1413048 1c004b04 01300733 add x14, x0, x19 x14=1c003ac8 x19:1c003ac8 +76585284ns 1413049 1c004b06 012006b3 add x13, x0, x18 x13=1c00b914 x18:1c00b914 +76585304ns 1413050 1c004b08 00c10613 addi x12, x2, 12 x12=1c009a9c x2:1c009a90 +76585325ns 1413051 1c004b0a 008005b3 add x11, x0, x8 x11=1c009ad0 x8:1c009ad0 +76585345ns 1413052 1c004b0c 00900533 add x10, x0, x9 x10=1c009e10 x9:1c009e10 +76585365ns 1413053 1c004b0e da7ff0ef jal x1, -602 x1=1c004b12 +76585405ns 1413055 1c0048b4 fd010113 addi x2, x2, -48 x2=1c009a60 x2:1c009a90 +76585426ns 1413056 1c0048b6 01412c23 sw x20, 24(x2) x20:1c00918c x2:1c009a60 PA:1c009a78 +76585446ns 1413057 1c0048b8 0105a783 lw x15, 16(x11) x15=00000001 x11:1c009ad0 PA:1c009ae0 +76585466ns 1413058 1c0048ba 00e00a33 add x20, x0, x14 x20=1c003ac8 x14:1c003ac8 +76585486ns 1413059 1c0048bc 0085a703 lw x14, 8(x11) x14=ffffffff x11:1c009ad0 PA:1c009ad8 +76585506ns 1413060 1c0048be 02812423 sw x8, 40(x2) x8:1c009ad0 x2:1c009a60 PA:1c009a88 +76585527ns 1413061 1c0048c0 02912223 sw x9, 36(x2) x9:1c009e10 x2:1c009a60 PA:1c009a84 +76585547ns 1413062 1c0048c2 01312e23 sw x19, 28(x2) x19:1c003ac8 x2:1c009a60 PA:1c009a7c +76585567ns 1413063 1c0048c4 01512a23 sw x21, 20(x2) x21:1c009b12 x2:1c009a60 PA:1c009a74 +76585587ns 1413064 1c0048c6 02112623 sw x1, 44(x2) x1:1c004b12 x2:1c009a60 PA:1c009a8c +76585607ns 1413065 1c0048c8 03212023 sw x18, 32(x2) x18:1c00b914 x2:1c009a60 PA:1c009a80 +76585628ns 1413066 1c0048ca 01612823 sw x22, 16(x2) x22:1c009000 x2:1c009a60 PA:1c009a70 +76585648ns 1413067 1c0048cc 01712623 sw x23, 12(x2) x23:1c009000 x2:1c009a60 PA:1c009a6c +76585668ns 1413068 1c0048ce 00a009b3 add x19, x0, x10 x19=1c009e10 x10:1c009e10 +76585688ns 1413069 1c0048d0 00b00433 add x8, x0, x11 x8=1c009ad0 x11:1c009ad0 +76585708ns 1413070 1c0048d2 00c004b3 add x9, x0, x12 x9=1c009a9c x12:1c009a9c +76585728ns 1413071 1c0048d4 00d00ab3 add x21, x0, x13 x21=1c00b914 x13:1c00b914 +76585749ns 1413072 1c0048d6 00e7d363 bge x15, x14, 6 x15:00000001 x14:ffffffff +76585809ns 1413075 1c0048dc 00f4a023 sw x15, 0(x9) x15:00000001 x9:1c009a9c PA:1c009a9c +76585829ns 1413076 1c0048de 04344703 lbu x14, 67(x8) x14=00000000 x8:1c009ad0 PA:1c009b13 +76585870ns 1413078 1c0048e2 00070363 beq x14, x0, 6 x14:00000000 +76585930ns 1413081 1c0048e8 00042783 lw x15, 0(x8) x15=00000000 x8:1c009ad0 PA:1c009ad0 +76585971ns 1413083 1c0048ea 0207f793 andi x15, x15, 32 x15=00000000 x15:00000000 +76585991ns 1413084 1c0048ee 00078463 beq x15, x0, 8 x15:00000000 +76586072ns 1413088 1c0048f6 00042903 lw x18, 0(x8) x18=00000000 x8:1c009ad0 PA:1c009ad0 +76586112ns 1413090 1c0048fa 00697913 andi x18, x18, 6 x18=00000000 x18:00000000 +76586132ns 1413091 1c0048fe 00091a63 bne x18, x0, 20 x18:00000000 +76586153ns 1413092 1c004902 01940b13 addi x22, x8, 25 x22=1c009ae9 x8:1c009ad0 +76586173ns 1413093 1c004906 fff00b93 addi x23, x0, -1 x23=ffffffff +76586193ns 1413094 1c004908 00c42783 lw x15, 12(x8) x15=00000000 x8:1c009ad0 PA:1c009adc +76586213ns 1413095 1c00490a 0004a703 lw x14, 0(x9) x14=00000001 x9:1c009a9c PA:1c009a9c +76586253ns 1413097 1c00490c 40e787b3 sub x15, x15, x14 x15=ffffffff x15:00000000 x14:00000001 +76586274ns 1413098 1c00490e 04f94c63 blt x18, x15, 88 x18:00000000 x15:ffffffff +76586294ns 1413099 1c004912 04344783 lbu x15, 67(x8) x15=00000000 x8:1c009ad0 PA:1c009b13 +76586334ns 1413101 1c004916 00f036b3 sltu x13, x0, x15 x13=00000000 x15:00000000 +76586354ns 1413102 1c00491a 00042783 lw x15, 0(x8) x15=00000000 x8:1c009ad0 PA:1c009ad0 +76586395ns 1413104 1c00491c 0207f793 andi x15, x15, 32 x15=00000000 x15:00000000 +76586415ns 1413105 1c004920 06079863 bne x15, x0, 112 x15:00000000 +76586435ns 1413106 1c004922 04340613 addi x12, x8, 67 x12=1c009b13 x8:1c009ad0 +76586455ns 1413107 1c004926 015005b3 add x11, x0, x21 x11=1c00b914 x21:1c00b914 +76586476ns 1413108 1c004928 01300533 add x10, x0, x19 x10=1c009e10 x19:1c009e10 +76586496ns 1413109 1c00492a 000a00e7 jalr x1, x20, 0 x1=1c00492c x20:1c003ac8 +76586536ns 1413111 1c003ac8 fe010113 addi x2, x2, -32 x2=1c009a40 x2:1c009a60 +76586556ns 1413112 1c003aca 00812c23 sw x8, 24(x2) x8:1c009ad0 x2:1c009a40 PA:1c009a58 +76586577ns 1413113 1c003acc 00912a23 sw x9, 20(x2) x9:1c009a9c x2:1c009a40 PA:1c009a54 +76586597ns 1413114 1c003ace 01212823 sw x18, 16(x2) x18:00000000 x2:1c009a40 PA:1c009a50 +76586617ns 1413115 1c003ad0 01312623 sw x19, 12(x2) x19:1c009e10 x2:1c009a40 PA:1c009a4c +76586637ns 1413116 1c003ad2 01412423 sw x20, 8(x2) x20:1c003ac8 x2:1c009a40 PA:1c009a48 +76586657ns 1413117 1c003ad4 00112e23 sw x1, 28(x2) x1:1c00492c x2:1c009a40 PA:1c009a5c +76586678ns 1413118 1c003ad6 00a00933 add x18, x0, x10 x18=1c009e10 x10:1c009e10 +76586698ns 1413119 1c003ad8 00b009b3 add x19, x0, x11 x19=1c00b914 x11:1c00b914 +76586718ns 1413120 1c003ada 00c00433 add x8, x0, x12 x8=1c009b13 x12:1c009b13 +76586738ns 1413121 1c003adc 00d604b3 add x9, x12, x13 x9=1c009b13 x12:1c009b13 x13:00000000 +76586758ns 1413122 1c003ae0 fff00a13 addi x20, x0, -1 x20=ffffffff +76586778ns 1413123 1c003ae2 00941463 bne x8, x9, 8 x8:1c009b13 x9:1c009b13 +76586799ns 1413124 1c003ae6 00000513 addi x10, x0, 0 x10=00000000 +76586819ns 1413125 1c003ae8 0140006f jal x0, 20 +76586859ns 1413127 1c003afc 01c12083 lw x1, 28(x2) x1=1c00492c x2:1c009a40 PA:1c009a5c +76586879ns 1413128 1c003afe 01812403 lw x8, 24(x2) x8=1c009ad0 x2:1c009a40 PA:1c009a58 +76586900ns 1413129 1c003b00 01412483 lw x9, 20(x2) x9=1c009a9c x2:1c009a40 PA:1c009a54 +76586920ns 1413130 1c003b02 01012903 lw x18, 16(x2) x18=00000000 x2:1c009a40 PA:1c009a50 +76586940ns 1413131 1c003b04 00c12983 lw x19, 12(x2) x19=1c009e10 x2:1c009a40 PA:1c009a4c +76586960ns 1413132 1c003b06 00812a03 lw x20, 8(x2) x20=1c003ac8 x2:1c009a40 PA:1c009a48 +76586980ns 1413133 1c003b08 02010113 addi x2, x2, 32 x2=1c009a60 x2:1c009a40 +76587001ns 1413134 1c003b0a 00008067 jalr x0, x1, 0 x1:1c00492c +76587041ns 1413136 1c00492c fff00793 addi x15, x0, -1 x15=ffffffff +76587061ns 1413137 1c00492e 04f50363 beq x10, x15, 70 x10:00000000 x15:ffffffff +76587081ns 1413138 1c004932 00042783 lw x15, 0(x8) x15=00000000 x8:1c009ad0 PA:1c009ad0 +76587102ns 1413139 1c004934 00400613 addi x12, x0, 4 x12=00000004 +76587122ns 1413140 1c004936 0004a703 lw x14, 0(x9) x14=00000001 x9:1c009a9c PA:1c009a9c +76587142ns 1413141 1c004938 0067f793 andi x15, x15, 6 x15=00000000 x15:00000000 +76587162ns 1413142 1c00493a 00c42683 lw x13, 12(x8) x13=00000000 x8:1c009ad0 PA:1c009adc +76587182ns 1413143 1c00493c 00000493 addi x9, x0, 0 x9=00000000 +76587203ns 1413144 1c00493e 00c79763 bne x15, x12, 14 x15:00000000 x12:00000004 +76587263ns 1413147 1c00494c 00842783 lw x15, 8(x8) x15=ffffffff x8:1c009ad0 PA:1c009ad8 +76587283ns 1413148 1c00494e 01042703 lw x14, 16(x8) x14=00000001 x8:1c009ad0 PA:1c009ae0 +76587324ns 1413150 1c004950 00f75463 bge x14, x15, 8 x14:00000001 x15:ffffffff +76587384ns 1413153 1c004958 00000913 addi x18, x0, 0 x18=00000000 +76587404ns 1413154 1c00495a 01a40413 addi x8, x8, 26 x8=1c009aea x8:1c009ad0 +76587425ns 1413155 1c00495c fff00b13 addi x22, x0, -1 x22=ffffffff +76587445ns 1413156 1c00495e 05249863 bne x9, x18, 80 x9:00000000 x18:00000000 +76587465ns 1413157 1c004962 00000513 addi x10, x0, 0 x10=00000000 +76587485ns 1413158 1c004964 0120006f jal x0, 18 +76587526ns 1413160 1c004976 02c12083 lw x1, 44(x2) x1=1c004b12 x2:1c009a60 PA:1c009a8c +76587546ns 1413161 1c004978 02812403 lw x8, 40(x2) x8=1c009ad0 x2:1c009a60 PA:1c009a88 +76587566ns 1413162 1c00497a 02412483 lw x9, 36(x2) x9=1c009e10 x2:1c009a60 PA:1c009a84 +76587586ns 1413163 1c00497c 02012903 lw x18, 32(x2) x18=1c00b914 x2:1c009a60 PA:1c009a80 +76587606ns 1413164 1c00497e 01c12983 lw x19, 28(x2) x19=1c003ac8 x2:1c009a60 PA:1c009a7c +76587627ns 1413165 1c004980 01812a03 lw x20, 24(x2) x20=1c00918c x2:1c009a60 PA:1c009a78 +76587647ns 1413166 1c004982 01412a83 lw x21, 20(x2) x21=1c009b12 x2:1c009a60 PA:1c009a74 +76587667ns 1413167 1c004984 01012b03 lw x22, 16(x2) x22=1c009000 x2:1c009a60 PA:1c009a70 +76587687ns 1413168 1c004986 00c12b83 lw x23, 12(x2) x23=1c009000 x2:1c009a60 PA:1c009a6c +76587707ns 1413169 1c004988 03010113 addi x2, x2, 48 x2=1c009a90 x2:1c009a60 +76587727ns 1413170 1c00498a 00008067 jalr x0, x1, 0 x1:1c004b12 +76587768ns 1413172 1c004b12 fff00a13 addi x20, x0, -1 x20=ffffffff +76587788ns 1413173 1c004b14 0d451a63 bne x10, x20, 212 x10:00000000 x20:ffffffff +76587849ns 1413176 1c004be8 01042683 lw x13, 16(x8) x13=00000001 x8:1c009ad0 PA:1c009ae0 +76587869ns 1413177 1c004bea 01500633 add x12, x0, x21 x12=1c009b12 x21:1c009b12 +76587889ns 1413178 1c004bec 012005b3 add x11, x0, x18 x11=1c00b914 x18:1c00b914 +76587909ns 1413179 1c004bee 00900533 add x10, x0, x9 x10=1c009e10 x9:1c009e10 +76587929ns 1413180 1c004bf0 000980e7 jalr x1, x19, 0 x1=1c004bf2 x19:1c003ac8 +76587970ns 1413182 1c003ac8 fe010113 addi x2, x2, -32 x2=1c009a70 x2:1c009a90 +76587990ns 1413183 1c003aca 00812c23 sw x8, 24(x2) x8:1c009ad0 x2:1c009a70 PA:1c009a88 +76588010ns 1413184 1c003acc 00912a23 sw x9, 20(x2) x9:1c009e10 x2:1c009a70 PA:1c009a84 +76588030ns 1413185 1c003ace 01212823 sw x18, 16(x2) x18:1c00b914 x2:1c009a70 PA:1c009a80 +76588051ns 1413186 1c003ad0 01312623 sw x19, 12(x2) x19:1c003ac8 x2:1c009a70 PA:1c009a7c +76588071ns 1413187 1c003ad2 01412423 sw x20, 8(x2) x20:ffffffff x2:1c009a70 PA:1c009a78 +76588091ns 1413188 1c003ad4 00112e23 sw x1, 28(x2) x1:1c004bf2 x2:1c009a70 PA:1c009a8c +76588111ns 1413189 1c003ad6 00a00933 add x18, x0, x10 x18=1c009e10 x10:1c009e10 +76588131ns 1413190 1c003ad8 00b009b3 add x19, x0, x11 x19=1c00b914 x11:1c00b914 +76588152ns 1413191 1c003ada 00c00433 add x8, x0, x12 x8=1c009b12 x12:1c009b12 +76588172ns 1413192 1c003adc 00d604b3 add x9, x12, x13 x9=1c009b13 x12:1c009b12 x13:00000001 +76588192ns 1413193 1c003ae0 fff00a13 addi x20, x0, -1 x20=ffffffff +76588212ns 1413194 1c003ae2 00941463 bne x8, x9, 8 x8:1c009b12 x9:1c009b13 +76588293ns 1413198 1c003aea 00044583 lbu x11, 0(x8) x11=00000030 x8:1c009b12 PA:1c009b12 +76588313ns 1413199 1c003aee 01300633 add x12, x0, x19 x12=1c00b914 x19:1c00b914 +76588333ns 1413200 1c003af0 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +76588353ns 1413201 1c003af2 fafff0ef jal x1, -82 x1=1c003af6 +76588394ns 1413203 1c003aa0 00862783 lw x15, 8(x12) x15=fffffff2 x12:1c00b914 PA:1c00b91c +76588434ns 1413205 1c003aa2 fff78793 addi x15, x15, -1 x15=fffffff1 x15:fffffff2 +76588454ns 1413206 1c003aa4 00f62423 sw x15, 8(x12) x15:fffffff1 x12:1c00b914 PA:1c00b91c +76588475ns 1413207 1c003aa6 0007d963 bge x15, x0, 18 x15:fffffff1 +76588495ns 1413208 1c003aaa 01862703 lw x14, 24(x12) x14=fffffc00 x12:1c00b914 PA:1c00b92c +76588535ns 1413210 1c003aac 00e7c563 blt x15, x14, 10 x15:fffffff1 x14:fffffc00 +76588555ns 1413211 1c003ab0 00a00793 addi x15, x0, 10 x15=0000000a +76588576ns 1413212 1c003ab2 00f59363 bne x11, x15, 6 x11:00000030 x15:0000000a +76588636ns 1413215 1c003ab8 00062783 lw x15, 0(x12) x15=1c00bac6 x12:1c00b914 PA:1c00b914 +76588656ns 1413216 1c003aba 00b00533 add x10, x0, x11 x10=00000030 x11:00000030 +76588677ns 1413217 1c003abc 00178713 addi x14, x15, 1 x14=1c00bac7 x15:1c00bac6 +76588697ns 1413218 1c003ac0 00e62023 sw x14, 0(x12) x14:1c00bac7 x12:1c00b914 PA:1c00b914 +76588717ns 1413219 1c003ac2 00b78023 sb x11, 0(x15) x11:00000030 x15:1c00bac6 PA:1c00bac6 +76588737ns 1413220 1c003ac6 00008067 jalr x0, x1, 0 x1:1c003af6 +76588777ns 1413222 1c003af6 00140413 addi x8, x8, 1 x8=1c009b13 x8:1c009b12 +76588798ns 1413223 1c003af8 ff4515e3 bne x10, x20, -22 x10:00000030 x20:ffffffff +76588878ns 1413227 1c003ae2 00941463 bne x8, x9, 8 x8:1c009b13 x9:1c009b13 +76588899ns 1413228 1c003ae6 00000513 addi x10, x0, 0 x10=00000000 +76588919ns 1413229 1c003ae8 0140006f jal x0, 20 +76588959ns 1413231 1c003afc 01c12083 lw x1, 28(x2) x1=1c004bf2 x2:1c009a70 PA:1c009a8c +76588979ns 1413232 1c003afe 01812403 lw x8, 24(x2) x8=1c009ad0 x2:1c009a70 PA:1c009a88 +76589000ns 1413233 1c003b00 01412483 lw x9, 20(x2) x9=1c009e10 x2:1c009a70 PA:1c009a84 +76589020ns 1413234 1c003b02 01012903 lw x18, 16(x2) x18=1c00b914 x2:1c009a70 PA:1c009a80 +76589040ns 1413235 1c003b04 00c12983 lw x19, 12(x2) x19=1c003ac8 x2:1c009a70 PA:1c009a7c +76589060ns 1413236 1c003b06 00812a03 lw x20, 8(x2) x20=ffffffff x2:1c009a70 PA:1c009a78 +76589080ns 1413237 1c003b08 02010113 addi x2, x2, 32 x2=1c009a90 x2:1c009a70 +76589101ns 1413238 1c003b0a 00008067 jalr x0, x1, 0 x1:1c004bf2 +76589161ns 1413241 1c004bf2 f34503e3 beq x10, x20, -218 x10:00000000 x20:ffffffff +76589181ns 1413242 1c004bf6 00042783 lw x15, 0(x8) x15=00000000 x8:1c009ad0 PA:1c009ad0 +76589222ns 1413244 1c004bf8 0027f793 andi x15, x15, 2 x15=00000000 x15:00000000 +76589242ns 1413245 1c004bfa 02079563 bne x15, x0, 42 x15:00000000 +76589262ns 1413246 1c004bfc 00c12783 lw x15, 12(x2) x15=00000001 x2:1c009a90 PA:1c009a9c +76589282ns 1413247 1c004bfe 00c42503 lw x10, 12(x8) x10=00000000 x8:1c009ad0 PA:1c009adc +76589323ns 1413249 1c004c00 f0f55de3 bge x10, x15, -230 x10:00000000 x15:00000001 +76589343ns 1413250 1c004c04 00f00533 add x10, x0, x15 x10=00000001 x15:00000001 +76589363ns 1413251 1c004c06 f15ff06f jal x0, -236 +76589403ns 1413253 1c004b1a 02c12083 lw x1, 44(x2) x1=1c003db2 x2:1c009a90 PA:1c009abc +76589424ns 1413254 1c004b1c 02812403 lw x8, 40(x2) x8=1c0088ff x2:1c009a90 PA:1c009ab8 +76589444ns 1413255 1c004b1e 02412483 lw x9, 36(x2) x9=1c00b914 x2:1c009a90 PA:1c009ab4 +76589464ns 1413256 1c004b20 02012903 lw x18, 32(x2) x18=1c008900 x2:1c009a90 PA:1c009ab0 +76589484ns 1413257 1c004b22 01c12983 lw x19, 28(x2) x19=1c009e10 x2:1c009a90 PA:1c009aac +76589504ns 1413258 1c004b24 01812a03 lw x20, 24(x2) x20=1c00918c x2:1c009a90 PA:1c009aa8 +76589525ns 1413259 1c004b26 01412a83 lw x21, 20(x2) x21=00000000 x2:1c009a90 PA:1c009aa4 +76589545ns 1413260 1c004b28 01012b03 lw x22, 16(x2) x22=1c009000 x2:1c009a90 PA:1c009aa0 +76589565ns 1413261 1c004b2a 03010113 addi x2, x2, 48 x2=1c009ac0 x2:1c009a90 +76589585ns 1413262 1c004b2c 00008067 jalr x0, x1, 0 x1:1c003db2 +76589626ns 1413264 1c003db2 fd9ff06f jal x0, -40 +76589666ns 1413266 1c003d8a fff00793 addi x15, x0, -1 x15=ffffffff +76589686ns 1413267 1c003d8c 00a00a33 add x20, x0, x10 x20=00000001 x10:00000001 +76589706ns 1413268 1c003d8e fcf516e3 bne x10, x15, -52 x10:00000001 x15:ffffffff +76589767ns 1413271 1c003d5a 02412783 lw x15, 36(x2) x15=0000000e x2:1c009ac0 PA:1c009ae4 +76589807ns 1413273 1c003d5c 014787b3 add x15, x15, x20 x15=0000000f x15:0000000e x20:00000001 +76589827ns 1413274 1c003d5e 02f12223 sw x15, 36(x2) x15:0000000f x2:1c009ac0 PA:1c009ae4 +76589848ns 1413275 1c003d60 e27ff06f jal x0, -474 +76589888ns 1413277 1c003b86 01200433 add x8, x0, x18 x8=1c008900 x18:1c008900 +76589908ns 1413278 1c003b88 00044783 lbu x15, 0(x8) x15=0000000a x8:1c008900 PA:1c008900 +76589949ns 1413280 1c003b8c 00078363 beq x15, x0, 6 x15:0000000a +76589969ns 1413281 1c003b8e 0f979763 bne x15, x25, 238 x15:0000000a x25:00000025 +76590029ns 1413284 1c003c7c 00140413 addi x8, x8, 1 x8=1c008901 x8:1c008900 +76590050ns 1413285 1c003c7e f0bff06f jal x0, -246 +76590090ns 1413287 1c003b88 00044783 lbu x15, 0(x8) x15=00000000 x8:1c008901 PA:1c008901 +76590130ns 1413289 1c003b8c 00078363 beq x15, x0, 6 x15:00000000 +76590211ns 1413293 1c003b92 41240db3 sub x27, x8, x18 x27=00000001 x8:1c008901 x18:1c008900 +76590231ns 1413294 1c003b96 01240e63 beq x8, x18, 28 x8:1c008901 x18:1c008900 +76590251ns 1413295 1c003b9a 01b006b3 add x13, x0, x27 x13=00000001 x27:00000001 +76590272ns 1413296 1c003b9c 01200633 add x12, x0, x18 x12=1c008900 x18:1c008900 +76590292ns 1413297 1c003b9e 009005b3 add x11, x0, x9 x11=1c00b914 x9:1c00b914 +76590312ns 1413298 1c003ba0 01300533 add x10, x0, x19 x10=1c009e10 x19:1c009e10 +76590332ns 1413299 1c003ba2 f27ff0ef jal x1, -218 x1=1c003ba6 +76590373ns 1413301 1c003ac8 fe010113 addi x2, x2, -32 x2=1c009aa0 x2:1c009ac0 +76590393ns 1413302 1c003aca 00812c23 sw x8, 24(x2) x8:1c008901 x2:1c009aa0 PA:1c009ab8 +76590413ns 1413303 1c003acc 00912a23 sw x9, 20(x2) x9:1c00b914 x2:1c009aa0 PA:1c009ab4 +76590433ns 1413304 1c003ace 01212823 sw x18, 16(x2) x18:1c008900 x2:1c009aa0 PA:1c009ab0 +76590453ns 1413305 1c003ad0 01312623 sw x19, 12(x2) x19:1c009e10 x2:1c009aa0 PA:1c009aac +76590474ns 1413306 1c003ad2 01412423 sw x20, 8(x2) x20:00000001 x2:1c009aa0 PA:1c009aa8 +76590494ns 1413307 1c003ad4 00112e23 sw x1, 28(x2) x1:1c003ba6 x2:1c009aa0 PA:1c009abc +76590514ns 1413308 1c003ad6 00a00933 add x18, x0, x10 x18=1c009e10 x10:1c009e10 +76590534ns 1413309 1c003ad8 00b009b3 add x19, x0, x11 x19=1c00b914 x11:1c00b914 +76590554ns 1413310 1c003ada 00c00433 add x8, x0, x12 x8=1c008900 x12:1c008900 +76590575ns 1413311 1c003adc 00d604b3 add x9, x12, x13 x9=1c008901 x12:1c008900 x13:00000001 +76590595ns 1413312 1c003ae0 fff00a13 addi x20, x0, -1 x20=ffffffff +76590615ns 1413313 1c003ae2 00941463 bne x8, x9, 8 x8:1c008900 x9:1c008901 +76590696ns 1413317 1c003aea 00044583 lbu x11, 0(x8) x11=0000000a x8:1c008900 PA:1c008900 +76590716ns 1413318 1c003aee 01300633 add x12, x0, x19 x12=1c00b914 x19:1c00b914 +76590736ns 1413319 1c003af0 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +76590756ns 1413320 1c003af2 fafff0ef jal x1, -82 x1=1c003af6 +76590797ns 1413322 1c003aa0 00862783 lw x15, 8(x12) x15=fffffff1 x12:1c00b914 PA:1c00b91c +76590837ns 1413324 1c003aa2 fff78793 addi x15, x15, -1 x15=fffffff0 x15:fffffff1 +76590857ns 1413325 1c003aa4 00f62423 sw x15, 8(x12) x15:fffffff0 x12:1c00b914 PA:1c00b91c +76590877ns 1413326 1c003aa6 0007d963 bge x15, x0, 18 x15:fffffff0 +76590898ns 1413327 1c003aaa 01862703 lw x14, 24(x12) x14=fffffc00 x12:1c00b914 PA:1c00b92c +76590938ns 1413329 1c003aac 00e7c563 blt x15, x14, 10 x15:fffffff0 x14:fffffc00 +76590958ns 1413330 1c003ab0 00a00793 addi x15, x0, 10 x15=0000000a +76590978ns 1413331 1c003ab2 00f59363 bne x11, x15, 6 x11:0000000a x15:0000000a +76590999ns 1413332 1c003ab6 5f40006f jal x0, 1524 +76591039ns 1413334 1c0040aa fe010113 addi x2, x2, -32 x2=1c009a80 x2:1c009aa0 +76591059ns 1413335 1c0040ac 00812c23 sw x8, 24(x2) x8:1c008900 x2:1c009a80 PA:1c009a98 +76591079ns 1413336 1c0040ae 00912a23 sw x9, 20(x2) x9:1c008901 x2:1c009a80 PA:1c009a94 +76591100ns 1413337 1c0040b0 01212823 sw x18, 16(x2) x18:1c009e10 x2:1c009a80 PA:1c009a90 +76591120ns 1413338 1c0040b2 00112e23 sw x1, 28(x2) x1:1c003af6 x2:1c009a80 PA:1c009a9c +76591140ns 1413339 1c0040b4 01312623 sw x19, 12(x2) x19:1c00b914 x2:1c009a80 PA:1c009a8c +76591160ns 1413340 1c0040b6 00a004b3 add x9, x0, x10 x9=1c009e10 x10:1c009e10 +76591180ns 1413341 1c0040b8 00b00933 add x18, x0, x11 x18=0000000a x11:0000000a +76591201ns 1413342 1c0040ba 00c00433 add x8, x0, x12 x8=1c00b914 x12:1c00b914 +76591221ns 1413343 1c0040bc 00050463 beq x10, x0, 8 x10:1c009e10 +76591241ns 1413344 1c0040be 01852783 lw x15, 24(x10) x15=00000001 x10:1c009e10 PA:1c009e28 +76591281ns 1413346 1c0040c0 00079263 bne x15, x0, 4 x15:00000001 +76591342ns 1413349 1c0040c4 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76591362ns 1413350 1c0040c8 a1478793 addi x15, x15, -1516 x15=1c008a14 x15:1c009000 +76591382ns 1413351 1c0040cc 06f41963 bne x8, x15, 114 x8:1c00b914 x15:1c008a14 +76591463ns 1413355 1c00413e 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76591483ns 1413356 1c004142 a3478793 addi x15, x15, -1484 x15=1c008a34 x15:1c009000 +76591503ns 1413357 1c004146 00f41463 bne x8, x15, 8 x8:1c00b914 x15:1c008a34 +76591584ns 1413361 1c00414e 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76591604ns 1413362 1c004152 9f478793 addi x15, x15, -1548 x15=1c0089f4 x15:1c009000 +76591625ns 1413363 1c004156 f6f41ee3 bne x8, x15, -132 x8:1c00b914 x15:1c0089f4 +76591685ns 1413366 1c0040d2 01842783 lw x15, 24(x8) x15=fffffc00 x8:1c00b914 PA:1c00b92c +76591726ns 1413368 1c0040d4 00f42423 sw x15, 8(x8) x15:fffffc00 x8:1c00b914 PA:1c00b91c +76591746ns 1413369 1c0040d6 00c45783 lhu x15, 12(x8) x15=00000089 x8:1c00b914 PA:1c00b920 +76591786ns 1413371 1c0040da 0087f793 andi x15, x15, 8 x15=00000008 x15:00000089 +76591806ns 1413372 1c0040dc 08078163 beq x15, x0, 130 x15:00000008 +76591826ns 1413373 1c0040de 01042783 lw x15, 16(x8) x15=1c00bab8 x8:1c00b914 PA:1c00b924 +76591867ns 1413375 1c0040e0 06078f63 beq x15, x0, 126 x15:1c00bab8 +76591887ns 1413376 1c0040e2 01042783 lw x15, 16(x8) x15=1c00bab8 x8:1c00b914 PA:1c00b924 +76591907ns 1413377 1c0040e4 00042503 lw x10, 0(x8) x10=1c00bac7 x8:1c00b914 PA:1c00b914 +76591927ns 1413378 1c0040e6 0ff97993 andi x19, x18, 255 x19=0000000a x18:0000000a +76591948ns 1413379 1c0040ea 0ff97913 andi x18, x18, 255 x18=0000000a x18:0000000a +76591968ns 1413380 1c0040ee 40f50533 sub x10, x10, x15 x10=0000000f x10:1c00bac7 x15:1c00bab8 +76591988ns 1413381 1c0040f0 01442783 lw x15, 20(x8) x15=00000400 x8:1c00b914 PA:1c00b928 +76592028ns 1413383 1c0040f2 00f54663 blt x10, x15, 12 x10:0000000f x15:00000400 +76592089ns 1413386 1c0040fe 00842783 lw x15, 8(x8) x15=fffffc00 x8:1c00b914 PA:1c00b91c +76592109ns 1413387 1c004100 00150513 addi x10, x10, 1 x10=00000010 x10:0000000f +76592129ns 1413388 1c004102 fff78793 addi x15, x15, -1 x15=fffffbff x15:fffffc00 +76592150ns 1413389 1c004104 00f42423 sw x15, 8(x8) x15:fffffbff x8:1c00b914 PA:1c00b91c +76592170ns 1413390 1c004106 00042783 lw x15, 0(x8) x15=1c00bac7 x8:1c00b914 PA:1c00b914 +76592210ns 1413392 1c004108 00178713 addi x14, x15, 1 x14=1c00bac8 x15:1c00bac7 +76592230ns 1413393 1c00410c 00e42023 sw x14, 0(x8) x14:1c00bac8 x8:1c00b914 PA:1c00b914 +76592251ns 1413394 1c00410e 01378023 sb x19, 0(x15) x19:0000000a x15:1c00bac7 PA:1c00bac7 +76592271ns 1413395 1c004112 01442783 lw x15, 20(x8) x15=00000400 x8:1c00b914 PA:1c00b928 +76592311ns 1413397 1c004114 00a78963 beq x15, x10, 18 x15:00000400 x10:00000010 +76592331ns 1413398 1c004118 00c45783 lhu x15, 12(x8) x15=00000089 x8:1c00b914 PA:1c00b920 +76592372ns 1413400 1c00411c 0017f793 andi x15, x15, 1 x15=00000001 x15:00000089 +76592392ns 1413401 1c00411e 00078863 beq x15, x0, 16 x15:00000001 +76592412ns 1413402 1c004120 00a00793 addi x15, x0, 10 x15=0000000a +76592432ns 1413403 1c004122 00f91663 bne x18, x15, 12 x18:0000000a x15:0000000a +76592452ns 1413404 1c004126 008005b3 add x11, x0, x8 x11=1c00b914 x8:1c00b914 +76592473ns 1413405 1c004128 00900533 add x10, x0, x9 x10=1c009e10 x9:1c009e10 +76592493ns 1413406 1c00412a 3d8000ef jal x1, 984 x1=1c00412c +76592533ns 1413408 1c004502 0105a783 lw x15, 16(x11) x15=1c00bab8 x11:1c00b914 PA:1c00b924 +76592574ns 1413410 1c004504 06078063 beq x15, x0, 96 x15:1c00bab8 +76592594ns 1413411 1c004506 fe010113 addi x2, x2, -32 x2=1c009a60 x2:1c009a80 +76592614ns 1413412 1c004508 00812c23 sw x8, 24(x2) x8:1c00b914 x2:1c009a60 PA:1c009a78 +76592634ns 1413413 1c00450a 00112e23 sw x1, 28(x2) x1:1c00412c x2:1c009a60 PA:1c009a7c +76592654ns 1413414 1c00450c 00a00433 add x8, x0, x10 x8=1c009e10 x10:1c009e10 +76592675ns 1413415 1c00450e 00050663 beq x10, x0, 12 x10:1c009e10 +76592695ns 1413416 1c004510 01852783 lw x15, 24(x10) x15=00000001 x10:1c009e10 PA:1c009e28 +76592735ns 1413418 1c004512 00079463 bne x15, x0, 8 x15:00000001 +76592816ns 1413422 1c00451a 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76592836ns 1413423 1c00451e a1478793 addi x15, x15, -1516 x15=1c008a14 x15:1c009000 +76592856ns 1413424 1c004522 00f59c63 bne x11, x15, 24 x11:1c00b914 x15:1c008a14 +76592937ns 1413428 1c00453a 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76592957ns 1413429 1c00453e a3478793 addi x15, x15, -1484 x15=1c008a34 x15:1c009000 +76592977ns 1413430 1c004542 00f59463 bne x11, x15, 8 x11:1c00b914 x15:1c008a34 +76593058ns 1413434 1c00454a 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76593078ns 1413435 1c00454e 9f478793 addi x15, x15, -1548 x15=1c0089f4 x15:1c009000 +76593099ns 1413436 1c004552 fcf59be3 bne x11, x15, -42 x11:1c00b914 x15:1c0089f4 +76593159ns 1413439 1c004528 00c59783 lh x15, 12(x11) x15=00000089 x11:1c00b914 PA:1c00b920 +76593200ns 1413441 1c00452c 02078763 beq x15, x0, 46 x15:00000089 +76593220ns 1413442 1c00452e 00800533 add x10, x0, x8 x10=1c009e10 x8:1c009e10 +76593240ns 1413443 1c004530 01812403 lw x8, 24(x2) x8=1c00b914 x2:1c009a60 PA:1c009a78 +76593260ns 1413444 1c004532 01c12083 lw x1, 28(x2) x1=1c00412c x2:1c009a60 PA:1c009a7c +76593280ns 1413445 1c004534 02010113 addi x2, x2, 32 x2=1c009a80 x2:1c009a60 +76593300ns 1413446 1c004536 e85ff06f jal x0, -380 +76593361ns 1413449 1c0043ba 00c5d783 lhu x15, 12(x11) x15=00000089 x11:1c00b914 PA:1c00b920 +76593381ns 1413450 1c0043be fe010113 addi x2, x2, -32 x2=1c009a60 x2:1c009a80 +76593401ns 1413451 1c0043c0 00812c23 sw x8, 24(x2) x8:1c00b914 x2:1c009a60 PA:1c009a78 +76593422ns 1413452 1c0043c2 00912a23 sw x9, 20(x2) x9:1c009e10 x2:1c009a60 PA:1c009a74 +76593442ns 1413453 1c0043c4 00112e23 sw x1, 28(x2) x1:1c00412c x2:1c009a60 PA:1c009a7c +76593462ns 1413454 1c0043c6 01212823 sw x18, 16(x2) x18:0000000a x2:1c009a60 PA:1c009a70 +76593482ns 1413455 1c0043c8 01312623 sw x19, 12(x2) x19:0000000a x2:1c009a60 PA:1c009a6c +76593502ns 1413456 1c0043ca 0087f713 andi x14, x15, 8 x14=00000008 x15:00000089 +76593523ns 1413457 1c0043ce 00a004b3 add x9, x0, x10 x9=1c009e10 x10:1c009e10 +76593543ns 1413458 1c0043d0 00b00433 add x8, x0, x11 x8=1c00b914 x11:1c00b914 +76593563ns 1413459 1c0043d2 0e071363 bne x14, x0, 230 x14:00000008 +76593624ns 1413462 1c0044b8 0105a983 lw x19, 16(x11) x19=1c00bab8 x11:1c00b914 PA:1c00b924 +76593664ns 1413464 1c0044bc f20982e3 beq x19, x0, -220 x19:1c00bab8 +76593684ns 1413465 1c0044c0 0005a903 lw x18, 0(x11) x18=1c00bac8 x11:1c00b914 PA:1c00b914 +76593704ns 1413466 1c0044c4 0037f793 andi x15, x15, 3 x15=00000001 x15:00000089 +76593725ns 1413467 1c0044c6 0135a023 sw x19, 0(x11) x19:1c00bab8 x11:1c00b914 PA:1c00b914 +76593745ns 1413468 1c0044ca 41390933 sub x18, x18, x19 x18=00000010 x18:1c00bac8 x19:1c00bab8 +76593765ns 1413469 1c0044ce 00000713 addi x14, x0, 0 x14=00000000 +76593785ns 1413470 1c0044d0 00079263 bne x15, x0, 4 x15:00000001 +76593846ns 1413473 1c0044d4 00e42423 sw x14, 8(x8) x14:00000000 x8:1c00b914 PA:1c00b91c +76593866ns 1413474 1c0044d6 f12055e3 bge x0, x18, -246 x18:00000010 +76593886ns 1413475 1c0044da 02842783 lw x15, 40(x8) x15=1c004c5e x8:1c00b914 PA:1c00b93c +76593906ns 1413476 1c0044dc 02042583 lw x11, 32(x8) x11=1c00b914 x8:1c00b914 PA:1c00b934 +76593926ns 1413477 1c0044de 012006b3 add x13, x0, x18 x13=00000010 x18:00000010 +76593947ns 1413478 1c0044e0 01300633 add x12, x0, x19 x12=1c00bab8 x19:1c00bab8 +76593967ns 1413479 1c0044e2 00900533 add x10, x0, x9 x10=1c009e10 x9:1c009e10 +76593987ns 1413480 1c0044e4 000780e7 jalr x1, x15, 0 x1=1c0044e6 x15:1c004c5e +76594048ns 1413483 1c004c5e 00c5d783 lhu x15, 12(x11) x15=00000089 x11:1c00b914 PA:1c00b920 +76594068ns 1413484 1c004c62 fe010113 addi x2, x2, -32 x2=1c009a40 x2:1c009a60 +76594088ns 1413485 1c004c64 00812c23 sw x8, 24(x2) x8:1c00b914 x2:1c009a40 PA:1c009a58 +76594108ns 1413486 1c004c66 00912a23 sw x9, 20(x2) x9:1c009e10 x2:1c009a40 PA:1c009a54 +76594128ns 1413487 1c004c68 01212823 sw x18, 16(x2) x18:00000010 x2:1c009a40 PA:1c009a50 +76594149ns 1413488 1c004c6a 01312623 sw x19, 12(x2) x19:1c00bab8 x2:1c009a40 PA:1c009a4c +76594169ns 1413489 1c004c6c 00112e23 sw x1, 28(x2) x1:1c0044e6 x2:1c009a40 PA:1c009a5c +76594189ns 1413490 1c004c6e 1007f793 andi x15, x15, 256 x15=00000000 x15:00000089 +76594209ns 1413491 1c004c72 00a004b3 add x9, x0, x10 x9=1c009e10 x10:1c009e10 +76594229ns 1413492 1c004c74 00b00433 add x8, x0, x11 x8=1c00b914 x11:1c00b914 +76594250ns 1413493 1c004c76 00c00933 add x18, x0, x12 x18=1c00bab8 x12:1c00bab8 +76594270ns 1413494 1c004c78 00d009b3 add x19, x0, x13 x19=00000010 x13:00000010 +76594290ns 1413495 1c004c7a 00078663 beq x15, x0, 12 x15:00000000 +76594371ns 1413499 1c004c86 00c45783 lhu x15, 12(x8) x15=00000089 x8:1c00b914 PA:1c00b920 +76594391ns 1413500 1c004c8a fffff737 lui x14, 0xfffff000 x14=fffff000 +76594411ns 1413501 1c004c8c fff70713 addi x14, x14, -1 x14=ffffefff x14:fffff000 +76594431ns 1413502 1c004c8e 00e7f7b3 and x15, x15, x14 x15=00000089 x15:00000089 x14:ffffefff +76594451ns 1413503 1c004c90 00e41583 lh x11, 14(x8) x11=00000001 x8:1c00b914 PA:1c00b922 +76594472ns 1413504 1c004c94 00f41623 sh x15, 12(x8) x15:00000089 x8:1c00b914 PA:1c00b920 +76594492ns 1413505 1c004c98 01812403 lw x8, 24(x2) x8=1c00b914 x2:1c009a40 PA:1c009a58 +76594512ns 1413506 1c004c9a 01c12083 lw x1, 28(x2) x1=1c0044e6 x2:1c009a40 PA:1c009a5c +76594532ns 1413507 1c004c9c 013006b3 add x13, x0, x19 x13=00000010 x19:00000010 +76594552ns 1413508 1c004c9e 01200633 add x12, x0, x18 x12=1c00bab8 x18:1c00bab8 +76594573ns 1413509 1c004ca0 00c12983 lw x19, 12(x2) x19=1c00bab8 x2:1c009a40 PA:1c009a4c +76594593ns 1413510 1c004ca2 01012903 lw x18, 16(x2) x18=00000010 x2:1c009a40 PA:1c009a50 +76594613ns 1413511 1c004ca4 00900533 add x10, x0, x9 x10=1c009e10 x9:1c009e10 +76594633ns 1413512 1c004ca6 01412483 lw x9, 20(x2) x9=1c009e10 x2:1c009a40 PA:1c009a54 +76594653ns 1413513 1c004ca8 02010113 addi x2, x2, 32 x2=1c009a60 x2:1c009a40 +76594674ns 1413514 1c004caa 03e0006f jal x0, 62 +76594714ns 1413516 1c004ce8 ff010113 addi x2, x2, -16 x2=1c009a50 x2:1c009a60 +76594734ns 1413517 1c004cea 00812423 sw x8, 8(x2) x8:1c00b914 x2:1c009a50 PA:1c009a58 +76594754ns 1413518 1c004cec 00912223 sw x9, 4(x2) x9:1c009e10 x2:1c009a50 PA:1c009a54 +76594775ns 1413519 1c004cee 00a00433 add x8, x0, x10 x8=1c009e10 x10:1c009e10 +76594795ns 1413520 1c004cf0 00b00533 add x10, x0, x11 x10=00000001 x11:00000001 +76594815ns 1413521 1c004cf2 00c005b3 add x11, x0, x12 x11=1c00bab8 x12:1c00bab8 +76594835ns 1413522 1c004cf4 00d00633 add x12, x0, x13 x12=00000010 x13:00000010 +76594855ns 1413523 1c004cf6 00112623 sw x1, 12(x2) x1:1c0044e6 x2:1c009a50 PA:1c009a5c +76594875ns 1413524 1c004cf8 dc01a023 sw x0, -576(x3) x3:1c0093dc PA:1c00919c +76594896ns 1413525 1c004cfc cf7fd0ef jal x1, -8970 x1=1c004d00 +76594936ns 1413527 1c0029f2 fff50513 addi x10, x10, -1 x10=00000000 x10:00000001 +76594956ns 1413528 1c0029f4 00100793 addi x15, x0, 1 x15=00000001 +76594976ns 1413529 1c0029f6 00c58833 add x16, x11, x12 x16=1c00bac8 x11:1c00bab8 x12:00000010 +76594997ns 1413530 1c0029fa 00a7eb63 bltu x15, x10, 22 x15:00000001 x10:00000000 +76595017ns 1413531 1c0029fe 000026b7 lui x13, 0x2000 x13=00002000 +76595037ns 1413532 1c002a00 f8068693 addi x13, x13, -128 x13=00001f80 x13:00002000 +76595057ns 1413533 1c002a04 1a10f537 lui x10, 0x1a10f000 x10=1a10f000 +76595077ns 1413534 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bab8 x16:1c00bac8 +76595138ns 1413537 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bab9 x11:1c00bab8 +76595158ns 1413538 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000057 x11:1c00bab9 PA:1c00bab8 +76595178ns 1413539 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76595199ns 1413540 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76595219ns 1413541 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76595239ns 1413542 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76595259ns 1413543 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76595279ns 1413544 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76595299ns 1413545 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76595320ns 1413546 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76595340ns 1413547 1c002a38 0117a023 sw x17, 0(x15) x17:00000057 x15:1a10ff80 PA:1a10ff80 +76595360ns 1413548 1c002a3c fcdff06f jal x0, -52 +76595461ns 1413553 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bab9 x16:1c00bac8 +76595522ns 1413556 1c002a1c 00158593 addi x11, x11, 1 x11=1c00baba x11:1c00bab9 +76595542ns 1413557 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000049 x11:1c00baba PA:1c00bab9 +76595562ns 1413558 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76595582ns 1413559 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76595602ns 1413560 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76595623ns 1413561 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76595643ns 1413562 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76595663ns 1413563 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76595683ns 1413564 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76595703ns 1413565 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76595724ns 1413566 1c002a38 0117a023 sw x17, 0(x15) x17:00000049 x15:1a10ff80 PA:1a10ff80 +76595744ns 1413567 1c002a3c fcdff06f jal x0, -52 +76595845ns 1413572 1c002a08 01059a63 bne x11, x16, 20 x11:1c00baba x16:1c00bac8 +76595905ns 1413575 1c002a1c 00158593 addi x11, x11, 1 x11=1c00babb x11:1c00baba +76595925ns 1413576 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000050 x11:1c00babb PA:1c00baba +76595946ns 1413577 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76595966ns 1413578 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76595986ns 1413579 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76596006ns 1413580 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76596026ns 1413581 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76596047ns 1413582 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76596067ns 1413583 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76596087ns 1413584 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76596107ns 1413585 1c002a38 0117a023 sw x17, 0(x15) x17:00000050 x15:1a10ff80 PA:1a10ff80 +76596127ns 1413586 1c002a3c fcdff06f jal x0, -52 +76596228ns 1413591 1c002a08 01059a63 bne x11, x16, 20 x11:1c00babb x16:1c00bac8 +76596289ns 1413594 1c002a1c 00158593 addi x11, x11, 1 x11=1c00babc x11:1c00babb +76596309ns 1413595 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000020 x11:1c00babc PA:1c00babb +76596329ns 1413596 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76596349ns 1413597 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76596370ns 1413598 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76596390ns 1413599 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76596410ns 1413600 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76596430ns 1413601 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76596450ns 1413602 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76596471ns 1413603 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76596491ns 1413604 1c002a38 0117a023 sw x17, 0(x15) x17:00000020 x15:1a10ff80 PA:1a10ff80 +76596511ns 1413605 1c002a3c fcdff06f jal x0, -52 +76596612ns 1413610 1c002a08 01059a63 bne x11, x16, 20 x11:1c00babc x16:1c00bac8 +76596673ns 1413613 1c002a1c 00158593 addi x11, x11, 1 x11=1c00babd x11:1c00babc +76596693ns 1413614 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000052 x11:1c00babd PA:1c00babc +76596713ns 1413615 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76596733ns 1413616 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76596753ns 1413617 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76596774ns 1413618 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76596794ns 1413619 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76596814ns 1413620 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76596834ns 1413621 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76596854ns 1413622 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76596874ns 1413623 1c002a38 0117a023 sw x17, 0(x15) x17:00000052 x15:1a10ff80 PA:1a10ff80 +76596895ns 1413624 1c002a3c fcdff06f jal x0, -52 +76596996ns 1413629 1c002a08 01059a63 bne x11, x16, 20 x11:1c00babd x16:1c00bac8 +76597056ns 1413632 1c002a1c 00158593 addi x11, x11, 1 x11=1c00babe x11:1c00babd +76597076ns 1413633 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000065 x11:1c00babe PA:1c00babd +76597097ns 1413634 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76597117ns 1413635 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76597137ns 1413636 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76597157ns 1413637 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76597177ns 1413638 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76597198ns 1413639 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76597218ns 1413640 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76597238ns 1413641 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76597258ns 1413642 1c002a38 0117a023 sw x17, 0(x15) x17:00000065 x15:1a10ff80 PA:1a10ff80 +76597278ns 1413643 1c002a3c fcdff06f jal x0, -52 +76597379ns 1413648 1c002a08 01059a63 bne x11, x16, 20 x11:1c00babe x16:1c00bac8 +76597440ns 1413651 1c002a1c 00158593 addi x11, x11, 1 x11=1c00babf x11:1c00babe +76597460ns 1413652 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000067 x11:1c00babf PA:1c00babe +76597480ns 1413653 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76597500ns 1413654 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76597521ns 1413655 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76597541ns 1413656 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76597561ns 1413657 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76597581ns 1413658 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76597601ns 1413659 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76597622ns 1413660 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76597642ns 1413661 1c002a38 0117a023 sw x17, 0(x15) x17:00000067 x15:1a10ff80 PA:1a10ff80 +76597662ns 1413662 1c002a3c fcdff06f jal x0, -52 +76597763ns 1413667 1c002a08 01059a63 bne x11, x16, 20 x11:1c00babf x16:1c00bac8 +76597823ns 1413670 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac0 x11:1c00babf +76597844ns 1413671 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000069 x11:1c00bac0 PA:1c00babf +76597864ns 1413672 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76597884ns 1413673 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76597904ns 1413674 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76597924ns 1413675 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76597945ns 1413676 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76597965ns 1413677 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76597985ns 1413678 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76598005ns 1413679 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76598025ns 1413680 1c002a38 0117a023 sw x17, 0(x15) x17:00000069 x15:1a10ff80 PA:1a10ff80 +76598046ns 1413681 1c002a3c fcdff06f jal x0, -52 +76598147ns 1413686 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac0 x16:1c00bac8 +76598207ns 1413689 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac1 x11:1c00bac0 +76598227ns 1413690 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000073 x11:1c00bac1 PA:1c00bac0 +76598248ns 1413691 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76598268ns 1413692 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76598288ns 1413693 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76598308ns 1413694 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76598328ns 1413695 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76598348ns 1413696 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76598369ns 1413697 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76598389ns 1413698 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76598409ns 1413699 1c002a38 0117a023 sw x17, 0(x15) x17:00000073 x15:1a10ff80 PA:1a10ff80 +76598429ns 1413700 1c002a3c fcdff06f jal x0, -52 +76598530ns 1413705 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac1 x16:1c00bac8 +76598591ns 1413708 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac2 x11:1c00bac1 +76598611ns 1413709 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000074 x11:1c00bac2 PA:1c00bac1 +76598631ns 1413710 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76598651ns 1413711 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76598672ns 1413712 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76598692ns 1413713 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76598712ns 1413714 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76598732ns 1413715 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76598752ns 1413716 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76598773ns 1413717 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76598793ns 1413718 1c002a38 0117a023 sw x17, 0(x15) x17:00000074 x15:1a10ff80 PA:1a10ff80 +76598813ns 1413719 1c002a3c fcdff06f jal x0, -52 +76598914ns 1413724 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac2 x16:1c00bac8 +76598974ns 1413727 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac3 x11:1c00bac2 +76598995ns 1413728 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000065 x11:1c00bac3 PA:1c00bac2 +76599015ns 1413729 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76599035ns 1413730 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76599055ns 1413731 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76599075ns 1413732 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76599096ns 1413733 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76599116ns 1413734 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76599136ns 1413735 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76599156ns 1413736 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76599176ns 1413737 1c002a38 0117a023 sw x17, 0(x15) x17:00000065 x15:1a10ff80 PA:1a10ff80 +76599197ns 1413738 1c002a3c fcdff06f jal x0, -52 +76599298ns 1413743 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac3 x16:1c00bac8 +76599358ns 1413746 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac4 x11:1c00bac3 +76599378ns 1413747 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000072 x11:1c00bac4 PA:1c00bac3 +76599398ns 1413748 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76599419ns 1413749 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76599439ns 1413750 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76599459ns 1413751 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76599479ns 1413752 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76599499ns 1413753 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76599520ns 1413754 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76599540ns 1413755 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76599560ns 1413756 1c002a38 0117a023 sw x17, 0(x15) x17:00000072 x15:1a10ff80 PA:1a10ff80 +76599580ns 1413757 1c002a3c fcdff06f jal x0, -52 +76599681ns 1413762 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac4 x16:1c00bac8 +76599742ns 1413765 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac5 x11:1c00bac4 +76599762ns 1413766 1c002a1e fff5c883 lbu x17, -1(x11) x17=0000003a x11:1c00bac5 PA:1c00bac4 +76599782ns 1413767 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76599802ns 1413768 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76599823ns 1413769 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76599843ns 1413770 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76599863ns 1413771 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76599883ns 1413772 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76599903ns 1413773 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76599923ns 1413774 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76599944ns 1413775 1c002a38 0117a023 sw x17, 0(x15) x17:0000003a x15:1a10ff80 PA:1a10ff80 +76599964ns 1413776 1c002a3c fcdff06f jal x0, -52 +76600065ns 1413781 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac5 x16:1c00bac8 +76600125ns 1413784 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac6 x11:1c00bac5 +76600146ns 1413785 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000020 x11:1c00bac6 PA:1c00bac5 +76600166ns 1413786 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76600186ns 1413787 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76600206ns 1413788 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76600226ns 1413789 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76600247ns 1413790 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76600267ns 1413791 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76600287ns 1413792 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76600307ns 1413793 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76600327ns 1413794 1c002a38 0117a023 sw x17, 0(x15) x17:00000020 x15:1a10ff80 PA:1a10ff80 +76600347ns 1413795 1c002a3c fcdff06f jal x0, -52 +76600448ns 1413800 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac6 x16:1c00bac8 +76600509ns 1413803 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac7 x11:1c00bac6 +76600529ns 1413804 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000030 x11:1c00bac7 PA:1c00bac6 +76600549ns 1413805 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76600570ns 1413806 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76600590ns 1413807 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76600610ns 1413808 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76600630ns 1413809 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76600650ns 1413810 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76600671ns 1413811 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76600691ns 1413812 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76600711ns 1413813 1c002a38 0117a023 sw x17, 0(x15) x17:00000030 x15:1a10ff80 PA:1a10ff80 +76600731ns 1413814 1c002a3c fcdff06f jal x0, -52 +76600832ns 1413819 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac7 x16:1c00bac8 +76600893ns 1413822 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac8 x11:1c00bac7 +76600913ns 1413823 1c002a1e fff5c883 lbu x17, -1(x11) x17=0000000a x11:1c00bac8 PA:1c00bac7 +76600933ns 1413824 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76600953ns 1413825 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76600973ns 1413826 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76600994ns 1413827 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76601014ns 1413828 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76601034ns 1413829 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76601054ns 1413830 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76601074ns 1413831 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76601095ns 1413832 1c002a38 0117a023 sw x17, 0(x15) x17:0000000a x15:1a10ff80 PA:1a10ff80 +76601115ns 1413833 1c002a3c fcdff06f jal x0, -52 +76601216ns 1413838 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac8 x16:1c00bac8 +76601236ns 1413839 1c002a0c 00c00533 add x10, x0, x12 x10=00000010 x12:00000010 +76601256ns 1413840 1c002a0e 00008067 jalr x0, x1, 0 x1:1c004d00 +76601297ns 1413842 1c004d00 fff00793 addi x15, x0, -1 x15=ffffffff +76601317ns 1413843 1c004d02 00f51663 bne x10, x15, 12 x10:00000010 x15:ffffffff +76601377ns 1413846 1c004d0e 00c12083 lw x1, 12(x2) x1=1c0044e6 x2:1c009a50 PA:1c009a5c +76601397ns 1413847 1c004d10 00812403 lw x8, 8(x2) x8=1c00b914 x2:1c009a50 PA:1c009a58 +76601418ns 1413848 1c004d12 00412483 lw x9, 4(x2) x9=1c009e10 x2:1c009a50 PA:1c009a54 +76601438ns 1413849 1c004d14 01010113 addi x2, x2, 16 x2=1c009a60 x2:1c009a50 +76601458ns 1413850 1c004d16 00008067 jalr x0, x1, 0 x1:1c0044e6 +76601519ns 1413853 1c0044e6 00a04a63 blt x0, x10, 20 x10:00000010 +76601579ns 1413856 1c0044fa 00a989b3 add x19, x19, x10 x19=1c00bac8 x19:1c00bab8 x10:00000010 +76601599ns 1413857 1c0044fc 40a90933 sub x18, x18, x10 x18=00000000 x18:00000010 x10:00000010 +76601620ns 1413858 1c004500 fd7ff06f jal x0, -42 +76601680ns 1413861 1c0044d6 f12055e3 bge x0, x18, -246 x18:00000000 +76601741ns 1413864 1c0043e0 00000513 addi x10, x0, 0 x10=00000000 +76601761ns 1413865 1c0043e2 0be0006f jal x0, 190 +76601801ns 1413867 1c0044a0 01c12083 lw x1, 28(x2) x1=1c00412c x2:1c009a60 PA:1c009a7c +76601822ns 1413868 1c0044a2 01812403 lw x8, 24(x2) x8=1c00b914 x2:1c009a60 PA:1c009a78 +76601842ns 1413869 1c0044a4 01412483 lw x9, 20(x2) x9=1c009e10 x2:1c009a60 PA:1c009a74 +76601862ns 1413870 1c0044a6 01012903 lw x18, 16(x2) x18=0000000a x2:1c009a60 PA:1c009a70 +76601882ns 1413871 1c0044a8 00c12983 lw x19, 12(x2) x19=0000000a x2:1c009a60 PA:1c009a6c +76601902ns 1413872 1c0044aa 02010113 addi x2, x2, 32 x2=1c009a80 x2:1c009a60 +76601922ns 1413873 1c0044ac 00008067 jalr x0, x1, 0 x1:1c00412c +76601963ns 1413875 1c00412c 02051d63 bne x10, x0, 58 x10:00000000 +76601983ns 1413876 1c00412e 01c12083 lw x1, 28(x2) x1=1c003af6 x2:1c009a80 PA:1c009a9c +76602003ns 1413877 1c004130 01812403 lw x8, 24(x2) x8=1c008900 x2:1c009a80 PA:1c009a98 +76602023ns 1413878 1c004132 01412483 lw x9, 20(x2) x9=1c008901 x2:1c009a80 PA:1c009a94 +76602044ns 1413879 1c004134 00c12983 lw x19, 12(x2) x19=1c00b914 x2:1c009a80 PA:1c009a8c +76602064ns 1413880 1c004136 01200533 add x10, x0, x18 x10=0000000a x18:0000000a +76602084ns 1413881 1c004138 01012903 lw x18, 16(x2) x18=1c009e10 x2:1c009a80 PA:1c009a90 +76602104ns 1413882 1c00413a 02010113 addi x2, x2, 32 x2=1c009aa0 x2:1c009a80 +76602124ns 1413883 1c00413c 00008067 jalr x0, x1, 0 x1:1c003af6 +76602165ns 1413885 1c003af6 00140413 addi x8, x8, 1 x8=1c008901 x8:1c008900 +76602185ns 1413886 1c003af8 ff4515e3 bne x10, x20, -22 x10:0000000a x20:ffffffff +76602266ns 1413890 1c003ae2 00941463 bne x8, x9, 8 x8:1c008901 x9:1c008901 +76602286ns 1413891 1c003ae6 00000513 addi x10, x0, 0 x10=00000000 +76602306ns 1413892 1c003ae8 0140006f jal x0, 20 +76602347ns 1413894 1c003afc 01c12083 lw x1, 28(x2) x1=1c003ba6 x2:1c009aa0 PA:1c009abc +76602367ns 1413895 1c003afe 01812403 lw x8, 24(x2) x8=1c008901 x2:1c009aa0 PA:1c009ab8 +76602387ns 1413896 1c003b00 01412483 lw x9, 20(x2) x9=1c00b914 x2:1c009aa0 PA:1c009ab4 +76602407ns 1413897 1c003b02 01012903 lw x18, 16(x2) x18=1c008900 x2:1c009aa0 PA:1c009ab0 +76602427ns 1413898 1c003b04 00c12983 lw x19, 12(x2) x19=1c009e10 x2:1c009aa0 PA:1c009aac +76602447ns 1413899 1c003b06 00812a03 lw x20, 8(x2) x20=00000001 x2:1c009aa0 PA:1c009aa8 +76602468ns 1413900 1c003b08 02010113 addi x2, x2, 32 x2=1c009ac0 x2:1c009aa0 +76602488ns 1413901 1c003b0a 00008067 jalr x0, x1, 0 x1:1c003ba6 +76602528ns 1413903 1c003ba6 fff00793 addi x15, x0, -1 x15=ffffffff +76602548ns 1413904 1c003ba8 1ef50563 beq x10, x15, 490 x10:00000000 x15:ffffffff +76602569ns 1413905 1c003bac 02412783 lw x15, 36(x2) x15=0000000f x2:1c009ac0 PA:1c009ae4 +76602609ns 1413907 1c003bae 01b787b3 add x15, x15, x27 x15=00000010 x15:0000000f x27:00000001 +76602629ns 1413908 1c003bb0 02f12223 sw x15, 36(x2) x15:00000010 x2:1c009ac0 PA:1c009ae4 +76602649ns 1413909 1c003bb2 00044783 lbu x15, 0(x8) x15=00000000 x8:1c008901 PA:1c008901 +76602690ns 1413911 1c003bb6 1c078e63 beq x15, x0, 476 x15:00000000 +76602771ns 1413915 1c003d92 00c4d783 lhu x15, 12(x9) x15=00000089 x9:1c00b914 PA:1c00b920 +76602811ns 1413917 1c003d96 0407f793 andi x15, x15, 64 x15=00000000 x15:00000089 +76602831ns 1413918 1c003d9a ec0791e3 bne x15, x0, -318 x15:00000000 +76602851ns 1413919 1c003d9e 02412503 lw x10, 36(x2) x10=00000010 x2:1c009ac0 PA:1c009ae4 +76602871ns 1413920 1c003da0 ebfff06f jal x0, -322 +76602912ns 1413922 1c003c5e 0ac12083 lw x1, 172(x2) x1=1c003dec x2:1c009ac0 PA:1c009b6c +76602932ns 1413923 1c003c60 0a812403 lw x8, 168(x2) x8=1c0088f0 x2:1c009ac0 PA:1c009b68 +76602952ns 1413924 1c003c62 0a412483 lw x9, 164(x2) x9=1c009190 x2:1c009ac0 PA:1c009b64 +76602972ns 1413925 1c003c64 0a012903 lw x18, 160(x2) x18=1c009188 x2:1c009ac0 PA:1c009b60 +76602993ns 1413926 1c003c66 09c12983 lw x19, 156(x2) x19=1c009000 x2:1c009ac0 PA:1c009b5c +76603013ns 1413927 1c003c68 09812a03 lw x20, 152(x2) x20=1c00918c x2:1c009ac0 PA:1c009b58 +76603033ns 1413928 1c003c6a 09412a83 lw x21, 148(x2) x21=a5a5a5a5 x2:1c009ac0 PA:1c009b54 +76603053ns 1413929 1c003c6c 09012b03 lw x22, 144(x2) x22=a5a5a5a5 x2:1c009ac0 PA:1c009b50 +76603073ns 1413930 1c003c6e 08c12b83 lw x23, 140(x2) x23=a5a5a5a5 x2:1c009ac0 PA:1c009b4c +76603094ns 1413931 1c003c70 08812c03 lw x24, 136(x2) x24=a5a5a5a5 x2:1c009ac0 PA:1c009b48 +76603114ns 1413932 1c003c72 08412c83 lw x25, 132(x2) x25=a5a5a5a5 x2:1c009ac0 PA:1c009b44 +76603134ns 1413933 1c003c74 08012d03 lw x26, 128(x2) x26=a5a5a5a5 x2:1c009ac0 PA:1c009b40 +76603154ns 1413934 1c003c76 07c12d83 lw x27, 124(x2) x27=a5a5a5a5 x2:1c009ac0 PA:1c009b3c +76603174ns 1413935 1c003c78 0b010113 addi x2, x2, 176 x2=1c009b70 x2:1c009ac0 +76603195ns 1413936 1c003c7a 00008067 jalr x0, x1, 0 x1:1c003dec +76603235ns 1413938 1c003dec 02c12083 lw x1, 44(x2) x1=1c00368e x2:1c009b70 PA:1c009b9c +76603255ns 1413939 1c003dee 02812403 lw x8, 40(x2) x8=00000000 x2:1c009b70 PA:1c009b98 +76603275ns 1413940 1c003df0 05010113 addi x2, x2, 80 x2=1c009bc0 x2:1c009b70 +76603296ns 1413941 1c003df2 00008067 jalr x0, x1, 0 x1:1c00368e +76603356ns 1413944 1c00368e 01714783 lbu x15, 23(x2) x15=00000000 x2:1c009bc0 PA:1c009bd7 +76603396ns 1413946 1c003692 0017f793 andi x15, x15, 1 x15=00000000 x15:00000000 +76603417ns 1413947 1c003694 fc0797e3 bne x15, x0, -50 x15:00000000 +76603437ns 1413948 1c003696 01300793 addi x15, x0, 19 x15=00000013 +76603457ns 1413949 1c003698 12010513 addi x10, x2, 288 x10=1c009ce0 x2:1c009bc0 +76603477ns 1413950 1c00369a 00f10c23 sb x15, 24(x2) x15:00000013 x2:1c009bc0 PA:1c009bd8 +76603497ns 1413951 1c00369e d9dff0ef jal x1, -612 x1=1c0036a2 +76603538ns 1413953 1c00343a ff010113 addi x2, x2, -16 x2=1c009bb0 x2:1c009bc0 +76603558ns 1413954 1c00343c 00812423 sw x8, 8(x2) x8:00000000 x2:1c009bb0 PA:1c009bb8 +76603578ns 1413955 1c00343e 00112623 sw x1, 12(x2) x1:1c0036a2 x2:1c009bb0 PA:1c009bbc +76603598ns 1413956 1c003440 00100793 addi x15, x0, 1 x15=00000001 +76603619ns 1413957 1c003442 00a00433 add x8, x0, x10 x8=1c009ce0 x10:1c009ce0 +76603639ns 1413958 1c003444 00f52823 sw x15, 16(x10) x15:00000001 x10:1c009ce0 PA:1c009cf0 +76603659ns 1413959 1c003446 04050223 sb x0, 68(x10) x10:1c009ce0 PA:1c009d24 +76603679ns 1413960 1c00344a 00000593 addi x11, x0, 0 x11=00000000 +76603699ns 1413961 1c00344c 0ff00513 addi x10, x0, 255 x10=000000ff +76603720ns 1413962 1c003450 d33fd0ef jal x1, -8910 x1=1c003454 +76603760ns 1413964 1c001182 ff010113 addi x2, x2, -16 x2=1c009ba0 x2:1c009bb0 +76603780ns 1413965 1c001184 00112623 sw x1, 12(x2) x1:1c003454 x2:1c009ba0 PA:1c009bac +76603800ns 1413966 1c001186 00812423 sw x8, 8(x2) x8:1c009ce0 x2:1c009ba0 PA:1c009ba8 +76603821ns 1413967 1c001188 02051163 bne x10, x0, 34 x10:000000ff +76603881ns 1413970 1c0011aa 00b00433 add x8, x0, x11 x8=00000000 x11:00000000 +76603901ns 1413971 1c0011ac 00b57d63 bgeu x10, x11, 26 x10:000000ff x11:00000000 +76603962ns 1413974 1c0011c6 00200613 addi x12, x0, 2 x12=00000002 +76603982ns 1413975 1c0011c8 00000593 addi x11, x0, 0 x11=00000000 +76604002ns 1413976 1c0011ca f4bff0ef jal x1, -182 x1=1c0011cc +76604043ns 1413978 1c001114 fe010113 addi x2, x2, -32 x2=1c009b80 x2:1c009ba0 +76604063ns 1413979 1c001116 00112e23 sw x1, 28(x2) x1:1c0011cc x2:1c009b80 PA:1c009b9c +76604083ns 1413980 1c001118 00812c23 sw x8, 24(x2) x8:00000000 x2:1c009b80 PA:1c009b98 +76604103ns 1413981 1c00111a 00912a23 sw x9, 20(x2) x9:1c009190 x2:1c009b80 PA:1c009b94 +76604123ns 1413982 1c00111c 01212823 sw x18, 16(x2) x18:1c009188 x2:1c009b80 PA:1c009b90 +76604144ns 1413983 1c00111e 01312623 sw x19, 12(x2) x19:1c009000 x2:1c009b80 PA:1c009b8c +76604164ns 1413984 1c001120 02051163 bne x10, x0, 34 x10:000000ff +76604224ns 1413987 1c001142 00a00933 add x18, x0, x10 x18=000000ff x10:000000ff +76604245ns 1413988 1c001144 02b50533 mul x10, x10, x11 x10=00000000 x10:000000ff x11:00000000 +76604265ns 1413989 1c001148 00b004b3 add x9, x0, x11 x9=00000000 x11:00000000 +76604285ns 1413990 1c00114a 00c009b3 add x19, x0, x12 x19=00000002 x12:00000002 +76604305ns 1413991 1c00114c 05050513 addi x10, x10, 80 x10=00000050 x10:00000000 +76604325ns 1413992 1c001150 01b010ef jal x1, 6170 x1=1c001154 +76604366ns 1413994 1c00296a fe010113 addi x2, x2, -32 x2=1c009b60 x2:1c009b80 +76604386ns 1413995 1c00296c 00112e23 sw x1, 28(x2) x1:1c001154 x2:1c009b60 PA:1c009b7c +76604406ns 1413996 1c00296e 00812c23 sw x8, 24(x2) x8:00000000 x2:1c009b60 PA:1c009b78 +76604426ns 1413997 1c002970 00a12623 sw x10, 12(x2) x10:00000050 x2:1c009b60 PA:1c009b6c +76604446ns 1413998 1c002972 8a4ff0ef jal x1, -3932 x1=1c002976 +76604507ns 1414001 1c001a16 d6818793 addi x15, x3, -664 x15=1c009144 x3:1c0093dc +76604527ns 1414002 1c001a1a 0007a703 lw x14, 0(x15) x14=00000000 x15:1c009144 PA:1c009144 +76604568ns 1414004 1c001a1c 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76604588ns 1414005 1c001a1e 00e7a023 sw x14, 0(x15) x14:00000001 x15:1c009144 PA:1c009144 +76604608ns 1414006 1c001a20 00008067 jalr x0, x1, 0 x1:1c002976 +76604648ns 1414008 1c002976 00c12503 lw x10, 12(x2) x10=00000050 x2:1c009b60 PA:1c009b6c +76604669ns 1414009 1c002978 791000ef jal x1, 3984 x1=1c00297c +76604709ns 1414011 1c003908 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76604729ns 1414012 1c00390c 00a005b3 add x11, x0, x10 x11=00000050 x10:00000050 +76604749ns 1414013 1c00390e c447a503 lw x10, -956(x15) x10=1c009e10 x15:1c009000 PA:1c008c44 +76604770ns 1414014 1c003912 0b60006f jal x0, 182 +76604810ns 1414016 1c0039c8 fe010113 addi x2, x2, -32 x2=1c009b40 x2:1c009b60 +76604830ns 1414017 1c0039ca 00912a23 sw x9, 20(x2) x9:00000000 x2:1c009b40 PA:1c009b54 +76604850ns 1414018 1c0039cc 00358493 addi x9, x11, 3 x9=00000053 x11:00000050 +76604871ns 1414019 1c0039d0 ffc4f493 andi x9, x9, -4 x9=00000050 x9:00000053 +76604891ns 1414020 1c0039d2 01212823 sw x18, 16(x2) x18:000000ff x2:1c009b40 PA:1c009b50 +76604911ns 1414021 1c0039d4 00112e23 sw x1, 28(x2) x1:1c00297c x2:1c009b40 PA:1c009b5c +76604931ns 1414022 1c0039d6 00812c23 sw x8, 24(x2) x8:00000000 x2:1c009b40 PA:1c009b58 +76604951ns 1414023 1c0039d8 01312623 sw x19, 12(x2) x19:00000002 x2:1c009b40 PA:1c009b4c +76604971ns 1414024 1c0039da 00848493 addi x9, x9, 8 x9=00000058 x9:00000050 +76604992ns 1414025 1c0039dc 00c00793 addi x15, x0, 12 x15=0000000c +76605012ns 1414026 1c0039de 00a00933 add x18, x0, x10 x18=1c009e10 x10:1c009e10 +76605032ns 1414027 1c0039e0 04f4f363 bgeu x9, x15, 70 x9:00000058 x15:0000000c +76605113ns 1414031 1c003a26 fc04d0e3 bge x9, x0, -64 x9:00000058 +76605194ns 1414035 1c0039e6 04b4e263 bltu x9, x11, 68 x9:00000058 x11:00000050 +76605214ns 1414036 1c0039ea 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +76605234ns 1414037 1c0039ec 87aff0ef jal x1, -3974 x1=1c0039f0 +76605295ns 1414040 1c002a66 fb1fe06f jal x0, -4176 +76605355ns 1414043 1c001a16 d6818793 addi x15, x3, -664 x15=1c009144 x3:1c0093dc +76605375ns 1414044 1c001a1a 0007a703 lw x14, 0(x15) x14=00000001 x15:1c009144 PA:1c009144 +76605416ns 1414046 1c001a1c 00170713 addi x14, x14, 1 x14=00000002 x14:00000001 +76605436ns 1414047 1c001a1e 00e7a023 sw x14, 0(x15) x14:00000002 x15:1c009144 PA:1c009144 +76605456ns 1414048 1c001a20 00008067 jalr x0, x1, 0 x1:1c0039f0 +76605496ns 1414050 1c0039f0 db81a703 lw x14, -584(x3) x14=1c00c2dc x3:1c0093dc PA:1c009194 +76605517ns 1414051 1c0039f4 db818693 addi x13, x3, -584 x13=1c009194 x3:1c0093dc +76605537ns 1414052 1c0039f8 00e00433 add x8, x0, x14 x8=1c00c2dc x14:1c00c2dc +76605557ns 1414053 1c0039fa 04041363 bne x8, x0, 70 x8:1c00c2dc +76605618ns 1414056 1c003a40 00042783 lw x15, 0(x8) x15=00000058 x8:1c00c2dc PA:1c00c2dc +76605658ns 1414058 1c003a42 409787b3 sub x15, x15, x9 x15=00000000 x15:00000058 x9:00000058 +76605678ns 1414059 1c003a44 0207cf63 blt x15, x0, 62 x15:00000000 +76605698ns 1414060 1c003a48 00b00613 addi x12, x0, 11 x12=0000000b +76605719ns 1414061 1c003a4a 00f67663 bgeu x12, x15, 12 x12:0000000b x15:00000000 +76605779ns 1414064 1c003a56 00442783 lw x15, 4(x8) x15=00000000 x8:1c00c2dc PA:1c00c2e0 +76605799ns 1414065 1c003a58 02871363 bne x14, x8, 38 x14:1c00c2dc x8:1c00c2dc +76605820ns 1414066 1c003a5c 00f6a023 sw x15, 0(x13) x15:00000000 x13:1c009194 PA:1c009194 +76605840ns 1414067 1c003a5e 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +76605860ns 1414068 1c003a60 80aff0ef jal x1, -4086 x1=1c003a64 +76605920ns 1414071 1c002a6a 8e3ff06f jal x0, -1822 +76605961ns 1414073 1c00234c fc010113 addi x2, x2, -64 x2=1c009b00 x2:1c009b40 +76605981ns 1414074 1c00234e 02812c23 sw x8, 56(x2) x8:1c00c2dc x2:1c009b00 PA:1c009b38 +76606001ns 1414075 1c002350 d6818413 addi x8, x3, -664 x8=1c009144 x3:1c0093dc +76606021ns 1414076 1c002354 00042783 lw x15, 0(x8) x15=00000002 x8:1c009144 PA:1c009144 +76606042ns 1414077 1c002356 02112e23 sw x1, 60(x2) x1:1c003a64 x2:1c009b00 PA:1c009b3c +76606062ns 1414078 1c002358 02912a23 sw x9, 52(x2) x9:00000058 x2:1c009b00 PA:1c009b34 +76606082ns 1414079 1c00235a 03212823 sw x18, 48(x2) x18:1c009e10 x2:1c009b00 PA:1c009b30 +76606102ns 1414080 1c00235c 03312623 sw x19, 44(x2) x19:00000002 x2:1c009b00 PA:1c009b2c +76606122ns 1414081 1c00235e 03412423 sw x20, 40(x2) x20:1c00918c x2:1c009b00 PA:1c009b28 +76606143ns 1414082 1c002360 03512223 sw x21, 36(x2) x21:a5a5a5a5 x2:1c009b00 PA:1c009b24 +76606163ns 1414083 1c002362 03612023 sw x22, 32(x2) x22:a5a5a5a5 x2:1c009b00 PA:1c009b20 +76606183ns 1414084 1c002364 01712e23 sw x23, 28(x2) x23:a5a5a5a5 x2:1c009b00 PA:1c009b1c +76606203ns 1414085 1c002366 02079263 bne x15, x0, 36 x15:00000002 +76606284ns 1414089 1c00238a c83ff0ef jal x1, -894 x1=1c00238e +76606324ns 1414091 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +76606405ns 1414095 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76606445ns 1414097 1c002014 00078863 beq x15, x0, 16 x15:00000001 +76606466ns 1414098 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76606486ns 1414099 1c00201a 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76606506ns 1414100 1c00201c 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76606526ns 1414101 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c009db8 PA:1c009dfc +76606567ns 1414103 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76606587ns 1414104 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c009db8 PA:1c009dfc +76606607ns 1414105 1c002024 00008067 jalr x0, x1, 0 x1:1c00238e +76606647ns 1414107 1c00238e 00042783 lw x15, 0(x8) x15=00000002 x8:1c009144 PA:1c009144 +76606688ns 1414109 1c002390 fff78793 addi x15, x15, -1 x15=00000001 x15:00000002 +76606708ns 1414110 1c002392 00f42023 sw x15, 0(x8) x15:00000001 x8:1c009144 PA:1c009144 +76606728ns 1414111 1c002394 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +76606769ns 1414113 1c002396 02078163 beq x15, x0, 34 x15:00000001 +76606789ns 1414114 1c002398 00000513 addi x10, x0, 0 x10=00000000 +76606809ns 1414115 1c00239a 00a12623 sw x10, 12(x2) x10:00000000 x2:1c009b00 PA:1c009b0c +76606829ns 1414116 1c00239c c8bff0ef jal x1, -886 x1=1c0023a0 +76606890ns 1414119 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76606930ns 1414121 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +76606950ns 1414122 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76606970ns 1414123 1c002030 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +76607011ns 1414125 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c009db8 PA:1c009dfc +76607051ns 1414127 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +76607071ns 1414128 1c002036 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76607092ns 1414129 1c002038 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76607112ns 1414130 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c009db8 PA:1c009dfc +76607152ns 1414132 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +76607172ns 1414133 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c009db8 PA:1c009dfc +76607193ns 1414134 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c009db8 PA:1c009dfc +76607233ns 1414136 1c002042 00079363 bne x15, x0, 6 x15:00000000 +76607253ns 1414137 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +76607334ns 1414141 1c002048 00008067 jalr x0, x1, 0 x1:1c0023a0 +76607374ns 1414143 1c0023a0 03c12083 lw x1, 60(x2) x1=1c003a64 x2:1c009b00 PA:1c009b3c +76607395ns 1414144 1c0023a2 03812403 lw x8, 56(x2) x8=1c00c2dc x2:1c009b00 PA:1c009b38 +76607415ns 1414145 1c0023a4 00c12503 lw x10, 12(x2) x10=00000000 x2:1c009b00 PA:1c009b0c +76607435ns 1414146 1c0023a6 03412483 lw x9, 52(x2) x9=00000058 x2:1c009b00 PA:1c009b34 +76607455ns 1414147 1c0023a8 03012903 lw x18, 48(x2) x18=1c009e10 x2:1c009b00 PA:1c009b30 +76607475ns 1414148 1c0023aa 02c12983 lw x19, 44(x2) x19=00000002 x2:1c009b00 PA:1c009b2c +76607495ns 1414149 1c0023ac 02812a03 lw x20, 40(x2) x20=1c00918c x2:1c009b00 PA:1c009b28 +76607516ns 1414150 1c0023ae 02412a83 lw x21, 36(x2) x21=a5a5a5a5 x2:1c009b00 PA:1c009b24 +76607536ns 1414151 1c0023b0 02012b03 lw x22, 32(x2) x22=a5a5a5a5 x2:1c009b00 PA:1c009b20 +76607556ns 1414152 1c0023b2 01c12b83 lw x23, 28(x2) x23=a5a5a5a5 x2:1c009b00 PA:1c009b1c +76607576ns 1414153 1c0023b4 04010113 addi x2, x2, 64 x2=1c009b40 x2:1c009b00 +76607596ns 1414154 1c0023b6 00008067 jalr x0, x1, 0 x1:1c003a64 +76607637ns 1414156 1c003a64 00b40513 addi x10, x8, 11 x10=1c00c2e7 x8:1c00c2dc +76607657ns 1414157 1c003a68 00440793 addi x15, x8, 4 x15=1c00c2e0 x8:1c00c2dc +76607677ns 1414158 1c003a6c ff857513 andi x10, x10, -8 x10=1c00c2e0 x10:1c00c2e7 +76607697ns 1414159 1c003a6e 40f50733 sub x14, x10, x15 x14=00000000 x10:1c00c2e0 x15:1c00c2e0 +76607718ns 1414160 1c003a72 fcf500e3 beq x10, x15, -64 x10:1c00c2e0 x15:1c00c2e0 +76607778ns 1414163 1c003a32 01c12083 lw x1, 28(x2) x1=1c00297c x2:1c009b40 PA:1c009b5c +76607798ns 1414164 1c003a34 01812403 lw x8, 24(x2) x8=00000000 x2:1c009b40 PA:1c009b58 +76607819ns 1414165 1c003a36 01412483 lw x9, 20(x2) x9=00000000 x2:1c009b40 PA:1c009b54 +76607839ns 1414166 1c003a38 01012903 lw x18, 16(x2) x18=000000ff x2:1c009b40 PA:1c009b50 +76607859ns 1414167 1c003a3a 00c12983 lw x19, 12(x2) x19=00000002 x2:1c009b40 PA:1c009b4c +76607879ns 1414168 1c003a3c 02010113 addi x2, x2, 32 x2=1c009b60 x2:1c009b40 +76607899ns 1414169 1c003a3e 00008067 jalr x0, x1, 0 x1:1c00297c +76607940ns 1414171 1c00297c 00a00433 add x8, x0, x10 x8=1c00c2e0 x10:1c00c2e0 +76607960ns 1414172 1c00297e 9cfff0ef jal x1, -1586 x1=1c002982 +76608000ns 1414174 1c00234c fc010113 addi x2, x2, -64 x2=1c009b20 x2:1c009b60 +76608020ns 1414175 1c00234e 02812c23 sw x8, 56(x2) x8:1c00c2e0 x2:1c009b20 PA:1c009b58 +76608041ns 1414176 1c002350 d6818413 addi x8, x3, -664 x8=1c009144 x3:1c0093dc +76608061ns 1414177 1c002354 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +76608081ns 1414178 1c002356 02112e23 sw x1, 60(x2) x1:1c002982 x2:1c009b20 PA:1c009b5c +76608101ns 1414179 1c002358 02912a23 sw x9, 52(x2) x9:00000000 x2:1c009b20 PA:1c009b54 +76608121ns 1414180 1c00235a 03212823 sw x18, 48(x2) x18:000000ff x2:1c009b20 PA:1c009b50 +76608142ns 1414181 1c00235c 03312623 sw x19, 44(x2) x19:00000002 x2:1c009b20 PA:1c009b4c +76608162ns 1414182 1c00235e 03412423 sw x20, 40(x2) x20:1c00918c x2:1c009b20 PA:1c009b48 +76608182ns 1414183 1c002360 03512223 sw x21, 36(x2) x21:a5a5a5a5 x2:1c009b20 PA:1c009b44 +76608202ns 1414184 1c002362 03612023 sw x22, 32(x2) x22:a5a5a5a5 x2:1c009b20 PA:1c009b40 +76608222ns 1414185 1c002364 01712e23 sw x23, 28(x2) x23:a5a5a5a5 x2:1c009b20 PA:1c009b3c +76608243ns 1414186 1c002366 02079263 bne x15, x0, 36 x15:00000001 +76608323ns 1414190 1c00238a c83ff0ef jal x1, -894 x1=1c00238e +76608364ns 1414192 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +76608444ns 1414196 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76608485ns 1414198 1c002014 00078863 beq x15, x0, 16 x15:00000001 +76608505ns 1414199 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76608525ns 1414200 1c00201a 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76608545ns 1414201 1c00201c 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76608566ns 1414202 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c009db8 PA:1c009dfc +76608606ns 1414204 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76608626ns 1414205 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c009db8 PA:1c009dfc +76608646ns 1414206 1c002024 00008067 jalr x0, x1, 0 x1:1c00238e +76608687ns 1414208 1c00238e 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +76608727ns 1414210 1c002390 fff78793 addi x15, x15, -1 x15=00000000 x15:00000001 +76608747ns 1414211 1c002392 00f42023 sw x15, 0(x8) x15:00000000 x8:1c009144 PA:1c009144 +76608768ns 1414212 1c002394 00042783 lw x15, 0(x8) x15=00000000 x8:1c009144 PA:1c009144 +76608808ns 1414214 1c002396 02078163 beq x15, x0, 34 x15:00000000 +76608869ns 1414217 1c0023b8 d601a783 lw x15, -672(x3) x15=00000003 x3:1c0093dc PA:1c00913c +76608909ns 1414219 1c0023bc fc078ee3 beq x15, x0, -36 x15:00000003 +76608929ns 1414220 1c0023be 1c009937 lui x18, 0x1c009000 x18=1c009000 +76608949ns 1414221 1c0023c2 00000413 addi x8, x0, 0 x8=00000000 +76608969ns 1414222 1c0023c4 93818493 addi x9, x3, -1736 x9=1c008d14 x3:1c0093dc +76608990ns 1414223 1c0023c8 00100993 addi x19, x0, 1 x19=00000001 +76609010ns 1414224 1c0023ca c8890913 addi x18, x18, -888 x18=1c008c88 x18:1c009000 +76609030ns 1414225 1c0023ce 01400a93 addi x21, x0, 20 x21=00000014 +76609050ns 1414226 1c0023d0 04c0006f jal x0, 76 +76609091ns 1414228 1c00241c 0004a783 lw x15, 0(x9) x15=00000000 x9:1c008d14 PA:1c008d14 +76609131ns 1414230 1c00241e fa079ae3 bne x15, x0, -76 x15:00000000 +76609151ns 1414231 1c002420 00040363 beq x8, x0, 6 x8:00000000 +76609232ns 1414235 1c002426 d8018713 addi x14, x3, -640 x14=1c00915c x3:1c0093dc +76609252ns 1414236 1c00242a 00072483 lw x9, 0(x14) x9=00000000 x14:1c00915c PA:1c00915c +76609272ns 1414237 1c00242c d8018413 addi x8, x3, -640 x8=1c00915c x3:1c0093dc +76609293ns 1414238 1c002430 00048d63 beq x9, x0, 26 x9:00000000 +76609373ns 1414242 1c00244a d8c1a783 lw x15, -628(x3) x15=00000000 x3:1c0093dc PA:1c009168 +76609414ns 1414244 1c00244e f40785e3 beq x15, x0, -182 x15:00000000 +76609474ns 1414247 1c002398 00000513 addi x10, x0, 0 x10=00000000 +76609494ns 1414248 1c00239a 00a12623 sw x10, 12(x2) x10:00000000 x2:1c009b20 PA:1c009b2c +76609515ns 1414249 1c00239c c8bff0ef jal x1, -886 x1=1c0023a0 +76609575ns 1414252 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76609616ns 1414254 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +76609636ns 1414255 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76609656ns 1414256 1c002030 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +76609696ns 1414258 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c009db8 PA:1c009dfc +76609737ns 1414260 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +76609757ns 1414261 1c002036 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76609777ns 1414262 1c002038 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76609797ns 1414263 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c009db8 PA:1c009dfc +76609838ns 1414265 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +76609858ns 1414266 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c009db8 PA:1c009dfc +76609878ns 1414267 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c009db8 PA:1c009dfc +76609919ns 1414269 1c002042 00079363 bne x15, x0, 6 x15:00000000 +76609939ns 1414270 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +76610019ns 1414274 1c002048 00008067 jalr x0, x1, 0 x1:1c0023a0 +76610060ns 1414276 1c0023a0 03c12083 lw x1, 60(x2) x1=1c002982 x2:1c009b20 PA:1c009b5c +76610080ns 1414277 1c0023a2 03812403 lw x8, 56(x2) x8=1c00c2e0 x2:1c009b20 PA:1c009b58 +76610100ns 1414278 1c0023a4 00c12503 lw x10, 12(x2) x10=00000000 x2:1c009b20 PA:1c009b2c +76610120ns 1414279 1c0023a6 03412483 lw x9, 52(x2) x9=00000000 x2:1c009b20 PA:1c009b54 +76610141ns 1414280 1c0023a8 03012903 lw x18, 48(x2) x18=000000ff x2:1c009b20 PA:1c009b50 +76610161ns 1414281 1c0023aa 02c12983 lw x19, 44(x2) x19=00000002 x2:1c009b20 PA:1c009b4c +76610181ns 1414282 1c0023ac 02812a03 lw x20, 40(x2) x20=1c00918c x2:1c009b20 PA:1c009b48 +76610201ns 1414283 1c0023ae 02412a83 lw x21, 36(x2) x21=a5a5a5a5 x2:1c009b20 PA:1c009b44 +76610221ns 1414284 1c0023b0 02012b03 lw x22, 32(x2) x22=a5a5a5a5 x2:1c009b20 PA:1c009b40 +76610242ns 1414285 1c0023b2 01c12b83 lw x23, 28(x2) x23=a5a5a5a5 x2:1c009b20 PA:1c009b3c +76610262ns 1414286 1c0023b4 04010113 addi x2, x2, 64 x2=1c009b60 x2:1c009b20 +76610282ns 1414287 1c0023b6 00008067 jalr x0, x1, 0 x1:1c002982 +76610322ns 1414289 1c002982 00041363 bne x8, x0, 6 x8:1c00c2e0 +76610383ns 1414292 1c002988 01c12083 lw x1, 28(x2) x1=1c001154 x2:1c009b60 PA:1c009b7c +76610403ns 1414293 1c00298a 00800533 add x10, x0, x8 x10=1c00c2e0 x8:1c00c2e0 +76610423ns 1414294 1c00298c 01812403 lw x8, 24(x2) x8=00000000 x2:1c009b60 PA:1c009b78 +76610443ns 1414295 1c00298e 02010113 addi x2, x2, 32 x2=1c009b80 x2:1c009b60 +76610464ns 1414296 1c002990 00008067 jalr x0, x1, 0 x1:1c001154 +76610504ns 1414298 1c001154 00a00433 add x8, x0, x10 x8=1c00c2e0 x10:1c00c2e0 +76610524ns 1414299 1c001156 00050e63 beq x10, x0, 28 x10:1c00c2e0 +76610544ns 1414300 1c001158 00a007b3 add x15, x0, x10 x15=1c00c2e0 x10:1c00c2e0 +76610565ns 1414301 1c00115a 00048363 beq x9, x0, 6 x9:00000000 +76610625ns 1414304 1c001160 00f42023 sw x15, 0(x8) x15:1c00c2e0 x8:1c00c2e0 PA:1c00c2e0 +76610645ns 1414305 1c001162 03242e23 sw x18, 60(x8) x18:000000ff x8:1c00c2e0 PA:1c00c31c +76610666ns 1414306 1c001166 04942023 sw x9, 64(x8) x9:00000000 x8:1c00c2e0 PA:1c00c320 +76610686ns 1414307 1c001168 00100593 addi x11, x0, 1 x11=00000001 +76610706ns 1414308 1c00116a 00800533 add x10, x0, x8 x10=1c00c2e0 x8:1c00c2e0 +76610726ns 1414309 1c00116c f1fff0ef jal x1, -226 x1=1c00116e +76610767ns 1414311 1c00108a ff010113 addi x2, x2, -16 x2=1c009b70 x2:1c009b80 +76610787ns 1414312 1c00108c 00112623 sw x1, 12(x2) x1:1c00116e x2:1c009b70 PA:1c009b7c +76610807ns 1414313 1c00108e 00812423 sw x8, 8(x2) x8:1c00c2e0 x2:1c009b70 PA:1c009b78 +76610827ns 1414314 1c001090 00912223 sw x9, 4(x2) x9:00000000 x2:1c009b70 PA:1c009b74 +76610847ns 1414315 1c001092 02051163 bne x10, x0, 34 x10:1c00c2e0 +76610908ns 1414318 1c0010b4 00a00433 add x8, x0, x10 x8=1c00c2e0 x10:1c00c2e0 +76610928ns 1414319 1c0010b6 00b004b3 add x9, x0, x11 x9=00000001 x11:00000001 +76610948ns 1414320 1c0010b8 755000ef jal x1, 3924 x1=1c0010bc +76610989ns 1414322 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +76611069ns 1414326 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76611110ns 1414328 1c002014 00078863 beq x15, x0, 16 x15:00000001 +76611130ns 1414329 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76611150ns 1414330 1c00201a 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76611170ns 1414331 1c00201c 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76611191ns 1414332 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c009db8 PA:1c009dfc +76611231ns 1414334 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76611251ns 1414335 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c009db8 PA:1c009dfc +76611271ns 1414336 1c002024 00008067 jalr x0, x1, 0 x1:1c0010bc +76611312ns 1414338 1c0010bc 04042683 lw x13, 64(x8) x13=00000000 x8:1c00c2e0 PA:1c00c320 +76611332ns 1414339 1c0010be 03c42783 lw x15, 60(x8) x15=000000ff x8:1c00c2e0 PA:1c00c31c +76611352ns 1414340 1c0010c0 00042703 lw x14, 0(x8) x14=1c00c2e0 x8:1c00c2e0 PA:1c00c2e0 +76611372ns 1414341 1c0010c2 02042c23 sw x0, 56(x8) x8:1c00c2e0 PA:1c00c318 +76611393ns 1414342 1c0010c6 02f687b3 mul x15, x13, x15 x15=00000000 x13:00000000 x15:000000ff +76611413ns 1414343 1c0010ca 00e42223 sw x14, 4(x8) x14:1c00c2e0 x8:1c00c2e0 PA:1c00c2e4 +76611433ns 1414344 1c0010cc 00f70633 add x12, x14, x15 x12=1c00c2e0 x14:1c00c2e0 x15:00000000 +76611453ns 1414345 1c0010d0 40d787b3 sub x15, x15, x13 x15=00000000 x15:00000000 x13:00000000 +76611473ns 1414346 1c0010d2 00e787b3 add x15, x15, x14 x15=1c00c2e0 x15:00000000 x14:1c00c2e0 +76611493ns 1414347 1c0010d4 00f42623 sw x15, 12(x8) x15:1c00c2e0 x8:1c00c2e0 PA:1c00c2ec +76611514ns 1414348 1c0010d6 fff00793 addi x15, x0, -1 x15=ffffffff +76611534ns 1414349 1c0010d8 04f40223 sb x15, 68(x8) x15:ffffffff x8:1c00c2e0 PA:1c00c324 +76611554ns 1414350 1c0010dc 00c42423 sw x12, 8(x8) x12:1c00c2e0 x8:1c00c2e0 PA:1c00c2e8 +76611574ns 1414351 1c0010de 04f402a3 sb x15, 69(x8) x15:ffffffff x8:1c00c2e0 PA:1c00c325 +76611594ns 1414352 1c0010e2 02049263 bne x9, x0, 36 x9:00000001 +76611675ns 1414356 1c001106 01040513 addi x10, x8, 16 x10=1c00c2f0 x8:1c00c2e0 +76611695ns 1414357 1c00110a dbdff0ef jal x1, -580 x1=1c00110c +76611756ns 1414360 1c000ec6 00850793 addi x15, x10, 8 x15=1c00c2f8 x10:1c00c2f0 +76611776ns 1414361 1c000eca fff00713 addi x14, x0, -1 x14=ffffffff +76611796ns 1414362 1c000ecc 00f52223 sw x15, 4(x10) x15:1c00c2f8 x10:1c00c2f0 PA:1c00c2f4 +76611817ns 1414363 1c000ece 00e52423 sw x14, 8(x10) x14:ffffffff x10:1c00c2f0 PA:1c00c2f8 +76611837ns 1414364 1c000ed0 00f52623 sw x15, 12(x10) x15:1c00c2f8 x10:1c00c2f0 PA:1c00c2fc +76611857ns 1414365 1c000ed2 00f52823 sw x15, 16(x10) x15:1c00c2f8 x10:1c00c2f0 PA:1c00c300 +76611877ns 1414366 1c000ed4 00052023 sw x0, 0(x10) x10:1c00c2f0 PA:1c00c2f0 +76611897ns 1414367 1c000ed8 00008067 jalr x0, x1, 0 x1:1c00110c +76611938ns 1414369 1c00110c 02440513 addi x10, x8, 36 x10=1c00c304 x8:1c00c2e0 +76611958ns 1414370 1c001110 db7ff0ef jal x1, -586 x1=1c001112 +76612018ns 1414373 1c000ec6 00850793 addi x15, x10, 8 x15=1c00c30c x10:1c00c304 +76612039ns 1414374 1c000eca fff00713 addi x14, x0, -1 x14=ffffffff +76612059ns 1414375 1c000ecc 00f52223 sw x15, 4(x10) x15:1c00c30c x10:1c00c304 PA:1c00c308 +76612079ns 1414376 1c000ece 00e52423 sw x14, 8(x10) x14:ffffffff x10:1c00c304 PA:1c00c30c +76612099ns 1414377 1c000ed0 00f52623 sw x15, 12(x10) x15:1c00c30c x10:1c00c304 PA:1c00c310 +76612119ns 1414378 1c000ed2 00f52823 sw x15, 16(x10) x15:1c00c30c x10:1c00c304 PA:1c00c314 +76612140ns 1414379 1c000ed4 00052023 sw x0, 0(x10) x10:1c00c304 PA:1c00c304 +76612160ns 1414380 1c000ed8 00008067 jalr x0, x1, 0 x1:1c001112 +76612200ns 1414382 1c001112 fe5ff06f jal x0, -28 +76612261ns 1414385 1c0010f6 731000ef jal x1, 3888 x1=1c0010fa +76612321ns 1414388 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76612362ns 1414390 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +76612382ns 1414391 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76612402ns 1414392 1c002030 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +76612443ns 1414394 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c009db8 PA:1c009dfc +76612483ns 1414396 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +76612503ns 1414397 1c002036 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76612523ns 1414398 1c002038 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76612543ns 1414399 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c009db8 PA:1c009dfc +76612584ns 1414401 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +76612604ns 1414402 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c009db8 PA:1c009dfc +76612624ns 1414403 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c009db8 PA:1c009dfc +76612665ns 1414405 1c002042 00079363 bne x15, x0, 6 x15:00000000 +76612685ns 1414406 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +76612766ns 1414410 1c002048 00008067 jalr x0, x1, 0 x1:1c0010fa +76612806ns 1414412 1c0010fa 00c12083 lw x1, 12(x2) x1=1c00116e x2:1c009b70 PA:1c009b7c +76612826ns 1414413 1c0010fc 00812403 lw x8, 8(x2) x8=1c00c2e0 x2:1c009b70 PA:1c009b78 +76612846ns 1414414 1c0010fe 00412483 lw x9, 4(x2) x9=00000000 x2:1c009b70 PA:1c009b74 +76612867ns 1414415 1c001100 00100513 addi x10, x0, 1 x10=00000001 +76612887ns 1414416 1c001102 01010113 addi x2, x2, 16 x2=1c009b80 x2:1c009b70 +76612907ns 1414417 1c001104 00008067 jalr x0, x1, 0 x1:1c00116e +76612967ns 1414420 1c00116e 05340623 sb x19, 76(x8) x19:00000002 x8:1c00c2e0 PA:1c00c32c +76612988ns 1414421 1c001172 01c12083 lw x1, 28(x2) x1=1c0011cc x2:1c009b80 PA:1c009b9c +76613008ns 1414422 1c001174 00800533 add x10, x0, x8 x10=1c00c2e0 x8:1c00c2e0 +76613028ns 1414423 1c001176 01812403 lw x8, 24(x2) x8=00000000 x2:1c009b80 PA:1c009b98 +76613048ns 1414424 1c001178 01412483 lw x9, 20(x2) x9=1c009190 x2:1c009b80 PA:1c009b94 +76613068ns 1414425 1c00117a 01012903 lw x18, 16(x2) x18=1c009188 x2:1c009b80 PA:1c009b90 +76613089ns 1414426 1c00117c 00c12983 lw x19, 12(x2) x19=1c009000 x2:1c009b80 PA:1c009b8c +76613109ns 1414427 1c00117e 02010113 addi x2, x2, 32 x2=1c009ba0 x2:1c009b80 +76613129ns 1414428 1c001180 00008067 jalr x0, x1, 0 x1:1c0011cc +76613169ns 1414430 1c0011cc 00050263 beq x10, x0, 4 x10:1c00c2e0 +76613190ns 1414431 1c0011ce 02852c23 sw x8, 56(x10) x8:00000000 x10:1c00c2e0 PA:1c00c318 +76613210ns 1414432 1c0011d0 00c12083 lw x1, 12(x2) x1=1c003454 x2:1c009ba0 PA:1c009bac +76613230ns 1414433 1c0011d2 00812403 lw x8, 8(x2) x8=1c009ce0 x2:1c009ba0 PA:1c009ba8 +76613250ns 1414434 1c0011d4 01010113 addi x2, x2, 16 x2=1c009bb0 x2:1c009ba0 +76613270ns 1414435 1c0011d6 00008067 jalr x0, x1, 0 x1:1c003454 +76613311ns 1414437 1c003454 02a42a23 sw x10, 52(x8) x10:1c00c2e0 x8:1c009ce0 PA:1c009d14 +76613331ns 1414438 1c003456 00050b63 beq x10, x0, 22 x10:1c00c2e0 +76613351ns 1414439 1c003458 1c0037b7 lui x15, 0x1c003000 x15=1c003000 +76613371ns 1414440 1c00345c 40c78793 addi x15, x15, 1036 x15=1c00340c x15:1c003000 +76613392ns 1414441 1c003460 02f42c23 sw x15, 56(x8) x15:1c00340c x8:1c009ce0 PA:1c009d18 +76613412ns 1414442 1c003462 1c0037b7 lui x15, 0x1c003000 x15=1c003000 +76613432ns 1414443 1c003466 3da78793 addi x15, x15, 986 x15=1c0033da x15:1c003000 +76613452ns 1414444 1c00346a 02f42e23 sw x15, 60(x8) x15:1c0033da x8:1c009ce0 PA:1c009d1c +76613472ns 1414445 1c00346c 00100793 addi x15, x0, 1 x15=00000001 +76613492ns 1414446 1c00346e 04f403a3 sb x15, 71(x8) x15:00000001 x8:1c009ce0 PA:1c009d27 +76613513ns 1414447 1c003472 fff00793 addi x15, x0, -1 x15=ffffffff +76613533ns 1414448 1c003474 00c12083 lw x1, 12(x2) x1=1c0036a2 x2:1c009bb0 PA:1c009bbc +76613553ns 1414449 1c003476 04f402a3 sb x15, 69(x8) x15:ffffffff x8:1c009ce0 PA:1c009d25 +76613573ns 1414450 1c00347a 00800533 add x10, x0, x8 x10=1c009ce0 x8:1c009ce0 +76613593ns 1414451 1c00347c 00812403 lw x8, 8(x2) x8=00000000 x2:1c009bb0 PA:1c009bb8 +76613614ns 1414452 1c00347e 01010113 addi x2, x2, 16 x2=1c009bc0 x2:1c009bb0 +76613634ns 1414453 1c003480 00008067 jalr x0, x1, 0 x1:1c0036a2 +76613674ns 1414455 1c0036a2 00a00733 add x14, x0, x10 x14=1c009ce0 x10:1c009ce0 +76613694ns 1414456 1c0036a4 00100693 addi x13, x0, 1 x13=00000001 +76613715ns 1414457 1c0036a6 02800613 addi x12, x0, 40 x12=00000028 +76613735ns 1414458 1c0036aa 01810593 addi x11, x2, 24 x11=1c009bd8 x2:1c009bc0 +76613755ns 1414459 1c0036ac 02010513 addi x10, x2, 32 x10=1c009be0 x2:1c009bc0 +76613775ns 1414460 1c0036ae c94ff0ef jal x1, -2924 x1=1c0036b2 +76613816ns 1414462 1c002b42 00852503 lw x10, 8(x10) x10=1c00b8c0 x10:1c009be0 PA:1c009be8 +76613836ns 1414463 1c002b44 2820006f jal x0, 642 +76613896ns 1414466 1c002dc6 00452e83 lw x29, 4(x10) x29=1c00b890 x10:1c00b8c0 PA:1c00b8c4 +76613917ns 1414467 1c002dca fd010113 addi x2, x2, -48 x2=1c009b90 x2:1c009bc0 +76613937ns 1414468 1c002dcc 02112623 sw x1, 44(x2) x1:1c0036b2 x2:1c009b90 PA:1c009bbc +76613957ns 1414469 1c002dce 02812423 sw x8, 40(x2) x8:00000000 x2:1c009b90 PA:1c009bb8 +76613977ns 1414470 1c002dd0 00c008b3 add x17, x0, x12 x17=00000028 x12:00000028 +76613997ns 1414471 1c002dd2 00e00633 add x12, x0, x14 x12=1c009ce0 x14:1c009ce0 +76614017ns 1414472 1c002dd4 00010737 lui x14, 0x10000 x14=00010000 +76614038ns 1414473 1c002dd6 014ec783 lbu x15, 20(x29) x15=00000000 x29:1c00b890 PA:1c00b8a4 +76614058ns 1414474 1c002dda 00852803 lw x16, 8(x10) x16=00000003 x10:1c00b8c0 PA:1c00b8c8 +76614078ns 1414475 1c002dde 01177463 bgeu x14, x17, 8 x14:00010000 x17:00000028 +76614159ns 1414479 1c002de6 30047473 csrrci x8, 0x00000008, 0x300 x8=00000088 +76614240ns 1414483 1c002dea 03954303 lbu x6, 57(x10) x6=00000000 x10:1c00b8c0 PA:1c00b8f9 +76614280ns 1414485 1c002dee 0a030963 beq x6, x0, 178 x6:00000000 +76614341ns 1414488 1c002ea0 00000713 addi x14, x0, 0 x14=00000000 +76614361ns 1414489 1c002ea2 00800e13 addi x28, x0, 8 x28=00000008 +76614381ns 1414490 1c002ea4 f5fff06f jal x0, -162 +76614442ns 1414493 1c002e02 00ceaf03 lw x30, 12(x29) x30=00000000 x29:1c00b890 PA:1c00b89c +76614482ns 1414495 1c002e06 0a0f1863 bne x30, x0, 176 x30:00000000 +76614502ns 1414496 1c002e0a 03854703 lbu x14, 56(x10) x14=00000000 x10:1c00b8c0 PA:1c00b8f8 +76614522ns 1414497 1c002e0e 01052623 sw x16, 12(x10) x16:00000003 x10:1c00b8c0 PA:1c00b8cc +76614542ns 1414498 1c002e12 10000837 lui x16, 0x10000000 x16=10000000 +76614563ns 1414499 1c002e16 01076733 or x14, x14, x16 x14=10000000 x14:00000000 x16:10000000 +76614583ns 1414500 1c002e1a 00e52823 sw x14, 16(x10) x14:10000000 x10:1c00b8c0 PA:1c00b8d0 +76614603ns 1414501 1c002e1c fffe0713 addi x14, x28, -1 x14=00000007 x28:00000008 +76614623ns 1414502 1c002e20 03c8de33 divu x28, x17, x28 x28=00000005 x17:00000028 x28:00000008 +76615249ns 1414533 1c002e24 00c6f813 andi x16, x13, 12 x16=00000000 x13:00000001 +76615269ns 1414534 1c002e28 ffc80813 addi x16, x16, -4 x16=fffffffc x16:00000000 +76615290ns 1414535 1c002e2a 00183813 sltiu x16, x16, 1 x16=00000000 x16:fffffffc +76615310ns 1414536 1c002e2e 01071713 slli x14, x14, 0x10 x14=00070000 x14:00000007 +76615330ns 1414537 1c002e30 01b81813 slli x16, x16, 0x1b x16=00000000 x16:00000000 +76615350ns 1414538 1c002e32 00e86833 or x16, x16, x14 x16=00070000 x16:00000000 x14:00070000 +76615370ns 1414539 1c002e36 60000737 lui x14, 0x60000000 x14=60000000 +76615391ns 1414540 1c002e3a 00e86833 or x16, x16, x14 x16=60070000 x16:00070000 x14:60000000 +76615411ns 1414541 1c002e3e 0036f693 andi x13, x13, 3 x13=00000001 x13:00000001 +76615431ns 1414542 1c002e40 00100713 addi x14, x0, 1 x14=00000001 +76615451ns 1414543 1c002e42 fffe0e13 addi x28, x28, -1 x28=00000004 x28:00000005 +76615471ns 1414544 1c002e44 01c86833 or x16, x16, x28 x16=60070004 x16:60070000 x28:00000004 +76615491ns 1414545 1c002e48 01052a23 sw x16, 20(x10) x16:60070004 x10:1c00b8c0 PA:1c00b8d4 +76615512ns 1414546 1c002e4c 06e68163 beq x13, x14, 98 x13:00000001 x14:00000001 +76615592ns 1414550 1c002eae 900006b7 lui x13, 0x90000000 x13=90000000 +76615613ns 1414551 1c002eb2 00368693 addi x13, x13, 3 x13=90000003 x13:90000000 +76615633ns 1414552 1c002eb4 fa3ff06f jal x0, -94 +76615673ns 1414554 1c002e56 00178793 addi x15, x15, 1 x15=00000001 x15:00000000 +76615693ns 1414555 1c002e58 1a102737 lui x14, 0x1a102000 x14=1a102000 +76615714ns 1414556 1c002e5c 00d52c23 sw x13, 24(x10) x13:90000003 x10:1c00b8c0 PA:1c00b8d8 +76615734ns 1414557 1c002e5e 08070713 addi x14, x14, 128 x14=1a102080 x14:1a102000 +76615754ns 1414558 1c002e62 00779793 slli x15, x15, 0x7 x15=00000080 x15:00000001 +76615774ns 1414559 1c002e64 00cea623 sw x12, 12(x29) x12:1c009ce0 x29:1c00b890 PA:1c00b89c +76615794ns 1414560 1c002e68 000ea423 sw x0, 8(x29) x29:1c00b890 PA:1c00b898 +76615815ns 1414561 1c002e6c 00e787b3 add x15, x15, x14 x15=1a102100 x15:00000080 x14:1a102080 +76615835ns 1414562 1c002e6e 00c50513 addi x10, x10, 12 x10=1c00b8cc x10:1c00b8c0 +76615855ns 1414563 1c002e70 00078793 addi x15, x15, 0 x15=1a102100 x15:1a102100 +76615875ns 1414564 1c002e74 02a7a023 sw x10, 32(x15) x10:1c00b8cc x15:1a102100 PA:1a102120 +76615895ns 1414565 1c002e76 01000713 addi x14, x0, 16 x14=00000010 +76615956ns 1414568 1c002e78 02e7a223 sw x14, 36(x15) x14:00000010 x15:1a102100 PA:1a102124 +76615976ns 1414569 1c002e7a 01400713 addi x14, x0, 20 x14=00000014 +76616037ns 1414572 1c002e7c 02e7a423 sw x14, 40(x15) x14:00000014 x15:1a102100 PA:1a102128 +76616057ns 1414573 1c002e7e 00131313 slli x6, x6, 0x1 x6=00000000 x6:00000000 +76616117ns 1414576 1c002e80 01036313 ori x6, x6, 16 x6=00000010 x6:00000000 +76616138ns 1414577 1c002e84 00b7a823 sw x11, 16(x15) x11:1c009bd8 x15:1a102100 PA:1a102110 +76616158ns 1414578 1c002e86 00788893 addi x17, x17, 7 x17=0000002f x17:00000028 +76616218ns 1414581 1c002e88 0038d893 srli x17, x17, 0x3 x17=00000005 x17:0000002f +76616239ns 1414582 1c002e8c 0117aa23 sw x17, 20(x15) x17:00000005 x15:1a102100 PA:1a102114 +76616259ns 1414583 1c002e90 0067ac23 sw x6, 24(x15) x6:00000010 x15:1a102100 PA:1a102118 +76616340ns 1414587 1c002e94 00800533 add x10, x0, x8 x10=00000088 x8:00000088 +76616400ns 1414590 1c002e96 02812403 lw x8, 40(x2) x8=00000000 x2:1c009b90 PA:1c009bb8 +76616420ns 1414591 1c002e98 02c12083 lw x1, 44(x2) x1=1c0036b2 x2:1c009b90 PA:1c009bbc +76616441ns 1414592 1c002e9a 03010113 addi x2, x2, 48 x2=1c009bc0 x2:1c009b90 +76616461ns 1414593 1c002e9c d1dff06f jal x0, -740 +76616501ns 1414595 1c002bb8 30051073 csrrw x0, x10, 0x300 x10:00000088 +76616582ns 1414599 1c002bbc 00008067 jalr x0, x1, 0 x1:1c0036b2 +76616642ns 1414602 1c0036b2 00092583 lw x11, 0(x18) x11=1c00bfc8 x18:1c009188 PA:1c009188 +76616663ns 1414603 1c0036b6 16810513 addi x10, x2, 360 x10=1c009d28 x2:1c009bc0 +76616683ns 1414604 1c0036b8 00b12623 sw x11, 12(x2) x11:1c00bfc8 x2:1c009bc0 PA:1c009bcc +76616703ns 1414605 1c0036ba d81ff0ef jal x1, -640 x1=1c0036be +76616743ns 1414607 1c00343a ff010113 addi x2, x2, -16 x2=1c009bb0 x2:1c009bc0 +76616764ns 1414608 1c00343c 00812423 sw x8, 8(x2) x8:00000000 x2:1c009bb0 PA:1c009bb8 +76616784ns 1414609 1c00343e 00112623 sw x1, 12(x2) x1:1c0036be x2:1c009bb0 PA:1c009bbc +76616804ns 1414610 1c003440 00100793 addi x15, x0, 1 x15=00000001 +76616824ns 1414611 1c003442 00a00433 add x8, x0, x10 x8=1c009d28 x10:1c009d28 +76616844ns 1414612 1c003444 00f52823 sw x15, 16(x10) x15:00000001 x10:1c009d28 PA:1c009d38 +76616865ns 1414613 1c003446 04050223 sb x0, 68(x10) x10:1c009d28 PA:1c009d6c +76616885ns 1414614 1c00344a 00000593 addi x11, x0, 0 x11=00000000 +76616905ns 1414615 1c00344c 0ff00513 addi x10, x0, 255 x10=000000ff +76616925ns 1414616 1c003450 d33fd0ef jal x1, -8910 x1=1c003454 +76616966ns 1414618 1c001182 ff010113 addi x2, x2, -16 x2=1c009ba0 x2:1c009bb0 +76616986ns 1414619 1c001184 00112623 sw x1, 12(x2) x1:1c003454 x2:1c009ba0 PA:1c009bac +76617006ns 1414620 1c001186 00812423 sw x8, 8(x2) x8:1c009d28 x2:1c009ba0 PA:1c009ba8 +76617026ns 1414621 1c001188 02051163 bne x10, x0, 34 x10:000000ff +76617087ns 1414624 1c0011aa 00b00433 add x8, x0, x11 x8=00000000 x11:00000000 +76617107ns 1414625 1c0011ac 00b57d63 bgeu x10, x11, 26 x10:000000ff x11:00000000 +76617167ns 1414628 1c0011c6 00200613 addi x12, x0, 2 x12=00000002 +76617188ns 1414629 1c0011c8 00000593 addi x11, x0, 0 x11=00000000 +76617208ns 1414630 1c0011ca f4bff0ef jal x1, -182 x1=1c0011cc +76617248ns 1414632 1c001114 fe010113 addi x2, x2, -32 x2=1c009b80 x2:1c009ba0 +76617268ns 1414633 1c001116 00112e23 sw x1, 28(x2) x1:1c0011cc x2:1c009b80 PA:1c009b9c +76617289ns 1414634 1c001118 00812c23 sw x8, 24(x2) x8:00000000 x2:1c009b80 PA:1c009b98 +76617309ns 1414635 1c00111a 00912a23 sw x9, 20(x2) x9:1c009190 x2:1c009b80 PA:1c009b94 +76617329ns 1414636 1c00111c 01212823 sw x18, 16(x2) x18:1c009188 x2:1c009b80 PA:1c009b90 +76617349ns 1414637 1c00111e 01312623 sw x19, 12(x2) x19:1c009000 x2:1c009b80 PA:1c009b8c +76617369ns 1414638 1c001120 02051163 bne x10, x0, 34 x10:000000ff +76617430ns 1414641 1c001142 00a00933 add x18, x0, x10 x18=000000ff x10:000000ff +76617450ns 1414642 1c001144 02b50533 mul x10, x10, x11 x10=00000000 x10:000000ff x11:00000000 +76617470ns 1414643 1c001148 00b004b3 add x9, x0, x11 x9=00000000 x11:00000000 +76617491ns 1414644 1c00114a 00c009b3 add x19, x0, x12 x19=00000002 x12:00000002 +76617511ns 1414645 1c00114c 05050513 addi x10, x10, 80 x10=00000050 x10:00000000 +76617531ns 1414646 1c001150 01b010ef jal x1, 6170 x1=1c001154 +76617571ns 1414648 1c00296a fe010113 addi x2, x2, -32 x2=1c009b60 x2:1c009b80 +76617591ns 1414649 1c00296c 00112e23 sw x1, 28(x2) x1:1c001154 x2:1c009b60 PA:1c009b7c +76617612ns 1414650 1c00296e 00812c23 sw x8, 24(x2) x8:00000000 x2:1c009b60 PA:1c009b78 +76617632ns 1414651 1c002970 00a12623 sw x10, 12(x2) x10:00000050 x2:1c009b60 PA:1c009b6c +76617652ns 1414652 1c002972 8a4ff0ef jal x1, -3932 x1=1c002976 +76617713ns 1414655 1c001a16 d6818793 addi x15, x3, -664 x15=1c009144 x3:1c0093dc +76617733ns 1414656 1c001a1a 0007a703 lw x14, 0(x15) x14=00000000 x15:1c009144 PA:1c009144 +76617773ns 1414658 1c001a1c 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76617793ns 1414659 1c001a1e 00e7a023 sw x14, 0(x15) x14:00000001 x15:1c009144 PA:1c009144 +76617814ns 1414660 1c001a20 00008067 jalr x0, x1, 0 x1:1c002976 +76617854ns 1414662 1c002976 00c12503 lw x10, 12(x2) x10=00000050 x2:1c009b60 PA:1c009b6c +76617874ns 1414663 1c002978 791000ef jal x1, 3984 x1=1c00297c +76617915ns 1414665 1c003908 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76617935ns 1414666 1c00390c 00a005b3 add x11, x0, x10 x11=00000050 x10:00000050 +76617955ns 1414667 1c00390e c447a503 lw x10, -956(x15) x10=1c009e10 x15:1c009000 PA:1c008c44 +76617975ns 1414668 1c003912 0b60006f jal x0, 182 +76618015ns 1414670 1c0039c8 fe010113 addi x2, x2, -32 x2=1c009b40 x2:1c009b60 +76618036ns 1414671 1c0039ca 00912a23 sw x9, 20(x2) x9:00000000 x2:1c009b40 PA:1c009b54 +76618056ns 1414672 1c0039cc 00358493 addi x9, x11, 3 x9=00000053 x11:00000050 +76618076ns 1414673 1c0039d0 ffc4f493 andi x9, x9, -4 x9=00000050 x9:00000053 +76618096ns 1414674 1c0039d2 01212823 sw x18, 16(x2) x18:000000ff x2:1c009b40 PA:1c009b50 +76618116ns 1414675 1c0039d4 00112e23 sw x1, 28(x2) x1:1c00297c x2:1c009b40 PA:1c009b5c +76618137ns 1414676 1c0039d6 00812c23 sw x8, 24(x2) x8:00000000 x2:1c009b40 PA:1c009b58 +76618157ns 1414677 1c0039d8 01312623 sw x19, 12(x2) x19:00000002 x2:1c009b40 PA:1c009b4c +76618177ns 1414678 1c0039da 00848493 addi x9, x9, 8 x9=00000058 x9:00000050 +76618197ns 1414679 1c0039dc 00c00793 addi x15, x0, 12 x15=0000000c +76618217ns 1414680 1c0039de 00a00933 add x18, x0, x10 x18=1c009e10 x10:1c009e10 +76618238ns 1414681 1c0039e0 04f4f363 bgeu x9, x15, 70 x9:00000058 x15:0000000c +76618318ns 1414685 1c003a26 fc04d0e3 bge x9, x0, -64 x9:00000058 +76618399ns 1414689 1c0039e6 04b4e263 bltu x9, x11, 68 x9:00000058 x11:00000050 +76618419ns 1414690 1c0039ea 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +76618440ns 1414691 1c0039ec 87aff0ef jal x1, -3974 x1=1c0039f0 +76618500ns 1414694 1c002a66 fb1fe06f jal x0, -4176 +76618561ns 1414697 1c001a16 d6818793 addi x15, x3, -664 x15=1c009144 x3:1c0093dc +76618581ns 1414698 1c001a1a 0007a703 lw x14, 0(x15) x14=00000001 x15:1c009144 PA:1c009144 +76618621ns 1414700 1c001a1c 00170713 addi x14, x14, 1 x14=00000002 x14:00000001 +76618641ns 1414701 1c001a1e 00e7a023 sw x14, 0(x15) x14:00000002 x15:1c009144 PA:1c009144 +76618662ns 1414702 1c001a20 00008067 jalr x0, x1, 0 x1:1c0039f0 +76618702ns 1414704 1c0039f0 db81a703 lw x14, -584(x3) x14=00000000 x3:1c0093dc PA:1c009194 +76618722ns 1414705 1c0039f4 db818693 addi x13, x3, -584 x13=1c009194 x3:1c0093dc +76618742ns 1414706 1c0039f8 00e00433 add x8, x0, x14 x8=00000000 x14:00000000 +76618763ns 1414707 1c0039fa 04041363 bne x8, x0, 70 x8:00000000 +76618783ns 1414708 1c0039fc dbc18413 addi x8, x3, -580 x8=1c009198 x3:1c0093dc +76618803ns 1414709 1c003a00 00042783 lw x15, 0(x8) x15=1c0091b0 x8:1c009198 PA:1c009198 +76618843ns 1414711 1c003a02 00079563 bne x15, x0, 10 x15:1c0091b0 +76618904ns 1414714 1c003a0c 009005b3 add x11, x0, x9 x11=00000058 x9:00000058 +76618924ns 1414715 1c003a0e 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +76618944ns 1414716 1c003a10 5cc000ef jal x1, 1484 x1=1c003a12 +76618985ns 1414718 1c003fdc ff010113 addi x2, x2, -16 x2=1c009b30 x2:1c009b40 +76619005ns 1414719 1c003fde 00812423 sw x8, 8(x2) x8:1c009198 x2:1c009b30 PA:1c009b38 +76619025ns 1414720 1c003fe0 00912223 sw x9, 4(x2) x9:00000058 x2:1c009b30 PA:1c009b34 +76619045ns 1414721 1c003fe2 00a00433 add x8, x0, x10 x8=1c009e10 x10:1c009e10 +76619065ns 1414722 1c003fe4 00b00533 add x10, x0, x11 x10=00000058 x11:00000058 +76619086ns 1414723 1c003fe6 00112623 sw x1, 12(x2) x1:1c003a12 x2:1c009b30 PA:1c009b3c +76619106ns 1414724 1c003fe8 dc01a023 sw x0, -576(x3) x3:1c0093dc PA:1c00919c +76619126ns 1414725 1c003fec a53fe0ef jal x1, -5550 x1=1c003ff0 +76619187ns 1414728 1c002a3e 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76619207ns 1414729 1c002a42 c3c78793 addi x15, x15, -964 x15=1c008c3c x15:1c009000 +76619227ns 1414730 1c002a46 00a00733 add x14, x0, x10 x14=00000058 x10:00000058 +76619247ns 1414731 1c002a48 0007a503 lw x10, 0(x15) x10=1c00c334 x15:1c008c3c PA:1c008c3c +76619267ns 1414732 1c002a4a 1c0196b7 lui x13, 0x1c019000 x13=1c019000 +76619288ns 1414733 1c002a4e 1b068693 addi x13, x13, 432 x13=1c0191b0 x13:1c019000 +76619308ns 1414734 1c002a52 00a70733 add x14, x14, x10 x14=1c00c38c x14:00000058 x10:1c00c334 +76619328ns 1414735 1c002a54 00d76763 bltu x14, x13, 14 x14:1c00c38c x13:1c0191b0 +76619389ns 1414738 1c002a62 00e7a023 sw x14, 0(x15) x14:1c00c38c x15:1c008c3c PA:1c008c3c +76619409ns 1414739 1c002a64 00008067 jalr x0, x1, 0 x1:1c003ff0 +76619449ns 1414741 1c003ff0 fff00793 addi x15, x0, -1 x15=ffffffff +76619469ns 1414742 1c003ff2 00f51663 bne x10, x15, 12 x10:1c00c334 x15:ffffffff +76619530ns 1414745 1c003ffe 00c12083 lw x1, 12(x2) x1=1c003a12 x2:1c009b30 PA:1c009b3c +76619550ns 1414746 1c004000 00812403 lw x8, 8(x2) x8=1c009198 x2:1c009b30 PA:1c009b38 +76619570ns 1414747 1c004002 00412483 lw x9, 4(x2) x9=00000058 x2:1c009b30 PA:1c009b34 +76619590ns 1414748 1c004004 01010113 addi x2, x2, 16 x2=1c009b40 x2:1c009b30 +76619611ns 1414749 1c004006 00008067 jalr x0, x1, 0 x1:1c003a12 +76619651ns 1414751 1c003a12 fff00993 addi x19, x0, -1 x19=ffffffff +76619671ns 1414752 1c003a14 07351a63 bne x10, x19, 116 x10:1c00c334 x19:ffffffff +76619732ns 1414755 1c003a88 00350413 addi x8, x10, 3 x8=1c00c337 x10:1c00c334 +76619752ns 1414756 1c003a8c ffc47413 andi x8, x8, -4 x8=1c00c334 x8:1c00c337 +76619772ns 1414757 1c003a8e fc8502e3 beq x10, x8, -60 x10:1c00c334 x8:1c00c334 +76619833ns 1414760 1c003a52 00942023 sw x9, 0(x8) x9:00000058 x8:1c00c334 PA:1c00c334 +76619853ns 1414761 1c003a54 00a0006f jal x0, 10 +76619893ns 1414763 1c003a5e 01200533 add x10, x0, x18 x10=1c009e10 x18:1c009e10 +76619914ns 1414764 1c003a60 80aff0ef jal x1, -4086 x1=1c003a64 +76619974ns 1414767 1c002a6a 8e3ff06f jal x0, -1822 +76620015ns 1414769 1c00234c fc010113 addi x2, x2, -64 x2=1c009b00 x2:1c009b40 +76620035ns 1414770 1c00234e 02812c23 sw x8, 56(x2) x8:1c00c334 x2:1c009b00 PA:1c009b38 +76620055ns 1414771 1c002350 d6818413 addi x8, x3, -664 x8=1c009144 x3:1c0093dc +76620075ns 1414772 1c002354 00042783 lw x15, 0(x8) x15=00000002 x8:1c009144 PA:1c009144 +76620095ns 1414773 1c002356 02112e23 sw x1, 60(x2) x1:1c003a64 x2:1c009b00 PA:1c009b3c +76620115ns 1414774 1c002358 02912a23 sw x9, 52(x2) x9:00000058 x2:1c009b00 PA:1c009b34 +76620136ns 1414775 1c00235a 03212823 sw x18, 48(x2) x18:1c009e10 x2:1c009b00 PA:1c009b30 +76620156ns 1414776 1c00235c 03312623 sw x19, 44(x2) x19:ffffffff x2:1c009b00 PA:1c009b2c +76620176ns 1414777 1c00235e 03412423 sw x20, 40(x2) x20:1c00918c x2:1c009b00 PA:1c009b28 +76620196ns 1414778 1c002360 03512223 sw x21, 36(x2) x21:a5a5a5a5 x2:1c009b00 PA:1c009b24 +76620216ns 1414779 1c002362 03612023 sw x22, 32(x2) x22:a5a5a5a5 x2:1c009b00 PA:1c009b20 +76620237ns 1414780 1c002364 01712e23 sw x23, 28(x2) x23:a5a5a5a5 x2:1c009b00 PA:1c009b1c +76620257ns 1414781 1c002366 02079263 bne x15, x0, 36 x15:00000002 +76620338ns 1414785 1c00238a c83ff0ef jal x1, -894 x1=1c00238e +76620378ns 1414787 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +76620459ns 1414791 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76620499ns 1414793 1c002014 00078863 beq x15, x0, 16 x15:00000001 +76620519ns 1414794 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76620539ns 1414795 1c00201a 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76620560ns 1414796 1c00201c 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76620580ns 1414797 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c009db8 PA:1c009dfc +76620620ns 1414799 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76620640ns 1414800 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c009db8 PA:1c009dfc +76620661ns 1414801 1c002024 00008067 jalr x0, x1, 0 x1:1c00238e +76620701ns 1414803 1c00238e 00042783 lw x15, 0(x8) x15=00000002 x8:1c009144 PA:1c009144 +76620741ns 1414805 1c002390 fff78793 addi x15, x15, -1 x15=00000001 x15:00000002 +76620762ns 1414806 1c002392 00f42023 sw x15, 0(x8) x15:00000001 x8:1c009144 PA:1c009144 +76620782ns 1414807 1c002394 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +76620822ns 1414809 1c002396 02078163 beq x15, x0, 34 x15:00000001 +76620842ns 1414810 1c002398 00000513 addi x10, x0, 0 x10=00000000 +76620863ns 1414811 1c00239a 00a12623 sw x10, 12(x2) x10:00000000 x2:1c009b00 PA:1c009b0c +76620883ns 1414812 1c00239c c8bff0ef jal x1, -886 x1=1c0023a0 +76620943ns 1414815 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76620984ns 1414817 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +76621004ns 1414818 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76621024ns 1414819 1c002030 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +76621064ns 1414821 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c009db8 PA:1c009dfc +76621105ns 1414823 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +76621125ns 1414824 1c002036 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76621145ns 1414825 1c002038 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76621165ns 1414826 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c009db8 PA:1c009dfc +76621206ns 1414828 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +76621226ns 1414829 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c009db8 PA:1c009dfc +76621246ns 1414830 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c009db8 PA:1c009dfc +76621287ns 1414832 1c002042 00079363 bne x15, x0, 6 x15:00000000 +76621307ns 1414833 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +76621388ns 1414837 1c002048 00008067 jalr x0, x1, 0 x1:1c0023a0 +76621428ns 1414839 1c0023a0 03c12083 lw x1, 60(x2) x1=1c003a64 x2:1c009b00 PA:1c009b3c +76621448ns 1414840 1c0023a2 03812403 lw x8, 56(x2) x8=1c00c334 x2:1c009b00 PA:1c009b38 +76621468ns 1414841 1c0023a4 00c12503 lw x10, 12(x2) x10=00000000 x2:1c009b00 PA:1c009b0c +76621489ns 1414842 1c0023a6 03412483 lw x9, 52(x2) x9=00000058 x2:1c009b00 PA:1c009b34 +76621509ns 1414843 1c0023a8 03012903 lw x18, 48(x2) x18=1c009e10 x2:1c009b00 PA:1c009b30 +76621529ns 1414844 1c0023aa 02c12983 lw x19, 44(x2) x19=ffffffff x2:1c009b00 PA:1c009b2c +76621549ns 1414845 1c0023ac 02812a03 lw x20, 40(x2) x20=1c00918c x2:1c009b00 PA:1c009b28 +76621569ns 1414846 1c0023ae 02412a83 lw x21, 36(x2) x21=a5a5a5a5 x2:1c009b00 PA:1c009b24 +76621589ns 1414847 1c0023b0 02012b03 lw x22, 32(x2) x22=a5a5a5a5 x2:1c009b00 PA:1c009b20 +76621610ns 1414848 1c0023b2 01c12b83 lw x23, 28(x2) x23=a5a5a5a5 x2:1c009b00 PA:1c009b1c +76621630ns 1414849 1c0023b4 04010113 addi x2, x2, 64 x2=1c009b40 x2:1c009b00 +76621650ns 1414850 1c0023b6 00008067 jalr x0, x1, 0 x1:1c003a64 +76621690ns 1414852 1c003a64 00b40513 addi x10, x8, 11 x10=1c00c33f x8:1c00c334 +76621711ns 1414853 1c003a68 00440793 addi x15, x8, 4 x15=1c00c338 x8:1c00c334 +76621731ns 1414854 1c003a6c ff857513 andi x10, x10, -8 x10=1c00c338 x10:1c00c33f +76621751ns 1414855 1c003a6e 40f50733 sub x14, x10, x15 x14=00000000 x10:1c00c338 x15:1c00c338 +76621771ns 1414856 1c003a72 fcf500e3 beq x10, x15, -64 x10:1c00c338 x15:1c00c338 +76621832ns 1414859 1c003a32 01c12083 lw x1, 28(x2) x1=1c00297c x2:1c009b40 PA:1c009b5c +76621852ns 1414860 1c003a34 01812403 lw x8, 24(x2) x8=00000000 x2:1c009b40 PA:1c009b58 +76621872ns 1414861 1c003a36 01412483 lw x9, 20(x2) x9=00000000 x2:1c009b40 PA:1c009b54 +76621892ns 1414862 1c003a38 01012903 lw x18, 16(x2) x18=000000ff x2:1c009b40 PA:1c009b50 +76621913ns 1414863 1c003a3a 00c12983 lw x19, 12(x2) x19=00000002 x2:1c009b40 PA:1c009b4c +76621933ns 1414864 1c003a3c 02010113 addi x2, x2, 32 x2=1c009b60 x2:1c009b40 +76621953ns 1414865 1c003a3e 00008067 jalr x0, x1, 0 x1:1c00297c +76621993ns 1414867 1c00297c 00a00433 add x8, x0, x10 x8=1c00c338 x10:1c00c338 +76622014ns 1414868 1c00297e 9cfff0ef jal x1, -1586 x1=1c002982 +76622054ns 1414870 1c00234c fc010113 addi x2, x2, -64 x2=1c009b20 x2:1c009b60 +76622074ns 1414871 1c00234e 02812c23 sw x8, 56(x2) x8:1c00c338 x2:1c009b20 PA:1c009b58 +76622094ns 1414872 1c002350 d6818413 addi x8, x3, -664 x8=1c009144 x3:1c0093dc +76622114ns 1414873 1c002354 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +76622135ns 1414874 1c002356 02112e23 sw x1, 60(x2) x1:1c002982 x2:1c009b20 PA:1c009b5c +76622155ns 1414875 1c002358 02912a23 sw x9, 52(x2) x9:00000000 x2:1c009b20 PA:1c009b54 +76622175ns 1414876 1c00235a 03212823 sw x18, 48(x2) x18:000000ff x2:1c009b20 PA:1c009b50 +76622195ns 1414877 1c00235c 03312623 sw x19, 44(x2) x19:00000002 x2:1c009b20 PA:1c009b4c +76622215ns 1414878 1c00235e 03412423 sw x20, 40(x2) x20:1c00918c x2:1c009b20 PA:1c009b48 +76622236ns 1414879 1c002360 03512223 sw x21, 36(x2) x21:a5a5a5a5 x2:1c009b20 PA:1c009b44 +76622256ns 1414880 1c002362 03612023 sw x22, 32(x2) x22:a5a5a5a5 x2:1c009b20 PA:1c009b40 +76622357ns 1414885 1c000868 0980006f jal x0, 152 +76622397ns 1414887 1c000900 f8810113 addi x2, x2, -120 x2=1c009aa8 x2:1c009b20 +76622417ns 1414888 1c000904 00112223 sw x1, 4(x2) x1:1c002982 x2:1c009aa8 PA:1c009aac +76622438ns 1414889 1c000906 00512423 sw x5, 8(x2) x5:a5a5a5a5 x2:1c009aa8 PA:1c009ab0 +76622458ns 1414890 1c000908 00612623 sw x6, 12(x2) x6:00000010 x2:1c009aa8 PA:1c009ab4 +76622478ns 1414891 1c00090a 00712823 sw x7, 16(x2) x7:a5a5a5a5 x2:1c009aa8 PA:1c009ab8 +76622498ns 1414892 1c00090c 00812a23 sw x8, 20(x2) x8:1c009144 x2:1c009aa8 PA:1c009abc +76622518ns 1414893 1c00090e 00912c23 sw x9, 24(x2) x9:00000000 x2:1c009aa8 PA:1c009ac0 +76622539ns 1414894 1c000910 00a12e23 sw x10, 28(x2) x10:1c00c338 x2:1c009aa8 PA:1c009ac4 +76622559ns 1414895 1c000912 02b12023 sw x11, 32(x2) x11:00000058 x2:1c009aa8 PA:1c009ac8 +76622579ns 1414896 1c000914 02c12223 sw x12, 36(x2) x12:00000002 x2:1c009aa8 PA:1c009acc +76622599ns 1414897 1c000916 02d12423 sw x13, 40(x2) x13:1c009db8 x2:1c009aa8 PA:1c009ad0 +76622619ns 1414898 1c000918 02e12623 sw x14, 44(x2) x14:00000000 x2:1c009aa8 PA:1c009ad4 +76622639ns 1414899 1c00091a 02f12823 sw x15, 48(x2) x15:00000001 x2:1c009aa8 PA:1c009ad8 +76622660ns 1414900 1c00091c 03012a23 sw x16, 52(x2) x16:60070004 x2:1c009aa8 PA:1c009adc +76622680ns 1414901 1c00091e 03112c23 sw x17, 56(x2) x17:00000005 x2:1c009aa8 PA:1c009ae0 +76622700ns 1414902 1c000920 03212e23 sw x18, 60(x2) x18:000000ff x2:1c009aa8 PA:1c009ae4 +76622720ns 1414903 1c000922 05312023 sw x19, 64(x2) x19:00000002 x2:1c009aa8 PA:1c009ae8 +76622740ns 1414904 1c000924 05412223 sw x20, 68(x2) x20:1c00918c x2:1c009aa8 PA:1c009aec +76622761ns 1414905 1c000926 05512423 sw x21, 72(x2) x21:a5a5a5a5 x2:1c009aa8 PA:1c009af0 +76622781ns 1414906 1c000928 05612623 sw x22, 76(x2) x22:a5a5a5a5 x2:1c009aa8 PA:1c009af4 +76622801ns 1414907 1c00092a 05712823 sw x23, 80(x2) x23:a5a5a5a5 x2:1c009aa8 PA:1c009af8 +76622821ns 1414908 1c00092c 05812a23 sw x24, 84(x2) x24:a5a5a5a5 x2:1c009aa8 PA:1c009afc +76622841ns 1414909 1c00092e 05912c23 sw x25, 88(x2) x25:a5a5a5a5 x2:1c009aa8 PA:1c009b00 +76622862ns 1414910 1c000930 05a12e23 sw x26, 92(x2) x26:a5a5a5a5 x2:1c009aa8 PA:1c009b04 +76622882ns 1414911 1c000932 07b12023 sw x27, 96(x2) x27:a5a5a5a5 x2:1c009aa8 PA:1c009b08 +76622902ns 1414912 1c000934 07c12223 sw x28, 100(x2) x28:00000004 x2:1c009aa8 PA:1c009b0c +76622922ns 1414913 1c000936 07d12423 sw x29, 104(x2) x29:1c00b890 x2:1c009aa8 PA:1c009b10 +76622942ns 1414914 1c000938 07e12623 sw x30, 108(x2) x30:00000000 x2:1c009aa8 PA:1c009b14 +76622963ns 1414915 1c00093a 07f12823 sw x31, 112(x2) x31:a5a5a5a5 x2:1c009aa8 PA:1c009b18 +76622983ns 1414916 1c00093c 300022f3 csrrs x5, x0, 0x300 x5=00001880 +76623063ns 1414920 1c000940 06512a23 sw x5, 116(x2) x5:00001880 x2:1c009aa8 PA:1c009b1c +76623084ns 1414921 1c000942 fe810113 addi x2, x2, -24 x2=1c009a90 x2:1c009aa8 +76623104ns 1414922 1c000944 7c0022f3 csrrs x5, x0, 0x7c0 x5=00000000 +76623124ns 1414923 1c000948 7c102373 csrrs x6, x0, 0x7c1 x6=00000000 +76623144ns 1414924 1c00094c 7c2023f3 csrrs x7, x0, 0x7c2 x7=00000000 +76623164ns 1414925 1c000950 7c402e73 csrrs x28, x0, 0x7c4 x28=00000000 +76623185ns 1414926 1c000954 7c502ef3 csrrs x29, x0, 0x7c5 x29=00000000 +76623205ns 1414927 1c000958 7c602f73 csrrs x30, x0, 0x7c6 x30=00000000 +76623225ns 1414928 1c00095c 00512223 sw x5, 4(x2) x5:00000000 x2:1c009a90 PA:1c009a94 +76623245ns 1414929 1c00095e 00612423 sw x6, 8(x2) x6:00000000 x2:1c009a90 PA:1c009a98 +76623265ns 1414930 1c000960 00712623 sw x7, 12(x2) x7:00000000 x2:1c009a90 PA:1c009a9c +76623286ns 1414931 1c000962 01c12823 sw x28, 16(x2) x28:00000000 x2:1c009a90 PA:1c009aa0 +76623306ns 1414932 1c000964 01d12a23 sw x29, 20(x2) x29:00000000 x2:1c009a90 PA:1c009aa4 +76623326ns 1414933 1c000966 01e12c23 sw x30, 24(x2) x30:00000000 x2:1c009a90 PA:1c009aa8 +76623346ns 1414934 1c000968 d541a283 lw x5, -684(x3) x5=1c009db8 x3:1c0093dc PA:1c009130 +76623387ns 1414936 1c00096c 0022a023 sw x2, 0(x5) x2:1c009a90 x5:1c009db8 PA:1c009db8 +76623407ns 1414937 1c000970 34202573 csrrs x10, x0, 0x342 x10=8000001a +76623427ns 1414938 1c000974 341025f3 csrrs x11, x0, 0x341 x11=1c002364 +76623447ns 1414939 1c000978 01f55613 srli x12, x10, 0x1f x12=00000001 x10:8000001a +76623467ns 1414940 1c00097c 00060963 beq x12, x0, 18 x12:00000001 +76623488ns 1414941 1c00097e 00b12023 sw x11, 0(x2) x11:1c002364 x2:1c009a90 PA:1c009a90 +76623508ns 1414942 1c000980 00008117 auipc x2, 0x8000 x2=1c008980 +76623528ns 1414943 1c000984 25412103 lw x2, 596(x2) x2=1c0199b0 x2:1c008980 PA:1c008bd4 +76623548ns 1414944 1c000988 17e020ef jal x1, 8574 x1=1c00098c +76623588ns 1414946 1c002b06 01f57513 andi x10, x10, 31 x10=0000001a x10:8000001a +76623609ns 1414947 1c002b08 00251793 slli x15, x10, 0x2 x15=00000068 x10:0000001a +76623629ns 1414948 1c002b0c 99c18513 addi x10, x3, -1636 x10=1c008d78 x3:1c0093dc +76623649ns 1414949 1c002b10 00f50533 add x10, x10, x15 x10=1c008de0 x10:1c008d78 x15:00000068 +76623669ns 1414950 1c002b12 00052783 lw x15, 0(x10) x15=1c000e42 x10:1c008de0 PA:1c008de0 +76623730ns 1414953 1c002b14 00078067 jalr x0, x15, 0 x15:1c000e42 +76623790ns 1414956 1c000e42 1a10a7b7 lui x15, 0x1a10a000 x15=1a10a000 +76623811ns 1414957 1c000e46 80078793 addi x15, x15, -2048 x15=1a109800 x15:1a10a000 +76623831ns 1414958 1c000e4a 0247a503 lw x10, 36(x15) x10=00000007 x15:1a109800 PA:1a109824 +76623851ns 1414959 1c000e4c a2818793 addi x15, x3, -1496 x15=1c008e04 x3:1c0093dc +76623912ns 1414962 1c000e50 0ff57513 andi x10, x10, 255 x10=00000007 x10:00000007 +76623932ns 1414963 1c000e54 00251713 slli x14, x10, 0x2 x14=0000001c x10:00000007 +76623952ns 1414964 1c000e58 00e787b3 add x15, x15, x14 x15=1c008e20 x15:1c008e04 x14:0000001c +76623972ns 1414965 1c000e5a 0007a703 lw x14, 0(x15) x14=1c003106 x15:1c008e20 PA:1c008e20 +76624013ns 1414967 1c000e5c 00070363 beq x14, x0, 6 x14:1c003106 +76624033ns 1414968 1c000e5e 0007a783 lw x15, 0(x15) x15=1c003106 x15:1c008e20 PA:1c008e20 +76624093ns 1414971 1c000e60 00078067 jalr x0, x15, 0 x15:1c003106 +76624134ns 1414973 1c003106 ff950513 addi x10, x10, -7 x10=00000000 x10:00000007 +76624154ns 1414974 1c003108 00251793 slli x15, x10, 0x2 x15=00000000 x10:00000000 +76624174ns 1414975 1c00310c da418513 addi x10, x3, -604 x10=1c009180 x3:1c0093dc +76624194ns 1414976 1c003110 ff010113 addi x2, x2, -16 x2=1c0199a0 x2:1c0199b0 +76624214ns 1414977 1c003112 00f50533 add x10, x10, x15 x10=1c009180 x10:1c009180 x15:00000000 +76624235ns 1414978 1c003114 00812423 sw x8, 8(x2) x8:1c009144 x2:1c0199a0 PA:1c0199a8 +76624255ns 1414979 1c003116 00052403 lw x8, 0(x10) x8=1c00b890 x10:1c009180 PA:1c009180 +76624275ns 1414980 1c003118 00112623 sw x1, 12(x2) x1:1c00098c x2:1c0199a0 PA:1c0199ac +76624295ns 1414981 1c00311a 00842783 lw x15, 8(x8) x15=00000000 x8:1c00b890 PA:1c00b898 +76624336ns 1414983 1c00311c 02079263 bne x15, x0, 36 x15:00000000 +76624356ns 1414984 1c00311e 00c42503 lw x10, 12(x8) x10=1c009ce0 x8:1c00b890 PA:1c00b89c +76624396ns 1414986 1c003120 00050863 beq x10, x0, 16 x10:1c009ce0 +76624416ns 1414987 1c003122 01052703 lw x14, 16(x10) x14=00000001 x10:1c009ce0 PA:1c009cf0 +76624437ns 1414988 1c003124 00100793 addi x15, x0, 1 x15=00000001 +76624457ns 1414989 1c003126 00f71363 bne x14, x15, 6 x14:00000001 x15:00000001 +76624477ns 1414990 1c00312a 3b6000ef jal x1, 950 x1=1c00312c +76624517ns 1414992 1c0034e0 ff010113 addi x2, x2, -16 x2=1c019990 x2:1c0199a0 +76624538ns 1414993 1c0034e2 00812423 sw x8, 8(x2) x8:1c00b890 x2:1c019990 PA:1c019998 +76624558ns 1414994 1c0034e4 00a00433 add x8, x0, x10 x8=1c009ce0 x10:1c009ce0 +76624578ns 1414995 1c0034e6 03452503 lw x10, 52(x10) x10=1c00c2e0 x10:1c009ce0 PA:1c009d14 +76624598ns 1414996 1c0034e8 00112623 sw x1, 12(x2) x1:1c00312c x2:1c019990 PA:1c01999c +76624618ns 1414997 1c0034ea 00050363 beq x10, x0, 6 x10:1c00c2e0 +76624638ns 1414998 1c0034ec 03c42783 lw x15, 60(x8) x15=1c0033da x8:1c009ce0 PA:1c009d1c +76624699ns 1415001 1c0034ee 000780e7 jalr x1, x15, 0 x1=1c0034f0 x15:1c0033da +76624739ns 1415003 1c0033da fe010113 addi x2, x2, -32 x2=1c019970 x2:1c019990 +76624760ns 1415004 1c0033dc 00112e23 sw x1, 28(x2) x1:1c0034f0 x2:1c019970 PA:1c01998c +76624780ns 1415005 1c0033de 00812c23 sw x8, 24(x2) x8:1c009ce0 x2:1c019970 PA:1c019988 +76624800ns 1415006 1c0033e0 30047473 csrrci x8, 0x00000008, 0x300 x8=00001880 +76624881ns 1415010 1c0033e4 342027f3 csrrs x15, x0, 0x342 x15=8000001a +76624901ns 1415011 1c0033e8 00c10593 addi x11, x2, 12 x11=1c01997c x2:1c019970 +76624921ns 1415012 1c0033ea 0007de63 bge x15, x0, 28 x15:8000001a +76624941ns 1415013 1c0033ee 838fe0ef jal x1, -8136 x1=1c0033f2 +76624982ns 1415015 1c001426 ff010113 addi x2, x2, -16 x2=1c019960 x2:1c019970 +76625002ns 1415016 1c001428 00112623 sw x1, 12(x2) x1:1c0033f2 x2:1c019960 PA:1c01996c +76625022ns 1415017 1c00142a 00812423 sw x8, 8(x2) x8:00001880 x2:1c019960 PA:1c019968 +76625042ns 1415018 1c00142c 02051163 bne x10, x0, 34 x10:1c00c2e0 +76625103ns 1415021 1c00144e 04052703 lw x14, 64(x10) x14=00000000 x10:1c00c2e0 PA:1c00c320 +76625123ns 1415022 1c001450 00a007b3 add x15, x0, x10 x15=1c00c2e0 x10:1c00c2e0 +76625143ns 1415023 1c001452 00070c63 beq x14, x0, 24 x14:00000000 +76625204ns 1415026 1c00146a 00052703 lw x14, 0(x10) x14=1c00c2e0 x10:1c00c2e0 PA:1c00c2e0 +76625224ns 1415027 1c00146c 00b00433 add x8, x0, x11 x8=1c01997c x11:1c01997c +76625244ns 1415028 1c00146e 00071e63 bne x14, x0, 28 x14:1c00c2e0 +76625305ns 1415031 1c00148a 0387a683 lw x13, 56(x15) x13=00000000 x15:1c00c2e0 PA:1c00c318 +76625325ns 1415032 1c00148c 03c7a703 lw x14, 60(x15) x14=000000ff x15:1c00c2e0 PA:1c00c31c +76625345ns 1415033 1c00148e 00000513 addi x10, x0, 0 x10=00000000 +76625365ns 1415034 1c001490 00e6ff63 bgeu x13, x14, 30 x13:00000000 x14:000000ff +76625386ns 1415035 1c001494 0457c703 lbu x14, 69(x15) x14=000000ff x15:1c00c2e0 PA:1c00c325 +76625406ns 1415036 1c001498 00168693 addi x13, x13, 1 x13=00000001 x13:00000000 +76625426ns 1415037 1c00149a 02d7ac23 sw x13, 56(x15) x13:00000001 x15:1c00c2e0 PA:1c00c318 +76625446ns 1415038 1c00149c 01871613 slli x12, x14, 0x18 x12=ff000000 x14:000000ff +76625466ns 1415039 1c0014a0 41865613 srai x12, x12, 0x418 x12=ffffffff x12:ff000000 +76625487ns 1415040 1c0014a2 fff00693 addi x13, x0, -1 x13=ffffffff +76625507ns 1415041 1c0014a4 02d61263 bne x12, x13, 36 x12:ffffffff x13:ffffffff +76625527ns 1415042 1c0014a8 0247a703 lw x14, 36(x15) x14=00000000 x15:1c00c2e0 PA:1c00c304 +76625567ns 1415044 1c0014aa 00071663 bne x14, x0, 12 x14:00000000 +76625587ns 1415045 1c0014ac 00100513 addi x10, x0, 1 x10=00000001 +76625608ns 1415046 1c0014ae 00c12083 lw x1, 12(x2) x1=1c0033f2 x2:1c019960 PA:1c01996c +76625628ns 1415047 1c0014b0 00812403 lw x8, 8(x2) x8=00001880 x2:1c019960 PA:1c019968 +76625648ns 1415048 1c0014b2 01010113 addi x2, x2, 16 x2=1c019970 x2:1c019960 +76625668ns 1415049 1c0014b4 00008067 jalr x0, x1, 0 x1:1c0033f2 +76625709ns 1415051 1c0033f2 00c12783 lw x15, 12(x2) x15=00000001 x2:1c019970 PA:1c01997c +76625749ns 1415053 1c0033f4 00078363 beq x15, x0, 6 x15:00000001 +76625769ns 1415054 1c0033f6 f80fe0ef jal x1, -6272 x1=1c0033fa +76625830ns 1415057 1c001b76 d681a703 lw x14, -664(x3) x14=00000001 x3:1c0093dc PA:1c009144 +76625850ns 1415058 1c001b7a d8c18793 addi x15, x3, -628 x15=1c009168 x3:1c0093dc +76625870ns 1415059 1c001b7e 00070463 beq x14, x0, 8 x14:00000001 +76625890ns 1415060 1c001b80 00100713 addi x14, x0, 1 x14=00000001 +76625911ns 1415061 1c001b82 00e7a023 sw x14, 0(x15) x14:00000001 x15:1c009168 PA:1c009168 +76625931ns 1415062 1c001b84 00008067 jalr x0, x1, 0 x1:1c0033fa +76625991ns 1415065 1c0033fa 30041073 csrrw x0, x8, 0x300 x8:00001880 +76626072ns 1415069 1c0033fe 01c12083 lw x1, 28(x2) x1=1c0034f0 x2:1c019970 PA:1c01998c +76626092ns 1415070 1c003400 01812403 lw x8, 24(x2) x8=1c009ce0 x2:1c019970 PA:1c019988 +76626112ns 1415071 1c003402 02010113 addi x2, x2, 32 x2=1c019990 x2:1c019970 +76626133ns 1415072 1c003404 00008067 jalr x0, x1, 0 x1:1c0034f0 +76626173ns 1415074 1c0034f0 00100793 addi x15, x0, 1 x15=00000001 +76626193ns 1415075 1c0034f2 04f40223 sb x15, 68(x8) x15:00000001 x8:1c009ce0 PA:1c009d24 +76626213ns 1415076 1c0034f6 00c12083 lw x1, 12(x2) x1=1c00312c x2:1c019990 PA:1c01999c +76626234ns 1415077 1c0034f8 00812403 lw x8, 8(x2) x8=1c00b890 x2:1c019990 PA:1c019998 +76626254ns 1415078 1c0034fa 01010113 addi x2, x2, 16 x2=1c0199a0 x2:1c019990 +76626274ns 1415079 1c0034fc 00008067 jalr x0, x1, 0 x1:1c00312c +76626314ns 1415081 1c00312c 00042623 sw x0, 12(x8) x8:1c00b890 PA:1c00b89c +76626335ns 1415082 1c003130 00800533 add x10, x0, x8 x10=1c00b890 x8:1c00b890 +76626355ns 1415083 1c003132 ac3ff0ef jal x1, -1342 x1=1c003136 +76626395ns 1415085 1c002bf4 300027f3 csrrs x15, x0, 0x300 x15=00001880 +76626476ns 1415089 1c002bf8 300476f3 csrrci x13, 0x00000008, 0x300 x13=00001880 +76626557ns 1415093 1c002bfc 00052783 lw x15, 0(x10) x15=1c00b8b0 x10:1c00b890 PA:1c00b890 +76626597ns 1415095 1c002bfe 0007a503 lw x10, 0(x15) x10=00000000 x15:1c00b8b0 PA:1c00b8b0 +76626637ns 1415097 1c002c00 00050663 beq x10, x0, 12 x10:00000000 +76626698ns 1415100 1c002c0c 30069073 csrrw x0, x13, 0x300 x13:00001880 +76626779ns 1415104 1c002c10 00008067 jalr x0, x1, 0 x1:1c003136 +76626819ns 1415106 1c003136 00050563 beq x10, x0, 10 x10:00000000 +76626880ns 1415109 1c003140 00c12083 lw x1, 12(x2) x1=1c00098c x2:1c0199a0 PA:1c0199ac +76626900ns 1415110 1c003142 00812403 lw x8, 8(x2) x8=1c009144 x2:1c0199a0 PA:1c0199a8 +76626920ns 1415111 1c003144 01010113 addi x2, x2, 16 x2=1c0199b0 x2:1c0199a0 +76626940ns 1415112 1c003146 00008067 jalr x0, x1, 0 x1:1c00098c +76626981ns 1415114 1c00098c 0320006f jal x0, 50 +76627041ns 1415117 1c0009be d541a303 lw x6, -684(x3) x6=1c009db8 x3:1c0093dc PA:1c009130 +76627082ns 1415119 1c0009c2 00032103 lw x2, 0(x6) x2=1c009a90 x6:1c009db8 PA:1c009db8 +76627122ns 1415121 1c0009c6 00012283 lw x5, 0(x2) x5=1c002364 x2:1c009a90 PA:1c009a90 +76627162ns 1415123 1c0009c8 34129073 csrrw x0, x5, 0x341 x5:1c002364 +76627183ns 1415124 1c0009cc 00412283 lw x5, 4(x2) x5=00000000 x2:1c009a90 PA:1c009a94 +76627203ns 1415125 1c0009ce 00812303 lw x6, 8(x2) x6=00000000 x2:1c009a90 PA:1c009a98 +76627223ns 1415126 1c0009d0 00c12383 lw x7, 12(x2) x7=00000000 x2:1c009a90 PA:1c009a9c +76627243ns 1415127 1c0009d2 01012e03 lw x28, 16(x2) x28=00000000 x2:1c009a90 PA:1c009aa0 +76627263ns 1415128 1c0009d4 01412e83 lw x29, 20(x2) x29=00000000 x2:1c009a90 PA:1c009aa4 +76627284ns 1415129 1c0009d6 01812f03 lw x30, 24(x2) x30=00000000 x2:1c009a90 PA:1c009aa8 +76627304ns 1415130 1c0009d8 7c029073 csrrw x0, x5, 0x7c0 x5:00000000 +76627324ns 1415131 1c0009dc 7c131073 csrrw x0, x6, 0x7c1 x6:00000000 +76627344ns 1415132 1c0009e0 7c239073 csrrw x0, x7, 0x7c2 x7:00000000 +76627364ns 1415133 1c0009e4 7c4e1073 csrrw x0, x28, 0x7c4 x28:00000000 +76627385ns 1415134 1c0009e8 7c5e9073 csrrw x0, x29, 0x7c5 x29:00000000 +76627405ns 1415135 1c0009ec 7c6f1073 csrrw x0, x30, 0x7c6 x30:00000000 +76627425ns 1415136 1c0009f0 01810113 addi x2, x2, 24 x2=1c009aa8 x2:1c009a90 +76627445ns 1415137 1c0009f2 07412283 lw x5, 116(x2) x5=00001880 x2:1c009aa8 PA:1c009b1c +76627486ns 1415139 1c0009f4 30029073 csrrw x0, x5, 0x300 x5:00001880 +76627566ns 1415143 1c0009f8 00412083 lw x1, 4(x2) x1=1c002982 x2:1c009aa8 PA:1c009aac +76627587ns 1415144 1c0009fa 00812283 lw x5, 8(x2) x5=a5a5a5a5 x2:1c009aa8 PA:1c009ab0 +76627607ns 1415145 1c0009fc 00c12303 lw x6, 12(x2) x6=00000010 x2:1c009aa8 PA:1c009ab4 +76627627ns 1415146 1c0009fe 01012383 lw x7, 16(x2) x7=a5a5a5a5 x2:1c009aa8 PA:1c009ab8 +76627647ns 1415147 1c000a00 01412403 lw x8, 20(x2) x8=1c009144 x2:1c009aa8 PA:1c009abc +76627667ns 1415148 1c000a02 01812483 lw x9, 24(x2) x9=00000000 x2:1c009aa8 PA:1c009ac0 +76627687ns 1415149 1c000a04 01c12503 lw x10, 28(x2) x10=1c00c338 x2:1c009aa8 PA:1c009ac4 +76627708ns 1415150 1c000a06 02012583 lw x11, 32(x2) x11=00000058 x2:1c009aa8 PA:1c009ac8 +76627728ns 1415151 1c000a08 02412603 lw x12, 36(x2) x12=00000002 x2:1c009aa8 PA:1c009acc +76627748ns 1415152 1c000a0a 02812683 lw x13, 40(x2) x13=1c009db8 x2:1c009aa8 PA:1c009ad0 +76627768ns 1415153 1c000a0c 02c12703 lw x14, 44(x2) x14=00000000 x2:1c009aa8 PA:1c009ad4 +76627788ns 1415154 1c000a0e 03012783 lw x15, 48(x2) x15=00000001 x2:1c009aa8 PA:1c009ad8 +76627809ns 1415155 1c000a10 03412803 lw x16, 52(x2) x16=60070004 x2:1c009aa8 PA:1c009adc +76627829ns 1415156 1c000a12 03812883 lw x17, 56(x2) x17=00000005 x2:1c009aa8 PA:1c009ae0 +76627849ns 1415157 1c000a14 03c12903 lw x18, 60(x2) x18=000000ff x2:1c009aa8 PA:1c009ae4 +76627869ns 1415158 1c000a16 04012983 lw x19, 64(x2) x19=00000002 x2:1c009aa8 PA:1c009ae8 +76627889ns 1415159 1c000a18 04412a03 lw x20, 68(x2) x20=1c00918c x2:1c009aa8 PA:1c009aec +76627910ns 1415160 1c000a1a 04812a83 lw x21, 72(x2) x21=a5a5a5a5 x2:1c009aa8 PA:1c009af0 +76627930ns 1415161 1c000a1c 04c12b03 lw x22, 76(x2) x22=a5a5a5a5 x2:1c009aa8 PA:1c009af4 +76627950ns 1415162 1c000a1e 05012b83 lw x23, 80(x2) x23=a5a5a5a5 x2:1c009aa8 PA:1c009af8 +76627970ns 1415163 1c000a20 05412c03 lw x24, 84(x2) x24=a5a5a5a5 x2:1c009aa8 PA:1c009afc +76627990ns 1415164 1c000a22 05812c83 lw x25, 88(x2) x25=a5a5a5a5 x2:1c009aa8 PA:1c009b00 +76628011ns 1415165 1c000a24 05c12d03 lw x26, 92(x2) x26=a5a5a5a5 x2:1c009aa8 PA:1c009b04 +76628031ns 1415166 1c000a26 06012d83 lw x27, 96(x2) x27=a5a5a5a5 x2:1c009aa8 PA:1c009b08 +76628051ns 1415167 1c000a28 06412e03 lw x28, 100(x2) x28=00000004 x2:1c009aa8 PA:1c009b0c +76628071ns 1415168 1c000a2a 06812e83 lw x29, 104(x2) x29=1c00b890 x2:1c009aa8 PA:1c009b10 +76628091ns 1415169 1c000a2c 06c12f03 lw x30, 108(x2) x30=00000000 x2:1c009aa8 PA:1c009b14 +76628111ns 1415170 1c000a2e 07012f83 lw x31, 112(x2) x31=a5a5a5a5 x2:1c009aa8 PA:1c009b18 +76628132ns 1415171 1c000a30 07810113 addi x2, x2, 120 x2=1c009b20 x2:1c009aa8 +76628152ns 1415172 1c000a34 30200073 mret +76628253ns 1415177 1c002364 01712e23 sw x23, 28(x2) x23:a5a5a5a5 x2:1c009b20 PA:1c009b3c +76628273ns 1415178 1c002366 02079263 bne x15, x0, 36 x15:00000001 +76628354ns 1415182 1c00238a c83ff0ef jal x1, -894 x1=1c00238e +76628394ns 1415184 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +76628475ns 1415188 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76628515ns 1415190 1c002014 00078863 beq x15, x0, 16 x15:00000001 +76628536ns 1415191 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76628556ns 1415192 1c00201a 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76628576ns 1415193 1c00201c 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76628596ns 1415194 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c009db8 PA:1c009dfc +76628636ns 1415196 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76628657ns 1415197 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c009db8 PA:1c009dfc +76628677ns 1415198 1c002024 00008067 jalr x0, x1, 0 x1:1c00238e +76628717ns 1415200 1c00238e 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +76628758ns 1415202 1c002390 fff78793 addi x15, x15, -1 x15=00000000 x15:00000001 +76628778ns 1415203 1c002392 00f42023 sw x15, 0(x8) x15:00000000 x8:1c009144 PA:1c009144 +76628798ns 1415204 1c002394 00042783 lw x15, 0(x8) x15=00000000 x8:1c009144 PA:1c009144 +76628838ns 1415206 1c002396 02078163 beq x15, x0, 34 x15:00000000 +76628899ns 1415209 1c0023b8 d601a783 lw x15, -672(x3) x15=00000003 x3:1c0093dc PA:1c00913c +76628939ns 1415211 1c0023bc fc078ee3 beq x15, x0, -36 x15:00000003 +76628960ns 1415212 1c0023be 1c009937 lui x18, 0x1c009000 x18=1c009000 +76628980ns 1415213 1c0023c2 00000413 addi x8, x0, 0 x8=00000000 +76629000ns 1415214 1c0023c4 93818493 addi x9, x3, -1736 x9=1c008d14 x3:1c0093dc +76629020ns 1415215 1c0023c8 00100993 addi x19, x0, 1 x19=00000001 +76629040ns 1415216 1c0023ca c8890913 addi x18, x18, -888 x18=1c008c88 x18:1c009000 +76629061ns 1415217 1c0023ce 01400a93 addi x21, x0, 20 x21=00000014 +76629081ns 1415218 1c0023d0 04c0006f jal x0, 76 +76629121ns 1415220 1c00241c 0004a783 lw x15, 0(x9) x15=00000000 x9:1c008d14 PA:1c008d14 +76629161ns 1415222 1c00241e fa079ae3 bne x15, x0, -76 x15:00000000 +76629182ns 1415223 1c002420 00040363 beq x8, x0, 6 x8:00000000 +76629262ns 1415227 1c002426 d8018713 addi x14, x3, -640 x14=1c00915c x3:1c0093dc +76629283ns 1415228 1c00242a 00072483 lw x9, 0(x14) x9=00000000 x14:1c00915c PA:1c00915c +76629303ns 1415229 1c00242c d8018413 addi x8, x3, -640 x8=1c00915c x3:1c0093dc +76629323ns 1415230 1c002430 00048d63 beq x9, x0, 26 x9:00000000 +76629404ns 1415234 1c00244a d8c1a783 lw x15, -628(x3) x15=00000001 x3:1c0093dc PA:1c009168 +76629444ns 1415236 1c00244e f40785e3 beq x15, x0, -182 x15:00000001 +76629464ns 1415237 1c002450 00000073 ecall +76629545ns 1415241 1c000800 1000006f jal x0, 256 +76629586ns 1415243 1c000900 f8810113 addi x2, x2, -120 x2=1c009aa8 x2:1c009b20 +76629606ns 1415244 1c000904 00112223 sw x1, 4(x2) x1:1c00238e x2:1c009aa8 PA:1c009aac +76629626ns 1415245 1c000906 00512423 sw x5, 8(x2) x5:a5a5a5a5 x2:1c009aa8 PA:1c009ab0 +76629646ns 1415246 1c000908 00612623 sw x6, 12(x2) x6:00000010 x2:1c009aa8 PA:1c009ab4 +76629666ns 1415247 1c00090a 00712823 sw x7, 16(x2) x7:a5a5a5a5 x2:1c009aa8 PA:1c009ab8 +76629686ns 1415248 1c00090c 00812a23 sw x8, 20(x2) x8:1c00915c x2:1c009aa8 PA:1c009abc +76629707ns 1415249 1c00090e 00912c23 sw x9, 24(x2) x9:00000000 x2:1c009aa8 PA:1c009ac0 +76629727ns 1415250 1c000910 00a12e23 sw x10, 28(x2) x10:1c00c338 x2:1c009aa8 PA:1c009ac4 +76629747ns 1415251 1c000912 02b12023 sw x11, 32(x2) x11:00000058 x2:1c009aa8 PA:1c009ac8 +76629767ns 1415252 1c000914 02c12223 sw x12, 36(x2) x12:00000002 x2:1c009aa8 PA:1c009acc +76629787ns 1415253 1c000916 02d12423 sw x13, 40(x2) x13:1c009db8 x2:1c009aa8 PA:1c009ad0 +76629808ns 1415254 1c000918 02e12623 sw x14, 44(x2) x14:1c00915c x2:1c009aa8 PA:1c009ad4 +76629828ns 1415255 1c00091a 02f12823 sw x15, 48(x2) x15:00000001 x2:1c009aa8 PA:1c009ad8 +76629848ns 1415256 1c00091c 03012a23 sw x16, 52(x2) x16:60070004 x2:1c009aa8 PA:1c009adc +76629868ns 1415257 1c00091e 03112c23 sw x17, 56(x2) x17:00000005 x2:1c009aa8 PA:1c009ae0 +76629888ns 1415258 1c000920 03212e23 sw x18, 60(x2) x18:1c008c88 x2:1c009aa8 PA:1c009ae4 +76629909ns 1415259 1c000922 05312023 sw x19, 64(x2) x19:00000001 x2:1c009aa8 PA:1c009ae8 +76629929ns 1415260 1c000924 05412223 sw x20, 68(x2) x20:1c00918c x2:1c009aa8 PA:1c009aec +76629949ns 1415261 1c000926 05512423 sw x21, 72(x2) x21:00000014 x2:1c009aa8 PA:1c009af0 +76629969ns 1415262 1c000928 05612623 sw x22, 76(x2) x22:a5a5a5a5 x2:1c009aa8 PA:1c009af4 +76629989ns 1415263 1c00092a 05712823 sw x23, 80(x2) x23:a5a5a5a5 x2:1c009aa8 PA:1c009af8 +76630010ns 1415264 1c00092c 05812a23 sw x24, 84(x2) x24:a5a5a5a5 x2:1c009aa8 PA:1c009afc +76630030ns 1415265 1c00092e 05912c23 sw x25, 88(x2) x25:a5a5a5a5 x2:1c009aa8 PA:1c009b00 +76630050ns 1415266 1c000930 05a12e23 sw x26, 92(x2) x26:a5a5a5a5 x2:1c009aa8 PA:1c009b04 +76630070ns 1415267 1c000932 07b12023 sw x27, 96(x2) x27:a5a5a5a5 x2:1c009aa8 PA:1c009b08 +76630090ns 1415268 1c000934 07c12223 sw x28, 100(x2) x28:00000004 x2:1c009aa8 PA:1c009b0c +76630111ns 1415269 1c000936 07d12423 sw x29, 104(x2) x29:1c00b890 x2:1c009aa8 PA:1c009b10 +76630131ns 1415270 1c000938 07e12623 sw x30, 108(x2) x30:00000000 x2:1c009aa8 PA:1c009b14 +76630151ns 1415271 1c00093a 07f12823 sw x31, 112(x2) x31:a5a5a5a5 x2:1c009aa8 PA:1c009b18 +76630171ns 1415272 1c00093c 300022f3 csrrs x5, x0, 0x300 x5=00001800 +76630252ns 1415276 1c000940 06512a23 sw x5, 116(x2) x5:00001800 x2:1c009aa8 PA:1c009b1c +76630272ns 1415277 1c000942 fe810113 addi x2, x2, -24 x2=1c009a90 x2:1c009aa8 +76630292ns 1415278 1c000944 7c0022f3 csrrs x5, x0, 0x7c0 x5=00000000 +76630312ns 1415279 1c000948 7c102373 csrrs x6, x0, 0x7c1 x6=00000000 +76630333ns 1415280 1c00094c 7c2023f3 csrrs x7, x0, 0x7c2 x7=00000000 +76630353ns 1415281 1c000950 7c402e73 csrrs x28, x0, 0x7c4 x28=00000000 +76630373ns 1415282 1c000954 7c502ef3 csrrs x29, x0, 0x7c5 x29=00000000 +76630393ns 1415283 1c000958 7c602f73 csrrs x30, x0, 0x7c6 x30=00000000 +76630413ns 1415284 1c00095c 00512223 sw x5, 4(x2) x5:00000000 x2:1c009a90 PA:1c009a94 +76630434ns 1415285 1c00095e 00612423 sw x6, 8(x2) x6:00000000 x2:1c009a90 PA:1c009a98 +76630454ns 1415286 1c000960 00712623 sw x7, 12(x2) x7:00000000 x2:1c009a90 PA:1c009a9c +76630474ns 1415287 1c000962 01c12823 sw x28, 16(x2) x28:00000000 x2:1c009a90 PA:1c009aa0 +76630494ns 1415288 1c000964 01d12a23 sw x29, 20(x2) x29:00000000 x2:1c009a90 PA:1c009aa4 +76630514ns 1415289 1c000966 01e12c23 sw x30, 24(x2) x30:00000000 x2:1c009a90 PA:1c009aa8 +76630535ns 1415290 1c000968 d541a283 lw x5, -684(x3) x5=1c009db8 x3:1c0093dc PA:1c009130 +76630575ns 1415292 1c00096c 0022a023 sw x2, 0(x5) x2:1c009a90 x5:1c009db8 PA:1c009db8 +76630595ns 1415293 1c000970 34202573 csrrs x10, x0, 0x342 x10=0000000b +76630615ns 1415294 1c000974 341025f3 csrrs x11, x0, 0x341 x11=1c002450 +76630635ns 1415295 1c000978 01f55613 srli x12, x10, 0x1f x12=00000000 x10:0000000b +76630656ns 1415296 1c00097c 00060963 beq x12, x0, 18 x12:00000000 +76630716ns 1415299 1c00098e 00458593 addi x11, x11, 4 x11=1c002454 x11:1c002450 +76630736ns 1415300 1c000990 00b12023 sw x11, 0(x2) x11:1c002454 x2:1c009a90 PA:1c009a90 +76630757ns 1415301 1c000992 00b00293 addi x5, x0, 11 x5=0000000b +76630777ns 1415302 1c000994 7ff57513 andi x10, x10, 2047 x10=0000000b x10:0000000b +76630797ns 1415303 1c000998 00551963 bne x10, x5, 18 x10:0000000b x5:0000000b +76630817ns 1415304 1c00099c 00008117 auipc x2, 0x8000 x2=1c00899c +76630837ns 1415305 1c0009a0 23812103 lw x2, 568(x2) x2=1c0199b0 x2:1c00899c PA:1c008bd4 +76630858ns 1415306 1c0009a4 1d2010ef jal x1, 4562 x1=1c0009a8 +76630918ns 1415309 1c001b76 d681a703 lw x14, -664(x3) x14=00000000 x3:1c0093dc PA:1c009144 +76630938ns 1415310 1c001b7a d8c18793 addi x15, x3, -628 x15=1c009168 x3:1c0093dc +76630959ns 1415311 1c001b7e 00070463 beq x14, x0, 8 x14:00000000 +76631019ns 1415314 1c001b86 ff010113 addi x2, x2, -16 x2=1c0199a0 x2:1c0199b0 +76631039ns 1415315 1c001b88 00812423 sw x8, 8(x2) x8:1c00915c x2:1c0199a0 PA:1c0199a8 +76631060ns 1415316 1c001b8a 00112623 sw x1, 12(x2) x1:1c0009a8 x2:1c0199a0 PA:1c0199ac +76631080ns 1415317 1c001b8c 0007a023 sw x0, 0(x15) x15:1c009168 PA:1c009168 +76631100ns 1415318 1c001b90 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76631120ns 1415319 1c001b94 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76631140ns 1415320 1c001b96 a5a5a737 lui x14, 0xa5a5a000 x14=a5a5a000 +76631160ns 1415321 1c001b9a 5a570713 addi x14, x14, 1445 x14=a5a5a5a5 x14:a5a5a000 +76631181ns 1415322 1c001b9e 0307a783 lw x15, 48(x15) x15=1c009770 x15:1c009db8 PA:1c009de8 +76631201ns 1415323 1c001ba0 d5418413 addi x8, x3, -684 x8=1c009130 x3:1c0093dc +76631221ns 1415324 1c001ba4 0007a603 lw x12, 0(x15) x12=a5a5a5a5 x15:1c009770 PA:1c009770 +76631261ns 1415326 1c001ba6 00e61b63 bne x12, x14, 22 x12:a5a5a5a5 x14:a5a5a5a5 +76631282ns 1415327 1c001baa 0047a683 lw x13, 4(x15) x13=a5a5a5a5 x15:1c009770 PA:1c009774 +76631322ns 1415329 1c001bac 00c69863 bne x13, x12, 16 x13:a5a5a5a5 x12:a5a5a5a5 +76631342ns 1415330 1c001bb0 0087a703 lw x14, 8(x15) x14=a5a5a5a5 x15:1c009770 PA:1c009778 +76631383ns 1415332 1c001bb2 00d71563 bne x14, x13, 10 x14:a5a5a5a5 x13:a5a5a5a5 +76631403ns 1415333 1c001bb6 00c7a783 lw x15, 12(x15) x15=a5a5a5a5 x15:1c009770 PA:1c00977c +76631443ns 1415335 1c001bb8 00e78863 beq x15, x14, 16 x15:a5a5a5a5 x14:a5a5a5a5 +76631504ns 1415338 1c001bc8 d701a503 lw x10, -656(x3) x10=00000003 x3:1c0093dc PA:1c00914c +76631524ns 1415339 1c001bcc abeff0ef jal x1, -3394 x1=1c001bd0 +76631564ns 1415341 1c000e8a 000107b7 lui x15, 0x10000 x15=00010000 +76631585ns 1415342 1c000e8c 02f57663 bgeu x10, x15, 44 x10:00000003 x15:00010000 +76631605ns 1415343 1c000e90 0ff00793 addi x15, x0, 255 x15=000000ff +76631625ns 1415344 1c000e94 00a7b7b3 sltu x15, x15, x10 x15=00000000 x15:000000ff x10:00000003 +76631645ns 1415345 1c000e98 00379793 slli x15, x15, 0x3 x15=00000000 x15:00000000 +76631665ns 1415346 1c000e9a 1c009737 lui x14, 0x1c009000 x14=1c009000 +76631685ns 1415347 1c000e9e 02000693 addi x13, x0, 32 x13=00000020 +76631706ns 1415348 1c000ea2 40f686b3 sub x13, x13, x15 x13=00000020 x13:00000020 x15:00000000 +76631726ns 1415349 1c000ea4 00f55533 srl x10, x10, x15 x10=00000003 x10:00000003 x15:00000000 +76631746ns 1415350 1c000ea8 ad470793 addi x15, x14, -1324 x15=1c008ad4 x14:1c009000 +76631766ns 1415351 1c000eac 00f50533 add x10, x10, x15 x10=1c008ad7 x10:00000003 x15:1c008ad4 +76631786ns 1415352 1c000eae 00054503 lbu x10, 0(x10) x10=00000002 x10:1c008ad7 PA:1c008ad7 +76631827ns 1415354 1c000eb2 40a68533 sub x10, x13, x10 x10=0000001e x13:00000020 x10:00000002 +76631847ns 1415355 1c000eb6 00008067 jalr x0, x1, 0 x1:1c001bd0 +76631887ns 1415357 1c001bd0 01f00713 addi x14, x0, 31 x14=0000001f +76631908ns 1415358 1c001bd2 40a70533 sub x10, x14, x10 x10=00000001 x14:0000001f x10:0000001e +76631928ns 1415359 1c001bd6 01400793 addi x15, x0, 20 x15=00000014 +76631948ns 1415360 1c001bd8 02f507b3 mul x15, x10, x15 x15=00000014 x10:00000001 x15:00000014 +76631968ns 1415361 1c001bdc 1c009737 lui x14, 0x1c009000 x14=1c009000 +76631988ns 1415362 1c001be0 c8870693 addi x13, x14, -888 x13=1c008c88 x14:1c009000 +76632009ns 1415363 1c001be4 c8870713 addi x14, x14, -888 x14=1c008c88 x14:1c009000 +76632029ns 1415364 1c001be8 00f686b3 add x13, x13, x15 x13=1c008c9c x13:1c008c88 x15:00000014 +76632049ns 1415365 1c001bea 0006a603 lw x12, 0(x13) x12=00000001 x13:1c008c9c PA:1c008c9c +76632089ns 1415367 1c001bec 02061263 bne x12, x0, 36 x12:00000001 +76632150ns 1415370 1c001c10 0046a603 lw x12, 4(x13) x12=1c009dbc x13:1c008c9c PA:1c008ca0 +76632170ns 1415371 1c001c12 00878793 addi x15, x15, 8 x15=0000001c x15:00000014 +76632190ns 1415372 1c001c14 00e787b3 add x15, x15, x14 x15=1c008ca4 x15:0000001c x14:1c008c88 +76632210ns 1415373 1c001c16 00462603 lw x12, 4(x12) x12=1c008ca4 x12:1c009dbc PA:1c009dc0 +76632251ns 1415375 1c001c18 00c6a223 sw x12, 4(x13) x12:1c008ca4 x13:1c008c9c PA:1c008ca0 +76632271ns 1415376 1c001c1a 00f61463 bne x12, x15, 8 x12:1c008ca4 x15:1c008ca4 +76632291ns 1415377 1c001c1e 00462783 lw x15, 4(x12) x15=1c009dbc x12:1c008ca4 PA:1c008ca8 +76632332ns 1415379 1c001c20 00f6a223 sw x15, 4(x13) x15:1c009dbc x13:1c008c9c PA:1c008ca0 +76632352ns 1415380 1c001c22 01400793 addi x15, x0, 20 x15=00000014 +76632372ns 1415381 1c001c24 02f50533 mul x10, x10, x15 x10=00000014 x10:00000001 x15:00000014 +76632392ns 1415382 1c001c28 00c12083 lw x1, 12(x2) x1=1c0009a8 x2:1c0199a0 PA:1c0199ac +76632412ns 1415383 1c001c2a 00a70733 add x14, x14, x10 x14=1c008c9c x14:1c008c88 x10:00000014 +76632433ns 1415384 1c001c2c 00472783 lw x15, 4(x14) x15=1c009dbc x14:1c008c9c PA:1c008ca0 +76632453ns 1415385 1c001c2e 1c009737 lui x14, 0x1c009000 x14=1c009000 +76632473ns 1415386 1c001c32 00c7a783 lw x15, 12(x15) x15=1c009db8 x15:1c009dbc PA:1c009dc8 +76632513ns 1415388 1c001c34 00f42023 sw x15, 0(x8) x15:1c009db8 x8:1c009130 PA:1c009130 +76632534ns 1415389 1c001c36 00042783 lw x15, 0(x8) x15=1c009db8 x8:1c009130 PA:1c009130 +76632554ns 1415390 1c001c38 00812403 lw x8, 8(x2) x8=1c00915c x2:1c0199a0 PA:1c0199a8 +76632574ns 1415391 1c001c3a 05878793 addi x15, x15, 88 x15=1c009e10 x15:1c009db8 +76632594ns 1415392 1c001c3e c4f72223 sw x15, -956(x14) x15:1c009e10 x14:1c009000 PA:1c008c44 +76632614ns 1415393 1c001c42 01010113 addi x2, x2, 16 x2=1c0199b0 x2:1c0199a0 +76632635ns 1415394 1c001c44 00008067 jalr x0, x1, 0 x1:1c0009a8 +76632675ns 1415396 1c0009a8 0160006f jal x0, 22 +76632735ns 1415399 1c0009be d541a303 lw x6, -684(x3) x6=1c009db8 x3:1c0093dc PA:1c009130 +76632776ns 1415401 1c0009c2 00032103 lw x2, 0(x6) x2=1c009a90 x6:1c009db8 PA:1c009db8 +76632816ns 1415403 1c0009c6 00012283 lw x5, 0(x2) x5=1c002454 x2:1c009a90 PA:1c009a90 +76632857ns 1415405 1c0009c8 34129073 csrrw x0, x5, 0x341 x5:1c002454 +76632877ns 1415406 1c0009cc 00412283 lw x5, 4(x2) x5=00000000 x2:1c009a90 PA:1c009a94 +76632897ns 1415407 1c0009ce 00812303 lw x6, 8(x2) x6=00000000 x2:1c009a90 PA:1c009a98 +76632917ns 1415408 1c0009d0 00c12383 lw x7, 12(x2) x7=00000000 x2:1c009a90 PA:1c009a9c +76632937ns 1415409 1c0009d2 01012e03 lw x28, 16(x2) x28=00000000 x2:1c009a90 PA:1c009aa0 +76632958ns 1415410 1c0009d4 01412e83 lw x29, 20(x2) x29=00000000 x2:1c009a90 PA:1c009aa4 +76632978ns 1415411 1c0009d6 01812f03 lw x30, 24(x2) x30=00000000 x2:1c009a90 PA:1c009aa8 +76632998ns 1415412 1c0009d8 7c029073 csrrw x0, x5, 0x7c0 x5:00000000 +76633018ns 1415413 1c0009dc 7c131073 csrrw x0, x6, 0x7c1 x6:00000000 +76633038ns 1415414 1c0009e0 7c239073 csrrw x0, x7, 0x7c2 x7:00000000 +76633059ns 1415415 1c0009e4 7c4e1073 csrrw x0, x28, 0x7c4 x28:00000000 +76633079ns 1415416 1c0009e8 7c5e9073 csrrw x0, x29, 0x7c5 x29:00000000 +76633099ns 1415417 1c0009ec 7c6f1073 csrrw x0, x30, 0x7c6 x30:00000000 +76633119ns 1415418 1c0009f0 01810113 addi x2, x2, 24 x2=1c009aa8 x2:1c009a90 +76633139ns 1415419 1c0009f2 07412283 lw x5, 116(x2) x5=00001800 x2:1c009aa8 PA:1c009b1c +76633180ns 1415421 1c0009f4 30029073 csrrw x0, x5, 0x300 x5:00001800 +76633260ns 1415425 1c0009f8 00412083 lw x1, 4(x2) x1=1c00238e x2:1c009aa8 PA:1c009aac +76633281ns 1415426 1c0009fa 00812283 lw x5, 8(x2) x5=a5a5a5a5 x2:1c009aa8 PA:1c009ab0 +76633301ns 1415427 1c0009fc 00c12303 lw x6, 12(x2) x6=00000010 x2:1c009aa8 PA:1c009ab4 +76633321ns 1415428 1c0009fe 01012383 lw x7, 16(x2) x7=a5a5a5a5 x2:1c009aa8 PA:1c009ab8 +76633341ns 1415429 1c000a00 01412403 lw x8, 20(x2) x8=1c00915c x2:1c009aa8 PA:1c009abc +76633361ns 1415430 1c000a02 01812483 lw x9, 24(x2) x9=00000000 x2:1c009aa8 PA:1c009ac0 +76633382ns 1415431 1c000a04 01c12503 lw x10, 28(x2) x10=1c00c338 x2:1c009aa8 PA:1c009ac4 +76633402ns 1415432 1c000a06 02012583 lw x11, 32(x2) x11=00000058 x2:1c009aa8 PA:1c009ac8 +76633422ns 1415433 1c000a08 02412603 lw x12, 36(x2) x12=00000002 x2:1c009aa8 PA:1c009acc +76633442ns 1415434 1c000a0a 02812683 lw x13, 40(x2) x13=1c009db8 x2:1c009aa8 PA:1c009ad0 +76633462ns 1415435 1c000a0c 02c12703 lw x14, 44(x2) x14=1c00915c x2:1c009aa8 PA:1c009ad4 +76633483ns 1415436 1c000a0e 03012783 lw x15, 48(x2) x15=00000001 x2:1c009aa8 PA:1c009ad8 +76633503ns 1415437 1c000a10 03412803 lw x16, 52(x2) x16=60070004 x2:1c009aa8 PA:1c009adc +76633523ns 1415438 1c000a12 03812883 lw x17, 56(x2) x17=00000005 x2:1c009aa8 PA:1c009ae0 +76633543ns 1415439 1c000a14 03c12903 lw x18, 60(x2) x18=1c008c88 x2:1c009aa8 PA:1c009ae4 +76633563ns 1415440 1c000a16 04012983 lw x19, 64(x2) x19=00000001 x2:1c009aa8 PA:1c009ae8 +76633584ns 1415441 1c000a18 04412a03 lw x20, 68(x2) x20=1c00918c x2:1c009aa8 PA:1c009aec +76633604ns 1415442 1c000a1a 04812a83 lw x21, 72(x2) x21=00000014 x2:1c009aa8 PA:1c009af0 +76633624ns 1415443 1c000a1c 04c12b03 lw x22, 76(x2) x22=a5a5a5a5 x2:1c009aa8 PA:1c009af4 +76633644ns 1415444 1c000a1e 05012b83 lw x23, 80(x2) x23=a5a5a5a5 x2:1c009aa8 PA:1c009af8 +76633664ns 1415445 1c000a20 05412c03 lw x24, 84(x2) x24=a5a5a5a5 x2:1c009aa8 PA:1c009afc +76633684ns 1415446 1c000a22 05812c83 lw x25, 88(x2) x25=a5a5a5a5 x2:1c009aa8 PA:1c009b00 +76633705ns 1415447 1c000a24 05c12d03 lw x26, 92(x2) x26=a5a5a5a5 x2:1c009aa8 PA:1c009b04 +76633725ns 1415448 1c000a26 06012d83 lw x27, 96(x2) x27=a5a5a5a5 x2:1c009aa8 PA:1c009b08 +76633745ns 1415449 1c000a28 06412e03 lw x28, 100(x2) x28=00000004 x2:1c009aa8 PA:1c009b0c +76633765ns 1415450 1c000a2a 06812e83 lw x29, 104(x2) x29=1c00b890 x2:1c009aa8 PA:1c009b10 +76633785ns 1415451 1c000a2c 06c12f03 lw x30, 108(x2) x30=00000000 x2:1c009aa8 PA:1c009b14 +76633806ns 1415452 1c000a2e 07012f83 lw x31, 112(x2) x31=a5a5a5a5 x2:1c009aa8 PA:1c009b18 +76633826ns 1415453 1c000a30 07810113 addi x2, x2, 120 x2=1c009b20 x2:1c009aa8 +76633846ns 1415454 1c000a34 30200073 mret +76633947ns 1415459 1c002454 00100513 addi x10, x0, 1 x10=00000001 +76633967ns 1415460 1c002456 f45ff06f jal x0, -188 +76634008ns 1415462 1c00239a 00a12623 sw x10, 12(x2) x10:00000001 x2:1c009b20 PA:1c009b2c +76634028ns 1415463 1c00239c c8bff0ef jal x1, -886 x1=1c0023a0 +76634088ns 1415466 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76634129ns 1415468 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +76634149ns 1415469 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76634169ns 1415470 1c002030 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +76634209ns 1415472 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c009db8 PA:1c009dfc +76634250ns 1415474 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +76634270ns 1415475 1c002036 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76634290ns 1415476 1c002038 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76634310ns 1415477 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c009db8 PA:1c009dfc +76634351ns 1415479 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +76634371ns 1415480 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c009db8 PA:1c009dfc +76634391ns 1415481 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c009db8 PA:1c009dfc +76634432ns 1415483 1c002042 00079363 bne x15, x0, 6 x15:00000000 +76634452ns 1415484 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +76634533ns 1415488 1c002048 00008067 jalr x0, x1, 0 x1:1c0023a0 +76634573ns 1415490 1c0023a0 03c12083 lw x1, 60(x2) x1=1c002982 x2:1c009b20 PA:1c009b5c +76634593ns 1415491 1c0023a2 03812403 lw x8, 56(x2) x8=1c00c338 x2:1c009b20 PA:1c009b58 +76634613ns 1415492 1c0023a4 00c12503 lw x10, 12(x2) x10=00000001 x2:1c009b20 PA:1c009b2c +76634634ns 1415493 1c0023a6 03412483 lw x9, 52(x2) x9=00000000 x2:1c009b20 PA:1c009b54 +76634654ns 1415494 1c0023a8 03012903 lw x18, 48(x2) x18=000000ff x2:1c009b20 PA:1c009b50 +76634674ns 1415495 1c0023aa 02c12983 lw x19, 44(x2) x19=00000002 x2:1c009b20 PA:1c009b4c +76634694ns 1415496 1c0023ac 02812a03 lw x20, 40(x2) x20=1c00918c x2:1c009b20 PA:1c009b48 +76634714ns 1415497 1c0023ae 02412a83 lw x21, 36(x2) x21=a5a5a5a5 x2:1c009b20 PA:1c009b44 +76634734ns 1415498 1c0023b0 02012b03 lw x22, 32(x2) x22=a5a5a5a5 x2:1c009b20 PA:1c009b40 +76634755ns 1415499 1c0023b2 01c12b83 lw x23, 28(x2) x23=a5a5a5a5 x2:1c009b20 PA:1c009b3c +76634775ns 1415500 1c0023b4 04010113 addi x2, x2, 64 x2=1c009b60 x2:1c009b20 +76634795ns 1415501 1c0023b6 00008067 jalr x0, x1, 0 x1:1c002982 +76634835ns 1415503 1c002982 00041363 bne x8, x0, 6 x8:1c00c338 +76634896ns 1415506 1c002988 01c12083 lw x1, 28(x2) x1=1c001154 x2:1c009b60 PA:1c009b7c +76634916ns 1415507 1c00298a 00800533 add x10, x0, x8 x10=1c00c338 x8:1c00c338 +76634936ns 1415508 1c00298c 01812403 lw x8, 24(x2) x8=00000000 x2:1c009b60 PA:1c009b78 +76634957ns 1415509 1c00298e 02010113 addi x2, x2, 32 x2=1c009b80 x2:1c009b60 +76634977ns 1415510 1c002990 00008067 jalr x0, x1, 0 x1:1c001154 +76635017ns 1415512 1c001154 00a00433 add x8, x0, x10 x8=1c00c338 x10:1c00c338 +76635037ns 1415513 1c001156 00050e63 beq x10, x0, 28 x10:1c00c338 +76635058ns 1415514 1c001158 00a007b3 add x15, x0, x10 x15=1c00c338 x10:1c00c338 +76635078ns 1415515 1c00115a 00048363 beq x9, x0, 6 x9:00000000 +76635138ns 1415518 1c001160 00f42023 sw x15, 0(x8) x15:1c00c338 x8:1c00c338 PA:1c00c338 +76635159ns 1415519 1c001162 03242e23 sw x18, 60(x8) x18:000000ff x8:1c00c338 PA:1c00c374 +76635179ns 1415520 1c001166 04942023 sw x9, 64(x8) x9:00000000 x8:1c00c338 PA:1c00c378 +76635199ns 1415521 1c001168 00100593 addi x11, x0, 1 x11=00000001 +76635219ns 1415522 1c00116a 00800533 add x10, x0, x8 x10=1c00c338 x8:1c00c338 +76635239ns 1415523 1c00116c f1fff0ef jal x1, -226 x1=1c00116e +76635280ns 1415525 1c00108a ff010113 addi x2, x2, -16 x2=1c009b70 x2:1c009b80 +76635300ns 1415526 1c00108c 00112623 sw x1, 12(x2) x1:1c00116e x2:1c009b70 PA:1c009b7c +76635320ns 1415527 1c00108e 00812423 sw x8, 8(x2) x8:1c00c338 x2:1c009b70 PA:1c009b78 +76635340ns 1415528 1c001090 00912223 sw x9, 4(x2) x9:00000000 x2:1c009b70 PA:1c009b74 +76635360ns 1415529 1c001092 02051163 bne x10, x0, 34 x10:1c00c338 +76635421ns 1415532 1c0010b4 00a00433 add x8, x0, x10 x8=1c00c338 x10:1c00c338 +76635441ns 1415533 1c0010b6 00b004b3 add x9, x0, x11 x9=00000001 x11:00000001 +76635461ns 1415534 1c0010b8 755000ef jal x1, 3924 x1=1c0010bc +76635502ns 1415536 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +76635583ns 1415540 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76635623ns 1415542 1c002014 00078863 beq x15, x0, 16 x15:00000001 +76635643ns 1415543 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76635663ns 1415544 1c00201a 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76635683ns 1415545 1c00201c 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76635704ns 1415546 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c009db8 PA:1c009dfc +76635744ns 1415548 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76635764ns 1415549 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c009db8 PA:1c009dfc +76635784ns 1415550 1c002024 00008067 jalr x0, x1, 0 x1:1c0010bc +76635825ns 1415552 1c0010bc 04042683 lw x13, 64(x8) x13=00000000 x8:1c00c338 PA:1c00c378 +76635845ns 1415553 1c0010be 03c42783 lw x15, 60(x8) x15=000000ff x8:1c00c338 PA:1c00c374 +76635865ns 1415554 1c0010c0 00042703 lw x14, 0(x8) x14=1c00c338 x8:1c00c338 PA:1c00c338 +76635885ns 1415555 1c0010c2 02042c23 sw x0, 56(x8) x8:1c00c338 PA:1c00c370 +76635906ns 1415556 1c0010c6 02f687b3 mul x15, x13, x15 x15=00000000 x13:00000000 x15:000000ff +76635926ns 1415557 1c0010ca 00e42223 sw x14, 4(x8) x14:1c00c338 x8:1c00c338 PA:1c00c33c +76635946ns 1415558 1c0010cc 00f70633 add x12, x14, x15 x12=1c00c338 x14:1c00c338 x15:00000000 +76635966ns 1415559 1c0010d0 40d787b3 sub x15, x15, x13 x15=00000000 x15:00000000 x13:00000000 +76635986ns 1415560 1c0010d2 00e787b3 add x15, x15, x14 x15=1c00c338 x15:00000000 x14:1c00c338 +76636007ns 1415561 1c0010d4 00f42623 sw x15, 12(x8) x15:1c00c338 x8:1c00c338 PA:1c00c344 +76636027ns 1415562 1c0010d6 fff00793 addi x15, x0, -1 x15=ffffffff +76636047ns 1415563 1c0010d8 04f40223 sb x15, 68(x8) x15:ffffffff x8:1c00c338 PA:1c00c37c +76636067ns 1415564 1c0010dc 00c42423 sw x12, 8(x8) x12:1c00c338 x8:1c00c338 PA:1c00c340 +76636087ns 1415565 1c0010de 04f402a3 sb x15, 69(x8) x15:ffffffff x8:1c00c338 PA:1c00c37d +76636108ns 1415566 1c0010e2 02049263 bne x9, x0, 36 x9:00000001 +76636188ns 1415570 1c001106 01040513 addi x10, x8, 16 x10=1c00c348 x8:1c00c338 +76636208ns 1415571 1c00110a dbdff0ef jal x1, -580 x1=1c00110c +76636269ns 1415574 1c000ec6 00850793 addi x15, x10, 8 x15=1c00c350 x10:1c00c348 +76636289ns 1415575 1c000eca fff00713 addi x14, x0, -1 x14=ffffffff +76636309ns 1415576 1c000ecc 00f52223 sw x15, 4(x10) x15:1c00c350 x10:1c00c348 PA:1c00c34c +76636330ns 1415577 1c000ece 00e52423 sw x14, 8(x10) x14:ffffffff x10:1c00c348 PA:1c00c350 +76636350ns 1415578 1c000ed0 00f52623 sw x15, 12(x10) x15:1c00c350 x10:1c00c348 PA:1c00c354 +76636370ns 1415579 1c000ed2 00f52823 sw x15, 16(x10) x15:1c00c350 x10:1c00c348 PA:1c00c358 +76636390ns 1415580 1c000ed4 00052023 sw x0, 0(x10) x10:1c00c348 PA:1c00c348 +76636410ns 1415581 1c000ed8 00008067 jalr x0, x1, 0 x1:1c00110c +76636451ns 1415583 1c00110c 02440513 addi x10, x8, 36 x10=1c00c35c x8:1c00c338 +76636471ns 1415584 1c001110 db7ff0ef jal x1, -586 x1=1c001112 +76636532ns 1415587 1c000ec6 00850793 addi x15, x10, 8 x15=1c00c364 x10:1c00c35c +76636552ns 1415588 1c000eca fff00713 addi x14, x0, -1 x14=ffffffff +76636572ns 1415589 1c000ecc 00f52223 sw x15, 4(x10) x15:1c00c364 x10:1c00c35c PA:1c00c360 +76636592ns 1415590 1c000ece 00e52423 sw x14, 8(x10) x14:ffffffff x10:1c00c35c PA:1c00c364 +76636612ns 1415591 1c000ed0 00f52623 sw x15, 12(x10) x15:1c00c364 x10:1c00c35c PA:1c00c368 +76636633ns 1415592 1c000ed2 00f52823 sw x15, 16(x10) x15:1c00c364 x10:1c00c35c PA:1c00c36c +76636653ns 1415593 1c000ed4 00052023 sw x0, 0(x10) x10:1c00c35c PA:1c00c35c +76636673ns 1415594 1c000ed8 00008067 jalr x0, x1, 0 x1:1c001112 +76636713ns 1415596 1c001112 fe5ff06f jal x0, -28 +76636774ns 1415599 1c0010f6 731000ef jal x1, 3888 x1=1c0010fa +76636834ns 1415602 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76636875ns 1415604 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +76636895ns 1415605 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76636915ns 1415606 1c002030 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +76636956ns 1415608 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c009db8 PA:1c009dfc +76636996ns 1415610 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +76637016ns 1415611 1c002036 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76637036ns 1415612 1c002038 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76637057ns 1415613 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c009db8 PA:1c009dfc +76637097ns 1415615 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +76637117ns 1415616 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c009db8 PA:1c009dfc +76637137ns 1415617 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c009db8 PA:1c009dfc +76637178ns 1415619 1c002042 00079363 bne x15, x0, 6 x15:00000000 +76637198ns 1415620 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +76637279ns 1415624 1c002048 00008067 jalr x0, x1, 0 x1:1c0010fa +76637319ns 1415626 1c0010fa 00c12083 lw x1, 12(x2) x1=1c00116e x2:1c009b70 PA:1c009b7c +76637339ns 1415627 1c0010fc 00812403 lw x8, 8(x2) x8=1c00c338 x2:1c009b70 PA:1c009b78 +76637359ns 1415628 1c0010fe 00412483 lw x9, 4(x2) x9=00000000 x2:1c009b70 PA:1c009b74 +76637380ns 1415629 1c001100 00100513 addi x10, x0, 1 x10=00000001 +76637400ns 1415630 1c001102 01010113 addi x2, x2, 16 x2=1c009b80 x2:1c009b70 +76637420ns 1415631 1c001104 00008067 jalr x0, x1, 0 x1:1c00116e +76637481ns 1415634 1c00116e 05340623 sb x19, 76(x8) x19:00000002 x8:1c00c338 PA:1c00c384 +76637501ns 1415635 1c001172 01c12083 lw x1, 28(x2) x1=1c0011cc x2:1c009b80 PA:1c009b9c +76637521ns 1415636 1c001174 00800533 add x10, x0, x8 x10=1c00c338 x8:1c00c338 +76637541ns 1415637 1c001176 01812403 lw x8, 24(x2) x8=00000000 x2:1c009b80 PA:1c009b98 +76637561ns 1415638 1c001178 01412483 lw x9, 20(x2) x9=1c009190 x2:1c009b80 PA:1c009b94 +76637582ns 1415639 1c00117a 01012903 lw x18, 16(x2) x18=1c009188 x2:1c009b80 PA:1c009b90 +76637602ns 1415640 1c00117c 00c12983 lw x19, 12(x2) x19=1c009000 x2:1c009b80 PA:1c009b8c +76637622ns 1415641 1c00117e 02010113 addi x2, x2, 32 x2=1c009ba0 x2:1c009b80 +76637642ns 1415642 1c001180 00008067 jalr x0, x1, 0 x1:1c0011cc +76637683ns 1415644 1c0011cc 00050263 beq x10, x0, 4 x10:1c00c338 +76637703ns 1415645 1c0011ce 02852c23 sw x8, 56(x10) x8:00000000 x10:1c00c338 PA:1c00c370 +76637723ns 1415646 1c0011d0 00c12083 lw x1, 12(x2) x1=1c003454 x2:1c009ba0 PA:1c009bac +76637743ns 1415647 1c0011d2 00812403 lw x8, 8(x2) x8=1c009d28 x2:1c009ba0 PA:1c009ba8 +76637763ns 1415648 1c0011d4 01010113 addi x2, x2, 16 x2=1c009bb0 x2:1c009ba0 +76637783ns 1415649 1c0011d6 00008067 jalr x0, x1, 0 x1:1c003454 +76637824ns 1415651 1c003454 02a42a23 sw x10, 52(x8) x10:1c00c338 x8:1c009d28 PA:1c009d5c +76637844ns 1415652 1c003456 00050b63 beq x10, x0, 22 x10:1c00c338 +76637864ns 1415653 1c003458 1c0037b7 lui x15, 0x1c003000 x15=1c003000 +76637884ns 1415654 1c00345c 40c78793 addi x15, x15, 1036 x15=1c00340c x15:1c003000 +76637905ns 1415655 1c003460 02f42c23 sw x15, 56(x8) x15:1c00340c x8:1c009d28 PA:1c009d60 +76637925ns 1415656 1c003462 1c0037b7 lui x15, 0x1c003000 x15=1c003000 +76637945ns 1415657 1c003466 3da78793 addi x15, x15, 986 x15=1c0033da x15:1c003000 +76637965ns 1415658 1c00346a 02f42e23 sw x15, 60(x8) x15:1c0033da x8:1c009d28 PA:1c009d64 +76637985ns 1415659 1c00346c 00100793 addi x15, x0, 1 x15=00000001 +76638006ns 1415660 1c00346e 04f403a3 sb x15, 71(x8) x15:00000001 x8:1c009d28 PA:1c009d6f +76638026ns 1415661 1c003472 fff00793 addi x15, x0, -1 x15=ffffffff +76638046ns 1415662 1c003474 00c12083 lw x1, 12(x2) x1=1c0036be x2:1c009bb0 PA:1c009bbc +76638066ns 1415663 1c003476 04f402a3 sb x15, 69(x8) x15:ffffffff x8:1c009d28 PA:1c009d6d +76638086ns 1415664 1c00347a 00800533 add x10, x0, x8 x10=1c009d28 x8:1c009d28 +76638107ns 1415665 1c00347c 00812403 lw x8, 8(x2) x8=00000000 x2:1c009bb0 PA:1c009bb8 +76638127ns 1415666 1c00347e 01010113 addi x2, x2, 16 x2=1c009bc0 x2:1c009bb0 +76638147ns 1415667 1c003480 00008067 jalr x0, x1, 0 x1:1c0036be +76638187ns 1415669 1c0036be 00c12583 lw x11, 12(x2) x11=1c00bfc8 x2:1c009bc0 PA:1c009bcc +76638207ns 1415670 1c0036c0 00001637 lui x12, 0x1000 x12=00001000 +76638228ns 1415671 1c0036c2 00a00733 add x14, x0, x10 x14=1c009d28 x10:1c009d28 +76638248ns 1415672 1c0036c4 00000693 addi x13, x0, 0 x13=00000000 +76638268ns 1415673 1c0036c6 80060613 addi x12, x12, -2048 x12=00000800 x12:00001000 +76638288ns 1415674 1c0036ca 02010513 addi x10, x2, 32 x10=1c009be0 x2:1c009bc0 +76638308ns 1415675 1c0036cc caeff0ef jal x1, -2898 x1=1c0036d0 +76638349ns 1415677 1c002b7a 00852503 lw x10, 8(x10) x10=1c00b8c0 x10:1c009be0 PA:1c009be8 +76638369ns 1415678 1c002b7c 1240006f jal x0, 292 +76638409ns 1415680 1c002ca0 fa010113 addi x2, x2, -96 x2=1c009b60 x2:1c009bc0 +76638430ns 1415681 1c002ca2 05612023 sw x22, 64(x2) x22:a5a5a5a5 x2:1c009b60 PA:1c009ba0 +76638450ns 1415682 1c002ca4 00452b03 lw x22, 4(x10) x22=1c00b890 x10:1c00b8c0 PA:1c00b8c4 +76638470ns 1415683 1c002ca8 05212823 sw x18, 80(x2) x18:1c009188 x2:1c009b60 PA:1c009bb0 +76638490ns 1415684 1c002caa 03712e23 sw x23, 60(x2) x23:a5a5a5a5 x2:1c009b60 PA:1c009b9c +76638510ns 1415685 1c002cac 04112e23 sw x1, 92(x2) x1:1c0036d0 x2:1c009b60 PA:1c009bbc +76638531ns 1415686 1c002cae 04812c23 sw x8, 88(x2) x8:00000000 x2:1c009b60 PA:1c009bb8 +76638551ns 1415687 1c002cb0 04912a23 sw x9, 84(x2) x9:1c009190 x2:1c009b60 PA:1c009bb4 +76638571ns 1415688 1c002cb2 05312623 sw x19, 76(x2) x19:1c009000 x2:1c009b60 PA:1c009bac +76638591ns 1415689 1c002cb4 05412423 sw x20, 72(x2) x20:1c00918c x2:1c009b60 PA:1c009ba8 +76638611ns 1415690 1c002cb6 05512223 sw x21, 68(x2) x21:a5a5a5a5 x2:1c009b60 PA:1c009ba4 +76638632ns 1415691 1c002cb8 000107b7 lui x15, 0x10000 x15=00010000 +76638652ns 1415692 1c002cba 014b4483 lbu x9, 20(x22) x9=00000000 x22:1c00b890 PA:1c00b8a4 +76638672ns 1415693 1c002cbe 00852b83 lw x23, 8(x10) x23=00000003 x10:1c00b8c0 PA:1c00b8c8 +76638692ns 1415694 1c002cc2 00c00933 add x18, x0, x12 x18=00000800 x12:00000800 +76638712ns 1415695 1c002cc4 00c7f463 bgeu x15, x12, 8 x15:00010000 x12:00000800 +76638773ns 1415698 1c002ccc 00a00433 add x8, x0, x10 x8=1c00b8c0 x10:1c00b8c0 +76638793ns 1415699 1c002cce 00b00a33 add x20, x0, x11 x20=1c00bfc8 x11:1c00bfc8 +76638813ns 1415700 1c002cd0 00d009b3 add x19, x0, x13 x19=00000000 x13:00000000 +76638833ns 1415701 1c002cd2 00e12623 sw x14, 12(x2) x14:1c009d28 x2:1c009b60 PA:1c009b6c +76638854ns 1415702 1c002cd4 edfff0ef jal x1, -290 x1=1c002cd8 +76638914ns 1415705 1c002bb2 30047573 csrrci x10, 0x00000008, 0x300 x10=00000088 +76638995ns 1415709 1c002bb6 00008067 jalr x0, x1, 0 x1:1c002cd8 +76639035ns 1415711 1c002cd8 03944803 lbu x16, 57(x8) x16=00000000 x8:1c00b8c0 PA:1c00b8f9 +76639056ns 1415712 1c002cdc 00c12603 lw x12, 12(x2) x12=1c009d28 x2:1c009b60 PA:1c009b6c +76639076ns 1415713 1c002cde 00a00ab3 add x21, x0, x10 x21=00000088 x10:00000088 +76639096ns 1415714 1c002ce0 00080e63 beq x16, x0, 28 x16:00000000 +76639157ns 1415717 1c002cfc 00000793 addi x15, x0, 0 x15=00000000 +76639177ns 1415718 1c002cfe 00800893 addi x17, x0, 8 x17=00000008 +76639197ns 1415719 1c002d00 00cb2703 lw x14, 12(x22) x14=00000000 x22:1c00b890 PA:1c00b89c +76639237ns 1415721 1c002d04 0a071663 bne x14, x0, 172 x14:00000000 +76639257ns 1415722 1c002d06 03844783 lbu x15, 56(x8) x15=00000000 x8:1c00b8c0 PA:1c00b8f8 +76639278ns 1415723 1c002d0a 10000737 lui x14, 0x10000000 x14=10000000 +76639298ns 1415724 1c002d0e 01742623 sw x23, 12(x8) x23:00000003 x8:1c00b8c0 PA:1c00b8cc +76639318ns 1415725 1c002d12 00e7e7b3 or x15, x15, x14 x15=10000000 x15:00000000 x14:10000000 +76639338ns 1415726 1c002d14 fff88713 addi x14, x17, -1 x14=00000007 x17:00000008 +76639358ns 1415727 1c002d18 031958b3 divu x17, x18, x17 x17=00000100 x18:00000800 x17:00000008 +76639984ns 1415758 1c002d1c 00f42823 sw x15, 16(x8) x15:10000000 x8:1c00b8c0 PA:1c00b8d0 +76640005ns 1415759 1c002d1e 00c9f793 andi x15, x19, 12 x15=00000000 x19:00000000 +76640025ns 1415760 1c002d22 ffc78793 addi x15, x15, -4 x15=fffffffc x15:00000000 +76640045ns 1415761 1c002d24 0017b793 sltiu x15, x15, 1 x15=00000000 x15:fffffffc +76640065ns 1415762 1c002d28 01071713 slli x14, x14, 0x10 x14=00070000 x14:00000007 +76640085ns 1415763 1c002d2a 01b79793 slli x15, x15, 0x1b x15=00000000 x15:00000000 +76640106ns 1415764 1c002d2c 00e7e7b3 or x15, x15, x14 x15=00070000 x15:00000000 x14:00070000 +76640126ns 1415765 1c002d2e 70000737 lui x14, 0x70000000 x14=70000000 +76640146ns 1415766 1c002d32 00e7e7b3 or x15, x15, x14 x15=70070000 x15:00070000 x14:70000000 +76640166ns 1415767 1c002d34 0039f993 andi x19, x19, 3 x19=00000000 x19:00000000 +76640186ns 1415768 1c002d38 fff88893 addi x17, x17, -1 x17=000000ff x17:00000100 +76640207ns 1415769 1c002d3a 0117e7b3 or x15, x15, x17 x15=700700ff x15:70070000 x17:000000ff +76640227ns 1415770 1c002d3e 00f42a23 sw x15, 20(x8) x15:700700ff x8:1c00b8c0 PA:1c00b8d4 +76640247ns 1415771 1c002d40 00100793 addi x15, x0, 1 x15=00000001 +76640267ns 1415772 1c002d42 06f98363 beq x19, x15, 102 x19:00000000 x15:00000001 +76640287ns 1415773 1c002d46 900007b7 lui x15, 0x90000000 x15=90000000 +76640307ns 1415774 1c002d4a 00178793 addi x15, x15, 1 x15=90000001 x15:90000000 +76640328ns 1415775 1c002d4c 00f42c23 sw x15, 24(x8) x15:90000001 x8:1c00b8c0 PA:1c00b8d8 +76640348ns 1415776 1c002d4e 1a102737 lui x14, 0x1a102000 x14=1a102000 +76640368ns 1415777 1c002d52 00148793 addi x15, x9, 1 x15=00000001 x9:00000000 +76640388ns 1415778 1c002d56 08070713 addi x14, x14, 128 x14=1a102080 x14:1a102000 +76640408ns 1415779 1c002d5a 00181813 slli x16, x16, 0x1 x16=00000000 x16:00000000 +76640429ns 1415780 1c002d5c 00779793 slli x15, x15, 0x7 x15=00000080 x15:00000001 +76640449ns 1415781 1c002d5e 00cb2623 sw x12, 12(x22) x12:1c009d28 x22:1c00b890 PA:1c00b89c +76640469ns 1415782 1c002d62 000b2423 sw x0, 8(x22) x22:1c00b890 PA:1c00b898 +76640489ns 1415783 1c002d66 01086813 ori x16, x16, 16 x16=00000010 x16:00000000 +76640509ns 1415784 1c002d6a 00e787b3 add x15, x15, x14 x15=1a102100 x15:00000080 x14:1a102080 +76640530ns 1415785 1c002d6c 0147a023 sw x20, 0(x15) x20:1c00bfc8 x15:1a102100 PA:1a102100 +76640550ns 1415786 1c002d70 00790913 addi x18, x18, 7 x18=00000807 x18:00000800 +76640610ns 1415789 1c002d72 00395913 srli x18, x18, 0x3 x18=00000100 x18:00000807 +76640631ns 1415790 1c002d76 00078793 addi x15, x15, 0 x15=1a102100 x15:1a102100 +76640651ns 1415791 1c002d7a 0127a223 sw x18, 4(x15) x18:00000100 x15:1a102100 PA:1a102104 +76640671ns 1415792 1c002d7e 0107a423 sw x16, 8(x15) x16:00000010 x15:1a102100 PA:1a102108 +76640752ns 1415796 1c002d82 00c40413 addi x8, x8, 12 x8=1c00b8cc x8:1c00b8c0 +76640812ns 1415799 1c002d84 0287a023 sw x8, 32(x15) x8:1c00b8cc x15:1a102100 PA:1a102120 +76640832ns 1415800 1c002d86 01000713 addi x14, x0, 16 x14=00000010 +76640893ns 1415803 1c002d88 02e7a223 sw x14, 36(x15) x14:00000010 x15:1a102100 PA:1a102124 +76640913ns 1415804 1c002d8a 01400713 addi x14, x0, 20 x14=00000014 +76640974ns 1415807 1c002d8c 02e7a423 sw x14, 40(x15) x14:00000014 x15:1a102100 PA:1a102128 +76640994ns 1415808 1c002d8e 05812403 lw x8, 88(x2) x8=00000000 x2:1c009b60 PA:1c009bb8 +76641055ns 1415811 1c002d90 05c12083 lw x1, 92(x2) x1=1c0036d0 x2:1c009b60 PA:1c009bbc +76641075ns 1415812 1c002d92 05412483 lw x9, 84(x2) x9=1c009190 x2:1c009b60 PA:1c009bb4 +76641095ns 1415813 1c002d94 05012903 lw x18, 80(x2) x18=1c009188 x2:1c009b60 PA:1c009bb0 +76641135ns 1415815 1c002d96 04c12983 lw x19, 76(x2) x19=1c009000 x2:1c009b60 PA:1c009bac +76641176ns 1415817 1c002d98 04812a03 lw x20, 72(x2) x20=1c00918c x2:1c009b60 PA:1c009ba8 +76641196ns 1415818 1c002d9a 04012b03 lw x22, 64(x2) x22=a5a5a5a5 x2:1c009b60 PA:1c009ba0 +76641216ns 1415819 1c002d9c 03c12b83 lw x23, 60(x2) x23=a5a5a5a5 x2:1c009b60 PA:1c009b9c +76641236ns 1415820 1c002d9e 01500533 add x10, x0, x21 x10=00000088 x21:00000088 +76641256ns 1415821 1c002da0 04412a83 lw x21, 68(x2) x21=a5a5a5a5 x2:1c009b60 PA:1c009ba4 +76641297ns 1415823 1c002da2 06010113 addi x2, x2, 96 x2=1c009bc0 x2:1c009b60 +76641317ns 1415824 1c002da4 e15ff06f jal x0, -492 +76641357ns 1415826 1c002bb8 30051073 csrrw x0, x10, 0x300 x10:00000088 +76641438ns 1415830 1c002bbc 00008067 jalr x0, x1, 0 x1:1c0036d0 +76641479ns 1415832 1c0036d0 04810513 addi x10, x2, 72 x10=1c009c08 x2:1c009bc0 +76641499ns 1415833 1c0036d2 de5ff0ef jal x1, -540 x1=1c0036d6 +76641539ns 1415835 1c0034b6 ff010113 addi x2, x2, -16 x2=1c009bb0 x2:1c009bc0 +76641559ns 1415836 1c0034b8 00812423 sw x8, 8(x2) x8:00000000 x2:1c009bb0 PA:1c009bb8 +76641580ns 1415837 1c0034ba 00112623 sw x1, 12(x2) x1:1c0036d6 x2:1c009bb0 PA:1c009bbc +76641600ns 1415838 1c0034bc 00a00433 add x8, x0, x10 x8=1c009c08 x10:1c009c08 +76641620ns 1415839 1c0034be 04444783 lbu x15, 68(x8) x15=00000001 x8:1c009c08 PA:1c009c4c +76641660ns 1415841 1c0034c2 01879793 slli x15, x15, 0x18 x15=01000000 x15:00000001 +76641681ns 1415842 1c0034c4 4187d793 srai x15, x15, 0x418 x15=00000001 x15:01000000 +76641701ns 1415843 1c0034c6 00078763 beq x15, x0, 14 x15:00000001 +76641721ns 1415844 1c0034c8 00800533 add x10, x0, x8 x10=1c009c08 x8:1c009c08 +76641741ns 1415845 1c0034ca 00812403 lw x8, 8(x2) x8=00000000 x2:1c009bb0 PA:1c009bb8 +76641761ns 1415846 1c0034cc 00c12083 lw x1, 12(x2) x1=1c0036d6 x2:1c009bb0 PA:1c009bbc +76641781ns 1415847 1c0034ce 01010113 addi x2, x2, 16 x2=1c009bc0 x2:1c009bb0 +76641802ns 1415848 1c0034d0 fb3ff06f jal x0, -78 +76641862ns 1415851 1c003482 04750783 lb x15, 71(x10) x15=00000001 x10:1c009c08 PA:1c009c4f +76641903ns 1415853 1c003486 02078763 beq x15, x0, 46 x15:00000001 +76641923ns 1415854 1c003488 ff010113 addi x2, x2, -16 x2=1c009bb0 x2:1c009bc0 +76641943ns 1415855 1c00348a 00812423 sw x8, 8(x2) x8:00000000 x2:1c009bb0 PA:1c009bb8 +76641963ns 1415856 1c00348c 00112623 sw x1, 12(x2) x1:1c0036d6 x2:1c009bb0 PA:1c009bbc +76641983ns 1415857 1c00348e 00a00433 add x8, x0, x10 x8=1c009c08 x10:1c009c08 +76642004ns 1415858 1c003490 040503a3 sb x0, 71(x10) x10:1c009c08 PA:1c009c4f +76642024ns 1415859 1c003494 03452783 lw x15, 52(x10) x15=1c00c1d8 x10:1c009c08 PA:1c009c3c +76642064ns 1415861 1c003496 00078b63 beq x15, x0, 22 x15:1c00c1d8 +76642084ns 1415862 1c003498 03452503 lw x10, 52(x10) x10=1c00c1d8 x10:1c009c08 PA:1c009c3c +76642125ns 1415864 1c00349a 00050763 beq x10, x0, 14 x10:1c00c1d8 +76642145ns 1415865 1c00349c c1cfe0ef jal x1, -7140 x1=1c0034a0 +76642185ns 1415867 1c0018b8 ff010113 addi x2, x2, -16 x2=1c009ba0 x2:1c009bb0 +76642206ns 1415868 1c0018ba 00112623 sw x1, 12(x2) x1:1c0034a0 x2:1c009ba0 PA:1c009bac +76642226ns 1415869 1c0018bc 00812423 sw x8, 8(x2) x8:1c009c08 x2:1c009ba0 PA:1c009ba8 +76642246ns 1415870 1c0018be 02051163 bne x10, x0, 34 x10:1c00c1d8 +76642306ns 1415873 1c0018e0 00a00433 add x8, x0, x10 x8=1c00c1d8 x10:1c00c1d8 +76642327ns 1415874 1c0018e2 fa9ff0ef jal x1, -88 x1=1c0018e4 +76642387ns 1415877 1c00188a 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76642407ns 1415878 1c00188e c4878693 addi x13, x15, -952 x13=1c008c48 x15:1c009000 +76642428ns 1415879 1c001892 00000713 addi x14, x0, 0 x14=00000000 +76642448ns 1415880 1c001894 c4878793 addi x15, x15, -952 x15=1c008c48 x15:1c009000 +76642468ns 1415881 1c001898 00800613 addi x12, x0, 8 x12=00000008 +76642488ns 1415882 1c00189a 0046a583 lw x11, 4(x13) x11=1c00ad20 x13:1c008c48 PA:1c008c4c +76642529ns 1415884 1c00189c 00a59963 bne x11, x10, 18 x11:1c00ad20 x10:1c00c1d8 +76642589ns 1415887 1c0018ae 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76642609ns 1415888 1c0018b0 00868693 addi x13, x13, 8 x13=1c008c50 x13:1c008c48 +76642630ns 1415889 1c0018b2 fec714e3 bne x14, x12, -24 x14:00000001 x12:00000008 +76642690ns 1415892 1c00189a 0046a583 lw x11, 4(x13) x11=00000000 x13:1c008c50 PA:1c008c54 +76642731ns 1415894 1c00189c 00a59963 bne x11, x10, 18 x11:00000000 x10:1c00c1d8 +76642791ns 1415897 1c0018ae 00170713 addi x14, x14, 1 x14=00000002 x14:00000001 +76642811ns 1415898 1c0018b0 00868693 addi x13, x13, 8 x13=1c008c58 x13:1c008c50 +76642831ns 1415899 1c0018b2 fec714e3 bne x14, x12, -24 x14:00000002 x12:00000008 +76642892ns 1415902 1c00189a 0046a583 lw x11, 4(x13) x11=00000000 x13:1c008c58 PA:1c008c5c +76642932ns 1415904 1c00189c 00a59963 bne x11, x10, 18 x11:00000000 x10:1c00c1d8 +76642993ns 1415907 1c0018ae 00170713 addi x14, x14, 1 x14=00000003 x14:00000002 +76643013ns 1415908 1c0018b0 00868693 addi x13, x13, 8 x13=1c008c60 x13:1c008c58 +76643033ns 1415909 1c0018b2 fec714e3 bne x14, x12, -24 x14:00000003 x12:00000008 +76643094ns 1415912 1c00189a 0046a583 lw x11, 4(x13) x11=00000000 x13:1c008c60 PA:1c008c64 +76643134ns 1415914 1c00189c 00a59963 bne x11, x10, 18 x11:00000000 x10:1c00c1d8 +76643195ns 1415917 1c0018ae 00170713 addi x14, x14, 1 x14=00000004 x14:00000003 +76643215ns 1415918 1c0018b0 00868693 addi x13, x13, 8 x13=1c008c68 x13:1c008c60 +76643235ns 1415919 1c0018b2 fec714e3 bne x14, x12, -24 x14:00000004 x12:00000008 +76643296ns 1415922 1c00189a 0046a583 lw x11, 4(x13) x11=00000000 x13:1c008c68 PA:1c008c6c +76643336ns 1415924 1c00189c 00a59963 bne x11, x10, 18 x11:00000000 x10:1c00c1d8 +76643397ns 1415927 1c0018ae 00170713 addi x14, x14, 1 x14=00000005 x14:00000004 +76643417ns 1415928 1c0018b0 00868693 addi x13, x13, 8 x13=1c008c70 x13:1c008c68 +76643437ns 1415929 1c0018b2 fec714e3 bne x14, x12, -24 x14:00000005 x12:00000008 +76643498ns 1415932 1c00189a 0046a583 lw x11, 4(x13) x11=00000000 x13:1c008c70 PA:1c008c74 +76643538ns 1415934 1c00189c 00a59963 bne x11, x10, 18 x11:00000000 x10:1c00c1d8 +76643599ns 1415937 1c0018ae 00170713 addi x14, x14, 1 x14=00000006 x14:00000005 +76643619ns 1415938 1c0018b0 00868693 addi x13, x13, 8 x13=1c008c78 x13:1c008c70 +76643639ns 1415939 1c0018b2 fec714e3 bne x14, x12, -24 x14:00000006 x12:00000008 +76643700ns 1415942 1c00189a 0046a583 lw x11, 4(x13) x11=00000000 x13:1c008c78 PA:1c008c7c +76643740ns 1415944 1c00189c 00a59963 bne x11, x10, 18 x11:00000000 x10:1c00c1d8 +76643801ns 1415947 1c0018ae 00170713 addi x14, x14, 1 x14=00000007 x14:00000006 +76643821ns 1415948 1c0018b0 00868693 addi x13, x13, 8 x13=1c008c80 x13:1c008c78 +76643841ns 1415949 1c0018b2 fec714e3 bne x14, x12, -24 x14:00000007 x12:00000008 +76643902ns 1415952 1c00189a 0046a583 lw x11, 4(x13) x11=00000000 x13:1c008c80 PA:1c008c84 +76643942ns 1415954 1c00189c 00a59963 bne x11, x10, 18 x11:00000000 x10:1c00c1d8 +76644003ns 1415957 1c0018ae 00170713 addi x14, x14, 1 x14=00000008 x14:00000007 +76644023ns 1415958 1c0018b0 00868693 addi x13, x13, 8 x13=1c008c88 x13:1c008c80 +76644043ns 1415959 1c0018b2 fec714e3 bne x14, x12, -24 x14:00000008 x12:00000008 +76644063ns 1415960 1c0018b6 00008067 jalr x0, x1, 0 x1:1c0018e4 +76644104ns 1415962 1c0018e4 00800533 add x10, x0, x8 x10=1c00c1d8 x8:1c00c1d8 +76644124ns 1415963 1c0018e6 00812403 lw x8, 8(x2) x8=1c009c08 x2:1c009ba0 PA:1c009ba8 +76644144ns 1415964 1c0018e8 00c12083 lw x1, 12(x2) x1=1c0034a0 x2:1c009ba0 PA:1c009bac +76644164ns 1415965 1c0018ea 01010113 addi x2, x2, 16 x2=1c009bb0 x2:1c009ba0 +76644184ns 1415966 1c0018ec 0a60106f jal x0, 4262 +76644225ns 1415968 1c002992 fe010113 addi x2, x2, -32 x2=1c009b90 x2:1c009bb0 +76644245ns 1415969 1c002994 00112e23 sw x1, 28(x2) x1:1c0034a0 x2:1c009b90 PA:1c009bac +76644265ns 1415970 1c002996 00a12623 sw x10, 12(x2) x10:1c00c1d8 x2:1c009b90 PA:1c009b9c +76644285ns 1415971 1c002998 00050a63 beq x10, x0, 20 x10:1c00c1d8 +76644305ns 1415972 1c00299a 87cff0ef jal x1, -3972 x1=1c00299e +76644366ns 1415975 1c001a16 d6818793 addi x15, x3, -664 x15=1c009144 x3:1c0093dc +76644386ns 1415976 1c001a1a 0007a703 lw x14, 0(x15) x14=00000000 x15:1c009144 PA:1c009144 +76644427ns 1415978 1c001a1c 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76644447ns 1415979 1c001a1e 00e7a023 sw x14, 0(x15) x14:00000001 x15:1c009144 PA:1c009144 +76644467ns 1415980 1c001a20 00008067 jalr x0, x1, 0 x1:1c00299e +76644507ns 1415982 1c00299e 00c12503 lw x10, 12(x2) x10=1c00c1d8 x2:1c009b90 PA:1c009b9c +76644528ns 1415983 1c0029a0 775000ef jal x1, 3956 x1=1c0029a4 +76644568ns 1415985 1c003914 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76644588ns 1415986 1c003918 00a005b3 add x11, x0, x10 x11=1c00c1d8 x10:1c00c1d8 +76644608ns 1415987 1c00391a c447a503 lw x10, -956(x15) x10=1c009e10 x15:1c009000 PA:1c008c44 +76644629ns 1415988 1c00391e 0020006f jal x0, 2 +76644669ns 1415990 1c003920 0a058363 beq x11, x0, 166 x11:1c00c1d8 +76644689ns 1415991 1c003922 ffc5a783 lw x15, -4(x11) x15=00000058 x11:1c00c1d8 PA:1c00c1d4 +76644709ns 1415992 1c003926 fe010113 addi x2, x2, -32 x2=1c009b70 x2:1c009b90 +76644730ns 1415993 1c003928 00812c23 sw x8, 24(x2) x8:1c009c08 x2:1c009b70 PA:1c009b88 +76644750ns 1415994 1c00392a 00112e23 sw x1, 28(x2) x1:1c0029a4 x2:1c009b70 PA:1c009b8c +76644770ns 1415995 1c00392c ffc58413 addi x8, x11, -4 x8=1c00c1d4 x11:1c00c1d8 +76644790ns 1415996 1c003930 0007d363 bge x15, x0, 6 x15:00000058 +76644851ns 1415999 1c003936 00a12623 sw x10, 12(x2) x10:1c009e10 x2:1c009b70 PA:1c009b7c +76644871ns 1416000 1c003938 92eff0ef jal x1, -3794 x1=1c00393c +76644931ns 1416003 1c002a66 fb1fe06f jal x0, -4176 +76644992ns 1416006 1c001a16 d6818793 addi x15, x3, -664 x15=1c009144 x3:1c0093dc +76645012ns 1416007 1c001a1a 0007a703 lw x14, 0(x15) x14=00000001 x15:1c009144 PA:1c009144 +76645053ns 1416009 1c001a1c 00170713 addi x14, x14, 1 x14=00000002 x14:00000001 +76645073ns 1416010 1c001a1e 00e7a023 sw x14, 0(x15) x14:00000002 x15:1c009144 PA:1c009144 +76645093ns 1416011 1c001a20 00008067 jalr x0, x1, 0 x1:1c00393c +76645133ns 1416013 1c00393c db81a783 lw x15, -584(x3) x15=00000000 x3:1c0093dc PA:1c009194 +76645154ns 1416014 1c003940 00c12503 lw x10, 12(x2) x10=1c009e10 x2:1c009b70 PA:1c009b7c +76645174ns 1416015 1c003942 00e00633 add x12, x0, x14 x12=00000002 x14:00000002 +76645194ns 1416016 1c003944 00079a63 bne x15, x0, 20 x15:00000000 +76645214ns 1416017 1c003946 00042223 sw x0, 4(x8) x8:1c00c1d4 PA:1c00c1d8 +76645234ns 1416018 1c00394a da81ac23 sw x8, -584(x3) x8:1c00c1d4 x3:1c0093dc PA:1c009194 +76645255ns 1416019 1c00394e 01812403 lw x8, 24(x2) x8=1c009c08 x2:1c009b70 PA:1c009b88 +76645275ns 1416020 1c003950 01c12083 lw x1, 28(x2) x1=1c0029a4 x2:1c009b70 PA:1c009b8c +76645295ns 1416021 1c003952 02010113 addi x2, x2, 32 x2=1c009b90 x2:1c009b70 +76645315ns 1416022 1c003954 916ff06f jal x0, -3818 +76645376ns 1416025 1c002a6a 8e3ff06f jal x0, -1822 +76645416ns 1416027 1c00234c fc010113 addi x2, x2, -64 x2=1c009b50 x2:1c009b90 +76645436ns 1416028 1c00234e 02812c23 sw x8, 56(x2) x8:1c009c08 x2:1c009b50 PA:1c009b88 +76645456ns 1416029 1c002350 d6818413 addi x8, x3, -664 x8=1c009144 x3:1c0093dc +76645477ns 1416030 1c002354 00042783 lw x15, 0(x8) x15=00000002 x8:1c009144 PA:1c009144 +76645497ns 1416031 1c002356 02112e23 sw x1, 60(x2) x1:1c0029a4 x2:1c009b50 PA:1c009b8c +76645517ns 1416032 1c002358 02912a23 sw x9, 52(x2) x9:1c009190 x2:1c009b50 PA:1c009b84 +76645537ns 1416033 1c00235a 03212823 sw x18, 48(x2) x18:1c009188 x2:1c009b50 PA:1c009b80 +76645557ns 1416034 1c00235c 03312623 sw x19, 44(x2) x19:1c009000 x2:1c009b50 PA:1c009b7c +76645578ns 1416035 1c00235e 03412423 sw x20, 40(x2) x20:1c00918c x2:1c009b50 PA:1c009b78 +76645598ns 1416036 1c002360 03512223 sw x21, 36(x2) x21:a5a5a5a5 x2:1c009b50 PA:1c009b74 +76645618ns 1416037 1c002362 03612023 sw x22, 32(x2) x22:a5a5a5a5 x2:1c009b50 PA:1c009b70 +76645638ns 1416038 1c002364 01712e23 sw x23, 28(x2) x23:a5a5a5a5 x2:1c009b50 PA:1c009b6c +76645658ns 1416039 1c002366 02079263 bne x15, x0, 36 x15:00000002 +76645739ns 1416043 1c00238a c83ff0ef jal x1, -894 x1=1c00238e +76645779ns 1416045 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +76645860ns 1416049 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76645901ns 1416051 1c002014 00078863 beq x15, x0, 16 x15:00000001 +76645921ns 1416052 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76645941ns 1416053 1c00201a 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76645961ns 1416054 1c00201c 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76645981ns 1416055 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c009db8 PA:1c009dfc +76646022ns 1416057 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76646042ns 1416058 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c009db8 PA:1c009dfc +76646062ns 1416059 1c002024 00008067 jalr x0, x1, 0 x1:1c00238e +76646103ns 1416061 1c00238e 00042783 lw x15, 0(x8) x15=00000002 x8:1c009144 PA:1c009144 +76646143ns 1416063 1c002390 fff78793 addi x15, x15, -1 x15=00000001 x15:00000002 +76646163ns 1416064 1c002392 00f42023 sw x15, 0(x8) x15:00000001 x8:1c009144 PA:1c009144 +76646183ns 1416065 1c002394 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +76646224ns 1416067 1c002396 02078163 beq x15, x0, 34 x15:00000001 +76646244ns 1416068 1c002398 00000513 addi x10, x0, 0 x10=00000000 +76646264ns 1416069 1c00239a 00a12623 sw x10, 12(x2) x10:00000000 x2:1c009b50 PA:1c009b5c +76646284ns 1416070 1c00239c c8bff0ef jal x1, -886 x1=1c0023a0 +76646345ns 1416073 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76646385ns 1416075 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +76646405ns 1416076 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76646426ns 1416077 1c002030 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +76646466ns 1416079 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c009db8 PA:1c009dfc +76646506ns 1416081 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +76646527ns 1416082 1c002036 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76646547ns 1416083 1c002038 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76646567ns 1416084 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c009db8 PA:1c009dfc +76646607ns 1416086 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +76646628ns 1416087 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c009db8 PA:1c009dfc +76646648ns 1416088 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c009db8 PA:1c009dfc +76646688ns 1416090 1c002042 00079363 bne x15, x0, 6 x15:00000000 +76646708ns 1416091 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +76646789ns 1416095 1c002048 00008067 jalr x0, x1, 0 x1:1c0023a0 +76646829ns 1416097 1c0023a0 03c12083 lw x1, 60(x2) x1=1c0029a4 x2:1c009b50 PA:1c009b8c +76646850ns 1416098 1c0023a2 03812403 lw x8, 56(x2) x8=1c009c08 x2:1c009b50 PA:1c009b88 +76646870ns 1416099 1c0023a4 00c12503 lw x10, 12(x2) x10=00000000 x2:1c009b50 PA:1c009b5c +76646890ns 1416100 1c0023a6 03412483 lw x9, 52(x2) x9=1c009190 x2:1c009b50 PA:1c009b84 +76646910ns 1416101 1c0023a8 03012903 lw x18, 48(x2) x18=1c009188 x2:1c009b50 PA:1c009b80 +76646930ns 1416102 1c0023aa 02c12983 lw x19, 44(x2) x19=1c009000 x2:1c009b50 PA:1c009b7c +76646951ns 1416103 1c0023ac 02812a03 lw x20, 40(x2) x20=1c00918c x2:1c009b50 PA:1c009b78 +76646971ns 1416104 1c0023ae 02412a83 lw x21, 36(x2) x21=a5a5a5a5 x2:1c009b50 PA:1c009b74 +76647011ns 1416106 1c0023b0 02012b03 lw x22, 32(x2) x22=a5a5a5a5 x2:1c009b50 PA:1c009b70 +76647031ns 1416107 1c0023b2 01c12b83 lw x23, 28(x2) x23=a5a5a5a5 x2:1c009b50 PA:1c009b6c +76647052ns 1416108 1c0023b4 04010113 addi x2, x2, 64 x2=1c009b90 x2:1c009b50 +76647072ns 1416109 1c0023b6 00008067 jalr x0, x1, 0 x1:1c0029a4 +76647112ns 1416111 1c0029a4 01c12083 lw x1, 28(x2) x1=1c0034a0 x2:1c009b90 PA:1c009bac +76647132ns 1416112 1c0029a6 02010113 addi x2, x2, 32 x2=1c009bb0 x2:1c009b90 +76647153ns 1416113 1c0029a8 9a5ff06f jal x0, -1628 +76647193ns 1416115 1c00234c fc010113 addi x2, x2, -64 x2=1c009b70 x2:1c009bb0 +76647213ns 1416116 1c00234e 02812c23 sw x8, 56(x2) x8:1c009c08 x2:1c009b70 PA:1c009ba8 +76647233ns 1416117 1c002350 d6818413 addi x8, x3, -664 x8=1c009144 x3:1c0093dc +76647254ns 1416118 1c002354 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +76647274ns 1416119 1c002356 02112e23 sw x1, 60(x2) x1:1c0034a0 x2:1c009b70 PA:1c009bac +76647294ns 1416120 1c002358 02912a23 sw x9, 52(x2) x9:1c009190 x2:1c009b70 PA:1c009ba4 +76647314ns 1416121 1c00235a 03212823 sw x18, 48(x2) x18:1c009188 x2:1c009b70 PA:1c009ba0 +76647334ns 1416122 1c00235c 03312623 sw x19, 44(x2) x19:1c009000 x2:1c009b70 PA:1c009b9c +76647354ns 1416123 1c00235e 03412423 sw x20, 40(x2) x20:1c00918c x2:1c009b70 PA:1c009b98 +76647375ns 1416124 1c002360 03512223 sw x21, 36(x2) x21:a5a5a5a5 x2:1c009b70 PA:1c009b94 +76647395ns 1416125 1c002362 03612023 sw x22, 32(x2) x22:a5a5a5a5 x2:1c009b70 PA:1c009b90 +76647415ns 1416126 1c002364 01712e23 sw x23, 28(x2) x23:a5a5a5a5 x2:1c009b70 PA:1c009b8c +76647435ns 1416127 1c002366 02079263 bne x15, x0, 36 x15:00000001 +76647516ns 1416131 1c00238a c83ff0ef jal x1, -894 x1=1c00238e +76647556ns 1416133 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +76647637ns 1416137 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76647678ns 1416139 1c002014 00078863 beq x15, x0, 16 x15:00000001 +76647698ns 1416140 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76647718ns 1416141 1c00201a 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76647738ns 1416142 1c00201c 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76647758ns 1416143 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c009db8 PA:1c009dfc +76647799ns 1416145 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76647819ns 1416146 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c009db8 PA:1c009dfc +76647839ns 1416147 1c002024 00008067 jalr x0, x1, 0 x1:1c00238e +76647879ns 1416149 1c00238e 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +76647920ns 1416151 1c002390 fff78793 addi x15, x15, -1 x15=00000000 x15:00000001 +76647940ns 1416152 1c002392 00f42023 sw x15, 0(x8) x15:00000000 x8:1c009144 PA:1c009144 +76647960ns 1416153 1c002394 00042783 lw x15, 0(x8) x15=00000000 x8:1c009144 PA:1c009144 +76648001ns 1416155 1c002396 02078163 beq x15, x0, 34 x15:00000000 +76648061ns 1416158 1c0023b8 d601a783 lw x15, -672(x3) x15=00000003 x3:1c0093dc PA:1c00913c +76648102ns 1416160 1c0023bc fc078ee3 beq x15, x0, -36 x15:00000003 +76648122ns 1416161 1c0023be 1c009937 lui x18, 0x1c009000 x18=1c009000 +76648142ns 1416162 1c0023c2 00000413 addi x8, x0, 0 x8=00000000 +76648162ns 1416163 1c0023c4 93818493 addi x9, x3, -1736 x9=1c008d14 x3:1c0093dc +76648182ns 1416164 1c0023c8 00100993 addi x19, x0, 1 x19=00000001 +76648203ns 1416165 1c0023ca c8890913 addi x18, x18, -888 x18=1c008c88 x18:1c009000 +76648223ns 1416166 1c0023ce 01400a93 addi x21, x0, 20 x21=00000014 +76648243ns 1416167 1c0023d0 04c0006f jal x0, 76 +76648283ns 1416169 1c00241c 0004a783 lw x15, 0(x9) x15=00000000 x9:1c008d14 PA:1c008d14 +76648324ns 1416171 1c00241e fa079ae3 bne x15, x0, -76 x15:00000000 +76648344ns 1416172 1c002420 00040363 beq x8, x0, 6 x8:00000000 +76648425ns 1416176 1c002426 d8018713 addi x14, x3, -640 x14=1c00915c x3:1c0093dc +76648445ns 1416177 1c00242a 00072483 lw x9, 0(x14) x9=00000000 x14:1c00915c PA:1c00915c +76648465ns 1416178 1c00242c d8018413 addi x8, x3, -640 x8=1c00915c x3:1c0093dc +76648485ns 1416179 1c002430 00048d63 beq x9, x0, 26 x9:00000000 +76648566ns 1416183 1c00244a d8c1a783 lw x15, -628(x3) x15=00000000 x3:1c0093dc PA:1c009168 +76648606ns 1416185 1c00244e f40785e3 beq x15, x0, -182 x15:00000000 +76648667ns 1416188 1c002398 00000513 addi x10, x0, 0 x10=00000000 +76648687ns 1416189 1c00239a 00a12623 sw x10, 12(x2) x10:00000000 x2:1c009b70 PA:1c009b7c +76648707ns 1416190 1c00239c c8bff0ef jal x1, -886 x1=1c0023a0 +76648768ns 1416193 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76648808ns 1416195 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +76648828ns 1416196 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76648849ns 1416197 1c002030 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +76648889ns 1416199 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c009db8 PA:1c009dfc +76648929ns 1416201 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +76648950ns 1416202 1c002036 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76648970ns 1416203 1c002038 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76648990ns 1416204 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c009db8 PA:1c009dfc +76649030ns 1416206 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +76649051ns 1416207 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c009db8 PA:1c009dfc +76649071ns 1416208 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c009db8 PA:1c009dfc +76649111ns 1416210 1c002042 00079363 bne x15, x0, 6 x15:00000000 +76649131ns 1416211 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +76649212ns 1416215 1c002048 00008067 jalr x0, x1, 0 x1:1c0023a0 +76649253ns 1416217 1c0023a0 03c12083 lw x1, 60(x2) x1=1c0034a0 x2:1c009b70 PA:1c009bac +76649273ns 1416218 1c0023a2 03812403 lw x8, 56(x2) x8=1c009c08 x2:1c009b70 PA:1c009ba8 +76649293ns 1416219 1c0023a4 00c12503 lw x10, 12(x2) x10=00000000 x2:1c009b70 PA:1c009b7c +76649313ns 1416220 1c0023a6 03412483 lw x9, 52(x2) x9=1c009190 x2:1c009b70 PA:1c009ba4 +76649333ns 1416221 1c0023a8 03012903 lw x18, 48(x2) x18=1c009188 x2:1c009b70 PA:1c009ba0 +76649353ns 1416222 1c0023aa 02c12983 lw x19, 44(x2) x19=1c009000 x2:1c009b70 PA:1c009b9c +76649374ns 1416223 1c0023ac 02812a03 lw x20, 40(x2) x20=1c00918c x2:1c009b70 PA:1c009b98 +76649394ns 1416224 1c0023ae 02412a83 lw x21, 36(x2) x21=a5a5a5a5 x2:1c009b70 PA:1c009b94 +76649414ns 1416225 1c0023b0 02012b03 lw x22, 32(x2) x22=a5a5a5a5 x2:1c009b70 PA:1c009b90 +76649434ns 1416226 1c0023b2 01c12b83 lw x23, 28(x2) x23=a5a5a5a5 x2:1c009b70 PA:1c009b8c +76649454ns 1416227 1c0023b4 04010113 addi x2, x2, 64 x2=1c009bb0 x2:1c009b70 +76649475ns 1416228 1c0023b6 00008067 jalr x0, x1, 0 x1:1c0034a0 +76649515ns 1416230 1c0034a0 02042c23 sw x0, 56(x8) x8:1c009c08 PA:1c009c40 +76649535ns 1416231 1c0034a4 02042e23 sw x0, 60(x8) x8:1c009c08 PA:1c009c44 +76649555ns 1416232 1c0034a8 02042a23 sw x0, 52(x8) x8:1c009c08 PA:1c009c3c +76649576ns 1416233 1c0034ac 00c12083 lw x1, 12(x2) x1=1c0036d6 x2:1c009bb0 PA:1c009bbc +76649596ns 1416234 1c0034ae 00812403 lw x8, 8(x2) x8=00000000 x2:1c009bb0 PA:1c009bb8 +76649616ns 1416235 1c0034b0 01010113 addi x2, x2, 16 x2=1c009bc0 x2:1c009bb0 +76649636ns 1416236 1c0034b2 00008067 jalr x0, x1, 0 x1:1c0036d6 +76649677ns 1416238 1c0036d6 09010513 addi x10, x2, 144 x10=1c009c50 x2:1c009bc0 +76649697ns 1416239 1c0036d8 ddfff0ef jal x1, -546 x1=1c0036dc +76649737ns 1416241 1c0034b6 ff010113 addi x2, x2, -16 x2=1c009bb0 x2:1c009bc0 +76649757ns 1416242 1c0034b8 00812423 sw x8, 8(x2) x8:00000000 x2:1c009bb0 PA:1c009bb8 +76649778ns 1416243 1c0034ba 00112623 sw x1, 12(x2) x1:1c0036dc x2:1c009bb0 PA:1c009bbc +76649798ns 1416244 1c0034bc 00a00433 add x8, x0, x10 x8=1c009c50 x10:1c009c50 +76649818ns 1416245 1c0034be 04444783 lbu x15, 68(x8) x15=00000001 x8:1c009c50 PA:1c009c94 +76649858ns 1416247 1c0034c2 01879793 slli x15, x15, 0x18 x15=01000000 x15:00000001 +76649878ns 1416248 1c0034c4 4187d793 srai x15, x15, 0x418 x15=00000001 x15:01000000 +76649899ns 1416249 1c0034c6 00078763 beq x15, x0, 14 x15:00000001 +76649919ns 1416250 1c0034c8 00800533 add x10, x0, x8 x10=1c009c50 x8:1c009c50 +76649939ns 1416251 1c0034ca 00812403 lw x8, 8(x2) x8=00000000 x2:1c009bb0 PA:1c009bb8 +76649959ns 1416252 1c0034cc 00c12083 lw x1, 12(x2) x1=1c0036dc x2:1c009bb0 PA:1c009bbc +76649979ns 1416253 1c0034ce 01010113 addi x2, x2, 16 x2=1c009bc0 x2:1c009bb0 +76650000ns 1416254 1c0034d0 fb3ff06f jal x0, -78 +76650060ns 1416257 1c003482 04750783 lb x15, 71(x10) x15=00000001 x10:1c009c50 PA:1c009c97 +76650101ns 1416259 1c003486 02078763 beq x15, x0, 46 x15:00000001 +76650121ns 1416260 1c003488 ff010113 addi x2, x2, -16 x2=1c009bb0 x2:1c009bc0 +76650141ns 1416261 1c00348a 00812423 sw x8, 8(x2) x8:00000000 x2:1c009bb0 PA:1c009bb8 +76650161ns 1416262 1c00348c 00112623 sw x1, 12(x2) x1:1c0036dc x2:1c009bb0 PA:1c009bbc +76650181ns 1416263 1c00348e 00a00433 add x8, x0, x10 x8=1c009c50 x10:1c009c50 +76650202ns 1416264 1c003490 040503a3 sb x0, 71(x10) x10:1c009c50 PA:1c009c97 +76650222ns 1416265 1c003494 03452783 lw x15, 52(x10) x15=1c00c230 x10:1c009c50 PA:1c009c84 +76650262ns 1416267 1c003496 00078b63 beq x15, x0, 22 x15:1c00c230 +76650282ns 1416268 1c003498 03452503 lw x10, 52(x10) x10=1c00c230 x10:1c009c50 PA:1c009c84 +76650323ns 1416270 1c00349a 00050763 beq x10, x0, 14 x10:1c00c230 +76650343ns 1416271 1c00349c c1cfe0ef jal x1, -7140 x1=1c0034a0 +76650383ns 1416273 1c0018b8 ff010113 addi x2, x2, -16 x2=1c009ba0 x2:1c009bb0 +76650403ns 1416274 1c0018ba 00112623 sw x1, 12(x2) x1:1c0034a0 x2:1c009ba0 PA:1c009bac +76650424ns 1416275 1c0018bc 00812423 sw x8, 8(x2) x8:1c009c50 x2:1c009ba0 PA:1c009ba8 +76650444ns 1416276 1c0018be 02051163 bne x10, x0, 34 x10:1c00c230 +76650504ns 1416279 1c0018e0 00a00433 add x8, x0, x10 x8=1c00c230 x10:1c00c230 +76650525ns 1416280 1c0018e2 fa9ff0ef jal x1, -88 x1=1c0018e4 +76650585ns 1416283 1c00188a 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76650605ns 1416284 1c00188e c4878693 addi x13, x15, -952 x13=1c008c48 x15:1c009000 +76650626ns 1416285 1c001892 00000713 addi x14, x0, 0 x14=00000000 +76650646ns 1416286 1c001894 c4878793 addi x15, x15, -952 x15=1c008c48 x15:1c009000 +76650666ns 1416287 1c001898 00800613 addi x12, x0, 8 x12=00000008 +76650686ns 1416288 1c00189a 0046a583 lw x11, 4(x13) x11=1c00ad20 x13:1c008c48 PA:1c008c4c +76650727ns 1416290 1c00189c 00a59963 bne x11, x10, 18 x11:1c00ad20 x10:1c00c230 +76650787ns 1416293 1c0018ae 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76650807ns 1416294 1c0018b0 00868693 addi x13, x13, 8 x13=1c008c50 x13:1c008c48 +76650827ns 1416295 1c0018b2 fec714e3 bne x14, x12, -24 x14:00000001 x12:00000008 +76650888ns 1416298 1c00189a 0046a583 lw x11, 4(x13) x11=00000000 x13:1c008c50 PA:1c008c54 +76650928ns 1416300 1c00189c 00a59963 bne x11, x10, 18 x11:00000000 x10:1c00c230 +76650989ns 1416303 1c0018ae 00170713 addi x14, x14, 1 x14=00000002 x14:00000001 +76651009ns 1416304 1c0018b0 00868693 addi x13, x13, 8 x13=1c008c58 x13:1c008c50 +76651029ns 1416305 1c0018b2 fec714e3 bne x14, x12, -24 x14:00000002 x12:00000008 +76651090ns 1416308 1c00189a 0046a583 lw x11, 4(x13) x11=00000000 x13:1c008c58 PA:1c008c5c +76651130ns 1416310 1c00189c 00a59963 bne x11, x10, 18 x11:00000000 x10:1c00c230 +76651191ns 1416313 1c0018ae 00170713 addi x14, x14, 1 x14=00000003 x14:00000002 +76651211ns 1416314 1c0018b0 00868693 addi x13, x13, 8 x13=1c008c60 x13:1c008c58 +76651231ns 1416315 1c0018b2 fec714e3 bne x14, x12, -24 x14:00000003 x12:00000008 +76651292ns 1416318 1c00189a 0046a583 lw x11, 4(x13) x11=00000000 x13:1c008c60 PA:1c008c64 +76651332ns 1416320 1c00189c 00a59963 bne x11, x10, 18 x11:00000000 x10:1c00c230 +76651393ns 1416323 1c0018ae 00170713 addi x14, x14, 1 x14=00000004 x14:00000003 +76651413ns 1416324 1c0018b0 00868693 addi x13, x13, 8 x13=1c008c68 x13:1c008c60 +76651433ns 1416325 1c0018b2 fec714e3 bne x14, x12, -24 x14:00000004 x12:00000008 +76651494ns 1416328 1c00189a 0046a583 lw x11, 4(x13) x11=00000000 x13:1c008c68 PA:1c008c6c +76651534ns 1416330 1c00189c 00a59963 bne x11, x10, 18 x11:00000000 x10:1c00c230 +76651595ns 1416333 1c0018ae 00170713 addi x14, x14, 1 x14=00000005 x14:00000004 +76651615ns 1416334 1c0018b0 00868693 addi x13, x13, 8 x13=1c008c70 x13:1c008c68 +76651635ns 1416335 1c0018b2 fec714e3 bne x14, x12, -24 x14:00000005 x12:00000008 +76651696ns 1416338 1c00189a 0046a583 lw x11, 4(x13) x11=00000000 x13:1c008c70 PA:1c008c74 +76651736ns 1416340 1c00189c 00a59963 bne x11, x10, 18 x11:00000000 x10:1c00c230 +76651797ns 1416343 1c0018ae 00170713 addi x14, x14, 1 x14=00000006 x14:00000005 +76651817ns 1416344 1c0018b0 00868693 addi x13, x13, 8 x13=1c008c78 x13:1c008c70 +76651837ns 1416345 1c0018b2 fec714e3 bne x14, x12, -24 x14:00000006 x12:00000008 +76651898ns 1416348 1c00189a 0046a583 lw x11, 4(x13) x11=00000000 x13:1c008c78 PA:1c008c7c +76651938ns 1416350 1c00189c 00a59963 bne x11, x10, 18 x11:00000000 x10:1c00c230 +76651999ns 1416353 1c0018ae 00170713 addi x14, x14, 1 x14=00000007 x14:00000006 +76652019ns 1416354 1c0018b0 00868693 addi x13, x13, 8 x13=1c008c80 x13:1c008c78 +76652039ns 1416355 1c0018b2 fec714e3 bne x14, x12, -24 x14:00000007 x12:00000008 +76652100ns 1416358 1c00189a 0046a583 lw x11, 4(x13) x11=00000000 x13:1c008c80 PA:1c008c84 +76652140ns 1416360 1c00189c 00a59963 bne x11, x10, 18 x11:00000000 x10:1c00c230 +76652201ns 1416363 1c0018ae 00170713 addi x14, x14, 1 x14=00000008 x14:00000007 +76652221ns 1416364 1c0018b0 00868693 addi x13, x13, 8 x13=1c008c88 x13:1c008c80 +76652241ns 1416365 1c0018b2 fec714e3 bne x14, x12, -24 x14:00000008 x12:00000008 +76652261ns 1416366 1c0018b6 00008067 jalr x0, x1, 0 x1:1c0018e4 +76652302ns 1416368 1c0018e4 00800533 add x10, x0, x8 x10=1c00c230 x8:1c00c230 +76652322ns 1416369 1c0018e6 00812403 lw x8, 8(x2) x8=1c009c50 x2:1c009ba0 PA:1c009ba8 +76652342ns 1416370 1c0018e8 00c12083 lw x1, 12(x2) x1=1c0034a0 x2:1c009ba0 PA:1c009bac +76652362ns 1416371 1c0018ea 01010113 addi x2, x2, 16 x2=1c009bb0 x2:1c009ba0 +76652382ns 1416372 1c0018ec 0a60106f jal x0, 4262 +76652423ns 1416374 1c002992 fe010113 addi x2, x2, -32 x2=1c009b90 x2:1c009bb0 +76652443ns 1416375 1c002994 00112e23 sw x1, 28(x2) x1:1c0034a0 x2:1c009b90 PA:1c009bac +76652463ns 1416376 1c002996 00a12623 sw x10, 12(x2) x10:1c00c230 x2:1c009b90 PA:1c009b9c +76652483ns 1416377 1c002998 00050a63 beq x10, x0, 20 x10:1c00c230 +76652503ns 1416378 1c00299a 87cff0ef jal x1, -3972 x1=1c00299e +76652564ns 1416381 1c001a16 d6818793 addi x15, x3, -664 x15=1c009144 x3:1c0093dc +76652584ns 1416382 1c001a1a 0007a703 lw x14, 0(x15) x14=00000000 x15:1c009144 PA:1c009144 +76652625ns 1416384 1c001a1c 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76652645ns 1416385 1c001a1e 00e7a023 sw x14, 0(x15) x14:00000001 x15:1c009144 PA:1c009144 +76652665ns 1416386 1c001a20 00008067 jalr x0, x1, 0 x1:1c00299e +76652705ns 1416388 1c00299e 00c12503 lw x10, 12(x2) x10=1c00c230 x2:1c009b90 PA:1c009b9c +76652726ns 1416389 1c0029a0 775000ef jal x1, 3956 x1=1c0029a4 +76652766ns 1416391 1c003914 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76652786ns 1416392 1c003918 00a005b3 add x11, x0, x10 x11=1c00c230 x10:1c00c230 +76652806ns 1416393 1c00391a c447a503 lw x10, -956(x15) x10=1c009e10 x15:1c009000 PA:1c008c44 +76652827ns 1416394 1c00391e 0020006f jal x0, 2 +76652867ns 1416396 1c003920 0a058363 beq x11, x0, 166 x11:1c00c230 +76652887ns 1416397 1c003922 ffc5a783 lw x15, -4(x11) x15=00000058 x11:1c00c230 PA:1c00c22c +76652907ns 1416398 1c003926 fe010113 addi x2, x2, -32 x2=1c009b70 x2:1c009b90 +76652927ns 1416399 1c003928 00812c23 sw x8, 24(x2) x8:1c009c50 x2:1c009b70 PA:1c009b88 +76652948ns 1416400 1c00392a 00112e23 sw x1, 28(x2) x1:1c0029a4 x2:1c009b70 PA:1c009b8c +76652968ns 1416401 1c00392c ffc58413 addi x8, x11, -4 x8=1c00c22c x11:1c00c230 +76652988ns 1416402 1c003930 0007d363 bge x15, x0, 6 x15:00000058 +76653049ns 1416405 1c003936 00a12623 sw x10, 12(x2) x10:1c009e10 x2:1c009b70 PA:1c009b7c +76653069ns 1416406 1c003938 92eff0ef jal x1, -3794 x1=1c00393c +76653129ns 1416409 1c002a66 fb1fe06f jal x0, -4176 +76653190ns 1416412 1c001a16 d6818793 addi x15, x3, -664 x15=1c009144 x3:1c0093dc +76653210ns 1416413 1c001a1a 0007a703 lw x14, 0(x15) x14=00000001 x15:1c009144 PA:1c009144 +76653251ns 1416415 1c001a1c 00170713 addi x14, x14, 1 x14=00000002 x14:00000001 +76653271ns 1416416 1c001a1e 00e7a023 sw x14, 0(x15) x14:00000002 x15:1c009144 PA:1c009144 +76653291ns 1416417 1c001a20 00008067 jalr x0, x1, 0 x1:1c00393c +76653331ns 1416419 1c00393c db81a783 lw x15, -584(x3) x15=1c00c1d4 x3:1c0093dc PA:1c009194 +76653351ns 1416420 1c003940 00c12503 lw x10, 12(x2) x10=1c009e10 x2:1c009b70 PA:1c009b7c +76653372ns 1416421 1c003942 00e00633 add x12, x0, x14 x12=00000002 x14:00000002 +76653392ns 1416422 1c003944 00079a63 bne x15, x0, 20 x15:1c00c1d4 +76653452ns 1416425 1c003958 00f47f63 bgeu x8, x15, 30 x8:1c00c22c x15:1c00c1d4 +76653513ns 1416428 1c003976 00f00733 add x14, x0, x15 x14=1c00c1d4 x15:1c00c1d4 +76653533ns 1416429 1c003978 0047a783 lw x15, 4(x15) x15=00000000 x15:1c00c1d4 PA:1c00c1d8 +76653574ns 1416431 1c00397a 00078363 beq x15, x0, 6 x15:00000000 +76653634ns 1416434 1c003980 00072683 lw x13, 0(x14) x13=00000058 x14:1c00c1d4 PA:1c00c1d4 +76653675ns 1416436 1c003982 00d70633 add x12, x14, x13 x12=1c00c22c x14:1c00c1d4 x13:00000058 +76653695ns 1416437 1c003986 00861f63 bne x12, x8, 30 x12:1c00c22c x8:1c00c22c +76653715ns 1416438 1c00398a 00042603 lw x12, 0(x8) x12=00000058 x8:1c00c22c PA:1c00c22c +76653755ns 1416440 1c00398c 00c686b3 add x13, x13, x12 x13=000000b0 x13:00000058 x12:00000058 +76653776ns 1416441 1c00398e 00d72023 sw x13, 0(x14) x13:000000b0 x14:1c00c1d4 PA:1c00c1d4 +76653796ns 1416442 1c003990 00d70633 add x12, x14, x13 x12=1c00c284 x14:1c00c1d4 x13:000000b0 +76653816ns 1416443 1c003994 fac79de3 bne x15, x12, -70 x15:00000000 x12:1c00c284 +76653876ns 1416446 1c00394e 01812403 lw x8, 24(x2) x8=1c009c50 x2:1c009b70 PA:1c009b88 +76653897ns 1416447 1c003950 01c12083 lw x1, 28(x2) x1=1c0029a4 x2:1c009b70 PA:1c009b8c +76653917ns 1416448 1c003952 02010113 addi x2, x2, 32 x2=1c009b90 x2:1c009b70 +76653937ns 1416449 1c003954 916ff06f jal x0, -3818 +76653998ns 1416452 1c002a6a 8e3ff06f jal x0, -1822 +76654038ns 1416454 1c00234c fc010113 addi x2, x2, -64 x2=1c009b50 x2:1c009b90 +76654058ns 1416455 1c00234e 02812c23 sw x8, 56(x2) x8:1c009c50 x2:1c009b50 PA:1c009b88 +76654078ns 1416456 1c002350 d6818413 addi x8, x3, -664 x8=1c009144 x3:1c0093dc +76654099ns 1416457 1c002354 00042783 lw x15, 0(x8) x15=00000002 x8:1c009144 PA:1c009144 +76654119ns 1416458 1c002356 02112e23 sw x1, 60(x2) x1:1c0029a4 x2:1c009b50 PA:1c009b8c +76654139ns 1416459 1c002358 02912a23 sw x9, 52(x2) x9:1c009190 x2:1c009b50 PA:1c009b84 +76654159ns 1416460 1c00235a 03212823 sw x18, 48(x2) x18:1c009188 x2:1c009b50 PA:1c009b80 +76654179ns 1416461 1c00235c 03312623 sw x19, 44(x2) x19:1c009000 x2:1c009b50 PA:1c009b7c +76654200ns 1416462 1c00235e 03412423 sw x20, 40(x2) x20:1c00918c x2:1c009b50 PA:1c009b78 +76654220ns 1416463 1c002360 03512223 sw x21, 36(x2) x21:a5a5a5a5 x2:1c009b50 PA:1c009b74 +76654240ns 1416464 1c002362 03612023 sw x22, 32(x2) x22:a5a5a5a5 x2:1c009b50 PA:1c009b70 +76654260ns 1416465 1c002364 01712e23 sw x23, 28(x2) x23:a5a5a5a5 x2:1c009b50 PA:1c009b6c +76654280ns 1416466 1c002366 02079263 bne x15, x0, 36 x15:00000002 +76654361ns 1416470 1c00238a c83ff0ef jal x1, -894 x1=1c00238e +76654401ns 1416472 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +76654482ns 1416476 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76654523ns 1416478 1c002014 00078863 beq x15, x0, 16 x15:00000001 +76654543ns 1416479 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76654563ns 1416480 1c00201a 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76654583ns 1416481 1c00201c 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76654603ns 1416482 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c009db8 PA:1c009dfc +76654644ns 1416484 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76654664ns 1416485 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c009db8 PA:1c009dfc +76654684ns 1416486 1c002024 00008067 jalr x0, x1, 0 x1:1c00238e +76654725ns 1416488 1c00238e 00042783 lw x15, 0(x8) x15=00000002 x8:1c009144 PA:1c009144 +76654765ns 1416490 1c002390 fff78793 addi x15, x15, -1 x15=00000001 x15:00000002 +76654785ns 1416491 1c002392 00f42023 sw x15, 0(x8) x15:00000001 x8:1c009144 PA:1c009144 +76654805ns 1416492 1c002394 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +76654846ns 1416494 1c002396 02078163 beq x15, x0, 34 x15:00000001 +76654866ns 1416495 1c002398 00000513 addi x10, x0, 0 x10=00000000 +76654886ns 1416496 1c00239a 00a12623 sw x10, 12(x2) x10:00000000 x2:1c009b50 PA:1c009b5c +76654906ns 1416497 1c00239c c8bff0ef jal x1, -886 x1=1c0023a0 +76654967ns 1416500 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76655007ns 1416502 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +76655027ns 1416503 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76655048ns 1416504 1c002030 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +76655088ns 1416506 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c009db8 PA:1c009dfc +76655128ns 1416508 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +76655149ns 1416509 1c002036 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76655169ns 1416510 1c002038 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76655189ns 1416511 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c009db8 PA:1c009dfc +76655229ns 1416513 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +76655250ns 1416514 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c009db8 PA:1c009dfc +76655270ns 1416515 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c009db8 PA:1c009dfc +76655310ns 1416517 1c002042 00079363 bne x15, x0, 6 x15:00000000 +76655330ns 1416518 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +76655411ns 1416522 1c002048 00008067 jalr x0, x1, 0 x1:1c0023a0 +76655451ns 1416524 1c0023a0 03c12083 lw x1, 60(x2) x1=1c0029a4 x2:1c009b50 PA:1c009b8c +76655472ns 1416525 1c0023a2 03812403 lw x8, 56(x2) x8=1c009c50 x2:1c009b50 PA:1c009b88 +76655492ns 1416526 1c0023a4 00c12503 lw x10, 12(x2) x10=00000000 x2:1c009b50 PA:1c009b5c +76655512ns 1416527 1c0023a6 03412483 lw x9, 52(x2) x9=1c009190 x2:1c009b50 PA:1c009b84 +76655552ns 1416529 1c0023a8 03012903 lw x18, 48(x2) x18=1c009188 x2:1c009b50 PA:1c009b80 +76655573ns 1416530 1c0023aa 02c12983 lw x19, 44(x2) x19=1c009000 x2:1c009b50 PA:1c009b7c +76655593ns 1416531 1c0023ac 02812a03 lw x20, 40(x2) x20=1c00918c x2:1c009b50 PA:1c009b78 +76655613ns 1416532 1c0023ae 02412a83 lw x21, 36(x2) x21=a5a5a5a5 x2:1c009b50 PA:1c009b74 +76655633ns 1416533 1c0023b0 02012b03 lw x22, 32(x2) x22=a5a5a5a5 x2:1c009b50 PA:1c009b70 +76655653ns 1416534 1c0023b2 01c12b83 lw x23, 28(x2) x23=a5a5a5a5 x2:1c009b50 PA:1c009b6c +76655674ns 1416535 1c0023b4 04010113 addi x2, x2, 64 x2=1c009b90 x2:1c009b50 +76655694ns 1416536 1c0023b6 00008067 jalr x0, x1, 0 x1:1c0029a4 +76655734ns 1416538 1c0029a4 01c12083 lw x1, 28(x2) x1=1c0034a0 x2:1c009b90 PA:1c009bac +76655754ns 1416539 1c0029a6 02010113 addi x2, x2, 32 x2=1c009bb0 x2:1c009b90 +76655775ns 1416540 1c0029a8 9a5ff06f jal x0, -1628 +76655815ns 1416542 1c00234c fc010113 addi x2, x2, -64 x2=1c009b70 x2:1c009bb0 +76655835ns 1416543 1c00234e 02812c23 sw x8, 56(x2) x8:1c009c50 x2:1c009b70 PA:1c009ba8 +76655855ns 1416544 1c002350 d6818413 addi x8, x3, -664 x8=1c009144 x3:1c0093dc +76655875ns 1416545 1c002354 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +76655896ns 1416546 1c002356 02112e23 sw x1, 60(x2) x1:1c0034a0 x2:1c009b70 PA:1c009bac +76655916ns 1416547 1c002358 02912a23 sw x9, 52(x2) x9:1c009190 x2:1c009b70 PA:1c009ba4 +76655936ns 1416548 1c00235a 03212823 sw x18, 48(x2) x18:1c009188 x2:1c009b70 PA:1c009ba0 +76655956ns 1416549 1c00235c 03312623 sw x19, 44(x2) x19:1c009000 x2:1c009b70 PA:1c009b9c +76655976ns 1416550 1c00235e 03412423 sw x20, 40(x2) x20:1c00918c x2:1c009b70 PA:1c009b98 +76655997ns 1416551 1c002360 03512223 sw x21, 36(x2) x21:a5a5a5a5 x2:1c009b70 PA:1c009b94 +76656017ns 1416552 1c002362 03612023 sw x22, 32(x2) x22:a5a5a5a5 x2:1c009b70 PA:1c009b90 +76656037ns 1416553 1c002364 01712e23 sw x23, 28(x2) x23:a5a5a5a5 x2:1c009b70 PA:1c009b8c +76656057ns 1416554 1c002366 02079263 bne x15, x0, 36 x15:00000001 +76656138ns 1416558 1c00238a c83ff0ef jal x1, -894 x1=1c00238e +76656178ns 1416560 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +76656259ns 1416564 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76656300ns 1416566 1c002014 00078863 beq x15, x0, 16 x15:00000001 +76656320ns 1416567 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76656340ns 1416568 1c00201a 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76656360ns 1416569 1c00201c 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76656380ns 1416570 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c009db8 PA:1c009dfc +76656421ns 1416572 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76656441ns 1416573 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c009db8 PA:1c009dfc +76656461ns 1416574 1c002024 00008067 jalr x0, x1, 0 x1:1c00238e +76656501ns 1416576 1c00238e 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +76656542ns 1416578 1c002390 fff78793 addi x15, x15, -1 x15=00000000 x15:00000001 +76656562ns 1416579 1c002392 00f42023 sw x15, 0(x8) x15:00000000 x8:1c009144 PA:1c009144 +76656582ns 1416580 1c002394 00042783 lw x15, 0(x8) x15=00000000 x8:1c009144 PA:1c009144 +76656623ns 1416582 1c002396 02078163 beq x15, x0, 34 x15:00000000 +76656683ns 1416585 1c0023b8 d601a783 lw x15, -672(x3) x15=00000003 x3:1c0093dc PA:1c00913c +76656724ns 1416587 1c0023bc fc078ee3 beq x15, x0, -36 x15:00000003 +76656744ns 1416588 1c0023be 1c009937 lui x18, 0x1c009000 x18=1c009000 +76656764ns 1416589 1c0023c2 00000413 addi x8, x0, 0 x8=00000000 +76656784ns 1416590 1c0023c4 93818493 addi x9, x3, -1736 x9=1c008d14 x3:1c0093dc +76656804ns 1416591 1c0023c8 00100993 addi x19, x0, 1 x19=00000001 +76656825ns 1416592 1c0023ca c8890913 addi x18, x18, -888 x18=1c008c88 x18:1c009000 +76656845ns 1416593 1c0023ce 01400a93 addi x21, x0, 20 x21=00000014 +76656865ns 1416594 1c0023d0 04c0006f jal x0, 76 +76656905ns 1416596 1c00241c 0004a783 lw x15, 0(x9) x15=00000000 x9:1c008d14 PA:1c008d14 +76656946ns 1416598 1c00241e fa079ae3 bne x15, x0, -76 x15:00000000 +76656966ns 1416599 1c002420 00040363 beq x8, x0, 6 x8:00000000 +76657047ns 1416603 1c002426 d8018713 addi x14, x3, -640 x14=1c00915c x3:1c0093dc +76657067ns 1416604 1c00242a 00072483 lw x9, 0(x14) x9=00000000 x14:1c00915c PA:1c00915c +76657087ns 1416605 1c00242c d8018413 addi x8, x3, -640 x8=1c00915c x3:1c0093dc +76657107ns 1416606 1c002430 00048d63 beq x9, x0, 26 x9:00000000 +76657188ns 1416610 1c00244a d8c1a783 lw x15, -628(x3) x15=00000000 x3:1c0093dc PA:1c009168 +76657228ns 1416612 1c00244e f40785e3 beq x15, x0, -182 x15:00000000 +76657289ns 1416615 1c002398 00000513 addi x10, x0, 0 x10=00000000 +76657309ns 1416616 1c00239a 00a12623 sw x10, 12(x2) x10:00000000 x2:1c009b70 PA:1c009b7c +76657329ns 1416617 1c00239c c8bff0ef jal x1, -886 x1=1c0023a0 +76657390ns 1416620 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76657430ns 1416622 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +76657450ns 1416623 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76657471ns 1416624 1c002030 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +76657511ns 1416626 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c009db8 PA:1c009dfc +76657551ns 1416628 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +76657572ns 1416629 1c002036 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76657592ns 1416630 1c002038 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76657612ns 1416631 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c009db8 PA:1c009dfc +76657652ns 1416633 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +76657673ns 1416634 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c009db8 PA:1c009dfc +76657693ns 1416635 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c009db8 PA:1c009dfc +76657733ns 1416637 1c002042 00079363 bne x15, x0, 6 x15:00000000 +76657753ns 1416638 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +76657834ns 1416642 1c002048 00008067 jalr x0, x1, 0 x1:1c0023a0 +76657875ns 1416644 1c0023a0 03c12083 lw x1, 60(x2) x1=1c0034a0 x2:1c009b70 PA:1c009bac +76657895ns 1416645 1c0023a2 03812403 lw x8, 56(x2) x8=1c009c50 x2:1c009b70 PA:1c009ba8 +76657915ns 1416646 1c0023a4 00c12503 lw x10, 12(x2) x10=00000000 x2:1c009b70 PA:1c009b7c +76657935ns 1416647 1c0023a6 03412483 lw x9, 52(x2) x9=1c009190 x2:1c009b70 PA:1c009ba4 +76657955ns 1416648 1c0023a8 03012903 lw x18, 48(x2) x18=1c009188 x2:1c009b70 PA:1c009ba0 +76657975ns 1416649 1c0023aa 02c12983 lw x19, 44(x2) x19=1c009000 x2:1c009b70 PA:1c009b9c +76657996ns 1416650 1c0023ac 02812a03 lw x20, 40(x2) x20=1c00918c x2:1c009b70 PA:1c009b98 +76658016ns 1416651 1c0023ae 02412a83 lw x21, 36(x2) x21=a5a5a5a5 x2:1c009b70 PA:1c009b94 +76658036ns 1416652 1c0023b0 02012b03 lw x22, 32(x2) x22=a5a5a5a5 x2:1c009b70 PA:1c009b90 +76658056ns 1416653 1c0023b2 01c12b83 lw x23, 28(x2) x23=a5a5a5a5 x2:1c009b70 PA:1c009b8c +76658076ns 1416654 1c0023b4 04010113 addi x2, x2, 64 x2=1c009bb0 x2:1c009b70 +76658097ns 1416655 1c0023b6 00008067 jalr x0, x1, 0 x1:1c0034a0 +76658137ns 1416657 1c0034a0 02042c23 sw x0, 56(x8) x8:1c009c50 PA:1c009c88 +76658157ns 1416658 1c0034a4 02042e23 sw x0, 60(x8) x8:1c009c50 PA:1c009c8c +76658177ns 1416659 1c0034a8 02042a23 sw x0, 52(x8) x8:1c009c50 PA:1c009c84 +76658198ns 1416660 1c0034ac 00c12083 lw x1, 12(x2) x1=1c0036dc x2:1c009bb0 PA:1c009bbc +76658218ns 1416661 1c0034ae 00812403 lw x8, 8(x2) x8=00000000 x2:1c009bb0 PA:1c009bb8 +76658238ns 1416662 1c0034b0 01010113 addi x2, x2, 16 x2=1c009bc0 x2:1c009bb0 +76658258ns 1416663 1c0034b2 00008067 jalr x0, x1, 0 x1:1c0036dc +76658299ns 1416665 1c0036dc 0d810513 addi x10, x2, 216 x10=1c009c98 x2:1c009bc0 +76658319ns 1416666 1c0036de dd9ff0ef jal x1, -552 x1=1c0036e2 +76658359ns 1416668 1c0034b6 ff010113 addi x2, x2, -16 x2=1c009bb0 x2:1c009bc0 +76658379ns 1416669 1c0034b8 00812423 sw x8, 8(x2) x8:00000000 x2:1c009bb0 PA:1c009bb8 +76658399ns 1416670 1c0034ba 00112623 sw x1, 12(x2) x1:1c0036e2 x2:1c009bb0 PA:1c009bbc +76658420ns 1416671 1c0034bc 00a00433 add x8, x0, x10 x8=1c009c98 x10:1c009c98 +76658440ns 1416672 1c0034be 04444783 lbu x15, 68(x8) x15=00000001 x8:1c009c98 PA:1c009cdc +76658480ns 1416674 1c0034c2 01879793 slli x15, x15, 0x18 x15=01000000 x15:00000001 +76658500ns 1416675 1c0034c4 4187d793 srai x15, x15, 0x418 x15=00000001 x15:01000000 +76658521ns 1416676 1c0034c6 00078763 beq x15, x0, 14 x15:00000001 +76658541ns 1416677 1c0034c8 00800533 add x10, x0, x8 x10=1c009c98 x8:1c009c98 +76658561ns 1416678 1c0034ca 00812403 lw x8, 8(x2) x8=00000000 x2:1c009bb0 PA:1c009bb8 +76658581ns 1416679 1c0034cc 00c12083 lw x1, 12(x2) x1=1c0036e2 x2:1c009bb0 PA:1c009bbc +76658601ns 1416680 1c0034ce 01010113 addi x2, x2, 16 x2=1c009bc0 x2:1c009bb0 +76658622ns 1416681 1c0034d0 fb3ff06f jal x0, -78 +76658682ns 1416684 1c003482 04750783 lb x15, 71(x10) x15=00000001 x10:1c009c98 PA:1c009cdf +76658723ns 1416686 1c003486 02078763 beq x15, x0, 46 x15:00000001 +76658743ns 1416687 1c003488 ff010113 addi x2, x2, -16 x2=1c009bb0 x2:1c009bc0 +76658763ns 1416688 1c00348a 00812423 sw x8, 8(x2) x8:00000000 x2:1c009bb0 PA:1c009bb8 +76658783ns 1416689 1c00348c 00112623 sw x1, 12(x2) x1:1c0036e2 x2:1c009bb0 PA:1c009bbc +76658803ns 1416690 1c00348e 00a00433 add x8, x0, x10 x8=1c009c98 x10:1c009c98 +76658824ns 1416691 1c003490 040503a3 sb x0, 71(x10) x10:1c009c98 PA:1c009cdf +76658844ns 1416692 1c003494 03452783 lw x15, 52(x10) x15=1c00c288 x10:1c009c98 PA:1c009ccc +76658884ns 1416694 1c003496 00078b63 beq x15, x0, 22 x15:1c00c288 +76658904ns 1416695 1c003498 03452503 lw x10, 52(x10) x10=1c00c288 x10:1c009c98 PA:1c009ccc +76658945ns 1416697 1c00349a 00050763 beq x10, x0, 14 x10:1c00c288 +76658965ns 1416698 1c00349c c1cfe0ef jal x1, -7140 x1=1c0034a0 +76659005ns 1416700 1c0018b8 ff010113 addi x2, x2, -16 x2=1c009ba0 x2:1c009bb0 +76659025ns 1416701 1c0018ba 00112623 sw x1, 12(x2) x1:1c0034a0 x2:1c009ba0 PA:1c009bac +76659046ns 1416702 1c0018bc 00812423 sw x8, 8(x2) x8:1c009c98 x2:1c009ba0 PA:1c009ba8 +76659066ns 1416703 1c0018be 02051163 bne x10, x0, 34 x10:1c00c288 +76659126ns 1416706 1c0018e0 00a00433 add x8, x0, x10 x8=1c00c288 x10:1c00c288 +76659147ns 1416707 1c0018e2 fa9ff0ef jal x1, -88 x1=1c0018e4 +76659207ns 1416710 1c00188a 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76659227ns 1416711 1c00188e c4878693 addi x13, x15, -952 x13=1c008c48 x15:1c009000 +76659248ns 1416712 1c001892 00000713 addi x14, x0, 0 x14=00000000 +76659268ns 1416713 1c001894 c4878793 addi x15, x15, -952 x15=1c008c48 x15:1c009000 +76659288ns 1416714 1c001898 00800613 addi x12, x0, 8 x12=00000008 +76659308ns 1416715 1c00189a 0046a583 lw x11, 4(x13) x11=1c00ad20 x13:1c008c48 PA:1c008c4c +76659349ns 1416717 1c00189c 00a59963 bne x11, x10, 18 x11:1c00ad20 x10:1c00c288 +76659409ns 1416720 1c0018ae 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76659429ns 1416721 1c0018b0 00868693 addi x13, x13, 8 x13=1c008c50 x13:1c008c48 +76659449ns 1416722 1c0018b2 fec714e3 bne x14, x12, -24 x14:00000001 x12:00000008 +76659510ns 1416725 1c00189a 0046a583 lw x11, 4(x13) x11=00000000 x13:1c008c50 PA:1c008c54 +76659550ns 1416727 1c00189c 00a59963 bne x11, x10, 18 x11:00000000 x10:1c00c288 +76659611ns 1416730 1c0018ae 00170713 addi x14, x14, 1 x14=00000002 x14:00000001 +76659631ns 1416731 1c0018b0 00868693 addi x13, x13, 8 x13=1c008c58 x13:1c008c50 +76659651ns 1416732 1c0018b2 fec714e3 bne x14, x12, -24 x14:00000002 x12:00000008 +76659712ns 1416735 1c00189a 0046a583 lw x11, 4(x13) x11=00000000 x13:1c008c58 PA:1c008c5c +76659752ns 1416737 1c00189c 00a59963 bne x11, x10, 18 x11:00000000 x10:1c00c288 +76659813ns 1416740 1c0018ae 00170713 addi x14, x14, 1 x14=00000003 x14:00000002 +76659833ns 1416741 1c0018b0 00868693 addi x13, x13, 8 x13=1c008c60 x13:1c008c58 +76659853ns 1416742 1c0018b2 fec714e3 bne x14, x12, -24 x14:00000003 x12:00000008 +76659914ns 1416745 1c00189a 0046a583 lw x11, 4(x13) x11=00000000 x13:1c008c60 PA:1c008c64 +76659954ns 1416747 1c00189c 00a59963 bne x11, x10, 18 x11:00000000 x10:1c00c288 +76660015ns 1416750 1c0018ae 00170713 addi x14, x14, 1 x14=00000004 x14:00000003 +76660035ns 1416751 1c0018b0 00868693 addi x13, x13, 8 x13=1c008c68 x13:1c008c60 +76660055ns 1416752 1c0018b2 fec714e3 bne x14, x12, -24 x14:00000004 x12:00000008 +76660116ns 1416755 1c00189a 0046a583 lw x11, 4(x13) x11=00000000 x13:1c008c68 PA:1c008c6c +76660156ns 1416757 1c00189c 00a59963 bne x11, x10, 18 x11:00000000 x10:1c00c288 +76660217ns 1416760 1c0018ae 00170713 addi x14, x14, 1 x14=00000005 x14:00000004 +76660237ns 1416761 1c0018b0 00868693 addi x13, x13, 8 x13=1c008c70 x13:1c008c68 +76660257ns 1416762 1c0018b2 fec714e3 bne x14, x12, -24 x14:00000005 x12:00000008 +76660318ns 1416765 1c00189a 0046a583 lw x11, 4(x13) x11=00000000 x13:1c008c70 PA:1c008c74 +76660358ns 1416767 1c00189c 00a59963 bne x11, x10, 18 x11:00000000 x10:1c00c288 +76660419ns 1416770 1c0018ae 00170713 addi x14, x14, 1 x14=00000006 x14:00000005 +76660439ns 1416771 1c0018b0 00868693 addi x13, x13, 8 x13=1c008c78 x13:1c008c70 +76660459ns 1416772 1c0018b2 fec714e3 bne x14, x12, -24 x14:00000006 x12:00000008 +76660520ns 1416775 1c00189a 0046a583 lw x11, 4(x13) x11=00000000 x13:1c008c78 PA:1c008c7c +76660560ns 1416777 1c00189c 00a59963 bne x11, x10, 18 x11:00000000 x10:1c00c288 +76660621ns 1416780 1c0018ae 00170713 addi x14, x14, 1 x14=00000007 x14:00000006 +76660641ns 1416781 1c0018b0 00868693 addi x13, x13, 8 x13=1c008c80 x13:1c008c78 +76660661ns 1416782 1c0018b2 fec714e3 bne x14, x12, -24 x14:00000007 x12:00000008 +76660722ns 1416785 1c00189a 0046a583 lw x11, 4(x13) x11=00000000 x13:1c008c80 PA:1c008c84 +76660762ns 1416787 1c00189c 00a59963 bne x11, x10, 18 x11:00000000 x10:1c00c288 +76660823ns 1416790 1c0018ae 00170713 addi x14, x14, 1 x14=00000008 x14:00000007 +76660843ns 1416791 1c0018b0 00868693 addi x13, x13, 8 x13=1c008c88 x13:1c008c80 +76660863ns 1416792 1c0018b2 fec714e3 bne x14, x12, -24 x14:00000008 x12:00000008 +76660883ns 1416793 1c0018b6 00008067 jalr x0, x1, 0 x1:1c0018e4 +76660923ns 1416795 1c0018e4 00800533 add x10, x0, x8 x10=1c00c288 x8:1c00c288 +76660944ns 1416796 1c0018e6 00812403 lw x8, 8(x2) x8=1c009c98 x2:1c009ba0 PA:1c009ba8 +76660964ns 1416797 1c0018e8 00c12083 lw x1, 12(x2) x1=1c0034a0 x2:1c009ba0 PA:1c009bac +76660984ns 1416798 1c0018ea 01010113 addi x2, x2, 16 x2=1c009bb0 x2:1c009ba0 +76661004ns 1416799 1c0018ec 0a60106f jal x0, 4262 +76661045ns 1416801 1c002992 fe010113 addi x2, x2, -32 x2=1c009b90 x2:1c009bb0 +76661065ns 1416802 1c002994 00112e23 sw x1, 28(x2) x1:1c0034a0 x2:1c009b90 PA:1c009bac +76661085ns 1416803 1c002996 00a12623 sw x10, 12(x2) x10:1c00c288 x2:1c009b90 PA:1c009b9c +76661105ns 1416804 1c002998 00050a63 beq x10, x0, 20 x10:1c00c288 +76661125ns 1416805 1c00299a 87cff0ef jal x1, -3972 x1=1c00299e +76661186ns 1416808 1c001a16 d6818793 addi x15, x3, -664 x15=1c009144 x3:1c0093dc +76661206ns 1416809 1c001a1a 0007a703 lw x14, 0(x15) x14=00000000 x15:1c009144 PA:1c009144 +76661247ns 1416811 1c001a1c 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76661267ns 1416812 1c001a1e 00e7a023 sw x14, 0(x15) x14:00000001 x15:1c009144 PA:1c009144 +76661287ns 1416813 1c001a20 00008067 jalr x0, x1, 0 x1:1c00299e +76661327ns 1416815 1c00299e 00c12503 lw x10, 12(x2) x10=1c00c288 x2:1c009b90 PA:1c009b9c +76661348ns 1416816 1c0029a0 775000ef jal x1, 3956 x1=1c0029a4 +76661388ns 1416818 1c003914 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76661408ns 1416819 1c003918 00a005b3 add x11, x0, x10 x11=1c00c288 x10:1c00c288 +76661428ns 1416820 1c00391a c447a503 lw x10, -956(x15) x10=1c009e10 x15:1c009000 PA:1c008c44 +76661448ns 1416821 1c00391e 0020006f jal x0, 2 +76661489ns 1416823 1c003920 0a058363 beq x11, x0, 166 x11:1c00c288 +76661509ns 1416824 1c003922 ffc5a783 lw x15, -4(x11) x15=00000058 x11:1c00c288 PA:1c00c284 +76661529ns 1416825 1c003926 fe010113 addi x2, x2, -32 x2=1c009b70 x2:1c009b90 +76661549ns 1416826 1c003928 00812c23 sw x8, 24(x2) x8:1c009c98 x2:1c009b70 PA:1c009b88 +76661570ns 1416827 1c00392a 00112e23 sw x1, 28(x2) x1:1c0029a4 x2:1c009b70 PA:1c009b8c +76661590ns 1416828 1c00392c ffc58413 addi x8, x11, -4 x8=1c00c284 x11:1c00c288 +76661610ns 1416829 1c003930 0007d363 bge x15, x0, 6 x15:00000058 +76661671ns 1416832 1c003936 00a12623 sw x10, 12(x2) x10:1c009e10 x2:1c009b70 PA:1c009b7c +76661691ns 1416833 1c003938 92eff0ef jal x1, -3794 x1=1c00393c +76661751ns 1416836 1c002a66 fb1fe06f jal x0, -4176 +76661812ns 1416839 1c001a16 d6818793 addi x15, x3, -664 x15=1c009144 x3:1c0093dc +76661832ns 1416840 1c001a1a 0007a703 lw x14, 0(x15) x14=00000001 x15:1c009144 PA:1c009144 +76661873ns 1416842 1c001a1c 00170713 addi x14, x14, 1 x14=00000002 x14:00000001 +76661893ns 1416843 1c001a1e 00e7a023 sw x14, 0(x15) x14:00000002 x15:1c009144 PA:1c009144 +76661913ns 1416844 1c001a20 00008067 jalr x0, x1, 0 x1:1c00393c +76661953ns 1416846 1c00393c db81a783 lw x15, -584(x3) x15=1c00c1d4 x3:1c0093dc PA:1c009194 +76661973ns 1416847 1c003940 00c12503 lw x10, 12(x2) x10=1c009e10 x2:1c009b70 PA:1c009b7c +76661994ns 1416848 1c003942 00e00633 add x12, x0, x14 x12=00000002 x14:00000002 +76662014ns 1416849 1c003944 00079a63 bne x15, x0, 20 x15:1c00c1d4 +76662074ns 1416852 1c003958 00f47f63 bgeu x8, x15, 30 x8:1c00c284 x15:1c00c1d4 +76662135ns 1416855 1c003976 00f00733 add x14, x0, x15 x14=1c00c1d4 x15:1c00c1d4 +76662155ns 1416856 1c003978 0047a783 lw x15, 4(x15) x15=00000000 x15:1c00c1d4 PA:1c00c1d8 +76662196ns 1416858 1c00397a 00078363 beq x15, x0, 6 x15:00000000 +76662256ns 1416861 1c003980 00072683 lw x13, 0(x14) x13=000000b0 x14:1c00c1d4 PA:1c00c1d4 +76662297ns 1416863 1c003982 00d70633 add x12, x14, x13 x12=1c00c284 x14:1c00c1d4 x13:000000b0 +76662317ns 1416864 1c003986 00861f63 bne x12, x8, 30 x12:1c00c284 x8:1c00c284 +76662337ns 1416865 1c00398a 00042603 lw x12, 0(x8) x12=00000058 x8:1c00c284 PA:1c00c284 +76662377ns 1416867 1c00398c 00c686b3 add x13, x13, x12 x13=00000108 x13:000000b0 x12:00000058 +76662398ns 1416868 1c00398e 00d72023 sw x13, 0(x14) x13:00000108 x14:1c00c1d4 PA:1c00c1d4 +76662418ns 1416869 1c003990 00d70633 add x12, x14, x13 x12=1c00c2dc x14:1c00c1d4 x13:00000108 +76662438ns 1416870 1c003994 fac79de3 bne x15, x12, -70 x15:00000000 x12:1c00c2dc +76662498ns 1416873 1c00394e 01812403 lw x8, 24(x2) x8=1c009c98 x2:1c009b70 PA:1c009b88 +76662519ns 1416874 1c003950 01c12083 lw x1, 28(x2) x1=1c0029a4 x2:1c009b70 PA:1c009b8c +76662539ns 1416875 1c003952 02010113 addi x2, x2, 32 x2=1c009b90 x2:1c009b70 +76662559ns 1416876 1c003954 916ff06f jal x0, -3818 +76662620ns 1416879 1c002a6a 8e3ff06f jal x0, -1822 +76662660ns 1416881 1c00234c fc010113 addi x2, x2, -64 x2=1c009b50 x2:1c009b90 +76662680ns 1416882 1c00234e 02812c23 sw x8, 56(x2) x8:1c009c98 x2:1c009b50 PA:1c009b88 +76662700ns 1416883 1c002350 d6818413 addi x8, x3, -664 x8=1c009144 x3:1c0093dc +76662721ns 1416884 1c002354 00042783 lw x15, 0(x8) x15=00000002 x8:1c009144 PA:1c009144 +76662741ns 1416885 1c002356 02112e23 sw x1, 60(x2) x1:1c0029a4 x2:1c009b50 PA:1c009b8c +76662761ns 1416886 1c002358 02912a23 sw x9, 52(x2) x9:1c009190 x2:1c009b50 PA:1c009b84 +76662781ns 1416887 1c00235a 03212823 sw x18, 48(x2) x18:1c009188 x2:1c009b50 PA:1c009b80 +76662801ns 1416888 1c00235c 03312623 sw x19, 44(x2) x19:1c009000 x2:1c009b50 PA:1c009b7c +76662822ns 1416889 1c00235e 03412423 sw x20, 40(x2) x20:1c00918c x2:1c009b50 PA:1c009b78 +76662842ns 1416890 1c002360 03512223 sw x21, 36(x2) x21:a5a5a5a5 x2:1c009b50 PA:1c009b74 +76662862ns 1416891 1c002362 03612023 sw x22, 32(x2) x22:a5a5a5a5 x2:1c009b50 PA:1c009b70 +76662882ns 1416892 1c002364 01712e23 sw x23, 28(x2) x23:a5a5a5a5 x2:1c009b50 PA:1c009b6c +76662902ns 1416893 1c002366 02079263 bne x15, x0, 36 x15:00000002 +76662983ns 1416897 1c00238a c83ff0ef jal x1, -894 x1=1c00238e +76663023ns 1416899 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +76663104ns 1416903 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76663145ns 1416905 1c002014 00078863 beq x15, x0, 16 x15:00000001 +76663165ns 1416906 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76663185ns 1416907 1c00201a 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76663205ns 1416908 1c00201c 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76663225ns 1416909 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c009db8 PA:1c009dfc +76663266ns 1416911 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76663286ns 1416912 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c009db8 PA:1c009dfc +76663306ns 1416913 1c002024 00008067 jalr x0, x1, 0 x1:1c00238e +76663347ns 1416915 1c00238e 00042783 lw x15, 0(x8) x15=00000002 x8:1c009144 PA:1c009144 +76663387ns 1416917 1c002390 fff78793 addi x15, x15, -1 x15=00000001 x15:00000002 +76663407ns 1416918 1c002392 00f42023 sw x15, 0(x8) x15:00000001 x8:1c009144 PA:1c009144 +76663427ns 1416919 1c002394 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +76663468ns 1416921 1c002396 02078163 beq x15, x0, 34 x15:00000001 +76663488ns 1416922 1c002398 00000513 addi x10, x0, 0 x10=00000000 +76663508ns 1416923 1c00239a 00a12623 sw x10, 12(x2) x10:00000000 x2:1c009b50 PA:1c009b5c +76663528ns 1416924 1c00239c c8bff0ef jal x1, -886 x1=1c0023a0 +76663589ns 1416927 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76663629ns 1416929 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +76663649ns 1416930 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76663670ns 1416931 1c002030 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +76663710ns 1416933 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c009db8 PA:1c009dfc +76663750ns 1416935 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +76663771ns 1416936 1c002036 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76663791ns 1416937 1c002038 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76663811ns 1416938 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c009db8 PA:1c009dfc +76663851ns 1416940 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +76663872ns 1416941 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c009db8 PA:1c009dfc +76663892ns 1416942 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c009db8 PA:1c009dfc +76663932ns 1416944 1c002042 00079363 bne x15, x0, 6 x15:00000000 +76663952ns 1416945 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +76664033ns 1416949 1c002048 00008067 jalr x0, x1, 0 x1:1c0023a0 +76664073ns 1416951 1c0023a0 03c12083 lw x1, 60(x2) x1=1c0029a4 x2:1c009b50 PA:1c009b8c +76664094ns 1416952 1c0023a2 03812403 lw x8, 56(x2) x8=1c009c98 x2:1c009b50 PA:1c009b88 +76664114ns 1416953 1c0023a4 00c12503 lw x10, 12(x2) x10=00000000 x2:1c009b50 PA:1c009b5c +76664134ns 1416954 1c0023a6 03412483 lw x9, 52(x2) x9=1c009190 x2:1c009b50 PA:1c009b84 +76664154ns 1416955 1c0023a8 03012903 lw x18, 48(x2) x18=1c009188 x2:1c009b50 PA:1c009b80 +76664174ns 1416956 1c0023aa 02c12983 lw x19, 44(x2) x19=1c009000 x2:1c009b50 PA:1c009b7c +76664195ns 1416957 1c0023ac 02812a03 lw x20, 40(x2) x20=1c00918c x2:1c009b50 PA:1c009b78 +76664215ns 1416958 1c0023ae 02412a83 lw x21, 36(x2) x21=a5a5a5a5 x2:1c009b50 PA:1c009b74 +76664235ns 1416959 1c0023b0 02012b03 lw x22, 32(x2) x22=a5a5a5a5 x2:1c009b50 PA:1c009b70 +76664255ns 1416960 1c0023b2 01c12b83 lw x23, 28(x2) x23=a5a5a5a5 x2:1c009b50 PA:1c009b6c +76664275ns 1416961 1c0023b4 04010113 addi x2, x2, 64 x2=1c009b90 x2:1c009b50 +76664296ns 1416962 1c0023b6 00008067 jalr x0, x1, 0 x1:1c0029a4 +76664336ns 1416964 1c0029a4 01c12083 lw x1, 28(x2) x1=1c0034a0 x2:1c009b90 PA:1c009bac +76664356ns 1416965 1c0029a6 02010113 addi x2, x2, 32 x2=1c009bb0 x2:1c009b90 +76664376ns 1416966 1c0029a8 9a5ff06f jal x0, -1628 +76664417ns 1416968 1c00234c fc010113 addi x2, x2, -64 x2=1c009b70 x2:1c009bb0 +76664437ns 1416969 1c00234e 02812c23 sw x8, 56(x2) x8:1c009c98 x2:1c009b70 PA:1c009ba8 +76664457ns 1416970 1c002350 d6818413 addi x8, x3, -664 x8=1c009144 x3:1c0093dc +76664477ns 1416971 1c002354 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +76664497ns 1416972 1c002356 02112e23 sw x1, 60(x2) x1:1c0034a0 x2:1c009b70 PA:1c009bac +76664518ns 1416973 1c002358 02912a23 sw x9, 52(x2) x9:1c009190 x2:1c009b70 PA:1c009ba4 +76664538ns 1416974 1c00235a 03212823 sw x18, 48(x2) x18:1c009188 x2:1c009b70 PA:1c009ba0 +76664558ns 1416975 1c00235c 03312623 sw x19, 44(x2) x19:1c009000 x2:1c009b70 PA:1c009b9c +76664578ns 1416976 1c00235e 03412423 sw x20, 40(x2) x20:1c00918c x2:1c009b70 PA:1c009b98 +76664598ns 1416977 1c002360 03512223 sw x21, 36(x2) x21:a5a5a5a5 x2:1c009b70 PA:1c009b94 +76664619ns 1416978 1c002362 03612023 sw x22, 32(x2) x22:a5a5a5a5 x2:1c009b70 PA:1c009b90 +76664639ns 1416979 1c002364 01712e23 sw x23, 28(x2) x23:a5a5a5a5 x2:1c009b70 PA:1c009b8c +76664659ns 1416980 1c002366 02079263 bne x15, x0, 36 x15:00000001 +76664740ns 1416984 1c00238a c83ff0ef jal x1, -894 x1=1c00238e +76664780ns 1416986 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +76664861ns 1416990 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76664901ns 1416992 1c002014 00078863 beq x15, x0, 16 x15:00000001 +76664922ns 1416993 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76664942ns 1416994 1c00201a 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76664962ns 1416995 1c00201c 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76664982ns 1416996 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c009db8 PA:1c009dfc +76665022ns 1416998 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76665043ns 1416999 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c009db8 PA:1c009dfc +76665063ns 1417000 1c002024 00008067 jalr x0, x1, 0 x1:1c00238e +76665103ns 1417002 1c00238e 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +76665144ns 1417004 1c002390 fff78793 addi x15, x15, -1 x15=00000000 x15:00000001 +76665164ns 1417005 1c002392 00f42023 sw x15, 0(x8) x15:00000000 x8:1c009144 PA:1c009144 +76665184ns 1417006 1c002394 00042783 lw x15, 0(x8) x15=00000000 x8:1c009144 PA:1c009144 +76665224ns 1417008 1c002396 02078163 beq x15, x0, 34 x15:00000000 +76665285ns 1417011 1c0023b8 d601a783 lw x15, -672(x3) x15=00000003 x3:1c0093dc PA:1c00913c +76665325ns 1417013 1c0023bc fc078ee3 beq x15, x0, -36 x15:00000003 +76665346ns 1417014 1c0023be 1c009937 lui x18, 0x1c009000 x18=1c009000 +76665366ns 1417015 1c0023c2 00000413 addi x8, x0, 0 x8=00000000 +76665386ns 1417016 1c0023c4 93818493 addi x9, x3, -1736 x9=1c008d14 x3:1c0093dc +76665406ns 1417017 1c0023c8 00100993 addi x19, x0, 1 x19=00000001 +76665426ns 1417018 1c0023ca c8890913 addi x18, x18, -888 x18=1c008c88 x18:1c009000 +76665447ns 1417019 1c0023ce 01400a93 addi x21, x0, 20 x21=00000014 +76665467ns 1417020 1c0023d0 04c0006f jal x0, 76 +76665507ns 1417022 1c00241c 0004a783 lw x15, 0(x9) x15=00000000 x9:1c008d14 PA:1c008d14 +76665547ns 1417024 1c00241e fa079ae3 bne x15, x0, -76 x15:00000000 +76665568ns 1417025 1c002420 00040363 beq x8, x0, 6 x8:00000000 +76665648ns 1417029 1c002426 d8018713 addi x14, x3, -640 x14=1c00915c x3:1c0093dc +76665669ns 1417030 1c00242a 00072483 lw x9, 0(x14) x9=00000000 x14:1c00915c PA:1c00915c +76665689ns 1417031 1c00242c d8018413 addi x8, x3, -640 x8=1c00915c x3:1c0093dc +76665709ns 1417032 1c002430 00048d63 beq x9, x0, 26 x9:00000000 +76665790ns 1417036 1c00244a d8c1a783 lw x15, -628(x3) x15=00000000 x3:1c0093dc PA:1c009168 +76665830ns 1417038 1c00244e f40785e3 beq x15, x0, -182 x15:00000000 +76665891ns 1417041 1c002398 00000513 addi x10, x0, 0 x10=00000000 +76665911ns 1417042 1c00239a 00a12623 sw x10, 12(x2) x10:00000000 x2:1c009b70 PA:1c009b7c +76665931ns 1417043 1c00239c c8bff0ef jal x1, -886 x1=1c0023a0 +76665992ns 1417046 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76666032ns 1417048 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +76666052ns 1417049 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76666072ns 1417050 1c002030 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +76666113ns 1417052 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c009db8 PA:1c009dfc +76666153ns 1417054 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +76666173ns 1417055 1c002036 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76666194ns 1417056 1c002038 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76666214ns 1417057 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c009db8 PA:1c009dfc +76666254ns 1417059 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +76666274ns 1417060 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c009db8 PA:1c009dfc +76666295ns 1417061 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c009db8 PA:1c009dfc +76666335ns 1417063 1c002042 00079363 bne x15, x0, 6 x15:00000000 +76666355ns 1417064 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +76666436ns 1417068 1c002048 00008067 jalr x0, x1, 0 x1:1c0023a0 +76666476ns 1417070 1c0023a0 03c12083 lw x1, 60(x2) x1=1c0034a0 x2:1c009b70 PA:1c009bac +76666496ns 1417071 1c0023a2 03812403 lw x8, 56(x2) x8=1c009c98 x2:1c009b70 PA:1c009ba8 +76666517ns 1417072 1c0023a4 00c12503 lw x10, 12(x2) x10=00000000 x2:1c009b70 PA:1c009b7c +76666537ns 1417073 1c0023a6 03412483 lw x9, 52(x2) x9=1c009190 x2:1c009b70 PA:1c009ba4 +76666557ns 1417074 1c0023a8 03012903 lw x18, 48(x2) x18=1c009188 x2:1c009b70 PA:1c009ba0 +76666577ns 1417075 1c0023aa 02c12983 lw x19, 44(x2) x19=1c009000 x2:1c009b70 PA:1c009b9c +76666597ns 1417076 1c0023ac 02812a03 lw x20, 40(x2) x20=1c00918c x2:1c009b70 PA:1c009b98 +76666618ns 1417077 1c0023ae 02412a83 lw x21, 36(x2) x21=a5a5a5a5 x2:1c009b70 PA:1c009b94 +76666638ns 1417078 1c0023b0 02012b03 lw x22, 32(x2) x22=a5a5a5a5 x2:1c009b70 PA:1c009b90 +76666658ns 1417079 1c0023b2 01c12b83 lw x23, 28(x2) x23=a5a5a5a5 x2:1c009b70 PA:1c009b8c +76666678ns 1417080 1c0023b4 04010113 addi x2, x2, 64 x2=1c009bb0 x2:1c009b70 +76666698ns 1417081 1c0023b6 00008067 jalr x0, x1, 0 x1:1c0034a0 +76666739ns 1417083 1c0034a0 02042c23 sw x0, 56(x8) x8:1c009c98 PA:1c009cd0 +76666759ns 1417084 1c0034a4 02042e23 sw x0, 60(x8) x8:1c009c98 PA:1c009cd4 +76666779ns 1417085 1c0034a8 02042a23 sw x0, 52(x8) x8:1c009c98 PA:1c009ccc +76666799ns 1417086 1c0034ac 00c12083 lw x1, 12(x2) x1=1c0036e2 x2:1c009bb0 PA:1c009bbc +76666820ns 1417087 1c0034ae 00812403 lw x8, 8(x2) x8=00000000 x2:1c009bb0 PA:1c009bb8 +76666840ns 1417088 1c0034b0 01010113 addi x2, x2, 16 x2=1c009bc0 x2:1c009bb0 +76666860ns 1417089 1c0034b2 00008067 jalr x0, x1, 0 x1:1c0036e2 +76666900ns 1417091 1c0036e2 12010513 addi x10, x2, 288 x10=1c009ce0 x2:1c009bc0 +76666921ns 1417092 1c0036e4 dd3ff0ef jal x1, -558 x1=1c0036e8 +76666961ns 1417094 1c0034b6 ff010113 addi x2, x2, -16 x2=1c009bb0 x2:1c009bc0 +76666981ns 1417095 1c0034b8 00812423 sw x8, 8(x2) x8:00000000 x2:1c009bb0 PA:1c009bb8 +76667001ns 1417096 1c0034ba 00112623 sw x1, 12(x2) x1:1c0036e8 x2:1c009bb0 PA:1c009bbc +76667021ns 1417097 1c0034bc 00a00433 add x8, x0, x10 x8=1c009ce0 x10:1c009ce0 +76667042ns 1417098 1c0034be 04444783 lbu x15, 68(x8) x15=00000001 x8:1c009ce0 PA:1c009d24 +76667082ns 1417100 1c0034c2 01879793 slli x15, x15, 0x18 x15=01000000 x15:00000001 +76667102ns 1417101 1c0034c4 4187d793 srai x15, x15, 0x418 x15=00000001 x15:01000000 +76667122ns 1417102 1c0034c6 00078763 beq x15, x0, 14 x15:00000001 +76667143ns 1417103 1c0034c8 00800533 add x10, x0, x8 x10=1c009ce0 x8:1c009ce0 +76667163ns 1417104 1c0034ca 00812403 lw x8, 8(x2) x8=00000000 x2:1c009bb0 PA:1c009bb8 +76667183ns 1417105 1c0034cc 00c12083 lw x1, 12(x2) x1=1c0036e8 x2:1c009bb0 PA:1c009bbc +76667203ns 1417106 1c0034ce 01010113 addi x2, x2, 16 x2=1c009bc0 x2:1c009bb0 +76667223ns 1417107 1c0034d0 fb3ff06f jal x0, -78 +76667284ns 1417110 1c003482 04750783 lb x15, 71(x10) x15=00000001 x10:1c009ce0 PA:1c009d27 +76667324ns 1417112 1c003486 02078763 beq x15, x0, 46 x15:00000001 +76667345ns 1417113 1c003488 ff010113 addi x2, x2, -16 x2=1c009bb0 x2:1c009bc0 +76667365ns 1417114 1c00348a 00812423 sw x8, 8(x2) x8:00000000 x2:1c009bb0 PA:1c009bb8 +76667385ns 1417115 1c00348c 00112623 sw x1, 12(x2) x1:1c0036e8 x2:1c009bb0 PA:1c009bbc +76667405ns 1417116 1c00348e 00a00433 add x8, x0, x10 x8=1c009ce0 x10:1c009ce0 +76667425ns 1417117 1c003490 040503a3 sb x0, 71(x10) x10:1c009ce0 PA:1c009d27 +76667446ns 1417118 1c003494 03452783 lw x15, 52(x10) x15=1c00c2e0 x10:1c009ce0 PA:1c009d14 +76667486ns 1417120 1c003496 00078b63 beq x15, x0, 22 x15:1c00c2e0 +76667506ns 1417121 1c003498 03452503 lw x10, 52(x10) x10=1c00c2e0 x10:1c009ce0 PA:1c009d14 +76667546ns 1417123 1c00349a 00050763 beq x10, x0, 14 x10:1c00c2e0 +76667567ns 1417124 1c00349c c1cfe0ef jal x1, -7140 x1=1c0034a0 +76667607ns 1417126 1c0018b8 ff010113 addi x2, x2, -16 x2=1c009ba0 x2:1c009bb0 +76667627ns 1417127 1c0018ba 00112623 sw x1, 12(x2) x1:1c0034a0 x2:1c009ba0 PA:1c009bac +76667647ns 1417128 1c0018bc 00812423 sw x8, 8(x2) x8:1c009ce0 x2:1c009ba0 PA:1c009ba8 +76667668ns 1417129 1c0018be 02051163 bne x10, x0, 34 x10:1c00c2e0 +76667728ns 1417132 1c0018e0 00a00433 add x8, x0, x10 x8=1c00c2e0 x10:1c00c2e0 +76667748ns 1417133 1c0018e2 fa9ff0ef jal x1, -88 x1=1c0018e4 +76667809ns 1417136 1c00188a 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76667829ns 1417137 1c00188e c4878693 addi x13, x15, -952 x13=1c008c48 x15:1c009000 +76667849ns 1417138 1c001892 00000713 addi x14, x0, 0 x14=00000000 +76667870ns 1417139 1c001894 c4878793 addi x15, x15, -952 x15=1c008c48 x15:1c009000 +76667890ns 1417140 1c001898 00800613 addi x12, x0, 8 x12=00000008 +76667910ns 1417141 1c00189a 0046a583 lw x11, 4(x13) x11=1c00ad20 x13:1c008c48 PA:1c008c4c +76667950ns 1417143 1c00189c 00a59963 bne x11, x10, 18 x11:1c00ad20 x10:1c00c2e0 +76668011ns 1417146 1c0018ae 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76668031ns 1417147 1c0018b0 00868693 addi x13, x13, 8 x13=1c008c50 x13:1c008c48 +76668051ns 1417148 1c0018b2 fec714e3 bne x14, x12, -24 x14:00000001 x12:00000008 +76668112ns 1417151 1c00189a 0046a583 lw x11, 4(x13) x11=00000000 x13:1c008c50 PA:1c008c54 +76668152ns 1417153 1c00189c 00a59963 bne x11, x10, 18 x11:00000000 x10:1c00c2e0 +76668213ns 1417156 1c0018ae 00170713 addi x14, x14, 1 x14=00000002 x14:00000001 +76668233ns 1417157 1c0018b0 00868693 addi x13, x13, 8 x13=1c008c58 x13:1c008c50 +76668253ns 1417158 1c0018b2 fec714e3 bne x14, x12, -24 x14:00000002 x12:00000008 +76668314ns 1417161 1c00189a 0046a583 lw x11, 4(x13) x11=00000000 x13:1c008c58 PA:1c008c5c +76668354ns 1417163 1c00189c 00a59963 bne x11, x10, 18 x11:00000000 x10:1c00c2e0 +76668415ns 1417166 1c0018ae 00170713 addi x14, x14, 1 x14=00000003 x14:00000002 +76668435ns 1417167 1c0018b0 00868693 addi x13, x13, 8 x13=1c008c60 x13:1c008c58 +76668455ns 1417168 1c0018b2 fec714e3 bne x14, x12, -24 x14:00000003 x12:00000008 +76668516ns 1417171 1c00189a 0046a583 lw x11, 4(x13) x11=00000000 x13:1c008c60 PA:1c008c64 +76668556ns 1417173 1c00189c 00a59963 bne x11, x10, 18 x11:00000000 x10:1c00c2e0 +76668617ns 1417176 1c0018ae 00170713 addi x14, x14, 1 x14=00000004 x14:00000003 +76668637ns 1417177 1c0018b0 00868693 addi x13, x13, 8 x13=1c008c68 x13:1c008c60 +76668657ns 1417178 1c0018b2 fec714e3 bne x14, x12, -24 x14:00000004 x12:00000008 +76668718ns 1417181 1c00189a 0046a583 lw x11, 4(x13) x11=00000000 x13:1c008c68 PA:1c008c6c +76668758ns 1417183 1c00189c 00a59963 bne x11, x10, 18 x11:00000000 x10:1c00c2e0 +76668819ns 1417186 1c0018ae 00170713 addi x14, x14, 1 x14=00000005 x14:00000004 +76668839ns 1417187 1c0018b0 00868693 addi x13, x13, 8 x13=1c008c70 x13:1c008c68 +76668859ns 1417188 1c0018b2 fec714e3 bne x14, x12, -24 x14:00000005 x12:00000008 +76668920ns 1417191 1c00189a 0046a583 lw x11, 4(x13) x11=00000000 x13:1c008c70 PA:1c008c74 +76668960ns 1417193 1c00189c 00a59963 bne x11, x10, 18 x11:00000000 x10:1c00c2e0 +76669020ns 1417196 1c0018ae 00170713 addi x14, x14, 1 x14=00000006 x14:00000005 +76669041ns 1417197 1c0018b0 00868693 addi x13, x13, 8 x13=1c008c78 x13:1c008c70 +76669061ns 1417198 1c0018b2 fec714e3 bne x14, x12, -24 x14:00000006 x12:00000008 +76669121ns 1417201 1c00189a 0046a583 lw x11, 4(x13) x11=00000000 x13:1c008c78 PA:1c008c7c +76669162ns 1417203 1c00189c 00a59963 bne x11, x10, 18 x11:00000000 x10:1c00c2e0 +76669222ns 1417206 1c0018ae 00170713 addi x14, x14, 1 x14=00000007 x14:00000006 +76669243ns 1417207 1c0018b0 00868693 addi x13, x13, 8 x13=1c008c80 x13:1c008c78 +76669263ns 1417208 1c0018b2 fec714e3 bne x14, x12, -24 x14:00000007 x12:00000008 +76669323ns 1417211 1c00189a 0046a583 lw x11, 4(x13) x11=00000000 x13:1c008c80 PA:1c008c84 +76669364ns 1417213 1c00189c 00a59963 bne x11, x10, 18 x11:00000000 x10:1c00c2e0 +76669424ns 1417216 1c0018ae 00170713 addi x14, x14, 1 x14=00000008 x14:00000007 +76669445ns 1417217 1c0018b0 00868693 addi x13, x13, 8 x13=1c008c88 x13:1c008c80 +76669465ns 1417218 1c0018b2 fec714e3 bne x14, x12, -24 x14:00000008 x12:00000008 +76669485ns 1417219 1c0018b6 00008067 jalr x0, x1, 0 x1:1c0018e4 +76669525ns 1417221 1c0018e4 00800533 add x10, x0, x8 x10=1c00c2e0 x8:1c00c2e0 +76669545ns 1417222 1c0018e6 00812403 lw x8, 8(x2) x8=1c009ce0 x2:1c009ba0 PA:1c009ba8 +76669566ns 1417223 1c0018e8 00c12083 lw x1, 12(x2) x1=1c0034a0 x2:1c009ba0 PA:1c009bac +76669586ns 1417224 1c0018ea 01010113 addi x2, x2, 16 x2=1c009bb0 x2:1c009ba0 +76669606ns 1417225 1c0018ec 0a60106f jal x0, 4262 +76669646ns 1417227 1c002992 fe010113 addi x2, x2, -32 x2=1c009b90 x2:1c009bb0 +76669667ns 1417228 1c002994 00112e23 sw x1, 28(x2) x1:1c0034a0 x2:1c009b90 PA:1c009bac +76669687ns 1417229 1c002996 00a12623 sw x10, 12(x2) x10:1c00c2e0 x2:1c009b90 PA:1c009b9c +76669707ns 1417230 1c002998 00050a63 beq x10, x0, 20 x10:1c00c2e0 +76669727ns 1417231 1c00299a 87cff0ef jal x1, -3972 x1=1c00299e +76669788ns 1417234 1c001a16 d6818793 addi x15, x3, -664 x15=1c009144 x3:1c0093dc +76669808ns 1417235 1c001a1a 0007a703 lw x14, 0(x15) x14=00000000 x15:1c009144 PA:1c009144 +76669848ns 1417237 1c001a1c 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76669869ns 1417238 1c001a1e 00e7a023 sw x14, 0(x15) x14:00000001 x15:1c009144 PA:1c009144 +76669889ns 1417239 1c001a20 00008067 jalr x0, x1, 0 x1:1c00299e +76669929ns 1417241 1c00299e 00c12503 lw x10, 12(x2) x10=1c00c2e0 x2:1c009b90 PA:1c009b9c +76669949ns 1417242 1c0029a0 775000ef jal x1, 3956 x1=1c0029a4 +76669990ns 1417244 1c003914 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76670010ns 1417245 1c003918 00a005b3 add x11, x0, x10 x11=1c00c2e0 x10:1c00c2e0 +76670030ns 1417246 1c00391a c447a503 lw x10, -956(x15) x10=1c009e10 x15:1c009000 PA:1c008c44 +76670050ns 1417247 1c00391e 0020006f jal x0, 2 +76670091ns 1417249 1c003920 0a058363 beq x11, x0, 166 x11:1c00c2e0 +76670111ns 1417250 1c003922 ffc5a783 lw x15, -4(x11) x15=00000058 x11:1c00c2e0 PA:1c00c2dc +76670131ns 1417251 1c003926 fe010113 addi x2, x2, -32 x2=1c009b70 x2:1c009b90 +76670151ns 1417252 1c003928 00812c23 sw x8, 24(x2) x8:1c009ce0 x2:1c009b70 PA:1c009b88 +76670171ns 1417253 1c00392a 00112e23 sw x1, 28(x2) x1:1c0029a4 x2:1c009b70 PA:1c009b8c +76670192ns 1417254 1c00392c ffc58413 addi x8, x11, -4 x8=1c00c2dc x11:1c00c2e0 +76670212ns 1417255 1c003930 0007d363 bge x15, x0, 6 x15:00000058 +76670272ns 1417258 1c003936 00a12623 sw x10, 12(x2) x10:1c009e10 x2:1c009b70 PA:1c009b7c +76670293ns 1417259 1c003938 92eff0ef jal x1, -3794 x1=1c00393c +76670353ns 1417262 1c002a66 fb1fe06f jal x0, -4176 +76670414ns 1417265 1c001a16 d6818793 addi x15, x3, -664 x15=1c009144 x3:1c0093dc +76670434ns 1417266 1c001a1a 0007a703 lw x14, 0(x15) x14=00000001 x15:1c009144 PA:1c009144 +76670474ns 1417268 1c001a1c 00170713 addi x14, x14, 1 x14=00000002 x14:00000001 +76670495ns 1417269 1c001a1e 00e7a023 sw x14, 0(x15) x14:00000002 x15:1c009144 PA:1c009144 +76670515ns 1417270 1c001a20 00008067 jalr x0, x1, 0 x1:1c00393c +76670555ns 1417272 1c00393c db81a783 lw x15, -584(x3) x15=1c00c1d4 x3:1c0093dc PA:1c009194 +76670575ns 1417273 1c003940 00c12503 lw x10, 12(x2) x10=1c009e10 x2:1c009b70 PA:1c009b7c +76670595ns 1417274 1c003942 00e00633 add x12, x0, x14 x12=00000002 x14:00000002 +76670616ns 1417275 1c003944 00079a63 bne x15, x0, 20 x15:1c00c1d4 +76670676ns 1417278 1c003958 00f47f63 bgeu x8, x15, 30 x8:1c00c2dc x15:1c00c1d4 +76670737ns 1417281 1c003976 00f00733 add x14, x0, x15 x14=1c00c1d4 x15:1c00c1d4 +76670757ns 1417282 1c003978 0047a783 lw x15, 4(x15) x15=00000000 x15:1c00c1d4 PA:1c00c1d8 +76670797ns 1417284 1c00397a 00078363 beq x15, x0, 6 x15:00000000 +76670858ns 1417287 1c003980 00072683 lw x13, 0(x14) x13=00000108 x14:1c00c1d4 PA:1c00c1d4 +76670898ns 1417289 1c003982 00d70633 add x12, x14, x13 x12=1c00c2dc x14:1c00c1d4 x13:00000108 +76670919ns 1417290 1c003986 00861f63 bne x12, x8, 30 x12:1c00c2dc x8:1c00c2dc +76670939ns 1417291 1c00398a 00042603 lw x12, 0(x8) x12=00000058 x8:1c00c2dc PA:1c00c2dc +76670979ns 1417293 1c00398c 00c686b3 add x13, x13, x12 x13=00000160 x13:00000108 x12:00000058 +76670999ns 1417294 1c00398e 00d72023 sw x13, 0(x14) x13:00000160 x14:1c00c1d4 PA:1c00c1d4 +76671019ns 1417295 1c003990 00d70633 add x12, x14, x13 x12=1c00c334 x14:1c00c1d4 x13:00000160 +76671040ns 1417296 1c003994 fac79de3 bne x15, x12, -70 x15:00000000 x12:1c00c334 +76671100ns 1417299 1c00394e 01812403 lw x8, 24(x2) x8=1c009ce0 x2:1c009b70 PA:1c009b88 +76671120ns 1417300 1c003950 01c12083 lw x1, 28(x2) x1=1c0029a4 x2:1c009b70 PA:1c009b8c +76671141ns 1417301 1c003952 02010113 addi x2, x2, 32 x2=1c009b90 x2:1c009b70 +76671161ns 1417302 1c003954 916ff06f jal x0, -3818 +76671221ns 1417305 1c002a6a 8e3ff06f jal x0, -1822 +76671262ns 1417307 1c00234c fc010113 addi x2, x2, -64 x2=1c009b50 x2:1c009b90 +76671282ns 1417308 1c00234e 02812c23 sw x8, 56(x2) x8:1c009ce0 x2:1c009b50 PA:1c009b88 +76671302ns 1417309 1c002350 d6818413 addi x8, x3, -664 x8=1c009144 x3:1c0093dc +76671322ns 1417310 1c002354 00042783 lw x15, 0(x8) x15=00000002 x8:1c009144 PA:1c009144 +76671343ns 1417311 1c002356 02112e23 sw x1, 60(x2) x1:1c0029a4 x2:1c009b50 PA:1c009b8c +76671363ns 1417312 1c002358 02912a23 sw x9, 52(x2) x9:1c009190 x2:1c009b50 PA:1c009b84 +76671383ns 1417313 1c00235a 03212823 sw x18, 48(x2) x18:1c009188 x2:1c009b50 PA:1c009b80 +76671403ns 1417314 1c00235c 03312623 sw x19, 44(x2) x19:1c009000 x2:1c009b50 PA:1c009b7c +76671423ns 1417315 1c00235e 03412423 sw x20, 40(x2) x20:1c00918c x2:1c009b50 PA:1c009b78 +76671444ns 1417316 1c002360 03512223 sw x21, 36(x2) x21:a5a5a5a5 x2:1c009b50 PA:1c009b74 +76671464ns 1417317 1c002362 03612023 sw x22, 32(x2) x22:a5a5a5a5 x2:1c009b50 PA:1c009b70 +76671484ns 1417318 1c002364 01712e23 sw x23, 28(x2) x23:a5a5a5a5 x2:1c009b50 PA:1c009b6c +76671504ns 1417319 1c002366 02079263 bne x15, x0, 36 x15:00000002 +76671585ns 1417323 1c00238a c83ff0ef jal x1, -894 x1=1c00238e +76671625ns 1417325 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +76671706ns 1417329 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76671746ns 1417331 1c002014 00078863 beq x15, x0, 16 x15:00000001 +76671767ns 1417332 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76671787ns 1417333 1c00201a 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76671807ns 1417334 1c00201c 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76671827ns 1417335 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c009db8 PA:1c009dfc +76671868ns 1417337 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76671888ns 1417338 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c009db8 PA:1c009dfc +76671908ns 1417339 1c002024 00008067 jalr x0, x1, 0 x1:1c00238e +76671948ns 1417341 1c00238e 00042783 lw x15, 0(x8) x15=00000002 x8:1c009144 PA:1c009144 +76671989ns 1417343 1c002390 fff78793 addi x15, x15, -1 x15=00000001 x15:00000002 +76672009ns 1417344 1c002392 00f42023 sw x15, 0(x8) x15:00000001 x8:1c009144 PA:1c009144 +76672029ns 1417345 1c002394 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +76672069ns 1417347 1c002396 02078163 beq x15, x0, 34 x15:00000001 +76672090ns 1417348 1c002398 00000513 addi x10, x0, 0 x10=00000000 +76672110ns 1417349 1c00239a 00a12623 sw x10, 12(x2) x10:00000000 x2:1c009b50 PA:1c009b5c +76672130ns 1417350 1c00239c c8bff0ef jal x1, -886 x1=1c0023a0 +76672191ns 1417353 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76672231ns 1417355 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +76672251ns 1417356 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76672271ns 1417357 1c002030 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +76672312ns 1417359 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c009db8 PA:1c009dfc +76672352ns 1417361 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +76672372ns 1417362 1c002036 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76672393ns 1417363 1c002038 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76672413ns 1417364 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c009db8 PA:1c009dfc +76672453ns 1417366 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +76672473ns 1417367 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c009db8 PA:1c009dfc +76672494ns 1417368 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c009db8 PA:1c009dfc +76672534ns 1417370 1c002042 00079363 bne x15, x0, 6 x15:00000000 +76672554ns 1417371 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +76672635ns 1417375 1c002048 00008067 jalr x0, x1, 0 x1:1c0023a0 +76672675ns 1417377 1c0023a0 03c12083 lw x1, 60(x2) x1=1c0029a4 x2:1c009b50 PA:1c009b8c +76672695ns 1417378 1c0023a2 03812403 lw x8, 56(x2) x8=1c009ce0 x2:1c009b50 PA:1c009b88 +76672716ns 1417379 1c0023a4 00c12503 lw x10, 12(x2) x10=00000000 x2:1c009b50 PA:1c009b5c +76672736ns 1417380 1c0023a6 03412483 lw x9, 52(x2) x9=1c009190 x2:1c009b50 PA:1c009b84 +76672756ns 1417381 1c0023a8 03012903 lw x18, 48(x2) x18=1c009188 x2:1c009b50 PA:1c009b80 +76672776ns 1417382 1c0023aa 02c12983 lw x19, 44(x2) x19=1c009000 x2:1c009b50 PA:1c009b7c +76672796ns 1417383 1c0023ac 02812a03 lw x20, 40(x2) x20=1c00918c x2:1c009b50 PA:1c009b78 +76672817ns 1417384 1c0023ae 02412a83 lw x21, 36(x2) x21=a5a5a5a5 x2:1c009b50 PA:1c009b74 +76672837ns 1417385 1c0023b0 02012b03 lw x22, 32(x2) x22=a5a5a5a5 x2:1c009b50 PA:1c009b70 +76672857ns 1417386 1c0023b2 01c12b83 lw x23, 28(x2) x23=a5a5a5a5 x2:1c009b50 PA:1c009b6c +76672877ns 1417387 1c0023b4 04010113 addi x2, x2, 64 x2=1c009b90 x2:1c009b50 +76672897ns 1417388 1c0023b6 00008067 jalr x0, x1, 0 x1:1c0029a4 +76672938ns 1417390 1c0029a4 01c12083 lw x1, 28(x2) x1=1c0034a0 x2:1c009b90 PA:1c009bac +76672958ns 1417391 1c0029a6 02010113 addi x2, x2, 32 x2=1c009bb0 x2:1c009b90 +76672978ns 1417392 1c0029a8 9a5ff06f jal x0, -1628 +76673019ns 1417394 1c00234c fc010113 addi x2, x2, -64 x2=1c009b70 x2:1c009bb0 +76673039ns 1417395 1c00234e 02812c23 sw x8, 56(x2) x8:1c009ce0 x2:1c009b70 PA:1c009ba8 +76673059ns 1417396 1c002350 d6818413 addi x8, x3, -664 x8=1c009144 x3:1c0093dc +76673079ns 1417397 1c002354 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +76673099ns 1417398 1c002356 02112e23 sw x1, 60(x2) x1:1c0034a0 x2:1c009b70 PA:1c009bac +76673119ns 1417399 1c002358 02912a23 sw x9, 52(x2) x9:1c009190 x2:1c009b70 PA:1c009ba4 +76673140ns 1417400 1c00235a 03212823 sw x18, 48(x2) x18:1c009188 x2:1c009b70 PA:1c009ba0 +76673160ns 1417401 1c00235c 03312623 sw x19, 44(x2) x19:1c009000 x2:1c009b70 PA:1c009b9c +76673180ns 1417402 1c00235e 03412423 sw x20, 40(x2) x20:1c00918c x2:1c009b70 PA:1c009b98 +76673200ns 1417403 1c002360 03512223 sw x21, 36(x2) x21:a5a5a5a5 x2:1c009b70 PA:1c009b94 +76673220ns 1417404 1c002362 03612023 sw x22, 32(x2) x22:a5a5a5a5 x2:1c009b70 PA:1c009b90 +76673241ns 1417405 1c002364 01712e23 sw x23, 28(x2) x23:a5a5a5a5 x2:1c009b70 PA:1c009b8c +76673261ns 1417406 1c002366 02079263 bne x15, x0, 36 x15:00000001 +76673342ns 1417410 1c00238a c83ff0ef jal x1, -894 x1=1c00238e +76673382ns 1417412 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +76673463ns 1417416 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76673503ns 1417418 1c002014 00078863 beq x15, x0, 16 x15:00000001 +76673523ns 1417419 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76673543ns 1417420 1c00201a 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76673564ns 1417421 1c00201c 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76673604ns 1417423 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c009db8 PA:1c009dfc +76673644ns 1417425 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76673665ns 1417426 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c009db8 PA:1c009dfc +76673685ns 1417427 1c002024 00008067 jalr x0, x1, 0 x1:1c00238e +76673725ns 1417429 1c00238e 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +76673766ns 1417431 1c002390 fff78793 addi x15, x15, -1 x15=00000000 x15:00000001 +76673786ns 1417432 1c002392 00f42023 sw x15, 0(x8) x15:00000000 x8:1c009144 PA:1c009144 +76673806ns 1417433 1c002394 00042783 lw x15, 0(x8) x15=00000000 x8:1c009144 PA:1c009144 +76673846ns 1417435 1c002396 02078163 beq x15, x0, 34 x15:00000000 +76673907ns 1417438 1c0023b8 d601a783 lw x15, -672(x3) x15=00000003 x3:1c0093dc PA:1c00913c +76673947ns 1417440 1c0023bc fc078ee3 beq x15, x0, -36 x15:00000003 +76673968ns 1417441 1c0023be 1c009937 lui x18, 0x1c009000 x18=1c009000 +76673988ns 1417442 1c0023c2 00000413 addi x8, x0, 0 x8=00000000 +76674008ns 1417443 1c0023c4 93818493 addi x9, x3, -1736 x9=1c008d14 x3:1c0093dc +76674028ns 1417444 1c0023c8 00100993 addi x19, x0, 1 x19=00000001 +76674048ns 1417445 1c0023ca c8890913 addi x18, x18, -888 x18=1c008c88 x18:1c009000 +76674068ns 1417446 1c0023ce 01400a93 addi x21, x0, 20 x21=00000014 +76674089ns 1417447 1c0023d0 04c0006f jal x0, 76 +76674129ns 1417449 1c00241c 0004a783 lw x15, 0(x9) x15=00000000 x9:1c008d14 PA:1c008d14 +76674169ns 1417451 1c00241e fa079ae3 bne x15, x0, -76 x15:00000000 +76674190ns 1417452 1c002420 00040363 beq x8, x0, 6 x8:00000000 +76674270ns 1417456 1c002426 d8018713 addi x14, x3, -640 x14=1c00915c x3:1c0093dc +76674291ns 1417457 1c00242a 00072483 lw x9, 0(x14) x9=00000000 x14:1c00915c PA:1c00915c +76674311ns 1417458 1c00242c d8018413 addi x8, x3, -640 x8=1c00915c x3:1c0093dc +76674331ns 1417459 1c002430 00048d63 beq x9, x0, 26 x9:00000000 +76674412ns 1417463 1c00244a d8c1a783 lw x15, -628(x3) x15=00000000 x3:1c0093dc PA:1c009168 +76674452ns 1417465 1c00244e f40785e3 beq x15, x0, -182 x15:00000000 +76674513ns 1417468 1c002398 00000513 addi x10, x0, 0 x10=00000000 +76674533ns 1417469 1c00239a 00a12623 sw x10, 12(x2) x10:00000000 x2:1c009b70 PA:1c009b7c +76674553ns 1417470 1c00239c c8bff0ef jal x1, -886 x1=1c0023a0 +76674614ns 1417473 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76674654ns 1417475 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +76674674ns 1417476 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76674694ns 1417477 1c002030 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +76674735ns 1417479 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c009db8 PA:1c009dfc +76674775ns 1417481 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +76674795ns 1417482 1c002036 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76674816ns 1417483 1c002038 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76674836ns 1417484 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c009db8 PA:1c009dfc +76674876ns 1417486 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +76674896ns 1417487 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c009db8 PA:1c009dfc +76674917ns 1417488 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c009db8 PA:1c009dfc +76674957ns 1417490 1c002042 00079363 bne x15, x0, 6 x15:00000000 +76674977ns 1417491 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +76675058ns 1417495 1c002048 00008067 jalr x0, x1, 0 x1:1c0023a0 +76675098ns 1417497 1c0023a0 03c12083 lw x1, 60(x2) x1=1c0034a0 x2:1c009b70 PA:1c009bac +76675118ns 1417498 1c0023a2 03812403 lw x8, 56(x2) x8=1c009ce0 x2:1c009b70 PA:1c009ba8 +76675139ns 1417499 1c0023a4 00c12503 lw x10, 12(x2) x10=00000000 x2:1c009b70 PA:1c009b7c +76675159ns 1417500 1c0023a6 03412483 lw x9, 52(x2) x9=1c009190 x2:1c009b70 PA:1c009ba4 +76675179ns 1417501 1c0023a8 03012903 lw x18, 48(x2) x18=1c009188 x2:1c009b70 PA:1c009ba0 +76675199ns 1417502 1c0023aa 02c12983 lw x19, 44(x2) x19=1c009000 x2:1c009b70 PA:1c009b9c +76675219ns 1417503 1c0023ac 02812a03 lw x20, 40(x2) x20=1c00918c x2:1c009b70 PA:1c009b98 +76675240ns 1417504 1c0023ae 02412a83 lw x21, 36(x2) x21=a5a5a5a5 x2:1c009b70 PA:1c009b94 +76675260ns 1417505 1c0023b0 02012b03 lw x22, 32(x2) x22=a5a5a5a5 x2:1c009b70 PA:1c009b90 +76675280ns 1417506 1c0023b2 01c12b83 lw x23, 28(x2) x23=a5a5a5a5 x2:1c009b70 PA:1c009b8c +76675300ns 1417507 1c0023b4 04010113 addi x2, x2, 64 x2=1c009bb0 x2:1c009b70 +76675320ns 1417508 1c0023b6 00008067 jalr x0, x1, 0 x1:1c0034a0 +76675361ns 1417510 1c0034a0 02042c23 sw x0, 56(x8) x8:1c009ce0 PA:1c009d18 +76675381ns 1417511 1c0034a4 02042e23 sw x0, 60(x8) x8:1c009ce0 PA:1c009d1c +76675401ns 1417512 1c0034a8 02042a23 sw x0, 52(x8) x8:1c009ce0 PA:1c009d14 +76675421ns 1417513 1c0034ac 00c12083 lw x1, 12(x2) x1=1c0036e8 x2:1c009bb0 PA:1c009bbc +76675442ns 1417514 1c0034ae 00812403 lw x8, 8(x2) x8=00000000 x2:1c009bb0 PA:1c009bb8 +76675462ns 1417515 1c0034b0 01010113 addi x2, x2, 16 x2=1c009bc0 x2:1c009bb0 +76675482ns 1417516 1c0034b2 00008067 jalr x0, x1, 0 x1:1c0036e8 +76675522ns 1417518 1c0036e8 16810513 addi x10, x2, 360 x10=1c009d28 x2:1c009bc0 +76675543ns 1417519 1c0036ea dcdff0ef jal x1, -564 x1=1c0036ee +76675583ns 1417521 1c0034b6 ff010113 addi x2, x2, -16 x2=1c009bb0 x2:1c009bc0 +76675603ns 1417522 1c0034b8 00812423 sw x8, 8(x2) x8:00000000 x2:1c009bb0 PA:1c009bb8 +76675623ns 1417523 1c0034ba 00112623 sw x1, 12(x2) x1:1c0036ee x2:1c009bb0 PA:1c009bbc +76675643ns 1417524 1c0034bc 00a00433 add x8, x0, x10 x8=1c009d28 x10:1c009d28 +76675664ns 1417525 1c0034be 04444783 lbu x15, 68(x8) x15=00000000 x8:1c009d28 PA:1c009d6c +76675704ns 1417527 1c0034c2 01879793 slli x15, x15, 0x18 x15=00000000 x15:00000000 +76675724ns 1417528 1c0034c4 4187d793 srai x15, x15, 0x418 x15=00000000 x15:00000000 +76675744ns 1417529 1c0034c6 00078763 beq x15, x0, 14 x15:00000000 +76675805ns 1417532 1c0034d4 03442783 lw x15, 52(x8) x15=1c00c338 x8:1c009d28 PA:1c009d5c +76675845ns 1417534 1c0034d6 fe0784e3 beq x15, x0, -24 x15:1c00c338 +76675866ns 1417535 1c0034d8 03842783 lw x15, 56(x8) x15=1c00340c x8:1c009d28 PA:1c009d60 +76675886ns 1417536 1c0034da 03442503 lw x10, 52(x8) x10=1c00c338 x8:1c009d28 PA:1c009d5c +76675926ns 1417538 1c0034dc 000780e7 jalr x1, x15, 0 x1=1c0034de x15:1c00340c +76675967ns 1417540 1c00340c fe010113 addi x2, x2, -32 x2=1c009b90 x2:1c009bb0 +76675987ns 1417541 1c00340e 00112e23 sw x1, 28(x2) x1:1c0034de x2:1c009b90 PA:1c009bac +76676007ns 1417542 1c003410 00812c23 sw x8, 24(x2) x8:1c009d28 x2:1c009b90 PA:1c009ba8 +76676027ns 1417543 1c003412 30047473 csrrci x8, 0x00000008, 0x300 x8=00000088 +76676108ns 1417547 1c003416 342027f3 csrrs x15, x0, 0x342 x15=0000000b +76676128ns 1417548 1c00341a 0007dc63 bge x15, x0, 24 x15:0000000b +76676189ns 1417551 1c003432 fff00593 addi x11, x0, -1 x11=ffffffff +76676209ns 1417552 1c003434 9eafe0ef jal x1, -7702 x1=1c003438 +76676249ns 1417554 1c00161e fc010113 addi x2, x2, -64 x2=1c009b50 x2:1c009b90 +76676269ns 1417555 1c001620 02112e23 sw x1, 60(x2) x1:1c003438 x2:1c009b50 PA:1c009b8c +76676290ns 1417556 1c001622 02812c23 sw x8, 56(x2) x8:00000088 x2:1c009b50 PA:1c009b88 +76676310ns 1417557 1c001624 02912a23 sw x9, 52(x2) x9:1c009190 x2:1c009b50 PA:1c009b84 +76676330ns 1417558 1c001626 03212823 sw x18, 48(x2) x18:1c009188 x2:1c009b50 PA:1c009b80 +76676350ns 1417559 1c001628 03312623 sw x19, 44(x2) x19:1c009000 x2:1c009b50 PA:1c009b7c +76676370ns 1417560 1c00162a 03412423 sw x20, 40(x2) x20:1c00918c x2:1c009b50 PA:1c009b78 +76676391ns 1417561 1c00162c 00b12623 sw x11, 12(x2) x11:ffffffff x2:1c009b50 PA:1c009b5c +76676411ns 1417562 1c00162e 02051163 bne x10, x0, 34 x10:1c00c338 +76676471ns 1417565 1c001650 04052783 lw x15, 64(x10) x15=00000000 x10:1c00c338 PA:1c00c378 +76676492ns 1417566 1c001652 00a00433 add x8, x0, x10 x8=1c00c338 x10:1c00c338 +76676512ns 1417567 1c001654 00078c63 beq x15, x0, 24 x15:00000000 +76676572ns 1417570 1c00166c 718000ef jal x1, 1816 x1=1c001670 +76676613ns 1417572 1c001d84 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76676633ns 1417573 1c001d88 00100513 addi x10, x0, 1 x10=00000001 +76676653ns 1417574 1c001d8a 00078663 beq x15, x0, 12 x15:00000001 +76676673ns 1417575 1c001d8c d681a503 lw x10, -664(x3) x10=00000000 x3:1c0093dc PA:1c009144 +76676714ns 1417577 1c001d90 00153513 sltiu x10, x10, 1 x10=00000001 x10:00000000 +76676734ns 1417578 1c001d94 00151513 slli x10, x10, 0x1 x10=00000002 x10:00000001 +76676754ns 1417579 1c001d96 00008067 jalr x0, x1, 0 x1:1c001670 +76676794ns 1417581 1c001670 00a00933 add x18, x0, x10 x18=00000002 x10:00000002 +76676815ns 1417582 1c001672 00051f63 bne x10, x0, 30 x10:00000002 +76676875ns 1417585 1c001690 00000493 addi x9, x0, 0 x9=00000000 +76676895ns 1417586 1c001692 00000913 addi x18, x0, 0 x18=00000000 +76676916ns 1417587 1c001694 fff00993 addi x19, x0, -1 x19=ffffffff +76676936ns 1417588 1c001696 02440a13 addi x20, x8, 36 x20=1c00c35c x8:1c00c338 +76676956ns 1417589 1c00169a 09a0006f jal x0, 154 +76676996ns 1417591 1c001734 0d9000ef jal x1, 2264 x1=1c001738 +76677037ns 1417593 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +76677117ns 1417597 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76677158ns 1417599 1c002014 00078863 beq x15, x0, 16 x15:00000001 +76677178ns 1417600 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76677198ns 1417601 1c00201a 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76677218ns 1417602 1c00201c 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76677239ns 1417603 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c009db8 PA:1c009dfc +76677279ns 1417605 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76677299ns 1417606 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c009db8 PA:1c009dfc +76677319ns 1417607 1c002024 00008067 jalr x0, x1, 0 x1:1c001738 +76677360ns 1417609 1c001738 03842783 lw x15, 56(x8) x15=00000000 x8:1c00c338 PA:1c00c370 +76677400ns 1417611 1c00173a f60781e3 beq x15, x0, -158 x15:00000000 +76677461ns 1417614 1c00169c 00c12783 lw x15, 12(x2) x15=ffffffff x2:1c009b50 PA:1c009b5c +76677501ns 1417616 1c00169e 02079063 bne x15, x0, 32 x15:ffffffff +76677582ns 1417620 1c0016be 00091563 bne x18, x0, 10 x18:00000000 +76677602ns 1417621 1c0016c2 01810513 addi x10, x2, 24 x10=1c009b68 x2:1c009b50 +76677622ns 1417622 1c0016c4 6aa000ef jal x1, 1706 x1=1c0016c8 +76677683ns 1417625 1c001d6e d7c1a783 lw x15, -644(x3) x15=00000000 x3:1c0093dc PA:1c009158 +76677723ns 1417627 1c001d72 00f52023 sw x15, 0(x10) x15:00000000 x10:1c009b68 PA:1c009b68 +76677743ns 1417628 1c001d74 d881a783 lw x15, -632(x3) x15=00000000 x3:1c0093dc PA:1c009164 +76677784ns 1417630 1c001d78 00f52223 sw x15, 4(x10) x15:00000000 x10:1c009b68 PA:1c009b6c +76677804ns 1417631 1c001d7a 00008067 jalr x0, x1, 0 x1:1c0016c8 +76677844ns 1417633 1c0016c8 15f000ef jal x1, 2398 x1=1c0016cc +76677905ns 1417636 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76677945ns 1417638 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +76677966ns 1417639 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76677986ns 1417640 1c002030 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +76678026ns 1417642 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c009db8 PA:1c009dfc +76678067ns 1417644 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +76678087ns 1417645 1c002036 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76678107ns 1417646 1c002038 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76678127ns 1417647 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c009db8 PA:1c009dfc +76678167ns 1417649 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +76678188ns 1417650 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c009db8 PA:1c009dfc +76678208ns 1417651 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c009db8 PA:1c009dfc +76678248ns 1417653 1c002042 00079363 bne x15, x0, 6 x15:00000000 +76678268ns 1417654 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +76678349ns 1417658 1c002048 00008067 jalr x0, x1, 0 x1:1c0016cc +76678390ns 1417660 1c0016cc 34a000ef jal x1, 842 x1=1c0016ce +76678450ns 1417663 1c001a16 d6818793 addi x15, x3, -664 x15=1c009144 x3:1c0093dc +76678470ns 1417664 1c001a1a 0007a703 lw x14, 0(x15) x14=00000000 x15:1c009144 PA:1c009144 +76678511ns 1417666 1c001a1c 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76678531ns 1417667 1c001a1e 00e7a023 sw x14, 0(x15) x14:00000001 x15:1c009144 PA:1c009144 +76678551ns 1417668 1c001a20 00008067 jalr x0, x1, 0 x1:1c0016ce +76678612ns 1417671 1c0016ce 13f000ef jal x1, 2366 x1=1c0016d2 +76678652ns 1417673 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +76678733ns 1417677 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76678773ns 1417679 1c002014 00078863 beq x15, x0, 16 x15:00000001 +76678793ns 1417680 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76678814ns 1417681 1c00201a 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76678834ns 1417682 1c00201c 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76678854ns 1417683 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c009db8 PA:1c009dfc +76678894ns 1417685 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76678915ns 1417686 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c009db8 PA:1c009dfc +76678935ns 1417687 1c002024 00008067 jalr x0, x1, 0 x1:1c0016d2 +76678995ns 1417690 1c0016d2 04444783 lbu x15, 68(x8) x15=000000ff x8:1c00c338 PA:1c00c37c +76679036ns 1417692 1c0016d6 01879793 slli x15, x15, 0x18 x15=ff000000 x15:000000ff +76679056ns 1417693 1c0016d8 4187d793 srai x15, x15, 0x418 x15=ffffffff x15:ff000000 +76679076ns 1417694 1c0016da 01379463 bne x15, x19, 8 x15:ffffffff x19:ffffffff +76679096ns 1417695 1c0016de 04040223 sb x0, 68(x8) x8:1c00c338 PA:1c00c37c +76679116ns 1417696 1c0016e2 04544783 lbu x15, 69(x8) x15=000000ff x8:1c00c338 PA:1c00c37d +76679157ns 1417698 1c0016e6 01879793 slli x15, x15, 0x18 x15=ff000000 x15:000000ff +76679177ns 1417699 1c0016e8 4187d793 srai x15, x15, 0x418 x15=ffffffff x15:ff000000 +76679197ns 1417700 1c0016ea 01379463 bne x15, x19, 8 x15:ffffffff x19:ffffffff +76679217ns 1417701 1c0016ee 040402a3 sb x0, 69(x8) x8:1c00c338 PA:1c00c37d +76679238ns 1417702 1c0016f2 135000ef jal x1, 2356 x1=1c0016f6 +76679298ns 1417705 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76679339ns 1417707 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +76679359ns 1417708 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76679379ns 1417709 1c002030 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +76679419ns 1417711 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c009db8 PA:1c009dfc +76679460ns 1417713 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +76679480ns 1417714 1c002036 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76679500ns 1417715 1c002038 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76679520ns 1417716 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c009db8 PA:1c009dfc +76679561ns 1417718 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +76679581ns 1417719 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c009db8 PA:1c009dfc +76679601ns 1417720 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c009db8 PA:1c009dfc +76679641ns 1417722 1c002042 00079363 bne x15, x0, 6 x15:00000000 +76679662ns 1417723 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +76679742ns 1417727 1c002048 00008067 jalr x0, x1, 0 x1:1c0016f6 +76679783ns 1417729 1c0016f6 00c10593 addi x11, x2, 12 x11=1c009b5c x2:1c009b50 +76679803ns 1417730 1c0016f8 01810513 addi x10, x2, 24 x10=1c009b68 x2:1c009b50 +76679823ns 1417731 1c0016fa 55f000ef jal x1, 3422 x1=1c0016fe +76679864ns 1417733 1c002458 fe010113 addi x2, x2, -32 x2=1c009b30 x2:1c009b50 +76679884ns 1417734 1c00245a 00112e23 sw x1, 28(x2) x1:1c0016fe x2:1c009b30 PA:1c009b4c +76679904ns 1417735 1c00245c 00812c23 sw x8, 24(x2) x8:1c00c338 x2:1c009b30 PA:1c009b48 +76679924ns 1417736 1c00245e 00912a23 sw x9, 20(x2) x9:00000000 x2:1c009b30 PA:1c009b44 +76679944ns 1417737 1c002460 02051263 bne x10, x0, 36 x10:1c009b68 +76680005ns 1417740 1c002484 00b00433 add x8, x0, x11 x8=1c009b5c x11:1c009b5c +76680025ns 1417741 1c002486 00059d63 bne x11, x0, 26 x11:1c009b5c +76680086ns 1417744 1c0024a0 00a004b3 add x9, x0, x10 x9=1c009b68 x10:1c009b68 +76680106ns 1417745 1c0024a2 b6bff0ef jal x1, -1174 x1=1c0024a6 +76680146ns 1417747 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +76680227ns 1417751 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76680267ns 1417753 1c002014 00078863 beq x15, x0, 16 x15:00000001 +76680288ns 1417754 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76680308ns 1417755 1c00201a 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76680328ns 1417756 1c00201c 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76680348ns 1417757 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c009db8 PA:1c009dfc +76680389ns 1417759 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76680409ns 1417760 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c009db8 PA:1c009dfc +76680429ns 1417761 1c002024 00008067 jalr x0, x1, 0 x1:1c0024a6 +76680490ns 1417764 1c0024a6 d5418713 addi x14, x3, -684 x14=1c009130 x3:1c0093dc +76680510ns 1417765 1c0024aa d881a683 lw x13, -632(x3) x13=00000000 x3:1c0093dc PA:1c009164 +76680530ns 1417766 1c0024ae 00072783 lw x15, 0(x14) x15=1c009db8 x14:1c009130 PA:1c009130 +76680570ns 1417768 1c0024b0 4857c783 lbu x15, 1157(x15) x15=00000000 x15:1c009db8 PA:1c00a23d +76680611ns 1417770 1c0024b4 00078663 beq x15, x0, 12 x15:00000000 +76680671ns 1417773 1c0024c0 00042783 lw x15, 0(x8) x15=ffffffff x8:1c009b5c PA:1c009b5c +76680691ns 1417774 1c0024c2 fff00713 addi x14, x0, -1 x14=ffffffff +76680712ns 1417775 1c0024c4 00000513 addi x10, x0, 0 x10=00000000 +76680732ns 1417776 1c0024c6 02e78663 beq x15, x14, 44 x15:ffffffff x14:ffffffff +76680792ns 1417779 1c0024f2 00a12623 sw x10, 12(x2) x10:00000000 x2:1c009b30 PA:1c009b3c +76680813ns 1417780 1c0024f4 b33ff0ef jal x1, -1230 x1=1c0024f8 +76680873ns 1417783 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76680914ns 1417785 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +76680934ns 1417786 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76680954ns 1417787 1c002030 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +76680994ns 1417789 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c009db8 PA:1c009dfc +76681035ns 1417791 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +76681055ns 1417792 1c002036 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76681075ns 1417793 1c002038 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76681095ns 1417794 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c009db8 PA:1c009dfc +76681136ns 1417796 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +76681156ns 1417797 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c009db8 PA:1c009dfc +76681176ns 1417798 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c009db8 PA:1c009dfc +76681216ns 1417800 1c002042 00079363 bne x15, x0, 6 x15:00000000 +76681237ns 1417801 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +76681317ns 1417805 1c002048 00008067 jalr x0, x1, 0 x1:1c0024f8 +76681358ns 1417807 1c0024f8 01c12083 lw x1, 28(x2) x1=1c0016fe x2:1c009b30 PA:1c009b4c +76681378ns 1417808 1c0024fa 01812403 lw x8, 24(x2) x8=1c00c338 x2:1c009b30 PA:1c009b48 +76681398ns 1417809 1c0024fc 00c12503 lw x10, 12(x2) x10=00000000 x2:1c009b30 PA:1c009b3c +76681418ns 1417810 1c0024fe 01412483 lw x9, 20(x2) x9=00000000 x2:1c009b30 PA:1c009b44 +76681439ns 1417811 1c002500 02010113 addi x2, x2, 32 x2=1c009b50 x2:1c009b30 +76681459ns 1417812 1c002502 00008067 jalr x0, x1, 0 x1:1c0016fe +76681499ns 1417814 1c0016fe 08051063 bne x10, x0, 128 x10:00000000 +76681519ns 1417815 1c001700 00800533 add x10, x0, x8 x10=1c00c338 x8:1c00c338 +76681540ns 1417816 1c001702 845ff0ef jal x1, -1980 x1=1c001706 +76681580ns 1417818 1c000f46 ff010113 addi x2, x2, -16 x2=1c009b40 x2:1c009b50 +76681600ns 1417819 1c000f48 00812423 sw x8, 8(x2) x8:1c00c338 x2:1c009b40 PA:1c009b48 +76681620ns 1417820 1c000f4a 00a00433 add x8, x0, x10 x8=1c00c338 x10:1c00c338 +76681640ns 1417821 1c000f4c 00112623 sw x1, 12(x2) x1:1c001706 x2:1c009b40 PA:1c009b4c +76681661ns 1417822 1c000f4e 0be010ef jal x1, 4286 x1=1c000f52 +76681701ns 1417824 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +76681782ns 1417828 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76681822ns 1417830 1c002014 00078863 beq x15, x0, 16 x15:00000001 +76681842ns 1417831 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76681863ns 1417832 1c00201a 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76681883ns 1417833 1c00201c 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76681903ns 1417834 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c009db8 PA:1c009dfc +76681943ns 1417836 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76681964ns 1417837 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c009db8 PA:1c009dfc +76681984ns 1417838 1c002024 00008067 jalr x0, x1, 0 x1:1c000f52 +76682024ns 1417840 1c000f52 03842403 lw x8, 56(x8) x8=00000000 x8:1c00c338 PA:1c00c370 +76682044ns 1417841 1c000f54 0d2010ef jal x1, 4306 x1=1c000f58 +76682105ns 1417844 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76682145ns 1417846 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +76682165ns 1417847 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76682186ns 1417848 1c002030 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +76682226ns 1417850 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c009db8 PA:1c009dfc +76682266ns 1417852 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +76682287ns 1417853 1c002036 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76682307ns 1417854 1c002038 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76682327ns 1417855 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c009db8 PA:1c009dfc +76682367ns 1417857 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +76682388ns 1417858 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c009db8 PA:1c009dfc +76682408ns 1417859 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c009db8 PA:1c009dfc +76682448ns 1417861 1c002042 00079363 bne x15, x0, 6 x15:00000000 +76682468ns 1417862 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +76682549ns 1417866 1c002048 00008067 jalr x0, x1, 0 x1:1c000f58 +76682590ns 1417868 1c000f58 00c12083 lw x1, 12(x2) x1=1c001706 x2:1c009b40 PA:1c009b4c +76682610ns 1417869 1c000f5a 00143513 sltiu x10, x8, 1 x10=00000001 x8:00000000 +76682630ns 1417870 1c000f5e 00812403 lw x8, 8(x2) x8=1c00c338 x2:1c009b40 PA:1c009b48 +76682650ns 1417871 1c000f60 01010113 addi x2, x2, 16 x2=1c009b50 x2:1c009b40 +76682670ns 1417872 1c000f62 00008067 jalr x0, x1, 0 x1:1c001706 +76682711ns 1417874 1c001706 06050663 beq x10, x0, 108 x10:00000001 +76682731ns 1417875 1c001708 00042783 lw x15, 0(x8) x15=1c00c338 x8:1c00c338 PA:1c00c338 +76682771ns 1417877 1c00170a 00079963 bne x15, x0, 18 x15:1c00c338 +76682832ns 1417880 1c00171c 00c12583 lw x11, 12(x2) x11=ffffffff x2:1c009b50 PA:1c009b5c +76682852ns 1417881 1c00171e 01400533 add x10, x0, x20 x10=1c00c35c x20:1c00c35c +76682872ns 1417882 1c001720 526000ef jal x1, 1318 x1=1c001722 +76682913ns 1417884 1c001c46 ff010113 addi x2, x2, -16 x2=1c009b40 x2:1c009b50 +76682933ns 1417885 1c001c48 00112623 sw x1, 12(x2) x1:1c001722 x2:1c009b40 PA:1c009b4c +76682953ns 1417886 1c001c4a 00812423 sw x8, 8(x2) x8:1c00c338 x2:1c009b40 PA:1c009b48 +76682973ns 1417887 1c001c4c 02051263 bne x10, x0, 36 x10:1c00c35c +76683034ns 1417890 1c001c70 00b00433 add x8, x0, x11 x8=ffffffff x11:ffffffff +76683054ns 1417891 1c001c72 d541a583 lw x11, -684(x3) x11=1c009db8 x3:1c0093dc PA:1c009130 +76683094ns 1417893 1c001c76 01858593 addi x11, x11, 24 x11=1c009dd0 x11:1c009db8 +76683115ns 1417894 1c001c78 a80ff0ef jal x1, -3456 x1=1c001c7c +76683155ns 1417896 1c000ef8 0005a683 lw x13, 0(x11) x13=00000004 x11:1c009dd0 PA:1c009dd0 +76683175ns 1417897 1c000efa fff00793 addi x15, x0, -1 x15=ffffffff +76683195ns 1417898 1c000efc 00850713 addi x14, x10, 8 x14=1c00c364 x10:1c00c35c +76683215ns 1417899 1c000f00 00f69d63 bne x13, x15, 26 x13:00000004 x15:ffffffff +76683276ns 1417902 1c000f1a 00e007b3 add x15, x0, x14 x15=1c00c364 x14:1c00c364 +76683296ns 1417903 1c000f1c 00472703 lw x14, 4(x14) x14=1c00c364 x14:1c00c364 PA:1c00c368 +76683337ns 1417905 1c000f1e 00072603 lw x12, 0(x14) x12=ffffffff x14:1c00c364 PA:1c00c364 +76683377ns 1417907 1c000f20 fec6fde3 bgeu x13, x12, -6 x13:00000004 x12:ffffffff +76683397ns 1417908 1c000f24 fe3ff06f jal x0, -30 +76683438ns 1417910 1c000f06 0047a703 lw x14, 4(x15) x14=1c00c364 x15:1c00c364 PA:1c00c368 +76683478ns 1417912 1c000f08 00e5a223 sw x14, 4(x11) x14:1c00c364 x11:1c009dd0 PA:1c009dd4 +76683498ns 1417913 1c000f0a 00b72423 sw x11, 8(x14) x11:1c009dd0 x14:1c00c364 PA:1c00c36c +76683518ns 1417914 1c000f0c 00f5a423 sw x15, 8(x11) x15:1c00c364 x11:1c009dd0 PA:1c009dd8 +76683539ns 1417915 1c000f0e 00b7a223 sw x11, 4(x15) x11:1c009dd0 x15:1c00c364 PA:1c00c368 +76683559ns 1417916 1c000f10 00052783 lw x15, 0(x10) x15=00000000 x10:1c00c35c PA:1c00c35c +76683579ns 1417917 1c000f12 00a5a823 sw x10, 16(x11) x10:1c00c35c x11:1c009dd0 PA:1c009de0 +76683599ns 1417918 1c000f14 00178793 addi x15, x15, 1 x15=00000001 x15:00000000 +76683619ns 1417919 1c000f16 00f52023 sw x15, 0(x10) x15:00000001 x10:1c00c35c PA:1c00c35c +76683639ns 1417920 1c000f18 00008067 jalr x0, x1, 0 x1:1c001c7c +76683680ns 1417922 1c001c7c 00800533 add x10, x0, x8 x10=ffffffff x8:ffffffff +76683700ns 1417923 1c001c7e 00812403 lw x8, 8(x2) x8=1c00c338 x2:1c009b40 PA:1c009b48 +76683720ns 1417924 1c001c80 00c12083 lw x1, 12(x2) x1=1c001722 x2:1c009b40 PA:1c009b4c +76683740ns 1417925 1c001c82 00100593 addi x11, x0, 1 x11=00000001 +76683761ns 1417926 1c001c84 01010113 addi x2, x2, 16 x2=1c009b50 x2:1c009b40 +76683781ns 1417927 1c001c86 cc5ff06f jal x0, -828 +76683821ns 1417929 1c00194a fe010113 addi x2, x2, -32 x2=1c009b30 x2:1c009b50 +76683841ns 1417930 1c00194c 00912a23 sw x9, 20(x2) x9:00000000 x2:1c009b30 PA:1c009b44 +76683862ns 1417931 1c00194e 01312623 sw x19, 12(x2) x19:ffffffff x2:1c009b30 PA:1c009b3c +76683882ns 1417932 1c001950 d881a983 lw x19, -632(x3) x19=00000000 x3:1c0093dc PA:1c009164 +76683902ns 1417933 1c001954 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76683922ns 1417934 1c001958 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +76683942ns 1417935 1c00195a 00812c23 sw x8, 24(x2) x8:1c00c338 x2:1c009b30 PA:1c009b48 +76683963ns 1417936 1c00195c 00a00433 add x8, x0, x10 x8=ffffffff x10:ffffffff +76683983ns 1417937 1c00195e 0007a503 lw x10, 0(x15) x10=1c009db8 x15:1c009130 PA:1c009130 +76684003ns 1417938 1c001960 01212823 sw x18, 16(x2) x18:00000000 x2:1c009b30 PA:1c009b40 +76684023ns 1417939 1c001962 00112e23 sw x1, 28(x2) x1:1c001722 x2:1c009b30 PA:1c009b4c +76684064ns 1417941 1c001964 480702a3 sb x0, 1157(x14) x14:1c009db8 PA:1c00a23d +76684084ns 1417942 1c001968 00450513 addi x10, x10, 4 x10=1c009dbc x10:1c009db8 +76684104ns 1417943 1c00196a 00b00933 add x18, x0, x11 x18=00000001 x11:00000001 +76684124ns 1417944 1c00196c dbaff0ef jal x1, -2630 x1=1c001970 +76684164ns 1417946 1c000f26 00452683 lw x13, 4(x10) x13=1c008ca4 x10:1c009dbc PA:1c009dc0 +76684185ns 1417947 1c000f28 00852703 lw x14, 8(x10) x14=1c008ca4 x10:1c009dbc PA:1c009dc4 +76684205ns 1417948 1c000f2a 01052783 lw x15, 16(x10) x15=1c008c9c x10:1c009dbc PA:1c009dcc +76684225ns 1417949 1c000f2c 00e6a423 sw x14, 8(x13) x14:1c008ca4 x13:1c008ca4 PA:1c008cac +76684245ns 1417950 1c000f2e 00d72223 sw x13, 4(x14) x13:1c008ca4 x14:1c008ca4 PA:1c008ca8 +76684265ns 1417951 1c000f30 0047a683 lw x13, 4(x15) x13=1c009dbc x15:1c008c9c PA:1c008ca0 +76684306ns 1417953 1c000f32 00a69363 bne x13, x10, 6 x13:1c009dbc x10:1c009dbc +76684326ns 1417954 1c000f36 00e7a223 sw x14, 4(x15) x14:1c008ca4 x15:1c008c9c PA:1c008ca0 +76684346ns 1417955 1c000f38 0007a703 lw x14, 0(x15) x14=00000001 x15:1c008c9c PA:1c008c9c +76684366ns 1417956 1c000f3a 00052823 sw x0, 16(x10) x10:1c009dbc PA:1c009dcc +76684387ns 1417957 1c000f3e fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +76684407ns 1417958 1c000f40 00e7a023 sw x14, 0(x15) x14:00000000 x15:1c008c9c PA:1c008c9c +76684427ns 1417959 1c000f42 0007a503 lw x10, 0(x15) x10=00000000 x15:1c008c9c PA:1c008c9c +76684447ns 1417960 1c000f44 00008067 jalr x0, x1, 0 x1:1c001970 +76684488ns 1417962 1c001970 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76684508ns 1417963 1c001974 00051d63 bne x10, x0, 26 x10:00000000 +76684528ns 1417964 1c001976 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +76684548ns 1417965 1c001978 d7018693 addi x13, x3, -656 x13=1c00914c x3:1c0093dc +76684568ns 1417966 1c00197c 02c72583 lw x11, 44(x14) x11=00000001 x14:1c009db8 PA:1c009de4 +76684589ns 1417967 1c00197e 0006a603 lw x12, 0(x13) x12=00000003 x13:1c00914c PA:1c00914c +76684609ns 1417968 1c001980 00100713 addi x14, x0, 1 x14=00000001 +76684629ns 1417969 1c001982 00b71733 sll x14, x14, x11 x14=00000002 x14:00000001 x11:00000001 +76684649ns 1417970 1c001986 fff74713 xori x14, x14, -1 x14=fffffffd x14:00000002 +76684669ns 1417971 1c00198a 00c77733 and x14, x14, x12 x14=00000001 x14:fffffffd x12:00000003 +76684689ns 1417972 1c00198c 00e6a023 sw x14, 0(x13) x14:00000001 x13:1c00914c PA:1c00914c +76684710ns 1417973 1c00198e fff00713 addi x14, x0, -1 x14=ffffffff +76684730ns 1417974 1c001990 02e41063 bne x8, x14, 32 x8:ffffffff x14:ffffffff +76684750ns 1417975 1c001994 00090e63 beq x18, x0, 28 x18:00000001 +76684770ns 1417976 1c001998 0007a583 lw x11, 0(x15) x11=1c009db8 x15:1c009130 PA:1c009130 +76684790ns 1417977 1c00199a 01812403 lw x8, 24(x2) x8=1c00c338 x2:1c009b30 PA:1c009b48 +76684811ns 1417978 1c00199c 01c12083 lw x1, 28(x2) x1=1c001722 x2:1c009b30 PA:1c009b4c +76684831ns 1417979 1c00199e 01412483 lw x9, 20(x2) x9=00000000 x2:1c009b30 PA:1c009b44 +76684851ns 1417980 1c0019a0 01012903 lw x18, 16(x2) x18=00000000 x2:1c009b30 PA:1c009b40 +76684871ns 1417981 1c0019a2 00c12983 lw x19, 12(x2) x19=ffffffff x2:1c009b30 PA:1c009b3c +76684891ns 1417982 1c0019a4 00458593 addi x11, x11, 4 x11=1c009dbc x11:1c009db8 +76684912ns 1417983 1c0019a6 94c18513 addi x10, x3, -1716 x10=1c008d28 x3:1c0093dc +76684932ns 1417984 1c0019aa 02010113 addi x2, x2, 32 x2=1c009b50 x2:1c009b30 +76684952ns 1417985 1c0019ac d34ff06f jal x0, -2764 +76684992ns 1417987 1c000ee0 00452783 lw x15, 4(x10) x15=1c008d30 x10:1c008d28 PA:1c008d2c +76685033ns 1417989 1c000ee2 0087a703 lw x14, 8(x15) x14=1c00b404 x15:1c008d30 PA:1c008d38 +76685053ns 1417990 1c000ee4 00f5a223 sw x15, 4(x11) x15:1c008d30 x11:1c009dbc PA:1c009dc0 +76685073ns 1417991 1c000ee6 00e5a423 sw x14, 8(x11) x14:1c00b404 x11:1c009dbc PA:1c009dc4 +76685093ns 1417992 1c000ee8 0087a703 lw x14, 8(x15) x14=1c00b404 x15:1c008d30 PA:1c008d38 +76685134ns 1417994 1c000eea 00b72223 sw x11, 4(x14) x11:1c009dbc x14:1c00b404 PA:1c00b408 +76685154ns 1417995 1c000eec 00b7a423 sw x11, 8(x15) x11:1c009dbc x15:1c008d30 PA:1c008d38 +76685174ns 1417996 1c000eee 00052783 lw x15, 0(x10) x15=00000001 x10:1c008d28 PA:1c008d28 +76685194ns 1417997 1c000ef0 00a5a823 sw x10, 16(x11) x10:1c008d28 x11:1c009dbc PA:1c009dcc +76685214ns 1417998 1c000ef2 00178793 addi x15, x15, 1 x15=00000002 x15:00000001 +76685235ns 1417999 1c000ef4 00f52023 sw x15, 0(x10) x15:00000002 x10:1c008d28 PA:1c008d28 +76685255ns 1418000 1c000ef6 00008067 jalr x0, x1, 0 x1:1c001722 +76685295ns 1418002 1c001722 00800533 add x10, x0, x8 x10=1c00c338 x8:1c00c338 +76685315ns 1418003 1c001724 8e5ff0ef jal x1, -1820 x1=1c001728 +76685356ns 1418005 1c001008 ff010113 addi x2, x2, -16 x2=1c009b40 x2:1c009b50 +76685376ns 1418006 1c00100a 00812423 sw x8, 8(x2) x8:1c00c338 x2:1c009b40 PA:1c009b48 +76685396ns 1418007 1c00100c 00a00433 add x8, x0, x10 x8=1c00c338 x10:1c00c338 +76685416ns 1418008 1c00100e 00912223 sw x9, 4(x2) x9:00000000 x2:1c009b40 PA:1c009b44 +76685437ns 1418009 1c001010 01212023 sw x18, 0(x2) x18:00000000 x2:1c009b40 PA:1c009b40 +76685457ns 1418010 1c001012 00112623 sw x1, 12(x2) x1:1c001728 x2:1c009b40 PA:1c009b4c +76685477ns 1418011 1c001014 7f9000ef jal x1, 4088 x1=1c001018 +76685517ns 1418013 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +76685598ns 1418017 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76685639ns 1418019 1c002014 00078863 beq x15, x0, 16 x15:00000001 +76685659ns 1418020 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76685679ns 1418021 1c00201a 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76685699ns 1418022 1c00201c 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76685719ns 1418023 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c009db8 PA:1c009dfc +76685760ns 1418025 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76685780ns 1418026 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c009db8 PA:1c009dfc +76685800ns 1418027 1c002024 00008067 jalr x0, x1, 0 x1:1c001018 +76685840ns 1418029 1c001018 04544483 lbu x9, 69(x8) x9=00000000 x8:1c00c338 PA:1c00c37d +76685861ns 1418030 1c00101c 02440913 addi x18, x8, 36 x18=1c00c35c x8:1c00c338 +76685881ns 1418031 1c001020 01849493 slli x9, x9, 0x18 x9=00000000 x9:00000000 +76685901ns 1418032 1c001022 4184d493 srai x9, x9, 0x418 x9=00000000 x9:00000000 +76685921ns 1418033 1c001024 02904b63 blt x0, x9, 54 x9:00000000 +76685941ns 1418034 1c001028 fff00793 addi x15, x0, -1 x15=ffffffff +76685962ns 1418035 1c00102a 04f402a3 sb x15, 69(x8) x15:ffffffff x8:1c00c338 PA:1c00c37d +76685982ns 1418036 1c00102e 7f9000ef jal x1, 4088 x1=1c001032 +76686042ns 1418039 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76686083ns 1418041 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +76686103ns 1418042 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76686123ns 1418043 1c002030 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +76686163ns 1418045 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c009db8 PA:1c009dfc +76686204ns 1418047 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +76686224ns 1418048 1c002036 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76686244ns 1418049 1c002038 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76686264ns 1418050 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c009db8 PA:1c009dfc +76686305ns 1418052 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +76686325ns 1418053 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c009db8 PA:1c009dfc +76686345ns 1418054 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c009db8 PA:1c009dfc +76686386ns 1418056 1c002042 00079363 bne x15, x0, 6 x15:00000000 +76686406ns 1418057 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +76686487ns 1418061 1c002048 00008067 jalr x0, x1, 0 x1:1c001032 +76686547ns 1418064 1c001032 7db000ef jal x1, 4058 x1=1c001036 +76686588ns 1418066 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +76686668ns 1418070 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76686709ns 1418072 1c002014 00078863 beq x15, x0, 16 x15:00000001 +76686729ns 1418073 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76686749ns 1418074 1c00201a 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76686769ns 1418075 1c00201c 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76686789ns 1418076 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c009db8 PA:1c009dfc +76686830ns 1418078 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76686850ns 1418079 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c009db8 PA:1c009dfc +76686870ns 1418080 1c002024 00008067 jalr x0, x1, 0 x1:1c001036 +76686931ns 1418083 1c001036 04444483 lbu x9, 68(x8) x9=00000000 x8:1c00c338 PA:1c00c37c +76686951ns 1418084 1c00103a 01040913 addi x18, x8, 16 x18=1c00c348 x8:1c00c338 +76686971ns 1418085 1c00103e 01849493 slli x9, x9, 0x18 x9=00000000 x9:00000000 +76686991ns 1418086 1c001040 4184d493 srai x9, x9, 0x418 x9=00000000 x9:00000000 +76687012ns 1418087 1c001042 02904863 blt x0, x9, 48 x9:00000000 +76687032ns 1418088 1c001046 fff00793 addi x15, x0, -1 x15=ffffffff +76687052ns 1418089 1c001048 04f40223 sb x15, 68(x8) x15:ffffffff x8:1c00c338 PA:1c00c37c +76687072ns 1418090 1c00104c 00812403 lw x8, 8(x2) x8=1c00c338 x2:1c009b40 PA:1c009b48 +76687092ns 1418091 1c00104e 00c12083 lw x1, 12(x2) x1=1c001728 x2:1c009b40 PA:1c009b4c +76687113ns 1418092 1c001050 00412483 lw x9, 4(x2) x9=00000000 x2:1c009b40 PA:1c009b44 +76687133ns 1418093 1c001052 00012903 lw x18, 0(x2) x18=00000000 x2:1c009b40 PA:1c009b40 +76687153ns 1418094 1c001054 01010113 addi x2, x2, 16 x2=1c009b50 x2:1c009b40 +76687173ns 1418095 1c001056 7d10006f jal x0, 4048 +76687234ns 1418098 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76687274ns 1418100 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +76687294ns 1418101 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76687314ns 1418102 1c002030 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +76687355ns 1418104 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c009db8 PA:1c009dfc +76687395ns 1418106 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +76687415ns 1418107 1c002036 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76687436ns 1418108 1c002038 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76687456ns 1418109 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c009db8 PA:1c009dfc +76687496ns 1418111 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +76687516ns 1418112 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c009db8 PA:1c009dfc +76687537ns 1418113 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c009db8 PA:1c009dfc +76687577ns 1418115 1c002042 00079363 bne x15, x0, 6 x15:00000000 +76687597ns 1418116 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +76687678ns 1418120 1c002048 00008067 jalr x0, x1, 0 x1:1c001728 +76687718ns 1418122 1c001728 425000ef jal x1, 3108 x1=1c00172c +76687759ns 1418124 1c00234c fc010113 addi x2, x2, -64 x2=1c009b10 x2:1c009b50 +76687779ns 1418125 1c00234e 02812c23 sw x8, 56(x2) x8:1c00c338 x2:1c009b10 PA:1c009b48 +76687799ns 1418126 1c002350 d6818413 addi x8, x3, -664 x8=1c009144 x3:1c0093dc +76687819ns 1418127 1c002354 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +76687839ns 1418128 1c002356 02112e23 sw x1, 60(x2) x1:1c00172c x2:1c009b10 PA:1c009b4c +76687860ns 1418129 1c002358 02912a23 sw x9, 52(x2) x9:00000000 x2:1c009b10 PA:1c009b44 +76687880ns 1418130 1c00235a 03212823 sw x18, 48(x2) x18:00000000 x2:1c009b10 PA:1c009b40 +76687900ns 1418131 1c00235c 03312623 sw x19, 44(x2) x19:ffffffff x2:1c009b10 PA:1c009b3c +76687920ns 1418132 1c00235e 03412423 sw x20, 40(x2) x20:1c00c35c x2:1c009b10 PA:1c009b38 +76687940ns 1418133 1c002360 03512223 sw x21, 36(x2) x21:a5a5a5a5 x2:1c009b10 PA:1c009b34 +76687961ns 1418134 1c002362 03612023 sw x22, 32(x2) x22:a5a5a5a5 x2:1c009b10 PA:1c009b30 +76687981ns 1418135 1c002364 01712e23 sw x23, 28(x2) x23:a5a5a5a5 x2:1c009b10 PA:1c009b2c +76688001ns 1418136 1c002366 02079263 bne x15, x0, 36 x15:00000001 +76688082ns 1418140 1c00238a c83ff0ef jal x1, -894 x1=1c00238e +76688122ns 1418142 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +76688203ns 1418146 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76688243ns 1418148 1c002014 00078863 beq x15, x0, 16 x15:00000001 +76688263ns 1418149 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76688284ns 1418150 1c00201a 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76688304ns 1418151 1c00201c 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76688324ns 1418152 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c009db8 PA:1c009dfc +76688364ns 1418154 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76688385ns 1418155 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c009db8 PA:1c009dfc +76688405ns 1418156 1c002024 00008067 jalr x0, x1, 0 x1:1c00238e +76688445ns 1418158 1c00238e 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +76688486ns 1418160 1c002390 fff78793 addi x15, x15, -1 x15=00000000 x15:00000001 +76688506ns 1418161 1c002392 00f42023 sw x15, 0(x8) x15:00000000 x8:1c009144 PA:1c009144 +76688526ns 1418162 1c002394 00042783 lw x15, 0(x8) x15=00000000 x8:1c009144 PA:1c009144 +76688566ns 1418164 1c002396 02078163 beq x15, x0, 34 x15:00000000 +76688627ns 1418167 1c0023b8 d601a783 lw x15, -672(x3) x15=00000003 x3:1c0093dc PA:1c00913c +76688667ns 1418169 1c0023bc fc078ee3 beq x15, x0, -36 x15:00000003 +76688687ns 1418170 1c0023be 1c009937 lui x18, 0x1c009000 x18=1c009000 +76688708ns 1418171 1c0023c2 00000413 addi x8, x0, 0 x8=00000000 +76688728ns 1418172 1c0023c4 93818493 addi x9, x3, -1736 x9=1c008d14 x3:1c0093dc +76688748ns 1418173 1c0023c8 00100993 addi x19, x0, 1 x19=00000001 +76688768ns 1418174 1c0023ca c8890913 addi x18, x18, -888 x18=1c008c88 x18:1c009000 +76688788ns 1418175 1c0023ce 01400a93 addi x21, x0, 20 x21=00000014 +76688809ns 1418176 1c0023d0 04c0006f jal x0, 76 +76688849ns 1418178 1c00241c 0004a783 lw x15, 0(x9) x15=00000000 x9:1c008d14 PA:1c008d14 +76688889ns 1418180 1c00241e fa079ae3 bne x15, x0, -76 x15:00000000 +76688910ns 1418181 1c002420 00040363 beq x8, x0, 6 x8:00000000 +76688990ns 1418185 1c002426 d8018713 addi x14, x3, -640 x14=1c00915c x3:1c0093dc +76689011ns 1418186 1c00242a 00072483 lw x9, 0(x14) x9=00000000 x14:1c00915c PA:1c00915c +76689031ns 1418187 1c00242c d8018413 addi x8, x3, -640 x8=1c00915c x3:1c0093dc +76689051ns 1418188 1c002430 00048d63 beq x9, x0, 26 x9:00000000 +76689132ns 1418192 1c00244a d8c1a783 lw x15, -628(x3) x15=00000000 x3:1c0093dc PA:1c009168 +76689172ns 1418194 1c00244e f40785e3 beq x15, x0, -182 x15:00000000 +76689233ns 1418197 1c002398 00000513 addi x10, x0, 0 x10=00000000 +76689253ns 1418198 1c00239a 00a12623 sw x10, 12(x2) x10:00000000 x2:1c009b10 PA:1c009b1c +76689273ns 1418199 1c00239c c8bff0ef jal x1, -886 x1=1c0023a0 +76689334ns 1418202 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76689374ns 1418204 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +76689394ns 1418205 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76689414ns 1418206 1c002030 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +76689455ns 1418208 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c009db8 PA:1c009dfc +76689495ns 1418210 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +76689515ns 1418211 1c002036 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76689536ns 1418212 1c002038 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76689556ns 1418213 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c009db8 PA:1c009dfc +76689596ns 1418215 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +76689616ns 1418216 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c009db8 PA:1c009dfc +76689637ns 1418217 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c009db8 PA:1c009dfc +76689677ns 1418219 1c002042 00079363 bne x15, x0, 6 x15:00000000 +76689697ns 1418220 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +76689778ns 1418224 1c002048 00008067 jalr x0, x1, 0 x1:1c0023a0 +76689818ns 1418226 1c0023a0 03c12083 lw x1, 60(x2) x1=1c00172c x2:1c009b10 PA:1c009b4c +76689838ns 1418227 1c0023a2 03812403 lw x8, 56(x2) x8=1c00c338 x2:1c009b10 PA:1c009b48 +76689859ns 1418228 1c0023a4 00c12503 lw x10, 12(x2) x10=00000000 x2:1c009b10 PA:1c009b1c +76689879ns 1418229 1c0023a6 03412483 lw x9, 52(x2) x9=00000000 x2:1c009b10 PA:1c009b44 +76689899ns 1418230 1c0023a8 03012903 lw x18, 48(x2) x18=00000000 x2:1c009b10 PA:1c009b40 +76689919ns 1418231 1c0023aa 02c12983 lw x19, 44(x2) x19=ffffffff x2:1c009b10 PA:1c009b3c +76689939ns 1418232 1c0023ac 02812a03 lw x20, 40(x2) x20=1c00c35c x2:1c009b10 PA:1c009b38 +76689960ns 1418233 1c0023ae 02412a83 lw x21, 36(x2) x21=a5a5a5a5 x2:1c009b10 PA:1c009b34 +76689980ns 1418234 1c0023b0 02012b03 lw x22, 32(x2) x22=a5a5a5a5 x2:1c009b10 PA:1c009b30 +76690000ns 1418235 1c0023b2 01c12b83 lw x23, 28(x2) x23=a5a5a5a5 x2:1c009b10 PA:1c009b2c +76690020ns 1418236 1c0023b4 04010113 addi x2, x2, 64 x2=1c009b50 x2:1c009b10 +76690040ns 1418237 1c0023b6 00008067 jalr x0, x1, 0 x1:1c00172c +76690081ns 1418239 1c00172c 00051363 bne x10, x0, 6 x10:00000000 +76690101ns 1418240 1c00172e 00000073 ecall +76690182ns 1418244 1c000800 1000006f jal x0, 256 +76690222ns 1418246 1c000900 f8810113 addi x2, x2, -120 x2=1c009ad8 x2:1c009b50 +76690242ns 1418247 1c000904 00112223 sw x1, 4(x2) x1:1c00172c x2:1c009ad8 PA:1c009adc +76690262ns 1418248 1c000906 00512423 sw x5, 8(x2) x5:a5a5a5a5 x2:1c009ad8 PA:1c009ae0 +76690283ns 1418249 1c000908 00612623 sw x6, 12(x2) x6:00000010 x2:1c009ad8 PA:1c009ae4 +76690303ns 1418250 1c00090a 00712823 sw x7, 16(x2) x7:a5a5a5a5 x2:1c009ad8 PA:1c009ae8 +76690323ns 1418251 1c00090c 00812a23 sw x8, 20(x2) x8:1c00c338 x2:1c009ad8 PA:1c009aec +76690343ns 1418252 1c00090e 00912c23 sw x9, 24(x2) x9:00000000 x2:1c009ad8 PA:1c009af0 +76690363ns 1418253 1c000910 00a12e23 sw x10, 28(x2) x10:00000000 x2:1c009ad8 PA:1c009af4 +76690384ns 1418254 1c000912 02b12023 sw x11, 32(x2) x11:1c009dbc x2:1c009ad8 PA:1c009af8 +76690404ns 1418255 1c000914 02c12223 sw x12, 36(x2) x12:00000003 x2:1c009ad8 PA:1c009afc +76690424ns 1418256 1c000916 02d12423 sw x13, 40(x2) x13:1c009db8 x2:1c009ad8 PA:1c009b00 +76690444ns 1418257 1c000918 02e12623 sw x14, 44(x2) x14:00000000 x2:1c009ad8 PA:1c009b04 +76690464ns 1418258 1c00091a 02f12823 sw x15, 48(x2) x15:00000000 x2:1c009ad8 PA:1c009b08 +76690485ns 1418259 1c00091c 03012a23 sw x16, 52(x2) x16:00000010 x2:1c009ad8 PA:1c009b0c +76690505ns 1418260 1c00091e 03112c23 sw x17, 56(x2) x17:000000ff x2:1c009ad8 PA:1c009b10 +76690525ns 1418261 1c000920 03212e23 sw x18, 60(x2) x18:00000000 x2:1c009ad8 PA:1c009b14 +76690545ns 1418262 1c000922 05312023 sw x19, 64(x2) x19:ffffffff x2:1c009ad8 PA:1c009b18 +76690565ns 1418263 1c000924 05412223 sw x20, 68(x2) x20:1c00c35c x2:1c009ad8 PA:1c009b1c +76690586ns 1418264 1c000926 05512423 sw x21, 72(x2) x21:a5a5a5a5 x2:1c009ad8 PA:1c009b20 +76690606ns 1418265 1c000928 05612623 sw x22, 76(x2) x22:a5a5a5a5 x2:1c009ad8 PA:1c009b24 +76690626ns 1418266 1c00092a 05712823 sw x23, 80(x2) x23:a5a5a5a5 x2:1c009ad8 PA:1c009b28 +76690646ns 1418267 1c00092c 05812a23 sw x24, 84(x2) x24:a5a5a5a5 x2:1c009ad8 PA:1c009b2c +76690666ns 1418268 1c00092e 05912c23 sw x25, 88(x2) x25:a5a5a5a5 x2:1c009ad8 PA:1c009b30 +76690707ns 1418270 1c000930 05a12e23 sw x26, 92(x2) x26:a5a5a5a5 x2:1c009ad8 PA:1c009b34 +76690727ns 1418271 1c000932 07b12023 sw x27, 96(x2) x27:a5a5a5a5 x2:1c009ad8 PA:1c009b38 +76690747ns 1418272 1c000934 07c12223 sw x28, 100(x2) x28:00000004 x2:1c009ad8 PA:1c009b3c +76690767ns 1418273 1c000936 07d12423 sw x29, 104(x2) x29:1c00b890 x2:1c009ad8 PA:1c009b40 +76690787ns 1418274 1c000938 07e12623 sw x30, 108(x2) x30:00000000 x2:1c009ad8 PA:1c009b44 +76690808ns 1418275 1c00093a 07f12823 sw x31, 112(x2) x31:a5a5a5a5 x2:1c009ad8 PA:1c009b48 +76690828ns 1418276 1c00093c 300022f3 csrrs x5, x0, 0x300 x5=00001880 +76690909ns 1418280 1c000940 06512a23 sw x5, 116(x2) x5:00001880 x2:1c009ad8 PA:1c009b4c +76690929ns 1418281 1c000942 fe810113 addi x2, x2, -24 x2=1c009ac0 x2:1c009ad8 +76690949ns 1418282 1c000944 7c0022f3 csrrs x5, x0, 0x7c0 x5=00000000 +76690969ns 1418283 1c000948 7c102373 csrrs x6, x0, 0x7c1 x6=00000000 +76690989ns 1418284 1c00094c 7c2023f3 csrrs x7, x0, 0x7c2 x7=00000000 +76691010ns 1418285 1c000950 7c402e73 csrrs x28, x0, 0x7c4 x28=00000000 +76691030ns 1418286 1c000954 7c502ef3 csrrs x29, x0, 0x7c5 x29=00000000 +76691050ns 1418287 1c000958 7c602f73 csrrs x30, x0, 0x7c6 x30=00000000 +76691070ns 1418288 1c00095c 00512223 sw x5, 4(x2) x5:00000000 x2:1c009ac0 PA:1c009ac4 +76691090ns 1418289 1c00095e 00612423 sw x6, 8(x2) x6:00000000 x2:1c009ac0 PA:1c009ac8 +76691111ns 1418290 1c000960 00712623 sw x7, 12(x2) x7:00000000 x2:1c009ac0 PA:1c009acc +76691131ns 1418291 1c000962 01c12823 sw x28, 16(x2) x28:00000000 x2:1c009ac0 PA:1c009ad0 +76691151ns 1418292 1c000964 01d12a23 sw x29, 20(x2) x29:00000000 x2:1c009ac0 PA:1c009ad4 +76691171ns 1418293 1c000966 01e12c23 sw x30, 24(x2) x30:00000000 x2:1c009ac0 PA:1c009ad8 +76691191ns 1418294 1c000968 d541a283 lw x5, -684(x3) x5=1c009db8 x3:1c0093dc PA:1c009130 +76691232ns 1418296 1c00096c 0022a023 sw x2, 0(x5) x2:1c009ac0 x5:1c009db8 PA:1c009db8 +76691252ns 1418297 1c000970 34202573 csrrs x10, x0, 0x342 x10=0000000b +76691272ns 1418298 1c000974 341025f3 csrrs x11, x0, 0x341 x11=1c00172e +76691292ns 1418299 1c000978 01f55613 srli x12, x10, 0x1f x12=00000000 x10:0000000b +76691312ns 1418300 1c00097c 00060963 beq x12, x0, 18 x12:00000000 +76691373ns 1418303 1c00098e 00458593 addi x11, x11, 4 x11=1c001732 x11:1c00172e +76691393ns 1418304 1c000990 00b12023 sw x11, 0(x2) x11:1c001732 x2:1c009ac0 PA:1c009ac0 +76691413ns 1418305 1c000992 00b00293 addi x5, x0, 11 x5=0000000b +76691434ns 1418306 1c000994 7ff57513 andi x10, x10, 2047 x10=0000000b x10:0000000b +76691454ns 1418307 1c000998 00551963 bne x10, x5, 18 x10:0000000b x5:0000000b +76691474ns 1418308 1c00099c 00008117 auipc x2, 0x8000 x2=1c00899c +76691494ns 1418309 1c0009a0 23812103 lw x2, 568(x2) x2=1c0199b0 x2:1c00899c PA:1c008bd4 +76691514ns 1418310 1c0009a4 1d2010ef jal x1, 4562 x1=1c0009a8 +76691575ns 1418313 1c001b76 d681a703 lw x14, -664(x3) x14=00000000 x3:1c0093dc PA:1c009144 +76691595ns 1418314 1c001b7a d8c18793 addi x15, x3, -628 x15=1c009168 x3:1c0093dc +76691615ns 1418315 1c001b7e 00070463 beq x14, x0, 8 x14:00000000 +76691676ns 1418318 1c001b86 ff010113 addi x2, x2, -16 x2=1c0199a0 x2:1c0199b0 +76691696ns 1418319 1c001b88 00812423 sw x8, 8(x2) x8:1c00c338 x2:1c0199a0 PA:1c0199a8 +76691716ns 1418320 1c001b8a 00112623 sw x1, 12(x2) x1:1c0009a8 x2:1c0199a0 PA:1c0199ac +76691736ns 1418321 1c001b8c 0007a023 sw x0, 0(x15) x15:1c009168 PA:1c009168 +76691757ns 1418322 1c001b90 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76691777ns 1418323 1c001b94 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76691797ns 1418324 1c001b96 a5a5a737 lui x14, 0xa5a5a000 x14=a5a5a000 +76691817ns 1418325 1c001b9a 5a570713 addi x14, x14, 1445 x14=a5a5a5a5 x14:a5a5a000 +76691837ns 1418326 1c001b9e 0307a783 lw x15, 48(x15) x15=1c009770 x15:1c009db8 PA:1c009de8 +76691858ns 1418327 1c001ba0 d5418413 addi x8, x3, -684 x8=1c009130 x3:1c0093dc +76691878ns 1418328 1c001ba4 0007a603 lw x12, 0(x15) x12=a5a5a5a5 x15:1c009770 PA:1c009770 +76691918ns 1418330 1c001ba6 00e61b63 bne x12, x14, 22 x12:a5a5a5a5 x14:a5a5a5a5 +76691938ns 1418331 1c001baa 0047a683 lw x13, 4(x15) x13=a5a5a5a5 x15:1c009770 PA:1c009774 +76691979ns 1418333 1c001bac 00c69863 bne x13, x12, 16 x13:a5a5a5a5 x12:a5a5a5a5 +76691999ns 1418334 1c001bb0 0087a703 lw x14, 8(x15) x14=a5a5a5a5 x15:1c009770 PA:1c009778 +76692039ns 1418336 1c001bb2 00d71563 bne x14, x13, 10 x14:a5a5a5a5 x13:a5a5a5a5 +76692060ns 1418337 1c001bb6 00c7a783 lw x15, 12(x15) x15=a5a5a5a5 x15:1c009770 PA:1c00977c +76692100ns 1418339 1c001bb8 00e78863 beq x15, x14, 16 x15:a5a5a5a5 x14:a5a5a5a5 +76692161ns 1418342 1c001bc8 d701a503 lw x10, -656(x3) x10=00000001 x3:1c0093dc PA:1c00914c +76692181ns 1418343 1c001bcc abeff0ef jal x1, -3394 x1=1c001bd0 +76692221ns 1418345 1c000e8a 000107b7 lui x15, 0x10000 x15=00010000 +76692241ns 1418346 1c000e8c 02f57663 bgeu x10, x15, 44 x10:00000001 x15:00010000 +76692261ns 1418347 1c000e90 0ff00793 addi x15, x0, 255 x15=000000ff +76692282ns 1418348 1c000e94 00a7b7b3 sltu x15, x15, x10 x15=00000000 x15:000000ff x10:00000001 +76692302ns 1418349 1c000e98 00379793 slli x15, x15, 0x3 x15=00000000 x15:00000000 +76692322ns 1418350 1c000e9a 1c009737 lui x14, 0x1c009000 x14=1c009000 +76692342ns 1418351 1c000e9e 02000693 addi x13, x0, 32 x13=00000020 +76692362ns 1418352 1c000ea2 40f686b3 sub x13, x13, x15 x13=00000020 x13:00000020 x15:00000000 +76692383ns 1418353 1c000ea4 00f55533 srl x10, x10, x15 x10=00000001 x10:00000001 x15:00000000 +76692403ns 1418354 1c000ea8 ad470793 addi x15, x14, -1324 x15=1c008ad4 x14:1c009000 +76692423ns 1418355 1c000eac 00f50533 add x10, x10, x15 x10=1c008ad5 x10:00000001 x15:1c008ad4 +76692443ns 1418356 1c000eae 00054503 lbu x10, 0(x10) x10=00000001 x10:1c008ad5 PA:1c008ad5 +76692484ns 1418358 1c000eb2 40a68533 sub x10, x13, x10 x10=0000001f x13:00000020 x10:00000001 +76692504ns 1418359 1c000eb6 00008067 jalr x0, x1, 0 x1:1c001bd0 +76692544ns 1418361 1c001bd0 01f00713 addi x14, x0, 31 x14=0000001f +76692564ns 1418362 1c001bd2 40a70533 sub x10, x14, x10 x10=00000000 x14:0000001f x10:0000001f +76692585ns 1418363 1c001bd6 01400793 addi x15, x0, 20 x15=00000014 +76692605ns 1418364 1c001bd8 02f507b3 mul x15, x10, x15 x15=00000000 x10:00000000 x15:00000014 +76692625ns 1418365 1c001bdc 1c009737 lui x14, 0x1c009000 x14=1c009000 +76692645ns 1418366 1c001be0 c8870693 addi x13, x14, -888 x13=1c008c88 x14:1c009000 +76692665ns 1418367 1c001be4 c8870713 addi x14, x14, -888 x14=1c008c88 x14:1c009000 +76692686ns 1418368 1c001be8 00f686b3 add x13, x13, x15 x13=1c008c88 x13:1c008c88 x15:00000000 +76692706ns 1418369 1c001bea 0006a603 lw x12, 0(x13) x12=00000001 x13:1c008c88 PA:1c008c88 +76692746ns 1418371 1c001bec 02061263 bne x12, x0, 36 x12:00000001 +76692807ns 1418374 1c001c10 0046a603 lw x12, 4(x13) x12=1c00a894 x13:1c008c88 PA:1c008c8c +76692827ns 1418375 1c001c12 00878793 addi x15, x15, 8 x15=00000008 x15:00000000 +76692847ns 1418376 1c001c14 00e787b3 add x15, x15, x14 x15=1c008c90 x15:00000008 x14:1c008c88 +76692867ns 1418377 1c001c16 00462603 lw x12, 4(x12) x12=1c008c90 x12:1c00a894 PA:1c00a898 +76692908ns 1418379 1c001c18 00c6a223 sw x12, 4(x13) x12:1c008c90 x13:1c008c88 PA:1c008c8c +76692928ns 1418380 1c001c1a 00f61463 bne x12, x15, 8 x12:1c008c90 x15:1c008c90 +76692948ns 1418381 1c001c1e 00462783 lw x15, 4(x12) x15=1c00a894 x12:1c008c90 PA:1c008c94 +76692988ns 1418383 1c001c20 00f6a223 sw x15, 4(x13) x15:1c00a894 x13:1c008c88 PA:1c008c8c +76693009ns 1418384 1c001c22 01400793 addi x15, x0, 20 x15=00000014 +76693029ns 1418385 1c001c24 02f50533 mul x10, x10, x15 x10=00000000 x10:00000000 x15:00000014 +76693049ns 1418386 1c001c28 00c12083 lw x1, 12(x2) x1=1c0009a8 x2:1c0199a0 PA:1c0199ac +76693069ns 1418387 1c001c2a 00a70733 add x14, x14, x10 x14=1c008c88 x14:1c008c88 x10:00000000 +76693089ns 1418388 1c001c2c 00472783 lw x15, 4(x14) x15=1c00a894 x14:1c008c88 PA:1c008c8c +76693110ns 1418389 1c001c2e 1c009737 lui x14, 0x1c009000 x14=1c009000 +76693130ns 1418390 1c001c32 00c7a783 lw x15, 12(x15) x15=1c00a890 x15:1c00a894 PA:1c00a8a0 +76693170ns 1418392 1c001c34 00f42023 sw x15, 0(x8) x15:1c00a890 x8:1c009130 PA:1c009130 +76693190ns 1418393 1c001c36 00042783 lw x15, 0(x8) x15=1c00a890 x8:1c009130 PA:1c009130 +76693211ns 1418394 1c001c38 00812403 lw x8, 8(x2) x8=1c00c338 x2:1c0199a0 PA:1c0199a8 +76693231ns 1418395 1c001c3a 05878793 addi x15, x15, 88 x15=1c00a8e8 x15:1c00a890 +76693251ns 1418396 1c001c3e c4f72223 sw x15, -956(x14) x15:1c00a8e8 x14:1c009000 PA:1c008c44 +76693271ns 1418397 1c001c42 01010113 addi x2, x2, 16 x2=1c0199b0 x2:1c0199a0 +76693291ns 1418398 1c001c44 00008067 jalr x0, x1, 0 x1:1c0009a8 +76693332ns 1418400 1c0009a8 0160006f jal x0, 22 +76693392ns 1418403 1c0009be d541a303 lw x6, -684(x3) x6=1c00a890 x3:1c0093dc PA:1c009130 +76693433ns 1418405 1c0009c2 00032103 lw x2, 0(x6) x2=1c00a7d0 x6:1c00a890 PA:1c00a890 +76693473ns 1418407 1c0009c6 00012283 lw x5, 0(x2) x5=1c002310 x2:1c00a7d0 PA:1c00a7d0 +76693513ns 1418409 1c0009c8 34129073 csrrw x0, x5, 0x341 x5:1c002310 +76693534ns 1418410 1c0009cc 00412283 lw x5, 4(x2) x5=00000000 x2:1c00a7d0 PA:1c00a7d4 +76693554ns 1418411 1c0009ce 00812303 lw x6, 8(x2) x6=00000000 x2:1c00a7d0 PA:1c00a7d8 +76693574ns 1418412 1c0009d0 00c12383 lw x7, 12(x2) x7=00000000 x2:1c00a7d0 PA:1c00a7dc +76693594ns 1418413 1c0009d2 01012e03 lw x28, 16(x2) x28=00000000 x2:1c00a7d0 PA:1c00a7e0 +76693614ns 1418414 1c0009d4 01412e83 lw x29, 20(x2) x29=00000000 x2:1c00a7d0 PA:1c00a7e4 +76693635ns 1418415 1c0009d6 01812f03 lw x30, 24(x2) x30=00000000 x2:1c00a7d0 PA:1c00a7e8 +76693655ns 1418416 1c0009d8 7c029073 csrrw x0, x5, 0x7c0 x5:00000000 +76693675ns 1418417 1c0009dc 7c131073 csrrw x0, x6, 0x7c1 x6:00000000 +76693695ns 1418418 1c0009e0 7c239073 csrrw x0, x7, 0x7c2 x7:00000000 +76693715ns 1418419 1c0009e4 7c4e1073 csrrw x0, x28, 0x7c4 x28:00000000 +76693735ns 1418420 1c0009e8 7c5e9073 csrrw x0, x29, 0x7c5 x29:00000000 +76693756ns 1418421 1c0009ec 7c6f1073 csrrw x0, x30, 0x7c6 x30:00000000 +76693776ns 1418422 1c0009f0 01810113 addi x2, x2, 24 x2=1c00a7e8 x2:1c00a7d0 +76693796ns 1418423 1c0009f2 07412283 lw x5, 116(x2) x5=00001880 x2:1c00a7e8 PA:1c00a85c +76693836ns 1418425 1c0009f4 30029073 csrrw x0, x5, 0x300 x5:00001880 +76693917ns 1418429 1c0009f8 00412083 lw x1, 4(x2) x1=00000000 x2:1c00a7e8 PA:1c00a7ec +76693937ns 1418430 1c0009fa 00812283 lw x5, 8(x2) x5=a5a5a5a5 x2:1c00a7e8 PA:1c00a7f0 +76693958ns 1418431 1c0009fc 00c12303 lw x6, 12(x2) x6=a5a5a5a5 x2:1c00a7e8 PA:1c00a7f4 +76693978ns 1418432 1c0009fe 01012383 lw x7, 16(x2) x7=a5a5a5a5 x2:1c00a7e8 PA:1c00a7f8 +76693998ns 1418433 1c000a00 01412403 lw x8, 20(x2) x8=a5a5a5a5 x2:1c00a7e8 PA:1c00a7fc +76694018ns 1418434 1c000a02 01812483 lw x9, 24(x2) x9=1c008d3c x2:1c00a7e8 PA:1c00a800 +76694038ns 1418435 1c000a04 01c12503 lw x10, 28(x2) x10=00000000 x2:1c00a7e8 PA:1c00a804 +76694059ns 1418436 1c000a06 02012583 lw x11, 32(x2) x11=a5a5a5a5 x2:1c00a7e8 PA:1c00a808 +76694079ns 1418437 1c000a08 02412603 lw x12, 36(x2) x12=a5a5a5a5 x2:1c00a7e8 PA:1c00a80c +76694099ns 1418438 1c000a0a 02812683 lw x13, 40(x2) x13=a5a5a5a5 x2:1c00a7e8 PA:1c00a810 +76694119ns 1418439 1c000a0c 02c12703 lw x14, 44(x2) x14=a5a5a5a5 x2:1c00a7e8 PA:1c00a814 +76694139ns 1418440 1c000a0e 03012783 lw x15, 48(x2) x15=00000000 x2:1c00a7e8 PA:1c00a818 +76694160ns 1418441 1c000a10 03412803 lw x16, 52(x2) x16=a5a5a5a5 x2:1c00a7e8 PA:1c00a81c +76694180ns 1418442 1c000a12 03812883 lw x17, 56(x2) x17=a5a5a5a5 x2:1c00a7e8 PA:1c00a820 +76694200ns 1418443 1c000a14 03c12903 lw x18, 60(x2) x18=1c009140 x2:1c00a7e8 PA:1c00a824 +76694220ns 1418444 1c000a16 04012983 lw x19, 64(x2) x19=a5a5a5a5 x2:1c00a7e8 PA:1c00a828 +76694240ns 1418445 1c000a18 04412a03 lw x20, 68(x2) x20=a5a5a5a5 x2:1c00a7e8 PA:1c00a82c +76694260ns 1418446 1c000a1a 04812a83 lw x21, 72(x2) x21=a5a5a5a5 x2:1c00a7e8 PA:1c00a830 +76694281ns 1418447 1c000a1c 04c12b03 lw x22, 76(x2) x22=a5a5a5a5 x2:1c00a7e8 PA:1c00a834 +76694301ns 1418448 1c000a1e 05012b83 lw x23, 80(x2) x23=a5a5a5a5 x2:1c00a7e8 PA:1c00a838 +76694321ns 1418449 1c000a20 05412c03 lw x24, 84(x2) x24=a5a5a5a5 x2:1c00a7e8 PA:1c00a83c +76694341ns 1418450 1c000a22 05812c83 lw x25, 88(x2) x25=a5a5a5a5 x2:1c00a7e8 PA:1c00a840 +76694361ns 1418451 1c000a24 05c12d03 lw x26, 92(x2) x26=a5a5a5a5 x2:1c00a7e8 PA:1c00a844 +76694382ns 1418452 1c000a26 06012d83 lw x27, 96(x2) x27=a5a5a5a5 x2:1c00a7e8 PA:1c00a848 +76694402ns 1418453 1c000a28 06412e03 lw x28, 100(x2) x28=a5a5a5a5 x2:1c00a7e8 PA:1c00a84c +76694422ns 1418454 1c000a2a 06812e83 lw x29, 104(x2) x29=a5a5a5a5 x2:1c00a7e8 PA:1c00a850 +76694442ns 1418455 1c000a2c 06c12f03 lw x30, 108(x2) x30=a5a5a5a5 x2:1c00a7e8 PA:1c00a854 +76694462ns 1418456 1c000a2e 07012f83 lw x31, 112(x2) x31=a5a5a5a5 x2:1c00a7e8 PA:1c00a858 +76694503ns 1418458 1c000a30 07810113 addi x2, x2, 120 x2=1c00a860 x2:1c00a7e8 +76694523ns 1418459 1c000a34 30200073 mret +76694624ns 1418464 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76694685ns 1418467 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76694705ns 1418468 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76694745ns 1418470 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76694806ns 1418473 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76694826ns 1418474 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76694866ns 1418476 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76694927ns 1418479 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76694947ns 1418480 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76694987ns 1418482 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76695048ns 1418485 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76695068ns 1418486 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76695109ns 1418488 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76695169ns 1418491 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76695189ns 1418492 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76695230ns 1418494 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76695290ns 1418497 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76695310ns 1418498 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76695351ns 1418500 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76695411ns 1418503 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76695432ns 1418504 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76695472ns 1418506 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76695533ns 1418509 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76695553ns 1418510 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76695593ns 1418512 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76695654ns 1418515 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76695674ns 1418516 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76695714ns 1418518 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76695775ns 1418521 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76695795ns 1418522 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76695835ns 1418524 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76695896ns 1418527 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76695916ns 1418528 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76695957ns 1418530 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76696017ns 1418533 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76696037ns 1418534 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76696078ns 1418536 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76696138ns 1418539 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76696159ns 1418540 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76696199ns 1418542 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76696259ns 1418545 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76696280ns 1418546 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76696320ns 1418548 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76696381ns 1418551 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76696401ns 1418552 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76696441ns 1418554 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76696502ns 1418557 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76696522ns 1418558 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76696562ns 1418560 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76696623ns 1418563 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76696643ns 1418564 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76696684ns 1418566 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76696744ns 1418569 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76696764ns 1418570 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76696805ns 1418572 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76696865ns 1418575 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76696885ns 1418576 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76696926ns 1418578 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76696986ns 1418581 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76697007ns 1418582 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76697047ns 1418584 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76697108ns 1418587 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76697128ns 1418588 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76697168ns 1418590 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76697229ns 1418593 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76697249ns 1418594 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76697289ns 1418596 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76697350ns 1418599 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76697370ns 1418600 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76697410ns 1418602 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76697471ns 1418605 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76697491ns 1418606 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76697532ns 1418608 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76697592ns 1418611 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76697612ns 1418612 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76697653ns 1418614 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76697713ns 1418617 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76697734ns 1418618 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76697774ns 1418620 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76697834ns 1418623 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76697855ns 1418624 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76697895ns 1418626 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76697956ns 1418629 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76697976ns 1418630 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76698016ns 1418632 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76698077ns 1418635 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76698097ns 1418636 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76698137ns 1418638 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76698198ns 1418641 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76698218ns 1418642 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76698259ns 1418644 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76698319ns 1418647 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76698339ns 1418648 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76698380ns 1418650 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76698440ns 1418653 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76698460ns 1418654 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76698501ns 1418656 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76698561ns 1418659 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76698582ns 1418660 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76698622ns 1418662 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76698683ns 1418665 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76698703ns 1418666 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76698743ns 1418668 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76698804ns 1418671 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76698824ns 1418672 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76698864ns 1418674 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76698925ns 1418677 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76698945ns 1418678 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76698985ns 1418680 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76699046ns 1418683 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76699066ns 1418684 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76699107ns 1418686 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76699167ns 1418689 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76699187ns 1418690 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76699228ns 1418692 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76699288ns 1418695 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76699308ns 1418696 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76699349ns 1418698 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76699409ns 1418701 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76699430ns 1418702 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76699470ns 1418704 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76699531ns 1418707 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76699551ns 1418708 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76699591ns 1418710 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76699652ns 1418713 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76699672ns 1418714 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76699712ns 1418716 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76699773ns 1418719 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76699793ns 1418720 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76699833ns 1418722 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76699894ns 1418725 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76699914ns 1418726 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76699955ns 1418728 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76700015ns 1418731 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76700035ns 1418732 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76700076ns 1418734 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76700136ns 1418737 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76700157ns 1418738 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76700197ns 1418740 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76700258ns 1418743 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76700278ns 1418744 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76700318ns 1418746 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76700379ns 1418749 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76700399ns 1418750 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76700439ns 1418752 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76700500ns 1418755 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76700520ns 1418756 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76700560ns 1418758 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76700621ns 1418761 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76700641ns 1418762 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76700682ns 1418764 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76700742ns 1418767 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76700762ns 1418768 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76700803ns 1418770 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76700863ns 1418773 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76700883ns 1418774 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76700924ns 1418776 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76700984ns 1418779 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76701005ns 1418780 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76701045ns 1418782 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76701106ns 1418785 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76701126ns 1418786 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76701166ns 1418788 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76701227ns 1418791 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76701247ns 1418792 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76701287ns 1418794 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76701348ns 1418797 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76701368ns 1418798 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76701408ns 1418800 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76701469ns 1418803 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76701489ns 1418804 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76701530ns 1418806 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76701590ns 1418809 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76701610ns 1418810 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76701651ns 1418812 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76701711ns 1418815 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76701732ns 1418816 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76701772ns 1418818 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76701832ns 1418821 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76701853ns 1418822 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76701893ns 1418824 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76701954ns 1418827 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76701974ns 1418828 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76702014ns 1418830 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76702075ns 1418833 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76702095ns 1418834 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76702135ns 1418836 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76702196ns 1418839 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76702216ns 1418840 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76702257ns 1418842 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76702317ns 1418845 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76702337ns 1418846 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76702378ns 1418848 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76702438ns 1418851 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76702458ns 1418852 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76702499ns 1418854 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76702559ns 1418857 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76702580ns 1418858 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76702620ns 1418860 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76702681ns 1418863 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76702701ns 1418864 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76702741ns 1418866 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76702802ns 1418869 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76702822ns 1418870 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76702862ns 1418872 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76702923ns 1418875 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76702943ns 1418876 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76702983ns 1418878 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76703044ns 1418881 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76703064ns 1418882 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76703105ns 1418884 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76703165ns 1418887 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76703185ns 1418888 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76703226ns 1418890 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76703286ns 1418893 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76703307ns 1418894 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76703347ns 1418896 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76703407ns 1418899 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76703428ns 1418900 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76703468ns 1418902 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76703529ns 1418905 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76703549ns 1418906 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76703589ns 1418908 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76703650ns 1418911 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76703670ns 1418912 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76703710ns 1418914 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76703771ns 1418917 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76703791ns 1418918 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76703831ns 1418920 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76703892ns 1418923 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76703912ns 1418924 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76703953ns 1418926 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76704013ns 1418929 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76704033ns 1418930 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76704074ns 1418932 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76704134ns 1418935 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76704155ns 1418936 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76704195ns 1418938 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76704256ns 1418941 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76704276ns 1418942 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76704316ns 1418944 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76704377ns 1418947 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76704397ns 1418948 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76704437ns 1418950 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76704498ns 1418953 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76704518ns 1418954 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76704558ns 1418956 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76704619ns 1418959 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76704639ns 1418960 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76704680ns 1418962 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76704740ns 1418965 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76704760ns 1418966 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76704801ns 1418968 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76704861ns 1418971 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76704881ns 1418972 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76704922ns 1418974 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76704982ns 1418977 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76705003ns 1418978 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76705043ns 1418980 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76705104ns 1418983 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76705124ns 1418984 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76705164ns 1418986 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76705225ns 1418989 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76705245ns 1418990 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76705285ns 1418992 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76705346ns 1418995 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76705366ns 1418996 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76705406ns 1418998 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76705467ns 1419001 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76705487ns 1419002 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76705528ns 1419004 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76705588ns 1419007 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76705608ns 1419008 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76705649ns 1419010 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76705709ns 1419013 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76705730ns 1419014 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76705770ns 1419016 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76705831ns 1419019 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76705851ns 1419020 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76705891ns 1419022 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76705952ns 1419025 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76705972ns 1419026 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76706012ns 1419028 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76706073ns 1419031 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76706093ns 1419032 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76706133ns 1419034 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76706194ns 1419037 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76706214ns 1419038 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76706255ns 1419040 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76706315ns 1419043 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76706335ns 1419044 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76706376ns 1419046 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76706436ns 1419049 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76706456ns 1419050 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76706497ns 1419052 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76706557ns 1419055 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76706578ns 1419056 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76706618ns 1419058 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76706679ns 1419061 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76706699ns 1419062 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76706739ns 1419064 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76706800ns 1419067 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76706820ns 1419068 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76706860ns 1419070 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76706921ns 1419073 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76706941ns 1419074 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76706981ns 1419076 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76707042ns 1419079 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76707062ns 1419080 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76707103ns 1419082 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76707163ns 1419085 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76707183ns 1419086 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76707224ns 1419088 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76707284ns 1419091 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76707305ns 1419092 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76707345ns 1419094 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76707405ns 1419097 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76707426ns 1419098 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76707466ns 1419100 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76707527ns 1419103 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76707547ns 1419104 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76707587ns 1419106 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76707648ns 1419109 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76707668ns 1419110 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76707708ns 1419112 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76707769ns 1419115 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76707789ns 1419116 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76707830ns 1419118 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76707890ns 1419121 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76707910ns 1419122 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76707951ns 1419124 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76708011ns 1419127 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76708031ns 1419128 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76708072ns 1419130 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76708132ns 1419133 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76708153ns 1419134 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76708193ns 1419136 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76708254ns 1419139 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76708274ns 1419140 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76708314ns 1419142 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76708375ns 1419145 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76708395ns 1419146 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76708435ns 1419148 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76708496ns 1419151 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76708516ns 1419152 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76708556ns 1419154 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76708617ns 1419157 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76708637ns 1419158 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76708678ns 1419160 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76708738ns 1419163 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76708758ns 1419164 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76708799ns 1419166 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76708859ns 1419169 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76708879ns 1419170 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76708920ns 1419172 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76708980ns 1419175 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76709001ns 1419176 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76709041ns 1419178 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76709102ns 1419181 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76709122ns 1419182 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76709162ns 1419184 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76709223ns 1419187 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76709243ns 1419188 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76709283ns 1419190 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76709344ns 1419193 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76709364ns 1419194 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76709404ns 1419196 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76709465ns 1419199 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76709485ns 1419200 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76709526ns 1419202 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76709586ns 1419205 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76709606ns 1419206 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76709647ns 1419208 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76709707ns 1419211 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76709728ns 1419212 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76709768ns 1419214 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76709829ns 1419217 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76709849ns 1419218 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76709889ns 1419220 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76709950ns 1419223 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76709970ns 1419224 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76710010ns 1419226 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76710071ns 1419229 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76710091ns 1419230 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76710131ns 1419232 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76710192ns 1419235 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76710212ns 1419236 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76710253ns 1419238 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76710313ns 1419241 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76710333ns 1419242 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76710374ns 1419244 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76710434ns 1419247 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76710454ns 1419248 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76710495ns 1419250 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76710555ns 1419253 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76710576ns 1419254 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76710616ns 1419256 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76710677ns 1419259 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76710697ns 1419260 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76710737ns 1419262 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76710798ns 1419265 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76710818ns 1419266 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76710858ns 1419268 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76710919ns 1419271 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76710939ns 1419272 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76710979ns 1419274 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76711040ns 1419277 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76711060ns 1419278 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76711101ns 1419280 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76711161ns 1419283 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76711181ns 1419284 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76711222ns 1419286 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76711282ns 1419289 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76711303ns 1419290 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76711343ns 1419292 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76711403ns 1419295 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76711424ns 1419296 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76711464ns 1419298 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76711525ns 1419301 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76711545ns 1419302 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76711585ns 1419304 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76711646ns 1419307 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76711666ns 1419308 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76711706ns 1419310 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76711767ns 1419313 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76711787ns 1419314 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76711828ns 1419316 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76711888ns 1419319 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76711908ns 1419320 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76711949ns 1419322 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76712009ns 1419325 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76712029ns 1419326 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76712070ns 1419328 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76712130ns 1419331 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76712151ns 1419332 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76712191ns 1419334 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76712252ns 1419337 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76712272ns 1419338 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76712312ns 1419340 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76712373ns 1419343 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76712393ns 1419344 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76712433ns 1419346 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76712494ns 1419349 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76712514ns 1419350 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76712554ns 1419352 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76712615ns 1419355 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76712635ns 1419356 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76712676ns 1419358 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76712736ns 1419361 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76712756ns 1419362 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76712797ns 1419364 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76712857ns 1419367 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76712878ns 1419368 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76712918ns 1419370 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76712978ns 1419373 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76712999ns 1419374 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76713039ns 1419376 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76713100ns 1419379 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76713120ns 1419380 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76713160ns 1419382 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76713221ns 1419385 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76713241ns 1419386 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76713281ns 1419388 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76713342ns 1419391 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76713362ns 1419392 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76713403ns 1419394 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76713463ns 1419397 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76713483ns 1419398 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76713524ns 1419400 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76713584ns 1419403 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76713604ns 1419404 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76713645ns 1419406 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76713705ns 1419409 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76713726ns 1419410 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76713766ns 1419412 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76713827ns 1419415 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76713847ns 1419416 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76713887ns 1419418 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76713948ns 1419421 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76713968ns 1419422 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76714008ns 1419424 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76714069ns 1419427 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76714089ns 1419428 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76714129ns 1419430 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76714190ns 1419433 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76714210ns 1419434 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76714251ns 1419436 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76714311ns 1419439 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76714331ns 1419440 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76714372ns 1419442 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76714432ns 1419445 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76714452ns 1419446 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76714493ns 1419448 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76714553ns 1419451 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76714574ns 1419452 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76714614ns 1419454 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76714675ns 1419457 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76714695ns 1419458 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76714735ns 1419460 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76714796ns 1419463 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76714816ns 1419464 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76714856ns 1419466 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76714917ns 1419469 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76714937ns 1419470 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76714977ns 1419472 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76715038ns 1419475 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76715058ns 1419476 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76715099ns 1419478 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76715159ns 1419481 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76715179ns 1419482 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76715220ns 1419484 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76715280ns 1419487 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76715301ns 1419488 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76715341ns 1419490 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76715402ns 1419493 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76715422ns 1419494 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76715462ns 1419496 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76715523ns 1419499 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76715543ns 1419500 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76715583ns 1419502 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76715644ns 1419505 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76715664ns 1419506 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76715704ns 1419508 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76715765ns 1419511 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76715785ns 1419512 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76715826ns 1419514 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76715886ns 1419517 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76715906ns 1419518 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76715947ns 1419520 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76716007ns 1419523 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76716027ns 1419524 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76716068ns 1419526 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76716128ns 1419529 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76716149ns 1419530 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76716189ns 1419532 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76716250ns 1419535 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76716270ns 1419536 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76716310ns 1419538 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76716371ns 1419541 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76716391ns 1419542 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76716431ns 1419544 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76716492ns 1419547 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76716512ns 1419548 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76716552ns 1419550 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76716613ns 1419553 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76716633ns 1419554 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76716674ns 1419556 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76716734ns 1419559 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76716754ns 1419560 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76716795ns 1419562 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76716855ns 1419565 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76716876ns 1419566 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76716916ns 1419568 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76716976ns 1419571 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76716997ns 1419572 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76717037ns 1419574 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76717098ns 1419577 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76717118ns 1419578 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76717158ns 1419580 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76717219ns 1419583 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76717239ns 1419584 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76717279ns 1419586 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76717340ns 1419589 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76717360ns 1419590 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76717401ns 1419592 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76717461ns 1419595 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76717481ns 1419596 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76717522ns 1419598 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76717582ns 1419601 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76717602ns 1419602 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76717643ns 1419604 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76717703ns 1419607 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76717724ns 1419608 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76717764ns 1419610 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76717825ns 1419613 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76717845ns 1419614 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76717885ns 1419616 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76717946ns 1419619 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76717966ns 1419620 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76718006ns 1419622 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76718067ns 1419625 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76718087ns 1419626 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76718127ns 1419628 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76718188ns 1419631 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76718208ns 1419632 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76718249ns 1419634 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76718309ns 1419637 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76718329ns 1419638 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76718370ns 1419640 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76718430ns 1419643 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76718451ns 1419644 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76718491ns 1419646 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76718551ns 1419649 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76718572ns 1419650 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76718612ns 1419652 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76718673ns 1419655 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76718693ns 1419656 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76718733ns 1419658 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76718794ns 1419661 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76718814ns 1419662 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76718854ns 1419664 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76718915ns 1419667 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76718935ns 1419668 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76718975ns 1419670 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76719036ns 1419673 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76719056ns 1419674 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76719097ns 1419676 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76719157ns 1419679 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76719177ns 1419680 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76719218ns 1419682 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76719278ns 1419685 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76719299ns 1419686 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76719339ns 1419688 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76719400ns 1419691 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76719420ns 1419692 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76719460ns 1419694 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76719521ns 1419697 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76719541ns 1419698 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76719581ns 1419700 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76719642ns 1419703 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76719662ns 1419704 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76719702ns 1419706 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76719763ns 1419709 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76719783ns 1419710 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76719824ns 1419712 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76719884ns 1419715 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76719904ns 1419716 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76719945ns 1419718 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76720005ns 1419721 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76720025ns 1419722 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76720066ns 1419724 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76720126ns 1419727 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76720147ns 1419728 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76720187ns 1419730 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76720248ns 1419733 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76720268ns 1419734 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76720308ns 1419736 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76720369ns 1419739 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76720389ns 1419740 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76720429ns 1419742 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76720490ns 1419745 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76720510ns 1419746 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76720550ns 1419748 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76720611ns 1419751 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76720631ns 1419752 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76720672ns 1419754 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76720732ns 1419757 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76720752ns 1419758 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76720793ns 1419760 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76720853ns 1419763 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76720874ns 1419764 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76720914ns 1419766 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76720975ns 1419769 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76720995ns 1419770 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76721035ns 1419772 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76721096ns 1419775 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76721116ns 1419776 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76721156ns 1419778 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76721217ns 1419781 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76721237ns 1419782 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76721277ns 1419784 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76721338ns 1419787 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76721358ns 1419788 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76721399ns 1419790 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76721459ns 1419793 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76721479ns 1419794 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76721520ns 1419796 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76721580ns 1419799 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76721600ns 1419800 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76721641ns 1419802 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76721701ns 1419805 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76721722ns 1419806 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76721762ns 1419808 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76721823ns 1419811 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76721843ns 1419812 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76721883ns 1419814 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76721944ns 1419817 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76721964ns 1419818 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76722004ns 1419820 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76722065ns 1419823 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76722085ns 1419824 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76722125ns 1419826 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76722186ns 1419829 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76722206ns 1419830 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76722247ns 1419832 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76722307ns 1419835 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76722327ns 1419836 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76722368ns 1419838 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76722428ns 1419841 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76722449ns 1419842 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76722489ns 1419844 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76722549ns 1419847 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76722570ns 1419848 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76722610ns 1419850 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76722671ns 1419853 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76722691ns 1419854 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76722731ns 1419856 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76722792ns 1419859 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76722812ns 1419860 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76722852ns 1419862 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76722913ns 1419865 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76722933ns 1419866 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76722974ns 1419868 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76723034ns 1419871 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76723054ns 1419872 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76723095ns 1419874 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76723155ns 1419877 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76723175ns 1419878 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76723216ns 1419880 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76723276ns 1419883 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76723297ns 1419884 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76723337ns 1419886 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76723398ns 1419889 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76723418ns 1419890 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76723458ns 1419892 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76723519ns 1419895 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76723539ns 1419896 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76723579ns 1419898 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76723640ns 1419901 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76723660ns 1419902 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76723700ns 1419904 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76723761ns 1419907 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76723781ns 1419908 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76723822ns 1419910 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76723882ns 1419913 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76723902ns 1419914 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76723943ns 1419916 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76724003ns 1419919 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76724023ns 1419920 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76724064ns 1419922 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76724124ns 1419925 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76724145ns 1419926 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76724185ns 1419928 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76724246ns 1419931 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76724266ns 1419932 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76724306ns 1419934 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76724367ns 1419937 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76724387ns 1419938 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76724427ns 1419940 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76724488ns 1419943 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76724508ns 1419944 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76724548ns 1419946 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76724609ns 1419949 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76724629ns 1419950 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76724670ns 1419952 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76724730ns 1419955 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76724750ns 1419956 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76724791ns 1419958 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76724851ns 1419961 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76724872ns 1419962 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76724912ns 1419964 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76724973ns 1419967 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76724993ns 1419968 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76725033ns 1419970 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76725094ns 1419973 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76725114ns 1419974 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76725154ns 1419976 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76725215ns 1419979 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76725235ns 1419980 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76725275ns 1419982 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76725336ns 1419985 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76725356ns 1419986 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76725397ns 1419988 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76725457ns 1419991 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76725477ns 1419992 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76725518ns 1419994 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76725578ns 1419997 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76725598ns 1419998 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76725639ns 1420000 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76725699ns 1420003 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76725720ns 1420004 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76725760ns 1420006 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76725821ns 1420009 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76725841ns 1420010 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76725881ns 1420012 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76725942ns 1420015 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76725962ns 1420016 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76726002ns 1420018 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76726063ns 1420021 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76726083ns 1420022 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76726123ns 1420024 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76726184ns 1420027 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76726204ns 1420028 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76726245ns 1420030 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76726305ns 1420033 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76726325ns 1420034 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76726366ns 1420036 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76726426ns 1420039 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76726447ns 1420040 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76726487ns 1420042 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76726547ns 1420045 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76726568ns 1420046 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76726608ns 1420048 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76726669ns 1420051 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76726689ns 1420052 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76726729ns 1420054 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76726790ns 1420057 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76726810ns 1420058 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76726850ns 1420060 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76726911ns 1420063 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76726931ns 1420064 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76726972ns 1420066 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76727032ns 1420069 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76727052ns 1420070 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76727093ns 1420072 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76727153ns 1420075 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76727173ns 1420076 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76727214ns 1420078 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76727274ns 1420081 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76727295ns 1420082 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76727335ns 1420084 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76727396ns 1420087 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76727416ns 1420088 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76727456ns 1420090 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76727517ns 1420093 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76727537ns 1420094 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76727577ns 1420096 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76727638ns 1420099 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76727658ns 1420100 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76727698ns 1420102 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76727759ns 1420105 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76727779ns 1420106 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76727820ns 1420108 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76727880ns 1420111 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76727900ns 1420112 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76727941ns 1420114 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76728001ns 1420117 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76728022ns 1420118 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76728062ns 1420120 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76728122ns 1420123 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76728143ns 1420124 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76728183ns 1420126 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76728244ns 1420129 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76728264ns 1420130 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76728304ns 1420132 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76728365ns 1420135 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76728385ns 1420136 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76728425ns 1420138 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76728486ns 1420141 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76728506ns 1420142 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76728547ns 1420144 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76728607ns 1420147 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76728627ns 1420148 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76728668ns 1420150 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76728728ns 1420153 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76728748ns 1420154 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76728789ns 1420156 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76728849ns 1420159 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76728870ns 1420160 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76728910ns 1420162 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76728971ns 1420165 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76728991ns 1420166 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76729031ns 1420168 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76729092ns 1420171 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76729112ns 1420172 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76729152ns 1420174 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76729213ns 1420177 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76729233ns 1420178 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76729273ns 1420180 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76729334ns 1420183 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76729354ns 1420184 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76729395ns 1420186 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76729455ns 1420189 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76729475ns 1420190 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76729516ns 1420192 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76729576ns 1420195 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76729596ns 1420196 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76729637ns 1420198 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76729697ns 1420201 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76729718ns 1420202 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76729758ns 1420204 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76729819ns 1420207 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76729839ns 1420208 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76729879ns 1420210 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76729940ns 1420213 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76729960ns 1420214 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76730000ns 1420216 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76730061ns 1420219 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76730081ns 1420220 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76730121ns 1420222 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76730182ns 1420225 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76730202ns 1420226 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76730243ns 1420228 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76730303ns 1420231 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76730323ns 1420232 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76730364ns 1420234 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76730424ns 1420237 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76730445ns 1420238 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76730485ns 1420240 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76730546ns 1420243 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76730566ns 1420244 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76730606ns 1420246 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76730667ns 1420249 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76730687ns 1420250 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76730727ns 1420252 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76730788ns 1420255 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76730808ns 1420256 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76730848ns 1420258 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76730909ns 1420261 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76730929ns 1420262 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76730970ns 1420264 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76731030ns 1420267 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76731050ns 1420268 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76731091ns 1420270 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76731151ns 1420273 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76731171ns 1420274 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76731212ns 1420276 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76731272ns 1420279 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76731293ns 1420280 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76731333ns 1420282 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76731394ns 1420285 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76731414ns 1420286 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76731454ns 1420288 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76731515ns 1420291 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76731535ns 1420292 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76731575ns 1420294 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76731636ns 1420297 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76731656ns 1420298 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76731696ns 1420300 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76731757ns 1420303 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76731777ns 1420304 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76731818ns 1420306 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76731878ns 1420309 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76731898ns 1420310 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76731939ns 1420312 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76731999ns 1420315 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76732020ns 1420316 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76732060ns 1420318 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76732120ns 1420321 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76732141ns 1420322 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76732181ns 1420324 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76732242ns 1420327 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76732262ns 1420328 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76732302ns 1420330 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76732363ns 1420333 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76732383ns 1420334 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76732423ns 1420336 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76732484ns 1420339 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76732504ns 1420340 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76732545ns 1420342 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76732605ns 1420345 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76732625ns 1420346 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76732666ns 1420348 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76732726ns 1420351 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76732746ns 1420352 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76732787ns 1420354 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76732847ns 1420357 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76732868ns 1420358 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76732908ns 1420360 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76732969ns 1420363 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76732989ns 1420364 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76733029ns 1420366 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76733090ns 1420369 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76733110ns 1420370 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76733150ns 1420372 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76733211ns 1420375 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76733231ns 1420376 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76733271ns 1420378 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76733332ns 1420381 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76733352ns 1420382 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76733393ns 1420384 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76733453ns 1420387 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76733473ns 1420388 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76733514ns 1420390 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76733574ns 1420393 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76733595ns 1420394 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76733635ns 1420396 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76733695ns 1420399 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76733716ns 1420400 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76733756ns 1420402 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76733817ns 1420405 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76733837ns 1420406 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76733877ns 1420408 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76733938ns 1420411 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76733958ns 1420412 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76733998ns 1420414 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76734059ns 1420417 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76734079ns 1420418 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76734119ns 1420420 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76734180ns 1420423 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76734200ns 1420424 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76734241ns 1420426 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76734301ns 1420429 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76734321ns 1420430 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76734362ns 1420432 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76734422ns 1420435 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76734443ns 1420436 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76734483ns 1420438 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76734544ns 1420441 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76734564ns 1420442 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76734604ns 1420444 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76734665ns 1420447 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76734685ns 1420448 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76734725ns 1420450 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76734786ns 1420453 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76734806ns 1420454 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76734846ns 1420456 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76734907ns 1420459 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76734927ns 1420460 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76734968ns 1420462 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76735028ns 1420465 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76735048ns 1420466 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76735089ns 1420468 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76735149ns 1420471 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76735169ns 1420472 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76735210ns 1420474 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76735270ns 1420477 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76735291ns 1420478 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76735331ns 1420480 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76735392ns 1420483 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76735412ns 1420484 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76735452ns 1420486 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76735513ns 1420489 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76735533ns 1420490 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76735573ns 1420492 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76735634ns 1420495 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76735654ns 1420496 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76735694ns 1420498 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76735755ns 1420501 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76735775ns 1420502 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76735816ns 1420504 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76735876ns 1420507 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76735896ns 1420508 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76735937ns 1420510 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76735997ns 1420513 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76736018ns 1420514 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76736058ns 1420516 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76736119ns 1420519 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76736139ns 1420520 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76736179ns 1420522 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76736240ns 1420525 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76736260ns 1420526 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76736300ns 1420528 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76736361ns 1420531 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76736381ns 1420532 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76736421ns 1420534 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76736482ns 1420537 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76736502ns 1420538 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76736543ns 1420540 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76736603ns 1420543 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76736623ns 1420544 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76736664ns 1420546 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76736724ns 1420549 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76736744ns 1420550 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76736785ns 1420552 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76736845ns 1420555 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76736866ns 1420556 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76736906ns 1420558 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76736967ns 1420561 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76736987ns 1420562 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76737027ns 1420564 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76737088ns 1420567 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76737108ns 1420568 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76737148ns 1420570 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76737209ns 1420573 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76737229ns 1420574 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76737269ns 1420576 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76737330ns 1420579 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76737350ns 1420580 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76737391ns 1420582 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76737451ns 1420585 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76737471ns 1420586 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76737512ns 1420588 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76737572ns 1420591 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76737593ns 1420592 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76737633ns 1420594 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76737693ns 1420597 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76737714ns 1420598 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76737754ns 1420600 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76737815ns 1420603 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76737835ns 1420604 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76737875ns 1420606 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76737936ns 1420609 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76737956ns 1420610 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76737996ns 1420612 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76738057ns 1420615 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76738077ns 1420616 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76738118ns 1420618 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76738178ns 1420621 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76738198ns 1420622 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76738239ns 1420624 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76738299ns 1420627 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76738319ns 1420628 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76738360ns 1420630 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76738420ns 1420633 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76738441ns 1420634 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76738481ns 1420636 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76738542ns 1420639 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76738562ns 1420640 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76738602ns 1420642 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76738663ns 1420645 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76738683ns 1420646 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76738723ns 1420648 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76738784ns 1420651 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76738804ns 1420652 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76738844ns 1420654 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76738905ns 1420657 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76738925ns 1420658 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76738966ns 1420660 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76739026ns 1420663 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76739046ns 1420664 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76739087ns 1420666 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76739147ns 1420669 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76739167ns 1420670 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76739208ns 1420672 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76739268ns 1420675 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76739289ns 1420676 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76739329ns 1420678 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76739390ns 1420681 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76739410ns 1420682 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76739450ns 1420684 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76739511ns 1420687 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76739531ns 1420688 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76739571ns 1420690 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76739632ns 1420693 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76739652ns 1420694 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76739692ns 1420696 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76739753ns 1420699 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76739773ns 1420700 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76739814ns 1420702 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76739874ns 1420705 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76739894ns 1420706 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76739935ns 1420708 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76739995ns 1420711 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76740016ns 1420712 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76740056ns 1420714 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76740117ns 1420717 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76740137ns 1420718 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76740177ns 1420720 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76740238ns 1420723 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76740258ns 1420724 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76740298ns 1420726 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76740359ns 1420729 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76740379ns 1420730 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76740419ns 1420732 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76740480ns 1420735 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76740500ns 1420736 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76740541ns 1420738 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76740601ns 1420741 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76740621ns 1420742 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76740662ns 1420744 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76740722ns 1420747 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76740742ns 1420748 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76740783ns 1420750 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76740843ns 1420753 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76740864ns 1420754 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76740904ns 1420756 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76740965ns 1420759 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76740985ns 1420760 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76741025ns 1420762 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76741086ns 1420765 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76741106ns 1420766 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76741146ns 1420768 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76741207ns 1420771 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76741227ns 1420772 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76741267ns 1420774 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76741328ns 1420777 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76741348ns 1420778 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76741389ns 1420780 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76741449ns 1420783 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76741469ns 1420784 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76741510ns 1420786 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76741570ns 1420789 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76741591ns 1420790 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76741631ns 1420792 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76741691ns 1420795 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76741712ns 1420796 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76741752ns 1420798 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76741813ns 1420801 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76741833ns 1420802 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76741873ns 1420804 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76741934ns 1420807 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76741954ns 1420808 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76741994ns 1420810 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76742055ns 1420813 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76742075ns 1420814 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76742116ns 1420816 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76742176ns 1420819 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76742196ns 1420820 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76742237ns 1420822 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76742297ns 1420825 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76742317ns 1420826 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76742358ns 1420828 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76742418ns 1420831 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76742439ns 1420832 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76742479ns 1420834 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76742540ns 1420837 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76742560ns 1420838 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76742600ns 1420840 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76742661ns 1420843 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76742681ns 1420844 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76742721ns 1420846 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76742782ns 1420849 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76742802ns 1420850 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76742842ns 1420852 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76742903ns 1420855 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76742923ns 1420856 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76742964ns 1420858 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76743024ns 1420861 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76743044ns 1420862 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76743085ns 1420864 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76743145ns 1420867 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76743166ns 1420868 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76743206ns 1420870 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76743266ns 1420873 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76743287ns 1420874 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76743327ns 1420876 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76743388ns 1420879 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76743408ns 1420880 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76743448ns 1420882 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76743509ns 1420885 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76743529ns 1420886 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76743569ns 1420888 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76743630ns 1420891 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76743650ns 1420892 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76743691ns 1420894 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76743751ns 1420897 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76743771ns 1420898 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76743812ns 1420900 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76743872ns 1420903 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76743892ns 1420904 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76743933ns 1420906 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76743993ns 1420909 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76744014ns 1420910 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76744054ns 1420912 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76744115ns 1420915 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76744135ns 1420916 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76744175ns 1420918 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76744236ns 1420921 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76744256ns 1420922 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76744296ns 1420924 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76744357ns 1420927 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76744377ns 1420928 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76744417ns 1420930 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76744478ns 1420933 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76744498ns 1420934 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76744539ns 1420936 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76744599ns 1420939 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76744619ns 1420940 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76744660ns 1420942 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76744720ns 1420945 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76744740ns 1420946 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76744781ns 1420948 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76744841ns 1420951 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76744862ns 1420952 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76744902ns 1420954 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76744963ns 1420957 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76744983ns 1420958 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76745023ns 1420960 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76745084ns 1420963 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76745104ns 1420964 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76745144ns 1420966 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76745205ns 1420969 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76745225ns 1420970 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76745265ns 1420972 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76745326ns 1420975 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76745346ns 1420976 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76745387ns 1420978 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76745447ns 1420981 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76745467ns 1420982 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76745508ns 1420984 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76745568ns 1420987 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76745589ns 1420988 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76745629ns 1420990 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76745690ns 1420993 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76745710ns 1420994 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76745750ns 1420996 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76745811ns 1420999 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76745831ns 1421000 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76745871ns 1421002 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76745932ns 1421005 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76745952ns 1421006 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76745992ns 1421008 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76746053ns 1421011 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76746073ns 1421012 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76746114ns 1421014 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76746174ns 1421017 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76746194ns 1421018 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76746235ns 1421020 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76746295ns 1421023 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76746315ns 1421024 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76746356ns 1421026 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76746416ns 1421029 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76746437ns 1421030 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76746477ns 1421032 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76746538ns 1421035 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76746558ns 1421036 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76746598ns 1421038 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76746659ns 1421041 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76746679ns 1421042 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76746719ns 1421044 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76746780ns 1421047 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76746800ns 1421048 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76746840ns 1421050 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76746901ns 1421053 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76746921ns 1421054 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76746962ns 1421056 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76747022ns 1421059 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76747042ns 1421060 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76747083ns 1421062 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76747143ns 1421065 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76747164ns 1421066 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76747204ns 1421068 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76747264ns 1421071 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76747285ns 1421072 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76747325ns 1421074 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76747386ns 1421077 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76747406ns 1421078 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76747446ns 1421080 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76747507ns 1421083 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76747527ns 1421084 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76747567ns 1421086 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76747628ns 1421089 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76747648ns 1421090 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76747689ns 1421092 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76747749ns 1421095 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76747769ns 1421096 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76747810ns 1421098 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76747870ns 1421101 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76747890ns 1421102 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76747931ns 1421104 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76747991ns 1421107 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76748012ns 1421108 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76748052ns 1421110 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76748113ns 1421113 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76748133ns 1421114 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76748173ns 1421116 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76748234ns 1421119 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76748254ns 1421120 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76748294ns 1421122 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76748355ns 1421125 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76748375ns 1421126 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76748415ns 1421128 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76748476ns 1421131 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76748496ns 1421132 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76748537ns 1421134 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76748597ns 1421137 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76748617ns 1421138 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76748658ns 1421140 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76748718ns 1421143 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76748739ns 1421144 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76748779ns 1421146 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76748839ns 1421149 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76748860ns 1421150 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76748900ns 1421152 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76748961ns 1421155 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76748981ns 1421156 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76749021ns 1421158 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76749082ns 1421161 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76749102ns 1421162 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76749142ns 1421164 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76749203ns 1421167 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76749223ns 1421168 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76749263ns 1421170 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76749324ns 1421173 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76749344ns 1421174 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76749385ns 1421176 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76749445ns 1421179 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76749465ns 1421180 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76749506ns 1421182 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76749566ns 1421185 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76749587ns 1421186 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76749627ns 1421188 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76749688ns 1421191 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76749708ns 1421192 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76749748ns 1421194 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76749809ns 1421197 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76749829ns 1421198 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76749869ns 1421200 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76749930ns 1421203 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76749950ns 1421204 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76749990ns 1421206 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76750051ns 1421209 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76750071ns 1421210 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76750112ns 1421212 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76750172ns 1421215 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76750192ns 1421216 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76750233ns 1421218 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76750293ns 1421221 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76750313ns 1421222 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76750435ns 1421228 1c000828 0d80006f jal x0, 216 +76750475ns 1421230 1c000900 f8810113 addi x2, x2, -120 x2=1c00a7e8 x2:1c00a860 +76750495ns 1421231 1c000904 00112223 sw x1, 4(x2) x1:00000000 x2:1c00a7e8 PA:1c00a7ec +76750515ns 1421232 1c000906 00512423 sw x5, 8(x2) x5:a5a5a5a5 x2:1c00a7e8 PA:1c00a7f0 +76750556ns 1421234 1c000908 00612623 sw x6, 12(x2) x6:a5a5a5a5 x2:1c00a7e8 PA:1c00a7f4 +76750576ns 1421235 1c00090a 00712823 sw x7, 16(x2) x7:a5a5a5a5 x2:1c00a7e8 PA:1c00a7f8 +76750596ns 1421236 1c00090c 00812a23 sw x8, 20(x2) x8:a5a5a5a5 x2:1c00a7e8 PA:1c00a7fc +76750616ns 1421237 1c00090e 00912c23 sw x9, 24(x2) x9:1c008d3c x2:1c00a7e8 PA:1c00a800 +76750637ns 1421238 1c000910 00a12e23 sw x10, 28(x2) x10:00000000 x2:1c00a7e8 PA:1c00a804 +76750657ns 1421239 1c000912 02b12023 sw x11, 32(x2) x11:a5a5a5a5 x2:1c00a7e8 PA:1c00a808 +76750677ns 1421240 1c000914 02c12223 sw x12, 36(x2) x12:a5a5a5a5 x2:1c00a7e8 PA:1c00a80c +76750697ns 1421241 1c000916 02d12423 sw x13, 40(x2) x13:a5a5a5a5 x2:1c00a7e8 PA:1c00a810 +76750717ns 1421242 1c000918 02e12623 sw x14, 44(x2) x14:a5a5a5a5 x2:1c00a7e8 PA:1c00a814 +76750738ns 1421243 1c00091a 02f12823 sw x15, 48(x2) x15:00000000 x2:1c00a7e8 PA:1c00a818 +76750758ns 1421244 1c00091c 03012a23 sw x16, 52(x2) x16:a5a5a5a5 x2:1c00a7e8 PA:1c00a81c +76750778ns 1421245 1c00091e 03112c23 sw x17, 56(x2) x17:a5a5a5a5 x2:1c00a7e8 PA:1c00a820 +76750798ns 1421246 1c000920 03212e23 sw x18, 60(x2) x18:1c009140 x2:1c00a7e8 PA:1c00a824 +76750818ns 1421247 1c000922 05312023 sw x19, 64(x2) x19:a5a5a5a5 x2:1c00a7e8 PA:1c00a828 +76750838ns 1421248 1c000924 05412223 sw x20, 68(x2) x20:a5a5a5a5 x2:1c00a7e8 PA:1c00a82c +76750859ns 1421249 1c000926 05512423 sw x21, 72(x2) x21:a5a5a5a5 x2:1c00a7e8 PA:1c00a830 +76750879ns 1421250 1c000928 05612623 sw x22, 76(x2) x22:a5a5a5a5 x2:1c00a7e8 PA:1c00a834 +76750899ns 1421251 1c00092a 05712823 sw x23, 80(x2) x23:a5a5a5a5 x2:1c00a7e8 PA:1c00a838 +76750919ns 1421252 1c00092c 05812a23 sw x24, 84(x2) x24:a5a5a5a5 x2:1c00a7e8 PA:1c00a83c +76750939ns 1421253 1c00092e 05912c23 sw x25, 88(x2) x25:a5a5a5a5 x2:1c00a7e8 PA:1c00a840 +76750960ns 1421254 1c000930 05a12e23 sw x26, 92(x2) x26:a5a5a5a5 x2:1c00a7e8 PA:1c00a844 +76750980ns 1421255 1c000932 07b12023 sw x27, 96(x2) x27:a5a5a5a5 x2:1c00a7e8 PA:1c00a848 +76751000ns 1421256 1c000934 07c12223 sw x28, 100(x2) x28:a5a5a5a5 x2:1c00a7e8 PA:1c00a84c +76751020ns 1421257 1c000936 07d12423 sw x29, 104(x2) x29:a5a5a5a5 x2:1c00a7e8 PA:1c00a850 +76751040ns 1421258 1c000938 07e12623 sw x30, 108(x2) x30:a5a5a5a5 x2:1c00a7e8 PA:1c00a854 +76751061ns 1421259 1c00093a 07f12823 sw x31, 112(x2) x31:a5a5a5a5 x2:1c00a7e8 PA:1c00a858 +76751081ns 1421260 1c00093c 300022f3 csrrs x5, x0, 0x300 x5=00001880 +76751162ns 1421264 1c000940 06512a23 sw x5, 116(x2) x5:00001880 x2:1c00a7e8 PA:1c00a85c +76751182ns 1421265 1c000942 fe810113 addi x2, x2, -24 x2=1c00a7d0 x2:1c00a7e8 +76751202ns 1421266 1c000944 7c0022f3 csrrs x5, x0, 0x7c0 x5=00000000 +76751222ns 1421267 1c000948 7c102373 csrrs x6, x0, 0x7c1 x6=00000000 +76751242ns 1421268 1c00094c 7c2023f3 csrrs x7, x0, 0x7c2 x7=00000000 +76751263ns 1421269 1c000950 7c402e73 csrrs x28, x0, 0x7c4 x28=00000000 +76751283ns 1421270 1c000954 7c502ef3 csrrs x29, x0, 0x7c5 x29=00000000 +76751303ns 1421271 1c000958 7c602f73 csrrs x30, x0, 0x7c6 x30=00000000 +76751323ns 1421272 1c00095c 00512223 sw x5, 4(x2) x5:00000000 x2:1c00a7d0 PA:1c00a7d4 +76751343ns 1421273 1c00095e 00612423 sw x6, 8(x2) x6:00000000 x2:1c00a7d0 PA:1c00a7d8 +76751363ns 1421274 1c000960 00712623 sw x7, 12(x2) x7:00000000 x2:1c00a7d0 PA:1c00a7dc +76751384ns 1421275 1c000962 01c12823 sw x28, 16(x2) x28:00000000 x2:1c00a7d0 PA:1c00a7e0 +76751404ns 1421276 1c000964 01d12a23 sw x29, 20(x2) x29:00000000 x2:1c00a7d0 PA:1c00a7e4 +76751424ns 1421277 1c000966 01e12c23 sw x30, 24(x2) x30:00000000 x2:1c00a7d0 PA:1c00a7e8 +76751444ns 1421278 1c000968 d541a283 lw x5, -684(x3) x5=1c00a890 x3:1c0093dc PA:1c009130 +76751485ns 1421280 1c00096c 0022a023 sw x2, 0(x5) x2:1c00a7d0 x5:1c00a890 PA:1c00a890 +76751505ns 1421281 1c000970 34202573 csrrs x10, x0, 0x342 x10=8000000a +76751525ns 1421282 1c000974 341025f3 csrrs x11, x0, 0x341 x11=1c002310 +76751545ns 1421283 1c000978 01f55613 srli x12, x10, 0x1f x12=00000001 x10:8000000a +76751565ns 1421284 1c00097c 00060963 beq x12, x0, 18 x12:00000001 +76751586ns 1421285 1c00097e 00b12023 sw x11, 0(x2) x11:1c002310 x2:1c00a7d0 PA:1c00a7d0 +76751606ns 1421286 1c000980 00008117 auipc x2, 0x8000 x2=1c008980 +76751626ns 1421287 1c000984 25412103 lw x2, 596(x2) x2=1c0199b0 x2:1c008980 PA:1c008bd4 +76751646ns 1421288 1c000988 17e020ef jal x1, 8574 x1=1c00098c +76751687ns 1421290 1c002b06 01f57513 andi x10, x10, 31 x10=0000000a x10:8000000a +76751707ns 1421291 1c002b08 00251793 slli x15, x10, 0x2 x15=00000028 x10:0000000a +76751727ns 1421292 1c002b0c 99c18513 addi x10, x3, -1636 x10=1c008d78 x3:1c0093dc +76751747ns 1421293 1c002b10 00f50533 add x10, x10, x15 x10=1c008da0 x10:1c008d78 x15:00000028 +76751767ns 1421294 1c002b12 00052783 lw x15, 0(x10) x15=1c002a72 x10:1c008da0 PA:1c008da0 +76751828ns 1421297 1c002b14 00078067 jalr x0, x15, 0 x15:1c002a72 +76751868ns 1421299 1c002a72 ff010113 addi x2, x2, -16 x2=1c0199a0 x2:1c0199b0 +76751888ns 1421300 1c002a74 00112623 sw x1, 12(x2) x1:1c00098c x2:1c0199a0 PA:1c0199ac +76751909ns 1421301 1c002a76 fb3fe0ef jal x1, -4174 x1=1c002a7a +76751949ns 1421303 1c001a28 d681a783 lw x15, -664(x3) x15=00000000 x3:1c0093dc PA:1c009144 +76751969ns 1421304 1c001a2c fd010113 addi x2, x2, -48 x2=1c019970 x2:1c0199a0 +76751989ns 1421305 1c001a2e 02112623 sw x1, 44(x2) x1:1c002a7a x2:1c019970 PA:1c01999c +76752010ns 1421306 1c001a30 02812423 sw x8, 40(x2) x8:a5a5a5a5 x2:1c019970 PA:1c019998 +76752030ns 1421307 1c001a32 02912223 sw x9, 36(x2) x9:1c008d3c x2:1c019970 PA:1c019994 +76752050ns 1421308 1c001a34 03212023 sw x18, 32(x2) x18:1c009140 x2:1c019970 PA:1c019990 +76752070ns 1421309 1c001a36 01312e23 sw x19, 28(x2) x19:a5a5a5a5 x2:1c019970 PA:1c01998c +76752090ns 1421310 1c001a38 01412c23 sw x20, 24(x2) x20:a5a5a5a5 x2:1c019970 PA:1c019988 +76752111ns 1421311 1c001a3a 01512a23 sw x21, 20(x2) x21:a5a5a5a5 x2:1c019970 PA:1c019984 +76752131ns 1421312 1c001a3c 01612823 sw x22, 16(x2) x22:a5a5a5a5 x2:1c019970 PA:1c019980 +76752151ns 1421313 1c001a3e 01712623 sw x23, 12(x2) x23:a5a5a5a5 x2:1c019970 PA:1c01997c +76752171ns 1421314 1c001a40 01812423 sw x24, 8(x2) x24:a5a5a5a5 x2:1c019970 PA:1c019978 +76752191ns 1421315 1c001a42 01912223 sw x25, 4(x2) x25:a5a5a5a5 x2:1c019970 PA:1c019974 +76752212ns 1421316 1c001a44 01a12023 sw x26, 0(x2) x26:a5a5a5a5 x2:1c019970 PA:1c019970 +76752232ns 1421317 1c001a46 12079163 bne x15, x0, 290 x15:00000000 +76752252ns 1421318 1c001a4a d8818793 addi x15, x3, -632 x15=1c009164 x3:1c0093dc +76752272ns 1421319 1c001a4e 0007aa03 lw x20, 0(x15) x20=00000000 x15:1c009164 PA:1c009164 +76752312ns 1421321 1c001a52 001a0a13 addi x20, x20, 1 x20=00000001 x20:00000000 +76752333ns 1421322 1c001a54 0147a023 sw x20, 0(x15) x20:00000001 x15:1c009164 PA:1c009164 +76752353ns 1421323 1c001a58 040a1463 bne x20, x0, 72 x20:00000001 +76752413ns 1421326 1c001aa0 d7818793 addi x15, x3, -648 x15=1c009154 x3:1c0093dc +76752434ns 1421327 1c001aa4 0007a783 lw x15, 0(x15) x15=ffffffff x15:1c009154 PA:1c009154 +76752454ns 1421328 1c001aa6 1c0094b7 lui x9, 0x1c009000 x9=1c009000 +76752474ns 1421329 1c001aaa d7818993 addi x19, x3, -648 x19=1c009154 x3:1c0093dc +76752494ns 1421330 1c001aae c8848493 addi x9, x9, -888 x9=1c008c88 x9:1c009000 +76752514ns 1421331 1c001ab2 d5418a93 addi x21, x3, -684 x21=1c009130 x3:1c0093dc +76752535ns 1421332 1c001ab6 00000413 addi x8, x0, 0 x8=00000000 +76752555ns 1421333 1c001ab8 04fa7163 bgeu x20, x15, 66 x20:00000001 x15:ffffffff +76752575ns 1421334 1c001abc 000aa783 lw x15, 0(x21) x15=1c00a890 x21:1c009130 PA:1c009130 +76752595ns 1421335 1c001ac0 01400713 addi x14, x0, 20 x14=00000014 +76752615ns 1421336 1c001ac2 02c7a783 lw x15, 44(x15) x15=00000000 x15:1c00a890 PA:1c00a8bc +76752656ns 1421338 1c001ac4 02e787b3 mul x15, x15, x14 x15=00000000 x15:00000000 x14:00000014 +76752676ns 1421339 1c001ac8 00f484b3 add x9, x9, x15 x9=1c008c88 x9:1c008c88 x15:00000000 +76752696ns 1421340 1c001aca 0004a703 lw x14, 0(x9) x14=00000001 x9:1c008c88 PA:1c008c88 +76752716ns 1421341 1c001acc 00100793 addi x15, x0, 1 x15=00000001 +76752737ns 1421342 1c001ace 00e7f363 bgeu x15, x14, 6 x15:00000001 x14:00000001 +76752797ns 1421345 1c001ad4 d8c1a783 lw x15, -628(x3) x15=00000000 x3:1c0093dc PA:1c009168 +76752837ns 1421347 1c001ad8 00078263 beq x15, x0, 4 x15:00000000 +76752898ns 1421350 1c001adc 02c12083 lw x1, 44(x2) x1=1c002a7a x2:1c019970 PA:1c01999c +76752918ns 1421351 1c001ade 00800533 add x10, x0, x8 x10=00000000 x8:00000000 +76752938ns 1421352 1c001ae0 02812403 lw x8, 40(x2) x8=a5a5a5a5 x2:1c019970 PA:1c019998 +76752959ns 1421353 1c001ae2 02412483 lw x9, 36(x2) x9=1c008d3c x2:1c019970 PA:1c019994 +76752979ns 1421354 1c001ae4 02012903 lw x18, 32(x2) x18=1c009140 x2:1c019970 PA:1c019990 +76752999ns 1421355 1c001ae6 01c12983 lw x19, 28(x2) x19=a5a5a5a5 x2:1c019970 PA:1c01998c +76753019ns 1421356 1c001ae8 01812a03 lw x20, 24(x2) x20=a5a5a5a5 x2:1c019970 PA:1c019988 +76753039ns 1421357 1c001aea 01412a83 lw x21, 20(x2) x21=a5a5a5a5 x2:1c019970 PA:1c019984 +76753060ns 1421358 1c001aec 01012b03 lw x22, 16(x2) x22=a5a5a5a5 x2:1c019970 PA:1c019980 +76753080ns 1421359 1c001aee 00c12b83 lw x23, 12(x2) x23=a5a5a5a5 x2:1c019970 PA:1c01997c +76753100ns 1421360 1c001af0 00812c03 lw x24, 8(x2) x24=a5a5a5a5 x2:1c019970 PA:1c019978 +76753120ns 1421361 1c001af2 00412c83 lw x25, 4(x2) x25=a5a5a5a5 x2:1c019970 PA:1c019974 +76753140ns 1421362 1c001af4 00012d03 lw x26, 0(x2) x26=a5a5a5a5 x2:1c019970 PA:1c019970 +76753161ns 1421363 1c001af6 03010113 addi x2, x2, 48 x2=1c0199a0 x2:1c019970 +76753181ns 1421364 1c001af8 00008067 jalr x0, x1, 0 x1:1c002a7a +76753221ns 1421366 1c002a7a 00050563 beq x10, x0, 10 x10:00000000 +76753282ns 1421369 1c002a84 00c12083 lw x1, 12(x2) x1=1c00098c x2:1c0199a0 PA:1c0199ac +76753302ns 1421370 1c002a86 01010113 addi x2, x2, 16 x2=1c0199b0 x2:1c0199a0 +76753342ns 1421372 1c002a88 00008067 jalr x0, x1, 0 x1:1c00098c +76753383ns 1421374 1c00098c 0320006f jal x0, 50 +76753443ns 1421377 1c0009be d541a303 lw x6, -684(x3) x6=1c00a890 x3:1c0093dc PA:1c009130 +76753484ns 1421379 1c0009c2 00032103 lw x2, 0(x6) x2=1c00a7d0 x6:1c00a890 PA:1c00a890 +76753524ns 1421381 1c0009c6 00012283 lw x5, 0(x2) x5=1c002310 x2:1c00a7d0 PA:1c00a7d0 +76753564ns 1421383 1c0009c8 34129073 csrrw x0, x5, 0x341 x5:1c002310 +76753585ns 1421384 1c0009cc 00412283 lw x5, 4(x2) x5=00000000 x2:1c00a7d0 PA:1c00a7d4 +76753605ns 1421385 1c0009ce 00812303 lw x6, 8(x2) x6=00000000 x2:1c00a7d0 PA:1c00a7d8 +76753625ns 1421386 1c0009d0 00c12383 lw x7, 12(x2) x7=00000000 x2:1c00a7d0 PA:1c00a7dc +76753645ns 1421387 1c0009d2 01012e03 lw x28, 16(x2) x28=00000000 x2:1c00a7d0 PA:1c00a7e0 +76753665ns 1421388 1c0009d4 01412e83 lw x29, 20(x2) x29=00000000 x2:1c00a7d0 PA:1c00a7e4 +76753686ns 1421389 1c0009d6 01812f03 lw x30, 24(x2) x30=00000000 x2:1c00a7d0 PA:1c00a7e8 +76753706ns 1421390 1c0009d8 7c029073 csrrw x0, x5, 0x7c0 x5:00000000 +76753726ns 1421391 1c0009dc 7c131073 csrrw x0, x6, 0x7c1 x6:00000000 +76753746ns 1421392 1c0009e0 7c239073 csrrw x0, x7, 0x7c2 x7:00000000 +76753766ns 1421393 1c0009e4 7c4e1073 csrrw x0, x28, 0x7c4 x28:00000000 +76753787ns 1421394 1c0009e8 7c5e9073 csrrw x0, x29, 0x7c5 x29:00000000 +76753807ns 1421395 1c0009ec 7c6f1073 csrrw x0, x30, 0x7c6 x30:00000000 +76753827ns 1421396 1c0009f0 01810113 addi x2, x2, 24 x2=1c00a7e8 x2:1c00a7d0 +76753847ns 1421397 1c0009f2 07412283 lw x5, 116(x2) x5=00001880 x2:1c00a7e8 PA:1c00a85c +76753887ns 1421399 1c0009f4 30029073 csrrw x0, x5, 0x300 x5:00001880 +76753968ns 1421403 1c0009f8 00412083 lw x1, 4(x2) x1=00000000 x2:1c00a7e8 PA:1c00a7ec +76753988ns 1421404 1c0009fa 00812283 lw x5, 8(x2) x5=a5a5a5a5 x2:1c00a7e8 PA:1c00a7f0 +76754009ns 1421405 1c0009fc 00c12303 lw x6, 12(x2) x6=a5a5a5a5 x2:1c00a7e8 PA:1c00a7f4 +76754029ns 1421406 1c0009fe 01012383 lw x7, 16(x2) x7=a5a5a5a5 x2:1c00a7e8 PA:1c00a7f8 +76754049ns 1421407 1c000a00 01412403 lw x8, 20(x2) x8=a5a5a5a5 x2:1c00a7e8 PA:1c00a7fc +76754069ns 1421408 1c000a02 01812483 lw x9, 24(x2) x9=1c008d3c x2:1c00a7e8 PA:1c00a800 +76754089ns 1421409 1c000a04 01c12503 lw x10, 28(x2) x10=00000000 x2:1c00a7e8 PA:1c00a804 +76754110ns 1421410 1c000a06 02012583 lw x11, 32(x2) x11=a5a5a5a5 x2:1c00a7e8 PA:1c00a808 +76754130ns 1421411 1c000a08 02412603 lw x12, 36(x2) x12=a5a5a5a5 x2:1c00a7e8 PA:1c00a80c +76754150ns 1421412 1c000a0a 02812683 lw x13, 40(x2) x13=a5a5a5a5 x2:1c00a7e8 PA:1c00a810 +76754170ns 1421413 1c000a0c 02c12703 lw x14, 44(x2) x14=a5a5a5a5 x2:1c00a7e8 PA:1c00a814 +76754190ns 1421414 1c000a0e 03012783 lw x15, 48(x2) x15=00000000 x2:1c00a7e8 PA:1c00a818 +76754211ns 1421415 1c000a10 03412803 lw x16, 52(x2) x16=a5a5a5a5 x2:1c00a7e8 PA:1c00a81c +76754231ns 1421416 1c000a12 03812883 lw x17, 56(x2) x17=a5a5a5a5 x2:1c00a7e8 PA:1c00a820 +76754251ns 1421417 1c000a14 03c12903 lw x18, 60(x2) x18=1c009140 x2:1c00a7e8 PA:1c00a824 +76754271ns 1421418 1c000a16 04012983 lw x19, 64(x2) x19=a5a5a5a5 x2:1c00a7e8 PA:1c00a828 +76754291ns 1421419 1c000a18 04412a03 lw x20, 68(x2) x20=a5a5a5a5 x2:1c00a7e8 PA:1c00a82c +76754311ns 1421420 1c000a1a 04812a83 lw x21, 72(x2) x21=a5a5a5a5 x2:1c00a7e8 PA:1c00a830 +76754352ns 1421422 1c000a1c 04c12b03 lw x22, 76(x2) x22=a5a5a5a5 x2:1c00a7e8 PA:1c00a834 +76754372ns 1421423 1c000a1e 05012b83 lw x23, 80(x2) x23=a5a5a5a5 x2:1c00a7e8 PA:1c00a838 +76754392ns 1421424 1c000a20 05412c03 lw x24, 84(x2) x24=a5a5a5a5 x2:1c00a7e8 PA:1c00a83c +76754412ns 1421425 1c000a22 05812c83 lw x25, 88(x2) x25=a5a5a5a5 x2:1c00a7e8 PA:1c00a840 +76754433ns 1421426 1c000a24 05c12d03 lw x26, 92(x2) x26=a5a5a5a5 x2:1c00a7e8 PA:1c00a844 +76754453ns 1421427 1c000a26 06012d83 lw x27, 96(x2) x27=a5a5a5a5 x2:1c00a7e8 PA:1c00a848 +76754473ns 1421428 1c000a28 06412e03 lw x28, 100(x2) x28=a5a5a5a5 x2:1c00a7e8 PA:1c00a84c +76754493ns 1421429 1c000a2a 06812e83 lw x29, 104(x2) x29=a5a5a5a5 x2:1c00a7e8 PA:1c00a850 +76754513ns 1421430 1c000a2c 06c12f03 lw x30, 108(x2) x30=a5a5a5a5 x2:1c00a7e8 PA:1c00a854 +76754534ns 1421431 1c000a2e 07012f83 lw x31, 112(x2) x31=a5a5a5a5 x2:1c00a7e8 PA:1c00a858 +76754554ns 1421432 1c000a30 07810113 addi x2, x2, 120 x2=1c00a860 x2:1c00a7e8 +76754574ns 1421433 1c000a34 30200073 mret +76754675ns 1421438 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76754736ns 1421441 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76754756ns 1421442 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76754796ns 1421444 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76754857ns 1421447 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76754877ns 1421448 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76754917ns 1421450 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76754978ns 1421453 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76754998ns 1421454 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76755038ns 1421456 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76755099ns 1421459 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76755119ns 1421460 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76755160ns 1421462 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76755220ns 1421465 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76755240ns 1421466 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76755281ns 1421468 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76755341ns 1421471 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76755361ns 1421472 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76755402ns 1421474 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76755462ns 1421477 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76755483ns 1421478 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76755523ns 1421480 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76755584ns 1421483 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76755604ns 1421484 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76755644ns 1421486 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76755705ns 1421489 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76755725ns 1421490 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76755765ns 1421492 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76755826ns 1421495 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76755846ns 1421496 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76755886ns 1421498 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76755947ns 1421501 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76755967ns 1421502 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76756008ns 1421504 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76756068ns 1421507 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76756088ns 1421508 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76756129ns 1421510 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76756189ns 1421513 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76756210ns 1421514 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76756250ns 1421516 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76756311ns 1421519 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76756331ns 1421520 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76756371ns 1421522 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76756432ns 1421525 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76756452ns 1421526 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76756492ns 1421528 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76756553ns 1421531 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76756573ns 1421532 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76756613ns 1421534 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76756674ns 1421537 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76756694ns 1421538 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76756735ns 1421540 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76756795ns 1421543 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76756815ns 1421544 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76756856ns 1421546 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76756916ns 1421549 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76756936ns 1421550 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76756977ns 1421552 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76757037ns 1421555 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76757058ns 1421556 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76757098ns 1421558 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76757159ns 1421561 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76757179ns 1421562 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76757219ns 1421564 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76757280ns 1421567 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76757300ns 1421568 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76757340ns 1421570 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76757401ns 1421573 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76757421ns 1421574 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76757461ns 1421576 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76757522ns 1421579 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76757542ns 1421580 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76757583ns 1421582 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76757643ns 1421585 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76757663ns 1421586 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76757704ns 1421588 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76757764ns 1421591 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76757785ns 1421592 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76757825ns 1421594 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76757885ns 1421597 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76757906ns 1421598 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76757946ns 1421600 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76758007ns 1421603 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76758027ns 1421604 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76758067ns 1421606 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76758128ns 1421609 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76758148ns 1421610 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76758188ns 1421612 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76758249ns 1421615 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76758269ns 1421616 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76758310ns 1421618 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76758370ns 1421621 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76758390ns 1421622 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76758431ns 1421624 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76758491ns 1421627 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76758511ns 1421628 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76758552ns 1421630 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76758612ns 1421633 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76758633ns 1421634 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76758673ns 1421636 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76758734ns 1421639 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76758754ns 1421640 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76758794ns 1421642 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76758855ns 1421645 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76758875ns 1421646 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76758915ns 1421648 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76758976ns 1421651 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76758996ns 1421652 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76759036ns 1421654 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76759097ns 1421657 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76759117ns 1421658 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76759158ns 1421660 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76759218ns 1421663 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76759238ns 1421664 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76759279ns 1421666 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76759339ns 1421669 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76759359ns 1421670 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76759400ns 1421672 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76759460ns 1421675 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76759481ns 1421676 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76759521ns 1421678 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76759582ns 1421681 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76759602ns 1421682 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76759642ns 1421684 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76759703ns 1421687 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76759723ns 1421688 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76759763ns 1421690 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76759824ns 1421693 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76759844ns 1421694 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76759884ns 1421696 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76759945ns 1421699 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76759965ns 1421700 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76760006ns 1421702 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76760066ns 1421705 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76760086ns 1421706 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76760127ns 1421708 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76760187ns 1421711 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76760208ns 1421712 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76760248ns 1421714 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76760309ns 1421717 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76760329ns 1421718 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76760369ns 1421720 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76760430ns 1421723 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76760450ns 1421724 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76760490ns 1421726 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76760551ns 1421729 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76760571ns 1421730 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76760611ns 1421732 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76760672ns 1421735 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76760692ns 1421736 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76760733ns 1421738 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76760793ns 1421741 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76760813ns 1421742 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76760854ns 1421744 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76760914ns 1421747 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76760934ns 1421748 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76760975ns 1421750 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76761035ns 1421753 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76761056ns 1421754 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76761096ns 1421756 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76761157ns 1421759 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76761177ns 1421760 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76761217ns 1421762 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76761278ns 1421765 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76761298ns 1421766 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76761338ns 1421768 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76761399ns 1421771 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76761419ns 1421772 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76761459ns 1421774 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76761520ns 1421777 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76761540ns 1421778 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76761581ns 1421780 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76761641ns 1421783 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76761661ns 1421784 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76761702ns 1421786 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76761762ns 1421789 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76761783ns 1421790 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76761823ns 1421792 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76761883ns 1421795 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76761904ns 1421796 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76761944ns 1421798 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76762005ns 1421801 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76762025ns 1421802 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76762065ns 1421804 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76762126ns 1421807 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76762146ns 1421808 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76762186ns 1421810 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76762247ns 1421813 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76762267ns 1421814 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76762308ns 1421816 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76762368ns 1421819 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76762388ns 1421820 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76762429ns 1421822 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76762489ns 1421825 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76762509ns 1421826 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76762550ns 1421828 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76762610ns 1421831 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76762631ns 1421832 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76762671ns 1421834 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76762732ns 1421837 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76762752ns 1421838 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76762792ns 1421840 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76762853ns 1421843 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76762873ns 1421844 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76762913ns 1421846 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76762974ns 1421849 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76762994ns 1421850 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76763034ns 1421852 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76763095ns 1421855 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76763115ns 1421856 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76763156ns 1421858 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76763216ns 1421861 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76763236ns 1421862 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76763277ns 1421864 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76763337ns 1421867 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76763358ns 1421868 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76763398ns 1421870 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76763458ns 1421873 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76763479ns 1421874 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76763519ns 1421876 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76763580ns 1421879 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76763600ns 1421880 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76763640ns 1421882 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76763701ns 1421885 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76763721ns 1421886 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76763761ns 1421888 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76763822ns 1421891 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76763842ns 1421892 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76763883ns 1421894 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76763943ns 1421897 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76763963ns 1421898 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76764004ns 1421900 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76764064ns 1421903 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76764084ns 1421904 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76764125ns 1421906 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76764185ns 1421909 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76764206ns 1421910 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76764246ns 1421912 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76764307ns 1421915 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76764327ns 1421916 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76764367ns 1421918 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76764428ns 1421921 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76764448ns 1421922 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76764488ns 1421924 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76764549ns 1421927 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76764569ns 1421928 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76764609ns 1421930 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76764670ns 1421933 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76764690ns 1421934 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76764731ns 1421936 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76764791ns 1421939 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76764811ns 1421940 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76764852ns 1421942 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76764912ns 1421945 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76764932ns 1421946 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76764973ns 1421948 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76765033ns 1421951 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76765054ns 1421952 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76765094ns 1421954 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76765155ns 1421957 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76765175ns 1421958 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76765215ns 1421960 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76765276ns 1421963 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76765296ns 1421964 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76765336ns 1421966 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76765397ns 1421969 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76765417ns 1421970 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76765457ns 1421972 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76765518ns 1421975 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76765538ns 1421976 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76765579ns 1421978 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76765639ns 1421981 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76765659ns 1421982 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76765700ns 1421984 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76765760ns 1421987 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76765781ns 1421988 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76765821ns 1421990 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76765882ns 1421993 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76765902ns 1421994 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76765942ns 1421996 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76766003ns 1421999 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76766023ns 1422000 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76766063ns 1422002 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76766124ns 1422005 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76766144ns 1422006 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76766184ns 1422008 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76766245ns 1422011 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76766265ns 1422012 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76766306ns 1422014 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76766366ns 1422017 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76766386ns 1422018 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76766427ns 1422020 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76766487ns 1422023 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76766507ns 1422024 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76766548ns 1422026 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76766608ns 1422029 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76766629ns 1422030 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76766669ns 1422032 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76766730ns 1422035 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76766750ns 1422036 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76766790ns 1422038 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76766851ns 1422041 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76766871ns 1422042 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76766911ns 1422044 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76766972ns 1422047 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76766992ns 1422048 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76767032ns 1422050 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76767093ns 1422053 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76767113ns 1422054 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76767154ns 1422056 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76767214ns 1422059 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76767234ns 1422060 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76767275ns 1422062 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76767335ns 1422065 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76767356ns 1422066 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76767396ns 1422068 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76767456ns 1422071 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76767477ns 1422072 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76767517ns 1422074 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76767578ns 1422077 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76767598ns 1422078 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76767638ns 1422080 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76767699ns 1422083 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76767719ns 1422084 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76767759ns 1422086 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76767820ns 1422089 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76767840ns 1422090 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76767881ns 1422092 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76767941ns 1422095 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76767961ns 1422096 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76768002ns 1422098 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76768062ns 1422101 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76768082ns 1422102 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76768123ns 1422104 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76768183ns 1422107 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76768204ns 1422108 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76768244ns 1422110 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76768305ns 1422113 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76768325ns 1422114 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76768365ns 1422116 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76768426ns 1422119 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76768446ns 1422120 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76768486ns 1422122 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76768547ns 1422125 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76768567ns 1422126 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76768607ns 1422128 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76768668ns 1422131 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76768688ns 1422132 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76768729ns 1422134 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76768789ns 1422137 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76768809ns 1422138 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76768850ns 1422140 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76768910ns 1422143 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76768931ns 1422144 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76768971ns 1422146 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76769031ns 1422149 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76769052ns 1422150 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76769092ns 1422152 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76769153ns 1422155 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76769173ns 1422156 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76769213ns 1422158 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76769274ns 1422161 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76769294ns 1422162 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76769334ns 1422164 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76769395ns 1422167 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76769415ns 1422168 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76769455ns 1422170 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76769516ns 1422173 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76769536ns 1422174 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76769577ns 1422176 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76769637ns 1422179 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76769657ns 1422180 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76769698ns 1422182 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76769758ns 1422185 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76769779ns 1422186 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76769819ns 1422188 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76769880ns 1422191 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76769900ns 1422192 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76769940ns 1422194 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76770001ns 1422197 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76770021ns 1422198 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76770061ns 1422200 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76770122ns 1422203 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76770142ns 1422204 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76770182ns 1422206 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76770243ns 1422209 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76770263ns 1422210 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76770304ns 1422212 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76770364ns 1422215 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76770384ns 1422216 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76770425ns 1422218 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76770485ns 1422221 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76770505ns 1422222 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76770546ns 1422224 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76770606ns 1422227 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76770627ns 1422228 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76770667ns 1422230 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76770728ns 1422233 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76770748ns 1422234 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76770788ns 1422236 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76770849ns 1422239 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76770869ns 1422240 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76770909ns 1422242 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76770970ns 1422245 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76770990ns 1422246 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76771030ns 1422248 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76771091ns 1422251 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76771111ns 1422252 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76771152ns 1422254 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76771212ns 1422257 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76771232ns 1422258 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76771273ns 1422260 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76771333ns 1422263 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76771354ns 1422264 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76771394ns 1422266 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76771455ns 1422269 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76771475ns 1422270 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76771515ns 1422272 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76771576ns 1422275 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76771596ns 1422276 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76771636ns 1422278 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76771697ns 1422281 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76771717ns 1422282 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76771757ns 1422284 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76771818ns 1422287 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76771838ns 1422288 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76771879ns 1422290 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76771939ns 1422293 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76771959ns 1422294 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76772000ns 1422296 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76772060ns 1422299 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76772080ns 1422300 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76772121ns 1422302 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76772181ns 1422305 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76772202ns 1422306 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76772242ns 1422308 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76772303ns 1422311 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76772323ns 1422312 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76772363ns 1422314 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76772424ns 1422317 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76772444ns 1422318 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76772484ns 1422320 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76772545ns 1422323 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76772565ns 1422324 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76772605ns 1422326 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76772666ns 1422329 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76772686ns 1422330 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76772727ns 1422332 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76772787ns 1422335 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76772807ns 1422336 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76772848ns 1422338 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76772908ns 1422341 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76772929ns 1422342 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76772969ns 1422344 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76773029ns 1422347 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76773050ns 1422348 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76773090ns 1422350 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76773151ns 1422353 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76773171ns 1422354 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76773211ns 1422356 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76773272ns 1422359 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76773292ns 1422360 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76773332ns 1422362 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76773393ns 1422365 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76773413ns 1422366 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76773454ns 1422368 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76773514ns 1422371 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76773534ns 1422372 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76773575ns 1422374 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76773635ns 1422377 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76773655ns 1422378 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76773696ns 1422380 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76773756ns 1422383 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76773777ns 1422384 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76773817ns 1422386 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76773878ns 1422389 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76773898ns 1422390 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76773938ns 1422392 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76773999ns 1422395 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76774019ns 1422396 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76774059ns 1422398 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76774120ns 1422401 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76774140ns 1422402 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76774180ns 1422404 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76774241ns 1422407 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76774261ns 1422408 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76774302ns 1422410 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76774362ns 1422413 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76774382ns 1422414 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76774423ns 1422416 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76774483ns 1422419 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76774503ns 1422420 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76774544ns 1422422 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76774604ns 1422425 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76774625ns 1422426 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76774665ns 1422428 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76774726ns 1422431 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76774746ns 1422432 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76774786ns 1422434 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76774847ns 1422437 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76774867ns 1422438 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76774907ns 1422440 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76774968ns 1422443 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76774988ns 1422444 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76775028ns 1422446 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76775089ns 1422449 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76775109ns 1422450 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76775150ns 1422452 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76775210ns 1422455 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76775230ns 1422456 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76775271ns 1422458 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76775331ns 1422461 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76775352ns 1422462 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76775392ns 1422464 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76775453ns 1422467 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76775473ns 1422468 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76775513ns 1422470 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76775574ns 1422473 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76775594ns 1422474 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76775634ns 1422476 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76775695ns 1422479 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76775715ns 1422480 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76775755ns 1422482 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76775816ns 1422485 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76775836ns 1422486 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76775877ns 1422488 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76775937ns 1422491 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76775957ns 1422492 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76775998ns 1422494 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76776058ns 1422497 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76776078ns 1422498 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76776119ns 1422500 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76776179ns 1422503 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76776200ns 1422504 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76776240ns 1422506 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76776301ns 1422509 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76776321ns 1422510 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76776361ns 1422512 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76776422ns 1422515 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76776442ns 1422516 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76776482ns 1422518 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76776543ns 1422521 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76776563ns 1422522 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76776603ns 1422524 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76776664ns 1422527 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76776684ns 1422528 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76776725ns 1422530 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76776785ns 1422533 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76776805ns 1422534 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76776846ns 1422536 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76776906ns 1422539 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76776927ns 1422540 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76776967ns 1422542 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76777027ns 1422545 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76777048ns 1422546 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76777088ns 1422548 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76777149ns 1422551 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76777169ns 1422552 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76777209ns 1422554 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76777270ns 1422557 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76777290ns 1422558 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76777330ns 1422560 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76777391ns 1422563 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76777411ns 1422564 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76777452ns 1422566 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76777512ns 1422569 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76777532ns 1422570 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76777573ns 1422572 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76777633ns 1422575 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76777653ns 1422576 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76777694ns 1422578 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76777754ns 1422581 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76777775ns 1422582 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76777815ns 1422584 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76777876ns 1422587 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76777896ns 1422588 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76777936ns 1422590 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76777997ns 1422593 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76778017ns 1422594 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76778057ns 1422596 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76778118ns 1422599 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76778138ns 1422600 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76778178ns 1422602 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76778239ns 1422605 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76778259ns 1422606 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76778300ns 1422608 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76778360ns 1422611 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76778380ns 1422612 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76778421ns 1422614 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76778481ns 1422617 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76778502ns 1422618 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76778542ns 1422620 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76778602ns 1422623 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76778623ns 1422624 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76778663ns 1422626 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76778724ns 1422629 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76778744ns 1422630 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76778784ns 1422632 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76778845ns 1422635 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76778865ns 1422636 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76778905ns 1422638 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76778966ns 1422641 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76778986ns 1422642 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76779027ns 1422644 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76779087ns 1422647 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76779107ns 1422648 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76779148ns 1422650 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76779208ns 1422653 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76779228ns 1422654 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76779269ns 1422656 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76779329ns 1422659 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76779350ns 1422660 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76779390ns 1422662 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76779451ns 1422665 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76779471ns 1422666 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76779511ns 1422668 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76779572ns 1422671 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76779592ns 1422672 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76779632ns 1422674 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76779693ns 1422677 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76779713ns 1422678 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76779753ns 1422680 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76779814ns 1422683 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76779834ns 1422684 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76779875ns 1422686 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76779935ns 1422689 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76779955ns 1422690 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76779996ns 1422692 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76780056ns 1422695 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76780076ns 1422696 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76780117ns 1422698 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76780177ns 1422701 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76780198ns 1422702 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76780238ns 1422704 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76780299ns 1422707 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76780319ns 1422708 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76780359ns 1422710 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76780420ns 1422713 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76780440ns 1422714 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76780480ns 1422716 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76780541ns 1422719 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76780561ns 1422720 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76780601ns 1422722 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76780662ns 1422725 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76780682ns 1422726 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76780723ns 1422728 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76780783ns 1422731 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76780803ns 1422732 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76780844ns 1422734 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76780904ns 1422737 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76780925ns 1422738 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76780965ns 1422740 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76781026ns 1422743 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76781046ns 1422744 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76781086ns 1422746 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76781147ns 1422749 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76781167ns 1422750 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76781207ns 1422752 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76781268ns 1422755 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76781288ns 1422756 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76781328ns 1422758 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76781389ns 1422761 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76781409ns 1422762 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76781450ns 1422764 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76781510ns 1422767 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76781530ns 1422768 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76781571ns 1422770 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76781631ns 1422773 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76781651ns 1422774 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76781692ns 1422776 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76781752ns 1422779 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76781773ns 1422780 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76781813ns 1422782 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76781874ns 1422785 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76781894ns 1422786 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76781934ns 1422788 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76781995ns 1422791 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76782015ns 1422792 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76782055ns 1422794 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76782116ns 1422797 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76782136ns 1422798 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76782176ns 1422800 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76782237ns 1422803 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76782257ns 1422804 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76782298ns 1422806 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76782358ns 1422809 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76782378ns 1422810 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76782419ns 1422812 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76782479ns 1422815 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76782500ns 1422816 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76782540ns 1422818 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76782600ns 1422821 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76782621ns 1422822 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76782661ns 1422824 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76782722ns 1422827 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76782742ns 1422828 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76782782ns 1422830 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76782843ns 1422833 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76782863ns 1422834 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76782903ns 1422836 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76782964ns 1422839 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76782984ns 1422840 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76783025ns 1422842 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76783085ns 1422845 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76783105ns 1422846 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76783146ns 1422848 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76783206ns 1422851 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76783226ns 1422852 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76783267ns 1422854 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76783327ns 1422857 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76783348ns 1422858 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76783388ns 1422860 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76783449ns 1422863 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76783469ns 1422864 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76783509ns 1422866 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76783570ns 1422869 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76783590ns 1422870 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76783630ns 1422872 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76783691ns 1422875 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76783711ns 1422876 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76783751ns 1422878 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76783812ns 1422881 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76783832ns 1422882 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76783873ns 1422884 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76783933ns 1422887 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76783953ns 1422888 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76783994ns 1422890 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76784054ns 1422893 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76784075ns 1422894 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76784115ns 1422896 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76784175ns 1422899 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76784196ns 1422900 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76784236ns 1422902 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76784297ns 1422905 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76784317ns 1422906 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76784357ns 1422908 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76784418ns 1422911 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76784438ns 1422912 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76784478ns 1422914 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76784539ns 1422917 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76784559ns 1422918 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76784599ns 1422920 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76784660ns 1422923 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76784680ns 1422924 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76784721ns 1422926 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76784781ns 1422929 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76784801ns 1422930 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76784842ns 1422932 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76784902ns 1422935 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76784923ns 1422936 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76784963ns 1422938 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76785024ns 1422941 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76785044ns 1422942 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76785084ns 1422944 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76785145ns 1422947 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76785165ns 1422948 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76785205ns 1422950 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76785266ns 1422953 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76785286ns 1422954 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76785326ns 1422956 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76785387ns 1422959 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76785407ns 1422960 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76785448ns 1422962 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76785508ns 1422965 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76785528ns 1422966 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76785569ns 1422968 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76785629ns 1422971 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76785649ns 1422972 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76785690ns 1422974 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76785750ns 1422977 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76785771ns 1422978 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76785811ns 1422980 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76785872ns 1422983 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76785892ns 1422984 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76785932ns 1422986 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76785993ns 1422989 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76786013ns 1422990 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76786053ns 1422992 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76786114ns 1422995 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76786134ns 1422996 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76786174ns 1422998 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76786235ns 1423001 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76786255ns 1423002 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76786296ns 1423004 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76786356ns 1423007 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76786376ns 1423008 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76786417ns 1423010 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76786477ns 1423013 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76786498ns 1423014 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76786538ns 1423016 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76786599ns 1423019 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76786619ns 1423020 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76786659ns 1423022 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76786720ns 1423025 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76786740ns 1423026 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76786780ns 1423028 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76786841ns 1423031 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76786861ns 1423032 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76786901ns 1423034 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76786962ns 1423037 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76786982ns 1423038 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76787023ns 1423040 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76787083ns 1423043 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76787103ns 1423044 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76787144ns 1423046 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76787204ns 1423049 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76787224ns 1423050 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76787265ns 1423052 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76787325ns 1423055 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76787346ns 1423056 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76787386ns 1423058 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76787447ns 1423061 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76787467ns 1423062 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76787507ns 1423064 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76787568ns 1423067 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76787588ns 1423068 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76787628ns 1423070 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76787689ns 1423073 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76787709ns 1423074 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76787749ns 1423076 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76787810ns 1423079 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76787830ns 1423080 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76787871ns 1423082 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76787931ns 1423085 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76787951ns 1423086 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76787992ns 1423088 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76788052ns 1423091 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76788073ns 1423092 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76788113ns 1423094 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76788173ns 1423097 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76788194ns 1423098 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76788234ns 1423100 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76788295ns 1423103 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76788315ns 1423104 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76788355ns 1423106 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76788416ns 1423109 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76788436ns 1423110 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76788476ns 1423112 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76788537ns 1423115 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76788557ns 1423116 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76788598ns 1423118 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76788658ns 1423121 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76788678ns 1423122 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76788719ns 1423124 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76788779ns 1423127 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76788799ns 1423128 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76788840ns 1423130 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76788900ns 1423133 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76788921ns 1423134 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76788961ns 1423136 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76789022ns 1423139 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76789042ns 1423140 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76789082ns 1423142 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76789143ns 1423145 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76789163ns 1423146 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76789203ns 1423148 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76789264ns 1423151 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76789284ns 1423152 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76789324ns 1423154 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76789385ns 1423157 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76789405ns 1423158 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76789446ns 1423160 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76789506ns 1423163 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76789526ns 1423164 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76789567ns 1423166 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76789627ns 1423169 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76789647ns 1423170 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76789688ns 1423172 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76789748ns 1423175 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76789769ns 1423176 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76789809ns 1423178 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76789870ns 1423181 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76789890ns 1423182 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76789930ns 1423184 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76789991ns 1423187 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76790011ns 1423188 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76790051ns 1423190 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76790112ns 1423193 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76790132ns 1423194 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76790172ns 1423196 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76790233ns 1423199 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76790253ns 1423200 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76790294ns 1423202 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76790354ns 1423205 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76790374ns 1423206 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76790415ns 1423208 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76790475ns 1423211 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76790496ns 1423212 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76790536ns 1423214 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76790597ns 1423217 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76790617ns 1423218 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76790657ns 1423220 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76790718ns 1423223 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76790738ns 1423224 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76790778ns 1423226 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76790839ns 1423229 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76790859ns 1423230 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76790899ns 1423232 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76790960ns 1423235 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76790980ns 1423236 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76791021ns 1423238 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76791081ns 1423241 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76791101ns 1423242 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76791142ns 1423244 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76791202ns 1423247 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76791222ns 1423248 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76791263ns 1423250 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76791323ns 1423253 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76791344ns 1423254 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76791384ns 1423256 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76791445ns 1423259 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76791465ns 1423260 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76791505ns 1423262 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76791566ns 1423265 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76791586ns 1423266 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76791626ns 1423268 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76791687ns 1423271 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76791707ns 1423272 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76791747ns 1423274 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76791808ns 1423277 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76791828ns 1423278 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76791869ns 1423280 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76791929ns 1423283 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76791949ns 1423284 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76791990ns 1423286 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76792050ns 1423289 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76792071ns 1423290 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76792111ns 1423292 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76792171ns 1423295 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76792192ns 1423296 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76792232ns 1423298 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76792293ns 1423301 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76792313ns 1423302 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76792353ns 1423304 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76792414ns 1423307 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76792434ns 1423308 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76792474ns 1423310 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76792535ns 1423313 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76792555ns 1423314 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76792596ns 1423316 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76792656ns 1423319 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76792676ns 1423320 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76792717ns 1423322 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76792777ns 1423325 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76792797ns 1423326 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76792838ns 1423328 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76792898ns 1423331 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76792919ns 1423332 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76792959ns 1423334 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76793020ns 1423337 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76793040ns 1423338 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76793080ns 1423340 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76793141ns 1423343 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76793161ns 1423344 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76793201ns 1423346 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76793262ns 1423349 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76793282ns 1423350 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76793322ns 1423352 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76793383ns 1423355 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76793403ns 1423356 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76793444ns 1423358 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76793504ns 1423361 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76793524ns 1423362 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76793565ns 1423364 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76793625ns 1423367 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76793646ns 1423368 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76793686ns 1423370 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76793746ns 1423373 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76793767ns 1423374 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76793807ns 1423376 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76793868ns 1423379 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76793888ns 1423380 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76793928ns 1423382 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76793989ns 1423385 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76794009ns 1423386 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76794049ns 1423388 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76794110ns 1423391 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76794130ns 1423392 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76794171ns 1423394 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76794231ns 1423397 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76794251ns 1423398 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76794292ns 1423400 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76794352ns 1423403 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76794372ns 1423404 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76794413ns 1423406 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76794473ns 1423409 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76794494ns 1423410 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76794534ns 1423412 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76794595ns 1423415 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76794615ns 1423416 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76794655ns 1423418 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76794716ns 1423421 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76794736ns 1423422 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76794776ns 1423424 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76794837ns 1423427 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76794857ns 1423428 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76794897ns 1423430 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76794958ns 1423433 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76794978ns 1423434 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76795019ns 1423436 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76795079ns 1423439 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76795099ns 1423440 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76795140ns 1423442 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76795200ns 1423445 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76795220ns 1423446 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76795261ns 1423448 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76795321ns 1423451 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76795342ns 1423452 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76795382ns 1423454 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76795443ns 1423457 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76795463ns 1423458 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76795503ns 1423460 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76795564ns 1423463 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76795584ns 1423464 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76795624ns 1423466 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76795685ns 1423469 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76795705ns 1423470 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76795745ns 1423472 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76795806ns 1423475 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76795826ns 1423476 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76795867ns 1423478 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76795927ns 1423481 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76795947ns 1423482 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76795988ns 1423484 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76796048ns 1423487 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76796069ns 1423488 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76796109ns 1423490 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76796170ns 1423493 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76796190ns 1423494 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76796230ns 1423496 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76796291ns 1423499 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76796311ns 1423500 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76796351ns 1423502 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76796412ns 1423505 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76796432ns 1423506 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76796472ns 1423508 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76796533ns 1423511 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76796553ns 1423512 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76796594ns 1423514 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76796654ns 1423517 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76796674ns 1423518 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76796715ns 1423520 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76796775ns 1423523 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76796795ns 1423524 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76796836ns 1423526 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76796896ns 1423529 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76796917ns 1423530 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76796957ns 1423532 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76797018ns 1423535 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76797038ns 1423536 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76797078ns 1423538 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76797139ns 1423541 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76797159ns 1423542 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76797199ns 1423544 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76797260ns 1423547 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76797280ns 1423548 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76797320ns 1423550 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76797381ns 1423553 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76797401ns 1423554 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76797442ns 1423556 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76797502ns 1423559 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76797522ns 1423560 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76797563ns 1423562 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76797623ns 1423565 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76797644ns 1423566 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76797684ns 1423568 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76797744ns 1423571 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76797765ns 1423572 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76797805ns 1423574 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76797866ns 1423577 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76797886ns 1423578 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76797926ns 1423580 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76797987ns 1423583 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76798007ns 1423584 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76798047ns 1423586 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76798108ns 1423589 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76798128ns 1423590 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76798169ns 1423592 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76798229ns 1423595 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76798249ns 1423596 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76798290ns 1423598 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76798350ns 1423601 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76798370ns 1423602 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76798411ns 1423604 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76798471ns 1423607 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76798492ns 1423608 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76798532ns 1423610 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76798593ns 1423613 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76798613ns 1423614 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76798653ns 1423616 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76798714ns 1423619 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76798734ns 1423620 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76798774ns 1423622 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76798835ns 1423625 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76798855ns 1423626 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76798895ns 1423628 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76798956ns 1423631 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76798976ns 1423632 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76799017ns 1423634 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76799077ns 1423637 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76799097ns 1423638 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76799138ns 1423640 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76799198ns 1423643 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76799219ns 1423644 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76799259ns 1423646 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76799319ns 1423649 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76799340ns 1423650 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76799380ns 1423652 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76799441ns 1423655 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76799461ns 1423656 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76799501ns 1423658 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76799562ns 1423661 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76799582ns 1423662 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76799622ns 1423664 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76799683ns 1423667 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76799703ns 1423668 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76799743ns 1423670 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76799804ns 1423673 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76799824ns 1423674 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76799865ns 1423676 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76799925ns 1423679 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76799945ns 1423680 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76799986ns 1423682 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76800046ns 1423685 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76800067ns 1423686 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76800107ns 1423688 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76800168ns 1423691 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76800188ns 1423692 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76800228ns 1423694 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76800289ns 1423697 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76800309ns 1423698 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76800349ns 1423700 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76800410ns 1423703 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76800430ns 1423704 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76800470ns 1423706 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76800531ns 1423709 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76800551ns 1423710 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76800592ns 1423712 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76800652ns 1423715 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76800672ns 1423716 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76800713ns 1423718 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76800773ns 1423721 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76800793ns 1423722 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76800834ns 1423724 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76800894ns 1423727 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76800915ns 1423728 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76800955ns 1423730 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76801016ns 1423733 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76801036ns 1423734 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76801076ns 1423736 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76801137ns 1423739 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76801157ns 1423740 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76801197ns 1423742 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76801258ns 1423745 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76801278ns 1423746 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76801318ns 1423748 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76801379ns 1423751 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76801399ns 1423752 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76801440ns 1423754 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76801500ns 1423757 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76801520ns 1423758 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76801561ns 1423760 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76801621ns 1423763 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76801642ns 1423764 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76801682ns 1423766 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76801743ns 1423769 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76801763ns 1423770 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76801803ns 1423772 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76801864ns 1423775 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76801884ns 1423776 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76801924ns 1423778 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76801985ns 1423781 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76802005ns 1423782 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76802045ns 1423784 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76802106ns 1423787 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76802126ns 1423788 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76802167ns 1423790 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76802227ns 1423793 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76802247ns 1423794 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76802288ns 1423796 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76802348ns 1423799 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76802368ns 1423800 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76802409ns 1423802 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76802469ns 1423805 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76802490ns 1423806 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76802530ns 1423808 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76802591ns 1423811 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76802611ns 1423812 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76802651ns 1423814 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76802712ns 1423817 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76802732ns 1423818 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76802772ns 1423820 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76802833ns 1423823 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76802853ns 1423824 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76802893ns 1423826 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76802954ns 1423829 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76802974ns 1423830 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76803015ns 1423832 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76803075ns 1423835 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76803095ns 1423836 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76803136ns 1423838 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76803196ns 1423841 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76803217ns 1423842 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76803257ns 1423844 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76803317ns 1423847 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76803338ns 1423848 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76803378ns 1423850 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76803439ns 1423853 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76803459ns 1423854 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76803499ns 1423856 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76803560ns 1423859 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76803580ns 1423860 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76803620ns 1423862 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76803681ns 1423865 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76803701ns 1423866 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76803742ns 1423868 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76803802ns 1423871 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76803822ns 1423872 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76803863ns 1423874 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76803923ns 1423877 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76803943ns 1423878 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76803984ns 1423880 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76804044ns 1423883 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76804065ns 1423884 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76804105ns 1423886 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76804166ns 1423889 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76804186ns 1423890 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76804226ns 1423892 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76804287ns 1423895 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76804307ns 1423896 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76804347ns 1423898 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76804408ns 1423901 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76804428ns 1423902 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76804468ns 1423904 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76804529ns 1423907 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76804549ns 1423908 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76804590ns 1423910 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76804650ns 1423913 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76804670ns 1423914 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76804711ns 1423916 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76804771ns 1423919 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76804791ns 1423920 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76804832ns 1423922 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76804892ns 1423925 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76804913ns 1423926 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76804953ns 1423928 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76805014ns 1423931 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76805034ns 1423932 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76805074ns 1423934 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76805135ns 1423937 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76805155ns 1423938 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76805195ns 1423940 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76805256ns 1423943 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76805276ns 1423944 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76805316ns 1423946 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76805377ns 1423949 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76805397ns 1423950 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76805438ns 1423952 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76805498ns 1423955 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76805518ns 1423956 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76805559ns 1423958 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76805619ns 1423961 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76805640ns 1423962 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76805680ns 1423964 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76805741ns 1423967 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76805761ns 1423968 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76805801ns 1423970 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76805862ns 1423973 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76805882ns 1423974 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76805922ns 1423976 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76805983ns 1423979 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76806003ns 1423980 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76806043ns 1423982 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76806104ns 1423985 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76806124ns 1423986 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76806165ns 1423988 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76806225ns 1423991 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76806245ns 1423992 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76806286ns 1423994 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76806346ns 1423997 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76806366ns 1423998 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76806407ns 1424000 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76806467ns 1424003 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76806488ns 1424004 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76806528ns 1424006 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76806589ns 1424009 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76806609ns 1424010 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76806649ns 1424012 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76806710ns 1424015 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76806730ns 1424016 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76806770ns 1424018 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76806831ns 1424021 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76806851ns 1424022 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76806891ns 1424024 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76806952ns 1424027 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76806972ns 1424028 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76807013ns 1424030 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76807073ns 1424033 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76807093ns 1424034 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76807134ns 1424036 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76807194ns 1424039 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76807215ns 1424040 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76807255ns 1424042 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76807315ns 1424045 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76807336ns 1424046 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76807376ns 1424048 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76807437ns 1424051 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76807457ns 1424052 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76807497ns 1424054 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76807558ns 1424057 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76807578ns 1424058 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76807618ns 1424060 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76807679ns 1424063 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76807699ns 1424064 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76807740ns 1424066 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76807800ns 1424069 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76807820ns 1424070 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76807861ns 1424072 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76807921ns 1424075 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76807941ns 1424076 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76807982ns 1424078 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76808042ns 1424081 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76808063ns 1424082 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76808103ns 1424084 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76808164ns 1424087 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76808184ns 1424088 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76808224ns 1424090 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76808285ns 1424093 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76808305ns 1424094 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76808345ns 1424096 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76808406ns 1424099 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76808426ns 1424100 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76808466ns 1424102 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76808527ns 1424105 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76808547ns 1424106 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76808588ns 1424108 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76808648ns 1424111 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76808668ns 1424112 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76808709ns 1424114 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76808769ns 1424117 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76808790ns 1424118 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76808830ns 1424120 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76808890ns 1424123 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76808911ns 1424124 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76808951ns 1424126 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76809012ns 1424129 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76809032ns 1424130 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76809072ns 1424132 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76809133ns 1424135 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76809153ns 1424136 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76809193ns 1424138 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76809254ns 1424141 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76809274ns 1424142 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76809315ns 1424144 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76809375ns 1424147 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76809395ns 1424148 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76809436ns 1424150 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76809496ns 1424153 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76809516ns 1424154 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76809557ns 1424156 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76809617ns 1424159 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76809638ns 1424160 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76809678ns 1424162 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76809739ns 1424165 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76809759ns 1424166 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76809799ns 1424168 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76809860ns 1424171 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76809880ns 1424172 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76809920ns 1424174 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76809981ns 1424177 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76810001ns 1424178 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76810041ns 1424180 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76810102ns 1424183 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76810122ns 1424184 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76810163ns 1424186 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76810223ns 1424189 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76810243ns 1424190 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76810284ns 1424192 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76810344ns 1424195 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76810364ns 1424196 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76810405ns 1424198 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76810465ns 1424201 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76810486ns 1424202 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76810526ns 1424204 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76810587ns 1424207 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76810607ns 1424208 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76810647ns 1424210 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76810708ns 1424213 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76810728ns 1424214 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76810768ns 1424216 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76810829ns 1424219 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76810849ns 1424220 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76810889ns 1424222 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76810950ns 1424225 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76810970ns 1424226 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76811011ns 1424228 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76811071ns 1424231 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76811091ns 1424232 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76811132ns 1424234 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76811192ns 1424237 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76811213ns 1424238 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76811253ns 1424240 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76811314ns 1424243 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76811334ns 1424244 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76811374ns 1424246 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76811435ns 1424249 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76811455ns 1424250 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76811495ns 1424252 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76811556ns 1424255 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76811576ns 1424256 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76811616ns 1424258 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76811677ns 1424261 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76811697ns 1424262 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76811738ns 1424264 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76811798ns 1424267 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76811818ns 1424268 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76811859ns 1424270 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76811919ns 1424273 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76811939ns 1424274 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76811980ns 1424276 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76812040ns 1424279 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76812061ns 1424280 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76812101ns 1424282 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76812162ns 1424285 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76812182ns 1424286 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76812222ns 1424288 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76812283ns 1424291 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76812303ns 1424292 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76812343ns 1424294 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76812404ns 1424297 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76812424ns 1424298 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76812464ns 1424300 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76812525ns 1424303 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76812545ns 1424304 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76812586ns 1424306 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76812646ns 1424309 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76812666ns 1424310 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76812707ns 1424312 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76812767ns 1424315 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76812788ns 1424316 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76812828ns 1424318 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76812888ns 1424321 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76812909ns 1424322 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76812949ns 1424324 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76813010ns 1424327 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76813030ns 1424328 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76813070ns 1424330 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76813131ns 1424333 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76813151ns 1424334 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76813191ns 1424336 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76813252ns 1424339 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76813272ns 1424340 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76813313ns 1424342 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76813373ns 1424345 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76813393ns 1424346 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76813434ns 1424348 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76813494ns 1424351 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76813514ns 1424352 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76813555ns 1424354 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76813615ns 1424357 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76813636ns 1424358 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76813676ns 1424360 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76813737ns 1424363 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76813757ns 1424364 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76813797ns 1424366 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76813858ns 1424369 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76813878ns 1424370 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76813918ns 1424372 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76813979ns 1424375 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76813999ns 1424376 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76814039ns 1424378 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76814100ns 1424381 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76814120ns 1424382 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76814161ns 1424384 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76814221ns 1424387 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76814241ns 1424388 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76814282ns 1424390 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76814342ns 1424393 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76814363ns 1424394 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76814403ns 1424396 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76814463ns 1424399 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76814484ns 1424400 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76814524ns 1424402 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76814585ns 1424405 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76814605ns 1424406 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76814645ns 1424408 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76814706ns 1424411 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76814726ns 1424412 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76814766ns 1424414 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76814827ns 1424417 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76814847ns 1424418 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76814887ns 1424420 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76814948ns 1424423 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76814968ns 1424424 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76815009ns 1424426 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76815069ns 1424429 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76815089ns 1424430 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76815130ns 1424432 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76815190ns 1424435 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76815211ns 1424436 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76815251ns 1424438 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76815312ns 1424441 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76815332ns 1424442 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76815372ns 1424444 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76815433ns 1424447 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76815453ns 1424448 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76815493ns 1424450 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76815554ns 1424453 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76815574ns 1424454 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76815614ns 1424456 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76815675ns 1424459 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76815695ns 1424460 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76815736ns 1424462 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76815796ns 1424465 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76815816ns 1424466 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76815857ns 1424468 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76815917ns 1424471 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76815937ns 1424472 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76815978ns 1424474 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76816038ns 1424477 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76816059ns 1424478 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76816099ns 1424480 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76816160ns 1424483 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76816180ns 1424484 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76816220ns 1424486 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76816281ns 1424489 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76816301ns 1424490 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76816341ns 1424492 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76816402ns 1424495 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76816422ns 1424496 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76816462ns 1424498 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76816523ns 1424501 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76816543ns 1424502 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76816584ns 1424504 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76816644ns 1424507 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76816664ns 1424508 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76816705ns 1424510 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76816765ns 1424513 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76816786ns 1424514 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76816826ns 1424516 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76816887ns 1424519 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76816907ns 1424520 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76816947ns 1424522 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76817008ns 1424525 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76817028ns 1424526 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76817068ns 1424528 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76817129ns 1424531 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76817149ns 1424532 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76817189ns 1424534 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76817250ns 1424537 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76817270ns 1424538 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76817311ns 1424540 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76817371ns 1424543 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76817391ns 1424544 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76817432ns 1424546 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76817492ns 1424549 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76817512ns 1424550 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76817553ns 1424552 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76817613ns 1424555 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76817634ns 1424556 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76817674ns 1424558 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76817735ns 1424561 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76817755ns 1424562 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76817795ns 1424564 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76817856ns 1424567 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76817876ns 1424568 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76817916ns 1424570 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76817977ns 1424573 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76817997ns 1424574 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76818037ns 1424576 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76818098ns 1424579 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76818118ns 1424580 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76818159ns 1424582 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76818219ns 1424585 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76818239ns 1424586 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76818280ns 1424588 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76818340ns 1424591 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76818361ns 1424592 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76818401ns 1424594 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76818461ns 1424597 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76818482ns 1424598 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76818522ns 1424600 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76818583ns 1424603 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76818603ns 1424604 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76818643ns 1424606 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76818704ns 1424609 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76818724ns 1424610 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76818764ns 1424612 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76818825ns 1424615 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76818845ns 1424616 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76818886ns 1424618 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76818946ns 1424621 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76818966ns 1424622 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76819007ns 1424624 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76819067ns 1424627 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76819087ns 1424628 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76819128ns 1424630 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76819188ns 1424633 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76819209ns 1424634 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76819249ns 1424636 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76819310ns 1424639 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76819330ns 1424640 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76819370ns 1424642 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76819431ns 1424645 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76819451ns 1424646 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76819491ns 1424648 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76819552ns 1424651 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76819572ns 1424652 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76819612ns 1424654 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76819673ns 1424657 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76819693ns 1424658 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76819734ns 1424660 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76819794ns 1424663 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76819814ns 1424664 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76819855ns 1424666 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76819915ns 1424669 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76819935ns 1424670 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76819976ns 1424672 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76820036ns 1424675 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76820057ns 1424676 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76820097ns 1424678 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76820158ns 1424681 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76820178ns 1424682 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76820218ns 1424684 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76820279ns 1424687 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76820299ns 1424688 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76820339ns 1424690 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76820400ns 1424693 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76820420ns 1424694 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76820460ns 1424696 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76820521ns 1424699 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76820541ns 1424700 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76820582ns 1424702 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76820642ns 1424705 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76820662ns 1424706 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76820703ns 1424708 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76820763ns 1424711 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76820784ns 1424712 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76820824ns 1424714 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76820885ns 1424717 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76820905ns 1424718 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76820945ns 1424720 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76821006ns 1424723 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76821026ns 1424724 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76821066ns 1424726 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76821127ns 1424729 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76821147ns 1424730 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76821187ns 1424732 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76821248ns 1424735 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76821268ns 1424736 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76821309ns 1424738 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76821369ns 1424741 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76821389ns 1424742 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76821430ns 1424744 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76821490ns 1424747 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76821510ns 1424748 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76821551ns 1424750 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76821611ns 1424753 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76821632ns 1424754 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76821672ns 1424756 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76821733ns 1424759 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76821753ns 1424760 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76821793ns 1424762 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76821854ns 1424765 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76821874ns 1424766 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76821914ns 1424768 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76821975ns 1424771 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76821995ns 1424772 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76822035ns 1424774 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76822096ns 1424777 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76822116ns 1424778 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76822157ns 1424780 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76822217ns 1424783 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76822237ns 1424784 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76822278ns 1424786 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76822338ns 1424789 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76822359ns 1424790 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76822399ns 1424792 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76822459ns 1424795 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76822480ns 1424796 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76822520ns 1424798 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76822581ns 1424801 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76822601ns 1424802 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76822641ns 1424804 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76822702ns 1424807 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76822722ns 1424808 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76822762ns 1424810 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76822823ns 1424813 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76822843ns 1424814 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76822884ns 1424816 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76822944ns 1424819 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76822964ns 1424820 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76823005ns 1424822 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76823065ns 1424825 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76823085ns 1424826 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76823126ns 1424828 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76823186ns 1424831 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76823207ns 1424832 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76823247ns 1424834 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76823308ns 1424837 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76823328ns 1424838 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76823368ns 1424840 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76823429ns 1424843 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76823449ns 1424844 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76823489ns 1424846 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76823550ns 1424849 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76823570ns 1424850 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76823610ns 1424852 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76823671ns 1424855 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76823691ns 1424856 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76823732ns 1424858 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76823792ns 1424861 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76823812ns 1424862 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76823853ns 1424864 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76823913ns 1424867 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76823934ns 1424868 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76823974ns 1424870 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76824034ns 1424873 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76824055ns 1424874 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76824095ns 1424876 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76824156ns 1424879 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76824176ns 1424880 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76824216ns 1424882 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76824277ns 1424885 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76824297ns 1424886 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76824337ns 1424888 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76824398ns 1424891 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76824418ns 1424892 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76824459ns 1424894 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76824519ns 1424897 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76824539ns 1424898 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76824580ns 1424900 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76824640ns 1424903 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76824660ns 1424904 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76824701ns 1424906 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76824761ns 1424909 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76824782ns 1424910 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76824822ns 1424912 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76824883ns 1424915 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76824903ns 1424916 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76824943ns 1424918 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76825004ns 1424921 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76825024ns 1424922 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76825064ns 1424924 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76825125ns 1424927 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76825145ns 1424928 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76825185ns 1424930 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76825246ns 1424933 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76825266ns 1424934 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76825307ns 1424936 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76825367ns 1424939 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76825387ns 1424940 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76825428ns 1424942 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76825488ns 1424945 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76825508ns 1424946 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76825549ns 1424948 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76825609ns 1424951 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76825630ns 1424952 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76825670ns 1424954 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76825731ns 1424957 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76825751ns 1424958 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76825791ns 1424960 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76825852ns 1424963 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76825872ns 1424964 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76825912ns 1424966 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76825973ns 1424969 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76825993ns 1424970 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76826033ns 1424972 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76826094ns 1424975 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76826114ns 1424976 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76826155ns 1424978 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76826215ns 1424981 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76826235ns 1424982 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76826276ns 1424984 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76826336ns 1424987 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76826357ns 1424988 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76826397ns 1424990 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76826458ns 1424993 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76826478ns 1424994 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76826518ns 1424996 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76826579ns 1424999 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76826599ns 1425000 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76826639ns 1425002 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76826700ns 1425005 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76826720ns 1425006 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76826760ns 1425008 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76826821ns 1425011 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76826841ns 1425012 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76826882ns 1425014 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76826942ns 1425017 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76826962ns 1425018 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76827003ns 1425020 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76827063ns 1425023 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76827083ns 1425024 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76827124ns 1425026 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76827184ns 1425029 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76827205ns 1425030 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76827245ns 1425032 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76827306ns 1425035 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76827326ns 1425036 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76827366ns 1425038 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76827427ns 1425041 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76827447ns 1425042 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76827487ns 1425044 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76827548ns 1425047 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76827568ns 1425048 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76827608ns 1425050 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76827669ns 1425053 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76827689ns 1425054 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76827730ns 1425056 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76827790ns 1425059 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76827810ns 1425060 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76827851ns 1425062 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76827911ns 1425065 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76827932ns 1425066 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76827972ns 1425068 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76828032ns 1425071 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76828053ns 1425072 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76828093ns 1425074 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76828154ns 1425077 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76828174ns 1425078 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76828214ns 1425080 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76828275ns 1425083 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76828295ns 1425084 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76828335ns 1425086 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76828396ns 1425089 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76828416ns 1425090 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76828457ns 1425092 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76828517ns 1425095 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76828537ns 1425096 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76828578ns 1425098 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76828638ns 1425101 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76828658ns 1425102 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76828699ns 1425104 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76828759ns 1425107 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76828780ns 1425108 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76828820ns 1425110 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76828881ns 1425113 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76828901ns 1425114 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76828941ns 1425116 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76829002ns 1425119 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76829022ns 1425120 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76829062ns 1425122 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76829123ns 1425125 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76829143ns 1425126 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76829183ns 1425128 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76829244ns 1425131 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76829264ns 1425132 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76829305ns 1425134 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76829365ns 1425137 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76829385ns 1425138 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76829426ns 1425140 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76829486ns 1425143 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76829507ns 1425144 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76829547ns 1425146 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76829607ns 1425149 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76829628ns 1425150 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76829668ns 1425152 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76829729ns 1425155 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76829749ns 1425156 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76829789ns 1425158 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76829850ns 1425161 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76829870ns 1425162 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76829910ns 1425164 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76829971ns 1425167 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76829991ns 1425168 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76830031ns 1425170 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76830092ns 1425173 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76830112ns 1425174 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76830153ns 1425176 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76830213ns 1425179 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76830233ns 1425180 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76830274ns 1425182 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76830334ns 1425185 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76830355ns 1425186 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76830395ns 1425188 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76830456ns 1425191 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76830476ns 1425192 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76830516ns 1425194 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76830577ns 1425197 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76830597ns 1425198 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76830637ns 1425200 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76830698ns 1425203 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76830718ns 1425204 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76830758ns 1425206 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76830819ns 1425209 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76830839ns 1425210 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76830880ns 1425212 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76830940ns 1425215 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76830960ns 1425216 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76831001ns 1425218 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76831061ns 1425221 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76831081ns 1425222 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76831122ns 1425224 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76831182ns 1425227 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76831203ns 1425228 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76831243ns 1425230 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76831304ns 1425233 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76831324ns 1425234 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76831364ns 1425236 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76831425ns 1425239 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76831445ns 1425240 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76831485ns 1425242 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76831546ns 1425245 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76831566ns 1425246 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76831606ns 1425248 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76831667ns 1425251 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76831687ns 1425252 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76831728ns 1425254 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76831788ns 1425257 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76831808ns 1425258 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76831849ns 1425260 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76831909ns 1425263 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76831930ns 1425264 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76831970ns 1425266 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76832031ns 1425269 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76832051ns 1425270 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76832091ns 1425272 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76832152ns 1425275 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76832172ns 1425276 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76832212ns 1425278 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76832273ns 1425281 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76832293ns 1425282 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76832333ns 1425284 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76832394ns 1425287 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76832414ns 1425288 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76832455ns 1425290 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76832515ns 1425293 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76832535ns 1425294 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76832576ns 1425296 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76832636ns 1425299 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76832656ns 1425300 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76832697ns 1425302 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76832757ns 1425305 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76832778ns 1425306 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76832818ns 1425308 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76832879ns 1425311 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76832899ns 1425312 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76832939ns 1425314 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76833000ns 1425317 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76833020ns 1425318 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76833060ns 1425320 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76833121ns 1425323 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76833141ns 1425324 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76833181ns 1425326 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76833242ns 1425329 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76833262ns 1425330 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76833303ns 1425332 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76833363ns 1425335 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76833383ns 1425336 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76833424ns 1425338 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76833484ns 1425341 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76833505ns 1425342 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76833545ns 1425344 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76833605ns 1425347 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76833626ns 1425348 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76833666ns 1425350 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76833727ns 1425353 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76833747ns 1425354 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76833787ns 1425356 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76833848ns 1425359 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76833868ns 1425360 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76833908ns 1425362 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76833969ns 1425365 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76833989ns 1425366 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76834030ns 1425368 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76834090ns 1425371 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76834110ns 1425372 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76834151ns 1425374 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76834211ns 1425377 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76834231ns 1425378 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76834272ns 1425380 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76834332ns 1425383 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76834353ns 1425384 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76834393ns 1425386 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76834454ns 1425389 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76834474ns 1425390 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76834514ns 1425392 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76834575ns 1425395 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76834595ns 1425396 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76834635ns 1425398 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76834696ns 1425401 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76834716ns 1425402 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76834756ns 1425404 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76834817ns 1425407 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76834837ns 1425408 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76834878ns 1425410 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76834938ns 1425413 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76834958ns 1425414 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76834999ns 1425416 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76835059ns 1425419 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76835079ns 1425420 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76835120ns 1425422 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76835180ns 1425425 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76835201ns 1425426 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76835241ns 1425428 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76835302ns 1425431 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76835322ns 1425432 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76835362ns 1425434 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76835423ns 1425437 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76835443ns 1425438 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76835483ns 1425440 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76835544ns 1425443 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76835564ns 1425444 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76835604ns 1425446 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76835665ns 1425449 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76835685ns 1425450 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76835726ns 1425452 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76835786ns 1425455 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76835806ns 1425456 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76835847ns 1425458 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76835907ns 1425461 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76835928ns 1425462 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76835968ns 1425464 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76836029ns 1425467 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76836049ns 1425468 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76836089ns 1425470 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76836150ns 1425473 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76836170ns 1425474 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76836210ns 1425476 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76836271ns 1425479 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76836291ns 1425480 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76836331ns 1425482 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76836392ns 1425485 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76836412ns 1425486 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76836453ns 1425488 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76836513ns 1425491 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76836533ns 1425492 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76836574ns 1425494 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76836634ns 1425497 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76836654ns 1425498 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76836695ns 1425500 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76836755ns 1425503 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76836776ns 1425504 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76836816ns 1425506 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76836877ns 1425509 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76836897ns 1425510 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76836937ns 1425512 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76836998ns 1425515 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76837018ns 1425516 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76837058ns 1425518 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76837119ns 1425521 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76837139ns 1425522 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76837179ns 1425524 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76837240ns 1425527 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76837260ns 1425528 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76837301ns 1425530 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76837361ns 1425533 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76837381ns 1425534 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76837422ns 1425536 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76837482ns 1425539 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76837503ns 1425540 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76837543ns 1425542 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76837603ns 1425545 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76837624ns 1425546 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76837664ns 1425548 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76837725ns 1425551 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76837745ns 1425552 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76837785ns 1425554 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76837846ns 1425557 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76837866ns 1425558 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76837906ns 1425560 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76837967ns 1425563 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76837987ns 1425564 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76838028ns 1425566 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76838088ns 1425569 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76838108ns 1425570 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76838149ns 1425572 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76838209ns 1425575 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76838229ns 1425576 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76838270ns 1425578 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76838330ns 1425581 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76838351ns 1425582 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76838391ns 1425584 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76838452ns 1425587 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76838472ns 1425588 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76838512ns 1425590 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76838573ns 1425593 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76838593ns 1425594 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76838633ns 1425596 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76838694ns 1425599 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76838714ns 1425600 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76838754ns 1425602 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76838815ns 1425605 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76838835ns 1425606 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76838876ns 1425608 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76838936ns 1425611 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76838956ns 1425612 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76838997ns 1425614 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76839057ns 1425617 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76839078ns 1425618 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76839118ns 1425620 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76839178ns 1425623 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76839199ns 1425624 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76839239ns 1425626 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76839300ns 1425629 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76839320ns 1425630 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76839360ns 1425632 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76839421ns 1425635 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76839441ns 1425636 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76839481ns 1425638 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76839542ns 1425641 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76839562ns 1425642 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76839603ns 1425644 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76839663ns 1425647 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76839683ns 1425648 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76839724ns 1425650 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76839784ns 1425653 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76839804ns 1425654 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76839845ns 1425656 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76839905ns 1425659 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76839926ns 1425660 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76839966ns 1425662 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76840027ns 1425665 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76840047ns 1425666 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76840087ns 1425668 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76840148ns 1425671 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76840168ns 1425672 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76840208ns 1425674 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76840269ns 1425677 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76840289ns 1425678 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76840329ns 1425680 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76840390ns 1425683 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76840410ns 1425684 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76840451ns 1425686 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76840511ns 1425689 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76840531ns 1425690 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76840572ns 1425692 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76840632ns 1425695 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76840652ns 1425696 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76840693ns 1425698 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76840753ns 1425701 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76840774ns 1425702 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76840814ns 1425704 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76840875ns 1425707 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76840895ns 1425708 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76840935ns 1425710 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76840996ns 1425713 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76841016ns 1425714 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76841056ns 1425716 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76841117ns 1425719 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76841137ns 1425720 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76841177ns 1425722 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76841238ns 1425725 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76841258ns 1425726 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76841299ns 1425728 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76841359ns 1425731 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76841379ns 1425732 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76841420ns 1425734 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76841480ns 1425737 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76841501ns 1425738 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76841541ns 1425740 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76841602ns 1425743 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76841622ns 1425744 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76841662ns 1425746 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76841723ns 1425749 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76841743ns 1425750 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76841783ns 1425752 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76841844ns 1425755 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76841864ns 1425756 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76841904ns 1425758 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76841965ns 1425761 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76841985ns 1425762 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76842026ns 1425764 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76842086ns 1425767 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76842106ns 1425768 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76842147ns 1425770 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76842207ns 1425773 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76842227ns 1425774 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76842268ns 1425776 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76842328ns 1425779 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76842349ns 1425780 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76842389ns 1425782 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76842450ns 1425785 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76842470ns 1425786 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76842510ns 1425788 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76842571ns 1425791 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76842591ns 1425792 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76842631ns 1425794 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76842692ns 1425797 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76842712ns 1425798 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76842752ns 1425800 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76842813ns 1425803 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76842833ns 1425804 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76842874ns 1425806 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76842934ns 1425809 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76842954ns 1425810 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76842995ns 1425812 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76843055ns 1425815 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76843076ns 1425816 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76843116ns 1425818 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76843176ns 1425821 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76843197ns 1425822 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76843237ns 1425824 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76843298ns 1425827 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76843318ns 1425828 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76843358ns 1425830 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76843419ns 1425833 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76843439ns 1425834 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76843479ns 1425836 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76843540ns 1425839 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76843560ns 1425840 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76843601ns 1425842 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76843661ns 1425845 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76843681ns 1425846 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76843722ns 1425848 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76843782ns 1425851 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76843802ns 1425852 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76843843ns 1425854 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76843903ns 1425857 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76843924ns 1425858 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76843964ns 1425860 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76844025ns 1425863 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76844045ns 1425864 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76844085ns 1425866 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76844146ns 1425869 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76844166ns 1425870 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76844206ns 1425872 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76844267ns 1425875 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76844287ns 1425876 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76844327ns 1425878 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76844388ns 1425881 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76844408ns 1425882 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76844449ns 1425884 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76844509ns 1425887 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76844529ns 1425888 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76844570ns 1425890 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76844630ns 1425893 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76844651ns 1425894 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76844691ns 1425896 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76844751ns 1425899 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76844772ns 1425900 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76844812ns 1425902 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76844873ns 1425905 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76844893ns 1425906 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76844933ns 1425908 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76844994ns 1425911 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76845014ns 1425912 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76845054ns 1425914 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76845115ns 1425917 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76845135ns 1425918 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76845175ns 1425920 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76845236ns 1425923 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76845256ns 1425924 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76845297ns 1425926 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76845357ns 1425929 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76845377ns 1425930 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76845418ns 1425932 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76845478ns 1425935 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76845499ns 1425936 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76845539ns 1425938 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76845600ns 1425941 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76845620ns 1425942 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76845660ns 1425944 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76845721ns 1425947 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76845741ns 1425948 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76845781ns 1425950 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76845842ns 1425953 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76845862ns 1425954 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76845902ns 1425956 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76845963ns 1425959 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76845983ns 1425960 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76846024ns 1425962 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76846084ns 1425965 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76846104ns 1425966 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76846145ns 1425968 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76846205ns 1425971 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76846225ns 1425972 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76846266ns 1425974 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76846326ns 1425977 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76846347ns 1425978 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76846387ns 1425980 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76846448ns 1425983 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76846468ns 1425984 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76846508ns 1425986 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76846569ns 1425989 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76846589ns 1425990 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76846629ns 1425992 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76846690ns 1425995 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76846710ns 1425996 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76846750ns 1425998 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76846811ns 1426001 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76846831ns 1426002 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76846872ns 1426004 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76846932ns 1426007 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76846952ns 1426008 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76846993ns 1426010 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76847053ns 1426013 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76847074ns 1426014 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76847114ns 1426016 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76847175ns 1426019 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76847195ns 1426020 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76847235ns 1426022 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76847296ns 1426025 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76847316ns 1426026 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76847356ns 1426028 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76847417ns 1426031 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76847437ns 1426032 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76847477ns 1426034 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76847538ns 1426037 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76847558ns 1426038 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76847599ns 1426040 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76847659ns 1426043 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76847679ns 1426044 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76847720ns 1426046 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76847780ns 1426049 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76847800ns 1426050 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76847841ns 1426052 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76847901ns 1426055 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76847922ns 1426056 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76847962ns 1426058 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76848023ns 1426061 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76848043ns 1426062 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76848083ns 1426064 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76848144ns 1426067 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76848164ns 1426068 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76848204ns 1426070 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76848265ns 1426073 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76848285ns 1426074 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76848325ns 1426076 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76848386ns 1426079 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76848406ns 1426080 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76848447ns 1426082 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76848507ns 1426085 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76848527ns 1426086 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76848568ns 1426088 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76848628ns 1426091 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76848649ns 1426092 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76848689ns 1426094 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76848749ns 1426097 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76848770ns 1426098 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76848810ns 1426100 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76848871ns 1426103 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76848891ns 1426104 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76848931ns 1426106 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76848992ns 1426109 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76849012ns 1426110 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76849052ns 1426112 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76849113ns 1426115 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76849133ns 1426116 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76849174ns 1426118 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76849234ns 1426121 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76849254ns 1426122 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76849295ns 1426124 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76849355ns 1426127 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76849375ns 1426128 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76849416ns 1426130 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76849476ns 1426133 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76849497ns 1426134 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76849537ns 1426136 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76849598ns 1426139 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76849618ns 1426140 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76849658ns 1426142 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76849719ns 1426145 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76849739ns 1426146 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76849779ns 1426148 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76849840ns 1426151 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76849860ns 1426152 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76849900ns 1426154 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76849961ns 1426157 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76849981ns 1426158 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76850022ns 1426160 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76850082ns 1426163 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76850102ns 1426164 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76850143ns 1426166 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76850203ns 1426169 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76850223ns 1426170 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76850264ns 1426172 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76850324ns 1426175 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76850345ns 1426176 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76850385ns 1426178 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76850446ns 1426181 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76850466ns 1426182 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76850506ns 1426184 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76850567ns 1426187 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76850587ns 1426188 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76850627ns 1426190 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76850688ns 1426193 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76850708ns 1426194 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76850748ns 1426196 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76850809ns 1426199 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76850829ns 1426200 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76850870ns 1426202 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76850930ns 1426205 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76850950ns 1426206 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76850991ns 1426208 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76851051ns 1426211 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76851072ns 1426212 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76851112ns 1426214 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76851173ns 1426217 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76851193ns 1426218 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76851233ns 1426220 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76851294ns 1426223 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76851314ns 1426224 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76851354ns 1426226 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76851415ns 1426229 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76851435ns 1426230 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76851475ns 1426232 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76851536ns 1426235 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76851556ns 1426236 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76851597ns 1426238 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76851657ns 1426241 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76851677ns 1426242 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76851718ns 1426244 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76851778ns 1426247 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76851798ns 1426248 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76851839ns 1426250 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76851899ns 1426253 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76851920ns 1426254 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76851960ns 1426256 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76852021ns 1426259 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76852041ns 1426260 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76852081ns 1426262 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76852142ns 1426265 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76852162ns 1426266 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76852202ns 1426268 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76852263ns 1426271 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76852283ns 1426272 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76852323ns 1426274 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76852384ns 1426277 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76852404ns 1426278 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76852445ns 1426280 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76852505ns 1426283 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76852525ns 1426284 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76852566ns 1426286 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76852626ns 1426289 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76852647ns 1426290 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76852687ns 1426292 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76852747ns 1426295 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76852768ns 1426296 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76852808ns 1426298 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76852869ns 1426301 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76852889ns 1426302 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76852929ns 1426304 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76852990ns 1426307 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76853010ns 1426308 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76853050ns 1426310 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76853111ns 1426313 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76853131ns 1426314 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76853172ns 1426316 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76853232ns 1426319 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76853252ns 1426320 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76853293ns 1426322 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76853353ns 1426325 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76853373ns 1426326 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76853414ns 1426328 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76853474ns 1426331 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76853495ns 1426332 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76853535ns 1426334 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76853596ns 1426337 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76853616ns 1426338 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76853656ns 1426340 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76853717ns 1426343 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76853737ns 1426344 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76853777ns 1426346 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76853838ns 1426349 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76853858ns 1426350 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76853898ns 1426352 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76853959ns 1426355 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76853979ns 1426356 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76854020ns 1426358 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76854080ns 1426361 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76854100ns 1426362 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76854141ns 1426364 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76854201ns 1426367 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76854222ns 1426368 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76854262ns 1426370 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76854322ns 1426373 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76854343ns 1426374 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76854383ns 1426376 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76854444ns 1426379 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76854464ns 1426380 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76854504ns 1426382 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76854565ns 1426385 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76854585ns 1426386 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76854625ns 1426388 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76854686ns 1426391 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76854706ns 1426392 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76854747ns 1426394 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76854807ns 1426397 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76854827ns 1426398 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76854868ns 1426400 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76854928ns 1426403 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76854948ns 1426404 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76854989ns 1426406 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76855049ns 1426409 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76855070ns 1426410 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76855110ns 1426412 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76855171ns 1426415 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76855191ns 1426416 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76855231ns 1426418 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76855292ns 1426421 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76855312ns 1426422 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76855352ns 1426424 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76855413ns 1426427 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76855433ns 1426428 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76855473ns 1426430 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76855534ns 1426433 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76855554ns 1426434 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76855595ns 1426436 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76855655ns 1426439 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76855675ns 1426440 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76855716ns 1426442 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76855776ns 1426445 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76855796ns 1426446 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76855837ns 1426448 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76855897ns 1426451 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76855918ns 1426452 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76855958ns 1426454 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76856019ns 1426457 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76856039ns 1426458 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76856079ns 1426460 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76856140ns 1426463 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76856160ns 1426464 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76856200ns 1426466 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76856261ns 1426469 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76856281ns 1426470 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76856321ns 1426472 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76856382ns 1426475 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76856402ns 1426476 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76856443ns 1426478 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76856503ns 1426481 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76856523ns 1426482 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76856564ns 1426484 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76856624ns 1426487 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76856645ns 1426488 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76856685ns 1426490 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76856746ns 1426493 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76856766ns 1426494 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76856806ns 1426496 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76856867ns 1426499 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76856887ns 1426500 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76856927ns 1426502 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76856988ns 1426505 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76857008ns 1426506 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76857048ns 1426508 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76857109ns 1426511 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76857129ns 1426512 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76857170ns 1426514 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76857230ns 1426517 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76857250ns 1426518 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76857291ns 1426520 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76857351ns 1426523 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76857371ns 1426524 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76857412ns 1426526 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76857472ns 1426529 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76857493ns 1426530 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76857533ns 1426532 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76857594ns 1426535 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76857614ns 1426536 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76857654ns 1426538 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76857715ns 1426541 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76857735ns 1426542 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76857775ns 1426544 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76857836ns 1426547 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76857856ns 1426548 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76857896ns 1426550 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76857957ns 1426553 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76857977ns 1426554 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76858018ns 1426556 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76858078ns 1426559 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76858098ns 1426560 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76858139ns 1426562 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76858199ns 1426565 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76858220ns 1426566 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76858260ns 1426568 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76858320ns 1426571 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76858341ns 1426572 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76858381ns 1426574 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76858442ns 1426577 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76858462ns 1426578 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76858502ns 1426580 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76858563ns 1426583 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76858583ns 1426584 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76858623ns 1426586 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76858684ns 1426589 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76858704ns 1426590 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76858745ns 1426592 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76858805ns 1426595 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76858825ns 1426596 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76858866ns 1426598 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76858926ns 1426601 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76858946ns 1426602 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76858987ns 1426604 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76859047ns 1426607 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76859068ns 1426608 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76859108ns 1426610 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76859169ns 1426613 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76859189ns 1426614 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76859229ns 1426616 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76859290ns 1426619 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76859310ns 1426620 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76859350ns 1426622 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76859411ns 1426625 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76859431ns 1426626 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76859471ns 1426628 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76859532ns 1426631 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76859552ns 1426632 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76859593ns 1426634 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76859653ns 1426637 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76859673ns 1426638 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76859714ns 1426640 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76859774ns 1426643 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76859795ns 1426644 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76859835ns 1426646 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76859895ns 1426649 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76859916ns 1426650 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76859956ns 1426652 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76860017ns 1426655 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76860037ns 1426656 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76860077ns 1426658 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76860138ns 1426661 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76860158ns 1426662 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76860198ns 1426664 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76860259ns 1426667 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76860279ns 1426668 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76860319ns 1426670 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76860380ns 1426673 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76860400ns 1426674 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76860441ns 1426676 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76860501ns 1426679 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76860521ns 1426680 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76860562ns 1426682 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76860622ns 1426685 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76860643ns 1426686 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76860683ns 1426688 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76860744ns 1426691 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76860764ns 1426692 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76860804ns 1426694 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76860865ns 1426697 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76860885ns 1426698 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76860925ns 1426700 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76860986ns 1426703 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76861006ns 1426704 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76861046ns 1426706 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76861107ns 1426709 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76861127ns 1426710 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76861168ns 1426712 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76861228ns 1426715 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76861248ns 1426716 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76861289ns 1426718 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76861349ns 1426721 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76861369ns 1426722 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76861410ns 1426724 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76861470ns 1426727 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76861491ns 1426728 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76861531ns 1426730 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76861592ns 1426733 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76861612ns 1426734 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76861652ns 1426736 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76861713ns 1426739 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76861733ns 1426740 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76861773ns 1426742 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76861834ns 1426745 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76861854ns 1426746 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76861894ns 1426748 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76861955ns 1426751 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76861975ns 1426752 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76862016ns 1426754 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76862076ns 1426757 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76862096ns 1426758 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76862137ns 1426760 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76862197ns 1426763 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76862218ns 1426764 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76862258ns 1426766 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76862319ns 1426769 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76862339ns 1426770 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76862379ns 1426772 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76862440ns 1426775 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76862460ns 1426776 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76862500ns 1426778 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76862561ns 1426781 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76862581ns 1426782 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76862621ns 1426784 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76862682ns 1426787 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76862702ns 1426788 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76862743ns 1426790 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76862803ns 1426793 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76862823ns 1426794 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76862864ns 1426796 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76862924ns 1426799 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76862944ns 1426800 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76862985ns 1426802 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76863045ns 1426805 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76863066ns 1426806 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76863106ns 1426808 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76863167ns 1426811 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76863187ns 1426812 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76863227ns 1426814 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76863288ns 1426817 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76863308ns 1426818 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76863348ns 1426820 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76863409ns 1426823 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76863429ns 1426824 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76863469ns 1426826 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76863530ns 1426829 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76863550ns 1426830 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76863591ns 1426832 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76863651ns 1426835 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76863671ns 1426836 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76863712ns 1426838 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76863772ns 1426841 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76863793ns 1426842 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76863833ns 1426844 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76863893ns 1426847 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76863914ns 1426848 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76863954ns 1426850 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76864015ns 1426853 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76864035ns 1426854 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76864075ns 1426856 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76864136ns 1426859 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76864156ns 1426860 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76864196ns 1426862 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76864257ns 1426865 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76864277ns 1426866 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76864318ns 1426868 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76864378ns 1426871 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76864398ns 1426872 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76864439ns 1426874 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76864499ns 1426877 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76864519ns 1426878 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76864560ns 1426880 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76864620ns 1426883 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76864641ns 1426884 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76864681ns 1426886 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76864742ns 1426889 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76864762ns 1426890 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76864802ns 1426892 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76864863ns 1426895 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76864883ns 1426896 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76864923ns 1426898 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76864984ns 1426901 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76865004ns 1426902 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76865044ns 1426904 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76865105ns 1426907 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76865125ns 1426908 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76865166ns 1426910 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76865226ns 1426913 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76865246ns 1426914 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76865287ns 1426916 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76865347ns 1426919 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76865367ns 1426920 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76865408ns 1426922 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76865468ns 1426925 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76865489ns 1426926 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76865529ns 1426928 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76865590ns 1426931 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76865610ns 1426932 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76865650ns 1426934 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76865711ns 1426937 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76865731ns 1426938 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76865771ns 1426940 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76865832ns 1426943 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76865852ns 1426944 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76865892ns 1426946 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76865953ns 1426949 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76865973ns 1426950 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76866014ns 1426952 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76866074ns 1426955 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76866094ns 1426956 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76866135ns 1426958 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76866195ns 1426961 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76866216ns 1426962 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76866256ns 1426964 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76866317ns 1426967 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76866337ns 1426968 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76866377ns 1426970 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76866438ns 1426973 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76866458ns 1426974 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76866498ns 1426976 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76866559ns 1426979 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76866579ns 1426980 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76866619ns 1426982 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76866680ns 1426985 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76866700ns 1426986 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76866741ns 1426988 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76866801ns 1426991 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76866821ns 1426992 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76866862ns 1426994 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76866922ns 1426997 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76866942ns 1426998 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76866983ns 1427000 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76867043ns 1427003 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76867064ns 1427004 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76867104ns 1427006 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76867165ns 1427009 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76867185ns 1427010 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76867225ns 1427012 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76867286ns 1427015 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76867306ns 1427016 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76867346ns 1427018 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76867407ns 1427021 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76867427ns 1427022 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76867467ns 1427024 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76867528ns 1427027 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76867548ns 1427028 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76867589ns 1427030 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76867649ns 1427033 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76867669ns 1427034 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76867710ns 1427036 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76867770ns 1427039 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76867791ns 1427040 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76867831ns 1427042 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76867891ns 1427045 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76867912ns 1427046 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76867952ns 1427048 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76868013ns 1427051 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76868033ns 1427052 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76868073ns 1427054 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76868134ns 1427057 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76868154ns 1427058 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76868194ns 1427060 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76868255ns 1427063 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76868275ns 1427064 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76868316ns 1427066 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76868376ns 1427069 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76868396ns 1427070 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76868437ns 1427072 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76868497ns 1427075 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76868517ns 1427076 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76868558ns 1427078 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76868618ns 1427081 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76868639ns 1427082 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76868679ns 1427084 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76868740ns 1427087 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76868760ns 1427088 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76868800ns 1427090 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76868861ns 1427093 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76868881ns 1427094 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76868921ns 1427096 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76868982ns 1427099 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76869002ns 1427100 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76869042ns 1427102 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76869103ns 1427105 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76869123ns 1427106 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76869164ns 1427108 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76869224ns 1427111 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76869244ns 1427112 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76869285ns 1427114 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76869345ns 1427117 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76869366ns 1427118 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76869406ns 1427120 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76869466ns 1427123 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76869487ns 1427124 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76869527ns 1427126 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76869588ns 1427129 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76869608ns 1427130 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76869648ns 1427132 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76869709ns 1427135 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76869729ns 1427136 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76869769ns 1427138 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76869830ns 1427141 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76869850ns 1427142 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76869891ns 1427144 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76869951ns 1427147 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76869971ns 1427148 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76870012ns 1427150 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76870072ns 1427153 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76870092ns 1427154 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76870133ns 1427156 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76870193ns 1427159 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76870214ns 1427160 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76870254ns 1427162 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76870315ns 1427165 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76870335ns 1427166 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76870375ns 1427168 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76870436ns 1427171 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76870456ns 1427172 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76870496ns 1427174 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76870557ns 1427177 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76870577ns 1427178 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76870617ns 1427180 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76870678ns 1427183 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76870698ns 1427184 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76870739ns 1427186 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76870799ns 1427189 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76870819ns 1427190 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76870860ns 1427192 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76870920ns 1427195 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76870940ns 1427196 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76870981ns 1427198 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76871041ns 1427201 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76871062ns 1427202 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76871102ns 1427204 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76871163ns 1427207 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76871183ns 1427208 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76871223ns 1427210 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76871284ns 1427213 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76871304ns 1427214 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76871344ns 1427216 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76871405ns 1427219 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76871425ns 1427220 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76871465ns 1427222 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76871526ns 1427225 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76871546ns 1427226 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76871587ns 1427228 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76871647ns 1427231 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76871667ns 1427232 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76871708ns 1427234 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76871768ns 1427237 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76871789ns 1427238 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76871829ns 1427240 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76871890ns 1427243 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76871910ns 1427244 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76871950ns 1427246 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76872011ns 1427249 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76872031ns 1427250 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76872071ns 1427252 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76872132ns 1427255 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76872152ns 1427256 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76872192ns 1427258 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76872253ns 1427261 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76872273ns 1427262 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76872314ns 1427264 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76872374ns 1427267 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76872394ns 1427268 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76872435ns 1427270 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76872495ns 1427273 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76872515ns 1427274 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76872556ns 1427276 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76872616ns 1427279 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76872637ns 1427280 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76872677ns 1427282 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76872738ns 1427285 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76872758ns 1427286 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76872798ns 1427288 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76872859ns 1427291 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76872879ns 1427292 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76872919ns 1427294 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76872980ns 1427297 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76873000ns 1427298 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76873040ns 1427300 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76873101ns 1427303 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76873121ns 1427304 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76873162ns 1427306 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76873222ns 1427309 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76873242ns 1427310 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76873283ns 1427312 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76873343ns 1427315 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76873364ns 1427316 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76873404ns 1427318 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76873464ns 1427321 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76873485ns 1427322 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76873525ns 1427324 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76873586ns 1427327 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76873606ns 1427328 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76873646ns 1427330 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76873707ns 1427333 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76873727ns 1427334 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76873767ns 1427336 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76873828ns 1427339 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76873848ns 1427340 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76873889ns 1427342 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76873949ns 1427345 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76873969ns 1427346 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76874010ns 1427348 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76874070ns 1427351 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76874090ns 1427352 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76874131ns 1427354 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76874191ns 1427357 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76874212ns 1427358 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76874252ns 1427360 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76874313ns 1427363 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76874333ns 1427364 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76874373ns 1427366 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76874434ns 1427369 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76874454ns 1427370 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76874494ns 1427372 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76874555ns 1427375 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76874575ns 1427376 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76874615ns 1427378 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76874676ns 1427381 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76874696ns 1427382 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76874737ns 1427384 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76874797ns 1427387 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76874817ns 1427388 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76874858ns 1427390 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76874918ns 1427393 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76874939ns 1427394 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76874979ns 1427396 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76875039ns 1427399 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76875060ns 1427400 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76875100ns 1427402 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76875161ns 1427405 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76875181ns 1427406 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76875221ns 1427408 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76875282ns 1427411 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76875302ns 1427412 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76875342ns 1427414 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76875403ns 1427417 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76875423ns 1427418 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76875463ns 1427420 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76875524ns 1427423 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76875544ns 1427424 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76875585ns 1427426 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76875645ns 1427429 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76875665ns 1427430 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76875706ns 1427432 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76875766ns 1427435 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76875787ns 1427436 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76875827ns 1427438 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76875888ns 1427441 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76875908ns 1427442 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76875948ns 1427444 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76876009ns 1427447 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76876029ns 1427448 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76876069ns 1427450 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76876130ns 1427453 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76876150ns 1427454 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76876190ns 1427456 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76876251ns 1427459 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76876271ns 1427460 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76876312ns 1427462 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76876372ns 1427465 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76876392ns 1427466 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76876433ns 1427468 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76876493ns 1427471 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76876513ns 1427472 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76876554ns 1427474 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76876614ns 1427477 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76876635ns 1427478 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76876675ns 1427480 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76876736ns 1427483 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76876756ns 1427484 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76876796ns 1427486 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76876857ns 1427489 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76876877ns 1427490 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76876917ns 1427492 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76876978ns 1427495 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76876998ns 1427496 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76877038ns 1427498 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76877099ns 1427501 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76877119ns 1427502 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76877160ns 1427504 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76877220ns 1427507 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76877240ns 1427508 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76877281ns 1427510 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76877341ns 1427513 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76877362ns 1427514 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76877402ns 1427516 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76877463ns 1427519 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76877483ns 1427520 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76877523ns 1427522 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76877584ns 1427525 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76877604ns 1427526 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76877644ns 1427528 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76877705ns 1427531 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76877725ns 1427532 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76877765ns 1427534 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76877826ns 1427537 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76877846ns 1427538 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76877887ns 1427540 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76877947ns 1427543 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76877967ns 1427544 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76878008ns 1427546 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76878068ns 1427549 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76878088ns 1427550 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76878129ns 1427552 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76878189ns 1427555 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76878210ns 1427556 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76878250ns 1427558 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76878311ns 1427561 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76878331ns 1427562 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76878371ns 1427564 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76878432ns 1427567 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76878452ns 1427568 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76878492ns 1427570 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76878553ns 1427573 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76878573ns 1427574 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76878613ns 1427576 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76878674ns 1427579 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76878694ns 1427580 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76878735ns 1427582 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76878795ns 1427585 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76878815ns 1427586 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76878856ns 1427588 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76878916ns 1427591 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76878937ns 1427592 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76878977ns 1427594 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76879037ns 1427597 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76879058ns 1427598 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76879098ns 1427600 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76879159ns 1427603 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76879179ns 1427604 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76879219ns 1427606 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76879280ns 1427609 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76879300ns 1427610 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76879340ns 1427612 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76879401ns 1427615 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76879421ns 1427616 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76879462ns 1427618 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76879522ns 1427621 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76879542ns 1427622 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76879583ns 1427624 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76879643ns 1427627 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76879663ns 1427628 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76879704ns 1427630 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76879764ns 1427633 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76879785ns 1427634 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76879825ns 1427636 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76879886ns 1427639 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76879906ns 1427640 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76879946ns 1427642 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76880007ns 1427645 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76880027ns 1427646 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76880067ns 1427648 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76880128ns 1427651 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76880148ns 1427652 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76880188ns 1427654 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76880249ns 1427657 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76880269ns 1427658 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76880310ns 1427660 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76880370ns 1427663 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76880390ns 1427664 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76880431ns 1427666 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76880491ns 1427669 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76880511ns 1427670 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76880552ns 1427672 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76880612ns 1427675 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76880633ns 1427676 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76880673ns 1427678 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76880734ns 1427681 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76880754ns 1427682 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76880794ns 1427684 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76880855ns 1427687 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76880875ns 1427688 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76880915ns 1427690 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76880976ns 1427693 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76880996ns 1427694 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76881036ns 1427696 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76881097ns 1427699 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76881117ns 1427700 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76881158ns 1427702 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76881218ns 1427705 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76881238ns 1427706 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76881279ns 1427708 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76881339ns 1427711 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76881360ns 1427712 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76881400ns 1427714 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76881461ns 1427717 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76881481ns 1427718 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76881521ns 1427720 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76881582ns 1427723 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76881602ns 1427724 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76881642ns 1427726 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76881703ns 1427729 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76881723ns 1427730 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76881763ns 1427732 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76881824ns 1427735 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76881844ns 1427736 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76881885ns 1427738 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76881945ns 1427741 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76881965ns 1427742 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76882006ns 1427744 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76882066ns 1427747 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76882086ns 1427748 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76882127ns 1427750 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76882187ns 1427753 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76882208ns 1427754 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76882248ns 1427756 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76882309ns 1427759 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76882329ns 1427760 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76882369ns 1427762 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76882430ns 1427765 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76882450ns 1427766 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76882490ns 1427768 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76882551ns 1427771 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76882571ns 1427772 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76882611ns 1427774 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76882672ns 1427777 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76882692ns 1427778 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76882733ns 1427780 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76882793ns 1427783 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76882813ns 1427784 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76882854ns 1427786 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76882914ns 1427789 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76882935ns 1427790 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76882975ns 1427792 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76883035ns 1427795 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76883056ns 1427796 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76883096ns 1427798 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76883157ns 1427801 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76883177ns 1427802 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76883217ns 1427804 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76883278ns 1427807 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76883298ns 1427808 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76883338ns 1427810 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76883399ns 1427813 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76883419ns 1427814 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76883460ns 1427816 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76883520ns 1427819 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76883540ns 1427820 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76883581ns 1427822 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76883641ns 1427825 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76883661ns 1427826 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76883702ns 1427828 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76883762ns 1427831 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76883783ns 1427832 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76883823ns 1427834 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76883884ns 1427837 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76883904ns 1427838 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76883944ns 1427840 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76884005ns 1427843 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76884025ns 1427844 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76884065ns 1427846 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76884126ns 1427849 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76884146ns 1427850 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76884186ns 1427852 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76884247ns 1427855 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76884267ns 1427856 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76884308ns 1427858 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76884368ns 1427861 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76884388ns 1427862 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76884429ns 1427864 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76884489ns 1427867 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76884510ns 1427868 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76884550ns 1427870 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76884610ns 1427873 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76884631ns 1427874 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76884671ns 1427876 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76884732ns 1427879 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76884752ns 1427880 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76884792ns 1427882 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76884853ns 1427885 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76884873ns 1427886 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76884913ns 1427888 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76884974ns 1427891 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76884994ns 1427892 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76885035ns 1427894 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76885095ns 1427897 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76885115ns 1427898 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76885156ns 1427900 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76885216ns 1427903 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76885236ns 1427904 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76885277ns 1427906 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76885337ns 1427909 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76885358ns 1427910 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76885398ns 1427912 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76885459ns 1427915 1c002308 d6418913 addi x18, x3, -668 x18=1c009140 x3:1c0093dc +76885479ns 1427916 1c00230c 00092783 lw x15, 0(x18) x15=00000000 x18:1c009140 PA:1c009140 +76885519ns 1427918 1c002310 fe078ce3 beq x15, x0, -8 x15:00000000 +76885660ns 1427925 1c000868 0980006f jal x0, 152 +76885701ns 1427927 1c000900 f8810113 addi x2, x2, -120 x2=1c00a7e8 x2:1c00a860 +76885721ns 1427928 1c000904 00112223 sw x1, 4(x2) x1:00000000 x2:1c00a7e8 PA:1c00a7ec +76885741ns 1427929 1c000906 00512423 sw x5, 8(x2) x5:a5a5a5a5 x2:1c00a7e8 PA:1c00a7f0 +76885761ns 1427930 1c000908 00612623 sw x6, 12(x2) x6:a5a5a5a5 x2:1c00a7e8 PA:1c00a7f4 +76885782ns 1427931 1c00090a 00712823 sw x7, 16(x2) x7:a5a5a5a5 x2:1c00a7e8 PA:1c00a7f8 +76885802ns 1427932 1c00090c 00812a23 sw x8, 20(x2) x8:a5a5a5a5 x2:1c00a7e8 PA:1c00a7fc +76885822ns 1427933 1c00090e 00912c23 sw x9, 24(x2) x9:1c008d3c x2:1c00a7e8 PA:1c00a800 +76885842ns 1427934 1c000910 00a12e23 sw x10, 28(x2) x10:00000000 x2:1c00a7e8 PA:1c00a804 +76885862ns 1427935 1c000912 02b12023 sw x11, 32(x2) x11:a5a5a5a5 x2:1c00a7e8 PA:1c00a808 +76885883ns 1427936 1c000914 02c12223 sw x12, 36(x2) x12:a5a5a5a5 x2:1c00a7e8 PA:1c00a80c +76885903ns 1427937 1c000916 02d12423 sw x13, 40(x2) x13:a5a5a5a5 x2:1c00a7e8 PA:1c00a810 +76885923ns 1427938 1c000918 02e12623 sw x14, 44(x2) x14:a5a5a5a5 x2:1c00a7e8 PA:1c00a814 +76885943ns 1427939 1c00091a 02f12823 sw x15, 48(x2) x15:00000000 x2:1c00a7e8 PA:1c00a818 +76885963ns 1427940 1c00091c 03012a23 sw x16, 52(x2) x16:a5a5a5a5 x2:1c00a7e8 PA:1c00a81c +76885984ns 1427941 1c00091e 03112c23 sw x17, 56(x2) x17:a5a5a5a5 x2:1c00a7e8 PA:1c00a820 +76886004ns 1427942 1c000920 03212e23 sw x18, 60(x2) x18:1c009140 x2:1c00a7e8 PA:1c00a824 +76886024ns 1427943 1c000922 05312023 sw x19, 64(x2) x19:a5a5a5a5 x2:1c00a7e8 PA:1c00a828 +76886044ns 1427944 1c000924 05412223 sw x20, 68(x2) x20:a5a5a5a5 x2:1c00a7e8 PA:1c00a82c +76886064ns 1427945 1c000926 05512423 sw x21, 72(x2) x21:a5a5a5a5 x2:1c00a7e8 PA:1c00a830 +76886084ns 1427946 1c000928 05612623 sw x22, 76(x2) x22:a5a5a5a5 x2:1c00a7e8 PA:1c00a834 +76886105ns 1427947 1c00092a 05712823 sw x23, 80(x2) x23:a5a5a5a5 x2:1c00a7e8 PA:1c00a838 +76886125ns 1427948 1c00092c 05812a23 sw x24, 84(x2) x24:a5a5a5a5 x2:1c00a7e8 PA:1c00a83c +76886145ns 1427949 1c00092e 05912c23 sw x25, 88(x2) x25:a5a5a5a5 x2:1c00a7e8 PA:1c00a840 +76886165ns 1427950 1c000930 05a12e23 sw x26, 92(x2) x26:a5a5a5a5 x2:1c00a7e8 PA:1c00a844 +76886185ns 1427951 1c000932 07b12023 sw x27, 96(x2) x27:a5a5a5a5 x2:1c00a7e8 PA:1c00a848 +76886206ns 1427952 1c000934 07c12223 sw x28, 100(x2) x28:a5a5a5a5 x2:1c00a7e8 PA:1c00a84c +76886226ns 1427953 1c000936 07d12423 sw x29, 104(x2) x29:a5a5a5a5 x2:1c00a7e8 PA:1c00a850 +76886246ns 1427954 1c000938 07e12623 sw x30, 108(x2) x30:a5a5a5a5 x2:1c00a7e8 PA:1c00a854 +76886266ns 1427955 1c00093a 07f12823 sw x31, 112(x2) x31:a5a5a5a5 x2:1c00a7e8 PA:1c00a858 +76886286ns 1427956 1c00093c 300022f3 csrrs x5, x0, 0x300 x5=00001880 +76886367ns 1427960 1c000940 06512a23 sw x5, 116(x2) x5:00001880 x2:1c00a7e8 PA:1c00a85c +76886387ns 1427961 1c000942 fe810113 addi x2, x2, -24 x2=1c00a7d0 x2:1c00a7e8 +76886408ns 1427962 1c000944 7c0022f3 csrrs x5, x0, 0x7c0 x5=00000000 +76886428ns 1427963 1c000948 7c102373 csrrs x6, x0, 0x7c1 x6=00000000 +76886448ns 1427964 1c00094c 7c2023f3 csrrs x7, x0, 0x7c2 x7=00000000 +76886468ns 1427965 1c000950 7c402e73 csrrs x28, x0, 0x7c4 x28=00000000 +76886488ns 1427966 1c000954 7c502ef3 csrrs x29, x0, 0x7c5 x29=00000000 +76886509ns 1427967 1c000958 7c602f73 csrrs x30, x0, 0x7c6 x30=00000000 +76886529ns 1427968 1c00095c 00512223 sw x5, 4(x2) x5:00000000 x2:1c00a7d0 PA:1c00a7d4 +76886549ns 1427969 1c00095e 00612423 sw x6, 8(x2) x6:00000000 x2:1c00a7d0 PA:1c00a7d8 +76886569ns 1427970 1c000960 00712623 sw x7, 12(x2) x7:00000000 x2:1c00a7d0 PA:1c00a7dc +76886589ns 1427971 1c000962 01c12823 sw x28, 16(x2) x28:00000000 x2:1c00a7d0 PA:1c00a7e0 +76886609ns 1427972 1c000964 01d12a23 sw x29, 20(x2) x29:00000000 x2:1c00a7d0 PA:1c00a7e4 +76886630ns 1427973 1c000966 01e12c23 sw x30, 24(x2) x30:00000000 x2:1c00a7d0 PA:1c00a7e8 +76886650ns 1427974 1c000968 d541a283 lw x5, -684(x3) x5=1c00a890 x3:1c0093dc PA:1c009130 +76886690ns 1427976 1c00096c 0022a023 sw x2, 0(x5) x2:1c00a7d0 x5:1c00a890 PA:1c00a890 +76886710ns 1427977 1c000970 34202573 csrrs x10, x0, 0x342 x10=8000001a +76886731ns 1427978 1c000974 341025f3 csrrs x11, x0, 0x341 x11=1c002308 +76886751ns 1427979 1c000978 01f55613 srli x12, x10, 0x1f x12=00000001 x10:8000001a +76886771ns 1427980 1c00097c 00060963 beq x12, x0, 18 x12:00000001 +76886791ns 1427981 1c00097e 00b12023 sw x11, 0(x2) x11:1c002308 x2:1c00a7d0 PA:1c00a7d0 +76886811ns 1427982 1c000980 00008117 auipc x2, 0x8000 x2=1c008980 +76886832ns 1427983 1c000984 25412103 lw x2, 596(x2) x2=1c0199b0 x2:1c008980 PA:1c008bd4 +76886852ns 1427984 1c000988 17e020ef jal x1, 8574 x1=1c00098c +76886892ns 1427986 1c002b06 01f57513 andi x10, x10, 31 x10=0000001a x10:8000001a +76886912ns 1427987 1c002b08 00251793 slli x15, x10, 0x2 x15=00000068 x10:0000001a +76886933ns 1427988 1c002b0c 99c18513 addi x10, x3, -1636 x10=1c008d78 x3:1c0093dc +76886953ns 1427989 1c002b10 00f50533 add x10, x10, x15 x10=1c008de0 x10:1c008d78 x15:00000068 +76886973ns 1427990 1c002b12 00052783 lw x15, 0(x10) x15=1c000e42 x10:1c008de0 PA:1c008de0 +76887034ns 1427993 1c002b14 00078067 jalr x0, x15, 0 x15:1c000e42 +76887094ns 1427996 1c000e42 1a10a7b7 lui x15, 0x1a10a000 x15=1a10a000 +76887114ns 1427997 1c000e46 80078793 addi x15, x15, -2048 x15=1a109800 x15:1a10a000 +76887134ns 1427998 1c000e4a 0247a503 lw x10, 36(x15) x10=00000007 x15:1a109800 PA:1a109824 +76887155ns 1427999 1c000e4c a2818793 addi x15, x3, -1496 x15=1c008e04 x3:1c0093dc +76887215ns 1428002 1c000e50 0ff57513 andi x10, x10, 255 x10=00000007 x10:00000007 +76887235ns 1428003 1c000e54 00251713 slli x14, x10, 0x2 x14=0000001c x10:00000007 +76887256ns 1428004 1c000e58 00e787b3 add x15, x15, x14 x15=1c008e20 x15:1c008e04 x14:0000001c +76887276ns 1428005 1c000e5a 0007a703 lw x14, 0(x15) x14=1c003106 x15:1c008e20 PA:1c008e20 +76887316ns 1428007 1c000e5c 00070363 beq x14, x0, 6 x14:1c003106 +76887336ns 1428008 1c000e5e 0007a783 lw x15, 0(x15) x15=1c003106 x15:1c008e20 PA:1c008e20 +76887397ns 1428011 1c000e60 00078067 jalr x0, x15, 0 x15:1c003106 +76887437ns 1428013 1c003106 ff950513 addi x10, x10, -7 x10=00000000 x10:00000007 +76887458ns 1428014 1c003108 00251793 slli x15, x10, 0x2 x15=00000000 x10:00000000 +76887478ns 1428015 1c00310c da418513 addi x10, x3, -604 x10=1c009180 x3:1c0093dc +76887498ns 1428016 1c003110 ff010113 addi x2, x2, -16 x2=1c0199a0 x2:1c0199b0 +76887518ns 1428017 1c003112 00f50533 add x10, x10, x15 x10=1c009180 x10:1c009180 x15:00000000 +76887538ns 1428018 1c003114 00812423 sw x8, 8(x2) x8:a5a5a5a5 x2:1c0199a0 PA:1c0199a8 +76887559ns 1428019 1c003116 00052403 lw x8, 0(x10) x8=1c00b890 x10:1c009180 PA:1c009180 +76887579ns 1428020 1c003118 00112623 sw x1, 12(x2) x1:1c00098c x2:1c0199a0 PA:1c0199ac +76887599ns 1428021 1c00311a 00842783 lw x15, 8(x8) x15=00000000 x8:1c00b890 PA:1c00b898 +76887639ns 1428023 1c00311c 02079263 bne x15, x0, 36 x15:00000000 +76887659ns 1428024 1c00311e 00c42503 lw x10, 12(x8) x10=1c009d28 x8:1c00b890 PA:1c00b89c +76887700ns 1428026 1c003120 00050863 beq x10, x0, 16 x10:1c009d28 +76887720ns 1428027 1c003122 01052703 lw x14, 16(x10) x14=00000001 x10:1c009d28 PA:1c009d38 +76887740ns 1428028 1c003124 00100793 addi x15, x0, 1 x15=00000001 +76887760ns 1428029 1c003126 00f71363 bne x14, x15, 6 x14:00000001 x15:00000001 +76887781ns 1428030 1c00312a 3b6000ef jal x1, 950 x1=1c00312c +76887821ns 1428032 1c0034e0 ff010113 addi x2, x2, -16 x2=1c019990 x2:1c0199a0 +76887841ns 1428033 1c0034e2 00812423 sw x8, 8(x2) x8:1c00b890 x2:1c019990 PA:1c019998 +76887861ns 1428034 1c0034e4 00a00433 add x8, x0, x10 x8=1c009d28 x10:1c009d28 +76887882ns 1428035 1c0034e6 03452503 lw x10, 52(x10) x10=1c00c338 x10:1c009d28 PA:1c009d5c +76887902ns 1428036 1c0034e8 00112623 sw x1, 12(x2) x1:1c00312c x2:1c019990 PA:1c01999c +76887922ns 1428037 1c0034ea 00050363 beq x10, x0, 6 x10:1c00c338 +76887942ns 1428038 1c0034ec 03c42783 lw x15, 60(x8) x15=1c0033da x8:1c009d28 PA:1c009d64 +76888003ns 1428041 1c0034ee 000780e7 jalr x1, x15, 0 x1=1c0034f0 x15:1c0033da +76888043ns 1428043 1c0033da fe010113 addi x2, x2, -32 x2=1c019970 x2:1c019990 +76888063ns 1428044 1c0033dc 00112e23 sw x1, 28(x2) x1:1c0034f0 x2:1c019970 PA:1c01998c +76888083ns 1428045 1c0033de 00812c23 sw x8, 24(x2) x8:1c009d28 x2:1c019970 PA:1c019988 +76888104ns 1428046 1c0033e0 30047473 csrrci x8, 0x00000008, 0x300 x8=00001880 +76888184ns 1428050 1c0033e4 342027f3 csrrs x15, x0, 0x342 x15=8000001a +76888205ns 1428051 1c0033e8 00c10593 addi x11, x2, 12 x11=1c01997c x2:1c019970 +76888225ns 1428052 1c0033ea 0007de63 bge x15, x0, 28 x15:8000001a +76888245ns 1428053 1c0033ee 838fe0ef jal x1, -8136 x1=1c0033f2 +76888285ns 1428055 1c001426 ff010113 addi x2, x2, -16 x2=1c019960 x2:1c019970 +76888306ns 1428056 1c001428 00112623 sw x1, 12(x2) x1:1c0033f2 x2:1c019960 PA:1c01996c +76888326ns 1428057 1c00142a 00812423 sw x8, 8(x2) x8:00001880 x2:1c019960 PA:1c019968 +76888346ns 1428058 1c00142c 02051163 bne x10, x0, 34 x10:1c00c338 +76888407ns 1428061 1c00144e 04052703 lw x14, 64(x10) x14=00000000 x10:1c00c338 PA:1c00c378 +76888427ns 1428062 1c001450 00a007b3 add x15, x0, x10 x15=1c00c338 x10:1c00c338 +76888447ns 1428063 1c001452 00070c63 beq x14, x0, 24 x14:00000000 +76888508ns 1428066 1c00146a 00052703 lw x14, 0(x10) x14=1c00c338 x10:1c00c338 PA:1c00c338 +76888528ns 1428067 1c00146c 00b00433 add x8, x0, x11 x8=1c01997c x11:1c01997c +76888548ns 1428068 1c00146e 00071e63 bne x14, x0, 28 x14:1c00c338 +76888608ns 1428071 1c00148a 0387a683 lw x13, 56(x15) x13=00000000 x15:1c00c338 PA:1c00c370 +76888629ns 1428072 1c00148c 03c7a703 lw x14, 60(x15) x14=000000ff x15:1c00c338 PA:1c00c374 +76888649ns 1428073 1c00148e 00000513 addi x10, x0, 0 x10=00000000 +76888669ns 1428074 1c001490 00e6ff63 bgeu x13, x14, 30 x13:00000000 x14:000000ff +76888689ns 1428075 1c001494 0457c703 lbu x14, 69(x15) x14=000000ff x15:1c00c338 PA:1c00c37d +76888709ns 1428076 1c001498 00168693 addi x13, x13, 1 x13=00000001 x13:00000000 +76888730ns 1428077 1c00149a 02d7ac23 sw x13, 56(x15) x13:00000001 x15:1c00c338 PA:1c00c370 +76888750ns 1428078 1c00149c 01871613 slli x12, x14, 0x18 x12=ff000000 x14:000000ff +76888770ns 1428079 1c0014a0 41865613 srai x12, x12, 0x418 x12=ffffffff x12:ff000000 +76888790ns 1428080 1c0014a2 fff00693 addi x13, x0, -1 x13=ffffffff +76888810ns 1428081 1c0014a4 02d61263 bne x12, x13, 36 x12:ffffffff x13:ffffffff +76888831ns 1428082 1c0014a8 0247a703 lw x14, 36(x15) x14=00000001 x15:1c00c338 PA:1c00c35c +76888871ns 1428084 1c0014aa 00071663 bne x14, x0, 12 x14:00000001 +76888952ns 1428088 1c0014b6 02478513 addi x10, x15, 36 x10=1c00c35c x15:1c00c338 +76888972ns 1428089 1c0014ba 01b000ef jal x1, 2074 x1=1c0014be +76889012ns 1428091 1c001cd4 00c52783 lw x15, 12(x10) x15=1c009dd0 x10:1c00c35c PA:1c00c368 +76889033ns 1428092 1c001cd6 fe010113 addi x2, x2, -32 x2=1c019940 x2:1c019960 +76889053ns 1428093 1c001cd8 00812c23 sw x8, 24(x2) x8:1c01997c x2:1c019940 PA:1c019958 +76889073ns 1428094 1c001cda 00c7a403 lw x8, 12(x15) x8=1c009db8 x15:1c009dd0 PA:1c009ddc +76889093ns 1428095 1c001cdc 00112e23 sw x1, 28(x2) x1:1c0014be x2:1c019940 PA:1c01995c +76889113ns 1428096 1c001cde 02041263 bne x8, x0, 36 x8:1c009db8 +76889194ns 1428100 1c001d02 01840593 addi x11, x8, 24 x11=1c009dd0 x8:1c009db8 +76889214ns 1428101 1c001d06 00b00533 add x10, x0, x11 x10=1c009dd0 x11:1c009dd0 +76889234ns 1428102 1c001d08 00b12623 sw x11, 12(x2) x11:1c009dd0 x2:1c019940 PA:1c01994c +76889255ns 1428103 1c001d0a a1cff0ef jal x1, -3556 x1=1c001d0e +76889295ns 1428105 1c000f26 00452683 lw x13, 4(x10) x13=1c00c364 x10:1c009dd0 PA:1c009dd4 +76889315ns 1428106 1c000f28 00852703 lw x14, 8(x10) x14=1c00c364 x10:1c009dd0 PA:1c009dd8 +76889335ns 1428107 1c000f2a 01052783 lw x15, 16(x10) x15=1c00c35c x10:1c009dd0 PA:1c009de0 +76889356ns 1428108 1c000f2c 00e6a423 sw x14, 8(x13) x14:1c00c364 x13:1c00c364 PA:1c00c36c +76889376ns 1428109 1c000f2e 00d72223 sw x13, 4(x14) x13:1c00c364 x14:1c00c364 PA:1c00c368 +76889396ns 1428110 1c000f30 0047a683 lw x13, 4(x15) x13=1c00c364 x15:1c00c35c PA:1c00c360 +76889436ns 1428112 1c000f32 00a69363 bne x13, x10, 6 x13:1c00c364 x10:1c009dd0 +76889497ns 1428115 1c000f38 0007a703 lw x14, 0(x15) x14=00000001 x15:1c00c35c PA:1c00c35c +76889517ns 1428116 1c000f3a 00052823 sw x0, 16(x10) x10:1c009dd0 PA:1c009de0 +76889537ns 1428117 1c000f3e fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +76889558ns 1428118 1c000f40 00e7a023 sw x14, 0(x15) x14:00000000 x15:1c00c35c PA:1c00c35c +76889578ns 1428119 1c000f42 0007a503 lw x10, 0(x15) x10=00000000 x15:1c00c35c PA:1c00c35c +76889598ns 1428120 1c000f44 00008067 jalr x0, x1, 0 x1:1c001d0e +76889658ns 1428123 1c001d0e d681a783 lw x15, -664(x3) x15=00000000 x3:1c0093dc PA:1c009144 +76889679ns 1428124 1c001d12 00c12583 lw x11, 12(x2) x11=1c009dd0 x2:1c019940 PA:1c01994c +76889699ns 1428125 1c001d14 04079a63 bne x15, x0, 84 x15:00000000 +76889719ns 1428126 1c001d16 00440593 addi x11, x8, 4 x11=1c009dbc x8:1c009db8 +76889739ns 1428127 1c001d1a 00b00533 add x10, x0, x11 x10=1c009dbc x11:1c009dbc +76889759ns 1428128 1c001d1c 00b12623 sw x11, 12(x2) x11:1c009dbc x2:1c019940 PA:1c01994c +76889780ns 1428129 1c001d1e a08ff0ef jal x1, -3576 x1=1c001d22 +76889820ns 1428131 1c000f26 00452683 lw x13, 4(x10) x13=1c008d30 x10:1c009dbc PA:1c009dc0 +76889840ns 1428132 1c000f28 00852703 lw x14, 8(x10) x14=1c00b404 x10:1c009dbc PA:1c009dc4 +76889860ns 1428133 1c000f2a 01052783 lw x15, 16(x10) x15=1c008d28 x10:1c009dbc PA:1c009dcc +76889881ns 1428134 1c000f2c 00e6a423 sw x14, 8(x13) x14:1c00b404 x13:1c008d30 PA:1c008d38 +76889901ns 1428135 1c000f2e 00d72223 sw x13, 4(x14) x13:1c008d30 x14:1c00b404 PA:1c00b408 +76889921ns 1428136 1c000f30 0047a683 lw x13, 4(x15) x13=1c008d30 x15:1c008d28 PA:1c008d2c +76889961ns 1428138 1c000f32 00a69363 bne x13, x10, 6 x13:1c008d30 x10:1c009dbc +76890022ns 1428141 1c000f38 0007a703 lw x14, 0(x15) x14=00000002 x15:1c008d28 PA:1c008d28 +76890042ns 1428142 1c000f3a 00052823 sw x0, 16(x10) x10:1c009dbc PA:1c009dcc +76890062ns 1428143 1c000f3e fff70713 addi x14, x14, -1 x14=00000001 x14:00000002 +76890083ns 1428144 1c000f40 00e7a023 sw x14, 0(x15) x14:00000001 x15:1c008d28 PA:1c008d28 +76890103ns 1428145 1c000f42 0007a503 lw x10, 0(x15) x10=00000001 x15:1c008d28 PA:1c008d28 +76890123ns 1428146 1c000f44 00008067 jalr x0, x1, 0 x1:1c001d22 +76890163ns 1428148 1c001d22 02c42503 lw x10, 44(x8) x10=00000001 x8:1c009db8 PA:1c009de4 +76890183ns 1428149 1c001d24 d7018713 addi x14, x3, -656 x14=1c00914c x3:1c0093dc +76890204ns 1428150 1c001d28 00072683 lw x13, 0(x14) x13=00000001 x14:1c00914c PA:1c00914c +76890224ns 1428151 1c001d2a 00100793 addi x15, x0, 1 x15=00000001 +76890244ns 1428152 1c001d2c 00a797b3 sll x15, x15, x10 x15=00000002 x15:00000001 x10:00000001 +76890264ns 1428153 1c001d30 00d7e7b3 or x15, x15, x13 x15=00000003 x15:00000002 x13:00000001 +76890284ns 1428154 1c001d32 00f72023 sw x15, 0(x14) x15:00000003 x14:1c00914c PA:1c00914c +76890305ns 1428155 1c001d34 01400793 addi x15, x0, 20 x15=00000014 +76890325ns 1428156 1c001d36 02f50533 mul x10, x10, x15 x10=00000014 x10:00000001 x15:00000014 +76890345ns 1428157 1c001d3a 00c12583 lw x11, 12(x2) x11=1c009dbc x2:1c019940 PA:1c01994c +76890365ns 1428158 1c001d3c 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76890385ns 1428159 1c001d40 c8878793 addi x15, x15, -888 x15=1c008c88 x15:1c009000 +76890406ns 1428160 1c001d44 00f50533 add x10, x10, x15 x10=1c008c9c x10:00000014 x15:1c008c88 +76890426ns 1428161 1c001d46 99aff0ef jal x1, -3686 x1=1c001d4a +76890466ns 1428163 1c000ee0 00452783 lw x15, 4(x10) x15=1c008ca4 x10:1c008c9c PA:1c008ca0 +76890507ns 1428165 1c000ee2 0087a703 lw x14, 8(x15) x14=1c008ca4 x15:1c008ca4 PA:1c008cac +76890527ns 1428166 1c000ee4 00f5a223 sw x15, 4(x11) x15:1c008ca4 x11:1c009dbc PA:1c009dc0 +76890547ns 1428167 1c000ee6 00e5a423 sw x14, 8(x11) x14:1c008ca4 x11:1c009dbc PA:1c009dc4 +76890567ns 1428168 1c000ee8 0087a703 lw x14, 8(x15) x14=1c008ca4 x15:1c008ca4 PA:1c008cac +76890607ns 1428170 1c000eea 00b72223 sw x11, 4(x14) x11:1c009dbc x14:1c008ca4 PA:1c008ca8 +76890628ns 1428171 1c000eec 00b7a423 sw x11, 8(x15) x11:1c009dbc x15:1c008ca4 PA:1c008cac +76890648ns 1428172 1c000eee 00052783 lw x15, 0(x10) x15=00000000 x10:1c008c9c PA:1c008c9c +76890668ns 1428173 1c000ef0 00a5a823 sw x10, 16(x11) x10:1c008c9c x11:1c009dbc PA:1c009dcc +76890688ns 1428174 1c000ef2 00178793 addi x15, x15, 1 x15=00000001 x15:00000000 +76890708ns 1428175 1c000ef4 00f52023 sw x15, 0(x10) x15:00000001 x10:1c008c9c PA:1c008c9c +76890729ns 1428176 1c000ef6 00008067 jalr x0, x1, 0 x1:1c001d4a +76890789ns 1428179 1c001d4a d541a783 lw x15, -684(x3) x15=1c00a890 x3:1c0093dc PA:1c009130 +76890809ns 1428180 1c001d4e 02c42703 lw x14, 44(x8) x14=00000001 x8:1c009db8 PA:1c009de4 +76890830ns 1428181 1c001d50 00000513 addi x10, x0, 0 x10=00000000 +76890850ns 1428182 1c001d52 02c7a783 lw x15, 44(x15) x15=00000000 x15:1c00a890 PA:1c00a8bc +76890890ns 1428184 1c001d54 00e7f663 bgeu x15, x14, 12 x15:00000000 x14:00000001 +76890910ns 1428185 1c001d58 00100713 addi x14, x0, 1 x14=00000001 +76890931ns 1428186 1c001d5a d8e1a623 sw x14, -628(x3) x14:00000001 x3:1c0093dc PA:1c009168 +76890951ns 1428187 1c001d5e 00100513 addi x10, x0, 1 x10=00000001 +76890971ns 1428188 1c001d60 01c12083 lw x1, 28(x2) x1=1c0014be x2:1c019940 PA:1c01995c +76890991ns 1428189 1c001d62 01812403 lw x8, 24(x2) x8=1c01997c x2:1c019940 PA:1c019958 +76891011ns 1428190 1c001d64 02010113 addi x2, x2, 32 x2=1c019960 x2:1c019940 +76891032ns 1428191 1c001d66 00008067 jalr x0, x1, 0 x1:1c0014be +76891072ns 1428193 1c0014be fe0507e3 beq x10, x0, -18 x10:00000001 +76891092ns 1428194 1c0014c0 fe0406e3 beq x8, x0, -20 x8:1c01997c +76891112ns 1428195 1c0014c2 00100793 addi x15, x0, 1 x15=00000001 +76891132ns 1428196 1c0014c4 00f42023 sw x15, 0(x8) x15:00000001 x8:1c01997c PA:1c01997c +76891153ns 1428197 1c0014c6 fe7ff06f jal x0, -26 +76891193ns 1428199 1c0014ac 00100513 addi x10, x0, 1 x10=00000001 +76891213ns 1428200 1c0014ae 00c12083 lw x1, 12(x2) x1=1c0033f2 x2:1c019960 PA:1c01996c +76891233ns 1428201 1c0014b0 00812403 lw x8, 8(x2) x8=00001880 x2:1c019960 PA:1c019968 +76891254ns 1428202 1c0014b2 01010113 addi x2, x2, 16 x2=1c019970 x2:1c019960 +76891274ns 1428203 1c0014b4 00008067 jalr x0, x1, 0 x1:1c0033f2 +76891314ns 1428205 1c0033f2 00c12783 lw x15, 12(x2) x15=00000001 x2:1c019970 PA:1c01997c +76891355ns 1428207 1c0033f4 00078363 beq x15, x0, 6 x15:00000001 +76891375ns 1428208 1c0033f6 f80fe0ef jal x1, -6272 x1=1c0033fa +76891435ns 1428211 1c001b76 d681a703 lw x14, -664(x3) x14=00000000 x3:1c0093dc PA:1c009144 +76891456ns 1428212 1c001b7a d8c18793 addi x15, x3, -628 x15=1c009168 x3:1c0093dc +76891476ns 1428213 1c001b7e 00070463 beq x14, x0, 8 x14:00000000 +76891536ns 1428216 1c001b86 ff010113 addi x2, x2, -16 x2=1c019960 x2:1c019970 +76891557ns 1428217 1c001b88 00812423 sw x8, 8(x2) x8:00001880 x2:1c019960 PA:1c019968 +76891577ns 1428218 1c001b8a 00112623 sw x1, 12(x2) x1:1c0033fa x2:1c019960 PA:1c01996c +76891597ns 1428219 1c001b8c 0007a023 sw x0, 0(x15) x15:1c009168 PA:1c009168 +76891617ns 1428220 1c001b90 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76891637ns 1428221 1c001b94 0007a783 lw x15, 0(x15) x15=1c00a890 x15:1c009130 PA:1c009130 +76891657ns 1428222 1c001b96 a5a5a737 lui x14, 0xa5a5a000 x14=a5a5a000 +76891678ns 1428223 1c001b9a 5a570713 addi x14, x14, 1445 x14=a5a5a5a5 x14:a5a5a000 +76891698ns 1428224 1c001b9e 0307a783 lw x15, 48(x15) x15=1c00a248 x15:1c00a890 PA:1c00a8c0 +76891718ns 1428225 1c001ba0 d5418413 addi x8, x3, -684 x8=1c009130 x3:1c0093dc +76891738ns 1428226 1c001ba4 0007a603 lw x12, 0(x15) x12=a5a5a5a5 x15:1c00a248 PA:1c00a248 +76891779ns 1428228 1c001ba6 00e61b63 bne x12, x14, 22 x12:a5a5a5a5 x14:a5a5a5a5 +76891799ns 1428229 1c001baa 0047a683 lw x13, 4(x15) x13=a5a5a5a5 x15:1c00a248 PA:1c00a24c +76891839ns 1428231 1c001bac 00c69863 bne x13, x12, 16 x13:a5a5a5a5 x12:a5a5a5a5 +76891859ns 1428232 1c001bb0 0087a703 lw x14, 8(x15) x14=a5a5a5a5 x15:1c00a248 PA:1c00a250 +76891900ns 1428234 1c001bb2 00d71563 bne x14, x13, 10 x14:a5a5a5a5 x13:a5a5a5a5 +76891920ns 1428235 1c001bb6 00c7a783 lw x15, 12(x15) x15=a5a5a5a5 x15:1c00a248 PA:1c00a254 +76891960ns 1428237 1c001bb8 00e78863 beq x15, x14, 16 x15:a5a5a5a5 x14:a5a5a5a5 +76892021ns 1428240 1c001bc8 d701a503 lw x10, -656(x3) x10=00000003 x3:1c0093dc PA:1c00914c +76892041ns 1428241 1c001bcc abeff0ef jal x1, -3394 x1=1c001bd0 +76892082ns 1428243 1c000e8a 000107b7 lui x15, 0x10000 x15=00010000 +76892102ns 1428244 1c000e8c 02f57663 bgeu x10, x15, 44 x10:00000003 x15:00010000 +76892122ns 1428245 1c000e90 0ff00793 addi x15, x0, 255 x15=000000ff +76892142ns 1428246 1c000e94 00a7b7b3 sltu x15, x15, x10 x15=00000000 x15:000000ff x10:00000003 +76892162ns 1428247 1c000e98 00379793 slli x15, x15, 0x3 x15=00000000 x15:00000000 +76892182ns 1428248 1c000e9a 1c009737 lui x14, 0x1c009000 x14=1c009000 +76892203ns 1428249 1c000e9e 02000693 addi x13, x0, 32 x13=00000020 +76892223ns 1428250 1c000ea2 40f686b3 sub x13, x13, x15 x13=00000020 x13:00000020 x15:00000000 +76892243ns 1428251 1c000ea4 00f55533 srl x10, x10, x15 x10=00000003 x10:00000003 x15:00000000 +76892263ns 1428252 1c000ea8 ad470793 addi x15, x14, -1324 x15=1c008ad4 x14:1c009000 +76892283ns 1428253 1c000eac 00f50533 add x10, x10, x15 x10=1c008ad7 x10:00000003 x15:1c008ad4 +76892304ns 1428254 1c000eae 00054503 lbu x10, 0(x10) x10=00000002 x10:1c008ad7 PA:1c008ad7 +76892344ns 1428256 1c000eb2 40a68533 sub x10, x13, x10 x10=0000001e x13:00000020 x10:00000002 +76892364ns 1428257 1c000eb6 00008067 jalr x0, x1, 0 x1:1c001bd0 +76892405ns 1428259 1c001bd0 01f00713 addi x14, x0, 31 x14=0000001f +76892425ns 1428260 1c001bd2 40a70533 sub x10, x14, x10 x10=00000001 x14:0000001f x10:0000001e +76892445ns 1428261 1c001bd6 01400793 addi x15, x0, 20 x15=00000014 +76892465ns 1428262 1c001bd8 02f507b3 mul x15, x10, x15 x15=00000014 x10:00000001 x15:00000014 +76892485ns 1428263 1c001bdc 1c009737 lui x14, 0x1c009000 x14=1c009000 +76892506ns 1428264 1c001be0 c8870693 addi x13, x14, -888 x13=1c008c88 x14:1c009000 +76892526ns 1428265 1c001be4 c8870713 addi x14, x14, -888 x14=1c008c88 x14:1c009000 +76892546ns 1428266 1c001be8 00f686b3 add x13, x13, x15 x13=1c008c9c x13:1c008c88 x15:00000014 +76892566ns 1428267 1c001bea 0006a603 lw x12, 0(x13) x12=00000001 x13:1c008c9c PA:1c008c9c +76892607ns 1428269 1c001bec 02061263 bne x12, x0, 36 x12:00000001 +76892667ns 1428272 1c001c10 0046a603 lw x12, 4(x13) x12=1c008ca4 x13:1c008c9c PA:1c008ca0 +76892687ns 1428273 1c001c12 00878793 addi x15, x15, 8 x15=0000001c x15:00000014 +76892707ns 1428274 1c001c14 00e787b3 add x15, x15, x14 x15=1c008ca4 x15:0000001c x14:1c008c88 +76892728ns 1428275 1c001c16 00462603 lw x12, 4(x12) x12=1c009dbc x12:1c008ca4 PA:1c008ca8 +76892768ns 1428277 1c001c18 00c6a223 sw x12, 4(x13) x12:1c009dbc x13:1c008c9c PA:1c008ca0 +76892788ns 1428278 1c001c1a 00f61463 bne x12, x15, 8 x12:1c009dbc x15:1c008ca4 +76892849ns 1428281 1c001c22 01400793 addi x15, x0, 20 x15=00000014 +76892869ns 1428282 1c001c24 02f50533 mul x10, x10, x15 x10=00000014 x10:00000001 x15:00000014 +76892889ns 1428283 1c001c28 00c12083 lw x1, 12(x2) x1=1c0033fa x2:1c019960 PA:1c01996c +76892909ns 1428284 1c001c2a 00a70733 add x14, x14, x10 x14=1c008c9c x14:1c008c88 x10:00000014 +76892930ns 1428285 1c001c2c 00472783 lw x15, 4(x14) x15=1c009dbc x14:1c008c9c PA:1c008ca0 +76892950ns 1428286 1c001c2e 1c009737 lui x14, 0x1c009000 x14=1c009000 +76892970ns 1428287 1c001c32 00c7a783 lw x15, 12(x15) x15=1c009db8 x15:1c009dbc PA:1c009dc8 +76893010ns 1428289 1c001c34 00f42023 sw x15, 0(x8) x15:1c009db8 x8:1c009130 PA:1c009130 +76893031ns 1428290 1c001c36 00042783 lw x15, 0(x8) x15=1c009db8 x8:1c009130 PA:1c009130 +76893051ns 1428291 1c001c38 00812403 lw x8, 8(x2) x8=00001880 x2:1c019960 PA:1c019968 +76893071ns 1428292 1c001c3a 05878793 addi x15, x15, 88 x15=1c009e10 x15:1c009db8 +76893091ns 1428293 1c001c3e c4f72223 sw x15, -956(x14) x15:1c009e10 x14:1c009000 PA:1c008c44 +76893111ns 1428294 1c001c42 01010113 addi x2, x2, 16 x2=1c019970 x2:1c019960 +76893131ns 1428295 1c001c44 00008067 jalr x0, x1, 0 x1:1c0033fa +76893192ns 1428298 1c0033fa 30041073 csrrw x0, x8, 0x300 x8:00001880 +76893273ns 1428302 1c0033fe 01c12083 lw x1, 28(x2) x1=1c0034f0 x2:1c019970 PA:1c01998c +76893293ns 1428303 1c003400 01812403 lw x8, 24(x2) x8=1c009d28 x2:1c019970 PA:1c019988 +76893313ns 1428304 1c003402 02010113 addi x2, x2, 32 x2=1c019990 x2:1c019970 +76893333ns 1428305 1c003404 00008067 jalr x0, x1, 0 x1:1c0034f0 +76893374ns 1428307 1c0034f0 00100793 addi x15, x0, 1 x15=00000001 +76893394ns 1428308 1c0034f2 04f40223 sb x15, 68(x8) x15:00000001 x8:1c009d28 PA:1c009d6c +76893414ns 1428309 1c0034f6 00c12083 lw x1, 12(x2) x1=1c00312c x2:1c019990 PA:1c01999c +76893434ns 1428310 1c0034f8 00812403 lw x8, 8(x2) x8=1c00b890 x2:1c019990 PA:1c019998 +76893455ns 1428311 1c0034fa 01010113 addi x2, x2, 16 x2=1c0199a0 x2:1c019990 +76893475ns 1428312 1c0034fc 00008067 jalr x0, x1, 0 x1:1c00312c +76893515ns 1428314 1c00312c 00042623 sw x0, 12(x8) x8:1c00b890 PA:1c00b89c +76893535ns 1428315 1c003130 00800533 add x10, x0, x8 x10=1c00b890 x8:1c00b890 +76893556ns 1428316 1c003132 ac3ff0ef jal x1, -1342 x1=1c003136 +76893596ns 1428318 1c002bf4 300027f3 csrrs x15, x0, 0x300 x15=00001880 +76893677ns 1428322 1c002bf8 300476f3 csrrci x13, 0x00000008, 0x300 x13=00001880 +76893757ns 1428326 1c002bfc 00052783 lw x15, 0(x10) x15=1c00b8b0 x10:1c00b890 PA:1c00b890 +76893798ns 1428328 1c002bfe 0007a503 lw x10, 0(x15) x10=00000000 x15:1c00b8b0 PA:1c00b8b0 +76893838ns 1428330 1c002c00 00050663 beq x10, x0, 12 x10:00000000 +76893899ns 1428333 1c002c0c 30069073 csrrw x0, x13, 0x300 x13:00001880 +76893980ns 1428337 1c002c10 00008067 jalr x0, x1, 0 x1:1c003136 +76894020ns 1428339 1c003136 00050563 beq x10, x0, 10 x10:00000000 +76894081ns 1428342 1c003140 00c12083 lw x1, 12(x2) x1=1c00098c x2:1c0199a0 PA:1c0199ac +76894101ns 1428343 1c003142 00812403 lw x8, 8(x2) x8=a5a5a5a5 x2:1c0199a0 PA:1c0199a8 +76894121ns 1428344 1c003144 01010113 addi x2, x2, 16 x2=1c0199b0 x2:1c0199a0 +76894141ns 1428345 1c003146 00008067 jalr x0, x1, 0 x1:1c00098c +76894181ns 1428347 1c00098c 0320006f jal x0, 50 +76894242ns 1428350 1c0009be d541a303 lw x6, -684(x3) x6=1c009db8 x3:1c0093dc PA:1c009130 +76894282ns 1428352 1c0009c2 00032103 lw x2, 0(x6) x2=1c009ac0 x6:1c009db8 PA:1c009db8 +76894323ns 1428354 1c0009c6 00012283 lw x5, 0(x2) x5=1c001732 x2:1c009ac0 PA:1c009ac0 +76894363ns 1428356 1c0009c8 34129073 csrrw x0, x5, 0x341 x5:1c001732 +76894383ns 1428357 1c0009cc 00412283 lw x5, 4(x2) x5=00000000 x2:1c009ac0 PA:1c009ac4 +76894404ns 1428358 1c0009ce 00812303 lw x6, 8(x2) x6=00000000 x2:1c009ac0 PA:1c009ac8 +76894424ns 1428359 1c0009d0 00c12383 lw x7, 12(x2) x7=00000000 x2:1c009ac0 PA:1c009acc +76894444ns 1428360 1c0009d2 01012e03 lw x28, 16(x2) x28=00000000 x2:1c009ac0 PA:1c009ad0 +76894464ns 1428361 1c0009d4 01412e83 lw x29, 20(x2) x29=00000000 x2:1c009ac0 PA:1c009ad4 +76894484ns 1428362 1c0009d6 01812f03 lw x30, 24(x2) x30=00000000 x2:1c009ac0 PA:1c009ad8 +76894505ns 1428363 1c0009d8 7c029073 csrrw x0, x5, 0x7c0 x5:00000000 +76894525ns 1428364 1c0009dc 7c131073 csrrw x0, x6, 0x7c1 x6:00000000 +76894545ns 1428365 1c0009e0 7c239073 csrrw x0, x7, 0x7c2 x7:00000000 +76894565ns 1428366 1c0009e4 7c4e1073 csrrw x0, x28, 0x7c4 x28:00000000 +76894585ns 1428367 1c0009e8 7c5e9073 csrrw x0, x29, 0x7c5 x29:00000000 +76894606ns 1428368 1c0009ec 7c6f1073 csrrw x0, x30, 0x7c6 x30:00000000 +76894626ns 1428369 1c0009f0 01810113 addi x2, x2, 24 x2=1c009ad8 x2:1c009ac0 +76894646ns 1428370 1c0009f2 07412283 lw x5, 116(x2) x5=00001880 x2:1c009ad8 PA:1c009b4c +76894686ns 1428372 1c0009f4 30029073 csrrw x0, x5, 0x300 x5:00001880 +76894767ns 1428376 1c0009f8 00412083 lw x1, 4(x2) x1=1c00172c x2:1c009ad8 PA:1c009adc +76894787ns 1428377 1c0009fa 00812283 lw x5, 8(x2) x5=a5a5a5a5 x2:1c009ad8 PA:1c009ae0 +76894807ns 1428378 1c0009fc 00c12303 lw x6, 12(x2) x6=00000010 x2:1c009ad8 PA:1c009ae4 +76894828ns 1428379 1c0009fe 01012383 lw x7, 16(x2) x7=a5a5a5a5 x2:1c009ad8 PA:1c009ae8 +76894848ns 1428380 1c000a00 01412403 lw x8, 20(x2) x8=1c00c338 x2:1c009ad8 PA:1c009aec +76894868ns 1428381 1c000a02 01812483 lw x9, 24(x2) x9=00000000 x2:1c009ad8 PA:1c009af0 +76894888ns 1428382 1c000a04 01c12503 lw x10, 28(x2) x10=00000000 x2:1c009ad8 PA:1c009af4 +76894908ns 1428383 1c000a06 02012583 lw x11, 32(x2) x11=1c009dbc x2:1c009ad8 PA:1c009af8 +76894929ns 1428384 1c000a08 02412603 lw x12, 36(x2) x12=00000003 x2:1c009ad8 PA:1c009afc +76894949ns 1428385 1c000a0a 02812683 lw x13, 40(x2) x13=1c009db8 x2:1c009ad8 PA:1c009b00 +76894969ns 1428386 1c000a0c 02c12703 lw x14, 44(x2) x14=00000000 x2:1c009ad8 PA:1c009b04 +76894989ns 1428387 1c000a0e 03012783 lw x15, 48(x2) x15=00000000 x2:1c009ad8 PA:1c009b08 +76895009ns 1428388 1c000a10 03412803 lw x16, 52(x2) x16=00000010 x2:1c009ad8 PA:1c009b0c +76895030ns 1428389 1c000a12 03812883 lw x17, 56(x2) x17=000000ff x2:1c009ad8 PA:1c009b10 +76895050ns 1428390 1c000a14 03c12903 lw x18, 60(x2) x18=00000000 x2:1c009ad8 PA:1c009b14 +76895070ns 1428391 1c000a16 04012983 lw x19, 64(x2) x19=ffffffff x2:1c009ad8 PA:1c009b18 +76895090ns 1428392 1c000a18 04412a03 lw x20, 68(x2) x20=1c00c35c x2:1c009ad8 PA:1c009b1c +76895110ns 1428393 1c000a1a 04812a83 lw x21, 72(x2) x21=a5a5a5a5 x2:1c009ad8 PA:1c009b20 +76895131ns 1428394 1c000a1c 04c12b03 lw x22, 76(x2) x22=a5a5a5a5 x2:1c009ad8 PA:1c009b24 +76895151ns 1428395 1c000a1e 05012b83 lw x23, 80(x2) x23=a5a5a5a5 x2:1c009ad8 PA:1c009b28 +76895171ns 1428396 1c000a20 05412c03 lw x24, 84(x2) x24=a5a5a5a5 x2:1c009ad8 PA:1c009b2c +76895191ns 1428397 1c000a22 05812c83 lw x25, 88(x2) x25=a5a5a5a5 x2:1c009ad8 PA:1c009b30 +76895211ns 1428398 1c000a24 05c12d03 lw x26, 92(x2) x26=a5a5a5a5 x2:1c009ad8 PA:1c009b34 +76895231ns 1428399 1c000a26 06012d83 lw x27, 96(x2) x27=a5a5a5a5 x2:1c009ad8 PA:1c009b38 +76895252ns 1428400 1c000a28 06412e03 lw x28, 100(x2) x28=00000004 x2:1c009ad8 PA:1c009b3c +76895272ns 1428401 1c000a2a 06812e83 lw x29, 104(x2) x29=1c00b890 x2:1c009ad8 PA:1c009b40 +76895292ns 1428402 1c000a2c 06c12f03 lw x30, 108(x2) x30=00000000 x2:1c009ad8 PA:1c009b44 +76895312ns 1428403 1c000a2e 07012f83 lw x31, 112(x2) x31=a5a5a5a5 x2:1c009ad8 PA:1c009b48 +76895332ns 1428404 1c000a30 07810113 addi x2, x2, 120 x2=1c009b50 x2:1c009ad8 +76895353ns 1428405 1c000a34 30200073 mret +76895454ns 1428410 1c001732 00100913 addi x18, x0, 1 x18=00000001 +76895474ns 1428411 1c001734 0d9000ef jal x1, 2264 x1=1c001738 +76895514ns 1428413 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +76895595ns 1428417 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76895635ns 1428419 1c002014 00078863 beq x15, x0, 16 x15:00000001 +76895655ns 1428420 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76895676ns 1428421 1c00201a 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76895696ns 1428422 1c00201c 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76895716ns 1428423 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c009db8 PA:1c009dfc +76895756ns 1428425 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76895777ns 1428426 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c009db8 PA:1c009dfc +76895797ns 1428427 1c002024 00008067 jalr x0, x1, 0 x1:1c001738 +76895837ns 1428429 1c001738 03842783 lw x15, 56(x8) x15=00000001 x8:1c00c338 PA:1c00c370 +76895878ns 1428431 1c00173a f60781e3 beq x15, x0, -158 x15:00000001 +76895898ns 1428432 1c00173c fff78793 addi x15, x15, -1 x15=00000000 x15:00000001 +76895918ns 1428433 1c00173e 02f42c23 sw x15, 56(x8) x15:00000000 x8:1c00c338 PA:1c00c370 +76895938ns 1428434 1c001740 00042783 lw x15, 0(x8) x15=1c00c338 x8:1c00c338 PA:1c00c338 +76895979ns 1428436 1c001742 00079463 bne x15, x0, 8 x15:1c00c338 +76896039ns 1428439 1c00174a 01042783 lw x15, 16(x8) x15=00000000 x8:1c00c338 PA:1c00c348 +76896080ns 1428441 1c00174c 00078763 beq x15, x0, 14 x15:00000000 +76896160ns 1428445 1c00175a 0cd000ef jal x1, 2252 x1=1c00175e +76896221ns 1428448 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76896261ns 1428450 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +76896281ns 1428451 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76896302ns 1428452 1c002030 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +76896342ns 1428454 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c009db8 PA:1c009dfc +76896382ns 1428456 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +76896403ns 1428457 1c002036 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76896423ns 1428458 1c002038 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76896443ns 1428459 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c009db8 PA:1c009dfc +76896483ns 1428461 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +76896504ns 1428462 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c009db8 PA:1c009dfc +76896524ns 1428463 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c009db8 PA:1c009dfc +76896564ns 1428465 1c002042 00079363 bne x15, x0, 6 x15:00000000 +76896584ns 1428466 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +76896665ns 1428470 1c002048 00008067 jalr x0, x1, 0 x1:1c00175e +76896705ns 1428472 1c00175e 00100493 addi x9, x0, 1 x9=00000001 +76896726ns 1428473 1c001760 03c12083 lw x1, 60(x2) x1=1c003438 x2:1c009b50 PA:1c009b8c +76896746ns 1428474 1c001762 03812403 lw x8, 56(x2) x8=00000088 x2:1c009b50 PA:1c009b88 +76896766ns 1428475 1c001764 03012903 lw x18, 48(x2) x18=1c009188 x2:1c009b50 PA:1c009b80 +76896786ns 1428476 1c001766 02c12983 lw x19, 44(x2) x19=1c009000 x2:1c009b50 PA:1c009b7c +76896806ns 1428477 1c001768 02812a03 lw x20, 40(x2) x20=1c00918c x2:1c009b50 PA:1c009b78 +76896827ns 1428478 1c00176a 00900533 add x10, x0, x9 x10=00000001 x9:00000001 +76896847ns 1428479 1c00176c 03412483 lw x9, 52(x2) x9=1c009190 x2:1c009b50 PA:1c009b84 +76896867ns 1428480 1c00176e 04010113 addi x2, x2, 64 x2=1c009b90 x2:1c009b50 +76896887ns 1428481 1c001770 00008067 jalr x0, x1, 0 x1:1c003438 +76896928ns 1428483 1c003438 fefff06f jal x0, -18 +76896988ns 1428486 1c003426 30041073 csrrw x0, x8, 0x300 x8:00000088 +76897069ns 1428490 1c00342a 01c12083 lw x1, 28(x2) x1=1c0034de x2:1c009b90 PA:1c009bac +76897089ns 1428491 1c00342c 01812403 lw x8, 24(x2) x8=1c009d28 x2:1c009b90 PA:1c009ba8 +76897109ns 1428492 1c00342e 02010113 addi x2, x2, 32 x2=1c009bb0 x2:1c009b90 +76897130ns 1428493 1c003430 00008067 jalr x0, x1, 0 x1:1c0034de +76897170ns 1428495 1c0034de fe1ff06f jal x0, -32 +76897230ns 1428498 1c0034be 04444783 lbu x15, 68(x8) x15=00000001 x8:1c009d28 PA:1c009d6c +76897271ns 1428500 1c0034c2 01879793 slli x15, x15, 0x18 x15=01000000 x15:00000001 +76897291ns 1428501 1c0034c4 4187d793 srai x15, x15, 0x418 x15=00000001 x15:01000000 +76897311ns 1428502 1c0034c6 00078763 beq x15, x0, 14 x15:00000001 +76897331ns 1428503 1c0034c8 00800533 add x10, x0, x8 x10=1c009d28 x8:1c009d28 +76897352ns 1428504 1c0034ca 00812403 lw x8, 8(x2) x8=00000000 x2:1c009bb0 PA:1c009bb8 +76897372ns 1428505 1c0034cc 00c12083 lw x1, 12(x2) x1=1c0036ee x2:1c009bb0 PA:1c009bbc +76897392ns 1428506 1c0034ce 01010113 addi x2, x2, 16 x2=1c009bc0 x2:1c009bb0 +76897412ns 1428507 1c0034d0 fb3ff06f jal x0, -78 +76897473ns 1428510 1c003482 04750783 lb x15, 71(x10) x15=00000001 x10:1c009d28 PA:1c009d6f +76897513ns 1428512 1c003486 02078763 beq x15, x0, 46 x15:00000001 +76897533ns 1428513 1c003488 ff010113 addi x2, x2, -16 x2=1c009bb0 x2:1c009bc0 +76897554ns 1428514 1c00348a 00812423 sw x8, 8(x2) x8:00000000 x2:1c009bb0 PA:1c009bb8 +76897574ns 1428515 1c00348c 00112623 sw x1, 12(x2) x1:1c0036ee x2:1c009bb0 PA:1c009bbc +76897594ns 1428516 1c00348e 00a00433 add x8, x0, x10 x8=1c009d28 x10:1c009d28 +76897614ns 1428517 1c003490 040503a3 sb x0, 71(x10) x10:1c009d28 PA:1c009d6f +76897634ns 1428518 1c003494 03452783 lw x15, 52(x10) x15=1c00c338 x10:1c009d28 PA:1c009d5c +76897675ns 1428520 1c003496 00078b63 beq x15, x0, 22 x15:1c00c338 +76897695ns 1428521 1c003498 03452503 lw x10, 52(x10) x10=1c00c338 x10:1c009d28 PA:1c009d5c +76897735ns 1428523 1c00349a 00050763 beq x10, x0, 14 x10:1c00c338 +76897755ns 1428524 1c00349c c1cfe0ef jal x1, -7140 x1=1c0034a0 +76897796ns 1428526 1c0018b8 ff010113 addi x2, x2, -16 x2=1c009ba0 x2:1c009bb0 +76897816ns 1428527 1c0018ba 00112623 sw x1, 12(x2) x1:1c0034a0 x2:1c009ba0 PA:1c009bac +76897836ns 1428528 1c0018bc 00812423 sw x8, 8(x2) x8:1c009d28 x2:1c009ba0 PA:1c009ba8 +76897856ns 1428529 1c0018be 02051163 bne x10, x0, 34 x10:1c00c338 +76897917ns 1428532 1c0018e0 00a00433 add x8, x0, x10 x8=1c00c338 x10:1c00c338 +76897937ns 1428533 1c0018e2 fa9ff0ef jal x1, -88 x1=1c0018e4 +76897998ns 1428536 1c00188a 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76898018ns 1428537 1c00188e c4878693 addi x13, x15, -952 x13=1c008c48 x15:1c009000 +76898038ns 1428538 1c001892 00000713 addi x14, x0, 0 x14=00000000 +76898058ns 1428539 1c001894 c4878793 addi x15, x15, -952 x15=1c008c48 x15:1c009000 +76898079ns 1428540 1c001898 00800613 addi x12, x0, 8 x12=00000008 +76898099ns 1428541 1c00189a 0046a583 lw x11, 4(x13) x11=1c00ad20 x13:1c008c48 PA:1c008c4c +76898139ns 1428543 1c00189c 00a59963 bne x11, x10, 18 x11:1c00ad20 x10:1c00c338 +76898200ns 1428546 1c0018ae 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76898220ns 1428547 1c0018b0 00868693 addi x13, x13, 8 x13=1c008c50 x13:1c008c48 +76898240ns 1428548 1c0018b2 fec714e3 bne x14, x12, -24 x14:00000001 x12:00000008 +76898301ns 1428551 1c00189a 0046a583 lw x11, 4(x13) x11=00000000 x13:1c008c50 PA:1c008c54 +76898341ns 1428553 1c00189c 00a59963 bne x11, x10, 18 x11:00000000 x10:1c00c338 +76898402ns 1428556 1c0018ae 00170713 addi x14, x14, 1 x14=00000002 x14:00000001 +76898422ns 1428557 1c0018b0 00868693 addi x13, x13, 8 x13=1c008c58 x13:1c008c50 +76898442ns 1428558 1c0018b2 fec714e3 bne x14, x12, -24 x14:00000002 x12:00000008 +76898503ns 1428561 1c00189a 0046a583 lw x11, 4(x13) x11=00000000 x13:1c008c58 PA:1c008c5c +76898543ns 1428563 1c00189c 00a59963 bne x11, x10, 18 x11:00000000 x10:1c00c338 +76898604ns 1428566 1c0018ae 00170713 addi x14, x14, 1 x14=00000003 x14:00000002 +76898624ns 1428567 1c0018b0 00868693 addi x13, x13, 8 x13=1c008c60 x13:1c008c58 +76898644ns 1428568 1c0018b2 fec714e3 bne x14, x12, -24 x14:00000003 x12:00000008 +76898704ns 1428571 1c00189a 0046a583 lw x11, 4(x13) x11=00000000 x13:1c008c60 PA:1c008c64 +76898745ns 1428573 1c00189c 00a59963 bne x11, x10, 18 x11:00000000 x10:1c00c338 +76898805ns 1428576 1c0018ae 00170713 addi x14, x14, 1 x14=00000004 x14:00000003 +76898826ns 1428577 1c0018b0 00868693 addi x13, x13, 8 x13=1c008c68 x13:1c008c60 +76898846ns 1428578 1c0018b2 fec714e3 bne x14, x12, -24 x14:00000004 x12:00000008 +76898906ns 1428581 1c00189a 0046a583 lw x11, 4(x13) x11=00000000 x13:1c008c68 PA:1c008c6c +76898947ns 1428583 1c00189c 00a59963 bne x11, x10, 18 x11:00000000 x10:1c00c338 +76899007ns 1428586 1c0018ae 00170713 addi x14, x14, 1 x14=00000005 x14:00000004 +76899028ns 1428587 1c0018b0 00868693 addi x13, x13, 8 x13=1c008c70 x13:1c008c68 +76899048ns 1428588 1c0018b2 fec714e3 bne x14, x12, -24 x14:00000005 x12:00000008 +76899108ns 1428591 1c00189a 0046a583 lw x11, 4(x13) x11=00000000 x13:1c008c70 PA:1c008c74 +76899149ns 1428593 1c00189c 00a59963 bne x11, x10, 18 x11:00000000 x10:1c00c338 +76899209ns 1428596 1c0018ae 00170713 addi x14, x14, 1 x14=00000006 x14:00000005 +76899229ns 1428597 1c0018b0 00868693 addi x13, x13, 8 x13=1c008c78 x13:1c008c70 +76899250ns 1428598 1c0018b2 fec714e3 bne x14, x12, -24 x14:00000006 x12:00000008 +76899310ns 1428601 1c00189a 0046a583 lw x11, 4(x13) x11=00000000 x13:1c008c78 PA:1c008c7c +76899351ns 1428603 1c00189c 00a59963 bne x11, x10, 18 x11:00000000 x10:1c00c338 +76899411ns 1428606 1c0018ae 00170713 addi x14, x14, 1 x14=00000007 x14:00000006 +76899431ns 1428607 1c0018b0 00868693 addi x13, x13, 8 x13=1c008c80 x13:1c008c78 +76899452ns 1428608 1c0018b2 fec714e3 bne x14, x12, -24 x14:00000007 x12:00000008 +76899512ns 1428611 1c00189a 0046a583 lw x11, 4(x13) x11=00000000 x13:1c008c80 PA:1c008c84 +76899553ns 1428613 1c00189c 00a59963 bne x11, x10, 18 x11:00000000 x10:1c00c338 +76899613ns 1428616 1c0018ae 00170713 addi x14, x14, 1 x14=00000008 x14:00000007 +76899633ns 1428617 1c0018b0 00868693 addi x13, x13, 8 x13=1c008c88 x13:1c008c80 +76899654ns 1428618 1c0018b2 fec714e3 bne x14, x12, -24 x14:00000008 x12:00000008 +76899674ns 1428619 1c0018b6 00008067 jalr x0, x1, 0 x1:1c0018e4 +76899714ns 1428621 1c0018e4 00800533 add x10, x0, x8 x10=1c00c338 x8:1c00c338 +76899734ns 1428622 1c0018e6 00812403 lw x8, 8(x2) x8=1c009d28 x2:1c009ba0 PA:1c009ba8 +76899754ns 1428623 1c0018e8 00c12083 lw x1, 12(x2) x1=1c0034a0 x2:1c009ba0 PA:1c009bac +76899775ns 1428624 1c0018ea 01010113 addi x2, x2, 16 x2=1c009bb0 x2:1c009ba0 +76899795ns 1428625 1c0018ec 0a60106f jal x0, 4262 +76899835ns 1428627 1c002992 fe010113 addi x2, x2, -32 x2=1c009b90 x2:1c009bb0 +76899855ns 1428628 1c002994 00112e23 sw x1, 28(x2) x1:1c0034a0 x2:1c009b90 PA:1c009bac +76899876ns 1428629 1c002996 00a12623 sw x10, 12(x2) x10:1c00c338 x2:1c009b90 PA:1c009b9c +76899896ns 1428630 1c002998 00050a63 beq x10, x0, 20 x10:1c00c338 +76899916ns 1428631 1c00299a 87cff0ef jal x1, -3972 x1=1c00299e +76899977ns 1428634 1c001a16 d6818793 addi x15, x3, -664 x15=1c009144 x3:1c0093dc +76899997ns 1428635 1c001a1a 0007a703 lw x14, 0(x15) x14=00000000 x15:1c009144 PA:1c009144 +76900037ns 1428637 1c001a1c 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76900057ns 1428638 1c001a1e 00e7a023 sw x14, 0(x15) x14:00000001 x15:1c009144 PA:1c009144 +76900078ns 1428639 1c001a20 00008067 jalr x0, x1, 0 x1:1c00299e +76900118ns 1428641 1c00299e 00c12503 lw x10, 12(x2) x10=1c00c338 x2:1c009b90 PA:1c009b9c +76900138ns 1428642 1c0029a0 775000ef jal x1, 3956 x1=1c0029a4 +76900179ns 1428644 1c003914 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76900199ns 1428645 1c003918 00a005b3 add x11, x0, x10 x11=1c00c338 x10:1c00c338 +76900219ns 1428646 1c00391a c447a503 lw x10, -956(x15) x10=1c009e10 x15:1c009000 PA:1c008c44 +76900239ns 1428647 1c00391e 0020006f jal x0, 2 +76900279ns 1428649 1c003920 0a058363 beq x11, x0, 166 x11:1c00c338 +76900300ns 1428650 1c003922 ffc5a783 lw x15, -4(x11) x15=00000058 x11:1c00c338 PA:1c00c334 +76900320ns 1428651 1c003926 fe010113 addi x2, x2, -32 x2=1c009b70 x2:1c009b90 +76900340ns 1428652 1c003928 00812c23 sw x8, 24(x2) x8:1c009d28 x2:1c009b70 PA:1c009b88 +76900360ns 1428653 1c00392a 00112e23 sw x1, 28(x2) x1:1c0029a4 x2:1c009b70 PA:1c009b8c +76900380ns 1428654 1c00392c ffc58413 addi x8, x11, -4 x8=1c00c334 x11:1c00c338 +76900401ns 1428655 1c003930 0007d363 bge x15, x0, 6 x15:00000058 +76900461ns 1428658 1c003936 00a12623 sw x10, 12(x2) x10:1c009e10 x2:1c009b70 PA:1c009b7c +76900481ns 1428659 1c003938 92eff0ef jal x1, -3794 x1=1c00393c +76900542ns 1428662 1c002a66 fb1fe06f jal x0, -4176 +76900603ns 1428665 1c001a16 d6818793 addi x15, x3, -664 x15=1c009144 x3:1c0093dc +76900623ns 1428666 1c001a1a 0007a703 lw x14, 0(x15) x14=00000001 x15:1c009144 PA:1c009144 +76900663ns 1428668 1c001a1c 00170713 addi x14, x14, 1 x14=00000002 x14:00000001 +76900683ns 1428669 1c001a1e 00e7a023 sw x14, 0(x15) x14:00000002 x15:1c009144 PA:1c009144 +76900703ns 1428670 1c001a20 00008067 jalr x0, x1, 0 x1:1c00393c +76900744ns 1428672 1c00393c db81a783 lw x15, -584(x3) x15=1c00c1d4 x3:1c0093dc PA:1c009194 +76900764ns 1428673 1c003940 00c12503 lw x10, 12(x2) x10=1c009e10 x2:1c009b70 PA:1c009b7c +76900784ns 1428674 1c003942 00e00633 add x12, x0, x14 x12=00000002 x14:00000002 +76900804ns 1428675 1c003944 00079a63 bne x15, x0, 20 x15:1c00c1d4 +76900865ns 1428678 1c003958 00f47f63 bgeu x8, x15, 30 x8:1c00c334 x15:1c00c1d4 +76900926ns 1428681 1c003976 00f00733 add x14, x0, x15 x14=1c00c1d4 x15:1c00c1d4 +76900946ns 1428682 1c003978 0047a783 lw x15, 4(x15) x15=00000000 x15:1c00c1d4 PA:1c00c1d8 +76900986ns 1428684 1c00397a 00078363 beq x15, x0, 6 x15:00000000 +76901047ns 1428687 1c003980 00072683 lw x13, 0(x14) x13=00000160 x14:1c00c1d4 PA:1c00c1d4 +76901087ns 1428689 1c003982 00d70633 add x12, x14, x13 x12=1c00c334 x14:1c00c1d4 x13:00000160 +76901107ns 1428690 1c003986 00861f63 bne x12, x8, 30 x12:1c00c334 x8:1c00c334 +76901128ns 1428691 1c00398a 00042603 lw x12, 0(x8) x12=00000058 x8:1c00c334 PA:1c00c334 +76901168ns 1428693 1c00398c 00c686b3 add x13, x13, x12 x13=000001b8 x13:00000160 x12:00000058 +76901188ns 1428694 1c00398e 00d72023 sw x13, 0(x14) x13:000001b8 x14:1c00c1d4 PA:1c00c1d4 +76901208ns 1428695 1c003990 00d70633 add x12, x14, x13 x12=1c00c38c x14:1c00c1d4 x13:000001b8 +76901228ns 1428696 1c003994 fac79de3 bne x15, x12, -70 x15:00000000 x12:1c00c38c +76901289ns 1428699 1c00394e 01812403 lw x8, 24(x2) x8=1c009d28 x2:1c009b70 PA:1c009b88 +76901309ns 1428700 1c003950 01c12083 lw x1, 28(x2) x1=1c0029a4 x2:1c009b70 PA:1c009b8c +76901329ns 1428701 1c003952 02010113 addi x2, x2, 32 x2=1c009b90 x2:1c009b70 +76901350ns 1428702 1c003954 916ff06f jal x0, -3818 +76901410ns 1428705 1c002a6a 8e3ff06f jal x0, -1822 +76901451ns 1428707 1c00234c fc010113 addi x2, x2, -64 x2=1c009b50 x2:1c009b90 +76901471ns 1428708 1c00234e 02812c23 sw x8, 56(x2) x8:1c009d28 x2:1c009b50 PA:1c009b88 +76901491ns 1428709 1c002350 d6818413 addi x8, x3, -664 x8=1c009144 x3:1c0093dc +76901511ns 1428710 1c002354 00042783 lw x15, 0(x8) x15=00000002 x8:1c009144 PA:1c009144 +76901531ns 1428711 1c002356 02112e23 sw x1, 60(x2) x1:1c0029a4 x2:1c009b50 PA:1c009b8c +76901552ns 1428712 1c002358 02912a23 sw x9, 52(x2) x9:1c009190 x2:1c009b50 PA:1c009b84 +76901572ns 1428713 1c00235a 03212823 sw x18, 48(x2) x18:1c009188 x2:1c009b50 PA:1c009b80 +76901592ns 1428714 1c00235c 03312623 sw x19, 44(x2) x19:1c009000 x2:1c009b50 PA:1c009b7c +76901612ns 1428715 1c00235e 03412423 sw x20, 40(x2) x20:1c00918c x2:1c009b50 PA:1c009b78 +76901632ns 1428716 1c002360 03512223 sw x21, 36(x2) x21:a5a5a5a5 x2:1c009b50 PA:1c009b74 +76901653ns 1428717 1c002362 03612023 sw x22, 32(x2) x22:a5a5a5a5 x2:1c009b50 PA:1c009b70 +76901673ns 1428718 1c002364 01712e23 sw x23, 28(x2) x23:a5a5a5a5 x2:1c009b50 PA:1c009b6c +76901693ns 1428719 1c002366 02079263 bne x15, x0, 36 x15:00000002 +76901774ns 1428723 1c00238a c83ff0ef jal x1, -894 x1=1c00238e +76901814ns 1428725 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +76901895ns 1428729 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76901935ns 1428731 1c002014 00078863 beq x15, x0, 16 x15:00000001 +76901955ns 1428732 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76901976ns 1428733 1c00201a 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76901996ns 1428734 1c00201c 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76902016ns 1428735 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c009db8 PA:1c009dfc +76902056ns 1428737 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76902077ns 1428738 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c009db8 PA:1c009dfc +76902097ns 1428739 1c002024 00008067 jalr x0, x1, 0 x1:1c00238e +76902137ns 1428741 1c00238e 00042783 lw x15, 0(x8) x15=00000002 x8:1c009144 PA:1c009144 +76902178ns 1428743 1c002390 fff78793 addi x15, x15, -1 x15=00000001 x15:00000002 +76902198ns 1428744 1c002392 00f42023 sw x15, 0(x8) x15:00000001 x8:1c009144 PA:1c009144 +76902218ns 1428745 1c002394 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +76902258ns 1428747 1c002396 02078163 beq x15, x0, 34 x15:00000001 +76902278ns 1428748 1c002398 00000513 addi x10, x0, 0 x10=00000000 +76902299ns 1428749 1c00239a 00a12623 sw x10, 12(x2) x10:00000000 x2:1c009b50 PA:1c009b5c +76902319ns 1428750 1c00239c c8bff0ef jal x1, -886 x1=1c0023a0 +76902379ns 1428753 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76902420ns 1428755 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +76902440ns 1428756 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76902460ns 1428757 1c002030 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +76902501ns 1428759 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c009db8 PA:1c009dfc +76902541ns 1428761 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +76902561ns 1428762 1c002036 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76902581ns 1428763 1c002038 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76902602ns 1428764 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c009db8 PA:1c009dfc +76902642ns 1428766 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +76902662ns 1428767 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c009db8 PA:1c009dfc +76902682ns 1428768 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c009db8 PA:1c009dfc +76902723ns 1428770 1c002042 00079363 bne x15, x0, 6 x15:00000000 +76902743ns 1428771 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +76902824ns 1428775 1c002048 00008067 jalr x0, x1, 0 x1:1c0023a0 +76902864ns 1428777 1c0023a0 03c12083 lw x1, 60(x2) x1=1c0029a4 x2:1c009b50 PA:1c009b8c +76902884ns 1428778 1c0023a2 03812403 lw x8, 56(x2) x8=1c009d28 x2:1c009b50 PA:1c009b88 +76902904ns 1428779 1c0023a4 00c12503 lw x10, 12(x2) x10=00000000 x2:1c009b50 PA:1c009b5c +76902925ns 1428780 1c0023a6 03412483 lw x9, 52(x2) x9=1c009190 x2:1c009b50 PA:1c009b84 +76902945ns 1428781 1c0023a8 03012903 lw x18, 48(x2) x18=1c009188 x2:1c009b50 PA:1c009b80 +76902965ns 1428782 1c0023aa 02c12983 lw x19, 44(x2) x19=1c009000 x2:1c009b50 PA:1c009b7c +76902985ns 1428783 1c0023ac 02812a03 lw x20, 40(x2) x20=1c00918c x2:1c009b50 PA:1c009b78 +76903005ns 1428784 1c0023ae 02412a83 lw x21, 36(x2) x21=a5a5a5a5 x2:1c009b50 PA:1c009b74 +76903026ns 1428785 1c0023b0 02012b03 lw x22, 32(x2) x22=a5a5a5a5 x2:1c009b50 PA:1c009b70 +76903046ns 1428786 1c0023b2 01c12b83 lw x23, 28(x2) x23=a5a5a5a5 x2:1c009b50 PA:1c009b6c +76903066ns 1428787 1c0023b4 04010113 addi x2, x2, 64 x2=1c009b90 x2:1c009b50 +76903086ns 1428788 1c0023b6 00008067 jalr x0, x1, 0 x1:1c0029a4 +76903127ns 1428790 1c0029a4 01c12083 lw x1, 28(x2) x1=1c0034a0 x2:1c009b90 PA:1c009bac +76903147ns 1428791 1c0029a6 02010113 addi x2, x2, 32 x2=1c009bb0 x2:1c009b90 +76903167ns 1428792 1c0029a8 9a5ff06f jal x0, -1628 +76903207ns 1428794 1c00234c fc010113 addi x2, x2, -64 x2=1c009b70 x2:1c009bb0 +76903227ns 1428795 1c00234e 02812c23 sw x8, 56(x2) x8:1c009d28 x2:1c009b70 PA:1c009ba8 +76903248ns 1428796 1c002350 d6818413 addi x8, x3, -664 x8=1c009144 x3:1c0093dc +76903268ns 1428797 1c002354 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +76903288ns 1428798 1c002356 02112e23 sw x1, 60(x2) x1:1c0034a0 x2:1c009b70 PA:1c009bac +76903308ns 1428799 1c002358 02912a23 sw x9, 52(x2) x9:1c009190 x2:1c009b70 PA:1c009ba4 +76903328ns 1428800 1c00235a 03212823 sw x18, 48(x2) x18:1c009188 x2:1c009b70 PA:1c009ba0 +76903349ns 1428801 1c00235c 03312623 sw x19, 44(x2) x19:1c009000 x2:1c009b70 PA:1c009b9c +76903369ns 1428802 1c00235e 03412423 sw x20, 40(x2) x20:1c00918c x2:1c009b70 PA:1c009b98 +76903389ns 1428803 1c002360 03512223 sw x21, 36(x2) x21:a5a5a5a5 x2:1c009b70 PA:1c009b94 +76903409ns 1428804 1c002362 03612023 sw x22, 32(x2) x22:a5a5a5a5 x2:1c009b70 PA:1c009b90 +76903429ns 1428805 1c002364 01712e23 sw x23, 28(x2) x23:a5a5a5a5 x2:1c009b70 PA:1c009b8c +76903450ns 1428806 1c002366 02079263 bne x15, x0, 36 x15:00000001 +76903530ns 1428810 1c00238a c83ff0ef jal x1, -894 x1=1c00238e +76903571ns 1428812 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +76903652ns 1428816 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76903692ns 1428818 1c002014 00078863 beq x15, x0, 16 x15:00000001 +76903712ns 1428819 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76903732ns 1428820 1c00201a 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76903752ns 1428821 1c00201c 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76903773ns 1428822 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c009db8 PA:1c009dfc +76903813ns 1428824 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +76903833ns 1428825 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c009db8 PA:1c009dfc +76903853ns 1428826 1c002024 00008067 jalr x0, x1, 0 x1:1c00238e +76903894ns 1428828 1c00238e 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +76903934ns 1428830 1c002390 fff78793 addi x15, x15, -1 x15=00000000 x15:00000001 +76903954ns 1428831 1c002392 00f42023 sw x15, 0(x8) x15:00000000 x8:1c009144 PA:1c009144 +76903975ns 1428832 1c002394 00042783 lw x15, 0(x8) x15=00000000 x8:1c009144 PA:1c009144 +76904015ns 1428834 1c002396 02078163 beq x15, x0, 34 x15:00000000 +76904076ns 1428837 1c0023b8 d601a783 lw x15, -672(x3) x15=00000003 x3:1c0093dc PA:1c00913c +76904116ns 1428839 1c0023bc fc078ee3 beq x15, x0, -36 x15:00000003 +76904136ns 1428840 1c0023be 1c009937 lui x18, 0x1c009000 x18=1c009000 +76904156ns 1428841 1c0023c2 00000413 addi x8, x0, 0 x8=00000000 +76904177ns 1428842 1c0023c4 93818493 addi x9, x3, -1736 x9=1c008d14 x3:1c0093dc +76904197ns 1428843 1c0023c8 00100993 addi x19, x0, 1 x19=00000001 +76904217ns 1428844 1c0023ca c8890913 addi x18, x18, -888 x18=1c008c88 x18:1c009000 +76904237ns 1428845 1c0023ce 01400a93 addi x21, x0, 20 x21=00000014 +76904257ns 1428846 1c0023d0 04c0006f jal x0, 76 +76904298ns 1428848 1c00241c 0004a783 lw x15, 0(x9) x15=00000000 x9:1c008d14 PA:1c008d14 +76904338ns 1428850 1c00241e fa079ae3 bne x15, x0, -76 x15:00000000 +76904358ns 1428851 1c002420 00040363 beq x8, x0, 6 x8:00000000 +76904439ns 1428855 1c002426 d8018713 addi x14, x3, -640 x14=1c00915c x3:1c0093dc +76904459ns 1428856 1c00242a 00072483 lw x9, 0(x14) x9=00000000 x14:1c00915c PA:1c00915c +76904479ns 1428857 1c00242c d8018413 addi x8, x3, -640 x8=1c00915c x3:1c0093dc +76904500ns 1428858 1c002430 00048d63 beq x9, x0, 26 x9:00000000 +76904580ns 1428862 1c00244a d8c1a783 lw x15, -628(x3) x15=00000000 x3:1c0093dc PA:1c009168 +76904621ns 1428864 1c00244e f40785e3 beq x15, x0, -182 x15:00000000 +76904681ns 1428867 1c002398 00000513 addi x10, x0, 0 x10=00000000 +76904702ns 1428868 1c00239a 00a12623 sw x10, 12(x2) x10:00000000 x2:1c009b70 PA:1c009b7c +76904722ns 1428869 1c00239c c8bff0ef jal x1, -886 x1=1c0023a0 +76904782ns 1428872 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +76904823ns 1428874 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +76904843ns 1428875 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +76904863ns 1428876 1c002030 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +76904903ns 1428878 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c009db8 PA:1c009dfc +76904944ns 1428880 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +76904964ns 1428881 1c002036 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +76904984ns 1428882 1c002038 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +76905004ns 1428883 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c009db8 PA:1c009dfc +76905045ns 1428885 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +76905065ns 1428886 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c009db8 PA:1c009dfc +76905085ns 1428887 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c009db8 PA:1c009dfc +76905126ns 1428889 1c002042 00079363 bne x15, x0, 6 x15:00000000 +76905146ns 1428890 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +76905227ns 1428894 1c002048 00008067 jalr x0, x1, 0 x1:1c0023a0 +76905267ns 1428896 1c0023a0 03c12083 lw x1, 60(x2) x1=1c0034a0 x2:1c009b70 PA:1c009bac +76905287ns 1428897 1c0023a2 03812403 lw x8, 56(x2) x8=1c009d28 x2:1c009b70 PA:1c009ba8 +76905307ns 1428898 1c0023a4 00c12503 lw x10, 12(x2) x10=00000000 x2:1c009b70 PA:1c009b7c +76905327ns 1428899 1c0023a6 03412483 lw x9, 52(x2) x9=1c009190 x2:1c009b70 PA:1c009ba4 +76905348ns 1428900 1c0023a8 03012903 lw x18, 48(x2) x18=1c009188 x2:1c009b70 PA:1c009ba0 +76905368ns 1428901 1c0023aa 02c12983 lw x19, 44(x2) x19=1c009000 x2:1c009b70 PA:1c009b9c +76905388ns 1428902 1c0023ac 02812a03 lw x20, 40(x2) x20=1c00918c x2:1c009b70 PA:1c009b98 +76905408ns 1428903 1c0023ae 02412a83 lw x21, 36(x2) x21=a5a5a5a5 x2:1c009b70 PA:1c009b94 +76905428ns 1428904 1c0023b0 02012b03 lw x22, 32(x2) x22=a5a5a5a5 x2:1c009b70 PA:1c009b90 +76905449ns 1428905 1c0023b2 01c12b83 lw x23, 28(x2) x23=a5a5a5a5 x2:1c009b70 PA:1c009b8c +76905469ns 1428906 1c0023b4 04010113 addi x2, x2, 64 x2=1c009bb0 x2:1c009b70 +76905489ns 1428907 1c0023b6 00008067 jalr x0, x1, 0 x1:1c0034a0 +76905529ns 1428909 1c0034a0 02042c23 sw x0, 56(x8) x8:1c009d28 PA:1c009d60 +76905550ns 1428910 1c0034a4 02042e23 sw x0, 60(x8) x8:1c009d28 PA:1c009d64 +76905570ns 1428911 1c0034a8 02042a23 sw x0, 52(x8) x8:1c009d28 PA:1c009d5c +76905590ns 1428912 1c0034ac 00c12083 lw x1, 12(x2) x1=1c0036ee x2:1c009bb0 PA:1c009bbc +76905610ns 1428913 1c0034ae 00812403 lw x8, 8(x2) x8=00000000 x2:1c009bb0 PA:1c009bb8 +76905630ns 1428914 1c0034b0 01010113 addi x2, x2, 16 x2=1c009bc0 x2:1c009bb0 +76905651ns 1428915 1c0034b2 00008067 jalr x0, x1, 0 x1:1c0036ee +76905711ns 1428918 1c0036ee 1c009537 lui x10, 0x1c009000 x10=1c009000 +76905731ns 1428919 1c0036f2 90450513 addi x10, x10, -1788 x10=1c008904 x10:1c009000 +76905751ns 1428920 1c0036f6 7dc000ef jal x1, 2012 x1=1c0036fa +76905812ns 1428923 1c003ed2 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76905832ns 1428924 1c003ed6 00a005b3 add x11, x0, x10 x11=1c008904 x10:1c008904 +76905852ns 1428925 1c003ed8 c447a503 lw x10, -956(x15) x10=1c009e10 x15:1c009000 PA:1c008c44 +76905873ns 1428926 1c003edc f19ff06f jal x0, -232 +76905913ns 1428928 1c003df4 fe010113 addi x2, x2, -32 x2=1c009ba0 x2:1c009bc0 +76905933ns 1428929 1c003df6 00912a23 sw x9, 20(x2) x9:1c009190 x2:1c009ba0 PA:1c009bb4 +76905953ns 1428930 1c003df8 01212823 sw x18, 16(x2) x18:1c009188 x2:1c009ba0 PA:1c009bb0 +76905974ns 1428931 1c003dfa 00112e23 sw x1, 28(x2) x1:1c0036fa x2:1c009ba0 PA:1c009bbc +76905994ns 1428932 1c003dfc 00812c23 sw x8, 24(x2) x8:00000000 x2:1c009ba0 PA:1c009bb8 +76906014ns 1428933 1c003dfe 01312623 sw x19, 12(x2) x19:1c009000 x2:1c009ba0 PA:1c009bac +76906034ns 1428934 1c003e00 01412423 sw x20, 8(x2) x20:1c00918c x2:1c009ba0 PA:1c009ba8 +76906054ns 1428935 1c003e02 00a004b3 add x9, x0, x10 x9=1c009e10 x10:1c009e10 +76906075ns 1428936 1c003e04 00b00933 add x18, x0, x11 x18=1c008904 x11:1c008904 +76906095ns 1428937 1c003e06 00050563 beq x10, x0, 10 x10:1c009e10 +76906115ns 1428938 1c003e08 01852783 lw x15, 24(x10) x15=00000001 x10:1c009e10 PA:1c009e28 +76906155ns 1428940 1c003e0a 00079363 bne x15, x0, 6 x15:00000001 +76906216ns 1428943 1c003e10 0184a783 lw x15, 24(x9) x15=00000001 x9:1c009e10 PA:1c009e28 +76906236ns 1428944 1c003e12 0084a403 lw x8, 8(x9) x8=1c00b914 x9:1c009e10 PA:1c009e18 +76906256ns 1428945 1c003e14 00079463 bne x15, x0, 8 x15:00000001 +76906317ns 1428948 1c003e1c 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76906337ns 1428949 1c003e20 a1478793 addi x15, x15, -1516 x15=1c008a14 x15:1c009000 +76906357ns 1428950 1c003e24 02f41c63 bne x8, x15, 56 x8:1c00b914 x15:1c008a14 +76906418ns 1428953 1c003e5c 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76906438ns 1428954 1c003e60 a3478793 addi x15, x15, -1484 x15=1c008a34 x15:1c009000 +76906458ns 1428955 1c003e64 00f41463 bne x8, x15, 8 x8:1c00b914 x15:1c008a34 +76906519ns 1428958 1c003e6c 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76906539ns 1428959 1c003e70 9f478793 addi x15, x15, -1548 x15=1c0089f4 x15:1c009000 +76906559ns 1428960 1c003e74 faf41be3 bne x8, x15, -74 x8:1c00b914 x15:1c0089f4 +76906640ns 1428964 1c003e2a 00c45783 lhu x15, 12(x8) x15=00000089 x8:1c00b914 PA:1c00b920 +76906680ns 1428966 1c003e2e 0087f793 andi x15, x15, 8 x15=00000008 x15:00000089 +76906701ns 1428967 1c003e30 04078663 beq x15, x0, 76 x15:00000008 +76906721ns 1428968 1c003e32 01042783 lw x15, 16(x8) x15=1c00bab8 x8:1c00b914 PA:1c00b924 +76906761ns 1428970 1c003e34 04078463 beq x15, x0, 72 x15:1c00bab8 +76906781ns 1428971 1c003e36 fff00993 addi x19, x0, -1 x19=ffffffff +76906801ns 1428972 1c003e38 00a00a13 addi x20, x0, 10 x20=0000000a +76906822ns 1428973 1c003e3a 00842783 lw x15, 8(x8) x15=00000000 x8:1c00b914 PA:1c00b91c +76906842ns 1428974 1c003e3c 00094583 lbu x11, 0(x18) x11=00000073 x18:1c008904 PA:1c008904 +76906862ns 1428975 1c003e40 fff78793 addi x15, x15, -1 x15=ffffffff x15:00000000 +76906882ns 1428976 1c003e42 04059a63 bne x11, x0, 84 x11:00000073 +76906943ns 1428979 1c003e96 00f42423 sw x15, 8(x8) x15:ffffffff x8:1c00b914 PA:1c00b91c +76906963ns 1428980 1c003e98 00190913 addi x18, x18, 1 x18=1c008905 x18:1c008904 +76906983ns 1428981 1c003e9a 0007d763 bge x15, x0, 14 x15:ffffffff +76907003ns 1428982 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +76907044ns 1428984 1c003ea0 00e7cb63 blt x15, x14, 22 x15:ffffffff x14:fffffc00 +76907064ns 1428985 1c003ea4 01458963 beq x11, x20, 18 x11:00000073 x20:0000000a +76907084ns 1428986 1c003ea8 00042783 lw x15, 0(x8) x15=1c00bab8 x8:1c00b914 PA:1c00b914 +76907125ns 1428988 1c003eaa 00178713 addi x14, x15, 1 x14=1c00bab9 x15:1c00bab8 +76907145ns 1428989 1c003eae 00e42023 sw x14, 0(x8) x14:1c00bab9 x8:1c00b914 PA:1c00b914 +76907165ns 1428990 1c003eb0 00b78023 sb x11, 0(x15) x11:00000073 x15:1c00bab8 PA:1c00bab8 +76907185ns 1428991 1c003eb4 f87ff06f jal x0, -122 +76907226ns 1428993 1c003e3a 00842783 lw x15, 8(x8) x15=ffffffff x8:1c00b914 PA:1c00b91c +76907246ns 1428994 1c003e3c 00094583 lbu x11, 0(x18) x11=00000074 x18:1c008905 PA:1c008905 +76907266ns 1428995 1c003e40 fff78793 addi x15, x15, -1 x15=fffffffe x15:ffffffff +76907286ns 1428996 1c003e42 04059a63 bne x11, x0, 84 x11:00000074 +76907347ns 1428999 1c003e96 00f42423 sw x15, 8(x8) x15:fffffffe x8:1c00b914 PA:1c00b91c +76907367ns 1429000 1c003e98 00190913 addi x18, x18, 1 x18=1c008906 x18:1c008905 +76907387ns 1429001 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffffe +76907407ns 1429002 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +76907448ns 1429004 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffffe x14:fffffc00 +76907468ns 1429005 1c003ea4 01458963 beq x11, x20, 18 x11:00000074 x20:0000000a +76907488ns 1429006 1c003ea8 00042783 lw x15, 0(x8) x15=1c00bab9 x8:1c00b914 PA:1c00b914 +76907528ns 1429008 1c003eaa 00178713 addi x14, x15, 1 x14=1c00baba x15:1c00bab9 +76907549ns 1429009 1c003eae 00e42023 sw x14, 0(x8) x14:1c00baba x8:1c00b914 PA:1c00b914 +76907569ns 1429010 1c003eb0 00b78023 sb x11, 0(x15) x11:00000074 x15:1c00bab9 PA:1c00bab9 +76907589ns 1429011 1c003eb4 f87ff06f jal x0, -122 +76907629ns 1429013 1c003e3a 00842783 lw x15, 8(x8) x15=fffffffe x8:1c00b914 PA:1c00b91c +76907650ns 1429014 1c003e3c 00094583 lbu x11, 0(x18) x11=00000061 x18:1c008906 PA:1c008906 +76907670ns 1429015 1c003e40 fff78793 addi x15, x15, -1 x15=fffffffd x15:fffffffe +76907690ns 1429016 1c003e42 04059a63 bne x11, x0, 84 x11:00000061 +76907751ns 1429019 1c003e96 00f42423 sw x15, 8(x8) x15:fffffffd x8:1c00b914 PA:1c00b91c +76907771ns 1429020 1c003e98 00190913 addi x18, x18, 1 x18=1c008907 x18:1c008906 +76907791ns 1429021 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffffd +76907811ns 1429022 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +76907851ns 1429024 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffffd x14:fffffc00 +76907872ns 1429025 1c003ea4 01458963 beq x11, x20, 18 x11:00000061 x20:0000000a +76907892ns 1429026 1c003ea8 00042783 lw x15, 0(x8) x15=1c00baba x8:1c00b914 PA:1c00b914 +76907932ns 1429028 1c003eaa 00178713 addi x14, x15, 1 x14=1c00babb x15:1c00baba +76907952ns 1429029 1c003eae 00e42023 sw x14, 0(x8) x14:1c00babb x8:1c00b914 PA:1c00b914 +76907973ns 1429030 1c003eb0 00b78023 sb x11, 0(x15) x11:00000061 x15:1c00baba PA:1c00baba +76907993ns 1429031 1c003eb4 f87ff06f jal x0, -122 +76908033ns 1429033 1c003e3a 00842783 lw x15, 8(x8) x15=fffffffd x8:1c00b914 PA:1c00b91c +76908053ns 1429034 1c003e3c 00094583 lbu x11, 0(x18) x11=00000072 x18:1c008907 PA:1c008907 +76908074ns 1429035 1c003e40 fff78793 addi x15, x15, -1 x15=fffffffc x15:fffffffd +76908094ns 1429036 1c003e42 04059a63 bne x11, x0, 84 x11:00000072 +76908154ns 1429039 1c003e96 00f42423 sw x15, 8(x8) x15:fffffffc x8:1c00b914 PA:1c00b91c +76908175ns 1429040 1c003e98 00190913 addi x18, x18, 1 x18=1c008908 x18:1c008907 +76908195ns 1429041 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffffc +76908215ns 1429042 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +76908255ns 1429044 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffffc x14:fffffc00 +76908275ns 1429045 1c003ea4 01458963 beq x11, x20, 18 x11:00000072 x20:0000000a +76908296ns 1429046 1c003ea8 00042783 lw x15, 0(x8) x15=1c00babb x8:1c00b914 PA:1c00b914 +76908336ns 1429048 1c003eaa 00178713 addi x14, x15, 1 x14=1c00babc x15:1c00babb +76908356ns 1429049 1c003eae 00e42023 sw x14, 0(x8) x14:1c00babc x8:1c00b914 PA:1c00b914 +76908376ns 1429050 1c003eb0 00b78023 sb x11, 0(x15) x11:00000072 x15:1c00babb PA:1c00babb +76908397ns 1429051 1c003eb4 f87ff06f jal x0, -122 +76908437ns 1429053 1c003e3a 00842783 lw x15, 8(x8) x15=fffffffc x8:1c00b914 PA:1c00b91c +76908457ns 1429054 1c003e3c 00094583 lbu x11, 0(x18) x11=00000074 x18:1c008908 PA:1c008908 +76908477ns 1429055 1c003e40 fff78793 addi x15, x15, -1 x15=fffffffb x15:fffffffc +76908498ns 1429056 1c003e42 04059a63 bne x11, x0, 84 x11:00000074 +76908558ns 1429059 1c003e96 00f42423 sw x15, 8(x8) x15:fffffffb x8:1c00b914 PA:1c00b91c +76908578ns 1429060 1c003e98 00190913 addi x18, x18, 1 x18=1c008909 x18:1c008908 +76908599ns 1429061 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffffb +76908619ns 1429062 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +76908659ns 1429064 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffffb x14:fffffc00 +76908679ns 1429065 1c003ea4 01458963 beq x11, x20, 18 x11:00000074 x20:0000000a +76908700ns 1429066 1c003ea8 00042783 lw x15, 0(x8) x15=1c00babc x8:1c00b914 PA:1c00b914 +76908740ns 1429068 1c003eaa 00178713 addi x14, x15, 1 x14=1c00babd x15:1c00babc +76908760ns 1429069 1c003eae 00e42023 sw x14, 0(x8) x14:1c00babd x8:1c00b914 PA:1c00b914 +76908780ns 1429070 1c003eb0 00b78023 sb x11, 0(x15) x11:00000074 x15:1c00babc PA:1c00babc +76908800ns 1429071 1c003eb4 f87ff06f jal x0, -122 +76908841ns 1429073 1c003e3a 00842783 lw x15, 8(x8) x15=fffffffb x8:1c00b914 PA:1c00b91c +76908861ns 1429074 1c003e3c 00094583 lbu x11, 0(x18) x11=00000069 x18:1c008909 PA:1c008909 +76908881ns 1429075 1c003e40 fff78793 addi x15, x15, -1 x15=fffffffa x15:fffffffb +76908901ns 1429076 1c003e42 04059a63 bne x11, x0, 84 x11:00000069 +76908962ns 1429079 1c003e96 00f42423 sw x15, 8(x8) x15:fffffffa x8:1c00b914 PA:1c00b91c +76908982ns 1429080 1c003e98 00190913 addi x18, x18, 1 x18=1c00890a x18:1c008909 +76909002ns 1429081 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffffa +76909023ns 1429082 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +76909063ns 1429084 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffffa x14:fffffc00 +76909083ns 1429085 1c003ea4 01458963 beq x11, x20, 18 x11:00000069 x20:0000000a +76909103ns 1429086 1c003ea8 00042783 lw x15, 0(x8) x15=1c00babd x8:1c00b914 PA:1c00b914 +76909144ns 1429088 1c003eaa 00178713 addi x14, x15, 1 x14=1c00babe x15:1c00babd +76909164ns 1429089 1c003eae 00e42023 sw x14, 0(x8) x14:1c00babe x8:1c00b914 PA:1c00b914 +76909184ns 1429090 1c003eb0 00b78023 sb x11, 0(x15) x11:00000069 x15:1c00babd PA:1c00babd +76909204ns 1429091 1c003eb4 f87ff06f jal x0, -122 +76909245ns 1429093 1c003e3a 00842783 lw x15, 8(x8) x15=fffffffa x8:1c00b914 PA:1c00b91c +76909265ns 1429094 1c003e3c 00094583 lbu x11, 0(x18) x11=0000006e x18:1c00890a PA:1c00890a +76909285ns 1429095 1c003e40 fff78793 addi x15, x15, -1 x15=fffffff9 x15:fffffffa +76909305ns 1429096 1c003e42 04059a63 bne x11, x0, 84 x11:0000006e +76909366ns 1429099 1c003e96 00f42423 sw x15, 8(x8) x15:fffffff9 x8:1c00b914 PA:1c00b91c +76909386ns 1429100 1c003e98 00190913 addi x18, x18, 1 x18=1c00890b x18:1c00890a +76909406ns 1429101 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffff9 +76909426ns 1429102 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +76909467ns 1429104 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffff9 x14:fffffc00 +76909487ns 1429105 1c003ea4 01458963 beq x11, x20, 18 x11:0000006e x20:0000000a +76909507ns 1429106 1c003ea8 00042783 lw x15, 0(x8) x15=1c00babe x8:1c00b914 PA:1c00b914 +76909548ns 1429108 1c003eaa 00178713 addi x14, x15, 1 x14=1c00babf x15:1c00babe +76909568ns 1429109 1c003eae 00e42023 sw x14, 0(x8) x14:1c00babf x8:1c00b914 PA:1c00b914 +76909588ns 1429110 1c003eb0 00b78023 sb x11, 0(x15) x11:0000006e x15:1c00babe PA:1c00babe +76909608ns 1429111 1c003eb4 f87ff06f jal x0, -122 +76909649ns 1429113 1c003e3a 00842783 lw x15, 8(x8) x15=fffffff9 x8:1c00b914 PA:1c00b91c +76909669ns 1429114 1c003e3c 00094583 lbu x11, 0(x18) x11=00000067 x18:1c00890b PA:1c00890b +76909689ns 1429115 1c003e40 fff78793 addi x15, x15, -1 x15=fffffff8 x15:fffffff9 +76909709ns 1429116 1c003e42 04059a63 bne x11, x0, 84 x11:00000067 +76909770ns 1429119 1c003e96 00f42423 sw x15, 8(x8) x15:fffffff8 x8:1c00b914 PA:1c00b91c +76909790ns 1429120 1c003e98 00190913 addi x18, x18, 1 x18=1c00890c x18:1c00890b +76909810ns 1429121 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffff8 +76909830ns 1429122 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +76909871ns 1429124 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffff8 x14:fffffc00 +76909891ns 1429125 1c003ea4 01458963 beq x11, x20, 18 x11:00000067 x20:0000000a +76909911ns 1429126 1c003ea8 00042783 lw x15, 0(x8) x15=1c00babf x8:1c00b914 PA:1c00b914 +76909951ns 1429128 1c003eaa 00178713 addi x14, x15, 1 x14=1c00bac0 x15:1c00babf +76909972ns 1429129 1c003eae 00e42023 sw x14, 0(x8) x14:1c00bac0 x8:1c00b914 PA:1c00b914 +76909992ns 1429130 1c003eb0 00b78023 sb x11, 0(x15) x11:00000067 x15:1c00babf PA:1c00babf +76910012ns 1429131 1c003eb4 f87ff06f jal x0, -122 +76910052ns 1429133 1c003e3a 00842783 lw x15, 8(x8) x15=fffffff8 x8:1c00b914 PA:1c00b91c +76910073ns 1429134 1c003e3c 00094583 lbu x11, 0(x18) x11=00000020 x18:1c00890c PA:1c00890c +76910093ns 1429135 1c003e40 fff78793 addi x15, x15, -1 x15=fffffff7 x15:fffffff8 +76910113ns 1429136 1c003e42 04059a63 bne x11, x0, 84 x11:00000020 +76910174ns 1429139 1c003e96 00f42423 sw x15, 8(x8) x15:fffffff7 x8:1c00b914 PA:1c00b91c +76910194ns 1429140 1c003e98 00190913 addi x18, x18, 1 x18=1c00890d x18:1c00890c +76910214ns 1429141 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffff7 +76910234ns 1429142 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +76910275ns 1429144 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffff7 x14:fffffc00 +76910295ns 1429145 1c003ea4 01458963 beq x11, x20, 18 x11:00000020 x20:0000000a +76910315ns 1429146 1c003ea8 00042783 lw x15, 0(x8) x15=1c00bac0 x8:1c00b914 PA:1c00b914 +76910355ns 1429148 1c003eaa 00178713 addi x14, x15, 1 x14=1c00bac1 x15:1c00bac0 +76910375ns 1429149 1c003eae 00e42023 sw x14, 0(x8) x14:1c00bac1 x8:1c00b914 PA:1c00b914 +76910396ns 1429150 1c003eb0 00b78023 sb x11, 0(x15) x11:00000020 x15:1c00bac0 PA:1c00bac0 +76910416ns 1429151 1c003eb4 f87ff06f jal x0, -122 +76910456ns 1429153 1c003e3a 00842783 lw x15, 8(x8) x15=fffffff7 x8:1c00b914 PA:1c00b91c +76910476ns 1429154 1c003e3c 00094583 lbu x11, 0(x18) x11=00000065 x18:1c00890d PA:1c00890d +76910497ns 1429155 1c003e40 fff78793 addi x15, x15, -1 x15=fffffff6 x15:fffffff7 +76910517ns 1429156 1c003e42 04059a63 bne x11, x0, 84 x11:00000065 +76910577ns 1429159 1c003e96 00f42423 sw x15, 8(x8) x15:fffffff6 x8:1c00b914 PA:1c00b91c +76910598ns 1429160 1c003e98 00190913 addi x18, x18, 1 x18=1c00890e x18:1c00890d +76910618ns 1429161 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffff6 +76910638ns 1429162 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +76910678ns 1429164 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffff6 x14:fffffc00 +76910699ns 1429165 1c003ea4 01458963 beq x11, x20, 18 x11:00000065 x20:0000000a +76910719ns 1429166 1c003ea8 00042783 lw x15, 0(x8) x15=1c00bac1 x8:1c00b914 PA:1c00b914 +76910759ns 1429168 1c003eaa 00178713 addi x14, x15, 1 x14=1c00bac2 x15:1c00bac1 +76910779ns 1429169 1c003eae 00e42023 sw x14, 0(x8) x14:1c00bac2 x8:1c00b914 PA:1c00b914 +76910799ns 1429170 1c003eb0 00b78023 sb x11, 0(x15) x11:00000065 x15:1c00bac1 PA:1c00bac1 +76910820ns 1429171 1c003eb4 f87ff06f jal x0, -122 +76910860ns 1429173 1c003e3a 00842783 lw x15, 8(x8) x15=fffffff6 x8:1c00b914 PA:1c00b91c +76910880ns 1429174 1c003e3c 00094583 lbu x11, 0(x18) x11=00000072 x18:1c00890e PA:1c00890e +76910900ns 1429175 1c003e40 fff78793 addi x15, x15, -1 x15=fffffff5 x15:fffffff6 +76910921ns 1429176 1c003e42 04059a63 bne x11, x0, 84 x11:00000072 +76910981ns 1429179 1c003e96 00f42423 sw x15, 8(x8) x15:fffffff5 x8:1c00b914 PA:1c00b91c +76911001ns 1429180 1c003e98 00190913 addi x18, x18, 1 x18=1c00890f x18:1c00890e +76911022ns 1429181 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffff5 +76911042ns 1429182 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +76911082ns 1429184 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffff5 x14:fffffc00 +76911102ns 1429185 1c003ea4 01458963 beq x11, x20, 18 x11:00000072 x20:0000000a +76911123ns 1429186 1c003ea8 00042783 lw x15, 0(x8) x15=1c00bac2 x8:1c00b914 PA:1c00b914 +76911163ns 1429188 1c003eaa 00178713 addi x14, x15, 1 x14=1c00bac3 x15:1c00bac2 +76911183ns 1429189 1c003eae 00e42023 sw x14, 0(x8) x14:1c00bac3 x8:1c00b914 PA:1c00b914 +76911203ns 1429190 1c003eb0 00b78023 sb x11, 0(x15) x11:00000072 x15:1c00bac2 PA:1c00bac2 +76911224ns 1429191 1c003eb4 f87ff06f jal x0, -122 +76911264ns 1429193 1c003e3a 00842783 lw x15, 8(x8) x15=fffffff5 x8:1c00b914 PA:1c00b91c +76911284ns 1429194 1c003e3c 00094583 lbu x11, 0(x18) x11=00000072 x18:1c00890f PA:1c00890f +76911304ns 1429195 1c003e40 fff78793 addi x15, x15, -1 x15=fffffff4 x15:fffffff5 +76911324ns 1429196 1c003e42 04059a63 bne x11, x0, 84 x11:00000072 +76911385ns 1429199 1c003e96 00f42423 sw x15, 8(x8) x15:fffffff4 x8:1c00b914 PA:1c00b91c +76911405ns 1429200 1c003e98 00190913 addi x18, x18, 1 x18=1c008910 x18:1c00890f +76911425ns 1429201 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffff4 +76911446ns 1429202 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +76911486ns 1429204 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffff4 x14:fffffc00 +76911506ns 1429205 1c003ea4 01458963 beq x11, x20, 18 x11:00000072 x20:0000000a +76911526ns 1429206 1c003ea8 00042783 lw x15, 0(x8) x15=1c00bac3 x8:1c00b914 PA:1c00b914 +76911567ns 1429208 1c003eaa 00178713 addi x14, x15, 1 x14=1c00bac4 x15:1c00bac3 +76911587ns 1429209 1c003eae 00e42023 sw x14, 0(x8) x14:1c00bac4 x8:1c00b914 PA:1c00b914 +76911607ns 1429210 1c003eb0 00b78023 sb x11, 0(x15) x11:00000072 x15:1c00bac3 PA:1c00bac3 +76911627ns 1429211 1c003eb4 f87ff06f jal x0, -122 +76911668ns 1429213 1c003e3a 00842783 lw x15, 8(x8) x15=fffffff4 x8:1c00b914 PA:1c00b91c +76911688ns 1429214 1c003e3c 00094583 lbu x11, 0(x18) x11=0000006f x18:1c008910 PA:1c008910 +76911708ns 1429215 1c003e40 fff78793 addi x15, x15, -1 x15=fffffff3 x15:fffffff4 +76911728ns 1429216 1c003e42 04059a63 bne x11, x0, 84 x11:0000006f +76911789ns 1429219 1c003e96 00f42423 sw x15, 8(x8) x15:fffffff3 x8:1c00b914 PA:1c00b91c +76911809ns 1429220 1c003e98 00190913 addi x18, x18, 1 x18=1c008911 x18:1c008910 +76911829ns 1429221 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffff3 +76911849ns 1429222 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +76911890ns 1429224 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffff3 x14:fffffc00 +76911910ns 1429225 1c003ea4 01458963 beq x11, x20, 18 x11:0000006f x20:0000000a +76911930ns 1429226 1c003ea8 00042783 lw x15, 0(x8) x15=1c00bac4 x8:1c00b914 PA:1c00b914 +76911971ns 1429228 1c003eaa 00178713 addi x14, x15, 1 x14=1c00bac5 x15:1c00bac4 +76911991ns 1429229 1c003eae 00e42023 sw x14, 0(x8) x14:1c00bac5 x8:1c00b914 PA:1c00b914 +76912011ns 1429230 1c003eb0 00b78023 sb x11, 0(x15) x11:0000006f x15:1c00bac4 PA:1c00bac4 +76912031ns 1429231 1c003eb4 f87ff06f jal x0, -122 +76912072ns 1429233 1c003e3a 00842783 lw x15, 8(x8) x15=fffffff3 x8:1c00b914 PA:1c00b91c +76912092ns 1429234 1c003e3c 00094583 lbu x11, 0(x18) x11=00000072 x18:1c008911 PA:1c008911 +76912112ns 1429235 1c003e40 fff78793 addi x15, x15, -1 x15=fffffff2 x15:fffffff3 +76912132ns 1429236 1c003e42 04059a63 bne x11, x0, 84 x11:00000072 +76912193ns 1429239 1c003e96 00f42423 sw x15, 8(x8) x15:fffffff2 x8:1c00b914 PA:1c00b91c +76912213ns 1429240 1c003e98 00190913 addi x18, x18, 1 x18=1c008912 x18:1c008911 +76912233ns 1429241 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffff2 +76912253ns 1429242 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +76912294ns 1429244 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffff2 x14:fffffc00 +76912314ns 1429245 1c003ea4 01458963 beq x11, x20, 18 x11:00000072 x20:0000000a +76912334ns 1429246 1c003ea8 00042783 lw x15, 0(x8) x15=1c00bac5 x8:1c00b914 PA:1c00b914 +76912374ns 1429248 1c003eaa 00178713 addi x14, x15, 1 x14=1c00bac6 x15:1c00bac5 +76912395ns 1429249 1c003eae 00e42023 sw x14, 0(x8) x14:1c00bac6 x8:1c00b914 PA:1c00b914 +76912415ns 1429250 1c003eb0 00b78023 sb x11, 0(x15) x11:00000072 x15:1c00bac5 PA:1c00bac5 +76912435ns 1429251 1c003eb4 f87ff06f jal x0, -122 +76912475ns 1429253 1c003e3a 00842783 lw x15, 8(x8) x15=fffffff2 x8:1c00b914 PA:1c00b91c +76912496ns 1429254 1c003e3c 00094583 lbu x11, 0(x18) x11=00000020 x18:1c008912 PA:1c008912 +76912516ns 1429255 1c003e40 fff78793 addi x15, x15, -1 x15=fffffff1 x15:fffffff2 +76912536ns 1429256 1c003e42 04059a63 bne x11, x0, 84 x11:00000020 +76912597ns 1429259 1c003e96 00f42423 sw x15, 8(x8) x15:fffffff1 x8:1c00b914 PA:1c00b91c +76912617ns 1429260 1c003e98 00190913 addi x18, x18, 1 x18=1c008913 x18:1c008912 +76912637ns 1429261 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffff1 +76912657ns 1429262 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +76912698ns 1429264 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffff1 x14:fffffc00 +76912718ns 1429265 1c003ea4 01458963 beq x11, x20, 18 x11:00000020 x20:0000000a +76912738ns 1429266 1c003ea8 00042783 lw x15, 0(x8) x15=1c00bac6 x8:1c00b914 PA:1c00b914 +76912778ns 1429268 1c003eaa 00178713 addi x14, x15, 1 x14=1c00bac7 x15:1c00bac6 +76912799ns 1429269 1c003eae 00e42023 sw x14, 0(x8) x14:1c00bac7 x8:1c00b914 PA:1c00b914 +76912819ns 1429270 1c003eb0 00b78023 sb x11, 0(x15) x11:00000020 x15:1c00bac6 PA:1c00bac6 +76912839ns 1429271 1c003eb4 f87ff06f jal x0, -122 +76912879ns 1429273 1c003e3a 00842783 lw x15, 8(x8) x15=fffffff1 x8:1c00b914 PA:1c00b91c +76912899ns 1429274 1c003e3c 00094583 lbu x11, 0(x18) x11=00000063 x18:1c008913 PA:1c008913 +76912920ns 1429275 1c003e40 fff78793 addi x15, x15, -1 x15=fffffff0 x15:fffffff1 +76912940ns 1429276 1c003e42 04059a63 bne x11, x0, 84 x11:00000063 +76913000ns 1429279 1c003e96 00f42423 sw x15, 8(x8) x15:fffffff0 x8:1c00b914 PA:1c00b91c +76913021ns 1429280 1c003e98 00190913 addi x18, x18, 1 x18=1c008914 x18:1c008913 +76913041ns 1429281 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffff0 +76913061ns 1429282 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +76913101ns 1429284 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffff0 x14:fffffc00 +76913122ns 1429285 1c003ea4 01458963 beq x11, x20, 18 x11:00000063 x20:0000000a +76913142ns 1429286 1c003ea8 00042783 lw x15, 0(x8) x15=1c00bac7 x8:1c00b914 PA:1c00b914 +76913182ns 1429288 1c003eaa 00178713 addi x14, x15, 1 x14=1c00bac8 x15:1c00bac7 +76913202ns 1429289 1c003eae 00e42023 sw x14, 0(x8) x14:1c00bac8 x8:1c00b914 PA:1c00b914 +76913223ns 1429290 1c003eb0 00b78023 sb x11, 0(x15) x11:00000063 x15:1c00bac7 PA:1c00bac7 +76913243ns 1429291 1c003eb4 f87ff06f jal x0, -122 +76913283ns 1429293 1c003e3a 00842783 lw x15, 8(x8) x15=fffffff0 x8:1c00b914 PA:1c00b91c +76913303ns 1429294 1c003e3c 00094583 lbu x11, 0(x18) x11=00000068 x18:1c008914 PA:1c008914 +76913323ns 1429295 1c003e40 fff78793 addi x15, x15, -1 x15=ffffffef x15:fffffff0 +76913344ns 1429296 1c003e42 04059a63 bne x11, x0, 84 x11:00000068 +76913404ns 1429299 1c003e96 00f42423 sw x15, 8(x8) x15:ffffffef x8:1c00b914 PA:1c00b91c +76913424ns 1429300 1c003e98 00190913 addi x18, x18, 1 x18=1c008915 x18:1c008914 +76913445ns 1429301 1c003e9a 0007d763 bge x15, x0, 14 x15:ffffffef +76913465ns 1429302 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +76913505ns 1429304 1c003ea0 00e7cb63 blt x15, x14, 22 x15:ffffffef x14:fffffc00 +76913525ns 1429305 1c003ea4 01458963 beq x11, x20, 18 x11:00000068 x20:0000000a +76913546ns 1429306 1c003ea8 00042783 lw x15, 0(x8) x15=1c00bac8 x8:1c00b914 PA:1c00b914 +76913586ns 1429308 1c003eaa 00178713 addi x14, x15, 1 x14=1c00bac9 x15:1c00bac8 +76913606ns 1429309 1c003eae 00e42023 sw x14, 0(x8) x14:1c00bac9 x8:1c00b914 PA:1c00b914 +76913626ns 1429310 1c003eb0 00b78023 sb x11, 0(x15) x11:00000068 x15:1c00bac8 PA:1c00bac8 +76913647ns 1429311 1c003eb4 f87ff06f jal x0, -122 +76913687ns 1429313 1c003e3a 00842783 lw x15, 8(x8) x15=ffffffef x8:1c00b914 PA:1c00b91c +76913707ns 1429314 1c003e3c 00094583 lbu x11, 0(x18) x11=00000065 x18:1c008915 PA:1c008915 +76913727ns 1429315 1c003e40 fff78793 addi x15, x15, -1 x15=ffffffee x15:ffffffef +76913748ns 1429316 1c003e42 04059a63 bne x11, x0, 84 x11:00000065 +76913808ns 1429319 1c003e96 00f42423 sw x15, 8(x8) x15:ffffffee x8:1c00b914 PA:1c00b91c +76913828ns 1429320 1c003e98 00190913 addi x18, x18, 1 x18=1c008916 x18:1c008915 +76913848ns 1429321 1c003e9a 0007d763 bge x15, x0, 14 x15:ffffffee +76913869ns 1429322 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +76913909ns 1429324 1c003ea0 00e7cb63 blt x15, x14, 22 x15:ffffffee x14:fffffc00 +76913929ns 1429325 1c003ea4 01458963 beq x11, x20, 18 x11:00000065 x20:0000000a +76913949ns 1429326 1c003ea8 00042783 lw x15, 0(x8) x15=1c00bac9 x8:1c00b914 PA:1c00b914 +76913990ns 1429328 1c003eaa 00178713 addi x14, x15, 1 x14=1c00baca x15:1c00bac9 +76914010ns 1429329 1c003eae 00e42023 sw x14, 0(x8) x14:1c00baca x8:1c00b914 PA:1c00b914 +76914030ns 1429330 1c003eb0 00b78023 sb x11, 0(x15) x11:00000065 x15:1c00bac9 PA:1c00bac9 +76914050ns 1429331 1c003eb4 f87ff06f jal x0, -122 +76914091ns 1429333 1c003e3a 00842783 lw x15, 8(x8) x15=ffffffee x8:1c00b914 PA:1c00b91c +76914111ns 1429334 1c003e3c 00094583 lbu x11, 0(x18) x11=00000063 x18:1c008916 PA:1c008916 +76914131ns 1429335 1c003e40 fff78793 addi x15, x15, -1 x15=ffffffed x15:ffffffee +76914151ns 1429336 1c003e42 04059a63 bne x11, x0, 84 x11:00000063 +76914212ns 1429339 1c003e96 00f42423 sw x15, 8(x8) x15:ffffffed x8:1c00b914 PA:1c00b91c +76914232ns 1429340 1c003e98 00190913 addi x18, x18, 1 x18=1c008917 x18:1c008916 +76914252ns 1429341 1c003e9a 0007d763 bge x15, x0, 14 x15:ffffffed +76914273ns 1429342 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +76914313ns 1429344 1c003ea0 00e7cb63 blt x15, x14, 22 x15:ffffffed x14:fffffc00 +76914333ns 1429345 1c003ea4 01458963 beq x11, x20, 18 x11:00000063 x20:0000000a +76914353ns 1429346 1c003ea8 00042783 lw x15, 0(x8) x15=1c00baca x8:1c00b914 PA:1c00b914 +76914394ns 1429348 1c003eaa 00178713 addi x14, x15, 1 x14=1c00bacb x15:1c00baca +76914414ns 1429349 1c003eae 00e42023 sw x14, 0(x8) x14:1c00bacb x8:1c00b914 PA:1c00b914 +76914434ns 1429350 1c003eb0 00b78023 sb x11, 0(x15) x11:00000063 x15:1c00baca PA:1c00baca +76914454ns 1429351 1c003eb4 f87ff06f jal x0, -122 +76914495ns 1429353 1c003e3a 00842783 lw x15, 8(x8) x15=ffffffed x8:1c00b914 PA:1c00b91c +76914515ns 1429354 1c003e3c 00094583 lbu x11, 0(x18) x11=0000006b x18:1c008917 PA:1c008917 +76914535ns 1429355 1c003e40 fff78793 addi x15, x15, -1 x15=ffffffec x15:ffffffed +76914555ns 1429356 1c003e42 04059a63 bne x11, x0, 84 x11:0000006b +76914616ns 1429359 1c003e96 00f42423 sw x15, 8(x8) x15:ffffffec x8:1c00b914 PA:1c00b91c +76914636ns 1429360 1c003e98 00190913 addi x18, x18, 1 x18=1c008918 x18:1c008917 +76914656ns 1429361 1c003e9a 0007d763 bge x15, x0, 14 x15:ffffffec +76914676ns 1429362 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +76914717ns 1429364 1c003ea0 00e7cb63 blt x15, x14, 22 x15:ffffffec x14:fffffc00 +76914737ns 1429365 1c003ea4 01458963 beq x11, x20, 18 x11:0000006b x20:0000000a +76914757ns 1429366 1c003ea8 00042783 lw x15, 0(x8) x15=1c00bacb x8:1c00b914 PA:1c00b914 +76914798ns 1429368 1c003eaa 00178713 addi x14, x15, 1 x14=1c00bacc x15:1c00bacb +76914818ns 1429369 1c003eae 00e42023 sw x14, 0(x8) x14:1c00bacc x8:1c00b914 PA:1c00b914 +76914838ns 1429370 1c003eb0 00b78023 sb x11, 0(x15) x11:0000006b x15:1c00bacb PA:1c00bacb +76914858ns 1429371 1c003eb4 f87ff06f jal x0, -122 +76914898ns 1429373 1c003e3a 00842783 lw x15, 8(x8) x15=ffffffec x8:1c00b914 PA:1c00b91c +76914919ns 1429374 1c003e3c 00094583 lbu x11, 0(x18) x11=00000000 x18:1c008918 PA:1c008918 +76914939ns 1429375 1c003e40 fff78793 addi x15, x15, -1 x15=ffffffeb x15:ffffffec +76914959ns 1429376 1c003e42 04059a63 bne x11, x0, 84 x11:00000000 +76914979ns 1429377 1c003e44 00f42423 sw x15, 8(x8) x15:ffffffeb x8:1c00b914 PA:1c00b91c +76914999ns 1429378 1c003e46 0607de63 bge x15, x0, 124 x15:ffffffeb +76915020ns 1429379 1c003e4a 00800633 add x12, x0, x8 x12=1c00b914 x8:1c00b914 +76915040ns 1429380 1c003e4c 00a00593 addi x11, x0, 10 x11=0000000a +76915060ns 1429381 1c003e4e 00900533 add x10, x0, x9 x10=1c009e10 x9:1c009e10 +76915080ns 1429382 1c003e50 25a000ef jal x1, 602 x1=1c003e52 +76915121ns 1429384 1c0040aa fe010113 addi x2, x2, -32 x2=1c009b80 x2:1c009ba0 +76915141ns 1429385 1c0040ac 00812c23 sw x8, 24(x2) x8:1c00b914 x2:1c009b80 PA:1c009b98 +76915161ns 1429386 1c0040ae 00912a23 sw x9, 20(x2) x9:1c009e10 x2:1c009b80 PA:1c009b94 +76915181ns 1429387 1c0040b0 01212823 sw x18, 16(x2) x18:1c008918 x2:1c009b80 PA:1c009b90 +76915201ns 1429388 1c0040b2 00112e23 sw x1, 28(x2) x1:1c003e52 x2:1c009b80 PA:1c009b9c +76915222ns 1429389 1c0040b4 01312623 sw x19, 12(x2) x19:ffffffff x2:1c009b80 PA:1c009b8c +76915242ns 1429390 1c0040b6 00a004b3 add x9, x0, x10 x9=1c009e10 x10:1c009e10 +76915262ns 1429391 1c0040b8 00b00933 add x18, x0, x11 x18=0000000a x11:0000000a +76915282ns 1429392 1c0040ba 00c00433 add x8, x0, x12 x8=1c00b914 x12:1c00b914 +76915302ns 1429393 1c0040bc 00050463 beq x10, x0, 8 x10:1c009e10 +76915323ns 1429394 1c0040be 01852783 lw x15, 24(x10) x15=00000001 x10:1c009e10 PA:1c009e28 +76915363ns 1429396 1c0040c0 00079263 bne x15, x0, 4 x15:00000001 +76915423ns 1429399 1c0040c4 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76915444ns 1429400 1c0040c8 a1478793 addi x15, x15, -1516 x15=1c008a14 x15:1c009000 +76915464ns 1429401 1c0040cc 06f41963 bne x8, x15, 114 x8:1c00b914 x15:1c008a14 +76915545ns 1429405 1c00413e 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76915565ns 1429406 1c004142 a3478793 addi x15, x15, -1484 x15=1c008a34 x15:1c009000 +76915585ns 1429407 1c004146 00f41463 bne x8, x15, 8 x8:1c00b914 x15:1c008a34 +76915666ns 1429411 1c00414e 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76915686ns 1429412 1c004152 9f478793 addi x15, x15, -1548 x15=1c0089f4 x15:1c009000 +76915706ns 1429413 1c004156 f6f41ee3 bne x8, x15, -132 x8:1c00b914 x15:1c0089f4 +76915767ns 1429416 1c0040d2 01842783 lw x15, 24(x8) x15=fffffc00 x8:1c00b914 PA:1c00b92c +76915807ns 1429418 1c0040d4 00f42423 sw x15, 8(x8) x15:fffffc00 x8:1c00b914 PA:1c00b91c +76915827ns 1429419 1c0040d6 00c45783 lhu x15, 12(x8) x15=00000089 x8:1c00b914 PA:1c00b920 +76915868ns 1429421 1c0040da 0087f793 andi x15, x15, 8 x15=00000008 x15:00000089 +76915888ns 1429422 1c0040dc 08078163 beq x15, x0, 130 x15:00000008 +76915908ns 1429423 1c0040de 01042783 lw x15, 16(x8) x15=1c00bab8 x8:1c00b914 PA:1c00b924 +76915948ns 1429425 1c0040e0 06078f63 beq x15, x0, 126 x15:1c00bab8 +76915969ns 1429426 1c0040e2 01042783 lw x15, 16(x8) x15=1c00bab8 x8:1c00b914 PA:1c00b924 +76915989ns 1429427 1c0040e4 00042503 lw x10, 0(x8) x10=1c00bacc x8:1c00b914 PA:1c00b914 +76916009ns 1429428 1c0040e6 0ff97993 andi x19, x18, 255 x19=0000000a x18:0000000a +76916029ns 1429429 1c0040ea 0ff97913 andi x18, x18, 255 x18=0000000a x18:0000000a +76916049ns 1429430 1c0040ee 40f50533 sub x10, x10, x15 x10=00000014 x10:1c00bacc x15:1c00bab8 +76916070ns 1429431 1c0040f0 01442783 lw x15, 20(x8) x15=00000400 x8:1c00b914 PA:1c00b928 +76916110ns 1429433 1c0040f2 00f54663 blt x10, x15, 12 x10:00000014 x15:00000400 +76916171ns 1429436 1c0040fe 00842783 lw x15, 8(x8) x15=fffffc00 x8:1c00b914 PA:1c00b91c +76916191ns 1429437 1c004100 00150513 addi x10, x10, 1 x10=00000015 x10:00000014 +76916211ns 1429438 1c004102 fff78793 addi x15, x15, -1 x15=fffffbff x15:fffffc00 +76916231ns 1429439 1c004104 00f42423 sw x15, 8(x8) x15:fffffbff x8:1c00b914 PA:1c00b91c +76916251ns 1429440 1c004106 00042783 lw x15, 0(x8) x15=1c00bacc x8:1c00b914 PA:1c00b914 +76916292ns 1429442 1c004108 00178713 addi x14, x15, 1 x14=1c00bacd x15:1c00bacc +76916312ns 1429443 1c00410c 00e42023 sw x14, 0(x8) x14:1c00bacd x8:1c00b914 PA:1c00b914 +76916332ns 1429444 1c00410e 01378023 sb x19, 0(x15) x19:0000000a x15:1c00bacc PA:1c00bacc +76916352ns 1429445 1c004112 01442783 lw x15, 20(x8) x15=00000400 x8:1c00b914 PA:1c00b928 +76916393ns 1429447 1c004114 00a78963 beq x15, x10, 18 x15:00000400 x10:00000015 +76916413ns 1429448 1c004118 00c45783 lhu x15, 12(x8) x15=00000089 x8:1c00b914 PA:1c00b920 +76916453ns 1429450 1c00411c 0017f793 andi x15, x15, 1 x15=00000001 x15:00000089 +76916473ns 1429451 1c00411e 00078863 beq x15, x0, 16 x15:00000001 +76916494ns 1429452 1c004120 00a00793 addi x15, x0, 10 x15=0000000a +76916514ns 1429453 1c004122 00f91663 bne x18, x15, 12 x18:0000000a x15:0000000a +76916534ns 1429454 1c004126 008005b3 add x11, x0, x8 x11=1c00b914 x8:1c00b914 +76916554ns 1429455 1c004128 00900533 add x10, x0, x9 x10=1c009e10 x9:1c009e10 +76916574ns 1429456 1c00412a 3d8000ef jal x1, 984 x1=1c00412c +76916615ns 1429458 1c004502 0105a783 lw x15, 16(x11) x15=1c00bab8 x11:1c00b914 PA:1c00b924 +76916655ns 1429460 1c004504 06078063 beq x15, x0, 96 x15:1c00bab8 +76916675ns 1429461 1c004506 fe010113 addi x2, x2, -32 x2=1c009b60 x2:1c009b80 +76916696ns 1429462 1c004508 00812c23 sw x8, 24(x2) x8:1c00b914 x2:1c009b60 PA:1c009b78 +76916716ns 1429463 1c00450a 00112e23 sw x1, 28(x2) x1:1c00412c x2:1c009b60 PA:1c009b7c +76916736ns 1429464 1c00450c 00a00433 add x8, x0, x10 x8=1c009e10 x10:1c009e10 +76916756ns 1429465 1c00450e 00050663 beq x10, x0, 12 x10:1c009e10 +76916776ns 1429466 1c004510 01852783 lw x15, 24(x10) x15=00000001 x10:1c009e10 PA:1c009e28 +76916817ns 1429468 1c004512 00079463 bne x15, x0, 8 x15:00000001 +76916897ns 1429472 1c00451a 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76916918ns 1429473 1c00451e a1478793 addi x15, x15, -1516 x15=1c008a14 x15:1c009000 +76916938ns 1429474 1c004522 00f59c63 bne x11, x15, 24 x11:1c00b914 x15:1c008a14 +76917019ns 1429478 1c00453a 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76917039ns 1429479 1c00453e a3478793 addi x15, x15, -1484 x15=1c008a34 x15:1c009000 +76917059ns 1429480 1c004542 00f59463 bne x11, x15, 8 x11:1c00b914 x15:1c008a34 +76917140ns 1429484 1c00454a 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76917160ns 1429485 1c00454e 9f478793 addi x15, x15, -1548 x15=1c0089f4 x15:1c009000 +76917180ns 1429486 1c004552 fcf59be3 bne x11, x15, -42 x11:1c00b914 x15:1c0089f4 +76917241ns 1429489 1c004528 00c59783 lh x15, 12(x11) x15=00000089 x11:1c00b914 PA:1c00b920 +76917281ns 1429491 1c00452c 02078763 beq x15, x0, 46 x15:00000089 +76917301ns 1429492 1c00452e 00800533 add x10, x0, x8 x10=1c009e10 x8:1c009e10 +76917322ns 1429493 1c004530 01812403 lw x8, 24(x2) x8=1c00b914 x2:1c009b60 PA:1c009b78 +76917342ns 1429494 1c004532 01c12083 lw x1, 28(x2) x1=1c00412c x2:1c009b60 PA:1c009b7c +76917362ns 1429495 1c004534 02010113 addi x2, x2, 32 x2=1c009b80 x2:1c009b60 +76917382ns 1429496 1c004536 e85ff06f jal x0, -380 +76917443ns 1429499 1c0043ba 00c5d783 lhu x15, 12(x11) x15=00000089 x11:1c00b914 PA:1c00b920 +76917463ns 1429500 1c0043be fe010113 addi x2, x2, -32 x2=1c009b60 x2:1c009b80 +76917483ns 1429501 1c0043c0 00812c23 sw x8, 24(x2) x8:1c00b914 x2:1c009b60 PA:1c009b78 +76917503ns 1429502 1c0043c2 00912a23 sw x9, 20(x2) x9:1c009e10 x2:1c009b60 PA:1c009b74 +76917523ns 1429503 1c0043c4 00112e23 sw x1, 28(x2) x1:1c00412c x2:1c009b60 PA:1c009b7c +76917544ns 1429504 1c0043c6 01212823 sw x18, 16(x2) x18:0000000a x2:1c009b60 PA:1c009b70 +76917564ns 1429505 1c0043c8 01312623 sw x19, 12(x2) x19:0000000a x2:1c009b60 PA:1c009b6c +76917584ns 1429506 1c0043ca 0087f713 andi x14, x15, 8 x14=00000008 x15:00000089 +76917604ns 1429507 1c0043ce 00a004b3 add x9, x0, x10 x9=1c009e10 x10:1c009e10 +76917624ns 1429508 1c0043d0 00b00433 add x8, x0, x11 x8=1c00b914 x11:1c00b914 +76917645ns 1429509 1c0043d2 0e071363 bne x14, x0, 230 x14:00000008 +76917705ns 1429512 1c0044b8 0105a983 lw x19, 16(x11) x19=1c00bab8 x11:1c00b914 PA:1c00b924 +76917746ns 1429514 1c0044bc f20982e3 beq x19, x0, -220 x19:1c00bab8 +76917766ns 1429515 1c0044c0 0005a903 lw x18, 0(x11) x18=1c00bacd x11:1c00b914 PA:1c00b914 +76917786ns 1429516 1c0044c4 0037f793 andi x15, x15, 3 x15=00000001 x15:00000089 +76917806ns 1429517 1c0044c6 0135a023 sw x19, 0(x11) x19:1c00bab8 x11:1c00b914 PA:1c00b914 +76917826ns 1429518 1c0044ca 41390933 sub x18, x18, x19 x18=00000015 x18:1c00bacd x19:1c00bab8 +76917847ns 1429519 1c0044ce 00000713 addi x14, x0, 0 x14=00000000 +76917867ns 1429520 1c0044d0 00079263 bne x15, x0, 4 x15:00000001 +76917927ns 1429523 1c0044d4 00e42423 sw x14, 8(x8) x14:00000000 x8:1c00b914 PA:1c00b91c +76917947ns 1429524 1c0044d6 f12055e3 bge x0, x18, -246 x18:00000015 +76917968ns 1429525 1c0044da 02842783 lw x15, 40(x8) x15=1c004c5e x8:1c00b914 PA:1c00b93c +76917988ns 1429526 1c0044dc 02042583 lw x11, 32(x8) x11=1c00b914 x8:1c00b914 PA:1c00b934 +76918008ns 1429527 1c0044de 012006b3 add x13, x0, x18 x13=00000015 x18:00000015 +76918028ns 1429528 1c0044e0 01300633 add x12, x0, x19 x12=1c00bab8 x19:1c00bab8 +76918048ns 1429529 1c0044e2 00900533 add x10, x0, x9 x10=1c009e10 x9:1c009e10 +76918069ns 1429530 1c0044e4 000780e7 jalr x1, x15, 0 x1=1c0044e6 x15:1c004c5e +76918129ns 1429533 1c004c5e 00c5d783 lhu x15, 12(x11) x15=00000089 x11:1c00b914 PA:1c00b920 +76918149ns 1429534 1c004c62 fe010113 addi x2, x2, -32 x2=1c009b40 x2:1c009b60 +76918170ns 1429535 1c004c64 00812c23 sw x8, 24(x2) x8:1c00b914 x2:1c009b40 PA:1c009b58 +76918190ns 1429536 1c004c66 00912a23 sw x9, 20(x2) x9:1c009e10 x2:1c009b40 PA:1c009b54 +76918210ns 1429537 1c004c68 01212823 sw x18, 16(x2) x18:00000015 x2:1c009b40 PA:1c009b50 +76918230ns 1429538 1c004c6a 01312623 sw x19, 12(x2) x19:1c00bab8 x2:1c009b40 PA:1c009b4c +76918250ns 1429539 1c004c6c 00112e23 sw x1, 28(x2) x1:1c0044e6 x2:1c009b40 PA:1c009b5c +76918271ns 1429540 1c004c6e 1007f793 andi x15, x15, 256 x15=00000000 x15:00000089 +76918291ns 1429541 1c004c72 00a004b3 add x9, x0, x10 x9=1c009e10 x10:1c009e10 +76918311ns 1429542 1c004c74 00b00433 add x8, x0, x11 x8=1c00b914 x11:1c00b914 +76918331ns 1429543 1c004c76 00c00933 add x18, x0, x12 x18=1c00bab8 x12:1c00bab8 +76918351ns 1429544 1c004c78 00d009b3 add x19, x0, x13 x19=00000015 x13:00000015 +76918371ns 1429545 1c004c7a 00078663 beq x15, x0, 12 x15:00000000 +76918452ns 1429549 1c004c86 00c45783 lhu x15, 12(x8) x15=00000089 x8:1c00b914 PA:1c00b920 +76918472ns 1429550 1c004c8a fffff737 lui x14, 0xfffff000 x14=fffff000 +76918493ns 1429551 1c004c8c fff70713 addi x14, x14, -1 x14=ffffefff x14:fffff000 +76918513ns 1429552 1c004c8e 00e7f7b3 and x15, x15, x14 x15=00000089 x15:00000089 x14:ffffefff +76918533ns 1429553 1c004c90 00e41583 lh x11, 14(x8) x11=00000001 x8:1c00b914 PA:1c00b922 +76918553ns 1429554 1c004c94 00f41623 sh x15, 12(x8) x15:00000089 x8:1c00b914 PA:1c00b920 +76918573ns 1429555 1c004c98 01812403 lw x8, 24(x2) x8=1c00b914 x2:1c009b40 PA:1c009b58 +76918594ns 1429556 1c004c9a 01c12083 lw x1, 28(x2) x1=1c0044e6 x2:1c009b40 PA:1c009b5c +76918614ns 1429557 1c004c9c 013006b3 add x13, x0, x19 x13=00000015 x19:00000015 +76918634ns 1429558 1c004c9e 01200633 add x12, x0, x18 x12=1c00bab8 x18:1c00bab8 +76918654ns 1429559 1c004ca0 00c12983 lw x19, 12(x2) x19=1c00bab8 x2:1c009b40 PA:1c009b4c +76918674ns 1429560 1c004ca2 01012903 lw x18, 16(x2) x18=00000015 x2:1c009b40 PA:1c009b50 +76918695ns 1429561 1c004ca4 00900533 add x10, x0, x9 x10=1c009e10 x9:1c009e10 +76918715ns 1429562 1c004ca6 01412483 lw x9, 20(x2) x9=1c009e10 x2:1c009b40 PA:1c009b54 +76918735ns 1429563 1c004ca8 02010113 addi x2, x2, 32 x2=1c009b60 x2:1c009b40 +76918755ns 1429564 1c004caa 03e0006f jal x0, 62 +76918796ns 1429566 1c004ce8 ff010113 addi x2, x2, -16 x2=1c009b50 x2:1c009b60 +76918816ns 1429567 1c004cea 00812423 sw x8, 8(x2) x8:1c00b914 x2:1c009b50 PA:1c009b58 +76918836ns 1429568 1c004cec 00912223 sw x9, 4(x2) x9:1c009e10 x2:1c009b50 PA:1c009b54 +76918856ns 1429569 1c004cee 00a00433 add x8, x0, x10 x8=1c009e10 x10:1c009e10 +76918876ns 1429570 1c004cf0 00b00533 add x10, x0, x11 x10=00000001 x11:00000001 +76918896ns 1429571 1c004cf2 00c005b3 add x11, x0, x12 x11=1c00bab8 x12:1c00bab8 +76918917ns 1429572 1c004cf4 00d00633 add x12, x0, x13 x12=00000015 x13:00000015 +76918937ns 1429573 1c004cf6 00112623 sw x1, 12(x2) x1:1c0044e6 x2:1c009b50 PA:1c009b5c +76918957ns 1429574 1c004cf8 dc01a023 sw x0, -576(x3) x3:1c0093dc PA:1c00919c +76918977ns 1429575 1c004cfc cf7fd0ef jal x1, -8970 x1=1c004d00 +76919018ns 1429577 1c0029f2 fff50513 addi x10, x10, -1 x10=00000000 x10:00000001 +76919038ns 1429578 1c0029f4 00100793 addi x15, x0, 1 x15=00000001 +76919058ns 1429579 1c0029f6 00c58833 add x16, x11, x12 x16=1c00bacd x11:1c00bab8 x12:00000015 +76919078ns 1429580 1c0029fa 00a7eb63 bltu x15, x10, 22 x15:00000001 x10:00000000 +76919098ns 1429581 1c0029fe 000026b7 lui x13, 0x2000 x13=00002000 +76919119ns 1429582 1c002a00 f8068693 addi x13, x13, -128 x13=00001f80 x13:00002000 +76919139ns 1429583 1c002a04 1a10f537 lui x10, 0x1a10f000 x10=1a10f000 +76919159ns 1429584 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bab8 x16:1c00bacd +76919220ns 1429587 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bab9 x11:1c00bab8 +76919240ns 1429588 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000073 x11:1c00bab9 PA:1c00bab8 +76919260ns 1429589 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76919280ns 1429590 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76919300ns 1429591 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76919321ns 1429592 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76919341ns 1429593 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76919361ns 1429594 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76919381ns 1429595 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76919401ns 1429596 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76919421ns 1429597 1c002a38 0117a023 sw x17, 0(x15) x17:00000073 x15:1a10ff80 PA:1a10ff80 +76919442ns 1429598 1c002a3c fcdff06f jal x0, -52 +76919543ns 1429603 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bab9 x16:1c00bacd +76919603ns 1429606 1c002a1c 00158593 addi x11, x11, 1 x11=1c00baba x11:1c00bab9 +76919623ns 1429607 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000074 x11:1c00baba PA:1c00bab9 +76919644ns 1429608 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76919664ns 1429609 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76919684ns 1429610 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76919704ns 1429611 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76919724ns 1429612 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76919745ns 1429613 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76919765ns 1429614 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76919785ns 1429615 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76919805ns 1429616 1c002a38 0117a023 sw x17, 0(x15) x17:00000074 x15:1a10ff80 PA:1a10ff80 +76919825ns 1429617 1c002a3c fcdff06f jal x0, -52 +76919926ns 1429622 1c002a08 01059a63 bne x11, x16, 20 x11:1c00baba x16:1c00bacd +76919987ns 1429625 1c002a1c 00158593 addi x11, x11, 1 x11=1c00babb x11:1c00baba +76920007ns 1429626 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000061 x11:1c00babb PA:1c00baba +76920027ns 1429627 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76920047ns 1429628 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76920068ns 1429629 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76920088ns 1429630 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76920108ns 1429631 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76920128ns 1429632 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76920148ns 1429633 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76920169ns 1429634 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76920189ns 1429635 1c002a38 0117a023 sw x17, 0(x15) x17:00000061 x15:1a10ff80 PA:1a10ff80 +76920209ns 1429636 1c002a3c fcdff06f jal x0, -52 +76920310ns 1429641 1c002a08 01059a63 bne x11, x16, 20 x11:1c00babb x16:1c00bacd +76920371ns 1429644 1c002a1c 00158593 addi x11, x11, 1 x11=1c00babc x11:1c00babb +76920391ns 1429645 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000072 x11:1c00babc PA:1c00babb +76920411ns 1429646 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76920431ns 1429647 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76920451ns 1429648 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76920471ns 1429649 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76920492ns 1429650 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76920512ns 1429651 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76920532ns 1429652 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76920552ns 1429653 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76920572ns 1429654 1c002a38 0117a023 sw x17, 0(x15) x17:00000072 x15:1a10ff80 PA:1a10ff80 +76920593ns 1429655 1c002a3c fcdff06f jal x0, -52 +76920694ns 1429660 1c002a08 01059a63 bne x11, x16, 20 x11:1c00babc x16:1c00bacd +76920754ns 1429663 1c002a1c 00158593 addi x11, x11, 1 x11=1c00babd x11:1c00babc +76920774ns 1429664 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000074 x11:1c00babd PA:1c00babc +76920795ns 1429665 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76920815ns 1429666 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76920835ns 1429667 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76920855ns 1429668 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76920875ns 1429669 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76920895ns 1429670 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76920916ns 1429671 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76920936ns 1429672 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76920956ns 1429673 1c002a38 0117a023 sw x17, 0(x15) x17:00000074 x15:1a10ff80 PA:1a10ff80 +76920976ns 1429674 1c002a3c fcdff06f jal x0, -52 +76921077ns 1429679 1c002a08 01059a63 bne x11, x16, 20 x11:1c00babd x16:1c00bacd +76921138ns 1429682 1c002a1c 00158593 addi x11, x11, 1 x11=1c00babe x11:1c00babd +76921158ns 1429683 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000069 x11:1c00babe PA:1c00babd +76921178ns 1429684 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76921198ns 1429685 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76921219ns 1429686 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76921239ns 1429687 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76921259ns 1429688 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76921279ns 1429689 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76921299ns 1429690 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76921320ns 1429691 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76921340ns 1429692 1c002a38 0117a023 sw x17, 0(x15) x17:00000069 x15:1a10ff80 PA:1a10ff80 +76921360ns 1429693 1c002a3c fcdff06f jal x0, -52 +76921461ns 1429698 1c002a08 01059a63 bne x11, x16, 20 x11:1c00babe x16:1c00bacd +76921521ns 1429701 1c002a1c 00158593 addi x11, x11, 1 x11=1c00babf x11:1c00babe +76921542ns 1429702 1c002a1e fff5c883 lbu x17, -1(x11) x17=0000006e x11:1c00babf PA:1c00babe +76921562ns 1429703 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76921582ns 1429704 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76921602ns 1429705 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76921622ns 1429706 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76921643ns 1429707 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76921663ns 1429708 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76921683ns 1429709 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76921703ns 1429710 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76921723ns 1429711 1c002a38 0117a023 sw x17, 0(x15) x17:0000006e x15:1a10ff80 PA:1a10ff80 +76921744ns 1429712 1c002a3c fcdff06f jal x0, -52 +76921845ns 1429717 1c002a08 01059a63 bne x11, x16, 20 x11:1c00babf x16:1c00bacd +76921905ns 1429720 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac0 x11:1c00babf +76921925ns 1429721 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000067 x11:1c00bac0 PA:1c00babf +76921945ns 1429722 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76921966ns 1429723 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76921986ns 1429724 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76922006ns 1429725 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76922026ns 1429726 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76922046ns 1429727 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76922067ns 1429728 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76922087ns 1429729 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76922107ns 1429730 1c002a38 0117a023 sw x17, 0(x15) x17:00000067 x15:1a10ff80 PA:1a10ff80 +76922127ns 1429731 1c002a3c fcdff06f jal x0, -52 +76922228ns 1429736 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac0 x16:1c00bacd +76922289ns 1429739 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac1 x11:1c00bac0 +76922309ns 1429740 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000020 x11:1c00bac1 PA:1c00bac0 +76922329ns 1429741 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76922349ns 1429742 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76922370ns 1429743 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76922390ns 1429744 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76922410ns 1429745 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76922430ns 1429746 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76922450ns 1429747 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76922470ns 1429748 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76922491ns 1429749 1c002a38 0117a023 sw x17, 0(x15) x17:00000020 x15:1a10ff80 PA:1a10ff80 +76922511ns 1429750 1c002a3c fcdff06f jal x0, -52 +76922612ns 1429755 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac1 x16:1c00bacd +76922672ns 1429758 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac2 x11:1c00bac1 +76922693ns 1429759 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000065 x11:1c00bac2 PA:1c00bac1 +76922713ns 1429760 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76922733ns 1429761 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76922753ns 1429762 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76922773ns 1429763 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76922794ns 1429764 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76922814ns 1429765 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76922834ns 1429766 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76922854ns 1429767 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76922874ns 1429768 1c002a38 0117a023 sw x17, 0(x15) x17:00000065 x15:1a10ff80 PA:1a10ff80 +76922895ns 1429769 1c002a3c fcdff06f jal x0, -52 +76922995ns 1429774 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac2 x16:1c00bacd +76923056ns 1429777 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac3 x11:1c00bac2 +76923076ns 1429778 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000072 x11:1c00bac3 PA:1c00bac2 +76923096ns 1429779 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76923117ns 1429780 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76923137ns 1429781 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76923157ns 1429782 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76923177ns 1429783 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76923197ns 1429784 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76923218ns 1429785 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76923238ns 1429786 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76923258ns 1429787 1c002a38 0117a023 sw x17, 0(x15) x17:00000072 x15:1a10ff80 PA:1a10ff80 +76923278ns 1429788 1c002a3c fcdff06f jal x0, -52 +76923379ns 1429793 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac3 x16:1c00bacd +76923440ns 1429796 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac4 x11:1c00bac3 +76923460ns 1429797 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000072 x11:1c00bac4 PA:1c00bac3 +76923480ns 1429798 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76923500ns 1429799 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76923520ns 1429800 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76923541ns 1429801 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76923561ns 1429802 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76923581ns 1429803 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76923601ns 1429804 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76923621ns 1429805 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76923642ns 1429806 1c002a38 0117a023 sw x17, 0(x15) x17:00000072 x15:1a10ff80 PA:1a10ff80 +76923662ns 1429807 1c002a3c fcdff06f jal x0, -52 +76923763ns 1429812 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac4 x16:1c00bacd +76923823ns 1429815 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac5 x11:1c00bac4 +76923844ns 1429816 1c002a1e fff5c883 lbu x17, -1(x11) x17=0000006f x11:1c00bac5 PA:1c00bac4 +76923864ns 1429817 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76923884ns 1429818 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76923904ns 1429819 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76923924ns 1429820 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76923944ns 1429821 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76923965ns 1429822 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76923985ns 1429823 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76924005ns 1429824 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76924025ns 1429825 1c002a38 0117a023 sw x17, 0(x15) x17:0000006f x15:1a10ff80 PA:1a10ff80 +76924045ns 1429826 1c002a3c fcdff06f jal x0, -52 +76924146ns 1429831 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac5 x16:1c00bacd +76924207ns 1429834 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac6 x11:1c00bac5 +76924227ns 1429835 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000072 x11:1c00bac6 PA:1c00bac5 +76924247ns 1429836 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76924268ns 1429837 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76924288ns 1429838 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76924308ns 1429839 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76924328ns 1429840 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76924348ns 1429841 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76924369ns 1429842 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76924389ns 1429843 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76924409ns 1429844 1c002a38 0117a023 sw x17, 0(x15) x17:00000072 x15:1a10ff80 PA:1a10ff80 +76924429ns 1429845 1c002a3c fcdff06f jal x0, -52 +76924530ns 1429850 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac6 x16:1c00bacd +76924591ns 1429853 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac7 x11:1c00bac6 +76924611ns 1429854 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000020 x11:1c00bac7 PA:1c00bac6 +76924631ns 1429855 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76924651ns 1429856 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76924671ns 1429857 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76924692ns 1429858 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76924712ns 1429859 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76924732ns 1429860 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76924752ns 1429861 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76924772ns 1429862 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76924793ns 1429863 1c002a38 0117a023 sw x17, 0(x15) x17:00000020 x15:1a10ff80 PA:1a10ff80 +76924813ns 1429864 1c002a3c fcdff06f jal x0, -52 +76924914ns 1429869 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac7 x16:1c00bacd +76924974ns 1429872 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac8 x11:1c00bac7 +76924994ns 1429873 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000063 x11:1c00bac8 PA:1c00bac7 +76925015ns 1429874 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76925035ns 1429875 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76925055ns 1429876 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76925075ns 1429877 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76925095ns 1429878 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76925116ns 1429879 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76925136ns 1429880 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76925156ns 1429881 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76925176ns 1429882 1c002a38 0117a023 sw x17, 0(x15) x17:00000063 x15:1a10ff80 PA:1a10ff80 +76925196ns 1429883 1c002a3c fcdff06f jal x0, -52 +76925297ns 1429888 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac8 x16:1c00bacd +76925358ns 1429891 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac9 x11:1c00bac8 +76925378ns 1429892 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000068 x11:1c00bac9 PA:1c00bac8 +76925398ns 1429893 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76925419ns 1429894 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76925439ns 1429895 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76925459ns 1429896 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76925479ns 1429897 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76925499ns 1429898 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76925519ns 1429899 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76925540ns 1429900 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76925560ns 1429901 1c002a38 0117a023 sw x17, 0(x15) x17:00000068 x15:1a10ff80 PA:1a10ff80 +76925580ns 1429902 1c002a3c fcdff06f jal x0, -52 +76925681ns 1429907 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac9 x16:1c00bacd +76925742ns 1429910 1c002a1c 00158593 addi x11, x11, 1 x11=1c00baca x11:1c00bac9 +76925762ns 1429911 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000065 x11:1c00baca PA:1c00bac9 +76925782ns 1429912 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76925802ns 1429913 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76925822ns 1429914 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76925843ns 1429915 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76925863ns 1429916 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76925883ns 1429917 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76925903ns 1429918 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76925923ns 1429919 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76925943ns 1429920 1c002a38 0117a023 sw x17, 0(x15) x17:00000065 x15:1a10ff80 PA:1a10ff80 +76925964ns 1429921 1c002a3c fcdff06f jal x0, -52 +76926065ns 1429926 1c002a08 01059a63 bne x11, x16, 20 x11:1c00baca x16:1c00bacd +76926125ns 1429929 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bacb x11:1c00baca +76926145ns 1429930 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000063 x11:1c00bacb PA:1c00baca +76926166ns 1429931 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76926186ns 1429932 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76926206ns 1429933 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76926226ns 1429934 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76926246ns 1429935 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76926267ns 1429936 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76926287ns 1429937 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76926307ns 1429938 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76926327ns 1429939 1c002a38 0117a023 sw x17, 0(x15) x17:00000063 x15:1a10ff80 PA:1a10ff80 +76926347ns 1429940 1c002a3c fcdff06f jal x0, -52 +76926448ns 1429945 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bacb x16:1c00bacd +76926509ns 1429948 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bacc x11:1c00bacb +76926529ns 1429949 1c002a1e fff5c883 lbu x17, -1(x11) x17=0000006b x11:1c00bacc PA:1c00bacb +76926549ns 1429950 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76926569ns 1429951 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76926590ns 1429952 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76926610ns 1429953 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76926630ns 1429954 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76926650ns 1429955 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76926670ns 1429956 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76926691ns 1429957 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76926711ns 1429958 1c002a38 0117a023 sw x17, 0(x15) x17:0000006b x15:1a10ff80 PA:1a10ff80 +76926731ns 1429959 1c002a3c fcdff06f jal x0, -52 +76926832ns 1429964 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bacc x16:1c00bacd +76926893ns 1429967 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bacd x11:1c00bacc +76926913ns 1429968 1c002a1e fff5c883 lbu x17, -1(x11) x17=0000000a x11:1c00bacd PA:1c00bacc +76926933ns 1429969 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +76926953ns 1429970 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +76926973ns 1429971 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +76926993ns 1429972 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +76927014ns 1429973 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +76927034ns 1429974 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +76927054ns 1429975 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +76927074ns 1429976 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +76927094ns 1429977 1c002a38 0117a023 sw x17, 0(x15) x17:0000000a x15:1a10ff80 PA:1a10ff80 +76927115ns 1429978 1c002a3c fcdff06f jal x0, -52 +76927216ns 1429983 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bacd x16:1c00bacd +76927236ns 1429984 1c002a0c 00c00533 add x10, x0, x12 x10=00000015 x12:00000015 +76927256ns 1429985 1c002a0e 00008067 jalr x0, x1, 0 x1:1c004d00 +76927296ns 1429987 1c004d00 fff00793 addi x15, x0, -1 x15=ffffffff +76927317ns 1429988 1c004d02 00f51663 bne x10, x15, 12 x10:00000015 x15:ffffffff +76927377ns 1429991 1c004d0e 00c12083 lw x1, 12(x2) x1=1c0044e6 x2:1c009b50 PA:1c009b5c +76927397ns 1429992 1c004d10 00812403 lw x8, 8(x2) x8=1c00b914 x2:1c009b50 PA:1c009b58 +76927418ns 1429993 1c004d12 00412483 lw x9, 4(x2) x9=1c009e10 x2:1c009b50 PA:1c009b54 +76927438ns 1429994 1c004d14 01010113 addi x2, x2, 16 x2=1c009b60 x2:1c009b50 +76927458ns 1429995 1c004d16 00008067 jalr x0, x1, 0 x1:1c0044e6 +76927518ns 1429998 1c0044e6 00a04a63 blt x0, x10, 20 x10:00000015 +76927579ns 1430001 1c0044fa 00a989b3 add x19, x19, x10 x19=1c00bacd x19:1c00bab8 x10:00000015 +76927599ns 1430002 1c0044fc 40a90933 sub x18, x18, x10 x18=00000000 x18:00000015 x10:00000015 +76927619ns 1430003 1c004500 fd7ff06f jal x0, -42 +76927680ns 1430006 1c0044d6 f12055e3 bge x0, x18, -246 x18:00000000 +76927741ns 1430009 1c0043e0 00000513 addi x10, x0, 0 x10=00000000 +76927761ns 1430010 1c0043e2 0be0006f jal x0, 190 +76927801ns 1430012 1c0044a0 01c12083 lw x1, 28(x2) x1=1c00412c x2:1c009b60 PA:1c009b7c +76927821ns 1430013 1c0044a2 01812403 lw x8, 24(x2) x8=1c00b914 x2:1c009b60 PA:1c009b78 +76927842ns 1430014 1c0044a4 01412483 lw x9, 20(x2) x9=1c009e10 x2:1c009b60 PA:1c009b74 +76927862ns 1430015 1c0044a6 01012903 lw x18, 16(x2) x18=0000000a x2:1c009b60 PA:1c009b70 +76927882ns 1430016 1c0044a8 00c12983 lw x19, 12(x2) x19=0000000a x2:1c009b60 PA:1c009b6c +76927902ns 1430017 1c0044aa 02010113 addi x2, x2, 32 x2=1c009b80 x2:1c009b60 +76927922ns 1430018 1c0044ac 00008067 jalr x0, x1, 0 x1:1c00412c +76927963ns 1430020 1c00412c 02051d63 bne x10, x0, 58 x10:00000000 +76927983ns 1430021 1c00412e 01c12083 lw x1, 28(x2) x1=1c003e52 x2:1c009b80 PA:1c009b9c +76928003ns 1430022 1c004130 01812403 lw x8, 24(x2) x8=1c00b914 x2:1c009b80 PA:1c009b98 +76928023ns 1430023 1c004132 01412483 lw x9, 20(x2) x9=1c009e10 x2:1c009b80 PA:1c009b94 +76928043ns 1430024 1c004134 00c12983 lw x19, 12(x2) x19=ffffffff x2:1c009b80 PA:1c009b8c +76928064ns 1430025 1c004136 01200533 add x10, x0, x18 x10=0000000a x18:0000000a +76928084ns 1430026 1c004138 01012903 lw x18, 16(x2) x18=1c008918 x2:1c009b80 PA:1c009b90 +76928104ns 1430027 1c00413a 02010113 addi x2, x2, 32 x2=1c009ba0 x2:1c009b80 +76928124ns 1430028 1c00413c 00008067 jalr x0, x1, 0 x1:1c003e52 +76928165ns 1430030 1c003e52 fff00793 addi x15, x0, -1 x15=ffffffff +76928185ns 1430031 1c003e54 02f50863 beq x10, x15, 48 x10:0000000a x15:ffffffff +76928205ns 1430032 1c003e58 00a00513 addi x10, x0, 10 x10=0000000a +76928225ns 1430033 1c003e5a 02c0006f jal x0, 44 +76928266ns 1430035 1c003e86 01c12083 lw x1, 28(x2) x1=1c0036fa x2:1c009ba0 PA:1c009bbc +76928286ns 1430036 1c003e88 01812403 lw x8, 24(x2) x8=00000000 x2:1c009ba0 PA:1c009bb8 +76928306ns 1430037 1c003e8a 01412483 lw x9, 20(x2) x9=1c009190 x2:1c009ba0 PA:1c009bb4 +76928326ns 1430038 1c003e8c 01012903 lw x18, 16(x2) x18=1c009188 x2:1c009ba0 PA:1c009bb0 +76928346ns 1430039 1c003e8e 00c12983 lw x19, 12(x2) x19=1c009000 x2:1c009ba0 PA:1c009bac +76928367ns 1430040 1c003e90 00812a03 lw x20, 8(x2) x20=1c00918c x2:1c009ba0 PA:1c009ba8 +76928387ns 1430041 1c003e92 02010113 addi x2, x2, 32 x2=1c009bc0 x2:1c009ba0 +76928407ns 1430042 1c003e94 00008067 jalr x0, x1, 0 x1:1c0036fa +76928467ns 1430045 1c0036fa 00092503 lw x10, 0(x18) x10=1c00bfc8 x18:1c009188 PA:1c009188 +76928488ns 1430046 1c0036fe 0004a803 lw x16, 0(x9) x16=1c00bec0 x9:1c009190 PA:1c009190 +76928508ns 1430047 1c003702 000a2883 lw x17, 0(x20) x17=1c00c0d0 x20:1c00918c PA:1c00918c +76928528ns 1430048 1c003706 00000593 addi x11, x0, 0 x11=00000000 +76928548ns 1430049 1c003708 10000793 addi x15, x0, 256 x15=00000100 +76928568ns 1430050 1c00370c 00b50733 add x14, x10, x11 x14=1c00bfc8 x10:1c00bfc8 x11:00000000 +76928589ns 1430051 1c003710 00b80633 add x12, x16, x11 x12=1c00bec0 x16:1c00bec0 x11:00000000 +76928609ns 1430052 1c003714 00074683 lbu x13, 0(x14) x13=00000000 x14:1c00bfc8 PA:1c00bfc8 +76928629ns 1430053 1c003718 00064603 lbu x12, 0(x12) x12=00000000 x12:1c00bec0 PA:1c00bec0 +76928669ns 1430055 1c00371c 00c68f63 beq x13, x12, 30 x13:00000000 x12:00000000 +76928730ns 1430058 1c00373a 00158593 addi x11, x11, 1 x11=00000001 x11:00000000 +76928750ns 1430059 1c00373c fcf598e3 bne x11, x15, -48 x11:00000001 x15:00000100 +76928811ns 1430062 1c00370c 00b50733 add x14, x10, x11 x14=1c00bfc9 x10:1c00bfc8 x11:00000001 +76928831ns 1430063 1c003710 00b80633 add x12, x16, x11 x12=1c00bec1 x16:1c00bec0 x11:00000001 +76928851ns 1430064 1c003714 00074683 lbu x13, 0(x14) x13=00000001 x14:1c00bfc9 PA:1c00bfc9 +76928871ns 1430065 1c003718 00064603 lbu x12, 0(x12) x12=00000001 x12:1c00bec1 PA:1c00bec1 +76928912ns 1430067 1c00371c 00c68f63 beq x13, x12, 30 x13:00000001 x12:00000001 +76928972ns 1430070 1c00373a 00158593 addi x11, x11, 1 x11=00000002 x11:00000001 +76928992ns 1430071 1c00373c fcf598e3 bne x11, x15, -48 x11:00000002 x15:00000100 +76929053ns 1430074 1c00370c 00b50733 add x14, x10, x11 x14=1c00bfca x10:1c00bfc8 x11:00000002 +76929073ns 1430075 1c003710 00b80633 add x12, x16, x11 x12=1c00bec2 x16:1c00bec0 x11:00000002 +76929093ns 1430076 1c003714 00074683 lbu x13, 0(x14) x13=00000002 x14:1c00bfca PA:1c00bfca +76929114ns 1430077 1c003718 00064603 lbu x12, 0(x12) x12=00000002 x12:1c00bec2 PA:1c00bec2 +76929154ns 1430079 1c00371c 00c68f63 beq x13, x12, 30 x13:00000002 x12:00000002 +76929215ns 1430082 1c00373a 00158593 addi x11, x11, 1 x11=00000003 x11:00000002 +76929235ns 1430083 1c00373c fcf598e3 bne x11, x15, -48 x11:00000003 x15:00000100 +76929295ns 1430086 1c00370c 00b50733 add x14, x10, x11 x14=1c00bfcb x10:1c00bfc8 x11:00000003 +76929316ns 1430087 1c003710 00b80633 add x12, x16, x11 x12=1c00bec3 x16:1c00bec0 x11:00000003 +76929336ns 1430088 1c003714 00074683 lbu x13, 0(x14) x13=00000003 x14:1c00bfcb PA:1c00bfcb +76929356ns 1430089 1c003718 00064603 lbu x12, 0(x12) x12=00000003 x12:1c00bec3 PA:1c00bec3 +76929396ns 1430091 1c00371c 00c68f63 beq x13, x12, 30 x13:00000003 x12:00000003 +76929457ns 1430094 1c00373a 00158593 addi x11, x11, 1 x11=00000004 x11:00000003 +76929477ns 1430095 1c00373c fcf598e3 bne x11, x15, -48 x11:00000004 x15:00000100 +76929538ns 1430098 1c00370c 00b50733 add x14, x10, x11 x14=1c00bfcc x10:1c00bfc8 x11:00000004 +76929558ns 1430099 1c003710 00b80633 add x12, x16, x11 x12=1c00bec4 x16:1c00bec0 x11:00000004 +76929578ns 1430100 1c003714 00074683 lbu x13, 0(x14) x13=00000004 x14:1c00bfcc PA:1c00bfcc +76929598ns 1430101 1c003718 00064603 lbu x12, 0(x12) x12=00000004 x12:1c00bec4 PA:1c00bec4 +76929639ns 1430103 1c00371c 00c68f63 beq x13, x12, 30 x13:00000004 x12:00000004 +76929699ns 1430106 1c00373a 00158593 addi x11, x11, 1 x11=00000005 x11:00000004 +76929719ns 1430107 1c00373c fcf598e3 bne x11, x15, -48 x11:00000005 x15:00000100 +76929780ns 1430110 1c00370c 00b50733 add x14, x10, x11 x14=1c00bfcd x10:1c00bfc8 x11:00000005 +76929800ns 1430111 1c003710 00b80633 add x12, x16, x11 x12=1c00bec5 x16:1c00bec0 x11:00000005 +76929820ns 1430112 1c003714 00074683 lbu x13, 0(x14) x13=00000005 x14:1c00bfcd PA:1c00bfcd +76929841ns 1430113 1c003718 00064603 lbu x12, 0(x12) x12=00000005 x12:1c00bec5 PA:1c00bec5 +76929881ns 1430115 1c00371c 00c68f63 beq x13, x12, 30 x13:00000005 x12:00000005 +76929942ns 1430118 1c00373a 00158593 addi x11, x11, 1 x11=00000006 x11:00000005 +76929962ns 1430119 1c00373c fcf598e3 bne x11, x15, -48 x11:00000006 x15:00000100 +76930022ns 1430122 1c00370c 00b50733 add x14, x10, x11 x14=1c00bfce x10:1c00bfc8 x11:00000006 +76930042ns 1430123 1c003710 00b80633 add x12, x16, x11 x12=1c00bec6 x16:1c00bec0 x11:00000006 +76930063ns 1430124 1c003714 00074683 lbu x13, 0(x14) x13=00000006 x14:1c00bfce PA:1c00bfce +76930083ns 1430125 1c003718 00064603 lbu x12, 0(x12) x12=00000006 x12:1c00bec6 PA:1c00bec6 +76930123ns 1430127 1c00371c 00c68f63 beq x13, x12, 30 x13:00000006 x12:00000006 +76930184ns 1430130 1c00373a 00158593 addi x11, x11, 1 x11=00000007 x11:00000006 +76930204ns 1430131 1c00373c fcf598e3 bne x11, x15, -48 x11:00000007 x15:00000100 +76930265ns 1430134 1c00370c 00b50733 add x14, x10, x11 x14=1c00bfcf x10:1c00bfc8 x11:00000007 +76930285ns 1430135 1c003710 00b80633 add x12, x16, x11 x12=1c00bec7 x16:1c00bec0 x11:00000007 +76930305ns 1430136 1c003714 00074683 lbu x13, 0(x14) x13=00000007 x14:1c00bfcf PA:1c00bfcf +76930325ns 1430137 1c003718 00064603 lbu x12, 0(x12) x12=00000007 x12:1c00bec7 PA:1c00bec7 +76930366ns 1430139 1c00371c 00c68f63 beq x13, x12, 30 x13:00000007 x12:00000007 +76930426ns 1430142 1c00373a 00158593 addi x11, x11, 1 x11=00000008 x11:00000007 +76930446ns 1430143 1c00373c fcf598e3 bne x11, x15, -48 x11:00000008 x15:00000100 +76930507ns 1430146 1c00370c 00b50733 add x14, x10, x11 x14=1c00bfd0 x10:1c00bfc8 x11:00000008 +76930527ns 1430147 1c003710 00b80633 add x12, x16, x11 x12=1c00bec8 x16:1c00bec0 x11:00000008 +76930547ns 1430148 1c003714 00074683 lbu x13, 0(x14) x13=00000008 x14:1c00bfd0 PA:1c00bfd0 +76930567ns 1430149 1c003718 00064603 lbu x12, 0(x12) x12=00000008 x12:1c00bec8 PA:1c00bec8 +76930608ns 1430151 1c00371c 00c68f63 beq x13, x12, 30 x13:00000008 x12:00000008 +76930668ns 1430154 1c00373a 00158593 addi x11, x11, 1 x11=00000009 x11:00000008 +76930689ns 1430155 1c00373c fcf598e3 bne x11, x15, -48 x11:00000009 x15:00000100 +76930749ns 1430158 1c00370c 00b50733 add x14, x10, x11 x14=1c00bfd1 x10:1c00bfc8 x11:00000009 +76930769ns 1430159 1c003710 00b80633 add x12, x16, x11 x12=1c00bec9 x16:1c00bec0 x11:00000009 +76930790ns 1430160 1c003714 00074683 lbu x13, 0(x14) x13=00000009 x14:1c00bfd1 PA:1c00bfd1 +76930810ns 1430161 1c003718 00064603 lbu x12, 0(x12) x12=00000009 x12:1c00bec9 PA:1c00bec9 +76930850ns 1430163 1c00371c 00c68f63 beq x13, x12, 30 x13:00000009 x12:00000009 +76930911ns 1430166 1c00373a 00158593 addi x11, x11, 1 x11=0000000a x11:00000009 +76930931ns 1430167 1c00373c fcf598e3 bne x11, x15, -48 x11:0000000a x15:00000100 +76930991ns 1430170 1c00370c 00b50733 add x14, x10, x11 x14=1c00bfd2 x10:1c00bfc8 x11:0000000a +76931012ns 1430171 1c003710 00b80633 add x12, x16, x11 x12=1c00beca x16:1c00bec0 x11:0000000a +76931032ns 1430172 1c003714 00074683 lbu x13, 0(x14) x13=0000000a x14:1c00bfd2 PA:1c00bfd2 +76931052ns 1430173 1c003718 00064603 lbu x12, 0(x12) x12=0000000a x12:1c00beca PA:1c00beca +76931092ns 1430175 1c00371c 00c68f63 beq x13, x12, 30 x13:0000000a x12:0000000a +76931153ns 1430178 1c00373a 00158593 addi x11, x11, 1 x11=0000000b x11:0000000a +76931173ns 1430179 1c00373c fcf598e3 bne x11, x15, -48 x11:0000000b x15:00000100 +76931234ns 1430182 1c00370c 00b50733 add x14, x10, x11 x14=1c00bfd3 x10:1c00bfc8 x11:0000000b +76931254ns 1430183 1c003710 00b80633 add x12, x16, x11 x12=1c00becb x16:1c00bec0 x11:0000000b +76931274ns 1430184 1c003714 00074683 lbu x13, 0(x14) x13=0000000b x14:1c00bfd3 PA:1c00bfd3 +76931294ns 1430185 1c003718 00064603 lbu x12, 0(x12) x12=0000000b x12:1c00becb PA:1c00becb +76931335ns 1430187 1c00371c 00c68f63 beq x13, x12, 30 x13:0000000b x12:0000000b +76931395ns 1430190 1c00373a 00158593 addi x11, x11, 1 x11=0000000c x11:0000000b +76931416ns 1430191 1c00373c fcf598e3 bne x11, x15, -48 x11:0000000c x15:00000100 +76931476ns 1430194 1c00370c 00b50733 add x14, x10, x11 x14=1c00bfd4 x10:1c00bfc8 x11:0000000c +76931496ns 1430195 1c003710 00b80633 add x12, x16, x11 x12=1c00becc x16:1c00bec0 x11:0000000c +76931516ns 1430196 1c003714 00074683 lbu x13, 0(x14) x13=0000000c x14:1c00bfd4 PA:1c00bfd4 +76931537ns 1430197 1c003718 00064603 lbu x12, 0(x12) x12=0000000c x12:1c00becc PA:1c00becc +76931577ns 1430199 1c00371c 00c68f63 beq x13, x12, 30 x13:0000000c x12:0000000c +76931638ns 1430202 1c00373a 00158593 addi x11, x11, 1 x11=0000000d x11:0000000c +76931658ns 1430203 1c00373c fcf598e3 bne x11, x15, -48 x11:0000000d x15:00000100 +76931718ns 1430206 1c00370c 00b50733 add x14, x10, x11 x14=1c00bfd5 x10:1c00bfc8 x11:0000000d +76931739ns 1430207 1c003710 00b80633 add x12, x16, x11 x12=1c00becd x16:1c00bec0 x11:0000000d +76931759ns 1430208 1c003714 00074683 lbu x13, 0(x14) x13=0000000d x14:1c00bfd5 PA:1c00bfd5 +76931779ns 1430209 1c003718 00064603 lbu x12, 0(x12) x12=0000000d x12:1c00becd PA:1c00becd +76931819ns 1430211 1c00371c 00c68f63 beq x13, x12, 30 x13:0000000d x12:0000000d +76931880ns 1430214 1c00373a 00158593 addi x11, x11, 1 x11=0000000e x11:0000000d +76931900ns 1430215 1c00373c fcf598e3 bne x11, x15, -48 x11:0000000e x15:00000100 +76931961ns 1430218 1c00370c 00b50733 add x14, x10, x11 x14=1c00bfd6 x10:1c00bfc8 x11:0000000e +76931981ns 1430219 1c003710 00b80633 add x12, x16, x11 x12=1c00bece x16:1c00bec0 x11:0000000e +76932001ns 1430220 1c003714 00074683 lbu x13, 0(x14) x13=0000000e x14:1c00bfd6 PA:1c00bfd6 +76932021ns 1430221 1c003718 00064603 lbu x12, 0(x12) x12=0000000e x12:1c00bece PA:1c00bece +76932062ns 1430223 1c00371c 00c68f63 beq x13, x12, 30 x13:0000000e x12:0000000e +76932122ns 1430226 1c00373a 00158593 addi x11, x11, 1 x11=0000000f x11:0000000e +76932142ns 1430227 1c00373c fcf598e3 bne x11, x15, -48 x11:0000000f x15:00000100 +76932203ns 1430230 1c00370c 00b50733 add x14, x10, x11 x14=1c00bfd7 x10:1c00bfc8 x11:0000000f +76932223ns 1430231 1c003710 00b80633 add x12, x16, x11 x12=1c00becf x16:1c00bec0 x11:0000000f +76932243ns 1430232 1c003714 00074683 lbu x13, 0(x14) x13=0000000f x14:1c00bfd7 PA:1c00bfd7 +76932264ns 1430233 1c003718 00064603 lbu x12, 0(x12) x12=0000000f x12:1c00becf PA:1c00becf +76932304ns 1430235 1c00371c 00c68f63 beq x13, x12, 30 x13:0000000f x12:0000000f +76932365ns 1430238 1c00373a 00158593 addi x11, x11, 1 x11=00000010 x11:0000000f +76932385ns 1430239 1c00373c fcf598e3 bne x11, x15, -48 x11:00000010 x15:00000100 +76932445ns 1430242 1c00370c 00b50733 add x14, x10, x11 x14=1c00bfd8 x10:1c00bfc8 x11:00000010 +76932466ns 1430243 1c003710 00b80633 add x12, x16, x11 x12=1c00bed0 x16:1c00bec0 x11:00000010 +76932486ns 1430244 1c003714 00074683 lbu x13, 0(x14) x13=00000010 x14:1c00bfd8 PA:1c00bfd8 +76932506ns 1430245 1c003718 00064603 lbu x12, 0(x12) x12=00000010 x12:1c00bed0 PA:1c00bed0 +76932546ns 1430247 1c00371c 00c68f63 beq x13, x12, 30 x13:00000010 x12:00000010 +76932607ns 1430250 1c00373a 00158593 addi x11, x11, 1 x11=00000011 x11:00000010 +76932627ns 1430251 1c00373c fcf598e3 bne x11, x15, -48 x11:00000011 x15:00000100 +76932688ns 1430254 1c00370c 00b50733 add x14, x10, x11 x14=1c00bfd9 x10:1c00bfc8 x11:00000011 +76932708ns 1430255 1c003710 00b80633 add x12, x16, x11 x12=1c00bed1 x16:1c00bec0 x11:00000011 +76932728ns 1430256 1c003714 00074683 lbu x13, 0(x14) x13=00000011 x14:1c00bfd9 PA:1c00bfd9 +76932748ns 1430257 1c003718 00064603 lbu x12, 0(x12) x12=00000011 x12:1c00bed1 PA:1c00bed1 +76932789ns 1430259 1c00371c 00c68f63 beq x13, x12, 30 x13:00000011 x12:00000011 +76932849ns 1430262 1c00373a 00158593 addi x11, x11, 1 x11=00000012 x11:00000011 +76932869ns 1430263 1c00373c fcf598e3 bne x11, x15, -48 x11:00000012 x15:00000100 +76932930ns 1430266 1c00370c 00b50733 add x14, x10, x11 x14=1c00bfda x10:1c00bfc8 x11:00000012 +76932950ns 1430267 1c003710 00b80633 add x12, x16, x11 x12=1c00bed2 x16:1c00bec0 x11:00000012 +76932970ns 1430268 1c003714 00074683 lbu x13, 0(x14) x13=00000012 x14:1c00bfda PA:1c00bfda +76932991ns 1430269 1c003718 00064603 lbu x12, 0(x12) x12=00000012 x12:1c00bed2 PA:1c00bed2 +76933031ns 1430271 1c00371c 00c68f63 beq x13, x12, 30 x13:00000012 x12:00000012 +76933091ns 1430274 1c00373a 00158593 addi x11, x11, 1 x11=00000013 x11:00000012 +76933112ns 1430275 1c00373c fcf598e3 bne x11, x15, -48 x11:00000013 x15:00000100 +76933172ns 1430278 1c00370c 00b50733 add x14, x10, x11 x14=1c00bfdb x10:1c00bfc8 x11:00000013 +76933192ns 1430279 1c003710 00b80633 add x12, x16, x11 x12=1c00bed3 x16:1c00bec0 x11:00000013 +76933213ns 1430280 1c003714 00074683 lbu x13, 0(x14) x13=00000013 x14:1c00bfdb PA:1c00bfdb +76933233ns 1430281 1c003718 00064603 lbu x12, 0(x12) x12=00000013 x12:1c00bed3 PA:1c00bed3 +76933273ns 1430283 1c00371c 00c68f63 beq x13, x12, 30 x13:00000013 x12:00000013 +76933334ns 1430286 1c00373a 00158593 addi x11, x11, 1 x11=00000014 x11:00000013 +76933354ns 1430287 1c00373c fcf598e3 bne x11, x15, -48 x11:00000014 x15:00000100 +76933415ns 1430290 1c00370c 00b50733 add x14, x10, x11 x14=1c00bfdc x10:1c00bfc8 x11:00000014 +76933435ns 1430291 1c003710 00b80633 add x12, x16, x11 x12=1c00bed4 x16:1c00bec0 x11:00000014 +76933455ns 1430292 1c003714 00074683 lbu x13, 0(x14) x13=00000014 x14:1c00bfdc PA:1c00bfdc +76933475ns 1430293 1c003718 00064603 lbu x12, 0(x12) x12=00000014 x12:1c00bed4 PA:1c00bed4 +76933515ns 1430295 1c00371c 00c68f63 beq x13, x12, 30 x13:00000014 x12:00000014 +76933576ns 1430298 1c00373a 00158593 addi x11, x11, 1 x11=00000015 x11:00000014 +76933596ns 1430299 1c00373c fcf598e3 bne x11, x15, -48 x11:00000015 x15:00000100 +76933657ns 1430302 1c00370c 00b50733 add x14, x10, x11 x14=1c00bfdd x10:1c00bfc8 x11:00000015 +76933677ns 1430303 1c003710 00b80633 add x12, x16, x11 x12=1c00bed5 x16:1c00bec0 x11:00000015 +76933697ns 1430304 1c003714 00074683 lbu x13, 0(x14) x13=00000015 x14:1c00bfdd PA:1c00bfdd +76933717ns 1430305 1c003718 00064603 lbu x12, 0(x12) x12=00000015 x12:1c00bed5 PA:1c00bed5 +76933758ns 1430307 1c00371c 00c68f63 beq x13, x12, 30 x13:00000015 x12:00000015 +76933818ns 1430310 1c00373a 00158593 addi x11, x11, 1 x11=00000016 x11:00000015 +76933839ns 1430311 1c00373c fcf598e3 bne x11, x15, -48 x11:00000016 x15:00000100 +76933899ns 1430314 1c00370c 00b50733 add x14, x10, x11 x14=1c00bfde x10:1c00bfc8 x11:00000016 +76933919ns 1430315 1c003710 00b80633 add x12, x16, x11 x12=1c00bed6 x16:1c00bec0 x11:00000016 +76933940ns 1430316 1c003714 00074683 lbu x13, 0(x14) x13=00000016 x14:1c00bfde PA:1c00bfde +76933960ns 1430317 1c003718 00064603 lbu x12, 0(x12) x12=00000016 x12:1c00bed6 PA:1c00bed6 +76934000ns 1430319 1c00371c 00c68f63 beq x13, x12, 30 x13:00000016 x12:00000016 +76934061ns 1430322 1c00373a 00158593 addi x11, x11, 1 x11=00000017 x11:00000016 +76934081ns 1430323 1c00373c fcf598e3 bne x11, x15, -48 x11:00000017 x15:00000100 +76934141ns 1430326 1c00370c 00b50733 add x14, x10, x11 x14=1c00bfdf x10:1c00bfc8 x11:00000017 +76934162ns 1430327 1c003710 00b80633 add x12, x16, x11 x12=1c00bed7 x16:1c00bec0 x11:00000017 +76934182ns 1430328 1c003714 00074683 lbu x13, 0(x14) x13=00000017 x14:1c00bfdf PA:1c00bfdf +76934202ns 1430329 1c003718 00064603 lbu x12, 0(x12) x12=00000017 x12:1c00bed7 PA:1c00bed7 +76934242ns 1430331 1c00371c 00c68f63 beq x13, x12, 30 x13:00000017 x12:00000017 +76934303ns 1430334 1c00373a 00158593 addi x11, x11, 1 x11=00000018 x11:00000017 +76934323ns 1430335 1c00373c fcf598e3 bne x11, x15, -48 x11:00000018 x15:00000100 +76934384ns 1430338 1c00370c 00b50733 add x14, x10, x11 x14=1c00bfe0 x10:1c00bfc8 x11:00000018 +76934404ns 1430339 1c003710 00b80633 add x12, x16, x11 x12=1c00bed8 x16:1c00bec0 x11:00000018 +76934424ns 1430340 1c003714 00074683 lbu x13, 0(x14) x13=00000018 x14:1c00bfe0 PA:1c00bfe0 +76934444ns 1430341 1c003718 00064603 lbu x12, 0(x12) x12=00000018 x12:1c00bed8 PA:1c00bed8 +76934485ns 1430343 1c00371c 00c68f63 beq x13, x12, 30 x13:00000018 x12:00000018 +76934545ns 1430346 1c00373a 00158593 addi x11, x11, 1 x11=00000019 x11:00000018 +76934565ns 1430347 1c00373c fcf598e3 bne x11, x15, -48 x11:00000019 x15:00000100 +76934626ns 1430350 1c00370c 00b50733 add x14, x10, x11 x14=1c00bfe1 x10:1c00bfc8 x11:00000019 +76934646ns 1430351 1c003710 00b80633 add x12, x16, x11 x12=1c00bed9 x16:1c00bec0 x11:00000019 +76934666ns 1430352 1c003714 00074683 lbu x13, 0(x14) x13=00000019 x14:1c00bfe1 PA:1c00bfe1 +76934687ns 1430353 1c003718 00064603 lbu x12, 0(x12) x12=00000019 x12:1c00bed9 PA:1c00bed9 +76934727ns 1430355 1c00371c 00c68f63 beq x13, x12, 30 x13:00000019 x12:00000019 +76934788ns 1430358 1c00373a 00158593 addi x11, x11, 1 x11=0000001a x11:00000019 +76934808ns 1430359 1c00373c fcf598e3 bne x11, x15, -48 x11:0000001a x15:00000100 +76934868ns 1430362 1c00370c 00b50733 add x14, x10, x11 x14=1c00bfe2 x10:1c00bfc8 x11:0000001a +76934889ns 1430363 1c003710 00b80633 add x12, x16, x11 x12=1c00beda x16:1c00bec0 x11:0000001a +76934909ns 1430364 1c003714 00074683 lbu x13, 0(x14) x13=0000001a x14:1c00bfe2 PA:1c00bfe2 +76934929ns 1430365 1c003718 00064603 lbu x12, 0(x12) x12=0000001a x12:1c00beda PA:1c00beda +76934969ns 1430367 1c00371c 00c68f63 beq x13, x12, 30 x13:0000001a x12:0000001a +76935030ns 1430370 1c00373a 00158593 addi x11, x11, 1 x11=0000001b x11:0000001a +76935050ns 1430371 1c00373c fcf598e3 bne x11, x15, -48 x11:0000001b x15:00000100 +76935111ns 1430374 1c00370c 00b50733 add x14, x10, x11 x14=1c00bfe3 x10:1c00bfc8 x11:0000001b +76935131ns 1430375 1c003710 00b80633 add x12, x16, x11 x12=1c00bedb x16:1c00bec0 x11:0000001b +76935151ns 1430376 1c003714 00074683 lbu x13, 0(x14) x13=0000001b x14:1c00bfe3 PA:1c00bfe3 +76935171ns 1430377 1c003718 00064603 lbu x12, 0(x12) x12=0000001b x12:1c00bedb PA:1c00bedb +76935212ns 1430379 1c00371c 00c68f63 beq x13, x12, 30 x13:0000001b x12:0000001b +76935272ns 1430382 1c00373a 00158593 addi x11, x11, 1 x11=0000001c x11:0000001b +76935292ns 1430383 1c00373c fcf598e3 bne x11, x15, -48 x11:0000001c x15:00000100 +76935353ns 1430386 1c00370c 00b50733 add x14, x10, x11 x14=1c00bfe4 x10:1c00bfc8 x11:0000001c +76935373ns 1430387 1c003710 00b80633 add x12, x16, x11 x12=1c00bedc x16:1c00bec0 x11:0000001c +76935393ns 1430388 1c003714 00074683 lbu x13, 0(x14) x13=0000001c x14:1c00bfe4 PA:1c00bfe4 +76935414ns 1430389 1c003718 00064603 lbu x12, 0(x12) x12=0000001c x12:1c00bedc PA:1c00bedc +76935454ns 1430391 1c00371c 00c68f63 beq x13, x12, 30 x13:0000001c x12:0000001c +76935515ns 1430394 1c00373a 00158593 addi x11, x11, 1 x11=0000001d x11:0000001c +76935535ns 1430395 1c00373c fcf598e3 bne x11, x15, -48 x11:0000001d x15:00000100 +76935595ns 1430398 1c00370c 00b50733 add x14, x10, x11 x14=1c00bfe5 x10:1c00bfc8 x11:0000001d +76935615ns 1430399 1c003710 00b80633 add x12, x16, x11 x12=1c00bedd x16:1c00bec0 x11:0000001d +76935636ns 1430400 1c003714 00074683 lbu x13, 0(x14) x13=0000001d x14:1c00bfe5 PA:1c00bfe5 +76935656ns 1430401 1c003718 00064603 lbu x12, 0(x12) x12=0000001d x12:1c00bedd PA:1c00bedd +76935696ns 1430403 1c00371c 00c68f63 beq x13, x12, 30 x13:0000001d x12:0000001d +76935757ns 1430406 1c00373a 00158593 addi x11, x11, 1 x11=0000001e x11:0000001d +76935777ns 1430407 1c00373c fcf598e3 bne x11, x15, -48 x11:0000001e x15:00000100 +76935838ns 1430410 1c00370c 00b50733 add x14, x10, x11 x14=1c00bfe6 x10:1c00bfc8 x11:0000001e +76935858ns 1430411 1c003710 00b80633 add x12, x16, x11 x12=1c00bede x16:1c00bec0 x11:0000001e +76935878ns 1430412 1c003714 00074683 lbu x13, 0(x14) x13=0000001e x14:1c00bfe6 PA:1c00bfe6 +76935898ns 1430413 1c003718 00064603 lbu x12, 0(x12) x12=0000001e x12:1c00bede PA:1c00bede +76935939ns 1430415 1c00371c 00c68f63 beq x13, x12, 30 x13:0000001e x12:0000001e +76935999ns 1430418 1c00373a 00158593 addi x11, x11, 1 x11=0000001f x11:0000001e +76936019ns 1430419 1c00373c fcf598e3 bne x11, x15, -48 x11:0000001f x15:00000100 +76936080ns 1430422 1c00370c 00b50733 add x14, x10, x11 x14=1c00bfe7 x10:1c00bfc8 x11:0000001f +76936100ns 1430423 1c003710 00b80633 add x12, x16, x11 x12=1c00bedf x16:1c00bec0 x11:0000001f +76936120ns 1430424 1c003714 00074683 lbu x13, 0(x14) x13=0000001f x14:1c00bfe7 PA:1c00bfe7 +76936140ns 1430425 1c003718 00064603 lbu x12, 0(x12) x12=0000001f x12:1c00bedf PA:1c00bedf +76936181ns 1430427 1c00371c 00c68f63 beq x13, x12, 30 x13:0000001f x12:0000001f +76936241ns 1430430 1c00373a 00158593 addi x11, x11, 1 x11=00000020 x11:0000001f +76936262ns 1430431 1c00373c fcf598e3 bne x11, x15, -48 x11:00000020 x15:00000100 +76936322ns 1430434 1c00370c 00b50733 add x14, x10, x11 x14=1c00bfe8 x10:1c00bfc8 x11:00000020 +76936342ns 1430435 1c003710 00b80633 add x12, x16, x11 x12=1c00bee0 x16:1c00bec0 x11:00000020 +76936363ns 1430436 1c003714 00074683 lbu x13, 0(x14) x13=00000020 x14:1c00bfe8 PA:1c00bfe8 +76936383ns 1430437 1c003718 00064603 lbu x12, 0(x12) x12=00000020 x12:1c00bee0 PA:1c00bee0 +76936423ns 1430439 1c00371c 00c68f63 beq x13, x12, 30 x13:00000020 x12:00000020 +76936484ns 1430442 1c00373a 00158593 addi x11, x11, 1 x11=00000021 x11:00000020 +76936504ns 1430443 1c00373c fcf598e3 bne x11, x15, -48 x11:00000021 x15:00000100 +76936564ns 1430446 1c00370c 00b50733 add x14, x10, x11 x14=1c00bfe9 x10:1c00bfc8 x11:00000021 +76936585ns 1430447 1c003710 00b80633 add x12, x16, x11 x12=1c00bee1 x16:1c00bec0 x11:00000021 +76936605ns 1430448 1c003714 00074683 lbu x13, 0(x14) x13=00000021 x14:1c00bfe9 PA:1c00bfe9 +76936625ns 1430449 1c003718 00064603 lbu x12, 0(x12) x12=00000021 x12:1c00bee1 PA:1c00bee1 +76936665ns 1430451 1c00371c 00c68f63 beq x13, x12, 30 x13:00000021 x12:00000021 +76936726ns 1430454 1c00373a 00158593 addi x11, x11, 1 x11=00000022 x11:00000021 +76936746ns 1430455 1c00373c fcf598e3 bne x11, x15, -48 x11:00000022 x15:00000100 +76936807ns 1430458 1c00370c 00b50733 add x14, x10, x11 x14=1c00bfea x10:1c00bfc8 x11:00000022 +76936827ns 1430459 1c003710 00b80633 add x12, x16, x11 x12=1c00bee2 x16:1c00bec0 x11:00000022 +76936847ns 1430460 1c003714 00074683 lbu x13, 0(x14) x13=00000022 x14:1c00bfea PA:1c00bfea +76936867ns 1430461 1c003718 00064603 lbu x12, 0(x12) x12=00000022 x12:1c00bee2 PA:1c00bee2 +76936908ns 1430463 1c00371c 00c68f63 beq x13, x12, 30 x13:00000022 x12:00000022 +76936968ns 1430466 1c00373a 00158593 addi x11, x11, 1 x11=00000023 x11:00000022 +76936989ns 1430467 1c00373c fcf598e3 bne x11, x15, -48 x11:00000023 x15:00000100 +76937049ns 1430470 1c00370c 00b50733 add x14, x10, x11 x14=1c00bfeb x10:1c00bfc8 x11:00000023 +76937069ns 1430471 1c003710 00b80633 add x12, x16, x11 x12=1c00bee3 x16:1c00bec0 x11:00000023 +76937089ns 1430472 1c003714 00074683 lbu x13, 0(x14) x13=00000023 x14:1c00bfeb PA:1c00bfeb +76937110ns 1430473 1c003718 00064603 lbu x12, 0(x12) x12=00000023 x12:1c00bee3 PA:1c00bee3 +76937150ns 1430475 1c00371c 00c68f63 beq x13, x12, 30 x13:00000023 x12:00000023 +76937211ns 1430478 1c00373a 00158593 addi x11, x11, 1 x11=00000024 x11:00000023 +76937231ns 1430479 1c00373c fcf598e3 bne x11, x15, -48 x11:00000024 x15:00000100 +76937291ns 1430482 1c00370c 00b50733 add x14, x10, x11 x14=1c00bfec x10:1c00bfc8 x11:00000024 +76937312ns 1430483 1c003710 00b80633 add x12, x16, x11 x12=1c00bee4 x16:1c00bec0 x11:00000024 +76937332ns 1430484 1c003714 00074683 lbu x13, 0(x14) x13=00000024 x14:1c00bfec PA:1c00bfec +76937352ns 1430485 1c003718 00064603 lbu x12, 0(x12) x12=00000024 x12:1c00bee4 PA:1c00bee4 +76937392ns 1430487 1c00371c 00c68f63 beq x13, x12, 30 x13:00000024 x12:00000024 +76937453ns 1430490 1c00373a 00158593 addi x11, x11, 1 x11=00000025 x11:00000024 +76937473ns 1430491 1c00373c fcf598e3 bne x11, x15, -48 x11:00000025 x15:00000100 +76937534ns 1430494 1c00370c 00b50733 add x14, x10, x11 x14=1c00bfed x10:1c00bfc8 x11:00000025 +76937554ns 1430495 1c003710 00b80633 add x12, x16, x11 x12=1c00bee5 x16:1c00bec0 x11:00000025 +76937574ns 1430496 1c003714 00074683 lbu x13, 0(x14) x13=00000025 x14:1c00bfed PA:1c00bfed +76937594ns 1430497 1c003718 00064603 lbu x12, 0(x12) x12=00000025 x12:1c00bee5 PA:1c00bee5 +76937635ns 1430499 1c00371c 00c68f63 beq x13, x12, 30 x13:00000025 x12:00000025 +76937695ns 1430502 1c00373a 00158593 addi x11, x11, 1 x11=00000026 x11:00000025 +76937715ns 1430503 1c00373c fcf598e3 bne x11, x15, -48 x11:00000026 x15:00000100 +76937776ns 1430506 1c00370c 00b50733 add x14, x10, x11 x14=1c00bfee x10:1c00bfc8 x11:00000026 +76937796ns 1430507 1c003710 00b80633 add x12, x16, x11 x12=1c00bee6 x16:1c00bec0 x11:00000026 +76937816ns 1430508 1c003714 00074683 lbu x13, 0(x14) x13=00000026 x14:1c00bfee PA:1c00bfee +76937837ns 1430509 1c003718 00064603 lbu x12, 0(x12) x12=00000026 x12:1c00bee6 PA:1c00bee6 +76937877ns 1430511 1c00371c 00c68f63 beq x13, x12, 30 x13:00000026 x12:00000026 +76937938ns 1430514 1c00373a 00158593 addi x11, x11, 1 x11=00000027 x11:00000026 +76937958ns 1430515 1c00373c fcf598e3 bne x11, x15, -48 x11:00000027 x15:00000100 +76938018ns 1430518 1c00370c 00b50733 add x14, x10, x11 x14=1c00bfef x10:1c00bfc8 x11:00000027 +76938039ns 1430519 1c003710 00b80633 add x12, x16, x11 x12=1c00bee7 x16:1c00bec0 x11:00000027 +76938059ns 1430520 1c003714 00074683 lbu x13, 0(x14) x13=00000027 x14:1c00bfef PA:1c00bfef +76938079ns 1430521 1c003718 00064603 lbu x12, 0(x12) x12=00000027 x12:1c00bee7 PA:1c00bee7 +76938119ns 1430523 1c00371c 00c68f63 beq x13, x12, 30 x13:00000027 x12:00000027 +76938180ns 1430526 1c00373a 00158593 addi x11, x11, 1 x11=00000028 x11:00000027 +76938200ns 1430527 1c00373c fcf598e3 bne x11, x15, -48 x11:00000028 x15:00000100 +76938261ns 1430530 1c00370c 00b50733 add x14, x10, x11 x14=1c00bff0 x10:1c00bfc8 x11:00000028 +76938281ns 1430531 1c003710 00b80633 add x12, x16, x11 x12=1c00bee8 x16:1c00bec0 x11:00000028 +76938301ns 1430532 1c003714 00074683 lbu x13, 0(x14) x13=00000028 x14:1c00bff0 PA:1c00bff0 +76938321ns 1430533 1c003718 00064603 lbu x12, 0(x12) x12=00000028 x12:1c00bee8 PA:1c00bee8 +76938362ns 1430535 1c00371c 00c68f63 beq x13, x12, 30 x13:00000028 x12:00000028 +76938422ns 1430538 1c00373a 00158593 addi x11, x11, 1 x11=00000029 x11:00000028 +76938442ns 1430539 1c00373c fcf598e3 bne x11, x15, -48 x11:00000029 x15:00000100 +76938503ns 1430542 1c00370c 00b50733 add x14, x10, x11 x14=1c00bff1 x10:1c00bfc8 x11:00000029 +76938523ns 1430543 1c003710 00b80633 add x12, x16, x11 x12=1c00bee9 x16:1c00bec0 x11:00000029 +76938543ns 1430544 1c003714 00074683 lbu x13, 0(x14) x13=00000029 x14:1c00bff1 PA:1c00bff1 +76938563ns 1430545 1c003718 00064603 lbu x12, 0(x12) x12=00000029 x12:1c00bee9 PA:1c00bee9 +76938604ns 1430547 1c00371c 00c68f63 beq x13, x12, 30 x13:00000029 x12:00000029 +76938664ns 1430550 1c00373a 00158593 addi x11, x11, 1 x11=0000002a x11:00000029 +76938685ns 1430551 1c00373c fcf598e3 bne x11, x15, -48 x11:0000002a x15:00000100 +76938745ns 1430554 1c00370c 00b50733 add x14, x10, x11 x14=1c00bff2 x10:1c00bfc8 x11:0000002a +76938765ns 1430555 1c003710 00b80633 add x12, x16, x11 x12=1c00beea x16:1c00bec0 x11:0000002a +76938786ns 1430556 1c003714 00074683 lbu x13, 0(x14) x13=0000002a x14:1c00bff2 PA:1c00bff2 +76938806ns 1430557 1c003718 00064603 lbu x12, 0(x12) x12=0000002a x12:1c00beea PA:1c00beea +76938846ns 1430559 1c00371c 00c68f63 beq x13, x12, 30 x13:0000002a x12:0000002a +76938907ns 1430562 1c00373a 00158593 addi x11, x11, 1 x11=0000002b x11:0000002a +76938927ns 1430563 1c00373c fcf598e3 bne x11, x15, -48 x11:0000002b x15:00000100 +76938988ns 1430566 1c00370c 00b50733 add x14, x10, x11 x14=1c00bff3 x10:1c00bfc8 x11:0000002b +76939008ns 1430567 1c003710 00b80633 add x12, x16, x11 x12=1c00beeb x16:1c00bec0 x11:0000002b +76939028ns 1430568 1c003714 00074683 lbu x13, 0(x14) x13=0000002b x14:1c00bff3 PA:1c00bff3 +76939048ns 1430569 1c003718 00064603 lbu x12, 0(x12) x12=0000002b x12:1c00beeb PA:1c00beeb +76939088ns 1430571 1c00371c 00c68f63 beq x13, x12, 30 x13:0000002b x12:0000002b +76939149ns 1430574 1c00373a 00158593 addi x11, x11, 1 x11=0000002c x11:0000002b +76939169ns 1430575 1c00373c fcf598e3 bne x11, x15, -48 x11:0000002c x15:00000100 +76939230ns 1430578 1c00370c 00b50733 add x14, x10, x11 x14=1c00bff4 x10:1c00bfc8 x11:0000002c +76939250ns 1430579 1c003710 00b80633 add x12, x16, x11 x12=1c00beec x16:1c00bec0 x11:0000002c +76939270ns 1430580 1c003714 00074683 lbu x13, 0(x14) x13=0000002c x14:1c00bff4 PA:1c00bff4 +76939290ns 1430581 1c003718 00064603 lbu x12, 0(x12) x12=0000002c x12:1c00beec PA:1c00beec +76939331ns 1430583 1c00371c 00c68f63 beq x13, x12, 30 x13:0000002c x12:0000002c +76939391ns 1430586 1c00373a 00158593 addi x11, x11, 1 x11=0000002d x11:0000002c +76939412ns 1430587 1c00373c fcf598e3 bne x11, x15, -48 x11:0000002d x15:00000100 +76939472ns 1430590 1c00370c 00b50733 add x14, x10, x11 x14=1c00bff5 x10:1c00bfc8 x11:0000002d +76939492ns 1430591 1c003710 00b80633 add x12, x16, x11 x12=1c00beed x16:1c00bec0 x11:0000002d +76939513ns 1430592 1c003714 00074683 lbu x13, 0(x14) x13=0000002d x14:1c00bff5 PA:1c00bff5 +76939533ns 1430593 1c003718 00064603 lbu x12, 0(x12) x12=0000002d x12:1c00beed PA:1c00beed +76939573ns 1430595 1c00371c 00c68f63 beq x13, x12, 30 x13:0000002d x12:0000002d +76939634ns 1430598 1c00373a 00158593 addi x11, x11, 1 x11=0000002e x11:0000002d +76939654ns 1430599 1c00373c fcf598e3 bne x11, x15, -48 x11:0000002e x15:00000100 +76939714ns 1430602 1c00370c 00b50733 add x14, x10, x11 x14=1c00bff6 x10:1c00bfc8 x11:0000002e +76939735ns 1430603 1c003710 00b80633 add x12, x16, x11 x12=1c00beee x16:1c00bec0 x11:0000002e +76939755ns 1430604 1c003714 00074683 lbu x13, 0(x14) x13=0000002e x14:1c00bff6 PA:1c00bff6 +76939775ns 1430605 1c003718 00064603 lbu x12, 0(x12) x12=0000002e x12:1c00beee PA:1c00beee +76939815ns 1430607 1c00371c 00c68f63 beq x13, x12, 30 x13:0000002e x12:0000002e +76939876ns 1430610 1c00373a 00158593 addi x11, x11, 1 x11=0000002f x11:0000002e +76939896ns 1430611 1c00373c fcf598e3 bne x11, x15, -48 x11:0000002f x15:00000100 +76939957ns 1430614 1c00370c 00b50733 add x14, x10, x11 x14=1c00bff7 x10:1c00bfc8 x11:0000002f +76939977ns 1430615 1c003710 00b80633 add x12, x16, x11 x12=1c00beef x16:1c00bec0 x11:0000002f +76939997ns 1430616 1c003714 00074683 lbu x13, 0(x14) x13=0000002f x14:1c00bff7 PA:1c00bff7 +76940017ns 1430617 1c003718 00064603 lbu x12, 0(x12) x12=0000002f x12:1c00beef PA:1c00beef +76940058ns 1430619 1c00371c 00c68f63 beq x13, x12, 30 x13:0000002f x12:0000002f +76940118ns 1430622 1c00373a 00158593 addi x11, x11, 1 x11=00000030 x11:0000002f +76940138ns 1430623 1c00373c fcf598e3 bne x11, x15, -48 x11:00000030 x15:00000100 +76940199ns 1430626 1c00370c 00b50733 add x14, x10, x11 x14=1c00bff8 x10:1c00bfc8 x11:00000030 +76940219ns 1430627 1c003710 00b80633 add x12, x16, x11 x12=1c00bef0 x16:1c00bec0 x11:00000030 +76940239ns 1430628 1c003714 00074683 lbu x13, 0(x14) x13=00000030 x14:1c00bff8 PA:1c00bff8 +76940260ns 1430629 1c003718 00064603 lbu x12, 0(x12) x12=00000030 x12:1c00bef0 PA:1c00bef0 +76940300ns 1430631 1c00371c 00c68f63 beq x13, x12, 30 x13:00000030 x12:00000030 +76940361ns 1430634 1c00373a 00158593 addi x11, x11, 1 x11=00000031 x11:00000030 +76940381ns 1430635 1c00373c fcf598e3 bne x11, x15, -48 x11:00000031 x15:00000100 +76940441ns 1430638 1c00370c 00b50733 add x14, x10, x11 x14=1c00bff9 x10:1c00bfc8 x11:00000031 +76940462ns 1430639 1c003710 00b80633 add x12, x16, x11 x12=1c00bef1 x16:1c00bec0 x11:00000031 +76940482ns 1430640 1c003714 00074683 lbu x13, 0(x14) x13=00000031 x14:1c00bff9 PA:1c00bff9 +76940502ns 1430641 1c003718 00064603 lbu x12, 0(x12) x12=00000031 x12:1c00bef1 PA:1c00bef1 +76940542ns 1430643 1c00371c 00c68f63 beq x13, x12, 30 x13:00000031 x12:00000031 +76940603ns 1430646 1c00373a 00158593 addi x11, x11, 1 x11=00000032 x11:00000031 +76940623ns 1430647 1c00373c fcf598e3 bne x11, x15, -48 x11:00000032 x15:00000100 +76940684ns 1430650 1c00370c 00b50733 add x14, x10, x11 x14=1c00bffa x10:1c00bfc8 x11:00000032 +76940704ns 1430651 1c003710 00b80633 add x12, x16, x11 x12=1c00bef2 x16:1c00bec0 x11:00000032 +76940724ns 1430652 1c003714 00074683 lbu x13, 0(x14) x13=00000032 x14:1c00bffa PA:1c00bffa +76940744ns 1430653 1c003718 00064603 lbu x12, 0(x12) x12=00000032 x12:1c00bef2 PA:1c00bef2 +76940785ns 1430655 1c00371c 00c68f63 beq x13, x12, 30 x13:00000032 x12:00000032 +76940845ns 1430658 1c00373a 00158593 addi x11, x11, 1 x11=00000033 x11:00000032 +76940865ns 1430659 1c00373c fcf598e3 bne x11, x15, -48 x11:00000033 x15:00000100 +76940926ns 1430662 1c00370c 00b50733 add x14, x10, x11 x14=1c00bffb x10:1c00bfc8 x11:00000033 +76940946ns 1430663 1c003710 00b80633 add x12, x16, x11 x12=1c00bef3 x16:1c00bec0 x11:00000033 +76940966ns 1430664 1c003714 00074683 lbu x13, 0(x14) x13=00000033 x14:1c00bffb PA:1c00bffb +76940987ns 1430665 1c003718 00064603 lbu x12, 0(x12) x12=00000033 x12:1c00bef3 PA:1c00bef3 +76941027ns 1430667 1c00371c 00c68f63 beq x13, x12, 30 x13:00000033 x12:00000033 +76941087ns 1430670 1c00373a 00158593 addi x11, x11, 1 x11=00000034 x11:00000033 +76941108ns 1430671 1c00373c fcf598e3 bne x11, x15, -48 x11:00000034 x15:00000100 +76941168ns 1430674 1c00370c 00b50733 add x14, x10, x11 x14=1c00bffc x10:1c00bfc8 x11:00000034 +76941188ns 1430675 1c003710 00b80633 add x12, x16, x11 x12=1c00bef4 x16:1c00bec0 x11:00000034 +76941209ns 1430676 1c003714 00074683 lbu x13, 0(x14) x13=00000034 x14:1c00bffc PA:1c00bffc +76941229ns 1430677 1c003718 00064603 lbu x12, 0(x12) x12=00000034 x12:1c00bef4 PA:1c00bef4 +76941269ns 1430679 1c00371c 00c68f63 beq x13, x12, 30 x13:00000034 x12:00000034 +76941330ns 1430682 1c00373a 00158593 addi x11, x11, 1 x11=00000035 x11:00000034 +76941350ns 1430683 1c00373c fcf598e3 bne x11, x15, -48 x11:00000035 x15:00000100 +76941411ns 1430686 1c00370c 00b50733 add x14, x10, x11 x14=1c00bffd x10:1c00bfc8 x11:00000035 +76941431ns 1430687 1c003710 00b80633 add x12, x16, x11 x12=1c00bef5 x16:1c00bec0 x11:00000035 +76941451ns 1430688 1c003714 00074683 lbu x13, 0(x14) x13=00000035 x14:1c00bffd PA:1c00bffd +76941471ns 1430689 1c003718 00064603 lbu x12, 0(x12) x12=00000035 x12:1c00bef5 PA:1c00bef5 +76941512ns 1430691 1c00371c 00c68f63 beq x13, x12, 30 x13:00000035 x12:00000035 +76941572ns 1430694 1c00373a 00158593 addi x11, x11, 1 x11=00000036 x11:00000035 +76941592ns 1430695 1c00373c fcf598e3 bne x11, x15, -48 x11:00000036 x15:00000100 +76941653ns 1430698 1c00370c 00b50733 add x14, x10, x11 x14=1c00bffe x10:1c00bfc8 x11:00000036 +76941673ns 1430699 1c003710 00b80633 add x12, x16, x11 x12=1c00bef6 x16:1c00bec0 x11:00000036 +76941693ns 1430700 1c003714 00074683 lbu x13, 0(x14) x13=00000036 x14:1c00bffe PA:1c00bffe +76941713ns 1430701 1c003718 00064603 lbu x12, 0(x12) x12=00000036 x12:1c00bef6 PA:1c00bef6 +76941754ns 1430703 1c00371c 00c68f63 beq x13, x12, 30 x13:00000036 x12:00000036 +76941814ns 1430706 1c00373a 00158593 addi x11, x11, 1 x11=00000037 x11:00000036 +76941835ns 1430707 1c00373c fcf598e3 bne x11, x15, -48 x11:00000037 x15:00000100 +76941895ns 1430710 1c00370c 00b50733 add x14, x10, x11 x14=1c00bfff x10:1c00bfc8 x11:00000037 +76941915ns 1430711 1c003710 00b80633 add x12, x16, x11 x12=1c00bef7 x16:1c00bec0 x11:00000037 +76941936ns 1430712 1c003714 00074683 lbu x13, 0(x14) x13=00000037 x14:1c00bfff PA:1c00bfff +76941956ns 1430713 1c003718 00064603 lbu x12, 0(x12) x12=00000037 x12:1c00bef7 PA:1c00bef7 +76941996ns 1430715 1c00371c 00c68f63 beq x13, x12, 30 x13:00000037 x12:00000037 +76942057ns 1430718 1c00373a 00158593 addi x11, x11, 1 x11=00000038 x11:00000037 +76942077ns 1430719 1c00373c fcf598e3 bne x11, x15, -48 x11:00000038 x15:00000100 +76942137ns 1430722 1c00370c 00b50733 add x14, x10, x11 x14=1c00c000 x10:1c00bfc8 x11:00000038 +76942158ns 1430723 1c003710 00b80633 add x12, x16, x11 x12=1c00bef8 x16:1c00bec0 x11:00000038 +76942178ns 1430724 1c003714 00074683 lbu x13, 0(x14) x13=00000038 x14:1c00c000 PA:1c00c000 +76942198ns 1430725 1c003718 00064603 lbu x12, 0(x12) x12=00000038 x12:1c00bef8 PA:1c00bef8 +76942238ns 1430727 1c00371c 00c68f63 beq x13, x12, 30 x13:00000038 x12:00000038 +76942299ns 1430730 1c00373a 00158593 addi x11, x11, 1 x11=00000039 x11:00000038 +76942319ns 1430731 1c00373c fcf598e3 bne x11, x15, -48 x11:00000039 x15:00000100 +76942380ns 1430734 1c00370c 00b50733 add x14, x10, x11 x14=1c00c001 x10:1c00bfc8 x11:00000039 +76942400ns 1430735 1c003710 00b80633 add x12, x16, x11 x12=1c00bef9 x16:1c00bec0 x11:00000039 +76942420ns 1430736 1c003714 00074683 lbu x13, 0(x14) x13=00000039 x14:1c00c001 PA:1c00c001 +76942440ns 1430737 1c003718 00064603 lbu x12, 0(x12) x12=00000039 x12:1c00bef9 PA:1c00bef9 +76942481ns 1430739 1c00371c 00c68f63 beq x13, x12, 30 x13:00000039 x12:00000039 +76942541ns 1430742 1c00373a 00158593 addi x11, x11, 1 x11=0000003a x11:00000039 +76942562ns 1430743 1c00373c fcf598e3 bne x11, x15, -48 x11:0000003a x15:00000100 +76942622ns 1430746 1c00370c 00b50733 add x14, x10, x11 x14=1c00c002 x10:1c00bfc8 x11:0000003a +76942642ns 1430747 1c003710 00b80633 add x12, x16, x11 x12=1c00befa x16:1c00bec0 x11:0000003a +76942662ns 1430748 1c003714 00074683 lbu x13, 0(x14) x13=0000003a x14:1c00c002 PA:1c00c002 +76942683ns 1430749 1c003718 00064603 lbu x12, 0(x12) x12=0000003a x12:1c00befa PA:1c00befa +76942723ns 1430751 1c00371c 00c68f63 beq x13, x12, 30 x13:0000003a x12:0000003a +76942784ns 1430754 1c00373a 00158593 addi x11, x11, 1 x11=0000003b x11:0000003a +76942804ns 1430755 1c00373c fcf598e3 bne x11, x15, -48 x11:0000003b x15:00000100 +76942864ns 1430758 1c00370c 00b50733 add x14, x10, x11 x14=1c00c003 x10:1c00bfc8 x11:0000003b +76942885ns 1430759 1c003710 00b80633 add x12, x16, x11 x12=1c00befb x16:1c00bec0 x11:0000003b +76942905ns 1430760 1c003714 00074683 lbu x13, 0(x14) x13=0000003b x14:1c00c003 PA:1c00c003 +76942925ns 1430761 1c003718 00064603 lbu x12, 0(x12) x12=0000003b x12:1c00befb PA:1c00befb +76942965ns 1430763 1c00371c 00c68f63 beq x13, x12, 30 x13:0000003b x12:0000003b +76943026ns 1430766 1c00373a 00158593 addi x11, x11, 1 x11=0000003c x11:0000003b +76943046ns 1430767 1c00373c fcf598e3 bne x11, x15, -48 x11:0000003c x15:00000100 +76943107ns 1430770 1c00370c 00b50733 add x14, x10, x11 x14=1c00c004 x10:1c00bfc8 x11:0000003c +76943127ns 1430771 1c003710 00b80633 add x12, x16, x11 x12=1c00befc x16:1c00bec0 x11:0000003c +76943147ns 1430772 1c003714 00074683 lbu x13, 0(x14) x13=0000003c x14:1c00c004 PA:1c00c004 +76943167ns 1430773 1c003718 00064603 lbu x12, 0(x12) x12=0000003c x12:1c00befc PA:1c00befc +76943208ns 1430775 1c00371c 00c68f63 beq x13, x12, 30 x13:0000003c x12:0000003c +76943268ns 1430778 1c00373a 00158593 addi x11, x11, 1 x11=0000003d x11:0000003c +76943288ns 1430779 1c00373c fcf598e3 bne x11, x15, -48 x11:0000003d x15:00000100 +76943349ns 1430782 1c00370c 00b50733 add x14, x10, x11 x14=1c00c005 x10:1c00bfc8 x11:0000003d +76943369ns 1430783 1c003710 00b80633 add x12, x16, x11 x12=1c00befd x16:1c00bec0 x11:0000003d +76943389ns 1430784 1c003714 00074683 lbu x13, 0(x14) x13=0000003d x14:1c00c005 PA:1c00c005 +76943410ns 1430785 1c003718 00064603 lbu x12, 0(x12) x12=0000003d x12:1c00befd PA:1c00befd +76943450ns 1430787 1c00371c 00c68f63 beq x13, x12, 30 x13:0000003d x12:0000003d +76943511ns 1430790 1c00373a 00158593 addi x11, x11, 1 x11=0000003e x11:0000003d +76943531ns 1430791 1c00373c fcf598e3 bne x11, x15, -48 x11:0000003e x15:00000100 +76943591ns 1430794 1c00370c 00b50733 add x14, x10, x11 x14=1c00c006 x10:1c00bfc8 x11:0000003e +76943611ns 1430795 1c003710 00b80633 add x12, x16, x11 x12=1c00befe x16:1c00bec0 x11:0000003e +76943632ns 1430796 1c003714 00074683 lbu x13, 0(x14) x13=0000003e x14:1c00c006 PA:1c00c006 +76943652ns 1430797 1c003718 00064603 lbu x12, 0(x12) x12=0000003e x12:1c00befe PA:1c00befe +76943692ns 1430799 1c00371c 00c68f63 beq x13, x12, 30 x13:0000003e x12:0000003e +76943753ns 1430802 1c00373a 00158593 addi x11, x11, 1 x11=0000003f x11:0000003e +76943773ns 1430803 1c00373c fcf598e3 bne x11, x15, -48 x11:0000003f x15:00000100 +76943834ns 1430806 1c00370c 00b50733 add x14, x10, x11 x14=1c00c007 x10:1c00bfc8 x11:0000003f +76943854ns 1430807 1c003710 00b80633 add x12, x16, x11 x12=1c00beff x16:1c00bec0 x11:0000003f +76943874ns 1430808 1c003714 00074683 lbu x13, 0(x14) x13=0000003f x14:1c00c007 PA:1c00c007 +76943894ns 1430809 1c003718 00064603 lbu x12, 0(x12) x12=0000003f x12:1c00beff PA:1c00beff +76943935ns 1430811 1c00371c 00c68f63 beq x13, x12, 30 x13:0000003f x12:0000003f +76943995ns 1430814 1c00373a 00158593 addi x11, x11, 1 x11=00000040 x11:0000003f +76944015ns 1430815 1c00373c fcf598e3 bne x11, x15, -48 x11:00000040 x15:00000100 +76944076ns 1430818 1c00370c 00b50733 add x14, x10, x11 x14=1c00c008 x10:1c00bfc8 x11:00000040 +76944096ns 1430819 1c003710 00b80633 add x12, x16, x11 x12=1c00bf00 x16:1c00bec0 x11:00000040 +76944116ns 1430820 1c003714 00074683 lbu x13, 0(x14) x13=00000040 x14:1c00c008 PA:1c00c008 +76944136ns 1430821 1c003718 00064603 lbu x12, 0(x12) x12=00000040 x12:1c00bf00 PA:1c00bf00 +76944177ns 1430823 1c00371c 00c68f63 beq x13, x12, 30 x13:00000040 x12:00000040 +76944237ns 1430826 1c00373a 00158593 addi x11, x11, 1 x11=00000041 x11:00000040 +76944258ns 1430827 1c00373c fcf598e3 bne x11, x15, -48 x11:00000041 x15:00000100 +76944318ns 1430830 1c00370c 00b50733 add x14, x10, x11 x14=1c00c009 x10:1c00bfc8 x11:00000041 +76944338ns 1430831 1c003710 00b80633 add x12, x16, x11 x12=1c00bf01 x16:1c00bec0 x11:00000041 +76944359ns 1430832 1c003714 00074683 lbu x13, 0(x14) x13=00000041 x14:1c00c009 PA:1c00c009 +76944379ns 1430833 1c003718 00064603 lbu x12, 0(x12) x12=00000041 x12:1c00bf01 PA:1c00bf01 +76944419ns 1430835 1c00371c 00c68f63 beq x13, x12, 30 x13:00000041 x12:00000041 +76944480ns 1430838 1c00373a 00158593 addi x11, x11, 1 x11=00000042 x11:00000041 +76944500ns 1430839 1c00373c fcf598e3 bne x11, x15, -48 x11:00000042 x15:00000100 +76944561ns 1430842 1c00370c 00b50733 add x14, x10, x11 x14=1c00c00a x10:1c00bfc8 x11:00000042 +76944581ns 1430843 1c003710 00b80633 add x12, x16, x11 x12=1c00bf02 x16:1c00bec0 x11:00000042 +76944601ns 1430844 1c003714 00074683 lbu x13, 0(x14) x13=00000042 x14:1c00c00a PA:1c00c00a +76944621ns 1430845 1c003718 00064603 lbu x12, 0(x12) x12=00000042 x12:1c00bf02 PA:1c00bf02 +76944661ns 1430847 1c00371c 00c68f63 beq x13, x12, 30 x13:00000042 x12:00000042 +76944722ns 1430850 1c00373a 00158593 addi x11, x11, 1 x11=00000043 x11:00000042 +76944742ns 1430851 1c00373c fcf598e3 bne x11, x15, -48 x11:00000043 x15:00000100 +76944803ns 1430854 1c00370c 00b50733 add x14, x10, x11 x14=1c00c00b x10:1c00bfc8 x11:00000043 +76944823ns 1430855 1c003710 00b80633 add x12, x16, x11 x12=1c00bf03 x16:1c00bec0 x11:00000043 +76944843ns 1430856 1c003714 00074683 lbu x13, 0(x14) x13=00000043 x14:1c00c00b PA:1c00c00b +76944863ns 1430857 1c003718 00064603 lbu x12, 0(x12) x12=00000043 x12:1c00bf03 PA:1c00bf03 +76944904ns 1430859 1c00371c 00c68f63 beq x13, x12, 30 x13:00000043 x12:00000043 +76944964ns 1430862 1c00373a 00158593 addi x11, x11, 1 x11=00000044 x11:00000043 +76944985ns 1430863 1c00373c fcf598e3 bne x11, x15, -48 x11:00000044 x15:00000100 +76945045ns 1430866 1c00370c 00b50733 add x14, x10, x11 x14=1c00c00c x10:1c00bfc8 x11:00000044 +76945065ns 1430867 1c003710 00b80633 add x12, x16, x11 x12=1c00bf04 x16:1c00bec0 x11:00000044 +76945086ns 1430868 1c003714 00074683 lbu x13, 0(x14) x13=00000044 x14:1c00c00c PA:1c00c00c +76945106ns 1430869 1c003718 00064603 lbu x12, 0(x12) x12=00000044 x12:1c00bf04 PA:1c00bf04 +76945146ns 1430871 1c00371c 00c68f63 beq x13, x12, 30 x13:00000044 x12:00000044 +76945207ns 1430874 1c00373a 00158593 addi x11, x11, 1 x11=00000045 x11:00000044 +76945227ns 1430875 1c00373c fcf598e3 bne x11, x15, -48 x11:00000045 x15:00000100 +76945287ns 1430878 1c00370c 00b50733 add x14, x10, x11 x14=1c00c00d x10:1c00bfc8 x11:00000045 +76945308ns 1430879 1c003710 00b80633 add x12, x16, x11 x12=1c00bf05 x16:1c00bec0 x11:00000045 +76945328ns 1430880 1c003714 00074683 lbu x13, 0(x14) x13=00000045 x14:1c00c00d PA:1c00c00d +76945348ns 1430881 1c003718 00064603 lbu x12, 0(x12) x12=00000045 x12:1c00bf05 PA:1c00bf05 +76945388ns 1430883 1c00371c 00c68f63 beq x13, x12, 30 x13:00000045 x12:00000045 +76945449ns 1430886 1c00373a 00158593 addi x11, x11, 1 x11=00000046 x11:00000045 +76945469ns 1430887 1c00373c fcf598e3 bne x11, x15, -48 x11:00000046 x15:00000100 +76945530ns 1430890 1c00370c 00b50733 add x14, x10, x11 x14=1c00c00e x10:1c00bfc8 x11:00000046 +76945550ns 1430891 1c003710 00b80633 add x12, x16, x11 x12=1c00bf06 x16:1c00bec0 x11:00000046 +76945570ns 1430892 1c003714 00074683 lbu x13, 0(x14) x13=00000046 x14:1c00c00e PA:1c00c00e +76945590ns 1430893 1c003718 00064603 lbu x12, 0(x12) x12=00000046 x12:1c00bf06 PA:1c00bf06 +76945631ns 1430895 1c00371c 00c68f63 beq x13, x12, 30 x13:00000046 x12:00000046 +76945691ns 1430898 1c00373a 00158593 addi x11, x11, 1 x11=00000047 x11:00000046 +76945711ns 1430899 1c00373c fcf598e3 bne x11, x15, -48 x11:00000047 x15:00000100 +76945772ns 1430902 1c00370c 00b50733 add x14, x10, x11 x14=1c00c00f x10:1c00bfc8 x11:00000047 +76945792ns 1430903 1c003710 00b80633 add x12, x16, x11 x12=1c00bf07 x16:1c00bec0 x11:00000047 +76945812ns 1430904 1c003714 00074683 lbu x13, 0(x14) x13=00000047 x14:1c00c00f PA:1c00c00f +76945833ns 1430905 1c003718 00064603 lbu x12, 0(x12) x12=00000047 x12:1c00bf07 PA:1c00bf07 +76945873ns 1430907 1c00371c 00c68f63 beq x13, x12, 30 x13:00000047 x12:00000047 +76945934ns 1430910 1c00373a 00158593 addi x11, x11, 1 x11=00000048 x11:00000047 +76945954ns 1430911 1c00373c fcf598e3 bne x11, x15, -48 x11:00000048 x15:00000100 +76946014ns 1430914 1c00370c 00b50733 add x14, x10, x11 x14=1c00c010 x10:1c00bfc8 x11:00000048 +76946035ns 1430915 1c003710 00b80633 add x12, x16, x11 x12=1c00bf08 x16:1c00bec0 x11:00000048 +76946055ns 1430916 1c003714 00074683 lbu x13, 0(x14) x13=00000048 x14:1c00c010 PA:1c00c010 +76946075ns 1430917 1c003718 00064603 lbu x12, 0(x12) x12=00000048 x12:1c00bf08 PA:1c00bf08 +76946115ns 1430919 1c00371c 00c68f63 beq x13, x12, 30 x13:00000048 x12:00000048 +76946176ns 1430922 1c00373a 00158593 addi x11, x11, 1 x11=00000049 x11:00000048 +76946196ns 1430923 1c00373c fcf598e3 bne x11, x15, -48 x11:00000049 x15:00000100 +76946257ns 1430926 1c00370c 00b50733 add x14, x10, x11 x14=1c00c011 x10:1c00bfc8 x11:00000049 +76946277ns 1430927 1c003710 00b80633 add x12, x16, x11 x12=1c00bf09 x16:1c00bec0 x11:00000049 +76946297ns 1430928 1c003714 00074683 lbu x13, 0(x14) x13=00000049 x14:1c00c011 PA:1c00c011 +76946317ns 1430929 1c003718 00064603 lbu x12, 0(x12) x12=00000049 x12:1c00bf09 PA:1c00bf09 +76946358ns 1430931 1c00371c 00c68f63 beq x13, x12, 30 x13:00000049 x12:00000049 +76946418ns 1430934 1c00373a 00158593 addi x11, x11, 1 x11=0000004a x11:00000049 +76946438ns 1430935 1c00373c fcf598e3 bne x11, x15, -48 x11:0000004a x15:00000100 +76946499ns 1430938 1c00370c 00b50733 add x14, x10, x11 x14=1c00c012 x10:1c00bfc8 x11:0000004a +76946519ns 1430939 1c003710 00b80633 add x12, x16, x11 x12=1c00bf0a x16:1c00bec0 x11:0000004a +76946539ns 1430940 1c003714 00074683 lbu x13, 0(x14) x13=0000004a x14:1c00c012 PA:1c00c012 +76946560ns 1430941 1c003718 00064603 lbu x12, 0(x12) x12=0000004a x12:1c00bf0a PA:1c00bf0a +76946600ns 1430943 1c00371c 00c68f63 beq x13, x12, 30 x13:0000004a x12:0000004a +76946660ns 1430946 1c00373a 00158593 addi x11, x11, 1 x11=0000004b x11:0000004a +76946681ns 1430947 1c00373c fcf598e3 bne x11, x15, -48 x11:0000004b x15:00000100 +76946741ns 1430950 1c00370c 00b50733 add x14, x10, x11 x14=1c00c013 x10:1c00bfc8 x11:0000004b +76946761ns 1430951 1c003710 00b80633 add x12, x16, x11 x12=1c00bf0b x16:1c00bec0 x11:0000004b +76946782ns 1430952 1c003714 00074683 lbu x13, 0(x14) x13=0000004b x14:1c00c013 PA:1c00c013 +76946802ns 1430953 1c003718 00064603 lbu x12, 0(x12) x12=0000004b x12:1c00bf0b PA:1c00bf0b +76946842ns 1430955 1c00371c 00c68f63 beq x13, x12, 30 x13:0000004b x12:0000004b +76946903ns 1430958 1c00373a 00158593 addi x11, x11, 1 x11=0000004c x11:0000004b +76946923ns 1430959 1c00373c fcf598e3 bne x11, x15, -48 x11:0000004c x15:00000100 +76946984ns 1430962 1c00370c 00b50733 add x14, x10, x11 x14=1c00c014 x10:1c00bfc8 x11:0000004c +76947004ns 1430963 1c003710 00b80633 add x12, x16, x11 x12=1c00bf0c x16:1c00bec0 x11:0000004c +76947024ns 1430964 1c003714 00074683 lbu x13, 0(x14) x13=0000004c x14:1c00c014 PA:1c00c014 +76947044ns 1430965 1c003718 00064603 lbu x12, 0(x12) x12=0000004c x12:1c00bf0c PA:1c00bf0c +76947085ns 1430967 1c00371c 00c68f63 beq x13, x12, 30 x13:0000004c x12:0000004c +76947145ns 1430970 1c00373a 00158593 addi x11, x11, 1 x11=0000004d x11:0000004c +76947165ns 1430971 1c00373c fcf598e3 bne x11, x15, -48 x11:0000004d x15:00000100 +76947226ns 1430974 1c00370c 00b50733 add x14, x10, x11 x14=1c00c015 x10:1c00bfc8 x11:0000004d +76947246ns 1430975 1c003710 00b80633 add x12, x16, x11 x12=1c00bf0d x16:1c00bec0 x11:0000004d +76947266ns 1430976 1c003714 00074683 lbu x13, 0(x14) x13=0000004d x14:1c00c015 PA:1c00c015 +76947286ns 1430977 1c003718 00064603 lbu x12, 0(x12) x12=0000004d x12:1c00bf0d PA:1c00bf0d +76947327ns 1430979 1c00371c 00c68f63 beq x13, x12, 30 x13:0000004d x12:0000004d +76947387ns 1430982 1c00373a 00158593 addi x11, x11, 1 x11=0000004e x11:0000004d +76947408ns 1430983 1c00373c fcf598e3 bne x11, x15, -48 x11:0000004e x15:00000100 +76947468ns 1430986 1c00370c 00b50733 add x14, x10, x11 x14=1c00c016 x10:1c00bfc8 x11:0000004e +76947488ns 1430987 1c003710 00b80633 add x12, x16, x11 x12=1c00bf0e x16:1c00bec0 x11:0000004e +76947509ns 1430988 1c003714 00074683 lbu x13, 0(x14) x13=0000004e x14:1c00c016 PA:1c00c016 +76947529ns 1430989 1c003718 00064603 lbu x12, 0(x12) x12=0000004e x12:1c00bf0e PA:1c00bf0e +76947569ns 1430991 1c00371c 00c68f63 beq x13, x12, 30 x13:0000004e x12:0000004e +76947630ns 1430994 1c00373a 00158593 addi x11, x11, 1 x11=0000004f x11:0000004e +76947650ns 1430995 1c00373c fcf598e3 bne x11, x15, -48 x11:0000004f x15:00000100 +76947710ns 1430998 1c00370c 00b50733 add x14, x10, x11 x14=1c00c017 x10:1c00bfc8 x11:0000004f +76947731ns 1430999 1c003710 00b80633 add x12, x16, x11 x12=1c00bf0f x16:1c00bec0 x11:0000004f +76947751ns 1431000 1c003714 00074683 lbu x13, 0(x14) x13=0000004f x14:1c00c017 PA:1c00c017 +76947771ns 1431001 1c003718 00064603 lbu x12, 0(x12) x12=0000004f x12:1c00bf0f PA:1c00bf0f +76947811ns 1431003 1c00371c 00c68f63 beq x13, x12, 30 x13:0000004f x12:0000004f +76947872ns 1431006 1c00373a 00158593 addi x11, x11, 1 x11=00000050 x11:0000004f +76947892ns 1431007 1c00373c fcf598e3 bne x11, x15, -48 x11:00000050 x15:00000100 +76947953ns 1431010 1c00370c 00b50733 add x14, x10, x11 x14=1c00c018 x10:1c00bfc8 x11:00000050 +76947973ns 1431011 1c003710 00b80633 add x12, x16, x11 x12=1c00bf10 x16:1c00bec0 x11:00000050 +76947993ns 1431012 1c003714 00074683 lbu x13, 0(x14) x13=00000050 x14:1c00c018 PA:1c00c018 +76948013ns 1431013 1c003718 00064603 lbu x12, 0(x12) x12=00000050 x12:1c00bf10 PA:1c00bf10 +76948054ns 1431015 1c00371c 00c68f63 beq x13, x12, 30 x13:00000050 x12:00000050 +76948114ns 1431018 1c00373a 00158593 addi x11, x11, 1 x11=00000051 x11:00000050 +76948135ns 1431019 1c00373c fcf598e3 bne x11, x15, -48 x11:00000051 x15:00000100 +76948195ns 1431022 1c00370c 00b50733 add x14, x10, x11 x14=1c00c019 x10:1c00bfc8 x11:00000051 +76948215ns 1431023 1c003710 00b80633 add x12, x16, x11 x12=1c00bf11 x16:1c00bec0 x11:00000051 +76948235ns 1431024 1c003714 00074683 lbu x13, 0(x14) x13=00000051 x14:1c00c019 PA:1c00c019 +76948256ns 1431025 1c003718 00064603 lbu x12, 0(x12) x12=00000051 x12:1c00bf11 PA:1c00bf11 +76948296ns 1431027 1c00371c 00c68f63 beq x13, x12, 30 x13:00000051 x12:00000051 +76948357ns 1431030 1c00373a 00158593 addi x11, x11, 1 x11=00000052 x11:00000051 +76948377ns 1431031 1c00373c fcf598e3 bne x11, x15, -48 x11:00000052 x15:00000100 +76948437ns 1431034 1c00370c 00b50733 add x14, x10, x11 x14=1c00c01a x10:1c00bfc8 x11:00000052 +76948458ns 1431035 1c003710 00b80633 add x12, x16, x11 x12=1c00bf12 x16:1c00bec0 x11:00000052 +76948478ns 1431036 1c003714 00074683 lbu x13, 0(x14) x13=00000052 x14:1c00c01a PA:1c00c01a +76948498ns 1431037 1c003718 00064603 lbu x12, 0(x12) x12=00000052 x12:1c00bf12 PA:1c00bf12 +76948538ns 1431039 1c00371c 00c68f63 beq x13, x12, 30 x13:00000052 x12:00000052 +76948599ns 1431042 1c00373a 00158593 addi x11, x11, 1 x11=00000053 x11:00000052 +76948619ns 1431043 1c00373c fcf598e3 bne x11, x15, -48 x11:00000053 x15:00000100 +76948680ns 1431046 1c00370c 00b50733 add x14, x10, x11 x14=1c00c01b x10:1c00bfc8 x11:00000053 +76948700ns 1431047 1c003710 00b80633 add x12, x16, x11 x12=1c00bf13 x16:1c00bec0 x11:00000053 +76948720ns 1431048 1c003714 00074683 lbu x13, 0(x14) x13=00000053 x14:1c00c01b PA:1c00c01b +76948740ns 1431049 1c003718 00064603 lbu x12, 0(x12) x12=00000053 x12:1c00bf13 PA:1c00bf13 +76948781ns 1431051 1c00371c 00c68f63 beq x13, x12, 30 x13:00000053 x12:00000053 +76948841ns 1431054 1c00373a 00158593 addi x11, x11, 1 x11=00000054 x11:00000053 +76948861ns 1431055 1c00373c fcf598e3 bne x11, x15, -48 x11:00000054 x15:00000100 +76948922ns 1431058 1c00370c 00b50733 add x14, x10, x11 x14=1c00c01c x10:1c00bfc8 x11:00000054 +76948942ns 1431059 1c003710 00b80633 add x12, x16, x11 x12=1c00bf14 x16:1c00bec0 x11:00000054 +76948962ns 1431060 1c003714 00074683 lbu x13, 0(x14) x13=00000054 x14:1c00c01c PA:1c00c01c +76948983ns 1431061 1c003718 00064603 lbu x12, 0(x12) x12=00000054 x12:1c00bf14 PA:1c00bf14 +76949023ns 1431063 1c00371c 00c68f63 beq x13, x12, 30 x13:00000054 x12:00000054 +76949084ns 1431066 1c00373a 00158593 addi x11, x11, 1 x11=00000055 x11:00000054 +76949104ns 1431067 1c00373c fcf598e3 bne x11, x15, -48 x11:00000055 x15:00000100 +76949164ns 1431070 1c00370c 00b50733 add x14, x10, x11 x14=1c00c01d x10:1c00bfc8 x11:00000055 +76949184ns 1431071 1c003710 00b80633 add x12, x16, x11 x12=1c00bf15 x16:1c00bec0 x11:00000055 +76949205ns 1431072 1c003714 00074683 lbu x13, 0(x14) x13=00000055 x14:1c00c01d PA:1c00c01d +76949225ns 1431073 1c003718 00064603 lbu x12, 0(x12) x12=00000055 x12:1c00bf15 PA:1c00bf15 +76949265ns 1431075 1c00371c 00c68f63 beq x13, x12, 30 x13:00000055 x12:00000055 +76949326ns 1431078 1c00373a 00158593 addi x11, x11, 1 x11=00000056 x11:00000055 +76949346ns 1431079 1c00373c fcf598e3 bne x11, x15, -48 x11:00000056 x15:00000100 +76949407ns 1431082 1c00370c 00b50733 add x14, x10, x11 x14=1c00c01e x10:1c00bfc8 x11:00000056 +76949427ns 1431083 1c003710 00b80633 add x12, x16, x11 x12=1c00bf16 x16:1c00bec0 x11:00000056 +76949447ns 1431084 1c003714 00074683 lbu x13, 0(x14) x13=00000056 x14:1c00c01e PA:1c00c01e +76949467ns 1431085 1c003718 00064603 lbu x12, 0(x12) x12=00000056 x12:1c00bf16 PA:1c00bf16 +76949508ns 1431087 1c00371c 00c68f63 beq x13, x12, 30 x13:00000056 x12:00000056 +76949568ns 1431090 1c00373a 00158593 addi x11, x11, 1 x11=00000057 x11:00000056 +76949588ns 1431091 1c00373c fcf598e3 bne x11, x15, -48 x11:00000057 x15:00000100 +76949649ns 1431094 1c00370c 00b50733 add x14, x10, x11 x14=1c00c01f x10:1c00bfc8 x11:00000057 +76949669ns 1431095 1c003710 00b80633 add x12, x16, x11 x12=1c00bf17 x16:1c00bec0 x11:00000057 +76949689ns 1431096 1c003714 00074683 lbu x13, 0(x14) x13=00000057 x14:1c00c01f PA:1c00c01f +76949709ns 1431097 1c003718 00064603 lbu x12, 0(x12) x12=00000057 x12:1c00bf17 PA:1c00bf17 +76949750ns 1431099 1c00371c 00c68f63 beq x13, x12, 30 x13:00000057 x12:00000057 +76949810ns 1431102 1c00373a 00158593 addi x11, x11, 1 x11=00000058 x11:00000057 +76949831ns 1431103 1c00373c fcf598e3 bne x11, x15, -48 x11:00000058 x15:00000100 +76949891ns 1431106 1c00370c 00b50733 add x14, x10, x11 x14=1c00c020 x10:1c00bfc8 x11:00000058 +76949911ns 1431107 1c003710 00b80633 add x12, x16, x11 x12=1c00bf18 x16:1c00bec0 x11:00000058 +76949932ns 1431108 1c003714 00074683 lbu x13, 0(x14) x13=00000058 x14:1c00c020 PA:1c00c020 +76949952ns 1431109 1c003718 00064603 lbu x12, 0(x12) x12=00000058 x12:1c00bf18 PA:1c00bf18 +76949992ns 1431111 1c00371c 00c68f63 beq x13, x12, 30 x13:00000058 x12:00000058 +76950053ns 1431114 1c00373a 00158593 addi x11, x11, 1 x11=00000059 x11:00000058 +76950073ns 1431115 1c00373c fcf598e3 bne x11, x15, -48 x11:00000059 x15:00000100 +76950134ns 1431118 1c00370c 00b50733 add x14, x10, x11 x14=1c00c021 x10:1c00bfc8 x11:00000059 +76950154ns 1431119 1c003710 00b80633 add x12, x16, x11 x12=1c00bf19 x16:1c00bec0 x11:00000059 +76950174ns 1431120 1c003714 00074683 lbu x13, 0(x14) x13=00000059 x14:1c00c021 PA:1c00c021 +76950194ns 1431121 1c003718 00064603 lbu x12, 0(x12) x12=00000059 x12:1c00bf19 PA:1c00bf19 +76950234ns 1431123 1c00371c 00c68f63 beq x13, x12, 30 x13:00000059 x12:00000059 +76950295ns 1431126 1c00373a 00158593 addi x11, x11, 1 x11=0000005a x11:00000059 +76950315ns 1431127 1c00373c fcf598e3 bne x11, x15, -48 x11:0000005a x15:00000100 +76950376ns 1431130 1c00370c 00b50733 add x14, x10, x11 x14=1c00c022 x10:1c00bfc8 x11:0000005a +76950396ns 1431131 1c003710 00b80633 add x12, x16, x11 x12=1c00bf1a x16:1c00bec0 x11:0000005a +76950416ns 1431132 1c003714 00074683 lbu x13, 0(x14) x13=0000005a x14:1c00c022 PA:1c00c022 +76950436ns 1431133 1c003718 00064603 lbu x12, 0(x12) x12=0000005a x12:1c00bf1a PA:1c00bf1a +76950477ns 1431135 1c00371c 00c68f63 beq x13, x12, 30 x13:0000005a x12:0000005a +76950537ns 1431138 1c00373a 00158593 addi x11, x11, 1 x11=0000005b x11:0000005a +76950558ns 1431139 1c00373c fcf598e3 bne x11, x15, -48 x11:0000005b x15:00000100 +76950618ns 1431142 1c00370c 00b50733 add x14, x10, x11 x14=1c00c023 x10:1c00bfc8 x11:0000005b +76950638ns 1431143 1c003710 00b80633 add x12, x16, x11 x12=1c00bf1b x16:1c00bec0 x11:0000005b +76950659ns 1431144 1c003714 00074683 lbu x13, 0(x14) x13=0000005b x14:1c00c023 PA:1c00c023 +76950679ns 1431145 1c003718 00064603 lbu x12, 0(x12) x12=0000005b x12:1c00bf1b PA:1c00bf1b +76950719ns 1431147 1c00371c 00c68f63 beq x13, x12, 30 x13:0000005b x12:0000005b +76950780ns 1431150 1c00373a 00158593 addi x11, x11, 1 x11=0000005c x11:0000005b +76950800ns 1431151 1c00373c fcf598e3 bne x11, x15, -48 x11:0000005c x15:00000100 +76950860ns 1431154 1c00370c 00b50733 add x14, x10, x11 x14=1c00c024 x10:1c00bfc8 x11:0000005c +76950881ns 1431155 1c003710 00b80633 add x12, x16, x11 x12=1c00bf1c x16:1c00bec0 x11:0000005c +76950901ns 1431156 1c003714 00074683 lbu x13, 0(x14) x13=0000005c x14:1c00c024 PA:1c00c024 +76950921ns 1431157 1c003718 00064603 lbu x12, 0(x12) x12=0000005c x12:1c00bf1c PA:1c00bf1c +76950961ns 1431159 1c00371c 00c68f63 beq x13, x12, 30 x13:0000005c x12:0000005c +76951022ns 1431162 1c00373a 00158593 addi x11, x11, 1 x11=0000005d x11:0000005c +76951042ns 1431163 1c00373c fcf598e3 bne x11, x15, -48 x11:0000005d x15:00000100 +76951103ns 1431166 1c00370c 00b50733 add x14, x10, x11 x14=1c00c025 x10:1c00bfc8 x11:0000005d +76951123ns 1431167 1c003710 00b80633 add x12, x16, x11 x12=1c00bf1d x16:1c00bec0 x11:0000005d +76951143ns 1431168 1c003714 00074683 lbu x13, 0(x14) x13=0000005d x14:1c00c025 PA:1c00c025 +76951163ns 1431169 1c003718 00064603 lbu x12, 0(x12) x12=0000005d x12:1c00bf1d PA:1c00bf1d +76951204ns 1431171 1c00371c 00c68f63 beq x13, x12, 30 x13:0000005d x12:0000005d +76951264ns 1431174 1c00373a 00158593 addi x11, x11, 1 x11=0000005e x11:0000005d +76951284ns 1431175 1c00373c fcf598e3 bne x11, x15, -48 x11:0000005e x15:00000100 +76951345ns 1431178 1c00370c 00b50733 add x14, x10, x11 x14=1c00c026 x10:1c00bfc8 x11:0000005e +76951365ns 1431179 1c003710 00b80633 add x12, x16, x11 x12=1c00bf1e x16:1c00bec0 x11:0000005e +76951385ns 1431180 1c003714 00074683 lbu x13, 0(x14) x13=0000005e x14:1c00c026 PA:1c00c026 +76951406ns 1431181 1c003718 00064603 lbu x12, 0(x12) x12=0000005e x12:1c00bf1e PA:1c00bf1e +76951446ns 1431183 1c00371c 00c68f63 beq x13, x12, 30 x13:0000005e x12:0000005e +76951507ns 1431186 1c00373a 00158593 addi x11, x11, 1 x11=0000005f x11:0000005e +76951527ns 1431187 1c00373c fcf598e3 bne x11, x15, -48 x11:0000005f x15:00000100 +76951587ns 1431190 1c00370c 00b50733 add x14, x10, x11 x14=1c00c027 x10:1c00bfc8 x11:0000005f +76951608ns 1431191 1c003710 00b80633 add x12, x16, x11 x12=1c00bf1f x16:1c00bec0 x11:0000005f +76951628ns 1431192 1c003714 00074683 lbu x13, 0(x14) x13=0000005f x14:1c00c027 PA:1c00c027 +76951648ns 1431193 1c003718 00064603 lbu x12, 0(x12) x12=0000005f x12:1c00bf1f PA:1c00bf1f +76951688ns 1431195 1c00371c 00c68f63 beq x13, x12, 30 x13:0000005f x12:0000005f +76951749ns 1431198 1c00373a 00158593 addi x11, x11, 1 x11=00000060 x11:0000005f +76951769ns 1431199 1c00373c fcf598e3 bne x11, x15, -48 x11:00000060 x15:00000100 +76951830ns 1431202 1c00370c 00b50733 add x14, x10, x11 x14=1c00c028 x10:1c00bfc8 x11:00000060 +76951850ns 1431203 1c003710 00b80633 add x12, x16, x11 x12=1c00bf20 x16:1c00bec0 x11:00000060 +76951870ns 1431204 1c003714 00074683 lbu x13, 0(x14) x13=00000060 x14:1c00c028 PA:1c00c028 +76951890ns 1431205 1c003718 00064603 lbu x12, 0(x12) x12=00000060 x12:1c00bf20 PA:1c00bf20 +76951931ns 1431207 1c00371c 00c68f63 beq x13, x12, 30 x13:00000060 x12:00000060 +76951991ns 1431210 1c00373a 00158593 addi x11, x11, 1 x11=00000061 x11:00000060 +76952011ns 1431211 1c00373c fcf598e3 bne x11, x15, -48 x11:00000061 x15:00000100 +76952072ns 1431214 1c00370c 00b50733 add x14, x10, x11 x14=1c00c029 x10:1c00bfc8 x11:00000061 +76952092ns 1431215 1c003710 00b80633 add x12, x16, x11 x12=1c00bf21 x16:1c00bec0 x11:00000061 +76952112ns 1431216 1c003714 00074683 lbu x13, 0(x14) x13=00000061 x14:1c00c029 PA:1c00c029 +76952133ns 1431217 1c003718 00064603 lbu x12, 0(x12) x12=00000061 x12:1c00bf21 PA:1c00bf21 +76952173ns 1431219 1c00371c 00c68f63 beq x13, x12, 30 x13:00000061 x12:00000061 +76952233ns 1431222 1c00373a 00158593 addi x11, x11, 1 x11=00000062 x11:00000061 +76952254ns 1431223 1c00373c fcf598e3 bne x11, x15, -48 x11:00000062 x15:00000100 +76952314ns 1431226 1c00370c 00b50733 add x14, x10, x11 x14=1c00c02a x10:1c00bfc8 x11:00000062 +76952334ns 1431227 1c003710 00b80633 add x12, x16, x11 x12=1c00bf22 x16:1c00bec0 x11:00000062 +76952355ns 1431228 1c003714 00074683 lbu x13, 0(x14) x13=00000062 x14:1c00c02a PA:1c00c02a +76952375ns 1431229 1c003718 00064603 lbu x12, 0(x12) x12=00000062 x12:1c00bf22 PA:1c00bf22 +76952415ns 1431231 1c00371c 00c68f63 beq x13, x12, 30 x13:00000062 x12:00000062 +76952476ns 1431234 1c00373a 00158593 addi x11, x11, 1 x11=00000063 x11:00000062 +76952496ns 1431235 1c00373c fcf598e3 bne x11, x15, -48 x11:00000063 x15:00000100 +76952557ns 1431238 1c00370c 00b50733 add x14, x10, x11 x14=1c00c02b x10:1c00bfc8 x11:00000063 +76952577ns 1431239 1c003710 00b80633 add x12, x16, x11 x12=1c00bf23 x16:1c00bec0 x11:00000063 +76952597ns 1431240 1c003714 00074683 lbu x13, 0(x14) x13=00000063 x14:1c00c02b PA:1c00c02b +76952617ns 1431241 1c003718 00064603 lbu x12, 0(x12) x12=00000063 x12:1c00bf23 PA:1c00bf23 +76952658ns 1431243 1c00371c 00c68f63 beq x13, x12, 30 x13:00000063 x12:00000063 +76952718ns 1431246 1c00373a 00158593 addi x11, x11, 1 x11=00000064 x11:00000063 +76952738ns 1431247 1c00373c fcf598e3 bne x11, x15, -48 x11:00000064 x15:00000100 +76952799ns 1431250 1c00370c 00b50733 add x14, x10, x11 x14=1c00c02c x10:1c00bfc8 x11:00000064 +76952819ns 1431251 1c003710 00b80633 add x12, x16, x11 x12=1c00bf24 x16:1c00bec0 x11:00000064 +76952839ns 1431252 1c003714 00074683 lbu x13, 0(x14) x13=00000064 x14:1c00c02c PA:1c00c02c +76952859ns 1431253 1c003718 00064603 lbu x12, 0(x12) x12=00000064 x12:1c00bf24 PA:1c00bf24 +76952900ns 1431255 1c00371c 00c68f63 beq x13, x12, 30 x13:00000064 x12:00000064 +76952960ns 1431258 1c00373a 00158593 addi x11, x11, 1 x11=00000065 x11:00000064 +76952981ns 1431259 1c00373c fcf598e3 bne x11, x15, -48 x11:00000065 x15:00000100 +76953041ns 1431262 1c00370c 00b50733 add x14, x10, x11 x14=1c00c02d x10:1c00bfc8 x11:00000065 +76953061ns 1431263 1c003710 00b80633 add x12, x16, x11 x12=1c00bf25 x16:1c00bec0 x11:00000065 +76953082ns 1431264 1c003714 00074683 lbu x13, 0(x14) x13=00000065 x14:1c00c02d PA:1c00c02d +76953102ns 1431265 1c003718 00064603 lbu x12, 0(x12) x12=00000065 x12:1c00bf25 PA:1c00bf25 +76953142ns 1431267 1c00371c 00c68f63 beq x13, x12, 30 x13:00000065 x12:00000065 +76953203ns 1431270 1c00373a 00158593 addi x11, x11, 1 x11=00000066 x11:00000065 +76953223ns 1431271 1c00373c fcf598e3 bne x11, x15, -48 x11:00000066 x15:00000100 +76953283ns 1431274 1c00370c 00b50733 add x14, x10, x11 x14=1c00c02e x10:1c00bfc8 x11:00000066 +76953304ns 1431275 1c003710 00b80633 add x12, x16, x11 x12=1c00bf26 x16:1c00bec0 x11:00000066 +76953324ns 1431276 1c003714 00074683 lbu x13, 0(x14) x13=00000066 x14:1c00c02e PA:1c00c02e +76953344ns 1431277 1c003718 00064603 lbu x12, 0(x12) x12=00000066 x12:1c00bf26 PA:1c00bf26 +76953384ns 1431279 1c00371c 00c68f63 beq x13, x12, 30 x13:00000066 x12:00000066 +76953445ns 1431282 1c00373a 00158593 addi x11, x11, 1 x11=00000067 x11:00000066 +76953465ns 1431283 1c00373c fcf598e3 bne x11, x15, -48 x11:00000067 x15:00000100 +76953526ns 1431286 1c00370c 00b50733 add x14, x10, x11 x14=1c00c02f x10:1c00bfc8 x11:00000067 +76953546ns 1431287 1c003710 00b80633 add x12, x16, x11 x12=1c00bf27 x16:1c00bec0 x11:00000067 +76953566ns 1431288 1c003714 00074683 lbu x13, 0(x14) x13=00000067 x14:1c00c02f PA:1c00c02f +76953586ns 1431289 1c003718 00064603 lbu x12, 0(x12) x12=00000067 x12:1c00bf27 PA:1c00bf27 +76953627ns 1431291 1c00371c 00c68f63 beq x13, x12, 30 x13:00000067 x12:00000067 +76953687ns 1431294 1c00373a 00158593 addi x11, x11, 1 x11=00000068 x11:00000067 +76953707ns 1431295 1c00373c fcf598e3 bne x11, x15, -48 x11:00000068 x15:00000100 +76953768ns 1431298 1c00370c 00b50733 add x14, x10, x11 x14=1c00c030 x10:1c00bfc8 x11:00000068 +76953788ns 1431299 1c003710 00b80633 add x12, x16, x11 x12=1c00bf28 x16:1c00bec0 x11:00000068 +76953808ns 1431300 1c003714 00074683 lbu x13, 0(x14) x13=00000068 x14:1c00c030 PA:1c00c030 +76953829ns 1431301 1c003718 00064603 lbu x12, 0(x12) x12=00000068 x12:1c00bf28 PA:1c00bf28 +76953869ns 1431303 1c00371c 00c68f63 beq x13, x12, 30 x13:00000068 x12:00000068 +76953930ns 1431306 1c00373a 00158593 addi x11, x11, 1 x11=00000069 x11:00000068 +76953950ns 1431307 1c00373c fcf598e3 bne x11, x15, -48 x11:00000069 x15:00000100 +76954010ns 1431310 1c00370c 00b50733 add x14, x10, x11 x14=1c00c031 x10:1c00bfc8 x11:00000069 +76954031ns 1431311 1c003710 00b80633 add x12, x16, x11 x12=1c00bf29 x16:1c00bec0 x11:00000069 +76954051ns 1431312 1c003714 00074683 lbu x13, 0(x14) x13=00000069 x14:1c00c031 PA:1c00c031 +76954071ns 1431313 1c003718 00064603 lbu x12, 0(x12) x12=00000069 x12:1c00bf29 PA:1c00bf29 +76954111ns 1431315 1c00371c 00c68f63 beq x13, x12, 30 x13:00000069 x12:00000069 +76954172ns 1431318 1c00373a 00158593 addi x11, x11, 1 x11=0000006a x11:00000069 +76954192ns 1431319 1c00373c fcf598e3 bne x11, x15, -48 x11:0000006a x15:00000100 +76954253ns 1431322 1c00370c 00b50733 add x14, x10, x11 x14=1c00c032 x10:1c00bfc8 x11:0000006a +76954273ns 1431323 1c003710 00b80633 add x12, x16, x11 x12=1c00bf2a x16:1c00bec0 x11:0000006a +76954293ns 1431324 1c003714 00074683 lbu x13, 0(x14) x13=0000006a x14:1c00c032 PA:1c00c032 +76954313ns 1431325 1c003718 00064603 lbu x12, 0(x12) x12=0000006a x12:1c00bf2a PA:1c00bf2a +76954354ns 1431327 1c00371c 00c68f63 beq x13, x12, 30 x13:0000006a x12:0000006a +76954414ns 1431330 1c00373a 00158593 addi x11, x11, 1 x11=0000006b x11:0000006a +76954434ns 1431331 1c00373c fcf598e3 bne x11, x15, -48 x11:0000006b x15:00000100 +76954495ns 1431334 1c00370c 00b50733 add x14, x10, x11 x14=1c00c033 x10:1c00bfc8 x11:0000006b +76954515ns 1431335 1c003710 00b80633 add x12, x16, x11 x12=1c00bf2b x16:1c00bec0 x11:0000006b +76954535ns 1431336 1c003714 00074683 lbu x13, 0(x14) x13=0000006b x14:1c00c033 PA:1c00c033 +76954556ns 1431337 1c003718 00064603 lbu x12, 0(x12) x12=0000006b x12:1c00bf2b PA:1c00bf2b +76954596ns 1431339 1c00371c 00c68f63 beq x13, x12, 30 x13:0000006b x12:0000006b +76954657ns 1431342 1c00373a 00158593 addi x11, x11, 1 x11=0000006c x11:0000006b +76954677ns 1431343 1c00373c fcf598e3 bne x11, x15, -48 x11:0000006c x15:00000100 +76954737ns 1431346 1c00370c 00b50733 add x14, x10, x11 x14=1c00c034 x10:1c00bfc8 x11:0000006c +76954757ns 1431347 1c003710 00b80633 add x12, x16, x11 x12=1c00bf2c x16:1c00bec0 x11:0000006c +76954778ns 1431348 1c003714 00074683 lbu x13, 0(x14) x13=0000006c x14:1c00c034 PA:1c00c034 +76954798ns 1431349 1c003718 00064603 lbu x12, 0(x12) x12=0000006c x12:1c00bf2c PA:1c00bf2c +76954838ns 1431351 1c00371c 00c68f63 beq x13, x12, 30 x13:0000006c x12:0000006c +76954899ns 1431354 1c00373a 00158593 addi x11, x11, 1 x11=0000006d x11:0000006c +76954919ns 1431355 1c00373c fcf598e3 bne x11, x15, -48 x11:0000006d x15:00000100 +76954980ns 1431358 1c00370c 00b50733 add x14, x10, x11 x14=1c00c035 x10:1c00bfc8 x11:0000006d +76955000ns 1431359 1c003710 00b80633 add x12, x16, x11 x12=1c00bf2d x16:1c00bec0 x11:0000006d +76955020ns 1431360 1c003714 00074683 lbu x13, 0(x14) x13=0000006d x14:1c00c035 PA:1c00c035 +76955040ns 1431361 1c003718 00064603 lbu x12, 0(x12) x12=0000006d x12:1c00bf2d PA:1c00bf2d +76955081ns 1431363 1c00371c 00c68f63 beq x13, x12, 30 x13:0000006d x12:0000006d +76955141ns 1431366 1c00373a 00158593 addi x11, x11, 1 x11=0000006e x11:0000006d +76955161ns 1431367 1c00373c fcf598e3 bne x11, x15, -48 x11:0000006e x15:00000100 +76955222ns 1431370 1c00370c 00b50733 add x14, x10, x11 x14=1c00c036 x10:1c00bfc8 x11:0000006e +76955242ns 1431371 1c003710 00b80633 add x12, x16, x11 x12=1c00bf2e x16:1c00bec0 x11:0000006e +76955262ns 1431372 1c003714 00074683 lbu x13, 0(x14) x13=0000006e x14:1c00c036 PA:1c00c036 +76955282ns 1431373 1c003718 00064603 lbu x12, 0(x12) x12=0000006e x12:1c00bf2e PA:1c00bf2e +76955323ns 1431375 1c00371c 00c68f63 beq x13, x12, 30 x13:0000006e x12:0000006e +76955383ns 1431378 1c00373a 00158593 addi x11, x11, 1 x11=0000006f x11:0000006e +76955404ns 1431379 1c00373c fcf598e3 bne x11, x15, -48 x11:0000006f x15:00000100 +76955464ns 1431382 1c00370c 00b50733 add x14, x10, x11 x14=1c00c037 x10:1c00bfc8 x11:0000006f +76955484ns 1431383 1c003710 00b80633 add x12, x16, x11 x12=1c00bf2f x16:1c00bec0 x11:0000006f +76955505ns 1431384 1c003714 00074683 lbu x13, 0(x14) x13=0000006f x14:1c00c037 PA:1c00c037 +76955525ns 1431385 1c003718 00064603 lbu x12, 0(x12) x12=0000006f x12:1c00bf2f PA:1c00bf2f +76955565ns 1431387 1c00371c 00c68f63 beq x13, x12, 30 x13:0000006f x12:0000006f +76955626ns 1431390 1c00373a 00158593 addi x11, x11, 1 x11=00000070 x11:0000006f +76955646ns 1431391 1c00373c fcf598e3 bne x11, x15, -48 x11:00000070 x15:00000100 +76955707ns 1431394 1c00370c 00b50733 add x14, x10, x11 x14=1c00c038 x10:1c00bfc8 x11:00000070 +76955727ns 1431395 1c003710 00b80633 add x12, x16, x11 x12=1c00bf30 x16:1c00bec0 x11:00000070 +76955747ns 1431396 1c003714 00074683 lbu x13, 0(x14) x13=00000070 x14:1c00c038 PA:1c00c038 +76955767ns 1431397 1c003718 00064603 lbu x12, 0(x12) x12=00000070 x12:1c00bf30 PA:1c00bf30 +76955807ns 1431399 1c00371c 00c68f63 beq x13, x12, 30 x13:00000070 x12:00000070 +76955868ns 1431402 1c00373a 00158593 addi x11, x11, 1 x11=00000071 x11:00000070 +76955888ns 1431403 1c00373c fcf598e3 bne x11, x15, -48 x11:00000071 x15:00000100 +76955949ns 1431406 1c00370c 00b50733 add x14, x10, x11 x14=1c00c039 x10:1c00bfc8 x11:00000071 +76955969ns 1431407 1c003710 00b80633 add x12, x16, x11 x12=1c00bf31 x16:1c00bec0 x11:00000071 +76955989ns 1431408 1c003714 00074683 lbu x13, 0(x14) x13=00000071 x14:1c00c039 PA:1c00c039 +76956009ns 1431409 1c003718 00064603 lbu x12, 0(x12) x12=00000071 x12:1c00bf31 PA:1c00bf31 +76956050ns 1431411 1c00371c 00c68f63 beq x13, x12, 30 x13:00000071 x12:00000071 +76956110ns 1431414 1c00373a 00158593 addi x11, x11, 1 x11=00000072 x11:00000071 +76956131ns 1431415 1c00373c fcf598e3 bne x11, x15, -48 x11:00000072 x15:00000100 +76956191ns 1431418 1c00370c 00b50733 add x14, x10, x11 x14=1c00c03a x10:1c00bfc8 x11:00000072 +76956211ns 1431419 1c003710 00b80633 add x12, x16, x11 x12=1c00bf32 x16:1c00bec0 x11:00000072 +76956231ns 1431420 1c003714 00074683 lbu x13, 0(x14) x13=00000072 x14:1c00c03a PA:1c00c03a +76956252ns 1431421 1c003718 00064603 lbu x12, 0(x12) x12=00000072 x12:1c00bf32 PA:1c00bf32 +76956292ns 1431423 1c00371c 00c68f63 beq x13, x12, 30 x13:00000072 x12:00000072 +76956353ns 1431426 1c00373a 00158593 addi x11, x11, 1 x11=00000073 x11:00000072 +76956373ns 1431427 1c00373c fcf598e3 bne x11, x15, -48 x11:00000073 x15:00000100 +76956433ns 1431430 1c00370c 00b50733 add x14, x10, x11 x14=1c00c03b x10:1c00bfc8 x11:00000073 +76956454ns 1431431 1c003710 00b80633 add x12, x16, x11 x12=1c00bf33 x16:1c00bec0 x11:00000073 +76956474ns 1431432 1c003714 00074683 lbu x13, 0(x14) x13=00000073 x14:1c00c03b PA:1c00c03b +76956494ns 1431433 1c003718 00064603 lbu x12, 0(x12) x12=00000073 x12:1c00bf33 PA:1c00bf33 +76956534ns 1431435 1c00371c 00c68f63 beq x13, x12, 30 x13:00000073 x12:00000073 +76956595ns 1431438 1c00373a 00158593 addi x11, x11, 1 x11=00000074 x11:00000073 +76956615ns 1431439 1c00373c fcf598e3 bne x11, x15, -48 x11:00000074 x15:00000100 +76956676ns 1431442 1c00370c 00b50733 add x14, x10, x11 x14=1c00c03c x10:1c00bfc8 x11:00000074 +76956696ns 1431443 1c003710 00b80633 add x12, x16, x11 x12=1c00bf34 x16:1c00bec0 x11:00000074 +76956716ns 1431444 1c003714 00074683 lbu x13, 0(x14) x13=00000074 x14:1c00c03c PA:1c00c03c +76956736ns 1431445 1c003718 00064603 lbu x12, 0(x12) x12=00000074 x12:1c00bf34 PA:1c00bf34 +76956777ns 1431447 1c00371c 00c68f63 beq x13, x12, 30 x13:00000074 x12:00000074 +76956837ns 1431450 1c00373a 00158593 addi x11, x11, 1 x11=00000075 x11:00000074 +76956857ns 1431451 1c00373c fcf598e3 bne x11, x15, -48 x11:00000075 x15:00000100 +76956918ns 1431454 1c00370c 00b50733 add x14, x10, x11 x14=1c00c03d x10:1c00bfc8 x11:00000075 +76956938ns 1431455 1c003710 00b80633 add x12, x16, x11 x12=1c00bf35 x16:1c00bec0 x11:00000075 +76956958ns 1431456 1c003714 00074683 lbu x13, 0(x14) x13=00000075 x14:1c00c03d PA:1c00c03d +76956979ns 1431457 1c003718 00064603 lbu x12, 0(x12) x12=00000075 x12:1c00bf35 PA:1c00bf35 +76957019ns 1431459 1c00371c 00c68f63 beq x13, x12, 30 x13:00000075 x12:00000075 +76957080ns 1431462 1c00373a 00158593 addi x11, x11, 1 x11=00000076 x11:00000075 +76957100ns 1431463 1c00373c fcf598e3 bne x11, x15, -48 x11:00000076 x15:00000100 +76957160ns 1431466 1c00370c 00b50733 add x14, x10, x11 x14=1c00c03e x10:1c00bfc8 x11:00000076 +76957181ns 1431467 1c003710 00b80633 add x12, x16, x11 x12=1c00bf36 x16:1c00bec0 x11:00000076 +76957201ns 1431468 1c003714 00074683 lbu x13, 0(x14) x13=00000076 x14:1c00c03e PA:1c00c03e +76957221ns 1431469 1c003718 00064603 lbu x12, 0(x12) x12=00000076 x12:1c00bf36 PA:1c00bf36 +76957261ns 1431471 1c00371c 00c68f63 beq x13, x12, 30 x13:00000076 x12:00000076 +76957322ns 1431474 1c00373a 00158593 addi x11, x11, 1 x11=00000077 x11:00000076 +76957342ns 1431475 1c00373c fcf598e3 bne x11, x15, -48 x11:00000077 x15:00000100 +76957403ns 1431478 1c00370c 00b50733 add x14, x10, x11 x14=1c00c03f x10:1c00bfc8 x11:00000077 +76957423ns 1431479 1c003710 00b80633 add x12, x16, x11 x12=1c00bf37 x16:1c00bec0 x11:00000077 +76957443ns 1431480 1c003714 00074683 lbu x13, 0(x14) x13=00000077 x14:1c00c03f PA:1c00c03f +76957463ns 1431481 1c003718 00064603 lbu x12, 0(x12) x12=00000077 x12:1c00bf37 PA:1c00bf37 +76957504ns 1431483 1c00371c 00c68f63 beq x13, x12, 30 x13:00000077 x12:00000077 +76957564ns 1431486 1c00373a 00158593 addi x11, x11, 1 x11=00000078 x11:00000077 +76957584ns 1431487 1c00373c fcf598e3 bne x11, x15, -48 x11:00000078 x15:00000100 +76957645ns 1431490 1c00370c 00b50733 add x14, x10, x11 x14=1c00c040 x10:1c00bfc8 x11:00000078 +76957665ns 1431491 1c003710 00b80633 add x12, x16, x11 x12=1c00bf38 x16:1c00bec0 x11:00000078 +76957685ns 1431492 1c003714 00074683 lbu x13, 0(x14) x13=00000078 x14:1c00c040 PA:1c00c040 +76957706ns 1431493 1c003718 00064603 lbu x12, 0(x12) x12=00000078 x12:1c00bf38 PA:1c00bf38 +76957746ns 1431495 1c00371c 00c68f63 beq x13, x12, 30 x13:00000078 x12:00000078 +76957806ns 1431498 1c00373a 00158593 addi x11, x11, 1 x11=00000079 x11:00000078 +76957827ns 1431499 1c00373c fcf598e3 bne x11, x15, -48 x11:00000079 x15:00000100 +76957887ns 1431502 1c00370c 00b50733 add x14, x10, x11 x14=1c00c041 x10:1c00bfc8 x11:00000079 +76957907ns 1431503 1c003710 00b80633 add x12, x16, x11 x12=1c00bf39 x16:1c00bec0 x11:00000079 +76957928ns 1431504 1c003714 00074683 lbu x13, 0(x14) x13=00000079 x14:1c00c041 PA:1c00c041 +76957948ns 1431505 1c003718 00064603 lbu x12, 0(x12) x12=00000079 x12:1c00bf39 PA:1c00bf39 +76957988ns 1431507 1c00371c 00c68f63 beq x13, x12, 30 x13:00000079 x12:00000079 +76958049ns 1431510 1c00373a 00158593 addi x11, x11, 1 x11=0000007a x11:00000079 +76958069ns 1431511 1c00373c fcf598e3 bne x11, x15, -48 x11:0000007a x15:00000100 +76958130ns 1431514 1c00370c 00b50733 add x14, x10, x11 x14=1c00c042 x10:1c00bfc8 x11:0000007a +76958150ns 1431515 1c003710 00b80633 add x12, x16, x11 x12=1c00bf3a x16:1c00bec0 x11:0000007a +76958170ns 1431516 1c003714 00074683 lbu x13, 0(x14) x13=0000007a x14:1c00c042 PA:1c00c042 +76958190ns 1431517 1c003718 00064603 lbu x12, 0(x12) x12=0000007a x12:1c00bf3a PA:1c00bf3a +76958231ns 1431519 1c00371c 00c68f63 beq x13, x12, 30 x13:0000007a x12:0000007a +76958291ns 1431522 1c00373a 00158593 addi x11, x11, 1 x11=0000007b x11:0000007a +76958311ns 1431523 1c00373c fcf598e3 bne x11, x15, -48 x11:0000007b x15:00000100 +76958372ns 1431526 1c00370c 00b50733 add x14, x10, x11 x14=1c00c043 x10:1c00bfc8 x11:0000007b +76958392ns 1431527 1c003710 00b80633 add x12, x16, x11 x12=1c00bf3b x16:1c00bec0 x11:0000007b +76958412ns 1431528 1c003714 00074683 lbu x13, 0(x14) x13=0000007b x14:1c00c043 PA:1c00c043 +76958432ns 1431529 1c003718 00064603 lbu x12, 0(x12) x12=0000007b x12:1c00bf3b PA:1c00bf3b +76958473ns 1431531 1c00371c 00c68f63 beq x13, x12, 30 x13:0000007b x12:0000007b +76958533ns 1431534 1c00373a 00158593 addi x11, x11, 1 x11=0000007c x11:0000007b +76958554ns 1431535 1c00373c fcf598e3 bne x11, x15, -48 x11:0000007c x15:00000100 +76958614ns 1431538 1c00370c 00b50733 add x14, x10, x11 x14=1c00c044 x10:1c00bfc8 x11:0000007c +76958634ns 1431539 1c003710 00b80633 add x12, x16, x11 x12=1c00bf3c x16:1c00bec0 x11:0000007c +76958655ns 1431540 1c003714 00074683 lbu x13, 0(x14) x13=0000007c x14:1c00c044 PA:1c00c044 +76958675ns 1431541 1c003718 00064603 lbu x12, 0(x12) x12=0000007c x12:1c00bf3c PA:1c00bf3c +76958715ns 1431543 1c00371c 00c68f63 beq x13, x12, 30 x13:0000007c x12:0000007c +76958776ns 1431546 1c00373a 00158593 addi x11, x11, 1 x11=0000007d x11:0000007c +76958796ns 1431547 1c00373c fcf598e3 bne x11, x15, -48 x11:0000007d x15:00000100 +76958856ns 1431550 1c00370c 00b50733 add x14, x10, x11 x14=1c00c045 x10:1c00bfc8 x11:0000007d +76958877ns 1431551 1c003710 00b80633 add x12, x16, x11 x12=1c00bf3d x16:1c00bec0 x11:0000007d +76958897ns 1431552 1c003714 00074683 lbu x13, 0(x14) x13=0000007d x14:1c00c045 PA:1c00c045 +76958917ns 1431553 1c003718 00064603 lbu x12, 0(x12) x12=0000007d x12:1c00bf3d PA:1c00bf3d +76958957ns 1431555 1c00371c 00c68f63 beq x13, x12, 30 x13:0000007d x12:0000007d +76959018ns 1431558 1c00373a 00158593 addi x11, x11, 1 x11=0000007e x11:0000007d +76959038ns 1431559 1c00373c fcf598e3 bne x11, x15, -48 x11:0000007e x15:00000100 +76959099ns 1431562 1c00370c 00b50733 add x14, x10, x11 x14=1c00c046 x10:1c00bfc8 x11:0000007e +76959119ns 1431563 1c003710 00b80633 add x12, x16, x11 x12=1c00bf3e x16:1c00bec0 x11:0000007e +76959139ns 1431564 1c003714 00074683 lbu x13, 0(x14) x13=0000007e x14:1c00c046 PA:1c00c046 +76959159ns 1431565 1c003718 00064603 lbu x12, 0(x12) x12=0000007e x12:1c00bf3e PA:1c00bf3e +76959200ns 1431567 1c00371c 00c68f63 beq x13, x12, 30 x13:0000007e x12:0000007e +76959260ns 1431570 1c00373a 00158593 addi x11, x11, 1 x11=0000007f x11:0000007e +76959280ns 1431571 1c00373c fcf598e3 bne x11, x15, -48 x11:0000007f x15:00000100 +76959341ns 1431574 1c00370c 00b50733 add x14, x10, x11 x14=1c00c047 x10:1c00bfc8 x11:0000007f +76959361ns 1431575 1c003710 00b80633 add x12, x16, x11 x12=1c00bf3f x16:1c00bec0 x11:0000007f +76959381ns 1431576 1c003714 00074683 lbu x13, 0(x14) x13=0000007f x14:1c00c047 PA:1c00c047 +76959402ns 1431577 1c003718 00064603 lbu x12, 0(x12) x12=0000007f x12:1c00bf3f PA:1c00bf3f +76959442ns 1431579 1c00371c 00c68f63 beq x13, x12, 30 x13:0000007f x12:0000007f +76959503ns 1431582 1c00373a 00158593 addi x11, x11, 1 x11=00000080 x11:0000007f +76959523ns 1431583 1c00373c fcf598e3 bne x11, x15, -48 x11:00000080 x15:00000100 +76959583ns 1431586 1c00370c 00b50733 add x14, x10, x11 x14=1c00c048 x10:1c00bfc8 x11:00000080 +76959604ns 1431587 1c003710 00b80633 add x12, x16, x11 x12=1c00bf40 x16:1c00bec0 x11:00000080 +76959624ns 1431588 1c003714 00074683 lbu x13, 0(x14) x13=00000080 x14:1c00c048 PA:1c00c048 +76959644ns 1431589 1c003718 00064603 lbu x12, 0(x12) x12=00000080 x12:1c00bf40 PA:1c00bf40 +76959684ns 1431591 1c00371c 00c68f63 beq x13, x12, 30 x13:00000080 x12:00000080 +76959745ns 1431594 1c00373a 00158593 addi x11, x11, 1 x11=00000081 x11:00000080 +76959765ns 1431595 1c00373c fcf598e3 bne x11, x15, -48 x11:00000081 x15:00000100 +76959826ns 1431598 1c00370c 00b50733 add x14, x10, x11 x14=1c00c049 x10:1c00bfc8 x11:00000081 +76959846ns 1431599 1c003710 00b80633 add x12, x16, x11 x12=1c00bf41 x16:1c00bec0 x11:00000081 +76959866ns 1431600 1c003714 00074683 lbu x13, 0(x14) x13=00000081 x14:1c00c049 PA:1c00c049 +76959886ns 1431601 1c003718 00064603 lbu x12, 0(x12) x12=00000081 x12:1c00bf41 PA:1c00bf41 +76959927ns 1431603 1c00371c 00c68f63 beq x13, x12, 30 x13:00000081 x12:00000081 +76959987ns 1431606 1c00373a 00158593 addi x11, x11, 1 x11=00000082 x11:00000081 +76960007ns 1431607 1c00373c fcf598e3 bne x11, x15, -48 x11:00000082 x15:00000100 +76960068ns 1431610 1c00370c 00b50733 add x14, x10, x11 x14=1c00c04a x10:1c00bfc8 x11:00000082 +76960088ns 1431611 1c003710 00b80633 add x12, x16, x11 x12=1c00bf42 x16:1c00bec0 x11:00000082 +76960108ns 1431612 1c003714 00074683 lbu x13, 0(x14) x13=00000082 x14:1c00c04a PA:1c00c04a +76960129ns 1431613 1c003718 00064603 lbu x12, 0(x12) x12=00000082 x12:1c00bf42 PA:1c00bf42 +76960169ns 1431615 1c00371c 00c68f63 beq x13, x12, 30 x13:00000082 x12:00000082 +76960230ns 1431618 1c00373a 00158593 addi x11, x11, 1 x11=00000083 x11:00000082 +76960250ns 1431619 1c00373c fcf598e3 bne x11, x15, -48 x11:00000083 x15:00000100 +76960310ns 1431622 1c00370c 00b50733 add x14, x10, x11 x14=1c00c04b x10:1c00bfc8 x11:00000083 +76960330ns 1431623 1c003710 00b80633 add x12, x16, x11 x12=1c00bf43 x16:1c00bec0 x11:00000083 +76960351ns 1431624 1c003714 00074683 lbu x13, 0(x14) x13=00000083 x14:1c00c04b PA:1c00c04b +76960371ns 1431625 1c003718 00064603 lbu x12, 0(x12) x12=00000083 x12:1c00bf43 PA:1c00bf43 +76960411ns 1431627 1c00371c 00c68f63 beq x13, x12, 30 x13:00000083 x12:00000083 +76960472ns 1431630 1c00373a 00158593 addi x11, x11, 1 x11=00000084 x11:00000083 +76960492ns 1431631 1c00373c fcf598e3 bne x11, x15, -48 x11:00000084 x15:00000100 +76960553ns 1431634 1c00370c 00b50733 add x14, x10, x11 x14=1c00c04c x10:1c00bfc8 x11:00000084 +76960573ns 1431635 1c003710 00b80633 add x12, x16, x11 x12=1c00bf44 x16:1c00bec0 x11:00000084 +76960593ns 1431636 1c003714 00074683 lbu x13, 0(x14) x13=00000084 x14:1c00c04c PA:1c00c04c +76960613ns 1431637 1c003718 00064603 lbu x12, 0(x12) x12=00000084 x12:1c00bf44 PA:1c00bf44 +76960654ns 1431639 1c00371c 00c68f63 beq x13, x12, 30 x13:00000084 x12:00000084 +76960714ns 1431642 1c00373a 00158593 addi x11, x11, 1 x11=00000085 x11:00000084 +76960734ns 1431643 1c00373c fcf598e3 bne x11, x15, -48 x11:00000085 x15:00000100 +76960795ns 1431646 1c00370c 00b50733 add x14, x10, x11 x14=1c00c04d x10:1c00bfc8 x11:00000085 +76960815ns 1431647 1c003710 00b80633 add x12, x16, x11 x12=1c00bf45 x16:1c00bec0 x11:00000085 +76960835ns 1431648 1c003714 00074683 lbu x13, 0(x14) x13=00000085 x14:1c00c04d PA:1c00c04d +76960855ns 1431649 1c003718 00064603 lbu x12, 0(x12) x12=00000085 x12:1c00bf45 PA:1c00bf45 +76960896ns 1431651 1c00371c 00c68f63 beq x13, x12, 30 x13:00000085 x12:00000085 +76960956ns 1431654 1c00373a 00158593 addi x11, x11, 1 x11=00000086 x11:00000085 +76960977ns 1431655 1c00373c fcf598e3 bne x11, x15, -48 x11:00000086 x15:00000100 +76961037ns 1431658 1c00370c 00b50733 add x14, x10, x11 x14=1c00c04e x10:1c00bfc8 x11:00000086 +76961057ns 1431659 1c003710 00b80633 add x12, x16, x11 x12=1c00bf46 x16:1c00bec0 x11:00000086 +76961078ns 1431660 1c003714 00074683 lbu x13, 0(x14) x13=00000086 x14:1c00c04e PA:1c00c04e +76961098ns 1431661 1c003718 00064603 lbu x12, 0(x12) x12=00000086 x12:1c00bf46 PA:1c00bf46 +76961138ns 1431663 1c00371c 00c68f63 beq x13, x12, 30 x13:00000086 x12:00000086 +76961199ns 1431666 1c00373a 00158593 addi x11, x11, 1 x11=00000087 x11:00000086 +76961219ns 1431667 1c00373c fcf598e3 bne x11, x15, -48 x11:00000087 x15:00000100 +76961279ns 1431670 1c00370c 00b50733 add x14, x10, x11 x14=1c00c04f x10:1c00bfc8 x11:00000087 +76961300ns 1431671 1c003710 00b80633 add x12, x16, x11 x12=1c00bf47 x16:1c00bec0 x11:00000087 +76961320ns 1431672 1c003714 00074683 lbu x13, 0(x14) x13=00000087 x14:1c00c04f PA:1c00c04f +76961340ns 1431673 1c003718 00064603 lbu x12, 0(x12) x12=00000087 x12:1c00bf47 PA:1c00bf47 +76961380ns 1431675 1c00371c 00c68f63 beq x13, x12, 30 x13:00000087 x12:00000087 +76961441ns 1431678 1c00373a 00158593 addi x11, x11, 1 x11=00000088 x11:00000087 +76961461ns 1431679 1c00373c fcf598e3 bne x11, x15, -48 x11:00000088 x15:00000100 +76961522ns 1431682 1c00370c 00b50733 add x14, x10, x11 x14=1c00c050 x10:1c00bfc8 x11:00000088 +76961542ns 1431683 1c003710 00b80633 add x12, x16, x11 x12=1c00bf48 x16:1c00bec0 x11:00000088 +76961562ns 1431684 1c003714 00074683 lbu x13, 0(x14) x13=00000088 x14:1c00c050 PA:1c00c050 +76961582ns 1431685 1c003718 00064603 lbu x12, 0(x12) x12=00000088 x12:1c00bf48 PA:1c00bf48 +76961623ns 1431687 1c00371c 00c68f63 beq x13, x12, 30 x13:00000088 x12:00000088 +76961683ns 1431690 1c00373a 00158593 addi x11, x11, 1 x11=00000089 x11:00000088 +76961704ns 1431691 1c00373c fcf598e3 bne x11, x15, -48 x11:00000089 x15:00000100 +76961764ns 1431694 1c00370c 00b50733 add x14, x10, x11 x14=1c00c051 x10:1c00bfc8 x11:00000089 +76961784ns 1431695 1c003710 00b80633 add x12, x16, x11 x12=1c00bf49 x16:1c00bec0 x11:00000089 +76961804ns 1431696 1c003714 00074683 lbu x13, 0(x14) x13=00000089 x14:1c00c051 PA:1c00c051 +76961825ns 1431697 1c003718 00064603 lbu x12, 0(x12) x12=00000089 x12:1c00bf49 PA:1c00bf49 +76961865ns 1431699 1c00371c 00c68f63 beq x13, x12, 30 x13:00000089 x12:00000089 +76961926ns 1431702 1c00373a 00158593 addi x11, x11, 1 x11=0000008a x11:00000089 +76961946ns 1431703 1c00373c fcf598e3 bne x11, x15, -48 x11:0000008a x15:00000100 +76962006ns 1431706 1c00370c 00b50733 add x14, x10, x11 x14=1c00c052 x10:1c00bfc8 x11:0000008a +76962027ns 1431707 1c003710 00b80633 add x12, x16, x11 x12=1c00bf4a x16:1c00bec0 x11:0000008a +76962047ns 1431708 1c003714 00074683 lbu x13, 0(x14) x13=0000008a x14:1c00c052 PA:1c00c052 +76962067ns 1431709 1c003718 00064603 lbu x12, 0(x12) x12=0000008a x12:1c00bf4a PA:1c00bf4a +76962107ns 1431711 1c00371c 00c68f63 beq x13, x12, 30 x13:0000008a x12:0000008a +76962168ns 1431714 1c00373a 00158593 addi x11, x11, 1 x11=0000008b x11:0000008a +76962188ns 1431715 1c00373c fcf598e3 bne x11, x15, -48 x11:0000008b x15:00000100 +76962249ns 1431718 1c00370c 00b50733 add x14, x10, x11 x14=1c00c053 x10:1c00bfc8 x11:0000008b +76962269ns 1431719 1c003710 00b80633 add x12, x16, x11 x12=1c00bf4b x16:1c00bec0 x11:0000008b +76962289ns 1431720 1c003714 00074683 lbu x13, 0(x14) x13=0000008b x14:1c00c053 PA:1c00c053 +76962309ns 1431721 1c003718 00064603 lbu x12, 0(x12) x12=0000008b x12:1c00bf4b PA:1c00bf4b +76962350ns 1431723 1c00371c 00c68f63 beq x13, x12, 30 x13:0000008b x12:0000008b +76962410ns 1431726 1c00373a 00158593 addi x11, x11, 1 x11=0000008c x11:0000008b +76962430ns 1431727 1c00373c fcf598e3 bne x11, x15, -48 x11:0000008c x15:00000100 +76962491ns 1431730 1c00370c 00b50733 add x14, x10, x11 x14=1c00c054 x10:1c00bfc8 x11:0000008c +76962511ns 1431731 1c003710 00b80633 add x12, x16, x11 x12=1c00bf4c x16:1c00bec0 x11:0000008c +76962531ns 1431732 1c003714 00074683 lbu x13, 0(x14) x13=0000008c x14:1c00c054 PA:1c00c054 +76962552ns 1431733 1c003718 00064603 lbu x12, 0(x12) x12=0000008c x12:1c00bf4c PA:1c00bf4c +76962592ns 1431735 1c00371c 00c68f63 beq x13, x12, 30 x13:0000008c x12:0000008c +76962653ns 1431738 1c00373a 00158593 addi x11, x11, 1 x11=0000008d x11:0000008c +76962673ns 1431739 1c00373c fcf598e3 bne x11, x15, -48 x11:0000008d x15:00000100 +76962733ns 1431742 1c00370c 00b50733 add x14, x10, x11 x14=1c00c055 x10:1c00bfc8 x11:0000008d +76962754ns 1431743 1c003710 00b80633 add x12, x16, x11 x12=1c00bf4d x16:1c00bec0 x11:0000008d +76962774ns 1431744 1c003714 00074683 lbu x13, 0(x14) x13=0000008d x14:1c00c055 PA:1c00c055 +76962794ns 1431745 1c003718 00064603 lbu x12, 0(x12) x12=0000008d x12:1c00bf4d PA:1c00bf4d +76962834ns 1431747 1c00371c 00c68f63 beq x13, x12, 30 x13:0000008d x12:0000008d +76962895ns 1431750 1c00373a 00158593 addi x11, x11, 1 x11=0000008e x11:0000008d +76962915ns 1431751 1c00373c fcf598e3 bne x11, x15, -48 x11:0000008e x15:00000100 +76962976ns 1431754 1c00370c 00b50733 add x14, x10, x11 x14=1c00c056 x10:1c00bfc8 x11:0000008e +76962996ns 1431755 1c003710 00b80633 add x12, x16, x11 x12=1c00bf4e x16:1c00bec0 x11:0000008e +76963016ns 1431756 1c003714 00074683 lbu x13, 0(x14) x13=0000008e x14:1c00c056 PA:1c00c056 +76963036ns 1431757 1c003718 00064603 lbu x12, 0(x12) x12=0000008e x12:1c00bf4e PA:1c00bf4e +76963077ns 1431759 1c00371c 00c68f63 beq x13, x12, 30 x13:0000008e x12:0000008e +76963137ns 1431762 1c00373a 00158593 addi x11, x11, 1 x11=0000008f x11:0000008e +76963157ns 1431763 1c00373c fcf598e3 bne x11, x15, -48 x11:0000008f x15:00000100 +76963218ns 1431766 1c00370c 00b50733 add x14, x10, x11 x14=1c00c057 x10:1c00bfc8 x11:0000008f +76963238ns 1431767 1c003710 00b80633 add x12, x16, x11 x12=1c00bf4f x16:1c00bec0 x11:0000008f +76963258ns 1431768 1c003714 00074683 lbu x13, 0(x14) x13=0000008f x14:1c00c057 PA:1c00c057 +76963279ns 1431769 1c003718 00064603 lbu x12, 0(x12) x12=0000008f x12:1c00bf4f PA:1c00bf4f +76963319ns 1431771 1c00371c 00c68f63 beq x13, x12, 30 x13:0000008f x12:0000008f +76963379ns 1431774 1c00373a 00158593 addi x11, x11, 1 x11=00000090 x11:0000008f +76963400ns 1431775 1c00373c fcf598e3 bne x11, x15, -48 x11:00000090 x15:00000100 +76963460ns 1431778 1c00370c 00b50733 add x14, x10, x11 x14=1c00c058 x10:1c00bfc8 x11:00000090 +76963480ns 1431779 1c003710 00b80633 add x12, x16, x11 x12=1c00bf50 x16:1c00bec0 x11:00000090 +76963501ns 1431780 1c003714 00074683 lbu x13, 0(x14) x13=00000090 x14:1c00c058 PA:1c00c058 +76963521ns 1431781 1c003718 00064603 lbu x12, 0(x12) x12=00000090 x12:1c00bf50 PA:1c00bf50 +76963561ns 1431783 1c00371c 00c68f63 beq x13, x12, 30 x13:00000090 x12:00000090 +76963622ns 1431786 1c00373a 00158593 addi x11, x11, 1 x11=00000091 x11:00000090 +76963642ns 1431787 1c00373c fcf598e3 bne x11, x15, -48 x11:00000091 x15:00000100 +76963703ns 1431790 1c00370c 00b50733 add x14, x10, x11 x14=1c00c059 x10:1c00bfc8 x11:00000091 +76963723ns 1431791 1c003710 00b80633 add x12, x16, x11 x12=1c00bf51 x16:1c00bec0 x11:00000091 +76963743ns 1431792 1c003714 00074683 lbu x13, 0(x14) x13=00000091 x14:1c00c059 PA:1c00c059 +76963763ns 1431793 1c003718 00064603 lbu x12, 0(x12) x12=00000091 x12:1c00bf51 PA:1c00bf51 +76963803ns 1431795 1c00371c 00c68f63 beq x13, x12, 30 x13:00000091 x12:00000091 +76963864ns 1431798 1c00373a 00158593 addi x11, x11, 1 x11=00000092 x11:00000091 +76963884ns 1431799 1c00373c fcf598e3 bne x11, x15, -48 x11:00000092 x15:00000100 +76963945ns 1431802 1c00370c 00b50733 add x14, x10, x11 x14=1c00c05a x10:1c00bfc8 x11:00000092 +76963965ns 1431803 1c003710 00b80633 add x12, x16, x11 x12=1c00bf52 x16:1c00bec0 x11:00000092 +76963985ns 1431804 1c003714 00074683 lbu x13, 0(x14) x13=00000092 x14:1c00c05a PA:1c00c05a +76964005ns 1431805 1c003718 00064603 lbu x12, 0(x12) x12=00000092 x12:1c00bf52 PA:1c00bf52 +76964046ns 1431807 1c00371c 00c68f63 beq x13, x12, 30 x13:00000092 x12:00000092 +76964106ns 1431810 1c00373a 00158593 addi x11, x11, 1 x11=00000093 x11:00000092 +76964127ns 1431811 1c00373c fcf598e3 bne x11, x15, -48 x11:00000093 x15:00000100 +76964187ns 1431814 1c00370c 00b50733 add x14, x10, x11 x14=1c00c05b x10:1c00bfc8 x11:00000093 +76964207ns 1431815 1c003710 00b80633 add x12, x16, x11 x12=1c00bf53 x16:1c00bec0 x11:00000093 +76964228ns 1431816 1c003714 00074683 lbu x13, 0(x14) x13=00000093 x14:1c00c05b PA:1c00c05b +76964248ns 1431817 1c003718 00064603 lbu x12, 0(x12) x12=00000093 x12:1c00bf53 PA:1c00bf53 +76964288ns 1431819 1c00371c 00c68f63 beq x13, x12, 30 x13:00000093 x12:00000093 +76964349ns 1431822 1c00373a 00158593 addi x11, x11, 1 x11=00000094 x11:00000093 +76964369ns 1431823 1c00373c fcf598e3 bne x11, x15, -48 x11:00000094 x15:00000100 +76964429ns 1431826 1c00370c 00b50733 add x14, x10, x11 x14=1c00c05c x10:1c00bfc8 x11:00000094 +76964450ns 1431827 1c003710 00b80633 add x12, x16, x11 x12=1c00bf54 x16:1c00bec0 x11:00000094 +76964470ns 1431828 1c003714 00074683 lbu x13, 0(x14) x13=00000094 x14:1c00c05c PA:1c00c05c +76964490ns 1431829 1c003718 00064603 lbu x12, 0(x12) x12=00000094 x12:1c00bf54 PA:1c00bf54 +76964530ns 1431831 1c00371c 00c68f63 beq x13, x12, 30 x13:00000094 x12:00000094 +76964591ns 1431834 1c00373a 00158593 addi x11, x11, 1 x11=00000095 x11:00000094 +76964611ns 1431835 1c00373c fcf598e3 bne x11, x15, -48 x11:00000095 x15:00000100 +76964672ns 1431838 1c00370c 00b50733 add x14, x10, x11 x14=1c00c05d x10:1c00bfc8 x11:00000095 +76964692ns 1431839 1c003710 00b80633 add x12, x16, x11 x12=1c00bf55 x16:1c00bec0 x11:00000095 +76964712ns 1431840 1c003714 00074683 lbu x13, 0(x14) x13=00000095 x14:1c00c05d PA:1c00c05d +76964732ns 1431841 1c003718 00064603 lbu x12, 0(x12) x12=00000095 x12:1c00bf55 PA:1c00bf55 +76964773ns 1431843 1c00371c 00c68f63 beq x13, x12, 30 x13:00000095 x12:00000095 +76964833ns 1431846 1c00373a 00158593 addi x11, x11, 1 x11=00000096 x11:00000095 +76964853ns 1431847 1c00373c fcf598e3 bne x11, x15, -48 x11:00000096 x15:00000100 +76964914ns 1431850 1c00370c 00b50733 add x14, x10, x11 x14=1c00c05e x10:1c00bfc8 x11:00000096 +76964934ns 1431851 1c003710 00b80633 add x12, x16, x11 x12=1c00bf56 x16:1c00bec0 x11:00000096 +76964954ns 1431852 1c003714 00074683 lbu x13, 0(x14) x13=00000096 x14:1c00c05e PA:1c00c05e +76964975ns 1431853 1c003718 00064603 lbu x12, 0(x12) x12=00000096 x12:1c00bf56 PA:1c00bf56 +76965015ns 1431855 1c00371c 00c68f63 beq x13, x12, 30 x13:00000096 x12:00000096 +76965076ns 1431858 1c00373a 00158593 addi x11, x11, 1 x11=00000097 x11:00000096 +76965096ns 1431859 1c00373c fcf598e3 bne x11, x15, -48 x11:00000097 x15:00000100 +76965156ns 1431862 1c00370c 00b50733 add x14, x10, x11 x14=1c00c05f x10:1c00bfc8 x11:00000097 +76965177ns 1431863 1c003710 00b80633 add x12, x16, x11 x12=1c00bf57 x16:1c00bec0 x11:00000097 +76965197ns 1431864 1c003714 00074683 lbu x13, 0(x14) x13=00000097 x14:1c00c05f PA:1c00c05f +76965217ns 1431865 1c003718 00064603 lbu x12, 0(x12) x12=00000097 x12:1c00bf57 PA:1c00bf57 +76965257ns 1431867 1c00371c 00c68f63 beq x13, x12, 30 x13:00000097 x12:00000097 +76965318ns 1431870 1c00373a 00158593 addi x11, x11, 1 x11=00000098 x11:00000097 +76965338ns 1431871 1c00373c fcf598e3 bne x11, x15, -48 x11:00000098 x15:00000100 +76965399ns 1431874 1c00370c 00b50733 add x14, x10, x11 x14=1c00c060 x10:1c00bfc8 x11:00000098 +76965419ns 1431875 1c003710 00b80633 add x12, x16, x11 x12=1c00bf58 x16:1c00bec0 x11:00000098 +76965439ns 1431876 1c003714 00074683 lbu x13, 0(x14) x13=00000098 x14:1c00c060 PA:1c00c060 +76965459ns 1431877 1c003718 00064603 lbu x12, 0(x12) x12=00000098 x12:1c00bf58 PA:1c00bf58 +76965500ns 1431879 1c00371c 00c68f63 beq x13, x12, 30 x13:00000098 x12:00000098 +76965560ns 1431882 1c00373a 00158593 addi x11, x11, 1 x11=00000099 x11:00000098 +76965580ns 1431883 1c00373c fcf598e3 bne x11, x15, -48 x11:00000099 x15:00000100 +76965641ns 1431886 1c00370c 00b50733 add x14, x10, x11 x14=1c00c061 x10:1c00bfc8 x11:00000099 +76965661ns 1431887 1c003710 00b80633 add x12, x16, x11 x12=1c00bf59 x16:1c00bec0 x11:00000099 +76965681ns 1431888 1c003714 00074683 lbu x13, 0(x14) x13=00000099 x14:1c00c061 PA:1c00c061 +76965702ns 1431889 1c003718 00064603 lbu x12, 0(x12) x12=00000099 x12:1c00bf59 PA:1c00bf59 +76965742ns 1431891 1c00371c 00c68f63 beq x13, x12, 30 x13:00000099 x12:00000099 +76965803ns 1431894 1c00373a 00158593 addi x11, x11, 1 x11=0000009a x11:00000099 +76965823ns 1431895 1c00373c fcf598e3 bne x11, x15, -48 x11:0000009a x15:00000100 +76965883ns 1431898 1c00370c 00b50733 add x14, x10, x11 x14=1c00c062 x10:1c00bfc8 x11:0000009a +76965903ns 1431899 1c003710 00b80633 add x12, x16, x11 x12=1c00bf5a x16:1c00bec0 x11:0000009a +76965924ns 1431900 1c003714 00074683 lbu x13, 0(x14) x13=0000009a x14:1c00c062 PA:1c00c062 +76965944ns 1431901 1c003718 00064603 lbu x12, 0(x12) x12=0000009a x12:1c00bf5a PA:1c00bf5a +76965984ns 1431903 1c00371c 00c68f63 beq x13, x12, 30 x13:0000009a x12:0000009a +76966045ns 1431906 1c00373a 00158593 addi x11, x11, 1 x11=0000009b x11:0000009a +76966065ns 1431907 1c00373c fcf598e3 bne x11, x15, -48 x11:0000009b x15:00000100 +76966126ns 1431910 1c00370c 00b50733 add x14, x10, x11 x14=1c00c063 x10:1c00bfc8 x11:0000009b +76966146ns 1431911 1c003710 00b80633 add x12, x16, x11 x12=1c00bf5b x16:1c00bec0 x11:0000009b +76966166ns 1431912 1c003714 00074683 lbu x13, 0(x14) x13=0000009b x14:1c00c063 PA:1c00c063 +76966186ns 1431913 1c003718 00064603 lbu x12, 0(x12) x12=0000009b x12:1c00bf5b PA:1c00bf5b +76966227ns 1431915 1c00371c 00c68f63 beq x13, x12, 30 x13:0000009b x12:0000009b +76966287ns 1431918 1c00373a 00158593 addi x11, x11, 1 x11=0000009c x11:0000009b +76966307ns 1431919 1c00373c fcf598e3 bne x11, x15, -48 x11:0000009c x15:00000100 +76966368ns 1431922 1c00370c 00b50733 add x14, x10, x11 x14=1c00c064 x10:1c00bfc8 x11:0000009c +76966388ns 1431923 1c003710 00b80633 add x12, x16, x11 x12=1c00bf5c x16:1c00bec0 x11:0000009c +76966408ns 1431924 1c003714 00074683 lbu x13, 0(x14) x13=0000009c x14:1c00c064 PA:1c00c064 +76966428ns 1431925 1c003718 00064603 lbu x12, 0(x12) x12=0000009c x12:1c00bf5c PA:1c00bf5c +76966469ns 1431927 1c00371c 00c68f63 beq x13, x12, 30 x13:0000009c x12:0000009c +76966529ns 1431930 1c00373a 00158593 addi x11, x11, 1 x11=0000009d x11:0000009c +76966550ns 1431931 1c00373c fcf598e3 bne x11, x15, -48 x11:0000009d x15:00000100 +76966610ns 1431934 1c00370c 00b50733 add x14, x10, x11 x14=1c00c065 x10:1c00bfc8 x11:0000009d +76966630ns 1431935 1c003710 00b80633 add x12, x16, x11 x12=1c00bf5d x16:1c00bec0 x11:0000009d +76966651ns 1431936 1c003714 00074683 lbu x13, 0(x14) x13=0000009d x14:1c00c065 PA:1c00c065 +76966671ns 1431937 1c003718 00064603 lbu x12, 0(x12) x12=0000009d x12:1c00bf5d PA:1c00bf5d +76966711ns 1431939 1c00371c 00c68f63 beq x13, x12, 30 x13:0000009d x12:0000009d +76966772ns 1431942 1c00373a 00158593 addi x11, x11, 1 x11=0000009e x11:0000009d +76966792ns 1431943 1c00373c fcf598e3 bne x11, x15, -48 x11:0000009e x15:00000100 +76966852ns 1431946 1c00370c 00b50733 add x14, x10, x11 x14=1c00c066 x10:1c00bfc8 x11:0000009e +76966873ns 1431947 1c003710 00b80633 add x12, x16, x11 x12=1c00bf5e x16:1c00bec0 x11:0000009e +76966893ns 1431948 1c003714 00074683 lbu x13, 0(x14) x13=0000009e x14:1c00c066 PA:1c00c066 +76966913ns 1431949 1c003718 00064603 lbu x12, 0(x12) x12=0000009e x12:1c00bf5e PA:1c00bf5e +76966953ns 1431951 1c00371c 00c68f63 beq x13, x12, 30 x13:0000009e x12:0000009e +76967014ns 1431954 1c00373a 00158593 addi x11, x11, 1 x11=0000009f x11:0000009e +76967034ns 1431955 1c00373c fcf598e3 bne x11, x15, -48 x11:0000009f x15:00000100 +76967095ns 1431958 1c00370c 00b50733 add x14, x10, x11 x14=1c00c067 x10:1c00bfc8 x11:0000009f +76967115ns 1431959 1c003710 00b80633 add x12, x16, x11 x12=1c00bf5f x16:1c00bec0 x11:0000009f +76967135ns 1431960 1c003714 00074683 lbu x13, 0(x14) x13=0000009f x14:1c00c067 PA:1c00c067 +76967155ns 1431961 1c003718 00064603 lbu x12, 0(x12) x12=0000009f x12:1c00bf5f PA:1c00bf5f +76967196ns 1431963 1c00371c 00c68f63 beq x13, x12, 30 x13:0000009f x12:0000009f +76967256ns 1431966 1c00373a 00158593 addi x11, x11, 1 x11=000000a0 x11:0000009f +76967277ns 1431967 1c00373c fcf598e3 bne x11, x15, -48 x11:000000a0 x15:00000100 +76967337ns 1431970 1c00370c 00b50733 add x14, x10, x11 x14=1c00c068 x10:1c00bfc8 x11:000000a0 +76967357ns 1431971 1c003710 00b80633 add x12, x16, x11 x12=1c00bf60 x16:1c00bec0 x11:000000a0 +76967377ns 1431972 1c003714 00074683 lbu x13, 0(x14) x13=000000a0 x14:1c00c068 PA:1c00c068 +76967398ns 1431973 1c003718 00064603 lbu x12, 0(x12) x12=000000a0 x12:1c00bf60 PA:1c00bf60 +76967438ns 1431975 1c00371c 00c68f63 beq x13, x12, 30 x13:000000a0 x12:000000a0 +76967499ns 1431978 1c00373a 00158593 addi x11, x11, 1 x11=000000a1 x11:000000a0 +76967519ns 1431979 1c00373c fcf598e3 bne x11, x15, -48 x11:000000a1 x15:00000100 +76967579ns 1431982 1c00370c 00b50733 add x14, x10, x11 x14=1c00c069 x10:1c00bfc8 x11:000000a1 +76967600ns 1431983 1c003710 00b80633 add x12, x16, x11 x12=1c00bf61 x16:1c00bec0 x11:000000a1 +76967620ns 1431984 1c003714 00074683 lbu x13, 0(x14) x13=000000a1 x14:1c00c069 PA:1c00c069 +76967640ns 1431985 1c003718 00064603 lbu x12, 0(x12) x12=000000a1 x12:1c00bf61 PA:1c00bf61 +76967680ns 1431987 1c00371c 00c68f63 beq x13, x12, 30 x13:000000a1 x12:000000a1 +76967741ns 1431990 1c00373a 00158593 addi x11, x11, 1 x11=000000a2 x11:000000a1 +76967761ns 1431991 1c00373c fcf598e3 bne x11, x15, -48 x11:000000a2 x15:00000100 +76967822ns 1431994 1c00370c 00b50733 add x14, x10, x11 x14=1c00c06a x10:1c00bfc8 x11:000000a2 +76967842ns 1431995 1c003710 00b80633 add x12, x16, x11 x12=1c00bf62 x16:1c00bec0 x11:000000a2 +76967862ns 1431996 1c003714 00074683 lbu x13, 0(x14) x13=000000a2 x14:1c00c06a PA:1c00c06a +76967882ns 1431997 1c003718 00064603 lbu x12, 0(x12) x12=000000a2 x12:1c00bf62 PA:1c00bf62 +76967923ns 1431999 1c00371c 00c68f63 beq x13, x12, 30 x13:000000a2 x12:000000a2 +76967983ns 1432002 1c00373a 00158593 addi x11, x11, 1 x11=000000a3 x11:000000a2 +76968003ns 1432003 1c00373c fcf598e3 bne x11, x15, -48 x11:000000a3 x15:00000100 +76968064ns 1432006 1c00370c 00b50733 add x14, x10, x11 x14=1c00c06b x10:1c00bfc8 x11:000000a3 +76968084ns 1432007 1c003710 00b80633 add x12, x16, x11 x12=1c00bf63 x16:1c00bec0 x11:000000a3 +76968104ns 1432008 1c003714 00074683 lbu x13, 0(x14) x13=000000a3 x14:1c00c06b PA:1c00c06b +76968125ns 1432009 1c003718 00064603 lbu x12, 0(x12) x12=000000a3 x12:1c00bf63 PA:1c00bf63 +76968165ns 1432011 1c00371c 00c68f63 beq x13, x12, 30 x13:000000a3 x12:000000a3 +76968226ns 1432014 1c00373a 00158593 addi x11, x11, 1 x11=000000a4 x11:000000a3 +76968246ns 1432015 1c00373c fcf598e3 bne x11, x15, -48 x11:000000a4 x15:00000100 +76968306ns 1432018 1c00370c 00b50733 add x14, x10, x11 x14=1c00c06c x10:1c00bfc8 x11:000000a4 +76968327ns 1432019 1c003710 00b80633 add x12, x16, x11 x12=1c00bf64 x16:1c00bec0 x11:000000a4 +76968347ns 1432020 1c003714 00074683 lbu x13, 0(x14) x13=000000a4 x14:1c00c06c PA:1c00c06c +76968367ns 1432021 1c003718 00064603 lbu x12, 0(x12) x12=000000a4 x12:1c00bf64 PA:1c00bf64 +76968407ns 1432023 1c00371c 00c68f63 beq x13, x12, 30 x13:000000a4 x12:000000a4 +76968468ns 1432026 1c00373a 00158593 addi x11, x11, 1 x11=000000a5 x11:000000a4 +76968488ns 1432027 1c00373c fcf598e3 bne x11, x15, -48 x11:000000a5 x15:00000100 +76968549ns 1432030 1c00370c 00b50733 add x14, x10, x11 x14=1c00c06d x10:1c00bfc8 x11:000000a5 +76968569ns 1432031 1c003710 00b80633 add x12, x16, x11 x12=1c00bf65 x16:1c00bec0 x11:000000a5 +76968589ns 1432032 1c003714 00074683 lbu x13, 0(x14) x13=000000a5 x14:1c00c06d PA:1c00c06d +76968609ns 1432033 1c003718 00064603 lbu x12, 0(x12) x12=000000a5 x12:1c00bf65 PA:1c00bf65 +76968650ns 1432035 1c00371c 00c68f63 beq x13, x12, 30 x13:000000a5 x12:000000a5 +76968710ns 1432038 1c00373a 00158593 addi x11, x11, 1 x11=000000a6 x11:000000a5 +76968730ns 1432039 1c00373c fcf598e3 bne x11, x15, -48 x11:000000a6 x15:00000100 +76968791ns 1432042 1c00370c 00b50733 add x14, x10, x11 x14=1c00c06e x10:1c00bfc8 x11:000000a6 +76968811ns 1432043 1c003710 00b80633 add x12, x16, x11 x12=1c00bf66 x16:1c00bec0 x11:000000a6 +76968831ns 1432044 1c003714 00074683 lbu x13, 0(x14) x13=000000a6 x14:1c00c06e PA:1c00c06e +76968851ns 1432045 1c003718 00064603 lbu x12, 0(x12) x12=000000a6 x12:1c00bf66 PA:1c00bf66 +76968892ns 1432047 1c00371c 00c68f63 beq x13, x12, 30 x13:000000a6 x12:000000a6 +76968952ns 1432050 1c00373a 00158593 addi x11, x11, 1 x11=000000a7 x11:000000a6 +76968973ns 1432051 1c00373c fcf598e3 bne x11, x15, -48 x11:000000a7 x15:00000100 +76969033ns 1432054 1c00370c 00b50733 add x14, x10, x11 x14=1c00c06f x10:1c00bfc8 x11:000000a7 +76969053ns 1432055 1c003710 00b80633 add x12, x16, x11 x12=1c00bf67 x16:1c00bec0 x11:000000a7 +76969074ns 1432056 1c003714 00074683 lbu x13, 0(x14) x13=000000a7 x14:1c00c06f PA:1c00c06f +76969094ns 1432057 1c003718 00064603 lbu x12, 0(x12) x12=000000a7 x12:1c00bf67 PA:1c00bf67 +76969134ns 1432059 1c00371c 00c68f63 beq x13, x12, 30 x13:000000a7 x12:000000a7 +76969195ns 1432062 1c00373a 00158593 addi x11, x11, 1 x11=000000a8 x11:000000a7 +76969215ns 1432063 1c00373c fcf598e3 bne x11, x15, -48 x11:000000a8 x15:00000100 +76969276ns 1432066 1c00370c 00b50733 add x14, x10, x11 x14=1c00c070 x10:1c00bfc8 x11:000000a8 +76969296ns 1432067 1c003710 00b80633 add x12, x16, x11 x12=1c00bf68 x16:1c00bec0 x11:000000a8 +76969316ns 1432068 1c003714 00074683 lbu x13, 0(x14) x13=000000a8 x14:1c00c070 PA:1c00c070 +76969336ns 1432069 1c003718 00064603 lbu x12, 0(x12) x12=000000a8 x12:1c00bf68 PA:1c00bf68 +76969376ns 1432071 1c00371c 00c68f63 beq x13, x12, 30 x13:000000a8 x12:000000a8 +76969437ns 1432074 1c00373a 00158593 addi x11, x11, 1 x11=000000a9 x11:000000a8 +76969457ns 1432075 1c00373c fcf598e3 bne x11, x15, -48 x11:000000a9 x15:00000100 +76969518ns 1432078 1c00370c 00b50733 add x14, x10, x11 x14=1c00c071 x10:1c00bfc8 x11:000000a9 +76969538ns 1432079 1c003710 00b80633 add x12, x16, x11 x12=1c00bf69 x16:1c00bec0 x11:000000a9 +76969558ns 1432080 1c003714 00074683 lbu x13, 0(x14) x13=000000a9 x14:1c00c071 PA:1c00c071 +76969578ns 1432081 1c003718 00064603 lbu x12, 0(x12) x12=000000a9 x12:1c00bf69 PA:1c00bf69 +76969619ns 1432083 1c00371c 00c68f63 beq x13, x12, 30 x13:000000a9 x12:000000a9 +76969679ns 1432086 1c00373a 00158593 addi x11, x11, 1 x11=000000aa x11:000000a9 +76969700ns 1432087 1c00373c fcf598e3 bne x11, x15, -48 x11:000000aa x15:00000100 +76969760ns 1432090 1c00370c 00b50733 add x14, x10, x11 x14=1c00c072 x10:1c00bfc8 x11:000000aa +76969780ns 1432091 1c003710 00b80633 add x12, x16, x11 x12=1c00bf6a x16:1c00bec0 x11:000000aa +76969801ns 1432092 1c003714 00074683 lbu x13, 0(x14) x13=000000aa x14:1c00c072 PA:1c00c072 +76969821ns 1432093 1c003718 00064603 lbu x12, 0(x12) x12=000000aa x12:1c00bf6a PA:1c00bf6a +76969861ns 1432095 1c00371c 00c68f63 beq x13, x12, 30 x13:000000aa x12:000000aa +76969922ns 1432098 1c00373a 00158593 addi x11, x11, 1 x11=000000ab x11:000000aa +76969942ns 1432099 1c00373c fcf598e3 bne x11, x15, -48 x11:000000ab x15:00000100 +76970002ns 1432102 1c00370c 00b50733 add x14, x10, x11 x14=1c00c073 x10:1c00bfc8 x11:000000ab +76970023ns 1432103 1c003710 00b80633 add x12, x16, x11 x12=1c00bf6b x16:1c00bec0 x11:000000ab +76970043ns 1432104 1c003714 00074683 lbu x13, 0(x14) x13=000000ab x14:1c00c073 PA:1c00c073 +76970063ns 1432105 1c003718 00064603 lbu x12, 0(x12) x12=000000ab x12:1c00bf6b PA:1c00bf6b +76970103ns 1432107 1c00371c 00c68f63 beq x13, x12, 30 x13:000000ab x12:000000ab +76970164ns 1432110 1c00373a 00158593 addi x11, x11, 1 x11=000000ac x11:000000ab +76970184ns 1432111 1c00373c fcf598e3 bne x11, x15, -48 x11:000000ac x15:00000100 +76970245ns 1432114 1c00370c 00b50733 add x14, x10, x11 x14=1c00c074 x10:1c00bfc8 x11:000000ac +76970265ns 1432115 1c003710 00b80633 add x12, x16, x11 x12=1c00bf6c x16:1c00bec0 x11:000000ac +76970285ns 1432116 1c003714 00074683 lbu x13, 0(x14) x13=000000ac x14:1c00c074 PA:1c00c074 +76970305ns 1432117 1c003718 00064603 lbu x12, 0(x12) x12=000000ac x12:1c00bf6c PA:1c00bf6c +76970346ns 1432119 1c00371c 00c68f63 beq x13, x12, 30 x13:000000ac x12:000000ac +76970406ns 1432122 1c00373a 00158593 addi x11, x11, 1 x11=000000ad x11:000000ac +76970426ns 1432123 1c00373c fcf598e3 bne x11, x15, -48 x11:000000ad x15:00000100 +76970487ns 1432126 1c00370c 00b50733 add x14, x10, x11 x14=1c00c075 x10:1c00bfc8 x11:000000ad +76970507ns 1432127 1c003710 00b80633 add x12, x16, x11 x12=1c00bf6d x16:1c00bec0 x11:000000ad +76970527ns 1432128 1c003714 00074683 lbu x13, 0(x14) x13=000000ad x14:1c00c075 PA:1c00c075 +76970548ns 1432129 1c003718 00064603 lbu x12, 0(x12) x12=000000ad x12:1c00bf6d PA:1c00bf6d +76970588ns 1432131 1c00371c 00c68f63 beq x13, x12, 30 x13:000000ad x12:000000ad +76970649ns 1432134 1c00373a 00158593 addi x11, x11, 1 x11=000000ae x11:000000ad +76970669ns 1432135 1c00373c fcf598e3 bne x11, x15, -48 x11:000000ae x15:00000100 +76970729ns 1432138 1c00370c 00b50733 add x14, x10, x11 x14=1c00c076 x10:1c00bfc8 x11:000000ae +76970750ns 1432139 1c003710 00b80633 add x12, x16, x11 x12=1c00bf6e x16:1c00bec0 x11:000000ae +76970770ns 1432140 1c003714 00074683 lbu x13, 0(x14) x13=000000ae x14:1c00c076 PA:1c00c076 +76970790ns 1432141 1c003718 00064603 lbu x12, 0(x12) x12=000000ae x12:1c00bf6e PA:1c00bf6e +76970830ns 1432143 1c00371c 00c68f63 beq x13, x12, 30 x13:000000ae x12:000000ae +76970891ns 1432146 1c00373a 00158593 addi x11, x11, 1 x11=000000af x11:000000ae +76970911ns 1432147 1c00373c fcf598e3 bne x11, x15, -48 x11:000000af x15:00000100 +76970972ns 1432150 1c00370c 00b50733 add x14, x10, x11 x14=1c00c077 x10:1c00bfc8 x11:000000af +76970992ns 1432151 1c003710 00b80633 add x12, x16, x11 x12=1c00bf6f x16:1c00bec0 x11:000000af +76971012ns 1432152 1c003714 00074683 lbu x13, 0(x14) x13=000000af x14:1c00c077 PA:1c00c077 +76971032ns 1432153 1c003718 00064603 lbu x12, 0(x12) x12=000000af x12:1c00bf6f PA:1c00bf6f +76971073ns 1432155 1c00371c 00c68f63 beq x13, x12, 30 x13:000000af x12:000000af +76971133ns 1432158 1c00373a 00158593 addi x11, x11, 1 x11=000000b0 x11:000000af +76971153ns 1432159 1c00373c fcf598e3 bne x11, x15, -48 x11:000000b0 x15:00000100 +76971214ns 1432162 1c00370c 00b50733 add x14, x10, x11 x14=1c00c078 x10:1c00bfc8 x11:000000b0 +76971234ns 1432163 1c003710 00b80633 add x12, x16, x11 x12=1c00bf70 x16:1c00bec0 x11:000000b0 +76971254ns 1432164 1c003714 00074683 lbu x13, 0(x14) x13=000000b0 x14:1c00c078 PA:1c00c078 +76971275ns 1432165 1c003718 00064603 lbu x12, 0(x12) x12=000000b0 x12:1c00bf70 PA:1c00bf70 +76971315ns 1432167 1c00371c 00c68f63 beq x13, x12, 30 x13:000000b0 x12:000000b0 +76971375ns 1432170 1c00373a 00158593 addi x11, x11, 1 x11=000000b1 x11:000000b0 +76971396ns 1432171 1c00373c fcf598e3 bne x11, x15, -48 x11:000000b1 x15:00000100 +76971456ns 1432174 1c00370c 00b50733 add x14, x10, x11 x14=1c00c079 x10:1c00bfc8 x11:000000b1 +76971476ns 1432175 1c003710 00b80633 add x12, x16, x11 x12=1c00bf71 x16:1c00bec0 x11:000000b1 +76971497ns 1432176 1c003714 00074683 lbu x13, 0(x14) x13=000000b1 x14:1c00c079 PA:1c00c079 +76971517ns 1432177 1c003718 00064603 lbu x12, 0(x12) x12=000000b1 x12:1c00bf71 PA:1c00bf71 +76971557ns 1432179 1c00371c 00c68f63 beq x13, x12, 30 x13:000000b1 x12:000000b1 +76971618ns 1432182 1c00373a 00158593 addi x11, x11, 1 x11=000000b2 x11:000000b1 +76971638ns 1432183 1c00373c fcf598e3 bne x11, x15, -48 x11:000000b2 x15:00000100 +76971699ns 1432186 1c00370c 00b50733 add x14, x10, x11 x14=1c00c07a x10:1c00bfc8 x11:000000b2 +76971719ns 1432187 1c003710 00b80633 add x12, x16, x11 x12=1c00bf72 x16:1c00bec0 x11:000000b2 +76971739ns 1432188 1c003714 00074683 lbu x13, 0(x14) x13=000000b2 x14:1c00c07a PA:1c00c07a +76971759ns 1432189 1c003718 00064603 lbu x12, 0(x12) x12=000000b2 x12:1c00bf72 PA:1c00bf72 +76971800ns 1432191 1c00371c 00c68f63 beq x13, x12, 30 x13:000000b2 x12:000000b2 +76971860ns 1432194 1c00373a 00158593 addi x11, x11, 1 x11=000000b3 x11:000000b2 +76971880ns 1432195 1c00373c fcf598e3 bne x11, x15, -48 x11:000000b3 x15:00000100 +76971941ns 1432198 1c00370c 00b50733 add x14, x10, x11 x14=1c00c07b x10:1c00bfc8 x11:000000b3 +76971961ns 1432199 1c003710 00b80633 add x12, x16, x11 x12=1c00bf73 x16:1c00bec0 x11:000000b3 +76971981ns 1432200 1c003714 00074683 lbu x13, 0(x14) x13=000000b3 x14:1c00c07b PA:1c00c07b +76972001ns 1432201 1c003718 00064603 lbu x12, 0(x12) x12=000000b3 x12:1c00bf73 PA:1c00bf73 +76972042ns 1432203 1c00371c 00c68f63 beq x13, x12, 30 x13:000000b3 x12:000000b3 +76972102ns 1432206 1c00373a 00158593 addi x11, x11, 1 x11=000000b4 x11:000000b3 +76972123ns 1432207 1c00373c fcf598e3 bne x11, x15, -48 x11:000000b4 x15:00000100 +76972183ns 1432210 1c00370c 00b50733 add x14, x10, x11 x14=1c00c07c x10:1c00bfc8 x11:000000b4 +76972203ns 1432211 1c003710 00b80633 add x12, x16, x11 x12=1c00bf74 x16:1c00bec0 x11:000000b4 +76972224ns 1432212 1c003714 00074683 lbu x13, 0(x14) x13=000000b4 x14:1c00c07c PA:1c00c07c +76972244ns 1432213 1c003718 00064603 lbu x12, 0(x12) x12=000000b4 x12:1c00bf74 PA:1c00bf74 +76972284ns 1432215 1c00371c 00c68f63 beq x13, x12, 30 x13:000000b4 x12:000000b4 +76972345ns 1432218 1c00373a 00158593 addi x11, x11, 1 x11=000000b5 x11:000000b4 +76972365ns 1432219 1c00373c fcf598e3 bne x11, x15, -48 x11:000000b5 x15:00000100 +76972425ns 1432222 1c00370c 00b50733 add x14, x10, x11 x14=1c00c07d x10:1c00bfc8 x11:000000b5 +76972446ns 1432223 1c003710 00b80633 add x12, x16, x11 x12=1c00bf75 x16:1c00bec0 x11:000000b5 +76972466ns 1432224 1c003714 00074683 lbu x13, 0(x14) x13=000000b5 x14:1c00c07d PA:1c00c07d +76972486ns 1432225 1c003718 00064603 lbu x12, 0(x12) x12=000000b5 x12:1c00bf75 PA:1c00bf75 +76972526ns 1432227 1c00371c 00c68f63 beq x13, x12, 30 x13:000000b5 x12:000000b5 +76972587ns 1432230 1c00373a 00158593 addi x11, x11, 1 x11=000000b6 x11:000000b5 +76972607ns 1432231 1c00373c fcf598e3 bne x11, x15, -48 x11:000000b6 x15:00000100 +76972668ns 1432234 1c00370c 00b50733 add x14, x10, x11 x14=1c00c07e x10:1c00bfc8 x11:000000b6 +76972688ns 1432235 1c003710 00b80633 add x12, x16, x11 x12=1c00bf76 x16:1c00bec0 x11:000000b6 +76972708ns 1432236 1c003714 00074683 lbu x13, 0(x14) x13=000000b6 x14:1c00c07e PA:1c00c07e +76972728ns 1432237 1c003718 00064603 lbu x12, 0(x12) x12=000000b6 x12:1c00bf76 PA:1c00bf76 +76972769ns 1432239 1c00371c 00c68f63 beq x13, x12, 30 x13:000000b6 x12:000000b6 +76972829ns 1432242 1c00373a 00158593 addi x11, x11, 1 x11=000000b7 x11:000000b6 +76972850ns 1432243 1c00373c fcf598e3 bne x11, x15, -48 x11:000000b7 x15:00000100 +76972910ns 1432246 1c00370c 00b50733 add x14, x10, x11 x14=1c00c07f x10:1c00bfc8 x11:000000b7 +76972930ns 1432247 1c003710 00b80633 add x12, x16, x11 x12=1c00bf77 x16:1c00bec0 x11:000000b7 +76972950ns 1432248 1c003714 00074683 lbu x13, 0(x14) x13=000000b7 x14:1c00c07f PA:1c00c07f +76972971ns 1432249 1c003718 00064603 lbu x12, 0(x12) x12=000000b7 x12:1c00bf77 PA:1c00bf77 +76973011ns 1432251 1c00371c 00c68f63 beq x13, x12, 30 x13:000000b7 x12:000000b7 +76973072ns 1432254 1c00373a 00158593 addi x11, x11, 1 x11=000000b8 x11:000000b7 +76973092ns 1432255 1c00373c fcf598e3 bne x11, x15, -48 x11:000000b8 x15:00000100 +76973152ns 1432258 1c00370c 00b50733 add x14, x10, x11 x14=1c00c080 x10:1c00bfc8 x11:000000b8 +76973173ns 1432259 1c003710 00b80633 add x12, x16, x11 x12=1c00bf78 x16:1c00bec0 x11:000000b8 +76973193ns 1432260 1c003714 00074683 lbu x13, 0(x14) x13=000000b8 x14:1c00c080 PA:1c00c080 +76973213ns 1432261 1c003718 00064603 lbu x12, 0(x12) x12=000000b8 x12:1c00bf78 PA:1c00bf78 +76973253ns 1432263 1c00371c 00c68f63 beq x13, x12, 30 x13:000000b8 x12:000000b8 +76973314ns 1432266 1c00373a 00158593 addi x11, x11, 1 x11=000000b9 x11:000000b8 +76973334ns 1432267 1c00373c fcf598e3 bne x11, x15, -48 x11:000000b9 x15:00000100 +76973395ns 1432270 1c00370c 00b50733 add x14, x10, x11 x14=1c00c081 x10:1c00bfc8 x11:000000b9 +76973415ns 1432271 1c003710 00b80633 add x12, x16, x11 x12=1c00bf79 x16:1c00bec0 x11:000000b9 +76973435ns 1432272 1c003714 00074683 lbu x13, 0(x14) x13=000000b9 x14:1c00c081 PA:1c00c081 +76973455ns 1432273 1c003718 00064603 lbu x12, 0(x12) x12=000000b9 x12:1c00bf79 PA:1c00bf79 +76973496ns 1432275 1c00371c 00c68f63 beq x13, x12, 30 x13:000000b9 x12:000000b9 +76973556ns 1432278 1c00373a 00158593 addi x11, x11, 1 x11=000000ba x11:000000b9 +76973576ns 1432279 1c00373c fcf598e3 bne x11, x15, -48 x11:000000ba x15:00000100 +76973637ns 1432282 1c00370c 00b50733 add x14, x10, x11 x14=1c00c082 x10:1c00bfc8 x11:000000ba +76973657ns 1432283 1c003710 00b80633 add x12, x16, x11 x12=1c00bf7a x16:1c00bec0 x11:000000ba +76973677ns 1432284 1c003714 00074683 lbu x13, 0(x14) x13=000000ba x14:1c00c082 PA:1c00c082 +76973698ns 1432285 1c003718 00064603 lbu x12, 0(x12) x12=000000ba x12:1c00bf7a PA:1c00bf7a +76973738ns 1432287 1c00371c 00c68f63 beq x13, x12, 30 x13:000000ba x12:000000ba +76973799ns 1432290 1c00373a 00158593 addi x11, x11, 1 x11=000000bb x11:000000ba +76973819ns 1432291 1c00373c fcf598e3 bne x11, x15, -48 x11:000000bb x15:00000100 +76973879ns 1432294 1c00370c 00b50733 add x14, x10, x11 x14=1c00c083 x10:1c00bfc8 x11:000000bb +76973899ns 1432295 1c003710 00b80633 add x12, x16, x11 x12=1c00bf7b x16:1c00bec0 x11:000000bb +76973920ns 1432296 1c003714 00074683 lbu x13, 0(x14) x13=000000bb x14:1c00c083 PA:1c00c083 +76973940ns 1432297 1c003718 00064603 lbu x12, 0(x12) x12=000000bb x12:1c00bf7b PA:1c00bf7b +76973980ns 1432299 1c00371c 00c68f63 beq x13, x12, 30 x13:000000bb x12:000000bb +76974041ns 1432302 1c00373a 00158593 addi x11, x11, 1 x11=000000bc x11:000000bb +76974061ns 1432303 1c00373c fcf598e3 bne x11, x15, -48 x11:000000bc x15:00000100 +76974122ns 1432306 1c00370c 00b50733 add x14, x10, x11 x14=1c00c084 x10:1c00bfc8 x11:000000bc +76974142ns 1432307 1c003710 00b80633 add x12, x16, x11 x12=1c00bf7c x16:1c00bec0 x11:000000bc +76974162ns 1432308 1c003714 00074683 lbu x13, 0(x14) x13=000000bc x14:1c00c084 PA:1c00c084 +76974182ns 1432309 1c003718 00064603 lbu x12, 0(x12) x12=000000bc x12:1c00bf7c PA:1c00bf7c +76974223ns 1432311 1c00371c 00c68f63 beq x13, x12, 30 x13:000000bc x12:000000bc +76974283ns 1432314 1c00373a 00158593 addi x11, x11, 1 x11=000000bd x11:000000bc +76974303ns 1432315 1c00373c fcf598e3 bne x11, x15, -48 x11:000000bd x15:00000100 +76974364ns 1432318 1c00370c 00b50733 add x14, x10, x11 x14=1c00c085 x10:1c00bfc8 x11:000000bd +76974384ns 1432319 1c003710 00b80633 add x12, x16, x11 x12=1c00bf7d x16:1c00bec0 x11:000000bd +76974404ns 1432320 1c003714 00074683 lbu x13, 0(x14) x13=000000bd x14:1c00c085 PA:1c00c085 +76974424ns 1432321 1c003718 00064603 lbu x12, 0(x12) x12=000000bd x12:1c00bf7d PA:1c00bf7d +76974465ns 1432323 1c00371c 00c68f63 beq x13, x12, 30 x13:000000bd x12:000000bd +76974525ns 1432326 1c00373a 00158593 addi x11, x11, 1 x11=000000be x11:000000bd +76974546ns 1432327 1c00373c fcf598e3 bne x11, x15, -48 x11:000000be x15:00000100 +76974606ns 1432330 1c00370c 00b50733 add x14, x10, x11 x14=1c00c086 x10:1c00bfc8 x11:000000be +76974626ns 1432331 1c003710 00b80633 add x12, x16, x11 x12=1c00bf7e x16:1c00bec0 x11:000000be +76974647ns 1432332 1c003714 00074683 lbu x13, 0(x14) x13=000000be x14:1c00c086 PA:1c00c086 +76974667ns 1432333 1c003718 00064603 lbu x12, 0(x12) x12=000000be x12:1c00bf7e PA:1c00bf7e +76974707ns 1432335 1c00371c 00c68f63 beq x13, x12, 30 x13:000000be x12:000000be +76974768ns 1432338 1c00373a 00158593 addi x11, x11, 1 x11=000000bf x11:000000be +76974788ns 1432339 1c00373c fcf598e3 bne x11, x15, -48 x11:000000bf x15:00000100 +76974849ns 1432342 1c00370c 00b50733 add x14, x10, x11 x14=1c00c087 x10:1c00bfc8 x11:000000bf +76974869ns 1432343 1c003710 00b80633 add x12, x16, x11 x12=1c00bf7f x16:1c00bec0 x11:000000bf +76974889ns 1432344 1c003714 00074683 lbu x13, 0(x14) x13=000000bf x14:1c00c087 PA:1c00c087 +76974909ns 1432345 1c003718 00064603 lbu x12, 0(x12) x12=000000bf x12:1c00bf7f PA:1c00bf7f +76974949ns 1432347 1c00371c 00c68f63 beq x13, x12, 30 x13:000000bf x12:000000bf +76975010ns 1432350 1c00373a 00158593 addi x11, x11, 1 x11=000000c0 x11:000000bf +76975030ns 1432351 1c00373c fcf598e3 bne x11, x15, -48 x11:000000c0 x15:00000100 +76975091ns 1432354 1c00370c 00b50733 add x14, x10, x11 x14=1c00c088 x10:1c00bfc8 x11:000000c0 +76975111ns 1432355 1c003710 00b80633 add x12, x16, x11 x12=1c00bf80 x16:1c00bec0 x11:000000c0 +76975131ns 1432356 1c003714 00074683 lbu x13, 0(x14) x13=000000c0 x14:1c00c088 PA:1c00c088 +76975151ns 1432357 1c003718 00064603 lbu x12, 0(x12) x12=000000c0 x12:1c00bf80 PA:1c00bf80 +76975192ns 1432359 1c00371c 00c68f63 beq x13, x12, 30 x13:000000c0 x12:000000c0 +76975252ns 1432362 1c00373a 00158593 addi x11, x11, 1 x11=000000c1 x11:000000c0 +76975273ns 1432363 1c00373c fcf598e3 bne x11, x15, -48 x11:000000c1 x15:00000100 +76975333ns 1432366 1c00370c 00b50733 add x14, x10, x11 x14=1c00c089 x10:1c00bfc8 x11:000000c1 +76975353ns 1432367 1c003710 00b80633 add x12, x16, x11 x12=1c00bf81 x16:1c00bec0 x11:000000c1 +76975374ns 1432368 1c003714 00074683 lbu x13, 0(x14) x13=000000c1 x14:1c00c089 PA:1c00c089 +76975394ns 1432369 1c003718 00064603 lbu x12, 0(x12) x12=000000c1 x12:1c00bf81 PA:1c00bf81 +76975434ns 1432371 1c00371c 00c68f63 beq x13, x12, 30 x13:000000c1 x12:000000c1 +76975495ns 1432374 1c00373a 00158593 addi x11, x11, 1 x11=000000c2 x11:000000c1 +76975515ns 1432375 1c00373c fcf598e3 bne x11, x15, -48 x11:000000c2 x15:00000100 +76975575ns 1432378 1c00370c 00b50733 add x14, x10, x11 x14=1c00c08a x10:1c00bfc8 x11:000000c2 +76975596ns 1432379 1c003710 00b80633 add x12, x16, x11 x12=1c00bf82 x16:1c00bec0 x11:000000c2 +76975616ns 1432380 1c003714 00074683 lbu x13, 0(x14) x13=000000c2 x14:1c00c08a PA:1c00c08a +76975636ns 1432381 1c003718 00064603 lbu x12, 0(x12) x12=000000c2 x12:1c00bf82 PA:1c00bf82 +76975676ns 1432383 1c00371c 00c68f63 beq x13, x12, 30 x13:000000c2 x12:000000c2 +76975737ns 1432386 1c00373a 00158593 addi x11, x11, 1 x11=000000c3 x11:000000c2 +76975757ns 1432387 1c00373c fcf598e3 bne x11, x15, -48 x11:000000c3 x15:00000100 +76975818ns 1432390 1c00370c 00b50733 add x14, x10, x11 x14=1c00c08b x10:1c00bfc8 x11:000000c3 +76975838ns 1432391 1c003710 00b80633 add x12, x16, x11 x12=1c00bf83 x16:1c00bec0 x11:000000c3 +76975858ns 1432392 1c003714 00074683 lbu x13, 0(x14) x13=000000c3 x14:1c00c08b PA:1c00c08b +76975878ns 1432393 1c003718 00064603 lbu x12, 0(x12) x12=000000c3 x12:1c00bf83 PA:1c00bf83 +76975919ns 1432395 1c00371c 00c68f63 beq x13, x12, 30 x13:000000c3 x12:000000c3 +76975979ns 1432398 1c00373a 00158593 addi x11, x11, 1 x11=000000c4 x11:000000c3 +76975999ns 1432399 1c00373c fcf598e3 bne x11, x15, -48 x11:000000c4 x15:00000100 +76976060ns 1432402 1c00370c 00b50733 add x14, x10, x11 x14=1c00c08c x10:1c00bfc8 x11:000000c4 +76976080ns 1432403 1c003710 00b80633 add x12, x16, x11 x12=1c00bf84 x16:1c00bec0 x11:000000c4 +76976100ns 1432404 1c003714 00074683 lbu x13, 0(x14) x13=000000c4 x14:1c00c08c PA:1c00c08c +76976121ns 1432405 1c003718 00064603 lbu x12, 0(x12) x12=000000c4 x12:1c00bf84 PA:1c00bf84 +76976161ns 1432407 1c00371c 00c68f63 beq x13, x12, 30 x13:000000c4 x12:000000c4 +76976222ns 1432410 1c00373a 00158593 addi x11, x11, 1 x11=000000c5 x11:000000c4 +76976242ns 1432411 1c00373c fcf598e3 bne x11, x15, -48 x11:000000c5 x15:00000100 +76976302ns 1432414 1c00370c 00b50733 add x14, x10, x11 x14=1c00c08d x10:1c00bfc8 x11:000000c5 +76976323ns 1432415 1c003710 00b80633 add x12, x16, x11 x12=1c00bf85 x16:1c00bec0 x11:000000c5 +76976343ns 1432416 1c003714 00074683 lbu x13, 0(x14) x13=000000c5 x14:1c00c08d PA:1c00c08d +76976363ns 1432417 1c003718 00064603 lbu x12, 0(x12) x12=000000c5 x12:1c00bf85 PA:1c00bf85 +76976403ns 1432419 1c00371c 00c68f63 beq x13, x12, 30 x13:000000c5 x12:000000c5 +76976464ns 1432422 1c00373a 00158593 addi x11, x11, 1 x11=000000c6 x11:000000c5 +76976484ns 1432423 1c00373c fcf598e3 bne x11, x15, -48 x11:000000c6 x15:00000100 +76976545ns 1432426 1c00370c 00b50733 add x14, x10, x11 x14=1c00c08e x10:1c00bfc8 x11:000000c6 +76976565ns 1432427 1c003710 00b80633 add x12, x16, x11 x12=1c00bf86 x16:1c00bec0 x11:000000c6 +76976585ns 1432428 1c003714 00074683 lbu x13, 0(x14) x13=000000c6 x14:1c00c08e PA:1c00c08e +76976605ns 1432429 1c003718 00064603 lbu x12, 0(x12) x12=000000c6 x12:1c00bf86 PA:1c00bf86 +76976646ns 1432431 1c00371c 00c68f63 beq x13, x12, 30 x13:000000c6 x12:000000c6 +76976706ns 1432434 1c00373a 00158593 addi x11, x11, 1 x11=000000c7 x11:000000c6 +76976726ns 1432435 1c00373c fcf598e3 bne x11, x15, -48 x11:000000c7 x15:00000100 +76976787ns 1432438 1c00370c 00b50733 add x14, x10, x11 x14=1c00c08f x10:1c00bfc8 x11:000000c7 +76976807ns 1432439 1c003710 00b80633 add x12, x16, x11 x12=1c00bf87 x16:1c00bec0 x11:000000c7 +76976827ns 1432440 1c003714 00074683 lbu x13, 0(x14) x13=000000c7 x14:1c00c08f PA:1c00c08f +76976848ns 1432441 1c003718 00064603 lbu x12, 0(x12) x12=000000c7 x12:1c00bf87 PA:1c00bf87 +76976888ns 1432443 1c00371c 00c68f63 beq x13, x12, 30 x13:000000c7 x12:000000c7 +76976948ns 1432446 1c00373a 00158593 addi x11, x11, 1 x11=000000c8 x11:000000c7 +76976969ns 1432447 1c00373c fcf598e3 bne x11, x15, -48 x11:000000c8 x15:00000100 +76977029ns 1432450 1c00370c 00b50733 add x14, x10, x11 x14=1c00c090 x10:1c00bfc8 x11:000000c8 +76977049ns 1432451 1c003710 00b80633 add x12, x16, x11 x12=1c00bf88 x16:1c00bec0 x11:000000c8 +76977070ns 1432452 1c003714 00074683 lbu x13, 0(x14) x13=000000c8 x14:1c00c090 PA:1c00c090 +76977090ns 1432453 1c003718 00064603 lbu x12, 0(x12) x12=000000c8 x12:1c00bf88 PA:1c00bf88 +76977130ns 1432455 1c00371c 00c68f63 beq x13, x12, 30 x13:000000c8 x12:000000c8 +76977191ns 1432458 1c00373a 00158593 addi x11, x11, 1 x11=000000c9 x11:000000c8 +76977211ns 1432459 1c00373c fcf598e3 bne x11, x15, -48 x11:000000c9 x15:00000100 +76977272ns 1432462 1c00370c 00b50733 add x14, x10, x11 x14=1c00c091 x10:1c00bfc8 x11:000000c9 +76977292ns 1432463 1c003710 00b80633 add x12, x16, x11 x12=1c00bf89 x16:1c00bec0 x11:000000c9 +76977312ns 1432464 1c003714 00074683 lbu x13, 0(x14) x13=000000c9 x14:1c00c091 PA:1c00c091 +76977332ns 1432465 1c003718 00064603 lbu x12, 0(x12) x12=000000c9 x12:1c00bf89 PA:1c00bf89 +76977373ns 1432467 1c00371c 00c68f63 beq x13, x12, 30 x13:000000c9 x12:000000c9 +76977433ns 1432470 1c00373a 00158593 addi x11, x11, 1 x11=000000ca x11:000000c9 +76977453ns 1432471 1c00373c fcf598e3 bne x11, x15, -48 x11:000000ca x15:00000100 +76977514ns 1432474 1c00370c 00b50733 add x14, x10, x11 x14=1c00c092 x10:1c00bfc8 x11:000000ca +76977534ns 1432475 1c003710 00b80633 add x12, x16, x11 x12=1c00bf8a x16:1c00bec0 x11:000000ca +76977554ns 1432476 1c003714 00074683 lbu x13, 0(x14) x13=000000ca x14:1c00c092 PA:1c00c092 +76977574ns 1432477 1c003718 00064603 lbu x12, 0(x12) x12=000000ca x12:1c00bf8a PA:1c00bf8a +76977615ns 1432479 1c00371c 00c68f63 beq x13, x12, 30 x13:000000ca x12:000000ca +76977675ns 1432482 1c00373a 00158593 addi x11, x11, 1 x11=000000cb x11:000000ca +76977696ns 1432483 1c00373c fcf598e3 bne x11, x15, -48 x11:000000cb x15:00000100 +76977756ns 1432486 1c00370c 00b50733 add x14, x10, x11 x14=1c00c093 x10:1c00bfc8 x11:000000cb +76977776ns 1432487 1c003710 00b80633 add x12, x16, x11 x12=1c00bf8b x16:1c00bec0 x11:000000cb +76977797ns 1432488 1c003714 00074683 lbu x13, 0(x14) x13=000000cb x14:1c00c093 PA:1c00c093 +76977817ns 1432489 1c003718 00064603 lbu x12, 0(x12) x12=000000cb x12:1c00bf8b PA:1c00bf8b +76977857ns 1432491 1c00371c 00c68f63 beq x13, x12, 30 x13:000000cb x12:000000cb +76977918ns 1432494 1c00373a 00158593 addi x11, x11, 1 x11=000000cc x11:000000cb +76977938ns 1432495 1c00373c fcf598e3 bne x11, x15, -48 x11:000000cc x15:00000100 +76977998ns 1432498 1c00370c 00b50733 add x14, x10, x11 x14=1c00c094 x10:1c00bfc8 x11:000000cc +76978019ns 1432499 1c003710 00b80633 add x12, x16, x11 x12=1c00bf8c x16:1c00bec0 x11:000000cc +76978039ns 1432500 1c003714 00074683 lbu x13, 0(x14) x13=000000cc x14:1c00c094 PA:1c00c094 +76978059ns 1432501 1c003718 00064603 lbu x12, 0(x12) x12=000000cc x12:1c00bf8c PA:1c00bf8c +76978099ns 1432503 1c00371c 00c68f63 beq x13, x12, 30 x13:000000cc x12:000000cc +76978160ns 1432506 1c00373a 00158593 addi x11, x11, 1 x11=000000cd x11:000000cc +76978180ns 1432507 1c00373c fcf598e3 bne x11, x15, -48 x11:000000cd x15:00000100 +76978241ns 1432510 1c00370c 00b50733 add x14, x10, x11 x14=1c00c095 x10:1c00bfc8 x11:000000cd +76978261ns 1432511 1c003710 00b80633 add x12, x16, x11 x12=1c00bf8d x16:1c00bec0 x11:000000cd +76978281ns 1432512 1c003714 00074683 lbu x13, 0(x14) x13=000000cd x14:1c00c095 PA:1c00c095 +76978301ns 1432513 1c003718 00064603 lbu x12, 0(x12) x12=000000cd x12:1c00bf8d PA:1c00bf8d +76978342ns 1432515 1c00371c 00c68f63 beq x13, x12, 30 x13:000000cd x12:000000cd +76978402ns 1432518 1c00373a 00158593 addi x11, x11, 1 x11=000000ce x11:000000cd +76978423ns 1432519 1c00373c fcf598e3 bne x11, x15, -48 x11:000000ce x15:00000100 +76978483ns 1432522 1c00370c 00b50733 add x14, x10, x11 x14=1c00c096 x10:1c00bfc8 x11:000000ce +76978503ns 1432523 1c003710 00b80633 add x12, x16, x11 x12=1c00bf8e x16:1c00bec0 x11:000000ce +76978523ns 1432524 1c003714 00074683 lbu x13, 0(x14) x13=000000ce x14:1c00c096 PA:1c00c096 +76978544ns 1432525 1c003718 00064603 lbu x12, 0(x12) x12=000000ce x12:1c00bf8e PA:1c00bf8e +76978584ns 1432527 1c00371c 00c68f63 beq x13, x12, 30 x13:000000ce x12:000000ce +76978645ns 1432530 1c00373a 00158593 addi x11, x11, 1 x11=000000cf x11:000000ce +76978665ns 1432531 1c00373c fcf598e3 bne x11, x15, -48 x11:000000cf x15:00000100 +76978725ns 1432534 1c00370c 00b50733 add x14, x10, x11 x14=1c00c097 x10:1c00bfc8 x11:000000cf +76978746ns 1432535 1c003710 00b80633 add x12, x16, x11 x12=1c00bf8f x16:1c00bec0 x11:000000cf +76978766ns 1432536 1c003714 00074683 lbu x13, 0(x14) x13=000000cf x14:1c00c097 PA:1c00c097 +76978786ns 1432537 1c003718 00064603 lbu x12, 0(x12) x12=000000cf x12:1c00bf8f PA:1c00bf8f +76978826ns 1432539 1c00371c 00c68f63 beq x13, x12, 30 x13:000000cf x12:000000cf +76978887ns 1432542 1c00373a 00158593 addi x11, x11, 1 x11=000000d0 x11:000000cf +76978907ns 1432543 1c00373c fcf598e3 bne x11, x15, -48 x11:000000d0 x15:00000100 +76978968ns 1432546 1c00370c 00b50733 add x14, x10, x11 x14=1c00c098 x10:1c00bfc8 x11:000000d0 +76978988ns 1432547 1c003710 00b80633 add x12, x16, x11 x12=1c00bf90 x16:1c00bec0 x11:000000d0 +76979008ns 1432548 1c003714 00074683 lbu x13, 0(x14) x13=000000d0 x14:1c00c098 PA:1c00c098 +76979028ns 1432549 1c003718 00064603 lbu x12, 0(x12) x12=000000d0 x12:1c00bf90 PA:1c00bf90 +76979069ns 1432551 1c00371c 00c68f63 beq x13, x12, 30 x13:000000d0 x12:000000d0 +76979129ns 1432554 1c00373a 00158593 addi x11, x11, 1 x11=000000d1 x11:000000d0 +76979149ns 1432555 1c00373c fcf598e3 bne x11, x15, -48 x11:000000d1 x15:00000100 +76979210ns 1432558 1c00370c 00b50733 add x14, x10, x11 x14=1c00c099 x10:1c00bfc8 x11:000000d1 +76979230ns 1432559 1c003710 00b80633 add x12, x16, x11 x12=1c00bf91 x16:1c00bec0 x11:000000d1 +76979250ns 1432560 1c003714 00074683 lbu x13, 0(x14) x13=000000d1 x14:1c00c099 PA:1c00c099 +76979271ns 1432561 1c003718 00064603 lbu x12, 0(x12) x12=000000d1 x12:1c00bf91 PA:1c00bf91 +76979311ns 1432563 1c00371c 00c68f63 beq x13, x12, 30 x13:000000d1 x12:000000d1 +76979372ns 1432566 1c00373a 00158593 addi x11, x11, 1 x11=000000d2 x11:000000d1 +76979392ns 1432567 1c00373c fcf598e3 bne x11, x15, -48 x11:000000d2 x15:00000100 +76979452ns 1432570 1c00370c 00b50733 add x14, x10, x11 x14=1c00c09a x10:1c00bfc8 x11:000000d2 +76979472ns 1432571 1c003710 00b80633 add x12, x16, x11 x12=1c00bf92 x16:1c00bec0 x11:000000d2 +76979493ns 1432572 1c003714 00074683 lbu x13, 0(x14) x13=000000d2 x14:1c00c09a PA:1c00c09a +76979513ns 1432573 1c003718 00064603 lbu x12, 0(x12) x12=000000d2 x12:1c00bf92 PA:1c00bf92 +76979553ns 1432575 1c00371c 00c68f63 beq x13, x12, 30 x13:000000d2 x12:000000d2 +76979614ns 1432578 1c00373a 00158593 addi x11, x11, 1 x11=000000d3 x11:000000d2 +76979634ns 1432579 1c00373c fcf598e3 bne x11, x15, -48 x11:000000d3 x15:00000100 +76979695ns 1432582 1c00370c 00b50733 add x14, x10, x11 x14=1c00c09b x10:1c00bfc8 x11:000000d3 +76979715ns 1432583 1c003710 00b80633 add x12, x16, x11 x12=1c00bf93 x16:1c00bec0 x11:000000d3 +76979735ns 1432584 1c003714 00074683 lbu x13, 0(x14) x13=000000d3 x14:1c00c09b PA:1c00c09b +76979755ns 1432585 1c003718 00064603 lbu x12, 0(x12) x12=000000d3 x12:1c00bf93 PA:1c00bf93 +76979796ns 1432587 1c00371c 00c68f63 beq x13, x12, 30 x13:000000d3 x12:000000d3 +76979856ns 1432590 1c00373a 00158593 addi x11, x11, 1 x11=000000d4 x11:000000d3 +76979876ns 1432591 1c00373c fcf598e3 bne x11, x15, -48 x11:000000d4 x15:00000100 +76979937ns 1432594 1c00370c 00b50733 add x14, x10, x11 x14=1c00c09c x10:1c00bfc8 x11:000000d4 +76979957ns 1432595 1c003710 00b80633 add x12, x16, x11 x12=1c00bf94 x16:1c00bec0 x11:000000d4 +76979977ns 1432596 1c003714 00074683 lbu x13, 0(x14) x13=000000d4 x14:1c00c09c PA:1c00c09c +76979997ns 1432597 1c003718 00064603 lbu x12, 0(x12) x12=000000d4 x12:1c00bf94 PA:1c00bf94 +76980038ns 1432599 1c00371c 00c68f63 beq x13, x12, 30 x13:000000d4 x12:000000d4 +76980098ns 1432602 1c00373a 00158593 addi x11, x11, 1 x11=000000d5 x11:000000d4 +76980119ns 1432603 1c00373c fcf598e3 bne x11, x15, -48 x11:000000d5 x15:00000100 +76980179ns 1432606 1c00370c 00b50733 add x14, x10, x11 x14=1c00c09d x10:1c00bfc8 x11:000000d5 +76980199ns 1432607 1c003710 00b80633 add x12, x16, x11 x12=1c00bf95 x16:1c00bec0 x11:000000d5 +76980220ns 1432608 1c003714 00074683 lbu x13, 0(x14) x13=000000d5 x14:1c00c09d PA:1c00c09d +76980240ns 1432609 1c003718 00064603 lbu x12, 0(x12) x12=000000d5 x12:1c00bf95 PA:1c00bf95 +76980280ns 1432611 1c00371c 00c68f63 beq x13, x12, 30 x13:000000d5 x12:000000d5 +76980341ns 1432614 1c00373a 00158593 addi x11, x11, 1 x11=000000d6 x11:000000d5 +76980361ns 1432615 1c00373c fcf598e3 bne x11, x15, -48 x11:000000d6 x15:00000100 +76980422ns 1432618 1c00370c 00b50733 add x14, x10, x11 x14=1c00c09e x10:1c00bfc8 x11:000000d6 +76980442ns 1432619 1c003710 00b80633 add x12, x16, x11 x12=1c00bf96 x16:1c00bec0 x11:000000d6 +76980462ns 1432620 1c003714 00074683 lbu x13, 0(x14) x13=000000d6 x14:1c00c09e PA:1c00c09e +76980482ns 1432621 1c003718 00064603 lbu x12, 0(x12) x12=000000d6 x12:1c00bf96 PA:1c00bf96 +76980522ns 1432623 1c00371c 00c68f63 beq x13, x12, 30 x13:000000d6 x12:000000d6 +76980583ns 1432626 1c00373a 00158593 addi x11, x11, 1 x11=000000d7 x11:000000d6 +76980603ns 1432627 1c00373c fcf598e3 bne x11, x15, -48 x11:000000d7 x15:00000100 +76980664ns 1432630 1c00370c 00b50733 add x14, x10, x11 x14=1c00c09f x10:1c00bfc8 x11:000000d7 +76980684ns 1432631 1c003710 00b80633 add x12, x16, x11 x12=1c00bf97 x16:1c00bec0 x11:000000d7 +76980704ns 1432632 1c003714 00074683 lbu x13, 0(x14) x13=000000d7 x14:1c00c09f PA:1c00c09f +76980724ns 1432633 1c003718 00064603 lbu x12, 0(x12) x12=000000d7 x12:1c00bf97 PA:1c00bf97 +76980765ns 1432635 1c00371c 00c68f63 beq x13, x12, 30 x13:000000d7 x12:000000d7 +76980825ns 1432638 1c00373a 00158593 addi x11, x11, 1 x11=000000d8 x11:000000d7 +76980846ns 1432639 1c00373c fcf598e3 bne x11, x15, -48 x11:000000d8 x15:00000100 +76980906ns 1432642 1c00370c 00b50733 add x14, x10, x11 x14=1c00c0a0 x10:1c00bfc8 x11:000000d8 +76980926ns 1432643 1c003710 00b80633 add x12, x16, x11 x12=1c00bf98 x16:1c00bec0 x11:000000d8 +76980947ns 1432644 1c003714 00074683 lbu x13, 0(x14) x13=000000d8 x14:1c00c0a0 PA:1c00c0a0 +76980967ns 1432645 1c003718 00064603 lbu x12, 0(x12) x12=000000d8 x12:1c00bf98 PA:1c00bf98 +76981007ns 1432647 1c00371c 00c68f63 beq x13, x12, 30 x13:000000d8 x12:000000d8 +76981068ns 1432650 1c00373a 00158593 addi x11, x11, 1 x11=000000d9 x11:000000d8 +76981088ns 1432651 1c00373c fcf598e3 bne x11, x15, -48 x11:000000d9 x15:00000100 +76981148ns 1432654 1c00370c 00b50733 add x14, x10, x11 x14=1c00c0a1 x10:1c00bfc8 x11:000000d9 +76981169ns 1432655 1c003710 00b80633 add x12, x16, x11 x12=1c00bf99 x16:1c00bec0 x11:000000d9 +76981189ns 1432656 1c003714 00074683 lbu x13, 0(x14) x13=000000d9 x14:1c00c0a1 PA:1c00c0a1 +76981209ns 1432657 1c003718 00064603 lbu x12, 0(x12) x12=000000d9 x12:1c00bf99 PA:1c00bf99 +76981249ns 1432659 1c00371c 00c68f63 beq x13, x12, 30 x13:000000d9 x12:000000d9 +76981310ns 1432662 1c00373a 00158593 addi x11, x11, 1 x11=000000da x11:000000d9 +76981330ns 1432663 1c00373c fcf598e3 bne x11, x15, -48 x11:000000da x15:00000100 +76981391ns 1432666 1c00370c 00b50733 add x14, x10, x11 x14=1c00c0a2 x10:1c00bfc8 x11:000000da +76981411ns 1432667 1c003710 00b80633 add x12, x16, x11 x12=1c00bf9a x16:1c00bec0 x11:000000da +76981431ns 1432668 1c003714 00074683 lbu x13, 0(x14) x13=000000da x14:1c00c0a2 PA:1c00c0a2 +76981451ns 1432669 1c003718 00064603 lbu x12, 0(x12) x12=000000da x12:1c00bf9a PA:1c00bf9a +76981492ns 1432671 1c00371c 00c68f63 beq x13, x12, 30 x13:000000da x12:000000da +76981552ns 1432674 1c00373a 00158593 addi x11, x11, 1 x11=000000db x11:000000da +76981572ns 1432675 1c00373c fcf598e3 bne x11, x15, -48 x11:000000db x15:00000100 +76981633ns 1432678 1c00370c 00b50733 add x14, x10, x11 x14=1c00c0a3 x10:1c00bfc8 x11:000000db +76981653ns 1432679 1c003710 00b80633 add x12, x16, x11 x12=1c00bf9b x16:1c00bec0 x11:000000db +76981673ns 1432680 1c003714 00074683 lbu x13, 0(x14) x13=000000db x14:1c00c0a3 PA:1c00c0a3 +76981694ns 1432681 1c003718 00064603 lbu x12, 0(x12) x12=000000db x12:1c00bf9b PA:1c00bf9b +76981734ns 1432683 1c00371c 00c68f63 beq x13, x12, 30 x13:000000db x12:000000db +76981795ns 1432686 1c00373a 00158593 addi x11, x11, 1 x11=000000dc x11:000000db +76981815ns 1432687 1c00373c fcf598e3 bne x11, x15, -48 x11:000000dc x15:00000100 +76981875ns 1432690 1c00370c 00b50733 add x14, x10, x11 x14=1c00c0a4 x10:1c00bfc8 x11:000000dc +76981896ns 1432691 1c003710 00b80633 add x12, x16, x11 x12=1c00bf9c x16:1c00bec0 x11:000000dc +76981916ns 1432692 1c003714 00074683 lbu x13, 0(x14) x13=000000dc x14:1c00c0a4 PA:1c00c0a4 +76981936ns 1432693 1c003718 00064603 lbu x12, 0(x12) x12=000000dc x12:1c00bf9c PA:1c00bf9c +76981976ns 1432695 1c00371c 00c68f63 beq x13, x12, 30 x13:000000dc x12:000000dc +76982037ns 1432698 1c00373a 00158593 addi x11, x11, 1 x11=000000dd x11:000000dc +76982057ns 1432699 1c00373c fcf598e3 bne x11, x15, -48 x11:000000dd x15:00000100 +76982118ns 1432702 1c00370c 00b50733 add x14, x10, x11 x14=1c00c0a5 x10:1c00bfc8 x11:000000dd +76982138ns 1432703 1c003710 00b80633 add x12, x16, x11 x12=1c00bf9d x16:1c00bec0 x11:000000dd +76982158ns 1432704 1c003714 00074683 lbu x13, 0(x14) x13=000000dd x14:1c00c0a5 PA:1c00c0a5 +76982178ns 1432705 1c003718 00064603 lbu x12, 0(x12) x12=000000dd x12:1c00bf9d PA:1c00bf9d +76982219ns 1432707 1c00371c 00c68f63 beq x13, x12, 30 x13:000000dd x12:000000dd +76982279ns 1432710 1c00373a 00158593 addi x11, x11, 1 x11=000000de x11:000000dd +76982299ns 1432711 1c00373c fcf598e3 bne x11, x15, -48 x11:000000de x15:00000100 +76982360ns 1432714 1c00370c 00b50733 add x14, x10, x11 x14=1c00c0a6 x10:1c00bfc8 x11:000000de +76982380ns 1432715 1c003710 00b80633 add x12, x16, x11 x12=1c00bf9e x16:1c00bec0 x11:000000de +76982400ns 1432716 1c003714 00074683 lbu x13, 0(x14) x13=000000de x14:1c00c0a6 PA:1c00c0a6 +76982421ns 1432717 1c003718 00064603 lbu x12, 0(x12) x12=000000de x12:1c00bf9e PA:1c00bf9e +76982461ns 1432719 1c00371c 00c68f63 beq x13, x12, 30 x13:000000de x12:000000de +76982521ns 1432722 1c00373a 00158593 addi x11, x11, 1 x11=000000df x11:000000de +76982542ns 1432723 1c00373c fcf598e3 bne x11, x15, -48 x11:000000df x15:00000100 +76982602ns 1432726 1c00370c 00b50733 add x14, x10, x11 x14=1c00c0a7 x10:1c00bfc8 x11:000000df +76982622ns 1432727 1c003710 00b80633 add x12, x16, x11 x12=1c00bf9f x16:1c00bec0 x11:000000df +76982643ns 1432728 1c003714 00074683 lbu x13, 0(x14) x13=000000df x14:1c00c0a7 PA:1c00c0a7 +76982663ns 1432729 1c003718 00064603 lbu x12, 0(x12) x12=000000df x12:1c00bf9f PA:1c00bf9f +76982703ns 1432731 1c00371c 00c68f63 beq x13, x12, 30 x13:000000df x12:000000df +76982764ns 1432734 1c00373a 00158593 addi x11, x11, 1 x11=000000e0 x11:000000df +76982784ns 1432735 1c00373c fcf598e3 bne x11, x15, -48 x11:000000e0 x15:00000100 +76982845ns 1432738 1c00370c 00b50733 add x14, x10, x11 x14=1c00c0a8 x10:1c00bfc8 x11:000000e0 +76982865ns 1432739 1c003710 00b80633 add x12, x16, x11 x12=1c00bfa0 x16:1c00bec0 x11:000000e0 +76982885ns 1432740 1c003714 00074683 lbu x13, 0(x14) x13=000000e0 x14:1c00c0a8 PA:1c00c0a8 +76982905ns 1432741 1c003718 00064603 lbu x12, 0(x12) x12=000000e0 x12:1c00bfa0 PA:1c00bfa0 +76982946ns 1432743 1c00371c 00c68f63 beq x13, x12, 30 x13:000000e0 x12:000000e0 +76983006ns 1432746 1c00373a 00158593 addi x11, x11, 1 x11=000000e1 x11:000000e0 +76983026ns 1432747 1c00373c fcf598e3 bne x11, x15, -48 x11:000000e1 x15:00000100 +76983087ns 1432750 1c00370c 00b50733 add x14, x10, x11 x14=1c00c0a9 x10:1c00bfc8 x11:000000e1 +76983107ns 1432751 1c003710 00b80633 add x12, x16, x11 x12=1c00bfa1 x16:1c00bec0 x11:000000e1 +76983127ns 1432752 1c003714 00074683 lbu x13, 0(x14) x13=000000e1 x14:1c00c0a9 PA:1c00c0a9 +76983147ns 1432753 1c003718 00064603 lbu x12, 0(x12) x12=000000e1 x12:1c00bfa1 PA:1c00bfa1 +76983188ns 1432755 1c00371c 00c68f63 beq x13, x12, 30 x13:000000e1 x12:000000e1 +76983248ns 1432758 1c00373a 00158593 addi x11, x11, 1 x11=000000e2 x11:000000e1 +76983269ns 1432759 1c00373c fcf598e3 bne x11, x15, -48 x11:000000e2 x15:00000100 +76983329ns 1432762 1c00370c 00b50733 add x14, x10, x11 x14=1c00c0aa x10:1c00bfc8 x11:000000e2 +76983349ns 1432763 1c003710 00b80633 add x12, x16, x11 x12=1c00bfa2 x16:1c00bec0 x11:000000e2 +76983370ns 1432764 1c003714 00074683 lbu x13, 0(x14) x13=000000e2 x14:1c00c0aa PA:1c00c0aa +76983390ns 1432765 1c003718 00064603 lbu x12, 0(x12) x12=000000e2 x12:1c00bfa2 PA:1c00bfa2 +76983430ns 1432767 1c00371c 00c68f63 beq x13, x12, 30 x13:000000e2 x12:000000e2 +76983491ns 1432770 1c00373a 00158593 addi x11, x11, 1 x11=000000e3 x11:000000e2 +76983511ns 1432771 1c00373c fcf598e3 bne x11, x15, -48 x11:000000e3 x15:00000100 +76983571ns 1432774 1c00370c 00b50733 add x14, x10, x11 x14=1c00c0ab x10:1c00bfc8 x11:000000e3 +76983592ns 1432775 1c003710 00b80633 add x12, x16, x11 x12=1c00bfa3 x16:1c00bec0 x11:000000e3 +76983612ns 1432776 1c003714 00074683 lbu x13, 0(x14) x13=000000e3 x14:1c00c0ab PA:1c00c0ab +76983632ns 1432777 1c003718 00064603 lbu x12, 0(x12) x12=000000e3 x12:1c00bfa3 PA:1c00bfa3 +76983672ns 1432779 1c00371c 00c68f63 beq x13, x12, 30 x13:000000e3 x12:000000e3 +76983733ns 1432782 1c00373a 00158593 addi x11, x11, 1 x11=000000e4 x11:000000e3 +76983753ns 1432783 1c00373c fcf598e3 bne x11, x15, -48 x11:000000e4 x15:00000100 +76983814ns 1432786 1c00370c 00b50733 add x14, x10, x11 x14=1c00c0ac x10:1c00bfc8 x11:000000e4 +76983834ns 1432787 1c003710 00b80633 add x12, x16, x11 x12=1c00bfa4 x16:1c00bec0 x11:000000e4 +76983854ns 1432788 1c003714 00074683 lbu x13, 0(x14) x13=000000e4 x14:1c00c0ac PA:1c00c0ac +76983874ns 1432789 1c003718 00064603 lbu x12, 0(x12) x12=000000e4 x12:1c00bfa4 PA:1c00bfa4 +76983915ns 1432791 1c00371c 00c68f63 beq x13, x12, 30 x13:000000e4 x12:000000e4 +76983975ns 1432794 1c00373a 00158593 addi x11, x11, 1 x11=000000e5 x11:000000e4 +76983995ns 1432795 1c00373c fcf598e3 bne x11, x15, -48 x11:000000e5 x15:00000100 +76984056ns 1432798 1c00370c 00b50733 add x14, x10, x11 x14=1c00c0ad x10:1c00bfc8 x11:000000e5 +76984076ns 1432799 1c003710 00b80633 add x12, x16, x11 x12=1c00bfa5 x16:1c00bec0 x11:000000e5 +76984096ns 1432800 1c003714 00074683 lbu x13, 0(x14) x13=000000e5 x14:1c00c0ad PA:1c00c0ad +76984117ns 1432801 1c003718 00064603 lbu x12, 0(x12) x12=000000e5 x12:1c00bfa5 PA:1c00bfa5 +76984157ns 1432803 1c00371c 00c68f63 beq x13, x12, 30 x13:000000e5 x12:000000e5 +76984218ns 1432806 1c00373a 00158593 addi x11, x11, 1 x11=000000e6 x11:000000e5 +76984238ns 1432807 1c00373c fcf598e3 bne x11, x15, -48 x11:000000e6 x15:00000100 +76984298ns 1432810 1c00370c 00b50733 add x14, x10, x11 x14=1c00c0ae x10:1c00bfc8 x11:000000e6 +76984319ns 1432811 1c003710 00b80633 add x12, x16, x11 x12=1c00bfa6 x16:1c00bec0 x11:000000e6 +76984339ns 1432812 1c003714 00074683 lbu x13, 0(x14) x13=000000e6 x14:1c00c0ae PA:1c00c0ae +76984359ns 1432813 1c003718 00064603 lbu x12, 0(x12) x12=000000e6 x12:1c00bfa6 PA:1c00bfa6 +76984399ns 1432815 1c00371c 00c68f63 beq x13, x12, 30 x13:000000e6 x12:000000e6 +76984460ns 1432818 1c00373a 00158593 addi x11, x11, 1 x11=000000e7 x11:000000e6 +76984480ns 1432819 1c00373c fcf598e3 bne x11, x15, -48 x11:000000e7 x15:00000100 +76984541ns 1432822 1c00370c 00b50733 add x14, x10, x11 x14=1c00c0af x10:1c00bfc8 x11:000000e7 +76984561ns 1432823 1c003710 00b80633 add x12, x16, x11 x12=1c00bfa7 x16:1c00bec0 x11:000000e7 +76984581ns 1432824 1c003714 00074683 lbu x13, 0(x14) x13=000000e7 x14:1c00c0af PA:1c00c0af +76984601ns 1432825 1c003718 00064603 lbu x12, 0(x12) x12=000000e7 x12:1c00bfa7 PA:1c00bfa7 +76984642ns 1432827 1c00371c 00c68f63 beq x13, x12, 30 x13:000000e7 x12:000000e7 +76984702ns 1432830 1c00373a 00158593 addi x11, x11, 1 x11=000000e8 x11:000000e7 +76984722ns 1432831 1c00373c fcf598e3 bne x11, x15, -48 x11:000000e8 x15:00000100 +76984783ns 1432834 1c00370c 00b50733 add x14, x10, x11 x14=1c00c0b0 x10:1c00bfc8 x11:000000e8 +76984803ns 1432835 1c003710 00b80633 add x12, x16, x11 x12=1c00bfa8 x16:1c00bec0 x11:000000e8 +76984823ns 1432836 1c003714 00074683 lbu x13, 0(x14) x13=000000e8 x14:1c00c0b0 PA:1c00c0b0 +76984844ns 1432837 1c003718 00064603 lbu x12, 0(x12) x12=000000e8 x12:1c00bfa8 PA:1c00bfa8 +76984884ns 1432839 1c00371c 00c68f63 beq x13, x12, 30 x13:000000e8 x12:000000e8 +76984945ns 1432842 1c00373a 00158593 addi x11, x11, 1 x11=000000e9 x11:000000e8 +76984965ns 1432843 1c00373c fcf598e3 bne x11, x15, -48 x11:000000e9 x15:00000100 +76985025ns 1432846 1c00370c 00b50733 add x14, x10, x11 x14=1c00c0b1 x10:1c00bfc8 x11:000000e9 +76985045ns 1432847 1c003710 00b80633 add x12, x16, x11 x12=1c00bfa9 x16:1c00bec0 x11:000000e9 +76985066ns 1432848 1c003714 00074683 lbu x13, 0(x14) x13=000000e9 x14:1c00c0b1 PA:1c00c0b1 +76985086ns 1432849 1c003718 00064603 lbu x12, 0(x12) x12=000000e9 x12:1c00bfa9 PA:1c00bfa9 +76985126ns 1432851 1c00371c 00c68f63 beq x13, x12, 30 x13:000000e9 x12:000000e9 +76985187ns 1432854 1c00373a 00158593 addi x11, x11, 1 x11=000000ea x11:000000e9 +76985207ns 1432855 1c00373c fcf598e3 bne x11, x15, -48 x11:000000ea x15:00000100 +76985268ns 1432858 1c00370c 00b50733 add x14, x10, x11 x14=1c00c0b2 x10:1c00bfc8 x11:000000ea +76985288ns 1432859 1c003710 00b80633 add x12, x16, x11 x12=1c00bfaa x16:1c00bec0 x11:000000ea +76985308ns 1432860 1c003714 00074683 lbu x13, 0(x14) x13=000000ea x14:1c00c0b2 PA:1c00c0b2 +76985328ns 1432861 1c003718 00064603 lbu x12, 0(x12) x12=000000ea x12:1c00bfaa PA:1c00bfaa +76985369ns 1432863 1c00371c 00c68f63 beq x13, x12, 30 x13:000000ea x12:000000ea +76985429ns 1432866 1c00373a 00158593 addi x11, x11, 1 x11=000000eb x11:000000ea +76985449ns 1432867 1c00373c fcf598e3 bne x11, x15, -48 x11:000000eb x15:00000100 +76985510ns 1432870 1c00370c 00b50733 add x14, x10, x11 x14=1c00c0b3 x10:1c00bfc8 x11:000000eb +76985530ns 1432871 1c003710 00b80633 add x12, x16, x11 x12=1c00bfab x16:1c00bec0 x11:000000eb +76985550ns 1432872 1c003714 00074683 lbu x13, 0(x14) x13=000000eb x14:1c00c0b3 PA:1c00c0b3 +76985570ns 1432873 1c003718 00064603 lbu x12, 0(x12) x12=000000eb x12:1c00bfab PA:1c00bfab +76985611ns 1432875 1c00371c 00c68f63 beq x13, x12, 30 x13:000000eb x12:000000eb +76985671ns 1432878 1c00373a 00158593 addi x11, x11, 1 x11=000000ec x11:000000eb +76985692ns 1432879 1c00373c fcf598e3 bne x11, x15, -48 x11:000000ec x15:00000100 +76985752ns 1432882 1c00370c 00b50733 add x14, x10, x11 x14=1c00c0b4 x10:1c00bfc8 x11:000000ec +76985772ns 1432883 1c003710 00b80633 add x12, x16, x11 x12=1c00bfac x16:1c00bec0 x11:000000ec +76985793ns 1432884 1c003714 00074683 lbu x13, 0(x14) x13=000000ec x14:1c00c0b4 PA:1c00c0b4 +76985813ns 1432885 1c003718 00064603 lbu x12, 0(x12) x12=000000ec x12:1c00bfac PA:1c00bfac +76985853ns 1432887 1c00371c 00c68f63 beq x13, x12, 30 x13:000000ec x12:000000ec +76985914ns 1432890 1c00373a 00158593 addi x11, x11, 1 x11=000000ed x11:000000ec +76985934ns 1432891 1c00373c fcf598e3 bne x11, x15, -48 x11:000000ed x15:00000100 +76985995ns 1432894 1c00370c 00b50733 add x14, x10, x11 x14=1c00c0b5 x10:1c00bfc8 x11:000000ed +76986015ns 1432895 1c003710 00b80633 add x12, x16, x11 x12=1c00bfad x16:1c00bec0 x11:000000ed +76986035ns 1432896 1c003714 00074683 lbu x13, 0(x14) x13=000000ed x14:1c00c0b5 PA:1c00c0b5 +76986055ns 1432897 1c003718 00064603 lbu x12, 0(x12) x12=000000ed x12:1c00bfad PA:1c00bfad +76986095ns 1432899 1c00371c 00c68f63 beq x13, x12, 30 x13:000000ed x12:000000ed +76986156ns 1432902 1c00373a 00158593 addi x11, x11, 1 x11=000000ee x11:000000ed +76986176ns 1432903 1c00373c fcf598e3 bne x11, x15, -48 x11:000000ee x15:00000100 +76986237ns 1432906 1c00370c 00b50733 add x14, x10, x11 x14=1c00c0b6 x10:1c00bfc8 x11:000000ee +76986257ns 1432907 1c003710 00b80633 add x12, x16, x11 x12=1c00bfae x16:1c00bec0 x11:000000ee +76986277ns 1432908 1c003714 00074683 lbu x13, 0(x14) x13=000000ee x14:1c00c0b6 PA:1c00c0b6 +76986297ns 1432909 1c003718 00064603 lbu x12, 0(x12) x12=000000ee x12:1c00bfae PA:1c00bfae +76986338ns 1432911 1c00371c 00c68f63 beq x13, x12, 30 x13:000000ee x12:000000ee +76986398ns 1432914 1c00373a 00158593 addi x11, x11, 1 x11=000000ef x11:000000ee +76986419ns 1432915 1c00373c fcf598e3 bne x11, x15, -48 x11:000000ef x15:00000100 +76986479ns 1432918 1c00370c 00b50733 add x14, x10, x11 x14=1c00c0b7 x10:1c00bfc8 x11:000000ef +76986499ns 1432919 1c003710 00b80633 add x12, x16, x11 x12=1c00bfaf x16:1c00bec0 x11:000000ef +76986519ns 1432920 1c003714 00074683 lbu x13, 0(x14) x13=000000ef x14:1c00c0b7 PA:1c00c0b7 +76986540ns 1432921 1c003718 00064603 lbu x12, 0(x12) x12=000000ef x12:1c00bfaf PA:1c00bfaf +76986580ns 1432923 1c00371c 00c68f63 beq x13, x12, 30 x13:000000ef x12:000000ef +76986641ns 1432926 1c00373a 00158593 addi x11, x11, 1 x11=000000f0 x11:000000ef +76986661ns 1432927 1c00373c fcf598e3 bne x11, x15, -48 x11:000000f0 x15:00000100 +76986721ns 1432930 1c00370c 00b50733 add x14, x10, x11 x14=1c00c0b8 x10:1c00bfc8 x11:000000f0 +76986742ns 1432931 1c003710 00b80633 add x12, x16, x11 x12=1c00bfb0 x16:1c00bec0 x11:000000f0 +76986762ns 1432932 1c003714 00074683 lbu x13, 0(x14) x13=000000f0 x14:1c00c0b8 PA:1c00c0b8 +76986782ns 1432933 1c003718 00064603 lbu x12, 0(x12) x12=000000f0 x12:1c00bfb0 PA:1c00bfb0 +76986822ns 1432935 1c00371c 00c68f63 beq x13, x12, 30 x13:000000f0 x12:000000f0 +76986883ns 1432938 1c00373a 00158593 addi x11, x11, 1 x11=000000f1 x11:000000f0 +76986903ns 1432939 1c00373c fcf598e3 bne x11, x15, -48 x11:000000f1 x15:00000100 +76986964ns 1432942 1c00370c 00b50733 add x14, x10, x11 x14=1c00c0b9 x10:1c00bfc8 x11:000000f1 +76986984ns 1432943 1c003710 00b80633 add x12, x16, x11 x12=1c00bfb1 x16:1c00bec0 x11:000000f1 +76987004ns 1432944 1c003714 00074683 lbu x13, 0(x14) x13=000000f1 x14:1c00c0b9 PA:1c00c0b9 +76987024ns 1432945 1c003718 00064603 lbu x12, 0(x12) x12=000000f1 x12:1c00bfb1 PA:1c00bfb1 +76987065ns 1432947 1c00371c 00c68f63 beq x13, x12, 30 x13:000000f1 x12:000000f1 +76987125ns 1432950 1c00373a 00158593 addi x11, x11, 1 x11=000000f2 x11:000000f1 +76987145ns 1432951 1c00373c fcf598e3 bne x11, x15, -48 x11:000000f2 x15:00000100 +76987206ns 1432954 1c00370c 00b50733 add x14, x10, x11 x14=1c00c0ba x10:1c00bfc8 x11:000000f2 +76987226ns 1432955 1c003710 00b80633 add x12, x16, x11 x12=1c00bfb2 x16:1c00bec0 x11:000000f2 +76987246ns 1432956 1c003714 00074683 lbu x13, 0(x14) x13=000000f2 x14:1c00c0ba PA:1c00c0ba +76987267ns 1432957 1c003718 00064603 lbu x12, 0(x12) x12=000000f2 x12:1c00bfb2 PA:1c00bfb2 +76987307ns 1432959 1c00371c 00c68f63 beq x13, x12, 30 x13:000000f2 x12:000000f2 +76987368ns 1432962 1c00373a 00158593 addi x11, x11, 1 x11=000000f3 x11:000000f2 +76987388ns 1432963 1c00373c fcf598e3 bne x11, x15, -48 x11:000000f3 x15:00000100 +76987448ns 1432966 1c00370c 00b50733 add x14, x10, x11 x14=1c00c0bb x10:1c00bfc8 x11:000000f3 +76987469ns 1432967 1c003710 00b80633 add x12, x16, x11 x12=1c00bfb3 x16:1c00bec0 x11:000000f3 +76987489ns 1432968 1c003714 00074683 lbu x13, 0(x14) x13=000000f3 x14:1c00c0bb PA:1c00c0bb +76987509ns 1432969 1c003718 00064603 lbu x12, 0(x12) x12=000000f3 x12:1c00bfb3 PA:1c00bfb3 +76987549ns 1432971 1c00371c 00c68f63 beq x13, x12, 30 x13:000000f3 x12:000000f3 +76987610ns 1432974 1c00373a 00158593 addi x11, x11, 1 x11=000000f4 x11:000000f3 +76987630ns 1432975 1c00373c fcf598e3 bne x11, x15, -48 x11:000000f4 x15:00000100 +76987691ns 1432978 1c00370c 00b50733 add x14, x10, x11 x14=1c00c0bc x10:1c00bfc8 x11:000000f4 +76987711ns 1432979 1c003710 00b80633 add x12, x16, x11 x12=1c00bfb4 x16:1c00bec0 x11:000000f4 +76987731ns 1432980 1c003714 00074683 lbu x13, 0(x14) x13=000000f4 x14:1c00c0bc PA:1c00c0bc +76987751ns 1432981 1c003718 00064603 lbu x12, 0(x12) x12=000000f4 x12:1c00bfb4 PA:1c00bfb4 +76987792ns 1432983 1c00371c 00c68f63 beq x13, x12, 30 x13:000000f4 x12:000000f4 +76987852ns 1432986 1c00373a 00158593 addi x11, x11, 1 x11=000000f5 x11:000000f4 +76987872ns 1432987 1c00373c fcf598e3 bne x11, x15, -48 x11:000000f5 x15:00000100 +76987933ns 1432990 1c00370c 00b50733 add x14, x10, x11 x14=1c00c0bd x10:1c00bfc8 x11:000000f5 +76987953ns 1432991 1c003710 00b80633 add x12, x16, x11 x12=1c00bfb5 x16:1c00bec0 x11:000000f5 +76987973ns 1432992 1c003714 00074683 lbu x13, 0(x14) x13=000000f5 x14:1c00c0bd PA:1c00c0bd +76987994ns 1432993 1c003718 00064603 lbu x12, 0(x12) x12=000000f5 x12:1c00bfb5 PA:1c00bfb5 +76988034ns 1432995 1c00371c 00c68f63 beq x13, x12, 30 x13:000000f5 x12:000000f5 +76988094ns 1432998 1c00373a 00158593 addi x11, x11, 1 x11=000000f6 x11:000000f5 +76988115ns 1432999 1c00373c fcf598e3 bne x11, x15, -48 x11:000000f6 x15:00000100 +76988175ns 1433002 1c00370c 00b50733 add x14, x10, x11 x14=1c00c0be x10:1c00bfc8 x11:000000f6 +76988195ns 1433003 1c003710 00b80633 add x12, x16, x11 x12=1c00bfb6 x16:1c00bec0 x11:000000f6 +76988216ns 1433004 1c003714 00074683 lbu x13, 0(x14) x13=000000f6 x14:1c00c0be PA:1c00c0be +76988236ns 1433005 1c003718 00064603 lbu x12, 0(x12) x12=000000f6 x12:1c00bfb6 PA:1c00bfb6 +76988276ns 1433007 1c00371c 00c68f63 beq x13, x12, 30 x13:000000f6 x12:000000f6 +76988337ns 1433010 1c00373a 00158593 addi x11, x11, 1 x11=000000f7 x11:000000f6 +76988357ns 1433011 1c00373c fcf598e3 bne x11, x15, -48 x11:000000f7 x15:00000100 +76988418ns 1433014 1c00370c 00b50733 add x14, x10, x11 x14=1c00c0bf x10:1c00bfc8 x11:000000f7 +76988438ns 1433015 1c003710 00b80633 add x12, x16, x11 x12=1c00bfb7 x16:1c00bec0 x11:000000f7 +76988458ns 1433016 1c003714 00074683 lbu x13, 0(x14) x13=000000f7 x14:1c00c0bf PA:1c00c0bf +76988478ns 1433017 1c003718 00064603 lbu x12, 0(x12) x12=000000f7 x12:1c00bfb7 PA:1c00bfb7 +76988519ns 1433019 1c00371c 00c68f63 beq x13, x12, 30 x13:000000f7 x12:000000f7 +76988579ns 1433022 1c00373a 00158593 addi x11, x11, 1 x11=000000f8 x11:000000f7 +76988599ns 1433023 1c00373c fcf598e3 bne x11, x15, -48 x11:000000f8 x15:00000100 +76988660ns 1433026 1c00370c 00b50733 add x14, x10, x11 x14=1c00c0c0 x10:1c00bfc8 x11:000000f8 +76988680ns 1433027 1c003710 00b80633 add x12, x16, x11 x12=1c00bfb8 x16:1c00bec0 x11:000000f8 +76988700ns 1433028 1c003714 00074683 lbu x13, 0(x14) x13=000000f8 x14:1c00c0c0 PA:1c00c0c0 +76988720ns 1433029 1c003718 00064603 lbu x12, 0(x12) x12=000000f8 x12:1c00bfb8 PA:1c00bfb8 +76988761ns 1433031 1c00371c 00c68f63 beq x13, x12, 30 x13:000000f8 x12:000000f8 +76988821ns 1433034 1c00373a 00158593 addi x11, x11, 1 x11=000000f9 x11:000000f8 +76988842ns 1433035 1c00373c fcf598e3 bne x11, x15, -48 x11:000000f9 x15:00000100 +76988902ns 1433038 1c00370c 00b50733 add x14, x10, x11 x14=1c00c0c1 x10:1c00bfc8 x11:000000f9 +76988922ns 1433039 1c003710 00b80633 add x12, x16, x11 x12=1c00bfb9 x16:1c00bec0 x11:000000f9 +76988943ns 1433040 1c003714 00074683 lbu x13, 0(x14) x13=000000f9 x14:1c00c0c1 PA:1c00c0c1 +76988963ns 1433041 1c003718 00064603 lbu x12, 0(x12) x12=000000f9 x12:1c00bfb9 PA:1c00bfb9 +76989003ns 1433043 1c00371c 00c68f63 beq x13, x12, 30 x13:000000f9 x12:000000f9 +76989064ns 1433046 1c00373a 00158593 addi x11, x11, 1 x11=000000fa x11:000000f9 +76989084ns 1433047 1c00373c fcf598e3 bne x11, x15, -48 x11:000000fa x15:00000100 +76989144ns 1433050 1c00370c 00b50733 add x14, x10, x11 x14=1c00c0c2 x10:1c00bfc8 x11:000000fa +76989165ns 1433051 1c003710 00b80633 add x12, x16, x11 x12=1c00bfba x16:1c00bec0 x11:000000fa +76989185ns 1433052 1c003714 00074683 lbu x13, 0(x14) x13=000000fa x14:1c00c0c2 PA:1c00c0c2 +76989205ns 1433053 1c003718 00064603 lbu x12, 0(x12) x12=000000fa x12:1c00bfba PA:1c00bfba +76989245ns 1433055 1c00371c 00c68f63 beq x13, x12, 30 x13:000000fa x12:000000fa +76989306ns 1433058 1c00373a 00158593 addi x11, x11, 1 x11=000000fb x11:000000fa +76989326ns 1433059 1c00373c fcf598e3 bne x11, x15, -48 x11:000000fb x15:00000100 +76989387ns 1433062 1c00370c 00b50733 add x14, x10, x11 x14=1c00c0c3 x10:1c00bfc8 x11:000000fb +76989407ns 1433063 1c003710 00b80633 add x12, x16, x11 x12=1c00bfbb x16:1c00bec0 x11:000000fb +76989427ns 1433064 1c003714 00074683 lbu x13, 0(x14) x13=000000fb x14:1c00c0c3 PA:1c00c0c3 +76989447ns 1433065 1c003718 00064603 lbu x12, 0(x12) x12=000000fb x12:1c00bfbb PA:1c00bfbb +76989488ns 1433067 1c00371c 00c68f63 beq x13, x12, 30 x13:000000fb x12:000000fb +76989548ns 1433070 1c00373a 00158593 addi x11, x11, 1 x11=000000fc x11:000000fb +76989568ns 1433071 1c00373c fcf598e3 bne x11, x15, -48 x11:000000fc x15:00000100 +76989629ns 1433074 1c00370c 00b50733 add x14, x10, x11 x14=1c00c0c4 x10:1c00bfc8 x11:000000fc +76989649ns 1433075 1c003710 00b80633 add x12, x16, x11 x12=1c00bfbc x16:1c00bec0 x11:000000fc +76989669ns 1433076 1c003714 00074683 lbu x13, 0(x14) x13=000000fc x14:1c00c0c4 PA:1c00c0c4 +76989690ns 1433077 1c003718 00064603 lbu x12, 0(x12) x12=000000fc x12:1c00bfbc PA:1c00bfbc +76989730ns 1433079 1c00371c 00c68f63 beq x13, x12, 30 x13:000000fc x12:000000fc +76989791ns 1433082 1c00373a 00158593 addi x11, x11, 1 x11=000000fd x11:000000fc +76989811ns 1433083 1c00373c fcf598e3 bne x11, x15, -48 x11:000000fd x15:00000100 +76989871ns 1433086 1c00370c 00b50733 add x14, x10, x11 x14=1c00c0c5 x10:1c00bfc8 x11:000000fd +76989892ns 1433087 1c003710 00b80633 add x12, x16, x11 x12=1c00bfbd x16:1c00bec0 x11:000000fd +76989912ns 1433088 1c003714 00074683 lbu x13, 0(x14) x13=000000fd x14:1c00c0c5 PA:1c00c0c5 +76989932ns 1433089 1c003718 00064603 lbu x12, 0(x12) x12=000000fd x12:1c00bfbd PA:1c00bfbd +76989972ns 1433091 1c00371c 00c68f63 beq x13, x12, 30 x13:000000fd x12:000000fd +76990033ns 1433094 1c00373a 00158593 addi x11, x11, 1 x11=000000fe x11:000000fd +76990053ns 1433095 1c00373c fcf598e3 bne x11, x15, -48 x11:000000fe x15:00000100 +76990114ns 1433098 1c00370c 00b50733 add x14, x10, x11 x14=1c00c0c6 x10:1c00bfc8 x11:000000fe +76990134ns 1433099 1c003710 00b80633 add x12, x16, x11 x12=1c00bfbe x16:1c00bec0 x11:000000fe +76990154ns 1433100 1c003714 00074683 lbu x13, 0(x14) x13=000000fe x14:1c00c0c6 PA:1c00c0c6 +76990174ns 1433101 1c003718 00064603 lbu x12, 0(x12) x12=000000fe x12:1c00bfbe PA:1c00bfbe +76990215ns 1433103 1c00371c 00c68f63 beq x13, x12, 30 x13:000000fe x12:000000fe +76990275ns 1433106 1c00373a 00158593 addi x11, x11, 1 x11=000000ff x11:000000fe +76990295ns 1433107 1c00373c fcf598e3 bne x11, x15, -48 x11:000000ff x15:00000100 +76990356ns 1433110 1c00370c 00b50733 add x14, x10, x11 x14=1c00c0c7 x10:1c00bfc8 x11:000000ff +76990376ns 1433111 1c003710 00b80633 add x12, x16, x11 x12=1c00bfbf x16:1c00bec0 x11:000000ff +76990396ns 1433112 1c003714 00074683 lbu x13, 0(x14) x13=000000ff x14:1c00c0c7 PA:1c00c0c7 +76990417ns 1433113 1c003718 00064603 lbu x12, 0(x12) x12=000000ff x12:1c00bfbf PA:1c00bfbf +76990457ns 1433115 1c00371c 00c68f63 beq x13, x12, 30 x13:000000ff x12:000000ff +76990518ns 1433118 1c00373a 00158593 addi x11, x11, 1 x11=00000100 x11:000000ff +76990538ns 1433119 1c00373c fcf598e3 bne x11, x15, -48 x11:00000100 x15:00000100 +76990558ns 1433120 1c003740 1c009537 lui x10, 0x1c009000 x10=1c009000 +76990578ns 1433121 1c003744 95450513 addi x10, x10, -1708 x10=1c008954 x10:1c009000 +76990598ns 1433122 1c003748 78a000ef jal x1, 1930 x1=1c00374c +76990659ns 1433125 1c003ed2 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76990679ns 1433126 1c003ed6 00a005b3 add x11, x0, x10 x11=1c008954 x10:1c008954 +76990699ns 1433127 1c003ed8 c447a503 lw x10, -956(x15) x10=1c009e10 x15:1c009000 PA:1c008c44 +76990719ns 1433128 1c003edc f19ff06f jal x0, -232 +76990760ns 1433130 1c003df4 fe010113 addi x2, x2, -32 x2=1c009ba0 x2:1c009bc0 +76990780ns 1433131 1c003df6 00912a23 sw x9, 20(x2) x9:1c009190 x2:1c009ba0 PA:1c009bb4 +76990800ns 1433132 1c003df8 01212823 sw x18, 16(x2) x18:1c009188 x2:1c009ba0 PA:1c009bb0 +76990820ns 1433133 1c003dfa 00112e23 sw x1, 28(x2) x1:1c00374c x2:1c009ba0 PA:1c009bbc +76990841ns 1433134 1c003dfc 00812c23 sw x8, 24(x2) x8:00000000 x2:1c009ba0 PA:1c009bb8 +76990861ns 1433135 1c003dfe 01312623 sw x19, 12(x2) x19:1c009000 x2:1c009ba0 PA:1c009bac +76990881ns 1433136 1c003e00 01412423 sw x20, 8(x2) x20:1c00918c x2:1c009ba0 PA:1c009ba8 +76990901ns 1433137 1c003e02 00a004b3 add x9, x0, x10 x9=1c009e10 x10:1c009e10 +76990921ns 1433138 1c003e04 00b00933 add x18, x0, x11 x18=1c008954 x11:1c008954 +76990942ns 1433139 1c003e06 00050563 beq x10, x0, 10 x10:1c009e10 +76990962ns 1433140 1c003e08 01852783 lw x15, 24(x10) x15=00000001 x10:1c009e10 PA:1c009e28 +76991002ns 1433142 1c003e0a 00079363 bne x15, x0, 6 x15:00000001 +76991063ns 1433145 1c003e10 0184a783 lw x15, 24(x9) x15=00000001 x9:1c009e10 PA:1c009e28 +76991083ns 1433146 1c003e12 0084a403 lw x8, 8(x9) x8=1c00b914 x9:1c009e10 PA:1c009e18 +76991103ns 1433147 1c003e14 00079463 bne x15, x0, 8 x15:00000001 +76991164ns 1433150 1c003e1c 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76991184ns 1433151 1c003e20 a1478793 addi x15, x15, -1516 x15=1c008a14 x15:1c009000 +76991204ns 1433152 1c003e24 02f41c63 bne x8, x15, 56 x8:1c00b914 x15:1c008a14 +76991265ns 1433155 1c003e5c 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76991285ns 1433156 1c003e60 a3478793 addi x15, x15, -1484 x15=1c008a34 x15:1c009000 +76991305ns 1433157 1c003e64 00f41463 bne x8, x15, 8 x8:1c00b914 x15:1c008a34 +76991366ns 1433160 1c003e6c 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76991386ns 1433161 1c003e70 9f478793 addi x15, x15, -1548 x15=1c0089f4 x15:1c009000 +76991406ns 1433162 1c003e74 faf41be3 bne x8, x15, -74 x8:1c00b914 x15:1c0089f4 +76991487ns 1433166 1c003e2a 00c45783 lhu x15, 12(x8) x15=00000089 x8:1c00b914 PA:1c00b920 +76991527ns 1433168 1c003e2e 0087f793 andi x15, x15, 8 x15=00000008 x15:00000089 +76991547ns 1433169 1c003e30 04078663 beq x15, x0, 76 x15:00000008 +76991567ns 1433170 1c003e32 01042783 lw x15, 16(x8) x15=1c00bab8 x8:1c00b914 PA:1c00b924 +76991608ns 1433172 1c003e34 04078463 beq x15, x0, 72 x15:1c00bab8 +76991628ns 1433173 1c003e36 fff00993 addi x19, x0, -1 x19=ffffffff +76991648ns 1433174 1c003e38 00a00a13 addi x20, x0, 10 x20=0000000a +76991668ns 1433175 1c003e3a 00842783 lw x15, 8(x8) x15=00000000 x8:1c00b914 PA:1c00b91c +76991689ns 1433176 1c003e3c 00094583 lbu x11, 0(x18) x11=00000054 x18:1c008954 PA:1c008954 +76991709ns 1433177 1c003e40 fff78793 addi x15, x15, -1 x15=ffffffff x15:00000000 +76991729ns 1433178 1c003e42 04059a63 bne x11, x0, 84 x11:00000054 +76991790ns 1433181 1c003e96 00f42423 sw x15, 8(x8) x15:ffffffff x8:1c00b914 PA:1c00b91c +76991810ns 1433182 1c003e98 00190913 addi x18, x18, 1 x18=1c008955 x18:1c008954 +76991830ns 1433183 1c003e9a 0007d763 bge x15, x0, 14 x15:ffffffff +76991850ns 1433184 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +76991891ns 1433186 1c003ea0 00e7cb63 blt x15, x14, 22 x15:ffffffff x14:fffffc00 +76991911ns 1433187 1c003ea4 01458963 beq x11, x20, 18 x11:00000054 x20:0000000a +76991931ns 1433188 1c003ea8 00042783 lw x15, 0(x8) x15=1c00bab8 x8:1c00b914 PA:1c00b914 +76991971ns 1433190 1c003eaa 00178713 addi x14, x15, 1 x14=1c00bab9 x15:1c00bab8 +76991992ns 1433191 1c003eae 00e42023 sw x14, 0(x8) x14:1c00bab9 x8:1c00b914 PA:1c00b914 +76992012ns 1433192 1c003eb0 00b78023 sb x11, 0(x15) x11:00000054 x15:1c00bab8 PA:1c00bab8 +76992032ns 1433193 1c003eb4 f87ff06f jal x0, -122 +76992072ns 1433195 1c003e3a 00842783 lw x15, 8(x8) x15=ffffffff x8:1c00b914 PA:1c00b91c +76992092ns 1433196 1c003e3c 00094583 lbu x11, 0(x18) x11=00000065 x18:1c008955 PA:1c008955 +76992113ns 1433197 1c003e40 fff78793 addi x15, x15, -1 x15=fffffffe x15:ffffffff +76992133ns 1433198 1c003e42 04059a63 bne x11, x0, 84 x11:00000065 +76992193ns 1433201 1c003e96 00f42423 sw x15, 8(x8) x15:fffffffe x8:1c00b914 PA:1c00b91c +76992214ns 1433202 1c003e98 00190913 addi x18, x18, 1 x18=1c008956 x18:1c008955 +76992234ns 1433203 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffffe +76992254ns 1433204 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +76992294ns 1433206 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffffe x14:fffffc00 +76992315ns 1433207 1c003ea4 01458963 beq x11, x20, 18 x11:00000065 x20:0000000a +76992335ns 1433208 1c003ea8 00042783 lw x15, 0(x8) x15=1c00bab9 x8:1c00b914 PA:1c00b914 +76992375ns 1433210 1c003eaa 00178713 addi x14, x15, 1 x14=1c00baba x15:1c00bab9 +76992395ns 1433211 1c003eae 00e42023 sw x14, 0(x8) x14:1c00baba x8:1c00b914 PA:1c00b914 +76992416ns 1433212 1c003eb0 00b78023 sb x11, 0(x15) x11:00000065 x15:1c00bab9 PA:1c00bab9 +76992436ns 1433213 1c003eb4 f87ff06f jal x0, -122 +76992476ns 1433215 1c003e3a 00842783 lw x15, 8(x8) x15=fffffffe x8:1c00b914 PA:1c00b91c +76992496ns 1433216 1c003e3c 00094583 lbu x11, 0(x18) x11=00000073 x18:1c008956 PA:1c008956 +76992517ns 1433217 1c003e40 fff78793 addi x15, x15, -1 x15=fffffffd x15:fffffffe +76992537ns 1433218 1c003e42 04059a63 bne x11, x0, 84 x11:00000073 +76992597ns 1433221 1c003e96 00f42423 sw x15, 8(x8) x15:fffffffd x8:1c00b914 PA:1c00b91c +76992617ns 1433222 1c003e98 00190913 addi x18, x18, 1 x18=1c008957 x18:1c008956 +76992638ns 1433223 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffffd +76992658ns 1433224 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +76992698ns 1433226 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffffd x14:fffffc00 +76992718ns 1433227 1c003ea4 01458963 beq x11, x20, 18 x11:00000073 x20:0000000a +76992739ns 1433228 1c003ea8 00042783 lw x15, 0(x8) x15=1c00baba x8:1c00b914 PA:1c00b914 +76992779ns 1433230 1c003eaa 00178713 addi x14, x15, 1 x14=1c00babb x15:1c00baba +76992799ns 1433231 1c003eae 00e42023 sw x14, 0(x8) x14:1c00babb x8:1c00b914 PA:1c00b914 +76992819ns 1433232 1c003eb0 00b78023 sb x11, 0(x15) x11:00000073 x15:1c00baba PA:1c00baba +76992840ns 1433233 1c003eb4 f87ff06f jal x0, -122 +76992880ns 1433235 1c003e3a 00842783 lw x15, 8(x8) x15=fffffffd x8:1c00b914 PA:1c00b91c +76992900ns 1433236 1c003e3c 00094583 lbu x11, 0(x18) x11=00000074 x18:1c008957 PA:1c008957 +76992920ns 1433237 1c003e40 fff78793 addi x15, x15, -1 x15=fffffffc x15:fffffffd +76992941ns 1433238 1c003e42 04059a63 bne x11, x0, 84 x11:00000074 +76993001ns 1433241 1c003e96 00f42423 sw x15, 8(x8) x15:fffffffc x8:1c00b914 PA:1c00b91c +76993021ns 1433242 1c003e98 00190913 addi x18, x18, 1 x18=1c008958 x18:1c008957 +76993042ns 1433243 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffffc +76993062ns 1433244 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +76993102ns 1433246 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffffc x14:fffffc00 +76993122ns 1433247 1c003ea4 01458963 beq x11, x20, 18 x11:00000074 x20:0000000a +76993142ns 1433248 1c003ea8 00042783 lw x15, 0(x8) x15=1c00babb x8:1c00b914 PA:1c00b914 +76993183ns 1433250 1c003eaa 00178713 addi x14, x15, 1 x14=1c00babc x15:1c00babb +76993203ns 1433251 1c003eae 00e42023 sw x14, 0(x8) x14:1c00babc x8:1c00b914 PA:1c00b914 +76993223ns 1433252 1c003eb0 00b78023 sb x11, 0(x15) x11:00000074 x15:1c00babb PA:1c00babb +76993243ns 1433253 1c003eb4 f87ff06f jal x0, -122 +76993284ns 1433255 1c003e3a 00842783 lw x15, 8(x8) x15=fffffffc x8:1c00b914 PA:1c00b91c +76993304ns 1433256 1c003e3c 00094583 lbu x11, 0(x18) x11=00000020 x18:1c008958 PA:1c008958 +76993324ns 1433257 1c003e40 fff78793 addi x15, x15, -1 x15=fffffffb x15:fffffffc +76993344ns 1433258 1c003e42 04059a63 bne x11, x0, 84 x11:00000020 +76993405ns 1433261 1c003e96 00f42423 sw x15, 8(x8) x15:fffffffb x8:1c00b914 PA:1c00b91c +76993425ns 1433262 1c003e98 00190913 addi x18, x18, 1 x18=1c008959 x18:1c008958 +76993445ns 1433263 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffffb +76993466ns 1433264 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +76993506ns 1433266 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffffb x14:fffffc00 +76993526ns 1433267 1c003ea4 01458963 beq x11, x20, 18 x11:00000020 x20:0000000a +76993546ns 1433268 1c003ea8 00042783 lw x15, 0(x8) x15=1c00babc x8:1c00b914 PA:1c00b914 +76993587ns 1433270 1c003eaa 00178713 addi x14, x15, 1 x14=1c00babd x15:1c00babc +76993607ns 1433271 1c003eae 00e42023 sw x14, 0(x8) x14:1c00babd x8:1c00b914 PA:1c00b914 +76993627ns 1433272 1c003eb0 00b78023 sb x11, 0(x15) x11:00000020 x15:1c00babc PA:1c00babc +76993647ns 1433273 1c003eb4 f87ff06f jal x0, -122 +76993688ns 1433275 1c003e3a 00842783 lw x15, 8(x8) x15=fffffffb x8:1c00b914 PA:1c00b91c +76993708ns 1433276 1c003e3c 00094583 lbu x11, 0(x18) x11=00000073 x18:1c008959 PA:1c008959 +76993728ns 1433277 1c003e40 fff78793 addi x15, x15, -1 x15=fffffffa x15:fffffffb +76993748ns 1433278 1c003e42 04059a63 bne x11, x0, 84 x11:00000073 +76993809ns 1433281 1c003e96 00f42423 sw x15, 8(x8) x15:fffffffa x8:1c00b914 PA:1c00b91c +76993829ns 1433282 1c003e98 00190913 addi x18, x18, 1 x18=1c00895a x18:1c008959 +76993849ns 1433283 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffffa +76993869ns 1433284 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +76993910ns 1433286 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffffa x14:fffffc00 +76993930ns 1433287 1c003ea4 01458963 beq x11, x20, 18 x11:00000073 x20:0000000a +76993950ns 1433288 1c003ea8 00042783 lw x15, 0(x8) x15=1c00babd x8:1c00b914 PA:1c00b914 +76993991ns 1433290 1c003eaa 00178713 addi x14, x15, 1 x14=1c00babe x15:1c00babd +76994011ns 1433291 1c003eae 00e42023 sw x14, 0(x8) x14:1c00babe x8:1c00b914 PA:1c00b914 +76994031ns 1433292 1c003eb0 00b78023 sb x11, 0(x15) x11:00000073 x15:1c00babd PA:1c00babd +76994051ns 1433293 1c003eb4 f87ff06f jal x0, -122 +76994091ns 1433295 1c003e3a 00842783 lw x15, 8(x8) x15=fffffffa x8:1c00b914 PA:1c00b91c +76994112ns 1433296 1c003e3c 00094583 lbu x11, 0(x18) x11=00000075 x18:1c00895a PA:1c00895a +76994132ns 1433297 1c003e40 fff78793 addi x15, x15, -1 x15=fffffff9 x15:fffffffa +76994152ns 1433298 1c003e42 04059a63 bne x11, x0, 84 x11:00000075 +76994213ns 1433301 1c003e96 00f42423 sw x15, 8(x8) x15:fffffff9 x8:1c00b914 PA:1c00b91c +76994233ns 1433302 1c003e98 00190913 addi x18, x18, 1 x18=1c00895b x18:1c00895a +76994253ns 1433303 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffff9 +76994273ns 1433304 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +76994314ns 1433306 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffff9 x14:fffffc00 +76994334ns 1433307 1c003ea4 01458963 beq x11, x20, 18 x11:00000075 x20:0000000a +76994354ns 1433308 1c003ea8 00042783 lw x15, 0(x8) x15=1c00babe x8:1c00b914 PA:1c00b914 +76994394ns 1433310 1c003eaa 00178713 addi x14, x15, 1 x14=1c00babf x15:1c00babe +76994415ns 1433311 1c003eae 00e42023 sw x14, 0(x8) x14:1c00babf x8:1c00b914 PA:1c00b914 +76994435ns 1433312 1c003eb0 00b78023 sb x11, 0(x15) x11:00000075 x15:1c00babe PA:1c00babe +76994455ns 1433313 1c003eb4 f87ff06f jal x0, -122 +76994495ns 1433315 1c003e3a 00842783 lw x15, 8(x8) x15=fffffff9 x8:1c00b914 PA:1c00b91c +76994516ns 1433316 1c003e3c 00094583 lbu x11, 0(x18) x11=00000063 x18:1c00895b PA:1c00895b +76994536ns 1433317 1c003e40 fff78793 addi x15, x15, -1 x15=fffffff8 x15:fffffff9 +76994556ns 1433318 1c003e42 04059a63 bne x11, x0, 84 x11:00000063 +76994616ns 1433321 1c003e96 00f42423 sw x15, 8(x8) x15:fffffff8 x8:1c00b914 PA:1c00b91c +76994637ns 1433322 1c003e98 00190913 addi x18, x18, 1 x18=1c00895c x18:1c00895b +76994657ns 1433323 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffff8 +76994677ns 1433324 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +76994717ns 1433326 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffff8 x14:fffffc00 +76994738ns 1433327 1c003ea4 01458963 beq x11, x20, 18 x11:00000063 x20:0000000a +76994758ns 1433328 1c003ea8 00042783 lw x15, 0(x8) x15=1c00babf x8:1c00b914 PA:1c00b914 +76994798ns 1433330 1c003eaa 00178713 addi x14, x15, 1 x14=1c00bac0 x15:1c00babf +76994818ns 1433331 1c003eae 00e42023 sw x14, 0(x8) x14:1c00bac0 x8:1c00b914 PA:1c00b914 +76994839ns 1433332 1c003eb0 00b78023 sb x11, 0(x15) x11:00000063 x15:1c00babf PA:1c00babf +76994859ns 1433333 1c003eb4 f87ff06f jal x0, -122 +76994899ns 1433335 1c003e3a 00842783 lw x15, 8(x8) x15=fffffff8 x8:1c00b914 PA:1c00b91c +76994919ns 1433336 1c003e3c 00094583 lbu x11, 0(x18) x11=00000063 x18:1c00895c PA:1c00895c +76994940ns 1433337 1c003e40 fff78793 addi x15, x15, -1 x15=fffffff7 x15:fffffff8 +76994960ns 1433338 1c003e42 04059a63 bne x11, x0, 84 x11:00000063 +76995020ns 1433341 1c003e96 00f42423 sw x15, 8(x8) x15:fffffff7 x8:1c00b914 PA:1c00b91c +76995041ns 1433342 1c003e98 00190913 addi x18, x18, 1 x18=1c00895d x18:1c00895c +76995061ns 1433343 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffff7 +76995081ns 1433344 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +76995121ns 1433346 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffff7 x14:fffffc00 +76995141ns 1433347 1c003ea4 01458963 beq x11, x20, 18 x11:00000063 x20:0000000a +76995162ns 1433348 1c003ea8 00042783 lw x15, 0(x8) x15=1c00bac0 x8:1c00b914 PA:1c00b914 +76995202ns 1433350 1c003eaa 00178713 addi x14, x15, 1 x14=1c00bac1 x15:1c00bac0 +76995222ns 1433351 1c003eae 00e42023 sw x14, 0(x8) x14:1c00bac1 x8:1c00b914 PA:1c00b914 +76995242ns 1433352 1c003eb0 00b78023 sb x11, 0(x15) x11:00000063 x15:1c00bac0 PA:1c00bac0 +76995263ns 1433353 1c003eb4 f87ff06f jal x0, -122 +76995303ns 1433355 1c003e3a 00842783 lw x15, 8(x8) x15=fffffff7 x8:1c00b914 PA:1c00b91c +76995323ns 1433356 1c003e3c 00094583 lbu x11, 0(x18) x11=00000065 x18:1c00895d PA:1c00895d +76995343ns 1433357 1c003e40 fff78793 addi x15, x15, -1 x15=fffffff6 x15:fffffff7 +76995364ns 1433358 1c003e42 04059a63 bne x11, x0, 84 x11:00000065 +76995424ns 1433361 1c003e96 00f42423 sw x15, 8(x8) x15:fffffff6 x8:1c00b914 PA:1c00b91c +76995444ns 1433362 1c003e98 00190913 addi x18, x18, 1 x18=1c00895e x18:1c00895d +76995465ns 1433363 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffff6 +76995485ns 1433364 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +76995525ns 1433366 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffff6 x14:fffffc00 +76995545ns 1433367 1c003ea4 01458963 beq x11, x20, 18 x11:00000065 x20:0000000a +76995566ns 1433368 1c003ea8 00042783 lw x15, 0(x8) x15=1c00bac1 x8:1c00b914 PA:1c00b914 +76995606ns 1433370 1c003eaa 00178713 addi x14, x15, 1 x14=1c00bac2 x15:1c00bac1 +76995626ns 1433371 1c003eae 00e42023 sw x14, 0(x8) x14:1c00bac2 x8:1c00b914 PA:1c00b914 +76995646ns 1433372 1c003eb0 00b78023 sb x11, 0(x15) x11:00000065 x15:1c00bac1 PA:1c00bac1 +76995666ns 1433373 1c003eb4 f87ff06f jal x0, -122 +76995707ns 1433375 1c003e3a 00842783 lw x15, 8(x8) x15=fffffff6 x8:1c00b914 PA:1c00b91c +76995727ns 1433376 1c003e3c 00094583 lbu x11, 0(x18) x11=00000073 x18:1c00895e PA:1c00895e +76995747ns 1433377 1c003e40 fff78793 addi x15, x15, -1 x15=fffffff5 x15:fffffff6 +76995767ns 1433378 1c003e42 04059a63 bne x11, x0, 84 x11:00000073 +76995828ns 1433381 1c003e96 00f42423 sw x15, 8(x8) x15:fffffff5 x8:1c00b914 PA:1c00b91c +76995848ns 1433382 1c003e98 00190913 addi x18, x18, 1 x18=1c00895f x18:1c00895e +76995868ns 1433383 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffff5 +76995889ns 1433384 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +76995929ns 1433386 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffff5 x14:fffffc00 +76995949ns 1433387 1c003ea4 01458963 beq x11, x20, 18 x11:00000073 x20:0000000a +76995969ns 1433388 1c003ea8 00042783 lw x15, 0(x8) x15=1c00bac2 x8:1c00b914 PA:1c00b914 +76996010ns 1433390 1c003eaa 00178713 addi x14, x15, 1 x14=1c00bac3 x15:1c00bac2 +76996030ns 1433391 1c003eae 00e42023 sw x14, 0(x8) x14:1c00bac3 x8:1c00b914 PA:1c00b914 +76996050ns 1433392 1c003eb0 00b78023 sb x11, 0(x15) x11:00000073 x15:1c00bac2 PA:1c00bac2 +76996070ns 1433393 1c003eb4 f87ff06f jal x0, -122 +76996111ns 1433395 1c003e3a 00842783 lw x15, 8(x8) x15=fffffff5 x8:1c00b914 PA:1c00b91c +76996131ns 1433396 1c003e3c 00094583 lbu x11, 0(x18) x11=00000073 x18:1c00895f PA:1c00895f +76996151ns 1433397 1c003e40 fff78793 addi x15, x15, -1 x15=fffffff4 x15:fffffff5 +76996171ns 1433398 1c003e42 04059a63 bne x11, x0, 84 x11:00000073 +76996232ns 1433401 1c003e96 00f42423 sw x15, 8(x8) x15:fffffff4 x8:1c00b914 PA:1c00b91c +76996252ns 1433402 1c003e98 00190913 addi x18, x18, 1 x18=1c008960 x18:1c00895f +76996272ns 1433403 1c003e9a 0007d763 bge x15, x0, 14 x15:fffffff4 +76996292ns 1433404 1c003e9e 01842703 lw x14, 24(x8) x14=fffffc00 x8:1c00b914 PA:1c00b92c +76996333ns 1433406 1c003ea0 00e7cb63 blt x15, x14, 22 x15:fffffff4 x14:fffffc00 +76996353ns 1433407 1c003ea4 01458963 beq x11, x20, 18 x11:00000073 x20:0000000a +76996373ns 1433408 1c003ea8 00042783 lw x15, 0(x8) x15=1c00bac3 x8:1c00b914 PA:1c00b914 +76996414ns 1433410 1c003eaa 00178713 addi x14, x15, 1 x14=1c00bac4 x15:1c00bac3 +76996434ns 1433411 1c003eae 00e42023 sw x14, 0(x8) x14:1c00bac4 x8:1c00b914 PA:1c00b914 +76996454ns 1433412 1c003eb0 00b78023 sb x11, 0(x15) x11:00000073 x15:1c00bac3 PA:1c00bac3 +76996474ns 1433413 1c003eb4 f87ff06f jal x0, -122 +76996515ns 1433415 1c003e3a 00842783 lw x15, 8(x8) x15=fffffff4 x8:1c00b914 PA:1c00b91c +76996535ns 1433416 1c003e3c 00094583 lbu x11, 0(x18) x11=00000000 x18:1c008960 PA:1c008960 +76996555ns 1433417 1c003e40 fff78793 addi x15, x15, -1 x15=fffffff3 x15:fffffff4 +76996575ns 1433418 1c003e42 04059a63 bne x11, x0, 84 x11:00000000 +76996595ns 1433419 1c003e44 00f42423 sw x15, 8(x8) x15:fffffff3 x8:1c00b914 PA:1c00b91c +76996615ns 1433420 1c003e46 0607de63 bge x15, x0, 124 x15:fffffff3 +76996636ns 1433421 1c003e4a 00800633 add x12, x0, x8 x12=1c00b914 x8:1c00b914 +76996656ns 1433422 1c003e4c 00a00593 addi x11, x0, 10 x11=0000000a +76996676ns 1433423 1c003e4e 00900533 add x10, x0, x9 x10=1c009e10 x9:1c009e10 +76996696ns 1433424 1c003e50 25a000ef jal x1, 602 x1=1c003e52 +76996737ns 1433426 1c0040aa fe010113 addi x2, x2, -32 x2=1c009b80 x2:1c009ba0 +76996757ns 1433427 1c0040ac 00812c23 sw x8, 24(x2) x8:1c00b914 x2:1c009b80 PA:1c009b98 +76996777ns 1433428 1c0040ae 00912a23 sw x9, 20(x2) x9:1c009e10 x2:1c009b80 PA:1c009b94 +76996797ns 1433429 1c0040b0 01212823 sw x18, 16(x2) x18:1c008960 x2:1c009b80 PA:1c009b90 +76996817ns 1433430 1c0040b2 00112e23 sw x1, 28(x2) x1:1c003e52 x2:1c009b80 PA:1c009b9c +76996838ns 1433431 1c0040b4 01312623 sw x19, 12(x2) x19:ffffffff x2:1c009b80 PA:1c009b8c +76996858ns 1433432 1c0040b6 00a004b3 add x9, x0, x10 x9=1c009e10 x10:1c009e10 +76996878ns 1433433 1c0040b8 00b00933 add x18, x0, x11 x18=0000000a x11:0000000a +76996898ns 1433434 1c0040ba 00c00433 add x8, x0, x12 x8=1c00b914 x12:1c00b914 +76996918ns 1433435 1c0040bc 00050463 beq x10, x0, 8 x10:1c009e10 +76996939ns 1433436 1c0040be 01852783 lw x15, 24(x10) x15=00000001 x10:1c009e10 PA:1c009e28 +76996979ns 1433438 1c0040c0 00079263 bne x15, x0, 4 x15:00000001 +76997040ns 1433441 1c0040c4 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76997060ns 1433442 1c0040c8 a1478793 addi x15, x15, -1516 x15=1c008a14 x15:1c009000 +76997080ns 1433443 1c0040cc 06f41963 bne x8, x15, 114 x8:1c00b914 x15:1c008a14 +76997161ns 1433447 1c00413e 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76997181ns 1433448 1c004142 a3478793 addi x15, x15, -1484 x15=1c008a34 x15:1c009000 +76997201ns 1433449 1c004146 00f41463 bne x8, x15, 8 x8:1c00b914 x15:1c008a34 +76997282ns 1433453 1c00414e 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76997302ns 1433454 1c004152 9f478793 addi x15, x15, -1548 x15=1c0089f4 x15:1c009000 +76997322ns 1433455 1c004156 f6f41ee3 bne x8, x15, -132 x8:1c00b914 x15:1c0089f4 +76997383ns 1433458 1c0040d2 01842783 lw x15, 24(x8) x15=fffffc00 x8:1c00b914 PA:1c00b92c +76997423ns 1433460 1c0040d4 00f42423 sw x15, 8(x8) x15:fffffc00 x8:1c00b914 PA:1c00b91c +76997443ns 1433461 1c0040d6 00c45783 lhu x15, 12(x8) x15=00000089 x8:1c00b914 PA:1c00b920 +76997484ns 1433463 1c0040da 0087f793 andi x15, x15, 8 x15=00000008 x15:00000089 +76997504ns 1433464 1c0040dc 08078163 beq x15, x0, 130 x15:00000008 +76997524ns 1433465 1c0040de 01042783 lw x15, 16(x8) x15=1c00bab8 x8:1c00b914 PA:1c00b924 +76997565ns 1433467 1c0040e0 06078f63 beq x15, x0, 126 x15:1c00bab8 +76997585ns 1433468 1c0040e2 01042783 lw x15, 16(x8) x15=1c00bab8 x8:1c00b914 PA:1c00b924 +76997605ns 1433469 1c0040e4 00042503 lw x10, 0(x8) x10=1c00bac4 x8:1c00b914 PA:1c00b914 +76997625ns 1433470 1c0040e6 0ff97993 andi x19, x18, 255 x19=0000000a x18:0000000a +76997645ns 1433471 1c0040ea 0ff97913 andi x18, x18, 255 x18=0000000a x18:0000000a +76997665ns 1433472 1c0040ee 40f50533 sub x10, x10, x15 x10=0000000c x10:1c00bac4 x15:1c00bab8 +76997686ns 1433473 1c0040f0 01442783 lw x15, 20(x8) x15=00000400 x8:1c00b914 PA:1c00b928 +76997726ns 1433475 1c0040f2 00f54663 blt x10, x15, 12 x10:0000000c x15:00000400 +76997787ns 1433478 1c0040fe 00842783 lw x15, 8(x8) x15=fffffc00 x8:1c00b914 PA:1c00b91c +76997807ns 1433479 1c004100 00150513 addi x10, x10, 1 x10=0000000d x10:0000000c +76997827ns 1433480 1c004102 fff78793 addi x15, x15, -1 x15=fffffbff x15:fffffc00 +76997847ns 1433481 1c004104 00f42423 sw x15, 8(x8) x15:fffffbff x8:1c00b914 PA:1c00b91c +76997867ns 1433482 1c004106 00042783 lw x15, 0(x8) x15=1c00bac4 x8:1c00b914 PA:1c00b914 +76997908ns 1433484 1c004108 00178713 addi x14, x15, 1 x14=1c00bac5 x15:1c00bac4 +76997928ns 1433485 1c00410c 00e42023 sw x14, 0(x8) x14:1c00bac5 x8:1c00b914 PA:1c00b914 +76997948ns 1433486 1c00410e 01378023 sb x19, 0(x15) x19:0000000a x15:1c00bac4 PA:1c00bac4 +76997968ns 1433487 1c004112 01442783 lw x15, 20(x8) x15=00000400 x8:1c00b914 PA:1c00b928 +76998009ns 1433489 1c004114 00a78963 beq x15, x10, 18 x15:00000400 x10:0000000d +76998029ns 1433490 1c004118 00c45783 lhu x15, 12(x8) x15=00000089 x8:1c00b914 PA:1c00b920 +76998069ns 1433492 1c00411c 0017f793 andi x15, x15, 1 x15=00000001 x15:00000089 +76998090ns 1433493 1c00411e 00078863 beq x15, x0, 16 x15:00000001 +76998110ns 1433494 1c004120 00a00793 addi x15, x0, 10 x15=0000000a +76998130ns 1433495 1c004122 00f91663 bne x18, x15, 12 x18:0000000a x15:0000000a +76998150ns 1433496 1c004126 008005b3 add x11, x0, x8 x11=1c00b914 x8:1c00b914 +76998170ns 1433497 1c004128 00900533 add x10, x0, x9 x10=1c009e10 x9:1c009e10 +76998190ns 1433498 1c00412a 3d8000ef jal x1, 984 x1=1c00412c +76998231ns 1433500 1c004502 0105a783 lw x15, 16(x11) x15=1c00bab8 x11:1c00b914 PA:1c00b924 +76998271ns 1433502 1c004504 06078063 beq x15, x0, 96 x15:1c00bab8 +76998291ns 1433503 1c004506 fe010113 addi x2, x2, -32 x2=1c009b60 x2:1c009b80 +76998312ns 1433504 1c004508 00812c23 sw x8, 24(x2) x8:1c00b914 x2:1c009b60 PA:1c009b78 +76998332ns 1433505 1c00450a 00112e23 sw x1, 28(x2) x1:1c00412c x2:1c009b60 PA:1c009b7c +76998352ns 1433506 1c00450c 00a00433 add x8, x0, x10 x8=1c009e10 x10:1c009e10 +76998372ns 1433507 1c00450e 00050663 beq x10, x0, 12 x10:1c009e10 +76998392ns 1433508 1c004510 01852783 lw x15, 24(x10) x15=00000001 x10:1c009e10 PA:1c009e28 +76998433ns 1433510 1c004512 00079463 bne x15, x0, 8 x15:00000001 +76998514ns 1433514 1c00451a 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76998534ns 1433515 1c00451e a1478793 addi x15, x15, -1516 x15=1c008a14 x15:1c009000 +76998554ns 1433516 1c004522 00f59c63 bne x11, x15, 24 x11:1c00b914 x15:1c008a14 +76998635ns 1433520 1c00453a 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76998655ns 1433521 1c00453e a3478793 addi x15, x15, -1484 x15=1c008a34 x15:1c009000 +76998675ns 1433522 1c004542 00f59463 bne x11, x15, 8 x11:1c00b914 x15:1c008a34 +76998756ns 1433526 1c00454a 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +76998776ns 1433527 1c00454e 9f478793 addi x15, x15, -1548 x15=1c0089f4 x15:1c009000 +76998796ns 1433528 1c004552 fcf59be3 bne x11, x15, -42 x11:1c00b914 x15:1c0089f4 +76998857ns 1433531 1c004528 00c59783 lh x15, 12(x11) x15=00000089 x11:1c00b914 PA:1c00b920 +76998897ns 1433533 1c00452c 02078763 beq x15, x0, 46 x15:00000089 +76998917ns 1433534 1c00452e 00800533 add x10, x0, x8 x10=1c009e10 x8:1c009e10 +76998938ns 1433535 1c004530 01812403 lw x8, 24(x2) x8=1c00b914 x2:1c009b60 PA:1c009b78 +76998958ns 1433536 1c004532 01c12083 lw x1, 28(x2) x1=1c00412c x2:1c009b60 PA:1c009b7c +76998978ns 1433537 1c004534 02010113 addi x2, x2, 32 x2=1c009b80 x2:1c009b60 +76998998ns 1433538 1c004536 e85ff06f jal x0, -380 +76999059ns 1433541 1c0043ba 00c5d783 lhu x15, 12(x11) x15=00000089 x11:1c00b914 PA:1c00b920 +76999079ns 1433542 1c0043be fe010113 addi x2, x2, -32 x2=1c009b60 x2:1c009b80 +76999099ns 1433543 1c0043c0 00812c23 sw x8, 24(x2) x8:1c00b914 x2:1c009b60 PA:1c009b78 +76999119ns 1433544 1c0043c2 00912a23 sw x9, 20(x2) x9:1c009e10 x2:1c009b60 PA:1c009b74 +76999139ns 1433545 1c0043c4 00112e23 sw x1, 28(x2) x1:1c00412c x2:1c009b60 PA:1c009b7c +76999160ns 1433546 1c0043c6 01212823 sw x18, 16(x2) x18:0000000a x2:1c009b60 PA:1c009b70 +76999180ns 1433547 1c0043c8 01312623 sw x19, 12(x2) x19:0000000a x2:1c009b60 PA:1c009b6c +76999200ns 1433548 1c0043ca 0087f713 andi x14, x15, 8 x14=00000008 x15:00000089 +76999220ns 1433549 1c0043ce 00a004b3 add x9, x0, x10 x9=1c009e10 x10:1c009e10 +76999240ns 1433550 1c0043d0 00b00433 add x8, x0, x11 x8=1c00b914 x11:1c00b914 +76999261ns 1433551 1c0043d2 0e071363 bne x14, x0, 230 x14:00000008 +76999321ns 1433554 1c0044b8 0105a983 lw x19, 16(x11) x19=1c00bab8 x11:1c00b914 PA:1c00b924 +76999362ns 1433556 1c0044bc f20982e3 beq x19, x0, -220 x19:1c00bab8 +76999382ns 1433557 1c0044c0 0005a903 lw x18, 0(x11) x18=1c00bac5 x11:1c00b914 PA:1c00b914 +76999402ns 1433558 1c0044c4 0037f793 andi x15, x15, 3 x15=00000001 x15:00000089 +76999422ns 1433559 1c0044c6 0135a023 sw x19, 0(x11) x19:1c00bab8 x11:1c00b914 PA:1c00b914 +76999442ns 1433560 1c0044ca 41390933 sub x18, x18, x19 x18=0000000d x18:1c00bac5 x19:1c00bab8 +76999463ns 1433561 1c0044ce 00000713 addi x14, x0, 0 x14=00000000 +76999483ns 1433562 1c0044d0 00079263 bne x15, x0, 4 x15:00000001 +76999543ns 1433565 1c0044d4 00e42423 sw x14, 8(x8) x14:00000000 x8:1c00b914 PA:1c00b91c +76999564ns 1433566 1c0044d6 f12055e3 bge x0, x18, -246 x18:0000000d +76999584ns 1433567 1c0044da 02842783 lw x15, 40(x8) x15=1c004c5e x8:1c00b914 PA:1c00b93c +76999604ns 1433568 1c0044dc 02042583 lw x11, 32(x8) x11=1c00b914 x8:1c00b914 PA:1c00b934 +76999624ns 1433569 1c0044de 012006b3 add x13, x0, x18 x13=0000000d x18:0000000d +76999644ns 1433570 1c0044e0 01300633 add x12, x0, x19 x12=1c00bab8 x19:1c00bab8 +76999664ns 1433571 1c0044e2 00900533 add x10, x0, x9 x10=1c009e10 x9:1c009e10 +76999685ns 1433572 1c0044e4 000780e7 jalr x1, x15, 0 x1=1c0044e6 x15:1c004c5e +76999745ns 1433575 1c004c5e 00c5d783 lhu x15, 12(x11) x15=00000089 x11:1c00b914 PA:1c00b920 +76999765ns 1433576 1c004c62 fe010113 addi x2, x2, -32 x2=1c009b40 x2:1c009b60 +76999786ns 1433577 1c004c64 00812c23 sw x8, 24(x2) x8:1c00b914 x2:1c009b40 PA:1c009b58 +76999806ns 1433578 1c004c66 00912a23 sw x9, 20(x2) x9:1c009e10 x2:1c009b40 PA:1c009b54 +76999826ns 1433579 1c004c68 01212823 sw x18, 16(x2) x18:0000000d x2:1c009b40 PA:1c009b50 +76999846ns 1433580 1c004c6a 01312623 sw x19, 12(x2) x19:1c00bab8 x2:1c009b40 PA:1c009b4c +76999866ns 1433581 1c004c6c 00112e23 sw x1, 28(x2) x1:1c0044e6 x2:1c009b40 PA:1c009b5c +76999887ns 1433582 1c004c6e 1007f793 andi x15, x15, 256 x15=00000000 x15:00000089 +76999907ns 1433583 1c004c72 00a004b3 add x9, x0, x10 x9=1c009e10 x10:1c009e10 +76999927ns 1433584 1c004c74 00b00433 add x8, x0, x11 x8=1c00b914 x11:1c00b914 +76999947ns 1433585 1c004c76 00c00933 add x18, x0, x12 x18=1c00bab8 x12:1c00bab8 +76999967ns 1433586 1c004c78 00d009b3 add x19, x0, x13 x19=0000000d x13:0000000d +76999988ns 1433587 1c004c7a 00078663 beq x15, x0, 12 x15:00000000 +77000068ns 1433591 1c004c86 00c45783 lhu x15, 12(x8) x15=00000089 x8:1c00b914 PA:1c00b920 +77000089ns 1433592 1c004c8a fffff737 lui x14, 0xfffff000 x14=fffff000 +77000109ns 1433593 1c004c8c fff70713 addi x14, x14, -1 x14=ffffefff x14:fffff000 +77000129ns 1433594 1c004c8e 00e7f7b3 and x15, x15, x14 x15=00000089 x15:00000089 x14:ffffefff +77000149ns 1433595 1c004c90 00e41583 lh x11, 14(x8) x11=00000001 x8:1c00b914 PA:1c00b922 +77000169ns 1433596 1c004c94 00f41623 sh x15, 12(x8) x15:00000089 x8:1c00b914 PA:1c00b920 +77000189ns 1433597 1c004c98 01812403 lw x8, 24(x2) x8=1c00b914 x2:1c009b40 PA:1c009b58 +77000210ns 1433598 1c004c9a 01c12083 lw x1, 28(x2) x1=1c0044e6 x2:1c009b40 PA:1c009b5c +77000230ns 1433599 1c004c9c 013006b3 add x13, x0, x19 x13=0000000d x19:0000000d +77000250ns 1433600 1c004c9e 01200633 add x12, x0, x18 x12=1c00bab8 x18:1c00bab8 +77000270ns 1433601 1c004ca0 00c12983 lw x19, 12(x2) x19=1c00bab8 x2:1c009b40 PA:1c009b4c +77000290ns 1433602 1c004ca2 01012903 lw x18, 16(x2) x18=0000000d x2:1c009b40 PA:1c009b50 +77000311ns 1433603 1c004ca4 00900533 add x10, x0, x9 x10=1c009e10 x9:1c009e10 +77000331ns 1433604 1c004ca6 01412483 lw x9, 20(x2) x9=1c009e10 x2:1c009b40 PA:1c009b54 +77000351ns 1433605 1c004ca8 02010113 addi x2, x2, 32 x2=1c009b60 x2:1c009b40 +77000371ns 1433606 1c004caa 03e0006f jal x0, 62 +77000412ns 1433608 1c004ce8 ff010113 addi x2, x2, -16 x2=1c009b50 x2:1c009b60 +77000432ns 1433609 1c004cea 00812423 sw x8, 8(x2) x8:1c00b914 x2:1c009b50 PA:1c009b58 +77000452ns 1433610 1c004cec 00912223 sw x9, 4(x2) x9:1c009e10 x2:1c009b50 PA:1c009b54 +77000472ns 1433611 1c004cee 00a00433 add x8, x0, x10 x8=1c009e10 x10:1c009e10 +77000492ns 1433612 1c004cf0 00b00533 add x10, x0, x11 x10=00000001 x11:00000001 +77000513ns 1433613 1c004cf2 00c005b3 add x11, x0, x12 x11=1c00bab8 x12:1c00bab8 +77000533ns 1433614 1c004cf4 00d00633 add x12, x0, x13 x12=0000000d x13:0000000d +77000553ns 1433615 1c004cf6 00112623 sw x1, 12(x2) x1:1c0044e6 x2:1c009b50 PA:1c009b5c +77000573ns 1433616 1c004cf8 dc01a023 sw x0, -576(x3) x3:1c0093dc PA:1c00919c +77000593ns 1433617 1c004cfc cf7fd0ef jal x1, -8970 x1=1c004d00 +77000634ns 1433619 1c0029f2 fff50513 addi x10, x10, -1 x10=00000000 x10:00000001 +77000654ns 1433620 1c0029f4 00100793 addi x15, x0, 1 x15=00000001 +77000674ns 1433621 1c0029f6 00c58833 add x16, x11, x12 x16=1c00bac5 x11:1c00bab8 x12:0000000d +77000694ns 1433622 1c0029fa 00a7eb63 bltu x15, x10, 22 x15:00000001 x10:00000000 +77000714ns 1433623 1c0029fe 000026b7 lui x13, 0x2000 x13=00002000 +77000735ns 1433624 1c002a00 f8068693 addi x13, x13, -128 x13=00001f80 x13:00002000 +77000755ns 1433625 1c002a04 1a10f537 lui x10, 0x1a10f000 x10=1a10f000 +77000775ns 1433626 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bab8 x16:1c00bac5 +77000836ns 1433629 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bab9 x11:1c00bab8 +77000856ns 1433630 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000054 x11:1c00bab9 PA:1c00bab8 +77000876ns 1433631 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +77000896ns 1433632 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +77000916ns 1433633 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +77000937ns 1433634 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +77000957ns 1433635 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +77000977ns 1433636 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +77000997ns 1433637 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +77001017ns 1433638 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +77001038ns 1433639 1c002a38 0117a023 sw x17, 0(x15) x17:00000054 x15:1a10ff80 PA:1a10ff80 +77001058ns 1433640 1c002a3c fcdff06f jal x0, -52 +77001159ns 1433645 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bab9 x16:1c00bac5 +77001219ns 1433648 1c002a1c 00158593 addi x11, x11, 1 x11=1c00baba x11:1c00bab9 +77001239ns 1433649 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000065 x11:1c00baba PA:1c00bab9 +77001260ns 1433650 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +77001280ns 1433651 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +77001300ns 1433652 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +77001320ns 1433653 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +77001340ns 1433654 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +77001361ns 1433655 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +77001381ns 1433656 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +77001401ns 1433657 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +77001421ns 1433658 1c002a38 0117a023 sw x17, 0(x15) x17:00000065 x15:1a10ff80 PA:1a10ff80 +77001441ns 1433659 1c002a3c fcdff06f jal x0, -52 +77001542ns 1433664 1c002a08 01059a63 bne x11, x16, 20 x11:1c00baba x16:1c00bac5 +77001603ns 1433667 1c002a1c 00158593 addi x11, x11, 1 x11=1c00babb x11:1c00baba +77001623ns 1433668 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000073 x11:1c00babb PA:1c00baba +77001643ns 1433669 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +77001663ns 1433670 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +77001684ns 1433671 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +77001704ns 1433672 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +77001724ns 1433673 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +77001744ns 1433674 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +77001764ns 1433675 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +77001785ns 1433676 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +77001805ns 1433677 1c002a38 0117a023 sw x17, 0(x15) x17:00000073 x15:1a10ff80 PA:1a10ff80 +77001825ns 1433678 1c002a3c fcdff06f jal x0, -52 +77001926ns 1433683 1c002a08 01059a63 bne x11, x16, 20 x11:1c00babb x16:1c00bac5 +77001987ns 1433686 1c002a1c 00158593 addi x11, x11, 1 x11=1c00babc x11:1c00babb +77002007ns 1433687 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000074 x11:1c00babc PA:1c00babb +77002027ns 1433688 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +77002047ns 1433689 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +77002067ns 1433690 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +77002088ns 1433691 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +77002108ns 1433692 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +77002128ns 1433693 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +77002148ns 1433694 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +77002168ns 1433695 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +77002188ns 1433696 1c002a38 0117a023 sw x17, 0(x15) x17:00000074 x15:1a10ff80 PA:1a10ff80 +77002209ns 1433697 1c002a3c fcdff06f jal x0, -52 +77002310ns 1433702 1c002a08 01059a63 bne x11, x16, 20 x11:1c00babc x16:1c00bac5 +77002370ns 1433705 1c002a1c 00158593 addi x11, x11, 1 x11=1c00babd x11:1c00babc +77002390ns 1433706 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000020 x11:1c00babd PA:1c00babc +77002411ns 1433707 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +77002431ns 1433708 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +77002451ns 1433709 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +77002471ns 1433710 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +77002491ns 1433711 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +77002512ns 1433712 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +77002532ns 1433713 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +77002552ns 1433714 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +77002572ns 1433715 1c002a38 0117a023 sw x17, 0(x15) x17:00000020 x15:1a10ff80 PA:1a10ff80 +77002592ns 1433716 1c002a3c fcdff06f jal x0, -52 +77002693ns 1433721 1c002a08 01059a63 bne x11, x16, 20 x11:1c00babd x16:1c00bac5 +77002754ns 1433724 1c002a1c 00158593 addi x11, x11, 1 x11=1c00babe x11:1c00babd +77002774ns 1433725 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000073 x11:1c00babe PA:1c00babd +77002794ns 1433726 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +77002814ns 1433727 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +77002835ns 1433728 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +77002855ns 1433729 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +77002875ns 1433730 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +77002895ns 1433731 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +77002915ns 1433732 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +77002936ns 1433733 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +77002956ns 1433734 1c002a38 0117a023 sw x17, 0(x15) x17:00000073 x15:1a10ff80 PA:1a10ff80 +77002976ns 1433735 1c002a3c fcdff06f jal x0, -52 +77003077ns 1433740 1c002a08 01059a63 bne x11, x16, 20 x11:1c00babe x16:1c00bac5 +77003138ns 1433743 1c002a1c 00158593 addi x11, x11, 1 x11=1c00babf x11:1c00babe +77003158ns 1433744 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000075 x11:1c00babf PA:1c00babe +77003178ns 1433745 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +77003198ns 1433746 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +77003218ns 1433747 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +77003238ns 1433748 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +77003259ns 1433749 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +77003279ns 1433750 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +77003299ns 1433751 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +77003319ns 1433752 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +77003339ns 1433753 1c002a38 0117a023 sw x17, 0(x15) x17:00000075 x15:1a10ff80 PA:1a10ff80 +77003360ns 1433754 1c002a3c fcdff06f jal x0, -52 +77003461ns 1433759 1c002a08 01059a63 bne x11, x16, 20 x11:1c00babf x16:1c00bac5 +77003521ns 1433762 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac0 x11:1c00babf +77003541ns 1433763 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000063 x11:1c00bac0 PA:1c00babf +77003562ns 1433764 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +77003582ns 1433765 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +77003602ns 1433766 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +77003622ns 1433767 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +77003642ns 1433768 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +77003663ns 1433769 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +77003683ns 1433770 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +77003703ns 1433771 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +77003723ns 1433772 1c002a38 0117a023 sw x17, 0(x15) x17:00000063 x15:1a10ff80 PA:1a10ff80 +77003743ns 1433773 1c002a3c fcdff06f jal x0, -52 +77003844ns 1433778 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac0 x16:1c00bac5 +77003905ns 1433781 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac1 x11:1c00bac0 +77003925ns 1433782 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000063 x11:1c00bac1 PA:1c00bac0 +77003945ns 1433783 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +77003965ns 1433784 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +77003986ns 1433785 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +77004006ns 1433786 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +77004026ns 1433787 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +77004046ns 1433788 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +77004066ns 1433789 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +77004087ns 1433790 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +77004107ns 1433791 1c002a38 0117a023 sw x17, 0(x15) x17:00000063 x15:1a10ff80 PA:1a10ff80 +77004127ns 1433792 1c002a3c fcdff06f jal x0, -52 +77004228ns 1433797 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac1 x16:1c00bac5 +77004288ns 1433800 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac2 x11:1c00bac1 +77004309ns 1433801 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000065 x11:1c00bac2 PA:1c00bac1 +77004329ns 1433802 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +77004349ns 1433803 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +77004369ns 1433804 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +77004389ns 1433805 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +77004410ns 1433806 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +77004430ns 1433807 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +77004450ns 1433808 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +77004470ns 1433809 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +77004490ns 1433810 1c002a38 0117a023 sw x17, 0(x15) x17:00000065 x15:1a10ff80 PA:1a10ff80 +77004511ns 1433811 1c002a3c fcdff06f jal x0, -52 +77004612ns 1433816 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac2 x16:1c00bac5 +77004672ns 1433819 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac3 x11:1c00bac2 +77004692ns 1433820 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000073 x11:1c00bac3 PA:1c00bac2 +77004712ns 1433821 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +77004733ns 1433822 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +77004753ns 1433823 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +77004773ns 1433824 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +77004793ns 1433825 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +77004813ns 1433826 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +77004834ns 1433827 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +77004854ns 1433828 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +77004874ns 1433829 1c002a38 0117a023 sw x17, 0(x15) x17:00000073 x15:1a10ff80 PA:1a10ff80 +77004894ns 1433830 1c002a3c fcdff06f jal x0, -52 +77004995ns 1433835 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac3 x16:1c00bac5 +77005056ns 1433838 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac4 x11:1c00bac3 +77005076ns 1433839 1c002a1e fff5c883 lbu x17, -1(x11) x17=00000073 x11:1c00bac4 PA:1c00bac3 +77005096ns 1433840 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +77005116ns 1433841 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +77005137ns 1433842 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +77005157ns 1433843 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +77005177ns 1433844 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +77005197ns 1433845 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +77005217ns 1433846 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +77005237ns 1433847 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +77005258ns 1433848 1c002a38 0117a023 sw x17, 0(x15) x17:00000073 x15:1a10ff80 PA:1a10ff80 +77005278ns 1433849 1c002a3c fcdff06f jal x0, -52 +77005379ns 1433854 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac4 x16:1c00bac5 +77005439ns 1433857 1c002a1c 00158593 addi x11, x11, 1 x11=1c00bac5 x11:1c00bac4 +77005460ns 1433858 1c002a1e fff5c883 lbu x17, -1(x11) x17=0000000a x11:1c00bac5 PA:1c00bac4 +77005480ns 1433859 1c002a22 f1402773 csrrs x14, x0, 0xf14 x14=000003e0 +77005500ns 1433860 1c002a26 f14027f3 csrrs x15, x0, 0xf14 x15=000003e0 +77005520ns 1433861 1c002a2a 00371713 slli x14, x14, 0x3 x14=00001f00 x14:000003e0 +77005540ns 1433862 1c002a2c 00279793 slli x15, x15, 0x2 x15=00000f80 x15:000003e0 +77005561ns 1433863 1c002a2e 0ff77713 andi x14, x14, 255 x14=00000000 x14:00001f00 +77005581ns 1433864 1c002a32 00d7f7b3 and x15, x15, x13 x15=00000f80 x15:00000f80 x13:00001f80 +77005601ns 1433865 1c002a34 00a70733 add x14, x14, x10 x14=1a10f000 x14:00000000 x10:1a10f000 +77005621ns 1433866 1c002a36 00e787b3 add x15, x15, x14 x15=1a10ff80 x15:00000f80 x14:1a10f000 +77005641ns 1433867 1c002a38 0117a023 sw x17, 0(x15) x17:0000000a x15:1a10ff80 PA:1a10ff80 +77005662ns 1433868 1c002a3c fcdff06f jal x0, -52 +77005762ns 1433873 1c002a08 01059a63 bne x11, x16, 20 x11:1c00bac5 x16:1c00bac5 +77005783ns 1433874 1c002a0c 00c00533 add x10, x0, x12 x10=0000000d x12:0000000d +77005803ns 1433875 1c002a0e 00008067 jalr x0, x1, 0 x1:1c004d00 +77005843ns 1433877 1c004d00 fff00793 addi x15, x0, -1 x15=ffffffff +77005863ns 1433878 1c004d02 00f51663 bne x10, x15, 12 x10:0000000d x15:ffffffff +77005924ns 1433881 1c004d0e 00c12083 lw x1, 12(x2) x1=1c0044e6 x2:1c009b50 PA:1c009b5c +77005944ns 1433882 1c004d10 00812403 lw x8, 8(x2) x8=1c00b914 x2:1c009b50 PA:1c009b58 +77005964ns 1433883 1c004d12 00412483 lw x9, 4(x2) x9=1c009e10 x2:1c009b50 PA:1c009b54 +77005985ns 1433884 1c004d14 01010113 addi x2, x2, 16 x2=1c009b60 x2:1c009b50 +77006005ns 1433885 1c004d16 00008067 jalr x0, x1, 0 x1:1c0044e6 +77006065ns 1433888 1c0044e6 00a04a63 blt x0, x10, 20 x10:0000000d +77006126ns 1433891 1c0044fa 00a989b3 add x19, x19, x10 x19=1c00bac5 x19:1c00bab8 x10:0000000d +77006146ns 1433892 1c0044fc 40a90933 sub x18, x18, x10 x18=00000000 x18:0000000d x10:0000000d +77006166ns 1433893 1c004500 fd7ff06f jal x0, -42 +77006227ns 1433896 1c0044d6 f12055e3 bge x0, x18, -246 x18:00000000 +77006287ns 1433899 1c0043e0 00000513 addi x10, x0, 0 x10=00000000 +77006308ns 1433900 1c0043e2 0be0006f jal x0, 190 +77006348ns 1433902 1c0044a0 01c12083 lw x1, 28(x2) x1=1c00412c x2:1c009b60 PA:1c009b7c +77006368ns 1433903 1c0044a2 01812403 lw x8, 24(x2) x8=1c00b914 x2:1c009b60 PA:1c009b78 +77006388ns 1433904 1c0044a4 01412483 lw x9, 20(x2) x9=1c009e10 x2:1c009b60 PA:1c009b74 +77006409ns 1433905 1c0044a6 01012903 lw x18, 16(x2) x18=0000000a x2:1c009b60 PA:1c009b70 +77006429ns 1433906 1c0044a8 00c12983 lw x19, 12(x2) x19=0000000a x2:1c009b60 PA:1c009b6c +77006449ns 1433907 1c0044aa 02010113 addi x2, x2, 32 x2=1c009b80 x2:1c009b60 +77006469ns 1433908 1c0044ac 00008067 jalr x0, x1, 0 x1:1c00412c +77006510ns 1433910 1c00412c 02051d63 bne x10, x0, 58 x10:00000000 +77006530ns 1433911 1c00412e 01c12083 lw x1, 28(x2) x1=1c003e52 x2:1c009b80 PA:1c009b9c +77006550ns 1433912 1c004130 01812403 lw x8, 24(x2) x8=1c00b914 x2:1c009b80 PA:1c009b98 +77006570ns 1433913 1c004132 01412483 lw x9, 20(x2) x9=1c009e10 x2:1c009b80 PA:1c009b94 +77006590ns 1433914 1c004134 00c12983 lw x19, 12(x2) x19=ffffffff x2:1c009b80 PA:1c009b8c +77006611ns 1433915 1c004136 01200533 add x10, x0, x18 x10=0000000a x18:0000000a +77006631ns 1433916 1c004138 01012903 lw x18, 16(x2) x18=1c008960 x2:1c009b80 PA:1c009b90 +77006651ns 1433917 1c00413a 02010113 addi x2, x2, 32 x2=1c009ba0 x2:1c009b80 +77006671ns 1433918 1c00413c 00008067 jalr x0, x1, 0 x1:1c003e52 +77006711ns 1433920 1c003e52 fff00793 addi x15, x0, -1 x15=ffffffff +77006732ns 1433921 1c003e54 02f50863 beq x10, x15, 48 x10:0000000a x15:ffffffff +77006752ns 1433922 1c003e58 00a00513 addi x10, x0, 10 x10=0000000a +77006772ns 1433923 1c003e5a 02c0006f jal x0, 44 +77006812ns 1433925 1c003e86 01c12083 lw x1, 28(x2) x1=1c00374c x2:1c009ba0 PA:1c009bbc +77006833ns 1433926 1c003e88 01812403 lw x8, 24(x2) x8=00000000 x2:1c009ba0 PA:1c009bb8 +77006853ns 1433927 1c003e8a 01412483 lw x9, 20(x2) x9=1c009190 x2:1c009ba0 PA:1c009bb4 +77006873ns 1433928 1c003e8c 01012903 lw x18, 16(x2) x18=1c009188 x2:1c009ba0 PA:1c009bb0 +77006893ns 1433929 1c003e8e 00c12983 lw x19, 12(x2) x19=1c009000 x2:1c009ba0 PA:1c009bac +77006913ns 1433930 1c003e90 00812a03 lw x20, 8(x2) x20=1c00918c x2:1c009ba0 PA:1c009ba8 +77006934ns 1433931 1c003e92 02010113 addi x2, x2, 32 x2=1c009bc0 x2:1c009ba0 +77006954ns 1433932 1c003e94 00008067 jalr x0, x1, 0 x1:1c00374c +77006994ns 1433934 1c00374c 02010513 addi x10, x2, 32 x10=1c009be0 x2:1c009bc0 +77007014ns 1433935 1c00374e beeff0ef jal x1, -3090 x1=1c003752 +77007055ns 1433937 1c002b3c 00452583 lw x11, 4(x10) x11=1c009bec x10:1c009be0 PA:1c009be4 +77007075ns 1433938 1c002b3e 00852503 lw x10, 8(x10) x10=1c00b8c0 x10:1c009be0 PA:1c009be8 +77007095ns 1433939 1c002b40 5100006f jal x0, 1296 +77007136ns 1433941 1c003050 ff010113 addi x2, x2, -16 x2=1c009bb0 x2:1c009bc0 +77007156ns 1433942 1c003052 00912223 sw x9, 4(x2) x9:1c009190 x2:1c009bb0 PA:1c009bb4 +77007176ns 1433943 1c003054 00a004b3 add x9, x0, x10 x9=1c00b8c0 x10:1c00b8c0 +77007196ns 1433944 1c003056 00112623 sw x1, 12(x2) x1:1c003752 x2:1c009bb0 PA:1c009bbc +77007216ns 1433945 1c003058 00812423 sw x8, 8(x2) x8:00000000 x2:1c009bb0 PA:1c009bb8 +77007236ns 1433946 1c00305a 01212023 sw x18, 0(x2) x18:1c009188 x2:1c009bb0 PA:1c009bb0 +77007257ns 1433947 1c00305c b57ff0ef jal x1, -1194 x1=1c003060 +77007317ns 1433950 1c002bb2 30047573 csrrci x10, 0x00000008, 0x300 x10=00000088 +77007398ns 1433954 1c002bb6 00008067 jalr x0, x1, 0 x1:1c003060 +77007438ns 1433956 1c003060 0044a403 lw x8, 4(x9) x8=1c00b890 x9:1c00b8c0 PA:1c00b8c4 +77007459ns 1433957 1c003062 0384c583 lbu x11, 56(x9) x11=00000000 x9:1c00b8c0 PA:1c00b8f8 +77007479ns 1433958 1c003066 00a00933 add x18, x0, x10 x18=00000088 x10:00000088 +77007499ns 1433959 1c003068 00800533 add x10, x0, x8 x10=1c00b890 x8:1c00b890 +77007519ns 1433960 1c00306a bbbff0ef jal x1, -1094 x1=1c00306e +77007560ns 1433962 1c002c24 00452783 lw x15, 4(x10) x15=00000000 x10:1c00b890 PA:1c00b894 +77007600ns 1433964 1c002c26 00f00733 add x14, x0, x15 x14=00000000 x15:00000000 +77007620ns 1433965 1c002c28 00078963 beq x15, x0, 18 x15:00000000 +77007681ns 1433968 1c002c3a 00008067 jalr x0, x1, 0 x1:1c00306e +77007721ns 1433970 1c00306e 01042783 lw x15, 16(x8) x15=00000001 x8:1c00b890 PA:1c00b8a0 +77007741ns 1433971 1c003070 00900533 add x10, x0, x9 x10=1c00b8c0 x9:1c00b8c0 +77007761ns 1433972 1c003072 fff78793 addi x15, x15, -1 x15=00000000 x15:00000001 +77007782ns 1433973 1c003074 00f42823 sw x15, 16(x8) x15:00000000 x8:1c00b890 PA:1c00b8a0 +77007802ns 1433974 1c003076 04079763 bne x15, x0, 78 x15:00000000 +77007822ns 1433975 1c003078 01444783 lbu x15, 20(x8) x15=00000000 x8:1c00b890 PA:1c00b8a4 +77007862ns 1433977 1c00307c 00178713 addi x14, x15, 1 x14=00000001 x15:00000000 +77007883ns 1433978 1c003080 00100793 addi x15, x0, 1 x15=00000001 +77007903ns 1433979 1c003082 00e797b3 sll x15, x15, x14 x15=00000002 x15:00000001 x14:00000001 +77007923ns 1433980 1c003086 fff7c793 xori x15, x15, -1 x15=fffffffd x15:00000002 +77007943ns 1433981 1c00308a 1a102737 lui x14, 0x1a102000 x14=1a102000 +77007963ns 1433982 1c00308e 00072683 lw x13, 0(x14) x13=00000002 x14:1a102000 PA:1a102000 +77008044ns 1433986 1c003090 00d7f7b3 and x15, x15, x13 x15=00000000 x15:fffffffd x13:00000002 +77008064ns 1433987 1c003092 00f72023 sw x15, 0(x14) x15:00000000 x14:1a102000 PA:1a102000 +77008085ns 1433988 1c003094 01444503 lbu x10, 20(x8) x10=00000000 x8:1c00b890 PA:1c00b8a4 +77008165ns 1433992 1c003098 00251513 slli x10, x10, 0x2 x10=00000000 x10:00000000 +77008186ns 1433993 1c00309a 00750513 addi x10, x10, 7 x10=00000007 x10:00000000 +77008206ns 1433994 1c00309c be1ff0ef jal x1, -1056 x1=1c0030a0 +77008246ns 1433996 1c002c7c 0ff00793 addi x15, x0, 255 x15=000000ff +77008266ns 1433997 1c002c80 00a7ef63 bltu x15, x10, 30 x15:000000ff x10:00000007 +77008286ns 1433998 1c002c84 00555793 srli x15, x10, 0x5 x15=00000000 x10:00000007 +77008307ns 1433999 1c002c88 1a106737 lui x14, 0x1a106000 x14=1a106000 +77008327ns 1434000 1c002c8c 00470713 addi x14, x14, 4 x14=1a106004 x14:1a106000 +77008347ns 1434001 1c002c8e 00279793 slli x15, x15, 0x2 x15=00000000 x15:00000000 +77008367ns 1434002 1c002c90 00e787b3 add x15, x15, x14 x15=1a106004 x15:00000000 x14:1a106004 +77008387ns 1434003 1c002c92 0007a683 lw x13, 0(x15) x13=ffffff7f x15:1a106004 PA:1a106004 +77008408ns 1434004 1c002c94 00100713 addi x14, x0, 1 x14=00000001 +77008468ns 1434007 1c002c96 00a71533 sll x10, x14, x10 x10=00000080 x14:00000001 x10:00000007 +77008488ns 1434008 1c002c9a 00d56533 or x10, x10, x13 x10=ffffffff x10:00000080 x13:ffffff7f +77008509ns 1434009 1c002c9c 00a7a023 sw x10, 0(x15) x10:ffffffff x15:1a106004 PA:1a106004 +77008529ns 1434010 1c002c9e 00008067 jalr x0, x1, 0 x1:1c0030a0 +77008610ns 1434014 1c0030a0 01444503 lbu x10, 20(x8) x10=00000000 x8:1c00b890 PA:1c00b8a4 +77008650ns 1434016 1c0030a4 00251513 slli x10, x10, 0x2 x10=00000000 x10:00000000 +77008670ns 1434017 1c0030a6 00750513 addi x10, x10, 7 x10=00000007 x10:00000000 +77008690ns 1434018 1c0030a8 31c000ef jal x1, 796 x1=1c0030aa +77008731ns 1434020 1c0033c4 00251793 slli x15, x10, 0x2 x15=0000001c x10:00000007 +77008751ns 1434021 1c0033c8 a2818513 addi x10, x3, -1496 x10=1c008e04 x3:1c0093dc +77008771ns 1434022 1c0033cc 00f50533 add x10, x10, x15 x10=1c008e20 x10:1c008e04 x15:0000001c +77008791ns 1434023 1c0033ce 1c0037b7 lui x15, 0x1c003000 x15=1c003000 +77008811ns 1434024 1c0033d2 38278793 addi x15, x15, 898 x15=1c003382 x15:1c003000 +77008832ns 1434025 1c0033d6 00f52023 sw x15, 0(x10) x15:1c003382 x10:1c008e20 PA:1c008e20 +77008852ns 1434026 1c0033d8 00008067 jalr x0, x1, 0 x1:1c0030aa +77008912ns 1434029 1c0030aa 01444783 lbu x15, 20(x8) x15=00000000 x8:1c00b890 PA:1c00b8a4 +77008933ns 1434030 1c0030ae 00042503 lw x10, 0(x8) x10=1c00b8b0 x8:1c00b890 PA:1c00b890 +77008953ns 1434031 1c0030b0 00279713 slli x14, x15, 0x2 x14=00000000 x15:00000000 +77008973ns 1434032 1c0030b4 da418793 addi x15, x3, -604 x15=1c009180 x3:1c0093dc +77008993ns 1434033 1c0030b8 00e787b3 add x15, x15, x14 x15=1c009180 x15:1c009180 x14:00000000 +77009013ns 1434034 1c0030ba 0007a023 sw x0, 0(x15) x15:1c009180 PA:1c009180 +77009034ns 1434035 1c0030be 057000ef jal x1, 2134 x1=1c0030c2 +77009074ns 1434037 1c003914 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +77009094ns 1434038 1c003918 00a005b3 add x11, x0, x10 x11=1c00b8b0 x10:1c00b8b0 +77009114ns 1434039 1c00391a c447a503 lw x10, -956(x15) x10=1c009e10 x15:1c009000 PA:1c008c44 +77009135ns 1434040 1c00391e 0020006f jal x0, 2 +77009175ns 1434042 1c003920 0a058363 beq x11, x0, 166 x11:1c00b8b0 +77009195ns 1434043 1c003922 ffc5a783 lw x15, -4(x11) x15=00000010 x11:1c00b8b0 PA:1c00b8ac +77009215ns 1434044 1c003926 fe010113 addi x2, x2, -32 x2=1c009b90 x2:1c009bb0 +77009235ns 1434045 1c003928 00812c23 sw x8, 24(x2) x8:1c00b890 x2:1c009b90 PA:1c009ba8 +77009256ns 1434046 1c00392a 00112e23 sw x1, 28(x2) x1:1c0030c2 x2:1c009b90 PA:1c009bac +77009276ns 1434047 1c00392c ffc58413 addi x8, x11, -4 x8=1c00b8ac x11:1c00b8b0 +77009296ns 1434048 1c003930 0007d363 bge x15, x0, 6 x15:00000010 +77009357ns 1434051 1c003936 00a12623 sw x10, 12(x2) x10:1c009e10 x2:1c009b90 PA:1c009b9c +77009377ns 1434052 1c003938 92eff0ef jal x1, -3794 x1=1c00393c +77009437ns 1434055 1c002a66 fb1fe06f jal x0, -4176 +77009498ns 1434058 1c001a16 d6818793 addi x15, x3, -664 x15=1c009144 x3:1c0093dc +77009518ns 1434059 1c001a1a 0007a703 lw x14, 0(x15) x14=00000000 x15:1c009144 PA:1c009144 +77009559ns 1434061 1c001a1c 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +77009579ns 1434062 1c001a1e 00e7a023 sw x14, 0(x15) x14:00000001 x15:1c009144 PA:1c009144 +77009599ns 1434063 1c001a20 00008067 jalr x0, x1, 0 x1:1c00393c +77009639ns 1434065 1c00393c db81a783 lw x15, -584(x3) x15=1c00c1d4 x3:1c0093dc PA:1c009194 +77009660ns 1434066 1c003940 00c12503 lw x10, 12(x2) x10=1c009e10 x2:1c009b90 PA:1c009b9c +77009680ns 1434067 1c003942 00e00633 add x12, x0, x14 x12=00000001 x14:00000001 +77009700ns 1434068 1c003944 00079a63 bne x15, x0, 20 x15:1c00c1d4 +77009760ns 1434071 1c003958 00f47f63 bgeu x8, x15, 30 x8:1c00b8ac x15:1c00c1d4 +77009781ns 1434072 1c00395c 00042683 lw x13, 0(x8) x13=00000010 x8:1c00b8ac PA:1c00b8ac +77009821ns 1434074 1c00395e 00d40733 add x14, x8, x13 x14=1c00b8bc x8:1c00b8ac x13:00000010 +77009841ns 1434075 1c003962 00e79663 bne x15, x14, 12 x15:1c00c1d4 x14:1c00b8bc +77009902ns 1434078 1c00396e 00f42223 sw x15, 4(x8) x15:1c00c1d4 x8:1c00b8ac PA:1c00b8b0 +77009922ns 1434079 1c003970 da81ac23 sw x8, -584(x3) x8:1c00b8ac x3:1c0093dc PA:1c009194 +77009942ns 1434080 1c003974 fdbff06f jal x0, -38 +77009983ns 1434082 1c00394e 01812403 lw x8, 24(x2) x8=1c00b890 x2:1c009b90 PA:1c009ba8 +77010003ns 1434083 1c003950 01c12083 lw x1, 28(x2) x1=1c0030c2 x2:1c009b90 PA:1c009bac +77010023ns 1434084 1c003952 02010113 addi x2, x2, 32 x2=1c009bb0 x2:1c009b90 +77010043ns 1434085 1c003954 916ff06f jal x0, -3818 +77010104ns 1434088 1c002a6a 8e3ff06f jal x0, -1822 +77010144ns 1434090 1c00234c fc010113 addi x2, x2, -64 x2=1c009b70 x2:1c009bb0 +77010164ns 1434091 1c00234e 02812c23 sw x8, 56(x2) x8:1c00b890 x2:1c009b70 PA:1c009ba8 +77010185ns 1434092 1c002350 d6818413 addi x8, x3, -664 x8=1c009144 x3:1c0093dc +77010205ns 1434093 1c002354 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +77010225ns 1434094 1c002356 02112e23 sw x1, 60(x2) x1:1c0030c2 x2:1c009b70 PA:1c009bac +77010245ns 1434095 1c002358 02912a23 sw x9, 52(x2) x9:1c00b8c0 x2:1c009b70 PA:1c009ba4 +77010265ns 1434096 1c00235a 03212823 sw x18, 48(x2) x18:00000088 x2:1c009b70 PA:1c009ba0 +77010285ns 1434097 1c00235c 03312623 sw x19, 44(x2) x19:1c009000 x2:1c009b70 PA:1c009b9c +77010306ns 1434098 1c00235e 03412423 sw x20, 40(x2) x20:1c00918c x2:1c009b70 PA:1c009b98 +77010326ns 1434099 1c002360 03512223 sw x21, 36(x2) x21:a5a5a5a5 x2:1c009b70 PA:1c009b94 +77010346ns 1434100 1c002362 03612023 sw x22, 32(x2) x22:a5a5a5a5 x2:1c009b70 PA:1c009b90 +77010366ns 1434101 1c002364 01712e23 sw x23, 28(x2) x23:a5a5a5a5 x2:1c009b70 PA:1c009b8c +77010386ns 1434102 1c002366 02079263 bne x15, x0, 36 x15:00000001 +77010467ns 1434106 1c00238a c83ff0ef jal x1, -894 x1=1c00238e +77010508ns 1434108 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +77010588ns 1434112 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +77010629ns 1434114 1c002014 00078863 beq x15, x0, 16 x15:00000001 +77010649ns 1434115 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +77010669ns 1434116 1c00201a 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +77010689ns 1434117 1c00201c 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +77010710ns 1434118 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c009db8 PA:1c009dfc +77010750ns 1434120 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +77010770ns 1434121 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c009db8 PA:1c009dfc +77010790ns 1434122 1c002024 00008067 jalr x0, x1, 0 x1:1c00238e +77010831ns 1434124 1c00238e 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +77010871ns 1434126 1c002390 fff78793 addi x15, x15, -1 x15=00000000 x15:00000001 +77010891ns 1434127 1c002392 00f42023 sw x15, 0(x8) x15:00000000 x8:1c009144 PA:1c009144 +77010911ns 1434128 1c002394 00042783 lw x15, 0(x8) x15=00000000 x8:1c009144 PA:1c009144 +77010952ns 1434130 1c002396 02078163 beq x15, x0, 34 x15:00000000 +77011012ns 1434133 1c0023b8 d601a783 lw x15, -672(x3) x15=00000003 x3:1c0093dc PA:1c00913c +77011053ns 1434135 1c0023bc fc078ee3 beq x15, x0, -36 x15:00000003 +77011073ns 1434136 1c0023be 1c009937 lui x18, 0x1c009000 x18=1c009000 +77011093ns 1434137 1c0023c2 00000413 addi x8, x0, 0 x8=00000000 +77011113ns 1434138 1c0023c4 93818493 addi x9, x3, -1736 x9=1c008d14 x3:1c0093dc +77011134ns 1434139 1c0023c8 00100993 addi x19, x0, 1 x19=00000001 +77011154ns 1434140 1c0023ca c8890913 addi x18, x18, -888 x18=1c008c88 x18:1c009000 +77011174ns 1434141 1c0023ce 01400a93 addi x21, x0, 20 x21=00000014 +77011194ns 1434142 1c0023d0 04c0006f jal x0, 76 +77011235ns 1434144 1c00241c 0004a783 lw x15, 0(x9) x15=00000000 x9:1c008d14 PA:1c008d14 +77011275ns 1434146 1c00241e fa079ae3 bne x15, x0, -76 x15:00000000 +77011295ns 1434147 1c002420 00040363 beq x8, x0, 6 x8:00000000 +77011376ns 1434151 1c002426 d8018713 addi x14, x3, -640 x14=1c00915c x3:1c0093dc +77011396ns 1434152 1c00242a 00072483 lw x9, 0(x14) x9=00000000 x14:1c00915c PA:1c00915c +77011416ns 1434153 1c00242c d8018413 addi x8, x3, -640 x8=1c00915c x3:1c0093dc +77011436ns 1434154 1c002430 00048d63 beq x9, x0, 26 x9:00000000 +77011517ns 1434158 1c00244a d8c1a783 lw x15, -628(x3) x15=00000000 x3:1c0093dc PA:1c009168 +77011558ns 1434160 1c00244e f40785e3 beq x15, x0, -182 x15:00000000 +77011618ns 1434163 1c002398 00000513 addi x10, x0, 0 x10=00000000 +77011638ns 1434164 1c00239a 00a12623 sw x10, 12(x2) x10:00000000 x2:1c009b70 PA:1c009b7c +77011659ns 1434165 1c00239c c8bff0ef jal x1, -886 x1=1c0023a0 +77011719ns 1434168 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +77011759ns 1434170 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +77011780ns 1434171 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +77011800ns 1434172 1c002030 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +77011840ns 1434174 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c009db8 PA:1c009dfc +77011881ns 1434176 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +77011901ns 1434177 1c002036 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +77011921ns 1434178 1c002038 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +77011941ns 1434179 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c009db8 PA:1c009dfc +77011982ns 1434181 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +77012002ns 1434182 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c009db8 PA:1c009dfc +77012022ns 1434183 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c009db8 PA:1c009dfc +77012062ns 1434185 1c002042 00079363 bne x15, x0, 6 x15:00000000 +77012083ns 1434186 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +77012163ns 1434190 1c002048 00008067 jalr x0, x1, 0 x1:1c0023a0 +77012204ns 1434192 1c0023a0 03c12083 lw x1, 60(x2) x1=1c0030c2 x2:1c009b70 PA:1c009bac +77012224ns 1434193 1c0023a2 03812403 lw x8, 56(x2) x8=1c00b890 x2:1c009b70 PA:1c009ba8 +77012244ns 1434194 1c0023a4 00c12503 lw x10, 12(x2) x10=00000000 x2:1c009b70 PA:1c009b7c +77012264ns 1434195 1c0023a6 03412483 lw x9, 52(x2) x9=1c00b8c0 x2:1c009b70 PA:1c009ba4 +77012284ns 1434196 1c0023a8 03012903 lw x18, 48(x2) x18=00000088 x2:1c009b70 PA:1c009ba0 +77012305ns 1434197 1c0023aa 02c12983 lw x19, 44(x2) x19=1c009000 x2:1c009b70 PA:1c009b9c +77012325ns 1434198 1c0023ac 02812a03 lw x20, 40(x2) x20=1c00918c x2:1c009b70 PA:1c009b98 +77012345ns 1434199 1c0023ae 02412a83 lw x21, 36(x2) x21=a5a5a5a5 x2:1c009b70 PA:1c009b94 +77012365ns 1434200 1c0023b0 02012b03 lw x22, 32(x2) x22=a5a5a5a5 x2:1c009b70 PA:1c009b90 +77012385ns 1434201 1c0023b2 01c12b83 lw x23, 28(x2) x23=a5a5a5a5 x2:1c009b70 PA:1c009b8c +77012406ns 1434202 1c0023b4 04010113 addi x2, x2, 64 x2=1c009bb0 x2:1c009b70 +77012426ns 1434203 1c0023b6 00008067 jalr x0, x1, 0 x1:1c0030c2 +77012466ns 1434205 1c0030c2 00800533 add x10, x0, x8 x10=1c00b890 x8:1c00b890 +77012486ns 1434206 1c0030c4 051000ef jal x1, 2128 x1=1c0030c8 +77012527ns 1434208 1c003914 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +77012547ns 1434209 1c003918 00a005b3 add x11, x0, x10 x11=1c00b890 x10:1c00b890 +77012567ns 1434210 1c00391a c447a503 lw x10, -956(x15) x10=1c009e10 x15:1c009000 PA:1c008c44 +77012587ns 1434211 1c00391e 0020006f jal x0, 2 +77012628ns 1434213 1c003920 0a058363 beq x11, x0, 166 x11:1c00b890 +77012648ns 1434214 1c003922 ffc5a783 lw x15, -4(x11) x15=00000020 x11:1c00b890 PA:1c00b88c +77012668ns 1434215 1c003926 fe010113 addi x2, x2, -32 x2=1c009b90 x2:1c009bb0 +77012688ns 1434216 1c003928 00812c23 sw x8, 24(x2) x8:1c00b890 x2:1c009b90 PA:1c009ba8 +77012709ns 1434217 1c00392a 00112e23 sw x1, 28(x2) x1:1c0030c8 x2:1c009b90 PA:1c009bac +77012729ns 1434218 1c00392c ffc58413 addi x8, x11, -4 x8=1c00b88c x11:1c00b890 +77012749ns 1434219 1c003930 0007d363 bge x15, x0, 6 x15:00000020 +77012809ns 1434222 1c003936 00a12623 sw x10, 12(x2) x10:1c009e10 x2:1c009b90 PA:1c009b9c +77012830ns 1434223 1c003938 92eff0ef jal x1, -3794 x1=1c00393c +77012890ns 1434226 1c002a66 fb1fe06f jal x0, -4176 +77012951ns 1434229 1c001a16 d6818793 addi x15, x3, -664 x15=1c009144 x3:1c0093dc +77012971ns 1434230 1c001a1a 0007a703 lw x14, 0(x15) x14=00000000 x15:1c009144 PA:1c009144 +77013011ns 1434232 1c001a1c 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +77013032ns 1434233 1c001a1e 00e7a023 sw x14, 0(x15) x14:00000001 x15:1c009144 PA:1c009144 +77013052ns 1434234 1c001a20 00008067 jalr x0, x1, 0 x1:1c00393c +77013092ns 1434236 1c00393c db81a783 lw x15, -584(x3) x15=1c00b8ac x3:1c0093dc PA:1c009194 +77013112ns 1434237 1c003940 00c12503 lw x10, 12(x2) x10=1c009e10 x2:1c009b90 PA:1c009b9c +77013133ns 1434238 1c003942 00e00633 add x12, x0, x14 x12=00000001 x14:00000001 +77013153ns 1434239 1c003944 00079a63 bne x15, x0, 20 x15:1c00b8ac +77013213ns 1434242 1c003958 00f47f63 bgeu x8, x15, 30 x8:1c00b88c x15:1c00b8ac +77013234ns 1434243 1c00395c 00042683 lw x13, 0(x8) x13=00000020 x8:1c00b88c PA:1c00b88c +77013274ns 1434245 1c00395e 00d40733 add x14, x8, x13 x14=1c00b8ac x8:1c00b88c x13:00000020 +77013294ns 1434246 1c003962 00e79663 bne x15, x14, 12 x15:1c00b8ac x14:1c00b8ac +77013314ns 1434247 1c003966 0007a703 lw x14, 0(x15) x14=00000010 x15:1c00b8ac PA:1c00b8ac +77013334ns 1434248 1c003968 0047a783 lw x15, 4(x15) x15=1c00c1d4 x15:1c00b8ac PA:1c00b8b0 +77013355ns 1434249 1c00396a 00d70733 add x14, x14, x13 x14=00000030 x14:00000010 x13:00000020 +77013375ns 1434250 1c00396c 00e42023 sw x14, 0(x8) x14:00000030 x8:1c00b88c PA:1c00b88c +77013395ns 1434251 1c00396e 00f42223 sw x15, 4(x8) x15:1c00c1d4 x8:1c00b88c PA:1c00b890 +77013415ns 1434252 1c003970 da81ac23 sw x8, -584(x3) x8:1c00b88c x3:1c0093dc PA:1c009194 +77013435ns 1434253 1c003974 fdbff06f jal x0, -38 +77013476ns 1434255 1c00394e 01812403 lw x8, 24(x2) x8=1c00b890 x2:1c009b90 PA:1c009ba8 +77013496ns 1434256 1c003950 01c12083 lw x1, 28(x2) x1=1c0030c8 x2:1c009b90 PA:1c009bac +77013516ns 1434257 1c003952 02010113 addi x2, x2, 32 x2=1c009bb0 x2:1c009b90 +77013536ns 1434258 1c003954 916ff06f jal x0, -3818 +77013597ns 1434261 1c002a6a 8e3ff06f jal x0, -1822 +77013637ns 1434263 1c00234c fc010113 addi x2, x2, -64 x2=1c009b70 x2:1c009bb0 +77013658ns 1434264 1c00234e 02812c23 sw x8, 56(x2) x8:1c00b890 x2:1c009b70 PA:1c009ba8 +77013678ns 1434265 1c002350 d6818413 addi x8, x3, -664 x8=1c009144 x3:1c0093dc +77013698ns 1434266 1c002354 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +77013718ns 1434267 1c002356 02112e23 sw x1, 60(x2) x1:1c0030c8 x2:1c009b70 PA:1c009bac +77013738ns 1434268 1c002358 02912a23 sw x9, 52(x2) x9:1c00b8c0 x2:1c009b70 PA:1c009ba4 +77013759ns 1434269 1c00235a 03212823 sw x18, 48(x2) x18:00000088 x2:1c009b70 PA:1c009ba0 +77013779ns 1434270 1c00235c 03312623 sw x19, 44(x2) x19:1c009000 x2:1c009b70 PA:1c009b9c +77013799ns 1434271 1c00235e 03412423 sw x20, 40(x2) x20:1c00918c x2:1c009b70 PA:1c009b98 +77013819ns 1434272 1c002360 03512223 sw x21, 36(x2) x21:a5a5a5a5 x2:1c009b70 PA:1c009b94 +77013839ns 1434273 1c002362 03612023 sw x22, 32(x2) x22:a5a5a5a5 x2:1c009b70 PA:1c009b90 +77013859ns 1434274 1c002364 01712e23 sw x23, 28(x2) x23:a5a5a5a5 x2:1c009b70 PA:1c009b8c +77013880ns 1434275 1c002366 02079263 bne x15, x0, 36 x15:00000001 +77013960ns 1434279 1c00238a c83ff0ef jal x1, -894 x1=1c00238e +77014001ns 1434281 1c00200c 30047073 csrrci x0, 0x00000008, 0x300 +77014082ns 1434285 1c002010 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +77014122ns 1434287 1c002014 00078863 beq x15, x0, 16 x15:00000001 +77014142ns 1434288 1c002016 d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +77014162ns 1434289 1c00201a 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +77014183ns 1434290 1c00201c 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +77014203ns 1434291 1c00201e 0446a703 lw x14, 68(x13) x14=00000000 x13:1c009db8 PA:1c009dfc +77014243ns 1434293 1c002020 00170713 addi x14, x14, 1 x14=00000001 x14:00000000 +77014263ns 1434294 1c002022 04e6a223 sw x14, 68(x13) x14:00000001 x13:1c009db8 PA:1c009dfc +77014283ns 1434295 1c002024 00008067 jalr x0, x1, 0 x1:1c00238e +77014324ns 1434297 1c00238e 00042783 lw x15, 0(x8) x15=00000001 x8:1c009144 PA:1c009144 +77014364ns 1434299 1c002390 fff78793 addi x15, x15, -1 x15=00000000 x15:00000001 +77014384ns 1434300 1c002392 00f42023 sw x15, 0(x8) x15:00000000 x8:1c009144 PA:1c009144 +77014405ns 1434301 1c002394 00042783 lw x15, 0(x8) x15=00000000 x8:1c009144 PA:1c009144 +77014445ns 1434303 1c002396 02078163 beq x15, x0, 34 x15:00000000 +77014506ns 1434306 1c0023b8 d601a783 lw x15, -672(x3) x15=00000003 x3:1c0093dc PA:1c00913c +77014546ns 1434308 1c0023bc fc078ee3 beq x15, x0, -36 x15:00000003 +77014566ns 1434309 1c0023be 1c009937 lui x18, 0x1c009000 x18=1c009000 +77014586ns 1434310 1c0023c2 00000413 addi x8, x0, 0 x8=00000000 +77014607ns 1434311 1c0023c4 93818493 addi x9, x3, -1736 x9=1c008d14 x3:1c0093dc +77014627ns 1434312 1c0023c8 00100993 addi x19, x0, 1 x19=00000001 +77014647ns 1434313 1c0023ca c8890913 addi x18, x18, -888 x18=1c008c88 x18:1c009000 +77014667ns 1434314 1c0023ce 01400a93 addi x21, x0, 20 x21=00000014 +77014687ns 1434315 1c0023d0 04c0006f jal x0, 76 +77014728ns 1434317 1c00241c 0004a783 lw x15, 0(x9) x15=00000000 x9:1c008d14 PA:1c008d14 +77014768ns 1434319 1c00241e fa079ae3 bne x15, x0, -76 x15:00000000 +77014788ns 1434320 1c002420 00040363 beq x8, x0, 6 x8:00000000 +77014869ns 1434324 1c002426 d8018713 addi x14, x3, -640 x14=1c00915c x3:1c0093dc +77014889ns 1434325 1c00242a 00072483 lw x9, 0(x14) x9=00000000 x14:1c00915c PA:1c00915c +77014909ns 1434326 1c00242c d8018413 addi x8, x3, -640 x8=1c00915c x3:1c0093dc +77014930ns 1434327 1c002430 00048d63 beq x9, x0, 26 x9:00000000 +77015010ns 1434331 1c00244a d8c1a783 lw x15, -628(x3) x15=00000000 x3:1c0093dc PA:1c009168 +77015051ns 1434333 1c00244e f40785e3 beq x15, x0, -182 x15:00000000 +77015111ns 1434336 1c002398 00000513 addi x10, x0, 0 x10=00000000 +77015132ns 1434337 1c00239a 00a12623 sw x10, 12(x2) x10:00000000 x2:1c009b70 PA:1c009b7c +77015152ns 1434338 1c00239c c8bff0ef jal x1, -886 x1=1c0023a0 +77015212ns 1434341 1c002026 d841a783 lw x15, -636(x3) x15=00000001 x3:1c0093dc PA:1c009160 +77015253ns 1434343 1c00202a 00078f63 beq x15, x0, 30 x15:00000001 +77015273ns 1434344 1c00202c d5418793 addi x15, x3, -684 x15=1c009130 x3:1c0093dc +77015293ns 1434345 1c002030 0007a703 lw x14, 0(x15) x14=1c009db8 x15:1c009130 PA:1c009130 +77015333ns 1434347 1c002032 04472703 lw x14, 68(x14) x14=00000001 x14:1c009db8 PA:1c009dfc +77015374ns 1434349 1c002034 00070a63 beq x14, x0, 20 x14:00000001 +77015394ns 1434350 1c002036 0007a683 lw x13, 0(x15) x13=1c009db8 x15:1c009130 PA:1c009130 +77015414ns 1434351 1c002038 0007a783 lw x15, 0(x15) x15=1c009db8 x15:1c009130 PA:1c009130 +77015434ns 1434352 1c00203a 0446a703 lw x14, 68(x13) x14=00000001 x13:1c009db8 PA:1c009dfc +77015475ns 1434354 1c00203c fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +77015495ns 1434355 1c00203e 04e6a223 sw x14, 68(x13) x14:00000000 x13:1c009db8 PA:1c009dfc +77015515ns 1434356 1c002040 0447a783 lw x15, 68(x15) x15=00000000 x15:1c009db8 PA:1c009dfc +77015556ns 1434358 1c002042 00079363 bne x15, x0, 6 x15:00000000 +77015576ns 1434359 1c002044 30046073 csrrsi x0, 0x00000008, 0x300 +77015657ns 1434363 1c002048 00008067 jalr x0, x1, 0 x1:1c0023a0 +77015697ns 1434365 1c0023a0 03c12083 lw x1, 60(x2) x1=1c0030c8 x2:1c009b70 PA:1c009bac +77015717ns 1434366 1c0023a2 03812403 lw x8, 56(x2) x8=1c00b890 x2:1c009b70 PA:1c009ba8 +77015737ns 1434367 1c0023a4 00c12503 lw x10, 12(x2) x10=00000000 x2:1c009b70 PA:1c009b7c +77015758ns 1434368 1c0023a6 03412483 lw x9, 52(x2) x9=1c00b8c0 x2:1c009b70 PA:1c009ba4 +77015778ns 1434369 1c0023a8 03012903 lw x18, 48(x2) x18=00000088 x2:1c009b70 PA:1c009ba0 +77015798ns 1434370 1c0023aa 02c12983 lw x19, 44(x2) x19=1c009000 x2:1c009b70 PA:1c009b9c +77015818ns 1434371 1c0023ac 02812a03 lw x20, 40(x2) x20=1c00918c x2:1c009b70 PA:1c009b98 +77015838ns 1434372 1c0023ae 02412a83 lw x21, 36(x2) x21=a5a5a5a5 x2:1c009b70 PA:1c009b94 +77015858ns 1434373 1c0023b0 02012b03 lw x22, 32(x2) x22=a5a5a5a5 x2:1c009b70 PA:1c009b90 +77015879ns 1434374 1c0023b2 01c12b83 lw x23, 28(x2) x23=a5a5a5a5 x2:1c009b70 PA:1c009b8c +77015899ns 1434375 1c0023b4 04010113 addi x2, x2, 64 x2=1c009bb0 x2:1c009b70 +77015919ns 1434376 1c0023b6 00008067 jalr x0, x1, 0 x1:1c0030c8 +77015959ns 1434378 1c0030c8 00812403 lw x8, 8(x2) x8=00000000 x2:1c009bb0 PA:1c009bb8 +77015980ns 1434379 1c0030ca 00c12083 lw x1, 12(x2) x1=1c003752 x2:1c009bb0 PA:1c009bbc +77016000ns 1434380 1c0030cc 00412483 lw x9, 4(x2) x9=1c009190 x2:1c009bb0 PA:1c009bb4 +77016020ns 1434381 1c0030ce 01200533 add x10, x0, x18 x10=00000088 x18:00000088 +77016040ns 1434382 1c0030d0 00012903 lw x18, 0(x2) x18=1c009188 x2:1c009bb0 PA:1c009bb0 +77016060ns 1434383 1c0030d2 01010113 addi x2, x2, 16 x2=1c009bc0 x2:1c009bb0 +77016081ns 1434384 1c0030d4 ae5ff06f jal x0, -1308 +77016121ns 1434386 1c002bb8 30051073 csrrw x0, x10, 0x300 x10:00000088 +77016202ns 1434390 1c002bbc 00008067 jalr x0, x1, 0 x1:1c003752 +77016242ns 1434392 1c003752 e03ff06f jal x0, -510 +77016283ns 1434394 1c003554 1cc12083 lw x1, 460(x2) x1=1c00375c x2:1c009bc0 PA:1c009d8c +77016303ns 1434395 1c003558 00800533 add x10, x0, x8 x10=00000000 x8:00000000 +77016323ns 1434396 1c00355a 1c812403 lw x8, 456(x2) x8=a5a5a5a5 x2:1c009bc0 PA:1c009d88 +77016343ns 1434397 1c00355e 1c412483 lw x9, 452(x2) x9=a5a5a5a5 x2:1c009bc0 PA:1c009d84 +77016363ns 1434398 1c003562 1c012903 lw x18, 448(x2) x18=a5a5a5a5 x2:1c009bc0 PA:1c009d80 +77016383ns 1434399 1c003566 1bc12983 lw x19, 444(x2) x19=a5a5a5a5 x2:1c009bc0 PA:1c009d7c +77016404ns 1434400 1c00356a 1b812a03 lw x20, 440(x2) x20=a5a5a5a5 x2:1c009bc0 PA:1c009d78 +77016424ns 1434401 1c00356e 1d010113 addi x2, x2, 464 x2=1c009d90 x2:1c009bc0 +77016444ns 1434402 1c003570 00008067 jalr x0, x1, 0 x1:1c00375c +77016484ns 1434404 1c00375c 0b8000ef jal x1, 184 x1=1c00375e +77016525ns 1434406 1c003814 ff010113 addi x2, x2, -16 x2=1c009d80 x2:1c009d90 +77016545ns 1434407 1c003816 1c0047b7 lui x15, 0x1c004000 x15=1c004000 +77016565ns 1434408 1c00381a 00812423 sw x8, 8(x2) x8:a5a5a5a5 x2:1c009d80 PA:1c009d88 +77016585ns 1434409 1c00381c 00112623 sw x1, 12(x2) x1:1c00375e x2:1c009d80 PA:1c009d8c +77016606ns 1434410 1c00381e 2f278793 addi x15, x15, 754 x15=1c0042f2 x15:1c004000 +77016626ns 1434411 1c003822 00a00433 add x8, x0, x10 x8=00000000 x10:00000000 +77016646ns 1434412 1c003824 00078463 beq x15, x0, 8 x15:1c0042f2 +77016666ns 1434413 1c003826 00000593 addi x11, x0, 0 x11=00000000 +77016686ns 1434414 1c003828 2cb000ef jal x1, 2762 x1=1c00382c +77016727ns 1434416 1c0042f2 fd010113 addi x2, x2, -48 x2=1c009d50 x2:1c009d80 +77016747ns 1434417 1c0042f4 01512a23 sw x21, 20(x2) x21:a5a5a5a5 x2:1c009d50 PA:1c009d64 +77016767ns 1434418 1c0042f6 01612823 sw x22, 16(x2) x22:a5a5a5a5 x2:1c009d50 PA:1c009d60 +77016787ns 1434419 1c0042f8 01712623 sw x23, 12(x2) x23:a5a5a5a5 x2:1c009d50 PA:1c009d5c +77016807ns 1434420 1c0042fa 01912223 sw x25, 4(x2) x25:a5a5a5a5 x2:1c009d50 PA:1c009d54 +77016828ns 1434421 1c0042fc 02112623 sw x1, 44(x2) x1:1c00382c x2:1c009d50 PA:1c009d7c +77016848ns 1434422 1c0042fe 02812423 sw x8, 40(x2) x8:00000000 x2:1c009d50 PA:1c009d78 +77016868ns 1434423 1c004300 02912223 sw x9, 36(x2) x9:a5a5a5a5 x2:1c009d50 PA:1c009d74 +77016888ns 1434424 1c004302 03212023 sw x18, 32(x2) x18:a5a5a5a5 x2:1c009d50 PA:1c009d70 +77016908ns 1434425 1c004304 01312e23 sw x19, 28(x2) x19:a5a5a5a5 x2:1c009d50 PA:1c009d6c +77016929ns 1434426 1c004306 01412c23 sw x20, 24(x2) x20:a5a5a5a5 x2:1c009d50 PA:1c009d68 +77016949ns 1434427 1c004308 01812423 sw x24, 8(x2) x24:a5a5a5a5 x2:1c009d50 PA:1c009d58 +77016969ns 1434428 1c00430a 01a12023 sw x26, 0(x2) x26:a5a5a5a5 x2:1c009d50 PA:1c009d50 +77016989ns 1434429 1c00430c 00a00b33 add x22, x0, x10 x22=00000000 x10:00000000 +77017009ns 1434430 1c00430e 00b00ab3 add x21, x0, x11 x21=00000000 x11:00000000 +77017030ns 1434431 1c004310 00100c93 addi x25, x0, 1 x25=00000001 +77017050ns 1434432 1c004312 dc41a483 lw x9, -572(x3) x9=1c0090a4 x3:1c0093dc PA:1c0091a0 +77017070ns 1434433 1c004316 dc418c13 addi x24, x3, -572 x24=1c0091a0 x3:1c0093dc +77017090ns 1434434 1c00431a 00048c63 beq x9, x0, 24 x9:1c0090a4 +77017110ns 1434435 1c00431c 0044a403 lw x8, 4(x9) x8=00000001 x9:1c0090a4 PA:1c0090a8 +77017131ns 1434436 1c00431e 0884a983 lw x19, 136(x9) x19=00000000 x9:1c0090a4 PA:1c00912c +77017151ns 1434437 1c004322 fff40913 addi x18, x8, -1 x18=00000000 x8:00000001 +77017171ns 1434438 1c004326 00241413 slli x8, x8, 0x2 x8=00000004 x8:00000001 +77017191ns 1434439 1c004328 00898a33 add x20, x19, x8 x20=00000004 x19:00000000 x8:00000004 +77017211ns 1434440 1c00432c 00940433 add x8, x8, x9 x8=1c0090a8 x8:00000004 x9:1c0090a4 +77017232ns 1434441 1c00432e 02095063 bge x18, x0, 32 x18:00000000 +77017312ns 1434445 1c00434e 000a8c63 beq x21, x0, 24 x21:00000000 +77017373ns 1434448 1c004366 0044a703 lw x14, 4(x9) x14=00000001 x9:1c0090a4 PA:1c0090a8 +77017393ns 1434449 1c004368 00442783 lw x15, 4(x8) x15=1c003840 x8:1c0090a8 PA:1c0090ac +77017413ns 1434450 1c00436a fff70713 addi x14, x14, -1 x14=00000000 x14:00000001 +77017433ns 1434451 1c00436c 03271863 bne x14, x18, 48 x14:00000000 x18:00000000 +77017454ns 1434452 1c004370 0124a223 sw x18, 4(x9) x18:00000000 x9:1c0090a4 PA:1c0090a8 +77017474ns 1434453 1c004374 fe0781e3 beq x15, x0, -30 x15:1c003840 +77017494ns 1434454 1c004376 0044ad03 lw x26, 4(x9) x26=00000000 x9:1c0090a4 PA:1c0090a8 +77017514ns 1434455 1c00437a 00098863 beq x19, x0, 16 x19:00000000 +77017575ns 1434458 1c00438a 000780e7 jalr x1, x15, 0 x1=1c00438c x15:1c003840 +77017615ns 1434460 1c003840 ff010113 addi x2, x2, -16 x2=1c009d40 x2:1c009d50 +77017635ns 1434461 1c003842 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +77017656ns 1434462 1c003846 00812423 sw x8, 8(x2) x8:1c0090a8 x2:1c009d40 PA:1c009d48 +77017676ns 1434463 1c003848 1c009437 lui x8, 0x1c009000 x8=1c009000 +77017696ns 1434464 1c00384c bdc78713 addi x14, x15, -1060 x14=1c008bdc x15:1c009000 +77017716ns 1434465 1c003850 bdc40413 addi x8, x8, -1060 x8=1c008bdc x8:1c009000 +77017736ns 1434466 1c003854 40e40433 sub x8, x8, x14 x8=00000000 x8:1c008bdc x14:1c008bdc +77017757ns 1434467 1c003856 00912223 sw x9, 4(x2) x9:1c0090a4 x2:1c009d40 PA:1c009d44 +77017777ns 1434468 1c003858 00112623 sw x1, 12(x2) x1:1c00438c x2:1c009d40 PA:1c009d4c +77017797ns 1434469 1c00385a 40245413 srai x8, x8, 0x402 x8=00000000 x8:00000000 +77017817ns 1434470 1c00385c bdc78493 addi x9, x15, -1060 x9=1c008bdc x15:1c009000 +77017837ns 1434471 1c003860 00041663 bne x8, x0, 12 x8:00000000 +77017857ns 1434472 1c003862 00c12083 lw x1, 12(x2) x1=1c00438c x2:1c009d40 PA:1c009d4c +77017878ns 1434473 1c003864 00812403 lw x8, 8(x2) x8=1c0090a8 x2:1c009d40 PA:1c009d48 +77017898ns 1434474 1c003866 00412483 lw x9, 4(x2) x9=1c0090a4 x2:1c009d40 PA:1c009d44 +77017918ns 1434475 1c003868 01010113 addi x2, x2, 16 x2=1c009d50 x2:1c009d40 +77017938ns 1434476 1c00386a 00008067 jalr x0, x1, 0 x1:1c00438c +77017979ns 1434478 1c00438c 0044a703 lw x14, 4(x9) x14=00000000 x9:1c0090a4 PA:1c0090a8 +77017999ns 1434479 1c00438e 000c2783 lw x15, 0(x24) x15=1c0090a4 x24:1c0091a0 PA:1c0091a0 +77018019ns 1434480 1c004392 f9a710e3 bne x14, x26, -128 x14:00000000 x26:00000000 +77018039ns 1434481 1c004396 fcf480e3 beq x9, x15, -64 x9:1c0090a4 x15:1c0090a4 +77018100ns 1434484 1c004356 fff90913 addi x18, x18, -1 x18=ffffffff x18:00000000 +77018120ns 1434485 1c004358 ffca0a13 addi x20, x20, -4 x20=00000000 x20:00000004 +77018140ns 1434486 1c00435a ffc40413 addi x8, x8, -4 x8=1c0090a4 x8:1c0090a8 +77018160ns 1434487 1c00435c fd3ff06f jal x0, -46 +77018221ns 1434490 1c00432e 02095063 bge x18, x0, 32 x18:ffffffff +77018241ns 1434491 1c004332 02c12083 lw x1, 44(x2) x1=1c00382c x2:1c009d50 PA:1c009d7c +77018261ns 1434492 1c004334 02812403 lw x8, 40(x2) x8=00000000 x2:1c009d50 PA:1c009d78 +77018282ns 1434493 1c004336 02412483 lw x9, 36(x2) x9=a5a5a5a5 x2:1c009d50 PA:1c009d74 +77018302ns 1434494 1c004338 02012903 lw x18, 32(x2) x18=a5a5a5a5 x2:1c009d50 PA:1c009d70 +77018322ns 1434495 1c00433a 01c12983 lw x19, 28(x2) x19=a5a5a5a5 x2:1c009d50 PA:1c009d6c +77018342ns 1434496 1c00433c 01812a03 lw x20, 24(x2) x20=a5a5a5a5 x2:1c009d50 PA:1c009d68 +77018362ns 1434497 1c00433e 01412a83 lw x21, 20(x2) x21=a5a5a5a5 x2:1c009d50 PA:1c009d64 +77018382ns 1434498 1c004340 01012b03 lw x22, 16(x2) x22=a5a5a5a5 x2:1c009d50 PA:1c009d60 +77018403ns 1434499 1c004342 00c12b83 lw x23, 12(x2) x23=a5a5a5a5 x2:1c009d50 PA:1c009d5c +77018423ns 1434500 1c004344 00812c03 lw x24, 8(x2) x24=a5a5a5a5 x2:1c009d50 PA:1c009d58 +77018443ns 1434501 1c004346 00412c83 lw x25, 4(x2) x25=a5a5a5a5 x2:1c009d50 PA:1c009d54 +77018463ns 1434502 1c004348 00012d03 lw x26, 0(x2) x26=a5a5a5a5 x2:1c009d50 PA:1c009d50 +77018483ns 1434503 1c00434a 03010113 addi x2, x2, 48 x2=1c009d80 x2:1c009d50 +77018504ns 1434504 1c00434c 00008067 jalr x0, x1, 0 x1:1c00382c +77018544ns 1434506 1c00382c 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +77018564ns 1434507 1c003830 bd87a503 lw x10, -1064(x15) x10=1c008bdc x15:1c009000 PA:1c008bd8 +77018605ns 1434509 1c003834 02852783 lw x15, 40(x10) x15=1c0045d2 x10:1c008bdc PA:1c008c04 +77018645ns 1434511 1c003836 00078263 beq x15, x0, 4 x15:1c0045d2 +77018665ns 1434512 1c003838 000780e7 jalr x1, x15, 0 x1=1c00383a x15:1c0045d2 +77018726ns 1434515 1c0045d2 1c0045b7 lui x11, 0x1c004000 x11=1c004000 +77018746ns 1434516 1c0045d6 50258593 addi x11, x11, 1282 x11=1c004502 x11:1c004000 +77018766ns 1434517 1c0045da 15c0006f jal x0, 348 +77018807ns 1434519 1c004736 fd010113 addi x2, x2, -48 x2=1c009d50 x2:1c009d80 +77018827ns 1434520 1c004738 02812423 sw x8, 40(x2) x8:00000000 x2:1c009d50 PA:1c009d78 +77018847ns 1434521 1c00473a 03212023 sw x18, 32(x2) x18:a5a5a5a5 x2:1c009d50 PA:1c009d70 +77018867ns 1434522 1c00473c 01312e23 sw x19, 28(x2) x19:a5a5a5a5 x2:1c009d50 PA:1c009d6c +77018887ns 1434523 1c00473e 01412c23 sw x20, 24(x2) x20:a5a5a5a5 x2:1c009d50 PA:1c009d68 +77018907ns 1434524 1c004740 01612823 sw x22, 16(x2) x22:a5a5a5a5 x2:1c009d50 PA:1c009d60 +77018928ns 1434525 1c004742 01712623 sw x23, 12(x2) x23:a5a5a5a5 x2:1c009d50 PA:1c009d5c +77018948ns 1434526 1c004744 02112623 sw x1, 44(x2) x1:1c00383a x2:1c009d50 PA:1c009d7c +77018968ns 1434527 1c004746 02912223 sw x9, 36(x2) x9:a5a5a5a5 x2:1c009d50 PA:1c009d74 +77018988ns 1434528 1c004748 01512a23 sw x21, 20(x2) x21:a5a5a5a5 x2:1c009d50 PA:1c009d64 +77019008ns 1434529 1c00474a 00a00933 add x18, x0, x10 x18=1c008bdc x10:1c008bdc +77019029ns 1434530 1c00474c 00b00a33 add x20, x0, x11 x20=1c004502 x11:1c004502 +77019049ns 1434531 1c00474e 04850413 addi x8, x10, 72 x8=1c008c24 x10:1c008bdc +77019069ns 1434532 1c004752 00000993 addi x19, x0, 0 x19=00000000 +77019089ns 1434533 1c004754 00100b13 addi x22, x0, 1 x22=00000001 +77019109ns 1434534 1c004756 fff00b93 addi x23, x0, -1 x23=ffffffff +77019130ns 1434535 1c004758 00842483 lw x9, 8(x8) x9=00000000 x8:1c008c24 PA:1c008c2c +77019150ns 1434536 1c00475a 00442a83 lw x21, 4(x8) x21=00000000 x8:1c008c24 PA:1c008c28 +77019190ns 1434538 1c00475e fffa8a93 addi x21, x21, -1 x21=ffffffff x21:00000000 +77019210ns 1434539 1c004760 020ad063 bge x21, x0, 32 x21:ffffffff +77019231ns 1434540 1c004764 00042403 lw x8, 0(x8) x8=1c0091b8 x8:1c008c24 PA:1c008c24 +77019271ns 1434542 1c004766 fe0419e3 bne x8, x0, -14 x8:1c0091b8 +77019331ns 1434545 1c004758 00842483 lw x9, 8(x8) x9=1c0091c4 x8:1c0091b8 PA:1c0091c0 +77019352ns 1434546 1c00475a 00442a83 lw x21, 4(x8) x21=00000004 x8:1c0091b8 PA:1c0091bc +77019392ns 1434548 1c00475e fffa8a93 addi x21, x21, -1 x21=00000003 x21:00000004 +77019412ns 1434549 1c004760 020ad063 bge x21, x0, 32 x21:00000003 +77019473ns 1434552 1c004780 00c4d783 lhu x15, 12(x9) x15=00000004 x9:1c0091c4 PA:1c0091d0 +77019513ns 1434554 1c004784 00fb7b63 bgeu x22, x15, 22 x22:00000001 x15:00000004 +77019533ns 1434555 1c004788 00e49783 lh x15, 14(x9) x15=00000000 x9:1c0091c4 PA:1c0091d2 +77019574ns 1434557 1c00478c 01778763 beq x15, x23, 14 x15:00000000 x23:ffffffff +77019594ns 1434558 1c004790 009005b3 add x11, x0, x9 x11=1c0091c4 x9:1c0091c4 +77019614ns 1434559 1c004792 01200533 add x10, x0, x18 x10=1c008bdc x18:1c008bdc +77019634ns 1434560 1c004794 000a00e7 jalr x1, x20, 0 x1=1c004796 x20:1c004502 +77019675ns 1434562 1c004502 0105a783 lw x15, 16(x11) x15=00000000 x11:1c0091c4 PA:1c0091d4 +77019715ns 1434564 1c004504 06078063 beq x15, x0, 96 x15:00000000 +77019776ns 1434567 1c004564 00000513 addi x10, x0, 0 x10=00000000 +77019796ns 1434568 1c004566 00008067 jalr x0, x1, 0 x1:1c004796 +77019856ns 1434571 1c004796 00a9e9b3 or x19, x19, x10 x19=00000000 x19:00000000 x10:00000000 +77019877ns 1434572 1c00479a 06848493 addi x9, x9, 104 x9=1c00922c x9:1c0091c4 +77019897ns 1434573 1c00479e fc1ff06f jal x0, -64 +77019937ns 1434575 1c00475e fffa8a93 addi x21, x21, -1 x21=00000002 x21:00000003 +77019957ns 1434576 1c004760 020ad063 bge x21, x0, 32 x21:00000002 +77020018ns 1434579 1c004780 00c4d783 lhu x15, 12(x9) x15=00000089 x9:1c00922c PA:1c009238 +77020058ns 1434581 1c004784 00fb7b63 bgeu x22, x15, 22 x22:00000001 x15:00000089 +77020079ns 1434582 1c004788 00e49783 lh x15, 14(x9) x15=00000001 x9:1c00922c PA:1c00923a +77020119ns 1434584 1c00478c 01778763 beq x15, x23, 14 x15:00000001 x23:ffffffff +77020139ns 1434585 1c004790 009005b3 add x11, x0, x9 x11=1c00922c x9:1c00922c +77020159ns 1434586 1c004792 01200533 add x10, x0, x18 x10=1c008bdc x18:1c008bdc +77020180ns 1434587 1c004794 000a00e7 jalr x1, x20, 0 x1=1c004796 x20:1c004502 +77020220ns 1434589 1c004502 0105a783 lw x15, 16(x11) x15=1c009368 x11:1c00922c PA:1c00923c +77020260ns 1434591 1c004504 06078063 beq x15, x0, 96 x15:1c009368 +77020281ns 1434592 1c004506 fe010113 addi x2, x2, -32 x2=1c009d30 x2:1c009d50 +77020301ns 1434593 1c004508 00812c23 sw x8, 24(x2) x8:1c0091b8 x2:1c009d30 PA:1c009d48 +77020321ns 1434594 1c00450a 00112e23 sw x1, 28(x2) x1:1c004796 x2:1c009d30 PA:1c009d4c +77020341ns 1434595 1c00450c 00a00433 add x8, x0, x10 x8=1c008bdc x10:1c008bdc +77020361ns 1434596 1c00450e 00050663 beq x10, x0, 12 x10:1c008bdc +77020381ns 1434597 1c004510 01852783 lw x15, 24(x10) x15=00000001 x10:1c008bdc PA:1c008bf4 +77020422ns 1434599 1c004512 00079463 bne x15, x0, 8 x15:00000001 +77020503ns 1434603 1c00451a 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +77020523ns 1434604 1c00451e a1478793 addi x15, x15, -1516 x15=1c008a14 x15:1c009000 +77020543ns 1434605 1c004522 00f59c63 bne x11, x15, 24 x11:1c00922c x15:1c008a14 +77020624ns 1434609 1c00453a 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +77020644ns 1434610 1c00453e a3478793 addi x15, x15, -1484 x15=1c008a34 x15:1c009000 +77020664ns 1434611 1c004542 00f59463 bne x11, x15, 8 x11:1c00922c x15:1c008a34 +77020745ns 1434615 1c00454a 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +77020765ns 1434616 1c00454e 9f478793 addi x15, x15, -1548 x15=1c0089f4 x15:1c009000 +77020785ns 1434617 1c004552 fcf59be3 bne x11, x15, -42 x11:1c00922c x15:1c0089f4 +77020846ns 1434620 1c004528 00c59783 lh x15, 12(x11) x15=00000089 x11:1c00922c PA:1c009238 +77020886ns 1434622 1c00452c 02078763 beq x15, x0, 46 x15:00000089 +77020906ns 1434623 1c00452e 00800533 add x10, x0, x8 x10=1c008bdc x8:1c008bdc +77020927ns 1434624 1c004530 01812403 lw x8, 24(x2) x8=1c0091b8 x2:1c009d30 PA:1c009d48 +77020947ns 1434625 1c004532 01c12083 lw x1, 28(x2) x1=1c004796 x2:1c009d30 PA:1c009d4c +77020967ns 1434626 1c004534 02010113 addi x2, x2, 32 x2=1c009d50 x2:1c009d30 +77020987ns 1434627 1c004536 e85ff06f jal x0, -380 +77021048ns 1434630 1c0043ba 00c5d783 lhu x15, 12(x11) x15=00000089 x11:1c00922c PA:1c009238 +77021068ns 1434631 1c0043be fe010113 addi x2, x2, -32 x2=1c009d30 x2:1c009d50 +77021088ns 1434632 1c0043c0 00812c23 sw x8, 24(x2) x8:1c0091b8 x2:1c009d30 PA:1c009d48 +77021108ns 1434633 1c0043c2 00912a23 sw x9, 20(x2) x9:1c00922c x2:1c009d30 PA:1c009d44 +77021129ns 1434634 1c0043c4 00112e23 sw x1, 28(x2) x1:1c004796 x2:1c009d30 PA:1c009d4c +77021149ns 1434635 1c0043c6 01212823 sw x18, 16(x2) x18:1c008bdc x2:1c009d30 PA:1c009d40 +77021169ns 1434636 1c0043c8 01312623 sw x19, 12(x2) x19:00000000 x2:1c009d30 PA:1c009d3c +77021189ns 1434637 1c0043ca 0087f713 andi x14, x15, 8 x14=00000008 x15:00000089 +77021209ns 1434638 1c0043ce 00a004b3 add x9, x0, x10 x9=1c008bdc x10:1c008bdc +77021230ns 1434639 1c0043d0 00b00433 add x8, x0, x11 x8=1c00922c x11:1c00922c +77021250ns 1434640 1c0043d2 0e071363 bne x14, x0, 230 x14:00000008 +77021310ns 1434643 1c0044b8 0105a983 lw x19, 16(x11) x19=1c009368 x11:1c00922c PA:1c00923c +77021351ns 1434645 1c0044bc f20982e3 beq x19, x0, -220 x19:1c009368 +77021371ns 1434646 1c0044c0 0005a903 lw x18, 0(x11) x18=1c009368 x11:1c00922c PA:1c00922c +77021391ns 1434647 1c0044c4 0037f793 andi x15, x15, 3 x15=00000001 x15:00000089 +77021411ns 1434648 1c0044c6 0135a023 sw x19, 0(x11) x19:1c009368 x11:1c00922c PA:1c00922c +77021431ns 1434649 1c0044ca 41390933 sub x18, x18, x19 x18=00000000 x18:1c009368 x19:1c009368 +77021452ns 1434650 1c0044ce 00000713 addi x14, x0, 0 x14=00000000 +77021472ns 1434651 1c0044d0 00079263 bne x15, x0, 4 x15:00000001 +77021532ns 1434654 1c0044d4 00e42423 sw x14, 8(x8) x14:00000000 x8:1c00922c PA:1c009234 +77021553ns 1434655 1c0044d6 f12055e3 bge x0, x18, -246 x18:00000000 +77021613ns 1434658 1c0043e0 00000513 addi x10, x0, 0 x10=00000000 +77021633ns 1434659 1c0043e2 0be0006f jal x0, 190 +77021674ns 1434661 1c0044a0 01c12083 lw x1, 28(x2) x1=1c004796 x2:1c009d30 PA:1c009d4c +77021694ns 1434662 1c0044a2 01812403 lw x8, 24(x2) x8=1c0091b8 x2:1c009d30 PA:1c009d48 +77021714ns 1434663 1c0044a4 01412483 lw x9, 20(x2) x9=1c00922c x2:1c009d30 PA:1c009d44 +77021734ns 1434664 1c0044a6 01012903 lw x18, 16(x2) x18=1c008bdc x2:1c009d30 PA:1c009d40 +77021755ns 1434665 1c0044a8 00c12983 lw x19, 12(x2) x19=00000000 x2:1c009d30 PA:1c009d3c +77021775ns 1434666 1c0044aa 02010113 addi x2, x2, 32 x2=1c009d50 x2:1c009d30 +77021795ns 1434667 1c0044ac 00008067 jalr x0, x1, 0 x1:1c004796 +77021855ns 1434670 1c004796 00a9e9b3 or x19, x19, x10 x19=00000000 x19:00000000 x10:00000000 +77021876ns 1434671 1c00479a 06848493 addi x9, x9, 104 x9=1c009294 x9:1c00922c +77021896ns 1434672 1c00479e fc1ff06f jal x0, -64 +77021936ns 1434674 1c00475e fffa8a93 addi x21, x21, -1 x21=00000001 x21:00000002 +77021956ns 1434675 1c004760 020ad063 bge x21, x0, 32 x21:00000001 +77022017ns 1434678 1c004780 00c4d783 lhu x15, 12(x9) x15=00000012 x9:1c009294 PA:1c0092a0 +77022057ns 1434680 1c004784 00fb7b63 bgeu x22, x15, 22 x22:00000001 x15:00000012 +77022078ns 1434681 1c004788 00e49783 lh x15, 14(x9) x15=00000002 x9:1c009294 PA:1c0092a2 +77022118ns 1434683 1c00478c 01778763 beq x15, x23, 14 x15:00000002 x23:ffffffff +77022138ns 1434684 1c004790 009005b3 add x11, x0, x9 x11=1c009294 x9:1c009294 +77022158ns 1434685 1c004792 01200533 add x10, x0, x18 x10=1c008bdc x18:1c008bdc +77022179ns 1434686 1c004794 000a00e7 jalr x1, x20, 0 x1=1c004796 x20:1c004502 +77022219ns 1434688 1c004502 0105a783 lw x15, 16(x11) x15=00000000 x11:1c009294 PA:1c0092a4 +77022259ns 1434690 1c004504 06078063 beq x15, x0, 96 x15:00000000 +77022320ns 1434693 1c004564 00000513 addi x10, x0, 0 x10=00000000 +77022340ns 1434694 1c004566 00008067 jalr x0, x1, 0 x1:1c004796 +77022401ns 1434697 1c004796 00a9e9b3 or x19, x19, x10 x19=00000000 x19:00000000 x10:00000000 +77022421ns 1434698 1c00479a 06848493 addi x9, x9, 104 x9=1c0092fc x9:1c009294 +77022441ns 1434699 1c00479e fc1ff06f jal x0, -64 +77022481ns 1434701 1c00475e fffa8a93 addi x21, x21, -1 x21=00000000 x21:00000001 +77022502ns 1434702 1c004760 020ad063 bge x21, x0, 32 x21:00000000 +77022562ns 1434705 1c004780 00c4d783 lhu x15, 12(x9) x15=00000004 x9:1c0092fc PA:1c009308 +77022603ns 1434707 1c004784 00fb7b63 bgeu x22, x15, 22 x22:00000001 x15:00000004 +77022623ns 1434708 1c004788 00e49783 lh x15, 14(x9) x15=00000000 x9:1c0092fc PA:1c00930a +77022663ns 1434710 1c00478c 01778763 beq x15, x23, 14 x15:00000000 x23:ffffffff +77022683ns 1434711 1c004790 009005b3 add x11, x0, x9 x11=1c0092fc x9:1c0092fc +77022704ns 1434712 1c004792 01200533 add x10, x0, x18 x10=1c008bdc x18:1c008bdc +77022724ns 1434713 1c004794 000a00e7 jalr x1, x20, 0 x1=1c004796 x20:1c004502 +77022764ns 1434715 1c004502 0105a783 lw x15, 16(x11) x15=00000000 x11:1c0092fc PA:1c00930c +77022805ns 1434717 1c004504 06078063 beq x15, x0, 96 x15:00000000 +77022865ns 1434720 1c004564 00000513 addi x10, x0, 0 x10=00000000 +77022885ns 1434721 1c004566 00008067 jalr x0, x1, 0 x1:1c004796 +77022946ns 1434724 1c004796 00a9e9b3 or x19, x19, x10 x19=00000000 x19:00000000 x10:00000000 +77022966ns 1434725 1c00479a 06848493 addi x9, x9, 104 x9=1c009364 x9:1c0092fc +77022986ns 1434726 1c00479e fc1ff06f jal x0, -64 +77023027ns 1434728 1c00475e fffa8a93 addi x21, x21, -1 x21=ffffffff x21:00000000 +77023047ns 1434729 1c004760 020ad063 bge x21, x0, 32 x21:ffffffff +77023067ns 1434730 1c004764 00042403 lw x8, 0(x8) x8=1c00b908 x8:1c0091b8 PA:1c0091b8 +77023107ns 1434732 1c004766 fe0419e3 bne x8, x0, -14 x8:1c00b908 +77023168ns 1434735 1c004758 00842483 lw x9, 8(x8) x9=1c00b914 x8:1c00b908 PA:1c00b910 +77023188ns 1434736 1c00475a 00442a83 lw x21, 4(x8) x21=00000004 x8:1c00b908 PA:1c00b90c +77023229ns 1434738 1c00475e fffa8a93 addi x21, x21, -1 x21=00000003 x21:00000004 +77023249ns 1434739 1c004760 020ad063 bge x21, x0, 32 x21:00000003 +77023309ns 1434742 1c004780 00c4d783 lhu x15, 12(x9) x15=00000089 x9:1c00b914 PA:1c00b920 +77023350ns 1434744 1c004784 00fb7b63 bgeu x22, x15, 22 x22:00000001 x15:00000089 +77023370ns 1434745 1c004788 00e49783 lh x15, 14(x9) x15=00000001 x9:1c00b914 PA:1c00b922 +77023410ns 1434747 1c00478c 01778763 beq x15, x23, 14 x15:00000001 x23:ffffffff +77023430ns 1434748 1c004790 009005b3 add x11, x0, x9 x11=1c00b914 x9:1c00b914 +77023451ns 1434749 1c004792 01200533 add x10, x0, x18 x10=1c008bdc x18:1c008bdc +77023471ns 1434750 1c004794 000a00e7 jalr x1, x20, 0 x1=1c004796 x20:1c004502 +77023511ns 1434752 1c004502 0105a783 lw x15, 16(x11) x15=1c00bab8 x11:1c00b914 PA:1c00b924 +77023552ns 1434754 1c004504 06078063 beq x15, x0, 96 x15:1c00bab8 +77023572ns 1434755 1c004506 fe010113 addi x2, x2, -32 x2=1c009d30 x2:1c009d50 +77023592ns 1434756 1c004508 00812c23 sw x8, 24(x2) x8:1c00b908 x2:1c009d30 PA:1c009d48 +77023612ns 1434757 1c00450a 00112e23 sw x1, 28(x2) x1:1c004796 x2:1c009d30 PA:1c009d4c +77023632ns 1434758 1c00450c 00a00433 add x8, x0, x10 x8=1c008bdc x10:1c008bdc +77023653ns 1434759 1c00450e 00050663 beq x10, x0, 12 x10:1c008bdc +77023673ns 1434760 1c004510 01852783 lw x15, 24(x10) x15=00000001 x10:1c008bdc PA:1c008bf4 +77023713ns 1434762 1c004512 00079463 bne x15, x0, 8 x15:00000001 +77023794ns 1434766 1c00451a 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +77023814ns 1434767 1c00451e a1478793 addi x15, x15, -1516 x15=1c008a14 x15:1c009000 +77023834ns 1434768 1c004522 00f59c63 bne x11, x15, 24 x11:1c00b914 x15:1c008a14 +77023915ns 1434772 1c00453a 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +77023935ns 1434773 1c00453e a3478793 addi x15, x15, -1484 x15=1c008a34 x15:1c009000 +77023955ns 1434774 1c004542 00f59463 bne x11, x15, 8 x11:1c00b914 x15:1c008a34 +77024036ns 1434778 1c00454a 1c0097b7 lui x15, 0x1c009000 x15=1c009000 +77024056ns 1434779 1c00454e 9f478793 addi x15, x15, -1548 x15=1c0089f4 x15:1c009000 +77024077ns 1434780 1c004552 fcf59be3 bne x11, x15, -42 x11:1c00b914 x15:1c0089f4 +77024137ns 1434783 1c004528 00c59783 lh x15, 12(x11) x15=00000089 x11:1c00b914 PA:1c00b920 +77024178ns 1434785 1c00452c 02078763 beq x15, x0, 46 x15:00000089 +77024198ns 1434786 1c00452e 00800533 add x10, x0, x8 x10=1c008bdc x8:1c008bdc +77024218ns 1434787 1c004530 01812403 lw x8, 24(x2) x8=1c00b908 x2:1c009d30 PA:1c009d48 +77024238ns 1434788 1c004532 01c12083 lw x1, 28(x2) x1=1c004796 x2:1c009d30 PA:1c009d4c +77024258ns 1434789 1c004534 02010113 addi x2, x2, 32 x2=1c009d50 x2:1c009d30 +77024279ns 1434790 1c004536 e85ff06f jal x0, -380 +77024339ns 1434793 1c0043ba 00c5d783 lhu x15, 12(x11) x15=00000089 x11:1c00b914 PA:1c00b920 +77024359ns 1434794 1c0043be fe010113 addi x2, x2, -32 x2=1c009d30 x2:1c009d50 +77024379ns 1434795 1c0043c0 00812c23 sw x8, 24(x2) x8:1c00b908 x2:1c009d30 PA:1c009d48 +77024400ns 1434796 1c0043c2 00912a23 sw x9, 20(x2) x9:1c00b914 x2:1c009d30 PA:1c009d44 +77024420ns 1434797 1c0043c4 00112e23 sw x1, 28(x2) x1:1c004796 x2:1c009d30 PA:1c009d4c +77024440ns 1434798 1c0043c6 01212823 sw x18, 16(x2) x18:1c008bdc x2:1c009d30 PA:1c009d40 +77024460ns 1434799 1c0043c8 01312623 sw x19, 12(x2) x19:00000000 x2:1c009d30 PA:1c009d3c +77024480ns 1434800 1c0043ca 0087f713 andi x14, x15, 8 x14=00000008 x15:00000089 +77024501ns 1434801 1c0043ce 00a004b3 add x9, x0, x10 x9=1c008bdc x10:1c008bdc +77024521ns 1434802 1c0043d0 00b00433 add x8, x0, x11 x8=1c00b914 x11:1c00b914 +77024541ns 1434803 1c0043d2 0e071363 bne x14, x0, 230 x14:00000008 +77024602ns 1434806 1c0044b8 0105a983 lw x19, 16(x11) x19=1c00bab8 x11:1c00b914 PA:1c00b924 +77024642ns 1434808 1c0044bc f20982e3 beq x19, x0, -220 x19:1c00bab8 +77024662ns 1434809 1c0044c0 0005a903 lw x18, 0(x11) x18=1c00bab8 x11:1c00b914 PA:1c00b914 +77024682ns 1434810 1c0044c4 0037f793 andi x15, x15, 3 x15=00000001 x15:00000089 +77024703ns 1434811 1c0044c6 0135a023 sw x19, 0(x11) x19:1c00bab8 x11:1c00b914 PA:1c00b914 +77024723ns 1434812 1c0044ca 41390933 sub x18, x18, x19 x18=00000000 x18:1c00bab8 x19:1c00bab8 +77024743ns 1434813 1c0044ce 00000713 addi x14, x0, 0 x14=00000000 +77024763ns 1434814 1c0044d0 00079263 bne x15, x0, 4 x15:00000001 +77024824ns 1434817 1c0044d4 00e42423 sw x14, 8(x8) x14:00000000 x8:1c00b914 PA:1c00b91c +77024844ns 1434818 1c0044d6 f12055e3 bge x0, x18, -246 x18:00000000 +77024904ns 1434821 1c0043e0 00000513 addi x10, x0, 0 x10=00000000 +77024925ns 1434822 1c0043e2 0be0006f jal x0, 190 +77024965ns 1434824 1c0044a0 01c12083 lw x1, 28(x2) x1=1c004796 x2:1c009d30 PA:1c009d4c +77024985ns 1434825 1c0044a2 01812403 lw x8, 24(x2) x8=1c00b908 x2:1c009d30 PA:1c009d48 +77025005ns 1434826 1c0044a4 01412483 lw x9, 20(x2) x9=1c00b914 x2:1c009d30 PA:1c009d44 +77025026ns 1434827 1c0044a6 01012903 lw x18, 16(x2) x18=1c008bdc x2:1c009d30 PA:1c009d40 +77025046ns 1434828 1c0044a8 00c12983 lw x19, 12(x2) x19=00000000 x2:1c009d30 PA:1c009d3c +77025066ns 1434829 1c0044aa 02010113 addi x2, x2, 32 x2=1c009d50 x2:1c009d30 +77025086ns 1434830 1c0044ac 00008067 jalr x0, x1, 0 x1:1c004796 +77025147ns 1434833 1c004796 00a9e9b3 or x19, x19, x10 x19=00000000 x19:00000000 x10:00000000 +77025167ns 1434834 1c00479a 06848493 addi x9, x9, 104 x9=1c00b97c x9:1c00b914 +77025187ns 1434835 1c00479e fc1ff06f jal x0, -64 +77025228ns 1434837 1c00475e fffa8a93 addi x21, x21, -1 x21=00000002 x21:00000003 +77025248ns 1434838 1c004760 020ad063 bge x21, x0, 32 x21:00000002 +77025308ns 1434841 1c004780 00c4d783 lhu x15, 12(x9) x15=00000012 x9:1c00b97c PA:1c00b988 +77025349ns 1434843 1c004784 00fb7b63 bgeu x22, x15, 22 x22:00000001 x15:00000012 +77025369ns 1434844 1c004788 00e49783 lh x15, 14(x9) x15=00000002 x9:1c00b97c PA:1c00b98a +77025409ns 1434846 1c00478c 01778763 beq x15, x23, 14 x15:00000002 x23:ffffffff +77025429ns 1434847 1c004790 009005b3 add x11, x0, x9 x11=1c00b97c x9:1c00b97c +77025450ns 1434848 1c004792 01200533 add x10, x0, x18 x10=1c008bdc x18:1c008bdc +77025470ns 1434849 1c004794 000a00e7 jalr x1, x20, 0 x1=1c004796 x20:1c004502 +77025510ns 1434851 1c004502 0105a783 lw x15, 16(x11) x15=00000000 x11:1c00b97c PA:1c00b98c +77025551ns 1434853 1c004504 06078063 beq x15, x0, 96 x15:00000000 +77025611ns 1434856 1c004564 00000513 addi x10, x0, 0 x10=00000000 +77025631ns 1434857 1c004566 00008067 jalr x0, x1, 0 x1:1c004796 +77025692ns 1434860 1c004796 00a9e9b3 or x19, x19, x10 x19=00000000 x19:00000000 x10:00000000 +77025712ns 1434861 1c00479a 06848493 addi x9, x9, 104 x9=1c00b9e4 x9:1c00b97c +77025732ns 1434862 1c00479e fc1ff06f jal x0, -64 +77025773ns 1434864 1c00475e fffa8a93 addi x21, x21, -1 x21=00000001 x21:00000002 +77025793ns 1434865 1c004760 020ad063 bge x21, x0, 32 x21:00000001 +77025854ns 1434868 1c004780 00c4d783 lhu x15, 12(x9) x15=00000000 x9:1c00b9e4 PA:1c00b9f0 +77025894ns 1434870 1c004784 00fb7b63 bgeu x22, x15, 22 x22:00000001 x15:00000000 +77025975ns 1434874 1c00479a 06848493 addi x9, x9, 104 x9=1c00ba4c x9:1c00b9e4 +77025995ns 1434875 1c00479e fc1ff06f jal x0, -64 +77026035ns 1434877 1c00475e fffa8a93 addi x21, x21, -1 x21=00000000 x21:00000001 +77026055ns 1434878 1c004760 020ad063 bge x21, x0, 32 x21:00000000 +77026116ns 1434881 1c004780 00c4d783 lhu x15, 12(x9) x15=00000000 x9:1c00ba4c PA:1c00ba58 +77026156ns 1434883 1c004784 00fb7b63 bgeu x22, x15, 22 x22:00000001 x15:00000000 +77026237ns 1434887 1c00479a 06848493 addi x9, x9, 104 x9=1c00bab4 x9:1c00ba4c +77026257ns 1434888 1c00479e fc1ff06f jal x0, -64 +77026298ns 1434890 1c00475e fffa8a93 addi x21, x21, -1 x21=ffffffff x21:00000000 +77026318ns 1434891 1c004760 020ad063 bge x21, x0, 32 x21:ffffffff +77026338ns 1434892 1c004764 00042403 lw x8, 0(x8) x8=00000000 x8:1c00b908 PA:1c00b908 +77026379ns 1434894 1c004766 fe0419e3 bne x8, x0, -14 x8:00000000 +77026399ns 1434895 1c004768 02c12083 lw x1, 44(x2) x1=1c00383a x2:1c009d50 PA:1c009d7c +77026419ns 1434896 1c00476a 02812403 lw x8, 40(x2) x8=00000000 x2:1c009d50 PA:1c009d78 +77026439ns 1434897 1c00476c 02412483 lw x9, 36(x2) x9=a5a5a5a5 x2:1c009d50 PA:1c009d74 +77026459ns 1434898 1c00476e 02012903 lw x18, 32(x2) x18=a5a5a5a5 x2:1c009d50 PA:1c009d70 +77026479ns 1434899 1c004770 01812a03 lw x20, 24(x2) x20=a5a5a5a5 x2:1c009d50 PA:1c009d68 +77026500ns 1434900 1c004772 01412a83 lw x21, 20(x2) x21=a5a5a5a5 x2:1c009d50 PA:1c009d64 +77026520ns 1434901 1c004774 01012b03 lw x22, 16(x2) x22=a5a5a5a5 x2:1c009d50 PA:1c009d60 +77026540ns 1434902 1c004776 00c12b83 lw x23, 12(x2) x23=a5a5a5a5 x2:1c009d50 PA:1c009d5c +77026560ns 1434903 1c004778 01300533 add x10, x0, x19 x10=00000000 x19:00000000 +77026580ns 1434904 1c00477a 01c12983 lw x19, 28(x2) x19=a5a5a5a5 x2:1c009d50 PA:1c009d6c +77026601ns 1434905 1c00477c 03010113 addi x2, x2, 48 x2=1c009d80 x2:1c009d50 +77026621ns 1434906 1c00477e 00008067 jalr x0, x1, 0 x1:1c00383a +77026661ns 1434908 1c00383a 00800533 add x10, x0, x8 x10=00000000 x8:00000000 +77026681ns 1434909 1c00383c 97aff0ef jal x1, -3718 x1=1c003840 +77026742ns 1434912 1c0029b6 800007b7 lui x15, 0x80000000 x15=80000000 +77026762ns 1434913 1c0029ba 00f56533 or x10, x10, x15 x10=80000000 x10:00000000 x15:80000000 +77026782ns 1434914 1c0029bc 1a1047b7 lui x15, 0x1a104000 x15=1a104000 +77026803ns 1434915 1c0029c0 0a078793 addi x15, x15, 160 x15=1a1040a0 x15:1a104000 +77026823ns 1434916 1c0029c4 00a7a023 sw x10, 0(x15) x10:80000000 x15:1a1040a0 PA:1a1040a0 +77026843ns 1434917 1c0029c6 10500073 wfi diff --git a/tests/spim_flash_async/sim/transcript b/tests/spim_flash_async/sim/transcript new file mode 100644 index 00000000..4b7dae8a --- /dev/null +++ b/tests/spim_flash_async/sim/transcript @@ -0,0 +1,225 @@ +# source /scratch/norlando/pulp-open/sim/tcl_files/config/run_and_exit.tcl +# source /scratch/norlando/pulp-open/sim/tcl_files/run.tcl +# vsim -c -quiet vopt_tb -L models_lib -L vip_lib -t ps "+nowarnTRAN" "+nowarnTSCALE" "+nowarnTFMPC" "+TB_PATH=/scratch/norlando/pulp-open/sim/../../fe/tb/" "+UVM_NO_RELNOTES" "+ENTRY_POINT=0x1c000880" -dpicpppath g++ -permit_unmatched_virtual_intf "+VSIM_PATH=/scratch/norlando/pulp-open/sim" -gUSE_SDVT_SPI=0 -gUSE_SDVT_CPI=0 -gBAUDRATE=115200 -gENABLE_DEV_DPI=0 -gCONFIG_FILE=NONE -gLOAD_L2=JTAG -gUSE_SDVT_I2S=0 +# Start time: 13:26:52 on Jan 04,2022 +# ** Error (suppressible): (vsim-7076) The gcc/g++ path 'g++' via -dpicpppath switch is not qualified and is ignored. +# // Questa Sim-64 +# // Version 10.7b_1 linux_x86_64 Jul 26 2018 +# // +# // Copyright 1991-2018 Mentor Graphics Corporation +# // All Rights Reserved. +# // +# // QuestaSim and its associated documentation contain trade +# // secrets and commercial or financial information that are the property of +# // Mentor Graphics Corporation and are privileged, confidential, +# // and exempt from disclosure under the Freedom of Information Act, +# // 5 U.S.C. Section 552. Furthermore, this information +# // is prohibited from disclosure under the Trade Secrets Act, +# // 18 U.S.C. Section 1905. +# // +# ** Error: (vsim-191) Questa has encountered an unexpected internal error: ../../src/vsim/vsimfunc.c(1989). +# Please contact Questa support at http://supportnet.mentor.com +# ** Error: (vsim-191) Questa has encountered an unexpected internal error: ../../src/vsim/vsimfunc.c(1989). +# Please contact Questa support at http://supportnet.mentor.com +# ** Error: (vsim-191) Questa has encountered an unexpected internal error: ../../src/vsim/vsimfunc.c(1989). +# Please contact Questa support at http://supportnet.mentor.com +# ** Error: (vsim-191) Questa has encountered an unexpected internal error: ../../src/vsim/vsimfunc.c(1989). +# Please contact Questa support at http://supportnet.mentor.com +# ** Warning: (vsim-3015) [PCDPC] - Port size (43) does not match connection size (32) for port 'gpio_in_i'. The port definition is at: /scratch/norlando/pulp-open/sim/../ips/pulp_soc/rtl/pulp_soc/pulp_soc.sv(143). +# Time: 0 ps Iteration: 0 Instance: /tb_pulp/i_dut/soc_domain_i/pulp_soc_i File: /scratch/norlando/pulp-open/sim/../rtl/pulp/soc_domain.sv Line: 230 +# ** Warning: (vsim-3015) [PCDPC] - Port size (43) does not match connection size (32) for port 'gpio_out_o'. The port definition is at: /scratch/norlando/pulp-open/sim/../ips/pulp_soc/rtl/pulp_soc/pulp_soc.sv(144). +# Time: 0 ps Iteration: 0 Instance: /tb_pulp/i_dut/soc_domain_i/pulp_soc_i File: /scratch/norlando/pulp-open/sim/../rtl/pulp/soc_domain.sv Line: 230 +# ** Warning: (vsim-3015) [PCDPC] - Port size (43) does not match connection size (32) for port 'gpio_dir_o'. The port definition is at: /scratch/norlando/pulp-open/sim/../ips/pulp_soc/rtl/pulp_soc/pulp_soc.sv(145). +# Time: 0 ps Iteration: 0 Instance: /tb_pulp/i_dut/soc_domain_i/pulp_soc_i File: /scratch/norlando/pulp-open/sim/../rtl/pulp/soc_domain.sv Line: 230 +# ** Warning: (vsim-3015) [PCDPC] - Port size (256) does not match connection size (384) for port 'pad_cfg_o'. The port definition is at: /scratch/norlando/pulp-open/sim/../ips/pulp_soc/rtl/pulp_soc/soc_peripherals.sv(88). +# Time: 0 ps Iteration: 0 Instance: /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i File: /scratch/norlando/pulp-open/sim/../ips/pulp_soc/rtl/pulp_soc/pulp_soc.sv Line: 587 +# ** Warning: (vsim-3015) [PCDPC] - Port size (43) does not match connection size (32) for port 'gpio_in_sync'. The port definition is at: /scratch/norlando/pulp-open/sim/../ips/apb/apb_gpio/./rtl/apb_gpio.sv(61). +# Time: 0 ps Iteration: 0 Instance: /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_apb_gpio File: /scratch/norlando/pulp-open/sim/../ips/pulp_soc/rtl/pulp_soc/soc_peripherals.sv Line: 365 +# ** Warning: (vsim-3770) Failed to find user specified function 'jtag_tick' in DPI C/C++ source files. +# Time: 0 ps Iteration: 0 Region: /SimJTAG_sv_unit File: /scratch/norlando/pulp-open/sim/../rtl/tb/SimJTAG.sv +# ** Warning: (vsim-8683) Uninitialized out port /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/i_clk_rst_gen/i_fll_soc/i_FLL_digital/TQ has no driver. +# This port will contribute value (U) to the signal network. +# ** Warning: (vsim-8683) Uninitialized out port /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/i_clk_rst_gen/i_fll_soc/i_FLL_digital/JTQ has no driver. +# This port will contribute value (U) to the signal network. +# ** Warning: (vsim-8683) Uninitialized out port /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/i_clk_rst_gen/i_fll_per/i_FLL_digital/TQ has no driver. +# This port will contribute value (U) to the signal network. +# ** Warning: (vsim-8683) Uninitialized out port /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/i_clk_rst_gen/i_fll_per/i_FLL_digital/JTQ has no driver. +# This port will contribute value (U) to the signal network. +# ** Warning: (vsim-8683) Uninitialized out port /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/i_clk_rst_gen/i_fll_cluster/i_FLL_digital/TQ has no driver. +# This port will contribute value (U) to the signal network. +# ** Warning: (vsim-8683) Uninitialized out port /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/i_clk_rst_gen/i_fll_cluster/i_FLL_digital/JTQ has no driver. +# This port will contribute value (U) to the signal network. +# ** Warning: (vsim-3040) Command line generic/parameter "USE_SDVT_I2S" not found in design. +# ** Warning: (vsim-3040) Command line generic/parameter "USE_SDVT_SPI" not found in design. +# run_and_exit +# ** Warning: (vsim-7) Failed to open readmem file "i2s_buffer_0.hex" in read mode. +# No such file or directory. (errno = ENOENT) : /scratch/norlando/pulp-open/sim/../rtl/vip/i2s/i2s_vip_channel.sv(167) +# Time: 0 ps Iteration: 0 Instance: /tb_pulp/genblk8/genblk2/i_i2s_vip_ch0/i2s_vip_channel_i +# ** Warning: (vsim-7) Failed to open readmem file "i2s_buffer_1.hex" in read mode. +# No such file or directory. (errno = ENOENT) : /scratch/norlando/pulp-open/sim/../rtl/vip/i2s/i2s_vip_channel.sv(167) +# Time: 0 ps Iteration: 0 Instance: /tb_pulp/genblk8/genblk2/i_i2s_vip_ch1/i2s_vip_channel_i +# ** Warning: (vsim-7) Failed to open readmem file "i2s_buffer_2.hex" in read mode. +# No such file or directory. (errno = ENOENT) : /scratch/norlando/pulp-open/sim/../rtl/vip/i2s/i2s_vip_channel.sv(167) +# Time: 0 ps Iteration: 0 Instance: /tb_pulp/genblk8/genblk2/i_i2s_CAM_MASTER_SLAVE/i2s_vip_channel_i +# ** Warning: (vsim-7) Failed to open readmem file "i2s_buffer_3.hex" in read mode. +# No such file or directory. (errno = ENOENT) : /scratch/norlando/pulp-open/sim/../rtl/vip/i2s/i2s_vip_channel.sv(167) +# Time: 0 ps Iteration: 0 Instance: /tb_pulp/genblk8/genblk2/i_i2s_CAM_SLAVE/i2s_vip_channel_i +# [CORE] Core settings: PULP_SECURE = 1, N_PMP_ENTRIES = 16, N_PMP_CFG 4 +# [CORE] Core settings: PULP_SECURE = 0, N_PMP_ENTRIES = 16, N_PMP_CFG 4 +# [CORE] Core settings: PULP_SECURE = 0, N_PMP_ENTRIES = 16, N_PMP_CFG 4 +# [CORE] Core settings: PULP_SECURE = 0, N_PMP_ENTRIES = 16, N_PMP_CFG 4 +# [CORE] Core settings: PULP_SECURE = 0, N_PMP_ENTRIES = 16, N_PMP_CFG 4 +# [CORE] Core settings: PULP_SECURE = 0, N_PMP_ENTRIES = 16, N_PMP_CFG 4 +# [CORE] Core settings: PULP_SECURE = 0, N_PMP_ENTRIES = 16, N_PMP_CFG 4 +# [CORE] Core settings: PULP_SECURE = 0, N_PMP_ENTRIES = 16, N_PMP_CFG 4 +# [CORE] Core settings: PULP_SECURE = 0, N_PMP_ENTRIES = 16, N_PMP_CFG 4 +# [TB] 0ns - Entry point is set to 0x1c000880 +# [TB] 0ns - Asserting hard reset +# ** Warning: (vsim-8315) No condition is true in the unique/priority if/case statement. +# Time: 0 ps Iteration: 0 Process: /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/fc_subsystem_i/FC_CORE/lFC_CORE/RISCY_PMP/pmp_unit_i/#ALWAYS#673 File: /scratch/norlando/pulp-open/sim/../ips/riscv/./rtl/riscv_pmp.sv Line: 677 +# ** Warning: (vsim-8315) No condition is true in the unique/priority if/case statement. +# Time: 0 ps Iteration: 1 Process: /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/fc_subsystem_i/FC_CORE/lFC_CORE/RISCY_PMP/pmp_unit_i/#ALWAYS#673 File: /scratch/norlando/pulp-open/sim/../ips/riscv/./rtl/riscv_pmp.sv Line: 677 +# [TB] 1ns - Using FLL +# [TB] 1ns - Not using CAM SDVT +# Loading default stimuli +# [JTAG] SoftReset Done( 701ns) +# [JTAG] Bypass Test Passed ( 33301ns) +# [JTAG] Tap ID: 249511c3 ( 43701ns) +# [JTAG] Tap ID Test PASSED ( 43701ns) +# [test_mode_if] 50301ns - Init +# [TB] 50301ns - Enabling clock out via jtag +# [test_mode_if] 51801ns - Setting confreg to value 002. +# [TB] 51801ns - jtag_conf_reg set to 002 +# [TB] 51801ns - Releasing hard reset +# [TB] 53401ns - Init PULP TAP +# [pulp_tap_if] WRITE32 burst @1c000880 for 4 bytes. +# [TB] 67501ns - Write32 PULP TAP +# [JTAG] R/W test of L2 succeeded +# [TB] 177701ns - Halting the Core +# [TB] 236501ns - Writing the boot address into dpc +# [TB] 280601ns - Loading L2 +# [JTAG] Loading L2 with pulp tap jtag interface +# [pulp_tap_if] WRITE32 burst @1c000000 for 16 bytes. +# [pulp_tap_if] WRITE32 burst @1c000800 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c000c00 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c001000 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c001400 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c001800 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c001c00 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c002000 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c002400 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c002800 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c002c00 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c003000 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c003400 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c003800 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c003c00 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c004000 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c004400 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c004800 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c004c00 for 512 bytes. +# [pulp_tap_if] WRITE32 burst @1c008000 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c008400 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c008800 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c008c00 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c009000 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c009400 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c009800 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c009c00 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c00a000 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c00a400 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c00a800 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c00ac00 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c00b000 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c00b400 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c00b800 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c00bc00 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c00c000 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c00c400 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c00c800 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c00cc00 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c00d000 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c00d400 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c00d800 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c00dc00 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c00e000 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c00e400 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c00e800 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c00ec00 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c00f000 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c00f400 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c00f800 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c00fc00 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c010000 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c010400 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c010800 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c010c00 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c011000 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c011400 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c011800 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c011c00 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c012000 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c012400 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c012800 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c012c00 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c013000 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c013400 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c013800 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c013c00 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c014000 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c014400 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c014800 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c014c00 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c015000 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c015400 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c015800 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c015c00 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c016000 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c016400 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c016800 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c016c00 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c017000 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c017400 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c017800 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c017c00 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c018000 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c018400 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c018800 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c018c00 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c019000 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c019400 for 1024 bytes. +# [pulp_tap_if] WRITE32 burst @1c019800 for 448 bytes. +# [pulp_tap_if] WRITE32 burst @1c0199c8 for 8 bytes. +# [TB] 73333301ns - Resuming the CORE +# [TB] 73906801ns retrying debug reg access +# [TB] 73936101ns retrying debug reg access +# [TB] 73965401ns retrying debug reg access +# [TB] 73994701ns retrying debug reg access +# [TB] 74024001ns retrying debug reg access +# [TB] 74053301ns retrying debug reg access +# [TB] 74082601ns retrying debug reg access +# [TB] 74111901ns retrying debug reg access +# [TB] 74141201ns retrying debug reg access +# [TB] 74170501ns retrying debug reg access +# [TB] 74199801ns retrying debug reg access +# [TB] 74243801ns - Waiting for end of computation +# [STDOUT-CL31_PE0] +# [STDOUT-CL31_PE0] +# [STDOUT-CL31_PE0] *** FreeRTOS Hello World *** +# [STDOUT-CL31_PE0] +# [STDOUT-CL31_PE0] malloc tx buffer +# [STDOUT-CL31_PE0] malloc rx buffer 1 +# [STDOUT-CL31_PE0] malloc rx buffer 2 +# [STDOUT-CL31_PE0] tx buffer init +# [STDOUT-CL31_PE0] async cs auto +# [STDOUT-CL31_PE0] WIP Register: 3 +# [STDOUT-CL31_PE0] WIP Register: 0 +# [STDOUT-CL31_PE0] starting error check +# [STDOUT-CL31_PE0] Test success +# [TB] 77207901ns - Received status core: 0x00000000 +# ** Note: $stop : /scratch/norlando/pulp-open/sim/../rtl/tb/tb_pulp.sv(960) +# Time: 77207901 ns Iteration: 0 Instance: /tb_pulp +# Break in Module tb_pulp at /scratch/norlando/pulp-open/sim/../rtl/tb/tb_pulp.sv line 960 +# Stopped at /scratch/norlando/pulp-open/sim/../rtl/tb/tb_pulp.sv line 960 +# End time: 14:04:17 on Jan 04,2022, Elapsed time: 0:37:25 +# Errors: 5, Warnings: 20 diff --git a/tests/spim_flash_async/sim/vectors/stim.txt b/tests/spim_flash_async/sim/vectors/stim.txt new file mode 120000 index 00000000..fbcdc905 --- /dev/null +++ b/tests/spim_flash_async/sim/vectors/stim.txt @@ -0,0 +1 @@ +../../test_flash_async.stim \ No newline at end of file diff --git a/tests/spim_flash_async/sim/waves b/tests/spim_flash_async/sim/waves new file mode 120000 index 00000000..14cbe579 --- /dev/null +++ b/tests/spim_flash_async/sim/waves @@ -0,0 +1 @@ +/scratch/norlando/pulp-open/sim/waves \ No newline at end of file diff --git a/tests/spim_flash_async/sim/work b/tests/spim_flash_async/sim/work new file mode 120000 index 00000000..fa2a9f6c --- /dev/null +++ b/tests/spim_flash_async/sim/work @@ -0,0 +1 @@ +/scratch/norlando/pulp-open/sim/work \ No newline at end of file diff --git a/tests/spim_flash_async/target/pulp/crt0.o b/tests/spim_flash_async/target/pulp/crt0.o new file mode 100644 index 0000000000000000000000000000000000000000..60bc5037663a4086010a99297e3a112d4a85217b GIT binary patch literal 3756 zcmbtWJ!~9B82#qf4vv!;`y6uz;m54wae(B`b`t)?kAp}+!b+2*LmYeOwR6e&?zFqM zu!I!bf(jJLO5qBGpn-}C2?+|QprN8dLIMdP3Pcg1P=JJZZ+FJt8-5ar&)S*y-n{u{ zc6MfbS5D8LQA&voCBMop6Zv+Zr2Ir`I3h(Ek!={RZ77K+=dNE{xuM23N>E0TrPPnQ zzh6efF^PvSOm7$9+$>1RgYJ1U@lHXu3P1c(|I<3Rk@u%{5nC5d&x<-^8T&1XC!6cP z!RN_~D3$tS=m5%e(im4&<3TGCu#-lg-*4*(&`@Tbi;Or;)ToADCxx2#V8C@ zkOa|En53;DjVPI}oXg(29}~tvT6t7XH?&?-rE&DEsNhgZK1N zrn8d1{DQ+A#@#4QZ=>{9|8McCX6)|k!-pMSbogBk=hw|5%dagp^LfzW zvkrgU;ZHey&f(8GeBR;b9nKS%MK-^eEH(3c+2M7EUvhZl@Fd4~Ab=+W|M)%f{@&w& zI|2R9>?FzfW{&Sb08a+<6nqc<@{zso&A#8wzE6I=xmWVvD?geiz5Cgd1NmmmZ%7_B z3fHiR_1~SF2>0FLTo3YThd=G`7aV@U;Y$v0JAB>YO^3e@&bjjBalUUjTq^U^<0xhd zGif<1wc1jvQx96TZl~E!!ssxRI0+h;Ye}aIyc#x=PDCk6Kh@5MrxWfXhcvAc(Eb)TQj7vJhMSVc_xuC=kR}=RPc* zq$)ye_2+@hW)l-zo%ceK2@u3q=lxK8gsKR!)p_oVW`h!2{Sx)ZP#}n{J_kJf5DEnM zjWYkRVqo7KL}G39HR`vaKoD!=xdQB)OPN?35BHwWf1n6rZ9LqA{vcIJ_oFtREpUHd zDhshT9{v*Xd2kWL+IZdq_RSF`*2eQ5^&u1pVr@Jh0Q;~R=fM6bRS{xsJYN9&2dRn>YvcI}*dL=RLadGFYha%n89}U# z=Nn+ZL{)@X8_##ZewnHWu{NF`f&DwFiV$n#`5D;ffj|&zBak-!6l>5 z{&I4CY-3E};c>f}Zw4NB+yt5po9`$D-otOTMfNdW@`4Z$H zfeG6dfm_U`??J{1OfV;78Bc!P{kWT^p>bSZQ+C`9VCG|68hF>M7NcexpEvQ~n{`p8 zaTUH}mY}AG!5U3F@hQk>=*Tlu#lvxld9~U-04T3wakmIe*nA`4dEXP5{M*)q+WP(i DW+OlI literal 0 HcmV?d00001 diff --git a/tests/spim_flash_async/target/pulp/system.o b/tests/spim_flash_async/target/pulp/system.o new file mode 100644 index 0000000000000000000000000000000000000000..e7f6cf1ef3cc53209dccb6e69bdf6847a8258743 GIT binary patch literal 260884 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

XWo0AI^NQGLpcWEjpGbJf=kXpxG1G)@gQB0 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 j 1c000900 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/vectors.S:33 + j freertos_risc_v_trap_handler +1c000804 <__irq_vector_base+0x4> j 1c000900 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/vectors.S:34 + j freertos_risc_v_trap_handler +1c000808 <__irq_vector_base+0x8> j 1c000900 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/vectors.S:35 + j freertos_risc_v_trap_handler +1c00080c <__irq_vector_base+0xc> j 1c000900 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/vectors.S:36 + j freertos_risc_v_trap_handler +1c000810 <__irq_vector_base+0x10> j 1c000900 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/vectors.S:37 + j freertos_risc_v_trap_handler +1c000814 <__irq_vector_base+0x14> j 1c000900 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/vectors.S:38 + j freertos_risc_v_trap_handler +1c000818 <__irq_vector_base+0x18> j 1c000900 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/vectors.S:39 + j freertos_risc_v_trap_handler +1c00081c <__irq_vector_base+0x1c> j 1c000900 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/vectors.S:40 + j freertos_risc_v_trap_handler +1c000820 <__irq_vector_base+0x20> j 1c000900 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/vectors.S:41 + j freertos_risc_v_trap_handler +1c000824 <__irq_vector_base+0x24> j 1c000900 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/vectors.S:45 +#ifdef PULP_FREERTOS_VECTORED_CONTEXT_SWITCH + j freertos_risc_v_ctxt_handler +#else + j freertos_risc_v_trap_handler +1c000828 <__irq_vector_base+0x28> j 1c000900 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/vectors.S:50 +#endif +#ifdef __HACK_FIRMWARE_OPT1 /* TODO: properly do this with weak symbols */ + j TIMER1_IRQ_handler +#else + j freertos_risc_v_trap_handler +1c00082c <__irq_vector_base+0x2c> j 1c000900 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/vectors.S:52 +#endif + j freertos_risc_v_trap_handler +1c000830 <__irq_vector_base+0x30> j 1c000900 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/vectors.S:53 + j freertos_risc_v_trap_handler +1c000834 <__irq_vector_base+0x34> j 1c000900 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/vectors.S:54 + j freertos_risc_v_trap_handler +1c000838 <__irq_vector_base+0x38> j 1c000900 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/vectors.S:55 + j freertos_risc_v_trap_handler +1c00083c <__irq_vector_base+0x3c> j 1c000900 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/vectors.S:56 + j freertos_risc_v_trap_handler +1c000840 <__irq_vector_base+0x40> j 1c000900 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/vectors.S:57 + j freertos_risc_v_trap_handler +1c000844 <__irq_vector_base+0x44> j 1c000900 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/vectors.S:58 + j freertos_risc_v_trap_handler +1c000848 <__irq_vector_base+0x48> j 1c000900 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/vectors.S:59 + j freertos_risc_v_trap_handler +1c00084c <__irq_vector_base+0x4c> j 1c000900 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/vectors.S:60 + j freertos_risc_v_trap_handler +1c000850 <__irq_vector_base+0x50> j 1c000900 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/vectors.S:61 + j freertos_risc_v_trap_handler +1c000854 <__irq_vector_base+0x54> j 1c000900 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/vectors.S:62 + j freertos_risc_v_trap_handler +1c000858 <__irq_vector_base+0x58> j 1c000900 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/vectors.S:63 + j freertos_risc_v_trap_handler +1c00085c <__irq_vector_base+0x5c> j 1c000900 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/vectors.S:64 + j freertos_risc_v_trap_handler +1c000860 <__irq_vector_base+0x60> j 1c000900 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/vectors.S:65 + j freertos_risc_v_trap_handler +1c000864 <__irq_vector_base+0x64> j 1c000900 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/vectors.S:66 + j freertos_risc_v_trap_handler +1c000868 <__irq_vector_base+0x68> j 1c000900 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/vectors.S:67 + j freertos_risc_v_trap_handler +1c00086c <__irq_vector_base+0x6c> j 1c000900 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/vectors.S:68 + j freertos_risc_v_trap_handler +1c000870 <__irq_vector_base+0x70> j 1c000900 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/vectors.S:69 + j freertos_risc_v_trap_handler +1c000874 <__irq_vector_base+0x74> j 1c000900 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/vectors.S:70 + j freertos_risc_v_trap_handler +1c000878 <__irq_vector_base+0x78> j 1c000900 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/vectors.S:71 + j freertos_risc_v_trap_handler +1c00087c <__irq_vector_base+0x7c> j 1c000900 + +Disassemblamento della sezione .text: +_start(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/crt0.S:39 + +_start: +/* initialize global pointer */ +.option push +.option norelax +1: auipc gp, %pcrel_hi(__global_pointer$) +1c000880 <_start> auipc gp,0x9 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/crt0.S:40 + addi gp, gp, %pcrel_lo(1b) +1c000884 <_start+0x4> addi gp,gp,-1188 # 1c0093dc <__global_pointer$> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/crt0.S:43 +.option pop + + csrr a0, 0xf14 /* Cluster ID */ +1c000888 <_start+0x8> csrr a0,mhartid +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/crt0.S:44 + andi a1, a0, 0x1f /* Core ID */ +1c00088c <_start+0xc> andi a1,a0,31 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/crt0.S:45 + srli a0, a0, 5 +1c000890 <_start+0x10> srli a0,a0,0x5 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/crt0.S:54 + //bne a2, a0, cl_cluster_exec_loop + .extern cluster_exec_loop + bne a2, a0, cluster_exec_loop +#endif +/* initialize stack pointer */ + la sp, __stack_top +1c000892 <_start+0x12> auipc sp,0x19 +1c000896 <_start+0x16> addi sp,sp,286 # 1c0199b0 <__cluster_text_end> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/crt0.S:57 + +/* set vector table address */ + la a0, __vector_start +1c00089a <_start+0x1a> auipc a0,0x0 +1c00089e <_start+0x1e> addi a0,a0,-154 # 1c000800 <__irq_vector_base> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/crt0.S:58 + or a0, a0, 1 /* enable vectored mode (hardcoded anyway for RI5CY) */ +1c0008a2 <_start+0x22> ori a0,a0,1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/crt0.S:59 + csrw mtvec, a0 +1c0008a6 <_start+0x26> csrw mtvec,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/crt0.S:62 + +/* clear the bss segment */ + la t0, __bss_start +1c0008aa <_start+0x2a> auipc t0,0x8 +1c0008ae <_start+0x2e> addi t0,t0,926 # 1c008c48 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/crt0.S:63 + la t1, __bss_end +1c0008b2 <_start+0x32> addi t1,gp,-568 # 1c0091a4 <__bss_end> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/crt0.S:65 +1: + sw zero,0(t0) +1c0008b6 <_start+0x36> sw zero,0(t0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/crt0.S:66 + addi t0, t0, 4 +1c0008ba <_start+0x3a> addi t0,t0,4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/crt0.S:67 + bltu t0, t1, 1b +1c0008bc <_start+0x3c> bltu t0,t1,1c0008b6 <_start+0x36> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/crt0.S:71 + +/* new-style constructors and destructors */ +#if defined(__PULP_USE_LIBC) + la a0, __libc_fini_array +1c0008c0 <_start+0x40> auipc a0,0x3 +1c0008c4 <_start+0x44> addi a0,a0,-128 # 1c003840 <__libc_fini_array> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/crt0.S:72 + call atexit +1c0008c8 <_start+0x48> jal ra,1c003808 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/crt0.S:73 + call __libc_init_array +1c0008cc <_start+0x4c> jal ra,1c0038a2 <__libc_init_array> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/crt0.S:77 +#endif + +/* call main */ + lw a0, 0(sp) /* a0 = argc */ +1c0008d0 <_start+0x50> lw a0,0(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/crt0.S:78 + addi a1, sp, __SIZEOF_POINTER__ /* a1 = argv */ +1c0008d2 <_start+0x52> addi a1,sp,4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/crt0.S:79 + li a2, 0 /* a2 = envp = NULL */ +1c0008d4 <_start+0x54> li a2,0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/crt0.S:80 + call main +1c0008d6 <_start+0x56> jal ra,1c00375e

+/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/crt0.S:81 + tail exit +1c0008da <_start+0x5a> j 1c003814 +_init(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/crt0.S:93 +.type _fini, @function +_init: +_fini: + /* These don't have to do anything since we use init_array/fini_array. Prevent + missing symbol error */ + ret +1c0008de <_fini> ret + ... +freertos_risc_v_trap_handler(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:124 +/*-----------------------------------------------------------*/ + +.align 8 +.func +freertos_risc_v_trap_handler: + addi sp, sp, -portCONTEXT_SIZE +1c000900 addi sp,sp,-120 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:125 + store_x x1, 1 * portWORD_SIZE( sp ) +1c000904 sw ra,4(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:126 + store_x x5, 2 * portWORD_SIZE( sp ) +1c000906 sw t0,8(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:127 + store_x x6, 3 * portWORD_SIZE( sp ) +1c000908 sw t1,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:128 + store_x x7, 4 * portWORD_SIZE( sp ) +1c00090a sw t2,16(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:129 + store_x x8, 5 * portWORD_SIZE( sp ) +1c00090c sw s0,20(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:130 + store_x x9, 6 * portWORD_SIZE( sp ) +1c00090e sw s1,24(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:131 + store_x x10, 7 * portWORD_SIZE( sp ) +1c000910 sw a0,28(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:132 + store_x x11, 8 * portWORD_SIZE( sp ) +1c000912 sw a1,32(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:133 + store_x x12, 9 * portWORD_SIZE( sp ) +1c000914 sw a2,36(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:134 + store_x x13, 10 * portWORD_SIZE( sp ) +1c000916 sw a3,40(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:135 + store_x x14, 11 * portWORD_SIZE( sp ) +1c000918 sw a4,44(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:136 + store_x x15, 12 * portWORD_SIZE( sp ) +1c00091a sw a5,48(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:138 +#ifndef __riscv_32e /* defined by gcc when -march=rv32e */ + store_x x16, 13 * portWORD_SIZE( sp ) +1c00091c sw a6,52(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:139 + store_x x17, 14 * portWORD_SIZE( sp ) +1c00091e sw a7,56(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:140 + store_x x18, 15 * portWORD_SIZE( sp ) +1c000920 sw s2,60(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:141 + store_x x19, 16 * portWORD_SIZE( sp ) +1c000922 sw s3,64(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:142 + store_x x20, 17 * portWORD_SIZE( sp ) +1c000924 sw s4,68(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:143 + store_x x21, 18 * portWORD_SIZE( sp ) +1c000926 sw s5,72(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:144 + store_x x22, 19 * portWORD_SIZE( sp ) +1c000928 sw s6,76(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:145 + store_x x23, 20 * portWORD_SIZE( sp ) +1c00092a sw s7,80(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:146 + store_x x24, 21 * portWORD_SIZE( sp ) +1c00092c sw s8,84(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:147 + store_x x25, 22 * portWORD_SIZE( sp ) +1c00092e sw s9,88(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:148 + store_x x26, 23 * portWORD_SIZE( sp ) +1c000930 sw s10,92(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:149 + store_x x27, 24 * portWORD_SIZE( sp ) +1c000932 sw s11,96(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:150 + store_x x28, 25 * portWORD_SIZE( sp ) +1c000934 sw t3,100(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:151 + store_x x29, 26 * portWORD_SIZE( sp ) +1c000936 sw t4,104(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:152 + store_x x30, 27 * portWORD_SIZE( sp ) +1c000938 sw t5,108(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:153 + store_x x31, 28 * portWORD_SIZE( sp ) +1c00093a sw t6,112(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:156 +#endif + + csrr t0, mstatus /* Required for MPIE bit. */ +1c00093c csrr t0,mstatus +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:157 + store_x t0, 29 * portWORD_SIZE( sp ) +1c000940 sw t0,116(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:159 +#ifndef portasmSKIP_ADDITIONAL_REGISTERS + portasmSAVE_ADDITIONAL_REGISTERS /* Defined in freertos_risc_v_chip_specific_extensions.h to save any registers unique to the RISC-V implementation. */ +1c000942 addi sp,sp,-24 +1c000944 csrr t0,0x7c0 +1c000948 csrr t1,0x7c1 +1c00094c csrr t2,0x7c2 +1c000950 csrr t3,0x7c4 +1c000954 csrr t4,0x7c5 +1c000958 csrr t5,0x7c6 +1c00095c sw t0,4(sp) +1c00095e sw t1,8(sp) +1c000960 sw t2,12(sp) +1c000962 sw t3,16(sp) +1c000964 sw t4,20(sp) +1c000966 sw t5,24(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:162 +#endif + + load_x t0, pxCurrentTCB /* Load pxCurrentTCB. */ +1c000968 lw t0,-684(gp) # 1c009130 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:163 + store_x sp, 0( t0 ) /* Write sp to first TCB member. */ +1c00096c sw sp,0(t0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:165 + + csrr a0, mcause +1c000970 csrr a0,mcause +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:166 + csrr a1, mepc +1c000974 csrr a1,mepc +test_if_asynchronous(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:169 + +test_if_asynchronous: + srli a2, a0, __riscv_xlen - 1 /* MSB of mcause is 1 if handing an asynchronous interrupt - shift to LSB to clear other bits. */ +1c000978 srli a2,a0,0x1f +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:170 + beq a2, x0, handle_synchronous /* Branch past interrupt handing if not asynchronous. */ +1c00097c beqz a2,1c00098e +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:171 + store_x a1, 0( sp ) /* Asynch so save unmodified exception return address. */ +1c00097e sw a1,0(sp) +handle_asynchronous(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:229 + addi t1, t1, 4 /* 0x80000007 + 4 = 0x8000000b == Machine external interrupt. */ + bne a0, t1, as_yet_unhandled /* Something as yet unhandled. */ + +#endif /* portasmHAS_MTIME */ + + load_x sp, xISRStackTop /* Switch to ISR stack before function call. */ +1c000980 auipc sp,0x8 +1c000984 lw sp,596(sp) # 1c008bd4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:230 + jal portasmHANDLE_INTERRUPT /* Jump to the interrupt handler if there is no CLINT or if there is a CLINT and it has been determined that an external interrupt is pending. */ +1c000988 jal ra,1c002b06 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:231 + j processed_source +1c00098c j 1c0009be +handle_synchronous(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:234 + +handle_synchronous: + addi a1, a1, 4 /* Synchronous so updated exception return address to the instruction after the instruction that generated the exeption. */ +1c00098e addi a1,a1,4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:235 + store_x a1, 0( sp ) /* Save updated exception return address. */ +1c000990 sw a1,0(sp) +test_if_environment_call(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:238 + +test_if_environment_call: + li t0, 11 /* 11 == environment call. */ +1c000992 li t0,11 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:239 + andi a0, a0, 0x7ff /* with the CLIC the lower 12 bits are the exception code and upper bits might be clobbered mpil, mie etc. */ +1c000994 andi a0,a0,2047 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:240 + bne a0, t0, is_exception /* Not an M environment call, so some other exception. */ +1c000998 bne a0,t0,1c0009aa +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:241 + load_x sp, xISRStackTop /* Switch to ISR stack before function call. */ +1c00099c auipc sp,0x8 +1c0009a0 lw sp,568(sp) # 1c008bd4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:242 + jal vTaskSwitchContext +1c0009a4 jal ra,1c001b76 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:243 + j processed_source +1c0009a8 j 1c0009be +is_exception(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:246 + +is_exception: + csrr t0, mcause /* For viewing in the debugger only. */ +1c0009aa csrr t0,mcause +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:247 + csrr t1, mepc /* For viewing in the debugger only */ +1c0009ae csrr t1,mepc +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:248 + csrr t2, mstatus +1c0009b2 csrr t2,mstatus +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:249 + j is_exception /* No other exceptions handled yet. */ +1c0009b6 j 1c0009aa +as_yet_unhandled(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:252 + +as_yet_unhandled: + csrr t0, mcause /* For viewing in the debugger only. */ +1c0009b8 csrr t0,mcause +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:253 + j as_yet_unhandled +1c0009bc j 1c0009b8 +processed_source(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:256 + +processed_source: + load_x t1, pxCurrentTCB /* Load pxCurrentTCB. */ +1c0009be lw t1,-684(gp) # 1c009130 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:257 + load_x sp, 0( t1 ) /* Read sp from first TCB member. */ +1c0009c2 lw sp,0(t1) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:260 + + /* Load mret with the address of the next instruction in the task to run next. */ + load_x t0, 0( sp ) +1c0009c6 lw t0,0(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:261 + csrw mepc, t0 +1c0009c8 csrw mepc,t0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:264 + +#ifndef portasmSKIP_ADDITIONAL_REGISTERS + portasmRESTORE_ADDITIONAL_REGISTERS /* Defined in freertos_risc_v_chip_specific_extensions.h to restore any registers unique to the RISC-V implementation. */ +1c0009cc lw t0,4(sp) +1c0009ce lw t1,8(sp) +1c0009d0 lw t2,12(sp) +1c0009d2 lw t3,16(sp) +1c0009d4 lw t4,20(sp) +1c0009d6 lw t5,24(sp) +1c0009d8 csrw 0x7c0,t0 +1c0009dc csrw 0x7c1,t1 +1c0009e0 csrw 0x7c2,t2 +1c0009e4 csrw 0x7c4,t3 +1c0009e8 csrw 0x7c5,t4 +1c0009ec csrw 0x7c6,t5 +1c0009f0 addi sp,sp,24 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:268 +#endif + + /* Load mstatus with the interrupt enable bits used by the task. */ + load_x t0, 29 * portWORD_SIZE( sp ) +1c0009f2 lw t0,116(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:269 + csrw mstatus, t0 /* Required for MPIE bit. */ +1c0009f4 csrw mstatus,t0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:271 + + load_x x1, 1 * portWORD_SIZE( sp ) +1c0009f8 lw ra,4(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:272 + load_x x5, 2 * portWORD_SIZE( sp ) /* t0 */ +1c0009fa lw t0,8(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:273 + load_x x6, 3 * portWORD_SIZE( sp ) /* t1 */ +1c0009fc lw t1,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:274 + load_x x7, 4 * portWORD_SIZE( sp ) /* t2 */ +1c0009fe lw t2,16(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:275 + load_x x8, 5 * portWORD_SIZE( sp ) /* s0/fp */ +1c000a00 lw s0,20(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:276 + load_x x9, 6 * portWORD_SIZE( sp ) /* s1 */ +1c000a02 lw s1,24(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:277 + load_x x10, 7 * portWORD_SIZE( sp ) /* a0 */ +1c000a04 lw a0,28(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:278 + load_x x11, 8 * portWORD_SIZE( sp ) /* a1 */ +1c000a06 lw a1,32(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:279 + load_x x12, 9 * portWORD_SIZE( sp ) /* a2 */ +1c000a08 lw a2,36(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:280 + load_x x13, 10 * portWORD_SIZE( sp ) /* a3 */ +1c000a0a lw a3,40(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:281 + load_x x14, 11 * portWORD_SIZE( sp ) /* a4 */ +1c000a0c lw a4,44(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:282 + load_x x15, 12 * portWORD_SIZE( sp ) /* a5 */ +1c000a0e lw a5,48(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:284 +#ifndef __riscv_32e /* defined by gcc when -march=rv32e */ + load_x x16, 13 * portWORD_SIZE( sp ) /* a6 */ +1c000a10 lw a6,52(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:285 + load_x x17, 14 * portWORD_SIZE( sp ) /* a7 */ +1c000a12 lw a7,56(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:286 + load_x x18, 15 * portWORD_SIZE( sp ) /* s2 */ +1c000a14 lw s2,60(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:287 + load_x x19, 16 * portWORD_SIZE( sp ) /* s3 */ +1c000a16 lw s3,64(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:288 + load_x x20, 17 * portWORD_SIZE( sp ) /* s4 */ +1c000a18 lw s4,68(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:289 + load_x x21, 18 * portWORD_SIZE( sp ) /* s5 */ +1c000a1a lw s5,72(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:290 + load_x x22, 19 * portWORD_SIZE( sp ) /* s6 */ +1c000a1c lw s6,76(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:291 + load_x x23, 20 * portWORD_SIZE( sp ) /* s7 */ +1c000a1e lw s7,80(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:292 + load_x x24, 21 * portWORD_SIZE( sp ) /* s8 */ +1c000a20 lw s8,84(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:293 + load_x x25, 22 * portWORD_SIZE( sp ) /* s9 */ +1c000a22 lw s9,88(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:294 + load_x x26, 23 * portWORD_SIZE( sp ) /* s10 */ +1c000a24 lw s10,92(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:295 + load_x x27, 24 * portWORD_SIZE( sp ) /* s11 */ +1c000a26 lw s11,96(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:296 + load_x x28, 25 * portWORD_SIZE( sp ) /* t3 */ +1c000a28 lw t3,100(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:297 + load_x x29, 26 * portWORD_SIZE( sp ) /* t4 */ +1c000a2a lw t4,104(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:298 + load_x x30, 27 * portWORD_SIZE( sp ) /* t5 */ +1c000a2c lw t5,108(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:299 + load_x x31, 28 * portWORD_SIZE( sp ) /* t6 */ +1c000a2e lw t6,112(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:301 +#endif + addi sp, sp, portCONTEXT_SIZE +1c000a30 addi sp,sp,120 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:303 + + mret +1c000a34 mret +1c000a38 nop +1c000a3c nop +1c000a40 nop +1c000a44 nop +1c000a48 nop +1c000a4c nop +1c000a50 nop +1c000a54 nop +1c000a58 nop +1c000a5c nop +1c000a60 nop +1c000a64 nop +1c000a68 nop +1c000a6c nop +1c000a70 nop +1c000a74 nop +1c000a78 nop +1c000a7c nop +1c000a80 nop +1c000a84 nop +1c000a88 nop +1c000a8c nop +1c000a90 nop +1c000a94 nop +1c000a98 nop +1c000a9c nop +1c000aa0 nop +1c000aa4 nop +1c000aa8 nop +1c000aac nop +1c000ab0 nop +1c000ab4 nop +1c000ab8 nop +1c000abc nop +1c000ac0 nop +1c000ac4 nop +1c000ac8 nop +1c000acc nop +1c000ad0 nop +1c000ad4 nop +1c000ad8 nop +1c000adc nop +1c000ae0 nop +1c000ae4 nop +1c000ae8 nop +1c000aec nop +1c000af0 nop +1c000af4 nop +1c000af8 nop +1c000afc nop +freertos_risc_v_ctxt_handler(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:311 + +/* for timer interrupt vectored context switches */ +.align 8 +.func +freertos_risc_v_ctxt_handler: + addi sp, sp, -portCONTEXT_SIZE +1c000b00 addi sp,sp,-120 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:312 + store_x x1, 1 * portWORD_SIZE( sp ) +1c000b04 sw ra,4(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:313 + store_x x5, 2 * portWORD_SIZE( sp ) +1c000b06 sw t0,8(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:314 + store_x x6, 3 * portWORD_SIZE( sp ) +1c000b08 sw t1,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:315 + store_x x7, 4 * portWORD_SIZE( sp ) +1c000b0a sw t2,16(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:316 + store_x x8, 5 * portWORD_SIZE( sp ) +1c000b0c sw s0,20(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:317 + store_x x9, 6 * portWORD_SIZE( sp ) +1c000b0e sw s1,24(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:318 + store_x x10, 7 * portWORD_SIZE( sp ) +1c000b10 sw a0,28(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:319 + store_x x11, 8 * portWORD_SIZE( sp ) +1c000b12 sw a1,32(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:320 + store_x x12, 9 * portWORD_SIZE( sp ) +1c000b14 sw a2,36(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:321 + store_x x13, 10 * portWORD_SIZE( sp ) +1c000b16 sw a3,40(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:322 + store_x x14, 11 * portWORD_SIZE( sp ) +1c000b18 sw a4,44(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:323 + store_x x15, 12 * portWORD_SIZE( sp ) +1c000b1a sw a5,48(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:325 +#ifndef __riscv_32e /* defined by gcc when -march=rv32e */ + store_x x16, 13 * portWORD_SIZE( sp ) +1c000b1c sw a6,52(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:326 + store_x x17, 14 * portWORD_SIZE( sp ) +1c000b1e sw a7,56(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:327 + store_x x18, 15 * portWORD_SIZE( sp ) +1c000b20 sw s2,60(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:328 + store_x x19, 16 * portWORD_SIZE( sp ) +1c000b22 sw s3,64(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:329 + store_x x20, 17 * portWORD_SIZE( sp ) +1c000b24 sw s4,68(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:330 + store_x x21, 18 * portWORD_SIZE( sp ) +1c000b26 sw s5,72(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:331 + store_x x22, 19 * portWORD_SIZE( sp ) +1c000b28 sw s6,76(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:332 + store_x x23, 20 * portWORD_SIZE( sp ) +1c000b2a sw s7,80(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:333 + store_x x24, 21 * portWORD_SIZE( sp ) +1c000b2c sw s8,84(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:334 + store_x x25, 22 * portWORD_SIZE( sp ) +1c000b2e sw s9,88(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:335 + store_x x26, 23 * portWORD_SIZE( sp ) +1c000b30 sw s10,92(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:336 + store_x x27, 24 * portWORD_SIZE( sp ) +1c000b32 sw s11,96(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:337 + store_x x28, 25 * portWORD_SIZE( sp ) +1c000b34 sw t3,100(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:338 + store_x x29, 26 * portWORD_SIZE( sp ) +1c000b36 sw t4,104(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:339 + store_x x30, 27 * portWORD_SIZE( sp ) +1c000b38 sw t5,108(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:340 + store_x x31, 28 * portWORD_SIZE( sp ) +1c000b3a sw t6,112(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:343 +#endif + + csrr t0, mstatus /* Required for MPIE bit. */ +1c000b3c csrr t0,mstatus +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:344 + store_x t0, 29 * portWORD_SIZE( sp ) +1c000b40 sw t0,116(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:346 +#ifndef portasmSKIP_ADDITIONAL_REGISTERS + portasmSAVE_ADDITIONAL_REGISTERS /* Defined in freertos_risc_v_chip_specific_extensions.h to save any registers unique to the RISC-V implementation. */ +1c000b42 addi sp,sp,-24 +1c000b44 csrr t0,0x7c0 +1c000b48 csrr t1,0x7c1 +1c000b4c csrr t2,0x7c2 +1c000b50 csrr t3,0x7c4 +1c000b54 csrr t4,0x7c5 +1c000b58 csrr t5,0x7c6 +1c000b5c sw t0,4(sp) +1c000b5e sw t1,8(sp) +1c000b60 sw t2,12(sp) +1c000b62 sw t3,16(sp) +1c000b64 sw t4,20(sp) +1c000b66 sw t5,24(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:349 +#endif + + load_x t0, pxCurrentTCB /* Load pxCurrentTCB. */ +1c000b68 lw t0,-684(gp) # 1c009130 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:350 + store_x sp, 0( t0 ) /* Write sp to first TCB member. */ +1c000b6c sw sp,0(t0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:352 + + csrr a0, mcause +1c000b70 csrr a0,mcause +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:353 + csrr a1, mepc +1c000b74 csrr a1,mepc +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:355 + + store_x a1, 0( sp ) /* Asynch so save unmodified exception return address. */ +1c000b78 sw a1,0(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:357 + + load_x sp, xISRStackTop /* Switch to ISR stack before function call. */ +1c000b7a auipc sp,0x8 +1c000b7e lw sp,90(sp) # 1c008bd4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:358 + jal xTaskIncrementTick +1c000b82 jal ra,1c001a28 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:359 + beqz a0, processed_source /* Don't switch context if incrementing tick didn't unblock a task. */ +1c000b86 beqz a0,1c0009be +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:360 + jal vTaskSwitchContext +1c000b8a jal ra,1c001b76 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:362 + + load_x t1, pxCurrentTCB /* Load pxCurrentTCB. */ +1c000b8e lw t1,-684(gp) # 1c009130 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:363 + load_x sp, 0( t1 ) /* Read sp from first TCB member. */ +1c000b92 lw sp,0(t1) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:366 + + /* Load mret with the address of the next instruction in the task to run next. */ + load_x t0, 0( sp ) +1c000b96 lw t0,0(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:367 + csrw mepc, t0 +1c000b98 csrw mepc,t0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:370 + +#ifndef portasmSKIP_ADDITIONAL_REGISTERS + portasmRESTORE_ADDITIONAL_REGISTERS /* Defined in freertos_risc_v_chip_specific_extensions.h to restore any registers unique to the RISC-V implementation. */ +1c000b9c lw t0,4(sp) +1c000b9e lw t1,8(sp) +1c000ba0 lw t2,12(sp) +1c000ba2 lw t3,16(sp) +1c000ba4 lw t4,20(sp) +1c000ba6 lw t5,24(sp) +1c000ba8 csrw 0x7c0,t0 +1c000bac csrw 0x7c1,t1 +1c000bb0 csrw 0x7c2,t2 +1c000bb4 csrw 0x7c4,t3 +1c000bb8 csrw 0x7c5,t4 +1c000bbc csrw 0x7c6,t5 +1c000bc0 addi sp,sp,24 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:374 +#endif + + /* Load mstatus with the interrupt enable bits used by the task. */ + load_x t0, 29 * portWORD_SIZE( sp ) +1c000bc2 lw t0,116(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:375 + csrw mstatus, t0 /* Required for MPIE bit. */ +1c000bc4 csrw mstatus,t0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:377 + + load_x x1, 1 * portWORD_SIZE( sp ) +1c000bc8 lw ra,4(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:378 + load_x x5, 2 * portWORD_SIZE( sp ) /* t0 */ +1c000bca lw t0,8(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:379 + load_x x6, 3 * portWORD_SIZE( sp ) /* t1 */ +1c000bcc lw t1,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:380 + load_x x7, 4 * portWORD_SIZE( sp ) /* t2 */ +1c000bce lw t2,16(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:381 + load_x x8, 5 * portWORD_SIZE( sp ) /* s0/fp */ +1c000bd0 lw s0,20(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:382 + load_x x9, 6 * portWORD_SIZE( sp ) /* s1 */ +1c000bd2 lw s1,24(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:383 + load_x x10, 7 * portWORD_SIZE( sp ) /* a0 */ +1c000bd4 lw a0,28(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:384 + load_x x11, 8 * portWORD_SIZE( sp ) /* a1 */ +1c000bd6 lw a1,32(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:385 + load_x x12, 9 * portWORD_SIZE( sp ) /* a2 */ +1c000bd8 lw a2,36(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:386 + load_x x13, 10 * portWORD_SIZE( sp ) /* a3 */ +1c000bda lw a3,40(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:387 + load_x x14, 11 * portWORD_SIZE( sp ) /* a4 */ +1c000bdc lw a4,44(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:388 + load_x x15, 12 * portWORD_SIZE( sp ) /* a5 */ +1c000bde lw a5,48(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:390 +#ifndef __riscv_32e /* defined by gcc when -march=rv32e */ + load_x x16, 13 * portWORD_SIZE( sp ) /* a6 */ +1c000be0 lw a6,52(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:391 + load_x x17, 14 * portWORD_SIZE( sp ) /* a7 */ +1c000be2 lw a7,56(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:392 + load_x x18, 15 * portWORD_SIZE( sp ) /* s2 */ +1c000be4 lw s2,60(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:393 + load_x x19, 16 * portWORD_SIZE( sp ) /* s3 */ +1c000be6 lw s3,64(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:394 + load_x x20, 17 * portWORD_SIZE( sp ) /* s4 */ +1c000be8 lw s4,68(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:395 + load_x x21, 18 * portWORD_SIZE( sp ) /* s5 */ +1c000bea lw s5,72(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:396 + load_x x22, 19 * portWORD_SIZE( sp ) /* s6 */ +1c000bec lw s6,76(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:397 + load_x x23, 20 * portWORD_SIZE( sp ) /* s7 */ +1c000bee lw s7,80(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:398 + load_x x24, 21 * portWORD_SIZE( sp ) /* s8 */ +1c000bf0 lw s8,84(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:399 + load_x x25, 22 * portWORD_SIZE( sp ) /* s9 */ +1c000bf2 lw s9,88(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:400 + load_x x26, 23 * portWORD_SIZE( sp ) /* s10 */ +1c000bf4 lw s10,92(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:401 + load_x x27, 24 * portWORD_SIZE( sp ) /* s11 */ +1c000bf6 lw s11,96(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:402 + load_x x28, 25 * portWORD_SIZE( sp ) /* t3 */ +1c000bf8 lw t3,100(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:403 + load_x x29, 26 * portWORD_SIZE( sp ) /* t4 */ +1c000bfa lw t4,104(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:404 + load_x x30, 27 * portWORD_SIZE( sp ) /* t5 */ +1c000bfc lw t5,108(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:405 + load_x x31, 28 * portWORD_SIZE( sp ) /* t6 */ +1c000bfe lw t6,112(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:407 +#endif + addi sp, sp, portCONTEXT_SIZE +1c000c00 addi sp,sp,120 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:409 + + mret +1c000c04 mret +1c000c08 nop +1c000c0c nop +1c000c10 nop +1c000c14 nop +1c000c18 nop +1c000c1c nop +1c000c20 nop +1c000c24 nop +1c000c28 nop +1c000c2c nop +1c000c30 nop +1c000c34 nop +1c000c38 nop +1c000c3c nop +1c000c40 nop +1c000c44 nop +1c000c48 nop +1c000c4c nop +1c000c50 nop +1c000c54 nop +1c000c58 nop +1c000c5c nop +1c000c60 nop +1c000c64 nop +1c000c68 nop +1c000c6c nop +1c000c70 nop +1c000c74 nop +1c000c78 nop +1c000c7c nop +1c000c80 nop +1c000c84 nop +1c000c88 nop +1c000c8c nop +1c000c90 nop +1c000c94 nop +1c000c98 nop +1c000c9c nop +1c000ca0 nop +1c000ca4 nop +1c000ca8 nop +1c000cac nop +1c000cb0 nop +1c000cb4 nop +1c000cb8 nop +1c000cbc nop +1c000cc0 nop +1c000cc4 nop +1c000cc8 nop +1c000ccc nop +1c000cd0 nop +1c000cd4 nop +1c000cd8 nop +1c000cdc nop +1c000ce0 nop +1c000ce4 nop +1c000ce8 nop +1c000cec nop +1c000cf0 nop +1c000cf4 nop +1c000cf8 nop +1c000cfc nop +xPortStartFirstTask(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:426 + outside of this file. */ + la t0, freertos_risc_v_trap_handler + csrw mtvec, t0 +#endif /* portasmHAS_CLILNT */ + + load_x sp, pxCurrentTCB /* Load pxCurrentTCB. */ +1c000d00 lw sp,-684(gp) # 1c009130 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:427 + load_x sp, 0( sp ) /* Read sp from first TCB member. */ +1c000d04 lw sp,0(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:429 + + load_x x1, 0( sp ) /* Note for starting the scheduler the exception return address is used as the function return address. */ +1c000d06 lw ra,0(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:432 + +#ifndef portasmSKIP_ADDITIONAL_REGISTERS + portasmRESTORE_ADDITIONAL_REGISTERS /* Defined in freertos_risc_v_chip_specific_extensions.h to restore any registers unique to the RISC-V implementation. */ +1c000d08 lw t0,4(sp) +1c000d0a lw t1,8(sp) +1c000d0c lw t2,12(sp) +1c000d0e lw t3,16(sp) +1c000d10 lw t4,20(sp) +1c000d12 lw t5,24(sp) +1c000d14 csrw 0x7c0,t0 +1c000d18 csrw 0x7c1,t1 +1c000d1c csrw 0x7c2,t2 +1c000d20 csrw 0x7c4,t3 +1c000d24 csrw 0x7c5,t4 +1c000d28 csrw 0x7c6,t5 +1c000d2c addi sp,sp,24 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:435 +#endif + + load_x x6, 3 * portWORD_SIZE( sp ) /* t1 */ +1c000d2e lw t1,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:436 + load_x x7, 4 * portWORD_SIZE( sp ) /* t2 */ +1c000d30 lw t2,16(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:437 + load_x x8, 5 * portWORD_SIZE( sp ) /* s0/fp */ +1c000d32 lw s0,20(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:438 + load_x x9, 6 * portWORD_SIZE( sp ) /* s1 */ +1c000d34 lw s1,24(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:439 + load_x x10, 7 * portWORD_SIZE( sp ) /* a0 */ +1c000d36 lw a0,28(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:440 + load_x x11, 8 * portWORD_SIZE( sp ) /* a1 */ +1c000d38 lw a1,32(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:441 + load_x x12, 9 * portWORD_SIZE( sp ) /* a2 */ +1c000d3a lw a2,36(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:442 + load_x x13, 10 * portWORD_SIZE( sp ) /* a3 */ +1c000d3c lw a3,40(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:443 + load_x x14, 11 * portWORD_SIZE( sp ) /* a4 */ +1c000d3e lw a4,44(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:444 + load_x x15, 12 * portWORD_SIZE( sp ) /* a5 */ +1c000d40 lw a5,48(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:446 +#ifndef __riscv_32e /* defined by gcc when -march=rv32e */ + load_x x16, 13 * portWORD_SIZE( sp ) /* a6 */ +1c000d42 lw a6,52(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:447 + load_x x17, 14 * portWORD_SIZE( sp ) /* a7 */ +1c000d44 lw a7,56(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:448 + load_x x18, 15 * portWORD_SIZE( sp ) /* s2 */ +1c000d46 lw s2,60(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:449 + load_x x19, 16 * portWORD_SIZE( sp ) /* s3 */ +1c000d48 lw s3,64(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:450 + load_x x20, 17 * portWORD_SIZE( sp ) /* s4 */ +1c000d4a lw s4,68(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:451 + load_x x21, 18 * portWORD_SIZE( sp ) /* s5 */ +1c000d4c lw s5,72(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:452 + load_x x22, 19 * portWORD_SIZE( sp ) /* s6 */ +1c000d4e lw s6,76(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:453 + load_x x23, 20 * portWORD_SIZE( sp ) /* s7 */ +1c000d50 lw s7,80(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:454 + load_x x24, 21 * portWORD_SIZE( sp ) /* s8 */ +1c000d52 lw s8,84(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:455 + load_x x25, 22 * portWORD_SIZE( sp ) /* s9 */ +1c000d54 lw s9,88(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:456 + load_x x26, 23 * portWORD_SIZE( sp ) /* s10 */ +1c000d56 lw s10,92(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:457 + load_x x27, 24 * portWORD_SIZE( sp ) /* s11 */ +1c000d58 lw s11,96(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:458 + load_x x28, 25 * portWORD_SIZE( sp ) /* t3 */ +1c000d5a lw t3,100(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:459 + load_x x29, 26 * portWORD_SIZE( sp ) /* t4 */ +1c000d5c lw t4,104(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:460 + load_x x30, 27 * portWORD_SIZE( sp ) /* t5 */ +1c000d5e lw t5,108(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:461 + load_x x31, 28 * portWORD_SIZE( sp ) /* t6 */ +1c000d60 lw t6,112(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:463 +#endif + load_x x5, 29 * portWORD_SIZE( sp ) /* Initial mstatus into x5 (t0) */ +1c000d62 lw t0,116(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:464 + addi x5, x5, 0x08 /* Set MIE bit so the first task starts with interrupts enabled - required as returns with ret not eret. */ +1c000d64 addi t0,t0,8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:465 + csrrw x0, mstatus, x5 /* Interrupts enabled from here! */ +1c000d66 csrw mstatus,t0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:466 + load_x x5, 2 * portWORD_SIZE( sp ) /* Initial x5 (t0) value. */ +1c000d6a lw t0,8(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:468 + + addi sp, sp, portCONTEXT_SIZE +1c000d6c addi sp,sp,120 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:469 + ret +1c000d70 ret +1c000d72 nop +1c000d76 nop +1c000d7a nop +1c000d7e nop +1c000d82 nop +1c000d86 nop +1c000d8a nop +1c000d8e nop +1c000d92 nop +1c000d96 nop +1c000d9a nop +1c000d9e nop +1c000da2 nop +1c000da6 nop +1c000daa nop +1c000dae nop +1c000db2 nop +1c000db6 nop +1c000dba nop +1c000dbe nop +1c000dc2 nop +1c000dc6 nop +1c000dca nop +1c000dce nop +1c000dd2 nop +1c000dd6 nop +1c000dda nop +1c000dde nop +1c000de2 nop +1c000de6 nop +1c000dea nop +1c000dee nop +1c000df2 nop +1c000df6 nop +1c000dfa nop +1c000dfe nop +pxPortInitialiseStack(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:539 + */ +.align 8 +.func +pxPortInitialiseStack: + + csrr t0, mstatus /* Obtain current mstatus value. */ +1c000e00 csrr t0,mstatus +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:540 + andi t0, t0, ~0x8 /* Ensure interrupts are disabled when the stack is restored within an ISR. Required when a task is created after the schedulre has been started, otherwise interrupts would be disabled anyway. */ +1c000e04 andi t0,t0,-9 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:541 + addi t1, x0, 0x188 /* Generate the value 0x1880, which are the MPIE and MPP bits to set in mstatus. */ +1c000e08 li t1,392 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:542 + slli t1, t1, 4 +1c000e0c slli t1,t1,0x4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:543 + or t0, t0, t1 /* Set MPIE and MPP bits in mstatus value. */ +1c000e0e or t0,t0,t1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:545 + + addi a0, a0, -portWORD_SIZE +1c000e12 addi a0,a0,-4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:546 + store_x t0, 0(a0) /* mstatus onto the stack. */ +1c000e14 sw t0,0(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:547 + addi a0, a0, -(22 * portWORD_SIZE) /* Space for registers x11-x31. */ +1c000e18 addi a0,a0,-88 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:548 + store_x a2, 0(a0) /* Task parameters (pvParameters parameter) goes into register X10/a0 on the stack. */ +1c000e1c sw a2,0(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:549 + addi a0, a0, -(6 * portWORD_SIZE) /* Space for registers x5-x9. */ +1c000e1e addi a0,a0,-24 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:550 + store_x x0, 0(a0) /* Return address onto the stack, could be portTASK_RETURN_ADDRESS */ +1c000e20 sw zero,0(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:551 + addi t0, x0, portasmADDITIONAL_CONTEXT_SIZE /* The number of chip specific additional registers. */ +1c000e24 li t0,6 +chip_specific_stack_frame(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:553 +chip_specific_stack_frame: /* First add any chip specific registers to the stack frame being created. */ + beq t0, x0, 1f /* No more chip specific registers to save. */ +1c000e26 beqz t0,1c000e34 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:554 + addi a0, a0, -portWORD_SIZE /* Make space for chip specific register. */ +1c000e2a addi a0,a0,-4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:555 + store_x x0, 0(a0) /* Give the chip specific register an initial value of zero. */ +1c000e2c sw zero,0(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:556 + addi t0, t0, -1 /* Decrement the count of chip specific registers remaining. */ +1c000e30 addi t0,t0,-1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:557 + j chip_specific_stack_frame /* Until no more chip specific registers. */ +1c000e32 j 1c000e26 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:559 +1: + addi a0, a0, -portWORD_SIZE +1c000e34 addi a0,a0,-4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:560 + store_x a1, 0(a0) /* mret value (pxCode parameter) onto the stack. */ +1c000e36 sw a1,0(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/portASM.S:561 + ret +1c000e38 ret + ... +fc_soc_event_handler(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fc_event.c:61 + +/* TODO: fix */ +__attribute__((section(".text"))) void fc_soc_event_handler(void) +{ + /* Pop one event element from the FIFO */ + uint32_t event = SIMPLE_IRQ->FIFO; +1c000e42 lui a5,0x1a10a +1c000e46 addi a5,a5,-2048 # 1a109800 <__heap_l1_cluster_start+0xa1097e0> +1c000e4a lw a0,36(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fc_event.c:66 + + event &= 0xFF; + + /* redirect to handler with jump table */ + if (fc_event_handlers[event] != NULL) { +1c000e4c addi a5,gp,-1496 # 1c008e04 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fc_event.c:63 + event &= 0xFF; +1c000e50 andi a0,a0,255 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fc_event.c:66 + if (fc_event_handlers[event] != NULL) { +1c000e54 slli a4,a0,0x2 +1c000e58 add a5,a5,a4 +1c000e5a lw a4,0(a5) +1c000e5c beqz a4,1c000e62 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fc_event.c:67 + fc_event_handlers[event]((void *)event); +1c000e5e lw a5,0(a5) +1c000e60 jr a5 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fc_event.c:69 + } +} +1c000e62 ret +memcpy(): +1c000e64 mv t1,a0 +1c000e66 beqz a2,1c000e78 +1c000e68 lb t2,0(a1) +1c000e6c sb t2,0(t1) +1c000e70 addi a2,a2,-1 +1c000e72 addi t1,t1,1 +1c000e74 addi a1,a1,1 +1c000e76 bnez a2,1c000e68 +1c000e78 ret +memset(): +1c000e7a mv t1,a0 +1c000e7c beqz a2,1c000e88 +1c000e7e sb a1,0(t1) +1c000e82 addi a2,a2,-1 +1c000e84 addi t1,t1,1 +1c000e86 bnez a2,1c000e7e +1c000e88 ret +__clzsi2(): +/scratch/balasr/riscv-gnu-upstream/build-gcc-newlib-stage2/riscv32-unknown-elf/rv32imac/ilp32/libgcc/../../../../.././riscv-gcc/libgcc/libgcc2.c:710 +1c000e8a <__clzsi2> lui a5,0x10 +1c000e8c <__clzsi2+0x2> bgeu a0,a5,1c000eb8 <__clzsi2+0x2e> +/scratch/balasr/riscv-gnu-upstream/build-gcc-newlib-stage2/riscv32-unknown-elf/rv32imac/ilp32/libgcc/../../../../.././riscv-gcc/libgcc/libgcc2.c:710 (discriminator 3) +1c000e90 <__clzsi2+0x6> li a5,255 +1c000e94 <__clzsi2+0xa> sltu a5,a5,a0 +1c000e98 <__clzsi2+0xe> slli a5,a5,0x3 +/scratch/balasr/riscv-gnu-upstream/build-gcc-newlib-stage2/riscv32-unknown-elf/rv32imac/ilp32/libgcc/../../../../.././riscv-gcc/libgcc/libgcc2.c:710 (discriminator 14) +1c000e9a <__clzsi2+0x10> lui a4,0x1c009 +1c000e9e <__clzsi2+0x14> li a3,32 +1c000ea2 <__clzsi2+0x18> sub a3,a3,a5 +1c000ea4 <__clzsi2+0x1a> srl a0,a0,a5 +1c000ea8 <__clzsi2+0x1e> addi a5,a4,-1324 # 1c008ad4 <__clz_tab> +1c000eac <__clzsi2+0x22> add a0,a0,a5 +1c000eae <__clzsi2+0x24> lbu a0,0(a0) +/scratch/balasr/riscv-gnu-upstream/build-gcc-newlib-stage2/riscv32-unknown-elf/rv32imac/ilp32/libgcc/../../../../.././riscv-gcc/libgcc/libgcc2.c:713 (discriminator 14) +1c000eb2 <__clzsi2+0x28> sub a0,a3,a0 +1c000eb6 <__clzsi2+0x2c> ret +/scratch/balasr/riscv-gnu-upstream/build-gcc-newlib-stage2/riscv32-unknown-elf/rv32imac/ilp32/libgcc/../../../../.././riscv-gcc/libgcc/libgcc2.c:710 (discriminator 4) +1c000eb8 <__clzsi2+0x2e> lui a4,0x1000 +1c000ebc <__clzsi2+0x32> li a5,16 +1c000ebe <__clzsi2+0x34> bltu a0,a4,1c000e9a <__clzsi2+0x10> +/scratch/balasr/riscv-gnu-upstream/build-gcc-newlib-stage2/riscv32-unknown-elf/rv32imac/ilp32/libgcc/../../../../.././riscv-gcc/libgcc/libgcc2.c:710 +1c000ec2 <__clzsi2+0x38> li a5,24 +1c000ec4 <__clzsi2+0x3a> j 1c000e9a <__clzsi2+0x10> +vListInitialise(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:42 +void vListInitialise( List_t * const pxList ) +{ + /* The list structure contains a list item which is used to mark the + end of the list. To initialise the list the list end is inserted + as the only list entry. */ + pxList->pxIndex = ( ListItem_t * ) &( pxList->xListEnd ); /*lint !e826 !e740 !e9087 The mini list structure is used as the list end to save RAM. This is checked and valid. */ +1c000ec6 addi a5,a0,8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:46 + + /* The list end value is the highest possible value in the list to + ensure it remains at the end of the list. */ + pxList->xListEnd.xItemValue = portMAX_DELAY; +1c000eca li a4,-1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:42 + pxList->pxIndex = ( ListItem_t * ) &( pxList->xListEnd ); /*lint !e826 !e740 !e9087 The mini list structure is used as the list end to save RAM. This is checked and valid. */ +1c000ecc sw a5,4(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:46 + pxList->xListEnd.xItemValue = portMAX_DELAY; +1c000ece sw a4,8(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:50 + + /* The list end next and previous pointers point to itself so we know + when the list is empty. */ + pxList->xListEnd.pxNext = ( ListItem_t * ) &( pxList->xListEnd ); /*lint !e826 !e740 !e9087 The mini list structure is used as the list end to save RAM. This is checked and valid. */ +1c000ed0 sw a5,12(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:51 + pxList->xListEnd.pxPrevious = ( ListItem_t * ) &( pxList->xListEnd );/*lint !e826 !e740 !e9087 The mini list structure is used as the list end to save RAM. This is checked and valid. */ +1c000ed2 sw a5,16(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:53 + + pxList->uxNumberOfItems = ( UBaseType_t ) 0U; +1c000ed4 sw zero,0(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:59 + + /* Write known values into the list if + configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES is set to 1. */ + listSET_LIST_INTEGRITY_CHECK_1_VALUE( pxList ); + listSET_LIST_INTEGRITY_CHECK_2_VALUE( pxList ); +} +1c000ed8 ret +vListInitialiseItem(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:65 +/*-----------------------------------------------------------*/ + +void vListInitialiseItem( ListItem_t * const pxItem ) +{ + /* Make sure the list item is not recorded as being on a list. */ + pxItem->pxContainer = NULL; +1c000eda sw zero,16(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:71 + + /* Write known values into the list item if + configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES is set to 1. */ + listSET_FIRST_LIST_ITEM_INTEGRITY_CHECK_VALUE( pxItem ); + listSET_SECOND_LIST_ITEM_INTEGRITY_CHECK_VALUE( pxItem ); +} +1c000ede ret +vListInsertEnd(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:76 +/*-----------------------------------------------------------*/ + +void vListInsertEnd( List_t * const pxList, ListItem_t * const pxNewListItem ) +{ +ListItem_t * const pxIndex = pxList->pxIndex; +1c000ee0 lw a5,4(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:88 + + /* Insert a new list item into pxList, but rather than sort the list, + makes the new list item the last item to be removed by a call to + listGET_OWNER_OF_NEXT_ENTRY(). */ + pxNewListItem->pxNext = pxIndex; + pxNewListItem->pxPrevious = pxIndex->pxPrevious; +1c000ee2 lw a4,8(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:87 + pxNewListItem->pxNext = pxIndex; +1c000ee4 sw a5,4(a1) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:88 + pxNewListItem->pxPrevious = pxIndex->pxPrevious; +1c000ee6 sw a4,8(a1) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:93 + + /* Only used during decision coverage testing. */ + mtCOVERAGE_TEST_DELAY(); + + pxIndex->pxPrevious->pxNext = pxNewListItem; +1c000ee8 lw a4,8(a5) +1c000eea sw a1,4(a4) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:94 + pxIndex->pxPrevious = pxNewListItem; +1c000eec sw a1,8(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:99 + + /* Remember which list the item is in. */ + pxNewListItem->pxContainer = pxList; + + ( pxList->uxNumberOfItems )++; +1c000eee lw a5,0(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:97 + pxNewListItem->pxContainer = pxList; +1c000ef0 sw a0,16(a1) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:99 + ( pxList->uxNumberOfItems )++; +1c000ef2 addi a5,a5,1 +1c000ef4 sw a5,0(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:100 +} +1c000ef6 ret +vListInsert(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:106 +/*-----------------------------------------------------------*/ + +void vListInsert( List_t * const pxList, ListItem_t * const pxNewListItem ) +{ +ListItem_t *pxIterator; +const TickType_t xValueOfInsertion = pxNewListItem->xItemValue; +1c000ef8 lw a3,0(a1) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:122 + new list item should be placed after it. This ensures that TCBs which are + stored in ready lists (all of which have the same xItemValue value) get a + share of the CPU. However, if the xItemValue is the same as the back marker + the iteration loop below will not end. Therefore the value is checked + first, and the algorithm slightly modified if necessary. */ + if( xValueOfInsertion == portMAX_DELAY ) +1c000efa li a5,-1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:150 + 4) Using a queue or semaphore before it has been initialised or + before the scheduler has been started (are interrupts firing + before vTaskStartScheduler() has been called?). + **********************************************************************/ + + for( pxIterator = ( ListItem_t * ) &( pxList->xListEnd ); pxIterator->pxNext->xItemValue <= xValueOfInsertion; pxIterator = pxIterator->pxNext ) /*lint !e826 !e740 !e9087 The mini list structure is used as the list end to save RAM. This is checked and valid. *//*lint !e440 The iterator moves to a different value, not xValueOfInsertion. */ +1c000efc addi a4,a0,8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:122 + if( xValueOfInsertion == portMAX_DELAY ) +1c000f00 bne a3,a5,1c000f1a +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:124 + pxIterator = pxList->xListEnd.pxPrevious; +1c000f04 lw a5,16(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:157 + /* There is nothing to do here, just iterating to the wanted + insertion position. */ + } + } + + pxNewListItem->pxNext = pxIterator->pxNext; +1c000f06 lw a4,4(a5) +1c000f08 sw a4,4(a1) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:158 + pxNewListItem->pxNext->pxPrevious = pxNewListItem; +1c000f0a sw a1,8(a4) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:159 + pxNewListItem->pxPrevious = pxIterator; +1c000f0c sw a5,8(a1) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:160 + pxIterator->pxNext = pxNewListItem; +1c000f0e sw a1,4(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:166 + + /* Remember which list the item is in. This allows fast removal of the + item later. */ + pxNewListItem->pxContainer = pxList; + + ( pxList->uxNumberOfItems )++; +1c000f10 lw a5,0(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:164 + pxNewListItem->pxContainer = pxList; +1c000f12 sw a0,16(a1) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:166 + ( pxList->uxNumberOfItems )++; +1c000f14 addi a5,a5,1 +1c000f16 sw a5,0(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:167 +} +1c000f18 ret +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:150 (discriminator 1) + for( pxIterator = ( ListItem_t * ) &( pxList->xListEnd ); pxIterator->pxNext->xItemValue <= xValueOfInsertion; pxIterator = pxIterator->pxNext ) /*lint !e826 !e740 !e9087 The mini list structure is used as the list end to save RAM. This is checked and valid. *//*lint !e440 The iterator moves to a different value, not xValueOfInsertion. */ +1c000f1a mv a5,a4 +1c000f1c lw a4,4(a4) +1c000f1e lw a2,0(a4) +1c000f20 bgeu a3,a2,1c000f1a +1c000f24 j 1c000f06 +uxListRemove(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:176 +{ +/* The list item knows which list it is in. Obtain the list from the list +item. */ +List_t * const pxList = pxItemToRemove->pxContainer; + + pxItemToRemove->pxNext->pxPrevious = pxItemToRemove->pxPrevious; +1c000f26 lw a3,4(a0) +1c000f28 lw a4,8(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:174 +List_t * const pxList = pxItemToRemove->pxContainer; +1c000f2a lw a5,16(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:176 + pxItemToRemove->pxNext->pxPrevious = pxItemToRemove->pxPrevious; +1c000f2c sw a4,8(a3) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:177 + pxItemToRemove->pxPrevious->pxNext = pxItemToRemove->pxNext; +1c000f2e sw a3,4(a4) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:183 + + /* Only used during decision coverage testing. */ + mtCOVERAGE_TEST_DELAY(); + + /* Make sure the index is left pointing to a valid item. */ + if( pxList->pxIndex == pxItemToRemove ) +1c000f30 lw a3,4(a5) +1c000f32 bne a3,a0,1c000f38 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:185 + { + pxList->pxIndex = pxItemToRemove->pxPrevious; +1c000f36 sw a4,4(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:193 + { + mtCOVERAGE_TEST_MARKER(); + } + + pxItemToRemove->pxContainer = NULL; + ( pxList->uxNumberOfItems )--; +1c000f38 lw a4,0(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:192 + pxItemToRemove->pxContainer = NULL; +1c000f3a sw zero,16(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:193 + ( pxList->uxNumberOfItems )--; +1c000f3e addi a4,a4,-1 +1c000f40 sw a4,0(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:195 + + return pxList->uxNumberOfItems; +1c000f42 lw a0,0(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/list.c:196 +} +1c000f44 ret +prvIsQueueEmpty(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2292 + taskEXIT_CRITICAL(); +} +/*-----------------------------------------------------------*/ + +static BaseType_t prvIsQueueEmpty( const Queue_t *pxQueue ) +{ +1c000f46 addi sp,sp,-16 +1c000f48 sw s0,8(sp) +1c000f4a mv s0,a0 +1c000f4c sw ra,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2295 +BaseType_t xReturn; + + taskENTER_CRITICAL(); +1c000f4e jal ra,1c00200c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2297 + { + if( pxQueue->uxMessagesWaiting == ( UBaseType_t ) 0 ) +1c000f52 lw s0,56(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2306 + else + { + xReturn = pdFALSE; + } + } + taskEXIT_CRITICAL(); +1c000f54 jal ra,1c002026 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2309 + + return xReturn; +} +1c000f58 lw ra,12(sp) +1c000f5a seqz a0,s0 +1c000f5e lw s0,8(sp) +1c000f60 addi sp,sp,16 +1c000f62 ret +prvCopyDataToQueue(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2075 +{ +1c000f64 addi sp,sp,-16 +1c000f66 sw s1,4(sp) +1c000f68 mv s1,a2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2083 + if( pxQueue->uxItemSize == ( UBaseType_t ) 0 ) +1c000f6a lw a2,64(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2075 +{ +1c000f6c sw s2,0(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2081 + uxMessagesWaiting = pxQueue->uxMessagesWaiting; +1c000f6e lw s2,56(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2075 +{ +1c000f72 sw s0,8(sp) +1c000f74 sw ra,12(sp) +1c000f76 mv s0,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2083 + if( pxQueue->uxItemSize == ( UBaseType_t ) 0 ) +1c000f78 bnez a2,1c000fa0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2087 + if( pxQueue->uxQueueType == queueQUEUE_IS_MUTEX ) +1c000f7a lw a5,0(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2076 +BaseType_t xReturn = pdFALSE; +1c000f7c li s1,0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2087 + if( pxQueue->uxQueueType == queueQUEUE_IS_MUTEX ) +1c000f7e bnez a5,1c000f8c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2090 + xReturn = xTaskPriorityDisinherit( pxQueue->u.xSemaphore.xMutexHolder ); +1c000f80 lw a0,8(a0) +1c000f82 jal ra,1c001e4c +1c000f86 mv s1,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2091 + pxQueue->u.xSemaphore.xMutexHolder = NULL; +1c000f88 sw zero,8(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2147 + pxQueue->uxMessagesWaiting = uxMessagesWaiting + ( UBaseType_t ) 1; +1c000f8c addi s2,s2,1 +1c000f8e sw s2,56(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2150 +} +1c000f92 lw ra,12(sp) +1c000f94 lw s0,8(sp) +1c000f96 lw s2,0(sp) +1c000f98 mv a0,s1 +1c000f9a lw s1,4(sp) +1c000f9c addi sp,sp,16 +1c000f9e ret +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2100 + else if( xPosition == queueSEND_TO_BACK ) +1c000fa0 bnez s1,1c000fba +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2102 + ( void ) memcpy( ( void * ) pxQueue->pcWriteTo, pvItemToQueue, ( size_t ) pxQueue->uxItemSize ); /*lint !e961 !e418 !e9087 MISRA exception as the casts are only redundant for some ports, plus previous logic ensures a null pointer can only be passed to memcpy() if the copy size is 0. Cast to void required by function signature and safe as no alignment requirement and copy length specified in bytes. */ +1c000fa2 lw a0,4(a0) +1c000fa4 jal 1c000e64 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2103 + pxQueue->pcWriteTo += pxQueue->uxItemSize; /*lint !e9016 Pointer arithmetic on char types ok, especially in this use case where it is the clearest way of conveying intent. */ +1c000fa6 lw a5,4(s0) +1c000fa8 lw a4,64(s0) +1c000faa add a5,a5,a4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2104 + if( pxQueue->pcWriteTo >= pxQueue->u.xQueue.pcTail ) /*lint !e946 MISRA exception justified as comparison of pointers is the cleanest solution. */ +1c000fac lw a4,8(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2103 + pxQueue->pcWriteTo += pxQueue->uxItemSize; /*lint !e9016 Pointer arithmetic on char types ok, especially in this use case where it is the clearest way of conveying intent. */ +1c000fae sw a5,4(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2104 + if( pxQueue->pcWriteTo >= pxQueue->u.xQueue.pcTail ) /*lint !e946 MISRA exception justified as comparison of pointers is the cleanest solution. */ +1c000fb0 bltu a5,a4,1c000f8c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2106 + pxQueue->pcWriteTo = pxQueue->pcHead; +1c000fb4 lw a5,0(s0) +1c000fb6 sw a5,4(s0) +1c000fb8 j 1c000f8c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2115 + ( void ) memcpy( ( void * ) pxQueue->u.xQueue.pcReadFrom, pvItemToQueue, ( size_t ) pxQueue->uxItemSize ); /*lint !e961 !e9087 !e418 MISRA exception as the casts are only redundant for some ports. Cast to void required by function signature and safe as no alignment requirement and copy length specified in bytes. Assert checks null pointer only used when length is 0. */ +1c000fba lw a0,12(a0) +1c000fbc jal 1c000e64 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2116 + pxQueue->u.xQueue.pcReadFrom -= pxQueue->uxItemSize; +1c000fbe lw a4,64(s0) +1c000fc0 lw a5,12(s0) +1c000fc2 neg a3,a4 +1c000fc6 sub a5,a5,a4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2117 + if( pxQueue->u.xQueue.pcReadFrom < pxQueue->pcHead ) /*lint !e946 MISRA exception justified as comparison of pointers is the cleanest solution. */ +1c000fc8 lw a4,0(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2116 + pxQueue->u.xQueue.pcReadFrom -= pxQueue->uxItemSize; +1c000fca sw a5,12(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2117 + if( pxQueue->u.xQueue.pcReadFrom < pxQueue->pcHead ) /*lint !e946 MISRA exception justified as comparison of pointers is the cleanest solution. */ +1c000fcc bgeu a5,a4,1c000fd6 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2119 + pxQueue->u.xQueue.pcReadFrom = ( pxQueue->u.xQueue.pcTail - pxQueue->uxItemSize ); +1c000fd0 lw a5,8(s0) +1c000fd2 add a5,a5,a3 +1c000fd4 sw a5,12(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2126 + if( xPosition == queueOVERWRITE ) +1c000fd6 li a5,2 +1c000fd8 bne s1,a5,1c000fe6 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2076 +BaseType_t xReturn = pdFALSE; +1c000fdc li s1,0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2128 + if( uxMessagesWaiting > ( UBaseType_t ) 0 ) +1c000fde beqz s2,1c000f8c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2134 + --uxMessagesWaiting; +1c000fe2 addi s2,s2,-1 +1c000fe4 j 1c000f8c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2076 +BaseType_t xReturn = pdFALSE; +1c000fe6 li s1,0 +1c000fe8 j 1c000f8c +prvCopyDataFromQueue(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2154 +{ +1c000fea mv a5,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2155 + if( pxQueue->uxItemSize != ( UBaseType_t ) 0 ) +1c000fec lw a2,64(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2154 +{ +1c000fee mv a0,a1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2155 + if( pxQueue->uxItemSize != ( UBaseType_t ) 0 ) +1c000ff0 beqz a2,1c001006 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2157 + pxQueue->u.xQueue.pcReadFrom += pxQueue->uxItemSize; /*lint !e9016 Pointer arithmetic on char types ok, especially in this use case where it is the clearest way of conveying intent. */ +1c000ff2 lw a4,12(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2158 + if( pxQueue->u.xQueue.pcReadFrom >= pxQueue->u.xQueue.pcTail ) /*lint !e946 MISRA exception justified as use of the relational operator is the cleanest solutions. */ +1c000ff4 lw a3,8(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2157 + pxQueue->u.xQueue.pcReadFrom += pxQueue->uxItemSize; /*lint !e9016 Pointer arithmetic on char types ok, especially in this use case where it is the clearest way of conveying intent. */ +1c000ff6 add a4,a4,a2 +1c000ff8 sw a4,12(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2158 + if( pxQueue->u.xQueue.pcReadFrom >= pxQueue->u.xQueue.pcTail ) /*lint !e946 MISRA exception justified as use of the relational operator is the cleanest solutions. */ +1c000ffa bltu a4,a3,1c001002 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2160 + pxQueue->u.xQueue.pcReadFrom = pxQueue->pcHead; +1c000ffe lw a4,0(a5) +1c001000 sw a4,12(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2166 + ( void ) memcpy( ( void * ) pvBuffer, ( void * ) pxQueue->u.xQueue.pcReadFrom, ( size_t ) pxQueue->uxItemSize ); /*lint !e961 !e418 !e9087 MISRA exception as the casts are only redundant for some ports. Also previous logic ensures a null pointer can only be passed to memcpy() when the count is 0. Cast to void required by function signature and safe as no alignment requirement and copy length specified in bytes. */ +1c001002 lw a1,12(a5) +1c001004 j 1c000e64 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2168 +} +1c001006 ret +prvUnlockQueue(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2172 +{ +1c001008 addi sp,sp,-16 +1c00100a sw s0,8(sp) +1c00100c mv s0,a0 +1c00100e sw s1,4(sp) +1c001010 sw s2,0(sp) +1c001012 sw ra,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2179 + taskENTER_CRITICAL(); +1c001014 jal ra,1c00200c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2181 + int8_t cTxLock = pxQueue->cTxLock; +1c001018 lbu s1,69(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2234 + if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE ) +1c00101c addi s2,s0,36 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2181 + int8_t cTxLock = pxQueue->cTxLock; +1c001020 slli s1,s1,0x18 +1c001022 srai s1,s1,0x18 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2184 + while( cTxLock > queueLOCKED_UNMODIFIED ) +1c001024 bgtz s1,1c00105a +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2255 + pxQueue->cTxLock = queueUNLOCKED; +1c001028 li a5,-1 +1c00102a sb a5,69(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2257 + taskEXIT_CRITICAL(); +1c00102e jal ra,1c002026 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2260 + taskENTER_CRITICAL(); +1c001032 jal ra,1c00200c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2262 + int8_t cRxLock = pxQueue->cRxLock; +1c001036 lbu s1,68(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2268 + if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToSend ) ) != pdFALSE ) +1c00103a addi s2,s0,16 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2262 + int8_t cRxLock = pxQueue->cRxLock; +1c00103e slli s1,s1,0x18 +1c001040 srai s1,s1,0x18 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2264 + while( cRxLock > queueLOCKED_UNMODIFIED ) +1c001042 bgtz s1,1c001072 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2285 + pxQueue->cRxLock = queueUNLOCKED; +1c001046 li a5,-1 +1c001048 sb a5,68(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2288 +} +1c00104c lw s0,8(sp) +1c00104e lw ra,12(sp) +1c001050 lw s1,4(sp) +1c001052 lw s2,0(sp) +1c001054 addi sp,sp,16 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2287 + taskEXIT_CRITICAL(); +1c001056 j 1c002026 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2232 + if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) +1c00105a lw a5,36(s0) +1c00105c beqz a5,1c001028 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2234 + if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE ) +1c00105e mv a0,s2 +1c001060 jal ra,1c001cd4 +1c001064 beqz a0,1c00106a +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2238 + vTaskMissedYield(); +1c001066 jal ra,1c001d7c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2252 + --cTxLock; +1c00106a addi s1,s1,-1 +1c00106c slli s1,s1,0x18 +1c00106e srai s1,s1,0x18 +1c001070 j 1c001024 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2266 + if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToSend ) ) == pdFALSE ) +1c001072 lw a5,16(s0) +1c001074 beqz a5,1c001046 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2268 + if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToSend ) ) != pdFALSE ) +1c001076 mv a0,s2 +1c001078 jal ra,1c001cd4 +1c00107c beqz a0,1c001082 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2270 + vTaskMissedYield(); +1c00107e jal ra,1c001d7c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2277 + --cRxLock; +1c001082 addi s1,s1,-1 +1c001084 slli s1,s1,0x18 +1c001086 srai s1,s1,0x18 +1c001088 j 1c001042 +xQueueGenericReset(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:256 +{ +1c00108a addi sp,sp,-16 +1c00108c sw ra,12(sp) +1c00108e sw s0,8(sp) +1c001090 sw s1,4(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:259 + configASSERT( pxQueue ); +1c001092 bnez a0,1c0010b4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:259 (discriminator 1) +1c001094 lui a3,0x1c008 +1c001098 lui a2,0x1c008 +1c00109c lui a0,0x1c008 +1c0010a0 mv a3,a3 +1c0010a4 addi a2,a2,912 # 1c008390 <__func__.19> +1c0010a8 li a1,259 +1c0010ac addi a0,a0,8 # 1c008008 <__l2_priv0_end+0x3208> +1c0010b0 jal ra,1c0037c8 <__assert_func> +1c0010b4 mv s0,a0 +1c0010b6 mv s1,a1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:261 + taskENTER_CRITICAL(); +1c0010b8 jal ra,1c00200c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:263 + pxQueue->u.xQueue.pcTail = pxQueue->pcHead + ( pxQueue->uxLength * pxQueue->uxItemSize ); /*lint !e9016 Pointer arithmetic allowed on char types, especially when it assists conveying intent. */ +1c0010bc lw a3,64(s0) +1c0010be lw a5,60(s0) +1c0010c0 lw a4,0(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:264 + pxQueue->uxMessagesWaiting = ( UBaseType_t ) 0U; +1c0010c2 sw zero,56(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:263 + pxQueue->u.xQueue.pcTail = pxQueue->pcHead + ( pxQueue->uxLength * pxQueue->uxItemSize ); /*lint !e9016 Pointer arithmetic allowed on char types, especially when it assists conveying intent. */ +1c0010c6 mul a5,a3,a5 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:265 + pxQueue->pcWriteTo = pxQueue->pcHead; +1c0010ca sw a4,4(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:263 + pxQueue->u.xQueue.pcTail = pxQueue->pcHead + ( pxQueue->uxLength * pxQueue->uxItemSize ); /*lint !e9016 Pointer arithmetic allowed on char types, especially when it assists conveying intent. */ +1c0010cc add a2,a4,a5 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:266 + pxQueue->u.xQueue.pcReadFrom = pxQueue->pcHead + ( ( pxQueue->uxLength - 1U ) * pxQueue->uxItemSize ); /*lint !e9016 Pointer arithmetic allowed on char types, especially when it assists conveying intent. */ +1c0010d0 sub a5,a5,a3 +1c0010d2 add a5,a5,a4 +1c0010d4 sw a5,12(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:267 + pxQueue->cRxLock = queueUNLOCKED; +1c0010d6 li a5,-1 +1c0010d8 sb a5,68(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:263 + pxQueue->u.xQueue.pcTail = pxQueue->pcHead + ( pxQueue->uxLength * pxQueue->uxItemSize ); /*lint !e9016 Pointer arithmetic allowed on char types, especially when it assists conveying intent. */ +1c0010dc sw a2,8(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:268 + pxQueue->cTxLock = queueUNLOCKED; +1c0010de sb a5,69(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:270 + if( xNewQueue == pdFALSE ) +1c0010e2 bnez s1,1c001106 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:277 + if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToSend ) ) == pdFALSE ) +1c0010e4 lw a5,16(s0) +1c0010e6 beqz a5,1c0010f6 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:279 + if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToSend ) ) != pdFALSE ) +1c0010e8 addi a0,s0,16 +1c0010ec jal ra,1c001cd4 +1c0010f0 beqz a0,1c0010f6 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:281 + queueYIELD_IF_USING_PREEMPTION(); +1c0010f2 ecall +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:300 + taskEXIT_CRITICAL(); +1c0010f6 jal ra,1c002026 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:305 +} +1c0010fa lw ra,12(sp) +1c0010fc lw s0,8(sp) +1c0010fe lw s1,4(sp) +1c001100 li a0,1 +1c001102 addi sp,sp,16 +1c001104 ret +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:296 + vListInitialise( &( pxQueue->xTasksWaitingToSend ) ); +1c001106 addi a0,s0,16 +1c00110a jal 1c000ec6 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:297 + vListInitialise( &( pxQueue->xTasksWaitingToReceive ) ); +1c00110c addi a0,s0,36 +1c001110 jal 1c000ec6 +1c001112 j 1c0010f6 +xQueueGenericCreate(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:369 + { +1c001114 addi sp,sp,-32 +1c001116 sw ra,28(sp) +1c001118 sw s0,24(sp) +1c00111a sw s1,20(sp) +1c00111c sw s2,16(sp) +1c00111e sw s3,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:374 + configASSERT( uxQueueLength > ( UBaseType_t ) 0 ); +1c001120 bnez a0,1c001142 +1c001122 lui a3,0x1c008 +1c001126 lui a2,0x1c008 +1c00112a lui a0,0x1c008 +1c00112e addi a3,a3,76 # 1c00804c <__l2_priv0_end+0x324c> +1c001132 addi a2,a2,892 # 1c00837c <__func__.18> +1c001136 li a1,374 +1c00113a addi a0,a0,8 # 1c008008 <__l2_priv0_end+0x3208> +1c00113e jal ra,1c0037c8 <__assert_func> +1c001142 mv s2,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:379 + xQueueSizeInBytes = ( size_t ) ( uxQueueLength * uxItemSize ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ +1c001144 mul a0,a0,a1 +1c001148 mv s1,a1 +1c00114a mv s3,a2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:390 + pxNewQueue = ( Queue_t * ) pvPortMalloc( sizeof( Queue_t ) + xQueueSizeInBytes ); /*lint !e9087 !e9079 see comment above. */ +1c00114c addi a0,a0,80 +1c001150 jal ra,1c00296a +1c001154 mv s0,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:392 + if( pxNewQueue != NULL ) +1c001156 beqz a0,1c001172 +prvInitialiseNewQueue(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:428 + if( uxItemSize == ( UBaseType_t ) 0 ) +1c001158 mv a5,a0 +1c00115a beqz s1,1c001160 +xQueueGenericCreate(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:397 + pucQueueStorage += sizeof( Queue_t ); /*lint !e9016 Pointer arithmetic allowed on char types, especially when it assists conveying intent. */ +1c00115c addi a5,a0,80 +prvInitialiseNewQueue(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:439 + pxNewQueue->pcHead = ( int8_t * ) pucQueueStorage; +1c001160 sw a5,0(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:444 + pxNewQueue->uxLength = uxQueueLength; +1c001162 sw s2,60(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:445 + pxNewQueue->uxItemSize = uxItemSize; +1c001166 sw s1,64(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:446 + ( void ) xQueueGenericReset( pxNewQueue, pdTRUE ); +1c001168 li a1,1 +1c00116a mv a0,s0 +1c00116c jal 1c00108a +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:450 + pxNewQueue->ucQueueType = ucQueueType; +1c00116e sb s3,76(s0) +xQueueGenericCreate(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:417 + } +1c001172 lw ra,28(sp) +1c001174 mv a0,s0 +1c001176 lw s0,24(sp) +1c001178 lw s1,20(sp) +1c00117a lw s2,16(sp) +1c00117c lw s3,12(sp) +1c00117e addi sp,sp,32 +1c001180 ret +xQueueCreateCountingSemaphore(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:715 + { +1c001182 addi sp,sp,-16 +1c001184 sw ra,12(sp) +1c001186 sw s0,8(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:718 + configASSERT( uxMaxCount != 0 ); +1c001188 bnez a0,1c0011aa +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:718 (discriminator 1) +1c00118a lui a3,0x1c008 +1c00118e lui a2,0x1c008 +1c001192 addi a3,a3,112 # 1c008070 <__l2_priv0_end+0x3270> +1c001196 addi a2,a2,860 # 1c00835c <__func__.14> +1c00119a li a1,718 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:719 (discriminator 1) + configASSERT( uxInitialCount <= uxMaxCount ); +1c00119e lui a0,0x1c008 +1c0011a2 addi a0,a0,8 # 1c008008 <__l2_priv0_end+0x3208> +1c0011a6 jal ra,1c0037c8 <__assert_func> +1c0011aa mv s0,a1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:719 +1c0011ac bgeu a0,a1,1c0011c6 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:719 (discriminator 1) +1c0011b0 lui a3,0x1c008 +1c0011b4 lui a2,0x1c008 +1c0011b8 addi a3,a3,128 # 1c008080 <__l2_priv0_end+0x3280> +1c0011bc addi a2,a2,860 # 1c00835c <__func__.14> +1c0011c0 li a1,719 +1c0011c4 j 1c00119e +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:721 + xHandle = xQueueGenericCreate( uxMaxCount, queueSEMAPHORE_QUEUE_ITEM_LENGTH, queueQUEUE_TYPE_COUNTING_SEMAPHORE ); +1c0011c6 li a2,2 +1c0011c8 li a1,0 +1c0011ca jal 1c001114 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:723 + if( xHandle != NULL ) +1c0011cc beqz a0,1c0011d0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:725 + ( ( Queue_t * ) xHandle )->uxMessagesWaiting = uxInitialCount; +1c0011ce sw s0,56(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:735 + } +1c0011d0 lw ra,12(sp) +1c0011d2 lw s0,8(sp) +1c0011d4 addi sp,sp,16 +1c0011d6 ret +xQueueGenericSend(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:741 +{ +1c0011d8 addi sp,sp,-64 +1c0011da sw ra,60(sp) +1c0011dc sw s0,56(sp) +1c0011de sw s1,52(sp) +1c0011e0 sw s2,48(sp) +1c0011e2 sw s3,44(sp) +1c0011e4 sw s4,40(sp) +1c0011e6 sw s5,36(sp) +1c0011e8 sw s6,32(sp) +1c0011ea sw a2,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:746 + configASSERT( pxQueue ); +1c0011ec bnez a0,1c00120e +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:746 (discriminator 1) +1c0011ee lui a3,0x1c008 +1c0011f2 lui a2,0x1c008 +1c0011f6 mv a3,a3 +1c0011fa addi a2,a2,840 # 1c008348 <__func__.13> +1c0011fe li a1,746 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:747 (discriminator 2) + configASSERT( !( ( pvItemToQueue == NULL ) && ( pxQueue->uxItemSize != ( UBaseType_t ) 0U ) ) ); +1c001202 lui a0,0x1c008 +1c001206 addi a0,a0,8 # 1c008008 <__l2_priv0_end+0x3208> +1c00120a jal ra,1c0037c8 <__assert_func> +1c00120e mv s0,a0 +1c001210 mv s3,a1 +1c001212 mv s2,a3 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:747 +1c001214 bnez a1,1c001230 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:747 (discriminator 1) +1c001216 lw a5,64(a0) +1c001218 beqz a5,1c001230 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:747 (discriminator 2) +1c00121a lui a3,0x1c008 +1c00121e lui a2,0x1c008 +1c001222 addi a3,a3,160 # 1c0080a0 <__l2_priv0_end+0x32a0> +1c001226 addi a2,a2,840 # 1c008348 <__func__.13> +1c00122a li a1,747 +1c00122e j 1c001202 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:748 + configASSERT( !( ( xCopyPosition == queueOVERWRITE ) && ( pxQueue->uxLength != 1 ) ) ); +1c001230 li a5,2 +1c001232 bne s2,a5,1c001254 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:748 (discriminator 1) +1c001236 lw a4,60(s0) +1c001238 li a5,1 +1c00123a beq a4,a5,1c001254 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:748 (discriminator 2) +1c00123e lui a3,0x1c008 +1c001242 lui a2,0x1c008 +1c001246 addi a3,a3,248 # 1c0080f8 <__l2_priv0_end+0x32f8> +1c00124a addi a2,a2,840 # 1c008348 <__func__.13> +1c00124e li a1,748 +1c001252 j 1c001202 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:751 + configASSERT( !( ( xTaskGetSchedulerState() == taskSCHEDULER_SUSPENDED ) && ( xTicksToWait != 0 ) ) ); +1c001254 jal ra,1c001d84 +1c001258 mv s1,a0 +1c00125a bnez a0,1c001276 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:751 (discriminator 1) +1c00125c lw a5,12(sp) +1c00125e beqz a5,1c001278 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:751 (discriminator 2) +1c001260 lui a3,0x1c008 +1c001264 lui a2,0x1c008 +1c001268 addi a3,a3,328 # 1c008148 <__l2_priv0_end+0x3348> +1c00126c addi a2,a2,840 # 1c008348 <__func__.13> +1c001270 li a1,751 +1c001274 j 1c001202 +1c001276 li s1,0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:767 + if( ( pxQueue->uxMessagesWaiting < pxQueue->uxLength ) || ( xCopyPosition == queueOVERWRITE ) ) +1c001278 li s5,2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:903 + prvLockQueue( pxQueue ); +1c00127a li s4,-1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:911 + vTaskPlaceOnEventList( &( pxQueue->xTasksWaitingToSend ), xTicksToWait ); +1c00127c addi s6,s0,16 +1c001280 j 1c0012f4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:872 + if( xTicksToWait == ( TickType_t ) 0 ) +1c001282 lw a5,12(sp) +1c001284 bnez a5,1c00128e +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:876 + taskEXIT_CRITICAL(); +1c001286 jal ra,1c002026 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:944 + return errQUEUE_FULL; +1c00128a li a0,0 +1c00128c j 1c001324 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:883 + else if( xEntryTimeSet == pdFALSE ) +1c00128e bnez s1,1c001296 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:887 + vTaskInternalSetTimeOutState( &xTimeOut ); +1c001290 addi a0,sp,24 +1c001292 jal ra,1c001d6e +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:897 + taskEXIT_CRITICAL(); +1c001296 jal ra,1c002026 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:902 + vTaskSuspendAll(); +1c00129a jal ra,1c001a16 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:903 + prvLockQueue( pxQueue ); +1c00129e jal ra,1c00200c +1c0012a2 lbu a5,68(s0) +1c0012a6 slli a5,a5,0x18 +1c0012a8 srai a5,a5,0x18 +1c0012aa bne a5,s4,1c0012b2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:903 (discriminator 1) +1c0012ae sb zero,68(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:903 (discriminator 3) +1c0012b2 lbu a5,69(s0) +1c0012b6 slli a5,a5,0x18 +1c0012b8 srai a5,a5,0x18 +1c0012ba bne a5,s4,1c0012c2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:903 (discriminator 4) +1c0012be sb zero,69(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:903 (discriminator 6) +1c0012c2 jal ra,1c002026 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:906 (discriminator 6) + if( xTaskCheckForTimeOut( &xTimeOut, &xTicksToWait ) == pdFALSE ) +1c0012c6 addi a1,sp,12 +1c0012c8 addi a0,sp,24 +1c0012ca jal ra,1c002458 +1c0012ce bnez a0,1c00134c +prvIsQueueFull(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2335 + +static BaseType_t prvIsQueueFull( const Queue_t *pxQueue ) +{ +BaseType_t xReturn; + + taskENTER_CRITICAL(); +1c0012d0 jal ra,1c00200c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2337 + { + if( pxQueue->uxMessagesWaiting == pxQueue->uxLength ) +1c0012d4 lw a4,56(s0) +1c0012d6 lw a5,60(s0) +1c0012d8 bne a4,a5,1c001338 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2346 + else + { + xReturn = pdFALSE; + } + } + taskEXIT_CRITICAL(); +1c0012dc jal ra,1c002026 +xQueueGenericSend(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:911 + vTaskPlaceOnEventList( &( pxQueue->xTasksWaitingToSend ), xTicksToWait ); +1c0012e0 lw a1,12(sp) +1c0012e2 mv a0,s6 +1c0012e4 jal ra,1c001c46 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:918 + prvUnlockQueue( pxQueue ); +1c0012e8 mv a0,s0 +1c0012ea jal 1c001008 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:925 + if( xTaskResumeAll() == pdFALSE ) +1c0012ec jal ra,1c00234c +1c0012f0 beqz a0,1c001346 +1c0012f2 li s1,1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:761 + taskENTER_CRITICAL(); +1c0012f4 jal ra,1c00200c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:767 + if( ( pxQueue->uxMessagesWaiting < pxQueue->uxLength ) || ( xCopyPosition == queueOVERWRITE ) ) +1c0012f8 lw a4,56(s0) +1c0012fa lw a5,60(s0) +1c0012fc bltu a4,a5,1c001304 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:767 (discriminator 1) +1c001300 bne s2,s5,1c001282 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:833 + xYieldRequired = prvCopyDataToQueue( pxQueue, pvItemToQueue, xCopyPosition ); +1c001304 mv a2,s2 +1c001306 mv a1,s3 +1c001308 mv a0,s0 +1c00130a jal 1c000f64 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:837 + if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) +1c00130c lw a5,36(s0) +1c00130e beqz a5,1c001318 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:839 + if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE ) +1c001310 addi a0,s0,36 +1c001314 jal ra,1c001cd4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:852 + else if( xYieldRequired != pdFALSE ) +1c001318 beqz a0,1c00131e +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:858 + queueYIELD_IF_USING_PREEMPTION(); +1c00131a ecall +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:867 + taskEXIT_CRITICAL(); +1c00131e jal ra,1c002026 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:868 + return pdPASS; +1c001322 li a0,1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:947 +} +1c001324 lw ra,60(sp) +1c001326 lw s0,56(sp) +1c001328 lw s1,52(sp) +1c00132a lw s2,48(sp) +1c00132c lw s3,44(sp) +1c00132e lw s4,40(sp) +1c001330 lw s5,36(sp) +1c001332 lw s6,32(sp) +1c001334 addi sp,sp,64 +1c001336 ret +prvIsQueueFull(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2346 + taskEXIT_CRITICAL(); +1c001338 jal ra,1c002026 +xQueueGenericSend(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:933 + prvUnlockQueue( pxQueue ); +1c00133c mv a0,s0 +1c00133e jal 1c001008 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:934 + ( void ) xTaskResumeAll(); +1c001340 jal ra,1c00234c +1c001344 j 1c0012f2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:927 + portYIELD_WITHIN_API(); +1c001346 ecall +1c00134a j 1c0012f2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:940 + prvUnlockQueue( pxQueue ); +1c00134c mv a0,s0 +1c00134e jal 1c001008 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:941 + ( void ) xTaskResumeAll(); +1c001350 jal ra,1c00234c +1c001354 j 1c00128a +xQueueGenericSendFromISR(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:951 +{ +1c001356 addi sp,sp,-32 +1c001358 sw ra,28(sp) +1c00135a sw s0,24(sp) +1c00135c sw s1,20(sp) +1c00135e sw s2,16(sp) +1c001360 sw s3,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:956 + configASSERT( pxQueue ); +1c001362 bnez a0,1c001384 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:956 (discriminator 1) +1c001364 lui a3,0x1c008 +1c001368 lui a2,0x1c008 +1c00136c mv a3,a3 +1c001370 addi a2,a2,812 # 1c00832c <__func__.12> +1c001374 li a1,956 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:957 (discriminator 2) + configASSERT( !( ( pvItemToQueue == NULL ) && ( pxQueue->uxItemSize != ( UBaseType_t ) 0U ) ) ); +1c001378 lui a0,0x1c008 +1c00137c addi a0,a0,8 # 1c008008 <__l2_priv0_end+0x3208> +1c001380 jal ra,1c0037c8 <__assert_func> +1c001384 mv s2,a2 +1c001386 mv s0,a0 +1c001388 mv a2,a3 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:957 +1c00138a bnez a1,1c0013a6 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:957 (discriminator 1) +1c00138c lw a5,64(a0) +1c00138e beqz a5,1c0013a6 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:957 (discriminator 2) +1c001390 lui a3,0x1c008 +1c001394 lui a2,0x1c008 +1c001398 addi a3,a3,160 # 1c0080a0 <__l2_priv0_end+0x32a0> +1c00139c addi a2,a2,812 # 1c00832c <__func__.12> +1c0013a0 li a1,957 +1c0013a4 j 1c001378 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:958 + configASSERT( !( ( xCopyPosition == queueOVERWRITE ) && ( pxQueue->uxLength != 1 ) ) ); +1c0013a6 li a4,2 +1c0013a8 lw a5,60(s0) +1c0013aa bne a2,a4,1c0013ca +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:958 (discriminator 1) +1c0013ae li a4,1 +1c0013b0 beq a5,a4,1c0013ca +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:958 (discriminator 2) +1c0013b4 lui a3,0x1c008 +1c0013b8 lui a2,0x1c008 +1c0013bc addi a3,a3,248 # 1c0080f8 <__l2_priv0_end+0x32f8> +1c0013c0 addi a2,a2,812 # 1c00832c <__func__.12> +1c0013c4 li a1,958 +1c0013c8 j 1c001378 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:983 + if( ( pxQueue->uxMessagesWaiting < pxQueue->uxLength ) || ( xCopyPosition == queueOVERWRITE ) ) +1c0013ca lw a4,56(s0) +1c0013cc bltu a4,a5,1c0013d8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:983 (discriminator 1) +1c0013d0 li a5,2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1103 (discriminator 1) + xReturn = errQUEUE_FULL; +1c0013d2 li a0,0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:983 (discriminator 1) + if( ( pxQueue->uxMessagesWaiting < pxQueue->uxLength ) || ( xCopyPosition == queueOVERWRITE ) ) +1c0013d4 bne a2,a5,1c0013f6 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:985 + const int8_t cTxLock = pxQueue->cTxLock; +1c0013d8 lbu s1,69(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:986 + const UBaseType_t uxPreviousMessagesWaiting = pxQueue->uxMessagesWaiting; +1c0013dc lw a5,56(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:995 + ( void ) prvCopyDataToQueue( pxQueue, pvItemToQueue, xCopyPosition ); +1c0013de mv a0,s0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:985 + const int8_t cTxLock = pxQueue->cTxLock; +1c0013e0 slli s3,s1,0x18 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:995 + ( void ) prvCopyDataToQueue( pxQueue, pvItemToQueue, xCopyPosition ); +1c0013e4 jal 1c000f64 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:985 + const int8_t cTxLock = pxQueue->cTxLock; +1c0013e6 srai s3,s3,0x18 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:999 + if( cTxLock == queueUNLOCKED ) +1c0013ea li a5,-1 +1c0013ec bne s3,a5,1c00141a +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1061 + if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) +1c0013f0 lw a5,36(s0) +1c0013f2 bnez a5,1c001404 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1098 + xReturn = pdPASS; +1c0013f4 li a0,1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1109 +} +1c0013f6 lw ra,28(sp) +1c0013f8 lw s0,24(sp) +1c0013fa lw s1,20(sp) +1c0013fc lw s2,16(sp) +1c0013fe lw s3,12(sp) +1c001400 addi sp,sp,32 +1c001402 ret +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1063 + if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE ) +1c001404 addi a0,s0,36 +1c001408 jal ra,1c001cd4 +1c00140c beqz a0,1c0013f4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1067 + if( pxHigherPriorityTaskWoken != NULL ) +1c00140e beqz s2,1c0013f4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1069 + *pxHigherPriorityTaskWoken = pdTRUE; +1c001412 li a5,1 +1c001414 sw a5,0(s2) +1c001418 j 1c0013f4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1095 + pxQueue->cTxLock = ( int8_t ) ( cTxLock + 1 ); +1c00141a addi s1,s1,1 +1c00141c slli s1,s1,0x18 +1c00141e srai s1,s1,0x18 +1c001420 sb s1,69(s0) +1c001424 j 1c0013f4 +xQueueGiveFromISR(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1113 +{ +1c001426 addi sp,sp,-16 +1c001428 sw ra,12(sp) +1c00142a sw s0,8(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1124 + configASSERT( pxQueue ); +1c00142c bnez a0,1c00144e +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1124 (discriminator 1) +1c00142e lui a3,0x1c008 +1c001432 lui a2,0x1c008 +1c001436 mv a3,a3 +1c00143a addi a2,a2,792 # 1c008318 <__func__.11> +1c00143e li a1,1124 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1128 (discriminator 1) + configASSERT( pxQueue->uxItemSize == 0 ); +1c001442 lui a0,0x1c008 +1c001446 addi a0,a0,8 # 1c008008 <__l2_priv0_end+0x3208> +1c00144a jal ra,1c0037c8 <__assert_func> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1128 +1c00144e lw a4,64(a0) +1c001450 mv a5,a0 +1c001452 beqz a4,1c00146a +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1128 (discriminator 1) +1c001454 lui a3,0x1c008 +1c001458 lui a2,0x1c008 +1c00145c addi a3,a3,412 # 1c00819c <__l2_priv0_end+0x339c> +1c001460 addi a2,a2,792 # 1c008318 <__func__.11> +1c001464 li a1,1128 +1c001468 j 1c001442 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1133 + configASSERT( !( ( pxQueue->uxQueueType == queueQUEUE_IS_MUTEX ) && ( pxQueue->u.xSemaphore.xMutexHolder != NULL ) ) ); +1c00146a lw a4,0(a0) +1c00146c mv s0,a1 +1c00146e bnez a4,1c00148a +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1133 (discriminator 1) +1c001470 lw a4,8(a0) +1c001472 beqz a4,1c00148a +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1133 (discriminator 2) +1c001474 lui a3,0x1c008 +1c001478 lui a2,0x1c008 +1c00147c addi a3,a3,440 # 1c0081b8 <__l2_priv0_end+0x33b8> +1c001480 addi a2,a2,792 # 1c008318 <__func__.11> +1c001484 li a1,1133 +1c001488 j 1c001442 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1153 + const UBaseType_t uxMessagesWaiting = pxQueue->uxMessagesWaiting; +1c00148a lw a3,56(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1158 + if( uxMessagesWaiting < pxQueue->uxLength ) +1c00148c lw a4,60(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1268 + xReturn = errQUEUE_FULL; +1c00148e li a0,0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1158 + if( uxMessagesWaiting < pxQueue->uxLength ) +1c001490 bgeu a3,a4,1c0014ae +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1160 + const int8_t cTxLock = pxQueue->cTxLock; +1c001494 lbu a4,69(a5) # 00010045 <__heap_l1_cluster_size+0x65> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1170 + pxQueue->uxMessagesWaiting = uxMessagesWaiting + ( UBaseType_t ) 1; +1c001498 addi a3,a3,1 +1c00149a sw a3,56(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1160 + const int8_t cTxLock = pxQueue->cTxLock; +1c00149c slli a2,a4,0x18 +1c0014a0 srai a2,a2,0x18 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1174 + if( cTxLock == queueUNLOCKED ) +1c0014a2 li a3,-1 +1c0014a4 bne a2,a3,1c0014c8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1229 + if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) +1c0014a8 lw a4,36(a5) +1c0014aa bnez a4,1c0014b6 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1263 + xReturn = pdPASS; +1c0014ac li a0,1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1274 +} +1c0014ae lw ra,12(sp) +1c0014b0 lw s0,8(sp) +1c0014b2 addi sp,sp,16 +1c0014b4 ret +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1231 + if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE ) +1c0014b6 addi a0,a5,36 +1c0014ba jal ra,1c001cd4 +1c0014be beqz a0,1c0014ac +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1235 + if( pxHigherPriorityTaskWoken != NULL ) +1c0014c0 beqz s0,1c0014ac +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1237 + *pxHigherPriorityTaskWoken = pdTRUE; +1c0014c2 li a5,1 +1c0014c4 sw a5,0(s0) +1c0014c6 j 1c0014ac +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1260 + pxQueue->cTxLock = ( int8_t ) ( cTxLock + 1 ); +1c0014c8 addi a4,a4,1 +1c0014ca slli a4,a4,0x18 +1c0014cc srai a4,a4,0x18 +1c0014ce sb a4,69(a5) +1c0014d2 j 1c0014ac +xQueueReceive(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1278 +{ +1c0014d4 addi sp,sp,-64 +1c0014d6 sw ra,60(sp) +1c0014d8 sw s0,56(sp) +1c0014da sw s1,52(sp) +1c0014dc sw s2,48(sp) +1c0014de sw s3,44(sp) +1c0014e0 sw s4,40(sp) +1c0014e2 sw s5,36(sp) +1c0014e4 sw a2,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1284 + configASSERT( ( pxQueue ) ); +1c0014e6 bnez a0,1c001508 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1284 (discriminator 1) +1c0014e8 lui a3,0x1c008 +1c0014ec lui a2,0x1c008 +1c0014f0 addi a3,a3,540 # 1c00821c <__l2_priv0_end+0x341c> +1c0014f4 addi a2,a2,776 # 1c008308 <__func__.10> +1c0014f8 li a1,1284 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1288 (discriminator 2) + configASSERT( !( ( ( pvBuffer ) == NULL ) && ( ( pxQueue )->uxItemSize != ( UBaseType_t ) 0U ) ) ); +1c0014fc lui a0,0x1c008 +1c001500 addi a0,a0,8 # 1c008008 <__l2_priv0_end+0x3208> +1c001504 jal ra,1c0037c8 <__assert_func> +1c001508 mv s0,a0 +1c00150a mv s2,a1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1288 +1c00150c bnez a1,1c001528 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1288 (discriminator 1) +1c00150e lw a5,64(a0) +1c001510 beqz a5,1c001528 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1288 (discriminator 2) +1c001512 lui a3,0x1c008 +1c001516 lui a2,0x1c008 +1c00151a addi a3,a3,552 # 1c008228 <__l2_priv0_end+0x3428> +1c00151e addi a2,a2,776 # 1c008308 <__func__.10> +1c001522 li a1,1288 +1c001526 j 1c0014fc +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1293 + configASSERT( !( ( xTaskGetSchedulerState() == taskSCHEDULER_SUSPENDED ) && ( xTicksToWait != 0 ) ) ); +1c001528 jal ra,1c001d84 +1c00152c mv s1,a0 +1c00152e bnez a0,1c00154a +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1293 (discriminator 1) +1c001530 lw a5,12(sp) +1c001532 beqz a5,1c00154c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1293 (discriminator 2) +1c001534 lui a3,0x1c008 +1c001538 lui a2,0x1c008 +1c00153c addi a3,a3,328 # 1c008148 <__l2_priv0_end+0x3348> +1c001540 addi a2,a2,776 # 1c008308 <__func__.10> +1c001544 li a1,1293 +1c001548 j 1c0014fc +1c00154a li s1,0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1368 + prvLockQueue( pxQueue ); +1c00154c li s4,-1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1378 + vTaskPlaceOnEventList( &( pxQueue->xTasksWaitingToReceive ), xTicksToWait ); +1c00154e addi s5,s0,36 +1c001552 j 1c0015c0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1340 + if( xTicksToWait == ( TickType_t ) 0 ) +1c001554 lw a5,12(sp) +1c001556 bnez a5,1c001560 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1344 + taskEXIT_CRITICAL(); +1c001558 jal ra,1c002026 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1407 + return errQUEUE_EMPTY; +1c00155c li a0,0 +1c00155e j 1c0015f0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1348 + else if( xEntryTimeSet == pdFALSE ) +1c001560 bnez s1,1c001568 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1352 + vTaskInternalSetTimeOutState( &xTimeOut ); +1c001562 addi a0,sp,24 +1c001564 jal ra,1c001d6e +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1362 + taskEXIT_CRITICAL(); +1c001568 jal ra,1c002026 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1367 + vTaskSuspendAll(); +1c00156c jal 1c001a16 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1368 + prvLockQueue( pxQueue ); +1c00156e jal ra,1c00200c +1c001572 lbu a5,68(s0) +1c001576 slli a5,a5,0x18 +1c001578 srai a5,a5,0x18 +1c00157a bne a5,s4,1c001582 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1368 (discriminator 1) +1c00157e sb zero,68(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1368 (discriminator 3) +1c001582 lbu a5,69(s0) +1c001586 slli a5,a5,0x18 +1c001588 srai a5,a5,0x18 +1c00158a bne a5,s4,1c001592 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1368 (discriminator 4) +1c00158e sb zero,69(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1368 (discriminator 6) +1c001592 jal ra,1c002026 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1371 (discriminator 6) + if( xTaskCheckForTimeOut( &xTimeOut, &xTicksToWait ) == pdFALSE ) +1c001596 addi a1,sp,12 +1c001598 addi a0,sp,24 +1c00159a jal ra,1c002458 +1c00159e bnez a0,1c00160c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1375 + if( prvIsQueueEmpty( pxQueue ) != pdFALSE ) +1c0015a0 mv a0,s0 +1c0015a2 jal ra,1c000f46 +1c0015a6 beqz a0,1c001602 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1378 + vTaskPlaceOnEventList( &( pxQueue->xTasksWaitingToReceive ), xTicksToWait ); +1c0015a8 lw a1,12(sp) +1c0015aa mv a0,s5 +1c0015ac jal ra,1c001c46 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1379 + prvUnlockQueue( pxQueue ); +1c0015b0 mv a0,s0 +1c0015b2 jal 1c001008 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1380 + if( xTaskResumeAll() == pdFALSE ) +1c0015b4 jal ra,1c00234c +1c0015b8 bnez a0,1c0015be +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1382 + portYIELD_WITHIN_API(); +1c0015ba ecall +1c0015be li s1,1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1303 + taskENTER_CRITICAL(); +1c0015c0 jal ra,1c00200c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1305 + const UBaseType_t uxMessagesWaiting = pxQueue->uxMessagesWaiting; +1c0015c4 lw s3,56(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1309 + if( uxMessagesWaiting > ( UBaseType_t ) 0 ) +1c0015c8 beqz s3,1c001554 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1312 + prvCopyDataFromQueue( pxQueue, pvBuffer ); +1c0015cc mv a1,s2 +1c0015ce mv a0,s0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1314 + pxQueue->uxMessagesWaiting = uxMessagesWaiting - ( UBaseType_t ) 1; +1c0015d0 addi s3,s3,-1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1312 + prvCopyDataFromQueue( pxQueue, pvBuffer ); +1c0015d2 jal 1c000fea +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1314 + pxQueue->uxMessagesWaiting = uxMessagesWaiting - ( UBaseType_t ) 1; +1c0015d4 sw s3,56(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1319 + if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToSend ) ) == pdFALSE ) +1c0015d8 lw a5,16(s0) +1c0015da beqz a5,1c0015ea +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1321 + if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToSend ) ) != pdFALSE ) +1c0015dc addi a0,s0,16 +1c0015e0 jal ra,1c001cd4 +1c0015e4 beqz a0,1c0015ea +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1323 + queueYIELD_IF_USING_PREEMPTION(); +1c0015e6 ecall +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1335 + taskEXIT_CRITICAL(); +1c0015ea jal ra,1c002026 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1336 + return pdPASS; +1c0015ee li a0,1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1415 +} +1c0015f0 lw ra,60(sp) +1c0015f2 lw s0,56(sp) +1c0015f4 lw s1,52(sp) +1c0015f6 lw s2,48(sp) +1c0015f8 lw s3,44(sp) +1c0015fa lw s4,40(sp) +1c0015fc lw s5,36(sp) +1c0015fe addi sp,sp,64 +1c001600 ret +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1393 + prvUnlockQueue( pxQueue ); +1c001602 mv a0,s0 +1c001604 jal 1c001008 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1394 + ( void ) xTaskResumeAll(); +1c001606 jal ra,1c00234c +1c00160a j 1c0015be +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1401 + prvUnlockQueue( pxQueue ); +1c00160c mv a0,s0 +1c00160e jal 1c001008 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1402 + ( void ) xTaskResumeAll(); +1c001610 jal ra,1c00234c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1404 + if( prvIsQueueEmpty( pxQueue ) != pdFALSE ) +1c001614 mv a0,s0 +1c001616 jal ra,1c000f46 +1c00161a beqz a0,1c0015be +1c00161c j 1c00155c +xQueueSemaphoreTake(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1419 +{ +1c00161e addi sp,sp,-64 +1c001620 sw ra,60(sp) +1c001622 sw s0,56(sp) +1c001624 sw s1,52(sp) +1c001626 sw s2,48(sp) +1c001628 sw s3,44(sp) +1c00162a sw s4,40(sp) +1c00162c sw a1,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1429 + configASSERT( ( pxQueue ) ); +1c00162e bnez a0,1c001650 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1429 (discriminator 1) +1c001630 lui a3,0x1c008 +1c001634 lui a2,0x1c008 +1c001638 addi a3,a3,540 # 1c00821c <__l2_priv0_end+0x341c> +1c00163c addi a2,a2,972 # 1c0083cc <__func__.9> +1c001640 li a1,1429 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1433 (discriminator 1) + configASSERT( pxQueue->uxItemSize == 0 ); +1c001644 lui a0,0x1c008 +1c001648 addi a0,a0,8 # 1c008008 <__l2_priv0_end+0x3208> +1c00164c jal ra,1c0037c8 <__assert_func> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1433 +1c001650 lw a5,64(a0) +1c001652 mv s0,a0 +1c001654 beqz a5,1c00166c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1433 (discriminator 1) +1c001656 lui a3,0x1c008 +1c00165a lui a2,0x1c008 +1c00165e addi a3,a3,412 # 1c00819c <__l2_priv0_end+0x339c> +1c001662 addi a2,a2,972 # 1c0083cc <__func__.9> +1c001666 li a1,1433 +1c00166a j 1c001644 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1438 + configASSERT( !( ( xTaskGetSchedulerState() == taskSCHEDULER_SUSPENDED ) && ( xTicksToWait != 0 ) ) ); +1c00166c jal ra,1c001d84 +1c001670 mv s2,a0 +1c001672 bnez a0,1c001690 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1438 (discriminator 1) +1c001674 lw a5,12(sp) +1c001676 li s1,0 +1c001678 beqz a5,1c001694 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1438 (discriminator 2) +1c00167a lui a3,0x1c008 +1c00167e lui a2,0x1c008 +1c001682 addi a3,a3,328 # 1c008148 <__l2_priv0_end+0x3348> +1c001686 addi a2,a2,972 # 1c0083cc <__func__.9> +1c00168a li a1,1438 +1c00168e j 1c001644 +1c001690 li s1,0 +1c001692 li s2,0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1539 + prvLockQueue( pxQueue ); +1c001694 li s3,-1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1569 + vTaskPlaceOnEventList( &( pxQueue->xTasksWaitingToReceive ), xTicksToWait ); +1c001696 addi s4,s0,36 +1c00169a j 1c001734 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1502 + if( xTicksToWait == ( TickType_t ) 0 ) +1c00169c lw a5,12(sp) +1c00169e bnez a5,1c0016be +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1509 + configASSERT( xInheritanceOccurred == pdFALSE ); +1c0016a0 beqz s1,1c0016b8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1509 (discriminator 1) +1c0016a2 lui a3,0x1c008 +1c0016a6 lui a2,0x1c008 +1c0016aa addi a3,a3,644 # 1c008284 <__l2_priv0_end+0x3484> +1c0016ae addi a2,a2,972 # 1c0083cc <__func__.9> +1c0016b2 li a1,1509 +1c0016b6 j 1c001644 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1515 + taskEXIT_CRITICAL(); +1c0016b8 jal ra,1c002026 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1517 + return errQUEUE_EMPTY; +1c0016bc j 1c001760 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1519 + else if( xEntryTimeSet == pdFALSE ) +1c0016be bnez s2,1c0016c8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1523 + vTaskInternalSetTimeOutState( &xTimeOut ); +1c0016c2 addi a0,sp,24 +1c0016c4 jal ra,1c001d6e +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1533 + taskEXIT_CRITICAL(); +1c0016c8 jal ra,1c002026 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1538 + vTaskSuspendAll(); +1c0016cc jal 1c001a16 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1539 + prvLockQueue( pxQueue ); +1c0016ce jal ra,1c00200c +1c0016d2 lbu a5,68(s0) +1c0016d6 slli a5,a5,0x18 +1c0016d8 srai a5,a5,0x18 +1c0016da bne a5,s3,1c0016e2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1539 (discriminator 1) +1c0016de sb zero,68(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1539 (discriminator 3) +1c0016e2 lbu a5,69(s0) +1c0016e6 slli a5,a5,0x18 +1c0016e8 srai a5,a5,0x18 +1c0016ea bne a5,s3,1c0016f2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1539 (discriminator 4) +1c0016ee sb zero,69(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1539 (discriminator 6) +1c0016f2 jal ra,1c002026 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1542 (discriminator 6) + if( xTaskCheckForTimeOut( &xTimeOut, &xTicksToWait ) == pdFALSE ) +1c0016f6 addi a1,sp,12 +1c0016f8 addi a0,sp,24 +1c0016fa jal ra,1c002458 +1c0016fe bnez a0,1c00177e +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1548 + if( prvIsQueueEmpty( pxQueue ) != pdFALSE ) +1c001700 mv a0,s0 +1c001702 jal ra,1c000f46 +1c001706 beqz a0,1c001772 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1554 + if( pxQueue->uxQueueType == queueQUEUE_IS_MUTEX ) +1c001708 lw a5,0(s0) +1c00170a bnez a5,1c00171c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1556 + taskENTER_CRITICAL(); +1c00170c jal ra,1c00200c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1558 + xInheritanceOccurred = xTaskPriorityInherit( pxQueue->u.xSemaphore.xMutexHolder ); +1c001710 lw a0,8(s0) +1c001712 jal ra,1c001d98 +1c001716 mv s1,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1560 + taskEXIT_CRITICAL(); +1c001718 jal ra,1c002026 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1569 + vTaskPlaceOnEventList( &( pxQueue->xTasksWaitingToReceive ), xTicksToWait ); +1c00171c lw a1,12(sp) +1c00171e mv a0,s4 +1c001720 jal 1c001c46 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1570 + prvUnlockQueue( pxQueue ); +1c001722 mv a0,s0 +1c001724 jal ra,1c001008 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1571 + if( xTaskResumeAll() == pdFALSE ) +1c001728 jal ra,1c00234c +1c00172c bnez a0,1c001732 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1573 + portYIELD_WITHIN_API(); +1c00172e ecall +1c001732 li s2,1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1448 + taskENTER_CRITICAL(); +1c001734 jal ra,1c00200c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1452 + const UBaseType_t uxSemaphoreCount = pxQueue->uxMessagesWaiting; +1c001738 lw a5,56(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1456 + if( uxSemaphoreCount > ( UBaseType_t ) 0 ) +1c00173a beqz a5,1c00169c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1462 + pxQueue->uxMessagesWaiting = uxSemaphoreCount - ( UBaseType_t ) 1; +1c00173c addi a5,a5,-1 +1c00173e sw a5,56(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1466 + if( pxQueue->uxQueueType == queueQUEUE_IS_MUTEX ) +1c001740 lw a5,0(s0) +1c001742 bnez a5,1c00174a +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1470 + pxQueue->u.xSemaphore.xMutexHolder = pvTaskIncrementMutexHeldCount(); +1c001744 jal ra,1c00250a +1c001748 sw a0,8(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1481 + if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToSend ) ) == pdFALSE ) +1c00174a lw a5,16(s0) +1c00174c beqz a5,1c00175a +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1483 + if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToSend ) ) != pdFALSE ) +1c00174e addi a0,s0,16 +1c001752 jal 1c001cd4 +1c001754 beqz a0,1c00175a +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1485 + queueYIELD_IF_USING_PREEMPTION(); +1c001756 ecall +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1497 + taskEXIT_CRITICAL(); +1c00175a jal ra,1c002026 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1498 + return pdPASS; +1c00175e li s1,1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1633 +} +1c001760 lw ra,60(sp) +1c001762 lw s0,56(sp) +1c001764 lw s2,48(sp) +1c001766 lw s3,44(sp) +1c001768 lw s4,40(sp) +1c00176a mv a0,s1 +1c00176c lw s1,52(sp) +1c00176e addi sp,sp,64 +1c001770 ret +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1584 + prvUnlockQueue( pxQueue ); +1c001772 mv a0,s0 +1c001774 jal ra,1c001008 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1585 + ( void ) xTaskResumeAll(); +1c001778 jal ra,1c00234c +1c00177c j 1c001732 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1591 + prvUnlockQueue( pxQueue ); +1c00177e mv a0,s0 +1c001780 jal ra,1c001008 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1592 + ( void ) xTaskResumeAll(); +1c001784 jal ra,1c00234c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1598 + if( prvIsQueueEmpty( pxQueue ) != pdFALSE ) +1c001788 mv a0,s0 +1c00178a jal ra,1c000f46 +1c00178e beqz a0,1c001732 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1605 + if( xInheritanceOccurred != pdFALSE ) +1c001790 beqz s1,1c001760 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1607 + taskENTER_CRITICAL(); +1c001792 jal ra,1c00200c +prvGetDisinheritPriorityAfterTimeout(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2059 + if( listCURRENT_LIST_LENGTH( &( pxQueue->xTasksWaitingToReceive ) ) > 0U ) +1c001796 lw a1,36(s0) +1c001798 beqz a1,1c0017a2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2061 + uxHighestPriorityOfWaitingTasks = ( UBaseType_t ) configMAX_PRIORITIES - ( UBaseType_t ) listGET_ITEM_VALUE_OF_HEAD_ENTRY( &( pxQueue->xTasksWaitingToReceive ) ); +1c00179a lw a5,48(s0) +1c00179c li a1,5 +1c00179e lw a5,0(a5) +1c0017a0 sub a1,a1,a5 +xQueueSemaphoreTake(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1617 + vTaskPriorityDisinheritAfterTimeout( pxQueue->u.xSemaphore.xMutexHolder, uxHighestWaitingPriority ); +1c0017a2 lw a0,8(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1625 + return errQUEUE_EMPTY; +1c0017a4 li s1,0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1617 + vTaskPriorityDisinheritAfterTimeout( pxQueue->u.xSemaphore.xMutexHolder, uxHighestWaitingPriority ); +1c0017a6 jal ra,1c001f1e +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1619 + taskEXIT_CRITICAL(); +1c0017aa jal ra,1c002026 +1c0017ae j 1c001760 +xQueueReceiveFromISR(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1786 +{ +1c0017b0 addi sp,sp,-32 +1c0017b2 sw ra,28(sp) +1c0017b4 sw s0,24(sp) +1c0017b6 sw s1,20(sp) +1c0017b8 sw s2,16(sp) +1c0017ba sw s3,12(sp) +1c0017bc sw s4,8(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1791 + configASSERT( pxQueue ); +1c0017be bnez a0,1c0017e0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1791 (discriminator 1) +1c0017c0 lui a3,0x1c008 +1c0017c4 lui a2,0x1c008 +1c0017c8 mv a3,a3 +1c0017cc addi a2,a2,948 # 1c0083b4 <__func__.7> +1c0017d0 li a1,1791 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1792 (discriminator 2) + configASSERT( !( ( pvBuffer == NULL ) && ( pxQueue->uxItemSize != ( UBaseType_t ) 0U ) ) ); +1c0017d4 lui a0,0x1c008 +1c0017d8 addi a0,a0,8 # 1c008008 <__l2_priv0_end+0x3208> +1c0017dc jal ra,1c0037c8 <__assert_func> +1c0017e0 mv s0,a0 +1c0017e2 mv s2,a2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1792 +1c0017e4 bnez a1,1c001800 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1792 (discriminator 1) +1c0017e6 lw a5,64(a0) +1c0017e8 beqz a5,1c001800 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1792 (discriminator 2) +1c0017ea lui a3,0x1c008 +1c0017ee lui a2,0x1c008 +1c0017f2 addi a3,a3,692 # 1c0082b4 <__l2_priv0_end+0x34b4> +1c0017f6 addi a2,a2,948 # 1c0083b4 <__func__.7> +1c0017fa li a1,1792 +1c0017fe j 1c0017d4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1812 + const UBaseType_t uxMessagesWaiting = pxQueue->uxMessagesWaiting; +1c001800 lw s3,56(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1866 + xReturn = pdFAIL; +1c001804 li a0,0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1815 + if( uxMessagesWaiting > ( UBaseType_t ) 0 ) +1c001806 beqz s3,1c00182e +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1817 + const int8_t cRxLock = pxQueue->cRxLock; +1c00180a lbu s1,68(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1821 + prvCopyDataFromQueue( pxQueue, pvBuffer ); +1c00180e mv a0,s0 +1c001810 jal ra,1c000fea +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1817 + const int8_t cRxLock = pxQueue->cRxLock; +1c001814 slli s4,s1,0x18 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1822 + pxQueue->uxMessagesWaiting = uxMessagesWaiting - ( UBaseType_t ) 1; +1c001818 addi s3,s3,-1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1817 + const int8_t cRxLock = pxQueue->cRxLock; +1c00181a srai s4,s4,0x18 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1822 + pxQueue->uxMessagesWaiting = uxMessagesWaiting - ( UBaseType_t ) 1; +1c00181e sw s3,56(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1828 + if( cRxLock == queueUNLOCKED ) +1c001822 li a5,-1 +1c001824 bne s4,a5,1c001852 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1830 + if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToSend ) ) == pdFALSE ) +1c001828 lw a5,16(s0) +1c00182a bnez a5,1c00183e +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1862 + xReturn = pdPASS; +1c00182c li a0,1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1873 +} +1c00182e lw ra,28(sp) +1c001830 lw s0,24(sp) +1c001832 lw s1,20(sp) +1c001834 lw s2,16(sp) +1c001836 lw s3,12(sp) +1c001838 lw s4,8(sp) +1c00183a addi sp,sp,32 +1c00183c ret +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1832 + if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToSend ) ) != pdFALSE ) +1c00183e addi a0,s0,16 +1c001842 jal 1c001cd4 +1c001844 beqz a0,1c00182c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1836 + if( pxHigherPriorityTaskWoken != NULL ) +1c001846 beqz s2,1c00182c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1838 + *pxHigherPriorityTaskWoken = pdTRUE; +1c00184a li a5,1 +1c00184c sw a5,0(s2) +1c001850 j 1c00182c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1859 + pxQueue->cRxLock = ( int8_t ) ( cRxLock + 1 ); +1c001852 addi s1,s1,1 +1c001854 slli s1,s1,0x18 +1c001856 srai s1,s1,0x18 +1c001858 sb s1,68(s0) +1c00185c j 1c00182c +vQueueAddToRegistry(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2654 + { + UBaseType_t ux; + + /* See if there is an empty space in the registry. A NULL name denotes + a free slot. */ + for( ux = ( UBaseType_t ) 0U; ux < ( UBaseType_t ) configQUEUE_REGISTRY_SIZE; ux++ ) +1c00185e lui a5,0x1c009 +1c001862 addi a3,a5,-952 # 1c008c48 +1c001866 li a4,0 +1c001868 addi a5,a5,-952 +1c00186c li a2,8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2656 + { + if( xQueueRegistry[ ux ].pcQueueName == NULL ) +1c00186e lw a6,0(a3) +1c001872 bnez a6,1c001880 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2659 + { + /* Store the information on this queue. */ + xQueueRegistry[ ux ].pcQueueName = pcQueueName; +1c001876 slli a4,a4,0x3 +1c001878 add a5,a5,a4 +1c00187a sw a1,0(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2660 + xQueueRegistry[ ux ].xHandle = xQueue; +1c00187c sw a0,4(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2663 + + traceQUEUE_REGISTRY_ADD( xQueue, pcQueueName ); + break; +1c00187e ret +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2654 (discriminator 2) + for( ux = ( UBaseType_t ) 0U; ux < ( UBaseType_t ) configQUEUE_REGISTRY_SIZE; ux++ ) +1c001880 addi a4,a4,1 +1c001882 addi a3,a3,8 +1c001884 bne a4,a2,1c00186e +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2670 + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + } +1c001888 ret +vQueueUnregisterQueue(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2711 + { + UBaseType_t ux; + + /* See if the handle of the queue being unregistered in actually in the + registry. */ + for( ux = ( UBaseType_t ) 0U; ux < ( UBaseType_t ) configQUEUE_REGISTRY_SIZE; ux++ ) +1c00188a lui a5,0x1c009 +1c00188e addi a3,a5,-952 # 1c008c48 +1c001892 li a4,0 +1c001894 addi a5,a5,-952 +1c001898 li a2,8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2713 + { + if( xQueueRegistry[ ux ].xHandle == xQueue ) +1c00189a lw a1,4(a3) +1c00189c bne a1,a0,1c0018ae +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2716 + { + /* Set the name to NULL to show that this slot if free again. */ + xQueueRegistry[ ux ].pcQueueName = NULL; +1c0018a0 slli a4,a4,0x3 +1c0018a2 add a5,a5,a4 +1c0018a4 sw zero,0(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2721 + + /* Set the handle to NULL to ensure the same queue handle cannot + appear in the registry twice if it is added, removed, then + added again. */ + xQueueRegistry[ ux ].xHandle = ( QueueHandle_t ) 0; +1c0018a8 sw zero,4(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2722 + break; +1c0018ac ret +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2711 (discriminator 2) + for( ux = ( UBaseType_t ) 0U; ux < ( UBaseType_t ) configQUEUE_REGISTRY_SIZE; ux++ ) +1c0018ae addi a4,a4,1 +1c0018b0 addi a3,a3,8 +1c0018b2 bne a4,a2,1c00189a +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2730 + { + mtCOVERAGE_TEST_MARKER(); + } + } + + } /*lint !e818 xQueue could not be pointer to const because it is a typedef. */ +1c0018b6 ret +vQueueDelete(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1976 +{ +1c0018b8 addi sp,sp,-16 +1c0018ba sw ra,12(sp) +1c0018bc sw s0,8(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1979 + configASSERT( pxQueue ); +1c0018be bnez a0,1c0018e0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1979 (discriminator 1) +1c0018c0 lui a3,0x1c008 +1c0018c4 lui a2,0x1c008 +1c0018c8 lui a0,0x1c008 +1c0018cc mv a3,a3 +1c0018d0 addi a2,a2,932 # 1c0083a4 <__func__.2> +1c0018d4 li a1,1979 +1c0018d8 addi a0,a0,8 # 1c008008 <__l2_priv0_end+0x3208> +1c0018dc jal ra,1c0037c8 <__assert_func> +1c0018e0 mv s0,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1984 + vQueueUnregisterQueue( pxQueue ); +1c0018e2 jal 1c00188a +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1992 + vPortFree( pxQueue ); +1c0018e4 mv a0,s0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2014 +} +1c0018e6 lw s0,8(sp) +1c0018e8 lw ra,12(sp) +1c0018ea addi sp,sp,16 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:1992 + vPortFree( pxQueue ); +1c0018ec j 1c002992 +vQueueWaitForMessageRestricted(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2738 +/*-----------------------------------------------------------*/ + +#if ( configUSE_TIMERS == 1 ) + + void vQueueWaitForMessageRestricted( QueueHandle_t xQueue, TickType_t xTicksToWait, const BaseType_t xWaitIndefinitely ) + { +1c0018f0 addi sp,sp,-16 +1c0018f2 sw s0,8(sp) +1c0018f4 sw s1,4(sp) +1c0018f6 sw s2,0(sp) +1c0018f8 mv s0,a0 +1c0018fa sw ra,12(sp) +1c0018fc mv s1,a1 +1c0018fe mv s2,a2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2755 + will not actually cause the task to block, just place it on a blocked + list. It will not block until the scheduler is unlocked - at which + time a yield will be performed. If an item is added to the queue while + the queue is locked, and the calling task blocks on the queue, then the + calling task will be immediately unblocked when the queue is unlocked. */ + prvLockQueue( pxQueue ); +1c001900 jal ra,1c00200c +1c001904 lbu a5,68(s0) +1c001908 li a4,-1 +1c00190a slli a5,a5,0x18 +1c00190c srai a5,a5,0x18 +1c00190e bne a5,a4,1c001916 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2755 (discriminator 1) +1c001912 sb zero,68(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2755 (discriminator 3) +1c001916 lbu a5,69(s0) +1c00191a li a4,-1 +1c00191c slli a5,a5,0x18 +1c00191e srai a5,a5,0x18 +1c001920 bne a5,a4,1c001928 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2755 (discriminator 4) +1c001924 sb zero,69(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2755 (discriminator 6) +1c001928 jal ra,1c002026 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2756 (discriminator 6) + if( pxQueue->uxMessagesWaiting == ( UBaseType_t ) 0U ) +1c00192c lw a5,56(s0) +1c00192e bnez a5,1c00193a +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2759 + { + /* There is nothing in the queue, block for the specified period. */ + vTaskPlaceOnEventListRestricted( &( pxQueue->xTasksWaitingToReceive ), xTicksToWait, xWaitIndefinitely ); +1c001930 mv a2,s2 +1c001932 mv a1,s1 +1c001934 addi a0,s0,36 +1c001938 jal 1c001c88 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2765 + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + prvUnlockQueue( pxQueue ); +1c00193a mv a0,s0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2766 + } +1c00193c lw s0,8(sp) +1c00193e lw ra,12(sp) +1c001940 lw s1,4(sp) +1c001942 lw s2,0(sp) +1c001944 addi sp,sp,16 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/queue.c:2765 + prvUnlockQueue( pxQueue ); +1c001946 j 1c001008 +prvAddCurrentTaskToDelayedList(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:5178 + +#endif +/*-----------------------------------------------------------*/ + +static void prvAddCurrentTaskToDelayedList( TickType_t xTicksToWait, const BaseType_t xCanBlockIndefinitely ) +{ +1c00194a addi sp,sp,-32 +1c00194c sw s1,20(sp) +1c00194e sw s3,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:5180 +TickType_t xTimeToWake; +const TickType_t xConstTickCount = xTickCount; +1c001950 lw s3,-632(gp) # 1c009164 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:5187 + #if( INCLUDE_xTaskAbortDelay == 1 ) + { + /* About to enter a delayed list, so ensure the ucDelayAborted flag is + reset to pdFALSE so it can be detected as having been set to pdTRUE + when the task leaves the Blocked state. */ + pxCurrentTCB->ucDelayAborted = pdFALSE; +1c001954 addi a5,gp,-684 # 1c009130 +1c001958 lw a4,0(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:5178 +{ +1c00195a sw s0,24(sp) +1c00195c mv s0,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:5193 + } + #endif + + /* Remove the task from the ready list before adding it to the blocked list + as the same list item is used for both lists. */ + if( uxListRemove( &( pxCurrentTCB->xStateListItem ) ) == ( UBaseType_t ) 0 ) +1c00195e lw a0,0(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:5178 +{ +1c001960 sw s2,16(sp) +1c001962 sw ra,28(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:5187 + pxCurrentTCB->ucDelayAborted = pdFALSE; +1c001964 sb zero,1157(a4) # 01000485 <__heap_l2_shared_size+0xf99e55> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:5193 + if( uxListRemove( &( pxCurrentTCB->xStateListItem ) ) == ( UBaseType_t ) 0 ) +1c001968 addi a0,a0,4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:5178 +{ +1c00196a mv s2,a1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:5193 + if( uxListRemove( &( pxCurrentTCB->xStateListItem ) ) == ( UBaseType_t ) 0 ) +1c00196c jal ra,1c000f26 +1c001970 addi a5,gp,-684 # 1c009130 +1c001974 bnez a0,1c00198e +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:5197 + { + /* The current task must be in a ready list, so there is no need to + check, and the port reset macro can be called directly. */ + portRESET_READY_PRIORITY( pxCurrentTCB->uxPriority, uxTopReadyPriority ); /*lint !e931 pxCurrentTCB cannot change as it is the calling task. pxCurrentTCB->uxPriority and uxTopReadyPriority cannot change as called with scheduler suspended or in a critical section. */ +1c001976 lw a4,0(a5) +1c001978 addi a3,gp,-656 # 1c00914c +1c00197c lw a1,44(a4) +1c00197e lw a2,0(a3) +1c001980 li a4,1 +1c001982 sll a4,a4,a1 +1c001986 not a4,a4 +1c00198a and a4,a4,a2 +1c00198c sw a4,0(a3) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:5206 + mtCOVERAGE_TEST_MARKER(); + } + + #if ( INCLUDE_vTaskSuspend == 1 ) + { + if( ( xTicksToWait == portMAX_DELAY ) && ( xCanBlockIndefinitely != pdFALSE ) ) +1c00198e li a4,-1 +1c001990 bne s0,a4,1c0019b0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:5206 (discriminator 1) +1c001994 beqz s2,1c0019b0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:5211 + { + /* Add the task to the suspended task list instead of a delayed task + list to ensure it is not woken by a timing event. It will block + indefinitely. */ + vListInsertEnd( &xSuspendedTaskList, &( pxCurrentTCB->xStateListItem ) ); +1c001998 lw a1,0(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:5286 + + /* Avoid compiler warning when INCLUDE_vTaskSuspend is not 1. */ + ( void ) xCanBlockIndefinitely; + } + #endif /* INCLUDE_vTaskSuspend */ +} +1c00199a lw s0,24(sp) +1c00199c lw ra,28(sp) +1c00199e lw s1,20(sp) +1c0019a0 lw s2,16(sp) +1c0019a2 lw s3,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:5211 + vListInsertEnd( &xSuspendedTaskList, &( pxCurrentTCB->xStateListItem ) ); +1c0019a4 addi a1,a1,4 +1c0019a6 addi a0,gp,-1716 # 1c008d28 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:5286 +} +1c0019aa addi sp,sp,32 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:5211 + vListInsertEnd( &xSuspendedTaskList, &( pxCurrentTCB->xStateListItem ) ); +1c0019ac j 1c000ee0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:5221 + listSET_LIST_ITEM_VALUE( &( pxCurrentTCB->xStateListItem ), xTimeToWake ); +1c0019b0 lw a4,0(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:5218 + xTimeToWake = xConstTickCount + xTicksToWait; +1c0019b2 add s0,s0,s3 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:5221 + listSET_LIST_ITEM_VALUE( &( pxCurrentTCB->xStateListItem ), xTimeToWake ); +1c0019b4 sw s0,4(a4) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:5223 + if( xTimeToWake < xConstTickCount ) +1c0019b6 bgeu s0,s3,1c0019d2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:5227 + vListInsert( pxOverflowDelayedTaskList, &( pxCurrentTCB->xStateListItem ) ); +1c0019ba lw a0,-676(gp) # 1c009138 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:5286 +} +1c0019be lw s0,24(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:5227 + vListInsert( pxOverflowDelayedTaskList, &( pxCurrentTCB->xStateListItem ) ); +1c0019c0 lw a1,0(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:5286 +} +1c0019c2 lw ra,28(sp) +1c0019c4 lw s1,20(sp) +1c0019c6 lw s2,16(sp) +1c0019c8 lw s3,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:5227 + vListInsert( pxOverflowDelayedTaskList, &( pxCurrentTCB->xStateListItem ) ); +1c0019ca addi a1,a1,4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:5286 +} +1c0019cc addi sp,sp,32 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:5227 + vListInsert( pxOverflowDelayedTaskList, &( pxCurrentTCB->xStateListItem ) ); +1c0019ce j 1c000ef8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:5233 + vListInsert( pxDelayedTaskList, &( pxCurrentTCB->xStateListItem ) ); +1c0019d2 lw a0,-680(gp) # 1c009134 +1c0019d6 lw a1,0(a5) +1c0019d8 addi a1,a1,4 +1c0019da jal ra,1c000ef8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:5238 + if( xTimeToWake < xNextTaskUnblockTime ) +1c0019de addi a5,gp,-648 # 1c009154 +1c0019e2 lw a4,0(a5) +1c0019e4 bgeu s0,a4,1c0019ea +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:5240 + xNextTaskUnblockTime = xTimeToWake; +1c0019e8 sw s0,0(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:5286 +} +1c0019ea lw ra,28(sp) +1c0019ec lw s0,24(sp) +1c0019ee lw s1,20(sp) +1c0019f0 lw s2,16(sp) +1c0019f2 lw s3,12(sp) +1c0019f4 addi sp,sp,32 +1c0019f6 ret +prvResetNextTaskUnblockTime(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3947 + if( listLIST_IS_EMPTY( pxDelayedTaskList ) != pdFALSE ) +1c0019f8 addi a4,gp,-680 # 1c009134 +1c0019fc lw a5,0(a4) +1c0019fe lw a3,0(a5) +1c001a00 addi a5,gp,-648 # 1c009154 +1c001a04 bnez a3,1c001a0c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3953 + xNextTaskUnblockTime = portMAX_DELAY; +1c001a06 li a4,-1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3962 + xNextTaskUnblockTime = listGET_LIST_ITEM_VALUE( &( ( pxTCB )->xStateListItem ) ); +1c001a08 sw a4,0(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3964 +} +1c001a0a ret +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3961 + ( pxTCB ) = listGET_OWNER_OF_HEAD_ENTRY( pxDelayedTaskList ); /*lint !e9079 void * is used as this macro is used with timers and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ +1c001a0c lw a4,0(a4) +1c001a0e lw a4,12(a4) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3962 + xNextTaskUnblockTime = listGET_LIST_ITEM_VALUE( &( ( pxTCB )->xStateListItem ) ); +1c001a10 lw a4,12(a4) +1c001a12 lw a4,4(a4) +1c001a14 j 1c001a08 +vTaskSuspendAll(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2123 + ++uxSchedulerSuspended; +1c001a16 addi a5,gp,-664 # 1c009144 +1c001a1a lw a4,0(a5) +1c001a1c addi a4,a4,1 +1c001a1e sw a4,0(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2128 +} +1c001a20 ret +xTaskGetTickCount(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2311 + xTicks = xTickCount; +1c001a22 lw a0,-632(gp) # 1c009164 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2316 +} +1c001a26 ret +xTaskIncrementTick(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2717 + if( uxSchedulerSuspended == ( UBaseType_t ) pdFALSE ) +1c001a28 lw a5,-664(gp) # 1c009144 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2708 +{ +1c001a2c addi sp,sp,-48 +1c001a2e sw ra,44(sp) +1c001a30 sw s0,40(sp) +1c001a32 sw s1,36(sp) +1c001a34 sw s2,32(sp) +1c001a36 sw s3,28(sp) +1c001a38 sw s4,24(sp) +1c001a3a sw s5,20(sp) +1c001a3c sw s6,16(sp) +1c001a3e sw s7,12(sp) +1c001a40 sw s8,8(sp) +1c001a42 sw s9,4(sp) +1c001a44 sw s10,0(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2717 + if( uxSchedulerSuspended == ( UBaseType_t ) pdFALSE ) +1c001a46 bnez a5,1c001b68 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2721 + const TickType_t xConstTickCount = xTickCount + ( TickType_t ) 1; +1c001a4a addi a5,gp,-632 # 1c009164 +1c001a4e lw s4,0(a5) +1c001a52 addi s4,s4,1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2725 + xTickCount = xConstTickCount; +1c001a54 sw s4,0(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2727 + if( xConstTickCount == ( TickType_t ) 0U ) /*lint !e774 'if' does not always evaluate to false as it is looking for an overflow. */ +1c001a58 bnez s4,1c001aa0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2729 + taskSWITCH_DELAYED_LISTS(); +1c001a5c addi a5,gp,-680 # 1c009134 +1c001a60 lw a4,0(a5) +1c001a62 lw a4,0(a4) +1c001a64 beqz a4,1c001a88 +1c001a66 lui a3,0x1c008 +1c001a6a lui a2,0x1c008 +1c001a6e lui a1,0x1 +1c001a70 lui a0,0x1c008 +1c001a74 addi a3,a3,1068 # 1c00842c <__func__.9+0x60> +1c001a78 addi a2,a2,1484 # 1c0085cc <__func__.13> +1c001a7c addi a1,a1,-1367 # 00000aa9 <__stack_size+0x2a9> +1c001a80 addi a0,a0,1000 # 1c0083e8 <__func__.9+0x1c> +1c001a84 jal ra,1c0037c8 <__assert_func> +1c001a88 addi a4,gp,-676 # 1c009138 +1c001a8c lw a3,0(a5) +1c001a8e lw a2,0(a4) +1c001a90 sw a2,0(a5) +1c001a92 sw a3,0(a4) +1c001a94 addi a5,gp,-644 # 1c009158 +1c001a98 lw a4,0(a5) +1c001a9a addi a4,a4,1 +1c001a9c sw a4,0(a5) +1c001a9e jal 1c0019f8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2740 + if( xConstTickCount >= xNextTaskUnblockTime ) +1c001aa0 addi a5,gp,-648 # 1c009154 +1c001aa4 lw a5,0(a5) +1c001aa6 lui s1,0x1c009 +1c001aaa addi s3,gp,-648 # 1c009154 +1c001aae addi s1,s1,-888 # 1c008c88 +1c001ab2 addi s5,gp,-684 # 1c009130 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2711 +BaseType_t xSwitchRequired = pdFALSE; +1c001ab6 li s0,0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2740 + if( xConstTickCount >= xNextTaskUnblockTime ) +1c001ab8 bgeu s4,a5,1c001afa +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2823 + if( listCURRENT_LIST_LENGTH( &( pxReadyTasksLists[ pxCurrentTCB->uxPriority ] ) ) > ( UBaseType_t ) 1 ) +1c001abc lw a5,0(s5) +1c001ac0 li a4,20 +1c001ac2 lw a5,44(a5) +1c001ac4 mul a5,a5,a4 +1c001ac8 add s1,s1,a5 +1c001aca lw a4,0(s1) +1c001acc li a5,1 +1c001ace bgeu a5,a4,1c001ad4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2825 + xSwitchRequired = pdTRUE; +1c001ad2 li s0,1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2851 + if( xYieldPending != pdFALSE ) +1c001ad4 lw a5,-628(gp) # 1c009168 +1c001ad8 beqz a5,1c001adc +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2853 + xSwitchRequired = pdTRUE; +1c001ada li s0,1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2876 +} +1c001adc lw ra,44(sp) +1c001ade mv a0,s0 +1c001ae0 lw s0,40(sp) +1c001ae2 lw s1,36(sp) +1c001ae4 lw s2,32(sp) +1c001ae6 lw s3,28(sp) +1c001ae8 lw s4,24(sp) +1c001aea lw s5,20(sp) +1c001aec lw s6,16(sp) +1c001aee lw s7,12(sp) +1c001af0 lw s8,8(sp) +1c001af2 lw s9,4(sp) +1c001af4 lw s10,0(sp) +1c001af6 addi sp,sp,48 +1c001af8 ret +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2794 + prvAddTaskToReadyList( pxTCB ); +1c001afa li s8,1 +1c001afc li s9,20 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2744 + if( listLIST_IS_EMPTY( pxDelayedTaskList ) != pdFALSE ) +1c001afe addi a5,gp,-680 # 1c009134 +1c001b02 lw a4,0(a5) +1c001b04 lw a4,0(a4) +1c001b06 bnez a4,1c001b10 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2751 + xNextTaskUnblockTime = portMAX_DELAY; /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ +1c001b08 li a5,-1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2770 + xNextTaskUnblockTime = xItemValue; +1c001b0a sw a5,0(s3) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2771 + break; /*lint !e9011 Code structure here is deedmed easier to understand with multiple breaks. */ +1c001b0e j 1c001abc +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2760 + pxTCB = listGET_OWNER_OF_HEAD_ENTRY( pxDelayedTaskList ); /*lint !e9079 void * is used as this macro is used with timers and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ +1c001b10 lw a5,0(a5) +1c001b12 lw a5,12(a5) +1c001b14 lw s2,12(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2761 + xItemValue = listGET_LIST_ITEM_VALUE( &( pxTCB->xStateListItem ) ); +1c001b18 lw a5,4(s2) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2763 + if( xConstTickCount < xItemValue ) +1c001b1c bltu s4,a5,1c001b0a +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2779 + ( void ) uxListRemove( &( pxTCB->xStateListItem ) ); +1c001b20 addi s10,s2,4 +1c001b24 mv a0,s10 +1c001b26 jal ra,1c000f26 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2783 + if( listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) != NULL ) +1c001b2a lw a5,40(s2) +1c001b2e beqz a5,1c001b38 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2785 + ( void ) uxListRemove( &( pxTCB->xEventListItem ) ); +1c001b30 addi a0,s2,24 +1c001b34 jal ra,1c000f26 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2794 + prvAddTaskToReadyList( pxTCB ); +1c001b38 lw a0,44(s2) +1c001b3c addi a4,gp,-656 # 1c00914c +1c001b40 lw a3,0(a4) +1c001b42 sll a5,s8,a0 +1c001b46 mul a0,a0,s9 +1c001b4a or a5,a5,a3 +1c001b4c mv a1,s10 +1c001b4e sw a5,0(a4) +1c001b50 add a0,a0,s1 +1c001b52 jal ra,1c000ee0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2804 + if( pxTCB->uxPriority >= pxCurrentTCB->uxPriority ) +1c001b56 lw a5,0(s5) +1c001b5a lw a4,44(s2) +1c001b5e lw a5,44(a5) +1c001b60 bltu a4,a5,1c001afe +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2806 + xSwitchRequired = pdTRUE; +1c001b64 li s0,1 +1c001b66 j 1c001afe +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2864 + ++xPendedTicks; +1c001b68 addi a5,gp,-640 # 1c00915c +1c001b6c lw a4,0(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2711 +BaseType_t xSwitchRequired = pdFALSE; +1c001b6e li s0,0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2864 + ++xPendedTicks; +1c001b70 addi a4,a4,1 +1c001b72 sw a4,0(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2875 + return xSwitchRequired; +1c001b74 j 1c001adc +vTaskSwitchContext(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2991 + if( uxSchedulerSuspended != ( UBaseType_t ) pdFALSE ) +1c001b76 lw a4,-664(gp) # 1c009144 +1c001b7a addi a5,gp,-628 # 1c009168 +1c001b7e beqz a4,1c001b86 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2995 + xYieldPending = pdTRUE; +1c001b80 li a4,1 +1c001b82 sw a4,0(a5) +1c001b84 ret +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2990 +{ +1c001b86 addi sp,sp,-16 +1c001b88 sw s0,8(sp) +1c001b8a sw ra,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2999 + xYieldPending = pdFALSE; +1c001b8c sw zero,0(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3030 + taskCHECK_FOR_STACK_OVERFLOW(); +1c001b90 addi a5,gp,-684 # 1c009130 +1c001b94 lw a5,0(a5) +1c001b96 lui a4,0xa5a5a +1c001b9a addi a4,a4,1445 # a5a5a5a5 <__heap_l2_shared_start+0x89a40bd5> +1c001b9e lw a5,48(a5) +1c001ba0 addi s0,gp,-684 # 1c009130 +1c001ba4 lw a2,0(a5) +1c001ba6 bne a2,a4,1c001bbc +1c001baa lw a3,4(a5) +1c001bac bne a3,a2,1c001bbc +1c001bb0 lw a4,8(a5) +1c001bb2 bne a4,a3,1c001bbc +1c001bb6 lw a5,12(a5) +1c001bb8 beq a5,a4,1c001bc8 +1c001bbc lw a0,0(s0) +1c001bbe lw a1,0(s0) +1c001bc0 addi a1,a1,52 +1c001bc4 jal ra,1c00319c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3041 + taskSELECT_HIGHEST_PRIORITY_TASK(); /*lint !e9079 void * is used as this macro is used with timers and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ +1c001bc8 lw a0,-656(gp) # 1c00914c +1c001bcc jal ra,1c000e8a <__clzsi2> +1c001bd0 li a4,31 +1c001bd2 sub a0,a4,a0 +1c001bd6 li a5,20 +1c001bd8 mul a5,a0,a5 +1c001bdc lui a4,0x1c009 +1c001be0 addi a3,a4,-888 # 1c008c88 +1c001be4 addi a4,a4,-888 +1c001be8 add a3,a3,a5 +1c001bea lw a2,0(a3) +1c001bec bnez a2,1c001c10 +1c001bee lui a3,0x1c008 +1c001bf2 lui a2,0x1c008 +1c001bf6 lui a1,0x1 +1c001bf8 lui a0,0x1c008 +1c001bfc addi a3,a3,1188 # 1c0084a4 <__func__.9+0xd8> +1c001c00 addi a2,a2,1464 # 1c0085b8 <__func__.12> +1c001c04 addi a1,a1,-1055 # 00000be1 <__stack_size+0x3e1> +1c001c08 addi a0,a0,1000 # 1c0083e8 <__func__.9+0x1c> +1c001c0c jal ra,1c0037c8 <__assert_func> +1c001c10 lw a2,4(a3) +1c001c12 addi a5,a5,8 +1c001c14 add a5,a5,a4 +1c001c16 lw a2,4(a2) +1c001c18 sw a2,4(a3) +1c001c1a bne a2,a5,1c001c22 +1c001c1e lw a5,4(a2) +1c001c20 sw a5,4(a3) +1c001c22 li a5,20 +1c001c24 mul a0,a0,a5 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3061 +} +1c001c28 lw ra,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3041 + taskSELECT_HIGHEST_PRIORITY_TASK(); /*lint !e9079 void * is used as this macro is used with timers and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ +1c001c2a add a4,a4,a0 +1c001c2c lw a5,4(a4) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3057 + _impure_ptr = &( pxCurrentTCB->xNewLib_reent ); +1c001c2e lui a4,0x1c009 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3041 + taskSELECT_HIGHEST_PRIORITY_TASK(); /*lint !e9079 void * is used as this macro is used with timers and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ +1c001c32 lw a5,12(a5) +1c001c34 sw a5,0(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3057 + _impure_ptr = &( pxCurrentTCB->xNewLib_reent ); +1c001c36 lw a5,0(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3061 +} +1c001c38 lw s0,8(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3057 + _impure_ptr = &( pxCurrentTCB->xNewLib_reent ); +1c001c3a addi a5,a5,88 +1c001c3e sw a5,-956(a4) # 1c008c44 <_impure_ptr> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3061 +} +1c001c42 addi sp,sp,16 +1c001c44 ret +vTaskPlaceOnEventList(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3065 +{ +1c001c46 addi sp,sp,-16 +1c001c48 sw ra,12(sp) +1c001c4a sw s0,8(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3066 + configASSERT( pxEventList ); +1c001c4c bnez a0,1c001c70 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3066 (discriminator 1) +1c001c4e lui a3,0x1c008 +1c001c52 lui a2,0x1c008 +1c001c56 lui a1,0x1 +1c001c58 lui a0,0x1c008 +1c001c5c addi a3,a3,1260 # 1c0084ec <__func__.9+0x120> +1c001c60 addi a2,a2,1440 # 1c0085a0 <__func__.11> +1c001c64 addi a1,a1,-1030 # 00000bfa <__stack_size+0x3fa> +1c001c68 addi a0,a0,1000 # 1c0083e8 <__func__.9+0x1c> +1c001c6c jal ra,1c0037c8 <__assert_func> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3075 + vListInsert( pxEventList, &( pxCurrentTCB->xEventListItem ) ); +1c001c70 mv s0,a1 +1c001c72 lw a1,-684(gp) # 1c009130 +1c001c76 addi a1,a1,24 +1c001c78 jal ra,1c000ef8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3077 + prvAddCurrentTaskToDelayedList( xTicksToWait, pdTRUE ); +1c001c7c mv a0,s0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3078 +} +1c001c7e lw s0,8(sp) +1c001c80 lw ra,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3077 + prvAddCurrentTaskToDelayedList( xTicksToWait, pdTRUE ); +1c001c82 li a1,1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3078 +} +1c001c84 addi sp,sp,16 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3077 + prvAddCurrentTaskToDelayedList( xTicksToWait, pdTRUE ); +1c001c86 j 1c00194a +vTaskPlaceOnEventListRestricted(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3108 + { +1c001c88 addi sp,sp,-16 +1c001c8a sw ra,12(sp) +1c001c8c sw s0,8(sp) +1c001c8e sw s1,4(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3109 + configASSERT( pxEventList ); +1c001c90 bnez a0,1c001cb4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3109 (discriminator 1) +1c001c92 lui a3,0x1c008 +1c001c96 lui a2,0x1c008 +1c001c9a lui a1,0x1 +1c001c9c lui a0,0x1c008 +1c001ca0 addi a3,a3,1260 # 1c0084ec <__func__.9+0x120> +1c001ca4 addi a2,a2,1652 # 1c008674 <__func__.9> +1c001ca8 addi a1,a1,-987 # 00000c25 <__stack_size+0x425> +1c001cac addi a0,a0,1000 # 1c0083e8 <__func__.9+0x1c> +1c001cb0 jal ra,1c0037c8 <__assert_func> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3121 + vListInsertEnd( pxEventList, &( pxCurrentTCB->xEventListItem ) ); +1c001cb4 mv s0,a1 +1c001cb6 lw a1,-684(gp) # 1c009130 +1c001cba mv s1,a2 +1c001cbc addi a1,a1,24 +1c001cbe jal ra,1c000ee0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3126 + if( xWaitIndefinitely != pdFALSE ) +1c001cc2 beqz s1,1c001cc6 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3128 + xTicksToWait = portMAX_DELAY; +1c001cc4 li s0,-1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3132 + prvAddCurrentTaskToDelayedList( xTicksToWait, xWaitIndefinitely ); +1c001cc6 mv a0,s0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3133 + } +1c001cc8 lw s0,8(sp) +1c001cca lw ra,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3132 + prvAddCurrentTaskToDelayedList( xTicksToWait, xWaitIndefinitely ); +1c001ccc mv a1,s1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3133 + } +1c001cce lw s1,4(sp) +1c001cd0 addi sp,sp,16 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3132 + prvAddCurrentTaskToDelayedList( xTicksToWait, xWaitIndefinitely ); +1c001cd2 j 1c00194a +xTaskRemoveFromEventList(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3156 + pxUnblockedTCB = listGET_OWNER_OF_HEAD_ENTRY( pxEventList ); /*lint !e9079 void * is used as this macro is used with timers and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ +1c001cd4 lw a5,12(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3139 +{ +1c001cd6 addi sp,sp,-32 +1c001cd8 sw s0,24(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3156 + pxUnblockedTCB = listGET_OWNER_OF_HEAD_ENTRY( pxEventList ); /*lint !e9079 void * is used as this macro is used with timers and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ +1c001cda lw s0,12(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3139 +{ +1c001cdc sw ra,28(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3157 + configASSERT( pxUnblockedTCB ); +1c001cde bnez s0,1c001d02 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3157 (discriminator 1) +1c001ce0 lui a3,0x1c008 +1c001ce4 lui a2,0x1c008 +1c001ce8 lui a1,0x1 +1c001cea lui a0,0x1c008 +1c001cee addi a3,a3,1272 # 1c0084f8 <__func__.9+0x12c> +1c001cf2 addi a2,a2,1624 # 1c008658 <__func__.8> +1c001cf6 addi a1,a1,-939 # 00000c55 <__stack_size+0x455> +1c001cfa addi a0,a0,1000 # 1c0083e8 <__func__.9+0x1c> +1c001cfe jal ra,1c0037c8 <__assert_func> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3158 + ( void ) uxListRemove( &( pxUnblockedTCB->xEventListItem ) ); +1c001d02 addi a1,s0,24 +1c001d06 mv a0,a1 +1c001d08 sw a1,12(sp) +1c001d0a jal ra,1c000f26 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3160 + if( uxSchedulerSuspended == ( UBaseType_t ) pdFALSE ) +1c001d0e lw a5,-664(gp) # 1c009144 +1c001d12 lw a1,12(sp) +1c001d14 bnez a5,1c001d68 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3162 + ( void ) uxListRemove( &( pxUnblockedTCB->xStateListItem ) ); +1c001d16 addi a1,s0,4 +1c001d1a mv a0,a1 +1c001d1c sw a1,12(sp) +1c001d1e jal ra,1c000f26 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3163 + prvAddTaskToReadyList( pxUnblockedTCB ); +1c001d22 lw a0,44(s0) +1c001d24 addi a4,gp,-656 # 1c00914c +1c001d28 lw a3,0(a4) +1c001d2a li a5,1 +1c001d2c sll a5,a5,a0 +1c001d30 or a5,a5,a3 +1c001d32 sw a5,0(a4) +1c001d34 li a5,20 +1c001d36 mul a0,a0,a5 +1c001d3a lw a1,12(sp) +1c001d3c lui a5,0x1c009 +1c001d40 addi a5,a5,-888 # 1c008c88 +1c001d44 add a0,a0,a5 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3183 + vListInsertEnd( &( xPendingReadyList ), &( pxUnblockedTCB->xEventListItem ) ); +1c001d46 jal ra,1c000ee0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3186 + if( pxUnblockedTCB->uxPriority > pxCurrentTCB->uxPriority ) +1c001d4a lw a5,-684(gp) # 1c009130 +1c001d4e lw a4,44(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3199 + xReturn = pdFALSE; +1c001d50 li a0,0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3186 + if( pxUnblockedTCB->uxPriority > pxCurrentTCB->uxPriority ) +1c001d52 lw a5,44(a5) +1c001d54 bgeu a5,a4,1c001d60 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3195 + xYieldPending = pdTRUE; +1c001d58 li a4,1 +1c001d5a sw a4,-628(gp) # 1c009168 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3191 + xReturn = pdTRUE; +1c001d5e li a0,1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3203 +} +1c001d60 lw ra,28(sp) +1c001d62 lw s0,24(sp) +1c001d64 addi sp,sp,32 +1c001d66 ret +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3183 + vListInsertEnd( &( xPendingReadyList ), &( pxUnblockedTCB->xEventListItem ) ); +1c001d68 addi a0,gp,-1736 # 1c008d14 +1c001d6c j 1c001d46 +vTaskInternalSetTimeOutState(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3269 + pxTimeOut->xOverflowCount = xNumOfOverflows; +1c001d6e lw a5,-644(gp) # 1c009158 +1c001d72 sw a5,0(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3270 + pxTimeOut->xTimeOnEntering = xTickCount; +1c001d74 lw a5,-632(gp) # 1c009164 +1c001d78 sw a5,4(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3271 +} +1c001d7a ret +vTaskMissedYield(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3339 + xYieldPending = pdTRUE; +1c001d7c li a4,1 +1c001d7e sw a4,-628(gp) # 1c009168 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3340 +} +1c001d82 ret +xTaskGetSchedulerState(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3990 + if( xSchedulerRunning == pdFALSE ) +1c001d84 lw a5,-636(gp) # 1c009160 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3992 + xReturn = taskSCHEDULER_NOT_STARTED; +1c001d88 li a0,1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3990 + if( xSchedulerRunning == pdFALSE ) +1c001d8a beqz a5,1c001d96 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3996 + if( uxSchedulerSuspended == ( UBaseType_t ) pdFALSE ) +1c001d8c lw a0,-664(gp) # 1c009144 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4002 + xReturn = taskSCHEDULER_SUSPENDED; +1c001d90 seqz a0,a0 +1c001d94 slli a0,a0,0x1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4007 + } +1c001d96 ret +xTaskPriorityInherit(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4022 + if( pxMutexHolder != NULL ) +1c001d98 beqz a0,1c001e48 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4015 + { +1c001d9a addi sp,sp,-32 +1c001d9c sw s1,20(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4027 + if( pxMutexHolderTCB->uxPriority < pxCurrentTCB->uxPriority ) +1c001d9e addi a4,gp,-684 # 1c009130 +1c001da2 lw a3,0(a4) +1c001da4 lw a5,44(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4015 + { +1c001da6 sw s0,24(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4027 + if( pxMutexHolderTCB->uxPriority < pxCurrentTCB->uxPriority ) +1c001da8 lw a3,44(a3) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4015 + { +1c001daa sw ra,28(sp) +1c001dac sw s2,16(sp) +1c001dae mv s0,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4027 + if( pxMutexHolderTCB->uxPriority < pxCurrentTCB->uxPriority ) +1c001db0 addi s1,gp,-684 # 1c009130 +1c001db4 bgeu a5,a3,1c001e3c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4032 + if( ( listGET_LIST_ITEM_VALUE( &( pxMutexHolderTCB->xEventListItem ) ) & taskEVENT_LIST_ITEM_VALUE_IN_USE ) == 0UL ) +1c001db8 lw a4,24(a0) +1c001dba bltz a4,1c001dc8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4034 + listSET_LIST_ITEM_VALUE( &( pxMutexHolderTCB->xEventListItem ), ( TickType_t ) configMAX_PRIORITIES - ( TickType_t ) pxCurrentTCB->uxPriority ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ +1c001dbe lw a4,0(s1) +1c001dc0 lw a3,44(a4) +1c001dc2 li a4,5 +1c001dc4 sub a4,a4,a3 +1c001dc6 sw a4,24(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4043 + if( listIS_CONTAINED_WITHIN( &( pxReadyTasksLists[ pxMutexHolderTCB->uxPriority ] ), &( pxMutexHolderTCB->xStateListItem ) ) != pdFALSE ) +1c001dc8 li a3,20 +1c001dca mul a5,a5,a3 +1c001dce lui a0,0x1c009 +1c001dd2 addi a4,a0,-888 # 1c008c88 +1c001dd6 addi s2,a0,-888 +1c001dda add a5,a5,a4 +1c001ddc lw a4,20(s0) +1c001dde bne a4,a5,1c001e34 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4045 + if( uxListRemove( &( pxMutexHolderTCB->xStateListItem ) ) == ( UBaseType_t ) 0 ) +1c001de2 addi a1,s0,4 +1c001de6 mv a0,a1 +1c001de8 sw a1,12(sp) +1c001dea jal ra,1c000f26 +1c001dee lw a1,12(sp) +1c001df0 addi a4,gp,-656 # 1c00914c +1c001df4 bnez a0,1c001e08 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4050 + portRESET_READY_PRIORITY( pxMutexHolderTCB->uxPriority, uxTopReadyPriority ); +1c001df6 lw a2,44(s0) +1c001df8 lw a3,0(a4) +1c001dfa li a5,1 +1c001dfc sll a5,a5,a2 +1c001e00 not a5,a5 +1c001e04 and a5,a5,a3 +1c001e06 sw a5,0(a4) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4058 + pxMutexHolderTCB->uxPriority = pxCurrentTCB->uxPriority; +1c001e08 lw a5,0(s1) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4059 + prvAddTaskToReadyList( pxMutexHolderTCB ); +1c001e0a lw a3,0(a4) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4058 + pxMutexHolderTCB->uxPriority = pxCurrentTCB->uxPriority; +1c001e0c lw a0,44(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4059 + prvAddTaskToReadyList( pxMutexHolderTCB ); +1c001e0e li a5,1 +1c001e10 sll a5,a5,a0 +1c001e14 or a5,a5,a3 +1c001e16 sw a5,0(a4) +1c001e18 li a5,20 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4058 + pxMutexHolderTCB->uxPriority = pxCurrentTCB->uxPriority; +1c001e1a sw a0,44(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4059 + prvAddTaskToReadyList( pxMutexHolderTCB ); +1c001e1c mul a0,a0,a5 +1c001e20 add a0,a0,s2 +1c001e22 jal ra,1c000ee0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4070 + xReturn = pdTRUE; +1c001e26 li a0,1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4097 + } +1c001e28 lw ra,28(sp) +1c001e2a lw s0,24(sp) +1c001e2c lw s1,20(sp) +1c001e2e lw s2,16(sp) +1c001e30 addi sp,sp,32 +1c001e32 ret +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4064 + pxMutexHolderTCB->uxPriority = pxCurrentTCB->uxPriority; +1c001e34 lw a5,0(s1) +1c001e36 lw a5,44(a5) +1c001e38 sw a5,44(s0) +1c001e3a j 1c001e26 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4074 + if( pxMutexHolderTCB->uxBasePriority < pxCurrentTCB->uxPriority ) +1c001e3c lw a5,0(a4) +1c001e3e lw a0,80(a0) +1c001e40 lw a5,44(a5) +1c001e42 sltu a0,a0,a5 +1c001e46 j 1c001e28 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4017 + BaseType_t xReturn = pdFALSE; +1c001e48 li a0,0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4097 + } +1c001e4a ret +xTaskPriorityDisinherit(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4109 + if( pxMutexHolder != NULL ) +1c001e4c bnez a0,1c001e5c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4107 + BaseType_t xReturn = pdFALSE; +1c001e4e li a0,0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4177 + } +1c001e50 ret +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4107 + BaseType_t xReturn = pdFALSE; +1c001e52 li a0,0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4177 + } +1c001e54 lw ra,28(sp) +1c001e56 lw s0,24(sp) +1c001e58 addi sp,sp,32 +1c001e5a ret +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4115 + configASSERT( pxTCB == pxCurrentTCB ); +1c001e5c lw a5,-684(gp) # 1c009130 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4105 + { +1c001e60 addi sp,sp,-32 +1c001e62 sw s0,24(sp) +1c001e64 sw ra,28(sp) +1c001e66 mv s0,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4115 + configASSERT( pxTCB == pxCurrentTCB ); +1c001e68 beq a5,a0,1c001e8c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4115 (discriminator 1) +1c001e6c lui a3,0x1c008 +1c001e70 lui a2,0x1c008 +1c001e74 lui a1,0x1 +1c001e76 lui a0,0x1c008 +1c001e7a addi a3,a3,1288 # 1c008508 <__func__.9+0x13c> +1c001e7e addi a2,a2,1576 # 1c008628 <__func__.4> +1c001e82 addi a1,a1,19 +1c001e84 addi a0,a0,1000 # 1c0083e8 <__func__.9+0x1c> +1c001e88 jal ra,1c0037c8 <__assert_func> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4116 + configASSERT( pxTCB->uxMutexesHeld ); +1c001e8c lw a5,84(a5) +1c001e8e bnez a5,1c001eb0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4116 (discriminator 1) +1c001e90 lui a3,0x1c008 +1c001e94 lui a2,0x1c008 +1c001e98 lui a1,0x1 +1c001e9a lui a0,0x1c008 +1c001e9e addi a3,a3,1312 # 1c008520 <__func__.9+0x154> +1c001ea2 addi a2,a2,1576 # 1c008628 <__func__.4> +1c001ea6 addi a1,a1,20 +1c001ea8 addi a0,a0,1000 # 1c0083e8 <__func__.9+0x1c> +1c001eac jal ra,1c0037c8 <__assert_func> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4121 + if( pxTCB->uxPriority != pxTCB->uxBasePriority ) +1c001eb0 lw a3,44(a0) +1c001eb2 lw a4,80(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4117 + ( pxTCB->uxMutexesHeld )--; +1c001eb4 addi a5,a5,-1 +1c001eb6 sw a5,84(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4121 + if( pxTCB->uxPriority != pxTCB->uxBasePriority ) +1c001eb8 beq a3,a4,1c001e52 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4124 + if( pxTCB->uxMutexesHeld == ( UBaseType_t ) 0 ) +1c001ebc bnez a5,1c001e52 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4131 + if( uxListRemove( &( pxTCB->xStateListItem ) ) == ( UBaseType_t ) 0 ) +1c001ebe addi a1,a0,4 +1c001ec2 mv a0,a1 +1c001ec4 sw a1,12(sp) +1c001ec6 jal ra,1c000f26 +1c001eca lui a2,0x1c009 +1c001ece lw a1,12(sp) +1c001ed0 addi a2,a2,-888 # 1c008c88 +1c001ed4 addi a4,gp,-656 # 1c00914c +1c001ed8 bnez a0,1c001ef8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4133 + taskRESET_READY_PRIORITY( pxTCB->uxPriority ); +1c001eda lw a0,44(s0) +1c001edc li a3,20 +1c001ede mul a3,a0,a3 +1c001ee2 add a3,a3,a2 +1c001ee4 lw a5,0(a3) +1c001ee6 bnez a5,1c001ef8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4133 (discriminator 1) +1c001ee8 lw a3,0(a4) +1c001eea li a5,1 +1c001eec sll a5,a5,a0 +1c001ef0 not a5,a5 +1c001ef4 and a5,a5,a3 +1c001ef6 sw a5,0(a4) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4143 + pxTCB->uxPriority = pxTCB->uxBasePriority; +1c001ef8 lw a5,80(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4148 + listSET_LIST_ITEM_VALUE( &( pxTCB->xEventListItem ), ( TickType_t ) configMAX_PRIORITIES - ( TickType_t ) pxTCB->uxPriority ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ +1c001efa li a3,5 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4149 + prvAddTaskToReadyList( pxTCB ); +1c001efc lw a0,0(a4) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4148 + listSET_LIST_ITEM_VALUE( &( pxTCB->xEventListItem ), ( TickType_t ) configMAX_PRIORITIES - ( TickType_t ) pxTCB->uxPriority ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ +1c001efe sub a3,a3,a5 +1c001f00 sw a3,24(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4149 + prvAddTaskToReadyList( pxTCB ); +1c001f02 li a3,1 +1c001f04 sll a3,a3,a5 +1c001f08 or a3,a3,a0 +1c001f0a li a0,20 +1c001f0c mul a0,a5,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4143 + pxTCB->uxPriority = pxTCB->uxBasePriority; +1c001f10 sw a5,44(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4149 + prvAddTaskToReadyList( pxTCB ); +1c001f12 sw a3,0(a4) +1c001f14 add a0,a0,a2 +1c001f16 jal ra,1c000ee0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4159 + xReturn = pdTRUE; +1c001f1a li a0,1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4176 + return xReturn; +1c001f1c j 1c001e54 +vTaskPriorityDisinheritAfterTimeout(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4190 + if( pxMutexHolder != NULL ) +1c001f1e beqz a0,1c00200a +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4194 + configASSERT( pxTCB->uxMutexesHeld ); +1c001f22 lw a3,84(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4185 + { +1c001f24 addi sp,sp,-32 +1c001f26 sw s0,24(sp) +1c001f28 sw ra,28(sp) +1c001f2a sw s1,20(sp) +1c001f2c mv s0,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4194 + configASSERT( pxTCB->uxMutexesHeld ); +1c001f2e bnez a3,1c001f52 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4194 (discriminator 1) +1c001f30 lui a3,0x1c008 +1c001f34 lui a2,0x1c008 +1c001f38 lui a1,0x1 +1c001f3a lui a0,0x1c008 +1c001f3e addi a3,a3,1312 # 1c008520 <__func__.9+0x154> +1c001f42 addi a2,a2,1540 # 1c008604 <__func__.3> +1c001f46 addi a1,a1,98 # 00001062 <__stack_size+0x862> +1c001f4a addi a0,a0,1000 # 1c0083e8 <__func__.9+0x1c> +1c001f4e jal ra,1c0037c8 <__assert_func> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4200 + if( pxTCB->uxBasePriority < uxHighestPriorityWaitingTask ) +1c001f52 lw a5,80(a0) +1c001f54 bgeu a5,a1,1c001f5a +1c001f58 mv a5,a1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4210 + if( pxTCB->uxPriority != uxPriorityToUse ) +1c001f5a lw a4,44(s0) +1c001f5c beq a4,a5,1c002000 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4216 + if( pxTCB->uxMutexesHeld == uxOnlyOneMutexHeld ) +1c001f60 li a2,1 +1c001f62 bne a3,a2,1c002000 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4221 + configASSERT( pxTCB != pxCurrentTCB ); +1c001f66 lw a3,-684(gp) # 1c009130 +1c001f6a bne a3,s0,1c001f90 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4221 (discriminator 1) +1c001f6e lui a3,0x1c008 +1c001f72 lui a2,0x1c008 +1c001f76 lui a1,0x1 +1c001f78 lui a0,0x1c008 +1c001f7c addi a3,a3,1336 # 1c008538 <__func__.9+0x16c> +1c001f80 addi a2,a2,1540 # 1c008604 <__func__.3> +1c001f84 addi a1,a1,125 # 0000107d <__stack_size+0x87d> +1c001f88 addi a0,a0,1000 # 1c0083e8 <__func__.9+0x1c> +1c001f8c jal ra,1c0037c8 <__assert_func> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4232 + if( ( listGET_LIST_ITEM_VALUE( &( pxTCB->xEventListItem ) ) & taskEVENT_LIST_ITEM_VALUE_IN_USE ) == 0UL ) +1c001f90 lw a3,24(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4228 + pxTCB->uxPriority = uxPriorityToUse; +1c001f92 sw a5,44(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4232 + if( ( listGET_LIST_ITEM_VALUE( &( pxTCB->xEventListItem ) ) & taskEVENT_LIST_ITEM_VALUE_IN_USE ) == 0UL ) +1c001f94 bltz a3,1c001fa0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4234 + listSET_LIST_ITEM_VALUE( &( pxTCB->xEventListItem ), ( TickType_t ) configMAX_PRIORITIES - ( TickType_t ) uxPriorityToUse ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ +1c001f98 li a3,5 +1c001f9a sub a5,a3,a5 +1c001f9e sw a5,24(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4247 + if( listIS_CONTAINED_WITHIN( &( pxReadyTasksLists[ uxPriorityUsedOnEntry ] ), &( pxTCB->xStateListItem ) ) != pdFALSE ) +1c001fa0 li a3,20 +1c001fa2 mul a4,a4,a3 +1c001fa6 lui a0,0x1c009 +1c001faa addi a5,a0,-888 # 1c008c88 +1c001fae addi s1,a0,-888 +1c001fb2 add a4,a4,a5 +1c001fb4 lw a5,20(s0) +1c001fb6 bne a5,a4,1c002000 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4249 + if( uxListRemove( &( pxTCB->xStateListItem ) ) == ( UBaseType_t ) 0 ) +1c001fba addi a1,s0,4 +1c001fbe mv a0,a1 +1c001fc0 sw a1,12(sp) +1c001fc2 jal ra,1c000f26 +1c001fc6 lw a3,44(s0) +1c001fc8 lw a1,12(sp) +1c001fca addi a4,gp,-656 # 1c00914c +1c001fce bnez a0,1c001fe0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4254 + portRESET_READY_PRIORITY( pxTCB->uxPriority, uxTopReadyPriority ); +1c001fd0 lw a2,0(a4) +1c001fd2 li a5,1 +1c001fd4 sll a5,a5,a3 +1c001fd8 not a5,a5 +1c001fdc and a5,a5,a2 +1c001fde sw a5,0(a4) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4261 + prvAddTaskToReadyList( pxTCB ); +1c001fe0 li a0,20 +1c001fe2 mul a0,a3,a0 +1c001fe6 lw a2,0(a4) +1c001fe8 li a5,1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4282 + } +1c001fea lw s0,24(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4261 + prvAddTaskToReadyList( pxTCB ); +1c001fec sll a5,a5,a3 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4282 + } +1c001ff0 lw ra,28(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4261 + prvAddTaskToReadyList( pxTCB ); +1c001ff2 or a5,a5,a2 +1c001ff4 sw a5,0(a4) +1c001ff6 add a0,a0,s1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4282 + } +1c001ff8 lw s1,20(sp) +1c001ffa addi sp,sp,32 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4261 + prvAddTaskToReadyList( pxTCB ); +1c001ffc j 1c000ee0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4282 + } +1c002000 lw ra,28(sp) +1c002002 lw s0,24(sp) +1c002004 lw s1,20(sp) +1c002006 addi sp,sp,32 +1c002008 ret +1c00200a ret +vTaskEnterCritical(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4291 + portDISABLE_INTERRUPTS(); +1c00200c csrci mstatus,8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4293 + if( xSchedulerRunning != pdFALSE ) +1c002010 lw a5,-636(gp) # 1c009160 +1c002014 beqz a5,1c002024 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4295 + ( pxCurrentTCB->uxCriticalNesting )++; +1c002016 addi a5,gp,-684 # 1c009130 +1c00201a lw a3,0(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4303 + if( pxCurrentTCB->uxCriticalNesting == 1 ) +1c00201c lw a5,0(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4295 + ( pxCurrentTCB->uxCriticalNesting )++; +1c00201e lw a4,68(a3) +1c002020 addi a4,a4,1 +1c002022 sw a4,68(a3) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4312 + } +1c002024 ret +vTaskExitCritical(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4321 + if( xSchedulerRunning != pdFALSE ) +1c002026 lw a5,-636(gp) # 1c009160 +1c00202a beqz a5,1c002048 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4323 + if( pxCurrentTCB->uxCriticalNesting > 0U ) +1c00202c addi a5,gp,-684 # 1c009130 +1c002030 lw a4,0(a5) +1c002032 lw a4,68(a4) +1c002034 beqz a4,1c002048 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4325 + ( pxCurrentTCB->uxCriticalNesting )--; +1c002036 lw a3,0(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4327 + if( pxCurrentTCB->uxCriticalNesting == 0U ) +1c002038 lw a5,0(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4325 + ( pxCurrentTCB->uxCriticalNesting )--; +1c00203a lw a4,68(a3) +1c00203c addi a4,a4,-1 +1c00203e sw a4,68(a3) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4327 + if( pxCurrentTCB->uxCriticalNesting == 0U ) +1c002040 lw a5,68(a5) +1c002042 bnez a5,1c002048 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4329 + portENABLE_INTERRUPTS(); +1c002044 csrsi mstatus,8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4345 + } +1c002048 ret +xTaskCreate(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:739 + { +1c00204a addi sp,sp,-48 +1c00204c sw s3,28(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:773 + pxStack = pvPortMalloc( ( ( ( size_t ) usStackDepth ) * sizeof( StackType_t ) ) ); /*lint !e9079 All values returned by pvPortMalloc() have at least the alignment required by the MCU's stack and this allocation is the stack. */ +1c00204e slli s3,a2,0x2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:739 + { +1c002052 sw s6,16(sp) +1c002054 mv s6,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:773 + pxStack = pvPortMalloc( ( ( ( size_t ) usStackDepth ) * sizeof( StackType_t ) ) ); /*lint !e9079 All values returned by pvPortMalloc() have at least the alignment required by the MCU's stack and this allocation is the stack. */ +1c002056 mv a0,s3 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:739 + { +1c002058 sw s1,36(sp) +1c00205a sw s2,32(sp) +1c00205c sw s5,20(sp) +1c00205e sw s7,12(sp) +1c002060 sw ra,44(sp) +1c002062 sw s0,40(sp) +1c002064 sw s4,24(sp) +1c002066 sw s8,8(sp) +1c002068 mv s1,a1 +1c00206a mv s7,a3 +1c00206c mv s2,a4 +1c00206e mv s5,a5 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:773 + pxStack = pvPortMalloc( ( ( ( size_t ) usStackDepth ) * sizeof( StackType_t ) ) ); /*lint !e9079 All values returned by pvPortMalloc() have at least the alignment required by the MCU's stack and this allocation is the stack. */ +1c002070 jal ra,1c00296a +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:775 + if( pxStack != NULL ) +1c002074 beqz a0,1c0020a6 +1c002076 mv s4,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:778 + pxNewTCB = ( TCB_t * ) pvPortMalloc( sizeof( TCB_t ) ); /*lint !e9087 !e9079 All values returned by pvPortMalloc() have at least the alignment required by the MCU's stack, and the first member of TCB_t is always a pointer to the task's stack. */ +1c002078 li a0,1160 +1c00207c jal ra,1c00296a +1c002080 mv s0,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:780 + if( pxNewTCB != NULL ) +1c002082 beqz a0,1c0020a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:783 + pxNewTCB->pxStack = pxStack; +1c002084 sw s4,48(a0) +prvInitialiseNewTask(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:854 + ( void ) memset( pxNewTCB->pxStack, ( int ) tskSTACK_FILL_BYTE, ( size_t ) ulStackDepth * sizeof( StackType_t ) ); +1c002088 mv a2,s3 +1c00208a li a1,165 +1c00208e mv a0,s4 +1c002090 jal ra,1c000e7a +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:864 + pxTopOfStack = &( pxNewTCB->pxStack[ ulStackDepth - ( uint32_t ) 1 ] ); +1c002094 lw s8,48(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:892 + if( pcName != NULL ) +1c002098 bnez s1,1c0020aa +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:919 + pxNewTCB->pcTaskName[ 0 ] = 0x00; +1c00209a sb zero,52(s0) +1c00209e j 1c0020ca +xTaskCreate(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:789 + vPortFree( pxStack ); +1c0020a0 mv a0,s4 +1c0020a2 jal ra,1c002992 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:815 + xReturn = errCOULD_NOT_ALLOCATE_REQUIRED_MEMORY; +1c0020a6 li a0,-1 +1c0020a8 j 1c00223a +1c0020aa mv a1,s1 +1c0020ac addi a5,s0,52 +1c0020b0 addi a3,s1,16 +prvInitialiseNewTask(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:896 + pxNewTCB->pcTaskName[ x ] = pcName[ x ]; +1c0020b4 lb a4,0(a1) +1c0020b8 sb a4,0(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:901 + if( pcName[ x ] == ( char ) 0x00 ) +1c0020bc beqz a4,1c0020c6 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:894 + for( x = ( UBaseType_t ) 0; x < ( UBaseType_t ) configMAX_TASK_NAME_LEN; x++ ) +1c0020be addi a1,a1,1 +1c0020c0 addi a5,a5,1 +1c0020c2 bne a1,a3,1c0020b4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:913 + pxNewTCB->pcTaskName[ configMAX_TASK_NAME_LEN - 1 ] = '\0'; +1c0020c6 sb zero,67(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:924 + if( uxPriority >= ( UBaseType_t ) configMAX_PRIORITIES ) +1c0020ca li a5,4 +1c0020cc bgeu a5,s2,1c0020d2 +1c0020d0 li s2,4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:941 + vListInitialiseItem( &( pxNewTCB->xStateListItem ) ); +1c0020d2 addi s4,s0,4 +1c0020d6 mv a0,s4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:933 + pxNewTCB->uxPriority = uxPriority; +1c0020d8 sw s2,44(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:936 + pxNewTCB->uxBasePriority = uxPriority; +1c0020dc sw s2,80(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:937 + pxNewTCB->uxMutexesHeld = 0; +1c0020e0 sw zero,84(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:941 + vListInitialiseItem( &( pxNewTCB->xStateListItem ) ); +1c0020e4 jal ra,1c000eda +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:942 + vListInitialiseItem( &( pxNewTCB->xEventListItem ) ); +1c0020e8 addi a0,s0,24 +1c0020ec jal ra,1c000eda +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:949 + listSET_LIST_ITEM_VALUE( &( pxNewTCB->xEventListItem ), ( TickType_t ) configMAX_PRIORITIES - ( TickType_t ) uxPriority ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ +1c0020f0 li a4,5 +1c0020f2 sub s1,a4,s2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:992 + pxNewTCB->ulNotifiedValue = 0; +1c0020f6 sw zero,1152(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:1002 + _REENT_INIT_PTR( ( &( pxNewTCB->xNewLib_reent ) ) ); +1c0020fa li a2,1064 +1c0020fe li a1,0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:946 + listSET_LIST_ITEM_OWNER( &( pxNewTCB->xStateListItem ), pxNewTCB ); +1c002100 sw s0,16(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:949 + listSET_LIST_ITEM_VALUE( &( pxNewTCB->xEventListItem ), ( TickType_t ) configMAX_PRIORITIES - ( TickType_t ) uxPriority ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ +1c002102 sw s1,24(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:950 + listSET_LIST_ITEM_OWNER( &( pxNewTCB->xEventListItem ), pxNewTCB ); +1c002104 sw s0,36(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:954 + pxNewTCB->uxCriticalNesting = ( UBaseType_t ) 0U; +1c002106 sw zero,68(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:993 + pxNewTCB->ucNotifyState = taskNOT_WAITING_NOTIFICATION; +1c00210a sb zero,1156(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:1002 + _REENT_INIT_PTR( ( &( pxNewTCB->xNewLib_reent ) ) ); +1c00210e addi a0,s0,88 +1c002112 jal ra,1c000e7a +1c002116 addi a5,s0,836 +1c00211a sw a5,92(s0) +1c00211c addi a5,s0,940 +1c002120 sw a5,96(s0) +1c002122 li a4,1 +1c002124 addi a5,s0,1044 +1c002128 sw a5,100(s0) +1c00212a sw a4,256(s0) +1c00212e li a5,0 +1c002130 lui a4,0xabcd3 +1c002134 sw a5,260(s0) +1c002138 addi a4,a4,782 # abcd330e <__heap_l2_shared_start+0x8fcb993e> +1c00213c addi a5,s0,256 +1c002140 sw a4,8(a5) +1c002142 lui a4,0xe66d1 +1c002146 addi a4,a4,564 # e66d1234 <__heap_l2_shared_start+0xca6b7864> +1c00214a sw a4,12(a5) +1c00214c lui a4,0x5e +1c002150 addi a4,a4,-276 # 0005deec <__heap_l1_cluster_size+0x4df0c> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:864 + pxTopOfStack = &( pxNewTCB->pxStack[ ulStackDepth - ( uint32_t ) 1 ] ); +1c002154 addi s3,s3,-4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:1002 + _REENT_INIT_PTR( ( &( pxNewTCB->xNewLib_reent ) ) ); +1c002156 sw a4,16(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:864 + pxTopOfStack = &( pxNewTCB->pxStack[ ulStackDepth - ( uint32_t ) 1 ] ); +1c002158 add s3,s3,s8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:1002 + _REENT_INIT_PTR( ( &( pxNewTCB->xNewLib_reent ) ) ); +1c00215a li a5,11 +1c00215c sh a5,276(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:1008 + pxNewTCB->ucDelayAborted = pdFALSE; +1c002160 sb zero,1157(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:1058 + pxNewTCB->pxTopOfStack = pxPortInitialiseStack( pxTopOfStack, pxTaskCode, pvParameters ); +1c002164 mv a2,s7 +1c002166 mv a1,s6 +1c002168 andi a0,s3,-16 +1c00216c jal ra,1c000e00 +1c002170 sw a0,0(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:1064 + if( pxCreatedTask != NULL ) +1c002172 beqz s5,1c00217a +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:1068 + *pxCreatedTask = ( TaskHandle_t ) pxNewTCB; +1c002176 sw s0,0(s5) +prvAddNewTaskToReadyList(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:1081 + taskENTER_CRITICAL(); +1c00217a jal 1c00200c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:1083 + uxCurrentNumberOfTasks++; +1c00217c addi a5,gp,-672 # 1c00913c +1c002180 lw a4,0(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:1084 + if( pxCurrentTCB == NULL ) +1c002182 lui s1,0x1c009 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:1083 + uxCurrentNumberOfTasks++; +1c002186 addi a4,a4,1 +1c002188 sw a4,0(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:1084 + if( pxCurrentTCB == NULL ) +1c00218a addi a4,gp,-684 # 1c009130 +1c00218e lw a4,0(a4) +1c002190 addi s2,gp,-684 # 1c009130 +1c002194 addi s3,s1,-888 # 1c008c88 +1c002198 bnez a4,1c002252 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:1088 + pxCurrentTCB = pxNewTCB; +1c00219c sw s0,0(s2) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:1090 + if( uxCurrentNumberOfTasks == ( UBaseType_t ) 1 ) +1c0021a0 lw a4,0(a5) +1c0021a2 li a5,1 +1c0021a4 bne a4,a5,1c0021f4 +1c0021a8 addi s1,s1,-888 +1c0021ac addi s5,s3,100 +prvInitialiseTaskLists(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3613 + vListInitialise( &( pxReadyTasksLists[ uxPriority ] ) ); +1c0021b0 mv a0,s1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3611 + for( uxPriority = ( UBaseType_t ) 0U; uxPriority < ( UBaseType_t ) configMAX_PRIORITIES; uxPriority++ ) +1c0021b2 addi s1,s1,20 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3613 + vListInitialise( &( pxReadyTasksLists[ uxPriority ] ) ); +1c0021b4 jal ra,1c000ec6 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3611 + for( uxPriority = ( UBaseType_t ) 0U; uxPriority < ( UBaseType_t ) configMAX_PRIORITIES; uxPriority++ ) +1c0021b8 bne s5,s1,1c0021b0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3616 + vListInitialise( &xDelayedTaskList1 ); +1c0021bc addi s5,gp,-1776 # 1c008cec +1c0021c0 addi a0,gp,-1776 # 1c008cec +1c0021c4 jal ra,1c000ec6 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3617 + vListInitialise( &xDelayedTaskList2 ); +1c0021c8 addi s1,gp,-1756 # 1c008d00 +1c0021cc addi a0,gp,-1756 # 1c008d00 +1c0021d0 jal ra,1c000ec6 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3618 + vListInitialise( &xPendingReadyList ); +1c0021d4 addi a0,gp,-1736 # 1c008d14 +1c0021d8 jal ra,1c000ec6 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3622 + vListInitialise( &xTasksWaitingTermination ); +1c0021dc addi a0,gp,-1696 # 1c008d3c +1c0021e0 jal ra,1c000ec6 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3628 + vListInitialise( &xSuspendedTaskList ); +1c0021e4 addi a0,gp,-1716 # 1c008d28 +1c0021e8 jal ra,1c000ec6 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3634 + pxDelayedTaskList = &xDelayedTaskList1; +1c0021ec sw s5,-680(gp) # 1c009134 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3635 + pxOverflowDelayedTaskList = &xDelayedTaskList2; +1c0021f0 sw s1,-676(gp) # 1c009138 +prvAddNewTaskToReadyList(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:1124 + uxTaskNumber++; +1c0021f4 addi a4,gp,-660 # 1c009148 +1c0021f8 lw a5,0(a4) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:1134 + prvAddTaskToReadyList( pxNewTCB ); +1c0021fa lw a0,44(s0) +1c0021fc mv a1,s4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:1124 + uxTaskNumber++; +1c0021fe addi a5,a5,1 +1c002200 sw a5,0(a4) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:1134 + prvAddTaskToReadyList( pxNewTCB ); +1c002202 addi a4,gp,-656 # 1c00914c +1c002206 lw a3,0(a4) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:1129 + pxNewTCB->uxTCBNumber = uxTaskNumber; +1c002208 sw a5,72(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:1134 + prvAddTaskToReadyList( pxNewTCB ); +1c00220a li a5,1 +1c00220c sll a5,a5,a0 +1c002210 or a5,a5,a3 +1c002212 sw a5,0(a4) +1c002214 li a5,20 +1c002216 mul a0,a0,a5 +1c00221a add a0,a0,s3 +1c00221c jal ra,1c000ee0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:1138 + taskEXIT_CRITICAL(); +1c002220 jal 1c002026 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:1140 + if( xSchedulerRunning != pdFALSE ) +1c002222 lw a5,-636(gp) # 1c009160 +xTaskCreate(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:811 + xReturn = pdPASS; +1c002226 li a0,1 +prvAddNewTaskToReadyList(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:1140 + if( xSchedulerRunning != pdFALSE ) +1c002228 beqz a5,1c00223a +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:1144 + if( pxCurrentTCB->uxPriority < pxNewTCB->uxPriority ) +1c00222a lw a5,0(s2) +1c00222e lw a4,44(a5) +1c002230 lw a5,44(s0) +1c002232 bgeu a4,a5,1c00223a +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:1146 + taskYIELD_IF_USING_PREEMPTION(); +1c002236 ecall +xTaskCreate(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:819 + } +1c00223a lw ra,44(sp) +1c00223c lw s0,40(sp) +1c00223e lw s1,36(sp) +1c002240 lw s2,32(sp) +1c002242 lw s3,28(sp) +1c002244 lw s4,24(sp) +1c002246 lw s5,20(sp) +1c002248 lw s6,16(sp) +1c00224a lw s7,12(sp) +1c00224c lw s8,8(sp) +1c00224e addi sp,sp,48 +1c002250 ret +prvAddNewTaskToReadyList(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:1107 + if( xSchedulerRunning == pdFALSE ) +1c002252 lw a5,-636(gp) # 1c009160 +1c002256 bnez a5,1c0021f4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:1109 + if( pxCurrentTCB->uxPriority <= pxNewTCB->uxPriority ) +1c002258 lw a5,0(s2) +1c00225c lw a4,44(s0) +1c00225e lw a5,44(a5) +1c002260 bltu a4,a5,1c0021f4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:1111 + pxCurrentTCB = pxNewTCB; +1c002264 sw s0,0(s2) +1c002268 j 1c0021f4 +vTaskStartScheduler(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2009 + xReturn = xTaskCreate( prvIdleTask, +1c00226a lui a1,0x1c008 +1c00226e lui a0,0x1c002 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:1976 +{ +1c002272 addi sp,sp,-16 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2009 + xReturn = xTaskCreate( prvIdleTask, +1c002274 addi a5,gp,-652 # 1c009150 +1c002278 li a4,0 +1c00227a li a3,0 +1c00227c li a2,400 +1c002280 addi a1,a1,1360 # 1c008550 <__func__.9+0x184> +1c002284 addi a0,a0,758 # 1c0022f6 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:1976 +{ +1c002288 sw s0,8(sp) +1c00228a sw ra,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2020 + if( xReturn == pdPASS ) +1c00228c li s0,1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2009 + xReturn = xTaskCreate( prvIdleTask, +1c00228e jal 1c00204a +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2020 + if( xReturn == pdPASS ) +1c002290 bne a0,s0,1c0022c6 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2022 + xReturn = xTimerCreateTimerTask(); +1c002294 jal 1c0025c0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2031 + if( xReturn == pdPASS ) +1c002296 bne a0,s0,1c0022c6 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2047 + portDISABLE_INTERRUPTS(); +1c00229a csrci mstatus,8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2055 + _impure_ptr = &( pxCurrentTCB->xNewLib_reent ); +1c00229e lw a5,-684(gp) # 1c009130 +1c0022a2 lui a4,0x1c009 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2096 +} +1c0022a6 lw s0,8(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2055 + _impure_ptr = &( pxCurrentTCB->xNewLib_reent ); +1c0022a8 addi a5,a5,88 +1c0022ac sw a5,-956(a4) # 1c008c44 <_impure_ptr> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2059 + xNextTaskUnblockTime = portMAX_DELAY; +1c0022b0 li a4,-1 +1c0022b2 sw a4,-648(gp) # 1c009154 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2060 + xSchedulerRunning = pdTRUE; +1c0022b6 sw a0,-636(gp) # 1c009160 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2096 +} +1c0022ba lw ra,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2061 + xTickCount = ( TickType_t ) configINITIAL_TICK_COUNT; +1c0022bc sw zero,-632(gp) # 1c009164 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2096 +} +1c0022c0 addi sp,sp,16 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2075 + if( xPortStartScheduler() != pdFALSE ) +1c0022c2 j 1c00291a +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2090 + configASSERT( xReturn != errCOULD_NOT_ALLOCATE_REQUIRED_MEMORY ); +1c0022c6 li a5,-1 +1c0022c8 bne a0,a5,1c0022ee +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2090 (discriminator 1) +1c0022cc lui a3,0x1c008 +1c0022d0 lui a2,0x1c008 +1c0022d4 lui a1,0x1 +1c0022d6 lui a0,0x1c008 +1c0022da addi a3,a3,1368 # 1c008558 <__func__.9+0x18c> +1c0022de addi a2,a2,1520 # 1c0085f0 <__func__.19> +1c0022e2 addi a1,a1,-2006 # 0000082a <__stack_size+0x2a> +1c0022e6 addi a0,a0,1000 # 1c0083e8 <__func__.9+0x1c> +1c0022ea jal ra,1c0037c8 <__assert_func> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2096 +} +1c0022ee lw ra,12(sp) +1c0022f0 lw s0,8(sp) +1c0022f2 addi sp,sp,16 +1c0022f4 ret +prvIdleTask(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3393 +{ +1c0022f6 addi sp,sp,-32 +1c0022f8 sw s1,20(sp) +1c0022fa sw s3,12(sp) +1c0022fc sw s4,8(sp) +1c0022fe sw ra,28(sp) +1c002300 sw s0,24(sp) +1c002302 sw s2,16(sp) +prvCheckTasksWaitingTermination(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3654 + pxTCB = listGET_OWNER_OF_HEAD_ENTRY( ( &xTasksWaitingTermination ) ); /*lint !e9079 void * is used as this macro is used with timers and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ +1c002304 addi s1,gp,-1696 # 1c008d3c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3650 + while( uxDeletedTasksWaitingCleanUp > ( UBaseType_t ) 0U ) +1c002308 addi s2,gp,-668 # 1c009140 +1c00230c lw a5,0(s2) +1c002310 beqz a5,1c002308 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3652 + taskENTER_CRITICAL(); +1c002312 jal 1c00200c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3654 + pxTCB = listGET_OWNER_OF_HEAD_ENTRY( ( &xTasksWaitingTermination ) ); /*lint !e9079 void * is used as this macro is used with timers and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ +1c002314 lw a5,12(s1) +1c002316 lw s0,12(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3655 + ( void ) uxListRemove( &( pxTCB->xStateListItem ) ); +1c002318 addi a0,s0,4 +1c00231c jal ra,1c000f26 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3656 + --uxCurrentNumberOfTasks; +1c002320 addi a4,gp,-672 # 1c00913c +1c002324 lw a5,0(a4) +1c002326 addi a5,a5,-1 +1c002328 sw a5,0(a4) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3657 + --uxDeletedTasksWaitingCleanUp; +1c00232a lw a5,0(s2) +1c00232e addi a5,a5,-1 +1c002330 sw a5,0(s2) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3659 + taskEXIT_CRITICAL(); +1c002334 jal 1c002026 +prvDeleteTCB(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3900 + _reclaim_reent( &( pxTCB->xNewLib_reent ) ); +1c002336 addi a0,s0,88 +1c00233a jal ra,1c003f02 <_reclaim_reent> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3908 + vPortFree( pxTCB->pxStack ); +1c00233e lw a0,48(s0) +1c002340 jal ra,1c002992 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3909 + vPortFree( pxTCB ); +1c002344 mv a0,s0 +1c002346 jal ra,1c002992 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3938 + } +1c00234a j 1c002308 +xTaskResumeAll(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2195 +{ +1c00234c addi sp,sp,-64 +1c00234e sw s0,56(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2201 + configASSERT( uxSchedulerSuspended ); +1c002350 addi s0,gp,-664 # 1c009144 +1c002354 lw a5,0(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2195 +{ +1c002356 sw ra,60(sp) +1c002358 sw s1,52(sp) +1c00235a sw s2,48(sp) +1c00235c sw s3,44(sp) +1c00235e sw s4,40(sp) +1c002360 sw s5,36(sp) +1c002362 sw s6,32(sp) +1c002364 sw s7,28(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2201 + configASSERT( uxSchedulerSuspended ); +1c002366 bnez a5,1c00238a +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2201 (discriminator 1) +1c002368 lui a3,0x1c008 +1c00236c lui a2,0x1c008 +1c002370 lui a1,0x1 +1c002372 lui a0,0x1c008 +1c002376 addi a3,a3,1388 # 1c00856c <__func__.9+0x1a0> +1c00237a addi a2,a2,1504 # 1c0085e0 <__func__.18> +1c00237e addi a1,a1,-1895 # 00000899 <__stack_size+0x99> +1c002382 addi a0,a0,1000 # 1c0083e8 <__func__.9+0x1c> +1c002386 jal ra,1c0037c8 <__assert_func> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2208 + taskENTER_CRITICAL(); +1c00238a jal ra,1c00200c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2210 + --uxSchedulerSuspended; +1c00238e lw a5,0(s0) +1c002390 addi a5,a5,-1 +1c002392 sw a5,0(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2212 + if( uxSchedulerSuspended == ( UBaseType_t ) pdFALSE ) +1c002394 lw a5,0(s0) +1c002396 beqz a5,1c0023b8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2197 +BaseType_t xAlreadyYielded = pdFALSE; +1c002398 li a0,0 +1c00239a sw a0,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2298 + taskEXIT_CRITICAL(); +1c00239c jal ra,1c002026 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2301 +} +1c0023a0 lw ra,60(sp) +1c0023a2 lw s0,56(sp) +1c0023a4 lw a0,12(sp) +1c0023a6 lw s1,52(sp) +1c0023a8 lw s2,48(sp) +1c0023aa lw s3,44(sp) +1c0023ac lw s4,40(sp) +1c0023ae lw s5,36(sp) +1c0023b0 lw s6,32(sp) +1c0023b2 lw s7,28(sp) +1c0023b4 addi sp,sp,64 +1c0023b6 ret +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2214 + if( uxCurrentNumberOfTasks > ( UBaseType_t ) 0U ) +1c0023b8 lw a5,-672(gp) # 1c00913c +1c0023bc beqz a5,1c002398 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2223 + prvAddTaskToReadyList( pxTCB ); +1c0023be lui s2,0x1c009 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2196 +TCB_t *pxTCB = NULL; +1c0023c2 li s0,0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2218 + while( listLIST_IS_EMPTY( &xPendingReadyList ) == pdFALSE ) +1c0023c4 addi s1,gp,-1736 # 1c008d14 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2223 + prvAddTaskToReadyList( pxTCB ); +1c0023c8 li s3,1 +1c0023ca addi s2,s2,-888 # 1c008c88 +1c0023ce li s5,20 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2229 + xYieldPending = pdTRUE; +1c0023d0 j 1c00241c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2220 + pxTCB = listGET_OWNER_OF_HEAD_ENTRY( ( &xPendingReadyList ) ); /*lint !e9079 void * is used as this macro is used with timers and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ +1c0023d2 lw a5,12(s1) +1c0023d4 lw s0,12(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2221 + ( void ) uxListRemove( &( pxTCB->xEventListItem ) ); +1c0023d6 addi a0,s0,24 +1c0023da jal ra,1c000f26 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2222 + ( void ) uxListRemove( &( pxTCB->xStateListItem ) ); +1c0023de addi a1,s0,4 +1c0023e2 mv a0,a1 +1c0023e4 sw a1,12(sp) +1c0023e6 jal ra,1c000f26 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2223 + prvAddTaskToReadyList( pxTCB ); +1c0023ea lw a0,44(s0) +1c0023ec addi a4,gp,-656 # 1c00914c +1c0023f0 lw a3,0(a4) +1c0023f2 sll a5,s3,a0 +1c0023f6 mul a0,a0,s5 +1c0023fa lw a1,12(sp) +1c0023fc or a5,a5,a3 +1c0023fe sw a5,0(a4) +1c002400 add a0,a0,s2 +1c002402 jal ra,1c000ee0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2227 + if( pxTCB->uxPriority >= pxCurrentTCB->uxPriority ) +1c002406 addi a5,gp,-684 # 1c009130 +1c00240a lw a5,0(a5) +1c00240c lw a4,44(s0) +1c00240e lw a5,44(a5) +1c002410 bltu a4,a5,1c00241c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2229 + xYieldPending = pdTRUE; +1c002414 addi a5,gp,-628 # 1c009168 +1c002418 sw s3,0(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2218 + while( listLIST_IS_EMPTY( &xPendingReadyList ) == pdFALSE ) +1c00241c lw a5,0(s1) +1c00241e bnez a5,1c0023d2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2237 + if( pxTCB != NULL ) +1c002420 beqz s0,1c002426 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2245 + prvResetNextTaskUnblockTime(); +1c002422 jal ra,1c0019f8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2253 + TickType_t xPendedCounts = xPendedTicks; /* Non-volatile copy. */ +1c002426 addi a4,gp,-640 # 1c00915c +1c00242a lw s1,0(a4) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2255 + if( xPendedCounts > ( TickType_t ) 0U ) +1c00242c addi s0,gp,-640 # 1c00915c +1c002430 beqz s1,1c00244a +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2261 + xYieldPending = pdTRUE; +1c002432 li s3,1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2259 + if( xTaskIncrementTick() != pdFALSE ) +1c002434 jal ra,1c001a28 +1c002438 beqz a0,1c002442 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2261 + xYieldPending = pdTRUE; +1c00243a addi a5,gp,-628 # 1c009168 +1c00243e sw s3,0(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2267 + --xPendedCounts; +1c002442 addi s1,s1,-1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2268 + } while( xPendedCounts > ( TickType_t ) 0U ); +1c002444 bnez s1,1c002434 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2270 + xPendedTicks = 0; +1c002446 sw zero,0(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2278 + if( xYieldPending != pdFALSE ) +1c00244a lw a5,-628(gp) # 1c009168 +1c00244e beqz a5,1c002398 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2285 + taskYIELD_IF_USING_PREEMPTION(); +1c002450 ecall +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:2282 + xAlreadyYielded = pdTRUE; +1c002454 li a0,1 +1c002456 j 1c00239a +xTaskCheckForTimeOut(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3275 +{ +1c002458 addi sp,sp,-32 +1c00245a sw ra,28(sp) +1c00245c sw s0,24(sp) +1c00245e sw s1,20(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3278 + configASSERT( pxTimeOut ); +1c002460 bnez a0,1c002484 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3278 (discriminator 1) +1c002462 lui a3,0x1c008 +1c002466 lui a2,0x1c008 +1c00246a lui a1,0x1 +1c00246c addi a3,a3,1412 # 1c008584 <__func__.9+0x1b8> +1c002470 addi a2,a2,1600 # 1c008640 <__func__.5> +1c002474 addi a1,a1,-818 # 00000cce <__stack_size+0x4ce> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3279 (discriminator 1) + configASSERT( pxTicksToWait ); +1c002478 lui a0,0x1c008 +1c00247c addi a0,a0,1000 # 1c0083e8 <__func__.9+0x1c> +1c002480 jal ra,1c0037c8 <__assert_func> +1c002484 mv s0,a1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3279 +1c002486 bnez a1,1c0024a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3279 (discriminator 1) +1c002488 lui a3,0x1c008 +1c00248c lui a2,0x1c008 +1c002490 lui a1,0x1 +1c002492 addi a3,a3,1424 # 1c008590 <__func__.9+0x1c4> +1c002496 addi a2,a2,1600 # 1c008640 <__func__.5> +1c00249a addi a1,a1,-817 # 00000ccf <__stack_size+0x4cf> +1c00249e j 1c002478 +1c0024a0 mv s1,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3281 + taskENTER_CRITICAL(); +1c0024a2 jal ra,1c00200c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3288 + if( pxCurrentTCB->ucDelayAborted != ( uint8_t ) pdFALSE ) +1c0024a6 addi a4,gp,-684 # 1c009130 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3284 + const TickType_t xConstTickCount = xTickCount; +1c0024aa lw a3,-632(gp) # 1c009164 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3288 + if( pxCurrentTCB->ucDelayAborted != ( uint8_t ) pdFALSE ) +1c0024ae lw a5,0(a4) +1c0024b0 lbu a5,1157(a5) +1c0024b4 beqz a5,1c0024c0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3292 + pxCurrentTCB->ucDelayAborted = pdFALSE; +1c0024b6 lw a5,0(a4) +1c0024b8 sb zero,1157(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3328 + xReturn = pdTRUE; +1c0024bc li a0,1 +1c0024be j 1c0024f2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3299 + if( *pxTicksToWait == portMAX_DELAY ) +1c0024c0 lw a5,0(s0) +1c0024c2 li a4,-1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3304 + xReturn = pdFALSE; +1c0024c4 li a0,0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3299 + if( *pxTicksToWait == portMAX_DELAY ) +1c0024c6 beq a5,a4,1c0024f2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3309 + if( ( xNumOfOverflows != pxTimeOut->xOverflowCount ) && ( xConstTickCount >= pxTimeOut->xTimeOnEntering ) ) /*lint !e525 Indentation preferred as is to make code within pre-processor directives clearer. */ +1c0024ca lw a2,-644(gp) # 1c009158 +1c0024ce lw a1,0(s1) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3285 + const TickType_t xElapsedTime = xConstTickCount - pxTimeOut->xTimeOnEntering; +1c0024d0 lw a4,4(s1) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3309 + if( ( xNumOfOverflows != pxTimeOut->xOverflowCount ) && ( xConstTickCount >= pxTimeOut->xTimeOnEntering ) ) /*lint !e525 Indentation preferred as is to make code within pre-processor directives clearer. */ +1c0024d2 beq a1,a2,1c0024dc +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3316 (discriminator 1) + xReturn = pdTRUE; +1c0024d6 li a0,1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3309 (discriminator 1) + if( ( xNumOfOverflows != pxTimeOut->xOverflowCount ) && ( xConstTickCount >= pxTimeOut->xTimeOnEntering ) ) /*lint !e525 Indentation preferred as is to make code within pre-processor directives clearer. */ +1c0024d8 bgeu a3,a4,1c0024f2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3285 + const TickType_t xElapsedTime = xConstTickCount - pxTimeOut->xTimeOnEntering; +1c0024dc sub a2,a3,a4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3318 + else if( xElapsedTime < *pxTicksToWait ) /*lint !e961 Explicit casting is only redundant with some compilers, whereas others require it to prevent integer conversion errors. */ +1c0024e0 bgeu a2,a5,1c002504 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3321 + *pxTicksToWait -= xElapsedTime; +1c0024e4 sub a5,a5,a3 +1c0024e6 add a5,a5,a4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3322 + vTaskInternalSetTimeOutState( pxTimeOut ); +1c0024e8 mv a0,s1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3321 + *pxTicksToWait -= xElapsedTime; +1c0024ea sw a5,0(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3322 + vTaskInternalSetTimeOutState( pxTimeOut ); +1c0024ec jal ra,1c001d6e +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3323 + xReturn = pdFALSE; +1c0024f0 li a0,0 +1c0024f2 sw a0,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3331 + taskEXIT_CRITICAL(); +1c0024f4 jal ra,1c002026 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3334 +} +1c0024f8 lw ra,28(sp) +1c0024fa lw s0,24(sp) +1c0024fc lw a0,12(sp) +1c0024fe lw s1,20(sp) +1c002500 addi sp,sp,32 +1c002502 ret +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:3327 + *pxTicksToWait = 0; +1c002504 sw zero,0(s0) +1c002508 j 1c0024bc +pvTaskIncrementMutexHeldCount(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4622 + if( pxCurrentTCB != NULL ) +1c00250a addi a4,gp,-684 # 1c009130 +1c00250e lw a4,0(a4) +1c002510 addi a5,gp,-684 # 1c009130 +1c002514 beqz a4,1c00251e +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4624 + ( pxCurrentTCB->uxMutexesHeld )++; +1c002516 lw a3,0(a5) +1c002518 lw a4,84(a3) +1c00251a addi a4,a4,1 +1c00251c sw a4,84(a3) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4627 + return pxCurrentTCB; +1c00251e lw a0,0(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/tasks.c:4628 + } +1c002520 ret +prvCheckForValidListAndQueue(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:942 + pxOverflowTimerList = pxTemp; +} +/*-----------------------------------------------------------*/ + +static void prvCheckForValidListAndQueue( void ) +{ +1c002522 addi sp,sp,-16 +1c002524 sw s0,8(sp) +1c002526 sw ra,12(sp) +1c002528 sw s1,4(sp) +1c00252a sw s2,0(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:948 + /* Check that the list from which active timers are referenced, and the + queue used to communicate with the timer service, have been + initialised. */ + taskENTER_CRITICAL(); + { + if( xTimerQueue == NULL ) +1c00252c addi s0,gp,-612 # 1c009178 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:946 + taskENTER_CRITICAL(); +1c002530 jal ra,1c00200c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:948 + if( xTimerQueue == NULL ) +1c002534 lw a5,0(s0) +1c002536 bnez a5,1c002572 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:950 + { + vListInitialise( &xActiveTimerList1 ); +1c002538 addi s2,gp,-1676 # 1c008d50 +1c00253c addi a0,gp,-1676 # 1c008d50 +1c002540 jal ra,1c000ec6 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:951 + vListInitialise( &xActiveTimerList2 ); +1c002544 addi s1,gp,-1656 # 1c008d64 +1c002548 addi a0,gp,-1656 # 1c008d64 +1c00254c jal ra,1c000ec6 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:952 + pxCurrentTimerList = &xActiveTimerList1; +1c002550 sw s2,-624(gp) # 1c00916c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:966 + + xTimerQueue = xQueueCreateStatic( ( UBaseType_t ) configTIMER_QUEUE_LENGTH, ( UBaseType_t ) sizeof( DaemonTaskMessage_t ), &( ucStaticTimerQueueStorage[ 0 ] ), &xStaticTimerQueue ); + } + #else + { + xTimerQueue = xQueueCreate( ( UBaseType_t ) configTIMER_QUEUE_LENGTH, sizeof( DaemonTaskMessage_t ) ); +1c002554 li a2,0 +1c002556 li a1,16 +1c002558 li a0,4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:953 + pxOverflowTimerList = &xActiveTimerList2; +1c00255a sw s1,-620(gp) # 1c009170 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:966 + xTimerQueue = xQueueCreate( ( UBaseType_t ) configTIMER_QUEUE_LENGTH, sizeof( DaemonTaskMessage_t ) ); +1c00255e jal ra,1c001114 +1c002562 sw a0,0(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:972 + } + #endif + + #if ( configQUEUE_REGISTRY_SIZE > 0 ) + { + if( xTimerQueue != NULL ) +1c002564 beqz a0,1c002572 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:974 + { + vQueueAddToRegistry( xTimerQueue, "TmrQ" ); +1c002566 lui a1,0x1c008 +1c00256a addi a1,a1,1684 # 1c008694 <__func__.9+0x20> +1c00256e jal ra,1c00185e +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:989 + { + mtCOVERAGE_TEST_MARKER(); + } + } + taskEXIT_CRITICAL(); +} +1c002572 lw s0,8(sp) +1c002574 lw ra,12(sp) +1c002576 lw s1,4(sp) +1c002578 lw s2,0(sp) +1c00257a addi sp,sp,16 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:988 + taskEXIT_CRITICAL(); +1c00257c j 1c002026 +prvInsertTimerInActiveList(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:694 +{ +1c002580 addi sp,sp,-16 +1c002582 sw ra,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:697 + listSET_LIST_ITEM_VALUE( &( pxTimer->xTimerListItem ), xNextExpiryTime ); +1c002584 sw a1,4(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:698 + listSET_LIST_ITEM_OWNER( &( pxTimer->xTimerListItem ), pxTimer ); +1c002586 sw a0,16(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:694 +{ +1c002588 mv a5,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:700 + if( xNextExpiryTime <= xTimeNow ) +1c00258a bltu a2,a1,1c0025ac +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:704 + if( ( ( TickType_t ) ( xTimeNow - xCommandTime ) ) >= pxTimer->xTimerPeriodInTicks ) /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ +1c00258e lw a4,24(a0) +1c002590 sub a2,a2,a3 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:708 + xProcessTimerNow = pdTRUE; +1c002592 li a0,1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:704 + if( ( ( TickType_t ) ( xTimeNow - xCommandTime ) ) >= pxTimer->xTimerPeriodInTicks ) /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ +1c002594 bgeu a2,a4,1c0025a6 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:712 + vListInsert( pxOverflowTimerList, &( pxTimer->xTimerListItem ) ); +1c002598 addi a1,a5,4 +1c00259c lw a0,-620(gp) # 1c009170 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:726 + vListInsert( pxCurrentTimerList, &( pxTimer->xTimerListItem ) ); +1c0025a0 jal ra,1c000ef8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:695 +BaseType_t xProcessTimerNow = pdFALSE; +1c0025a4 li a0,0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:731 +} +1c0025a6 lw ra,12(sp) +1c0025a8 addi sp,sp,16 +1c0025aa ret +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:717 + if( ( xTimeNow < xCommandTime ) && ( xNextExpiryTime >= xCommandTime ) ) +1c0025ac bgeu a2,a3,1c0025b6 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:708 (discriminator 1) + xProcessTimerNow = pdTRUE; +1c0025b0 li a0,1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:717 (discriminator 1) + if( ( xTimeNow < xCommandTime ) && ( xNextExpiryTime >= xCommandTime ) ) +1c0025b2 bgeu a1,a3,1c0025a6 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:726 + vListInsert( pxCurrentTimerList, &( pxTimer->xTimerListItem ) ); +1c0025b6 addi a1,a5,4 +1c0025ba lw a0,-624(gp) # 1c00916c +1c0025be j 1c0025a0 +xTimerCreateTimerTask(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:228 +{ +1c0025c0 addi sp,sp,-16 +1c0025c2 sw ra,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:235 + prvCheckForValidListAndQueue(); +1c0025c4 jal 1c002522 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:237 + if( xTimerQueue != NULL ) +1c0025c6 lw a5,-612(gp) # 1c009178 +1c0025ca bnez a5,1c0025ec +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:275 + configASSERT( xReturn ); +1c0025cc lui a3,0x1c008 +1c0025d0 lui a2,0x1c008 +1c0025d4 lui a0,0x1c008 +1c0025d8 addi a3,a3,1692 # 1c00869c <__func__.9+0x28> +1c0025dc addi a2,a2,1968 # 1c0087b0 <__func__.16> +1c0025e0 li a1,275 +1c0025e4 addi a0,a0,1700 # 1c0086a4 <__func__.9+0x30> +1c0025e8 jal ra,1c0037c8 <__assert_func> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:261 + xReturn = xTaskCreate( prvTimerTask, +1c0025ec lui a1,0x1c008 +1c0025f0 lui a0,0x1c002 +1c0025f4 addi a5,gp,-608 # 1c00917c +1c0025f8 li a4,4 +1c0025fa li a3,0 +1c0025fc li a2,400 +1c002600 addi a1,a1,1768 # 1c0086e8 <__func__.9+0x74> +1c002604 addi a0,a0,1876 # 1c002754 +1c002608 jal ra,1c00204a +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:275 + configASSERT( xReturn ); +1c00260c beqz a0,1c0025cc +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:277 +} +1c00260e lw ra,12(sp) +1c002610 addi sp,sp,16 +1c002612 ret +xTimerGenericCommand(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:382 +{ +1c002614 addi sp,sp,-32 +1c002616 sw ra,28(sp) +1c002618 sw s0,24(sp) +1c00261a sw s1,20(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:386 + configASSERT( xTimer ); +1c00261c bnez a0,1c00263e +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:386 (discriminator 1) +1c00261e lui a3,0x1c008 +1c002622 lui a2,0x1c008 +1c002626 lui a0,0x1c008 +1c00262a addi a3,a3,1776 # 1c0086f0 <__func__.9+0x7c> +1c00262e addi a2,a2,1872 # 1c008750 <__func__.10> +1c002632 li a1,386 +1c002636 addi a0,a0,1700 # 1c0086a4 <__func__.9+0x30> +1c00263a jal ra,1c0037c8 <__assert_func> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:390 + if( xTimerQueue != NULL ) +1c00263e addi s0,gp,-612 # 1c009178 +1c002642 mv s1,a4 +1c002644 lw a4,0(s0) +1c002646 mv a5,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:383 +BaseType_t xReturn = pdFAIL; +1c002648 li a0,0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:390 + if( xTimerQueue != NULL ) +1c00264a beqz a4,1c002672 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:395 + xMessage.u.xTimerParameters.pxTimer = xTimer; +1c00264c sw a5,8(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:393 + xMessage.xMessageID = xCommandID; +1c00264e sw a1,0(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:394 + xMessage.u.xTimerParameters.xMessageValue = xOptionalValue; +1c002650 sw a2,4(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:397 + if( xCommandID < tmrFIRST_FROM_ISR_COMMAND ) +1c002652 li a5,5 +1c002654 blt a5,a1,1c00267c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:399 + if( xTaskGetSchedulerState() == taskSCHEDULER_RUNNING ) +1c002658 jal ra,1c001d84 +1c00265c mv a4,a0 +1c00265e li a5,2 +1c002660 lw a0,0(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:401 + xReturn = xQueueSendToBack( xTimerQueue, &xMessage, xTicksToWait ); +1c002662 li a3,0 +1c002664 mv a2,s1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:399 + if( xTaskGetSchedulerState() == taskSCHEDULER_RUNNING ) +1c002666 beq a4,a5,1c00266c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:405 + xReturn = xQueueSendToBack( xTimerQueue, &xMessage, tmrNO_DELAY ); +1c00266a li a2,0 +1c00266c mv a1,sp +1c00266e jal ra,1c0011d8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:421 +} +1c002672 lw ra,28(sp) +1c002674 lw s0,24(sp) +1c002676 lw s1,20(sp) +1c002678 addi sp,sp,32 +1c00267a ret +1c00267c mv a6,a3 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:410 + xReturn = xQueueSendToBackFromISR( xTimerQueue, &xMessage, pxHigherPriorityTaskWoken ); +1c00267e mv a2,a6 +1c002680 li a3,0 +1c002682 mv a1,sp +1c002684 mv a0,a4 +1c002686 jal ra,1c001356 +1c00268a j 1c002672 +prvSampleTimeNow(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:671 +{ +1c00268c addi sp,sp,-48 +1c00268e sw s1,36(sp) +1c002690 sw s2,32(sp) +1c002692 sw s3,28(sp) +1c002694 sw ra,44(sp) +1c002696 sw s0,40(sp) +1c002698 sw s4,24(sp) +1c00269a sw s5,20(sp) +1c00269c mv s3,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:675 + xTimeNow = xTaskGetTickCount(); +1c00269e jal ra,1c001a22 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:677 + if( xTimeNow < xLastTime ) +1c0026a2 lw a5,-616(gp) # 1c009174 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:675 + xTimeNow = xTaskGetTickCount(); +1c0026a6 mv s1,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:677 + if( xTimeNow < xLastTime ) +1c0026a8 addi s2,gp,-616 # 1c009174 +1c0026ac bgeu a0,a5,1c00274e +prvSwitchTimerLists(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:893 + while( listLIST_IS_EMPTY( pxCurrentTimerList ) == pdFALSE ) +1c0026b0 addi s4,gp,-624 # 1c00916c +1c0026b4 lw a4,0(s4) +1c0026b8 lw a5,0(a4) +1c0026ba bnez a5,1c0026e6 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:936 + pxCurrentTimerList = pxOverflowTimerList; +1c0026bc addi a5,gp,-620 # 1c009170 +1c0026c0 lw a3,0(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:937 + pxOverflowTimerList = pxTemp; +1c0026c2 sw a4,0(a5) +prvSampleTimeNow(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:680 + *pxTimerListsWereSwitched = pdTRUE; +1c0026c4 li a5,1 +prvSwitchTimerLists(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:936 + pxCurrentTimerList = pxOverflowTimerList; +1c0026c6 sw a3,0(s4) +prvSampleTimeNow(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:680 + *pxTimerListsWereSwitched = pdTRUE; +1c0026ca sw a5,0(s3) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:690 +} +1c0026ce lw ra,44(sp) +1c0026d0 lw s0,40(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:687 + xLastTime = xTimeNow; +1c0026d2 sw s1,0(s2) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:690 +} +1c0026d6 lw s3,28(sp) +1c0026d8 lw s2,32(sp) +1c0026da lw s4,24(sp) +1c0026dc lw s5,20(sp) +1c0026de mv a0,s1 +1c0026e0 lw s1,36(sp) +1c0026e2 addi sp,sp,48 +1c0026e4 ret +prvSwitchTimerLists(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:895 + xNextExpireTime = listGET_ITEM_VALUE_OF_HEAD_ENTRY( pxCurrentTimerList ); +1c0026e6 lw a5,12(a4) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:898 + pxTimer = ( Timer_t * ) listGET_OWNER_OF_HEAD_ENTRY( pxCurrentTimerList ); /*lint !e9087 !e9079 void * is used as this macro is used with tasks and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ +1c0026e8 lw s0,12(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:895 + xNextExpireTime = listGET_ITEM_VALUE_OF_HEAD_ENTRY( pxCurrentTimerList ); +1c0026ea lw a2,0(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:899 + ( void ) uxListRemove( &( pxTimer->xTimerListItem ) ); +1c0026ec addi a1,s0,4 +1c0026f0 mv a0,a1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:895 + xNextExpireTime = listGET_ITEM_VALUE_OF_HEAD_ENTRY( pxCurrentTimerList ); +1c0026f2 sw a2,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:899 + ( void ) uxListRemove( &( pxTimer->xTimerListItem ) ); +1c0026f4 sw a1,8(sp) +1c0026f6 jal ra,1c000f26 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:905 + pxTimer->pxCallbackFunction( ( TimerHandle_t ) pxTimer ); +1c0026fa lw a5,32(s0) +1c0026fc mv a0,s0 +1c0026fe jalr a5 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:907 + if( ( pxTimer->ucStatus & tmrSTATUS_IS_AUTORELOAD ) != 0 ) +1c002700 lbu a5,40(s0) +1c002704 lw a1,8(sp) +1c002706 lw a2,12(sp) +1c002708 andi a5,a5,4 +1c00270a beqz a5,1c0026b0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:915 + xReloadTime = ( xNextExpireTime + pxTimer->xTimerPeriodInTicks ); +1c00270c lw a5,24(s0) +1c00270e add a5,a5,a2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:916 + if( xReloadTime > xNextExpireTime ) +1c002710 bgeu a2,a5,1c002722 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:920 + vListInsert( pxCurrentTimerList, &( pxTimer->xTimerListItem ) ); +1c002714 lw a0,0(s4) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:918 + listSET_LIST_ITEM_VALUE( &( pxTimer->xTimerListItem ), xReloadTime ); +1c002718 sw a5,4(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:919 + listSET_LIST_ITEM_OWNER( &( pxTimer->xTimerListItem ), pxTimer ); +1c00271a sw s0,16(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:920 + vListInsert( pxCurrentTimerList, &( pxTimer->xTimerListItem ) ); +1c00271c jal ra,1c000ef8 +1c002720 j 1c0026b0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:924 + xResult = xTimerGenericCommand( pxTimer, tmrCOMMAND_START_DONT_TRACE, xNextExpireTime, NULL, tmrNO_DELAY ); +1c002722 li a4,0 +1c002724 li a3,0 +1c002726 li a1,0 +1c002728 mv a0,s0 +1c00272a jal 1c002614 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:925 + configASSERT( xResult ); +1c00272c bnez a0,1c0026b0 +1c00272e lui a3,0x1c008 +1c002732 lui a2,0x1c008 +1c002736 lui a0,0x1c008 +1c00273a addi a3,a3,1784 # 1c0086f8 <__func__.9+0x84> +1c00273e addi a2,a2,1948 # 1c00879c <__func__.14> +1c002742 li a1,925 +1c002746 addi a0,a0,1700 # 1c0086a4 <__func__.9+0x30> +1c00274a jal ra,1c0037c8 <__assert_func> +prvSampleTimeNow(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:684 + *pxTimerListsWereSwitched = pdFALSE; +1c00274e sw zero,0(s3) +1c002752 j 1c0026ce +prvTimerTask(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:549 +{ +1c002754 addi sp,sp,-80 +1c002756 sw s2,64(sp) +1c002758 lui s2,0x1c008 +1c00275c sw s3,60(sp) +1c00275e sw s5,52(sp) +1c002760 sw ra,76(sp) +1c002762 sw s0,72(sp) +1c002764 sw s1,68(sp) +1c002766 sw s4,56(sp) +1c002768 sw s6,48(sp) +1c00276a sw s7,44(sp) +prvGetNextExpireTime(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:655 + *pxListWasEmpty = listLIST_IS_EMPTY( pxCurrentTimerList ); +1c00276c addi s2,s2,1832 # 1c008728 <__func__.9+0xb4> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:655 (discriminator 1) +1c002770 lw a5,-624(gp) # 1c00916c +1c002774 addi s7,gp,-624 # 1c00916c +1c002778 li s0,1 +1c00277a lw s1,0(a5) +1c00277c beqz s1,1c002784 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:658 + xNextExpireTime = listGET_ITEM_VALUE_OF_HEAD_ENTRY( pxCurrentTimerList ); +1c00277e lw a5,12(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:655 + *pxListWasEmpty = listLIST_IS_EMPTY( pxCurrentTimerList ); +1c002780 li s0,0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:658 + xNextExpireTime = listGET_ITEM_VALUE_OF_HEAD_ENTRY( pxCurrentTimerList ); +1c002782 lw s1,0(a5) +prvProcessTimerOrBlockTask(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:589 + vTaskSuspendAll(); +1c002784 jal ra,1c001a16 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:596 + xTimeNow = prvSampleTimeNow( &xTimerListsWereSwitched ); +1c002788 addi a0,sp,16 +1c00278a jal 1c00268c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:597 + if( xTimerListsWereSwitched == pdFALSE ) +1c00278c lw a5,16(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:596 + xTimeNow = prvSampleTimeNow( &xTimerListsWereSwitched ); +1c00278e mv s6,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:597 + if( xTimerListsWereSwitched == pdFALSE ) +1c002790 addi s4,gp,-612 # 1c009178 +1c002794 bnez a5,1c00285a +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:600 + if( ( xListWasEmpty == pdFALSE ) && ( xNextExpireTime <= xTimeNow ) ) +1c002796 bnez s0,1c002836 +1c002798 bltu a0,s1,1c002840 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:602 + ( void ) xTaskResumeAll(); +1c00279c jal ra,1c00234c +prvProcessExpiredTimer(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:510 +Timer_t * const pxTimer = ( Timer_t * ) listGET_OWNER_OF_HEAD_ENTRY( pxCurrentTimerList ); /*lint !e9087 !e9079 void * is used as this macro is used with tasks and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ +1c0027a0 lw a5,0(s7) +1c0027a4 lw a5,12(a5) +1c0027a6 lw s0,12(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:514 + ( void ) uxListRemove( &( pxTimer->xTimerListItem ) ); +1c0027a8 addi a0,s0,4 +1c0027ac jal ra,1c000f26 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:519 + if( ( pxTimer->ucStatus & tmrSTATUS_IS_AUTORELOAD ) != 0 ) +1c0027b0 lbu a5,40(s0) +1c0027b4 andi a4,a5,4 +1c0027b8 beqz a4,1c0027f8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:524 + if( prvInsertTimerInActiveList( pxTimer, ( xNextExpireTime + pxTimer->xTimerPeriodInTicks ), xTimeNow, xNextExpireTime ) != pdFALSE ) +1c0027ba lw a1,24(s0) +1c0027bc mv a3,s1 +1c0027be mv a2,s6 +1c0027c0 add a1,a1,s1 +1c0027c2 mv a0,s0 +1c0027c4 jal ra,1c002580 +1c0027c8 beqz a0,1c0027fe +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:528 + xResult = xTimerGenericCommand( pxTimer, tmrCOMMAND_START_DONT_TRACE, xNextExpireTime, NULL, tmrNO_DELAY ); +1c0027ca li a4,0 +1c0027cc li a3,0 +1c0027ce mv a2,s1 +1c0027d0 li a1,0 +1c0027d2 mv a0,s0 +1c0027d4 jal 1c002614 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:529 + configASSERT( xResult ); +1c0027d6 bnez a0,1c0027fe +1c0027d8 lui a3,0x1c008 +1c0027dc lui a2,0x1c008 +1c0027e0 addi a3,a3,1784 # 1c0086f8 <__func__.9+0x84> +1c0027e4 addi a2,a2,1924 # 1c008784 <__func__.13> +1c0027e8 li a1,529 +prvProcessReceivedCommands(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:812 + configASSERT( xResult ); +1c0027ec lui a0,0x1c008 +1c0027f0 addi a0,a0,1700 # 1c0086a4 <__func__.9+0x30> +1c0027f4 jal ra,1c0037c8 <__assert_func> +prvProcessExpiredTimer(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:539 + pxTimer->ucStatus &= ~tmrSTATUS_IS_ACTIVE; +1c0027f8 andi a5,a5,-2 +1c0027fa sb a5,40(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:544 + pxTimer->pxCallbackFunction( ( TimerHandle_t ) pxTimer ); +1c0027fe lw a5,32(s0) +1c002800 mv a0,s0 +1c002802 jalr a5 +1c002804 li s1,9 +prvProcessReceivedCommands(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:741 + while( xQueueReceive( xTimerQueue, &xMessage, tmrNO_DELAY ) != pdFAIL ) /*lint !e603 xMessage does not have to be initialised as it is passed out, not in, and it is not used unless xQueueReceive() returns pdTRUE. */ +1c002806 lw a0,0(s4) +1c00280a li a2,0 +1c00280c addi a1,sp,16 +1c00280e jal ra,1c0014d4 +1c002812 beqz a0,1c002770 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:747 + if( xMessage.xMessageID < ( BaseType_t ) 0 ) +1c002814 lw a5,16(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:756 + pxCallback->pxCallbackFunction( pxCallback->pvParameter1, pxCallback->ulParameter2 ); +1c002816 lw a0,24(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:747 + if( xMessage.xMessageID < ( BaseType_t ) 0 ) +1c002818 bltz a5,1c002860 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:771 + pxTimer = xMessage.u.xTimerParameters.pxTimer; +1c00281c lw s0,24(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:773 + if( listIS_CONTAINED_WITHIN( NULL, &( pxTimer->xTimerListItem ) ) == pdFALSE ) /*lint !e961. The cast is only redundant when NULL is passed into the macro. */ +1c00281e lw a5,20(s0) +1c002820 bnez a5,1c00286e +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:791 + xTimeNow = prvSampleTimeNow( &xTimerListsWereSwitched ); +1c002822 addi a0,sp,12 +1c002824 jal 1c00268c +1c002826 lw a5,16(sp) +1c002828 mv a2,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:793 + switch( xMessage.xMessageID ) +1c00282a bltu s1,a5,1c002806 +1c00282e slli a5,a5,0x2 +1c002830 add a5,a5,s2 +1c002832 lw a5,0(a5) +1c002834 jr a5 +prvProcessTimerOrBlockTask(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:617 + xListWasEmpty = listLIST_IS_EMPTY( pxOverflowTimerList ); +1c002836 lw a5,-620(gp) # 1c009170 +1c00283a lw s0,0(a5) +1c00283c seqz s0,s0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:620 + vQueueWaitForMessageRestricted( xTimerQueue, ( xNextExpireTime - xTimeNow ), xListWasEmpty ); +1c002840 lw a0,0(s4) +1c002844 mv a2,s0 +1c002846 sub a1,s1,s6 +1c00284a jal ra,1c0018f0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:622 + if( xTaskResumeAll() == pdFALSE ) +1c00284e jal ra,1c00234c +1c002852 bnez a0,1c002804 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:628 + portYIELD_WITHIN_API(); +1c002854 ecall +1c002858 j 1c002804 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:638 + ( void ) xTaskResumeAll(); +1c00285a jal ra,1c00234c +1c00285e j 1c002804 +prvProcessReceivedCommands(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:756 + pxCallback->pxCallbackFunction( pxCallback->pvParameter1, pxCallback->ulParameter2 ); +1c002860 lw a5,20(sp) +1c002862 lw a1,28(sp) +1c002864 jalr a5 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:767 + if( xMessage.xMessageID >= ( BaseType_t ) 0 ) +1c002866 lw a5,16(sp) +1c002868 bltz a5,1c002806 +1c00286c j 1c00281c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:776 + ( void ) uxListRemove( &( pxTimer->xTimerListItem ) ); +1c00286e addi a0,s0,4 +1c002872 jal ra,1c000f26 +1c002876 j 1c002822 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:801 + pxTimer->ucStatus |= tmrSTATUS_IS_ACTIVE; +1c002878 lbu a5,40(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:802 + if( prvInsertTimerInActiveList( pxTimer, xMessage.u.xTimerParameters.xMessageValue + pxTimer->xTimerPeriodInTicks, xTimeNow, xMessage.u.xTimerParameters.xMessageValue ) != pdFALSE ) +1c00287c lw a1,24(s0) +1c00287e mv a0,s0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:801 + pxTimer->ucStatus |= tmrSTATUS_IS_ACTIVE; +1c002880 ori a5,a5,1 +1c002884 sb a5,40(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:802 + if( prvInsertTimerInActiveList( pxTimer, xMessage.u.xTimerParameters.xMessageValue + pxTimer->xTimerPeriodInTicks, xTimeNow, xMessage.u.xTimerParameters.xMessageValue ) != pdFALSE ) +1c002888 lw a3,20(sp) +1c00288a add a1,a1,a3 +1c00288c jal ra,1c002580 +1c002890 beqz a0,1c002806 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:806 + pxTimer->pxCallbackFunction( ( TimerHandle_t ) pxTimer ); +1c002892 lw a5,32(s0) +1c002894 mv a0,s0 +1c002896 jalr a5 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:809 + if( ( pxTimer->ucStatus & tmrSTATUS_IS_AUTORELOAD ) != 0 ) +1c002898 lbu a5,40(s0) +1c00289c andi a5,a5,4 +1c00289e beqz a5,1c002806 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:811 + xResult = xTimerGenericCommand( pxTimer, tmrCOMMAND_START_DONT_TRACE, xMessage.u.xTimerParameters.xMessageValue + pxTimer->xTimerPeriodInTicks, NULL, tmrNO_DELAY ); +1c0028a0 lw a5,24(s0) +1c0028a2 lw a2,20(sp) +1c0028a4 li a4,0 +1c0028a6 li a3,0 +1c0028a8 add a2,a2,a5 +1c0028aa li a1,0 +1c0028ac mv a0,s0 +1c0028ae jal ra,1c002614 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:812 + configASSERT( xResult ); +1c0028b2 bnez a0,1c002806 +1c0028b4 lui a3,0x1c008 +1c0028b8 lui a2,0x1c008 +1c0028bc addi a3,a3,1784 # 1c0086f8 <__func__.9+0x84> +1c0028c0 addi a2,a2,1896 # 1c008768 <__func__.12> +1c0028c4 li a1,812 +1c0028c8 j 1c0027ec +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:829 + pxTimer->ucStatus &= ~tmrSTATUS_IS_ACTIVE; +1c0028ca lbu a5,40(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:859 + pxTimer->ucStatus &= ~tmrSTATUS_IS_ACTIVE; +1c0028ce andi a5,a5,-2 +1c0028d0 sb a5,40(s0) +1c0028d4 j 1c002806 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:834 + pxTimer->ucStatus |= tmrSTATUS_IS_ACTIVE; +1c0028d6 lbu a5,40(s0) +1c0028da ori a5,a5,1 +1c0028de sb a5,40(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:835 + pxTimer->xTimerPeriodInTicks = xMessage.u.xTimerParameters.xMessageValue; +1c0028e2 lw a1,20(sp) +1c0028e4 sw a1,24(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:836 + configASSERT( ( pxTimer->xTimerPeriodInTicks > 0 ) ); +1c0028e6 bnez a1,1c0028fe +1c0028e8 lui a3,0x1c008 +1c0028ec lui a2,0x1c008 +1c0028f0 addi a3,a3,1792 # 1c008700 <__func__.9+0x8c> +1c0028f4 addi a2,a2,1896 # 1c008768 <__func__.12> +1c0028f8 li a1,836 +1c0028fc j 1c0027ec +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:844 + ( void ) prvInsertTimerInActiveList( pxTimer, ( xTimeNow + pxTimer->xTimerPeriodInTicks ), xTimeNow, xTimeNow ); +1c0028fe mv a3,a0 +1c002900 add a1,a1,a0 +1c002902 mv a0,s0 +1c002904 jal ra,1c002580 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:845 + break; +1c002908 j 1c002806 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:853 + if( ( pxTimer->ucStatus & tmrSTATUS_IS_STATICALLY_ALLOCATED ) == ( uint8_t ) 0 ) +1c00290a lbu a5,40(s0) +1c00290e andi a4,a5,2 +1c002912 bnez a4,1c0028ce +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/timers.c:855 + vPortFree( pxTimer ); +1c002914 mv a0,s0 +1c002916 jal 1c002992 +1c002918 j 1c002806 +xPortStartScheduler(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/port.c:151 + +#endif /* ( configMTIME_BASE_ADDRESS != 0 ) && ( configMTIME_BASE_ADDRESS != 0 ) */ +/*-----------------------------------------------------------*/ + +BaseType_t xPortStartScheduler( void ) +{ +1c00291a addi sp,sp,-32 +1c00291c sw ra,28(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/port.c:156 +extern void xPortStartFirstTask( void ); + + #if( configASSERT_DEFINED == 1 ) + { + volatile uint32_t mtvec = 0; +1c00291e sw zero,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/port.c:160 + + /* Check the least significant two bits of mtvec are 00 - indicating + single vector mode. */ + __asm volatile( "csrr %0, mtvec" : "=r"( mtvec ) ); +1c002920 csrr a5,mtvec +1c002924 sw a5,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/port.c:169 + + + /* Check alignment of the interrupt stack - which is the same as the + stack that was being used by main() prior to the scheduler being + started. */ + configASSERT( ( xISRStackTop & portBYTE_ALIGNMENT_MASK ) == 0 ); +1c002926 lui a5,0x1c01a +1c00292a addi a5,a5,-1616 # 1c0199b0 <__cluster_text_end> +1c00292e andi a5,a5,15 +1c002930 beqz a5,1c002952 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/port.c:169 (discriminator 1) +1c002932 lui a3,0x1c008 +1c002936 lui a2,0x1c009 +1c00293a lui a0,0x1c008 +1c00293e addi a3,a3,1992 # 1c0087c8 <__func__.16+0x18> +1c002942 addi a2,a2,-1980 # 1c008844 <__func__.0> +1c002946 li a1,169 +1c00294a addi a0,a0,2028 # 1c0087ec <__func__.16+0x3c> +1c00294e jal ra,1c0037c8 <__assert_func> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/port.c:182 + #endif /* configASSERT_DEFINED */ + + /* If there is a CLINT then it is ok to use the default implementation + in this file, otherwise vPortSetupTimerInterrupt() must be implemented to + configure whichever clock is to be used to generate the tick interrupt. */ + vPortSetupTimerInterrupt(); +1c002952 jal 1c002aee +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/port.c:194 + __asm volatile( "csrs mie, %0" :: "r"(0x880) ); + } + #else + { + /* Enable external interrupts. */ + __asm volatile( "csrs mie, %0" :: "r"(0x800) ); +1c002954 lui a5,0x1 +1c002956 addi a5,a5,-2048 # 00000800 <__stack_size> +1c00295a csrs mie,a5 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/port.c:198 + } + #endif /* ( configMTIME_BASE_ADDRESS != 0 ) && ( configMTIMECMP_BASE_ADDRESS != 0 ) */ + + xPortStartFirstTask(); +1c00295e jal ra,1c000d00 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/GCC/RISC-V/port.c:203 + + /* Should not get here as after calling xPortStartFirstTask() only tasks + should be executing. */ + return pdFAIL; +} +1c002962 lw ra,28(sp) +1c002964 li a0,0 +1c002966 addi sp,sp,32 +1c002968 ret +pvPortMalloc(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/MemMang/heap_3.c:59 +#endif + +/*-----------------------------------------------------------*/ + +void *pvPortMalloc( size_t xWantedSize ) +{ +1c00296a addi sp,sp,-32 +1c00296c sw ra,28(sp) +1c00296e sw s0,24(sp) +1c002970 sw a0,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/MemMang/heap_3.c:62 +void *pvReturn; + + vTaskSuspendAll(); +1c002972 jal ra,1c001a16 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/MemMang/heap_3.c:64 + { + pvReturn = malloc( xWantedSize ); +1c002976 lw a0,12(sp) +1c002978 jal ra,1c003908 +1c00297c mv s0,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/MemMang/heap_3.c:67 + traceMALLOC( pvReturn, xWantedSize ); + } + ( void ) xTaskResumeAll(); +1c00297e jal ra,1c00234c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/MemMang/heap_3.c:71 + + #if( configUSE_MALLOC_FAILED_HOOK == 1 ) + { + if( pvReturn == NULL ) +1c002982 bnez s0,1c002988 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/MemMang/heap_3.c:74 + { + extern void vApplicationMallocFailedHook( void ); + vApplicationMallocFailedHook(); +1c002984 jal ra,1c003184 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/MemMang/heap_3.c:80 + } + } + #endif + + return pvReturn; +} +1c002988 lw ra,28(sp) +1c00298a mv a0,s0 +1c00298c lw s0,24(sp) +1c00298e addi sp,sp,32 +1c002990 ret +vPortFree(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/MemMang/heap_3.c:84 +/*-----------------------------------------------------------*/ + +void vPortFree( void *pv ) +{ +1c002992 addi sp,sp,-32 +1c002994 sw ra,28(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/MemMang/heap_3.c:85 + if( pv ) +1c002996 sw a0,12(sp) +1c002998 beqz a0,1c0029ac +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/MemMang/heap_3.c:87 + { + vTaskSuspendAll(); +1c00299a jal ra,1c001a16 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/MemMang/heap_3.c:89 + { + free( pv ); +1c00299e lw a0,12(sp) +1c0029a0 jal ra,1c003914 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/MemMang/heap_3.c:94 + traceFREE( pv, 0 ); + } + ( void ) xTaskResumeAll(); + } +} +1c0029a4 lw ra,28(sp) +1c0029a6 addi sp,sp,32 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/MemMang/heap_3.c:92 + ( void ) xTaskResumeAll(); +1c0029a8 j 1c00234c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/kernel/portable/MemMang/heap_3.c:94 +} +1c0029ac lw ra,28(sp) +1c0029ae addi sp,sp,32 +1c0029b0 ret +_close(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:134 +} + +int _close(int file) +{ + return -1; +} +1c0029b2 <_close> li a0,-1 +1c0029b4 <_close+0x2> ret +_exit(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:155 + /* there is no way to check when the udma output fifo is empty so we + * just wait a few cycles */ + for (volatile int i = 0; i < 1024 * 3; i++) + ; +#endif + writew(exit_status | (1 << APB_SOC_STATUS_EOC_BIT), +1c0029b6 <_exit> lui a5,0x80000 +1c0029ba <_exit+0x4> or a0,a0,a5 +writew(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/arch/io.h:45 + : "r"(val), "r"((volatile uint16_t *)addr)); +} + +static inline void writew(uint32_t val, uintptr_t addr) +{ + asm volatile("sw %0, 0(%1)" +1c0029bc <_exit+0x6> lui a5,0x1a104 +1c0029c0 <_exit+0xa> addi a5,a5,160 # 1a1040a0 <__heap_l1_cluster_start+0xa104080> +1c0029c4 <_exit+0xe> sw a0,0(a5) +_exit(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:158 (discriminator 1) + (uintptr_t)(PULP_APB_SOC_CTRL_ADDR + APB_SOC_CORESTATUS_OFFSET)); + for (;;) + asm volatile("wfi"); +1c0029c6 <_exit+0x10> wfi +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:157 (discriminator 1) + for (;;) +1c0029ca <_exit+0x14> j 1c0029c6 <_exit+0x10> +_fstat(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:175 + return -1; +} + +int _fstat(int file, struct stat *st) +{ + st->st_mode = S_IFCHR; +1c0029cc <_fstat> lui a5,0x2 +1c0029ce <_fstat+0x2> sw a5,4(a1) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:179 + return 0; + // errno = -ENOSYS; + // return -1; +} +1c0029d0 <_fstat+0x4> li a0,0 +1c0029d2 <_fstat+0x6> ret +_getpid(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:202 +} + +int _getpid() +{ + return 1; +} +1c0029d4 <_getpid> li a0,1 +1c0029d6 <_getpid+0x2> ret +_isatty(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:212 + return -1; +} + +int _isatty(int file) +{ + return (file == STDOUT_FILENO); +1c0029d8 <_isatty> addi a0,a0,-1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:213 +} +1c0029da <_isatty+0x2> seqz a0,a0 +1c0029de <_isatty+0x6> ret +_kill(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:217 + +int _kill(int pid, int sig) +{ + errno = EINVAL; +1c0029e0 <_kill> li a4,22 +1c0029e2 <_kill+0x2> sw a4,-576(gp) # 1c00919c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:219 + return -1; +} +1c0029e6 <_kill+0x6> li a0,-1 +1c0029e8 <_kill+0x8> ret +_lseek(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:230 +} + +off_t _lseek(int file, off_t ptr, int dir) +{ + return 0; +} +1c0029ea <_lseek> li a0,0 +1c0029ec <_lseek+0x2> ret +_read(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:252 +} + +ssize_t _read(int file, void *ptr, size_t len) +{ + return 0; +} +1c0029ee <_read> li a0,0 +1c0029f0 <_read+0x2> ret +_write(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:308 +} + +ssize_t _write(int file, const void *ptr, size_t len) +{ + /* fuse stout and stderr. remains to be seen if this is a good idea */ + if (file != STDOUT_FILENO && file != STDERR_FILENO) { +1c0029f2 <_write> addi a0,a0,-1 +1c0029f4 <_write+0x2> li a5,1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:314 + errno = ENOSYS; + return -1; + } + +#if CONFIG_STDIO == STDIO_FAKE + const void *eptr = ptr + len; +1c0029f6 <_write+0x4> add a6,a1,a2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:308 + if (file != STDOUT_FILENO && file != STDERR_FILENO) { +1c0029fa <_write+0x8> bltu a5,a0,1c002a10 <_write+0x1e> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:319 + while (ptr != eptr) + writew(*(unsigned char *)(ptr++), + (uintptr_t)(PULP_STDOUT_ADDR + STDOUT_PUTC_OFFSET + + (pulp_core_id() << 3) + + (pulp_cluster_id() << 7))); +1c0029fe <_write+0xc> lui a3,0x2 +1c002a00 <_write+0xe> addi a3,a3,-128 # 00001f80 <__stack_size+0x1780> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:318 + (pulp_core_id() << 3) + +1c002a04 <_write+0x12> lui a0,0x1a10f +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:315 + while (ptr != eptr) +1c002a08 <_write+0x16> bne a1,a6,1c002a1c <_write+0x2a> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:320 + return len; +1c002a0c <_write+0x1a> mv a0,a2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:353 + /* just nop */ + return len; +#else +#error "CONFIG_STDIO is undefined" +#endif +} +1c002a0e <_write+0x1c> ret +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:309 + errno = ENOSYS; +1c002a10 <_write+0x1e> li a4,88 +1c002a14 <_write+0x22> sw a4,-576(gp) # 1c00919c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:310 + return -1; +1c002a18 <_write+0x26> li a0,-1 +1c002a1a <_write+0x28> ret +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:316 + writew(*(unsigned char *)(ptr++), +1c002a1c <_write+0x2a> addi a1,a1,1 +1c002a1e <_write+0x2c> lbu a7,-1(a1) +pulp_core_id(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:294 + uint32_t mhartid = csr_read(CSR_MHARTID); +1c002a22 <_write+0x30> csrr a4,mhartid +pulp_cluster_id(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:301 + uint32_t mhartid = csr_read(CSR_MHARTID); +1c002a26 <_write+0x34> csrr a5,mhartid +_write(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:318 + (pulp_core_id() << 3) + +1c002a2a <_write+0x38> slli a4,a4,0x3 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:319 + (pulp_cluster_id() << 7))); +1c002a2c <_write+0x3a> slli a5,a5,0x2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:318 + (pulp_core_id() << 3) + +1c002a2e <_write+0x3c> andi a4,a4,255 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:319 + (pulp_cluster_id() << 7))); +1c002a32 <_write+0x40> and a5,a5,a3 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:318 + (pulp_core_id() << 3) + +1c002a34 <_write+0x42> add a4,a4,a0 +1c002a36 <_write+0x44> add a5,a5,a4 +writew(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/arch/io.h:45 +1c002a38 <_write+0x46> sw a7,0(a5) # 00002000 <__stack_size+0x1800> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/arch/io.h:48 + : + : "r"(val), "r"((volatile uint32_t *)addr)); +} +1c002a3c <_write+0x4a> j 1c002a08 <_write+0x16> +_sbrk(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:368 +} + +void *_sbrk(ptrdiff_t incr) +{ + /* TODO: Check for stack collision by reading sp */ + char *old_brk = brk; +1c002a3e <_sbrk> lui a5,0x1c009 +1c002a42 <_sbrk+0x4> addi a5,a5,-964 # 1c008c3c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:366 +{ +1c002a46 <_sbrk+0x8> mv a4,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:368 + char *old_brk = brk; +1c002a48 <_sbrk+0xa> lw a0,0(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:370 + + if (brk + incr >= __heap_end) { +1c002a4a <_sbrk+0xc> lui a3,0x1c019 +1c002a4e <_sbrk+0x10> addi a3,a3,432 # 1c0191b0 <__heap_end> +1c002a52 <_sbrk+0x14> add a4,a4,a0 +1c002a54 <_sbrk+0x16> bltu a4,a3,1c002a62 <_sbrk+0x24> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:371 + errno = ENOMEM; +1c002a58 <_sbrk+0x1a> li a4,12 +1c002a5a <_sbrk+0x1c> sw a4,-576(gp) # 1c00919c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:372 + return (void *)-1; +1c002a5e <_sbrk+0x20> li a0,-1 +1c002a60 <_sbrk+0x22> ret +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:375 + } + + brk += incr; +1c002a62 <_sbrk+0x24> sw a4,0(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:377 + return old_brk; +} +1c002a64 <_sbrk+0x26> ret +__malloc_lock(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:384 +void __malloc_lock(struct _reent *p) +{ + /* Make sure no mallocs inside ISRs */ + /* configASSERT(!xPortIsInsideInterrupt()); */ +#ifdef CONFIG_FREERTOS_KERNEL + vTaskSuspendAll(); +1c002a66 <__malloc_lock> j 1c001a16 +__malloc_unlock(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/syscalls.c:391 +} + +void __malloc_unlock(struct _reent *p) +{ +#ifdef CONFIG_FREERTOS_KERNEL + (void)xTaskResumeAll(); +1c002a6a <__malloc_unlock> j 1c00234c +pi_l2_malloc(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/libc/pulp_malloc.c:26 + +#include + +void *pi_l2_malloc(int size) +{ + return malloc(size); +1c002a6e j 1c003908 +timer_irq_handler(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/system.c:136 + system_core_clock_update(); + return system_core_clock; +} + +void timer_irq_handler(void) +{ +1c002a72 addi sp,sp,-16 +1c002a74 sw ra,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/system.c:139 +#warning requires critical section if interrupt nesting is used. + + if (xTaskIncrementTick() != 0) { +1c002a76 jal ra,1c001a28 +1c002a7a beqz a0,1c002a84 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/system.c:142 + vTaskSwitchContext(); + } +} +1c002a7c lw ra,12(sp) +1c002a7e addi sp,sp,16 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/system.c:140 + vTaskSwitchContext(); +1c002a80 j 1c001b76 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/system.c:142 +} +1c002a84 lw ra,12(sp) +1c002a86 addi sp,sp,16 +1c002a88 ret +system_init(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/system.c:73 +{ +1c002a8a addi sp,sp,-16 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/system.c:76 + pi_fll_init(i, 0); +1c002a8c li a1,0 +1c002a8e li a0,0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/system.c:73 +{ +1c002a90 sw ra,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/system.c:76 + pi_fll_init(i, 0); +1c002a92 jal ra,1c003260 +1c002a96 li a1,0 +1c002a98 li a0,1 +1c002a9a jal ra,1c003260 +1c002a9e li a1,0 +1c002aa0 li a0,2 +1c002aa2 jal ra,1c003260 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/system.c:80 + pulp_irq_init(); +1c002aa6 jal ra,1c00333c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/system.c:88 + isr_table[0xa] = timer_irq_handler; +1c002aaa lui a4,0x1c003 +1c002aae addi a5,gp,-1636 # 1c008d78 +1c002ab2 addi a4,a4,-1422 # 1c002a72 +1c002ab6 sw a4,40(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/system.c:89 + isr_table[0x1a] = fc_soc_event_handler; // 26 +1c002ab8 lui a4,0x1c001 +1c002abc addi a4,a4,-446 # 1c000e42 +1c002ac0 sw a4,104(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/system.c:94 + soc_eu_event_init(); +1c002ac2 jal ra,1c00334a +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/system.c:98 + pi_fc_event_handler_init(26); /* TODO: FIX THIS */ +1c002ac6 li a0,26 +1c002ac8 jal ra,1c003384 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/system.c:122 +} +1c002acc lw ra,12(sp) +1c002ace addi sp,sp,16 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/system.c:102 + irq_clint_global_enable(); +1c002ad0 j 1c003336 +system_core_clock_update(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/system.c:125 +{ +1c002ad4 addi sp,sp,-16 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/system.c:126 + system_core_clock = pi_fll_get_frequency(FLL_SOC, 0); +1c002ad6 li a1,0 +1c002ad8 li a0,0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/system.c:125 +{ +1c002ada sw ra,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/system.c:126 + system_core_clock = pi_fll_get_frequency(FLL_SOC, 0); +1c002adc jal ra,1c00322c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/system.c:127 +} +1c002ae0 lw ra,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/system.c:126 + system_core_clock = pi_fll_get_frequency(FLL_SOC, 0); +1c002ae2 lui a5,0x1c009 +1c002ae6 sw a0,-960(a5) # 1c008c40 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/system.c:127 +} +1c002aea addi sp,sp,16 +1c002aec ret +vPortSetupTimerInterrupt(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/system.c:156 + ; +#endif +} + +void vPortSetupTimerInterrupt(void) +{ +1c002aee addi sp,sp,-16 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/system.c:161 + extern int timer_irq_init(uint32_t ticks); + + /* No CLINT so use the PULP timer to generate the tick interrupt. */ + /* TODO: configKERNEL_INTERRUPT_PRIORITY - 1 ? */ + timer_irq_init(ARCHI_REF_CLOCK / configTICK_RATE_HZ); +1c002af0 li a0,32 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/system.c:156 +{ +1c002af4 sw ra,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/system.c:161 + timer_irq_init(ARCHI_REF_CLOCK / configTICK_RATE_HZ); +1c002af6 jal ra,1c00330e +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/system.c:164 + /* TODO: allow setting interrupt priority (to super high(?)) */ + irq_enable(IRQ_FC_EVT_TIMER0_LO); +} +1c002afa lw ra,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/system.c:163 + irq_enable(IRQ_FC_EVT_TIMER0_LO); +1c002afc li a0,1024 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/system.c:164 +} +1c002b00 addi sp,sp,16 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/system.c:163 + irq_enable(IRQ_FC_EVT_TIMER0_LO); +1c002b02 j 1c00332a +vSystemIrqHandler(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/system.c:169 + +void vSystemIrqHandler(uint32_t mcause) +{ + extern void (*isr_table[32])(void); + isr_table[mcause & 0x1f](); +1c002b06 andi a0,a0,31 +1c002b08 slli a5,a0,0x2 +1c002b0c addi a0,gp,-1636 # 1c008d78 +1c002b10 add a0,a0,a5 +1c002b12 lw a5,0(a0) +1c002b14 jr a5 +pi_spi_conf_init(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../pulpos/pulp/drivers/spim/spim-v3.c:83 + +void pi_spi_conf_init(struct pi_spi_conf *conf) +{ + conf->wordsize = PI_SPI_WORDSIZE_8; + conf->big_endian = 0; + conf->max_baudrate = 10000000; +1c002b16 lui a5,0x989 +1c002b1a addi a5,a5,1664 # 00989680 <__heap_l2_shared_size+0x923050> +1c002b1e sw a5,0(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../pulpos/pulp/drivers/spim/spim-v3.c:84 + conf->cs = -1; +1c002b20 li a5,255 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../pulpos/pulp/drivers/spim/spim-v3.c:81 + conf->wordsize = PI_SPI_WORDSIZE_8; +1c002b24 sh zero,4(a0) # 1a10f004 <__heap_l1_cluster_start+0xa10efe4> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../pulpos/pulp/drivers/spim/spim-v3.c:86 + conf->itf = 0; + conf->polarity = 0; +1c002b28 sw zero,8(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../pulpos/pulp/drivers/spim/spim-v3.c:87 + conf->phase = 0; +1c002b2c sw zero,12(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../pulpos/pulp/drivers/spim/spim-v3.c:84 + conf->cs = -1; +1c002b30 sh a5,16(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../pulpos/pulp/drivers/spim/spim-v3.c:88 +} +1c002b34 ret +pi_spi_open(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../pulpos/pulp/drivers/spim/spim-v3.c:93 + +int pi_spi_open(struct pi_device *device) +{ + int status = -1; + status = __pi_spi_open((struct spim_cs_data **)(&device->data), (struct pi_spi_conf *)device->config); +1c002b36 lw a1,4(a0) +1c002b38 addi a0,a0,8 +1c002b3a j 1c002ecc <__pi_spi_open> +pi_spi_close(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../pulpos/pulp/drivers/spim/spim-v3.c:99 + return status; +} + +void pi_spi_close(struct pi_device *device) +{ + __pi_spi_close((struct spim_cs_data *)(device->data), (struct pi_spi_conf *)device->config); +1c002b3c lw a1,4(a0) +1c002b3e lw a0,8(a0) +1c002b40 j 1c003050 <__pi_spi_close> +pi_spi_send_async(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../pulpos/pulp/drivers/spim/spim-v3.c:119 +} + +void pi_spi_send_async(struct pi_device *device, void *data, size_t len, pi_spi_flags_e flag, pi_task_t *task) +{ + DEBUG_PRINTF("...start -> pi_spi_send_async...\n"); + __pi_spi_send_async(device->data, data, len, flag, task); +1c002b42 lw a0,8(a0) +1c002b44 j 1c002dc6 <__pi_spi_send_async> +pi_spi_send(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../pulpos/pulp/drivers/spim/spim-v3.c:108 +{ +1c002b46 addi sp,sp,-112 +1c002b48 sw s0,104(sp) +1c002b4a mv s0,a0 +pi_task_block(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/pmsis_task.h:86 + */ +void __pi_task_destroy(pi_task_t *task); + +static inline pi_task_t *pi_task_block(pi_task_t *task) +{ + return __pi_task_block(task); +1c002b4c addi a0,sp,24 +pi_spi_send(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../pulpos/pulp/drivers/spim/spim-v3.c:108 +1c002b4e sw ra,108(sp) +1c002b50 sw a1,12(sp) +1c002b52 sw a2,8(sp) +1c002b54 sw a3,4(sp) +pi_task_block(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/pmsis_task.h:86 +1c002b56 jal ra,1c00343a <__pi_task_block> +pi_spi_send(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../pulpos/pulp/drivers/spim/spim-v3.c:111 + pi_spi_send_async(device, data, len, flag, &task_block); +1c002b5a lw a3,4(sp) +1c002b5c lw a2,8(sp) +1c002b5e lw a1,12(sp) +1c002b60 addi a4,sp,24 +1c002b62 mv a0,s0 +1c002b64 jal 1c002b42 +pi_task_wait_on(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/pmsis_task.h:130 + * \note The notification event is released just before returning from this call + * and must be reinitialized before it can be re-used. + */ +static inline void pi_task_wait_on(pi_task_t *task) +{ + __pi_task_wait_on(task); +1c002b66 addi a0,sp,24 +1c002b68 jal ra,1c0034b6 <__pi_task_wait_on> +pi_task_destroy(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/pmsis_task.h:149 + __pi_task_push(task); +} + +static inline void pi_task_destroy(pi_task_t *task) +{ + __pi_task_destroy(task); +1c002b6c addi a0,sp,24 +1c002b6e jal ra,1c003482 <__pi_task_destroy> +pi_spi_send(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../pulpos/pulp/drivers/spim/spim-v3.c:114 +} +1c002b72 lw ra,108(sp) +1c002b74 lw s0,104(sp) +1c002b76 addi sp,sp,112 +1c002b78 ret +pi_spi_receive_async(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../pulpos/pulp/drivers/spim/spim-v3.c:143 + +void pi_spi_receive_async(struct pi_device *device, void *data, size_t len, + pi_spi_flags_e flag, pi_task_t *task) +{ + DEBUG_PRINTF("...start -> pi_spi_receive_async...\n"); + __pi_spi_receive_async(device->data, data, len, flag, task); +1c002b7a lw a0,8(a0) +1c002b7c j 1c002ca0 <__pi_spi_receive_async> +pi_spi_receive(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../pulpos/pulp/drivers/spim/spim-v3.c:124 +{ +1c002b7e addi sp,sp,-112 +1c002b80 sw s0,104(sp) +1c002b82 mv s0,a0 +pi_task_block(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/pmsis_task.h:86 + return __pi_task_block(task); +1c002b84 addi a0,sp,24 +pi_spi_receive(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../pulpos/pulp/drivers/spim/spim-v3.c:124 +1c002b86 sw ra,108(sp) +1c002b88 sw a1,12(sp) +1c002b8a sw a2,8(sp) +1c002b8c sw a3,4(sp) +pi_task_block(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/pmsis_task.h:86 +1c002b8e jal ra,1c00343a <__pi_task_block> +pi_spi_receive(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../pulpos/pulp/drivers/spim/spim-v3.c:129 + pi_spi_receive_async(device, data, len, flag, &task_block); +1c002b92 lw a3,4(sp) +1c002b94 lw a2,8(sp) +1c002b96 lw a1,12(sp) +1c002b98 addi a4,sp,24 +1c002b9a mv a0,s0 +1c002b9c jal 1c002b7a +pi_task_wait_on(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/pmsis_task.h:130 + __pi_task_wait_on(task); +1c002b9e addi a0,sp,24 +1c002ba0 jal ra,1c0034b6 <__pi_task_wait_on> +pi_task_destroy(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/pmsis_task.h:149 + __pi_task_destroy(task); +1c002ba4 addi a0,sp,24 +1c002ba6 jal ra,1c003482 <__pi_task_destroy> +pi_spi_receive(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../pulpos/pulp/drivers/spim/spim-v3.c:137 +} +1c002baa lw ra,108(sp) +1c002bac lw s0,104(sp) +1c002bae addi sp,sp,112 +1c002bb0 ret +__disable_irq(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/arch/riscv.h:177 + \details Disables IRQ interrupts by clearing the MPIE-bit in the CPSR. + Can only be executed in Privileged modes. + */ +__attribute__((always_inline)) static inline uint32_t __disable_irq(void) +{ + uint32_t val = csr_read_clear(MSTATUS_ADDR, BIT(MSTATUS_MIE_Pos)); +1c002bb2 csrrci a0,mstatus,8 +deactive_irq(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:43 + return hal_irq_disable(); +#endif +#ifdef USE_FREERTOS_TEST + return __disable_irq(); +#endif +} +1c002bb6 ret +__restore_irq(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/arch/riscv.h:157 + csr_write(MSTATUS_ADDR, irq); +1c002bb8 csrw mstatus,a0 +active_irq(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:53 +#endif +#ifdef USE_FREERTOS_TEST + __restore_irq(irq); +#endif + +} +1c002bbc ret +__disable_irq(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/arch/riscv.h:177 + uint32_t val = csr_read_clear(MSTATUS_ADDR, BIT(MSTATUS_MIE_Pos)); +1c002bbe <__pi_spim_drv_fifo_enqueue> csrrci a4,mstatus,8 +__pi_spim_drv_fifo_enqueue(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:69 +{ + uint32_t irq = deactive_irq(); + struct spim_driver_data *drv_data = cs_data->drv_data; + /* Callback args. */ + end_task->data[0] = (uintptr_t)cs_data; + end_task->data[1] = (uintptr_t)transfer->data; +1c002bc2 <__pi_spim_drv_fifo_enqueue+0x4> lw a3,4(a1) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:66 + struct spim_driver_data *drv_data = cs_data->drv_data; +1c002bc4 <__pi_spim_drv_fifo_enqueue+0x6> lw a5,4(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:68 + end_task->data[0] = (uintptr_t)cs_data; +1c002bc6 <__pi_spim_drv_fifo_enqueue+0x8> sw a0,20(a2) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:69 + end_task->data[1] = (uintptr_t)transfer->data; +1c002bc8 <__pi_spim_drv_fifo_enqueue+0xa> sw a3,24(a2) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:70 + end_task->data[2] = (uintptr_t)transfer->len; +1c002bca <__pi_spim_drv_fifo_enqueue+0xc> lw a3,8(a1) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:76 + end_task->data[3] = (uintptr_t)transfer->flags; + end_task->data[4] = (uintptr_t)end_task; + end_task->data[5] = (uintptr_t)transfer->is_send; + end_task->next = NULL; + /* Enqueue transfer in drv fifo. */ + if (drv_data->drv_fifo->fifo_head == NULL) +1c002bcc <__pi_spim_drv_fifo_enqueue+0xe> lw a5,0(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:70 + end_task->data[2] = (uintptr_t)transfer->len; +1c002bce <__pi_spim_drv_fifo_enqueue+0x10> sw a3,28(a2) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:71 + end_task->data[3] = (uintptr_t)transfer->flags; +1c002bd0 <__pi_spim_drv_fifo_enqueue+0x12> lw a3,0(a1) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:72 + end_task->data[4] = (uintptr_t)end_task; +1c002bd2 <__pi_spim_drv_fifo_enqueue+0x14> sw a2,36(a2) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:71 + end_task->data[3] = (uintptr_t)transfer->flags; +1c002bd4 <__pi_spim_drv_fifo_enqueue+0x16> sw a3,32(a2) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:73 + end_task->data[5] = (uintptr_t)transfer->is_send; +1c002bd6 <__pi_spim_drv_fifo_enqueue+0x18> lw a3,20(a1) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:74 + end_task->next = NULL; +1c002bd8 <__pi_spim_drv_fifo_enqueue+0x1a> sw zero,64(a2) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:73 + end_task->data[5] = (uintptr_t)transfer->is_send; +1c002bdc <__pi_spim_drv_fifo_enqueue+0x1e> sw a3,40(a2) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:76 + if (drv_data->drv_fifo->fifo_head == NULL) +1c002bde <__pi_spim_drv_fifo_enqueue+0x20> lw a3,0(a5) +1c002be0 <__pi_spim_drv_fifo_enqueue+0x22> bnez a3,1c002bee <__pi_spim_drv_fifo_enqueue+0x30> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:79 + { + /* Empty fifo. */ + drv_data->drv_fifo->fifo_head = end_task; +1c002be2 <__pi_spim_drv_fifo_enqueue+0x24> sw a2,0(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:86 + } + else + { + /* Enqueue to tail. */ + drv_data->drv_fifo->fifo_tail->next = end_task; + drv_data->drv_fifo->fifo_tail = +1c002be4 <__pi_spim_drv_fifo_enqueue+0x26> sw a2,4(a5) +__restore_irq(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/arch/riscv.h:157 + csr_write(MSTATUS_ADDR, irq); +1c002be6 <__pi_spim_drv_fifo_enqueue+0x28> csrw mstatus,a4 +__pi_spim_drv_fifo_enqueue(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:91 + drv_data->drv_fifo->fifo_tail->next; + } + active_irq(irq); + return 0; +} +1c002bea <__pi_spim_drv_fifo_enqueue+0x2c> li a0,0 +1c002bec <__pi_spim_drv_fifo_enqueue+0x2e> ret +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:85 + drv_data->drv_fifo->fifo_tail->next = end_task; +1c002bee <__pi_spim_drv_fifo_enqueue+0x30> lw a3,4(a5) +1c002bf0 <__pi_spim_drv_fifo_enqueue+0x32> sw a2,64(a3) +1c002bf2 <__pi_spim_drv_fifo_enqueue+0x34> j 1c002be4 <__pi_spim_drv_fifo_enqueue+0x26> +__pi_spim_drv_fifo_pop(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:100 + // DBG_PRINTF("%s:%s:%d: \n", __FILE__, __func__, __LINE__); + pi_task_t *task_return = NULL; + // clean the value in the position 7 of regiter 0x300 + // irq = 1100010000000 + int check_300 = 0; + asm volatile("csrr %0, 0x300" +1c002bf4 <__pi_spim_drv_fifo_pop> csrr a5,mstatus +__disable_irq(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/arch/riscv.h:177 + uint32_t val = csr_read_clear(MSTATUS_ADDR, BIT(MSTATUS_MIE_Pos)); +1c002bf8 <__pi_spim_drv_fifo_pop+0x4> csrrci a3,mstatus,8 +__pi_spim_drv_fifo_pop(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:103 + : "=r"(check_300)); + uint32_t irq = deactive_irq(); + if (data->drv_fifo->fifo_head != NULL) +1c002bfc <__pi_spim_drv_fifo_pop+0x8> lw a5,0(a0) +1c002bfe <__pi_spim_drv_fifo_pop+0xa> lw a0,0(a5) +1c002c00 <__pi_spim_drv_fifo_pop+0xc> beqz a0,1c002c0c <__pi_spim_drv_fifo_pop+0x18> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:106 + { + task_return = data->drv_fifo->fifo_head; + data->drv_fifo->fifo_head = data->drv_fifo->fifo_head->next; +1c002c02 <__pi_spim_drv_fifo_pop+0xe> lw a4,64(a0) +1c002c04 <__pi_spim_drv_fifo_pop+0x10> sw a4,0(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:107 + if (data->drv_fifo->fifo_head == NULL) +1c002c06 <__pi_spim_drv_fifo_pop+0x12> bnez a4,1c002c0c <__pi_spim_drv_fifo_pop+0x18> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:109 + { + data->drv_fifo->fifo_tail = NULL; +1c002c08 <__pi_spim_drv_fifo_pop+0x14> sw zero,4(a5) +__restore_irq(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/arch/riscv.h:157 + csr_write(MSTATUS_ADDR, irq); +1c002c0c <__pi_spim_drv_fifo_pop+0x18> csrw mstatus,a3 +__pi_spim_drv_fifo_pop(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:115 + } + } + // write in the 0x300 register + active_irq(irq); + return task_return; +} +1c002c10 <__pi_spim_drv_fifo_pop+0x1c> ret +__pi_spim_get_cs_data(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:119 + +struct spim_cs_data *__pi_spim_get_cs_data(struct spim_driver_data *drv_data, int cs) +{ + struct spim_cs_data *cs_cur = drv_data->cs_list; +1c002c12 <__pi_spim_get_cs_data> lw a0,4(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:120 + while (cs_cur != NULL && cs_cur->cs != cs) +1c002c14 <__pi_spim_get_cs_data+0x2> beqz a0,1c002c1e <__pi_spim_get_cs_data+0xc> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:120 (discriminator 1) +1c002c16 <__pi_spim_get_cs_data+0x4> lbu a5,56(a0) +1c002c1a <__pi_spim_get_cs_data+0x8> bne a5,a1,1c002c20 <__pi_spim_get_cs_data+0xe> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:125 + { + cs_cur = cs_cur->next; + } + return cs_cur; +} +1c002c1e <__pi_spim_get_cs_data+0xc> ret +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:122 + cs_cur = cs_cur->next; +1c002c20 <__pi_spim_get_cs_data+0xe> lw a0,0(a0) +1c002c22 <__pi_spim_get_cs_data+0x10> j 1c002c14 <__pi_spim_get_cs_data+0x2> +__pi_spim_cs_data_del(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:130 + +void __pi_spim_cs_data_del(struct spim_driver_data *drv_data, + int cs) +{ + struct spim_cs_data *cs_cur = drv_data->cs_list; +1c002c24 <__pi_spim_cs_data_del> lw a5,4(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:131 + struct spim_cs_data *cs_prev = cs_cur; +1c002c26 <__pi_spim_cs_data_del+0x2> mv a4,a5 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:132 + while (cs_cur != NULL && cs_cur->cs != cs) +1c002c28 <__pi_spim_cs_data_del+0x4> beqz a5,1c002c3a <__pi_spim_cs_data_del+0x16> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:132 (discriminator 1) +1c002c2a <__pi_spim_cs_data_del+0x6> lbu a2,56(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:135 (discriminator 1) + { + cs_prev = cs_cur; + cs_cur = cs_cur->next; +1c002c2e <__pi_spim_cs_data_del+0xa> lw a3,0(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:132 (discriminator 1) + while (cs_cur != NULL && cs_cur->cs != cs) +1c002c30 <__pi_spim_cs_data_del+0xc> bne a2,a1,1c002c3c <__pi_spim_cs_data_del+0x18> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:139 + } + if (cs_cur) + { + cs_prev->next = cs_cur->next; +1c002c34 <__pi_spim_cs_data_del+0x10> sw a3,0(a4) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:140 + cs_cur->next = NULL; +1c002c36 <__pi_spim_cs_data_del+0x12> sw zero,0(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:142 + } +} +1c002c3a <__pi_spim_cs_data_del+0x16> ret +1c002c3c <__pi_spim_cs_data_del+0x18> mv a4,a5 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:135 + cs_cur = cs_cur->next; +1c002c3e <__pi_spim_cs_data_del+0x1a> mv a5,a3 +1c002c40 <__pi_spim_cs_data_del+0x1c> j 1c002c28 <__pi_spim_cs_data_del+0x4> +__pi_spim_cs_data_add(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:148 + +void __pi_spim_cs_data_add(struct spim_driver_data *drv_data, struct spim_cs_data *cs_data) +{ + // head insert, most recently allocated should be most recently used + cs_data->drv_data = drv_data; + cs_data->next = drv_data->cs_list; +1c002c42 <__pi_spim_cs_data_add> lw a5,4(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:147 + cs_data->drv_data = drv_data; +1c002c44 <__pi_spim_cs_data_add+0x2> sw a0,4(a1) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:148 + cs_data->next = drv_data->cs_list; +1c002c46 <__pi_spim_cs_data_add+0x4> sw a5,0(a1) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:149 +} +1c002c48 <__pi_spim_cs_data_add+0x6> ret +__pi_spi_clk_div_get(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:152 + +uint32_t __pi_spi_clk_div_get(uint32_t spi_freq) +{ +1c002c4a <__pi_spi_clk_div_get> addi sp,sp,-16 +1c002c4c <__pi_spi_clk_div_get+0x2> sw s0,8(sp) +1c002c4e <__pi_spi_clk_div_get+0x4> mv s0,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:153 + uint32_t periph_freq = pi_freq_get(PI_FREQ_DOMAIN_PERIPH); +1c002c50 <__pi_spi_clk_div_get+0x6> li a0,2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:152 +{ +1c002c52 <__pi_spi_clk_div_get+0x8> sw ra,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:153 + uint32_t periph_freq = pi_freq_get(PI_FREQ_DOMAIN_PERIPH); +1c002c54 <__pi_spi_clk_div_get+0xa> jal ra,1c0032ee +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:154 + if (spi_freq < periph_freq) +1c002c58 <__pi_spi_clk_div_get+0xe> bgeu s0,a0,1c002c78 <__pi_spi_clk_div_get+0x2e> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:157 + { + uint32_t clk_div = 0; + clk_div = (periph_freq + spi_freq - 1) / spi_freq; +1c002c5c <__pi_spi_clk_div_get+0x12> addi a5,s0,-1 +1c002c60 <__pi_spi_clk_div_get+0x16> add a5,a5,a0 +1c002c62 <__pi_spi_clk_div_get+0x18> divu a0,a5,s0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:158 + if (clk_div & 1) +1c002c66 <__pi_spi_clk_div_get+0x1c> andi a5,a0,1 +1c002c6a <__pi_spi_clk_div_get+0x20> beqz a5,1c002c6e <__pi_spi_clk_div_get+0x24> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:160 + { + clk_div += 1; +1c002c6c <__pi_spi_clk_div_get+0x22> addi a0,a0,1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:165 + } + /* The SPIM always divide by 2 once we activate the divider, + thus increase by 1 in case it is even to not go above the max + frequency. */ + clk_div = clk_div >> 1; +1c002c6e <__pi_spi_clk_div_get+0x24> srli a0,a0,0x1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:169 + return clk_div; + } + return 0; +1c002c70 <__pi_spi_clk_div_get+0x26> lw ra,12(sp) +1c002c72 <__pi_spi_clk_div_get+0x28> lw s0,8(sp) +1c002c74 <__pi_spi_clk_div_get+0x2a> addi sp,sp,16 +1c002c76 <__pi_spi_clk_div_get+0x2c> ret +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/../common_function/common_file_spi/src/common_spi.c:168 + return 0; +1c002c78 <__pi_spi_clk_div_get+0x2e> li a0,0 +1c002c7a <__pi_spi_clk_div_get+0x30> j 1c002c70 <__pi_spi_clk_div_get+0x26> +hal_soc_eu_clear_fc_mask(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/soc_eu.h:258 + reg_offset); +} + +static inline void hal_soc_eu_clear_fc_mask(int evt) +{ + if (evt >= 256 || evt < 0) +1c002c7c li a5,255 +1c002c80 bltu a5,a0,1c002c9e +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/soc_eu.h:262 + return; + + int shift = evt % 32; + uint32_t reg_offset = (uint32_t)evt / 32 * 4; +1c002c84 srli a5,a0,0x5 +soc_eu_fc_read(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/soc_eu.h:200 + return readw((uintptr_t)(SOC_EU_ADDR + SOC_FC_MASK0_OFFSET + reg)); +1c002c88 lui a4,0x1a106 +1c002c8c addi a4,a4,4 +hal_soc_eu_clear_fc_mask(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/soc_eu.h:262 + uint32_t reg_offset = (uint32_t)evt / 32 * 4; +1c002c8e slli a5,a5,0x2 +soc_eu_fc_read(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/soc_eu.h:200 + return readw((uintptr_t)(SOC_EU_ADDR + SOC_FC_MASK0_OFFSET + reg)); +1c002c90 add a5,a5,a4 +readw(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/arch/io.h:82 + +static inline uint32_t readw(const uintptr_t addr) +{ + uint32_t val; + + asm volatile("lw %0, 0(%1)" +1c002c92 lw a3,0(a5) +hal_soc_eu_clear_fc_mask(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/soc_eu.h:263 + soc_eu_fc_write(soc_eu_fc_read(reg_offset) | (1u << shift), reg_offset); +1c002c94 li a4,1 +1c002c96 sll a0,a4,a0 +1c002c9a or a0,a0,a3 +writew(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/arch/io.h:45 + asm volatile("sw %0, 0(%1)" +1c002c9c sw a0,0(a5) +hal_soc_eu_clear_fc_mask(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/soc_eu.h:264 +} +1c002c9e ret +__pi_spi_receive_async(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:43 +/**================================================================================================ + ** FUNCTION + *================================================================================================**/ +void __pi_spi_receive_async(struct spim_cs_data *cs_data, void *data, size_t len, + pi_spi_flags_e flags, pi_task_t *task) +{ +1c002ca0 <__pi_spi_receive_async> addi sp,sp,-96 +1c002ca2 <__pi_spi_receive_async+0x2> sw s6,64(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:46 + DBG_PRINTF("...start -> __pi_spi_receive_async...\n"); + // SPIM_CS_DATA_GET_DRV_DATA(cs_data) = (cs_data->drv_data) + struct spim_driver_data *drv_data = SPIM_CS_DATA_GET_DRV_DATA(cs_data); +1c002ca4 <__pi_spi_receive_async+0x4> lw s6,4(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:43 +{ +1c002ca8 <__pi_spi_receive_async+0x8> sw s2,80(sp) +1c002caa <__pi_spi_receive_async+0xa> sw s7,60(sp) +1c002cac <__pi_spi_receive_async+0xc> sw ra,92(sp) +1c002cae <__pi_spi_receive_async+0xe> sw s0,88(sp) +1c002cb0 <__pi_spi_receive_async+0x10> sw s1,84(sp) +1c002cb2 <__pi_spi_receive_async+0x12> sw s3,76(sp) +1c002cb4 <__pi_spi_receive_async+0x14> sw s4,72(sp) +1c002cb6 <__pi_spi_receive_async+0x16> sw s5,68(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:60 + __FILE__, __func__, __LINE__, system_core_clock_get(), cs_data->max_baudrate, + system_core_clock_get() / cs_data->max_baudrate, cfg, qspi); + + int buffer_size = (len + 7) >> 3; + + if (len > 8192 * 8) { +1c002cb8 <__pi_spi_receive_async+0x18> lui a5,0x10 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:51 + int device_id = drv_data->device_id; +1c002cba <__pi_spi_receive_async+0x1a> lbu s1,20(s6) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:52 + uint32_t cfg = cs_data->cfg; +1c002cbe <__pi_spi_receive_async+0x1e> lw s7,8(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:43 +{ +1c002cc2 <__pi_spi_receive_async+0x22> mv s2,a2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:60 + if (len > 8192 * 8) { +1c002cc4 <__pi_spi_receive_async+0x24> bgeu a5,a2,1c002ccc <__pi_spi_receive_async+0x2c> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:63 + DBG_PRINTF("%s:%s:%d: Transaction splitting unimplemented, too large", __FILE__, + __func__, __LINE__); + abort(); /* TODO: unimplemented transaction splitting */ +1c002cc8 <__pi_spi_receive_async+0x28> jal ra,1c0037b8 +1c002ccc <__pi_spi_receive_async+0x2c> mv s0,a0 +1c002cce <__pi_spi_receive_async+0x2e> mv s4,a1 +1c002cd0 <__pi_spi_receive_async+0x30> mv s3,a3 +1c002cd2 <__pi_spi_receive_async+0x32> sw a4,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:68 + } + + DBG_PRINTF("%s:%s:%d: udma_cmd = %p\n", __FILE__, __func__, __LINE__, + &(cs_data->udma_cmd[0])); + uint32_t irq = deactive_irq(); +1c002cd4 <__pi_spi_receive_async+0x34> jal ra,1c002bb2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:74 + + uint8_t bitsword = 0; + uint8_t UDMA_CORE_CFG = 0; + uint32_t byte_align = 0; + + if (cs_data->wordsize == PI_SPI_WORDSIZE_8) { +1c002cd8 <__pi_spi_receive_async+0x38> lbu a6,57(s0) +1c002cdc <__pi_spi_receive_async+0x3c> lw a2,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:68 + uint32_t irq = deactive_irq(); +1c002cde <__pi_spi_receive_async+0x3e> mv s5,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:74 + if (cs_data->wordsize == PI_SPI_WORDSIZE_8) { +1c002ce0 <__pi_spi_receive_async+0x40> beqz a6,1c002cfc <__pi_spi_receive_async+0x5c> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:82 + byte_align = (cs_data->wordsize) && cs_data->big_endian; + + } else if (cs_data->wordsize == PI_SPI_WORDSIZE_16) { + bitsword = 16; + UDMA_CORE_CFG = UDMA_CORE_CFG_DATASIZE_16; // 0x1 + byte_align = (cs_data->wordsize) && cs_data->big_endian; +1c002ce4 <__pi_spi_receive_async+0x44> lbu a5,58(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:79 + } else if (cs_data->wordsize == PI_SPI_WORDSIZE_16) { +1c002ce8 <__pi_spi_receive_async+0x48> li a4,1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:80 + bitsword = 16; +1c002cea <__pi_spi_receive_async+0x4a> li a7,16 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:82 + byte_align = (cs_data->wordsize) && cs_data->big_endian; +1c002cec <__pi_spi_receive_async+0x4c> snez a5,a5 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:79 + } else if (cs_data->wordsize == PI_SPI_WORDSIZE_16) { +1c002cf0 <__pi_spi_receive_async+0x50> beq a6,a4,1c002d00 <__pi_spi_receive_async+0x60> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:85 + } else { + bitsword = 32; + UDMA_CORE_CFG = UDMA_CORE_CFG_DATASIZE_32; // 0x2 +1c002cf4 <__pi_spi_receive_async+0x54> li a6,2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:84 + bitsword = 32; +1c002cf6 <__pi_spi_receive_async+0x56> li a7,32 +1c002cfa <__pi_spi_receive_async+0x5a> j 1c002d00 <__pi_spi_receive_async+0x60> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:77 + byte_align = (cs_data->wordsize) && cs_data->big_endian; +1c002cfc <__pi_spi_receive_async+0x5c> li a5,0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:75 + bitsword = 8; +1c002cfe <__pi_spi_receive_async+0x5e> li a7,8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:92 + } + + DBG_PRINTF("%s:%s:%d: bitsword = %u\n", __FILE__, __func__, __LINE__, bitsword); + DBG_PRINTF("%s:%s:%d: UDMA_CORE_CFG = %u\n", __FILE__, __func__, __LINE__, UDMA_CORE_CFG); + + if (!drv_data->end_of_transfer) { +1c002d00 <__pi_spi_receive_async+0x60> lw a4,12(s6) +1c002d04 <__pi_spi_receive_async+0x64> bnez a4,1c002db0 <__pi_spi_receive_async+0x110> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:94 + cs_data->udma_cmd[0] = cfg; + cs_data->udma_cmd[1] = SPI_CMD_SOT(cs_data->cs); +1c002d06 <__pi_spi_receive_async+0x66> lbu a5,56(s0) +1c002d0a <__pi_spi_receive_async+0x6a> lui a4,0x10000 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:93 + cs_data->udma_cmd[0] = cfg; +1c002d0e <__pi_spi_receive_async+0x6e> sw s7,12(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:94 + cs_data->udma_cmd[1] = SPI_CMD_SOT(cs_data->cs); +1c002d12 <__pi_spi_receive_async+0x72> or a5,a5,a4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:95 + cs_data->udma_cmd[2] = SPI_CMD_RX_DATA(len / bitsword, SPI_CMD_1_WORD_PER_TRANSF, +1c002d14 <__pi_spi_receive_async+0x74> addi a4,a7,-1 +1c002d18 <__pi_spi_receive_async+0x78> divu a7,s2,a7 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:94 + cs_data->udma_cmd[1] = SPI_CMD_SOT(cs_data->cs); +1c002d1c <__pi_spi_receive_async+0x7c> sw a5,16(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:47 + int qspi = (flags & (0x3 << 2)) == PI_SPI_LINES_QUAD; +1c002d1e <__pi_spi_receive_async+0x7e> andi a5,s3,12 +1c002d22 <__pi_spi_receive_async+0x82> addi a5,a5,-4 +1c002d24 <__pi_spi_receive_async+0x84> seqz a5,a5 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:95 + cs_data->udma_cmd[2] = SPI_CMD_RX_DATA(len / bitsword, SPI_CMD_1_WORD_PER_TRANSF, +1c002d28 <__pi_spi_receive_async+0x88> slli a4,a4,0x10 +1c002d2a <__pi_spi_receive_async+0x8a> slli a5,a5,0x1b +1c002d2c <__pi_spi_receive_async+0x8c> or a5,a5,a4 +1c002d2e <__pi_spi_receive_async+0x8e> lui a4,0x70000 +1c002d32 <__pi_spi_receive_async+0x92> or a5,a5,a4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:49 + int cs_mode = (flags >> 0) & 0x3; +1c002d34 <__pi_spi_receive_async+0x94> andi s3,s3,3 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:95 + cs_data->udma_cmd[2] = SPI_CMD_RX_DATA(len / bitsword, SPI_CMD_1_WORD_PER_TRANSF, +1c002d38 <__pi_spi_receive_async+0x98> addi a7,a7,-1 +1c002d3a <__pi_spi_receive_async+0x9a> or a5,a5,a7 +1c002d3e <__pi_spi_receive_async+0x9e> sw a5,20(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:97 + bitsword, qspi, SPI_CMD_MSB_FIRST); + cs_data->udma_cmd[3] = SPI_CMD_EOT(1, cs_mode == PI_SPI_CS_KEEP); +1c002d40 <__pi_spi_receive_async+0xa0> li a5,1 +1c002d42 <__pi_spi_receive_async+0xa2> beq s3,a5,1c002da8 <__pi_spi_receive_async+0x108> +1c002d46 <__pi_spi_receive_async+0xa6> lui a5,0x90000 +1c002d4a <__pi_spi_receive_async+0xaa> addi a5,a5,1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:97 (discriminator 4) +1c002d4c <__pi_spi_receive_async+0xac> sw a5,24(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:107 (discriminator 4) + // number of byteword + uint32_t rx_conf = + UDMA_CORE_TX_CFG_EN(1) | UDMA_CORE_TX_CFG_DATASIZE(UDMA_CORE_CFG); + + /* receive data stream with 32-bit data size */ + spim_enqueue_channel(SPIM(device_id), (uint32_t)data, buffer_size, rx_conf, +1c002d4e <__pi_spi_receive_async+0xae> lui a4,0x1a102 +1c002d52 <__pi_spi_receive_async+0xb2> addi a5,s1,1 +1c002d56 <__pi_spi_receive_async+0xb6> addi a4,a4,128 # 1a102080 <__heap_l1_cluster_start+0xa102060> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:104 (discriminator 4) + UDMA_CORE_TX_CFG_EN(1) | UDMA_CORE_TX_CFG_DATASIZE(UDMA_CORE_CFG); +1c002d5a <__pi_spi_receive_async+0xba> slli a6,a6,0x1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:107 (discriminator 4) + spim_enqueue_channel(SPIM(device_id), (uint32_t)data, buffer_size, rx_conf, +1c002d5c <__pi_spi_receive_async+0xbc> slli a5,a5,0x7 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:99 (discriminator 4) + drv_data->end_of_transfer = task; +1c002d5e <__pi_spi_receive_async+0xbe> sw a2,12(s6) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:100 (discriminator 4) + drv_data->repeat_transfer = NULL; +1c002d62 <__pi_spi_receive_async+0xc2> sw zero,8(s6) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:103 (discriminator 4) + uint32_t rx_conf = +1c002d66 <__pi_spi_receive_async+0xc6> ori a6,a6,16 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:107 (discriminator 4) + spim_enqueue_channel(SPIM(device_id), (uint32_t)data, buffer_size, rx_conf, +1c002d6a <__pi_spi_receive_async+0xca> add a5,a5,a4 +hal_write32(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/include/target.h:35 (discriminator 4) +} + +static inline void hal_write32(volatile void *addr, uint32_t value) +{ + asm volatile("" : : : "memory"); + *((volatile uint32_t *)addr) = value; +1c002d6c <__pi_spi_receive_async+0xcc> sw s4,0(a5) # 90000000 <__heap_l2_shared_start+0x73fe6630> +__pi_spi_receive_async(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:58 (discriminator 4) + int buffer_size = (len + 7) >> 3; +1c002d70 <__pi_spi_receive_async+0xd0> addi s2,s2,7 +1c002d72 <__pi_spi_receive_async+0xd2> srli s2,s2,0x3 +hal_write32(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/include/target.h:35 (discriminator 4) +1c002d76 <__pi_spi_receive_async+0xd6> mv a5,a5 +1c002d7a <__pi_spi_receive_async+0xda> sw s2,4(a5) +1c002d7e <__pi_spi_receive_async+0xde> sw a6,8(a5) +__pi_spi_receive_async(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:113 (discriminator 4) + RX_CHANNEL); + // number of byteword + uint32_t cmd_conf = UDMA_CORE_TX_CFG_EN(1) | + UDMA_CORE_TX_CFG_DATASIZE(UDMA_CORE_CFG_DATASIZE_32); + /* send command stream with 32-bit data size */ + spim_enqueue_channel(SPIM(device_id), (uint32_t)cs_data->udma_cmd, +1c002d82 <__pi_spi_receive_async+0xe2> addi s0,s0,12 +hal_write32(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/include/target.h:35 (discriminator 4) +1c002d84 <__pi_spi_receive_async+0xe4> sw s0,32(a5) +1c002d86 <__pi_spi_receive_async+0xe6> li a4,16 +1c002d88 <__pi_spi_receive_async+0xe8> sw a4,36(a5) +1c002d8a <__pi_spi_receive_async+0xea> li a4,20 +1c002d8c <__pi_spi_receive_async+0xec> sw a4,40(a5) +__pi_spi_receive_async(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:129 + transfer.is_send = 0; + __pi_spim_drv_fifo_enqueue(cs_data, &transfer, task); + } + active_irq(irq); + DBG_PRINTF("...end -> __pi_spi_receive_async...\n"); +} +1c002d8e <__pi_spi_receive_async+0xee> lw s0,88(sp) +1c002d90 <__pi_spi_receive_async+0xf0> lw ra,92(sp) +1c002d92 <__pi_spi_receive_async+0xf2> lw s1,84(sp) +1c002d94 <__pi_spi_receive_async+0xf4> lw s2,80(sp) +1c002d96 <__pi_spi_receive_async+0xf6> lw s3,76(sp) +1c002d98 <__pi_spi_receive_async+0xf8> lw s4,72(sp) +1c002d9a <__pi_spi_receive_async+0xfa> lw s6,64(sp) +1c002d9c <__pi_spi_receive_async+0xfc> lw s7,60(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:127 + active_irq(irq); +1c002d9e <__pi_spi_receive_async+0xfe> mv a0,s5 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:129 +} +1c002da0 <__pi_spi_receive_async+0x100> lw s5,68(sp) +1c002da2 <__pi_spi_receive_async+0x102> addi sp,sp,96 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:127 + active_irq(irq); +1c002da4 <__pi_spi_receive_async+0x104> j 1c002bb8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:97 + cs_data->udma_cmd[3] = SPI_CMD_EOT(1, cs_mode == PI_SPI_CS_KEEP); +1c002da8 <__pi_spi_receive_async+0x108> lui a5,0x90000 +1c002dac <__pi_spi_receive_async+0x10c> addi a5,a5,3 +1c002dae <__pi_spi_receive_async+0x10e> j 1c002d4c <__pi_spi_receive_async+0xac> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:125 + __pi_spim_drv_fifo_enqueue(cs_data, &transfer, task); +1c002db0 <__pi_spi_receive_async+0x110> addi a1,sp,24 +1c002db2 <__pi_spi_receive_async+0x112> mv a0,s0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:119 + transfer.data = data; +1c002db4 <__pi_spi_receive_async+0x114> sw s4,28(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:120 + transfer.flags = flags; +1c002db6 <__pi_spi_receive_async+0x116> sw s3,24(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:121 + transfer.len = len; +1c002db8 <__pi_spi_receive_async+0x118> sw s2,32(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:122 + transfer.cfg_cmd = cfg; +1c002dba <__pi_spi_receive_async+0x11a> sw s7,36(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:123 + transfer.byte_align = byte_align; +1c002dbc <__pi_spi_receive_async+0x11c> sw a5,40(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:124 + transfer.is_send = 0; +1c002dbe <__pi_spi_receive_async+0x11e> sw zero,44(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:125 + __pi_spim_drv_fifo_enqueue(cs_data, &transfer, task); +1c002dc0 <__pi_spi_receive_async+0x120> jal ra,1c002bbe <__pi_spim_drv_fifo_enqueue> +1c002dc4 <__pi_spi_receive_async+0x124> j 1c002d8e <__pi_spi_receive_async+0xee> +__pi_spi_send_async(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:135 + +void __pi_spi_send_async(struct spim_cs_data *cs_data, void *data, size_t len, pi_spi_flags_e flags, + pi_task_t *task) +{ + DBG_PRINTF("...start -> __pi_spi_send_async...\n"); + struct spim_driver_data *drv_data = SPIM_CS_DATA_GET_DRV_DATA(cs_data); +1c002dc6 <__pi_spi_send_async> lw t4,4(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:133 +{ +1c002dca <__pi_spi_send_async+0x4> addi sp,sp,-48 +1c002dcc <__pi_spi_send_async+0x6> sw ra,44(sp) +1c002dce <__pi_spi_send_async+0x8> sw s0,40(sp) +1c002dd0 <__pi_spi_send_async+0xa> mv a7,a2 +1c002dd2 <__pi_spi_send_async+0xc> mv a2,a4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:151 + system_core_clock_get() / cs_data->max_baudrate, cfg, qspi); + + /* buffer size */ + int buffer_size = (len + 7) >> 3; + + if (len > 8192 * 8) { +1c002dd4 <__pi_spi_send_async+0xe> lui a4,0x10 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:141 + int device_id = drv_data->device_id; +1c002dd6 <__pi_spi_send_async+0x10> lbu a5,20(t4) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:142 + uint32_t cfg = cs_data->cfg; // SPI_CMD_CFG(...) +1c002dda <__pi_spi_send_async+0x14> lw a6,8(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:151 + if (len > 8192 * 8) { +1c002dde <__pi_spi_send_async+0x18> bgeu a4,a7,1c002de6 <__pi_spi_send_async+0x20> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:154 + DBG_PRINTF("%s:%s:%d: Transaction splitting unimplemented, too large", __FILE__, + __func__, __LINE__); + abort(); /* TODO: unimplemented transaction splitting */ +1c002de2 <__pi_spi_send_async+0x1c> jal ra,1c0037b8 +__disable_irq(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/arch/riscv.h:177 + uint32_t val = csr_read_clear(MSTATUS_ADDR, BIT(MSTATUS_MIE_Pos)); +1c002de6 <__pi_spi_send_async+0x20> csrrci s0,mstatus,8 +__pi_spi_send_async(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:168 + uint8_t bitsword = 0; + uint8_t UDMA_CORE_CFG = 0; + uint32_t byte_align = 0; + // uint32_t byte_align = (cs_data->wordsize == PI_SPI_WORDSIZE_32) && cs_data->big_endian; + + if (cs_data->wordsize == PI_SPI_WORDSIZE_8) { +1c002dea <__pi_spi_send_async+0x24> lbu t1,57(a0) +1c002dee <__pi_spi_send_async+0x28> beqz t1,1c002ea0 <__pi_spi_send_async+0xda> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:176 + byte_align = (cs_data->wordsize) && cs_data->big_endian; + + } else if (cs_data->wordsize == PI_SPI_WORDSIZE_16) { + bitsword = 16; + UDMA_CORE_CFG = UDMA_CORE_CFG_DATASIZE_16; // 0x1 + byte_align = (cs_data->wordsize) && cs_data->big_endian; +1c002df2 <__pi_spi_send_async+0x2c> lbu a4,58(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:173 + } else if (cs_data->wordsize == PI_SPI_WORDSIZE_16) { +1c002df6 <__pi_spi_send_async+0x30> li t3,1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:176 + byte_align = (cs_data->wordsize) && cs_data->big_endian; +1c002df8 <__pi_spi_send_async+0x32> snez a4,a4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:173 + } else if (cs_data->wordsize == PI_SPI_WORDSIZE_16) { +1c002dfc <__pi_spi_send_async+0x36> bne t1,t3,1c002ea6 <__pi_spi_send_async+0xe0> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:174 + bitsword = 16; +1c002e00 <__pi_spi_send_async+0x3a> li t3,16 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:187 + + DBG_PRINTF("%s:%s:%d: bitsword = %u\n", __FILE__, __func__, __LINE__, bitsword); + DBG_PRINTF("%s:%s:%d: UDMA_CORE_CFG = %u\n", __FILE__, __func__, __LINE__, UDMA_CORE_CFG); + DBG_PRINTF("%s:%s:%d: device_id = %d\n", __FILE__, __func__, __LINE__, device_id); + + if (!drv_data->end_of_transfer) { /* enqueue the transfer */ +1c002e02 <__pi_spi_send_async+0x3c> lw t5,12(t4) +1c002e06 <__pi_spi_send_async+0x40> bnez t5,1c002eb6 <__pi_spi_send_async+0xf0> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:189 + cs_data->udma_cmd[0] = cfg; + cs_data->udma_cmd[1] = SPI_CMD_SOT(cs_data->cs); +1c002e0a <__pi_spi_send_async+0x44> lbu a4,56(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:188 + cs_data->udma_cmd[0] = cfg; +1c002e0e <__pi_spi_send_async+0x48> sw a6,12(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:189 + cs_data->udma_cmd[1] = SPI_CMD_SOT(cs_data->cs); +1c002e12 <__pi_spi_send_async+0x4c> lui a6,0x10000 +1c002e16 <__pi_spi_send_async+0x50> or a4,a4,a6 +1c002e1a <__pi_spi_send_async+0x54> sw a4,16(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:190 + cs_data->udma_cmd[2] = SPI_CMD_TX_DATA((len / bitsword), SPI_CMD_1_WORD_PER_TRANSF, +1c002e1c <__pi_spi_send_async+0x56> addi a4,t3,-1 +1c002e20 <__pi_spi_send_async+0x5a> divu t3,a7,t3 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:136 + int qspi = (flags & (0x3 << 2)) == PI_SPI_LINES_QUAD; +1c002e24 <__pi_spi_send_async+0x5e> andi a6,a3,12 +1c002e28 <__pi_spi_send_async+0x62> addi a6,a6,-4 +1c002e2a <__pi_spi_send_async+0x64> seqz a6,a6 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:190 + cs_data->udma_cmd[2] = SPI_CMD_TX_DATA((len / bitsword), SPI_CMD_1_WORD_PER_TRANSF, +1c002e2e <__pi_spi_send_async+0x68> slli a4,a4,0x10 +1c002e30 <__pi_spi_send_async+0x6a> slli a6,a6,0x1b +1c002e32 <__pi_spi_send_async+0x6c> or a6,a6,a4 +1c002e36 <__pi_spi_send_async+0x70> lui a4,0x60000 +1c002e3a <__pi_spi_send_async+0x74> or a6,a6,a4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:138 + int cs_mode = (flags >> 0) & 0x3; +1c002e3e <__pi_spi_send_async+0x78> andi a3,a3,3 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:192 + bitsword, qspi, SPI_CMD_MSB_FIRST); + cs_data->udma_cmd[3] = SPI_CMD_EOT(1, cs_mode == PI_SPI_CS_KEEP); +1c002e40 <__pi_spi_send_async+0x7a> li a4,1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:190 + cs_data->udma_cmd[2] = SPI_CMD_TX_DATA((len / bitsword), SPI_CMD_1_WORD_PER_TRANSF, +1c002e42 <__pi_spi_send_async+0x7c> addi t3,t3,-1 +1c002e44 <__pi_spi_send_async+0x7e> or a6,a6,t3 +1c002e48 <__pi_spi_send_async+0x82> sw a6,20(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:192 + cs_data->udma_cmd[3] = SPI_CMD_EOT(1, cs_mode == PI_SPI_CS_KEEP); +1c002e4c <__pi_spi_send_async+0x86> beq a3,a4,1c002eae <__pi_spi_send_async+0xe8> +1c002e50 <__pi_spi_send_async+0x8a> lui a3,0x90000 +1c002e54 <__pi_spi_send_async+0x8e> addi a3,a3,1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:200 (discriminator 4) + drv_data->repeat_transfer = NULL; + + uint32_t cmd_conf = UDMA_CORE_TX_CFG_EN(1) | + UDMA_CORE_TX_CFG_DATASIZE(UDMA_CORE_CFG_DATASIZE_32); + /* send command stream with 32-bit data size */ + spim_enqueue_channel(SPIM(device_id), (uint32_t)cs_data->udma_cmd, +1c002e56 <__pi_spi_send_async+0x90> addi a5,a5,1 +1c002e58 <__pi_spi_send_async+0x92> lui a4,0x1a102 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:192 (discriminator 4) + cs_data->udma_cmd[3] = SPI_CMD_EOT(1, cs_mode == PI_SPI_CS_KEEP); +1c002e5c <__pi_spi_send_async+0x96> sw a3,24(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:200 (discriminator 4) + spim_enqueue_channel(SPIM(device_id), (uint32_t)cs_data->udma_cmd, +1c002e5e <__pi_spi_send_async+0x98> addi a4,a4,128 # 1a102080 <__heap_l1_cluster_start+0xa102060> +1c002e62 <__pi_spi_send_async+0x9c> slli a5,a5,0x7 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:194 (discriminator 4) + drv_data->end_of_transfer = task; +1c002e64 <__pi_spi_send_async+0x9e> sw a2,12(t4) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:195 (discriminator 4) + drv_data->repeat_transfer = NULL; +1c002e68 <__pi_spi_send_async+0xa2> sw zero,8(t4) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:200 (discriminator 4) + spim_enqueue_channel(SPIM(device_id), (uint32_t)cs_data->udma_cmd, +1c002e6c <__pi_spi_send_async+0xa6> add a5,a5,a4 +1c002e6e <__pi_spi_send_async+0xa8> addi a0,a0,12 +hal_write32(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/include/target.h:35 (discriminator 4) +1c002e70 <__pi_spi_send_async+0xaa> mv a5,a5 +1c002e74 <__pi_spi_send_async+0xae> sw a0,32(a5) +1c002e76 <__pi_spi_send_async+0xb0> li a4,16 +1c002e78 <__pi_spi_send_async+0xb2> sw a4,36(a5) +1c002e7a <__pi_spi_send_async+0xb4> li a4,20 +1c002e7c <__pi_spi_send_async+0xb6> sw a4,40(a5) +__pi_spi_send_async(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:204 (discriminator 4) + 4 * sizeof(uint32_t), cmd_conf, COMMAND_CHANNEL); + + uint32_t tx_conf = + UDMA_CORE_TX_CFG_EN(1) | UDMA_CORE_TX_CFG_DATASIZE(UDMA_CORE_CFG); +1c002e7e <__pi_spi_send_async+0xb8> slli t1,t1,0x1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:203 (discriminator 4) + uint32_t tx_conf = +1c002e80 <__pi_spi_send_async+0xba> ori t1,t1,16 +hal_write32(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/include/target.h:35 (discriminator 4) +1c002e84 <__pi_spi_send_async+0xbe> sw a1,16(a5) +__pi_spi_send_async(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:149 (discriminator 4) + int buffer_size = (len + 7) >> 3; +1c002e86 <__pi_spi_send_async+0xc0> addi a7,a7,7 +1c002e88 <__pi_spi_send_async+0xc2> srli a7,a7,0x3 +hal_write32(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/include/target.h:35 (discriminator 4) +1c002e8c <__pi_spi_send_async+0xc6> sw a7,20(a5) # 90000014 <__heap_l2_shared_start+0x73fe6644> +1c002e90 <__pi_spi_send_async+0xca> sw t1,24(a5) +__pi_spi_send_async(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:220 + transfer.cfg_cmd = cfg; + transfer.byte_align = byte_align; + transfer.is_send = 1; + __pi_spim_drv_fifo_enqueue(cs_data, &transfer, task); + } + active_irq(irq); +1c002e94 <__pi_spi_send_async+0xce> mv a0,s0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:222 + DBG_PRINTF("...end -> __pi_spi_send_async...\n"); +} +1c002e96 <__pi_spi_send_async+0xd0> lw s0,40(sp) +1c002e98 <__pi_spi_send_async+0xd2> lw ra,44(sp) +1c002e9a <__pi_spi_send_async+0xd4> addi sp,sp,48 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:220 + active_irq(irq); +1c002e9c <__pi_spi_send_async+0xd6> j 1c002bb8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:171 + byte_align = (cs_data->wordsize) && cs_data->big_endian; +1c002ea0 <__pi_spi_send_async+0xda> li a4,0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:169 + bitsword = 8; +1c002ea2 <__pi_spi_send_async+0xdc> li t3,8 +1c002ea4 <__pi_spi_send_async+0xde> j 1c002e02 <__pi_spi_send_async+0x3c> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:179 + UDMA_CORE_CFG = UDMA_CORE_CFG_DATASIZE_32; // 0x2 +1c002ea6 <__pi_spi_send_async+0xe0> li t1,2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:178 + bitsword = 32; +1c002ea8 <__pi_spi_send_async+0xe2> li t3,32 +1c002eac <__pi_spi_send_async+0xe6> j 1c002e02 <__pi_spi_send_async+0x3c> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:192 + cs_data->udma_cmd[3] = SPI_CMD_EOT(1, cs_mode == PI_SPI_CS_KEEP); +1c002eae <__pi_spi_send_async+0xe8> lui a3,0x90000 +1c002eb2 <__pi_spi_send_async+0xec> addi a3,a3,3 +1c002eb4 <__pi_spi_send_async+0xee> j 1c002e56 <__pi_spi_send_async+0x90> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:212 + transfer.data = data; +1c002eb6 <__pi_spi_send_async+0xf0> sw a1,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:217 + transfer.is_send = 1; +1c002eb8 <__pi_spi_send_async+0xf2> li a5,1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:218 + __pi_spim_drv_fifo_enqueue(cs_data, &transfer, task); +1c002eba <__pi_spi_send_async+0xf4> addi a1,sp,8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:213 + transfer.flags = flags; +1c002ebc <__pi_spi_send_async+0xf6> sw a3,8(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:214 + transfer.len = len; +1c002ebe <__pi_spi_send_async+0xf8> sw a7,16(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:215 + transfer.cfg_cmd = cfg; +1c002ec0 <__pi_spi_send_async+0xfa> sw a6,20(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:216 + transfer.byte_align = byte_align; +1c002ec2 <__pi_spi_send_async+0xfc> sw a4,24(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:217 + transfer.is_send = 1; +1c002ec4 <__pi_spi_send_async+0xfe> sw a5,28(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:218 + __pi_spim_drv_fifo_enqueue(cs_data, &transfer, task); +1c002ec6 <__pi_spi_send_async+0x100> jal ra,1c002bbe <__pi_spim_drv_fifo_enqueue> +1c002eca <__pi_spi_send_async+0x104> j 1c002e94 <__pi_spi_send_async+0xce> +__pi_spi_open(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:225 + +int __pi_spi_open(struct spim_cs_data **cs_data, struct pi_spi_conf *conf) +{ +1c002ecc <__pi_spi_open> addi sp,sp,-32 +1c002ece <__pi_spi_open+0x2> sw s0,24(sp) +1c002ed0 <__pi_spi_open+0x4> sw s3,12(sp) +1c002ed2 <__pi_spi_open+0x6> sw s4,8(sp) +1c002ed4 <__pi_spi_open+0x8> mv s0,a1 +1c002ed6 <__pi_spi_open+0xa> sw ra,28(sp) +1c002ed8 <__pi_spi_open+0xc> sw s1,20(sp) +1c002eda <__pi_spi_open+0xe> sw s2,16(sp) +1c002edc <__pi_spi_open+0x10> sw s5,4(sp) +1c002ede <__pi_spi_open+0x12> mv s4,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:228 + DBG_PRINTF("...start -> pi_spi_open...\n"); + + uint32_t irq = deactive_irq(); +1c002ee0 <__pi_spi_open+0x14> jal ra,1c002bb2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:242 + unsigned char spi_id = conf->itf; + int periph_id = UDMA_SPIM_ID(spi_id); + + DBG_PRINTF("%s:%s:%d: periph_id = %u\n", __FILE__, __func__, __LINE__, periph_id); + + udma_ctrl_cg_disable(UDMA_SPIM_ID(conf->itf)); +1c002ee4 <__pi_spi_open+0x18> lb a5,17(s0) +udma_ctrl_cg_disable(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/udma_ctrl.h:75 + return hal_read32(&UDMA_GC->EVTIN); +} + +static inline void udma_ctrl_cg_disable(uint32_t udma_device_id) +{ + hal_or32(&UDMA_GC->CG, 1 << udma_device_id); +1c002ee8 <__pi_spi_open+0x1c> li a4,1 +__pi_spi_open(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:228 + uint32_t irq = deactive_irq(); +1c002eea <__pi_spi_open+0x1e> mv s3,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:242 + udma_ctrl_cg_disable(UDMA_SPIM_ID(conf->itf)); +1c002eec <__pi_spi_open+0x20> addi a5,a5,1 +udma_ctrl_cg_disable(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/udma_ctrl.h:75 +1c002eee <__pi_spi_open+0x22> sll a5,a4,a5 +hal_or32(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/include/target.h:49 +} + +static inline void hal_or32(volatile void *addr, uint32_t value) +{ + asm volatile("" : : : "memory"); + *((volatile uint32_t *)addr) |= value; +1c002ef2 <__pi_spi_open+0x26> lui a3,0x1a102 +1c002ef6 <__pi_spi_open+0x2a> lw a2,0(a3) +1c002ef8 <__pi_spi_open+0x2c> or a5,a5,a2 +1c002efa <__pi_spi_open+0x2e> sw a5,0(a3) +__pi_spi_open(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:244 + + hal_soc_eu_set_fc_mask(SOC_EVENT_UDMA_SPIM_EOT(conf->itf)); +1c002efc <__pi_spi_open+0x30> lb a0,17(s0) +1c002f00 <__pi_spi_open+0x34> slli a5,a0,0x2 +1c002f04 <__pi_spi_open+0x38> addi a0,a5,7 +hal_soc_eu_set_fc_mask(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/soc_eu.h:225 + if (evt >= 256 || evt < 0) +1c002f08 <__pi_spi_open+0x3c> li a5,255 +1c002f0c <__pi_spi_open+0x40> bltu a5,a0,1c002f2c <__pi_spi_open+0x60> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/soc_eu.h:229 + uint32_t reg_offset = (uint32_t)evt / 32 * 4; +1c002f10 <__pi_spi_open+0x44> srli a5,a0,0x5 +soc_eu_fc_read(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/soc_eu.h:200 + return readw((uintptr_t)(SOC_EU_ADDR + SOC_FC_MASK0_OFFSET + reg)); +1c002f14 <__pi_spi_open+0x48> lui a3,0x1a106 +1c002f18 <__pi_spi_open+0x4c> addi a3,a3,4 +hal_soc_eu_set_fc_mask(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/soc_eu.h:229 + uint32_t reg_offset = (uint32_t)evt / 32 * 4; +1c002f1a <__pi_spi_open+0x4e> slli a5,a5,0x2 +soc_eu_fc_read(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/soc_eu.h:200 + return readw((uintptr_t)(SOC_EU_ADDR + SOC_FC_MASK0_OFFSET + reg)); +1c002f1c <__pi_spi_open+0x50> add a5,a5,a3 +readw(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/arch/io.h:82 + asm volatile("lw %0, 0(%1)" +1c002f1e <__pi_spi_open+0x52> lw a3,0(a5) +hal_soc_eu_set_fc_mask(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/soc_eu.h:230 + soc_eu_fc_write(soc_eu_fc_read(reg_offset) & ~(1u << shift), +1c002f20 <__pi_spi_open+0x54> sll a4,a4,a0 +1c002f24 <__pi_spi_open+0x58> not a4,a4 +1c002f28 <__pi_spi_open+0x5c> and a4,a4,a3 +writew(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/arch/io.h:45 + asm volatile("sw %0, 0(%1)" +1c002f2a <__pi_spi_open+0x5e> sw a4,0(a5) +__pi_spi_open(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:246 + + pi_fc_event_handler_set(SOC_EVENT_UDMA_SPIM_EOT(conf->itf), spim_eot_handler); +1c002f2c <__pi_spi_open+0x60> lui a1,0x1c003 +1c002f30 <__pi_spi_open+0x64> addi a1,a1,262 # 1c003106 +1c002f34 <__pi_spi_open+0x68> jal 1c0033b6 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:247 + pi_fc_event_handler_set(SOC_EVENT_UDMA_SPIM_TX(conf->itf), spim_tx_handler); +1c002f36 <__pi_spi_open+0x6a> lb a0,17(s0) +1c002f3a <__pi_spi_open+0x6e> lui a1,0x1c003 +1c002f3e <__pi_spi_open+0x72> addi a1,a1,328 # 1c003148 +1c002f42 <__pi_spi_open+0x76> slli a0,a0,0x2 +1c002f44 <__pi_spi_open+0x78> addi a0,a0,5 +1c002f46 <__pi_spi_open+0x7a> jal 1c0033b6 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:248 + pi_fc_event_handler_set(SOC_EVENT_UDMA_SPIM_RX(conf->itf), spim_rx_handler); +1c002f48 <__pi_spi_open+0x7c> lb a0,17(s0) +1c002f4c <__pi_spi_open+0x80> lui a1,0x1c003 +1c002f50 <__pi_spi_open+0x84> addi a1,a1,358 # 1c003166 +1c002f54 <__pi_spi_open+0x88> addi a0,a0,1 +1c002f56 <__pi_spi_open+0x8a> slli a0,a0,0x2 +1c002f58 <__pi_spi_open+0x8c> jal 1c0033b6 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:255 + /* + ** spim_driver_data keeps information for each spi interface. + */ + // Take care of driver data + struct spim_driver_data *drv_data; + if (__g_spim_drv_data[conf->itf]) { +1c002f5a <__pi_spi_open+0x8e> lb s5,17(s0) +1c002f5e <__pi_spi_open+0x92> addi s2,gp,-604 # 1c009180 <__g_spim_drv_data> +1c002f62 <__pi_spi_open+0x96> slli a5,s5,0x2 +1c002f66 <__pi_spi_open+0x9a> add s2,s2,a5 +1c002f68 <__pi_spi_open+0x9c> lw s1,0(s2) +1c002f6c <__pi_spi_open+0xa0> bnez s1,1c002fa2 <__pi_spi_open+0xd6> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:260 + drv_data = __g_spim_drv_data[conf->itf]; + } else { + + // Do this to define a node in a list. The list is a dynamic object. + __g_spim_drv_data[conf->itf] = pi_default_malloc(sizeof(struct spim_driver_data)); +1c002f6e <__pi_spi_open+0xa2> li a0,24 +1c002f70 <__pi_spi_open+0xa4> jal ra,1c003908 +1c002f74 <__pi_spi_open+0xa8> mv s1,a0 +1c002f76 <__pi_spi_open+0xaa> sw a0,0(s2) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:261 + memset(__g_spim_drv_data[conf->itf], 0, sizeof(struct spim_driver_data)); +1c002f7a <__pi_spi_open+0xae> sw zero,4(a0) +1c002f7e <__pi_spi_open+0xb2> sw zero,8(a0) +1c002f82 <__pi_spi_open+0xb6> sw zero,12(a0) +1c002f86 <__pi_spi_open+0xba> sw zero,16(a0) +1c002f8a <__pi_spi_open+0xbe> sw zero,20(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:264 + drv_data = __g_spim_drv_data[conf->itf]; + // Do this to define a node in a list. The list is a dynamic object. + drv_data->drv_fifo = pi_default_malloc(sizeof(struct spim_drv_fifo)); +1c002f8e <__pi_spi_open+0xc2> li a0,8 +1c002f90 <__pi_spi_open+0xc4> jal ra,1c003908 +1c002f94 <__pi_spi_open+0xc8> sw a0,0(s1) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:265 + memset(drv_data->drv_fifo, 0, sizeof(struct spim_drv_fifo)); +1c002f96 <__pi_spi_open+0xca> sw zero,0(a0) +1c002f9a <__pi_spi_open+0xce> sw zero,4(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:271 + // controllo che il puntatore sia = 0 + if (!drv_data->drv_fifo) { + active_irq(irq); + return -1; + } + drv_data->device_id = conf->itf; +1c002f9e <__pi_spi_open+0xd2> sb s5,20(s1) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:276 + } + /* + ** Number of open SPI interfaces + */ + drv_data->nb_open++; +1c002fa2 <__pi_spi_open+0xd6> lw a5,16(s1) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:279 + + // Take care of cs data + *cs_data = __pi_spim_get_cs_data(drv_data, conf->cs); +1c002fa4 <__pi_spi_open+0xd8> mv a0,s1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:276 + drv_data->nb_open++; +1c002fa6 <__pi_spi_open+0xda> addi a5,a5,1 +1c002fa8 <__pi_spi_open+0xdc> sw a5,16(s1) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:279 + *cs_data = __pi_spim_get_cs_data(drv_data, conf->cs); +1c002faa <__pi_spi_open+0xde> lb a1,16(s0) +1c002fae <__pi_spi_open+0xe2> jal ra,1c002c12 <__pi_spim_get_cs_data> +1c002fb2 <__pi_spi_open+0xe6> sw a0,0(s4) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:281 + + if (!*cs_data) { // if (*cs_data == 0) +1c002fb6 <__pi_spi_open+0xea> bnez a0,1c003046 <__pi_spi_open+0x17a> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:282 + uint32_t clk_div = __pi_spi_clk_div_get(conf->max_baudrate); +1c002fb8 <__pi_spi_open+0xec> lw a0,0(s0) +1c002fba <__pi_spi_open+0xee> jal ra,1c002c4a <__pi_spi_clk_div_get> +1c002fbe <__pi_spi_open+0xf2> mv s5,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:284 + // alloc a cs data, need to be in udma reachable ram + struct spim_cs_data *_cs_data = pi_data_malloc(sizeof(struct spim_cs_data)); +1c002fc0 <__pi_spi_open+0xf4> li a0,60 +1c002fc4 <__pi_spi_open+0xf8> jal ra,1c003908 +1c002fc8 <__pi_spi_open+0xfc> mv s2,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:285 + if (_cs_data == NULL) { +1c002fca <__pi_spi_open+0xfe> bnez a0,1c002fe6 <__pi_spi_open+0x11a> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:287 + DBG_PRINTF("[%s] _cs_data alloc failed\n", __func__); + active_irq(irq); +1c002fcc <__pi_spi_open+0x100> mv a0,s3 +1c002fce <__pi_spi_open+0x102> jal ra,1c002bb8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:288 + return -2; +1c002fd2 <__pi_spi_open+0x106> li a0,-2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:318 + /* TODO: paste end */ + + active_irq(irq); + DBG_PRINTF("...end -> pi_spi_open...\n"); + return status; +} +1c002fd4 <__pi_spi_open+0x108> lw ra,28(sp) +1c002fd6 <__pi_spi_open+0x10a> lw s0,24(sp) +1c002fd8 <__pi_spi_open+0x10c> lw s1,20(sp) +1c002fda <__pi_spi_open+0x10e> lw s2,16(sp) +1c002fdc <__pi_spi_open+0x110> lw s3,12(sp) +1c002fde <__pi_spi_open+0x112> lw s4,8(sp) +1c002fe0 <__pi_spi_open+0x114> lw s5,4(sp) +1c002fe2 <__pi_spi_open+0x116> addi sp,sp,32 +1c002fe4 <__pi_spi_open+0x118> ret +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:290 + if (clk_div > 0xFF) { +1c002fe6 <__pi_spi_open+0x11a> li a5,255 +1c002fea <__pi_spi_open+0x11e> bgeu a5,s5,1c002ff8 <__pi_spi_open+0x12c> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:294 + active_irq(irq); +1c002fee <__pi_spi_open+0x122> mv a0,s3 +1c002ff0 <__pi_spi_open+0x124> jal ra,1c002bb8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:295 + return -3; +1c002ff4 <__pi_spi_open+0x128> li a0,-3 +1c002ff6 <__pi_spi_open+0x12a> j 1c002fd4 <__pi_spi_open+0x108> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:298 + memset(_cs_data, 0, sizeof(struct spim_cs_data)); +1c002ff8 <__pi_spi_open+0x12c> li a1,0 +1c002ffa <__pi_spi_open+0x12e> li a2,60 +1c002ffe <__pi_spi_open+0x132> jal ra,1c000e7a +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:299 + _cs_data->max_baudrate = conf->max_baudrate; +1c003002 <__pi_spi_open+0x136> lw a5,0(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:302 + _cs_data->big_endian = conf->big_endian; +1c003004 <__pi_spi_open+0x138> lbu a3,5(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:300 + _cs_data->polarity = conf->polarity; +1c003008 <__pi_spi_open+0x13c> lw a4,8(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:299 + _cs_data->max_baudrate = conf->max_baudrate; +1c00300a <__pi_spi_open+0x13e> sw a5,44(s2) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:302 + _cs_data->big_endian = conf->big_endian; +1c00300e <__pi_spi_open+0x142> sb a3,58(s2) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:301 + _cs_data->phase = conf->phase; +1c003012 <__pi_spi_open+0x146> lw a5,12(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:303 + _cs_data->wordsize = conf->wordsize; +1c003014 <__pi_spi_open+0x148> lbu a3,4(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:300 + _cs_data->polarity = conf->polarity; +1c003018 <__pi_spi_open+0x14c> sw a4,48(s2) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:301 + _cs_data->phase = conf->phase; +1c00301c <__pi_spi_open+0x150> sw a5,52(s2) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:303 + _cs_data->wordsize = conf->wordsize; +1c003020 <__pi_spi_open+0x154> sb a3,57(s2) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:305 + _cs_data->cfg = SPI_CMD_CFG(clk_div, _cs_data->phase, _cs_data->polarity); +1c003024 <__pi_spi_open+0x158> slli a5,a5,0x9 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:304 + _cs_data->cs = conf->cs; +1c003026 <__pi_spi_open+0x15a> lbu a3,16(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:305 + _cs_data->cfg = SPI_CMD_CFG(clk_div, _cs_data->phase, _cs_data->polarity); +1c00302a <__pi_spi_open+0x15e> slli a4,a4,0x8 +1c00302c <__pi_spi_open+0x160> or a5,a5,a4 +1c00302e <__pi_spi_open+0x162> or a5,a5,s5 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:304 + _cs_data->cs = conf->cs; +1c003032 <__pi_spi_open+0x166> sb a3,56(s2) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:305 + _cs_data->cfg = SPI_CMD_CFG(clk_div, _cs_data->phase, _cs_data->polarity); +1c003036 <__pi_spi_open+0x16a> sw a5,8(s2) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:307 + *cs_data = _cs_data; +1c00303a <__pi_spi_open+0x16e> sw s2,0(s4) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:309 + __pi_spim_cs_data_add(drv_data, _cs_data); +1c00303e <__pi_spi_open+0x172> mv a1,s2 +1c003040 <__pi_spi_open+0x174> mv a0,s1 +1c003042 <__pi_spi_open+0x176> jal ra,1c002c42 <__pi_spim_cs_data_add> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:315 + active_irq(irq); +1c003046 <__pi_spi_open+0x17a> mv a0,s3 +1c003048 <__pi_spi_open+0x17c> jal ra,1c002bb8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:317 + return status; +1c00304c <__pi_spi_open+0x180> li a0,0 +1c00304e <__pi_spi_open+0x182> j 1c002fd4 <__pi_spi_open+0x108> +__pi_spi_close(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:321 + +void __pi_spi_close(struct spim_cs_data *cs_data, struct pi_spi_conf *conf) +{ +1c003050 <__pi_spi_close> addi sp,sp,-16 +1c003052 <__pi_spi_close+0x2> sw s1,4(sp) +1c003054 <__pi_spi_close+0x4> mv s1,a0 +1c003056 <__pi_spi_close+0x6> sw ra,12(sp) +1c003058 <__pi_spi_close+0x8> sw s0,8(sp) +1c00305a <__pi_spi_close+0xa> sw s2,0(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:324 + DBG_PRINTF("...start -> pi_spi_close...\n"); + + uint32_t irq = deactive_irq(); +1c00305c <__pi_spi_close+0xc> jal ra,1c002bb2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:326 + /* TODO: paste beg */ + struct spim_driver_data *drv_data = cs_data->drv_data; +1c003060 <__pi_spi_close+0x10> lw s0,4(s1) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:327 + __pi_spim_cs_data_del(drv_data, cs_data->cs); +1c003062 <__pi_spi_close+0x12> lbu a1,56(s1) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:324 + uint32_t irq = deactive_irq(); +1c003066 <__pi_spi_close+0x16> mv s2,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:327 + __pi_spim_cs_data_del(drv_data, cs_data->cs); +1c003068 <__pi_spi_close+0x18> mv a0,s0 +1c00306a <__pi_spi_close+0x1a> jal ra,1c002c24 <__pi_spim_cs_data_del> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:331 + /* + ** Number of open SPI interfaces + */ + drv_data->nb_open--; +1c00306e <__pi_spi_close+0x1e> lw a5,16(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:345 + pi_default_free(drv_data, sizeof(drv_data)); + + active_irq(irq); + return; + } + pi_data_free(cs_data, sizeof(cs_data)); +1c003070 <__pi_spi_close+0x20> mv a0,s1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:331 + drv_data->nb_open--; +1c003072 <__pi_spi_close+0x22> addi a5,a5,-1 +1c003074 <__pi_spi_close+0x24> sw a5,16(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:333 + if (drv_data->nb_open == 0) { +1c003076 <__pi_spi_close+0x26> bnez a5,1c0030c4 <__pi_spi_close+0x74> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:335 + udma_ctrl_cg_enable(UDMA_SPIM_ID(drv_data->device_id)); +1c003078 <__pi_spi_close+0x28> lbu a5,20(s0) +1c00307c <__pi_spi_close+0x2c> addi a4,a5,1 +udma_ctrl_cg_enable(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/udma_ctrl.h:80 +} + +static inline void udma_ctrl_cg_enable(uint32_t udma_device_id) +{ + hal_and32(&UDMA_GC->CG, ~(1 << udma_device_id)); +1c003080 <__pi_spi_close+0x30> li a5,1 +1c003082 <__pi_spi_close+0x32> sll a5,a5,a4 +1c003086 <__pi_spi_close+0x36> not a5,a5 +hal_and32(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/pulp/include/target.h:56 +} + +static inline void hal_and32(volatile void *addr, uint32_t value) +{ + asm volatile("" : : : "memory"); + *((volatile uint32_t *)addr) &= value; +1c00308a <__pi_spi_close+0x3a> lui a4,0x1a102 +1c00308e <__pi_spi_close+0x3e> lw a3,0(a4) +1c003090 <__pi_spi_close+0x40> and a5,a5,a3 +1c003092 <__pi_spi_close+0x42> sw a5,0(a4) +__pi_spi_close(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:336 + hal_soc_eu_clear_fc_mask(SOC_EVENT_UDMA_SPIM_EOT(drv_data->device_id)); +1c003094 <__pi_spi_close+0x44> lbu a0,20(s0) +1c003098 <__pi_spi_close+0x48> slli a0,a0,0x2 +1c00309a <__pi_spi_close+0x4a> addi a0,a0,7 +1c00309c <__pi_spi_close+0x4c> jal ra,1c002c7c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:337 + pi_fc_event_handler_clear(SOC_EVENT_UDMA_SPIM_EOT(drv_data->device_id)); +1c0030a0 <__pi_spi_close+0x50> lbu a0,20(s0) +1c0030a4 <__pi_spi_close+0x54> slli a0,a0,0x2 +1c0030a6 <__pi_spi_close+0x56> addi a0,a0,7 +1c0030a8 <__pi_spi_close+0x58> jal 1c0033c4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:338 + __g_spim_drv_data[drv_data->device_id] = NULL; +1c0030aa <__pi_spi_close+0x5a> lbu a5,20(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:339 + pi_default_free(drv_data->drv_fifo, sizeof(drv_data->drv_fifo)); +1c0030ae <__pi_spi_close+0x5e> lw a0,0(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:338 + __g_spim_drv_data[drv_data->device_id] = NULL; +1c0030b0 <__pi_spi_close+0x60> slli a4,a5,0x2 +1c0030b4 <__pi_spi_close+0x64> addi a5,gp,-604 # 1c009180 <__g_spim_drv_data> +1c0030b8 <__pi_spi_close+0x68> add a5,a5,a4 +1c0030ba <__pi_spi_close+0x6a> sw zero,0(a5) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:339 + pi_default_free(drv_data->drv_fifo, sizeof(drv_data->drv_fifo)); +1c0030be <__pi_spi_close+0x6e> jal ra,1c003914 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:340 + pi_default_free(drv_data, sizeof(drv_data)); +1c0030c2 <__pi_spi_close+0x72> mv a0,s0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:345 + pi_data_free(cs_data, sizeof(cs_data)); +1c0030c4 <__pi_spi_close+0x74> jal ra,1c003914 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:352 + /* TODO: paste end */ + + active_irq(irq); + DBG_PRINTF("...end -> pi_spi_close...\n"); + return; +} +1c0030c8 <__pi_spi_close+0x78> lw s0,8(sp) +1c0030ca <__pi_spi_close+0x7a> lw ra,12(sp) +1c0030cc <__pi_spi_close+0x7c> lw s1,4(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:349 + active_irq(irq); +1c0030ce <__pi_spi_close+0x7e> mv a0,s2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:352 +} +1c0030d0 <__pi_spi_close+0x80> lw s2,0(sp) +1c0030d2 <__pi_spi_close+0x82> addi sp,sp,16 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:349 + active_irq(irq); +1c0030d4 <__pi_spi_close+0x84> j 1c002bb8 +__pi_spim_exec_next_transfer(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:455 + +void __pi_spim_exec_next_transfer(pi_task_t *task) +{ + DBG_PRINTF("...start -> __pi_spim_exec_next_transfer...\n"); + DBG_PRINTF("%s:%s:%d\n", __FILE__, __func__, __LINE__); + if (task->data[5] == 1) { // if is send +1c0030d8 <__pi_spim_exec_next_transfer> lw a5,40(a0) +1c0030da <__pi_spim_exec_next_transfer+0x2> li a4,1 +1c0030dc <__pi_spim_exec_next_transfer+0x4> bne a5,a4,1c0030ee <__pi_spim_exec_next_transfer+0x16> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:457 + // cs data | data buffer | len | flags | end of transfer task + __pi_spi_send_async((struct spim_cs_data *)task->data[0], (void *)task->data[1], +1c0030e0 <__pi_spim_exec_next_transfer+0x8> lw a4,36(a0) +1c0030e2 <__pi_spim_exec_next_transfer+0xa> lw a3,32(a0) +1c0030e4 <__pi_spim_exec_next_transfer+0xc> lw a2,28(a0) +1c0030e6 <__pi_spim_exec_next_transfer+0xe> lw a1,24(a0) +1c0030e8 <__pi_spim_exec_next_transfer+0x10> lw a0,20(a0) +1c0030ea <__pi_spim_exec_next_transfer+0x12> j 1c002dc6 <__pi_spi_send_async> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:459 + task->data[2], task->data[3], (pi_task_t *)task->data[4]); + } else if (task->data[5] == 0) { +1c0030ee <__pi_spim_exec_next_transfer+0x16> bnez a5,1c0030fe <__pi_spim_exec_next_transfer+0x26> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:461 + // cs data | data buffer | len | flags | end of transfer task + __pi_spi_receive_async((struct spim_cs_data *)task->data[0], (void *)task->data[1], +1c0030f0 <__pi_spim_exec_next_transfer+0x18> lw a4,36(a0) +1c0030f2 <__pi_spim_exec_next_transfer+0x1a> lw a3,32(a0) +1c0030f4 <__pi_spim_exec_next_transfer+0x1c> lw a2,28(a0) +1c0030f6 <__pi_spim_exec_next_transfer+0x1e> lw a1,24(a0) +1c0030f8 <__pi_spim_exec_next_transfer+0x20> lw a0,20(a0) +1c0030fa <__pi_spim_exec_next_transfer+0x22> j 1c002ca0 <__pi_spi_receive_async> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:452 +{ +1c0030fe <__pi_spim_exec_next_transfer+0x26> addi sp,sp,-16 +1c003100 <__pi_spim_exec_next_transfer+0x28> sw ra,12(sp) +__pi_spi_xfer_async(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:477 + +void __pi_spi_xfer_async(struct spim_cs_data *cs_data, void *tx_data, void *rx_data, size_t len, + pi_spi_flags_e flags, pi_task_t *task) +{ + /* TODO: port spi_xfer async */ + abort(); +1c003102 <__pi_spim_exec_next_transfer+0x2a> jal ra,1c0037b8 +spim_eot_handler(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:364 + struct spim_driver_data *drv_data = __g_spim_drv_data[periph_id]; +1c003106 addi a0,a0,-7 +1c003108 slli a5,a0,0x2 +1c00310c addi a0,gp,-604 # 1c009180 <__g_spim_drv_data> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:355 +{ +1c003110 addi sp,sp,-16 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:364 + struct spim_driver_data *drv_data = __g_spim_drv_data[periph_id]; +1c003112 add a0,a0,a5 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:355 +{ +1c003114 sw s0,8(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:364 + struct spim_driver_data *drv_data = __g_spim_drv_data[periph_id]; +1c003116 lw s0,0(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:355 +{ +1c003118 sw ra,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:366 + if (drv_data->repeat_transfer) { +1c00311a lw a5,8(s0) +1c00311c bnez a5,1c003140 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:372 + pi_task_t *task = drv_data->end_of_transfer; +1c00311e lw a0,12(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:374 + if (task != NULL) { +1c003120 beqz a0,1c003130 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:375 + if (task->id == PI_TASK_NONE_ID) { +1c003122 lw a4,16(a0) +1c003124 li a5,1 +1c003126 bne a4,a5,1c00312c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:378 + pi_task_release(task); +1c00312a jal 1c0034e0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:391 + drv_data->end_of_transfer = NULL; +1c00312c sw zero,12(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:400 + task = __pi_spim_drv_fifo_pop(drv_data); +1c003130 mv a0,s0 +1c003132 jal ra,1c002bf4 <__pi_spim_drv_fifo_pop> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:405 + if (task) { +1c003136 beqz a0,1c003140 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:411 +} +1c003138 lw s0,8(sp) +1c00313a lw ra,12(sp) +1c00313c addi sp,sp,16 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:406 + __pi_spim_exec_next_transfer(task); +1c00313e j 1c0030d8 <__pi_spim_exec_next_transfer> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:411 +} +1c003140 lw ra,12(sp) +1c003142 lw s0,8(sp) +1c003144 addi sp,sp,16 +1c003146 ret +spim_tx_handler(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:415 +{ // if we're here, it's cs keep related +1c003148 addi sp,sp,-16 +1c00314a sw s0,8(sp) +1c00314c mv s0,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:420 + hal_soc_eu_clear_fc_mask(SOC_EVENT_UDMA_SPIM_TX(periph_id)); +1c00314e andi a0,a0,-4 +1c003150 addi a0,a0,1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:415 +{ // if we're here, it's cs keep related +1c003152 sw ra,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:420 + hal_soc_eu_clear_fc_mask(SOC_EVENT_UDMA_SPIM_TX(periph_id)); +1c003154 jal ra,1c002c7c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:419 + uint32_t periph_id = (event >> UDMA_CHANNEL_NB_EVENTS_LOG2) - UDMA_SPIM_ID(0); +1c003158 srli a0,s0,0x2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:427 +} +1c00315c lw s0,8(sp) +1c00315e lw ra,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:424 + spim_eot_handler(arg); +1c003160 addi a0,a0,6 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:427 +} +1c003162 addi sp,sp,16 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:424 + spim_eot_handler(arg); +1c003164 j 1c003106 +spim_rx_handler(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:431 +{ // if we're here, it's cs keep related +1c003166 addi sp,sp,-16 +1c003168 sw s0,8(sp) +1c00316a mv s0,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:436 + hal_soc_eu_clear_fc_mask(SOC_EVENT_UDMA_SPIM_RX(periph_id)); +1c00316c andi a0,a0,-4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:431 +{ // if we're here, it's cs keep related +1c00316e sw ra,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:436 + hal_soc_eu_clear_fc_mask(SOC_EVENT_UDMA_SPIM_RX(periph_id)); +1c003170 jal ra,1c002c7c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:435 + uint32_t periph_id = (event >> UDMA_CHANNEL_NB_EVENTS_LOG2) - UDMA_SPIM_ID(0); +1c003174 srli a0,s0,0x2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:443 +} +1c003178 lw s0,8(sp) +1c00317a lw ra,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:440 + spim_eot_handler(arg); +1c00317c addi a0,a0,6 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:443 +} +1c00317e addi sp,sp,16 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:440 + spim_eot_handler(arg); +1c003180 j 1c003106 +vApplicationMallocFailedHook(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:697 + active_irq(irq); +#endif +} + +void vApplicationMallocFailedHook(void) +{ +1c003184 addi sp,sp,-16 +1c003186 sw ra,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:709 + the size of the heap available to pvPortMalloc() is defined by + configTOTAL_HEAP_SIZE in FreeRTOSConfig.h, and the + xPortGetFreeHeapSize() API function can be used to query the size of + free heap space that remains (although it does not provide information + on how the remaining heap might be fragmented). */ + taskDISABLE_INTERRUPTS(); +1c003188 csrci mstatus,8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:710 + printf("error: application malloc failed\n"); +1c00318c lui a0,0x1c009 +1c003190 addi a0,a0,-1960 # 1c008858 <__func__.0+0x14> +1c003194 jal ra,1c003ed2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:711 + __asm volatile("ebreak"); +1c003198 ebreak +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:712 (discriminator 1) + for (;;) +1c00319a j 1c00319a +vApplicationStackOverflowHook(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:717 + ; +} + +void vApplicationStackOverflowHook(TaskHandle_t pxTask, char *pcTaskName) +{ +1c00319c addi sp,sp,-16 +1c00319e sw ra,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:724 + (void)pxTask; + + /* Run time stack overflow checking is performed if + configCHECK_FOR_STACK_OVERFLOW is defined to 1 or 2. This hook + function is called if a stack overflow is detected. */ + taskDISABLE_INTERRUPTS(); +1c0031a0 csrci mstatus,8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:725 + printf("error: stack overflow\n"); +1c0031a4 lui a0,0x1c009 +1c0031a8 addi a0,a0,-1924 # 1c00887c <__func__.0+0x38> +1c0031ac jal ra,1c003ed2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:726 + __asm volatile("ebreak"); +1c0031b0 ebreak +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/abstraction_layer_spi.c:727 (discriminator 1) + for (;;) +1c0031b2 j 1c0031b2 +pi_fll_set_frequency(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:80 + uint32_t fres = (div == 0) ? (fref * mult) : (fref * mult) >> (div - 1); + return fres; +} + +int pi_fll_set_frequency(fll_type_t which_fll, uint32_t frequency, int check) +{ +1c0031b4 addi sp,sp,-16 +1c0031b6 sw s1,4(sp) +1c0031b8 sw s2,0(sp) +1c0031ba sw ra,12(sp) +1c0031bc sw s0,8(sp) +1c0031be mv s1,a0 +1c0031c0 mv s2,a1 +__disable_irq(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/arch/riscv.h:177 +1c0031c2 csrrci s0,mstatus,8 +fll_get_mult_div_from_frequency(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:58 + unsigned int Log2M = __FL1(freq) - __FL1(fref); +1c0031c6 mv a0,a1 +1c0031c8 jal ra,1c000e8a <__clzsi2> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:59 + unsigned int D = __MAX(1, (FLL_LOG2_MAXM - Log2M) >> 1); +1c0031cc addi a5,a0,-2 +1c0031d0 srli a5,a5,0x1 +1c0031d2 bnez a5,1c0031d6 +1c0031d4 li a5,1 +pi_fll_set_frequency(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:91 + /* Frequency calculation from theory */ + fll_get_mult_div_from_frequency(frequency, &mult, &div); + + /* update mult and div */ + /* TODO: check if fll is on */ + reg1 = FLL_CTRL[which_fll].FLL_CONF1; +1c0031d6 slli a4,s1,0x4 +1c0031da lui a3,0x1a100 +1c0031de add a3,a3,a4 +1c0031e0 lw a4,4(a3) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:93 + + reg1 &= ~FLL_CTRL_CONF1_MULTI_FACTOR_MASK; +1c0031e2 lui a2,0xffff0 +1c0031e4 and a2,a2,a4 +fll_get_mult_div_from_frequency(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:60 + unsigned int M = (freq << D) / fref; +1c0031e6 sll a4,s2,a5 +1c0031ea srli a4,a4,0xf +pi_fll_set_frequency(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:94 + reg1 |= REG_SET(FLL_CTRL_CONF1_MULTI_FACTOR, mult); +1c0031ec slli a4,a4,0x10 +1c0031ee srli a4,a4,0x10 +1c0031f0 or a4,a4,a2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:95 + reg1 &= ~FLL_CTRL_CONF1_CLK_OUT_DIV_MASK; +1c0031f2 lui a2,0xc4000 +1c0031f6 addi a2,a2,-1 +fll_get_mult_div_from_frequency(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:66 + *div = D + 1; +1c0031f8 addi a5,a5,1 +pi_fll_set_frequency(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:95 + reg1 &= ~FLL_CTRL_CONF1_CLK_OUT_DIV_MASK; +1c0031fa and a4,a4,a2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:96 + reg1 |= REG_SET(FLL_CTRL_CONF1_CLK_OUT_DIV, div); +1c0031fc slli a5,a5,0x1a +1c0031fe lui a2,0x3c000 +1c003202 and a5,a5,a2 +1c003204 or a5,a5,a4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:98 + + FLL_CTRL[which_fll].FLL_CONF1 = reg1; +1c003206 sw a5,4(a3) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:101 + + /* finalize */ + if (which_fll == FLL_SOC) +1c003208 bnez s1,1c00320e +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:102 + system_core_clock_update(); +1c00320a jal ra,1c002ad4 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:104 + + flls_frequency[which_fll] = frequency; +1c00320e addi a0,gp,-1508 # 1c008df8 +1c003212 slli s1,s1,0x2 +1c003214 add s1,s1,a0 +1c003216 sw s2,0(s1) +__restore_irq(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/arch/riscv.h:157 + csr_write(MSTATUS_ADDR, irq); +1c00321a csrw mstatus,s0 +pi_fll_set_frequency(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:109 + + __restore_irq(irq); + + return frequency; +} +1c00321e lw ra,12(sp) +1c003220 lw s0,8(sp) +1c003222 lw s1,4(sp) +1c003224 mv a0,s2 +1c003226 lw s2,0(sp) +1c003228 addi sp,sp,16 +1c00322a ret +pi_fll_get_frequency(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:180 + } +} + +int pi_fll_get_frequency(fll_type_t which_fll, uint8_t real) +{ + if (real) { +1c00322c addi a3,gp,-1508 # 1c008df8 +1c003230 slli a2,a0,0x2 +1c003234 beqz a1,1c003252 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:184 + /* Frequency calculation from real world */ + int real_freq = 0; + real_freq = fll_get_frequency_from_mult_div( + FLL_CTRL[which_fll].FLL_STATUS, +1c003236 lui a5,0x1a100 +1c00323a slli a0,a0,0x4 +1c00323c add a0,a0,a5 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:183 + real_freq = fll_get_frequency_from_mult_div( +1c00323e lw a4,0(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:185 + REG_GET(FLL_CTRL_CONF1_CLK_OUT_DIV, +1c003240 lw a5,4(a0) +1c003242 slli a4,a4,0xf +1c003244 srli a5,a5,0x1a +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:183 + real_freq = fll_get_frequency_from_mult_div( +1c003246 andi a5,a5,15 +fll_get_frequency_from_mult_div(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:75 + uint32_t fres = (div == 0) ? (fref * mult) : (fref * mult) >> (div - 1); +1c003248 bnez a5,1c003258 +1c00324a mv a5,a4 +pi_fll_get_frequency(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:189 + FLL_CTRL[which_fll].FLL_CONF1)); + + /* Update Frequency */ + flls_frequency[which_fll] = real_freq; +1c00324c add a4,a3,a2 +1c003250 sw a5,0(a4) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:191 + } + return flls_frequency[which_fll]; +1c003252 add a3,a3,a2 +1c003254 lw a0,0(a3) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:192 +} +1c003256 ret +fll_get_frequency_from_mult_div(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:75 + uint32_t fres = (div == 0) ? (fref * mult) : (fref * mult) >> (div - 1); +1c003258 addi a5,a5,-1 +1c00325a srl a5,a4,a5 +1c00325e j 1c00324c +pi_fll_init(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:115 + if (ret_state) { +1c003260 beqz a1,1c003268 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:116 + pi_fll_get_frequency(which_fll, 1); +1c003262 li a1,1 +1c003264 j 1c00322c +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:118 + reg1 = FLL_CTRL[which_fll].FLL_CONF1; +1c003268 slli a5,a0,0x4 +1c00326c lui a4,0x1a100 +1c003270 add a4,a4,a5 +1c003272 lw a5,4(a4) +1c003274 mv a3,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:126 + if (!REG_GET(FLL_CTRL_CONF1_MODE, reg1)) { +1c003276 bltz a5,1c0032ac +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:128 + uint32_t reg2 = FLL_CTRL[which_fll].FLL_CONF2; +1c00327a lw a2,8(a4) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:131 + reg2 &= ~FLL_CTRL_CONF2_LOCK_TOLERANCE_MASK; +1c00327c lui a1,0xf0000 +1c003280 addi a1,a1,1023 # f00003ff <__heap_l2_shared_start+0xd3fe6a2f> +1c003284 and a2,a2,a1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:132 + reg2 |= REG_SET(FLL_CTRL_CONF2_LOCK_TOLERANCE, 0x50); +1c003286 lui a1,0x502 +1c00328a addi a1,a1,-2048 # 00501800 <__heap_l2_shared_size+0x49b1d0> +1c00328e or a2,a2,a1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:133 + FLL_CTRL[which_fll].FLL_CONF2 = reg2; +1c003290 sw a2,8(a4) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:143 + uint32_t regint = FLL_CTRL[which_fll].FLL_INTEGRATOR; +1c003292 lw a2,12(a4) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:144 + regint &= ~FLL_CTRL_INTEGRATOR_INT_PART_MASK; +1c003294 lui a1,0xfc010 +1c003298 addi a1,a1,-1 +1c00329a and a2,a2,a1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:145 + regint |= REG_SET(FLL_CTRL_INTEGRATOR_INT_PART, 332); +1c00329c lui a1,0x14c0 +1c0032a0 or a2,a2,a1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:146 + FLL_CTRL[which_fll].FLL_INTEGRATOR = regint; +1c0032a2 sw a2,12(a4) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:152 + reg1 |= REG_SET(FLL_CTRL_CONF1_MODE, 1); +1c0032a4 lui a2,0xc0000 +1c0032a8 or a5,a5,a2 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:153 + FLL_CTRL[which_fll].FLL_CONF1 = reg1; +1c0032aa sw a5,4(a4) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:160 + uint32_t freq = flls_frequency[which_fll]; +1c0032ac addi a2,gp,-1508 # 1c008df8 +1c0032b0 slli a0,a3,0x2 +1c0032b4 add a2,a2,a0 +1c0032b6 lw a1,0(a2) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:161 + if (freq) { +1c0032b8 addi a4,gp,-1508 # 1c008df8 +1c0032bc beqz a1,1c0032ce +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:112 +{ +1c0032be addi sp,sp,-16 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:162 + if (pi_fll_set_frequency(which_fll, freq, 0)) +1c0032c0 li a2,0 +1c0032c2 mv a0,a3 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:112 +{ +1c0032c4 sw ra,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:162 + if (pi_fll_set_frequency(which_fll, freq, 0)) +1c0032c6 jal ra,1c0031b4 +1c0032ca beqz a0,1c0032e8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:163 + abort(); +1c0032cc jal 1c0037b8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:167 + REG_GET(FLL_CTRL_CONF1_CLK_OUT_DIV, reg1)); +1c0032ce srli a3,a5,0x1a +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:165 + freq = fll_get_frequency_from_mult_div( +1c0032d2 slli a5,a5,0x10 +1c0032d4 srli a5,a5,0x10 +1c0032d6 andi a3,a3,15 +fll_get_frequency_from_mult_div(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:75 + uint32_t fres = (div == 0) ? (fref * mult) : (fref * mult) >> (div - 1); +1c0032d8 slli a5,a5,0xf +1c0032da beqz a3,1c0032e2 +1c0032dc addi a3,a3,-1 +1c0032de srl a5,a5,a3 +pi_fll_init(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:168 + flls_frequency[which_fll] = freq; +1c0032e2 add a4,a4,a0 +1c0032e4 sw a5,0(a4) +1c0032e6 ret +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:176 +} +1c0032e8 lw ra,12(sp) +1c0032ea addi sp,sp,16 +1c0032ec ret +pi_freq_get(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:201 + flls_frequency[which_fll] = 0; +} + +uint32_t pi_freq_get(pi_freq_domain_e domain) +{ + switch (domain) { +1c0032ee li a4,1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:200 +{ +1c0032f0 mv a5,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:201 + switch (domain) { +1c0032f2 beq a0,a4,1c003306 +1c0032f6 li a4,2 +1c0032f8 beq a0,a4,1c003300 +1c0032fc li a0,0 +1c0032fe bnez a5,1c003304 +pi_fll_get_frequency(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:191 + return flls_frequency[which_fll]; +1c003300 lw a0,-1508(gp) # 1c008df8 +pi_freq_get(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:211 + case PI_FREQ_DOMAIN_PERIPH: + return pi_fll_get_frequency(FLL_SOC, 0); + default: + return 0; + } +} +1c003304 ret +pi_fll_get_frequency(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:191 + return flls_frequency[which_fll]; +1c003306 addi a5,gp,-1508 # 1c008df8 +1c00330a lw a0,8(a5) +pi_freq_get(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fll.c:205 + return pi_fll_get_frequency(FLL_CLUSTER, 0); +1c00330c ret +writew(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/arch/io.h:45 +1c00330e lui a5,0x1a10b +1c003312 addi a3,a5,32 # 1a10b020 <__heap_l1_cluster_start+0xa10b000> +1c003316 li a4,1 +1c003318 sw a4,0(a3) +1c00331a addi a4,a5,16 +1c00331e sw a0,0(a4) +1c003320 li a4,151 +1c003324 sw a4,0(a5) +timer_irq_init(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/timer_irq.c:57 + TIMER_CFG_LO_CCFG_MASK | TIMER_CFG_LO_MODE_MASK | + TIMER_CFG_LO_IRQEN_MASK, + (uintptr_t)(PULP_FC_TIMER_ADDR + TIMER_CFG_LO_OFFSET)); + + return 0; +} +1c003326 li a0,0 +1c003328 ret +writew(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/arch/io.h:45 +1c00332a lui a5,0x1a10a +1c00332e addi a5,a5,-2044 # 1a109804 <__heap_l1_cluster_start+0xa1097e4> +1c003332 sw a0,0(a5) +irq_enable(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/irq.c:48 +} + +void irq_enable(uint32_t mask) +{ + writew(mask, (uintptr_t)(PULP_FC_IRQ_ADDR + IRQ_REG_MASK_SET_OFFSET)); +} +1c003334 ret +irq_clint_global_enable(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/irq.c:77 + return val; +} + +uint32_t irq_clint_global_enable() +{ + uint32_t val = csr_read_set(CSR_MSTATUS, MSTATUS_IE); +1c003336 csrrsi a0,mstatus,8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/irq.c:79 + return val; +} +1c00333a ret +writew(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/arch/io.h:45 +1c00333c lui a5,0x1a10a +1c003340 li a4,-1 +1c003342 addi a5,a5,-2040 # 1a109808 <__heap_l1_cluster_start+0xa1097e8> +1c003346 sw a4,0(a5) +pulp_irq_init(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/irq.c:102 +{ + /* the debug module could have enabled irq so we disable it during + * initialization + */ + irq_disable(0xffffffff); +} +1c003348 ret +writew(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/arch/io.h:45 +1c00334a lui a5,0x1a106 +1c00334e li a4,-1 +1c003350 addi a3,a5,4 # 1a106004 <__heap_l1_cluster_start+0xa105fe4> +1c003354 sw a4,0(a3) +1c003356 addi a3,a5,8 +1c00335a sw a4,0(a3) +1c00335c addi a3,a5,12 +1c003360 sw a4,0(a3) +1c003362 addi a3,a5,16 +1c003366 sw a4,0(a3) +1c003368 addi a3,a5,20 +1c00336c sw a4,0(a3) +1c00336e addi a3,a5,24 +1c003372 sw a4,0(a3) +1c003374 addi a3,a5,28 +1c003378 sw a4,0(a3) +1c00337a addi a5,a5,32 +1c00337e sw a4,0(a5) +soc_eu_event_init(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/soc_eu.c:51 +{ + /* deactivate all soc events */ + for (unsigned i = 0; i < SOC_NB_EVENT_REGS; i++) { + soc_eu_mask_set(SOC_FC_FIRST_MASK + i * 4, 0xffffffff); + } +} +1c003380 ret +fc_event_null_event(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fc_event.c:33 +} +1c003382 ret +pi_fc_event_handler_clear(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fc_event.c:53 + fc_event_handlers[event_id] = +1c003384 lui a3,0x1c003 +pi_fc_event_handler_init(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fc_event.c:39 + for (int i = 0; i < NB_SOC_EVENTS; i++) { +1c003388 li a5,0 +pi_fc_event_handler_clear(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fc_event.c:53 + fc_event_handlers[event_id] = +1c00338a addi a2,gp,-1496 # 1c008e04 +1c00338e addi a3,a3,898 # 1c003382 +pi_fc_event_handler_init(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fc_event.c:39 + for (int i = 0; i < NB_SOC_EVENTS; i++) { +1c003392 li a1,168 +pi_fc_event_handler_clear(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fc_event.c:53 (discriminator 3) + fc_event_handlers[event_id] = +1c003396 slli a4,a5,0x2 +1c00339a add a4,a4,a2 +1c00339c sw a3,0(a4) +pi_fc_event_handler_init(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fc_event.c:39 (discriminator 3) + for (int i = 0; i < NB_SOC_EVENTS; i++) { +1c00339e addi a5,a5,1 +1c0033a0 bne a5,a1,1c003396 +__irq_enable(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/irq.h:256 + */ +static inline void __irq_enable(simple_irqn_e IRQn) +{ + /* U mode does not has the right */ + /* NVIC->MASK_SET = (1UL << IRQn); */ + writew(1UL << IRQn, (uintptr_t)(FC_IRQ_ADDR + IRQ_REG_MASK_SET_OFFSET)); +1c0033a4 li a5,1 +1c0033a6 sll a0,a5,a0 +writew(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/arch/io.h:45 +1c0033aa lui a5,0x1a10a +1c0033ae addi a5,a5,-2044 # 1a109804 <__heap_l1_cluster_start+0xa1097e4> +1c0033b2 sw a0,0(a5) +pi_fc_event_handler_init(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fc_event.c:43 +} +1c0033b4 ret +pi_fc_event_handler_set(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fc_event.c:48 + fc_event_handlers[event_id] = event_handler; +1c0033b6 slli a5,a0,0x2 +1c0033ba addi a0,gp,-1496 # 1c008e04 +1c0033be add a0,a0,a5 +1c0033c0 sw a1,0(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fc_event.c:49 +} +1c0033c2 ret +pi_fc_event_handler_clear(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fc_event.c:53 + fc_event_handlers[event_id] = +1c0033c4 slli a5,a0,0x2 +1c0033c8 addi a0,gp,-1496 # 1c008e04 +1c0033cc add a0,a0,a5 +1c0033ce lui a5,0x1c003 +1c0033d2 addi a5,a5,898 # 1c003382 +1c0033d6 sw a5,0(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/fc_event.c:55 +} +1c0033d8 ret +__os_native_api_sem_give(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/os.h:123 + } + __restore_irq(irq); +} + +static inline void __os_native_api_sem_give(void *sem_object) +{ +1c0033da <__os_native_api_sem_give> addi sp,sp,-32 +1c0033dc <__os_native_api_sem_give+0x2> sw ra,28(sp) +1c0033de <__os_native_api_sem_give+0x4> sw s0,24(sp) +__disable_irq(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/arch/riscv.h:177 + uint32_t val = csr_read_clear(MSTATUS_ADDR, BIT(MSTATUS_MIE_Pos)); +1c0033e0 <__os_native_api_sem_give+0x6> csrrci s0,mstatus,8 +__get_mcause(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/arch/riscv.h:200 + \details Returns the content of the MCAUSE Register. + \return MCAUSE Register value + */ +__attribute__((always_inline)) static inline uint32_t __get_mcause(void) +{ + uint32_t result = csr_read(MCAUSE_ADDR); +1c0033e4 <__os_native_api_sem_give+0xa> csrr a5,mcause +__os_native_api_sem_give(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/os.h:127 + uint32_t irq = __disable_irq(); + if (__get_mcause() & MCAUSE_IRQ_Msk) { + BaseType_t ret; + xSemaphoreGiveFromISR(sem_object, &ret); +1c0033e8 <__os_native_api_sem_give+0xe> addi a1,sp,12 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/os.h:125 + if (__get_mcause() & MCAUSE_IRQ_Msk) { +1c0033ea <__os_native_api_sem_give+0x10> bgez a5,1c003406 <__os_native_api_sem_give+0x2c> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/os.h:127 + xSemaphoreGiveFromISR(sem_object, &ret); +1c0033ee <__os_native_api_sem_give+0x14> jal ra,1c001426 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/os.h:128 + portYIELD_FROM_ISR(ret); +1c0033f2 <__os_native_api_sem_give+0x18> lw a5,12(sp) +1c0033f4 <__os_native_api_sem_give+0x1a> beqz a5,1c0033fa <__os_native_api_sem_give+0x20> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/os.h:128 (discriminator 1) +1c0033f6 <__os_native_api_sem_give+0x1c> jal ra,1c001b76 +__restore_irq(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/arch/riscv.h:157 + csr_write(MSTATUS_ADDR, irq); +1c0033fa <__os_native_api_sem_give+0x20> csrw mstatus,s0 +__os_native_api_sem_give(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/os.h:134 + } else { + BaseType_t ret; + xSemaphoreGiveFromISR(sem_object, &ret); + } + __restore_irq(irq); +} +1c0033fe <__os_native_api_sem_give+0x24> lw ra,28(sp) +1c003400 <__os_native_api_sem_give+0x26> lw s0,24(sp) +1c003402 <__os_native_api_sem_give+0x28> addi sp,sp,32 +1c003404 <__os_native_api_sem_give+0x2a> ret +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/os.h:131 + xSemaphoreGiveFromISR(sem_object, &ret); +1c003406 <__os_native_api_sem_give+0x2c> jal ra,1c001426 +1c00340a <__os_native_api_sem_give+0x30> j 1c0033fa <__os_native_api_sem_give+0x20> +__os_native_api_sem_take(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/os.h:110 +{ +1c00340c <__os_native_api_sem_take> addi sp,sp,-32 +1c00340e <__os_native_api_sem_take+0x2> sw ra,28(sp) +1c003410 <__os_native_api_sem_take+0x4> sw s0,24(sp) +__disable_irq(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/arch/riscv.h:177 + uint32_t val = csr_read_clear(MSTATUS_ADDR, BIT(MSTATUS_MIE_Pos)); +1c003412 <__os_native_api_sem_take+0x6> csrrci s0,mstatus,8 +__get_mcause(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/arch/riscv.h:200 + uint32_t result = csr_read(MCAUSE_ADDR); +1c003416 <__os_native_api_sem_take+0xa> csrr a5,mcause +__os_native_api_sem_take(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/os.h:112 + if (__get_mcause() & MCAUSE_IRQ_Msk) { +1c00341a <__os_native_api_sem_take+0xe> bgez a5,1c003432 <__os_native_api_sem_take+0x26> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/os.h:115 + xSemaphoreTakeFromISR(sem_object, &ret); +1c00341e <__os_native_api_sem_take+0x12> addi a2,sp,12 +1c003420 <__os_native_api_sem_take+0x14> li a1,0 +1c003422 <__os_native_api_sem_take+0x16> jal ra,1c0017b0 +__restore_irq(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/arch/riscv.h:157 + csr_write(MSTATUS_ADDR, irq); +1c003426 <__os_native_api_sem_take+0x1a> csrw mstatus,s0 +__os_native_api_sem_take(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/os.h:120 +} +1c00342a <__os_native_api_sem_take+0x1e> lw ra,28(sp) +1c00342c <__os_native_api_sem_take+0x20> lw s0,24(sp) +1c00342e <__os_native_api_sem_take+0x22> addi sp,sp,32 +1c003430 <__os_native_api_sem_take+0x24> ret +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/os.h:117 + xSemaphoreTake(sem_object, portMAX_DELAY); +1c003432 <__os_native_api_sem_take+0x26> li a1,-1 +1c003434 <__os_native_api_sem_take+0x28> jal ra,1c00161e +1c003438 <__os_native_api_sem_take+0x2c> j 1c003426 <__os_native_api_sem_take+0x1a> +__pi_task_block(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/pmsis_task.c:25 +#include "pmsis_task.h" +#include "debug.h" +#include "os.h" + +pi_task_t *__pi_task_block(pi_task_t *callback_task) +{ +1c00343a <__pi_task_block> addi sp,sp,-16 +1c00343c <__pi_task_block+0x2> sw s0,8(sp) +1c00343e <__pi_task_block+0x4> sw ra,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/pmsis_task.c:26 + callback_task->id = PI_TASK_NONE_ID; +1c003440 <__pi_task_block+0x6> li a5,1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/pmsis_task.c:25 +{ +1c003442 <__pi_task_block+0x8> mv s0,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/pmsis_task.c:26 + callback_task->id = PI_TASK_NONE_ID; +1c003444 <__pi_task_block+0xa> sw a5,16(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/pmsis_task.c:27 + callback_task->done = 0; +1c003446 <__pi_task_block+0xc> sb zero,68(a0) +pi_sem_init(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/os.h:140 + + +static inline int pi_sem_init(pi_sem_t *sem) +{ + hal_compiler_barrier(); + sem->sem_object = xSemaphoreCreateCounting(0xFFu, 0); +1c00344a <__pi_task_block+0x10> li a1,0 +1c00344c <__pi_task_block+0x12> li a0,255 +1c003450 <__pi_task_block+0x16> jal ra,1c001182 +1c003454 <__pi_task_block+0x1a> sw a0,52(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/os.h:141 + if (sem->sem_object == NULL) { +1c003456 <__pi_task_block+0x1c> beqz a0,1c00346c <__pi_task_block+0x32> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/os.h:144 + return -1; + } + sem->take = __os_native_api_sem_take; +1c003458 <__pi_task_block+0x1e> lui a5,0x1c003 +1c00345c <__pi_task_block+0x22> addi a5,a5,1036 # 1c00340c <__os_native_api_sem_take> +1c003460 <__pi_task_block+0x26> sw a5,56(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/os.h:145 + sem->give = __os_native_api_sem_give; +1c003462 <__pi_task_block+0x28> lui a5,0x1c003 +1c003466 <__pi_task_block+0x2c> addi a5,a5,986 # 1c0033da <__os_native_api_sem_give> +1c00346a <__pi_task_block+0x30> sw a5,60(s0) +__pi_task_block(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/pmsis_task.c:30 + pi_sem_init(&(callback_task->wait_on)); + /* lock the mutex so that task may be descheduled while waiting on it */ + callback_task->destroy = 1; +1c00346c <__pi_task_block+0x32> li a5,1 +1c00346e <__pi_task_block+0x34> sb a5,71(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/pmsis_task.c:31 + callback_task->core_id = -1; +1c003472 <__pi_task_block+0x38> li a5,-1 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/pmsis_task.c:33 + return callback_task; +} +1c003474 <__pi_task_block+0x3a> lw ra,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/pmsis_task.c:31 + callback_task->core_id = -1; +1c003476 <__pi_task_block+0x3c> sb a5,69(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/pmsis_task.c:33 +} +1c00347a <__pi_task_block+0x40> mv a0,s0 +1c00347c <__pi_task_block+0x42> lw s0,8(sp) +1c00347e <__pi_task_block+0x44> addi sp,sp,16 +1c003480 <__pi_task_block+0x46> ret +__pi_task_destroy(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/pmsis_task.c:50 + return callback_task; +} + +void __pi_task_destroy(pi_task_t *task) +{ + if (task->destroy) { +1c003482 <__pi_task_destroy> lb a5,71(a0) +1c003486 <__pi_task_destroy+0x4> beqz a5,1c0034b4 <__pi_task_destroy+0x32> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/pmsis_task.c:49 +{ +1c003488 <__pi_task_destroy+0x6> addi sp,sp,-16 +1c00348a <__pi_task_destroy+0x8> sw s0,8(sp) +1c00348c <__pi_task_destroy+0xa> sw ra,12(sp) +1c00348e <__pi_task_destroy+0xc> mv s0,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/pmsis_task.c:51 + task->destroy = 0; +1c003490 <__pi_task_destroy+0xe> sb zero,71(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/pmsis_task.c:55 + /* if the mutex is only virtual (e.g. wait on soc event) */ + hal_compiler_barrier(); + /* if the sched support semaphore/mutexes */ + if (task->wait_on.sem_object) { +1c003494 <__pi_task_destroy+0x12> lw a5,52(a0) +1c003496 <__pi_task_destroy+0x14> beqz a5,1c0034ac <__pi_task_destroy+0x2a> +pi_sem_deinit(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/os.h:152 +} + +static inline int pi_sem_deinit(pi_sem_t *sem) +{ + hal_compiler_barrier(); + if (sem->sem_object == NULL) { +1c003498 <__pi_task_destroy+0x16> lw a0,52(a0) +1c00349a <__pi_task_destroy+0x18> beqz a0,1c0034a8 <__pi_task_destroy+0x26> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/os.h:155 + return -1; + } + vSemaphoreDelete(sem->sem_object); +1c00349c <__pi_task_destroy+0x1a> jal ra,1c0018b8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/os.h:156 + sem->take = NULL; +1c0034a0 <__pi_task_destroy+0x1e> sw zero,56(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/os.h:157 + sem->give = NULL; +1c0034a4 <__pi_task_destroy+0x22> sw zero,60(s0) +__pi_task_destroy(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/pmsis_task.c:57 + pi_sem_deinit(&task->wait_on); + task->wait_on.sem_object = (void *)NULL; +1c0034a8 <__pi_task_destroy+0x26> sw zero,52(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/pmsis_task.c:61 + } + hal_compiler_barrier(); + } +} +1c0034ac <__pi_task_destroy+0x2a> lw ra,12(sp) +1c0034ae <__pi_task_destroy+0x2c> lw s0,8(sp) +1c0034b0 <__pi_task_destroy+0x2e> addi sp,sp,16 +1c0034b2 <__pi_task_destroy+0x30> ret +1c0034b4 <__pi_task_destroy+0x32> ret +__pi_task_wait_on(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/pmsis_task.c:64 + +void __pi_task_wait_on(pi_task_t *task) +{ +1c0034b6 <__pi_task_wait_on> addi sp,sp,-16 +1c0034b8 <__pi_task_wait_on+0x2> sw s0,8(sp) +1c0034ba <__pi_task_wait_on+0x4> sw ra,12(sp) +1c0034bc <__pi_task_wait_on+0x6> mv s0,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/pmsis_task.c:65 + while (!task->done) { +1c0034be <__pi_task_wait_on+0x8> lbu a5,68(s0) +1c0034c2 <__pi_task_wait_on+0xc> slli a5,a5,0x18 +1c0034c4 <__pi_task_wait_on+0xe> srai a5,a5,0x18 +1c0034c6 <__pi_task_wait_on+0x10> beqz a5,1c0034d4 <__pi_task_wait_on+0x1e> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/pmsis_task.c:75 + } + DEBUG_PRINTF("[%s] waited on sem %p\n", __func__, + &(task->wait_on)); + } + hal_compiler_barrier(); + __pi_task_destroy(task); +1c0034c8 <__pi_task_wait_on+0x12> mv a0,s0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/pmsis_task.c:76 +} +1c0034ca <__pi_task_wait_on+0x14> lw s0,8(sp) +1c0034cc <__pi_task_wait_on+0x16> lw ra,12(sp) +1c0034ce <__pi_task_wait_on+0x18> addi sp,sp,16 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/pmsis_task.c:75 + __pi_task_destroy(task); +1c0034d0 <__pi_task_wait_on+0x1a> j 1c003482 <__pi_task_destroy> +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/pmsis_task.c:68 + if (task->wait_on.sem_object != NULL) { +1c0034d4 <__pi_task_wait_on+0x1e> lw a5,52(s0) +1c0034d6 <__pi_task_wait_on+0x20> beqz a5,1c0034be <__pi_task_wait_on+0x8> +pi_sem_take(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/os.h:165 +} + +static inline void pi_sem_take(pi_sem_t *sem) +{ + hal_compiler_barrier(); + sem->take(sem->sem_object); +1c0034d8 <__pi_task_wait_on+0x22> lw a5,56(s0) +1c0034da <__pi_task_wait_on+0x24> lw a0,52(s0) +1c0034dc <__pi_task_wait_on+0x26> jalr a5 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/os.h:166 +} +1c0034de <__pi_task_wait_on+0x28> j 1c0034be <__pi_task_wait_on+0x8> +pi_task_release(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/pmsis_task.c:101 + /* lock the mutex so that task may be descheduled while waiting on it */ + return callback_task; +} + +void pi_task_release(pi_task_t *task) +{ +1c0034e0 addi sp,sp,-16 +1c0034e2 sw s0,8(sp) +1c0034e4 mv s0,a0 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/pmsis_task.c:105 + DEBUG_PRINTF("[%s] releasing task %p\n", __func__, task); + /* if the mutex is only virtual (e.g. wait on soc event) + * if the sched support semaphore/mutexes */ + if (task->wait_on.sem_object) { +1c0034e6 lw a0,52(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/pmsis_task.c:101 +{ +1c0034e8 sw ra,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/pmsis_task.c:105 + if (task->wait_on.sem_object) { +1c0034ea beqz a0,1c0034f0 +pi_sem_give(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/os.h:170 + +static inline void pi_sem_give(pi_sem_t *sem) +{ + sem->give(sem->sem_object); +1c0034ec lw a5,60(s0) +1c0034ee jalr a5 +pi_task_release(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/pmsis_task.c:110 + DEBUG_PRINTF("[%s] sem give %p\n", __func__, &task->wait_on); + pi_sem_give(&(task->wait_on)); + } + hal_compiler_barrier(); + task->done = 1; +1c0034f0 li a5,1 +1c0034f2 sb a5,68(s0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/pmsis_task.c:112 + hal_compiler_barrier(); +} +1c0034f6 lw ra,12(sp) +1c0034f8 lw s0,8(sp) +1c0034fa addi sp,sp,16 +1c0034fc ret +pi_open_from_conf(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/device.c:52 + device->config = conf; + // TODO: add debug warning here + break; + } +#else + device->config = conf; +1c0034fe sw a1,4(a0) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/device.c:54 +#endif +} +1c003500 ret +test_entry(): +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:145 + else + pi_spi_send(spim, cmd_buffer, 8 * 8, PI_SPI_CS_AUTO); +} + +static int test_entry() +{ +1c003502 addi sp,sp,-464 +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:155 + + int total_size; + get_info(&total_size); + int buffer_size = total_size / NB_BUFFERS; + + pi_spi_conf_init(&conf); +1c003504 addi a0,sp,44 +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:145 +{ +1c003506 sw ra,460(sp) +1c00350a sw s0,456(sp) +1c00350e sw s1,452(sp) +1c003512 sw s2,448(sp) +1c003516 sw s3,444(sp) +1c00351a sw s4,440(sp) +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:149 + PI_L2 uint8_t add_buffer[] = {0x00, 0x00, 0x00, 0x00, 0x00}; +1c00351e sw zero,24(sp) +1c003520 sb zero,28(sp) +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:155 + pi_spi_conf_init(&conf); +1c003524 jal ra,1c002b16 +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:159 + + conf.wordsize = PI_SPI_WORDSIZE_8; + conf.big_endian = 1; + conf.max_baudrate = 10000000; +1c003528 lui a5,0x989 +1c00352c addi a5,a5,1664 # 00989680 <__heap_l2_shared_size+0x923050> +1c003530 sw a5,44(sp) +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:165 + conf.polarity = 0; + conf.phase = 0; + conf.itf = 0; + conf.cs = 0; + + pi_open_from_conf(&spim0, &conf); +1c003532 addi a1,sp,44 +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:157 + conf.wordsize = PI_SPI_WORDSIZE_8; +1c003534 li a5,256 +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:165 + pi_open_from_conf(&spim0, &conf); +1c003538 addi a0,sp,32 +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:157 + conf.wordsize = PI_SPI_WORDSIZE_8; +1c00353a sh a5,48(sp) +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:160 + conf.polarity = 0; +1c00353e sw zero,52(sp) +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:161 + conf.phase = 0; +1c003540 sw zero,56(sp) +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:163 + conf.cs = 0; +1c003542 sh zero,60(sp) +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:165 + pi_open_from_conf(&spim0, &conf); +1c003546 jal ra,1c0034fe +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:166 + if (pi_spi_open(&spim0)) +1c00354a addi a0,sp,32 +1c00354c jal ra,1c002b36 +1c003550 beqz a0,1c003572 +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:241 + if (error == 0) + printf("First error at index %d, expected 0x%x, got 0x%x at %p\n", + i, tx_buffer[i], rx_buffer_1[i], + &rx_buffer_1[i]); + error++; + return -1; +1c003552 li s0,-1 +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:252 + } else { + printf("Test success\n"); + } + pi_spi_close(&spim0); + return error; +} +1c003554 lw ra,460(sp) +1c003558 mv a0,s0 +1c00355a lw s0,456(sp) +1c00355e lw s1,452(sp) +1c003562 lw s2,448(sp) +1c003566 lw s3,444(sp) +1c00356a lw s4,440(sp) +1c00356e addi sp,sp,464 +1c003570 ret +1c003572 mv s0,a0 +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:169 + printf("malloc tx buffer\n"); +1c003574 lui a0,0x1c009 +1c003578 addi a0,a0,-1900 # 1c008894 <__func__.0+0x50> +1c00357c jal ra,1c003ed2 +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:170 + tx_buffer = pmsis_l2_malloc(total_size); +1c003580 li a0,256 +1c003584 jal ra,1c002a6e +1c003588 sw a0,-588(gp) # 1c009190 +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:171 + if (tx_buffer == NULL) +1c00358c addi s1,gp,-588 # 1c009190 +1c003590 beqz a0,1c003552 +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:174 + printf("malloc rx buffer 1\n"); +1c003592 lui a0,0x1c009 +1c003596 addi a0,a0,-1880 # 1c0088a8 <__func__.0+0x64> +1c00359a jal ra,1c003ed2 +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:175 + rx_buffer_1 = pmsis_l2_malloc(total_size); +1c00359e li a0,256 +1c0035a2 jal ra,1c002a6e +1c0035a6 sw a0,-596(gp) # 1c009188 +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:176 + if (rx_buffer_1 == NULL) +1c0035aa addi s2,gp,-596 # 1c009188 +1c0035ae beqz a0,1c003552 +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:179 + printf("malloc rx buffer 2\n"); +1c0035b0 lui a0,0x1c009 +1c0035b4 addi a0,a0,-1860 # 1c0088bc <__func__.0+0x78> +1c0035b8 jal ra,1c003ed2 +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:180 + rx_buffer_2 = pmsis_l2_malloc(total_size); +1c0035bc li a0,256 +1c0035c0 jal ra,1c002a6e +1c0035c4 sw a0,-592(gp) # 1c00918c +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:181 + if (rx_buffer_2 == NULL) +1c0035c8 addi s4,gp,-592 # 1c00918c +1c0035cc beqz a0,1c003552 +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:184 + printf("tx buffer init\n"); +1c0035ce lui a0,0x1c009 +1c0035d2 addi a0,a0,-1840 # 1c0088d0 <__func__.0+0x8c> +1c0035d6 jal ra,1c003ed2 +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:185 + for (int i = 0; i < total_size; i++) { +1c0035da li a5,0 +1c0035dc li a3,256 +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:186 (discriminator 3) + tx_buffer[i] = i; +1c0035e0 lw a4,0(s1) +1c0035e2 add a4,a4,a5 +1c0035e4 sb a5,0(a4) # 1a100000 <__heap_l1_cluster_start+0xa0fffe0> +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:185 (discriminator 3) + for (int i = 0; i < total_size; i++) { +1c0035e8 addi a5,a5,1 +1c0035ea bne a5,a3,1c0035e0 +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:197 + printf("async cs auto\n"); +1c0035ee lui a0,0x1c009 +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:189 + uint8_t cmd = CMD_WREN; +1c0035f2 li s3,6 +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:197 + printf("async cs auto\n"); +1c0035f4 addi a0,a0,-1824 # 1c0088e0 <__func__.0+0x9c> +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:189 + uint8_t cmd = CMD_WREN; +1c0035f8 sb s3,22(sp) +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:197 + printf("async cs auto\n"); +1c0035fc jal ra,1c003ed2 +pi_task_block(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/pmsis_task.h:86 + return __pi_task_block(task); +1c003600 addi a0,sp,72 +test_entry(): +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:201 + cmd = CMD_WREN; +1c003602 sb s3,22(sp) +pi_task_block(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/pmsis_task.h:86 +1c003606 jal ra,1c00343a <__pi_task_block> +1c00360a mv a4,a0 +test_entry(): +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:202 + pi_spi_send_async(&spim0, &cmd, (1*8), PI_SPI_CS_AUTO, pi_task_block(&event_wren_1)); +1c00360c li a3,0 +1c00360e li a2,8 +1c003610 addi a1,sp,22 +1c003614 addi a0,sp,32 +1c003616 jal ra,1c002b42 +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:204 + add_buffer[0] = CMD_4PP; +1c00361a li a5,18 +pi_task_block(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/pmsis_task.h:86 +1c00361c addi a0,sp,144 +test_entry(): +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:204 +1c00361e sb a5,24(sp) +pi_task_block(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/pmsis_task.h:86 +1c003622 jal ra,1c00343a <__pi_task_block> +1c003626 mv a4,a0 +test_entry(): +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:205 + pi_spi_send_async(&spim0, add_buffer, (sizeof(add_buffer)*8), PI_SPI_CS_KEEP, pi_task_block(&event_4pp_1)); +1c003628 li a3,1 +1c00362a li a2,40 +1c00362e addi a1,sp,24 +1c003630 addi a0,sp,32 +1c003632 jal ra,1c002b42 +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:207 + pi_spi_send_async(&spim0, tx_buffer + buffer_size * i, (buffer_size*8), PI_SPI_CS_AUTO, pi_task_block(&event_tx_1)); +1c003636 lw a1,0(s1) +pi_task_block(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/pmsis_task.h:86 +1c003638 addi a0,sp,216 +test_entry(): +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:216 + printf("WIP Register: %d\n", status); +1c00363a lui s3,0x1c009 +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:207 + pi_spi_send_async(&spim0, tx_buffer + buffer_size * i, (buffer_size*8), PI_SPI_CS_AUTO, pi_task_block(&event_tx_1)); +1c00363e sw a1,12(sp) +pi_task_block(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/pmsis_task.h:86 +1c003640 jal ra,1c00343a <__pi_task_block> +test_entry(): +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:207 +1c003644 lw a1,12(sp) +1c003646 lui a2,0x1 +pi_task_block(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/pmsis_task.h:86 +1c003648 mv a4,a0 +test_entry(): +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:207 +1c00364a li a3,0 +1c00364c addi a2,a2,-2048 # 00000800 <__stack_size> +1c003650 addi a0,sp,32 +1c003652 jal ra,1c002b42 +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:210 + cmd = CMD_RDSR1; // command to read status register 1 +1c003656 li a5,5 +1c003658 sb a5,22(sp) +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:211 + volatile uint8_t status = 0xFF; +1c00365c li a5,-1 +1c00365e sb a5,23(sp) +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:214 (discriminator 1) + pi_spi_send(&spim0, &cmd, (1*8), PI_SPI_CS_KEEP); +1c003662 li a3,1 +1c003664 li a2,8 +1c003666 addi a1,sp,22 +1c00366a addi a0,sp,32 +1c00366c jal ra,1c002b46 +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:215 (discriminator 1) + pi_spi_receive(&spim0, &status, (1*8), PI_SPI_CS_AUTO); +1c003670 li a3,0 +1c003672 li a2,8 +1c003674 addi a1,sp,23 +1c003678 addi a0,sp,32 +1c00367a jal ra,1c002b7e +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:216 (discriminator 1) + printf("WIP Register: %d\n", status); +1c00367e lbu a1,23(sp) +1c003682 addi a0,s3,-1808 # 1c0088f0 <__func__.0+0xac> +1c003686 andi a1,a1,255 +1c00368a jal ra,1c003db4 +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:218 (discriminator 1) + } while ((status & 0x01) != 0);// flash is buzy if status != 0 +1c00368e lbu a5,23(sp) +1c003692 andi a5,a5,1 +1c003694 bnez a5,1c003662 +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:221 (discriminator 2) + add_buffer[0] = CMD_4READ; +1c003696 li a5,19 +pi_task_block(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/pmsis_task.h:86 (discriminator 2) +1c003698 addi a0,sp,288 +test_entry(): +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:221 (discriminator 2) +1c00369a sb a5,24(sp) +pi_task_block(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/pmsis_task.h:86 (discriminator 2) +1c00369e jal ra,1c00343a <__pi_task_block> +1c0036a2 mv a4,a0 +test_entry(): +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:222 (discriminator 2) + pi_spi_send_async(&spim0, add_buffer, (sizeof(add_buffer)*8), PI_SPI_CS_KEEP, pi_task_block(&event_4read_1)); +1c0036a4 li a3,1 +1c0036a6 li a2,40 +1c0036aa addi a1,sp,24 +1c0036ac addi a0,sp,32 +1c0036ae jal ra,1c002b42 +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:223 (discriminator 2) + pi_spi_receive_async(&spim0, rx_buffer_1 + buffer_size * i, (buffer_size*8), PI_SPI_CS_AUTO, pi_task_block(&event_rx_1)); +1c0036b2 lw a1,0(s2) +pi_task_block(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/pmsis_task.h:86 (discriminator 2) +1c0036b6 addi a0,sp,360 +test_entry(): +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:223 (discriminator 2) +1c0036b8 sw a1,12(sp) +pi_task_block(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/pmsis_task.h:86 (discriminator 2) +1c0036ba jal ra,1c00343a <__pi_task_block> +test_entry(): +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:223 (discriminator 2) +1c0036be lw a1,12(sp) +1c0036c0 lui a2,0x1 +pi_task_block(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/pmsis_task.h:86 (discriminator 2) +1c0036c2 mv a4,a0 +test_entry(): +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:223 (discriminator 2) +1c0036c4 li a3,0 +1c0036c6 addi a2,a2,-2048 # 00000800 <__stack_size> +1c0036ca addi a0,sp,32 +1c0036cc jal ra,1c002b7a +pi_task_wait_on(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/pmsis_task.h:130 (discriminator 2) + __pi_task_wait_on(task); +1c0036d0 addi a0,sp,72 +1c0036d2 jal ra,1c0034b6 <__pi_task_wait_on> +1c0036d6 addi a0,sp,144 +1c0036d8 jal ra,1c0034b6 <__pi_task_wait_on> +1c0036dc addi a0,sp,216 +1c0036de jal ra,1c0034b6 <__pi_task_wait_on> +1c0036e2 addi a0,sp,288 +1c0036e4 jal ra,1c0034b6 <__pi_task_wait_on> +1c0036e8 addi a0,sp,360 +1c0036ea jal ra,1c0034b6 <__pi_task_wait_on> +test_entry(): +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:232 (discriminator 2) + printf("starting error check\n"); +1c0036ee lui a0,0x1c009 +1c0036f2 addi a0,a0,-1788 # 1c008904 <__func__.0+0xc0> +1c0036f6 jal ra,1c003ed2 +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:235 (discriminator 2) + if (rx_buffer_1[i] != tx_buffer[i] && rx_buffer_2[i] != tx_buffer[i]) { +1c0036fa lw a0,0(s2) +1c0036fe lw a6,0(s1) +1c003702 lw a7,0(s4) +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:234 (discriminator 2) + for (int i = 0; i < total_size; i++) { +1c003706 li a1,0 +1c003708 li a5,256 +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:235 + if (rx_buffer_1[i] != tx_buffer[i] && rx_buffer_2[i] != tx_buffer[i]) { +1c00370c add a4,a0,a1 +1c003710 add a2,a6,a1 +1c003714 lbu a3,0(a4) +1c003718 lbu a2,0(a2) +1c00371c beq a3,a2,1c00373a +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:235 (discriminator 1) +1c003720 add t1,a7,a1 +1c003724 lbu t1,0(t1) +1c003728 beq t1,a2,1c00373a +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:237 + printf("First error at index %d, expected 0x%x, got 0x%x at %p\n", +1c00372c lui a0,0x1c009 +1c003730 addi a0,a0,-1764 # 1c00891c <__func__.0+0xd8> +1c003734 jal ra,1c003db4 +1c003738 j 1c003552 +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:234 (discriminator 2) + for (int i = 0; i < total_size; i++) { +1c00373a addi a1,a1,1 +1c00373c bne a1,a5,1c00370c +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:248 + printf("Test success\n"); +1c003740 lui a0,0x1c009 +1c003744 addi a0,a0,-1708 # 1c008954 <__func__.0+0x110> +1c003748 jal ra,1c003ed2 +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:250 + pi_spi_close(&spim0); +1c00374c addi a0,sp,32 +1c00374e jal ra,1c002b3c +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:251 + return error; +1c003752 j 1c003554 +test_kickoff(): +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:255 + +static void test_kickoff(void *arg) +{ +1c003754 addi sp,sp,-16 +1c003756 sw ra,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:256 + int ret = test_entry(); +1c003758 jal ra,1c003502 +pmsis_exit(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/os.h:36 + exit(err); +1c00375c jal 1c003814 +main(): +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:262 + pmsis_exit(ret); +} + +/* Program Entry. */ +int main(void) +{ +1c00375e
addi sp,sp,-32 +1c003760 sw ra,28(sp) +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:265 + #ifdef USE_FREERTOS_TEST + /* Init board hardware. */ + system_init(); +1c003762 jal ra,1c002a8a +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:266 + printf("\n\n\t *** FreeRTOS Hello World *** \n\n"); +1c003766 lui a0,0x1c009 +1c00376a addi a0,a0,-1692 # 1c008964 <__func__.0+0x120> +1c00376e jal ra,1c003ed2 +pmsis_kickoff(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/os.h:44 + xTask = xTaskCreate(arg, "main", +1c003772 lui a1,0x1c009 +1c003776 lui a0,0x1c003 +1c00377a addi a5,sp,12 +1c00377c li a4,1 +1c00377e li a3,0 +1c003780 li a2,400 +1c003784 addi a1,a1,-1656 # 1c008988 <__func__.0+0x144> +1c003788 addi a0,a0,1876 # 1c003754 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/os.h:42 + TaskHandle_t xHandler0 = NULL; +1c00378c sw zero,12(sp) +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/os.h:44 + xTask = xTaskCreate(arg, "main", +1c00378e jal ra,1c00204a +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/os.h:48 + if (xTask != pdPASS) { +1c003792 li a5,1 +1c003794 beq a0,a5,1c0037a8 +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/os.h:49 + printf("main is NULL !\n"); +1c003798 lui a0,0x1c009 +1c00379c addi a0,a0,-1648 # 1c008990 <__func__.0+0x14c> +1c0037a0 jal ra,1c003ed2 +pmsis_exit(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/os.h:36 + exit(err); +1c0037a4 li a0,-1 +1c0037a6 jal 1c003814 +__enable_irq(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/target/arch/riscv.h:167 + csr_read_set(MSTATUS_ADDR, BIT(MSTATUS_MIE_Pos)); +1c0037a8 csrrsi a5,mstatus,8 +pmsis_kickoff(): +/scratch/norlando/pulp-open/pulp-sdk/rtos/freertos/drivers/include/os.h:66 + vTaskStartScheduler(); +1c0037ac jal ra,1c00226a +main(): +/scratch/norlando/pulp-open/pulp-sdk/tests/spim_flash_async/test_spi_async.c:274 +#ifdef USE_PULPOS_TEST + printf("\n\n\t *** Pulp OS Hello World *** \n\n"); + #endif + + return pmsis_kickoff((void *)test_kickoff); +} +1c0037b0 lw ra,28(sp) +1c0037b2 li a0,0 +1c0037b4 addi sp,sp,32 +1c0037b6 ret +abort(): +1c0037b8 addi sp,sp,-16 +1c0037ba li a0,6 +1c0037bc sw ra,12(sp) +1c0037be jal ra,1c00406a +1c0037c2 li a0,1 +1c0037c4 jal ra,1c0029b6 <_exit> +__assert_func(): +1c0037c8 <__assert_func> lui a5,0x1c009 +1c0037cc <__assert_func+0x4> lw a5,-956(a5) # 1c008c44 <_impure_ptr> +1c0037d0 <__assert_func+0x8> addi sp,sp,-16 +1c0037d2 <__assert_func+0xa> mv a6,a2 +1c0037d4 <__assert_func+0xc> sw ra,12(sp) +1c0037d6 <__assert_func+0xe> mv a7,a0 +1c0037d8 <__assert_func+0x10> mv a4,a1 +1c0037da <__assert_func+0x12> lw a0,12(a5) +1c0037dc <__assert_func+0x14> mv a2,a3 +1c0037de <__assert_func+0x16> beqz a6,1c0037fa <__assert_func+0x32> +1c0037e2 <__assert_func+0x1a> lui a5,0x1c009 +1c0037e6 <__assert_func+0x1e> addi a5,a5,-1632 # 1c0089a0 <__func__.0+0x15c> +1c0037ea <__assert_func+0x22> lui a1,0x1c009 +1c0037ee <__assert_func+0x26> mv a3,a7 +1c0037f0 <__assert_func+0x28> addi a1,a1,-1616 # 1c0089b0 <__func__.0+0x16c> +1c0037f4 <__assert_func+0x2c> jal 1c00387a +1c0037f6 <__assert_func+0x2e> jal ra,1c0037b8 +1c0037fa <__assert_func+0x32> lui a6,0x1c009 +1c0037fe <__assert_func+0x36> addi a5,a6,-1620 # 1c0089ac <__func__.0+0x168> +1c003802 <__assert_func+0x3a> addi a6,a6,-1620 +1c003806 <__assert_func+0x3e> j 1c0037ea <__assert_func+0x22> +atexit(): +1c003808 mv a1,a0 +1c00380a li a3,0 +1c00380c li a2,0 +1c00380e li a0,0 +1c003810 j 1c004276 <__register_exitproc> +exit(): +1c003814 addi sp,sp,-16 +1c003816 lui a5,0x1c004 +1c00381a sw s0,8(sp) +1c00381c sw ra,12(sp) +1c00381e addi a5,a5,754 # 1c0042f2 <__call_exitprocs> +1c003822 mv s0,a0 +1c003824 beqz a5,1c00382c +1c003826 li a1,0 +1c003828 jal ra,1c0042f2 <__call_exitprocs> +1c00382c lui a5,0x1c009 +1c003830 lw a0,-1064(a5) # 1c008bd8 <_global_impure_ptr> +1c003834 lw a5,40(a0) +1c003836 beqz a5,1c00383a +1c003838 jalr a5 +1c00383a mv a0,s0 +1c00383c jal ra,1c0029b6 <_exit> +__libc_fini_array(): +1c003840 <__libc_fini_array> addi sp,sp,-16 +1c003842 <__libc_fini_array+0x2> lui a5,0x1c009 +1c003846 <__libc_fini_array+0x6> sw s0,8(sp) +1c003848 <__libc_fini_array+0x8> lui s0,0x1c009 +1c00384c <__libc_fini_array+0xc> addi a4,a5,-1060 # 1c008bdc +1c003850 <__libc_fini_array+0x10> addi s0,s0,-1060 # 1c008bdc +1c003854 <__libc_fini_array+0x14> sub s0,s0,a4 +1c003856 <__libc_fini_array+0x16> sw s1,4(sp) +1c003858 <__libc_fini_array+0x18> sw ra,12(sp) +1c00385a <__libc_fini_array+0x1a> srai s0,s0,0x2 +1c00385c <__libc_fini_array+0x1c> addi s1,a5,-1060 +1c003860 <__libc_fini_array+0x20> bnez s0,1c00386c <__libc_fini_array+0x2c> +1c003862 <__libc_fini_array+0x22> lw ra,12(sp) +1c003864 <__libc_fini_array+0x24> lw s0,8(sp) +1c003866 <__libc_fini_array+0x26> lw s1,4(sp) +1c003868 <__libc_fini_array+0x28> addi sp,sp,16 +1c00386a <__libc_fini_array+0x2a> ret +1c00386c <__libc_fini_array+0x2c> addi s0,s0,-1 +1c00386e <__libc_fini_array+0x2e> slli a5,s0,0x2 +1c003872 <__libc_fini_array+0x32> add a5,a5,s1 +1c003874 <__libc_fini_array+0x34> lw a5,0(a5) +1c003876 <__libc_fini_array+0x36> jalr a5 +1c003878 <__libc_fini_array+0x38> j 1c003860 <__libc_fini_array+0x20> +fprintf(): +1c00387a addi sp,sp,-64 +1c00387c sw a5,52(sp) +1c00387e lui a5,0x1c009 +1c003882 sw a2,40(sp) +1c003884 mv a2,a1 +1c003886 mv a1,a0 +1c003888 lw a0,-956(a5) # 1c008c44 <_impure_ptr> +1c00388c sw a3,44(sp) +1c00388e addi a3,sp,40 +1c003890 sw ra,28(sp) +1c003892 sw a4,48(sp) +1c003894 sw a6,56(sp) +1c003896 sw a7,60(sp) +1c003898 sw a3,12(sp) +1c00389a jal 1c003b0c <_vfiprintf_r> +1c00389c lw ra,28(sp) +1c00389e addi sp,sp,64 +1c0038a0 ret +__libc_init_array(): +1c0038a2 <__libc_init_array> addi sp,sp,-16 +1c0038a4 <__libc_init_array+0x2> sw s0,8(sp) +1c0038a6 <__libc_init_array+0x4> sw s1,4(sp) +1c0038a8 <__libc_init_array+0x6> lui s0,0x1c009 +1c0038ac <__libc_init_array+0xa> lui s1,0x1c009 +1c0038b0 <__libc_init_array+0xe> addi a5,s1,-1060 # 1c008bdc +1c0038b4 <__libc_init_array+0x12> addi s0,s0,-1060 # 1c008bdc +1c0038b8 <__libc_init_array+0x16> sub s0,s0,a5 +1c0038ba <__libc_init_array+0x18> sw s2,0(sp) +1c0038bc <__libc_init_array+0x1a> sw ra,12(sp) +1c0038be <__libc_init_array+0x1c> srai s0,s0,0x2 +1c0038c0 <__libc_init_array+0x1e> addi s1,s1,-1060 +1c0038c4 <__libc_init_array+0x22> li s2,0 +1c0038c6 <__libc_init_array+0x24> bne s2,s0,1c0038f4 <__libc_init_array+0x52> +1c0038ca <__libc_init_array+0x28> lui s1,0x1c009 +1c0038ce <__libc_init_array+0x2c> lui s0,0x1c009 +1c0038d2 <__libc_init_array+0x30> addi a5,s1,-1060 # 1c008bdc +1c0038d6 <__libc_init_array+0x34> addi s0,s0,-1060 # 1c008bdc +1c0038da <__libc_init_array+0x38> sub s0,s0,a5 +1c0038dc <__libc_init_array+0x3a> srai s0,s0,0x2 +1c0038de <__libc_init_array+0x3c> addi s1,s1,-1060 +1c0038e2 <__libc_init_array+0x40> li s2,0 +1c0038e4 <__libc_init_array+0x42> bne s2,s0,1c0038fe <__libc_init_array+0x5c> +1c0038e8 <__libc_init_array+0x46> lw ra,12(sp) +1c0038ea <__libc_init_array+0x48> lw s0,8(sp) +1c0038ec <__libc_init_array+0x4a> lw s1,4(sp) +1c0038ee <__libc_init_array+0x4c> lw s2,0(sp) +1c0038f0 <__libc_init_array+0x4e> addi sp,sp,16 +1c0038f2 <__libc_init_array+0x50> ret +1c0038f4 <__libc_init_array+0x52> lw a5,0(s1) +1c0038f6 <__libc_init_array+0x54> addi s2,s2,1 +1c0038f8 <__libc_init_array+0x56> addi s1,s1,4 +1c0038fa <__libc_init_array+0x58> jalr a5 +1c0038fc <__libc_init_array+0x5a> j 1c0038c6 <__libc_init_array+0x24> +1c0038fe <__libc_init_array+0x5c> lw a5,0(s1) +1c003900 <__libc_init_array+0x5e> addi s2,s2,1 +1c003902 <__libc_init_array+0x60> addi s1,s1,4 +1c003904 <__libc_init_array+0x62> jalr a5 +1c003906 <__libc_init_array+0x64> j 1c0038e4 <__libc_init_array+0x42> +malloc(): +1c003908 lui a5,0x1c009 +1c00390c mv a1,a0 +1c00390e lw a0,-956(a5) # 1c008c44 <_impure_ptr> +1c003912 j 1c0039c8 <_malloc_r> +free(): +1c003914 lui a5,0x1c009 +1c003918 mv a1,a0 +1c00391a lw a0,-956(a5) # 1c008c44 <_impure_ptr> +1c00391e j 1c003920 <_free_r> +_free_r(): +1c003920 <_free_r> beqz a1,1c0039c6 <_free_r+0xa6> +1c003922 <_free_r+0x2> lw a5,-4(a1) +1c003926 <_free_r+0x6> addi sp,sp,-32 +1c003928 <_free_r+0x8> sw s0,24(sp) +1c00392a <_free_r+0xa> sw ra,28(sp) +1c00392c <_free_r+0xc> addi s0,a1,-4 +1c003930 <_free_r+0x10> bgez a5,1c003936 <_free_r+0x16> +1c003934 <_free_r+0x14> add s0,s0,a5 +1c003936 <_free_r+0x16> sw a0,12(sp) +1c003938 <_free_r+0x18> jal ra,1c002a66 <__malloc_lock> +1c00393c <_free_r+0x1c> lw a5,-584(gp) # 1c009194 <__malloc_free_list> +1c003940 <_free_r+0x20> lw a0,12(sp) +1c003942 <_free_r+0x22> mv a2,a4 +1c003944 <_free_r+0x24> bnez a5,1c003958 <_free_r+0x38> +1c003946 <_free_r+0x26> sw zero,4(s0) +1c00394a <_free_r+0x2a> sw s0,-584(gp) # 1c009194 <__malloc_free_list> +1c00394e <_free_r+0x2e> lw s0,24(sp) +1c003950 <_free_r+0x30> lw ra,28(sp) +1c003952 <_free_r+0x32> addi sp,sp,32 +1c003954 <_free_r+0x34> j 1c002a6a <__malloc_unlock> +1c003958 <_free_r+0x38> bgeu s0,a5,1c003976 <_free_r+0x56> +1c00395c <_free_r+0x3c> lw a3,0(s0) +1c00395e <_free_r+0x3e> add a4,s0,a3 +1c003962 <_free_r+0x42> bne a5,a4,1c00396e <_free_r+0x4e> +1c003966 <_free_r+0x46> lw a4,0(a5) +1c003968 <_free_r+0x48> lw a5,4(a5) +1c00396a <_free_r+0x4a> add a4,a4,a3 +1c00396c <_free_r+0x4c> sw a4,0(s0) +1c00396e <_free_r+0x4e> sw a5,4(s0) +1c003970 <_free_r+0x50> sw s0,-584(gp) # 1c009194 <__malloc_free_list> +1c003974 <_free_r+0x54> j 1c00394e <_free_r+0x2e> +1c003976 <_free_r+0x56> mv a4,a5 +1c003978 <_free_r+0x58> lw a5,4(a5) +1c00397a <_free_r+0x5a> beqz a5,1c003980 <_free_r+0x60> +1c00397c <_free_r+0x5c> bgeu s0,a5,1c003976 <_free_r+0x56> +1c003980 <_free_r+0x60> lw a3,0(a4) +1c003982 <_free_r+0x62> add a2,a4,a3 +1c003986 <_free_r+0x66> bne a2,s0,1c0039a4 <_free_r+0x84> +1c00398a <_free_r+0x6a> lw a2,0(s0) +1c00398c <_free_r+0x6c> add a3,a3,a2 +1c00398e <_free_r+0x6e> sw a3,0(a4) +1c003990 <_free_r+0x70> add a2,a4,a3 +1c003994 <_free_r+0x74> bne a5,a2,1c00394e <_free_r+0x2e> +1c003998 <_free_r+0x78> lw a2,0(a5) +1c00399a <_free_r+0x7a> lw a5,4(a5) +1c00399c <_free_r+0x7c> add a3,a3,a2 +1c00399e <_free_r+0x7e> sw a3,0(a4) +1c0039a0 <_free_r+0x80> sw a5,4(a4) +1c0039a2 <_free_r+0x82> j 1c00394e <_free_r+0x2e> +1c0039a4 <_free_r+0x84> bgeu s0,a2,1c0039ae <_free_r+0x8e> +1c0039a8 <_free_r+0x88> li a5,12 +1c0039aa <_free_r+0x8a> sw a5,0(a0) +1c0039ac <_free_r+0x8c> j 1c00394e <_free_r+0x2e> +1c0039ae <_free_r+0x8e> lw a2,0(s0) +1c0039b0 <_free_r+0x90> add a3,s0,a2 +1c0039b4 <_free_r+0x94> bne a5,a3,1c0039c0 <_free_r+0xa0> +1c0039b8 <_free_r+0x98> lw a3,0(a5) +1c0039ba <_free_r+0x9a> lw a5,4(a5) +1c0039bc <_free_r+0x9c> add a3,a3,a2 +1c0039be <_free_r+0x9e> sw a3,0(s0) +1c0039c0 <_free_r+0xa0> sw a5,4(s0) +1c0039c2 <_free_r+0xa2> sw s0,4(a4) +1c0039c4 <_free_r+0xa4> j 1c00394e <_free_r+0x2e> +1c0039c6 <_free_r+0xa6> ret +_malloc_r(): +1c0039c8 <_malloc_r> addi sp,sp,-32 +1c0039ca <_malloc_r+0x2> sw s1,20(sp) +1c0039cc <_malloc_r+0x4> addi s1,a1,3 +1c0039d0 <_malloc_r+0x8> andi s1,s1,-4 +1c0039d2 <_malloc_r+0xa> sw s2,16(sp) +1c0039d4 <_malloc_r+0xc> sw ra,28(sp) +1c0039d6 <_malloc_r+0xe> sw s0,24(sp) +1c0039d8 <_malloc_r+0x10> sw s3,12(sp) +1c0039da <_malloc_r+0x12> addi s1,s1,8 +1c0039dc <_malloc_r+0x14> li a5,12 +1c0039de <_malloc_r+0x16> mv s2,a0 +1c0039e0 <_malloc_r+0x18> bgeu s1,a5,1c003a26 <_malloc_r+0x5e> +1c0039e4 <_malloc_r+0x1c> li s1,12 +1c0039e6 <_malloc_r+0x1e> bltu s1,a1,1c003a2a <_malloc_r+0x62> +1c0039ea <_malloc_r+0x22> mv a0,s2 +1c0039ec <_malloc_r+0x24> jal ra,1c002a66 <__malloc_lock> +1c0039f0 <_malloc_r+0x28> lw a4,-584(gp) # 1c009194 <__malloc_free_list> +1c0039f4 <_malloc_r+0x2c> addi a3,gp,-584 # 1c009194 <__malloc_free_list> +1c0039f8 <_malloc_r+0x30> mv s0,a4 +1c0039fa <_malloc_r+0x32> bnez s0,1c003a40 <_malloc_r+0x78> +1c0039fc <_malloc_r+0x34> addi s0,gp,-580 # 1c009198 <__malloc_sbrk_start> +1c003a00 <_malloc_r+0x38> lw a5,0(s0) +1c003a02 <_malloc_r+0x3a> bnez a5,1c003a0c <_malloc_r+0x44> +1c003a04 <_malloc_r+0x3c> li a1,0 +1c003a06 <_malloc_r+0x3e> mv a0,s2 +1c003a08 <_malloc_r+0x40> jal 1c003fdc <_sbrk_r> +1c003a0a <_malloc_r+0x42> sw a0,0(s0) +1c003a0c <_malloc_r+0x44> mv a1,s1 +1c003a0e <_malloc_r+0x46> mv a0,s2 +1c003a10 <_malloc_r+0x48> jal 1c003fdc <_sbrk_r> +1c003a12 <_malloc_r+0x4a> li s3,-1 +1c003a14 <_malloc_r+0x4c> bne a0,s3,1c003a88 <_malloc_r+0xc0> +1c003a18 <_malloc_r+0x50> li a5,12 +1c003a1a <_malloc_r+0x52> sw a5,0(s2) +1c003a1e <_malloc_r+0x56> mv a0,s2 +1c003a20 <_malloc_r+0x58> jal ra,1c002a6a <__malloc_unlock> +1c003a24 <_malloc_r+0x5c> j 1c003a30 <_malloc_r+0x68> +1c003a26 <_malloc_r+0x5e> bgez s1,1c0039e6 <_malloc_r+0x1e> +1c003a2a <_malloc_r+0x62> li a5,12 +1c003a2c <_malloc_r+0x64> sw a5,0(s2) +1c003a30 <_malloc_r+0x68> li a0,0 +1c003a32 <_malloc_r+0x6a> lw ra,28(sp) +1c003a34 <_malloc_r+0x6c> lw s0,24(sp) +1c003a36 <_malloc_r+0x6e> lw s1,20(sp) +1c003a38 <_malloc_r+0x70> lw s2,16(sp) +1c003a3a <_malloc_r+0x72> lw s3,12(sp) +1c003a3c <_malloc_r+0x74> addi sp,sp,32 +1c003a3e <_malloc_r+0x76> ret +1c003a40 <_malloc_r+0x78> lw a5,0(s0) +1c003a42 <_malloc_r+0x7a> sub a5,a5,s1 +1c003a44 <_malloc_r+0x7c> bltz a5,1c003a82 <_malloc_r+0xba> +1c003a48 <_malloc_r+0x80> li a2,11 +1c003a4a <_malloc_r+0x82> bgeu a2,a5,1c003a56 <_malloc_r+0x8e> +1c003a4e <_malloc_r+0x86> sw a5,0(s0) +1c003a50 <_malloc_r+0x88> add s0,s0,a5 +1c003a52 <_malloc_r+0x8a> sw s1,0(s0) +1c003a54 <_malloc_r+0x8c> j 1c003a5e <_malloc_r+0x96> +1c003a56 <_malloc_r+0x8e> lw a5,4(s0) +1c003a58 <_malloc_r+0x90> bne a4,s0,1c003a7e <_malloc_r+0xb6> +1c003a5c <_malloc_r+0x94> sw a5,0(a3) +1c003a5e <_malloc_r+0x96> mv a0,s2 +1c003a60 <_malloc_r+0x98> jal ra,1c002a6a <__malloc_unlock> +1c003a64 <_malloc_r+0x9c> addi a0,s0,11 +1c003a68 <_malloc_r+0xa0> addi a5,s0,4 +1c003a6c <_malloc_r+0xa4> andi a0,a0,-8 +1c003a6e <_malloc_r+0xa6> sub a4,a0,a5 +1c003a72 <_malloc_r+0xaa> beq a0,a5,1c003a32 <_malloc_r+0x6a> +1c003a76 <_malloc_r+0xae> add s0,s0,a4 +1c003a78 <_malloc_r+0xb0> sub a5,a5,a0 +1c003a7a <_malloc_r+0xb2> sw a5,0(s0) +1c003a7c <_malloc_r+0xb4> j 1c003a32 <_malloc_r+0x6a> +1c003a7e <_malloc_r+0xb6> sw a5,4(a4) +1c003a80 <_malloc_r+0xb8> j 1c003a5e <_malloc_r+0x96> +1c003a82 <_malloc_r+0xba> mv a4,s0 +1c003a84 <_malloc_r+0xbc> lw s0,4(s0) +1c003a86 <_malloc_r+0xbe> j 1c0039fa <_malloc_r+0x32> +1c003a88 <_malloc_r+0xc0> addi s0,a0,3 +1c003a8c <_malloc_r+0xc4> andi s0,s0,-4 +1c003a8e <_malloc_r+0xc6> beq a0,s0,1c003a52 <_malloc_r+0x8a> +1c003a92 <_malloc_r+0xca> sub a1,s0,a0 +1c003a96 <_malloc_r+0xce> mv a0,s2 +1c003a98 <_malloc_r+0xd0> jal 1c003fdc <_sbrk_r> +1c003a9a <_malloc_r+0xd2> bne a0,s3,1c003a52 <_malloc_r+0x8a> +1c003a9e <_malloc_r+0xd6> j 1c003a18 <_malloc_r+0x50> +__sfputc_r(): +1c003aa0 <__sfputc_r> lw a5,8(a2) +1c003aa2 <__sfputc_r+0x2> addi a5,a5,-1 +1c003aa4 <__sfputc_r+0x4> sw a5,8(a2) +1c003aa6 <__sfputc_r+0x6> bgez a5,1c003ab8 <__sfputc_r+0x18> +1c003aaa <__sfputc_r+0xa> lw a4,24(a2) +1c003aac <__sfputc_r+0xc> blt a5,a4,1c003ab6 <__sfputc_r+0x16> +1c003ab0 <__sfputc_r+0x10> li a5,10 +1c003ab2 <__sfputc_r+0x12> bne a1,a5,1c003ab8 <__sfputc_r+0x18> +1c003ab6 <__sfputc_r+0x16> j 1c0040aa <__swbuf_r> +1c003ab8 <__sfputc_r+0x18> lw a5,0(a2) +1c003aba <__sfputc_r+0x1a> mv a0,a1 +1c003abc <__sfputc_r+0x1c> addi a4,a5,1 +1c003ac0 <__sfputc_r+0x20> sw a4,0(a2) +1c003ac2 <__sfputc_r+0x22> sb a1,0(a5) +1c003ac6 <__sfputc_r+0x26> ret +__sfputs_r(): +1c003ac8 <__sfputs_r> addi sp,sp,-32 +1c003aca <__sfputs_r+0x2> sw s0,24(sp) +1c003acc <__sfputs_r+0x4> sw s1,20(sp) +1c003ace <__sfputs_r+0x6> sw s2,16(sp) +1c003ad0 <__sfputs_r+0x8> sw s3,12(sp) +1c003ad2 <__sfputs_r+0xa> sw s4,8(sp) +1c003ad4 <__sfputs_r+0xc> sw ra,28(sp) +1c003ad6 <__sfputs_r+0xe> mv s2,a0 +1c003ad8 <__sfputs_r+0x10> mv s3,a1 +1c003ada <__sfputs_r+0x12> mv s0,a2 +1c003adc <__sfputs_r+0x14> add s1,a2,a3 +1c003ae0 <__sfputs_r+0x18> li s4,-1 +1c003ae2 <__sfputs_r+0x1a> bne s0,s1,1c003aea <__sfputs_r+0x22> +1c003ae6 <__sfputs_r+0x1e> li a0,0 +1c003ae8 <__sfputs_r+0x20> j 1c003afc <__sfputs_r+0x34> +1c003aea <__sfputs_r+0x22> lbu a1,0(s0) +1c003aee <__sfputs_r+0x26> mv a2,s3 +1c003af0 <__sfputs_r+0x28> mv a0,s2 +1c003af2 <__sfputs_r+0x2a> jal ra,1c003aa0 <__sfputc_r> +1c003af6 <__sfputs_r+0x2e> addi s0,s0,1 +1c003af8 <__sfputs_r+0x30> bne a0,s4,1c003ae2 <__sfputs_r+0x1a> +1c003afc <__sfputs_r+0x34> lw ra,28(sp) +1c003afe <__sfputs_r+0x36> lw s0,24(sp) +1c003b00 <__sfputs_r+0x38> lw s1,20(sp) +1c003b02 <__sfputs_r+0x3a> lw s2,16(sp) +1c003b04 <__sfputs_r+0x3c> lw s3,12(sp) +1c003b06 <__sfputs_r+0x3e> lw s4,8(sp) +1c003b08 <__sfputs_r+0x40> addi sp,sp,32 +1c003b0a <__sfputs_r+0x42> ret +_vfiprintf_r(): +1c003b0c <_vfiprintf_r> addi sp,sp,-176 +1c003b0e <_vfiprintf_r+0x2> sw s0,168(sp) +1c003b10 <_vfiprintf_r+0x4> sw s1,164(sp) +1c003b12 <_vfiprintf_r+0x6> sw s2,160(sp) +1c003b14 <_vfiprintf_r+0x8> sw s3,156(sp) +1c003b16 <_vfiprintf_r+0xa> sw ra,172(sp) +1c003b18 <_vfiprintf_r+0xc> sw s4,152(sp) +1c003b1a <_vfiprintf_r+0xe> sw s5,148(sp) +1c003b1c <_vfiprintf_r+0x10> sw s6,144(sp) +1c003b1e <_vfiprintf_r+0x12> sw s7,140(sp) +1c003b20 <_vfiprintf_r+0x14> sw s8,136(sp) +1c003b22 <_vfiprintf_r+0x16> sw s9,132(sp) +1c003b24 <_vfiprintf_r+0x18> sw s10,128(sp) +1c003b26 <_vfiprintf_r+0x1a> sw s11,124(sp) +1c003b28 <_vfiprintf_r+0x1c> mv s3,a0 +1c003b2a <_vfiprintf_r+0x1e> mv s1,a1 +1c003b2c <_vfiprintf_r+0x20> mv s2,a2 +1c003b2e <_vfiprintf_r+0x22> mv s0,a3 +1c003b30 <_vfiprintf_r+0x24> beqz a0,1c003b3a <_vfiprintf_r+0x2e> +1c003b32 <_vfiprintf_r+0x26> lw a5,24(a0) +1c003b34 <_vfiprintf_r+0x28> bnez a5,1c003b3a <_vfiprintf_r+0x2e> +1c003b36 <_vfiprintf_r+0x2a> jal ra,1c004624 <__sinit> +1c003b3a <_vfiprintf_r+0x2e> lui a5,0x1c009 +1c003b3e <_vfiprintf_r+0x32> addi a5,a5,-1516 # 1c008a14 <__sf_fake_stdin> +1c003b42 <_vfiprintf_r+0x36> bne s1,a5,1c003c2e <_vfiprintf_r+0x122> +1c003b46 <_vfiprintf_r+0x3a> lw s1,4(s3) +1c003b4a <_vfiprintf_r+0x3e> lhu a5,12(s1) +1c003b4e <_vfiprintf_r+0x42> andi a5,a5,8 +1c003b50 <_vfiprintf_r+0x44> beqz a5,1c003c52 <_vfiprintf_r+0x146> +1c003b54 <_vfiprintf_r+0x48> lw a5,16(s1) +1c003b56 <_vfiprintf_r+0x4a> beqz a5,1c003c52 <_vfiprintf_r+0x146> +1c003b5a <_vfiprintf_r+0x4e> li a5,32 +1c003b5e <_vfiprintf_r+0x52> sb a5,41(sp) +1c003b62 <_vfiprintf_r+0x56> li a5,48 +1c003b66 <_vfiprintf_r+0x5a> sw zero,36(sp) +1c003b68 <_vfiprintf_r+0x5c> sb a5,42(sp) +1c003b6c <_vfiprintf_r+0x60> sw s0,12(sp) +1c003b6e <_vfiprintf_r+0x62> li s9,37 +1c003b72 <_vfiprintf_r+0x66> lui s6,0x1c009 +1c003b76 <_vfiprintf_r+0x6a> lui s7,0x1c009 +1c003b7a <_vfiprintf_r+0x6e> lui s10,0x1c009 +1c003b7e <_vfiprintf_r+0x72> lui s8,0x1c004 +1c003b82 <_vfiprintf_r+0x76> li s5,0 +1c003b86 <_vfiprintf_r+0x7a> mv s0,s2 +1c003b88 <_vfiprintf_r+0x7c> lbu a5,0(s0) +1c003b8c <_vfiprintf_r+0x80> beqz a5,1c003b92 <_vfiprintf_r+0x86> +1c003b8e <_vfiprintf_r+0x82> bne a5,s9,1c003c7c <_vfiprintf_r+0x170> +1c003b92 <_vfiprintf_r+0x86> sub s11,s0,s2 +1c003b96 <_vfiprintf_r+0x8a> beq s0,s2,1c003bb2 <_vfiprintf_r+0xa6> +1c003b9a <_vfiprintf_r+0x8e> mv a3,s11 +1c003b9c <_vfiprintf_r+0x90> mv a2,s2 +1c003b9e <_vfiprintf_r+0x92> mv a1,s1 +1c003ba0 <_vfiprintf_r+0x94> mv a0,s3 +1c003ba2 <_vfiprintf_r+0x96> jal ra,1c003ac8 <__sfputs_r> +1c003ba6 <_vfiprintf_r+0x9a> li a5,-1 +1c003ba8 <_vfiprintf_r+0x9c> beq a0,a5,1c003d92 <_vfiprintf_r+0x286> +1c003bac <_vfiprintf_r+0xa0> lw a5,36(sp) +1c003bae <_vfiprintf_r+0xa2> add a5,a5,s11 +1c003bb0 <_vfiprintf_r+0xa4> sw a5,36(sp) +1c003bb2 <_vfiprintf_r+0xa6> lbu a5,0(s0) +1c003bb6 <_vfiprintf_r+0xaa> beqz a5,1c003d92 <_vfiprintf_r+0x286> +1c003bba <_vfiprintf_r+0xae> li a5,-1 +1c003bbc <_vfiprintf_r+0xb0> addi s2,s0,1 +1c003bc0 <_vfiprintf_r+0xb4> sw zero,16(sp) +1c003bc2 <_vfiprintf_r+0xb6> sw zero,28(sp) +1c003bc4 <_vfiprintf_r+0xb8> sw a5,20(sp) +1c003bc6 <_vfiprintf_r+0xba> sw zero,24(sp) +1c003bc8 <_vfiprintf_r+0xbc> sb zero,83(sp) +1c003bcc <_vfiprintf_r+0xc0> sw zero,104(sp) +1c003bce <_vfiprintf_r+0xc2> li s11,1 +1c003bd0 <_vfiprintf_r+0xc4> lbu a1,0(s2) +1c003bd4 <_vfiprintf_r+0xc8> li a2,5 +1c003bd6 <_vfiprintf_r+0xca> addi a0,s6,-1568 # 1c0089e0 <__func__.0+0x19c> +1c003bda <_vfiprintf_r+0xce> jal ra,1c00489a +1c003bde <_vfiprintf_r+0xd2> lw a5,16(sp) +1c003be0 <_vfiprintf_r+0xd4> addi s0,s2,1 +1c003be4 <_vfiprintf_r+0xd8> bnez a0,1c003c80 <_vfiprintf_r+0x174> +1c003be6 <_vfiprintf_r+0xda> andi a4,a5,16 +1c003bea <_vfiprintf_r+0xde> beqz a4,1c003bf4 <_vfiprintf_r+0xe8> +1c003bec <_vfiprintf_r+0xe0> li a4,32 +1c003bf0 <_vfiprintf_r+0xe4> sb a4,83(sp) +1c003bf4 <_vfiprintf_r+0xe8> andi a4,a5,8 +1c003bf8 <_vfiprintf_r+0xec> beqz a4,1c003c02 <_vfiprintf_r+0xf6> +1c003bfa <_vfiprintf_r+0xee> li a4,43 +1c003bfe <_vfiprintf_r+0xf2> sb a4,83(sp) +1c003c02 <_vfiprintf_r+0xf6> lbu a3,0(s2) +1c003c06 <_vfiprintf_r+0xfa> li a4,42 +1c003c0a <_vfiprintf_r+0xfe> beq a3,a4,1c003c92 <_vfiprintf_r+0x186> +1c003c0e <_vfiprintf_r+0x102> lw a5,28(sp) +1c003c10 <_vfiprintf_r+0x104> mv s0,s2 +1c003c12 <_vfiprintf_r+0x106> li a3,0 +1c003c14 <_vfiprintf_r+0x108> li a2,9 +1c003c16 <_vfiprintf_r+0x10a> li a0,10 +1c003c18 <_vfiprintf_r+0x10c> lbu a4,0(s0) +1c003c1c <_vfiprintf_r+0x110> addi a1,s0,1 +1c003c20 <_vfiprintf_r+0x114> addi a4,a4,-48 +1c003c24 <_vfiprintf_r+0x118> bgeu a2,a4,1c003cdc <_vfiprintf_r+0x1d0> +1c003c28 <_vfiprintf_r+0x11c> beqz a3,1c003ca2 <_vfiprintf_r+0x196> +1c003c2a <_vfiprintf_r+0x11e> sw a5,28(sp) +1c003c2c <_vfiprintf_r+0x120> j 1c003ca2 <_vfiprintf_r+0x196> +1c003c2e <_vfiprintf_r+0x122> lui a5,0x1c009 +1c003c32 <_vfiprintf_r+0x126> addi a5,a5,-1484 # 1c008a34 <__sf_fake_stdout> +1c003c36 <_vfiprintf_r+0x12a> bne s1,a5,1c003c40 <_vfiprintf_r+0x134> +1c003c3a <_vfiprintf_r+0x12e> lw s1,8(s3) +1c003c3e <_vfiprintf_r+0x132> j 1c003b4a <_vfiprintf_r+0x3e> +1c003c40 <_vfiprintf_r+0x134> lui a5,0x1c009 +1c003c44 <_vfiprintf_r+0x138> addi a5,a5,-1548 # 1c0089f4 <__sf_fake_stderr> +1c003c48 <_vfiprintf_r+0x13c> bne s1,a5,1c003b4a <_vfiprintf_r+0x3e> +1c003c4c <_vfiprintf_r+0x140> lw s1,12(s3) +1c003c50 <_vfiprintf_r+0x144> j 1c003b4a <_vfiprintf_r+0x3e> +1c003c52 <_vfiprintf_r+0x146> mv a1,s1 +1c003c54 <_vfiprintf_r+0x148> mv a0,s3 +1c003c56 <_vfiprintf_r+0x14a> jal 1c00416a <__swsetup_r> +1c003c58 <_vfiprintf_r+0x14c> beqz a0,1c003b5a <_vfiprintf_r+0x4e> +1c003c5c <_vfiprintf_r+0x150> li a0,-1 +1c003c5e <_vfiprintf_r+0x152> lw ra,172(sp) +1c003c60 <_vfiprintf_r+0x154> lw s0,168(sp) +1c003c62 <_vfiprintf_r+0x156> lw s1,164(sp) +1c003c64 <_vfiprintf_r+0x158> lw s2,160(sp) +1c003c66 <_vfiprintf_r+0x15a> lw s3,156(sp) +1c003c68 <_vfiprintf_r+0x15c> lw s4,152(sp) +1c003c6a <_vfiprintf_r+0x15e> lw s5,148(sp) +1c003c6c <_vfiprintf_r+0x160> lw s6,144(sp) +1c003c6e <_vfiprintf_r+0x162> lw s7,140(sp) +1c003c70 <_vfiprintf_r+0x164> lw s8,136(sp) +1c003c72 <_vfiprintf_r+0x166> lw s9,132(sp) +1c003c74 <_vfiprintf_r+0x168> lw s10,128(sp) +1c003c76 <_vfiprintf_r+0x16a> lw s11,124(sp) +1c003c78 <_vfiprintf_r+0x16c> addi sp,sp,176 +1c003c7a <_vfiprintf_r+0x16e> ret +1c003c7c <_vfiprintf_r+0x170> addi s0,s0,1 +1c003c7e <_vfiprintf_r+0x172> j 1c003b88 <_vfiprintf_r+0x7c> +1c003c80 <_vfiprintf_r+0x174> addi a4,s6,-1568 +1c003c84 <_vfiprintf_r+0x178> sub a0,a0,a4 +1c003c86 <_vfiprintf_r+0x17a> sll a0,s11,a0 +1c003c8a <_vfiprintf_r+0x17e> or a5,a5,a0 +1c003c8c <_vfiprintf_r+0x180> sw a5,16(sp) +1c003c8e <_vfiprintf_r+0x182> mv s2,s0 +1c003c90 <_vfiprintf_r+0x184> j 1c003bd0 <_vfiprintf_r+0xc4> +1c003c92 <_vfiprintf_r+0x186> lw a4,12(sp) +1c003c94 <_vfiprintf_r+0x188> addi a3,a4,4 +1c003c98 <_vfiprintf_r+0x18c> lw a4,0(a4) +1c003c9a <_vfiprintf_r+0x18e> sw a3,12(sp) +1c003c9c <_vfiprintf_r+0x190> bltz a4,1c003cce <_vfiprintf_r+0x1c2> +1c003ca0 <_vfiprintf_r+0x194> sw a4,28(sp) +1c003ca2 <_vfiprintf_r+0x196> lbu a4,0(s0) +1c003ca6 <_vfiprintf_r+0x19a> li a5,46 +1c003caa <_vfiprintf_r+0x19e> bne a4,a5,1c003d0a <_vfiprintf_r+0x1fe> +1c003cae <_vfiprintf_r+0x1a2> lbu a4,1(s0) +1c003cb2 <_vfiprintf_r+0x1a6> li a5,42 +1c003cb6 <_vfiprintf_r+0x1aa> bne a4,a5,1c003cec <_vfiprintf_r+0x1e0> +1c003cba <_vfiprintf_r+0x1ae> lw a5,12(sp) +1c003cbc <_vfiprintf_r+0x1b0> addi s0,s0,2 +1c003cbe <_vfiprintf_r+0x1b2> addi a4,a5,4 +1c003cc2 <_vfiprintf_r+0x1b6> lw a5,0(a5) +1c003cc4 <_vfiprintf_r+0x1b8> sw a4,12(sp) +1c003cc6 <_vfiprintf_r+0x1ba> bltz a5,1c003ce8 <_vfiprintf_r+0x1dc> +1c003cca <_vfiprintf_r+0x1be> sw a5,20(sp) +1c003ccc <_vfiprintf_r+0x1c0> j 1c003d0a <_vfiprintf_r+0x1fe> +1c003cce <_vfiprintf_r+0x1c2> neg a4,a4 +1c003cd2 <_vfiprintf_r+0x1c6> ori a5,a5,2 +1c003cd6 <_vfiprintf_r+0x1ca> sw a4,28(sp) +1c003cd8 <_vfiprintf_r+0x1cc> sw a5,16(sp) +1c003cda <_vfiprintf_r+0x1ce> j 1c003ca2 <_vfiprintf_r+0x196> +1c003cdc <_vfiprintf_r+0x1d0> mul a5,a5,a0 +1c003ce0 <_vfiprintf_r+0x1d4> mv s0,a1 +1c003ce2 <_vfiprintf_r+0x1d6> li a3,1 +1c003ce4 <_vfiprintf_r+0x1d8> add a5,a5,a4 +1c003ce6 <_vfiprintf_r+0x1da> j 1c003c18 <_vfiprintf_r+0x10c> +1c003ce8 <_vfiprintf_r+0x1dc> li a5,-1 +1c003cea <_vfiprintf_r+0x1de> j 1c003cca <_vfiprintf_r+0x1be> +1c003cec <_vfiprintf_r+0x1e0> addi s0,s0,1 +1c003cee <_vfiprintf_r+0x1e2> sw zero,20(sp) +1c003cf0 <_vfiprintf_r+0x1e4> li a3,0 +1c003cf2 <_vfiprintf_r+0x1e6> li a5,0 +1c003cf4 <_vfiprintf_r+0x1e8> li a2,9 +1c003cf6 <_vfiprintf_r+0x1ea> li a0,10 +1c003cf8 <_vfiprintf_r+0x1ec> lbu a4,0(s0) +1c003cfc <_vfiprintf_r+0x1f0> addi a1,s0,1 +1c003d00 <_vfiprintf_r+0x1f4> addi a4,a4,-48 +1c003d04 <_vfiprintf_r+0x1f8> bgeu a2,a4,1c003d62 <_vfiprintf_r+0x256> +1c003d08 <_vfiprintf_r+0x1fc> bnez a3,1c003cca <_vfiprintf_r+0x1be> +1c003d0a <_vfiprintf_r+0x1fe> lbu a1,0(s0) +1c003d0e <_vfiprintf_r+0x202> li a2,3 +1c003d10 <_vfiprintf_r+0x204> addi a0,s7,-1560 # 1c0089e8 <__func__.0+0x1a4> +1c003d14 <_vfiprintf_r+0x208> jal ra,1c00489a +1c003d18 <_vfiprintf_r+0x20c> beqz a0,1c003d30 <_vfiprintf_r+0x224> +1c003d1a <_vfiprintf_r+0x20e> addi a5,s7,-1560 +1c003d1e <_vfiprintf_r+0x212> sub a0,a0,a5 +1c003d20 <_vfiprintf_r+0x214> li a5,64 +1c003d24 <_vfiprintf_r+0x218> sll a5,a5,a0 +1c003d28 <_vfiprintf_r+0x21c> lw a0,16(sp) +1c003d2a <_vfiprintf_r+0x21e> addi s0,s0,1 +1c003d2c <_vfiprintf_r+0x220> or a0,a0,a5 +1c003d2e <_vfiprintf_r+0x222> sw a0,16(sp) +1c003d30 <_vfiprintf_r+0x224> lbu a1,0(s0) +1c003d34 <_vfiprintf_r+0x228> li a2,6 +1c003d36 <_vfiprintf_r+0x22a> addi a0,s10,-1556 # 1c0089ec <__func__.0+0x1a8> +1c003d3a <_vfiprintf_r+0x22e> addi s2,s0,1 +1c003d3e <_vfiprintf_r+0x232> sb a1,40(sp) +1c003d42 <_vfiprintf_r+0x236> jal ra,1c00489a +1c003d46 <_vfiprintf_r+0x23a> beqz a0,1c003da2 <_vfiprintf_r+0x296> +1c003d48 <_vfiprintf_r+0x23c> bnez s5,1c003d76 <_vfiprintf_r+0x26a> +1c003d4c <_vfiprintf_r+0x240> lw a4,16(sp) +1c003d4e <_vfiprintf_r+0x242> lw a5,12(sp) +1c003d50 <_vfiprintf_r+0x244> andi a4,a4,256 +1c003d54 <_vfiprintf_r+0x248> beqz a4,1c003d6e <_vfiprintf_r+0x262> +1c003d56 <_vfiprintf_r+0x24a> addi a5,a5,4 +1c003d58 <_vfiprintf_r+0x24c> sw a5,12(sp) +1c003d5a <_vfiprintf_r+0x24e> lw a5,36(sp) +1c003d5c <_vfiprintf_r+0x250> add a5,a5,s4 +1c003d5e <_vfiprintf_r+0x252> sw a5,36(sp) +1c003d60 <_vfiprintf_r+0x254> j 1c003b86 <_vfiprintf_r+0x7a> +1c003d62 <_vfiprintf_r+0x256> mul a5,a5,a0 +1c003d66 <_vfiprintf_r+0x25a> mv s0,a1 +1c003d68 <_vfiprintf_r+0x25c> li a3,1 +1c003d6a <_vfiprintf_r+0x25e> add a5,a5,a4 +1c003d6c <_vfiprintf_r+0x260> j 1c003cf8 <_vfiprintf_r+0x1ec> +1c003d6e <_vfiprintf_r+0x262> addi a5,a5,7 +1c003d70 <_vfiprintf_r+0x264> andi a5,a5,-8 +1c003d72 <_vfiprintf_r+0x266> addi a5,a5,8 +1c003d74 <_vfiprintf_r+0x268> j 1c003d58 <_vfiprintf_r+0x24c> +1c003d76 <_vfiprintf_r+0x26a> addi a4,sp,12 +1c003d78 <_vfiprintf_r+0x26c> addi a3,s8,-1336 # 1c003ac8 <__sfputs_r> +1c003d7c <_vfiprintf_r+0x270> mv a2,s1 +1c003d7e <_vfiprintf_r+0x272> addi a1,sp,16 +1c003d80 <_vfiprintf_r+0x274> mv a0,s3 +1c003d82 <_vfiprintf_r+0x276> auipc ra,0x0 +1c003d86 <_vfiprintf_r+0x27a> jalr zero # 00000000 <__heap_size> +1c003d8a <_vfiprintf_r+0x27e> li a5,-1 +1c003d8c <_vfiprintf_r+0x280> mv s4,a0 +1c003d8e <_vfiprintf_r+0x282> bne a0,a5,1c003d5a <_vfiprintf_r+0x24e> +1c003d92 <_vfiprintf_r+0x286> lhu a5,12(s1) +1c003d96 <_vfiprintf_r+0x28a> andi a5,a5,64 +1c003d9a <_vfiprintf_r+0x28e> bnez a5,1c003c5c <_vfiprintf_r+0x150> +1c003d9e <_vfiprintf_r+0x292> lw a0,36(sp) +1c003da0 <_vfiprintf_r+0x294> j 1c003c5e <_vfiprintf_r+0x152> +1c003da2 <_vfiprintf_r+0x296> addi a4,sp,12 +1c003da4 <_vfiprintf_r+0x298> addi a3,s8,-1336 +1c003da8 <_vfiprintf_r+0x29c> mv a2,s1 +1c003daa <_vfiprintf_r+0x29e> addi a1,sp,16 +1c003dac <_vfiprintf_r+0x2a0> mv a0,s3 +1c003dae <_vfiprintf_r+0x2a2> jal ra,1c0049c0 <_printf_i> +1c003db2 <_vfiprintf_r+0x2a6> j 1c003d8a <_vfiprintf_r+0x27e> +printf(): +1c003db4 addi sp,sp,-80 +1c003db6 sw a5,68(sp) +1c003db8 lui a5,0x1c009 +1c003dbc sw s0,40(sp) +1c003dbe mv s0,a0 +1c003dc0 lw a0,-956(a5) # 1c008c44 <_impure_ptr> +1c003dc4 sw ra,44(sp) +1c003dc6 sw a1,52(sp) +1c003dc8 sw a2,56(sp) +1c003dca sw a3,60(sp) +1c003dcc sw a4,64(sp) +1c003dce sw a6,72(sp) +1c003dd0 sw a7,76(sp) +1c003dd2 beqz a0,1c003de0 +1c003dd4 lw a5,24(a0) +1c003dd6 bnez a5,1c003de0 +1c003dd8 sw a0,12(sp) +1c003dda jal ra,1c004624 <__sinit> +1c003dde lw a0,12(sp) +1c003de0 lw a1,8(a0) +1c003de2 addi a3,sp,52 +1c003de4 mv a2,s0 +1c003de6 sw a3,28(sp) +1c003de8 jal ra,1c003b0c <_vfiprintf_r> +1c003dec lw ra,44(sp) +1c003dee lw s0,40(sp) +1c003df0 addi sp,sp,80 +1c003df2 ret +_puts_r(): +1c003df4 <_puts_r> addi sp,sp,-32 +1c003df6 <_puts_r+0x2> sw s1,20(sp) +1c003df8 <_puts_r+0x4> sw s2,16(sp) +1c003dfa <_puts_r+0x6> sw ra,28(sp) +1c003dfc <_puts_r+0x8> sw s0,24(sp) +1c003dfe <_puts_r+0xa> sw s3,12(sp) +1c003e00 <_puts_r+0xc> sw s4,8(sp) +1c003e02 <_puts_r+0xe> mv s1,a0 +1c003e04 <_puts_r+0x10> mv s2,a1 +1c003e06 <_puts_r+0x12> beqz a0,1c003e10 <_puts_r+0x1c> +1c003e08 <_puts_r+0x14> lw a5,24(a0) +1c003e0a <_puts_r+0x16> bnez a5,1c003e10 <_puts_r+0x1c> +1c003e0c <_puts_r+0x18> jal ra,1c004624 <__sinit> +1c003e10 <_puts_r+0x1c> lw a5,24(s1) +1c003e12 <_puts_r+0x1e> lw s0,8(s1) +1c003e14 <_puts_r+0x20> bnez a5,1c003e1c <_puts_r+0x28> +1c003e16 <_puts_r+0x22> mv a0,s1 +1c003e18 <_puts_r+0x24> jal ra,1c004624 <__sinit> +1c003e1c <_puts_r+0x28> lui a5,0x1c009 +1c003e20 <_puts_r+0x2c> addi a5,a5,-1516 # 1c008a14 <__sf_fake_stdin> +1c003e24 <_puts_r+0x30> bne s0,a5,1c003e5c <_puts_r+0x68> +1c003e28 <_puts_r+0x34> lw s0,4(s1) +1c003e2a <_puts_r+0x36> lhu a5,12(s0) +1c003e2e <_puts_r+0x3a> andi a5,a5,8 +1c003e30 <_puts_r+0x3c> beqz a5,1c003e7c <_puts_r+0x88> +1c003e32 <_puts_r+0x3e> lw a5,16(s0) +1c003e34 <_puts_r+0x40> beqz a5,1c003e7c <_puts_r+0x88> +1c003e36 <_puts_r+0x42> li s3,-1 +1c003e38 <_puts_r+0x44> li s4,10 +1c003e3a <_puts_r+0x46> lw a5,8(s0) +1c003e3c <_puts_r+0x48> lbu a1,0(s2) +1c003e40 <_puts_r+0x4c> addi a5,a5,-1 +1c003e42 <_puts_r+0x4e> bnez a1,1c003e96 <_puts_r+0xa2> +1c003e44 <_puts_r+0x50> sw a5,8(s0) +1c003e46 <_puts_r+0x52> bgez a5,1c003ec2 <_puts_r+0xce> +1c003e4a <_puts_r+0x56> mv a2,s0 +1c003e4c <_puts_r+0x58> li a1,10 +1c003e4e <_puts_r+0x5a> mv a0,s1 +1c003e50 <_puts_r+0x5c> jal 1c0040aa <__swbuf_r> +1c003e52 <_puts_r+0x5e> li a5,-1 +1c003e54 <_puts_r+0x60> beq a0,a5,1c003e84 <_puts_r+0x90> +1c003e58 <_puts_r+0x64> li a0,10 +1c003e5a <_puts_r+0x66> j 1c003e86 <_puts_r+0x92> +1c003e5c <_puts_r+0x68> lui a5,0x1c009 +1c003e60 <_puts_r+0x6c> addi a5,a5,-1484 # 1c008a34 <__sf_fake_stdout> +1c003e64 <_puts_r+0x70> bne s0,a5,1c003e6c <_puts_r+0x78> +1c003e68 <_puts_r+0x74> lw s0,8(s1) +1c003e6a <_puts_r+0x76> j 1c003e2a <_puts_r+0x36> +1c003e6c <_puts_r+0x78> lui a5,0x1c009 +1c003e70 <_puts_r+0x7c> addi a5,a5,-1548 # 1c0089f4 <__sf_fake_stderr> +1c003e74 <_puts_r+0x80> bne s0,a5,1c003e2a <_puts_r+0x36> +1c003e78 <_puts_r+0x84> lw s0,12(s1) +1c003e7a <_puts_r+0x86> j 1c003e2a <_puts_r+0x36> +1c003e7c <_puts_r+0x88> mv a1,s0 +1c003e7e <_puts_r+0x8a> mv a0,s1 +1c003e80 <_puts_r+0x8c> jal 1c00416a <__swsetup_r> +1c003e82 <_puts_r+0x8e> beqz a0,1c003e36 <_puts_r+0x42> +1c003e84 <_puts_r+0x90> li a0,-1 +1c003e86 <_puts_r+0x92> lw ra,28(sp) +1c003e88 <_puts_r+0x94> lw s0,24(sp) +1c003e8a <_puts_r+0x96> lw s1,20(sp) +1c003e8c <_puts_r+0x98> lw s2,16(sp) +1c003e8e <_puts_r+0x9a> lw s3,12(sp) +1c003e90 <_puts_r+0x9c> lw s4,8(sp) +1c003e92 <_puts_r+0x9e> addi sp,sp,32 +1c003e94 <_puts_r+0xa0> ret +1c003e96 <_puts_r+0xa2> sw a5,8(s0) +1c003e98 <_puts_r+0xa4> addi s2,s2,1 +1c003e9a <_puts_r+0xa6> bgez a5,1c003ea8 <_puts_r+0xb4> +1c003e9e <_puts_r+0xaa> lw a4,24(s0) +1c003ea0 <_puts_r+0xac> blt a5,a4,1c003eb6 <_puts_r+0xc2> +1c003ea4 <_puts_r+0xb0> beq a1,s4,1c003eb6 <_puts_r+0xc2> +1c003ea8 <_puts_r+0xb4> lw a5,0(s0) +1c003eaa <_puts_r+0xb6> addi a4,a5,1 +1c003eae <_puts_r+0xba> sw a4,0(s0) +1c003eb0 <_puts_r+0xbc> sb a1,0(a5) +1c003eb4 <_puts_r+0xc0> j 1c003e3a <_puts_r+0x46> +1c003eb6 <_puts_r+0xc2> mv a2,s0 +1c003eb8 <_puts_r+0xc4> mv a0,s1 +1c003eba <_puts_r+0xc6> jal 1c0040aa <__swbuf_r> +1c003ebc <_puts_r+0xc8> bne a0,s3,1c003e3a <_puts_r+0x46> +1c003ec0 <_puts_r+0xcc> j 1c003e84 <_puts_r+0x90> +1c003ec2 <_puts_r+0xce> lw a5,0(s0) +1c003ec4 <_puts_r+0xd0> addi a4,a5,1 +1c003ec8 <_puts_r+0xd4> sw a4,0(s0) +1c003eca <_puts_r+0xd6> li a4,10 +1c003ecc <_puts_r+0xd8> sb a4,0(a5) +1c003ed0 <_puts_r+0xdc> j 1c003e58 <_puts_r+0x64> +puts(): +1c003ed2 lui a5,0x1c009 +1c003ed6 mv a1,a0 +1c003ed8 lw a0,-956(a5) # 1c008c44 <_impure_ptr> +1c003edc j 1c003df4 <_puts_r> +cleanup_glue(): +1c003ee0 addi sp,sp,-16 +1c003ee2 sw s0,8(sp) +1c003ee4 mv s0,a1 +1c003ee6 lw a1,0(a1) +1c003ee8 sw s1,4(sp) +1c003eea sw ra,12(sp) +1c003eec mv s1,a0 +1c003eee beqz a1,1c003ef2 +1c003ef0 jal 1c003ee0 +1c003ef2 mv a1,s0 +1c003ef4 lw s0,8(sp) +1c003ef6 lw ra,12(sp) +1c003ef8 mv a0,s1 +1c003efa lw s1,4(sp) +1c003efc addi sp,sp,16 +1c003efe j 1c003920 <_free_r> +_reclaim_reent(): +1c003f02 <_reclaim_reent> lui a5,0x1c009 +1c003f06 <_reclaim_reent+0x4> lw a5,-956(a5) # 1c008c44 <_impure_ptr> +1c003f0a <_reclaim_reent+0x8> beq a5,a0,1c003fda <_reclaim_reent+0xd8> +1c003f0e <_reclaim_reent+0xc> lw a5,36(a0) +1c003f10 <_reclaim_reent+0xe> addi sp,sp,-32 +1c003f12 <_reclaim_reent+0x10> sw s0,24(sp) +1c003f14 <_reclaim_reent+0x12> sw ra,28(sp) +1c003f16 <_reclaim_reent+0x14> sw s1,20(sp) +1c003f18 <_reclaim_reent+0x16> sw s2,16(sp) +1c003f1a <_reclaim_reent+0x18> sw s3,12(sp) +1c003f1c <_reclaim_reent+0x1a> mv s0,a0 +1c003f1e <_reclaim_reent+0x1c> beqz a5,1c003f36 <_reclaim_reent+0x34> +1c003f20 <_reclaim_reent+0x1e> lw a5,12(a5) +1c003f22 <_reclaim_reent+0x20> li s1,0 +1c003f24 <_reclaim_reent+0x22> li s2,128 +1c003f28 <_reclaim_reent+0x26> bnez a5,1c003fae <_reclaim_reent+0xac> +1c003f2a <_reclaim_reent+0x28> lw a5,36(s0) +1c003f2c <_reclaim_reent+0x2a> lw a1,0(a5) +1c003f2e <_reclaim_reent+0x2c> beqz a1,1c003f36 <_reclaim_reent+0x34> +1c003f30 <_reclaim_reent+0x2e> mv a0,s0 +1c003f32 <_reclaim_reent+0x30> jal ra,1c003920 <_free_r> +1c003f36 <_reclaim_reent+0x34> lw a1,20(s0) +1c003f38 <_reclaim_reent+0x36> beqz a1,1c003f40 <_reclaim_reent+0x3e> +1c003f3a <_reclaim_reent+0x38> mv a0,s0 +1c003f3c <_reclaim_reent+0x3a> jal ra,1c003920 <_free_r> +1c003f40 <_reclaim_reent+0x3e> lw a1,36(s0) +1c003f42 <_reclaim_reent+0x40> beqz a1,1c003f4a <_reclaim_reent+0x48> +1c003f44 <_reclaim_reent+0x42> mv a0,s0 +1c003f46 <_reclaim_reent+0x44> jal ra,1c003920 <_free_r> +1c003f4a <_reclaim_reent+0x48> lw a1,56(s0) +1c003f4c <_reclaim_reent+0x4a> beqz a1,1c003f54 <_reclaim_reent+0x52> +1c003f4e <_reclaim_reent+0x4c> mv a0,s0 +1c003f50 <_reclaim_reent+0x4e> jal ra,1c003920 <_free_r> +1c003f54 <_reclaim_reent+0x52> lw a1,60(s0) +1c003f56 <_reclaim_reent+0x54> beqz a1,1c003f5e <_reclaim_reent+0x5c> +1c003f58 <_reclaim_reent+0x56> mv a0,s0 +1c003f5a <_reclaim_reent+0x58> jal ra,1c003920 <_free_r> +1c003f5e <_reclaim_reent+0x5c> lw a1,64(s0) +1c003f60 <_reclaim_reent+0x5e> beqz a1,1c003f68 <_reclaim_reent+0x66> +1c003f62 <_reclaim_reent+0x60> mv a0,s0 +1c003f64 <_reclaim_reent+0x62> jal ra,1c003920 <_free_r> +1c003f68 <_reclaim_reent+0x66> lw a1,92(s0) +1c003f6a <_reclaim_reent+0x68> beqz a1,1c003f72 <_reclaim_reent+0x70> +1c003f6c <_reclaim_reent+0x6a> mv a0,s0 +1c003f6e <_reclaim_reent+0x6c> jal ra,1c003920 <_free_r> +1c003f72 <_reclaim_reent+0x70> lw a1,88(s0) +1c003f74 <_reclaim_reent+0x72> beqz a1,1c003f7c <_reclaim_reent+0x7a> +1c003f76 <_reclaim_reent+0x74> mv a0,s0 +1c003f78 <_reclaim_reent+0x76> jal ra,1c003920 <_free_r> +1c003f7c <_reclaim_reent+0x7a> lw a1,52(s0) +1c003f7e <_reclaim_reent+0x7c> beqz a1,1c003f86 <_reclaim_reent+0x84> +1c003f80 <_reclaim_reent+0x7e> mv a0,s0 +1c003f82 <_reclaim_reent+0x80> jal ra,1c003920 <_free_r> +1c003f86 <_reclaim_reent+0x84> lw a5,24(s0) +1c003f88 <_reclaim_reent+0x86> beqz a5,1c003fcc <_reclaim_reent+0xca> +1c003f8a <_reclaim_reent+0x88> lw a5,40(s0) +1c003f8c <_reclaim_reent+0x8a> mv a0,s0 +1c003f8e <_reclaim_reent+0x8c> jalr a5 +1c003f90 <_reclaim_reent+0x8e> lw a1,72(s0) +1c003f92 <_reclaim_reent+0x90> beqz a1,1c003fcc <_reclaim_reent+0xca> +1c003f94 <_reclaim_reent+0x92> mv a0,s0 +1c003f96 <_reclaim_reent+0x94> lw s0,24(sp) +1c003f98 <_reclaim_reent+0x96> lw ra,28(sp) +1c003f9a <_reclaim_reent+0x98> lw s1,20(sp) +1c003f9c <_reclaim_reent+0x9a> lw s2,16(sp) +1c003f9e <_reclaim_reent+0x9c> lw s3,12(sp) +1c003fa0 <_reclaim_reent+0x9e> addi sp,sp,32 +1c003fa2 <_reclaim_reent+0xa0> j 1c003ee0 +1c003fa6 <_reclaim_reent+0xa4> add a1,a1,s1 +1c003fa8 <_reclaim_reent+0xa6> lw a1,0(a1) +1c003faa <_reclaim_reent+0xa8> bnez a1,1c003fbe <_reclaim_reent+0xbc> +1c003fac <_reclaim_reent+0xaa> addi s1,s1,4 +1c003fae <_reclaim_reent+0xac> lw a5,36(s0) +1c003fb0 <_reclaim_reent+0xae> lw a1,12(a5) +1c003fb2 <_reclaim_reent+0xb0> bne s1,s2,1c003fa6 <_reclaim_reent+0xa4> +1c003fb6 <_reclaim_reent+0xb4> mv a0,s0 +1c003fb8 <_reclaim_reent+0xb6> jal ra,1c003920 <_free_r> +1c003fbc <_reclaim_reent+0xba> j 1c003f2a <_reclaim_reent+0x28> +1c003fbe <_reclaim_reent+0xbc> lw s3,0(a1) +1c003fc2 <_reclaim_reent+0xc0> mv a0,s0 +1c003fc4 <_reclaim_reent+0xc2> jal ra,1c003920 <_free_r> +1c003fc8 <_reclaim_reent+0xc6> mv a1,s3 +1c003fca <_reclaim_reent+0xc8> j 1c003faa <_reclaim_reent+0xa8> +1c003fcc <_reclaim_reent+0xca> lw ra,28(sp) +1c003fce <_reclaim_reent+0xcc> lw s0,24(sp) +1c003fd0 <_reclaim_reent+0xce> lw s1,20(sp) +1c003fd2 <_reclaim_reent+0xd0> lw s2,16(sp) +1c003fd4 <_reclaim_reent+0xd2> lw s3,12(sp) +1c003fd6 <_reclaim_reent+0xd4> addi sp,sp,32 +1c003fd8 <_reclaim_reent+0xd6> ret +1c003fda <_reclaim_reent+0xd8> ret +_sbrk_r(): +1c003fdc <_sbrk_r> addi sp,sp,-16 +1c003fde <_sbrk_r+0x2> sw s0,8(sp) +1c003fe0 <_sbrk_r+0x4> sw s1,4(sp) +1c003fe2 <_sbrk_r+0x6> mv s0,a0 +1c003fe4 <_sbrk_r+0x8> mv a0,a1 +1c003fe6 <_sbrk_r+0xa> sw ra,12(sp) +1c003fe8 <_sbrk_r+0xc> sw zero,-576(gp) # 1c00919c +1c003fec <_sbrk_r+0x10> jal ra,1c002a3e <_sbrk> +1c003ff0 <_sbrk_r+0x14> li a5,-1 +1c003ff2 <_sbrk_r+0x16> bne a0,a5,1c003ffe <_sbrk_r+0x22> +1c003ff6 <_sbrk_r+0x1a> lw a5,-576(gp) # 1c00919c +1c003ffa <_sbrk_r+0x1e> beqz a5,1c003ffe <_sbrk_r+0x22> +1c003ffc <_sbrk_r+0x20> sw a5,0(s0) +1c003ffe <_sbrk_r+0x22> lw ra,12(sp) +1c004000 <_sbrk_r+0x24> lw s0,8(sp) +1c004002 <_sbrk_r+0x26> lw s1,4(sp) +1c004004 <_sbrk_r+0x28> addi sp,sp,16 +1c004006 <_sbrk_r+0x2a> ret +_raise_r(): +1c004008 <_raise_r> addi sp,sp,-32 +1c00400a <_raise_r+0x2> sw s0,24(sp) +1c00400c <_raise_r+0x4> sw ra,28(sp) +1c00400e <_raise_r+0x6> li a5,31 +1c004010 <_raise_r+0x8> mv s0,a0 +1c004012 <_raise_r+0xa> bgeu a5,a1,1c004024 <_raise_r+0x1c> +1c004016 <_raise_r+0xe> li a5,22 +1c004018 <_raise_r+0x10> sw a5,0(a0) +1c00401a <_raise_r+0x12> li a0,-1 +1c00401c <_raise_r+0x14> lw ra,28(sp) +1c00401e <_raise_r+0x16> lw s0,24(sp) +1c004020 <_raise_r+0x18> addi sp,sp,32 +1c004022 <_raise_r+0x1a> ret +1c004024 <_raise_r+0x1c> lw a5,68(a0) +1c004026 <_raise_r+0x1e> mv a2,a1 +1c004028 <_raise_r+0x20> beqz a5,1c004034 <_raise_r+0x2c> +1c00402a <_raise_r+0x22> slli a4,a1,0x2 +1c00402e <_raise_r+0x26> add a5,a5,a4 +1c004030 <_raise_r+0x28> lw a4,0(a5) +1c004032 <_raise_r+0x2a> bnez a4,1c004048 <_raise_r+0x40> +1c004034 <_raise_r+0x2c> mv a0,s0 +1c004036 <_raise_r+0x2e> sw a2,12(sp) +1c004038 <_raise_r+0x30> jal 1c0040a6 <_getpid_r> +1c00403a <_raise_r+0x32> mv a1,a0 +1c00403c <_raise_r+0x34> mv a0,s0 +1c00403e <_raise_r+0x36> lw s0,24(sp) +1c004040 <_raise_r+0x38> lw a2,12(sp) +1c004042 <_raise_r+0x3a> lw ra,28(sp) +1c004044 <_raise_r+0x3c> addi sp,sp,32 +1c004046 <_raise_r+0x3e> j 1c004078 <_kill_r> +1c004048 <_raise_r+0x40> li a3,1 +1c00404a <_raise_r+0x42> li a0,0 +1c00404c <_raise_r+0x44> beq a4,a3,1c00401c <_raise_r+0x14> +1c004050 <_raise_r+0x48> li a3,-1 +1c004052 <_raise_r+0x4a> bne a4,a3,1c00405e <_raise_r+0x56> +1c004056 <_raise_r+0x4e> li a5,22 +1c004058 <_raise_r+0x50> sw a5,0(s0) +1c00405a <_raise_r+0x52> li a0,1 +1c00405c <_raise_r+0x54> j 1c00401c <_raise_r+0x14> +1c00405e <_raise_r+0x56> mv a0,a1 +1c004060 <_raise_r+0x58> sw zero,0(a5) +1c004064 <_raise_r+0x5c> jalr a4 +1c004066 <_raise_r+0x5e> li a0,0 +1c004068 <_raise_r+0x60> j 1c00401c <_raise_r+0x14> +raise(): +1c00406a lui a5,0x1c009 +1c00406e mv a1,a0 +1c004070 lw a0,-956(a5) # 1c008c44 <_impure_ptr> +1c004074 j 1c004008 <_raise_r> +_kill_r(): +1c004078 <_kill_r> addi sp,sp,-16 +1c00407a <_kill_r+0x2> sw s0,8(sp) +1c00407c <_kill_r+0x4> sw s1,4(sp) +1c00407e <_kill_r+0x6> mv s0,a0 +1c004080 <_kill_r+0x8> mv a0,a1 +1c004082 <_kill_r+0xa> mv a1,a2 +1c004084 <_kill_r+0xc> sw ra,12(sp) +1c004086 <_kill_r+0xe> sw zero,-576(gp) # 1c00919c +1c00408a <_kill_r+0x12> jal ra,1c0029e0 <_kill> +1c00408e <_kill_r+0x16> li a5,-1 +1c004090 <_kill_r+0x18> bne a0,a5,1c00409c <_kill_r+0x24> +1c004094 <_kill_r+0x1c> lw a5,-576(gp) # 1c00919c +1c004098 <_kill_r+0x20> beqz a5,1c00409c <_kill_r+0x24> +1c00409a <_kill_r+0x22> sw a5,0(s0) +1c00409c <_kill_r+0x24> lw ra,12(sp) +1c00409e <_kill_r+0x26> lw s0,8(sp) +1c0040a0 <_kill_r+0x28> lw s1,4(sp) +1c0040a2 <_kill_r+0x2a> addi sp,sp,16 +1c0040a4 <_kill_r+0x2c> ret +_getpid_r(): +1c0040a6 <_getpid_r> j 1c0029d4 <_getpid> +__swbuf_r(): +1c0040aa <__swbuf_r> addi sp,sp,-32 +1c0040ac <__swbuf_r+0x2> sw s0,24(sp) +1c0040ae <__swbuf_r+0x4> sw s1,20(sp) +1c0040b0 <__swbuf_r+0x6> sw s2,16(sp) +1c0040b2 <__swbuf_r+0x8> sw ra,28(sp) +1c0040b4 <__swbuf_r+0xa> sw s3,12(sp) +1c0040b6 <__swbuf_r+0xc> mv s1,a0 +1c0040b8 <__swbuf_r+0xe> mv s2,a1 +1c0040ba <__swbuf_r+0x10> mv s0,a2 +1c0040bc <__swbuf_r+0x12> beqz a0,1c0040c4 <__swbuf_r+0x1a> +1c0040be <__swbuf_r+0x14> lw a5,24(a0) +1c0040c0 <__swbuf_r+0x16> bnez a5,1c0040c4 <__swbuf_r+0x1a> +1c0040c2 <__swbuf_r+0x18> jal 1c004624 <__sinit> +1c0040c4 <__swbuf_r+0x1a> lui a5,0x1c009 +1c0040c8 <__swbuf_r+0x1e> addi a5,a5,-1516 # 1c008a14 <__sf_fake_stdin> +1c0040cc <__swbuf_r+0x22> bne s0,a5,1c00413e <__swbuf_r+0x94> +1c0040d0 <__swbuf_r+0x26> lw s0,4(s1) +1c0040d2 <__swbuf_r+0x28> lw a5,24(s0) +1c0040d4 <__swbuf_r+0x2a> sw a5,8(s0) +1c0040d6 <__swbuf_r+0x2c> lhu a5,12(s0) +1c0040da <__swbuf_r+0x30> andi a5,a5,8 +1c0040dc <__swbuf_r+0x32> beqz a5,1c00415e <__swbuf_r+0xb4> +1c0040de <__swbuf_r+0x34> lw a5,16(s0) +1c0040e0 <__swbuf_r+0x36> beqz a5,1c00415e <__swbuf_r+0xb4> +1c0040e2 <__swbuf_r+0x38> lw a5,16(s0) +1c0040e4 <__swbuf_r+0x3a> lw a0,0(s0) +1c0040e6 <__swbuf_r+0x3c> andi s3,s2,255 +1c0040ea <__swbuf_r+0x40> andi s2,s2,255 +1c0040ee <__swbuf_r+0x44> sub a0,a0,a5 +1c0040f0 <__swbuf_r+0x46> lw a5,20(s0) +1c0040f2 <__swbuf_r+0x48> blt a0,a5,1c0040fe <__swbuf_r+0x54> +1c0040f6 <__swbuf_r+0x4c> mv a1,s0 +1c0040f8 <__swbuf_r+0x4e> mv a0,s1 +1c0040fa <__swbuf_r+0x50> jal 1c004502 <_fflush_r> +1c0040fc <__swbuf_r+0x52> bnez a0,1c004166 <__swbuf_r+0xbc> +1c0040fe <__swbuf_r+0x54> lw a5,8(s0) +1c004100 <__swbuf_r+0x56> addi a0,a0,1 +1c004102 <__swbuf_r+0x58> addi a5,a5,-1 +1c004104 <__swbuf_r+0x5a> sw a5,8(s0) +1c004106 <__swbuf_r+0x5c> lw a5,0(s0) +1c004108 <__swbuf_r+0x5e> addi a4,a5,1 +1c00410c <__swbuf_r+0x62> sw a4,0(s0) +1c00410e <__swbuf_r+0x64> sb s3,0(a5) +1c004112 <__swbuf_r+0x68> lw a5,20(s0) +1c004114 <__swbuf_r+0x6a> beq a5,a0,1c004126 <__swbuf_r+0x7c> +1c004118 <__swbuf_r+0x6e> lhu a5,12(s0) +1c00411c <__swbuf_r+0x72> andi a5,a5,1 +1c00411e <__swbuf_r+0x74> beqz a5,1c00412e <__swbuf_r+0x84> +1c004120 <__swbuf_r+0x76> li a5,10 +1c004122 <__swbuf_r+0x78> bne s2,a5,1c00412e <__swbuf_r+0x84> +1c004126 <__swbuf_r+0x7c> mv a1,s0 +1c004128 <__swbuf_r+0x7e> mv a0,s1 +1c00412a <__swbuf_r+0x80> jal 1c004502 <_fflush_r> +1c00412c <__swbuf_r+0x82> bnez a0,1c004166 <__swbuf_r+0xbc> +1c00412e <__swbuf_r+0x84> lw ra,28(sp) +1c004130 <__swbuf_r+0x86> lw s0,24(sp) +1c004132 <__swbuf_r+0x88> lw s1,20(sp) +1c004134 <__swbuf_r+0x8a> lw s3,12(sp) +1c004136 <__swbuf_r+0x8c> mv a0,s2 +1c004138 <__swbuf_r+0x8e> lw s2,16(sp) +1c00413a <__swbuf_r+0x90> addi sp,sp,32 +1c00413c <__swbuf_r+0x92> ret +1c00413e <__swbuf_r+0x94> lui a5,0x1c009 +1c004142 <__swbuf_r+0x98> addi a5,a5,-1484 # 1c008a34 <__sf_fake_stdout> +1c004146 <__swbuf_r+0x9c> bne s0,a5,1c00414e <__swbuf_r+0xa4> +1c00414a <__swbuf_r+0xa0> lw s0,8(s1) +1c00414c <__swbuf_r+0xa2> j 1c0040d2 <__swbuf_r+0x28> +1c00414e <__swbuf_r+0xa4> lui a5,0x1c009 +1c004152 <__swbuf_r+0xa8> addi a5,a5,-1548 # 1c0089f4 <__sf_fake_stderr> +1c004156 <__swbuf_r+0xac> bne s0,a5,1c0040d2 <__swbuf_r+0x28> +1c00415a <__swbuf_r+0xb0> lw s0,12(s1) +1c00415c <__swbuf_r+0xb2> j 1c0040d2 <__swbuf_r+0x28> +1c00415e <__swbuf_r+0xb4> mv a1,s0 +1c004160 <__swbuf_r+0xb6> mv a0,s1 +1c004162 <__swbuf_r+0xb8> jal 1c00416a <__swsetup_r> +1c004164 <__swbuf_r+0xba> beqz a0,1c0040e2 <__swbuf_r+0x38> +1c004166 <__swbuf_r+0xbc> li s2,-1 +1c004168 <__swbuf_r+0xbe> j 1c00412e <__swbuf_r+0x84> +__swsetup_r(): +1c00416a <__swsetup_r> addi sp,sp,-16 +1c00416c <__swsetup_r+0x2> lui a5,0x1c009 +1c004170 <__swsetup_r+0x6> sw s1,4(sp) +1c004172 <__swsetup_r+0x8> lw s1,-956(a5) # 1c008c44 <_impure_ptr> +1c004176 <__swsetup_r+0xc> sw s0,8(sp) +1c004178 <__swsetup_r+0xe> sw s2,0(sp) +1c00417a <__swsetup_r+0x10> sw ra,12(sp) +1c00417c <__swsetup_r+0x12> mv s2,a0 +1c00417e <__swsetup_r+0x14> mv s0,a1 +1c004180 <__swsetup_r+0x16> beqz s1,1c00418a <__swsetup_r+0x20> +1c004182 <__swsetup_r+0x18> lw a5,24(s1) +1c004184 <__swsetup_r+0x1a> bnez a5,1c00418a <__swsetup_r+0x20> +1c004186 <__swsetup_r+0x1c> mv a0,s1 +1c004188 <__swsetup_r+0x1e> jal 1c004624 <__sinit> +1c00418a <__swsetup_r+0x20> lui a5,0x1c009 +1c00418e <__swsetup_r+0x24> addi a5,a5,-1516 # 1c008a14 <__sf_fake_stdin> +1c004192 <__swsetup_r+0x28> bne s0,a5,1c0041c0 <__swsetup_r+0x56> +1c004196 <__swsetup_r+0x2c> lw s0,4(s1) +1c004198 <__swsetup_r+0x2e> lh a5,12(s0) +1c00419c <__swsetup_r+0x32> slli a4,a5,0x10 +1c0041a0 <__swsetup_r+0x36> andi a3,a5,8 +1c0041a4 <__swsetup_r+0x3a> srli a4,a4,0x10 +1c0041a6 <__swsetup_r+0x3c> bnez a3,1c00421a <__swsetup_r+0xb0> +1c0041a8 <__swsetup_r+0x3e> andi a3,a4,16 +1c0041ac <__swsetup_r+0x42> bnez a3,1c0041e0 <__swsetup_r+0x76> +1c0041ae <__swsetup_r+0x44> li a4,9 +1c0041b0 <__swsetup_r+0x46> sw a4,0(s2) +1c0041b4 <__swsetup_r+0x4a> ori a5,a5,64 +1c0041b8 <__swsetup_r+0x4e> sh a5,12(s0) +1c0041bc <__swsetup_r+0x52> li a0,-1 +1c0041be <__swsetup_r+0x54> j 1c00425c <__swsetup_r+0xf2> +1c0041c0 <__swsetup_r+0x56> lui a5,0x1c009 +1c0041c4 <__swsetup_r+0x5a> addi a5,a5,-1484 # 1c008a34 <__sf_fake_stdout> +1c0041c8 <__swsetup_r+0x5e> bne s0,a5,1c0041d0 <__swsetup_r+0x66> +1c0041cc <__swsetup_r+0x62> lw s0,8(s1) +1c0041ce <__swsetup_r+0x64> j 1c004198 <__swsetup_r+0x2e> +1c0041d0 <__swsetup_r+0x66> lui a5,0x1c009 +1c0041d4 <__swsetup_r+0x6a> addi a5,a5,-1548 # 1c0089f4 <__sf_fake_stderr> +1c0041d8 <__swsetup_r+0x6e> bne s0,a5,1c004198 <__swsetup_r+0x2e> +1c0041dc <__swsetup_r+0x72> lw s0,12(s1) +1c0041de <__swsetup_r+0x74> j 1c004198 <__swsetup_r+0x2e> +1c0041e0 <__swsetup_r+0x76> andi a4,a4,4 +1c0041e2 <__swsetup_r+0x78> beqz a4,1c00420e <__swsetup_r+0xa4> +1c0041e4 <__swsetup_r+0x7a> lw a1,52(s0) +1c0041e6 <__swsetup_r+0x7c> beqz a1,1c0041fa <__swsetup_r+0x90> +1c0041e8 <__swsetup_r+0x7e> addi a5,s0,68 +1c0041ec <__swsetup_r+0x82> beq a1,a5,1c0041f6 <__swsetup_r+0x8c> +1c0041f0 <__swsetup_r+0x86> mv a0,s2 +1c0041f2 <__swsetup_r+0x88> jal ra,1c003920 <_free_r> +1c0041f6 <__swsetup_r+0x8c> sw zero,52(s0) +1c0041fa <__swsetup_r+0x90> lhu a5,12(s0) +1c0041fe <__swsetup_r+0x94> sw zero,4(s0) +1c004202 <__swsetup_r+0x98> andi a5,a5,-37 +1c004206 <__swsetup_r+0x9c> sh a5,12(s0) +1c00420a <__swsetup_r+0xa0> lw a5,16(s0) +1c00420c <__swsetup_r+0xa2> sw a5,0(s0) +1c00420e <__swsetup_r+0xa4> lhu a5,12(s0) +1c004212 <__swsetup_r+0xa8> ori a5,a5,8 +1c004216 <__swsetup_r+0xac> sh a5,12(s0) +1c00421a <__swsetup_r+0xb0> lw a5,16(s0) +1c00421c <__swsetup_r+0xb2> bnez a5,1c004234 <__swsetup_r+0xca> +1c00421e <__swsetup_r+0xb4> lhu a5,12(s0) +1c004222 <__swsetup_r+0xb8> li a4,512 +1c004226 <__swsetup_r+0xbc> andi a5,a5,640 +1c00422a <__swsetup_r+0xc0> beq a5,a4,1c004234 <__swsetup_r+0xca> +1c00422e <__swsetup_r+0xc4> mv a1,s0 +1c004230 <__swsetup_r+0xc6> mv a0,s2 +1c004232 <__swsetup_r+0xc8> jal 1c0047fa <__smakebuf_r> +1c004234 <__swsetup_r+0xca> lh a5,12(s0) +1c004238 <__swsetup_r+0xce> slli a4,a5,0x10 +1c00423c <__swsetup_r+0xd2> andi a3,a5,1 +1c004240 <__swsetup_r+0xd6> srli a4,a4,0x10 +1c004242 <__swsetup_r+0xd8> beqz a3,1c004268 <__swsetup_r+0xfe> +1c004244 <__swsetup_r+0xda> lw a3,20(s0) +1c004246 <__swsetup_r+0xdc> sw zero,8(s0) +1c00424a <__swsetup_r+0xe0> neg a3,a3 +1c00424e <__swsetup_r+0xe4> sw a3,24(s0) +1c004250 <__swsetup_r+0xe6> lw a3,16(s0) +1c004252 <__swsetup_r+0xe8> li a0,0 +1c004254 <__swsetup_r+0xea> bnez a3,1c00425c <__swsetup_r+0xf2> +1c004256 <__swsetup_r+0xec> andi a4,a4,128 +1c00425a <__swsetup_r+0xf0> bnez a4,1c0041b4 <__swsetup_r+0x4a> +1c00425c <__swsetup_r+0xf2> lw ra,12(sp) +1c00425e <__swsetup_r+0xf4> lw s0,8(sp) +1c004260 <__swsetup_r+0xf6> lw s1,4(sp) +1c004262 <__swsetup_r+0xf8> lw s2,0(sp) +1c004264 <__swsetup_r+0xfa> addi sp,sp,16 +1c004266 <__swsetup_r+0xfc> ret +1c004268 <__swsetup_r+0xfe> andi a3,a4,2 +1c00426c <__swsetup_r+0x102> li a2,0 +1c00426e <__swsetup_r+0x104> bnez a3,1c004272 <__swsetup_r+0x108> +1c004270 <__swsetup_r+0x106> lw a2,20(s0) +1c004272 <__swsetup_r+0x108> sw a2,8(s0) +1c004274 <__swsetup_r+0x10a> j 1c004250 <__swsetup_r+0xe6> +__register_exitproc(): +1c004276 <__register_exitproc> lw a5,-572(gp) # 1c0091a0 <_global_atexit> +1c00427a <__register_exitproc+0x4> mv a7,a0 +1c00427c <__register_exitproc+0x6> bnez a5,1c00429e <__register_exitproc+0x28> +1c00427e <__register_exitproc+0x8> addi a0,gp,-824 # 1c0090a4 <_global_atexit0> +1c004282 <__register_exitproc+0xc> sw a0,-572(gp) # 1c0091a0 <_global_atexit> +1c004286 <__register_exitproc+0x10> li t1,0 +1c00428a <__register_exitproc+0x14> addi a5,gp,-824 # 1c0090a4 <_global_atexit0> +1c00428e <__register_exitproc+0x18> beqz t1,1c00429e <__register_exitproc+0x28> +1c004292 <__register_exitproc+0x1c> lw a5,0(zero) # 00000000 <__heap_size> +1c004296 <__register_exitproc+0x20> sw a5,136(a0) +1c00429a <__register_exitproc+0x24> addi a5,gp,-824 # 1c0090a4 <_global_atexit0> +1c00429e <__register_exitproc+0x28> lw a4,4(a5) +1c0042a0 <__register_exitproc+0x2a> li a6,31 +1c0042a2 <__register_exitproc+0x2c> li a0,-1 +1c0042a4 <__register_exitproc+0x2e> blt a6,a4,1c0042f0 <__register_exitproc+0x7a> +1c0042a8 <__register_exitproc+0x32> beqz a7,1c0042e2 <__register_exitproc+0x6c> +1c0042ac <__register_exitproc+0x36> lw a6,136(a5) +1c0042b0 <__register_exitproc+0x3a> beqz a6,1c0042f0 <__register_exitproc+0x7a> +1c0042b4 <__register_exitproc+0x3e> slli a0,a4,0x2 +1c0042b8 <__register_exitproc+0x42> add a0,a0,a6 +1c0042ba <__register_exitproc+0x44> sw a2,0(a0) +1c0042bc <__register_exitproc+0x46> lw t1,256(a6) +1c0042c0 <__register_exitproc+0x4a> li a2,1 +1c0042c2 <__register_exitproc+0x4c> sll a2,a2,a4 +1c0042c6 <__register_exitproc+0x50> or t1,t1,a2 +1c0042ca <__register_exitproc+0x54> sw t1,256(a6) +1c0042ce <__register_exitproc+0x58> sw a3,128(a0) +1c0042d2 <__register_exitproc+0x5c> li a3,2 +1c0042d4 <__register_exitproc+0x5e> bne a7,a3,1c0042e2 <__register_exitproc+0x6c> +1c0042d8 <__register_exitproc+0x62> lw a3,260(a6) +1c0042dc <__register_exitproc+0x66> or a2,a2,a3 +1c0042de <__register_exitproc+0x68> sw a2,260(a6) +1c0042e2 <__register_exitproc+0x6c> addi a3,a4,1 +1c0042e6 <__register_exitproc+0x70> slli a4,a4,0x2 +1c0042e8 <__register_exitproc+0x72> sw a3,4(a5) +1c0042ea <__register_exitproc+0x74> add a5,a5,a4 +1c0042ec <__register_exitproc+0x76> sw a1,8(a5) +1c0042ee <__register_exitproc+0x78> li a0,0 +1c0042f0 <__register_exitproc+0x7a> ret +__call_exitprocs(): +1c0042f2 <__call_exitprocs> addi sp,sp,-48 +1c0042f4 <__call_exitprocs+0x2> sw s5,20(sp) +1c0042f6 <__call_exitprocs+0x4> sw s6,16(sp) +1c0042f8 <__call_exitprocs+0x6> sw s7,12(sp) +1c0042fa <__call_exitprocs+0x8> sw s9,4(sp) +1c0042fc <__call_exitprocs+0xa> sw ra,44(sp) +1c0042fe <__call_exitprocs+0xc> sw s0,40(sp) +1c004300 <__call_exitprocs+0xe> sw s1,36(sp) +1c004302 <__call_exitprocs+0x10> sw s2,32(sp) +1c004304 <__call_exitprocs+0x12> sw s3,28(sp) +1c004306 <__call_exitprocs+0x14> sw s4,24(sp) +1c004308 <__call_exitprocs+0x16> sw s8,8(sp) +1c00430a <__call_exitprocs+0x18> sw s10,0(sp) +1c00430c <__call_exitprocs+0x1a> mv s6,a0 +1c00430e <__call_exitprocs+0x1c> mv s5,a1 +1c004310 <__call_exitprocs+0x1e> li s9,1 +1c004312 <__call_exitprocs+0x20> lw s1,-572(gp) # 1c0091a0 <_global_atexit> +1c004316 <__call_exitprocs+0x24> addi s8,gp,-572 # 1c0091a0 <_global_atexit> +1c00431a <__call_exitprocs+0x28> beqz s1,1c004332 <__call_exitprocs+0x40> +1c00431c <__call_exitprocs+0x2a> lw s0,4(s1) +1c00431e <__call_exitprocs+0x2c> lw s3,136(s1) +1c004322 <__call_exitprocs+0x30> addi s2,s0,-1 +1c004326 <__call_exitprocs+0x34> slli s0,s0,0x2 +1c004328 <__call_exitprocs+0x36> add s4,s3,s0 +1c00432c <__call_exitprocs+0x3a> add s0,s0,s1 +1c00432e <__call_exitprocs+0x3c> bgez s2,1c00434e <__call_exitprocs+0x5c> +1c004332 <__call_exitprocs+0x40> lw ra,44(sp) +1c004334 <__call_exitprocs+0x42> lw s0,40(sp) +1c004336 <__call_exitprocs+0x44> lw s1,36(sp) +1c004338 <__call_exitprocs+0x46> lw s2,32(sp) +1c00433a <__call_exitprocs+0x48> lw s3,28(sp) +1c00433c <__call_exitprocs+0x4a> lw s4,24(sp) +1c00433e <__call_exitprocs+0x4c> lw s5,20(sp) +1c004340 <__call_exitprocs+0x4e> lw s6,16(sp) +1c004342 <__call_exitprocs+0x50> lw s7,12(sp) +1c004344 <__call_exitprocs+0x52> lw s8,8(sp) +1c004346 <__call_exitprocs+0x54> lw s9,4(sp) +1c004348 <__call_exitprocs+0x56> lw s10,0(sp) +1c00434a <__call_exitprocs+0x58> addi sp,sp,48 +1c00434c <__call_exitprocs+0x5a> ret +1c00434e <__call_exitprocs+0x5c> beqz s5,1c004366 <__call_exitprocs+0x74> +1c004352 <__call_exitprocs+0x60> bnez s3,1c00435e <__call_exitprocs+0x6c> +1c004356 <__call_exitprocs+0x64> addi s2,s2,-1 +1c004358 <__call_exitprocs+0x66> addi s4,s4,-4 +1c00435a <__call_exitprocs+0x68> addi s0,s0,-4 +1c00435c <__call_exitprocs+0x6a> j 1c00432e <__call_exitprocs+0x3c> +1c00435e <__call_exitprocs+0x6c> lw a5,124(s4) +1c004362 <__call_exitprocs+0x70> bne a5,s5,1c004356 <__call_exitprocs+0x64> +1c004366 <__call_exitprocs+0x74> lw a4,4(s1) +1c004368 <__call_exitprocs+0x76> lw a5,4(s0) +1c00436a <__call_exitprocs+0x78> addi a4,a4,-1 +1c00436c <__call_exitprocs+0x7a> bne a4,s2,1c00439c <__call_exitprocs+0xaa> +1c004370 <__call_exitprocs+0x7e> sw s2,4(s1) +1c004374 <__call_exitprocs+0x82> beqz a5,1c004356 <__call_exitprocs+0x64> +1c004376 <__call_exitprocs+0x84> lw s10,4(s1) +1c00437a <__call_exitprocs+0x88> beqz s3,1c00438a <__call_exitprocs+0x98> +1c00437e <__call_exitprocs+0x8c> lw a3,256(s3) +1c004382 <__call_exitprocs+0x90> sll a4,s9,s2 +1c004386 <__call_exitprocs+0x94> and a3,a3,a4 +1c004388 <__call_exitprocs+0x96> bnez a3,1c0043a2 <__call_exitprocs+0xb0> +1c00438a <__call_exitprocs+0x98> jalr a5 +1c00438c <__call_exitprocs+0x9a> lw a4,4(s1) +1c00438e <__call_exitprocs+0x9c> lw a5,0(s8) +1c004392 <__call_exitprocs+0xa0> bne a4,s10,1c004312 <__call_exitprocs+0x20> +1c004396 <__call_exitprocs+0xa4> beq s1,a5,1c004356 <__call_exitprocs+0x64> +1c00439a <__call_exitprocs+0xa8> j 1c004312 <__call_exitprocs+0x20> +1c00439c <__call_exitprocs+0xaa> sw zero,4(s0) +1c0043a0 <__call_exitprocs+0xae> j 1c004374 <__call_exitprocs+0x82> +1c0043a2 <__call_exitprocs+0xb0> lw a3,260(s3) +1c0043a6 <__call_exitprocs+0xb4> lw a1,-4(s4) +1c0043aa <__call_exitprocs+0xb8> and a4,a4,a3 +1c0043ac <__call_exitprocs+0xba> bnez a4,1c0043b4 <__call_exitprocs+0xc2> +1c0043ae <__call_exitprocs+0xbc> mv a0,s6 +1c0043b0 <__call_exitprocs+0xbe> jalr a5 +1c0043b2 <__call_exitprocs+0xc0> j 1c00438c <__call_exitprocs+0x9a> +1c0043b4 <__call_exitprocs+0xc2> mv a0,a1 +1c0043b6 <__call_exitprocs+0xc4> jalr a5 +1c0043b8 <__call_exitprocs+0xc6> j 1c00438c <__call_exitprocs+0x9a> +__sflush_r(): +1c0043ba <__sflush_r> lhu a5,12(a1) +1c0043be <__sflush_r+0x4> addi sp,sp,-32 +1c0043c0 <__sflush_r+0x6> sw s0,24(sp) +1c0043c2 <__sflush_r+0x8> sw s1,20(sp) +1c0043c4 <__sflush_r+0xa> sw ra,28(sp) +1c0043c6 <__sflush_r+0xc> sw s2,16(sp) +1c0043c8 <__sflush_r+0xe> sw s3,12(sp) +1c0043ca <__sflush_r+0x10> andi a4,a5,8 +1c0043ce <__sflush_r+0x14> mv s1,a0 +1c0043d0 <__sflush_r+0x16> mv s0,a1 +1c0043d2 <__sflush_r+0x18> bnez a4,1c0044b8 <__sflush_r+0xfe> +1c0043d4 <__sflush_r+0x1a> lw a4,4(a1) +1c0043d6 <__sflush_r+0x1c> bgtz a4,1c0043e4 <__sflush_r+0x2a> +1c0043da <__sflush_r+0x20> lw a4,64(a1) +1c0043dc <__sflush_r+0x22> bgtz a4,1c0043e4 <__sflush_r+0x2a> +1c0043e0 <__sflush_r+0x26> li a0,0 +1c0043e2 <__sflush_r+0x28> j 1c0044a0 <__sflush_r+0xe6> +1c0043e4 <__sflush_r+0x2a> lw a4,44(s0) +1c0043e6 <__sflush_r+0x2c> beqz a4,1c0043e0 <__sflush_r+0x26> +1c0043e8 <__sflush_r+0x2e> lui a3,0x1 +1c0043ea <__sflush_r+0x30> lw s2,0(s1) +1c0043ee <__sflush_r+0x34> and a5,a5,a3 +1c0043f0 <__sflush_r+0x36> sw zero,0(s1) +1c0043f4 <__sflush_r+0x3a> beqz a5,1c00446e <__sflush_r+0xb4> +1c0043f6 <__sflush_r+0x3c> lw a0,84(s0) +1c0043f8 <__sflush_r+0x3e> lhu a5,12(s0) +1c0043fc <__sflush_r+0x42> andi a5,a5,4 +1c0043fe <__sflush_r+0x44> beqz a5,1c00440c <__sflush_r+0x52> +1c004400 <__sflush_r+0x46> lw a5,4(s0) +1c004402 <__sflush_r+0x48> sub a0,a0,a5 +1c004404 <__sflush_r+0x4a> lw a5,52(s0) +1c004406 <__sflush_r+0x4c> beqz a5,1c00440c <__sflush_r+0x52> +1c004408 <__sflush_r+0x4e> lw a5,64(s0) +1c00440a <__sflush_r+0x50> sub a0,a0,a5 +1c00440c <__sflush_r+0x52> lw a5,44(s0) +1c00440e <__sflush_r+0x54> lw a1,32(s0) +1c004410 <__sflush_r+0x56> mv a2,a0 +1c004412 <__sflush_r+0x58> li a3,0 +1c004414 <__sflush_r+0x5a> mv a0,s1 +1c004416 <__sflush_r+0x5c> jalr a5 +1c004418 <__sflush_r+0x5e> li a5,-1 +1c00441a <__sflush_r+0x60> lhu a4,12(s0) +1c00441e <__sflush_r+0x64> bne a0,a5,1c004438 <__sflush_r+0x7e> +1c004422 <__sflush_r+0x68> lw a3,0(s1) +1c004424 <__sflush_r+0x6a> li a5,29 +1c004426 <__sflush_r+0x6c> bltu a5,a3,1c0044ae <__sflush_r+0xf4> +1c00442a <__sflush_r+0x70> lui a5,0x20400 +1c00442e <__sflush_r+0x74> addi a5,a5,1 +1c004430 <__sflush_r+0x76> srl a5,a5,a3 +1c004434 <__sflush_r+0x7a> andi a5,a5,1 +1c004436 <__sflush_r+0x7c> beqz a5,1c0044ae <__sflush_r+0xf4> +1c004438 <__sflush_r+0x7e> lw a5,16(s0) +1c00443a <__sflush_r+0x80> sw zero,4(s0) +1c00443e <__sflush_r+0x84> sw a5,0(s0) +1c004440 <__sflush_r+0x86> lui a5,0x1 +1c004442 <__sflush_r+0x88> and a4,a4,a5 +1c004444 <__sflush_r+0x8a> beqz a4,1c004452 <__sflush_r+0x98> +1c004446 <__sflush_r+0x8c> li a5,-1 +1c004448 <__sflush_r+0x8e> bne a0,a5,1c004450 <__sflush_r+0x96> +1c00444c <__sflush_r+0x92> lw a5,0(s1) +1c00444e <__sflush_r+0x94> bnez a5,1c004452 <__sflush_r+0x98> +1c004450 <__sflush_r+0x96> sw a0,84(s0) +1c004452 <__sflush_r+0x98> lw a1,52(s0) +1c004454 <__sflush_r+0x9a> sw s2,0(s1) +1c004458 <__sflush_r+0x9e> beqz a1,1c0043e0 <__sflush_r+0x26> +1c00445a <__sflush_r+0xa0> addi a5,s0,68 +1c00445e <__sflush_r+0xa4> beq a1,a5,1c004468 <__sflush_r+0xae> +1c004462 <__sflush_r+0xa8> mv a0,s1 +1c004464 <__sflush_r+0xaa> jal ra,1c003920 <_free_r> +1c004468 <__sflush_r+0xae> sw zero,52(s0) +1c00446c <__sflush_r+0xb2> j 1c0043e0 <__sflush_r+0x26> +1c00446e <__sflush_r+0xb4> lw a1,32(s0) +1c004470 <__sflush_r+0xb6> li a3,1 +1c004472 <__sflush_r+0xb8> li a2,0 +1c004474 <__sflush_r+0xba> mv a0,s1 +1c004476 <__sflush_r+0xbc> jalr a4 +1c004478 <__sflush_r+0xbe> li a5,-1 +1c00447a <__sflush_r+0xc0> bne a0,a5,1c0043f8 <__sflush_r+0x3e> +1c00447e <__sflush_r+0xc4> lw a5,0(s1) +1c004480 <__sflush_r+0xc6> beqz a5,1c0043f8 <__sflush_r+0x3e> +1c004482 <__sflush_r+0xc8> li a4,29 +1c004484 <__sflush_r+0xca> beq a5,a4,1c00448e <__sflush_r+0xd4> +1c004488 <__sflush_r+0xce> li a4,22 +1c00448a <__sflush_r+0xd0> bne a5,a4,1c004494 <__sflush_r+0xda> +1c00448e <__sflush_r+0xd4> sw s2,0(s1) +1c004492 <__sflush_r+0xd8> j 1c0043e0 <__sflush_r+0x26> +1c004494 <__sflush_r+0xda> lhu a5,12(s0) +1c004498 <__sflush_r+0xde> ori a5,a5,64 +1c00449c <__sflush_r+0xe2> sh a5,12(s0) +1c0044a0 <__sflush_r+0xe6> lw ra,28(sp) +1c0044a2 <__sflush_r+0xe8> lw s0,24(sp) +1c0044a4 <__sflush_r+0xea> lw s1,20(sp) +1c0044a6 <__sflush_r+0xec> lw s2,16(sp) +1c0044a8 <__sflush_r+0xee> lw s3,12(sp) +1c0044aa <__sflush_r+0xf0> addi sp,sp,32 +1c0044ac <__sflush_r+0xf2> ret +1c0044ae <__sflush_r+0xf4> ori a4,a4,64 +1c0044b2 <__sflush_r+0xf8> sh a4,12(s0) +1c0044b6 <__sflush_r+0xfc> j 1c0044a0 <__sflush_r+0xe6> +1c0044b8 <__sflush_r+0xfe> lw s3,16(a1) +1c0044bc <__sflush_r+0x102> beqz s3,1c0043e0 <__sflush_r+0x26> +1c0044c0 <__sflush_r+0x106> lw s2,0(a1) +1c0044c4 <__sflush_r+0x10a> andi a5,a5,3 +1c0044c6 <__sflush_r+0x10c> sw s3,0(a1) +1c0044ca <__sflush_r+0x110> sub s2,s2,s3 +1c0044ce <__sflush_r+0x114> li a4,0 +1c0044d0 <__sflush_r+0x116> bnez a5,1c0044d4 <__sflush_r+0x11a> +1c0044d2 <__sflush_r+0x118> lw a4,20(a1) +1c0044d4 <__sflush_r+0x11a> sw a4,8(s0) +1c0044d6 <__sflush_r+0x11c> blez s2,1c0043e0 <__sflush_r+0x26> +1c0044da <__sflush_r+0x120> lw a5,40(s0) +1c0044dc <__sflush_r+0x122> lw a1,32(s0) +1c0044de <__sflush_r+0x124> mv a3,s2 +1c0044e0 <__sflush_r+0x126> mv a2,s3 +1c0044e2 <__sflush_r+0x128> mv a0,s1 +1c0044e4 <__sflush_r+0x12a> jalr a5 +1c0044e6 <__sflush_r+0x12c> bgtz a0,1c0044fa <__sflush_r+0x140> +1c0044ea <__sflush_r+0x130> lhu a5,12(s0) +1c0044ee <__sflush_r+0x134> li a0,-1 +1c0044f0 <__sflush_r+0x136> ori a5,a5,64 +1c0044f4 <__sflush_r+0x13a> sh a5,12(s0) +1c0044f8 <__sflush_r+0x13e> j 1c0044a0 <__sflush_r+0xe6> +1c0044fa <__sflush_r+0x140> add s3,s3,a0 +1c0044fc <__sflush_r+0x142> sub s2,s2,a0 +1c004500 <__sflush_r+0x146> j 1c0044d6 <__sflush_r+0x11c> +_fflush_r(): +1c004502 <_fflush_r> lw a5,16(a1) +1c004504 <_fflush_r+0x2> beqz a5,1c004564 <_fflush_r+0x62> +1c004506 <_fflush_r+0x4> addi sp,sp,-32 +1c004508 <_fflush_r+0x6> sw s0,24(sp) +1c00450a <_fflush_r+0x8> sw ra,28(sp) +1c00450c <_fflush_r+0xa> mv s0,a0 +1c00450e <_fflush_r+0xc> beqz a0,1c00451a <_fflush_r+0x18> +1c004510 <_fflush_r+0xe> lw a5,24(a0) +1c004512 <_fflush_r+0x10> bnez a5,1c00451a <_fflush_r+0x18> +1c004514 <_fflush_r+0x12> sw a1,12(sp) +1c004516 <_fflush_r+0x14> jal 1c004624 <__sinit> +1c004518 <_fflush_r+0x16> lw a1,12(sp) +1c00451a <_fflush_r+0x18> lui a5,0x1c009 +1c00451e <_fflush_r+0x1c> addi a5,a5,-1516 # 1c008a14 <__sf_fake_stdin> +1c004522 <_fflush_r+0x20> bne a1,a5,1c00453a <_fflush_r+0x38> +1c004526 <_fflush_r+0x24> lw a1,4(s0) +1c004528 <_fflush_r+0x26> lh a5,12(a1) +1c00452c <_fflush_r+0x2a> beqz a5,1c00455a <_fflush_r+0x58> +1c00452e <_fflush_r+0x2c> mv a0,s0 +1c004530 <_fflush_r+0x2e> lw s0,24(sp) +1c004532 <_fflush_r+0x30> lw ra,28(sp) +1c004534 <_fflush_r+0x32> addi sp,sp,32 +1c004536 <_fflush_r+0x34> j 1c0043ba <__sflush_r> +1c00453a <_fflush_r+0x38> lui a5,0x1c009 +1c00453e <_fflush_r+0x3c> addi a5,a5,-1484 # 1c008a34 <__sf_fake_stdout> +1c004542 <_fflush_r+0x40> bne a1,a5,1c00454a <_fflush_r+0x48> +1c004546 <_fflush_r+0x44> lw a1,8(s0) +1c004548 <_fflush_r+0x46> j 1c004528 <_fflush_r+0x26> +1c00454a <_fflush_r+0x48> lui a5,0x1c009 +1c00454e <_fflush_r+0x4c> addi a5,a5,-1548 # 1c0089f4 <__sf_fake_stderr> +1c004552 <_fflush_r+0x50> bne a1,a5,1c004528 <_fflush_r+0x26> +1c004556 <_fflush_r+0x54> lw a1,12(s0) +1c004558 <_fflush_r+0x56> j 1c004528 <_fflush_r+0x26> +1c00455a <_fflush_r+0x58> lw ra,28(sp) +1c00455c <_fflush_r+0x5a> lw s0,24(sp) +1c00455e <_fflush_r+0x5c> li a0,0 +1c004560 <_fflush_r+0x5e> addi sp,sp,32 +1c004562 <_fflush_r+0x60> ret +1c004564 <_fflush_r+0x62> li a0,0 +1c004566 <_fflush_r+0x64> ret +std(): +1c004568 addi sp,sp,-16 +1c00456a sw s0,8(sp) +1c00456c sw ra,12(sp) +1c00456e mv s0,a0 +1c004570 sh a1,12(a0) +1c004574 sh a2,14(a0) +1c004578 sw zero,0(a0) +1c00457c sw zero,4(a0) +1c004580 sw zero,8(a0) +1c004584 sw zero,100(a0) +1c004588 sw zero,16(a0) +1c00458c sw zero,20(a0) +1c004590 sw zero,24(a0) +1c004594 li a2,8 +1c004596 li a1,0 +1c004598 addi a0,a0,92 +1c00459c jal ra,1c000e7a +1c0045a0 lui a5,0x1c005 +1c0045a4 addi a5,a5,-978 # 1c004c2e <__sread> +1c0045a8 sw a5,36(s0) +1c0045aa lui a5,0x1c005 +1c0045ae addi a5,a5,-930 # 1c004c5e <__swrite> +1c0045b2 sw a5,40(s0) +1c0045b4 lui a5,0x1c005 +1c0045b8 addi a5,a5,-852 # 1c004cac <__sseek> +1c0045bc sw a5,44(s0) +1c0045be lui a5,0x1c005 +1c0045c2 addi a5,a5,-798 # 1c004ce2 <__sclose> +1c0045c6 lw ra,12(sp) +1c0045c8 sw s0,32(s0) +1c0045ca sw a5,48(s0) +1c0045cc lw s0,8(sp) +1c0045ce addi sp,sp,16 +1c0045d0 ret +_cleanup_r(): +1c0045d2 <_cleanup_r> lui a1,0x1c004 +1c0045d6 <_cleanup_r+0x4> addi a1,a1,1282 # 1c004502 <_fflush_r> +1c0045da <_cleanup_r+0x8> j 1c004736 <_fwalk_reent> +__sfmoreglue(): +1c0045dc <__sfmoreglue> addi sp,sp,-16 +1c0045de <__sfmoreglue+0x2> sw s1,4(sp) +1c0045e0 <__sfmoreglue+0x4> li a2,104 +1c0045e4 <__sfmoreglue+0x8> addi s1,a1,-1 +1c0045e8 <__sfmoreglue+0xc> mul s1,s1,a2 +1c0045ec <__sfmoreglue+0x10> sw s2,0(sp) +1c0045ee <__sfmoreglue+0x12> mv s2,a1 +1c0045f0 <__sfmoreglue+0x14> sw s0,8(sp) +1c0045f2 <__sfmoreglue+0x16> sw ra,12(sp) +1c0045f4 <__sfmoreglue+0x18> addi a1,s1,116 +1c0045f8 <__sfmoreglue+0x1c> jal ra,1c0039c8 <_malloc_r> +1c0045fc <__sfmoreglue+0x20> mv s0,a0 +1c0045fe <__sfmoreglue+0x22> beqz a0,1c004616 <__sfmoreglue+0x3a> +1c004600 <__sfmoreglue+0x24> sw zero,0(a0) +1c004604 <__sfmoreglue+0x28> sw s2,4(a0) +1c004608 <__sfmoreglue+0x2c> addi a0,a0,12 +1c00460a <__sfmoreglue+0x2e> sw a0,8(s0) +1c00460c <__sfmoreglue+0x30> addi a2,s1,104 +1c004610 <__sfmoreglue+0x34> li a1,0 +1c004612 <__sfmoreglue+0x36> jal ra,1c000e7a +1c004616 <__sfmoreglue+0x3a> lw ra,12(sp) +1c004618 <__sfmoreglue+0x3c> mv a0,s0 +1c00461a <__sfmoreglue+0x3e> lw s0,8(sp) +1c00461c <__sfmoreglue+0x40> lw s1,4(sp) +1c00461e <__sfmoreglue+0x42> lw s2,0(sp) +1c004620 <__sfmoreglue+0x44> addi sp,sp,16 +1c004622 <__sfmoreglue+0x46> ret +__sinit(): +1c004624 <__sinit> lw a5,24(a0) +1c004626 <__sinit+0x2> bnez a5,1c004692 <__sinit+0x6e> +1c004628 <__sinit+0x4> addi sp,sp,-16 +1c00462a <__sinit+0x6> lui a5,0x1c004 +1c00462e <__sinit+0xa> sw s0,8(sp) +1c004630 <__sinit+0xc> sw ra,12(sp) +1c004632 <__sinit+0xe> addi a5,a5,1490 # 1c0045d2 <_cleanup_r> +1c004636 <__sinit+0x12> sw a5,40(a0) +1c004638 <__sinit+0x14> lui a5,0x1c009 +1c00463c <__sinit+0x18> lw a5,-1064(a5) # 1c008bd8 <_global_impure_ptr> +1c004640 <__sinit+0x1c> sw zero,72(a0) +1c004644 <__sinit+0x20> sw zero,76(a0) +1c004648 <__sinit+0x24> sw zero,80(a0) +1c00464c <__sinit+0x28> mv s0,a0 +1c00464e <__sinit+0x2a> bne a0,a5,1c004656 <__sinit+0x32> +1c004652 <__sinit+0x2e> li a5,1 +1c004654 <__sinit+0x30> sw a5,24(a0) +1c004656 <__sinit+0x32> mv a0,s0 +1c004658 <__sinit+0x34> jal 1c004694 <__sfp> +1c00465a <__sinit+0x36> sw a0,4(s0) +1c00465c <__sinit+0x38> mv a0,s0 +1c00465e <__sinit+0x3a> jal 1c004694 <__sfp> +1c004660 <__sinit+0x3c> sw a0,8(s0) +1c004662 <__sinit+0x3e> mv a0,s0 +1c004664 <__sinit+0x40> jal 1c004694 <__sfp> +1c004666 <__sinit+0x42> sw a0,12(s0) +1c004668 <__sinit+0x44> lw a0,4(s0) +1c00466a <__sinit+0x46> li a2,0 +1c00466c <__sinit+0x48> li a1,4 +1c00466e <__sinit+0x4a> jal ra,1c004568 +1c004672 <__sinit+0x4e> lw a0,8(s0) +1c004674 <__sinit+0x50> li a2,1 +1c004676 <__sinit+0x52> li a1,9 +1c004678 <__sinit+0x54> jal ra,1c004568 +1c00467c <__sinit+0x58> lw a0,12(s0) +1c00467e <__sinit+0x5a> li a2,2 +1c004680 <__sinit+0x5c> li a1,18 +1c004682 <__sinit+0x5e> jal ra,1c004568 +1c004686 <__sinit+0x62> li a5,1 +1c004688 <__sinit+0x64> lw ra,12(sp) +1c00468a <__sinit+0x66> sw a5,24(s0) +1c00468c <__sinit+0x68> lw s0,8(sp) +1c00468e <__sinit+0x6a> addi sp,sp,16 +1c004690 <__sinit+0x6c> ret +1c004692 <__sinit+0x6e> ret +__sfp(): +1c004694 <__sfp> addi sp,sp,-16 +1c004696 <__sfp+0x2> lui a5,0x1c009 +1c00469a <__sfp+0x6> sw s1,4(sp) +1c00469c <__sfp+0x8> lw s1,-1064(a5) # 1c008bd8 <_global_impure_ptr> +1c0046a0 <__sfp+0xc> sw s2,0(sp) +1c0046a2 <__sfp+0xe> sw ra,12(sp) +1c0046a4 <__sfp+0x10> lw a5,24(s1) +1c0046a6 <__sfp+0x12> sw s0,8(sp) +1c0046a8 <__sfp+0x14> mv s2,a0 +1c0046aa <__sfp+0x16> bnez a5,1c0046b2 <__sfp+0x1e> +1c0046ac <__sfp+0x18> mv a0,s1 +1c0046ae <__sfp+0x1a> jal ra,1c004624 <__sinit> +1c0046b2 <__sfp+0x1e> addi s1,s1,72 +1c0046b6 <__sfp+0x22> lw s0,8(s1) +1c0046b8 <__sfp+0x24> lw a5,4(s1) +1c0046ba <__sfp+0x26> addi a5,a5,-1 +1c0046bc <__sfp+0x28> bgez a5,1c0046c8 <__sfp+0x34> +1c0046c0 <__sfp+0x2c> lw a5,0(s1) +1c0046c2 <__sfp+0x2e> beqz a5,1c004720 <__sfp+0x8c> +1c0046c4 <__sfp+0x30> lw s1,0(s1) +1c0046c6 <__sfp+0x32> j 1c0046b6 <__sfp+0x22> +1c0046c8 <__sfp+0x34> lh a4,12(s0) +1c0046cc <__sfp+0x38> bnez a4,1c00471a <__sfp+0x86> +1c0046ce <__sfp+0x3a> lui a5,0xffff0 +1c0046d0 <__sfp+0x3c> addi a5,a5,1 +1c0046d2 <__sfp+0x3e> sw zero,100(s0) +1c0046d6 <__sfp+0x42> sw zero,0(s0) +1c0046da <__sfp+0x46> sw zero,4(s0) +1c0046de <__sfp+0x4a> sw zero,8(s0) +1c0046e2 <__sfp+0x4e> sw a5,12(s0) +1c0046e4 <__sfp+0x50> sw zero,16(s0) +1c0046e8 <__sfp+0x54> sw zero,20(s0) +1c0046ec <__sfp+0x58> sw zero,24(s0) +1c0046f0 <__sfp+0x5c> li a2,8 +1c0046f2 <__sfp+0x5e> li a1,0 +1c0046f4 <__sfp+0x60> addi a0,s0,92 +1c0046f8 <__sfp+0x64> jal ra,1c000e7a +1c0046fc <__sfp+0x68> sw zero,52(s0) +1c004700 <__sfp+0x6c> sw zero,56(s0) +1c004704 <__sfp+0x70> sw zero,72(s0) +1c004708 <__sfp+0x74> sw zero,76(s0) +1c00470c <__sfp+0x78> lw ra,12(sp) +1c00470e <__sfp+0x7a> mv a0,s0 +1c004710 <__sfp+0x7c> lw s0,8(sp) +1c004712 <__sfp+0x7e> lw s1,4(sp) +1c004714 <__sfp+0x80> lw s2,0(sp) +1c004716 <__sfp+0x82> addi sp,sp,16 +1c004718 <__sfp+0x84> ret +1c00471a <__sfp+0x86> addi s0,s0,104 +1c00471e <__sfp+0x8a> j 1c0046ba <__sfp+0x26> +1c004720 <__sfp+0x8c> li a1,4 +1c004722 <__sfp+0x8e> mv a0,s2 +1c004724 <__sfp+0x90> jal ra,1c0045dc <__sfmoreglue> +1c004728 <__sfp+0x94> sw a0,0(s1) +1c00472a <__sfp+0x96> mv s0,a0 +1c00472c <__sfp+0x98> bnez a0,1c0046c4 <__sfp+0x30> +1c00472e <__sfp+0x9a> li a5,12 +1c004730 <__sfp+0x9c> sw a5,0(s2) +1c004734 <__sfp+0xa0> j 1c00470c <__sfp+0x78> +_fwalk_reent(): +1c004736 <_fwalk_reent> addi sp,sp,-48 +1c004738 <_fwalk_reent+0x2> sw s0,40(sp) +1c00473a <_fwalk_reent+0x4> sw s2,32(sp) +1c00473c <_fwalk_reent+0x6> sw s3,28(sp) +1c00473e <_fwalk_reent+0x8> sw s4,24(sp) +1c004740 <_fwalk_reent+0xa> sw s6,16(sp) +1c004742 <_fwalk_reent+0xc> sw s7,12(sp) +1c004744 <_fwalk_reent+0xe> sw ra,44(sp) +1c004746 <_fwalk_reent+0x10> sw s1,36(sp) +1c004748 <_fwalk_reent+0x12> sw s5,20(sp) +1c00474a <_fwalk_reent+0x14> mv s2,a0 +1c00474c <_fwalk_reent+0x16> mv s4,a1 +1c00474e <_fwalk_reent+0x18> addi s0,a0,72 +1c004752 <_fwalk_reent+0x1c> li s3,0 +1c004754 <_fwalk_reent+0x1e> li s6,1 +1c004756 <_fwalk_reent+0x20> li s7,-1 +1c004758 <_fwalk_reent+0x22> lw s1,8(s0) +1c00475a <_fwalk_reent+0x24> lw s5,4(s0) +1c00475e <_fwalk_reent+0x28> addi s5,s5,-1 +1c004760 <_fwalk_reent+0x2a> bgez s5,1c004780 <_fwalk_reent+0x4a> +1c004764 <_fwalk_reent+0x2e> lw s0,0(s0) +1c004766 <_fwalk_reent+0x30> bnez s0,1c004758 <_fwalk_reent+0x22> +1c004768 <_fwalk_reent+0x32> lw ra,44(sp) +1c00476a <_fwalk_reent+0x34> lw s0,40(sp) +1c00476c <_fwalk_reent+0x36> lw s1,36(sp) +1c00476e <_fwalk_reent+0x38> lw s2,32(sp) +1c004770 <_fwalk_reent+0x3a> lw s4,24(sp) +1c004772 <_fwalk_reent+0x3c> lw s5,20(sp) +1c004774 <_fwalk_reent+0x3e> lw s6,16(sp) +1c004776 <_fwalk_reent+0x40> lw s7,12(sp) +1c004778 <_fwalk_reent+0x42> mv a0,s3 +1c00477a <_fwalk_reent+0x44> lw s3,28(sp) +1c00477c <_fwalk_reent+0x46> addi sp,sp,48 +1c00477e <_fwalk_reent+0x48> ret +1c004780 <_fwalk_reent+0x4a> lhu a5,12(s1) +1c004784 <_fwalk_reent+0x4e> bgeu s6,a5,1c00479a <_fwalk_reent+0x64> +1c004788 <_fwalk_reent+0x52> lh a5,14(s1) +1c00478c <_fwalk_reent+0x56> beq a5,s7,1c00479a <_fwalk_reent+0x64> +1c004790 <_fwalk_reent+0x5a> mv a1,s1 +1c004792 <_fwalk_reent+0x5c> mv a0,s2 +1c004794 <_fwalk_reent+0x5e> jalr s4 +1c004796 <_fwalk_reent+0x60> or s3,s3,a0 +1c00479a <_fwalk_reent+0x64> addi s1,s1,104 +1c00479e <_fwalk_reent+0x68> j 1c00475e <_fwalk_reent+0x28> +__swhatbuf_r(): +1c0047a0 <__swhatbuf_r> addi sp,sp,-112 +1c0047a2 <__swhatbuf_r+0x2> sw s2,96(sp) +1c0047a4 <__swhatbuf_r+0x4> mv s2,a1 +1c0047a6 <__swhatbuf_r+0x6> lh a1,14(a1) +1c0047aa <__swhatbuf_r+0xa> sw s0,104(sp) +1c0047ac <__swhatbuf_r+0xc> sw s1,100(sp) +1c0047ae <__swhatbuf_r+0xe> sw ra,108(sp) +1c0047b0 <__swhatbuf_r+0x10> mv s0,a2 +1c0047b2 <__swhatbuf_r+0x12> mv s1,a3 +1c0047b4 <__swhatbuf_r+0x14> bgez a1,1c0047cc <__swhatbuf_r+0x2c> +1c0047b8 <__swhatbuf_r+0x18> lh a5,12(s2) +1c0047bc <__swhatbuf_r+0x1c> sw zero,0(s1) +1c0047c0 <__swhatbuf_r+0x20> andi a5,a5,128 +1c0047c4 <__swhatbuf_r+0x24> bnez a5,1c0047e6 <__swhatbuf_r+0x46> +1c0047c6 <__swhatbuf_r+0x26> li a5,1024 +1c0047ca <__swhatbuf_r+0x2a> j 1c0047ea <__swhatbuf_r+0x4a> +1c0047cc <__swhatbuf_r+0x2c> addi a2,sp,8 +1c0047ce <__swhatbuf_r+0x2e> jal 1c004d44 <_fstat_r> +1c0047d0 <__swhatbuf_r+0x30> bltz a0,1c0047b8 <__swhatbuf_r+0x18> +1c0047d4 <__swhatbuf_r+0x34> lw a4,12(sp) +1c0047d6 <__swhatbuf_r+0x36> lui a5,0xf +1c0047d8 <__swhatbuf_r+0x38> and a5,a5,a4 +1c0047da <__swhatbuf_r+0x3a> lui a4,0xffffe +1c0047dc <__swhatbuf_r+0x3c> add a5,a5,a4 +1c0047de <__swhatbuf_r+0x3e> seqz a5,a5 +1c0047e2 <__swhatbuf_r+0x42> sw a5,0(s1) +1c0047e4 <__swhatbuf_r+0x44> j 1c0047c6 <__swhatbuf_r+0x26> +1c0047e6 <__swhatbuf_r+0x46> li a5,64 +1c0047ea <__swhatbuf_r+0x4a> lw ra,108(sp) +1c0047ec <__swhatbuf_r+0x4c> sw a5,0(s0) +1c0047ee <__swhatbuf_r+0x4e> lw s0,104(sp) +1c0047f0 <__swhatbuf_r+0x50> lw s1,100(sp) +1c0047f2 <__swhatbuf_r+0x52> lw s2,96(sp) +1c0047f4 <__swhatbuf_r+0x54> li a0,0 +1c0047f6 <__swhatbuf_r+0x56> addi sp,sp,112 +1c0047f8 <__swhatbuf_r+0x58> ret +__smakebuf_r(): +1c0047fa <__smakebuf_r> lhu a5,12(a1) +1c0047fe <__smakebuf_r+0x4> addi sp,sp,-32 +1c004800 <__smakebuf_r+0x6> sw s0,24(sp) +1c004802 <__smakebuf_r+0x8> sw ra,28(sp) +1c004804 <__smakebuf_r+0xa> sw s1,20(sp) +1c004806 <__smakebuf_r+0xc> sw s2,16(sp) +1c004808 <__smakebuf_r+0xe> andi a5,a5,2 +1c00480a <__smakebuf_r+0x10> mv s0,a1 +1c00480c <__smakebuf_r+0x12> beqz a5,1c004826 <__smakebuf_r+0x2c> +1c00480e <__smakebuf_r+0x14> addi a5,s0,71 +1c004812 <__smakebuf_r+0x18> sw a5,0(s0) +1c004814 <__smakebuf_r+0x1a> sw a5,16(s0) +1c004816 <__smakebuf_r+0x1c> li a5,1 +1c004818 <__smakebuf_r+0x1e> sw a5,20(s0) +1c00481a <__smakebuf_r+0x20> lw ra,28(sp) +1c00481c <__smakebuf_r+0x22> lw s0,24(sp) +1c00481e <__smakebuf_r+0x24> lw s1,20(sp) +1c004820 <__smakebuf_r+0x26> lw s2,16(sp) +1c004822 <__smakebuf_r+0x28> addi sp,sp,32 +1c004824 <__smakebuf_r+0x2a> ret +1c004826 <__smakebuf_r+0x2c> addi a3,sp,12 +1c004828 <__smakebuf_r+0x2e> addi a2,sp,8 +1c00482a <__smakebuf_r+0x30> mv s2,a0 +1c00482c <__smakebuf_r+0x32> jal ra,1c0047a0 <__swhatbuf_r> +1c004830 <__smakebuf_r+0x36> lw a1,8(sp) +1c004832 <__smakebuf_r+0x38> mv s1,a0 +1c004834 <__smakebuf_r+0x3a> mv a0,s2 +1c004836 <__smakebuf_r+0x3c> jal ra,1c0039c8 <_malloc_r> +1c00483a <__smakebuf_r+0x40> bnez a0,1c004852 <__smakebuf_r+0x58> +1c00483c <__smakebuf_r+0x42> lh a5,12(s0) +1c004840 <__smakebuf_r+0x46> andi a4,a5,512 +1c004844 <__smakebuf_r+0x4a> bnez a4,1c00481a <__smakebuf_r+0x20> +1c004846 <__smakebuf_r+0x4c> andi a5,a5,-4 +1c004848 <__smakebuf_r+0x4e> ori a5,a5,2 +1c00484c <__smakebuf_r+0x52> sh a5,12(s0) +1c004850 <__smakebuf_r+0x56> j 1c00480e <__smakebuf_r+0x14> +1c004852 <__smakebuf_r+0x58> lui a5,0x1c004 +1c004856 <__smakebuf_r+0x5c> addi a5,a5,1490 # 1c0045d2 <_cleanup_r> +1c00485a <__smakebuf_r+0x60> sw a5,40(s2) +1c00485e <__smakebuf_r+0x64> lhu a5,12(s0) +1c004862 <__smakebuf_r+0x68> sw a0,0(s0) +1c004864 <__smakebuf_r+0x6a> sw a0,16(s0) +1c004866 <__smakebuf_r+0x6c> ori a5,a5,128 +1c00486a <__smakebuf_r+0x70> sh a5,12(s0) +1c00486e <__smakebuf_r+0x74> lw a5,8(sp) +1c004870 <__smakebuf_r+0x76> sw a5,20(s0) +1c004872 <__smakebuf_r+0x78> lw a5,12(sp) +1c004874 <__smakebuf_r+0x7a> beqz a5,1c00488e <__smakebuf_r+0x94> +1c004876 <__smakebuf_r+0x7c> lh a1,14(s0) +1c00487a <__smakebuf_r+0x80> mv a0,s2 +1c00487c <__smakebuf_r+0x82> jal 1c004d72 <_isatty_r> +1c00487e <__smakebuf_r+0x84> beqz a0,1c00488e <__smakebuf_r+0x94> +1c004880 <__smakebuf_r+0x86> lhu a5,12(s0) +1c004884 <__smakebuf_r+0x8a> andi a5,a5,-4 +1c004886 <__smakebuf_r+0x8c> ori a5,a5,1 +1c00488a <__smakebuf_r+0x90> sh a5,12(s0) +1c00488e <__smakebuf_r+0x94> lhu a0,12(s0) +1c004892 <__smakebuf_r+0x98> or s1,s1,a0 +1c004894 <__smakebuf_r+0x9a> sh s1,12(s0) +1c004898 <__smakebuf_r+0x9e> j 1c00481a <__smakebuf_r+0x20> +memchr(): +1c00489a andi a1,a1,255 +1c00489e add a2,a2,a0 +1c0048a0 bne a0,a2,1c0048a8 +1c0048a4 li a0,0 +1c0048a6 ret +1c0048a8 lbu a5,0(a0) +1c0048ac beq a5,a1,1c0048a6 +1c0048b0 addi a0,a0,1 +1c0048b2 j 1c0048a0 +_printf_common(): +1c0048b4 <_printf_common> addi sp,sp,-48 +1c0048b6 <_printf_common+0x2> sw s4,24(sp) +1c0048b8 <_printf_common+0x4> lw a5,16(a1) +1c0048ba <_printf_common+0x6> mv s4,a4 +1c0048bc <_printf_common+0x8> lw a4,8(a1) +1c0048be <_printf_common+0xa> sw s0,40(sp) +1c0048c0 <_printf_common+0xc> sw s1,36(sp) +1c0048c2 <_printf_common+0xe> sw s3,28(sp) +1c0048c4 <_printf_common+0x10> sw s5,20(sp) +1c0048c6 <_printf_common+0x12> sw ra,44(sp) +1c0048c8 <_printf_common+0x14> sw s2,32(sp) +1c0048ca <_printf_common+0x16> sw s6,16(sp) +1c0048cc <_printf_common+0x18> sw s7,12(sp) +1c0048ce <_printf_common+0x1a> mv s3,a0 +1c0048d0 <_printf_common+0x1c> mv s0,a1 +1c0048d2 <_printf_common+0x1e> mv s1,a2 +1c0048d4 <_printf_common+0x20> mv s5,a3 +1c0048d6 <_printf_common+0x22> bge a5,a4,1c0048dc <_printf_common+0x28> +1c0048da <_printf_common+0x26> mv a5,a4 +1c0048dc <_printf_common+0x28> sw a5,0(s1) +1c0048de <_printf_common+0x2a> lbu a4,67(s0) +1c0048e2 <_printf_common+0x2e> beqz a4,1c0048e8 <_printf_common+0x34> +1c0048e4 <_printf_common+0x30> addi a5,a5,1 +1c0048e6 <_printf_common+0x32> sw a5,0(s1) +1c0048e8 <_printf_common+0x34> lw a5,0(s0) +1c0048ea <_printf_common+0x36> andi a5,a5,32 +1c0048ee <_printf_common+0x3a> beqz a5,1c0048f6 <_printf_common+0x42> +1c0048f0 <_printf_common+0x3c> lw a5,0(s1) +1c0048f2 <_printf_common+0x3e> addi a5,a5,2 +1c0048f4 <_printf_common+0x40> sw a5,0(s1) +1c0048f6 <_printf_common+0x42> lw s2,0(s0) +1c0048fa <_printf_common+0x46> andi s2,s2,6 +1c0048fe <_printf_common+0x4a> bnez s2,1c004912 <_printf_common+0x5e> +1c004902 <_printf_common+0x4e> addi s6,s0,25 +1c004906 <_printf_common+0x52> li s7,-1 +1c004908 <_printf_common+0x54> lw a5,12(s0) +1c00490a <_printf_common+0x56> lw a4,0(s1) +1c00490c <_printf_common+0x58> sub a5,a5,a4 +1c00490e <_printf_common+0x5a> blt s2,a5,1c004966 <_printf_common+0xb2> +1c004912 <_printf_common+0x5e> lbu a5,67(s0) +1c004916 <_printf_common+0x62> snez a3,a5 +1c00491a <_printf_common+0x66> lw a5,0(s0) +1c00491c <_printf_common+0x68> andi a5,a5,32 +1c004920 <_printf_common+0x6c> bnez a5,1c004990 <_printf_common+0xdc> +1c004922 <_printf_common+0x6e> addi a2,s0,67 +1c004926 <_printf_common+0x72> mv a1,s5 +1c004928 <_printf_common+0x74> mv a0,s3 +1c00492a <_printf_common+0x76> jalr s4 +1c00492c <_printf_common+0x78> li a5,-1 +1c00492e <_printf_common+0x7a> beq a0,a5,1c004974 <_printf_common+0xc0> +1c004932 <_printf_common+0x7e> lw a5,0(s0) +1c004934 <_printf_common+0x80> li a2,4 +1c004936 <_printf_common+0x82> lw a4,0(s1) +1c004938 <_printf_common+0x84> andi a5,a5,6 +1c00493a <_printf_common+0x86> lw a3,12(s0) +1c00493c <_printf_common+0x88> li s1,0 +1c00493e <_printf_common+0x8a> bne a5,a2,1c00494c <_printf_common+0x98> +1c004942 <_printf_common+0x8e> sub s1,a3,a4 +1c004946 <_printf_common+0x92> bgez s1,1c00494c <_printf_common+0x98> +1c00494a <_printf_common+0x96> li s1,0 +1c00494c <_printf_common+0x98> lw a5,8(s0) +1c00494e <_printf_common+0x9a> lw a4,16(s0) +1c004950 <_printf_common+0x9c> bge a4,a5,1c004958 <_printf_common+0xa4> +1c004954 <_printf_common+0xa0> sub a5,a5,a4 +1c004956 <_printf_common+0xa2> add s1,s1,a5 +1c004958 <_printf_common+0xa4> li s2,0 +1c00495a <_printf_common+0xa6> addi s0,s0,26 +1c00495c <_printf_common+0xa8> li s6,-1 +1c00495e <_printf_common+0xaa> bne s1,s2,1c0049ae <_printf_common+0xfa> +1c004962 <_printf_common+0xae> li a0,0 +1c004964 <_printf_common+0xb0> j 1c004976 <_printf_common+0xc2> +1c004966 <_printf_common+0xb2> li a3,1 +1c004968 <_printf_common+0xb4> mv a2,s6 +1c00496a <_printf_common+0xb6> mv a1,s5 +1c00496c <_printf_common+0xb8> mv a0,s3 +1c00496e <_printf_common+0xba> jalr s4 +1c004970 <_printf_common+0xbc> bne a0,s7,1c00498c <_printf_common+0xd8> +1c004974 <_printf_common+0xc0> li a0,-1 +1c004976 <_printf_common+0xc2> lw ra,44(sp) +1c004978 <_printf_common+0xc4> lw s0,40(sp) +1c00497a <_printf_common+0xc6> lw s1,36(sp) +1c00497c <_printf_common+0xc8> lw s2,32(sp) +1c00497e <_printf_common+0xca> lw s3,28(sp) +1c004980 <_printf_common+0xcc> lw s4,24(sp) +1c004982 <_printf_common+0xce> lw s5,20(sp) +1c004984 <_printf_common+0xd0> lw s6,16(sp) +1c004986 <_printf_common+0xd2> lw s7,12(sp) +1c004988 <_printf_common+0xd4> addi sp,sp,48 +1c00498a <_printf_common+0xd6> ret +1c00498c <_printf_common+0xd8> addi s2,s2,1 +1c00498e <_printf_common+0xda> j 1c004908 <_printf_common+0x54> +1c004990 <_printf_common+0xdc> add a4,s0,a3 +1c004994 <_printf_common+0xe0> li a2,48 +1c004998 <_printf_common+0xe4> sb a2,67(a4) # ffffe043 <__heap_l2_shared_start+0xe3fe4673> +1c00499c <_printf_common+0xe8> lbu a4,69(s0) +1c0049a0 <_printf_common+0xec> addi a5,a3,1 # 00001001 <__stack_size+0x801> +1c0049a4 <_printf_common+0xf0> add a5,a5,s0 +1c0049a6 <_printf_common+0xf2> addi a3,a3,2 +1c0049a8 <_printf_common+0xf4> sb a4,67(a5) +1c0049ac <_printf_common+0xf8> j 1c004922 <_printf_common+0x6e> +1c0049ae <_printf_common+0xfa> li a3,1 +1c0049b0 <_printf_common+0xfc> mv a2,s0 +1c0049b2 <_printf_common+0xfe> mv a1,s5 +1c0049b4 <_printf_common+0x100> mv a0,s3 +1c0049b6 <_printf_common+0x102> jalr s4 +1c0049b8 <_printf_common+0x104> beq a0,s6,1c004974 <_printf_common+0xc0> +1c0049bc <_printf_common+0x108> addi s2,s2,1 +1c0049be <_printf_common+0x10a> j 1c00495e <_printf_common+0xaa> +_printf_i(): +1c0049c0 <_printf_i> addi sp,sp,-48 +1c0049c2 <_printf_i+0x2> sw s0,40(sp) +1c0049c4 <_printf_i+0x4> sw s1,36(sp) +1c0049c6 <_printf_i+0x6> sw s2,32(sp) +1c0049c8 <_printf_i+0x8> sw s3,28(sp) +1c0049ca <_printf_i+0xa> sw ra,44(sp) +1c0049cc <_printf_i+0xc> sw s4,24(sp) +1c0049ce <_printf_i+0xe> sw s5,20(sp) +1c0049d0 <_printf_i+0x10> sw s6,16(sp) +1c0049d2 <_printf_i+0x12> lbu a7,24(a1) +1c0049d6 <_printf_i+0x16> li a5,120 +1c0049da <_printf_i+0x1a> mv s1,a0 +1c0049dc <_printf_i+0x1c> mv s0,a1 +1c0049de <_printf_i+0x1e> mv s2,a2 +1c0049e0 <_printf_i+0x20> mv s3,a3 +1c0049e2 <_printf_i+0x22> bltu a5,a7,1c0049fe <_printf_i+0x3e> +1c0049e6 <_printf_i+0x26> li a5,98 +1c0049ea <_printf_i+0x2a> addi a3,a1,67 +1c0049ee <_printf_i+0x2e> bltu a5,a7,1c004a08 <_printf_i+0x48> +1c0049f2 <_printf_i+0x32> beqz a7,1c004bb8 <_printf_i+0x1f8> +1c0049f6 <_printf_i+0x36> li a5,88 +1c0049fa <_printf_i+0x3a> beq a7,a5,1c004b2e <_printf_i+0x16e> +1c0049fe <_printf_i+0x3e> addi s5,s0,66 +1c004a02 <_printf_i+0x42> sb a7,66(s0) +1c004a06 <_printf_i+0x46> j 1c004a38 <_printf_i+0x78> +1c004a08 <_printf_i+0x48> addi a5,a7,-99 +1c004a0c <_printf_i+0x4c> andi a5,a5,255 +1c004a10 <_printf_i+0x50> li a2,21 +1c004a12 <_printf_i+0x52> bltu a2,a5,1c0049fe <_printf_i+0x3e> +1c004a16 <_printf_i+0x56> lui a2,0x1c009 +1c004a1a <_printf_i+0x5a> slli a5,a5,0x2 +1c004a1c <_printf_i+0x5c> addi a2,a2,-1412 # 1c008a7c <__sf_fake_stdout+0x48> +1c004a20 <_printf_i+0x60> add a5,a5,a2 +1c004a22 <_printf_i+0x62> lw a5,0(a5) +1c004a24 <_printf_i+0x64> jr a5 +1c004a26 <_printf_i+0x66> lw a5,0(a4) +1c004a28 <_printf_i+0x68> addi s5,a1,66 +1c004a2c <_printf_i+0x6c> addi a3,a5,4 +1c004a30 <_printf_i+0x70> lw a5,0(a5) +1c004a32 <_printf_i+0x72> sw a3,0(a4) +1c004a34 <_printf_i+0x74> sb a5,66(a1) +1c004a38 <_printf_i+0x78> li a5,1 +1c004a3a <_printf_i+0x7a> j 1c004be0 <_printf_i+0x220> +1c004a3c <_printf_i+0x7c> lw a5,0(a1) +1c004a3e <_printf_i+0x7e> lw a0,0(a4) +1c004a40 <_printf_i+0x80> andi a2,a5,128 +1c004a44 <_printf_i+0x84> addi a1,a0,4 +1c004a48 <_printf_i+0x88> beqz a2,1c004a6a <_printf_i+0xaa> +1c004a4a <_printf_i+0x8a> lw a5,0(a0) +1c004a4c <_printf_i+0x8c> sw a1,0(a4) +1c004a4e <_printf_i+0x8e> lui a6,0x1c009 +1c004a52 <_printf_i+0x92> bgez a5,1c004a62 <_printf_i+0xa2> +1c004a56 <_printf_i+0x96> li a4,45 +1c004a5a <_printf_i+0x9a> neg a5,a5 +1c004a5e <_printf_i+0x9e> sb a4,67(s0) +1c004a62 <_printf_i+0xa2> addi a6,a6,-1452 # 1c008a54 <__sf_fake_stdout+0x20> +1c004a66 <_printf_i+0xa6> li a4,10 +1c004a68 <_printf_i+0xa8> j 1c004ab0 <_printf_i+0xf0> +1c004a6a <_printf_i+0xaa> andi a2,a5,64 +1c004a6e <_printf_i+0xae> lw a5,0(a0) +1c004a70 <_printf_i+0xb0> sw a1,0(a4) +1c004a72 <_printf_i+0xb2> beqz a2,1c004a4e <_printf_i+0x8e> +1c004a74 <_printf_i+0xb4> slli a5,a5,0x10 +1c004a76 <_printf_i+0xb6> srai a5,a5,0x10 +1c004a78 <_printf_i+0xb8> j 1c004a4e <_printf_i+0x8e> +1c004a7a <_printf_i+0xba> lw a2,0(a1) +1c004a7c <_printf_i+0xbc> lw a5,0(a4) +1c004a7e <_printf_i+0xbe> andi a0,a2,128 +1c004a82 <_printf_i+0xc2> addi a1,a5,4 +1c004a86 <_printf_i+0xc6> beqz a0,1c004a8e <_printf_i+0xce> +1c004a88 <_printf_i+0xc8> sw a1,0(a4) +1c004a8a <_printf_i+0xca> lw a5,0(a5) +1c004a8c <_printf_i+0xcc> j 1c004a9a <_printf_i+0xda> +1c004a8e <_printf_i+0xce> andi a2,a2,64 +1c004a92 <_printf_i+0xd2> sw a1,0(a4) +1c004a94 <_printf_i+0xd4> beqz a2,1c004a8a <_printf_i+0xca> +1c004a96 <_printf_i+0xd6> lhu a5,0(a5) +1c004a9a <_printf_i+0xda> lui a6,0x1c009 +1c004a9e <_printf_i+0xde> li a4,111 +1c004aa2 <_printf_i+0xe2> addi a6,a6,-1452 # 1c008a54 <__sf_fake_stdout+0x20> +1c004aa6 <_printf_i+0xe6> beq a7,a4,1c004b8c <_printf_i+0x1cc> +1c004aaa <_printf_i+0xea> li a4,10 +1c004aac <_printf_i+0xec> sb zero,67(s0) +1c004ab0 <_printf_i+0xf0> lw a2,4(s0) +1c004ab2 <_printf_i+0xf2> sw a2,8(s0) +1c004ab4 <_printf_i+0xf4> bltz a2,1c004abe <_printf_i+0xfe> +1c004ab8 <_printf_i+0xf8> lw a1,0(s0) +1c004aba <_printf_i+0xfa> andi a1,a1,-5 +1c004abc <_printf_i+0xfc> sw a1,0(s0) +1c004abe <_printf_i+0xfe> bnez a5,1c004ac4 <_printf_i+0x104> +1c004ac0 <_printf_i+0x100> mv s5,a3 +1c004ac2 <_printf_i+0x102> beqz a2,1c004ae0 <_printf_i+0x120> +1c004ac4 <_printf_i+0x104> mv s5,a3 +1c004ac6 <_printf_i+0x106> remu a2,a5,a4 +1c004aca <_printf_i+0x10a> addi s5,s5,-1 +1c004acc <_printf_i+0x10c> add a2,a2,a6 +1c004ace <_printf_i+0x10e> lbu a2,0(a2) +1c004ad2 <_printf_i+0x112> sb a2,0(s5) +1c004ad6 <_printf_i+0x116> mv a2,a5 +1c004ad8 <_printf_i+0x118> divu a5,a5,a4 +1c004adc <_printf_i+0x11c> bgeu a2,a4,1c004ac6 <_printf_i+0x106> +1c004ae0 <_printf_i+0x120> li a5,8 +1c004ae2 <_printf_i+0x122> bne a4,a5,1c004afe <_printf_i+0x13e> +1c004ae6 <_printf_i+0x126> lw a5,0(s0) +1c004ae8 <_printf_i+0x128> andi a5,a5,1 +1c004aea <_printf_i+0x12a> beqz a5,1c004afe <_printf_i+0x13e> +1c004aec <_printf_i+0x12c> lw a4,4(s0) +1c004aee <_printf_i+0x12e> lw a5,16(s0) +1c004af0 <_printf_i+0x130> blt a5,a4,1c004afe <_printf_i+0x13e> +1c004af4 <_printf_i+0x134> li a5,48 +1c004af8 <_printf_i+0x138> sb a5,-1(s5) +1c004afc <_printf_i+0x13c> addi s5,s5,-1 +1c004afe <_printf_i+0x13e> sub a3,a3,s5 +1c004b02 <_printf_i+0x142> sw a3,16(s0) +1c004b04 <_printf_i+0x144> mv a4,s3 +1c004b06 <_printf_i+0x146> mv a3,s2 +1c004b08 <_printf_i+0x148> addi a2,sp,12 +1c004b0a <_printf_i+0x14a> mv a1,s0 +1c004b0c <_printf_i+0x14c> mv a0,s1 +1c004b0e <_printf_i+0x14e> jal ra,1c0048b4 <_printf_common> +1c004b12 <_printf_i+0x152> li s4,-1 +1c004b14 <_printf_i+0x154> bne a0,s4,1c004be8 <_printf_i+0x228> +1c004b18 <_printf_i+0x158> li a0,-1 +1c004b1a <_printf_i+0x15a> lw ra,44(sp) +1c004b1c <_printf_i+0x15c> lw s0,40(sp) +1c004b1e <_printf_i+0x15e> lw s1,36(sp) +1c004b20 <_printf_i+0x160> lw s2,32(sp) +1c004b22 <_printf_i+0x162> lw s3,28(sp) +1c004b24 <_printf_i+0x164> lw s4,24(sp) +1c004b26 <_printf_i+0x166> lw s5,20(sp) +1c004b28 <_printf_i+0x168> lw s6,16(sp) +1c004b2a <_printf_i+0x16a> addi sp,sp,48 +1c004b2c <_printf_i+0x16c> ret +1c004b2e <_printf_i+0x16e> lui a6,0x1c009 +1c004b32 <_printf_i+0x172> sb a7,69(a1) +1c004b36 <_printf_i+0x176> addi a6,a6,-1452 # 1c008a54 <__sf_fake_stdout+0x20> +1c004b3a <_printf_i+0x17a> lw a2,0(s0) +1c004b3c <_printf_i+0x17c> lw a1,0(a4) +1c004b3e <_printf_i+0x17e> andi a0,a2,128 +1c004b42 <_printf_i+0x182> lw a5,0(a1) +1c004b44 <_printf_i+0x184> addi a1,a1,4 +1c004b46 <_printf_i+0x186> beqz a0,1c004b7e <_printf_i+0x1be> +1c004b48 <_printf_i+0x188> sw a1,0(a4) +1c004b4a <_printf_i+0x18a> andi a4,a2,1 +1c004b4e <_printf_i+0x18e> beqz a4,1c004b56 <_printf_i+0x196> +1c004b50 <_printf_i+0x190> ori a2,a2,32 +1c004b54 <_printf_i+0x194> sw a2,0(s0) +1c004b56 <_printf_i+0x196> li a4,16 +1c004b58 <_printf_i+0x198> bnez a5,1c004aac <_printf_i+0xec> +1c004b5a <_printf_i+0x19a> lw a2,0(s0) +1c004b5c <_printf_i+0x19c> andi a2,a2,-33 +1c004b60 <_printf_i+0x1a0> sw a2,0(s0) +1c004b62 <_printf_i+0x1a2> j 1c004aac <_printf_i+0xec> +1c004b64 <_printf_i+0x1a4> lw a5,0(a1) +1c004b66 <_printf_i+0x1a6> ori a5,a5,32 +1c004b6a <_printf_i+0x1aa> sw a5,0(a1) +1c004b6c <_printf_i+0x1ac> li a5,120 +1c004b70 <_printf_i+0x1b0> lui a6,0x1c009 +1c004b74 <_printf_i+0x1b4> sb a5,69(s0) +1c004b78 <_printf_i+0x1b8> addi a6,a6,-1432 # 1c008a68 <__sf_fake_stdout+0x34> +1c004b7c <_printf_i+0x1bc> j 1c004b3a <_printf_i+0x17a> +1c004b7e <_printf_i+0x1be> andi a0,a2,64 +1c004b82 <_printf_i+0x1c2> sw a1,0(a4) +1c004b84 <_printf_i+0x1c4> beqz a0,1c004b4a <_printf_i+0x18a> +1c004b86 <_printf_i+0x1c6> slli a5,a5,0x10 +1c004b88 <_printf_i+0x1c8> srli a5,a5,0x10 +1c004b8a <_printf_i+0x1ca> j 1c004b4a <_printf_i+0x18a> +1c004b8c <_printf_i+0x1cc> li a4,8 +1c004b8e <_printf_i+0x1ce> j 1c004aac <_printf_i+0xec> +1c004b90 <_printf_i+0x1d0> lw a2,0(a1) +1c004b92 <_printf_i+0x1d2> lw a5,0(a4) +1c004b94 <_printf_i+0x1d4> lw a1,20(a1) +1c004b96 <_printf_i+0x1d6> andi a6,a2,128 +1c004b9a <_printf_i+0x1da> addi a0,a5,4 +1c004b9e <_printf_i+0x1de> beqz a6,1c004baa <_printf_i+0x1ea> +1c004ba2 <_printf_i+0x1e2> sw a0,0(a4) +1c004ba4 <_printf_i+0x1e4> lw a5,0(a5) +1c004ba6 <_printf_i+0x1e6> sw a1,0(a5) +1c004ba8 <_printf_i+0x1e8> j 1c004bb8 <_printf_i+0x1f8> +1c004baa <_printf_i+0x1ea> sw a0,0(a4) +1c004bac <_printf_i+0x1ec> andi a2,a2,64 +1c004bb0 <_printf_i+0x1f0> lw a5,0(a5) +1c004bb2 <_printf_i+0x1f2> beqz a2,1c004ba6 <_printf_i+0x1e6> +1c004bb4 <_printf_i+0x1f4> sh a1,0(a5) +1c004bb8 <_printf_i+0x1f8> sw zero,16(s0) +1c004bbc <_printf_i+0x1fc> mv s5,a3 +1c004bbe <_printf_i+0x1fe> j 1c004b04 <_printf_i+0x144> +1c004bc0 <_printf_i+0x200> lw a5,0(a4) +1c004bc2 <_printf_i+0x202> lw a2,4(a1) +1c004bc4 <_printf_i+0x204> li a1,0 +1c004bc6 <_printf_i+0x206> addi a3,a5,4 +1c004bca <_printf_i+0x20a> sw a3,0(a4) +1c004bcc <_printf_i+0x20c> lw s5,0(a5) +1c004bd0 <_printf_i+0x210> mv a0,s5 +1c004bd2 <_printf_i+0x212> jal ra,1c00489a +1c004bd6 <_printf_i+0x216> beqz a0,1c004bde <_printf_i+0x21e> +1c004bd8 <_printf_i+0x218> sub a0,a0,s5 +1c004bdc <_printf_i+0x21c> sw a0,4(s0) +1c004bde <_printf_i+0x21e> lw a5,4(s0) +1c004be0 <_printf_i+0x220> sw a5,16(s0) +1c004be2 <_printf_i+0x222> sb zero,67(s0) +1c004be6 <_printf_i+0x226> j 1c004b04 <_printf_i+0x144> +1c004be8 <_printf_i+0x228> lw a3,16(s0) +1c004bea <_printf_i+0x22a> mv a2,s5 +1c004bec <_printf_i+0x22c> mv a1,s2 +1c004bee <_printf_i+0x22e> mv a0,s1 +1c004bf0 <_printf_i+0x230> jalr s3 +1c004bf2 <_printf_i+0x232> beq a0,s4,1c004b18 <_printf_i+0x158> +1c004bf6 <_printf_i+0x236> lw a5,0(s0) +1c004bf8 <_printf_i+0x238> andi a5,a5,2 +1c004bfa <_printf_i+0x23a> bnez a5,1c004c24 <_printf_i+0x264> +1c004bfc <_printf_i+0x23c> lw a5,12(sp) +1c004bfe <_printf_i+0x23e> lw a0,12(s0) +1c004c00 <_printf_i+0x240> bge a0,a5,1c004b1a <_printf_i+0x15a> +1c004c04 <_printf_i+0x244> mv a0,a5 +1c004c06 <_printf_i+0x246> j 1c004b1a <_printf_i+0x15a> +1c004c08 <_printf_i+0x248> li a3,1 +1c004c0a <_printf_i+0x24a> mv a2,s5 +1c004c0c <_printf_i+0x24c> mv a1,s2 +1c004c0e <_printf_i+0x24e> mv a0,s1 +1c004c10 <_printf_i+0x250> jalr s3 +1c004c12 <_printf_i+0x252> beq a0,s6,1c004b18 <_printf_i+0x158> +1c004c16 <_printf_i+0x256> addi s4,s4,1 +1c004c18 <_printf_i+0x258> lw a5,12(s0) +1c004c1a <_printf_i+0x25a> lw a4,12(sp) +1c004c1c <_printf_i+0x25c> sub a5,a5,a4 +1c004c1e <_printf_i+0x25e> blt s4,a5,1c004c08 <_printf_i+0x248> +1c004c22 <_printf_i+0x262> j 1c004bfc <_printf_i+0x23c> +1c004c24 <_printf_i+0x264> li s4,0 +1c004c26 <_printf_i+0x266> addi s5,s0,25 +1c004c2a <_printf_i+0x26a> li s6,-1 +1c004c2c <_printf_i+0x26c> j 1c004c18 <_printf_i+0x258> +__sread(): +1c004c2e <__sread> addi sp,sp,-16 +1c004c30 <__sread+0x2> sw s0,8(sp) +1c004c32 <__sread+0x4> mv s0,a1 +1c004c34 <__sread+0x6> lh a1,14(a1) +1c004c38 <__sread+0xa> sw ra,12(sp) +1c004c3a <__sread+0xc> jal 1c004dce <_read_r> +1c004c3c <__sread+0xe> bltz a0,1c004c4e <__sread+0x20> +1c004c40 <__sread+0x12> lw a5,84(s0) +1c004c42 <__sread+0x14> add a5,a5,a0 +1c004c44 <__sread+0x16> sw a5,84(s0) +1c004c46 <__sread+0x18> lw ra,12(sp) +1c004c48 <__sread+0x1a> lw s0,8(sp) +1c004c4a <__sread+0x1c> addi sp,sp,16 +1c004c4c <__sread+0x1e> ret +1c004c4e <__sread+0x20> lhu a5,12(s0) +1c004c52 <__sread+0x24> lui a4,0xfffff +1c004c54 <__sread+0x26> addi a4,a4,-1 +1c004c56 <__sread+0x28> and a5,a5,a4 +1c004c58 <__sread+0x2a> sh a5,12(s0) +1c004c5c <__sread+0x2e> j 1c004c46 <__sread+0x18> +__swrite(): +1c004c5e <__swrite> lhu a5,12(a1) +1c004c62 <__swrite+0x4> addi sp,sp,-32 +1c004c64 <__swrite+0x6> sw s0,24(sp) +1c004c66 <__swrite+0x8> sw s1,20(sp) +1c004c68 <__swrite+0xa> sw s2,16(sp) +1c004c6a <__swrite+0xc> sw s3,12(sp) +1c004c6c <__swrite+0xe> sw ra,28(sp) +1c004c6e <__swrite+0x10> andi a5,a5,256 +1c004c72 <__swrite+0x14> mv s1,a0 +1c004c74 <__swrite+0x16> mv s0,a1 +1c004c76 <__swrite+0x18> mv s2,a2 +1c004c78 <__swrite+0x1a> mv s3,a3 +1c004c7a <__swrite+0x1c> beqz a5,1c004c86 <__swrite+0x28> +1c004c7c <__swrite+0x1e> lh a1,14(a1) +1c004c80 <__swrite+0x22> li a3,2 +1c004c82 <__swrite+0x24> li a2,0 +1c004c84 <__swrite+0x26> jal 1c004d9e <_lseek_r> +1c004c86 <__swrite+0x28> lhu a5,12(s0) +1c004c8a <__swrite+0x2c> lui a4,0xfffff +1c004c8c <__swrite+0x2e> addi a4,a4,-1 +1c004c8e <__swrite+0x30> and a5,a5,a4 +1c004c90 <__swrite+0x32> lh a1,14(s0) +1c004c94 <__swrite+0x36> sh a5,12(s0) +1c004c98 <__swrite+0x3a> lw s0,24(sp) +1c004c9a <__swrite+0x3c> lw ra,28(sp) +1c004c9c <__swrite+0x3e> mv a3,s3 +1c004c9e <__swrite+0x40> mv a2,s2 +1c004ca0 <__swrite+0x42> lw s3,12(sp) +1c004ca2 <__swrite+0x44> lw s2,16(sp) +1c004ca4 <__swrite+0x46> mv a0,s1 +1c004ca6 <__swrite+0x48> lw s1,20(sp) +1c004ca8 <__swrite+0x4a> addi sp,sp,32 +1c004caa <__swrite+0x4c> j 1c004ce8 <_write_r> +__sseek(): +1c004cac <__sseek> addi sp,sp,-16 +1c004cae <__sseek+0x2> sw s0,8(sp) +1c004cb0 <__sseek+0x4> mv s0,a1 +1c004cb2 <__sseek+0x6> lh a1,14(a1) +1c004cb6 <__sseek+0xa> sw ra,12(sp) +1c004cb8 <__sseek+0xc> jal 1c004d9e <_lseek_r> +1c004cba <__sseek+0xe> li a5,-1 +1c004cbc <__sseek+0x10> lhu a4,12(s0) +1c004cc0 <__sseek+0x14> bne a0,a5,1c004cd6 <__sseek+0x2a> +1c004cc4 <__sseek+0x18> lui a5,0xfffff +1c004cc6 <__sseek+0x1a> addi a5,a5,-1 +1c004cc8 <__sseek+0x1c> and a5,a5,a4 +1c004cca <__sseek+0x1e> sh a5,12(s0) +1c004cce <__sseek+0x22> lw ra,12(sp) +1c004cd0 <__sseek+0x24> lw s0,8(sp) +1c004cd2 <__sseek+0x26> addi sp,sp,16 +1c004cd4 <__sseek+0x28> ret +1c004cd6 <__sseek+0x2a> lui a5,0x1 +1c004cd8 <__sseek+0x2c> or a5,a5,a4 +1c004cda <__sseek+0x2e> sh a5,12(s0) +1c004cde <__sseek+0x32> sw a0,84(s0) +1c004ce0 <__sseek+0x34> j 1c004cce <__sseek+0x22> +__sclose(): +1c004ce2 <__sclose> lh a1,14(a1) +1c004ce6 <__sclose+0x4> j 1c004d18 <_close_r> +_write_r(): +1c004ce8 <_write_r> addi sp,sp,-16 +1c004cea <_write_r+0x2> sw s0,8(sp) +1c004cec <_write_r+0x4> sw s1,4(sp) +1c004cee <_write_r+0x6> mv s0,a0 +1c004cf0 <_write_r+0x8> mv a0,a1 +1c004cf2 <_write_r+0xa> mv a1,a2 +1c004cf4 <_write_r+0xc> mv a2,a3 +1c004cf6 <_write_r+0xe> sw ra,12(sp) +1c004cf8 <_write_r+0x10> sw zero,-576(gp) # 1c00919c +1c004cfc <_write_r+0x14> jal ra,1c0029f2 <_write> +1c004d00 <_write_r+0x18> li a5,-1 +1c004d02 <_write_r+0x1a> bne a0,a5,1c004d0e <_write_r+0x26> +1c004d06 <_write_r+0x1e> lw a5,-576(gp) # 1c00919c +1c004d0a <_write_r+0x22> beqz a5,1c004d0e <_write_r+0x26> +1c004d0c <_write_r+0x24> sw a5,0(s0) +1c004d0e <_write_r+0x26> lw ra,12(sp) +1c004d10 <_write_r+0x28> lw s0,8(sp) +1c004d12 <_write_r+0x2a> lw s1,4(sp) +1c004d14 <_write_r+0x2c> addi sp,sp,16 +1c004d16 <_write_r+0x2e> ret +_close_r(): +1c004d18 <_close_r> addi sp,sp,-16 +1c004d1a <_close_r+0x2> sw s0,8(sp) +1c004d1c <_close_r+0x4> sw s1,4(sp) +1c004d1e <_close_r+0x6> mv s0,a0 +1c004d20 <_close_r+0x8> mv a0,a1 +1c004d22 <_close_r+0xa> sw ra,12(sp) +1c004d24 <_close_r+0xc> sw zero,-576(gp) # 1c00919c +1c004d28 <_close_r+0x10> jal ra,1c0029b2 <_close> +1c004d2c <_close_r+0x14> li a5,-1 +1c004d2e <_close_r+0x16> bne a0,a5,1c004d3a <_close_r+0x22> +1c004d32 <_close_r+0x1a> lw a5,-576(gp) # 1c00919c +1c004d36 <_close_r+0x1e> beqz a5,1c004d3a <_close_r+0x22> +1c004d38 <_close_r+0x20> sw a5,0(s0) +1c004d3a <_close_r+0x22> lw ra,12(sp) +1c004d3c <_close_r+0x24> lw s0,8(sp) +1c004d3e <_close_r+0x26> lw s1,4(sp) +1c004d40 <_close_r+0x28> addi sp,sp,16 +1c004d42 <_close_r+0x2a> ret +_fstat_r(): +1c004d44 <_fstat_r> addi sp,sp,-16 +1c004d46 <_fstat_r+0x2> sw s0,8(sp) +1c004d48 <_fstat_r+0x4> sw s1,4(sp) +1c004d4a <_fstat_r+0x6> mv s0,a0 +1c004d4c <_fstat_r+0x8> mv a0,a1 +1c004d4e <_fstat_r+0xa> mv a1,a2 +1c004d50 <_fstat_r+0xc> sw ra,12(sp) +1c004d52 <_fstat_r+0xe> sw zero,-576(gp) # 1c00919c +1c004d56 <_fstat_r+0x12> jal ra,1c0029cc <_fstat> +1c004d5a <_fstat_r+0x16> li a5,-1 +1c004d5c <_fstat_r+0x18> bne a0,a5,1c004d68 <_fstat_r+0x24> +1c004d60 <_fstat_r+0x1c> lw a5,-576(gp) # 1c00919c +1c004d64 <_fstat_r+0x20> beqz a5,1c004d68 <_fstat_r+0x24> +1c004d66 <_fstat_r+0x22> sw a5,0(s0) +1c004d68 <_fstat_r+0x24> lw ra,12(sp) +1c004d6a <_fstat_r+0x26> lw s0,8(sp) +1c004d6c <_fstat_r+0x28> lw s1,4(sp) +1c004d6e <_fstat_r+0x2a> addi sp,sp,16 +1c004d70 <_fstat_r+0x2c> ret +_isatty_r(): +1c004d72 <_isatty_r> addi sp,sp,-16 +1c004d74 <_isatty_r+0x2> sw s0,8(sp) +1c004d76 <_isatty_r+0x4> sw s1,4(sp) +1c004d78 <_isatty_r+0x6> mv s0,a0 +1c004d7a <_isatty_r+0x8> mv a0,a1 +1c004d7c <_isatty_r+0xa> sw ra,12(sp) +1c004d7e <_isatty_r+0xc> sw zero,-576(gp) # 1c00919c +1c004d82 <_isatty_r+0x10> jal ra,1c0029d8 <_isatty> +1c004d86 <_isatty_r+0x14> li a5,-1 +1c004d88 <_isatty_r+0x16> bne a0,a5,1c004d94 <_isatty_r+0x22> +1c004d8c <_isatty_r+0x1a> lw a5,-576(gp) # 1c00919c +1c004d90 <_isatty_r+0x1e> beqz a5,1c004d94 <_isatty_r+0x22> +1c004d92 <_isatty_r+0x20> sw a5,0(s0) +1c004d94 <_isatty_r+0x22> lw ra,12(sp) +1c004d96 <_isatty_r+0x24> lw s0,8(sp) +1c004d98 <_isatty_r+0x26> lw s1,4(sp) +1c004d9a <_isatty_r+0x28> addi sp,sp,16 +1c004d9c <_isatty_r+0x2a> ret +_lseek_r(): +1c004d9e <_lseek_r> addi sp,sp,-16 +1c004da0 <_lseek_r+0x2> sw s0,8(sp) +1c004da2 <_lseek_r+0x4> sw s1,4(sp) +1c004da4 <_lseek_r+0x6> mv s0,a0 +1c004da6 <_lseek_r+0x8> mv a0,a1 +1c004da8 <_lseek_r+0xa> mv a1,a2 +1c004daa <_lseek_r+0xc> mv a2,a3 +1c004dac <_lseek_r+0xe> sw ra,12(sp) +1c004dae <_lseek_r+0x10> sw zero,-576(gp) # 1c00919c +1c004db2 <_lseek_r+0x14> jal ra,1c0029ea <_lseek> +1c004db6 <_lseek_r+0x18> li a5,-1 +1c004db8 <_lseek_r+0x1a> bne a0,a5,1c004dc4 <_lseek_r+0x26> +1c004dbc <_lseek_r+0x1e> lw a5,-576(gp) # 1c00919c +1c004dc0 <_lseek_r+0x22> beqz a5,1c004dc4 <_lseek_r+0x26> +1c004dc2 <_lseek_r+0x24> sw a5,0(s0) +1c004dc4 <_lseek_r+0x26> lw ra,12(sp) +1c004dc6 <_lseek_r+0x28> lw s0,8(sp) +1c004dc8 <_lseek_r+0x2a> lw s1,4(sp) +1c004dca <_lseek_r+0x2c> addi sp,sp,16 +1c004dcc <_lseek_r+0x2e> ret +_read_r(): +1c004dce <_read_r> addi sp,sp,-16 +1c004dd0 <_read_r+0x2> sw s0,8(sp) +1c004dd2 <_read_r+0x4> sw s1,4(sp) +1c004dd4 <_read_r+0x6> mv s0,a0 +1c004dd6 <_read_r+0x8> mv a0,a1 +1c004dd8 <_read_r+0xa> mv a1,a2 +1c004dda <_read_r+0xc> mv a2,a3 +1c004ddc <_read_r+0xe> sw ra,12(sp) +1c004dde <_read_r+0x10> sw zero,-576(gp) # 1c00919c +1c004de2 <_read_r+0x14> jal ra,1c0029ee <_read> +1c004de6 <_read_r+0x18> li a5,-1 +1c004de8 <_read_r+0x1a> bne a0,a5,1c004df4 <_read_r+0x26> +1c004dec <_read_r+0x1e> lw a5,-576(gp) # 1c00919c +1c004df0 <_read_r+0x22> beqz a5,1c004df4 <_read_r+0x26> +1c004df2 <_read_r+0x24> sw a5,0(s0) +1c004df4 <_read_r+0x26> lw ra,12(sp) +1c004df6 <_read_r+0x28> lw s0,8(sp) +1c004df8 <_read_r+0x2a> lw s1,4(sp) +1c004dfa <_read_r+0x2c> addi sp,sp,16 +1c004dfc <_read_r+0x2e> ret + ... diff --git a/tests/spim_flash_async/test_flash_async.stim b/tests/spim_flash_async/test_flash_async.stim new file mode 100644 index 00000000..9d9334ec --- /dev/null +++ b/tests/spim_flash_async/test_flash_async.stim @@ -0,0 +1,11259 @@ +1C000000_0000000000000000 +1C000008_0000000000000000 +1C000800_0FC0006F1000006F +1C000808_0F40006F0F80006F +1C000810_0EC0006F0F00006F +1C000818_0E40006F0E80006F +1C000820_0DC0006F0E00006F +1C000828_0D40006F0D80006F +1C000830_0CC0006F0D00006F +1C000838_0C40006F0C80006F +1C000840_0BC0006F0C00006F +1C000848_0B40006F0B80006F +1C000850_0AC0006F0B00006F +1C000858_0A40006F0A80006F +1C000860_09C0006F0A00006F +1C000868_0940006F0980006F +1C000870_08C0006F0900006F +1C000878_0840006F0880006F +1C000880_B5C1819300009197 +1C000888_01F57593F1402573 +1C000890_0113000191178115 +1C000898_05130000051711E1 +1C0008A0_107300156513F665 +1C0008A8_8293000082973055 +1C0008B0_A023DC81831339E2 +1C0008B8_FE62EDE302910002 +1C0008C0_F805051300003517 +1C0008C8_7D7020EF741020EF +1C0008D0_20EF4601004C4502 +1C0008D8_808273B0206F6890 +1C0008E0_0000000000000000 +1C0008E8_0000000000000000 +1C0008F0_0000000000000000 +1C0008F8_0000000000000000 +1C000900_C416C206F8810113 +1C000908_CC26CA22C81EC61A +1C000910_D436D232D02ECE2A +1C000918_DC46DA42D83ED63A +1C000920_C4D6C2D2C0CEDE4A +1C000928_CCE6CAE2C8DEC6DA +1C000930_D4F6D2F2D0EECEEA +1C000938_300022F3D8FED6FA +1C000940_7C0022F31121DA96 +1C000948_7C2023F37C102373 +1C000950_7C502EF37C402E73 +1C000958_C41AC2167C602F73 +1C000960_CC7ACA76C872C61E +1C000968_0022A023D541A283 +1C000970_341025F334202573 +1C000978_C02ECA0901F55613 +1C000980_2541210300008117 +1C000988_0591A80D17E020EF +1C000990_7FF5751342ADC02E +1C000998_0000811700551963 +1C0009A0_1D2010EF23812103 +1C0009A8_2373342022F3A819 +1C0009B0_BFD5300023F33410 +1C0009B8_A303BFF5342022F3 +1C0009C0_428200032103D541 +1C0009C8_4322429234129073 +1C0009D0_4F624ED24E4243B2 +1C0009D8_7C1310737C029073 +1C0009E0_7C4E10737C239073 +1C0009E8_7C6F10737C5E9073 +1C0009F0_3002907352D60161 +1C0009F8_43C2433242A24092 +1C000A00_5582457244E24452 +1C000A08_57C2573256A25612 +1C000A10_4986597258E25852 +1C000A18_4BC64B364AA64A16 +1C000A20_5D864D764CE64C56 +1C000A28_5FC65F365EA65E16 +1C000A30_3020007307810113 +1C000A38_0000001300000013 +1C000A40_0000001300000013 +1C000A48_0000001300000013 +1C000A50_0000001300000013 +1C000A58_0000001300000013 +1C000A60_0000001300000013 +1C000A68_0000001300000013 +1C000A70_0000001300000013 +1C000A78_0000001300000013 +1C000A80_0000001300000013 +1C000A88_0000001300000013 +1C000A90_0000001300000013 +1C000A98_0000001300000013 +1C000AA0_0000001300000013 +1C000AA8_0000001300000013 +1C000AB0_0000001300000013 +1C000AB8_0000001300000013 +1C000AC0_0000001300000013 +1C000AC8_0000001300000013 +1C000AD0_0000001300000013 +1C000AD8_0000001300000013 +1C000AE0_0000001300000013 +1C000AE8_0000001300000013 +1C000AF0_0000001300000013 +1C000AF8_0000001300000013 +1C000B00_C416C206F8810113 +1C000B08_CC26CA22C81EC61A +1C000B10_D436D232D02ECE2A +1C000B18_DC46DA42D83ED63A +1C000B20_C4D6C2D2C0CEDE4A +1C000B28_CCE6CAE2C8DEC6DA +1C000B30_D4F6D2F2D0EECEEA +1C000B38_300022F3D8FED6FA +1C000B40_7C0022F31121DA96 +1C000B48_7C2023F37C102373 +1C000B50_7C502EF37C402E73 +1C000B58_C41AC2167C602F73 +1C000B60_CC7ACA76C872C61E +1C000B68_0022A023D541A283 +1C000B70_341025F334202573 +1C000B78_210300008117C02E +1C000B80_0CE36A7000EF05A1 +1C000B88_A3037ED000EFE205 +1C000B90_428200032103D541 +1C000B98_4322429234129073 +1C000BA0_4F624ED24E4243B2 +1C000BA8_7C1310737C029073 +1C000BB0_7C4E10737C239073 +1C000BB8_7C6F10737C5E9073 +1C000BC0_3002907352D60161 +1C000BC8_43C2433242A24092 +1C000BD0_5582457244E24452 +1C000BD8_57C2573256A25612 +1C000BE0_4986597258E25852 +1C000BE8_4BC64B364AA64A16 +1C000BF0_5D864D764CE64C56 +1C000BF8_5FC65F365EA65E16 +1C000C00_3020007307810113 +1C000C08_0000001300000013 +1C000C10_0000001300000013 +1C000C18_0000001300000013 +1C000C20_0000001300000013 +1C000C28_0000001300000013 +1C000C30_0000001300000013 +1C000C38_0000001300000013 +1C000C40_0000001300000013 +1C000C48_0000001300000013 +1C000C50_0000001300000013 +1C000C58_0000001300000013 +1C000C60_0000001300000013 +1C000C68_0000001300000013 +1C000C70_0000001300000013 +1C000C78_0000001300000013 +1C000C80_0000001300000013 +1C000C88_0000001300000013 +1C000C90_0000001300000013 +1C000C98_0000001300000013 +1C000CA0_0000001300000013 +1C000CA8_0000001300000013 +1C000CB0_0000001300000013 +1C000CB8_0000001300000013 +1C000CC0_0000001300000013 +1C000CC8_0000001300000013 +1C000CD0_0000001300000013 +1C000CD8_0000001300000013 +1C000CE0_0000001300000013 +1C000CE8_0000001300000013 +1C000CF0_0000001300000013 +1C000CF8_0000001300000013 +1C000D00_40824102D541A103 +1C000D08_4E4243B243224292 +1C000D10_7C0290734F624ED2 +1C000D18_7C2390737C131073 +1C000D20_7C5E90737C4E1073 +1C000D28_433201617C6F1073 +1C000D30_457244E2445243C2 +1C000D38_573256A256125582 +1C000D40_597258E2585257C2 +1C000D48_4B364AA64A164986 +1C000D50_4D764CE64C564BC6 +1C000D58_5F365EA65E165D86 +1C000D60_907302A152D65FC6 +1C000D68_0781011342A23002 +1C000D70_0013000000138082 +1C000D78_0013000000130000 +1C000D80_0013000000130000 +1C000D88_0013000000130000 +1C000D90_0013000000130000 +1C000D98_0013000000130000 +1C000DA0_0013000000130000 +1C000DA8_0013000000130000 +1C000DB0_0013000000130000 +1C000DB8_0013000000130000 +1C000DC0_0013000000130000 +1C000DC8_0013000000130000 +1C000DD0_0013000000130000 +1C000DD8_0013000000130000 +1C000DE0_0013000000130000 +1C000DE8_0013000000130000 +1C000DF0_0013000000130000 +1C000DF8_0001000000130000 +1C000E00_FF72F293300022F3 +1C000E08_E2B3031218800313 +1C000E10_0055202315710062 +1C000E18_1521C110FA850513 +1C000E20_8763429900052023 +1C000E28_0005202315710002 +1C000E30_C10C1571BFD512FD +1C000E38_0000000000008082 +1C000E40_87931A10A7B70000 +1C000E48_A281879353C88007 +1C000E50_002517130FF57513 +1C000E58_439CC319439897BA +1C000E60_CA09832A80828782 +1C000E68_0073002300058383 +1C000E70_FA6D05850305167D +1C000E78_0023C611832A8082 +1C000E80_FE650305167D00B3 +1C000E88_02F5766367C18082 +1C000E90_00A7B7B30FF00793 +1C000E98_06931C009737078E +1C000EA0_00F555338E9D0200 +1C000EA8_4503953EAD470793 +1C000EB0_808240A685330005 +1C000EB8_6EE347C101000737 +1C000EC0_0793BFD947E1FCE5 +1C000EC8_C518C15C577D0085 +1C000ED0_00052023C91CC55C +1C000ED8_8082000528238082 +1C000EE0_C598C1DC4798415C +1C000EE8_411CC78CC34C4798 +1C000EF0_8082C11C0785C988 +1C000EF8_0085071357FD4194 +1C000F00_43D8491C00F69D63 +1C000F08_C3CCC59CC70CC1D8 +1C000F10_C11C0785C988411C +1C000F18_4310435887BA8082 +1C000F20_4154B7CDFEC6FDE3 +1C000F28_C354C698491C4518 +1C000F30_C3D800A6936343D4 +1C000F38_177D000528234398 +1C000F40_114180824388C398 +1C000F48_10EFC606842AC422 +1C000F50_0D2010EF5C000BE0 +1C000F58_44220014351340B2 +1C000F60_C226114180820141 +1C000F68_2903C04A413084B2 +1C000F70_842AC606C4220385 +1C000F78_E7994481411CE605 +1C000F80_84AA6CB000EF4508 +1C000F88_2C23090500042423 +1C000F90_4902442240B20324 +1C000F98_8082014144928526 +1C000FA0_405C35C14148EC89 +1C000FA8_C05C441897BA4038 +1C000FB0_C05C401CFCE7EEE3 +1C000FB8_403835654548BFD1 +1C000FC0_8F9940E006B3445C +1C000FC8_00E7F563C45C4018 +1C000FD0_4789C45C97B6441C +1C000FD8_07E3448100F49763 +1C000FE0_4481B765197DFA09 +1C000FE8_852E43B087AAB755 +1C000FF0_9732479447D8CA19 +1C000FF8_439800D76463C7D8 +1C001000_8082B58547CCC7D8 +1C001008_C226842AC4221141 +1C001010_7F9000EFC606C04A +1C001018_0244091304544483 +1C001020_02904B6384E104E2 +1C001028_00EF04F402A357FD +1C001030_44837DB000EF7F90 +1C001038_04E2010409130444 +1C001040_57FD0290486384E1 +1C001048_40B2442204F40223 +1C001050_006F014149024492 +1C001058_854AD7F1505C7D10 +1C001060_00EFC119475000EF +1C001068_84E104E214FD5170 +1C001070_854ADBE9481CBF55 +1C001078_00EFC11945D000EF +1C001080_84E104E214FD4FF0 +1C001088_C422C6061141BF6D +1C001090_1C0086B7E10DC226 +1C001098_1C0085371C008637 +1C0010A0_3906061300068693 +1C0010A8_0085051310300593 +1C0010B0_84AE842A718020EF +1C0010B8_5C5C4034755000EF +1C0010C0_87B302042C234018 +1C0010C8_00F70633C05802F6 +1C0010D0_57FDC45C97BA8F95 +1C0010D8_02A3C41004F40223 +1C0010E0_CB81481CE09504F4 +1C0010E8_3E9000EF01040513 +1C0010F0_00EF00000073C119 +1C0010F8_4492442240B27310 +1C001100_0513808201414505 +1C001108_024405133B750104 +1C001110_CE061101B7D53B5D +1C001118_C64EC84ACA26CC22 +1C001120_86371C0086B7E10D +1C001128_86931C0085371C00 +1C001130_059337C6061304C6 +1C001138_20EF008505131760 +1C001140_02B50533892A68A0 +1C001148_0505051389B284AE +1C001150_CD11842A01B010EF +1C001158_05050793C09987AA +1C001160_C02403242E23C01C +1C001168_06233F3985224585 +1C001170_4462852240F20534 +1C001178_610549B2494244D2 +1C001180_C422C60611418082 +1C001188_86371C0086B7E10D +1C001190_0613070686931C00 +1C001198_85372CE0059335C6 +1C0011A0_20EF008505131C00 +1C0011A8_00B57D63842E6220 +1C0011B0_1C0086371C0086B7 +1C0011B8_35C6061308068693 +1C0011C0_4609BFE92CF00593 +1C0011C8_DD00C11137A94581 +1C0011D0_80820141442240B2 +1C0011D8_DA26DC22DE067139 +1C0011E0_D256D452D64ED84A +1C0011E8_86B7E10DC632D05A +1C0011F0_86931C0086371C00 +1C0011F8_0593348606130006 +1C001200_05131C0085372EA0 +1C001208_842A5BE020EF0085 +1C001210_413CED91893689AE +1C001218_86371C0086B7CF81 +1C001220_06130A0686931C00 +1C001228_BFD12EB005933486 +1C001230_5C5802F911634789 +1C001238_86B700F70D634785 +1C001240_86931C0086371C00 +1C001248_0593348606130F86 +1C001250_331000EFBF452EC0 +1C001258_CF8947B2ED1184AA +1C001260_1C0086371C0086B7 +1C001268_3486061314868693 +1C001270_4481B7792EF00593 +1C001278_01040B135A7D4A89 +1C001280_00EFE78947B2A895 +1C001288_E481A86145015A10 +1C001290_00EF2DD000EF0828 +1C001298_00EF77C000EF5910 +1C0012A0_07E20444478356F0 +1C0012A8_02230147946387E1 +1C0012B0_07E2045447830404 +1C0012B8_02A30147946387E1 +1C0012C0_006C565000EF0404 +1C0012C8_ED3D18E010EF0828 +1C0012D0_5C5C5C1853D000EF +1C0012D8_54B000EF06F71063 +1C0012E0_163000EF855A45B2 +1C0012E8_060010EF3B398522 +1C0012F0_519000EF4485C939 +1C0012F8_00F764635C5C5C18 +1C001300_85CE864AF95911E3 +1C001308_C789505C39A98522 +1C001310_1C1000EF02440513 +1C001318_00EF00000073C119 +1C001320_546250F245055090 +1C001328_5A2259B2594254D2 +1C001330_808261215B025A92 +1C001338_31E985224EF000EF +1C001340_0073B77D00C010EF +1C001348_396D8522B7650000 +1C001350_1101BF1D7FD000EF +1C001358_C84ACA26CC22CE06 +1C001360_1C0086B7E10DC64E +1C001368_000686931C008637 +1C001370_3BC0059332C60613 +1C001378_008505131C008537 +1C001380_842A8932448020EF +1C001388_CF81413CED918636 +1C001390_1C0086371C0086B7 +1C001398_32C606130A068693 +1C0013A0_4709BFD13BD00593 +1C0013A8_470502E610635C5C +1C0013B0_1C0086B700E78D63 +1C0013B8_0F8686931C008637 +1C0013C0_3BE0059332C60613 +1C0013C8_00F766635C18BF45 +1C0013D0_02F6116345014789 +1C0013D8_85225C1C04544483 +1C0013E0_D993364101849993 +1C0013E8_02F9976357FD4189 +1C0013F0_40F24505EB89505C +1C0013F8_49B2494244D24462 +1C001400_0244051380826105 +1C001408_03E3D5650CD000EF +1C001410_00F920234785FE09 +1C001418_84E104E20485BFF1 +1C001420_1141BFC1049402A3 +1C001428_86B7E10DC422C606 +1C001430_86931C0086371C00 +1C001438_0593318606130006 +1C001440_05131C0085374640 +1C001448_413837E020EF0085 +1C001450_1C0086B7CF0187AA +1C001458_19C686931C008637 +1C001460_4680059331860613 +1C001468_EF11842E4118BFE9 +1C001470_1C0086B7CF014518 +1C001478_1B8686931C008637 +1C001480_46D0059331860613 +1C001488_45015FD85F94BF6D +1C001490_0457C70300E6FF63 +1C001498_01871613DF940685 +1C0014A0_02D6126356FD8661 +1C0014A8_40B24505E71153D8 +1C0014B0_8513808201414422 +1C0014B8_D57D01B000EF0247 +1C0014C0_B7DDC01C4785D475 +1C0014C8_82A3876107620705 +1C0014D0_DE067139BFE904E7 +1C0014D8_D64ED84ADA26DC22 +1C0014E0_E10DC632D256D452 +1C0014E8_1C0086371C0086B7 +1C0014F0_3086061321C68693 +1C0014F8_1C00853750400593 +1C001500_2C4020EF00850513 +1C001508_413CED91892E842A +1C001510_86371C0086B7CF81 +1C001518_0613228686931C00 +1C001520_BFD9508005933086 +1C001528_ED1184AA05D000EF +1C001530_1C0086B7CF8947B2 +1C001538_148686931C008637 +1C001540_50D0059330860613 +1C001548_0A935A7D4481BF55 +1C001550_E78947B2A0BD0244 +1C001558_A84945012CF000EF +1C001560_00B000EF0828E481 +1C001568_00EF216D2BF000EF +1C001570_07E20444478329F0 +1C001578_02230147946387E1 +1C001580_07E2045447830404 +1C001588_02A30147946387E1 +1C001590_006C295000EF0404 +1C001598_E53D6BF000EF0828 +1C0015A0_CD319A5FF0EF8522 +1C0015A8_69A000EF855645B2 +1C0015B0_599000EF3C998522 +1C0015B8_448500000073E119 +1C0015C0_0384298324D000EF +1C0015C8_852285CAF80986E3 +1C0015D0_03342C233C2119FD +1C0015D8_01040513CB81481C +1C0015E0_0073C1196F4000EF +1C0015E8_450523D000EF0000 +1C0015F0_594254D2546250F2 +1C0015F8_61215A925A2259B2 +1C001600_00EF341185228082 +1C001608_3AED8522BF555470 +1C001610_F0EF852253D000EF +1C001618_7139B781D155931F +1C001620_D84ADA26DC22DE06 +1C001628_E10DC62ED452D64E +1C001630_1C0086371C0086B7 +1C001638_3CC6061321C68693 +1C001640_1C00853759500593 +1C001648_17C020EF00850513 +1C001650_86B7CF81842A413C +1C001658_86931C0086371C00 +1C001660_05933CC6061319C6 +1C001668_718000EFBFE95990 +1C001670_448147B2ED19892A +1C001678_86371C0086B7CF91 +1C001680_0613148686931C00 +1C001688_BF5D59E005933CC6 +1C001690_0A1359FD49014481 +1C001698_E38547B2A8690244 +1C0016A0_86371C0086B7CC81 +1C0016A8_0613284686931C00 +1C0016B0_B7795E5005933CC6 +1C0016B8_1563A05516F000EF +1C0016C0_6AA000EF08280009 +1C0016C8_00EF26A915F000EF +1C0016D0_07E20444478313F0 +1C0016D8_02230137946387E1 +1C0016E0_07E2045447830404 +1C0016E8_02A30137946387E1 +1C0016F0_006C135000EF0404 +1C0016F8_E14155F000EF0828 +1C001700_C535845FF0EF8522 +1C001708_101000EFEB89401C +1C001710_84AA686000EF4408 +1C001718_855245B210F000EF +1C001720_8E5FF0EF8522231D +1C001728_0073E119425000EF +1C001730_0D9000EF49050000 +1C001738_DC1C17FDD3AD5C1C +1C001740_5C7000EFE781401C +1C001748_0513C799481CC408 +1C001750_0073C11923490104 +1C001758_44850CD000EF0000 +1C001760_59B25942546250F2 +1C001768_612154D285265A22 +1C001770_895FF0EF85228082 +1C001778_8522BF5D3D5000EF +1C001780_3C9000EF889FF0EF +1C001788_D155FBCFF0EF8522 +1C001790_504C07B000EFD8E1 +1C001798_439C4595581CC589 +1C0017A0_00EF448144088D9D +1C0017A8_BF4D07D000EF7780 +1C0017B0_CA26CC22CE061101 +1C0017B8_E10DC452C64EC84A +1C0017C0_1C0086371C0086B7 +1C0017C8_3B46061300068693 +1C0017D0_1C0085376FF00593 +1C0017D8_7ED010EF00850513 +1C0017E0_413CED918932842A +1C0017E8_86371C0086B7CF81 +1C0017F0_06132B4686931C00 +1C0017F8_BFD9700005933B46 +1C001800_8463450103842983 +1C001808_8522044444830209 +1C001810_01849A13FDAFF0EF +1C001818_2C23418A5A1319FD +1C001820_02FA176357FD0334 +1C001828_40F24505EB91481C +1C001830_49B2494244D24462 +1C001838_0513808261054A22 +1C001840_03E3D56529490104 +1C001848_00F920234785FE09 +1C001850_84E104E20485BFF1 +1C001858_97B7BFC104940223 +1C001860_4701C48786931C00 +1C001868_A8034621C4878793 +1C001870_070E000817630006 +1C001878_8082C3C8C38C97BA +1C001880_FEC715E306A10705 +1C001888_86931C0097B78082 +1C001890_C48787934701C487 +1C001898_00A5996342CC4621 +1C0018A0_0007A02397BA070E +1C0018A8_070580820007A223 +1C0018B0_8082FEC714E306A1 +1C0018B8_E10DC422C6061141 +1C0018C0_1C0086371C0086B7 +1C0018C8_000686931C008537 +1C0018D0_7BB005933A460613 +1C0018D8_6ED010EF00850513 +1C0018E0_442285223765842A +1C0018E8_0A60106F014140B2 +1C0018F0_C04AC226C4221141 +1C0018F8_893284AEC606842A +1C001900_0444478370C000EF +1C001908_946387E107E2577D +1C001910_47830404022300E7 +1C001918_87E107E2577D0454 +1C001920_040402A300E79463 +1C001928_E7915C1C6FE000EF +1C001930_0244051385A6864A +1C001938_40B2442285222E81 +1C001940_F06F014149024492 +1C001948_C64ECA261101EC2F +1C001950_D5418793D881A983 +1C001958_4388842ACC224398 +1C001960_480702A3CE06C84A +1C001968_DBAFF0EF892E0511 +1C001970_4398ED09D5418793 +1C001978_4290574CD7018693 +1C001980_471300B717334705 +1C001988_577DC2988F71FFF7 +1C001990_00090E6302E41063 +1C001998_44D240F24462438C +1C0019A0_8513059149B24942 +1C0019A8_D34FF06F610594C1 +1C0019B0_7E63C340944E4398 +1C0019B8_4462D5C1A5030134 +1C0019C0_494244D240F2438C +1C0019C8_F06F6105059149B2 +1C0019D0_438CD581A503D2AF +1C0019D8_8793D1EFF0EF0591 +1C0019E0_00E473634398D781 +1C0019E8_44D2446240F2C380 +1C0019F0_8082610549B24942 +1C0019F8_4394431CD5818713 +1C001A00_577DE681D7818793 +1C001A08_475843188082C398 +1C001A10_8793BFD543584758 +1C001A18_C39807054398D681 +1C001A20_8082D881A5038082 +1C001A28_D6067179D681A783 +1C001A30_CE4ED04AD226D422 +1C001A38_C65EC85ACA56CC52 +1C001A40_9163C06AC266C462 +1C001A48_AA03D88187931207 +1C001A50_0147A0230A050007 +1C001A58_D5818793040A1463 +1C001A60_86B7C31543184398 +1C001A68_65851C0086371C00 +1C001A70_42C686931C008537 +1C001A78_AA9585935CC60613 +1C001A80_545010EF3E850513 +1C001A88_43104394D5C18713 +1C001A90_D7C18793C314C390 +1C001A98_3FA9C39807054398 +1C001AA0_94B7439CD7818793 +1C001AA8_8493D78189931C00 +1C001AB0_4401D5418A93C884 +1C001AB8_000AA78304FA7163 +1C001AC0_02E787B357DC4751 +1C001AC8_F3634785409894BE +1C001AD0_D8C1A783440500E7 +1C001AD8_852250B24405C391 +1C001AE0_49F2590254925422 +1C001AE8_4BB24B424AD24A62 +1C001AF0_61454D024C924C22 +1C001AF8_87934CD14C058082 +1C001B00_E70943184398D581 +1C001B08_B77D00F9A02357FD +1C001B10_00C7A90347DC439C +1C001B18_FEFA67E300492783 +1C001B20_F0EF856A00490D13 +1C001B28_C78902892783C00F +1C001B30_BF2FF0EF01890513 +1C001B38_D701871302C92503 +1C001B40_053300AC17B34314 +1C001B48_C31C85EA8FD50395 +1C001B50_A783B8EFF0EF9526 +1C001B58_57DC02C92703000A +1C001B60_BF614405F8F76FE3 +1C001B68_44014398D8018793 +1C001B70_A703B7A5C3980705 +1C001B78_C701D8C18793D681 +1C001B80_11418082C3984705 +1C001B88_0007A023C606C422 +1C001B90_A737439CD5418793 +1C001B98_5B9C5A570713A5A5 +1C001BA0_1B634390D5418413 +1C001BA8_00C6986343D400E6 +1C001BB0_47DC00D715634798 +1C001BB8_400C400800E78863 +1C001BC0_5D8010EF03458593 +1C001BC8_ABEFF0EFD701A503 +1C001BD0_47D140A70533477D +1C001BD8_1C00973702F507B3 +1C001BE0_C8870713C8870693 +1C001BE8_86B7E215429096BE +1C001BF0_65851C0086371C00 +1C001BF8_4A4686931C008537 +1C001C00_BE1585935B860613 +1C001C08_3BD010EF3E850513 +1C001C10_425097BA07A142D0 +1C001C18_425C00F61463C2D0 +1C001C20_02F5053347D1C2DC +1C001C28_9737435C972A40B2 +1C001C30_401CC01C47DC1C00 +1C001C38_2223058787934422 +1C001C40_114180820141C4F7 +1C001C48_86B7E115C422C606 +1C001C50_65851C0086371C00 +1C001C58_4EC686931C008537 +1C001C60_BFA585935A060613 +1C001C68_35D010EF3E850513 +1C001C70_05E1D541A583842E +1C001C78_44228522A80FF0EF +1C001C80_B1D10141458540B2 +1C001C88_C226C422C6061141 +1C001C90_86371C0086B7E115 +1C001C98_1C00853765851C00 +1C001CA0_674606134EC68693 +1C001CA8_3E850513C2558593 +1C001CB0_A583842E319010EF +1C001CB8_F0EF05E184B2D541 +1C001CC0_8522547DC091A22F +1C001CC8_449285A640B24422 +1C001CD0_1101455CB9A50141 +1C001CD8_E015CE0647C0CC22 +1C001CE0_1C0086371C0086B7 +1C001CE8_86931C0085376585 +1C001CF0_8593658606134F86 +1C001CF8_10EF3E850513C555 +1C001D00_852E018405932CB0 +1C001D08_A783A1CFF0EFC62E +1C001D10_0593EBB145B2D681 +1C001D18_F0EFC62E852E0044 +1C001D20_D70187135448A08F +1C001D28_00A797B347854314 +1C001D30_053347D1C31C8FD5 +1C001D38_1C0097B745B202F5 +1C001D40_F0EF953EC8878793 +1C001D48_5458D541A78399AF +1C001D50_00E7F66357DC4501 +1C001D58_4505D8E1A6234705 +1C001D60_80826105446240F2 +1C001D68_A783BFE993818513 +1C001D70_D881A783C11CD7C1 +1C001D78_A62347058082C15C +1C001D80_D841A7838082D8E1 +1C001D88_D681A503C7914505 +1C001D90_8082050600153513 +1C001D98_8713CA261101C945 +1C001DA0_CC22555C4314D541 +1C001DA8_842AC84ACE0656D4 +1C001DB0_08D7F463D5418493 +1C001DB8_4098000747634D18 +1C001DC0_CD188F1547155754 +1C001DC8_953702D787B346D1 +1C001DD0_0913C88507131C00 +1C001DD8_1B63485897BAC885 +1C001DE0_852E0044059304F7 +1C001DE8_45B293CFF0EFC62E +1C001DF0_5450E911D7018713 +1C001DF8_00C797B347854314 +1C001E00_C31C8FF5FFF7C793 +1C001E08_478557C84314409C +1C001E10_C31C8FD500A797B3 +1C001E18_02F50533D44847D1 +1C001E20_45058BEFF0EF954A +1C001E28_494244D2446240F2 +1C001E30_57DC409C80826105 +1C001E38_4928431CB7F5D45C +1C001E40_B7CD00F5353357DC +1C001E48_4501E90180824501 +1C001E50_446240F245018082 +1C001E58_D541A78380826105 +1C001E60_842ACE06CC221101 +1C001E68_1C0086B702A78263 +1C001E70_853765851C008637 +1C001E78_0613508686931C00 +1C001E80_3E85051305CD6286 +1C001E88_E38D4BFC141010EF +1C001E90_1C0086371C0086B7 +1C001E98_86931C0085376585 +1C001EA0_05D1628606135206 +1C001EA8_11D010EF3E850513 +1C001EB0_C97C17FD49385554 +1C001EB8_0593FBD9F8E68DE3 +1C001EC0_F0EFC62E852E0045 +1C001EC8_45B21C009637860F +1C001ED0_D7018713C8860613 +1C001ED8_06B346D15448E105 +1C001EE0_EB89429C96B202D5 +1C001EE8_00A797B347854314 +1C001EF0_C31C8FF5FFF7C793 +1C001EF8_8E9D43084695483C +1C001F00_00F696B34685CC14 +1C001F08_02A7853345518EC9 +1C001F10_E0EF9532C314D45C +1C001F18_0663BF254505FCBF +1C001F20_CC22110149740E05 +1C001F28_E295842ACA26CE06 +1C001F30_1C0086371C0086B7 +1C001F38_86931C0085376585 +1C001F40_8593604606135206 +1C001F48_10EF3E8505130625 +1C001F50_00B7F363493C07B0 +1C001F58_0AF70263545887AE +1C001F60_A68308C69F634605 +1C001F68_86B702869363D541 +1C001F70_65851C0086371C00 +1C001F78_538686931C008537 +1C001F80_07D5859360460613 +1C001F88_03D010EF3E850513 +1C001F90_0006C663D45C4C14 +1C001F98_CC1C40F687B34695 +1C001FA0_953702D7073346D1 +1C001FA8_0493C88507931C00 +1C001FB0_9563485C973EC885 +1C001FB8_852E0044059304E7 +1C001FC0_5454F65FE0EFC62E +1C001FC8_E909D701871345B2 +1C001FD0_00D797B347854310 +1C001FD8_C31C8FF1FFF7C793 +1C001FE0_431002A685334551 +1C001FE8_00D797B344624785 +1C001FF0_9526C31C8FD140F2 +1C001FF8_EE5FE06F610544D2 +1C002000_610544D2446240F2 +1C002008_3004707380828082 +1C002010_8793CB81D841A783 +1C002018_42F8439C4394D541 +1C002020_A7838082C2F80705 +1C002028_D5418793CF99D841 +1C002030_4394CB1143784398 +1C002038_C2F8177D42F8439C +1C002040_30046073E39943FC +1C002048_1993CE4E71798082 +1C002050_854E8B2AC85A0026 +1C002058_C65ECA56D04AD226 +1C002060_C462CC52D422D606 +1C002068_8ABE893A8BB684AE +1C002070_8A2AC90D0FB000EF +1C002078_0EF000EF48800513 +1C002080_03452823CD19842A +1C002088_85520A500593864E +1C002090_03042C03DEBFE0EF +1C002098_A03502040A23E889 +1C0020A0_557D0F1000EF8552 +1C0020A8_0344079385A6AA49 +1C0020B0_0005870301048693 +1C0020B8_0585C70900E78023 +1C0020C0_01A3FED599E30785 +1C0020C8_0127F36347910404 +1C0020D0_855200440A134911 +1C0020D8_0524282303242623 +1C0020E0_DF7FE0EF04042A23 +1C0020E8_DEFFE0EF01840513 +1C0020F0_2023412704B34715 +1C0020F8_4581428006134804 +1C002100_2223D040CC04C800 +1C002108_0513480402230404 +1C002110_0793D69FE0EF0584 +1C002118_3AC40793CC7C3444 +1C002120_414407934705D03C +1C002128_478110E42023D07C +1C002130_10F42223ABCD3737 +1C002138_1004079330E70713 +1C002140_0713E66D1737C798 +1C002148_0005E737C7D82347 +1C002150_CB9819F1EEC70713 +1C002158_10F41A2347AD99E2 +1C002160_85DA865E480402A3 +1C002168_C95FE0EFFF09F513 +1C002170_A023000A8463C008 +1C002178_D60187933D49008A +1C002180_07051C0094B74398 +1C002188_4318D5418713C398 +1C002190_C8848993D5418913 +1C002198_008920230A071D63 +1C0021A0_04F7186347854398 +1C0021A8_06498A93C8848493 +1C0021B0_D13FE0EF04D18526 +1C0021B8_91018A93FE9A9CE3 +1C0021C0_D03FE0EF91018513 +1C0021C8_9241851392418493 +1C0021D0_93818513CF7FE0EF +1C0021D8_96018513CEFFE0EF +1C0021E0_94C18513CE7FE0EF +1C0021E8_D551AC23CDFFE0EF +1C0021F0_D6C18713D491AE23 +1C0021F8_078585D25448431C +1C002200_4314D7018713C31C +1C002208_00A797B34785C43C +1C002210_053347D1C31C8FD5 +1C002218_CC5FE0EF954E02F5 +1C002220_4505D841A7833519 +1C002228_57D800092783CB89 +1C002230_007300F77463545C +1C002238_5492542250B20000 +1C002240_4AD24A6249F25902 +1C002248_61454C224BB24B42 +1C002250_FFD9D841A7838082 +1C002258_57DC545800092783 +1C002260_00892023F8F76AE3 +1C002268_25371C0085B7B771 +1C002270_D741879311411C00 +1C002278_1900061346814701 +1C002280_2F65051355058593 +1C002288_3B754405C606C422 +1C002290_1863263502851B63 +1C002298_A783300470730285 +1C0022A0_44221C009737D541 +1C0022A8_C4F7222305878793 +1C0022B0_A223D6E1AC23577D +1C0022B8_D801A42340B2D8A1 +1C0022C0_57FD6580006F0141 +1C0022C8_1C0086B702F51363 +1C0022D0_853765851C008637 +1C0022D8_0613558686931C00 +1C0022E0_051382A585935F06 +1C0022E8_40B24DE010EF3E85 +1C0022F0_1101808201414422 +1C0022F8_CE06C452C64ECA26 +1C002300_96018493C84ACC22 +1C002308_00092783D6418913 +1C002310_47C044DC39EDDFE5 +1C002318_C0BFE0EF00440513 +1C002320_17FD431CD6018713 +1C002328_17FD00092783C31C +1C002330_051339CD00F92023 +1C002338_58083C9010EF0584 +1C002340_00EF8522652000EF +1C002348_DC227139BF7D64C0 +1C002350_DE06401CD6818413 +1C002358_D452D64ED84ADA26 +1C002360_E395CE5ED05AD256 +1C002368_1C0086371C0086B7 +1C002370_86931C0085376585 +1C002378_85935E06061356C6 +1C002380_10EF3E8505138995 +1C002388_401CC83FF0EF4420 +1C002390_C38D401CC01C17FD +1C002398_C8BFF0EFC62A4501 +1C0023A0_54D24532546250F2 +1C0023A8_5A925A2259B25942 +1C0023B0_808261214BF25B02 +1C0023B8_9937DFF1D601A783 +1C0023C0_9381849344011C00 +1C0023C8_4AD1C88909134985 +1C0023D0_051347C044DCA0B1 +1C0023D8_0593B4DFE0EF0184 +1C0023E0_E0EFC62E852E0044 +1C0023E8_D70187135448B41F +1C0023F0_053300A997B34314 +1C0023F8_C31C8FD545B20355 +1C002400_8793ADFFE0EF954A +1C002408_57DC5458439CD541 +1C002410_D8C1879300F76663 +1C002418_FBD5409C0137A023 +1C002420_8713DD6FF0EFC019 +1C002428_D80184134304D801 +1C002430_DF4FF0EF4985CC89 +1C002438_A023D8C18793C509 +1C002440_2023F8E514FD0137 +1C002448_D7A9D8C1A7830004 +1C002450_B791450500000073 +1C002458_CA26CC22CE061101 +1C002460_86371C0086B7E115 +1C002468_5846869365851C00 +1C002470_CCE5859364060613 +1C002478_3E8505131C008537 +1C002480_ED89842E348010EF +1C002488_1C0086371C0086B7 +1C002490_0613590686936585 +1C002498_BFE9CCF585936406 +1C0024A0_8713B6BFF0EF84AA +1C0024A8_431CD881A683D541 +1C0024B0_431CC7914857C783 +1C0024B8_A8154505480782A3 +1C0024C0_86634501577D401C +1C0024C8_408CD7C1A60302E7 +1C0024D0_450500C5856340D8 +1C0024D8_40E6863300E6FD63 +1C0024E0_97BA8F9502F67263 +1C0024E8_883FF0EFC01C8526 +1C0024F0_B33FF0EFC62A4501 +1C0024F8_44D24532446240F2 +1C002500_0004202380826105 +1C002508_4318D5418713BF55 +1C002510_4394C709D5418793 +1C002518_4388CAF807054AF8 +1C002520_C606C42211418082 +1C002528_D9C18413C04AC226 +1C002530_EF95401CADDFF0EF +1C002538_9741851397418913 +1C002540_98818493987FE0EF +1C002548_97BFE0EF98818513 +1C002550_45C14601D921A823 +1C002558_E0EFD891AA234511 +1C002560_85B7C519C008BB7F +1C002568_F0EF694585931C00 +1C002570_449240B24422AF0F +1C002578_AABFF06F01414902 +1C002580_C908C14CC6061141 +1C002588_4D1802B6616387AA +1C002590_00E6796345058E15 +1C002598_D941A50300478593 +1C0025A0_40B24501959FE0EF +1C0025A8_00D6756380820141 +1C0025B0_8593FED5FAE34505 +1C0025B8_B7CDD901A5030047 +1C0025C0_A7833FB9C6061141 +1C0025C8_1C0086B7E38DD9C1 +1C0025D0_1C0085371C008637 +1C0025D8_7B06061369C68693 +1C0025E0_6A45051311300593 +1C0025E8_1C0085B71E0010EF +1C0025F0_DA0187931C002537 +1C0025F8_1900061346814711 +1C002600_754505136E858593 +1C002608_40B2D161A43FF0EF +1C002610_CE06110180820141 +1C002618_86B7E10DCA26CC22 +1C002620_85371C0086371C00 +1C002628_06136F0686931C00 +1C002630_0513182005937506 +1C002638_841318E010EF6A45 +1C002640_87AA401884BAD9C1 +1C002648_C02EC43EC7054501 +1C002650_02B7C4634795C232 +1C002658_4789872AF2CFF0EF +1C002660_0363862646814008 +1C002668_E0EF858A460100F7 +1C002670_44D2446240F2B6BF +1C002678_8642883680826105 +1C002680_E0EF853A858A4681 +1C002688_D2267179B7E5CD1F +1C002690_D422D606CE4ED04A +1C002698_F0EF89AACA56CC52 +1C0026A0_84AAD981A783B84F +1C0026A8_0AF57163D9818913 +1C0026B0_000A2703D9018A13 +1C0026B8_D9418793E795431C +1C0026C0_20234785C3984394 +1C0026C8_50B200F9A02300DA +1C0026D0_49F2009920235422 +1C0026D8_85264AD24A625902 +1C0026E0_475C808261455492 +1C0026E8_00440593439047C0 +1C0026F0_E0EFC42EC632852E +1C0026F8_97828522501C831F +1C002700_463245A202844783 +1C002708_97B24C1CD3DD8B91 +1C002710_000A250300F67963 +1C002718_FDCFE0EFC800C05C +1C002720_458146814701BF41 +1C002728_86B7F15135ED8522 +1C002730_85371C0086371C00 +1C002738_06136F8686931C00 +1C002740_051339D0059379C6 +1C002748_A02307E010EF6A45 +1C002750_C0CA715DBFB50009 +1C002758_DA56DE4E1C008937 +1C002760_DC52C2A6C4A2C686 +1C002768_72890913D65ED85A +1C002770_D9018B93D901A783 +1C002778_47DCC48143844405 +1C002780_A92FF0EF43844401 +1C002788_8B2A47C237090808 +1C002790_E045E3F9D9C18A13 +1C002798_BB1FF0EF0A956463 +1C0027A0_47C047DC000BA783 +1C0027A8_F7AFE0EF00440513 +1C0027B0_0047F71302844783 +1C0027B8_865A86A64C0CC321 +1C0027C0_DBDFF0EF852295A6 +1C0027C8_862646814701C91D +1C0027D0_E505358185224581 +1C0027D8_1C0086371C0086B7 +1C0027E0_784606136F868693 +1C0027E8_1C00853721100593 +1C0027F0_7D5000EF6A450513 +1C0027F8_501C02F404239BF9 +1C002800_250344A597828522 +1C002808_E0EF080C4601000A +1C002810_456247C2DD39CC7F +1C002818_485C44620407C463 +1C002820_47C235A50068E7B9 +1C002828_078AFCF4EEE3862A +1C002830_A7838782439C97CA +1C002838_001434134380D941 +1C002840_85B38622000A2503 +1C002848_F0EF8A6FF0EF4164 +1C002850_00000073F94DAFFF +1C002858_B75DAF3FF0EFB775 +1C002860_47C2978245F247D2 +1C002868_0513BF45F807CFE3 +1C002870_B775EB4FE0EF0044 +1C002878_85224C0C02844783 +1C002880_02F404230017E793 +1C002888_CF5FF0EF95B646D2 +1C002890_97828522501CD93D +1C002898_D7A58B9102844783 +1C0028A0_4681470146524C1C +1C0028A8_F0EF85224581963E +1C0028B0_1C0086B7F931D67F +1C0028B8_6F8686931C008637 +1C0028C0_32C0059376860613 +1C0028C8_9BF902844783B715 +1C0028D0_4783BF0D02F40423 +1C0028D8_04230017E7930284 +1C0028E0_ED81CC0C45D202F4 +1C0028E8_1C0086371C0086B7 +1C0028F0_7686061370068693 +1C0028F8_86AABDC534400593 +1C002900_C7DFF0EF852295AA +1C002908_F71302844783BDFD +1C002910_28B58522FF550027 +1C002918_C602CE061101B5FD +1C002920_A7B7C63E305027F3 +1C002928_8BBD9B0787931C01 +1C002930_96371C0086B7C38D +1C002938_86931C0085371C00 +1C002940_0593844606137C86 +1C002948_00EF7EC505130A90 +1C002950_879367852A7167B0 +1C002958_E0EF3047A0738007 +1C002960_6105450140F2BA2F +1C002968_CC22CE0611018082 +1C002970_45328A4FF0EFC62A +1C002978_F0EF842A791000EF +1C002980_001000EFE0199CFF +1C002988_61054462852240F2 +1C002990_C62ACE0611018082 +1C002998_453287CFF0EFC911 +1C0029A0_610540F2775000EF +1C0029A8_610540F29A5FF06F +1C0029B0_07B78082557D8082 +1C0029B8_1A1047B78D5D8000 +1C0029C0_0073C3880A078793 +1C0029C8_C1DC6789BFF51050 +1C0029D0_8082450580824501 +1C0029D8_808200153513157D +1C0029E0_557DDCE1A0234759 +1C0029E8_4501808245018082 +1C0029F0_88334785157D8082 +1C0029F8_668900A7EB6300C5 +1C002A00_1A10F537F8068693 +1C002A08_8082853201059A63 +1C002A10_DCE1A02305800713 +1C002A18_C88305858082557D +1C002A20_27F3F1402773FFF5 +1C002A28_7713078A070EF140 +1C002A30_97BA972A8FF50FF7 +1C002A38_97B7B7F10117A023 +1C002A40_872AC3C787931C00 +1C002A48_86931C0196B74388 +1C002A50_00D76763972A1B06 +1C002A58_557DDCE1A0234731 +1C002A60_E06F8082C3988082 +1C002A68_006F8E3FF06FFB1F +1C002A70_E0EFC606114169B0 +1C002A78_014140B2C509FB3F +1C002A80_014140B28F6FF06F +1C002A88_4501458111418082 +1C002A90_45817CE000EFC606 +1C002A98_45817C6000EF4505 +1C002AA0_00EF7BE000EF4509 +1C002AA8_87931C0037370970 +1C002AB0_D798A727071399C1 +1C002AB8_E42707131C001737 +1C002AC0_4569089000EFD7B8 +1C002AC8_014140B20BD000EF +1C002AD0_458111410670006F +1C002AD8_750000EFC6064501 +1C002AE0_A0231C0097B740B2 +1C002AE8_114180820141C4A7 +1C002AF0_00EFC60602000513 +1C002AF8_4000051340B20190 +1C002B00_897D0290006F0141 +1C002B08_99C1851300251793 +1C002B10_97B78782411C953E +1C002B18_C11C680787930098 +1C002B20_000512230FF00793 +1C002B28_0005262300052423 +1C002B30_414C808200F51823 +1C002B38_4508414CAE490521 +1C002B40_7159A4494508AB01 +1C002B48_D6860828842AD4A2 +1C002B50_00EFC236C432C62E +1C002B58_45B2462246920E50 +1C002B60_08283FF985220838 +1C002B68_00EF082814F000EF +1C002B70_6165542650B61150 +1C002B78_7159A21545088082 +1C002B80_D6860828842AD4A2 +1C002B88_00EFC236C432C62E +1C002B90_45B2462246920AD0 +1C002B98_08283FF985220838 +1C002BA0_00EF0828117000EF +1C002BA8_6165542650B60DD0 +1C002BB0_8082300475738082 +1C002BB8_7773808230051073 +1C002BC0_CA48415C41D43004 +1C002BC8_CE54439C4594CE14 +1C002BD0_49D4D214D2504194 +1C002BD8_4394D61404062023 +1C002BE0_1073C3D0C390E699 +1C002BE8_43D4808245013007 +1C002BF0_300027F3BFCDC2B0 +1C002BF8_4388411C300476F3 +1C002C00_E319C3984138C511 +1C002C08_300690730007A223 +1C002C10_4783C50941488082 +1C002C18_808200B793630385 +1C002C20_873E415CBFCD4108 +1C002C28_43940387C603CB89 +1C002C30_A023C31400B61663 +1C002C38_87B6873E80820007 +1C002C40_C19CC1C8415CB7E5 +1C002C48_842AC42211418082 +1C002C50_69A000EFC6064509 +1C002C58_FFF4079302A47063 +1C002C60_77930287D53397AA +1C002C68_81050505C3910015 +1C002C70_80820141442240B2 +1C002C78_0FF00793BFDD4501 +1C002C80_0055579300A7EF63 +1C002C88_078A07111A106737 +1C002C90_15334705439497BA +1C002C98_8082C3888D5500A7 +1C002CA0_00452B03C0DA711D +1C002CA8_CCA2CE86DE5EC8CA +1C002CB0_C2D6C4D2C6CECAA6 +1C002CB8_2B83014B448367C1 +1C002CC0_00C7F46389320085 +1C002CC8_8A2E842A2F1000EF +1C002CD0_EDFFF0EFC63A89B6 +1C002CD8_8AAA463203944803 +1C002CE0_03A4478300080E63 +1C002CE8_00F037B348C14705 +1C002CF0_0893480900E80863 +1C002CF8_48A14781A0190200 +1C002D00_4783E75500CB2703 +1C002D08_2623100007370384 +1C002D10_FFF887138FD90174 +1C002D18_F793C81C031958B3 +1C002D20_0017B79317F100C9 +1C002D28_07378FD907EE0742 +1C002D30_0039F9938FD97000 +1C002D38_C85C0117E7B318FD +1C002D40_07B706F983634785 +1C002D48_2737CC1C07859000 +1C002D50_0713001487931A10 +1C002D58_2623079E08060807 +1C002D60_6813000B242300CB +1C002D68_0147A02397BA0108 +1C002D70_879300395913091D +1C002D78_A4230127A2230007 +1C002D80_4741D38004310107 +1C002D88_4466D7984751D3D8 +1C002D90_49B6494644D640F6 +1C002D98_85565BF24B064A26 +1C002DA0_E15FF06F61254A96 +1C002DA8_BF79078D900007B7 +1C002DB0_CC4ECE528522082C +1C002DB8_D602D43ED25ED04A +1C002DC0_2E83B7E9DFFFF0EF +1C002DC8_D422D60671790045 +1C002DD0_C7836741863A88B2 +1C002DD8_746300852803014E +1C002DE0_74731D7000EF0117 +1C002DE8_0963039543033004 +1C002DF0_4E0503A547030A03 +1C002DF8_0BC3156300E03733 +1C002E00_186300CEAF034E41 +1C002E08_2623038547030A0F +1C002E10_6733100008370105 +1C002E18_FFFE0713C9180107 +1C002E20_00C6F81303C8DE33 +1C002E28_0742001838131871 +1C002E30_073700E86833086E +1C002E38_8A8D00E868336000 +1C002E40_01C868331E7D4705 +1C002E48_06E6816301052A23 +1C002E50_07850685900006B7 +1C002E58_0713CD141A102737 +1C002E60_00CEA623079E0807 +1C002E68_053197BA000EA423 +1C002E70_4741D38800078793 +1C002E78_0306D7984751D3D8 +1C002E80_089DCB8C01036313 +1C002E88_0117AA230038D893 +1C002E90_542285220067AC23 +1C002E98_D1DFF06F614550B2 +1C002EA0_4309BFB94E214701 +1C002EA8_06B7BF9902000E13 +1C002EB0_C62EB74D068D9000 +1C002EB8_C846C436002C4785 +1C002EC0_F0EFCE3ECC3ACA42 +1C002EC8_CC221101B7E9CF9F +1C002ED0_CE06842EC452C64E +1C002ED8_8A2AC256C84ACA26 +1C002EE0_01140783CD3FF0EF +1C002EE8_17B3078589AA4705 +1C002EF0_42901A1026B700F7 +1C002EF8_01140503C29C8FD1 +1C002F00_0077851300251793 +1C002F08_02A7E0630FF00793 +1C002F10_1A1066B700555793 +1C002F18_439497B6078A0691 +1C002F20_FFF7471300A71733 +1C002F28_1C0035B7C3988F75 +1C002F30_0503214910658593 +1C002F38_85931C0035B70114 +1C002F40_29850515050A1485 +1C002F48_1C0035B701140503 +1C002F50_050A050516658593 +1C002F58_891301140A8329B9 +1C002F60_993E002A9793DA41 +1C002F68_4561E89D00092483 +1C002F70_202384AA199000EF +1C002F78_24230005222300A9 +1C002F80_2823000526230005 +1C002F88_452100052A230005 +1C002F90_2023C088179000EF +1C002F98_8A23000522230005 +1C002FA0_07858526489C0154 +1C002FA8_F0EF01040583C89C +1C002FB0_E94100AA2023C65F +1C002FB8_8AAAC91FF0EF4008 +1C002FC0_145000EF03C00513 +1C002FC8_F0EF854EED11892A +1C002FD0_446240F25579BEBF +1C002FD8_4A2249B2494244D2 +1C002FE0_0793808261054A92 +1C002FE8_854E0157F7630FF0 +1C002FF0_BFF95575BC9FF0EF +1C002FF8_D0EF03C006134581 +1C003000_00544683401CE7DF +1C003008_0D2302F926234418 +1C003010_00444683445C02D9 +1C003018_02F92A2302E92823 +1C003020_468307A602D90CA3 +1C003028_E7B38FD907220104 +1C003030_242302D90C230157 +1C003038_85CA012A202300F9 +1C003040_854EC01FF0EF8526 +1C003048_B7594501B71FF0EF +1C003050_C60684AAC2261141 +1C003058_B57FF0EFC04AC422 +1C003060_892A0384C58340C0 +1C003068_481CBBBFF0EF8522 +1C003070_E7B9C81C17FD8526 +1C003078_0017871301444783 +1C003080_C79300E797B34785 +1C003088_43141A102737FFF7 +1C003090_01444503C31C8FF5 +1C003098_BE1FF0EF051D050A +1C0030A0_051D050A01444503 +1C0030A8_4008014447832E31 +1C0030B0_DA41879300279713 +1C0030B8_00EF0007A02397BA +1C0030C0_051000EF85220570 +1C0030C8_854A449240B24422 +1C0030D0_AE5FF06F01414902 +1C0030D8_00E799634705551C +1C0030E0_4D0C4D5051145158 +1C0030E8_EB81CDDFF06F4948 +1C0030F0_4D0C4D5051145158 +1C0030F8_1141BA7FF06F4948 +1C003100_15656B6000EFC606 +1C003108_DA41851300251793 +1C003110_4100C422953E1141 +1C003118_4448E395441CC606 +1C003120_136347854918C901 +1C003128_000426232E5D00F7 +1C003130_C509AC3FF0EF8522 +1C003138_BF69014140B24422 +1C003140_80820141442240B2 +1C003148_9971842AC4221141 +1C003150_B29FF0EFC6060505 +1C003158_40B2442200245513 +1C003160_1141B74D01410519 +1C003168_C6069971842AC422 +1C003170_00245513B0DFF0EF +1C003178_0141051940B24422 +1C003180_C6061141F87FF06F +1C003188_1C00953730047073 +1C003190_53F000EF85850513 +1C003198_C6061141A0019002 +1C0031A0_1C00953730047073 +1C0031A8_527000EF87C50513 +1C0031B0_C2261141A0019002 +1C0031B8_84AAC422C606C04A +1C0031C0_852E30047473892E +1C0031C8_FFE50793CC3FD0EF +1C0031D0_97134785E3918385 +1C0031D8_96BA1A1006B70044 +1C0031E0_17338E79764142D8 +1C0031E8_83410742833D00F9 +1C0031F0_167DC40006378F51 +1C0031F8_063707EA8F710785 +1C003200_C2DC8FD98FF13C00 +1C003208_85138CBFF0EFE099 +1C003210_A02394AA048AA1C1 +1C003218_40B2300410730124 +1C003220_4902854A44924422 +1C003228_A1C1869380820141 +1C003230_07B7CD9900251613 +1C003238_4118953E05121A10 +1C003240_8BBD83E9073E415C +1C003248_00C6873387BAEB81 +1C003250_8082428896B2C31C +1C003258_B7FD00F757B317FD +1C003260_FC9FF06F4585C581 +1C003268_1A10073700451793 +1C003270_CB6386AA435C973E +1C003278_F00005B747100207 +1C003280_25B78E6D3FF58593 +1C003288_8E4D800585930050 +1C003290_FC0105B74750C710 +1C003298_014C05B78E6D15FD +1C0032A0_C0000637C7508E4D +1C0032A8_A1C18613C35C8FD1 +1C0032B0_420C962A00269513 +1C0032B8_1141C989A1C18713 +1C0032C0_F0EFC60685364601 +1C0032C8_D69321F5CD19EEFF +1C0032D0_8ABD83C107C201A7 +1C0032D8_D7B316FDC68107BE +1C0032E0_8082C31C972A00D7 +1C0032E8_47058082014140B2 +1C0032F0_470900E50A6387AA +1C0032F8_E399450100E50463 +1C003300_87938082A1C1A503 +1C003308_B7B780824788A1C1 +1C003310_4705020786931A10 +1C003318_C30801078713C298 +1C003320_4501C39809700713 +1C003328_87931A10A7B78082 +1C003330_65738082C3888047 +1C003338_1A10A7B780823004 +1C003340_C39880878793577D +1C003348_577D1A1067B78082 +1C003350_8693C29800478693 +1C003358_00C78693C2980087 +1C003360_C29801078693C298 +1C003368_8693C29801478693 +1C003370_01C78693C2980187 +1C003378_C39802078793C298 +1C003380_1C0036B780828082 +1C003388_8693A28186134781 +1C003390_97130A8005933826 +1C003398_0785C31497320027 +1C0033A0_95334785FEB79BE3 +1C0033A8_87931A10A7B700A7 +1C0033B0_17938082C3888047 +1C0033B8_953EA28185130025 +1C0033C0_002517938082C10C +1C0033C8_37B7953EA2818513 +1C0033D0_C11C382787931C00 +1C0033D8_CC22CE0611018082 +1C0033E0_342027F330047473 +1C0033E8_E0EF0007DE63006C +1C0033F0_E0EFC39947B2838F +1C0033F8_40F230041073F80F +1C003400_E0EF808261054462 +1C003408_CE061101BFC5820F +1C003410_27F330047473CC22 +1C003418_00700007DC633420 +1C003420_1073B8EFE0EF4581 +1C003428_6105446240F23004 +1C003430_9EAFE0EF55FD8082 +1C003438_C606C4221141B7FD +1C003440_0223C91C842A4785 +1C003448_0FF0051345810405 +1C003450_C919D848D33FD0EF +1C003458_40C787931C0037B7 +1C003460_87931C0037B7DC1C +1C003468_03A34785DC5C3DA7 +1C003470_02A340B257FD04F4 +1C003478_01414422852204F4 +1C003480_C79D047507838082 +1C003488_842AC606C4221141 +1C003490_CB99595C040503A3 +1C003498_C1CFE0EFC5195948 +1C0034A0_02042E2302042C23 +1C0034A8_442240B202042A23 +1C0034B0_1141808280820141 +1C0034B8_4783842AC606C422 +1C0034C0_C79987E107E20444 +1C0034C8_014140B244228522 +1C0034D0_D7E5585CFB3FF06F +1C0034D8_B7C5978258485C1C +1C0034E0_5948842AC4221141 +1C0034E8_97825C5CC119C606 +1C0034F0_40B204F402234785 +1C0034F8_C14C808201414422 +1C003500_2623106871458082 +1C003508_22231C8124231C11 +1C003510_2E231D2120231C91 +1C003518_CC021B412C231B31 +1C003520_DF2FF0EF00010E23 +1C003528_68078793009897B7 +1C003530_10000793106CD63E +1C003538_DA0202F118231008 +1C003540_F0EF02011E23DC02 +1C003548_DEAFF0EF1008FB9F +1C003550_1CC12083547DC10D +1C003558_24831C8124038522 +1C003560_29831C0129031C41 +1C003568_61791B812A031BC1 +1C003570_1C009537842A8082 +1C003578_157000EF89450513 +1C003580_CEAFF0EF10000513 +1C003588_DB418493DAA1AA23 +1C003590_05131C009537D169 +1C003598_0513139000EF8A85 +1C0035A0_A623CCCFF0EF1000 +1C0035A8_D155DAC18913DAA1 +1C0035B0_8BC505131C009537 +1C0035B8_1000051311B000EF +1C0035C0_DAA1A823CAEFF0EF +1C0035C8_9537D159DB018A13 +1C0035D0_00EF8D0505131C00 +1C0035D8_1000069347810FD0 +1C0035E0_00F70023973E4098 +1C0035E8_9537FED79BE30785 +1C0035F0_8E05051349991C00 +1C0035F8_0D7000EF01310B23 +1C003600_F0EF01310B2300A8 +1C003608_46214681872AE35F +1C003610_F0EF100801610593 +1C003618_0C23090847C9D2CF +1C003620_872AE19FF0EF00F1 +1C003628_082C028006134685 +1C003630_408CD10FF0EF1008 +1C003638_C62E1C0099B709A8 +1C003640_660545B2DFBFF0EF +1C003648_800606134681872A +1C003650_4795CF0FF0EF1008 +1C003658_0BA357FD00F10B23 +1C003660_05934621468500F1 +1C003668_CDAFF0EF10080161 +1C003670_0171059346214681 +1C003678_4583D04FF0EF1008 +1C003680_F5938F0985130171 +1C003688_478372A000EF0FF5 +1C003690_47CDF7F98B850171 +1C003698_F0EF00F10C231208 +1C0036A0_06134685872AD9DF +1C0036A8_F0EF1008082C0280 +1C0036B0_12A800092583C94F +1C0036B8_45B2D81FF0EFC62E +1C0036C0_06134681872A6605 +1C0036C8_CAEFF0EF10088006 +1C0036D0_0908DE5FF0EF00A8 +1C0036D8_F0EF09A8DDFFF0EF +1C0036E0_DD3FF0EF1208DD9F +1C0036E8_9537DCDFF0EF12A8 +1C0036F0_00EF904505131C00 +1C0036F8_A803000925037DC0 +1C003700_4581000A28830004 +1C003708_00B5073310000793 +1C003710_0007468300B80633 +1C003718_00C68F6300064603 +1C003720_0003430300B88333 +1C003728_1C00953700C30963 +1C003730_680000EF91C50513 +1C003738_FCF598E30585BD29 +1C003740_954505131C009537 +1C003748_F0EF100878A000EF +1C003750_C6061141B509BEEF +1C003758_11012865DABFF0EF +1C003760_9537B28FF0EFCE06 +1C003768_00EF964505131C00 +1C003770_35371C0095B77640 +1C003778_46814705007C1C00 +1C003780_9885859319000613 +1C003788_E0EFC60275450513 +1C003790_00F50A6347858BDF +1C003798_990505131C009537 +1C0037A0_20BD557D732000EF +1C0037A8_ABFFE0EF300467F3 +1C0037B0_80826105450140F2 +1C0037B8_00EFC60645191141 +1C0037C0_9F2FF0EF45050AD0 +1C0037C8_C447A7831C0097B7 +1C0037D0_88AAC60688321141 +1C0037D8_0E63863647C8872E +1C0037E0_87931C0097B70008 +1C0037E8_86C61C0095B79A07 +1C0037F0_F0EF20599B058593 +1C0037F8_07931C009837FC3F +1C003800_B7D59AC808139AC8 +1C003808_45014601468185AA +1C003810_47B711412670006F +1C003818_8793C606C4221C00 +1C003820_4581C781842A2F27 +1C003828_1C0097B72CB000EF +1C003830_C391551CBD87A503 +1C003838_97AFF0EF85229782 +1C003840_C4221C0097B71141 +1C003848_BDC787131C009437 +1C003850_C2268C19BDC40413 +1C003858_BDC784938409C606 +1C003860_4492442240B2E411 +1C003868_1793147D80820141 +1C003870_9782439C97A60024 +1C003878_97B7DA3E7139B7E5 +1C003880_85AA862ED4321C00 +1C003888_1034D636C447A503 +1C003890_DE46DC42D83ACE06 +1C003898_612140F22C8DC636 +1C0038A0_C226C42211418082 +1C0038A8_1C0094B71C009437 +1C0038B0_BDC40413BDC48793 +1C0038B8_8409C606C04A8C1D +1C0038C0_17634901BDC48493 +1C0038C8_94371C0094B70289 +1C0038D0_0413BDC487931C00 +1C0038D8_849384098C1DBDC4 +1C0038E0_00891D634901BDC4 +1C0038E8_49024492442240B2 +1C0038F0_0905409C80820141 +1C0038F8_409CB7E997820491 +1C003900_BFF9978204910905 +1C003908_A50385AA1C0097B7 +1C003910_1C0097B7A85DC447 +1C003918_A009C447A50385AA +1C003920_1101FFC5A783C1DD +1C003928_FFC58413CE06CC22 +1C003930_C62A943E0007D363 +1C003938_DB81A78392EFF0EF +1C003940_2223EB91863A4532 +1C003948_4462DA81AC230004 +1C003950_916FF06F610540F2 +1C003958_0733401400F47F63 +1C003960_439800E7966300D4 +1C003968_C05CC018973643DC +1C003970_873EBFE9DA81AC23 +1C003978_FEF47DE3C39943DC +1C003980_1F6300D706334314 +1C003988_C31496B240100086 +1C003990_FAC79DE300D70633 +1C003998_C31496B243DC4390 +1C0039A0_00C47563B775C35C +1C0039A8_4010B74DC11C47B1 +1C0039B0_00D7966300C406B3 +1C0039B8_C01496B243DC4394 +1C0039C0_8082B769C340C05C +1C0039C8_00358493CA261101 +1C0039D0_CC22CE06C84A98F1 +1C0039D8_892A47B104A1C64E +1C0039E0_E26344B104F4F363 +1C0039E8_87AFF0EF854A04B4 +1C0039F0_DB818693DB81A703 +1C0039F8_DBC18413E039843A +1C003A00_854A4581E789401C +1C003A08_854A85A6C0082BD1 +1C003A10_07351A6359FD23F1 +1C003A18_854A00F9202347B1 +1C003A20_D0E3A03184AFF0EF +1C003A28_00F9202347B1FC04 +1C003A30_44D2446240F24501 +1C003A38_8082610549B24942 +1C003A40_0207CF638F85401C +1C003A48_C01C00F67663462D +1C003A50_405CA029C004943E +1C003A58_854AC29C02871363 +1C003A60_00B4051380AFF0EF +1C003A68_0733996100440793 +1C003A70_943AFCF500E340F5 +1C003A78_C35CBF5DC01C8F89 +1C003A80_BF9540408722BFF9 +1C003A88_02E3987100350413 +1C003A90_854A40A405B3FC85 +1C003A98_BFADFB351CE32391 +1C003AA0_D963C61C17FD461C +1C003AA8_00E7C5634E180007 +1C003AB0_ABD500F5936347A9 +1C003AB8_00178713852E421C +1C003AC0_808200B78023C218 +1C003AC8_C84ACA26CC221101 +1C003AD0_892ACE06C452C64E +1C003AD8_00D604B3843289AE +1C003AE0_4501009414635A7D +1C003AE8_864E00044583A811 +1C003AF0_0405FAFFF0EF854A +1C003AF8_446240F2FF4515E3 +1C003B00_4A2249B2494244D2 +1C003B08_D522717180826105 +1C003B10_D706CF4ED14AD326 +1C003B18_C75EC95ACB56CD52 +1C003B20_DEEEC16AC366C562 +1C003B28_8436893284AE89AA +1C003B30_00EFE3994D1CC509 +1C003B38_87931C0097B72EF0 +1C003B40_A4830EF49663A147 +1C003B48_8BA100C4D7830049 +1C003B50_8E63489C10078163 +1C003B58_04A3020007930E07 +1C003B60_D2020300079302F1 +1C003B68_0C93C62202F10523 +1C003B70_9BB71C009B370250 +1C003B78_4C371C009D371C00 +1C003B80_844A00000A931C00 +1C003B88_9763C39900044783 +1C003B90_0E6341240DB30F97 +1C003B98_85A6864A86EE0124 +1C003BA0_57FDF27FF0EF854E +1C003BA8_97EE57921EF50563 +1C003BB0_8E6300044783D23E +1C003BB8_0014091357FD1C07 +1C003BC0_CC02CA3ECE02C802 +1C003BC8_4D85D482040109A3 +1C003BD0_0513461500094583 +1C003BD8_47C24C1000EF9E0B +1C003BE0_F713ED5100190413 +1C003BE8_02000713C7090107 +1C003BF0_0087F71304E109A3 +1C003BF8_09A302B00713C709 +1C003C00_07130009468304E1 +1C003C08_47F208E6846302A0 +1C003C10_452946254681844A +1C003C18_0014059300044703 +1C003C20_0AE67C63FD070713 +1C003C28_97B7A89DCE3ECEAD +1C003C30_9563A34787931C00 +1C003C38_B7310089A48300F4 +1C003C40_9F4787931C0097B7 +1C003C48_00C9A483F0F491E3 +1C003C50_2B11854E85A6BDED +1C003C58_50BA557DF00501E3 +1C003C60_49FA590A549A542A +1C003C68_4BBA4B4A4ADA4A6A +1C003C70_5DF64D0A4C9A4C2A +1C003C78_B72904058082614D +1C003C80_95338D199E0B0713 +1C003C88_8922C83E8FC900AD +1C003C90_004706934732B781 +1C003C98_02074963C6364318 +1C003CA0_079300044703CE3A +1C003CA8_470306F7106302E0 +1C003CB0_1B6302A007930014 +1C003CB8_8713040947B202F7 +1C003CC0_C163C63A439C0047 +1C003CC8_0733A83DCA3E0207 +1C003CD0_CE3A0027E79340E0 +1C003CD8_02A787B3B7E1C83E +1C003CE0_BF0D97BA4685842E +1C003CE8_CA020405B7C557FD +1C003CF0_4529462547814681 +1C003CF8_0014059300044703 +1C003D00_04E67F63FD070713 +1C003D08_460D00044583F2E9 +1C003D10_387000EF9E8B8513 +1C003D18_8D1D9E8B8793CD01 +1C003D20_00A797B304000793 +1C003D28_C82A8D5D04054542 +1C003D30_0513461900044583 +1C003D38_0423001409139ECD +1C003D40_CD31359000EF02B1 +1C003D48_47B24742020A9763 +1C003D50_0791CF0910077713 +1C003D58_D23E97D25792C63E +1C003D60_842E02A787B3B51D +1C003D68_079DB77197BA4685 +1C003D70_0078B7D507A19BE1 +1C003D78_080C8626AC8C0693 +1C003D80_00E700000097854E +1C003D88_16E38A2A57FD0000 +1C003D90_F79300C4D783FCF5 +1C003D98_5512EC0791E30407 +1C003DA0_AC8C06930078BD7D +1C003DA8_00EF854E080C8626 +1C003DB0_C2BE715DBFE14130 +1C003DB8_842AD4221C0097B7 +1C003DC0_DA2ED606C447A503 +1C003DC8_C4C2C0BADE36DC32 +1C003DD0_E7894D1CC519C6C6 +1C003DD8_453204B000EFC62A +1C003DE0_CE3686221854450C +1C003DE8_542250B2D25FF0EF +1C003DF0_CA26110180826161 +1C003DF8_C64ECC22CE06C84A +1C003E00_C509892E84AAC452 +1C003E08_019000EFE3994D1C +1C003E10_8526E78144804C9C +1C003E18_1C0097B700D000EF +1C003E20_02F41C63A1478793 +1C003E28_8BA100C4578340C0 +1C003E30_59FDC7A1481CC7B1 +1C003E38_00094583441C4A29 +1C003E40_DE63C41CE9B117FD +1C003E48_852645A986220607 +1C003E50_02F5086357FD2CA9 +1C003E58_1C0097B7A0354529 +1C003E60_00F41463A3478793 +1C003E68_1C0097B7B7C14480 +1C003E70_FAF41BE39F478793 +1C003E78_852685A2BF4544C0 +1C003E80_40F2557DD95524ED +1C003E88_49B2494244D24462 +1C003E90_C41C808261054A22 +1C003E98_4C180007D7630905 +1C003EA0_0145896300E7CB63 +1C003EA8_C01800178713401C +1C003EB0_8622B75900B78023 +1C003EB8_F7351FE32AC58526 +1C003EC0_00178713401CB7D1 +1C003EC8_00E780234729C018 +1C003ED0_85AA1C0097B7B761 +1C003ED8_F19FF06FC447A503 +1C003EE0_418C842EC4221141 +1C003EE8_C19184AAC606C226 +1C003EF0_40B2442285A23FC5 +1C003EF8_F06F014144928526 +1C003F00_A7831C0097B7A23F +1C003F08_515C0CA78863C447 +1C003F10_CA26CE06CC221101 +1C003F18_CF81842AC64EC84A +1C003F20_08000913448147DC +1C003F28_C581438C505CE3D9 +1C003F30_484C9EFFF0EF8522 +1C003F38_9E5FF0EF8522C581 +1C003F40_F0EF8522C581504C +1C003F48_8522C5815C0C9DBF +1C003F50_C5815C4C9D1FF0EF +1C003F58_402C9C7FF0EF8522 +1C003F60_9BDFF0EF8522C581 +1C003F68_F0EF8522C5814C6C +1C003F70_8522C5814C2C9B3F +1C003F78_C581584C9A9FF0EF +1C003F80_4C1C99FFF0EF8522 +1C003F88_97828522541CC3B1 +1C003F90_44628522CD8D442C +1C003F98_49B2494244D240F2 +1C003FA0_95A6F3FFF06F6105 +1C003FA8_505C0491E991418C +1C003FB0_8522FF249AE347CC +1C003FB8_A983B7BD969FF0EF +1C003FC0_95DFF0EF85220005 +1C003FC8_446240F2B7C585CE +1C003FD0_610549B2494244D2 +1C003FD8_C422114180828082 +1C003FE0_C606852E842AC226 +1C003FE8_A53FE0EFDC01A023 +1C003FF0_A78300F5166357FD +1C003FF8_40B2C01CC391DC01 +1C004000_8082014144924422 +1C004008_47FDCE06CC221101 +1C004010_47D900B7F963842A +1C004018_446240F2557DC11C +1C004020_862E417C80826105 +1C004028_97BA00259713C791 +1C004030_C6328522EB194398 +1C004038_4462852285AA20BD +1C004040_A80D610540F24632 +1C004048_FCD708E345014685 +1C004050_47D900D7166356FD +1C004058_852EB7C14505C01C +1C004060_450197020007A023 +1C004068_85AA1C0097B7BF55 +1C004070_F95FF06FC447A503 +1C004078_842AC226C4221141 +1C004080_A023C60685B2852E +1C004088_57FD957FE0EFDC01 +1C004090_DC01A78300F51663 +1C004098_442240B2C01CC391 +1C0040A0_E06F808201414492 +1C0040A8_CA26CC22110192FF +1C0040B0_84AAC64ECE06C84A +1C0040B8_4D1CC5018432892E +1C0040C0_1C0097B7238DE391 +1C0040C8_06F41963A1478793 +1C0040D0_5783C41C4C1C40C0 +1C0040D8_481CC3C98BA100C4 +1C0040E0_79934008481CCFBD +1C0040E8_8D1D0FF979130FF9 +1C0040F0_85A200F54663485C +1C0040F8_441CE52D21218526 +1C004100_401CC41C17FD0505 +1C004108_8023C01800178713 +1C004110_00A78963485C0137 +1C004118_CB818B8500C45783 +1C004120_85A200F9166347A9 +1C004128_40F2ED0D2EE18526 +1C004130_854A49B244D24462 +1C004138_97B7808261054942 +1C004140_1463A34787931C00 +1C004148_97B7B759448000F4 +1C004150_1EE39F4787931C00 +1C004158_85A2BF9D44C0F6F4 +1C004160_597DDD3D20218526 +1C004168_1C0097B71141B7D9 +1C004170_C422C447A483C226 +1C004178_842E892AC606C04A +1C004180_8526E3994C9CC489 +1C004188_87931C0097B72971 +1C004190_40C002F41763A147 +1C004198_0107971300C41783 +1C0041A0_EAB583410087F693 +1C0041A8_4725EA9501077693 +1C0041B0_0407E79300E92023 +1C0041B8_A879557D00F41623 +1C0041C0_A34787931C0097B7 +1C0041C8_B7E9448000F41463 +1C0041D0_9F4787931C0097B7 +1C0041D8_BF6D44C0FCF410E3 +1C0041E0_C991584CC7158B11 +1C0041E8_00F5856304440793 +1C0041F0_2A23F2EFF0EF854A +1C0041F8_222300C457830204 +1C004200_1623FDB7F7930004 +1C004208_5783C01C481C00F4 +1C004210_16230087E79300C4 +1C004218_5783EF81481C00F4 +1C004220_F7932000071300C4 +1C004228_85A200E785632807 +1C004230_00C4178323E1854A +1C004238_0017F69301079713 +1C004240_24234854C29D8341 +1C004248_CC1440D006B30004 +1C004250_7713E68145014814 +1C004258_442240B2FF290807 +1C004260_8082014149024492 +1C004268_E291460100277693 +1C004270_A783BFF1C4104850 +1C004278_8513E38D88AADC41 +1C004280_0313DCA1A223CC81 +1C004288_0863CC8187930000 +1C004290_2423000027830003 +1C004298_43D8CC81879308F5 +1C0042A0_04E84663557D487D +1C0042A8_0887A80302088D63 +1C0042B0_0027151304080063 +1C0042B8_10082303C1109542 +1C0042C0_633300E616334605 +1C0042C8_20231068202300C3 +1C0042D0_00D89763468908D5 +1C0042D8_22238E5510482683 +1C0042E0_070A0017069310C8 +1C0042E8_4501C78C97BAC3D4 +1C0042F0_C85ACA5671798082 +1C0042F8_D422D606C266C65E +1C004300_CC52CE4ED04AD226 +1C004308_8AAE8B2AC06AC462 +1C004310_8C13DC41A4834C85 +1C004318_A98340C0CC81DC41 +1C004320_040AFFF409130884 +1C004328_5063942600898A33 +1C004330_5492542250B20209 +1C004338_4AD24A6249F25902 +1C004340_4C924C224BB24B42 +1C004348_8C63808261454D02 +1C004350_197D00099663000A +1C004358_2783BFC914711A71 +1C004360_40D8FF579AE307CA +1C004368_03271863177D405C +1C004370_AD03D3ED0124A223 +1C004378_A683000988630044 +1C004380_8EF9012C97331009 +1C004388_278340D89782EE89 +1C004390_80E3F9A710E3000C +1C004398_00042223BFA5FCF4 +1C0043A0_25831049A683BFD1 +1C0043A8_855AE7018F75FFCA +1C0043B0_9782852EBFE99782 +1C0043B8_110100C5D783BFD1 +1C0043C0_C84ACE06CA26CC22 +1C0043C8_84AA0087F713C64E +1C0043D0_476341D8E37D842E +1C0043D8_00E0446341B800E0 +1C0043E0_DF6D5458A87D4501 +1C0043E8_8FF50004A9036685 +1C0043F0_4868CFAD0004A023 +1C0043F8_C7998B9100C45783 +1C004400_C399585C8D1D405C +1C004408_500C545C8D1D403C +1C004410_978285264681862A +1C004418_1D6300C4570357FD +1C004420_E46347F5409400F5 +1C004428_0785204007B708D7 +1C004430_CFA58B8500D7D7B3 +1C004438_C01C00042223481C +1C004440_57FDC7198F7D6785 +1C004448_E391409C00F51463 +1C004450_0124A023584CC868 +1C004458_856304440793D5C1 +1C004460_CBCFF0EF852600F5 +1C004468_500CBF9502042A23 +1C004470_9702852646014685 +1C004478_409CF6F51FE357FD +1C004480_00E785634775DFA5 +1C004488_A02300E795634759 +1C004490_00C45783B7B90124 +1C004498_00F416230407E793 +1C0044A0_494244D2446240F2 +1C0044A8_67138082610549B2 +1C0044B0_B7ED00E416230407 +1C0044B8_F20982E30105A983 +1C0044C0_A0238B8D0005A903 +1C0044C8_4701413909330135 +1C0044D0_55E3C41849D8E391 +1C0044D8_86CA500C541CF120 +1C0044E0_4A6397828526864E +1C0044E8_557D00C4578300A0 +1C0044F0_00F416230407E793 +1C0044F8_40A9093399AAB765 +1C004500_1101C3A5499CBFD9 +1C004508_C511842ACE06CC22 +1C004510_2239C62EE7814D1C +1C004518_87931C0097B745B2 +1C004520_404C00F59C63A147 +1C004528_8522C79D00C59783 +1C004530_F06F610540F24462 +1C004538_87931C0097B7E85F +1C004540_440C00F59463A347 +1C004548_87931C0097B7B7C5 +1C004550_444CFCF59BE39F47 +1C004558_4501446240F2BFC1 +1C004560_8082450180826105 +1C004568_842AC606C4221141 +1C004570_00C5172300B51623 +1C004578_0005222300052023 +1C004580_0605222300052423 +1C004588_00052A2300052823 +1C004590_4581462100052C23 +1C004598_8DFFC0EF05C50513 +1C0045A0_C2E787931C0057B7 +1C0045A8_87931C0057B7D05C +1C0045B0_1C0057B7D41CC5E7 +1C0045B8_57B7D45CCAC78793 +1C0045C0_40B2CE2787931C00 +1C0045C8_01414422D81CD000 +1C0045D0_85931C0045B78082 +1C0045D8_C2261141AAB15025 +1C0045E0_FFF5849306800613 +1C0045E8_892EC04A02C484B3 +1C0045F0_07448593C606C422 +1C0045F8_CD01842ABD0FF0EF +1C004600_0125222300052023 +1C004608_06848613C4080531 +1C004610_40B2869FC0EF4581 +1C004618_4902449244228522 +1C004620_E7B54D1C80820141 +1C004628_C4221C0047B71141 +1C004630_D51C5D278793C606 +1C004638_BD87A7831C0097B7 +1C004640_0405262304052423 +1C004648_1463842A04052823 +1C004650_8522CD1C478500F5 +1C004658_281D8522C0482835 +1C004660_C44828058522C408 +1C004668_F0EF459146014048 +1C004670_45A546054408EFBF +1C004678_46094448EF1FF0EF +1C004680_4785EE7FF0EF45C9 +1C004688_01414422CC1C40B2 +1C004690_97B7114180828082 +1C004698_BD87A483C2261C00 +1C0046A0_C4224C9CC606C04A +1C0046A8_F0EF8526E781892A +1C0046B0_448004848493F77F +1C0046B8_0007D66317FD40DC +1C0046C0_BFC54084CFB9409C +1C0046C8_77C1E73900C41703 +1C0046D0_2023060422230785 +1C0046D8_2423000422230004 +1C0046E0_00042823C45C0004 +1C0046E8_00042C2300042A23 +1C0046F0_05C4051345814621 +1C0046F8_02042A23F82FC0EF +1C004700_0404242302042C23 +1C004708_852240B204042623 +1C004710_0141490244924422 +1C004718_BF71068404138082 +1C004720_EB9FF0EF854A4591 +1C004728_47B1FD41842AC088 +1C004730_7179BFE100F92023 +1C004738_CC52CE4ED04AD422 +1C004740_D226D606C65EC85A +1C004748_04138A2E892ACA56 +1C004750_5BFD4B0549810485 +1C004758_1AFD00442A834404 +1C004760_F86D4000020AD063 +1C004768_59025492542250B2 +1C004770_4BB24B424AD24A62 +1C004778_8082614549F2854E +1C004780_00FB7B6300C4D783 +1C004788_0177876300E49783 +1C004790_E9B39A02854A85A6 +1C004798_B7C10684849300A9 +1C0047A0_9583892ED0CA7159 +1C0047A8_D686D2A6D4A200E5 +1C0047B0_0005DC6384B68432 +1C0047B8_0004A02300C91783 +1C0047C0_0793E38D0807F793 +1C0047C8_2B9D0030A0054000 +1C0047D0_67BD4732FE0544E3 +1C0047D8_B79397BA77798FF9 +1C0047E0_0793B7CDC09C0017 +1C0047E8_5426C01C50B60400 +1C0047F0_6165450159065496 +1C0047F8_110100C5D7838082 +1C004800_C84ACA26CE06CC22 +1C004808_0793CF89842E8B89 +1C004810_4785C81CC01C0474 +1C004818_44D2446240F2C85C +1C004820_0074808261054942 +1C004828_F75FF0EF892A0030 +1C004830_F0EF854A84AA45A2 +1C004838_00C41783ED01992F +1C004840_9BF1FB792007F713 +1C004848_00F416230027E793 +1C004850_87931C0047B7BF7D +1C004858_578302F924235D27 +1C004860_E793C808C00800C4 +1C004868_47A200F416230807 +1C004870_1583CF8947B2C85C +1C004878_C90129DD854A00E4 +1C004880_E7939BF100C45783 +1C004888_550300F416230017 +1C004890_009416238CC900C4 +1C004898_962A0FF5F593B749 +1C0048A0_8082450100C51463 +1C0048A8_FEB78DE300054783 +1C0048B0_CC527179B7FD0505 +1C0048B8_D42245988A3A499C +1C0048C0_D606CA56CE4ED226 +1C0048C8_89AAC65EC85AD04A +1C0048D0_D3638AB684B2842E +1C0048D8_4703C09C87BA00E7 +1C0048E0_C09C0785C3190434 +1C0048E8_C7810207F793401C +1C0048F0_2903C09C0789409C +1C0048F8_1A63006979130004 +1C004900_5BFD01940B130009 +1C004908_4C638F994098445C +1C004910_36B30434478304F9 +1C004918_0207F793401C00F0 +1C004920_85D604340613EBA5 +1C004928_036357FD9A02854E +1C004930_40984611401C04F5 +1C004938_9763448144548B99 +1C004940_D36340E684B300C7 +1C004948_4818441C44810004 +1C004950_94BE8F9900F75463 +1C004958_98635B7D04694901 +1C004960_4685A80945010524 +1C004968_9A02854E85D6865A +1C004970_50B2557D01751E63 +1C004978_49F2590254925422 +1C004980_4BB24B424AD24A62 +1C004988_BFAD090580826145 +1C004990_0300061300D40733 +1C004998_0454470304C701A3 +1C0049A0_068997A200168793 +1C0049A8_4685BF9D04E781A3 +1C0049B0_9A02854E85D68622 +1C0049B8_B7450905FB650EE3 +1C0049C0_D04AD226D4227179 +1C0049C8_CA56CC52D606CE4E +1C0049D0_07930185C883C85A +1C0049D8_8932842E84AA0780 +1C0049E0_07930117EE6389B6 +1C0049E8_ED63043586930620 +1C0049F0_07931C0883630117 +1C0049F8_0A9312F88A630580 +1C004A00_A80D051401230424 +1C004A08_0FF7F793F9D88793 +1C004A10_9637FEF666E34655 +1C004A18_A7C60613078A1C00 +1C004A20_431C8782439C97B2 +1C004A28_0047869304258A93 +1C004A30_04F58123C314439C +1C004A38_4308419CA25D4785 +1C004A40_004505930807F613 +1C004A48_9837C30C411CC20D +1C004A50_07130007D8631C00 +1C004A58_01A340F007B302D0 +1C004A60_4729A548081304E4 +1C004A68_411C0407F613A0A1 +1C004A70_87C107C2DE71C30C +1C004A78_7513431C4190BFD9 +1C004A80_C501004785930806 +1C004A88_7613A039439CC30C +1C004A90_D783DA7DC30C0406 +1C004A98_07131C0098370007 +1C004AA0_8363A548081306F0 +1C004AA8_040401A347290EE8 +1C004AB0_00064563C4104050 +1C004AB8_E399C00C99ED400C +1C004AC0_F6338AB6CE198AB6 +1C004AC8_460396421AFD02E7 +1C004AD0_863E00CA80230006 +1C004AD8_FEE675E302E7D7B3 +1C004AE0_401C00F71E6347A1 +1C004AE8_481C4058CB918B85 +1C004AF0_0300079300E7C763 +1C004AF8_86B31AFDFEFA8FA3 +1C004B00_86CA874EC8144156 +1C004B08_F0EF852685A20070 +1C004B10_0D451A635A7DDA7F +1C004B18_5492542250B2557D +1C004B20_4AD24A6249F25902 +1C004B28_9837808261454B42 +1C004B30_0813051582A31C00 +1C004B38_7513430C4010A548 +1C004B40_CD050591419C0806 +1C004B48_C70100167713C30C +1C004B50_4741C01002066613 +1C004B58_FDF676134010FBB1 +1C004B60_E793419CB7A9C010 +1C004B68_07800793C19C0207 +1C004B70_04F402A31C009837 +1C004B78_7513BF7DA6880813 +1C004B80_07C2D179C30C0406 +1C004B88_BF394721B7C183C1 +1C004B90_781349CC431C4190 +1C004B98_0663004785130806 +1C004BA0_C38C439CC3080008 +1C004BA8_04067613C308A801 +1C004BB0_00B79023DA75439C +1C004BB8_B7998AB600042823 +1C004BC0_8693458141D0431C +1C004BC8_0007AA83C3140047 +1C004BD0_C501CC9FF0EF8556 +1C004BD8_405CC04841550533 +1C004BE0_BF39040401A3C81C +1C004BE8_852685CA86564814 +1C004BF0_401CF34503E39982 +1C004BF8_444847B2E78D8B89 +1C004C00_BF11853EF0F55DE3 +1C004C08_852685CA86564685 +1C004C10_0A05F16503E39982 +1C004C18_45E38F994732445C +1C004C20_0A934A01BFE9FEFA +1C004C28_1141B7F55B7D0194 +1C004C30_00E59583842EC422 +1C004C38_000549632A51C606 +1C004C40_40B2C87C97AA487C +1C004C48_5783808201414422 +1C004C50_8FF9177D777D00C4 +1C004C58_D783B7ED00F41623 +1C004C60_CA26CC22110100C5 +1C004C68_F793CE06C64EC84A +1C004C70_8932842E84AA1007 +1C004C78_00E59583C79189B6 +1C004C80_57832A2946014689 +1C004C88_8FF9177D777D00C4 +1C004C90_00F4162300E41583 +1C004C98_864A86CE40F24462 +1C004CA0_44D28526494249B2 +1C004CA8_C4221141A83D6105 +1C004CB0_C60600E59583842E +1C004CB8_00C4570357FD20DD +1C004CC0_17FD77FD00F51B63 +1C004CC8_40B200F416238FF9 +1C004CD0_6785808201414422 +1C004CD8_C86800F416238FD9 +1C004CE0_A80D00E59583B7FD +1C004CE8_842AC226C4221141 +1C004CF0_C606863685B2852E +1C004CF8_CF7FD0EFDC01A023 +1C004D00_A78300F5166357FD +1C004D08_40B2C01CC391DC01 +1C004D10_8082014144924422 +1C004D18_842AC226C4221141 +1C004D20_DC01A023C606852E +1C004D28_166357FDC8BFD0EF +1C004D30_C391DC01A78300F5 +1C004D38_4492442240B2C01C +1C004D40_C422114180820141 +1C004D48_85B2852E842AC226 +1C004D50_D0EFDC01A023C606 +1C004D58_00F5166357FDC77F +1C004D60_C01CC391DC01A783 +1C004D68_01414492442240B2 +1C004D70_C226C42211418082 +1C004D78_A023C606852E842A +1C004D80_57FDC57FD0EFDC01 +1C004D88_DC01A78300F51663 +1C004D90_442240B2C01CC391 +1C004D98_1141808201414492 +1C004DA0_852E842AC226C422 +1C004DA8_A023C606863685B2 +1C004DB0_57FDC39FD0EFDC01 +1C004DB8_DC01A78300F51663 +1C004DC0_442240B2C01CC391 +1C004DC8_1141808201414492 +1C004DD0_852E842AC226C422 +1C004DD8_A023C606863685B2 +1C004DE0_57FDC0DFD0EFDC01 +1C004DE8_DC01A78300F51663 +1C004DF0_442240B2C01CC391 +1C004DF8_0000808201414492 +1C008000_0065756575517870 +1C008008_686374617263732F +1C008010_646E616C726F6E2F +1C008018_6F2D706C75702F6F +1C008020_706C75702F6E6570 +1C008028_6F74722F6B64732D +1C008030_7472656572662F73 +1C008038_656E72656B2F736F +1C008040_2E65756575712F6C +1C008048_7551787500000063 +1C008050_74676E654C657565 +1C008058_42552028203E2068 +1C008060_5F65707954657361 +1C008068_0000003020292074 +1C008070_756F4378614D7875 +1C008078_0030203D2120746E +1C008080_616974696E497875 +1C008088_3C20746E756F436C +1C008090_4378614D7875203D +1C008098_00000000746E756F +1C0080A0_4976702028202821 +1C0080A8_6575516F546D6574 +1C0080B0_2828203D3D206575 +1C0080B8_30292A2064696F76 +1C0080C0_2820262620292029 +1C0080C8_6575657551787020 +1C0080D0_6D65744978753E2D +1C0080D8_203D2120657A6953 +1C0080E0_5465736142552028 +1C0080E8_202920745F657079 +1C0080F0_0000292029205530 +1C0080F8_6F43782028202821 +1C008100_697469736F507970 +1C008108_2028203D3D206E6F +1C008110_7954657361422028 +1C008118_32202920745F6570 +1C008120_2026262029202920 +1C008128_7565755178702028 +1C008130_6E654C78753E2D65 +1C008138_31203D2120687467 +1C008140_0000000029202920 +1C008148_6154782028202821 +1C008150_6863537465476B73 +1C008158_745372656C756465 +1C008160_3D3D202928657461 +1C008168_7361422028202820 +1C008170_20745F6570795465 +1C008178_2029202920302029 +1C008180_6954782028202626 +1C008188_6961576F54736B63 +1C008190_292030203D212074 +1C008198_7551787000002920 +1C0081A0_4978753E2D657565 +1C0081A8_20657A69536D6574 +1C0081B0_0000000030203D3D +1C0081B8_5178702028202821 +1C0081C0_63703E2D65756575 +1C0081C8_203D3D2064616548 +1C0081D0_2A2064696F762828 +1C0081D8_2626202920293029 +1C0081E0_6575517870202820 +1C0081E8_53782E753E2D6575 +1C0081F0_65726F6870616D65 +1C0081F8_48786574754D782E +1C008200_3D21207265646C6F +1C008208_2064696F76282820 +1C008210_292029202930292A +1C008218_7870202800000000 +1C008220_0029206575657551 +1C008228_7020282028202821 +1C008230_2072656666754276 +1C008238_762828203D3D2029 +1C008240_2930292A2064696F +1C008248_2028202626202920 +1C008250_7565755178702028 +1C008258_4978753E2D292065 +1C008260_20657A69536D6574 +1C008268_6142552028203D21 +1C008270_745F657079546573 +1C008278_2029205530202920 +1C008280_686E497800000029 +1C008288_65636E6174697265 +1C008290_646572727563634F +1C008298_20282028203D3D20 +1C0082A0_6570795465736142 +1C0082A8_292030202920745F +1C0082B0_2820282100000000 +1C0082B8_6566667542767020 +1C0082C0_762828203D3D2072 +1C0082C8_2930292A2064696F +1C0082D0_2028202626202920 +1C0082D8_2D65756575517870 +1C0082E0_536D65744978753E +1C0082E8_28203D2120657A69 +1C0082F0_7954657361425520 +1C0082F8_30202920745F6570 +1C008300_0000002920292055 +1C008308_6552657565755178 +1C008310_0000006576696563 +1C008318_6947657565755178 +1C008320_53496D6F72466576 +1C008328_6575517800000052 +1C008330_6972656E65476575 +1C008338_6F7246646E655363 +1C008340_000000005253496D +1C008348_6547657565755178 +1C008350_6E6553636972656E +1C008358_6575517800000064 +1C008360_6574616572436575 +1C008368_676E69746E756F43 +1C008370_726F6870616D6553 +1C008378_6575517800000065 +1C008380_6972656E65476575 +1C008388_0065746165724363 +1C008390_6547657565755178 +1C008398_736552636972656E +1C0083A0_6575517600007465 +1C0083A8_6574656C65446575 +1C0083B0_6575517800000000 +1C0083B8_7669656365526575 +1C0083C0_5253496D6F724665 +1C0083C8_6575517800000000 +1C0083D0_6870616D65536575 +1C0083D8_00656B615465726F +1C0083E0_0000006B73615478 +1C0083E8_686374617263732F +1C0083F0_646E616C726F6E2F +1C0083F8_6F2D706C75702F6F +1C008400_706C75702F6E6570 +1C008408_6F74722F6B64732D +1C008410_7472656572662F73 +1C008418_656E72656B2F736F +1C008420_2E736B7361742F6C +1C008428_2028202800000063 +1C008430_6544787020282028 +1C008438_736154646579616C +1C008440_2D29207473694C6B +1C008448_65626D754E78753E +1C008450_736D657449664F72 +1C008458_42552028203D3D20 +1C008460_5F65707954657361 +1C008468_2029203020292074 +1C008470_614220282028203F +1C008478_745F657079546573 +1C008480_3A20292031202920 +1C008488_7361422028202820 +1C008490_20745F6570795465 +1C008498_2029202920302029 +1C0084A0_2028202800000029 +1C0084A8_6165527870202826 +1C0084B0_4C736B7361547964 +1C0084B8_7875205B73747369 +1C0084C0_726F697250706F54 +1C0084C8_2029205D20797469 +1C0084D0_6D754E78753E2D29 +1C0084D8_657449664F726562 +1C0084E0_30203E202920736D +1C0084E8_7645787000000000 +1C0084F0_007473694C746E65 +1C0084F8_636F6C626E557870 +1C008500_000042435464656B +1C008508_3D3D204243547870 +1C008510_6572727543787020 +1C008518_000000424354746E +1C008520_753E2D4243547870 +1C008528_7365786574754D78 +1C008530_00000000646C6548 +1C008538_3D21204243547870 +1C008540_6572727543787020 +1C008548_000000424354746E +1C008550_00000000454C4449 +1C008558_206E727574655278 +1C008560_20312D2028203D21 +1C008568_6353787500000029 +1C008570_5372656C75646568 +1C008578_6465646E65707375 +1C008580_6954787000000000 +1C008588_00000074754F656D +1C008590_54736B6369547870 +1C008598_000000746961576F +1C0085A0_616C506B73615476 +1C0085A8_6E6576456E4F6563 +1C0085B0_0000007473694C74 +1C0085B8_6977536B73615476 +1C0085C0_65746E6F43686374 +1C0085C8_7361547800007478 +1C0085D0_656D6572636E496B +1C0085D8_00006B636954746E +1C0085E0_7365526B73615478 +1C0085E8_00006C6C41656D75 +1C0085F0_6174536B73615476 +1C0085F8_7564656863537472 +1C008600_736154760072656C +1C008608_7469726F6972506B +1C008610_65686E6973694479 +1C008618_7265746641746972 +1C008620_0074756F656D6954 +1C008628_6972506B73615478 +1C008630_736944797469726F +1C008638_0074697265686E69 +1C008640_6568436B73615478 +1C008648_6D6954726F466B63 +1C008650_0000000074754F65 +1C008658_6D65526B73615478 +1C008660_456D6F724665766F +1C008668_7473694C746E6576 +1C008670_7361547600000000 +1C008678_6E4F6563616C506B +1C008680_73694C746E657645 +1C008688_6369727473655274 +1C008690_51726D5400646574 +1C008698_7465527800000000 +1C0086A0_7263732F006E7275 +1C0086A8_726F6E2F68637461 +1C0086B0_75702F6F646E616C +1C0086B8_2F6E65706F2D706C +1C0086C0_6B64732D706C7570 +1C0086C8_72662F736F74722F +1C0086D0_6B2F736F74726565 +1C0086D8_69742F6C656E7265 +1C0086E0_0000632E7372656D +1C0086E8_0063765320726D54 +1C0086F0_000072656D695478 +1C0086F8_00746C7573655278 +1C008700_656D695478702028 +1C008708_656D6954783E2D72 +1C008710_49646F6972655072 +1C008718_3E20736B6369546E +1C008720_0000000029203020 +1C008728_1C0028781C002878 +1C008730_1C0028CA1C002878 +1C008738_1C00290A1C0028D6 +1C008740_1C0028781C002878 +1C008748_1C0028D61C0028CA +1C008750_654772656D695478 +1C008758_6D6F43636972656E +1C008760_00000000646E616D +1C008768_65636F7250767270 +1C008770_7669656365527373 +1C008778_6E616D6D6F436465 +1C008780_5076727000007364 +1C008788_7845737365636F72 +1C008790_6D69546465726970 +1C008798_5376727000007265 +1C0087A0_6D69546863746977 +1C0087A8_00737473694C7265 +1C0087B0_724372656D695478 +1C0087B8_656D695465746165 +1C0087C0_0000006B73615472 +1C0087C8_7453525349782028 +1C0087D0_2620706F546B6361 +1C0087D8_3030307830202820 +1C0087E0_3D3D202920292066 +1C0087E8_7263732F00003020 +1C0087F0_726F6E2F68637461 +1C0087F8_75702F6F646E616C +1C008800_2F6E65706F2D706C +1C008808_6B64732D706C7570 +1C008810_72662F736F74722F +1C008818_6B2F736F74726565 +1C008820_6F702F6C656E7265 +1C008828_472F656C62617472 +1C008830_2D435349522F4343 +1C008838_632E74726F702F56 +1C008840_726F507800000000 +1C008848_6353747261745374 +1C008850_0072656C75646568 +1C008858_61203A726F727265 +1C008860_69746163696C7070 +1C008868_6F6C6C616D206E6F +1C008870_64656C6961662063 +1C008878_6F72726500000000 +1C008880_6B63617473203A72 +1C008888_6F6C667265766F20 +1C008890_6C6C616D00000077 +1C008898_756220787420636F +1C0088A0_0000000072656666 +1C0088A8_7220636F6C6C616D +1C0088B0_7265666675622078 +1C0088B8_6C6C616D00003120 +1C0088C0_756220787220636F +1C0088C8_0000322072656666 +1C0088D0_6566667562207874 +1C0088D8_000074696E692072 +1C0088E0_736320636E797361 +1C0088E8_0000006F74756120 +1C0088F0_6967655220504957 +1C0088F8_6425203A72657473 +1C008900_726174730000000A +1C008908_72726520676E6974 +1C008910_6B6365686320726F +1C008918_7372694600000000 +1C008920_20726F7272652074 +1C008928_7865646E69207461 +1C008930_707865202C642520 +1C008938_7830206465746365 +1C008940_20746F67202C7825 +1C008948_2074612078257830 +1C008950_74736554000A7025 +1C008958_7373656363757320 +1C008960_20090A0A00000000 +1C008968_65657246202A2A2A +1C008970_6C654820534F5452 +1C008978_646C726F57206F6C +1C008980_00000A202A2A2A20 +1C008988_000000006E69616D +1C008990_207369206E69616D +1C008998_000021204C4C554E +1C0089A0_6974636E7566202C +1C0089A8_00000000203A6E6F +1C0089B0_6F69747265737361 +1C0089B8_662022732522206E +1C0089C0_66203A64656C6961 +1C0089C8_2273252220656C69 +1C0089D0_2520656E696C202C +1C0089D8_00000A7325732564 +1C0089E0_000000202B302D23 +1C0089E8_45676665004C6C68 +1C0089F0_0000000000004746 +1C0089F8_0000000000000000 +1C008A00_0000000000000000 +1C008A08_0000000000000000 +1C008A10_0000000000000000 +1C008A18_0000000000000000 +1C008A20_0000000000000000 +1C008A28_0000000000000000 +1C008A30_0000000000000000 +1C008A38_0000000000000000 +1C008A40_0000000000000000 +1C008A48_0000000000000000 +1C008A50_3332313000000000 +1C008A58_4241393837363534 +1C008A60_0000000046454443 +1C008A68_3736353433323130 +1C008A70_6665646362613938 +1C008A78_1C004A2600000000 +1C008A80_1C0049FE1C004A3C +1C008A88_1C0049FE1C0049FE +1C008A90_1C004A3C1C0049FE +1C008A98_1C0049FE1C0049FE +1C008AA0_1C0049FE1C0049FE +1C008AA8_1C004A7A1C004B90 +1C008AB0_1C0049FE1C004B64 +1C008AB8_1C004BC01C0049FE +1C008AC0_1C004A7A1C0049FE +1C008AC8_1C0049FE1C0049FE +1C008AD0_020201001C004B6C +1C008AD8_0404040403030303 +1C008AE0_0505050504040404 +1C008AE8_0505050505050505 +1C008AF0_0606060605050505 +1C008AF8_0606060606060606 +1C008B00_0606060606060606 +1C008B08_0606060606060606 +1C008B10_0707070706060606 +1C008B18_0707070707070707 +1C008B20_0707070707070707 +1C008B28_0707070707070707 +1C008B30_0707070707070707 +1C008B38_0707070707070707 +1C008B40_0707070707070707 +1C008B48_0707070707070707 +1C008B50_0808080807070707 +1C008B58_0808080808080808 +1C008B60_0808080808080808 +1C008B68_0808080808080808 +1C008B70_0808080808080808 +1C008B78_0808080808080808 +1C008B80_0808080808080808 +1C008B88_0808080808080808 +1C008B90_0808080808080808 +1C008B98_0808080808080808 +1C008BA0_0808080808080808 +1C008BA8_0808080808080808 +1C008BB0_0808080808080808 +1C008BB8_0808080808080808 +1C008BC0_0808080808080808 +1C008BC8_0808080808080808 +1C008BD0_1C0199B008080808 +1C008BD8_000000001C008BDC +1C008BE0_1C008A341C008A14 +1C008BE8_000000001C0089F4 +1C008BF0_0000000000000000 +1C008BF8_0000000000000000 +1C008C00_0000000000000000 +1C008C08_0000000000000000 +1C008C10_0000000000000000 +1C008C18_0000000000000000 +1C008C20_0000000000000000 +1C008C28_0000000000000000 +1C008C30_0000000000000000 +1C008C38_1C0091B000000000 +1C008C40_1C008BDC02FAF080 +1C008C48_0000000000000000 +1C008C50_0000000000000000 +1C008C58_0000000000000000 +1C008C60_0000000000000000 +1C008C68_0000000000000000 +1C008C70_0000000000000000 +1C008C78_0000000000000000 +1C008C80_0000000000000000 +1C008C88_0000000000000000 +1C008C90_0000000000000000 +1C008C98_0000000000000000 +1C008CA0_0000000000000000 +1C008CA8_0000000000000000 +1C008CB0_0000000000000000 +1C008CB8_0000000000000000 +1C008CC0_0000000000000000 +1C008CC8_0000000000000000 +1C008CD0_0000000000000000 +1C008CD8_0000000000000000 +1C008CE0_0000000000000000 +1C008CE8_0000000000000000 +1C008CF0_0000000000000000 +1C008CF8_0000000000000000 +1C008D00_0000000000000000 +1C008D08_0000000000000000 +1C008D10_0000000000000000 +1C008D18_0000000000000000 +1C008D20_0000000000000000 +1C008D28_0000000000000000 +1C008D30_0000000000000000 +1C008D38_0000000000000000 +1C008D40_0000000000000000 +1C008D48_0000000000000000 +1C008D50_0000000000000000 +1C008D58_0000000000000000 +1C008D60_0000000000000000 +1C008D68_0000000000000000 +1C008D70_0000000000000000 +1C008D78_0000000000000000 +1C008D80_0000000000000000 +1C008D88_0000000000000000 +1C008D90_0000000000000000 +1C008D98_0000000000000000 +1C008DA0_0000000000000000 +1C008DA8_0000000000000000 +1C008DB0_0000000000000000 +1C008DB8_0000000000000000 +1C008DC0_0000000000000000 +1C008DC8_0000000000000000 +1C008DD0_0000000000000000 +1C008DD8_0000000000000000 +1C008DE0_0000000000000000 +1C008DE8_0000000000000000 +1C008DF0_0000000000000000 +1C008DF8_0000000000000000 +1C008E00_0000000000000000 +1C008E08_0000000000000000 +1C008E10_0000000000000000 +1C008E18_0000000000000000 +1C008E20_0000000000000000 +1C008E28_0000000000000000 +1C008E30_0000000000000000 +1C008E38_0000000000000000 +1C008E40_0000000000000000 +1C008E48_0000000000000000 +1C008E50_0000000000000000 +1C008E58_0000000000000000 +1C008E60_0000000000000000 +1C008E68_0000000000000000 +1C008E70_0000000000000000 +1C008E78_0000000000000000 +1C008E80_0000000000000000 +1C008E88_0000000000000000 +1C008E90_0000000000000000 +1C008E98_0000000000000000 +1C008EA0_0000000000000000 +1C008EA8_0000000000000000 +1C008EB0_0000000000000000 +1C008EB8_0000000000000000 +1C008EC0_0000000000000000 +1C008EC8_0000000000000000 +1C008ED0_0000000000000000 +1C008ED8_0000000000000000 +1C008EE0_0000000000000000 +1C008EE8_0000000000000000 +1C008EF0_0000000000000000 +1C008EF8_0000000000000000 +1C008F00_0000000000000000 +1C008F08_0000000000000000 +1C008F10_0000000000000000 +1C008F18_0000000000000000 +1C008F20_0000000000000000 +1C008F28_0000000000000000 +1C008F30_0000000000000000 +1C008F38_0000000000000000 +1C008F40_0000000000000000 +1C008F48_0000000000000000 +1C008F50_0000000000000000 +1C008F58_0000000000000000 +1C008F60_0000000000000000 +1C008F68_0000000000000000 +1C008F70_0000000000000000 +1C008F78_0000000000000000 +1C008F80_0000000000000000 +1C008F88_0000000000000000 +1C008F90_0000000000000000 +1C008F98_0000000000000000 +1C008FA0_0000000000000000 +1C008FA8_0000000000000000 +1C008FB0_0000000000000000 +1C008FB8_0000000000000000 +1C008FC0_0000000000000000 +1C008FC8_0000000000000000 +1C008FD0_0000000000000000 +1C008FD8_0000000000000000 +1C008FE0_0000000000000000 +1C008FE8_0000000000000000 +1C008FF0_0000000000000000 +1C008FF8_0000000000000000 +1C009000_0000000000000000 +1C009008_0000000000000000 +1C009010_0000000000000000 +1C009018_0000000000000000 +1C009020_0000000000000000 +1C009028_0000000000000000 +1C009030_0000000000000000 +1C009038_0000000000000000 +1C009040_0000000000000000 +1C009048_0000000000000000 +1C009050_0000000000000000 +1C009058_0000000000000000 +1C009060_0000000000000000 +1C009068_0000000000000000 +1C009070_0000000000000000 +1C009078_0000000000000000 +1C009080_0000000000000000 +1C009088_0000000000000000 +1C009090_0000000000000000 +1C009098_0000000000000000 +1C0090A0_0000000000000000 +1C0090A8_0000000000000000 +1C0090B0_0000000000000000 +1C0090B8_0000000000000000 +1C0090C0_0000000000000000 +1C0090C8_0000000000000000 +1C0090D0_0000000000000000 +1C0090D8_0000000000000000 +1C0090E0_0000000000000000 +1C0090E8_0000000000000000 +1C0090F0_0000000000000000 +1C0090F8_0000000000000000 +1C009100_0000000000000000 +1C009108_0000000000000000 +1C009110_0000000000000000 +1C009118_0000000000000000 +1C009120_0000000000000000 +1C009128_0000000000000000 +1C009130_0000000000000000 +1C009138_0000000000000000 +1C009140_0000000000000000 +1C009148_0000000000000000 +1C009150_0000000000000000 +1C009158_0000000000000000 +1C009160_0000000000000000 +1C009168_0000000000000000 +1C009170_0000000000000000 +1C009178_0000000000000000 +1C009180_0000000000000000 +1C009188_0000000000000000 +1C009190_0000000000000000 +1C009198_0000000000000000 +1C0091A0_0000000000000000 +1C0091A8_0000000000000000 +1C0091B0_0000000000000000 +1C0091B8_0000000000000000 +1C0091C0_0000000000000000 +1C0091C8_0000000000000000 +1C0091D0_0000000000000000 +1C0091D8_0000000000000000 +1C0091E0_0000000000000000 +1C0091E8_0000000000000000 +1C0091F0_0000000000000000 +1C0091F8_0000000000000000 +1C009200_0000000000000000 +1C009208_0000000000000000 +1C009210_0000000000000000 +1C009218_0000000000000000 +1C009220_0000000000000000 +1C009228_0000000000000000 +1C009230_0000000000000000 +1C009238_0000000000000000 +1C009240_0000000000000000 +1C009248_0000000000000000 +1C009250_0000000000000000 +1C009258_0000000000000000 +1C009260_0000000000000000 +1C009268_0000000000000000 +1C009270_0000000000000000 +1C009278_0000000000000000 +1C009280_0000000000000000 +1C009288_0000000000000000 +1C009290_0000000000000000 +1C009298_0000000000000000 +1C0092A0_0000000000000000 +1C0092A8_0000000000000000 +1C0092B0_0000000000000000 +1C0092B8_0000000000000000 +1C0092C0_0000000000000000 +1C0092C8_0000000000000000 +1C0092D0_0000000000000000 +1C0092D8_0000000000000000 +1C0092E0_0000000000000000 +1C0092E8_0000000000000000 +1C0092F0_0000000000000000 +1C0092F8_0000000000000000 +1C009300_0000000000000000 +1C009308_0000000000000000 +1C009310_0000000000000000 +1C009318_0000000000000000 +1C009320_0000000000000000 +1C009328_0000000000000000 +1C009330_0000000000000000 +1C009338_0000000000000000 +1C009340_0000000000000000 +1C009348_0000000000000000 +1C009350_0000000000000000 +1C009358_0000000000000000 +1C009360_0000000000000000 +1C009368_0000000000000000 +1C009370_0000000000000000 +1C009378_0000000000000000 +1C009380_0000000000000000 +1C009388_0000000000000000 +1C009390_0000000000000000 +1C009398_0000000000000000 +1C0093A0_0000000000000000 +1C0093A8_0000000000000000 +1C0093B0_0000000000000000 +1C0093B8_0000000000000000 +1C0093C0_0000000000000000 +1C0093C8_0000000000000000 +1C0093D0_0000000000000000 +1C0093D8_0000000000000000 +1C0093E0_0000000000000000 +1C0093E8_0000000000000000 +1C0093F0_0000000000000000 +1C0093F8_0000000000000000 +1C009400_0000000000000000 +1C009408_0000000000000000 +1C009410_0000000000000000 +1C009418_0000000000000000 +1C009420_0000000000000000 +1C009428_0000000000000000 +1C009430_0000000000000000 +1C009438_0000000000000000 +1C009440_0000000000000000 +1C009448_0000000000000000 +1C009450_0000000000000000 +1C009458_0000000000000000 +1C009460_0000000000000000 +1C009468_0000000000000000 +1C009470_0000000000000000 +1C009478_0000000000000000 +1C009480_0000000000000000 +1C009488_0000000000000000 +1C009490_0000000000000000 +1C009498_0000000000000000 +1C0094A0_0000000000000000 +1C0094A8_0000000000000000 +1C0094B0_0000000000000000 +1C0094B8_0000000000000000 +1C0094C0_0000000000000000 +1C0094C8_0000000000000000 +1C0094D0_0000000000000000 +1C0094D8_0000000000000000 +1C0094E0_0000000000000000 +1C0094E8_0000000000000000 +1C0094F0_0000000000000000 +1C0094F8_0000000000000000 +1C009500_0000000000000000 +1C009508_0000000000000000 +1C009510_0000000000000000 +1C009518_0000000000000000 +1C009520_0000000000000000 +1C009528_0000000000000000 +1C009530_0000000000000000 +1C009538_0000000000000000 +1C009540_0000000000000000 +1C009548_0000000000000000 +1C009550_0000000000000000 +1C009558_0000000000000000 +1C009560_0000000000000000 +1C009568_0000000000000000 +1C009570_0000000000000000 +1C009578_0000000000000000 +1C009580_0000000000000000 +1C009588_0000000000000000 +1C009590_0000000000000000 +1C009598_0000000000000000 +1C0095A0_0000000000000000 +1C0095A8_0000000000000000 +1C0095B0_0000000000000000 +1C0095B8_0000000000000000 +1C0095C0_0000000000000000 +1C0095C8_0000000000000000 +1C0095D0_0000000000000000 +1C0095D8_0000000000000000 +1C0095E0_0000000000000000 +1C0095E8_0000000000000000 +1C0095F0_0000000000000000 +1C0095F8_0000000000000000 +1C009600_0000000000000000 +1C009608_0000000000000000 +1C009610_0000000000000000 +1C009618_0000000000000000 +1C009620_0000000000000000 +1C009628_0000000000000000 +1C009630_0000000000000000 +1C009638_0000000000000000 +1C009640_0000000000000000 +1C009648_0000000000000000 +1C009650_0000000000000000 +1C009658_0000000000000000 +1C009660_0000000000000000 +1C009668_0000000000000000 +1C009670_0000000000000000 +1C009678_0000000000000000 +1C009680_0000000000000000 +1C009688_0000000000000000 +1C009690_0000000000000000 +1C009698_0000000000000000 +1C0096A0_0000000000000000 +1C0096A8_0000000000000000 +1C0096B0_0000000000000000 +1C0096B8_0000000000000000 +1C0096C0_0000000000000000 +1C0096C8_0000000000000000 +1C0096D0_0000000000000000 +1C0096D8_0000000000000000 +1C0096E0_0000000000000000 +1C0096E8_0000000000000000 +1C0096F0_0000000000000000 +1C0096F8_0000000000000000 +1C009700_0000000000000000 +1C009708_0000000000000000 +1C009710_0000000000000000 +1C009718_0000000000000000 +1C009720_0000000000000000 +1C009728_0000000000000000 +1C009730_0000000000000000 +1C009738_0000000000000000 +1C009740_0000000000000000 +1C009748_0000000000000000 +1C009750_0000000000000000 +1C009758_0000000000000000 +1C009760_0000000000000000 +1C009768_0000000000000000 +1C009770_0000000000000000 +1C009778_0000000000000000 +1C009780_0000000000000000 +1C009788_0000000000000000 +1C009790_0000000000000000 +1C009798_0000000000000000 +1C0097A0_0000000000000000 +1C0097A8_0000000000000000 +1C0097B0_0000000000000000 +1C0097B8_0000000000000000 +1C0097C0_0000000000000000 +1C0097C8_0000000000000000 +1C0097D0_0000000000000000 +1C0097D8_0000000000000000 +1C0097E0_0000000000000000 +1C0097E8_0000000000000000 +1C0097F0_0000000000000000 +1C0097F8_0000000000000000 +1C009800_0000000000000000 +1C009808_0000000000000000 +1C009810_0000000000000000 +1C009818_0000000000000000 +1C009820_0000000000000000 +1C009828_0000000000000000 +1C009830_0000000000000000 +1C009838_0000000000000000 +1C009840_0000000000000000 +1C009848_0000000000000000 +1C009850_0000000000000000 +1C009858_0000000000000000 +1C009860_0000000000000000 +1C009868_0000000000000000 +1C009870_0000000000000000 +1C009878_0000000000000000 +1C009880_0000000000000000 +1C009888_0000000000000000 +1C009890_0000000000000000 +1C009898_0000000000000000 +1C0098A0_0000000000000000 +1C0098A8_0000000000000000 +1C0098B0_0000000000000000 +1C0098B8_0000000000000000 +1C0098C0_0000000000000000 +1C0098C8_0000000000000000 +1C0098D0_0000000000000000 +1C0098D8_0000000000000000 +1C0098E0_0000000000000000 +1C0098E8_0000000000000000 +1C0098F0_0000000000000000 +1C0098F8_0000000000000000 +1C009900_0000000000000000 +1C009908_0000000000000000 +1C009910_0000000000000000 +1C009918_0000000000000000 +1C009920_0000000000000000 +1C009928_0000000000000000 +1C009930_0000000000000000 +1C009938_0000000000000000 +1C009940_0000000000000000 +1C009948_0000000000000000 +1C009950_0000000000000000 +1C009958_0000000000000000 +1C009960_0000000000000000 +1C009968_0000000000000000 +1C009970_0000000000000000 +1C009978_0000000000000000 +1C009980_0000000000000000 +1C009988_0000000000000000 +1C009990_0000000000000000 +1C009998_0000000000000000 +1C0099A0_0000000000000000 +1C0099A8_0000000000000000 +1C0099B0_0000000000000000 +1C0099B8_0000000000000000 +1C0099C0_0000000000000000 +1C0099C8_0000000000000000 +1C0099D0_0000000000000000 +1C0099D8_0000000000000000 +1C0099E0_0000000000000000 +1C0099E8_0000000000000000 +1C0099F0_0000000000000000 +1C0099F8_0000000000000000 +1C009A00_0000000000000000 +1C009A08_0000000000000000 +1C009A10_0000000000000000 +1C009A18_0000000000000000 +1C009A20_0000000000000000 +1C009A28_0000000000000000 +1C009A30_0000000000000000 +1C009A38_0000000000000000 +1C009A40_0000000000000000 +1C009A48_0000000000000000 +1C009A50_0000000000000000 +1C009A58_0000000000000000 +1C009A60_0000000000000000 +1C009A68_0000000000000000 +1C009A70_0000000000000000 +1C009A78_0000000000000000 +1C009A80_0000000000000000 +1C009A88_0000000000000000 +1C009A90_0000000000000000 +1C009A98_0000000000000000 +1C009AA0_0000000000000000 +1C009AA8_0000000000000000 +1C009AB0_0000000000000000 +1C009AB8_0000000000000000 +1C009AC0_0000000000000000 +1C009AC8_0000000000000000 +1C009AD0_0000000000000000 +1C009AD8_0000000000000000 +1C009AE0_0000000000000000 +1C009AE8_0000000000000000 +1C009AF0_0000000000000000 +1C009AF8_0000000000000000 +1C009B00_0000000000000000 +1C009B08_0000000000000000 +1C009B10_0000000000000000 +1C009B18_0000000000000000 +1C009B20_0000000000000000 +1C009B28_0000000000000000 +1C009B30_0000000000000000 +1C009B38_0000000000000000 +1C009B40_0000000000000000 +1C009B48_0000000000000000 +1C009B50_0000000000000000 +1C009B58_0000000000000000 +1C009B60_0000000000000000 +1C009B68_0000000000000000 +1C009B70_0000000000000000 +1C009B78_0000000000000000 +1C009B80_0000000000000000 +1C009B88_0000000000000000 +1C009B90_0000000000000000 +1C009B98_0000000000000000 +1C009BA0_0000000000000000 +1C009BA8_0000000000000000 +1C009BB0_0000000000000000 +1C009BB8_0000000000000000 +1C009BC0_0000000000000000 +1C009BC8_0000000000000000 +1C009BD0_0000000000000000 +1C009BD8_0000000000000000 +1C009BE0_0000000000000000 +1C009BE8_0000000000000000 +1C009BF0_0000000000000000 +1C009BF8_0000000000000000 +1C009C00_0000000000000000 +1C009C08_0000000000000000 +1C009C10_0000000000000000 +1C009C18_0000000000000000 +1C009C20_0000000000000000 +1C009C28_0000000000000000 +1C009C30_0000000000000000 +1C009C38_0000000000000000 +1C009C40_0000000000000000 +1C009C48_0000000000000000 +1C009C50_0000000000000000 +1C009C58_0000000000000000 +1C009C60_0000000000000000 +1C009C68_0000000000000000 +1C009C70_0000000000000000 +1C009C78_0000000000000000 +1C009C80_0000000000000000 +1C009C88_0000000000000000 +1C009C90_0000000000000000 +1C009C98_0000000000000000 +1C009CA0_0000000000000000 +1C009CA8_0000000000000000 +1C009CB0_0000000000000000 +1C009CB8_0000000000000000 +1C009CC0_0000000000000000 +1C009CC8_0000000000000000 +1C009CD0_0000000000000000 +1C009CD8_0000000000000000 +1C009CE0_0000000000000000 +1C009CE8_0000000000000000 +1C009CF0_0000000000000000 +1C009CF8_0000000000000000 +1C009D00_0000000000000000 +1C009D08_0000000000000000 +1C009D10_0000000000000000 +1C009D18_0000000000000000 +1C009D20_0000000000000000 +1C009D28_0000000000000000 +1C009D30_0000000000000000 +1C009D38_0000000000000000 +1C009D40_0000000000000000 +1C009D48_0000000000000000 +1C009D50_0000000000000000 +1C009D58_0000000000000000 +1C009D60_0000000000000000 +1C009D68_0000000000000000 +1C009D70_0000000000000000 +1C009D78_0000000000000000 +1C009D80_0000000000000000 +1C009D88_0000000000000000 +1C009D90_0000000000000000 +1C009D98_0000000000000000 +1C009DA0_0000000000000000 +1C009DA8_0000000000000000 +1C009DB0_0000000000000000 +1C009DB8_0000000000000000 +1C009DC0_0000000000000000 +1C009DC8_0000000000000000 +1C009DD0_0000000000000000 +1C009DD8_0000000000000000 +1C009DE0_0000000000000000 +1C009DE8_0000000000000000 +1C009DF0_0000000000000000 +1C009DF8_0000000000000000 +1C009E00_0000000000000000 +1C009E08_0000000000000000 +1C009E10_0000000000000000 +1C009E18_0000000000000000 +1C009E20_0000000000000000 +1C009E28_0000000000000000 +1C009E30_0000000000000000 +1C009E38_0000000000000000 +1C009E40_0000000000000000 +1C009E48_0000000000000000 +1C009E50_0000000000000000 +1C009E58_0000000000000000 +1C009E60_0000000000000000 +1C009E68_0000000000000000 +1C009E70_0000000000000000 +1C009E78_0000000000000000 +1C009E80_0000000000000000 +1C009E88_0000000000000000 +1C009E90_0000000000000000 +1C009E98_0000000000000000 +1C009EA0_0000000000000000 +1C009EA8_0000000000000000 +1C009EB0_0000000000000000 +1C009EB8_0000000000000000 +1C009EC0_0000000000000000 +1C009EC8_0000000000000000 +1C009ED0_0000000000000000 +1C009ED8_0000000000000000 +1C009EE0_0000000000000000 +1C009EE8_0000000000000000 +1C009EF0_0000000000000000 +1C009EF8_0000000000000000 +1C009F00_0000000000000000 +1C009F08_0000000000000000 +1C009F10_0000000000000000 +1C009F18_0000000000000000 +1C009F20_0000000000000000 +1C009F28_0000000000000000 +1C009F30_0000000000000000 +1C009F38_0000000000000000 +1C009F40_0000000000000000 +1C009F48_0000000000000000 +1C009F50_0000000000000000 +1C009F58_0000000000000000 +1C009F60_0000000000000000 +1C009F68_0000000000000000 +1C009F70_0000000000000000 +1C009F78_0000000000000000 +1C009F80_0000000000000000 +1C009F88_0000000000000000 +1C009F90_0000000000000000 +1C009F98_0000000000000000 +1C009FA0_0000000000000000 +1C009FA8_0000000000000000 +1C009FB0_0000000000000000 +1C009FB8_0000000000000000 +1C009FC0_0000000000000000 +1C009FC8_0000000000000000 +1C009FD0_0000000000000000 +1C009FD8_0000000000000000 +1C009FE0_0000000000000000 +1C009FE8_0000000000000000 +1C009FF0_0000000000000000 +1C009FF8_0000000000000000 +1C00A000_0000000000000000 +1C00A008_0000000000000000 +1C00A010_0000000000000000 +1C00A018_0000000000000000 +1C00A020_0000000000000000 +1C00A028_0000000000000000 +1C00A030_0000000000000000 +1C00A038_0000000000000000 +1C00A040_0000000000000000 +1C00A048_0000000000000000 +1C00A050_0000000000000000 +1C00A058_0000000000000000 +1C00A060_0000000000000000 +1C00A068_0000000000000000 +1C00A070_0000000000000000 +1C00A078_0000000000000000 +1C00A080_0000000000000000 +1C00A088_0000000000000000 +1C00A090_0000000000000000 +1C00A098_0000000000000000 +1C00A0A0_0000000000000000 +1C00A0A8_0000000000000000 +1C00A0B0_0000000000000000 +1C00A0B8_0000000000000000 +1C00A0C0_0000000000000000 +1C00A0C8_0000000000000000 +1C00A0D0_0000000000000000 +1C00A0D8_0000000000000000 +1C00A0E0_0000000000000000 +1C00A0E8_0000000000000000 +1C00A0F0_0000000000000000 +1C00A0F8_0000000000000000 +1C00A100_0000000000000000 +1C00A108_0000000000000000 +1C00A110_0000000000000000 +1C00A118_0000000000000000 +1C00A120_0000000000000000 +1C00A128_0000000000000000 +1C00A130_0000000000000000 +1C00A138_0000000000000000 +1C00A140_0000000000000000 +1C00A148_0000000000000000 +1C00A150_0000000000000000 +1C00A158_0000000000000000 +1C00A160_0000000000000000 +1C00A168_0000000000000000 +1C00A170_0000000000000000 +1C00A178_0000000000000000 +1C00A180_0000000000000000 +1C00A188_0000000000000000 +1C00A190_0000000000000000 +1C00A198_0000000000000000 +1C00A1A0_0000000000000000 +1C00A1A8_0000000000000000 +1C00A1B0_0000000000000000 +1C00A1B8_0000000000000000 +1C00A1C0_0000000000000000 +1C00A1C8_0000000000000000 +1C00A1D0_0000000000000000 +1C00A1D8_0000000000000000 +1C00A1E0_0000000000000000 +1C00A1E8_0000000000000000 +1C00A1F0_0000000000000000 +1C00A1F8_0000000000000000 +1C00A200_0000000000000000 +1C00A208_0000000000000000 +1C00A210_0000000000000000 +1C00A218_0000000000000000 +1C00A220_0000000000000000 +1C00A228_0000000000000000 +1C00A230_0000000000000000 +1C00A238_0000000000000000 +1C00A240_0000000000000000 +1C00A248_0000000000000000 +1C00A250_0000000000000000 +1C00A258_0000000000000000 +1C00A260_0000000000000000 +1C00A268_0000000000000000 +1C00A270_0000000000000000 +1C00A278_0000000000000000 +1C00A280_0000000000000000 +1C00A288_0000000000000000 +1C00A290_0000000000000000 +1C00A298_0000000000000000 +1C00A2A0_0000000000000000 +1C00A2A8_0000000000000000 +1C00A2B0_0000000000000000 +1C00A2B8_0000000000000000 +1C00A2C0_0000000000000000 +1C00A2C8_0000000000000000 +1C00A2D0_0000000000000000 +1C00A2D8_0000000000000000 +1C00A2E0_0000000000000000 +1C00A2E8_0000000000000000 +1C00A2F0_0000000000000000 +1C00A2F8_0000000000000000 +1C00A300_0000000000000000 +1C00A308_0000000000000000 +1C00A310_0000000000000000 +1C00A318_0000000000000000 +1C00A320_0000000000000000 +1C00A328_0000000000000000 +1C00A330_0000000000000000 +1C00A338_0000000000000000 +1C00A340_0000000000000000 +1C00A348_0000000000000000 +1C00A350_0000000000000000 +1C00A358_0000000000000000 +1C00A360_0000000000000000 +1C00A368_0000000000000000 +1C00A370_0000000000000000 +1C00A378_0000000000000000 +1C00A380_0000000000000000 +1C00A388_0000000000000000 +1C00A390_0000000000000000 +1C00A398_0000000000000000 +1C00A3A0_0000000000000000 +1C00A3A8_0000000000000000 +1C00A3B0_0000000000000000 +1C00A3B8_0000000000000000 +1C00A3C0_0000000000000000 +1C00A3C8_0000000000000000 +1C00A3D0_0000000000000000 +1C00A3D8_0000000000000000 +1C00A3E0_0000000000000000 +1C00A3E8_0000000000000000 +1C00A3F0_0000000000000000 +1C00A3F8_0000000000000000 +1C00A400_0000000000000000 +1C00A408_0000000000000000 +1C00A410_0000000000000000 +1C00A418_0000000000000000 +1C00A420_0000000000000000 +1C00A428_0000000000000000 +1C00A430_0000000000000000 +1C00A438_0000000000000000 +1C00A440_0000000000000000 +1C00A448_0000000000000000 +1C00A450_0000000000000000 +1C00A458_0000000000000000 +1C00A460_0000000000000000 +1C00A468_0000000000000000 +1C00A470_0000000000000000 +1C00A478_0000000000000000 +1C00A480_0000000000000000 +1C00A488_0000000000000000 +1C00A490_0000000000000000 +1C00A498_0000000000000000 +1C00A4A0_0000000000000000 +1C00A4A8_0000000000000000 +1C00A4B0_0000000000000000 +1C00A4B8_0000000000000000 +1C00A4C0_0000000000000000 +1C00A4C8_0000000000000000 +1C00A4D0_0000000000000000 +1C00A4D8_0000000000000000 +1C00A4E0_0000000000000000 +1C00A4E8_0000000000000000 +1C00A4F0_0000000000000000 +1C00A4F8_0000000000000000 +1C00A500_0000000000000000 +1C00A508_0000000000000000 +1C00A510_0000000000000000 +1C00A518_0000000000000000 +1C00A520_0000000000000000 +1C00A528_0000000000000000 +1C00A530_0000000000000000 +1C00A538_0000000000000000 +1C00A540_0000000000000000 +1C00A548_0000000000000000 +1C00A550_0000000000000000 +1C00A558_0000000000000000 +1C00A560_0000000000000000 +1C00A568_0000000000000000 +1C00A570_0000000000000000 +1C00A578_0000000000000000 +1C00A580_0000000000000000 +1C00A588_0000000000000000 +1C00A590_0000000000000000 +1C00A598_0000000000000000 +1C00A5A0_0000000000000000 +1C00A5A8_0000000000000000 +1C00A5B0_0000000000000000 +1C00A5B8_0000000000000000 +1C00A5C0_0000000000000000 +1C00A5C8_0000000000000000 +1C00A5D0_0000000000000000 +1C00A5D8_0000000000000000 +1C00A5E0_0000000000000000 +1C00A5E8_0000000000000000 +1C00A5F0_0000000000000000 +1C00A5F8_0000000000000000 +1C00A600_0000000000000000 +1C00A608_0000000000000000 +1C00A610_0000000000000000 +1C00A618_0000000000000000 +1C00A620_0000000000000000 +1C00A628_0000000000000000 +1C00A630_0000000000000000 +1C00A638_0000000000000000 +1C00A640_0000000000000000 +1C00A648_0000000000000000 +1C00A650_0000000000000000 +1C00A658_0000000000000000 +1C00A660_0000000000000000 +1C00A668_0000000000000000 +1C00A670_0000000000000000 +1C00A678_0000000000000000 +1C00A680_0000000000000000 +1C00A688_0000000000000000 +1C00A690_0000000000000000 +1C00A698_0000000000000000 +1C00A6A0_0000000000000000 +1C00A6A8_0000000000000000 +1C00A6B0_0000000000000000 +1C00A6B8_0000000000000000 +1C00A6C0_0000000000000000 +1C00A6C8_0000000000000000 +1C00A6D0_0000000000000000 +1C00A6D8_0000000000000000 +1C00A6E0_0000000000000000 +1C00A6E8_0000000000000000 +1C00A6F0_0000000000000000 +1C00A6F8_0000000000000000 +1C00A700_0000000000000000 +1C00A708_0000000000000000 +1C00A710_0000000000000000 +1C00A718_0000000000000000 +1C00A720_0000000000000000 +1C00A728_0000000000000000 +1C00A730_0000000000000000 +1C00A738_0000000000000000 +1C00A740_0000000000000000 +1C00A748_0000000000000000 +1C00A750_0000000000000000 +1C00A758_0000000000000000 +1C00A760_0000000000000000 +1C00A768_0000000000000000 +1C00A770_0000000000000000 +1C00A778_0000000000000000 +1C00A780_0000000000000000 +1C00A788_0000000000000000 +1C00A790_0000000000000000 +1C00A798_0000000000000000 +1C00A7A0_0000000000000000 +1C00A7A8_0000000000000000 +1C00A7B0_0000000000000000 +1C00A7B8_0000000000000000 +1C00A7C0_0000000000000000 +1C00A7C8_0000000000000000 +1C00A7D0_0000000000000000 +1C00A7D8_0000000000000000 +1C00A7E0_0000000000000000 +1C00A7E8_0000000000000000 +1C00A7F0_0000000000000000 +1C00A7F8_0000000000000000 +1C00A800_0000000000000000 +1C00A808_0000000000000000 +1C00A810_0000000000000000 +1C00A818_0000000000000000 +1C00A820_0000000000000000 +1C00A828_0000000000000000 +1C00A830_0000000000000000 +1C00A838_0000000000000000 +1C00A840_0000000000000000 +1C00A848_0000000000000000 +1C00A850_0000000000000000 +1C00A858_0000000000000000 +1C00A860_0000000000000000 +1C00A868_0000000000000000 +1C00A870_0000000000000000 +1C00A878_0000000000000000 +1C00A880_0000000000000000 +1C00A888_0000000000000000 +1C00A890_0000000000000000 +1C00A898_0000000000000000 +1C00A8A0_0000000000000000 +1C00A8A8_0000000000000000 +1C00A8B0_0000000000000000 +1C00A8B8_0000000000000000 +1C00A8C0_0000000000000000 +1C00A8C8_0000000000000000 +1C00A8D0_0000000000000000 +1C00A8D8_0000000000000000 +1C00A8E0_0000000000000000 +1C00A8E8_0000000000000000 +1C00A8F0_0000000000000000 +1C00A8F8_0000000000000000 +1C00A900_0000000000000000 +1C00A908_0000000000000000 +1C00A910_0000000000000000 +1C00A918_0000000000000000 +1C00A920_0000000000000000 +1C00A928_0000000000000000 +1C00A930_0000000000000000 +1C00A938_0000000000000000 +1C00A940_0000000000000000 +1C00A948_0000000000000000 +1C00A950_0000000000000000 +1C00A958_0000000000000000 +1C00A960_0000000000000000 +1C00A968_0000000000000000 +1C00A970_0000000000000000 +1C00A978_0000000000000000 +1C00A980_0000000000000000 +1C00A988_0000000000000000 +1C00A990_0000000000000000 +1C00A998_0000000000000000 +1C00A9A0_0000000000000000 +1C00A9A8_0000000000000000 +1C00A9B0_0000000000000000 +1C00A9B8_0000000000000000 +1C00A9C0_0000000000000000 +1C00A9C8_0000000000000000 +1C00A9D0_0000000000000000 +1C00A9D8_0000000000000000 +1C00A9E0_0000000000000000 +1C00A9E8_0000000000000000 +1C00A9F0_0000000000000000 +1C00A9F8_0000000000000000 +1C00AA00_0000000000000000 +1C00AA08_0000000000000000 +1C00AA10_0000000000000000 +1C00AA18_0000000000000000 +1C00AA20_0000000000000000 +1C00AA28_0000000000000000 +1C00AA30_0000000000000000 +1C00AA38_0000000000000000 +1C00AA40_0000000000000000 +1C00AA48_0000000000000000 +1C00AA50_0000000000000000 +1C00AA58_0000000000000000 +1C00AA60_0000000000000000 +1C00AA68_0000000000000000 +1C00AA70_0000000000000000 +1C00AA78_0000000000000000 +1C00AA80_0000000000000000 +1C00AA88_0000000000000000 +1C00AA90_0000000000000000 +1C00AA98_0000000000000000 +1C00AAA0_0000000000000000 +1C00AAA8_0000000000000000 +1C00AAB0_0000000000000000 +1C00AAB8_0000000000000000 +1C00AAC0_0000000000000000 +1C00AAC8_0000000000000000 +1C00AAD0_0000000000000000 +1C00AAD8_0000000000000000 +1C00AAE0_0000000000000000 +1C00AAE8_0000000000000000 +1C00AAF0_0000000000000000 +1C00AAF8_0000000000000000 +1C00AB00_0000000000000000 +1C00AB08_0000000000000000 +1C00AB10_0000000000000000 +1C00AB18_0000000000000000 +1C00AB20_0000000000000000 +1C00AB28_0000000000000000 +1C00AB30_0000000000000000 +1C00AB38_0000000000000000 +1C00AB40_0000000000000000 +1C00AB48_0000000000000000 +1C00AB50_0000000000000000 +1C00AB58_0000000000000000 +1C00AB60_0000000000000000 +1C00AB68_0000000000000000 +1C00AB70_0000000000000000 +1C00AB78_0000000000000000 +1C00AB80_0000000000000000 +1C00AB88_0000000000000000 +1C00AB90_0000000000000000 +1C00AB98_0000000000000000 +1C00ABA0_0000000000000000 +1C00ABA8_0000000000000000 +1C00ABB0_0000000000000000 +1C00ABB8_0000000000000000 +1C00ABC0_0000000000000000 +1C00ABC8_0000000000000000 +1C00ABD0_0000000000000000 +1C00ABD8_0000000000000000 +1C00ABE0_0000000000000000 +1C00ABE8_0000000000000000 +1C00ABF0_0000000000000000 +1C00ABF8_0000000000000000 +1C00AC00_0000000000000000 +1C00AC08_0000000000000000 +1C00AC10_0000000000000000 +1C00AC18_0000000000000000 +1C00AC20_0000000000000000 +1C00AC28_0000000000000000 +1C00AC30_0000000000000000 +1C00AC38_0000000000000000 +1C00AC40_0000000000000000 +1C00AC48_0000000000000000 +1C00AC50_0000000000000000 +1C00AC58_0000000000000000 +1C00AC60_0000000000000000 +1C00AC68_0000000000000000 +1C00AC70_0000000000000000 +1C00AC78_0000000000000000 +1C00AC80_0000000000000000 +1C00AC88_0000000000000000 +1C00AC90_0000000000000000 +1C00AC98_0000000000000000 +1C00ACA0_0000000000000000 +1C00ACA8_0000000000000000 +1C00ACB0_0000000000000000 +1C00ACB8_0000000000000000 +1C00ACC0_0000000000000000 +1C00ACC8_0000000000000000 +1C00ACD0_0000000000000000 +1C00ACD8_0000000000000000 +1C00ACE0_0000000000000000 +1C00ACE8_0000000000000000 +1C00ACF0_0000000000000000 +1C00ACF8_0000000000000000 +1C00AD00_0000000000000000 +1C00AD08_0000000000000000 +1C00AD10_0000000000000000 +1C00AD18_0000000000000000 +1C00AD20_0000000000000000 +1C00AD28_0000000000000000 +1C00AD30_0000000000000000 +1C00AD38_0000000000000000 +1C00AD40_0000000000000000 +1C00AD48_0000000000000000 +1C00AD50_0000000000000000 +1C00AD58_0000000000000000 +1C00AD60_0000000000000000 +1C00AD68_0000000000000000 +1C00AD70_0000000000000000 +1C00AD78_0000000000000000 +1C00AD80_0000000000000000 +1C00AD88_0000000000000000 +1C00AD90_0000000000000000 +1C00AD98_0000000000000000 +1C00ADA0_0000000000000000 +1C00ADA8_0000000000000000 +1C00ADB0_0000000000000000 +1C00ADB8_0000000000000000 +1C00ADC0_0000000000000000 +1C00ADC8_0000000000000000 +1C00ADD0_0000000000000000 +1C00ADD8_0000000000000000 +1C00ADE0_0000000000000000 +1C00ADE8_0000000000000000 +1C00ADF0_0000000000000000 +1C00ADF8_0000000000000000 +1C00AE00_0000000000000000 +1C00AE08_0000000000000000 +1C00AE10_0000000000000000 +1C00AE18_0000000000000000 +1C00AE20_0000000000000000 +1C00AE28_0000000000000000 +1C00AE30_0000000000000000 +1C00AE38_0000000000000000 +1C00AE40_0000000000000000 +1C00AE48_0000000000000000 +1C00AE50_0000000000000000 +1C00AE58_0000000000000000 +1C00AE60_0000000000000000 +1C00AE68_0000000000000000 +1C00AE70_0000000000000000 +1C00AE78_0000000000000000 +1C00AE80_0000000000000000 +1C00AE88_0000000000000000 +1C00AE90_0000000000000000 +1C00AE98_0000000000000000 +1C00AEA0_0000000000000000 +1C00AEA8_0000000000000000 +1C00AEB0_0000000000000000 +1C00AEB8_0000000000000000 +1C00AEC0_0000000000000000 +1C00AEC8_0000000000000000 +1C00AED0_0000000000000000 +1C00AED8_0000000000000000 +1C00AEE0_0000000000000000 +1C00AEE8_0000000000000000 +1C00AEF0_0000000000000000 +1C00AEF8_0000000000000000 +1C00AF00_0000000000000000 +1C00AF08_0000000000000000 +1C00AF10_0000000000000000 +1C00AF18_0000000000000000 +1C00AF20_0000000000000000 +1C00AF28_0000000000000000 +1C00AF30_0000000000000000 +1C00AF38_0000000000000000 +1C00AF40_0000000000000000 +1C00AF48_0000000000000000 +1C00AF50_0000000000000000 +1C00AF58_0000000000000000 +1C00AF60_0000000000000000 +1C00AF68_0000000000000000 +1C00AF70_0000000000000000 +1C00AF78_0000000000000000 +1C00AF80_0000000000000000 +1C00AF88_0000000000000000 +1C00AF90_0000000000000000 +1C00AF98_0000000000000000 +1C00AFA0_0000000000000000 +1C00AFA8_0000000000000000 +1C00AFB0_0000000000000000 +1C00AFB8_0000000000000000 +1C00AFC0_0000000000000000 +1C00AFC8_0000000000000000 +1C00AFD0_0000000000000000 +1C00AFD8_0000000000000000 +1C00AFE0_0000000000000000 +1C00AFE8_0000000000000000 +1C00AFF0_0000000000000000 +1C00AFF8_0000000000000000 +1C00B000_0000000000000000 +1C00B008_0000000000000000 +1C00B010_0000000000000000 +1C00B018_0000000000000000 +1C00B020_0000000000000000 +1C00B028_0000000000000000 +1C00B030_0000000000000000 +1C00B038_0000000000000000 +1C00B040_0000000000000000 +1C00B048_0000000000000000 +1C00B050_0000000000000000 +1C00B058_0000000000000000 +1C00B060_0000000000000000 +1C00B068_0000000000000000 +1C00B070_0000000000000000 +1C00B078_0000000000000000 +1C00B080_0000000000000000 +1C00B088_0000000000000000 +1C00B090_0000000000000000 +1C00B098_0000000000000000 +1C00B0A0_0000000000000000 +1C00B0A8_0000000000000000 +1C00B0B0_0000000000000000 +1C00B0B8_0000000000000000 +1C00B0C0_0000000000000000 +1C00B0C8_0000000000000000 +1C00B0D0_0000000000000000 +1C00B0D8_0000000000000000 +1C00B0E0_0000000000000000 +1C00B0E8_0000000000000000 +1C00B0F0_0000000000000000 +1C00B0F8_0000000000000000 +1C00B100_0000000000000000 +1C00B108_0000000000000000 +1C00B110_0000000000000000 +1C00B118_0000000000000000 +1C00B120_0000000000000000 +1C00B128_0000000000000000 +1C00B130_0000000000000000 +1C00B138_0000000000000000 +1C00B140_0000000000000000 +1C00B148_0000000000000000 +1C00B150_0000000000000000 +1C00B158_0000000000000000 +1C00B160_0000000000000000 +1C00B168_0000000000000000 +1C00B170_0000000000000000 +1C00B178_0000000000000000 +1C00B180_0000000000000000 +1C00B188_0000000000000000 +1C00B190_0000000000000000 +1C00B198_0000000000000000 +1C00B1A0_0000000000000000 +1C00B1A8_0000000000000000 +1C00B1B0_0000000000000000 +1C00B1B8_0000000000000000 +1C00B1C0_0000000000000000 +1C00B1C8_0000000000000000 +1C00B1D0_0000000000000000 +1C00B1D8_0000000000000000 +1C00B1E0_0000000000000000 +1C00B1E8_0000000000000000 +1C00B1F0_0000000000000000 +1C00B1F8_0000000000000000 +1C00B200_0000000000000000 +1C00B208_0000000000000000 +1C00B210_0000000000000000 +1C00B218_0000000000000000 +1C00B220_0000000000000000 +1C00B228_0000000000000000 +1C00B230_0000000000000000 +1C00B238_0000000000000000 +1C00B240_0000000000000000 +1C00B248_0000000000000000 +1C00B250_0000000000000000 +1C00B258_0000000000000000 +1C00B260_0000000000000000 +1C00B268_0000000000000000 +1C00B270_0000000000000000 +1C00B278_0000000000000000 +1C00B280_0000000000000000 +1C00B288_0000000000000000 +1C00B290_0000000000000000 +1C00B298_0000000000000000 +1C00B2A0_0000000000000000 +1C00B2A8_0000000000000000 +1C00B2B0_0000000000000000 +1C00B2B8_0000000000000000 +1C00B2C0_0000000000000000 +1C00B2C8_0000000000000000 +1C00B2D0_0000000000000000 +1C00B2D8_0000000000000000 +1C00B2E0_0000000000000000 +1C00B2E8_0000000000000000 +1C00B2F0_0000000000000000 +1C00B2F8_0000000000000000 +1C00B300_0000000000000000 +1C00B308_0000000000000000 +1C00B310_0000000000000000 +1C00B318_0000000000000000 +1C00B320_0000000000000000 +1C00B328_0000000000000000 +1C00B330_0000000000000000 +1C00B338_0000000000000000 +1C00B340_0000000000000000 +1C00B348_0000000000000000 +1C00B350_0000000000000000 +1C00B358_0000000000000000 +1C00B360_0000000000000000 +1C00B368_0000000000000000 +1C00B370_0000000000000000 +1C00B378_0000000000000000 +1C00B380_0000000000000000 +1C00B388_0000000000000000 +1C00B390_0000000000000000 +1C00B398_0000000000000000 +1C00B3A0_0000000000000000 +1C00B3A8_0000000000000000 +1C00B3B0_0000000000000000 +1C00B3B8_0000000000000000 +1C00B3C0_0000000000000000 +1C00B3C8_0000000000000000 +1C00B3D0_0000000000000000 +1C00B3D8_0000000000000000 +1C00B3E0_0000000000000000 +1C00B3E8_0000000000000000 +1C00B3F0_0000000000000000 +1C00B3F8_0000000000000000 +1C00B400_0000000000000000 +1C00B408_0000000000000000 +1C00B410_0000000000000000 +1C00B418_0000000000000000 +1C00B420_0000000000000000 +1C00B428_0000000000000000 +1C00B430_0000000000000000 +1C00B438_0000000000000000 +1C00B440_0000000000000000 +1C00B448_0000000000000000 +1C00B450_0000000000000000 +1C00B458_0000000000000000 +1C00B460_0000000000000000 +1C00B468_0000000000000000 +1C00B470_0000000000000000 +1C00B478_0000000000000000 +1C00B480_0000000000000000 +1C00B488_0000000000000000 +1C00B490_0000000000000000 +1C00B498_0000000000000000 +1C00B4A0_0000000000000000 +1C00B4A8_0000000000000000 +1C00B4B0_0000000000000000 +1C00B4B8_0000000000000000 +1C00B4C0_0000000000000000 +1C00B4C8_0000000000000000 +1C00B4D0_0000000000000000 +1C00B4D8_0000000000000000 +1C00B4E0_0000000000000000 +1C00B4E8_0000000000000000 +1C00B4F0_0000000000000000 +1C00B4F8_0000000000000000 +1C00B500_0000000000000000 +1C00B508_0000000000000000 +1C00B510_0000000000000000 +1C00B518_0000000000000000 +1C00B520_0000000000000000 +1C00B528_0000000000000000 +1C00B530_0000000000000000 +1C00B538_0000000000000000 +1C00B540_0000000000000000 +1C00B548_0000000000000000 +1C00B550_0000000000000000 +1C00B558_0000000000000000 +1C00B560_0000000000000000 +1C00B568_0000000000000000 +1C00B570_0000000000000000 +1C00B578_0000000000000000 +1C00B580_0000000000000000 +1C00B588_0000000000000000 +1C00B590_0000000000000000 +1C00B598_0000000000000000 +1C00B5A0_0000000000000000 +1C00B5A8_0000000000000000 +1C00B5B0_0000000000000000 +1C00B5B8_0000000000000000 +1C00B5C0_0000000000000000 +1C00B5C8_0000000000000000 +1C00B5D0_0000000000000000 +1C00B5D8_0000000000000000 +1C00B5E0_0000000000000000 +1C00B5E8_0000000000000000 +1C00B5F0_0000000000000000 +1C00B5F8_0000000000000000 +1C00B600_0000000000000000 +1C00B608_0000000000000000 +1C00B610_0000000000000000 +1C00B618_0000000000000000 +1C00B620_0000000000000000 +1C00B628_0000000000000000 +1C00B630_0000000000000000 +1C00B638_0000000000000000 +1C00B640_0000000000000000 +1C00B648_0000000000000000 +1C00B650_0000000000000000 +1C00B658_0000000000000000 +1C00B660_0000000000000000 +1C00B668_0000000000000000 +1C00B670_0000000000000000 +1C00B678_0000000000000000 +1C00B680_0000000000000000 +1C00B688_0000000000000000 +1C00B690_0000000000000000 +1C00B698_0000000000000000 +1C00B6A0_0000000000000000 +1C00B6A8_0000000000000000 +1C00B6B0_0000000000000000 +1C00B6B8_0000000000000000 +1C00B6C0_0000000000000000 +1C00B6C8_0000000000000000 +1C00B6D0_0000000000000000 +1C00B6D8_0000000000000000 +1C00B6E0_0000000000000000 +1C00B6E8_0000000000000000 +1C00B6F0_0000000000000000 +1C00B6F8_0000000000000000 +1C00B700_0000000000000000 +1C00B708_0000000000000000 +1C00B710_0000000000000000 +1C00B718_0000000000000000 +1C00B720_0000000000000000 +1C00B728_0000000000000000 +1C00B730_0000000000000000 +1C00B738_0000000000000000 +1C00B740_0000000000000000 +1C00B748_0000000000000000 +1C00B750_0000000000000000 +1C00B758_0000000000000000 +1C00B760_0000000000000000 +1C00B768_0000000000000000 +1C00B770_0000000000000000 +1C00B778_0000000000000000 +1C00B780_0000000000000000 +1C00B788_0000000000000000 +1C00B790_0000000000000000 +1C00B798_0000000000000000 +1C00B7A0_0000000000000000 +1C00B7A8_0000000000000000 +1C00B7B0_0000000000000000 +1C00B7B8_0000000000000000 +1C00B7C0_0000000000000000 +1C00B7C8_0000000000000000 +1C00B7D0_0000000000000000 +1C00B7D8_0000000000000000 +1C00B7E0_0000000000000000 +1C00B7E8_0000000000000000 +1C00B7F0_0000000000000000 +1C00B7F8_0000000000000000 +1C00B800_0000000000000000 +1C00B808_0000000000000000 +1C00B810_0000000000000000 +1C00B818_0000000000000000 +1C00B820_0000000000000000 +1C00B828_0000000000000000 +1C00B830_0000000000000000 +1C00B838_0000000000000000 +1C00B840_0000000000000000 +1C00B848_0000000000000000 +1C00B850_0000000000000000 +1C00B858_0000000000000000 +1C00B860_0000000000000000 +1C00B868_0000000000000000 +1C00B870_0000000000000000 +1C00B878_0000000000000000 +1C00B880_0000000000000000 +1C00B888_0000000000000000 +1C00B890_0000000000000000 +1C00B898_0000000000000000 +1C00B8A0_0000000000000000 +1C00B8A8_0000000000000000 +1C00B8B0_0000000000000000 +1C00B8B8_0000000000000000 +1C00B8C0_0000000000000000 +1C00B8C8_0000000000000000 +1C00B8D0_0000000000000000 +1C00B8D8_0000000000000000 +1C00B8E0_0000000000000000 +1C00B8E8_0000000000000000 +1C00B8F0_0000000000000000 +1C00B8F8_0000000000000000 +1C00B900_0000000000000000 +1C00B908_0000000000000000 +1C00B910_0000000000000000 +1C00B918_0000000000000000 +1C00B920_0000000000000000 +1C00B928_0000000000000000 +1C00B930_0000000000000000 +1C00B938_0000000000000000 +1C00B940_0000000000000000 +1C00B948_0000000000000000 +1C00B950_0000000000000000 +1C00B958_0000000000000000 +1C00B960_0000000000000000 +1C00B968_0000000000000000 +1C00B970_0000000000000000 +1C00B978_0000000000000000 +1C00B980_0000000000000000 +1C00B988_0000000000000000 +1C00B990_0000000000000000 +1C00B998_0000000000000000 +1C00B9A0_0000000000000000 +1C00B9A8_0000000000000000 +1C00B9B0_0000000000000000 +1C00B9B8_0000000000000000 +1C00B9C0_0000000000000000 +1C00B9C8_0000000000000000 +1C00B9D0_0000000000000000 +1C00B9D8_0000000000000000 +1C00B9E0_0000000000000000 +1C00B9E8_0000000000000000 +1C00B9F0_0000000000000000 +1C00B9F8_0000000000000000 +1C00BA00_0000000000000000 +1C00BA08_0000000000000000 +1C00BA10_0000000000000000 +1C00BA18_0000000000000000 +1C00BA20_0000000000000000 +1C00BA28_0000000000000000 +1C00BA30_0000000000000000 +1C00BA38_0000000000000000 +1C00BA40_0000000000000000 +1C00BA48_0000000000000000 +1C00BA50_0000000000000000 +1C00BA58_0000000000000000 +1C00BA60_0000000000000000 +1C00BA68_0000000000000000 +1C00BA70_0000000000000000 +1C00BA78_0000000000000000 +1C00BA80_0000000000000000 +1C00BA88_0000000000000000 +1C00BA90_0000000000000000 +1C00BA98_0000000000000000 +1C00BAA0_0000000000000000 +1C00BAA8_0000000000000000 +1C00BAB0_0000000000000000 +1C00BAB8_0000000000000000 +1C00BAC0_0000000000000000 +1C00BAC8_0000000000000000 +1C00BAD0_0000000000000000 +1C00BAD8_0000000000000000 +1C00BAE0_0000000000000000 +1C00BAE8_0000000000000000 +1C00BAF0_0000000000000000 +1C00BAF8_0000000000000000 +1C00BB00_0000000000000000 +1C00BB08_0000000000000000 +1C00BB10_0000000000000000 +1C00BB18_0000000000000000 +1C00BB20_0000000000000000 +1C00BB28_0000000000000000 +1C00BB30_0000000000000000 +1C00BB38_0000000000000000 +1C00BB40_0000000000000000 +1C00BB48_0000000000000000 +1C00BB50_0000000000000000 +1C00BB58_0000000000000000 +1C00BB60_0000000000000000 +1C00BB68_0000000000000000 +1C00BB70_0000000000000000 +1C00BB78_0000000000000000 +1C00BB80_0000000000000000 +1C00BB88_0000000000000000 +1C00BB90_0000000000000000 +1C00BB98_0000000000000000 +1C00BBA0_0000000000000000 +1C00BBA8_0000000000000000 +1C00BBB0_0000000000000000 +1C00BBB8_0000000000000000 +1C00BBC0_0000000000000000 +1C00BBC8_0000000000000000 +1C00BBD0_0000000000000000 +1C00BBD8_0000000000000000 +1C00BBE0_0000000000000000 +1C00BBE8_0000000000000000 +1C00BBF0_0000000000000000 +1C00BBF8_0000000000000000 +1C00BC00_0000000000000000 +1C00BC08_0000000000000000 +1C00BC10_0000000000000000 +1C00BC18_0000000000000000 +1C00BC20_0000000000000000 +1C00BC28_0000000000000000 +1C00BC30_0000000000000000 +1C00BC38_0000000000000000 +1C00BC40_0000000000000000 +1C00BC48_0000000000000000 +1C00BC50_0000000000000000 +1C00BC58_0000000000000000 +1C00BC60_0000000000000000 +1C00BC68_0000000000000000 +1C00BC70_0000000000000000 +1C00BC78_0000000000000000 +1C00BC80_0000000000000000 +1C00BC88_0000000000000000 +1C00BC90_0000000000000000 +1C00BC98_0000000000000000 +1C00BCA0_0000000000000000 +1C00BCA8_0000000000000000 +1C00BCB0_0000000000000000 +1C00BCB8_0000000000000000 +1C00BCC0_0000000000000000 +1C00BCC8_0000000000000000 +1C00BCD0_0000000000000000 +1C00BCD8_0000000000000000 +1C00BCE0_0000000000000000 +1C00BCE8_0000000000000000 +1C00BCF0_0000000000000000 +1C00BCF8_0000000000000000 +1C00BD00_0000000000000000 +1C00BD08_0000000000000000 +1C00BD10_0000000000000000 +1C00BD18_0000000000000000 +1C00BD20_0000000000000000 +1C00BD28_0000000000000000 +1C00BD30_0000000000000000 +1C00BD38_0000000000000000 +1C00BD40_0000000000000000 +1C00BD48_0000000000000000 +1C00BD50_0000000000000000 +1C00BD58_0000000000000000 +1C00BD60_0000000000000000 +1C00BD68_0000000000000000 +1C00BD70_0000000000000000 +1C00BD78_0000000000000000 +1C00BD80_0000000000000000 +1C00BD88_0000000000000000 +1C00BD90_0000000000000000 +1C00BD98_0000000000000000 +1C00BDA0_0000000000000000 +1C00BDA8_0000000000000000 +1C00BDB0_0000000000000000 +1C00BDB8_0000000000000000 +1C00BDC0_0000000000000000 +1C00BDC8_0000000000000000 +1C00BDD0_0000000000000000 +1C00BDD8_0000000000000000 +1C00BDE0_0000000000000000 +1C00BDE8_0000000000000000 +1C00BDF0_0000000000000000 +1C00BDF8_0000000000000000 +1C00BE00_0000000000000000 +1C00BE08_0000000000000000 +1C00BE10_0000000000000000 +1C00BE18_0000000000000000 +1C00BE20_0000000000000000 +1C00BE28_0000000000000000 +1C00BE30_0000000000000000 +1C00BE38_0000000000000000 +1C00BE40_0000000000000000 +1C00BE48_0000000000000000 +1C00BE50_0000000000000000 +1C00BE58_0000000000000000 +1C00BE60_0000000000000000 +1C00BE68_0000000000000000 +1C00BE70_0000000000000000 +1C00BE78_0000000000000000 +1C00BE80_0000000000000000 +1C00BE88_0000000000000000 +1C00BE90_0000000000000000 +1C00BE98_0000000000000000 +1C00BEA0_0000000000000000 +1C00BEA8_0000000000000000 +1C00BEB0_0000000000000000 +1C00BEB8_0000000000000000 +1C00BEC0_0000000000000000 +1C00BEC8_0000000000000000 +1C00BED0_0000000000000000 +1C00BED8_0000000000000000 +1C00BEE0_0000000000000000 +1C00BEE8_0000000000000000 +1C00BEF0_0000000000000000 +1C00BEF8_0000000000000000 +1C00BF00_0000000000000000 +1C00BF08_0000000000000000 +1C00BF10_0000000000000000 +1C00BF18_0000000000000000 +1C00BF20_0000000000000000 +1C00BF28_0000000000000000 +1C00BF30_0000000000000000 +1C00BF38_0000000000000000 +1C00BF40_0000000000000000 +1C00BF48_0000000000000000 +1C00BF50_0000000000000000 +1C00BF58_0000000000000000 +1C00BF60_0000000000000000 +1C00BF68_0000000000000000 +1C00BF70_0000000000000000 +1C00BF78_0000000000000000 +1C00BF80_0000000000000000 +1C00BF88_0000000000000000 +1C00BF90_0000000000000000 +1C00BF98_0000000000000000 +1C00BFA0_0000000000000000 +1C00BFA8_0000000000000000 +1C00BFB0_0000000000000000 +1C00BFB8_0000000000000000 +1C00BFC0_0000000000000000 +1C00BFC8_0000000000000000 +1C00BFD0_0000000000000000 +1C00BFD8_0000000000000000 +1C00BFE0_0000000000000000 +1C00BFE8_0000000000000000 +1C00BFF0_0000000000000000 +1C00BFF8_0000000000000000 +1C00C000_0000000000000000 +1C00C008_0000000000000000 +1C00C010_0000000000000000 +1C00C018_0000000000000000 +1C00C020_0000000000000000 +1C00C028_0000000000000000 +1C00C030_0000000000000000 +1C00C038_0000000000000000 +1C00C040_0000000000000000 +1C00C048_0000000000000000 +1C00C050_0000000000000000 +1C00C058_0000000000000000 +1C00C060_0000000000000000 +1C00C068_0000000000000000 +1C00C070_0000000000000000 +1C00C078_0000000000000000 +1C00C080_0000000000000000 +1C00C088_0000000000000000 +1C00C090_0000000000000000 +1C00C098_0000000000000000 +1C00C0A0_0000000000000000 +1C00C0A8_0000000000000000 +1C00C0B0_0000000000000000 +1C00C0B8_0000000000000000 +1C00C0C0_0000000000000000 +1C00C0C8_0000000000000000 +1C00C0D0_0000000000000000 +1C00C0D8_0000000000000000 +1C00C0E0_0000000000000000 +1C00C0E8_0000000000000000 +1C00C0F0_0000000000000000 +1C00C0F8_0000000000000000 +1C00C100_0000000000000000 +1C00C108_0000000000000000 +1C00C110_0000000000000000 +1C00C118_0000000000000000 +1C00C120_0000000000000000 +1C00C128_0000000000000000 +1C00C130_0000000000000000 +1C00C138_0000000000000000 +1C00C140_0000000000000000 +1C00C148_0000000000000000 +1C00C150_0000000000000000 +1C00C158_0000000000000000 +1C00C160_0000000000000000 +1C00C168_0000000000000000 +1C00C170_0000000000000000 +1C00C178_0000000000000000 +1C00C180_0000000000000000 +1C00C188_0000000000000000 +1C00C190_0000000000000000 +1C00C198_0000000000000000 +1C00C1A0_0000000000000000 +1C00C1A8_0000000000000000 +1C00C1B0_0000000000000000 +1C00C1B8_0000000000000000 +1C00C1C0_0000000000000000 +1C00C1C8_0000000000000000 +1C00C1D0_0000000000000000 +1C00C1D8_0000000000000000 +1C00C1E0_0000000000000000 +1C00C1E8_0000000000000000 +1C00C1F0_0000000000000000 +1C00C1F8_0000000000000000 +1C00C200_0000000000000000 +1C00C208_0000000000000000 +1C00C210_0000000000000000 +1C00C218_0000000000000000 +1C00C220_0000000000000000 +1C00C228_0000000000000000 +1C00C230_0000000000000000 +1C00C238_0000000000000000 +1C00C240_0000000000000000 +1C00C248_0000000000000000 +1C00C250_0000000000000000 +1C00C258_0000000000000000 +1C00C260_0000000000000000 +1C00C268_0000000000000000 +1C00C270_0000000000000000 +1C00C278_0000000000000000 +1C00C280_0000000000000000 +1C00C288_0000000000000000 +1C00C290_0000000000000000 +1C00C298_0000000000000000 +1C00C2A0_0000000000000000 +1C00C2A8_0000000000000000 +1C00C2B0_0000000000000000 +1C00C2B8_0000000000000000 +1C00C2C0_0000000000000000 +1C00C2C8_0000000000000000 +1C00C2D0_0000000000000000 +1C00C2D8_0000000000000000 +1C00C2E0_0000000000000000 +1C00C2E8_0000000000000000 +1C00C2F0_0000000000000000 +1C00C2F8_0000000000000000 +1C00C300_0000000000000000 +1C00C308_0000000000000000 +1C00C310_0000000000000000 +1C00C318_0000000000000000 +1C00C320_0000000000000000 +1C00C328_0000000000000000 +1C00C330_0000000000000000 +1C00C338_0000000000000000 +1C00C340_0000000000000000 +1C00C348_0000000000000000 +1C00C350_0000000000000000 +1C00C358_0000000000000000 +1C00C360_0000000000000000 +1C00C368_0000000000000000 +1C00C370_0000000000000000 +1C00C378_0000000000000000 +1C00C380_0000000000000000 +1C00C388_0000000000000000 +1C00C390_0000000000000000 +1C00C398_0000000000000000 +1C00C3A0_0000000000000000 +1C00C3A8_0000000000000000 +1C00C3B0_0000000000000000 +1C00C3B8_0000000000000000 +1C00C3C0_0000000000000000 +1C00C3C8_0000000000000000 +1C00C3D0_0000000000000000 +1C00C3D8_0000000000000000 +1C00C3E0_0000000000000000 +1C00C3E8_0000000000000000 +1C00C3F0_0000000000000000 +1C00C3F8_0000000000000000 +1C00C400_0000000000000000 +1C00C408_0000000000000000 +1C00C410_0000000000000000 +1C00C418_0000000000000000 +1C00C420_0000000000000000 +1C00C428_0000000000000000 +1C00C430_0000000000000000 +1C00C438_0000000000000000 +1C00C440_0000000000000000 +1C00C448_0000000000000000 +1C00C450_0000000000000000 +1C00C458_0000000000000000 +1C00C460_0000000000000000 +1C00C468_0000000000000000 +1C00C470_0000000000000000 +1C00C478_0000000000000000 +1C00C480_0000000000000000 +1C00C488_0000000000000000 +1C00C490_0000000000000000 +1C00C498_0000000000000000 +1C00C4A0_0000000000000000 +1C00C4A8_0000000000000000 +1C00C4B0_0000000000000000 +1C00C4B8_0000000000000000 +1C00C4C0_0000000000000000 +1C00C4C8_0000000000000000 +1C00C4D0_0000000000000000 +1C00C4D8_0000000000000000 +1C00C4E0_0000000000000000 +1C00C4E8_0000000000000000 +1C00C4F0_0000000000000000 +1C00C4F8_0000000000000000 +1C00C500_0000000000000000 +1C00C508_0000000000000000 +1C00C510_0000000000000000 +1C00C518_0000000000000000 +1C00C520_0000000000000000 +1C00C528_0000000000000000 +1C00C530_0000000000000000 +1C00C538_0000000000000000 +1C00C540_0000000000000000 +1C00C548_0000000000000000 +1C00C550_0000000000000000 +1C00C558_0000000000000000 +1C00C560_0000000000000000 +1C00C568_0000000000000000 +1C00C570_0000000000000000 +1C00C578_0000000000000000 +1C00C580_0000000000000000 +1C00C588_0000000000000000 +1C00C590_0000000000000000 +1C00C598_0000000000000000 +1C00C5A0_0000000000000000 +1C00C5A8_0000000000000000 +1C00C5B0_0000000000000000 +1C00C5B8_0000000000000000 +1C00C5C0_0000000000000000 +1C00C5C8_0000000000000000 +1C00C5D0_0000000000000000 +1C00C5D8_0000000000000000 +1C00C5E0_0000000000000000 +1C00C5E8_0000000000000000 +1C00C5F0_0000000000000000 +1C00C5F8_0000000000000000 +1C00C600_0000000000000000 +1C00C608_0000000000000000 +1C00C610_0000000000000000 +1C00C618_0000000000000000 +1C00C620_0000000000000000 +1C00C628_0000000000000000 +1C00C630_0000000000000000 +1C00C638_0000000000000000 +1C00C640_0000000000000000 +1C00C648_0000000000000000 +1C00C650_0000000000000000 +1C00C658_0000000000000000 +1C00C660_0000000000000000 +1C00C668_0000000000000000 +1C00C670_0000000000000000 +1C00C678_0000000000000000 +1C00C680_0000000000000000 +1C00C688_0000000000000000 +1C00C690_0000000000000000 +1C00C698_0000000000000000 +1C00C6A0_0000000000000000 +1C00C6A8_0000000000000000 +1C00C6B0_0000000000000000 +1C00C6B8_0000000000000000 +1C00C6C0_0000000000000000 +1C00C6C8_0000000000000000 +1C00C6D0_0000000000000000 +1C00C6D8_0000000000000000 +1C00C6E0_0000000000000000 +1C00C6E8_0000000000000000 +1C00C6F0_0000000000000000 +1C00C6F8_0000000000000000 +1C00C700_0000000000000000 +1C00C708_0000000000000000 +1C00C710_0000000000000000 +1C00C718_0000000000000000 +1C00C720_0000000000000000 +1C00C728_0000000000000000 +1C00C730_0000000000000000 +1C00C738_0000000000000000 +1C00C740_0000000000000000 +1C00C748_0000000000000000 +1C00C750_0000000000000000 +1C00C758_0000000000000000 +1C00C760_0000000000000000 +1C00C768_0000000000000000 +1C00C770_0000000000000000 +1C00C778_0000000000000000 +1C00C780_0000000000000000 +1C00C788_0000000000000000 +1C00C790_0000000000000000 +1C00C798_0000000000000000 +1C00C7A0_0000000000000000 +1C00C7A8_0000000000000000 +1C00C7B0_0000000000000000 +1C00C7B8_0000000000000000 +1C00C7C0_0000000000000000 +1C00C7C8_0000000000000000 +1C00C7D0_0000000000000000 +1C00C7D8_0000000000000000 +1C00C7E0_0000000000000000 +1C00C7E8_0000000000000000 +1C00C7F0_0000000000000000 +1C00C7F8_0000000000000000 +1C00C800_0000000000000000 +1C00C808_0000000000000000 +1C00C810_0000000000000000 +1C00C818_0000000000000000 +1C00C820_0000000000000000 +1C00C828_0000000000000000 +1C00C830_0000000000000000 +1C00C838_0000000000000000 +1C00C840_0000000000000000 +1C00C848_0000000000000000 +1C00C850_0000000000000000 +1C00C858_0000000000000000 +1C00C860_0000000000000000 +1C00C868_0000000000000000 +1C00C870_0000000000000000 +1C00C878_0000000000000000 +1C00C880_0000000000000000 +1C00C888_0000000000000000 +1C00C890_0000000000000000 +1C00C898_0000000000000000 +1C00C8A0_0000000000000000 +1C00C8A8_0000000000000000 +1C00C8B0_0000000000000000 +1C00C8B8_0000000000000000 +1C00C8C0_0000000000000000 +1C00C8C8_0000000000000000 +1C00C8D0_0000000000000000 +1C00C8D8_0000000000000000 +1C00C8E0_0000000000000000 +1C00C8E8_0000000000000000 +1C00C8F0_0000000000000000 +1C00C8F8_0000000000000000 +1C00C900_0000000000000000 +1C00C908_0000000000000000 +1C00C910_0000000000000000 +1C00C918_0000000000000000 +1C00C920_0000000000000000 +1C00C928_0000000000000000 +1C00C930_0000000000000000 +1C00C938_0000000000000000 +1C00C940_0000000000000000 +1C00C948_0000000000000000 +1C00C950_0000000000000000 +1C00C958_0000000000000000 +1C00C960_0000000000000000 +1C00C968_0000000000000000 +1C00C970_0000000000000000 +1C00C978_0000000000000000 +1C00C980_0000000000000000 +1C00C988_0000000000000000 +1C00C990_0000000000000000 +1C00C998_0000000000000000 +1C00C9A0_0000000000000000 +1C00C9A8_0000000000000000 +1C00C9B0_0000000000000000 +1C00C9B8_0000000000000000 +1C00C9C0_0000000000000000 +1C00C9C8_0000000000000000 +1C00C9D0_0000000000000000 +1C00C9D8_0000000000000000 +1C00C9E0_0000000000000000 +1C00C9E8_0000000000000000 +1C00C9F0_0000000000000000 +1C00C9F8_0000000000000000 +1C00CA00_0000000000000000 +1C00CA08_0000000000000000 +1C00CA10_0000000000000000 +1C00CA18_0000000000000000 +1C00CA20_0000000000000000 +1C00CA28_0000000000000000 +1C00CA30_0000000000000000 +1C00CA38_0000000000000000 +1C00CA40_0000000000000000 +1C00CA48_0000000000000000 +1C00CA50_0000000000000000 +1C00CA58_0000000000000000 +1C00CA60_0000000000000000 +1C00CA68_0000000000000000 +1C00CA70_0000000000000000 +1C00CA78_0000000000000000 +1C00CA80_0000000000000000 +1C00CA88_0000000000000000 +1C00CA90_0000000000000000 +1C00CA98_0000000000000000 +1C00CAA0_0000000000000000 +1C00CAA8_0000000000000000 +1C00CAB0_0000000000000000 +1C00CAB8_0000000000000000 +1C00CAC0_0000000000000000 +1C00CAC8_0000000000000000 +1C00CAD0_0000000000000000 +1C00CAD8_0000000000000000 +1C00CAE0_0000000000000000 +1C00CAE8_0000000000000000 +1C00CAF0_0000000000000000 +1C00CAF8_0000000000000000 +1C00CB00_0000000000000000 +1C00CB08_0000000000000000 +1C00CB10_0000000000000000 +1C00CB18_0000000000000000 +1C00CB20_0000000000000000 +1C00CB28_0000000000000000 +1C00CB30_0000000000000000 +1C00CB38_0000000000000000 +1C00CB40_0000000000000000 +1C00CB48_0000000000000000 +1C00CB50_0000000000000000 +1C00CB58_0000000000000000 +1C00CB60_0000000000000000 +1C00CB68_0000000000000000 +1C00CB70_0000000000000000 +1C00CB78_0000000000000000 +1C00CB80_0000000000000000 +1C00CB88_0000000000000000 +1C00CB90_0000000000000000 +1C00CB98_0000000000000000 +1C00CBA0_0000000000000000 +1C00CBA8_0000000000000000 +1C00CBB0_0000000000000000 +1C00CBB8_0000000000000000 +1C00CBC0_0000000000000000 +1C00CBC8_0000000000000000 +1C00CBD0_0000000000000000 +1C00CBD8_0000000000000000 +1C00CBE0_0000000000000000 +1C00CBE8_0000000000000000 +1C00CBF0_0000000000000000 +1C00CBF8_0000000000000000 +1C00CC00_0000000000000000 +1C00CC08_0000000000000000 +1C00CC10_0000000000000000 +1C00CC18_0000000000000000 +1C00CC20_0000000000000000 +1C00CC28_0000000000000000 +1C00CC30_0000000000000000 +1C00CC38_0000000000000000 +1C00CC40_0000000000000000 +1C00CC48_0000000000000000 +1C00CC50_0000000000000000 +1C00CC58_0000000000000000 +1C00CC60_0000000000000000 +1C00CC68_0000000000000000 +1C00CC70_0000000000000000 +1C00CC78_0000000000000000 +1C00CC80_0000000000000000 +1C00CC88_0000000000000000 +1C00CC90_0000000000000000 +1C00CC98_0000000000000000 +1C00CCA0_0000000000000000 +1C00CCA8_0000000000000000 +1C00CCB0_0000000000000000 +1C00CCB8_0000000000000000 +1C00CCC0_0000000000000000 +1C00CCC8_0000000000000000 +1C00CCD0_0000000000000000 +1C00CCD8_0000000000000000 +1C00CCE0_0000000000000000 +1C00CCE8_0000000000000000 +1C00CCF0_0000000000000000 +1C00CCF8_0000000000000000 +1C00CD00_0000000000000000 +1C00CD08_0000000000000000 +1C00CD10_0000000000000000 +1C00CD18_0000000000000000 +1C00CD20_0000000000000000 +1C00CD28_0000000000000000 +1C00CD30_0000000000000000 +1C00CD38_0000000000000000 +1C00CD40_0000000000000000 +1C00CD48_0000000000000000 +1C00CD50_0000000000000000 +1C00CD58_0000000000000000 +1C00CD60_0000000000000000 +1C00CD68_0000000000000000 +1C00CD70_0000000000000000 +1C00CD78_0000000000000000 +1C00CD80_0000000000000000 +1C00CD88_0000000000000000 +1C00CD90_0000000000000000 +1C00CD98_0000000000000000 +1C00CDA0_0000000000000000 +1C00CDA8_0000000000000000 +1C00CDB0_0000000000000000 +1C00CDB8_0000000000000000 +1C00CDC0_0000000000000000 +1C00CDC8_0000000000000000 +1C00CDD0_0000000000000000 +1C00CDD8_0000000000000000 +1C00CDE0_0000000000000000 +1C00CDE8_0000000000000000 +1C00CDF0_0000000000000000 +1C00CDF8_0000000000000000 +1C00CE00_0000000000000000 +1C00CE08_0000000000000000 +1C00CE10_0000000000000000 +1C00CE18_0000000000000000 +1C00CE20_0000000000000000 +1C00CE28_0000000000000000 +1C00CE30_0000000000000000 +1C00CE38_0000000000000000 +1C00CE40_0000000000000000 +1C00CE48_0000000000000000 +1C00CE50_0000000000000000 +1C00CE58_0000000000000000 +1C00CE60_0000000000000000 +1C00CE68_0000000000000000 +1C00CE70_0000000000000000 +1C00CE78_0000000000000000 +1C00CE80_0000000000000000 +1C00CE88_0000000000000000 +1C00CE90_0000000000000000 +1C00CE98_0000000000000000 +1C00CEA0_0000000000000000 +1C00CEA8_0000000000000000 +1C00CEB0_0000000000000000 +1C00CEB8_0000000000000000 +1C00CEC0_0000000000000000 +1C00CEC8_0000000000000000 +1C00CED0_0000000000000000 +1C00CED8_0000000000000000 +1C00CEE0_0000000000000000 +1C00CEE8_0000000000000000 +1C00CEF0_0000000000000000 +1C00CEF8_0000000000000000 +1C00CF00_0000000000000000 +1C00CF08_0000000000000000 +1C00CF10_0000000000000000 +1C00CF18_0000000000000000 +1C00CF20_0000000000000000 +1C00CF28_0000000000000000 +1C00CF30_0000000000000000 +1C00CF38_0000000000000000 +1C00CF40_0000000000000000 +1C00CF48_0000000000000000 +1C00CF50_0000000000000000 +1C00CF58_0000000000000000 +1C00CF60_0000000000000000 +1C00CF68_0000000000000000 +1C00CF70_0000000000000000 +1C00CF78_0000000000000000 +1C00CF80_0000000000000000 +1C00CF88_0000000000000000 +1C00CF90_0000000000000000 +1C00CF98_0000000000000000 +1C00CFA0_0000000000000000 +1C00CFA8_0000000000000000 +1C00CFB0_0000000000000000 +1C00CFB8_0000000000000000 +1C00CFC0_0000000000000000 +1C00CFC8_0000000000000000 +1C00CFD0_0000000000000000 +1C00CFD8_0000000000000000 +1C00CFE0_0000000000000000 +1C00CFE8_0000000000000000 +1C00CFF0_0000000000000000 +1C00CFF8_0000000000000000 +1C00D000_0000000000000000 +1C00D008_0000000000000000 +1C00D010_0000000000000000 +1C00D018_0000000000000000 +1C00D020_0000000000000000 +1C00D028_0000000000000000 +1C00D030_0000000000000000 +1C00D038_0000000000000000 +1C00D040_0000000000000000 +1C00D048_0000000000000000 +1C00D050_0000000000000000 +1C00D058_0000000000000000 +1C00D060_0000000000000000 +1C00D068_0000000000000000 +1C00D070_0000000000000000 +1C00D078_0000000000000000 +1C00D080_0000000000000000 +1C00D088_0000000000000000 +1C00D090_0000000000000000 +1C00D098_0000000000000000 +1C00D0A0_0000000000000000 +1C00D0A8_0000000000000000 +1C00D0B0_0000000000000000 +1C00D0B8_0000000000000000 +1C00D0C0_0000000000000000 +1C00D0C8_0000000000000000 +1C00D0D0_0000000000000000 +1C00D0D8_0000000000000000 +1C00D0E0_0000000000000000 +1C00D0E8_0000000000000000 +1C00D0F0_0000000000000000 +1C00D0F8_0000000000000000 +1C00D100_0000000000000000 +1C00D108_0000000000000000 +1C00D110_0000000000000000 +1C00D118_0000000000000000 +1C00D120_0000000000000000 +1C00D128_0000000000000000 +1C00D130_0000000000000000 +1C00D138_0000000000000000 +1C00D140_0000000000000000 +1C00D148_0000000000000000 +1C00D150_0000000000000000 +1C00D158_0000000000000000 +1C00D160_0000000000000000 +1C00D168_0000000000000000 +1C00D170_0000000000000000 +1C00D178_0000000000000000 +1C00D180_0000000000000000 +1C00D188_0000000000000000 +1C00D190_0000000000000000 +1C00D198_0000000000000000 +1C00D1A0_0000000000000000 +1C00D1A8_0000000000000000 +1C00D1B0_0000000000000000 +1C00D1B8_0000000000000000 +1C00D1C0_0000000000000000 +1C00D1C8_0000000000000000 +1C00D1D0_0000000000000000 +1C00D1D8_0000000000000000 +1C00D1E0_0000000000000000 +1C00D1E8_0000000000000000 +1C00D1F0_0000000000000000 +1C00D1F8_0000000000000000 +1C00D200_0000000000000000 +1C00D208_0000000000000000 +1C00D210_0000000000000000 +1C00D218_0000000000000000 +1C00D220_0000000000000000 +1C00D228_0000000000000000 +1C00D230_0000000000000000 +1C00D238_0000000000000000 +1C00D240_0000000000000000 +1C00D248_0000000000000000 +1C00D250_0000000000000000 +1C00D258_0000000000000000 +1C00D260_0000000000000000 +1C00D268_0000000000000000 +1C00D270_0000000000000000 +1C00D278_0000000000000000 +1C00D280_0000000000000000 +1C00D288_0000000000000000 +1C00D290_0000000000000000 +1C00D298_0000000000000000 +1C00D2A0_0000000000000000 +1C00D2A8_0000000000000000 +1C00D2B0_0000000000000000 +1C00D2B8_0000000000000000 +1C00D2C0_0000000000000000 +1C00D2C8_0000000000000000 +1C00D2D0_0000000000000000 +1C00D2D8_0000000000000000 +1C00D2E0_0000000000000000 +1C00D2E8_0000000000000000 +1C00D2F0_0000000000000000 +1C00D2F8_0000000000000000 +1C00D300_0000000000000000 +1C00D308_0000000000000000 +1C00D310_0000000000000000 +1C00D318_0000000000000000 +1C00D320_0000000000000000 +1C00D328_0000000000000000 +1C00D330_0000000000000000 +1C00D338_0000000000000000 +1C00D340_0000000000000000 +1C00D348_0000000000000000 +1C00D350_0000000000000000 +1C00D358_0000000000000000 +1C00D360_0000000000000000 +1C00D368_0000000000000000 +1C00D370_0000000000000000 +1C00D378_0000000000000000 +1C00D380_0000000000000000 +1C00D388_0000000000000000 +1C00D390_0000000000000000 +1C00D398_0000000000000000 +1C00D3A0_0000000000000000 +1C00D3A8_0000000000000000 +1C00D3B0_0000000000000000 +1C00D3B8_0000000000000000 +1C00D3C0_0000000000000000 +1C00D3C8_0000000000000000 +1C00D3D0_0000000000000000 +1C00D3D8_0000000000000000 +1C00D3E0_0000000000000000 +1C00D3E8_0000000000000000 +1C00D3F0_0000000000000000 +1C00D3F8_0000000000000000 +1C00D400_0000000000000000 +1C00D408_0000000000000000 +1C00D410_0000000000000000 +1C00D418_0000000000000000 +1C00D420_0000000000000000 +1C00D428_0000000000000000 +1C00D430_0000000000000000 +1C00D438_0000000000000000 +1C00D440_0000000000000000 +1C00D448_0000000000000000 +1C00D450_0000000000000000 +1C00D458_0000000000000000 +1C00D460_0000000000000000 +1C00D468_0000000000000000 +1C00D470_0000000000000000 +1C00D478_0000000000000000 +1C00D480_0000000000000000 +1C00D488_0000000000000000 +1C00D490_0000000000000000 +1C00D498_0000000000000000 +1C00D4A0_0000000000000000 +1C00D4A8_0000000000000000 +1C00D4B0_0000000000000000 +1C00D4B8_0000000000000000 +1C00D4C0_0000000000000000 +1C00D4C8_0000000000000000 +1C00D4D0_0000000000000000 +1C00D4D8_0000000000000000 +1C00D4E0_0000000000000000 +1C00D4E8_0000000000000000 +1C00D4F0_0000000000000000 +1C00D4F8_0000000000000000 +1C00D500_0000000000000000 +1C00D508_0000000000000000 +1C00D510_0000000000000000 +1C00D518_0000000000000000 +1C00D520_0000000000000000 +1C00D528_0000000000000000 +1C00D530_0000000000000000 +1C00D538_0000000000000000 +1C00D540_0000000000000000 +1C00D548_0000000000000000 +1C00D550_0000000000000000 +1C00D558_0000000000000000 +1C00D560_0000000000000000 +1C00D568_0000000000000000 +1C00D570_0000000000000000 +1C00D578_0000000000000000 +1C00D580_0000000000000000 +1C00D588_0000000000000000 +1C00D590_0000000000000000 +1C00D598_0000000000000000 +1C00D5A0_0000000000000000 +1C00D5A8_0000000000000000 +1C00D5B0_0000000000000000 +1C00D5B8_0000000000000000 +1C00D5C0_0000000000000000 +1C00D5C8_0000000000000000 +1C00D5D0_0000000000000000 +1C00D5D8_0000000000000000 +1C00D5E0_0000000000000000 +1C00D5E8_0000000000000000 +1C00D5F0_0000000000000000 +1C00D5F8_0000000000000000 +1C00D600_0000000000000000 +1C00D608_0000000000000000 +1C00D610_0000000000000000 +1C00D618_0000000000000000 +1C00D620_0000000000000000 +1C00D628_0000000000000000 +1C00D630_0000000000000000 +1C00D638_0000000000000000 +1C00D640_0000000000000000 +1C00D648_0000000000000000 +1C00D650_0000000000000000 +1C00D658_0000000000000000 +1C00D660_0000000000000000 +1C00D668_0000000000000000 +1C00D670_0000000000000000 +1C00D678_0000000000000000 +1C00D680_0000000000000000 +1C00D688_0000000000000000 +1C00D690_0000000000000000 +1C00D698_0000000000000000 +1C00D6A0_0000000000000000 +1C00D6A8_0000000000000000 +1C00D6B0_0000000000000000 +1C00D6B8_0000000000000000 +1C00D6C0_0000000000000000 +1C00D6C8_0000000000000000 +1C00D6D0_0000000000000000 +1C00D6D8_0000000000000000 +1C00D6E0_0000000000000000 +1C00D6E8_0000000000000000 +1C00D6F0_0000000000000000 +1C00D6F8_0000000000000000 +1C00D700_0000000000000000 +1C00D708_0000000000000000 +1C00D710_0000000000000000 +1C00D718_0000000000000000 +1C00D720_0000000000000000 +1C00D728_0000000000000000 +1C00D730_0000000000000000 +1C00D738_0000000000000000 +1C00D740_0000000000000000 +1C00D748_0000000000000000 +1C00D750_0000000000000000 +1C00D758_0000000000000000 +1C00D760_0000000000000000 +1C00D768_0000000000000000 +1C00D770_0000000000000000 +1C00D778_0000000000000000 +1C00D780_0000000000000000 +1C00D788_0000000000000000 +1C00D790_0000000000000000 +1C00D798_0000000000000000 +1C00D7A0_0000000000000000 +1C00D7A8_0000000000000000 +1C00D7B0_0000000000000000 +1C00D7B8_0000000000000000 +1C00D7C0_0000000000000000 +1C00D7C8_0000000000000000 +1C00D7D0_0000000000000000 +1C00D7D8_0000000000000000 +1C00D7E0_0000000000000000 +1C00D7E8_0000000000000000 +1C00D7F0_0000000000000000 +1C00D7F8_0000000000000000 +1C00D800_0000000000000000 +1C00D808_0000000000000000 +1C00D810_0000000000000000 +1C00D818_0000000000000000 +1C00D820_0000000000000000 +1C00D828_0000000000000000 +1C00D830_0000000000000000 +1C00D838_0000000000000000 +1C00D840_0000000000000000 +1C00D848_0000000000000000 +1C00D850_0000000000000000 +1C00D858_0000000000000000 +1C00D860_0000000000000000 +1C00D868_0000000000000000 +1C00D870_0000000000000000 +1C00D878_0000000000000000 +1C00D880_0000000000000000 +1C00D888_0000000000000000 +1C00D890_0000000000000000 +1C00D898_0000000000000000 +1C00D8A0_0000000000000000 +1C00D8A8_0000000000000000 +1C00D8B0_0000000000000000 +1C00D8B8_0000000000000000 +1C00D8C0_0000000000000000 +1C00D8C8_0000000000000000 +1C00D8D0_0000000000000000 +1C00D8D8_0000000000000000 +1C00D8E0_0000000000000000 +1C00D8E8_0000000000000000 +1C00D8F0_0000000000000000 +1C00D8F8_0000000000000000 +1C00D900_0000000000000000 +1C00D908_0000000000000000 +1C00D910_0000000000000000 +1C00D918_0000000000000000 +1C00D920_0000000000000000 +1C00D928_0000000000000000 +1C00D930_0000000000000000 +1C00D938_0000000000000000 +1C00D940_0000000000000000 +1C00D948_0000000000000000 +1C00D950_0000000000000000 +1C00D958_0000000000000000 +1C00D960_0000000000000000 +1C00D968_0000000000000000 +1C00D970_0000000000000000 +1C00D978_0000000000000000 +1C00D980_0000000000000000 +1C00D988_0000000000000000 +1C00D990_0000000000000000 +1C00D998_0000000000000000 +1C00D9A0_0000000000000000 +1C00D9A8_0000000000000000 +1C00D9B0_0000000000000000 +1C00D9B8_0000000000000000 +1C00D9C0_0000000000000000 +1C00D9C8_0000000000000000 +1C00D9D0_0000000000000000 +1C00D9D8_0000000000000000 +1C00D9E0_0000000000000000 +1C00D9E8_0000000000000000 +1C00D9F0_0000000000000000 +1C00D9F8_0000000000000000 +1C00DA00_0000000000000000 +1C00DA08_0000000000000000 +1C00DA10_0000000000000000 +1C00DA18_0000000000000000 +1C00DA20_0000000000000000 +1C00DA28_0000000000000000 +1C00DA30_0000000000000000 +1C00DA38_0000000000000000 +1C00DA40_0000000000000000 +1C00DA48_0000000000000000 +1C00DA50_0000000000000000 +1C00DA58_0000000000000000 +1C00DA60_0000000000000000 +1C00DA68_0000000000000000 +1C00DA70_0000000000000000 +1C00DA78_0000000000000000 +1C00DA80_0000000000000000 +1C00DA88_0000000000000000 +1C00DA90_0000000000000000 +1C00DA98_0000000000000000 +1C00DAA0_0000000000000000 +1C00DAA8_0000000000000000 +1C00DAB0_0000000000000000 +1C00DAB8_0000000000000000 +1C00DAC0_0000000000000000 +1C00DAC8_0000000000000000 +1C00DAD0_0000000000000000 +1C00DAD8_0000000000000000 +1C00DAE0_0000000000000000 +1C00DAE8_0000000000000000 +1C00DAF0_0000000000000000 +1C00DAF8_0000000000000000 +1C00DB00_0000000000000000 +1C00DB08_0000000000000000 +1C00DB10_0000000000000000 +1C00DB18_0000000000000000 +1C00DB20_0000000000000000 +1C00DB28_0000000000000000 +1C00DB30_0000000000000000 +1C00DB38_0000000000000000 +1C00DB40_0000000000000000 +1C00DB48_0000000000000000 +1C00DB50_0000000000000000 +1C00DB58_0000000000000000 +1C00DB60_0000000000000000 +1C00DB68_0000000000000000 +1C00DB70_0000000000000000 +1C00DB78_0000000000000000 +1C00DB80_0000000000000000 +1C00DB88_0000000000000000 +1C00DB90_0000000000000000 +1C00DB98_0000000000000000 +1C00DBA0_0000000000000000 +1C00DBA8_0000000000000000 +1C00DBB0_0000000000000000 +1C00DBB8_0000000000000000 +1C00DBC0_0000000000000000 +1C00DBC8_0000000000000000 +1C00DBD0_0000000000000000 +1C00DBD8_0000000000000000 +1C00DBE0_0000000000000000 +1C00DBE8_0000000000000000 +1C00DBF0_0000000000000000 +1C00DBF8_0000000000000000 +1C00DC00_0000000000000000 +1C00DC08_0000000000000000 +1C00DC10_0000000000000000 +1C00DC18_0000000000000000 +1C00DC20_0000000000000000 +1C00DC28_0000000000000000 +1C00DC30_0000000000000000 +1C00DC38_0000000000000000 +1C00DC40_0000000000000000 +1C00DC48_0000000000000000 +1C00DC50_0000000000000000 +1C00DC58_0000000000000000 +1C00DC60_0000000000000000 +1C00DC68_0000000000000000 +1C00DC70_0000000000000000 +1C00DC78_0000000000000000 +1C00DC80_0000000000000000 +1C00DC88_0000000000000000 +1C00DC90_0000000000000000 +1C00DC98_0000000000000000 +1C00DCA0_0000000000000000 +1C00DCA8_0000000000000000 +1C00DCB0_0000000000000000 +1C00DCB8_0000000000000000 +1C00DCC0_0000000000000000 +1C00DCC8_0000000000000000 +1C00DCD0_0000000000000000 +1C00DCD8_0000000000000000 +1C00DCE0_0000000000000000 +1C00DCE8_0000000000000000 +1C00DCF0_0000000000000000 +1C00DCF8_0000000000000000 +1C00DD00_0000000000000000 +1C00DD08_0000000000000000 +1C00DD10_0000000000000000 +1C00DD18_0000000000000000 +1C00DD20_0000000000000000 +1C00DD28_0000000000000000 +1C00DD30_0000000000000000 +1C00DD38_0000000000000000 +1C00DD40_0000000000000000 +1C00DD48_0000000000000000 +1C00DD50_0000000000000000 +1C00DD58_0000000000000000 +1C00DD60_0000000000000000 +1C00DD68_0000000000000000 +1C00DD70_0000000000000000 +1C00DD78_0000000000000000 +1C00DD80_0000000000000000 +1C00DD88_0000000000000000 +1C00DD90_0000000000000000 +1C00DD98_0000000000000000 +1C00DDA0_0000000000000000 +1C00DDA8_0000000000000000 +1C00DDB0_0000000000000000 +1C00DDB8_0000000000000000 +1C00DDC0_0000000000000000 +1C00DDC8_0000000000000000 +1C00DDD0_0000000000000000 +1C00DDD8_0000000000000000 +1C00DDE0_0000000000000000 +1C00DDE8_0000000000000000 +1C00DDF0_0000000000000000 +1C00DDF8_0000000000000000 +1C00DE00_0000000000000000 +1C00DE08_0000000000000000 +1C00DE10_0000000000000000 +1C00DE18_0000000000000000 +1C00DE20_0000000000000000 +1C00DE28_0000000000000000 +1C00DE30_0000000000000000 +1C00DE38_0000000000000000 +1C00DE40_0000000000000000 +1C00DE48_0000000000000000 +1C00DE50_0000000000000000 +1C00DE58_0000000000000000 +1C00DE60_0000000000000000 +1C00DE68_0000000000000000 +1C00DE70_0000000000000000 +1C00DE78_0000000000000000 +1C00DE80_0000000000000000 +1C00DE88_0000000000000000 +1C00DE90_0000000000000000 +1C00DE98_0000000000000000 +1C00DEA0_0000000000000000 +1C00DEA8_0000000000000000 +1C00DEB0_0000000000000000 +1C00DEB8_0000000000000000 +1C00DEC0_0000000000000000 +1C00DEC8_0000000000000000 +1C00DED0_0000000000000000 +1C00DED8_0000000000000000 +1C00DEE0_0000000000000000 +1C00DEE8_0000000000000000 +1C00DEF0_0000000000000000 +1C00DEF8_0000000000000000 +1C00DF00_0000000000000000 +1C00DF08_0000000000000000 +1C00DF10_0000000000000000 +1C00DF18_0000000000000000 +1C00DF20_0000000000000000 +1C00DF28_0000000000000000 +1C00DF30_0000000000000000 +1C00DF38_0000000000000000 +1C00DF40_0000000000000000 +1C00DF48_0000000000000000 +1C00DF50_0000000000000000 +1C00DF58_0000000000000000 +1C00DF60_0000000000000000 +1C00DF68_0000000000000000 +1C00DF70_0000000000000000 +1C00DF78_0000000000000000 +1C00DF80_0000000000000000 +1C00DF88_0000000000000000 +1C00DF90_0000000000000000 +1C00DF98_0000000000000000 +1C00DFA0_0000000000000000 +1C00DFA8_0000000000000000 +1C00DFB0_0000000000000000 +1C00DFB8_0000000000000000 +1C00DFC0_0000000000000000 +1C00DFC8_0000000000000000 +1C00DFD0_0000000000000000 +1C00DFD8_0000000000000000 +1C00DFE0_0000000000000000 +1C00DFE8_0000000000000000 +1C00DFF0_0000000000000000 +1C00DFF8_0000000000000000 +1C00E000_0000000000000000 +1C00E008_0000000000000000 +1C00E010_0000000000000000 +1C00E018_0000000000000000 +1C00E020_0000000000000000 +1C00E028_0000000000000000 +1C00E030_0000000000000000 +1C00E038_0000000000000000 +1C00E040_0000000000000000 +1C00E048_0000000000000000 +1C00E050_0000000000000000 +1C00E058_0000000000000000 +1C00E060_0000000000000000 +1C00E068_0000000000000000 +1C00E070_0000000000000000 +1C00E078_0000000000000000 +1C00E080_0000000000000000 +1C00E088_0000000000000000 +1C00E090_0000000000000000 +1C00E098_0000000000000000 +1C00E0A0_0000000000000000 +1C00E0A8_0000000000000000 +1C00E0B0_0000000000000000 +1C00E0B8_0000000000000000 +1C00E0C0_0000000000000000 +1C00E0C8_0000000000000000 +1C00E0D0_0000000000000000 +1C00E0D8_0000000000000000 +1C00E0E0_0000000000000000 +1C00E0E8_0000000000000000 +1C00E0F0_0000000000000000 +1C00E0F8_0000000000000000 +1C00E100_0000000000000000 +1C00E108_0000000000000000 +1C00E110_0000000000000000 +1C00E118_0000000000000000 +1C00E120_0000000000000000 +1C00E128_0000000000000000 +1C00E130_0000000000000000 +1C00E138_0000000000000000 +1C00E140_0000000000000000 +1C00E148_0000000000000000 +1C00E150_0000000000000000 +1C00E158_0000000000000000 +1C00E160_0000000000000000 +1C00E168_0000000000000000 +1C00E170_0000000000000000 +1C00E178_0000000000000000 +1C00E180_0000000000000000 +1C00E188_0000000000000000 +1C00E190_0000000000000000 +1C00E198_0000000000000000 +1C00E1A0_0000000000000000 +1C00E1A8_0000000000000000 +1C00E1B0_0000000000000000 +1C00E1B8_0000000000000000 +1C00E1C0_0000000000000000 +1C00E1C8_0000000000000000 +1C00E1D0_0000000000000000 +1C00E1D8_0000000000000000 +1C00E1E0_0000000000000000 +1C00E1E8_0000000000000000 +1C00E1F0_0000000000000000 +1C00E1F8_0000000000000000 +1C00E200_0000000000000000 +1C00E208_0000000000000000 +1C00E210_0000000000000000 +1C00E218_0000000000000000 +1C00E220_0000000000000000 +1C00E228_0000000000000000 +1C00E230_0000000000000000 +1C00E238_0000000000000000 +1C00E240_0000000000000000 +1C00E248_0000000000000000 +1C00E250_0000000000000000 +1C00E258_0000000000000000 +1C00E260_0000000000000000 +1C00E268_0000000000000000 +1C00E270_0000000000000000 +1C00E278_0000000000000000 +1C00E280_0000000000000000 +1C00E288_0000000000000000 +1C00E290_0000000000000000 +1C00E298_0000000000000000 +1C00E2A0_0000000000000000 +1C00E2A8_0000000000000000 +1C00E2B0_0000000000000000 +1C00E2B8_0000000000000000 +1C00E2C0_0000000000000000 +1C00E2C8_0000000000000000 +1C00E2D0_0000000000000000 +1C00E2D8_0000000000000000 +1C00E2E0_0000000000000000 +1C00E2E8_0000000000000000 +1C00E2F0_0000000000000000 +1C00E2F8_0000000000000000 +1C00E300_0000000000000000 +1C00E308_0000000000000000 +1C00E310_0000000000000000 +1C00E318_0000000000000000 +1C00E320_0000000000000000 +1C00E328_0000000000000000 +1C00E330_0000000000000000 +1C00E338_0000000000000000 +1C00E340_0000000000000000 +1C00E348_0000000000000000 +1C00E350_0000000000000000 +1C00E358_0000000000000000 +1C00E360_0000000000000000 +1C00E368_0000000000000000 +1C00E370_0000000000000000 +1C00E378_0000000000000000 +1C00E380_0000000000000000 +1C00E388_0000000000000000 +1C00E390_0000000000000000 +1C00E398_0000000000000000 +1C00E3A0_0000000000000000 +1C00E3A8_0000000000000000 +1C00E3B0_0000000000000000 +1C00E3B8_0000000000000000 +1C00E3C0_0000000000000000 +1C00E3C8_0000000000000000 +1C00E3D0_0000000000000000 +1C00E3D8_0000000000000000 +1C00E3E0_0000000000000000 +1C00E3E8_0000000000000000 +1C00E3F0_0000000000000000 +1C00E3F8_0000000000000000 +1C00E400_0000000000000000 +1C00E408_0000000000000000 +1C00E410_0000000000000000 +1C00E418_0000000000000000 +1C00E420_0000000000000000 +1C00E428_0000000000000000 +1C00E430_0000000000000000 +1C00E438_0000000000000000 +1C00E440_0000000000000000 +1C00E448_0000000000000000 +1C00E450_0000000000000000 +1C00E458_0000000000000000 +1C00E460_0000000000000000 +1C00E468_0000000000000000 +1C00E470_0000000000000000 +1C00E478_0000000000000000 +1C00E480_0000000000000000 +1C00E488_0000000000000000 +1C00E490_0000000000000000 +1C00E498_0000000000000000 +1C00E4A0_0000000000000000 +1C00E4A8_0000000000000000 +1C00E4B0_0000000000000000 +1C00E4B8_0000000000000000 +1C00E4C0_0000000000000000 +1C00E4C8_0000000000000000 +1C00E4D0_0000000000000000 +1C00E4D8_0000000000000000 +1C00E4E0_0000000000000000 +1C00E4E8_0000000000000000 +1C00E4F0_0000000000000000 +1C00E4F8_0000000000000000 +1C00E500_0000000000000000 +1C00E508_0000000000000000 +1C00E510_0000000000000000 +1C00E518_0000000000000000 +1C00E520_0000000000000000 +1C00E528_0000000000000000 +1C00E530_0000000000000000 +1C00E538_0000000000000000 +1C00E540_0000000000000000 +1C00E548_0000000000000000 +1C00E550_0000000000000000 +1C00E558_0000000000000000 +1C00E560_0000000000000000 +1C00E568_0000000000000000 +1C00E570_0000000000000000 +1C00E578_0000000000000000 +1C00E580_0000000000000000 +1C00E588_0000000000000000 +1C00E590_0000000000000000 +1C00E598_0000000000000000 +1C00E5A0_0000000000000000 +1C00E5A8_0000000000000000 +1C00E5B0_0000000000000000 +1C00E5B8_0000000000000000 +1C00E5C0_0000000000000000 +1C00E5C8_0000000000000000 +1C00E5D0_0000000000000000 +1C00E5D8_0000000000000000 +1C00E5E0_0000000000000000 +1C00E5E8_0000000000000000 +1C00E5F0_0000000000000000 +1C00E5F8_0000000000000000 +1C00E600_0000000000000000 +1C00E608_0000000000000000 +1C00E610_0000000000000000 +1C00E618_0000000000000000 +1C00E620_0000000000000000 +1C00E628_0000000000000000 +1C00E630_0000000000000000 +1C00E638_0000000000000000 +1C00E640_0000000000000000 +1C00E648_0000000000000000 +1C00E650_0000000000000000 +1C00E658_0000000000000000 +1C00E660_0000000000000000 +1C00E668_0000000000000000 +1C00E670_0000000000000000 +1C00E678_0000000000000000 +1C00E680_0000000000000000 +1C00E688_0000000000000000 +1C00E690_0000000000000000 +1C00E698_0000000000000000 +1C00E6A0_0000000000000000 +1C00E6A8_0000000000000000 +1C00E6B0_0000000000000000 +1C00E6B8_0000000000000000 +1C00E6C0_0000000000000000 +1C00E6C8_0000000000000000 +1C00E6D0_0000000000000000 +1C00E6D8_0000000000000000 +1C00E6E0_0000000000000000 +1C00E6E8_0000000000000000 +1C00E6F0_0000000000000000 +1C00E6F8_0000000000000000 +1C00E700_0000000000000000 +1C00E708_0000000000000000 +1C00E710_0000000000000000 +1C00E718_0000000000000000 +1C00E720_0000000000000000 +1C00E728_0000000000000000 +1C00E730_0000000000000000 +1C00E738_0000000000000000 +1C00E740_0000000000000000 +1C00E748_0000000000000000 +1C00E750_0000000000000000 +1C00E758_0000000000000000 +1C00E760_0000000000000000 +1C00E768_0000000000000000 +1C00E770_0000000000000000 +1C00E778_0000000000000000 +1C00E780_0000000000000000 +1C00E788_0000000000000000 +1C00E790_0000000000000000 +1C00E798_0000000000000000 +1C00E7A0_0000000000000000 +1C00E7A8_0000000000000000 +1C00E7B0_0000000000000000 +1C00E7B8_0000000000000000 +1C00E7C0_0000000000000000 +1C00E7C8_0000000000000000 +1C00E7D0_0000000000000000 +1C00E7D8_0000000000000000 +1C00E7E0_0000000000000000 +1C00E7E8_0000000000000000 +1C00E7F0_0000000000000000 +1C00E7F8_0000000000000000 +1C00E800_0000000000000000 +1C00E808_0000000000000000 +1C00E810_0000000000000000 +1C00E818_0000000000000000 +1C00E820_0000000000000000 +1C00E828_0000000000000000 +1C00E830_0000000000000000 +1C00E838_0000000000000000 +1C00E840_0000000000000000 +1C00E848_0000000000000000 +1C00E850_0000000000000000 +1C00E858_0000000000000000 +1C00E860_0000000000000000 +1C00E868_0000000000000000 +1C00E870_0000000000000000 +1C00E878_0000000000000000 +1C00E880_0000000000000000 +1C00E888_0000000000000000 +1C00E890_0000000000000000 +1C00E898_0000000000000000 +1C00E8A0_0000000000000000 +1C00E8A8_0000000000000000 +1C00E8B0_0000000000000000 +1C00E8B8_0000000000000000 +1C00E8C0_0000000000000000 +1C00E8C8_0000000000000000 +1C00E8D0_0000000000000000 +1C00E8D8_0000000000000000 +1C00E8E0_0000000000000000 +1C00E8E8_0000000000000000 +1C00E8F0_0000000000000000 +1C00E8F8_0000000000000000 +1C00E900_0000000000000000 +1C00E908_0000000000000000 +1C00E910_0000000000000000 +1C00E918_0000000000000000 +1C00E920_0000000000000000 +1C00E928_0000000000000000 +1C00E930_0000000000000000 +1C00E938_0000000000000000 +1C00E940_0000000000000000 +1C00E948_0000000000000000 +1C00E950_0000000000000000 +1C00E958_0000000000000000 +1C00E960_0000000000000000 +1C00E968_0000000000000000 +1C00E970_0000000000000000 +1C00E978_0000000000000000 +1C00E980_0000000000000000 +1C00E988_0000000000000000 +1C00E990_0000000000000000 +1C00E998_0000000000000000 +1C00E9A0_0000000000000000 +1C00E9A8_0000000000000000 +1C00E9B0_0000000000000000 +1C00E9B8_0000000000000000 +1C00E9C0_0000000000000000 +1C00E9C8_0000000000000000 +1C00E9D0_0000000000000000 +1C00E9D8_0000000000000000 +1C00E9E0_0000000000000000 +1C00E9E8_0000000000000000 +1C00E9F0_0000000000000000 +1C00E9F8_0000000000000000 +1C00EA00_0000000000000000 +1C00EA08_0000000000000000 +1C00EA10_0000000000000000 +1C00EA18_0000000000000000 +1C00EA20_0000000000000000 +1C00EA28_0000000000000000 +1C00EA30_0000000000000000 +1C00EA38_0000000000000000 +1C00EA40_0000000000000000 +1C00EA48_0000000000000000 +1C00EA50_0000000000000000 +1C00EA58_0000000000000000 +1C00EA60_0000000000000000 +1C00EA68_0000000000000000 +1C00EA70_0000000000000000 +1C00EA78_0000000000000000 +1C00EA80_0000000000000000 +1C00EA88_0000000000000000 +1C00EA90_0000000000000000 +1C00EA98_0000000000000000 +1C00EAA0_0000000000000000 +1C00EAA8_0000000000000000 +1C00EAB0_0000000000000000 +1C00EAB8_0000000000000000 +1C00EAC0_0000000000000000 +1C00EAC8_0000000000000000 +1C00EAD0_0000000000000000 +1C00EAD8_0000000000000000 +1C00EAE0_0000000000000000 +1C00EAE8_0000000000000000 +1C00EAF0_0000000000000000 +1C00EAF8_0000000000000000 +1C00EB00_0000000000000000 +1C00EB08_0000000000000000 +1C00EB10_0000000000000000 +1C00EB18_0000000000000000 +1C00EB20_0000000000000000 +1C00EB28_0000000000000000 +1C00EB30_0000000000000000 +1C00EB38_0000000000000000 +1C00EB40_0000000000000000 +1C00EB48_0000000000000000 +1C00EB50_0000000000000000 +1C00EB58_0000000000000000 +1C00EB60_0000000000000000 +1C00EB68_0000000000000000 +1C00EB70_0000000000000000 +1C00EB78_0000000000000000 +1C00EB80_0000000000000000 +1C00EB88_0000000000000000 +1C00EB90_0000000000000000 +1C00EB98_0000000000000000 +1C00EBA0_0000000000000000 +1C00EBA8_0000000000000000 +1C00EBB0_0000000000000000 +1C00EBB8_0000000000000000 +1C00EBC0_0000000000000000 +1C00EBC8_0000000000000000 +1C00EBD0_0000000000000000 +1C00EBD8_0000000000000000 +1C00EBE0_0000000000000000 +1C00EBE8_0000000000000000 +1C00EBF0_0000000000000000 +1C00EBF8_0000000000000000 +1C00EC00_0000000000000000 +1C00EC08_0000000000000000 +1C00EC10_0000000000000000 +1C00EC18_0000000000000000 +1C00EC20_0000000000000000 +1C00EC28_0000000000000000 +1C00EC30_0000000000000000 +1C00EC38_0000000000000000 +1C00EC40_0000000000000000 +1C00EC48_0000000000000000 +1C00EC50_0000000000000000 +1C00EC58_0000000000000000 +1C00EC60_0000000000000000 +1C00EC68_0000000000000000 +1C00EC70_0000000000000000 +1C00EC78_0000000000000000 +1C00EC80_0000000000000000 +1C00EC88_0000000000000000 +1C00EC90_0000000000000000 +1C00EC98_0000000000000000 +1C00ECA0_0000000000000000 +1C00ECA8_0000000000000000 +1C00ECB0_0000000000000000 +1C00ECB8_0000000000000000 +1C00ECC0_0000000000000000 +1C00ECC8_0000000000000000 +1C00ECD0_0000000000000000 +1C00ECD8_0000000000000000 +1C00ECE0_0000000000000000 +1C00ECE8_0000000000000000 +1C00ECF0_0000000000000000 +1C00ECF8_0000000000000000 +1C00ED00_0000000000000000 +1C00ED08_0000000000000000 +1C00ED10_0000000000000000 +1C00ED18_0000000000000000 +1C00ED20_0000000000000000 +1C00ED28_0000000000000000 +1C00ED30_0000000000000000 +1C00ED38_0000000000000000 +1C00ED40_0000000000000000 +1C00ED48_0000000000000000 +1C00ED50_0000000000000000 +1C00ED58_0000000000000000 +1C00ED60_0000000000000000 +1C00ED68_0000000000000000 +1C00ED70_0000000000000000 +1C00ED78_0000000000000000 +1C00ED80_0000000000000000 +1C00ED88_0000000000000000 +1C00ED90_0000000000000000 +1C00ED98_0000000000000000 +1C00EDA0_0000000000000000 +1C00EDA8_0000000000000000 +1C00EDB0_0000000000000000 +1C00EDB8_0000000000000000 +1C00EDC0_0000000000000000 +1C00EDC8_0000000000000000 +1C00EDD0_0000000000000000 +1C00EDD8_0000000000000000 +1C00EDE0_0000000000000000 +1C00EDE8_0000000000000000 +1C00EDF0_0000000000000000 +1C00EDF8_0000000000000000 +1C00EE00_0000000000000000 +1C00EE08_0000000000000000 +1C00EE10_0000000000000000 +1C00EE18_0000000000000000 +1C00EE20_0000000000000000 +1C00EE28_0000000000000000 +1C00EE30_0000000000000000 +1C00EE38_0000000000000000 +1C00EE40_0000000000000000 +1C00EE48_0000000000000000 +1C00EE50_0000000000000000 +1C00EE58_0000000000000000 +1C00EE60_0000000000000000 +1C00EE68_0000000000000000 +1C00EE70_0000000000000000 +1C00EE78_0000000000000000 +1C00EE80_0000000000000000 +1C00EE88_0000000000000000 +1C00EE90_0000000000000000 +1C00EE98_0000000000000000 +1C00EEA0_0000000000000000 +1C00EEA8_0000000000000000 +1C00EEB0_0000000000000000 +1C00EEB8_0000000000000000 +1C00EEC0_0000000000000000 +1C00EEC8_0000000000000000 +1C00EED0_0000000000000000 +1C00EED8_0000000000000000 +1C00EEE0_0000000000000000 +1C00EEE8_0000000000000000 +1C00EEF0_0000000000000000 +1C00EEF8_0000000000000000 +1C00EF00_0000000000000000 +1C00EF08_0000000000000000 +1C00EF10_0000000000000000 +1C00EF18_0000000000000000 +1C00EF20_0000000000000000 +1C00EF28_0000000000000000 +1C00EF30_0000000000000000 +1C00EF38_0000000000000000 +1C00EF40_0000000000000000 +1C00EF48_0000000000000000 +1C00EF50_0000000000000000 +1C00EF58_0000000000000000 +1C00EF60_0000000000000000 +1C00EF68_0000000000000000 +1C00EF70_0000000000000000 +1C00EF78_0000000000000000 +1C00EF80_0000000000000000 +1C00EF88_0000000000000000 +1C00EF90_0000000000000000 +1C00EF98_0000000000000000 +1C00EFA0_0000000000000000 +1C00EFA8_0000000000000000 +1C00EFB0_0000000000000000 +1C00EFB8_0000000000000000 +1C00EFC0_0000000000000000 +1C00EFC8_0000000000000000 +1C00EFD0_0000000000000000 +1C00EFD8_0000000000000000 +1C00EFE0_0000000000000000 +1C00EFE8_0000000000000000 +1C00EFF0_0000000000000000 +1C00EFF8_0000000000000000 +1C00F000_0000000000000000 +1C00F008_0000000000000000 +1C00F010_0000000000000000 +1C00F018_0000000000000000 +1C00F020_0000000000000000 +1C00F028_0000000000000000 +1C00F030_0000000000000000 +1C00F038_0000000000000000 +1C00F040_0000000000000000 +1C00F048_0000000000000000 +1C00F050_0000000000000000 +1C00F058_0000000000000000 +1C00F060_0000000000000000 +1C00F068_0000000000000000 +1C00F070_0000000000000000 +1C00F078_0000000000000000 +1C00F080_0000000000000000 +1C00F088_0000000000000000 +1C00F090_0000000000000000 +1C00F098_0000000000000000 +1C00F0A0_0000000000000000 +1C00F0A8_0000000000000000 +1C00F0B0_0000000000000000 +1C00F0B8_0000000000000000 +1C00F0C0_0000000000000000 +1C00F0C8_0000000000000000 +1C00F0D0_0000000000000000 +1C00F0D8_0000000000000000 +1C00F0E0_0000000000000000 +1C00F0E8_0000000000000000 +1C00F0F0_0000000000000000 +1C00F0F8_0000000000000000 +1C00F100_0000000000000000 +1C00F108_0000000000000000 +1C00F110_0000000000000000 +1C00F118_0000000000000000 +1C00F120_0000000000000000 +1C00F128_0000000000000000 +1C00F130_0000000000000000 +1C00F138_0000000000000000 +1C00F140_0000000000000000 +1C00F148_0000000000000000 +1C00F150_0000000000000000 +1C00F158_0000000000000000 +1C00F160_0000000000000000 +1C00F168_0000000000000000 +1C00F170_0000000000000000 +1C00F178_0000000000000000 +1C00F180_0000000000000000 +1C00F188_0000000000000000 +1C00F190_0000000000000000 +1C00F198_0000000000000000 +1C00F1A0_0000000000000000 +1C00F1A8_0000000000000000 +1C00F1B0_0000000000000000 +1C00F1B8_0000000000000000 +1C00F1C0_0000000000000000 +1C00F1C8_0000000000000000 +1C00F1D0_0000000000000000 +1C00F1D8_0000000000000000 +1C00F1E0_0000000000000000 +1C00F1E8_0000000000000000 +1C00F1F0_0000000000000000 +1C00F1F8_0000000000000000 +1C00F200_0000000000000000 +1C00F208_0000000000000000 +1C00F210_0000000000000000 +1C00F218_0000000000000000 +1C00F220_0000000000000000 +1C00F228_0000000000000000 +1C00F230_0000000000000000 +1C00F238_0000000000000000 +1C00F240_0000000000000000 +1C00F248_0000000000000000 +1C00F250_0000000000000000 +1C00F258_0000000000000000 +1C00F260_0000000000000000 +1C00F268_0000000000000000 +1C00F270_0000000000000000 +1C00F278_0000000000000000 +1C00F280_0000000000000000 +1C00F288_0000000000000000 +1C00F290_0000000000000000 +1C00F298_0000000000000000 +1C00F2A0_0000000000000000 +1C00F2A8_0000000000000000 +1C00F2B0_0000000000000000 +1C00F2B8_0000000000000000 +1C00F2C0_0000000000000000 +1C00F2C8_0000000000000000 +1C00F2D0_0000000000000000 +1C00F2D8_0000000000000000 +1C00F2E0_0000000000000000 +1C00F2E8_0000000000000000 +1C00F2F0_0000000000000000 +1C00F2F8_0000000000000000 +1C00F300_0000000000000000 +1C00F308_0000000000000000 +1C00F310_0000000000000000 +1C00F318_0000000000000000 +1C00F320_0000000000000000 +1C00F328_0000000000000000 +1C00F330_0000000000000000 +1C00F338_0000000000000000 +1C00F340_0000000000000000 +1C00F348_0000000000000000 +1C00F350_0000000000000000 +1C00F358_0000000000000000 +1C00F360_0000000000000000 +1C00F368_0000000000000000 +1C00F370_0000000000000000 +1C00F378_0000000000000000 +1C00F380_0000000000000000 +1C00F388_0000000000000000 +1C00F390_0000000000000000 +1C00F398_0000000000000000 +1C00F3A0_0000000000000000 +1C00F3A8_0000000000000000 +1C00F3B0_0000000000000000 +1C00F3B8_0000000000000000 +1C00F3C0_0000000000000000 +1C00F3C8_0000000000000000 +1C00F3D0_0000000000000000 +1C00F3D8_0000000000000000 +1C00F3E0_0000000000000000 +1C00F3E8_0000000000000000 +1C00F3F0_0000000000000000 +1C00F3F8_0000000000000000 +1C00F400_0000000000000000 +1C00F408_0000000000000000 +1C00F410_0000000000000000 +1C00F418_0000000000000000 +1C00F420_0000000000000000 +1C00F428_0000000000000000 +1C00F430_0000000000000000 +1C00F438_0000000000000000 +1C00F440_0000000000000000 +1C00F448_0000000000000000 +1C00F450_0000000000000000 +1C00F458_0000000000000000 +1C00F460_0000000000000000 +1C00F468_0000000000000000 +1C00F470_0000000000000000 +1C00F478_0000000000000000 +1C00F480_0000000000000000 +1C00F488_0000000000000000 +1C00F490_0000000000000000 +1C00F498_0000000000000000 +1C00F4A0_0000000000000000 +1C00F4A8_0000000000000000 +1C00F4B0_0000000000000000 +1C00F4B8_0000000000000000 +1C00F4C0_0000000000000000 +1C00F4C8_0000000000000000 +1C00F4D0_0000000000000000 +1C00F4D8_0000000000000000 +1C00F4E0_0000000000000000 +1C00F4E8_0000000000000000 +1C00F4F0_0000000000000000 +1C00F4F8_0000000000000000 +1C00F500_0000000000000000 +1C00F508_0000000000000000 +1C00F510_0000000000000000 +1C00F518_0000000000000000 +1C00F520_0000000000000000 +1C00F528_0000000000000000 +1C00F530_0000000000000000 +1C00F538_0000000000000000 +1C00F540_0000000000000000 +1C00F548_0000000000000000 +1C00F550_0000000000000000 +1C00F558_0000000000000000 +1C00F560_0000000000000000 +1C00F568_0000000000000000 +1C00F570_0000000000000000 +1C00F578_0000000000000000 +1C00F580_0000000000000000 +1C00F588_0000000000000000 +1C00F590_0000000000000000 +1C00F598_0000000000000000 +1C00F5A0_0000000000000000 +1C00F5A8_0000000000000000 +1C00F5B0_0000000000000000 +1C00F5B8_0000000000000000 +1C00F5C0_0000000000000000 +1C00F5C8_0000000000000000 +1C00F5D0_0000000000000000 +1C00F5D8_0000000000000000 +1C00F5E0_0000000000000000 +1C00F5E8_0000000000000000 +1C00F5F0_0000000000000000 +1C00F5F8_0000000000000000 +1C00F600_0000000000000000 +1C00F608_0000000000000000 +1C00F610_0000000000000000 +1C00F618_0000000000000000 +1C00F620_0000000000000000 +1C00F628_0000000000000000 +1C00F630_0000000000000000 +1C00F638_0000000000000000 +1C00F640_0000000000000000 +1C00F648_0000000000000000 +1C00F650_0000000000000000 +1C00F658_0000000000000000 +1C00F660_0000000000000000 +1C00F668_0000000000000000 +1C00F670_0000000000000000 +1C00F678_0000000000000000 +1C00F680_0000000000000000 +1C00F688_0000000000000000 +1C00F690_0000000000000000 +1C00F698_0000000000000000 +1C00F6A0_0000000000000000 +1C00F6A8_0000000000000000 +1C00F6B0_0000000000000000 +1C00F6B8_0000000000000000 +1C00F6C0_0000000000000000 +1C00F6C8_0000000000000000 +1C00F6D0_0000000000000000 +1C00F6D8_0000000000000000 +1C00F6E0_0000000000000000 +1C00F6E8_0000000000000000 +1C00F6F0_0000000000000000 +1C00F6F8_0000000000000000 +1C00F700_0000000000000000 +1C00F708_0000000000000000 +1C00F710_0000000000000000 +1C00F718_0000000000000000 +1C00F720_0000000000000000 +1C00F728_0000000000000000 +1C00F730_0000000000000000 +1C00F738_0000000000000000 +1C00F740_0000000000000000 +1C00F748_0000000000000000 +1C00F750_0000000000000000 +1C00F758_0000000000000000 +1C00F760_0000000000000000 +1C00F768_0000000000000000 +1C00F770_0000000000000000 +1C00F778_0000000000000000 +1C00F780_0000000000000000 +1C00F788_0000000000000000 +1C00F790_0000000000000000 +1C00F798_0000000000000000 +1C00F7A0_0000000000000000 +1C00F7A8_0000000000000000 +1C00F7B0_0000000000000000 +1C00F7B8_0000000000000000 +1C00F7C0_0000000000000000 +1C00F7C8_0000000000000000 +1C00F7D0_0000000000000000 +1C00F7D8_0000000000000000 +1C00F7E0_0000000000000000 +1C00F7E8_0000000000000000 +1C00F7F0_0000000000000000 +1C00F7F8_0000000000000000 +1C00F800_0000000000000000 +1C00F808_0000000000000000 +1C00F810_0000000000000000 +1C00F818_0000000000000000 +1C00F820_0000000000000000 +1C00F828_0000000000000000 +1C00F830_0000000000000000 +1C00F838_0000000000000000 +1C00F840_0000000000000000 +1C00F848_0000000000000000 +1C00F850_0000000000000000 +1C00F858_0000000000000000 +1C00F860_0000000000000000 +1C00F868_0000000000000000 +1C00F870_0000000000000000 +1C00F878_0000000000000000 +1C00F880_0000000000000000 +1C00F888_0000000000000000 +1C00F890_0000000000000000 +1C00F898_0000000000000000 +1C00F8A0_0000000000000000 +1C00F8A8_0000000000000000 +1C00F8B0_0000000000000000 +1C00F8B8_0000000000000000 +1C00F8C0_0000000000000000 +1C00F8C8_0000000000000000 +1C00F8D0_0000000000000000 +1C00F8D8_0000000000000000 +1C00F8E0_0000000000000000 +1C00F8E8_0000000000000000 +1C00F8F0_0000000000000000 +1C00F8F8_0000000000000000 +1C00F900_0000000000000000 +1C00F908_0000000000000000 +1C00F910_0000000000000000 +1C00F918_0000000000000000 +1C00F920_0000000000000000 +1C00F928_0000000000000000 +1C00F930_0000000000000000 +1C00F938_0000000000000000 +1C00F940_0000000000000000 +1C00F948_0000000000000000 +1C00F950_0000000000000000 +1C00F958_0000000000000000 +1C00F960_0000000000000000 +1C00F968_0000000000000000 +1C00F970_0000000000000000 +1C00F978_0000000000000000 +1C00F980_0000000000000000 +1C00F988_0000000000000000 +1C00F990_0000000000000000 +1C00F998_0000000000000000 +1C00F9A0_0000000000000000 +1C00F9A8_0000000000000000 +1C00F9B0_0000000000000000 +1C00F9B8_0000000000000000 +1C00F9C0_0000000000000000 +1C00F9C8_0000000000000000 +1C00F9D0_0000000000000000 +1C00F9D8_0000000000000000 +1C00F9E0_0000000000000000 +1C00F9E8_0000000000000000 +1C00F9F0_0000000000000000 +1C00F9F8_0000000000000000 +1C00FA00_0000000000000000 +1C00FA08_0000000000000000 +1C00FA10_0000000000000000 +1C00FA18_0000000000000000 +1C00FA20_0000000000000000 +1C00FA28_0000000000000000 +1C00FA30_0000000000000000 +1C00FA38_0000000000000000 +1C00FA40_0000000000000000 +1C00FA48_0000000000000000 +1C00FA50_0000000000000000 +1C00FA58_0000000000000000 +1C00FA60_0000000000000000 +1C00FA68_0000000000000000 +1C00FA70_0000000000000000 +1C00FA78_0000000000000000 +1C00FA80_0000000000000000 +1C00FA88_0000000000000000 +1C00FA90_0000000000000000 +1C00FA98_0000000000000000 +1C00FAA0_0000000000000000 +1C00FAA8_0000000000000000 +1C00FAB0_0000000000000000 +1C00FAB8_0000000000000000 +1C00FAC0_0000000000000000 +1C00FAC8_0000000000000000 +1C00FAD0_0000000000000000 +1C00FAD8_0000000000000000 +1C00FAE0_0000000000000000 +1C00FAE8_0000000000000000 +1C00FAF0_0000000000000000 +1C00FAF8_0000000000000000 +1C00FB00_0000000000000000 +1C00FB08_0000000000000000 +1C00FB10_0000000000000000 +1C00FB18_0000000000000000 +1C00FB20_0000000000000000 +1C00FB28_0000000000000000 +1C00FB30_0000000000000000 +1C00FB38_0000000000000000 +1C00FB40_0000000000000000 +1C00FB48_0000000000000000 +1C00FB50_0000000000000000 +1C00FB58_0000000000000000 +1C00FB60_0000000000000000 +1C00FB68_0000000000000000 +1C00FB70_0000000000000000 +1C00FB78_0000000000000000 +1C00FB80_0000000000000000 +1C00FB88_0000000000000000 +1C00FB90_0000000000000000 +1C00FB98_0000000000000000 +1C00FBA0_0000000000000000 +1C00FBA8_0000000000000000 +1C00FBB0_0000000000000000 +1C00FBB8_0000000000000000 +1C00FBC0_0000000000000000 +1C00FBC8_0000000000000000 +1C00FBD0_0000000000000000 +1C00FBD8_0000000000000000 +1C00FBE0_0000000000000000 +1C00FBE8_0000000000000000 +1C00FBF0_0000000000000000 +1C00FBF8_0000000000000000 +1C00FC00_0000000000000000 +1C00FC08_0000000000000000 +1C00FC10_0000000000000000 +1C00FC18_0000000000000000 +1C00FC20_0000000000000000 +1C00FC28_0000000000000000 +1C00FC30_0000000000000000 +1C00FC38_0000000000000000 +1C00FC40_0000000000000000 +1C00FC48_0000000000000000 +1C00FC50_0000000000000000 +1C00FC58_0000000000000000 +1C00FC60_0000000000000000 +1C00FC68_0000000000000000 +1C00FC70_0000000000000000 +1C00FC78_0000000000000000 +1C00FC80_0000000000000000 +1C00FC88_0000000000000000 +1C00FC90_0000000000000000 +1C00FC98_0000000000000000 +1C00FCA0_0000000000000000 +1C00FCA8_0000000000000000 +1C00FCB0_0000000000000000 +1C00FCB8_0000000000000000 +1C00FCC0_0000000000000000 +1C00FCC8_0000000000000000 +1C00FCD0_0000000000000000 +1C00FCD8_0000000000000000 +1C00FCE0_0000000000000000 +1C00FCE8_0000000000000000 +1C00FCF0_0000000000000000 +1C00FCF8_0000000000000000 +1C00FD00_0000000000000000 +1C00FD08_0000000000000000 +1C00FD10_0000000000000000 +1C00FD18_0000000000000000 +1C00FD20_0000000000000000 +1C00FD28_0000000000000000 +1C00FD30_0000000000000000 +1C00FD38_0000000000000000 +1C00FD40_0000000000000000 +1C00FD48_0000000000000000 +1C00FD50_0000000000000000 +1C00FD58_0000000000000000 +1C00FD60_0000000000000000 +1C00FD68_0000000000000000 +1C00FD70_0000000000000000 +1C00FD78_0000000000000000 +1C00FD80_0000000000000000 +1C00FD88_0000000000000000 +1C00FD90_0000000000000000 +1C00FD98_0000000000000000 +1C00FDA0_0000000000000000 +1C00FDA8_0000000000000000 +1C00FDB0_0000000000000000 +1C00FDB8_0000000000000000 +1C00FDC0_0000000000000000 +1C00FDC8_0000000000000000 +1C00FDD0_0000000000000000 +1C00FDD8_0000000000000000 +1C00FDE0_0000000000000000 +1C00FDE8_0000000000000000 +1C00FDF0_0000000000000000 +1C00FDF8_0000000000000000 +1C00FE00_0000000000000000 +1C00FE08_0000000000000000 +1C00FE10_0000000000000000 +1C00FE18_0000000000000000 +1C00FE20_0000000000000000 +1C00FE28_0000000000000000 +1C00FE30_0000000000000000 +1C00FE38_0000000000000000 +1C00FE40_0000000000000000 +1C00FE48_0000000000000000 +1C00FE50_0000000000000000 +1C00FE58_0000000000000000 +1C00FE60_0000000000000000 +1C00FE68_0000000000000000 +1C00FE70_0000000000000000 +1C00FE78_0000000000000000 +1C00FE80_0000000000000000 +1C00FE88_0000000000000000 +1C00FE90_0000000000000000 +1C00FE98_0000000000000000 +1C00FEA0_0000000000000000 +1C00FEA8_0000000000000000 +1C00FEB0_0000000000000000 +1C00FEB8_0000000000000000 +1C00FEC0_0000000000000000 +1C00FEC8_0000000000000000 +1C00FED0_0000000000000000 +1C00FED8_0000000000000000 +1C00FEE0_0000000000000000 +1C00FEE8_0000000000000000 +1C00FEF0_0000000000000000 +1C00FEF8_0000000000000000 +1C00FF00_0000000000000000 +1C00FF08_0000000000000000 +1C00FF10_0000000000000000 +1C00FF18_0000000000000000 +1C00FF20_0000000000000000 +1C00FF28_0000000000000000 +1C00FF30_0000000000000000 +1C00FF38_0000000000000000 +1C00FF40_0000000000000000 +1C00FF48_0000000000000000 +1C00FF50_0000000000000000 +1C00FF58_0000000000000000 +1C00FF60_0000000000000000 +1C00FF68_0000000000000000 +1C00FF70_0000000000000000 +1C00FF78_0000000000000000 +1C00FF80_0000000000000000 +1C00FF88_0000000000000000 +1C00FF90_0000000000000000 +1C00FF98_0000000000000000 +1C00FFA0_0000000000000000 +1C00FFA8_0000000000000000 +1C00FFB0_0000000000000000 +1C00FFB8_0000000000000000 +1C00FFC0_0000000000000000 +1C00FFC8_0000000000000000 +1C00FFD0_0000000000000000 +1C00FFD8_0000000000000000 +1C00FFE0_0000000000000000 +1C00FFE8_0000000000000000 +1C00FFF0_0000000000000000 +1C00FFF8_0000000000000000 +1C010000_0000000000000000 +1C010008_0000000000000000 +1C010010_0000000000000000 +1C010018_0000000000000000 +1C010020_0000000000000000 +1C010028_0000000000000000 +1C010030_0000000000000000 +1C010038_0000000000000000 +1C010040_0000000000000000 +1C010048_0000000000000000 +1C010050_0000000000000000 +1C010058_0000000000000000 +1C010060_0000000000000000 +1C010068_0000000000000000 +1C010070_0000000000000000 +1C010078_0000000000000000 +1C010080_0000000000000000 +1C010088_0000000000000000 +1C010090_0000000000000000 +1C010098_0000000000000000 +1C0100A0_0000000000000000 +1C0100A8_0000000000000000 +1C0100B0_0000000000000000 +1C0100B8_0000000000000000 +1C0100C0_0000000000000000 +1C0100C8_0000000000000000 +1C0100D0_0000000000000000 +1C0100D8_0000000000000000 +1C0100E0_0000000000000000 +1C0100E8_0000000000000000 +1C0100F0_0000000000000000 +1C0100F8_0000000000000000 +1C010100_0000000000000000 +1C010108_0000000000000000 +1C010110_0000000000000000 +1C010118_0000000000000000 +1C010120_0000000000000000 +1C010128_0000000000000000 +1C010130_0000000000000000 +1C010138_0000000000000000 +1C010140_0000000000000000 +1C010148_0000000000000000 +1C010150_0000000000000000 +1C010158_0000000000000000 +1C010160_0000000000000000 +1C010168_0000000000000000 +1C010170_0000000000000000 +1C010178_0000000000000000 +1C010180_0000000000000000 +1C010188_0000000000000000 +1C010190_0000000000000000 +1C010198_0000000000000000 +1C0101A0_0000000000000000 +1C0101A8_0000000000000000 +1C0101B0_0000000000000000 +1C0101B8_0000000000000000 +1C0101C0_0000000000000000 +1C0101C8_0000000000000000 +1C0101D0_0000000000000000 +1C0101D8_0000000000000000 +1C0101E0_0000000000000000 +1C0101E8_0000000000000000 +1C0101F0_0000000000000000 +1C0101F8_0000000000000000 +1C010200_0000000000000000 +1C010208_0000000000000000 +1C010210_0000000000000000 +1C010218_0000000000000000 +1C010220_0000000000000000 +1C010228_0000000000000000 +1C010230_0000000000000000 +1C010238_0000000000000000 +1C010240_0000000000000000 +1C010248_0000000000000000 +1C010250_0000000000000000 +1C010258_0000000000000000 +1C010260_0000000000000000 +1C010268_0000000000000000 +1C010270_0000000000000000 +1C010278_0000000000000000 +1C010280_0000000000000000 +1C010288_0000000000000000 +1C010290_0000000000000000 +1C010298_0000000000000000 +1C0102A0_0000000000000000 +1C0102A8_0000000000000000 +1C0102B0_0000000000000000 +1C0102B8_0000000000000000 +1C0102C0_0000000000000000 +1C0102C8_0000000000000000 +1C0102D0_0000000000000000 +1C0102D8_0000000000000000 +1C0102E0_0000000000000000 +1C0102E8_0000000000000000 +1C0102F0_0000000000000000 +1C0102F8_0000000000000000 +1C010300_0000000000000000 +1C010308_0000000000000000 +1C010310_0000000000000000 +1C010318_0000000000000000 +1C010320_0000000000000000 +1C010328_0000000000000000 +1C010330_0000000000000000 +1C010338_0000000000000000 +1C010340_0000000000000000 +1C010348_0000000000000000 +1C010350_0000000000000000 +1C010358_0000000000000000 +1C010360_0000000000000000 +1C010368_0000000000000000 +1C010370_0000000000000000 +1C010378_0000000000000000 +1C010380_0000000000000000 +1C010388_0000000000000000 +1C010390_0000000000000000 +1C010398_0000000000000000 +1C0103A0_0000000000000000 +1C0103A8_0000000000000000 +1C0103B0_0000000000000000 +1C0103B8_0000000000000000 +1C0103C0_0000000000000000 +1C0103C8_0000000000000000 +1C0103D0_0000000000000000 +1C0103D8_0000000000000000 +1C0103E0_0000000000000000 +1C0103E8_0000000000000000 +1C0103F0_0000000000000000 +1C0103F8_0000000000000000 +1C010400_0000000000000000 +1C010408_0000000000000000 +1C010410_0000000000000000 +1C010418_0000000000000000 +1C010420_0000000000000000 +1C010428_0000000000000000 +1C010430_0000000000000000 +1C010438_0000000000000000 +1C010440_0000000000000000 +1C010448_0000000000000000 +1C010450_0000000000000000 +1C010458_0000000000000000 +1C010460_0000000000000000 +1C010468_0000000000000000 +1C010470_0000000000000000 +1C010478_0000000000000000 +1C010480_0000000000000000 +1C010488_0000000000000000 +1C010490_0000000000000000 +1C010498_0000000000000000 +1C0104A0_0000000000000000 +1C0104A8_0000000000000000 +1C0104B0_0000000000000000 +1C0104B8_0000000000000000 +1C0104C0_0000000000000000 +1C0104C8_0000000000000000 +1C0104D0_0000000000000000 +1C0104D8_0000000000000000 +1C0104E0_0000000000000000 +1C0104E8_0000000000000000 +1C0104F0_0000000000000000 +1C0104F8_0000000000000000 +1C010500_0000000000000000 +1C010508_0000000000000000 +1C010510_0000000000000000 +1C010518_0000000000000000 +1C010520_0000000000000000 +1C010528_0000000000000000 +1C010530_0000000000000000 +1C010538_0000000000000000 +1C010540_0000000000000000 +1C010548_0000000000000000 +1C010550_0000000000000000 +1C010558_0000000000000000 +1C010560_0000000000000000 +1C010568_0000000000000000 +1C010570_0000000000000000 +1C010578_0000000000000000 +1C010580_0000000000000000 +1C010588_0000000000000000 +1C010590_0000000000000000 +1C010598_0000000000000000 +1C0105A0_0000000000000000 +1C0105A8_0000000000000000 +1C0105B0_0000000000000000 +1C0105B8_0000000000000000 +1C0105C0_0000000000000000 +1C0105C8_0000000000000000 +1C0105D0_0000000000000000 +1C0105D8_0000000000000000 +1C0105E0_0000000000000000 +1C0105E8_0000000000000000 +1C0105F0_0000000000000000 +1C0105F8_0000000000000000 +1C010600_0000000000000000 +1C010608_0000000000000000 +1C010610_0000000000000000 +1C010618_0000000000000000 +1C010620_0000000000000000 +1C010628_0000000000000000 +1C010630_0000000000000000 +1C010638_0000000000000000 +1C010640_0000000000000000 +1C010648_0000000000000000 +1C010650_0000000000000000 +1C010658_0000000000000000 +1C010660_0000000000000000 +1C010668_0000000000000000 +1C010670_0000000000000000 +1C010678_0000000000000000 +1C010680_0000000000000000 +1C010688_0000000000000000 +1C010690_0000000000000000 +1C010698_0000000000000000 +1C0106A0_0000000000000000 +1C0106A8_0000000000000000 +1C0106B0_0000000000000000 +1C0106B8_0000000000000000 +1C0106C0_0000000000000000 +1C0106C8_0000000000000000 +1C0106D0_0000000000000000 +1C0106D8_0000000000000000 +1C0106E0_0000000000000000 +1C0106E8_0000000000000000 +1C0106F0_0000000000000000 +1C0106F8_0000000000000000 +1C010700_0000000000000000 +1C010708_0000000000000000 +1C010710_0000000000000000 +1C010718_0000000000000000 +1C010720_0000000000000000 +1C010728_0000000000000000 +1C010730_0000000000000000 +1C010738_0000000000000000 +1C010740_0000000000000000 +1C010748_0000000000000000 +1C010750_0000000000000000 +1C010758_0000000000000000 +1C010760_0000000000000000 +1C010768_0000000000000000 +1C010770_0000000000000000 +1C010778_0000000000000000 +1C010780_0000000000000000 +1C010788_0000000000000000 +1C010790_0000000000000000 +1C010798_0000000000000000 +1C0107A0_0000000000000000 +1C0107A8_0000000000000000 +1C0107B0_0000000000000000 +1C0107B8_0000000000000000 +1C0107C0_0000000000000000 +1C0107C8_0000000000000000 +1C0107D0_0000000000000000 +1C0107D8_0000000000000000 +1C0107E0_0000000000000000 +1C0107E8_0000000000000000 +1C0107F0_0000000000000000 +1C0107F8_0000000000000000 +1C010800_0000000000000000 +1C010808_0000000000000000 +1C010810_0000000000000000 +1C010818_0000000000000000 +1C010820_0000000000000000 +1C010828_0000000000000000 +1C010830_0000000000000000 +1C010838_0000000000000000 +1C010840_0000000000000000 +1C010848_0000000000000000 +1C010850_0000000000000000 +1C010858_0000000000000000 +1C010860_0000000000000000 +1C010868_0000000000000000 +1C010870_0000000000000000 +1C010878_0000000000000000 +1C010880_0000000000000000 +1C010888_0000000000000000 +1C010890_0000000000000000 +1C010898_0000000000000000 +1C0108A0_0000000000000000 +1C0108A8_0000000000000000 +1C0108B0_0000000000000000 +1C0108B8_0000000000000000 +1C0108C0_0000000000000000 +1C0108C8_0000000000000000 +1C0108D0_0000000000000000 +1C0108D8_0000000000000000 +1C0108E0_0000000000000000 +1C0108E8_0000000000000000 +1C0108F0_0000000000000000 +1C0108F8_0000000000000000 +1C010900_0000000000000000 +1C010908_0000000000000000 +1C010910_0000000000000000 +1C010918_0000000000000000 +1C010920_0000000000000000 +1C010928_0000000000000000 +1C010930_0000000000000000 +1C010938_0000000000000000 +1C010940_0000000000000000 +1C010948_0000000000000000 +1C010950_0000000000000000 +1C010958_0000000000000000 +1C010960_0000000000000000 +1C010968_0000000000000000 +1C010970_0000000000000000 +1C010978_0000000000000000 +1C010980_0000000000000000 +1C010988_0000000000000000 +1C010990_0000000000000000 +1C010998_0000000000000000 +1C0109A0_0000000000000000 +1C0109A8_0000000000000000 +1C0109B0_0000000000000000 +1C0109B8_0000000000000000 +1C0109C0_0000000000000000 +1C0109C8_0000000000000000 +1C0109D0_0000000000000000 +1C0109D8_0000000000000000 +1C0109E0_0000000000000000 +1C0109E8_0000000000000000 +1C0109F0_0000000000000000 +1C0109F8_0000000000000000 +1C010A00_0000000000000000 +1C010A08_0000000000000000 +1C010A10_0000000000000000 +1C010A18_0000000000000000 +1C010A20_0000000000000000 +1C010A28_0000000000000000 +1C010A30_0000000000000000 +1C010A38_0000000000000000 +1C010A40_0000000000000000 +1C010A48_0000000000000000 +1C010A50_0000000000000000 +1C010A58_0000000000000000 +1C010A60_0000000000000000 +1C010A68_0000000000000000 +1C010A70_0000000000000000 +1C010A78_0000000000000000 +1C010A80_0000000000000000 +1C010A88_0000000000000000 +1C010A90_0000000000000000 +1C010A98_0000000000000000 +1C010AA0_0000000000000000 +1C010AA8_0000000000000000 +1C010AB0_0000000000000000 +1C010AB8_0000000000000000 +1C010AC0_0000000000000000 +1C010AC8_0000000000000000 +1C010AD0_0000000000000000 +1C010AD8_0000000000000000 +1C010AE0_0000000000000000 +1C010AE8_0000000000000000 +1C010AF0_0000000000000000 +1C010AF8_0000000000000000 +1C010B00_0000000000000000 +1C010B08_0000000000000000 +1C010B10_0000000000000000 +1C010B18_0000000000000000 +1C010B20_0000000000000000 +1C010B28_0000000000000000 +1C010B30_0000000000000000 +1C010B38_0000000000000000 +1C010B40_0000000000000000 +1C010B48_0000000000000000 +1C010B50_0000000000000000 +1C010B58_0000000000000000 +1C010B60_0000000000000000 +1C010B68_0000000000000000 +1C010B70_0000000000000000 +1C010B78_0000000000000000 +1C010B80_0000000000000000 +1C010B88_0000000000000000 +1C010B90_0000000000000000 +1C010B98_0000000000000000 +1C010BA0_0000000000000000 +1C010BA8_0000000000000000 +1C010BB0_0000000000000000 +1C010BB8_0000000000000000 +1C010BC0_0000000000000000 +1C010BC8_0000000000000000 +1C010BD0_0000000000000000 +1C010BD8_0000000000000000 +1C010BE0_0000000000000000 +1C010BE8_0000000000000000 +1C010BF0_0000000000000000 +1C010BF8_0000000000000000 +1C010C00_0000000000000000 +1C010C08_0000000000000000 +1C010C10_0000000000000000 +1C010C18_0000000000000000 +1C010C20_0000000000000000 +1C010C28_0000000000000000 +1C010C30_0000000000000000 +1C010C38_0000000000000000 +1C010C40_0000000000000000 +1C010C48_0000000000000000 +1C010C50_0000000000000000 +1C010C58_0000000000000000 +1C010C60_0000000000000000 +1C010C68_0000000000000000 +1C010C70_0000000000000000 +1C010C78_0000000000000000 +1C010C80_0000000000000000 +1C010C88_0000000000000000 +1C010C90_0000000000000000 +1C010C98_0000000000000000 +1C010CA0_0000000000000000 +1C010CA8_0000000000000000 +1C010CB0_0000000000000000 +1C010CB8_0000000000000000 +1C010CC0_0000000000000000 +1C010CC8_0000000000000000 +1C010CD0_0000000000000000 +1C010CD8_0000000000000000 +1C010CE0_0000000000000000 +1C010CE8_0000000000000000 +1C010CF0_0000000000000000 +1C010CF8_0000000000000000 +1C010D00_0000000000000000 +1C010D08_0000000000000000 +1C010D10_0000000000000000 +1C010D18_0000000000000000 +1C010D20_0000000000000000 +1C010D28_0000000000000000 +1C010D30_0000000000000000 +1C010D38_0000000000000000 +1C010D40_0000000000000000 +1C010D48_0000000000000000 +1C010D50_0000000000000000 +1C010D58_0000000000000000 +1C010D60_0000000000000000 +1C010D68_0000000000000000 +1C010D70_0000000000000000 +1C010D78_0000000000000000 +1C010D80_0000000000000000 +1C010D88_0000000000000000 +1C010D90_0000000000000000 +1C010D98_0000000000000000 +1C010DA0_0000000000000000 +1C010DA8_0000000000000000 +1C010DB0_0000000000000000 +1C010DB8_0000000000000000 +1C010DC0_0000000000000000 +1C010DC8_0000000000000000 +1C010DD0_0000000000000000 +1C010DD8_0000000000000000 +1C010DE0_0000000000000000 +1C010DE8_0000000000000000 +1C010DF0_0000000000000000 +1C010DF8_0000000000000000 +1C010E00_0000000000000000 +1C010E08_0000000000000000 +1C010E10_0000000000000000 +1C010E18_0000000000000000 +1C010E20_0000000000000000 +1C010E28_0000000000000000 +1C010E30_0000000000000000 +1C010E38_0000000000000000 +1C010E40_0000000000000000 +1C010E48_0000000000000000 +1C010E50_0000000000000000 +1C010E58_0000000000000000 +1C010E60_0000000000000000 +1C010E68_0000000000000000 +1C010E70_0000000000000000 +1C010E78_0000000000000000 +1C010E80_0000000000000000 +1C010E88_0000000000000000 +1C010E90_0000000000000000 +1C010E98_0000000000000000 +1C010EA0_0000000000000000 +1C010EA8_0000000000000000 +1C010EB0_0000000000000000 +1C010EB8_0000000000000000 +1C010EC0_0000000000000000 +1C010EC8_0000000000000000 +1C010ED0_0000000000000000 +1C010ED8_0000000000000000 +1C010EE0_0000000000000000 +1C010EE8_0000000000000000 +1C010EF0_0000000000000000 +1C010EF8_0000000000000000 +1C010F00_0000000000000000 +1C010F08_0000000000000000 +1C010F10_0000000000000000 +1C010F18_0000000000000000 +1C010F20_0000000000000000 +1C010F28_0000000000000000 +1C010F30_0000000000000000 +1C010F38_0000000000000000 +1C010F40_0000000000000000 +1C010F48_0000000000000000 +1C010F50_0000000000000000 +1C010F58_0000000000000000 +1C010F60_0000000000000000 +1C010F68_0000000000000000 +1C010F70_0000000000000000 +1C010F78_0000000000000000 +1C010F80_0000000000000000 +1C010F88_0000000000000000 +1C010F90_0000000000000000 +1C010F98_0000000000000000 +1C010FA0_0000000000000000 +1C010FA8_0000000000000000 +1C010FB0_0000000000000000 +1C010FB8_0000000000000000 +1C010FC0_0000000000000000 +1C010FC8_0000000000000000 +1C010FD0_0000000000000000 +1C010FD8_0000000000000000 +1C010FE0_0000000000000000 +1C010FE8_0000000000000000 +1C010FF0_0000000000000000 +1C010FF8_0000000000000000 +1C011000_0000000000000000 +1C011008_0000000000000000 +1C011010_0000000000000000 +1C011018_0000000000000000 +1C011020_0000000000000000 +1C011028_0000000000000000 +1C011030_0000000000000000 +1C011038_0000000000000000 +1C011040_0000000000000000 +1C011048_0000000000000000 +1C011050_0000000000000000 +1C011058_0000000000000000 +1C011060_0000000000000000 +1C011068_0000000000000000 +1C011070_0000000000000000 +1C011078_0000000000000000 +1C011080_0000000000000000 +1C011088_0000000000000000 +1C011090_0000000000000000 +1C011098_0000000000000000 +1C0110A0_0000000000000000 +1C0110A8_0000000000000000 +1C0110B0_0000000000000000 +1C0110B8_0000000000000000 +1C0110C0_0000000000000000 +1C0110C8_0000000000000000 +1C0110D0_0000000000000000 +1C0110D8_0000000000000000 +1C0110E0_0000000000000000 +1C0110E8_0000000000000000 +1C0110F0_0000000000000000 +1C0110F8_0000000000000000 +1C011100_0000000000000000 +1C011108_0000000000000000 +1C011110_0000000000000000 +1C011118_0000000000000000 +1C011120_0000000000000000 +1C011128_0000000000000000 +1C011130_0000000000000000 +1C011138_0000000000000000 +1C011140_0000000000000000 +1C011148_0000000000000000 +1C011150_0000000000000000 +1C011158_0000000000000000 +1C011160_0000000000000000 +1C011168_0000000000000000 +1C011170_0000000000000000 +1C011178_0000000000000000 +1C011180_0000000000000000 +1C011188_0000000000000000 +1C011190_0000000000000000 +1C011198_0000000000000000 +1C0111A0_0000000000000000 +1C0111A8_0000000000000000 +1C0111B0_0000000000000000 +1C0111B8_0000000000000000 +1C0111C0_0000000000000000 +1C0111C8_0000000000000000 +1C0111D0_0000000000000000 +1C0111D8_0000000000000000 +1C0111E0_0000000000000000 +1C0111E8_0000000000000000 +1C0111F0_0000000000000000 +1C0111F8_0000000000000000 +1C011200_0000000000000000 +1C011208_0000000000000000 +1C011210_0000000000000000 +1C011218_0000000000000000 +1C011220_0000000000000000 +1C011228_0000000000000000 +1C011230_0000000000000000 +1C011238_0000000000000000 +1C011240_0000000000000000 +1C011248_0000000000000000 +1C011250_0000000000000000 +1C011258_0000000000000000 +1C011260_0000000000000000 +1C011268_0000000000000000 +1C011270_0000000000000000 +1C011278_0000000000000000 +1C011280_0000000000000000 +1C011288_0000000000000000 +1C011290_0000000000000000 +1C011298_0000000000000000 +1C0112A0_0000000000000000 +1C0112A8_0000000000000000 +1C0112B0_0000000000000000 +1C0112B8_0000000000000000 +1C0112C0_0000000000000000 +1C0112C8_0000000000000000 +1C0112D0_0000000000000000 +1C0112D8_0000000000000000 +1C0112E0_0000000000000000 +1C0112E8_0000000000000000 +1C0112F0_0000000000000000 +1C0112F8_0000000000000000 +1C011300_0000000000000000 +1C011308_0000000000000000 +1C011310_0000000000000000 +1C011318_0000000000000000 +1C011320_0000000000000000 +1C011328_0000000000000000 +1C011330_0000000000000000 +1C011338_0000000000000000 +1C011340_0000000000000000 +1C011348_0000000000000000 +1C011350_0000000000000000 +1C011358_0000000000000000 +1C011360_0000000000000000 +1C011368_0000000000000000 +1C011370_0000000000000000 +1C011378_0000000000000000 +1C011380_0000000000000000 +1C011388_0000000000000000 +1C011390_0000000000000000 +1C011398_0000000000000000 +1C0113A0_0000000000000000 +1C0113A8_0000000000000000 +1C0113B0_0000000000000000 +1C0113B8_0000000000000000 +1C0113C0_0000000000000000 +1C0113C8_0000000000000000 +1C0113D0_0000000000000000 +1C0113D8_0000000000000000 +1C0113E0_0000000000000000 +1C0113E8_0000000000000000 +1C0113F0_0000000000000000 +1C0113F8_0000000000000000 +1C011400_0000000000000000 +1C011408_0000000000000000 +1C011410_0000000000000000 +1C011418_0000000000000000 +1C011420_0000000000000000 +1C011428_0000000000000000 +1C011430_0000000000000000 +1C011438_0000000000000000 +1C011440_0000000000000000 +1C011448_0000000000000000 +1C011450_0000000000000000 +1C011458_0000000000000000 +1C011460_0000000000000000 +1C011468_0000000000000000 +1C011470_0000000000000000 +1C011478_0000000000000000 +1C011480_0000000000000000 +1C011488_0000000000000000 +1C011490_0000000000000000 +1C011498_0000000000000000 +1C0114A0_0000000000000000 +1C0114A8_0000000000000000 +1C0114B0_0000000000000000 +1C0114B8_0000000000000000 +1C0114C0_0000000000000000 +1C0114C8_0000000000000000 +1C0114D0_0000000000000000 +1C0114D8_0000000000000000 +1C0114E0_0000000000000000 +1C0114E8_0000000000000000 +1C0114F0_0000000000000000 +1C0114F8_0000000000000000 +1C011500_0000000000000000 +1C011508_0000000000000000 +1C011510_0000000000000000 +1C011518_0000000000000000 +1C011520_0000000000000000 +1C011528_0000000000000000 +1C011530_0000000000000000 +1C011538_0000000000000000 +1C011540_0000000000000000 +1C011548_0000000000000000 +1C011550_0000000000000000 +1C011558_0000000000000000 +1C011560_0000000000000000 +1C011568_0000000000000000 +1C011570_0000000000000000 +1C011578_0000000000000000 +1C011580_0000000000000000 +1C011588_0000000000000000 +1C011590_0000000000000000 +1C011598_0000000000000000 +1C0115A0_0000000000000000 +1C0115A8_0000000000000000 +1C0115B0_0000000000000000 +1C0115B8_0000000000000000 +1C0115C0_0000000000000000 +1C0115C8_0000000000000000 +1C0115D0_0000000000000000 +1C0115D8_0000000000000000 +1C0115E0_0000000000000000 +1C0115E8_0000000000000000 +1C0115F0_0000000000000000 +1C0115F8_0000000000000000 +1C011600_0000000000000000 +1C011608_0000000000000000 +1C011610_0000000000000000 +1C011618_0000000000000000 +1C011620_0000000000000000 +1C011628_0000000000000000 +1C011630_0000000000000000 +1C011638_0000000000000000 +1C011640_0000000000000000 +1C011648_0000000000000000 +1C011650_0000000000000000 +1C011658_0000000000000000 +1C011660_0000000000000000 +1C011668_0000000000000000 +1C011670_0000000000000000 +1C011678_0000000000000000 +1C011680_0000000000000000 +1C011688_0000000000000000 +1C011690_0000000000000000 +1C011698_0000000000000000 +1C0116A0_0000000000000000 +1C0116A8_0000000000000000 +1C0116B0_0000000000000000 +1C0116B8_0000000000000000 +1C0116C0_0000000000000000 +1C0116C8_0000000000000000 +1C0116D0_0000000000000000 +1C0116D8_0000000000000000 +1C0116E0_0000000000000000 +1C0116E8_0000000000000000 +1C0116F0_0000000000000000 +1C0116F8_0000000000000000 +1C011700_0000000000000000 +1C011708_0000000000000000 +1C011710_0000000000000000 +1C011718_0000000000000000 +1C011720_0000000000000000 +1C011728_0000000000000000 +1C011730_0000000000000000 +1C011738_0000000000000000 +1C011740_0000000000000000 +1C011748_0000000000000000 +1C011750_0000000000000000 +1C011758_0000000000000000 +1C011760_0000000000000000 +1C011768_0000000000000000 +1C011770_0000000000000000 +1C011778_0000000000000000 +1C011780_0000000000000000 +1C011788_0000000000000000 +1C011790_0000000000000000 +1C011798_0000000000000000 +1C0117A0_0000000000000000 +1C0117A8_0000000000000000 +1C0117B0_0000000000000000 +1C0117B8_0000000000000000 +1C0117C0_0000000000000000 +1C0117C8_0000000000000000 +1C0117D0_0000000000000000 +1C0117D8_0000000000000000 +1C0117E0_0000000000000000 +1C0117E8_0000000000000000 +1C0117F0_0000000000000000 +1C0117F8_0000000000000000 +1C011800_0000000000000000 +1C011808_0000000000000000 +1C011810_0000000000000000 +1C011818_0000000000000000 +1C011820_0000000000000000 +1C011828_0000000000000000 +1C011830_0000000000000000 +1C011838_0000000000000000 +1C011840_0000000000000000 +1C011848_0000000000000000 +1C011850_0000000000000000 +1C011858_0000000000000000 +1C011860_0000000000000000 +1C011868_0000000000000000 +1C011870_0000000000000000 +1C011878_0000000000000000 +1C011880_0000000000000000 +1C011888_0000000000000000 +1C011890_0000000000000000 +1C011898_0000000000000000 +1C0118A0_0000000000000000 +1C0118A8_0000000000000000 +1C0118B0_0000000000000000 +1C0118B8_0000000000000000 +1C0118C0_0000000000000000 +1C0118C8_0000000000000000 +1C0118D0_0000000000000000 +1C0118D8_0000000000000000 +1C0118E0_0000000000000000 +1C0118E8_0000000000000000 +1C0118F0_0000000000000000 +1C0118F8_0000000000000000 +1C011900_0000000000000000 +1C011908_0000000000000000 +1C011910_0000000000000000 +1C011918_0000000000000000 +1C011920_0000000000000000 +1C011928_0000000000000000 +1C011930_0000000000000000 +1C011938_0000000000000000 +1C011940_0000000000000000 +1C011948_0000000000000000 +1C011950_0000000000000000 +1C011958_0000000000000000 +1C011960_0000000000000000 +1C011968_0000000000000000 +1C011970_0000000000000000 +1C011978_0000000000000000 +1C011980_0000000000000000 +1C011988_0000000000000000 +1C011990_0000000000000000 +1C011998_0000000000000000 +1C0119A0_0000000000000000 +1C0119A8_0000000000000000 +1C0119B0_0000000000000000 +1C0119B8_0000000000000000 +1C0119C0_0000000000000000 +1C0119C8_0000000000000000 +1C0119D0_0000000000000000 +1C0119D8_0000000000000000 +1C0119E0_0000000000000000 +1C0119E8_0000000000000000 +1C0119F0_0000000000000000 +1C0119F8_0000000000000000 +1C011A00_0000000000000000 +1C011A08_0000000000000000 +1C011A10_0000000000000000 +1C011A18_0000000000000000 +1C011A20_0000000000000000 +1C011A28_0000000000000000 +1C011A30_0000000000000000 +1C011A38_0000000000000000 +1C011A40_0000000000000000 +1C011A48_0000000000000000 +1C011A50_0000000000000000 +1C011A58_0000000000000000 +1C011A60_0000000000000000 +1C011A68_0000000000000000 +1C011A70_0000000000000000 +1C011A78_0000000000000000 +1C011A80_0000000000000000 +1C011A88_0000000000000000 +1C011A90_0000000000000000 +1C011A98_0000000000000000 +1C011AA0_0000000000000000 +1C011AA8_0000000000000000 +1C011AB0_0000000000000000 +1C011AB8_0000000000000000 +1C011AC0_0000000000000000 +1C011AC8_0000000000000000 +1C011AD0_0000000000000000 +1C011AD8_0000000000000000 +1C011AE0_0000000000000000 +1C011AE8_0000000000000000 +1C011AF0_0000000000000000 +1C011AF8_0000000000000000 +1C011B00_0000000000000000 +1C011B08_0000000000000000 +1C011B10_0000000000000000 +1C011B18_0000000000000000 +1C011B20_0000000000000000 +1C011B28_0000000000000000 +1C011B30_0000000000000000 +1C011B38_0000000000000000 +1C011B40_0000000000000000 +1C011B48_0000000000000000 +1C011B50_0000000000000000 +1C011B58_0000000000000000 +1C011B60_0000000000000000 +1C011B68_0000000000000000 +1C011B70_0000000000000000 +1C011B78_0000000000000000 +1C011B80_0000000000000000 +1C011B88_0000000000000000 +1C011B90_0000000000000000 +1C011B98_0000000000000000 +1C011BA0_0000000000000000 +1C011BA8_0000000000000000 +1C011BB0_0000000000000000 +1C011BB8_0000000000000000 +1C011BC0_0000000000000000 +1C011BC8_0000000000000000 +1C011BD0_0000000000000000 +1C011BD8_0000000000000000 +1C011BE0_0000000000000000 +1C011BE8_0000000000000000 +1C011BF0_0000000000000000 +1C011BF8_0000000000000000 +1C011C00_0000000000000000 +1C011C08_0000000000000000 +1C011C10_0000000000000000 +1C011C18_0000000000000000 +1C011C20_0000000000000000 +1C011C28_0000000000000000 +1C011C30_0000000000000000 +1C011C38_0000000000000000 +1C011C40_0000000000000000 +1C011C48_0000000000000000 +1C011C50_0000000000000000 +1C011C58_0000000000000000 +1C011C60_0000000000000000 +1C011C68_0000000000000000 +1C011C70_0000000000000000 +1C011C78_0000000000000000 +1C011C80_0000000000000000 +1C011C88_0000000000000000 +1C011C90_0000000000000000 +1C011C98_0000000000000000 +1C011CA0_0000000000000000 +1C011CA8_0000000000000000 +1C011CB0_0000000000000000 +1C011CB8_0000000000000000 +1C011CC0_0000000000000000 +1C011CC8_0000000000000000 +1C011CD0_0000000000000000 +1C011CD8_0000000000000000 +1C011CE0_0000000000000000 +1C011CE8_0000000000000000 +1C011CF0_0000000000000000 +1C011CF8_0000000000000000 +1C011D00_0000000000000000 +1C011D08_0000000000000000 +1C011D10_0000000000000000 +1C011D18_0000000000000000 +1C011D20_0000000000000000 +1C011D28_0000000000000000 +1C011D30_0000000000000000 +1C011D38_0000000000000000 +1C011D40_0000000000000000 +1C011D48_0000000000000000 +1C011D50_0000000000000000 +1C011D58_0000000000000000 +1C011D60_0000000000000000 +1C011D68_0000000000000000 +1C011D70_0000000000000000 +1C011D78_0000000000000000 +1C011D80_0000000000000000 +1C011D88_0000000000000000 +1C011D90_0000000000000000 +1C011D98_0000000000000000 +1C011DA0_0000000000000000 +1C011DA8_0000000000000000 +1C011DB0_0000000000000000 +1C011DB8_0000000000000000 +1C011DC0_0000000000000000 +1C011DC8_0000000000000000 +1C011DD0_0000000000000000 +1C011DD8_0000000000000000 +1C011DE0_0000000000000000 +1C011DE8_0000000000000000 +1C011DF0_0000000000000000 +1C011DF8_0000000000000000 +1C011E00_0000000000000000 +1C011E08_0000000000000000 +1C011E10_0000000000000000 +1C011E18_0000000000000000 +1C011E20_0000000000000000 +1C011E28_0000000000000000 +1C011E30_0000000000000000 +1C011E38_0000000000000000 +1C011E40_0000000000000000 +1C011E48_0000000000000000 +1C011E50_0000000000000000 +1C011E58_0000000000000000 +1C011E60_0000000000000000 +1C011E68_0000000000000000 +1C011E70_0000000000000000 +1C011E78_0000000000000000 +1C011E80_0000000000000000 +1C011E88_0000000000000000 +1C011E90_0000000000000000 +1C011E98_0000000000000000 +1C011EA0_0000000000000000 +1C011EA8_0000000000000000 +1C011EB0_0000000000000000 +1C011EB8_0000000000000000 +1C011EC0_0000000000000000 +1C011EC8_0000000000000000 +1C011ED0_0000000000000000 +1C011ED8_0000000000000000 +1C011EE0_0000000000000000 +1C011EE8_0000000000000000 +1C011EF0_0000000000000000 +1C011EF8_0000000000000000 +1C011F00_0000000000000000 +1C011F08_0000000000000000 +1C011F10_0000000000000000 +1C011F18_0000000000000000 +1C011F20_0000000000000000 +1C011F28_0000000000000000 +1C011F30_0000000000000000 +1C011F38_0000000000000000 +1C011F40_0000000000000000 +1C011F48_0000000000000000 +1C011F50_0000000000000000 +1C011F58_0000000000000000 +1C011F60_0000000000000000 +1C011F68_0000000000000000 +1C011F70_0000000000000000 +1C011F78_0000000000000000 +1C011F80_0000000000000000 +1C011F88_0000000000000000 +1C011F90_0000000000000000 +1C011F98_0000000000000000 +1C011FA0_0000000000000000 +1C011FA8_0000000000000000 +1C011FB0_0000000000000000 +1C011FB8_0000000000000000 +1C011FC0_0000000000000000 +1C011FC8_0000000000000000 +1C011FD0_0000000000000000 +1C011FD8_0000000000000000 +1C011FE0_0000000000000000 +1C011FE8_0000000000000000 +1C011FF0_0000000000000000 +1C011FF8_0000000000000000 +1C012000_0000000000000000 +1C012008_0000000000000000 +1C012010_0000000000000000 +1C012018_0000000000000000 +1C012020_0000000000000000 +1C012028_0000000000000000 +1C012030_0000000000000000 +1C012038_0000000000000000 +1C012040_0000000000000000 +1C012048_0000000000000000 +1C012050_0000000000000000 +1C012058_0000000000000000 +1C012060_0000000000000000 +1C012068_0000000000000000 +1C012070_0000000000000000 +1C012078_0000000000000000 +1C012080_0000000000000000 +1C012088_0000000000000000 +1C012090_0000000000000000 +1C012098_0000000000000000 +1C0120A0_0000000000000000 +1C0120A8_0000000000000000 +1C0120B0_0000000000000000 +1C0120B8_0000000000000000 +1C0120C0_0000000000000000 +1C0120C8_0000000000000000 +1C0120D0_0000000000000000 +1C0120D8_0000000000000000 +1C0120E0_0000000000000000 +1C0120E8_0000000000000000 +1C0120F0_0000000000000000 +1C0120F8_0000000000000000 +1C012100_0000000000000000 +1C012108_0000000000000000 +1C012110_0000000000000000 +1C012118_0000000000000000 +1C012120_0000000000000000 +1C012128_0000000000000000 +1C012130_0000000000000000 +1C012138_0000000000000000 +1C012140_0000000000000000 +1C012148_0000000000000000 +1C012150_0000000000000000 +1C012158_0000000000000000 +1C012160_0000000000000000 +1C012168_0000000000000000 +1C012170_0000000000000000 +1C012178_0000000000000000 +1C012180_0000000000000000 +1C012188_0000000000000000 +1C012190_0000000000000000 +1C012198_0000000000000000 +1C0121A0_0000000000000000 +1C0121A8_0000000000000000 +1C0121B0_0000000000000000 +1C0121B8_0000000000000000 +1C0121C0_0000000000000000 +1C0121C8_0000000000000000 +1C0121D0_0000000000000000 +1C0121D8_0000000000000000 +1C0121E0_0000000000000000 +1C0121E8_0000000000000000 +1C0121F0_0000000000000000 +1C0121F8_0000000000000000 +1C012200_0000000000000000 +1C012208_0000000000000000 +1C012210_0000000000000000 +1C012218_0000000000000000 +1C012220_0000000000000000 +1C012228_0000000000000000 +1C012230_0000000000000000 +1C012238_0000000000000000 +1C012240_0000000000000000 +1C012248_0000000000000000 +1C012250_0000000000000000 +1C012258_0000000000000000 +1C012260_0000000000000000 +1C012268_0000000000000000 +1C012270_0000000000000000 +1C012278_0000000000000000 +1C012280_0000000000000000 +1C012288_0000000000000000 +1C012290_0000000000000000 +1C012298_0000000000000000 +1C0122A0_0000000000000000 +1C0122A8_0000000000000000 +1C0122B0_0000000000000000 +1C0122B8_0000000000000000 +1C0122C0_0000000000000000 +1C0122C8_0000000000000000 +1C0122D0_0000000000000000 +1C0122D8_0000000000000000 +1C0122E0_0000000000000000 +1C0122E8_0000000000000000 +1C0122F0_0000000000000000 +1C0122F8_0000000000000000 +1C012300_0000000000000000 +1C012308_0000000000000000 +1C012310_0000000000000000 +1C012318_0000000000000000 +1C012320_0000000000000000 +1C012328_0000000000000000 +1C012330_0000000000000000 +1C012338_0000000000000000 +1C012340_0000000000000000 +1C012348_0000000000000000 +1C012350_0000000000000000 +1C012358_0000000000000000 +1C012360_0000000000000000 +1C012368_0000000000000000 +1C012370_0000000000000000 +1C012378_0000000000000000 +1C012380_0000000000000000 +1C012388_0000000000000000 +1C012390_0000000000000000 +1C012398_0000000000000000 +1C0123A0_0000000000000000 +1C0123A8_0000000000000000 +1C0123B0_0000000000000000 +1C0123B8_0000000000000000 +1C0123C0_0000000000000000 +1C0123C8_0000000000000000 +1C0123D0_0000000000000000 +1C0123D8_0000000000000000 +1C0123E0_0000000000000000 +1C0123E8_0000000000000000 +1C0123F0_0000000000000000 +1C0123F8_0000000000000000 +1C012400_0000000000000000 +1C012408_0000000000000000 +1C012410_0000000000000000 +1C012418_0000000000000000 +1C012420_0000000000000000 +1C012428_0000000000000000 +1C012430_0000000000000000 +1C012438_0000000000000000 +1C012440_0000000000000000 +1C012448_0000000000000000 +1C012450_0000000000000000 +1C012458_0000000000000000 +1C012460_0000000000000000 +1C012468_0000000000000000 +1C012470_0000000000000000 +1C012478_0000000000000000 +1C012480_0000000000000000 +1C012488_0000000000000000 +1C012490_0000000000000000 +1C012498_0000000000000000 +1C0124A0_0000000000000000 +1C0124A8_0000000000000000 +1C0124B0_0000000000000000 +1C0124B8_0000000000000000 +1C0124C0_0000000000000000 +1C0124C8_0000000000000000 +1C0124D0_0000000000000000 +1C0124D8_0000000000000000 +1C0124E0_0000000000000000 +1C0124E8_0000000000000000 +1C0124F0_0000000000000000 +1C0124F8_0000000000000000 +1C012500_0000000000000000 +1C012508_0000000000000000 +1C012510_0000000000000000 +1C012518_0000000000000000 +1C012520_0000000000000000 +1C012528_0000000000000000 +1C012530_0000000000000000 +1C012538_0000000000000000 +1C012540_0000000000000000 +1C012548_0000000000000000 +1C012550_0000000000000000 +1C012558_0000000000000000 +1C012560_0000000000000000 +1C012568_0000000000000000 +1C012570_0000000000000000 +1C012578_0000000000000000 +1C012580_0000000000000000 +1C012588_0000000000000000 +1C012590_0000000000000000 +1C012598_0000000000000000 +1C0125A0_0000000000000000 +1C0125A8_0000000000000000 +1C0125B0_0000000000000000 +1C0125B8_0000000000000000 +1C0125C0_0000000000000000 +1C0125C8_0000000000000000 +1C0125D0_0000000000000000 +1C0125D8_0000000000000000 +1C0125E0_0000000000000000 +1C0125E8_0000000000000000 +1C0125F0_0000000000000000 +1C0125F8_0000000000000000 +1C012600_0000000000000000 +1C012608_0000000000000000 +1C012610_0000000000000000 +1C012618_0000000000000000 +1C012620_0000000000000000 +1C012628_0000000000000000 +1C012630_0000000000000000 +1C012638_0000000000000000 +1C012640_0000000000000000 +1C012648_0000000000000000 +1C012650_0000000000000000 +1C012658_0000000000000000 +1C012660_0000000000000000 +1C012668_0000000000000000 +1C012670_0000000000000000 +1C012678_0000000000000000 +1C012680_0000000000000000 +1C012688_0000000000000000 +1C012690_0000000000000000 +1C012698_0000000000000000 +1C0126A0_0000000000000000 +1C0126A8_0000000000000000 +1C0126B0_0000000000000000 +1C0126B8_0000000000000000 +1C0126C0_0000000000000000 +1C0126C8_0000000000000000 +1C0126D0_0000000000000000 +1C0126D8_0000000000000000 +1C0126E0_0000000000000000 +1C0126E8_0000000000000000 +1C0126F0_0000000000000000 +1C0126F8_0000000000000000 +1C012700_0000000000000000 +1C012708_0000000000000000 +1C012710_0000000000000000 +1C012718_0000000000000000 +1C012720_0000000000000000 +1C012728_0000000000000000 +1C012730_0000000000000000 +1C012738_0000000000000000 +1C012740_0000000000000000 +1C012748_0000000000000000 +1C012750_0000000000000000 +1C012758_0000000000000000 +1C012760_0000000000000000 +1C012768_0000000000000000 +1C012770_0000000000000000 +1C012778_0000000000000000 +1C012780_0000000000000000 +1C012788_0000000000000000 +1C012790_0000000000000000 +1C012798_0000000000000000 +1C0127A0_0000000000000000 +1C0127A8_0000000000000000 +1C0127B0_0000000000000000 +1C0127B8_0000000000000000 +1C0127C0_0000000000000000 +1C0127C8_0000000000000000 +1C0127D0_0000000000000000 +1C0127D8_0000000000000000 +1C0127E0_0000000000000000 +1C0127E8_0000000000000000 +1C0127F0_0000000000000000 +1C0127F8_0000000000000000 +1C012800_0000000000000000 +1C012808_0000000000000000 +1C012810_0000000000000000 +1C012818_0000000000000000 +1C012820_0000000000000000 +1C012828_0000000000000000 +1C012830_0000000000000000 +1C012838_0000000000000000 +1C012840_0000000000000000 +1C012848_0000000000000000 +1C012850_0000000000000000 +1C012858_0000000000000000 +1C012860_0000000000000000 +1C012868_0000000000000000 +1C012870_0000000000000000 +1C012878_0000000000000000 +1C012880_0000000000000000 +1C012888_0000000000000000 +1C012890_0000000000000000 +1C012898_0000000000000000 +1C0128A0_0000000000000000 +1C0128A8_0000000000000000 +1C0128B0_0000000000000000 +1C0128B8_0000000000000000 +1C0128C0_0000000000000000 +1C0128C8_0000000000000000 +1C0128D0_0000000000000000 +1C0128D8_0000000000000000 +1C0128E0_0000000000000000 +1C0128E8_0000000000000000 +1C0128F0_0000000000000000 +1C0128F8_0000000000000000 +1C012900_0000000000000000 +1C012908_0000000000000000 +1C012910_0000000000000000 +1C012918_0000000000000000 +1C012920_0000000000000000 +1C012928_0000000000000000 +1C012930_0000000000000000 +1C012938_0000000000000000 +1C012940_0000000000000000 +1C012948_0000000000000000 +1C012950_0000000000000000 +1C012958_0000000000000000 +1C012960_0000000000000000 +1C012968_0000000000000000 +1C012970_0000000000000000 +1C012978_0000000000000000 +1C012980_0000000000000000 +1C012988_0000000000000000 +1C012990_0000000000000000 +1C012998_0000000000000000 +1C0129A0_0000000000000000 +1C0129A8_0000000000000000 +1C0129B0_0000000000000000 +1C0129B8_0000000000000000 +1C0129C0_0000000000000000 +1C0129C8_0000000000000000 +1C0129D0_0000000000000000 +1C0129D8_0000000000000000 +1C0129E0_0000000000000000 +1C0129E8_0000000000000000 +1C0129F0_0000000000000000 +1C0129F8_0000000000000000 +1C012A00_0000000000000000 +1C012A08_0000000000000000 +1C012A10_0000000000000000 +1C012A18_0000000000000000 +1C012A20_0000000000000000 +1C012A28_0000000000000000 +1C012A30_0000000000000000 +1C012A38_0000000000000000 +1C012A40_0000000000000000 +1C012A48_0000000000000000 +1C012A50_0000000000000000 +1C012A58_0000000000000000 +1C012A60_0000000000000000 +1C012A68_0000000000000000 +1C012A70_0000000000000000 +1C012A78_0000000000000000 +1C012A80_0000000000000000 +1C012A88_0000000000000000 +1C012A90_0000000000000000 +1C012A98_0000000000000000 +1C012AA0_0000000000000000 +1C012AA8_0000000000000000 +1C012AB0_0000000000000000 +1C012AB8_0000000000000000 +1C012AC0_0000000000000000 +1C012AC8_0000000000000000 +1C012AD0_0000000000000000 +1C012AD8_0000000000000000 +1C012AE0_0000000000000000 +1C012AE8_0000000000000000 +1C012AF0_0000000000000000 +1C012AF8_0000000000000000 +1C012B00_0000000000000000 +1C012B08_0000000000000000 +1C012B10_0000000000000000 +1C012B18_0000000000000000 +1C012B20_0000000000000000 +1C012B28_0000000000000000 +1C012B30_0000000000000000 +1C012B38_0000000000000000 +1C012B40_0000000000000000 +1C012B48_0000000000000000 +1C012B50_0000000000000000 +1C012B58_0000000000000000 +1C012B60_0000000000000000 +1C012B68_0000000000000000 +1C012B70_0000000000000000 +1C012B78_0000000000000000 +1C012B80_0000000000000000 +1C012B88_0000000000000000 +1C012B90_0000000000000000 +1C012B98_0000000000000000 +1C012BA0_0000000000000000 +1C012BA8_0000000000000000 +1C012BB0_0000000000000000 +1C012BB8_0000000000000000 +1C012BC0_0000000000000000 +1C012BC8_0000000000000000 +1C012BD0_0000000000000000 +1C012BD8_0000000000000000 +1C012BE0_0000000000000000 +1C012BE8_0000000000000000 +1C012BF0_0000000000000000 +1C012BF8_0000000000000000 +1C012C00_0000000000000000 +1C012C08_0000000000000000 +1C012C10_0000000000000000 +1C012C18_0000000000000000 +1C012C20_0000000000000000 +1C012C28_0000000000000000 +1C012C30_0000000000000000 +1C012C38_0000000000000000 +1C012C40_0000000000000000 +1C012C48_0000000000000000 +1C012C50_0000000000000000 +1C012C58_0000000000000000 +1C012C60_0000000000000000 +1C012C68_0000000000000000 +1C012C70_0000000000000000 +1C012C78_0000000000000000 +1C012C80_0000000000000000 +1C012C88_0000000000000000 +1C012C90_0000000000000000 +1C012C98_0000000000000000 +1C012CA0_0000000000000000 +1C012CA8_0000000000000000 +1C012CB0_0000000000000000 +1C012CB8_0000000000000000 +1C012CC0_0000000000000000 +1C012CC8_0000000000000000 +1C012CD0_0000000000000000 +1C012CD8_0000000000000000 +1C012CE0_0000000000000000 +1C012CE8_0000000000000000 +1C012CF0_0000000000000000 +1C012CF8_0000000000000000 +1C012D00_0000000000000000 +1C012D08_0000000000000000 +1C012D10_0000000000000000 +1C012D18_0000000000000000 +1C012D20_0000000000000000 +1C012D28_0000000000000000 +1C012D30_0000000000000000 +1C012D38_0000000000000000 +1C012D40_0000000000000000 +1C012D48_0000000000000000 +1C012D50_0000000000000000 +1C012D58_0000000000000000 +1C012D60_0000000000000000 +1C012D68_0000000000000000 +1C012D70_0000000000000000 +1C012D78_0000000000000000 +1C012D80_0000000000000000 +1C012D88_0000000000000000 +1C012D90_0000000000000000 +1C012D98_0000000000000000 +1C012DA0_0000000000000000 +1C012DA8_0000000000000000 +1C012DB0_0000000000000000 +1C012DB8_0000000000000000 +1C012DC0_0000000000000000 +1C012DC8_0000000000000000 +1C012DD0_0000000000000000 +1C012DD8_0000000000000000 +1C012DE0_0000000000000000 +1C012DE8_0000000000000000 +1C012DF0_0000000000000000 +1C012DF8_0000000000000000 +1C012E00_0000000000000000 +1C012E08_0000000000000000 +1C012E10_0000000000000000 +1C012E18_0000000000000000 +1C012E20_0000000000000000 +1C012E28_0000000000000000 +1C012E30_0000000000000000 +1C012E38_0000000000000000 +1C012E40_0000000000000000 +1C012E48_0000000000000000 +1C012E50_0000000000000000 +1C012E58_0000000000000000 +1C012E60_0000000000000000 +1C012E68_0000000000000000 +1C012E70_0000000000000000 +1C012E78_0000000000000000 +1C012E80_0000000000000000 +1C012E88_0000000000000000 +1C012E90_0000000000000000 +1C012E98_0000000000000000 +1C012EA0_0000000000000000 +1C012EA8_0000000000000000 +1C012EB0_0000000000000000 +1C012EB8_0000000000000000 +1C012EC0_0000000000000000 +1C012EC8_0000000000000000 +1C012ED0_0000000000000000 +1C012ED8_0000000000000000 +1C012EE0_0000000000000000 +1C012EE8_0000000000000000 +1C012EF0_0000000000000000 +1C012EF8_0000000000000000 +1C012F00_0000000000000000 +1C012F08_0000000000000000 +1C012F10_0000000000000000 +1C012F18_0000000000000000 +1C012F20_0000000000000000 +1C012F28_0000000000000000 +1C012F30_0000000000000000 +1C012F38_0000000000000000 +1C012F40_0000000000000000 +1C012F48_0000000000000000 +1C012F50_0000000000000000 +1C012F58_0000000000000000 +1C012F60_0000000000000000 +1C012F68_0000000000000000 +1C012F70_0000000000000000 +1C012F78_0000000000000000 +1C012F80_0000000000000000 +1C012F88_0000000000000000 +1C012F90_0000000000000000 +1C012F98_0000000000000000 +1C012FA0_0000000000000000 +1C012FA8_0000000000000000 +1C012FB0_0000000000000000 +1C012FB8_0000000000000000 +1C012FC0_0000000000000000 +1C012FC8_0000000000000000 +1C012FD0_0000000000000000 +1C012FD8_0000000000000000 +1C012FE0_0000000000000000 +1C012FE8_0000000000000000 +1C012FF0_0000000000000000 +1C012FF8_0000000000000000 +1C013000_0000000000000000 +1C013008_0000000000000000 +1C013010_0000000000000000 +1C013018_0000000000000000 +1C013020_0000000000000000 +1C013028_0000000000000000 +1C013030_0000000000000000 +1C013038_0000000000000000 +1C013040_0000000000000000 +1C013048_0000000000000000 +1C013050_0000000000000000 +1C013058_0000000000000000 +1C013060_0000000000000000 +1C013068_0000000000000000 +1C013070_0000000000000000 +1C013078_0000000000000000 +1C013080_0000000000000000 +1C013088_0000000000000000 +1C013090_0000000000000000 +1C013098_0000000000000000 +1C0130A0_0000000000000000 +1C0130A8_0000000000000000 +1C0130B0_0000000000000000 +1C0130B8_0000000000000000 +1C0130C0_0000000000000000 +1C0130C8_0000000000000000 +1C0130D0_0000000000000000 +1C0130D8_0000000000000000 +1C0130E0_0000000000000000 +1C0130E8_0000000000000000 +1C0130F0_0000000000000000 +1C0130F8_0000000000000000 +1C013100_0000000000000000 +1C013108_0000000000000000 +1C013110_0000000000000000 +1C013118_0000000000000000 +1C013120_0000000000000000 +1C013128_0000000000000000 +1C013130_0000000000000000 +1C013138_0000000000000000 +1C013140_0000000000000000 +1C013148_0000000000000000 +1C013150_0000000000000000 +1C013158_0000000000000000 +1C013160_0000000000000000 +1C013168_0000000000000000 +1C013170_0000000000000000 +1C013178_0000000000000000 +1C013180_0000000000000000 +1C013188_0000000000000000 +1C013190_0000000000000000 +1C013198_0000000000000000 +1C0131A0_0000000000000000 +1C0131A8_0000000000000000 +1C0131B0_0000000000000000 +1C0131B8_0000000000000000 +1C0131C0_0000000000000000 +1C0131C8_0000000000000000 +1C0131D0_0000000000000000 +1C0131D8_0000000000000000 +1C0131E0_0000000000000000 +1C0131E8_0000000000000000 +1C0131F0_0000000000000000 +1C0131F8_0000000000000000 +1C013200_0000000000000000 +1C013208_0000000000000000 +1C013210_0000000000000000 +1C013218_0000000000000000 +1C013220_0000000000000000 +1C013228_0000000000000000 +1C013230_0000000000000000 +1C013238_0000000000000000 +1C013240_0000000000000000 +1C013248_0000000000000000 +1C013250_0000000000000000 +1C013258_0000000000000000 +1C013260_0000000000000000 +1C013268_0000000000000000 +1C013270_0000000000000000 +1C013278_0000000000000000 +1C013280_0000000000000000 +1C013288_0000000000000000 +1C013290_0000000000000000 +1C013298_0000000000000000 +1C0132A0_0000000000000000 +1C0132A8_0000000000000000 +1C0132B0_0000000000000000 +1C0132B8_0000000000000000 +1C0132C0_0000000000000000 +1C0132C8_0000000000000000 +1C0132D0_0000000000000000 +1C0132D8_0000000000000000 +1C0132E0_0000000000000000 +1C0132E8_0000000000000000 +1C0132F0_0000000000000000 +1C0132F8_0000000000000000 +1C013300_0000000000000000 +1C013308_0000000000000000 +1C013310_0000000000000000 +1C013318_0000000000000000 +1C013320_0000000000000000 +1C013328_0000000000000000 +1C013330_0000000000000000 +1C013338_0000000000000000 +1C013340_0000000000000000 +1C013348_0000000000000000 +1C013350_0000000000000000 +1C013358_0000000000000000 +1C013360_0000000000000000 +1C013368_0000000000000000 +1C013370_0000000000000000 +1C013378_0000000000000000 +1C013380_0000000000000000 +1C013388_0000000000000000 +1C013390_0000000000000000 +1C013398_0000000000000000 +1C0133A0_0000000000000000 +1C0133A8_0000000000000000 +1C0133B0_0000000000000000 +1C0133B8_0000000000000000 +1C0133C0_0000000000000000 +1C0133C8_0000000000000000 +1C0133D0_0000000000000000 +1C0133D8_0000000000000000 +1C0133E0_0000000000000000 +1C0133E8_0000000000000000 +1C0133F0_0000000000000000 +1C0133F8_0000000000000000 +1C013400_0000000000000000 +1C013408_0000000000000000 +1C013410_0000000000000000 +1C013418_0000000000000000 +1C013420_0000000000000000 +1C013428_0000000000000000 +1C013430_0000000000000000 +1C013438_0000000000000000 +1C013440_0000000000000000 +1C013448_0000000000000000 +1C013450_0000000000000000 +1C013458_0000000000000000 +1C013460_0000000000000000 +1C013468_0000000000000000 +1C013470_0000000000000000 +1C013478_0000000000000000 +1C013480_0000000000000000 +1C013488_0000000000000000 +1C013490_0000000000000000 +1C013498_0000000000000000 +1C0134A0_0000000000000000 +1C0134A8_0000000000000000 +1C0134B0_0000000000000000 +1C0134B8_0000000000000000 +1C0134C0_0000000000000000 +1C0134C8_0000000000000000 +1C0134D0_0000000000000000 +1C0134D8_0000000000000000 +1C0134E0_0000000000000000 +1C0134E8_0000000000000000 +1C0134F0_0000000000000000 +1C0134F8_0000000000000000 +1C013500_0000000000000000 +1C013508_0000000000000000 +1C013510_0000000000000000 +1C013518_0000000000000000 +1C013520_0000000000000000 +1C013528_0000000000000000 +1C013530_0000000000000000 +1C013538_0000000000000000 +1C013540_0000000000000000 +1C013548_0000000000000000 +1C013550_0000000000000000 +1C013558_0000000000000000 +1C013560_0000000000000000 +1C013568_0000000000000000 +1C013570_0000000000000000 +1C013578_0000000000000000 +1C013580_0000000000000000 +1C013588_0000000000000000 +1C013590_0000000000000000 +1C013598_0000000000000000 +1C0135A0_0000000000000000 +1C0135A8_0000000000000000 +1C0135B0_0000000000000000 +1C0135B8_0000000000000000 +1C0135C0_0000000000000000 +1C0135C8_0000000000000000 +1C0135D0_0000000000000000 +1C0135D8_0000000000000000 +1C0135E0_0000000000000000 +1C0135E8_0000000000000000 +1C0135F0_0000000000000000 +1C0135F8_0000000000000000 +1C013600_0000000000000000 +1C013608_0000000000000000 +1C013610_0000000000000000 +1C013618_0000000000000000 +1C013620_0000000000000000 +1C013628_0000000000000000 +1C013630_0000000000000000 +1C013638_0000000000000000 +1C013640_0000000000000000 +1C013648_0000000000000000 +1C013650_0000000000000000 +1C013658_0000000000000000 +1C013660_0000000000000000 +1C013668_0000000000000000 +1C013670_0000000000000000 +1C013678_0000000000000000 +1C013680_0000000000000000 +1C013688_0000000000000000 +1C013690_0000000000000000 +1C013698_0000000000000000 +1C0136A0_0000000000000000 +1C0136A8_0000000000000000 +1C0136B0_0000000000000000 +1C0136B8_0000000000000000 +1C0136C0_0000000000000000 +1C0136C8_0000000000000000 +1C0136D0_0000000000000000 +1C0136D8_0000000000000000 +1C0136E0_0000000000000000 +1C0136E8_0000000000000000 +1C0136F0_0000000000000000 +1C0136F8_0000000000000000 +1C013700_0000000000000000 +1C013708_0000000000000000 +1C013710_0000000000000000 +1C013718_0000000000000000 +1C013720_0000000000000000 +1C013728_0000000000000000 +1C013730_0000000000000000 +1C013738_0000000000000000 +1C013740_0000000000000000 +1C013748_0000000000000000 +1C013750_0000000000000000 +1C013758_0000000000000000 +1C013760_0000000000000000 +1C013768_0000000000000000 +1C013770_0000000000000000 +1C013778_0000000000000000 +1C013780_0000000000000000 +1C013788_0000000000000000 +1C013790_0000000000000000 +1C013798_0000000000000000 +1C0137A0_0000000000000000 +1C0137A8_0000000000000000 +1C0137B0_0000000000000000 +1C0137B8_0000000000000000 +1C0137C0_0000000000000000 +1C0137C8_0000000000000000 +1C0137D0_0000000000000000 +1C0137D8_0000000000000000 +1C0137E0_0000000000000000 +1C0137E8_0000000000000000 +1C0137F0_0000000000000000 +1C0137F8_0000000000000000 +1C013800_0000000000000000 +1C013808_0000000000000000 +1C013810_0000000000000000 +1C013818_0000000000000000 +1C013820_0000000000000000 +1C013828_0000000000000000 +1C013830_0000000000000000 +1C013838_0000000000000000 +1C013840_0000000000000000 +1C013848_0000000000000000 +1C013850_0000000000000000 +1C013858_0000000000000000 +1C013860_0000000000000000 +1C013868_0000000000000000 +1C013870_0000000000000000 +1C013878_0000000000000000 +1C013880_0000000000000000 +1C013888_0000000000000000 +1C013890_0000000000000000 +1C013898_0000000000000000 +1C0138A0_0000000000000000 +1C0138A8_0000000000000000 +1C0138B0_0000000000000000 +1C0138B8_0000000000000000 +1C0138C0_0000000000000000 +1C0138C8_0000000000000000 +1C0138D0_0000000000000000 +1C0138D8_0000000000000000 +1C0138E0_0000000000000000 +1C0138E8_0000000000000000 +1C0138F0_0000000000000000 +1C0138F8_0000000000000000 +1C013900_0000000000000000 +1C013908_0000000000000000 +1C013910_0000000000000000 +1C013918_0000000000000000 +1C013920_0000000000000000 +1C013928_0000000000000000 +1C013930_0000000000000000 +1C013938_0000000000000000 +1C013940_0000000000000000 +1C013948_0000000000000000 +1C013950_0000000000000000 +1C013958_0000000000000000 +1C013960_0000000000000000 +1C013968_0000000000000000 +1C013970_0000000000000000 +1C013978_0000000000000000 +1C013980_0000000000000000 +1C013988_0000000000000000 +1C013990_0000000000000000 +1C013998_0000000000000000 +1C0139A0_0000000000000000 +1C0139A8_0000000000000000 +1C0139B0_0000000000000000 +1C0139B8_0000000000000000 +1C0139C0_0000000000000000 +1C0139C8_0000000000000000 +1C0139D0_0000000000000000 +1C0139D8_0000000000000000 +1C0139E0_0000000000000000 +1C0139E8_0000000000000000 +1C0139F0_0000000000000000 +1C0139F8_0000000000000000 +1C013A00_0000000000000000 +1C013A08_0000000000000000 +1C013A10_0000000000000000 +1C013A18_0000000000000000 +1C013A20_0000000000000000 +1C013A28_0000000000000000 +1C013A30_0000000000000000 +1C013A38_0000000000000000 +1C013A40_0000000000000000 +1C013A48_0000000000000000 +1C013A50_0000000000000000 +1C013A58_0000000000000000 +1C013A60_0000000000000000 +1C013A68_0000000000000000 +1C013A70_0000000000000000 +1C013A78_0000000000000000 +1C013A80_0000000000000000 +1C013A88_0000000000000000 +1C013A90_0000000000000000 +1C013A98_0000000000000000 +1C013AA0_0000000000000000 +1C013AA8_0000000000000000 +1C013AB0_0000000000000000 +1C013AB8_0000000000000000 +1C013AC0_0000000000000000 +1C013AC8_0000000000000000 +1C013AD0_0000000000000000 +1C013AD8_0000000000000000 +1C013AE0_0000000000000000 +1C013AE8_0000000000000000 +1C013AF0_0000000000000000 +1C013AF8_0000000000000000 +1C013B00_0000000000000000 +1C013B08_0000000000000000 +1C013B10_0000000000000000 +1C013B18_0000000000000000 +1C013B20_0000000000000000 +1C013B28_0000000000000000 +1C013B30_0000000000000000 +1C013B38_0000000000000000 +1C013B40_0000000000000000 +1C013B48_0000000000000000 +1C013B50_0000000000000000 +1C013B58_0000000000000000 +1C013B60_0000000000000000 +1C013B68_0000000000000000 +1C013B70_0000000000000000 +1C013B78_0000000000000000 +1C013B80_0000000000000000 +1C013B88_0000000000000000 +1C013B90_0000000000000000 +1C013B98_0000000000000000 +1C013BA0_0000000000000000 +1C013BA8_0000000000000000 +1C013BB0_0000000000000000 +1C013BB8_0000000000000000 +1C013BC0_0000000000000000 +1C013BC8_0000000000000000 +1C013BD0_0000000000000000 +1C013BD8_0000000000000000 +1C013BE0_0000000000000000 +1C013BE8_0000000000000000 +1C013BF0_0000000000000000 +1C013BF8_0000000000000000 +1C013C00_0000000000000000 +1C013C08_0000000000000000 +1C013C10_0000000000000000 +1C013C18_0000000000000000 +1C013C20_0000000000000000 +1C013C28_0000000000000000 +1C013C30_0000000000000000 +1C013C38_0000000000000000 +1C013C40_0000000000000000 +1C013C48_0000000000000000 +1C013C50_0000000000000000 +1C013C58_0000000000000000 +1C013C60_0000000000000000 +1C013C68_0000000000000000 +1C013C70_0000000000000000 +1C013C78_0000000000000000 +1C013C80_0000000000000000 +1C013C88_0000000000000000 +1C013C90_0000000000000000 +1C013C98_0000000000000000 +1C013CA0_0000000000000000 +1C013CA8_0000000000000000 +1C013CB0_0000000000000000 +1C013CB8_0000000000000000 +1C013CC0_0000000000000000 +1C013CC8_0000000000000000 +1C013CD0_0000000000000000 +1C013CD8_0000000000000000 +1C013CE0_0000000000000000 +1C013CE8_0000000000000000 +1C013CF0_0000000000000000 +1C013CF8_0000000000000000 +1C013D00_0000000000000000 +1C013D08_0000000000000000 +1C013D10_0000000000000000 +1C013D18_0000000000000000 +1C013D20_0000000000000000 +1C013D28_0000000000000000 +1C013D30_0000000000000000 +1C013D38_0000000000000000 +1C013D40_0000000000000000 +1C013D48_0000000000000000 +1C013D50_0000000000000000 +1C013D58_0000000000000000 +1C013D60_0000000000000000 +1C013D68_0000000000000000 +1C013D70_0000000000000000 +1C013D78_0000000000000000 +1C013D80_0000000000000000 +1C013D88_0000000000000000 +1C013D90_0000000000000000 +1C013D98_0000000000000000 +1C013DA0_0000000000000000 +1C013DA8_0000000000000000 +1C013DB0_0000000000000000 +1C013DB8_0000000000000000 +1C013DC0_0000000000000000 +1C013DC8_0000000000000000 +1C013DD0_0000000000000000 +1C013DD8_0000000000000000 +1C013DE0_0000000000000000 +1C013DE8_0000000000000000 +1C013DF0_0000000000000000 +1C013DF8_0000000000000000 +1C013E00_0000000000000000 +1C013E08_0000000000000000 +1C013E10_0000000000000000 +1C013E18_0000000000000000 +1C013E20_0000000000000000 +1C013E28_0000000000000000 +1C013E30_0000000000000000 +1C013E38_0000000000000000 +1C013E40_0000000000000000 +1C013E48_0000000000000000 +1C013E50_0000000000000000 +1C013E58_0000000000000000 +1C013E60_0000000000000000 +1C013E68_0000000000000000 +1C013E70_0000000000000000 +1C013E78_0000000000000000 +1C013E80_0000000000000000 +1C013E88_0000000000000000 +1C013E90_0000000000000000 +1C013E98_0000000000000000 +1C013EA0_0000000000000000 +1C013EA8_0000000000000000 +1C013EB0_0000000000000000 +1C013EB8_0000000000000000 +1C013EC0_0000000000000000 +1C013EC8_0000000000000000 +1C013ED0_0000000000000000 +1C013ED8_0000000000000000 +1C013EE0_0000000000000000 +1C013EE8_0000000000000000 +1C013EF0_0000000000000000 +1C013EF8_0000000000000000 +1C013F00_0000000000000000 +1C013F08_0000000000000000 +1C013F10_0000000000000000 +1C013F18_0000000000000000 +1C013F20_0000000000000000 +1C013F28_0000000000000000 +1C013F30_0000000000000000 +1C013F38_0000000000000000 +1C013F40_0000000000000000 +1C013F48_0000000000000000 +1C013F50_0000000000000000 +1C013F58_0000000000000000 +1C013F60_0000000000000000 +1C013F68_0000000000000000 +1C013F70_0000000000000000 +1C013F78_0000000000000000 +1C013F80_0000000000000000 +1C013F88_0000000000000000 +1C013F90_0000000000000000 +1C013F98_0000000000000000 +1C013FA0_0000000000000000 +1C013FA8_0000000000000000 +1C013FB0_0000000000000000 +1C013FB8_0000000000000000 +1C013FC0_0000000000000000 +1C013FC8_0000000000000000 +1C013FD0_0000000000000000 +1C013FD8_0000000000000000 +1C013FE0_0000000000000000 +1C013FE8_0000000000000000 +1C013FF0_0000000000000000 +1C013FF8_0000000000000000 +1C014000_0000000000000000 +1C014008_0000000000000000 +1C014010_0000000000000000 +1C014018_0000000000000000 +1C014020_0000000000000000 +1C014028_0000000000000000 +1C014030_0000000000000000 +1C014038_0000000000000000 +1C014040_0000000000000000 +1C014048_0000000000000000 +1C014050_0000000000000000 +1C014058_0000000000000000 +1C014060_0000000000000000 +1C014068_0000000000000000 +1C014070_0000000000000000 +1C014078_0000000000000000 +1C014080_0000000000000000 +1C014088_0000000000000000 +1C014090_0000000000000000 +1C014098_0000000000000000 +1C0140A0_0000000000000000 +1C0140A8_0000000000000000 +1C0140B0_0000000000000000 +1C0140B8_0000000000000000 +1C0140C0_0000000000000000 +1C0140C8_0000000000000000 +1C0140D0_0000000000000000 +1C0140D8_0000000000000000 +1C0140E0_0000000000000000 +1C0140E8_0000000000000000 +1C0140F0_0000000000000000 +1C0140F8_0000000000000000 +1C014100_0000000000000000 +1C014108_0000000000000000 +1C014110_0000000000000000 +1C014118_0000000000000000 +1C014120_0000000000000000 +1C014128_0000000000000000 +1C014130_0000000000000000 +1C014138_0000000000000000 +1C014140_0000000000000000 +1C014148_0000000000000000 +1C014150_0000000000000000 +1C014158_0000000000000000 +1C014160_0000000000000000 +1C014168_0000000000000000 +1C014170_0000000000000000 +1C014178_0000000000000000 +1C014180_0000000000000000 +1C014188_0000000000000000 +1C014190_0000000000000000 +1C014198_0000000000000000 +1C0141A0_0000000000000000 +1C0141A8_0000000000000000 +1C0141B0_0000000000000000 +1C0141B8_0000000000000000 +1C0141C0_0000000000000000 +1C0141C8_0000000000000000 +1C0141D0_0000000000000000 +1C0141D8_0000000000000000 +1C0141E0_0000000000000000 +1C0141E8_0000000000000000 +1C0141F0_0000000000000000 +1C0141F8_0000000000000000 +1C014200_0000000000000000 +1C014208_0000000000000000 +1C014210_0000000000000000 +1C014218_0000000000000000 +1C014220_0000000000000000 +1C014228_0000000000000000 +1C014230_0000000000000000 +1C014238_0000000000000000 +1C014240_0000000000000000 +1C014248_0000000000000000 +1C014250_0000000000000000 +1C014258_0000000000000000 +1C014260_0000000000000000 +1C014268_0000000000000000 +1C014270_0000000000000000 +1C014278_0000000000000000 +1C014280_0000000000000000 +1C014288_0000000000000000 +1C014290_0000000000000000 +1C014298_0000000000000000 +1C0142A0_0000000000000000 +1C0142A8_0000000000000000 +1C0142B0_0000000000000000 +1C0142B8_0000000000000000 +1C0142C0_0000000000000000 +1C0142C8_0000000000000000 +1C0142D0_0000000000000000 +1C0142D8_0000000000000000 +1C0142E0_0000000000000000 +1C0142E8_0000000000000000 +1C0142F0_0000000000000000 +1C0142F8_0000000000000000 +1C014300_0000000000000000 +1C014308_0000000000000000 +1C014310_0000000000000000 +1C014318_0000000000000000 +1C014320_0000000000000000 +1C014328_0000000000000000 +1C014330_0000000000000000 +1C014338_0000000000000000 +1C014340_0000000000000000 +1C014348_0000000000000000 +1C014350_0000000000000000 +1C014358_0000000000000000 +1C014360_0000000000000000 +1C014368_0000000000000000 +1C014370_0000000000000000 +1C014378_0000000000000000 +1C014380_0000000000000000 +1C014388_0000000000000000 +1C014390_0000000000000000 +1C014398_0000000000000000 +1C0143A0_0000000000000000 +1C0143A8_0000000000000000 +1C0143B0_0000000000000000 +1C0143B8_0000000000000000 +1C0143C0_0000000000000000 +1C0143C8_0000000000000000 +1C0143D0_0000000000000000 +1C0143D8_0000000000000000 +1C0143E0_0000000000000000 +1C0143E8_0000000000000000 +1C0143F0_0000000000000000 +1C0143F8_0000000000000000 +1C014400_0000000000000000 +1C014408_0000000000000000 +1C014410_0000000000000000 +1C014418_0000000000000000 +1C014420_0000000000000000 +1C014428_0000000000000000 +1C014430_0000000000000000 +1C014438_0000000000000000 +1C014440_0000000000000000 +1C014448_0000000000000000 +1C014450_0000000000000000 +1C014458_0000000000000000 +1C014460_0000000000000000 +1C014468_0000000000000000 +1C014470_0000000000000000 +1C014478_0000000000000000 +1C014480_0000000000000000 +1C014488_0000000000000000 +1C014490_0000000000000000 +1C014498_0000000000000000 +1C0144A0_0000000000000000 +1C0144A8_0000000000000000 +1C0144B0_0000000000000000 +1C0144B8_0000000000000000 +1C0144C0_0000000000000000 +1C0144C8_0000000000000000 +1C0144D0_0000000000000000 +1C0144D8_0000000000000000 +1C0144E0_0000000000000000 +1C0144E8_0000000000000000 +1C0144F0_0000000000000000 +1C0144F8_0000000000000000 +1C014500_0000000000000000 +1C014508_0000000000000000 +1C014510_0000000000000000 +1C014518_0000000000000000 +1C014520_0000000000000000 +1C014528_0000000000000000 +1C014530_0000000000000000 +1C014538_0000000000000000 +1C014540_0000000000000000 +1C014548_0000000000000000 +1C014550_0000000000000000 +1C014558_0000000000000000 +1C014560_0000000000000000 +1C014568_0000000000000000 +1C014570_0000000000000000 +1C014578_0000000000000000 +1C014580_0000000000000000 +1C014588_0000000000000000 +1C014590_0000000000000000 +1C014598_0000000000000000 +1C0145A0_0000000000000000 +1C0145A8_0000000000000000 +1C0145B0_0000000000000000 +1C0145B8_0000000000000000 +1C0145C0_0000000000000000 +1C0145C8_0000000000000000 +1C0145D0_0000000000000000 +1C0145D8_0000000000000000 +1C0145E0_0000000000000000 +1C0145E8_0000000000000000 +1C0145F0_0000000000000000 +1C0145F8_0000000000000000 +1C014600_0000000000000000 +1C014608_0000000000000000 +1C014610_0000000000000000 +1C014618_0000000000000000 +1C014620_0000000000000000 +1C014628_0000000000000000 +1C014630_0000000000000000 +1C014638_0000000000000000 +1C014640_0000000000000000 +1C014648_0000000000000000 +1C014650_0000000000000000 +1C014658_0000000000000000 +1C014660_0000000000000000 +1C014668_0000000000000000 +1C014670_0000000000000000 +1C014678_0000000000000000 +1C014680_0000000000000000 +1C014688_0000000000000000 +1C014690_0000000000000000 +1C014698_0000000000000000 +1C0146A0_0000000000000000 +1C0146A8_0000000000000000 +1C0146B0_0000000000000000 +1C0146B8_0000000000000000 +1C0146C0_0000000000000000 +1C0146C8_0000000000000000 +1C0146D0_0000000000000000 +1C0146D8_0000000000000000 +1C0146E0_0000000000000000 +1C0146E8_0000000000000000 +1C0146F0_0000000000000000 +1C0146F8_0000000000000000 +1C014700_0000000000000000 +1C014708_0000000000000000 +1C014710_0000000000000000 +1C014718_0000000000000000 +1C014720_0000000000000000 +1C014728_0000000000000000 +1C014730_0000000000000000 +1C014738_0000000000000000 +1C014740_0000000000000000 +1C014748_0000000000000000 +1C014750_0000000000000000 +1C014758_0000000000000000 +1C014760_0000000000000000 +1C014768_0000000000000000 +1C014770_0000000000000000 +1C014778_0000000000000000 +1C014780_0000000000000000 +1C014788_0000000000000000 +1C014790_0000000000000000 +1C014798_0000000000000000 +1C0147A0_0000000000000000 +1C0147A8_0000000000000000 +1C0147B0_0000000000000000 +1C0147B8_0000000000000000 +1C0147C0_0000000000000000 +1C0147C8_0000000000000000 +1C0147D0_0000000000000000 +1C0147D8_0000000000000000 +1C0147E0_0000000000000000 +1C0147E8_0000000000000000 +1C0147F0_0000000000000000 +1C0147F8_0000000000000000 +1C014800_0000000000000000 +1C014808_0000000000000000 +1C014810_0000000000000000 +1C014818_0000000000000000 +1C014820_0000000000000000 +1C014828_0000000000000000 +1C014830_0000000000000000 +1C014838_0000000000000000 +1C014840_0000000000000000 +1C014848_0000000000000000 +1C014850_0000000000000000 +1C014858_0000000000000000 +1C014860_0000000000000000 +1C014868_0000000000000000 +1C014870_0000000000000000 +1C014878_0000000000000000 +1C014880_0000000000000000 +1C014888_0000000000000000 +1C014890_0000000000000000 +1C014898_0000000000000000 +1C0148A0_0000000000000000 +1C0148A8_0000000000000000 +1C0148B0_0000000000000000 +1C0148B8_0000000000000000 +1C0148C0_0000000000000000 +1C0148C8_0000000000000000 +1C0148D0_0000000000000000 +1C0148D8_0000000000000000 +1C0148E0_0000000000000000 +1C0148E8_0000000000000000 +1C0148F0_0000000000000000 +1C0148F8_0000000000000000 +1C014900_0000000000000000 +1C014908_0000000000000000 +1C014910_0000000000000000 +1C014918_0000000000000000 +1C014920_0000000000000000 +1C014928_0000000000000000 +1C014930_0000000000000000 +1C014938_0000000000000000 +1C014940_0000000000000000 +1C014948_0000000000000000 +1C014950_0000000000000000 +1C014958_0000000000000000 +1C014960_0000000000000000 +1C014968_0000000000000000 +1C014970_0000000000000000 +1C014978_0000000000000000 +1C014980_0000000000000000 +1C014988_0000000000000000 +1C014990_0000000000000000 +1C014998_0000000000000000 +1C0149A0_0000000000000000 +1C0149A8_0000000000000000 +1C0149B0_0000000000000000 +1C0149B8_0000000000000000 +1C0149C0_0000000000000000 +1C0149C8_0000000000000000 +1C0149D0_0000000000000000 +1C0149D8_0000000000000000 +1C0149E0_0000000000000000 +1C0149E8_0000000000000000 +1C0149F0_0000000000000000 +1C0149F8_0000000000000000 +1C014A00_0000000000000000 +1C014A08_0000000000000000 +1C014A10_0000000000000000 +1C014A18_0000000000000000 +1C014A20_0000000000000000 +1C014A28_0000000000000000 +1C014A30_0000000000000000 +1C014A38_0000000000000000 +1C014A40_0000000000000000 +1C014A48_0000000000000000 +1C014A50_0000000000000000 +1C014A58_0000000000000000 +1C014A60_0000000000000000 +1C014A68_0000000000000000 +1C014A70_0000000000000000 +1C014A78_0000000000000000 +1C014A80_0000000000000000 +1C014A88_0000000000000000 +1C014A90_0000000000000000 +1C014A98_0000000000000000 +1C014AA0_0000000000000000 +1C014AA8_0000000000000000 +1C014AB0_0000000000000000 +1C014AB8_0000000000000000 +1C014AC0_0000000000000000 +1C014AC8_0000000000000000 +1C014AD0_0000000000000000 +1C014AD8_0000000000000000 +1C014AE0_0000000000000000 +1C014AE8_0000000000000000 +1C014AF0_0000000000000000 +1C014AF8_0000000000000000 +1C014B00_0000000000000000 +1C014B08_0000000000000000 +1C014B10_0000000000000000 +1C014B18_0000000000000000 +1C014B20_0000000000000000 +1C014B28_0000000000000000 +1C014B30_0000000000000000 +1C014B38_0000000000000000 +1C014B40_0000000000000000 +1C014B48_0000000000000000 +1C014B50_0000000000000000 +1C014B58_0000000000000000 +1C014B60_0000000000000000 +1C014B68_0000000000000000 +1C014B70_0000000000000000 +1C014B78_0000000000000000 +1C014B80_0000000000000000 +1C014B88_0000000000000000 +1C014B90_0000000000000000 +1C014B98_0000000000000000 +1C014BA0_0000000000000000 +1C014BA8_0000000000000000 +1C014BB0_0000000000000000 +1C014BB8_0000000000000000 +1C014BC0_0000000000000000 +1C014BC8_0000000000000000 +1C014BD0_0000000000000000 +1C014BD8_0000000000000000 +1C014BE0_0000000000000000 +1C014BE8_0000000000000000 +1C014BF0_0000000000000000 +1C014BF8_0000000000000000 +1C014C00_0000000000000000 +1C014C08_0000000000000000 +1C014C10_0000000000000000 +1C014C18_0000000000000000 +1C014C20_0000000000000000 +1C014C28_0000000000000000 +1C014C30_0000000000000000 +1C014C38_0000000000000000 +1C014C40_0000000000000000 +1C014C48_0000000000000000 +1C014C50_0000000000000000 +1C014C58_0000000000000000 +1C014C60_0000000000000000 +1C014C68_0000000000000000 +1C014C70_0000000000000000 +1C014C78_0000000000000000 +1C014C80_0000000000000000 +1C014C88_0000000000000000 +1C014C90_0000000000000000 +1C014C98_0000000000000000 +1C014CA0_0000000000000000 +1C014CA8_0000000000000000 +1C014CB0_0000000000000000 +1C014CB8_0000000000000000 +1C014CC0_0000000000000000 +1C014CC8_0000000000000000 +1C014CD0_0000000000000000 +1C014CD8_0000000000000000 +1C014CE0_0000000000000000 +1C014CE8_0000000000000000 +1C014CF0_0000000000000000 +1C014CF8_0000000000000000 +1C014D00_0000000000000000 +1C014D08_0000000000000000 +1C014D10_0000000000000000 +1C014D18_0000000000000000 +1C014D20_0000000000000000 +1C014D28_0000000000000000 +1C014D30_0000000000000000 +1C014D38_0000000000000000 +1C014D40_0000000000000000 +1C014D48_0000000000000000 +1C014D50_0000000000000000 +1C014D58_0000000000000000 +1C014D60_0000000000000000 +1C014D68_0000000000000000 +1C014D70_0000000000000000 +1C014D78_0000000000000000 +1C014D80_0000000000000000 +1C014D88_0000000000000000 +1C014D90_0000000000000000 +1C014D98_0000000000000000 +1C014DA0_0000000000000000 +1C014DA8_0000000000000000 +1C014DB0_0000000000000000 +1C014DB8_0000000000000000 +1C014DC0_0000000000000000 +1C014DC8_0000000000000000 +1C014DD0_0000000000000000 +1C014DD8_0000000000000000 +1C014DE0_0000000000000000 +1C014DE8_0000000000000000 +1C014DF0_0000000000000000 +1C014DF8_0000000000000000 +1C014E00_0000000000000000 +1C014E08_0000000000000000 +1C014E10_0000000000000000 +1C014E18_0000000000000000 +1C014E20_0000000000000000 +1C014E28_0000000000000000 +1C014E30_0000000000000000 +1C014E38_0000000000000000 +1C014E40_0000000000000000 +1C014E48_0000000000000000 +1C014E50_0000000000000000 +1C014E58_0000000000000000 +1C014E60_0000000000000000 +1C014E68_0000000000000000 +1C014E70_0000000000000000 +1C014E78_0000000000000000 +1C014E80_0000000000000000 +1C014E88_0000000000000000 +1C014E90_0000000000000000 +1C014E98_0000000000000000 +1C014EA0_0000000000000000 +1C014EA8_0000000000000000 +1C014EB0_0000000000000000 +1C014EB8_0000000000000000 +1C014EC0_0000000000000000 +1C014EC8_0000000000000000 +1C014ED0_0000000000000000 +1C014ED8_0000000000000000 +1C014EE0_0000000000000000 +1C014EE8_0000000000000000 +1C014EF0_0000000000000000 +1C014EF8_0000000000000000 +1C014F00_0000000000000000 +1C014F08_0000000000000000 +1C014F10_0000000000000000 +1C014F18_0000000000000000 +1C014F20_0000000000000000 +1C014F28_0000000000000000 +1C014F30_0000000000000000 +1C014F38_0000000000000000 +1C014F40_0000000000000000 +1C014F48_0000000000000000 +1C014F50_0000000000000000 +1C014F58_0000000000000000 +1C014F60_0000000000000000 +1C014F68_0000000000000000 +1C014F70_0000000000000000 +1C014F78_0000000000000000 +1C014F80_0000000000000000 +1C014F88_0000000000000000 +1C014F90_0000000000000000 +1C014F98_0000000000000000 +1C014FA0_0000000000000000 +1C014FA8_0000000000000000 +1C014FB0_0000000000000000 +1C014FB8_0000000000000000 +1C014FC0_0000000000000000 +1C014FC8_0000000000000000 +1C014FD0_0000000000000000 +1C014FD8_0000000000000000 +1C014FE0_0000000000000000 +1C014FE8_0000000000000000 +1C014FF0_0000000000000000 +1C014FF8_0000000000000000 +1C015000_0000000000000000 +1C015008_0000000000000000 +1C015010_0000000000000000 +1C015018_0000000000000000 +1C015020_0000000000000000 +1C015028_0000000000000000 +1C015030_0000000000000000 +1C015038_0000000000000000 +1C015040_0000000000000000 +1C015048_0000000000000000 +1C015050_0000000000000000 +1C015058_0000000000000000 +1C015060_0000000000000000 +1C015068_0000000000000000 +1C015070_0000000000000000 +1C015078_0000000000000000 +1C015080_0000000000000000 +1C015088_0000000000000000 +1C015090_0000000000000000 +1C015098_0000000000000000 +1C0150A0_0000000000000000 +1C0150A8_0000000000000000 +1C0150B0_0000000000000000 +1C0150B8_0000000000000000 +1C0150C0_0000000000000000 +1C0150C8_0000000000000000 +1C0150D0_0000000000000000 +1C0150D8_0000000000000000 +1C0150E0_0000000000000000 +1C0150E8_0000000000000000 +1C0150F0_0000000000000000 +1C0150F8_0000000000000000 +1C015100_0000000000000000 +1C015108_0000000000000000 +1C015110_0000000000000000 +1C015118_0000000000000000 +1C015120_0000000000000000 +1C015128_0000000000000000 +1C015130_0000000000000000 +1C015138_0000000000000000 +1C015140_0000000000000000 +1C015148_0000000000000000 +1C015150_0000000000000000 +1C015158_0000000000000000 +1C015160_0000000000000000 +1C015168_0000000000000000 +1C015170_0000000000000000 +1C015178_0000000000000000 +1C015180_0000000000000000 +1C015188_0000000000000000 +1C015190_0000000000000000 +1C015198_0000000000000000 +1C0151A0_0000000000000000 +1C0151A8_0000000000000000 +1C0151B0_0000000000000000 +1C0151B8_0000000000000000 +1C0151C0_0000000000000000 +1C0151C8_0000000000000000 +1C0151D0_0000000000000000 +1C0151D8_0000000000000000 +1C0151E0_0000000000000000 +1C0151E8_0000000000000000 +1C0151F0_0000000000000000 +1C0151F8_0000000000000000 +1C015200_0000000000000000 +1C015208_0000000000000000 +1C015210_0000000000000000 +1C015218_0000000000000000 +1C015220_0000000000000000 +1C015228_0000000000000000 +1C015230_0000000000000000 +1C015238_0000000000000000 +1C015240_0000000000000000 +1C015248_0000000000000000 +1C015250_0000000000000000 +1C015258_0000000000000000 +1C015260_0000000000000000 +1C015268_0000000000000000 +1C015270_0000000000000000 +1C015278_0000000000000000 +1C015280_0000000000000000 +1C015288_0000000000000000 +1C015290_0000000000000000 +1C015298_0000000000000000 +1C0152A0_0000000000000000 +1C0152A8_0000000000000000 +1C0152B0_0000000000000000 +1C0152B8_0000000000000000 +1C0152C0_0000000000000000 +1C0152C8_0000000000000000 +1C0152D0_0000000000000000 +1C0152D8_0000000000000000 +1C0152E0_0000000000000000 +1C0152E8_0000000000000000 +1C0152F0_0000000000000000 +1C0152F8_0000000000000000 +1C015300_0000000000000000 +1C015308_0000000000000000 +1C015310_0000000000000000 +1C015318_0000000000000000 +1C015320_0000000000000000 +1C015328_0000000000000000 +1C015330_0000000000000000 +1C015338_0000000000000000 +1C015340_0000000000000000 +1C015348_0000000000000000 +1C015350_0000000000000000 +1C015358_0000000000000000 +1C015360_0000000000000000 +1C015368_0000000000000000 +1C015370_0000000000000000 +1C015378_0000000000000000 +1C015380_0000000000000000 +1C015388_0000000000000000 +1C015390_0000000000000000 +1C015398_0000000000000000 +1C0153A0_0000000000000000 +1C0153A8_0000000000000000 +1C0153B0_0000000000000000 +1C0153B8_0000000000000000 +1C0153C0_0000000000000000 +1C0153C8_0000000000000000 +1C0153D0_0000000000000000 +1C0153D8_0000000000000000 +1C0153E0_0000000000000000 +1C0153E8_0000000000000000 +1C0153F0_0000000000000000 +1C0153F8_0000000000000000 +1C015400_0000000000000000 +1C015408_0000000000000000 +1C015410_0000000000000000 +1C015418_0000000000000000 +1C015420_0000000000000000 +1C015428_0000000000000000 +1C015430_0000000000000000 +1C015438_0000000000000000 +1C015440_0000000000000000 +1C015448_0000000000000000 +1C015450_0000000000000000 +1C015458_0000000000000000 +1C015460_0000000000000000 +1C015468_0000000000000000 +1C015470_0000000000000000 +1C015478_0000000000000000 +1C015480_0000000000000000 +1C015488_0000000000000000 +1C015490_0000000000000000 +1C015498_0000000000000000 +1C0154A0_0000000000000000 +1C0154A8_0000000000000000 +1C0154B0_0000000000000000 +1C0154B8_0000000000000000 +1C0154C0_0000000000000000 +1C0154C8_0000000000000000 +1C0154D0_0000000000000000 +1C0154D8_0000000000000000 +1C0154E0_0000000000000000 +1C0154E8_0000000000000000 +1C0154F0_0000000000000000 +1C0154F8_0000000000000000 +1C015500_0000000000000000 +1C015508_0000000000000000 +1C015510_0000000000000000 +1C015518_0000000000000000 +1C015520_0000000000000000 +1C015528_0000000000000000 +1C015530_0000000000000000 +1C015538_0000000000000000 +1C015540_0000000000000000 +1C015548_0000000000000000 +1C015550_0000000000000000 +1C015558_0000000000000000 +1C015560_0000000000000000 +1C015568_0000000000000000 +1C015570_0000000000000000 +1C015578_0000000000000000 +1C015580_0000000000000000 +1C015588_0000000000000000 +1C015590_0000000000000000 +1C015598_0000000000000000 +1C0155A0_0000000000000000 +1C0155A8_0000000000000000 +1C0155B0_0000000000000000 +1C0155B8_0000000000000000 +1C0155C0_0000000000000000 +1C0155C8_0000000000000000 +1C0155D0_0000000000000000 +1C0155D8_0000000000000000 +1C0155E0_0000000000000000 +1C0155E8_0000000000000000 +1C0155F0_0000000000000000 +1C0155F8_0000000000000000 +1C015600_0000000000000000 +1C015608_0000000000000000 +1C015610_0000000000000000 +1C015618_0000000000000000 +1C015620_0000000000000000 +1C015628_0000000000000000 +1C015630_0000000000000000 +1C015638_0000000000000000 +1C015640_0000000000000000 +1C015648_0000000000000000 +1C015650_0000000000000000 +1C015658_0000000000000000 +1C015660_0000000000000000 +1C015668_0000000000000000 +1C015670_0000000000000000 +1C015678_0000000000000000 +1C015680_0000000000000000 +1C015688_0000000000000000 +1C015690_0000000000000000 +1C015698_0000000000000000 +1C0156A0_0000000000000000 +1C0156A8_0000000000000000 +1C0156B0_0000000000000000 +1C0156B8_0000000000000000 +1C0156C0_0000000000000000 +1C0156C8_0000000000000000 +1C0156D0_0000000000000000 +1C0156D8_0000000000000000 +1C0156E0_0000000000000000 +1C0156E8_0000000000000000 +1C0156F0_0000000000000000 +1C0156F8_0000000000000000 +1C015700_0000000000000000 +1C015708_0000000000000000 +1C015710_0000000000000000 +1C015718_0000000000000000 +1C015720_0000000000000000 +1C015728_0000000000000000 +1C015730_0000000000000000 +1C015738_0000000000000000 +1C015740_0000000000000000 +1C015748_0000000000000000 +1C015750_0000000000000000 +1C015758_0000000000000000 +1C015760_0000000000000000 +1C015768_0000000000000000 +1C015770_0000000000000000 +1C015778_0000000000000000 +1C015780_0000000000000000 +1C015788_0000000000000000 +1C015790_0000000000000000 +1C015798_0000000000000000 +1C0157A0_0000000000000000 +1C0157A8_0000000000000000 +1C0157B0_0000000000000000 +1C0157B8_0000000000000000 +1C0157C0_0000000000000000 +1C0157C8_0000000000000000 +1C0157D0_0000000000000000 +1C0157D8_0000000000000000 +1C0157E0_0000000000000000 +1C0157E8_0000000000000000 +1C0157F0_0000000000000000 +1C0157F8_0000000000000000 +1C015800_0000000000000000 +1C015808_0000000000000000 +1C015810_0000000000000000 +1C015818_0000000000000000 +1C015820_0000000000000000 +1C015828_0000000000000000 +1C015830_0000000000000000 +1C015838_0000000000000000 +1C015840_0000000000000000 +1C015848_0000000000000000 +1C015850_0000000000000000 +1C015858_0000000000000000 +1C015860_0000000000000000 +1C015868_0000000000000000 +1C015870_0000000000000000 +1C015878_0000000000000000 +1C015880_0000000000000000 +1C015888_0000000000000000 +1C015890_0000000000000000 +1C015898_0000000000000000 +1C0158A0_0000000000000000 +1C0158A8_0000000000000000 +1C0158B0_0000000000000000 +1C0158B8_0000000000000000 +1C0158C0_0000000000000000 +1C0158C8_0000000000000000 +1C0158D0_0000000000000000 +1C0158D8_0000000000000000 +1C0158E0_0000000000000000 +1C0158E8_0000000000000000 +1C0158F0_0000000000000000 +1C0158F8_0000000000000000 +1C015900_0000000000000000 +1C015908_0000000000000000 +1C015910_0000000000000000 +1C015918_0000000000000000 +1C015920_0000000000000000 +1C015928_0000000000000000 +1C015930_0000000000000000 +1C015938_0000000000000000 +1C015940_0000000000000000 +1C015948_0000000000000000 +1C015950_0000000000000000 +1C015958_0000000000000000 +1C015960_0000000000000000 +1C015968_0000000000000000 +1C015970_0000000000000000 +1C015978_0000000000000000 +1C015980_0000000000000000 +1C015988_0000000000000000 +1C015990_0000000000000000 +1C015998_0000000000000000 +1C0159A0_0000000000000000 +1C0159A8_0000000000000000 +1C0159B0_0000000000000000 +1C0159B8_0000000000000000 +1C0159C0_0000000000000000 +1C0159C8_0000000000000000 +1C0159D0_0000000000000000 +1C0159D8_0000000000000000 +1C0159E0_0000000000000000 +1C0159E8_0000000000000000 +1C0159F0_0000000000000000 +1C0159F8_0000000000000000 +1C015A00_0000000000000000 +1C015A08_0000000000000000 +1C015A10_0000000000000000 +1C015A18_0000000000000000 +1C015A20_0000000000000000 +1C015A28_0000000000000000 +1C015A30_0000000000000000 +1C015A38_0000000000000000 +1C015A40_0000000000000000 +1C015A48_0000000000000000 +1C015A50_0000000000000000 +1C015A58_0000000000000000 +1C015A60_0000000000000000 +1C015A68_0000000000000000 +1C015A70_0000000000000000 +1C015A78_0000000000000000 +1C015A80_0000000000000000 +1C015A88_0000000000000000 +1C015A90_0000000000000000 +1C015A98_0000000000000000 +1C015AA0_0000000000000000 +1C015AA8_0000000000000000 +1C015AB0_0000000000000000 +1C015AB8_0000000000000000 +1C015AC0_0000000000000000 +1C015AC8_0000000000000000 +1C015AD0_0000000000000000 +1C015AD8_0000000000000000 +1C015AE0_0000000000000000 +1C015AE8_0000000000000000 +1C015AF0_0000000000000000 +1C015AF8_0000000000000000 +1C015B00_0000000000000000 +1C015B08_0000000000000000 +1C015B10_0000000000000000 +1C015B18_0000000000000000 +1C015B20_0000000000000000 +1C015B28_0000000000000000 +1C015B30_0000000000000000 +1C015B38_0000000000000000 +1C015B40_0000000000000000 +1C015B48_0000000000000000 +1C015B50_0000000000000000 +1C015B58_0000000000000000 +1C015B60_0000000000000000 +1C015B68_0000000000000000 +1C015B70_0000000000000000 +1C015B78_0000000000000000 +1C015B80_0000000000000000 +1C015B88_0000000000000000 +1C015B90_0000000000000000 +1C015B98_0000000000000000 +1C015BA0_0000000000000000 +1C015BA8_0000000000000000 +1C015BB0_0000000000000000 +1C015BB8_0000000000000000 +1C015BC0_0000000000000000 +1C015BC8_0000000000000000 +1C015BD0_0000000000000000 +1C015BD8_0000000000000000 +1C015BE0_0000000000000000 +1C015BE8_0000000000000000 +1C015BF0_0000000000000000 +1C015BF8_0000000000000000 +1C015C00_0000000000000000 +1C015C08_0000000000000000 +1C015C10_0000000000000000 +1C015C18_0000000000000000 +1C015C20_0000000000000000 +1C015C28_0000000000000000 +1C015C30_0000000000000000 +1C015C38_0000000000000000 +1C015C40_0000000000000000 +1C015C48_0000000000000000 +1C015C50_0000000000000000 +1C015C58_0000000000000000 +1C015C60_0000000000000000 +1C015C68_0000000000000000 +1C015C70_0000000000000000 +1C015C78_0000000000000000 +1C015C80_0000000000000000 +1C015C88_0000000000000000 +1C015C90_0000000000000000 +1C015C98_0000000000000000 +1C015CA0_0000000000000000 +1C015CA8_0000000000000000 +1C015CB0_0000000000000000 +1C015CB8_0000000000000000 +1C015CC0_0000000000000000 +1C015CC8_0000000000000000 +1C015CD0_0000000000000000 +1C015CD8_0000000000000000 +1C015CE0_0000000000000000 +1C015CE8_0000000000000000 +1C015CF0_0000000000000000 +1C015CF8_0000000000000000 +1C015D00_0000000000000000 +1C015D08_0000000000000000 +1C015D10_0000000000000000 +1C015D18_0000000000000000 +1C015D20_0000000000000000 +1C015D28_0000000000000000 +1C015D30_0000000000000000 +1C015D38_0000000000000000 +1C015D40_0000000000000000 +1C015D48_0000000000000000 +1C015D50_0000000000000000 +1C015D58_0000000000000000 +1C015D60_0000000000000000 +1C015D68_0000000000000000 +1C015D70_0000000000000000 +1C015D78_0000000000000000 +1C015D80_0000000000000000 +1C015D88_0000000000000000 +1C015D90_0000000000000000 +1C015D98_0000000000000000 +1C015DA0_0000000000000000 +1C015DA8_0000000000000000 +1C015DB0_0000000000000000 +1C015DB8_0000000000000000 +1C015DC0_0000000000000000 +1C015DC8_0000000000000000 +1C015DD0_0000000000000000 +1C015DD8_0000000000000000 +1C015DE0_0000000000000000 +1C015DE8_0000000000000000 +1C015DF0_0000000000000000 +1C015DF8_0000000000000000 +1C015E00_0000000000000000 +1C015E08_0000000000000000 +1C015E10_0000000000000000 +1C015E18_0000000000000000 +1C015E20_0000000000000000 +1C015E28_0000000000000000 +1C015E30_0000000000000000 +1C015E38_0000000000000000 +1C015E40_0000000000000000 +1C015E48_0000000000000000 +1C015E50_0000000000000000 +1C015E58_0000000000000000 +1C015E60_0000000000000000 +1C015E68_0000000000000000 +1C015E70_0000000000000000 +1C015E78_0000000000000000 +1C015E80_0000000000000000 +1C015E88_0000000000000000 +1C015E90_0000000000000000 +1C015E98_0000000000000000 +1C015EA0_0000000000000000 +1C015EA8_0000000000000000 +1C015EB0_0000000000000000 +1C015EB8_0000000000000000 +1C015EC0_0000000000000000 +1C015EC8_0000000000000000 +1C015ED0_0000000000000000 +1C015ED8_0000000000000000 +1C015EE0_0000000000000000 +1C015EE8_0000000000000000 +1C015EF0_0000000000000000 +1C015EF8_0000000000000000 +1C015F00_0000000000000000 +1C015F08_0000000000000000 +1C015F10_0000000000000000 +1C015F18_0000000000000000 +1C015F20_0000000000000000 +1C015F28_0000000000000000 +1C015F30_0000000000000000 +1C015F38_0000000000000000 +1C015F40_0000000000000000 +1C015F48_0000000000000000 +1C015F50_0000000000000000 +1C015F58_0000000000000000 +1C015F60_0000000000000000 +1C015F68_0000000000000000 +1C015F70_0000000000000000 +1C015F78_0000000000000000 +1C015F80_0000000000000000 +1C015F88_0000000000000000 +1C015F90_0000000000000000 +1C015F98_0000000000000000 +1C015FA0_0000000000000000 +1C015FA8_0000000000000000 +1C015FB0_0000000000000000 +1C015FB8_0000000000000000 +1C015FC0_0000000000000000 +1C015FC8_0000000000000000 +1C015FD0_0000000000000000 +1C015FD8_0000000000000000 +1C015FE0_0000000000000000 +1C015FE8_0000000000000000 +1C015FF0_0000000000000000 +1C015FF8_0000000000000000 +1C016000_0000000000000000 +1C016008_0000000000000000 +1C016010_0000000000000000 +1C016018_0000000000000000 +1C016020_0000000000000000 +1C016028_0000000000000000 +1C016030_0000000000000000 +1C016038_0000000000000000 +1C016040_0000000000000000 +1C016048_0000000000000000 +1C016050_0000000000000000 +1C016058_0000000000000000 +1C016060_0000000000000000 +1C016068_0000000000000000 +1C016070_0000000000000000 +1C016078_0000000000000000 +1C016080_0000000000000000 +1C016088_0000000000000000 +1C016090_0000000000000000 +1C016098_0000000000000000 +1C0160A0_0000000000000000 +1C0160A8_0000000000000000 +1C0160B0_0000000000000000 +1C0160B8_0000000000000000 +1C0160C0_0000000000000000 +1C0160C8_0000000000000000 +1C0160D0_0000000000000000 +1C0160D8_0000000000000000 +1C0160E0_0000000000000000 +1C0160E8_0000000000000000 +1C0160F0_0000000000000000 +1C0160F8_0000000000000000 +1C016100_0000000000000000 +1C016108_0000000000000000 +1C016110_0000000000000000 +1C016118_0000000000000000 +1C016120_0000000000000000 +1C016128_0000000000000000 +1C016130_0000000000000000 +1C016138_0000000000000000 +1C016140_0000000000000000 +1C016148_0000000000000000 +1C016150_0000000000000000 +1C016158_0000000000000000 +1C016160_0000000000000000 +1C016168_0000000000000000 +1C016170_0000000000000000 +1C016178_0000000000000000 +1C016180_0000000000000000 +1C016188_0000000000000000 +1C016190_0000000000000000 +1C016198_0000000000000000 +1C0161A0_0000000000000000 +1C0161A8_0000000000000000 +1C0161B0_0000000000000000 +1C0161B8_0000000000000000 +1C0161C0_0000000000000000 +1C0161C8_0000000000000000 +1C0161D0_0000000000000000 +1C0161D8_0000000000000000 +1C0161E0_0000000000000000 +1C0161E8_0000000000000000 +1C0161F0_0000000000000000 +1C0161F8_0000000000000000 +1C016200_0000000000000000 +1C016208_0000000000000000 +1C016210_0000000000000000 +1C016218_0000000000000000 +1C016220_0000000000000000 +1C016228_0000000000000000 +1C016230_0000000000000000 +1C016238_0000000000000000 +1C016240_0000000000000000 +1C016248_0000000000000000 +1C016250_0000000000000000 +1C016258_0000000000000000 +1C016260_0000000000000000 +1C016268_0000000000000000 +1C016270_0000000000000000 +1C016278_0000000000000000 +1C016280_0000000000000000 +1C016288_0000000000000000 +1C016290_0000000000000000 +1C016298_0000000000000000 +1C0162A0_0000000000000000 +1C0162A8_0000000000000000 +1C0162B0_0000000000000000 +1C0162B8_0000000000000000 +1C0162C0_0000000000000000 +1C0162C8_0000000000000000 +1C0162D0_0000000000000000 +1C0162D8_0000000000000000 +1C0162E0_0000000000000000 +1C0162E8_0000000000000000 +1C0162F0_0000000000000000 +1C0162F8_0000000000000000 +1C016300_0000000000000000 +1C016308_0000000000000000 +1C016310_0000000000000000 +1C016318_0000000000000000 +1C016320_0000000000000000 +1C016328_0000000000000000 +1C016330_0000000000000000 +1C016338_0000000000000000 +1C016340_0000000000000000 +1C016348_0000000000000000 +1C016350_0000000000000000 +1C016358_0000000000000000 +1C016360_0000000000000000 +1C016368_0000000000000000 +1C016370_0000000000000000 +1C016378_0000000000000000 +1C016380_0000000000000000 +1C016388_0000000000000000 +1C016390_0000000000000000 +1C016398_0000000000000000 +1C0163A0_0000000000000000 +1C0163A8_0000000000000000 +1C0163B0_0000000000000000 +1C0163B8_0000000000000000 +1C0163C0_0000000000000000 +1C0163C8_0000000000000000 +1C0163D0_0000000000000000 +1C0163D8_0000000000000000 +1C0163E0_0000000000000000 +1C0163E8_0000000000000000 +1C0163F0_0000000000000000 +1C0163F8_0000000000000000 +1C016400_0000000000000000 +1C016408_0000000000000000 +1C016410_0000000000000000 +1C016418_0000000000000000 +1C016420_0000000000000000 +1C016428_0000000000000000 +1C016430_0000000000000000 +1C016438_0000000000000000 +1C016440_0000000000000000 +1C016448_0000000000000000 +1C016450_0000000000000000 +1C016458_0000000000000000 +1C016460_0000000000000000 +1C016468_0000000000000000 +1C016470_0000000000000000 +1C016478_0000000000000000 +1C016480_0000000000000000 +1C016488_0000000000000000 +1C016490_0000000000000000 +1C016498_0000000000000000 +1C0164A0_0000000000000000 +1C0164A8_0000000000000000 +1C0164B0_0000000000000000 +1C0164B8_0000000000000000 +1C0164C0_0000000000000000 +1C0164C8_0000000000000000 +1C0164D0_0000000000000000 +1C0164D8_0000000000000000 +1C0164E0_0000000000000000 +1C0164E8_0000000000000000 +1C0164F0_0000000000000000 +1C0164F8_0000000000000000 +1C016500_0000000000000000 +1C016508_0000000000000000 +1C016510_0000000000000000 +1C016518_0000000000000000 +1C016520_0000000000000000 +1C016528_0000000000000000 +1C016530_0000000000000000 +1C016538_0000000000000000 +1C016540_0000000000000000 +1C016548_0000000000000000 +1C016550_0000000000000000 +1C016558_0000000000000000 +1C016560_0000000000000000 +1C016568_0000000000000000 +1C016570_0000000000000000 +1C016578_0000000000000000 +1C016580_0000000000000000 +1C016588_0000000000000000 +1C016590_0000000000000000 +1C016598_0000000000000000 +1C0165A0_0000000000000000 +1C0165A8_0000000000000000 +1C0165B0_0000000000000000 +1C0165B8_0000000000000000 +1C0165C0_0000000000000000 +1C0165C8_0000000000000000 +1C0165D0_0000000000000000 +1C0165D8_0000000000000000 +1C0165E0_0000000000000000 +1C0165E8_0000000000000000 +1C0165F0_0000000000000000 +1C0165F8_0000000000000000 +1C016600_0000000000000000 +1C016608_0000000000000000 +1C016610_0000000000000000 +1C016618_0000000000000000 +1C016620_0000000000000000 +1C016628_0000000000000000 +1C016630_0000000000000000 +1C016638_0000000000000000 +1C016640_0000000000000000 +1C016648_0000000000000000 +1C016650_0000000000000000 +1C016658_0000000000000000 +1C016660_0000000000000000 +1C016668_0000000000000000 +1C016670_0000000000000000 +1C016678_0000000000000000 +1C016680_0000000000000000 +1C016688_0000000000000000 +1C016690_0000000000000000 +1C016698_0000000000000000 +1C0166A0_0000000000000000 +1C0166A8_0000000000000000 +1C0166B0_0000000000000000 +1C0166B8_0000000000000000 +1C0166C0_0000000000000000 +1C0166C8_0000000000000000 +1C0166D0_0000000000000000 +1C0166D8_0000000000000000 +1C0166E0_0000000000000000 +1C0166E8_0000000000000000 +1C0166F0_0000000000000000 +1C0166F8_0000000000000000 +1C016700_0000000000000000 +1C016708_0000000000000000 +1C016710_0000000000000000 +1C016718_0000000000000000 +1C016720_0000000000000000 +1C016728_0000000000000000 +1C016730_0000000000000000 +1C016738_0000000000000000 +1C016740_0000000000000000 +1C016748_0000000000000000 +1C016750_0000000000000000 +1C016758_0000000000000000 +1C016760_0000000000000000 +1C016768_0000000000000000 +1C016770_0000000000000000 +1C016778_0000000000000000 +1C016780_0000000000000000 +1C016788_0000000000000000 +1C016790_0000000000000000 +1C016798_0000000000000000 +1C0167A0_0000000000000000 +1C0167A8_0000000000000000 +1C0167B0_0000000000000000 +1C0167B8_0000000000000000 +1C0167C0_0000000000000000 +1C0167C8_0000000000000000 +1C0167D0_0000000000000000 +1C0167D8_0000000000000000 +1C0167E0_0000000000000000 +1C0167E8_0000000000000000 +1C0167F0_0000000000000000 +1C0167F8_0000000000000000 +1C016800_0000000000000000 +1C016808_0000000000000000 +1C016810_0000000000000000 +1C016818_0000000000000000 +1C016820_0000000000000000 +1C016828_0000000000000000 +1C016830_0000000000000000 +1C016838_0000000000000000 +1C016840_0000000000000000 +1C016848_0000000000000000 +1C016850_0000000000000000 +1C016858_0000000000000000 +1C016860_0000000000000000 +1C016868_0000000000000000 +1C016870_0000000000000000 +1C016878_0000000000000000 +1C016880_0000000000000000 +1C016888_0000000000000000 +1C016890_0000000000000000 +1C016898_0000000000000000 +1C0168A0_0000000000000000 +1C0168A8_0000000000000000 +1C0168B0_0000000000000000 +1C0168B8_0000000000000000 +1C0168C0_0000000000000000 +1C0168C8_0000000000000000 +1C0168D0_0000000000000000 +1C0168D8_0000000000000000 +1C0168E0_0000000000000000 +1C0168E8_0000000000000000 +1C0168F0_0000000000000000 +1C0168F8_0000000000000000 +1C016900_0000000000000000 +1C016908_0000000000000000 +1C016910_0000000000000000 +1C016918_0000000000000000 +1C016920_0000000000000000 +1C016928_0000000000000000 +1C016930_0000000000000000 +1C016938_0000000000000000 +1C016940_0000000000000000 +1C016948_0000000000000000 +1C016950_0000000000000000 +1C016958_0000000000000000 +1C016960_0000000000000000 +1C016968_0000000000000000 +1C016970_0000000000000000 +1C016978_0000000000000000 +1C016980_0000000000000000 +1C016988_0000000000000000 +1C016990_0000000000000000 +1C016998_0000000000000000 +1C0169A0_0000000000000000 +1C0169A8_0000000000000000 +1C0169B0_0000000000000000 +1C0169B8_0000000000000000 +1C0169C0_0000000000000000 +1C0169C8_0000000000000000 +1C0169D0_0000000000000000 +1C0169D8_0000000000000000 +1C0169E0_0000000000000000 +1C0169E8_0000000000000000 +1C0169F0_0000000000000000 +1C0169F8_0000000000000000 +1C016A00_0000000000000000 +1C016A08_0000000000000000 +1C016A10_0000000000000000 +1C016A18_0000000000000000 +1C016A20_0000000000000000 +1C016A28_0000000000000000 +1C016A30_0000000000000000 +1C016A38_0000000000000000 +1C016A40_0000000000000000 +1C016A48_0000000000000000 +1C016A50_0000000000000000 +1C016A58_0000000000000000 +1C016A60_0000000000000000 +1C016A68_0000000000000000 +1C016A70_0000000000000000 +1C016A78_0000000000000000 +1C016A80_0000000000000000 +1C016A88_0000000000000000 +1C016A90_0000000000000000 +1C016A98_0000000000000000 +1C016AA0_0000000000000000 +1C016AA8_0000000000000000 +1C016AB0_0000000000000000 +1C016AB8_0000000000000000 +1C016AC0_0000000000000000 +1C016AC8_0000000000000000 +1C016AD0_0000000000000000 +1C016AD8_0000000000000000 +1C016AE0_0000000000000000 +1C016AE8_0000000000000000 +1C016AF0_0000000000000000 +1C016AF8_0000000000000000 +1C016B00_0000000000000000 +1C016B08_0000000000000000 +1C016B10_0000000000000000 +1C016B18_0000000000000000 +1C016B20_0000000000000000 +1C016B28_0000000000000000 +1C016B30_0000000000000000 +1C016B38_0000000000000000 +1C016B40_0000000000000000 +1C016B48_0000000000000000 +1C016B50_0000000000000000 +1C016B58_0000000000000000 +1C016B60_0000000000000000 +1C016B68_0000000000000000 +1C016B70_0000000000000000 +1C016B78_0000000000000000 +1C016B80_0000000000000000 +1C016B88_0000000000000000 +1C016B90_0000000000000000 +1C016B98_0000000000000000 +1C016BA0_0000000000000000 +1C016BA8_0000000000000000 +1C016BB0_0000000000000000 +1C016BB8_0000000000000000 +1C016BC0_0000000000000000 +1C016BC8_0000000000000000 +1C016BD0_0000000000000000 +1C016BD8_0000000000000000 +1C016BE0_0000000000000000 +1C016BE8_0000000000000000 +1C016BF0_0000000000000000 +1C016BF8_0000000000000000 +1C016C00_0000000000000000 +1C016C08_0000000000000000 +1C016C10_0000000000000000 +1C016C18_0000000000000000 +1C016C20_0000000000000000 +1C016C28_0000000000000000 +1C016C30_0000000000000000 +1C016C38_0000000000000000 +1C016C40_0000000000000000 +1C016C48_0000000000000000 +1C016C50_0000000000000000 +1C016C58_0000000000000000 +1C016C60_0000000000000000 +1C016C68_0000000000000000 +1C016C70_0000000000000000 +1C016C78_0000000000000000 +1C016C80_0000000000000000 +1C016C88_0000000000000000 +1C016C90_0000000000000000 +1C016C98_0000000000000000 +1C016CA0_0000000000000000 +1C016CA8_0000000000000000 +1C016CB0_0000000000000000 +1C016CB8_0000000000000000 +1C016CC0_0000000000000000 +1C016CC8_0000000000000000 +1C016CD0_0000000000000000 +1C016CD8_0000000000000000 +1C016CE0_0000000000000000 +1C016CE8_0000000000000000 +1C016CF0_0000000000000000 +1C016CF8_0000000000000000 +1C016D00_0000000000000000 +1C016D08_0000000000000000 +1C016D10_0000000000000000 +1C016D18_0000000000000000 +1C016D20_0000000000000000 +1C016D28_0000000000000000 +1C016D30_0000000000000000 +1C016D38_0000000000000000 +1C016D40_0000000000000000 +1C016D48_0000000000000000 +1C016D50_0000000000000000 +1C016D58_0000000000000000 +1C016D60_0000000000000000 +1C016D68_0000000000000000 +1C016D70_0000000000000000 +1C016D78_0000000000000000 +1C016D80_0000000000000000 +1C016D88_0000000000000000 +1C016D90_0000000000000000 +1C016D98_0000000000000000 +1C016DA0_0000000000000000 +1C016DA8_0000000000000000 +1C016DB0_0000000000000000 +1C016DB8_0000000000000000 +1C016DC0_0000000000000000 +1C016DC8_0000000000000000 +1C016DD0_0000000000000000 +1C016DD8_0000000000000000 +1C016DE0_0000000000000000 +1C016DE8_0000000000000000 +1C016DF0_0000000000000000 +1C016DF8_0000000000000000 +1C016E00_0000000000000000 +1C016E08_0000000000000000 +1C016E10_0000000000000000 +1C016E18_0000000000000000 +1C016E20_0000000000000000 +1C016E28_0000000000000000 +1C016E30_0000000000000000 +1C016E38_0000000000000000 +1C016E40_0000000000000000 +1C016E48_0000000000000000 +1C016E50_0000000000000000 +1C016E58_0000000000000000 +1C016E60_0000000000000000 +1C016E68_0000000000000000 +1C016E70_0000000000000000 +1C016E78_0000000000000000 +1C016E80_0000000000000000 +1C016E88_0000000000000000 +1C016E90_0000000000000000 +1C016E98_0000000000000000 +1C016EA0_0000000000000000 +1C016EA8_0000000000000000 +1C016EB0_0000000000000000 +1C016EB8_0000000000000000 +1C016EC0_0000000000000000 +1C016EC8_0000000000000000 +1C016ED0_0000000000000000 +1C016ED8_0000000000000000 +1C016EE0_0000000000000000 +1C016EE8_0000000000000000 +1C016EF0_0000000000000000 +1C016EF8_0000000000000000 +1C016F00_0000000000000000 +1C016F08_0000000000000000 +1C016F10_0000000000000000 +1C016F18_0000000000000000 +1C016F20_0000000000000000 +1C016F28_0000000000000000 +1C016F30_0000000000000000 +1C016F38_0000000000000000 +1C016F40_0000000000000000 +1C016F48_0000000000000000 +1C016F50_0000000000000000 +1C016F58_0000000000000000 +1C016F60_0000000000000000 +1C016F68_0000000000000000 +1C016F70_0000000000000000 +1C016F78_0000000000000000 +1C016F80_0000000000000000 +1C016F88_0000000000000000 +1C016F90_0000000000000000 +1C016F98_0000000000000000 +1C016FA0_0000000000000000 +1C016FA8_0000000000000000 +1C016FB0_0000000000000000 +1C016FB8_0000000000000000 +1C016FC0_0000000000000000 +1C016FC8_0000000000000000 +1C016FD0_0000000000000000 +1C016FD8_0000000000000000 +1C016FE0_0000000000000000 +1C016FE8_0000000000000000 +1C016FF0_0000000000000000 +1C016FF8_0000000000000000 +1C017000_0000000000000000 +1C017008_0000000000000000 +1C017010_0000000000000000 +1C017018_0000000000000000 +1C017020_0000000000000000 +1C017028_0000000000000000 +1C017030_0000000000000000 +1C017038_0000000000000000 +1C017040_0000000000000000 +1C017048_0000000000000000 +1C017050_0000000000000000 +1C017058_0000000000000000 +1C017060_0000000000000000 +1C017068_0000000000000000 +1C017070_0000000000000000 +1C017078_0000000000000000 +1C017080_0000000000000000 +1C017088_0000000000000000 +1C017090_0000000000000000 +1C017098_0000000000000000 +1C0170A0_0000000000000000 +1C0170A8_0000000000000000 +1C0170B0_0000000000000000 +1C0170B8_0000000000000000 +1C0170C0_0000000000000000 +1C0170C8_0000000000000000 +1C0170D0_0000000000000000 +1C0170D8_0000000000000000 +1C0170E0_0000000000000000 +1C0170E8_0000000000000000 +1C0170F0_0000000000000000 +1C0170F8_0000000000000000 +1C017100_0000000000000000 +1C017108_0000000000000000 +1C017110_0000000000000000 +1C017118_0000000000000000 +1C017120_0000000000000000 +1C017128_0000000000000000 +1C017130_0000000000000000 +1C017138_0000000000000000 +1C017140_0000000000000000 +1C017148_0000000000000000 +1C017150_0000000000000000 +1C017158_0000000000000000 +1C017160_0000000000000000 +1C017168_0000000000000000 +1C017170_0000000000000000 +1C017178_0000000000000000 +1C017180_0000000000000000 +1C017188_0000000000000000 +1C017190_0000000000000000 +1C017198_0000000000000000 +1C0171A0_0000000000000000 +1C0171A8_0000000000000000 +1C0171B0_0000000000000000 +1C0171B8_0000000000000000 +1C0171C0_0000000000000000 +1C0171C8_0000000000000000 +1C0171D0_0000000000000000 +1C0171D8_0000000000000000 +1C0171E0_0000000000000000 +1C0171E8_0000000000000000 +1C0171F0_0000000000000000 +1C0171F8_0000000000000000 +1C017200_0000000000000000 +1C017208_0000000000000000 +1C017210_0000000000000000 +1C017218_0000000000000000 +1C017220_0000000000000000 +1C017228_0000000000000000 +1C017230_0000000000000000 +1C017238_0000000000000000 +1C017240_0000000000000000 +1C017248_0000000000000000 +1C017250_0000000000000000 +1C017258_0000000000000000 +1C017260_0000000000000000 +1C017268_0000000000000000 +1C017270_0000000000000000 +1C017278_0000000000000000 +1C017280_0000000000000000 +1C017288_0000000000000000 +1C017290_0000000000000000 +1C017298_0000000000000000 +1C0172A0_0000000000000000 +1C0172A8_0000000000000000 +1C0172B0_0000000000000000 +1C0172B8_0000000000000000 +1C0172C0_0000000000000000 +1C0172C8_0000000000000000 +1C0172D0_0000000000000000 +1C0172D8_0000000000000000 +1C0172E0_0000000000000000 +1C0172E8_0000000000000000 +1C0172F0_0000000000000000 +1C0172F8_0000000000000000 +1C017300_0000000000000000 +1C017308_0000000000000000 +1C017310_0000000000000000 +1C017318_0000000000000000 +1C017320_0000000000000000 +1C017328_0000000000000000 +1C017330_0000000000000000 +1C017338_0000000000000000 +1C017340_0000000000000000 +1C017348_0000000000000000 +1C017350_0000000000000000 +1C017358_0000000000000000 +1C017360_0000000000000000 +1C017368_0000000000000000 +1C017370_0000000000000000 +1C017378_0000000000000000 +1C017380_0000000000000000 +1C017388_0000000000000000 +1C017390_0000000000000000 +1C017398_0000000000000000 +1C0173A0_0000000000000000 +1C0173A8_0000000000000000 +1C0173B0_0000000000000000 +1C0173B8_0000000000000000 +1C0173C0_0000000000000000 +1C0173C8_0000000000000000 +1C0173D0_0000000000000000 +1C0173D8_0000000000000000 +1C0173E0_0000000000000000 +1C0173E8_0000000000000000 +1C0173F0_0000000000000000 +1C0173F8_0000000000000000 +1C017400_0000000000000000 +1C017408_0000000000000000 +1C017410_0000000000000000 +1C017418_0000000000000000 +1C017420_0000000000000000 +1C017428_0000000000000000 +1C017430_0000000000000000 +1C017438_0000000000000000 +1C017440_0000000000000000 +1C017448_0000000000000000 +1C017450_0000000000000000 +1C017458_0000000000000000 +1C017460_0000000000000000 +1C017468_0000000000000000 +1C017470_0000000000000000 +1C017478_0000000000000000 +1C017480_0000000000000000 +1C017488_0000000000000000 +1C017490_0000000000000000 +1C017498_0000000000000000 +1C0174A0_0000000000000000 +1C0174A8_0000000000000000 +1C0174B0_0000000000000000 +1C0174B8_0000000000000000 +1C0174C0_0000000000000000 +1C0174C8_0000000000000000 +1C0174D0_0000000000000000 +1C0174D8_0000000000000000 +1C0174E0_0000000000000000 +1C0174E8_0000000000000000 +1C0174F0_0000000000000000 +1C0174F8_0000000000000000 +1C017500_0000000000000000 +1C017508_0000000000000000 +1C017510_0000000000000000 +1C017518_0000000000000000 +1C017520_0000000000000000 +1C017528_0000000000000000 +1C017530_0000000000000000 +1C017538_0000000000000000 +1C017540_0000000000000000 +1C017548_0000000000000000 +1C017550_0000000000000000 +1C017558_0000000000000000 +1C017560_0000000000000000 +1C017568_0000000000000000 +1C017570_0000000000000000 +1C017578_0000000000000000 +1C017580_0000000000000000 +1C017588_0000000000000000 +1C017590_0000000000000000 +1C017598_0000000000000000 +1C0175A0_0000000000000000 +1C0175A8_0000000000000000 +1C0175B0_0000000000000000 +1C0175B8_0000000000000000 +1C0175C0_0000000000000000 +1C0175C8_0000000000000000 +1C0175D0_0000000000000000 +1C0175D8_0000000000000000 +1C0175E0_0000000000000000 +1C0175E8_0000000000000000 +1C0175F0_0000000000000000 +1C0175F8_0000000000000000 +1C017600_0000000000000000 +1C017608_0000000000000000 +1C017610_0000000000000000 +1C017618_0000000000000000 +1C017620_0000000000000000 +1C017628_0000000000000000 +1C017630_0000000000000000 +1C017638_0000000000000000 +1C017640_0000000000000000 +1C017648_0000000000000000 +1C017650_0000000000000000 +1C017658_0000000000000000 +1C017660_0000000000000000 +1C017668_0000000000000000 +1C017670_0000000000000000 +1C017678_0000000000000000 +1C017680_0000000000000000 +1C017688_0000000000000000 +1C017690_0000000000000000 +1C017698_0000000000000000 +1C0176A0_0000000000000000 +1C0176A8_0000000000000000 +1C0176B0_0000000000000000 +1C0176B8_0000000000000000 +1C0176C0_0000000000000000 +1C0176C8_0000000000000000 +1C0176D0_0000000000000000 +1C0176D8_0000000000000000 +1C0176E0_0000000000000000 +1C0176E8_0000000000000000 +1C0176F0_0000000000000000 +1C0176F8_0000000000000000 +1C017700_0000000000000000 +1C017708_0000000000000000 +1C017710_0000000000000000 +1C017718_0000000000000000 +1C017720_0000000000000000 +1C017728_0000000000000000 +1C017730_0000000000000000 +1C017738_0000000000000000 +1C017740_0000000000000000 +1C017748_0000000000000000 +1C017750_0000000000000000 +1C017758_0000000000000000 +1C017760_0000000000000000 +1C017768_0000000000000000 +1C017770_0000000000000000 +1C017778_0000000000000000 +1C017780_0000000000000000 +1C017788_0000000000000000 +1C017790_0000000000000000 +1C017798_0000000000000000 +1C0177A0_0000000000000000 +1C0177A8_0000000000000000 +1C0177B0_0000000000000000 +1C0177B8_0000000000000000 +1C0177C0_0000000000000000 +1C0177C8_0000000000000000 +1C0177D0_0000000000000000 +1C0177D8_0000000000000000 +1C0177E0_0000000000000000 +1C0177E8_0000000000000000 +1C0177F0_0000000000000000 +1C0177F8_0000000000000000 +1C017800_0000000000000000 +1C017808_0000000000000000 +1C017810_0000000000000000 +1C017818_0000000000000000 +1C017820_0000000000000000 +1C017828_0000000000000000 +1C017830_0000000000000000 +1C017838_0000000000000000 +1C017840_0000000000000000 +1C017848_0000000000000000 +1C017850_0000000000000000 +1C017858_0000000000000000 +1C017860_0000000000000000 +1C017868_0000000000000000 +1C017870_0000000000000000 +1C017878_0000000000000000 +1C017880_0000000000000000 +1C017888_0000000000000000 +1C017890_0000000000000000 +1C017898_0000000000000000 +1C0178A0_0000000000000000 +1C0178A8_0000000000000000 +1C0178B0_0000000000000000 +1C0178B8_0000000000000000 +1C0178C0_0000000000000000 +1C0178C8_0000000000000000 +1C0178D0_0000000000000000 +1C0178D8_0000000000000000 +1C0178E0_0000000000000000 +1C0178E8_0000000000000000 +1C0178F0_0000000000000000 +1C0178F8_0000000000000000 +1C017900_0000000000000000 +1C017908_0000000000000000 +1C017910_0000000000000000 +1C017918_0000000000000000 +1C017920_0000000000000000 +1C017928_0000000000000000 +1C017930_0000000000000000 +1C017938_0000000000000000 +1C017940_0000000000000000 +1C017948_0000000000000000 +1C017950_0000000000000000 +1C017958_0000000000000000 +1C017960_0000000000000000 +1C017968_0000000000000000 +1C017970_0000000000000000 +1C017978_0000000000000000 +1C017980_0000000000000000 +1C017988_0000000000000000 +1C017990_0000000000000000 +1C017998_0000000000000000 +1C0179A0_0000000000000000 +1C0179A8_0000000000000000 +1C0179B0_0000000000000000 +1C0179B8_0000000000000000 +1C0179C0_0000000000000000 +1C0179C8_0000000000000000 +1C0179D0_0000000000000000 +1C0179D8_0000000000000000 +1C0179E0_0000000000000000 +1C0179E8_0000000000000000 +1C0179F0_0000000000000000 +1C0179F8_0000000000000000 +1C017A00_0000000000000000 +1C017A08_0000000000000000 +1C017A10_0000000000000000 +1C017A18_0000000000000000 +1C017A20_0000000000000000 +1C017A28_0000000000000000 +1C017A30_0000000000000000 +1C017A38_0000000000000000 +1C017A40_0000000000000000 +1C017A48_0000000000000000 +1C017A50_0000000000000000 +1C017A58_0000000000000000 +1C017A60_0000000000000000 +1C017A68_0000000000000000 +1C017A70_0000000000000000 +1C017A78_0000000000000000 +1C017A80_0000000000000000 +1C017A88_0000000000000000 +1C017A90_0000000000000000 +1C017A98_0000000000000000 +1C017AA0_0000000000000000 +1C017AA8_0000000000000000 +1C017AB0_0000000000000000 +1C017AB8_0000000000000000 +1C017AC0_0000000000000000 +1C017AC8_0000000000000000 +1C017AD0_0000000000000000 +1C017AD8_0000000000000000 +1C017AE0_0000000000000000 +1C017AE8_0000000000000000 +1C017AF0_0000000000000000 +1C017AF8_0000000000000000 +1C017B00_0000000000000000 +1C017B08_0000000000000000 +1C017B10_0000000000000000 +1C017B18_0000000000000000 +1C017B20_0000000000000000 +1C017B28_0000000000000000 +1C017B30_0000000000000000 +1C017B38_0000000000000000 +1C017B40_0000000000000000 +1C017B48_0000000000000000 +1C017B50_0000000000000000 +1C017B58_0000000000000000 +1C017B60_0000000000000000 +1C017B68_0000000000000000 +1C017B70_0000000000000000 +1C017B78_0000000000000000 +1C017B80_0000000000000000 +1C017B88_0000000000000000 +1C017B90_0000000000000000 +1C017B98_0000000000000000 +1C017BA0_0000000000000000 +1C017BA8_0000000000000000 +1C017BB0_0000000000000000 +1C017BB8_0000000000000000 +1C017BC0_0000000000000000 +1C017BC8_0000000000000000 +1C017BD0_0000000000000000 +1C017BD8_0000000000000000 +1C017BE0_0000000000000000 +1C017BE8_0000000000000000 +1C017BF0_0000000000000000 +1C017BF8_0000000000000000 +1C017C00_0000000000000000 +1C017C08_0000000000000000 +1C017C10_0000000000000000 +1C017C18_0000000000000000 +1C017C20_0000000000000000 +1C017C28_0000000000000000 +1C017C30_0000000000000000 +1C017C38_0000000000000000 +1C017C40_0000000000000000 +1C017C48_0000000000000000 +1C017C50_0000000000000000 +1C017C58_0000000000000000 +1C017C60_0000000000000000 +1C017C68_0000000000000000 +1C017C70_0000000000000000 +1C017C78_0000000000000000 +1C017C80_0000000000000000 +1C017C88_0000000000000000 +1C017C90_0000000000000000 +1C017C98_0000000000000000 +1C017CA0_0000000000000000 +1C017CA8_0000000000000000 +1C017CB0_0000000000000000 +1C017CB8_0000000000000000 +1C017CC0_0000000000000000 +1C017CC8_0000000000000000 +1C017CD0_0000000000000000 +1C017CD8_0000000000000000 +1C017CE0_0000000000000000 +1C017CE8_0000000000000000 +1C017CF0_0000000000000000 +1C017CF8_0000000000000000 +1C017D00_0000000000000000 +1C017D08_0000000000000000 +1C017D10_0000000000000000 +1C017D18_0000000000000000 +1C017D20_0000000000000000 +1C017D28_0000000000000000 +1C017D30_0000000000000000 +1C017D38_0000000000000000 +1C017D40_0000000000000000 +1C017D48_0000000000000000 +1C017D50_0000000000000000 +1C017D58_0000000000000000 +1C017D60_0000000000000000 +1C017D68_0000000000000000 +1C017D70_0000000000000000 +1C017D78_0000000000000000 +1C017D80_0000000000000000 +1C017D88_0000000000000000 +1C017D90_0000000000000000 +1C017D98_0000000000000000 +1C017DA0_0000000000000000 +1C017DA8_0000000000000000 +1C017DB0_0000000000000000 +1C017DB8_0000000000000000 +1C017DC0_0000000000000000 +1C017DC8_0000000000000000 +1C017DD0_0000000000000000 +1C017DD8_0000000000000000 +1C017DE0_0000000000000000 +1C017DE8_0000000000000000 +1C017DF0_0000000000000000 +1C017DF8_0000000000000000 +1C017E00_0000000000000000 +1C017E08_0000000000000000 +1C017E10_0000000000000000 +1C017E18_0000000000000000 +1C017E20_0000000000000000 +1C017E28_0000000000000000 +1C017E30_0000000000000000 +1C017E38_0000000000000000 +1C017E40_0000000000000000 +1C017E48_0000000000000000 +1C017E50_0000000000000000 +1C017E58_0000000000000000 +1C017E60_0000000000000000 +1C017E68_0000000000000000 +1C017E70_0000000000000000 +1C017E78_0000000000000000 +1C017E80_0000000000000000 +1C017E88_0000000000000000 +1C017E90_0000000000000000 +1C017E98_0000000000000000 +1C017EA0_0000000000000000 +1C017EA8_0000000000000000 +1C017EB0_0000000000000000 +1C017EB8_0000000000000000 +1C017EC0_0000000000000000 +1C017EC8_0000000000000000 +1C017ED0_0000000000000000 +1C017ED8_0000000000000000 +1C017EE0_0000000000000000 +1C017EE8_0000000000000000 +1C017EF0_0000000000000000 +1C017EF8_0000000000000000 +1C017F00_0000000000000000 +1C017F08_0000000000000000 +1C017F10_0000000000000000 +1C017F18_0000000000000000 +1C017F20_0000000000000000 +1C017F28_0000000000000000 +1C017F30_0000000000000000 +1C017F38_0000000000000000 +1C017F40_0000000000000000 +1C017F48_0000000000000000 +1C017F50_0000000000000000 +1C017F58_0000000000000000 +1C017F60_0000000000000000 +1C017F68_0000000000000000 +1C017F70_0000000000000000 +1C017F78_0000000000000000 +1C017F80_0000000000000000 +1C017F88_0000000000000000 +1C017F90_0000000000000000 +1C017F98_0000000000000000 +1C017FA0_0000000000000000 +1C017FA8_0000000000000000 +1C017FB0_0000000000000000 +1C017FB8_0000000000000000 +1C017FC0_0000000000000000 +1C017FC8_0000000000000000 +1C017FD0_0000000000000000 +1C017FD8_0000000000000000 +1C017FE0_0000000000000000 +1C017FE8_0000000000000000 +1C017FF0_0000000000000000 +1C017FF8_0000000000000000 +1C018000_0000000000000000 +1C018008_0000000000000000 +1C018010_0000000000000000 +1C018018_0000000000000000 +1C018020_0000000000000000 +1C018028_0000000000000000 +1C018030_0000000000000000 +1C018038_0000000000000000 +1C018040_0000000000000000 +1C018048_0000000000000000 +1C018050_0000000000000000 +1C018058_0000000000000000 +1C018060_0000000000000000 +1C018068_0000000000000000 +1C018070_0000000000000000 +1C018078_0000000000000000 +1C018080_0000000000000000 +1C018088_0000000000000000 +1C018090_0000000000000000 +1C018098_0000000000000000 +1C0180A0_0000000000000000 +1C0180A8_0000000000000000 +1C0180B0_0000000000000000 +1C0180B8_0000000000000000 +1C0180C0_0000000000000000 +1C0180C8_0000000000000000 +1C0180D0_0000000000000000 +1C0180D8_0000000000000000 +1C0180E0_0000000000000000 +1C0180E8_0000000000000000 +1C0180F0_0000000000000000 +1C0180F8_0000000000000000 +1C018100_0000000000000000 +1C018108_0000000000000000 +1C018110_0000000000000000 +1C018118_0000000000000000 +1C018120_0000000000000000 +1C018128_0000000000000000 +1C018130_0000000000000000 +1C018138_0000000000000000 +1C018140_0000000000000000 +1C018148_0000000000000000 +1C018150_0000000000000000 +1C018158_0000000000000000 +1C018160_0000000000000000 +1C018168_0000000000000000 +1C018170_0000000000000000 +1C018178_0000000000000000 +1C018180_0000000000000000 +1C018188_0000000000000000 +1C018190_0000000000000000 +1C018198_0000000000000000 +1C0181A0_0000000000000000 +1C0181A8_0000000000000000 +1C0181B0_0000000000000000 +1C0181B8_0000000000000000 +1C0181C0_0000000000000000 +1C0181C8_0000000000000000 +1C0181D0_0000000000000000 +1C0181D8_0000000000000000 +1C0181E0_0000000000000000 +1C0181E8_0000000000000000 +1C0181F0_0000000000000000 +1C0181F8_0000000000000000 +1C018200_0000000000000000 +1C018208_0000000000000000 +1C018210_0000000000000000 +1C018218_0000000000000000 +1C018220_0000000000000000 +1C018228_0000000000000000 +1C018230_0000000000000000 +1C018238_0000000000000000 +1C018240_0000000000000000 +1C018248_0000000000000000 +1C018250_0000000000000000 +1C018258_0000000000000000 +1C018260_0000000000000000 +1C018268_0000000000000000 +1C018270_0000000000000000 +1C018278_0000000000000000 +1C018280_0000000000000000 +1C018288_0000000000000000 +1C018290_0000000000000000 +1C018298_0000000000000000 +1C0182A0_0000000000000000 +1C0182A8_0000000000000000 +1C0182B0_0000000000000000 +1C0182B8_0000000000000000 +1C0182C0_0000000000000000 +1C0182C8_0000000000000000 +1C0182D0_0000000000000000 +1C0182D8_0000000000000000 +1C0182E0_0000000000000000 +1C0182E8_0000000000000000 +1C0182F0_0000000000000000 +1C0182F8_0000000000000000 +1C018300_0000000000000000 +1C018308_0000000000000000 +1C018310_0000000000000000 +1C018318_0000000000000000 +1C018320_0000000000000000 +1C018328_0000000000000000 +1C018330_0000000000000000 +1C018338_0000000000000000 +1C018340_0000000000000000 +1C018348_0000000000000000 +1C018350_0000000000000000 +1C018358_0000000000000000 +1C018360_0000000000000000 +1C018368_0000000000000000 +1C018370_0000000000000000 +1C018378_0000000000000000 +1C018380_0000000000000000 +1C018388_0000000000000000 +1C018390_0000000000000000 +1C018398_0000000000000000 +1C0183A0_0000000000000000 +1C0183A8_0000000000000000 +1C0183B0_0000000000000000 +1C0183B8_0000000000000000 +1C0183C0_0000000000000000 +1C0183C8_0000000000000000 +1C0183D0_0000000000000000 +1C0183D8_0000000000000000 +1C0183E0_0000000000000000 +1C0183E8_0000000000000000 +1C0183F0_0000000000000000 +1C0183F8_0000000000000000 +1C018400_0000000000000000 +1C018408_0000000000000000 +1C018410_0000000000000000 +1C018418_0000000000000000 +1C018420_0000000000000000 +1C018428_0000000000000000 +1C018430_0000000000000000 +1C018438_0000000000000000 +1C018440_0000000000000000 +1C018448_0000000000000000 +1C018450_0000000000000000 +1C018458_0000000000000000 +1C018460_0000000000000000 +1C018468_0000000000000000 +1C018470_0000000000000000 +1C018478_0000000000000000 +1C018480_0000000000000000 +1C018488_0000000000000000 +1C018490_0000000000000000 +1C018498_0000000000000000 +1C0184A0_0000000000000000 +1C0184A8_0000000000000000 +1C0184B0_0000000000000000 +1C0184B8_0000000000000000 +1C0184C0_0000000000000000 +1C0184C8_0000000000000000 +1C0184D0_0000000000000000 +1C0184D8_0000000000000000 +1C0184E0_0000000000000000 +1C0184E8_0000000000000000 +1C0184F0_0000000000000000 +1C0184F8_0000000000000000 +1C018500_0000000000000000 +1C018508_0000000000000000 +1C018510_0000000000000000 +1C018518_0000000000000000 +1C018520_0000000000000000 +1C018528_0000000000000000 +1C018530_0000000000000000 +1C018538_0000000000000000 +1C018540_0000000000000000 +1C018548_0000000000000000 +1C018550_0000000000000000 +1C018558_0000000000000000 +1C018560_0000000000000000 +1C018568_0000000000000000 +1C018570_0000000000000000 +1C018578_0000000000000000 +1C018580_0000000000000000 +1C018588_0000000000000000 +1C018590_0000000000000000 +1C018598_0000000000000000 +1C0185A0_0000000000000000 +1C0185A8_0000000000000000 +1C0185B0_0000000000000000 +1C0185B8_0000000000000000 +1C0185C0_0000000000000000 +1C0185C8_0000000000000000 +1C0185D0_0000000000000000 +1C0185D8_0000000000000000 +1C0185E0_0000000000000000 +1C0185E8_0000000000000000 +1C0185F0_0000000000000000 +1C0185F8_0000000000000000 +1C018600_0000000000000000 +1C018608_0000000000000000 +1C018610_0000000000000000 +1C018618_0000000000000000 +1C018620_0000000000000000 +1C018628_0000000000000000 +1C018630_0000000000000000 +1C018638_0000000000000000 +1C018640_0000000000000000 +1C018648_0000000000000000 +1C018650_0000000000000000 +1C018658_0000000000000000 +1C018660_0000000000000000 +1C018668_0000000000000000 +1C018670_0000000000000000 +1C018678_0000000000000000 +1C018680_0000000000000000 +1C018688_0000000000000000 +1C018690_0000000000000000 +1C018698_0000000000000000 +1C0186A0_0000000000000000 +1C0186A8_0000000000000000 +1C0186B0_0000000000000000 +1C0186B8_0000000000000000 +1C0186C0_0000000000000000 +1C0186C8_0000000000000000 +1C0186D0_0000000000000000 +1C0186D8_0000000000000000 +1C0186E0_0000000000000000 +1C0186E8_0000000000000000 +1C0186F0_0000000000000000 +1C0186F8_0000000000000000 +1C018700_0000000000000000 +1C018708_0000000000000000 +1C018710_0000000000000000 +1C018718_0000000000000000 +1C018720_0000000000000000 +1C018728_0000000000000000 +1C018730_0000000000000000 +1C018738_0000000000000000 +1C018740_0000000000000000 +1C018748_0000000000000000 +1C018750_0000000000000000 +1C018758_0000000000000000 +1C018760_0000000000000000 +1C018768_0000000000000000 +1C018770_0000000000000000 +1C018778_0000000000000000 +1C018780_0000000000000000 +1C018788_0000000000000000 +1C018790_0000000000000000 +1C018798_0000000000000000 +1C0187A0_0000000000000000 +1C0187A8_0000000000000000 +1C0187B0_0000000000000000 +1C0187B8_0000000000000000 +1C0187C0_0000000000000000 +1C0187C8_0000000000000000 +1C0187D0_0000000000000000 +1C0187D8_0000000000000000 +1C0187E0_0000000000000000 +1C0187E8_0000000000000000 +1C0187F0_0000000000000000 +1C0187F8_0000000000000000 +1C018800_0000000000000000 +1C018808_0000000000000000 +1C018810_0000000000000000 +1C018818_0000000000000000 +1C018820_0000000000000000 +1C018828_0000000000000000 +1C018830_0000000000000000 +1C018838_0000000000000000 +1C018840_0000000000000000 +1C018848_0000000000000000 +1C018850_0000000000000000 +1C018858_0000000000000000 +1C018860_0000000000000000 +1C018868_0000000000000000 +1C018870_0000000000000000 +1C018878_0000000000000000 +1C018880_0000000000000000 +1C018888_0000000000000000 +1C018890_0000000000000000 +1C018898_0000000000000000 +1C0188A0_0000000000000000 +1C0188A8_0000000000000000 +1C0188B0_0000000000000000 +1C0188B8_0000000000000000 +1C0188C0_0000000000000000 +1C0188C8_0000000000000000 +1C0188D0_0000000000000000 +1C0188D8_0000000000000000 +1C0188E0_0000000000000000 +1C0188E8_0000000000000000 +1C0188F0_0000000000000000 +1C0188F8_0000000000000000 +1C018900_0000000000000000 +1C018908_0000000000000000 +1C018910_0000000000000000 +1C018918_0000000000000000 +1C018920_0000000000000000 +1C018928_0000000000000000 +1C018930_0000000000000000 +1C018938_0000000000000000 +1C018940_0000000000000000 +1C018948_0000000000000000 +1C018950_0000000000000000 +1C018958_0000000000000000 +1C018960_0000000000000000 +1C018968_0000000000000000 +1C018970_0000000000000000 +1C018978_0000000000000000 +1C018980_0000000000000000 +1C018988_0000000000000000 +1C018990_0000000000000000 +1C018998_0000000000000000 +1C0189A0_0000000000000000 +1C0189A8_0000000000000000 +1C0189B0_0000000000000000 +1C0189B8_0000000000000000 +1C0189C0_0000000000000000 +1C0189C8_0000000000000000 +1C0189D0_0000000000000000 +1C0189D8_0000000000000000 +1C0189E0_0000000000000000 +1C0189E8_0000000000000000 +1C0189F0_0000000000000000 +1C0189F8_0000000000000000 +1C018A00_0000000000000000 +1C018A08_0000000000000000 +1C018A10_0000000000000000 +1C018A18_0000000000000000 +1C018A20_0000000000000000 +1C018A28_0000000000000000 +1C018A30_0000000000000000 +1C018A38_0000000000000000 +1C018A40_0000000000000000 +1C018A48_0000000000000000 +1C018A50_0000000000000000 +1C018A58_0000000000000000 +1C018A60_0000000000000000 +1C018A68_0000000000000000 +1C018A70_0000000000000000 +1C018A78_0000000000000000 +1C018A80_0000000000000000 +1C018A88_0000000000000000 +1C018A90_0000000000000000 +1C018A98_0000000000000000 +1C018AA0_0000000000000000 +1C018AA8_0000000000000000 +1C018AB0_0000000000000000 +1C018AB8_0000000000000000 +1C018AC0_0000000000000000 +1C018AC8_0000000000000000 +1C018AD0_0000000000000000 +1C018AD8_0000000000000000 +1C018AE0_0000000000000000 +1C018AE8_0000000000000000 +1C018AF0_0000000000000000 +1C018AF8_0000000000000000 +1C018B00_0000000000000000 +1C018B08_0000000000000000 +1C018B10_0000000000000000 +1C018B18_0000000000000000 +1C018B20_0000000000000000 +1C018B28_0000000000000000 +1C018B30_0000000000000000 +1C018B38_0000000000000000 +1C018B40_0000000000000000 +1C018B48_0000000000000000 +1C018B50_0000000000000000 +1C018B58_0000000000000000 +1C018B60_0000000000000000 +1C018B68_0000000000000000 +1C018B70_0000000000000000 +1C018B78_0000000000000000 +1C018B80_0000000000000000 +1C018B88_0000000000000000 +1C018B90_0000000000000000 +1C018B98_0000000000000000 +1C018BA0_0000000000000000 +1C018BA8_0000000000000000 +1C018BB0_0000000000000000 +1C018BB8_0000000000000000 +1C018BC0_0000000000000000 +1C018BC8_0000000000000000 +1C018BD0_0000000000000000 +1C018BD8_0000000000000000 +1C018BE0_0000000000000000 +1C018BE8_0000000000000000 +1C018BF0_0000000000000000 +1C018BF8_0000000000000000 +1C018C00_0000000000000000 +1C018C08_0000000000000000 +1C018C10_0000000000000000 +1C018C18_0000000000000000 +1C018C20_0000000000000000 +1C018C28_0000000000000000 +1C018C30_0000000000000000 +1C018C38_0000000000000000 +1C018C40_0000000000000000 +1C018C48_0000000000000000 +1C018C50_0000000000000000 +1C018C58_0000000000000000 +1C018C60_0000000000000000 +1C018C68_0000000000000000 +1C018C70_0000000000000000 +1C018C78_0000000000000000 +1C018C80_0000000000000000 +1C018C88_0000000000000000 +1C018C90_0000000000000000 +1C018C98_0000000000000000 +1C018CA0_0000000000000000 +1C018CA8_0000000000000000 +1C018CB0_0000000000000000 +1C018CB8_0000000000000000 +1C018CC0_0000000000000000 +1C018CC8_0000000000000000 +1C018CD0_0000000000000000 +1C018CD8_0000000000000000 +1C018CE0_0000000000000000 +1C018CE8_0000000000000000 +1C018CF0_0000000000000000 +1C018CF8_0000000000000000 +1C018D00_0000000000000000 +1C018D08_0000000000000000 +1C018D10_0000000000000000 +1C018D18_0000000000000000 +1C018D20_0000000000000000 +1C018D28_0000000000000000 +1C018D30_0000000000000000 +1C018D38_0000000000000000 +1C018D40_0000000000000000 +1C018D48_0000000000000000 +1C018D50_0000000000000000 +1C018D58_0000000000000000 +1C018D60_0000000000000000 +1C018D68_0000000000000000 +1C018D70_0000000000000000 +1C018D78_0000000000000000 +1C018D80_0000000000000000 +1C018D88_0000000000000000 +1C018D90_0000000000000000 +1C018D98_0000000000000000 +1C018DA0_0000000000000000 +1C018DA8_0000000000000000 +1C018DB0_0000000000000000 +1C018DB8_0000000000000000 +1C018DC0_0000000000000000 +1C018DC8_0000000000000000 +1C018DD0_0000000000000000 +1C018DD8_0000000000000000 +1C018DE0_0000000000000000 +1C018DE8_0000000000000000 +1C018DF0_0000000000000000 +1C018DF8_0000000000000000 +1C018E00_0000000000000000 +1C018E08_0000000000000000 +1C018E10_0000000000000000 +1C018E18_0000000000000000 +1C018E20_0000000000000000 +1C018E28_0000000000000000 +1C018E30_0000000000000000 +1C018E38_0000000000000000 +1C018E40_0000000000000000 +1C018E48_0000000000000000 +1C018E50_0000000000000000 +1C018E58_0000000000000000 +1C018E60_0000000000000000 +1C018E68_0000000000000000 +1C018E70_0000000000000000 +1C018E78_0000000000000000 +1C018E80_0000000000000000 +1C018E88_0000000000000000 +1C018E90_0000000000000000 +1C018E98_0000000000000000 +1C018EA0_0000000000000000 +1C018EA8_0000000000000000 +1C018EB0_0000000000000000 +1C018EB8_0000000000000000 +1C018EC0_0000000000000000 +1C018EC8_0000000000000000 +1C018ED0_0000000000000000 +1C018ED8_0000000000000000 +1C018EE0_0000000000000000 +1C018EE8_0000000000000000 +1C018EF0_0000000000000000 +1C018EF8_0000000000000000 +1C018F00_0000000000000000 +1C018F08_0000000000000000 +1C018F10_0000000000000000 +1C018F18_0000000000000000 +1C018F20_0000000000000000 +1C018F28_0000000000000000 +1C018F30_0000000000000000 +1C018F38_0000000000000000 +1C018F40_0000000000000000 +1C018F48_0000000000000000 +1C018F50_0000000000000000 +1C018F58_0000000000000000 +1C018F60_0000000000000000 +1C018F68_0000000000000000 +1C018F70_0000000000000000 +1C018F78_0000000000000000 +1C018F80_0000000000000000 +1C018F88_0000000000000000 +1C018F90_0000000000000000 +1C018F98_0000000000000000 +1C018FA0_0000000000000000 +1C018FA8_0000000000000000 +1C018FB0_0000000000000000 +1C018FB8_0000000000000000 +1C018FC0_0000000000000000 +1C018FC8_0000000000000000 +1C018FD0_0000000000000000 +1C018FD8_0000000000000000 +1C018FE0_0000000000000000 +1C018FE8_0000000000000000 +1C018FF0_0000000000000000 +1C018FF8_0000000000000000 +1C019000_0000000000000000 +1C019008_0000000000000000 +1C019010_0000000000000000 +1C019018_0000000000000000 +1C019020_0000000000000000 +1C019028_0000000000000000 +1C019030_0000000000000000 +1C019038_0000000000000000 +1C019040_0000000000000000 +1C019048_0000000000000000 +1C019050_0000000000000000 +1C019058_0000000000000000 +1C019060_0000000000000000 +1C019068_0000000000000000 +1C019070_0000000000000000 +1C019078_0000000000000000 +1C019080_0000000000000000 +1C019088_0000000000000000 +1C019090_0000000000000000 +1C019098_0000000000000000 +1C0190A0_0000000000000000 +1C0190A8_0000000000000000 +1C0190B0_0000000000000000 +1C0190B8_0000000000000000 +1C0190C0_0000000000000000 +1C0190C8_0000000000000000 +1C0190D0_0000000000000000 +1C0190D8_0000000000000000 +1C0190E0_0000000000000000 +1C0190E8_0000000000000000 +1C0190F0_0000000000000000 +1C0190F8_0000000000000000 +1C019100_0000000000000000 +1C019108_0000000000000000 +1C019110_0000000000000000 +1C019118_0000000000000000 +1C019120_0000000000000000 +1C019128_0000000000000000 +1C019130_0000000000000000 +1C019138_0000000000000000 +1C019140_0000000000000000 +1C019148_0000000000000000 +1C019150_0000000000000000 +1C019158_0000000000000000 +1C019160_0000000000000000 +1C019168_0000000000000000 +1C019170_0000000000000000 +1C019178_0000000000000000 +1C019180_0000000000000000 +1C019188_0000000000000000 +1C019190_0000000000000000 +1C019198_0000000000000000 +1C0191A0_0000000000000000 +1C0191A8_0000000000000000 +1C0191B0_0000000000000000 +1C0191B8_0000000000000000 +1C0191C0_0000000000000000 +1C0191C8_0000000000000000 +1C0191D0_0000000000000000 +1C0191D8_0000000000000000 +1C0191E0_0000000000000000 +1C0191E8_0000000000000000 +1C0191F0_0000000000000000 +1C0191F8_0000000000000000 +1C019200_0000000000000000 +1C019208_0000000000000000 +1C019210_0000000000000000 +1C019218_0000000000000000 +1C019220_0000000000000000 +1C019228_0000000000000000 +1C019230_0000000000000000 +1C019238_0000000000000000 +1C019240_0000000000000000 +1C019248_0000000000000000 +1C019250_0000000000000000 +1C019258_0000000000000000 +1C019260_0000000000000000 +1C019268_0000000000000000 +1C019270_0000000000000000 +1C019278_0000000000000000 +1C019280_0000000000000000 +1C019288_0000000000000000 +1C019290_0000000000000000 +1C019298_0000000000000000 +1C0192A0_0000000000000000 +1C0192A8_0000000000000000 +1C0192B0_0000000000000000 +1C0192B8_0000000000000000 +1C0192C0_0000000000000000 +1C0192C8_0000000000000000 +1C0192D0_0000000000000000 +1C0192D8_0000000000000000 +1C0192E0_0000000000000000 +1C0192E8_0000000000000000 +1C0192F0_0000000000000000 +1C0192F8_0000000000000000 +1C019300_0000000000000000 +1C019308_0000000000000000 +1C019310_0000000000000000 +1C019318_0000000000000000 +1C019320_0000000000000000 +1C019328_0000000000000000 +1C019330_0000000000000000 +1C019338_0000000000000000 +1C019340_0000000000000000 +1C019348_0000000000000000 +1C019350_0000000000000000 +1C019358_0000000000000000 +1C019360_0000000000000000 +1C019368_0000000000000000 +1C019370_0000000000000000 +1C019378_0000000000000000 +1C019380_0000000000000000 +1C019388_0000000000000000 +1C019390_0000000000000000 +1C019398_0000000000000000 +1C0193A0_0000000000000000 +1C0193A8_0000000000000000 +1C0193B0_0000000000000000 +1C0193B8_0000000000000000 +1C0193C0_0000000000000000 +1C0193C8_0000000000000000 +1C0193D0_0000000000000000 +1C0193D8_0000000000000000 +1C0193E0_0000000000000000 +1C0193E8_0000000000000000 +1C0193F0_0000000000000000 +1C0193F8_0000000000000000 +1C019400_0000000000000000 +1C019408_0000000000000000 +1C019410_0000000000000000 +1C019418_0000000000000000 +1C019420_0000000000000000 +1C019428_0000000000000000 +1C019430_0000000000000000 +1C019438_0000000000000000 +1C019440_0000000000000000 +1C019448_0000000000000000 +1C019450_0000000000000000 +1C019458_0000000000000000 +1C019460_0000000000000000 +1C019468_0000000000000000 +1C019470_0000000000000000 +1C019478_0000000000000000 +1C019480_0000000000000000 +1C019488_0000000000000000 +1C019490_0000000000000000 +1C019498_0000000000000000 +1C0194A0_0000000000000000 +1C0194A8_0000000000000000 +1C0194B0_0000000000000000 +1C0194B8_0000000000000000 +1C0194C0_0000000000000000 +1C0194C8_0000000000000000 +1C0194D0_0000000000000000 +1C0194D8_0000000000000000 +1C0194E0_0000000000000000 +1C0194E8_0000000000000000 +1C0194F0_0000000000000000 +1C0194F8_0000000000000000 +1C019500_0000000000000000 +1C019508_0000000000000000 +1C019510_0000000000000000 +1C019518_0000000000000000 +1C019520_0000000000000000 +1C019528_0000000000000000 +1C019530_0000000000000000 +1C019538_0000000000000000 +1C019540_0000000000000000 +1C019548_0000000000000000 +1C019550_0000000000000000 +1C019558_0000000000000000 +1C019560_0000000000000000 +1C019568_0000000000000000 +1C019570_0000000000000000 +1C019578_0000000000000000 +1C019580_0000000000000000 +1C019588_0000000000000000 +1C019590_0000000000000000 +1C019598_0000000000000000 +1C0195A0_0000000000000000 +1C0195A8_0000000000000000 +1C0195B0_0000000000000000 +1C0195B8_0000000000000000 +1C0195C0_0000000000000000 +1C0195C8_0000000000000000 +1C0195D0_0000000000000000 +1C0195D8_0000000000000000 +1C0195E0_0000000000000000 +1C0195E8_0000000000000000 +1C0195F0_0000000000000000 +1C0195F8_0000000000000000 +1C019600_0000000000000000 +1C019608_0000000000000000 +1C019610_0000000000000000 +1C019618_0000000000000000 +1C019620_0000000000000000 +1C019628_0000000000000000 +1C019630_0000000000000000 +1C019638_0000000000000000 +1C019640_0000000000000000 +1C019648_0000000000000000 +1C019650_0000000000000000 +1C019658_0000000000000000 +1C019660_0000000000000000 +1C019668_0000000000000000 +1C019670_0000000000000000 +1C019678_0000000000000000 +1C019680_0000000000000000 +1C019688_0000000000000000 +1C019690_0000000000000000 +1C019698_0000000000000000 +1C0196A0_0000000000000000 +1C0196A8_0000000000000000 +1C0196B0_0000000000000000 +1C0196B8_0000000000000000 +1C0196C0_0000000000000000 +1C0196C8_0000000000000000 +1C0196D0_0000000000000000 +1C0196D8_0000000000000000 +1C0196E0_0000000000000000 +1C0196E8_0000000000000000 +1C0196F0_0000000000000000 +1C0196F8_0000000000000000 +1C019700_0000000000000000 +1C019708_0000000000000000 +1C019710_0000000000000000 +1C019718_0000000000000000 +1C019720_0000000000000000 +1C019728_0000000000000000 +1C019730_0000000000000000 +1C019738_0000000000000000 +1C019740_0000000000000000 +1C019748_0000000000000000 +1C019750_0000000000000000 +1C019758_0000000000000000 +1C019760_0000000000000000 +1C019768_0000000000000000 +1C019770_0000000000000000 +1C019778_0000000000000000 +1C019780_0000000000000000 +1C019788_0000000000000000 +1C019790_0000000000000000 +1C019798_0000000000000000 +1C0197A0_0000000000000000 +1C0197A8_0000000000000000 +1C0197B0_0000000000000000 +1C0197B8_0000000000000000 +1C0197C0_0000000000000000 +1C0197C8_0000000000000000 +1C0197D0_0000000000000000 +1C0197D8_0000000000000000 +1C0197E0_0000000000000000 +1C0197E8_0000000000000000 +1C0197F0_0000000000000000 +1C0197F8_0000000000000000 +1C019800_0000000000000000 +1C019808_0000000000000000 +1C019810_0000000000000000 +1C019818_0000000000000000 +1C019820_0000000000000000 +1C019828_0000000000000000 +1C019830_0000000000000000 +1C019838_0000000000000000 +1C019840_0000000000000000 +1C019848_0000000000000000 +1C019850_0000000000000000 +1C019858_0000000000000000 +1C019860_0000000000000000 +1C019868_0000000000000000 +1C019870_0000000000000000 +1C019878_0000000000000000 +1C019880_0000000000000000 +1C019888_0000000000000000 +1C019890_0000000000000000 +1C019898_0000000000000000 +1C0198A0_0000000000000000 +1C0198A8_0000000000000000 +1C0198B0_0000000000000000 +1C0198B8_0000000000000000 +1C0198C0_0000000000000000 +1C0198C8_0000000000000000 +1C0198D0_0000000000000000 +1C0198D8_0000000000000000 +1C0198E0_0000000000000000 +1C0198E8_0000000000000000 +1C0198F0_0000000000000000 +1C0198F8_0000000000000000 +1C019900_0000000000000000 +1C019908_0000000000000000 +1C019910_0000000000000000 +1C019918_0000000000000000 +1C019920_0000000000000000 +1C019928_0000000000000000 +1C019930_0000000000000000 +1C019938_0000000000000000 +1C019940_0000000000000000 +1C019948_0000000000000000 +1C019950_0000000000000000 +1C019958_0000000000000000 +1C019960_0000000000000000 +1C019968_0000000000000000 +1C019970_0000000000000000 +1C019978_0000000000000000 +1C019980_0000000000000000 +1C019988_0000000000000000 +1C019990_0000000000000000 +1C019998_0000000000000000 +1C0199A0_0000000000000000 +1C0199A8_0000000000000000 +1C0199B0_0000000000000000 +1C0199B8_0000000000000000 +1C0199C8_0000000000000000 diff --git a/tests/spim_flash_async/test_spi_async.c b/tests/spim_flash_async/test_spi_async.c index 82d51bc2..a5eaf05c 100644 --- a/tests/spim_flash_async/test_spi_async.c +++ b/tests/spim_flash_async/test_spi_async.c @@ -17,35 +17,59 @@ * SPDX-License-Identifier: Apache-2.0 * Author: Germain Hagou * Robert Balas (balasr@iis.ee.ethz.ch) + * nico.orlando@studio.unibo.it */ /* * Test if we can write to spi using pmsis */ - +#ifdef USE_PULPOS_TEST #include "pmsis.h" #include -#ifdef USE_FREERTOS - #include "system.h" #endif -#if !defined(SYNC_CS_AUTO) && !defined(ASYNC_CS_AUTO) && \ +#ifdef USE_FREERTOS_TEST +/* FreeRTOS kernel includes. */ +#include +#include + +/* c stdlib */ +#include +#include +#include +#include +#include +#include +/* pmsis */ +#include "target.h" +#include "pmsis_types.h" +#include "os.h" +#include "implementation_specific_defines.h" +/* system includes */ +#include "system.h" +#include "timer_irq.h" +#include "fll.h" +#include "irq.h" +#include "gpio.h" +#include "/scratch/norlando/pulp-open/pulp-sdk/rtos/pmsis/pmsis_api/include/pmsis/drivers/spi.h" +#include "abstraction_layer_spi.h" +#endif + + +#if !defined(SYNC_CS_AUTO) && !defined(ASYNC_CS_AUTO) && \ !defined(SYNC_CS_KEEP) && !defined(ASYNC_CS_KEEP) #define ASYNC_CS_AUTO 1 #endif //#define DEBUG 1 -/** + #ifdef DEBUG #define DEBUG_PRINTF printf #define DBG_PRINTF printf #else #define DEBUG_PRINTF(...) ((void)0) - #define DBG_PRINTF(...) ((void)0) - #endif -*/ -#define DEBUG_PRINTF(...) ((void)0) -#define DBG_PRINTF(...) ((void)0) + #define DBG_PRINTF(...) ((void)0) + #endif /* DEBUG */ #define TOTAL_SIZE (256) //#define TOTAL_SIZE (8192*8 + 256) @@ -54,14 +78,14 @@ #define NB_BUFFERS 1 // S25FL256S Instruction Set -#define CMD_WRR 0x01 // Write REG 1 -#define CMD_RDID 0x9F // Read ID (JEDEC Manufacturer & JEDEC CFI -#define CMD_RDSR1 0x05 // Read status register-1 -#define CMD_WREN 0x06 // Write enable -#define CMD_4P4E 0x21 // 4KB Erase -#define CMD_4PP 0x12 // Page program (4 bytes address) -#define CMD_4QPP 0x34 // Page program QSPI (4 bytes address) -#define CMD_4READ 0x13 // Read (4 bytes address) +#define CMD_WRR 0x01 // Write REG 1 +#define CMD_RDID 0x9F // Read ID (JEDEC Manufacturer & JEDEC CFI +#define CMD_RDSR1 0x05 // Read status register-1 +#define CMD_WREN 0x06 // Write enable +#define CMD_4P4E 0x21 // 4KB Erase +#define CMD_4PP 0x12 // Page program (4 bytes address) +#define CMD_4QPP 0x34 // Page program QSPI (4 bytes address) +#define CMD_4READ 0x13 // Read (4 bytes address) #define CMD_4QOREAD 0x6C // Read QSPI(4 bytes address) #define ID_CFI_SIZE 10 @@ -71,12 +95,9 @@ static inline void get_info(int *buffer_size) #if !defined(PI_PLATFORM_RTL) *buffer_size = TOTAL_SIZE; #else - if (pi_platform() == PI_PLATFORM_RTL) - { + if (pi_platform() == PI_PLATFORM_RTL) { *buffer_size = TOTAL_SIZE_RTL; - } - else - { + } else { *buffer_size = TOTAL_SIZE; } #endif @@ -97,8 +118,8 @@ static pi_task_t cmd_event[NB_BUFFERS]; static pi_task_t rx_cmd_event[NB_BUFFERS]; static void set_spim_verif_command(struct pi_device *spim, int cmd, int addr, - int size, int32_t *cmd_buffer, - pi_task_t *task) + int size, int32_t *cmd_buffer, + pi_task_t *task) { /* ** The command moves it to the first 8 bits, and to the last 8 it puts @@ -109,13 +130,13 @@ static void set_spim_verif_command(struct pi_device *spim, int cmd, int addr, cmd_buffer[1] = addr; DBG_PRINTF("%s:%s:%d cmd_buffer[0] = 0x%x)\n", __FILE__, __func__, - __LINE__, cmd_buffer[0]); + __LINE__, cmd_buffer[0]); DBG_PRINTF("%s:%s:%d cmd_buffer[1] = 0x%x)\n", __FILE__, __func__, - __LINE__, cmd_buffer[1]); + __LINE__, cmd_buffer[1]); if (task) pi_spi_send_async(spim, cmd_buffer, 8 * 8, PI_SPI_CS_AUTO, - task); + task); else pi_spi_send(spim, cmd_buffer, 8 * 8, PI_SPI_CS_AUTO); } @@ -155,76 +176,75 @@ static int test_entry() if (rx_buffer_1 == NULL) return -1; + printf("malloc rx buffer 2\n"); + rx_buffer_2 = pmsis_l2_malloc(total_size); + if (rx_buffer_2 == NULL) + return -1; + printf("tx buffer init\n"); - for (int i = 0; i < total_size; i++) - { + for (int i = 0; i < total_size; i++) { tx_buffer[i] = i; } uint8_t cmd = CMD_WREN; - - pi_task_t event_wren_1; - pi_task_t event_4pp_1; - pi_task_t event_tx_1; - pi_task_t event_wip_write_1; - pi_task_t event_wip_read_1; - pi_task_t event_4read_1; - pi_task_t event_rx_1; - + pi_task_t event_wren_1; + pi_task_t event_4pp_1; + pi_task_t event_tx_1; + pi_task_t event_wip_write_1; + pi_task_t event_wip_read_1; + pi_task_t event_4read_1; + pi_task_t event_rx_1; printf("async cs auto\n"); - for (int i = 0; i < NB_BUFFERS; i++) - { - // Set write enabled - cmd = CMD_WREN; - pi_spi_send_async(&spim0, &cmd, (1 * 8), PI_SPI_CS_AUTO, pi_task_block(&event_wren_1)); - // send page address - add_buffer[0] = CMD_4PP; - pi_spi_send_async(&spim0, add_buffer, (sizeof(add_buffer) * 8), PI_SPI_CS_KEEP, pi_task_block(&event_4pp_1)); - // send data - pi_spi_send_async(&spim0, tx_buffer + buffer_size * i, (buffer_size * 8), PI_SPI_CS_AUTO, pi_task_block(&event_tx_1)); - // wait until program operation is in progress - DBG_PRINTF("%s:%s:%d ...start -> wip read...\n", __FILE__, __func__, __LINE__); - cmd = CMD_RDSR1; // command to read status register 1 - volatile uint8_t status = 0xFF; - do - { - pi_spi_send_async(&spim0, &cmd, (1 * 8), PI_SPI_CS_KEEP, pi_task_block(&event_wip_write_1)); - pi_task_wait_on(&event_wip_write_1); - pi_spi_receive_async(&spim0, &status, (1 * 8), PI_SPI_CS_AUTO, pi_task_block(&event_wip_read_1)); - pi_task_wait_on(&event_wip_read_1); - status &= (1); - printf("WIP Register: %d\n", status); - } while (status != 0); + for (int i = 0; i < NB_BUFFERS; i++) { + + // Set write enabled + cmd = CMD_WREN; + pi_spi_send_async(&spim0, &cmd, (1*8), PI_SPI_CS_AUTO, pi_task_block(&event_wren_1)); + // send page address + add_buffer[0] = CMD_4PP; + pi_spi_send_async(&spim0, add_buffer, (sizeof(add_buffer)*8), PI_SPI_CS_KEEP, pi_task_block(&event_4pp_1)); + // send data + pi_spi_send_async(&spim0, tx_buffer + buffer_size * i, (buffer_size*8), PI_SPI_CS_AUTO, pi_task_block(&event_tx_1)); + // wait until program operation is in progress + DBG_PRINTF("%s:%s:%d ...start -> wip read...\n", __FILE__, __func__, __LINE__); + cmd = CMD_RDSR1; // command to read status register 1 + volatile uint8_t status = 0xFF; + do + { + pi_spi_send(&spim0, &cmd, (1*8), PI_SPI_CS_KEEP); + pi_spi_receive(&spim0, &status, (1*8), PI_SPI_CS_AUTO); + printf("WIP Register: %d\n", status); + + } while ((status & 0x01) != 0);// flash is buzy if status != 0 + //printf("WIP Register: %d\n", status); // send page address - add_buffer[0] = CMD_4READ; - - pi_spi_send_async(&spim0, add_buffer, (sizeof(add_buffer) * 8), PI_SPI_CS_KEEP, pi_task_block(&event_4read_1)); - pi_spi_receive_async(&spim0, rx_buffer_1 + buffer_size * i, (buffer_size * 8), PI_SPI_CS_AUTO, pi_task_block(&event_rx_1)); + add_buffer[0] = CMD_4READ; + pi_spi_send_async(&spim0, add_buffer, (sizeof(add_buffer)*8), PI_SPI_CS_KEEP, pi_task_block(&event_4read_1)); + pi_spi_receive_async(&spim0, rx_buffer_1 + buffer_size * i, (buffer_size*8), PI_SPI_CS_AUTO, pi_task_block(&event_rx_1)); } - pi_task_wait_on(&event_4read_1); - pi_task_wait_on(&event_rx_1); + + pi_task_wait_on(&event_wren_1); + pi_task_wait_on(&event_4pp_1); + pi_task_wait_on(&event_tx_1); + pi_task_wait_on(&event_4read_1); + pi_task_wait_on(&event_rx_1); printf("starting error check\n"); int error = 0; - for (int i = 0; i < total_size; i++) - { - if (rx_buffer_1[i] != tx_buffer[i] && rx_buffer_2[i] != tx_buffer[i]) - { + for (int i = 0; i < total_size; i++) { + if (rx_buffer_1[i] != tx_buffer[i] && rx_buffer_2[i] != tx_buffer[i]) { if (error == 0) printf("First error at index %d, expected 0x%x, got 0x%x at %p\n", - i, tx_buffer[i], rx_buffer_1[i], - &rx_buffer_1[i]); + i, tx_buffer[i], rx_buffer_1[i], + &rx_buffer_1[i]); error++; return -1; } } - if (error) - { + if (error) { printf("Got %d errors\n", error); - } - else - { + } else { printf("Test success\n"); } pi_spi_close(&spim0); @@ -240,9 +260,17 @@ static void test_kickoff(void *arg) /* Program Entry. */ int main(void) { -#ifdef USE_FREERTOS + #ifdef USE_FREERTOS_TEST + /* Init board hardware. */ system_init(); -#endif - printf("\n\n\t *** Pulp-SDK Hello World *** \n\n"); + printf("\n\n\t *** FreeRTOS Hello World *** \n\n"); + #endif + +#ifdef USE_PULPOS_TEST + printf("\n\n\t *** Pulp OS Hello World *** \n\n"); + #endif + return pmsis_kickoff((void *)test_kickoff); } + + diff --git a/tests/spim_flash_async/test_spi_async.o b/tests/spim_flash_async/test_spi_async.o new file mode 100644 index 0000000000000000000000000000000000000000..fcf173030404879bff4981513f5574d35cbf7ede GIT binary patch literal 270368 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 z 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 Date: Tue, 11 Jan 2022 18:47:49 +0100 Subject: [PATCH 67/86] rtos: added folders for abstraction layer spi --- .../include/abstraction_layer_spi.h | 68 ++ .../src/abstraction_layer_spi.c | 729 ++++++++++++++++++ .../src/abstraction_layer_spi.o | Bin 0 -> 306092 bytes .../include/abstraction_layer_spi.h | 68 ++ .../src/abstraction_layer_spi.c | 691 +++++++++++++++++ .../common_file_spi/src/common_spi.o | Bin 0 -> 236436 bytes .../common/rules/pulpos/default_rules.mk | 52 +- rtos/pulpos/common/rules/pulpos/src.mk | 6 +- rtos/pulpos/pulp/drivers/spim/spim-v3.c | 12 - tests/spim_flash_async/Makefile | 6 +- 10 files changed, 1567 insertions(+), 65 deletions(-) create mode 100644 rtos/common_function/abstraction_layer_spi_freertos/include/abstraction_layer_spi.h create mode 100644 rtos/common_function/abstraction_layer_spi_freertos/src/abstraction_layer_spi.c create mode 100644 rtos/common_function/abstraction_layer_spi_freertos/src/abstraction_layer_spi.o create mode 100644 rtos/common_function/abstraction_layer_spi_pulpos/include/abstraction_layer_spi.h create mode 100644 rtos/common_function/abstraction_layer_spi_pulpos/src/abstraction_layer_spi.c create mode 100644 rtos/common_function/common_file_spi/src/common_spi.o diff --git a/rtos/common_function/abstraction_layer_spi_freertos/include/abstraction_layer_spi.h b/rtos/common_function/abstraction_layer_spi_freertos/include/abstraction_layer_spi.h new file mode 100644 index 00000000..6b828d50 --- /dev/null +++ b/rtos/common_function/abstraction_layer_spi_freertos/include/abstraction_layer_spi.h @@ -0,0 +1,68 @@ +/* + * Copyright 2020 GreenWaves Technologies + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +/**----------------------------------------------------------------------------------------------------------------------- + * ? ABOUT + * @author : Orlando Nico, GreenWaves Technologies, Robert Balas + * @email : nico.orlando@studio.unibo.it, balasr@iis.ee.ethz.ch + * @repo : pulp-sdk/?/abstraction_layer_spi_freertos + * @createdOn : 29/12/2021 + * @description : Abstraction Layer SPI for FreeRTOS + *-----------------------------------------------------------------------------------------------------------------------**/ + +/**================================================================================================ + ** INCLUDE + *================================================================================================**/ +#include "common_spi.h" + +/**================================================================================================ + ** DEFINE + *================================================================================================**/ +#define UDMA_CORE_TX_CFG_EN(val) \ + (((uint32_t)(((uint32_t)(val)) << UDMA_CORE_TX_CFG_EN_SHIFT)) & UDMA_CORE_TX_CFG_EN_MASK) +#define UDMA_CORE_TX_CFG_DATASIZE(val) \ + (((uint32_t)(((uint32_t)(val)) << UDMA_CORE_TX_CFG_DATASIZE_SHIFT)) & \ + UDMA_CORE_TX_CFG_DATASIZE_MASK) +#define SPIM_CS_DATA_GET_DRV_DATA(cs_data) (cs_data->drv_data) + +/**================================================================================================ + ** STRUCT + *================================================================================================**/ + + + +/**================================================================================================ + ** PROTOTYPE FUNCTION + *================================================================================================**/ +void spim_eot_handler(void *arg); +void spim_tx_handler(void *arg); +void spim_rx_handler(void *arg); +int __pi_spi_open(struct spim_cs_data **cs_data, struct pi_spi_conf *conf); +void __pi_spi_close(struct spim_cs_data *cs_data, struct pi_spi_conf *conf); +void __pi_spim_exec_next_transfer(pi_task_t *task); +void __pi_spi_send_async(struct spim_cs_data *cs_data, void *data, size_t len, pi_spi_flags_e flags, pi_task_t *task); +void __pi_spi_receive_async(struct spim_cs_data *cs_data, void *data, size_t len, pi_spi_flags_e flags, pi_task_t *task); +void __pi_spi_xfer_async(struct spim_cs_data *cs_data, void *tx_data, void *rx_data, size_t len, pi_spi_flags_e flags, pi_task_t *task); +void __pi_spi_receive_async_with_ucode(struct spim_cs_data *cs_data, void *data, size_t len, pi_spi_flags_e flags, int ucode_size, void *ucode, pi_task_t *task); +void __pi_spi_send_async_with_ucode(struct spim_cs_data *cs_data, void *data, size_t len, pi_spi_flags_e flags, int ucode_size, void *ucode, pi_task_t *task); +void __spim_execute_callback(void *arg); +void system_core_clock_update(void); +uint32_t system_core_clock_get(void); +void vApplicationMallocFailedHook(void); +void vApplicationStackOverflowHook(TaskHandle_t pxTask, char *pcTaskName); +void system_init(void); \ No newline at end of file diff --git a/rtos/common_function/abstraction_layer_spi_freertos/src/abstraction_layer_spi.c b/rtos/common_function/abstraction_layer_spi_freertos/src/abstraction_layer_spi.c new file mode 100644 index 00000000..d7eb13dd --- /dev/null +++ b/rtos/common_function/abstraction_layer_spi_freertos/src/abstraction_layer_spi.c @@ -0,0 +1,729 @@ +/* + * Copyright 2020 GreenWaves Technologies + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +/**----------------------------------------------------------------------------------------------------------------------- + * ? ABOUT + * @author : Orlando Nico, GreenWaves Technologies, Robert Balas + * @email : nico.orlando@studio.unibo.it, balasr@iis.ee.ethz.ch + * @repo : pulp-sdk/?/abstraction_layer_spi_freertos + * @createdOn : 29/12/2021 + * @description : Abstraction Layer SPI for FreeRTOS + *-----------------------------------------------------------------------------------------------------------------------**/ + +/**================================================================================================ + ** INCLUDE + *================================================================================================**/ +#include "abstraction_layer_spi.h" + +/**================================================================================================ + ** GLOBAL VARIABLE + *================================================================================================**/ +struct spim_driver_data *__g_spim_drv_data[UDMA_NB_SPIM] = {0}; + +/**================================================================================================ + ** FUNCTION + *================================================================================================**/ +void __pi_spi_receive_async(struct spim_cs_data *cs_data, void *data, size_t len, + pi_spi_flags_e flags, pi_task_t *task) +{ + DBG_PRINTF("...start -> __pi_spi_receive_async...\n"); + // SPIM_CS_DATA_GET_DRV_DATA(cs_data) = (cs_data->drv_data) + struct spim_driver_data *drv_data = SPIM_CS_DATA_GET_DRV_DATA(cs_data); + int qspi = (flags & (0x3 << 2)) == PI_SPI_LINES_QUAD; + // Choose the type of cs mode, see enum "pi_spi_flags_e" to understand better. + int cs_mode = (flags >> 0) & 0x3; + + int device_id = drv_data->device_id; + uint32_t cfg = cs_data->cfg; + DBG_PRINTF("%s:%s:%d: core clock:%" PRIu32 ", baudrate:%" PRIu32 ", div=%" PRIu32 + ", udma_cmd cfg =%lx, qpi=%d\n", + __FILE__, __func__, __LINE__, system_core_clock_get(), cs_data->max_baudrate, + system_core_clock_get() / cs_data->max_baudrate, cfg, qspi); + + int buffer_size = (len + 7) >> 3; + + if (len > 8192 * 8) { + DBG_PRINTF("%s:%s:%d: Transaction splitting unimplemented, too large", __FILE__, + __func__, __LINE__); + abort(); /* TODO: unimplemented transaction splitting */ + } + + DBG_PRINTF("%s:%s:%d: udma_cmd = %p\n", __FILE__, __func__, __LINE__, + &(cs_data->udma_cmd[0])); + uint32_t irq = deactive_irq(); + + uint8_t bitsword = 0; + uint8_t UDMA_CORE_CFG = 0; + uint32_t byte_align = 0; + + if (cs_data->wordsize == PI_SPI_WORDSIZE_8) { + bitsword = 8; + UDMA_CORE_CFG = UDMA_CORE_CFG_DATASIZE_8; // 0x0 + byte_align = (cs_data->wordsize) && cs_data->big_endian; + + } else if (cs_data->wordsize == PI_SPI_WORDSIZE_16) { + bitsword = 16; + UDMA_CORE_CFG = UDMA_CORE_CFG_DATASIZE_16; // 0x1 + byte_align = (cs_data->wordsize) && cs_data->big_endian; + } else { + bitsword = 32; + UDMA_CORE_CFG = UDMA_CORE_CFG_DATASIZE_32; // 0x2 + byte_align = (cs_data->wordsize) && cs_data->big_endian; + } + + DBG_PRINTF("%s:%s:%d: bitsword = %u\n", __FILE__, __func__, __LINE__, bitsword); + DBG_PRINTF("%s:%s:%d: UDMA_CORE_CFG = %u\n", __FILE__, __func__, __LINE__, UDMA_CORE_CFG); + + if (!drv_data->end_of_transfer) { + cs_data->udma_cmd[0] = cfg; + cs_data->udma_cmd[1] = SPI_CMD_SOT(cs_data->cs); + cs_data->udma_cmd[2] = SPI_CMD_RX_DATA(len / bitsword, SPI_CMD_1_WORD_PER_TRANSF, + bitsword, qspi, SPI_CMD_MSB_FIRST); + cs_data->udma_cmd[3] = SPI_CMD_EOT(1, cs_mode == PI_SPI_CS_KEEP); + + drv_data->end_of_transfer = task; + drv_data->repeat_transfer = NULL; + + // number of byteword + uint32_t rx_conf = + UDMA_CORE_TX_CFG_EN(1) | UDMA_CORE_TX_CFG_DATASIZE(UDMA_CORE_CFG); + + /* receive data stream with 32-bit data size */ + spim_enqueue_channel(SPIM(device_id), (uint32_t)data, buffer_size, rx_conf, + RX_CHANNEL); + // number of byteword + uint32_t cmd_conf = UDMA_CORE_TX_CFG_EN(1) | + UDMA_CORE_TX_CFG_DATASIZE(UDMA_CORE_CFG_DATASIZE_32); + /* send command stream with 32-bit data size */ + spim_enqueue_channel(SPIM(device_id), (uint32_t)cs_data->udma_cmd, + 4 * sizeof(uint32_t), cmd_conf, COMMAND_CHANNEL); + DBG_PRINTF("%s:%s:%d: cmd_conf= %u\n", __FILE__, __func__, __LINE__, cmd_conf); + DBG_PRINTF("%s:%s:%d: rx_conf = %u\n", __FILE__, __func__, __LINE__, rx_conf); + } else { + struct spim_transfer transfer; + transfer.data = data; + transfer.flags = flags; + transfer.len = len; + transfer.cfg_cmd = cfg; + transfer.byte_align = byte_align; + transfer.is_send = 0; + __pi_spim_drv_fifo_enqueue(cs_data, &transfer, task); + } + active_irq(irq); + DBG_PRINTF("...end -> __pi_spi_receive_async...\n"); +} + +void __pi_spi_send_async(struct spim_cs_data *cs_data, void *data, size_t len, pi_spi_flags_e flags, + pi_task_t *task) +{ + DBG_PRINTF("...start -> __pi_spi_send_async...\n"); + struct spim_driver_data *drv_data = SPIM_CS_DATA_GET_DRV_DATA(cs_data); + int qspi = (flags & (0x3 << 2)) == PI_SPI_LINES_QUAD; + // Choose the type of cs mode, see enum "pi_spi_flags_e" to understand better. + int cs_mode = (flags >> 0) & 0x3; + + // Which SPI interface am I using. + int device_id = drv_data->device_id; + uint32_t cfg = cs_data->cfg; // SPI_CMD_CFG(...) + DBG_PRINTF("%s:%s:%d: core clock:%" PRIu32 ", baudrate:%" PRIu32 ", div=%" PRIu32 + ", udma_cmd cfg =%lx, qpi=%d\n", + __FILE__, __func__, __LINE__, system_core_clock_get(), cs_data->max_baudrate, + system_core_clock_get() / cs_data->max_baudrate, cfg, qspi); + + /* buffer size */ + int buffer_size = (len + 7) >> 3; + + if (len > 8192 * 8) { + DBG_PRINTF("%s:%s:%d: Transaction splitting unimplemented, too large", __FILE__, + __func__, __LINE__); + abort(); /* TODO: unimplemented transaction splitting */ + } + + // Address of the command buffer to be sent to the uDMA + DBG_PRINTF("%s:%s:%d: udma_cmd = %p\n", __FILE__, __func__, __LINE__, + &(cs_data->udma_cmd[0])); + uint32_t irq = disable_irq(); + /* check if we already have a transfer ongoing */ + + uint8_t bitsword = 0; + uint8_t UDMA_CORE_CFG = 0; + uint32_t byte_align = 0; + // uint32_t byte_align = (cs_data->wordsize == PI_SPI_WORDSIZE_32) && cs_data->big_endian; + + if (cs_data->wordsize == PI_SPI_WORDSIZE_8) { + bitsword = 8; + UDMA_CORE_CFG = UDMA_CORE_CFG_DATASIZE_8; // 0x0 + byte_align = (cs_data->wordsize) && cs_data->big_endian; + + } else if (cs_data->wordsize == PI_SPI_WORDSIZE_16) { + bitsword = 16; + UDMA_CORE_CFG = UDMA_CORE_CFG_DATASIZE_16; // 0x1 + byte_align = (cs_data->wordsize) && cs_data->big_endian; + } else { + bitsword = 32; + UDMA_CORE_CFG = UDMA_CORE_CFG_DATASIZE_32; // 0x2 + byte_align = (cs_data->wordsize) && cs_data->big_endian; + } + + DBG_PRINTF("%s:%s:%d: bitsword = %u\n", __FILE__, __func__, __LINE__, bitsword); + DBG_PRINTF("%s:%s:%d: UDMA_CORE_CFG = %u\n", __FILE__, __func__, __LINE__, UDMA_CORE_CFG); + DBG_PRINTF("%s:%s:%d: device_id = %d\n", __FILE__, __func__, __LINE__, device_id); + + if (!drv_data->end_of_transfer) { /* enqueue the transfer */ + cs_data->udma_cmd[0] = cfg; + cs_data->udma_cmd[1] = SPI_CMD_SOT(cs_data->cs); + cs_data->udma_cmd[2] = SPI_CMD_TX_DATA((len / bitsword), SPI_CMD_1_WORD_PER_TRANSF, + bitsword, qspi, SPI_CMD_MSB_FIRST); + cs_data->udma_cmd[3] = SPI_CMD_EOT(1, cs_mode == PI_SPI_CS_KEEP); + + drv_data->end_of_transfer = task; + drv_data->repeat_transfer = NULL; + + uint32_t cmd_conf = UDMA_CORE_TX_CFG_EN(1) | + UDMA_CORE_TX_CFG_DATASIZE(UDMA_CORE_CFG_DATASIZE_32); + /* send command stream with 32-bit data size */ + spim_enqueue_channel(SPIM(device_id), (uint32_t)cs_data->udma_cmd, + 4 * sizeof(uint32_t), cmd_conf, COMMAND_CHANNEL); + + uint32_t tx_conf = + UDMA_CORE_TX_CFG_EN(1) | UDMA_CORE_TX_CFG_DATASIZE(UDMA_CORE_CFG); + /* send data stream with 32-bit data size */ + spim_enqueue_channel(SPIM(device_id), (uint32_t)data, buffer_size, tx_conf, + TX_CHANNEL); + DBG_PRINTF("%s:%s:%d: cmd_conf = %u\n", __FILE__, __func__, __LINE__, cmd_conf); + DBG_PRINTF("%s:%s:%d: tx_conf = %u\n", __FILE__, __func__, __LINE__, tx_conf); + } else { /* a transfer is running, append to pending transfers queue */ + struct spim_transfer transfer; + transfer.data = data; + transfer.flags = flags; + transfer.len = len; + transfer.cfg_cmd = cfg; + transfer.byte_align = byte_align; + transfer.is_send = 1; + __pi_spim_drv_fifo_enqueue(cs_data, &transfer, task); + } + active_irq(irq); + DBG_PRINTF("...end -> __pi_spi_send_async...\n"); +} + +int __pi_spi_open(struct spim_cs_data **cs_data, struct pi_spi_conf *conf) +{ + DBG_PRINTF("...start -> pi_spi_open...\n"); + + uint32_t irq = deactive_irq(); + /* int status = __pi_spi_open((struct spim_cs_data **)(&device->data), + * conf); */ + + /* TODO: hacked */ + int status = 0; + /* TODO: paste beg */ + + // disable clock gating for said device + unsigned char spi_id = conf->itf; + int periph_id = UDMA_SPIM_ID(spi_id); + + DBG_PRINTF("%s:%s:%d: periph_id = %u\n", __FILE__, __func__, __LINE__, periph_id); + + udma_ctrl_cg_disable(UDMA_SPIM_ID(conf->itf)); + + hal_soc_eu_set_fc_mask(SOC_EVENT_UDMA_SPIM_EOT(conf->itf)); + + pi_fc_event_handler_set(SOC_EVENT_UDMA_SPIM_EOT(conf->itf), spim_eot_handler); + pi_fc_event_handler_set(SOC_EVENT_UDMA_SPIM_TX(conf->itf), spim_tx_handler); + pi_fc_event_handler_set(SOC_EVENT_UDMA_SPIM_RX(conf->itf), spim_rx_handler); + + /* + ** spim_driver_data keeps information for each spi interface. + */ + // Take care of driver data + struct spim_driver_data *drv_data; + if (__g_spim_drv_data[conf->itf]) { + drv_data = __g_spim_drv_data[conf->itf]; + } else { + + // Do this to define a node in a list. The list is a dynamic object. + __g_spim_drv_data[conf->itf] = pi_default_malloc(sizeof(struct spim_driver_data)); + memset(__g_spim_drv_data[conf->itf], 0, sizeof(struct spim_driver_data)); + drv_data = __g_spim_drv_data[conf->itf]; + // Do this to define a node in a list. The list is a dynamic object. + drv_data->drv_fifo = pi_default_malloc(sizeof(struct spim_drv_fifo)); + memset(drv_data->drv_fifo, 0, sizeof(struct spim_drv_fifo)); + // controllo che il puntatore sia = 0 + if (!drv_data->drv_fifo) { + active_irq(irq); + return -1; + } + drv_data->device_id = conf->itf; + } + /* + ** Number of open SPI interfaces + */ + drv_data->nb_open++; + + // Take care of cs data + *cs_data = __pi_spim_get_cs_data(drv_data, conf->cs); + + if (!*cs_data) { // if (*cs_data == 0) + uint32_t clk_div = __pi_spi_clk_div_get(conf->max_baudrate); + // alloc a cs data, need to be in udma reachable ram + struct spim_cs_data *_cs_data = pi_data_malloc(sizeof(struct spim_cs_data)); + if (_cs_data == NULL) { + DBG_PRINTF("[%s] _cs_data alloc failed\n", __func__); + active_irq(irq); + return -2; + } + if (clk_div > 0xFF) { + DBG_PRINTF("[%s] clk_div, %" PRIu32 + ", does not fit into 8 bits. SoC frequency too high.\n", + __func__, clk_div); + active_irq(irq); + return -3; + } + + memset(_cs_data, 0, sizeof(struct spim_cs_data)); + _cs_data->max_baudrate = conf->max_baudrate; + _cs_data->polarity = conf->polarity; + _cs_data->phase = conf->phase; + _cs_data->big_endian = conf->big_endian; + _cs_data->wordsize = conf->wordsize; + _cs_data->cs = conf->cs; + _cs_data->cfg = SPI_CMD_CFG(clk_div, _cs_data->phase, _cs_data->polarity); + // _cs_data->cfg = SPI_CMD_CFG(1,0,0); + *cs_data = _cs_data; + // I insert a new element in the cs_data list + __pi_spim_cs_data_add(drv_data, _cs_data); + } + DBG_PRINTF("%s:%d\n", __func__, __LINE__); + + /* TODO: paste end */ + + active_irq(irq); + DBG_PRINTF("...end -> pi_spi_open...\n"); + return status; +} + +void __pi_spi_close(struct spim_cs_data *cs_data, struct pi_spi_conf *conf) +{ + DBG_PRINTF("...start -> pi_spi_close...\n"); + + uint32_t irq = deactive_irq(); + /* TODO: paste beg */ + struct spim_driver_data *drv_data = cs_data->drv_data; + __pi_spim_cs_data_del(drv_data, cs_data->cs); + /* + ** Number of open SPI interfaces + */ + drv_data->nb_open--; + + if (drv_data->nb_open == 0) { + /* reactivate clock gating for said device */ + udma_ctrl_cg_enable(UDMA_SPIM_ID(drv_data->device_id)); + hal_soc_eu_clear_fc_mask(SOC_EVENT_UDMA_SPIM_EOT(drv_data->device_id)); + pi_fc_event_handler_clear(SOC_EVENT_UDMA_SPIM_EOT(drv_data->device_id)); + __g_spim_drv_data[drv_data->device_id] = NULL; + pi_default_free(drv_data->drv_fifo, sizeof(drv_data->drv_fifo)); + pi_default_free(drv_data, sizeof(drv_data)); + + active_irq(irq); + return; + } + pi_data_free(cs_data, sizeof(cs_data)); + /* TODO: moved to end return drv_data->nb_open; */ + /* TODO: paste end */ + + active_irq(irq); + DBG_PRINTF("...end -> pi_spi_close...\n"); + return; +} + +void spim_eot_handler(void *arg) +{ + DBG_PRINTF("...start -> spim_eot_handler...\n"); + uint32_t event = (uint32_t)arg; + uint32_t channel = event & 0x1; + /* TODO: remove is garbage */ + // EOT is simply 22 + id in GAP8 + uint32_t periph_id = (event - SOC_EVENT_UDMA_SPIM_EOT(0)); + DBG_PRINTF("%s:%s:%d periph_id=%u\n", __FILE__, __func__, __LINE__, periph_id); + + struct spim_driver_data *drv_data = __g_spim_drv_data[periph_id]; + + if (drv_data->repeat_transfer) { + DBG_PRINTF("%s:%s:%d\n", __FILE__, __func__, __LINE__); + // TODO: reenqueue the rest of the transfer + DBG_PRINTF("Large transfers (>8k) are not implemented yet\n"); + return; + } + pi_task_t *task = drv_data->end_of_transfer; + DBG_PRINTF("%s:%s:%d\n", __FILE__, __func__, __LINE__); + if (task != NULL) { + if (task->id == PI_TASK_NONE_ID) { + DBG_PRINTF("%s:%s:%d release task %p\n", __FILE__, __func__, __LINE__, + task); + pi_task_release(task); + } else { + /* TODO: hacked away */ + /* DBG_PRINTF("%s:%d push task %p with id:%x in + * sched%p\n", */ + /* __func__, __LINE__, task, task->id, */ + /* default_sched); */ + DBG_PRINTF("%s:%s:%d periph id:%" PRIu32 "\n", __FILE__, __func__, __LINE__, + periph_id); + /* TODO: hacked away */ + /* pmsis_event_push(default_sched, task); */ + DBG_PRINTF("%s:%s:%d\n", __FILE__, __func__, __LINE__); + } + drv_data->end_of_transfer = NULL; + } +#ifdef DEBUG + else { + DBG_PRINTF("%s:%s:%d next task %d\n", __FILE__, __func__, __LINE__, + task == NULL ? 0 : 1); + } +#endif + // I put the next item on the list at the top of the list. + task = __pi_spim_drv_fifo_pop(drv_data); + + DBG_PRINTF("%s:%s:%d next task %d\n", __FILE__, __func__, __LINE__, task == NULL ? 0 : 1); + DBG_PRINTF("%s:%s:%d __pi_spim_drv_fifo_pop(%p)\n", __FILE__, __func__, __LINE__, drv_data); + DBG_PRINTF("%s:%s:%d new task %p\n", __FILE__, __func__, __LINE__, &task); + if (task) { + __pi_spim_exec_next_transfer(task); + DBG_PRINTF("%s:%s:%d __pi_spim_exec_next_transfer(%p)\n", __FILE__, __func__, + __LINE__, task); + } + DBG_PRINTF("...end -> spim_eot_handler...\n"); +} + +/* TODO: REMOVE THOSE */ +void spim_tx_handler(void *arg) +{ // if we're here, it's cs keep related + DBG_PRINTF("...start -> spim_tx_handler...\n"); + uint32_t event = (uint32_t)arg; + uint32_t channel = event & 0x1; + uint32_t periph_id = (event >> UDMA_CHANNEL_NB_EVENTS_LOG2) - UDMA_SPIM_ID(0); + hal_soc_eu_clear_fc_mask(SOC_EVENT_UDMA_SPIM_TX(periph_id)); + arg = (void *)(SOC_EVENT_UDMA_SPIM_EOT(0) + periph_id); + DBG_PRINTF("%s:%s:%d periph_id %" PRIu32 " arg:%p\n", __FILE__, __func__, __LINE__, + periph_id, arg); + spim_eot_handler(arg); + DBG_PRINTF("%s:%s:%d\n", __FILE__, __func__, __LINE__); + DBG_PRINTF("...end -> spim_tx_handler...\n"); +} + +/* TODO: REMOVE THOSE and the handler */ +void spim_rx_handler(void *arg) +{ // if we're here, it's cs keep related + DBG_PRINTF("...start -> spim_rx_handler...\n"); + uint32_t event = (uint32_t)arg; + uint32_t channel = event & 0x1; + uint32_t periph_id = (event >> UDMA_CHANNEL_NB_EVENTS_LOG2) - UDMA_SPIM_ID(0); + hal_soc_eu_clear_fc_mask(SOC_EVENT_UDMA_SPIM_RX(periph_id)); + arg = (void *)(SOC_EVENT_UDMA_SPIM_EOT(0) + periph_id); + DBG_PRINTF("%s:%s:%d periph_id %" PRIu32 " arg:%p\n", __FILE__, __func__, __LINE__, + periph_id, arg); + spim_eot_handler(arg); + DBG_PRINTF("%s:%s:%d\n", __FILE__, __func__, __LINE__); + DBG_PRINTF("...end -> spim_rx_handler...\n"); +} + +// TODO: prepare pseudo exec for delegate +void __pi_spim_execute_callback(void *arg) +{ + return; +} + +void __pi_spim_exec_next_transfer(pi_task_t *task) +{ + DBG_PRINTF("...start -> __pi_spim_exec_next_transfer...\n"); + DBG_PRINTF("%s:%s:%d\n", __FILE__, __func__, __LINE__); + if (task->data[5] == 1) { // if is send + // cs data | data buffer | len | flags | end of transfer task + __pi_spi_send_async((struct spim_cs_data *)task->data[0], (void *)task->data[1], + task->data[2], task->data[3], (pi_task_t *)task->data[4]); + } else if (task->data[5] == 0) { + // cs data | data buffer | len | flags | end of transfer task + __pi_spi_receive_async((struct spim_cs_data *)task->data[0], (void *)task->data[1], + task->data[2], task->data[3], (pi_task_t *)task->data[4]); + } else { // task->data[5] contains rx data addr + // cs data | tx buffer | rx buffer| len | flags | end of + // transfer task + __pi_spi_xfer_async((struct spim_cs_data *)task->data[0], (void *)task->data[5], + (void *)task->data[1], task->data[2], task->data[3], + (pi_task_t *)task->data[4]); + } + DBG_PRINTF("...end -> __pi_spim_exec_next_transfer...\n"); +} + +void __pi_spi_xfer_async(struct spim_cs_data *cs_data, void *tx_data, void *rx_data, size_t len, + pi_spi_flags_e flags, pi_task_t *task) +{ + /* TODO: port spi_xfer async */ + abort(); +#if 0 + struct spim_driver_data *drv_data = SPIM_CS_DATA_GET_DRV_DATA(cs_data); + int qspi = (flags & (0x3 << 2)) == PI_SPI_LINES_QUAD; + int cs_mode = (flags >> 0) & 0x3; + + int device_id = drv_data->device_id; + uint32_t cfg = cs_data->cfg; + DBG_PRINTF("%s:%d: core clock:%"PRIu32", baudrate:%"PRIu32", div=%"PRIu32", udma_cmd cfg =%d\n", + __func__,__LINE__,system_core_clock_get(),cs_data->max_baudrate, + system_core_clock_get() / cs_data->max_baudrate,cfg); + uint32_t byte_align = (cs_data->wordsize == PI_SPI_WORDSIZE_32) + && cs_data->big_endian; + int size = (len + 7) >> 3; + + int cmd_id = 0; + + uint32_t irq = deactive_irq(); + if(!drv_data->end_of_transfer) + { + cs_data->udma_cmd[0] = cfg; + cs_data->udma_cmd[1] = SPI_CMD_SOT(cs_data->cs); + cs_data->udma_cmd[2] = SPI_CMD_FULL_DUPL(len, byte_align); + drv_data->end_of_transfer = task; + drv_data->repeat_transfer = NULL; + if(cs_mode == PI_SPI_CS_AUTO) + { + spim_enqueue_channel(SPIM(device_id), (uint32_t)cs_data->udma_cmd, + 3*(sizeof(uint32_t)), UDMA_CORE_TX_CFG_EN(1), + TX_CHANNEL); + spim_enqueue_channel(SPIM(device_id), (uint32_t)rx_data, size, + UDMA_CORE_RX_CFG_EN(1) | (2<<1), RX_CHANNEL); + spim_enqueue_channel(SPIM(device_id), (uint32_t)tx_data, + size, UDMA_CORE_TX_CFG_EN(1), + TX_CHANNEL); + // wait until TX channel is free + while((hal_read32((void*)&(SPIM(device_id)->udma.tx_cfg)) + & (1<<5))>>5) + { + DBG_PRINTF("%s:%d\n",__func__,__LINE__); + } + // send EOT + cs_data->udma_cmd[3] = SPI_CMD_EOT(1); + spim_enqueue_channel(SPIM(device_id), + (uint32_t)&cs_data->udma_cmd[3], sizeof(uint32_t), + UDMA_CORE_TX_CFG_EN(1), TX_CHANNEL); + } + else + { + spim_enqueue_channel(SPIM(device_id), (uint32_t)cs_data->udma_cmd, + 3*(sizeof(uint32_t)), UDMA_CORE_TX_CFG_EN(1), + TX_CHANNEL); + // wait until TX channel is free + while((hal_read32((void*)&(SPIM(device_id)->udma.tx_cfg)) + & (1<<5))>>5) + { + DBG_PRINTF("%s:%d\n",__func__,__LINE__); + } + // activate rx event + hal_soc_eu_set_fc_mask(SOC_EVENT_UDMA_SPIM_RX(device_id)); + // NOTE: both transfers have the same size + // does not matter which one we wait + spim_enqueue_channel(SPIM(device_id), (uint32_t)rx_data, size, + UDMA_CORE_RX_CFG_EN(1) | (2<<1), RX_CHANNEL); + spim_enqueue_channel(SPIM(device_id), (uint32_t)tx_data, + size, UDMA_CORE_TX_CFG_EN(1), + TX_CHANNEL); + } + + } + else + { + struct spim_transfer transfer; + transfer.data = rx_data; + transfer.flags = flags; + transfer.len = len; + transfer.cfg_cmd = cfg; + transfer.byte_align = byte_align; + transfer.is_send = (uint32_t) tx_data; // sending a pointer means xfer + __pi_spim_drv_fifo_enqueue(cs_data, &transfer, task); + } + active_irq(irq); +#endif +} + +void __pi_spi_receive_async_with_ucode(struct spim_cs_data *cs_data, void *data, size_t len, + pi_spi_flags_e flags, int ucode_size, void *ucode, + pi_task_t *task) +{ + /* TODO: port spi_async with ucode */ + abort(); +#if 0 + struct spim_driver_data *drv_data = SPIM_CS_DATA_GET_DRV_DATA(cs_data); + int qspi = ((flags >> 2) & 0x3) == ((PI_SPI_LINES_QUAD>>2) & 0x03); + int cs_mode = (flags >> 0) & 0x3; + + int device_id = drv_data->device_id; + uint32_t byte_align = (cs_data->wordsize == PI_SPI_WORDSIZE_32) + && cs_data->big_endian; + uint32_t cfg = cs_data->cfg; + DBG_PRINTF("%s:%d: core clock:%d, baudrate:%d, div=%d, byte_align =%lx, cfg= %lx, qspi=%lx\n", + __func__,__LINE__,system_core_clock_get(),cs_data->max_baudrate, + system_core_clock_get() / cs_data->max_baudrate,byte_align,cfg,qspi); + int size = (len + 7) >> 3; + + int cmd_id = 0; + + uint32_t irq = deactive_irq(); + if(!drv_data->end_of_transfer) + { + if(cs_mode != PI_SPI_CS_AUTO) + { + hal_soc_eu_set_fc_mask(SOC_EVENT_UDMA_SPIM_RX(device_id)); + } + drv_data->end_of_transfer = task; + drv_data->repeat_transfer = NULL; + if(((0xFFF00000 & (uint32_t)ucode)!= 0x1c000000)) + { + memcpy(&(cs_data->udma_cmd[0]), ucode, ucode_size); + spim_enqueue_channel(SPIM(device_id), (uint32_t)data, size, + UDMA_CORE_RX_CFG_EN(1) | (2<<1), RX_CHANNEL); + spim_enqueue_channel(SPIM(device_id), (uint32_t)cs_data->udma_cmd, + ucode_size, UDMA_CORE_TX_CFG_EN(1), TX_CHANNEL); + } + else + { + spim_enqueue_channel(SPIM(device_id), (uint32_t)data, size, + UDMA_CORE_RX_CFG_EN(1) | (2<<1), RX_CHANNEL); + spim_enqueue_channel(SPIM(device_id), (uint32_t)ucode, + ucode_size, UDMA_CORE_TX_CFG_EN(1), TX_CHANNEL); + } + } + else + { +#if 0 + struct spim_transfer transfer; + transfer.data = data; + transfer.flags = flags; + transfer.len = len; + transfer.cfg_cmd = cfg; + transfer.byte_align = byte_align; + transfer.is_send = 0; + __pi_spim_drv_fifo_enqueue(cs_data, &transfer, task); +#endif + } + active_irq(irq); +#endif +} + +void __pi_spi_send_async_with_ucode(struct spim_cs_data *cs_data, void *data, size_t len, + pi_spi_flags_e flags, int ucode_size, void *ucode, + pi_task_t *task) +{ + /* TODO: port spi_async with ucode */ + abort(); +#if 0 + struct spim_driver_data *drv_data = SPIM_CS_DATA_GET_DRV_DATA(cs_data); + int qspi = ((flags >> 2) & 0x3) == ((PI_SPI_LINES_QUAD>>2) & 0x03); + int cs_mode = (flags >> 0) & 0x3; + + int device_id = drv_data->device_id; + uint32_t byte_align = (cs_data->wordsize == PI_SPI_WORDSIZE_32) + && cs_data->big_endian; + uint32_t cfg = cs_data->cfg; + DBG_PRINTF("%s:%d: core clock:%d, baudrate:%d, div=%d, byte_align =%lx, cfg= %lx, qspi=%lx\n", + __func__,__LINE__,system_core_clock_get(),cs_data->max_baudrate, + system_core_clock_get() / cs_data->max_baudrate,byte_align,cfg,qspi); + int size = (len + 7) >> 3; + + int cmd_id = 0; + + uint32_t irq = deactive_irq(); + if(!drv_data->end_of_transfer) + { + if(cs_mode != PI_SPI_CS_AUTO) + { + hal_soc_eu_set_fc_mask(SOC_EVENT_UDMA_SPIM_TX(device_id)); + } + drv_data->end_of_transfer = task; + drv_data->repeat_transfer = NULL; + + spim_enqueue_channel(SPIM(device_id), (uint32_t)ucode, + ucode_size, UDMA_CORE_TX_CFG_EN(1), TX_CHANNEL); + pi_time_wait_us(1000); + spim_enqueue_channel(SPIM(device_id), (uint32_t)data, + size, UDMA_CORE_TX_CFG_EN(1), TX_CHANNEL); + if(cs_mode == PI_SPI_CS_AUTO) + { + // wait until channel is free + while((hal_read32((void*)&(SPIM(device_id)->udma.tx_cfg)) + & (1<<5))>>5) + { + DBG_PRINTF("%s:%d\n",__func__,__LINE__); + } + + // enqueue EOT + cs_data->udma_cmd[0] = SPI_CMD_EOT(1); + spim_enqueue_channel(SPIM(device_id), + (uint32_t)&cs_data->udma_cmd[0], 1*(sizeof(uint32_t)), + UDMA_CORE_TX_CFG_EN(1), TX_CHANNEL); + } + } + else + { +#if 0 + struct spim_transfer transfer; + transfer.data = data; + transfer.flags = flags; + transfer.len = len; + transfer.cfg_cmd = cfg; + transfer.byte_align = byte_align; + transfer.is_send = 0; + __pi_spim_drv_fifo_enqueue(cs_data, &transfer, task); +#endif + } + active_irq(irq); +#endif +} + +void vApplicationMallocFailedHook(void) +{ + /* vApplicationMallocFailedHook() will only be called if + configUSE_MALLOC_FAILED_HOOK is set to 1 in FreeRTOSConfig.h. It is a + hook function that will get called if a call to pvPortMalloc() fails. + pvPortMalloc() is called internally by the kernel whenever a task, + queue, timer or semaphore is created. It is also called by various + parts of the demo application. If heap_1.c or heap_2.c are used, then + the size of the heap available to pvPortMalloc() is defined by + configTOTAL_HEAP_SIZE in FreeRTOSConfig.h, and the + xPortGetFreeHeapSize() API function can be used to query the size of + free heap space that remains (although it does not provide information + on how the remaining heap might be fragmented). */ + taskDISABLE_INTERRUPTS(); + printf("error: application malloc failed\n"); + __asm volatile("ebreak"); + for (;;) + ; +} + +void vApplicationStackOverflowHook(TaskHandle_t pxTask, char *pcTaskName) +{ + (void)pcTaskName; + (void)pxTask; + + /* Run time stack overflow checking is performed if + configCHECK_FOR_STACK_OVERFLOW is defined to 1 or 2. This hook + function is called if a stack overflow is detected. */ + taskDISABLE_INTERRUPTS(); + printf("error: stack overflow\n"); + __asm volatile("ebreak"); + for (;;) + ; +} \ No newline at end of file diff --git a/rtos/common_function/abstraction_layer_spi_freertos/src/abstraction_layer_spi.o b/rtos/common_function/abstraction_layer_spi_freertos/src/abstraction_layer_spi.o new file mode 100644 index 0000000000000000000000000000000000000000..20e74e8d2a9bece18a823f99617401d9a8a0adfe GIT binary patch literal 306092 zcmeFa349#Il|SC2R!j1UWeI#>V33VHvSnE_k|mkbqtQqjtP9P^2PA1^X=Lk%E~Jr> z69|WK0we?oBtSw4NeH>f1xX;;EO!VbESrO6Lr$`rJG6f+KMeSY3O@??mQ9@OJ>etHR#{ zd|rjW5BM)C{I7sNP~jf}{z!#?4EPfj{wd(kRQTtB|E9wK4)_Zd{tv)ks_=gT{z`>^ z4fq=s{w?6|RQUIRe^B8+0{%&b{|oTXD*WGoe^KEV0BM2Xe~T7PkqX;@#VYIomZ)$k zV3`Up09>fTivSnn-;JfeJZA7eK49IrtKVwcw`_HJ={2RFyZNSs(_Vk<2dw^UuX^-~ z%TBoPn-AHWlGc}=c+Gd;@br71y6a0%KmN7Ho_*xueTQ0igbr;wY{jk~{M{EVS_?nE z%(6CKS$oZAu0Hi~9k)AfvSV!@zGiS~nRTfBPTOgJxZ~cYUs{7@Kd}~c+*oE6t-9m# z_V;wy8@_BMe}1U_O1r7lTDEq5F7(`W6>t2*3-|6`Wv_YS#@|0_{pX4s?^|KDl>Vah zx$BT;^1177{Npz3zgOP-;}xM-J#n~w@bDi??klyfKU})zsiqCfR^Rx>N~@x@w5+7; z_R_WMzih2tx5%p4Ul#h@&1>&y51p`}V$U|~#y6H)Yu~#ewD!)@P_+26ugBZJ@%3}s zZ~5op*57S^wzVzwnbi8TOLqL~yq$;Ne)cH?D{RZ!XW16ja&76zgEeJUhx?xHe(LP6 zyyk0XK2!9p?(>uP9jZ-Q2QMsnw(6OCt~&J%@qLHB*d4MXhpoW_D?&QgbgsD0PQ1+? zTx2h_+uv_H-Sth+TZ1beT@>%OKmN2excV5RAGX)7cS22N*0TD2rJ#I6{$LvQ}_yUK3-Mzgi{!z)5-@7`xs9j?mU z)0_0hAk=N{6ed^4obzh&nFH~Oj zRQKb3kJVmT^7Q&Io&ChlM>bxg-ySNh3_0x|zWQ+Ky(@li-M4<(>g!v+dfjc0*iL2W z#ucYn6^AbpTz&onMTD#O4KG`LL&-Izp8>AculRsf(f<1vX0E&C(fb_W^kK)tMfzT+ zEp(1`bbV&J<1F;j4=t<=H7&5LiUkX-8*kodoq6k_bqlO_{o6oNfBE4n*M>i2t*vr^ zP58GS|04Le(XmeU@?7=M+Az{6&o!CQZ5`_mA1=M^i9=4YH}h-5AGVS|EZgptdQFA% zkga1IuXeuQeOSj1_Wx@8-qx?RwxsS!Rh|9Tvz>t}F5`9k$6X;m*G&IUAG|zSQR0`f zX8WPGjJ2|L?fO3!tzGh5(W_bywY8$PKP_6j@sCCCTl`$nU8RTGibGXcP51tIS7N!W)1rM z-z(NU@&123)ZQAZc;gD|aQnSC|Jb_mi@$$?aWL`Q>()GKCtE`cof8~g&fGYCTeiL8 z<_)yoc%{)U?b(Yor%l_^l0<9_e8WbOK5 ztPkCf(38|2za{rMdzIto*ZE#7m;c^uyBW?- zO-)Rl8XlOO932@P$c;>lhsOp+M<)iu!viCu*&z#kD|vi+vbaw7RrjIj`p_MgrM{oe z4Gdloo;Z-58Xldv=taJ{coldNc!6*v@EHylcob3E!s-=U0qjr-#UyFd$_`E{qa?cs zvp@hSpfhx>9HFFQek0%Xth$(!IG0@}-;{BzxY!vP&#AJ1vieRxAAh>2a(Ok99FnOd zVP(bXUbv>>)n2%+a*{HVAR-z2jwRu*C3qPrNw2%(7E!JxpI>wqUQ|lt?-%_AUo=SM zf#ubBvt1$&F24`CTP5<)f{!4Ql*q#zX_Lq!Mf9fKDl5Jl1uec0k0m4-AYml{_iM>@ z+%9h9;w3jMqblX=w-#|;iQKsC@A0BoA~$ga%p65oOWtNbiC0T0Tv|*+vgExb)YfAt zMV=wlNJFuVMvr<}&O>J{qv7q*@lq*pY1=91A*rl*0MF%AM#ZvYRxP*_F|PiY)s@dv zszlasq4k1wcmbefije8@xd(pIAt^DYI8T#Surc z&8(pMWyH!4R8lRA7Yef7+(@SClOXFSrPSg^6}+!O6yCFQ}5qmh21G*%{>GzLzaOyX+%~ za0{1rE+JG`kuHuDOTN>WpHp@!=!N74aG zp-kNJ1KbnUsEatF8a2yR3k_L*kZY(!4ck#rS@9vip4XQZgY-&0mzC2@smSGJwAPCk zj%LTLWCi zR@CX&6f4@}*HmA0ykAp&(R#n8`l4pPriP*wMorI!NxsWGHaxCaA+VFZ6-*Aohg8T3T-G^Tya5;*=Y*QcjB_Ra| z{*0F#D1%(;1-PG;NC7c?qitE$+?3}XW{^@fu=#=|FlWe{Y6{bzinr7&OaD-~| zr7BOXLIt*jy{|w2d8coTEDLpy#) z5&Wt5E=vGj{K{oa=@H*dnd~=us4DTR=AiO5bK=)}@l7O++i&sKiG2Sy|2?mxJLbH9 z9}6y2wdB8ZPW=5|eqK6b%XG#scq>Of{IVC{(re=I6ZTb*H#c0X(l%VK12Z}>q64p1 zf%-dCfSOfYV{iDX&hZ5u_^b|mR0ZlDQwT@jIJHHmQ>EWgX&b((Uk0;nDH<%CEfOfL zuBbpsK(9bQpSE8?AFE$hAH$f80xjDTX#AF<_QKhYs*hGPjVJxR1Ep-Efc^EAAHrnzEGi8`yD9o42jek;j^AWnxvn++z6j+ zgqz8<19nN48!pe;RB3-#m*;HSW`sMu@0^-rjPQvRMj2%C;W8FKLf$%*gc4t%ULTN*N<+)< zLOCx{G&(CF8kL4#u585p4SlcDrZ#QozI<;BbtTT-_yPAq!ao$s(84bsUrB>vQ!BPl zW%pU3$Lsv@3q4$E6RqBUU|`e=J-nITNUn!Z<6H?Uqx5_!gPTyYwbH&BpYV{EY~5^x zPv=j{irnQLqO%(YU!nOtO&T2XR*rOjO``*;(j z+9a8_QNznV$sKOz-j{u{{9?*(ao(bCX*x-tTzpY??SJAWe^=Bi1I3Lf0-{bJ7Y{|z zrgc<>e6gwihg4n%Yikt3U+A{wSYjK#O$r?TQsz4wO8mVj$$QI7?7}6;x1LNC`p^Da z$S$K&9#V-L?$v?2bl_GUc(V>%ssbK26n03GsMTQ>AG$3|h3otqyb`=Jy;{6_bxZuh zJIH*a|3bGtOhq26+ftb*w^^s{YyUQiLTmo8c)g@ll>aEWD?=`zW%xd;hfC6uuE*wBVmly!;2MJ_Ey5oa!< z^88|siQua>$h|BSN>xzq@{^H!3sRO>;MM8i3l$Y1v*ya;(A-jvZ7}LSYgG|2;<(z- zS*y4~&bCDxR+WdAmuz2oa|<_Ug(KPVCRI^{0a|(W6(I~=6xFY~=8BM2wDN`)l(9Nk z2DR>Z^HZ1#5v5V!k}T_l;0NJF^vQ{49%|Z2fdo_^R?YX?bFyv^eP1P!x3#RI_N_(C zlBTYcpn7o%3h|mkomzhaI@A~HU$J}99%mOfWrJfyxx*29M`MC_i*{kKtG$*3Nj9uX z@k?*Ou*2=oEtS1VRmK=a2{q;n(0pz-6DUXRA~c2iv&Co^>ZYW+U~?!bN==1nph2~` zKKK>wgP}aA`;-BCaIpP>>Bjb^kE+y^=0%w7s6Ij5e0^30JrZIK!(aQ<3g zu;A{7RWi9}m?L9ZXQ~|eICqxOe#{1ly4fnQOtT^26lPVa3aKnn>rDeqQ5dDPZUvP} z`stL`hN8TsiTysZo_Ex$UU+kwGR9n?$Jw>kS*uQ8HNI4OX<0jh39@CO$YRJkR};u$ z3wG9b>zIZi>pUH#4CfWd;FS=vcI&*Q)~rP~TQ7SVl^#ejs?L9@%P}$;r5A3h1Lwo& zYOh8IO)#P*)Bq!{YbeE6u~VXJyzivxMuKXck)ppX+`9kY_1(5!Tj~v8;khwJ>L_yO z&E#uKjhUNoCQJbTx3xe{0~i7cBU8k4~Mh?=NKu?bU@DJ@Avf z7VD&i)@vtt^>Ky79&Wn2YuEPz~dYBI|}%>4Jh^ z>(r3tWe8aVI+gOi%4@Ol!nQ8=N$9+}f-iKTA?wvTNEu#jl>b+Ip(_Yk9)&Y{NY%c^ zsMhQHQNHj?A3JhTzg=iuVx7Lap&HA^t9B9feQx6a#f-YG4%%ApH!~vMT0mIzn3|DlTUX4_ zwmm`9FZsp!u_0AcOHF2;Cu1ATnDUw&*dqnDb;I44>IT@>lo>JJ=o}$yxIj=Ry&`V9 z&^mOqJUc(5Zoy0AmJX^kSZzM*4ZPNMlvoGnFw018((*c<(rQdSyA+PPNMGlJgWIp z8YZ$l%wrFD$@R=T1uy-DZu-1m>I~33c=uMv2_h|Q##P#y0%7A<9P^N7TYj_&`GUYxIcOx--+>*ke6 zF5*|kI>X=K-$vkXBk+G|1d3%fvYUx*+3*jtPg-toUgGdMM!RyQ11Ai4WGq|du(`=z zx|;JA%hN7D-r?nJ7q3w%&Iy4G%THA46(^}cW!PSDva^tjUA#~wE?s1P<&fWxRqViX z40Rv3SY=vO{ zVm85!Rjc%+8=VbQe6fAZCROsX8fPunxPG&93coWy<*@y|P_2Xgd$fOrc>3s8KOd?q zF8KkryiueoueQQrc4i;9q}X0j;=r#9->rlHDTva;S`HfgVJa8`5XHCyGC z`LtITNj6navAwcXS9GkJ&xLE`rM*m#^72MGYH2TBtX@^&?gsqn)>byl$Q0YhZ410u zaVkgcb*d<512-*lnvu)y5qBqD*s3#}6F67Z;$pk`Oer9WaJ}lQd~2U}mI|D?-8q>* z*c_KHi|vLMvx32d#ER|qRu0*FReN-utCu<_auMs2#)rlB@olOtYui8kZ@YJN6iz)Ksq4@`?(b)Lg8v=lEr)&QWEp zS)c+IlgH$AzmM_CYcp0hdq z+YI;x%b+4^IT3nUa!9gX$)MyaiCrzRYb5q2iQO)-cMJHvfd3Y7nDqtc8Ub$;aI1iK z3;4Kz2L*hI0kV0uM$26 zRY}hla3sa);_OeD#`=@PcbPq{(V};K@#(-y+~v0q+o?X6bzryHmi&1bke;Cj`jUIWl#QOr7(X zy!(QH#|1ni;GYCMD?s7-k0tgK0lyQVmewC6_6AunZxnEqfVT^{S->p3)q5PU~MsBab%q^VR4RzjGV~>DrmW#!*PDL@UxwtLdT7js%UyAzdeVaLVN_J zGn~@TPxb(H*iP>7*1f}f?v9Wtwp}}eoO6huS$^_{wX=`I?1baUY9Hs634TuUQ%GEn z!!!Imz|V{LDWvZphhN9fi}`s8KVQ$!OZll5UV!5`hZU9!c%uN}KTd%EXfkxIWVv3z z4FcXOK#|;=B=$A|iU1c}@9&f>LDqJMB)&&LkR-fc5*01{fW$s1;6nmFEPyUM!#Yv~ zzaR~{SF(Icz^4TWYjEz9m?ATZz6fj3Bv@F3^MK@hSimC!gi#bGNKZ(XCk1>-z?TI) zCEzOpzAE7B0tync=j7ct1$;}uw*`Dhz;^`*hj+d&v40WpuL6D`K+(aUN=yj>KbP3Q z3HWyb{~_R)0{&CLuLS&BK#+|7Q4;?o;J*a?S%8u+UXa*jLL)90aD{*%r3sJ`=SInL zlK>_BCXQK5)ns)CJS|S`RxV#6k2Lh&M8h8 z$|=-R=wVPSQG`$lTS4-s2wFi(rl#XI89_zK6bbvJB;F&SAh`+B88vZAI#CPhH}d&! z1r!ug)ap{}Nht+~1Q)+8;1>dZBjC3J{w&}MnX#(`TrJ>w0cui}KykYyD%s)d5_?9# zw*-i~<9ttIKNavZ0lyJ&4a8v3<~Iv?i-79{+#ukc0`3s-egPj8aJPVu3HYjje-iMV zfbR(SzJMPJ_^E(@7w{VazZLL10lydU2LabQ+|IWMxI@5Q0zM?*BLY4y;FAJAE#Q6u zpA+zafQJM;BH(cWPYU=F170#hFj%YNcqO+)^hcJzDOJ&e;G%S%<4G-fUceESC>J4X zK^S<6LUe_xif}06AW}6qX1UQA-YF4Tjo&TcccP4xb69d$a9FyrlEbU`Dc_rv;51HW zdcY-yIli8stZX_wETX`04pBc?I^?+2C2Gn^{M}l9p2AO&B1L}8qfGpLJ?CrSXEQ&A zE{T-b$tk`3%ao|O43oXjS^#&*7GS@{E9w2ATcFm z1my`)44r?JEYC3DP6_VFK*(S+YvOn7xal%Hf_XB~GE^dP-z_C7VrF2&Yx!fbQaB%! zT+-gW$&e{u!ylZ$Pnn)DhpYH$wnf@0Es{wV7AmcicA0F&oH7%oOtuo|T3Yy-+2#D6I7lpG*3 zm-7=zRMNQ;%a1}3|BZa7oW<|%d2%hk|lMUWHo7LutpaWoaFc+y33$7Jn+4n=;8p?e5b#a`w+XmIzy}3< zLcl`;9u@E;1D=60>Tro54bLX0HuEqDr4wP~EKZTND?$@zJf4$<$eqmLDtgkp5)L^` z&^YfFe$Pd4T&7B@_L1xy&SfrrCalhp6gp; zQ(}o)sW(WXl0cMwP^r^FJvu0Q6qGrXflsM;KgV!kT`0v(>1h8bDESouUls5*0nZBf zX93?3@GSw~7VsSbLBv+bE4av$AXB%N>gP!_x$9<~s&*0u6V9YmNAO`ghvWQg;b$v9 z+xThH_!Orcz37^c1~SFw<45ynkewI@% z;b(w&^T?gR=_2Nf+`!`%u=htfPmG^i`6)6)6NgXZr;OhJ#E8kl>E~Kr$?`d$OPFu8 zv;5XvTr&Pb)lD8d$~k3T%vmr-o<~+>7;~hA9*JC$Itqkw|6;REu{Aeur~Wp;M+_phR-fmKR>{&)SqtaW zN6r8}IrS>Zu4IXzIwaLQpO7r7e5IHxjY5eV$~yih$ti-jqjuNcD>Pf#pq24i?Gh>` z{RPSLWdVv2KP$0s3HZK%p9%PtfIkUPw!Ld?>Xh?V0m?*so5b!ApmqsAD6zW*d_usd z1l%v+^8y|c@R)!n1Ux0+D*}{h@Ea0SrorbW_5%Sw5%6yUeknj13jZLnKMS}_sQQ%x zt`eY(h}TQ(CIPnyxJ|$v0`3$LG$MXN57;u z=LP&gz)uAHn}A;mP{v1PXZ*7yUM3voNc(Z`(1>7Xy76J5|8<Zx(gYJ zcMJH0fKLff7D*+)DO2QQ^6m)%-xcs90Y4M)3jx0p@FxLE(o;g6;)F_KQ^J{&!<5LS zq$~QN4m9w+0`3y6!@1UxR_9|b%k;F|)zFW@%C}Ns0GAwM9N@_=*-7Gj)to% z8mG2B6^&Cy5T#&!Uuc{%Q3MH}+TK(9b85d#=_8K|t@;NB+~`^!E|G9e6*-^jo2=}8 zQvXK<1g%8Djn-!*%XbC*s{pkPs;n;$Eaf&lDB#v(IQ9+!H~OM|oYPzQnc!y|Kim1) z!OwhQO$_eNXQkt^fu{FN?h$hE4VlSz^GrIw6Y$UiF7Q?sD|w_ga6*Ki)%+CJtjx*p zks4kQ@SspqMJ5$7daJDGrv&_iETtbw?O&2=pA+x{0l#FxwM&8wia#c&a68PFnF5_T zx28Z>&tEn0Q|4L3Iu=v7Hc@(6oZ)x{=UvIqRs1}jpKJIjqIj6YYx%jJpJuyc#5Que zv{C9ml~Y8Z6!Bs^r?m33ou49ni-08J;2usFk@|cNkML6jH4&FZ{Cz#Aiy#y<;VMIV z&}bW!j)KMwg-S|fx=B!3NlwbH`wmG|T9v{KWwZ@$G$`}FNJx2OEapKTe`g){Kt^;E zht1WRKbInYipXh>tB|KNxdc-Qk`-l+cZ&1u;HQjw4~IoK%@@u^6g-#n2>Bb}@E|{j z_?hMBFhBS4b3Z?2-h^CEaEi>HDQ4$5-4M2&i#TPLp9lFV2Cdg|_+ozM&;MbWoi_+j zLgzISQ)m#hYN;7llUs0GT4tOlFwE7S%+D%*%3_cSl%+b~!Z`BsoKK_3Up)DfEEAjL z_O$U+7F9ooWzt^5VV9pW355iB=Ou3uDBg7>i~pBp_@5H+lI{PBy(s(tH>8xH74k=t zSkR9DYkp@eKOs%Bz)bB|n4c^sSwiNB%7PIxC5xnw$5O^vNS2K5`J8SpfD1T92$!kb zo5=lo&Lc!DxE-aCSSk5IdKIKlN~?O8j7D&;Ns*?H$U8-v?v+?ThjWxrqV%svCCg(1 zo)n)s!bW5z>mob@E%2==E}n%x9Xz=Bx_o6LxeSzZC*#&h}nT7h-4gmGaMEYC&W$W zUm4{U`BFB%AOa|2R*c_t#s?uIg0f3+@`JOktiA;~S&$?I`I?ellwmkXE|fs?Zdsy= zcqsAaeUkVw0l^LD&q-oXL3mga9}%EvNI?ehPm(1_E);03%hdDR*u=qc~W_@E6>Q=i+G~nCqP-H zl)t0$a8!zm+B$kna*C;nm*g5Q!6b_(aY~q<$`k!An`0kfz@Jreg3wX(gOfSEil1xw zc{I|Ci1kNL7v>XMMGX;NyNzp~Pr?!Eu$}Y7`Psrxp%nQtk5CGePam0T2-O!}E>u6C zcI@IBO%7nvk%0Bo`H&z{kkP6oqZq9cx$cvkpJ%{xRn7It7@JgAq!gjIG0r37YVt*c zx^h{@jC0%=FOJJ>i!!TnptC#FUR z#)l@hOwNo>Zl0LTj&B*B%4Vl>6VqFUrbh7V=F>Q(G&njll(mlPqa1$0G@IKpFg3XU z=su{emAa>gF4)4=4o-}XO^mz4GvkBwUU}X#8`IA-ht79>8UNXQzO%Z2R29RYGYeCSRdOwGk(GN#6{zqv!lcMqb*|t zgZoFuF&;1H zzx0i~a7v^uh7LEwxA2R5jw06H~c? zy`$MJ?TN&ezEnD~8LGte#Gsp*0UF>j`GTW^6H{4< z3N|BLY*`c2lEz4jAj*~8xv5ck;|^tq2WCcdZtmb@mU26m1@daLKQUpF6#vmNXa=lbc zZU{(^oD1Msu4-##xLkJTm*~hq%#d-4A>=p1sH`!j*_ibPKdY${m~-A0F9< zF#0)?&1Q!u5yk)vX9sdKQ#>4aoC%@<3l3@)Hq5vBh%T@?4X(vcY0*sbXG@lBV$?oewL~Yk?G0o zpspntoy_f@$_@+}^-T}%&km_i{rR7q0=b{cjqm^fiw35r5k)q1Zg6@E0pQWzk(@#< z^nLHd1hoJI0T!V#2g5+ffo^$oiEa&y((p)OG-`zIGML~GQie{(mu)DoFVmC83m}<} zCG@;41{O_C{2w*2$f1{)JSaxh;>YzI|KnRH!!=q{? zgYT&r3oU z$>(R-EtKXgvd?6w;>AU%;2Qo&6^mc3`UO{n(th@ORZe}0{Y@#SNLqoHcj=cQ`&;}D zc_E7w+kX2uhMeP7u};Xoge!LJa)ztzix@6a{R^o$y2qv2+=oEeOp!cviajJb{QQ0Du7`1nU833}!&+{?mgA^DzaIJ4n}P);HrMQ|)4f|Py;FTzr<$ZvopM#z zVw*?WS!y5Tx)$3!hBT#1xhF=?^ZVnhRvmLzs&aHs=?(Wn)t~pivc&G?8mkl%t+wkp zUSjt#Ty57fT&dopWa+am88-tI;jSVXE1SYP2frw>%lP{fIG4<{e8Gc{Bh&QtEay>Q zb6@3!o)h&(K3Oc41ZpgnMjCI5i?LR?HTTQdav3t^#g4p_wiTCf8*)?xhok`~8HMSh z_)W3HxfW4=_3d=qP#58(dt1gCW%A5q_hZXqLO!D0eDYu6(KoCGc%A zeukThjP1)C1Ka+VAVo-{ zV3Ar!niS~xYI`paKd|{&3dr&(QL9m}cyARg*F)~5EXzy5N|MUGJS*~2^75eWIh66r zkVo0ongyYhg69xGSq$hZFCLZ0v6pklR@(;{>TjGyd8IIwdr=a}3rlhpmkO)E0{=Tk z86-R|xKw68Ep059c9>7isDPUn`eQAf6LfW!=*9twx!Lp5QD>d{BuH1$O-5W*Dlez` zx^@)Q5_DAB;mxH-?JDiFxrIKxY~*-}-N|sZ&2fcyMmYtkCeubZX|S4 zIFX`;LZ(cDtV zqL5BS7VUpBM}+6V;~LE3|N2zX=Ni9~nJUCK-Xg?0K>J@A&AeX*B#&k;wR;$&wJcI@ zFH~`9!fFvs9ITNFdZEabCr5c}2UJhkv#qi$w_nF4c{%>asOj?tHI+q$Zn6-f7I?WL zCo7~g#S5I{?dL>(wIQ9|Dq{okA_ApQLrxU(qA246|07WS4{!#vtP+ysvc@Q#q*tsa z(4dZwNM)$zwcTo|uV`7+C}4ZZG92DCyrQ1)pILaxshS6Bw%aQA+v^CH7~f zoGohXe2M>yYQ#$HCpn9nXOC#AoX+atms)Cl@qEIor1~{_d{(H^G}8b&iSS*ebA(k6 zjc97T6nWLTj+>i{-z%K;m^j8!)Z zKsbu*%QX=K0=~cnBKbs>tQQiL2^6!BCR>eD0lMPY_RUh0w{mRhy`G;FypfwXU50Jr z91KvE>ZPISJVs1Lsz{AYC>YNl^#^QE>UHon*Os5_Q9qYtQT2Q5!=MDx;{|Gr^Ke70 zflubP4w$P{vNwgJ1 z4@o?K^lmRab7n16nurC*dy^w#P)Ma0NqS%;)R>>BzYQsK!%<`2$6iXyR0}YZ($fEt z7JZXjBr}CEVLAZ3!v?AsHWob80cxjG!-|0EW!-h3t}C&!1v)wPqe-Pze3l2Wi1?;IGN$%fGyY=&mf z=})4-zGNbq+L?6Q`g*$DRJzY?i>Er1ttk2&vRYS%E!q1(m%1};k=;me-L}q5W5aH@ zBc688=})1B-SKV=Skx@IH<{dFltLf%#53-$p1xKW|B`+9z*V8nR3_7zM5kI)R1j)F zb z+;m5(EfbDxtu~78><7|d=%}uq?www#F_bx*!QM*GOfG|MlduZAIZGzn?QCp_yDj}~ zk;&W?=8*v~0DDliuIwwgqm2y%?%tWt zNS%w0E2yvs#Db@Xhbvm=CU^H@)asj&nnsu6nVzmxB7ZF1T{O~}u&lGLcxPu%A~Ja( zJ~V_q$myDyk@U!GY00L0Q!e$PtsfZK+TYvhrdlzu2@_XRu>|Vv>%+{)8c{DcV|mA# zh}iJR@Ps=#F^S~qVUVJUsmLUaAjXfzZW1JhcDDCTV>r-alu{i&`HXN~b+uP@8jINl zhNdG#5o>4@u;#+a5h_Kuj;JcFI#edF1o@aV+& zKGd*(;6N68!Q=brA3mbB0p8G>YHQ2K0jAy3(DuHb{$31!h6mas;gQ)S?T)ukP0UQz z%*?i6STYmoEck@gmCnR7{b?Xs((Rp?4oCYf^eRJ(7KF??2of=(WpDL%^@AD_5lbj)>Q6&`45iZI#Ry}sel|y=yW1Gu-Bj(aL`S^O&Ftw- zVt$ZWrZn9OlAdafj0^$w8p4~x6bf)aLXiNYN@rRVJjK9#VUo$N-pn2l$Vj+lU^+{b z98+B#t^@I-9pAQ8UpnJxvM9@w~uxO*=m6qF*Zq*|J2?hm0SlERI(QLE{DZ&Wx z_?Tp!iIt51u6PRkjp%SQTBh-zP(-LyG}cW0Y47Z5@mPs0ERu#;6lx}Eh!K^S2xhB? z#{{T~k z3!_nKh!ALE4Ami)iT9D5#6p{hEB)ytL=zHlP-i+!nffs|z*&VLwA6V0`Kys|#&ug; zI_FU3x@M26_4Q(ksp4kxUKw*C*6oMy+h}%*v-Br=&;=rCt^HkHdm@7e2S>BhMDrR> zKRwng1Wl)cQk{N!v=PWCZDS6~j7>PGVxS%XEf=4heS=sA7}FV=bbl2v3d~SxKp@CO z=eVssU2$4|o#B|3zy~`uhfPFjK)iK|0R&F;w8`pJ%dlftZ!#K=L>rHWu4j*HquUwHY8*7p-ruuiI7^tB*BBo9gRh z4RsB5jad+<=1wXh+1bX6TkwP_ACd9ycvlhvNjG}jNZDwqK-li==_cukq$x(9aMkE& z6(ZwVxQbi^i~%9A_QA=KK1p;lr4Q@8NHPUhEEF6|uRY0U?@xvG{7fBgydhg{a3$fUp(L6}S`+_B5; z>dz#1%ae(49Wfc;QEN+2PbcXn;$ww2r#rCDccof0ME0QROb(KEG1Z>UG3*`~%ZB|l zisGZ*2;89HnOhweh$P@O21wIIB7$fVa7Z^M9BHNnLC$UNXm((lMQG))Gz5~tC1~+q zw+Ad+Mz15@-JR@I+OxqXs7OdwtV0ImDu@~6Ea;95Ne-}^xpGFswt5gHpTD#wJL7vI zB=;t|XV8~0uSEnRAcveSNTZa_8<|b#;N~_aq^V}MFFTk8+75MQ$M@y-6RC399TKAM z#6Zp+*b51HVmOB`djj01I*&CZdoqf0wx(!a{ps(8E&~Aq^NmkIhG$vtA$=B+W{$9Y zD7qbqK+MP#=LIqZG#yNr$0<@ESDXFu_n61#Fvf=&RCXfgbEri32ulnYrf6eiL}wXi z|1@_HoD8nM==CIA&T_+}BNt>N!(-$nS~EN{HJv*!FoiJb;{&RcH0CcqY+7wg7M>TI&$hmG;4stCsXy;(dK7uy|t?leCv0VXp;RtC(+4hZklSUy~AM zQi&ZfyFis{g=L}6>e$uU>n4S)L#k>@G?1*}W_sM-9t4tP9|J!;FflR|-iQ$J5{43J z@L?KNri+~^kSY>&+dw2!Js62xWgDReT4aT?Yy5!y>!N59#i(ddb8ankCYF3)MiUdz95WhOf!ay7)EL*s<&RHL(=LGP^T6mq zcz{b&DLy_y5?lls#I@L+9vIH%4thChfuvJuQK>}_*^%rc&VlvH$^&FrpQI*w`n#Ev zrjuRq-VQ99G_`$aT(q#(Bu1GOSxqc4pwLwV#FCQOR>j0pu~SJA>lMa}=tdS!{5VG< ze58d`c;eta-AcXCyu`Pc68GAZN_Mt_BaxS}3R7FCcxi`@V9Zth%2=1|hM2$%4@|wb zp)MNR*4)t805P^X+Emw6w=GuR6x+77xjxpsZCkW4TA$tAu(gdfWHo|7>$EE@glA0~ zCwBt3d!YJ7B4#o*iIj!@WOrf@+7ft&3HIJqhqr_ytqG{c7~Ob3Sa{|ful-TvBZjZftkP>*8-c#i>N9W!Q(wQ zF}8PFYb%;%KqDtxOFfJ&gbzg3i5|pT_jt%1nVHqPFf`*n_}(8>aro9#`|=Xe>h))Y zUmt-9r<1H_ltmYTcOv;yMW%6rFQ-l0GpsDQ4oHK!?2Nw&G#(i zg<+X+hanE)2*W5A`W*JB-?%QL1TSgOToUhzrEBSj82Zd?ItwrL{WzEc;WYu;nuBPj zld91%-ilC)vUjw>NQr%eOk})<4WVQK9Uhu? z$>exmWW0JycUvnNJ6{cxVk9aPg5>ZiVfBJU0Jj@FtrLVPI9gbc&?hHG#z$f2P{Tzl zNVI!JqcC;mv*jWtK40G7u1p^No{W24M+3A@v+M!@|GFFGZKF`R?d=fLTc`HVvcUKp7 zC&(U5yCS@)N@L+|jTmNLJtXM_xEm-cwEQ$%{KypQiEk_rkeEo~X?qf;TB!W(-CacE zS$*zG#K~xw#I}nT{Ap{TO{7M>KjIFKPE2R5X%MTNl^dI4+;$V#iD`)^cJTh*R00HX z@4(;%8XI5>ATxu{v*u9XsO;@328O{AIR}yj?UjPGEKWjQO}m*_~5 zZF!ES!DeMaU9~AcXH%9fcl-Q(EXEsV=Qs-YTC#tLcsh9D%*a$WLJ=@mRxe=9uMSWK zPcO=lb(40FQ|-V`kUZHVojy1Qg>r0iAQwTfh7NYs;LITHGcXB;;#XCRH%JRth1b&i za8(Tjkr=Mpj(}uGs}vE3C@UON5TJ{Yi+4)AnMeIt9I#7dxd+qGMW_?mp-63QEmf?< zZzXP1Y#KT>AHE&}n}L7~Q#r:j1M>JS!S_=U{b~C!jynSx6uO|&@T$zL}g53Zb znY*8{W=|T51K}$%`WZTYYARPPP=dNymr5%uACV4PqhJl*7OYM~NgzigF6<`s^BpSK z(hY)?hYG!zO-MXDqVzeNoRhuj6ci$K zDqwc5YiMY!YuEZAtXWK?HJj&KRcyGKq3RXCN9WA1`+AW{0?Y* zWXY)pIp!^q1uO7?37!xH;Nb!(&c#d*43X2z97z!O17vYXcASw;qm*LbkTrIS+8ib^ zf|z%+rVXBvjSwubG}#A1(*}>5Lz_?ac4(ThDXjMqJ*NlbGZS~n+VbMQJ-k=R`;&ro zkduN8Hi48^$Y81aAb`rAZp1uKp!szkQW9v=v{|3b_*&QT7C{%3`J>r$32eEDVmf!L z7or%<`{VA=$n*eqVKD88>X=$p1?7t{`K$~NL9xz-V# zBe$ccX9t;87+Z)||jD8XsmCBC@LkV`+IwPU`rBIIcG}n>AV38OKB|%AgxSE!zDq13{e2R2K%6;)A?2QEDt3gCQ<6CkT^i@%^<2=v@jDr$K!GZ0zEbJ+h2#U*voqPp zTj;<=*>oUMo zkSIAgE&hRIk%g%cn}qPmVlNnyIHJvldH~lAmQa=A@9PcX(}Bev?@p)4nFCyym@*L( z$Y^Sru;?1x^k&-DPkTP>T?UaDyKB)#n1c0Y4DUC~zJ+g$XITz*SWgb+y?f1p;BZ2E zi86BrMF{54_2l?CF_Q~AJ|aP51H{1$I zg{T+HjGiDQW6Gex3`P$C_NlVS&)>>7ot3Zf{Vwmsl4EC$Ty%;q_^kvXt!g2?ai!02=qJlmHS6w4B; zvIq{eUk&_Yn}zSsL^_5sdprV|drwR+Xnw;+W5QL!15_#?3mf;S24yx&!wDw=zXC!f z*-9Q7IRL6iO9@r(#K^Tn8DW2`NVq@fTn5`3h>B9_*z5p_1N%MG&;asPSARELOfE!~ z*rB_C?Zx!1g-xX!*y$@odYOLBhnFz&M@3_E+mV!%Gw4=4p; zD&7fegG{fvbrRf;X9v8%UcCN>&1=}*Pm+(25`f?v2D2J*TTMqu22@j77b8y{b6R%A z`?_g^Rn0r^`oIn$s}Z@G)+KurMCcl#9xF2xu57LgJKeJ#6Ql6T=W>XlvPC3cS0Ra$ zr-IfP`+2Z&C^D;!L79nOur<>_7=?)FSqoz|P?pd+q48o}68%_+4U|k)N@t+ykMHxm zFc_m?v0x`_w9Ys66&me8HAy?1l&J;k=Zotkue;DEB>ySWEPR# zbT8;z8^mTY_$U*<7Gr3j;AaoNOhcH#psPJ8Pc>sREScgodXdyae^IpvFu$}F3<|n- z?JWMmaF~OT4S6{M@nC9Vw1sRPN4B%Y=Gxid<_>#^b~=X%8qF0KcJgHKW6)g5ok$s2 z{hkmnlWAa2G;BezDNFp)tk#xxqNsFgf{ioE&cxG)wZ-d<4kpl+3iEBE1BAY<*o}j6 z5~m#K0;U?cU67HA!qsRN`N7H_ctqrPZR%IsS=HbjQ*7SZKQQg83#w@B>Z}XFCkxP8 zY!VTro{!SfQWJ`igxK3o`-H-w;hVaDVAP$M(#}5ZpxNZtD;8%ybwQ)cmSc8S)YfBG zE#RBOJN7QAD`*`?O6V;Oz89gfC;GyU3%OlNvv)`Y|^J_&4GZcD>CAOVau1t%ETl6`4t zj=<9@xowY}1%U;ykudtAUt%^f&8UIKgMQ44r;1O~yL&P~2W*a$Q#IMwh^hiZ;d$?N z##?xo9QIc78-=3))fCym0H%I1V)-^1<&51z5HH_y@d*s6$v^f zXqxF#4yEf09;cx@*K*L<3vg{nD-w#}-%>r^~CJxdS?}HzNR}FokEj%DMLI5_x zA{Pm-_w7HyBVcT=^JSveICc!X#nA#5kG>3!5Ga#MFNt(RBd}L*L7+-_BWNTm0XWr4!E&Vga)ude3D174d8qMG8V8K;+ zRKfD685OZ95#vdl0gdUx)Wfg@N69Iea((+ed$~>PbR40v`Z9{6gd2$J(*^}O6Ep2o z(gjI2fx}eVwLffu4$}Ze_SeYSrq|c?cUHq6BclBQ=up!pc+k;~G`$R;d1g4m5;@i( zd-ss%34O62x|%;go~G`fuL;MRh&roHAQGJwi8fM*PLtsRh#P4m@0Xeb#I+)Lu7`?% z1mfDPaZpRV6wy-{Q~Hu^pv60sek(E1I`--$j=`1(*r^&DH2(;82W*4)sga6N+Zd(| zL&J%?8Y;^mHe|=(O9q_-M+^F3Y`~to+AfZd*I#)X##p3 zlhiasR(9}ZaS_Wufh7j-uU51xs=ig{5JhaFEnFqfvhR9M*{@2E$5Xw(D?uFPF!%%!+$2T-IIf}9yrujTp)NY;` zC2oYV!og9{AqsRt2%v`K>Atd?GS`+&$A&!iOjM7w;UM~fX3qK>K(wIqC#R)9y+<5C zfg~?>dQ@#dhc`i{B}WJC@rc89o?@Zs4K){g@3q^oqqDWKVQX_kG}h3#wV@%}gm`n) zwpepxb1W8xV-}7X#2Vm@HH$(>2JXOzyma)wr?Ga7Bo=b`{GA-Dg9O8kU|cW{SYe<7 zgvg{~@Kwce0`}kHqpq5`fkHL22i4Tz0XX^MI%3%jm4av^b&l~tds_hY0+l6jb`v_K zS8l9s4ugjQk^IY=3r$XU4>mc&QJ7&oL7EFs#o+We$5VmaL)mxX<#;M&puC$FGSM+u z%2!4;mjbmOW?{4C5K(^NYEC224|7Cl2SqX3KUXWbm|x% zmcbBXnZHxVQ9h7v9swuUR5%e~7$VxjD*i9z=)$5Vk$-77ywhLoWW07(1|!6Gq*3`h zpQ2x3S#ZziAOjPeAU1H)D@2F6+v1>r#8gHw>KIdm5FmGWT04At+jNP<=C1tlMzlYi zEY!BFuc7J5=2+YKi)@-JoN zi`F)6Yih({iu#7;##nuHYg1iwv|($ksR2%=^>8yqIeh2I$_c(yF!s4e<7d{n} zCZ}N7GnZr$vO&_B1K3>QUne2OV97hHCJci?mV_K4K7Hgyo!(LBH53PR2_GhCPUZ+1 z#(4wy??6=UPoyKc*{Rv=c+Jps4GC@3LZ5r7JfL7lIMXZz%sHqmUxFC+?ZzgpqC9*A zdI%%{q;PH}Zfn}iMr|=qG&2Vw(RmKLmD4jk5_3Il8ZiSVE0!k3jSiFFQK1gU|Ee8^ zs##4ndEKEC+5v||*2QqZgHJ!>R)Hi=a6yJ5GR12$NOb%(pXid(LdIK|OTmF)y-Z`@ z4CQqulQ1C<1d#|O*%E z($+UKPIQzVgJFT48I^5vc6STD!~DZOV4Na`rI;makz+{KVTsI`2W(75vF1poCyYqI zsglgrZa0*DawUT7mr1mEQoFbj;V2(@3(y`d3_iHnWEcBGU6dVwY;|yKFS+x~b%WuT z;&(MXnw=fMjW6fby;|EW4BysZmg!G0K? zaE}Y09|S(aI{>SQt|X`qH;`2U-Z}oMOd59VOrTq$3MfI(@T!~R1_kmsqpf#zs?Kw< zVCNhjPoNKkIaYtM{{j0}3yv~I$nXU66&Q}NN+qWrLO~@_22PLDMLf!$L%Y~Y-|vN% zopkGhQBs}Q?`;ZO12~_bzd16`Ju?tT>mi_N;mZ`ARMoUQ(jM3Lq(XDDZ(xjmV*%&D z5YhrO3)NW3-oY&Jee@2FFJe}n-wo0mS4^Hv3J+_7y=Ih)Dv z(1Y3d4rHJcO+bPvWm@#t185E_5gKZ%3{xDm7dA%tK7v*SMu)A?pb@YXl7U7E#dP)# zyPL4~YZ;+w7)f%61hJtpA(mEX4Vj)DFhS#@ruoShw3pn(1^D3|Tveqelda#R zNCa*n0II1|vH`g_=EAYN8zw8J*a5|dl;-?1;V*CFKEE6h@C)qU7s$#+HHA31vVieNP77!R?&|H8 zBLz5uL~5%jJ_wQG18NSPlodR6m|XAYh@?Wif?4EN{?@R<;LCg~OgFX@cGAr`Oqvos zI8S7*t-3n#m++~sPuzQ;x6;)q%14A{SEZ;#o3}wDY1pE9XmSkgN z411zYb+POwKCaW)Fzc}gUEti)B?SgiDO6bXyoANgj+|yAYTsE>;7%*jhvB40%r=lo z9Lqp&Yr@&o_}~=(;D@;7fd-o-+qiaxW|1UNCf4j@ZZss=h`Bz6FQHLKav4P1Ov+?9 zKWJ4?Lpnu6(vniKQf(wAkw-GqUC0VJHbpdnX+4ER?=|>lSp9+Z~USm z>QFgOoU23VbA$-v;5qU@Qq|c&o`UjS9m{vvGwAAtc7Sa5>^ZyrpbL5GB$NCK@k}HeAjle$Oc{8DdiQI;P~vAX3}gTst?yQFVPyG+9DTg8uO!k&$(z5hyw98eJhW; zny1;f%guF7g38+2c;gml*dZ@xa5f(D>8@0!Bh{^TZ{hi^w{D@|@qc~_yXzabU7bPaljSun zWU_vRG50WZAaW{4)HX}lcbCm|Wykhrr__EHyFJ4T*G$v`yJoH4-U2)KzzGZk437c! zqGB)2Ia@f}c-m-0Xgon(WSa$3=4%w#VJ*O4wcw^%2&RVCB(1@KDUL1XYJ9N_p=i4S zM@eNPp_@2$kquzlN+88KZAhdzvrS8nl!1A5X`IuBREjg(`m{Fo&SVD$PIhz+jQnU{ zP`c#(Mt*2!1stJ6X5^g1hZ%5p&A!M5Bk=HIe;xnEy)M!rNNdBXPJ=y>aK-!yr)A0O zRxTicx;9KVcm^piQCMw*SKEeAhp;Hn7<@t60Go$s8y=J$QLN^Qg4wy=eRF3AJ)0`2FHUIJKTH?h*wiDQHaH$gX3jbOjK4{d7tCL_P=g#`~ z7{NGVxUqn{K#Y)y#2iwD=aB*S;8=18#m#a(zQX;#pQ-fmdfFhe5SSGibOE7@rj9{8KcOX z^>dPF!;z_*p?=bhtrp+>i5vGujRif|Ea_i;+)Sm2H!W)Pd@4Z~b_Y}p5Mm53|2UvJ zj>t}|1HZl4j8h7G$B-d3=uOvd2pi8SzALM3iVgf@r1Dsws_PI-%s*R!X>eN=X8hB5h8;kXh(2;o^~-cO>1x( z!sRxdtt>yPqiA$XHxK}ajr{$F%_KrEB@viRX2%tW}rr=VZsPK5{SQa+uTjl0bbW+2l-a+9FMX_uY5G zL?MR*`8s6M2CE}=wNVT#E}U#^0>W}W81$h^Y7r&cMwmyx;=9xL387UfO19}vrPc0$ z7ArOwY!@{I=`t+>@iTs8wg9++w-koM8~yc0V9`ou1f<6yOS1{ z0WOiH8wki%nVBfleDLakpHjeRhrKJ@5tIVEOOV%}Zd<>QowHkSb>SbC)$+J@qm-L&2v6siziGONXJR&FuMFO6VKRHT`zJ0M8yJVW zPu_)aaGR~(6p0+9d#9_n0MduKse{JJ`}tX&&*Rh=-Y=HV(TK5R@$>Mm+eU%AKw8Im*XkrS! z0Q|%tj8F4z=M<$I&ud1f_wp5p=C--|^2nR!b8kM^ANihfa-pzaallPLXQxG*K{vF8 zO+KQVi|9l4!!f-J^k*dX^KDNu*Xr(Ku50ck>-rO>LS}Zq>xTP+&fS@Ak-MqX7XgCD z+vAX~>%#CdW62sD{G_zVy>6u6K*Dr!z6v4#z$1FB|xQQD0* zH#SDydQcb~ikP#NDkm5~9Q^%LX7jWI%0iXzA>zqcJ|d%Y3XyfdV*#xBvSo*uiErA` zF-37GO8?03S1ZdJ5&;U-McPfW`=xI>pqcV%!F>k*Ej3;wWLC1U8Hjsq>32M6Yn+cm zu)ZOTgwF4XK8t0g4mZkLli83XFI_N)VIveGyt?2|ADO_hixynLRJ9WaC+f+ZBC17S zyp<0&_y;(tZIQ+pFXRZ^7x5NlE^U;ny-y0aX#7+cPUJg#r+;@J&|0x>uEn=6X2M``n}fF>tL?LAeFG&-pM zV?%N%hGteylws!Om>Wx3zM_Wf~yns8l>(pR9a@cAleEXwAjKV(e_nmxT12@-58Xk)8Kdk55tUO+iVs8R0Cke%`LfeOJ1|0>SmjanG`{Dx6HBs_DWCG1pkKQ`(#cZj zF%w*tHu*`x*h4ThSIh+c^iE$-TRL1{#{wD-nyX`e>iClAMnNrzT|~uaM{TU-5;Id% z*oCHTHt!-UJ#b>p>4;-TxEHkhNFs-pa{@v~p-Y|>1u>)_E>={JMw?EByG{Ki{S6{prWsM^I>$lEJlR^?Qf)oDD%8Zrb1Z$n z95cB7^<56k5yCEh?`1CzP~vK^nW-!t?GTFqaeq@7XFdo;#FJuaMF#9^Sc|U94rWtX z+#r=5AI$QlWVnNRK%B3p$M`-n%0pL>$qTZ?fFJT3Tqx$f2z&RGQMq!9f!tnj#2;Fk zV;3ZY3|eg(Wbz3{3NG%r2|?~f*93+J9a9Lj@%alME10uWrOv0A*Bri5cX8UQ(u!Yj z4uo9~;D*Auof+>M(*$k{%4J(d#s{!ftXa6a z>qp*^LK-{`7zNWgqB-jSW9~fw^SrA2|L2VZgaA>10AZysCIp!{j;1Xq0V2tkEn*Ec zJP71PmSkJlmTV2%X$G@2?65b4RRRHHjl&S8snOp8P?D#nzb&dP%>?I*9^ODM^Kx+UiBO_Rma< zlhC62K&~{9b0sYK>54a)@Moq56GbPSAv8TkbBGp(W9)}2QtiM&zPAJvScE}3%_ z13}+cE(qnthfonJ(L8#kBi_T*YhyMs+u^2E^st!(5?3ZhK zq_;li@BMFcDLZvbX{+gOAHAcxgBSab;>sE~@(d~2iy}`aeAES2BMk3-9 zu1)zz$1z6cv2GY=F9C`V$K|`DkOyY<5!r^+7C4|JQy?#G+(T2-S}`=p;#llD5+Yfk zwrZqbM3_WfA5+YVA(-4>l7emj0n#*+#2?fB*epAPiKrB(@fn;~vM-;f|L1c!n5ogvL|g>M_cGO*&M!x1N|9a9 zBstPVwFj9)eDx0M+fv}xkGQHZAY+pG*2$+$i>HgQ#*nbZhK)?5#SdO?<876uw5p?A zRaYv!?xN@q8|H%yB>YhVf_g{rBPukt_#%rFJAg}C;>=A5sqUBrd1*ASkZ9yY&FTZ2 z@2ccE2Lb0XLuF9dbB$gW2G`P=D;McR0?l+|en-Nv1^u$fR@iJTzDUN^xO>%;`(nde zLdeF*);{&NYLQ)5@?pwT!88feBXlu(&n&G>WbsGMO)-VH7@SZcx=@+s1%O;P82nsa z6S;IbQ;{Sj&^%LE<~Q;jgbup=^5i`U>E-?8@G+(_v{Nd8h7oV1kghzC{NEU4nT#IQ zoub=S|3En+u7P?aj6~md+{z>!rE`r5F##Oc&=q5pH+K>|wt;MEJ#4i-y{K%7)-N=j zyl7ITGDlSrKlFf0ximk!uQtBBHaR^;7U010d;ciZJ6kZz$@bv$>f*#8PBUEGzqC)u zlC4N7ODyB5wm9cXS?ffP6b=ge0k3I7NHTp?>#pT3$uvW0tElp{OiTMGg6>9mV+)cB zi&66>C^v0W&O+K26ZB3gfJBXPbGL$Ts9&;5xO;YpP_t^0a?$0tOH_;OCI?8~HEAw^ zk}+1ie43p3lC27%@mQ3D*7F$jgU<6&Z%Xcok|-hMP-vEyc&K~mNF0>MEyEbz9~Pw& z1n;V68FD4@ozF2PH4>NtnuFL1yyAd#WcA!?sYiL4^HK3Ea21m}4wm%5$%@d?COl8* zhog}?r5q7mJj}b#nnoA0AG2t1Z3&lfzDRP)IrO#!Ra}uAc>8fbx@Rb(HO*Iy7JrrmZIXiLvY1m>%}`Qaa-Xmz!4FanOLn$>Ja5SiwUVnGhRZKi zuH)D$QN%r<$=Lsuvlp#IbE`Lt$T3%*QLSg7k}oKHGZDsQVV;`i6FR+@?%s?k zUX^{)1=|;sEa{BxVyWKE<=*(SE!Ddv={-GpcnyXqY(M-%Q74M*9+6u$$J>{>NHnyl z-Uy@CTObv+bs!$H!!W!26W2ebdC@7$-lb*HDJ@If1-tHi`N6~=YRL!FQ%Vn}r!4hg zdP?cR^pvF@4E8P=EqE}qRhnW>cf7R9y;;FL?Qg2KB`MiTnM95+KrdL7n60X8!MFzJ zf~G}^0WVr*o}L9}&>l;eR;mOIj8t3THqFdVxFJs~Lw!-EwwN&xI}nkWzy)$aep-B>jK>Zx!{$VxTd7Mr+}W+ZqA=i#d6vL@1to(s>nX6$4GD+k(7Lr?bx(IZLMbI@w(O_%6T@rN#N_XakC_r9W_H%$}RAb z#*4YVE}o*6KZ)W{{#(`5q2{JNuf9vrnMW@)?-PXna{qj{m_#H+spds-Nh6tW8dyK3 zp6Q}l^kQOqm|+n|M+Q1|bX3J_$;K!uS6gD+@aUvws3?Gzim*96F4Yiyc#RH(ST=)Q z8i@oiY568WYm!fwsM>UE1w)|>u$rMn+gKWX8+>hJT1b6ZkrarI89}U(LQ1|wo`oKv z$Q22++9*o4bYs<{XIJHL^mUZ!1M?y!JnG)qwP8!u-QGcQNub!BQMlXHS*p@m1YyF zYX;Js%bi`l7=)z=sn%>892kTSl|viVS-siu&ZM=#AvKILTr5da_&4x*^P*2Gs z$5qK<^GVn%&&td6ruer^Z+W`Zh9Pzlndx1fqZ>53OzasQ(XJh$y21?6BQl~a0tq@H zlCuZ)L1-;284EgGm1&Vg80ZzbPQu5uj4~sk3aY;C1j$LAT2y8t;7WNTk#AMDC8;w; zPRYJR0MPDf>VQNcw~jPBi`Xi)?iNe5h^`NwO$6DJD68UalxS1CvgOkYF6(N?^fIbs zh0*;*=e^Hn>6zAA6QY16$rW7;8yyiFjg9fQw5oI6QrD>KD7*Mpe79jdW`{LPz7Pf` z(45r%qr5ovv2+S`8^M4+`i}yYw8Tx4T$ZIR1wsZyq0G0bp*!p9ftypVxK3o+Vj*8# z-)w7>EHU2b#T?T-f!?Zz)wrW+JyXvuc^FI;NFB-H+d)@6NrWKD+U@Xu%Mk=pt9KMV zl`ykb@@=j*f0)YZTq<%rn((L8%)Bi-py_9HQ&?!LjHyP^6YM1g!E7<*?*6wxR!%Qr zl%1uR$q{v>2wkzG)UFplFjJuRQrD@yeLY`n5mk#CVZU{w+Dt_t+?>pL!f!93aaoVM z>{NNMc^nKAp9Y&ae0zw>@>!GY?H4Hlh-jW<^E%5*)wQ`@7wfS{h1d0JTxIZdzY_M| zt|V?*jFf#ic%yF7th8!AEKS`=-fnU@OtAmh{mCNDzJ)ywC5$t$HJ(*BCmNZNu|QAO z&@(WL)U5+%IrZq!JnB4#q+nN8SN5aSaiEXIinZI#-ySl-`H}>YAUL0jTjFaUPOVEq zVyjUO8zR3+_*HCcSmaOinA7BE;!SXPpu2 z0gI^Ifs>r2Gx6Yv&zBTD5V09T6r)>(+c7>3TWIO|nw4kd;nlb%<0)qU)@~a;eNg2d z*abwNJm+Vd@gAYNg*WJq_Ctf5CJcvTnZOzjgp!HxBA4dEJLUD0eb_T<9kwI6^=lh( zEOD9~M*ksIP91X!J%ND0ZF@1Hx!Sfq`EY2|hj>spL)pN|IWsj*1r#c#GfFyJH(?=b zR5Qo!aouj*QOB^j&0DnLZZ+n0#N2yPb55q4N>Cb6h9~qk4S?0i(k4e(9WZ&;#reHh-2t=O%O` z^qqxNrK#HKh_#METSZKP>we(uv!P-(2CjOh@W6gsAd8>8yYTvGxaF4>wHLlJDURR= zLCCC^KIOcW$LuDRqWZ}sS`|$KW-1k5RNE1X4I7yQQfZvYiGOs|#ydTjue}#VCw%O1a}?iDc9fCQ_l7_GRc=-{6*wl5o|_ zhE|ZT+KdZc3>d}8Y#g#=^DpVdqDIVzCa*an8nLY^f8+cjYegnI2EEQ5klV#FasL1- zS1seJZY9u5eY0BEw61MwriO4^E3$Ia`qp+z2lIdH$dSB`1U~E9Th=y-Zx+&_q&KtK zuj>lZ?v39zZ5Vb8`R=nf2iwD;|IvQ6|H#;*!Jx;#KMr-rnyPdki^9n3SOmj zM6WIPJr^gPN2i1v?K@2Gefre^Wpi`!gk znO4*BNarS--Ojb1c@CqXm5tTeE31(e)fM^*cqWi#%m%4fKE#&MhGPkfk#<@S0&Bu`!B3D*+CV_^c~(?!yuyC9`jWMQa(;Bikr zbqq8Gtlzvv{VEQ`*rbOBymN(G?Af=?mC>7E8>=fPDZR6AWpx$qGtM{9Hb&h^ojwH# z)*_j5?X1kU-Cetqn+AGJvTUa(HCly z{FbWhQU=B4u(7d05)KRoqra$xjaxdFgZZ;^ z#I?L75LK@^SIx*er->1F-2c-hQJsUYF*RFyrEJwGW>Kge`4gl9J%hoAP6BFGdl%R` z?>MlaPQAXQtoWdaxHTw}m+-12;p)~SnB~QU(>P8+N&+Nnwe6<)*LAbFO4h2XcC168 zJGW>qSyU$8`N|U;i@rC8+;6bvHf-c;Nu#Wt?Dn$aqRo%+nm}g^mwBg-{*u5rw}xQR zyhwx?HV(ga^&KT4tsGZtCPh=Gj9aTb8pt*gaDeUXwk1mee7P&bBhpuJG3~J^w zmW=Fr(NGcMp}C3Q^wx$=&tS!3RCA_`%lsme}4SQlA@f~rdxTOnAoikBX( z(8~{)zrOIn(Mv{e=~-j*otxfSn}G=}=G58HB}=N-qb0L&qpoWm=H0U~;j_pt zqXsH1Q)9wpLbi=+^CVU=%h_8TYbypLonWGQa1$>CI$OCEQ3ftZ(FXgsBy6?d(Jfzk z^EP~e-5hl}E<}h#y=oNz#Vdv{Ym1oKk@|O8wiH6aR$(#!0OHQs`i`_yJn%c7Wbj!<6E!dCiK1{Rc06TaVUWSmx z)H8Z`Tbp`P!%)K#O~4aXRWm5e5jQk*fNV%3GhI}t2?bcnxrvT3$5Ekn?0ks}xZaeDkxzh3?KiyV^W zyf&G_e<(osQlbq*Id=E8B%NX4eAGl^#~Xm)u{g8dt5tQXswX+1qts29(4Hc&l4qERQvK2p1goeJ)cSYJsoW-iF8;}_+Deu-)tcf06aNky(& zdeKkdi=i*wCRP-A1Sq#l-;to;+ac+9%&FM#a>N8Sp@J~mljp+mCmmxh9N#^6 zC|D){!Jn47t+ z^`DZEdX}HAO_`<>vxjPu%TZ`{44?xz)#((=!1$SwTG^%-zNlyD8u!mkOlnFa@pN67 z)TBl`FGYkxc-k$d)}ZV0r!4&~-3FWtLpaZP$MnO?%}bdtLf<~pAD8BcCNim$o5<9= zi#|yD3iY04k=4e&V?GnZ^CVMIXw?BWLo6C4kyCgVJFYe_KF3U=O2fwHd6q;0W|kDR zbiD&T*a0CVl8??C?JPr}kUTDC6%zTO)rR%c!(H(R9O8$RIHUT`{u)VdC2G$JsHh9f z&mom<7JEKutFMt4&T*fL_Z34A%ygYX-LOhZd`hajqX;O_JGK$^l@lF?*Mj4C*x_<% zhWzd8x>Xse?h~b5j&ZcD$xD%`uEz%>!|`tAPMaW%QXxze$1=FJ+Wx8Oz<3%nUKJ%L z{cRoP95RFIzgnPK)fPMz%tWnOBltXthNru;k1YtPloBS@mh~ZvqjB_ElIT1|oupZ0 zefJR_xPgEiPbJlIFR?C3*m|u+_(G|1v#KZs#7dx(hI5yz%UVu<-9r74;2Sb9GSGO) zyX~iS>*1m_rAcV?c^?lP3gztQcvNzzbq^z)(Z5{B(AkK{eODVBKe#Y8Teor#ld9yK zw#7}`P#;#6XlQY{k*T$i5X*V3Yia_N>~As3_w6{c-+*tT-vk z?^O8?D!Dsk@q0hZu~lRj;YjbsjiR4PvKb%MOzE_=TCgbYU>G-eT$e2~25OqJrCCLi zRvD*leXZWns=3gb1gME*y7x}+nyLB&0(dGlO1d&pC=q>*EjcXvn9S!@_`Ay+iN_n( zRMc{+sd6?KlusdrF6KvJ>NaNSm-Ut#k4(*XBQ;N<@oeOJW(Jo54Mv-^E+RG5*0-!* zFX7mfH)-!^C)%fd{knDQ+gd0$yS@c00HtNydhp~aq`tU+%skVje#g@=S9hJQ0q7!28GSXl%mrM#Z zcBXNHct|NM7O(?i|2iD)Ux#-t>=OHza^EofOxRUWR=mZC-hFVDy#8VjlWf48r}=}W z(ZRFNmN*0kGI~UtKeXryk}?ogQKLyc2)^5*t+&)uci^Di6|TIwhUr*}Yigp1qyU-; zURrD@oFMZ$5xEpD zcYstRqF^StIDKs_rgG9&i6p#>S;?d<)D%0JONGMU%#WRUNm15Pw zv$VgXb?{Wl90ZB@ccPY59m;Y!B>oVtllnu*_3?m`{mCnJ*l8>WxP2v2FxzHGrYaXA zFO*h%MN%WAFbNBAWWr@B<5gANzVZo?E|x@Zh-v+hI;2zo0(xt8BkQYrU$yG^z6J5Z ztIbc2?I-EN+}`u+=&*5~V9pVm2(j=3rJ52EV}v!wjY?=*tVkPa8e{7e6`~tZZy(%< zMM5|Ah0!ryOQM6!8%XBb((TR5w71YM?t(-8+L>~l%Q(IM|6idE zq*mgj61OBbOt~kzlyD1YhBHj>7JFEvPKMGWY4Gxd*nVeW40gEWwCq)3D=(f>K1Y<^MfN~N-%NLWm?ONxI z_@DiA#D(u`aY;~W6ANU&C!)4|L|KK9&mHyBs1#nu2rp{m!AS=kd+m-?gxdTyOLg))S?*c%O&F-^L&{cd(r8OY#=-I;Q@Uiqe6zF%c0G zAR;0>jZ!c1k@Fiza4)gs_)VSmsNSJFK zAi`p?k#8V55yTkhzfrud4h>%l&D-BQd(Z+lXL%*|HTgWrn-6bmSDvt4Hw_cja=(62 zdZbyQJmJ^Mw z!$^vVa1)c0<9Zu;Utj+~Qk4)Hk!o~hPYLe+9ctcLRqP?dAhsZtAK1g4#U%(xCpo?_|GiNj!(|910EO`_F78AQ{_a+jTdHHs%=uFNjZh2?03tW z7J?<();7V&w&UeOJ@KZFwskFQTU%S#Hg`0yZNuGV@*EPJXqqp06E0!}pppbejg1pC z3*;DB)wX6mC$z6^gEMY!A#G7xo74kb+p&(y;%mue)ZDsGxaF3%Et!8HX*viDL+~b) zW(O+T;QJz07;yozTBjNwq7!hFmLoL%k*cO-3Bk9vG(i$bNUm$t%rtIo9`NB2mZ`2} zpb!H?DOsIzAGWXdb!puq7Aw?p3A5h*om#cXM^(k_TapbpxCDfpT-1LM-hOh{o6zOU zZJXIUiQ3Mdl;puu?Z}_XBOY6huSOySk8)`>ccdbOa%39kAd^u8=XE-&xSsj0p_>ww zp9@za2MP}5ZBn;ZHCC#=3cAhG^0y+`@QhZZUW~1&FNdRRs!va>j)As$aa_b5xFo-y zsmo>ySB-WPF=p2>oOn-0Z;+51!VxyF&9_(6_yvI(#xS*r1`n$s(y6azzR5_^-ts0R zM^Y`*W;9PjUHEtT)mfFqq^a3Z)kCnskWBRr6e6a(Lit^l$0ju^YFm+!lfa4ex3nH5 zh(c<0sf0v_v#ND3&R#Q2*aVc7lrPF(XG&>g2DE{cYe#GuRwt4T=B$o|7CsZE!-ZfP!70Su1iex3Fx4_b5*LY-LEoltqk{5a zuZ!d%b4RR{Qzfeeco)e(+245}vG}M{Dnek7CN|fN4~KWHutC*v(J*MLokoQ8nFD_1 zl4E#?h@49uo|;6TR_Z`hcVm^bLt8Y#g_jD)_x&xY?DJD~iN-I1Jffna|F<-k5enti zB|In*3DKB`!|HJ&S_dztiNe%`DAZ1Q(wYl+%%df(sky=+bB%RtLoG}z|A95p0x`>V zBN<$rIhe%81j@`fs`AQf)qRf*qkVll8pkgs2O;AcEgE`!X>*1@iwYpA0n5(Rea2fU z>SY{*hAH17`M=b@32{n2Q34rY+p+zITF9oeu93wN)*~dk_Db53nL*6)sj9Y_im^c_ z+p?PI8`wrz5_O>Tq|R7(k&Dr5EehxC>ZI5t-Vu?mi?0hsSZvnA3zvjq`3%CsZNfA@ zFyzUp+(Jsx=~sl8tXHc&&PuVYq#TXYvY@4qt9v=Qtk~>WCoez@e(lPAyvbI%%v%n7A%$iwNOmwXG++!;hB8T0xi6gW4l*lR-p8?su5@!St z>#ShZLYnBIy55`-HXwW=&<}Ta;-?fm3rAgETK2YtyH!4Rapgh@KgTw0b-dCAG`wxC zt{}vdc{omuXdIQQxYSAPN43coknzHjxY-5wa?y#YU1U`=qo$0MDbqrD^fJmcKcA3( zRY4EE9Hta&H?>%)9737uBg2QM=EwI8k@Os^6DofxTb3PUi&Ra%b?u&+Mq4qDDqmPw zjPfb{w2Q`kaTp`HJhYzrb1C?P4;5lu+LU zV}S(i<2;#hwrq#{WWTU=quMC;lte*2c}2sXx4eUXiyF=v01 ziO>``9~fYsEx1MT+rs9VPC0+At_@`dTMx+vtQtmqRb%k6I@{iO6w`T@$;m0Fj&_Qt zFtWte*~vQuInO6ZB!2LclhWNam_s2P!iLy|!%;Pox(GlUDCZW;!w+ea&D1qG)Uy!j zU+0LEQi*17AI@n0f%ZB43N(q7Gwz_^xDhBzyVpJnqFILQ} zu}Ia_mLKK(B;~ne-p7|Lm3iDiwYF@}hutyjvX_MLPcMf^dQYj?q-r9Bu#pY8#%W=8 zo>1NRC*oM>vS+fO&4`w->Y^fB1aj#XAchU>)zDh4v1MOBkCJgSx_+aZ*euJbxFW^V zMdyUPYP7Q+yCSN!uEx85!oed6bG*-!D-_TL~H`E+|Wy3!W>i$axH@~>{dCB~}6Zb9#f#9PIh$A1?G zIaXI;kGJx!{A&eL85%$B;-Zr;D&cY}oQZ{@u1(#GUJ^GRi9L+DmCXx3JP+5bLVa_LN`pz>RUlsS<706{w2Tx@>qC&}k6o?M)~#N3LH1%c1%0J;~4I{4%&5@vks zB@m^K-O+NcNEXp%$s$@#y>iryqA?ANg1nl=79k+AFAjwGP7ZFA0G}Yz>cZOeG{SiYQGR@bcE{31G^H61&`P}jb&kKesaR=D7mtyMTrM%*fY)XV<`n! zG$%SA)f!epnKQ!d3dhUugvX&;D=NRJ)NL*%rsl>l5{VT#p|w_EN%JJ|{^(Wv#*Qe` zm%vMFY@bV_U`CO0|3I0AK*n<|R7FN1UO?$GEIS)CTZu0{6aN>>ndlg%qOfwa~Nh$0~g*ZW6atuo{l+c5V$+V$9xEJ3n zYvP81k>TpyC7~g& zkp*m7nnRwcv{ritM_HIktfk1)EzBn>ZZ0YeId#1(3KkX7SIE7c8zjG3(5L%}T2Gl? zUrm0wXw_Znbm`%*pkG?lRIJ`1QQK%7j8%z0O4@)tk!HF9vWFGsc9pso!M!WVsxxg^ zX9(YT5A$}xMM@@*Zo?vcBkOP3DzmVz-zV8xARXBJsTSr3D3p@s9Cyre`=cn0yhoWY z@rJ|LUY~#Q{TR*IRR^&TE_DQ(kGkVJvr6zmP#y-}4(_#-JFyYnjx)uI{l@}{jh~D* zw*~1Fig6!9*y1u}xS?MI{baLmw&LGML{oBUaVXFSqqZeh?vPqjT?6mFv~jhHAU(Oi zHna0Fc=9>jl_oHO1e2?33n5?TU5YYlHgPXa$a!x|YVi{Z*yX(?^)^d*lKK^kR;TKc z7pCbk;d@I;E-yjI6iS2B3t9Ui-J@h2)m5y?71@oDc^mhSJ!UnI^g^$k*jN*#1nvrK zukHwndn^OB>O)vza)Me4A$k4OI+ob`q_HHHS|qlgL?F*S2;d`XC zYB#UJOXW=q)e;vE9#xECJV;+s2UX&Dls~MmqDyRj8zs%orrDW=1B-Qano1aRIlLR} zukc3$gAxQQ*%HtI%VM=mfGBeYMu)mLGAlGh!@#iV9A0E-0U)mUGYg z4GoS+ij%+srx7Y&;CVV8xsnHp}Ij=z2~URfUrdr4_4T`L51s&^Ozrw-kAeRMB2AIL5x z*$q?-t(R5D0)grURb&FY8!^`TFWYIZ|Uf0U*FN(ysoLOxudnMqpiJpEk0V4XSa6rlt_i&hSfofTrXHsNY005 zwzJ<{Mua&GHYAtzwAw);QAsqWUOTw(&}RZyOY`j+?#49Sy;&T5+9;tY4F1_|br_xQ z&i?L=goII>SNKbpta39O2YG43)+_E$$;Ml!Tza`H>o1;coP1U-J+XelO>Q&+O}B56 zpCEdPE0I^uCx=4HGh52R8)sxYHe~mCg-c}&CH4%K-_a>^P!kcruO}uJ^{6m|Y?wN< zdYp6&{AUkwHqlE#rrwg_vvO9+J3%L_sOub=(jZ&AEE`dBXDT;KxoyqAYXOk{Q5IjX zRMm?8n=RB5EPKJm)-KGc4S?_w?t7|z0p}!PCB#QbsS0Gt{XCl1&aIf^s8F4(7WYz2 zD*c@LaH26c-TT}gZ{TeB zC_zLG;+-jiW;840?Y1lF+!06$8)k_yJ9fuRb@bGyA_m1QRsIPi;TK~gqiQL?B!p4! z%b$?$aU!%HR6a#6gk;Ucv`$g>V2)myW&_QY6e3{}VD4kx-yTPOV4v zp>Vl(`e){+c3s*zJprYgz0?bBssly!ntbbY zR4-A)L~%xSC9v(%{(eH8rP1Hgsaov52HedJEcFDg$CA#ff!#HgwS_-9E>|Own0#=$ z^Rpz{cZ*KsET3_x-FONpo=ifqx>R-FOIGKWts91Gn>O}0YrLeoIhOpTqT*{e#seRq z?Ukk2WsG-j#7nxh1ILha=f-EpFbtkMJu|zHZFS~c#^As?l4Qev%}wk*cYbnie(qe| zeRomMa1UvOE}b5?&C63eH*HE3P^J@;$LNOWBeZ_Anwnhx7bYM|Eiv{P_aEk7V$Oo; z5Uq}0?07W28swM^UD!H@wpZ5{%G`=FmS>_$-Ov!J7E5%n8=pUVHg~A!37Q#9HogEY z^0R!Q{2&Wb)?+zvR&-|M#-h{(j;5afF)w-y9Y}>MNoALCfZol_FI`V$TOhAIlB!jO z{T2l^GlzTboS7l1Jafw8`D$aclSv_J1ox@A@k6{^qU%fUSBI`UK}qhoSkKtM9gE-E zMV44i0j~!3jeVVi=u<^BLD3Zqvn``lVT&a!#+&oxkwWGW#|5(txr! z__K^W|Dlp0o;w>hJLfv_GBycG;|t}vsVqoj3E^lyO2%_*N3t-PgA0=jljf|iTfC~@ zvzKj_mt}G zkg8p@j-FTBBE-o;m3SKSy*34~Bq-n;(IT4WRDoFDDDf$iyJ##di`b=%+SA{}HKF63QW#5Szskq%BBC*lMwya6Ox}Ee1v-Kr*ye1B zEQ;?fcK3722jjerFYBpeNu9H}nf=#grS;#Fy{@(?i@3#(tFCwCd?!5IeQ9bsXyiCM z-R`;SSr4vW$sob<4qYz)4D?8HPiM5(#5YaMC_GD;9iG~#G%n1Y$Wn-`qddNET+&e_>7=mjLeB)$^+_ot#@eJ%hu8 zW0CB5b^g4nv{Ydp$Eas^9vQz(o0TRLEl-g6WXhjt1u+Rfv;;sssPsfRqb|Lo?;B>D zWM79a5CyJ$Sm#c5O_bPUm$JaUSrm?h+OFuA)VouXQ;rZL6;wo2&vIsXiv_w6?E9_kd%G_}`cE*~t{8fLb{1xBi*JzPr+us+d~HMZb`Z&T8# zVEM!%Cwn2Y=}31S<*#oIDjBz*x#MR;-m-{vB@SLb@EJXaNex!Ff(*wsz5==qb(gAV z(a4%kOm{z&M~6BO9N6cWaE&M(I5auCYv0V_&7@?L+R&nMw9I3$m6)F?w9t_{opN%jHqy+hDAkaaXNj`yI)&KCrE}_EF?W%drv8K0>7q>=L6Os8DWT>HkC-V>S8vr) zI&cB05L?e9%f+P;NH-e;)$E4q1);7E>)PAaGsT+-QEcg8lUcW(n8nt$?XBxL(9%W( zBVJV~-lB3uZHlHI&-~scIhFVm841^I-_#Z*G85joB&Q#b0Y#0g8X4&LV)bL5lgma>k-GMLLbv(d>TRooYmu?6aZ-6cQ**J+rZ|b7V7&-Ig7!S>DkC z$l-4YXHVkT?Wcs&$6p%d&LN5Yzv2p=rCJY7_B^rhKne+?L9{GoZAldCCLt_c6uf$* zDvZD|e5WXb&=2@@J>3I?JD6G{E%+oj^~2_E-B`!vB^z^Y3?T~diq0)ahKbgrNo-`+ zRnPU50s@1}nrUd{om`*#?#4Xc(git6t@1W5c1qn;i7TI-NnB1f&&Zq|WtX+ZF9oEO zk?w^{Q89_lVc1I%qJOuEET2`pvDgNV*S}D<0Y~)wPMbj4YGtF9<(%xp4oWNLgQ;ja z5U)_W$9*#Ax&1zArmM(#g z&cndJa?eWP%Lt*MSC3 zpQcA1-?h6oPStn}N_THw2D;YuKV|0B^FCc;zNbQQ)sTitT^2FqC1iO| z^GitRsVvd%x+&+9#b&w%gt-xn48x}3(b61=0kDgbz=#Ra{+FMh&yjPO9&=Y+PwV4|qo8EN`9l_<)CEUPSEn2sRy}~Cj^|!{F zrQ6Cz4HFUngwdtvm-;Y_hWUlhKamAmG0B_LEez49<1m(T77oNwzpA**u~)kA9pNRE zY>GNW7p+RoGRbfawVVemcJUbt`isC4mFp(#oI5;rfMjPijpgvU29l%20aO_W_SA5s zVpFt;xwtEu9T>gEVg^bU8!=*?Tgd}U2D5hg@@7PipWjZ$_@HaT^o!++b_?S=D+zkkVE)5YcZAf4dKr5?AqhDpFL?%s{6N5EUs(&#Cp;BzK82XRLZG|is2D>XPU zVZ<*BY~~}ikJM~I@2cseAkAnRb*2sL7^e#9#h>DqlvMPe(Q6Zr!hfi4Xjt-!h#x^)2LzLJ zzf@>O+-z-{6naCAY7`&Cj12@?oJu%Gtgzwf6S@@kMFKIXY)F< zxVIlMU=t%sYWL>#ToY;~E?D*jgkQP8D7d^p8i*sLmo$`1dD|VBh??hWvV7uEy_*+` zM1T$z!V(8RaSL^kxX0iZyJQS*i1Ou!twr-fP<@)C=w;vTV^#y=Ze$h%EfQfr$!j4h zhmjdw;j7cS5Yh8k6{)vkWr>vkQFprT&7=JmD5iOS>zG8gb`mY3uCbmxh>B0V)SB^& za(vNwsoZDS-1KlH?r8-;2Lh9vB{KiuQv!|I$f)U*KFql%I6F9IzQB1uU z)`6K9%(mdSVMNaEL4;!%;6w$jCGI!6WFz9=D(=@5C>x)z`X4B(_DbHMg_=4f1p~2O z1|_bJg49LyFL{LY5cCf-MBhiINgy&#U@uV_uMdF3F6+^SAUgGDUdxcde$jliu)~IQ=gN!|ZbfEUxl>6a14qEtXBr>f z1BGJ89S4h{4o2AMqFOn6Le(~I>D{2UIV{GRoaJL=ajpunw!FeTwet$-?0z_U^evRY z!$z?WB54&7OdQQ3V3Kx{vtX}fpq)1}L)^1<8!rBm^-#75jM>=g#mdeU4@pAOl8cst z52jbVWF!+`H5}2rduQ#mkU@NRlgJHP?$fjbAq-Y@@VD>z>RC##43f(J-#6 z4VAVshkM7HIrBGfzzxSUH+VBXa>)-oDQR^DrF*VMkr=^3+Jn#qy_ zUVIjPnfae7E!RboL{{+1`^N~akT~e%upF#%G*a=c_035m9CsXNh~RLWMvv;q*TJo* zp2eB@jQWXg&~Ff~#$2`4Wj{m6P!}B~ZhpTPRc~-vYHESMW&+Jb7GB~+ncSjYNL(Kj zM)R>t6eXGM8ifUsj}}t2vn5+eGo=WoFORj1^?yK#eoWQKc2i{~;s!#uMlZppa?E#BJQnN}% zA4xccO4OB!b@ld3s8`g_+q^X^7h-zq@}piblEPzVK`Iuz#bQ}KID|0oGumt(gqxPg2)8Rz z=+QR_!Ay3%Cu5OAtAuQDTI|_{zWP>Y|QDKI?`vp&%ohm7_!`M1mfl!Dk8? zQ(0-;sOIL`h+=x$W>VJ;MvHWeI*E?=v1*ID&6aFZP1vNEwn=aq$fpfKa{}>~$Um`5 zIUAMFw(Oubt@i!!Clj|{*@Gk(BOm_=6W*o)KNx3kGQ!W7*`t{#nKj%fwV;%jl~s(> zYf3hT5b>bfo(TV0Sz0~x7o-}Jy0rR@cw#X|vx&*vbYHBLlGpekakG#QEOb^M%5+5b zDOK!(Rbvv#TgoDrfIVLi1a@eN5)I|`AS*>zgIiX{YBG0WwaNMlhr+Lt1nlnTYL6^+ zFQYCHI!&9=*s9r3$p0js2EmDUeBWLq!b6eI5@D{z)W;(OB)^hC1|Q6%C1aTZ=4hsL zK!j&ag)JVSmI0e5mUP(hfRYb=ohWqMi$XwBAw_k)?D|TAWTAz+ByHk_6q#7%|7)YT z-E5JC9`t5>6l!_TuSQS3cXCp_Y*N;G$!G)4D+LEE=Ecok5v~ozOfQaUM@(*B=@oai zzCjE<^>iQFp!=HgOeoaNz7$>u-cJ?&<>k(DR$?3#qMjHhzMp=7aw=z*U!zDKZ03$+ z>8zFt3c(@R1sMsC$2>22c~?PVi#sZMmEI$2FC zmTKtE;!sK!n<*A8NT0ki;bVwSRylDKvs4|sXY9}<>wkJT1Jhja(DO4ByI{Wgcb839 zV~o9fhA{CsLJrTDQlXm(!li=1f}!k_$SrtSDqkULOv2yTXvGF)dzH}d#i<>PJIHc7 z=(<_#+^CB9#JRDX6iMFOZi{61=Ic1>r>xSkc*<%=KciS6I?L+#$}-Mo)=kQ*KJ+CL z-I-}_(z?8d$C=Ulclre0PS|!5w&W0!gk{JBv$dULv$In~%SlPs4O=|N)kV!ObT`A@ z*aR-Bwx*FjUMrfWw-jISbYDpHy*{NqHiI76Ki)}phA@FxG{;AB9 z2_Y)qF^FP4y*&f9PD_NO-Vb6kEYALWckkM-ehW(9aIKTp|RM!sFZs9HLq`JA{GDoc3j*#FyYAF zl>JSfvko6m&Q{~PGSE?C7$;U`ZnX(~PWvLCR1T2ix(QLuD`40aQL4(KPv^MuKG8t! z%eOX((HBLU<~gV?QY*Op2bTCiHh9NodH-FD2joF)&cX~DF*ZG)i1n13HKCqPcq5nG zk-48bAy@Cm8wg*ZyzX(P!8~e3ZRhMl`E)X;%{m{NU zGN^l-Bd3d_LeR7l@U5~NTmu!AWyv^SdO}&m9*DNDjy=$hs>_&c!OCw|vq1f1aYc=+ za0&IQ&G|QJ(N_5iHFe?WVH(JH6Ml;AK5_1HM^eQ?;^g6l&FJSL6H{`~mCBQN_Ke#n z%Y%)%)L^<595{r#VlTjTMAYp);*+ZSWl_FG>ojYs4qICG6HK)4#b-(5)-Oq4C?-xuN8qnbx`7e zXoBfq+onvnK9BrbEF1cdiZvvV!sJ_mBQ&GdSdwj3x6e*uA8Z!9@U5$%_s51C) z&a0{qtu~PX?x-@aJ4>lop+0I^1#wlAZRY?=+a7B(uAKZeQD;3L;xF? zIB3a7l9aw}qzss#E2?u7E|r6$ z!|GllD~cD2zP4fzX_J zHg4!8JAZR)yW^=OsZ5k8zVgVqV>?kzjA{IPjj$*gBL*{^KQ}vG zzss8OtY%howM`N~vwg54QbM8BLfFmzo(-~TR2xM|oY_@v+%=&I=U18Z47pQ9YansX z)TNHg;z~NIZboYN2&pNNu*ar%3&X0Z1>v%1=T|eA*gtBunO(ccOzPXJdiWfsSaw`b zf|Vu5cx%f=D6B844fXQnmGiE)%UkU?tEYI`aeh=y)g&#LYcz&iHgTyYV2S^0dz{mj zaq(t6hhvp0&z>$ymLW4H#5^eO7#aq#?D?LkJB-WaVUx+BHh@q)C2DU<3bJy#4IxCn zSTana*FlgJPE5BFol>Q0WD}m?xMS|0nZ0yqayOX}swsf4LZ7RuV=HGfIl_#qG4U7~b8%sxQ7?Jssl7QIQYScj9x05o%R;;nC zFfi2^{t8{g=*V5{5BDu$(Mw6_s_jx_Iyn{vT9Vau3H4dr_q_VVd5tOC!6t;2wc6cG ze$=KlEo+*p=j@-8iF=NO6r8hfYX8*ygR31J9h)8B^WfP-tu0gg$HoQkoO6vrpP>7x*ULcsbxW@d#^yGtQ;q)fw>s_&Y_uZ}4bL4*mbM`+>c@L%t3~zBx z@^hEXhjWyPJ!hAvZRfbUF`TsPE=TMG*7nX zHm@keV5CeR?$L?A6n+sFi_hI%d{IxA{22s^G~S~ zs7~N^7W2pm(Xl27R7nn)KpsKYD$k`^PD%^DMFIqRbiYS+9Hbw~r!9Xhe8=aBi`?k2 zlAt zE}>JVvD6%9VtE%Wk-i_x93jM|O-c{>;6V{(GD{s3+;qcsvaD2WN?4UrGsfC#ds}=( zWx&L8AOU0H#pNiRf@dO-ugTA08s+>&jYP)!Ps!*sxRVbEv>@oKg zONG7Z?(Ya{8X?=6!Q9j;Vk(!Sp_XBy1%01J6okcp)O$`3K^i&}!^>2pS*HgVL-Zf$iT#Y0EjLvU~H9oPb^ z>GG)cRq5LvNh6i=CBmb!^ws+1NKq zT)vB$!BY#`zlnPY(c%kG$t@U+Ty_{F0x$K5MULTM%5@l*p}IZ&S!Wuny4s4V@Qq60 zE55{vUTTS@VEeGIgr^^k;6LSIvW+~(hlr$HSDR=Ov@F0-61QZTm(LF&)er*t4WrOF ze`xhQrD7&#peX=Ue)ETLo*tJnpfq@Rer$wyFSSk!J{QKesp)*m#~WExI+dqg^Gf}P8M|? zT2>ZSGm4fP6rDL)3V3LEsYGrbJ^P5RDxsnBSC#1}ABQ!aNQL4V;(}To5puzY@IsOl zRrhwWm4vXvJOYtd5)-!ZCH`?NKL@jmRVPpK}2jHP1~m$1o_E z#mk!cktq^z`bGKHUJ)={rIQuLvgCna#^LJ^Y4e`b& z>yof_C=B{hH3iv1>{n&cqPe^9;io=Fm!^UV*&w7livt2OiiSpolOTUlD8+qkn@et6 z@IjHPk`S>*{YxdaDn(@_;N>4MS^!EN09D4T^mV-<-C8`>cps2$`Zr(kg1*>Lz;l7A-zzHI|!rWdpA$* z-m?v9d$w5k*OZZ*EI#DyNGtsmk;eq>z2yygg`X>KbH&&*DU9s;FD626HaebbS# zo#V-spj}CssWvi<$z2wvaScSbg{DIktbxrd9k+28=gnhLDW*=IOXw8+W+G-ZO`i=5 z#U`|KYBy%+i77Ir%iQ7-O}Y|>O2R>*nqmVGHJEd(F!jhq6xl)0jzkqQpw*ekB%TBs zs||+8LXF;_Gg<))tUENek9$F_wH~B>^*Y(DmG7umn5vF-rjDDrI1H;T_|_|F%Ox|j zYfH_A5ouj@>QXQpWj^$DtKtC;Fa{|Bf}P*%&HB1V2DV8J%cY(4_V1jZIXoVH^thBr zaVk?pi5Onw{`W`Woh%wn^DA}=@5wL8pUS(ODZGO+UMxKJnfrtYbrb&?)CCegjNk(` zWlz^Hqpqh)t!T)dXiPA5?9&mk+qn#oXm)RbkASnMCw}o|9|30JLfG99aGB0S+f-;k z6e}6(9zNQ+fo2!oV*WO25cY8cVy-5|1*A@P{~+rVHUkMHF$uR)KW%?IVY4-xQ{)wf zw>2A+fb#-GdO0pc^D1eu2Tv@y$0V{=17cND&@5-N;5HGKw*w`D?3HZC_NBVXpJyqY zDJA0le7!HAxDoNPJn|A#hE_{zpz;dHXVw$x26@M6r>cx;bP7<4$3vlzT1o0*a|RMd z7j}u=t&_>3gijOnPf?dHc*MBAf%&FniqAZz^ft>(rpJ5^vU(@kj1C_Ry#^-x4#i|R zhB&B4Ul+FKUM-gwatUCniXN!uJ`cxxB_AHSKenLPcFF49ChoV4a^Ai^i`J1jqhd8m z0GD1NHmE}u*T;8Pc0C~$2s^R}(Tg(hs;-LqYn@rBtD?7GIbR}0*?L*heH;4*G}o28 zVVmYlgdDk4tD;4B9@Hv;GlOGFeE>YLC73OR~L zgas6x!WBjwWs=I?=_V*N53iUwJw@5C4hW+oJvG#-BC(}OEc?`q+%txLVnTCR`VBU* z_ck5rWb4E804au4>*+4)d#l_fbK7(fUQ4gWci|B0THj?gMh$SPeP~Qm&~@hlm_ zQpxs}_fH&N{DtJZX`4%wpJrEBHg~?8Q981id%BPpt44q&{ZD^w$sAVUyQmtciSbam zPeST855nfPLd}A<+>;?aFwh??jbbbC7Yh1*^kbu8-)%B63pSmY5Bw7}L6thV%7*T} z*~(+T9!DeH(K@lLKrx^f60)e#ioO`2RVZ`YtqcAVGk#)el7$iMOpU(0r(4Y4^b|YD zr%-E@N>C_qVqM351flPnR27$ysHhL~TOspwA(^M_$F^6Q3jiS=WYi2kAY$H(;-k2+ z91=63k2SLcemjP`^D&UUU0NVhs*2W&g=+CME?)K)Y0}UcZ`jy1x=D7-{*j(Ws!@s; zqsIC24TMuxXP{9c=)65itE@FvOVm%;B=vdZIk}Kob7I)fI>LTrGqpfVUN-V^uyEVt z4BkjgLH@VnNP-E%7w-}>CUZifB_v3eT$y>0EQeAF*m=}JnHDFvRv~`w(mD7GI4!JK zJequm^pNLXofssE8QzN4Sak_~rH6yr-mW-=;p%t0%JlVL7YGFc@QT?h@ zpI8c#?|VxPOmZ0~^tFo}j>mGt9)OH{fu{JpY9o8+D(84n+_5N%Kl8Vus9avT(+P?> z6#gy}Iq`+Je|+Vt6P~i-xwm=VZJ&R;6K*>BhOQ5GeZ1@QU0>+> zV%L|uzOvyVJugPeH6r}PBrQgmc}x=yL~Ty=t6_+gK)JY~gmPJI6D zRy?S3@&~(a2se<6cin;W8W){=YS&X%Y?fO*=fo49t`D{0^YrFV-ZlL@Ed~5OaLTD& zkFPAg=HMx(Zn)|M9{VxjnR(Y6^rH94uF=Ict~!DH_jBtFrxf+udqR8u4066a!(aP& z=NcYdd+BnWHyWd^1`^Rr;?RU@GPyY+?8QJ;O z46n?vjJ5ss`ycx6iefMu|N8jEaF(^l@iiRZr#`+{c7A+*>mQ%jaD3kXn>f-Ud%he; zI%n<6;S00z*^uF$3~#=baa^_byg44s?l+X-kqmFo@FO#PNropfyeq?d{z5#RouA`F zS^M8EgD=n8pOoPzFN2?&wO^g#mu2{x4F5xhuU!UTm$m=vGWbJT`$sbT(F}iL8T^^7 zJ;$HV+H?HHto_!;H)hxWOYwhX*ZW3>zk4g=A7t12OYx7g>)qP;C)xG?Qv8eTdVeYY zO?JKI@XcBO+Xkk|=;=urzT-0Zw5&bH_sQCq!_}<+%4P7GS$mGp%Gz_>n6>BlL0Nl_ zS7+^O6C8$`A1jKXjDNXx@QL9jcD>`pCuis9_>`>u)C`}t3_d+;KVBSV6??xNpP60% z|8E@mDSN)ZHeQ{*Z__fkEo)z!;qx;5kPKgVE91@C^>Q5fIUCQ&&(+7tv3<5y?>|6v*Y#;kog{Eu1xxBQjy zb=md*Qha@Oy}uN{C%fM9;`e3eNB-5m?_V2#B)k7#ia(lN?-LpR%&m+gzis1{<1c3S z`*MaOzia2`_}f|k9RI(p{regIL56>p;hT>W|32%V<3D8Wf68zX_z`>G9G{T2=lH~| zJ;#xMwCm?M@{`tnm*jfkQTef=7|HmfTL<4I+{CVzj z?*E|U#BEvsaUi`@HdXLWV&J0gv zczzjtBx`?MhM$n(r!RxA&e~s;;g@9iwa1CC&HBG9!|z!J-;lL`D#JG&Cyw;kzVDB+ z^M7@m_~xvCjw5}x`~4y7AL*~P=QzsS)_!WBm-TU^r`De1GqUq@9OYL#KgVmb^K;yh zwdeS}to?!vZ&?P9WbHY=Bx}#{&aC~wGI%y?Ka}Ak8NPfO{J5XdIqu5ZdzQidS$mG7JauvCDL+;ekILrz z{|>%wcq+Spq!)%y&f4#|436{N&Ocrp=ewOB>6PI)-wnt4ZMd2}U!1Rx3N7+uMN!Mf z|9=O^@wfZO@i!dDzdnxi#@de;M|x!E$MH8D$KP-qf5UP74M%>fmW}sVHr}@kpBS!c z=g0Xt7Fy)Tiefyw-z~%Oes+Gm-*|Sv$?SfHWB z?|W=Ge*Zn$^FJoTd$afX>)`mlcK!IihU5Dhj_-SHIKJ=R?EUr^>qQGt zd@#dv8D7Zn;SAp?NOID!qG+fHuXSeVW&Vn(yG77Tkhm{9Pgn*R`j<+`%tlu-``KL zeDRwTe2CvaOYmj*|HkX@DLz+fe@yYEQv2TGKT7QfiXVU<7!-63m0y8>`#`@;8Y+JRzgIfxUqdC@ zUgW?+ak}rS?RTo2Rla`0=-m?U(WM{hx~Me+NEaCbj-GRGtMs;TsXZ7<@%gKsHof1KxZO z{^R<;nV)a?QSAQ?>E9LGKgiF!y)L$Y68x0eh`$7W&fi4*P4M*a;MboV zum2qI!veu;sJsmP!LWcED*pg}VM9Fst>C@M_jwoiZ)alrN5DUROT?c6f1o+y8^P~6 zBjRs^e;c-~hRTn?JMR~t?>FG5h6UPCVG}7{^3!49?CF0Y->(7tpp8@`KYiw@> zPuw-)7Vw*IANyY*{a+K?d%&-FYs7=#rwWnQzlO>qz+X%71o%bkhF9viRsbnp-F9PtalZ@Nds*MMIoi(3C0DsKcIyfEVHz>Tko{oe z5q}=s_Ns`#4t`l6_zjisf~&ue?LPzGE3nNCmEVJ}OXmNHCl<;1BS9O8pNO?cnwAjqMKw-_OJ1V6ho|dcb>&LGUX! z#rJsxIR5P^c7o&m_Y{vQoxi7;1wS*HPnUzA(de(xPmkZ>|UL_m^jWd4S?u_qU!S@aqY^dB9d`;4R7WiME=MOYgn!um( zkn`7rFIf?vw;OzdhqP}22l9$OVg!6vIKNgr68z9)J?;X>zeg3*;P83SCmjL@_Jr#{ z7W}g0epi8SNbs}4e@gI6z+t&?y;p%S3v)2aRm8YST!McNen*0T58nK* z{)!Ei6Hh9Nkv4z9hRP{mq1pC#u($_UXtc*w@Tp(YQj}(`HJN)VRYwZGGlHh4@YF|GDPUW*J!BzkGod0C-tCIUa z3;dv@{e|GR1iupejimpz;NK+pZQu)&{_g}&B>02iGg(vicd+;b`1}Na0le8a^L$?e zA4uB&U)KI3@avNHUxNd?!TEm#3ytviyY21S{}bE*PW#^jENk5NuY%)#Hc~tgJnx&i z{u*$c&m%=U__ay<1>lb+xEuU~1V0RX$K?Ax9Q>gK?*M-x;pfJ|@o%Wu3r_VdbKv_W z&wm;C@d)!L0ws!C^b&{{IdhN&0^kyeGlm0)HsE-+zOz zNZNl6es+R?2mW}1D}39pC;0Z@^m=y&|1@d8C-{M<_!}N9?w9pn1^$R{=J}h!7bN}H zg9j2U$p_N@4+Bpm?Ze=gCHRrx&m`BM0DnHg`@nBY`Y(V#lHe=BHz)m{3{L66Gr@C- z{P`kq^k*9?UI{)kIsf$;{-+GTBg5|pHzwzQENlO4*8UanSCi-eX4e0^;BP0_`!Tp7 zFnkS_--6@cVDV>gs(-#6YvISq^-lpmEa*QD7Iz1~B*ABZf0f{~z#9Vpd9YXmeqn;w zg5RFthk(}wdH-P11Ab|O`@tVh@K*4*5_}1GG%)A~i(TO7C3qVAz62ive?P%jf`7Hy zk4Qu1D)3!`e&k?rHTVGuei8VKzB~G5p+)PH_G`g?34Sa1(FwjD{GtSZ0Q{x|3++m; z|2gpclJ*<3_M5;rCeQPI@Nbg-KLg+XG~eN1adXzcU@hM#X+H@(lHgOp-}R^SzNdqK zkl-qKD(Nq}yvq~Z1pZOdzXSZ61YZb#cG7<{_;m>$1iv%E+rghs@T0*uC0J--dcOnU z^nORczfAf+F6)04_$SHpT@60zZvMc*;zi(lC-|DI|Fz&>`0k9?Tft39|LegU68wRz z{|(^uc|Ql3;|C zim=`qDt7}vDm-9Aq+2OpY6|Rs5}$=nxy^t;O*_P{gvQP zB<=qI4(uJ0>zl!UPTH@_+TRUsySu;M!Qw;U(>>(;kAsJk_RoR$CHN~@|8Ia_p0xiL z_=^et5qRM9{ss+|-+$NrZc6yWlfhs5N^Cz3{Jp?%G*r$2U;p&j-U!~%8gUDF zKH*m{06+I$o&j&D^nhS` z0iT!P$Ad3U@KeE;C-}MG_Y+E3jW03#`gPypZArB9|%5uSH#WWXM_#8p>jU>Yl;16BlzzFgV|6S0LQ<*#Wrvp zKe9ZR+H1vba9mHdVg?*OANtV4;3(hMipQ4De^l}JrSl(EJPRDxHko0{2M8Hz`>l2zNKHz_tOo$6&$8F_!4m3KSzp5aD3j8Vjp-za{fHH zE!=RVxD0$#f}a2mYE} zy!uN>R_#xn%6TA@& ziE@8K#TM|19&-I*aA2Roj{v_QX&(c>I>CFue@O5QIQn!96^Fp5C+$~&<9H4gPXb?; zv_B0T$Qk#44*1JS`-{OBCioig&IG?6{JsRg1svDgQ1N!~8+Y$WwN#OrT z+8e;%Nbudk*ChD9;8cD%6CCxagT>k4_G2=@vpyl3;2w1pue~dd{Tnn1zwrp4}kf9_t#&16mWMB zkqo@sj<;YH<4et>E-}=YiAr?acab&hP-Z8s4|R*a}X^ z^HEv41V0XZb%L(~zbwI5gRe>Oi@;w@@HH8}7M#wvw`TbI z41WNeuHPHL>HPd$hHnI?^Zlj_e;=IElb>byW^hVhz25fh{6~W${TeFvWcUEMF?_F~;s|(if*%J?_m8W< z`;zvn!IvlaMc^wFd=2<53BESNZv|hMv|pd$4}h;v+Hc74=fLTHbYq5Z0;l`e_cQ!6 zaHOY0#m(SPB=;+jEh9Z0Doz5Y{KKi>o0I;hgVXn^X1EcYzE4wzJHYAtTnJ8|Z!Gf^^Z%x`im-W9f!#9EB{2eL251vTQ|5?`m=B&RE z@3j9(;AkHiDNY5a{QBwORKBQ!Q~P-%xGCI!YtaPmNN@)@j@Q=WLhzchEHj;;g=SlDB+hE{{dc?e4p=>+Fx1xvV>n%tU$T&*}xDtRPG3#PW;>M29AHP zDINem?QQ-@LuCzkPx8L&O8s9~Y%1Z`7u!ns4aIKoJ#o{uKjvGh{Y}N=O8Cvi)!<(~ zKi>bvrS^X+-T*%MgxLPi;E!XYx4(wUyG#AwR(ukC;F8$>rBeI96#oVOX)-=P1)m)j zTtnq|rT%X(ZhvooE&2By#XU>-oy98fT~F|R@YgA|zq{xLpZTuX-Uk*L%KjQE+e-c4 zTkJ03_ZNr3uSoP|k1w@mp5g3k!${oO;eR6DUHU6S~W%fO#a=>HSJmnQS=Y2e?4IowcrF8GHDJ$@;8Z4d~EX9B-08Lu~ipI3{| z`!C>WKRo!8zZ?9+8)N&2!M{tM|C8Y71ctq#@&)i`ZWsH14Lr0h;_rY@+U#%8Q28PF z{SS!kzXbm{D5UXs1J8aXwy&rb#aom2y#x5w$@jf0_^C6o|GmK?JmL=ves#p31m8B;K>7aQfBQ{r{~Gu%$@qK+JklH6e+a%) z!vFsg{H~Y8_WuF@{w)!&xF7K`--!4Q;QRe&#CHYnen`ak1~+#`e1GuWUlH-y;FsMt z;#Tmt68YhL@Y-a(bc5e_O6-3T_^QW5JPf`fp&u86s|kNR4*urnV*me-t8;<7YD)k3 zc_k!yRgxqrLek|u_ao6o5}I5~V)B+slO)M4geD|ONE1RX6GB3g-20PTlO`d#g(M+K z)1-<2ckR8O%X`k}Q|Elwv-VnhueE;bS$pm0oOd`}x0mr~_-1$hW8u3_F#C9TmGdW) z;CZvmeg`~NZwM&+YCD_wuz26uDw#SHlJhpfB@;oaQ*@*H^Y-e!LeZho%u%kcD~@muh# z?)ys1;GVV2{t0}%)At(qmsidH1ALF0Pd3AM?`QV^!CS60uFYIKZ?^HC@Yl198^ilK ze|R8#^X_JE4ez_iI1S&s+PEWpfNp?RRvZiWyxr`*;59Rh`@oaj_k9Pz-wiVR`S9r) zuvJ+x3ZCWs$(8VNZv2lA?B=&y;3EfEdDGzg+%HQhr`_Sv zz3ljg@FM50_J=R&XvepLzjW=>4h}Ku@vE|;0N>-*Po3cp-2BiJKEl;^D*S9+JH9`B z2xCslI}g71W#bX>wM&gJg*Q3xmzaGA ze67>(F08%oaO1lYp5xXZ`@+Apx8qyDU+rXkIDFfY#u@k!{>87#ilYM8G42j;ddc`N z@BwES_l5WEZhS6$f}1ag!Ik=ev$Eo1xVu}=kA)|@^~B%d)hn#L$#D42Vf?DBxC`D- z1I8;W?uQrDGW(n;%YqH*GQdY4Cnk#%IH`-25^a{_6&_UkKl{%J?$)rzXbN!k0Z`JQ4oJ z&2P8EZ~VjT_rP2CvG#iy-uH0hC*cR&e!}zc*VT6XtMHr#mj7+IpVQxR_%)}8PvNi! z62B@dzJY7G_WKbY=;rS&@Xwts{~z$MZN|GE%KW&@crUn#^A}Cv-`xFHOZf6OmcI== z*u~Ff;oP%k?*zA5XnY*J!p+yc;jg-y{Y-f9m&Vob*3*su2H#O(?KK*{x0l(kf{Ska zO@PPVZT4H?K5qO>haYt7`3K-f3YPydxb1x7XJ8%f;eHjq@3_6WmA41{{Kr;aBlw%wjSqmoboxIO zZuGU;JHStOGcLhf78!Sice~p7MEJDk#;3#Cna1b9b!He3fuFt6cqDxPkH(k7?Ogv} z2e-Y@>^H;X-Sdk(;1O=Ue=mH^5X=7ve79TQKLxjRdRzc!-F*BSyv6zVci;-wpZ|uB zcI&&<@QUG9-?wnRvBp2a|2xk3Kk$)my!{EkaKG7iYfb;%U|b(QtYH1SA3Wp^vmXSH z&ln#8pX%z*!MC~oI~r~@+4A>*k97Jv8QyiO+55pW&M+PbuRq^-IDC0iWBzP!s$R;@ z_iFh3z0H0DyiX(JDe!KN{{cVm=IdGT#uZM4GW5@prU+wN+w!?pM{kikusnnx;TK;%44y z5xkjy@vE}p3O;}MuJQG76SrQO1pjiI+3$p#jxnAIpR?TfpYRB`A2%1S<@)CZc(>;* z|LgE@cRlaI2M;v+3i$Wuj6Z`PckQ&wH3UvKtf;ErxSIvzf@rJdg?aQ11-e-`{l zN8>?o{uSd3;5pUCW8lf(7+(XwG|2cy_>qmqx50zl{qqd?sqJPD-<5gpSUbNtaQIGN z{Nnc|;0JmdzYOg_k_Q9^JioDHaGtt2=DCl-Wu-T!;VkG`?&e0BRpz9vmXo3a_hfd@VZ~j z-UpsjWjp{5zwr^jDl5*1Z*luoqu{zfn*B<6X@BGK@LMjv{}%YKBg{Sx-qP3jKKRxL zjAz4bD~+Fqo4E0|5WdUJ4{yNpc3A%R;D0}2{2{!|-LHQRpL@R9zk_dZ>z$48^=F&? zzwnK2eNfRBfAlxA?+%~j^wAK$yoZg){o&i3zFWaf-1?y%{Gsdr0=(<4R(@yr&I^ot z!XNx>d@B5#JH9`>)V0@naD8{bJOcjaBs;%L;dVJIZyem;)pry8r(54mg?Egy{CC6e zyWc~52)@qUA3g#1bI(ua!-FT=@vp$gyY=-F__z&b{{VjEedAT|_3rw=hUeXC_6_i- zXBz(o4?f0t2YiOxzucuA`}1kDSHd55Gu{{e-RZdnyzK|G9}XWo&Nu^K@AhYof{*^y z?A_rl?tbSl@G957ec|_A{&V5sE$#SW@NF66i{S_FH69CByZPDWS{kkvUqrSEL>)-`@ z8UF%b{a52{aFttc@6?|4$@gZj3tzO4@!s&8uDzSV)7^UT5V)DUUv3ZI?&1}S@N9Q{ z7x;%$t^5<<%e$GLPJ?&cZ1%I^J)GVK!=Jor_6y;9tBfy$J4`jc7M|(qn+WG!``!+> zscZS~fp2GzD}Gg0JPdcMXZ$4mhtu2h@MY(j{Z;slw~gP1U%AtGIXu~w_bL2b(d^&A z&${w|gs*e{X$yQ}Lu;=;;L-Ql@w;|l|7JJiz2N8E`m_mr@W0I765exwaT~aE3*#)@ z<{0Bn@YKtVkAufeGwu!F<>s?9;SV;Oy&B%>G2_3%C(JV*4L5W9iC4k@cKeYN;Ctlq zxnI8(Zs6j-ro-<#fAavm%B`;+g9jcZ1yoi%1GjR|!xq6;G_mvfKe)3SpG)CeN0|Mi zz;1s261EtZ%8Kvd{vTNWP4GZ>Kl3}>)~!csv6kq)*z)fI4_s^92!3R=@d5B*!;BAw zm%9DA4)CRWnY{#8x3%l<3a>rQ>?gwCJ#KtDJkZTI=fHDZe-DAb|J?GAgqM73e0j+4 z+V8qxckOXAoIk_z-vMuV&-h;Wh%v^Gzz@$iehPl&7UKo*|2=6Oew%Z+oA2L&zxb!w z{|)cq^tT$`zSQjB!XuU&{{;WdtRlKkNtBcH{FP z_&;ubJp%sA5q5kI-h(+jepOZ+4L|C}QxABP>+h4{>z}av{owAkt^WtYg&Afa4li{2 zz61{6fs9|36<5QLIQ`rJAL8~qr@+%^TK<2)c{kt8g8$*}Hy(%Q>lYA+AArxVW#{)2 z{LX4C?@f5T+i(0A+|A9mAH%hrKl%!O>U%qWJ>1!?XTxtbEpqea_Hew5FWQ;0bK3vx z_wPju-FUn+aD~-36F$V<@Bb72W}6*9 z7w&YB@eA<3TzkC^FLUGZU3j+Z?-g*nr|kI8;1#ZY*TUmYGyBi*9uFCBg{wLnhv5CM zU4Pes_qo{Y4d80G|I-wHc#YW)hL@gi+!p@B^;aHV=jPjE;BQa1{KvzGKVy6f{Nfhl zv*1Tt7!QIk=xlree4u-NIR>8K=DTa)OWko`e76=DU~SsjmIrf=_ny^)h&=o9{k>|LNwBHE@%kt-c@Nzq)m{EAl&!@E3Y+tm79OkaLX-b?+EALH$E1=_I~4D zaJ$yVec*T8cpLy%xc)gGUbV>bkAnA}YJ4T!-mM?Uhx~55+yXD2WcjDT&A%|d4?cQ@ z@oe~&-Ho4y+qvfx3*pn&#q?w9Db~1{2jcaOGT1US+Nm5 z+qLh1;nrQvUXhn$!+T}L?r_UrB(1WdA>4hX@&546uKilUU+V-%JU_f!TgzX7Uw7lB zGrZ;rv-gC@yZyRT;r{MFi?e=5l!+*H-_$zQDcmKKsUQubse*j;`!KSUdhV_!{RQcEC*jCco(qp#XZB(6gjvQH!^;mh9t%I@)~|nu z@A=5=li|~^Hognq=SAcD;c7RZJ_@&R<6|EDRWr-~BD_BuiC_Fa3H-=K#_z)yyZLS< z{GuC=U%->y`gI*VVLxlnU*Ou8Sb5vvPd6Ix#IbumW?UEku9F?VH$27lU$aoxD$9Qe zJkqW2+r#g=`LYOib^fRed~Di|KLOsr93Q_bD^7#2xXJiz_(SL42E&&hXZ8!>-TE3| z1{d}=z7}5W_7f(;ecmwp?eLfGeC~lqwJ`g`@DFp1pM(#;*7$jNn~P6)75>xBzi-3+ zkG1^E;Rz=ie+qx*?(e^W`#S&kBRt5p=N5S0({}tH@JTLSbXVr)Z`^p<3m)(KzX@D& z{ofM)kDE{1z!$mkmxY&~V)b=`yRbM5sE{D51ZE`m>X88=tj~WN z!6&)#asWK#SF;}qH+ssr16=Lq*AjgCDzkTm-+I>gM7X2V-|6rI=g-c8AJ>41%8DUy z*CuxSNccO~UzfxE-FoLb_zM@`b~Aj(?$%y+z?apx^6rJ_J!kv~yrp%mj6HSuWtSICw%8}v+vfC z`Q5Eg>ch{v`{VuKf4TL+LGVj&+3`ofoenh4!OuH=9u42`?r(a)=ezmpWVr4cJH8+M zsnf^6aJ<`(7!Kd&_J>03<$a&n@mIss-F$fiTs6|{Q{YNBAN&IjzkwaUDl2BeN4fp= z$Kma_nElys{F%lt!N>J6eiQz|t$+Rnf8n0bd<ZMLN$_EA{d_0Gmhu!Y8=rJ$ZPqYpuLv;Piit zkB6JP{yGJIz^$jwf?t|q`3J%OcF#XAfIq(7>|@~F+><_{dUHi>}-*Wd0&%uwn`SN8rf36+>7JOAJ<7M!>ZoGT~-#XmvYv3dHGyVZS zxWDmccxgT3|G}rb^+0Xrx?xY6eNTAjQO1qoqy7Cq{Dku_t>G)(_)EiK&p&?geLeVK zm;YF}nVa8w!7bhTvJaeIWXBJHul&LIe0cuv#-re?UH&WKPFb^$hj*_sz6CD1@iq+} z?AF8g!6&_G`Derb-Pgwd)9_=P%)SsVJa7C4{OV}q_uzr<{_sP1>ZfM^9IjJs{2lzU zyWigkx4zfx|AqHI(9WlVxqHJ#v+oYKa_gIh@MDhmhiBYo`CGv=T|7`b`0^vnUVz_j zX51OR(e0o0gy-*X_EX{FX5;>FGpCR9;8$F{;RyKm#&$iI!Uwwh!*Otz!_9sZ{I%O} zoeD2<_X~H!$GH8khu~{ccKj3Y!LI-2!>!%@%PVk)A$I;t;OhH~KY+h-^TjH7;aszS z4Zr=q@dkLJTi^W#|LNA7JK*KcKkm|*=dauB_)7S%|1#be{$zLK7Vr!=KOYXabo+}L zc=R2X|0wvcuNrrUKmCXCU*KbzBjOjoHvs3I9?pedbK`RueD%yYci4Zr818kU@mTn# z`Nn^Tn>v3q8Q##{`sXhAPB&lP4~Ki&_*Gf)D7>|y@jQ5lo8MoAA9wzGF+BJt%fA$E zc8ziHUEN*(uYteV$1FVeS!TZuUgPeU zC&7!I{-(igoIki9zSQ~S$KY>&w(_2ZS57y686Nkv@e+7YD(c+sk+g+-afl4EQ_u zeEA`G_e;$FB)rEu;|1`&?*9LEc&zi6@4+9r@xBs1;!ivNOZf7?7_Wzyy8HLd@OjQ( z?|?hG{@=A5`vbq&@%7;^UHMJn181AP6stIPF2OnO` zcoBTWZkGQ|_=4Tcz6^fpapP5R|E8Az8@SDKFY;Wyp< z)(C#-Ys=ppe(z4>)^OE!;|#oYxp61>{dM8KW^UNOh`u2Ircrg5Ef8&vG z{x{<*;HM5U9uL=Z`kD-nbL;=<@FxdZd(DEMTx-YAfj7D9nGcV2&o^F$SGxJ?9e9Cj z-xct^U97y%;So;%>)^W{H2Wrajyrxkd~-{)*Y3{x*v;RS@bb21Zvv0|(fA;E&ddtpDyk8r$FNIqcj6a6&bL*is@I$VB zHo#YYWBIqhyL2%A6W-zW>+2lH^9DEHHH0_bZ26nPi_S7W6kg%xiz@iGK4$L-pWyse zcleX~X73H}KgGBo-0@oDLGb*J)}ABaD?T*)W$^KC{=5#}DQ)&i@U69sr@{5z{lWe4 zHg`Yr82lk)HhvL*0$;n;_+|K%&BjaMwXQ#x!<%}WeKp)>jqzIe3AdjTetZ5E=U=zM zb=-VZs|V+Qj9q^{c;1s%USoLRVa6@st9~_Z0}ponm4m}?EXObWKYY6zPd(vrZakj` z|Gc~9KL_61t#60Iues|R1#g{e`NzU9KV>`t4!@BczxaFE@J*|YXTS{`7(WEpb>rhn z`0&MMUjVm%!}xXhZ&w+=2UqWFyb_-0#^aZ8=R>W1*N5ZX{>WyyvX0qzz|C43?}~3( zIo8UrAJ{!VZ3^G!*0-(TFWvdIhle@;Sb}eG{-7H?Wq&Kb7d)qt)!!H1HpA@I@F|BI z4~N^i_6)!EvP<6VXKT;a@Y!yBWZ*G}+3}s=Ms7XX1Ac~ch+mZzr@(Kx^>}~y;!Dgv7_L0PcqBY= zq45>)oo+og9`4f0?33ZwUA*0Nc;|nZeHOgXUH=?7b)sG0eE0^petQ)@>L)w?9k{8R ze^$Vce{A;8;Zs`}uY>DfX}k#@@7i}e{GjW<+VpM3Fw0*FU-71K6ZoI)j1PjtZ#c!T z%8It(c-KA!_&PV=bb+TfwCg<)4s(DUe+K-kTb~VpZ+HH682p%tKfBRd~}3s zx%2N1FZt8*_lCoF5aL&5ML)Qi)6*dMS+~9%0q=W}<-ZJ`uQ{dO6IoN-j0e^dw*&hn* z`sYbF(_Rj!tXKdK`M2eN9iFk)_&qrMMt}UOtXK)(>-KBEgfDo;?CarWZhf*D-d4}- zJK#-|jCbwDcxYr?AD-aavnkxPmz{4bc!^s-w1?MsHG2u(#m!IM;Edb9>II*5wAI%a z?$p${8a~;r=ZC}pb^AGE;QieCZXCSCJs+3|w{-U}cfiN|*UFy>r``CO4L{z>&VL@f z#H|Mw!HeqH@o&O=yZ%@P-+F`DSHX?l^U`nNxlfq=C-^>h|GE{PeVf@U{=#@^Vq6z) z;Plc6UcA}t&EaF#7`G1G);JT6ckAO$@Hy`Md%(5dvizsOk3C@AAKu5E&tSOMQnQbQ zuWxO91+3EndKeE6zs2m6;pXmsV>*1SoBw9PyYFfF=fID<{gnA|AE(z>;Vy3d@DBXg zk#_tFxR=}C{Tx2Hw%OOgFK#m41YhdbzuV!8{${Vuz0tIm#+C5(qm7%umk%&L2yVK~ zxGfxFz~UFb?*w1z^w9;L{V%hh2={u{_zd{hlJNkz-!kK2aJx&5N5dDn_5IcGfW6Fq zBm7t^L#em&3(V%)T1F)y;ov;g{U` zZG;Dnv;5oO1Kj*ni?ZJS-R$+?MjebB!$-HV`dh%AoPOKD54roB9Q=`+?~Z}LeZu~km#_z%BTyDG)zSQjxe+hs7quJNPV?Ht747YRpX*=K^^Uc01 zZFP1hbH@G`KE`C*3^n%ZG{-ZBEdW6}l z;i+zaX?V#0wAshNPkd@T4(>Y4cq06@^T&6<`@d=S@ZH%z-26TpuDI3g^WZPuHeLk( zKEe1+_*wV7cNzSSTW^QhpKiZf{%_!3ZoK^jFOlJnf7}Y6;MNNjr*XgWfE`~K{(CJs zfWK!8@9*}@o5M?I+Yx@_0IRP%{Hl8%*&E*C`lBCwyn8-52=2umMf|F)7!mR>G`&Y4L zVmDtu1kape`JaTlk1}2WU-psl>+oJ~f8{;6mut_J@WrmaFX8cSKXrXL-p!|*;T^kL z`8(hiZhY^`wKjL-r9OPRG&laKDSYq4c6=*%A2;8&htG5Vq6BYgEd^9obc5f!){gH5 ze{-&JUs#7H^;N@9-)8pVaJN^C$G}&)_=<7xuXmb#B79$a<2&I0x&79e@N1Q3pADZ| z$9NummRk=mg2UhJh+mZzZ^Hj-XS@uabC>ZdxL0T6Z{XSPe&i>3ZpzwcE1Wyb@>kH7 zN4R*ky6{Uoo4pa-*Xgl2{P_cBZw+7bq;UqG)YiBYyx-r9d%z7jhxo<*KYXs+-{}wk z_P*H%!_&Vq9tm$v8(#r0*u{7}eAzX|li_~O-%W>~{XetMg8w+$cn&Kf9Uz9{9hVY`i`K|E;0f=famfXS@*J%kAebhVT8_ z>`UQ~o!&l%4|nUGHSkE+o*Ur*x%K!K`1IrLeEx(#bK|`ZbJMwdT73=S<8Lr-2ETig z@uBd4-1@x=KBl+XJHkh}=ONwU+uZ#_Z@AVWmcJkTCu_#|Rar3z{>tq~j(~UnkJ&GS zf4SB8Iyn4>Q2gTWS-^`JgTm9`o-Ur?et4T3|Bu1%thD^k!n)jMetj8!+^uhyzylUr z{^jt&Zal1pk9PifE&Rb~%fAucc%AV!c#=-&l@+!6)81}bxz=fDpxG#(1Sw1yPr~(DSbYm%awHilD_(~ma{71=-tT!kekJ^&n_s?! z$E-5@dU&XN-nAJXw#Mu`;CYuC?|L@-;qLyWKHO!t*_*;ATx{G5{`Pz0_V97L8JFP7 zSB$&CU+!z%3%+-WabNfX*Iw1|hgD`D4)5vqAIHFL^JX6hzu@N2iE#Lh`S``(|AAX? zHJ%Bt-NSe`{GcHEm;Qs5pms)B$F%3-58aaU=K|H(xe~&vEl(>u~&)mOldzbNeZs;6==t@vE|; z2Rvb@@hR}u-;Ddi9gZ~~3?F)&jn|RzDAyiWz-R7b`NzX+HW*Ka&mCht9X`Z;-dDgw-?8IAhr=_5_*Gf44nFE+<4y2!Za&`* z@3r3Swg1ZVTX%dVJm3|xH-T4PZhR0tf246+c-Qlc3-ATYjJv?UIDda4{2#Z!cLuzh zTTc#vUpmf?9|nKx?gvK0a@zbY#h!t?JlUJSRHY`hfS;QYbI@IFo-Yv3o`e!&L#Qa9eVz~^0P<^2gScKca% z(9V=0W^V}Z?EF*2AM5nD z1U~d1mVY_i(T&$I7u9p?|Fv+_T`m7c_{rCdx53A|^RIO->(h(OUJsuBym4cAZ$akY z7VvP_9&O-%yZwb6e5;!;j)Bj0^I=bTw2PlP4L-Y7DtT2_oCDwC^fnZJ+V#gMxa9U% z$HM2_oJwAm6%*iXjJfzl{2x5wbh$!@>nA$W?LpPz(}cjJ9QV5h&=;g0Tp|2_B) zw_man-rec(OSt-rRPw5qq=4v4u8GIcnmyclJPh= z@77Zj;cne4k_`BNxP|i%GvUpf?D*O6z^2CY;2yUaFM`i?^VOU1s6EWS48FzHzY2c( zC9{76-|qH*e}YpD&At`B=ThT}fy_^CeyI!Bck8`I@Y%yGe{=ZijmE9vbI&%;z#ZKD z(+S@0^xp%Xc%bD!1zzLq{ozGuI(}7F42HjZ)OaM^-retA0ne>x_VMt;Zv0P%KfTTD z)8UOPjc37k-Dx}rzG+GfG>0ROP|AcH@E!j;J-S5vk89q zO0#c=E2bOQ9z;BpTaQ-4gK}nX0^faLMUueZ*MwU-NS=;ni;b{22bDtJ&AUyE^~80Y3Tzvu}a-ec1RGXLh{MJIVSHYRDj61?D>)7>mhj(}5xi@_MPG;{H@~4ak z!R=gsjDV}YxAMbp?RNgo_&T`OEaOS=5;wn3gL~d%_WR*c`&xaE!Mk)eeinYt_0P-j zv)9=1OW>YA883%t{LOeZ{A#6@w-%o1>fZ=IQ*HUT!M9vwTnpd)v>VU$;7e{Wdt>;u zc2<51c*oUdZv%%t@A$>v3x;2H{`DC6Y^~y7r@mY8NUwibh+_+@Fo9e zyb|u?);C|mBl?A{JcAU zA{>6>B7Wij;d3jEXTl4PGM)|J{SV`LaHHRh7r`eorsEg;|L|!a8ZU!e3bKA(1s`>c zB=GmI;Qt+O{1d#u&3{|r&%ZN!#Zc~_el)HN?^a>@Xaslr+U(8Yk8Uw;4Nrg5I0H9# z_xqjTyPQAk0f+D8#4q;$;b~tQ_lMtTVLUk4ml}_RpE$$#3V16@VPENvG(~qpS|1cmGH8Qjhny^y7k~e@GDO5ZQ)VRTmAyPiw+>3|HF%CnEga} zzFXg&0Z;ng>;vHSON@uXFS+&_4e#mJ*H^>GG_mWw5&nzozp3zkd<352 z?vLieXB=<&7s3a*_1j{&@Rr%bZ_h4pdiofi(A(^5;DPRbZv*_1)9V)a95=rIg!gyj zwazg1PuzUh5T4}jpPRv_46ynRg*zN7|?}ul1kqng;kHKd%X5$y% z|AQZP-`{!}K67u&zXWdM&SyFNz!*DzHGJ=h#%tkLu01xwO-7l08+^1|Ki6U{anqk> zuLtkr)@zO7L2iGd1$@YTmcI?WY;WTnoOA7c4BW-})!?N!8ciXufzS` zHGVI!^A{`O@S8XBtFq!t_~;9b*TZ3tQS6)HFF!Tj0XOJuyz6kr*VD%J;ru1WP2ojO zZ>``z+$>0^8ad`4U2@$gu;UYQKP z>-Hn2!@t$H>zf7N=kzuQUf;v)^WnEowDMntzk0~{9eB}i#w*~KzZ!oI|Lo?Qb@1_b zn0*txwvpAh9X`aZS8I=8e7p5TC48N`Uugn=;>PPi@Gotw{I>AWS;htUl7AU@fv-By z>OT>_W1`v5fPdRzJOIxAVLS{z??&SgTic?E@zwAtYm9G%S08RX75>QG@7@Fd^JcR@ z0{`E8#&h8wdl@f;`+RJ?7{2of`27aNw<=+7B;{5p*_)|At|AcS+ z-SXFAF6?)^aYMM$&G*gV9d12$D14avzGoHOvV|Sr5gy#yxI6s*AmiTf#cqGDAN&tD z9}R+Ea`Wj3_(s>Bm%(2+|8pJO-K~En!9O2h<6#XmZ29ZMtKI!kQ+U?5 zW^V^^8{XmeTjs%UyY=rP_!qZ7@Fsj^+R9%BZ*=R8 zRq!phn*AGigwx+o@TMVV-wOA3{Z%oF@$!t>>%yatHEsm=boxxHelUD@J=bK`$9yuG{G zr^9bM{mz2#cl|R59@EzH&xil_k@2hW`|kYTf%n|S>?`2g-F*EyJn#pzuY(s%Fx~|3 z?c%+*!ymq8_SzTIzq=V%!oTfo+ywr=?~D(E-}}tCEqviq#sxUdzxc)dKc9y?J)H>O zx~tjGfS-HRcmTZeVdG)&g$;~H!#kgBd^P;2n?G-a4|&V%;cubLY-W59Jl5UsJ_4U} zi`nPGZ_P7a2*2=*@nX2)O~y;%Yu*0c$8amx{%hdN4>NskfRBCIj^6@5@TBpd@ZEPA z*BQ<81J@o6;fZcN)(qY}-SQs_U+m%~s^F8|`m-bas^jkP@os$fhTEmByngVtXBZEH zKYP!31U%R6pIiq2*2V1C!JoMG+$8ui*ZGb(5JbjDhe;Kal zo{ubnC%F6ZgJ0Zk`OksvRgwC84c;mBat*GP`nd-0 zoH|f_Lnx(o>a-fXOX}}6c-PePHF&qw+8SIZ)$CF`8=fqsde`8(scUQS9;s()aJ|&p z8oXy}pUZrCm8s)u@Ls7)YjFM4>>Au4wWS?;grMAXTct%~Qi`@PVnjYjBIy z+cmgl>c2Jkpj7Lz{(KKk^{>ILTe51>c|@0J~g@qcW|-ZA%9is^BVSaYOiZTy1X)}V{35M z#qx(dxztlN?D^CeHMo#!Fiy$}@5NM?8eB?URD+L9Jy3%?rk2;>qf!;u`tmxZPOQO4 zr>?5O$E2RD!JSiI*WfOxy{=2SSJ%`rHMm=9L=8SR^KJ z<5R|S#$bnQ3@*4v=fO1^3$Af;@c6Rw)$vB@wNf{h*>&Pg>^ku$ ztP^{}Q_7B?TE=&j@w76YUdA)Z_?|MJS;qI5@vJg_sEi*e-crU} z%XnKEZ!hB=W&CFu>&8-)UMr;=JqhbZOu`z7m~fqn=tJ^ft&~0}P3#&Nm#}W+Cai%9 z3D+o&`DmvoUH;?zpwG$i(VW%fPG zxU!7*D&zWP+@Opbmhs+Y+^CHADdWavyl)vdDdYXhxM>;hU&hVK_<%BQUd9KOaf>o; zS;hyI@xf)>s*DdQ<3r2%urh94#)p@2n=(G4jN6uRyE1NH#vRJIs*LqUB}%WA%9Po& zWt=PHd>I$YxLC%eGCs15JC^ZLW!$NZk1pe5%D8hGcPZnpW!$Zdk1gZwWqe#2_bB7z z%eZG5pOE?@S%2l3ni`}|PHjmzWDM%vUdB7hc(?IZWXOL|!VRMGPE8dOekB~8l=ul9hGnxSq)PCQvJ&E4=dwq6Am+NgH(0u&Kf)@^?VH; zoLZT1n3)=+&QJZCFc|gM)*ANVsYVlmg%~RS)lZG!VgA6;mt0&u=#pV0FC1_|^%a9J z9x(c%VeJN`&ab{;!03^K1`HlEV9*7Ft1lifWYB;S)uV@}+MU$lK>q9Umu|=RKD7g% zs`!`XUx|M?{^j{s6%q^lD+UPGs$fn>`9p?u$WRrs^KB;n3;EI^Upl0vqb$LYjtd=ylT5?fKE=tL{Xn;f~U(`B^T1Qdp z$VFo)&Zo7N^g2pfZ%OMdX}u+_wb9wAP{hk<}K@M$(Os)$2%W9g&sl4H<8j^N_xQNbXD6L@dX=gw8%;b> zQn=DS%w$qxHXBkxIia>tPIwPFau(5u;w)@rA)ukV__He?HDV!grMAs7DwPm6yFO(LpJd`H=5_NlYY-r=?LpaOm zLpZnSL+GIBLpX|ZqstBDhhxIKwsAC}hI+ywp&mKZ27Ppip|oi9M<3)uqTcP=H65LQ zWC<4(5~BC+@q1*DW{w2GDMZrbJrZGfPnsf<4lMa1*#wr3&qX=IDTj*)r!1GPEw0^c zBf*AqH2a5Bil&|DgPfa9I+6c~&f8i_azztEpOd0Fk`s$&!|)zjj`wK33h%<94``BT zW(h?`8A3v2=pMgE2Dy;vP;x|V(6xK~9_5fx5G^S}4m~7vNl4HfVT_RwO$5=gp@E|h z;X;B%vL;;+IkY|}6@!_}i-$_&MW9d*Z{ZN$LS^9+rBAYv;6tB;u^9R!8Iv+FB8gIY zG%mt>(wHJO_4?V!C6hzFe>QT+Atf1_(U1*nwTmSgm+IiNk>d_|!^KB3jU0GLNzOp0 zs%&)qSZsQW9D7I!m)*5%m7JTDp+_Woj@*C9AGdIooO$H#!|~xfyLOM?$rm~Q@E)!t z*rRvs;XR}$*AqGaV2}C~ds1Jt6bSi}`l5Q^sPDpiGCCr+A2_)VsWE+2b5#yJ70Q2RF)AC{;p4wWixB8g@$hFc^`26OZtcSS6DY2B!QDJtq;ii+Ri zXlTRHI~<)Y9Nsy*sFnMi6bF_}!5NykTG4;LrXr${LoOwr0B z*ptqPRuzGh#*fzWfs^tg6~WQUJG>|5**YRxV+Kniyl6h?$*3e9f}%h=nV2Rx%>v?$t?& z@@SOMmvOOrF}jA&>iRzyjioqWC_DZX%8fsTqT^4YFT8cyL*89!Cg0E$w=bw?kh)W~5`TI5nFEgDCZrn86iSCzQ3D(SPT z$c2T{#B;?{T9gu+IusjDDr!Kzxyk7*O-^s6a*>4NhL%ps=|q~-Wlk^Ps5EJH7+ zw^BL1fy${5&*^PbE)s5hRx+G&dfSwf6p$^`Y3A`$rMgoV<2=AdULcXNjsQ*HGa$I!YaC9@pdo(eJ_s{|%Jq+;h9tH&O z(ex7Dg%f);{f6}9yrXG2aD2XzQwF0Z4)00v(WySCGOzl<|NV)iOK24ZIg_tNNiM;91v$oZpEVIAjc)W74>!GY5Sa%^ki~tk&Is% z266sqV&S^tvyBT*Zb6be6S)zIdo&qL(KJMtB|VmOWHNB$vLZ2Y4hh9YCu1`ig2@O= z24LLKiAbW$h|7!XNSZSl(up*Z?x;$7r%L9+q?hBRQoPeQ?7|_@)?U}{QDb)P8g)X~ z?(tjKWOA0baIs_w*F~1(E%bfYuF>MRYj=5zbH;1A?#Yra8sJ^K$8Y%Wa81F#NAGaB zuE5bd9IhsC^bUu%3LL$|QN?h40`V;(c3Bt24hD|TB^G?Jhn5TLgV1(?llRDbg>^~7 z$!%9vGy#(@e#f4ix4b7S+IXLVe3909*9B~Ho{@4WKavji_?@+Ka-H!zoLr|Y!;@yK zO4=ElFfzhQI=VhMzRq;A{!8Am$Jdj*!*RbQ?{IuQ@*dyTaGud*#d*f>aMW(F zyhr77zDd8ydo=5Cd~~nK@yUC9$IJO9{g}MNar@|d(m(0g|94N`xj{{?Q{JPAobsY| zY`86s+cCbyB|Tnea(q&L#@n$j zJ#s3Z!^L|}u0j_d@!G@Z2xm{xxoArBhU7X5ks!RG>_TLvQH&JhGnQRb0%RpCeqJ=d!Dcrm=8fp z5Hd!d%V$hFtrShhQI4`+m1R5Y&$2NTjU5ib5{`*Kl{Hr+G*@3V5qeHKkeRRi$Z)Np z%y@$-{#17TkuUV6h0Bg}mNh`+o_x--+MUE>jHbreB4ei*xfh?OtdF$bVzdPF zIkk*(Jx7Z>pELAUsJ9fYe7z+Zb$C1bRMunB>V~7!@m{PyI$U|M#7@CkqRBt9NNc2H z#}KELU1PKc_D7f7lW~fi%En!^bn-_g$_vAps=~Y$YK-5KQj%s%awbiaTz%5r$#q4e zBNUUABOXfb2j$*V?h0k5mOH{|LJr4EJ0+(T^<+4&Zl5Ym(L zld%&`|L?0SnvB4vhr(znU^ ziGz@lEc*yDN~7_|anb!Wn)SnON*P1ymYW9=OK6ILw?M%p0*Y^Xq7-Qj(NMgX7MYS(j_)6%6e(GR6yIV7 zlSnDvaEnr;WKmPRg%g>iWD%4;fz{`(@%~Q8ETW2c>Y@}WIoiF5QlvFRS@AYfWRi0h zam71Q!6fpEZ`Gm{DOnVz55D6qzbH>4THUSF=iBkEQ^+Gi(}&|#BDMHwPLxN^S=3e~ za;p-(;bD_`UKAJKeTBnCb5$a`Dp6hhz$VHg?JUBp66IBi^y1sIkXgi6CF-jZ`BjPj z;(NU)vy?0njBigd#rLJr2k}m#!T1(5G9~RC-*iSPNo%Ba_fi(FY0+R>+!c;G@q41d zv}iCb8cd4@)1tw&XfQ1rOp6B7a_5j14aRq?;l$K;i3V8=B(nrNxWHn=NqL+$84kqzyJjF;(Ogvj!Tw7W+7(exoj!MQx{J1|#k=76m+FD68m=+(G7AKb$ z4W^@gt5A;kx%gp0lp-aIt4oWoON$2M8}pD^G?*5DmllVY77eCFgK5!VS~Qpz4W`BI zrA32j(O_CMm=@QU7T=c^4W>ndY0+R>{9jr$m=+DDMT2S4U|O7DTD)LdG?*4Yn2{$j z8F>(s5e;VKDMCgbB4nZ!I_;B@M+h0wV0^MvZLLz{aeoDJvdLqZ+f~(KMzpD?-bP z(6S=5tOzYDLd%Lr%ZkvlBDAasEh|FPKt_#Y%!<&mBDAasEh|FHibuN#brftSy5b86qgmnWkqpWQCwCOmlefjMR8g2Xjze7R-_jPQH9G9 z>BXT>QA*<9v~BE76gPa_^Q;6dXZbOTGH z9kL?5tVk~_($iprtVk~_(#wiR%Zl`}BE775G>t9DiAReg3%Jsp_%D3~u1~=A0eDW< zkU3GDKK;(g8d9Hv>mzr48mx2rVZ<%Zbo(BD9iwwwqpCqm1K&~hTQoCqx^Ld%KJaw4>x2rVZ<%Zbo( zBD9x z2rVZ*E+;-NCq6DGJ}xIdE+<0EiO_N)w4C_3oCqx^Ld%KJaw4>x2rVZ<%gfR+FG9=9 z(lIYf$Gj{Z^CG>xEFJT*bj-``TVAA>7wP52+2uugd2x1mSykr6+2zIA<;B_MMS6L0 zc6o7jd68aTq?Z?GmltQ3msMq6R+V{ic6o7jd2x1madvrec6rfYUNo2&4dz9IdC_2A zG?*6+=0$^f(O_OQm=_J^MT2?KU|uws7Y*h`gL%q6-0Uk zkzPThR}kqHM0y30UO}W+5a|^}dIgbQL8Mm@=@mqJ1(9Asq*oB>6-0UkkzPThR}kqH zM0y30UO}W+5a|^}dIgbQL8Mm@=@mqJ1(9Asq*oB>6-0UkkzPThR}kqHM0y30UO}W+ z5a|^}dIgbQL8Mm@=@mqJ1(9Asq*oB>6-0UkkzPThr%&z*BE5o0uOQMZi1Z2~y@E)u zAkr&{^a>)qf=I6*(kqDc3L?FNNUtE$D~R+8BE5o0uOQMZi1Z2~y@E)uAkr&{^a>)q zf=I6*(kqDc3L?FNNUtE$D~R+8BE5o0uOQMZi1dmgy`o4je#nV-iXy$DNH2c28JUvZ z%c8iyqG+%v8Z3(YD~bk-qQRnQuqYZViUy0K!J=reC>kt^28*J>_z7w_AJJe@G*}c3 z7Da8 z99c=!R1!6nL`@}8Q%TfR5;c`XO(juNNz_ylHI+n7B~epJ)Kn5RmBgc!L`@}8Q%TfR z5;c`XO(juNNz_ylHI+n7B~epJ)Kn5Rl|)S?QBz6OR1!6nL`@}8Q%TfR5;c`XO(juN zNz_ylHI+n7B~epJL{t(Hl|)1(5m8A*R1y)DL_{SKQAtEp5)qX|L?sbXNkmkVrDI7% zR1y)DL_{T#Oi3hD63LWAG9{5rNhDJe$&^GgCGl1z(N0OUQxffzL^~zXPD!*AhnFzH zmP9)x(N0OUQxffzL^~zXPD!*=677^kJ0;OhNxW4_yj4lmR1!6nL`^*JmIs6#L{Fq8 z4{P`&&yPEZ$Vf|eiufcCAUlZ8NRx+~9Ykq-xl8L1t&yg6h}uY#ho>DxZ=`7*qBzpD z4$&Mj?plYajx?=9bVr)jA<837>k#dcrgez=2msJJM1Q1d9il+ev<}fAXkw%YwxD&0I7!nwM4qH+9U@TDv<{IdXwV5IvKob%>%#(>g@c z#BpdHqH5B#4$(DfT8Ai`G_6ClO`6sr>gJmtT8HSHG_6AvPMX#s8YfNb5S5drb*Rn} zX8Zt_I24I&VUTN@luT!8nv_h#NSZ3yMX{)o^=tnawLDdF{Ix%(KCD)roN4^+n#ih3 zws;l`XoQvF(tiv_t@luP^#spweMZ~W5$ahkS} z>Q{d-fX>qKqWZOP7mIg^zk(K(r~0*!7mIm`zcLc%OSY#O23m*e*8*QG^2I`5EcT^J z^&5YCIVxH8Yw<4@026-=AnDA zSUijc#Kd3Yh)P!dYD^3pULtwa5^hRR^o>rg+f(K1-I4)xO-FoRY4 zLqlemEM%_Jpc&G%4pnkmJ#kv~tKl)k&S@#?iPP$dYp9YnW`=1}W`2#DAx(Q#m8^j?Sasy6 zCr+y;j=y3XwSg*G!)N&Zm0pK>VvV4|s=cb7Sc7P=>UF3m);Jm>7WF#R6Kg09R&6Ww z#2QV5Rr^Cdu?E!ODzrb;6KhNjR&6Ww#2QwERohCHtdTW*2SF5|u{EU0b!c=AX;O#A z*N`S{r4cryNegLc4NgtYUcWO$n)HH3-jF6Oq_H=o$=Pf44QX13s#fD}aGYAQs#Zg9 zutCp-jIsV>K7)=_A!zZmnSJxR`U28ZF`Sk2n(;3yYhUDPbwS`pE8kK`p z+g>%TfjL;U4%M{A=J3NZ+P|u44bQ=<*P*LxjnKiWZKaylARVmQR;p=@(;@0s$B?eB zHB<+y_O!09^@q!_iWW3*hsBLvhiY15cd+VpsHQc12diF(YFZK3OApuxiQblQoEkrJ0tjYif<-!Ky8!YibSU!Ky8!Yif<=VW}shN#l7) zlNQp@9@3-^4elXLMw5p3kS5om0X_suYaQy7HO2?4j988GAx+v!<9tYy>(EFa7NyeD z8tX%vw3SBtkfwF$idzGIuXS9>2dlP~s#_y}u@>DpT( zf{1e0w$in?1_fc&wo;F+aY0zMt<+;{Xb@IyD^<5f2XU*RZKdkg03oc}R;uo-s#}AE z$ftFvx;0LSZ>nh>>ajIc2&>kiI@f3+Lj1K|)H`c<5LRs$_0Ae0gjL%`y|V@hVU=^% zFd@E2ApNU>LZnF@`U@JQ$vJEI5NXoC8bCyv)}iZcjUnPjPTEDIh)9z$q;W)~$#rNX z5ot0`HI|6mL1`-#VMOgJZ)MIOK5mv23J+{Udam%S~rTbwTVuV$%Lp`=e z8DZ77Qje{HM%=>cb*RVISR<_3AL_9++z6|-m3nNAIKry^p&na7np}rQDv>62Xsi-x(pDO+M4DWO#w+oKA+1Ao zt|3cUr9U)ii8N^|4O=2ju0sQt*piX{(9k8)q^&e~i8QT4b*}MCSoJzo=NiJqW{=jP zI@c&BtlCzpa}8v|s@I`9*H|X3+E%J_4QFC&Nv}h7t`SXGwLetn8q|bU+e&q=aZUWn zruK*GTtl0%YFnw!HM$9_ww3B!1Dx3U(za5aYm5_CZ7bEehB;x?wo;vIq!U(cEA`zP z?8HW!ww3yBjd#MTZKb|jL!Pi|TdD8Xs3$h=w5`;4Yv2=BZ7cQN8vBG*+e+`YHT;RM zziC^kKi3E-tlC!U&ou}NtG1Q;bB%+-Ds82aP;55Jb!aRUX;OzqLy;zJrSVXt$#rOG z6lq$As#}Ai_#&T{tm@XdD6De!8W}~J^n%7lu^B2Yq|s5NNl$Bh6lu~68X-lR)}iXw zAStYR_Ns1;lVa;t>ri!Ts1#OhAyv0VOJUXPP<3m-6kEC43#x97nZl~qq3YJKDXiKH zs&0*(Vry92O4Y5wQ&_b>RNWdsg;m>1)vX~^ShcNG-5N#3Mzpq-dTb4w!m8)29$O=) z*t*tpR*$X0Q&{z!)njY?6jnWF_1GFhg;md4J+?+s@jX#JXZ6?`NQG7VS3S1IQeoBp zRgbOVRBXI!|EkBdu%(P+^rb)fg%s z0%$3!S`DMZs^zI_HIfRew7AAnk*0O%9+`$y@m*VKXN{vGP1-;ssYuh3RjV3Ig;n}e z!>M?1A?>UIRix?Jt0&f&Dy&+EdSVT$!m4$sC)UU+9**dBs3+FoDy%YIG`xy5=}Qf; zB2DX1t!j)Fk6pA5)vAVBVbwZRs~TyAReM3Ts=-z~#?iJ?t;RnU6!sW3@`_Jdhk9ZS zzQU??s3+F=D;^MO9qNfS1PiP7xq4!a!osR0t7i!|vEjp^cXp0t%lb&;lZ=>4V;MN zLp`xZdtueKQgz2aP8D>dp7?YxEaZtwTMr27qDJI@A+u3>a4JbM?d;2F9aQ z?GIgNYe*PY?GIJA{xB9+?GIJAhKliMR{KNMt|Par=*4Wl=K3hk~;X5TnC?$Uf`3~A?oJAx7H!*CQa)Qb(5xbh`LGBIz-*1 zX&s_&9;s^`qHfZ(4)NWjX&s_&(zFgyH)&djth4zM3#~)cO`6sr>LyL=5Z_Ij)*v%>kxI5rgezANz?K~$^6WQmM4CiG%Zh*Oq!M_N+wOuS^P9Hl(>g@S zgjQ%B;;~87I>cj>rgg|Vn>4LMG)d;6r(xeVT3*+bn(xeW;^fXQCAmmNcv<}sD{A0xU4}OwGOI9V@Uxd);G4g52 zs$`8GBV0vhB*IUmURAP2kC9K$UX`rTV_3BgRkB8p5eTDosFF2$469y;Dw#*OaxSW5 z9)oI{wvZ~BM}T5gCG&_))3gp%a{N2jQA?_lHF}JY9j!yv%_9jZPu0yvzouy&s_yu= zwxc>!-E0`^5n6|;o9$4ss=C>3)HJO_)op(Qhb=G7r*){h+2j$cs#||Qi6A7cL)EQu zWLUL7RNdS%Yk7Jds&0)VBdAHom8zTDCplKtt#M==q1U16);Kb(dL626mY`Ces$1j8 z2&U4ptLoM`GOT(Xs%~6%QXY;~KS>=pDNU2>zzJxYv=tMorb!)4PMW55sJiWUmNbrx zA4t+VROcE;hE?lOoogH!R;@#I?tgJfuR}d{{MT^8h}AeUK4~4QbB!azs&%N&HI9q` zHLXK+Za=?dzrU1Lo!c)kX_OhIXdS9^jWXkuwGQ>z8fAu6`$KiEQD#`RKUC)$WkwTd z$?Cf`whXJ5tm@X-GOSv%s#~MSXi^<7>YX)u46BY8)vrd6r8RntPdX-5zZyM;RqIgw zYV;UZtwX)DMvu|GI__1!8a;+p$E504qsOr7cv1ao^cYs{OVzJNk1?3E#nn4&^cYrc zarMp`J%&|VT=lEbV+1)$TWRzdX>uJJJw}?;q0wWcNn7a;G?6CPp>bpkd#yuP+!{xQ zRr*8Y$Vij6(l|2Gis(=npxOCT*n=Wu$2x>ZdiL469y;`e}_QBhXXpP(Q5^ zWmvVX)K6Pzf45=zsN7)8kIQX&)h7BBW>EMe;^QTDLo!>6o zZV313gbwf|8BGw0kSU&5T__GZZ^&R475VdqL32W;@p}NDsApA=T$q4H`TsGjLF0$Pm8u!L}A(80Xvuo;PU7d3d03 z)q_S}IAqvR4k%{YRb>Va9K=@)(*uW856a~R@{D5;cg9R`tfq1UbMf^LyYQ0HW1`dQ z&@NjXSUqImKpsx9hcqaAUUfB%kgG1{st0q4Oi-bU0o50d9u{h7S3S7;y#J@{&f~2b z|M>5pU7-+3NQrXFDe5? z(uNp2i!CZj<&iy^Dv$T?)~~eR;9kBeh1qry!urfac|p0INay9J;`Xd|VWPMsRa{oq zG`B3t=lb?bTHUn0aWZ+t6{lu9ebNR#oi42b$((Cv9p) zeo?%zxIEvgZ)Yau#W`iRJCimcqqrc&BJ2ZJIc?p-ob0$wAt)~_F3T;;k0;`(GCd$v zoXRV=Ilu9oq@8|h5muq}YBVj*wp(}cxZPtYOckXPiIR9>d3hq=KAkAcO%z$x(zRkC zc_rEL;=+_|*Hlh%yeys@xBYCb$?i&9JGD#H*3^9$T6XR7{F3aVf<$qmJSQ2?X=+>A zHg8EXKUG*}+t#*Ud8*9wrz@17lU-a^7*CYhnj})T8|^&bUT$O;zjN|a$wYB^LCW(V z*bz;0vXjZ2WKMoE5w~}N<=ARAjoS-BO3I3h%Jbq$+Zq4626pnAZIdaBQ)T7JWNxZB zQItxi>}x=_HIMw~P90E4Qmo)*Mm=)`G1y+59^DYGIFo7v+?dgq?Tb10}YlthzQct00kE zR%rE#+cQVS$y8n3F&#|^^JENpLX`O!3CY`1VSw=W23Uae;{!4Dkj!Eg+R%`hx4i^p@~ zWqHZGq|IW9+gWsBi5+gfta#tP_8IMa+sb84^HcUxBs(l@MyCB+(|l_U#f8?b*cGVM zffiZTv!`}t(~|5QTY&8mYkziQ&H94;{Ia6*qB2_*dzF^n38vL4>(WohRGw{RI|(W( z%hBE}x6UV?vMUhz)=MXv=9Sxjp+oo*f6t+@^M%CkxARllB;FQBxZViWAlZ z;uPMeOW(u*1?Bv6~yDkMbN7#vxDr8% zXPI5CKF}%0`)HWV%g@e>H?{xS0F+}JFV9+N(^TAsavRg^D}VYhO)nt7C_A^@HjvE; z%(3$90-p6yaqE+8A17?H*^>UZLfJM%*eeBWW~g-?)*o0uoL5+0V!cyd(khtyzuAj( zv+aR&+w_`HR9skQx2ei)GE!M_(#B)EGGhm}7k`oM->ceR(eA?ZaBmGenY7-nD5u=I zWSjqQV?|j`ahaXC#B&mfyu5G{@;`@KNr|=9+?1V3me~nXj<11DleN<%J0A)C!2fGW zHdNXq-NFJJ`K`T{l-bs`F)eAmsLjMEwzHmaCSpCoEny_HgVb7E(}dm9v`$2=uiR$E z+IftX}UOoHt^WSaJjMH(}e@u2tInnz(H(t5a?wQC3)9mMSYKPtd>V zGx4%+Df@`k%>Jvr$;`%gO*SjC!7^!soAqzj(hE|#VPkji)xUILpLj3psQlE*29WX+ zJD0H?lq$52Ge0k>S>88pOQ(7LIF z9h=4Fg=Gnwz+^{YvM_1)6H~TQ@v>xbdhm$%)lr*YXq{lWP4`LJtpmHmn6&Hn@xn6e zd+kgwnXt~6k-vBURDa)41=%@?GJC(NH87pm#?>>~n-$9P%I)g7wTNUm3{%~Ebyi1c zr!IDyuJJ2jy=|FIBhIx?*}G2c1i;Q<3sPYLef#z4(!=D)^;iHk|?!y)1`+GA$djF)??+A*h!q7 zIwh@T#^cs#ifm2eHm}+G`OpCj?%OZb-KuKmem1KyVMBjmQF$`o&av`r0I>nrHnyE5 z*z5|9xYPh!taiT*Qf1|-lB9jhvrePD#7@WUl8l{>7Zs$eb=!eWkJ>%ey=R}nrQPG4 z!e^)KP_y$6>oxLIHgn%@kz4<3(*`Z*9J&*>lpO{KI4KkVVM zV#{YW%(GL*0$ZT({r<`B>Ljg3DLWA;P(Nu;$J^$!caGVujD(HPsr-~Zo<;WZZaxAQ z*$P|#n4f1S)Cns$$Esnqv2qJ+e9kGeZ*Ja2_Ucky&bA0US1hw?lvv+r^O(x) z8bB&#-A=MFWkp&4ZQmKvAF|vwuG#lk>xk`K*UrQ2u34hcI>7GDpRic;C9VZ>%nJw_EAH&PQrS+a+_{gP?lF%WjMlz*REoiOdK+f)^$vy*0%e$2KEKT+B1NFdvD(!3Mx}k&v1>0#>j|^Kv z_tI3)ex;q`J(As0eKKr`<+cyhw$m~DbU!lo8cGDq%#=)Z`~R$KqFXB7 zC!^fD+Q^4egHnn9{Zgd~t7KU`(e?lMPxcLdkbS%CV_!?l*#!NpTeK~2W&O{>4{YFG zJ$oG}qjZpc=>Ocf|FhRh2X^V#xwLH5p*<$j}hsHdEcSB}(EPRDCno@y^sW@Gske3rZj zw~!a(yX05#7ITx=@NW_CmR~1cO?7?)*RXhc+sf%WB+a#UvJK^QytBD>h|B4?wpI0A zo3ZY)A7mX+958d3AjW)4$0tr{gsg-%DIh$4^x}lrN{_If{oi zBd6onMB;Kf-dXW|lrN{_FDU*GaXB4-Rq;^1oQ}7!b*c6y+vint%oZhE$I<9tAJ)@fa&B&0`@q5kbxSWnZp?KI>x*JrvHITFHhiM|Gj1UNf-jYS#n;Ne;gq}`_mO|c!{k5k z-SVIKVR;9BQ{IU`ly~7Z@^1Wt{1^U1-h=ncf8!(U|6+S_9eE$ll>fnP<$rOR{2%Tm z@5e*sjEc6EGBO^NV|bQa0jukeRmAF&VwJF(d+ZQwO)VpKD6VS%7ds4R$(3;vxeCsc z567+LBk<+&k@#v^g<0w;ABFqNN8=%KH9S^622YWz<0s@}@jST(eqBBeFPD$U+vOAR zKXOf6(>j;fiTGr>7OpSX#;40C;T*XRE|gEk&E!+?1#(?{v0M+|BAx%3+%vc8ED_le%))hE3$K4V%lSQ_kh` z8TbadG43pD=UeJ8XXBCbnRtSngJ;XR_+_~%en$?+<2qT5$kH}BAO9s6;Nz^*j1}Tj zIFK@Mdm!sCUyn!2H{eI)8}SqJP53Eu=FJD472@PM(T4%T}Kyc7C@@ew6rs@?*Gyo%Clue$ZJVew4*y(}=Or_ z72;wz_S!y2a(Eh~FYVjeCSV8MZxdm7gI#EE1n6&n7-O#A{mq z>GHG0XUlW&OY(F0<&Zze@-LO=5?>L?zgm8t__y*r{Hq+kKkkrUAYQ4eIb3%-Tz-*w zZ8=;=swclhJYSxVTgeOX4e~h8M|A@jLSC_yalghpXi`h<_!AV_}p0Ch?!-x9|>m3Em^WjVm5yUWzNrIrv!l z9h@n@iyO+zaGv}gzEFN2x0XM^?d0Y7TKPkqkXPW&az5@We}o6g);?=m`y3&!B!0L2 zF`guUf*+MX#k1s9c(!ci^s;gmyNNHASK}4(=lFB^3%pML5^s^$;B9g!bGIDI*)NB3 zD%&NYbUDY!U-8*m^4IuebLKY(ofYEQ%CnYuk^C)gF0aEa_1X0YofYC&E6)bvH_IDw zXZbtaO`rY#ptC}Jkn(IIK0^Kh-y?6vlVn@>iMBl-leZ9mN)Fq9p8O;6Me8U&A@9L`^x3};IxEC)Q=YxV z?~?c7Y4Sh#N!jXYU+y#J%l{I8#hm%yL1%^dJIb@4`1{J^cVsd$S-z(>{+(YbQ zbnFD;hs)MBI@`WGR@Q|LODD@G;!HX8rP*>V;ze?8e70=mEV0jCDxXBWy<7+1BWc+*7WL2g&vD5IK}NRu1J%l20YiBXTI`Nja4BoSaFX7tEQuFk?y13h^b%(}4JL z`82#*&cbVCtHV$B*&pSG#DA9?;k~jh_E`GQoO#AUXNCCT$6B7o#E+Gm;8WymoN3NH z^Psar{7mK11td$waxQKzH^rC8dAOaNk8hLP_&=FF0V&I<9F%5xU+x$@cg6&pepO3%S zXPX~%R*3(mJi3r(=`Z<0oKeHv0#`C;wmj&p5U;8{p)ai?Uqqe)xfMQFZjD>Xx=?57 zO8F9evwSJOMZOFVkTW<2N6Kx8-z#53e1?2E@#p0$@T+nt=RG-;^O+pV*(|pu|DW=e zc)xrVKGJRsq~j;b?TFWt+v5i2%&QMNE5w^A&o#uG%N=kV`C5FHd>y`7z8-gyZ@^t; zJEoL|$Tt!nBj1F_g*A5??0A@yBu*{w(BgYx&p9 z3F1G>NxWT7;mXIG!}`{c!#dWJ%gJ+|+zF@T&bW`<1rL+MejG2~LVTLs6+airvnY~h zncR&$pGESlkL3AT?oOVaat~bn1anVZSMG&#w#WBYtAU_2kEi zH;A~2JdJp6#3k}{;^)XSa0~ef+&bd6@{`2dM|`6^lX%C7JIk|(cZ;~6{1ov)5nC5z z*H4J+Z|oUtmwXP`zOrP*N*E*RMe;Y0&#joT-%{glAFz>=<8_s?9mY)D~I~jjkvxX$~jAZk!^CW z{1R>%@x}6d;#Wm{jogXt(^(GXbdy6leIp(yhjNBTJX#LrXo^_6oJZtPj^8&Ao*ntD zrU|CYTqK8bbZanO&ZlzttfpC{ttk}g&uZ#J+M3poE=RZgV+&Y!ohHT>;=|-#tosr2 z%fxHRui%sA9<-|la!>nXsgZ1-RXrjdHwLg}u`5q{z zvmDCNBGXpZbpA2&tCTrTehp8Ic(VLD@u?9{ldS;N|9Lr-^OF1q`So=@_9oWX@7P;d zm-f=u<+j)o;u|B@Wv|%V#C6#vwiIXB|HaUVG z`-rcV-y=_H#0mL*;@u0NBBRnXFKIh3!{nsoW&Bc33CV1F#>v>tRBXBZv7}uU`w(jrq^+vQRuEq)hdQs4Lp?Xjp`0J&kL-`7ossySNW7Zv`>QZZ zHRO+RZ8?;GiX6(%mOmj+Q~6U|67e~*DrKpK9Li}eKf?CxAb&<4pYyO9mnj}xE{Afu z%b}d!^5^6q6!8%G3*w_9zEggf_Hb{+_sO9?Gvu({X31Ytj?beAepT@`#NUp1nH;wB z`bhkH`7848j>PxMUlWgME&im@0Nce z{y@Y&7bVnrhT_4q~mB?``My+@HRQD z*UpId$f0igBd(}97@?lW$=j&giE^k<-C)(h=eLAqouPPG)|qlB|6Dngb3yp5j-#t0 zz9v{@c8a*G9QM&|5&N8$uq>a)5=fsQ+(r z*baY3{BN-8Uqy2;ERT}UV+r-Isd(^7a;S5|h#SkH{zVa=ErPl~v%9Lhga4&~>`p-i8X6MUZHI?1(kksQjuL=NR& zC5QT7BZu-+^51;6iyZp5!SY_>LnHCK<qt( zzBUry5Q+a5iT@diSJeEIu-wDsf2hy#k$A00{EUdtl>a6Fd6D>qk$C%vua(1kb&kZl zMdF&nliqG4i=ktVemMb3i%St)Kzm3Er+5X*JSpP3az)~eB5opIOqo7!C-`i|D-*v&4)wfT z4)yeTJHgk5xayXOxRV^})+6FRawY0BIO3slsKcERkC#Jz9+5+R9+yKMW<@+ZSoL`! z;stW3&ubCCB_Be4-iz4h{2WSrwc^2RAdTOd)x}JKRGF?wSE||6+hm)16 zMtqDM>RB`5lVm*%VJS1>EV(lA+=vU@l;1)Q+pV=6w%ZjEw+mMJH$@zmLw!0&+)b{+ za{EU-SPt7~WW;yKVf#ENAI@i|%17WQBKe<+2k&ovQWFNgZ1BJLuGI`oTpkR0kW zI^wZz>N8ai^_eCg$@ZKhhkY?GlK-7Z{`cjomNRK(TgaNO02xSkx2wZ;+W$YEX1jramNw5zM-qga>g;#G23*0&LFl*4j&%VD{D<(jN}70r7Iai7~0;wLE{TvrauJtN{X z<*?kdBKG+|CsKZU#X~vQ$|2q*;_h;&=a5KzcqBea4(AM0Q!REzbk9f_YJhj>oJ`LZswTWS%Bw~oZGi})rv ztZ(;7ymur%Qa*_??~v=@dm^4BUrj&!qsDdLx9-2|}oVI;rL5vogkt>VEO z&BCa71Vt<_+ z@u_kH@;8dOi98~V`w^cl52xS0AmWSUzU04FK8-SOltX=dj#F?a#Y24t%VAkVwNdC2vJl{vWC6a$nB>z8=JQX#ECoJnQ zIh5~nlR|y!MDo;+xM3v!S#rpKZX{33h%b)hzaf&pG?J%0;#(s5heYxZkL0;C;_;FE zb_>hqHnTnL^!&iQP#Yo+%nOy%^FnQt*f}%X_9W#A=VNkKh}Tt~@T^mP&HjRjU(+uF9WbtL-A}}SH6il*O$*E?)y3i zHs`@SnBe>25(L*CN)_D?Jiw~+I(Z~rp#Yn#Uki2F7##M;iWBJA6+7;C%5bd%qb zZ@06swpHwG?Axjt*7k{MB7mjg_D}3wJX$^vkCo5IcgxN3MEL?dS-ucIB)7ni$}RD9 z`64`1ZiSzbTjS^Ci}4HcC3t~+DPAJiX8XJ=Uq<``xefkEz8rrlUx7cD+v2a}EAhAT zRrn`4i}HVw+Y$d=ZjX1$S7W;nci_1sy$dUL4e`oy2YjS_E!MMqvFq?j^7Xi`tVtG@ zd_LZd*yrQjg!N9U*v&XcF2(tBM_eq&aWlCLpD!nH3pt5f%PD-BT#oh5t5_%O^ZGht zpV!v~->5vd;Er-voRqs^J#(0T4zZuCNg|d8$vyB8xhEbj_rjy)-dNAtrJui>EcYS) zklYtPD)+D8W zQJzIPKgdIg|0Lgzf02jb-{s+Wr#u2@XwKWylv7C_NxZT=3Lhzt#(Lg3{S5L+@)+WE zGef+)Ta;>v{6nczl_BH*PE6gWJpZ;*RoQ>YtP+5cfHX z6S2=xoP;$eK0Qxv^*J4l-qNhPL{)WrHAA&Mn5Wtv3t54#_O4K7_Xm^ z!x;UX9LDGu+Ym@zwHU_y+lLoRp{G?(%eet2_gbl%K%k zkG=2OgkM(t z2kh@R+l;+0+Jg1Ez1WZVOZg}4{mfSEeM?vuy=E)6jksRZ7W)~;tmBCNf)A5_#mC6M zVV{q^9cL>3JN7x)e_(Y(u|Ki8s@M*Eu^j5qPTome-DPYSPRYA*5BV=VNZx~o%YWm$ z&S=WO!)|Wx_l(gm#gBl*PAPR6ZG}1B16e9XEO_f;NEvbHo> zZi9!(m*X+AUT$Y;yxbN~lCQ)*u3d#6Q@kC1Qf`lZjJq1oQ~VmdP}YQQOFrIRi{DoK zI{dzTJzgnm(zm76@{Raw`6j$Uz8PSQ`nzZ zD#ynu-U-*1JL7tC7n~*Ef}6-)ah}`_m&o1md2$cz&ouSKmnz;1Un%#-9ppavCb=(8 z$eIXmsf*kn_ml@Dp{0lAp?I2nJN9RwhT%Di z563UcBk(KoNc@I83cn+d#>?d~_!IdK{DpicUMr8qdUb4U9R5+h3;!yQ$2;V^v5(RB z;Qfl+IIvT(>cImtgpwhS8-MOHGHi6IzCZ;1D_(li5tjo;WOkV zI9Glf7s*TUIr2OBLit^+=>@T6_zL+wtgrF0_wfz#2RJS-$DQO4ad&wI)>rP>M|iNj z5)YF<#$)79u)a3OKE;#dRro>qGyIsm8b2w2j%UkX;Cb?wc%i%ozb1c$-#?R7#x~%e<&9WVv}504P1}uqkN=f7;fi+h7yAKMkvHR` z1jPvAQaEbgYK2QD)x0JWzOXc73mGU3BgZwAHN#21I z@=n}E-i3S0yK#T{FMON42ak~d#&^nl@jdcBe82n;epvn&Pm}+{x~ve}k9BDvmSGRv zSb9;8VSPo9>0v2L`kEc9i1k%DRtf9tZtM`OudFdWP-RJ9J7b4oeO-*{<+Yadl`mEW z>uX!=aICLeu_Lg)GR2O>`l=JFiuH9Rb`(CusvbKUA0b!6$H>Rv6Xfc+j(jZ6lxyHd z@^Sb~SufVLR3M*#&z5WA=JJWSm0SzAk!$02@=5qQxehLsPsSy=i+js@5Y5s+ z`BXeq){A~Ejgsr*adHDZK|T#nk+bkrxgplj5^IDtJj71N>f&Q(V0F{6##mi#tO-_k z8Oz4%@?vLVbz3n#7-vacPb?R!`-nBg>H=bUSch>eAL~$z6<{4su|ljvB36XetYgJk zO*2-4)x2VQ2+xw5NbGE^-5hI%wX0%!DY7MP?wB6bv!qQHI}dBMW9MU4J=Pp+@v#fA zzgPJ}tpAI(!2Wz+OKi>4?hRr8PTC6lchc6_zmw`imi#-ZUeavIKYJy#i<2=VNWLf1kY)`}bKrbZE)H&$h$sf{`P@V+7SWe=$ate2l z%d!97K_{G2yff}5cfoz-Td-f7?TSYz-VKkHyJP=;-2?l&_rymkPcLlK-0b`x`!(l2 zxSryDaYMNu_I=bJdzk~UZ_k0)x91@2ZD26=HV}Rv!P~&C#J$YhuN!*>2p4%^xH<7CSB{Wt~tetZD?etZ!7etZb~eta1FvHS@3eL5BUK7ADX zvL3^}tjDo0YZ~@tO~<~h8Q7Qg1omY;iG5i!aiP|07CuLQ3b&A-#+S;^;H%`>*z5Kz z_PWi%UbpA4*KIELx;>A*Zu79$?FH<0dlCC~cnN#ko{zn4FTkx-pM}`l_RHAY_AA)i z_9EbkR-i9xif5v`o@E7cJ z4}Qf7<@pWYB5%jN<=?T-H~0hl^}s)|zh7tvzDN0Y;>q$ZJXPL}pOF8;ehqLB_IU+= z<5!etFZSQW*@u@Y{txzhUjJgh?)M-5MtSyQKbOeR-B>$M(|(CzKbNS0Yb#z6pDOF2 ze@lM69D;KcKNJ_qhv9Q&y%@k!OSua6d$osSKi-eP*DKGFI4)Pko#mr&PgyS*urxrf zhKI_>VDA(3gB6y%PtZ#UEP0<$1ACuv9QHopc*IlP1MKU58uq>- z3y)KthIoS92v3pq(gjOXx?`QP#3`^e6 z=*L(rc|UV4_I~C%?EQ>huwlvjnHwQGOc#C_jULlV@YUhW{+~cdyOC z6?HB5IefT07at=(k88^FuwS=-0iUM$i@1sW683ol^YPh=FTfYb3$b6Te;Kz`{1x0m zUW9L!7vq%tD()t~hW+~d>-bj1-@tk_CH5vBE5C&&$V;%ltL<&<*W{PtnacAHo+H1D z^{T>_G>a<;l9fMHTG*V-{297uf=2K zZ?T_mtiul|z8*g&Z@@FpWTi9eDW{s=aYM|pHKdc{d{sS_VdYo*!Sr_xU0(i7x$L`!+t)wAN%=a zMiu+7c1>G(VtAZf0sH>d%c3m#`D7*R*MbhgPb&YR*sld0hF?^?GWKghRj{8!9*+H5 z&=Gj0@*j!)T2NKIR&o84N6LEfl_ft{ zJRa9l`~+N2u8AAUdO4P*Gv!*iP_B*r{O}~)Lh(BIQu$DK$PMr)`84eFDzoq;#T#Ou-`)sMQ~Y%Nl&lweS(+>B$LlODkegti zf0B)tDz2A)Sz0dV;7{dTyhd({*UNc$vz(8Akqht+xe)J_i*QWm9>ut_T!MX`$yxY# z#m~ldi9CGz?Be7QMpCF=!dmM)hs#8=BL@Qrdy?DI)3!nY`{ zANRA=TW*a9$rs~c@+J5V`BLn2Nc3ZXmL@CS22YhQ$4|&t;MsCp{DOQX_IV?E>6)cC z6>o=^$?dVvA-@{0R$MP;v-FMJ0sCAL{UD(wpTl__-mW~?b}{c|c3FOS6aVmV9RZ+FIi4J3?%Rqel}#}2;+ z62^|&itC3KEuAXgf*Z+UOz~?VVN5AfJd7!R4J3>yUQfNy&XV7o=!TC~{=tWN-0w|v zCtgqS9=M_06Z_cF3wxQpv9Eg{?CaPU``FYklD~f>|A0vTfsy=!u#aVfai;2^AC|P# zNY)GaEO~u~U?0ndVjs(H$IX>rFYUABW7%-*W7!Do>oOAix{SiUE~Bxp%NXo+y94`Y z@5KJuv61+=Nc=ABWsb*Q=H1xKya)UG-isTl{u8jT??mkDI|=*x-iN(D_hYZmWbDhG zf_=FUU|;To*q8edZlvWtjD5L}U|;T3?8|)=`*wZ|`*waD`*xm&{hVPs_H%|AxTBW! z1nwk1iTxV&Ox$1bS=g^pKZQpr{xtS$)X(5aiqFP=jrv(UP4PMSDfu}(SDuR($j{@~ zo! z5PMr%fxRt#guN}T#NL)Z#@?1b!QPfW#om@yVQ)*HVL$&|jZ<3g=eVo<1@0|>i3iGS z@KE_H?Ct7nJWla%@C11+o+5vXr^@T_40%0%THb)Yjcvs975@(Vca86{pNnq7%arE_ zyh7fLSIJxO8u>@OPW}mRlDFcm@;1C({u%F*f5H3YU$I}${0;l{%j;M%f&^w`p=^0By)Tm$FG$KfLRc2d@7w0s(VUe*sgTUsdV z<+zq!mm6W9=X^T;Q1LVHDp@bkwe*$T1aFYD@fP_^>~ouQus_3?i}xu{Q(U2>z}}0 z|0MSMr?A(*9DDscVXuE@?Dg-0z5cgguYXtU_3wtg{@tJV_&ZU*w7?8Uc<1j z*Kq9XH3Iv3jl{lQqp+{nXzc4X2K##5fqQEm@5BS;v3RIF4v&)W!sF!ec!GR4o+96a zr^@%@8S(_|=Oh!cpOZ|&eok^9_H&Z^v7eJn#>-UB6ud%y0I!lC#B1b-@H+Wnyh(lp zZuV|Dn#rkZSK*q8_XFXYiC;^JUNiZS^1Yu~5vk8dk@!mN_4yck|MLm< z{^wKd{m&}w%l!;{|Far<|MNNa{^twaTy_2ud;hZrd;jwl_HFew_Bwxqy>4r9O_lR4 zK1E)KPm|ZMr~O? zGGOUcxdLt^SHwATCG7o}eu%)*xr!f(Tgr#w%jC+qom>T9FCUJ*?>Yi^R{TiZQ`V0g zSQ;Q7g@?*VV{enyu>QvM0|=J9O;(TOIX04~MkLR1*pI2>u^&?>;QA`FCiZ2Wi1jyC z3;VJ{AL8YNe#7(Ej^sZHd%R90esUy!N+hlyaIoa%*NfyiHIgSYl1D%CV9D#y0Q5YO zrnsxDAE2<*Th7M=z@*ssN%g{LWgHuh_A&9I-7oP+&Z+`0HQ zssvX`8uq>vFju8OXz1jeku0$+y?t+Z-{*MM(lZR!rq>5#@?Rw!y}fw zJ$J<3p5xfta~byboWS0mleoF+nZn+l%dxlTPT1RXXYB2{3-0%(F$H_ucmR9bco2KrcnEh@{U65OHXgy=Hl|{48;@dd8;@ac8;@ge8`H42jp^9i z#tiIj;|c6-<4NpoVGMKZ>#TMZ>#TOZ>!6&x7GKs zx7GKtx781@x7Fp?+v*;RsBE1-d0y* zZ>yhUZ>wKmZ>wKoZ>wvtx7Dw(x7Dw)&!zbWKdEJ{#m~y$;uqz0c#*swd;8pg-&1@e zUMYWvKbOD9YvoPY_t6hne`A}m@1rf)_tB5o^Z$hXe%4letUkL9`~9q+aXrOJvlbzVVSMI_^%D)@?J^H_JOU3u# z%jCbYw~f8{dd2tQxcm?9EdPsp%Ku@1PGLXx_TYE_GcraiPfT0P-W4NP!1u`&@xyW@ zJYCk0Xj$_9>QMZ=;)mgda%KFwtRLF4^p1Qu{!l&wuab|%U&&SR2KgwwMLrt;D(eTk zEbWw!!QL-b#}#50KNeS!^`l;vs>#RU6XfIZ$?^%<`=Xk-vEnDJ=ORkNZ%le@( zOReQP*!!Q8@imH{f^U-bV`7$)ay{HtJ{9+oGqGR)sgH*%-T>bzpN8+1v+xwTA%0YD zgrAg8$Ir@V;1}h_c#+%$za?km_hkL(nWdF-4*p!u#cSoJ_lbhj&@;UfS`CMEm>j&8^og<%*Tgc7vrSb*% zD)~Zuo!kOw7$FtN*F2|S4o$%FiXMCfq zAJDUukZ-}a$X&6&SEn2H_vv-V!<457zC-Sb?~!|9|LyYL*x#ko2S1@aeerC$ANKd` z^~bL$J^;Td55)fdoI&^_#r30qmR8HR;&0^J@OSbM{FAI72DIew%()%!R(u%#S00Wl zRWgsjN5~^_b$Jx__vDPmbrm0jv*bH)wtOcpkjLU?@;L18#<>e$qWE}xrF=KOR=x+9 z%J<@Oc>?zL;Y`H+6rY4|lkdZNjcn|GJWigBC(2W>zXRt1{J7!|;#u-T_&NDuJYRkU zzba3~{@$BMv7bvkhBey89>;zzF%A29%XIALmNRgs@;`z7oZ(6A=aw_EpIgqtes1{` zZm!Qhjs4v68GO0ov+>pPv-n1N4o=9=;alXnxVQW~9wg7h!{it69rBC#9{D9aS)Pxl z$_wxl@wS z_icQkycAy|zk{!o-^JI;%dnr5zlX~ee;;?3KfwLu<@h%FLp)Mmfyc=o;feA}{Gj|X zeq8!I-Z>uk`Z>uk{Z>u%fx7AnJx7F9!x79b;x7Awg z+v;2F+iD&5ZM7czw%UMwTW!R?t-iy)t-i;;tu|p_#~-k-<7VvZxCQ$<{)kW3_W21n zkhkK-@;00&|BTO)f5Cnn{fb*F{u{nR-j1)4f5$h;f8eD2C+;fmz&IO!`S+1Z*w^I{?CWy9{)TxPheqQ1F<47p|H|0wUj=*p5652rBe2*1 zNbL2mioO0vVXyzu*y~>ndw+NgZez=iRmWccW3hkNu7SO+9*0xPuOF?o#5EZ>#5GZ-n`3X27hrFb`cYy_-X>dMZ<8&tx5FU8&_FT>s@+hA{#mt${}S72|GZLzn>E3vo9tFX7pcG%mbeqh;>x5=yV4At`* z>}|3Go~yWigxQj}$?LGU$?LJV$s4e@$s6$sefB22O1>GdkxTJ9xg*{r$MIIV414=b z;9ZI*@jf|){aR%?_G^`$uwSdx4@X<_Yn5HFx7Ay)U#skj{rZ4@T-uUftL%>bT4fLH z*D8BrzgF1`d%Nw8{aR%o?AHqVV!u||5Bt24{y45SJOKN>*MYdF;)Af?dmW62Dt;>- zE#HR6%R}&evVI)f(!=uYc)C0cKP?Z(&&wn5LU|;9T^@z~_!^D<_!@)#___o8@pUKm z<7+JT<7*uDtXE2*CW`Euc_FNuSc;TUytD#s^{a_kFRNXuHw_N zA73-DA74*kKfa#CetgZuetgZspQ)U%U%r;Ze%UC8{qmz6_RDW_*e`xeh5ho6;$gp3 z)P4{9<#0Ldmt*9xUuw!>zxZ(!_RDFChyBt-4*Mlv4*TV7Iqa7UR(7 zbdbY-xmgbTB_)Ub;`6}6e(9@t*e^a0JnWYdiiiC&Ru21Rf*khC19I3ekI7-b%#_1^ znInh&@{%0(%VPN{_KP1cPh&q`p22>+%*KAaJd6E!nS=d!c@F#WG8g;t@;vtAWghn9 z~;vZnY z7QGyAQ2aye*P>V8Ulsod`?ctmc%R}QW4{*t3HEEzpJKljy$bua=+CfUi(ZX=toa=K zwdgOfUyJ?{`?csb*sn!@h5cIe*VxCGZ?IpBUW@%&^tafrMX$qM)jro_zZSg#4_165 z_G{7KVZRprJ@#wSo3LMt{sDVC-;BMTZ^7Qqf5hI-f5P6*w_|U$D3H zU$M9I->|py?bzG-@3@Wj(I42``JdR^`3~&ud?)sHz6*Oh-;KSU|AoDs@4?>A|Hj_V z_hN77`>?n3f3Uanf3dgo|FF07{n*=i#!*)DjEuRee+>J$Pyze6P!apMPzf(n{zLEz z`B3a_{xG~o@yd9eTm^5E564^OBk*?lNW4p~ioN|Gh5fwiXzb@*)$mbjOUK~j-p=b|Z|4oLxAW7mxAQFQ?YtrOcHRhkJ3k$JJ3j+^J8z7eYx_6B z-p;de8^zDW-p+HdxAR==?Yt@WcAkg5o#$h3=LOi?c_H?8UWC1!7h`YdCD_~fS=ih8 z+1T58Gdx4}JO_I_KNovDKM#95KOcKLZ;rj4Ux2-xUx>Y(x4_=cTVikL7h!Mbt+2QA z*4W$m#n{{VCD_~frP$l~W!T$!8|>};a_rwPuE75NqAm9C7gu6GFS-hQpWhDq_lx$} z+x*qozh7K~{rg1+?B6f0#eR--9rphJdhFjXZouCDZ^Uu6;hS(L`DWZ*F2#Pn)Dipn zQXG#^o-*v`O9|}fOG)hKODXKyQ1pxdGUpn;VGzxw%2upPL(u{kgeY zu|GF=8}{eshG2hgZYcKW=5ELS+}tqi&&>_T{@mOM?9a`O#QxmeDD2P8jmG}m+!*Z7 z&E0|hxw$*BKQ}iP`*U;Sus=6<7xw4o#$$hO?r!YQ&E13jxw(6>KQ}i4`*U*>u|GFA z3Hx(%_hEl-?tbjg%}vJs+}srG&&@r6{kgdZu|GHW5ccQh9>)IM+#}eZo12RLxw%KN zKR5Rn_UGmv$Nt>hH0;mKO~?M++zjl`%{_trxw$8?KQ}iM`*U-%us=8V6!z!lp2q&% z+%wppo12aOxw&VtKQ}iA`*U;8VSjFJF7`3#dF*4*JnUo83)sh?7qO2)FX8&?hv(xn z|@-U*vGiHaC6mR3HCAW zZR}&*QtV^gJJ`p#cd?Ig%dn4e@8Pa0^L^}N+y~glxaHW#xDT<9aVxNoaUWqH<5prH z<37ed#(jckXjz|PALCYGALBm5KE|!aKE{2HeT@48`xy5nUZFDAU?1bY!al}*jeU&! z2KyMd7W)|YE%q^P9riJ9J@zqf1NJd)Bla=wJM3fJ_t?j{P1wh{AFz*co3W2^Td?lmg~uzt8~Zi1zwpC~@4apf?ZNpeP&sI40E?!vEyc4gL_u>x! zPh)2SA60$*(MJ<^6x$ zVx_HG{i}7UYi$cw{adT8w(geJ4J&Qk{oj-Oeavfg-ao&OaSmq=cit?SOlEm(?aUj3 zd|l>m=IgXy@b23>^MldXBQQHU^7R4Cj*fh7*Tb1N#@yGrKcR zHw+J(no2)DmVriNV>rd8o#Q^W2B)4t(hQ^Q9S zQ@+uC!KQ}Y{G~gGhfNK;?MrtF51Sfx!*1@z!=`3q{O;jl zQ?og~UwGKm^uX^C9yT?7@I0XK1)G{(@cqNXrlvo>COm9v_Q7+9=LI@cV~{P0g8j-W2Q$ zHZ|wt2Ze`C4ZDI$2Zx7E4ZCnk4+syNnrrbx!o#M9T`8pphKEfJyFf~ZhKEfJyDmx( z3J;r_hwul7hfU3|@rQ(mO%1#FNr#1pO%1!_Ne>MVn;Le-k`50Kn;LePlO7fxHZ|

l+nsqmHe?)lL)O5j*3J;r_?)W3a!=`3?{88ayQ^U`b z^yu)gso5PrIy`J@_QoF*9yT?D@yCXTP0cX;ap7T8GYUT@JZx&l;ExXvo0_rs6T-u$ zW+MK?@UW?A!JiZ!HZ^DBPYw^8nv3wKgojPd<#-;*`+`jkAL&oWw&?^mHMisI!o#M9 zkGQAf!o#M9x80=m;bBw5$F0+b@UW@jqt0n#c-Yje#*YsVn;Jgio1PjTHZ>b=c-Yho#y5qBP0eupl<=^rISxNHJZx$j@Xg_2Q!@=e zEj(;$=HR~@9yT@S;akGPriPDcrPIU1riPD8rLEy%Q^UuT(i!1lQ}Y0RW_Z}t@DZK# zwD7R0;iEF?tnjd@;iD|+?C`Lu;bSD}>EU5h!^bw#Gs45BX5G&2=Y)q%&F1*I;bBv= z9sbPlu&LP@e^z+d)a;9&7ale>2jkBU51X3N_;bR;re-Yud*NYIGYLOGJZx%C!=D=- zHZ}9{=Y@w&4R6~`&kqlq8s0veE(i~snw#+#gojPdFYp(JhfU4H_>02BriQmyrWc2Y zO$~2zOc#cSO$~2DOuru&SzJZx(Cy&?T^c-Yib&rz^t4rsn7P zmEmDi!_&m+Q{iD#!&AEH@595UhNoiFr^Cah=4t#h;bBw5Q=I9u;bBw5Q0OJ4{Nn;M=DOJ58Ro0?7We+mzq znr-lZ4iB4}Uig>7!=`3e{LA5CQ&WTgOL*AS?2rFzc-Yh&jDICOY-&d0UkwkNn&a@V zg@;YeSp4hZVN){!|3-M&)J(&_86Gw@v+!?)hfU2q{M+GSQ?mg7xA3s3`96MCc-YkZ z2>Iw?!vzt9yT=(;ol1no0=8)_rt@c=0*Gm;bBwrCVq8z z*wlQ8|1dmkYQDt(Gdyf+HtOpBqwuh)*%H4dJZx%st}*>rc-Yibb=Z&1cU{h0r-zYq6Y7W464iB4}QFvYy z@&%iklkmLp#}{mBCgHn;hfU2)Ja3fq1)G|A_)WvZre-02v+%H~xf0I{Q@&tRb2EO6 z@UW@56VIEHe8HyX0erXcu&G&z=S_URU{muVo;Seyf=$ie@Vq$Y3pO=t@Y{rkO--_y z`)$L+rlvEVH%$40O-(oacHv=D(+kfV41K|-rXQXc=zPJZW*>ad@UW>Fg5NPbY-)z% zdxwWj%~5y@51X13@KxbqQ!@_VH#}@=CgFDq51X16JZ}*51)G{P@Vvn23pO=p<9S1+ zFWA&vh~F(dY-%pWSBHm9&DHqb!^5U#DZXEL*wie?^CG7&*woyO|8{uT)I5amA09R} zPvUFB!=~mL{GQ=qQ}ZYMfbg)Xc^%ISt-fGW^A4Uj*7<@>%^LhZ;bBwr1%BV~u&L>^ zx%=zC)iwtk>O!eb36X1@UW@54}Wxc*wj3V9~~YxH7oGP zgojPdbNFM!!=~nC{Bhx7Q}Y&nOnBJTypKOVJZx&#;7dIPYw^8nlAWL!o#L!TYPPJ*wpmGj|~r-nqBa9;bBwLAI}?9eZi*YJNWwWu&Fr+ z-w+-)H6!tj;bBvA9DaOw*wobHPYn;7n#uSH;bBuV9X~NVY-;Av*wp+KKP^0LYVN{+H#}@=9>lkVhfU2B`03$c zQ}YzQH9Tx;p2yD!51X2o@iW82rsj40Y2jg0^A3Jic-Yi@gr6NAHZ`B&PY(~9n#wKR zpAjB5H5=pSgojPdmiW2hVN<>Osp*YBD?Ds!cE-;O51X3)__M>qre;65@UW>Fj-MYMHZ`O0=Z1$(&GGp2!o#L!9RB?9u&J4hUl1NPHPi7IgojPd8Tbps z!=`3F{-W@(sac4>I6Q1>F2gSj51X26@!t;*o0?njKL`(-n%nV%c z{)gdVQ?mkpX?WPw`~kl>JZx(Ig1;<0Y---d|0q0cYTm{FI6Q1>{)xXlJZx${!(R~| zHZ>L9++P_UHZ`5`SBHm9&6fCU!o#L!d;GQGVN=r^e_eRk)a;C35*{`+{qfg_hfU2u z{0-q@Q!@mAV|duq9EM*S9yT>c<8KNNo0=2xH;0E!O+EgW@UW?A!Y>OCo0=K;Tf@Vq zW-k6G;bBvAF8;Rgu&KESzdSr_Y8K;v8Xh(^*WiB^9yT>M<9{9=HZ{xfw}*#K&E5Dr z!o#NKA^e@;VN>%Y{ukk4Q}Z#ZSc-Yjug8!fJu&G&vzb8CwYCgo@8y+?_ zpW^Qe51X2bt=#`IJZx$@(VN-KI{tw|{Q}a0f`S7r*c^d!6@UW?Q3I9TP*wnm@e=$64YTn2HDLiayKEeMv zJZx&d!oL(AHZ|*acmHyD*wk!_|4Vq-)bzmrH9Tx;`ruy)51X3Z@UMo4O-&8{weYa1 z*&qLUc-Yh&gnuJEY-&c}-wY3%nq%;9g@;Ye$@sU!!=|PY|F`h4shNsj6&^MY3 z-G3DxHZ_~zlh_{E)O5pl3J;r_9q``@51X34_=@nbsj0?ShKEhf0Q@@PVN){*&j*-% z!KUUAJpagsFWA%^hQBF1Y-$?teE7*1YX1fVN){=-z7Y3YG&fQhKEhf9Q>x? zVN-JsezWkfsksQxjv;-)rsh&SAI$Ovo0_Ze-NM7B=0^Nh;bBvA8@_vZ*woyG-#R>O zY97S1b4p*Zsd)n5BRp(sevjWSJZx%Sz;7QOHZ`x}cL)!gnz!*i!^5WL1N@HRVN>%l zJ`E3>noire?-d?4H5=l4hlfo~SA3uFu&L>WxA3s3>4C2b51X3acy`|D3pO>o;rZ~K zFWA%!!0#L$HZ_Cr{G-agU{f;;ziW8d)QrUM79KV=qw&?@VN-Jgo*j$&f=x|5o)7l< zf=x{mevk05shNTQc6iv-%*F2+9yT@S;`y+kFWA&vfWJ9BY-(=64-5~RJ}a>d&kj(1 z!KUVCcs_vW3pO=(;Rl6>P0cUygTuq7<}v&M;bBv=0zV`?Y-*mv9~d4sH80_ZhKEhf z8~B66!=~mR_(Q_Ore-yMSa{gf{2PC0c-Yi@g&!UsHZ|*Q>z*CN`hrbO7yRMjVNFjUN*p zHZ>>X+3~F}*wi%Q`QWK9*wjqHpBNrCH8b!hhlfqg9Q-NaVN-JszBW8;Y8K$fhKEhf zCHT7Vu&KEMKQ26MYOcpOgojPdt@y_9u&KENKR!HcYVO7_3lE!`-{U8Thiy{u3;3oI zo0?bfQ^Lch<_-L<;bBwrIld)4Y~KxDr-%FLB{nr1<6FbSre;(8Pr}2dW@r4|@UYDZ z?vFpS#HMCH{8`~)Q!@lVFFb5&hT+c+51X2!@aKewP0cCz?}dj=%_RK%@UW?wioY#9 zY--NOUl<;?3xXHoFDkLAxfFkKc-Yijjb9iZHZ@D}-wzL)n%nR{2oIZ@JMfFb!=~nb z{3YRGQ}ZPLhv8vU^Bn%t@UW?Q0lz#vY-;?eU*ErLcz+n{`)ubsIY~T8dTrN+ZCoYa z+f~;0g?ET%S3l@=Yl*Am8)!6t0(@IEO@7d8zj&MsSIIA+QGYSKe>98eA1QH_{NuU) zH}GT8tfc?2#8vXEbNw3lqi8;+|4)gl_|>1ULdt!}kvl*K8ZSCw@SQ zYifdz$B!s+%|XGl@%1IHIVm`)o<4g@Yuz|MY;B3d2^qCE&T37n8|qr?lIn5Orzh1d zjZJmc*y;&&O|{dT>uVcl)YdmO*0t1*udkg_H+^!xsjZzhv39zDwKUc@PMq0TTQ`07 z)cS8MrZ-M)C^))#TI1Aj{Co9H&C?r`*re>_rqnjhYOJ5p+E`m(*VHtwuKpW0DyrJ4 zer9T0Tk57xAK%!LKMCJ%Pnuh6C)7=CX!?fZT4$9#s^uGxnlZI$;^fAr+11&G*3RX`>jo7Ob3zOHp*^VGxr za%!$WxNc%oW5clK=E>X?_NcDOk1xu-`})kITm6DRVrFB@_@?I5IxzHWz26}HHs=@C zsoaL9)Hbxttc{yu+nH`?95>_C+KE%gH~THLjqApZYiXRRjSl7K>c9S6=U4QpjoA%3 znr~23>grp3Z0>ZLCQkKBJN|-SI7xMV^OPx#Q~kRm7maVJo5FQ6aeDpC>blm}mWkv1 zR_Ld8YD@EsX?}mu(Z#<*;BW0(yK0;|`_~r!J>1#fvsvlPSNm?TyR6%|pc|3vHYw=F z$WWDmgl-|1>L>5 zZmWXs@m$xvpnE3QZC%j4oa=axc)81YRj%8%pyP2-cD?l|=y+_Db=wtm{M^gB?F%{{ zJ7wJt1sy*xv#w`B*Du%YSkMj3b?j@Q+~qec*YTeFa^2`$*Snw_o9p@%bWORA{XCRA z-C4P=s-T;n>-rXSi*nsg1s#tWv+HB$f^J!^+oho6F=aN7&oGobzYpiS-3q#uxvsjP zdokDTUeLXn>-rURymXPBk39;y&vV_k3%d3FAzU`Ee?hlJuH&;F`b}K znWqG@?mGqD<+*N9LANy54KC5h5F>Nw^-?qB(N3;asVX82KSnUDVEJN84hFM(F} zclc;x{&ZiQTak=)$LSug<2YR|)BL>0eIDDDt!&=L9_8oleP%_n%p>NV=!YD~yy|xI zw%Ncx%jG^>*}R?F&3o17_49~%C;MSG@6dMh+V-cE4fDfn-q3dQy81t$m(8oq&1+~k zZ-Q?h+nud!UTwR1gMD6ikJ!FCKg_o8;&$^|%gj5!-MlfmdG)z@kG7jPugts$+s&Jn zo7b3|$Kyi(FZs5Au`c#`I|jD>pYy@-JNg;tFuNaOKTA9>pRMe2>EXcN8LT4~`04U} z!R0c+53|dK$6d_JPIslx>!!cML3X+`)n%vqdYRMZrKbGpzMMPV$(qOYc%^rK6JC4& zmuwh+cGb3+!MaDM8-McudpFPDi;yk0opoos)9p8}B6-GNtKj@j_2aYi`&heq^LqJn zDA|d5m(BZQyY3CY!@lMlPWRb%r<+_`ku2&Rr~BR9>Au}=-n;{nWPu-_t?YDPYd3Gv zqZLV|JI=>+kF)dfX}fvr5An;-@5{55&HGood5a&fNP7BxAoFJA=56eMH~Txx=z5Uv z`|ler7fu5`n8?>%D=LyzexJ`geimfgw|1VNKI_OslVqfyZnm=1T02kO)z4NW?8=vU zJojF1-gW*%D9wiXVYzwzUad$5`ti&=qhQ`6K5s+^<~8}eMVdFaVBW?@CQ0t*Qg-`3 z_j$cF@2rA(?E7o6AD^vq=eOr;70KrwaemMC!*ZA3FMVE3Hp~yp&Fk@c>3-vT1@qqb zc@^1^f_c+?9xsEiediX;`_La0Y4SPDJHKGwE=MQHaejQZ%FSEq z^RD)Yc^CL$xy$bypEoHR=7;6x4SuU4S*dv!70i3r=jm;wZBxt5>-@Igp8b1}?ORwd zZ-qb5JEv_@{IA@+VSlekUi5@{KPZ@YxIfrf$%Ua+ZeGuS`1h~hu`}-yZ_8bNTl<5N z%4~>t8MeQE@A_v&!s~|2yR=~5b|?8~-u!aOR=Ii8)>I@*bbobO!MsuaV5Dm{%n!@W z>-uTw@y3q}=8g4v`Jb!h=JoY?y?qYn_lkmfGkxBHetfpd%^TtKvhRXQ*KhAHOV=-N=P0**5Ba?PJFtDDeO`8Z{%OIy z&wSnv9hmoUZu|IMvE24;GcHN4@4)@bYM-~rA0%`6-BB>_{>F}7e)HC;T>JacFAC

|^BVm4Z28$~TkY?k-}QM9`!Sr~d;GB6<#+Pw%!Mr_v9?!dEtK8*R*|~D<{pn*K zm%Dz?_j%`JL%hqd{q1Fm&s*%*8<*b`1@kuWUlu!ZebjU*T^~;t%-g}|?c~R2tK9aD z@p;2MV*7sUhvm-iFrU|vpKnWiUO&xSQ82H;=XK=g$1^@JyMCW4nAh6Dd8=~so-UX- z-{*DY`bfH#u8(I6=3VLYnzJjxyA0dkUV8hy?Dq0p!MqKobnNoGceB#v$IruZ*YDOo zuOsL88K0NkAG}a7Z+D-^Z7N$Cwm-jXd>+r;(Eh1l-huw4#tGRF?=oyZuj`hT$#Ttm zsbJnU%}MgAAD^vq^B&l$GFj?JvVDK?xZLG8*YE5*^8GP(>(ckfD+Tke@OhSPoFA6k zzC}JS`}y`-!MtDjypCMID}7#e{k~B!?|Gm1Yc33}a@)7s=k?X^M{jvs?((~8Mw0OJ zIa}rCbx$jkp?)OS$KO0IH*eI;|9;-P+`N-|RVKS?-ro!6ed_b(WgF**<>oEuUAgvo z^mhv8oqn3{!@dLan);L;AG}vE?_;0Wk?VJ;m9F0p3g&I%53GK-0E5W-A+utAb^?BL->Awo*{du3|LUQPef zye|so&7J4ZSNQqJRyMl*_0eNMWio%=xV?Pkak=l`uJipp#@R4GEH`h-K)*ixcy524 z{Hxr&Lww%yY)HYpWPiUu)%C&id*$YRbZ*ClDlzbY924KUVs@?mEBg z70f%LgY(|Z&D)@0UaimT$oA29sDx&KdxOfeBR5sADG#3+jz%iK3HYX z11git{f5Bxo4wZ8*^k>r^ZKbf^2Q{&`tWQ@oECo?(5`#WUwGPFe}@AazJ{v9wJrbL z#K)y^ZQFz&`a|Lm0Pp8dfOv(X&-x9i%~*FSUd uuphgnAMsw7n8*F*2L9#q)~;0_eJiQ*+hDe`d7HY(cgyBfCX;d^>;4a*PbJ>~ literal 0 HcmV?d00001 diff --git a/rtos/common_function/abstraction_layer_spi_pulpos/include/abstraction_layer_spi.h b/rtos/common_function/abstraction_layer_spi_pulpos/include/abstraction_layer_spi.h new file mode 100644 index 00000000..d18cf2cf --- /dev/null +++ b/rtos/common_function/abstraction_layer_spi_pulpos/include/abstraction_layer_spi.h @@ -0,0 +1,68 @@ +/* + * Copyright 2020 GreenWaves Technologies + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +/**----------------------------------------------------------------------------------------------------------------------- + * ? ABOUT + * @author : Orlando Nico, GreenWaves Technologies, Robert Balas + * @email : nico.orlando@studio.unibo.it, balasr@iis.ee.ethz.ch + * @repo : pulp-sdk/rtos/pulpos/pulp/drivers/spim/abstraction_layer_spi + * @createdOn : 28/12/2021 + * @description : Abstraction Layer SPI for PulpOS + *-----------------------------------------------------------------------------------------------------------------------**/ + +/**================================================================================================ + ** INCLUDE + *================================================================================================**/ +#include "common_spi.h" + +/**================================================================================================ + ** DEFINE + *================================================================================================**/ +#define DEBUG_PRINTF(...) ((void)0) +#define DBG_PRINTF(...) ((void)0) +#define SPIM_CS_DATA_GET_DRV_DATA(cs_data) (cs_data->drv_data) +#define NB_SOC_EVENTS (ARCHI_SOC_EVENT_NB_TOTAL) +#define pi_default_malloc(x) pi_l2_malloc(x) +#define pi_default_free(x, y) pi_l2_free(x, y) +#define pi_data_malloc(x) pi_l2_malloc(x) +#define pi_data_free(x, y) pi_l2_free(x, y) +#define UDMA_EVENT_OFFSET_SPI_EOT 3 +#define SOC_EVENT_UDMA_SPIM_EOT(id) \ + ((ARCHI_UDMA_SPIM_ID(id) << ARCHI_SOC_EVENT_UDMA_NB_CHANNEL_EVT_LOG2) + \ + UDMA_EVENT_OFFSET_SPI_EOT) +typedef void (*pi_fc_event_handler_t)(void *arg); +/**================================================================================================ + ** STRUCT + *================================================================================================**/ + +/**================================================================================================ + ** PROTOTYPE FUNCTION + *================================================================================================**/ +void pos_spi_handle_copy(int event, void *arg); +void pos_spi_create_channel(pos_udma_channel_t *channel, int channel_id, int soc_event); +int __pi_spi_open(struct spim_cs_data **cs_data, struct pi_spi_conf *conf); +void __pi_spi_close(struct spim_cs_data *cs_data, struct pi_spi_conf *conf); +void __pi_spim_exec_next_transfer(pi_task_t *task); +void __pi_spi_send_async(struct spim_cs_data *cs_data, void *data, size_t len, pi_spi_flags_e flags, pi_task_t *task); +void __pi_spi_receive_async(struct spim_cs_data *cs_data, void *data, size_t len, pi_spi_flags_e flags, pi_task_t *task); +void __pi_spi_xfer_async(struct spim_cs_data *cs_data, void *tx_data, void *rx_data, size_t len, pi_spi_flags_e flags, pi_task_t *task); +void __pi_spi_receive_async_with_ucode(struct spim_cs_data *cs_data, void *data, size_t len, pi_spi_flags_e flags, int ucode_size, void *ucode, pi_task_t *task); +void __pi_spi_send_async_with_ucode(struct spim_cs_data *cs_data, void *data, size_t len, pi_spi_flags_e flags, int ucode_size, void *ucode, pi_task_t *task); +void __spim_execute_callback(void *arg); +void system_core_clock_update(void); +uint32_t system_core_clock_get(void); diff --git a/rtos/common_function/abstraction_layer_spi_pulpos/src/abstraction_layer_spi.c b/rtos/common_function/abstraction_layer_spi_pulpos/src/abstraction_layer_spi.c new file mode 100644 index 00000000..69c11e28 --- /dev/null +++ b/rtos/common_function/abstraction_layer_spi_pulpos/src/abstraction_layer_spi.c @@ -0,0 +1,691 @@ +/* + * Copyright 2020 GreenWaves Technologies + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +/**----------------------------------------------------------------------------------------------------------------------- + * ? ABOUT + * @author : Orlando Nico, GreenWaves Technologies, Robert Balas + * @email : nico.orlando@studio.unibo.it, balasr@iis.ee.ethz.ch + * @repo : pulp-sdk/rtos/pulpos/pulp/drivers/spim/abstraction_layer_spi + * @createdOn : 28/12/2021 + * @description : Abstraction Layer SPI for PulpOS + *-----------------------------------------------------------------------------------------------------------------------**/ + +/**================================================================================================ + ** INCLUDE + *================================================================================================**/ +#include "abstraction_layer_spi.h" + +/**================================================================================================ + ** GLOBAL VARIABLE + *================================================================================================**/ +volatile uint32_t system_core_clock; +PI_L2 int spi_open_count = 0; +PI_L2 int spi_channel; +struct spim_driver_data *__g_spim_drv_data[ARCHI_UDMA_NB_SPIM] = {0}; +extern struct pmsis_event_kernel_wrap *default_sched; + +/**================================================================================================ + ** FUNCTION + *================================================================================================**/ +void system_core_clock_update(void) +{ + // system_core_clock = pi_fll_get_frequency(FLL_SOC, 0); + system_core_clock = pi_freq_get(FLL_SOC); +} + +uint32_t system_core_clock_get(void) +{ + system_core_clock_update(); + return system_core_clock; +} + +// TODO: prepare pseudo exec for delegate +void __pi_spim_execute_callback(void *arg) +{ + return; +} + +void __pi_spi_receive_async_with_ucode(struct spim_cs_data *cs_data, void *data, + size_t len, pi_spi_flags_e flags, + int ucode_size, void *ucode, + pi_task_t *task) +{ + /* TODO: port spi_async with ucode */ + abort(); +#if 0 + struct spim_driver_data *drv_data = SPIM_CS_DATA_GET_DRV_DATA(cs_data); + int qspi = ((flags >> 2) & 0x3) == ((PI_SPI_LINES_QUAD>>2) & 0x03); + int cs_mode = (flags >> 0) & 0x3; + + int device_id = drv_data->device_id; + uint32_t byte_align = (cs_data->wordsize == PI_SPI_WORDSIZE_32) + && cs_data->big_endian; + uint32_t cfg = cs_data->cfg; + DBG_PRINTF("%s:%d: core clock:%d, baudrate:%d, div=%d, byte_align =%lx, cfg= %lx, qspi=%lx\n", + __func__,__LINE__,system_core_clock_get(),cs_data->max_baudrate, + system_core_clock_get() / cs_data->max_baudrate,byte_align,cfg,qspi); + int size = (len + 7) >> 3; + + int cmd_id = 0; + + uint32_t irq = deactive_irq(); + if(!drv_data->end_of_transfer) + { + if(cs_mode != PI_SPI_CS_AUTO) + { + hal_soc_eu_set_fc_mask(SOC_EVENT_UDMA_SPIM_RX(device_id)); + } + drv_data->end_of_transfer = task; + drv_data->repeat_transfer = NULL; + if(((0xFFF00000 & (uint32_t)ucode)!= 0x1c000000)) + { + memcpy(&(cs_data->udma_cmd[0]), ucode, ucode_size); + spim_enqueue_channel(SPIM(device_id), (uint32_t)data, size, + UDMA_CORE_RX_CFG_EN(1) | (2<<1), RX_CHANNEL); + spim_enqueue_channel(SPIM(device_id), (uint32_t)cs_data->udma_cmd, + ucode_size, UDMA_CORE_TX_CFG_EN(1), TX_CHANNEL); + } + else + { + spim_enqueue_channel(SPIM(device_id), (uint32_t)data, size, + UDMA_CORE_RX_CFG_EN(1) | (2<<1), RX_CHANNEL); + spim_enqueue_channel(SPIM(device_id), (uint32_t)ucode, + ucode_size, UDMA_CORE_TX_CFG_EN(1), TX_CHANNEL); + } + } + else + { +#if 0 + struct spim_transfer transfer; + transfer.data = data; + transfer.flags = flags; + transfer.len = len; + transfer.cfg_cmd = cfg; + transfer.byte_align = byte_align; + transfer.is_send = 0; + __pi_spim_drv_fifo_enqueue(cs_data, &transfer, task); +#endif + } + active_irq(irq); +#endif +} + +void __pi_spi_send_async_with_ucode(struct spim_cs_data *cs_data, void *data, + size_t len, pi_spi_flags_e flags, + int ucode_size, void *ucode, + pi_task_t *task) +{ + /* TODO: port spi_async with ucode */ + abort(); +#if 0 + struct spim_driver_data *drv_data = SPIM_CS_DATA_GET_DRV_DATA(cs_data); + int qspi = ((flags >> 2) & 0x3) == ((PI_SPI_LINES_QUAD>>2) & 0x03); + int cs_mode = (flags >> 0) & 0x3; + + int device_id = drv_data->device_id; + uint32_t byte_align = (cs_data->wordsize == PI_SPI_WORDSIZE_32) + && cs_data->big_endian; + uint32_t cfg = cs_data->cfg; + DBG_PRINTF("%s:%d: core clock:%d, baudrate:%d, div=%d, byte_align =%lx, cfg= %lx, qspi=%lx\n", + __func__,__LINE__,system_core_clock_get(),cs_data->max_baudrate, + system_core_clock_get() / cs_data->max_baudrate,byte_align,cfg,qspi); + int size = (len + 7) >> 3; + + int cmd_id = 0; + + uint32_t irq = deactive_irq(); + if(!drv_data->end_of_transfer) + { + if(cs_mode != PI_SPI_CS_AUTO) + { + hal_soc_eu_set_fc_mask(SOC_EVENT_UDMA_SPIM_TX(device_id)); + } + drv_data->end_of_transfer = task; + drv_data->repeat_transfer = NULL; + + spim_enqueue_channel(SPIM(device_id), (uint32_t)ucode, + ucode_size, UDMA_CORE_TX_CFG_EN(1), TX_CHANNEL); + pi_time_wait_us(1000); + spim_enqueue_channel(SPIM(device_id), (uint32_t)data, + size, UDMA_CORE_TX_CFG_EN(1), TX_CHANNEL); + if(cs_mode == PI_SPI_CS_AUTO) + { + // wait until channel is free + while((hal_read32((void*)&(SPIM(device_id)->udma.tx_cfg)) + & (1<<5))>>5) + { + DBG_PRINTF("%s:%d\n",__func__,__LINE__); + } + + // enqueue EOT + cs_data->udma_cmd[0] = SPI_CMD_EOT(1); + spim_enqueue_channel(SPIM(device_id), + (uint32_t)&cs_data->udma_cmd[0], 1*(sizeof(uint32_t)), + UDMA_CORE_TX_CFG_EN(1), TX_CHANNEL); + } + } + else + { +#if 0 + struct spim_transfer transfer; + transfer.data = data; + transfer.flags = flags; + transfer.len = len; + transfer.cfg_cmd = cfg; + transfer.byte_align = byte_align; + transfer.is_send = 0; + __pi_spim_drv_fifo_enqueue(cs_data, &transfer, task); +#endif + } + active_irq(irq); +#endif +} + +void __pi_spi_xfer_async(struct spim_cs_data *cs_data, void *tx_data, void *rx_data, size_t len, pi_spi_flags_e flags, pi_task_t *task) +{ + /* TODO: port spi_xfer async */ + abort(); +#if 0 + struct spim_driver_data *drv_data = SPIM_CS_DATA_GET_DRV_DATA(cs_data); + int qspi = (flags & (0x3 << 2)) == PI_SPI_LINES_QUAD; + int cs_mode = (flags >> 0) & 0x3; + + int device_id = drv_data->device_id; + uint32_t cfg = cs_data->cfg; + DBG_PRINTF("%s:%d: core clock:%"PRIu32", baudrate:%"PRIu32", div=%"PRIu32", udma_cmd cfg =%d\n", + __func__,__LINE__,system_core_clock_get(),cs_data->max_baudrate, + system_core_clock_get() / cs_data->max_baudrate,cfg); + uint32_t byte_align = (cs_data->wordsize == PI_SPI_WORDSIZE_32) + && cs_data->big_endian; + int size = (len + 7) >> 3; + + int cmd_id = 0; + + uint32_t irq = deactive_irq(); + if(!drv_data->end_of_transfer) + { + cs_data->udma_cmd[0] = cfg; + cs_data->udma_cmd[1] = SPI_CMD_SOT(cs_data->cs); + cs_data->udma_cmd[2] = SPI_CMD_FULL_DUPL(len, byte_align); + drv_data->end_of_transfer = task; + drv_data->repeat_transfer = NULL; + if(cs_mode == PI_SPI_CS_AUTO) + { + spim_enqueue_channel(SPIM(device_id), (uint32_t)cs_data->udma_cmd, + 3*(sizeof(uint32_t)), UDMA_CORE_TX_CFG_EN(1), + TX_CHANNEL); + spim_enqueue_channel(SPIM(device_id), (uint32_t)rx_data, size, + UDMA_CORE_RX_CFG_EN(1) | (2<<1), RX_CHANNEL); + spim_enqueue_channel(SPIM(device_id), (uint32_t)tx_data, + size, UDMA_CORE_TX_CFG_EN(1), + TX_CHANNEL); + // wait until TX channel is free + while((hal_read32((void*)&(SPIM(device_id)->udma.tx_cfg)) + & (1<<5))>>5) + { + DBG_PRINTF("%s:%d\n",__func__,__LINE__); + } + // send EOT + cs_data->udma_cmd[3] = SPI_CMD_EOT(1); + spim_enqueue_channel(SPIM(device_id), + (uint32_t)&cs_data->udma_cmd[3], sizeof(uint32_t), + UDMA_CORE_TX_CFG_EN(1), TX_CHANNEL); + } + else + { + spim_enqueue_channel(SPIM(device_id), (uint32_t)cs_data->udma_cmd, + 3*(sizeof(uint32_t)), UDMA_CORE_TX_CFG_EN(1), + TX_CHANNEL); + // wait until TX channel is free + while((hal_read32((void*)&(SPIM(device_id)->udma.tx_cfg)) + & (1<<5))>>5) + { + DBG_PRINTF("%s:%d\n",__func__,__LINE__); + } + // activate rx event + hal_soc_eu_set_fc_mask(SOC_EVENT_UDMA_SPIM_RX(device_id)); + // NOTE: both transfers have the same size + // does not matter which one we wait + spim_enqueue_channel(SPIM(device_id), (uint32_t)rx_data, size, + UDMA_CORE_RX_CFG_EN(1) | (2<<1), RX_CHANNEL); + spim_enqueue_channel(SPIM(device_id), (uint32_t)tx_data, + size, UDMA_CORE_TX_CFG_EN(1), + TX_CHANNEL); + } + + } + else + { + struct spim_transfer transfer; + transfer.data = rx_data; + transfer.flags = flags; + transfer.len = len; + transfer.cfg_cmd = cfg; + transfer.byte_align = byte_align; + transfer.is_send = (uint32_t) tx_data; // sending a pointer means xfer + __pi_spim_drv_fifo_enqueue(cs_data, &transfer, task); + } + active_irq(irq); +#endif +} + +void __pi_spi_receive_async(struct spim_cs_data *cs_data, void *data, + size_t len, pi_spi_flags_e flags, pi_task_t *task) +{ + DBG_PRINTF("...start -> __pi_spi_receive_async...\n"); + // SPIM_CS_DATA_GET_DRV_DATA(cs_data) = (cs_data->drv_data) + struct spim_driver_data *drv_data = SPIM_CS_DATA_GET_DRV_DATA(cs_data); + int qspi = (flags & (0x3 << 2)) == PI_SPI_LINES_QUAD; + // Choose the type of cs mode, see enum "pi_spi_flags_e" to understand better. + int cs_mode = (flags >> 0) & 0x3; + + int device_id = drv_data->device_id; + task->id = device_id; //i need it for pos_spi_handle_copy + uint32_t cfg = cs_data->cfg; + DBG_PRINTF( + "%s:%s:%d: core clock:%" PRIu32 ", baudrate:%" PRIu32 ", div=%" PRIu32 ", udma_cmd cfg =%lx, qpi=%d\n", + __FILE__, __func__, __LINE__, system_core_clock_get(), + cs_data->max_baudrate, + system_core_clock_get() / cs_data->max_baudrate, cfg, qspi); + uint32_t byte_align = (cs_data->wordsize == PI_SPI_WORDSIZE_32) && + cs_data->big_endian; + + int buffer_size = (len + 7) >> 3; + + if (len > 8192 * 8) + { + DBG_PRINTF( + "%s:%s:%d: Transaction splitting unimplemented, too large", + __FILE__, __func__, __LINE__); + abort(); /* TODO: unimplemented transaction splitting */ + } + + DBG_PRINTF("%s:%s:%d: udma_cmd = %p\n", __FILE__, __func__, __LINE__, + &(cs_data->udma_cmd[0])); + uint32_t irq = deactive_irq(); + + uint8_t bitsword = 0; + uint8_t UDMA_CORE_CFG = 0; + + if (cs_data->wordsize == PI_SPI_WORDSIZE_8) + { + bitsword = 8; + UDMA_CORE_CFG = UDMA_CHANNEL_CFG_SIZE_8; + } + else if (cs_data->wordsize == PI_SPI_WORDSIZE_16) + { + bitsword = 16; + UDMA_CORE_CFG = UDMA_CHANNEL_CFG_SIZE_16; + } + else + { + bitsword = 32; + UDMA_CORE_CFG = UDMA_CHANNEL_CFG_SIZE_32; + } + + DBG_PRINTF("%s:%s:%d: bitsword = %u\n", __FILE__, __func__, __LINE__, bitsword); + DBG_PRINTF("%s:%s:%d: UDMA_CORE_CFG = %u\n", __FILE__, __func__, __LINE__, UDMA_CORE_CFG); + + /* + ** If I have no transfer in progress, then I go to set the command buffer + ** and then first I send the buffer where to receive the data and then the write command. + ** However, if I have some transfer in progress, then I put the new transfer + ** in the queue in the fifo and send it as soon as possible. + */ + + cs_data->udma_cmd[0] = cfg; + cs_data->udma_cmd[1] = SPI_CMD_SOT(cs_data->cs); + cs_data->udma_cmd[2] = SPI_CMD_RX_DATA(len / bitsword, SPI_CMD_1_WORD_PER_TRANSF, bitsword, qspi, SPI_CMD_MSB_FIRST); + cs_data->udma_cmd[3] = SPI_CMD_EOT(1, cs_mode == PI_SPI_CS_KEEP); + + uint32_t cfg_cmd = UDMA_CHANNEL_CFG_SIZE_32; + uint32_t rx_conf = UDMA_CORE_CFG; + if (drv_data->rx_channel->pendings[0] == NULL) + { + drv_data->rx_channel->pendings[0] = task; + plp_udma_enqueue(UDMA_SPIM_CMD_ADDR(device_id), (uint32_t)cs_data->udma_cmd, 4 * sizeof(uint32_t), UDMA_CHANNEL_CFG_EN | cfg_cmd); + plp_udma_enqueue(UDMA_SPIM_RX_ADDR(device_id), (uint32_t)data, buffer_size, UDMA_CHANNEL_CFG_EN | rx_conf); + } + else + { + if (drv_data->rx_channel->pendings[1] == NULL) + { + drv_data->rx_channel->pendings[1] = task; + plp_udma_enqueue(UDMA_SPIM_CMD_ADDR(device_id), (uint32_t)cs_data->udma_cmd, 4 * sizeof(uint32_t), UDMA_CHANNEL_CFG_EN | cfg_cmd); + plp_udma_enqueue(UDMA_SPIM_RX_ADDR(device_id), (uint32_t)data, buffer_size, UDMA_CHANNEL_CFG_EN | rx_conf); + } + else + { + // printf("else rx\n"); + struct spim_transfer transfer; + transfer.data = data; + transfer.flags = flags; + transfer.len = len; + transfer.cfg_cmd = cfg; + transfer.byte_align = byte_align; + transfer.is_send = 0; + drv_data->rx_channel->waitings_first=task; //i need it for pos_spi_handle_copy + __pi_spim_drv_fifo_enqueue(cs_data, &transfer, task); + } + } + active_irq(irq); + DBG_PRINTF("...end -> __pi_spi_receive_async...\n"); +} + +void __pi_spi_send_async(struct spim_cs_data *cs_data, void *data, size_t len, pi_spi_flags_e flags, pi_task_t *task) +{ + DBG_PRINTF("...start -> __pi_spi_send_async...\n"); + struct spim_driver_data *drv_data = SPIM_CS_DATA_GET_DRV_DATA(cs_data); + int qspi = (flags & (0x3 << 2)) == PI_SPI_LINES_QUAD; + int cs_mode = (flags >> 0) & 0x3; + DBG_PRINTF("%s:%s:%d...task %d, %p...\n", __FILE__, __func__, __LINE__, task == NULL ? 0 : 1, &task); + int device_id = drv_data->device_id; + task->id = device_id; //i need it for pos_spi_handle_copy + uint32_t cfg = cs_data->cfg; // SPI_CMD_CFG(...) + DBG_PRINTF( + "%s:%s:%d: core clock:%" PRIu32 ", baudrate:%" PRIu32 ", div=%" PRIu32 ", udma_cmd cfg =%lx, qpi=%d\n", + __FILE__, __func__, __LINE__, system_core_clock_get(), + cs_data->max_baudrate, + system_core_clock_get() / cs_data->max_baudrate, cfg, qspi); + uint32_t byte_align = (cs_data->wordsize == PI_SPI_WORDSIZE_32) && + cs_data->big_endian; + + /* buffer size */ + int buffer_size = (len + 7) >> 3; + + if (len > 8192 * 8) + { + DBG_PRINTF( + "%s:%s:%d: Transaction splitting unimplemented, too large", + __FILE__, __func__, __LINE__); + abort(); /* TODO: unimplemented transaction splitting */ + } + + // Address of the command buffer to be sent to the uDMA + DBG_PRINTF("%s:%s:%d: udma_cmd = %p\n", __FILE__, __func__, __LINE__, + &(cs_data->udma_cmd[0])); + uint32_t irq = deactive_irq(); + + uint8_t bitsword = 0; + uint8_t UDMA_CORE_CFG = 0; + + if (cs_data->wordsize == PI_SPI_WORDSIZE_8) + { + bitsword = 8; + UDMA_CORE_CFG = UDMA_CHANNEL_CFG_SIZE_8; // 0x0 + } + else if (cs_data->wordsize == PI_SPI_WORDSIZE_16) + { + bitsword = 16; + UDMA_CORE_CFG = UDMA_CHANNEL_CFG_SIZE_16; // 0x1 + } + else + { + bitsword = 32; + UDMA_CORE_CFG = UDMA_CHANNEL_CFG_SIZE_32; // 0x2 + } + + DBG_PRINTF("%s:%s:%d: bitsword = %u\n", __FILE__, __func__, __LINE__, bitsword); + DBG_PRINTF("%s:%s:%d: UDMA_CORE_CFG = %u\n", __FILE__, __func__, __LINE__, UDMA_CORE_CFG); + + /* + ** If I have no transfer in progress, then I go to set the command buffer + ** and then I first send the command and then the data. + ** However, if I have some transfer in progress, then I put the new transfer + ** in the queue in the fifo and send when I receive an EOT interrupt, + ** in this case the interrupt handler will manage the new transfer. + */ + cs_data->udma_cmd[0] = cfg; + cs_data->udma_cmd[1] = SPI_CMD_SOT(cs_data->cs); + cs_data->udma_cmd[2] = SPI_CMD_TX_DATA((len / bitsword), SPI_CMD_1_WORD_PER_TRANSF, bitsword, qspi, SPI_CMD_MSB_FIRST); + cs_data->udma_cmd[3] = SPI_CMD_EOT(1, cs_mode == PI_SPI_CS_KEEP); + + uint32_t cfg_cmd = UDMA_CHANNEL_CFG_SIZE_32; + uint32_t tx_conf = UDMA_CORE_CFG; + + if (drv_data->tx_channel->pendings[0] == NULL) + { + drv_data->tx_channel->pendings[0] = task; + plp_udma_enqueue(UDMA_SPIM_CMD_ADDR(device_id), (uint32_t)cs_data->udma_cmd, 4 * sizeof(uint32_t), UDMA_CHANNEL_CFG_EN | cfg_cmd); + plp_udma_enqueue(UDMA_SPIM_TX_ADDR(device_id), (uint32_t)data, buffer_size, UDMA_CHANNEL_CFG_EN | tx_conf); + } + else + { + if (drv_data->tx_channel->pendings[1] == NULL) + { + drv_data->tx_channel->pendings[1] = task; + plp_udma_enqueue(UDMA_SPIM_CMD_ADDR(device_id), (uint32_t)cs_data->udma_cmd, 4 * sizeof(uint32_t), UDMA_CHANNEL_CFG_EN | cfg_cmd); + plp_udma_enqueue(UDMA_SPIM_TX_ADDR(device_id), (uint32_t)data, buffer_size, UDMA_CHANNEL_CFG_EN | tx_conf); + } + else + { + /* a transfer is running, append to pendings transfers queue */ + struct spim_transfer transfer; + transfer.data = data; + transfer.flags = flags; + transfer.len = len; + transfer.cfg_cmd = cfg; + transfer.byte_align = byte_align; + transfer.is_send = 1; + drv_data->tx_channel->waitings_first=task; //i need it for pos_spi_handle_copy + __pi_spim_drv_fifo_enqueue(cs_data, &transfer, task); + } + } + active_irq(irq); + + DBG_PRINTF("...end -> __pi_spi_send_async...\n"); +} + +void __pi_spim_exec_next_transfer(pi_task_t *task) +{ + DBG_PRINTF("...start -> __pi_spim_exec_next_transfer...\n"); + DBG_PRINTF("%s:%s:%d\n", __FILE__, __func__, __LINE__); + if (task->data[5] == 1) + { // if is send + // printf("__pi_spim_exec_next_transfer tx %p\n", &task); + // cs data | data buffer | len | flags | end of transfer task + __pi_spi_send_async((struct spim_cs_data *)task->data[0], + (void *)task->data[1], task->data[2], + task->data[3], (pi_task_t *)task->data[4]); + } + else if (task->data[5] == 0) + { + // printf("__pi_spim_exec_next_transfer rx %p\n", &task); + // cs data | data buffer | len | flags | end of transfer task + __pi_spi_receive_async((struct spim_cs_data *)task->data[0], + (void *)task->data[1], task->data[2], + task->data[3], + (pi_task_t *)task->data[4]); + } + else + { // task->data[5] contains rx data addr + // cs data | tx buffer | rx buffer| len | flags | end of + // transfer task + __pi_spi_xfer_async((struct spim_cs_data *)task->data[0], + (void *)task->data[5], + (void *)task->data[1], task->data[2], + task->data[3], (pi_task_t *)task->data[4]); + } + DBG_PRINTF("...end -> __pi_spim_exec_next_transfer...\n"); +} + +void pos_spi_handle_copy(int event, void *arg) +{ + pos_udma_channel_t *channel = arg; + pi_task_t *pending_1 = channel->pendings[1]; + pi_task_t *pending_0 = channel->pendings[0]; + uint32_t spi_id = channel->base; + struct spim_driver_data *drv_data = __g_spim_drv_data[spi_id]; + pi_task_t *pending_first = __pi_spim_drv_fifo_pop(drv_data); + channel->pendings[0] = pending_1; + channel->pendings[1] = NULL; + + if (pending_first) + { + __pi_spim_exec_next_transfer(pending_first); + pending_first = NULL; + } + + pos_task_push_locked(pending_0); +} + +void pos_spi_create_channel(pos_udma_channel_t *channel, int channel_id, int soc_event) +{ + pos_soc_event_register_callback(soc_event, pos_spi_handle_copy, (void *)channel); + channel->pendings[0] = NULL; + channel->pendings[1] = NULL; + channel->waitings_first = NULL; + channel->base = 0; +} + +int __pi_spi_open(struct spim_cs_data **cs_data, struct pi_spi_conf *conf) +{ + int irq = deactive_irq(); + for (int i = 0; i < ARCHI_NB_FLL; i++) + { + pos_fll_init(i); + } + + //struct pi_spi_conf *conf = (struct pi_spi_conf *)device->config; + + unsigned char spi_id = conf->itf; + int periph_id = ARCHI_UDMA_SPIM_ID(spi_id); + spi_channel = UDMA_EVENT_ID(periph_id); + int cs = conf->cs; + int status = 0; + //struct spim_cs_data **cs_data = (struct spim_cs_data **)(&device->data); + plp_udma_cg_set(plp_udma_cg_get() | (1 << periph_id)); + + struct spim_driver_data *drv_data; + if (__g_spim_drv_data[conf->itf]) + { + drv_data = __g_spim_drv_data[conf->itf]; + } + else + { + __g_spim_drv_data[conf->itf] = pi_default_malloc(sizeof(struct spim_driver_data)); + memset(__g_spim_drv_data[conf->itf], 0, sizeof(struct spim_driver_data)); + drv_data = __g_spim_drv_data[conf->itf]; + // Do this to define a node in a list. The list is a dynamic object. + drv_data->drv_fifo = pi_default_malloc(sizeof(struct spim_drv_fifo)); + memset(drv_data->drv_fifo, 0, sizeof(struct spim_drv_fifo)); + // controllo che il puntatore sia = 0 + if (!drv_data->drv_fifo) + { + active_irq(irq); + return -1; + } + drv_data->device_id = conf->itf; + } + + if (drv_data->nb_open == 0) + { + pos_spi_create_channel(drv_data->rx_channel, UDMA_CHANNEL_ID(periph_id), SOC_EVENT_UDMA_SPIM_EOT(drv_data->device_id)); + pos_spi_create_channel(drv_data->tx_channel, UDMA_CHANNEL_ID(periph_id) + 1, SOC_EVENT_UDMA_SPIM_EOT(drv_data->device_id)); + drv_data->rx_channel->base=spi_id; //way to save me the spi interface which is associated with the channel + drv_data->tx_channel->base=spi_id; //way to save me the spi interface which is associated with the channel + } + + soc_eu_fcEventMask_setEvent(SOC_EVENT_UDMA_SPIM_EOT(drv_data->device_id)); + + drv_data->nb_open++; + + *cs_data = __pi_spim_get_cs_data(drv_data, conf->cs); + + if (!*cs_data) + { // if (*cs_data == 0) + uint32_t clk_div = __pi_spi_clk_div_get(conf->max_baudrate); + // alloc a cs data, need to be in udma reachable ram + struct spim_cs_data *_cs_data = pi_data_malloc(sizeof(struct spim_cs_data)); + if (_cs_data == NULL) + { + DBG_PRINTF("[%s] _cs_data alloc failed\n", __func__); + active_irq(irq); + return -2; + } + if (clk_div > 0xFF) + { + DBG_PRINTF( + "[%s] clk_div, %" PRIu32 ", does not fit into 8 bits. SoC frequency too high.\n", + __func__, clk_div); + active_irq(irq); + return -3; + } + + memset(_cs_data, 0, sizeof(struct spim_cs_data)); + _cs_data->max_baudrate = conf->max_baudrate; + _cs_data->polarity = conf->polarity; + _cs_data->phase = conf->phase; + _cs_data->big_endian = conf->big_endian; + _cs_data->wordsize = conf->wordsize; + _cs_data->cs = conf->cs; + _cs_data->cfg = SPI_CMD_CFG(clk_div, _cs_data->phase, _cs_data->polarity); + // _cs_data->cfg = SPI_CMD_CFG(1,0,0); + *cs_data = _cs_data; + // I insert a new element in the cs_data list + __pi_spim_cs_data_add(drv_data, _cs_data); + } + + active_irq(irq); + + return status; +} + +void __pi_spi_close(struct spim_cs_data *cs_data, struct pi_spi_conf *conf) +{ + DBG_PRINTF("...start -> pi_spi_close...\n"); + + //struct pi_spi_conf *conf = (struct pi_spi_conf *)device->config; + uint32_t irq = deactive_irq(); + unsigned char spi_id = conf->itf; + int periph_id = ARCHI_UDMA_SPIM_ID(spi_id); + int spi_channel = UDMA_EVENT_ID(periph_id); + /* TODO: paste beg */ + //struct spim_cs_data *cs_data = device->data; + struct spim_driver_data *drv_data = cs_data->drv_data; + __pi_spim_cs_data_del(drv_data, cs_data->cs); + /* + ** Number of open SPI interfaces + */ + drv_data->nb_open--; + + /* + ** If you no longer have any SPI interface open, + ** then go clear the memory, with free, and clear the interrupt line. + */ + if (drv_data->nb_open == 0) + { + /* reactivate clock gating for said device */ + plp_udma_cg_set(plp_udma_cg_get() & ~(1 << periph_id)); + soc_eu_fcEventMask_clearEvent(SOC_EVENT_UDMA_SPIM_EOT(drv_data->device_id)); + // hal_soc_eu_clear_fc_mask( SOC_EVENT_UDMA_SPIM_EOT(drv_data->device_id)); + __g_spim_drv_data[drv_data->device_id] = NULL; + pi_default_free(drv_data->drv_fifo, sizeof(drv_data->drv_fifo)); + pi_default_free(drv_data, sizeof(drv_data)); + + active_irq(irq); + return; + } + pi_data_free(cs_data, sizeof(cs_data)); + /* TODO: moved to end return drv_data->nb_open; */ + /* TODO: paste end */ + + active_irq(irq); + DBG_PRINTF("...end -> pi_spi_close...\n"); + return; +} \ No newline at end of file diff --git a/rtos/common_function/common_file_spi/src/common_spi.o b/rtos/common_function/common_file_spi/src/common_spi.o new file mode 100644 index 0000000000000000000000000000000000000000..1522ed0bcff54edac233d4d8e99dbabd8ca50aa2 GIT binary patch literal 236436 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 drRN;~E9>BI_BF Activate traces for the specified level (0=none, 1=fatal, 2=error, 3=warning, 4=info, 5=debug, 6=trace)." @echo " CONFIG_TRACE_ALL=1 Activate all traces. Other traces can be individually activated with CONFIG_TRACE_." -.PHONY: image flash exec run dis size help clean all conf build-lib install-lib +.PHONY: image flash exec run dis size help clean all conf build-lib install-lib \ No newline at end of file diff --git a/rtos/pulpos/common/rules/pulpos/src.mk b/rtos/pulpos/common/rules/pulpos/src.mk index 8a2b9487..f3d07bce 100644 --- a/rtos/pulpos/common/rules/pulpos/src.mk +++ b/rtos/pulpos/common/rules/pulpos/src.mk @@ -18,12 +18,12 @@ ifeq '$(CONFIG_LIBC_MINIMAL)' '1' PULP_SRCS += lib/libc/minimal/io.c lib/libc/minimal/fprintf.c lib/libc/minimal/prf.c lib/libc/minimal/sprintf.c lib/libc/minimal/semihost.c endif -ifdef USE_PULPOS_TEST ifdef CONFIG_KERNEL PULP_SRCS += kernel/init.c kernel/kernel.c kernel/device.c kernel/task.c kernel/alloc.c \ kernel/alloc_pool.c kernel/irq.c kernel/soc_event.c kernel/log.c kernel/time.c + PULP_ASM_SRCS += kernel/irq_asm.S kernel/task_asm.S kernel/time_asm.S -endif + endif # SOC EVENT @@ -185,4 +185,4 @@ endif # else # PULP_SRCS += drivers_deprecated/dolphin/rtc.c # endif -# endif +# endif \ No newline at end of file diff --git a/rtos/pulpos/pulp/drivers/spim/spim-v3.c b/rtos/pulpos/pulp/drivers/spim/spim-v3.c index 6bdc5731..75c40ced 100644 --- a/rtos/pulpos/pulp/drivers/spim/spim-v3.c +++ b/rtos/pulpos/pulp/drivers/spim/spim-v3.c @@ -43,27 +43,15 @@ /**================================================================================================ ** DEFINE *================================================================================================**/ -/** -#define DEBUG 0 - #ifdef DEBUG - #define DEBUG_PRINTF //////printf - #define DBG_PRINTF //////printf - #else - #define DEBUG_PRINTF(...) ((void)0) - #define DBG_PRINTF(...) ((void)0) - #endif -*/ /**================================================================================================ ** STRUCT *================================================================================================**/ - /**================================================================================================ ** PROTOTYPE FUNCTION *================================================================================================**/ - /**================================================================================================ ** GLOBAL VARIABLE *================================================================================================**/ diff --git a/tests/spim_flash_async/Makefile b/tests/spim_flash_async/Makefile index d3f870ed..1a433637 100644 --- a/tests/spim_flash_async/Makefile +++ b/tests/spim_flash_async/Makefile @@ -25,7 +25,7 @@ APP_SRCS += test_spi_async.c PROJ_ROOT = $(shell git rev-parse --show-toplevel) # good defaults for many environment variables -include $(PROJ_ROOT)/rtos/freertos/default_flags.mk +include $(PROJ_ROOT)/../freertos/default_flags.mk # manually set CFLAGS to disable some warnings (-Wconversion) CFLAGS += \ @@ -48,7 +48,7 @@ DPI_CONFIG=$(dir $(realpath $(firstword $(MAKEFILE_LIST))))rtl_config.json CONFIG_CLUSTER=n # rtos, pulp and pmsis ources -include $(PROJ_ROOT)/rtos/freertos/default_srcs.mk +include $(PROJ_ROOT)/../freertos/default_srcs.mk # application name PROG = test_flash_async @@ -66,6 +66,6 @@ CPPFLAGS += -DportasmHANDLE_INTERRUPT=vSystemIrqHandler #CPPFLAGS += -DportasmSKIP_ADDITIONAL_REGISTERS # compile, simulation and analysis targets -include $(PROJ_ROOT)/rtos/freertos/default_targets.mk +include $(PROJ_ROOT)/../freertos/default_targets.mk endif From 7fb7d12153cfa0f110a3dd650afccb8656e47409 Mon Sep 17 00:00:00 2001 From: orlandonico Date: Wed, 12 Jan 2022 15:31:31 +0100 Subject: [PATCH 68/86] rtos/pulos: driver i2c tested for sync and async test --- rtos/pulpos/pulp/drivers/i2c/i2c-v2.c | 473 +++++++++++++------------- 1 file changed, 241 insertions(+), 232 deletions(-) diff --git a/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c b/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c index 5620ca7e..cccc1b44 100644 --- a/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c +++ b/rtos/pulpos/pulp/drivers/i2c/i2c-v2.c @@ -16,15 +16,6 @@ * SPDX-License-Identifier: Apache-2.0 */ -/**================================================================================================ - * * INFO - * pulp-sdk/rtos/pulpos/common/rules/pulpos/src.mk - * pulp-sdk/rtos/pmsis/pmsis_bsp/rules/pulpos/src.mk - * pulp-sdk/rtos/pulpos/pulp_archi/include/archi/chips/pulp/properties.h - * pulp-sdk/rtos/pulpos/pulp_archi/include/archi/chips/pulp/memory_map.h - * - *================================================================================================**/ - #include "pmsis.h" #include #include @@ -46,10 +37,6 @@ * data[5] = repeat_size */ -/**================================================================================================ - ** Define - *================================================================================================**/ - /* Length of i2c cmd buffer. */ #define __PI_I2C_CMD_BUFF_SIZE (16) /* Lenght of i2c stop command sequence. */ @@ -58,35 +45,18 @@ #define __PI_I2C_ONLY_EOT_CMD_SIZE (3) #if defined(TRACE_I2C) -#define I2C_TRACE(...) printf -#define I2C_TRACE_ERR(...) printf +#define I2C_TRACE(...) PI_LOG_DBG(__func__, __VA_ARGS__) +#define I2C_TRACE_ERR(...) PI_LOG_ERR(__func__, __VA_ARGS__) #else #define I2C_TRACE(...) ((void)0) #define I2C_TRACE_ERR(...) ((void)0) #endif /* TRACE_I2C */ -/* Defines for read & write adress access. */ -#define ADDRESS_WRITE 0x0 -#define ADDRESS_READ 0x1 - -/* Max length of a i2c request/data buffer. */ -#define MAX_SIZE (0xFF) +#ifdef DEBUG +#define //printf //printf +#define DBG_PRINTF //printf +#endif -#define UDMA_EVENT_OFFSET_RX (0) -#define UDMA_EVENT_OFFSET_TX (1) - -#define SOC_EVENT_UDMA_I2C_RX(id) \ - ((ARCHI_UDMA_I2C_ID(id) << ARCHI_SOC_EVENT_UDMA_NB_CHANNEL_EVT_LOG2) + \ - UDMA_EVENT_OFFSET_RX) -#define SOC_EVENT_UDMA_I2C_TX(id) \ - ((ARCHI_UDMA_I2C_ID(id) << ARCHI_SOC_EVENT_UDMA_NB_CHANNEL_EVT_LOG2) + \ - UDMA_EVENT_OFFSET_TX) - -#define SOC_EVENT_TX 3 - -/**================================================================================================ - ** struct - *================================================================================================**/ typedef enum { @@ -108,12 +78,11 @@ struct i2c_pending_transfer_s struct i2c_cs_data_s { - struct i2c_cs_data_s *next; /*!< Pointer to next i2c cs data struct. */ uint8_t device_id; /*!< I2C interface ID. */ uint8_t cs; /*!< Chip select i2c device. */ uint16_t clk_div; /*!< Clock divider for the selected i2c chip. */ uint32_t max_baudrate; /*!< Max baudrate for the selected i2c chip. */ - struct i2c_itf_data_s *driver_data; + struct i2c_cs_data_s *next; /*!< Pointer to next i2c cs data struct. */ }; struct i2c_itf_data_s @@ -140,9 +109,61 @@ struct i2c_itf_data_s pos_udma_channel_t *tx_channel; }; -/**================================================================================================ - ** PROTOTYPE FUNCTION - *================================================================================================**/ +/* Events offsets. */ +#define UDMA_EVENT_OFFSET_RX (0) +#define UDMA_EVENT_OFFSET_TX (1) + + +#define MUTEX 1 + +/* I2C */ +#define SOC_EVENT_UDMA_I2C_RX(id) \ + ((ARCHI_UDMA_I2C_ID(id) << ARCHI_SOC_EVENT_UDMA_NB_CHANNEL_EVT_LOG2) + \ + UDMA_EVENT_OFFSET_RX) +#define SOC_EVENT_UDMA_I2C_TX(id) \ + ((ARCHI_UDMA_I2C_ID(id) << ARCHI_SOC_EVENT_UDMA_NB_CHANNEL_EVT_LOG2) + \ + UDMA_EVENT_OFFSET_TX) + +/* Defines for read & write adress access. */ +#define ADDRESS_WRITE 0x0 +#define ADDRESS_READ 0x1 + +/* Max length of a i2c request/data buffer. */ +#define MAX_SIZE (0xFF) + +static struct i2c_itf_data_s *g_i2c_itf_data[ARCHI_UDMA_NB_I2C] = {NULL}; + +static PI_L2 int i2c_channel; +static PI_L2 pos_udma_channel_t i2c_tx_channel; +static PI_L2 pos_udma_channel_t i2c_rx_channel; + +/* Init i2c conf struct. */ +void __pi_i2c_conf_init(pi_i2c_conf_t *conf); + +/* Open i2c device. */ +int32_t __pi_i2c_open(struct pi_i2c_conf *conf, struct i2c_cs_data_s **device_data); + +/* Close i2c device. */ +void __pi_i2c_close(struct i2c_cs_data_s *device_data); + +/* Ioctl function. */ +void __pi_i2c_ioctl(struct i2c_cs_data_s *device_data, uint32_t cmd, void *arg); + +/* Copy in UDMA. */ +void __pi_i2c_copy(struct i2c_cs_data_s *cs_data, uint32_t l2_buff, uint32_t length, + pi_i2c_xfer_flags_e flags, udma_channel_e channel, struct pi_task *task); + +/* Scan i2c bus to detect connected devices. */ +int32_t __pi_i2c_detect(struct i2c_cs_data_s *cs_data, struct pi_i2c_conf *conf, uint8_t *rx_data, + struct pi_task *task); + + +/* IRQ handler. */ +static void __pi_i2c_handler(void *arg); +void __pi_i2c_tx_handler(int event, void *arg); +void __pi_i2c_rx_handler(int event, void *arg); +static void *__pi_i2c_cb_buf_delete(struct i2c_itf_data_s *driver_data); + /* Clock divider. */ static uint32_t __pi_i2c_clk_div_get(uint32_t baudrate); @@ -186,39 +207,6 @@ static void __pi_i2c_copy_exec_write(struct i2c_itf_data_s *driver_data, struct /* Callback to execute when frequency changes. */ static void __pi_i2c_freq_cb(void *args); -/* Init i2c conf struct. */ -void __pi_i2c_conf_init(pi_i2c_conf_t *conf); - -/* Open i2c device. */ -int32_t __pi_i2c_open(struct pi_i2c_conf *conf, struct i2c_cs_data_s **device_data); - -/* Close i2c device. */ -void __pi_i2c_close(struct i2c_cs_data_s *device_data); - -/* Ioctl function. */ -void __pi_i2c_ioctl(struct i2c_cs_data_s *device_data, uint32_t cmd, void *arg); - -/* Copy in UDMA. */ -void __pi_i2c_copy(struct i2c_cs_data_s *cs_data, uint32_t l2_buff, uint32_t length, - pi_i2c_xfer_flags_e flags, udma_channel_e channel, struct pi_task *task); - -/* Scan i2c bus to detect connected devices. */ -int32_t __pi_i2c_detect(struct i2c_cs_data_s *cs_data, struct pi_i2c_conf *conf, uint8_t *rx_data, - struct pi_task *task); -void pos_i2c_handle_copy(int event, void *arg); -void pos_i2c_create_channel(pos_udma_channel_t *channel, int channel_id, int soc_event); - -/**================================================================================================ - ** GLOBAL VARIABLE - *================================================================================================**/ -static struct i2c_itf_data_s *g_i2c_itf_data[ARCHI_UDMA_NB_I2C] = {NULL}; -static PI_L2 int i2c_channel; -static PI_L2 pos_udma_channel_t i2c_tx_channel; -static PI_L2 pos_udma_channel_t i2c_rx_channel; - -/**================================================================================================ - ** FUNCTION - *================================================================================================**/ void pi_i2c_conf_init(pi_i2c_conf_t *conf) { __pi_i2c_conf_init(conf); @@ -231,6 +219,17 @@ void pi_i2c_conf_set_slave_addr(struct pi_i2c_conf *conf, uint16_t slave_addr, conf->is_10_bits = is_10_bits; } +int pi_i2c_open(struct pi_device *device) +{ + int32_t status = -1; + struct pi_i2c_conf *conf = (struct pi_i2c_conf *)device->config; + I2C_TRACE("Open device id=%d\n", conf->itf); + status = __pi_i2c_open(conf, (struct i2c_cs_data_s **)&(device->data)); + I2C_TRACE("Open status : %ld, driver data: %lx\n", status, + (struct i2c_cs_data_s *)device->data); + return status; +} + void pi_i2c_close(struct pi_device *device) { struct i2c_cs_data_s *device_data = (struct i2c_cs_data_s *)device->data; @@ -256,10 +255,23 @@ int pi_i2c_read(struct pi_device *device, uint8_t *rx_buff, int length, pi_i2c_x { int status = PI_OK; pi_task_t task_block; +#if MUTEX pi_task_block(&task_block); pi_i2c_read_async(device, rx_buff, length, flags, &task_block); pi_task_wait_on(&task_block); pi_task_destroy(&task_block); +#else + pi_task_block_no_mutex(&task_block); + pi_i2c_read_async(device, rx_buff, length, flags, &task_block); + pi_task_wait_on_no_mutex(&task_block); +#endif + /* only some udma i2c peripherals support ack detection */ +#ifdef CONFIG_UDMA_I2C_ACK + struct i2c_cs_data_s *device_data = (struct i2c_cs_data_s *)device->data; + if (REG_GET(I2C_ACK_NACK, i2c_ack_get(device_data->device_id))) + status = PI_ERR_I2C_NACK; +#endif + return status; } @@ -277,10 +289,18 @@ int pi_i2c_write(struct pi_device *device, uint8_t *tx_data, int length, pi_i2c_ { int status = PI_OK; pi_task_t task_block; +#if MUTEX pi_task_block(&task_block); pi_i2c_write_async(device, tx_data, length, flags, &task_block); pi_task_wait_on(&task_block); pi_task_destroy(&task_block); +#endif + /* only some udma i2c peripherals support ack detection */ +#ifdef CONFIG_UDMA_I2C_ACK + struct i2c_cs_data_s *device_data = (struct i2c_cs_data_s *)device->data; + if (REG_GET(I2C_ACK_NACK, i2c_ack_get(device_data->device_id))) + status = PI_ERR_I2C_NACK; +#endif return status; } @@ -343,89 +363,15 @@ static void __pi_i2c_handle_pending_transfer(struct i2c_itf_data_s *driver_data) static void __pi_i2c_send_stop_cmd(struct i2c_itf_data_s *driver_data) { - printf("__pi_i2c_send_stop_cmd\n"); driver_data->i2c_stop_send = 0; driver_data->i2c_eot_send = 0; - plp_udma_enqueue(UDMA_I2C_CMD_ADDR(driver_data->device_id), (uint32_t)driver_data->i2c_stop_seq, - (uint32_t)__PI_I2C_STOP_CMD_SIZE, (UDMA_CHANNEL_CFG_EN | UDMA_CHANNEL_CFG_SIZE_8)); + uint8_t u = 0; + //hal_i2c_enqueue(driver_data->device_id, TX_CHANNEL, (uint32_t)driver_data->i2c_stop_seq, (uint32_t)__PI_I2C_STOP_CMD_SIZE, UDMA_CORE_TX_CFG_EN(1)); + plp_udma_enqueue(UDMA_I2C_CMD_ADDR(u) , (int)driver_data->i2c_stop_seq, (uint32_t)__PI_I2C_STOP_CMD_SIZE, (UDMA_CHANNEL_CFG_EN | UDMA_CHANNEL_CFG_SIZE_8)); + //printf("__pi_i2c_send_stop_cmd\n"); } -static inline void __pi_irq_handle_end_of_task(pi_task_t *task) -{ - printf("__pi_irq_handle_end_of_task\n"); - switch (task->id) - { - case PI_TASK_NONE_ID: - pi_task_release(task); - break; - - case PI_TASK_CALLBACK_ID: - pi_task_push(task); - break; - - default: - return; - } -} - -void __pi_i2c_rx_handler(int event, void *arg) -{ - uint32_t evt = (uint32_t)event; - uint32_t periph_id = (0); - struct i2c_itf_data_s *driver_data = g_i2c_itf_data[periph_id]; - struct pi_task *task = __pi_i2c_cb_buf_pop(driver_data); - if (task) - pos_task_push_locked(task); - - task = __pi_i2c_task_fifo_pop(driver_data); - if (task) - { - /* Enqueue transfer in HW fifo. */ - if (task->data[3] == RX_CHANNEL) - { - __pi_i2c_copy_exec_read(driver_data, task); - } - else - { - __pi_i2c_copy_exec_write(driver_data, task); - } - } -} - -void __pi_i2c_tx_handler(int event, void *arg) -{ - printf("__pi_i2c_tx_handler\n"); - uint32_t evt = (uint32_t)event; - uint32_t periph_id = (0); - - struct i2c_itf_data_s *driver_data = g_i2c_itf_data[periph_id]; - - if (driver_data->i2c_stop_send) - { - __pi_i2c_send_stop_cmd(driver_data); - } - else - { - struct pi_task *task = __pi_i2c_cb_buf_pop(driver_data); - if (task) - pos_task_push_locked(task); - - task = __pi_i2c_task_fifo_pop(driver_data); - if (task) - { - /* Enqueue transfer in HW fifo. */ - if (task->data[3] == RX_CHANNEL) - { - __pi_i2c_copy_exec_read(driver_data, task); - } - else - { - __pi_i2c_copy_exec_write(driver_data, task); - } - } - } -} static int32_t __pi_i2c_cb_buf_empty(struct i2c_itf_data_s *driver_data) { @@ -441,13 +387,21 @@ static void __pi_i2c_cb_buf_enqueue(struct i2c_itf_data_s *driver_data, struct p static struct pi_task *__pi_i2c_cb_buf_pop(struct i2c_itf_data_s *driver_data) { + //printf("__pi_i2c_cb_buf_pop\n"); uint32_t irq = hal_irq_disable(); struct pi_task *task_to_return = NULL; task_to_return = driver_data->buf[0]; + hal_irq_restore(irq); + return task_to_return; +} + +static void *__pi_i2c_cb_buf_delete(struct i2c_itf_data_s *driver_data) +{ + //printf("__pi_i2c_cb_buf_delete\n"); + uint32_t irq = hal_irq_disable(); /* Free the slot for another transfer. */ driver_data->buf[0] = NULL; hal_irq_restore(irq); - return task_to_return; } static void __pi_i2c_task_fifo_enqueue(struct i2c_itf_data_s *driver_data, struct pi_task *task) @@ -468,6 +422,7 @@ static void __pi_i2c_task_fifo_enqueue(struct i2c_itf_data_s *driver_data, struc static struct pi_task *__pi_i2c_task_fifo_pop(struct i2c_itf_data_s *driver_data) { + //printf("__pi_i2c_task_fifo_pop\n"); struct pi_task *task_to_return = NULL; uint32_t irq = hal_irq_disable(); if (driver_data->fifo_head != NULL) @@ -505,6 +460,7 @@ static uint32_t __pi_i2c_clk_div_get(uint32_t i2c_freq) static void __pi_i2c_copy_exec_read(struct i2c_itf_data_s *driver_data, struct pi_task *task) { + //printf("start __pi_i2c_copy_exec_read\n"); uint32_t index = 0, start_bit = 0, stop_bit = 0; uint32_t buffer = task->data[0]; uint32_t size = task->data[1]; @@ -548,16 +504,19 @@ static void __pi_i2c_copy_exec_read(struct i2c_itf_data_s *driver_data, struct p driver_data->i2c_cmd_seq[index++] = size - 1; driver_data->i2c_cmd_seq[index++] = I2C_CMD_RD_ACK; } - driver_data->i2c_cmd_seq[index++] = I2C_CMD_RD_NACK; - driver_data->rx_channel->pendings[0] = task; + driver_data->i2c_cmd_seq[index++] = I2C_CMD_RD_NACK; /* Enqueue in HW fifo. */ __pi_i2c_cb_buf_enqueue(driver_data, task); - + //printf("driver_data %x\n", driver_data->device_id); + uint8_t u = 0; /* Open RX channel to receive data. */ - plp_udma_enqueue(UDMA_I2C_DATA_ADDR(driver_data->device_id), (uint32_t)buffer, size, (UDMA_CHANNEL_CFG_EN | UDMA_CHANNEL_CFG_SIZE_8)); + //hal_i2c_enqueue(driver_data->device_id, RX_CHANNEL, buffer, size, UDMA_CORE_RX_CFG_EN(1)); + plp_udma_enqueue(UDMA_I2C_DATA_ADDR(u), (int)buffer, size, (UDMA_CHANNEL_CFG_EN | UDMA_CHANNEL_CFG_SIZE_8)); /* Transfer command. */ - plp_udma_enqueue(UDMA_I2C_CMD_ADDR(driver_data->device_id), (uint32_t)driver_data->i2c_cmd_seq, index, (UDMA_CHANNEL_CFG_EN | UDMA_CHANNEL_CFG_SIZE_8)); + //hal_i2c_enqueue(driver_data->device_id, TX_CHANNEL, (uint32_t)driver_data->i2c_cmd_seq, index, UDMA_CORE_TX_CFG_EN(1)); + plp_udma_enqueue(UDMA_I2C_CMD_ADDR(u) , (int)driver_data->i2c_cmd_seq, index, (UDMA_CHANNEL_CFG_EN | UDMA_CHANNEL_CFG_SIZE_8)); + //printf("end __pi_i2c_copy_exec_read\n"); } static void __pi_i2c_copy_exec_write(struct i2c_itf_data_s *driver_data, struct pi_task *task) @@ -606,31 +565,23 @@ static void __pi_i2c_copy_exec_write(struct i2c_itf_data_s *driver_data, struct driver_data->i2c_cmd_seq[index++] = I2C_CMD_WR; } - driver_data->tx_channel->pendings[0] = task; - /* Enqueue in HW fifo. */ __pi_i2c_cb_buf_enqueue(driver_data, task); - + uint8_t u = 0; /* Transfer header. */ - plp_udma_enqueue(UDMA_I2C_CMD_ADDR(driver_data->device_id), (uint32_t)driver_data->i2c_cmd_seq, index, (UDMA_CHANNEL_CFG_EN | UDMA_CHANNEL_CFG_SIZE_8)); + //hal_i2c_enqueue(driver_data->device_id, TX_CHANNEL, (uint32_t)driver_data->i2c_cmd_seq, index, UDMA_CORE_TX_CFG_EN(1)); + plp_udma_enqueue(UDMA_I2C_CMD_ADDR(u),(int)driver_data->i2c_cmd_seq, index,(UDMA_CHANNEL_CFG_EN | UDMA_CHANNEL_CFG_SIZE_8)); /* Transfer data. */ if (size > 0) - plp_udma_enqueue(UDMA_I2C_CMD_ADDR(driver_data->device_id), (uint32_t)buffer, size, (UDMA_CHANNEL_CFG_EN | UDMA_CHANNEL_CFG_SIZE_8)); + //hal_i2c_enqueue(driver_data->device_id, TX_CHANNEL, buffer, size, UDMA_CORE_TX_CFG_EN(1)); + plp_udma_enqueue(UDMA_I2C_CMD_ADDR(u),(int)buffer, size, (UDMA_CHANNEL_CFG_EN | UDMA_CHANNEL_CFG_SIZE_8)); + //printf("__pi_i2c_copy_exec_write\n"); } static void __pi_i2c_cs_data_add(struct i2c_itf_data_s *driver_data, struct i2c_cs_data_s *cs_data) { -/** - struct i2c_cs_data_s *head = driver_data->cs_list; - while (head != NULL) - { - printf("head != NULL\n"); - head = head->next; - } - head->next = cs_data; -*/ - cs_data->driver_data = driver_data; - cs_data->next = driver_data->cs_list; + struct i2c_cs_data_s *head = driver_data->cs_list; + head->next = cs_data; } static void __pi_i2c_cs_data_remove(struct i2c_itf_data_s *driver_data, @@ -658,8 +609,7 @@ static void __pi_i2c_freq_cb(void *args) struct i2c_cs_data_s *cs_data = driver_data->cs_list; /* Wait until current transfer is done. */ - while (plp_udma_busy(UDMA_I2C_DATA_ADDR(driver_data->device_id))); - while (plp_udma_busy(UDMA_I2C_CMD_ADDR(driver_data->device_id))); + while (plp_udma_busy(UDMA_I2C_CMD_ADDR(device_id))); /* Update all clock div. */ while (cs_data != NULL) @@ -694,25 +644,87 @@ void __pi_i2c_conf_init(pi_i2c_conf_t *conf) conf->ts_evt_id = 0; } +static inline void __pi_irq_handle_end_of_task(pi_task_t *task) +{ + switch (task->id) + { + case PI_TASK_NONE_ID: + pos_task_push_locked(task); + //printf("__pi_irq_handle_end_of_task\n"); + break; + + default: + return; + } +} + +void __pi_i2c_rx_handler(int event, void *arg) +{ + //printf("__pi_i2c_rx_handler\n"); + uint32_t evt = (uint32_t)event; + uint32_t periph_id = (0); + + struct i2c_itf_data_s *driver_data = g_i2c_itf_data[periph_id]; + struct pi_task *task = __pi_i2c_cb_buf_pop(driver_data); + if (task && task->data[3]==RX_CHANNEL) + __pi_irq_handle_end_of_task(task); + __pi_i2c_cb_buf_delete(driver_data); +} + +void __pi_i2c_tx_handler(int event, void *arg) +{ + //printf("__pi_i2c_tx_handler\n"); + uint32_t evt = (uint32_t)event; + uint32_t periph_id = (0); + + struct i2c_itf_data_s *driver_data = g_i2c_itf_data[periph_id]; + + if (driver_data->i2c_stop_send) + { + __pi_i2c_send_stop_cmd(driver_data); + } + else + { + struct pi_task *task = __pi_i2c_cb_buf_pop(driver_data); + if (task && !task->data[3]==RX_CHANNEL){ + __pi_irq_handle_end_of_task(task); + __pi_i2c_cb_buf_delete(driver_data); + } + + task = __pi_i2c_task_fifo_pop(driver_data); + if (task) + { + /* Enqueue transfer in HW fifo. */ + if (task->data[3] == RX_CHANNEL) + { + __pi_i2c_copy_exec_read(driver_data, task); + } + else + { + __pi_i2c_copy_exec_write(driver_data, task); + } + } + } +} + void pos_i2c_handle_copy(int event, void *arg) { - printf("pos_i2c_handle_copy"); + //printf("***pos_i2c_handle_copy***\n"); pos_udma_channel_t *channel = arg; pi_task_t *pending_0 = channel->pendings[0]; uint8_t type_channel = pending_0->data[3]; - if (event == 2) + if (event == 8) { __pi_i2c_rx_handler(event, &arg); - pos_task_push_locked(pending_0); } - else if (event == 3) + else if (event == 9) { __pi_i2c_tx_handler(event, &arg); - pos_task_push_locked(pending_0); + } else { - printf("error pos_spi_handle_copy\n"); + //printf("error pos_spi_handle_copy\n"); exit(0); } } @@ -726,39 +738,30 @@ void pos_i2c_create_channel(pos_udma_channel_t *channel, int channel_id, int soc channel->base = 0; } -int pi_i2c_open(struct pi_device *device) -{ - int32_t status = -1; - struct pi_i2c_conf *conf = (struct pi_i2c_conf *)device->config; - I2C_TRACE("Open device id=%d\n", conf->itf); - status = __pi_i2c_open(conf, (struct i2c_cs_data_s **)&(device->data)); - I2C_TRACE("Open status : %ld, driver data: %lx\n", status, - (struct i2c_cs_data_s *)device->data); - return status; -} - int32_t __pi_i2c_open(struct pi_i2c_conf *conf, struct i2c_cs_data_s **device_data) { - int irq = hal_irq_disable(); - if ((uint8_t)ARCHI_UDMA_NB_I2C < conf->itf) { + if ((uint8_t)ARCHI_UDMA_NB_I2C < conf->itf) + { I2C_TRACE_ERR("Error : wrong interface ID, itf=%d !\n", conf->itf); return -11; } + for (int i = 0; i < ARCHI_NB_FLL; i++) { pos_fll_init(i); } + unsigned char i2c_id = conf->itf; + int periph_id = ARCHI_UDMA_I2C_ID(i2c_id); + i2c_channel = UDMA_EVENT_ID(periph_id); - unsigned char i2c_id = conf->itf; - int periph_id = ARCHI_UDMA_I2C_ID(i2c_id); - i2c_channel = UDMA_EVENT_ID(periph_id); - plp_udma_cg_set(plp_udma_cg_get() | (1 << periph_id)); struct i2c_itf_data_s *driver_data = g_i2c_itf_data[conf->itf]; - if (driver_data == NULL) { + if (driver_data == NULL) + { /* Allocate driver data. */ driver_data = (struct i2c_itf_data_s *)pi_l2_malloc(sizeof(struct i2c_itf_data_s)); - if (driver_data == NULL) { + if (driver_data == NULL) + { I2C_TRACE_ERR("Driver data alloc failed !\n"); return -12; } @@ -769,7 +772,8 @@ int32_t __pi_i2c_open(struct pi_i2c_conf *conf, struct i2c_cs_data_s **device_da driver_data->nb_open = 0; driver_data->i2c_cmd_index = 0; driver_data->cs_list = NULL; - for (uint32_t i = 0; i < (uint32_t)__PI_I2C_CMD_BUFF_SIZE; i++) { + for (uint32_t i = 0; i < (uint32_t)__PI_I2C_CMD_BUFF_SIZE; i++) + { driver_data->i2c_cmd_seq[i] = 0; } driver_data->i2c_stop_send = 0; @@ -778,6 +782,7 @@ int32_t __pi_i2c_open(struct pi_i2c_conf *conf, struct i2c_cs_data_s **device_da driver_data->i2c_stop_seq[0] = I2C_CMD_STOP; driver_data->i2c_stop_seq[1] = I2C_CMD_WAIT; driver_data->i2c_stop_seq[2] = conf->wait_cycles > 0xff ? 0xff : conf->wait_cycles; + driver_data->nb_events = 0; driver_data->device_id = conf->itf; /* TODO: Attach freq callback. */ @@ -786,58 +791,63 @@ int32_t __pi_i2c_open(struct pi_i2c_conf *conf, struct i2c_cs_data_s **device_da /* pi_freq_callback_add(&(driver_data->i2c_freq_cb)); */ g_i2c_itf_data[conf->itf] = driver_data; - driver_data->rx_channel = &i2c_rx_channel; - driver_data->tx_channel = &i2c_tx_channel; - /* Set handlers. */ /* Enable SOC events propagation to FC. */ + + /* Disable UDMA CG. */ + plp_udma_cg_set(plp_udma_cg_get() | (1 << ARCHI_UDMA_I2C_ID(conf->itf))); + + driver_data->rx_channel = &i2c_rx_channel; + driver_data->tx_channel = &i2c_tx_channel; + if (driver_data->nb_open == 0) { - pos_udma_create_channel(driver_data->rx_channel, UDMA_CHANNEL_ID(periph_id), SOC_EVENT_UDMA_I2C_RX(i2c_id)); - pos_udma_create_channel(driver_data->tx_channel, UDMA_CHANNEL_ID(periph_id) + 1, SOC_EVENT_TX); - driver_data->rx_channel->base=i2c_id; //way to save me the spi interface which is associated with the channel - driver_data->tx_channel->base=i2c_id; //way to save me the spi interface which is associated with the channel + pos_i2c_create_channel(driver_data->rx_channel, UDMA_CHANNEL_ID(ARCHI_UDMA_I2C_ID(conf->itf)) , SOC_EVENT_UDMA_I2C_RX(driver_data->device_id)); + pos_i2c_create_channel(driver_data->tx_channel, UDMA_CHANNEL_ID(ARCHI_UDMA_I2C_ID(conf->itf)) + 1, SOC_EVENT_UDMA_I2C_TX(driver_data->device_id)); + //pos_i2c_create_channel(driver_data->rx_channel, UDMA_CHANNEL_ID(ARCHI_UDMA_I2C_ID(conf->itf)) , 8); + //pos_i2c_create_channel(driver_data->tx_channel, UDMA_CHANNEL_ID(ARCHI_UDMA_I2C_ID(conf->itf)) + 1, 9); + driver_data->rx_channel->base = i2c_id; // way to save me the spi interface which is associated with the channel + driver_data->tx_channel->base = i2c_id; // way to save me the spi interface which is associated with the channel } - soc_eu_fcEventMask_setEvent(SOC_EVENT_UDMA_I2C_RX(i2c_id)); - soc_eu_fcEventMask_setEvent(SOC_EVENT_TX); + soc_eu_fcEventMask_setEvent( SOC_EVENT_UDMA_I2C_RX(driver_data->device_id)); + soc_eu_fcEventMask_setEvent( SOC_EVENT_UDMA_I2C_TX(driver_data->device_id)); + //soc_eu_fcEventMask_setEvent(8); + //soc_eu_fcEventMask_setEvent(9); I2C_TRACE("I2C(%d) : driver data init done.\n", driver_data->device_id); } - driver_data->nb_open++; struct i2c_cs_data_s *cs_data = (struct i2c_cs_data_s *)pi_l2_malloc(sizeof(struct i2c_cs_data_s)); - if (cs_data == NULL) { + if (cs_data == NULL) + { I2C_TRACE_ERR("I2C(%ld) : cs=%d, cs_data alloc failed !\n", driver_data->device_id, - conf->cs); + conf->cs); return -13; } cs_data->device_id = conf->itf; cs_data->cs = conf->cs; cs_data->max_baudrate = conf->max_baudrate; uint32_t clk_div = __pi_i2c_clk_div_get(cs_data->max_baudrate); - if (clk_div == 0xFFFFFFFF) { + if (clk_div == 0xFFFFFFFF) + { pi_l2_free(cs_data, sizeof(struct i2c_cs_data_s)); I2C_TRACE_ERR("I2C(%d) : error computing clock divider !\n", conf->itf); return -14; } cs_data->clk_div = clk_div; cs_data->next = NULL; - driver_data->cs_list = cs_data; __pi_i2c_cs_data_add(driver_data, cs_data); + driver_data->nb_open++; I2C_TRACE("I2C(%d) : opened %ld time(s).\n", driver_data->device_id, driver_data->nb_open); *device_data = cs_data; - hal_irq_restore(irq); return 0; } void __pi_i2c_close(struct i2c_cs_data_s *device_data) { - int irq = hal_irq_disable(); struct i2c_itf_data_s *driver_data = g_i2c_itf_data[device_data->device_id]; - unsigned char i2c_id = device_data->device_id; - int periph_id = ARCHI_UDMA_I2C_ID(i2c_id); __pi_i2c_cs_data_remove(driver_data, device_data); driver_data->nb_open--; I2C_TRACE("I2C(%d) : number of opened devices %ld.\n", driver_data->device_id, @@ -855,18 +865,17 @@ void __pi_i2c_close(struct i2c_cs_data_s *device_data) /* Clear handlers. */ /* Disable SOC events propagation to FC. */ - soc_eu_fcEventMask_clearEvent(SOC_EVENT_UDMA_I2C_RX(i2c_id)); - soc_eu_fcEventMask_clearEvent(SOC_EVENT_TX); + soc_eu_fcEventMask_clearEvent(SOC_EVENT_UDMA_I2C_RX(driver_data->device_id)); + soc_eu_fcEventMask_clearEvent(SOC_EVENT_UDMA_I2C_TX(driver_data->device_id)); /* Enable UDMA CG. */ - plp_udma_cg_set(plp_udma_cg_get() & ~(1 << periph_id)); + plp_udma_cg_set(plp_udma_cg_get() & ~(1 << ARCHI_UDMA_I2C_ID(driver_data->device_id))); /* Free allocated struct. */ pi_l2_free(driver_data, sizeof(struct i2c_itf_data_s)); g_i2c_itf_data[device_data->device_id] = NULL; } pi_l2_free(device_data, sizeof(struct i2c_cs_data_s)); - hal_irq_restore(irq); } void __pi_i2c_ioctl(struct i2c_cs_data_s *device_data, uint32_t cmd, void *arg) @@ -892,6 +901,7 @@ void __pi_i2c_copy(struct i2c_cs_data_s *cs_data, uint32_t l2_buff, uint32_t len task->data[2] = flags; task->data[3] = channel; task->data[4] = (uint32_t)cs_data; + task->id = PI_TASK_NONE_ID; task->next = NULL; struct i2c_itf_data_s *driver_data = g_i2c_itf_data[cs_data->device_id]; int32_t slot_rxtx = __pi_i2c_cb_buf_empty(driver_data); @@ -916,7 +926,6 @@ void __pi_i2c_copy(struct i2c_cs_data_s *cs_data, uint32_t l2_buff, uint32_t len } else { - driver_data->tx_channel->pendings[0] = task; __pi_i2c_copy_exec_write(driver_data, task); } } @@ -968,14 +977,14 @@ int32_t __pi_i2c_detect(struct i2c_cs_data_s *cs_data, struct pi_i2c_conf *conf, /* Enqueue in HW fifo. */ __pi_i2c_cb_buf_enqueue(driver_data, task); - + uint8_t u = 0; /* Open RX channel to receive data. */ - plp_udma_enqueue(UDMA_I2C_DATA_ADDR(driver_data->device_id), (uint32_t)buffer, size, - (UDMA_CHANNEL_CFG_EN | UDMA_CHANNEL_CFG_SIZE_8)); + //hal_i2c_enqueue(driver_data->device_id, RX_CHANNEL, buffer, size, UDMA_CORE_RX_CFG_EN(1)); + plp_udma_enqueue(UDMA_I2C_DATA_ADDR(u), (int)buffer, size, (UDMA_CHANNEL_CFG_EN | UDMA_CHANNEL_CFG_SIZE_8)); /* Transfer command. */ - plp_udma_enqueue(UDMA_I2C_CMD_ADDR(driver_data->device_id), (uint32_t)driver_data->i2c_cmd_seq, - index, (UDMA_CHANNEL_CFG_EN | UDMA_CHANNEL_CFG_SIZE_8)); - + //hal_i2c_enqueue(driver_data->device_id, TX_CHANNEL, (uint32_t)driver_data->i2c_cmd_seq, index, UDMA_CORE_TX_CFG_EN(1)); + plp_udma_enqueue(UDMA_I2C_CMD_ADDR(u) , (int)driver_data->i2c_cmd_seq, index, (UDMA_CHANNEL_CFG_EN | UDMA_CHANNEL_CFG_SIZE_8)); + hal_irq_restore(irq); return 0; -} \ No newline at end of file +} From 6be325a7fe4f1c1b194e729690b8d40360134cd1 Mon Sep 17 00:00:00 2001 From: orlandonico Date: Wed, 12 Jan 2022 15:33:51 +0100 Subject: [PATCH 69/86] tests: update sync test for i2c --- tests/i2c_eeprom_sync/Makefile | 4 +++- tests/i2c_eeprom_sync/test_i2c_eeprom_sync.c | 12 ++++++------ 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/tests/i2c_eeprom_sync/Makefile b/tests/i2c_eeprom_sync/Makefile index bb304692..af7194a7 100644 --- a/tests/i2c_eeprom_sync/Makefile +++ b/tests/i2c_eeprom_sync/Makefile @@ -10,9 +10,11 @@ APP_CFLAGS += -DNUM_CORES=1 endif endif -APP_CFLAGS += -Os -g +APP_CFLAGS += -Os -g -DUSE_PULPOS +APP_CFLAGS += -DDEGUB APP_LDFLAGS += -Os -g CONFIG_I2C = 1 +HAS_I2C = 1 include $(RULES_DIR)/pmsis_rules.mk diff --git a/tests/i2c_eeprom_sync/test_i2c_eeprom_sync.c b/tests/i2c_eeprom_sync/test_i2c_eeprom_sync.c index 19bad08d..dcf6446b 100644 --- a/tests/i2c_eeprom_sync/test_i2c_eeprom_sync.c +++ b/tests/i2c_eeprom_sync/test_i2c_eeprom_sync.c @@ -40,15 +40,12 @@ void eeprom(void) printf("opening eeprom on i2c bus %d\n", I2C_DEV_ID); pi_i2c_conf_init(&i2c_conf); - printf("pi_i2c_conf_init\n"); i2c_conf.itf = I2C_DEV_ID; i2c_conf.max_baudrate = 100000; pi_i2c_conf_set_slave_addr(&i2c_conf, I2C_EEPROM_ADDR << 1, 0); - printf("pi_i2c_conf_set_slave_addr\n"); /* pi_i2c_conf_set_wait_cycles(conf, 2048); */ pi_open_from_conf(&i2c, &i2c_conf); - printf("pi_open_from_conf\n"); if (pi_i2c_open(&i2c)) { printf("i2c open failed\n"); exit(1); @@ -120,14 +117,17 @@ void eeprom(void) printf("rx[%d]=0x%0x ok\n", i, rx[i]); } } - if (error != 0) + if (error != 0){ + printf("Test NO success\n"); exit(1); + } + printf("Test success\n"); exit(0); } /* Program Entry. */ int main(void) { - printf("\n\n\t *** Pulp-SDK Hello World *** \n\n"); + printf("\n\n\t *** Pulp-SDK Test I2C sync *** \n\n"); return pmsis_kickoff((void *)eeprom); -} \ No newline at end of file +} From 486cf16d7d76284ab537b15c2c42e257019b8dfb Mon Sep 17 00:00:00 2001 From: orlandonico Date: Wed, 12 Jan 2022 15:35:17 +0100 Subject: [PATCH 70/86] tests: update async test for i2c --- tests/i2c_eeprom_async/test_i2c_eeprom_async.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/i2c_eeprom_async/test_i2c_eeprom_async.c b/tests/i2c_eeprom_async/test_i2c_eeprom_async.c index e7c1a385..e62bb9ea 100644 --- a/tests/i2c_eeprom_async/test_i2c_eeprom_async.c +++ b/tests/i2c_eeprom_async/test_i2c_eeprom_async.c @@ -78,7 +78,7 @@ void eeprom(void) printf("writing eeprom\n"); pi_task_t task_write_buffer; - printf(" task_write_buffer\n"); + //printf(" task_write_buffer\n"); pi_i2c_write_async(&i2c, tx, sizeof(tx), PI_I2C_XFER_START | PI_I2C_XFER_STOP, pi_task_block(&task_write_buffer)); pi_task_wait_on(&task_write_buffer); /* Wait for write to finish. It takes 5 million ns = 5 ms to finish. */ @@ -92,11 +92,8 @@ void eeprom(void) }; pi_task_t task_write_addr; - printf(" task_write_addr\n"); pi_i2c_write_async(&i2c, eeprom_addr, sizeof(eeprom_addr), PI_I2C_XFER_START | PI_I2C_XFER_NO_STOP, pi_task_block(&task_write_addr)); - //pi_i2c_write(&i2c, eeprom_addr, sizeof(eeprom_addr), PI_I2C_XFER_START | PI_I2C_XFER_NO_STOP); pi_task_t task_read_buffer; - printf(" task_read_buffer\n"); pi_i2c_read_async(&i2c, rx, sizeof(rx), PI_I2C_XFER_START | PI_I2C_XFER_STOP, pi_task_block(&task_read_buffer)); pi_task_wait_on(&task_write_addr); pi_task_wait_on(&task_read_buffer); @@ -116,14 +113,17 @@ void eeprom(void) printf("rx[%d]=0x%0x ok\n", i, rx[i]); } } - if (error != 0) + if (error != 0){ + printf("Test NO success\n"); exit(1); + } + printf("Test success\n"); exit(0); } /* Program Entry. */ int main(void) { - printf("\n\n\t *** Pulp-SDK Hello World *** \n\n"); + printf("\n\n\t *** Pulp-SDK Test I2C async *** \n\n"); return pmsis_kickoff((void *)eeprom); } \ No newline at end of file From 9d83561e137be75fff416bb80e219dc202a4a7b3 Mon Sep 17 00:00:00 2001 From: orlandonico Date: Tue, 8 Feb 2022 17:38:03 +0100 Subject: [PATCH 71/86] rtos/pulpos/pulp: rm old spim abstraction layers --- .../include/abstraction_layer_spi.h | 68 -- .../src/abstraction_layer_spi.c | 691 ------------------ .../drivers/spim/common/include/common_spi.h | 147 ---- .../pulp/drivers/spim/common/src/common_spi.c | 169 ----- rtos/pulpos/pulp/drivers/spim/spim-v3.c | 180 ----- 5 files changed, 1255 deletions(-) delete mode 100644 rtos/pulpos/pulp/drivers/spim/abstraction_layer_spi_pulpos/include/abstraction_layer_spi.h delete mode 100644 rtos/pulpos/pulp/drivers/spim/abstraction_layer_spi_pulpos/src/abstraction_layer_spi.c delete mode 100644 rtos/pulpos/pulp/drivers/spim/common/include/common_spi.h delete mode 100644 rtos/pulpos/pulp/drivers/spim/common/src/common_spi.c delete mode 100644 rtos/pulpos/pulp/drivers/spim/spim-v3.c diff --git a/rtos/pulpos/pulp/drivers/spim/abstraction_layer_spi_pulpos/include/abstraction_layer_spi.h b/rtos/pulpos/pulp/drivers/spim/abstraction_layer_spi_pulpos/include/abstraction_layer_spi.h deleted file mode 100644 index d18cf2cf..00000000 --- a/rtos/pulpos/pulp/drivers/spim/abstraction_layer_spi_pulpos/include/abstraction_layer_spi.h +++ /dev/null @@ -1,68 +0,0 @@ -/* - * Copyright 2020 GreenWaves Technologies - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * SPDX-License-Identifier: Apache-2.0 - */ - -/**----------------------------------------------------------------------------------------------------------------------- - * ? ABOUT - * @author : Orlando Nico, GreenWaves Technologies, Robert Balas - * @email : nico.orlando@studio.unibo.it, balasr@iis.ee.ethz.ch - * @repo : pulp-sdk/rtos/pulpos/pulp/drivers/spim/abstraction_layer_spi - * @createdOn : 28/12/2021 - * @description : Abstraction Layer SPI for PulpOS - *-----------------------------------------------------------------------------------------------------------------------**/ - -/**================================================================================================ - ** INCLUDE - *================================================================================================**/ -#include "common_spi.h" - -/**================================================================================================ - ** DEFINE - *================================================================================================**/ -#define DEBUG_PRINTF(...) ((void)0) -#define DBG_PRINTF(...) ((void)0) -#define SPIM_CS_DATA_GET_DRV_DATA(cs_data) (cs_data->drv_data) -#define NB_SOC_EVENTS (ARCHI_SOC_EVENT_NB_TOTAL) -#define pi_default_malloc(x) pi_l2_malloc(x) -#define pi_default_free(x, y) pi_l2_free(x, y) -#define pi_data_malloc(x) pi_l2_malloc(x) -#define pi_data_free(x, y) pi_l2_free(x, y) -#define UDMA_EVENT_OFFSET_SPI_EOT 3 -#define SOC_EVENT_UDMA_SPIM_EOT(id) \ - ((ARCHI_UDMA_SPIM_ID(id) << ARCHI_SOC_EVENT_UDMA_NB_CHANNEL_EVT_LOG2) + \ - UDMA_EVENT_OFFSET_SPI_EOT) -typedef void (*pi_fc_event_handler_t)(void *arg); -/**================================================================================================ - ** STRUCT - *================================================================================================**/ - -/**================================================================================================ - ** PROTOTYPE FUNCTION - *================================================================================================**/ -void pos_spi_handle_copy(int event, void *arg); -void pos_spi_create_channel(pos_udma_channel_t *channel, int channel_id, int soc_event); -int __pi_spi_open(struct spim_cs_data **cs_data, struct pi_spi_conf *conf); -void __pi_spi_close(struct spim_cs_data *cs_data, struct pi_spi_conf *conf); -void __pi_spim_exec_next_transfer(pi_task_t *task); -void __pi_spi_send_async(struct spim_cs_data *cs_data, void *data, size_t len, pi_spi_flags_e flags, pi_task_t *task); -void __pi_spi_receive_async(struct spim_cs_data *cs_data, void *data, size_t len, pi_spi_flags_e flags, pi_task_t *task); -void __pi_spi_xfer_async(struct spim_cs_data *cs_data, void *tx_data, void *rx_data, size_t len, pi_spi_flags_e flags, pi_task_t *task); -void __pi_spi_receive_async_with_ucode(struct spim_cs_data *cs_data, void *data, size_t len, pi_spi_flags_e flags, int ucode_size, void *ucode, pi_task_t *task); -void __pi_spi_send_async_with_ucode(struct spim_cs_data *cs_data, void *data, size_t len, pi_spi_flags_e flags, int ucode_size, void *ucode, pi_task_t *task); -void __spim_execute_callback(void *arg); -void system_core_clock_update(void); -uint32_t system_core_clock_get(void); diff --git a/rtos/pulpos/pulp/drivers/spim/abstraction_layer_spi_pulpos/src/abstraction_layer_spi.c b/rtos/pulpos/pulp/drivers/spim/abstraction_layer_spi_pulpos/src/abstraction_layer_spi.c deleted file mode 100644 index 69c11e28..00000000 --- a/rtos/pulpos/pulp/drivers/spim/abstraction_layer_spi_pulpos/src/abstraction_layer_spi.c +++ /dev/null @@ -1,691 +0,0 @@ -/* - * Copyright 2020 GreenWaves Technologies - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * SPDX-License-Identifier: Apache-2.0 - */ - -/**----------------------------------------------------------------------------------------------------------------------- - * ? ABOUT - * @author : Orlando Nico, GreenWaves Technologies, Robert Balas - * @email : nico.orlando@studio.unibo.it, balasr@iis.ee.ethz.ch - * @repo : pulp-sdk/rtos/pulpos/pulp/drivers/spim/abstraction_layer_spi - * @createdOn : 28/12/2021 - * @description : Abstraction Layer SPI for PulpOS - *-----------------------------------------------------------------------------------------------------------------------**/ - -/**================================================================================================ - ** INCLUDE - *================================================================================================**/ -#include "abstraction_layer_spi.h" - -/**================================================================================================ - ** GLOBAL VARIABLE - *================================================================================================**/ -volatile uint32_t system_core_clock; -PI_L2 int spi_open_count = 0; -PI_L2 int spi_channel; -struct spim_driver_data *__g_spim_drv_data[ARCHI_UDMA_NB_SPIM] = {0}; -extern struct pmsis_event_kernel_wrap *default_sched; - -/**================================================================================================ - ** FUNCTION - *================================================================================================**/ -void system_core_clock_update(void) -{ - // system_core_clock = pi_fll_get_frequency(FLL_SOC, 0); - system_core_clock = pi_freq_get(FLL_SOC); -} - -uint32_t system_core_clock_get(void) -{ - system_core_clock_update(); - return system_core_clock; -} - -// TODO: prepare pseudo exec for delegate -void __pi_spim_execute_callback(void *arg) -{ - return; -} - -void __pi_spi_receive_async_with_ucode(struct spim_cs_data *cs_data, void *data, - size_t len, pi_spi_flags_e flags, - int ucode_size, void *ucode, - pi_task_t *task) -{ - /* TODO: port spi_async with ucode */ - abort(); -#if 0 - struct spim_driver_data *drv_data = SPIM_CS_DATA_GET_DRV_DATA(cs_data); - int qspi = ((flags >> 2) & 0x3) == ((PI_SPI_LINES_QUAD>>2) & 0x03); - int cs_mode = (flags >> 0) & 0x3; - - int device_id = drv_data->device_id; - uint32_t byte_align = (cs_data->wordsize == PI_SPI_WORDSIZE_32) - && cs_data->big_endian; - uint32_t cfg = cs_data->cfg; - DBG_PRINTF("%s:%d: core clock:%d, baudrate:%d, div=%d, byte_align =%lx, cfg= %lx, qspi=%lx\n", - __func__,__LINE__,system_core_clock_get(),cs_data->max_baudrate, - system_core_clock_get() / cs_data->max_baudrate,byte_align,cfg,qspi); - int size = (len + 7) >> 3; - - int cmd_id = 0; - - uint32_t irq = deactive_irq(); - if(!drv_data->end_of_transfer) - { - if(cs_mode != PI_SPI_CS_AUTO) - { - hal_soc_eu_set_fc_mask(SOC_EVENT_UDMA_SPIM_RX(device_id)); - } - drv_data->end_of_transfer = task; - drv_data->repeat_transfer = NULL; - if(((0xFFF00000 & (uint32_t)ucode)!= 0x1c000000)) - { - memcpy(&(cs_data->udma_cmd[0]), ucode, ucode_size); - spim_enqueue_channel(SPIM(device_id), (uint32_t)data, size, - UDMA_CORE_RX_CFG_EN(1) | (2<<1), RX_CHANNEL); - spim_enqueue_channel(SPIM(device_id), (uint32_t)cs_data->udma_cmd, - ucode_size, UDMA_CORE_TX_CFG_EN(1), TX_CHANNEL); - } - else - { - spim_enqueue_channel(SPIM(device_id), (uint32_t)data, size, - UDMA_CORE_RX_CFG_EN(1) | (2<<1), RX_CHANNEL); - spim_enqueue_channel(SPIM(device_id), (uint32_t)ucode, - ucode_size, UDMA_CORE_TX_CFG_EN(1), TX_CHANNEL); - } - } - else - { -#if 0 - struct spim_transfer transfer; - transfer.data = data; - transfer.flags = flags; - transfer.len = len; - transfer.cfg_cmd = cfg; - transfer.byte_align = byte_align; - transfer.is_send = 0; - __pi_spim_drv_fifo_enqueue(cs_data, &transfer, task); -#endif - } - active_irq(irq); -#endif -} - -void __pi_spi_send_async_with_ucode(struct spim_cs_data *cs_data, void *data, - size_t len, pi_spi_flags_e flags, - int ucode_size, void *ucode, - pi_task_t *task) -{ - /* TODO: port spi_async with ucode */ - abort(); -#if 0 - struct spim_driver_data *drv_data = SPIM_CS_DATA_GET_DRV_DATA(cs_data); - int qspi = ((flags >> 2) & 0x3) == ((PI_SPI_LINES_QUAD>>2) & 0x03); - int cs_mode = (flags >> 0) & 0x3; - - int device_id = drv_data->device_id; - uint32_t byte_align = (cs_data->wordsize == PI_SPI_WORDSIZE_32) - && cs_data->big_endian; - uint32_t cfg = cs_data->cfg; - DBG_PRINTF("%s:%d: core clock:%d, baudrate:%d, div=%d, byte_align =%lx, cfg= %lx, qspi=%lx\n", - __func__,__LINE__,system_core_clock_get(),cs_data->max_baudrate, - system_core_clock_get() / cs_data->max_baudrate,byte_align,cfg,qspi); - int size = (len + 7) >> 3; - - int cmd_id = 0; - - uint32_t irq = deactive_irq(); - if(!drv_data->end_of_transfer) - { - if(cs_mode != PI_SPI_CS_AUTO) - { - hal_soc_eu_set_fc_mask(SOC_EVENT_UDMA_SPIM_TX(device_id)); - } - drv_data->end_of_transfer = task; - drv_data->repeat_transfer = NULL; - - spim_enqueue_channel(SPIM(device_id), (uint32_t)ucode, - ucode_size, UDMA_CORE_TX_CFG_EN(1), TX_CHANNEL); - pi_time_wait_us(1000); - spim_enqueue_channel(SPIM(device_id), (uint32_t)data, - size, UDMA_CORE_TX_CFG_EN(1), TX_CHANNEL); - if(cs_mode == PI_SPI_CS_AUTO) - { - // wait until channel is free - while((hal_read32((void*)&(SPIM(device_id)->udma.tx_cfg)) - & (1<<5))>>5) - { - DBG_PRINTF("%s:%d\n",__func__,__LINE__); - } - - // enqueue EOT - cs_data->udma_cmd[0] = SPI_CMD_EOT(1); - spim_enqueue_channel(SPIM(device_id), - (uint32_t)&cs_data->udma_cmd[0], 1*(sizeof(uint32_t)), - UDMA_CORE_TX_CFG_EN(1), TX_CHANNEL); - } - } - else - { -#if 0 - struct spim_transfer transfer; - transfer.data = data; - transfer.flags = flags; - transfer.len = len; - transfer.cfg_cmd = cfg; - transfer.byte_align = byte_align; - transfer.is_send = 0; - __pi_spim_drv_fifo_enqueue(cs_data, &transfer, task); -#endif - } - active_irq(irq); -#endif -} - -void __pi_spi_xfer_async(struct spim_cs_data *cs_data, void *tx_data, void *rx_data, size_t len, pi_spi_flags_e flags, pi_task_t *task) -{ - /* TODO: port spi_xfer async */ - abort(); -#if 0 - struct spim_driver_data *drv_data = SPIM_CS_DATA_GET_DRV_DATA(cs_data); - int qspi = (flags & (0x3 << 2)) == PI_SPI_LINES_QUAD; - int cs_mode = (flags >> 0) & 0x3; - - int device_id = drv_data->device_id; - uint32_t cfg = cs_data->cfg; - DBG_PRINTF("%s:%d: core clock:%"PRIu32", baudrate:%"PRIu32", div=%"PRIu32", udma_cmd cfg =%d\n", - __func__,__LINE__,system_core_clock_get(),cs_data->max_baudrate, - system_core_clock_get() / cs_data->max_baudrate,cfg); - uint32_t byte_align = (cs_data->wordsize == PI_SPI_WORDSIZE_32) - && cs_data->big_endian; - int size = (len + 7) >> 3; - - int cmd_id = 0; - - uint32_t irq = deactive_irq(); - if(!drv_data->end_of_transfer) - { - cs_data->udma_cmd[0] = cfg; - cs_data->udma_cmd[1] = SPI_CMD_SOT(cs_data->cs); - cs_data->udma_cmd[2] = SPI_CMD_FULL_DUPL(len, byte_align); - drv_data->end_of_transfer = task; - drv_data->repeat_transfer = NULL; - if(cs_mode == PI_SPI_CS_AUTO) - { - spim_enqueue_channel(SPIM(device_id), (uint32_t)cs_data->udma_cmd, - 3*(sizeof(uint32_t)), UDMA_CORE_TX_CFG_EN(1), - TX_CHANNEL); - spim_enqueue_channel(SPIM(device_id), (uint32_t)rx_data, size, - UDMA_CORE_RX_CFG_EN(1) | (2<<1), RX_CHANNEL); - spim_enqueue_channel(SPIM(device_id), (uint32_t)tx_data, - size, UDMA_CORE_TX_CFG_EN(1), - TX_CHANNEL); - // wait until TX channel is free - while((hal_read32((void*)&(SPIM(device_id)->udma.tx_cfg)) - & (1<<5))>>5) - { - DBG_PRINTF("%s:%d\n",__func__,__LINE__); - } - // send EOT - cs_data->udma_cmd[3] = SPI_CMD_EOT(1); - spim_enqueue_channel(SPIM(device_id), - (uint32_t)&cs_data->udma_cmd[3], sizeof(uint32_t), - UDMA_CORE_TX_CFG_EN(1), TX_CHANNEL); - } - else - { - spim_enqueue_channel(SPIM(device_id), (uint32_t)cs_data->udma_cmd, - 3*(sizeof(uint32_t)), UDMA_CORE_TX_CFG_EN(1), - TX_CHANNEL); - // wait until TX channel is free - while((hal_read32((void*)&(SPIM(device_id)->udma.tx_cfg)) - & (1<<5))>>5) - { - DBG_PRINTF("%s:%d\n",__func__,__LINE__); - } - // activate rx event - hal_soc_eu_set_fc_mask(SOC_EVENT_UDMA_SPIM_RX(device_id)); - // NOTE: both transfers have the same size - // does not matter which one we wait - spim_enqueue_channel(SPIM(device_id), (uint32_t)rx_data, size, - UDMA_CORE_RX_CFG_EN(1) | (2<<1), RX_CHANNEL); - spim_enqueue_channel(SPIM(device_id), (uint32_t)tx_data, - size, UDMA_CORE_TX_CFG_EN(1), - TX_CHANNEL); - } - - } - else - { - struct spim_transfer transfer; - transfer.data = rx_data; - transfer.flags = flags; - transfer.len = len; - transfer.cfg_cmd = cfg; - transfer.byte_align = byte_align; - transfer.is_send = (uint32_t) tx_data; // sending a pointer means xfer - __pi_spim_drv_fifo_enqueue(cs_data, &transfer, task); - } - active_irq(irq); -#endif -} - -void __pi_spi_receive_async(struct spim_cs_data *cs_data, void *data, - size_t len, pi_spi_flags_e flags, pi_task_t *task) -{ - DBG_PRINTF("...start -> __pi_spi_receive_async...\n"); - // SPIM_CS_DATA_GET_DRV_DATA(cs_data) = (cs_data->drv_data) - struct spim_driver_data *drv_data = SPIM_CS_DATA_GET_DRV_DATA(cs_data); - int qspi = (flags & (0x3 << 2)) == PI_SPI_LINES_QUAD; - // Choose the type of cs mode, see enum "pi_spi_flags_e" to understand better. - int cs_mode = (flags >> 0) & 0x3; - - int device_id = drv_data->device_id; - task->id = device_id; //i need it for pos_spi_handle_copy - uint32_t cfg = cs_data->cfg; - DBG_PRINTF( - "%s:%s:%d: core clock:%" PRIu32 ", baudrate:%" PRIu32 ", div=%" PRIu32 ", udma_cmd cfg =%lx, qpi=%d\n", - __FILE__, __func__, __LINE__, system_core_clock_get(), - cs_data->max_baudrate, - system_core_clock_get() / cs_data->max_baudrate, cfg, qspi); - uint32_t byte_align = (cs_data->wordsize == PI_SPI_WORDSIZE_32) && - cs_data->big_endian; - - int buffer_size = (len + 7) >> 3; - - if (len > 8192 * 8) - { - DBG_PRINTF( - "%s:%s:%d: Transaction splitting unimplemented, too large", - __FILE__, __func__, __LINE__); - abort(); /* TODO: unimplemented transaction splitting */ - } - - DBG_PRINTF("%s:%s:%d: udma_cmd = %p\n", __FILE__, __func__, __LINE__, - &(cs_data->udma_cmd[0])); - uint32_t irq = deactive_irq(); - - uint8_t bitsword = 0; - uint8_t UDMA_CORE_CFG = 0; - - if (cs_data->wordsize == PI_SPI_WORDSIZE_8) - { - bitsword = 8; - UDMA_CORE_CFG = UDMA_CHANNEL_CFG_SIZE_8; - } - else if (cs_data->wordsize == PI_SPI_WORDSIZE_16) - { - bitsword = 16; - UDMA_CORE_CFG = UDMA_CHANNEL_CFG_SIZE_16; - } - else - { - bitsword = 32; - UDMA_CORE_CFG = UDMA_CHANNEL_CFG_SIZE_32; - } - - DBG_PRINTF("%s:%s:%d: bitsword = %u\n", __FILE__, __func__, __LINE__, bitsword); - DBG_PRINTF("%s:%s:%d: UDMA_CORE_CFG = %u\n", __FILE__, __func__, __LINE__, UDMA_CORE_CFG); - - /* - ** If I have no transfer in progress, then I go to set the command buffer - ** and then first I send the buffer where to receive the data and then the write command. - ** However, if I have some transfer in progress, then I put the new transfer - ** in the queue in the fifo and send it as soon as possible. - */ - - cs_data->udma_cmd[0] = cfg; - cs_data->udma_cmd[1] = SPI_CMD_SOT(cs_data->cs); - cs_data->udma_cmd[2] = SPI_CMD_RX_DATA(len / bitsword, SPI_CMD_1_WORD_PER_TRANSF, bitsword, qspi, SPI_CMD_MSB_FIRST); - cs_data->udma_cmd[3] = SPI_CMD_EOT(1, cs_mode == PI_SPI_CS_KEEP); - - uint32_t cfg_cmd = UDMA_CHANNEL_CFG_SIZE_32; - uint32_t rx_conf = UDMA_CORE_CFG; - if (drv_data->rx_channel->pendings[0] == NULL) - { - drv_data->rx_channel->pendings[0] = task; - plp_udma_enqueue(UDMA_SPIM_CMD_ADDR(device_id), (uint32_t)cs_data->udma_cmd, 4 * sizeof(uint32_t), UDMA_CHANNEL_CFG_EN | cfg_cmd); - plp_udma_enqueue(UDMA_SPIM_RX_ADDR(device_id), (uint32_t)data, buffer_size, UDMA_CHANNEL_CFG_EN | rx_conf); - } - else - { - if (drv_data->rx_channel->pendings[1] == NULL) - { - drv_data->rx_channel->pendings[1] = task; - plp_udma_enqueue(UDMA_SPIM_CMD_ADDR(device_id), (uint32_t)cs_data->udma_cmd, 4 * sizeof(uint32_t), UDMA_CHANNEL_CFG_EN | cfg_cmd); - plp_udma_enqueue(UDMA_SPIM_RX_ADDR(device_id), (uint32_t)data, buffer_size, UDMA_CHANNEL_CFG_EN | rx_conf); - } - else - { - // printf("else rx\n"); - struct spim_transfer transfer; - transfer.data = data; - transfer.flags = flags; - transfer.len = len; - transfer.cfg_cmd = cfg; - transfer.byte_align = byte_align; - transfer.is_send = 0; - drv_data->rx_channel->waitings_first=task; //i need it for pos_spi_handle_copy - __pi_spim_drv_fifo_enqueue(cs_data, &transfer, task); - } - } - active_irq(irq); - DBG_PRINTF("...end -> __pi_spi_receive_async...\n"); -} - -void __pi_spi_send_async(struct spim_cs_data *cs_data, void *data, size_t len, pi_spi_flags_e flags, pi_task_t *task) -{ - DBG_PRINTF("...start -> __pi_spi_send_async...\n"); - struct spim_driver_data *drv_data = SPIM_CS_DATA_GET_DRV_DATA(cs_data); - int qspi = (flags & (0x3 << 2)) == PI_SPI_LINES_QUAD; - int cs_mode = (flags >> 0) & 0x3; - DBG_PRINTF("%s:%s:%d...task %d, %p...\n", __FILE__, __func__, __LINE__, task == NULL ? 0 : 1, &task); - int device_id = drv_data->device_id; - task->id = device_id; //i need it for pos_spi_handle_copy - uint32_t cfg = cs_data->cfg; // SPI_CMD_CFG(...) - DBG_PRINTF( - "%s:%s:%d: core clock:%" PRIu32 ", baudrate:%" PRIu32 ", div=%" PRIu32 ", udma_cmd cfg =%lx, qpi=%d\n", - __FILE__, __func__, __LINE__, system_core_clock_get(), - cs_data->max_baudrate, - system_core_clock_get() / cs_data->max_baudrate, cfg, qspi); - uint32_t byte_align = (cs_data->wordsize == PI_SPI_WORDSIZE_32) && - cs_data->big_endian; - - /* buffer size */ - int buffer_size = (len + 7) >> 3; - - if (len > 8192 * 8) - { - DBG_PRINTF( - "%s:%s:%d: Transaction splitting unimplemented, too large", - __FILE__, __func__, __LINE__); - abort(); /* TODO: unimplemented transaction splitting */ - } - - // Address of the command buffer to be sent to the uDMA - DBG_PRINTF("%s:%s:%d: udma_cmd = %p\n", __FILE__, __func__, __LINE__, - &(cs_data->udma_cmd[0])); - uint32_t irq = deactive_irq(); - - uint8_t bitsword = 0; - uint8_t UDMA_CORE_CFG = 0; - - if (cs_data->wordsize == PI_SPI_WORDSIZE_8) - { - bitsword = 8; - UDMA_CORE_CFG = UDMA_CHANNEL_CFG_SIZE_8; // 0x0 - } - else if (cs_data->wordsize == PI_SPI_WORDSIZE_16) - { - bitsword = 16; - UDMA_CORE_CFG = UDMA_CHANNEL_CFG_SIZE_16; // 0x1 - } - else - { - bitsword = 32; - UDMA_CORE_CFG = UDMA_CHANNEL_CFG_SIZE_32; // 0x2 - } - - DBG_PRINTF("%s:%s:%d: bitsword = %u\n", __FILE__, __func__, __LINE__, bitsword); - DBG_PRINTF("%s:%s:%d: UDMA_CORE_CFG = %u\n", __FILE__, __func__, __LINE__, UDMA_CORE_CFG); - - /* - ** If I have no transfer in progress, then I go to set the command buffer - ** and then I first send the command and then the data. - ** However, if I have some transfer in progress, then I put the new transfer - ** in the queue in the fifo and send when I receive an EOT interrupt, - ** in this case the interrupt handler will manage the new transfer. - */ - cs_data->udma_cmd[0] = cfg; - cs_data->udma_cmd[1] = SPI_CMD_SOT(cs_data->cs); - cs_data->udma_cmd[2] = SPI_CMD_TX_DATA((len / bitsword), SPI_CMD_1_WORD_PER_TRANSF, bitsword, qspi, SPI_CMD_MSB_FIRST); - cs_data->udma_cmd[3] = SPI_CMD_EOT(1, cs_mode == PI_SPI_CS_KEEP); - - uint32_t cfg_cmd = UDMA_CHANNEL_CFG_SIZE_32; - uint32_t tx_conf = UDMA_CORE_CFG; - - if (drv_data->tx_channel->pendings[0] == NULL) - { - drv_data->tx_channel->pendings[0] = task; - plp_udma_enqueue(UDMA_SPIM_CMD_ADDR(device_id), (uint32_t)cs_data->udma_cmd, 4 * sizeof(uint32_t), UDMA_CHANNEL_CFG_EN | cfg_cmd); - plp_udma_enqueue(UDMA_SPIM_TX_ADDR(device_id), (uint32_t)data, buffer_size, UDMA_CHANNEL_CFG_EN | tx_conf); - } - else - { - if (drv_data->tx_channel->pendings[1] == NULL) - { - drv_data->tx_channel->pendings[1] = task; - plp_udma_enqueue(UDMA_SPIM_CMD_ADDR(device_id), (uint32_t)cs_data->udma_cmd, 4 * sizeof(uint32_t), UDMA_CHANNEL_CFG_EN | cfg_cmd); - plp_udma_enqueue(UDMA_SPIM_TX_ADDR(device_id), (uint32_t)data, buffer_size, UDMA_CHANNEL_CFG_EN | tx_conf); - } - else - { - /* a transfer is running, append to pendings transfers queue */ - struct spim_transfer transfer; - transfer.data = data; - transfer.flags = flags; - transfer.len = len; - transfer.cfg_cmd = cfg; - transfer.byte_align = byte_align; - transfer.is_send = 1; - drv_data->tx_channel->waitings_first=task; //i need it for pos_spi_handle_copy - __pi_spim_drv_fifo_enqueue(cs_data, &transfer, task); - } - } - active_irq(irq); - - DBG_PRINTF("...end -> __pi_spi_send_async...\n"); -} - -void __pi_spim_exec_next_transfer(pi_task_t *task) -{ - DBG_PRINTF("...start -> __pi_spim_exec_next_transfer...\n"); - DBG_PRINTF("%s:%s:%d\n", __FILE__, __func__, __LINE__); - if (task->data[5] == 1) - { // if is send - // printf("__pi_spim_exec_next_transfer tx %p\n", &task); - // cs data | data buffer | len | flags | end of transfer task - __pi_spi_send_async((struct spim_cs_data *)task->data[0], - (void *)task->data[1], task->data[2], - task->data[3], (pi_task_t *)task->data[4]); - } - else if (task->data[5] == 0) - { - // printf("__pi_spim_exec_next_transfer rx %p\n", &task); - // cs data | data buffer | len | flags | end of transfer task - __pi_spi_receive_async((struct spim_cs_data *)task->data[0], - (void *)task->data[1], task->data[2], - task->data[3], - (pi_task_t *)task->data[4]); - } - else - { // task->data[5] contains rx data addr - // cs data | tx buffer | rx buffer| len | flags | end of - // transfer task - __pi_spi_xfer_async((struct spim_cs_data *)task->data[0], - (void *)task->data[5], - (void *)task->data[1], task->data[2], - task->data[3], (pi_task_t *)task->data[4]); - } - DBG_PRINTF("...end -> __pi_spim_exec_next_transfer...\n"); -} - -void pos_spi_handle_copy(int event, void *arg) -{ - pos_udma_channel_t *channel = arg; - pi_task_t *pending_1 = channel->pendings[1]; - pi_task_t *pending_0 = channel->pendings[0]; - uint32_t spi_id = channel->base; - struct spim_driver_data *drv_data = __g_spim_drv_data[spi_id]; - pi_task_t *pending_first = __pi_spim_drv_fifo_pop(drv_data); - channel->pendings[0] = pending_1; - channel->pendings[1] = NULL; - - if (pending_first) - { - __pi_spim_exec_next_transfer(pending_first); - pending_first = NULL; - } - - pos_task_push_locked(pending_0); -} - -void pos_spi_create_channel(pos_udma_channel_t *channel, int channel_id, int soc_event) -{ - pos_soc_event_register_callback(soc_event, pos_spi_handle_copy, (void *)channel); - channel->pendings[0] = NULL; - channel->pendings[1] = NULL; - channel->waitings_first = NULL; - channel->base = 0; -} - -int __pi_spi_open(struct spim_cs_data **cs_data, struct pi_spi_conf *conf) -{ - int irq = deactive_irq(); - for (int i = 0; i < ARCHI_NB_FLL; i++) - { - pos_fll_init(i); - } - - //struct pi_spi_conf *conf = (struct pi_spi_conf *)device->config; - - unsigned char spi_id = conf->itf; - int periph_id = ARCHI_UDMA_SPIM_ID(spi_id); - spi_channel = UDMA_EVENT_ID(periph_id); - int cs = conf->cs; - int status = 0; - //struct spim_cs_data **cs_data = (struct spim_cs_data **)(&device->data); - plp_udma_cg_set(plp_udma_cg_get() | (1 << periph_id)); - - struct spim_driver_data *drv_data; - if (__g_spim_drv_data[conf->itf]) - { - drv_data = __g_spim_drv_data[conf->itf]; - } - else - { - __g_spim_drv_data[conf->itf] = pi_default_malloc(sizeof(struct spim_driver_data)); - memset(__g_spim_drv_data[conf->itf], 0, sizeof(struct spim_driver_data)); - drv_data = __g_spim_drv_data[conf->itf]; - // Do this to define a node in a list. The list is a dynamic object. - drv_data->drv_fifo = pi_default_malloc(sizeof(struct spim_drv_fifo)); - memset(drv_data->drv_fifo, 0, sizeof(struct spim_drv_fifo)); - // controllo che il puntatore sia = 0 - if (!drv_data->drv_fifo) - { - active_irq(irq); - return -1; - } - drv_data->device_id = conf->itf; - } - - if (drv_data->nb_open == 0) - { - pos_spi_create_channel(drv_data->rx_channel, UDMA_CHANNEL_ID(periph_id), SOC_EVENT_UDMA_SPIM_EOT(drv_data->device_id)); - pos_spi_create_channel(drv_data->tx_channel, UDMA_CHANNEL_ID(periph_id) + 1, SOC_EVENT_UDMA_SPIM_EOT(drv_data->device_id)); - drv_data->rx_channel->base=spi_id; //way to save me the spi interface which is associated with the channel - drv_data->tx_channel->base=spi_id; //way to save me the spi interface which is associated with the channel - } - - soc_eu_fcEventMask_setEvent(SOC_EVENT_UDMA_SPIM_EOT(drv_data->device_id)); - - drv_data->nb_open++; - - *cs_data = __pi_spim_get_cs_data(drv_data, conf->cs); - - if (!*cs_data) - { // if (*cs_data == 0) - uint32_t clk_div = __pi_spi_clk_div_get(conf->max_baudrate); - // alloc a cs data, need to be in udma reachable ram - struct spim_cs_data *_cs_data = pi_data_malloc(sizeof(struct spim_cs_data)); - if (_cs_data == NULL) - { - DBG_PRINTF("[%s] _cs_data alloc failed\n", __func__); - active_irq(irq); - return -2; - } - if (clk_div > 0xFF) - { - DBG_PRINTF( - "[%s] clk_div, %" PRIu32 ", does not fit into 8 bits. SoC frequency too high.\n", - __func__, clk_div); - active_irq(irq); - return -3; - } - - memset(_cs_data, 0, sizeof(struct spim_cs_data)); - _cs_data->max_baudrate = conf->max_baudrate; - _cs_data->polarity = conf->polarity; - _cs_data->phase = conf->phase; - _cs_data->big_endian = conf->big_endian; - _cs_data->wordsize = conf->wordsize; - _cs_data->cs = conf->cs; - _cs_data->cfg = SPI_CMD_CFG(clk_div, _cs_data->phase, _cs_data->polarity); - // _cs_data->cfg = SPI_CMD_CFG(1,0,0); - *cs_data = _cs_data; - // I insert a new element in the cs_data list - __pi_spim_cs_data_add(drv_data, _cs_data); - } - - active_irq(irq); - - return status; -} - -void __pi_spi_close(struct spim_cs_data *cs_data, struct pi_spi_conf *conf) -{ - DBG_PRINTF("...start -> pi_spi_close...\n"); - - //struct pi_spi_conf *conf = (struct pi_spi_conf *)device->config; - uint32_t irq = deactive_irq(); - unsigned char spi_id = conf->itf; - int periph_id = ARCHI_UDMA_SPIM_ID(spi_id); - int spi_channel = UDMA_EVENT_ID(periph_id); - /* TODO: paste beg */ - //struct spim_cs_data *cs_data = device->data; - struct spim_driver_data *drv_data = cs_data->drv_data; - __pi_spim_cs_data_del(drv_data, cs_data->cs); - /* - ** Number of open SPI interfaces - */ - drv_data->nb_open--; - - /* - ** If you no longer have any SPI interface open, - ** then go clear the memory, with free, and clear the interrupt line. - */ - if (drv_data->nb_open == 0) - { - /* reactivate clock gating for said device */ - plp_udma_cg_set(plp_udma_cg_get() & ~(1 << periph_id)); - soc_eu_fcEventMask_clearEvent(SOC_EVENT_UDMA_SPIM_EOT(drv_data->device_id)); - // hal_soc_eu_clear_fc_mask( SOC_EVENT_UDMA_SPIM_EOT(drv_data->device_id)); - __g_spim_drv_data[drv_data->device_id] = NULL; - pi_default_free(drv_data->drv_fifo, sizeof(drv_data->drv_fifo)); - pi_default_free(drv_data, sizeof(drv_data)); - - active_irq(irq); - return; - } - pi_data_free(cs_data, sizeof(cs_data)); - /* TODO: moved to end return drv_data->nb_open; */ - /* TODO: paste end */ - - active_irq(irq); - DBG_PRINTF("...end -> pi_spi_close...\n"); - return; -} \ No newline at end of file diff --git a/rtos/pulpos/pulp/drivers/spim/common/include/common_spi.h b/rtos/pulpos/pulp/drivers/spim/common/include/common_spi.h deleted file mode 100644 index 18543bf7..00000000 --- a/rtos/pulpos/pulp/drivers/spim/common/include/common_spi.h +++ /dev/null @@ -1,147 +0,0 @@ -/* - * Copyright 2020 GreenWaves Technologies - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * SPDX-License-Identifier: Apache-2.0 - */ - -/**----------------------------------------------------------------------------------------------------------------------- - * ? ABOUT - * @author : Orlando Nico, GreenWaves Technologies, Robert Balas - * @email : nico.orlando@studio.unibo.it, balasr@iis.ee.ethz.ch - * @repo : pulp-sdk/rtos/pulpos/pulp/drivers/spim/common - * @createdOn : 28/12/2021 - * @description : Common File for Abstraction Layer SPI for PulpOS and FreeRTOS - *-----------------------------------------------------------------------------------------------------------------------**/ - -/**================================================================================================ - ** INCLUDE - *================================================================================================**/ -#ifdef USE_PULPOS_TEST -#include "pmsis.h" -#include -#include -#include -#include -#include -#include -#include -#include -#include -#endif - -#ifdef USE_FREERTOS_TEST -#include "pmsis_types.h" -#include "pmsis_task.h" -#include "implementation_specific_defines.h" -#include "system.h" -#include "fc_event.h" -#include "udma.h" -#include "fll.h" -#include "events.h" -#include "properties.h" -#include "spi_periph.h" -#include "spi.h" -#include "udma_spim.h" -#include "udma_ctrl.h" -#endif - -/**================================================================================================ - ** DEFINE - *================================================================================================**/ -#ifdef DEBUG -#define DEBUG_PRINTF printf -#define DBG_PRINTF printf -#else -#define DEBUG_PRINTF(...) ((void)0) -#define DBG_PRINTF(...) ((void)0) -#endif /* DEBUG */ - -/**================================================================================================ - ** STRUCT - *================================================================================================**/ -struct spim_drv_fifo -{ - pi_task_t *fifo_head; - pi_task_t *fifo_tail; -}; - -/* Structure holding infos for each chip selects (itf, cs, polarity etc...) */ -struct spim_cs_data -{ - struct spim_cs_data *next; - struct spim_driver_data *drv_data; - uint32_t cfg; - uint32_t udma_cmd[8]; - uint32_t max_baudrate; - uint32_t polarity; - uint32_t phase; - uint8_t cs; - uint8_t wordsize; - uint8_t big_endian; -}; - -#ifdef USE_PULPOS_TEST -/* Structure holding info for each interfaces - * most notably the fifo of enqueued transfers and meta to know whether - * interface is free or not */ -struct spim_driver_data -{ - struct spim_drv_fifo *drv_fifo; // does the same task as Dolphine with true and false - struct spim_cs_data *cs_list; // list of devices connected to the spi interface - pi_task_t *repeat_transfer; - pi_task_t *end_of_transfer; // gli associo un task per sapere se un trasferimento ha finito? - uint32_t nb_open; - uint8_t device_id; - pos_udma_channel_t *rx_channel; - pos_udma_channel_t *tx_channel; -}; -#endif -#ifdef USE_FREERTOS_TEST -/* Structure holding info for each interfaces - * most notably the fifo of enqueued transfers and meta to know whether - * interface is free or not */ -struct spim_driver_data { - struct spim_drv_fifo *drv_fifo; // does the same task as Dolphine with true and false - struct spim_cs_data *cs_list; // list of devices connected to the spi interface - pi_task_t *repeat_transfer; - pi_task_t *end_of_transfer; // gli associo un task per sapere se un trasferimento ha finito? - uint32_t nb_open; - uint8_t device_id; -}; -#endif - - -struct spim_transfer -{ - pi_spi_flags_e flags; - void *data; - uint32_t len; - uint32_t cfg_cmd; - uint32_t byte_align; - uint32_t is_send; -}; - -/**================================================================================================ - ** PROTOTYPE FUNCTION - *================================================================================================**/ -uint32_t __pi_spi_get_config(struct spim_cs_data *cs_data); -int32_t __pi_spim_drv_fifo_enqueue(struct spim_cs_data *cs_data, struct spim_transfer *transfer, pi_task_t *end_task); -pi_task_t *__pi_spim_drv_fifo_pop(struct spim_driver_data *data); -struct spim_cs_data *__pi_spim_get_cs_data(struct spim_driver_data *drv_data, int cs); -void __pi_spim_cs_data_del(struct spim_driver_data *drv_data, int cs); -void __pi_spim_cs_data_add(struct spim_driver_data *drv_data, struct spim_cs_data *cs_data); -uint32_t __pi_spi_clk_div_get(uint32_t spi_freq); -uint32_t deactive_irq(void); -void active_irq(uint32_t irq); \ No newline at end of file diff --git a/rtos/pulpos/pulp/drivers/spim/common/src/common_spi.c b/rtos/pulpos/pulp/drivers/spim/common/src/common_spi.c deleted file mode 100644 index 5666f2a2..00000000 --- a/rtos/pulpos/pulp/drivers/spim/common/src/common_spi.c +++ /dev/null @@ -1,169 +0,0 @@ -/* - * Copyright 2020 GreenWaves Technologies - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * SPDX-License-Identifier: Apache-2.0 - */ - -/**----------------------------------------------------------------------------------------------------------------------- - * ? ABOUT - * @author : Orlando Nico, GreenWaves Technologies, Robert Balas - * @email : nico.orlando@studio.unibo.it, balasr@iis.ee.ethz.ch - * @repo : pulp-sdk/rtos/pulpos/pulp/drivers/spim/common - * @createdOn : 28/12/2021 - * @description : Common File for Abstraction Layer SPI for PulpOS and FreeRTOS - *-----------------------------------------------------------------------------------------------------------------------**/ - -/**================================================================================================ - ** INCLUDE - *================================================================================================**/ -#include "common_spi.h" - -/**================================================================================================ - ** FUNCTION - *================================================================================================**/ -uint32_t deactive_irq(void){ -#ifdef USE_PULPOS_TEST - return hal_irq_disable(); -#endif -#ifdef USE_FREERTOS_TEST - return __disable_irq(); -#endif -} - -void active_irq(uint32_t irq){ -#ifdef USE_PULPOS_TEST - hal_irq_restore(irq); -#endif -#ifdef USE_FREERTOS_TEST - __restore_irq(irq); -#endif - -} - -uint32_t __pi_spi_get_config(struct spim_cs_data *cs_data) -{ - return cs_data->cfg; -} - -// It is used to put an item in the list. The new item is put at the top of the list. -int32_t __pi_spim_drv_fifo_enqueue(struct spim_cs_data *cs_data, - struct spim_transfer *transfer, - pi_task_t *end_task) -{ - uint32_t irq = deactive_irq(); - struct spim_driver_data *drv_data = cs_data->drv_data; - /* Callback args. */ - end_task->data[0] = (uintptr_t)cs_data; - end_task->data[1] = (uintptr_t)transfer->data; - end_task->data[2] = (uintptr_t)transfer->len; - end_task->data[3] = (uintptr_t)transfer->flags; - end_task->data[4] = (uintptr_t)end_task; - end_task->data[5] = (uintptr_t)transfer->is_send; - end_task->next = NULL; - /* Enqueue transfer in drv fifo. */ - if (drv_data->drv_fifo->fifo_head == NULL) - { - /* Empty fifo. */ - drv_data->drv_fifo->fifo_head = end_task; - drv_data->drv_fifo->fifo_tail = drv_data->drv_fifo->fifo_head; - } - else - { - /* Enqueue to tail. */ - drv_data->drv_fifo->fifo_tail->next = end_task; - drv_data->drv_fifo->fifo_tail = - drv_data->drv_fifo->fifo_tail->next; - } - active_irq(irq); - return 0; -} - -pi_task_t *__pi_spim_drv_fifo_pop(struct spim_driver_data *data) -{ - // DBG_PRINTF("%s:%s:%d: \n", __FILE__, __func__, __LINE__); - pi_task_t *task_return = NULL; - // clean the value in the position 7 of regiter 0x300 - // irq = 1100010000000 - int check_300 = 0; - asm volatile("csrr %0, 0x300" - : "=r"(check_300)); - uint32_t irq = deactive_irq(); - if (data->drv_fifo->fifo_head != NULL) - { - task_return = data->drv_fifo->fifo_head; - data->drv_fifo->fifo_head = data->drv_fifo->fifo_head->next; - if (data->drv_fifo->fifo_head == NULL) - { - data->drv_fifo->fifo_tail = NULL; - } - } - // write in the 0x300 register - active_irq(irq); - return task_return; -} - -struct spim_cs_data *__pi_spim_get_cs_data(struct spim_driver_data *drv_data, int cs) -{ - struct spim_cs_data *cs_cur = drv_data->cs_list; - while (cs_cur != NULL && cs_cur->cs != cs) - { - cs_cur = cs_cur->next; - } - return cs_cur; -} - -void __pi_spim_cs_data_del(struct spim_driver_data *drv_data, - int cs) -{ - struct spim_cs_data *cs_cur = drv_data->cs_list; - struct spim_cs_data *cs_prev = cs_cur; - while (cs_cur != NULL && cs_cur->cs != cs) - { - cs_prev = cs_cur; - cs_cur = cs_cur->next; - } - if (cs_cur) - { - cs_prev->next = cs_cur->next; - cs_cur->next = NULL; - } -} - -void __pi_spim_cs_data_add(struct spim_driver_data *drv_data, struct spim_cs_data *cs_data) -{ - // head insert, most recently allocated should be most recently used - cs_data->drv_data = drv_data; - cs_data->next = drv_data->cs_list; -} - -uint32_t __pi_spi_clk_div_get(uint32_t spi_freq) -{ - uint32_t periph_freq = pi_freq_get(PI_FREQ_DOMAIN_PERIPH); - if (spi_freq < periph_freq) - { - uint32_t clk_div = 0; - clk_div = (periph_freq + spi_freq - 1) / spi_freq; - if (clk_div & 1) - { - clk_div += 1; - } - /* The SPIM always divide by 2 once we activate the divider, - thus increase by 1 in case it is even to not go above the max - frequency. */ - clk_div = clk_div >> 1; - return clk_div; - } - return 0; -} \ No newline at end of file diff --git a/rtos/pulpos/pulp/drivers/spim/spim-v3.c b/rtos/pulpos/pulp/drivers/spim/spim-v3.c deleted file mode 100644 index 75c40ced..00000000 --- a/rtos/pulpos/pulp/drivers/spim/spim-v3.c +++ /dev/null @@ -1,180 +0,0 @@ -/* - * Copyright 2020 GreenWaves Technologies - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * SPDX-License-Identifier: Apache-2.0 - */ - -/**----------------------------------------------------------------------------------------------------------------------- - * ? ABOUT - * @author : Orlando Nico - * @email : nico.orlando@studio.unibo.it - * @repo : pulp-sdk/rtos/pulpos/pulp/drivers/spi - * @createdOn : 11/11/2021 - * @description : The driver was tested on a VIP flash memory in RTL, where it was done one - * transfer at a time. - * Multiple concurrent transfers have not been tested. I mean using multiple - * SPI interfaces that do transfers at the same time. - *-----------------------------------------------------------------------------------------------------------------------**/ - -/**================================================================================================ - * * INFO - * Important definitions: - * pulp-sdk/rtos/pulpos/pulp_archi/include/archi/chips/pulp/properties.h - * pulp-sdk/rtos/pulpos/pulp_archi/include/archi/chips/pulp/memory_map.h - *================================================================================================**/ - -/**================================================================================================ - ** INCLUDE - *================================================================================================**/ -#include "abstraction_layer_spi.h" - -/**================================================================================================ - ** DEFINE - *================================================================================================**/ - -/**================================================================================================ - ** STRUCT - *================================================================================================**/ - -/**================================================================================================ - ** PROTOTYPE FUNCTION - *================================================================================================**/ - -/**================================================================================================ - ** GLOBAL VARIABLE - *================================================================================================**/ - -/**================================================================================================ - ** FUNCTION - *================================================================================================**/ -uint32_t pi_spi_get_config(struct pi_device *device) -{ - return __pi_spi_get_config(device->data); -} - -void pi_spi_conf_init(struct pi_spi_conf *conf) -{ - conf->wordsize = PI_SPI_WORDSIZE_8; - conf->big_endian = 0; - conf->max_baudrate = 10000000; - conf->cs = -1; - conf->itf = 0; - conf->polarity = 0; - conf->phase = 0; -} - -int pi_spi_open(struct pi_device *device) -{ - int status = -1; - status = __pi_spi_open((struct spim_cs_data **)(&device->data), (struct pi_spi_conf *)device->config); - return status; -} - -void pi_spi_close(struct pi_device *device) -{ - __pi_spi_close((struct spim_cs_data *)(device->data), (struct pi_spi_conf *)device->config); -} - -void pi_spi_ioctl(struct pi_device *device, uint32_t cmd, void *arg) -{ - /* TODO */ -} - -void pi_spi_send(struct pi_device *device, void *data, size_t len, pi_spi_flags_e flag) -{ - pi_task_t task_block; - pi_task_block(&task_block); - pi_spi_send_async(device, data, len, flag, &task_block); - pi_task_wait_on(&task_block); - pi_task_destroy(&task_block); -} - -void pi_spi_send_async(struct pi_device *device, void *data, size_t len, pi_spi_flags_e flag, pi_task_t *task) -{ - DEBUG_PRINTF("...start -> pi_spi_send_async...\n"); - __pi_spi_send_async(device->data, data, len, flag, task); - DEBUG_PRINTF("...end -> pi_spi_send_async...\n"); -} - -void pi_spi_receive(struct pi_device *device, void *data, size_t len, pi_spi_flags_e flag) -{ - DEBUG_PRINTF("...start -> pi_spi_receive...\n"); - pi_task_t task_block; - pi_task_block(&task_block); - DEBUG_PRINTF("%s:%s:%d pi_task_block(%p)\n", __FILE__, __func__, __LINE__, &task_block); - pi_spi_receive_async(device, data, len, flag, &task_block); - DEBUG_PRINTF("%s:%s:%d pi_spi_receive_async(device, data, len, flag, &task_block)\n", __FILE__, __func__, __LINE__); - // This function allows to wait on an event task until the event occurs. - pi_task_wait_on(&task_block); - DEBUG_PRINTF("%s:%s:%d pi_task_wait_on(%p)\n", __FILE__, __func__, __LINE__, &task_block); - pi_task_destroy(&task_block); - DEBUG_PRINTF("%s:%s:%d pi_task_destroy(%p)\n", __FILE__, __func__, __LINE__, &task_block); - DEBUG_PRINTF("...end -> pi_spi_receive...\n"); -} - -void pi_spi_receive_async(struct pi_device *device, void *data, size_t len, - pi_spi_flags_e flag, pi_task_t *task) -{ - DEBUG_PRINTF("...start -> pi_spi_receive_async...\n"); - __pi_spi_receive_async(device->data, data, len, flag, task); - DEBUG_PRINTF("...end -> pi_spi_receive_async...\n"); -} - -void pi_spi_receive_with_ucode(struct pi_device *device, void *data, size_t len, - pi_spi_flags_e flags, int ucode_size, - void *ucode) -{ - pi_task_t task_block; - pi_task_block(&task_block); - __pi_spi_receive_async_with_ucode(device->data, data, len, flags, - ucode_size, ucode, &task_block); - pi_task_wait_on(&task_block); - pi_task_destroy(&task_block); -} - -void pi_spi_send_with_ucode(struct pi_device *device, void *data, size_t len, - pi_spi_flags_e flags, int ucode_size, void *ucode) -{ - pi_task_t task_block; - pi_task_block(&task_block); - __pi_spi_send_async_with_ucode(device->data, data, len, flags, - ucode_size, ucode, &task_block); - pi_task_wait_on(&task_block); - pi_task_destroy(&task_block); -} - -void pi_spi_transfer(struct pi_device *device, void *tx_data, void *rx_data, - size_t len, pi_spi_flags_e flag) -{ - - /* TODO */ - pi_task_t task_block; - pi_task_block(&task_block); - DEBUG_PRINTF("%s:%s:%d\n", __FILE__, __func__, __LINE__); - pi_spi_transfer_async(device, tx_data, rx_data, len, flag, &task_block); - DEBUG_PRINTF("%s:%s:%d\n", __FILE__, __func__, __LINE__); - pi_task_wait_on(&task_block); - DEBUG_PRINTF("%s:%s:%d\n", __FILE__, __func__, __LINE__); - pi_task_destroy(&task_block); - DEBUG_PRINTF("%s:%s:%d\n", __FILE__, __func__, __LINE__); -} - -void pi_spi_transfer_async(struct pi_device *device, void *tx_data, - void *rx_data, size_t len, pi_spi_flags_e flag, - pi_task_t *task) -{ - /* TODO */ - __pi_spi_xfer_async(device->data, tx_data, rx_data, len, flag, task); -} \ No newline at end of file From f643a7c9616be7edcadcb6f7245c38a848636357 Mon Sep 17 00:00:00 2001 From: orlandonico Date: Tue, 8 Feb 2022 17:45:27 +0100 Subject: [PATCH 72/86] rtos: rm freertos --- rtos/freertos | 1 - 1 file changed, 1 deletion(-) delete mode 160000 rtos/freertos diff --git a/rtos/freertos b/rtos/freertos deleted file mode 160000 index 821a181a..00000000 --- a/rtos/freertos +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 821a181af42c9ef47f380a626826426472841abf From 7834446c41017f799871b38416488056e826388f Mon Sep 17 00:00:00 2001 From: orlandonico Date: Tue, 8 Feb 2022 17:46:16 +0100 Subject: [PATCH 73/86] rtos: rm common function dir --- .../include/abstraction_layer_spi.h | 68 -- .../src/abstraction_layer_spi.c | 729 ------------------ .../src/abstraction_layer_spi.o | Bin 306092 -> 0 bytes .../include/abstraction_layer_spi.h | 68 -- .../src/abstraction_layer_spi.c | 691 ----------------- .../common_file_spi/include/common_spi.h | 147 ---- .../common_file_spi/src/common_spi.c | 169 ---- .../common_file_spi/src/common_spi.o | Bin 236436 -> 0 bytes 8 files changed, 1872 deletions(-) delete mode 100644 rtos/common_function/abstraction_layer_spi_freertos/include/abstraction_layer_spi.h delete mode 100644 rtos/common_function/abstraction_layer_spi_freertos/src/abstraction_layer_spi.c delete mode 100644 rtos/common_function/abstraction_layer_spi_freertos/src/abstraction_layer_spi.o delete mode 100644 rtos/common_function/abstraction_layer_spi_pulpos/include/abstraction_layer_spi.h delete mode 100644 rtos/common_function/abstraction_layer_spi_pulpos/src/abstraction_layer_spi.c delete mode 100644 rtos/common_function/common_file_spi/include/common_spi.h delete mode 100644 rtos/common_function/common_file_spi/src/common_spi.c delete mode 100644 rtos/common_function/common_file_spi/src/common_spi.o diff --git a/rtos/common_function/abstraction_layer_spi_freertos/include/abstraction_layer_spi.h b/rtos/common_function/abstraction_layer_spi_freertos/include/abstraction_layer_spi.h deleted file mode 100644 index 6b828d50..00000000 --- a/rtos/common_function/abstraction_layer_spi_freertos/include/abstraction_layer_spi.h +++ /dev/null @@ -1,68 +0,0 @@ -/* - * Copyright 2020 GreenWaves Technologies - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * SPDX-License-Identifier: Apache-2.0 - */ - -/**----------------------------------------------------------------------------------------------------------------------- - * ? ABOUT - * @author : Orlando Nico, GreenWaves Technologies, Robert Balas - * @email : nico.orlando@studio.unibo.it, balasr@iis.ee.ethz.ch - * @repo : pulp-sdk/?/abstraction_layer_spi_freertos - * @createdOn : 29/12/2021 - * @description : Abstraction Layer SPI for FreeRTOS - *-----------------------------------------------------------------------------------------------------------------------**/ - -/**================================================================================================ - ** INCLUDE - *================================================================================================**/ -#include "common_spi.h" - -/**================================================================================================ - ** DEFINE - *================================================================================================**/ -#define UDMA_CORE_TX_CFG_EN(val) \ - (((uint32_t)(((uint32_t)(val)) << UDMA_CORE_TX_CFG_EN_SHIFT)) & UDMA_CORE_TX_CFG_EN_MASK) -#define UDMA_CORE_TX_CFG_DATASIZE(val) \ - (((uint32_t)(((uint32_t)(val)) << UDMA_CORE_TX_CFG_DATASIZE_SHIFT)) & \ - UDMA_CORE_TX_CFG_DATASIZE_MASK) -#define SPIM_CS_DATA_GET_DRV_DATA(cs_data) (cs_data->drv_data) - -/**================================================================================================ - ** STRUCT - *================================================================================================**/ - - - -/**================================================================================================ - ** PROTOTYPE FUNCTION - *================================================================================================**/ -void spim_eot_handler(void *arg); -void spim_tx_handler(void *arg); -void spim_rx_handler(void *arg); -int __pi_spi_open(struct spim_cs_data **cs_data, struct pi_spi_conf *conf); -void __pi_spi_close(struct spim_cs_data *cs_data, struct pi_spi_conf *conf); -void __pi_spim_exec_next_transfer(pi_task_t *task); -void __pi_spi_send_async(struct spim_cs_data *cs_data, void *data, size_t len, pi_spi_flags_e flags, pi_task_t *task); -void __pi_spi_receive_async(struct spim_cs_data *cs_data, void *data, size_t len, pi_spi_flags_e flags, pi_task_t *task); -void __pi_spi_xfer_async(struct spim_cs_data *cs_data, void *tx_data, void *rx_data, size_t len, pi_spi_flags_e flags, pi_task_t *task); -void __pi_spi_receive_async_with_ucode(struct spim_cs_data *cs_data, void *data, size_t len, pi_spi_flags_e flags, int ucode_size, void *ucode, pi_task_t *task); -void __pi_spi_send_async_with_ucode(struct spim_cs_data *cs_data, void *data, size_t len, pi_spi_flags_e flags, int ucode_size, void *ucode, pi_task_t *task); -void __spim_execute_callback(void *arg); -void system_core_clock_update(void); -uint32_t system_core_clock_get(void); -void vApplicationMallocFailedHook(void); -void vApplicationStackOverflowHook(TaskHandle_t pxTask, char *pcTaskName); -void system_init(void); \ No newline at end of file diff --git a/rtos/common_function/abstraction_layer_spi_freertos/src/abstraction_layer_spi.c b/rtos/common_function/abstraction_layer_spi_freertos/src/abstraction_layer_spi.c deleted file mode 100644 index d7eb13dd..00000000 --- a/rtos/common_function/abstraction_layer_spi_freertos/src/abstraction_layer_spi.c +++ /dev/null @@ -1,729 +0,0 @@ -/* - * Copyright 2020 GreenWaves Technologies - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * SPDX-License-Identifier: Apache-2.0 - */ - -/**----------------------------------------------------------------------------------------------------------------------- - * ? ABOUT - * @author : Orlando Nico, GreenWaves Technologies, Robert Balas - * @email : nico.orlando@studio.unibo.it, balasr@iis.ee.ethz.ch - * @repo : pulp-sdk/?/abstraction_layer_spi_freertos - * @createdOn : 29/12/2021 - * @description : Abstraction Layer SPI for FreeRTOS - *-----------------------------------------------------------------------------------------------------------------------**/ - -/**================================================================================================ - ** INCLUDE - *================================================================================================**/ -#include "abstraction_layer_spi.h" - -/**================================================================================================ - ** GLOBAL VARIABLE - *================================================================================================**/ -struct spim_driver_data *__g_spim_drv_data[UDMA_NB_SPIM] = {0}; - -/**================================================================================================ - ** FUNCTION - *================================================================================================**/ -void __pi_spi_receive_async(struct spim_cs_data *cs_data, void *data, size_t len, - pi_spi_flags_e flags, pi_task_t *task) -{ - DBG_PRINTF("...start -> __pi_spi_receive_async...\n"); - // SPIM_CS_DATA_GET_DRV_DATA(cs_data) = (cs_data->drv_data) - struct spim_driver_data *drv_data = SPIM_CS_DATA_GET_DRV_DATA(cs_data); - int qspi = (flags & (0x3 << 2)) == PI_SPI_LINES_QUAD; - // Choose the type of cs mode, see enum "pi_spi_flags_e" to understand better. - int cs_mode = (flags >> 0) & 0x3; - - int device_id = drv_data->device_id; - uint32_t cfg = cs_data->cfg; - DBG_PRINTF("%s:%s:%d: core clock:%" PRIu32 ", baudrate:%" PRIu32 ", div=%" PRIu32 - ", udma_cmd cfg =%lx, qpi=%d\n", - __FILE__, __func__, __LINE__, system_core_clock_get(), cs_data->max_baudrate, - system_core_clock_get() / cs_data->max_baudrate, cfg, qspi); - - int buffer_size = (len + 7) >> 3; - - if (len > 8192 * 8) { - DBG_PRINTF("%s:%s:%d: Transaction splitting unimplemented, too large", __FILE__, - __func__, __LINE__); - abort(); /* TODO: unimplemented transaction splitting */ - } - - DBG_PRINTF("%s:%s:%d: udma_cmd = %p\n", __FILE__, __func__, __LINE__, - &(cs_data->udma_cmd[0])); - uint32_t irq = deactive_irq(); - - uint8_t bitsword = 0; - uint8_t UDMA_CORE_CFG = 0; - uint32_t byte_align = 0; - - if (cs_data->wordsize == PI_SPI_WORDSIZE_8) { - bitsword = 8; - UDMA_CORE_CFG = UDMA_CORE_CFG_DATASIZE_8; // 0x0 - byte_align = (cs_data->wordsize) && cs_data->big_endian; - - } else if (cs_data->wordsize == PI_SPI_WORDSIZE_16) { - bitsword = 16; - UDMA_CORE_CFG = UDMA_CORE_CFG_DATASIZE_16; // 0x1 - byte_align = (cs_data->wordsize) && cs_data->big_endian; - } else { - bitsword = 32; - UDMA_CORE_CFG = UDMA_CORE_CFG_DATASIZE_32; // 0x2 - byte_align = (cs_data->wordsize) && cs_data->big_endian; - } - - DBG_PRINTF("%s:%s:%d: bitsword = %u\n", __FILE__, __func__, __LINE__, bitsword); - DBG_PRINTF("%s:%s:%d: UDMA_CORE_CFG = %u\n", __FILE__, __func__, __LINE__, UDMA_CORE_CFG); - - if (!drv_data->end_of_transfer) { - cs_data->udma_cmd[0] = cfg; - cs_data->udma_cmd[1] = SPI_CMD_SOT(cs_data->cs); - cs_data->udma_cmd[2] = SPI_CMD_RX_DATA(len / bitsword, SPI_CMD_1_WORD_PER_TRANSF, - bitsword, qspi, SPI_CMD_MSB_FIRST); - cs_data->udma_cmd[3] = SPI_CMD_EOT(1, cs_mode == PI_SPI_CS_KEEP); - - drv_data->end_of_transfer = task; - drv_data->repeat_transfer = NULL; - - // number of byteword - uint32_t rx_conf = - UDMA_CORE_TX_CFG_EN(1) | UDMA_CORE_TX_CFG_DATASIZE(UDMA_CORE_CFG); - - /* receive data stream with 32-bit data size */ - spim_enqueue_channel(SPIM(device_id), (uint32_t)data, buffer_size, rx_conf, - RX_CHANNEL); - // number of byteword - uint32_t cmd_conf = UDMA_CORE_TX_CFG_EN(1) | - UDMA_CORE_TX_CFG_DATASIZE(UDMA_CORE_CFG_DATASIZE_32); - /* send command stream with 32-bit data size */ - spim_enqueue_channel(SPIM(device_id), (uint32_t)cs_data->udma_cmd, - 4 * sizeof(uint32_t), cmd_conf, COMMAND_CHANNEL); - DBG_PRINTF("%s:%s:%d: cmd_conf= %u\n", __FILE__, __func__, __LINE__, cmd_conf); - DBG_PRINTF("%s:%s:%d: rx_conf = %u\n", __FILE__, __func__, __LINE__, rx_conf); - } else { - struct spim_transfer transfer; - transfer.data = data; - transfer.flags = flags; - transfer.len = len; - transfer.cfg_cmd = cfg; - transfer.byte_align = byte_align; - transfer.is_send = 0; - __pi_spim_drv_fifo_enqueue(cs_data, &transfer, task); - } - active_irq(irq); - DBG_PRINTF("...end -> __pi_spi_receive_async...\n"); -} - -void __pi_spi_send_async(struct spim_cs_data *cs_data, void *data, size_t len, pi_spi_flags_e flags, - pi_task_t *task) -{ - DBG_PRINTF("...start -> __pi_spi_send_async...\n"); - struct spim_driver_data *drv_data = SPIM_CS_DATA_GET_DRV_DATA(cs_data); - int qspi = (flags & (0x3 << 2)) == PI_SPI_LINES_QUAD; - // Choose the type of cs mode, see enum "pi_spi_flags_e" to understand better. - int cs_mode = (flags >> 0) & 0x3; - - // Which SPI interface am I using. - int device_id = drv_data->device_id; - uint32_t cfg = cs_data->cfg; // SPI_CMD_CFG(...) - DBG_PRINTF("%s:%s:%d: core clock:%" PRIu32 ", baudrate:%" PRIu32 ", div=%" PRIu32 - ", udma_cmd cfg =%lx, qpi=%d\n", - __FILE__, __func__, __LINE__, system_core_clock_get(), cs_data->max_baudrate, - system_core_clock_get() / cs_data->max_baudrate, cfg, qspi); - - /* buffer size */ - int buffer_size = (len + 7) >> 3; - - if (len > 8192 * 8) { - DBG_PRINTF("%s:%s:%d: Transaction splitting unimplemented, too large", __FILE__, - __func__, __LINE__); - abort(); /* TODO: unimplemented transaction splitting */ - } - - // Address of the command buffer to be sent to the uDMA - DBG_PRINTF("%s:%s:%d: udma_cmd = %p\n", __FILE__, __func__, __LINE__, - &(cs_data->udma_cmd[0])); - uint32_t irq = disable_irq(); - /* check if we already have a transfer ongoing */ - - uint8_t bitsword = 0; - uint8_t UDMA_CORE_CFG = 0; - uint32_t byte_align = 0; - // uint32_t byte_align = (cs_data->wordsize == PI_SPI_WORDSIZE_32) && cs_data->big_endian; - - if (cs_data->wordsize == PI_SPI_WORDSIZE_8) { - bitsword = 8; - UDMA_CORE_CFG = UDMA_CORE_CFG_DATASIZE_8; // 0x0 - byte_align = (cs_data->wordsize) && cs_data->big_endian; - - } else if (cs_data->wordsize == PI_SPI_WORDSIZE_16) { - bitsword = 16; - UDMA_CORE_CFG = UDMA_CORE_CFG_DATASIZE_16; // 0x1 - byte_align = (cs_data->wordsize) && cs_data->big_endian; - } else { - bitsword = 32; - UDMA_CORE_CFG = UDMA_CORE_CFG_DATASIZE_32; // 0x2 - byte_align = (cs_data->wordsize) && cs_data->big_endian; - } - - DBG_PRINTF("%s:%s:%d: bitsword = %u\n", __FILE__, __func__, __LINE__, bitsword); - DBG_PRINTF("%s:%s:%d: UDMA_CORE_CFG = %u\n", __FILE__, __func__, __LINE__, UDMA_CORE_CFG); - DBG_PRINTF("%s:%s:%d: device_id = %d\n", __FILE__, __func__, __LINE__, device_id); - - if (!drv_data->end_of_transfer) { /* enqueue the transfer */ - cs_data->udma_cmd[0] = cfg; - cs_data->udma_cmd[1] = SPI_CMD_SOT(cs_data->cs); - cs_data->udma_cmd[2] = SPI_CMD_TX_DATA((len / bitsword), SPI_CMD_1_WORD_PER_TRANSF, - bitsword, qspi, SPI_CMD_MSB_FIRST); - cs_data->udma_cmd[3] = SPI_CMD_EOT(1, cs_mode == PI_SPI_CS_KEEP); - - drv_data->end_of_transfer = task; - drv_data->repeat_transfer = NULL; - - uint32_t cmd_conf = UDMA_CORE_TX_CFG_EN(1) | - UDMA_CORE_TX_CFG_DATASIZE(UDMA_CORE_CFG_DATASIZE_32); - /* send command stream with 32-bit data size */ - spim_enqueue_channel(SPIM(device_id), (uint32_t)cs_data->udma_cmd, - 4 * sizeof(uint32_t), cmd_conf, COMMAND_CHANNEL); - - uint32_t tx_conf = - UDMA_CORE_TX_CFG_EN(1) | UDMA_CORE_TX_CFG_DATASIZE(UDMA_CORE_CFG); - /* send data stream with 32-bit data size */ - spim_enqueue_channel(SPIM(device_id), (uint32_t)data, buffer_size, tx_conf, - TX_CHANNEL); - DBG_PRINTF("%s:%s:%d: cmd_conf = %u\n", __FILE__, __func__, __LINE__, cmd_conf); - DBG_PRINTF("%s:%s:%d: tx_conf = %u\n", __FILE__, __func__, __LINE__, tx_conf); - } else { /* a transfer is running, append to pending transfers queue */ - struct spim_transfer transfer; - transfer.data = data; - transfer.flags = flags; - transfer.len = len; - transfer.cfg_cmd = cfg; - transfer.byte_align = byte_align; - transfer.is_send = 1; - __pi_spim_drv_fifo_enqueue(cs_data, &transfer, task); - } - active_irq(irq); - DBG_PRINTF("...end -> __pi_spi_send_async...\n"); -} - -int __pi_spi_open(struct spim_cs_data **cs_data, struct pi_spi_conf *conf) -{ - DBG_PRINTF("...start -> pi_spi_open...\n"); - - uint32_t irq = deactive_irq(); - /* int status = __pi_spi_open((struct spim_cs_data **)(&device->data), - * conf); */ - - /* TODO: hacked */ - int status = 0; - /* TODO: paste beg */ - - // disable clock gating for said device - unsigned char spi_id = conf->itf; - int periph_id = UDMA_SPIM_ID(spi_id); - - DBG_PRINTF("%s:%s:%d: periph_id = %u\n", __FILE__, __func__, __LINE__, periph_id); - - udma_ctrl_cg_disable(UDMA_SPIM_ID(conf->itf)); - - hal_soc_eu_set_fc_mask(SOC_EVENT_UDMA_SPIM_EOT(conf->itf)); - - pi_fc_event_handler_set(SOC_EVENT_UDMA_SPIM_EOT(conf->itf), spim_eot_handler); - pi_fc_event_handler_set(SOC_EVENT_UDMA_SPIM_TX(conf->itf), spim_tx_handler); - pi_fc_event_handler_set(SOC_EVENT_UDMA_SPIM_RX(conf->itf), spim_rx_handler); - - /* - ** spim_driver_data keeps information for each spi interface. - */ - // Take care of driver data - struct spim_driver_data *drv_data; - if (__g_spim_drv_data[conf->itf]) { - drv_data = __g_spim_drv_data[conf->itf]; - } else { - - // Do this to define a node in a list. The list is a dynamic object. - __g_spim_drv_data[conf->itf] = pi_default_malloc(sizeof(struct spim_driver_data)); - memset(__g_spim_drv_data[conf->itf], 0, sizeof(struct spim_driver_data)); - drv_data = __g_spim_drv_data[conf->itf]; - // Do this to define a node in a list. The list is a dynamic object. - drv_data->drv_fifo = pi_default_malloc(sizeof(struct spim_drv_fifo)); - memset(drv_data->drv_fifo, 0, sizeof(struct spim_drv_fifo)); - // controllo che il puntatore sia = 0 - if (!drv_data->drv_fifo) { - active_irq(irq); - return -1; - } - drv_data->device_id = conf->itf; - } - /* - ** Number of open SPI interfaces - */ - drv_data->nb_open++; - - // Take care of cs data - *cs_data = __pi_spim_get_cs_data(drv_data, conf->cs); - - if (!*cs_data) { // if (*cs_data == 0) - uint32_t clk_div = __pi_spi_clk_div_get(conf->max_baudrate); - // alloc a cs data, need to be in udma reachable ram - struct spim_cs_data *_cs_data = pi_data_malloc(sizeof(struct spim_cs_data)); - if (_cs_data == NULL) { - DBG_PRINTF("[%s] _cs_data alloc failed\n", __func__); - active_irq(irq); - return -2; - } - if (clk_div > 0xFF) { - DBG_PRINTF("[%s] clk_div, %" PRIu32 - ", does not fit into 8 bits. SoC frequency too high.\n", - __func__, clk_div); - active_irq(irq); - return -3; - } - - memset(_cs_data, 0, sizeof(struct spim_cs_data)); - _cs_data->max_baudrate = conf->max_baudrate; - _cs_data->polarity = conf->polarity; - _cs_data->phase = conf->phase; - _cs_data->big_endian = conf->big_endian; - _cs_data->wordsize = conf->wordsize; - _cs_data->cs = conf->cs; - _cs_data->cfg = SPI_CMD_CFG(clk_div, _cs_data->phase, _cs_data->polarity); - // _cs_data->cfg = SPI_CMD_CFG(1,0,0); - *cs_data = _cs_data; - // I insert a new element in the cs_data list - __pi_spim_cs_data_add(drv_data, _cs_data); - } - DBG_PRINTF("%s:%d\n", __func__, __LINE__); - - /* TODO: paste end */ - - active_irq(irq); - DBG_PRINTF("...end -> pi_spi_open...\n"); - return status; -} - -void __pi_spi_close(struct spim_cs_data *cs_data, struct pi_spi_conf *conf) -{ - DBG_PRINTF("...start -> pi_spi_close...\n"); - - uint32_t irq = deactive_irq(); - /* TODO: paste beg */ - struct spim_driver_data *drv_data = cs_data->drv_data; - __pi_spim_cs_data_del(drv_data, cs_data->cs); - /* - ** Number of open SPI interfaces - */ - drv_data->nb_open--; - - if (drv_data->nb_open == 0) { - /* reactivate clock gating for said device */ - udma_ctrl_cg_enable(UDMA_SPIM_ID(drv_data->device_id)); - hal_soc_eu_clear_fc_mask(SOC_EVENT_UDMA_SPIM_EOT(drv_data->device_id)); - pi_fc_event_handler_clear(SOC_EVENT_UDMA_SPIM_EOT(drv_data->device_id)); - __g_spim_drv_data[drv_data->device_id] = NULL; - pi_default_free(drv_data->drv_fifo, sizeof(drv_data->drv_fifo)); - pi_default_free(drv_data, sizeof(drv_data)); - - active_irq(irq); - return; - } - pi_data_free(cs_data, sizeof(cs_data)); - /* TODO: moved to end return drv_data->nb_open; */ - /* TODO: paste end */ - - active_irq(irq); - DBG_PRINTF("...end -> pi_spi_close...\n"); - return; -} - -void spim_eot_handler(void *arg) -{ - DBG_PRINTF("...start -> spim_eot_handler...\n"); - uint32_t event = (uint32_t)arg; - uint32_t channel = event & 0x1; - /* TODO: remove is garbage */ - // EOT is simply 22 + id in GAP8 - uint32_t periph_id = (event - SOC_EVENT_UDMA_SPIM_EOT(0)); - DBG_PRINTF("%s:%s:%d periph_id=%u\n", __FILE__, __func__, __LINE__, periph_id); - - struct spim_driver_data *drv_data = __g_spim_drv_data[periph_id]; - - if (drv_data->repeat_transfer) { - DBG_PRINTF("%s:%s:%d\n", __FILE__, __func__, __LINE__); - // TODO: reenqueue the rest of the transfer - DBG_PRINTF("Large transfers (>8k) are not implemented yet\n"); - return; - } - pi_task_t *task = drv_data->end_of_transfer; - DBG_PRINTF("%s:%s:%d\n", __FILE__, __func__, __LINE__); - if (task != NULL) { - if (task->id == PI_TASK_NONE_ID) { - DBG_PRINTF("%s:%s:%d release task %p\n", __FILE__, __func__, __LINE__, - task); - pi_task_release(task); - } else { - /* TODO: hacked away */ - /* DBG_PRINTF("%s:%d push task %p with id:%x in - * sched%p\n", */ - /* __func__, __LINE__, task, task->id, */ - /* default_sched); */ - DBG_PRINTF("%s:%s:%d periph id:%" PRIu32 "\n", __FILE__, __func__, __LINE__, - periph_id); - /* TODO: hacked away */ - /* pmsis_event_push(default_sched, task); */ - DBG_PRINTF("%s:%s:%d\n", __FILE__, __func__, __LINE__); - } - drv_data->end_of_transfer = NULL; - } -#ifdef DEBUG - else { - DBG_PRINTF("%s:%s:%d next task %d\n", __FILE__, __func__, __LINE__, - task == NULL ? 0 : 1); - } -#endif - // I put the next item on the list at the top of the list. - task = __pi_spim_drv_fifo_pop(drv_data); - - DBG_PRINTF("%s:%s:%d next task %d\n", __FILE__, __func__, __LINE__, task == NULL ? 0 : 1); - DBG_PRINTF("%s:%s:%d __pi_spim_drv_fifo_pop(%p)\n", __FILE__, __func__, __LINE__, drv_data); - DBG_PRINTF("%s:%s:%d new task %p\n", __FILE__, __func__, __LINE__, &task); - if (task) { - __pi_spim_exec_next_transfer(task); - DBG_PRINTF("%s:%s:%d __pi_spim_exec_next_transfer(%p)\n", __FILE__, __func__, - __LINE__, task); - } - DBG_PRINTF("...end -> spim_eot_handler...\n"); -} - -/* TODO: REMOVE THOSE */ -void spim_tx_handler(void *arg) -{ // if we're here, it's cs keep related - DBG_PRINTF("...start -> spim_tx_handler...\n"); - uint32_t event = (uint32_t)arg; - uint32_t channel = event & 0x1; - uint32_t periph_id = (event >> UDMA_CHANNEL_NB_EVENTS_LOG2) - UDMA_SPIM_ID(0); - hal_soc_eu_clear_fc_mask(SOC_EVENT_UDMA_SPIM_TX(periph_id)); - arg = (void *)(SOC_EVENT_UDMA_SPIM_EOT(0) + periph_id); - DBG_PRINTF("%s:%s:%d periph_id %" PRIu32 " arg:%p\n", __FILE__, __func__, __LINE__, - periph_id, arg); - spim_eot_handler(arg); - DBG_PRINTF("%s:%s:%d\n", __FILE__, __func__, __LINE__); - DBG_PRINTF("...end -> spim_tx_handler...\n"); -} - -/* TODO: REMOVE THOSE and the handler */ -void spim_rx_handler(void *arg) -{ // if we're here, it's cs keep related - DBG_PRINTF("...start -> spim_rx_handler...\n"); - uint32_t event = (uint32_t)arg; - uint32_t channel = event & 0x1; - uint32_t periph_id = (event >> UDMA_CHANNEL_NB_EVENTS_LOG2) - UDMA_SPIM_ID(0); - hal_soc_eu_clear_fc_mask(SOC_EVENT_UDMA_SPIM_RX(periph_id)); - arg = (void *)(SOC_EVENT_UDMA_SPIM_EOT(0) + periph_id); - DBG_PRINTF("%s:%s:%d periph_id %" PRIu32 " arg:%p\n", __FILE__, __func__, __LINE__, - periph_id, arg); - spim_eot_handler(arg); - DBG_PRINTF("%s:%s:%d\n", __FILE__, __func__, __LINE__); - DBG_PRINTF("...end -> spim_rx_handler...\n"); -} - -// TODO: prepare pseudo exec for delegate -void __pi_spim_execute_callback(void *arg) -{ - return; -} - -void __pi_spim_exec_next_transfer(pi_task_t *task) -{ - DBG_PRINTF("...start -> __pi_spim_exec_next_transfer...\n"); - DBG_PRINTF("%s:%s:%d\n", __FILE__, __func__, __LINE__); - if (task->data[5] == 1) { // if is send - // cs data | data buffer | len | flags | end of transfer task - __pi_spi_send_async((struct spim_cs_data *)task->data[0], (void *)task->data[1], - task->data[2], task->data[3], (pi_task_t *)task->data[4]); - } else if (task->data[5] == 0) { - // cs data | data buffer | len | flags | end of transfer task - __pi_spi_receive_async((struct spim_cs_data *)task->data[0], (void *)task->data[1], - task->data[2], task->data[3], (pi_task_t *)task->data[4]); - } else { // task->data[5] contains rx data addr - // cs data | tx buffer | rx buffer| len | flags | end of - // transfer task - __pi_spi_xfer_async((struct spim_cs_data *)task->data[0], (void *)task->data[5], - (void *)task->data[1], task->data[2], task->data[3], - (pi_task_t *)task->data[4]); - } - DBG_PRINTF("...end -> __pi_spim_exec_next_transfer...\n"); -} - -void __pi_spi_xfer_async(struct spim_cs_data *cs_data, void *tx_data, void *rx_data, size_t len, - pi_spi_flags_e flags, pi_task_t *task) -{ - /* TODO: port spi_xfer async */ - abort(); -#if 0 - struct spim_driver_data *drv_data = SPIM_CS_DATA_GET_DRV_DATA(cs_data); - int qspi = (flags & (0x3 << 2)) == PI_SPI_LINES_QUAD; - int cs_mode = (flags >> 0) & 0x3; - - int device_id = drv_data->device_id; - uint32_t cfg = cs_data->cfg; - DBG_PRINTF("%s:%d: core clock:%"PRIu32", baudrate:%"PRIu32", div=%"PRIu32", udma_cmd cfg =%d\n", - __func__,__LINE__,system_core_clock_get(),cs_data->max_baudrate, - system_core_clock_get() / cs_data->max_baudrate,cfg); - uint32_t byte_align = (cs_data->wordsize == PI_SPI_WORDSIZE_32) - && cs_data->big_endian; - int size = (len + 7) >> 3; - - int cmd_id = 0; - - uint32_t irq = deactive_irq(); - if(!drv_data->end_of_transfer) - { - cs_data->udma_cmd[0] = cfg; - cs_data->udma_cmd[1] = SPI_CMD_SOT(cs_data->cs); - cs_data->udma_cmd[2] = SPI_CMD_FULL_DUPL(len, byte_align); - drv_data->end_of_transfer = task; - drv_data->repeat_transfer = NULL; - if(cs_mode == PI_SPI_CS_AUTO) - { - spim_enqueue_channel(SPIM(device_id), (uint32_t)cs_data->udma_cmd, - 3*(sizeof(uint32_t)), UDMA_CORE_TX_CFG_EN(1), - TX_CHANNEL); - spim_enqueue_channel(SPIM(device_id), (uint32_t)rx_data, size, - UDMA_CORE_RX_CFG_EN(1) | (2<<1), RX_CHANNEL); - spim_enqueue_channel(SPIM(device_id), (uint32_t)tx_data, - size, UDMA_CORE_TX_CFG_EN(1), - TX_CHANNEL); - // wait until TX channel is free - while((hal_read32((void*)&(SPIM(device_id)->udma.tx_cfg)) - & (1<<5))>>5) - { - DBG_PRINTF("%s:%d\n",__func__,__LINE__); - } - // send EOT - cs_data->udma_cmd[3] = SPI_CMD_EOT(1); - spim_enqueue_channel(SPIM(device_id), - (uint32_t)&cs_data->udma_cmd[3], sizeof(uint32_t), - UDMA_CORE_TX_CFG_EN(1), TX_CHANNEL); - } - else - { - spim_enqueue_channel(SPIM(device_id), (uint32_t)cs_data->udma_cmd, - 3*(sizeof(uint32_t)), UDMA_CORE_TX_CFG_EN(1), - TX_CHANNEL); - // wait until TX channel is free - while((hal_read32((void*)&(SPIM(device_id)->udma.tx_cfg)) - & (1<<5))>>5) - { - DBG_PRINTF("%s:%d\n",__func__,__LINE__); - } - // activate rx event - hal_soc_eu_set_fc_mask(SOC_EVENT_UDMA_SPIM_RX(device_id)); - // NOTE: both transfers have the same size - // does not matter which one we wait - spim_enqueue_channel(SPIM(device_id), (uint32_t)rx_data, size, - UDMA_CORE_RX_CFG_EN(1) | (2<<1), RX_CHANNEL); - spim_enqueue_channel(SPIM(device_id), (uint32_t)tx_data, - size, UDMA_CORE_TX_CFG_EN(1), - TX_CHANNEL); - } - - } - else - { - struct spim_transfer transfer; - transfer.data = rx_data; - transfer.flags = flags; - transfer.len = len; - transfer.cfg_cmd = cfg; - transfer.byte_align = byte_align; - transfer.is_send = (uint32_t) tx_data; // sending a pointer means xfer - __pi_spim_drv_fifo_enqueue(cs_data, &transfer, task); - } - active_irq(irq); -#endif -} - -void __pi_spi_receive_async_with_ucode(struct spim_cs_data *cs_data, void *data, size_t len, - pi_spi_flags_e flags, int ucode_size, void *ucode, - pi_task_t *task) -{ - /* TODO: port spi_async with ucode */ - abort(); -#if 0 - struct spim_driver_data *drv_data = SPIM_CS_DATA_GET_DRV_DATA(cs_data); - int qspi = ((flags >> 2) & 0x3) == ((PI_SPI_LINES_QUAD>>2) & 0x03); - int cs_mode = (flags >> 0) & 0x3; - - int device_id = drv_data->device_id; - uint32_t byte_align = (cs_data->wordsize == PI_SPI_WORDSIZE_32) - && cs_data->big_endian; - uint32_t cfg = cs_data->cfg; - DBG_PRINTF("%s:%d: core clock:%d, baudrate:%d, div=%d, byte_align =%lx, cfg= %lx, qspi=%lx\n", - __func__,__LINE__,system_core_clock_get(),cs_data->max_baudrate, - system_core_clock_get() / cs_data->max_baudrate,byte_align,cfg,qspi); - int size = (len + 7) >> 3; - - int cmd_id = 0; - - uint32_t irq = deactive_irq(); - if(!drv_data->end_of_transfer) - { - if(cs_mode != PI_SPI_CS_AUTO) - { - hal_soc_eu_set_fc_mask(SOC_EVENT_UDMA_SPIM_RX(device_id)); - } - drv_data->end_of_transfer = task; - drv_data->repeat_transfer = NULL; - if(((0xFFF00000 & (uint32_t)ucode)!= 0x1c000000)) - { - memcpy(&(cs_data->udma_cmd[0]), ucode, ucode_size); - spim_enqueue_channel(SPIM(device_id), (uint32_t)data, size, - UDMA_CORE_RX_CFG_EN(1) | (2<<1), RX_CHANNEL); - spim_enqueue_channel(SPIM(device_id), (uint32_t)cs_data->udma_cmd, - ucode_size, UDMA_CORE_TX_CFG_EN(1), TX_CHANNEL); - } - else - { - spim_enqueue_channel(SPIM(device_id), (uint32_t)data, size, - UDMA_CORE_RX_CFG_EN(1) | (2<<1), RX_CHANNEL); - spim_enqueue_channel(SPIM(device_id), (uint32_t)ucode, - ucode_size, UDMA_CORE_TX_CFG_EN(1), TX_CHANNEL); - } - } - else - { -#if 0 - struct spim_transfer transfer; - transfer.data = data; - transfer.flags = flags; - transfer.len = len; - transfer.cfg_cmd = cfg; - transfer.byte_align = byte_align; - transfer.is_send = 0; - __pi_spim_drv_fifo_enqueue(cs_data, &transfer, task); -#endif - } - active_irq(irq); -#endif -} - -void __pi_spi_send_async_with_ucode(struct spim_cs_data *cs_data, void *data, size_t len, - pi_spi_flags_e flags, int ucode_size, void *ucode, - pi_task_t *task) -{ - /* TODO: port spi_async with ucode */ - abort(); -#if 0 - struct spim_driver_data *drv_data = SPIM_CS_DATA_GET_DRV_DATA(cs_data); - int qspi = ((flags >> 2) & 0x3) == ((PI_SPI_LINES_QUAD>>2) & 0x03); - int cs_mode = (flags >> 0) & 0x3; - - int device_id = drv_data->device_id; - uint32_t byte_align = (cs_data->wordsize == PI_SPI_WORDSIZE_32) - && cs_data->big_endian; - uint32_t cfg = cs_data->cfg; - DBG_PRINTF("%s:%d: core clock:%d, baudrate:%d, div=%d, byte_align =%lx, cfg= %lx, qspi=%lx\n", - __func__,__LINE__,system_core_clock_get(),cs_data->max_baudrate, - system_core_clock_get() / cs_data->max_baudrate,byte_align,cfg,qspi); - int size = (len + 7) >> 3; - - int cmd_id = 0; - - uint32_t irq = deactive_irq(); - if(!drv_data->end_of_transfer) - { - if(cs_mode != PI_SPI_CS_AUTO) - { - hal_soc_eu_set_fc_mask(SOC_EVENT_UDMA_SPIM_TX(device_id)); - } - drv_data->end_of_transfer = task; - drv_data->repeat_transfer = NULL; - - spim_enqueue_channel(SPIM(device_id), (uint32_t)ucode, - ucode_size, UDMA_CORE_TX_CFG_EN(1), TX_CHANNEL); - pi_time_wait_us(1000); - spim_enqueue_channel(SPIM(device_id), (uint32_t)data, - size, UDMA_CORE_TX_CFG_EN(1), TX_CHANNEL); - if(cs_mode == PI_SPI_CS_AUTO) - { - // wait until channel is free - while((hal_read32((void*)&(SPIM(device_id)->udma.tx_cfg)) - & (1<<5))>>5) - { - DBG_PRINTF("%s:%d\n",__func__,__LINE__); - } - - // enqueue EOT - cs_data->udma_cmd[0] = SPI_CMD_EOT(1); - spim_enqueue_channel(SPIM(device_id), - (uint32_t)&cs_data->udma_cmd[0], 1*(sizeof(uint32_t)), - UDMA_CORE_TX_CFG_EN(1), TX_CHANNEL); - } - } - else - { -#if 0 - struct spim_transfer transfer; - transfer.data = data; - transfer.flags = flags; - transfer.len = len; - transfer.cfg_cmd = cfg; - transfer.byte_align = byte_align; - transfer.is_send = 0; - __pi_spim_drv_fifo_enqueue(cs_data, &transfer, task); -#endif - } - active_irq(irq); -#endif -} - -void vApplicationMallocFailedHook(void) -{ - /* vApplicationMallocFailedHook() will only be called if - configUSE_MALLOC_FAILED_HOOK is set to 1 in FreeRTOSConfig.h. It is a - hook function that will get called if a call to pvPortMalloc() fails. - pvPortMalloc() is called internally by the kernel whenever a task, - queue, timer or semaphore is created. It is also called by various - parts of the demo application. If heap_1.c or heap_2.c are used, then - the size of the heap available to pvPortMalloc() is defined by - configTOTAL_HEAP_SIZE in FreeRTOSConfig.h, and the - xPortGetFreeHeapSize() API function can be used to query the size of - free heap space that remains (although it does not provide information - on how the remaining heap might be fragmented). */ - taskDISABLE_INTERRUPTS(); - printf("error: application malloc failed\n"); - __asm volatile("ebreak"); - for (;;) - ; -} - -void vApplicationStackOverflowHook(TaskHandle_t pxTask, char *pcTaskName) -{ - (void)pcTaskName; - (void)pxTask; - - /* Run time stack overflow checking is performed if - configCHECK_FOR_STACK_OVERFLOW is defined to 1 or 2. This hook - function is called if a stack overflow is detected. */ - taskDISABLE_INTERRUPTS(); - printf("error: stack overflow\n"); - __asm volatile("ebreak"); - for (;;) - ; -} \ No newline at end of file diff --git a/rtos/common_function/abstraction_layer_spi_freertos/src/abstraction_layer_spi.o b/rtos/common_function/abstraction_layer_spi_freertos/src/abstraction_layer_spi.o deleted file mode 100644 index 20e74e8d2a9bece18a823f99617401d9a8a0adfe..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 306092 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:j1M>JS!S_=U{b~C!jynSx6uO|&@T$zL}g53Zb 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 diff --git a/rtos/common_function/abstraction_layer_spi_pulpos/include/abstraction_layer_spi.h b/rtos/common_function/abstraction_layer_spi_pulpos/include/abstraction_layer_spi.h deleted file mode 100644 index d18cf2cf..00000000 --- a/rtos/common_function/abstraction_layer_spi_pulpos/include/abstraction_layer_spi.h +++ /dev/null @@ -1,68 +0,0 @@ -/* - * Copyright 2020 GreenWaves Technologies - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * SPDX-License-Identifier: Apache-2.0 - */ - -/**----------------------------------------------------------------------------------------------------------------------- - * ? ABOUT - * @author : Orlando Nico, GreenWaves Technologies, Robert Balas - * @email : nico.orlando@studio.unibo.it, balasr@iis.ee.ethz.ch - * @repo : pulp-sdk/rtos/pulpos/pulp/drivers/spim/abstraction_layer_spi - * @createdOn : 28/12/2021 - * @description : Abstraction Layer SPI for PulpOS - *-----------------------------------------------------------------------------------------------------------------------**/ - -/**================================================================================================ - ** INCLUDE - *================================================================================================**/ -#include "common_spi.h" - -/**================================================================================================ - ** DEFINE - *================================================================================================**/ -#define DEBUG_PRINTF(...) ((void)0) -#define DBG_PRINTF(...) ((void)0) -#define SPIM_CS_DATA_GET_DRV_DATA(cs_data) (cs_data->drv_data) -#define NB_SOC_EVENTS (ARCHI_SOC_EVENT_NB_TOTAL) -#define pi_default_malloc(x) pi_l2_malloc(x) -#define pi_default_free(x, y) pi_l2_free(x, y) -#define pi_data_malloc(x) pi_l2_malloc(x) -#define pi_data_free(x, y) pi_l2_free(x, y) -#define UDMA_EVENT_OFFSET_SPI_EOT 3 -#define SOC_EVENT_UDMA_SPIM_EOT(id) \ - ((ARCHI_UDMA_SPIM_ID(id) << ARCHI_SOC_EVENT_UDMA_NB_CHANNEL_EVT_LOG2) + \ - UDMA_EVENT_OFFSET_SPI_EOT) -typedef void (*pi_fc_event_handler_t)(void *arg); -/**================================================================================================ - ** STRUCT - *================================================================================================**/ - -/**================================================================================================ - ** PROTOTYPE FUNCTION - *================================================================================================**/ -void pos_spi_handle_copy(int event, void *arg); -void pos_spi_create_channel(pos_udma_channel_t *channel, int channel_id, int soc_event); -int __pi_spi_open(struct spim_cs_data **cs_data, struct pi_spi_conf *conf); -void __pi_spi_close(struct spim_cs_data *cs_data, struct pi_spi_conf *conf); -void __pi_spim_exec_next_transfer(pi_task_t *task); -void __pi_spi_send_async(struct spim_cs_data *cs_data, void *data, size_t len, pi_spi_flags_e flags, pi_task_t *task); -void __pi_spi_receive_async(struct spim_cs_data *cs_data, void *data, size_t len, pi_spi_flags_e flags, pi_task_t *task); -void __pi_spi_xfer_async(struct spim_cs_data *cs_data, void *tx_data, void *rx_data, size_t len, pi_spi_flags_e flags, pi_task_t *task); -void __pi_spi_receive_async_with_ucode(struct spim_cs_data *cs_data, void *data, size_t len, pi_spi_flags_e flags, int ucode_size, void *ucode, pi_task_t *task); -void __pi_spi_send_async_with_ucode(struct spim_cs_data *cs_data, void *data, size_t len, pi_spi_flags_e flags, int ucode_size, void *ucode, pi_task_t *task); -void __spim_execute_callback(void *arg); -void system_core_clock_update(void); -uint32_t system_core_clock_get(void); diff --git a/rtos/common_function/abstraction_layer_spi_pulpos/src/abstraction_layer_spi.c b/rtos/common_function/abstraction_layer_spi_pulpos/src/abstraction_layer_spi.c deleted file mode 100644 index 69c11e28..00000000 --- a/rtos/common_function/abstraction_layer_spi_pulpos/src/abstraction_layer_spi.c +++ /dev/null @@ -1,691 +0,0 @@ -/* - * Copyright 2020 GreenWaves Technologies - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * SPDX-License-Identifier: Apache-2.0 - */ - -/**----------------------------------------------------------------------------------------------------------------------- - * ? ABOUT - * @author : Orlando Nico, GreenWaves Technologies, Robert Balas - * @email : nico.orlando@studio.unibo.it, balasr@iis.ee.ethz.ch - * @repo : pulp-sdk/rtos/pulpos/pulp/drivers/spim/abstraction_layer_spi - * @createdOn : 28/12/2021 - * @description : Abstraction Layer SPI for PulpOS - *-----------------------------------------------------------------------------------------------------------------------**/ - -/**================================================================================================ - ** INCLUDE - *================================================================================================**/ -#include "abstraction_layer_spi.h" - -/**================================================================================================ - ** GLOBAL VARIABLE - *================================================================================================**/ -volatile uint32_t system_core_clock; -PI_L2 int spi_open_count = 0; -PI_L2 int spi_channel; -struct spim_driver_data *__g_spim_drv_data[ARCHI_UDMA_NB_SPIM] = {0}; -extern struct pmsis_event_kernel_wrap *default_sched; - -/**================================================================================================ - ** FUNCTION - *================================================================================================**/ -void system_core_clock_update(void) -{ - // system_core_clock = pi_fll_get_frequency(FLL_SOC, 0); - system_core_clock = pi_freq_get(FLL_SOC); -} - -uint32_t system_core_clock_get(void) -{ - system_core_clock_update(); - return system_core_clock; -} - -// TODO: prepare pseudo exec for delegate -void __pi_spim_execute_callback(void *arg) -{ - return; -} - -void __pi_spi_receive_async_with_ucode(struct spim_cs_data *cs_data, void *data, - size_t len, pi_spi_flags_e flags, - int ucode_size, void *ucode, - pi_task_t *task) -{ - /* TODO: port spi_async with ucode */ - abort(); -#if 0 - struct spim_driver_data *drv_data = SPIM_CS_DATA_GET_DRV_DATA(cs_data); - int qspi = ((flags >> 2) & 0x3) == ((PI_SPI_LINES_QUAD>>2) & 0x03); - int cs_mode = (flags >> 0) & 0x3; - - int device_id = drv_data->device_id; - uint32_t byte_align = (cs_data->wordsize == PI_SPI_WORDSIZE_32) - && cs_data->big_endian; - uint32_t cfg = cs_data->cfg; - DBG_PRINTF("%s:%d: core clock:%d, baudrate:%d, div=%d, byte_align =%lx, cfg= %lx, qspi=%lx\n", - __func__,__LINE__,system_core_clock_get(),cs_data->max_baudrate, - system_core_clock_get() / cs_data->max_baudrate,byte_align,cfg,qspi); - int size = (len + 7) >> 3; - - int cmd_id = 0; - - uint32_t irq = deactive_irq(); - if(!drv_data->end_of_transfer) - { - if(cs_mode != PI_SPI_CS_AUTO) - { - hal_soc_eu_set_fc_mask(SOC_EVENT_UDMA_SPIM_RX(device_id)); - } - drv_data->end_of_transfer = task; - drv_data->repeat_transfer = NULL; - if(((0xFFF00000 & (uint32_t)ucode)!= 0x1c000000)) - { - memcpy(&(cs_data->udma_cmd[0]), ucode, ucode_size); - spim_enqueue_channel(SPIM(device_id), (uint32_t)data, size, - UDMA_CORE_RX_CFG_EN(1) | (2<<1), RX_CHANNEL); - spim_enqueue_channel(SPIM(device_id), (uint32_t)cs_data->udma_cmd, - ucode_size, UDMA_CORE_TX_CFG_EN(1), TX_CHANNEL); - } - else - { - spim_enqueue_channel(SPIM(device_id), (uint32_t)data, size, - UDMA_CORE_RX_CFG_EN(1) | (2<<1), RX_CHANNEL); - spim_enqueue_channel(SPIM(device_id), (uint32_t)ucode, - ucode_size, UDMA_CORE_TX_CFG_EN(1), TX_CHANNEL); - } - } - else - { -#if 0 - struct spim_transfer transfer; - transfer.data = data; - transfer.flags = flags; - transfer.len = len; - transfer.cfg_cmd = cfg; - transfer.byte_align = byte_align; - transfer.is_send = 0; - __pi_spim_drv_fifo_enqueue(cs_data, &transfer, task); -#endif - } - active_irq(irq); -#endif -} - -void __pi_spi_send_async_with_ucode(struct spim_cs_data *cs_data, void *data, - size_t len, pi_spi_flags_e flags, - int ucode_size, void *ucode, - pi_task_t *task) -{ - /* TODO: port spi_async with ucode */ - abort(); -#if 0 - struct spim_driver_data *drv_data = SPIM_CS_DATA_GET_DRV_DATA(cs_data); - int qspi = ((flags >> 2) & 0x3) == ((PI_SPI_LINES_QUAD>>2) & 0x03); - int cs_mode = (flags >> 0) & 0x3; - - int device_id = drv_data->device_id; - uint32_t byte_align = (cs_data->wordsize == PI_SPI_WORDSIZE_32) - && cs_data->big_endian; - uint32_t cfg = cs_data->cfg; - DBG_PRINTF("%s:%d: core clock:%d, baudrate:%d, div=%d, byte_align =%lx, cfg= %lx, qspi=%lx\n", - __func__,__LINE__,system_core_clock_get(),cs_data->max_baudrate, - system_core_clock_get() / cs_data->max_baudrate,byte_align,cfg,qspi); - int size = (len + 7) >> 3; - - int cmd_id = 0; - - uint32_t irq = deactive_irq(); - if(!drv_data->end_of_transfer) - { - if(cs_mode != PI_SPI_CS_AUTO) - { - hal_soc_eu_set_fc_mask(SOC_EVENT_UDMA_SPIM_TX(device_id)); - } - drv_data->end_of_transfer = task; - drv_data->repeat_transfer = NULL; - - spim_enqueue_channel(SPIM(device_id), (uint32_t)ucode, - ucode_size, UDMA_CORE_TX_CFG_EN(1), TX_CHANNEL); - pi_time_wait_us(1000); - spim_enqueue_channel(SPIM(device_id), (uint32_t)data, - size, UDMA_CORE_TX_CFG_EN(1), TX_CHANNEL); - if(cs_mode == PI_SPI_CS_AUTO) - { - // wait until channel is free - while((hal_read32((void*)&(SPIM(device_id)->udma.tx_cfg)) - & (1<<5))>>5) - { - DBG_PRINTF("%s:%d\n",__func__,__LINE__); - } - - // enqueue EOT - cs_data->udma_cmd[0] = SPI_CMD_EOT(1); - spim_enqueue_channel(SPIM(device_id), - (uint32_t)&cs_data->udma_cmd[0], 1*(sizeof(uint32_t)), - UDMA_CORE_TX_CFG_EN(1), TX_CHANNEL); - } - } - else - { -#if 0 - struct spim_transfer transfer; - transfer.data = data; - transfer.flags = flags; - transfer.len = len; - transfer.cfg_cmd = cfg; - transfer.byte_align = byte_align; - transfer.is_send = 0; - __pi_spim_drv_fifo_enqueue(cs_data, &transfer, task); -#endif - } - active_irq(irq); -#endif -} - -void __pi_spi_xfer_async(struct spim_cs_data *cs_data, void *tx_data, void *rx_data, size_t len, pi_spi_flags_e flags, pi_task_t *task) -{ - /* TODO: port spi_xfer async */ - abort(); -#if 0 - struct spim_driver_data *drv_data = SPIM_CS_DATA_GET_DRV_DATA(cs_data); - int qspi = (flags & (0x3 << 2)) == PI_SPI_LINES_QUAD; - int cs_mode = (flags >> 0) & 0x3; - - int device_id = drv_data->device_id; - uint32_t cfg = cs_data->cfg; - DBG_PRINTF("%s:%d: core clock:%"PRIu32", baudrate:%"PRIu32", div=%"PRIu32", udma_cmd cfg =%d\n", - __func__,__LINE__,system_core_clock_get(),cs_data->max_baudrate, - system_core_clock_get() / cs_data->max_baudrate,cfg); - uint32_t byte_align = (cs_data->wordsize == PI_SPI_WORDSIZE_32) - && cs_data->big_endian; - int size = (len + 7) >> 3; - - int cmd_id = 0; - - uint32_t irq = deactive_irq(); - if(!drv_data->end_of_transfer) - { - cs_data->udma_cmd[0] = cfg; - cs_data->udma_cmd[1] = SPI_CMD_SOT(cs_data->cs); - cs_data->udma_cmd[2] = SPI_CMD_FULL_DUPL(len, byte_align); - drv_data->end_of_transfer = task; - drv_data->repeat_transfer = NULL; - if(cs_mode == PI_SPI_CS_AUTO) - { - spim_enqueue_channel(SPIM(device_id), (uint32_t)cs_data->udma_cmd, - 3*(sizeof(uint32_t)), UDMA_CORE_TX_CFG_EN(1), - TX_CHANNEL); - spim_enqueue_channel(SPIM(device_id), (uint32_t)rx_data, size, - UDMA_CORE_RX_CFG_EN(1) | (2<<1), RX_CHANNEL); - spim_enqueue_channel(SPIM(device_id), (uint32_t)tx_data, - size, UDMA_CORE_TX_CFG_EN(1), - TX_CHANNEL); - // wait until TX channel is free - while((hal_read32((void*)&(SPIM(device_id)->udma.tx_cfg)) - & (1<<5))>>5) - { - DBG_PRINTF("%s:%d\n",__func__,__LINE__); - } - // send EOT - cs_data->udma_cmd[3] = SPI_CMD_EOT(1); - spim_enqueue_channel(SPIM(device_id), - (uint32_t)&cs_data->udma_cmd[3], sizeof(uint32_t), - UDMA_CORE_TX_CFG_EN(1), TX_CHANNEL); - } - else - { - spim_enqueue_channel(SPIM(device_id), (uint32_t)cs_data->udma_cmd, - 3*(sizeof(uint32_t)), UDMA_CORE_TX_CFG_EN(1), - TX_CHANNEL); - // wait until TX channel is free - while((hal_read32((void*)&(SPIM(device_id)->udma.tx_cfg)) - & (1<<5))>>5) - { - DBG_PRINTF("%s:%d\n",__func__,__LINE__); - } - // activate rx event - hal_soc_eu_set_fc_mask(SOC_EVENT_UDMA_SPIM_RX(device_id)); - // NOTE: both transfers have the same size - // does not matter which one we wait - spim_enqueue_channel(SPIM(device_id), (uint32_t)rx_data, size, - UDMA_CORE_RX_CFG_EN(1) | (2<<1), RX_CHANNEL); - spim_enqueue_channel(SPIM(device_id), (uint32_t)tx_data, - size, UDMA_CORE_TX_CFG_EN(1), - TX_CHANNEL); - } - - } - else - { - struct spim_transfer transfer; - transfer.data = rx_data; - transfer.flags = flags; - transfer.len = len; - transfer.cfg_cmd = cfg; - transfer.byte_align = byte_align; - transfer.is_send = (uint32_t) tx_data; // sending a pointer means xfer - __pi_spim_drv_fifo_enqueue(cs_data, &transfer, task); - } - active_irq(irq); -#endif -} - -void __pi_spi_receive_async(struct spim_cs_data *cs_data, void *data, - size_t len, pi_spi_flags_e flags, pi_task_t *task) -{ - DBG_PRINTF("...start -> __pi_spi_receive_async...\n"); - // SPIM_CS_DATA_GET_DRV_DATA(cs_data) = (cs_data->drv_data) - struct spim_driver_data *drv_data = SPIM_CS_DATA_GET_DRV_DATA(cs_data); - int qspi = (flags & (0x3 << 2)) == PI_SPI_LINES_QUAD; - // Choose the type of cs mode, see enum "pi_spi_flags_e" to understand better. - int cs_mode = (flags >> 0) & 0x3; - - int device_id = drv_data->device_id; - task->id = device_id; //i need it for pos_spi_handle_copy - uint32_t cfg = cs_data->cfg; - DBG_PRINTF( - "%s:%s:%d: core clock:%" PRIu32 ", baudrate:%" PRIu32 ", div=%" PRIu32 ", udma_cmd cfg =%lx, qpi=%d\n", - __FILE__, __func__, __LINE__, system_core_clock_get(), - cs_data->max_baudrate, - system_core_clock_get() / cs_data->max_baudrate, cfg, qspi); - uint32_t byte_align = (cs_data->wordsize == PI_SPI_WORDSIZE_32) && - cs_data->big_endian; - - int buffer_size = (len + 7) >> 3; - - if (len > 8192 * 8) - { - DBG_PRINTF( - "%s:%s:%d: Transaction splitting unimplemented, too large", - __FILE__, __func__, __LINE__); - abort(); /* TODO: unimplemented transaction splitting */ - } - - DBG_PRINTF("%s:%s:%d: udma_cmd = %p\n", __FILE__, __func__, __LINE__, - &(cs_data->udma_cmd[0])); - uint32_t irq = deactive_irq(); - - uint8_t bitsword = 0; - uint8_t UDMA_CORE_CFG = 0; - - if (cs_data->wordsize == PI_SPI_WORDSIZE_8) - { - bitsword = 8; - UDMA_CORE_CFG = UDMA_CHANNEL_CFG_SIZE_8; - } - else if (cs_data->wordsize == PI_SPI_WORDSIZE_16) - { - bitsword = 16; - UDMA_CORE_CFG = UDMA_CHANNEL_CFG_SIZE_16; - } - else - { - bitsword = 32; - UDMA_CORE_CFG = UDMA_CHANNEL_CFG_SIZE_32; - } - - DBG_PRINTF("%s:%s:%d: bitsword = %u\n", __FILE__, __func__, __LINE__, bitsword); - DBG_PRINTF("%s:%s:%d: UDMA_CORE_CFG = %u\n", __FILE__, __func__, __LINE__, UDMA_CORE_CFG); - - /* - ** If I have no transfer in progress, then I go to set the command buffer - ** and then first I send the buffer where to receive the data and then the write command. - ** However, if I have some transfer in progress, then I put the new transfer - ** in the queue in the fifo and send it as soon as possible. - */ - - cs_data->udma_cmd[0] = cfg; - cs_data->udma_cmd[1] = SPI_CMD_SOT(cs_data->cs); - cs_data->udma_cmd[2] = SPI_CMD_RX_DATA(len / bitsword, SPI_CMD_1_WORD_PER_TRANSF, bitsword, qspi, SPI_CMD_MSB_FIRST); - cs_data->udma_cmd[3] = SPI_CMD_EOT(1, cs_mode == PI_SPI_CS_KEEP); - - uint32_t cfg_cmd = UDMA_CHANNEL_CFG_SIZE_32; - uint32_t rx_conf = UDMA_CORE_CFG; - if (drv_data->rx_channel->pendings[0] == NULL) - { - drv_data->rx_channel->pendings[0] = task; - plp_udma_enqueue(UDMA_SPIM_CMD_ADDR(device_id), (uint32_t)cs_data->udma_cmd, 4 * sizeof(uint32_t), UDMA_CHANNEL_CFG_EN | cfg_cmd); - plp_udma_enqueue(UDMA_SPIM_RX_ADDR(device_id), (uint32_t)data, buffer_size, UDMA_CHANNEL_CFG_EN | rx_conf); - } - else - { - if (drv_data->rx_channel->pendings[1] == NULL) - { - drv_data->rx_channel->pendings[1] = task; - plp_udma_enqueue(UDMA_SPIM_CMD_ADDR(device_id), (uint32_t)cs_data->udma_cmd, 4 * sizeof(uint32_t), UDMA_CHANNEL_CFG_EN | cfg_cmd); - plp_udma_enqueue(UDMA_SPIM_RX_ADDR(device_id), (uint32_t)data, buffer_size, UDMA_CHANNEL_CFG_EN | rx_conf); - } - else - { - // printf("else rx\n"); - struct spim_transfer transfer; - transfer.data = data; - transfer.flags = flags; - transfer.len = len; - transfer.cfg_cmd = cfg; - transfer.byte_align = byte_align; - transfer.is_send = 0; - drv_data->rx_channel->waitings_first=task; //i need it for pos_spi_handle_copy - __pi_spim_drv_fifo_enqueue(cs_data, &transfer, task); - } - } - active_irq(irq); - DBG_PRINTF("...end -> __pi_spi_receive_async...\n"); -} - -void __pi_spi_send_async(struct spim_cs_data *cs_data, void *data, size_t len, pi_spi_flags_e flags, pi_task_t *task) -{ - DBG_PRINTF("...start -> __pi_spi_send_async...\n"); - struct spim_driver_data *drv_data = SPIM_CS_DATA_GET_DRV_DATA(cs_data); - int qspi = (flags & (0x3 << 2)) == PI_SPI_LINES_QUAD; - int cs_mode = (flags >> 0) & 0x3; - DBG_PRINTF("%s:%s:%d...task %d, %p...\n", __FILE__, __func__, __LINE__, task == NULL ? 0 : 1, &task); - int device_id = drv_data->device_id; - task->id = device_id; //i need it for pos_spi_handle_copy - uint32_t cfg = cs_data->cfg; // SPI_CMD_CFG(...) - DBG_PRINTF( - "%s:%s:%d: core clock:%" PRIu32 ", baudrate:%" PRIu32 ", div=%" PRIu32 ", udma_cmd cfg =%lx, qpi=%d\n", - __FILE__, __func__, __LINE__, system_core_clock_get(), - cs_data->max_baudrate, - system_core_clock_get() / cs_data->max_baudrate, cfg, qspi); - uint32_t byte_align = (cs_data->wordsize == PI_SPI_WORDSIZE_32) && - cs_data->big_endian; - - /* buffer size */ - int buffer_size = (len + 7) >> 3; - - if (len > 8192 * 8) - { - DBG_PRINTF( - "%s:%s:%d: Transaction splitting unimplemented, too large", - __FILE__, __func__, __LINE__); - abort(); /* TODO: unimplemented transaction splitting */ - } - - // Address of the command buffer to be sent to the uDMA - DBG_PRINTF("%s:%s:%d: udma_cmd = %p\n", __FILE__, __func__, __LINE__, - &(cs_data->udma_cmd[0])); - uint32_t irq = deactive_irq(); - - uint8_t bitsword = 0; - uint8_t UDMA_CORE_CFG = 0; - - if (cs_data->wordsize == PI_SPI_WORDSIZE_8) - { - bitsword = 8; - UDMA_CORE_CFG = UDMA_CHANNEL_CFG_SIZE_8; // 0x0 - } - else if (cs_data->wordsize == PI_SPI_WORDSIZE_16) - { - bitsword = 16; - UDMA_CORE_CFG = UDMA_CHANNEL_CFG_SIZE_16; // 0x1 - } - else - { - bitsword = 32; - UDMA_CORE_CFG = UDMA_CHANNEL_CFG_SIZE_32; // 0x2 - } - - DBG_PRINTF("%s:%s:%d: bitsword = %u\n", __FILE__, __func__, __LINE__, bitsword); - DBG_PRINTF("%s:%s:%d: UDMA_CORE_CFG = %u\n", __FILE__, __func__, __LINE__, UDMA_CORE_CFG); - - /* - ** If I have no transfer in progress, then I go to set the command buffer - ** and then I first send the command and then the data. - ** However, if I have some transfer in progress, then I put the new transfer - ** in the queue in the fifo and send when I receive an EOT interrupt, - ** in this case the interrupt handler will manage the new transfer. - */ - cs_data->udma_cmd[0] = cfg; - cs_data->udma_cmd[1] = SPI_CMD_SOT(cs_data->cs); - cs_data->udma_cmd[2] = SPI_CMD_TX_DATA((len / bitsword), SPI_CMD_1_WORD_PER_TRANSF, bitsword, qspi, SPI_CMD_MSB_FIRST); - cs_data->udma_cmd[3] = SPI_CMD_EOT(1, cs_mode == PI_SPI_CS_KEEP); - - uint32_t cfg_cmd = UDMA_CHANNEL_CFG_SIZE_32; - uint32_t tx_conf = UDMA_CORE_CFG; - - if (drv_data->tx_channel->pendings[0] == NULL) - { - drv_data->tx_channel->pendings[0] = task; - plp_udma_enqueue(UDMA_SPIM_CMD_ADDR(device_id), (uint32_t)cs_data->udma_cmd, 4 * sizeof(uint32_t), UDMA_CHANNEL_CFG_EN | cfg_cmd); - plp_udma_enqueue(UDMA_SPIM_TX_ADDR(device_id), (uint32_t)data, buffer_size, UDMA_CHANNEL_CFG_EN | tx_conf); - } - else - { - if (drv_data->tx_channel->pendings[1] == NULL) - { - drv_data->tx_channel->pendings[1] = task; - plp_udma_enqueue(UDMA_SPIM_CMD_ADDR(device_id), (uint32_t)cs_data->udma_cmd, 4 * sizeof(uint32_t), UDMA_CHANNEL_CFG_EN | cfg_cmd); - plp_udma_enqueue(UDMA_SPIM_TX_ADDR(device_id), (uint32_t)data, buffer_size, UDMA_CHANNEL_CFG_EN | tx_conf); - } - else - { - /* a transfer is running, append to pendings transfers queue */ - struct spim_transfer transfer; - transfer.data = data; - transfer.flags = flags; - transfer.len = len; - transfer.cfg_cmd = cfg; - transfer.byte_align = byte_align; - transfer.is_send = 1; - drv_data->tx_channel->waitings_first=task; //i need it for pos_spi_handle_copy - __pi_spim_drv_fifo_enqueue(cs_data, &transfer, task); - } - } - active_irq(irq); - - DBG_PRINTF("...end -> __pi_spi_send_async...\n"); -} - -void __pi_spim_exec_next_transfer(pi_task_t *task) -{ - DBG_PRINTF("...start -> __pi_spim_exec_next_transfer...\n"); - DBG_PRINTF("%s:%s:%d\n", __FILE__, __func__, __LINE__); - if (task->data[5] == 1) - { // if is send - // printf("__pi_spim_exec_next_transfer tx %p\n", &task); - // cs data | data buffer | len | flags | end of transfer task - __pi_spi_send_async((struct spim_cs_data *)task->data[0], - (void *)task->data[1], task->data[2], - task->data[3], (pi_task_t *)task->data[4]); - } - else if (task->data[5] == 0) - { - // printf("__pi_spim_exec_next_transfer rx %p\n", &task); - // cs data | data buffer | len | flags | end of transfer task - __pi_spi_receive_async((struct spim_cs_data *)task->data[0], - (void *)task->data[1], task->data[2], - task->data[3], - (pi_task_t *)task->data[4]); - } - else - { // task->data[5] contains rx data addr - // cs data | tx buffer | rx buffer| len | flags | end of - // transfer task - __pi_spi_xfer_async((struct spim_cs_data *)task->data[0], - (void *)task->data[5], - (void *)task->data[1], task->data[2], - task->data[3], (pi_task_t *)task->data[4]); - } - DBG_PRINTF("...end -> __pi_spim_exec_next_transfer...\n"); -} - -void pos_spi_handle_copy(int event, void *arg) -{ - pos_udma_channel_t *channel = arg; - pi_task_t *pending_1 = channel->pendings[1]; - pi_task_t *pending_0 = channel->pendings[0]; - uint32_t spi_id = channel->base; - struct spim_driver_data *drv_data = __g_spim_drv_data[spi_id]; - pi_task_t *pending_first = __pi_spim_drv_fifo_pop(drv_data); - channel->pendings[0] = pending_1; - channel->pendings[1] = NULL; - - if (pending_first) - { - __pi_spim_exec_next_transfer(pending_first); - pending_first = NULL; - } - - pos_task_push_locked(pending_0); -} - -void pos_spi_create_channel(pos_udma_channel_t *channel, int channel_id, int soc_event) -{ - pos_soc_event_register_callback(soc_event, pos_spi_handle_copy, (void *)channel); - channel->pendings[0] = NULL; - channel->pendings[1] = NULL; - channel->waitings_first = NULL; - channel->base = 0; -} - -int __pi_spi_open(struct spim_cs_data **cs_data, struct pi_spi_conf *conf) -{ - int irq = deactive_irq(); - for (int i = 0; i < ARCHI_NB_FLL; i++) - { - pos_fll_init(i); - } - - //struct pi_spi_conf *conf = (struct pi_spi_conf *)device->config; - - unsigned char spi_id = conf->itf; - int periph_id = ARCHI_UDMA_SPIM_ID(spi_id); - spi_channel = UDMA_EVENT_ID(periph_id); - int cs = conf->cs; - int status = 0; - //struct spim_cs_data **cs_data = (struct spim_cs_data **)(&device->data); - plp_udma_cg_set(plp_udma_cg_get() | (1 << periph_id)); - - struct spim_driver_data *drv_data; - if (__g_spim_drv_data[conf->itf]) - { - drv_data = __g_spim_drv_data[conf->itf]; - } - else - { - __g_spim_drv_data[conf->itf] = pi_default_malloc(sizeof(struct spim_driver_data)); - memset(__g_spim_drv_data[conf->itf], 0, sizeof(struct spim_driver_data)); - drv_data = __g_spim_drv_data[conf->itf]; - // Do this to define a node in a list. The list is a dynamic object. - drv_data->drv_fifo = pi_default_malloc(sizeof(struct spim_drv_fifo)); - memset(drv_data->drv_fifo, 0, sizeof(struct spim_drv_fifo)); - // controllo che il puntatore sia = 0 - if (!drv_data->drv_fifo) - { - active_irq(irq); - return -1; - } - drv_data->device_id = conf->itf; - } - - if (drv_data->nb_open == 0) - { - pos_spi_create_channel(drv_data->rx_channel, UDMA_CHANNEL_ID(periph_id), SOC_EVENT_UDMA_SPIM_EOT(drv_data->device_id)); - pos_spi_create_channel(drv_data->tx_channel, UDMA_CHANNEL_ID(periph_id) + 1, SOC_EVENT_UDMA_SPIM_EOT(drv_data->device_id)); - drv_data->rx_channel->base=spi_id; //way to save me the spi interface which is associated with the channel - drv_data->tx_channel->base=spi_id; //way to save me the spi interface which is associated with the channel - } - - soc_eu_fcEventMask_setEvent(SOC_EVENT_UDMA_SPIM_EOT(drv_data->device_id)); - - drv_data->nb_open++; - - *cs_data = __pi_spim_get_cs_data(drv_data, conf->cs); - - if (!*cs_data) - { // if (*cs_data == 0) - uint32_t clk_div = __pi_spi_clk_div_get(conf->max_baudrate); - // alloc a cs data, need to be in udma reachable ram - struct spim_cs_data *_cs_data = pi_data_malloc(sizeof(struct spim_cs_data)); - if (_cs_data == NULL) - { - DBG_PRINTF("[%s] _cs_data alloc failed\n", __func__); - active_irq(irq); - return -2; - } - if (clk_div > 0xFF) - { - DBG_PRINTF( - "[%s] clk_div, %" PRIu32 ", does not fit into 8 bits. SoC frequency too high.\n", - __func__, clk_div); - active_irq(irq); - return -3; - } - - memset(_cs_data, 0, sizeof(struct spim_cs_data)); - _cs_data->max_baudrate = conf->max_baudrate; - _cs_data->polarity = conf->polarity; - _cs_data->phase = conf->phase; - _cs_data->big_endian = conf->big_endian; - _cs_data->wordsize = conf->wordsize; - _cs_data->cs = conf->cs; - _cs_data->cfg = SPI_CMD_CFG(clk_div, _cs_data->phase, _cs_data->polarity); - // _cs_data->cfg = SPI_CMD_CFG(1,0,0); - *cs_data = _cs_data; - // I insert a new element in the cs_data list - __pi_spim_cs_data_add(drv_data, _cs_data); - } - - active_irq(irq); - - return status; -} - -void __pi_spi_close(struct spim_cs_data *cs_data, struct pi_spi_conf *conf) -{ - DBG_PRINTF("...start -> pi_spi_close...\n"); - - //struct pi_spi_conf *conf = (struct pi_spi_conf *)device->config; - uint32_t irq = deactive_irq(); - unsigned char spi_id = conf->itf; - int periph_id = ARCHI_UDMA_SPIM_ID(spi_id); - int spi_channel = UDMA_EVENT_ID(periph_id); - /* TODO: paste beg */ - //struct spim_cs_data *cs_data = device->data; - struct spim_driver_data *drv_data = cs_data->drv_data; - __pi_spim_cs_data_del(drv_data, cs_data->cs); - /* - ** Number of open SPI interfaces - */ - drv_data->nb_open--; - - /* - ** If you no longer have any SPI interface open, - ** then go clear the memory, with free, and clear the interrupt line. - */ - if (drv_data->nb_open == 0) - { - /* reactivate clock gating for said device */ - plp_udma_cg_set(plp_udma_cg_get() & ~(1 << periph_id)); - soc_eu_fcEventMask_clearEvent(SOC_EVENT_UDMA_SPIM_EOT(drv_data->device_id)); - // hal_soc_eu_clear_fc_mask( SOC_EVENT_UDMA_SPIM_EOT(drv_data->device_id)); - __g_spim_drv_data[drv_data->device_id] = NULL; - pi_default_free(drv_data->drv_fifo, sizeof(drv_data->drv_fifo)); - pi_default_free(drv_data, sizeof(drv_data)); - - active_irq(irq); - return; - } - pi_data_free(cs_data, sizeof(cs_data)); - /* TODO: moved to end return drv_data->nb_open; */ - /* TODO: paste end */ - - active_irq(irq); - DBG_PRINTF("...end -> pi_spi_close...\n"); - return; -} \ No newline at end of file diff --git a/rtos/common_function/common_file_spi/include/common_spi.h b/rtos/common_function/common_file_spi/include/common_spi.h deleted file mode 100644 index 18543bf7..00000000 --- a/rtos/common_function/common_file_spi/include/common_spi.h +++ /dev/null @@ -1,147 +0,0 @@ -/* - * Copyright 2020 GreenWaves Technologies - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * SPDX-License-Identifier: Apache-2.0 - */ - -/**----------------------------------------------------------------------------------------------------------------------- - * ? ABOUT - * @author : Orlando Nico, GreenWaves Technologies, Robert Balas - * @email : nico.orlando@studio.unibo.it, balasr@iis.ee.ethz.ch - * @repo : pulp-sdk/rtos/pulpos/pulp/drivers/spim/common - * @createdOn : 28/12/2021 - * @description : Common File for Abstraction Layer SPI for PulpOS and FreeRTOS - *-----------------------------------------------------------------------------------------------------------------------**/ - -/**================================================================================================ - ** INCLUDE - *================================================================================================**/ -#ifdef USE_PULPOS_TEST -#include "pmsis.h" -#include -#include -#include -#include -#include -#include -#include -#include -#include -#endif - -#ifdef USE_FREERTOS_TEST -#include "pmsis_types.h" -#include "pmsis_task.h" -#include "implementation_specific_defines.h" -#include "system.h" -#include "fc_event.h" -#include "udma.h" -#include "fll.h" -#include "events.h" -#include "properties.h" -#include "spi_periph.h" -#include "spi.h" -#include "udma_spim.h" -#include "udma_ctrl.h" -#endif - -/**================================================================================================ - ** DEFINE - *================================================================================================**/ -#ifdef DEBUG -#define DEBUG_PRINTF printf -#define DBG_PRINTF printf -#else -#define DEBUG_PRINTF(...) ((void)0) -#define DBG_PRINTF(...) ((void)0) -#endif /* DEBUG */ - -/**================================================================================================ - ** STRUCT - *================================================================================================**/ -struct spim_drv_fifo -{ - pi_task_t *fifo_head; - pi_task_t *fifo_tail; -}; - -/* Structure holding infos for each chip selects (itf, cs, polarity etc...) */ -struct spim_cs_data -{ - struct spim_cs_data *next; - struct spim_driver_data *drv_data; - uint32_t cfg; - uint32_t udma_cmd[8]; - uint32_t max_baudrate; - uint32_t polarity; - uint32_t phase; - uint8_t cs; - uint8_t wordsize; - uint8_t big_endian; -}; - -#ifdef USE_PULPOS_TEST -/* Structure holding info for each interfaces - * most notably the fifo of enqueued transfers and meta to know whether - * interface is free or not */ -struct spim_driver_data -{ - struct spim_drv_fifo *drv_fifo; // does the same task as Dolphine with true and false - struct spim_cs_data *cs_list; // list of devices connected to the spi interface - pi_task_t *repeat_transfer; - pi_task_t *end_of_transfer; // gli associo un task per sapere se un trasferimento ha finito? - uint32_t nb_open; - uint8_t device_id; - pos_udma_channel_t *rx_channel; - pos_udma_channel_t *tx_channel; -}; -#endif -#ifdef USE_FREERTOS_TEST -/* Structure holding info for each interfaces - * most notably the fifo of enqueued transfers and meta to know whether - * interface is free or not */ -struct spim_driver_data { - struct spim_drv_fifo *drv_fifo; // does the same task as Dolphine with true and false - struct spim_cs_data *cs_list; // list of devices connected to the spi interface - pi_task_t *repeat_transfer; - pi_task_t *end_of_transfer; // gli associo un task per sapere se un trasferimento ha finito? - uint32_t nb_open; - uint8_t device_id; -}; -#endif - - -struct spim_transfer -{ - pi_spi_flags_e flags; - void *data; - uint32_t len; - uint32_t cfg_cmd; - uint32_t byte_align; - uint32_t is_send; -}; - -/**================================================================================================ - ** PROTOTYPE FUNCTION - *================================================================================================**/ -uint32_t __pi_spi_get_config(struct spim_cs_data *cs_data); -int32_t __pi_spim_drv_fifo_enqueue(struct spim_cs_data *cs_data, struct spim_transfer *transfer, pi_task_t *end_task); -pi_task_t *__pi_spim_drv_fifo_pop(struct spim_driver_data *data); -struct spim_cs_data *__pi_spim_get_cs_data(struct spim_driver_data *drv_data, int cs); -void __pi_spim_cs_data_del(struct spim_driver_data *drv_data, int cs); -void __pi_spim_cs_data_add(struct spim_driver_data *drv_data, struct spim_cs_data *cs_data); -uint32_t __pi_spi_clk_div_get(uint32_t spi_freq); -uint32_t deactive_irq(void); -void active_irq(uint32_t irq); \ No newline at end of file diff --git a/rtos/common_function/common_file_spi/src/common_spi.c b/rtos/common_function/common_file_spi/src/common_spi.c deleted file mode 100644 index 5666f2a2..00000000 --- a/rtos/common_function/common_file_spi/src/common_spi.c +++ /dev/null @@ -1,169 +0,0 @@ -/* - * Copyright 2020 GreenWaves Technologies - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * SPDX-License-Identifier: Apache-2.0 - */ - -/**----------------------------------------------------------------------------------------------------------------------- - * ? ABOUT - * @author : Orlando Nico, GreenWaves Technologies, Robert Balas - * @email : nico.orlando@studio.unibo.it, balasr@iis.ee.ethz.ch - * @repo : pulp-sdk/rtos/pulpos/pulp/drivers/spim/common - * @createdOn : 28/12/2021 - * @description : Common File for Abstraction Layer SPI for PulpOS and FreeRTOS - *-----------------------------------------------------------------------------------------------------------------------**/ - -/**================================================================================================ - ** INCLUDE - *================================================================================================**/ -#include "common_spi.h" - -/**================================================================================================ - ** FUNCTION - *================================================================================================**/ -uint32_t deactive_irq(void){ -#ifdef USE_PULPOS_TEST - return hal_irq_disable(); -#endif -#ifdef USE_FREERTOS_TEST - return __disable_irq(); -#endif -} - -void active_irq(uint32_t irq){ -#ifdef USE_PULPOS_TEST - hal_irq_restore(irq); -#endif -#ifdef USE_FREERTOS_TEST - __restore_irq(irq); -#endif - -} - -uint32_t __pi_spi_get_config(struct spim_cs_data *cs_data) -{ - return cs_data->cfg; -} - -// It is used to put an item in the list. The new item is put at the top of the list. -int32_t __pi_spim_drv_fifo_enqueue(struct spim_cs_data *cs_data, - struct spim_transfer *transfer, - pi_task_t *end_task) -{ - uint32_t irq = deactive_irq(); - struct spim_driver_data *drv_data = cs_data->drv_data; - /* Callback args. */ - end_task->data[0] = (uintptr_t)cs_data; - end_task->data[1] = (uintptr_t)transfer->data; - end_task->data[2] = (uintptr_t)transfer->len; - end_task->data[3] = (uintptr_t)transfer->flags; - end_task->data[4] = (uintptr_t)end_task; - end_task->data[5] = (uintptr_t)transfer->is_send; - end_task->next = NULL; - /* Enqueue transfer in drv fifo. */ - if (drv_data->drv_fifo->fifo_head == NULL) - { - /* Empty fifo. */ - drv_data->drv_fifo->fifo_head = end_task; - drv_data->drv_fifo->fifo_tail = drv_data->drv_fifo->fifo_head; - } - else - { - /* Enqueue to tail. */ - drv_data->drv_fifo->fifo_tail->next = end_task; - drv_data->drv_fifo->fifo_tail = - drv_data->drv_fifo->fifo_tail->next; - } - active_irq(irq); - return 0; -} - -pi_task_t *__pi_spim_drv_fifo_pop(struct spim_driver_data *data) -{ - // DBG_PRINTF("%s:%s:%d: \n", __FILE__, __func__, __LINE__); - pi_task_t *task_return = NULL; - // clean the value in the position 7 of regiter 0x300 - // irq = 1100010000000 - int check_300 = 0; - asm volatile("csrr %0, 0x300" - : "=r"(check_300)); - uint32_t irq = deactive_irq(); - if (data->drv_fifo->fifo_head != NULL) - { - task_return = data->drv_fifo->fifo_head; - data->drv_fifo->fifo_head = data->drv_fifo->fifo_head->next; - if (data->drv_fifo->fifo_head == NULL) - { - data->drv_fifo->fifo_tail = NULL; - } - } - // write in the 0x300 register - active_irq(irq); - return task_return; -} - -struct spim_cs_data *__pi_spim_get_cs_data(struct spim_driver_data *drv_data, int cs) -{ - struct spim_cs_data *cs_cur = drv_data->cs_list; - while (cs_cur != NULL && cs_cur->cs != cs) - { - cs_cur = cs_cur->next; - } - return cs_cur; -} - -void __pi_spim_cs_data_del(struct spim_driver_data *drv_data, - int cs) -{ - struct spim_cs_data *cs_cur = drv_data->cs_list; - struct spim_cs_data *cs_prev = cs_cur; - while (cs_cur != NULL && cs_cur->cs != cs) - { - cs_prev = cs_cur; - cs_cur = cs_cur->next; - } - if (cs_cur) - { - cs_prev->next = cs_cur->next; - cs_cur->next = NULL; - } -} - -void __pi_spim_cs_data_add(struct spim_driver_data *drv_data, struct spim_cs_data *cs_data) -{ - // head insert, most recently allocated should be most recently used - cs_data->drv_data = drv_data; - cs_data->next = drv_data->cs_list; -} - -uint32_t __pi_spi_clk_div_get(uint32_t spi_freq) -{ - uint32_t periph_freq = pi_freq_get(PI_FREQ_DOMAIN_PERIPH); - if (spi_freq < periph_freq) - { - uint32_t clk_div = 0; - clk_div = (periph_freq + spi_freq - 1) / spi_freq; - if (clk_div & 1) - { - clk_div += 1; - } - /* The SPIM always divide by 2 once we activate the divider, - thus increase by 1 in case it is even to not go above the max - frequency. */ - clk_div = clk_div >> 1; - return clk_div; - } - return 0; -} \ No newline at end of file diff --git a/rtos/common_function/common_file_spi/src/common_spi.o b/rtos/common_function/common_file_spi/src/common_spi.o deleted file mode 100644 index 1522ed0bcff54edac233d4d8e99dbabd8ca50aa2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 236436 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 drRN;~E9>BI_BF Date: Tue, 8 Feb 2022 18:20:44 +0100 Subject: [PATCH 74/86] rtos/pulpos/common: modify src.mk e default_rules.mk for abstraction layers --- rtos/pulpos/common/rules/pulpos/default_rules.mk | 13 +++++++++---- rtos/pulpos/common/rules/pulpos/src.mk | 6 +++--- 2 files changed, 12 insertions(+), 7 deletions(-) diff --git a/rtos/pulpos/common/rules/pulpos/default_rules.mk b/rtos/pulpos/common/rules/pulpos/default_rules.mk index a5e941a6..f4789b04 100644 --- a/rtos/pulpos/common/rules/pulpos/default_rules.mk +++ b/rtos/pulpos/common/rules/pulpos/default_rules.mk @@ -51,10 +51,15 @@ platform=$(PULPOS_PLATFORM) endif ifdef USE_PULPOS_TEST -PULP_APP_CFLAGS += -I"$(PULP_SDK_HOME)/rtos/common_function/common_file_spi/include" -PULP_APP_SRCS += $(PULP_SDK_HOME)/rtos/common_function/common_file_spi/src/common_spi.c -PULP_APP_CFLAGS += -I"$(PULP_SDK_HOME)/rtos/common_function/abstraction_layer_spi_pulpos/include" -PULP_APP_SRCS += $(PULP_SDK_HOME)/rtos/common_function/abstraction_layer_spi_pulpos/src/abstraction_layer_spi.c +#include +PULP_APP_CFLAGS += -I"$(PULP_SDK_HOME)/rtos/pulpos/pulp/drivers/i2c/include" +PULP_APP_CFLAGS += -I"$(PULP_SDK_HOME)/rtos/pulpos/pulp/drivers/spim/include" + +#src +PULP_APP_SRCS += $(PULP_SDK_HOME)/rtos/pulpos/pulp/drivers/spim/src/common_spi.c +PULP_APP_SRCS += $(PULP_SDK_HOME)/rtos/pulpos/pulp/drivers/spim/src/abstraction_layer_spi.c +PULP_APP_SRCS += $(PULP_SDK_HOME)/rtos/pulpos/pulp/drivers/i2c/src/common_i2c.c +PULP_APP_SRCS += $(PULP_SDK_HOME)/rtos/pulpos/pulp/drivers/i2c/src/abstraction_layer_i2c.c endif ifndef platform diff --git a/rtos/pulpos/common/rules/pulpos/src.mk b/rtos/pulpos/common/rules/pulpos/src.mk index f3d07bce..9df856b2 100644 --- a/rtos/pulpos/common/rules/pulpos/src.mk +++ b/rtos/pulpos/common/rules/pulpos/src.mk @@ -65,9 +65,9 @@ endif ifeq '$(CONFIG_SPIM)' '1' ifneq '$(udma/version)' '' CONFIG_UDMA = 1 -PULP_SRCS += drivers/spim/spim-v$(udma/spim/version).c +PULP_SRCS += drivers/spim/src/spim-v$(udma/spim/version).c ifeq '$(CONFIG_USE_ASM_OPTIM)' '1' -PULP_ASM_SRCS += drivers/spim/spim-v$(udma/spim/version)_asm.S +PULP_ASM_SRCS += drivers/spim/src/spim-v$(udma/spim/version)_asm.S endif endif endif @@ -98,7 +98,7 @@ endif ifeq '$(CONFIG_I2C)' '1' ifneq '$(udma/i2c/version)' '' CONFIG_UDMA = 1 -PULP_SRCS += drivers/i2c/i2c-v$(udma/i2c/version).c +PULP_SRCS += drivers/i2c/src/i2c-v$(udma/i2c/version).c endif endif From 8c8f6f62df31192aef25f3300bf46572303dfb33 Mon Sep 17 00:00:00 2001 From: orlandonico Date: Thu, 10 Feb 2022 17:00:34 +0100 Subject: [PATCH 75/86] rtos/pulpos/pulp: abstraction layers i2c pulpos --- .../pulp/drivers/i2c/i2c-v2_all_in_one.c | 1115 +++++++++++++++++ .../i2c/include/abstraction_layer_i2c.h | 101 ++ .../pulp/drivers/i2c/include/common_i2c.h | 179 +++ .../drivers/i2c/src/abstraction_layer_i2c.c | 566 +++++++++ rtos/pulpos/pulp/drivers/i2c/src/common_i2c.c | 259 ++++ rtos/pulpos/pulp/drivers/i2c/src/i2c-v2.c | 202 +++ 6 files changed, 2422 insertions(+) create mode 100644 rtos/pulpos/pulp/drivers/i2c/i2c-v2_all_in_one.c create mode 100644 rtos/pulpos/pulp/drivers/i2c/include/abstraction_layer_i2c.h create mode 100644 rtos/pulpos/pulp/drivers/i2c/include/common_i2c.h create mode 100644 rtos/pulpos/pulp/drivers/i2c/src/abstraction_layer_i2c.c create mode 100644 rtos/pulpos/pulp/drivers/i2c/src/common_i2c.c create mode 100644 rtos/pulpos/pulp/drivers/i2c/src/i2c-v2.c diff --git a/rtos/pulpos/pulp/drivers/i2c/i2c-v2_all_in_one.c b/rtos/pulpos/pulp/drivers/i2c/i2c-v2_all_in_one.c new file mode 100644 index 00000000..f21d8852 --- /dev/null +++ b/rtos/pulpos/pulp/drivers/i2c/i2c-v2_all_in_one.c @@ -0,0 +1,1115 @@ +/* + * Copyright 2021 GreenWaves Technologies + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + * Modify by Nico Orlando (nico.orlando@studio.unibo.it) + * + */ + +/**----------------------------------------------------------------------------------------------------------------------- + * ? ABOUT + * @author : Orlando Nico + * @email : nico.orlando@studio.unibo.it + * @repo : pulp-sdk/rtos/pulpos/pulp/drivers/spi + * @createdOn : /01/2022 + * @description : The driver was tested on a VIP flash memory in RTL, where it was done one + * transfer at a time. + * Multiple concurrent transfers have not been tested. I mean using multiple + * I2C interfaces that do transfers at the same time. + *-----------------------------------------------------------------------------------------------------------------------**/ + +/**================================================================================================ + * * INFO + * Important definitions: + * pulp-sdk/rtos/pulpos/pulp_archi/include/archi/chips/pulp/properties.h + * pulp-sdk/rtos/pulpos/pulp_archi/include/archi/chips/pulp/memory_map.h + * + * ricevo due eventi 10, legati al cmd, uno vicino all'altro ma non esegue handler + *================================================================================================**/ + +/**================================================================================================ + ** INCLUDE + *================================================================================================**/ +#include "pmsis.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include + +/* + * pi_task: + * data[0] = l2_buf + * data[1] = size + * data[2] = flags + * data[3] = channel + * data[4] = p_cs_data + * data[5] = repeat_size + */ + +/**================================================================================================ + ** DEFINE + *================================================================================================**/ +/* Length of i2c cmd buffer. */ +#define __PI_I2C_CMD_BUFF_SIZE (256) +/* Lenght of i2c stop command sequence. */ +#define __PI_I2C_STOP_CMD_SIZE (3) +/* Lenght of i2c eot subset of stop command sequence. */ +#define __PI_I2C_ONLY_EOT_CMD_SIZE (3) + +#if defined(TRACE_I2C) +#define I2C_TRACE printf +#define I2C_TRACE_ERR printf +#else +#define I2C_TRACE(...) ((void)0) +#define I2C_TRACE_ERR(...) ((void)0) +#endif /* TRACE_I2C */ + +/* Events offsets. */ +#define UDMA_EVENT_OFFSET_RX (0) +#define UDMA_EVENT_OFFSET_TX (1) +#define UDMA_EVENT_OFFSET_CMD (2) +#define UDMA_EVENT_OFFSET_EOT (3) + +#define MUTEX 1 + +/* I2C */ +#define SOC_EVENT_UDMA_I2C_RX(id) \ + ((ARCHI_UDMA_I2C_ID(id) << ARCHI_SOC_EVENT_UDMA_NB_CHANNEL_EVT_LOG2) + \ + UDMA_EVENT_OFFSET_RX) +#define SOC_EVENT_UDMA_I2C_TX(id) \ + ((ARCHI_UDMA_I2C_ID(id) << ARCHI_SOC_EVENT_UDMA_NB_CHANNEL_EVT_LOG2) + \ + UDMA_EVENT_OFFSET_TX) +#define SOC_EVENT_UDMA_I2C_CMD(id) \ + ((ARCHI_UDMA_I2C_ID(id) << ARCHI_SOC_EVENT_UDMA_NB_CHANNEL_EVT_LOG2) + \ + UDMA_EVENT_OFFSET_CMD) +#define SOC_EVENT_UDMA_I2C_EOT(id) \ + ((ARCHI_UDMA_I2C_ID(id) << ARCHI_SOC_EVENT_UDMA_NB_CHANNEL_EVT_LOG2) + \ + UDMA_EVENT_OFFSET_EOT) + +/* Defines for read & write adress access. */ +#define ADDRESS_WRITE 0x0 +#define ADDRESS_READ 0x1 + +/* Max length of a i2c request/data buffer. */ +#define MAX_SIZE (0xFF) +#define CONFIG_UDMA_I2C_EOT 1 +/**================================================================================================ + ** STRUCT + *================================================================================================**/ +typedef enum +{ + RX_CHANNEL = 0, + TX_CHANNEL = 1, + COMMAND_CHANNEL = 2 +} udma_channel_e; + +struct i2c_pending_transfer_s +{ + uint32_t pending_buffer; + uint32_t pending_size; + uint32_t pending_repeat; + uint32_t pending_repeat_size; + pi_i2c_xfer_flags_e flags; + int8_t device_id; + udma_channel_e channel; +}; + +struct i2c_cs_data_s +{ + uint8_t device_id; /*!< I2C interface ID. */ + uint8_t cs; /*!< Chip select i2c device. */ + uint16_t clk_div; /*!< Clock divider for the selected i2c chip. */ + uint32_t max_baudrate; /*!< Max baudrate for the selected i2c chip. */ + struct i2c_cs_data_s *next; /*!< Pointer to next i2c cs data struct. */ +}; + +struct i2c_itf_data_s +{ + /* Best to use only one queue since both RX & TX can be used at the same time. */ + struct pi_task *buf[2]; /*!< RX + TX */ + struct pi_task *fifo_head; /*!< Head of SW fifo waiting transfers. */ + struct pi_task *fifo_tail; /*!< Tail of SW fifo waiting transfers. */ + struct i2c_pending_transfer_s *pending; /*!< RX + TX. */ + uint32_t nb_open; /*!< Number of devices opened. */ + uint32_t i2c_cmd_index; /*!< Number of commands in i2c_cmd_seq. */ + /* pi_freq_cb_t i2c_freq_cb; /\*!< Callback associated to frequency changes. *\/ + */ + struct i2c_cs_data_s *cs_list; /*!< List of i2c associated to this itf. */ + uint32_t i2c_cmd_seq[__PI_I2C_CMD_BUFF_SIZE]; /*!< Command sequence. */ + uint8_t i2c_stop_send; /*!< Set if a stop cmd seq should be sent. */ + uint32_t i2c_stop_seq[__PI_I2C_STOP_CMD_SIZE]; /*!< Command STOP sequence. */ + uint8_t i2c_eot_send; /*!< Set if a eot cmd seq should be sent. */ + uint32_t *i2c_only_eot_seq; /*!< Only EOT sequence part of of STOP sequence */ + uint8_t device_id; /*!< I2C interface ID. */ + /* This variable is used to count number of events received to handle EoT sequence. */ + uint8_t nb_events; /*!< Number of events received. */ + pos_udma_channel_t *rx_channel; + pos_udma_channel_t *tx_channel; +}; + +/**================================================================================================ + ** GLOBAL VARIABLE + *================================================================================================**/ +static struct i2c_itf_data_s *g_i2c_itf_data[ARCHI_UDMA_NB_I2C] = {0}; +static PI_L2 int i2c_channel; +static PI_L2 pos_udma_channel_t i2c_rx_channel; +static PI_L2 pos_udma_channel_t i2c_tx_channel; + +/**================================================================================================ + ** PROTOTYPE FUNCTION + *================================================================================================**/ +/* Init i2c conf struct. */ +void __pi_i2c_conf_init(pi_i2c_conf_t *conf); + +/* Open i2c device. */ +int32_t __pi_i2c_open(struct pi_i2c_conf *conf, struct i2c_cs_data_s **device_data); + +/* Close i2c device. */ +void __pi_i2c_close(struct i2c_cs_data_s *device_data); + +/* Ioctl function. */ +void __pi_i2c_ioctl(struct i2c_cs_data_s *device_data, uint32_t cmd, void *arg); + +/* Copy in UDMA. */ +void __pi_i2c_copy(struct i2c_cs_data_s *cs_data, uint32_t l2_buff, uint32_t length, + pi_i2c_xfer_flags_e flags, udma_channel_e channel, struct pi_task *task); + +/* Scan i2c bus to detect connected devices. */ +int32_t __pi_i2c_detect(struct i2c_cs_data_s *cs_data, struct pi_i2c_conf *conf, uint8_t *rx_data, + struct pi_task *task); + +/* IRQ handler. */ +static void __pi_i2c_handler(void *arg); +static void __pi_i2c_tx_handler(int event, void *arg); +static void __pi_i2c_rx_handler(int event, void *arg); +static void __pi_i2c_eot_handler(int event, void *arg); +static void __pi_i2c_cmd_handler(int event, void *arg); +static void *__pi_i2c_cb_buf_delete(struct i2c_itf_data_s *driver_data); + +/* Clock divider. */ +static uint32_t __pi_i2c_clk_div_get(uint32_t baudrate); + +/* Add a cs_data to list of opened devices. */ +static void __pi_i2c_cs_data_add(struct i2c_itf_data_s *driver_data, struct i2c_cs_data_s *cs_data); + +/* Remove a cs_data from list of opened devices. */ +static void __pi_i2c_cs_data_remove(struct i2c_itf_data_s *driver_data, + struct i2c_cs_data_s *cs_data); + +/* Handle a pending transfer after end of previous part of transfer. */ +static void __pi_i2c_handle_pending_transfer(struct i2c_itf_data_s *driver_data); + +/* Send a stop command sequence. */ +static void __pi_i2c_send_stop_cmd(struct i2c_itf_data_s *driver_data); + +/* Send a only eot command sequence. */ +static void __pi_i2c_send_only_eot_cmd(struct i2c_itf_data_s *driver_data); + +/* Check if a HW UDMA slot is free. */ +static int32_t __pi_i2c_cb_buf_empty(struct i2c_itf_data_s *driver_data); + +/* Enqueue a new task for callback. Currently, there is only a single slot */ +static void __pi_i2c_cb_buf_enqueue(struct i2c_itf_data_s *driver_data, struct pi_task *task); + +/* Pop a task from callback buffer . */ +static struct pi_task *__pi_i2c_cb_buf_pop(struct i2c_itf_data_s *driver_data); + +/* Create a new callabck struct with transfer info then enqueue it in SW fifo. */ +static void __pi_i2c_task_fifo_enqueue(struct i2c_itf_data_s *driver_data, struct pi_task *task); + +/* Pop a callback struct containing a new transfer from SW fifo. */ +static struct pi_task *__pi_i2c_task_fifo_pop(struct i2c_itf_data_s *driver_data); + +/* Initiate and enqueue a read command sequence. */ +static void __pi_i2c_copy_exec_read(struct i2c_itf_data_s *driver_data, struct pi_task *task); + +/* Initiate and enqueue a write command sequence. */ +static void __pi_i2c_copy_exec_write(struct i2c_itf_data_s *driver_data, struct pi_task *task); + +/* Callback to execute when frequency changes. */ +static void __pi_i2c_freq_cb(void *args); + +static inline void __pi_i2c_enqueue_tx(uint32_t device_id, uint32_t l2buf, uint32_t size); +static inline void __pi_i2c_enqueue_rx(uint32_t device_id, uint32_t l2buf, uint32_t size); +static inline void __pi_i2c_enqueue_cmd(uint32_t device_id, uint32_t l2buf, uint32_t size); + +void __pi_i2c_wait_transfer(uint32_t device_id); +void __pi_init(void); +/**================================================================================================ + ** FUNCTION + *================================================================================================**/ + +void pi_i2c_conf_init(pi_i2c_conf_t *conf) +{ + __pi_i2c_conf_init(conf); +} + +void pi_i2c_conf_set_slave_addr(struct pi_i2c_conf *conf, uint16_t slave_addr, int8_t is_10_bits) +{ + conf->cs = slave_addr; + conf->is_10_bits = is_10_bits; +} + +int pi_i2c_open(struct pi_device *device) +{ + int32_t status = -1; + struct pi_i2c_conf *conf = (struct pi_i2c_conf *)device->config; + I2C_TRACE("Open device id=%d\n", conf->itf); + status = __pi_i2c_open(conf, (struct i2c_cs_data_s **)&(device->data)); + I2C_TRACE("Open status : %ld, driver data: %lx\n", status, + (struct i2c_cs_data_s *)device->data); + return status; +} + +void pi_i2c_close(struct pi_device *device) +{ + struct i2c_cs_data_s *device_data = (struct i2c_cs_data_s *)device->data; + if (device_data != NULL) + { + I2C_TRACE("Close device id=%d\n", device_data->device_id); + __pi_i2c_close(device_data); + device->data = NULL; + } +} + +void pi_i2c_ioctl(struct pi_device *device, uint32_t cmd, void *arg) +{ + struct i2c_cs_data_s *device_data = (struct i2c_cs_data_s *)device->data; + if (device_data != NULL) + { + I2C_TRACE("Ioctl command : %lx, arg %lx\n", cmd, arg); + __pi_i2c_ioctl(device_data, cmd, arg); + } +} + +int pi_i2c_read(struct pi_device *device, uint8_t *rx_buff, int length, pi_i2c_xfer_flags_e flags) +{ + int status = PI_OK; + pi_task_t task_block; +#if MUTEX + pi_task_block(&task_block); + pi_i2c_read_async(device, rx_buff, length, flags, &task_block); + pi_task_wait_on(&task_block); + pi_task_destroy(&task_block); +#else + pi_task_block_no_mutex(&task_block); + pi_i2c_read_async(device, rx_buff, length, flags, &task_block); + pi_task_wait_on_no_mutex(&task_block); +#endif + /* only some udma i2c peripherals support ack detection */ +#ifdef CONFIG_UDMA_I2C_ACK + struct i2c_cs_data_s *device_data = (struct i2c_cs_data_s *)device->data; + unsigned int udma_i2c_channel_base = hal_udma_channel_base(UDMA_CHANNEL_ID(ARCHI_UDMA_I2C_ID(device_data->device_id))); + uint32_t ack = pulp_read32(udma_i2c_channel_base+0x38); + if (ack) + status = PI_ERR_I2C_NACK; +#endif + + return status; +} + +void pi_i2c_read_async(struct pi_device *device, uint8_t *rx_buff, int length, + pi_i2c_xfer_flags_e flags, pi_task_t *task) +{ + struct i2c_cs_data_s *device_data = (struct i2c_cs_data_s *)device->data; + udma_channel_e channel = RX_CHANNEL; + I2C_TRACE("I2C(%d) : transfer %d %lx %ld %lx, task %lx\n", device_data->device_id, channel, + (uint32_t)rx_buff, length, flags, task); + __pi_i2c_copy(device_data, (uint32_t)rx_buff, length, flags, channel, task); +} + +int pi_i2c_write(struct pi_device *device, uint8_t *tx_data, int length, pi_i2c_xfer_flags_e flags) +{ + int status = PI_OK; + pi_task_t task_block; +#if MUTEX + pi_task_block(&task_block); + pi_i2c_write_async(device, tx_data, length, flags, &task_block); + pi_task_wait_on(&task_block); + pi_task_destroy(&task_block); +#else + pi_task_block_no_mutex(&task_block); + pi_i2c_write_async(device, tx_data, length, flags, &task_block); + pi_task_wait_on_no_mutex(&task_block); +#endif + /* only some udma i2c peripherals support ack detection */ +#ifdef CONFIG_UDMA_I2C_ACK + struct i2c_cs_data_s *device_data = (struct i2c_cs_data_s *)device->data; + unsigned int udma_i2c_channel_base = hal_udma_channel_base(UDMA_CHANNEL_ID(ARCHI_UDMA_I2C_ID(device_data->device_id))); + uint32_t ack = pulp_read32(udma_i2c_channel_base+0x38); + if (ack) + status = PI_ERR_I2C_NACK; +#endif + return status; +} + +void pi_i2c_write_async(struct pi_device *device, uint8_t *tx_data, int length, + pi_i2c_xfer_flags_e flags, pi_task_t *task) +{ + struct i2c_cs_data_s *device_data = (struct i2c_cs_data_s *)device->data; + udma_channel_e channel = COMMAND_CHANNEL; + I2C_TRACE("I2C(%d) : transfer %d %lx %ld %lx, task %lx\n", device_data->device_id, channel, + (uint32_t)tx_data, length, flags, task); + __pi_i2c_copy(device_data, (uint32_t)tx_data, length, flags, channel, task); +} + +int pi_i2c_get_request_status(pi_task_t *task) +{ + (void)task; + return PI_OK; +} + +int pi_i2c_detect(struct pi_device *device, struct pi_i2c_conf *conf, uint8_t *rx_data) +{ + int32_t status = -1; + struct i2c_cs_data_s *cs_data = (struct i2c_cs_data_s *)device->data; + pi_task_t task_block; + pi_task_block(&task_block); + I2C_TRACE("Search device at cs=%x\n", conf->cs); + int32_t res = __pi_i2c_detect(cs_data, conf, rx_data, &task_block); + pi_task_wait_on(&task_block); + pi_task_destroy(&task_block); + status = (*rx_data == 0x00) ? 0 : -1; + I2C_TRACE("Search device at cs=%x result=%x\n", conf->cs, status); + return status; +} + +static void __pi_i2c_handle_pending_transfer(struct i2c_itf_data_s *driver_data) +{ + struct i2c_pending_transfer_s *pending = driver_data->pending; + pending->pending_buffer += pending->pending_repeat; + pending->pending_repeat_size -= pending->pending_repeat; + pending->pending_size = pending->pending_repeat; + + if (pending->pending_repeat_size <= pending->pending_repeat) + { + pending->pending_repeat = 0; + pending->pending_size = pending->pending_repeat_size; + /* Stop bit at the end? */ + driver_data->i2c_stop_send = (pending->flags & PI_I2C_XFER_NO_STOP) ? 0 : 1; + } + /* Initiate next part of command sequence. */ + { + /* Data. */ + uint32_t index = 0; + driver_data->i2c_cmd_seq[index++] = (((uint32_t)I2C_CMD_RPT) << 24) | pending->pending_size; + driver_data->i2c_cmd_seq[index++] = (((uint32_t)I2C_CMD_WRB) << 24); + } + // hal_i2c_enqueue(device_id, driver_data->channel); + /* TODO: Renqueue next cmd! */ +} + +static void __pi_i2c_send_stop_cmd(struct i2c_itf_data_s *driver_data) +{ + I2C_TRACE("__pi_i2c_send_stop_cmd\n"); + driver_data->i2c_stop_send = 0; + driver_data->i2c_eot_send = 0; + __pi_i2c_enqueue_cmd(driver_data->device_id, (uint32_t)driver_data->i2c_stop_seq, (uint32_t)__PI_I2C_STOP_CMD_SIZE); +} + +static void __pi_i2c_send_only_eot_cmd(struct i2c_itf_data_s *driver_data) +{ + driver_data->i2c_eot_send = 0; + __pi_i2c_enqueue_cmd(driver_data->device_id, (uint32_t)driver_data->i2c_only_eot_seq, (uint32_t)__PI_I2C_ONLY_EOT_CMD_SIZE); +} + +static inline void __pi_irq_handle_end_of_task(pi_task_t *task) +{ + I2C_TRACE("__pi_irq_handle_end_of_task\n"); + switch (task->id) + { + case PI_TASK_NONE_ID: + pos_task_push_locked(task); + break; + case PI_TASK_CALLBACK_ID: + pi_task_push(task); + break; + default: + return; + } +} + +#ifdef CONFIG_UDMA_I2C_EOT +/* Some UDMA v2 peripherals support end of transfer signalling. In that case we + * signal the callback that we are done when we get this EOT information. The + * regular UDMA v2 says its done when its udma fifos are empty but this might + * not coincide with when the i2c signalling has finished. This is important + * when you try to detect slave ACK/NACKs. */ +static void __pi_i2c_eot_handler(int event, void *arg) +{ + I2C_TRACE("__pi_i2c_eot_handler\n"); + uint32_t evt = (uint32_t)event; + pos_udma_channel_t *channel = arg; + uint32_t periph_id = channel->base; + + struct i2c_itf_data_s *driver_data = g_i2c_itf_data[periph_id]; + + struct pi_task *task = __pi_i2c_cb_buf_pop(driver_data); + if (task) + __pi_irq_handle_end_of_task(task); + + task = __pi_i2c_task_fifo_pop(driver_data); + if (task) + { + /* Enqueue transfer in HW fifo. */ + if (task->data[3] == RX_CHANNEL) + { + __pi_i2c_copy_exec_read(driver_data, task); + } + else + { + __pi_i2c_copy_exec_write(driver_data, task); + } + } +} +#endif + +static void __pi_i2c_rx_handler(int event, void *arg) +{ + I2C_TRACE("rx event \n"); +} + +static void __pi_i2c_cmd_handler(int event, void *arg) +{ + //("__pi_i2c_cmd_handler\n"); + uint32_t evt = (uint32_t)event; + pos_udma_channel_t *channel = arg; + uint32_t periph_id = channel->base; + + struct i2c_itf_data_s *driver_data = g_i2c_itf_data[periph_id]; + /* + * In case of a read command sequence, TX ends first then wait on RX. + * Until then, no other transaction should occur. + */ + /* Pending transfer. */ + if (driver_data->pending->pending_repeat) + { + /* FIXME: not implemented */ + __pi_i2c_handle_pending_transfer(driver_data); + } + else if (driver_data->i2c_stop_send) + { + __pi_i2c_send_stop_cmd(driver_data); +#ifdef CONFIG_UDMA_I2C_EOT + } + else if (driver_data->i2c_eot_send) + { + __pi_i2c_send_only_eot_cmd(driver_data); +#else + } + else + { + struct pi_task *task = __pi_i2c_cb_buf_pop(driver_data); + if (task) + __pi_irq_handle_end_of_task(task); + + task = __pi_i2c_task_fifo_pop(driver_data); + if (task) + { + /* Enqueue transfer in HW fifo. */ + if (task->data[3] == RX_CHANNEL) + { + __pi_i2c_copy_exec_read(driver_data, task); + } + else + { + __pi_i2c_copy_exec_write(driver_data, task); + } + } +#endif + } +} + +static void __pi_i2c_tx_handler(int event, void *arg) +{ + I2C_TRACE("tx event \n"); +} + +static int32_t __pi_i2c_cb_buf_empty(struct i2c_itf_data_s *driver_data) +{ + return driver_data->buf[0] == NULL; +} + +static void __pi_i2c_cb_buf_enqueue(struct i2c_itf_data_s *driver_data, struct pi_task *task) +{ + uint32_t irq = hal_irq_disable(); + driver_data->buf[0] = task; + hal_irq_restore(irq); +} + +static struct pi_task *__pi_i2c_cb_buf_pop(struct i2c_itf_data_s *driver_data) +{ + uint32_t irq = hal_irq_disable(); + struct pi_task *task_to_return = NULL; + task_to_return = driver_data->buf[0]; + driver_data->buf[0] = NULL; + hal_irq_restore(irq); + return task_to_return; +} + +static void *__pi_i2c_cb_buf_delete(struct i2c_itf_data_s *driver_data) +{ + uint32_t irq = hal_irq_disable(); + /* Free the slot for another transfer. */ + driver_data->buf[0] = NULL; + hal_irq_restore(irq); +} + +static void __pi_i2c_task_fifo_enqueue(struct i2c_itf_data_s *driver_data, struct pi_task *task) +{ + uint32_t irq = hal_irq_disable(); + /* Enqueue transfer in SW fifo. */ + if (driver_data->fifo_head == NULL) + { + driver_data->fifo_head = task; + } + else + { + driver_data->fifo_tail->next = task; + } + driver_data->fifo_tail = task; + hal_irq_restore(irq); +} + +static struct pi_task *__pi_i2c_task_fifo_pop(struct i2c_itf_data_s *driver_data) +{ + struct pi_task *task_to_return = NULL; + uint32_t irq = hal_irq_disable(); + if (driver_data->fifo_head != NULL) + { + task_to_return = driver_data->fifo_head; + driver_data->fifo_head = driver_data->fifo_head->next; + } + hal_irq_restore(irq); + return task_to_return; +} + +static uint32_t __pi_i2c_clk_div_get(uint32_t i2c_freq) +{ + /* Clock divided by 4 in HW. */ + uint32_t freq = i2c_freq << 2; + uint32_t periph_freq = pi_freq_get(PI_FREQ_DOMAIN_PERIPH); + uint32_t div = (periph_freq + freq - 1) / freq; + /* Clock divider counts from 0 to clk_div value included. */ + if (div <= 1) + { + div = 0; + } + else + { + div -= 1; + } + if (div > 0xFFFF) + { + I2C_TRACE_ERR("Error computing clock divier : Fsoc=%ld, Fi2c=%ld\n", periph_freq, + i2c_freq); + return 0xFFFFFFFF; + } + return div; +} + +static inline void __pi_i2c_enqueue_tx(uint32_t device_id, uint32_t l2buf, uint32_t size) +{ + /* Enqueue l2 buffer & start transfer. */ + plp_udma_enqueue(UDMA_I2C_TX_ADDR(device_id), l2buf, size, (UDMA_CHANNEL_CFG_EN | UDMA_CHANNEL_CFG_SIZE_8)); +} + +static inline void __pi_i2c_enqueue_cmd(uint32_t device_id, uint32_t l2buf, uint32_t size) +{ + /* Enqueue l2 buffer & start transfer. */ + plp_udma_enqueue(UDMA_I2C_CMD_ADDR(device_id), l2buf, size * 4, (UDMA_CHANNEL_CFG_EN | UDMA_CHANNEL_CFG_SIZE_32)); +} + +static inline void __pi_i2c_enqueue_rx(uint32_t device_id, uint32_t l2buf, uint32_t size) +{ + /* Enqueue l2 buffer & start transfer. */ + plp_udma_enqueue(UDMA_I2C_DATA_ADDR(device_id), l2buf, size, (UDMA_CHANNEL_CFG_EN | UDMA_CHANNEL_CFG_SIZE_8)); +} + +static void __pi_i2c_copy_exec_read(struct i2c_itf_data_s *driver_data, struct pi_task *task) +{ + uint32_t index = 0, start_bit = 0, stop_bit = 0; + uint32_t buffer = task->data[0]; + uint32_t size = task->data[1]; + uint32_t flags = task->data[2]; + uint32_t channel = task->data[3]; + int i = 0; + int size_full = size + 3; + uint32_t buffer_to_send[size_full]; + struct i2c_cs_data_s *cs_data = (struct i2c_cs_data_s *)task->data[4]; + + if (size == 0) + return; + + /* Header. */ + + driver_data->i2c_cmd_seq[index++] = (((uint32_t)I2C_CMD_CFG) << 24) | ((cs_data->clk_div >> 8) & 0xFF) | (cs_data->clk_div & 0xFF); + driver_data->i2c_cmd_seq[index++] = (((uint32_t)I2C_CMD_START) << 24); + driver_data->i2c_cmd_seq[index++] = (((uint32_t)I2C_CMD_WRB) << 24) | (cs_data->cs | ADDRESS_READ); + + struct i2c_pending_transfer_s *pending = driver_data->pending; + if (size > (uint32_t)MAX_SIZE) + { + pending->pending_buffer = buffer; + pending->pending_repeat = (uint32_t)MAX_SIZE; + pending->pending_repeat_size = size; + // pending->device_id = driver_data->device_id; + pending->flags = flags; + pending->channel = channel; + size = (uint32_t)MAX_SIZE; + } + else + { + pending->pending_repeat = 0; + /* Stop bit at then end? */ + driver_data->i2c_stop_send = (flags & PI_I2C_XFER_NO_STOP) ? 0 : 1; + driver_data->i2c_eot_send = 1; + } + + /* Data. */ + if (size > 1) + { + for(index = 3; index < (size_full-1); index++) + { + driver_data->i2c_cmd_seq[index] = (((uint32_t)I2C_CMD_RD_ACK) << 24); + } + driver_data->i2c_cmd_seq[index++] = (((uint32_t)I2C_CMD_RD_NACK) << 24); + } + + /* Enqueue in HW fifo. */ + __pi_i2c_cb_buf_enqueue(driver_data, task); + + /* Open RX channel to receive data. */ + __pi_i2c_enqueue_rx(driver_data->device_id, buffer, size); + /* Transfer command. */ + __pi_i2c_enqueue_cmd(driver_data->device_id, (uint32_t)driver_data->i2c_cmd_seq, index); +} + +static void __pi_i2c_copy_exec_write(struct i2c_itf_data_s *driver_data, struct pi_task *task) +{ + uint32_t index = 0, start_bit = 0, stop_bit = 0; + uint32_t buffer = task->data[0]; + uint32_t size = task->data[1]; + uint32_t flags = task->data[2]; + uint32_t channel = task->data[3]; + uint32_t buffer_to_write[size]; + uint8_t *buffer_copy = (uint8_t *)task->data[0]; + uint32_t count = 0; + uint32_t i = 0; + struct i2c_cs_data_s *cs_data = (struct i2c_cs_data_s *)task->data[4]; + start_bit = flags & PI_I2C_XFER_NO_START; + + /* Header. */ + driver_data->i2c_cmd_seq[index++] = (((uint32_t)I2C_CMD_CFG) << 24) | ((cs_data->clk_div >> 8) & 0xFF) | (cs_data->clk_div & 0xFF); + if (!start_bit) + { + driver_data->i2c_cmd_seq[index++] = (((uint32_t)I2C_CMD_START) << 24); + driver_data->i2c_cmd_seq[index++] = (((uint32_t)I2C_CMD_WRB) << 24) | (cs_data->cs | ADDRESS_WRITE); + } + struct i2c_pending_transfer_s *pending = driver_data->pending; + if (size > (uint32_t)MAX_SIZE) + { + pending->pending_buffer = buffer; + pending->pending_repeat = (uint32_t)MAX_SIZE; + pending->pending_repeat_size = size; + // pending->device_id = driver_data->device_id; + pending->flags = flags; + pending->channel = channel; + size = (uint32_t)MAX_SIZE; + } + else + { + pending->pending_repeat = 0; + /* Stop bit at the end? */ + driver_data->i2c_stop_send = (flags & PI_I2C_XFER_NO_STOP) ? 0 : 1; + driver_data->i2c_eot_send = 1; + } + /* Data. */ + if (size > 0) + { + while (count < size) + { + buffer_to_write[count++] = (((uint32_t)I2C_CMD_WRB) << 24) | *(buffer_copy++); + } + } + + /* Enqueue in HW fifo. */ + __pi_i2c_cb_buf_enqueue(driver_data, task); + + /* Transfer header. */ + __pi_i2c_enqueue_cmd(driver_data->device_id, (uint32_t)driver_data->i2c_cmd_seq, index); + /* Transfer data. */ + if (size > 0) + __pi_i2c_enqueue_cmd(driver_data->device_id, (uint32_t)buffer_to_write, size); +} + +static void __pi_i2c_cs_data_add(struct i2c_itf_data_s *driver_data, struct i2c_cs_data_s *cs_data) +{ + struct i2c_cs_data_s *head; + head = cs_data; + head->next = driver_data->cs_list; + driver_data->cs_list = head; +} + +static void __pi_i2c_cs_data_remove(struct i2c_itf_data_s *driver_data, + struct i2c_cs_data_s *cs_data) +{ + int count=0; + struct i2c_cs_data_s *head = driver_data->cs_list; + struct i2c_cs_data_s *prev = driver_data->cs_list; + while ((head != NULL) && (head != cs_data)) + { + count++; + prev = head; + head = head->next; + } + if (head != NULL) + { + prev->next = head->next; + } + if(count==0){ + head=head->next; + driver_data->cs_list=head; + } +} + +void __pi_i2c_wait_transfer(uint32_t device_id) +{ + while (plp_udma_busy(UDMA_I2C_CMD_ADDR(device_id))) + ; +} + +static void __pi_i2c_freq_cb(void *args) +{ + uint32_t irq = hal_irq_disable(); + struct i2c_itf_data_s *driver_data = (struct i2c_itf_data_s *)args; + uint32_t device_id = driver_data->device_id; + struct i2c_cs_data_s *cs_data = driver_data->cs_list; + + /* Wait until current transfer is done. */ + __pi_i2c_wait_transfer(device_id); + + /* Update all clock div. */ + while (cs_data != NULL) + { + cs_data->clk_div = __pi_i2c_clk_div_get(cs_data->max_baudrate); + cs_data = cs_data->next; + } + hal_irq_restore(irq); +} + +static int32_t __pi_i2c_baudrate_set(struct i2c_cs_data_s *cs_data, uint32_t new_baudrate) +{ + cs_data->max_baudrate = new_baudrate; + uint32_t clk_div = __pi_i2c_clk_div_get(cs_data->max_baudrate); + if (clk_div == 0xFFFFFFFF) + { + I2C_TRACE_ERR("I2C(%d) : error computing clock divider !\n", cs_data->device_id); + return -14; + } + cs_data->clk_div = clk_div; + return 0; +} + +void __pi_i2c_conf_init(pi_i2c_conf_t *conf) +{ + conf->device = PI_DEVICE_I2C_TYPE; + conf->cs = 0; + conf->max_baudrate = 200000; + conf->itf = 0; + conf->wait_cycles = 1; + conf->ts_ch = 0; + conf->ts_evt_id = 0; +} + +void pos_i2c_handle_copy(int event, void *arg) +{ + I2C_TRACE("event %d\n", event); + pos_udma_channel_t *channel = arg; + pi_task_t *pending_0 = channel->pendings[0]; + uint8_t type_channel = pending_0->data[3]; + if (event == SOC_EVENT_UDMA_I2C_RX(channel->base)) + { + __pi_i2c_rx_handler(event, channel); + } + else if (event == SOC_EVENT_UDMA_I2C_TX(channel->base)) + { + __pi_i2c_tx_handler(event, channel); + } + else if (event == SOC_EVENT_UDMA_I2C_CMD(channel->base)) + { + __pi_i2c_cmd_handler(event, channel); + } + else if (event == SOC_EVENT_UDMA_I2C_EOT(channel->base)) + { + __pi_i2c_eot_handler(event, channel); + } + else + { + exit(0); + } +} + +void pos_i2c_create_channel(pos_udma_channel_t *channel, int channel_id, int soc_event) +{ + pos_soc_event_register_callback(soc_event, pos_i2c_handle_copy, (void *)channel); + channel->pendings[0] = NULL; + channel->pendings[1] = NULL; + channel->waitings_first = NULL; + channel->base = 0; +} + +int32_t __pi_i2c_open(struct pi_i2c_conf *conf, struct i2c_cs_data_s **device_data) +{ + if ((uint8_t)ARCHI_UDMA_NB_I2C < conf->itf) + { + I2C_TRACE_ERR("Error : wrong interface ID, itf=%d !\n", conf->itf); + return -11; + } + + unsigned char i2c_id = conf->itf; + int periph_id = ARCHI_UDMA_I2C_ID(i2c_id); + i2c_channel = UDMA_EVENT_ID(periph_id); + + struct i2c_itf_data_s *driver_data = g_i2c_itf_data[conf->itf]; + if (driver_data == NULL) + { + /* Allocate driver data. */ + driver_data = (struct i2c_itf_data_s *)pi_l2_malloc(sizeof(struct i2c_itf_data_s)); + if (driver_data == NULL) + { + I2C_TRACE_ERR("Driver data alloc failed !\n"); + return -12; + } + driver_data->buf[0] = NULL; + driver_data->fifo_head = NULL; + driver_data->fifo_tail = NULL; + driver_data->pending = NULL; + driver_data->nb_open = 0; + driver_data->i2c_cmd_index = 0; + driver_data->cs_list = NULL; + for (uint32_t i = 0; i < (uint32_t)__PI_I2C_CMD_BUFF_SIZE; i++) + { + driver_data->i2c_cmd_seq[i] = 0; + } + driver_data->i2c_stop_send = 0; + driver_data->i2c_eot_send = 0; + /* Set up i2c cmd stop sequence. */ + driver_data->i2c_stop_seq[0] = (((uint32_t)I2C_CMD_STOP) << 24); + driver_data->i2c_stop_seq[1] = (((uint32_t)I2C_CMD_WAIT) << 24) | (conf->wait_cycles > 0xff ? 0xff : conf->wait_cycles); +#ifdef CONFIG_UDMA_I2C_EOT + driver_data->i2c_stop_seq[2] = (((uint32_t)I2C_CMD_EOT) << 24); + driver_data->i2c_only_eot_seq = &driver_data->i2c_stop_seq[1]; +#endif + driver_data->nb_events = 0; + driver_data->device_id = conf->itf; + /* TODO: Attach freq callback. */ + /* pi_freq_callback_init(&(driver_data->i2c_freq_cb), __pi_i2c_freq_cb, + * driver_data); */ + /* pi_freq_callback_add(&(driver_data->i2c_freq_cb)); */ + g_i2c_itf_data[conf->itf] = driver_data; + + /* Set handlers. */ + /* Enable SOC events propagation to FC. */ + + /* Disable UDMA CG. */ + plp_udma_cg_set(plp_udma_cg_get() | (1 << ARCHI_UDMA_I2C_ID(conf->itf))); + + driver_data->rx_channel = &i2c_rx_channel; + driver_data->tx_channel = &i2c_tx_channel; + + if (driver_data->nb_open == 0) + { + pos_i2c_create_channel(driver_data->rx_channel, UDMA_CHANNEL_ID(ARCHI_UDMA_I2C_ID(conf->itf)), SOC_EVENT_UDMA_I2C_RX(driver_data->device_id)); + pos_i2c_create_channel(driver_data->tx_channel, UDMA_CHANNEL_ID(ARCHI_UDMA_I2C_ID(conf->itf)) + 1, SOC_EVENT_UDMA_I2C_CMD(driver_data->device_id)); +#ifdef CONFIG_UDMA_I2C_EOT + pos_i2c_create_channel(driver_data->tx_channel, UDMA_CHANNEL_ID(ARCHI_UDMA_I2C_ID(conf->itf)) + 2, SOC_EVENT_UDMA_I2C_EOT(driver_data->device_id)); +#endif + driver_data->rx_channel->base = i2c_id; // way to save me the spi interface which is associated with the channel + driver_data->tx_channel->base = i2c_id; // way to save me the spi interface which is associated with the channel + } + + soc_eu_fcEventMask_setEvent(SOC_EVENT_UDMA_I2C_RX(driver_data->device_id)); + soc_eu_fcEventMask_setEvent(SOC_EVENT_UDMA_I2C_CMD(driver_data->device_id)); +#ifdef CONFIG_UDMA_I2C_EOT + soc_eu_fcEventMask_setEvent(SOC_EVENT_UDMA_I2C_EOT(driver_data->device_id)); +#endif + I2C_TRACE("I2C(%d) : driver data init done.\n", driver_data->device_id); + } + + struct i2c_cs_data_s *cs_data = + (struct i2c_cs_data_s *)pi_l2_malloc(sizeof(struct i2c_cs_data_s)); + if (cs_data == NULL) + { + I2C_TRACE_ERR("I2C(%ld) : cs=%d, cs_data alloc failed !\n", driver_data->device_id, + conf->cs); + return -13; + } + cs_data->device_id = conf->itf; + cs_data->cs = conf->cs; + cs_data->max_baudrate = conf->max_baudrate; + uint32_t clk_div = __pi_i2c_clk_div_get(cs_data->max_baudrate); + if (clk_div == 0xFFFFFFFF) + { + pi_l2_free(cs_data, sizeof(struct i2c_cs_data_s)); + I2C_TRACE_ERR("I2C(%d) : error computing clock divider !\n", conf->itf); + return -14; + } + cs_data->clk_div = clk_div; + cs_data->next = NULL; + __pi_i2c_cs_data_add(driver_data, cs_data); + driver_data->nb_open++; + I2C_TRACE("I2C(%d) : opened %ld time(s).\n", driver_data->device_id, driver_data->nb_open); + *device_data = cs_data; + return 0; +} + +void __pi_i2c_close(struct i2c_cs_data_s *device_data) +{ + struct i2c_itf_data_s *driver_data = g_i2c_itf_data[device_data->device_id]; + driver_data->nb_open--; + I2C_TRACE("I2C(%d) : number of opened devices %ld.\n", driver_data->device_id, + driver_data->nb_open); + if (driver_data->nb_open == 0) + { + I2C_TRACE("I2C(%d) : closing interface.\n", driver_data->device_id); + + /* Clear handlers. */ + /* Disable SOC events propagation to FC. */ + soc_eu_fcEventMask_clearEvent(SOC_EVENT_UDMA_I2C_RX(driver_data->device_id)); + soc_eu_fcEventMask_clearEvent(SOC_EVENT_UDMA_I2C_EOT(driver_data->device_id)); + soc_eu_fcEventMask_clearEvent(SOC_EVENT_UDMA_I2C_CMD(driver_data->device_id)); + + /* Enable UDMA CG. */ + plp_udma_cg_set(plp_udma_cg_get() & ~(1 << ARCHI_UDMA_I2C_ID(driver_data->device_id))); + + /* Free allocated struct. */ + pi_l2_free(driver_data->pending, sizeof(struct i2c_pending_transfer_s)); + pi_l2_free(driver_data, sizeof(struct i2c_itf_data_s)); + g_i2c_itf_data[device_data->device_id] = NULL; + } + __pi_i2c_cs_data_remove(driver_data, device_data); + pi_l2_free(device_data, sizeof(struct i2c_cs_data_s)); +} + +void __pi_i2c_ioctl(struct i2c_cs_data_s *device_data, uint32_t cmd, void *arg) +{ + switch (cmd) + { + case PI_I2C_CTRL_SET_MAX_BAUDRATE: + __pi_i2c_baudrate_set(device_data, (uint32_t)arg); + break; + + default: + break; + } + return; +} + +void __pi_i2c_copy(struct i2c_cs_data_s *cs_data, uint32_t l2_buff, uint32_t length, + pi_i2c_xfer_flags_e flags, udma_channel_e channel, struct pi_task *task) +{ + uint32_t irq = hal_irq_disable(); + task->data[0] = l2_buff; + task->data[1] = length; + task->data[2] = flags; + task->data[3] = channel; + task->data[4] = (uint32_t)cs_data; + task->id = PI_TASK_NONE_ID; + task->next = NULL; + struct i2c_itf_data_s *driver_data = g_i2c_itf_data[cs_data->device_id]; + int32_t slot_rxtx = __pi_i2c_cb_buf_empty(driver_data); + /* Both slots should be empty to start a new read transfer. When enqueueing + * a new read transfer, RX should be opened first then TX. So if RX is already + * in use, then wait for it to finish. */ + if (slot_rxtx == 0) + { + /* Enqueue transfer in SW fifo. */ + I2C_TRACE("I2C(%d) : enqueue transfer in SW fifo : channel %d task %lx.\n", + driver_data->device_id, task->data[3], task); + __pi_i2c_task_fifo_enqueue(driver_data, task); + } + else + { + /* Enqueue transfer in HW fifo. */ + I2C_TRACE("I2C(%d) : enqueue transfer in HW fifo : channel %d task %lx.\n", + driver_data->device_id, task->data[3], task); + if (task->data[3] == RX_CHANNEL) + { + __pi_i2c_copy_exec_read(driver_data, task); + } + else + { + __pi_i2c_copy_exec_write(driver_data, task); + } + } + hal_irq_restore(irq); +} + +int32_t __pi_i2c_detect(struct i2c_cs_data_s *cs_data, struct pi_i2c_conf *conf, uint8_t *rx_data, struct pi_task *task) +{ + uint32_t irq = hal_irq_disable(); + if (cs_data->device_id != conf->itf) + { + I2C_TRACE_ERR("I2C(%d) : error wrong interfaces %d - %d !\n", cs_data->device_id, + conf->itf); + hal_irq_restore(irq); + return -11; + } + struct i2c_itf_data_s *driver_data = g_i2c_itf_data[cs_data->device_id]; + uint32_t clk_div = __pi_i2c_clk_div_get(conf->max_baudrate); + if (clk_div == 0xFFFFFFFF) + { + I2C_TRACE_ERR("I2C(%d) : error computing clock divider !\n", conf->itf); + hal_irq_restore(irq); + return -12; + } + uint16_t clkdiv = clk_div; + + task->next = NULL; + + uint32_t index = 0; + uint32_t buffer = (uint32_t)rx_data; + uint32_t size = 1; + + /* Header. */ + driver_data->i2c_cmd_seq[index++] = (((uint32_t)I2C_CMD_CFG) << 24) | ((clkdiv >> 8) & 0xFF) | (clkdiv & 0xFF); + driver_data->i2c_cmd_seq[index++] = (((uint32_t)I2C_CMD_START) << 24); + driver_data->i2c_cmd_seq[index++] = (((uint32_t)I2C_CMD_WRB) << 24) | (conf->cs | ADDRESS_READ); + + struct i2c_pending_transfer_s *pending = driver_data->pending; + pending->pending_repeat = 0; + /* Stop bit at then end? */ + driver_data->i2c_stop_send = 1; + driver_data->i2c_eot_send = 1; + + driver_data->i2c_cmd_seq[index++] = (((uint32_t)I2C_CMD_RD_NACK) << 24); + + /* Enqueue in HW fifo. */ + __pi_i2c_cb_buf_enqueue(driver_data, task); + + /* Open RX channel to receive data. */ + __pi_i2c_enqueue_rx(driver_data->device_id, buffer, size); + /* Transfer command. */ + __pi_i2c_enqueue_cmd(driver_data->device_id, (uint32_t)driver_data->i2c_cmd_seq, index); + + hal_irq_restore(irq); + return 0; +} \ No newline at end of file diff --git a/rtos/pulpos/pulp/drivers/i2c/include/abstraction_layer_i2c.h b/rtos/pulpos/pulp/drivers/i2c/include/abstraction_layer_i2c.h new file mode 100644 index 00000000..004c33b2 --- /dev/null +++ b/rtos/pulpos/pulp/drivers/i2c/include/abstraction_layer_i2c.h @@ -0,0 +1,101 @@ +/* + * Copyright 2020 GreenWaves Technologies + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + */ +/**----------------------------------------------------------------------------------------------------------------------- + * ? ABOUT + * @author : Orlando Nico, GreenWaves Technologies, Robert Balas + * @email : nico.orlando@studio.unibo.it, balasr@iis.ee.ethz.ch + * @repo : pulp-sdk/rtos/pulpos/pulp/drivers/i2c/include + * @createdOn : /01/2022 + * @description : PulpOS + * The driver was tested on a VIP flash memory in RTL, where it was done one + * transfer at a time. + * Multiple concurrent transfers have not been tested. I mean using multiple + * I2C interfaces that do transfers at the same time. + *-----------------------------------------------------------------------------------------------------------------------**/ + +/**================================================================================================ + ** INCLUDE + *================================================================================================**/ +#include "common_i2c.h" + +/**================================================================================================ + ** DEFINE + *================================================================================================**/ +/* I2C */ +/* Events offsets. */ +#define UDMA_EVENT_OFFSET_RX (0) +#define UDMA_EVENT_OFFSET_TX (1) +#define UDMA_EVENT_OFFSET_CMD (2) +#define UDMA_EVENT_OFFSET_EOT (3) + +#define MUTEX 1 + +/* Number of the interrupt to be obtained based on the number of the interface */ +#define SOC_EVENT_UDMA_I2C_RX(id) \ + ((ARCHI_UDMA_I2C_ID(id) << ARCHI_SOC_EVENT_UDMA_NB_CHANNEL_EVT_LOG2) + \ + UDMA_EVENT_OFFSET_RX) +#define SOC_EVENT_UDMA_I2C_TX(id) \ + ((ARCHI_UDMA_I2C_ID(id) << ARCHI_SOC_EVENT_UDMA_NB_CHANNEL_EVT_LOG2) + \ + UDMA_EVENT_OFFSET_TX) +#define SOC_EVENT_UDMA_I2C_CMD(id) \ + ((ARCHI_UDMA_I2C_ID(id) << ARCHI_SOC_EVENT_UDMA_NB_CHANNEL_EVT_LOG2) + \ + UDMA_EVENT_OFFSET_CMD) +#define SOC_EVENT_UDMA_I2C_EOT(id) \ + ((ARCHI_UDMA_I2C_ID(id) << ARCHI_SOC_EVENT_UDMA_NB_CHANNEL_EVT_LOG2) + \ + UDMA_EVENT_OFFSET_EOT) +/**================================================================================================ + ** STRUCT + *================================================================================================**/ + +/**================================================================================================ + ** PROTOTYPE FUNCTION + *================================================================================================**/ +/* IRQ handler for tx event */ +void __pi_i2c_tx_handler(int event, void *arg); +/* IRQ handler for rx event */ +void __pi_i2c_rx_handler(int event, void *arg); +/* IRQ handler for eot event */ +void __pi_i2c_eot_handler(int event, void *arg); +/* IRQ handler for cmd event */ +void __pi_i2c_cmd_handler(int event, void *arg); +/* Free a task */ +void __pi_irq_handle_end_of_task(pi_task_t *task); +/* Copy in UDMA. */ +void __pi_i2c_copy(struct i2c_cs_data_s *cs_data, uint32_t l2_buff, uint32_t length, pi_i2c_xfer_flags_e flags, udma_channel_e channel, struct pi_task *task); +/* I create a channel to use uDMA's Tx and RX buffer */ +void pos_i2c_create_channel(pos_udma_channel_t *channel, int channel_id, int soc_event); +/* Open i2c device. */ +int32_t __pi_i2c_open(struct pi_i2c_conf *conf, struct i2c_cs_data_s **device_data); +/* Close i2c device. */ +void __pi_i2c_close(struct i2c_cs_data_s *device_data); +/* API to use the plp_udma_enqueue for tx */ +void __pi_i2c_enqueue_tx(uint32_t device_id, uint32_t l2buf, uint32_t size); +/* API to use the plp_udma_enqueue for rx */ +void __pi_i2c_enqueue_rx(uint32_t device_id, uint32_t l2buf, uint32_t size); +/* API to use the plp_udma_enqueue for cmd */ +void __pi_i2c_enqueue_cmd(uint32_t device_id, uint32_t l2buf, uint32_t size); +/* Initiate and enqueue a read command sequence. */ +void __pi_i2c_copy_exec_read(struct i2c_itf_data_s *driver_data, struct pi_task *task); +/* Initiate and enqueue a write command sequence. */ +void __pi_i2c_copy_exec_write(struct i2c_itf_data_s *driver_data, struct pi_task *task); +/* Send a eot and stop command sequence. */ +void __pi_i2c_send_stop_cmd(struct i2c_itf_data_s *driver_data); +/* Send a only eot command sequence. */ +void __pi_i2c_send_only_eot_cmd(struct i2c_itf_data_s *driver_data); +/* Scan i2c bus to detect connected devices. */ +int32_t __pi_i2c_detect(struct i2c_cs_data_s *cs_data, struct pi_i2c_conf *conf, uint8_t *rx_data, struct pi_task *task); \ No newline at end of file diff --git a/rtos/pulpos/pulp/drivers/i2c/include/common_i2c.h b/rtos/pulpos/pulp/drivers/i2c/include/common_i2c.h new file mode 100644 index 00000000..f6379450 --- /dev/null +++ b/rtos/pulpos/pulp/drivers/i2c/include/common_i2c.h @@ -0,0 +1,179 @@ +/* + * Copyright 2020 GreenWaves Technologies + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + */ +/**----------------------------------------------------------------------------------------------------------------------- + * ? ABOUT + * @author : Orlando Nico, GreenWaves Technologies, Robert Balas + * @email : nico.orlando@studio.unibo.it, balasr@iis.ee.ethz.ch + * @repo : freertos/drivers or pulp-sdk/rtos/pulpos/pulp/drivers/i2c/include + * @createdOn : /01/2022 + * @description : The driver was tested on a VIP flash memory in RTL, where it was done one + * transfer at a time. + * Multiple concurrent transfers have not been tested. I mean using multiple + * I2C interfaces that do transfers at the same time. + *-----------------------------------------------------------------------------------------------------------------------**/ + +/**================================================================================================ + ** INCLUDE + *================================================================================================**/ +#ifdef USE_PULPOS_TEST +#include "pmsis.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#endif + + +#ifdef USE_FREERTOS_TEST +#include "pmsis_types.h" +#include "pmsis_task.h" +#include "implementation_specific_defines.h" +#include "i2c.h" +#include "udma.h" +#include "udma_i2c.h" +#include "pi_errno.h" +#include "udma.h" +#include "pmsis_task.h" +#include "fc_event.h" +#include "freq.h" +#include "debug.h" +#endif + +/**================================================================================================ + ** DEFINE + *================================================================================================**/ +#ifdef USE_PULPOS_TEST +//function to enable or disable prints +#if defined(TRACE_I2C) +#define I2C_TRACE printf +#define I2C_TRACE_ERR printf +#else +#define I2C_TRACE(...) ((void) 0) +#define I2C_TRACE_ERR(...) ((void) 0) +#endif /* TRACE_I2C */ +#endif + +/* Length of i2c cmd buffer. */ +#define __PI_I2C_CMD_BUFF_SIZE (256) +/* Lenght of i2c stop command sequence. */ +#define __PI_I2C_STOP_CMD_SIZE (3) +/* Lenght of i2c eot subset of stop command sequence. */ +#define __PI_I2C_ONLY_EOT_CMD_SIZE (3) + +/* Defines for read & write adress access. */ +#define ADDRESS_WRITE 0x0 +#define ADDRESS_READ 0x1 + +/* Max length of a i2c request/data buffer. */ +#define MAX_SIZE (0xFF) + +/**================================================================================================ + ** STRUCT + *================================================================================================**/ +#ifdef USE_PULPOS_TEST +typedef enum +{ + RX_CHANNEL = 0, + TX_CHANNEL = 1, + COMMAND_CHANNEL = 2 +} udma_channel_e; +#endif + +struct i2c_pending_transfer_s { + uint32_t pending_buffer; + uint32_t pending_size; + uint32_t pending_repeat; + uint32_t pending_repeat_size; + pi_i2c_xfer_flags_e flags; + int8_t device_id; + udma_channel_e channel; +}; + +struct i2c_cs_data_s { + uint8_t device_id; /*!< I2C interface ID. */ + uint8_t cs; /*!< Chip select i2c device. */ + uint16_t clk_div; /*!< Clock divider for the selected i2c chip. */ + uint32_t max_baudrate; /*!< Max baudrate for the selected i2c chip. */ + struct i2c_cs_data_s *next; /*!< Pointer to next i2c cs data struct. */ +}; + +struct i2c_itf_data_s { + /* Best to use only one queue since both RX & TX can be used at the same time. */ + struct pi_task *buf[2]; /*!< RX + TX */ + struct pi_task *fifo_head; /*!< Head of SW fifo waiting transfers. */ + struct pi_task *fifo_tail; /*!< Tail of SW fifo waiting transfers. */ + struct i2c_pending_transfer_s *pending; /*!< RX + TX. */ + uint32_t nb_open; /*!< Number of devices opened. */ + uint32_t i2c_cmd_index; /*!< Number of commands in i2c_cmd_seq. */ + /* pi_freq_cb_t i2c_freq_cb; /\*!< Callback associated to frequency changes. *\/ + */ + struct i2c_cs_data_s *cs_list; /*!< List of i2c associated to this itf. */ + uint32_t i2c_cmd_seq[__PI_I2C_CMD_BUFF_SIZE]; /*!< Command sequence. */ + uint8_t i2c_stop_send; /*!< Set if a stop cmd seq should be sent. */ + uint32_t i2c_stop_seq[__PI_I2C_STOP_CMD_SIZE]; /*!< Command STOP sequence. */ + uint8_t i2c_eot_send; /*!< Set if a eot cmd seq should be sent. */ + uint32_t *i2c_only_eot_seq; /*!< Only EOT sequence part of of STOP sequence */ + uint8_t device_id; /*!< I2C interface ID. */ + /* This variable is used to count number of events received to handle EoT sequence. */ + uint8_t nb_events; /*!< Number of events received. */ +#ifdef USE_PULPOS_TEST + pos_udma_channel_t *rx_channel; + pos_udma_channel_t *tx_channel; +#endif +}; + + +/**================================================================================================ + ** PROTOTYPE FUNCTION + *================================================================================================**/ +/* function that deactive interrupts for freertos or pulpos */ +uint32_t deactive_irq_i2c(void); +/* function that triggers interrupts for freertos or pulpos */ +void active_irq_i2c(uint32_t irq); +/* Handle a pending transfer after end of previous part of transfer. */ +void __pi_i2c_handle_pending_transfer(struct i2c_itf_data_s *driver_data); +/* Check if a HW UDMA slot is free. */ +int32_t __pi_i2c_cb_buf_empty(struct i2c_itf_data_s *driver_data); +/* Enqueue a new task for callback. Currently, there is only a single slot */ +void __pi_i2c_cb_buf_enqueue(struct i2c_itf_data_s *driver_data, struct pi_task *task); +/* Pop a task from callback buffer . */ +struct pi_task *__pi_i2c_cb_buf_pop(struct i2c_itf_data_s *driver_data); +/* Create a new callabck struct with transfer info then enqueue it in SW fifo. */ +void __pi_i2c_task_fifo_enqueue(struct i2c_itf_data_s *driver_data, struct pi_task *task); +/* Pop a callback struct containing a new transfer from SW fifo. */ +struct pi_task *__pi_i2c_task_fifo_pop(struct i2c_itf_data_s *driver_data); +/* Clock divider. */ +uint32_t __pi_i2c_clk_div_get(uint32_t baudrate); +/* Add a cs_data to list of opened devices. */ +void __pi_i2c_cs_data_add(struct i2c_itf_data_s *driver_data, struct i2c_cs_data_s *cs_data); +/* Remove a cs_data from list of opened devices. */ +void __pi_i2c_cs_data_remove(struct i2c_itf_data_s *driver_data, struct i2c_cs_data_s *cs_data); +/* Callback to execute when frequency changes. */ +void __pi_i2c_freq_cb(void *args); +/* Ioctl function. */ +void __pi_i2c_ioctl(struct i2c_cs_data_s *device_data, uint32_t cmd, void *arg); +int32_t __pi_i2c_baudrate_set(struct i2c_cs_data_s *cs_data, uint32_t new_baudrate); +/* Init i2c conf struct. */ +void __pi_i2c_conf_init(pi_i2c_conf_t *conf); +void __pi_i2c_wait_transfer(uint32_t device_id); + diff --git a/rtos/pulpos/pulp/drivers/i2c/src/abstraction_layer_i2c.c b/rtos/pulpos/pulp/drivers/i2c/src/abstraction_layer_i2c.c new file mode 100644 index 00000000..52821c45 --- /dev/null +++ b/rtos/pulpos/pulp/drivers/i2c/src/abstraction_layer_i2c.c @@ -0,0 +1,566 @@ +/* + * Copyright 2020 GreenWaves Technologies + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + */ +/**----------------------------------------------------------------------------------------------------------------------- + * ? ABOUT + * @author : Orlando Nico, GreenWaves Technologies, Robert Balas + * @email : nico.orlando@studio.unibo.it, balasr@iis.ee.ethz.ch + * @repo : pulp-sdk/rtos/pulpos/pulp/drivers/i2c/src + * @createdOn : /01/2022 + * @description : PULP-OS + * The driver was tested on a VIP flash memory in RTL, where it was done one + * transfer at a time. + * Multiple concurrent transfers have not been tested. I mean using multiple + * I2C interfaces that do transfers at the same time. + *-----------------------------------------------------------------------------------------------------------------------**/ + +/**================================================================================================ + ** INCLUDE + *================================================================================================**/ +#include "abstraction_layer_i2c.h" +/**================================================================================================ + ** GLOBAL VARIABLE + *================================================================================================**/ +struct i2c_itf_data_s *g_i2c_itf_data[ARCHI_UDMA_NB_I2C] = {0}; +PI_L2 int i2c_channel; +PI_L2 pos_udma_channel_t i2c_rx_channel; +PI_L2 pos_udma_channel_t i2c_tx_channel; + +/**================================================================================================ + ** FUNCTION + *================================================================================================**/ +#ifdef CONFIG_UDMA_I2C_EOT +/* Some UDMA v2 peripherals support end of transfer signalling. In that case we + * signal the callback that we are done when we get this EOT information. The + * regular UDMA v2 says its done when its udma fifos are empty but this might + * not coincide with when the i2c signalling has finished. This is important + * when you try to detect slave ACK/NACKs. */ +void __pi_i2c_eot_handler(int event, void *arg) +{ + I2C_TRACE("__pi_i2c_eot_handler\n"); + uint32_t evt = (uint32_t)event; + pos_udma_channel_t *channel = arg; + uint32_t periph_id = channel->base; + + struct i2c_itf_data_s *driver_data = g_i2c_itf_data[periph_id]; + + struct pi_task *task = __pi_i2c_cb_buf_pop(driver_data); + if (task) + __pi_irq_handle_end_of_task(task); + + task = __pi_i2c_task_fifo_pop(driver_data); + if (task) + { + /* Enqueue transfer in HW fifo. */ + if (task->data[3] == RX_CHANNEL) + { + __pi_i2c_copy_exec_read(driver_data, task); + } + else + { + __pi_i2c_copy_exec_write(driver_data, task); + } + } +} +#endif + +void __pi_i2c_rx_handler(int event, void *arg) +{ + I2C_TRACE("rx event \n"); +} + +void __pi_i2c_cmd_handler(int event, void *arg) +{ + //("__pi_i2c_cmd_handler\n"); + uint32_t evt = (uint32_t)event; + pos_udma_channel_t *channel = arg; + uint32_t periph_id = channel->base; + + struct i2c_itf_data_s *driver_data = g_i2c_itf_data[periph_id]; + /* + * In case of a read command sequence, TX ends first then wait on RX. + * Until then, no other transaction should occur. + */ + /* Pending transfer. */ + if (driver_data->pending->pending_repeat) + { + /* FIXME: not implemented */ + __pi_i2c_handle_pending_transfer(driver_data); + } + else if (driver_data->i2c_stop_send) + { + __pi_i2c_send_stop_cmd(driver_data); +#ifdef CONFIG_UDMA_I2C_EOT + } + else if (driver_data->i2c_eot_send) + { + __pi_i2c_send_only_eot_cmd(driver_data); +#else + } + else + { + struct pi_task *task = __pi_i2c_cb_buf_pop(driver_data); + if (task) + __pi_irq_handle_end_of_task(task); + + task = __pi_i2c_task_fifo_pop(driver_data); + if (task) + { + /* Enqueue transfer in HW fifo. */ + if (task->data[3] == RX_CHANNEL) + { + __pi_i2c_copy_exec_read(driver_data, task); + } + else + { + __pi_i2c_copy_exec_write(driver_data, task); + } + } +#endif + } +} + +void __pi_i2c_tx_handler(int event, void *arg) +{ + I2C_TRACE("tx event \n"); +} + +void __pi_irq_handle_end_of_task(pi_task_t *task) +{ + I2C_TRACE("__pi_irq_handle_end_of_task\n"); + switch (task->id) + { + case PI_TASK_NONE_ID: + pos_task_push_locked(task); + break; + case PI_TASK_CALLBACK_ID: + pi_task_push(task); + break; + default: + return; + } +} + +void pos_i2c_handle_copy(int event, void *arg) +{ + I2C_TRACE("event %d\n", event); + pos_udma_channel_t *channel = arg; + pi_task_t *pending_0 = channel->pendings[0]; + uint8_t type_channel = pending_0->data[3]; + if (event == SOC_EVENT_UDMA_I2C_RX(channel->base)) + { + __pi_i2c_rx_handler(event, channel); + } + else if (event == SOC_EVENT_UDMA_I2C_TX(channel->base)) + { + __pi_i2c_tx_handler(event, channel); + } + else if (event == SOC_EVENT_UDMA_I2C_CMD(channel->base)) + { + __pi_i2c_cmd_handler(event, channel); + } + else if (event == SOC_EVENT_UDMA_I2C_EOT(channel->base)) + { + __pi_i2c_eot_handler(event, channel); + } + else + { + exit(0); + } +} + +void pos_i2c_create_channel(pos_udma_channel_t *channel, int channel_id, int soc_event) +{ + pos_soc_event_register_callback(soc_event, pos_i2c_handle_copy, (void *)channel); + channel->pendings[0] = NULL; + channel->pendings[1] = NULL; + channel->waitings_first = NULL; + channel->base = 0; +} + +int32_t __pi_i2c_open(struct pi_i2c_conf *conf, struct i2c_cs_data_s **device_data) +{ + if ((uint8_t)ARCHI_UDMA_NB_I2C < conf->itf) + { + I2C_TRACE_ERR("Error : wrong interface ID, itf=%d !\n", conf->itf); + return -11; + } + + unsigned char i2c_id = conf->itf; + int periph_id = ARCHI_UDMA_I2C_ID(i2c_id); + i2c_channel = UDMA_EVENT_ID(periph_id); + + struct i2c_itf_data_s *driver_data = g_i2c_itf_data[conf->itf]; + if (driver_data == NULL) + { + /* Allocate driver data. */ + driver_data = (struct i2c_itf_data_s *)pi_l2_malloc(sizeof(struct i2c_itf_data_s)); + if (driver_data == NULL) + { + I2C_TRACE_ERR("Driver data alloc failed !\n"); + return -12; + } + driver_data->buf[0] = NULL; + driver_data->fifo_head = NULL; + driver_data->fifo_tail = NULL; + driver_data->pending = NULL; + driver_data->nb_open = 0; + driver_data->i2c_cmd_index = 0; + driver_data->cs_list = NULL; + for (uint32_t i = 0; i < (uint32_t)__PI_I2C_CMD_BUFF_SIZE; i++) + { + driver_data->i2c_cmd_seq[i] = 0; + } + driver_data->i2c_stop_send = 0; + driver_data->i2c_eot_send = 0; + /* Set up i2c cmd stop sequence. */ + driver_data->i2c_stop_seq[0] = (((uint32_t)I2C_CMD_STOP) << 24); + driver_data->i2c_stop_seq[1] = (((uint32_t)I2C_CMD_WAIT) << 24) | (conf->wait_cycles > 0xff ? 0xff : conf->wait_cycles); +#ifdef CONFIG_UDMA_I2C_EOT + driver_data->i2c_stop_seq[2] = (((uint32_t)I2C_CMD_EOT) << 24); + driver_data->i2c_only_eot_seq = &driver_data->i2c_stop_seq[1]; +#endif + driver_data->nb_events = 0; + driver_data->device_id = conf->itf; + /* TODO: Attach freq callback. */ + /* pi_freq_callback_init(&(driver_data->i2c_freq_cb), __pi_i2c_freq_cb, + * driver_data); */ + /* pi_freq_callback_add(&(driver_data->i2c_freq_cb)); */ + g_i2c_itf_data[conf->itf] = driver_data; + + /* Set handlers. */ + /* Enable SOC events propagation to FC. */ + + /* Disable UDMA CG. */ + plp_udma_cg_set(plp_udma_cg_get() | (1 << ARCHI_UDMA_I2C_ID(conf->itf))); + + driver_data->rx_channel = &i2c_rx_channel; + driver_data->tx_channel = &i2c_tx_channel; + + if (driver_data->nb_open == 0) + { + pos_i2c_create_channel(driver_data->rx_channel, UDMA_CHANNEL_ID(ARCHI_UDMA_I2C_ID(conf->itf)), SOC_EVENT_UDMA_I2C_RX(driver_data->device_id)); + pos_i2c_create_channel(driver_data->tx_channel, UDMA_CHANNEL_ID(ARCHI_UDMA_I2C_ID(conf->itf)) + 1, SOC_EVENT_UDMA_I2C_CMD(driver_data->device_id)); +#ifdef CONFIG_UDMA_I2C_EOT + pos_i2c_create_channel(driver_data->tx_channel, UDMA_CHANNEL_ID(ARCHI_UDMA_I2C_ID(conf->itf)) + 2, SOC_EVENT_UDMA_I2C_EOT(driver_data->device_id)); +#endif + driver_data->rx_channel->base = i2c_id; // way to save me the spi interface which is associated with the channel + driver_data->tx_channel->base = i2c_id; // way to save me the spi interface which is associated with the channel + } + + soc_eu_fcEventMask_setEvent(SOC_EVENT_UDMA_I2C_RX(driver_data->device_id)); + soc_eu_fcEventMask_setEvent(SOC_EVENT_UDMA_I2C_CMD(driver_data->device_id)); +#ifdef CONFIG_UDMA_I2C_EOT + soc_eu_fcEventMask_setEvent(SOC_EVENT_UDMA_I2C_EOT(driver_data->device_id)); +#endif + I2C_TRACE("I2C(%d) : driver data init done.\n", driver_data->device_id); + } + + struct i2c_cs_data_s *cs_data = + (struct i2c_cs_data_s *)pi_l2_malloc(sizeof(struct i2c_cs_data_s)); + if (cs_data == NULL) + { + I2C_TRACE_ERR("I2C(%ld) : cs=%d, cs_data alloc failed !\n", driver_data->device_id, + conf->cs); + return -13; + } + cs_data->device_id = conf->itf; + cs_data->cs = conf->cs; + cs_data->max_baudrate = conf->max_baudrate; + uint32_t clk_div = __pi_i2c_clk_div_get(cs_data->max_baudrate); + if (clk_div == 0xFFFFFFFF) + { + pi_l2_free(cs_data, sizeof(struct i2c_cs_data_s)); + I2C_TRACE_ERR("I2C(%d) : error computing clock divider !\n", conf->itf); + return -14; + } + cs_data->clk_div = clk_div; + cs_data->next = NULL; + __pi_i2c_cs_data_add(driver_data, cs_data); + driver_data->nb_open++; + I2C_TRACE("I2C(%d) : opened %ld time(s).\n", driver_data->device_id, driver_data->nb_open); + *device_data = cs_data; + return 0; +} + +void __pi_i2c_close(struct i2c_cs_data_s *device_data) +{ + struct i2c_itf_data_s *driver_data = g_i2c_itf_data[device_data->device_id]; + driver_data->nb_open--; + I2C_TRACE("I2C(%d) : number of opened devices %ld.\n", driver_data->device_id, + driver_data->nb_open); + if (driver_data->nb_open == 0) + { + I2C_TRACE("I2C(%d) : closing interface.\n", driver_data->device_id); + + /* Clear handlers. */ + /* Disable SOC events propagation to FC. */ + soc_eu_fcEventMask_clearEvent(SOC_EVENT_UDMA_I2C_RX(driver_data->device_id)); + soc_eu_fcEventMask_clearEvent(SOC_EVENT_UDMA_I2C_EOT(driver_data->device_id)); + soc_eu_fcEventMask_clearEvent(SOC_EVENT_UDMA_I2C_CMD(driver_data->device_id)); + + /* Enable UDMA CG. */ + plp_udma_cg_set(plp_udma_cg_get() & ~(1 << ARCHI_UDMA_I2C_ID(driver_data->device_id))); + + /* Free allocated struct. */ + pi_l2_free(driver_data->pending, sizeof(struct i2c_pending_transfer_s)); + pi_l2_free(driver_data, sizeof(struct i2c_itf_data_s)); + g_i2c_itf_data[device_data->device_id] = NULL; + } + __pi_i2c_cs_data_remove(driver_data, device_data); + pi_l2_free(device_data, sizeof(struct i2c_cs_data_s)); +} + +void __pi_i2c_enqueue_tx(uint32_t device_id, uint32_t l2buf, uint32_t size) +{ + /* Enqueue l2 buffer & start transfer. */ + plp_udma_enqueue(UDMA_I2C_TX_ADDR(device_id), l2buf, size, (UDMA_CHANNEL_CFG_EN | UDMA_CHANNEL_CFG_SIZE_8)); +} + +void __pi_i2c_enqueue_cmd(uint32_t device_id, uint32_t l2buf, uint32_t size) +{ + /* Enqueue l2 buffer & start transfer. */ + plp_udma_enqueue(UDMA_I2C_CMD_ADDR(device_id), l2buf, size * 4, (UDMA_CHANNEL_CFG_EN | UDMA_CHANNEL_CFG_SIZE_32)); +} + +void __pi_i2c_enqueue_rx(uint32_t device_id, uint32_t l2buf, uint32_t size) +{ + /* Enqueue l2 buffer & start transfer. */ + plp_udma_enqueue(UDMA_I2C_DATA_ADDR(device_id), l2buf, size, (UDMA_CHANNEL_CFG_EN | UDMA_CHANNEL_CFG_SIZE_8)); +} + +void __pi_i2c_copy_exec_read(struct i2c_itf_data_s *driver_data, struct pi_task *task) +{ + uint32_t index = 0, start_bit = 0, stop_bit = 0; + uint32_t buffer = task->data[0]; + uint32_t size = task->data[1]; + uint32_t flags = task->data[2]; + uint32_t channel = task->data[3]; + int i = 0; + int size_full = size + 3; + uint32_t buffer_to_send[size_full]; + struct i2c_cs_data_s *cs_data = (struct i2c_cs_data_s *)task->data[4]; + + if (size == 0) + return; + + /* Header. */ + + driver_data->i2c_cmd_seq[index++] = (((uint32_t)I2C_CMD_CFG) << 24) | ((cs_data->clk_div >> 8) & 0xFF) | (cs_data->clk_div & 0xFF); + driver_data->i2c_cmd_seq[index++] = (((uint32_t)I2C_CMD_START) << 24); + driver_data->i2c_cmd_seq[index++] = (((uint32_t)I2C_CMD_WRB) << 24) | (cs_data->cs | ADDRESS_READ); + + struct i2c_pending_transfer_s *pending = driver_data->pending; + if (size > (uint32_t)MAX_SIZE) + { + pending->pending_buffer = buffer; + pending->pending_repeat = (uint32_t)MAX_SIZE; + pending->pending_repeat_size = size; + // pending->device_id = driver_data->device_id; + pending->flags = flags; + pending->channel = channel; + size = (uint32_t)MAX_SIZE; + } + else + { + pending->pending_repeat = 0; + /* Stop bit at then end? */ + driver_data->i2c_stop_send = (flags & PI_I2C_XFER_NO_STOP) ? 0 : 1; + driver_data->i2c_eot_send = 1; + } + + /* Data. */ + if (size > 1) + { + for(index = 3; index < (size_full-1); index++) + { + driver_data->i2c_cmd_seq[index] = (((uint32_t)I2C_CMD_RD_ACK) << 24); + } + driver_data->i2c_cmd_seq[index++] = (((uint32_t)I2C_CMD_RD_NACK) << 24); + } + + /* Enqueue in HW fifo. */ + __pi_i2c_cb_buf_enqueue(driver_data, task); + + /* Open RX channel to receive data. */ + __pi_i2c_enqueue_rx(driver_data->device_id, buffer, size); + /* Transfer command. */ + __pi_i2c_enqueue_cmd(driver_data->device_id, (uint32_t)driver_data->i2c_cmd_seq, index); +} + +void __pi_i2c_copy_exec_write(struct i2c_itf_data_s *driver_data, struct pi_task *task) +{ + uint32_t index = 0, start_bit = 0, stop_bit = 0; + uint32_t buffer = task->data[0]; + uint32_t size = task->data[1]; + uint32_t flags = task->data[2]; + uint32_t channel = task->data[3]; + uint32_t buffer_to_write[size]; + uint8_t *buffer_copy = (uint8_t *)task->data[0]; + uint32_t count = 0; + uint32_t i = 0; + struct i2c_cs_data_s *cs_data = (struct i2c_cs_data_s *)task->data[4]; + start_bit = flags & PI_I2C_XFER_NO_START; + + /* Header. */ + driver_data->i2c_cmd_seq[index++] = (((uint32_t)I2C_CMD_CFG) << 24) | ((cs_data->clk_div >> 8) & 0xFF) | (cs_data->clk_div & 0xFF); + if (!start_bit) + { + driver_data->i2c_cmd_seq[index++] = (((uint32_t)I2C_CMD_START) << 24); + driver_data->i2c_cmd_seq[index++] = (((uint32_t)I2C_CMD_WRB) << 24) | (cs_data->cs | ADDRESS_WRITE); + } + struct i2c_pending_transfer_s *pending = driver_data->pending; + if (size > (uint32_t)MAX_SIZE) + { + pending->pending_buffer = buffer; + pending->pending_repeat = (uint32_t)MAX_SIZE; + pending->pending_repeat_size = size; + // pending->device_id = driver_data->device_id; + pending->flags = flags; + pending->channel = channel; + size = (uint32_t)MAX_SIZE; + } + else + { + pending->pending_repeat = 0; + /* Stop bit at the end? */ + driver_data->i2c_stop_send = (flags & PI_I2C_XFER_NO_STOP) ? 0 : 1; + driver_data->i2c_eot_send = 1; + } + /* Data. */ + if (size > 0) + { + while (count < size) + { + buffer_to_write[count++] = (((uint32_t)I2C_CMD_WRB) << 24) | *(buffer_copy++); + } + } + + /* Enqueue in HW fifo. */ + __pi_i2c_cb_buf_enqueue(driver_data, task); + + /* Transfer header. */ + __pi_i2c_enqueue_cmd(driver_data->device_id, (uint32_t)driver_data->i2c_cmd_seq, index); + /* Transfer data. */ + if (size > 0) + __pi_i2c_enqueue_cmd(driver_data->device_id, (uint32_t)buffer_to_write, size); +} + +void __pi_i2c_copy(struct i2c_cs_data_s *cs_data, uint32_t l2_buff, uint32_t length, + pi_i2c_xfer_flags_e flags, udma_channel_e channel, struct pi_task *task) +{ + uint32_t irq = hal_irq_disable(); + task->data[0] = l2_buff; + task->data[1] = length; + task->data[2] = flags; + task->data[3] = channel; + task->data[4] = (uint32_t)cs_data; + task->id = PI_TASK_NONE_ID; + task->next = NULL; + struct i2c_itf_data_s *driver_data = g_i2c_itf_data[cs_data->device_id]; + int32_t slot_rxtx = __pi_i2c_cb_buf_empty(driver_data); + /* Both slots should be empty to start a new read transfer. When enqueueing + * a new read transfer, RX should be opened first then TX. So if RX is already + * in use, then wait for it to finish. */ + if (slot_rxtx == 0) + { + /* Enqueue transfer in SW fifo. */ + I2C_TRACE("I2C(%d) : enqueue transfer in SW fifo : channel %d task %lx.\n", + driver_data->device_id, task->data[3], task); + __pi_i2c_task_fifo_enqueue(driver_data, task); + } + else + { + /* Enqueue transfer in HW fifo. */ + I2C_TRACE("I2C(%d) : enqueue transfer in HW fifo : channel %d task %lx.\n", + driver_data->device_id, task->data[3], task); + if (task->data[3] == RX_CHANNEL) + { + __pi_i2c_copy_exec_read(driver_data, task); + } + else + { + __pi_i2c_copy_exec_write(driver_data, task); + } + } + hal_irq_restore(irq); +} + +void __pi_i2c_send_stop_cmd(struct i2c_itf_data_s *driver_data) +{ + I2C_TRACE("__pi_i2c_send_stop_cmd\n"); + driver_data->i2c_stop_send = 0; + driver_data->i2c_eot_send = 0; + __pi_i2c_enqueue_cmd(driver_data->device_id, (uint32_t)driver_data->i2c_stop_seq, (uint32_t)__PI_I2C_STOP_CMD_SIZE); +} + +void __pi_i2c_send_only_eot_cmd(struct i2c_itf_data_s *driver_data) +{ + driver_data->i2c_eot_send = 0; + __pi_i2c_enqueue_cmd(driver_data->device_id, (uint32_t)driver_data->i2c_only_eot_seq, (uint32_t)__PI_I2C_ONLY_EOT_CMD_SIZE); +} + +int32_t __pi_i2c_detect(struct i2c_cs_data_s *cs_data, struct pi_i2c_conf *conf, uint8_t *rx_data, struct pi_task *task) +{ + uint32_t irq = hal_irq_disable(); + if (cs_data->device_id != conf->itf) + { + I2C_TRACE_ERR("I2C(%d) : error wrong interfaces %d - %d !\n", cs_data->device_id, + conf->itf); + hal_irq_restore(irq); + return -11; + } + struct i2c_itf_data_s *driver_data = g_i2c_itf_data[cs_data->device_id]; + uint32_t clk_div = __pi_i2c_clk_div_get(conf->max_baudrate); + if (clk_div == 0xFFFFFFFF) + { + I2C_TRACE_ERR("I2C(%d) : error computing clock divider !\n", conf->itf); + hal_irq_restore(irq); + return -12; + } + uint16_t clkdiv = clk_div; + + task->next = NULL; + + uint32_t index = 0; + uint32_t buffer = (uint32_t)rx_data; + uint32_t size = 1; + + /* Header. */ + driver_data->i2c_cmd_seq[index++] = (((uint32_t)I2C_CMD_CFG) << 24) | ((clkdiv >> 8) & 0xFF) | (clkdiv & 0xFF); + driver_data->i2c_cmd_seq[index++] = (((uint32_t)I2C_CMD_START) << 24); + driver_data->i2c_cmd_seq[index++] = (((uint32_t)I2C_CMD_WRB) << 24) | (conf->cs | ADDRESS_READ); + + struct i2c_pending_transfer_s *pending = driver_data->pending; + pending->pending_repeat = 0; + /* Stop bit at then end? */ + driver_data->i2c_stop_send = 1; + driver_data->i2c_eot_send = 1; + + driver_data->i2c_cmd_seq[index++] = (((uint32_t)I2C_CMD_RD_NACK) << 24); + + /* Enqueue in HW fifo. */ + __pi_i2c_cb_buf_enqueue(driver_data, task); + + /* Open RX channel to receive data. */ + __pi_i2c_enqueue_rx(driver_data->device_id, buffer, size); + /* Transfer command. */ + __pi_i2c_enqueue_cmd(driver_data->device_id, (uint32_t)driver_data->i2c_cmd_seq, index); + + hal_irq_restore(irq); + return 0; +} \ No newline at end of file diff --git a/rtos/pulpos/pulp/drivers/i2c/src/common_i2c.c b/rtos/pulpos/pulp/drivers/i2c/src/common_i2c.c new file mode 100644 index 00000000..5a6b85de --- /dev/null +++ b/rtos/pulpos/pulp/drivers/i2c/src/common_i2c.c @@ -0,0 +1,259 @@ +/* + * Copyright 2020 GreenWaves Technologies + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + */ +/**----------------------------------------------------------------------------------------------------------------------- + * ? ABOUT + * @author : Orlando Nico, GreenWaves Technologies, Robert Balas + * @email : nico.orlando@studio.unibo.it, balasr@iis.ee.ethz.ch + * @repo : freertos/drivers or pulp-sdk/rtos/pulpos/pulp/drivers/i2c/src + * @createdOn : /02/2022 + * @description : The driver was tested on a VIP eeprom memory in RTL, where it was done one + * transfer at a time. + * Multiple concurrent transfers have not been tested. I mean using multiple + * I2C interfaces that do transfers at the same time. + * The tests the driver has been tested on are: i2c_scan, i2c_eeprom_async, i2c_eeprom_sync. + *-----------------------------------------------------------------------------------------------------------------------**/ + +/**================================================================================================ + ** INCLUDE + *================================================================================================**/ +#include "common_i2c.h" + +/**================================================================================================ + ** FUNCTION + *================================================================================================**/ +uint32_t deactive_irq_i2c(void) +{ +#ifdef USE_PULPOS_TEST + return hal_irq_disable(); +#else + return __disable_irq(); +#endif +} + +void active_irq_i2c(uint32_t irq) +{ +#ifdef USE_PULPOS_TEST + hal_irq_restore(irq); +#else + __restore_irq(irq); +#endif +} + +void __pi_i2c_wait_transfer(uint32_t device_id){ +#ifdef USE_PULPOS_TEST + while (plp_udma_busy(UDMA_I2C_CMD_ADDR(device_id))); +#else + while (hal_i2c_busy_get(device_id)); +#endif + +} + +void __pi_i2c_handle_pending_transfer(struct i2c_itf_data_s *driver_data) +{ + struct i2c_pending_transfer_s *pending = driver_data->pending; + pending->pending_buffer += pending->pending_repeat; + pending->pending_repeat_size -= pending->pending_repeat; + pending->pending_size = pending->pending_repeat; + + if (pending->pending_repeat_size <= pending->pending_repeat) { + pending->pending_repeat = 0; + pending->pending_size = pending->pending_repeat_size; + /* Stop bit at the end? */ + driver_data->i2c_stop_send = (pending->flags & PI_I2C_XFER_NO_STOP) ? 0 : 1; + } + /* Initiate next part of command sequence. */ + { + /* Data. */ + uint32_t index = 0; + driver_data->i2c_cmd_seq[index++] = (((uint32_t)I2C_CMD_RPT) << 24) | pending->pending_size; + driver_data->i2c_cmd_seq[index++] = (((uint32_t)I2C_CMD_WRB) << 24); + } + // hal_i2c_enqueue(device_id, driver_data->channel); + /* TODO: Renqueue next cmd! */ +} + + +int32_t __pi_i2c_cb_buf_empty(struct i2c_itf_data_s *driver_data) +{ + return driver_data->buf[0] == NULL; +} + +void __pi_i2c_cb_buf_enqueue(struct i2c_itf_data_s *driver_data, struct pi_task *task) +{ + uint32_t irq = deactive_irq_i2c(); + driver_data->buf[0] = task; + active_irq_i2c(irq); +} + +struct pi_task *__pi_i2c_cb_buf_pop(struct i2c_itf_data_s *driver_data) +{ + uint32_t irq = deactive_irq_i2c(); + struct pi_task *task_to_return = NULL; + task_to_return = driver_data->buf[0]; + /* Free the slot for another transfer. */ + driver_data->buf[0] = NULL; + active_irq_i2c(irq); + return task_to_return; +} + +void __pi_i2c_task_fifo_enqueue(struct i2c_itf_data_s *driver_data, struct pi_task *task) +{ + uint32_t irq = deactive_irq_i2c(); + /* Enqueue transfer in SW fifo. */ + if (driver_data->fifo_head == NULL) { + driver_data->fifo_head = task; + } else { + driver_data->fifo_tail->next = task; + } + driver_data->fifo_tail = task; + active_irq_i2c(irq); +} + +struct pi_task *__pi_i2c_task_fifo_pop(struct i2c_itf_data_s *driver_data) +{ + struct pi_task *task_to_return = NULL; + uint32_t irq = deactive_irq_i2c(); + if (driver_data->fifo_head != NULL) { + task_to_return = driver_data->fifo_head; + driver_data->fifo_head = driver_data->fifo_head->next; + } + active_irq_i2c(irq); + return task_to_return; +} + +uint32_t __pi_i2c_clk_div_get(uint32_t i2c_freq) +{ + /* Clock divided by 4 in HW. */ + uint32_t freq = i2c_freq << 2; + uint32_t periph_freq = pi_freq_get(PI_FREQ_DOMAIN_PERIPH); + uint32_t div = (periph_freq + freq - 1) / freq; + /* Clock divider counts from 0 to clk_div value included. */ + if (div <= 1) { + div = 0; + } else { + div -= 1; + } + if (div > 0xFFFF) { + I2C_TRACE_ERR("Error computing clock divier : Fsoc=%ld, Fi2c=%ld\n", periph_freq, + i2c_freq); + return 0xFFFFFFFF; + } + return div; +} + +void __pi_i2c_cs_data_add(struct i2c_itf_data_s *driver_data, struct i2c_cs_data_s *cs_data) +{ +#ifdef USE_FREERTOS_TEST + struct i2c_cs_data_s *head = driver_data->cs_list; + while (head != NULL) { + head = head->next; + } + head->next = cs_data; +#else + struct i2c_cs_data_s *head; + head = cs_data; + head->next = driver_data->cs_list; + driver_data->cs_list = head; +#endif +} + +void __pi_i2c_cs_data_remove(struct i2c_itf_data_s *driver_data, struct i2c_cs_data_s *cs_data) +{ + struct i2c_cs_data_s *head = driver_data->cs_list; + struct i2c_cs_data_s *prev = driver_data->cs_list; +#ifdef USE_FREERTOS_TEST + while ((head != NULL) && (head != cs_data)) { + prev = head; + hal_compiler_barrier(); + head = head->next; + } + if (head != NULL) { + prev->next = head->next; + } +#else + int count=0; + while ((head != NULL) && (head != cs_data)) + { + count++; + prev = head; + hal_compiler_barrier(); + head = head->next; + } + if (head != NULL) + { + prev->next = head->next; + } + if(count==0){ + head=head->next; + driver_data->cs_list=head; + } +#endif +} + +void __pi_i2c_freq_cb(void *args) +{ + uint32_t irq = deactive_irq_i2c(); + struct i2c_itf_data_s *driver_data = (struct i2c_itf_data_s *)args; + uint32_t device_id = driver_data->device_id; + struct i2c_cs_data_s *cs_data = driver_data->cs_list; + + /* Wait until current transfer is done. */ + __pi_i2c_wait_transfer(device_id); + + /* Update all clock div. */ + while (cs_data != NULL) { + cs_data->clk_div = __pi_i2c_clk_div_get(cs_data->max_baudrate); + cs_data = cs_data->next; + } + active_irq_i2c(irq); +} + +int32_t __pi_i2c_baudrate_set(struct i2c_cs_data_s *cs_data, uint32_t new_baudrate) +{ + cs_data->max_baudrate = new_baudrate; + uint32_t clk_div = __pi_i2c_clk_div_get(cs_data->max_baudrate); + if (clk_div == 0xFFFFFFFF) { + I2C_TRACE_ERR("I2C(%d) : error computing clock divider !\n", cs_data->device_id); + return -14; + } + cs_data->clk_div = clk_div; + return 0; +} + +void __pi_i2c_conf_init(pi_i2c_conf_t *conf) +{ + conf->device = PI_DEVICE_I2C_TYPE; + conf->cs = 0; + conf->max_baudrate = 200000; + conf->itf = 0; + conf->wait_cycles = 1; + conf->ts_ch = 0; + conf->ts_evt_id = 0; +} + +void __pi_i2c_ioctl(struct i2c_cs_data_s *device_data, uint32_t cmd, void *arg) +{ + switch (cmd) { + case PI_I2C_CTRL_SET_MAX_BAUDRATE: + __pi_i2c_baudrate_set(device_data, (uint32_t)arg); + break; + default: + break; + } + return; +} diff --git a/rtos/pulpos/pulp/drivers/i2c/src/i2c-v2.c b/rtos/pulpos/pulp/drivers/i2c/src/i2c-v2.c new file mode 100644 index 00000000..2512a1ab --- /dev/null +++ b/rtos/pulpos/pulp/drivers/i2c/src/i2c-v2.c @@ -0,0 +1,202 @@ +/* + * Copyright 2021 GreenWaves Technologies + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + * Modify by Nico Orlando (nico.orlando@studio.unibo.it) + * + */ +/**----------------------------------------------------------------------------------------------------------------------- + * ? ABOUT + * @author : Orlando Nico, GreenWaves Technologies, Robert Balas + * @email : nico.orlando@studio.unibo.it, balasr@iis.ee.ethz.ch + * @repo : pulp-sdk/rtos/pulpos/pulp/drivers/i2c/src + * @createdOn : /01/2022 + * @description : PulpOS + * The driver was tested on a VIP flash memory in RTL, where it was done one + * transfer at a time. + * Multiple concurrent transfers have not been tested. I mean using multiple + * I2C interfaces that do transfers at the same time. + *-----------------------------------------------------------------------------------------------------------------------**/ + +/**================================================================================================ + ** INCLUDE + *================================================================================================**/ +#include "abstraction_layer_i2c.h" + +/**================================================================================================ + ** DEFINE + *================================================================================================**/ +#define MUTEX 1 + +/**================================================================================================ + ** STRUCT + *================================================================================================**/ + +/**================================================================================================ + ** GLOBAL VARIABLE + *================================================================================================**/ + +/**================================================================================================ + ** PROTOTYPE FUNCTION + *================================================================================================**/ +void pi_i2c_conf_init(pi_i2c_conf_t *conf) +{ + __pi_i2c_conf_init(conf); +} + +void pi_i2c_conf_set_slave_addr(struct pi_i2c_conf *conf, uint16_t slave_addr, int8_t is_10_bits) +{ + conf->cs = slave_addr; + conf->is_10_bits = is_10_bits; +} + +int pi_i2c_open(struct pi_device *device) +{ + int32_t status = -1; + struct pi_i2c_conf *conf = (struct pi_i2c_conf *)device->config; + I2C_TRACE("Open device id=%d\n", conf->itf); + status = __pi_i2c_open(conf, (struct i2c_cs_data_s **)&(device->data)); + I2C_TRACE("Open status : %ld, driver data: %lx\n", status, + (struct i2c_cs_data_s *)device->data); + return status; +} + +void pi_i2c_close(struct pi_device *device) +{ + struct i2c_cs_data_s *device_data = (struct i2c_cs_data_s *)device->data; + if (device_data != NULL) + { + I2C_TRACE("Close device id=%d\n", device_data->device_id); + __pi_i2c_close(device_data); + device->data = NULL; + } +} + +void pi_i2c_ioctl(struct pi_device *device, uint32_t cmd, void *arg) +{ + struct i2c_cs_data_s *device_data = (struct i2c_cs_data_s *)device->data; + if (device_data != NULL) + { + I2C_TRACE("Ioctl command : %lx, arg %lx\n", cmd, arg); + __pi_i2c_ioctl(device_data, cmd, arg); + } +} + + +int pi_i2c_read(struct pi_device *device, uint8_t *rx_buff, int length, pi_i2c_xfer_flags_e flags) +{ + int status = PI_OK; + pi_task_t task_block; +#if MUTEX + pi_task_block(&task_block); + pi_i2c_read_async(device, rx_buff, length, flags, &task_block); + pi_task_wait_on(&task_block); + pi_task_destroy(&task_block); +#else + pi_task_block_no_mutex(&task_block); + pi_i2c_read_async(device, rx_buff, length, flags, &task_block); + pi_task_wait_on_no_mutex(&task_block); +#endif + /* only some udma i2c peripherals support ack detection */ +#ifdef CONFIG_UDMA_I2C_ACK +#ifdef USE_FREERTOS_TEST + struct i2c_cs_data_s *device_data = (struct i2c_cs_data_s *)device->data; + if (REG_GET(I2C_ACK_NACK, i2c_ack_get(device_data->device_id))) + status = PI_ERR_I2C_NACK; +#else + struct i2c_cs_data_s *device_data = (struct i2c_cs_data_s *)device->data; + unsigned int udma_i2c_channel_base = hal_udma_channel_base(UDMA_CHANNEL_ID(ARCHI_UDMA_I2C_ID(device_data->device_id))); + uint32_t ack = pulp_read32(udma_i2c_channel_base+0x38); + if (ack) + status = PI_ERR_I2C_NACK; +#endif +#endif + + return status; +} + +void pi_i2c_read_async(struct pi_device *device, uint8_t *rx_buff, int length, + pi_i2c_xfer_flags_e flags, pi_task_t *task) +{ + struct i2c_cs_data_s *device_data = (struct i2c_cs_data_s *)device->data; + udma_channel_e channel = RX_CHANNEL; + I2C_TRACE("I2C(%d) : transfer %d %lx %ld %lx, task %lx\n", device_data->device_id, channel, + (uint32_t)rx_buff, length, flags, task); + __pi_i2c_copy(device_data, (uint32_t)rx_buff, length, flags, channel, task); +} + +int pi_i2c_write(struct pi_device *device, uint8_t *tx_data, int length, pi_i2c_xfer_flags_e flags) +{ + int status = PI_OK; + pi_task_t task_block; +#if MUTEX + pi_task_block(&task_block); + pi_i2c_write_async(device, tx_data, length, flags, &task_block); + pi_task_wait_on(&task_block); + pi_task_destroy(&task_block); +#else + pi_task_block_no_mutex(&task_block); + pi_i2c_write_async(device, tx_data, length, flags, &task_block); + pi_task_wait_on_no_mutex(&task_block); +#endif + /* only some udma i2c peripherals support ack detection */ +#ifdef CONFIG_UDMA_I2C_ACK +#ifdef USE_FREERTOS_TEST + struct i2c_cs_data_s *device_data = (struct i2c_cs_data_s *)device->data; + if (REG_GET(I2C_ACK_NACK, i2c_ack_get(device_data->device_id))) + status = PI_ERR_I2C_NACK; +#else + struct i2c_cs_data_s *device_data = (struct i2c_cs_data_s *)device->data; + unsigned int udma_i2c_channel_base = hal_udma_channel_base(UDMA_CHANNEL_ID(ARCHI_UDMA_I2C_ID(device_data->device_id))); + uint32_t ack = pulp_read32(udma_i2c_channel_base+0x38); + if (ack) + status = PI_ERR_I2C_NACK; +#endif +#endif + return status; +} + +void pi_i2c_write_async(struct pi_device *device, uint8_t *tx_data, int length, + pi_i2c_xfer_flags_e flags, pi_task_t *task) +{ + struct i2c_cs_data_s *device_data = (struct i2c_cs_data_s *)device->data; + udma_channel_e channel = TX_CHANNEL; + I2C_TRACE("I2C(%d) : transfer %d %lx %ld %lx, task %lx\n", device_data->device_id, channel, + (uint32_t)tx_data, length, flags, task); + __pi_i2c_copy(device_data, (uint32_t)tx_data, length, flags, channel, task); +} + +int pi_i2c_get_request_status(pi_task_t *task) +{ + (void)task; + return PI_OK; +} + +int pi_i2c_detect(struct pi_device *device, struct pi_i2c_conf *conf, uint8_t *rx_data) +{ + int32_t status = -1; + struct i2c_cs_data_s *cs_data = (struct i2c_cs_data_s *)device->data; + pi_task_t task_block; + pi_task_block(&task_block); + I2C_TRACE("Search device at cs=%x\n", conf->cs); + __pi_i2c_detect(cs_data, conf, rx_data, &task_block); + pi_task_wait_on(&task_block); + pi_task_destroy(&task_block); + status = (*rx_data == 0x00) ? 0 : -1; + I2C_TRACE("Search device at cs=%x result=%x\n", conf->cs, status); + return status; +} + + \ No newline at end of file From 86d09cc26099e054f85877208abe21a461b13f3a Mon Sep 17 00:00:00 2001 From: orlandonico Date: Thu, 10 Feb 2022 17:02:27 +0100 Subject: [PATCH 76/86] rtos/pulpos/pulp: abstraction layers spim pulpos --- .../spim/include/abstraction_layer_spi.h | 68 ++ .../pulp/drivers/spim/include/common_spi.h | 147 ++++ .../drivers/spim/src/abstraction_layer_spi.c | 691 ++++++++++++++++++ .../pulpos/pulp/drivers/spim/src/common_spi.c | 168 +++++ rtos/pulpos/pulp/drivers/spim/src/spim-v3.c | 181 +++++ 5 files changed, 1255 insertions(+) create mode 100644 rtos/pulpos/pulp/drivers/spim/include/abstraction_layer_spi.h create mode 100644 rtos/pulpos/pulp/drivers/spim/include/common_spi.h create mode 100644 rtos/pulpos/pulp/drivers/spim/src/abstraction_layer_spi.c create mode 100644 rtos/pulpos/pulp/drivers/spim/src/common_spi.c create mode 100644 rtos/pulpos/pulp/drivers/spim/src/spim-v3.c diff --git a/rtos/pulpos/pulp/drivers/spim/include/abstraction_layer_spi.h b/rtos/pulpos/pulp/drivers/spim/include/abstraction_layer_spi.h new file mode 100644 index 00000000..da010e82 --- /dev/null +++ b/rtos/pulpos/pulp/drivers/spim/include/abstraction_layer_spi.h @@ -0,0 +1,68 @@ +/* + * Copyright 2020 GreenWaves Technologies + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +/**----------------------------------------------------------------------------------------------------------------------- + * ? ABOUT + * @author : Orlando Nico, GreenWaves Technologies, Robert Balas + * @email : nico.orlando@studio.unibo.it, balasr@iis.ee.ethz.ch + * @repo : pulp-sdk/rtos/pulpos/pulp/drivers/spim/include + * @createdOn : 28/12/2021 + * @description : Abstraction Layer SPI for PulpOS + *-----------------------------------------------------------------------------------------------------------------------**/ + +/**================================================================================================ + ** INCLUDE + *================================================================================================**/ +#include "common_spi.h" + +/**================================================================================================ + ** DEFINE + *================================================================================================**/ +#define DEBUG_PRINTF(...) ((void)0) +#define DBG_PRINTF(...) ((void)0) +#define SPIM_CS_DATA_GET_DRV_DATA(cs_data) (cs_data->drv_data) +#define NB_SOC_EVENTS (ARCHI_SOC_EVENT_NB_TOTAL) +#define pi_default_malloc(x) pi_l2_malloc(x) +#define pi_default_free(x, y) pi_l2_free(x, y) +#define pi_data_malloc(x) pi_l2_malloc(x) +#define pi_data_free(x, y) pi_l2_free(x, y) +#define UDMA_EVENT_OFFSET_SPI_EOT 3 +#define SOC_EVENT_UDMA_SPIM_EOT(id) \ + ((ARCHI_UDMA_SPIM_ID(id) << ARCHI_SOC_EVENT_UDMA_NB_CHANNEL_EVT_LOG2) + \ + UDMA_EVENT_OFFSET_SPI_EOT) +typedef void (*pi_fc_event_handler_t)(void *arg); +/**================================================================================================ + ** STRUCT + *================================================================================================**/ + +/**================================================================================================ + ** PROTOTYPE FUNCTION + *================================================================================================**/ +void pos_spi_handle_copy(int event, void *arg); +void pos_spi_create_channel(pos_udma_channel_t *channel, int channel_id, int soc_event); +int __pi_spi_open(struct spim_cs_data **cs_data, struct pi_spi_conf *conf); +void __pi_spi_close(struct spim_cs_data *cs_data, struct pi_spi_conf *conf); +void __pi_spim_exec_next_transfer(pi_task_t *task); +void __pi_spi_send_async(struct spim_cs_data *cs_data, void *data, size_t len, pi_spi_flags_e flags, pi_task_t *task); +void __pi_spi_receive_async(struct spim_cs_data *cs_data, void *data, size_t len, pi_spi_flags_e flags, pi_task_t *task); +void __pi_spi_xfer_async(struct spim_cs_data *cs_data, void *tx_data, void *rx_data, size_t len, pi_spi_flags_e flags, pi_task_t *task); +void __pi_spi_receive_async_with_ucode(struct spim_cs_data *cs_data, void *data, size_t len, pi_spi_flags_e flags, int ucode_size, void *ucode, pi_task_t *task); +void __pi_spi_send_async_with_ucode(struct spim_cs_data *cs_data, void *data, size_t len, pi_spi_flags_e flags, int ucode_size, void *ucode, pi_task_t *task); +void __spim_execute_callback(void *arg); +void system_core_clock_update(void); +uint32_t system_core_clock_get(void); diff --git a/rtos/pulpos/pulp/drivers/spim/include/common_spi.h b/rtos/pulpos/pulp/drivers/spim/include/common_spi.h new file mode 100644 index 00000000..18543bf7 --- /dev/null +++ b/rtos/pulpos/pulp/drivers/spim/include/common_spi.h @@ -0,0 +1,147 @@ +/* + * Copyright 2020 GreenWaves Technologies + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +/**----------------------------------------------------------------------------------------------------------------------- + * ? ABOUT + * @author : Orlando Nico, GreenWaves Technologies, Robert Balas + * @email : nico.orlando@studio.unibo.it, balasr@iis.ee.ethz.ch + * @repo : pulp-sdk/rtos/pulpos/pulp/drivers/spim/common + * @createdOn : 28/12/2021 + * @description : Common File for Abstraction Layer SPI for PulpOS and FreeRTOS + *-----------------------------------------------------------------------------------------------------------------------**/ + +/**================================================================================================ + ** INCLUDE + *================================================================================================**/ +#ifdef USE_PULPOS_TEST +#include "pmsis.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#endif + +#ifdef USE_FREERTOS_TEST +#include "pmsis_types.h" +#include "pmsis_task.h" +#include "implementation_specific_defines.h" +#include "system.h" +#include "fc_event.h" +#include "udma.h" +#include "fll.h" +#include "events.h" +#include "properties.h" +#include "spi_periph.h" +#include "spi.h" +#include "udma_spim.h" +#include "udma_ctrl.h" +#endif + +/**================================================================================================ + ** DEFINE + *================================================================================================**/ +#ifdef DEBUG +#define DEBUG_PRINTF printf +#define DBG_PRINTF printf +#else +#define DEBUG_PRINTF(...) ((void)0) +#define DBG_PRINTF(...) ((void)0) +#endif /* DEBUG */ + +/**================================================================================================ + ** STRUCT + *================================================================================================**/ +struct spim_drv_fifo +{ + pi_task_t *fifo_head; + pi_task_t *fifo_tail; +}; + +/* Structure holding infos for each chip selects (itf, cs, polarity etc...) */ +struct spim_cs_data +{ + struct spim_cs_data *next; + struct spim_driver_data *drv_data; + uint32_t cfg; + uint32_t udma_cmd[8]; + uint32_t max_baudrate; + uint32_t polarity; + uint32_t phase; + uint8_t cs; + uint8_t wordsize; + uint8_t big_endian; +}; + +#ifdef USE_PULPOS_TEST +/* Structure holding info for each interfaces + * most notably the fifo of enqueued transfers and meta to know whether + * interface is free or not */ +struct spim_driver_data +{ + struct spim_drv_fifo *drv_fifo; // does the same task as Dolphine with true and false + struct spim_cs_data *cs_list; // list of devices connected to the spi interface + pi_task_t *repeat_transfer; + pi_task_t *end_of_transfer; // gli associo un task per sapere se un trasferimento ha finito? + uint32_t nb_open; + uint8_t device_id; + pos_udma_channel_t *rx_channel; + pos_udma_channel_t *tx_channel; +}; +#endif +#ifdef USE_FREERTOS_TEST +/* Structure holding info for each interfaces + * most notably the fifo of enqueued transfers and meta to know whether + * interface is free or not */ +struct spim_driver_data { + struct spim_drv_fifo *drv_fifo; // does the same task as Dolphine with true and false + struct spim_cs_data *cs_list; // list of devices connected to the spi interface + pi_task_t *repeat_transfer; + pi_task_t *end_of_transfer; // gli associo un task per sapere se un trasferimento ha finito? + uint32_t nb_open; + uint8_t device_id; +}; +#endif + + +struct spim_transfer +{ + pi_spi_flags_e flags; + void *data; + uint32_t len; + uint32_t cfg_cmd; + uint32_t byte_align; + uint32_t is_send; +}; + +/**================================================================================================ + ** PROTOTYPE FUNCTION + *================================================================================================**/ +uint32_t __pi_spi_get_config(struct spim_cs_data *cs_data); +int32_t __pi_spim_drv_fifo_enqueue(struct spim_cs_data *cs_data, struct spim_transfer *transfer, pi_task_t *end_task); +pi_task_t *__pi_spim_drv_fifo_pop(struct spim_driver_data *data); +struct spim_cs_data *__pi_spim_get_cs_data(struct spim_driver_data *drv_data, int cs); +void __pi_spim_cs_data_del(struct spim_driver_data *drv_data, int cs); +void __pi_spim_cs_data_add(struct spim_driver_data *drv_data, struct spim_cs_data *cs_data); +uint32_t __pi_spi_clk_div_get(uint32_t spi_freq); +uint32_t deactive_irq(void); +void active_irq(uint32_t irq); \ No newline at end of file diff --git a/rtos/pulpos/pulp/drivers/spim/src/abstraction_layer_spi.c b/rtos/pulpos/pulp/drivers/spim/src/abstraction_layer_spi.c new file mode 100644 index 00000000..e587dced --- /dev/null +++ b/rtos/pulpos/pulp/drivers/spim/src/abstraction_layer_spi.c @@ -0,0 +1,691 @@ +/* + * Copyright 2020 GreenWaves Technologies + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +/**----------------------------------------------------------------------------------------------------------------------- + * ? ABOUT + * @author : Orlando Nico, GreenWaves Technologies, Robert Balas + * @email : nico.orlando@studio.unibo.it, balasr@iis.ee.ethz.ch + * @repo : pulp-sdk/rtos/pulpos/pulp/drivers/spim/src + * @createdOn : 28/12/2021 + * @description : Abstraction Layer SPI for PulpOS + *-----------------------------------------------------------------------------------------------------------------------**/ + +/**================================================================================================ + ** INCLUDE + *================================================================================================**/ +#include "abstraction_layer_spi.h" + +/**================================================================================================ + ** GLOBAL VARIABLE + *================================================================================================**/ +volatile uint32_t system_core_clock; +PI_L2 int spi_open_count = 0; +PI_L2 int spi_channel; +struct spim_driver_data *__g_spim_drv_data[ARCHI_UDMA_NB_SPIM] = {0}; +extern struct pmsis_event_kernel_wrap *default_sched; + +/**================================================================================================ + ** FUNCTION + *================================================================================================**/ +void system_core_clock_update(void) +{ + // system_core_clock = pi_fll_get_frequency(FLL_SOC, 0); + system_core_clock = pi_freq_get(FLL_SOC); +} + +uint32_t system_core_clock_get(void) +{ + system_core_clock_update(); + return system_core_clock; +} + +// TODO: prepare pseudo exec for delegate +void __pi_spim_execute_callback(void *arg) +{ + return; +} + +void __pi_spi_receive_async_with_ucode(struct spim_cs_data *cs_data, void *data, + size_t len, pi_spi_flags_e flags, + int ucode_size, void *ucode, + pi_task_t *task) +{ + /* TODO: port spi_async with ucode */ + abort(); +#if 0 + struct spim_driver_data *drv_data = SPIM_CS_DATA_GET_DRV_DATA(cs_data); + int qspi = ((flags >> 2) & 0x3) == ((PI_SPI_LINES_QUAD>>2) & 0x03); + int cs_mode = (flags >> 0) & 0x3; + + int device_id = drv_data->device_id; + uint32_t byte_align = (cs_data->wordsize == PI_SPI_WORDSIZE_32) + && cs_data->big_endian; + uint32_t cfg = cs_data->cfg; + DBG_PRINTF("%s:%d: core clock:%d, baudrate:%d, div=%d, byte_align =%lx, cfg= %lx, qspi=%lx\n", + __func__,__LINE__,system_core_clock_get(),cs_data->max_baudrate, + system_core_clock_get() / cs_data->max_baudrate,byte_align,cfg,qspi); + int size = (len + 7) >> 3; + + int cmd_id = 0; + + uint32_t irq = deactive_irq(); + if(!drv_data->end_of_transfer) + { + if(cs_mode != PI_SPI_CS_AUTO) + { + hal_soc_eu_set_fc_mask(SOC_EVENT_UDMA_SPIM_RX(device_id)); + } + drv_data->end_of_transfer = task; + drv_data->repeat_transfer = NULL; + if(((0xFFF00000 & (uint32_t)ucode)!= 0x1c000000)) + { + memcpy(&(cs_data->udma_cmd[0]), ucode, ucode_size); + spim_enqueue_channel(SPIM(device_id), (uint32_t)data, size, + UDMA_CORE_RX_CFG_EN(1) | (2<<1), RX_CHANNEL); + spim_enqueue_channel(SPIM(device_id), (uint32_t)cs_data->udma_cmd, + ucode_size, UDMA_CORE_TX_CFG_EN(1), TX_CHANNEL); + } + else + { + spim_enqueue_channel(SPIM(device_id), (uint32_t)data, size, + UDMA_CORE_RX_CFG_EN(1) | (2<<1), RX_CHANNEL); + spim_enqueue_channel(SPIM(device_id), (uint32_t)ucode, + ucode_size, UDMA_CORE_TX_CFG_EN(1), TX_CHANNEL); + } + } + else + { +#if 0 + struct spim_transfer transfer; + transfer.data = data; + transfer.flags = flags; + transfer.len = len; + transfer.cfg_cmd = cfg; + transfer.byte_align = byte_align; + transfer.is_send = 0; + __pi_spim_drv_fifo_enqueue(cs_data, &transfer, task); +#endif + } + active_irq(irq); +#endif +} + +void __pi_spi_send_async_with_ucode(struct spim_cs_data *cs_data, void *data, + size_t len, pi_spi_flags_e flags, + int ucode_size, void *ucode, + pi_task_t *task) +{ + /* TODO: port spi_async with ucode */ + abort(); +#if 0 + struct spim_driver_data *drv_data = SPIM_CS_DATA_GET_DRV_DATA(cs_data); + int qspi = ((flags >> 2) & 0x3) == ((PI_SPI_LINES_QUAD>>2) & 0x03); + int cs_mode = (flags >> 0) & 0x3; + + int device_id = drv_data->device_id; + uint32_t byte_align = (cs_data->wordsize == PI_SPI_WORDSIZE_32) + && cs_data->big_endian; + uint32_t cfg = cs_data->cfg; + DBG_PRINTF("%s:%d: core clock:%d, baudrate:%d, div=%d, byte_align =%lx, cfg= %lx, qspi=%lx\n", + __func__,__LINE__,system_core_clock_get(),cs_data->max_baudrate, + system_core_clock_get() / cs_data->max_baudrate,byte_align,cfg,qspi); + int size = (len + 7) >> 3; + + int cmd_id = 0; + + uint32_t irq = deactive_irq(); + if(!drv_data->end_of_transfer) + { + if(cs_mode != PI_SPI_CS_AUTO) + { + hal_soc_eu_set_fc_mask(SOC_EVENT_UDMA_SPIM_TX(device_id)); + } + drv_data->end_of_transfer = task; + drv_data->repeat_transfer = NULL; + + spim_enqueue_channel(SPIM(device_id), (uint32_t)ucode, + ucode_size, UDMA_CORE_TX_CFG_EN(1), TX_CHANNEL); + pi_time_wait_us(1000); + spim_enqueue_channel(SPIM(device_id), (uint32_t)data, + size, UDMA_CORE_TX_CFG_EN(1), TX_CHANNEL); + if(cs_mode == PI_SPI_CS_AUTO) + { + // wait until channel is free + while((hal_read32((void*)&(SPIM(device_id)->udma.tx_cfg)) + & (1<<5))>>5) + { + DBG_PRINTF("%s:%d\n",__func__,__LINE__); + } + + // enqueue EOT + cs_data->udma_cmd[0] = SPI_CMD_EOT(1); + spim_enqueue_channel(SPIM(device_id), + (uint32_t)&cs_data->udma_cmd[0], 1*(sizeof(uint32_t)), + UDMA_CORE_TX_CFG_EN(1), TX_CHANNEL); + } + } + else + { +#if 0 + struct spim_transfer transfer; + transfer.data = data; + transfer.flags = flags; + transfer.len = len; + transfer.cfg_cmd = cfg; + transfer.byte_align = byte_align; + transfer.is_send = 0; + __pi_spim_drv_fifo_enqueue(cs_data, &transfer, task); +#endif + } + active_irq(irq); +#endif +} + +void __pi_spi_xfer_async(struct spim_cs_data *cs_data, void *tx_data, void *rx_data, size_t len, pi_spi_flags_e flags, pi_task_t *task) +{ + /* TODO: port spi_xfer async */ + abort(); +#if 0 + struct spim_driver_data *drv_data = SPIM_CS_DATA_GET_DRV_DATA(cs_data); + int qspi = (flags & (0x3 << 2)) == PI_SPI_LINES_QUAD; + int cs_mode = (flags >> 0) & 0x3; + + int device_id = drv_data->device_id; + uint32_t cfg = cs_data->cfg; + DBG_PRINTF("%s:%d: core clock:%"PRIu32", baudrate:%"PRIu32", div=%"PRIu32", udma_cmd cfg =%d\n", + __func__,__LINE__,system_core_clock_get(),cs_data->max_baudrate, + system_core_clock_get() / cs_data->max_baudrate,cfg); + uint32_t byte_align = (cs_data->wordsize == PI_SPI_WORDSIZE_32) + && cs_data->big_endian; + int size = (len + 7) >> 3; + + int cmd_id = 0; + + uint32_t irq = deactive_irq(); + if(!drv_data->end_of_transfer) + { + cs_data->udma_cmd[0] = cfg; + cs_data->udma_cmd[1] = SPI_CMD_SOT(cs_data->cs); + cs_data->udma_cmd[2] = SPI_CMD_FULL_DUPL(len, byte_align); + drv_data->end_of_transfer = task; + drv_data->repeat_transfer = NULL; + if(cs_mode == PI_SPI_CS_AUTO) + { + spim_enqueue_channel(SPIM(device_id), (uint32_t)cs_data->udma_cmd, + 3*(sizeof(uint32_t)), UDMA_CORE_TX_CFG_EN(1), + TX_CHANNEL); + spim_enqueue_channel(SPIM(device_id), (uint32_t)rx_data, size, + UDMA_CORE_RX_CFG_EN(1) | (2<<1), RX_CHANNEL); + spim_enqueue_channel(SPIM(device_id), (uint32_t)tx_data, + size, UDMA_CORE_TX_CFG_EN(1), + TX_CHANNEL); + // wait until TX channel is free + while((hal_read32((void*)&(SPIM(device_id)->udma.tx_cfg)) + & (1<<5))>>5) + { + DBG_PRINTF("%s:%d\n",__func__,__LINE__); + } + // send EOT + cs_data->udma_cmd[3] = SPI_CMD_EOT(1); + spim_enqueue_channel(SPIM(device_id), + (uint32_t)&cs_data->udma_cmd[3], sizeof(uint32_t), + UDMA_CORE_TX_CFG_EN(1), TX_CHANNEL); + } + else + { + spim_enqueue_channel(SPIM(device_id), (uint32_t)cs_data->udma_cmd, + 3*(sizeof(uint32_t)), UDMA_CORE_TX_CFG_EN(1), + TX_CHANNEL); + // wait until TX channel is free + while((hal_read32((void*)&(SPIM(device_id)->udma.tx_cfg)) + & (1<<5))>>5) + { + DBG_PRINTF("%s:%d\n",__func__,__LINE__); + } + // activate rx event + hal_soc_eu_set_fc_mask(SOC_EVENT_UDMA_SPIM_RX(device_id)); + // NOTE: both transfers have the same size + // does not matter which one we wait + spim_enqueue_channel(SPIM(device_id), (uint32_t)rx_data, size, + UDMA_CORE_RX_CFG_EN(1) | (2<<1), RX_CHANNEL); + spim_enqueue_channel(SPIM(device_id), (uint32_t)tx_data, + size, UDMA_CORE_TX_CFG_EN(1), + TX_CHANNEL); + } + + } + else + { + struct spim_transfer transfer; + transfer.data = rx_data; + transfer.flags = flags; + transfer.len = len; + transfer.cfg_cmd = cfg; + transfer.byte_align = byte_align; + transfer.is_send = (uint32_t) tx_data; // sending a pointer means xfer + __pi_spim_drv_fifo_enqueue(cs_data, &transfer, task); + } + active_irq(irq); +#endif +} + +void __pi_spi_receive_async(struct spim_cs_data *cs_data, void *data, + size_t len, pi_spi_flags_e flags, pi_task_t *task) +{ + DBG_PRINTF("...start -> __pi_spi_receive_async...\n"); + // SPIM_CS_DATA_GET_DRV_DATA(cs_data) = (cs_data->drv_data) + struct spim_driver_data *drv_data = SPIM_CS_DATA_GET_DRV_DATA(cs_data); + int qspi = (flags & (0x3 << 2)) == PI_SPI_LINES_QUAD; + // Choose the type of cs mode, see enum "pi_spi_flags_e" to understand better. + int cs_mode = (flags >> 0) & 0x3; + + int device_id = drv_data->device_id; + task->id = device_id; //i need it for pos_spi_handle_copy + uint32_t cfg = cs_data->cfg; + DBG_PRINTF( + "%s:%s:%d: core clock:%" PRIu32 ", baudrate:%" PRIu32 ", div=%" PRIu32 ", udma_cmd cfg =%lx, qpi=%d\n", + __FILE__, __func__, __LINE__, system_core_clock_get(), + cs_data->max_baudrate, + system_core_clock_get() / cs_data->max_baudrate, cfg, qspi); + uint32_t byte_align = (cs_data->wordsize == PI_SPI_WORDSIZE_32) && + cs_data->big_endian; + + int buffer_size = (len + 7) >> 3; + + if (len > 8192 * 8) + { + DBG_PRINTF( + "%s:%s:%d: Transaction splitting unimplemented, too large", + __FILE__, __func__, __LINE__); + abort(); /* TODO: unimplemented transaction splitting */ + } + + DBG_PRINTF("%s:%s:%d: udma_cmd = %p\n", __FILE__, __func__, __LINE__, + &(cs_data->udma_cmd[0])); + uint32_t irq = deactive_irq(); + + uint8_t bitsword = 0; + uint8_t UDMA_CORE_CFG = 0; + + if (cs_data->wordsize == PI_SPI_WORDSIZE_8) + { + bitsword = 8; + UDMA_CORE_CFG = UDMA_CHANNEL_CFG_SIZE_8; + } + else if (cs_data->wordsize == PI_SPI_WORDSIZE_16) + { + bitsword = 16; + UDMA_CORE_CFG = UDMA_CHANNEL_CFG_SIZE_16; + } + else + { + bitsword = 32; + UDMA_CORE_CFG = UDMA_CHANNEL_CFG_SIZE_32; + } + + DBG_PRINTF("%s:%s:%d: bitsword = %u\n", __FILE__, __func__, __LINE__, bitsword); + DBG_PRINTF("%s:%s:%d: UDMA_CORE_CFG = %u\n", __FILE__, __func__, __LINE__, UDMA_CORE_CFG); + + /* + ** If I have no transfer in progress, then I go to set the command buffer + ** and then first I send the buffer where to receive the data and then the write command. + ** However, if I have some transfer in progress, then I put the new transfer + ** in the queue in the fifo and send it as soon as possible. + */ + + cs_data->udma_cmd[0] = cfg; + cs_data->udma_cmd[1] = SPI_CMD_SOT(cs_data->cs); + cs_data->udma_cmd[2] = SPI_CMD_RX_DATA(len / bitsword, SPI_CMD_1_WORD_PER_TRANSF, bitsword, qspi, SPI_CMD_MSB_FIRST); + cs_data->udma_cmd[3] = SPI_CMD_EOT(1, cs_mode == PI_SPI_CS_KEEP); + + uint32_t cfg_cmd = UDMA_CHANNEL_CFG_SIZE_32; + uint32_t rx_conf = UDMA_CORE_CFG; + if (drv_data->rx_channel->pendings[0] == NULL) + { + drv_data->rx_channel->pendings[0] = task; + plp_udma_enqueue(UDMA_SPIM_CMD_ADDR(device_id), (uint32_t)cs_data->udma_cmd, 4 * sizeof(uint32_t), UDMA_CHANNEL_CFG_EN | cfg_cmd); + plp_udma_enqueue(UDMA_SPIM_RX_ADDR(device_id), (uint32_t)data, buffer_size, UDMA_CHANNEL_CFG_EN | rx_conf); + } + else + { + if (drv_data->rx_channel->pendings[1] == NULL) + { + drv_data->rx_channel->pendings[1] = task; + plp_udma_enqueue(UDMA_SPIM_CMD_ADDR(device_id), (uint32_t)cs_data->udma_cmd, 4 * sizeof(uint32_t), UDMA_CHANNEL_CFG_EN | cfg_cmd); + plp_udma_enqueue(UDMA_SPIM_RX_ADDR(device_id), (uint32_t)data, buffer_size, UDMA_CHANNEL_CFG_EN | rx_conf); + } + else + { + // printf("else rx\n"); + struct spim_transfer transfer; + transfer.data = data; + transfer.flags = flags; + transfer.len = len; + transfer.cfg_cmd = cfg; + transfer.byte_align = byte_align; + transfer.is_send = 0; + drv_data->rx_channel->waitings_first=task; //i need it for pos_spi_handle_copy + __pi_spim_drv_fifo_enqueue(cs_data, &transfer, task); + } + } + active_irq(irq); + DBG_PRINTF("...end -> __pi_spi_receive_async...\n"); +} + +void __pi_spi_send_async(struct spim_cs_data *cs_data, void *data, size_t len, pi_spi_flags_e flags, pi_task_t *task) +{ + DBG_PRINTF("...start -> __pi_spi_send_async...\n"); + struct spim_driver_data *drv_data = SPIM_CS_DATA_GET_DRV_DATA(cs_data); + int qspi = (flags & (0x3 << 2)) == PI_SPI_LINES_QUAD; + int cs_mode = (flags >> 0) & 0x3; + DBG_PRINTF("%s:%s:%d...task %d, %p...\n", __FILE__, __func__, __LINE__, task == NULL ? 0 : 1, &task); + int device_id = drv_data->device_id; + task->id = device_id; //i need it for pos_spi_handle_copy + uint32_t cfg = cs_data->cfg; // SPI_CMD_CFG(...) + DBG_PRINTF( + "%s:%s:%d: core clock:%" PRIu32 ", baudrate:%" PRIu32 ", div=%" PRIu32 ", udma_cmd cfg =%lx, qpi=%d\n", + __FILE__, __func__, __LINE__, system_core_clock_get(), + cs_data->max_baudrate, + system_core_clock_get() / cs_data->max_baudrate, cfg, qspi); + uint32_t byte_align = (cs_data->wordsize == PI_SPI_WORDSIZE_32) && + cs_data->big_endian; + + /* buffer size */ + int buffer_size = (len + 7) >> 3; + + if (len > 8192 * 8) + { + DBG_PRINTF( + "%s:%s:%d: Transaction splitting unimplemented, too large", + __FILE__, __func__, __LINE__); + abort(); /* TODO: unimplemented transaction splitting */ + } + + // Address of the command buffer to be sent to the uDMA + DBG_PRINTF("%s:%s:%d: udma_cmd = %p\n", __FILE__, __func__, __LINE__, + &(cs_data->udma_cmd[0])); + uint32_t irq = deactive_irq(); + + uint8_t bitsword = 0; + uint8_t UDMA_CORE_CFG = 0; + + if (cs_data->wordsize == PI_SPI_WORDSIZE_8) + { + bitsword = 8; + UDMA_CORE_CFG = UDMA_CHANNEL_CFG_SIZE_8; // 0x0 + } + else if (cs_data->wordsize == PI_SPI_WORDSIZE_16) + { + bitsword = 16; + UDMA_CORE_CFG = UDMA_CHANNEL_CFG_SIZE_16; // 0x1 + } + else + { + bitsword = 32; + UDMA_CORE_CFG = UDMA_CHANNEL_CFG_SIZE_32; // 0x2 + } + + DBG_PRINTF("%s:%s:%d: bitsword = %u\n", __FILE__, __func__, __LINE__, bitsword); + DBG_PRINTF("%s:%s:%d: UDMA_CORE_CFG = %u\n", __FILE__, __func__, __LINE__, UDMA_CORE_CFG); + + /* + ** If I have no transfer in progress, then I go to set the command buffer + ** and then I first send the command and then the data. + ** However, if I have some transfer in progress, then I put the new transfer + ** in the queue in the fifo and send when I receive an EOT interrupt, + ** in this case the interrupt handler will manage the new transfer. + */ + cs_data->udma_cmd[0] = cfg; + cs_data->udma_cmd[1] = SPI_CMD_SOT(cs_data->cs); + cs_data->udma_cmd[2] = SPI_CMD_TX_DATA((len / bitsword), SPI_CMD_1_WORD_PER_TRANSF, bitsword, qspi, SPI_CMD_MSB_FIRST); + cs_data->udma_cmd[3] = SPI_CMD_EOT(1, cs_mode == PI_SPI_CS_KEEP); + + uint32_t cfg_cmd = UDMA_CHANNEL_CFG_SIZE_32; + uint32_t tx_conf = UDMA_CORE_CFG; + + if (drv_data->tx_channel->pendings[0] == NULL) + { + drv_data->tx_channel->pendings[0] = task; + plp_udma_enqueue(UDMA_SPIM_CMD_ADDR(device_id), (uint32_t)cs_data->udma_cmd, 4 * sizeof(uint32_t), UDMA_CHANNEL_CFG_EN | cfg_cmd); + plp_udma_enqueue(UDMA_SPIM_TX_ADDR(device_id), (uint32_t)data, buffer_size, UDMA_CHANNEL_CFG_EN | tx_conf); + } + else + { + if (drv_data->tx_channel->pendings[1] == NULL) + { + drv_data->tx_channel->pendings[1] = task; + plp_udma_enqueue(UDMA_SPIM_CMD_ADDR(device_id), (uint32_t)cs_data->udma_cmd, 4 * sizeof(uint32_t), UDMA_CHANNEL_CFG_EN | cfg_cmd); + plp_udma_enqueue(UDMA_SPIM_TX_ADDR(device_id), (uint32_t)data, buffer_size, UDMA_CHANNEL_CFG_EN | tx_conf); + } + else + { + /* a transfer is running, append to pendings transfers queue */ + struct spim_transfer transfer; + transfer.data = data; + transfer.flags = flags; + transfer.len = len; + transfer.cfg_cmd = cfg; + transfer.byte_align = byte_align; + transfer.is_send = 1; + drv_data->tx_channel->waitings_first=task; //i need it for pos_spi_handle_copy + __pi_spim_drv_fifo_enqueue(cs_data, &transfer, task); + } + } + active_irq(irq); + + DBG_PRINTF("...end -> __pi_spi_send_async...\n"); +} + +void __pi_spim_exec_next_transfer(pi_task_t *task) +{ + DBG_PRINTF("...start -> __pi_spim_exec_next_transfer...\n"); + DBG_PRINTF("%s:%s:%d\n", __FILE__, __func__, __LINE__); + if (task->data[5] == 1) + { // if is send + // printf("__pi_spim_exec_next_transfer tx %p\n", &task); + // cs data | data buffer | len | flags | end of transfer task + __pi_spi_send_async((struct spim_cs_data *)task->data[0], + (void *)task->data[1], task->data[2], + task->data[3], (pi_task_t *)task->data[4]); + } + else if (task->data[5] == 0) + { + // printf("__pi_spim_exec_next_transfer rx %p\n", &task); + // cs data | data buffer | len | flags | end of transfer task + __pi_spi_receive_async((struct spim_cs_data *)task->data[0], + (void *)task->data[1], task->data[2], + task->data[3], + (pi_task_t *)task->data[4]); + } + else + { // task->data[5] contains rx data addr + // cs data | tx buffer | rx buffer| len | flags | end of + // transfer task + __pi_spi_xfer_async((struct spim_cs_data *)task->data[0], + (void *)task->data[5], + (void *)task->data[1], task->data[2], + task->data[3], (pi_task_t *)task->data[4]); + } + DBG_PRINTF("...end -> __pi_spim_exec_next_transfer...\n"); +} + +void pos_spi_handle_copy(int event, void *arg) +{ + pos_udma_channel_t *channel = arg; + pi_task_t *pending_1 = channel->pendings[1]; + pi_task_t *pending_0 = channel->pendings[0]; + uint32_t spi_id = channel->base; + struct spim_driver_data *drv_data = __g_spim_drv_data[spi_id]; + pi_task_t *pending_first = __pi_spim_drv_fifo_pop(drv_data); + channel->pendings[0] = pending_1; + channel->pendings[1] = NULL; + + if (pending_first) + { + __pi_spim_exec_next_transfer(pending_first); + pending_first = NULL; + } + + pos_task_push_locked(pending_0); +} + +void pos_spi_create_channel(pos_udma_channel_t *channel, int channel_id, int soc_event) +{ + pos_soc_event_register_callback(soc_event, pos_spi_handle_copy, (void *)channel); + channel->pendings[0] = NULL; + channel->pendings[1] = NULL; + channel->waitings_first = NULL; + channel->base = 0; +} + +int __pi_spi_open(struct spim_cs_data **cs_data, struct pi_spi_conf *conf) +{ + int irq = deactive_irq(); + for (int i = 0; i < ARCHI_NB_FLL; i++) + { + pos_fll_init(i); + } + + //struct pi_spi_conf *conf = (struct pi_spi_conf *)device->config; + + unsigned char spi_id = conf->itf; + int periph_id = ARCHI_UDMA_SPIM_ID(spi_id); + spi_channel = UDMA_EVENT_ID(periph_id); + int cs = conf->cs; + int status = 0; + //struct spim_cs_data **cs_data = (struct spim_cs_data **)(&device->data); + plp_udma_cg_set(plp_udma_cg_get() | (1 << periph_id)); + + struct spim_driver_data *drv_data; + if (__g_spim_drv_data[conf->itf]) + { + drv_data = __g_spim_drv_data[conf->itf]; + } + else + { + __g_spim_drv_data[conf->itf] = pi_default_malloc(sizeof(struct spim_driver_data)); + memset(__g_spim_drv_data[conf->itf], 0, sizeof(struct spim_driver_data)); + drv_data = __g_spim_drv_data[conf->itf]; + // Do this to define a node in a list. The list is a dynamic object. + drv_data->drv_fifo = pi_default_malloc(sizeof(struct spim_drv_fifo)); + memset(drv_data->drv_fifo, 0, sizeof(struct spim_drv_fifo)); + // controllo che il puntatore sia = 0 + if (!drv_data->drv_fifo) + { + active_irq(irq); + return -1; + } + drv_data->device_id = conf->itf; + } + + if (drv_data->nb_open == 0) + { + pos_spi_create_channel(drv_data->rx_channel, UDMA_CHANNEL_ID(periph_id), SOC_EVENT_UDMA_SPIM_EOT(drv_data->device_id)); + pos_spi_create_channel(drv_data->tx_channel, UDMA_CHANNEL_ID(periph_id) + 1, SOC_EVENT_UDMA_SPIM_EOT(drv_data->device_id)); + drv_data->rx_channel->base=spi_id; //way to save me the spi interface which is associated with the channel + drv_data->tx_channel->base=spi_id; //way to save me the spi interface which is associated with the channel + } + + soc_eu_fcEventMask_setEvent(SOC_EVENT_UDMA_SPIM_EOT(drv_data->device_id)); + + drv_data->nb_open++; + + *cs_data = __pi_spim_get_cs_data(drv_data, conf->cs); + + if (!*cs_data) + { // if (*cs_data == 0) + uint32_t clk_div = __pi_spi_clk_div_get(conf->max_baudrate); + // alloc a cs data, need to be in udma reachable ram + struct spim_cs_data *_cs_data = pi_data_malloc(sizeof(struct spim_cs_data)); + if (_cs_data == NULL) + { + DBG_PRINTF("[%s] _cs_data alloc failed\n", __func__); + active_irq(irq); + return -2; + } + if (clk_div > 0xFF) + { + DBG_PRINTF( + "[%s] clk_div, %" PRIu32 ", does not fit into 8 bits. SoC frequency too high.\n", + __func__, clk_div); + active_irq(irq); + return -3; + } + + memset(_cs_data, 0, sizeof(struct spim_cs_data)); + _cs_data->max_baudrate = conf->max_baudrate; + _cs_data->polarity = conf->polarity; + _cs_data->phase = conf->phase; + _cs_data->big_endian = conf->big_endian; + _cs_data->wordsize = conf->wordsize; + _cs_data->cs = conf->cs; + _cs_data->cfg = SPI_CMD_CFG(clk_div, _cs_data->phase, _cs_data->polarity); + // _cs_data->cfg = SPI_CMD_CFG(1,0,0); + *cs_data = _cs_data; + // I insert a new element in the cs_data list + __pi_spim_cs_data_add(drv_data, _cs_data); + } + + active_irq(irq); + + return status; +} + +void __pi_spi_close(struct spim_cs_data *cs_data, struct pi_spi_conf *conf) +{ + DBG_PRINTF("...start -> pi_spi_close...\n"); + + //struct pi_spi_conf *conf = (struct pi_spi_conf *)device->config; + uint32_t irq = deactive_irq(); + unsigned char spi_id = conf->itf; + int periph_id = ARCHI_UDMA_SPIM_ID(spi_id); + int spi_channel = UDMA_EVENT_ID(periph_id); + /* TODO: paste beg */ + //struct spim_cs_data *cs_data = device->data; + struct spim_driver_data *drv_data = cs_data->drv_data; + __pi_spim_cs_data_del(drv_data, cs_data->cs); + /* + ** Number of open SPI interfaces + */ + drv_data->nb_open--; + + /* + ** If you no longer have any SPI interface open, + ** then go clear the memory, with free, and clear the interrupt line. + */ + if (drv_data->nb_open == 0) + { + /* reactivate clock gating for said device */ + plp_udma_cg_set(plp_udma_cg_get() & ~(1 << periph_id)); + soc_eu_fcEventMask_clearEvent(SOC_EVENT_UDMA_SPIM_EOT(drv_data->device_id)); + // hal_soc_eu_clear_fc_mask( SOC_EVENT_UDMA_SPIM_EOT(drv_data->device_id)); + __g_spim_drv_data[drv_data->device_id] = NULL; + pi_default_free(drv_data->drv_fifo, sizeof(drv_data->drv_fifo)); + pi_default_free(drv_data, sizeof(drv_data)); + + active_irq(irq); + return; + } + pi_data_free(cs_data, sizeof(cs_data)); + /* TODO: moved to end return drv_data->nb_open; */ + /* TODO: paste end */ + + active_irq(irq); + DBG_PRINTF("...end -> pi_spi_close...\n"); + return; +} \ No newline at end of file diff --git a/rtos/pulpos/pulp/drivers/spim/src/common_spi.c b/rtos/pulpos/pulp/drivers/spim/src/common_spi.c new file mode 100644 index 00000000..aa867795 --- /dev/null +++ b/rtos/pulpos/pulp/drivers/spim/src/common_spi.c @@ -0,0 +1,168 @@ +/* + * Copyright 2020 GreenWaves Technologies + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +/**----------------------------------------------------------------------------------------------------------------------- + * ? ABOUT + * @author : Orlando Nico, GreenWaves Technologies, Robert Balas + * @email : nico.orlando@studio.unibo.it, balasr@iis.ee.ethz.ch + * @repo : pulp-sdk/rtos/pulpos/pulp/drivers/spim/src + * @createdOn : 28/12/2021 + * @description : Common File for Abstraction Layer SPI for PulpOS and FreeRTOS + *-----------------------------------------------------------------------------------------------------------------------**/ + +/**================================================================================================ + ** INCLUDE + *================================================================================================**/ +#include "common_spi.h" + +/**================================================================================================ + ** FUNCTION + *================================================================================================**/ +uint32_t deactive_irq(void){ +#ifdef USE_PULPOS_TEST + return hal_irq_disable(); +#endif +#ifdef USE_FREERTOS_TEST + return __disable_irq(); +#endif +} + +void active_irq(uint32_t irq){ +#ifdef USE_PULPOS_TEST + hal_irq_restore(irq); +#endif +#ifdef USE_FREERTOS_TEST + __restore_irq(irq); +#endif +} + +uint32_t __pi_spi_get_config(struct spim_cs_data *cs_data) +{ + return cs_data->cfg; +} + +// It is used to put an item in the list. The new item is put at the top of the list. +int32_t __pi_spim_drv_fifo_enqueue(struct spim_cs_data *cs_data, + struct spim_transfer *transfer, + pi_task_t *end_task) +{ + uint32_t irq = deactive_irq(); + struct spim_driver_data *drv_data = cs_data->drv_data; + /* Callback args. */ + end_task->data[0] = (uintptr_t)cs_data; + end_task->data[1] = (uintptr_t)transfer->data; + end_task->data[2] = (uintptr_t)transfer->len; + end_task->data[3] = (uintptr_t)transfer->flags; + end_task->data[4] = (uintptr_t)end_task; + end_task->data[5] = (uintptr_t)transfer->is_send; + end_task->next = NULL; + /* Enqueue transfer in drv fifo. */ + if (drv_data->drv_fifo->fifo_head == NULL) + { + /* Empty fifo. */ + drv_data->drv_fifo->fifo_head = end_task; + drv_data->drv_fifo->fifo_tail = drv_data->drv_fifo->fifo_head; + } + else + { + /* Enqueue to tail. */ + drv_data->drv_fifo->fifo_tail->next = end_task; + drv_data->drv_fifo->fifo_tail = + drv_data->drv_fifo->fifo_tail->next; + } + active_irq(irq); + return 0; +} + +pi_task_t *__pi_spim_drv_fifo_pop(struct spim_driver_data *data) +{ + // DBG_PRINTF("%s:%s:%d: \n", __FILE__, __func__, __LINE__); + pi_task_t *task_return = NULL; + // clean the value in the position 7 of regiter 0x300 + // irq = 1100010000000 + int check_300 = 0; + asm volatile("csrr %0, 0x300" + : "=r"(check_300)); + uint32_t irq = deactive_irq(); + if (data->drv_fifo->fifo_head != NULL) + { + task_return = data->drv_fifo->fifo_head; + data->drv_fifo->fifo_head = data->drv_fifo->fifo_head->next; + if (data->drv_fifo->fifo_head == NULL) + { + data->drv_fifo->fifo_tail = NULL; + } + } + // write in the 0x300 register + active_irq(irq); + return task_return; +} + +struct spim_cs_data *__pi_spim_get_cs_data(struct spim_driver_data *drv_data, int cs) +{ + struct spim_cs_data *cs_cur = drv_data->cs_list; + while (cs_cur != NULL && cs_cur->cs != cs) + { + cs_cur = cs_cur->next; + } + return cs_cur; +} + +void __pi_spim_cs_data_del(struct spim_driver_data *drv_data, + int cs) +{ + struct spim_cs_data *cs_cur = drv_data->cs_list; + struct spim_cs_data *cs_prev = cs_cur; + while (cs_cur != NULL && cs_cur->cs != cs) + { + cs_prev = cs_cur; + cs_cur = cs_cur->next; + } + if (cs_cur) + { + cs_prev->next = cs_cur->next; + cs_cur->next = NULL; + } +} + +void __pi_spim_cs_data_add(struct spim_driver_data *drv_data, struct spim_cs_data *cs_data) +{ + // head insert, most recently allocated should be most recently used + cs_data->drv_data = drv_data; + cs_data->next = drv_data->cs_list; +} + +uint32_t __pi_spi_clk_div_get(uint32_t spi_freq) +{ + uint32_t periph_freq = pi_freq_get(PI_FREQ_DOMAIN_PERIPH); + if (spi_freq < periph_freq) + { + uint32_t clk_div = 0; + clk_div = (periph_freq + spi_freq - 1) / spi_freq; + if (clk_div & 1) + { + clk_div += 1; + } + /* The SPIM always divide by 2 once we activate the divider, + thus increase by 1 in case it is even to not go above the max + frequency. */ + clk_div = clk_div >> 1; + return clk_div; + } + return 0; +} \ No newline at end of file diff --git a/rtos/pulpos/pulp/drivers/spim/src/spim-v3.c b/rtos/pulpos/pulp/drivers/spim/src/spim-v3.c new file mode 100644 index 00000000..a1d0ee1a --- /dev/null +++ b/rtos/pulpos/pulp/drivers/spim/src/spim-v3.c @@ -0,0 +1,181 @@ +/* + * Copyright 2020 GreenWaves Technologies + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +/**----------------------------------------------------------------------------------------------------------------------- + * ? ABOUT + * @author : Orlando Nico, GreenWaves Technologies, Robert Balas + * @email : nico.orlando@studio.unibo.it, balasr@iis.ee.ethz.ch + * @repo : pulp-sdk/rtos/pulpos/pulp/drivers/spi/src + * @createdOn : 11/11/2021 + * @description : PULP-OS + * The driver was tested on a VIP flash memory in RTL, where it was done one + * transfer at a time. + * Multiple concurrent transfers have not been tested. I mean using multiple + * SPI interfaces that do transfers at the same time. + *-----------------------------------------------------------------------------------------------------------------------**/ + +/**================================================================================================ + * * INFO + * Important definitions: + * pulp-sdk/rtos/pulpos/pulp_archi/include/archi/chips/pulp/properties.h + * pulp-sdk/rtos/pulpos/pulp_archi/include/archi/chips/pulp/memory_map.h + *================================================================================================**/ + +/**================================================================================================ + ** INCLUDE + *================================================================================================**/ +#include "abstraction_layer_spi.h" + +/**================================================================================================ + ** DEFINE + *================================================================================================**/ + +/**================================================================================================ + ** STRUCT + *================================================================================================**/ + +/**================================================================================================ + ** PROTOTYPE FUNCTION + *================================================================================================**/ + +/**================================================================================================ + ** GLOBAL VARIABLE + *================================================================================================**/ + +/**================================================================================================ + ** FUNCTION + *================================================================================================**/ +uint32_t pi_spi_get_config(struct pi_device *device) +{ + return __pi_spi_get_config(device->data); +} + +void pi_spi_conf_init(struct pi_spi_conf *conf) +{ + conf->wordsize = PI_SPI_WORDSIZE_8; + conf->big_endian = 0; + conf->max_baudrate = 10000000; + conf->cs = -1; + conf->itf = 0; + conf->polarity = 0; + conf->phase = 0; +} + +int pi_spi_open(struct pi_device *device) +{ + int status = -1; + status = __pi_spi_open((struct spim_cs_data **)(&device->data), (struct pi_spi_conf *)device->config); + return status; +} + +void pi_spi_close(struct pi_device *device) +{ + __pi_spi_close((struct spim_cs_data *)(device->data), (struct pi_spi_conf *)device->config); +} + +void pi_spi_ioctl(struct pi_device *device, uint32_t cmd, void *arg) +{ + /* TODO */ +} + +void pi_spi_send(struct pi_device *device, void *data, size_t len, pi_spi_flags_e flag) +{ + pi_task_t task_block; + pi_task_block(&task_block); + pi_spi_send_async(device, data, len, flag, &task_block); + pi_task_wait_on(&task_block); + pi_task_destroy(&task_block); +} + +void pi_spi_send_async(struct pi_device *device, void *data, size_t len, pi_spi_flags_e flag, pi_task_t *task) +{ + DEBUG_PRINTF("...start -> pi_spi_send_async...\n"); + __pi_spi_send_async(device->data, data, len, flag, task); + DEBUG_PRINTF("...end -> pi_spi_send_async...\n"); +} + +void pi_spi_receive(struct pi_device *device, void *data, size_t len, pi_spi_flags_e flag) +{ + DEBUG_PRINTF("...start -> pi_spi_receive...\n"); + pi_task_t task_block; + pi_task_block(&task_block); + DEBUG_PRINTF("%s:%s:%d pi_task_block(%p)\n", __FILE__, __func__, __LINE__, &task_block); + pi_spi_receive_async(device, data, len, flag, &task_block); + DEBUG_PRINTF("%s:%s:%d pi_spi_receive_async(device, data, len, flag, &task_block)\n", __FILE__, __func__, __LINE__); + // This function allows to wait on an event task until the event occurs. + pi_task_wait_on(&task_block); + DEBUG_PRINTF("%s:%s:%d pi_task_wait_on(%p)\n", __FILE__, __func__, __LINE__, &task_block); + pi_task_destroy(&task_block); + DEBUG_PRINTF("%s:%s:%d pi_task_destroy(%p)\n", __FILE__, __func__, __LINE__, &task_block); + DEBUG_PRINTF("...end -> pi_spi_receive...\n"); +} + +void pi_spi_receive_async(struct pi_device *device, void *data, size_t len, + pi_spi_flags_e flag, pi_task_t *task) +{ + DEBUG_PRINTF("...start -> pi_spi_receive_async...\n"); + __pi_spi_receive_async(device->data, data, len, flag, task); + DEBUG_PRINTF("...end -> pi_spi_receive_async...\n"); +} + +void pi_spi_receive_with_ucode(struct pi_device *device, void *data, size_t len, + pi_spi_flags_e flags, int ucode_size, + void *ucode) +{ + pi_task_t task_block; + pi_task_block(&task_block); + __pi_spi_receive_async_with_ucode(device->data, data, len, flags, + ucode_size, ucode, &task_block); + pi_task_wait_on(&task_block); + pi_task_destroy(&task_block); +} + +void pi_spi_send_with_ucode(struct pi_device *device, void *data, size_t len, + pi_spi_flags_e flags, int ucode_size, void *ucode) +{ + pi_task_t task_block; + pi_task_block(&task_block); + __pi_spi_send_async_with_ucode(device->data, data, len, flags, + ucode_size, ucode, &task_block); + pi_task_wait_on(&task_block); + pi_task_destroy(&task_block); +} + +void pi_spi_transfer(struct pi_device *device, void *tx_data, void *rx_data, + size_t len, pi_spi_flags_e flag) +{ + + /* TODO */ + pi_task_t task_block; + pi_task_block(&task_block); + DEBUG_PRINTF("%s:%s:%d\n", __FILE__, __func__, __LINE__); + pi_spi_transfer_async(device, tx_data, rx_data, len, flag, &task_block); + DEBUG_PRINTF("%s:%s:%d\n", __FILE__, __func__, __LINE__); + pi_task_wait_on(&task_block); + DEBUG_PRINTF("%s:%s:%d\n", __FILE__, __func__, __LINE__); + pi_task_destroy(&task_block); + DEBUG_PRINTF("%s:%s:%d\n", __FILE__, __func__, __LINE__); +} + +void pi_spi_transfer_async(struct pi_device *device, void *tx_data, + void *rx_data, size_t len, pi_spi_flags_e flag, + pi_task_t *task) +{ + /* TODO */ + __pi_spi_xfer_async(device->data, tx_data, rx_data, len, flag, task); +} \ No newline at end of file From 88354290347c78d0f1408cc998cd3275cf00a6bf Mon Sep 17 00:00:00 2001 From: orlandonico Date: Sat, 12 Feb 2022 15:00:45 +0100 Subject: [PATCH 77/86] rtos/pulpos/pulp: add feature interrupt --- rtos/pulpos/pulp/drivers/i2c/src/abstraction_layer_i2c.c | 8 ++++---- rtos/pulpos/pulp/drivers/spim/src/abstraction_layer_spi.c | 4 +++- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/rtos/pulpos/pulp/drivers/i2c/src/abstraction_layer_i2c.c b/rtos/pulpos/pulp/drivers/i2c/src/abstraction_layer_i2c.c index 52821c45..60bd61a9 100644 --- a/rtos/pulpos/pulp/drivers/i2c/src/abstraction_layer_i2c.c +++ b/rtos/pulpos/pulp/drivers/i2c/src/abstraction_layer_i2c.c @@ -53,8 +53,8 @@ void __pi_i2c_eot_handler(int event, void *arg) { I2C_TRACE("__pi_i2c_eot_handler\n"); uint32_t evt = (uint32_t)event; - pos_udma_channel_t *channel = arg; - uint32_t periph_id = channel->base; + uint32_t periph_id = (evt >> ARCHI_SOC_EVENT_UDMA_NB_CHANNEL_EVT_LOG2) - ARCHI_UDMA_I2C_ID(0); + struct i2c_itf_data_s *driver_data = g_i2c_itf_data[periph_id]; @@ -87,8 +87,8 @@ void __pi_i2c_cmd_handler(int event, void *arg) { //("__pi_i2c_cmd_handler\n"); uint32_t evt = (uint32_t)event; - pos_udma_channel_t *channel = arg; - uint32_t periph_id = channel->base; + uint32_t periph_id = (evt >> ARCHI_SOC_EVENT_UDMA_NB_CHANNEL_EVT_LOG2) - ARCHI_UDMA_I2C_ID(0); + struct i2c_itf_data_s *driver_data = g_i2c_itf_data[periph_id]; /* diff --git a/rtos/pulpos/pulp/drivers/spim/src/abstraction_layer_spi.c b/rtos/pulpos/pulp/drivers/spim/src/abstraction_layer_spi.c index e587dced..29fd7ce5 100644 --- a/rtos/pulpos/pulp/drivers/spim/src/abstraction_layer_spi.c +++ b/rtos/pulpos/pulp/drivers/spim/src/abstraction_layer_spi.c @@ -529,7 +529,9 @@ void pos_spi_handle_copy(int event, void *arg) pos_udma_channel_t *channel = arg; pi_task_t *pending_1 = channel->pendings[1]; pi_task_t *pending_0 = channel->pendings[0]; - uint32_t spi_id = channel->base; + //uint32_t spi_id = channel->base; + uint32_t evt = (uint32_t)event; + uint32_t spi_id = (evt >> ARCHI_SOC_EVENT_UDMA_NB_CHANNEL_EVT_LOG2) - ARCHI_UDMA_SPIM_ID(0); struct spim_driver_data *drv_data = __g_spim_drv_data[spi_id]; pi_task_t *pending_first = __pi_spim_drv_fifo_pop(drv_data); channel->pendings[0] = pending_1; From 0894bf7cc1b7f78d2a1d0f8f801374c571b69fe4 Mon Sep 17 00:00:00 2001 From: orlandonico Date: Sat, 12 Feb 2022 16:46:07 +0100 Subject: [PATCH 78/86] rtos/pulpos/pulp: driver i2c new version --- .../i2c/include/abstraction_layer_i2c.h | 26 ++++++------ .../drivers/i2c/src/abstraction_layer_i2c.c | 42 +++++++++---------- 2 files changed, 33 insertions(+), 35 deletions(-) diff --git a/rtos/pulpos/pulp/drivers/i2c/include/abstraction_layer_i2c.h b/rtos/pulpos/pulp/drivers/i2c/include/abstraction_layer_i2c.h index 004c33b2..2093ec8f 100644 --- a/rtos/pulpos/pulp/drivers/i2c/include/abstraction_layer_i2c.h +++ b/rtos/pulpos/pulp/drivers/i2c/include/abstraction_layer_i2c.h @@ -22,7 +22,7 @@ * @repo : pulp-sdk/rtos/pulpos/pulp/drivers/i2c/include * @createdOn : /01/2022 * @description : PulpOS - * The driver was tested on a VIP flash memory in RTL, where it was done one + * The driver was tested on a VIP flash memory in RTL, where it was done one * transfer at a time. * Multiple concurrent transfers have not been tested. I mean using multiple * I2C interfaces that do transfers at the same time. @@ -47,17 +47,17 @@ /* Number of the interrupt to be obtained based on the number of the interface */ #define SOC_EVENT_UDMA_I2C_RX(id) \ - ((ARCHI_UDMA_I2C_ID(id) << ARCHI_SOC_EVENT_UDMA_NB_CHANNEL_EVT_LOG2) + \ - UDMA_EVENT_OFFSET_RX) + ((ARCHI_UDMA_I2C_ID(id) << ARCHI_SOC_EVENT_UDMA_NB_CHANNEL_EVT_LOG2) + \ + UDMA_EVENT_OFFSET_RX) #define SOC_EVENT_UDMA_I2C_TX(id) \ - ((ARCHI_UDMA_I2C_ID(id) << ARCHI_SOC_EVENT_UDMA_NB_CHANNEL_EVT_LOG2) + \ - UDMA_EVENT_OFFSET_TX) + ((ARCHI_UDMA_I2C_ID(id) << ARCHI_SOC_EVENT_UDMA_NB_CHANNEL_EVT_LOG2) + \ + UDMA_EVENT_OFFSET_TX) #define SOC_EVENT_UDMA_I2C_CMD(id) \ - ((ARCHI_UDMA_I2C_ID(id) << ARCHI_SOC_EVENT_UDMA_NB_CHANNEL_EVT_LOG2) + \ - UDMA_EVENT_OFFSET_CMD) + ((ARCHI_UDMA_I2C_ID(id) << ARCHI_SOC_EVENT_UDMA_NB_CHANNEL_EVT_LOG2) + \ + UDMA_EVENT_OFFSET_CMD) #define SOC_EVENT_UDMA_I2C_EOT(id) \ - ((ARCHI_UDMA_I2C_ID(id) << ARCHI_SOC_EVENT_UDMA_NB_CHANNEL_EVT_LOG2) + \ - UDMA_EVENT_OFFSET_EOT) + ((ARCHI_UDMA_I2C_ID(id) << ARCHI_SOC_EVENT_UDMA_NB_CHANNEL_EVT_LOG2) + \ + UDMA_EVENT_OFFSET_EOT) /**================================================================================================ ** STRUCT *================================================================================================**/ @@ -66,13 +66,13 @@ ** PROTOTYPE FUNCTION *================================================================================================**/ /* IRQ handler for tx event */ -void __pi_i2c_tx_handler(int event, void *arg); +void __pi_i2c_tx_handler(int event, uint8_t itf); /* IRQ handler for rx event */ -void __pi_i2c_rx_handler(int event, void *arg); +void __pi_i2c_rx_handler(int event, uint8_t itf); /* IRQ handler for eot event */ -void __pi_i2c_eot_handler(int event, void *arg); +void __pi_i2c_eot_handler(int event, uint8_t itf); /* IRQ handler for cmd event */ -void __pi_i2c_cmd_handler(int event, void *arg); +void __pi_i2c_cmd_handler(int event, uint8_t itf); /* Free a task */ void __pi_irq_handle_end_of_task(pi_task_t *task); /* Copy in UDMA. */ diff --git a/rtos/pulpos/pulp/drivers/i2c/src/abstraction_layer_i2c.c b/rtos/pulpos/pulp/drivers/i2c/src/abstraction_layer_i2c.c index 60bd61a9..861ec4ea 100644 --- a/rtos/pulpos/pulp/drivers/i2c/src/abstraction_layer_i2c.c +++ b/rtos/pulpos/pulp/drivers/i2c/src/abstraction_layer_i2c.c @@ -49,12 +49,11 @@ PI_L2 pos_udma_channel_t i2c_tx_channel; * regular UDMA v2 says its done when its udma fifos are empty but this might * not coincide with when the i2c signalling has finished. This is important * when you try to detect slave ACK/NACKs. */ -void __pi_i2c_eot_handler(int event, void *arg) +void __pi_i2c_eot_handler(int event, uint8_t itf) { I2C_TRACE("__pi_i2c_eot_handler\n"); uint32_t evt = (uint32_t)event; - uint32_t periph_id = (evt >> ARCHI_SOC_EVENT_UDMA_NB_CHANNEL_EVT_LOG2) - ARCHI_UDMA_I2C_ID(0); - + int periph_id = itf; struct i2c_itf_data_s *driver_data = g_i2c_itf_data[periph_id]; @@ -78,17 +77,15 @@ void __pi_i2c_eot_handler(int event, void *arg) } #endif -void __pi_i2c_rx_handler(int event, void *arg) +void __pi_i2c_rx_handler(int event, uint8_t itf) { I2C_TRACE("rx event \n"); } -void __pi_i2c_cmd_handler(int event, void *arg) +void __pi_i2c_cmd_handler(int event, uint8_t itf) { - //("__pi_i2c_cmd_handler\n"); uint32_t evt = (uint32_t)event; - uint32_t periph_id = (evt >> ARCHI_SOC_EVENT_UDMA_NB_CHANNEL_EVT_LOG2) - ARCHI_UDMA_I2C_ID(0); - + int periph_id = itf; struct i2c_itf_data_s *driver_data = g_i2c_itf_data[periph_id]; /* @@ -134,7 +131,7 @@ void __pi_i2c_cmd_handler(int event, void *arg) } } -void __pi_i2c_tx_handler(int event, void *arg) +void __pi_i2c_tx_handler(int event, uint8_t itf) { I2C_TRACE("tx event \n"); } @@ -158,24 +155,23 @@ void __pi_irq_handle_end_of_task(pi_task_t *task) void pos_i2c_handle_copy(int event, void *arg) { I2C_TRACE("event %d\n", event); - pos_udma_channel_t *channel = arg; - pi_task_t *pending_0 = channel->pendings[0]; - uint8_t type_channel = pending_0->data[3]; - if (event == SOC_EVENT_UDMA_I2C_RX(channel->base)) + uint32_t itf = (event >> ARCHI_SOC_EVENT_UDMA_NB_CHANNEL_EVT_LOG2) - ARCHI_UDMA_I2C_ID(0); + + if (event == SOC_EVENT_UDMA_I2C_RX(itf)) { - __pi_i2c_rx_handler(event, channel); + __pi_i2c_rx_handler(event, itf); } - else if (event == SOC_EVENT_UDMA_I2C_TX(channel->base)) + else if (event == SOC_EVENT_UDMA_I2C_TX(itf)) { - __pi_i2c_tx_handler(event, channel); + __pi_i2c_tx_handler(event, itf); } - else if (event == SOC_EVENT_UDMA_I2C_CMD(channel->base)) + else if (event == SOC_EVENT_UDMA_I2C_CMD(itf)) { - __pi_i2c_cmd_handler(event, channel); + __pi_i2c_cmd_handler(event, itf); } - else if (event == SOC_EVENT_UDMA_I2C_EOT(channel->base)) + else if (event == SOC_EVENT_UDMA_I2C_EOT(itf)) { - __pi_i2c_eot_handler(event, channel); + __pi_i2c_eot_handler(event, itf); } else { @@ -354,7 +350,7 @@ void __pi_i2c_copy_exec_read(struct i2c_itf_data_s *driver_data, struct pi_task int size_full = size + 3; uint32_t buffer_to_send[size_full]; struct i2c_cs_data_s *cs_data = (struct i2c_cs_data_s *)task->data[4]; - + driver_data->rx_channel->pendings[0]=task; if (size == 0) return; @@ -414,6 +410,7 @@ void __pi_i2c_copy_exec_write(struct i2c_itf_data_s *driver_data, struct pi_task uint32_t count = 0; uint32_t i = 0; struct i2c_cs_data_s *cs_data = (struct i2c_cs_data_s *)task->data[4]; + driver_data->tx_channel->pendings[0]=task; start_bit = flags & PI_I2C_XFER_NO_START; /* Header. */ @@ -468,7 +465,8 @@ void __pi_i2c_copy(struct i2c_cs_data_s *cs_data, uint32_t l2_buff, uint32_t len task->data[1] = length; task->data[2] = flags; task->data[3] = channel; - task->data[4] = (uint32_t)cs_data; + task->data[4] = (uint32_t)cs_data; + task->data[5] = cs_data->device_id; task->id = PI_TASK_NONE_ID; task->next = NULL; struct i2c_itf_data_s *driver_data = g_i2c_itf_data[cs_data->device_id]; From 22b4ea50d89bb1c593de2388c2b5ed018f433d21 Mon Sep 17 00:00:00 2001 From: orlandonico Date: Tue, 15 Feb 2022 15:26:18 +0100 Subject: [PATCH 79/86] rtos/pulpos/pulp: fix size transfer --- rtos/pulpos/pulp/drivers/i2c/include/common_i2c.h | 5 +++-- .../pulp/drivers/i2c/src/abstraction_layer_i2c.c | 10 +++------- 2 files changed, 6 insertions(+), 9 deletions(-) diff --git a/rtos/pulpos/pulp/drivers/i2c/include/common_i2c.h b/rtos/pulpos/pulp/drivers/i2c/include/common_i2c.h index f6379450..3d5db317 100644 --- a/rtos/pulpos/pulp/drivers/i2c/include/common_i2c.h +++ b/rtos/pulpos/pulp/drivers/i2c/include/common_i2c.h @@ -74,11 +74,12 @@ #endif /* Length of i2c cmd buffer. */ -#define __PI_I2C_CMD_BUFF_SIZE (256) +//0xFF, where 0x3 is the number of command to send before buffer +#define __PI_I2C_CMD_BUFF_SIZE (0x102) /* Lenght of i2c stop command sequence. */ #define __PI_I2C_STOP_CMD_SIZE (3) /* Lenght of i2c eot subset of stop command sequence. */ -#define __PI_I2C_ONLY_EOT_CMD_SIZE (3) +#define __PI_I2C_ONLY_EOT_CMD_SIZE (2) /* Defines for read & write adress access. */ #define ADDRESS_WRITE 0x0 diff --git a/rtos/pulpos/pulp/drivers/i2c/src/abstraction_layer_i2c.c b/rtos/pulpos/pulp/drivers/i2c/src/abstraction_layer_i2c.c index 861ec4ea..b320c5a5 100644 --- a/rtos/pulpos/pulp/drivers/i2c/src/abstraction_layer_i2c.c +++ b/rtos/pulpos/pulp/drivers/i2c/src/abstraction_layer_i2c.c @@ -36,6 +36,7 @@ ** GLOBAL VARIABLE *================================================================================================**/ struct i2c_itf_data_s *g_i2c_itf_data[ARCHI_UDMA_NB_I2C] = {0}; +uint32_t buffer_to_write[MAX_SIZE]; PI_L2 int i2c_channel; PI_L2 pos_udma_channel_t i2c_rx_channel; PI_L2 pos_udma_channel_t i2c_tx_channel; @@ -346,9 +347,7 @@ void __pi_i2c_copy_exec_read(struct i2c_itf_data_s *driver_data, struct pi_task uint32_t size = task->data[1]; uint32_t flags = task->data[2]; uint32_t channel = task->data[3]; - int i = 0; int size_full = size + 3; - uint32_t buffer_to_send[size_full]; struct i2c_cs_data_s *cs_data = (struct i2c_cs_data_s *)task->data[4]; driver_data->rx_channel->pendings[0]=task; if (size == 0) @@ -405,10 +404,7 @@ void __pi_i2c_copy_exec_write(struct i2c_itf_data_s *driver_data, struct pi_task uint32_t size = task->data[1]; uint32_t flags = task->data[2]; uint32_t channel = task->data[3]; - uint32_t buffer_to_write[size]; uint8_t *buffer_copy = (uint8_t *)task->data[0]; - uint32_t count = 0; - uint32_t i = 0; struct i2c_cs_data_s *cs_data = (struct i2c_cs_data_s *)task->data[4]; driver_data->tx_channel->pendings[0]=task; start_bit = flags & PI_I2C_XFER_NO_START; @@ -441,9 +437,9 @@ void __pi_i2c_copy_exec_write(struct i2c_itf_data_s *driver_data, struct pi_task /* Data. */ if (size > 0) { - while (count < size) + for(int j=0; j Date: Tue, 15 Feb 2022 15:27:43 +0100 Subject: [PATCH 80/86] tests: update test --- tests/i2c_eeprom_async/FreeRTOSConfig.h | 138 ++++++ tests/i2c_eeprom_async/Makefile | 55 ++- tests/i2c_eeprom_async/i2c_eeprom_async.c | 195 +++++++++ tests/i2c_eeprom_async/wave_i2c.do | 505 ++++++++++++++++++++++ 4 files changed, 888 insertions(+), 5 deletions(-) create mode 100644 tests/i2c_eeprom_async/FreeRTOSConfig.h create mode 100644 tests/i2c_eeprom_async/i2c_eeprom_async.c create mode 100644 tests/i2c_eeprom_async/wave_i2c.do diff --git a/tests/i2c_eeprom_async/FreeRTOSConfig.h b/tests/i2c_eeprom_async/FreeRTOSConfig.h new file mode 100644 index 00000000..d3b915e5 --- /dev/null +++ b/tests/i2c_eeprom_async/FreeRTOSConfig.h @@ -0,0 +1,138 @@ +/* + * FreeRTOS Kernel V10.3.0 + * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright (C) 2020 ETH Zurich + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * + * http://www.FreeRTOS.org + * http://aws.amazon.com/freertos + * + * 1 tab == 4 spaces! + */ + +#ifndef FREERTOS_CONFIG_H +#define FREERTOS_CONFIG_H + +/* #include "clock_config.h" */ /* TODO: figure out our FLL/clock setup */ + +#define DEFAULT_SYSTEM_CLOCK 50000000u /* Default System clock value */ + +/*----------------------------------------------------------- + * Application specific definitions. + * + * These definitions should be adjusted for your particular hardware and + * application requirements. + * + * THESE PARAMETERS ARE DESCRIBED WITHIN THE 'CONFIGURATION' SECTION OF THE + * FreeRTOS API DOCUMENTATION AVAILABLE ON THE FreeRTOS.org WEB SITE. + * + * See http://www.freertos.org/a00110.html. + *----------------------------------------------------------*/ + +#include +#ifdef __PULP_USE_LIBC +#include +#endif + +/* Ensure stdint is only used by the compiler, and not the assembler. */ +#if defined(__GNUC__) +#include +#endif +/* There is no CLINT so the base address must be set to 0. */ +#define configCLINT_BASE_ADDRESS 0 +#define configUSE_PREEMPTION 1 +#define configUSE_IDLE_HOOK 0 +#define configUSE_TICK_HOOK 0 +#define configCPU_CLOCK_HZ DEFAULT_SYSTEM_CLOCK +#define configTICK_RATE_HZ ((TickType_t)1000) +#define configMAX_PRIORITIES (5) +/* Can be as low as 60 but some of the demo tasks that use this constant require it to be higher. */ +#define configMINIMAL_STACK_SIZE ((unsigned short)400) +/* we want to put the heap into special section */ +#define configAPPLICATION_ALLOCATED_HEAP 1 +#define configTOTAL_HEAP_SIZE ((size_t)(16 * 1024)) +#define configMAX_TASK_NAME_LEN (16) +#define configUSE_TRACE_FACILITY 1 /* TODO: 0 */ +#define configUSE_16_BIT_TICKS 0 +#define configIDLE_SHOULD_YIELD 0 +#define configUSE_MUTEXES 1 +#define configQUEUE_REGISTRY_SIZE 8 +#define configCHECK_FOR_STACK_OVERFLOW 2 +#define configUSE_RECURSIVE_MUTEXES 1 +#define configUSE_MALLOC_FAILED_HOOK 1 +#define configUSE_APPLICATION_TASK_TAG 0 +#define configUSE_COUNTING_SEMAPHORES 1 +#define configGENERATE_RUN_TIME_STATS 0 + +// TODO: investigate (gw) +//#define configOVERRIDE_DEFAULT_TICK_CONFIGURATION 1 +//#define configRECORD_STACK_HIGH_ADDRESS 1 +//#define configUSE_POSIX_ERRNO 1 + +/* newlib reentrancy */ +#define configUSE_NEWLIB_REENTRANT 1 +/* Co-routine definitions. */ +#define configUSE_CO_ROUTINES 0 +#define configMAX_CO_ROUTINE_PRIORITIES (2) + +/* Software timer definitions. */ +#define configUSE_TIMERS 1 +#define configTIMER_TASK_PRIORITY (configMAX_PRIORITIES - 1) +#define configTIMER_QUEUE_LENGTH 4 +#define configTIMER_TASK_STACK_DEPTH (configMINIMAL_STACK_SIZE) + +/* Task priorities. Allow these to be overridden. */ +#ifndef uartPRIMARY_PRIORITY +#define uartPRIMARY_PRIORITY (configMAX_PRIORITIES - 3) +#endif + +/* Set the following definitions to 1 to include the API function, or zero +to exclude the API function. */ +#define INCLUDE_vTaskPrioritySet 1 +#define INCLUDE_uxTaskPriorityGet 1 +#define INCLUDE_vTaskDelete 1 +#define INCLUDE_vTaskCleanUpResources 1 +#define INCLUDE_vTaskSuspend 1 +#define INCLUDE_vTaskDelayUntil 1 +#define INCLUDE_vTaskDelay 1 +#define INCLUDE_eTaskGetState 1 +#define INCLUDE_xTimerPendFunctionCall 1 +#define INCLUDE_xTaskAbortDelay 1 +#define INCLUDE_xTaskGetHandle 1 +#define INCLUDE_xSemaphoreGetMutexHolder 1 + +/* Normal assert() semantics without relying on the provision of an assert.h +header file. */ +#ifdef __PULP_USE_LIBC +#define configASSERT(x) assert(x) +#else +#define configASSERT(x) \ + do { \ + if ((x) == 0) { \ + taskDISABLE_INTERRUPTS(); \ + for (;;) \ + ; \ + } \ + } while (0) +#endif + +#define configUSE_PORT_OPTIMISED_TASK_SELECTION 1 +#define configKERNEL_INTERRUPT_PRIORITY 7 + +#endif /* FREERTOS_CONFIG_H */ diff --git a/tests/i2c_eeprom_async/Makefile b/tests/i2c_eeprom_async/Makefile index ed6ac75c..79a18a11 100644 --- a/tests/i2c_eeprom_async/Makefile +++ b/tests/i2c_eeprom_async/Makefile @@ -1,6 +1,9 @@ -APP = test_i2c_eeprom_async -APP_SRCS += test_i2c_eeprom_async.c +USE_PULPOS_TEST=1 +#USE_FREERTOS_TEST=1 +ifdef USE_PULPOS_TEST +APP = i2c_eeprom_async +APP_SRCS += i2c_eeprom_async.c ifdef USE_CLUSTER APP_CFLAGS += -DCLUSTER -DNUM_CLUSTER=$(USE_CLUSTER) ifdef NUM_CORES @@ -9,10 +12,52 @@ else APP_CFLAGS += -DNUM_CORES=1 endif endif - -APP_CFLAGS += -Os -g +APP_CFLAGS += -Os -g -DUSE_PULPOS_TEST -DCONFIG_UDMA_I2C_EOT -DCONFIG_UDMA_I2C_ACK APP_LDFLAGS += -Os -g - CONFIG_I2C = 1 include $(RULES_DIR)/pmsis_rules.mk +endif + +ifdef USE_FREERTOS_TEST +PROJ_ROOT = $(shell git rev-parse --show-toplevel) + +# good defaults for many environment variables +include $(PROJ_ROOT)/default_flags.mk + +# manually set CFLAGS to disable some warnings (-Wconversion) +CFLAGS = \ + -march=rv32imac -mabi=ilp32 -msmall-data-limit=8 -mno-save-restore \ + -fsigned-char -ffunction-sections -fdata-sections \ + -std=gnu11 \ + -Wall -Wextra -Wshadow -Wformat=2 -Wundef \ + -Wno-unused-parameter -Wno-unused-variable \ + -Og -g3 \ + -D__PULP__=1 -DDEBUG \ + -Wstack-usage=1024 -DUSE_FREERTOS_TEST -DCONFIG_UDMA_I2C_EOT -DCONFIG_UDMA_I2C_ACK + +CONFIG_CLUSTER=n +# rtos, pulp and pmsis sources +include $(PROJ_ROOT)/default_srcs.mk + +# application name +PROG = i2c_eeprom_async + +# application/user specific code +USER_SRCS = i2c_eeprom_async.c + +# FreeRTOS.h +CPPFLAGS += $(addprefix -I$(USER_DIR)/, ".") + +CPPFLAGS += -DportasmHANDLE_INTERRUPT=vSystemIrqHandler +CPPFLAGS += -DUSE_STDIO +## number of error check polls before the tests is conclueded as being successful +CPPFLAGS += -DSTREAM_CHECK_ITERATIONS=2 + +# Uncomment to disable Additional reigsters (HW Loops) +#CPPFLAGS += -DportasmSKIP_ADDITIONAL_REGISTERS + +# compile, simulation and analysis targets +include $(PROJ_ROOT)/default_targets.mk +endif + diff --git a/tests/i2c_eeprom_async/i2c_eeprom_async.c b/tests/i2c_eeprom_async/i2c_eeprom_async.c new file mode 100644 index 00000000..c5a00bf6 --- /dev/null +++ b/tests/i2c_eeprom_async/i2c_eeprom_async.c @@ -0,0 +1,195 @@ +/* + * Copyright 2021 Greenwaves Technologies + * Copyright 2021 ETH Zurich + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + * Modify by Nico Orlando, nico.orlando@studio.unibo.it + */ + +/* + * Test 24FC1025 eeprom (located at i2c address 0x50 in bus 0) + */ +#ifdef USE_PULPOS_TEST +#include "pmsis.h" +#include +#endif + +#ifdef USE_FREERTOS_TEST +/* FreeRTOS kernel includes. */ +#include +#include + +/* c stdlib */ +#include +#include +#include +#include +#include + +/* system includes */ +#include "system.h" +#include "timer_irq.h" +#include "fll.h" +#include "irq.h" +#include "gpio.h" +#include "i2c.h" +#include "udma.h" +#include "udma_i2c.h" +#include "pi_errno.h" +#include "pmsis_task.h" +#include "fc_event.h" +#include "freq.h" +#include "debug.h" +/* pmsis */ +#include "target.h" +#include "os.h" +#include "pi_errno.h" + +void vApplicationMallocFailedHook(void); +void vApplicationStackOverflowHook(TaskHandle_t pxTask, char *pcTaskName); +#endif + +/* I2C device/peripheral id */ +#define I2C_DEV_ID 0 +/* I2C address of the eeprom */ +#define I2C_EEPROM_ADDR 0x50 + +static struct pi_device i2c; + +void eeprom(void) +{ + /* initalize i2c */ + struct pi_i2c_conf i2c_conf; + + printf("opening eeprom on i2c bus %d\n", I2C_DEV_ID); + + pi_i2c_conf_init(&i2c_conf); + i2c_conf.itf = I2C_DEV_ID; + i2c_conf.max_baudrate = 100000; + pi_i2c_conf_set_slave_addr(&i2c_conf, I2C_EEPROM_ADDR << 1, 0); + /* pi_i2c_conf_set_wait_cycles(conf, 2048); */ + + pi_open_from_conf(&i2c, &i2c_conf); + + if (pi_i2c_open(&i2c)) { + printf("i2c open failed\n"); + exit(1); + } + + uint8_t expected_rx[] = { + 0xca, + 0x00, + 0xde, + 0xca, + 0xc0, + 0xfe + }; + uint8_t rx[sizeof(expected_rx)] = {0}; + + uint8_t tx[] = { + 0x00, /* addr msb */ + 0x00, /* addr lsb */ + expected_rx[0], + expected_rx[1], + expected_rx[2], + expected_rx[3], + expected_rx[4], + expected_rx[5] + }; + + /* the address of our i2c eeprom is normally 0x50 if you want to + * specifically test that */ + printf("writing eeprom\n"); + + pi_task_t task_write_buffer; + pi_i2c_write_async(&i2c, tx, sizeof(tx), PI_I2C_XFER_START | PI_I2C_XFER_STOP, pi_task_block(&task_write_buffer)); + pi_task_wait_on(&task_write_buffer); + /* Wait for write to finish. It takes 5 million ns = 5 ms to finish. */ + for (volatile int i = 0; i < 100000; ++i) + i++; + + printf("reading eeprom\n"); + uint8_t eeprom_addr[] = { + 0x00, /* addr msb */ + 0x00, /* addr lsb */ + }; + + pi_task_t task_write_addr; + pi_i2c_write_async(&i2c, eeprom_addr, sizeof(eeprom_addr), PI_I2C_XFER_START | PI_I2C_XFER_NO_STOP, pi_task_block(&task_write_addr)); + //pi_i2c_write(&i2c, eeprom_addr, sizeof(eeprom_addr), PI_I2C_XFER_START | PI_I2C_XFER_NO_STOP); + pi_task_t task_read_buffer; + pi_i2c_read_async(&i2c, rx, sizeof(rx), PI_I2C_XFER_START | PI_I2C_XFER_STOP, pi_task_block(&task_read_buffer)); + pi_task_wait_on(&task_write_addr); + pi_task_wait_on(&task_read_buffer); + + pi_task_destroy(&task_write_buffer); + pi_task_destroy(&task_write_addr); + pi_task_destroy(&task_read_buffer); + + pi_i2c_close(&i2c); + + printf("comparing\n"); + int error = 0; + for (int i = 0; i < sizeof(rx); i++) { + if (rx[i] != expected_rx[i]) { + printf("rx[%d]=0x%0x differs from expected rx[%d]=0x%0x\n", + i, rx[i], i, expected_rx[i]); + error++; + } else { + printf("rx[%d]=0x%0x ok\n", i, rx[i]); + } + } + if (error != 0) + exit(1); + exit(0); +} + +int main(void) +{ + #ifdef USE_FREERTOS_TEST + /* Init board hardware. */ + system_init(); + printf("\n\n\t *** FreeRTOS Test I2C async *** \n\n"); + #else + printf("\n\n\t *** PULP-OS Test I2C async *** \n\n"); + #endif + + return pmsis_kickoff((void *)eeprom); +} + +#ifdef USE_FREERTOS_TEST +/* Some debugging help */ +void vApplicationMallocFailedHook(void) +{ + taskDISABLE_INTERRUPTS(); + printf("error: application malloc failed\n"); + __asm volatile("ebreak"); + for (;;) + ; +} + +void vApplicationStackOverflowHook(TaskHandle_t pxTask, char *pcTaskName) +{ + (void)pcTaskName; + (void)pxTask; + + taskDISABLE_INTERRUPTS(); + printf("error: stack overflow\n"); + __asm volatile("ebreak"); + for (;;) + ; +} +#endif + diff --git a/tests/i2c_eeprom_async/wave_i2c.do b/tests/i2c_eeprom_async/wave_i2c.do new file mode 100644 index 00000000..d4a8d428 --- /dev/null +++ b/tests/i2c_eeprom_async/wave_i2c.do @@ -0,0 +1,505 @@ +onerror {resume} +quietly WaveActivateNextPane {} 0 +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/L2_ro_wen_o +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/L2_ro_req_o +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/L2_ro_gnt_i +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/L2_ro_addr_o +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/L2_ro_be_o +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/L2_ro_wdata_o +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/L2_ro_rvalid_i +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/L2_ro_rdata_i +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/L2_wo_wen_o +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/L2_wo_req_o +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/L2_wo_gnt_i +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/L2_wo_addr_o +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/L2_wo_wdata_o +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/L2_wo_be_o +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/L2_wo_rvalid_i +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/L2_wo_rdata_i +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/dft_test_mode_i +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/dft_cg_enable_i +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/sys_clk_i +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/sys_resetn_i +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/periph_clk_i +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/udma_apb_paddr +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/udma_apb_pwdata +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/udma_apb_pwrite +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/udma_apb_psel +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/udma_apb_penable +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/udma_apb_prdata +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/udma_apb_pready +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/udma_apb_pslverr +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/events_o +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/event_valid_i +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/event_data_i +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/event_ready_o +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/spi_clk +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/spi_csn +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/spi_oen +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/spi_sdo +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/spi_sdi +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i2c_scl_i +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i2c_scl_o +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i2c_scl_oe +add wave -noupdate -group udma_subsystem -expand /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i2c_sda_i +add wave -noupdate -group udma_subsystem -expand /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i2c_sda_o +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i2c_sda_oe +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/cam_clk_i +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/cam_data_i +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/cam_hsync_i +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/cam_vsync_i +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/uart_rx_i +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/uart_tx_o +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/sdio_clk_o +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/sdio_cmd_o +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/sdio_cmd_i +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/sdio_cmd_oen_o +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/sdio_data_o +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/sdio_data_i +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/sdio_data_oen_o +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i2s_slave_sd0_i +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i2s_slave_sd1_i +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i2s_slave_ws_i +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i2s_slave_ws_o +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i2s_slave_ws_oe +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i2s_slave_sck_i +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i2s_slave_sck_o +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i2s_slave_sck_oe +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/hyper_cs_no +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/hyper_ck_o +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/hyper_ck_no +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/hyper_rwds_o +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/hyper_rwds_i +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/hyper_rwds_oe_o +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/hyper_dq_i +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/hyper_dq_o +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/hyper_dq_oe_o +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/hyper_reset_no +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_tx_cfg_startaddr +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_tx_cfg_size +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_tx_cfg_continuous +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_tx_cfg_en +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_tx_cfg_clr +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_tx_ch_req +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_tx_ch_gnt +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_tx_ch_data +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_tx_ch_valid +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_tx_ch_ready +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_tx_ch_datasize +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_tx_ch_destination +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_tx_ch_events +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_tx_ch_en +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_tx_ch_pending +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_tx_ch_curr_addr +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_tx_ch_bytes_left +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_rx_cfg_startaddr +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_rx_cfg_size +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_rx_cfg_continuous +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_rx_cfg_en +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_rx_cfg_clr +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_rx_cfg_stream +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_rx_cfg_stream_id +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_rx_ch_data +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_rx_ch_valid +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_rx_ch_ready +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_rx_ch_datasize +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_rx_ch_destination +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_rx_ch_events +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_rx_ch_en +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_rx_ch_pending +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_rx_ch_curr_addr +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_rx_ch_bytes_left +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_rx_ext_addr +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_rx_ext_datasize +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_rx_ext_destination +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_rx_ext_stream +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_rx_ext_stream_id +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_rx_ext_sot +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_rx_ext_eot +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_rx_ext_valid +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_rx_ext_data +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_rx_ext_ready +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_tx_ext_req +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_tx_ext_datasize +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_tx_ext_destination +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_tx_ext_addr +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_tx_ext_gnt +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_tx_ext_valid +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_tx_ext_data +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_tx_ext_ready +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_stream_data +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_stream_datasize +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_stream_valid +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_stream_sot +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_stream_eot +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_stream_ready +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_events +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_rf_event +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_clk_periphs_core +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_clk_periphs_per +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_periph_data_to +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_periph_addr +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_periph_rwn +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_periph_data_from +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_periph_valid +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_periph_ready +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_spi_eot +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/L2_ro_wen_o +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/L2_ro_req_o +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/L2_ro_gnt_i +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/L2_ro_addr_o +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/L2_ro_be_o +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/L2_ro_wdata_o +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/L2_ro_rvalid_i +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/L2_ro_rdata_i +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/L2_wo_wen_o +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/L2_wo_req_o +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/L2_wo_gnt_i +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/L2_wo_addr_o +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/L2_wo_wdata_o +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/L2_wo_be_o +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/L2_wo_rvalid_i +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/L2_wo_rdata_i +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/dft_test_mode_i +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/dft_cg_enable_i +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/sys_clk_i +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/sys_resetn_i +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/periph_clk_i +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/udma_apb_paddr +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/udma_apb_pwdata +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/udma_apb_pwrite +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/udma_apb_psel +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/udma_apb_penable +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/udma_apb_prdata +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/udma_apb_pready +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/udma_apb_pslverr +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/events_o +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/event_valid_i +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/event_data_i +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/event_ready_o +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/spi_clk +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/spi_csn +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/spi_oen +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/spi_sdo +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/spi_sdi +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i2c_scl_i +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i2c_scl_o +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i2c_scl_oe +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i2c_sda_i +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i2c_sda_o +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i2c_sda_oe +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/cam_clk_i +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/cam_data_i +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/cam_hsync_i +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/cam_vsync_i +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/uart_rx_i +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/uart_tx_o +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/sdio_clk_o +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/sdio_cmd_o +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/sdio_cmd_i +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/sdio_cmd_oen_o +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/sdio_data_o +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/sdio_data_i +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/sdio_data_oen_o +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i2s_slave_sd0_i +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i2s_slave_sd1_i +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i2s_slave_ws_i +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i2s_slave_ws_o +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i2s_slave_ws_oe +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i2s_slave_sck_i +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i2s_slave_sck_o +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i2s_slave_sck_oe +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/hyper_cs_no +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/hyper_ck_o +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/hyper_ck_no +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/hyper_rwds_o +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/hyper_rwds_i +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/hyper_rwds_oe_o +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/hyper_dq_i +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/hyper_dq_o +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/hyper_dq_oe_o +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/hyper_reset_no +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_tx_cfg_startaddr +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_tx_cfg_size +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_tx_cfg_continuous +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_tx_cfg_en +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_tx_cfg_clr +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_tx_ch_req +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_tx_ch_gnt +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_tx_ch_data +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_tx_ch_valid +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_tx_ch_ready +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_tx_ch_datasize +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_tx_ch_destination +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_tx_ch_events +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_tx_ch_en +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_tx_ch_pending +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_tx_ch_curr_addr +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_tx_ch_bytes_left +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_rx_cfg_startaddr +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_rx_cfg_size +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_rx_cfg_continuous +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_rx_cfg_en +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_rx_cfg_clr +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_rx_cfg_stream +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_rx_cfg_stream_id +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_rx_ch_data +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_rx_ch_valid +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_rx_ch_ready +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_rx_ch_datasize +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_rx_ch_destination +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_rx_ch_events +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_rx_ch_en +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_rx_ch_pending +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_rx_ch_curr_addr +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_rx_ch_bytes_left +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_rx_ext_addr +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_rx_ext_datasize +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_rx_ext_destination +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_rx_ext_stream +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_rx_ext_stream_id +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_rx_ext_sot +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_rx_ext_eot +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_rx_ext_valid +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_rx_ext_data +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_rx_ext_ready +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_tx_ext_req +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_tx_ext_datasize +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_tx_ext_destination +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_tx_ext_addr +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_tx_ext_gnt +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_tx_ext_valid +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_tx_ext_data +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_tx_ext_ready +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_stream_data +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_stream_datasize +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_stream_valid +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_stream_sot +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_stream_eot +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_stream_ready +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_events +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_rf_event +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_clk_periphs_core +add wave -noupdate -group udma_subsystem -expand /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_clk_periphs_per +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_periph_data_to +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_periph_addr +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_periph_rwn +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_periph_data_from +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_periph_valid +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_periph_ready +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_spi_eot +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_i2c_err +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_i2c_eot +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_i2c_nack +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_uart_evt +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_trigger_events +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_cam_evt +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_i2s_evt +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_filter_eot_evt +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_filter_act_evt +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_hyper_sys_clk +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_hyper_periph_clk +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_evt_eot_hyper +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/is_hyper_read_q +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/is_hyper_read_d +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_sdio_eot +add wave -noupdate -group udma_subsystem /tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/s_sdio_err +add wave -noupdate -group i2c_mem_0 /tb_pulp/genblk7/i_i2c_mem_0/A0 +add wave -noupdate -group i2c_mem_0 /tb_pulp/genblk7/i_i2c_mem_0/A1 +add wave -noupdate -group i2c_mem_0 /tb_pulp/genblk7/i_i2c_mem_0/A2 +add wave -noupdate -group i2c_mem_0 /tb_pulp/genblk7/i_i2c_mem_0/WP +add wave -noupdate -group i2c_mem_0 /tb_pulp/genblk7/i_i2c_mem_0/SDA +add wave -noupdate -group i2c_mem_0 /tb_pulp/genblk7/i_i2c_mem_0/SCL +add wave -noupdate -group i2c_mem_0 /tb_pulp/genblk7/i_i2c_mem_0/RESET +add wave -noupdate -group i2c_mem_1 /tb_pulp/genblk7/i_i2c_mem_1/A0 +add wave -noupdate -group i2c_mem_1 /tb_pulp/genblk7/i_i2c_mem_1/A1 +add wave -noupdate -group i2c_mem_1 /tb_pulp/genblk7/i_i2c_mem_1/A2 +add wave -noupdate -group i2c_mem_1 /tb_pulp/genblk7/i_i2c_mem_1/WP +add wave -noupdate -group i2c_mem_1 /tb_pulp/genblk7/i_i2c_mem_1/SDA +add wave -noupdate -group i2c_mem_1 /tb_pulp/genblk7/i_i2c_mem_1/SCL +add wave -noupdate -group i2c_mem_1 /tb_pulp/genblk7/i_i2c_mem_1/RESET +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/sys_clk_i} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/periph_clk_i} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/rstn_i} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/ext_events_i} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/cfg_data_i} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/cfg_addr_i} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/cfg_valid_i} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/cfg_rwn_i} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/cfg_data_o} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/cfg_ready_o} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/cfg_cmd_startaddr_o} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/cfg_cmd_size_o} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/cfg_cmd_continuous_o} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/cfg_cmd_en_o} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/cfg_cmd_clr_o} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/cfg_cmd_en_i} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/cfg_cmd_pending_i} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/cfg_cmd_curr_addr_i} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/cfg_cmd_bytes_left_i} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/cfg_rx_startaddr_o} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/cfg_rx_size_o} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/cfg_rx_continuous_o} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/cfg_rx_en_o} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/cfg_rx_clr_o} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/cfg_rx_en_i} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/cfg_rx_pending_i} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/cfg_rx_curr_addr_i} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/cfg_rx_bytes_left_i} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/cfg_tx_startaddr_o} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/cfg_tx_size_o} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/cfg_tx_continuous_o} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/cfg_tx_en_o} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/cfg_tx_clr_o} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/cfg_tx_en_i} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/cfg_tx_pending_i} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/cfg_tx_curr_addr_i} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/cfg_tx_bytes_left_i} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/cmd_req_o} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/cmd_gnt_i} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/cmd_datasize_o} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/cmd_i} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/cmd_valid_i} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/cmd_ready_o} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/data_tx_req_o} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/data_tx_gnt_i} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/data_tx_datasize_o} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/data_tx_i} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/data_tx_valid_i} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/data_tx_ready_o} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/data_rx_datasize_o} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/data_rx_o} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/data_rx_valid_o} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/data_rx_ready_i} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/err_o} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/eot_o} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/nack_o} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/scl_i} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/scl_o} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/scl_oe} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/sda_i} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/sda_o} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/sda_oe} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/s_data_tx} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/s_data_tx_valid} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/s_data_tx_ready} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/s_data_tx_dc} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/s_data_tx_dc_valid} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/s_data_tx_dc_ready} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/s_data_rx_dc} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/s_data_rx_dc_valid} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/s_data_rx_dc_ready} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/s_do_rst} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/s_udma_cmd} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/s_udma_cmd_valid} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/s_udma_cmd_ready} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/s_i2c_cmd} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/s_i2c_cmd_valid} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/s_i2c_cmd_ready} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/s_i2c_busy} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/s_i2c_al} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/s_i2c_eot} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/s_i2c_nack} +add wave -noupdate -group i2c_top_0 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[0]/i_i2c/s_events} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/sys_clk_i} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/periph_clk_i} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/rstn_i} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/ext_events_i} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/cfg_data_i} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/cfg_addr_i} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/cfg_valid_i} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/cfg_rwn_i} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/cfg_data_o} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/cfg_ready_o} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/cfg_cmd_startaddr_o} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/cfg_cmd_size_o} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/cfg_cmd_continuous_o} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/cfg_cmd_en_o} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/cfg_cmd_clr_o} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/cfg_cmd_en_i} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/cfg_cmd_pending_i} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/cfg_cmd_curr_addr_i} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/cfg_cmd_bytes_left_i} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/cfg_rx_startaddr_o} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/cfg_rx_size_o} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/cfg_rx_continuous_o} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/cfg_rx_en_o} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/cfg_rx_clr_o} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/cfg_rx_en_i} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/cfg_rx_pending_i} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/cfg_rx_curr_addr_i} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/cfg_rx_bytes_left_i} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/cfg_tx_startaddr_o} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/cfg_tx_size_o} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/cfg_tx_continuous_o} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/cfg_tx_en_o} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/cfg_tx_clr_o} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/cfg_tx_en_i} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/cfg_tx_pending_i} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/cfg_tx_curr_addr_i} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/cfg_tx_bytes_left_i} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/cmd_req_o} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/cmd_gnt_i} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/cmd_datasize_o} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/cmd_i} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/cmd_valid_i} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/cmd_ready_o} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/data_tx_req_o} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/data_tx_gnt_i} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/data_tx_datasize_o} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/data_tx_i} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/data_tx_valid_i} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/data_tx_ready_o} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/data_rx_datasize_o} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/data_rx_o} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/data_rx_valid_o} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/data_rx_ready_i} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/err_o} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/eot_o} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/nack_o} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/scl_i} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/scl_o} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/scl_oe} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/sda_i} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/sda_o} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/sda_oe} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/s_data_tx} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/s_data_tx_valid} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/s_data_tx_ready} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/s_data_tx_dc} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/s_data_tx_dc_valid} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/s_data_tx_dc_ready} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/s_data_rx_dc} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/s_data_rx_dc_valid} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/s_data_rx_dc_ready} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/s_do_rst} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/s_udma_cmd} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/s_udma_cmd_valid} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/s_udma_cmd_ready} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/s_i2c_cmd} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/s_i2c_cmd_valid} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/s_i2c_cmd_ready} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/s_i2c_busy} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/s_i2c_al} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/s_i2c_eot} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/s_i2c_nack} +add wave -noupdate -expand -group i2c_top_1 {/tb_pulp/i_dut/soc_domain_i/pulp_soc_i/soc_peripherals_i/i_udma/i_i2c_gen[1]/i_i2c/s_events} +TreeUpdate [SetDefaultTree] +WaveRestoreCursors {{Cursor 1} {0 ps} 0} +quietly wave cursor active 0 +configure wave -namecolwidth 250 +configure wave -valuecolwidth 100 +configure wave -justifyvalue left +configure wave -signalnamewidth 1 +configure wave -snapdistance 10 +configure wave -datasetprefix 0 +configure wave -rowmargin 4 +configure wave -childrowmargin 2 +configure wave -gridoffset 0 +configure wave -gridperiod 1 +configure wave -griddelta 40 +configure wave -timeline 0 +configure wave -timelineunits ns +update +WaveRestoreZoom {0 ps} {28190133657 ps} From 1da1109a0f7fb432e78da01db8f03f048e187520 Mon Sep 17 00:00:00 2001 From: orlandonico Date: Tue, 15 Feb 2022 16:20:46 +0100 Subject: [PATCH 81/86] rtos/pulpos: update udma_i2c_v2.h in archi and hal --- .../pulp_archi/include/archi/udma/i2c/udma_i2c_v2.h | 2 ++ rtos/pulpos/pulp_hal/include/hal/udma/i2c/udma_i2c_v2.h | 8 ++++++++ 2 files changed, 10 insertions(+) diff --git a/rtos/pulpos/pulp_archi/include/archi/udma/i2c/udma_i2c_v2.h b/rtos/pulpos/pulp_archi/include/archi/udma/i2c/udma_i2c_v2.h index f1482557..b0a624ce 100644 --- a/rtos/pulpos/pulp_archi/include/archi/udma/i2c/udma_i2c_v2.h +++ b/rtos/pulpos/pulp_archi/include/archi/udma/i2c/udma_i2c_v2.h @@ -23,10 +23,12 @@ #define I2C_CMD_STOP (0x2 << I2C_CMD_OFFSET) #define I2C_CMD_RD_ACK (0x4 << I2C_CMD_OFFSET) #define I2C_CMD_RD_NACK (0x6 << I2C_CMD_OFFSET) +#define I2C_CMD_WRB (0x7 << I2C_CMD_OFFSET) #define I2C_CMD_WR (0x8 << I2C_CMD_OFFSET) #define I2C_CMD_WAIT (0xA << I2C_CMD_OFFSET) #define I2C_CMD_RPT (0xC << I2C_CMD_OFFSET) #define I2C_CMD_CFG (0xE << I2C_CMD_OFFSET) #define I2C_CMD_WAIT_EV (0x1 << I2C_CMD_OFFSET) +#define I2C_CMD_EOT (0x9 << I2C_CMD_OFFSET) #endif \ No newline at end of file diff --git a/rtos/pulpos/pulp_hal/include/hal/udma/i2c/udma_i2c_v2.h b/rtos/pulpos/pulp_hal/include/hal/udma/i2c/udma_i2c_v2.h index eb4fed00..1b2e8da2 100644 --- a/rtos/pulpos/pulp_hal/include/hal/udma/i2c/udma_i2c_v2.h +++ b/rtos/pulpos/pulp_hal/include/hal/udma/i2c/udma_i2c_v2.h @@ -21,10 +21,18 @@ #define UDMA_I2C_OFFSET(id) UDMA_PERIPH_OFFSET(ARCHI_UDMA_I2C_ID(id)) +/** #define UDMA_I2C_DATA_ADDR(id) (ARCHI_UDMA_ADDR + UDMA_I2C_OFFSET(id) + UDMA_CHANNEL_RX_OFFSET) #define UDMA_I2C_CMD_ADDR(id) (ARCHI_UDMA_ADDR + UDMA_I2C_OFFSET(id) + UDMA_CHANNEL_TX_OFFSET) #define UDMA_I2C_CUSTOM_ADDR(id) (ARCHI_UDMA_ADDR + UDMA_I2C_OFFSET(id) + UDMA_CHANNEL_CUSTOM_OFFSET) #define ARCHI_SOC_EVENT_I2C_DATA(id) (ARCHI_SOC_EVENT_PERIPH_FIRST_EVT(ARCHI_UDMA_I2C_ID(id)) + 0) #define ARCHI_SOC_EVENT_I2C_CMD(id) (ARCHI_SOC_EVENT_PERIPH_FIRST_EVT(ARCHI_UDMA_I2C_ID(id)) + 1) +*/ +#define UDMA_I2C_DATA_ADDR(id) (ARCHI_UDMA_ADDR + UDMA_I2C_OFFSET(id) + UDMA_CHANNEL_RX_OFFSET) +#define UDMA_I2C_TX_ADDR(id) (ARCHI_UDMA_ADDR + UDMA_I2C_OFFSET(id) + UDMA_CHANNEL_TX_OFFSET) +#define UDMA_I2C_CMD_ADDR(id) (ARCHI_UDMA_ADDR + UDMA_I2C_OFFSET(id) + UDMA_CHANNEL_CUSTOM_OFFSET) +#define UDMA_I2C_CUSTOM_ADDR(id) (ARCHI_UDMA_ADDR + UDMA_I2C_OFFSET(id) + 0x30) // This is probably not correct but works for now. @adimauro-iis please check +#define ARCHI_SOC_EVENT_I2C_DATA(id) (ARCHI_SOC_EVENT_PERIPH_FIRST_EVT(ARCHI_UDMA_I2C_ID(id)) + 0) +#define ARCHI_SOC_EVENT_I2C_CMD(id) (ARCHI_SOC_EVENT_PERIPH_FIRST_EVT(ARCHI_UDMA_I2C_ID(id)) + 1) #endif \ No newline at end of file From 52b74bbb78728cddb98173522c369888360276a0 Mon Sep 17 00:00:00 2001 From: orlandonico Date: Tue, 15 Feb 2022 16:21:38 +0100 Subject: [PATCH 82/86] rtos/pulpos: update common_i2c --- rtos/pulpos/pulp/drivers/i2c/src/common_i2c.c | 26 ++++++++++++------- 1 file changed, 16 insertions(+), 10 deletions(-) diff --git a/rtos/pulpos/pulp/drivers/i2c/src/common_i2c.c b/rtos/pulpos/pulp/drivers/i2c/src/common_i2c.c index 5a6b85de..a75da14a 100644 --- a/rtos/pulpos/pulp/drivers/i2c/src/common_i2c.c +++ b/rtos/pulpos/pulp/drivers/i2c/src/common_i2c.c @@ -39,25 +39,28 @@ uint32_t deactive_irq_i2c(void) { #ifdef USE_PULPOS_TEST - return hal_irq_disable(); -#else - return __disable_irq(); + return hal_irq_disable(); +#endif +#ifdef USE_FREERTOS_TEST + return __disable_irq(); #endif } void active_irq_i2c(uint32_t irq) { -#ifdef USE_PULPOS_TEST +#ifdef USE_PULPOS_TEST hal_irq_restore(irq); -#else - __restore_irq(irq); -#endif +#endif +#ifdef USE_FREERTOS_TEST + __restore_irq(irq); +#endif } void __pi_i2c_wait_transfer(uint32_t device_id){ #ifdef USE_PULPOS_TEST while (plp_udma_busy(UDMA_I2C_CMD_ADDR(device_id))); -#else +#endif +#ifdef USE_FREERTOS_TEST while (hal_i2c_busy_get(device_id)); #endif @@ -164,7 +167,8 @@ void __pi_i2c_cs_data_add(struct i2c_itf_data_s *driver_data, struct i2c_cs_data head = head->next; } head->next = cs_data; -#else +#endif +#ifdef USE_PULPOS_TEST struct i2c_cs_data_s *head; head = cs_data; head->next = driver_data->cs_list; @@ -185,7 +189,8 @@ void __pi_i2c_cs_data_remove(struct i2c_itf_data_s *driver_data, struct i2c_cs_d if (head != NULL) { prev->next = head->next; } -#else +#endif +#ifdef USE_PULPOS_TEST int count=0; while ((head != NULL) && (head != cs_data)) { @@ -252,6 +257,7 @@ void __pi_i2c_ioctl(struct i2c_cs_data_s *device_data, uint32_t cmd, void *arg) case PI_I2C_CTRL_SET_MAX_BAUDRATE: __pi_i2c_baudrate_set(device_data, (uint32_t)arg); break; + default: break; } From 477bdfb1f2e819b998fb2213ed080dadc8feda93 Mon Sep 17 00:00:00 2001 From: orlandonico Date: Wed, 16 Feb 2022 18:46:00 +0100 Subject: [PATCH 83/86] rtos/pulpos: update driver for abstraction layers --- .../pulp/drivers/i2c/src/abstraction_layer_i2c.c | 5 +++++ rtos/pulpos/pulp/drivers/i2c/src/common_i2c.c | 2 +- rtos/pulpos/pulp/drivers/i2c/src/i2c-v2.c | 13 +++++++------ 3 files changed, 13 insertions(+), 7 deletions(-) diff --git a/rtos/pulpos/pulp/drivers/i2c/src/abstraction_layer_i2c.c b/rtos/pulpos/pulp/drivers/i2c/src/abstraction_layer_i2c.c index b320c5a5..1e1cf3a9 100644 --- a/rtos/pulpos/pulp/drivers/i2c/src/abstraction_layer_i2c.c +++ b/rtos/pulpos/pulp/drivers/i2c/src/abstraction_layer_i2c.c @@ -409,6 +409,11 @@ void __pi_i2c_copy_exec_write(struct i2c_itf_data_s *driver_data, struct pi_task driver_data->tx_channel->pendings[0]=task; start_bit = flags & PI_I2C_XFER_NO_START; + for(int j=0; ji2c_cmd_seq[index++] = (((uint32_t)I2C_CMD_CFG) << 24) | ((cs_data->clk_div >> 8) & 0xFF) | (cs_data->clk_div & 0xFF); if (!start_bit) diff --git a/rtos/pulpos/pulp/drivers/i2c/src/common_i2c.c b/rtos/pulpos/pulp/drivers/i2c/src/common_i2c.c index a75da14a..5ed4a9e0 100644 --- a/rtos/pulpos/pulp/drivers/i2c/src/common_i2c.c +++ b/rtos/pulpos/pulp/drivers/i2c/src/common_i2c.c @@ -246,7 +246,7 @@ void __pi_i2c_conf_init(pi_i2c_conf_t *conf) conf->cs = 0; conf->max_baudrate = 200000; conf->itf = 0; - conf->wait_cycles = 1; + conf->wait_cycles = 10; conf->ts_ch = 0; conf->ts_evt_id = 0; } diff --git a/rtos/pulpos/pulp/drivers/i2c/src/i2c-v2.c b/rtos/pulpos/pulp/drivers/i2c/src/i2c-v2.c index 2512a1ab..7ab6eb06 100644 --- a/rtos/pulpos/pulp/drivers/i2c/src/i2c-v2.c +++ b/rtos/pulpos/pulp/drivers/i2c/src/i2c-v2.c @@ -21,9 +21,9 @@ * ? ABOUT * @author : Orlando Nico, GreenWaves Technologies, Robert Balas * @email : nico.orlando@studio.unibo.it, balasr@iis.ee.ethz.ch - * @repo : pulp-sdk/rtos/pulpos/pulp/drivers/i2c/src + * @repo : driver * @createdOn : /01/2022 - * @description : PulpOS + * @description : FreeRTOS * The driver was tested on a VIP flash memory in RTL, where it was done one * transfer at a time. * Multiple concurrent transfers have not been tested. I mean using multiple @@ -115,7 +115,8 @@ int pi_i2c_read(struct pi_device *device, uint8_t *rx_buff, int length, pi_i2c_x struct i2c_cs_data_s *device_data = (struct i2c_cs_data_s *)device->data; if (REG_GET(I2C_ACK_NACK, i2c_ack_get(device_data->device_id))) status = PI_ERR_I2C_NACK; -#else +#endif +#ifdef USE_PULPOS_TEST struct i2c_cs_data_s *device_data = (struct i2c_cs_data_s *)device->data; unsigned int udma_i2c_channel_base = hal_udma_channel_base(UDMA_CHANNEL_ID(ARCHI_UDMA_I2C_ID(device_data->device_id))); uint32_t ack = pulp_read32(udma_i2c_channel_base+0x38); @@ -123,7 +124,6 @@ int pi_i2c_read(struct pi_device *device, uint8_t *rx_buff, int length, pi_i2c_x status = PI_ERR_I2C_NACK; #endif #endif - return status; } @@ -157,7 +157,8 @@ int pi_i2c_write(struct pi_device *device, uint8_t *tx_data, int length, pi_i2c_ struct i2c_cs_data_s *device_data = (struct i2c_cs_data_s *)device->data; if (REG_GET(I2C_ACK_NACK, i2c_ack_get(device_data->device_id))) status = PI_ERR_I2C_NACK; -#else +#endif +#ifdef USE_PULPOS_TEST struct i2c_cs_data_s *device_data = (struct i2c_cs_data_s *)device->data; unsigned int udma_i2c_channel_base = hal_udma_channel_base(UDMA_CHANNEL_ID(ARCHI_UDMA_I2C_ID(device_data->device_id))); uint32_t ack = pulp_read32(udma_i2c_channel_base+0x38); @@ -172,7 +173,7 @@ void pi_i2c_write_async(struct pi_device *device, uint8_t *tx_data, int length, pi_i2c_xfer_flags_e flags, pi_task_t *task) { struct i2c_cs_data_s *device_data = (struct i2c_cs_data_s *)device->data; - udma_channel_e channel = TX_CHANNEL; + udma_channel_e channel = COMMAND_CHANNEL; I2C_TRACE("I2C(%d) : transfer %d %lx %ld %lx, task %lx\n", device_data->device_id, channel, (uint32_t)tx_data, length, flags, task); __pi_i2c_copy(device_data, (uint32_t)tx_data, length, flags, channel, task); From 2b1698d9e317880aa01b18f857c5721cedf89c12 Mon Sep 17 00:00:00 2001 From: orlandonico Date: Thu, 17 Feb 2022 12:52:28 +0100 Subject: [PATCH 84/86] tests: add config_i2c and config_spim to default_rules.mk --- .../common/rules/pulpos/default_rules.mk | 10 ++- tests/i2c_eeprom_async/Makefile | 4 +- tests/i2c_eeprom_sync/Makefile | 60 ++++++++++++++--- tests/i2c_scan/Makefile | 59 +++++++++++++++-- tests/spim_flash_async/Makefile | 6 +- tests/spim_flash_sync/Makefile | 64 +++++++++++++++++-- 6 files changed, 176 insertions(+), 27 deletions(-) diff --git a/rtos/pulpos/common/rules/pulpos/default_rules.mk b/rtos/pulpos/common/rules/pulpos/default_rules.mk index f4789b04..f7ac6cdc 100644 --- a/rtos/pulpos/common/rules/pulpos/default_rules.mk +++ b/rtos/pulpos/common/rules/pulpos/default_rules.mk @@ -50,14 +50,20 @@ ifdef PULPOS_PLATFORM platform=$(PULPOS_PLATFORM) endif -ifdef USE_PULPOS_TEST +ifdef CONFIG_SPIM #include -PULP_APP_CFLAGS += -I"$(PULP_SDK_HOME)/rtos/pulpos/pulp/drivers/i2c/include" PULP_APP_CFLAGS += -I"$(PULP_SDK_HOME)/rtos/pulpos/pulp/drivers/spim/include" #src PULP_APP_SRCS += $(PULP_SDK_HOME)/rtos/pulpos/pulp/drivers/spim/src/common_spi.c PULP_APP_SRCS += $(PULP_SDK_HOME)/rtos/pulpos/pulp/drivers/spim/src/abstraction_layer_spi.c +endif + +ifdef CONFIG_I2C +#include +PULP_APP_CFLAGS += -I"$(PULP_SDK_HOME)/rtos/pulpos/pulp/drivers/i2c/include" + +#src PULP_APP_SRCS += $(PULP_SDK_HOME)/rtos/pulpos/pulp/drivers/i2c/src/common_i2c.c PULP_APP_SRCS += $(PULP_SDK_HOME)/rtos/pulpos/pulp/drivers/i2c/src/abstraction_layer_i2c.c endif diff --git a/tests/i2c_eeprom_async/Makefile b/tests/i2c_eeprom_async/Makefile index 79a18a11..daa5ca82 100644 --- a/tests/i2c_eeprom_async/Makefile +++ b/tests/i2c_eeprom_async/Makefile @@ -12,7 +12,7 @@ else APP_CFLAGS += -DNUM_CORES=1 endif endif -APP_CFLAGS += -Os -g -DUSE_PULPOS_TEST -DCONFIG_UDMA_I2C_EOT -DCONFIG_UDMA_I2C_ACK +APP_CFLAGS += -Os -g -DUSE_PULPOS_TEST -DCONFIG_UDMA_I2C_EOT -DCONFIG_UDMA_I2C_ACK -DCONFIG_I2C APP_LDFLAGS += -Os -g CONFIG_I2C = 1 @@ -36,6 +36,8 @@ CFLAGS = \ -D__PULP__=1 -DDEBUG \ -Wstack-usage=1024 -DUSE_FREERTOS_TEST -DCONFIG_UDMA_I2C_EOT -DCONFIG_UDMA_I2C_ACK +CONFIG_UDMA_I2C_EOT=y +CONFIG_UDMA_I2C_ACK=y CONFIG_CLUSTER=n # rtos, pulp and pmsis sources include $(PROJ_ROOT)/default_srcs.mk diff --git a/tests/i2c_eeprom_sync/Makefile b/tests/i2c_eeprom_sync/Makefile index af7194a7..807df387 100644 --- a/tests/i2c_eeprom_sync/Makefile +++ b/tests/i2c_eeprom_sync/Makefile @@ -1,6 +1,9 @@ -APP = test_i2c_eeprom_sync -APP_SRCS += test_i2c_eeprom_sync.c +USE_PULPOS_TEST=1 +#USE_FREERTOS_TEST=1 +ifdef USE_PULPOS_TEST +APP = i2c_eeprom_sync +APP_SRCS += i2c_eeprom_sync.c ifdef USE_CLUSTER APP_CFLAGS += -DCLUSTER -DNUM_CLUSTER=$(USE_CLUSTER) ifdef NUM_CORES @@ -9,12 +12,53 @@ else APP_CFLAGS += -DNUM_CORES=1 endif endif - -APP_CFLAGS += -Os -g -DUSE_PULPOS -APP_CFLAGS += -DDEGUB +APP_CFLAGS += -Os -g -DUSE_PULPOS_TEST -DCONFIG_UDMA_I2C_EOT -DCONFIG_UDMA_I2C_ACK -DCONFIG_I2C APP_LDFLAGS += -Os -g - CONFIG_I2C = 1 -HAS_I2C = 1 - include $(RULES_DIR)/pmsis_rules.mk +endif + +ifdef USE_FREERTOS_TEST +PROJ_ROOT = $(shell git rev-parse --show-toplevel) + +# good defaults for many environment variables +include $(PROJ_ROOT)/default_flags.mk + +# manually set CFLAGS to disable some warnings (-Wconversion) +CFLAGS = \ + -march=rv32imac -mabi=ilp32 -msmall-data-limit=8 -mno-save-restore \ + -fsigned-char -ffunction-sections -fdata-sections \ + -std=gnu11 \ + -Wall -Wextra -Wshadow -Wformat=2 -Wundef \ + -Wno-unused-parameter -Wno-unused-variable \ + -Og -g3 \ + -D__PULP__=1 -DDEBUG \ + -Wstack-usage=1024 -DUSE_FREERTOS_TEST -DCONFIG_UDMA_I2C_EOT -DCONFIG_UDMA_I2C_ACK + +CONFIG_UDMA_I2C_EOT=y +CONFIG_UDMA_I2C_ACK=y +CONFIG_CLUSTER=n +# rtos, pulp and pmsis sources +include $(PROJ_ROOT)/default_srcs.mk + +# application name +PROG = i2c_eeprom_sync_sync + +# application/user specific code +USER_SRCS = i2c_eeprom_sync.c + +# FreeRTOS.h +CPPFLAGS += $(addprefix -I$(USER_DIR)/, ".") + +CPPFLAGS += -DportasmHANDLE_INTERRUPT=vSystemIrqHandler +CPPFLAGS += -DUSE_STDIO +## number of error check polls before the tests is conclueded as being successful +CPPFLAGS += -DSTREAM_CHECK_ITERATIONS=2 + +# Uncomment to disable Additional reigsters (HW Loops) +#CPPFLAGS += -DportasmSKIP_ADDITIONAL_REGISTERS + +# compile, simulation and analysis targets +include $(PROJ_ROOT)/default_targets.mk +endif + diff --git a/tests/i2c_scan/Makefile b/tests/i2c_scan/Makefile index 679c0dc6..3e9aae1c 100644 --- a/tests/i2c_scan/Makefile +++ b/tests/i2c_scan/Makefile @@ -1,6 +1,9 @@ -APP = test_i2c_scan -APP_SRCS += test_i2c_scan.c +USE_PULPOS_TEST=1 +#USE_FREERTOS_TEST=1 +ifdef USE_PULPOS_TEST +APP = i2c_scan +APP_SRCS += i2c_scan.c ifdef USE_CLUSTER APP_CFLAGS += -DCLUSTER -DNUM_CLUSTER=$(USE_CLUSTER) ifdef NUM_CORES @@ -9,11 +12,55 @@ else APP_CFLAGS += -DNUM_CORES=1 endif endif - -APP_CFLAGS += -DCHECK_EEPROM_PRESENT APP_CFLAGS += -Os -g +APP_CFLAGS += -DUSE_PULPOS_TEST -DCONFIG_UDMA_I2C_EOT -DCONFIG_UDMA_I2C_ACK -DCHECK_EEPROM_PRESENT -DCONFIG_I2C APP_LDFLAGS += -Os -g - CONFIG_I2C = 1 - include $(RULES_DIR)/pmsis_rules.mk +endif + +ifdef USE_FREERTOS_TEST +PROJ_ROOT = $(shell git rev-parse --show-toplevel) + +# good defaults for many environment variables +include $(PROJ_ROOT)/default_flags.mk + +# manually set CFLAGS to disable some warnings (-Wconversion) +CFLAGS = \ + -march=rv32imac -mabi=ilp32 -msmall-data-limit=8 -mno-save-restore \ + -fsigned-char -ffunction-sections -fdata-sections \ + -std=gnu11 \ + -Wall -Wextra -Wshadow -Wformat=2 -Wundef \ + -Wno-unused-parameter -Wno-unused-variable \ + -Og -g3 \ + -D__PULP__=1 -DDEBUG \ + -Wstack-usage=1024 -DUSE_FREERTOS_TEST -DCONFIG_UDMA_I2C_EOT -DCONFIG_UDMA_I2C_ACK -DCHECK_EEPROM_PRESENT + +CONFIG_UDMA_I2C_EOT=y +CONFIG_UDMA_I2C_ACK=y +CHECK_EEPROM_PRESENT=1 +CONFIG_CLUSTER=n +# rtos, pulp and pmsis sources +include $(PROJ_ROOT)/default_srcs.mk + +# application name +PROG = i2c_scan + +# application/user specific code +USER_SRCS = i2c_scan.c + +# FreeRTOS.h +CPPFLAGS += $(addprefix -I$(USER_DIR)/, ".") + +CPPFLAGS += -DportasmHANDLE_INTERRUPT=vSystemIrqHandler +CPPFLAGS += -DUSE_STDIO +## number of error check polls before the tests is conclueded as being successful +CPPFLAGS += -DSTREAM_CHECK_ITERATIONS=2 + +# Uncomment to disable Additional reigsters (HW Loops) +#CPPFLAGS += -DportasmSKIP_ADDITIONAL_REGISTERS + +# compile, simulation and analysis targets +include $(PROJ_ROOT)/default_targets.mk +endif + diff --git a/tests/spim_flash_async/Makefile b/tests/spim_flash_async/Makefile index 1a433637..d70cc2df 100644 --- a/tests/spim_flash_async/Makefile +++ b/tests/spim_flash_async/Makefile @@ -1,5 +1,5 @@ -#USE_PULPOS_TEST=1 -USE_FREERTOS_TEST=1 +USE_PULPOS_TEST=1 +#USE_FREERTOS_TEST=1 ifdef USE_PULPOS_TEST APP = test_spi_async @@ -12,7 +12,7 @@ else APP_CFLAGS += -DNUM_CORES=1 endif endif -APP_CFLAGS += -Os -g -DUSE_PULPOS_TEST +APP_CFLAGS += -Os -g -DUSE_PULPOS_TEST -DCONFIG_SPIM APP_LDFLAGS += -Os -g CONFIG_SPIM = 1 include $(RULES_DIR)/pmsis_rules.mk diff --git a/tests/spim_flash_sync/Makefile b/tests/spim_flash_sync/Makefile index 1463665f..5bbe8c9c 100644 --- a/tests/spim_flash_sync/Makefile +++ b/tests/spim_flash_sync/Makefile @@ -1,6 +1,9 @@ +USE_PULPOS_TEST=1 +#USE_FREERTOS_TEST=1 + +ifdef USE_PULPOS_TEST APP = test_spi_sync APP_SRCS += test_spi_sync.c - ifdef USE_CLUSTER APP_CFLAGS += -DCLUSTER -DNUM_CLUSTER=$(USE_CLUSTER) ifdef NUM_CORES @@ -9,13 +12,60 @@ else APP_CFLAGS += -DNUM_CORES=1 endif endif - -APP_CFLAGS += -Os -g +APP_CFLAGS += -Os -g -DUSE_PULPOS_TEST -DCONFIG_SPIM APP_LDFLAGS += -Os -g +CONFIG_SPIM = 1 +include $(RULES_DIR)/pmsis_rules.mk +endif -APP_CFLAGS += -DUSE_PULPOS -# +ifdef USE_FREERTOS_TEST +APP = test_spi_sync +APP_SRCS += test_spi_sync.c +# indicate this repository's root folder +PROJ_ROOT = $(shell git rev-parse --show-toplevel) -CONFIG_SPIM = 1 +# good defaults for many environment variables +include $(PROJ_ROOT)/../freertos/default_flags.mk + +# manually set CFLAGS to disable some warnings (-Wconversion) +CFLAGS += \ + -march=rv32imac -mabi=ilp32 -msmall-data-limit=8 -mno-save-restore \ + -fsigned-char -ffunction-sections -fdata-sections \ + -std=gnu11 \ + -Wall -Wextra -Wshadow -Wformat=2 -Wundef \ + -Wno-unused-parameter -Wno-unused-variable \ + -Os -g3 \ + -DFEATURE_CLUSTER=0 -D__PULP__=1 -DASYNC=0 \ + -DSPIM_ITF=0 -DSPIM_CS=1 -DUSE_FREERTOS_TEST + +# CFLAGS += -fstack-usage -Wstack-usage=1024 +# CFLAGS += -DTRACE_SPI -DPI_LOG_LOCAL_LEVEL=5 -DDEBUG + +# testbench configuration for spim_verif dpi +DPI_CONFIG=$(dir $(realpath $(firstword $(MAKEFILE_LIST))))rtl_config.json + +# disable cluster +CONFIG_CLUSTER=n + +# rtos, pulp and pmsis ources +include $(PROJ_ROOT)/../freertos/default_srcs.mk + +# application name +PROG = test_spi_sync + +# application/user specific code +#USER_SRCS += test_flash_async.c +USER_SRCS = $(APP_SRCS) + +# FreeRTOS.h +CPPFLAGS += $(addprefix -I$(USER_DIR)/, ".") + +CPPFLAGS += -DportasmHANDLE_INTERRUPT=vSystemIrqHandler + +# Uncomment to disable Additional reigsters (HW Loops) +#CPPFLAGS += -DportasmSKIP_ADDITIONAL_REGISTERS + +# compile, simulation and analysis targets +include $(PROJ_ROOT)/../freertos/default_targets.mk +endif -include $(RULES_DIR)/pmsis_rules.mk From c017fbf44cd9ac3b04850d7dad08bf357f898a59 Mon Sep 17 00:00:00 2001 From: orlandonico Date: Fri, 25 Feb 2022 18:15:09 +0100 Subject: [PATCH 85/86] tests: add test --- tests/i2c_eeprom_async/i2c_eeprom_async.c | 4 + tests/i2c_eeprom_sync/FreeRTOSConfig.h | 138 +++++++++++++++ tests/i2c_eeprom_sync/i2c_eeprom_sync.c | 205 ++++++++++++++++++++++ tests/i2c_scan/i2c_scan.c | 200 +++++++++++++++++++++ tests/spim_flash_sync/FreeRTOSConfig.h | 140 +++++++++++++++ 5 files changed, 687 insertions(+) create mode 100644 tests/i2c_eeprom_sync/FreeRTOSConfig.h create mode 100644 tests/i2c_eeprom_sync/i2c_eeprom_sync.c create mode 100644 tests/i2c_scan/i2c_scan.c create mode 100644 tests/spim_flash_sync/FreeRTOSConfig.h diff --git a/tests/i2c_eeprom_async/i2c_eeprom_async.c b/tests/i2c_eeprom_async/i2c_eeprom_async.c index c5a00bf6..fb2c4f88 100644 --- a/tests/i2c_eeprom_async/i2c_eeprom_async.c +++ b/tests/i2c_eeprom_async/i2c_eeprom_async.c @@ -152,7 +152,11 @@ void eeprom(void) } } if (error != 0) + { + printf("Test I2C async -> Not Success\n"); exit(1); + } + printf("Test I2C async -> Success\n"); exit(0); } diff --git a/tests/i2c_eeprom_sync/FreeRTOSConfig.h b/tests/i2c_eeprom_sync/FreeRTOSConfig.h new file mode 100644 index 00000000..d3b915e5 --- /dev/null +++ b/tests/i2c_eeprom_sync/FreeRTOSConfig.h @@ -0,0 +1,138 @@ +/* + * FreeRTOS Kernel V10.3.0 + * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright (C) 2020 ETH Zurich + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * + * http://www.FreeRTOS.org + * http://aws.amazon.com/freertos + * + * 1 tab == 4 spaces! + */ + +#ifndef FREERTOS_CONFIG_H +#define FREERTOS_CONFIG_H + +/* #include "clock_config.h" */ /* TODO: figure out our FLL/clock setup */ + +#define DEFAULT_SYSTEM_CLOCK 50000000u /* Default System clock value */ + +/*----------------------------------------------------------- + * Application specific definitions. + * + * These definitions should be adjusted for your particular hardware and + * application requirements. + * + * THESE PARAMETERS ARE DESCRIBED WITHIN THE 'CONFIGURATION' SECTION OF THE + * FreeRTOS API DOCUMENTATION AVAILABLE ON THE FreeRTOS.org WEB SITE. + * + * See http://www.freertos.org/a00110.html. + *----------------------------------------------------------*/ + +#include +#ifdef __PULP_USE_LIBC +#include +#endif + +/* Ensure stdint is only used by the compiler, and not the assembler. */ +#if defined(__GNUC__) +#include +#endif +/* There is no CLINT so the base address must be set to 0. */ +#define configCLINT_BASE_ADDRESS 0 +#define configUSE_PREEMPTION 1 +#define configUSE_IDLE_HOOK 0 +#define configUSE_TICK_HOOK 0 +#define configCPU_CLOCK_HZ DEFAULT_SYSTEM_CLOCK +#define configTICK_RATE_HZ ((TickType_t)1000) +#define configMAX_PRIORITIES (5) +/* Can be as low as 60 but some of the demo tasks that use this constant require it to be higher. */ +#define configMINIMAL_STACK_SIZE ((unsigned short)400) +/* we want to put the heap into special section */ +#define configAPPLICATION_ALLOCATED_HEAP 1 +#define configTOTAL_HEAP_SIZE ((size_t)(16 * 1024)) +#define configMAX_TASK_NAME_LEN (16) +#define configUSE_TRACE_FACILITY 1 /* TODO: 0 */ +#define configUSE_16_BIT_TICKS 0 +#define configIDLE_SHOULD_YIELD 0 +#define configUSE_MUTEXES 1 +#define configQUEUE_REGISTRY_SIZE 8 +#define configCHECK_FOR_STACK_OVERFLOW 2 +#define configUSE_RECURSIVE_MUTEXES 1 +#define configUSE_MALLOC_FAILED_HOOK 1 +#define configUSE_APPLICATION_TASK_TAG 0 +#define configUSE_COUNTING_SEMAPHORES 1 +#define configGENERATE_RUN_TIME_STATS 0 + +// TODO: investigate (gw) +//#define configOVERRIDE_DEFAULT_TICK_CONFIGURATION 1 +//#define configRECORD_STACK_HIGH_ADDRESS 1 +//#define configUSE_POSIX_ERRNO 1 + +/* newlib reentrancy */ +#define configUSE_NEWLIB_REENTRANT 1 +/* Co-routine definitions. */ +#define configUSE_CO_ROUTINES 0 +#define configMAX_CO_ROUTINE_PRIORITIES (2) + +/* Software timer definitions. */ +#define configUSE_TIMERS 1 +#define configTIMER_TASK_PRIORITY (configMAX_PRIORITIES - 1) +#define configTIMER_QUEUE_LENGTH 4 +#define configTIMER_TASK_STACK_DEPTH (configMINIMAL_STACK_SIZE) + +/* Task priorities. Allow these to be overridden. */ +#ifndef uartPRIMARY_PRIORITY +#define uartPRIMARY_PRIORITY (configMAX_PRIORITIES - 3) +#endif + +/* Set the following definitions to 1 to include the API function, or zero +to exclude the API function. */ +#define INCLUDE_vTaskPrioritySet 1 +#define INCLUDE_uxTaskPriorityGet 1 +#define INCLUDE_vTaskDelete 1 +#define INCLUDE_vTaskCleanUpResources 1 +#define INCLUDE_vTaskSuspend 1 +#define INCLUDE_vTaskDelayUntil 1 +#define INCLUDE_vTaskDelay 1 +#define INCLUDE_eTaskGetState 1 +#define INCLUDE_xTimerPendFunctionCall 1 +#define INCLUDE_xTaskAbortDelay 1 +#define INCLUDE_xTaskGetHandle 1 +#define INCLUDE_xSemaphoreGetMutexHolder 1 + +/* Normal assert() semantics without relying on the provision of an assert.h +header file. */ +#ifdef __PULP_USE_LIBC +#define configASSERT(x) assert(x) +#else +#define configASSERT(x) \ + do { \ + if ((x) == 0) { \ + taskDISABLE_INTERRUPTS(); \ + for (;;) \ + ; \ + } \ + } while (0) +#endif + +#define configUSE_PORT_OPTIMISED_TASK_SELECTION 1 +#define configKERNEL_INTERRUPT_PRIORITY 7 + +#endif /* FREERTOS_CONFIG_H */ diff --git a/tests/i2c_eeprom_sync/i2c_eeprom_sync.c b/tests/i2c_eeprom_sync/i2c_eeprom_sync.c new file mode 100644 index 00000000..f9ab1d5f --- /dev/null +++ b/tests/i2c_eeprom_sync/i2c_eeprom_sync.c @@ -0,0 +1,205 @@ +/* + * Copyright 2021 Greenwaves Technologies + * Copyright 2021 ETH Zurich + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + * Modify by Nico Orlando, nico.orlando@studio.unibo.it + */ + +/* + * Test 24FC1025 eeprom (located at i2c address 0x50 in bus 0) + */ + +#ifdef USE_PULPOS_TEST +#include "pmsis.h" +#include +#endif + +#ifdef USE_FREERTOS_TEST +/* FreeRTOS kernel includes. */ +#include +#include + +/* c stdlib */ +#include +#include +#include +#include +#include + +/* system includes */ +#include "system.h" +#include "timer_irq.h" +#include "fll.h" +#include "irq.h" +#include "gpio.h" +#include "i2c.h" +#include "udma.h" +#include "udma_i2c.h" +#include "pi_errno.h" +#include "pmsis_task.h" +#include "fc_event.h" +#include "freq.h" +#include "debug.h" +/* pmsis */ +#include "target.h" +#include "os.h" +#include "pi_errno.h" + +void vApplicationMallocFailedHook(void); +void vApplicationStackOverflowHook(TaskHandle_t pxTask, char *pcTaskName); +#endif + +/* I2C device/peripheral id */ +#define I2C_DEV_ID 0 +/* I2C address of the eeprom */ +#define I2C_EEPROM_ADDR 0x50 + +static struct pi_device i2c; + +void eeprom(void) +{ + /* initalize i2c */ + struct pi_i2c_conf i2c_conf; + + printf("opening eeprom on i2c bus %d\n", I2C_DEV_ID); + + pi_i2c_conf_init(&i2c_conf); + i2c_conf.itf = I2C_DEV_ID; + i2c_conf.max_baudrate = 100000; + pi_i2c_conf_set_slave_addr(&i2c_conf, I2C_EEPROM_ADDR << 1, 0); + /* pi_i2c_conf_set_wait_cycles(conf, 2048); */ + + pi_open_from_conf(&i2c, &i2c_conf); + + if (pi_i2c_open(&i2c)) { + printf("i2c open failed\n"); + exit(1); + } + + uint8_t expected_rx[] = { + 0xca, + 0x00, + 0xde, + 0xca, + 0xc0, + 0xfe + }; + uint8_t rx[sizeof(expected_rx)] = {0}; + + uint8_t tx[] = { + 0x00, /* addr msb */ + 0x00, /* addr lsb */ + expected_rx[0], + expected_rx[1], + expected_rx[2], + expected_rx[3], + expected_rx[4], + expected_rx[5] + }; + + /* the address of our i2c eeprom is normally 0x50 if you want to + * specifically test that */ + printf("writing eeprom\n"); + int res = 0; + + res = pi_i2c_write(&i2c, tx, sizeof(tx), + PI_I2C_XFER_START | PI_I2C_XFER_STOP); + if (res != PI_OK) { + printf("pi_i2c_write failed\n"); + exit(1); + } + + /* Wait for write to finish. It takes 5 million ns = 5 ms to finish. */ + for (volatile int i = 0; i < 100000; ++i) + i++; + + printf("reading eeprom\n"); + uint8_t eeprom_addr[] = { + 0x00, /* addr msb */ + 0x00, /* addr lsb */ + }; + + res = pi_i2c_write(&i2c, eeprom_addr, sizeof(eeprom_addr), + PI_I2C_XFER_START | PI_I2C_XFER_NO_STOP); + if (res != PI_OK) { + printf("pi_i2c_write for eeprom addr failed\n"); + exit(1); + } + res = pi_i2c_read(&i2c, rx, sizeof(rx), + PI_I2C_XFER_START | PI_I2C_XFER_STOP); + if (res != PI_OK) { + printf("pi_i2c_read failed\n"); + exit(1); + } + + printf("comparing\n"); + int error = 0; + for (int i = 0; i < sizeof(rx); i++) { + if (rx[i] != expected_rx[i]) { + printf("rx[%d]=0x%0x differs from expected rx[%d]=0x%0x\n", + i, rx[i], i, expected_rx[i]); + error++; + } else { + printf("rx[%d]=0x%0x ok\n", i, rx[i]); + } + } + if (error != 0) + { + printf("Test I2C sync -> Not Success\n"); + exit(1); + } + printf("Test I2C sync -> Success\n"); + exit(0); +} + +int main(void) +{ + #ifdef USE_FREERTOS_TEST + /* Init board hardware. */ + system_init(); + printf("\n\n\t *** FreeRTOS Test I2C sync *** \n\n"); + #else + printf("\n\n\t *** PULP-OS Test I2C sync *** \n\n"); + #endif + + printf("i2c eeprom read/write test\n"); + return pmsis_kickoff((void *)eeprom); +} + +#ifdef USE_FREERTOS_TEST +/* Some debugging help */ +void vApplicationMallocFailedHook(void) +{ + taskDISABLE_INTERRUPTS(); + printf("error: application malloc failed\n"); + __asm volatile("ebreak"); + for (;;) + ; +} + +void vApplicationStackOverflowHook(TaskHandle_t pxTask, char *pcTaskName) +{ + (void)pcTaskName; + (void)pxTask; + + taskDISABLE_INTERRUPTS(); + printf("error: stack overflow\n"); + __asm volatile("ebreak"); + for (;;) + ; +} +#endif + diff --git a/tests/i2c_scan/i2c_scan.c b/tests/i2c_scan/i2c_scan.c new file mode 100644 index 00000000..91982644 --- /dev/null +++ b/tests/i2c_scan/i2c_scan.c @@ -0,0 +1,200 @@ +/* + * Copyright 2021 Greenwaves Technologies + * Copyright 2021 ETH Zurich + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + * Modify by Nico Orlando, nico.orlando@studio.unibo.it + */ + +#ifdef USE_PULPOS_TEST +#include "pmsis.h" +#include +#endif + +#ifdef USE_FREERTOS_TEST +/* FreeRTOS kernel includes. */ +#include +#include + +/* c stdlib */ +#include +#include +#include +#include +#include + +/* system includes */ +#include "system.h" +#include "timer_irq.h" +#include "fll.h" +#include "irq.h" +#include "gpio.h" +#include "i2c.h" +#include "udma.h" +#include "udma_i2c.h" +#include "pi_errno.h" +#include "pmsis_task.h" +#include "fc_event.h" +#include "freq.h" +#include "debug.h" +/* pmsis */ +#include "target.h" +#include "os.h" +#include "pi_errno.h" + +void vApplicationMallocFailedHook(void); +void vApplicationStackOverflowHook(TaskHandle_t pxTask, char *pcTaskName); +#endif + +/* I2C device/peripheral id */ +#define I2C_DEV_ID 0 +#define NUM_DEVICE 128 + +static struct pi_device i2c; + +static void i2c_init(uint8_t itf, uint8_t addr) +{ + struct pi_i2c_conf i2c_conf; + + pi_i2c_conf_init(&i2c_conf); + i2c_conf.itf = itf; + i2c_conf.max_baudrate = 100000; + pi_i2c_conf_set_slave_addr(&i2c_conf, addr << 1, 0); + /* pi_i2c_conf_set_wait_cycles(conf, 2048); */ + + pi_open_from_conf(&i2c, &i2c_conf); + + if (pi_i2c_open(&i2c)) { + printf("i2c open failed\n"); + exit(1); + } +} + +static void i2c_close(void) +{ + pi_i2c_close(&i2c); +} + +static uint8_t i2c_write(uint8_t *buf, uint16_t size) +{ + int res = pi_i2c_write(&i2c, buf, size, + PI_I2C_XFER_START | PI_I2C_XFER_STOP); + +#ifndef CONFIG_UDMA_I2C_ACK + #error "This test requires the I2C ACK feature support in the udma" +#endif + + if (res == PI_OK) { + /* we received an ACK */ + return 1; + } + /* we received a NACK */ + return 0; +} + +static int scan(uint8_t itf) +{ + printf("scanning i2c bus %d\n", itf); + uint8_t buf[1] = {0}; + uint8_t peripherals[NUM_DEVICE] = {0}; + + /* the address of our i2c eeprom is normally 0x50 if you want to + * specifically test that */ + int found = 0; + for (int i = 0; i < NUM_DEVICE; i++) { + i2c_init(itf, i); + peripherals[i] = i2c_write(buf, 0); + if (peripherals[i] != 0) { + found = 1; + printf("interface %d: *found* peripheral at addr 0x%x\n", itf, i); + } else { + printf("interface %d: nothing at addr 0x%x\n", itf, i); + } + i2c_close(); + } + + if (found) { + int count = 0; + printf("Found peripherals: "); + for (int i = 0; i < NUM_DEVICE; i++) { + if (peripherals[i] != 0) { + count++; + printf("0x%x, ", i); + } + } + printf("\n"); + printf("interface %d: 0x%x peripherals found\n", itf, count); + } else { + printf("interface %d: No peripheral found\n", itf); + } + +#ifdef CHECK_EEPROM_PRESENT + /* note that the eeprom appears on two addresses */ + printf("checking whether eeprom is present\n"); + if (peripherals[0x50] && peripherals[0x54]) { + printf("ok\n"); + return 0; + } else { + printf("eeprom not found at addr 0x80 and 0x84\n"); + return 1; + } +#else + return 0; +#endif +} + +static void test_kickoff(void *arg) +{ + int ret = scan(I2C_DEV_ID); + pmsis_exit(ret); +} + +int main(void) +{ +#ifdef USE_FREERTOS_TEST + /* Init board hardware. */ + system_init(); + printf("\n\n\t *** FreeRTOS Scan Test I2C *** \n\n"); +#else + printf("\n\n\t *** PULP-OS Scan Test I2C *** \n\n"); +#endif + + printf("i2c scan test\n"); + return pmsis_kickoff((void *)test_kickoff); +} + +#ifdef USE_FREERTOS_TEST +/* Some debugging help */ +void vApplicationMallocFailedHook(void) +{ + taskDISABLE_INTERRUPTS(); + printf("error: application malloc failed\n"); + __asm volatile("ebreak"); + for (;;) + ; +} + +void vApplicationStackOverflowHook(TaskHandle_t pxTask, char *pcTaskName) +{ + (void)pcTaskName; + (void)pxTask; + + taskDISABLE_INTERRUPTS(); + printf("error: stack overflow\n"); + __asm volatile("ebreak"); + for (;;) + ; +} +#endif \ No newline at end of file diff --git a/tests/spim_flash_sync/FreeRTOSConfig.h b/tests/spim_flash_sync/FreeRTOSConfig.h new file mode 100644 index 00000000..5673d91b --- /dev/null +++ b/tests/spim_flash_sync/FreeRTOSConfig.h @@ -0,0 +1,140 @@ +/* + * FreeRTOS Kernel V10.3.0 + * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright (C) 2020 ETH Zurich + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * + * http://www.FreeRTOS.org + * http://aws.amazon.com/freertos + * + * 1 tab == 4 spaces! + */ + + +#ifndef FREERTOS_CONFIG_H +#define FREERTOS_CONFIG_H + +/* #include "clock_config.h" */ /* TODO: figure out our FLL/clock setup */ + +#define DEFAULT_SYSTEM_CLOCK 50000000u /* Default System clock value */ + +/*----------------------------------------------------------- + * Application specific definitions. + * + * These definitions should be adjusted for your particular hardware and + * application requirements. + * + * THESE PARAMETERS ARE DESCRIBED WITHIN THE 'CONFIGURATION' SECTION OF THE + * FreeRTOS API DOCUMENTATION AVAILABLE ON THE FreeRTOS.org WEB SITE. + * + * See http://www.freertos.org/a00110.html. + *----------------------------------------------------------*/ + +#include +#ifdef __PULP_USE_LIBC +#include +#endif + +/* Ensure stdint is only used by the compiler, and not the assembler. */ +#if defined(__GNUC__) +#include +#endif + +/* There is no CLINT so the base address must be set to 0. */ +#define configCLINT_BASE_ADDRESS 0 +#define configUSE_PREEMPTION 1 +#define configUSE_IDLE_HOOK 0 +#define configUSE_TICK_HOOK 0 +#define configCPU_CLOCK_HZ DEFAULT_SYSTEM_CLOCK +#define configTICK_RATE_HZ ((TickType_t)1000) +#define configMAX_PRIORITIES (5) +/* Can be as low as 60 but some of the demo tasks that use this constant require it to be higher. */ +#define configMINIMAL_STACK_SIZE ((unsigned short)400) +/* we want to put the heap into special section */ +#define configAPPLICATION_ALLOCATED_HEAP 1 +#define configTOTAL_HEAP_SIZE ((size_t)(64 * 1024)) +#define configMAX_TASK_NAME_LEN (16) +#define configUSE_TRACE_FACILITY 1 /* TODO: 0 */ +#define configUSE_16_BIT_TICKS 0 +#define configIDLE_SHOULD_YIELD 0 +#define configUSE_MUTEXES 1 +#define configQUEUE_REGISTRY_SIZE 8 +#define configCHECK_FOR_STACK_OVERFLOW 2 +#define configUSE_RECURSIVE_MUTEXES 1 +#define configUSE_MALLOC_FAILED_HOOK 1 +#define configUSE_APPLICATION_TASK_TAG 0 +#define configUSE_COUNTING_SEMAPHORES 1 +#define configGENERATE_RUN_TIME_STATS 0 + +// TODO: investigate (gw) +//#define configOVERRIDE_DEFAULT_TICK_CONFIGURATION 1 +//#define configRECORD_STACK_HIGH_ADDRESS 1 +//#define configUSE_POSIX_ERRNO 1 + +/* newlib reentrancy */ +#define configUSE_NEWLIB_REENTRANT 1 +/* Co-routine definitions. */ +#define configUSE_CO_ROUTINES 0 +#define configMAX_CO_ROUTINE_PRIORITIES (2) + +/* Software timer definitions. */ +#define configUSE_TIMERS 1 +#define configTIMER_TASK_PRIORITY (configMAX_PRIORITIES - 1) +#define configTIMER_QUEUE_LENGTH 4 +#define configTIMER_TASK_STACK_DEPTH (configMINIMAL_STACK_SIZE) + +/* Task priorities. Allow these to be overridden. */ +#ifndef uartPRIMARY_PRIORITY +#define uartPRIMARY_PRIORITY (configMAX_PRIORITIES - 3) +#endif + +/* Set the following definitions to 1 to include the API function, or zero +to exclude the API function. */ +#define INCLUDE_vTaskPrioritySet 1 +#define INCLUDE_uxTaskPriorityGet 1 +#define INCLUDE_vTaskDelete 1 +#define INCLUDE_vTaskCleanUpResources 1 +#define INCLUDE_vTaskSuspend 1 +#define INCLUDE_vTaskDelayUntil 1 +#define INCLUDE_vTaskDelay 1 +#define INCLUDE_eTaskGetState 1 +#define INCLUDE_xTimerPendFunctionCall 1 +#define INCLUDE_xTaskAbortDelay 1 +#define INCLUDE_xTaskGetHandle 1 +#define INCLUDE_xSemaphoreGetMutexHolder 1 + +/* Normal assert() semantics without relying on the provision of an assert.h +header file. */ +#ifdef __PULP_USE_LIBC +#define configASSERT(x) assert(x) +#else +#define configASSERT(x) \ + do { \ + if ((x) == 0) { \ + taskDISABLE_INTERRUPTS(); \ + for (;;) \ + ; \ + } \ + } while (0) +#endif + +#define configUSE_PORT_OPTIMISED_TASK_SELECTION 1 +#define configKERNEL_INTERRUPT_PRIORITY 7 + +#endif /* FREERTOS_CONFIG_H */ From c24392a94beedb6a3abfc0e0244de934f1eccdae Mon Sep 17 00:00:00 2001 From: orlandonico Date: Tue, 8 Mar 2022 10:36:33 +0100 Subject: [PATCH 86/86] tests: update test for spim --- tests/spim_flash_async/test_spi_async.c | 173 +++++++++++------------- tests/spim_flash_sync/test_spi_sync.c | 78 ++++++----- 2 files changed, 119 insertions(+), 132 deletions(-) diff --git a/tests/spim_flash_async/test_spi_async.c b/tests/spim_flash_async/test_spi_async.c index a5eaf05c..c714446c 100644 --- a/tests/spim_flash_async/test_spi_async.c +++ b/tests/spim_flash_async/test_spi_async.c @@ -17,12 +17,12 @@ * SPDX-License-Identifier: Apache-2.0 * Author: Germain Hagou * Robert Balas (balasr@iis.ee.ethz.ch) - * nico.orlando@studio.unibo.it */ /* * Test if we can write to spi using pmsis */ + #ifdef USE_PULPOS_TEST #include "pmsis.h" #include @@ -41,36 +41,26 @@ #include #include /* pmsis */ +#include "implementation_specific_defines.h" #include "target.h" #include "pmsis_types.h" #include "os.h" -#include "implementation_specific_defines.h" +#include "device.h" /* system includes */ #include "system.h" #include "timer_irq.h" #include "fll.h" #include "irq.h" #include "gpio.h" -#include "/scratch/norlando/pulp-open/pulp-sdk/rtos/pmsis/pmsis_api/include/pmsis/drivers/spi.h" +#include "spi.h" #include "abstraction_layer_spi.h" #endif - -#if !defined(SYNC_CS_AUTO) && !defined(ASYNC_CS_AUTO) && \ +#if !defined(SYNC_CS_AUTO) && !defined(ASYNC_CS_AUTO) && \ !defined(SYNC_CS_KEEP) && !defined(ASYNC_CS_KEEP) #define ASYNC_CS_AUTO 1 #endif -//#define DEBUG 1 - - #ifdef DEBUG - #define DEBUG_PRINTF printf - #define DBG_PRINTF printf - #else - #define DEBUG_PRINTF(...) ((void)0) - #define DBG_PRINTF(...) ((void)0) - #endif /* DEBUG */ - #define TOTAL_SIZE (256) //#define TOTAL_SIZE (8192*8 + 256) #define TOTAL_SIZE_RTL (256) @@ -78,14 +68,14 @@ #define NB_BUFFERS 1 // S25FL256S Instruction Set -#define CMD_WRR 0x01 // Write REG 1 -#define CMD_RDID 0x9F // Read ID (JEDEC Manufacturer & JEDEC CFI -#define CMD_RDSR1 0x05 // Read status register-1 -#define CMD_WREN 0x06 // Write enable -#define CMD_4P4E 0x21 // 4KB Erase -#define CMD_4PP 0x12 // Page program (4 bytes address) -#define CMD_4QPP 0x34 // Page program QSPI (4 bytes address) -#define CMD_4READ 0x13 // Read (4 bytes address) +#define CMD_WRR 0x01 // Write REG 1 +#define CMD_RDID 0x9F // Read ID (JEDEC Manufacturer & JEDEC CFI +#define CMD_RDSR1 0x05 // Read status register-1 +#define CMD_WREN 0x06 // Write enable +#define CMD_4P4E 0x21 // 4KB Erase +#define CMD_4PP 0x12 // Page program (4 bytes address) +#define CMD_4QPP 0x34 // Page program QSPI (4 bytes address) +#define CMD_4READ 0x13 // Read (4 bytes address) #define CMD_4QOREAD 0x6C // Read QSPI(4 bytes address) #define ID_CFI_SIZE 10 @@ -95,9 +85,12 @@ static inline void get_info(int *buffer_size) #if !defined(PI_PLATFORM_RTL) *buffer_size = TOTAL_SIZE; #else - if (pi_platform() == PI_PLATFORM_RTL) { + if (pi_platform() == PI_PLATFORM_RTL) + { *buffer_size = TOTAL_SIZE_RTL; - } else { + } + else + { *buffer_size = TOTAL_SIZE; } #endif @@ -118,25 +111,20 @@ static pi_task_t cmd_event[NB_BUFFERS]; static pi_task_t rx_cmd_event[NB_BUFFERS]; static void set_spim_verif_command(struct pi_device *spim, int cmd, int addr, - int size, int32_t *cmd_buffer, - pi_task_t *task) + int size, int32_t *cmd_buffer, + pi_task_t *task) { /* - ** The command moves it to the first 8 bits, and to the last 8 it puts + ** The command moves it to the first 8 bits, a +nd to the last 8 it puts ** the size. ** Size is the size in bytes of the command. */ cmd_buffer[0] = (cmd << 24) | (size * 8); cmd_buffer[1] = addr; - - DBG_PRINTF("%s:%s:%d cmd_buffer[0] = 0x%x)\n", __FILE__, __func__, - __LINE__, cmd_buffer[0]); - DBG_PRINTF("%s:%s:%d cmd_buffer[1] = 0x%x)\n", __FILE__, __func__, - __LINE__, cmd_buffer[1]); - if (task) pi_spi_send_async(spim, cmd_buffer, 8 * 8, PI_SPI_CS_AUTO, - task); + task); else pi_spi_send(spim, cmd_buffer, 8 * 8, PI_SPI_CS_AUTO); } @@ -176,75 +164,75 @@ static int test_entry() if (rx_buffer_1 == NULL) return -1; - printf("malloc rx buffer 2\n"); - rx_buffer_2 = pmsis_l2_malloc(total_size); - if (rx_buffer_2 == NULL) - return -1; - printf("tx buffer init\n"); - for (int i = 0; i < total_size; i++) { + for (int i = 0; i < total_size; i++) + { tx_buffer[i] = i; } uint8_t cmd = CMD_WREN; - pi_task_t event_wren_1; - pi_task_t event_4pp_1; - pi_task_t event_tx_1; - pi_task_t event_wip_write_1; - pi_task_t event_wip_read_1; - pi_task_t event_4read_1; - pi_task_t event_rx_1; + + pi_task_t event_wren_1; + pi_task_t event_4pp_1; + pi_task_t event_tx_1; + pi_task_t event_wip_write_1; + pi_task_t event_wip_read_1; + pi_task_t event_4read_1; + pi_task_t event_rx_1; + printf("async cs auto\n"); - for (int i = 0; i < NB_BUFFERS; i++) { - - // Set write enabled - cmd = CMD_WREN; - pi_spi_send_async(&spim0, &cmd, (1*8), PI_SPI_CS_AUTO, pi_task_block(&event_wren_1)); - // send page address - add_buffer[0] = CMD_4PP; - pi_spi_send_async(&spim0, add_buffer, (sizeof(add_buffer)*8), PI_SPI_CS_KEEP, pi_task_block(&event_4pp_1)); - // send data - pi_spi_send_async(&spim0, tx_buffer + buffer_size * i, (buffer_size*8), PI_SPI_CS_AUTO, pi_task_block(&event_tx_1)); - // wait until program operation is in progress - DBG_PRINTF("%s:%s:%d ...start -> wip read...\n", __FILE__, __func__, __LINE__); - cmd = CMD_RDSR1; // command to read status register 1 - volatile uint8_t status = 0xFF; - do - { - pi_spi_send(&spim0, &cmd, (1*8), PI_SPI_CS_KEEP); - pi_spi_receive(&spim0, &status, (1*8), PI_SPI_CS_AUTO); - printf("WIP Register: %d\n", status); - - } while ((status & 0x01) != 0);// flash is buzy if status != 0 - //printf("WIP Register: %d\n", status); + for (int i = 0; i < NB_BUFFERS; i++) + { + // Set write enabled + cmd = CMD_WREN; + pi_spi_send_async(&spim0, &cmd, (1 * 8), PI_SPI_CS_AUTO, pi_task_block(&event_wren_1)); + // send page address + add_buffer[0] = CMD_4PP; + pi_spi_send_async(&spim0, add_buffer, (sizeof(add_buffer) * 8), PI_SPI_CS_KEEP, pi_task_block(&event_4pp_1)); + // send data + pi_spi_send_async(&spim0, tx_buffer + buffer_size * i, (buffer_size * 8), PI_SPI_CS_AUTO, pi_task_block(&event_tx_1)); + // wait until program operation is in progress + cmd = CMD_RDSR1; // command to read status register 1 + uint8_t status = 0xFF; + do + { + pi_spi_send_async(&spim0, &cmd, (1 * 8), PI_SPI_CS_KEEP, pi_task_block(&event_wip_write_1)); + pi_task_wait_on(&event_wip_write_1); + pi_spi_receive_async(&spim0, &status, (1 * 8), PI_SPI_CS_AUTO, pi_task_block(&event_wip_read_1)); + pi_task_wait_on(&event_wip_read_1); + status &= (1); + printf("WIP Register: %d\n", status); + } while (status != 0); // send page address - add_buffer[0] = CMD_4READ; - pi_spi_send_async(&spim0, add_buffer, (sizeof(add_buffer)*8), PI_SPI_CS_KEEP, pi_task_block(&event_4read_1)); - pi_spi_receive_async(&spim0, rx_buffer_1 + buffer_size * i, (buffer_size*8), PI_SPI_CS_AUTO, pi_task_block(&event_rx_1)); + add_buffer[0] = CMD_4READ; + + pi_spi_send_async(&spim0, add_buffer, (sizeof(add_buffer) * 8), PI_SPI_CS_KEEP, pi_task_block(&event_4read_1)); + pi_spi_receive_async(&spim0, rx_buffer_1 + buffer_size * i, (buffer_size * 8), PI_SPI_CS_AUTO, pi_task_block(&event_rx_1)); } - - pi_task_wait_on(&event_wren_1); - pi_task_wait_on(&event_4pp_1); - pi_task_wait_on(&event_tx_1); - pi_task_wait_on(&event_4read_1); - pi_task_wait_on(&event_rx_1); + pi_task_wait_on(&event_4read_1); + pi_task_wait_on(&event_rx_1); printf("starting error check\n"); int error = 0; - for (int i = 0; i < total_size; i++) { - if (rx_buffer_1[i] != tx_buffer[i] && rx_buffer_2[i] != tx_buffer[i]) { + for (int i = 0; i < total_size; i++) + { + if (rx_buffer_1[i] != tx_buffer[i] && rx_buffer_2[i] != tx_buffer[i]) + { if (error == 0) printf("First error at index %d, expected 0x%x, got 0x%x at %p\n", - i, tx_buffer[i], rx_buffer_1[i], - &rx_buffer_1[i]); + i, tx_buffer[i], rx_buffer_1[i], + &rx_buffer_1[i]); error++; return -1; } } - if (error) { + if (error) + { printf("Got %d errors\n", error); - } else { + } + else + { printf("Test success\n"); } pi_spi_close(&spim0); @@ -260,17 +248,12 @@ static void test_kickoff(void *arg) /* Program Entry. */ int main(void) { - #ifdef USE_FREERTOS_TEST +#ifdef USE_FREERTOS_TEST /* Init board hardware. */ system_init(); - printf("\n\n\t *** FreeRTOS Hello World *** \n\n"); - #endif - -#ifdef USE_PULPOS_TEST - printf("\n\n\t *** Pulp OS Hello World *** \n\n"); - #endif - + printf("\n\n\t *** FreeRTOS Test I2C async *** \n\n"); +#else + printf("\n\n\t *** PULP-OS Test I2C async *** \n\n"); +#endif return pmsis_kickoff((void *)test_kickoff); } - - diff --git a/tests/spim_flash_sync/test_spi_sync.c b/tests/spim_flash_sync/test_spi_sync.c index 57eecbdc..a7ce7d41 100644 --- a/tests/spim_flash_sync/test_spi_sync.c +++ b/tests/spim_flash_sync/test_spi_sync.c @@ -17,32 +17,45 @@ * SPDX-License-Identifier: Apache-2.0 * Author: Germain Hagou * Robert Balas (balasr@iis.ee.ethz.ch) + * Modify by Nico Orlando (nico.orlando@studio.unibo.it) */ /* * Test if we can write to spi using pmsis */ +#ifdef USE_PULPOS_TEST #include "pmsis.h" #include - -#if !defined(SYNC_CS_AUTO) && !defined(ASYNC_CS_AUTO) && \ - !defined(SYNC_CS_KEEP) && !defined(ASYNC_CS_KEEP) -#define ASYNC_CS_AUTO 1 #endif -//#define DEBUG 1 -/** - #ifdef DEBUG - #define DEBUG_PRINTF printf - #define DBG_PRINTF printf - #else - #define DEBUG_PRINTF(...) ((void)0) - #define DBG_PRINTF(...) ((void)0) - #endif /* DEBUG */ - - #define DEBUG_PRINTF(...) ((void)0) - #define DBG_PRINTF(...) ((void)0) +#ifdef USE_FREERTOS_TEST +/* FreeRTOS kernel includes. */ +#include +#include + +/* c stdlib */ +#include +#include +#include +#include +#include +#include +/* pmsis */ +#include "implementation_specific_defines.h" +#include "target.h" +#include "pmsis_types.h" +#include "os.h" +#include "device.h" +/* system includes */ +#include "system.h" +#include "timer_irq.h" +#include "fll.h" +#include "irq.h" +#include "gpio.h" +#include "spi.h" +#include "abstraction_layer_spi.h" +#endif #define TOTAL_SIZE (256) //#define TOTAL_SIZE (8192*8 + 256) @@ -101,11 +114,6 @@ static void set_spim_verif_command(struct pi_device *spim, int cmd, int addr, cmd_buffer[0] = (cmd << 24) | (size * 8); cmd_buffer[1] = addr; - DBG_PRINTF("%s:%s:%d cmd_buffer[0] = 0x%x)\n", __FILE__, __func__, - __LINE__, cmd_buffer[0]); - DBG_PRINTF("%s:%s:%d cmd_buffer[1] = 0x%x)\n", __FILE__, __func__, - __LINE__, cmd_buffer[1]); - if (task) pi_spi_send_async(spim, cmd_buffer, 8 * 8, PI_SPI_CS_AUTO, task); @@ -156,28 +164,21 @@ static int test_entry() uint8_t cmd = CMD_WREN; - - printf("async cs auto\n"); - for (int i = 0; i < NB_BUFFERS; i++) { // Set write enabled cmd = CMD_WREN; - DBG_PRINTF("%s:%s:%d ...pi_spi_send_async(&spim, cmd, 8, PI_SPI_CS_AUTO, pi_task_block(&event_wren))...\n", __FILE__, __func__, __LINE__); pi_spi_send(&spim, &cmd, (1*8), PI_SPI_CS_AUTO); // send page address add_buffer[0] = CMD_4PP; - DBG_PRINTF("%s:%s:%d ...pi_spi_send_async(&spim, add_buffer, (sizeof(add_buffer)*8), PI_SPI_CS_KEEP, NULL)...\n", __FILE__, __func__, __LINE__); pi_spi_send(&spim, add_buffer, (sizeof(add_buffer)*8), PI_SPI_CS_KEEP); // send data - DBG_PRINTF("%s:%s:%d ...pi_spi_send_async(&spim, tx_buffer, BUFFER_SIZE * 8, PI_SPI_CS_AUTO, pi_task_block(&event_tx))...\n", __FILE__, __func__, __LINE__); pi_spi_send(&spim, tx_buffer + buffer_size * i, (buffer_size*8), PI_SPI_CS_AUTO); // wait until program operation is in progress - DBG_PRINTF("%s:%s:%d ...start -> wip read...\n", __FILE__, __func__, __LINE__); cmd = CMD_RDSR1; // command to read status register 1 - volatile uint8_t status = 0xFF; + uint8_t status = 0xFF; do { //DBG_PRINTF("%s:%s:%d ...pi_spi_send_async(&spim, cmd, 1, PI_SPI_CS_AUTO, pi_task_block(&event_wip_write))...\n", __FILE__, __func__, __LINE__); @@ -186,18 +187,15 @@ static int test_entry() //DBG_PRINTF("%s:%s:%d ...pi_spi_receive_async(&spim, &status, 1, PI_SPI_CS_AUTO, pi_task_block(&event_wip_read))...\n", __FILE__, __func__, __LINE__); pi_spi_receive(&spim, &status, (1*8), PI_SPI_CS_AUTO); //DBG_PRINTF("%s:%s:%d ...pi_task_wait_on(&event_wip_read)...\n", __FILE__, __func__, __LINE__); - printf("WIP Register: %d\n", status); + status &= (1); + printf("WIP Register: %d\n", status); }while (status & 0x01 != 0); // flash is buzy if status != 0 - DBG_PRINTF("%s:%s:%d ...end -> wip read...\n", __FILE__, __func__, __LINE__); - + // send page address add_buffer[0] = CMD_4READ; - DBG_PRINTF( "%s:%s:%d ...pi_spi_send_async(&spim, add_buffer, (sizeof(add_buffer)*8), PI_SPI_CS_KEEP, NULL)...\n", __FILE__, __func__, __LINE__); pi_spi_send(&spim, add_buffer, (sizeof(add_buffer)*8), PI_SPI_CS_KEEP); // read data - DBG_PRINTF( "%s:%s:%d ...pi_spi_receive_async(&spim, rx_buffer, BUFFER_SIZE * 8, PI_SPI_CS_AUTO, pi_task_block(&event_rx))...\n", __FILE__, __func__, __LINE__); - pi_spi_receive(&spim, rx_buffer + buffer_size * i, (buffer_size*8), PI_SPI_CS_AUTO); - DBG_PRINTF("%s:%s:%d ...pi_task_wait_on(&event_rx)...\n", __FILE__, __func__, __LINE__); + pi_spi_receive(&spim, rx_buffer + buffer_size * i, (buffer_size*8), PI_SPI_CS_AUTO); } printf("starting error check\n"); @@ -231,7 +229,13 @@ static void test_kickoff(void *arg) /* Program Entry. */ int main(void) { - printf("\n\n\t *** Pulp-SDK Hello World *** \n\n"); +#ifdef USE_FREERTOS_TEST + /* Init board hardware. */ + system_init(); + printf("\n\n\t *** FreeRTOS Test I2C sync *** \n\n"); +#else + printf("\n\n\t *** PULP-OS Test I2C sync *** \n\n"); +#endif return pmsis_kickoff((void *)test_kickoff); }

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 ZyPJb47fc@9SV_7Gzr;8A>>!RA{D0+boCyE` literal 0 HcmV?d00001 diff --git a/tests/spim_flash_async/drivers/pmsis_task.o b/tests/spim_flash_async/drivers/pmsis_task.o new file mode 100644 index 0000000000000000000000000000000000000000..4fde9e6e9ebf3a9b82b5c1ae6c9613a696152931 GIT binary patch literal 209148 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